From 0ab494ddc1d5eee3f375b2b1ec3a00f8663ea9c1 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Tue, 31 Jul 2012 17:17:10 +0100 Subject: [PATCH 01/28] Update to allow training with the phrase-weighting trainer. --- scripts/training/mert-moses.pl | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/scripts/training/mert-moses.pl b/scripts/training/mert-moses.pl index 88c90aff4..21a0ae562 100755 --- a/scripts/training/mert-moses.pl +++ b/scripts/training/mert-moses.pl @@ -121,6 +121,9 @@ my $megam_default_options = "-fvals -maxi 30 -nobias binary"; # Flags related to Batch MIRA (Cherry & Foster, 2012) my $___BATCH_MIRA = 0; # flg to enable batch MIRA +# Train phrase weighting +my $__PHRASE_WEIGHTING = 0; + my $__THREADS = 0; # Parameter for effective reference length when computing BLEU score @@ -219,6 +222,7 @@ GetOptions( "historic-interpolation=f" => \$___HISTORIC_INTERPOLATION, "batch-mira" => \$___BATCH_MIRA, "batch-mira-args=s" => \$batch_mira_args, + "phrase-weighting" => \$__PHRASE_WEIGHTING, "threads=i" => \$__THREADS ) or exit(1); @@ -308,6 +312,7 @@ Options: --batch-mira-args=STRING ... args to pass through to batch MIRA. This flag is useful to change MIRA's hyperparameters such as regularization parameter C, BLEU decay factor, and the number of iterations of MIRA. + --phrase-weighting ... Train using the phrase weighting framework --threads=NUMBER ... Use multi-threaded mert (must be compiled in). --historic-interpolation ... Interpolate optimized weights with prior iterations' weight (parameter sets factor [0;1] given to current weights) @@ -486,6 +491,7 @@ my $sparse_weights_file = undef; my $prev_feature_file = undef; my $prev_score_file = undef; my $prev_init_file = undef; +my @allnbests; if ($___FILTER_PHRASE_TABLE) { my $outdir = "filtered"; @@ -703,6 +709,7 @@ while (1) { my $score_file = "run$run.${base_score_file}"; my $cmd = "$mert_extract_cmd $mert_extract_args --scfile $score_file --ffile $feature_file -r " . join(",", @references) . " -n $nbest_file"; + $cmd .= " -d" if $__PHRASE_WEIGHTING; # Allow duplicates $cmd = &create_extractor_script($cmd, $___WORKING_DIR); &submit_or_exec($cmd, "extract.out","extract.err"); @@ -775,6 +782,11 @@ while (1) { my $pro_file_settings = "--ffile " . join(" --ffile ", split(/,/, $ffiles)) . " --scfile " . join(" --scfile ", split(/,/, $scfiles)); + push @allnbests, $nbest_file; + my $phrase_weight_file_settings = + "--scfile " . join(" --scfile ", split(/,/, $scfiles)) . + " --nbest " . join(" --nbest ", @allnbests); + if ($___START_WITH_HISTORIC_BESTS && defined $prev_init_file) { $file_settings .= " --ifile $prev_init_file,run$run.$weights_in_file"; } else { @@ -807,6 +819,10 @@ while (1) { safesystem("echo 'not used' > $weights_out_file") or die; $cmd = "$mert_mira_cmd $mira_settings $seed_settings $pro_file_settings -o $mert_outfile"; &submit_or_exec($cmd, "run$run.mira.out", $mert_logfile); + } elsif ($__PHRASE_WEIGHTING) { + safesystem("echo 'not used' > $weights_out_file") or die; + $cmd = "/home/bhaddow/code/mixture-models/main.py $phrase_weight_file_settings"; + &submit_or_exec($cmd, "$mert_outfile", $mert_logfile); } else { # just mert &submit_or_exec($cmd . $mert_settings, $mert_outfile, $mert_logfile); } @@ -979,7 +995,7 @@ sub get_weights_from_mert { my ($outfile, $logfile, $weight_count, $sparse_weights) = @_; my ($bestpoint, $devbleu); if ($___PAIRWISE_RANKED_OPTIMIZER || ($___PRO_STARTING_POINT && $logfile =~ /pro/) - || $___BATCH_MIRA) { + || $___BATCH_MIRA || $__PHRASE_WEIGHTING) { open my $fh, '<', $outfile or die "Can't open $outfile: $!"; my @WEIGHT; for (my $i = 0; $i < $weight_count; $i++) { push @WEIGHT, 0; } From 99c9a7330295948b306e52e759eb54f8c9fd70fb Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Tue, 30 Oct 2012 10:31:28 +0000 Subject: [PATCH 02/28] Adjust phrase-weighting pro args, to prep for mix --- scripts/training/mert-moses.pl | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/scripts/training/mert-moses.pl b/scripts/training/mert-moses.pl index 5bf33fc20..b72da042c 100755 --- a/scripts/training/mert-moses.pl +++ b/scripts/training/mert-moses.pl @@ -121,8 +121,12 @@ my $megam_default_options = "-fvals -maxi 30 -nobias binary"; # Flags related to Batch MIRA (Cherry & Foster, 2012) my $___BATCH_MIRA = 0; # flg to enable batch MIRA -# Train phrase weighting -my $__PHRASE_WEIGHTING = 0; +# Use the phrase weighting framework. This argument specifies the script location +my $__PHRASE_WEIGHTING = undef; +my $__PHRASE_WEIGHTING_TRAINER = "pro"; # which type of trainer to use +# For mixture modelling, require the phrase tables. These should be filtered +# to the tuning set, but not binarised +my $__PHRASE_WEIGHTING_TABLES; my $__THREADS = 0; @@ -224,7 +228,8 @@ GetOptions( "historic-interpolation=f" => \$___HISTORIC_INTERPOLATION, "batch-mira" => \$___BATCH_MIRA, "batch-mira-args=s" => \$batch_mira_args, - "phrase-weighting" => \$__PHRASE_WEIGHTING, + "phrase-weighting=s" => \$__PHRASE_WEIGHTING, + "phrase-weighting-trainer=s" => \$__PHRASE_WEIGHTING_TRAINER, "threads=i" => \$__THREADS ) or exit(1); @@ -314,7 +319,8 @@ Options: --batch-mira-args=STRING ... args to pass through to batch MIRA. This flag is useful to change MIRA's hyperparameters such as regularization parameter C, BLEU decay factor, and the number of iterations of MIRA. - --phrase-weighting ... Train using the phrase weighting framework + --phrase-weighting ... Phrase-weighting framework main script + --phrase-weighting-trainer... Training method for phrase weighting (pro or mix) --threads=NUMBER ... Use multi-threaded mert (must be compiled in). --historic-interpolation ... Interpolate optimized weights with prior iterations' weight (parameter sets factor [0;1] given to current weights) @@ -374,6 +380,13 @@ if (($___PAIRWISE_RANKED_OPTIMIZER || $___PRO_STARTING_POINT) && ! -x $pro_optim die("ERROR: Installation of megam_i686.opt failed! Install by hand from $megam_url") unless -x $pro_optimizer; } +if ($__PHRASE_WEIGHTING) { + die "Not executable $__PHRASE_WEIGHTING" unless -x $__PHRASE_WEIGHTING; + die "Unknown phrase weighting trainer: $__PHRASE_WEIGHTING_TRAINER" unless + ($__PHRASE_WEIGHTING_TRAINER eq "mix" || $__PHRASE_WEIGHTING_TRAINER eq "pro"); + +} + $mertargs = "" if !defined $mertargs; my $scconfig = undef; @@ -838,9 +851,9 @@ while (1) { safesystem("echo 'not used' > $weights_out_file") or die; $cmd = "$mert_mira_cmd $mira_settings $seed_settings $pro_file_settings -o $mert_outfile"; &submit_or_exec($cmd, "run$run.mira.out", $mert_logfile); - } elsif ($__PHRASE_WEIGHTING) { + } elsif ($__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "pro") { safesystem("echo 'not used' > $weights_out_file") or die; - $cmd = "/home/bhaddow/code/mixture-models/main.py $phrase_weight_file_settings"; + $cmd = "$__PHRASE_WEIGHTING $phrase_weight_file_settings"; &submit_or_exec($cmd, "$mert_outfile", $mert_logfile); } else { # just mert &submit_or_exec($cmd . $mert_settings, $mert_outfile, $mert_logfile); From 6e95a9690adee9fba555533eb36532342f62bab5 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Wed, 31 Oct 2012 14:45:15 +0000 Subject: [PATCH 03/28] Add support for mixture model training --- scripts/training/mert-moses.pl | 129 ++++++++++++++++++++++++++++++--- 1 file changed, 118 insertions(+), 11 deletions(-) diff --git a/scripts/training/mert-moses.pl b/scripts/training/mert-moses.pl index b72da042c..37909ab62 100755 --- a/scripts/training/mert-moses.pl +++ b/scripts/training/mert-moses.pl @@ -124,9 +124,10 @@ my $___BATCH_MIRA = 0; # flg to enable batch MIRA # Use the phrase weighting framework. This argument specifies the script location my $__PHRASE_WEIGHTING = undef; my $__PHRASE_WEIGHTING_TRAINER = "pro"; # which type of trainer to use -# For mixture modelling, require the phrase tables. These should be filtered -# to the tuning set, but not binarised -my $__PHRASE_WEIGHTING_TABLES; +# For mixture modelling, require the phrase tables. These should be gzip text format. +my @__PHRASE_WEIGHTING_TABLES; +# The tmcombine script +my $__PHRASE_WEIGHTING_TMCOMBINE = "$SCRIPTS_ROOTDIR/../contrib/tmcombine/tmcombine.py"; my $__THREADS = 0; @@ -230,6 +231,8 @@ GetOptions( "batch-mira-args=s" => \$batch_mira_args, "phrase-weighting=s" => \$__PHRASE_WEIGHTING, "phrase-weighting-trainer=s" => \$__PHRASE_WEIGHTING_TRAINER, + "phrase-weighting-table=s" => \@__PHRASE_WEIGHTING_TABLES, + "phrase-weighting-tmcombine=s" => \$__PHRASE_WEIGHTING_TMCOMBINE, "threads=i" => \$__THREADS ) or exit(1); @@ -321,6 +324,8 @@ Options: BLEU decay factor, and the number of iterations of MIRA. --phrase-weighting ... Phrase-weighting framework main script --phrase-weighting-trainer... Training method for phrase weighting (pro or mix) + --phrase-weighting-table ... Phrase tables for training mixture models + --phrase-weighting-tmcombine Script for combining ttables --threads=NUMBER ... Use multi-threaded mert (must be compiled in). --historic-interpolation ... Interpolate optimized weights with prior iterations' weight (parameter sets factor [0;1] given to current weights) @@ -384,7 +389,16 @@ if ($__PHRASE_WEIGHTING) { die "Not executable $__PHRASE_WEIGHTING" unless -x $__PHRASE_WEIGHTING; die "Unknown phrase weighting trainer: $__PHRASE_WEIGHTING_TRAINER" unless ($__PHRASE_WEIGHTING_TRAINER eq "mix" || $__PHRASE_WEIGHTING_TRAINER eq "pro"); - + if ($__PHRASE_WEIGHTING_TRAINER eq "mix") { + die "For mixture model training, specify the tables with --phrase-weighting-tables" unless @__PHRASE_WEIGHTING_TABLES; + die "For mixture model, need at least 2 tables" unless scalar(@__PHRASE_WEIGHTING_TABLES) > 1; + + for my $TABLE (@__PHRASE_WEIGHTING_TABLES) { + die "Phrase table $TABLE not found" unless -r $TABLE; + } + die "Not executable: $__PHRASE_WEIGHTING_TMCOMBINE" unless -x $__PHRASE_WEIGHTING_TMCOMBINE; + die "To use phrase-weighting, need to specify a filter and binarisation command" unless $filtercmd =~ /Binarizer/; + } } $mertargs = "" if !defined $mertargs; @@ -508,7 +522,27 @@ my $prev_score_file = undef; my $prev_init_file = undef; my @allnbests; -if ($___FILTER_PHRASE_TABLE) { +# If we're training mixture models, need to make sure the appropriate +# tables are in place +my @_PHRASE_WEIGHTING_TABLES_BIN; +if ($__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "mix") { + print STDERR "Training mixture model\n"; + for (my $i = 0; $i < scalar(@__PHRASE_WEIGHTING_TABLES); ++$i) { + # Create filtered, binarised tables + my $filtered_config = "moses_$i.ini"; + substitute_ttable($___CONFIG, $filtered_config, $__PHRASE_WEIGHTING_TABLES[$i]); + my $filtered_path = "filtered_$i"; + my $___FILTER_F = $___DEV_F; + $___FILTER_F = $filterfile if (defined $filterfile); + my $cmd = "$filtercmd ./$filtered_path $filtered_config $___FILTER_F"; + &submit_or_exec($cmd, "filterphrases_$i.out", "filterphrases_$i.err"); + push (@_PHRASE_WEIGHTING_TABLES_BIN,"$filtered_path/phrase-table.0-0.1.1"); + + # Create directory structure for the text phrase tables required by tmcombine + mkpath("model_$i/model"); + safesystem("ln -s ../../$filtered_path/phrase-table.0-0.1.1 model_$i/model/phrase-table"); + } +} elsif ($___FILTER_PHRASE_TABLE) { my $outdir = "filtered"; if (-e "$outdir/moses.ini") { print STDERR "Assuming the tables are already filtered, reusing $outdir/moses.ini\n"; @@ -662,6 +696,7 @@ my $allsorted = undef; my $nbest_file = undef; my $lsamp_file = undef; # Lattice samples my $orig_nbest_file = undef; # replaced if lattice sampling +my @phrase_weighting_mix_weights; while (1) { $run++; @@ -669,10 +704,44 @@ while (1) { print "Maximum number of iterations exceeded - stopping\n"; last; } + print "run $run start at ".`date`; + + if ($__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "mix") { + # Need to interpolate the phrase tables with current weights, and binarise + if (!@phrase_weighting_mix_weights) { + @phrase_weighting_mix_weights = (1.0/scalar(@__PHRASE_WEIGHTING_TABLES)) x scalar(@__PHRASE_WEIGHTING_TABLES); + } + # make a backup copy of startup ini filepath + $___CONFIG_ORIG = $___CONFIG unless defined($___CONFIG_ORIG); + # Interpolation + my $interpolated_phrase_table = "./phrase-table.interpolated.gz"; + my $cmd = "$__PHRASE_WEIGHTING_TMCOMBINE combine_given_weights "; + $cmd .= join(" ", map {"model_$_"} (0..(scalar(@phrase_weighting_mix_weights)-1))); + $cmd .= " -w " . join(",",@phrase_weighting_mix_weights); + $cmd .= " -o $interpolated_phrase_table"; + &submit_or_exec($cmd, "interpolate.out", "interpolate.err"); + + # Create an ini file for the interpolated phrase table + my $interpolated_config ="moses.interpolated.ini"; + substitute_ttable($___CONFIG_ORIG, $interpolated_config, $interpolated_phrase_table); + + # Filter and binarise + print STDERR "filtering the interpolated phrase table\n"; + my $___FILTER_F = $___DEV_F; + my $outdir = "filtered"; + safesystem("rm -rf $outdir"); + $___FILTER_F = $filterfile if (defined $filterfile); + $cmd = "$filtercmd ./$outdir $interpolated_config $___FILTER_F"; + &submit_or_exec($cmd, "filterphrases.out", "filterphrases.err"); + + # the decoder should now use the filtered model + $___CONFIG = "$outdir/moses.ini"; + + } + # run beamdecoder with option to output nbestlists # the end result should be (1) @NBEST_LIST, a list of lists; (2) @SCORE, a list of lists of lists - print "run $run start at ".`date`; # In case something dies later, we might wish to have a copy create_config($___CONFIG, "./run$run.moses.ini", $featlist, $run, (defined $devbleu ? $devbleu : "--not-estimated--"), $sparse_weights_file); @@ -820,7 +889,7 @@ while (1) { my $pro_cmd = "$mert_pro_cmd $seed_settings $pro_file_settings -o run$run.pro.data ; $pro_optimizer_cmd"; &submit_or_exec($pro_cmd, "run$run.pro.out", "run$run.pro.err"); # ... get results ... - ($bestpoint,$devbleu) = &get_weights_from_mert("run$run.pro.out","run$run.pro.err",scalar @{$featlist->{"names"}},\%sparse_weights); + ($bestpoint,$devbleu) = &get_weights_from_mert("run$run.pro.out","run$run.pro.err",scalar @{$featlist->{"names"}},\%sparse_weights, \@phrase_weighting_mix_weights); # Get the pro outputs ready for mert. Add the weight ranges, # and a weight and range for the single sparse feature $cmd =~ s/--ifile (\S+)/--ifile run$run.init.pro/; @@ -851,13 +920,22 @@ while (1) { safesystem("echo 'not used' > $weights_out_file") or die; $cmd = "$mert_mira_cmd $mira_settings $seed_settings $pro_file_settings -o $mert_outfile"; &submit_or_exec($cmd, "run$run.mira.out", $mert_logfile); + } elsif ($__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "mix") { + # Phrase weighting, mixture model + safesystem("echo 'not used' > $weights_out_file") or die; + $cmd = "$__PHRASE_WEIGHTING $phrase_weight_file_settings"; + $cmd .= " -t mix "; + $cmd .= join(" ", map {"-p $_"} @_PHRASE_WEIGHTING_TABLES_BIN); + $cmd .= " -i $___DEV_F"; + &submit_or_exec($cmd, "$mert_outfile", $mert_logfile); } elsif ($__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "pro") { + # Phrase weighting, PRO safesystem("echo 'not used' > $weights_out_file") or die; $cmd = "$__PHRASE_WEIGHTING $phrase_weight_file_settings"; &submit_or_exec($cmd, "$mert_outfile", $mert_logfile); } else { # just mert &submit_or_exec($cmd . $mert_settings, $mert_outfile, $mert_logfile); - } + } die "Optimization failed, file $weights_out_file does not exist or is empty" if ! -s $weights_out_file; @@ -872,8 +950,9 @@ while (1) { print "run $run end at ".`date`; - ($bestpoint,$devbleu) = &get_weights_from_mert("run$run.$mert_outfile","run$run.$mert_logfile",scalar @{$featlist->{"names"}},\%sparse_weights); + ($bestpoint,$devbleu) = &get_weights_from_mert("run$run.$mert_outfile","run$run.$mert_logfile",scalar @{$featlist->{"names"}},\%sparse_weights,\@phrase_weighting_mix_weights); my $merge_weight = 0; + print "New mixture weights: " . join(" ", @phrase_weighting_mix_weights) . "\n"; die "Failed to parse mert.log, missed Best point there." if !defined $bestpoint || !defined $devbleu; @@ -1032,12 +1111,13 @@ print "Training finished at " . `date`; } # end of local scope sub get_weights_from_mert { - my ($outfile, $logfile, $weight_count, $sparse_weights) = @_; + my ($outfile, $logfile, $weight_count, $sparse_weights, $mix_weights) = @_; my ($bestpoint, $devbleu); if ($___PAIRWISE_RANKED_OPTIMIZER || ($___PRO_STARTING_POINT && $logfile =~ /pro/) || $___BATCH_MIRA || $__PHRASE_WEIGHTING) { open my $fh, '<', $outfile or die "Can't open $outfile: $!"; my @WEIGHT; + @$mix_weights = (); for (my $i = 0; $i < $weight_count; $i++) { push @WEIGHT, 0; } my $sum = 0.0; while (<$fh>) { @@ -1046,11 +1126,13 @@ sub get_weights_from_mert { $sum += abs($2); } elsif (/^(.+_.+) ([\-\.\de]+)/) { # sparse features $$sparse_weights{$1} = $2; + } elsif (/^M(\d+) ([\-\.\de]+)/) { # mix weights + push @$mix_weights,$2; } } close $fh; die "It seems feature values are invalid or unable to read $outfile." if $sum < 1e-09; - + $devbleu = "unknown"; foreach (@WEIGHT) { $_ /= $sum; } foreach (keys %{$sparse_weights}) { $$sparse_weights{$_} /= $sum; } @@ -1110,6 +1192,7 @@ sub run_decoder { my $decoder_config = ""; $decoder_config = join(" ", values %model_weights) unless $___USE_CONFIG_WEIGHTS_FIRST && $run==1; $decoder_config .= " -weight-file run$run.sparse-weights" if -e "run$run.sparse-weights"; + $decoder_config .= " -report-segmentation" if $__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "mix"; print STDERR "DECODER_CFG = $decoder_config\n"; print "decoder_config = $decoder_config\n"; @@ -1383,6 +1466,30 @@ sub create_config { print STDERR "Saved: $outfn\n"; } +# Create a new ini file, with the first ttable replaced by the given one +# and its type set to text +sub substitute_ttable { + my ($old_ini, $new_ini, $new_ttable) = @_; + open(NEW_INI,">$new_ini") || die "Failed to create $new_ini"; + open(INI,$old_ini) || die "Failed to open $old_ini"; + while() { + if (/\[ttable-file\]/) { + print NEW_INI "[ttable-file]\n"; + my $ttable_config = ; + chomp $ttable_config; + my @ttable_fields = split /\s+/, $ttable_config; + $ttable_fields[0] = "0"; + $ttable_fields[4] = $new_ttable; + print NEW_INI join(" ", @ttable_fields) . "\n"; + } else { + print NEW_INI; + } + } + close NEW_INI; + close INI; +} + + sub safesystem { print STDERR "Executing: @_\n"; system(@_); From 3ee0e30ae2fa1b7422515c8ed29e988c5d7bd6ab Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Fri, 9 Nov 2012 10:01:04 +0000 Subject: [PATCH 04/28] check for dir creation fail --- scripts/training/mert-moses.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/training/mert-moses.pl b/scripts/training/mert-moses.pl index 37909ab62..1227dc4c7 100755 --- a/scripts/training/mert-moses.pl +++ b/scripts/training/mert-moses.pl @@ -539,7 +539,7 @@ if ($__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "mix") { push (@_PHRASE_WEIGHTING_TABLES_BIN,"$filtered_path/phrase-table.0-0.1.1"); # Create directory structure for the text phrase tables required by tmcombine - mkpath("model_$i/model"); + mkpath("model_$i/model") || die "Failed to create model_$i/model"; safesystem("ln -s ../../$filtered_path/phrase-table.0-0.1.1 model_$i/model/phrase-table"); } } elsif ($___FILTER_PHRASE_TABLE) { From c316fe68deaae7b0a53d66826cc8a832b84511b4 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Wed, 14 Nov 2012 13:28:40 +0000 Subject: [PATCH 05/28] Strip segmentation before scoring. --- scripts/ems/experiment.meta | 2 +- ...nation-markup.perl => remove-segmentation-markup.perl} | 2 ++ scripts/training/mert-moses.pl | 8 +++++++- 3 files changed, 10 insertions(+), 2 deletions(-) rename scripts/ems/support/{remove-segmenation-markup.perl => remove-segmentation-markup.perl} (94%) diff --git a/scripts/ems/experiment.meta b/scripts/ems/experiment.meta index 816cc727d..6df2701a0 100644 --- a/scripts/ems/experiment.meta +++ b/scripts/ems/experiment.meta @@ -809,7 +809,7 @@ remove-markup default-name: evaluation/cleaned pass-if: TRAINING:hierarchical-rule-set pass-unless: report-segmentation - template: $moses-script-dir/ems/support/remove-segmenation-markup.perl < IN > OUT + template: $moses-script-dir/ems/support/remove-segmentation-markup.perl < IN > OUT recase-output in: cleaned-output RECASING:recase-config out: recased-output diff --git a/scripts/ems/support/remove-segmenation-markup.perl b/scripts/ems/support/remove-segmentation-markup.perl similarity index 94% rename from scripts/ems/support/remove-segmenation-markup.perl rename to scripts/ems/support/remove-segmentation-markup.perl index f01a419bc..18918c905 100755 --- a/scripts/ems/support/remove-segmenation-markup.perl +++ b/scripts/ems/support/remove-segmentation-markup.perl @@ -2,6 +2,8 @@ use strict; +$|++; + while() { s/ \|\d+\-\d+\| / /g; s/ \|\d+\-\d+\|$//; diff --git a/scripts/training/mert-moses.pl b/scripts/training/mert-moses.pl index 1227dc4c7..ce37f3785 100755 --- a/scripts/training/mert-moses.pl +++ b/scripts/training/mert-moses.pl @@ -128,6 +128,8 @@ my $__PHRASE_WEIGHTING_TRAINER = "pro"; # which type of trainer to use my @__PHRASE_WEIGHTING_TABLES; # The tmcombine script my $__PHRASE_WEIGHTING_TMCOMBINE = "$SCRIPTS_ROOTDIR/../contrib/tmcombine/tmcombine.py"; +# used to filter output +my $__REMOVE_SEGMENTATION = "$SCRIPTS_ROOTDIR/ems/support/remove-segmentation-markup.perl"; my $__THREADS = 0; @@ -794,6 +796,8 @@ while (1) { my $cmd = "$mert_extract_cmd $mert_extract_args --scfile $score_file --ffile $feature_file -r " . join(",", @references) . " -n $nbest_file"; $cmd .= " -d" if $__PHRASE_WEIGHTING; # Allow duplicates + # remove segmentation + $cmd .= " -l $__REMOVE_SEGMENTATION" if $__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "mix"; $cmd = &create_extractor_script($cmd, $___WORKING_DIR); &submit_or_exec($cmd, "extract.out","extract.err"); @@ -1080,7 +1084,9 @@ if($___RETURN_BEST_DEV) { my $bestbleu=0; my $evalout = "eval.out"; for (my $i = 1; $i < $run; $i++) { - safesystem("$mert_eval_cmd --reference " . join(",", @references) . " --candidate run$i.out 2> /dev/null 1> $evalout"); + my $cmd = "$mert_eval_cmd --reference " . join(",", @references) . " --candidate run$i.out"; + $cmd .= " -l $__REMOVE_SEGMENTATION" if defined( $__PHRASE_WEIGHTING) && $__PHRASE_WEIGHTING_TRAINER eq "mix"; + safesystem("$cmd 2> /dev/null 1> $evalout"); open my $fh, '<', $evalout or die "Can't read $evalout : $!"; my $bleu = <$fh>; chomp $bleu; From 87d7294d50d69da1833b6a78829154c444f2be6e Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Tue, 20 Nov 2012 15:13:31 +0000 Subject: [PATCH 06/28] bleu arg to evaluator --- scripts/training/mert-moses.pl | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) diff --git a/scripts/training/mert-moses.pl b/scripts/training/mert-moses.pl index ce37f3785..c5492498c 100755 --- a/scripts/training/mert-moses.pl +++ b/scripts/training/mert-moses.pl @@ -698,7 +698,9 @@ my $allsorted = undef; my $nbest_file = undef; my $lsamp_file = undef; # Lattice samples my $orig_nbest_file = undef; # replaced if lattice sampling +# For mixture modelling my @phrase_weighting_mix_weights; +my $num_mixed_phrase_features; while (1) { $run++; @@ -711,15 +713,31 @@ while (1) { if ($__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "mix") { # Need to interpolate the phrase tables with current weights, and binarise if (!@phrase_weighting_mix_weights) { - @phrase_weighting_mix_weights = (1.0/scalar(@__PHRASE_WEIGHTING_TABLES)) x scalar(@__PHRASE_WEIGHTING_TABLES); - } + # total number of weights is 1 less than number of phrase features, multiplied + # by the number of tables + $num_mixed_phrase_features = (grep { $_ eq 'tm' } @{$featlist->{"names"}}) - 1; + + @phrase_weighting_mix_weights = (1.0/scalar(@__PHRASE_WEIGHTING_TABLES)) x + ($num_mixed_phrase_features * scalar(@__PHRASE_WEIGHTING_TABLES)); + } + # make a backup copy of startup ini filepath $___CONFIG_ORIG = $___CONFIG unless defined($___CONFIG_ORIG); # Interpolation my $interpolated_phrase_table = "./phrase-table.interpolated.gz"; my $cmd = "$__PHRASE_WEIGHTING_TMCOMBINE combine_given_weights "; - $cmd .= join(" ", map {"model_$_"} (0..(scalar(@phrase_weighting_mix_weights)-1))); - $cmd .= " -w " . join(",",@phrase_weighting_mix_weights); + $cmd .= join(" ", map {"model_$_"} (0..(scalar(@__PHRASE_WEIGHTING_TABLES)-1))); + # convert from table,feature ordering to feature,table ordering + my @transposed_weights; + for my $feature (0..($num_mixed_phrase_features-1)) { + my @table_weights; + for my $table (0..(scalar(@__PHRASE_WEIGHTING_TABLES)-1)) { + push @table_weights, $phrase_weighting_mix_weights[$table * $num_mixed_phrase_features + $feature]; + } + push @transposed_weights, join ",", @table_weights; + } + + $cmd .= " -w \"" . join(";",@transposed_weights) . "\""; $cmd .= " -o $interpolated_phrase_table"; &submit_or_exec($cmd, "interpolate.out", "interpolate.err"); @@ -1084,7 +1102,7 @@ if($___RETURN_BEST_DEV) { my $bestbleu=0; my $evalout = "eval.out"; for (my $i = 1; $i < $run; $i++) { - my $cmd = "$mert_eval_cmd --reference " . join(",", @references) . " --candidate run$i.out"; + my $cmd = "$mert_eval_cmd --reference " . join(",", @references) . " -s BLEU --candidate run$i.out"; $cmd .= " -l $__REMOVE_SEGMENTATION" if defined( $__PHRASE_WEIGHTING) && $__PHRASE_WEIGHTING_TRAINER eq "mix"; safesystem("$cmd 2> /dev/null 1> $evalout"); open my $fh, '<', $evalout or die "Can't read $evalout : $!"; @@ -1130,10 +1148,10 @@ sub get_weights_from_mert { if (/^F(\d+) ([\-\.\de]+)/) { # regular features $WEIGHT[$1] = $2; $sum += abs($2); + } elsif (/^M(\d+_\d+) ([\-\.\de]+)/) { # mix weights + push @$mix_weights,$2; } elsif (/^(.+_.+) ([\-\.\de]+)/) { # sparse features $$sparse_weights{$1} = $2; - } elsif (/^M(\d+) ([\-\.\de]+)/) { # mix weights - push @$mix_weights,$2; } } close $fh; From 24b5746193821e657f31079dc9e4e87e7734c482 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Thu, 21 Feb 2013 17:59:53 +0000 Subject: [PATCH 07/28] Initial checkin. Missing some test data --- contrib/promix/bleu.py | 27 ++ contrib/promix/coll.py | 260 +++++++++++ contrib/promix/main.py | 112 +++++ contrib/promix/nbest.py | 228 ++++++++++ contrib/promix/sampler.py | 44 ++ contrib/promix/test.py | 25 ++ contrib/promix/test_bleu.py | 28 ++ contrib/promix/test_data/README | 5 + contrib/promix/test_data/phrases | 8 + contrib/promix/test_data/phrases.ep | 5 + contrib/promix/test_data/phrases.epnc-lin | 4 + contrib/promix/test_data/phrases.nc | 4 + contrib/promix/test_data/test.nbest.input | 1 + contrib/promix/test_data/test.nbest.nbest | 100 +++++ .../test_data/test.nbest.nbest.segments | 100 +++++ contrib/promix/test_data/test.nbest.scores | 102 +++++ contrib/promix/test_main.py | 28 ++ contrib/promix/test_moses.py | 35 ++ contrib/promix/test_nbest.py | 129 ++++++ contrib/promix/test_sampler.py | 53 +++ contrib/promix/test_train.py | 306 +++++++++++++ contrib/promix/train.py | 410 ++++++++++++++++++ contrib/promix/util.py | 12 + 23 files changed, 2026 insertions(+) create mode 100644 contrib/promix/bleu.py create mode 100644 contrib/promix/coll.py create mode 100755 contrib/promix/main.py create mode 100644 contrib/promix/nbest.py create mode 100755 contrib/promix/sampler.py create mode 100755 contrib/promix/test.py create mode 100755 contrib/promix/test_bleu.py create mode 100644 contrib/promix/test_data/README create mode 100644 contrib/promix/test_data/phrases create mode 100644 contrib/promix/test_data/phrases.ep create mode 100644 contrib/promix/test_data/phrases.epnc-lin create mode 100644 contrib/promix/test_data/phrases.nc create mode 100644 contrib/promix/test_data/test.nbest.input create mode 100644 contrib/promix/test_data/test.nbest.nbest create mode 100644 contrib/promix/test_data/test.nbest.nbest.segments create mode 100644 contrib/promix/test_data/test.nbest.scores create mode 100755 contrib/promix/test_main.py create mode 100755 contrib/promix/test_moses.py create mode 100755 contrib/promix/test_nbest.py create mode 100755 contrib/promix/test_sampler.py create mode 100755 contrib/promix/test_train.py create mode 100755 contrib/promix/train.py create mode 100644 contrib/promix/util.py diff --git a/contrib/promix/bleu.py b/contrib/promix/bleu.py new file mode 100644 index 000000000..de68a2800 --- /dev/null +++ b/contrib/promix/bleu.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python + +from math import exp,log + +class BleuScoreException(Exception): + pass + +class BleuScorer: + def __init__(self): + """References should be a list. If each element is a string, assume + they are filenames, if a list, assume tokenised strings""" + self.smooth = 1.0 + self.order = 4 + + def score(self,scores): + if len(scores) != self.order*2+1: + raise BleuScoreException("Wrong number of scores. Expected %d, but found %d" % + (self.order*2+1, len(scores))) + logbleu = 0.0 + for j in range(self.order): + logbleu += log(scores[2*j] + self.smooth) - log(scores[2*j+1] + self.smooth) + logbleu /= self.order + brevity = 1.0 - float(scores[-1]) / scores[1] + if brevity < 0: + logbleu += brevity + return exp(logbleu) + diff --git a/contrib/promix/coll.py b/contrib/promix/coll.py new file mode 100644 index 000000000..850b488ff --- /dev/null +++ b/contrib/promix/coll.py @@ -0,0 +1,260 @@ +# Backport of OrderedDict() class that runs on Python 2.4, 2.5, 2.6, 2.7 and pypy. +# Passes Python2.7's test suite and incorporates all the latest updates. + +# From http://code.activestate.com/recipes/576693/ + +try: + from thread import get_ident as _get_ident +except ImportError: + from dummy_thread import get_ident as _get_ident + +try: + from _abcoll import KeysView, ValuesView, ItemsView +except ImportError: + pass + + +class OrderedDict(dict): + 'Dictionary that remembers insertion order' + # An inherited dict maps keys to values. + # The inherited dict provides __getitem__, __len__, __contains__, and get. + # The remaining methods are order-aware. + # Big-O running times for all methods are the same as for regular dictionaries. + + # The internal self.__map dictionary maps keys to links in a doubly linked list. + # The circular doubly linked list starts and ends with a sentinel element. + # The sentinel element never gets deleted (this simplifies the algorithm). + # Each link is stored as a list of length three: [PREV, NEXT, KEY]. + + def __init__(self, *args, **kwds): + '''Initialize an ordered dictionary. Signature is the same as for + regular dictionaries, but keyword arguments are not recommended + because their insertion order is arbitrary. + + ''' + if len(args) > 1: + raise TypeError('expected at most 1 arguments, got %d' % len(args)) + try: + self.__root + except AttributeError: + self.__root = root = [] # sentinel node + root[:] = [root, root, None] + self.__map = {} + self.__update(*args, **kwds) + + def __setitem__(self, key, value, dict_setitem=dict.__setitem__): + 'od.__setitem__(i, y) <==> od[i]=y' + # Setting a new item creates a new link which goes at the end of the linked + # list, and the inherited dictionary is updated with the new key/value pair. + if key not in self: + root = self.__root + last = root[0] + last[1] = root[0] = self.__map[key] = [last, root, key] + dict_setitem(self, key, value) + + def __delitem__(self, key, dict_delitem=dict.__delitem__): + 'od.__delitem__(y) <==> del od[y]' + # Deleting an existing item uses self.__map to find the link which is + # then removed by updating the links in the predecessor and successor nodes. + dict_delitem(self, key) + link_prev, link_next, key = self.__map.pop(key) + link_prev[1] = link_next + link_next[0] = link_prev + + def __iter__(self): + 'od.__iter__() <==> iter(od)' + root = self.__root + curr = root[1] + while curr is not root: + yield curr[2] + curr = curr[1] + + def __reversed__(self): + 'od.__reversed__() <==> reversed(od)' + root = self.__root + curr = root[0] + while curr is not root: + yield curr[2] + curr = curr[0] + + def clear(self): + 'od.clear() -> None. Remove all items from od.' + try: + for node in self.__map.itervalues(): + del node[:] + root = self.__root + root[:] = [root, root, None] + self.__map.clear() + except AttributeError: + pass + dict.clear(self) + + def popitem(self, last=True): + '''od.popitem() -> (k, v), return and remove a (key, value) pair. + Pairs are returned in LIFO order if last is true or FIFO order if false. + + ''' + if not self: + raise KeyError('dictionary is empty') + root = self.__root + if last: + link = root[0] + link_prev = link[0] + link_prev[1] = root + root[0] = link_prev + else: + link = root[1] + link_next = link[1] + root[1] = link_next + link_next[0] = root + key = link[2] + del self.__map[key] + value = dict.pop(self, key) + return key, value + + # -- the following methods do not depend on the internal structure -- + + def keys(self): + 'od.keys() -> list of keys in od' + return list(self) + + def values(self): + 'od.values() -> list of values in od' + return [self[key] for key in self] + + def items(self): + 'od.items() -> list of (key, value) pairs in od' + return [(key, self[key]) for key in self] + + def iterkeys(self): + 'od.iterkeys() -> an iterator over the keys in od' + return iter(self) + + def itervalues(self): + 'od.itervalues -> an iterator over the values in od' + for k in self: + yield self[k] + + def iteritems(self): + 'od.iteritems -> an iterator over the (key, value) items in od' + for k in self: + yield (k, self[k]) + + def update(*args, **kwds): + '''od.update(E, **F) -> None. Update od from dict/iterable E and F. + + If E is a dict instance, does: for k in E: od[k] = E[k] + If E has a .keys() method, does: for k in E.keys(): od[k] = E[k] + Or if E is an iterable of items, does: for k, v in E: od[k] = v + In either case, this is followed by: for k, v in F.items(): od[k] = v + + ''' + if len(args) > 2: + raise TypeError('update() takes at most 2 positional ' + 'arguments (%d given)' % (len(args),)) + elif not args: + raise TypeError('update() takes at least 1 argument (0 given)') + self = args[0] + # Make progressively weaker assumptions about "other" + other = () + if len(args) == 2: + other = args[1] + if isinstance(other, dict): + for key in other: + self[key] = other[key] + elif hasattr(other, 'keys'): + for key in other.keys(): + self[key] = other[key] + else: + for key, value in other: + self[key] = value + for key, value in kwds.items(): + self[key] = value + + __update = update # let subclasses override update without breaking __init__ + + __marker = object() + + def pop(self, key, default=__marker): + '''od.pop(k[,d]) -> v, remove specified key and return the corresponding value. + If key is not found, d is returned if given, otherwise KeyError is raised. + + ''' + if key in self: + result = self[key] + del self[key] + return result + if default is self.__marker: + raise KeyError(key) + return default + + def setdefault(self, key, default=None): + 'od.setdefault(k[,d]) -> od.get(k,d), also set od[k]=d if k not in od' + if key in self: + return self[key] + self[key] = default + return default + + def __repr__(self, _repr_running={}): + 'od.__repr__() <==> repr(od)' + call_key = id(self), _get_ident() + if call_key in _repr_running: + return '...' + _repr_running[call_key] = 1 + try: + if not self: + return '%s()' % (self.__class__.__name__,) + return '%s(%r)' % (self.__class__.__name__, self.items()) + finally: + del _repr_running[call_key] + + def __reduce__(self): + 'Return state information for pickling' + items = [[k, self[k]] for k in self] + inst_dict = vars(self).copy() + for k in vars(OrderedDict()): + inst_dict.pop(k, None) + if inst_dict: + return (self.__class__, (items,), inst_dict) + return self.__class__, (items,) + + def copy(self): + 'od.copy() -> a shallow copy of od' + return self.__class__(self) + + @classmethod + def fromkeys(cls, iterable, value=None): + '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S + and values equal to v (which defaults to None). + + ''' + d = cls() + for key in iterable: + d[key] = value + return d + + def __eq__(self, other): + '''od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive + while comparison to a regular mapping is order-insensitive. + + ''' + if isinstance(other, OrderedDict): + return len(self)==len(other) and self.items() == other.items() + return dict.__eq__(self, other) + + def __ne__(self, other): + return not self == other + + # -- the following methods are only used in Python 2.7 -- + + def viewkeys(self): + "od.viewkeys() -> a set-like object providing a view on od's keys" + return KeysView(self) + + def viewvalues(self): + "od.viewvalues() -> an object providing a view on od's values" + return ValuesView(self) + + def viewitems(self): + "od.viewitems() -> a set-like object providing a view on od's items" + return ItemsView(self) diff --git a/contrib/promix/main.py b/contrib/promix/main.py new file mode 100755 index 000000000..8ab62cb17 --- /dev/null +++ b/contrib/promix/main.py @@ -0,0 +1,112 @@ +#!/usr/bin/env python + +# +# Implementation of PRO training and extensions to train phrase weights +# + +import gzip +import logging +from numpy import array +import optparse +import os.path +import sys + +from nbest import * +from sampler import * +from train import * + + +logging.basicConfig(format = "%(asctime)-15s %(message)s") +log = logging.getLogger('main') +log.setLevel(logging.DEBUG) + +class Config: + def __init__(self): + self.parser = optparse.OptionParser(usage="%prog [options] ") + self.parser.add_option("-t", "--trainer", action="store",\ + dest="trainer", metavar="TYPE", type="choice", choices=("pro","mix"),\ + default="pro",\ + help="type of trainer to run (pro,mix)") + self.parser.add_option("-n", "--nbest", action="append", \ + dest="nbest", metavar="NBEST-FILE",\ + help="nbest output file(s) from decoder") + self.parser.add_option("-S", "--scfile", action="append",\ + dest="score", metavar="SCORE-FILE",\ + help="score file(s) from extractor (in same order as nbests)") + self.parser.add_option("-p", "--phrase-table" , action="append",\ + dest="ttable", metavar="TTABLE",\ + help="ttable to be used in mixture model training") + self.parser.add_option("-i", "--input-file", action="store",\ + dest="input_file", metavar="INPUT-FILE", + help="source text file") + self.parser.add_option("-m", "--moses-bin-dir", action="store",\ + dest="moses_bin_dir", metavar="DIR", + help="directory containing Moses binaries", + default=os.path.expanduser("~/moses/bin")) + self.nbest_files = [] + self.score_files = [] + self.ttables = [] + + def parse(self,args=sys.argv[1:]): + (options,args) = self.parser.parse_args(args) + self.nbest_files = options.nbest + self.score_files = options.score + self.ttables = options.ttable + self.input_file = options.input_file + self.trainer = options.trainer + self.moses_bin_dir = options.moses_bin_dir + if not self.nbest_files: + self.nbest_files = ["data/esen.nc.nbest.segment"] + if not self.score_files: + self.score_files = ["data/esen.nc.scores"] + if len(self.nbest_files) != len(self.score_files): + self.parser.error("Must have equal numbers of score files and nbest files") + if self.trainer == "mix": + if not self.input_file or not self.ttables: + self.parser.error("Need to specify input file and ttables for mix training") + if len(self.ttables) != 2: + self.parser.error("Can only train mix model with 2 ttables at the moment") + +def main(): + config = Config() + config.parse() + + samples = [] + sampler = HopkinsMaySampler() + nbests = 0 + for nbest_file,score_data_file in zip(config.nbest_files,config.score_files): + log.debug("nbest: " + nbest_file + "; score:" + score_data_file) + segments = False + if config.trainer == "mix": segments = True + for nbest in get_scored_nbests(nbest_file, score_data_file, config.input_file, segments=segments): + samples += sampler.sample(nbest) + nbests += 1 + log.debug("Samples loaded") + trainer = None + if config.trainer == "mix": + # Add the phrase table scores + scorer = MosesPhraseScorer(config.ttables) + log.debug("Scoring samples...") + for sample in samples: + scorer.add_scores(sample.hyp1) + scorer.add_scores(sample.hyp2) + log.debug("...samples scored") + trainer = MixtureModelTrainer(samples) + elif config.trainer == "pro": + trainer = ProTrainer(samples) + else: assert(0) + log.debug("Starting training...") + weights,mix_weights = trainer.train(debug=False) + log.debug("...training complete") + for i,w in enumerate(weights): + print "F%d %10.8f" % (i,w) + for i,f in enumerate(mix_weights): + for j,w in enumerate(f): + print "M%d_%d %10.8f" % (i,j,w) + + + + + +if __name__ == "__main__": + main() diff --git a/contrib/promix/nbest.py b/contrib/promix/nbest.py new file mode 100644 index 000000000..b376c446c --- /dev/null +++ b/contrib/promix/nbest.py @@ -0,0 +1,228 @@ +#!/usr/bin/env python + +import gzip +import re +import numpy as np +import sys + +from bleu import BleuScorer +from coll import OrderedDict +sys.path.append("/home/bhaddow/code/mixture-models/moses/contrib/python") +import moses.dictree as binpt + +class DataFormatException(Exception): + pass + +class Hypothesis: + def __init__(self,text,fv,segments=False): + self.alignment = [] #only stored for segmented hypos + self.tokens = [] #only stored for segmented hypos + if not segments: + self.text = text + # Triples of (source-start, source-end, target-end) where segments end positions + # are 1 beyond the last token + else: + # recover segmentation + self.tokens = [] + align_re = re.compile("\|(\d+)-(\d+)\|") + for token in text.split(): + match = align_re.match(token) + if match: + self.alignment.append\ + ((int(match.group(1)), 1+int(match.group(2)), len(self.tokens))) + else: + self.tokens.append(token) + self.text = " ".join(self.tokens) + if not self.alignment: + raise DataFormatException("Expected segmentation information not found in nbest") + + + self.fv = np.array(fv) + self.score = 0 + + def __str__(self): + return "{text=%s fv=%s score=%5.4f}" % (self.text, str(self.fv), self.score) + +class NBestList: + def __init__(self,id): + self.id = id + self.hyps = [] + +# Maps feature ids (short feature names) to their values +_feature_index = {} +def set_feature_start(name,index): + indexes = _feature_index.get(name, [index,0]) + indexes[0] = index + _feature_index[name] = indexes + +def set_feature_end(name,index): + indexes = _feature_index.get(name, [0,index]) + indexes[1] = index + _feature_index[name] = indexes + +def get_feature_index(name): + return _feature_index.get(name, [0,0]) + +def get_nbests(nbest_file, segments=False): + """Iterate through nbest lists""" + if nbest_file.endswith("gz"): + fh = gzip.GzipFile(nbest_file) + else: + fh = open(nbest_file) + lineno = 0 + nbest = None + for line in fh: + fields = line.split(" ||| ") + if len(fields) != 4: + raise DataFormatException("nbest(%d): %s" % (lineno,line)) + (id, text, scores, total) = fields + if nbest and nbest.id != id: + yield nbest + nbest = None + if not nbest: + nbest = NBestList(id) + fv = [] + score_name = None + for score in scores.split(): + if score.endswith(":"): + score = score[:-1] + if score_name: + set_feature_end(score_name,len(fv)) + score_name = score + set_feature_start(score_name,len(fv)) + else: + fv.append(float(score)) + if score_name: set_feature_end(score_name,len(fv)) + hyp = Hypothesis(text[:-1],fv,segments) + nbest.hyps.append(hyp) + if nbest: + yield nbest + +def get_scores(score_data_file): + """Iterate through the score data, returning a set of scores for each sentence""" + scorer = BleuScorer() + fh = open(score_data_file) + lineno = 0 + score_vectors = None + for line in fh: + if line.startswith("SCORES_TXT_BEGIN"): + score_vectors = [] + elif line.startswith("SCORES_TXT_END"): + scores = [scorer.score(score_vector) for score_vector in score_vectors] + yield scores + else: + score_vectors.append([float(i) for i in line[:-1].split()]) + + +def get_scored_nbests(nbest_file, score_data_file, input_file, segments=False): + score_gen = get_scores(score_data_file) + input_gen = None + if input_file: input_gen = open(input_file) + try: + for nbest in get_nbests(nbest_file, segments=segments): + scores = score_gen.next() + if len(scores) != len(nbest.hyps): + raise DataFormatException("Length of nbest %s does not match score list (%d != %d)" % + (nbest.id,len(nbest.hyps), len(scores))) + input_line = None + if input_gen: + input_line = input_gen.next()[:-1] + for hyp,score in zip(nbest.hyps, scores): + hyp.score = score + hyp.input_line = input_line + yield nbest + + except StopIteration: + raise DataFormatException("Score file shorter than nbest list file") + +class PhraseCache: + """An LRU cache for ttable lookups""" + def __init__(self, max_size): + self.max_size = max_size + self.pairs_to_scores = OrderedDict() + + def get(self, source, target): + key = (source,target) + scores = self.pairs_to_scores.get(key,None) + if scores: + # cache hit - update access time + del self.pairs_to_scores[key] + self.pairs_to_scores[key] = scores + return scores + + def add(self,source,target,scores): + key = (source,target) + self.pairs_to_scores[key] = scores + while len(self.pairs_to_scores) > self.max_size: + self.pairs_to_scores.popitem(last=False) + +# +# Should I store full lists of options, or just phrase pairs? +# Should probably store phrase-pairs, but may want to add +# high scoring pairs (say, 20?) when I load the translations +# of a given phrase +# + +class CachedPhraseTable: + def __init__(self,ttable_file,nscores=5,cache_size=20000): + wa = False + if binpt.PhraseDictionaryTree.isValidBinaryTable(ttable_file,True): + # assume word alignment is included + wa = True + self.ttable = binpt.PhraseDictionaryTree(ttable_file,nscores,wa) + self.cache = PhraseCache(cache_size) + self.nscores = nscores + + def get_scores(self,phrase): + source = " ".join(phrase[0]) + target_tuple = tuple(phrase[1]) + target = " ".join(target_tuple) + scores = self.cache.get(source,target) + if not scores: + # cache miss + scores = [0] * (self.nscores-1) # ignore penalty + entries = self.ttable.query(source) + # find correct target + for entry in entries: + if entry.words == target_tuple: + scores = entry.scores[:-1] + break + #print "QUERY",source,"|||",target,"|||",scores + self.cache.add(source,target,scores) + #else: + # print "CACHE",source,"|||",target,"|||",scores + return scores + + +class MosesPhraseScorer: + def __init__(self,ttable_files, cache_size=20000): + self.ttables = [] + for ttable_file in ttable_files: + self.ttables.append(CachedPhraseTable(ttable_file, cache_size=cache_size)) + + def add_scores(self, hyp): + """Add the phrase scores to a hypothesis""" + # Collect up the phrase pairs + phrases = [] + source_tokens = hyp.input_line.split() + tgt_st = 0 + if not hyp.alignment: + raise DataFormatException("Alignments missing from: " + str(hyp)) + for src_st,src_end,tgt_end in hyp.alignment: + phrases.append((source_tokens[src_st:src_end], hyp.tokens[tgt_st:tgt_end])) + tgt_st = tgt_end + # Look up the scores + phrase_scores = [] + for ttable in self.ttables: + phrase_scores.append([]) + for phrase in phrases: + phrase_scores[-1].append(ttable.get_scores(phrase)) +# phrase_scores = np.array(phrase_scores) +# eps = np.exp(-100) +# phrase_scores[phrase_scores self.nsamples: + heapq.heappop(samples) + return samples + diff --git a/contrib/promix/test.py b/contrib/promix/test.py new file mode 100755 index 000000000..783877c1f --- /dev/null +++ b/contrib/promix/test.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python + +import unittest + +import test_bleu +import test_main +import test_moses +import test_nbest +import test_sampler +import test_train + +def main(): + test_list = [] + test_list.append(test_bleu.suite) + test_list.append(test_main.suite) +# test_list.append(test_moses.suite) + test_list.append(test_nbest.suite) + test_list.append(test_sampler.suite) + test_list.append(test_train.suite) + + suite = unittest.TestSuite(test_list) + unittest.TextTestRunner().run(suite) + +if __name__ == "__main__": + main() diff --git a/contrib/promix/test_bleu.py b/contrib/promix/test_bleu.py new file mode 100755 index 000000000..28708bcd9 --- /dev/null +++ b/contrib/promix/test_bleu.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python + +import math +import unittest + +from bleu import * + +class TestBleuScorer(unittest.TestCase): + def setUp(self): + self.scorer = BleuScorer() + + def test_wrong_length(self): + self.assertRaises(BleuScoreException, self.scorer.score, [1]*8) + self.assertRaises(BleuScoreException, self.scorer.score, [1]*10) + + def test_score(self): + stats = [2,5,0,1,1,1,1,1,5] + self.assertAlmostEqual(self.scorer.score(stats), 1/math.sqrt(2)) + + def test_brevity(self): + stats = [2,2,2,2,2,2,2,2,3] + self.assertAlmostEqual(self.scorer.score(stats), math.exp(1 - 3.0/2.0)) + +if __name__ == "__main__": + unittest.main() + +suite = unittest.TestLoader().loadTestsFromTestCase(TestBleuScorer) + diff --git a/contrib/promix/test_data/README b/contrib/promix/test_data/README new file mode 100644 index 000000000..5a0c83b5f --- /dev/null +++ b/contrib/promix/test_data/README @@ -0,0 +1,5 @@ +These nbest lists are created using the model in +data/esen.epnc-lin.model + +Note that the nc-ep weights for this are: +[[0.54471993730312251, 0.45528006269687754], [0.56546688367708142, 0.43453311632291863], [0.55867730373453584, 0.44132269626546422], [0.46645964485220004, 0.53354035514779996]] diff --git a/contrib/promix/test_data/phrases b/contrib/promix/test_data/phrases new file mode 100644 index 000000000..6195b8fc8 --- /dev/null +++ b/contrib/promix/test_data/phrases @@ -0,0 +1,8 @@ +domando a +los políticos +en ambos +lados del Atlántico +taming +politicians +on both +sides of the Atlantic diff --git a/contrib/promix/test_data/phrases.ep b/contrib/promix/test_data/phrases.ep new file mode 100644 index 000000000..5b4547e40 --- /dev/null +++ b/contrib/promix/test_data/phrases.ep @@ -0,0 +1,5 @@ + +los políticos ||| politicians ||| 0-0 1-0 ||| 0.33497 0.180441 0.638586 0.0962213 2.718 +en ambos ||| on both ||| 0-0 1-1 ||| 0.0908379 0.0213197 0.187399 0.0498198 2.718 +lados del Atlántico ||| sides of the Atlantic ||| 0-0 1-1 1-2 2-3 ||| 0.62585 0.00702384 0.836364 0.0687874 2.718 + diff --git a/contrib/promix/test_data/phrases.epnc-lin b/contrib/promix/test_data/phrases.epnc-lin new file mode 100644 index 000000000..591ff8324 --- /dev/null +++ b/contrib/promix/test_data/phrases.epnc-lin @@ -0,0 +1,4 @@ +domando a ||| taming ||| 0.0403496 0.00427574 0.558677 0.233252 2.718 +los políticos ||| politicians ||| 0.449849 0.210571 0.739008 0.138315 2.718 +en ambos ||| on both ||| 0.198423 0.0402601 0.270259 0.0519369 2.718 +lados del Atlántico ||| sides of the Atlantic ||| 0.708608 0.00997589 0.803633 0.0530904 2.718 diff --git a/contrib/promix/test_data/phrases.nc b/contrib/promix/test_data/phrases.nc new file mode 100644 index 000000000..876b335c8 --- /dev/null +++ b/contrib/promix/test_data/phrases.nc @@ -0,0 +1,4 @@ +domando a ||| taming ||| 0-0 1-0 ||| 0.0740741 0.00756144 1 0.500047 2.718 +los políticos ||| politicians ||| 0-0 1-0 ||| 0.545866 0.233725 0.818336 0.186463 2.718 +en ambos ||| on both ||| 0-0 1-1 ||| 0.288344 0.0548148 0.335714 0.0543585 2.718 +dos del Atlántico ||| sides of the Atlantic ||| 0-0 1-1 1-2 2-3 ||| 0.777778 0.0122444 0.777778 0.0351361 2.718 diff --git a/contrib/promix/test_data/test.nbest.input b/contrib/promix/test_data/test.nbest.input new file mode 100644 index 000000000..386e42ad9 --- /dev/null +++ b/contrib/promix/test_data/test.nbest.input @@ -0,0 +1 @@ +domando a los políticos en ambos lados del Atlántico diff --git a/contrib/promix/test_data/test.nbest.nbest b/contrib/promix/test_data/test.nbest.nbest new file mode 100644 index 000000000..b3e890a2c --- /dev/null +++ b/contrib/promix/test_data/test.nbest.nbest @@ -0,0 +1,100 @@ +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -1.51037 0 0 -2.60639 0 0 lm: -36.0562 w: -8 tm: -5.97082 -14.8327 -2.41162 -9.32734 3.99959 ||| -16.9717 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.07904 0 0 -2.22203 0 0 lm: -37.2846 w: -9 tm: -5.43337 -15.7907 -4.86623 -9.68878 3.99959 ||| -16.9885 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -2.24178 0 0 -2.59408 0 0 lm: -36.0562 w: -8 tm: -5.55036 -14.7311 -1.14332 -9.34122 2.99969 ||| -17.0321 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.81045 0 0 -2.20973 0 0 lm: -37.2846 w: -9 tm: -5.01291 -15.689 -3.59793 -9.70266 2.99969 ||| -17.0489 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -1.8566 0 0 -2.76972 0 0 lm: -36.0562 w: -8 tm: -6.33782 -14.6804 -1.8329 -9.34609 3.99959 ||| -17.0555 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.42527 0 0 -2.38536 0 0 lm: -37.2846 w: -9 tm: -5.80037 -15.6384 -4.28752 -9.70753 3.99959 ||| -17.0723 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -1.947 0 0 -2.66963 0 0 lm: -36.0562 w: -8 tm: -7.12207 -14.8138 -2.49723 -9.33158 4.99948 ||| -17.1661 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -1.36892 0 0 -2.85256 0 0 lm: -36.0562 w: -8 tm: -5.62394 -14.8136 -3.58667 -9.35962 3.99959 ||| -17.1714 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.51567 0 0 -2.28527 0 0 lm: -37.2846 w: -9 tm: -6.58462 -15.7718 -4.95184 -9.69302 4.99948 ||| -17.183 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -0.93759 0 0 -2.4682 0 0 lm: -37.2846 w: -9 tm: -5.08649 -15.7715 -6.04129 -9.72106 3.99959 ||| -17.1882 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -2.71301 0 0 -2.68303 0 0 lm: -36.0562 w: -8 tm: -6.41885 -14.6935 -1.25905 -9.34492 3.99959 ||| -17.1903 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -2.28167 0 0 -2.29867 0 0 lm: -37.2846 w: -9 tm: -5.8814 -15.6515 -3.71367 -9.70637 3.99959 ||| -17.2071 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -1.56496 0 0 -2.75335 0 0 lm: -36.0562 w: -8 tm: -7.49271 -14.8064 -2.97497 -9.34339 4.99948 ||| -17.2472 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.13363 0 0 -2.36899 0 0 lm: -37.2846 w: -9 tm: -6.95526 -15.7643 -5.42959 -9.70483 4.99948 ||| -17.264 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -1.78819 0 0 -2.89955 0 0 lm: -36.0562 w: -8 tm: -6.50046 -14.7823 -3.66165 -9.36203 4.99948 ||| -17.2958 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.35686 0 0 -2.51519 0 0 lm: -37.2846 w: -9 tm: -5.96301 -15.7403 -6.11627 -9.72347 4.99948 ||| -17.3126 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -1.4211 0 0 -2.96742 0 0 lm: -36.0562 w: -8 tm: -6.94636 -14.7711 -4.14828 -9.33786 4.99948 ||| -17.3855 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -0.989766 0 0 -2.58306 0 0 lm: -37.2846 w: -9 tm: -6.40891 -15.7291 -6.6029 -9.69931 4.99948 ||| -17.4023 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -1.5859 0 0 -3.00234 0 0 lm: -36.0562 w: -8 tm: -7.53826 -14.8794 -3.91516 -9.31284 4.99948 ||| -17.5338 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.15457 0 0 -2.61798 0 0 lm: -37.2846 w: -9 tm: -7.00081 -15.8374 -6.36978 -9.67428 4.99948 ||| -17.5506 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.52679 0 0 -2.89648 0 0 lm: -37.2846 w: -9 tm: -8.24923 -15.7898 -4.29661 -9.63452 4.99948 ||| -17.5634 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -2.2582 0 0 -2.88417 0 0 lm: -37.2846 w: -9 tm: -7.82876 -15.6881 -3.02831 -9.6484 3.99959 ||| -17.6238 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.87302 0 0 -3.05981 0 0 lm: -37.2846 w: -9 tm: -8.61622 -15.6375 -3.7179 -9.65327 4.99948 ||| -17.6472 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -2.40826 0 0 -3.29781 0 0 lm: -36.0562 w: -8 tm: -7.95188 -14.6816 -2.5975 -9.34956 4.99948 ||| -17.6561 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.97693 0 0 -2.91345 0 0 lm: -37.2846 w: -9 tm: -7.41443 -15.6395 -5.05211 -9.711 4.99948 ||| -17.6729 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -2.02253 0 0 -3.06558 0 0 lm: -36.0562 w: -8 tm: -8.6895 -14.8606 -4.00077 -9.31707 5.99938 ||| -17.7283 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.5912 0 0 -2.68122 0 0 lm: -37.2846 w: -9 tm: -8.15205 -15.8185 -6.45539 -9.67851 5.99938 ||| -17.7451 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.96342 0 0 -2.95972 0 0 lm: -37.2846 w: -9 tm: -9.40047 -15.7709 -4.38222 -9.63875 5.99938 ||| -17.7579 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.38534 0 0 -3.14265 0 0 lm: -37.2846 w: -9 tm: -7.90234 -15.7706 -5.47167 -9.66679 4.99948 ||| -17.7631 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -2.72942 0 0 -2.97312 0 0 lm: -37.2846 w: -9 tm: -8.69725 -15.6506 -3.14405 -9.6521 4.99948 ||| -17.782 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -1.64049 0 0 -3.1493 0 0 lm: -36.0562 w: -8 tm: -9.06014 -14.8531 -4.47852 -9.32889 5.99938 ||| -17.8093 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -1.95601 0 0 -3.55535 0 0 lm: -36.0562 w: -8 tm: -4.91151 -15.1311 -3.72129 -9.93616 2.99969 ||| -17.8216 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.20916 0 0 -2.76494 0 0 lm: -37.2846 w: -9 tm: -8.52269 -15.8111 -6.93313 -9.69033 5.99938 ||| -17.8261 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.58137 0 0 -3.04344 0 0 lm: -37.2846 w: -9 tm: -9.77111 -15.7635 -4.85997 -9.65057 5.99938 ||| -17.8389 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -2.11662 0 0 -3.28144 0 0 lm: -36.0562 w: -8 tm: -9.10677 -14.8075 -3.73957 -9.34686 5.99938 ||| -17.8478 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.68529 0 0 -2.89708 0 0 lm: -37.2846 w: -9 tm: -8.56932 -15.7655 -6.19418 -9.7083 5.99938 ||| -17.8646 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.80461 0 0 -3.18964 0 0 lm: -37.2846 w: -9 tm: -8.77886 -15.7394 -5.54665 -9.66921 5.99938 ||| -17.8875 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -2.37528 0 0 -3.60234 0 0 lm: -36.0562 w: -8 tm: -5.78803 -15.0999 -3.79627 -9.93857 3.99958 ||| -17.946 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.43751 0 0 -3.25751 0 0 lm: -37.2846 w: -9 tm: -9.22476 -15.7282 -6.03327 -9.64504 5.99938 ||| -17.9772 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -1.97276 0 0 -3.49551 0 0 lm: -36.0562 w: -8 tm: -8.56043 -14.7723 -4.91288 -9.34133 5.99938 ||| -17.9861 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.54143 0 0 -3.11115 0 0 lm: -37.2846 w: -9 tm: -8.02298 -15.7302 -7.36749 -9.70277 5.99938 ||| -18.0029 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -2.00819 0 0 -3.67021 0 0 lm: -36.0562 w: -8 tm: -6.23393 -15.0887 -4.2829 -9.91441 3.99958 ||| -18.0357 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -2.61446 0 0 -2.59408 0 0 lm: -37.5177 w: -9 tm: -6.22594 -14.8893 -3.54625 -12.0454 2.99969 ||| -18.0629 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -2.18313 0 0 -2.20973 0 0 lm: -38.7461 w: -10 tm: -5.68849 -15.8473 -6.00087 -12.4069 2.99969 ||| -18.0797 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -1.97768 0 0 -2.76972 0 0 lm: -37.5177 w: -9 tm: -7.93613 -14.6804 -4.69485 -11.2579 3.99959 ||| -18.097 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.54635 0 0 -2.38536 0 0 lm: -38.7461 w: -10 tm: -7.39868 -15.6384 -7.14947 -11.6193 3.99959 ||| -18.1138 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.60232 0 0 -3.29243 0 0 lm: -37.2846 w: -9 tm: -9.81666 -15.8365 -5.80015 -9.62002 5.99938 ||| -18.1255 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -1.8227 0 0 -2.66963 0 0 lm: -37.5177 w: -9 tm: -8.25244 -14.8138 -5.95756 -11.1747 4.99948 ||| -18.1464 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.39137 0 0 -2.28527 0 0 lm: -38.7461 w: -10 tm: -7.71499 -15.7718 -8.41217 -11.5362 4.99948 ||| -18.1632 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -2.58871 0 0 -2.68303 0 0 lm: -37.5177 w: -9 tm: -7.54922 -14.6935 -4.71938 -11.1881 3.99959 ||| -18.1705 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -2.17299 0 0 -3.70513 0 0 lm: -36.0562 w: -8 tm: -6.82583 -15.197 -4.04978 -9.88939 3.99958 ||| -18.184 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -2.15738 0 0 -2.29867 0 0 lm: -38.7461 w: -10 tm: -7.01177 -15.6515 -7.174 -11.5495 3.99959 ||| -18.1873 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -2.42468 0 0 -3.5879 0 0 lm: -37.2846 w: -9 tm: -10.2303 -15.6386 -4.48249 -9.65674 5.99938 ||| -18.2478 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -1.66389 0 0 -2.89955 0 0 lm: -37.5177 w: -9 tm: -7.63083 -14.7823 -7.12198 -11.2052 4.99948 ||| -18.2761 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -1.68604 0 0 -2.75335 0 0 lm: -37.5177 w: -9 tm: -9.09102 -14.8064 -5.83693 -11.2552 4.99948 ||| -18.2887 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.23256 0 0 -2.51519 0 0 lm: -38.7461 w: -10 tm: -7.09338 -15.7403 -9.5766 -11.5666 4.99948 ||| -18.2929 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.25471 0 0 -2.36899 0 0 lm: -38.7461 w: -10 tm: -8.55357 -15.7643 -8.29154 -11.6166 4.99948 ||| -18.3055 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -2.03895 0 0 -3.35567 0 0 lm: -37.2846 w: -9 tm: -10.9679 -15.8176 -5.88577 -9.62425 6.99927 ||| -18.32 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -2.60962 0 0 -3.76837 0 0 lm: -36.0562 w: -8 tm: -7.97707 -15.1781 -4.1354 -9.89362 4.99948 ||| -18.3785 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.65691 0 0 -3.43939 0 0 lm: -37.2846 w: -9 tm: -11.3385 -15.8102 -6.36351 -9.63607 6.99927 ||| -18.401 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -2.19215 0 0 -3.67739 0 0 lm: -36.0562 w: -8 tm: -10.6742 -14.8543 -5.24311 -9.33236 6.99927 ||| -18.4099 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.76082 0 0 -3.29303 0 0 lm: -37.2846 w: -9 tm: -10.1368 -15.8122 -7.69773 -9.6938 6.99927 ||| -18.4267 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -1.54218 0 0 -2.96742 0 0 lm: -37.5177 w: -9 tm: -8.54467 -14.7711 -7.01023 -11.2497 4.99948 ||| -18.427 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -2.13304 0 0 -3.57153 0 0 lm: -37.2846 w: -9 tm: -11.3852 -15.7646 -5.62456 -9.65404 6.99927 ||| -18.4395 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.11085 0 0 -2.58306 0 0 lm: -38.7461 w: -10 tm: -8.00723 -15.7291 -9.46485 -11.6111 4.99948 ||| -18.4438 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -2.22758 0 0 -3.85209 0 0 lm: -36.0562 w: -8 tm: -8.34771 -15.1707 -4.61314 -9.90544 4.99948 ||| -18.4595 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.98917 0 0 -3.7856 0 0 lm: -37.2846 w: -9 tm: -10.8388 -15.7293 -6.79787 -9.64851 6.99927 ||| -18.5778 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -2.0125 0 0 -2.60639 0 0 lm: -37.5177 w: -9 tm: -8.02561 -15.1979 -6.07103 -12.091 3.99959 ||| -18.6217 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -2.55985 0 0 -4.1983 0 0 lm: -36.0562 w: -8 tm: -7.848 -15.0898 -5.0475 -9.91788 4.99948 ||| -18.6363 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -2.28396 0 0 -3.29781 0 0 lm: -37.5177 w: -9 tm: -9.08225 -14.6816 -6.05783 -11.1927 4.99948 ||| -18.6364 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.58117 0 0 -2.22203 0 0 lm: -38.7461 w: -10 tm: -7.48816 -16.1559 -8.52564 -12.4524 3.99959 ||| -18.6385 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.85263 0 0 -2.91345 0 0 lm: -38.7461 w: -10 tm: -8.5448 -15.6395 -8.51244 -11.5541 4.99948 ||| -18.6532 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -2.63088 0 0 -2.88417 0 0 lm: -38.7461 w: -10 tm: -8.50434 -15.8464 -5.43125 -12.3526 3.99959 ||| -18.6546 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -1.86965 0 0 -2.85256 0 0 lm: -37.5177 w: -9 tm: -7.44015 -15.0375 -7.00556 -11.9328 3.99959 ||| -18.6588 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.43831 0 0 -2.4682 0 0 lm: -38.7461 w: -10 tm: -6.9027 -15.9955 -9.46017 -12.2942 3.99959 ||| -18.6756 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.9941 0 0 -3.05981 0 0 lm: -38.7461 w: -10 tm: -10.2145 -15.6375 -6.57985 -11.5651 4.99948 ||| -18.6887 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -1.89824 0 0 -3.06558 0 0 lm: -37.5177 w: -9 tm: -9.81987 -14.8606 -7.4611 -11.1602 5.99938 ||| -18.7085 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.4669 0 0 -2.68122 0 0 lm: -38.7461 w: -10 tm: -9.28242 -15.8185 -9.91572 -11.5217 5.99938 ||| -18.7253 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.83912 0 0 -2.95972 0 0 lm: -38.7461 w: -10 tm: -10.5308 -15.7709 -7.84255 -11.4819 5.99938 ||| -18.7381 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.07039 0 0 -3.90067 0 0 lm: -37.2846 w: -9 tm: -8.33352 -16.8256 -6.4114 -10.5648 3.99959 ||| -18.7608 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -2.60513 0 0 -2.97312 0 0 lm: -38.7461 w: -10 tm: -9.82762 -15.6506 -6.60437 -11.4952 4.99948 ||| -18.7622 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -1.99232 0 0 -3.28144 0 0 lm: -37.5177 w: -9 tm: -10.2371 -14.8075 -7.1999 -11.19 5.99938 ||| -18.828 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.56099 0 0 -2.89708 0 0 lm: -38.7461 w: -10 tm: -9.6997 -15.7655 -9.65451 -11.5514 5.99938 ||| -18.8448 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -1.76157 0 0 -3.1493 0 0 lm: -37.5177 w: -9 tm: -10.6585 -14.8531 -7.34047 -11.2407 5.99938 ||| -18.8508 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.33024 0 0 -2.76494 0 0 lm: -38.7461 w: -10 tm: -10.121 -15.8111 -9.79508 -11.6021 5.99938 ||| -18.8676 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.68031 0 0 -3.18964 0 0 lm: -38.7461 w: -10 tm: -9.90924 -15.7394 -9.00698 -11.5123 5.99938 ||| -18.8678 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.70246 0 0 -3.04344 0 0 lm: -38.7461 w: -10 tm: -11.3694 -15.7635 -7.72192 -11.5624 5.99938 ||| -18.8804 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.48965 0 0 -3.94766 0 0 lm: -37.2846 w: -9 tm: -9.21005 -16.7944 -6.48638 -10.5672 4.99948 ||| -18.8852 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -2.25098 0 0 -3.60234 0 0 lm: -37.5177 w: -9 tm: -6.91841 -15.0999 -7.2566 -11.7817 3.99958 ||| -18.9263 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -1.84846 0 0 -3.49551 0 0 lm: -37.5177 w: -9 tm: -9.6908 -14.7723 -8.37321 -11.1845 5.99938 ||| -18.9663 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.12256 0 0 -4.01553 0 0 lm: -37.2846 w: -9 tm: -9.65595 -16.7832 -6.97301 -10.543 4.99948 ||| -18.9749 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.41713 0 0 -3.11115 0 0 lm: -38.7461 w: -10 tm: -9.15335 -15.7302 -10.8278 -11.5459 5.99938 ||| -18.9831 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -2.20857 0 0 -3.96748 0 0 lm: -37.2846 w: -9 tm: -12.9526 -15.8114 -7.12811 -9.63954 7.99917 ||| -19.0016 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.5586 0 0 -3.25751 0 0 lm: -38.7461 w: -10 tm: -10.8231 -15.7282 -8.89523 -11.5568 5.99938 ||| -19.0187 +0 ||| taming politicians on both sides of the Atlantic ||| d: 0 -2.77924 0 0 -4.38018 0 0 lm: -36.0562 w: -8 tm: -9.96178 -15.1719 -5.37774 -9.90891 5.99938 ||| -19.0601 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -2.12927 0 0 -3.67021 0 0 lm: -37.5177 w: -9 tm: -7.83225 -15.0887 -7.14485 -11.8262 3.99958 ||| -19.0772 +0 ||| taming the politicians on both sides of the Atlantic ||| d: 0 -1.28737 0 0 -4.05045 0 0 lm: -37.2846 w: -9 tm: -10.2478 -16.8915 -6.73989 -10.518 4.99948 ||| -19.1232 +0 ||| taming politicians on both sides of the Atlantic , ||| d: 0 -2.08803 0 0 -3.00234 0 0 lm: -37.5177 w: -9 tm: -9.59305 -15.2447 -7.57457 -12.0765 4.99948 ||| -19.1838 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -1.6567 0 0 -2.61798 0 0 lm: -38.7461 w: -10 tm: -9.0556 -16.2026 -10.0292 -12.4379 4.99948 ||| -19.2006 +0 ||| taming the politicians on both sides of the Atlantic , ||| d: 0 -2.02892 0 0 -2.89648 0 0 lm: -38.7461 w: -10 tm: -10.304 -16.155 -7.95602 -12.3982 4.99948 ||| -19.2134 diff --git a/contrib/promix/test_data/test.nbest.nbest.segments b/contrib/promix/test_data/test.nbest.nbest.segments new file mode 100644 index 000000000..61726c3c6 --- /dev/null +++ b/contrib/promix/test_data/test.nbest.nbest.segments @@ -0,0 +1,100 @@ +0 ||| taming |0-1| politicians |2-3| on both |4-5| sides of the Atlantic |6-8| ||| d: 0 -1.51037 0 0 -2.60639 0 0 lm: -36.0562 w: -8 tm: -5.97082 -14.8327 -2.41162 -9.32734 3.99959 ||| -16.9717 +0 ||| taming |0-1| the politicians |2-3| on both |4-5| sides of the Atlantic |6-8| ||| d: 0 -1.07904 0 0 -2.22203 0 0 lm: -37.2846 w: -9 tm: -5.43337 -15.7907 -4.86623 -9.68878 3.99959 ||| -16.9885 +0 ||| taming |0-1| politicians |2-3| on both sides of the Atlantic |4-8| ||| d: 0 -2.24178 0 0 -2.59408 0 0 lm: -36.0562 w: -8 tm: -5.55036 -14.7311 -1.14332 -9.34122 2.99969 ||| -17.0321 +0 ||| taming |0-1| the politicians |2-3| on both sides of the Atlantic |4-8| ||| d: 0 -1.81045 0 0 -2.20973 0 0 lm: -37.2846 w: -9 tm: -5.01291 -15.689 -3.59793 -9.70266 2.99969 ||| -17.0489 +0 ||| taming |0-1| politicians |2-3| on both sides |4-6| of the Atlantic |7-8| ||| d: 0 -1.8566 0 0 -2.76972 0 0 lm: -36.0562 w: -8 tm: -6.33782 -14.6804 -1.8329 -9.34609 3.99959 ||| -17.0555 +0 ||| taming |0-1| the politicians |2-3| on both sides |4-6| of the Atlantic |7-8| ||| d: 0 -1.42527 0 0 -2.38536 0 0 lm: -37.2846 w: -9 tm: -5.80037 -15.6384 -4.28752 -9.70753 3.99959 ||| -17.0723 +0 ||| taming |0-1| politicians |2-3| on both |4-5| sides of the |6-7| Atlantic |8-8| ||| d: 0 -1.947 0 0 -2.66963 0 0 lm: -36.0562 w: -8 tm: -7.12207 -14.8138 -2.49723 -9.33158 4.99948 ||| -17.1661 +0 ||| taming |0-1| politicians |2-3| on |4-4| both sides of the Atlantic |5-8| ||| d: 0 -1.36892 0 0 -2.85256 0 0 lm: -36.0562 w: -8 tm: -5.62394 -14.8136 -3.58667 -9.35962 3.99959 ||| -17.1714 +0 ||| taming |0-1| the politicians |2-3| on both |4-5| sides of the |6-7| Atlantic |8-8| ||| d: 0 -1.51567 0 0 -2.28527 0 0 lm: -37.2846 w: -9 tm: -6.58462 -15.7718 -4.95184 -9.69302 4.99948 ||| -17.183 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both sides of the Atlantic |5-8| ||| d: 0 -0.93759 0 0 -2.4682 0 0 lm: -37.2846 w: -9 tm: -5.08649 -15.7715 -6.04129 -9.72106 3.99959 ||| -17.1882 +0 ||| taming |0-1| politicians |2-3| on both sides of the |4-7| Atlantic |8-8| ||| d: 0 -2.71301 0 0 -2.68303 0 0 lm: -36.0562 w: -8 tm: -6.41885 -14.6935 -1.25905 -9.34492 3.99959 ||| -17.1903 +0 ||| taming |0-1| the politicians |2-3| on both sides of the |4-7| Atlantic |8-8| ||| d: 0 -2.28167 0 0 -2.29867 0 0 lm: -37.2846 w: -9 tm: -5.8814 -15.6515 -3.71367 -9.70637 3.99959 ||| -17.2071 +0 ||| taming |0-1| politicians |2-3| on both |4-5| sides |6-6| of the Atlantic |7-8| ||| d: 0 -1.56496 0 0 -2.75335 0 0 lm: -36.0562 w: -8 tm: -7.49271 -14.8064 -2.97497 -9.34339 4.99948 ||| -17.2472 +0 ||| taming |0-1| the politicians |2-3| on both |4-5| sides |6-6| of the Atlantic |7-8| ||| d: 0 -1.13363 0 0 -2.36899 0 0 lm: -37.2846 w: -9 tm: -6.95526 -15.7643 -5.42959 -9.70483 4.99948 ||| -17.264 +0 ||| taming |0-1| politicians |2-3| on |4-4| both sides of the |5-7| Atlantic |8-8| ||| d: 0 -1.78819 0 0 -2.89955 0 0 lm: -36.0562 w: -8 tm: -6.50046 -14.7823 -3.66165 -9.36203 4.99948 ||| -17.2958 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both sides of the |5-7| Atlantic |8-8| ||| d: 0 -1.35686 0 0 -2.51519 0 0 lm: -37.2846 w: -9 tm: -5.96301 -15.7403 -6.11627 -9.72347 4.99948 ||| -17.3126 +0 ||| taming |0-1| politicians |2-3| on |4-4| both sides |5-6| of the Atlantic |7-8| ||| d: 0 -1.4211 0 0 -2.96742 0 0 lm: -36.0562 w: -8 tm: -6.94636 -14.7711 -4.14828 -9.33786 4.99948 ||| -17.3855 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both sides |5-6| of the Atlantic |7-8| ||| d: 0 -0.989766 0 0 -2.58306 0 0 lm: -37.2846 w: -9 tm: -6.40891 -15.7291 -6.6029 -9.69931 4.99948 ||| -17.4023 +0 ||| taming |0-1| politicians |2-3| on |4-4| both |5-5| sides of the Atlantic |6-8| ||| d: 0 -1.5859 0 0 -3.00234 0 0 lm: -36.0562 w: -8 tm: -7.53826 -14.8794 -3.91516 -9.31284 4.99948 ||| -17.5338 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both |5-5| sides of the Atlantic |6-8| ||| d: 0 -1.15457 0 0 -2.61798 0 0 lm: -37.2846 w: -9 tm: -7.00081 -15.8374 -6.36978 -9.67428 4.99948 ||| -17.5506 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both |4-5| sides of the Atlantic |6-8| ||| d: 0 -1.52679 0 0 -2.89648 0 0 lm: -37.2846 w: -9 tm: -8.24923 -15.7898 -4.29661 -9.63452 4.99948 ||| -17.5634 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both sides of the Atlantic |4-8| ||| d: 0 -2.2582 0 0 -2.88417 0 0 lm: -37.2846 w: -9 tm: -7.82876 -15.6881 -3.02831 -9.6484 3.99959 ||| -17.6238 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both sides |4-6| of the Atlantic |7-8| ||| d: 0 -1.87302 0 0 -3.05981 0 0 lm: -37.2846 w: -9 tm: -8.61622 -15.6375 -3.7179 -9.65327 4.99948 ||| -17.6472 +0 ||| taming |0-1| politicians |2-3| on both sides |4-6| of the |7-7| Atlantic |8-8| ||| d: 0 -2.40826 0 0 -3.29781 0 0 lm: -36.0562 w: -8 tm: -7.95188 -14.6816 -2.5975 -9.34956 4.99948 ||| -17.6561 +0 ||| taming |0-1| the politicians |2-3| on both sides |4-6| of the |7-7| Atlantic |8-8| ||| d: 0 -1.97693 0 0 -2.91345 0 0 lm: -37.2846 w: -9 tm: -7.41443 -15.6395 -5.05211 -9.711 4.99948 ||| -17.6729 +0 ||| taming |0-1| politicians |2-3| on |4-4| both |5-5| sides of the |6-7| Atlantic |8-8| ||| d: 0 -2.02253 0 0 -3.06558 0 0 lm: -36.0562 w: -8 tm: -8.6895 -14.8606 -4.00077 -9.31707 5.99938 ||| -17.7283 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both |5-5| sides of the |6-7| Atlantic |8-8| ||| d: 0 -1.5912 0 0 -2.68122 0 0 lm: -37.2846 w: -9 tm: -8.15205 -15.8185 -6.45539 -9.67851 5.99938 ||| -17.7451 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both |4-5| sides of the |6-7| Atlantic |8-8| ||| d: 0 -1.96342 0 0 -2.95972 0 0 lm: -37.2846 w: -9 tm: -9.40047 -15.7709 -4.38222 -9.63875 5.99938 ||| -17.7579 +0 ||| taming |0-1| the |2-2| politicians |3-3| on |4-4| both sides of the Atlantic |5-8| ||| d: 0 -1.38534 0 0 -3.14265 0 0 lm: -37.2846 w: -9 tm: -7.90234 -15.7706 -5.47167 -9.66679 4.99948 ||| -17.7631 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both sides of the |4-7| Atlantic |8-8| ||| d: 0 -2.72942 0 0 -2.97312 0 0 lm: -37.2846 w: -9 tm: -8.69725 -15.6506 -3.14405 -9.6521 4.99948 ||| -17.782 +0 ||| taming |0-1| politicians |2-3| on |4-4| both |5-5| sides |6-6| of the Atlantic |7-8| ||| d: 0 -1.64049 0 0 -3.1493 0 0 lm: -36.0562 w: -8 tm: -9.06014 -14.8531 -4.47852 -9.32889 5.99938 ||| -17.8093 +0 ||| taming |0-1| politicians on |2-4| both sides of the Atlantic |5-8| ||| d: 0 -1.95601 0 0 -3.55535 0 0 lm: -36.0562 w: -8 tm: -4.91151 -15.1311 -3.72129 -9.93616 2.99969 ||| -17.8216 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both |5-5| sides |6-6| of the Atlantic |7-8| ||| d: 0 -1.20916 0 0 -2.76494 0 0 lm: -37.2846 w: -9 tm: -8.52269 -15.8111 -6.93313 -9.69033 5.99938 ||| -17.8261 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both |4-5| sides |6-6| of the Atlantic |7-8| ||| d: 0 -1.58137 0 0 -3.04344 0 0 lm: -37.2846 w: -9 tm: -9.77111 -15.7635 -4.85997 -9.65057 5.99938 ||| -17.8389 +0 ||| taming |0-1| politicians |2-3| on both |4-5| sides |6-6| of the |7-7| Atlantic |8-8| ||| d: 0 -2.11662 0 0 -3.28144 0 0 lm: -36.0562 w: -8 tm: -9.10677 -14.8075 -3.73957 -9.34686 5.99938 ||| -17.8478 +0 ||| taming |0-1| the politicians |2-3| on both |4-5| sides |6-6| of the |7-7| Atlantic |8-8| ||| d: 0 -1.68529 0 0 -2.89708 0 0 lm: -37.2846 w: -9 tm: -8.56932 -15.7655 -6.19418 -9.7083 5.99938 ||| -17.8646 +0 ||| taming |0-1| the |2-2| politicians |3-3| on |4-4| both sides of the |5-7| Atlantic |8-8| ||| d: 0 -1.80461 0 0 -3.18964 0 0 lm: -37.2846 w: -9 tm: -8.77886 -15.7394 -5.54665 -9.66921 5.99938 ||| -17.8875 +0 ||| taming |0-1| politicians on |2-4| both sides of the |5-7| Atlantic |8-8| ||| d: 0 -2.37528 0 0 -3.60234 0 0 lm: -36.0562 w: -8 tm: -5.78803 -15.0999 -3.79627 -9.93857 3.99958 ||| -17.946 +0 ||| taming |0-1| the |2-2| politicians |3-3| on |4-4| both sides |5-6| of the Atlantic |7-8| ||| d: 0 -1.43751 0 0 -3.25751 0 0 lm: -37.2846 w: -9 tm: -9.22476 -15.7282 -6.03327 -9.64504 5.99938 ||| -17.9772 +0 ||| taming |0-1| politicians |2-3| on |4-4| both sides |5-6| of the |7-7| Atlantic |8-8| ||| d: 0 -1.97276 0 0 -3.49551 0 0 lm: -36.0562 w: -8 tm: -8.56043 -14.7723 -4.91288 -9.34133 5.99938 ||| -17.9861 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both sides |5-6| of the |7-7| Atlantic |8-8| ||| d: 0 -1.54143 0 0 -3.11115 0 0 lm: -37.2846 w: -9 tm: -8.02298 -15.7302 -7.36749 -9.70277 5.99938 ||| -18.0029 +0 ||| taming |0-1| politicians on |2-4| both sides |5-6| of the Atlantic |7-8| ||| d: 0 -2.00819 0 0 -3.67021 0 0 lm: -36.0562 w: -8 tm: -6.23393 -15.0887 -4.2829 -9.91441 3.99958 ||| -18.0357 +0 ||| taming |0-1| politicians |2-3| on both sides of the Atlantic , |4-8| ||| d: 0 -2.61446 0 0 -2.59408 0 0 lm: -37.5177 w: -9 tm: -6.22594 -14.8893 -3.54625 -12.0454 2.99969 ||| -18.0629 +0 ||| taming |0-1| the politicians |2-3| on both sides of the Atlantic , |4-8| ||| d: 0 -2.18313 0 0 -2.20973 0 0 lm: -38.7461 w: -10 tm: -5.68849 -15.8473 -6.00087 -12.4069 2.99969 ||| -18.0797 +0 ||| taming |0-1| politicians |2-3| on both sides |4-6| of the Atlantic , |7-8| ||| d: 0 -1.97768 0 0 -2.76972 0 0 lm: -37.5177 w: -9 tm: -7.93613 -14.6804 -4.69485 -11.2579 3.99959 ||| -18.097 +0 ||| taming |0-1| the politicians |2-3| on both sides |4-6| of the Atlantic , |7-8| ||| d: 0 -1.54635 0 0 -2.38536 0 0 lm: -38.7461 w: -10 tm: -7.39868 -15.6384 -7.14947 -11.6193 3.99959 ||| -18.1138 +0 ||| taming |0-1| the |2-2| politicians |3-3| on |4-4| both |5-5| sides of the Atlantic |6-8| ||| d: 0 -1.60232 0 0 -3.29243 0 0 lm: -37.2846 w: -9 tm: -9.81666 -15.8365 -5.80015 -9.62002 5.99938 ||| -18.1255 +0 ||| taming |0-1| politicians |2-3| on both |4-5| sides of the |6-7| Atlantic , |8-8| ||| d: 0 -1.8227 0 0 -2.66963 0 0 lm: -37.5177 w: -9 tm: -8.25244 -14.8138 -5.95756 -11.1747 4.99948 ||| -18.1464 +0 ||| taming |0-1| the politicians |2-3| on both |4-5| sides of the |6-7| Atlantic , |8-8| ||| d: 0 -1.39137 0 0 -2.28527 0 0 lm: -38.7461 w: -10 tm: -7.71499 -15.7718 -8.41217 -11.5362 4.99948 ||| -18.1632 +0 ||| taming |0-1| politicians |2-3| on both sides of the |4-7| Atlantic , |8-8| ||| d: 0 -2.58871 0 0 -2.68303 0 0 lm: -37.5177 w: -9 tm: -7.54922 -14.6935 -4.71938 -11.1881 3.99959 ||| -18.1705 +0 ||| taming |0-1| politicians on |2-4| both |5-5| sides of the Atlantic |6-8| ||| d: 0 -2.17299 0 0 -3.70513 0 0 lm: -36.0562 w: -8 tm: -6.82583 -15.197 -4.04978 -9.88939 3.99958 ||| -18.184 +0 ||| taming |0-1| the politicians |2-3| on both sides of the |4-7| Atlantic , |8-8| ||| d: 0 -2.15738 0 0 -2.29867 0 0 lm: -38.7461 w: -10 tm: -7.01177 -15.6515 -7.174 -11.5495 3.99959 ||| -18.1873 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both sides |4-6| of the |7-7| Atlantic |8-8| ||| d: 0 -2.42468 0 0 -3.5879 0 0 lm: -37.2846 w: -9 tm: -10.2303 -15.6386 -4.48249 -9.65674 5.99938 ||| -18.2478 +0 ||| taming |0-1| politicians |2-3| on |4-4| both sides of the |5-7| Atlantic , |8-8| ||| d: 0 -1.66389 0 0 -2.89955 0 0 lm: -37.5177 w: -9 tm: -7.63083 -14.7823 -7.12198 -11.2052 4.99948 ||| -18.2761 +0 ||| taming |0-1| politicians |2-3| on both |4-5| sides |6-6| of the Atlantic , |7-8| ||| d: 0 -1.68604 0 0 -2.75335 0 0 lm: -37.5177 w: -9 tm: -9.09102 -14.8064 -5.83693 -11.2552 4.99948 ||| -18.2887 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both sides of the |5-7| Atlantic , |8-8| ||| d: 0 -1.23256 0 0 -2.51519 0 0 lm: -38.7461 w: -10 tm: -7.09338 -15.7403 -9.5766 -11.5666 4.99948 ||| -18.2929 +0 ||| taming |0-1| the politicians |2-3| on both |4-5| sides |6-6| of the Atlantic , |7-8| ||| d: 0 -1.25471 0 0 -2.36899 0 0 lm: -38.7461 w: -10 tm: -8.55357 -15.7643 -8.29154 -11.6166 4.99948 ||| -18.3055 +0 ||| taming |0-1| the |2-2| politicians |3-3| on |4-4| both |5-5| sides of the |6-7| Atlantic |8-8| ||| d: 0 -2.03895 0 0 -3.35567 0 0 lm: -37.2846 w: -9 tm: -10.9679 -15.8176 -5.88577 -9.62425 6.99927 ||| -18.32 +0 ||| taming |0-1| politicians on |2-4| both |5-5| sides of the |6-7| Atlantic |8-8| ||| d: 0 -2.60962 0 0 -3.76837 0 0 lm: -36.0562 w: -8 tm: -7.97707 -15.1781 -4.1354 -9.89362 4.99948 ||| -18.3785 +0 ||| taming |0-1| the |2-2| politicians |3-3| on |4-4| both |5-5| sides |6-6| of the Atlantic |7-8| ||| d: 0 -1.65691 0 0 -3.43939 0 0 lm: -37.2846 w: -9 tm: -11.3385 -15.8102 -6.36351 -9.63607 6.99927 ||| -18.401 +0 ||| taming |0-1| politicians |2-3| on |4-4| both |5-5| sides |6-6| of the |7-7| Atlantic |8-8| ||| d: 0 -2.19215 0 0 -3.67739 0 0 lm: -36.0562 w: -8 tm: -10.6742 -14.8543 -5.24311 -9.33236 6.99927 ||| -18.4099 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both |5-5| sides |6-6| of the |7-7| Atlantic |8-8| ||| d: 0 -1.76082 0 0 -3.29303 0 0 lm: -37.2846 w: -9 tm: -10.1368 -15.8122 -7.69773 -9.6938 6.99927 ||| -18.4267 +0 ||| taming |0-1| politicians |2-3| on |4-4| both sides |5-6| of the Atlantic , |7-8| ||| d: 0 -1.54218 0 0 -2.96742 0 0 lm: -37.5177 w: -9 tm: -8.54467 -14.7711 -7.01023 -11.2497 4.99948 ||| -18.427 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both |4-5| sides |6-6| of the |7-7| Atlantic |8-8| ||| d: 0 -2.13304 0 0 -3.57153 0 0 lm: -37.2846 w: -9 tm: -11.3852 -15.7646 -5.62456 -9.65404 6.99927 ||| -18.4395 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both sides |5-6| of the Atlantic , |7-8| ||| d: 0 -1.11085 0 0 -2.58306 0 0 lm: -38.7461 w: -10 tm: -8.00723 -15.7291 -9.46485 -11.6111 4.99948 ||| -18.4438 +0 ||| taming |0-1| politicians on |2-4| both |5-5| sides |6-6| of the Atlantic |7-8| ||| d: 0 -2.22758 0 0 -3.85209 0 0 lm: -36.0562 w: -8 tm: -8.34771 -15.1707 -4.61314 -9.90544 4.99948 ||| -18.4595 +0 ||| taming |0-1| the |2-2| politicians |3-3| on |4-4| both sides |5-6| of the |7-7| Atlantic |8-8| ||| d: 0 -1.98917 0 0 -3.7856 0 0 lm: -37.2846 w: -9 tm: -10.8388 -15.7293 -6.79787 -9.64851 6.99927 ||| -18.5778 +0 ||| taming |0-1| politicians |2-3| on both |4-5| sides of the Atlantic , |6-8| ||| d: 0 -2.0125 0 0 -2.60639 0 0 lm: -37.5177 w: -9 tm: -8.02561 -15.1979 -6.07103 -12.091 3.99959 ||| -18.6217 +0 ||| taming |0-1| politicians on |2-4| both sides |5-6| of the |7-7| Atlantic |8-8| ||| d: 0 -2.55985 0 0 -4.1983 0 0 lm: -36.0562 w: -8 tm: -7.848 -15.0898 -5.0475 -9.91788 4.99948 ||| -18.6363 +0 ||| taming |0-1| politicians |2-3| on both sides |4-6| of the |7-7| Atlantic , |8-8| ||| d: 0 -2.28396 0 0 -3.29781 0 0 lm: -37.5177 w: -9 tm: -9.08225 -14.6816 -6.05783 -11.1927 4.99948 ||| -18.6364 +0 ||| taming |0-1| the politicians |2-3| on both |4-5| sides of the Atlantic , |6-8| ||| d: 0 -1.58117 0 0 -2.22203 0 0 lm: -38.7461 w: -10 tm: -7.48816 -16.1559 -8.52564 -12.4524 3.99959 ||| -18.6385 +0 ||| taming |0-1| the politicians |2-3| on both sides |4-6| of the |7-7| Atlantic , |8-8| ||| d: 0 -1.85263 0 0 -2.91345 0 0 lm: -38.7461 w: -10 tm: -8.5448 -15.6395 -8.51244 -11.5541 4.99948 ||| -18.6532 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both sides of the Atlantic , |4-8| ||| d: 0 -2.63088 0 0 -2.88417 0 0 lm: -38.7461 w: -10 tm: -8.50434 -15.8464 -5.43125 -12.3526 3.99959 ||| -18.6546 +0 ||| taming |0-1| politicians |2-3| on |4-4| both sides of the Atlantic , |5-8| ||| d: 0 -1.86965 0 0 -2.85256 0 0 lm: -37.5177 w: -9 tm: -7.44015 -15.0375 -7.00556 -11.9328 3.99959 ||| -18.6588 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both sides of the Atlantic , |5-8| ||| d: 0 -1.43831 0 0 -2.4682 0 0 lm: -38.7461 w: -10 tm: -6.9027 -15.9955 -9.46017 -12.2942 3.99959 ||| -18.6756 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both sides |4-6| of the Atlantic , |7-8| ||| d: 0 -1.9941 0 0 -3.05981 0 0 lm: -38.7461 w: -10 tm: -10.2145 -15.6375 -6.57985 -11.5651 4.99948 ||| -18.6887 +0 ||| taming |0-1| politicians |2-3| on |4-4| both |5-5| sides of the |6-7| Atlantic , |8-8| ||| d: 0 -1.89824 0 0 -3.06558 0 0 lm: -37.5177 w: -9 tm: -9.81987 -14.8606 -7.4611 -11.1602 5.99938 ||| -18.7085 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both |5-5| sides of the |6-7| Atlantic , |8-8| ||| d: 0 -1.4669 0 0 -2.68122 0 0 lm: -38.7461 w: -10 tm: -9.28242 -15.8185 -9.91572 -11.5217 5.99938 ||| -18.7253 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both |4-5| sides of the |6-7| Atlantic , |8-8| ||| d: 0 -1.83912 0 0 -2.95972 0 0 lm: -38.7461 w: -10 tm: -10.5308 -15.7709 -7.84255 -11.4819 5.99938 ||| -18.7381 +0 ||| taming |0-1| the |2-2| politicians on |3-4| both sides of the Atlantic |5-8| ||| d: 0 -1.07039 0 0 -3.90067 0 0 lm: -37.2846 w: -9 tm: -8.33352 -16.8256 -6.4114 -10.5648 3.99959 ||| -18.7608 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both sides of the |4-7| Atlantic , |8-8| ||| d: 0 -2.60513 0 0 -2.97312 0 0 lm: -38.7461 w: -10 tm: -9.82762 -15.6506 -6.60437 -11.4952 4.99948 ||| -18.7622 +0 ||| taming |0-1| politicians |2-3| on both |4-5| sides |6-6| of the |7-7| Atlantic , |8-8| ||| d: 0 -1.99232 0 0 -3.28144 0 0 lm: -37.5177 w: -9 tm: -10.2371 -14.8075 -7.1999 -11.19 5.99938 ||| -18.828 +0 ||| taming |0-1| the politicians |2-3| on both |4-5| sides |6-6| of the |7-7| Atlantic , |8-8| ||| d: 0 -1.56099 0 0 -2.89708 0 0 lm: -38.7461 w: -10 tm: -9.6997 -15.7655 -9.65451 -11.5514 5.99938 ||| -18.8448 +0 ||| taming |0-1| politicians |2-3| on |4-4| both |5-5| sides |6-6| of the Atlantic , |7-8| ||| d: 0 -1.76157 0 0 -3.1493 0 0 lm: -37.5177 w: -9 tm: -10.6585 -14.8531 -7.34047 -11.2407 5.99938 ||| -18.8508 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both |5-5| sides |6-6| of the Atlantic , |7-8| ||| d: 0 -1.33024 0 0 -2.76494 0 0 lm: -38.7461 w: -10 tm: -10.121 -15.8111 -9.79508 -11.6021 5.99938 ||| -18.8676 +0 ||| taming |0-1| the |2-2| politicians |3-3| on |4-4| both sides of the |5-7| Atlantic , |8-8| ||| d: 0 -1.68031 0 0 -3.18964 0 0 lm: -38.7461 w: -10 tm: -9.90924 -15.7394 -9.00698 -11.5123 5.99938 ||| -18.8678 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both |4-5| sides |6-6| of the Atlantic , |7-8| ||| d: 0 -1.70246 0 0 -3.04344 0 0 lm: -38.7461 w: -10 tm: -11.3694 -15.7635 -7.72192 -11.5624 5.99938 ||| -18.8804 +0 ||| taming |0-1| the |2-2| politicians on |3-4| both sides of the |5-7| Atlantic |8-8| ||| d: 0 -1.48965 0 0 -3.94766 0 0 lm: -37.2846 w: -9 tm: -9.21005 -16.7944 -6.48638 -10.5672 4.99948 ||| -18.8852 +0 ||| taming |0-1| politicians on |2-4| both sides of the |5-7| Atlantic , |8-8| ||| d: 0 -2.25098 0 0 -3.60234 0 0 lm: -37.5177 w: -9 tm: -6.91841 -15.0999 -7.2566 -11.7817 3.99958 ||| -18.9263 +0 ||| taming |0-1| politicians |2-3| on |4-4| both sides |5-6| of the |7-7| Atlantic , |8-8| ||| d: 0 -1.84846 0 0 -3.49551 0 0 lm: -37.5177 w: -9 tm: -9.6908 -14.7723 -8.37321 -11.1845 5.99938 ||| -18.9663 +0 ||| taming |0-1| the |2-2| politicians on |3-4| both sides |5-6| of the Atlantic |7-8| ||| d: 0 -1.12256 0 0 -4.01553 0 0 lm: -37.2846 w: -9 tm: -9.65595 -16.7832 -6.97301 -10.543 4.99948 ||| -18.9749 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both sides |5-6| of the |7-7| Atlantic , |8-8| ||| d: 0 -1.41713 0 0 -3.11115 0 0 lm: -38.7461 w: -10 tm: -9.15335 -15.7302 -10.8278 -11.5459 5.99938 ||| -18.9831 +0 ||| taming |0-1| the |2-2| politicians |3-3| on |4-4| both |5-5| sides |6-6| of the |7-7| Atlantic |8-8| ||| d: 0 -2.20857 0 0 -3.96748 0 0 lm: -37.2846 w: -9 tm: -12.9526 -15.8114 -7.12811 -9.63954 7.99917 ||| -19.0016 +0 ||| taming |0-1| the |2-2| politicians |3-3| on |4-4| both sides |5-6| of the Atlantic , |7-8| ||| d: 0 -1.5586 0 0 -3.25751 0 0 lm: -38.7461 w: -10 tm: -10.8231 -15.7282 -8.89523 -11.5568 5.99938 ||| -19.0187 +0 ||| taming |0-1| politicians on |2-4| both |5-5| sides |6-6| of the |7-7| Atlantic |8-8| ||| d: 0 -2.77924 0 0 -4.38018 0 0 lm: -36.0562 w: -8 tm: -9.96178 -15.1719 -5.37774 -9.90891 5.99938 ||| -19.0601 +0 ||| taming |0-1| politicians on |2-4| both sides |5-6| of the Atlantic , |7-8| ||| d: 0 -2.12927 0 0 -3.67021 0 0 lm: -37.5177 w: -9 tm: -7.83225 -15.0887 -7.14485 -11.8262 3.99958 ||| -19.0772 +0 ||| taming |0-1| the |2-2| politicians on |3-4| both |5-5| sides of the Atlantic |6-8| ||| d: 0 -1.28737 0 0 -4.05045 0 0 lm: -37.2846 w: -9 tm: -10.2478 -16.8915 -6.73989 -10.518 4.99948 ||| -19.1232 +0 ||| taming |0-1| politicians |2-3| on |4-4| both |5-5| sides of the Atlantic , |6-8| ||| d: 0 -2.08803 0 0 -3.00234 0 0 lm: -37.5177 w: -9 tm: -9.59305 -15.2447 -7.57457 -12.0765 4.99948 ||| -19.1838 +0 ||| taming |0-1| the politicians |2-3| on |4-4| both |5-5| sides of the Atlantic , |6-8| ||| d: 0 -1.6567 0 0 -2.61798 0 0 lm: -38.7461 w: -10 tm: -9.0556 -16.2026 -10.0292 -12.4379 4.99948 ||| -19.2006 +0 ||| taming |0-1| the |2-2| politicians |3-3| on both |4-5| sides of the Atlantic , |6-8| ||| d: 0 -2.02892 0 0 -2.89648 0 0 lm: -38.7461 w: -10 tm: -10.304 -16.155 -7.95602 -12.3982 4.99948 ||| -19.2134 diff --git a/contrib/promix/test_data/test.nbest.scores b/contrib/promix/test_data/test.nbest.scores new file mode 100644 index 000000000..7a84a3798 --- /dev/null +++ b/contrib/promix/test_data/test.nbest.scores @@ -0,0 +1,102 @@ +SCORES_TXT_BEGIN_0 0 100 9 BLEU +5 12 2 11 1 10 0 9 8 +5 13 2 12 1 11 0 10 8 +5 11 2 10 1 9 0 8 8 +5 12 2 11 1 10 0 9 8 +5 12 2 11 1 10 0 9 8 +5 13 2 12 1 11 0 10 8 +5 13 1 12 0 11 0 10 8 +5 12 2 11 1 10 0 9 8 +5 14 1 13 0 12 0 11 8 +5 13 2 12 1 11 0 10 8 +5 12 1 11 0 10 0 9 8 +5 13 1 12 0 11 0 10 8 +5 13 2 12 1 11 0 10 8 +5 14 2 13 1 12 0 11 8 +5 13 1 12 0 11 0 10 8 +5 14 1 13 0 12 0 11 8 +5 13 2 12 1 11 0 10 8 +5 14 2 13 1 12 0 11 8 +5 13 2 12 1 11 0 10 8 +5 14 2 13 1 12 0 11 8 +5 14 2 13 1 12 0 11 8 +5 13 2 12 1 11 0 10 8 +5 14 2 13 1 12 0 11 8 +5 13 1 12 0 11 0 10 8 +5 14 1 13 0 12 0 11 8 +5 14 1 13 0 12 0 11 8 +5 15 1 14 0 13 0 12 8 +5 15 1 14 0 13 0 12 8 +5 14 2 13 1 12 0 11 8 +5 14 1 13 0 12 0 11 8 +5 14 2 13 1 12 0 11 8 +5 11 2 10 1 9 0 8 8 +5 15 2 14 1 13 0 12 8 +5 15 2 14 1 13 0 12 8 +5 14 1 13 0 12 0 11 8 +5 15 1 14 0 13 0 12 8 +5 15 1 14 0 13 0 12 8 +5 12 1 11 0 10 0 9 8 +5 15 2 14 1 13 0 12 8 +5 14 1 13 0 12 0 11 8 +5 15 1 14 0 13 0 12 8 +5 12 2 11 1 10 0 9 8 +5 12 2 11 1 10 0 9 8 +5 13 2 12 1 11 0 10 8 +5 13 2 12 1 11 0 10 8 +5 14 2 13 1 12 0 11 8 +5 15 2 14 1 13 0 12 8 +5 14 1 13 0 12 0 11 8 +5 15 1 14 0 13 0 12 8 +5 13 1 12 0 11 0 10 8 +5 12 2 11 1 10 0 9 8 +5 14 1 13 0 12 0 11 8 +5 15 1 14 0 13 0 12 8 +5 14 1 13 0 12 0 11 8 +5 14 2 13 1 12 0 11 8 +5 15 1 14 0 13 0 12 8 +5 15 2 14 1 13 0 12 8 +5 16 1 15 0 14 0 13 8 +5 13 1 12 0 11 0 10 8 +5 16 2 15 1 14 0 13 8 +5 15 1 14 0 13 0 12 8 +5 16 1 15 0 14 0 13 8 +5 14 2 13 1 12 0 11 8 +5 16 1 15 0 14 0 13 8 +5 15 2 14 1 13 0 12 8 +5 13 2 12 1 11 0 10 8 +5 16 1 15 0 14 0 13 8 +5 13 2 12 1 11 0 10 8 +5 13 1 12 0 11 0 10 8 +5 14 1 13 0 12 0 11 8 +5 14 2 13 1 12 0 11 8 +5 15 1 14 0 13 0 12 8 +5 14 2 13 1 12 0 11 8 +5 13 2 12 1 11 0 10 8 +5 14 2 13 1 12 0 11 8 +5 15 2 14 1 13 0 12 8 +5 15 1 14 0 13 0 12 8 +5 16 1 15 0 14 0 13 8 +5 16 1 15 0 14 0 13 8 +5 13 2 12 1 11 0 10 8 +5 15 1 14 0 13 0 12 8 +5 15 1 14 0 13 0 12 8 +5 16 1 15 0 14 0 13 8 +5 15 2 14 1 13 0 12 8 +5 16 2 15 1 14 0 13 8 +5 16 1 15 0 14 0 13 8 +5 16 2 15 1 14 0 13 8 +5 14 1 13 0 12 0 11 8 +5 13 1 12 0 11 0 10 8 +5 15 1 14 0 13 0 12 8 +5 14 2 13 1 12 0 11 8 +5 16 1 15 0 14 0 13 8 +5 17 1 16 0 15 0 14 8 +5 16 2 15 1 14 0 13 8 +5 14 1 13 0 12 0 11 8 +5 13 2 12 1 11 0 10 8 +5 14 2 13 1 12 0 11 8 +5 14 2 13 1 12 0 11 8 +5 15 2 14 1 13 0 12 8 +5 15 2 14 1 13 0 12 8 +SCORES_TXT_END_0 diff --git a/contrib/promix/test_main.py b/contrib/promix/test_main.py new file mode 100755 index 000000000..dec02cbc0 --- /dev/null +++ b/contrib/promix/test_main.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python + +import unittest + +from main import * + +class TestConfig(unittest.TestCase): + def setUp(self): + self.config = Config() + + def test_files_short(self): + nbests = ["nbest1", "nbest2", "nbest3"] + scores = ["score1", "score2", "score3"] + self.config.parse(["-n", nbests[0], "-n", nbests[1], "-n", nbests[2],\ + "-S", scores[0], "-S", scores[1], "-S", scores[2]]) + self.assertEqual(self.config.nbest_files, nbests) + self.assertEqual(self.config.score_files, scores) + + def test_moses_bin_dir(self): + self.config.parse([]) + self.assertEqual(self.config.moses_bin_dir, "/home/bhaddow/moses/bin") + + +if __name__ == "__main__": + unittest.main() + + +suite = unittest.TestLoader().loadTestsFromTestCase(TestConfig) diff --git a/contrib/promix/test_moses.py b/contrib/promix/test_moses.py new file mode 100755 index 000000000..4cf0ad4f8 --- /dev/null +++ b/contrib/promix/test_moses.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python + +import math +import unittest + +from moses import * + +class TestMoses(unittest.TestCase): + + def setUp(self): + self.ttable = PhraseTable("data/esen.ep.model.unfiltered/phrase-table",5,True) + + def test_hw(self): + self.assertEqual(greet(), "hello, world") + + def test_get_translations(self): + translations = self.ttable.get_translations("lados") + self.assertEqual(len(translations),61) + self.assertEqual(translations[0][1], [0.00015135499415919185, 0.00063730002148076892, 0.0018050499493256211, 0.011290299706161022, 2.7179999351501465]) + + def test_get_translation_probability(self): + fv = self.ttable.get_translation_probability("en ambos", "on both") + expected_fv = [0.0908379,0.0213197,0.187399,0.0498198,2.718] + for i in range(5): + self.assertAlmostEqual(fv[i], expected_fv[i], 4) + fv = self.ttable.get_translation_probability("kljhdklj!", "hkhdkj") + for i in range(5): + self.assertEqual(fv[i], 0) + + +if __name__ == "__main__": + unittest.main() + +suite = unittest.TestLoader().loadTestsFromTestCase(TestMoses) + diff --git a/contrib/promix/test_nbest.py b/contrib/promix/test_nbest.py new file mode 100755 index 000000000..f4401c91b --- /dev/null +++ b/contrib/promix/test_nbest.py @@ -0,0 +1,129 @@ +#!/usr/bin/env python +# coding=utf8 + +import numpy as np +import numpy.testing as nptest +import os.path +import unittest + +from nbest import * + +class TestReadNBest(unittest.TestCase): + def setUp(self): + self.nbest = "test_data/test.nbest.nbest" + self.nbest_segment = "test_data/test.nbest.nbest.segments" + self.scores = "test_data/test.nbest.scores" + self.input = "test_data/test.nbest.input" + + def test_featureindex(self): + for nbest in get_scored_nbests(self.nbest,self.scores,self.input): + pass + self.assertEqual(get_feature_index("tm"), [9,14]) + self.assertEqual(get_feature_index("lm"), [7,8]) + self.assertEqual(get_feature_index("d"), [0,7]) + self.assertEqual(get_feature_index("w"), [8,9]) + + def test_nosegment(self): + count = 0 + for nbest in get_scored_nbests(self.nbest,self.scores,self.input): + count += 1 + hyp0 = nbest.hyps[0] + expected_fv = np.array([0,-1.51037,0,0,-2.60639,0,0 ,-36.0562, -8,-5.97082,-14.8327,-2.41162,-9.32734,3.99959]) + self.assertEqual(len(hyp0.fv), len(expected_fv)) + for i in range(len(hyp0.fv)): + self.assertAlmostEqual(expected_fv[i],hyp0.fv[i]) + self.assertEqual(hyp0.text,"taming politicians on both sides of the Atlantic") + self.assertEqual(count,1) + + def test_segment(self): + count = 0 + for nbest in get_scored_nbests(self.nbest_segment,self.scores,self.input, segments=True): + count += 1 + hyp0 = nbest.hyps[0] + self.assertEqual(hyp0.text,"taming politicians on both sides of the Atlantic") + expected_align = [(0,2,1), (2,4,2), (4,6,4), (6,9,8)] + self.assertEqual(hyp0.alignment, expected_align) + self.assertEqual(count,1) + +class TestMosesPhraseScorer(unittest.TestCase): + + def setUp(self): + self.scorer = MosesPhraseScorer\ + (("data/esen.nc.model.unfiltered/phrase-table", \ + "data/esen.ep.model.unfiltered/phrase-table")) + + def test_phrase_scores(self): + hyp0 = Hypothesis("taming |0-1| politicians |2-3| on both |4-5| sides of the Atlantic |6-8|", [0, -1.51037,0, 0, -2.60639, 0, 0, -36.0562,-8,-5.97082,-14.8327,-2.41162,\ + -9.32734,3.99959], True) + hyp0.input_line = "domando a los políticos en ambos lados del Atlántico" + #hyp0.score = 0.2140 + self.scorer.add_scores(hyp0) + self.assertEqual(len(hyp0.phrase_scores),2) + # Each ttable should provide 4 sets of 4 scores (ignore penalty) + # These are the probabilities + # nc first, then ep. Columns are different features + expected = np.array([\ + [[0.0740741,0.00756144,1,0.500047],\ + [0.545866,0.233725,0.818336,0.186463],\ + [0.288344,0.0548148,0.335714,0.0543585],\ + [0.777778,0.0122444,0.777778,0.0351361]],\ + [[0,0,0,0],\ + [0.33497, 0.180441, 0.638586, 0.0962213],\ + [0.0908379,0.0213197,0.187399,0.0498198], + [0.62585,0.00702384,0.836364,0.0687874]]\ + ]) + + for i in range(2): + self.assertEqual(len(hyp0.phrase_scores[i]),4) + for j in range(4): + self.assertEqual(len(hyp0.phrase_scores[i][j]),4) + for k in range(4): + self.assertAlmostEqual(hyp0.phrase_scores[i][j][k], expected[i][j][k], places =5) + + # These are the interpolation weights reported by tmcombine + weights = np.array([[0.54471993730312251, 0.45528006269687754],\ + [0.56546688367708142, 0.43453311632291863],\ + [0.55867730373453584, 0.44132269626546422],\ + [0.46645964485220004, 0.53354035514779996]]) + + #check that the scores are interpolated as expected + interpolated_probs = expected[0]*weights[:,0] + expected[1]*weights[:,1] + interpolated_scores = np.log(interpolated_probs) + # each column corresponds to a feature + expected_fv = interpolated_scores.sum(axis=0) + for i in range(4): + self.assertAlmostEqual(hyp0.fv[9+i], expected_fv[i], places=4) + +class TestPhraseCache (unittest.TestCase): + def test_add_get(self): + """Add something to cache and check we can get it back""" + cache = PhraseCache(10) + self.assertFalse(cache.get("aa", "bb")) + scores = [1,2,3,4,5] + cache.add("aa", "bb", scores) + self.assertEquals(cache.get("aa","bb"),scores) + self.assertFalse(cache.get("aa","cc")) + self.assertFalse(cache.get("cc","bb")) + + def test_lru(self): + """Check that items are cleared from the cache""" + cache = PhraseCache(2) + s1 = [1,2,3,4,5] + s2 = [2,3,4,5,6] + s3 = [3,4,5,6,7] + cache.add("aa","bb",s1) + cache.add("bb","cc",s2) + cache.add("dd","ee",s3) + self.assertEquals(cache.get("dd","ee"), s3) + self.assertEquals(cache.get("bb","cc"), s2) + self.assertFalse(cache.get("aa","bb")) + cache.add("aa","bb",s1) + self.assertFalse(cache.get("dd","ee")) + + + + +if __name__ == "__main__": + unittest.main() + +suite = unittest.TestSuite([unittest.TestLoader().loadTestsFromTestCase(TestReadNBest), unittest.TestLoader().loadTestsFromTestCase(TestMosesPhraseScorer)]) diff --git a/contrib/promix/test_sampler.py b/contrib/promix/test_sampler.py new file mode 100755 index 000000000..ba88ae0c2 --- /dev/null +++ b/contrib/promix/test_sampler.py @@ -0,0 +1,53 @@ +#!/usr/bin/env python + +import random +import unittest + +from nbest import * +from sampler import * + + +class TestNBestSampler(unittest.TestCase): + + def setUp(self): + self.h1 = Hypothesis("a",[]) + self.h2 = Hypothesis("b",[]) + self.h3 = Hypothesis("c",[]) + self.nbest = NBestList(1) + self.nbest.hyps.append(self.h1) + self.nbest.hyps.append(self.h2) + self.nbest.hyps.append(self.h3) + self.sampler = HopkinsMaySampler() + + def test_nsamples(self): + self.h1.score = 0.1 + self.h2.score = 0.2 + self.h3.score = 0.3 + samples = self.sampler.sample(self.nbest) + self.assertEqual(len(samples), self.sampler.nsamples) + + def test_biggest(self): + random.seed(0) + self.h1.score = 0.1 + self.h2.score = 0.2 + self.h3.score = 0.3 + samples = self.sampler.sample(self.nbest) + for sample in samples: + self.assertAlmostEqual(sample.diff,0.2) + + def test_score_diff(self): + self.h1.score = 0.1 + self.h2.score = 0.1 + (0.9*self.sampler.min_diff) + self.h3.score = 0.1 + (1.8*self.sampler.min_diff) + + # Should only see pairs with h1,h3 + samples = self.sampler.sample(self.nbest) + for sample in samples: + self.assertTrue((sample.hyp1 == self.h1 and sample.hyp2 == self.h3) or \ + (sample.hyp2 == self.h1 and sample.hyp1 == self.h3)) + + +if __name__ == "__main__": + unittest.main() + +suite = unittest.TestLoader().loadTestsFromTestCase(TestNBestSampler) diff --git a/contrib/promix/test_train.py b/contrib/promix/test_train.py new file mode 100755 index 000000000..841127764 --- /dev/null +++ b/contrib/promix/test_train.py @@ -0,0 +1,306 @@ +#!/usr/bin/env python + +import unittest + +from math import log,exp + +import nbest +import numpy.testing as nptest +import sampler +from train import * +import util + +class TestParabaloidOptimiser(unittest.TestCase): + def setUp(self): + self.o = ParabaloidOptimiser(np.array([1,2,3,4])) + + def test_parabaloid_bfgs(self): + start = np.array([2,2,2,2]) + minimum = self.o.optimise_bfgs(start) + for m in minimum: + self.assertAlmostEqual(m,0) + + + def test_parabaloid_lbfgs(self): + start = np.array([2,2,2,2]) + minimum = self.o.optimise_lbfgs(start) + for m in minimum: + self.assertAlmostEqual(m,0) + +class TestLogisticRegressionOptimiser(unittest.TestCase): + + def test_objective(self): + x = np.array([[1], [0]]) + y = np.array([1,-1]) + lro = LogisticRegressionOptimiser(x,y) + w = np.array([2]) + expected = -log(1 / (1 + exp(-2))) - log(0.5) + self.assertAlmostEqual(lro.objective(w), expected) + + def test_reg_objective(self): + x = np.array([[1], [0]]) + y = np.array([1,-1]) + alpha = 0.1 + lro = LogisticRegressionOptimiser(x,y,alpha) + w = np.array([2]) + expected = -log(1 / (1 + exp(-2))) - log(0.5) + 0.5*2*2 * alpha + self.assertAlmostEqual(lro.objective(w), expected) + + def test_gradient_j(self): + x = np.array([[1], [0]]) + y = np.array([1,-1]) + lro = LogisticRegressionOptimiser(x,y) + w = np.array([2]) + expected = -1 / (1 + exp(2)) + self.assertAlmostEqual(lro.grad_j(w,0), expected) + + def test_gradient(self): + x = np.array([[1,1], [0,1]]) + y = np.array([1,-1]) + w = np.array([2,1]) + lro = LogisticRegressionOptimiser(x,y) + e0 = -1 / (1 + exp(3)) + e1 = -1 / (1 + exp(3)) + 1/ (1 + exp(-1)) + actual = lro.grad(w) + #print "expected: ",e0,e1 + self.assertAlmostEqual(actual[0], e0) + self.assertAlmostEqual(actual[1], e1) + + def test_reg_gradient(self): + x = np.array([[1,1], [0,1]]) + y = np.array([1,-1]) + alpha = 0.2 + w = np.array([2,1]) + lro = LogisticRegressionOptimiser(x,y, alpha) + e0 = -1 / (1 + exp(3)) + w[0]*alpha + e1 = -1 / (1 + exp(3)) + 1/ (1 + exp(-1)) +w[1]*alpha + actual = lro.grad(w) + self.assertAlmostEqual(actual[0], e0) + self.assertAlmostEqual(actual[1], e1) + + + def test_train(self): + x = np.array([[1,1],[-1,-2]]) + y = np.array([1,-1]) + w0 = np.array([1,-1]) + lro = LogisticRegressionOptimiser(x,y) + actual = lro.train(w0, debug=False) + self.assertAlmostEqual(actual[0], 12.03882542) + self.assertAlmostEqual(actual[1], 8.02317419) + + def test_train_reg(self): + x = np.array([[1,1],[-1,1]]) + y = np.array([1,-1]) + alpha = 0.1 + w0 = np.array([1,-1]) + lro = LogisticRegressionOptimiser(x,y,alpha) + actual = lro.train(w0, debug=False) + self.assertAlmostEqual(actual[1],0) # 2nd input should be ignored + # classify first example as negative, second as positive + self.assertTrue(1 / (1+exp(-np.dot(actual,np.array([1,1])))) > 0.5) + self.assertTrue(1 / (1+exp(-np.dot(actual,np.array([-1,-2])))) < 0.5) + + def test_xy(self): + """Test pre-calculation of the y_i*x_ij vectors""" + x = np.array([[1,3], [2,8], [1,3]]) + y = np.array([1,1,-1]) + lro = LogisticRegressionOptimiser(x,y) + expected = np.array([[1,3], [2,8], [-1,-3]]) + for i in 0,1,2: + for j in 0,1: + self.assertEqual(lro.xy[i][j], expected[i][j]) +# +class TestMixtureModelTrainer(unittest.TestCase): + + def setUp(self): + # 3 phrase table features, but last one is ignored for interpolation + nbest._feature_index = {"tm" : [0,3], "lm" : [3,4]} + log05 = np.log(0.5) + log03 = np.log(0.3) + log02 = np.log(0.2) + log01 = np.log(0.1) + hyp0 = nbest.Hypothesis("a |0-0| b c |1-2|", [log05, log05, log02, log03], True) + hyp0.input_line = "A B C" + hyp0.score = 3 + # Two ttables, columns correspond to features, rows to phrase pairs + hyp0.phrase_scores = np.array([\ + [[0.2, 0.3],\ + [0.4, 0.3]],\ + [[0, 0.2],\ + [0.4,0.2]]]) + + hyp1 = nbest.Hypothesis("x |0-2|", [log02, log03, log03, log01], True) + hyp1.input_line = "X Y Z" + hyp1.score = 2 + hyp1.phrase_scores = np.array([\ + [[0.1, 0.1]],\ + [[0.8,0.1]]]) + + hyp2 = nbest.Hypothesis("z |0-1| w |2-2| p |3-3|", [log02, log02, log05, log05], True) + hyp2.score = 1 + hyp2.input_line = "M N O" + # phrase_table x phrase_pair x feature + hyp2.phrase_scores = np.array([\ + [[0.1, 0.2],\ + [0.3,0.5],\ + [0.4,0.6]],\ + [[0.1,0.5],\ + [0.6,0.1],\ + [0.2,0.2]]]) + self.samples = [sampler.Sample(hyp0,hyp1), sampler.Sample(hyp1,hyp2)] + self.trainer = MixtureModelTrainer(self.samples) + + def get_phrase_scores(self, hypothesis, iw): + nptest.assert_almost_equal(np.sum(iw, axis=0), np.array([1.0,1.0])) + phrase_probs = hypothesis.phrase_scores + interpolated_probs = np.sum(np.expand_dims(iw,1)*phrase_probs, axis = 0) + + total_probs = np.prod(interpolated_probs, axis = 0) + return util.safelog(total_probs) + + def model_score(self, hypothesis, weights): + # interpolation weights + # ttable x feature + iw = np.array([[weights[-2], weights[-1]], + [1-weights[-2],1-weights[-1]]]) + #print "iw:",iw + phrase_scores = self.get_phrase_scores(hypothesis,iw) + weighted_phrase_scores = weights[:2] * phrase_scores + score = np.sum(weighted_phrase_scores) + + other_score = np.sum(weights[2:4]*hypothesis.fv[2:4]) + return score + other_score + + + def test_objective(self): + # 2 phrase weights, 2 other feature weights, + # 2 interpolation weights (1 per model x 2 phrase features) + weights = np.array([0.2,0.1,0.4,0.5,0.3,0.6]) + actual = self.trainer.objective(weights) + # Expected objective is the sum of the logs of sigmoids of the score differences + # Weighted by 1 if hyp1 > hyp2, -1 otherwise + expected = 0 + for sample in self.samples: + hyp1_model_score = self.model_score(sample.hyp1, weights) + hyp2_model_score = self.model_score(sample.hyp2, weights) + y = 1 + if sample.hyp2.score > sample.hyp1.score: y = -1 + expected -= log(sigmoid(y * (hyp1_model_score - hyp2_model_score))) + # regularisation + expected += 0.5 * self.trainer.alpha * np.dot(weights[:-2], weights[:-2]) + self.assertAlmostEquals(actual,expected) + + def test_gradient_other(self): + # Gradients are just differences in feature vectors + # fv(hypo0)-fv(hyp1), fv(hyp1)-fv(hyp2) + delta_s = np.vstack((self.samples[0].hyp1.fv-self.samples[0].hyp2.fv,\ + self.samples[1].hyp1.fv-self.samples[1].hyp2.fv)) + # feature functions across rows, samples down columns + # choose other features + other_delta_s = delta_s[:,2:] + actual = self.trainer.gradient_other() + nptest.assert_almost_equal(actual,other_delta_s) + + def test_gradient_phrase(self): + iw = np.array([[0.3, 0.4],[0.7,0.6]]) + sample_deltaf_list = [] + for sample in self.samples: + f_A = self.get_phrase_scores(sample.hyp1, iw) + f_B = self.get_phrase_scores(sample.hyp2, iw) + sample_deltaf_list.append(f_A - f_B) + expected = np.vstack(sample_deltaf_list) # samples down, features along + actual = self.trainer.gradient_phrase(iw) + nptest.assert_almost_equal(actual,expected) + + def test_gradient_interp(self): + # The interpolation weights - ttable x feature + iw = np.array([[0.3, 0.4],[0.7,0.6]]) + phrasew = np.array([1,2]) # The phrase weights + num_ttables = iw.shape[0] + num_phrase_features = iw.shape[1] + bysample_list = [] + # Stack up gradients for each sample + for sample in self.samples: + # Get the gradient of the interpolation weights for each + # hypothesis (A and B) in the sample + byhyp = [] + for hyp in [sample.hyp1,sample.hyp2]: + # the weights are flattened. rows of iw joined together, last row omitted + grad_k = np.array([0.0] * ((num_ttables - 1) * num_phrase_features)) + # Iterate through the phrase features + for j,probs in enumerate(np.transpose(hyp.phrase_scores)): + # j is phrase feature index + # probs is phrase-pair, ttable + grad_jk = np.array([0.0] * (len(iw)-1)) + for l,phi in enumerate(probs): + # For each phrase-pair the gradient term for the lambda + # is the probability for this ttable - probability for last ttable + # divided by overall phrase probability + num = phi[:-1] - phi[-1] + denom = np.sum(iw[:,j]*phi) # use interpolation weights for this feature + grad_jk = grad_jk + (num/denom) + self.assertEquals(len(grad_jk), num_ttables-1) + #print "num",num,"denom",denom,"grad_jk",grad_jk + # add gradient in correct place + #print "\n",j,grad_k,phrasew[j]*grad_jk + grad_k[j*(num_ttables-1):(j+1)*(num_ttables-1)] =\ + grad_k[j*(num_ttables-1):(j+1)*(num_ttables-1)] + phrasew[j]*grad_jk + #print "\ngrad_k",grad_k + byhyp.append(grad_k) + bysample_list.append(byhyp[0]-byhyp[1]) + #print "diff: ", bysample_list[-1] + expected = np.vstack(bysample_list) + actual = self.trainer.gradient_interp(iw,phrasew) + nptest.assert_almost_equal(actual,expected, decimal=5) + + def test_gradient(self): + # 2 phrase weights, 2 other feature weights, + # 2 interpolation weights (2 models and 2 tables) + weights = np.array([0.2,0.1,0.4,0.5,0.6,0.3]) + expected = np.array([0.0] * len(weights)) + # Get the gradients + iw = np.array([[weights[-2], weights[-1]], + [1-weights[-2],1-weights[-1]]]) + phrase_g = self.trainer.gradient_phrase(iw) + other_g = self.trainer.gradient_other() + interp_g = self.trainer.gradient_interp(iw,weights[:2]) + for k,sample in enumerate(self.samples): + hyp1_model_score = self.model_score(sample.hyp1, weights) + hyp2_model_score = self.model_score(sample.hyp2, weights) + y = 1 + if sample.hyp2.score > sample.hyp1.score: y = -1 + delta_score = hyp1_model_score - hyp2_model_score + sig_delta_score = sigmoid(-y * delta_score) + # phrase derivative term + expected[:2] -= (phrase_g[k]*sig_delta_score*y) + # other derivative term + expected[2:4] -= (other_g[k]*sig_delta_score*y) + # inter derivative term + expected[-2:] -= (interp_g[k]*sig_delta_score*y) + expected += self.trainer.alpha*np.append(weights[:-2], np.array([0.0,0.0])) + actual = self.trainer.gradient(weights) + nptest.assert_almost_equal(actual,expected) + + def test_split_weights(self): + w = np.array([1,2,3,4,0.2,0.3]) + sw = self.trainer.get_split_weights(w) + self.assertEquals(len(sw),3) + nptest.assert_almost_equal(sw['phrase'], np.array([1,2])) + nptest.assert_almost_equal(sw['other'], np.array([3,4])) + nptest.assert_almost_equal(sw['interp'], \ + np.array([[0.2,0.3], [0.8,0.7]])) + + + def test_train(self): + """Simple test that it runs without errors""" + print "x=",self.trainer.train() + +if __name__ == "__main__": + unittest.main() + +suite = unittest.TestSuite([ + unittest.TestLoader().loadTestsFromTestCase(TestParabaloidOptimiser), + unittest.TestLoader().loadTestsFromTestCase(TestLogisticRegressionOptimiser), + unittest.TestLoader().loadTestsFromTestCase(TestMixtureModelTrainer)]) + + diff --git a/contrib/promix/train.py b/contrib/promix/train.py new file mode 100755 index 000000000..cef801053 --- /dev/null +++ b/contrib/promix/train.py @@ -0,0 +1,410 @@ +#!/usr/bin/env python + +# +# Train the model weights +# + +from math import log,exp +import sys +import numpy as np +from scipy.optimize.optimize import fmin_cg, fmin_bfgs, fmin +from scipy.optimize.lbfgsb import fmin_l_bfgs_b + +import nbest +from util import safelog + +def sigmoid(x): + return 1.0 / (1.0 + np.exp(-x)) + +class OptimisationException(Exception): + pass + +class ParabaloidOptimiser: + """Optimises a very simple function, to test scipy""" + def __init__(self, params): + self.params = params + + def objective(self,x): + return np.sum(x*x*self.params*self.params) + + def grad_k(self,x,k): + return 2 * self.params[k]**2 * x[k] + + def grad(self,x): + return np.array([self.grad_k(x,k) for k in range(len(x))]) + + def debug(self,x): + print "x = ",x + + + def optimise_bfgs(self,start): + print + print "***** BFGS OPTIMISATION *****" + return fmin_bfgs(self.objective, start, fprime=self.grad, callback=self.debug) + + def optimise_lbfgs(self,start): + print + print "***** LBFGS OPTIMISATION *****" + x,f,d = fmin_l_bfgs_b(self.objective, start, fprime=self.grad, pgtol=1e-09, iprint=0) + return x + +class LRDataException(Exception): + pass + +class LogisticRegressionOptimiser: + """Optimise logistic regression weights""" + def __init__(self,x,y, alpha = 0): + """Training data (x) should be vector of feature vectors, and + corresponding vector of outputs (with values -1,1). + alpha controls the L2-normalisation""" + self.x = x + self.y = y + self.alpha = alpha + if len(x) != len(y): raise LRDataException("Lengths of input and response don't match") + if len(x) == 0: raise LRDataException("Data set is empty") + # Precalculate {y_i*x_ij} for all j + self.xy = x*y[:,None] + + def objective(self,w): + """Calculate the value of the negative log-likelihood for a given weight set""" + l = 0 + for i in range(len(self.x)): + # Each example contributes log(sigma(y_i * x_i . w)) + l -= log(sigmoid(self.y[i] * np.dot(w, self.x[i,:]))) + # regularisation 1/2 * alpha * ||w||^2 + l += 0.5 * self.alpha * np.dot(w,w) + return l + + def grad_j(self,w,j): + """Gradient of the objective in the jth direction for given weight set""" + g = 0 + for i in range(len(self.x)): + # Each example contributes -sigma(-y_i * x_i.w) * y_j x_ij + g -= sigmoid(-self.y[i] * np.dot(w, self.x[i,:])) * self.y[i] * self.x[i,j] + #regularisation + g += self.alpha * w[j] + return g + + def grad(self,w): + """Gradient of objective at given weight set - returns a vector""" + # Calculate the vector -sigma(-y_i * x_i.w) + s = -np.array([sigmoid(-yi * np.dot(xi,w)) for xi,yi in zip(self.x,self.y)]) + # Multiply it by xy + g = np.array([np.dot(xyj,s) for xyj in self.xy.transpose()]) + # Add regularisation + g += self.alpha*w + return g + #g = np.array([self.grad_j(w,j) for j in xrange(len(w))]) + + + def train(self,w0,debug=False): + if debug: + iprint = 0 + else: + iprint = -1 + x,f,d = fmin_l_bfgs_b(self.objective, w0, fprime=self.grad, pgtol=1e-09, iprint=iprint) + if d['warnflag'] != 0: + raise OptimisationException(d['task']) + return x + +class ProTrainer: + """Turns the samples into a logistic regression problem""" + def __init__(self,samples): + self.samples = samples + self.alpha = 1 + self.dims = len(samples[0].hyp1.fv) + + + def train(self, debug=False): + x = np.array([s.hyp1.fv-s.hyp2.fv for s in self.samples]) + #print x + y = np.array([cmp(s.hyp1.score,s.hyp2.score) for s in self.samples]) + #print y + lro = LogisticRegressionOptimiser(x,y,self.alpha) + w0 = np.zeros(self.dims) + w = lro.train(w0,debug) + w = w/np.sum(abs(w)) # L_1 normalise + return w,[] + +class MixtureModelTrainer: + """Trains the phrase mixture weights, as well as the regular feature weights""" + def __init__(self,samples): + self.alpha = 1 + self.interp_floor = 0.001 # minimum value for interpolation weight + #self.prob_floor = 0.00000001 # floor probabilities at this value + #self.weight_bounds = (-10,10) # bounds for other features + # The phrase scores are joined into a 5d array, where the dimensions are: + # sample, hyp1 or hyp2, ttable, phrase-pair, feature + # ie the feature is the last dimension + # Actually phrase_probs is a 2-dim list of 3-dim arrays, since it's ragged + self.phrase_probs = \ + [[sample.hyp1.phrase_scores,sample.hyp2.phrase_scores]\ + for sample in samples] + #[[sample.hyp1.phrase_scores.clip(self.prob_floor),sample.hyp2.phrase_scores.clip(self.prob_floor)]\ + + # Figure out where the weights are + self.phrase_index = list(nbest.get_feature_index("tm")) + self.phrase_index[1] = self.phrase_index[1]-1 # phrase penalty not interpolated + + interp_length = (self.phrase_index[1]-self.phrase_index[0]) * \ + (len(samples[0].hyp1.phrase_scores)-1) + weight_length = len(samples[0].hyp1.fv) + interp_length + self.interp_index = [weight_length - interp_length,weight_length] + #print self.interp_index + self.other_index = [[0,self.phrase_index[0]],[self.phrase_index[1],self.interp_index[0]]] + + # join the feature vector diffs for the other fvs into a 2d array + # features across, samples down + self.fvs = np.array(\ + [np.append(sample.hyp1.fv[self.other_index[0][0]:self.other_index[0][1]], + sample.hyp1.fv[self.other_index[1][0]:self.other_index[1][1]]) - \ + np.append(sample.hyp2.fv[self.other_index[0][0]:self.other_index[0][1]],\ + sample.hyp2.fv[self.other_index[1][0]:self.other_index[1][1]])\ + for sample in samples]) + + self.cached_iw = None + self.cached_interpolated_phrase_probs = None + + self.cached_sw = None + self.cached_y_times_diffs = None + + + + # join the responses (y's) into an array + # If any pairs have equal score, this sets y=0, an invalid response. + # but the sampling should ensure that this doesn't happen + self.y = np.array([cmp(sample.hyp1.score, sample.hyp2.score)\ + for sample in samples]) + + def get_split_weights(self,weights): + """Map containing all the different weight sets: + phrase - phrase feature weights (excluding penalty) + other - other feature weights + interp - interpolation weights: ttable x feature + """ + sw = {} + sw['phrase'] = weights[self.phrase_index[0]:self.phrase_index[1]] + sw['interp'] = weights[self.interp_index[0]:self.interp_index[1]] + sw['interp'] = sw['interp'].T.reshape\ + (( len(sw['interp']) / len(sw['phrase'])), len(sw['phrase'])) + # Add normalisations + sw['interp'] = np.vstack((sw['interp'], 1.0 - np.sum(sw['interp'], axis=0))) + #sw['interp'] = np.append(sw['interp'], 1 - np.sum(sw['interp'])) + sw['other'] = np.append(weights[self.other_index[0][0]:self.other_index[0][1]], + weights[self.other_index[1][0]:self.other_index[1][1]]) + return sw + + def get_interpolated_phrase_probs(self,iw): + # Memoise + if self.cached_iw == None or np.sum(np.abs(iw-self.cached_iw)) != 0: + # iw is ttable x feature. Each element of phrase_probs is ttable x pair x feature + iw_expanded = np.expand_dims(iw,1) + # self.phrase probs is a 2-d list, so use python iteration + interpolated = [ [iw_expanded*p for p in ps] for ps in self.phrase_probs] + self.cached_interpolated_phrase_probs = np.sum(np.array(interpolated), axis = 2) + self.cached_iw = iw + return self.cached_interpolated_phrase_probs + + def get_y_times_diffs(self,sw): + """ Calculate the array y_k* \Delta S_k""" + # Process the phrase scores first. + # - for each phrase, interpolate across the ttables using the current weights + # - sum the log probs across phrase pairs to get a score for each hypothesis + # - take the weighted sum of these scores, to give a phrase feature total + # for each hyp + + # Memoise + if self.cached_sw == None or \ + np.sum(np.abs(self.cached_sw['other'] - sw['other'])) != 0 or \ + np.sum(np.abs(self.cached_sw['phrase'] - sw['phrase'])) != 0 or \ + np.sum(np.abs(self.cached_sw['interp'] - sw['interp'])) != 0: + + # do the interpolation + iw = sw['interp'] + interpolated = self.get_interpolated_phrase_probs(iw) + # Use traditional python as not sure how to vectorise. This goes through + # each hypothesis, logs the probability, applies the feature weights, then sums + self.cached_y_times_diffs = np.zeros(len(interpolated)) + # Take the difference between the hypotheses + for i,sample in enumerate(interpolated): + self.cached_y_times_diffs[i] = \ + np.sum(sw['phrase']* np.log(sample[0])) - \ + np.sum(sw['phrase']* np.log(sample[1])) + #print self.fvs, sw['other'] + #print sw['other'], self.fvs + self.cached_y_times_diffs += np.sum(sw['other'] * self.fvs, axis=1) # add other scores + self.cached_y_times_diffs *= self.y + self.cached_sw = sw + return self.cached_y_times_diffs + + def objective(self,w): + """The value of the objective with the given weight vector. + The objective is the sum of the log of the sigmoid of the differences + in scores between the two hypotheses times y. + """ + diffs = self.get_y_times_diffs(self.get_split_weights(w)) + #print diffs, sigmoid(diffs) + obj = -np.sum(np.log(sigmoid(diffs))) #negative, since minimising + # regularisation + obj += 0.5 * self.alpha * np.dot(w[:self.interp_index[0]], w[:self.interp_index[0]]) + return obj + + # + # The following methods compute the derivatives of the score differences + # with respect to each of the three types of weights. They should all + # return an np.array, with features across, and samples down + # + + def gradient_phrase(self,interp): + """Compute the derivative of the score difference for the 'phrase' weights. + + Args: + interp: The interpolation weights + """ + # Compute the interpolated phrase probs + interpolated = self.get_interpolated_phrase_probs(interp) + + # for each sample, log and sum across phrases, then compute the feature value + # difference for each sample. + # TODO: Better vectorisation + grad_list = [] + for i, sample in enumerate(interpolated): + f_A = np.sum(np.log(sample[0]), axis=0) + f_B = np.sum(np.log(sample[1]), axis=0) + grad_list.append(f_A - f_B) + return np.vstack(grad_list) + + def gradient_interp(self,interp,phrase): + """Compute the derivative of the score difference for the 'interp' weights + + Args: + interp: All the interpolation weights. These will be in a 2-dim np array, + where the dims are ttable x phrase feature. Note that there are k rows, + one for each ttable, so the sum down the columns will be 1. + phrase: The weights of the phrase features + + Returns: + A 2-d array, with samples down and gradients along. Note that in the gradients + (rows) the interpolation weights are flattened out, and have the last ttable + removed. + """ + num_interp_weights = (interp.shape[0]-1) * interp.shape[1] + grad_list = np.empty((len(self.phrase_probs),num_interp_weights)) + expanded_interp = np.expand_dims(interp,1) + def df_by_dlambda(phi): + """Derivative of phrase scores w.r.t. lambdas""" + #print "Interp:", interp, "\nPhi", phi + num = phi[:-1] - phi[-1] + denom = np.sum(expanded_interp*phi, axis=0) + # num is ttable x phrase-pair x feature + # denom is phrase-pair x feature + # divide, then sum across phrase-pairs + #print "num",num,"denom",denom + #print "q",num/denom + quotient = np.sum(num/denom, axis =1) + # quotient is ttable-1 x feature + return quotient + + + for k, sample in enumerate(self.phrase_probs): + # derivative is the weighted sum of df_by_dlambda_A - df_by_dlambda_B + #print "\nq0", df_by_dlambda(sample[0]) + #print "hyp0",np.sum(phrase * (df_by_dlambda(sample[0])), axis=0) + #print "q1", df_by_dlambda(sample[1]) + #print "hyp1",np.sum(phrase * (df_by_dlambda(sample[1])), axis=0),"\n" + grad_list[k] = np.sum(phrase * (df_by_dlambda(sample[0]) - df_by_dlambda(sample[1])), axis = 0).flatten() + #grad_list = np.vstack(grad_list) + return grad_list + + def gradient_other(self): + """Compute the derivative of the score difference for the 'other' weights. + + Features across, samples down. + """ + # This is just the difference in the feature values + return self.fvs + + def gradient(self,w): + sw = self.get_split_weights(w) + sig_y_by_diffs = sigmoid(-self.get_y_times_diffs(sw)) + # These all return 2-d arrays, with samples dowm and features across. + # NB: Both gradient_phrase and gradient_interp iterate through the samples, + # so this is probably inefficient + phrase_g = self.gradient_phrase(sw['interp']) + interp_g = self.gradient_interp(sw['interp'], sw['phrase']) + other_g = self.gradient_other() + + # For each feature, we get the gradient by multiplying by \sigma (-y*\Delta S), + # multiplying by y, and summing across all samples + # Take negatives since we're minimising + phrase_g = -np.sum(np.transpose(phrase_g) * sig_y_by_diffs * self.y, axis=1) + interp_g = -np.sum(np.transpose(interp_g) * sig_y_by_diffs * self.y, axis=1) + other_g = -np.sum(np.transpose(other_g) * sig_y_by_diffs * self.y, axis=1) + + # regularisation + phrase_g += self.alpha * sw['phrase'] + other_g += self.alpha * sw['other'] + + # Splice the gradients together + grad = np.array([0.0]* len(w)) + grad[-len(interp_g):] = interp_g + grad[self.phrase_index[0]:self.phrase_index[1]] = phrase_g + grad[self.other_index[0][0]:self.other_index[0][1]] = \ + other_g[:self.other_index[0][1] - self.other_index[0][0]] + grad[self.other_index[1][0]:self.other_index[1][1]] = \ + other_g[self.other_index[0][1] - self.other_index[0][0]:] + return grad + + + def train(self,debug=False): + """Train the mixture model.""" + if debug: + iprint = 0 + else: + iprint = -1 + # Initialise weights to zero, except interpolation + num_phrase_features = self.phrase_index[1] - self.phrase_index[0] + num_models = ((self.interp_index[1] - self.interp_index[0])/num_phrase_features)+1 + w0 = [0.0] * self.interp_index[0] + w0 += [1.0/num_models] * (self.interp_index[1]-self.interp_index[0]) + bounds = [(None,None)] * len(w0) + bounds[self.interp_index[0]:self.interp_index[1]] = \ + [(self.interp_floor,1)] * (self.interp_index[1] - self.interp_index[0]) + w0 = np.array(w0) + x,f,d = fmin_l_bfgs_b(self.objective, w0, fprime=self.gradient, bounds=bounds, pgtol=1e-09, iprint=iprint) + if d['warnflag'] != 0: + raise OptimisationException(d['task']) + weights = x[:self.interp_index[0]] + mix_weights = x[self.interp_index[0]:] + mix_weights = mix_weights.reshape((num_models-1,num_phrase_features)) + mix_weights = np.vstack((mix_weights, 1-np.sum(mix_weights,axis=0))) + return weights,mix_weights + + +# +# Test logistic regression using pro data +# +def main(): + fh = open("data/esen.wmt12.pro") + x = [] + y = [] + d = 14 + for line in fh: + line = line[:-1] + fields = line.split() + if fields[0] == "1": + y.append(1) + else: + y.append(-1) + x_i = [0]*d + for i in xrange(1,len(fields),2): + j = int(fields[i][1:]) + x_ij = float(fields[i+1]) + x_i[j] = x_ij + x.append(x_i) + lro = LogisticRegressionOptimiser(np.array(x), np.array(y), 0.1) + print lro.train(np.zeros(d), debug=True) + + +if __name__ == "__main__": + main() diff --git a/contrib/promix/util.py b/contrib/promix/util.py new file mode 100644 index 000000000..4d604bd84 --- /dev/null +++ b/contrib/promix/util.py @@ -0,0 +1,12 @@ +#!/usr/bin/python + +import numpy as np + + +floor = np.exp(-100) +def safelog(x): + """Wraps np.log to give it a floor""" + #return np.log(x) + return np.log(np.clip(x,floor,np.inf)) + + From 2f221473f0944503c1324a7fd93ebb035f3c5fd4 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Thu, 21 Feb 2013 21:40:01 +0000 Subject: [PATCH 08/28] Change from phrase-weighting to promix --- scripts/training/mert-moses.pl | 101 +++++++++++++++------------------ 1 file changed, 46 insertions(+), 55 deletions(-) diff --git a/scripts/training/mert-moses.pl b/scripts/training/mert-moses.pl index 6797b57f4..c26d6a6a7 100755 --- a/scripts/training/mert-moses.pl +++ b/scripts/training/mert-moses.pl @@ -121,13 +121,12 @@ my $megam_default_options = "-fvals -maxi 30 -nobias binary"; # Flags related to Batch MIRA (Cherry & Foster, 2012) my $___BATCH_MIRA = 0; # flg to enable batch MIRA -# Use the phrase weighting framework. This argument specifies the script location -my $__PHRASE_WEIGHTING = undef; -my $__PHRASE_WEIGHTING_TRAINER = "pro"; # which type of trainer to use -# For mixture modelling, require the phrase tables. These should be gzip text format. -my @__PHRASE_WEIGHTING_TABLES; +# Train phrase model mixture weights with PRO (Haddow, NAACL 2012) +my $__PROMIX_TRAINING = undef; # Location of main script (contrib/promix/main.py) +# The phrase tables. These should be gzip text format. +my @__PROMIX_TABLES; # The tmcombine script -my $__PHRASE_WEIGHTING_TMCOMBINE = "$SCRIPTS_ROOTDIR/../contrib/tmcombine/tmcombine.py"; +my $__TMCOMBINE = "$SCRIPTS_ROOTDIR/../contrib/tmcombine/tmcombine.py"; # used to filter output my $__REMOVE_SEGMENTATION = "$SCRIPTS_ROOTDIR/ems/support/remove-segmentation-markup.perl"; @@ -233,10 +232,8 @@ GetOptions( "historic-interpolation=f" => \$___HISTORIC_INTERPOLATION, "batch-mira" => \$___BATCH_MIRA, "batch-mira-args=s" => \$batch_mira_args, - "phrase-weighting=s" => \$__PHRASE_WEIGHTING, - "phrase-weighting-trainer=s" => \$__PHRASE_WEIGHTING_TRAINER, - "phrase-weighting-table=s" => \@__PHRASE_WEIGHTING_TABLES, - "phrase-weighting-tmcombine=s" => \$__PHRASE_WEIGHTING_TMCOMBINE, + "promix-training=s" => \$__PROMIX_TRAINING, + "promix-table=s" => \@__PROMIX_TABLES, "threads=i" => \$__THREADS ) or exit(1); @@ -389,20 +386,16 @@ if (($___PAIRWISE_RANKED_OPTIMIZER || $___PRO_STARTING_POINT) && ! -x $pro_optim die("ERROR: Installation of megam_i686.opt failed! Install by hand from $megam_url") unless -x $pro_optimizer; } -if ($__PHRASE_WEIGHTING) { - die "Not executable $__PHRASE_WEIGHTING" unless -x $__PHRASE_WEIGHTING; - die "Unknown phrase weighting trainer: $__PHRASE_WEIGHTING_TRAINER" unless - ($__PHRASE_WEIGHTING_TRAINER eq "mix" || $__PHRASE_WEIGHTING_TRAINER eq "pro"); - if ($__PHRASE_WEIGHTING_TRAINER eq "mix") { - die "For mixture model training, specify the tables with --phrase-weighting-tables" unless @__PHRASE_WEIGHTING_TABLES; - die "For mixture model, need at least 2 tables" unless scalar(@__PHRASE_WEIGHTING_TABLES) > 1; +if ($__PROMIX_TRAINING) { + die "Not executable $__PROMIX_TRAINING" unless -x $__PROMIX_TRAINING; + die "For mixture model training, specify the tables with --phrase-weighting-tables" unless @__PROMIX_TABLES; + die "For mixture model, need at least 2 tables" unless scalar(@__PROMIX_TABLES) > 1; - for my $TABLE (@__PHRASE_WEIGHTING_TABLES) { - die "Phrase table $TABLE not found" unless -r $TABLE; - } - die "Not executable: $__PHRASE_WEIGHTING_TMCOMBINE" unless -x $__PHRASE_WEIGHTING_TMCOMBINE; - die "To use phrase-weighting, need to specify a filter and binarisation command" unless $filtercmd =~ /Binarizer/; + for my $TABLE (@__PROMIX_TABLES) { + die "Phrase table $TABLE not found" unless -r $TABLE; } + die "Not executable: $__TMCOMBINE" unless -x $__TMCOMBINE; + die "To use phrase-weighting, need to specify a filter and binarisation command" unless $filtercmd =~ /Binarizer/; } $mertargs = "" if !defined $mertargs; @@ -530,25 +523,27 @@ my @allnbests; # If we're training mixture models, need to make sure the appropriate # tables are in place -my @_PHRASE_WEIGHTING_TABLES_BIN; -if ($__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "mix") { +my @_PROMIX_TABLES_BIN; +if ($__PROMIX_TRAINING) { print STDERR "Training mixture model\n"; - for (my $i = 0; $i < scalar(@__PHRASE_WEIGHTING_TABLES); ++$i) { + for (my $i = 0; $i < scalar(@__PROMIX_TABLES); ++$i) { # Create filtered, binarised tables my $filtered_config = "moses_$i.ini"; - substitute_ttable($___CONFIG, $filtered_config, $__PHRASE_WEIGHTING_TABLES[$i]); + substitute_ttable($___CONFIG, $filtered_config, $__PROMIX_TABLES[$i]); my $filtered_path = "filtered_$i"; my $___FILTER_F = $___DEV_F; $___FILTER_F = $filterfile if (defined $filterfile); my $cmd = "$filtercmd ./$filtered_path $filtered_config $___FILTER_F"; &submit_or_exec($cmd, "filterphrases_$i.out", "filterphrases_$i.err"); - push (@_PHRASE_WEIGHTING_TABLES_BIN,"$filtered_path/phrase-table.0-0.1.1"); + push (@_PROMIX_TABLES_BIN,"$filtered_path/phrase-table.0-0.1.1"); # Create directory structure for the text phrase tables required by tmcombine mkpath("model_$i/model") || die "Failed to create model_$i/model"; safesystem("ln -s ../../$filtered_path/phrase-table.0-0.1.1 model_$i/model/phrase-table"); } -} elsif ($___FILTER_PHRASE_TABLE) { +} + +if ($___FILTER_PHRASE_TABLE) { my $outdir = "filtered"; if (-e "$outdir/moses.ini") { print STDERR "Assuming the tables are already filtered, reusing $outdir/moses.ini\n"; @@ -703,7 +698,7 @@ my $nbest_file = undef; my $lsamp_file = undef; # Lattice samples my $orig_nbest_file = undef; # replaced if lattice sampling # For mixture modelling -my @phrase_weighting_mix_weights; +my @promix_weights; my $num_mixed_phrase_features; while (1) { @@ -714,29 +709,29 @@ while (1) { } print "run $run start at ".`date`; - if ($__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "mix") { + if ($__PROMIX_TRAINING) { # Need to interpolate the phrase tables with current weights, and binarise - if (!@phrase_weighting_mix_weights) { + if (!@promix_weights) { # total number of weights is 1 less than number of phrase features, multiplied # by the number of tables $num_mixed_phrase_features = (grep { $_ eq 'tm' } @{$featlist->{"names"}}) - 1; - @phrase_weighting_mix_weights = (1.0/scalar(@__PHRASE_WEIGHTING_TABLES)) x - ($num_mixed_phrase_features * scalar(@__PHRASE_WEIGHTING_TABLES)); + @promix_weights = (1.0/scalar(@__PROMIX_TABLES)) x + ($num_mixed_phrase_features * scalar(@__PROMIX_TABLES)); } # make a backup copy of startup ini filepath $___CONFIG_ORIG = $___CONFIG unless defined($___CONFIG_ORIG); # Interpolation my $interpolated_phrase_table = "./phrase-table.interpolated.gz"; - my $cmd = "$__PHRASE_WEIGHTING_TMCOMBINE combine_given_weights "; - $cmd .= join(" ", map {"model_$_"} (0..(scalar(@__PHRASE_WEIGHTING_TABLES)-1))); + my $cmd = "$__TMCOMBINE combine_given_weights "; + $cmd .= join(" ", map {"model_$_"} (0..(scalar(@__PROMIX_TABLES)-1))); # convert from table,feature ordering to feature,table ordering my @transposed_weights; for my $feature (0..($num_mixed_phrase_features-1)) { my @table_weights; - for my $table (0..(scalar(@__PHRASE_WEIGHTING_TABLES)-1)) { - push @table_weights, $phrase_weighting_mix_weights[$table * $num_mixed_phrase_features + $feature]; + for my $table (0..(scalar(@__PROMIX_TABLES)-1)) { + push @table_weights, $promix_weights[$table * $num_mixed_phrase_features + $feature]; } push @transposed_weights, join ",", @table_weights; } @@ -744,6 +739,7 @@ while (1) { $cmd .= " -w \"" . join(";",@transposed_weights) . "\""; $cmd .= " -o $interpolated_phrase_table"; &submit_or_exec($cmd, "interpolate.out", "interpolate.err"); + print "finished interpolation at ".`date`; # Create an ini file for the interpolated phrase table my $interpolated_config ="moses.interpolated.ini"; @@ -817,9 +813,9 @@ while (1) { my $score_file = "run$run.${base_score_file}"; my $cmd = "$mert_extract_cmd $mert_extract_args --scfile $score_file --ffile $feature_file -r " . join(",", @references) . " -n $nbest_file"; - $cmd .= " -d" if $__PHRASE_WEIGHTING; # Allow duplicates + $cmd .= " -d" if $__PROMIX_TRAINING; # Allow duplicates # remove segmentation - $cmd .= " -l $__REMOVE_SEGMENTATION" if $__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "mix"; + $cmd .= " -l $__REMOVE_SEGMENTATION" if $__PROMIX_TRAINING; $cmd = &create_extractor_script($cmd, $___WORKING_DIR); &submit_or_exec($cmd, "extract.out","extract.err"); @@ -893,7 +889,7 @@ while (1) { " --scfile " . join(" --scfile ", split(/,/, $scfiles)); push @allnbests, $nbest_file; - my $phrase_weight_file_settings = + my $promix_file_settings = "--scfile " . join(" --scfile ", split(/,/, $scfiles)) . " --nbest " . join(" --nbest ", @allnbests); @@ -915,7 +911,7 @@ while (1) { my $pro_cmd = "$mert_pro_cmd $proargs $seed_settings $pro_file_settings -o run$run.pro.data ; $pro_optimizer_cmd"; &submit_or_exec($pro_cmd, "run$run.pro.out", "run$run.pro.err"); # ... get results ... - ($bestpoint,$devbleu) = &get_weights_from_mert("run$run.pro.out","run$run.pro.err",scalar @{$featlist->{"names"}},\%sparse_weights, \@phrase_weighting_mix_weights); + ($bestpoint,$devbleu) = &get_weights_from_mert("run$run.pro.out","run$run.pro.err",scalar @{$featlist->{"names"}},\%sparse_weights, \@promix_weights); # Get the pro outputs ready for mert. Add the weight ranges, # and a weight and range for the single sparse feature $cmd =~ s/--ifile (\S+)/--ifile run$run.init.pro/; @@ -946,19 +942,14 @@ while (1) { safesystem("echo 'not used' > $weights_out_file") or die; $cmd = "$mert_mira_cmd $mira_settings $seed_settings $pro_file_settings -o $mert_outfile"; &submit_or_exec($cmd, "run$run.mira.out", $mert_logfile); - } elsif ($__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "mix") { - # Phrase weighting, mixture model + } elsif ($__PROMIX_TRAINING) { + # PRO trained mixture model safesystem("echo 'not used' > $weights_out_file") or die; - $cmd = "$__PHRASE_WEIGHTING $phrase_weight_file_settings"; + $cmd = "$__PROMIX_TRAINING $promix_file_settings"; $cmd .= " -t mix "; - $cmd .= join(" ", map {"-p $_"} @_PHRASE_WEIGHTING_TABLES_BIN); + $cmd .= join(" ", map {"-p $_"} @_PROMIX_TABLES_BIN); $cmd .= " -i $___DEV_F"; &submit_or_exec($cmd, "$mert_outfile", $mert_logfile); - } elsif ($__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "pro") { - # Phrase weighting, PRO - safesystem("echo 'not used' > $weights_out_file") or die; - $cmd = "$__PHRASE_WEIGHTING $phrase_weight_file_settings"; - &submit_or_exec($cmd, "$mert_outfile", $mert_logfile); } else { # just mert &submit_or_exec($cmd . $mert_settings, $mert_outfile, $mert_logfile); } @@ -976,9 +967,9 @@ while (1) { print "run $run end at ".`date`; - ($bestpoint,$devbleu) = &get_weights_from_mert("run$run.$mert_outfile","run$run.$mert_logfile",scalar @{$featlist->{"names"}},\%sparse_weights,\@phrase_weighting_mix_weights); + ($bestpoint,$devbleu) = &get_weights_from_mert("run$run.$mert_outfile","run$run.$mert_logfile",scalar @{$featlist->{"names"}},\%sparse_weights,\@promix_weights); my $merge_weight = 0; - print "New mixture weights: " . join(" ", @phrase_weighting_mix_weights) . "\n"; + print "New mixture weights: " . join(" ", @promix_weights) . "\n"; die "Failed to parse mert.log, missed Best point there." if !defined $bestpoint || !defined $devbleu; @@ -1107,7 +1098,7 @@ if($___RETURN_BEST_DEV) { my $evalout = "eval.out"; for (my $i = 1; $i < $run; $i++) { my $cmd = "$mert_eval_cmd --reference " . join(",", @references) . " -s BLEU --candidate run$i.out"; - $cmd .= " -l $__REMOVE_SEGMENTATION" if defined( $__PHRASE_WEIGHTING) && $__PHRASE_WEIGHTING_TRAINER eq "mix"; + $cmd .= " -l $__REMOVE_SEGMENTATION" if defined( $__PROMIX_TRAINING); safesystem("$cmd 2> /dev/null 1> $evalout"); open my $fh, '<', $evalout or die "Can't read $evalout : $!"; my $bleu = <$fh>; @@ -1142,7 +1133,7 @@ sub get_weights_from_mert { my ($outfile, $logfile, $weight_count, $sparse_weights, $mix_weights) = @_; my ($bestpoint, $devbleu); if ($___PAIRWISE_RANKED_OPTIMIZER || ($___PRO_STARTING_POINT && $logfile =~ /pro/) - || $___BATCH_MIRA || $__PHRASE_WEIGHTING) { + || $___BATCH_MIRA || $__PROMIX_TRAINING) { open my $fh, '<', $outfile or die "Can't open $outfile: $!"; my @WEIGHT; @$mix_weights = (); @@ -1220,7 +1211,7 @@ sub run_decoder { my $decoder_config = ""; $decoder_config = join(" ", values %model_weights) unless $___USE_CONFIG_WEIGHTS_FIRST && $run==1; $decoder_config .= " -weight-file run$run.sparse-weights" if -e "run$run.sparse-weights"; - $decoder_config .= " -report-segmentation" if $__PHRASE_WEIGHTING && $__PHRASE_WEIGHTING_TRAINER eq "mix"; + $decoder_config .= " -report-segmentation" if $__PROMIX_TRAINING; print STDERR "DECODER_CFG = $decoder_config\n"; print "decoder_config = $decoder_config\n"; From ed117f55c9e958793adac1d7383b1333d0b1b72c Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Mon, 25 Feb 2013 09:36:58 +0000 Subject: [PATCH 09/28] Timing info. Command line args. --- scripts/training/mert-moses.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/training/mert-moses.pl b/scripts/training/mert-moses.pl index c26d6a6a7..a703bf744 100755 --- a/scripts/training/mert-moses.pl +++ b/scripts/training/mert-moses.pl @@ -323,10 +323,8 @@ Options: --batch-mira-args=STRING ... args to pass through to batch MIRA. This flag is useful to change MIRA's hyperparameters such as regularization parameter C, BLEU decay factor, and the number of iterations of MIRA. - --phrase-weighting ... Phrase-weighting framework main script - --phrase-weighting-trainer... Training method for phrase weighting (pro or mix) - --phrase-weighting-table ... Phrase tables for training mixture models - --phrase-weighting-tmcombine Script for combining ttables + --promix-training=STRING ... PRO-based mixture model training (Haddow, NAACL 2013) + --promix-tables=STRING ... Phrase tables for PRO-based mixture model training. --threads=NUMBER ... Use multi-threaded mert (must be compiled in). --historic-interpolation ... Interpolate optimized weights with prior iterations' weight (parameter sets factor [0;1] given to current weights) @@ -949,7 +947,9 @@ while (1) { $cmd .= " -t mix "; $cmd .= join(" ", map {"-p $_"} @_PROMIX_TABLES_BIN); $cmd .= " -i $___DEV_F"; + print "Starting promix optimisation at " . `date`; &submit_or_exec($cmd, "$mert_outfile", $mert_logfile); + print "Finished promix optimisation at " . `date`; } else { # just mert &submit_or_exec($cmd . $mert_settings, $mert_outfile, $mert_logfile); } From ef87461d07e46be2b2542872e25bef6c3ad2f444 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Thu, 28 Feb 2013 22:48:41 +0000 Subject: [PATCH 10/28] Interpolated phrase feature --- moses/Phrase.h | 16 ++ moses/StaticData.cpp | 8 +- moses/TranslationModel/PhraseDictionary.cpp | 24 ++- moses/TranslationModel/PhraseDictionary.h | 6 +- .../PhraseDictionaryInterpolated.cpp | 184 ++++++++++++++++++ .../PhraseDictionaryInterpolated.h | 77 ++++++++ moses/TypeDef.h | 1 + 7 files changed, 299 insertions(+), 17 deletions(-) create mode 100644 moses/TranslationModel/PhraseDictionaryInterpolated.cpp create mode 100644 moses/TranslationModel/PhraseDictionaryInterpolated.h diff --git a/moses/Phrase.h b/moses/Phrase.h index 7c7f9b0e4..ed2942c3e 100644 --- a/moses/Phrase.h +++ b/moses/Phrase.h @@ -180,5 +180,21 @@ inline size_t hash_value(const Phrase& phrase) { return seed; } +struct PhrasePtrComparator { + inline bool operator()(const Phrase* lhs, const Phrase* rhs) const { + return *lhs == *rhs; + } +}; + +struct PhrasePtrHasher { + inline size_t operator()(const Phrase* phrase) const { + size_t seed = 0; + boost::hash_combine(seed,*phrase); + return seed; + } + +}; + } + #endif diff --git a/moses/StaticData.cpp b/moses/StaticData.cpp index d056dc78e..df05b64d3 100644 --- a/moses/StaticData.cpp +++ b/moses/StaticData.cpp @@ -1334,12 +1334,6 @@ bool StaticData::LoadPhraseTables() weightAllOffset += numScoreComponent; numScoreComponent += tableInputScores; - string targetPath, alignmentsFile; - if (implementation == SuffixArray) { - targetPath = token[5]; - alignmentsFile= token[6]; - } - CHECK(numScoreComponent==weight.size()); @@ -1368,7 +1362,7 @@ bool StaticData::LoadPhraseTables() , weight , currDict , maxTargetPhrase[index] - , targetPath, alignmentsFile); + , token); m_phraseDictionary.push_back(pdf); diff --git a/moses/TranslationModel/PhraseDictionary.cpp b/moses/TranslationModel/PhraseDictionary.cpp index bf87cc161..3c4e83ca0 100644 --- a/moses/TranslationModel/PhraseDictionary.cpp +++ b/moses/TranslationModel/PhraseDictionary.cpp @@ -21,6 +21,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA #include "moses/TranslationModel/PhraseDictionary.h" #include "moses/TranslationModel/PhraseDictionaryTreeAdaptor.h" +#include "moses/TranslationModel/PhraseDictionaryInterpolated.h" #include "moses/TranslationModel/RuleTable/PhraseDictionarySCFG.h" #include "moses/TranslationModel/RuleTable/PhraseDictionaryOnDisk.h" #include "moses/TranslationModel/RuleTable/PhraseDictionaryALSuffixArray.h" @@ -64,16 +65,14 @@ PhraseDictionaryFeature::PhraseDictionaryFeature , const std::vector &weight , size_t dictIndex , size_t tableLimit - , const std::string &targetFile // default param - , const std::string &alignmentsFile) // default param + , const std::vector& config) :DecodeFeature("PhraseModel",numScoreComponent,input,output), m_dictIndex(dictIndex), m_numInputScores(numInputScores), m_filePath(filePath), m_tableLimit(tableLimit), m_implementation(implementation), - m_targetFile(targetFile), - m_alignmentsFile(alignmentsFile), + m_config(config), m_sparsePhraseDictionaryFeature(spdf) { if (implementation == Memory || implementation == SCFG || implementation == SuffixArray || @@ -121,6 +120,18 @@ PhraseDictionary* PhraseDictionaryFeature::LoadPhraseTable(const TranslationSyst , system->GetWeightWordPenalty()); CHECK(ret); return pdta; + } else if (m_implementation == Interpolated) { + PhraseDictionaryInterpolated* pdi = new PhraseDictionaryInterpolated(GetNumScoreComponents(), m_numInputScores,this); + bool ret = pdi->Load( + GetInput() + , GetOutput() + , m_config + , weightT + , m_tableLimit + , system->GetLanguageModels() + , system->GetWeightWordPenalty()); + CHECK(ret); + return pdi; } else if (m_implementation == SCFG || m_implementation == Hiero) { // memory phrase table if (m_implementation == Hiero) { @@ -181,12 +192,13 @@ PhraseDictionary* PhraseDictionaryFeature::LoadPhraseTable(const TranslationSyst } else if (m_implementation == SuffixArray) { #ifndef WIN32 PhraseDictionaryDynSuffixArray *pd = new PhraseDictionaryDynSuffixArray(GetNumScoreComponents(), this); + CHECK(m_config.size() >= 7); if(!(pd->Load( GetInput() ,GetOutput() ,m_filePath - ,m_targetFile - ,m_alignmentsFile + ,m_config[5] + ,m_config[6] ,weightT, m_tableLimit ,system->GetLanguageModels() ,system->GetWeightWordPenalty()))) { diff --git a/moses/TranslationModel/PhraseDictionary.h b/moses/TranslationModel/PhraseDictionary.h index 282ce5480..a27a1d603 100644 --- a/moses/TranslationModel/PhraseDictionary.h +++ b/moses/TranslationModel/PhraseDictionary.h @@ -107,8 +107,7 @@ public: , const std::vector &weight , size_t dictIndex , size_t tableLimit - , const std::string &targetFile - , const std::string &alignmentsFile); + , const std::vector& config); virtual ~PhraseDictionaryFeature(); @@ -173,8 +172,7 @@ private: bool m_useThreadSafePhraseDictionary; PhraseTableImplementation m_implementation; - std::string m_targetFile; - std::string m_alignmentsFile; + const std::vector m_config; SparsePhraseDictionaryFeature* m_sparsePhraseDictionaryFeature; }; diff --git a/moses/TranslationModel/PhraseDictionaryInterpolated.cpp b/moses/TranslationModel/PhraseDictionaryInterpolated.cpp new file mode 100644 index 000000000..e5e06a802 --- /dev/null +++ b/moses/TranslationModel/PhraseDictionaryInterpolated.cpp @@ -0,0 +1,184 @@ +/*********************************************************************** +Moses - factored phrase-based language decoder +Copyright (C) 2013- University of Edinburgh + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +***********************************************************************/ + +#include +#include + +#include "util/exception.hh" +#include "util/tokenize_piece.hh" +#include "moses/TranslationModel/PhraseDictionaryInterpolated.h" + +using namespace std; + +namespace Moses +{ + + PhraseDictionaryInterpolated::PhraseDictionaryInterpolated + (size_t numScoreComponent,size_t numInputScores,const PhraseDictionaryFeature* feature): + PhraseDictionary(numScoreComponent,feature), + m_targetPhrases(NULL), + m_languageModels(NULL) {} + + bool PhraseDictionaryInterpolated::Load( + const std::vector &input + , const std::vector &output + , const std::vector& config + , const std::vector &weightT + , size_t tableLimit + , const LMList &languageModels + , float weightWP) { + + m_languageModels = &languageModels; + m_weightT = weightT; + m_tableLimit = tableLimit; + m_weightWP = weightWP; + + //The config should be as follows: + //0-3: type factor factor num-components (as usual) + //4: combination mode (e.g. naive) + //5-(length-2): List of phrase-table files + //length-1: Weight string, in the same format as used for tmcombine + + UTIL_THROW_IF(config.size() < 7, util::Exception, "Missing fields from phrase table configuration: expected at least 7"); + UTIL_THROW_IF(config[4] != "naive", util::Exception, "Unsupported combination mode: '" << config[4] << "'"); + + // Create the dictionaries + for (size_t i = 5; i < config.size()-1; ++i) { + m_dictionaries.push_back(DictionaryHandle(new PhraseDictionaryTreeAdaptor( + GetFeature()->GetNumScoreComponents(), + GetFeature()->GetNumInputScores(), + GetFeature()))); + bool ret = m_dictionaries.back()->Load( + input, + output, + config[i], + weightT, + 0, + languageModels, + weightWP); + if (!ret) return ret; + } + + //Parse the weight strings + for (util::TokenIter featureWeights(config.back(), util::SingleCharacter(';')); featureWeights; ++featureWeights) { + m_weights.push_back(vector()); + float sum = 0; + for (util::TokenIter tableWeights(*featureWeights, util::SingleCharacter(',')); tableWeights; ++tableWeights) { + const float weight = boost::lexical_cast(*tableWeights); + m_weights.back().push_back(weight); + sum += weight; + cerr << "Interpolation weight " << weight << endl; + } + UTIL_THROW_IF(m_weights.back().size() != m_dictionaries.size(), util::Exception, + "Number of weights (" << m_weights.back().size() << + ") does not match number of dictionaries to combine (" << m_dictionaries.size() << ")"); + UTIL_THROW_IF(abs(sum - 1) > 0.01, util::Exception, "Weights not normalised"); + + } + + //check number of weight sets. Make sure there is a weight for every score component + //except for the last - which is assumed to be the phrase penalty. + UTIL_THROW_IF(m_weights.size() != 1 && m_weights.size() != GetFeature()->GetNumScoreComponents()-1, util::Exception, "Unexpected number of weight sets"); + //if 1 weight set, then repeat + if (m_weights.size() == 1) { + while(m_weights.size() < GetFeature()->GetNumScoreComponents()-1) { + m_weights.push_back(m_weights[0]); + } + } + + return true; + } + + void PhraseDictionaryInterpolated::InitializeForInput(InputType const& source) { + for (size_t i = 0; i < m_dictionaries.size(); ++i) { + m_dictionaries[i]->InitializeForInput(source); + } + } + + typedef + boost::unordered_set PhraseSet; + + + const TargetPhraseCollection* + PhraseDictionaryInterpolated::GetTargetPhraseCollection(const Phrase& src) const { + + delete m_targetPhrases; + m_targetPhrases = new TargetPhraseCollection(); + PhraseSet allPhrases; + vector phrasesByTable(m_dictionaries.size()); + for (size_t i = 0; i < m_dictionaries.size(); ++i) { + const TargetPhraseCollection* phrases = m_dictionaries[i]->GetTargetPhraseCollection(src); + if (phrases) { + for (TargetPhraseCollection::const_iterator j = phrases->begin(); + j != phrases->end(); ++j) { + allPhrases.insert(*j); + phrasesByTable[i].insert(*j); + } + } + } + ScoreComponentCollection sparseVector; + for (PhraseSet::const_iterator i = allPhrases.begin(); i != allPhrases.end(); ++i) { + TargetPhrase* combinedPhrase = new TargetPhrase((Phrase)**i); + //combinedPhrase->ResetScore(); + //cerr << *combinedPhrase << " " << combinedPhrase->GetScoreBreakdown() << endl; + combinedPhrase->SetSourcePhrase((*i)->GetSourcePhrase()); + combinedPhrase->SetAlignTerm(&((*i)->GetAlignTerm())); + combinedPhrase->SetAlignNonTerm(&((*i)->GetAlignTerm())); + Scores combinedScores(GetFeature()->GetNumScoreComponents()); + for (size_t j = 0; j < phrasesByTable.size(); ++j) { + PhraseSet::const_iterator tablePhrase = phrasesByTable[j].find(combinedPhrase); + if (tablePhrase != phrasesByTable[j].end()) { + Scores tableScores = (*tablePhrase)->GetScoreBreakdown() + .GetScoresForProducer(GetFeature()); + //cerr << "Scores from " << j << " table: "; + for (size_t k = 0; k < tableScores.size()-1; ++k) { + //cerr << tableScores[k] << "(" << exp(tableScores[k]) << ") "; + combinedScores[k] += m_weights[k][j] * exp(tableScores[k]); + //cerr << m_weights[k][j] * exp(tableScores[k]) << " "; + } + //cerr << endl; + } + } + //map back to log space + //cerr << "Combined "; + for (size_t k = 0; k < combinedScores.size()-1; ++k) { + //cerr << combinedScores[k] << " "; + combinedScores[k] = log(combinedScores[k]); + //cerr << combinedScores[k] << " "; + } + //cerr << endl; + combinedScores.back() = 1; //assume last is penalty + combinedPhrase->SetScore( + GetFeature(), + combinedScores, + sparseVector, + m_weightT, + m_weightWP, + *m_languageModels); + //cerr << *combinedPhrase << " " << combinedPhrase->GetScoreBreakdown() << endl; + m_targetPhrases->Add(combinedPhrase); + } + + m_targetPhrases->Prune(true,m_tableLimit); + + + return m_targetPhrases; + } + +} diff --git a/moses/TranslationModel/PhraseDictionaryInterpolated.h b/moses/TranslationModel/PhraseDictionaryInterpolated.h new file mode 100644 index 000000000..74add1833 --- /dev/null +++ b/moses/TranslationModel/PhraseDictionaryInterpolated.h @@ -0,0 +1,77 @@ +/*********************************************************************** +Moses - factored phrase-based language decoder +Copyright (C) 2013- University of Edinburgh + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +***********************************************************************/ + + +#ifndef moses_PhraseDictionaryInterpolated_h +#define moses_PhraseDictionaryInterpolated_h + +#include + +#include "moses/TranslationModel/PhraseDictionary.h" +#include "moses/TranslationModel/PhraseDictionaryTreeAdaptor.h" + +namespace Moses +{ + +/** + * An interpolation of 1 or more PhraseDictionaryTree translation tables. + **/ +class PhraseDictionaryInterpolated : public PhraseDictionary +{ + public: + + PhraseDictionaryInterpolated + (size_t numScoreComponent,size_t numInputScores,const PhraseDictionaryFeature* feature); + + virtual ~PhraseDictionaryInterpolated() {delete m_targetPhrases;} + + // initialize ... + bool Load(const std::vector &input + , const std::vector &output + , const std::vector& config + , const std::vector &weight + , size_t tableLimit + , const LMList &languageModels + , float weightWP); + + virtual const TargetPhraseCollection *GetTargetPhraseCollection(const Phrase& src) const; + virtual void InitializeForInput(InputType const& source); + virtual ChartRuleLookupManager *CreateRuleLookupManager( + const InputType &, + const ChartCellCollectionBase &) { + throw std::logic_error("PhraseDictionaryInterpolated.CreateRuleLookupManager() Not implemented"); + } + + private: + + typedef boost::shared_ptr DictionaryHandle; + std::vector m_dictionaries; + std::vector > m_weights; //feature x table + mutable TargetPhraseCollection* m_targetPhrases; + std::vector m_weightT; + size_t m_tableLimit; + const LMList* m_languageModels; + float m_weightWP; + +}; + + +} + +#endif diff --git a/moses/TypeDef.h b/moses/TypeDef.h index faf98c448..cb14c1713 100644 --- a/moses/TypeDef.h +++ b/moses/TypeDef.h @@ -139,6 +139,7 @@ enum PhraseTableImplementation { ,ALSuffixArray = 10 ,FuzzyMatch = 11 ,Compact = 12 + ,Interpolated = 13 }; enum InputTypeEnum { From 3805d8825edcbcef1ac1b2cbe148707edeeddece Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Thu, 28 Feb 2013 22:51:52 +0000 Subject: [PATCH 11/28] remove debug --- moses/TranslationModel/PhraseDictionaryInterpolated.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/moses/TranslationModel/PhraseDictionaryInterpolated.cpp b/moses/TranslationModel/PhraseDictionaryInterpolated.cpp index e5e06a802..764927081 100644 --- a/moses/TranslationModel/PhraseDictionaryInterpolated.cpp +++ b/moses/TranslationModel/PhraseDictionaryInterpolated.cpp @@ -83,7 +83,6 @@ namespace Moses const float weight = boost::lexical_cast(*tableWeights); m_weights.back().push_back(weight); sum += weight; - cerr << "Interpolation weight " << weight << endl; } UTIL_THROW_IF(m_weights.back().size() != m_dictionaries.size(), util::Exception, "Number of weights (" << m_weights.back().size() << From 4c2e2d768b9c2454f2ba92916cc3b131fcb76978 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Fri, 15 Mar 2013 16:13:33 +0000 Subject: [PATCH 12/28] Update mert training to use interpolated ttable --- scripts/training/mert-moses.pl | 66 +++++++++++++++------------------- 1 file changed, 28 insertions(+), 38 deletions(-) diff --git a/scripts/training/mert-moses.pl b/scripts/training/mert-moses.pl index a703bf744..688e8ce55 100755 --- a/scripts/training/mert-moses.pl +++ b/scripts/training/mert-moses.pl @@ -125,8 +125,6 @@ my $___BATCH_MIRA = 0; # flg to enable batch MIRA my $__PROMIX_TRAINING = undef; # Location of main script (contrib/promix/main.py) # The phrase tables. These should be gzip text format. my @__PROMIX_TABLES; -# The tmcombine script -my $__TMCOMBINE = "$SCRIPTS_ROOTDIR/../contrib/tmcombine/tmcombine.py"; # used to filter output my $__REMOVE_SEGMENTATION = "$SCRIPTS_ROOTDIR/ems/support/remove-segmentation-markup.perl"; @@ -386,14 +384,13 @@ if (($___PAIRWISE_RANKED_OPTIMIZER || $___PRO_STARTING_POINT) && ! -x $pro_optim if ($__PROMIX_TRAINING) { die "Not executable $__PROMIX_TRAINING" unless -x $__PROMIX_TRAINING; - die "For mixture model training, specify the tables with --phrase-weighting-tables" unless @__PROMIX_TABLES; + die "For promix training, specify the tables using --promix-table arguments" unless @__PROMIX_TABLES; die "For mixture model, need at least 2 tables" unless scalar(@__PROMIX_TABLES) > 1; for my $TABLE (@__PROMIX_TABLES) { die "Phrase table $TABLE not found" unless -r $TABLE; } - die "Not executable: $__TMCOMBINE" unless -x $__TMCOMBINE; - die "To use phrase-weighting, need to specify a filter and binarisation command" unless $filtercmd =~ /Binarizer/; + die "To use promix training, need to specify a filter and binarisation command" unless $filtercmd =~ /Binarizer/; } $mertargs = "" if !defined $mertargs; @@ -519,25 +516,23 @@ my $prev_score_file = undef; my $prev_init_file = undef; my @allnbests; -# If we're training mixture models, need to make sure the appropriate +# If we're doing promix training, need to make sure the appropriate # tables are in place my @_PROMIX_TABLES_BIN; if ($__PROMIX_TRAINING) { - print STDERR "Training mixture model\n"; + print STDERR "Training mixture model using promix\n"; for (my $i = 0; $i < scalar(@__PROMIX_TABLES); ++$i) { # Create filtered, binarised tables my $filtered_config = "moses_$i.ini"; substitute_ttable($___CONFIG, $filtered_config, $__PROMIX_TABLES[$i]); + #TODO: Remove reordering table from config, as we don't need to filter + # and binarise it. my $filtered_path = "filtered_$i"; my $___FILTER_F = $___DEV_F; $___FILTER_F = $filterfile if (defined $filterfile); my $cmd = "$filtercmd ./$filtered_path $filtered_config $___FILTER_F"; &submit_or_exec($cmd, "filterphrases_$i.out", "filterphrases_$i.err"); push (@_PROMIX_TABLES_BIN,"$filtered_path/phrase-table.0-0.1.1"); - - # Create directory structure for the text phrase tables required by tmcombine - mkpath("model_$i/model") || die "Failed to create model_$i/model"; - safesystem("ln -s ../../$filtered_path/phrase-table.0-0.1.1 model_$i/model/phrase-table"); } } @@ -698,6 +693,8 @@ my $orig_nbest_file = undef; # replaced if lattice sampling # For mixture modelling my @promix_weights; my $num_mixed_phrase_features; +my $interpolated_config; +my $uninterpolated_config; # backup of config without interpolated ttable while (1) { $run++; @@ -708,22 +705,23 @@ while (1) { print "run $run start at ".`date`; if ($__PROMIX_TRAINING) { - # Need to interpolate the phrase tables with current weights, and binarise + # Need to create an ini file for the interpolated phrase table if (!@promix_weights) { + # Create initial weights, distributing evenly between tables # total number of weights is 1 less than number of phrase features, multiplied # by the number of tables $num_mixed_phrase_features = (grep { $_ eq 'tm' } @{$featlist->{"names"}}) - 1; @promix_weights = (1.0/scalar(@__PROMIX_TABLES)) x ($num_mixed_phrase_features * scalar(@__PROMIX_TABLES)); - } + } + + # backup orig config, so we always add the table into it + $uninterpolated_config= $___CONFIG unless $uninterpolated_config; - # make a backup copy of startup ini filepath - $___CONFIG_ORIG = $___CONFIG unless defined($___CONFIG_ORIG); # Interpolation - my $interpolated_phrase_table = "./phrase-table.interpolated.gz"; - my $cmd = "$__TMCOMBINE combine_given_weights "; - $cmd .= join(" ", map {"model_$_"} (0..(scalar(@__PROMIX_TABLES)-1))); + my $interpolated_phrase_table = "naive "; + $interpolated_phrase_table .= join(" ", @_PROMIX_TABLES_BIN); # convert from table,feature ordering to feature,table ordering my @transposed_weights; for my $feature (0..($num_mixed_phrase_features-1)) { @@ -733,27 +731,15 @@ while (1) { } push @transposed_weights, join ",", @table_weights; } - - $cmd .= " -w \"" . join(";",@transposed_weights) . "\""; - $cmd .= " -o $interpolated_phrase_table"; - &submit_or_exec($cmd, "interpolate.out", "interpolate.err"); - print "finished interpolation at ".`date`; + $interpolated_phrase_table .= " "; + $interpolated_phrase_table .= join(";",@transposed_weights); # Create an ini file for the interpolated phrase table - my $interpolated_config ="moses.interpolated.ini"; - substitute_ttable($___CONFIG_ORIG, $interpolated_config, $interpolated_phrase_table); + $interpolated_config ="moses.interpolated.ini"; + substitute_ttable($uninterpolated_config, $interpolated_config, $interpolated_phrase_table, "13"); - # Filter and binarise - print STDERR "filtering the interpolated phrase table\n"; - my $___FILTER_F = $___DEV_F; - my $outdir = "filtered"; - safesystem("rm -rf $outdir"); - $___FILTER_F = $filterfile if (defined $filterfile); - $cmd = "$filtercmd ./$outdir $interpolated_config $___FILTER_F"; - &submit_or_exec($cmd, "filterphrases.out", "filterphrases.err"); - - # the decoder should now use the filtered model - $___CONFIG = "$outdir/moses.ini"; + # the decoder should now use the interpolated model + $___CONFIG = "$interpolated_config"; } @@ -964,6 +950,9 @@ while (1) { safesystem("\\cp -f $mert_logfile run$run.$mert_logfile") or die; safesystem("touch $mert_logfile run$run.$mert_logfile") or die; safesystem("\\cp -f $weights_out_file run$run.$weights_out_file") or die; # this one is needed for restarts, too + if ($__PROMIX_TRAINING) { + safesystem("\\cp -f $interpolated_config run$run.$interpolated_config") or die; + } print "run $run end at ".`date`; @@ -1488,7 +1477,8 @@ sub create_config { # Create a new ini file, with the first ttable replaced by the given one # and its type set to text sub substitute_ttable { - my ($old_ini, $new_ini, $new_ttable) = @_; + my ($old_ini, $new_ini, $new_ttable, $ttable_type) = @_; + $ttable_type = "0" unless defined($ttable_type); open(NEW_INI,">$new_ini") || die "Failed to create $new_ini"; open(INI,$old_ini) || die "Failed to open $old_ini"; while() { @@ -1497,7 +1487,7 @@ sub substitute_ttable { my $ttable_config = ; chomp $ttable_config; my @ttable_fields = split /\s+/, $ttable_config; - $ttable_fields[0] = "0"; + $ttable_fields[0] = $ttable_type; $ttable_fields[4] = $new_ttable; print NEW_INI join(" ", @ttable_fields) . "\n"; } else { From 74e313e67c71ed94629491e21e99b28ac9ba4395 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Fri, 22 Mar 2013 10:35:19 +0000 Subject: [PATCH 13/28] remove restriction to 2 tables --- contrib/promix/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/promix/main.py b/contrib/promix/main.py index 8ab62cb17..fe6305335 100755 --- a/contrib/promix/main.py +++ b/contrib/promix/main.py @@ -64,8 +64,8 @@ class Config: if self.trainer == "mix": if not self.input_file or not self.ttables: self.parser.error("Need to specify input file and ttables for mix training") - if len(self.ttables) != 2: - self.parser.error("Can only train mix model with 2 ttables at the moment") + #if len(self.ttables) != 2: + # self.parser.error("Can only train mix model with 2 ttables at the moment") def main(): config = Config() From c5965b8587b37986ebab786905a8ef9f218403de Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Wed, 3 Apr 2013 16:13:01 +0100 Subject: [PATCH 14/28] Correction to calc. of lambda-gradient when more than 2 ttables --- contrib/promix/train.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/contrib/promix/train.py b/contrib/promix/train.py index cef801053..6d7f579ea 100755 --- a/contrib/promix/train.py +++ b/contrib/promix/train.py @@ -269,6 +269,7 @@ class MixtureModelTrainer: # TODO: Better vectorisation grad_list = [] for i, sample in enumerate(interpolated): + print>>sys.stderr,interp, sample[0],sample[1] f_A = np.sum(np.log(sample[0]), axis=0) f_B = np.sum(np.log(sample[1]), axis=0) grad_list.append(f_A - f_B) @@ -312,7 +313,9 @@ class MixtureModelTrainer: #print "hyp0",np.sum(phrase * (df_by_dlambda(sample[0])), axis=0) #print "q1", df_by_dlambda(sample[1]) #print "hyp1",np.sum(phrase * (df_by_dlambda(sample[1])), axis=0),"\n" - grad_list[k] = np.sum(phrase * (df_by_dlambda(sample[0]) - df_by_dlambda(sample[1])), axis = 0).flatten() + #TODO: Check if the sum is required here. With 4 ttables and 4 features + # it gives lhs as (12) and rhs as (4) + grad_list[k] = (phrase * (df_by_dlambda(sample[0]) - df_by_dlambda(sample[1]))).flatten() #grad_list = np.vstack(grad_list) return grad_list From c6e36f4dd7716b6ebc0ab0f6c895181ece6dbc92 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Fri, 12 Apr 2013 16:29:52 +0100 Subject: [PATCH 15/28] Fix compile error --- moses-cmd/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moses-cmd/Main.cpp b/moses-cmd/Main.cpp index b08ba532a..5d93e3a65 100644 --- a/moses-cmd/Main.cpp +++ b/moses-cmd/Main.cpp @@ -197,7 +197,7 @@ public: string nbestFile = staticData.GetNBestFilePath(); if ( ! nbestFile.empty() && nbestFile!="-" && !boost::starts_with(nbestFile,"/dev/stdout") ) { boost::filesystem::path nbestPath(nbestFile); - hypergraphDir = nbestPath.parent_path().filename().native(); + //hypergraphDir = nbestPath.parent_path().filename().native(); } else { stringstream hypergraphDirName; hypergraphDirName << boost::filesystem::current_path() << "/hypergraph"; From 15d7feb18877ae5bda83c37d3e85e88c6a53ed0c Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Fri, 12 Apr 2013 17:03:39 +0100 Subject: [PATCH 16/28] Fix compilation of compact query --- misc/queryPhraseTableMin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/queryPhraseTableMin.cpp b/misc/queryPhraseTableMin.cpp index f2c6c6125..98e8a9787 100644 --- a/misc/queryPhraseTableMin.cpp +++ b/misc/queryPhraseTableMin.cpp @@ -60,7 +60,7 @@ int main(int argc, char **argv) StaticData::InstanceNonConst().LoadData(parameter); SparsePhraseDictionaryFeature *spdf = NULL; - PhraseDictionaryFeature pdf(Compact, spdf, nscores, nscores, input, output, ttable, weight, 0, 0, "", ""); + PhraseDictionaryFeature pdf(Compact, spdf, nscores, nscores, input, output, ttable, weight, 0, 0, std::vector()); PhraseDictionaryCompact pdc(nscores, Compact, &pdf, false, useAlignments); bool ret = pdc.Load(input, output, ttable, weight, 0, lmList, 0); assert(ret); From ac298f8931ea3c94f740b310ae6308460e05b84f Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Fri, 12 Apr 2013 18:00:22 +0100 Subject: [PATCH 17/28] Remove debug, update python interface --- contrib/promix/nbest.py | 2 +- contrib/promix/train.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/contrib/promix/nbest.py b/contrib/promix/nbest.py index b376c446c..84cc1d2dc 100644 --- a/contrib/promix/nbest.py +++ b/contrib/promix/nbest.py @@ -166,7 +166,7 @@ class PhraseCache: class CachedPhraseTable: def __init__(self,ttable_file,nscores=5,cache_size=20000): wa = False - if binpt.PhraseDictionaryTree.isValidBinaryTable(ttable_file,True): + if binpt.PhraseDictionaryTree.canLoad(ttable_file,True): # assume word alignment is included wa = True self.ttable = binpt.PhraseDictionaryTree(ttable_file,nscores,wa) diff --git a/contrib/promix/train.py b/contrib/promix/train.py index 6d7f579ea..2a0391db6 100755 --- a/contrib/promix/train.py +++ b/contrib/promix/train.py @@ -269,7 +269,6 @@ class MixtureModelTrainer: # TODO: Better vectorisation grad_list = [] for i, sample in enumerate(interpolated): - print>>sys.stderr,interp, sample[0],sample[1] f_A = np.sum(np.log(sample[0]), axis=0) f_B = np.sum(np.log(sample[1]), axis=0) grad_list.append(f_A - f_B) From 1d213bdd34f1172e835d11c5af526c3429d16c62 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Fri, 12 Apr 2013 18:00:48 +0100 Subject: [PATCH 18/28] No longer required --- contrib/promix/test_moses.py | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100755 contrib/promix/test_moses.py diff --git a/contrib/promix/test_moses.py b/contrib/promix/test_moses.py deleted file mode 100755 index 4cf0ad4f8..000000000 --- a/contrib/promix/test_moses.py +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env python - -import math -import unittest - -from moses import * - -class TestMoses(unittest.TestCase): - - def setUp(self): - self.ttable = PhraseTable("data/esen.ep.model.unfiltered/phrase-table",5,True) - - def test_hw(self): - self.assertEqual(greet(), "hello, world") - - def test_get_translations(self): - translations = self.ttable.get_translations("lados") - self.assertEqual(len(translations),61) - self.assertEqual(translations[0][1], [0.00015135499415919185, 0.00063730002148076892, 0.0018050499493256211, 0.011290299706161022, 2.7179999351501465]) - - def test_get_translation_probability(self): - fv = self.ttable.get_translation_probability("en ambos", "on both") - expected_fv = [0.0908379,0.0213197,0.187399,0.0498198,2.718] - for i in range(5): - self.assertAlmostEqual(fv[i], expected_fv[i], 4) - fv = self.ttable.get_translation_probability("kljhdklj!", "hkhdkj") - for i in range(5): - self.assertEqual(fv[i], 0) - - -if __name__ == "__main__": - unittest.main() - -suite = unittest.TestLoader().loadTestsFromTestCase(TestMoses) - From 9e72bd0d415ad1faa88406c1cee2daca133bd290 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Mon, 15 Apr 2013 07:25:31 +0100 Subject: [PATCH 19/28] Update for change of python interface --- contrib/promix/nbest.py | 6 +++--- contrib/promix/test_nbest.py | 7 +------ 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/contrib/promix/nbest.py b/contrib/promix/nbest.py index 84cc1d2dc..0ce2e6d8b 100644 --- a/contrib/promix/nbest.py +++ b/contrib/promix/nbest.py @@ -169,7 +169,7 @@ class CachedPhraseTable: if binpt.PhraseDictionaryTree.canLoad(ttable_file,True): # assume word alignment is included wa = True - self.ttable = binpt.PhraseDictionaryTree(ttable_file,nscores,wa) + self.ttable = binpt.PhraseDictionaryTree(ttable_file,nscores = nscores,wa = wa) self.cache = PhraseCache(cache_size) self.nscores = nscores @@ -181,10 +181,10 @@ class CachedPhraseTable: if not scores: # cache miss scores = [0] * (self.nscores-1) # ignore penalty - entries = self.ttable.query(source) + entries = self.ttable.query(source, converter=None) # find correct target for entry in entries: - if entry.words == target_tuple: + if entry.rhs == target_tuple: scores = entry.scores[:-1] break #print "QUERY",source,"|||",target,"|||",scores diff --git a/contrib/promix/test_nbest.py b/contrib/promix/test_nbest.py index f4401c91b..375007a7c 100755 --- a/contrib/promix/test_nbest.py +++ b/contrib/promix/test_nbest.py @@ -73,12 +73,7 @@ class TestMosesPhraseScorer(unittest.TestCase): [0.62585,0.00702384,0.836364,0.0687874]]\ ]) - for i in range(2): - self.assertEqual(len(hyp0.phrase_scores[i]),4) - for j in range(4): - self.assertEqual(len(hyp0.phrase_scores[i][j]),4) - for k in range(4): - self.assertAlmostEqual(hyp0.phrase_scores[i][j][k], expected[i][j][k], places =5) + nptest.assert_almost_equal(hyp0.phrase_scores, expected) # These are the interpolation weights reported by tmcombine weights = np.array([[0.54471993730312251, 0.45528006269687754],\ From 875a194dae1dfa6fdcd4a7f0a9c9dbb8ca338927 Mon Sep 17 00:00:00 2001 From: Kenneth Heafield Date: Wed, 17 Apr 2013 13:46:01 +0100 Subject: [PATCH 20/28] Attempt to reduce moses-support e-mails --- jam-files/boost-build/build-system.jam | 7 ------- jam-files/sanity.jam | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/jam-files/boost-build/build-system.jam b/jam-files/boost-build/build-system.jam index 9f9c884cc..87e1df633 100644 --- a/jam-files/boost-build/build-system.jam +++ b/jam-files/boost-build/build-system.jam @@ -596,13 +596,6 @@ local rule should-clean-project ( project ) } } - ECHO "warning: No toolsets are configured." ; - ECHO "warning: Configuring default toolset" \"$(default-toolset)\". ; - ECHO "warning: If the default is wrong, your build may not work correctly." ; - ECHO "warning: Use the \"toolset=xxxxx\" option to override our guess." ; - ECHO "warning: For more configuration options, please consult" ; - ECHO "warning: http://boost.org/boost-build2/doc/html/bbv2/advanced/configuration.html" ; - toolset.using $(default-toolset) : $(default-toolset-version) ; } diff --git a/jam-files/sanity.jam b/jam-files/sanity.jam index 7f9c45d83..672502ba0 100644 --- a/jam-files/sanity.jam +++ b/jam-files/sanity.jam @@ -265,6 +265,26 @@ rule add-post-hook ( names * ) { post-hooks += $(names) ; } +rule failure-message ( ok ? ) { + if $(ok) != "ok" { + local args = [ modules.peek : ARGV ] ; + local args = $(args:J=" ") ; + if --debug-configuration in [ modules.peek : ARGV ] { + echo "The build failed with command line: " ; + echo " $(args)" ; + echo "If you need support, attach the full output to your e-mail." ; + } else { + echo "The build failed. If you need support, run:" ; + echo " $(args) --debug-configuration -d2 >build.log" ; + echo "then attach build.log to your e-mail." ; + } + echo "ERROR" ; + } else { + echo "SUCCESS" ; + } +} +add-post-hook failure-message ; + import feature : feature ; feature options-to-write : : free ; import toolset : flags ; From 8b1b877de7613b17c14e05535ae6fc239d725c40 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Wed, 17 Apr 2013 21:34:20 +0100 Subject: [PATCH 21/28] Load all options. Use relative path. --- contrib/promix/nbest.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/contrib/promix/nbest.py b/contrib/promix/nbest.py index 0ce2e6d8b..d5a6fc90d 100644 --- a/contrib/promix/nbest.py +++ b/contrib/promix/nbest.py @@ -1,13 +1,15 @@ #!/usr/bin/env python import gzip +import os import re import numpy as np import sys from bleu import BleuScorer from coll import OrderedDict -sys.path.append("/home/bhaddow/code/mixture-models/moses/contrib/python") +# Edit to set moses python path +sys.path.append(os.path.dirname(__file__) + "/../python") import moses.dictree as binpt class DataFormatException(Exception): @@ -169,7 +171,7 @@ class CachedPhraseTable: if binpt.PhraseDictionaryTree.canLoad(ttable_file,True): # assume word alignment is included wa = True - self.ttable = binpt.PhraseDictionaryTree(ttable_file,nscores = nscores,wa = wa) + self.ttable = binpt.PhraseDictionaryTree(ttable_file,nscores = nscores,wa = wa, tableLimit=0) self.cache = PhraseCache(cache_size) self.nscores = nscores From e6cabf802db13a53e89334c2a3fde1b280fd6451 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Wed, 17 Apr 2013 21:35:32 +0100 Subject: [PATCH 22/28] remove absolute path default --- contrib/promix/test_main.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/contrib/promix/test_main.py b/contrib/promix/test_main.py index dec02cbc0..8a0d6d642 100755 --- a/contrib/promix/test_main.py +++ b/contrib/promix/test_main.py @@ -16,10 +16,6 @@ class TestConfig(unittest.TestCase): self.assertEqual(self.config.nbest_files, nbests) self.assertEqual(self.config.score_files, scores) - def test_moses_bin_dir(self): - self.config.parse([]) - self.assertEqual(self.config.moses_bin_dir, "/home/bhaddow/moses/bin") - if __name__ == "__main__": unittest.main() From 13d21428ed47f34af73fe53d28ba049aaa7e0edb Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Wed, 17 Apr 2013 21:57:09 +0100 Subject: [PATCH 23/28] stub out README --- contrib/promix/README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 contrib/promix/README.md diff --git a/contrib/promix/README.md b/contrib/promix/README.md new file mode 100644 index 000000000..a86ae6d85 --- /dev/null +++ b/contrib/promix/README.md @@ -0,0 +1,29 @@ +promix - for training translation model interpolation weights using PRO + +Author: Barry Haddow + +ABOUT +----- + +The code here provides the "inner loop" for a batch tuning algorithm (like MERT) which +optimises phrase table interpolation weights at the same time as the standard linear +model weights. Interpolation of the phrase tables uses the "naive" method of tmcombine. + +Currently it only works on interpolations of two phrase tables. + + +REQUIREMENTS +------------ +The scripts require the Moses Python interface (in contrib/python) +They also require scipy and numpy. They have been tested with the following versions: + Python 2.7 + Scipy 0.11.0 + Numpy 1.6.2 + + +USAGE +----- + + +REFERENCES +---------- From 2ba633c5f82a717e78a6c8cc54b83ffaa64c63d6 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Thu, 18 Apr 2013 07:51:06 +0100 Subject: [PATCH 24/28] Create small binarised models for testing --- .../phrase-table.0-0.1.1 | 134446 +++++++++++++++ .../phrase-table.0-0.1.1.binphr.idx | Bin 0 -> 68 bytes .../phrase-table.0-0.1.1.binphr.srctree.wa | Bin 0 -> 672 bytes .../phrase-table.0-0.1.1.binphr.srcvoc | 8 + .../phrase-table.0-0.1.1.binphr.tgtdata.wa | Bin 0 -> 6739354 bytes .../phrase-table.0-0.1.1.binphr.tgtvoc | 10713 ++ .../phrase-table.0-0.1.1 | 15117 ++ .../phrase-table.0-0.1.1.binphr.idx | Bin 0 -> 76 bytes .../phrase-table.0-0.1.1.binphr.srctree.wa | Bin 0 -> 728 bytes .../phrase-table.0-0.1.1.binphr.srcvoc | 9 + .../phrase-table.0-0.1.1.binphr.tgtdata.wa | Bin 0 -> 720173 bytes .../phrase-table.0-0.1.1.binphr.tgtvoc | 4432 + contrib/promix/test_nbest.py | 4 +- 13 files changed, 164727 insertions(+), 2 deletions(-) create mode 100644 contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1 create mode 100644 contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1.binphr.idx create mode 100644 contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1.binphr.srctree.wa create mode 100644 contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1.binphr.srcvoc create mode 100644 contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1.binphr.tgtdata.wa create mode 100644 contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1.binphr.tgtvoc create mode 100644 contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1 create mode 100644 contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.idx create mode 100644 contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.srctree.wa create mode 100644 contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.srcvoc create mode 100644 contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.tgtdata.wa create mode 100644 contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.tgtvoc diff --git a/contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1 b/contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1 new file mode 100644 index 000000000..0845c64e7 --- /dev/null +++ b/contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1 @@ -0,0 +1,134446 @@ +Atlántico ||| 1995 ||| 0.000385505 0.0004801 0.00123305 0.0010395 2.718 ||| 0-0 ||| 2594 811 +Atlántico ||| Atlantic ' ||| 0.25 0.621399 0.00123305 0.00323495 2.718 ||| 0-0 ||| 4 811 +Atlántico ||| Atlantic , is ||| 1 0.621399 0.00123305 0.00352 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic , we ||| 1 0.621399 0.00123305 0.00127501 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic , ||| 0.134021 0.621399 0.0160296 0.112313 2.718 ||| 0-0 ||| 97 811 +Atlántico ||| Atlantic Alliance ||| 0.0149254 0.621399 0.00123305 2.77827e-05 2.718 ||| 0-0 ||| 67 811 +Atlántico ||| Atlantic Ocean ||| 0.15 0.3213 0.00739827 0.00587393 2.718 ||| 0-0 0-1 ||| 40 811 +Atlántico ||| Atlantic Ridge ||| 1 0.621399 0.00123305 3.76715e-07 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic Treaty ||| 1 0.621399 0.00123305 8.0617e-05 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic about ||| 1 0.621399 0.00123305 0.00133197 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic and they ||| 1 0.621399 0.00123305 3.85046e-05 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic and ||| 0.0222222 0.621399 0.00246609 0.0117967 2.718 ||| 0-0 ||| 90 811 +Atlántico ||| Atlantic coast ||| 0.03125 0.621399 0.00123305 4.04969e-06 2.718 ||| 0-0 ||| 32 811 +Atlántico ||| Atlantic come together ||| 1 0.621399 0.00123305 4.80396e-07 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic come ||| 1 0.621399 0.00123305 0.00079986 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic fisheries ||| 0.428571 0.621399 0.00369914 2.4769e-05 2.718 ||| 0-0 ||| 7 811 +Atlántico ||| Atlantic have ||| 0.166667 0.621399 0.00123305 0.0112636 2.718 ||| 0-0 ||| 6 811 +Atlántico ||| Atlantic in ||| 0.166667 0.621399 0.00123305 0.0201585 2.718 ||| 0-0 ||| 6 811 +Atlántico ||| Atlantic really ||| 1 0.621399 0.00123305 0.000456202 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic that ||| 0.333333 0.621399 0.00123305 0.0158424 2.718 ||| 0-0 ||| 3 811 +Atlántico ||| Atlantic to be ||| 0.5 0.621399 0.00123305 0.00151663 2.718 ||| 0-0 ||| 2 811 +Atlántico ||| Atlantic to ||| 0.181818 0.621399 0.00493218 0.0836856 2.718 ||| 0-0 ||| 22 811 +Atlántico ||| Atlantic we ||| 1 0.621399 0.00123305 0.0106915 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic with the aim ||| 1 0.621399 0.00123305 5.08362e-08 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic with the ||| 1 0.621399 0.00123305 0.000369718 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic with ||| 0.25 0.621399 0.00123305 0.00602226 2.718 ||| 0-0 ||| 4 811 +Atlántico ||| Atlantic yellow fin ||| 1 0.621399 0.00123305 1.50686e-13 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic yellow ||| 1 0.621399 0.00123305 3.76715e-07 2.718 ||| 0-0 ||| 1 811 +Atlántico ||| Atlantic ||| 0.621622 0.621399 0.907522 0.941788 2.718 ||| 0-0 ||| 1184 811 +Atlántico ||| East Atlantic ||| 0.1 0.621399 0.00123305 2.81595e-05 2.718 ||| 0-1 ||| 10 811 +Atlántico ||| North Atlantic ||| 0.0150376 0.310997 0.00246609 0.00293697 2.718 ||| 0-0 0-1 ||| 133 811 +Atlántico ||| ocean ||| 0.017341 0.0132743 0.00369914 0.0031185 2.718 ||| 0-0 ||| 173 811 +Atlántico ||| open Atlantic ||| 1 0.621399 0.00123305 0.000151816 2.718 ||| 0-1 ||| 1 811 +Atlántico ||| overseas ||| 0.0034904 0.0052265 0.00246609 0.0031185 2.718 ||| 0-0 ||| 573 811 +Atlántico ||| pond ||| 0.0384615 0.0294118 0.00123305 0.0010395 2.718 ||| 0-0 ||| 26 811 +Atlántico ||| the 1995 ||| 0.05 0.0004801 0.00123305 6.38168e-05 2.718 ||| 0-1 ||| 20 811 +Atlántico ||| the ||| 2.9579e-07 6e-07 0.00123305 0.002079 2.718 ||| 0-0 ||| 3.38078e+06 811 +Atlántico ||| third case ||| 0.166667 6.59e-05 0.00123305 1.11216e-06 2.718 ||| 0-0 ||| 6 811 +Atlántico ||| third ||| 6.64319e-05 6.59e-05 0.00123305 0.0010395 2.718 ||| 0-0 ||| 15053 811 +Atlántico ||| transatlantic ||| 0.00522952 0.0061576 0.0110974 0.010395 2.718 ||| 0-0 ||| 1721 811 +Atlántico ||| which the 1995 ||| 1 0.0004801 0.00123305 5.42098e-07 2.718 ||| 0-2 ||| 1 811 +a los políticos en ||| politicians in ||| 0.00645161 0.00547833 0.25 0.0444332 2.718 ||| 1-0 2-0 3-1 ||| 155 4 +a los políticos en ||| the politicians in ||| 0.025641 0.00385896 0.25 0.0190599 2.718 ||| 1-0 1-1 2-1 3-2 ||| 39 4 +a los políticos en ||| to politicians in ||| 0.5 0.0251215 0.25 0.015565 2.718 ||| 0-0 1-1 2-1 3-2 ||| 2 4 +a los políticos en ||| to the politicians in ||| 0.5 0.0102698 0.25 0.0132553 2.718 ||| 0-0 1-1 2-2 3-3 ||| 2 4 +a los políticos ||| - make it easier for politicians to ||| 0.5 0.0123309 0.00537634 2.56352e-15 2.718 ||| 0-4 1-5 2-5 ||| 2 186 +a los políticos ||| - make it easier for politicians ||| 0.5 0.0123309 0.00537634 2.88496e-14 2.718 ||| 0-4 1-5 2-5 ||| 2 186 +a los políticos ||| Czech politicians ||| 0.1 0.00904296 0.00537634 7.31282e-07 2.718 ||| 1-1 2-1 ||| 10 186 +a los políticos ||| as politicians ||| 0.011194 0.00439331 0.016129 0.000844092 2.718 ||| 0-0 1-1 2-1 ||| 268 186 +a los políticos ||| at - make it easier for politicians ||| 0.5 0.0123309 0.00537634 1.20805e-16 2.718 ||| 0-5 1-6 2-6 ||| 2 186 +a los políticos ||| back to the policymakers ||| 1 0.00905346 0.00537634 3.15857e-07 2.718 ||| 0-1 1-2 2-3 ||| 1 186 +a los políticos ||| back to the simple policy of ||| 1 0.000325185 0.00537634 1.18378e-11 2.718 ||| 0-1 1-2 2-4 ||| 1 186 +a los políticos ||| back to the simple policy ||| 1 0.000325185 0.00537634 2.17752e-10 2.718 ||| 0-1 1-2 2-4 ||| 1 186 +a los políticos ||| concern to politicians ||| 1 0.0414675 0.00537634 4.49982e-06 2.718 ||| 0-1 1-2 2-2 ||| 1 186 +a los políticos ||| easier for politicians to ||| 0.5 0.0123309 0.00537634 2.1991e-08 2.718 ||| 0-1 1-2 2-2 ||| 2 186 +a los políticos ||| easier for politicians ||| 0.5 0.0123309 0.00537634 2.47484e-07 2.718 ||| 0-1 1-2 2-2 ||| 2 186 +a los políticos ||| for all policymakers ||| 1 0.000391706 0.00537634 3.09582e-07 2.718 ||| 0-0 1-1 2-2 ||| 1 186 +a los políticos ||| for policy makers ||| 0.2 0.000956784 0.00537634 4.02889e-06 2.718 ||| 0-0 2-1 1-2 2-2 ||| 5 186 +a los políticos ||| for politicians to ||| 0.0833333 0.0123309 0.00537634 0.000315057 2.718 ||| 0-0 1-1 2-1 ||| 12 186 +a los políticos ||| for politicians ||| 0.0441176 0.0123309 0.016129 0.00354561 2.718 ||| 0-0 1-1 2-1 ||| 68 186 +a los políticos ||| for the policies ||| 0.0333333 1.28313e-05 0.00537634 3.49906e-05 2.718 ||| 0-0 1-1 2-2 ||| 30 186 +a los políticos ||| for the politicians ||| 0.2 0.00504098 0.0107527 0.00301947 2.718 ||| 0-0 1-1 2-2 ||| 10 186 +a los políticos ||| for those politicians ||| 0.5 0.0117361 0.00537634 0.000117536 2.718 ||| 0-0 1-1 2-2 ||| 2 186 +a los políticos ||| from the politicians ||| 1 0.0032131 0.00537634 0.000589889 2.718 ||| 0-0 1-1 2-2 ||| 1 186 +a los políticos ||| it easier for politicians to ||| 0.5 0.0123309 0.00537634 3.9107e-10 2.718 ||| 0-2 1-3 2-3 ||| 2 186 +a los políticos ||| it easier for politicians ||| 0.5 0.0123309 0.00537634 4.40105e-09 2.718 ||| 0-2 1-3 2-3 ||| 2 186 +a los políticos ||| make it easier for politicians to ||| 0.5 0.0123309 0.00537634 6.79601e-13 2.718 ||| 0-3 1-4 2-4 ||| 2 186 +a los políticos ||| make it easier for politicians ||| 0.5 0.0123309 0.00537634 7.64815e-12 2.718 ||| 0-3 1-4 2-4 ||| 2 186 +a los políticos ||| national politicians to ||| 0.25 0.0216338 0.00537634 1.44196e-05 2.718 ||| 1-0 1-1 2-1 0-2 ||| 4 186 +a los políticos ||| of politicians , ||| 0.025 0.00340094 0.00537634 0.000339409 2.718 ||| 0-0 1-1 2-1 ||| 40 186 +a los políticos ||| of politicians ||| 0.0378378 0.00340094 0.0376344 0.00284608 2.718 ||| 0-0 1-1 2-1 ||| 185 186 +a los políticos ||| on all politicians ||| 1 0.000840373 0.00537634 1.94815e-05 2.718 ||| 0-0 1-1 2-2 ||| 1 186 +a los políticos ||| on other politicians ||| 1 0.000181783 0.00537634 2.05736e-06 2.718 ||| 0-0 1-1 2-2 ||| 1 186 +a los políticos ||| on politicians ||| 0.0833333 0.0141285 0.00537634 0.00365021 2.718 ||| 0-0 1-1 2-1 ||| 12 186 +a los políticos ||| on the politicians ||| 0.5 0.00577585 0.00537634 0.00310855 2.718 ||| 0-0 1-1 2-2 ||| 2 186 +a los políticos ||| on the shoulders of politicians ||| 1 0.00290979 0.00537634 1.10014e-08 2.718 ||| 0-0 1-1 2-2 2-4 ||| 1 186 +a los políticos ||| opposition politicians ||| 0.0222222 7.72108e-05 0.00537634 1.73198e-07 2.718 ||| 0-0 1-1 2-1 ||| 45 186 +a los políticos ||| policy makers with ||| 0.25 0.000701663 0.00537634 6.99153e-07 2.718 ||| 2-0 1-1 2-1 ||| 4 186 +a los políticos ||| policy makers ||| 0.0116279 0.000701663 0.00537634 0.000109337 2.718 ||| 2-0 1-1 2-1 ||| 86 186 +a los políticos ||| policy reports ||| 0.2 5.0384e-05 0.00537634 4.90252e-05 2.718 ||| 2-0 1-1 ||| 5 186 +a los políticos ||| policymakers ||| 0.00934579 0.00422579 0.00537634 0.00158155 2.718 ||| 1-0 2-0 ||| 107 186 +a los políticos ||| politicians , ||| 0.00231481 0.00904296 0.00537634 0.0114748 2.718 ||| 1-0 2-0 ||| 432 186 +a los políticos ||| politicians do ||| 0.2 0.00904296 0.00537634 0.000330549 2.718 ||| 1-0 2-0 ||| 5 186 +a los políticos ||| politicians in ||| 0.00645161 0.0106032 0.00537634 0.00578122 2.718 ||| 1-0 2-0 0-1 ||| 155 186 +a los políticos ||| politicians of ||| 0.0357143 0.00904296 0.00537634 0.00523098 2.718 ||| 1-0 2-0 ||| 28 186 +a los políticos ||| politicians that ||| 0.1 0.00904296 0.00537634 0.0016186 2.718 ||| 1-0 2-0 ||| 10 186 +a los políticos ||| politicians to have ||| 0.333333 0.0414675 0.00537634 0.000403123 2.718 ||| 1-0 2-0 0-1 ||| 3 186 +a los políticos ||| politicians to ||| 0.0442478 0.0414675 0.0268817 0.0337065 2.718 ||| 1-0 2-0 0-1 ||| 113 186 +a los políticos ||| politicians very well ||| 0.5 0.00904296 0.00537634 5.30862e-07 2.718 ||| 1-0 2-0 ||| 2 186 +a los políticos ||| politicians very ||| 0.5 0.00904296 0.00537634 0.000334802 2.718 ||| 1-0 2-0 ||| 2 186 +a los políticos ||| politicians ||| 0.0163666 0.00904296 0.322581 0.0962213 2.718 ||| 1-0 2-0 ||| 3666 186 +a los políticos ||| politics ||| 0.000575374 1.08274e-05 0.0107527 0.00363685 2.718 ||| 1-0 2-0 ||| 3476 186 +a los políticos ||| the elected ||| 0.0232558 8.55372e-06 0.00537634 0.000167593 2.718 ||| 1-0 2-1 ||| 43 186 +a los políticos ||| the policy makers , ||| 0.5 7.09143e-05 0.00537634 9.18452e-09 2.718 ||| 1-0 2-1 ||| 2 186 +a los políticos ||| the policy makers ||| 0.166667 7.09143e-05 0.00537634 7.7016e-08 2.718 ||| 1-0 2-1 ||| 6 186 +a los políticos ||| the policy ||| 0.000407498 7.09143e-05 0.00537634 0.0213933 2.718 ||| 1-0 2-1 ||| 2454 186 +a los políticos ||| the political decision makers ||| 0.166667 1.20994e-05 0.00537634 8.22087e-11 2.718 ||| 0-0 1-0 2-1 ||| 6 186 +a los políticos ||| the political decision ||| 0.015625 1.20994e-05 0.00537634 2.28358e-05 2.718 ||| 0-0 1-0 2-1 ||| 64 186 +a los políticos ||| the political ||| 0.00138504 1.20994e-05 0.00537634 0.145173 2.718 ||| 0-0 1-0 2-1 ||| 722 186 +a los políticos ||| the politicians , ||| 0.0454545 0.00636989 0.0107527 0.00492221 2.718 ||| 1-0 1-1 2-1 ||| 44 186 +a los políticos ||| the politicians ||| 0.0351906 0.00636989 0.0645161 0.0412748 2.718 ||| 1-0 1-1 2-1 ||| 341 186 +a los políticos ||| those politicians ||| 0.05 0.00882483 0.00537634 0.00160667 2.718 ||| 1-0 1-1 2-1 ||| 20 186 +a los políticos ||| to decision-makers ||| 0.166667 0.00131739 0.00537634 0.000257875 2.718 ||| 0-0 1-1 2-1 ||| 6 186 +a los políticos ||| to politicians to ||| 0.5 0.0414675 0.00537634 0.0029951 2.718 ||| 0-0 1-1 2-1 ||| 2 186 +a los políticos ||| to politicians ||| 0.377778 0.0414675 0.0913979 0.0337065 2.718 ||| 0-0 1-1 2-1 ||| 45 186 +a los políticos ||| to the policymakers ||| 1 0.00905346 0.00537634 0.000469605 2.718 ||| 0-0 1-1 2-2 ||| 1 186 +a los políticos ||| to the political office-holders ||| 1 0.00597459 0.00537634 4.05387e-08 2.718 ||| 0-0 1-1 2-2 ||| 1 186 +a los políticos ||| to the political ||| 0.125 0.00597459 0.00537634 0.101347 2.718 ||| 0-0 1-1 2-2 ||| 8 186 +a los políticos ||| to the politicians to ||| 0.4 0.0169522 0.0107527 0.00255064 2.718 ||| 0-0 1-1 2-2 ||| 5 186 +a los políticos ||| to the politicians ||| 0.55 0.0169522 0.0591398 0.0287047 2.718 ||| 0-0 1-1 2-2 ||| 20 186 +a los políticos ||| to the simple policy of ||| 1 0.000325185 0.00537634 1.76001e-08 2.718 ||| 0-0 1-1 2-3 ||| 1 186 +a los políticos ||| to the simple policy ||| 1 0.000325185 0.00537634 3.23746e-07 2.718 ||| 0-0 1-1 2-3 ||| 1 186 +a los políticos ||| to those politicians ||| 1 0.039467 0.00537634 0.00111736 2.718 ||| 0-0 1-1 2-2 ||| 1 186 +a los políticos ||| towards politicians ||| 0.333333 0.0280599 0.00537634 0.000324516 2.718 ||| 0-0 1-1 2-1 ||| 3 186 +a los políticos ||| us politicians to ||| 0.25 0.0414675 0.00537634 9.71489e-05 2.718 ||| 1-1 2-1 0-2 ||| 4 186 +a los políticos ||| well as politicians ||| 1 0.00439331 0.00537634 1.33839e-06 2.718 ||| 0-1 1-2 2-2 ||| 1 186 +a los políticos ||| when politicians ||| 0.111111 0.00100087 0.00537634 2.98575e-05 2.718 ||| 0-0 1-1 2-1 ||| 9 186 +a los ||| ' Rights and the ||| 1 0.00019411 2.07417e-05 2.34261e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| ' concerns ||| 0.0104167 0.00565752 2.07417e-05 1.25453e-05 2.718 ||| 1-0 0-1 ||| 96 48212 +a los ||| ' in ' ||| 0.0909091 0.00261187 2.07417e-05 1.09776e-06 2.718 ||| 0-1 1-2 ||| 11 48212 +a los ||| ' interest ||| 0.0175439 0.00222754 2.07417e-05 5.97346e-07 2.718 ||| 1-0 ||| 57 48212 +a los ||| ' new ||| 0.00729927 0.00222754 2.07417e-05 3.17929e-06 2.718 ||| 1-0 ||| 137 48212 +a los ||| ' s corrupt administration ||| 0.25 0.00222754 2.07417e-05 6.54074e-16 2.718 ||| 1-0 ||| 4 48212 +a los ||| ' s corrupt ||| 0.25 0.00222754 2.07417e-05 3.23799e-11 2.718 ||| 1-0 ||| 4 48212 +a los ||| ' s members will be ||| 0.5 0.00774865 2.07417e-05 2.03397e-12 2.718 ||| 1-2 ||| 2 48212 +a los ||| ' s members will ||| 0.5 0.00774865 2.07417e-05 1.12232e-10 2.718 ||| 1-2 ||| 2 48212 +a los ||| ' s members ||| 0.25 0.00774865 2.07417e-05 1.2973e-08 2.718 ||| 1-2 ||| 4 48212 +a los ||| ' s ||| 0.000762311 0.00222754 0.000103709 1.01187e-05 2.718 ||| 1-0 ||| 6559 48212 +a los ||| ' to those ||| 0.5 0.0654285 2.07417e-05 2.00914e-05 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| ' ||| 0.000399432 0.00222754 0.000746702 0.0053192 2.718 ||| 1-0 ||| 90128 48212 +a los ||| 's being informed of the ||| 1 0.00230489 2.07417e-05 2.056e-12 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| 's court ||| 0.0140845 0.00290153 2.07417e-05 1.35227e-06 2.718 ||| 1-0 1-1 ||| 71 48212 +a los ||| 's officials ||| 0.0232558 0.0110761 2.07417e-05 1.49972e-06 2.718 ||| 1-1 ||| 43 48212 +a los ||| 's scope to cover the ||| 1 0.0281035 2.07417e-05 2.22823e-12 2.718 ||| 0-2 1-4 ||| 1 48212 +a los ||| 's share to the ||| 0.25 0.0281035 2.07417e-05 2.67848e-08 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| 's ||| 0.000778292 0.00175312 0.000767444 0.0061272 2.718 ||| 1-0 ||| 47540 48212 +a los ||| " the town ||| 0.2 0.00612862 2.07417e-05 1.27987e-09 2.718 ||| 1-1 ||| 5 48212 +a los ||| " the ||| 0.00507614 0.00612862 2.07417e-05 0.000101577 2.718 ||| 1-1 ||| 197 48212 +a los ||| , 000 to the ||| 1 0.0281035 2.07417e-05 1.87619e-06 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| , Democrat and Reform Party for the ||| 1 0.00835696 2.07417e-05 7.40241e-18 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| , I include the ||| 0.5 0.00343942 2.07417e-05 9.57804e-08 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| , against the ||| 0.00458716 0.006293 2.07417e-05 0.000132978 2.718 ||| 0-1 1-2 ||| 218 48212 +a los ||| , all those ||| 0.0104167 0.00111024 2.07417e-05 1.10137e-06 2.718 ||| 0-1 1-2 ||| 96 48212 +a los ||| , along with all ||| 0.0212766 0.00101702 2.07417e-05 9.3398e-10 2.718 ||| 0-2 1-3 ||| 47 48212 +a los ||| , among both ||| 0.25 0.000366047 2.07417e-05 7.00309e-09 2.718 ||| 0-2 ||| 4 48212 +a los ||| , and are subject to ||| 0.2 0.00409398 2.07417e-05 4.28571e-09 2.718 ||| 0-4 ||| 5 48212 +a los ||| , and in the absence of ||| 0.0714286 0.00718601 2.07417e-05 5.42072e-11 2.718 ||| 0-2 1-3 ||| 14 48212 +a los ||| , and in the absence ||| 0.0769231 0.00718601 2.07417e-05 9.97115e-10 2.718 ||| 0-2 1-3 ||| 13 48212 +a los ||| , and in the ||| 0.00300752 0.00718601 4.14834e-05 3.84986e-05 2.718 ||| 0-2 1-3 ||| 665 48212 +a los ||| , and the subjugation ||| 0.333333 0.00019411 2.07417e-05 1.08574e-10 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| , and the ||| 6.89608e-05 0.00019411 2.07417e-05 9.87037e-05 2.718 ||| 0-1 1-2 ||| 14501 48212 +a los ||| , and ||| 5.37308e-06 2.8277e-05 2.07417e-05 0.000230102 2.718 ||| 0-1 ||| 186113 48212 +a los ||| , are suffering from the ||| 1 0.0053267 2.07417e-05 2.47523e-10 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| , as a ||| 0.000259202 0.00043374 2.07417e-05 4.63714e-05 2.718 ||| 0-1 ||| 3858 48212 +a los ||| , as the ||| 0.000286287 0.00297745 2.07417e-05 0.000448753 2.718 ||| 0-1 1-2 ||| 3493 48212 +a los ||| , as well ||| 0.000131961 0.00043374 2.07417e-05 1.65878e-06 2.718 ||| 0-1 ||| 7578 48212 +a los ||| , as ||| 7.44679e-05 0.00043374 0.000103709 0.00104615 2.718 ||| 0-1 ||| 67143 48212 +a los ||| , at any ||| 0.00423729 0.00363674 2.07417e-05 3.74878e-06 2.718 ||| 0-1 1-2 ||| 236 48212 +a los ||| , at the ||| 0.000550257 0.0249683 6.22252e-05 0.00174108 2.718 ||| 0-1 1-2 ||| 5452 48212 +a los ||| , at ||| 0.000271838 0.00363727 6.22252e-05 0.00405888 2.718 ||| 0-1 ||| 11036 48212 +a los ||| , because the survivors need to be ||| 1 0.000636466 2.07417e-05 1.70833e-17 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| , because the survivors need to ||| 1 0.000636466 2.07417e-05 9.42634e-16 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| , because the survivors need ||| 1 0.000636466 2.07417e-05 1.06083e-14 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| , because the survivors ||| 1 0.000636466 2.07417e-05 1.15697e-11 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| , because the ||| 0.000346981 0.000636466 2.07417e-05 1.65282e-05 2.718 ||| 0-1 1-2 ||| 2882 48212 +a los ||| , behind all this , ||| 1 0.00164283 2.07417e-05 1.90314e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| , behind all this ||| 1 0.00164283 2.07417e-05 1.59586e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| , behind all ||| 0.333333 0.00164283 2.07417e-05 2.46984e-07 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| , both to the ||| 0.0243902 0.0281035 2.07417e-05 2.9684e-05 2.718 ||| 0-2 1-3 ||| 41 48212 +a los ||| , but economic and social ||| 1 1.50506e-06 2.07417e-05 1.58052e-15 2.718 ||| 0-1 1-4 ||| 1 48212 +a los ||| , by setting a charge for those ||| 1 0.0194561 2.07417e-05 8.17575e-17 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| , by the people of ||| 0.5 0.00357832 2.07417e-05 1.80192e-07 2.718 ||| 0-1 1-2 1-3 ||| 2 48212 +a los ||| , by the people ||| 0.0833333 0.00357832 2.07417e-05 3.31454e-06 2.718 ||| 0-1 1-2 1-3 ||| 12 48212 +a los ||| , by the use ||| 0.142857 0.00413296 2.07417e-05 2.04631e-07 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| , by the ||| 0.000851789 0.00413296 2.07417e-05 0.000420878 2.718 ||| 0-1 1-2 ||| 1174 48212 +a los ||| , by ||| 0.000119574 0.00060207 2.07417e-05 0.000981168 2.718 ||| 0-1 ||| 8363 48212 +a los ||| , combined ||| 0.00438596 0.000144258 2.07417e-05 5.84348e-07 2.718 ||| 1-1 ||| 228 48212 +a los ||| , compared with those ||| 0.142857 0.0162735 2.07417e-05 1.24334e-09 2.718 ||| 0-2 1-3 ||| 7 48212 +a los ||| , dating right back to the ||| 0.5 0.0281035 2.07417e-05 1.03379e-13 2.718 ||| 0-4 1-5 ||| 2 48212 +a los ||| , developed ||| 0.015625 0.000291223 2.07417e-05 3.94733e-06 2.718 ||| 1-1 ||| 64 48212 +a los ||| , due to ||| 0.00123305 0.00409398 2.07417e-05 1.15466e-05 2.718 ||| 0-2 ||| 811 48212 +a los ||| , either , the ||| 0.1 0.00612862 2.07417e-05 5.2818e-06 2.718 ||| 1-3 ||| 10 48212 +a los ||| , first to the problems ||| 1 0.0244172 2.07417e-05 4.23425e-09 2.718 ||| 0-2 1-4 ||| 1 48212 +a los ||| , for my part , ||| 0.00900901 0.0012174 2.07417e-05 4.01789e-10 2.718 ||| 0-1 ||| 111 48212 +a los ||| , for my part ||| 0.0075188 0.0012174 2.07417e-05 3.36917e-09 2.718 ||| 0-1 ||| 133 48212 +a los ||| , for my ||| 0.00588235 0.0012174 2.07417e-05 2.82601e-06 2.718 ||| 0-1 ||| 170 48212 +a los ||| , for the ||| 0.001 0.00835696 0.000103709 0.00188499 2.718 ||| 0-1 1-2 ||| 5000 48212 +a los ||| , for they are not in the ||| 1 0.00718601 2.07417e-05 3.99401e-12 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| , for those ||| 0.0288462 0.0194561 6.22252e-05 7.33752e-05 2.718 ||| 0-1 1-2 ||| 104 48212 +a los ||| , for ||| 5.18659e-05 0.0012174 4.14834e-05 0.00439436 2.718 ||| 0-1 ||| 38561 48212 +a los ||| , from the ||| 0.00138985 0.0053267 4.14834e-05 0.000368255 2.718 ||| 0-1 1-2 ||| 1439 48212 +a los ||| , help terrorism to ||| 0.5 0.00409398 2.07417e-05 2.06333e-10 2.718 ||| 0-3 ||| 2 48212 +a los ||| , hit the ||| 0.5 0.0148658 2.07417e-05 1.17657e-05 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| , however , of the ||| 0.0625 0.00230489 2.07417e-05 1.99877e-07 2.718 ||| 0-3 1-4 ||| 16 48212 +a los ||| , however , to ||| 0.00413223 0.00409398 2.07417e-05 5.51843e-06 2.718 ||| 0-3 ||| 242 48212 +a los ||| , in all ||| 0.00171821 0.00104555 2.07417e-05 1.9262e-05 2.718 ||| 0-1 1-2 ||| 582 48212 +a los ||| , in fact , disregarding the three ||| 1 0.00718601 2.07417e-05 1.22335e-16 2.718 ||| 0-1 1-5 ||| 1 48212 +a los ||| , in fact , disregarding the ||| 1 0.00718601 2.07417e-05 1.93263e-12 2.718 ||| 0-1 1-5 ||| 1 48212 +a los ||| , in fact , ||| 0.000405515 0.00104682 2.07417e-05 2.50301e-06 2.718 ||| 0-1 ||| 2466 48212 +a los ||| , in fact ||| 0.000356506 0.00104682 2.07417e-05 2.09888e-05 2.718 ||| 0-1 ||| 2805 48212 +a los ||| , in future , ||| 0.00199203 1.72938e-05 2.07417e-05 9.14287e-09 2.718 ||| 0-1 1-2 ||| 502 48212 +a los ||| , in future ||| 0.00171527 1.72938e-05 2.07417e-05 7.66668e-08 2.718 ||| 0-1 1-2 ||| 583 48212 +a los ||| , in other ||| 0.000811688 0.000226165 2.07417e-05 2.03418e-06 2.718 ||| 0-1 1-2 ||| 1232 48212 +a los ||| , in our opinion ||| 0.00333333 0.00145948 2.07417e-05 6.27914e-09 2.718 ||| 0-1 1-2 ||| 300 48212 +a los ||| , in our ||| 0.000884173 0.00145948 2.07417e-05 2.55874e-05 2.718 ||| 0-1 1-2 ||| 1131 48212 +a los ||| , in particular , as ||| 0.0212766 0.00043374 2.07417e-05 1.64336e-09 2.718 ||| 0-4 ||| 47 48212 +a los ||| , in particular , the ||| 0.00125471 0.00718601 2.07417e-05 2.25564e-07 2.718 ||| 0-1 1-4 ||| 797 48212 +a los ||| , in practice , produce the ||| 1 0.00718601 2.07417e-05 3.41898e-12 2.718 ||| 0-1 1-5 ||| 1 48212 +a los ||| , in that case , to the ||| 1 0.0281035 2.07417e-05 8.23231e-10 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| , in the case ||| 0.00166945 0.00718601 2.07417e-05 3.28836e-06 2.718 ||| 0-1 1-2 ||| 599 48212 +a los ||| , in the event of ||| 0.00543478 0.00718601 2.07417e-05 1.74441e-08 2.718 ||| 0-1 1-2 ||| 184 48212 +a los ||| , in the event ||| 0.0041841 0.00718601 2.07417e-05 3.20876e-07 2.718 ||| 0-1 1-2 ||| 239 48212 +a los ||| , in the form ||| 0.00361011 0.00718601 2.07417e-05 1.39907e-06 2.718 ||| 0-1 1-2 ||| 277 48212 +a los ||| , in the light of the ||| 0.00591716 0.00482943 2.07417e-05 7.57901e-10 2.718 ||| 0-1 1-2 1-4 1-5 ||| 169 48212 +a los ||| , in the meantime ||| 0.00917431 0.00718601 2.07417e-05 7.53013e-08 2.718 ||| 0-1 1-2 ||| 109 48212 +a los ||| , in the ||| 0.000970077 0.00718601 0.000269642 0.00307352 2.718 ||| 0-1 1-2 ||| 13401 48212 +a los ||| , in their countries ||| 0.2 0.00562478 2.07417e-05 6.92329e-08 2.718 ||| 0-1 1-3 ||| 5 48212 +a los ||| , in ||| 7.35637e-05 0.00104682 0.00012445 0.00716512 2.718 ||| 0-1 ||| 81562 48212 +a los ||| , indeed , in the ||| 0.142857 0.00718601 2.07417e-05 2.77795e-07 2.718 ||| 0-3 1-4 ||| 7 48212 +a los ||| , into the ||| 0.016129 0.0131557 4.14834e-05 0.000310731 2.718 ||| 0-1 1-2 ||| 124 48212 +a los ||| , involving the ||| 0.00806452 0.0125359 2.07417e-05 2.97415e-05 2.718 ||| 0-1 1-2 ||| 124 48212 +a los ||| , its legitimacy ||| 0.111111 0.0010593 2.07417e-05 1.93512e-09 2.718 ||| 1-1 ||| 9 48212 +a los ||| , its ||| 0.000958313 0.0010593 4.14834e-05 0.000254621 2.718 ||| 1-1 ||| 2087 48212 +a los ||| , just as ||| 0.000672947 0.00043374 2.07417e-05 1.31993e-06 2.718 ||| 0-2 ||| 1486 48212 +a los ||| , last but not least , the ||| 0.125 0.00612862 2.07417e-05 7.62856e-16 2.718 ||| 1-6 ||| 8 48212 +a los ||| , leave this task to the ||| 1 0.0281035 2.07417e-05 1.38596e-12 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| , meet the ||| 0.0588235 0.00589643 2.07417e-05 2.00784e-05 2.718 ||| 0-1 1-2 ||| 17 48212 +a los ||| , murdered in ||| 0.142857 0.00104682 2.07417e-05 3.36761e-08 2.718 ||| 0-2 ||| 7 48212 +a los ||| , namely the ||| 0.000609013 0.0196652 2.07417e-05 8.9506e-05 2.718 ||| 0-1 1-2 ||| 1642 48212 +a los ||| , national governments ||| 0.0285714 0.0137013 2.07417e-05 5.45466e-08 2.718 ||| 1-2 ||| 35 48212 +a los ||| , of all ||| 0.00564972 0.000335357 2.07417e-05 9.48264e-06 2.718 ||| 0-1 1-2 ||| 177 48212 +a los ||| , of course , ||| 9.76086e-05 0.000335766 2.07417e-05 5.30742e-07 2.718 ||| 0-1 ||| 10245 48212 +a los ||| , of course ||| 9.18611e-05 0.000335766 2.07417e-05 4.45049e-06 2.718 ||| 0-1 ||| 10886 48212 +a los ||| , of the other ||| 0.030303 0.00230489 2.07417e-05 1.96021e-06 2.718 ||| 0-1 1-2 ||| 33 48212 +a los ||| , of the ||| 0.00248242 0.00230489 0.00012445 0.00151309 2.718 ||| 0-1 1-2 ||| 2417 48212 +a los ||| , of ||| 0.000254065 0.000335766 6.22252e-05 0.00352738 2.718 ||| 0-1 ||| 11808 48212 +a los ||| , on behalf of the ||| 0.000178859 0.00957523 2.07417e-05 3.36013e-08 2.718 ||| 0-1 1-4 ||| 5591 48212 +a los ||| , on the ||| 0.000659506 0.00957523 0.000145192 0.0019406 2.718 ||| 0-1 1-2 ||| 10614 48212 +a los ||| , on ||| 3.31455e-05 0.00139487 2.07417e-05 0.004524 2.718 ||| 0-1 ||| 30170 48212 +a los ||| , only those ||| 0.0909091 0.0142682 2.07417e-05 2.21648e-06 2.718 ||| 1-2 ||| 11 48212 +a los ||| , partly on the ||| 0.25 0.00957523 2.07417e-05 6.55922e-08 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| , pitting the ||| 0.333333 0.0283886 2.07417e-05 6.08745e-07 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| , points ||| 0.0227273 0.00106901 2.07417e-05 3.59434e-05 2.718 ||| 1-1 ||| 44 48212 +a los ||| , rather than ||| 0.000411353 0.000431595 2.07417e-05 4.58967e-08 2.718 ||| 0-2 ||| 2431 48212 +a los ||| , reviewing the ||| 0.125 0.00488227 2.07417e-05 9.82177e-07 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| , serve the ||| 0.142857 0.0149399 2.07417e-05 2.2411e-05 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| , stock and barrel , to the ||| 1 0.0281035 2.07417e-05 1.78007e-15 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| , that has applied for ||| 0.5 0.0012174 2.07417e-05 4.12086e-11 2.718 ||| 0-4 ||| 2 48212 +a los ||| , that the ||| 0.000245158 0.000104203 2.07417e-05 3.49236e-05 2.718 ||| 0-1 1-2 ||| 4079 48212 +a los ||| , the Member States would have to ||| 1 0.0281035 2.07417e-05 3.09284e-13 2.718 ||| 1-1 0-6 ||| 1 48212 +a los ||| , the Structural ||| 0.25 0.00499184 2.07417e-05 2.45186e-05 2.718 ||| 1-1 1-2 ||| 4 48212 +a los ||| , the funds are still ||| 0.5 0.00612862 2.07417e-05 4.46053e-11 2.718 ||| 1-1 ||| 2 48212 +a los ||| , the funds are ||| 0.111111 0.00612862 2.07417e-05 5.9221e-08 2.718 ||| 1-1 ||| 9 48212 +a los ||| , the funds ||| 0.0135135 0.00612862 2.07417e-05 3.90313e-06 2.718 ||| 1-1 ||| 74 48212 +a los ||| , the rapporteur , for his commitment ||| 1 0.00835696 2.07417e-05 2.72522e-16 2.718 ||| 1-1 0-4 ||| 1 48212 +a los ||| , the rapporteur , for his ||| 0.111111 0.00835696 2.07417e-05 4.8839e-12 2.718 ||| 1-1 0-4 ||| 9 48212 +a los ||| , the rapporteur , for ||| 0.0243902 0.00835696 2.07417e-05 1.62526e-08 2.718 ||| 1-1 0-4 ||| 41 48212 +a los ||| , the section covering the ||| 1 0.00354081 2.07417e-05 3.23588e-12 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| , the speakers from ||| 1 0.0053267 2.07417e-05 7.43875e-09 2.718 ||| 1-1 0-3 ||| 1 48212 +a los ||| , the three ||| 0.00719424 0.00612862 2.07417e-05 3.23811e-06 2.718 ||| 1-1 ||| 139 48212 +a los ||| , the ||| 0.000333082 0.00612862 0.00116154 0.0511551 2.718 ||| 1-1 ||| 168127 48212 +a los ||| , then , to ||| 0.0217391 0.00409398 2.07417e-05 8.02282e-06 2.718 ||| 0-3 ||| 46 48212 +a los ||| , these are the ||| 0.0149254 0.000119917 2.07417e-05 1.75764e-08 2.718 ||| 0-2 1-3 ||| 67 48212 +a los ||| , these management ||| 0.5 0.00120459 2.07417e-05 1.2761e-08 2.718 ||| 1-1 ||| 2 48212 +a los ||| , these ||| 0.00030021 0.00120459 2.07417e-05 0.000290683 2.718 ||| 1-1 ||| 3331 48212 +a los ||| , those in ||| 0.0196078 0.01673 2.07417e-05 0.00011964 2.718 ||| 1-1 0-2 ||| 51 48212 +a los ||| , those ||| 0.00175747 0.0142682 6.22252e-05 0.00199127 2.718 ||| 1-1 ||| 1707 48212 +a los ||| , to a ||| 0.0017452 0.00409398 2.07417e-05 0.00185172 2.718 ||| 0-1 ||| 573 48212 +a los ||| , to both ||| 0.153846 0.00810255 4.14834e-05 5.00382e-05 2.718 ||| 0-1 1-2 ||| 13 48212 +a los ||| , to call on the ||| 0.0666667 0.00957523 2.07417e-05 3.82812e-08 2.718 ||| 0-3 1-4 ||| 15 48212 +a los ||| , to conduct hearings of the ||| 1 0.00230489 2.07417e-05 3.4746e-14 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| , to give the ||| 0.025641 0.0281035 2.07417e-05 1.08593e-05 2.718 ||| 0-1 1-3 ||| 39 48212 +a los ||| , to sing from the ||| 1 0.0053267 2.07417e-05 1.04712e-10 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| , to some of ||| 0.0666667 0.000477203 2.07417e-05 2.58447e-07 2.718 ||| 0-1 1-2 ||| 15 48212 +a los ||| , to some ||| 0.0045045 0.000477203 2.07417e-05 4.75401e-06 2.718 ||| 0-1 1-2 ||| 222 48212 +a los ||| , to suicide ||| 1 0.00596912 2.07417e-05 5.68142e-07 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| , to tackle those ||| 0.5 0.0654285 2.07417e-05 2.53209e-08 2.718 ||| 0-1 1-3 ||| 2 48212 +a los ||| , to tax ||| 0.333333 0.0140511 2.07417e-05 2.82274e-05 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| , to the ||| 0.011873 0.0281035 0.000829669 0.0179197 2.718 ||| 0-1 1-2 ||| 3369 48212 +a los ||| , to this ||| 0.00699301 0.00409398 2.07417e-05 0.000269926 2.718 ||| 0-1 ||| 143 48212 +a los ||| , to those ||| 0.0454545 0.0654285 8.29669e-05 0.000697544 2.718 ||| 0-1 1-2 ||| 88 48212 +a los ||| , to use the ||| 0.015625 0.0281035 2.07417e-05 8.71256e-06 2.718 ||| 0-1 1-3 ||| 64 48212 +a los ||| , to what are ||| 1 0.00140665 2.07417e-05 6.07664e-07 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| , to what ||| 0.0113636 0.00140665 2.07417e-05 4.00498e-05 2.718 ||| 0-1 1-2 ||| 88 48212 +a los ||| , to ||| 0.000609773 0.00409398 0.000456318 0.0417751 2.718 ||| 0-1 ||| 36079 48212 +a los ||| , up to the ||| 0.0344828 0.0281035 2.07417e-05 6.11151e-05 2.718 ||| 0-2 1-3 ||| 29 48212 +a los ||| , upon employing ||| 0.5 0.00339473 2.07417e-05 7.52354e-10 2.718 ||| 0-1 ||| 2 48212 +a los ||| , upon ||| 0.00549451 0.00339473 2.07417e-05 0.000235111 2.718 ||| 0-1 ||| 182 48212 +a los ||| , we reached ||| 0.0263158 0.00258078 2.07417e-05 1.66452e-06 2.718 ||| 0-2 ||| 38 48212 +a los ||| , where the ||| 0.000779423 0.000651251 2.07417e-05 1.25586e-05 2.718 ||| 0-1 1-2 ||| 1283 48212 +a los ||| , which will take place ||| 0.00909091 2.30395e-05 2.07417e-05 9.03487e-13 2.718 ||| 0-3 ||| 110 48212 +a los ||| , which will take ||| 0.00806452 2.30395e-05 2.07417e-05 6.00324e-10 2.718 ||| 0-3 ||| 124 48212 +a los ||| , will be replacing the ||| 1 0.00280721 2.07417e-05 1.17097e-10 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| , will the ||| 0.00819672 0.0068677 2.07417e-05 0.000720452 2.718 ||| 0-1 1-2 ||| 122 48212 +a los ||| , with considerable bias , to the ||| 1 0.0281035 2.07417e-05 1.53732e-15 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| , with the ||| 0.000476417 0.00698995 6.22252e-05 0.000854039 2.718 ||| 0-1 1-2 ||| 6297 48212 +a los ||| , with these ||| 0.0172414 0.00137389 2.07417e-05 4.85299e-06 2.718 ||| 0-1 1-2 ||| 58 48212 +a los ||| , with ||| 3.91834e-05 0.00101826 2.07417e-05 0.00199097 2.718 ||| 0-1 ||| 25521 48212 +a los ||| , ||| 1.31106e-06 2.12171e-06 6.22252e-05 0.0002665 2.718 ||| 0-0 ||| 2.28822e+06 48212 +a los ||| - of those ||| 0.0909091 0.0053661 2.07417e-05 1.863e-06 2.718 ||| 0-1 1-2 ||| 11 48212 +a los ||| - particularly those ||| 0.0588235 3.18016e-05 2.07417e-05 2.33045e-10 2.718 ||| 0-1 1-2 ||| 17 48212 +a los ||| - the ||| 0.000801925 0.00612862 8.29669e-05 0.00161807 2.718 ||| 1-1 ||| 4988 48212 +a los ||| - those ||| 0.00775194 0.0142682 2.07417e-05 6.2985e-05 2.718 ||| 1-1 ||| 129 48212 +a los ||| - to draw the ||| 1 0.0281035 2.07417e-05 6.71104e-08 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| - to host the ||| 1 0.0281035 2.07417e-05 1.09961e-08 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| - to include ||| 0.166667 0.00211737 2.07417e-05 1.22095e-07 2.718 ||| 0-1 1-2 ||| 6 48212 +a los ||| - to the ||| 0.0168067 0.0281035 4.14834e-05 0.000566811 2.718 ||| 0-1 1-2 ||| 119 48212 +a los ||| - to ||| 0.000581395 0.00409398 2.07417e-05 0.00132137 2.718 ||| 0-1 ||| 1720 48212 +a los ||| . conversely ||| 0.5 0.00198371 2.07417e-05 1.41151e-07 2.718 ||| 0-1 ||| 2 48212 +a los ||| . in the case of ||| 0.142857 0.00718601 2.07417e-05 4.54062e-09 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| . in the case ||| 0.05 0.00718601 2.07417e-05 8.35225e-08 2.718 ||| 0-1 1-2 ||| 20 48212 +a los ||| . in the ||| 0.00613497 0.00718601 2.07417e-05 7.80657e-05 2.718 ||| 0-1 1-2 ||| 163 48212 +a los ||| . through them ||| 0.5 0.0088172 2.07417e-05 4.8459e-08 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| 000 to the ||| 1 0.0281035 2.07417e-05 1.57326e-05 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| ; Who long to see ||| 0.5 0.00409398 2.07417e-05 2.82898e-17 2.718 ||| 0-3 ||| 2 48212 +a los ||| ; Who long to ||| 0.5 0.00409398 2.07417e-05 4.01502e-14 2.718 ||| 0-3 ||| 2 48212 +a los ||| ; it accelerated the proceedings ||| 0.333333 0.00612862 2.07417e-05 1.53516e-16 2.718 ||| 1-3 ||| 3 48212 +a los ||| ; it accelerated the ||| 0.333333 0.00612862 2.07417e-05 4.22908e-12 2.718 ||| 1-3 ||| 3 48212 +a los ||| ; not to eliminate the ||| 0.333333 0.0281035 2.07417e-05 1.8171e-12 2.718 ||| 0-2 1-4 ||| 3 48212 +a los ||| Belarusians ||| 0.00990099 0.0192753 2.07417e-05 5.83e-05 2.718 ||| 1-0 ||| 101 48212 +a los ||| Bordeaux as to ||| 0.5 0.00409398 2.07417e-05 1.42985e-09 2.718 ||| 0-2 ||| 2 48212 +a los ||| CAP , dating right back to the ||| 1 0.0281035 2.07417e-05 9.30409e-19 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| Commission representative present to hear the ||| 0.5 0.0281035 2.07417e-05 7.62966e-17 2.718 ||| 0-3 1-5 ||| 2 48212 +a los ||| Community ||| 3.01286e-05 3.67349e-05 2.07417e-05 2.04e-05 2.718 ||| 1-0 ||| 33191 48212 +a los ||| Consumer ||| 0.00207684 0.00135607 4.14834e-05 0.0001118 2.718 ||| 1-0 ||| 963 48212 +a los ||| Convention ' s members will be ||| 0.5 0.00774865 2.07417e-05 6.59007e-17 2.718 ||| 1-3 ||| 2 48212 +a los ||| Convention ' s members will ||| 0.5 0.00774865 2.07417e-05 3.63632e-15 2.718 ||| 1-3 ||| 2 48212 +a los ||| Convention ' s members ||| 0.5 0.00774865 2.07417e-05 4.20326e-13 2.718 ||| 1-3 ||| 2 48212 +a los ||| Council to be held ||| 0.0909091 0.00409398 2.07417e-05 5.60022e-10 2.718 ||| 0-1 ||| 11 48212 +a los ||| Council to be ||| 0.0126582 0.00409398 2.07417e-05 2.1953e-06 2.718 ||| 0-1 ||| 79 48212 +a los ||| Council to ||| 0.000356761 0.00409398 2.07417e-05 0.000121134 2.718 ||| 0-1 ||| 2803 48212 +a los ||| Democrat and Reform Party for the ||| 1 0.00835696 2.07417e-05 6.20723e-17 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| Democrats ||| 0.000506586 0.00298875 2.07417e-05 0.0004152 2.718 ||| 1-0 ||| 1974 48212 +a los ||| ECU ||| 0.000441696 0.00120363 2.07417e-05 9.92e-05 2.718 ||| 1-0 ||| 2264 48212 +a los ||| ESF resources are ||| 0.5 0.0110044 2.07417e-05 1.02974e-10 2.718 ||| 1-1 ||| 2 48212 +a los ||| ESF resources ||| 0.2 0.0110044 2.07417e-05 6.78678e-09 2.718 ||| 1-1 ||| 5 48212 +a los ||| EU Member ||| 0.000930233 0.00021645 2.07417e-05 2.78571e-07 2.718 ||| 1-0 ||| 1075 48212 +a los ||| EU vis-à-vis the ||| 1 0.029776 2.07417e-05 4.1643e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| EU ||| 2.95139e-05 0.00021645 6.22252e-05 0.0005406 2.718 ||| 1-0 ||| 101647 48212 +a los ||| EU ’ s ||| 0.00221239 0.00171175 2.07417e-05 1.3585e-09 2.718 ||| 1-2 ||| 452 48212 +a los ||| EUR ||| 0.000933184 0.000335206 0.000207417 0.00036155 2.718 ||| 0-0 1-0 ||| 10716 48212 +a los ||| European Council to be held ||| 0.0909091 0.00409398 2.07417e-05 1.87266e-12 2.718 ||| 0-2 ||| 11 48212 +a los ||| European Council to be ||| 0.05 0.00409398 2.07417e-05 7.34088e-09 2.718 ||| 0-2 ||| 20 48212 +a los ||| European Council to ||| 0.00598802 0.00409398 2.07417e-05 4.05061e-07 2.718 ||| 0-2 ||| 167 48212 +a los ||| European Union with the ||| 0.0140845 0.00698995 2.07417e-05 1.33482e-08 2.718 ||| 0-2 1-3 ||| 71 48212 +a los ||| European Union with ||| 0.00262467 0.000195302 2.07417e-05 1.0604e-08 2.718 ||| 1-0 0-2 ||| 381 48212 +a los ||| European level , at ||| 0.2 0.00363727 2.07417e-05 1.16099e-08 2.718 ||| 0-3 ||| 5 48212 +a los ||| European ||| 2.92375e-05 0.000171236 0.000103709 0.0011395 2.718 ||| 1-0 ||| 171013 48212 +a los ||| GMOs in the world , while ||| 1 0.00718601 2.07417e-05 7.04742e-16 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| GMOs in the world , ||| 1 0.00718601 2.07417e-05 3.7808e-12 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| GMOs in the world ||| 0.333333 0.00718601 2.07417e-05 3.17036e-11 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| GMOs in the ||| 0.0769231 0.00718601 2.07417e-05 1.39173e-07 2.718 ||| 0-1 1-2 ||| 13 48212 +a los ||| Goods ||| 0.0588235 0.00390625 2.07417e-05 2.4e-06 2.718 ||| 0-0 1-0 ||| 17 48212 +a los ||| Governments ||| 0.00261097 0.00640033 2.07417e-05 5.15e-05 2.718 ||| 1-0 ||| 383 48212 +a los ||| Group of the ||| 0.000343053 0.00230489 2.07417e-05 4.12737e-06 2.718 ||| 0-1 1-2 ||| 2915 48212 +a los ||| I address to the ||| 0.5 0.0281035 2.07417e-05 8.10987e-08 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| I also thank those ||| 0.2 0.0035919 2.07417e-05 3.47758e-10 2.718 ||| 0-2 1-3 ||| 5 48212 +a los ||| I am in agreement with the other ||| 0.5 0.00698995 2.07417e-05 3.30724e-16 2.718 ||| 0-4 1-5 ||| 2 48212 +a los ||| I am in agreement with the ||| 0.0263158 0.00698995 2.07417e-05 2.55286e-13 2.718 ||| 0-4 1-5 ||| 38 48212 +a los ||| I am to them ||| 0.5 0.00878293 2.07417e-05 6.37081e-09 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| I appeal to the ||| 0.00537634 0.0281035 2.07417e-05 3.20994e-08 2.718 ||| 0-2 1-3 ||| 186 48212 +a los ||| I can immediately reassure ||| 0.166667 0.00507564 2.07417e-05 2.32694e-13 2.718 ||| 0-3 ||| 6 48212 +a los ||| I include the ||| 0.0909091 0.00343942 2.07417e-05 8.03159e-07 2.718 ||| 0-1 1-2 ||| 11 48212 +a los ||| I participated in this process , and ||| 1 1.73878e-05 2.07417e-05 1.48215e-19 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| I participated in this process , ||| 1 1.73878e-05 2.07417e-05 1.18327e-17 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| I participated in this process ||| 1 1.73878e-05 2.07417e-05 9.92217e-17 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| I participated in this ||| 1 1.73878e-05 2.07417e-05 2.32097e-13 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| I refer to the ||| 0.0031348 0.0281035 2.07417e-05 8.30119e-08 2.718 ||| 0-2 1-3 ||| 319 48212 +a los ||| I thank the ||| 0.00143885 0.00154283 2.07417e-05 1.76956e-06 2.718 ||| 0-1 1-2 ||| 695 48212 +a los ||| I too would like to ||| 0.0026738 0.00409398 2.07417e-05 3.51475e-11 2.718 ||| 0-4 ||| 374 48212 +a los ||| I turn to my ||| 0.2 0.00198578 2.07417e-05 3.82931e-10 2.718 ||| 0-2 1-3 ||| 5 48212 +a los ||| I wish to thank the rapporteur for ||| 0.0454545 0.0281035 2.07417e-05 1.84152e-17 2.718 ||| 0-2 1-4 ||| 22 48212 +a los ||| I wish to thank the rapporteur ||| 0.0102041 0.0281035 2.07417e-05 2.39604e-15 2.718 ||| 0-2 1-4 ||| 98 48212 +a los ||| I wish to thank the ||| 0.00324675 0.0281035 2.07417e-05 3.31402e-11 2.718 ||| 0-2 1-4 ||| 308 48212 +a los ||| I would also like to extend my ||| 0.0833333 0.00198578 2.07417e-05 3.8824e-18 2.718 ||| 0-4 1-6 ||| 12 48212 +a los ||| I would also like to thank the ||| 0.00367647 0.0281035 2.07417e-05 5.91707e-15 2.718 ||| 0-4 1-6 ||| 272 48212 +a los ||| Internet ||| 0.000354359 2.32355e-05 2.07417e-05 5.5e-06 2.718 ||| 0-0 ||| 2822 48212 +a los ||| Kurdish people ||| 0.00862069 0.00448372 2.07417e-05 2.28384e-08 2.718 ||| 1-1 ||| 116 48212 +a los ||| Larrea for their ||| 1 0.00161764 2.07417e-05 3.37193e-11 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| MEPs as holding ||| 0.125 0.00764494 2.07417e-05 9.57644e-10 2.718 ||| 1-0 ||| 8 48212 +a los ||| MEPs as ||| 0.0526316 0.00764494 2.07417e-05 1.59342e-05 2.718 ||| 1-0 ||| 19 48212 +a los ||| MEPs ||| 0.000513611 0.00764494 4.14834e-05 0.0015615 2.718 ||| 1-0 ||| 3894 48212 +a los ||| Member State ||| 7.06964e-05 0.00368988 2.07417e-05 1.02704e-06 2.718 ||| 1-1 ||| 14145 48212 +a los ||| Member States ||| 1.04764e-05 0.00563452 2.07417e-05 3.12311e-06 2.718 ||| 1-0 1-1 ||| 95453 48212 +a los ||| Members of the ||| 0.00107009 0.00230489 4.14834e-05 1.87146e-06 2.718 ||| 0-1 1-2 ||| 1869 48212 +a los ||| Members ||| 0.000112039 0.0084635 4.14834e-05 0.0048244 2.718 ||| 1-0 ||| 17851 48212 +a los ||| Milosevic could ||| 0.0769231 4.35565e-05 2.07417e-05 1.27998e-09 2.718 ||| 0-0 ||| 13 48212 +a los ||| Milosevic ||| 0.0011919 4.35565e-05 2.07417e-05 1.8e-06 2.718 ||| 0-0 ||| 839 48212 +a los ||| Monday they announced they were going to ||| 0.5 0.00409398 2.07417e-05 2.63073e-22 2.718 ||| 0-6 ||| 2 48212 +a los ||| Mr Schulz and from other socialist and ||| 0.5 2.8277e-05 2.07417e-05 1.33638e-25 2.718 ||| 0-6 ||| 2 48212 +a los ||| NAMA ( ||| 0.25 0.00437056 2.07417e-05 1.40802e-08 2.718 ||| 1-0 ||| 4 48212 +a los ||| NAMA ||| 0.0192308 0.00437056 2.07417e-05 1.46e-05 2.718 ||| 1-0 ||| 52 48212 +a los ||| Parliament to the ||| 0.010101 0.0281035 2.07417e-05 8.62516e-05 2.718 ||| 0-1 1-2 ||| 99 48212 +a los ||| Party for the ||| 0.333333 0.00835696 2.07417e-05 2.3836e-06 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| Party to the ||| 0.5 0.0281035 2.07417e-05 2.26598e-05 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| President , the Structural ||| 0.5 0.00499184 2.07417e-05 3.5552e-09 2.718 ||| 1-2 1-3 ||| 2 48212 +a los ||| Reform Party for the ||| 1 0.00835696 2.07417e-05 9.17688e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| Rights and the ||| 0.2 0.00019411 2.07417e-05 6.82001e-08 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| Schulz and from other socialist and left-wing ||| 0.5 2.8277e-05 2.07417e-05 2.25187e-28 2.718 ||| 0-5 ||| 2 48212 +a los ||| Schulz and from other socialist and ||| 0.5 2.8277e-05 2.07417e-05 2.04716e-22 2.718 ||| 0-5 ||| 2 48212 +a los ||| State ||| 0.000270307 0.00368988 4.14834e-05 0.0019931 2.718 ||| 1-0 ||| 7399 48212 +a los ||| States ||| 2.46457e-05 0.011232 2.07417e-05 0.0281869 2.718 ||| 1-0 ||| 40575 48212 +a los ||| Strasbourg and Bordeaux as to ||| 0.5 0.00409398 2.07417e-05 1.68355e-16 2.718 ||| 0-4 ||| 2 48212 +a los ||| Structural ||| 0.00178891 0.00385506 2.07417e-05 0.0004793 2.718 ||| 1-0 ||| 559 48212 +a los ||| This attitude is , to this ||| 0.5 0.00409398 2.07417e-05 3.66528e-15 2.718 ||| 0-4 ||| 2 48212 +a los ||| This attitude is , to ||| 0.5 0.00409398 2.07417e-05 5.67258e-13 2.718 ||| 0-4 ||| 2 48212 +a los ||| Union . conversely ||| 0.5 0.00198371 2.07417e-05 7.86778e-11 2.718 ||| 0-2 ||| 2 48212 +a los ||| Union in the ||| 0.00684932 0.00718601 2.07417e-05 1.43657e-05 2.718 ||| 0-1 1-2 ||| 146 48212 +a los ||| Union with the ||| 0.0322581 0.00698995 2.07417e-05 3.9918e-06 2.718 ||| 0-1 1-2 ||| 31 48212 +a los ||| Wallström and I participated in this process ||| 1 1.73878e-05 2.07417e-05 8.69989e-25 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| Wallström and I participated in this ||| 1 1.73878e-05 2.07417e-05 2.03506e-21 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| Who long to see ||| 0.5 0.00409398 2.07417e-05 9.18501e-14 2.718 ||| 0-2 ||| 2 48212 +a los ||| Who long to ||| 0.5 0.00409398 2.07417e-05 1.30358e-10 2.718 ||| 0-2 ||| 2 48212 +a los ||| a burden on the ||| 0.0294118 0.00957523 2.07417e-05 3.13766e-08 2.718 ||| 0-2 1-3 ||| 34 48212 +a los ||| a case against the ||| 0.2 0.006293 2.07417e-05 5.28814e-08 2.718 ||| 0-2 1-3 ||| 5 48212 +a los ||| a cause for ||| 0.0060241 0.0012174 2.07417e-05 2.95144e-07 2.718 ||| 0-2 ||| 166 48212 +a los ||| a charge for those ||| 1 0.0194561 2.07417e-05 1.37455e-09 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| a coach and ||| 0.166667 0.000312246 2.07417e-05 1.05492e-09 2.718 ||| 1-1 ||| 6 48212 +a los ||| a coach ||| 0.0588235 0.000312246 2.07417e-05 8.4219e-08 2.718 ||| 1-1 ||| 17 48212 +a los ||| a complement to the ||| 0.0666667 0.0281035 2.07417e-05 1.93157e-08 2.718 ||| 0-2 1-3 ||| 15 48212 +a los ||| a country such as the ||| 0.0555556 0.00297745 2.07417e-05 1.24197e-10 2.718 ||| 0-3 1-4 ||| 18 48212 +a los ||| a duty of the ||| 0.2 0.00230489 2.07417e-05 4.18988e-08 2.718 ||| 0-2 1-3 ||| 5 48212 +a los ||| a few examples of the ||| 0.0833333 0.00230489 2.07417e-05 1.70559e-12 2.718 ||| 0-3 1-4 ||| 12 48212 +a los ||| a few of the ||| 0.00653595 0.00230489 2.07417e-05 9.85888e-08 2.718 ||| 0-2 1-3 ||| 153 48212 +a los ||| a focused message to the ||| 0.5 0.0281035 2.07417e-05 7.15919e-12 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| a hand to the ||| 0.111111 0.0281035 2.07417e-05 2.64158e-06 2.718 ||| 0-2 1-3 ||| 9 48212 +a los ||| a hiding to ||| 0.5 0.00409398 2.07417e-05 1.18008e-07 2.718 ||| 0-2 ||| 2 48212 +a los ||| a little closer to the ||| 0.25 0.0281035 2.07417e-05 2.29688e-10 2.718 ||| 0-3 1-4 ||| 4 48212 +a los ||| a lot to the ||| 0.142857 0.0281035 2.07417e-05 8.60546e-07 2.718 ||| 0-2 1-3 ||| 7 48212 +a los ||| a matter for the ||| 0.00639659 0.00835696 6.22252e-05 7.26905e-07 2.718 ||| 0-2 1-3 ||| 469 48212 +a los ||| a matter for those ||| 0.25 0.0194561 2.07417e-05 2.82956e-08 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| a matter of ||| 0.000299222 0.000335766 2.07417e-05 1.36026e-06 2.718 ||| 0-2 ||| 3342 48212 +a los ||| a message to the ||| 0.0277778 0.0281035 4.14834e-05 3.2104e-07 2.718 ||| 0-2 1-3 ||| 72 48212 +a los ||| a number of ||| 8.88415e-05 0.000335766 2.07417e-05 6.48728e-07 2.718 ||| 0-2 ||| 11256 48212 +a los ||| a popular expression ||| 0.5 0.000860022 2.07417e-05 3.86069e-11 2.718 ||| 1-1 ||| 2 48212 +a los ||| a popular ||| 0.0416667 0.000860022 2.07417e-05 9.48572e-07 2.718 ||| 1-1 ||| 24 48212 +a los ||| a result of the Council , but ||| 1 0.00230489 2.07417e-05 8.34487e-15 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| a result of the Council , ||| 1 0.00230489 2.07417e-05 1.22108e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| a result of the Council ||| 0.333333 0.00230489 2.07417e-05 1.02393e-10 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| a result of the ||| 0.001287 0.00230489 4.14834e-05 2.96104e-07 2.718 ||| 0-2 1-3 ||| 1554 48212 +a los ||| a result of using ||| 0.25 0.000335766 2.07417e-05 5.36355e-11 2.718 ||| 0-2 ||| 4 48212 +a los ||| a result of ||| 0.000249688 0.000335766 2.07417e-05 6.90289e-07 2.718 ||| 0-2 ||| 4005 48212 +a los ||| a return to huge ||| 1 0.000311303 2.07417e-05 8.06617e-12 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| a say by ||| 0.5 0.00060207 2.07417e-05 3.48571e-07 2.718 ||| 0-2 ||| 2 48212 +a los ||| a thriving democracy , for the ||| 1 0.00835696 2.07417e-05 2.67455e-15 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| a window for the simple ||| 1 0.00835696 2.07417e-05 3.38993e-13 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| a window for the ||| 0.5 0.00835696 2.07417e-05 7.84707e-09 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| a ||| 1.13694e-05 1.03734e-05 0.000165934 0.0004226 2.718 ||| 0-0 ||| 703645 48212 +a los ||| able to inform their ||| 0.5 0.00543993 2.07417e-05 1.27794e-11 2.718 ||| 0-1 1-3 ||| 2 48212 +a los ||| able to ||| 0.000310881 0.00409398 6.22252e-05 0.000292467 2.718 ||| 0-1 ||| 9650 48212 +a los ||| about agricultural ||| 0.5 0.00010154 2.07417e-05 1.17416e-07 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| about all of the ||| 0.2 0.00437086 2.07417e-05 3.02133e-07 2.718 ||| 0-0 0-2 1-3 ||| 5 48212 +a los ||| about by those ||| 1 0.0123039 2.07417e-05 6.92297e-07 2.718 ||| 0-0 0-1 1-2 ||| 1 48212 +a los ||| about providing the ||| 0.333333 0.00643683 2.07417e-05 1.98439e-07 2.718 ||| 0-0 1-2 ||| 3 48212 +a los ||| about that ||| 0.00115607 0.000937686 2.07417e-05 8.47691e-05 2.718 ||| 0-0 ||| 865 48212 +a los ||| about the EUR ||| 0.5 0.00643683 2.07417e-05 5.78022e-07 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| about the fact that ||| 0.00361011 0.00643683 2.07417e-05 1.06516e-07 2.718 ||| 0-0 1-1 ||| 277 48212 +a los ||| about the fact ||| 0.00226757 0.00643683 2.07417e-05 6.33209e-06 2.718 ||| 0-0 1-1 ||| 441 48212 +a los ||| about the people ||| 0.0555556 0.00643683 2.07417e-05 1.90268e-06 2.718 ||| 0-0 1-1 ||| 18 48212 +a los ||| about the ||| 0.00235349 0.00643683 0.000829669 0.00216164 2.718 ||| 0-0 1-1 ||| 16996 48212 +a los ||| about those areas ||| 0.333333 0.0149858 2.07417e-05 1.92606e-08 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| about those people ||| 0.333333 0.00984749 2.07417e-05 6.62661e-07 2.718 ||| 0-0 1-1 1-2 ||| 3 48212 +a los ||| about those with capital ||| 1 0.0149858 2.07417e-05 1.39358e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| about those with ||| 1 0.0149858 2.07417e-05 5.3806e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| about those ||| 0.027027 0.0149858 6.22252e-05 8.41442e-05 2.718 ||| 0-0 1-1 ||| 111 48212 +a los ||| about ||| 0.000279762 0.000937686 0.000311126 0.0050393 2.718 ||| 0-0 ||| 53617 48212 +a los ||| above the ||| 0.00251889 0.00612862 2.07417e-05 5.55927e-05 2.718 ||| 1-1 ||| 397 48212 +a los ||| accelerated the proceedings ||| 0.333333 0.00612862 2.07417e-05 2.8028e-11 2.718 ||| 1-1 ||| 3 48212 +a los ||| accelerated the ||| 0.0714286 0.00612862 2.07417e-05 7.72121e-07 2.718 ||| 1-1 ||| 14 48212 +a los ||| accent firmly on the ||| 1 0.00957523 2.07417e-05 1.53777e-12 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| access to the ||| 0.000642261 0.0281035 2.07417e-05 1.29227e-05 2.718 ||| 0-1 1-2 ||| 1557 48212 +a los ||| access to ||| 0.00011489 0.00409398 2.07417e-05 3.01259e-05 2.718 ||| 0-1 ||| 8704 48212 +a los ||| accession of the ||| 0.0031348 0.00230489 2.07417e-05 4.65645e-07 2.718 ||| 0-1 1-2 ||| 319 48212 +a los ||| accord to come forward and ||| 0.333333 0.00409398 2.07417e-05 2.84066e-14 2.718 ||| 0-1 ||| 3 48212 +a los ||| accord to come forward ||| 0.333333 0.00409398 2.07417e-05 2.26783e-12 2.718 ||| 0-1 ||| 3 48212 +a los ||| accord to come ||| 0.333333 0.00409398 2.07417e-05 4.0759e-09 2.718 ||| 0-1 ||| 3 48212 +a los ||| accord to ||| 0.0909091 0.00409398 2.07417e-05 4.79913e-06 2.718 ||| 0-1 ||| 11 48212 +a los ||| accord with the ||| 0.0408163 0.00698995 4.14834e-05 9.81121e-08 2.718 ||| 0-1 1-2 ||| 49 48212 +a los ||| accordance with the legislation in Europe on ||| 1 0.00698995 2.07417e-05 3.31308e-18 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| accordance with the legislation in Europe ||| 1 0.00698995 2.07417e-05 4.95154e-16 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| accordance with the legislation in ||| 1 0.00698995 2.07417e-05 9.78565e-13 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| accordance with the legislation ||| 0.1 0.00698995 2.07417e-05 4.57177e-11 2.718 ||| 0-1 1-2 ||| 10 48212 +a los ||| accordance with the ||| 0.00217486 0.00698995 0.000103709 5.69337e-07 2.718 ||| 0-1 1-2 ||| 2299 48212 +a los ||| according to the ||| 0.000560067 0.0281035 4.14834e-05 1.32984e-05 2.718 ||| 0-1 1-2 ||| 3571 48212 +a los ||| according to their ||| 0.00537634 0.00543993 2.07417e-05 7.09226e-08 2.718 ||| 0-1 1-2 ||| 186 48212 +a los ||| accords to the ||| 0.5 0.0281035 2.07417e-05 4.80845e-07 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| account of the ||| 0.000919963 0.00230489 4.14834e-05 3.64777e-06 2.718 ||| 0-1 1-2 ||| 2174 48212 +a los ||| accounts for the ||| 0.0169492 0.00835696 2.07417e-05 4.88418e-07 2.718 ||| 0-1 1-2 ||| 59 48212 +a los ||| accused farmers of wanting to ||| 0.25 0.0873487 2.07417e-05 1.744e-14 2.718 ||| 1-1 0-4 ||| 4 48212 +a los ||| achieve in getting the ||| 1 0.00718601 2.07417e-05 6.84311e-10 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| achievement of the ||| 0.00307692 0.00230489 2.07417e-05 3.05778e-07 2.718 ||| 0-1 1-2 ||| 325 48212 +a los ||| across all ||| 0.00369004 0.000873196 2.07417e-05 1.32264e-06 2.718 ||| 0-0 1-1 ||| 271 48212 +a los ||| across the ||| 0.00092564 0.00600144 6.22252e-05 0.000211046 2.718 ||| 0-0 1-1 ||| 3241 48212 +a los ||| across to the ||| 0.4 0.0281035 4.14834e-05 1.54171e-05 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| act in the ||| 0.0111111 0.00718601 2.07417e-05 4.37879e-06 2.718 ||| 0-1 1-2 ||| 90 48212 +a los ||| act on the ||| 0.0117647 0.00957523 2.07417e-05 2.76473e-06 2.718 ||| 0-1 1-2 ||| 85 48212 +a los ||| action against the ||| 0.0131579 0.006293 2.07417e-05 3.37086e-07 2.718 ||| 0-1 1-2 ||| 76 48212 +a los ||| action against those ||| 0.1 0.0146509 2.07417e-05 1.31215e-08 2.718 ||| 0-1 1-2 ||| 10 48212 +a los ||| action of the ||| 0.00598802 0.00117109 2.07417e-05 2.13223e-06 2.718 ||| 0-1 1-1 1-2 ||| 167 48212 +a los ||| actions in the interests of ||| 1 0.00718601 2.07417e-05 1.3408e-11 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| actions in the interests ||| 1 0.00718601 2.07417e-05 2.46635e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| actions in the ||| 0.0114943 0.00718601 2.07417e-05 1.79894e-06 2.718 ||| 0-1 1-2 ||| 87 48212 +a los ||| actions of those ||| 0.0714286 0.0053661 2.07417e-05 3.44735e-08 2.718 ||| 0-1 1-2 ||| 14 48212 +a los ||| activated the ||| 0.0714286 0.00612862 2.07417e-05 1.37266e-06 2.718 ||| 1-1 ||| 14 48212 +a los ||| acts ||| 0.000292312 0.00698325 2.07417e-05 0.0005727 2.718 ||| 1-0 ||| 3421 48212 +a los ||| actual ||| 0.000369413 0.000317278 2.07417e-05 2.24e-05 2.718 ||| 1-0 ||| 2707 48212 +a los ||| acute ||| 0.00206186 0.000248509 2.07417e-05 2.9e-06 2.718 ||| 1-0 ||| 485 48212 +a los ||| add to the ||| 0.00980392 0.0281035 4.14834e-05 1.23217e-05 2.718 ||| 0-1 1-2 ||| 204 48212 +a los ||| added to those ||| 0.25 0.0654285 2.07417e-05 4.17048e-07 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| addition to the sum ||| 1 0.0281035 2.07417e-05 6.23755e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| addition to the ||| 0.00641026 0.0281035 4.14834e-05 1.4816e-05 2.718 ||| 0-1 1-2 ||| 312 48212 +a los ||| additional to the ||| 0.111111 0.0281035 2.07417e-05 7.94897e-06 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| additional ||| 0.000146908 6.15973e-05 2.07417e-05 7.8e-06 2.718 ||| 1-0 ||| 6807 48212 +a los ||| address is that ||| 0.0833333 0.000457915 2.07417e-05 9.47919e-08 2.718 ||| 0-0 ||| 12 48212 +a los ||| address is ||| 0.0178571 0.000457915 2.07417e-05 5.63513e-06 2.718 ||| 0-0 ||| 56 48212 +a los ||| address the ||| 0.00177096 0.00314339 6.22252e-05 7.71263e-05 2.718 ||| 0-0 1-1 ||| 1694 48212 +a los ||| address to the ||| 0.047619 0.0281035 2.07417e-05 1.14651e-05 2.718 ||| 0-1 1-2 ||| 21 48212 +a los ||| address ||| 0.000165235 0.000457915 2.07417e-05 0.0001798 2.718 ||| 0-0 ||| 6052 48212 +a los ||| addresses the ||| 0.00355872 0.00760475 2.07417e-05 2.42789e-05 2.718 ||| 0-0 1-1 ||| 281 48212 +a los ||| addressing those ||| 0.0666667 0.0379301 2.07417e-05 5.02932e-06 2.718 ||| 0-0 1-1 ||| 15 48212 +a los ||| administrative burden ||| 0.00199601 4.50541e-05 2.07417e-05 2.1315e-10 2.718 ||| 1-0 ||| 501 48212 +a los ||| administrative ||| 0.000166528 4.50541e-05 2.07417e-05 4.9e-06 2.718 ||| 1-0 ||| 6005 48212 +a los ||| adopted by all the ||| 0.166667 0.000601336 2.07417e-05 2.77004e-10 2.718 ||| 0-1 1-2 ||| 6 48212 +a los ||| adopted by all ||| 0.0416667 0.000601336 2.07417e-05 4.51207e-09 2.718 ||| 0-1 1-2 ||| 24 48212 +a los ||| adult at ||| 0.333333 0.0101077 2.07417e-05 9.93834e-07 2.718 ||| 1-0 0-1 ||| 3 48212 +a los ||| advice of the ||| 0.0149254 0.00230489 2.07417e-05 2.28382e-07 2.718 ||| 0-1 1-2 ||| 67 48212 +a los ||| affairs ||| 0.000313578 0.00896637 2.07417e-05 0.0008002 2.718 ||| 1-0 ||| 3189 48212 +a los ||| affect our ||| 0.0163934 0.00821254 2.07417e-05 5.64234e-06 2.718 ||| 0-0 1-1 ||| 61 48212 +a los ||| affect the ||| 0.00321543 0.040436 4.14834e-05 0.000677751 2.718 ||| 0-0 1-1 ||| 622 48212 +a los ||| affect those ||| 0.1 0.0941404 2.07417e-05 2.63822e-05 2.718 ||| 0-0 1-1 ||| 10 48212 +a los ||| affect ||| 0.000451671 0.00589052 2.07417e-05 0.00158 2.718 ||| 0-0 ||| 2214 48212 +a los ||| affected by the consequences of far-reaching ||| 1 0.00547344 2.07417e-05 1.51516e-17 2.718 ||| 0-0 0-1 1-2 ||| 1 48212 +a los ||| affected by the consequences of ||| 0.04 0.00547344 2.07417e-05 2.80586e-12 2.718 ||| 0-0 0-1 1-2 ||| 25 48212 +a los ||| affected by the consequences ||| 0.0333333 0.00547344 2.07417e-05 5.16125e-11 2.718 ||| 0-0 0-1 1-2 ||| 30 48212 +a los ||| affected by the ||| 0.00125945 0.00547344 2.07417e-05 1.21441e-06 2.718 ||| 0-0 0-1 1-2 ||| 794 48212 +a los ||| affected by ||| 0.000958773 0.000279578 4.14834e-05 1.69423e-06 2.718 ||| 0-0 0-1 1-1 ||| 2086 48212 +a los ||| affects the ||| 0.00343643 0.0465204 2.07417e-05 0.000526201 2.718 ||| 0-0 1-1 ||| 291 48212 +a los ||| affects those of us ||| 1 0.108306 2.07417e-05 3.20943e-09 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| affects those of ||| 1 0.108306 2.07417e-05 1.11353e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| affects those ||| 0.142857 0.108306 2.07417e-05 2.04829e-05 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| after all , ||| 0.000343879 0.000606783 2.07417e-05 2.68913e-07 2.718 ||| 0-0 1-1 ||| 2908 48212 +a los ||| after all ||| 0.000520427 0.000606783 4.14834e-05 2.25495e-06 2.718 ||| 0-0 1-1 ||| 3843 48212 +a los ||| after the end ||| 0.00826446 0.00417039 2.07417e-05 1.56553e-07 2.718 ||| 0-0 1-1 ||| 121 48212 +a los ||| after the initial selection , ||| 1 0.00417039 2.07417e-05 6.54532e-15 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| after the initial selection ||| 1 0.00417039 2.07417e-05 5.48852e-14 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| after the initial ||| 0.166667 0.00417039 2.07417e-05 9.46296e-09 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| after the ||| 0.00083949 0.00417039 0.000103709 0.000359809 2.718 ||| 0-0 1-1 ||| 5956 48212 +a los ||| after those ||| 0.0833333 0.00970922 4.14834e-05 1.40059e-05 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| after ||| 0.000435249 0.000607523 0.000311126 0.0008388 2.718 ||| 0-0 ||| 34463 48212 +a los ||| again to the ||| 0.025641 0.0281035 4.14834e-05 8.68977e-05 2.718 ||| 0-1 1-2 ||| 78 48212 +a los ||| again ||| 0.000142949 0.00124848 4.14834e-05 0.0023184 2.718 ||| 0-0 ||| 13991 48212 +a los ||| against Europe 's ||| 1 0.00180014 2.07417e-05 8.05939e-09 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| against a ||| 0.00117371 0.000916734 2.07417e-05 0.000115225 2.718 ||| 0-0 ||| 852 48212 +a los ||| against any ||| 0.00320513 0.0009166 2.07417e-05 2.4009e-06 2.718 ||| 0-0 1-1 ||| 312 48212 +a los ||| against each other ||| 0.0126582 0.00256013 2.07417e-05 2.9632e-09 2.718 ||| 0-0 1-1 ||| 79 48212 +a los ||| against each ||| 0.011236 0.00256013 2.07417e-05 2.2873e-06 2.718 ||| 0-0 1-1 ||| 89 48212 +a los ||| against holders of ||| 1 0.0145094 2.07417e-05 2.06043e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| against holders ||| 1 0.0145094 2.07417e-05 3.79007e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| against individual ||| 0.0769231 0.00567864 2.07417e-05 3.34114e-06 2.718 ||| 0-0 1-1 ||| 13 48212 +a los ||| against our ||| 0.00662252 0.00127811 2.07417e-05 9.28307e-06 2.718 ||| 0-0 1-1 ||| 151 48212 +a los ||| against that ||| 0.00373134 0.000916734 2.07417e-05 4.37277e-05 2.718 ||| 0-0 ||| 268 48212 +a los ||| against the Commission ||| 0.00862069 0.006293 2.07417e-05 6.51313e-07 2.718 ||| 0-0 1-1 ||| 116 48212 +a los ||| against the ||| 0.0040418 0.006293 0.000850411 0.00111507 2.718 ||| 0-0 1-1 ||| 10144 48212 +a los ||| against them ||| 0.00303951 0.0019667 2.07417e-05 5.23175e-06 2.718 ||| 0-0 1-1 ||| 329 48212 +a los ||| against those ||| 0.0481928 0.0146509 0.000331868 4.34054e-05 2.718 ||| 0-0 1-1 ||| 332 48212 +a los ||| against ||| 0.000159509 0.000916734 0.000165934 0.0025995 2.718 ||| 0-0 ||| 50154 48212 +a los ||| agreement to ||| 0.0020284 0.00409398 2.07417e-05 6.45606e-05 2.718 ||| 0-1 ||| 493 48212 +a los ||| agreement with the other ||| 0.0384615 0.00698995 2.07417e-05 1.70988e-09 2.718 ||| 0-1 1-2 ||| 26 48212 +a los ||| agreement with the ||| 0.00084674 0.00698995 2.07417e-05 1.31986e-06 2.718 ||| 0-1 1-2 ||| 1181 48212 +a los ||| agreement within the meaning ||| 0.5 0.00151022 2.07417e-05 1.20328e-12 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| agreement within the ||| 0.0144928 0.00151022 2.07417e-05 3.93228e-08 2.718 ||| 0-1 1-2 ||| 69 48212 +a los ||| agreements ||| 0.000126815 0.00998989 4.14834e-05 0.003153 2.718 ||| 1-0 ||| 15771 48212 +a los ||| agricultural revenue has dropped ||| 0.5 0.0101431 2.07417e-05 8.32899e-16 2.718 ||| 1-1 ||| 2 48212 +a los ||| agricultural revenue has ||| 0.5 0.0101431 2.07417e-05 7.2426e-11 2.718 ||| 1-1 ||| 2 48212 +a los ||| agricultural revenue ||| 0.0769231 0.0101431 2.07417e-05 1.40701e-08 2.718 ||| 1-1 ||| 13 48212 +a los ||| ahead of the ||| 0.003663 0.00230489 2.07417e-05 1.38298e-06 2.718 ||| 0-1 1-2 ||| 273 48212 +a los ||| ahead of those ||| 0.5 0.0053661 2.07417e-05 5.3834e-08 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| ahead with their ||| 0.0833333 0.00101826 2.07417e-05 2.10929e-09 2.718 ||| 0-1 ||| 12 48212 +a los ||| ahead with ||| 0.00593472 0.00101826 4.14834e-05 1.81977e-06 2.718 ||| 0-1 ||| 337 48212 +a los ||| aid awarded to trees ||| 1 0.0416786 2.07417e-05 6.11669e-14 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| aid to the ||| 0.00332226 0.0281035 2.07417e-05 1.96245e-05 2.718 ||| 0-1 1-2 ||| 301 48212 +a los ||| air ||| 0.000219298 0.000996488 2.07417e-05 0.0001663 2.718 ||| 1-0 ||| 4560 48212 +a los ||| airport to ||| 0.0769231 0.00396462 2.07417e-05 8.89471e-06 2.718 ||| 1-0 ||| 13 48212 +a los ||| airport ||| 0.000714286 0.00396462 2.07417e-05 0.0001001 2.718 ||| 1-0 ||| 1400 48212 +a los ||| alike ||| 0.00791557 0.000605857 6.22252e-05 1.685e-05 2.718 ||| 0-0 1-0 ||| 379 48212 +a los ||| alive to the ||| 0.2 0.0281035 2.07417e-05 1.18709e-06 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| all , to the ||| 0.0196078 0.0281035 2.07417e-05 8.46777e-05 2.718 ||| 0-2 1-3 ||| 51 48212 +a los ||| all , up to the ||| 1 0.0281035 2.07417e-05 2.88793e-07 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| all - ||| 0.00442478 0.0008917 2.07417e-05 1.01405e-05 2.718 ||| 1-0 ||| 226 48212 +a los ||| all EU ||| 0.0106383 1.68424e-05 2.07417e-05 2.99006e-07 2.718 ||| 0-0 1-1 ||| 94 48212 +a los ||| all costs ||| 0.00234742 0.0107469 2.07417e-05 1.30846e-05 2.718 ||| 1-1 ||| 426 48212 +a los ||| all from the ||| 0.0344828 0.0053267 2.07417e-05 1.45919e-05 2.718 ||| 0-1 1-2 ||| 29 48212 +a los ||| all have to ||| 0.025641 0.00408899 2.07417e-05 1.12627e-05 2.718 ||| 1-0 0-2 ||| 39 48212 +a los ||| all of the ||| 0.00229885 0.00230489 0.000103709 5.99553e-05 2.718 ||| 0-1 1-2 ||| 2175 48212 +a los ||| all of ||| 0.000328156 0.000335357 6.22252e-05 7.95159e-05 2.718 ||| 1-0 0-1 ||| 9142 48212 +a los ||| all on the ||| 0.0104167 0.00957523 2.07417e-05 7.68951e-05 2.718 ||| 0-1 1-2 ||| 96 48212 +a los ||| all people with ||| 0.166667 0.000348886 2.07417e-05 2.78533e-08 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| all people ||| 0.00377358 0.000348886 2.07417e-05 4.35583e-06 2.718 ||| 0-0 1-1 ||| 265 48212 +a los ||| all prefer to ignore ||| 0.2 0.00408899 2.07417e-05 2.05567e-13 2.718 ||| 1-0 0-2 ||| 5 48212 +a los ||| all prefer to ||| 0.2 0.00408899 2.07417e-05 2.47671e-08 2.718 ||| 1-0 0-2 ||| 5 48212 +a los ||| all the reasonable ||| 1 0.000476879 2.07417e-05 4.2706e-09 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| all the ||| 0.00304031 0.000476879 0.00192898 0.000237256 2.718 ||| 0-0 1-1 ||| 30589 48212 +a los ||| all those ||| 0.00425532 0.00111024 0.000352609 9.23544e-06 2.718 ||| 0-0 1-1 ||| 3995 48212 +a los ||| all to start discussing problems that are ||| 0.333333 0.00532475 2.07417e-05 1.61134e-18 2.718 ||| 1-4 ||| 3 48212 +a los ||| all to start discussing problems that ||| 0.333333 0.00532475 2.07417e-05 1.062e-16 2.718 ||| 1-4 ||| 3 48212 +a los ||| all to start discussing problems ||| 0.333333 0.00532475 2.07417e-05 6.31329e-15 2.718 ||| 1-4 ||| 3 48212 +a los ||| all to the ||| 0.00787402 0.0281035 2.07417e-05 0.000710058 2.718 ||| 0-1 1-2 ||| 127 48212 +a los ||| all to ||| 0.00212766 0.00408899 4.14834e-05 0.00165532 2.718 ||| 0-1 ||| 940 48212 +a los ||| all visiting these ||| 1 0.00428776 2.07417e-05 1.09307e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| all ||| 0.000412158 0.0008917 0.00130673 0.0026883 2.718 ||| 1-0 ||| 152854 48212 +a los ||| allow the ||| 0.00095057 0.00612862 2.07417e-05 0.000104065 2.718 ||| 1-1 ||| 1052 48212 +a los ||| allows those ||| 0.111111 0.000558677 2.07417e-05 7.6809e-08 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| along to the ||| 0.2 0.0281035 2.07417e-05 2.62211e-05 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| along with all ||| 0.0151515 0.00101702 2.07417e-05 7.83181e-09 2.718 ||| 0-1 1-2 ||| 66 48212 +a los ||| alongside others ||| 0.111111 0.0112881 2.07417e-05 3.6184e-07 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| alongside the ||| 0.00162338 0.0189671 2.07417e-05 0.000160129 2.718 ||| 0-0 1-1 ||| 616 48212 +a los ||| also all of the ||| 0.333333 0.00230489 2.07417e-05 3.0269e-07 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| also all the ||| 0.0333333 0.000476879 2.07417e-05 1.19781e-06 2.718 ||| 0-1 1-2 ||| 30 48212 +a los ||| also because of the ||| 0.0133333 0.00147068 2.07417e-05 2.06965e-08 2.718 ||| 0-1 0-2 1-3 ||| 75 48212 +a los ||| also bring the ||| 0.2 0.0019799 2.07417e-05 4.13202e-07 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| also from the ||| 0.00806452 0.0053267 2.07417e-05 1.55899e-05 2.718 ||| 0-1 1-2 ||| 124 48212 +a los ||| also go to the ||| 0.125 0.0281035 2.07417e-05 4.43643e-07 2.718 ||| 0-2 1-3 ||| 8 48212 +a los ||| also have to drive home the message ||| 1 0.0281035 2.07417e-05 1.34051e-18 2.718 ||| 0-2 1-5 ||| 1 48212 +a los ||| also have to drive home the ||| 1 0.0281035 2.07417e-05 2.78114e-14 2.718 ||| 0-2 1-5 ||| 1 48212 +a los ||| also kick-starts innovation in those regions that ||| 1 0.01673 2.07417e-05 3.22943e-23 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| also kick-starts innovation in those regions ||| 1 0.01673 2.07417e-05 1.91981e-21 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| also kick-starts innovation in those ||| 1 0.01673 2.07417e-05 2.32987e-17 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| also like to extend my thanks ||| 0.333333 0.00198578 2.07417e-05 7.57545e-18 2.718 ||| 0-2 1-4 ||| 3 48212 +a los ||| also like to extend my ||| 0.166667 0.00198578 2.07417e-05 9.35241e-14 2.718 ||| 0-2 1-4 ||| 6 48212 +a los ||| also like to thank the ||| 0.012987 0.0281035 2.07417e-05 1.42538e-10 2.718 ||| 0-2 1-4 ||| 77 48212 +a los ||| also made the ||| 0.111111 0.00612862 2.07417e-05 4.53656e-06 2.718 ||| 1-2 ||| 9 48212 +a los ||| also necessary to ||| 0.0138889 0.00409398 2.07417e-05 4.55043e-07 2.718 ||| 0-2 ||| 72 48212 +a los ||| also of supporting the ||| 1 0.0128079 2.07417e-05 7.34339e-08 2.718 ||| 0-1 0-2 1-3 ||| 1 48212 +a los ||| also of the agreement ||| 0.25 0.00230489 2.07417e-05 1.18055e-08 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| also of the ||| 0.00259067 0.00230489 2.07417e-05 6.40561e-05 2.718 ||| 0-1 1-2 ||| 386 48212 +a los ||| also thank those ||| 0.333333 0.0035919 2.07417e-05 4.91635e-08 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| also thanks to the ||| 0.0666667 0.0281035 2.07417e-05 6.14485e-08 2.718 ||| 0-2 1-3 ||| 15 48212 +a los ||| also the efforts ||| 0.166667 0.00560887 2.07417e-05 3.67637e-06 2.718 ||| 1-1 1-2 ||| 6 48212 +a los ||| also the ||| 0.0044317 4.54916e-05 0.000352609 2.31207e-05 2.718 ||| 0-0 1-1 ||| 3836 48212 +a los ||| also those ||| 0.0116959 0.00010591 4.14834e-05 9.00001e-07 2.718 ||| 0-0 1-1 ||| 171 48212 +a los ||| also to elect the ||| 1 0.0290398 2.07417e-05 6.09174e-08 2.718 ||| 0-1 0-2 1-3 ||| 1 48212 +a los ||| also to include the ||| 0.166667 0.0151104 2.07417e-05 7.00968e-08 2.718 ||| 0-1 1-2 1-3 ||| 6 48212 +a los ||| also to the ||| 0.0114192 0.0281035 0.000145192 0.000758623 2.718 ||| 0-1 1-2 ||| 613 48212 +a los ||| also to those ||| 0.0263158 0.0654285 2.07417e-05 2.95303e-05 2.718 ||| 0-1 1-2 ||| 38 48212 +a los ||| also to ||| 0.000293513 0.00409398 2.07417e-05 0.00176853 2.718 ||| 0-1 ||| 3407 48212 +a los ||| also united messages - ||| 0.5 0.00317123 2.07417e-05 2.11179e-14 2.718 ||| 1-2 ||| 2 48212 +a los ||| also united messages ||| 0.5 0.00317123 2.07417e-05 5.59844e-12 2.718 ||| 1-2 ||| 2 48212 +a los ||| also up to the ||| 0.166667 0.0281035 2.07417e-05 2.58728e-06 2.718 ||| 0-2 1-3 ||| 6 48212 +a los ||| also with regard to ||| 0.00934579 0.00409398 2.07417e-05 7.70022e-09 2.718 ||| 0-3 ||| 107 48212 +a los ||| also ||| 6.47992e-06 6.62699e-06 2.07417e-05 5.39e-05 2.718 ||| 0-0 ||| 154323 48212 +a los ||| although ||| 0.000178838 0.00164218 6.22252e-05 0.001454 2.718 ||| 0-0 ||| 16775 48212 +a los ||| am in agreement with the other ||| 1 0.00698995 2.07417e-05 4.67553e-14 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| am in agreement with the ||| 0.1 0.00698995 2.07417e-05 3.60905e-11 2.718 ||| 0-3 1-4 ||| 10 48212 +a los ||| am to them ||| 1 0.00878293 2.07417e-05 9.00659e-07 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| among all ||| 0.00584795 0.000239315 2.07417e-05 3.65609e-07 2.718 ||| 0-0 1-1 ||| 171 48212 +a los ||| among both ||| 0.0666667 0.000366047 2.07417e-05 5.87238e-08 2.718 ||| 0-1 ||| 15 48212 +a los ||| among people with ||| 1 0.00315861 2.07417e-05 1.78811e-08 2.718 ||| 0-0 1-1 0-2 ||| 1 48212 +a los ||| among the ||| 0.00395704 0.0016448 0.000290384 5.83381e-05 2.718 ||| 0-0 1-1 ||| 3538 48212 +a los ||| among those ||| 0.00277778 0.00382932 2.07417e-05 2.27087e-06 2.718 ||| 0-0 1-1 ||| 360 48212 +a los ||| among ||| 0.00197982 0.000271965 0.000435576 0.0001769 2.718 ||| 0-0 1-0 ||| 10607 48212 +a los ||| amongst some ||| 0.0555556 0.000213853 2.07417e-05 5.17418e-08 2.718 ||| 0-0 1-0 ||| 18 48212 +a los ||| amongst the ||| 0.00561167 0.00191687 0.000103709 2.11475e-05 2.718 ||| 0-0 1-1 ||| 891 48212 +a los ||| amongst ||| 0.000890208 0.000213853 6.22252e-05 4.75e-05 2.718 ||| 0-0 1-0 ||| 3370 48212 +a los ||| an adult at ||| 0.333333 0.0101077 2.07417e-05 4.41729e-09 2.718 ||| 1-1 0-2 ||| 3 48212 +a los ||| an appropriate approach to ||| 0.25 0.00409398 2.07417e-05 4.59378e-11 2.718 ||| 0-3 ||| 4 48212 +a los ||| an assessment of the ||| 0.003861 0.00230489 2.07417e-05 2.45313e-09 2.718 ||| 0-2 1-3 ||| 259 48212 +a los ||| an end is put to the ||| 0.333333 0.0281035 2.07417e-05 1.0042e-11 2.718 ||| 0-4 1-5 ||| 3 48212 +a los ||| an insult to the ||| 0.012987 0.0281035 2.07417e-05 2.67151e-09 2.718 ||| 0-2 1-3 ||| 77 48212 +a los ||| an issue for ||| 0.00636943 0.0012174 2.07417e-05 1.23949e-07 2.718 ||| 0-2 ||| 157 48212 +a los ||| and Bordeaux as to ||| 0.5 0.00409398 2.07417e-05 1.79101e-11 2.718 ||| 0-3 ||| 2 48212 +a los ||| and I am in agreement with the ||| 0.25 0.00698995 2.07417e-05 3.19769e-15 2.718 ||| 0-5 1-6 ||| 4 48212 +a los ||| and I participated in this process , ||| 1 1.73878e-05 2.07417e-05 1.48215e-19 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| and I participated in this process ||| 1 1.73878e-05 2.07417e-05 1.24284e-18 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| and I participated in this ||| 1 1.73878e-05 2.07417e-05 2.90723e-15 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| and Reform Party for the ||| 1 0.00835696 2.07417e-05 1.14949e-12 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| and all ||| 0.000255493 2.82425e-05 2.07417e-05 5.18707e-06 2.718 ||| 0-0 1-1 ||| 3914 48212 +a los ||| and also the ||| 0.000813008 0.00612862 2.07417e-05 2.71264e-05 2.718 ||| 1-2 ||| 1230 48212 +a los ||| and are subject to ||| 0.0285714 0.00409398 2.07417e-05 3.59374e-08 2.718 ||| 0-3 ||| 35 48212 +a los ||| and barrel , to the ||| 1 0.0281035 2.07417e-05 5.61151e-10 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| and congratulate the ||| 0.00862069 0.0299907 2.07417e-05 1.78907e-05 2.718 ||| 0-1 1-2 ||| 116 48212 +a los ||| and describe the ||| 0.1 0.00612862 2.07417e-05 1.3164e-07 2.718 ||| 1-2 ||| 10 48212 +a los ||| and establish them in the ||| 1 0.00718601 2.07417e-05 6.60721e-11 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| and fast ||| 0.0149254 2.56885e-05 2.07417e-05 2.25466e-08 2.718 ||| 0-1 ||| 67 48212 +a los ||| and for the ||| 0.000337838 0.00835696 2.07417e-05 0.000197989 2.718 ||| 0-1 1-2 ||| 2960 48212 +a los ||| and for which ||| 0.00495049 8.41237e-06 2.07417e-05 1.56931e-08 2.718 ||| 0-1 1-2 ||| 202 48212 +a los ||| and forced to ||| 0.0384615 0.00409398 2.07417e-05 3.09343e-07 2.718 ||| 0-2 ||| 26 48212 +a los ||| and from other socialist and left-wing ||| 0.5 2.8277e-05 2.07417e-05 7.76507e-23 2.718 ||| 0-4 ||| 2 48212 +a los ||| and from other socialist and ||| 0.5 2.8277e-05 2.07417e-05 7.05916e-17 2.718 ||| 0-4 ||| 2 48212 +a los ||| and have ||| 0.000394011 2.8277e-05 2.07417e-05 2.30764e-05 2.718 ||| 0-0 ||| 2538 48212 +a los ||| and help the ||| 0.0125 0.0317922 2.07417e-05 3.53403e-05 2.718 ||| 0-1 1-2 ||| 80 48212 +a los ||| and in the absence of ||| 0.04 0.00718601 2.07417e-05 4.54549e-10 2.718 ||| 0-1 1-2 ||| 25 48212 +a los ||| and in the absence ||| 0.0416667 0.00718601 2.07417e-05 8.36122e-09 2.718 ||| 0-1 1-2 ||| 24 48212 +a los ||| and in the ||| 0.000437733 0.00718601 4.14834e-05 0.000322827 2.718 ||| 0-1 1-2 ||| 4569 48212 +a los ||| and its ||| 0.000120584 3.35509e-05 2.07417e-05 4.11968e-06 2.718 ||| 0-0 1-1 ||| 8293 48212 +a los ||| and left-wing ||| 0.25 2.8277e-05 2.07417e-05 2.12245e-09 2.718 ||| 0-0 ||| 4 48212 +a los ||| and onto the ||| 0.2 0.0127627 4.14834e-05 1.97151e-07 2.718 ||| 0-0 0-1 1-2 ||| 10 48212 +a los ||| and permissible , to use the ||| 0.5 0.0281035 2.07417e-05 8.62148e-13 2.718 ||| 0-3 1-5 ||| 2 48212 +a los ||| and put these before the ||| 1 0.00134001 2.07417e-05 5.01901e-13 2.718 ||| 0-0 0-3 1-4 ||| 1 48212 +a los ||| and recognition to the ||| 0.5 0.0281035 2.07417e-05 5.28896e-08 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| and regulations ||| 0.00177936 0.00294182 2.07417e-05 6.83163e-06 2.718 ||| 1-1 ||| 562 48212 +a los ||| and see what ||| 0.00840336 0.000306754 2.07417e-05 8.46125e-09 2.718 ||| 1-2 ||| 119 48212 +a los ||| and stop ||| 0.00309598 2.8277e-05 2.07417e-05 1.33328e-07 2.718 ||| 0-0 ||| 323 48212 +a los ||| and support those ||| 0.0526316 0.000775509 2.07417e-05 3.11219e-08 2.718 ||| 0-1 1-2 ||| 19 48212 +a los ||| and tame those ||| 1 0.000451913 2.07417e-05 2.25526e-11 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| and that after the initial selection , ||| 1 0.00417039 2.07417e-05 1.37914e-18 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| and that after the initial selection ||| 1 0.00417039 2.07417e-05 1.15646e-17 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| and that after the initial ||| 1 0.00417039 2.07417e-05 1.9939e-12 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| and that after the ||| 0.5 0.00417039 2.07417e-05 7.58137e-08 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| and that are ||| 0.0142857 1.51797e-05 2.07417e-05 1.29748e-07 2.718 ||| 0-1 ||| 70 48212 +a los ||| and that ||| 3.18238e-05 1.51797e-05 2.07417e-05 8.55143e-06 2.718 ||| 0-1 ||| 31423 48212 +a los ||| and the subjugation ||| 0.2 0.00019411 2.07417e-05 9.10438e-10 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| and the ||| 0.000132892 0.00019411 0.000373351 0.000827671 2.718 ||| 0-0 1-1 ||| 135448 48212 +a los ||| and these ||| 0.000874126 3.81527e-05 2.07417e-05 4.70316e-06 2.718 ||| 0-0 1-1 ||| 1144 48212 +a los ||| and those ||| 0.000355619 0.000451913 2.07417e-05 3.2218e-05 2.718 ||| 0-0 1-1 ||| 2812 48212 +a los ||| and to get to ||| 0.166667 0.00409398 2.07417e-05 1.70462e-07 2.718 ||| 0-3 ||| 6 48212 +a los ||| and to resort to the ||| 1 0.0281035 2.07417e-05 2.59235e-09 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| and to stand as a candidate ||| 1 0.00771245 2.07417e-05 5.02393e-14 2.718 ||| 0-1 1-5 ||| 1 48212 +a los ||| and to the ||| 0.000632111 0.0281035 4.14834e-05 0.00188219 2.718 ||| 0-1 1-2 ||| 3164 48212 +a los ||| and to ||| 3.74883e-05 0.00409398 2.07417e-05 0.00438784 2.718 ||| 0-1 ||| 26675 48212 +a los ||| and ||| 1.568e-05 2.8277e-05 0.000497801 0.0019295 2.718 ||| 0-0 ||| 1.53061e+06 48212 +a los ||| angry with ||| 0.0833333 0.00101826 2.07417e-05 4.84158e-08 2.718 ||| 0-1 ||| 12 48212 +a los ||| animal ||| 0.000311624 0.00868578 2.07417e-05 0.0014195 2.718 ||| 1-0 ||| 3209 48212 +a los ||| announce the ||| 0.0178571 0.00612862 2.07417e-05 1.54424e-06 2.718 ||| 1-1 ||| 56 48212 +a los ||| announced they were going to ||| 0.5 0.00409398 2.07417e-05 3.66356e-14 2.718 ||| 0-4 ||| 2 48212 +a los ||| answering the ||| 0.0166667 0.0429665 2.07417e-05 7.63542e-05 2.718 ||| 0-0 1-1 ||| 60 48212 +a los ||| answers on the ||| 0.142857 0.00957523 2.07417e-05 3.51491e-07 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| anti the ||| 0.5 0.0168675 2.07417e-05 1.58714e-06 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| any living at the ||| 0.5 0.0249683 2.07417e-05 1.85011e-09 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| any of the ||| 0.00333333 0.00230489 4.14834e-05 1.91866e-05 2.718 ||| 0-1 1-2 ||| 600 48212 +a los ||| any of ||| 0.000826446 0.000335717 2.07417e-05 2.73187e-05 2.718 ||| 1-0 0-1 ||| 1210 48212 +a los ||| any the ||| 0.2 0.00612862 2.07417e-05 0.000648668 2.718 ||| 1-1 ||| 5 48212 +a los ||| any ||| 0.00022144 0.000892658 0.000207417 0.0009236 2.718 ||| 1-0 ||| 45159 48212 +a los ||| anyone else ||| 0.00373134 0.000657018 2.07417e-05 3.353e-09 2.718 ||| 1-1 ||| 268 48212 +a los ||| anyone ||| 0.000321647 0.00156478 2.07417e-05 0.0002002 2.718 ||| 0-0 1-0 ||| 3109 48212 +a los ||| appeal to the ||| 0.004329 0.0281035 4.14834e-05 4.53798e-06 2.718 ||| 0-1 1-2 ||| 462 48212 +a los ||| appealing to the ||| 0.0217391 0.0281035 2.07417e-05 9.16611e-07 2.718 ||| 0-1 1-2 ||| 46 48212 +a los ||| appeals against the ||| 0.5 0.006293 2.07417e-05 3.56823e-09 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| appear behind the scenes ||| 1 0.0112911 2.07417e-05 1.3575e-13 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| appear behind the ||| 1 0.0112911 2.07417e-05 2.88829e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| appeared to ||| 0.0108696 0.00409398 2.07417e-05 7.81173e-06 2.718 ||| 0-1 ||| 92 48212 +a los ||| applicable to ||| 0.00141643 0.00409398 2.07417e-05 8.44227e-06 2.718 ||| 0-1 ||| 706 48212 +a los ||| applied for ||| 0.00421941 0.0012174 2.07417e-05 3.99069e-06 2.718 ||| 0-1 ||| 237 48212 +a los ||| applied to the ||| 0.00478469 0.0281035 2.07417e-05 1.62736e-05 2.718 ||| 0-1 1-2 ||| 209 48212 +a los ||| applied to ||| 0.00243902 0.00409398 4.14834e-05 3.79377e-05 2.718 ||| 0-1 ||| 820 48212 +a los ||| applies to the ||| 0.00175747 0.0281035 2.07417e-05 1.25921e-05 2.718 ||| 0-1 1-2 ||| 569 48212 +a los ||| apply also to the ||| 0.142857 0.0281035 2.07417e-05 1.09166e-07 2.718 ||| 0-2 1-3 ||| 7 48212 +a los ||| apply to Members of the ||| 0.333333 0.00230489 2.07417e-05 2.39298e-11 2.718 ||| 0-3 1-4 ||| 3 48212 +a los ||| apply to the army of ||| 0.5 0.0281035 2.07417e-05 1.05796e-11 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| apply to the army ||| 0.5 0.0281035 2.07417e-05 1.94607e-10 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| apply to the ||| 0.0110193 0.0281035 8.29669e-05 2.1623e-05 2.718 ||| 0-1 1-2 ||| 363 48212 +a los ||| apply to them ||| 0.0357143 0.00878293 2.07417e-05 1.01452e-07 2.718 ||| 0-1 1-2 ||| 28 48212 +a los ||| apply to vessels ||| 0.5 0.0601975 2.07417e-05 4.00394e-08 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| apply to ||| 0.000569801 0.00409398 2.07417e-05 5.04084e-05 2.718 ||| 0-1 ||| 1755 48212 +a los ||| applying to ||| 0.00346021 0.00409398 2.07417e-05 1.1595e-05 2.718 ||| 0-1 ||| 289 48212 +a los ||| appointment of the ||| 0.00396825 0.00230489 2.07417e-05 1.45911e-07 2.718 ||| 0-1 1-2 ||| 252 48212 +a los ||| appointments to the ||| 0.0384615 0.0281035 2.07417e-05 6.01056e-07 2.718 ||| 0-1 1-2 ||| 26 48212 +a los ||| appreciation of the ||| 0.00657895 0.00230489 2.07417e-05 1.64942e-07 2.718 ||| 0-1 1-2 ||| 152 48212 +a los ||| approach to ||| 0.000698812 0.00409398 2.07417e-05 7.67861e-05 2.718 ||| 0-1 ||| 1431 48212 +a los ||| approached the ||| 0.0172414 0.0133042 2.07417e-05 2.85685e-05 2.718 ||| 0-0 1-1 ||| 58 48212 +a los ||| appropriate approach to ||| 0.2 0.00409398 2.07417e-05 1.03354e-08 2.718 ||| 0-2 ||| 5 48212 +a los ||| approval to ||| 0.0104167 0.00409398 2.07417e-05 1.0474e-05 2.718 ||| 0-1 ||| 96 48212 +a los ||| are , at the ||| 0.04 0.0249683 2.07417e-05 2.64169e-05 2.718 ||| 0-2 1-3 ||| 25 48212 +a los ||| are about ||| 0.00319489 0.000937686 2.07417e-05 7.64598e-05 2.718 ||| 0-1 ||| 313 48212 +a los ||| are all visiting these ||| 1 0.00428776 2.07417e-05 1.65849e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| are also to ||| 0.0227273 0.00409398 2.07417e-05 2.68334e-05 2.718 ||| 0-2 ||| 44 48212 +a los ||| are applied to the ||| 0.2 0.0281035 2.07417e-05 2.46914e-07 2.718 ||| 0-2 1-3 ||| 5 48212 +a los ||| are aspects ||| 0.0526316 0.00557805 2.07417e-05 1.70829e-05 2.718 ||| 1-1 ||| 19 48212 +a los ||| are at issue ||| 0.04 0.00363727 2.07417e-05 3.90818e-07 2.718 ||| 0-1 ||| 25 48212 +a los ||| are at their ||| 0.0277778 0.00483308 2.07417e-05 1.18139e-06 2.718 ||| 0-1 1-2 ||| 36 48212 +a los ||| are at ||| 0.000608273 0.00363727 2.07417e-05 0.000516409 2.718 ||| 0-1 ||| 1644 48212 +a los ||| are being empowered to ||| 0.5 0.00409398 2.07417e-05 2.72259e-11 2.718 ||| 0-3 ||| 2 48212 +a los ||| are calling for the ||| 0.0416667 0.00835696 2.07417e-05 1.58045e-08 2.718 ||| 0-2 1-3 ||| 24 48212 +a los ||| are concerned ||| 0.000392773 0.000789931 2.07417e-05 1.21184e-05 2.718 ||| 0-1 ||| 2546 48212 +a los ||| are designed to ||| 0.00497512 0.00409398 2.07417e-05 4.15103e-07 2.718 ||| 0-2 ||| 201 48212 +a los ||| are developing at the ||| 1 0.0249683 2.07417e-05 1.20284e-08 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| are due to Mr ||| 0.333333 0.00017075 2.07417e-05 2.47098e-10 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| are due to both our ||| 1 0.00690518 2.07417e-05 6.2839e-12 2.718 ||| 0-2 1-3 1-4 ||| 1 48212 +a los ||| are due to the ||| 0.0188679 0.0281035 2.07417e-05 6.30168e-07 2.718 ||| 0-2 1-3 ||| 53 48212 +a los ||| are for ||| 0.00359712 0.0012174 2.07417e-05 0.000559091 2.718 ||| 0-1 ||| 278 48212 +a los ||| are from ||| 0.00787402 0.000775968 2.07417e-05 0.000109225 2.718 ||| 0-1 ||| 127 48212 +a los ||| are going into the ||| 0.333333 0.0131557 2.07417e-05 3.38333e-08 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| are in any way ||| 0.125 0.00104667 2.07417e-05 1.81494e-09 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| are in any ||| 0.037037 0.00104667 2.07417e-05 8.41966e-07 2.718 ||| 0-1 1-2 ||| 27 48212 +a los ||| are in the process of ||| 0.00970874 0.00612862 2.07417e-05 3.23764e-09 2.718 ||| 1-2 ||| 103 48212 +a los ||| are in the process ||| 0.00900901 0.00612862 2.07417e-05 5.95548e-08 2.718 ||| 1-2 ||| 111 48212 +a los ||| are in the ||| 0.00128866 0.00612862 2.07417e-05 0.00013931 2.718 ||| 1-2 ||| 776 48212 +a los ||| are in their ||| 0.0555556 0.00139098 2.07417e-05 2.0855e-06 2.718 ||| 0-1 1-2 ||| 18 48212 +a los ||| are increasingly seeking out the ||| 0.333333 0.00819065 2.07417e-05 7.79464e-14 2.718 ||| 0-3 1-4 ||| 3 48212 +a los ||| are indispensable to ||| 0.0769231 0.00409398 2.07417e-05 1.70081e-08 2.718 ||| 0-2 ||| 13 48212 +a los ||| are just a few examples of the ||| 0.333333 0.00230489 2.07417e-05 3.26507e-17 2.718 ||| 0-5 1-6 ||| 3 48212 +a los ||| are not in the ||| 0.0144928 0.00718601 2.07417e-05 1.33506e-06 2.718 ||| 0-2 1-3 ||| 69 48212 +a los ||| are protected internationally ||| 0.5 0.00282643 2.07417e-05 9.35998e-11 2.718 ||| 0-2 ||| 2 48212 +a los ||| are skinned to make stylish trimmings ||| 0.5 0.00409398 2.07417e-05 1.03448e-24 2.718 ||| 0-2 ||| 2 48212 +a los ||| are skinned to make stylish ||| 0.5 0.00409398 2.07417e-05 2.5862e-18 2.718 ||| 0-2 ||| 2 48212 +a los ||| are skinned to make ||| 0.5 0.00409398 2.07417e-05 6.46551e-12 2.718 ||| 0-2 ||| 2 48212 +a los ||| are skinned to ||| 0.5 0.00409398 2.07417e-05 3.72051e-09 2.718 ||| 0-2 ||| 2 48212 +a los ||| are subject to ||| 0.00221729 0.00409398 2.07417e-05 2.86905e-06 2.718 ||| 0-2 ||| 451 48212 +a los ||| are suffering from the ||| 0.04 0.0053267 2.07417e-05 2.07558e-09 2.718 ||| 0-2 1-3 ||| 25 48212 +a los ||| are supposed to be responsible adults ||| 1 0.0700272 2.07417e-05 2.04883e-16 2.718 ||| 0-2 1-5 ||| 1 48212 +a los ||| are the ||| 0.000776197 0.000119917 0.00012445 0.000142113 2.718 ||| 0-0 1-1 ||| 7730 48212 +a los ||| are those ||| 0.00421053 0.0142682 4.14834e-05 0.000253348 2.718 ||| 1-1 ||| 475 48212 +a los ||| are to be commended ||| 0.1 0.00409398 2.07417e-05 1.34853e-10 2.718 ||| 0-1 ||| 10 48212 +a los ||| are to be given ||| 0.0243902 0.00409398 2.07417e-05 6.61069e-08 2.718 ||| 0-1 ||| 41 48212 +a los ||| are to be ||| 0.00127551 0.00409398 4.14834e-05 9.63236e-05 2.718 ||| 0-1 ||| 1568 48212 +a los ||| are to receive ||| 0.0344828 0.00409398 2.07417e-05 5.33628e-07 2.718 ||| 0-1 ||| 29 48212 +a los ||| are to them ||| 1 0.00878293 2.07417e-05 1.0697e-05 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| are to ||| 0.00123115 0.00409398 8.29669e-05 0.00531502 2.718 ||| 0-1 ||| 3249 48212 +a los ||| are transported ||| 0.0119048 0.000441422 2.07417e-05 1.94211e-07 2.718 ||| 0-1 ||| 84 48212 +a los ||| are under the ||| 0.025 0.00470099 2.07417e-05 9.23155e-06 2.718 ||| 0-1 1-2 ||| 40 48212 +a los ||| are writing to ||| 0.166667 0.00409398 2.07417e-05 1.1608e-06 2.718 ||| 0-2 ||| 6 48212 +a los ||| are ||| 1.04267e-05 1.74689e-05 4.14834e-05 0.0003313 2.718 ||| 0-0 ||| 191815 48212 +a los ||| area of the ||| 0.00226757 0.00230489 2.07417e-05 5.26928e-06 2.718 ||| 0-1 1-2 ||| 441 48212 +a los ||| areas to ||| 0.00483092 0.00409398 2.07417e-05 8.0184e-05 2.718 ||| 0-1 ||| 207 48212 +a los ||| areas ||| 3.92511e-05 0.0012191 2.07417e-05 0.0006077 2.718 ||| 1-0 ||| 25477 48212 +a los ||| arms industries to the ||| 1 0.0281035 2.07417e-05 6.74295e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| around the ||| 0.000950119 0.0113888 4.14834e-05 0.000387991 2.718 ||| 0-0 1-1 ||| 2105 48212 +a los ||| around ||| 0.000141203 0.00165907 2.07417e-05 0.0009045 2.718 ||| 0-0 ||| 7082 48212 +a los ||| arrive at the ||| 0.0196078 0.0249683 2.07417e-05 2.94914e-07 2.718 ||| 0-1 1-2 ||| 51 48212 +a los ||| as a holiday ||| 1 0.00019416 2.07417e-05 1.90533e-09 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| as a result of the Council , ||| 1 0.00230489 2.07417e-05 1.24604e-13 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| as a result of the Council ||| 0.5 0.00230489 2.07417e-05 1.04486e-12 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| as a result of the ||| 0.000643915 0.00230489 2.07417e-05 3.02156e-09 2.718 ||| 0-3 1-4 ||| 1553 48212 +a los ||| as a ||| 5.81564e-05 0.00043374 4.14834e-05 0.000388844 2.718 ||| 0-0 ||| 34390 48212 +a los ||| as all the ||| 0.0153846 0.00170533 4.14834e-05 1.0116e-05 2.718 ||| 0-0 1-1 1-2 ||| 130 48212 +a los ||| as an employer ||| 0.0714286 0.000116218 2.07417e-05 7.40823e-11 2.718 ||| 0-0 1-2 ||| 14 48212 +a los ||| as bad as ||| 0.0243902 2.71573e-05 2.07417e-05 3.49117e-10 2.718 ||| 0-0 1-1 ||| 41 48212 +a los ||| as bad ||| 0.0136986 2.71573e-05 2.07417e-05 3.42124e-08 2.718 ||| 0-0 1-1 ||| 73 48212 +a los ||| as by ||| 0.00714286 0.000181596 2.07417e-05 4.31922e-05 2.718 ||| 0-0 0-1 1-1 ||| 140 48212 +a los ||| as elected ||| 0.0625 0.000300167 2.07417e-05 4.51779e-07 2.718 ||| 0-0 1-1 ||| 16 48212 +a los ||| as far as the ||| 0.000489716 0.00612862 2.07417e-05 3.04942e-08 2.718 ||| 1-3 ||| 2042 48212 +a los ||| as far as ||| 0.00025468 0.00043374 4.14834e-05 6.11133e-08 2.718 ||| 0-2 ||| 7853 48212 +a los ||| as far ||| 0.000235849 0.00043374 2.07417e-05 5.98892e-06 2.718 ||| 0-0 ||| 4240 48212 +a los ||| as for the ||| 0.00136519 0.00566721 4.14834e-05 0.00013866 2.718 ||| 0-0 0-1 1-2 ||| 1465 48212 +a los ||| as into the ||| 0.142857 0.0131557 2.07417e-05 2.65887e-05 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| as it is of the ||| 0.25 0.00230489 2.07417e-05 7.21607e-08 2.718 ||| 0-3 1-4 ||| 4 48212 +a los ||| as it was in ||| 0.0144928 0.00104682 2.07417e-05 3.4159e-08 2.718 ||| 0-3 ||| 69 48212 +a los ||| as much to the ||| 0.117647 0.0281035 4.14834e-05 1.53903e-06 2.718 ||| 0-2 1-3 ||| 17 48212 +a los ||| as my ||| 0.00274725 0.000210385 2.07417e-05 6.04682e-06 2.718 ||| 0-0 1-1 ||| 364 48212 +a los ||| as of the ||| 0.0107527 0.00230489 2.07417e-05 0.000129472 2.718 ||| 0-1 1-2 ||| 93 48212 +a los ||| as of ||| 0.00164474 4.27355e-05 2.07417e-05 0.000144245 2.718 ||| 0-0 0-1 1-1 ||| 608 48212 +a los ||| as ourselves ||| 0.0434783 0.00043374 2.07417e-05 2.7905e-06 2.718 ||| 0-0 ||| 23 48212 +a los ||| as part ||| 0.000354988 0.00043374 2.07417e-05 1.04585e-05 2.718 ||| 0-0 ||| 2817 48212 +a los ||| as possible for those ||| 0.0909091 0.0194561 2.07417e-05 5.03605e-09 2.718 ||| 0-2 1-3 ||| 11 48212 +a los ||| as possible to the ||| 0.0102041 0.0281035 2.07417e-05 1.2299e-06 2.718 ||| 0-2 1-3 ||| 98 48212 +a los ||| as rapporteurs to our ||| 1 0.0057078 2.07417e-05 1.00846e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| as regards the ||| 0.000607165 0.0322152 6.22252e-05 1.96451e-05 2.718 ||| 0-1 1-2 ||| 4941 48212 +a los ||| as regards ||| 0.000166445 0.000192727 4.14834e-05 1.97919e-05 2.718 ||| 0-0 0-1 1-1 ||| 12016 48212 +a los ||| as sympathising with the ||| 1 0.00698995 2.07417e-05 2.92314e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| as the European one ||| 1 0.00297745 2.07417e-05 5.2446e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| as the European ||| 0.015873 0.00297745 2.07417e-05 1.2583e-05 2.718 ||| 0-0 1-1 ||| 63 48212 +a los ||| as the country is ||| 0.125 0.00297745 2.07417e-05 4.24451e-08 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| as the country ||| 0.00793651 0.00297745 2.07417e-05 1.3543e-06 2.718 ||| 0-0 1-1 ||| 126 48212 +a los ||| as the living embodiment ||| 1 0.00297745 2.07417e-05 2.20736e-13 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| as the living ||| 1 0.00297745 2.07417e-05 3.15337e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| as the money remaining ||| 0.5 0.00297745 2.07417e-05 2.01063e-11 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| as the money ||| 0.25 0.00297745 2.07417e-05 6.1487e-07 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| as the protection of ||| 0.0344828 0.00297745 2.07417e-05 2.07639e-08 2.718 ||| 0-0 1-1 ||| 29 48212 +a los ||| as the protection ||| 0.0285714 0.00297745 2.07417e-05 3.81942e-07 2.718 ||| 0-0 1-1 ||| 35 48212 +a los ||| as the ||| 0.00353767 0.00297745 0.0013897 0.00376298 2.718 ||| 0-0 1-1 ||| 18939 48212 +a los ||| as these ||| 0.00246305 0.000585224 2.07417e-05 2.13827e-05 2.718 ||| 0-0 1-1 ||| 406 48212 +a los ||| as things are ||| 0.142857 1.22322e-05 2.07417e-05 6.51867e-10 2.718 ||| 0-0 1-2 ||| 7 48212 +a los ||| as those described ||| 0.333333 0.00693189 2.07417e-05 6.53292e-09 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| as those ||| 0.0177215 0.00693189 0.000290384 0.000146478 2.718 ||| 0-0 1-1 ||| 790 48212 +a los ||| as to gain the space ||| 1 0.0281035 2.07417e-05 3.54223e-12 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| as to gain the ||| 1 0.0281035 2.07417e-05 8.55612e-08 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| as to how ||| 0.00158228 0.000284966 2.07417e-05 2.19124e-07 2.718 ||| 0-1 1-2 ||| 632 48212 +a los ||| as to the application 's legality ||| 1 0.0281035 2.07417e-05 7.10173e-17 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| as to the application 's ||| 1 0.0281035 2.07417e-05 1.77543e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| as to the application ||| 0.2 0.0281035 2.07417e-05 9.3228e-08 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| as to the ||| 0.00452489 0.0281035 0.000103709 0.00153335 2.718 ||| 0-1 1-2 ||| 1105 48212 +a los ||| as to their ||| 0.0222222 0.00543993 2.07417e-05 8.17765e-06 2.718 ||| 0-1 1-2 ||| 45 48212 +a los ||| as to view those ||| 1 0.0654285 2.07417e-05 5.39158e-08 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| as to ||| 0.000328893 0.00409398 4.14834e-05 0.00357462 2.718 ||| 0-1 ||| 6081 48212 +a los ||| as we do the ||| 0.142857 0.00297745 2.07417e-05 1.46751e-07 2.718 ||| 0-0 1-3 ||| 7 48212 +a los ||| as we saw in ||| 0.0294118 0.00104682 2.07417e-05 3.73065e-10 2.718 ||| 0-3 ||| 34 48212 +a los ||| as well as pension ||| 0.5 0.00132289 2.07417e-05 3.40794e-11 2.718 ||| 0-0 1-3 ||| 2 48212 +a los ||| as well as the ||| 0.000339098 0.00297745 2.07417e-05 5.23412e-08 2.718 ||| 0-0 0-2 1-3 ||| 2949 48212 +a los ||| as well as ||| 7.61151e-05 2.2636e-05 2.07417e-05 4.96292e-09 2.718 ||| 0-0 1-2 ||| 13138 48212 +a los ||| as well to the ||| 0.111111 0.0281035 2.07417e-05 2.43129e-06 2.718 ||| 0-2 1-3 ||| 9 48212 +a los ||| as well ||| 6.93529e-05 0.00043374 2.07417e-05 1.39095e-05 2.718 ||| 0-0 ||| 14419 48212 +a los ||| as ||| 0.000179568 0.00043374 0.000974861 0.0087724 2.718 ||| 0-0 ||| 261739 48212 +a los ||| ask it ||| 0.0185185 0.000147107 2.07417e-05 2.61413e-06 2.718 ||| 0-0 ||| 54 48212 +a los ||| ask the ||| 0.00158395 0.00100983 6.22252e-05 6.30566e-05 2.718 ||| 0-0 1-1 ||| 1894 48212 +a los ||| ask those ||| 0.0416667 0.00235101 2.07417e-05 2.45455e-06 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| ask ||| 0.000112537 0.000147107 2.07417e-05 0.000147 2.718 ||| 0-0 ||| 8886 48212 +a los ||| asked ||| 0.000191975 0.00159565 2.07417e-05 0.0008215 2.718 ||| 0-0 ||| 5209 48212 +a los ||| aspects of ||| 0.000514933 0.00209783 2.07417e-05 3.33024e-05 2.718 ||| 1-0 0-1 ||| 1942 48212 +a los ||| aspects ||| 0.000105441 0.00557805 2.07417e-05 0.0011259 2.718 ||| 1-0 ||| 9484 48212 +a los ||| assassins ||| 0.0434783 0.00556842 2.07417e-05 3.9e-06 2.718 ||| 1-0 ||| 23 48212 +a los ||| assessment of the ||| 0.00131234 0.00230489 2.07417e-05 5.51923e-07 2.718 ||| 0-1 1-2 ||| 762 48212 +a los ||| assign to the ||| 0.2 0.0281035 2.07417e-05 6.01056e-08 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| assist greatly all those ||| 1 0.0860714 2.07417e-05 1.63086e-12 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| assist the ||| 0.00542005 0.0369702 4.14834e-05 0.000337117 2.718 ||| 0-0 1-1 ||| 369 48212 +a los ||| assistance in the ||| 0.0107527 0.00718601 2.07417e-05 1.28091e-06 2.718 ||| 0-1 1-2 ||| 93 48212 +a los ||| assisting ||| 0.00371058 0.0181078 4.14834e-05 0.00015 2.718 ||| 0-0 1-0 ||| 539 48212 +a los ||| associated with driving ||| 0.5 0.00378908 2.07417e-05 1.47111e-10 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| association agreement within the meaning ||| 0.25 0.00151022 2.07417e-05 1.90118e-17 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| association agreement within the ||| 0.25 0.00151022 2.07417e-05 6.213e-13 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| at EUR ||| 0.0263158 0.00700839 2.07417e-05 1.9424e-05 2.718 ||| 0-0 1-1 ||| 38 48212 +a los ||| at a fixed ||| 1 0.00147153 2.07417e-05 1.17674e-08 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| at a time ||| 0.000388651 0.00363727 2.07417e-05 2.47674e-06 2.718 ||| 0-0 ||| 2573 48212 +a los ||| at a ||| 0.000353815 0.00363727 6.22252e-05 0.00150865 2.718 ||| 0-0 ||| 8479 48212 +a los ||| at all costs ||| 0.00236407 0.00363284 2.07417e-05 6.8806e-09 2.718 ||| 0-0 1-1 ||| 423 48212 +a los ||| at all that the ||| 0.0555556 0.0249683 2.07417e-05 1.16051e-06 2.718 ||| 0-0 1-3 ||| 18 48212 +a los ||| at all the ||| 0.0113636 0.0143006 2.07417e-05 3.92484e-05 2.718 ||| 0-0 1-1 1-2 ||| 88 48212 +a los ||| at all those ||| 0.2 0.0308812 2.07417e-05 1.52779e-06 2.718 ||| 0-0 1-1 1-2 ||| 5 48212 +a los ||| at all to the ||| 0.133333 0.0249683 8.29669e-05 6.13028e-06 2.718 ||| 0-0 1-3 ||| 30 48212 +a los ||| at all to ||| 0.0247934 0.00363284 6.22252e-05 8.13029e-06 2.718 ||| 0-0 1-1 ||| 121 48212 +a los ||| at all ||| 0.0012908 0.00363284 0.000145192 9.14974e-05 2.718 ||| 0-0 1-1 ||| 5423 48212 +a los ||| at an ||| 0.000719942 0.00363727 2.07417e-05 0.000151277 2.718 ||| 0-0 ||| 1389 48212 +a los ||| at any ||| 0.000666223 0.00363674 2.07417e-05 3.14351e-05 2.718 ||| 0-0 1-1 ||| 1501 48212 +a los ||| at border ||| 0.2 0.00122123 2.07417e-05 1.0585e-06 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| at children and ||| 0.125 0.0599078 2.07417e-05 2.35105e-06 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| at children ||| 0.0526316 0.0599078 2.07417e-05 0.000187695 2.718 ||| 0-0 1-1 ||| 19 48212 +a los ||| at encouraging those ||| 1 0.0581296 2.07417e-05 1.35258e-08 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| at every ||| 0.00201207 0.0294485 2.07417e-05 0.000111088 2.718 ||| 0-0 1-1 ||| 497 48212 +a los ||| at hand ||| 0.00510204 0.00363727 2.07417e-05 1.34984e-05 2.718 ||| 0-0 ||| 196 48212 +a los ||| at individual ||| 0.0909091 0.0225308 2.07417e-05 4.37457e-05 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| at issue ||| 0.00526316 0.00363727 4.14834e-05 2.5758e-05 2.718 ||| 0-0 ||| 380 48212 +a los ||| at keeping ||| 0.0769231 0.000791687 2.07417e-05 3.30143e-07 2.718 ||| 0-0 1-1 ||| 13 48212 +a los ||| at my ||| 0.00641026 0.00176425 2.07417e-05 2.34606e-05 2.718 ||| 0-0 1-1 ||| 156 48212 +a los ||| at ordinary ||| 1 0.0208591 2.07417e-05 7.34484e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| at our disposal ||| 0.00223214 0.00507106 2.07417e-05 1.0234e-08 2.718 ||| 0-0 1-1 ||| 448 48212 +a los ||| at our ||| 0.00457143 0.00507106 8.29669e-05 0.000121544 2.718 ||| 0-0 1-1 ||| 875 48212 +a los ||| at possible ||| 0.2 0.000394853 2.07417e-05 2.41651e-06 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| at prices under ||| 1 0.0699074 2.07417e-05 4.27905e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| at prices ||| 0.0181818 0.0699074 2.07417e-05 0.00011926 2.718 ||| 0-0 1-1 ||| 55 48212 +a los ||| at so ||| 0.166667 0.00363727 2.07417e-05 7.72501e-05 2.718 ||| 0-0 ||| 6 48212 +a los ||| at the age of ||| 0.103448 0.0249683 6.22252e-05 4.88124e-08 2.718 ||| 0-0 1-1 ||| 29 48212 +a los ||| at the age ||| 0.129032 0.0249683 8.29669e-05 8.97882e-07 2.718 ||| 0-0 1-1 ||| 31 48212 +a los ||| at the attending ||| 1 0.0249683 2.07417e-05 1.25557e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| at the cost of ||| 0.00452489 0.0249683 2.07417e-05 6.57182e-08 2.718 ||| 0-0 1-1 ||| 221 48212 +a los ||| at the cost ||| 0.00440529 0.0249683 2.07417e-05 1.20886e-06 2.718 ||| 0-0 1-1 ||| 227 48212 +a los ||| at the disposal of ||| 0.0138889 0.0249683 2.07417e-05 6.68294e-08 2.718 ||| 0-0 1-1 ||| 72 48212 +a los ||| at the disposal ||| 0.01 0.0249683 2.07417e-05 1.22929e-06 2.718 ||| 0-0 1-1 ||| 100 48212 +a los ||| at the door of the ||| 0.0869565 0.0249683 4.14834e-05 2.20731e-09 2.718 ||| 0-0 1-1 ||| 23 48212 +a los ||| at the door of their ||| 1 0.0249683 2.07417e-05 4.16749e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| at the door of ||| 0.0689655 0.0249683 4.14834e-05 3.59545e-08 2.718 ||| 0-0 1-1 ||| 29 48212 +a los ||| at the door ||| 0.0545455 0.0249683 6.22252e-05 6.61366e-07 2.718 ||| 0-0 1-1 ||| 55 48212 +a los ||| at the drop of ||| 0.166667 0.0249683 2.07417e-05 1.25404e-08 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| at the drop ||| 0.125 0.0249683 2.07417e-05 2.30675e-07 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| at the expense ||| 0.00197628 0.0249683 4.14834e-05 2.83234e-07 2.718 ||| 0-0 1-1 ||| 1012 48212 +a los ||| at the front ||| 0.0285714 0.0249683 2.07417e-05 1.17674e-06 2.718 ||| 0-0 1-1 ||| 35 48212 +a los ||| at the hands ||| 0.0176991 0.0249683 4.14834e-05 1.47165e-06 2.718 ||| 0-0 1-1 ||| 113 48212 +a los ||| at the level of every ||| 0.5 0.0249683 2.07417e-05 1.10462e-10 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| at the level of the ||| 0.00823045 0.0167802 4.14834e-05 1.7719e-08 2.718 ||| 0-0 1-1 1-3 1-4 ||| 243 48212 +a los ||| at the level of ||| 0.00196464 0.0249683 2.07417e-05 6.78929e-07 2.718 ||| 0-0 1-1 ||| 509 48212 +a los ||| at the level ||| 0.0015748 0.0249683 2.07417e-05 1.24886e-05 2.718 ||| 0-0 1-1 ||| 635 48212 +a los ||| at the mercy of the ||| 0.0196078 0.0167802 2.07417e-05 7.45714e-11 2.718 ||| 0-0 1-1 1-3 1-4 ||| 51 48212 +a los ||| at the mercy ||| 0.00666667 0.0249683 2.07417e-05 5.25589e-08 2.718 ||| 0-0 1-1 ||| 150 48212 +a los ||| at the moment ||| 0.000477099 0.0249683 4.14834e-05 2.63817e-06 2.718 ||| 0-0 1-1 ||| 4192 48212 +a los ||| at the monitoring ||| 0.5 0.0249683 2.07417e-05 5.56249e-07 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| at the same time , I ||| 0.00877193 0.0249683 2.07417e-05 1.62698e-11 2.718 ||| 0-0 1-1 ||| 114 48212 +a los ||| at the same time , ||| 0.000151653 0.0249683 2.07417e-05 2.3001e-09 2.718 ||| 0-0 1-1 ||| 6594 48212 +a los ||| at the same time making ||| 0.111111 0.0249683 2.07417e-05 7.41983e-12 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| at the same time ||| 0.000314021 0.0249683 8.29669e-05 1.92873e-08 2.718 ||| 0-0 1-1 ||| 12738 48212 +a los ||| at the same ||| 0.0003803 0.0249683 8.29669e-05 1.17484e-05 2.718 ||| 0-0 1-1 ||| 10518 48212 +a los ||| at the time ||| 0.000889284 0.0249683 4.14834e-05 2.39683e-05 2.718 ||| 0-0 1-1 ||| 2249 48212 +a los ||| at the ||| 0.00623573 0.0249683 0.00674106 0.0145997 2.718 ||| 0-0 1-1 ||| 52119 48212 +a los ||| at their ||| 0.00459418 0.00483308 6.22252e-05 7.78628e-05 2.718 ||| 0-0 1-1 ||| 653 48212 +a los ||| at these ||| 0.00502513 0.00490758 2.07417e-05 8.29613e-05 2.718 ||| 0-0 1-1 ||| 199 48212 +a los ||| at this ||| 0.000155982 0.00363727 2.07417e-05 0.000219916 2.718 ||| 0-0 ||| 6411 48212 +a los ||| at those ||| 0.147826 0.0581296 0.000352609 0.000568309 2.718 ||| 0-0 1-1 ||| 115 48212 +a los ||| at times ||| 0.00123305 0.00641451 2.07417e-05 8.57011e-06 2.718 ||| 0-0 1-1 ||| 811 48212 +a los ||| at to the ||| 1 0.0265359 2.07417e-05 0.0051143 2.718 ||| 0-0 0-1 1-2 ||| 1 48212 +a los ||| at ||| 0.000699697 0.00363727 0.00207417 0.0340354 2.718 ||| 0-0 ||| 142919 48212 +a los ||| attached to the ||| 0.00512821 0.0281035 2.07417e-05 4.80845e-06 2.718 ||| 0-1 1-2 ||| 195 48212 +a los ||| attacked ||| 0.00215517 0.00206721 2.07417e-05 6.21e-05 2.718 ||| 0-0 ||| 464 48212 +a los ||| attacks ||| 0.000328947 0.00772413 2.07417e-05 0.0005775 2.718 ||| 1-0 ||| 3040 48212 +a los ||| attempts to tell those ||| 1 0.0654285 2.07417e-05 1.82082e-11 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| attend the ||| 0.00653595 0.0312553 2.07417e-05 0.000152322 2.718 ||| 0-0 1-1 ||| 153 48212 +a los ||| attend ||| 0.00128041 0.00455312 2.07417e-05 0.0003551 2.718 ||| 0-0 ||| 781 48212 +a los ||| attention of the ||| 0.00244499 0.00230489 2.07417e-05 3.31534e-06 2.718 ||| 0-1 1-2 ||| 409 48212 +a los ||| attention on ||| 0.00207469 0.00139487 2.07417e-05 9.91257e-06 2.718 ||| 0-1 ||| 482 48212 +a los ||| attention paid to ||| 0.0140845 0.00409398 2.07417e-05 1.23205e-08 2.718 ||| 0-2 ||| 71 48212 +a los ||| attention to the ||| 0.000610501 0.0281035 4.14834e-05 3.9264e-05 2.718 ||| 0-1 1-2 ||| 3276 48212 +a los ||| attention to those ||| 0.0277778 0.0654285 2.07417e-05 1.52839e-06 2.718 ||| 0-1 1-2 ||| 36 48212 +a los ||| attentive to the ||| 0.0263158 0.0281035 2.07417e-05 1.05185e-07 2.718 ||| 0-1 1-2 ||| 38 48212 +a los ||| attitude is , to this ||| 0.5 0.00409398 2.07417e-05 4.416e-10 2.718 ||| 0-3 ||| 2 48212 +a los ||| attitude is , to ||| 0.5 0.00409398 2.07417e-05 6.83443e-08 2.718 ||| 0-3 ||| 2 48212 +a los ||| attributed to the ||| 0.0175439 0.0281035 2.07417e-05 9.76717e-07 2.718 ||| 0-1 1-2 ||| 57 48212 +a los ||| auditors on ||| 0.333333 0.0167131 2.07417e-05 2.69343e-06 2.718 ||| 1-0 0-1 ||| 3 48212 +a los ||| available following the ||| 0.5 0.00881011 2.07417e-05 1.34513e-07 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| available to the ||| 0.00304414 0.0281035 4.14834e-05 4.7799e-05 2.718 ||| 0-1 1-2 ||| 657 48212 +a los ||| available to their fellow ||| 1 0.00315408 2.07417e-05 6.44949e-12 2.718 ||| 0-1 1-2 1-3 ||| 1 48212 +a los ||| available to ||| 0.000445633 0.00409398 2.07417e-05 0.000111431 2.718 ||| 0-1 ||| 2244 48212 +a los ||| available ||| 0.000100817 0.000461722 2.07417e-05 0.0001079 2.718 ||| 1-0 ||| 9919 48212 +a los ||| await them ||| 0.125 0.0017019 2.07417e-05 2.25322e-07 2.718 ||| 0-0 ||| 8 48212 +a los ||| await ||| 0.00179856 0.0017019 2.07417e-05 8.4e-05 2.718 ||| 0-0 ||| 556 48212 +a los ||| awarded to trees ||| 1 0.0416786 2.07417e-05 4.68353e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| awareness of the ||| 0.00247525 0.00230489 2.07417e-05 3.79368e-07 2.718 ||| 0-1 1-2 ||| 404 48212 +a los ||| away from the ||| 0.0283019 0.0053267 0.000186676 9.82283e-07 2.718 ||| 0-1 1-2 ||| 318 48212 +a los ||| away from those ||| 0.125 0.0124013 2.07417e-05 3.82365e-08 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| away the ||| 0.0136986 0.00462077 2.07417e-05 0.000101019 2.718 ||| 0-0 1-1 ||| 73 48212 +a los ||| away to the ||| 0.25 0.0281035 2.07417e-05 4.7799e-05 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| away ||| 0.000614628 0.000673132 2.07417e-05 0.0002355 2.718 ||| 0-0 ||| 1627 48212 +a los ||| back ' ||| 0.0714286 0.00238515 2.07417e-05 3.91334e-06 2.718 ||| 0-0 1-1 ||| 14 48212 +a los ||| back in the ||| 0.00704225 0.00718601 2.07417e-05 1.73348e-05 2.718 ||| 0-1 1-2 ||| 142 48212 +a los ||| back into line with the ||| 0.333333 0.00698995 2.07417e-05 1.45593e-12 2.718 ||| 0-3 1-4 ||| 3 48212 +a los ||| back on the ||| 0.00714286 0.00957523 2.07417e-05 1.0945e-05 2.718 ||| 0-1 1-2 ||| 140 48212 +a los ||| back onto ||| 0.0204082 0.00369015 2.07417e-05 1.60213e-07 2.718 ||| 0-1 ||| 49 48212 +a los ||| back the ||| 0.0136986 0.00656226 6.22252e-05 0.000315583 2.718 ||| 0-0 1-1 ||| 219 48212 +a los ||| back to our ||| 0.0434783 0.0057078 2.07417e-05 8.41397e-07 2.718 ||| 0-1 1-2 ||| 23 48212 +a los ||| back to the simple ||| 1 0.0281035 2.07417e-05 4.36612e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| back to the ||| 0.0513699 0.0281035 0.000622252 0.000101068 2.718 ||| 0-1 1-2 ||| 584 48212 +a los ||| backroom ||| 0.047619 0.00250579 2.07417e-05 1.9e-06 2.718 ||| 1-0 ||| 21 48212 +a los ||| backs of the ||| 0.05 0.00230489 2.07417e-05 1.00234e-07 2.718 ||| 0-1 1-2 ||| 20 48212 +a los ||| banks ||| 0.000298507 0.0135999 2.07417e-05 0.0010957 2.718 ||| 1-0 ||| 3350 48212 +a los ||| barrel , to the ||| 1 0.0281035 2.07417e-05 4.47992e-08 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| based on ||| 7.83208e-05 0.00139487 2.07417e-05 8.89969e-06 2.718 ||| 0-1 ||| 12768 48212 +a los ||| basis of the ||| 0.000479846 0.00230489 2.07417e-05 7.53407e-06 2.718 ||| 0-1 1-2 ||| 2084 48212 +a los ||| basis so as to gain the space ||| 1 0.0281035 2.07417e-05 4.77404e-18 2.718 ||| 0-3 1-5 ||| 1 48212 +a los ||| basis so as to gain the ||| 1 0.0281035 2.07417e-05 1.15315e-13 2.718 ||| 0-3 1-5 ||| 1 48212 +a los ||| basis to individual ||| 1 0.0253598 2.07417e-05 2.67354e-07 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| be attributed to the ||| 0.0714286 0.0281035 2.07417e-05 1.77009e-08 2.718 ||| 0-2 1-3 ||| 14 48212 +a los ||| be back to the ||| 0.25 0.0281035 2.07417e-05 1.83164e-06 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| be borne by the ||| 0.03125 0.00413296 2.07417e-05 2.04672e-09 2.718 ||| 0-2 1-3 ||| 32 48212 +a los ||| be chipping in towards the ||| 1 0.0131014 2.07417e-05 6.30106e-13 2.718 ||| 0-2 0-3 1-4 ||| 1 48212 +a los ||| be contributing to ||| 0.0625 0.00409398 2.07417e-05 6.85636e-08 2.718 ||| 0-2 ||| 16 48212 +a los ||| be delighted with an ||| 0.5 0.00101826 2.07417e-05 2.51478e-11 2.718 ||| 0-2 ||| 2 48212 +a los ||| be delighted with ||| 0.0909091 0.00101826 2.07417e-05 5.65794e-09 2.718 ||| 0-2 ||| 11 48212 +a los ||| be demanded . in the case of ||| 1 0.00718601 2.07417e-05 7.40602e-16 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| be demanded . in the case ||| 1 0.00718601 2.07417e-05 1.3623e-14 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| be demanded . in the ||| 1 0.00718601 2.07417e-05 1.2733e-11 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| be developing ||| 0.05 0.00755554 2.07417e-05 6.45248e-05 2.718 ||| 1-1 ||| 20 48212 +a los ||| be drawn up in the ||| 0.125 0.00718601 2.07417e-05 2.26361e-10 2.718 ||| 0-3 1-4 ||| 8 48212 +a los ||| be encouraging the ||| 1 0.00164726 2.07417e-05 2.97742e-07 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| be for the ||| 0.0114943 0.00835696 2.07417e-05 0.000286458 2.718 ||| 0-1 1-2 ||| 87 48212 +a los ||| be given the ||| 0.00420168 0.00453706 2.07417e-05 8.21705e-06 2.718 ||| 0-1 1-2 ||| 238 48212 +a los ||| be given to them ||| 0.125 0.00878293 2.07417e-05 8.76882e-09 2.718 ||| 0-2 1-3 ||| 8 48212 +a los ||| be giving the ||| 0.15 0.016695 6.22252e-05 7.84079e-06 2.718 ||| 0-1 1-2 ||| 20 48212 +a los ||| be helping the ||| 0.2 0.0369646 2.07417e-05 9.25253e-06 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| be identified with those ||| 1 0.0162735 2.07417e-05 1.94505e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| be in a position to give the ||| 1 0.00718601 2.07417e-05 3.67119e-13 2.718 ||| 0-1 1-6 ||| 1 48212 +a los ||| be in the ||| 0.00511509 0.00718601 4.14834e-05 0.000467077 2.718 ||| 0-1 1-2 ||| 391 48212 +a los ||| be incorporated after ||| 0.5 0.000607523 2.07417e-05 3.0707e-10 2.718 ||| 0-2 ||| 2 48212 +a los ||| be linked to the ||| 0.0169492 0.0281035 2.07417e-05 1.13558e-07 2.718 ||| 0-2 1-3 ||| 59 48212 +a los ||| be made by ||| 0.0111111 0.00060207 2.07417e-05 3.12348e-07 2.718 ||| 0-2 ||| 90 48212 +a los ||| be made for ||| 0.0119048 0.0012174 2.07417e-05 1.39891e-06 2.718 ||| 0-2 ||| 84 48212 +a los ||| be made of the ||| 0.027027 0.00230489 2.07417e-05 4.81681e-07 2.718 ||| 0-2 1-3 ||| 37 48212 +a los ||| be made to achieving the ||| 1 0.0281035 2.07417e-05 3.77645e-10 2.718 ||| 0-2 1-4 ||| 1 48212 +a los ||| be made to the ||| 0.0212766 0.0281035 2.07417e-05 5.7046e-06 2.718 ||| 0-2 1-3 ||| 47 48212 +a los ||| be making the ||| 0.125 0.00336792 2.07417e-05 3.54802e-06 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| be more on the ||| 0.5 0.00957523 2.07417e-05 6.73483e-07 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| be of the ||| 0.0175439 0.00230489 2.07417e-05 0.000229941 2.718 ||| 0-1 1-2 ||| 57 48212 +a los ||| be offering ||| 0.0666667 0.00184419 2.07417e-05 3.20957e-06 2.718 ||| 0-1 ||| 15 48212 +a los ||| be on the Committee , according ||| 1 0.00957523 2.07417e-05 4.74964e-13 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| be on the Committee , ||| 1 0.00957523 2.07417e-05 5.36683e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| be on the Committee ||| 0.5 0.00957523 2.07417e-05 4.50031e-08 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| be on the budget ||| 1 0.00957523 2.07417e-05 3.63917e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| be on the ||| 0.00749064 0.00957523 4.14834e-05 0.000294909 2.718 ||| 0-1 1-2 ||| 267 48212 +a los ||| be open to the ||| 0.0454545 0.0281035 2.07417e-05 4.38983e-07 2.718 ||| 0-2 1-3 ||| 22 48212 +a los ||| be paid back to the ||| 0.333333 0.0281035 2.07417e-05 2.46539e-10 2.718 ||| 0-3 1-4 ||| 3 48212 +a los ||| be paying back to the ||| 1 0.0281035 2.07417e-05 6.19094e-11 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| be possible for it to ||| 0.25 0.00409398 2.07417e-05 6.95972e-10 2.718 ||| 0-4 ||| 4 48212 +a los ||| be possible to ||| 0.00162602 0.00409398 2.07417e-05 5.09212e-06 2.718 ||| 0-2 ||| 615 48212 +a los ||| be regarding the ||| 0.5 0.0227982 2.07417e-05 2.61616e-05 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| be replacing the ||| 0.5 0.00280721 2.07417e-05 1.13499e-07 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| be sent to the ||| 0.0666667 0.0281035 2.07417e-05 1.63666e-07 2.718 ||| 0-2 1-3 ||| 15 48212 +a los ||| be set at a fixed ||| 1 0.00147153 2.07417e-05 1.24629e-13 2.718 ||| 0-2 1-4 ||| 1 48212 +a los ||| be so in the ||| 0.125 0.00718601 2.07417e-05 1.06013e-06 2.718 ||| 0-2 1-3 ||| 8 48212 +a los ||| be taken by the ||| 0.0131579 0.00413296 2.07417e-05 5.82996e-08 2.718 ||| 0-2 1-3 ||| 76 48212 +a los ||| be targeted at the ||| 0.1 0.0249683 2.07417e-05 7.43495e-09 2.718 ||| 0-2 1-3 ||| 10 48212 +a los ||| be the same right across the ||| 1 0.00600144 2.07417e-05 1.21855e-13 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| be the targets of the ||| 1 0.00230489 2.07417e-05 3.35973e-10 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| be to the ||| 0.0128205 0.0281035 2.07417e-05 0.00272322 2.718 ||| 0-1 1-2 ||| 78 48212 +a los ||| be to ||| 0.000746826 0.00409398 2.07417e-05 0.00634848 2.718 ||| 0-1 ||| 1339 48212 +a los ||| be up to the ||| 0.0163934 0.0281035 2.07417e-05 9.28754e-06 2.718 ||| 0-2 1-3 ||| 61 48212 +a los ||| be writing to the ||| 0.5 0.0281035 2.07417e-05 5.94751e-07 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| bear on the ||| 0.0338983 0.00957523 4.14834e-05 2.43603e-06 2.718 ||| 0-1 1-2 ||| 59 48212 +a los ||| beat the ||| 0.0952381 0.0217775 4.14834e-05 1.52708e-05 2.718 ||| 0-0 1-1 ||| 21 48212 +a los ||| because of the ||| 0.00147275 0.000636466 0.000103709 7.53462e-06 2.718 ||| 0-0 1-2 ||| 3395 48212 +a los ||| because of ||| 0.00013519 2.37963e-05 2.07417e-05 5.31275e-06 2.718 ||| 0-0 0-1 1-1 ||| 7397 48212 +a los ||| because the survivors need to be provided ||| 1 0.000636466 2.07417e-05 3.28329e-20 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| because the survivors need to be ||| 1 0.000636466 2.07417e-05 1.4325e-16 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| because the survivors need to ||| 1 0.000636466 2.07417e-05 7.90437e-15 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| because the survivors need ||| 1 0.000636466 2.07417e-05 8.89549e-14 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| because the survivors ||| 1 0.000636466 2.07417e-05 9.7017e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| because the ||| 0.000257765 0.000636466 4.14834e-05 0.000138596 2.718 ||| 0-0 1-1 ||| 7759 48212 +a los ||| because you talked about the ||| 0.333333 0.00643683 2.07417e-05 2.38513e-14 2.718 ||| 0-3 1-4 ||| 3 48212 +a los ||| because ||| 1.17815e-05 9.27173e-05 2.07417e-05 0.0003231 2.718 ||| 0-0 ||| 84879 48212 +a los ||| become an adult at ||| 0.333333 0.0101077 2.07417e-05 1.26202e-12 2.718 ||| 1-2 0-3 ||| 3 48212 +a los ||| become involved in the ||| 0.030303 0.00718601 2.07417e-05 2.54622e-09 2.718 ||| 0-2 1-3 ||| 33 48212 +a los ||| become more acute ||| 0.111111 0.000248509 2.07417e-05 1.89211e-12 2.718 ||| 1-2 ||| 9 48212 +a los ||| been affected by the consequences of far-reaching ||| 1 0.00547344 2.07417e-05 5.05944e-20 2.718 ||| 0-1 0-2 1-3 ||| 1 48212 +a los ||| been affected by the consequences of ||| 1 0.00547344 2.07417e-05 9.36933e-15 2.718 ||| 0-1 0-2 1-3 ||| 1 48212 +a los ||| been affected by the consequences ||| 1 0.00547344 2.07417e-05 1.72344e-13 2.718 ||| 0-1 0-2 1-3 ||| 1 48212 +a los ||| been affected by the ||| 0.0714286 0.00547344 2.07417e-05 4.05516e-09 2.718 ||| 0-1 0-2 1-3 ||| 14 48212 +a los ||| been applied to ||| 0.0769231 0.00409398 2.07417e-05 1.26681e-07 2.718 ||| 0-2 ||| 13 48212 +a los ||| been contacted by ||| 0.142857 0.00060207 2.07417e-05 3.84626e-11 2.718 ||| 0-2 ||| 7 48212 +a los ||| been in ||| 0.00109769 0.00104682 2.07417e-05 0.000200627 2.718 ||| 0-1 ||| 911 48212 +a los ||| been invited to ||| 0.0232558 0.00409398 2.07417e-05 7.60323e-09 2.718 ||| 0-2 ||| 43 48212 +a los ||| been returned to the ||| 0.2 0.0281035 2.07417e-05 6.67343e-09 2.718 ||| 0-2 1-3 ||| 5 48212 +a los ||| before a ||| 0.00431034 0.000362137 2.07417e-05 2.3506e-05 2.718 ||| 0-0 ||| 232 48212 +a los ||| before the interests ||| 0.0588235 0.00192407 2.07417e-05 2.32002e-07 2.718 ||| 0-0 1-1 1-2 ||| 17 48212 +a los ||| before the mention of ||| 1 0.00248592 2.07417e-05 1.20202e-09 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| before the mention ||| 1 0.00248592 2.07417e-05 2.21106e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| before the ||| 0.00360065 0.00248592 0.000456318 0.000227476 2.718 ||| 0-0 1-1 ||| 6110 48212 +a los ||| before those ||| 0.130435 0.00578755 6.22252e-05 8.85474e-06 2.718 ||| 0-0 1-1 ||| 23 48212 +a los ||| before ||| 0.000133412 0.000362137 0.000103709 0.0005303 2.718 ||| 0-0 ||| 37478 48212 +a los ||| behalf of the ||| 0.000143462 0.00230489 4.14834e-05 4.04109e-06 2.718 ||| 0-1 1-2 ||| 13941 48212 +a los ||| behaved towards the ||| 0.5 0.0190168 2.07417e-05 2.02538e-09 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| behind all this , ||| 0.25 0.00164283 2.07417e-05 1.59586e-09 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| behind all this ||| 0.0416667 0.00164283 2.07417e-05 1.3382e-08 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| behind all ||| 0.0169492 0.00164283 2.07417e-05 2.07107e-06 2.718 ||| 0-0 1-1 ||| 59 48212 +a los ||| behind the scenes ||| 0.0111111 0.0112911 2.07417e-05 1.5532e-09 2.718 ||| 0-0 1-1 ||| 90 48212 +a los ||| behind the ||| 0.00530705 0.0112911 0.000145192 0.000330468 2.718 ||| 0-0 1-1 ||| 1319 48212 +a los ||| behind those ||| 0.136364 0.0262872 6.22252e-05 1.28638e-05 2.718 ||| 0-0 1-1 ||| 22 48212 +a los ||| being compulsory for ||| 1 0.000812467 2.07417e-05 2.75791e-09 2.718 ||| 1-1 0-2 ||| 1 48212 +a los ||| being empowered to ||| 0.5 0.00409398 2.07417e-05 1.7944e-09 2.718 ||| 0-2 ||| 2 48212 +a los ||| being focused on the ||| 0.5 0.00957523 2.07417e-05 1.03269e-09 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| being given priority over ||| 0.5 0.00121592 2.07417e-05 2.53153e-13 2.718 ||| 0-3 ||| 2 48212 +a los ||| being given to the ||| 0.05 0.0281035 2.07417e-05 2.93477e-07 2.718 ||| 0-2 1-3 ||| 20 48212 +a los ||| being informed of the ||| 0.125 0.00230489 2.07417e-05 1.0796e-09 2.718 ||| 0-2 1-3 ||| 8 48212 +a los ||| being paid to the ||| 0.1 0.0281035 2.07417e-05 5.75579e-08 2.718 ||| 0-2 1-3 ||| 10 48212 +a los ||| being reflected in the ||| 0.142857 0.00718601 2.07417e-05 1.48155e-09 2.718 ||| 0-2 1-3 ||| 7 48212 +a los ||| being the targets ||| 0.5 0.00612862 2.07417e-05 2.90532e-08 2.718 ||| 1-1 ||| 2 48212 +a los ||| being the ||| 0.00111982 0.00612862 2.07417e-05 0.00122072 2.718 ||| 1-1 ||| 893 48212 +a los ||| believed to be ||| 0.0232558 0.00409398 2.07417e-05 7.1103e-08 2.718 ||| 0-1 ||| 43 48212 +a los ||| believed to ||| 0.015873 0.00409398 2.07417e-05 3.92338e-06 2.718 ||| 0-1 ||| 63 48212 +a los ||| belong to the ||| 0.0057971 0.0281035 4.14834e-05 4.32761e-06 2.718 ||| 0-1 1-2 ||| 345 48212 +a los ||| belonging to ||| 0.00143266 0.00409398 2.07417e-05 9.45814e-06 2.718 ||| 0-1 ||| 698 48212 +a los ||| below the ||| 0.00136426 0.00454394 2.07417e-05 4.03219e-05 2.718 ||| 0-0 1-1 ||| 733 48212 +a los ||| benefit of the ||| 0.00217391 0.00230489 2.07417e-05 1.67099e-06 2.718 ||| 0-1 1-2 ||| 460 48212 +a los ||| benefit the ||| 0.0111111 0.00399027 8.29669e-05 0.000118649 2.718 ||| 0-0 1-1 ||| 360 48212 +a los ||| benefit to the ||| 0.00847458 0.0281035 2.07417e-05 1.97898e-05 2.718 ||| 0-1 1-2 ||| 118 48212 +a los ||| benefiting the ||| 0.016129 0.0141325 2.07417e-05 3.83487e-05 2.718 ||| 0-0 1-1 ||| 62 48212 +a los ||| benefits ||| 0.000337724 0.00127045 4.14834e-05 0.0001478 2.718 ||| 1-0 ||| 5922 48212 +a los ||| better of the ||| 0.25 0.00230489 2.07417e-05 2.15567e-06 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| between Israel ||| 0.00442478 6.04196e-05 2.07417e-05 1.52796e-09 2.718 ||| 1-0 ||| 226 48212 +a los ||| between the ||| 0.000366569 7.81917e-05 0.000165934 1.36837e-05 2.718 ||| 0-0 1-1 ||| 21824 48212 +a los ||| between ||| 3.47923e-05 6.04196e-05 4.14834e-05 6.42e-05 2.718 ||| 1-0 ||| 57484 48212 +a los ||| beyond the ||| 0.000648508 0.00179244 2.07417e-05 5.04882e-05 2.718 ||| 0-0 1-1 ||| 1542 48212 +a los ||| bias , to the ||| 1 0.0281035 2.07417e-05 4.47992e-08 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| binding those ||| 0.25 0.0142682 2.07417e-05 2.93878e-07 2.718 ||| 1-1 ||| 4 48212 +a los ||| blame the ||| 0.0113636 0.0121279 2.07417e-05 6.5759e-05 2.718 ||| 0-0 1-1 ||| 88 48212 +a los ||| blame ||| 0.00073046 0.00176673 2.07417e-05 0.0001533 2.718 ||| 0-0 ||| 1369 48212 +a los ||| blamed on the ||| 0.142857 0.0156153 2.07417e-05 7.58309e-07 2.718 ||| 0-0 0-1 1-2 ||| 7 48212 +a los ||| board in ||| 0.0153846 0.00104682 2.07417e-05 8.02101e-06 2.718 ||| 0-1 ||| 65 48212 +a los ||| bodies ||| 0.000180473 0.00827379 2.07417e-05 0.0009353 2.718 ||| 1-0 ||| 5541 48212 +a los ||| bonus to the ||| 0.333333 0.0281035 2.07417e-05 1.05185e-07 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| borne by the ||| 0.00813008 0.00413296 2.07417e-05 1.12936e-07 2.718 ||| 0-1 1-2 ||| 123 48212 +a los ||| both civil ||| 0.05 0.000812676 2.07417e-05 4.88318e-07 2.718 ||| 0-0 1-0 1-1 ||| 20 48212 +a los ||| both for the ||| 0.0134771 0.00835696 0.000103709 2.61833e-05 2.718 ||| 0-1 1-2 ||| 371 48212 +a los ||| both of ||| 0.0027137 0.00176695 4.14834e-05 6.51172e-05 2.718 ||| 1-0 ||| 737 48212 +a los ||| both on the ||| 0.0100503 0.00957523 4.14834e-05 2.69558e-05 2.718 ||| 0-1 1-2 ||| 199 48212 +a los ||| both the ||| 0.00340053 0.00251276 0.000290384 0.000281138 2.718 ||| 0-0 1-1 ||| 4117 48212 +a los ||| both to the ||| 0.0136054 0.0281035 8.29669e-05 0.000248912 2.718 ||| 0-1 1-2 ||| 294 48212 +a los ||| both to those ||| 0.0909091 0.0654285 2.07417e-05 9.68919e-06 2.718 ||| 0-1 1-2 ||| 11 48212 +a los ||| both to ||| 0.00119332 0.00810255 2.07417e-05 0.000419591 2.718 ||| 1-0 0-1 ||| 838 48212 +a los ||| both ||| 0.000769083 0.00176695 0.000497801 0.0011978 2.718 ||| 1-0 ||| 31206 48212 +a los ||| break the ||| 0.00392157 7.44741e-05 2.07417e-05 3.86061e-07 2.718 ||| 0-0 1-1 ||| 255 48212 +a los ||| briefly to the ||| 0.010989 0.0281035 2.07417e-05 2.1638e-06 2.718 ||| 0-1 1-2 ||| 91 48212 +a los ||| bring all ||| 0.0208333 0.000288071 2.07417e-05 5.12928e-07 2.718 ||| 0-0 1-1 ||| 48 48212 +a los ||| bring pressure to bear on the ||| 0.0333333 0.00957523 2.07417e-05 4.04979e-15 2.718 ||| 0-4 1-5 ||| 30 48212 +a los ||| bring relief to the ||| 0.5 0.0281035 2.07417e-05 5.23905e-10 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| bring the ||| 0.00530504 0.0019799 8.29669e-05 8.18449e-05 2.718 ||| 0-0 1-1 ||| 754 48212 +a los ||| bringing the ||| 0.00254453 0.0065741 2.07417e-05 9.43704e-05 2.718 ||| 0-0 1-1 ||| 393 48212 +a los ||| broadcasts , ||| 0.0833333 0.00169884 2.07417e-05 9.30187e-07 2.718 ||| 1-0 ||| 12 48212 +a los ||| broadcasts ||| 0.00694444 0.00169884 2.07417e-05 7.8e-06 2.718 ||| 1-0 ||| 144 48212 +a los ||| brought to bear ||| 0.0142857 0.00409398 2.07417e-05 1.46832e-08 2.718 ||| 0-1 ||| 70 48212 +a los ||| brought to such ||| 0.333333 0.00409398 2.07417e-05 2.02927e-07 2.718 ||| 0-1 ||| 3 48212 +a los ||| brought to ||| 0.00243605 0.00409398 4.14834e-05 9.80844e-05 2.718 ||| 0-1 ||| 821 48212 +a los ||| brought ||| 0.000287439 0.000325722 2.07417e-05 0.0001187 2.718 ||| 0-0 ||| 3479 48212 +a los ||| budgets ||| 0.000398724 0.0123615 2.07417e-05 0.0007175 2.718 ||| 1-0 ||| 2508 48212 +a los ||| burden on the ||| 0.0173913 0.00957523 4.14834e-05 7.07863e-07 2.718 ||| 0-1 1-2 ||| 115 48212 +a los ||| business ||| 0.000114064 0.00288697 2.07417e-05 0.0006116 2.718 ||| 1-0 ||| 8767 48212 +a los ||| businesses from the ||| 0.0769231 0.0053267 2.07417e-05 8.214e-08 2.718 ||| 0-1 1-2 ||| 13 48212 +a los ||| businessmen need ||| 0.1 0.0109275 2.07417e-05 5.17132e-08 2.718 ||| 1-0 ||| 10 48212 +a los ||| businessmen ||| 0.00518135 0.0109275 2.07417e-05 5.64e-05 2.718 ||| 1-0 ||| 193 48212 +a los ||| but economic and social ||| 1 1.50506e-06 2.07417e-05 1.32533e-14 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| but for ||| 0.000854701 0.0012174 2.07417e-05 2.51823e-05 2.718 ||| 0-1 ||| 1170 48212 +a los ||| but not least , the ||| 0.025 0.00612862 2.07417e-05 2.92897e-11 2.718 ||| 1-4 ||| 40 48212 +a los ||| but the ||| 0.000239521 4.84388e-05 4.14834e-05 2.4665e-05 2.718 ||| 0-0 1-1 ||| 8350 48212 +a los ||| but ||| 5.62965e-06 7.05632e-06 2.07417e-05 5.75e-05 2.718 ||| 0-0 ||| 177631 48212 +a los ||| by Swiss ||| 1 0.000139654 2.07417e-05 1.56323e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| by a ||| 0.000282167 0.00060207 4.14834e-05 0.000364691 2.718 ||| 0-0 ||| 7088 48212 +a los ||| by accusing the ||| 0.5 0.0186384 2.07417e-05 1.86697e-07 2.718 ||| 0-0 0-1 1-2 ||| 2 48212 +a los ||| by all the ||| 0.0037594 0.00230492 4.14834e-05 1.95202e-06 2.718 ||| 0-0 0-1 1-2 ||| 532 48212 +a los ||| by all ||| 0.00157398 0.000601336 6.22252e-05 2.2118e-05 2.718 ||| 0-0 1-1 ||| 1906 48212 +a los ||| by cash ||| 1 0.00102414 2.07417e-05 1.59614e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| by compliant ||| 0.25 0.00060207 2.07417e-05 5.75925e-09 2.718 ||| 0-0 ||| 4 48212 +a los ||| by discontented Czechs ||| 0.25 0.0047756 2.07417e-05 8.32623e-14 2.718 ||| 0-0 1-2 ||| 4 48212 +a los ||| by it ||| 0.00913242 0.00060207 4.14834e-05 0.000146311 2.718 ||| 0-0 ||| 219 48212 +a los ||| by its ||| 0.00187091 0.000714362 4.14834e-05 1.75665e-05 2.718 ||| 0-0 1-1 ||| 1069 48212 +a los ||| by many ||| 0.0016835 0.000101312 2.07417e-05 1.16008e-06 2.718 ||| 0-0 1-1 ||| 594 48212 +a los ||| by means of the farm ||| 1 0.00413296 2.07417e-05 8.75404e-13 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| by means of the ||| 0.00431034 0.00321893 4.14834e-05 6.61517e-08 2.718 ||| 0-0 0-2 1-3 ||| 464 48212 +a los ||| by private ||| 0.03125 0.0006179 2.07417e-05 9.99641e-07 2.718 ||| 0-0 1-1 ||| 32 48212 +a los ||| by protecting the ||| 0.0588235 0.00413296 2.07417e-05 4.44684e-08 2.718 ||| 0-0 1-2 ||| 17 48212 +a los ||| by reference to the ||| 0.0555556 0.0281035 2.07417e-05 6.72933e-08 2.718 ||| 0-2 1-3 ||| 18 48212 +a los ||| by regulating those ||| 1 0.00962207 2.07417e-05 4.39614e-10 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| by setting a charge for those ||| 1 0.0194561 2.07417e-05 6.85571e-16 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| by the Algerian ||| 1 0.00413296 2.07417e-05 6.35263e-09 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| by the Liberal Group on these ||| 1 0.00410064 2.07417e-05 6.90033e-16 2.718 ||| 0-0 1-1 0-4 1-5 ||| 1 48212 +a los ||| by the effects of ||| 0.0555556 0.00413296 2.07417e-05 1.04182e-08 2.718 ||| 0-0 1-1 ||| 18 48212 +a los ||| by the effects ||| 0.04 0.00413296 2.07417e-05 1.91638e-07 2.718 ||| 0-0 1-1 ||| 25 48212 +a los ||| by the fact ||| 0.00110497 0.00413296 2.07417e-05 1.03382e-05 2.718 ||| 0-0 1-1 ||| 905 48212 +a los ||| by the imposition ||| 0.0909091 0.00413296 2.07417e-05 3.03514e-08 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| by the people of ||| 0.00943396 0.00357832 2.07417e-05 1.51098e-06 2.718 ||| 0-0 1-1 1-2 ||| 106 48212 +a los ||| by the people ||| 0.002849 0.00357832 2.07417e-05 2.77938e-05 2.718 ||| 0-0 1-1 1-2 ||| 351 48212 +a los ||| by the suggested ||| 0.5 0.00413296 2.07417e-05 6.98789e-08 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| by the use ||| 0.0102041 0.00413296 2.07417e-05 1.71592e-06 2.718 ||| 0-0 1-1 ||| 98 48212 +a los ||| by the ||| 0.00204125 0.00413296 0.00296607 0.00352924 2.718 ||| 0-0 1-1 ||| 70055 48212 +a los ||| by their ||| 0.0010989 0.000800009 2.07417e-05 1.88221e-05 2.718 ||| 0-0 1-1 ||| 910 48212 +a los ||| by these ||| 0.00157729 0.000812342 2.07417e-05 2.00545e-05 2.718 ||| 0-0 1-1 ||| 634 48212 +a los ||| by those ||| 0.0159744 0.00962207 0.000207417 0.00013738 2.718 ||| 0-0 1-1 ||| 626 48212 +a los ||| by to the ||| 1 0.0281035 2.07417e-05 0.000788901 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| by ||| 0.000294067 0.00060207 0.00126525 0.0082275 2.718 ||| 0-0 ||| 207436 48212 +a los ||| calculated on the ||| 0.0454545 0.00957523 2.07417e-05 1.87136e-07 2.718 ||| 0-1 1-2 ||| 22 48212 +a los ||| call for the ||| 0.00190114 0.00835696 2.07417e-05 3.50902e-06 2.718 ||| 0-1 1-2 ||| 526 48212 +a los ||| call on the ||| 0.000843882 0.00957523 2.07417e-05 3.61254e-06 2.718 ||| 0-1 1-2 ||| 1185 48212 +a los ||| call to the ||| 0.0227273 0.0281035 2.07417e-05 3.33586e-05 2.718 ||| 0-1 1-2 ||| 44 48212 +a los ||| called on the ||| 0.00332226 0.00957523 2.07417e-05 2.8282e-06 2.718 ||| 0-1 1-2 ||| 301 48212 +a los ||| calling for the ||| 0.00222222 0.00835696 2.07417e-05 1.04164e-06 2.718 ||| 0-1 1-2 ||| 450 48212 +a los ||| calling it the ||| 0.142857 0.000328713 2.07417e-05 3.01531e-09 2.718 ||| 0-0 0-1 1-2 ||| 7 48212 +a los ||| calling on ||| 0.00173913 0.00139487 2.07417e-05 2.49996e-06 2.718 ||| 0-1 ||| 575 48212 +a los ||| calls its ||| 0.166667 7.22572e-05 2.07417e-05 4.09939e-08 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| can , leave this task to the ||| 1 0.0281035 2.07417e-05 4.12227e-15 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| can be attributed to the ||| 0.0666667 0.0281035 2.07417e-05 5.26479e-11 2.718 ||| 0-3 1-4 ||| 15 48212 +a los ||| can be made to the ||| 0.2 0.0281035 2.07417e-05 1.69672e-08 2.718 ||| 0-3 1-4 ||| 5 48212 +a los ||| can beat the ||| 0.666667 0.0217775 4.14834e-05 4.54201e-08 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| can enter ||| 0.0166667 9.63408e-06 2.07417e-05 5.35374e-09 2.718 ||| 0-1 ||| 60 48212 +a los ||| can immediately reassure ||| 0.166667 0.00507564 2.07417e-05 3.28966e-11 2.718 ||| 0-2 ||| 6 48212 +a los ||| can justifiably be demanded . in the ||| 1 0.00718601 2.07417e-05 8.33178e-20 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| can replace the ||| 0.0588235 0.00089715 2.07417e-05 1.51826e-08 2.718 ||| 0-1 1-2 ||| 17 48212 +a los ||| can to those ||| 0.5 0.0654285 2.07417e-05 1.73973e-05 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| candidate ||| 0.000395413 0.00168188 4.14834e-05 0.0001536 2.718 ||| 1-0 ||| 5058 48212 +a los ||| capital at their ||| 0.5 0.00483308 2.07417e-05 2.01665e-09 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| carried out by the ||| 0.00155039 0.00413296 2.07417e-05 3.98387e-09 2.718 ||| 0-2 1-3 ||| 645 48212 +a los ||| carry out our ||| 0.0192308 0.00166352 2.07417e-05 2.68737e-09 2.718 ||| 0-1 1-2 ||| 52 48212 +a los ||| carry the ||| 0.00746269 0.00612862 2.07417e-05 7.87135e-05 2.718 ||| 1-1 ||| 134 48212 +a los ||| cars ||| 0.000413907 0.0129847 2.07417e-05 0.0007895 2.718 ||| 1-0 ||| 2416 48212 +a los ||| case , to the ||| 0.2 0.0281035 2.07417e-05 1.91723e-05 2.718 ||| 0-2 1-3 ||| 5 48212 +a los ||| case against the ||| 0.0625 0.006293 2.07417e-05 1.19302e-06 2.718 ||| 0-1 1-2 ||| 16 48212 +a los ||| case concerning our ||| 1 0.00555055 2.07417e-05 1.56267e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| case during the ||| 0.111111 0.000664189 2.07417e-05 4.27273e-08 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| case of the ||| 0.000926784 0.00230489 2.07417e-05 1.35748e-05 2.718 ||| 0-1 1-2 ||| 1079 48212 +a los ||| cases of the ||| 0.0238095 0.00230489 2.07417e-05 1.62532e-06 2.718 ||| 0-1 1-2 ||| 42 48212 +a los ||| cases where ||| 0.00158983 0.00684142 2.07417e-05 5.04344e-07 2.718 ||| 1-0 ||| 629 48212 +a los ||| cases ||| 8.76117e-05 0.00684142 2.07417e-05 0.0016645 2.718 ||| 1-0 ||| 11414 48212 +a los ||| cause for ||| 0.00123916 0.0012174 2.07417e-05 6.65852e-06 2.718 ||| 0-1 ||| 807 48212 +a los ||| caused injury to the ||| 1 0.0281035 2.07417e-05 4.08237e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| certain tasks from the ||| 1 0.0053267 2.07417e-05 1.42572e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| challenge the ||| 0.00613497 0.00612862 2.07417e-05 1.83593e-05 2.718 ||| 1-1 ||| 163 48212 +a los ||| charge for those ||| 0.5 0.0194561 2.07417e-05 3.10102e-08 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| charges against ||| 0.0204082 0.00324905 2.07417e-05 4.06822e-07 2.718 ||| 1-0 0-1 ||| 49 48212 +a los ||| chart the effects ||| 0.333333 0.00612862 2.07417e-05 4.19262e-11 2.718 ||| 1-1 ||| 3 48212 +a los ||| chart the ||| 0.05 0.00612862 2.07417e-05 7.72121e-07 2.718 ||| 1-1 ||| 20 48212 +a los ||| check with the ||| 0.166667 0.00698995 2.07417e-05 2.19141e-07 2.718 ||| 0-1 1-2 ||| 6 48212 +a los ||| checks ||| 0.00054615 0.00733639 2.07417e-05 0.0002936 2.718 ||| 1-0 ||| 1831 48212 +a los ||| chemical ||| 0.000725689 0.000290526 2.07417e-05 7.8e-06 2.718 ||| 1-0 ||| 1378 48212 +a los ||| child soldiers ||| 0.00699301 0.00652751 2.07417e-05 4.89218e-09 2.718 ||| 1-1 ||| 143 48212 +a los ||| children 's ||| 0.00492611 0.0147047 2.07417e-05 1.05022e-05 2.718 ||| 1-0 ||| 203 48212 +a los ||| children ||| 0.000205663 0.0147047 6.22252e-05 0.0055147 2.718 ||| 1-0 ||| 14587 48212 +a los ||| chipping in towards the ||| 1 0.0131014 2.07417e-05 3.47685e-11 2.718 ||| 0-1 0-2 1-3 ||| 1 48212 +a los ||| citizens of the ||| 0.000581058 0.00230489 2.07417e-05 1.38298e-06 2.718 ||| 0-1 1-2 ||| 1721 48212 +a los ||| citizens ||| 7.89453e-05 0.0147126 6.22252e-05 0.0151372 2.718 ||| 1-0 ||| 38001 48212 +a los ||| civilians ||| 0.000851064 0.00750982 2.07417e-05 0.0001935 2.718 ||| 1-0 ||| 1175 48212 +a los ||| claim on the ||| 0.142857 0.00957523 2.07417e-05 7.66445e-07 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| claimed for bona ||| 1 0.00112029 2.07417e-05 7.296e-13 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| clashes with the ||| 0.0416667 0.00698995 2.07417e-05 1.57552e-08 2.718 ||| 0-1 1-2 ||| 24 48212 +a los ||| clear to the ||| 0.00421941 0.0281035 2.07417e-05 5.00229e-05 2.718 ||| 0-1 1-2 ||| 237 48212 +a los ||| clearly on the ||| 0.037037 0.00957523 2.07417e-05 2.96977e-06 2.718 ||| 0-1 1-2 ||| 27 48212 +a los ||| close at hand ||| 0.1 0.00363727 2.07417e-05 2.00182e-09 2.718 ||| 0-1 ||| 10 48212 +a los ||| close at ||| 0.1 0.00363727 2.07417e-05 5.04745e-06 2.718 ||| 0-1 ||| 10 48212 +a los ||| close by to the ||| 1 0.0281035 2.07417e-05 1.16994e-07 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| close to the ||| 0.00787402 0.0281035 6.22252e-05 2.22842e-05 2.718 ||| 0-1 1-2 ||| 381 48212 +a los ||| closely with the ||| 0.00277008 0.00698995 2.07417e-05 6.3379e-07 2.718 ||| 0-1 1-2 ||| 361 48212 +a los ||| closer into the ||| 0.5 0.0131557 2.07417e-05 5.54995e-07 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| closer to its ||| 0.0964912 0.00485755 0.000228159 1.59309e-07 2.718 ||| 0-1 1-2 ||| 114 48212 +a los ||| closer to our ||| 0.0285714 0.0057078 2.07417e-05 2.66455e-07 2.718 ||| 0-1 1-2 ||| 35 48212 +a los ||| closer to the ||| 0.114823 0.0281035 0.00114079 3.20062e-05 2.718 ||| 0-1 1-2 ||| 479 48212 +a los ||| closer to their ||| 0.153846 0.00543993 4.14834e-05 1.70695e-07 2.718 ||| 0-1 1-2 ||| 13 48212 +a los ||| closer to those ||| 0.1 0.0654285 2.07417e-05 1.24588e-06 2.718 ||| 0-1 1-2 ||| 10 48212 +a los ||| coach and ||| 0.0217391 0.000312246 2.07417e-05 2.37992e-08 2.718 ||| 1-0 ||| 46 48212 +a los ||| coach ||| 0.00319489 0.000312246 2.07417e-05 1.9e-06 2.718 ||| 1-0 ||| 313 48212 +a los ||| combined with direct ||| 0.25 0.000100795 2.07417e-05 4.50167e-12 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| combined ||| 0.000619963 0.000144258 2.07417e-05 4.9e-06 2.718 ||| 1-0 ||| 1613 48212 +a los ||| come to the ||| 0.00184843 0.0281035 2.07417e-05 0.000127619 2.718 ||| 0-1 1-2 ||| 541 48212 +a los ||| comment on the ||| 0.00182815 0.00957523 2.07417e-05 7.43663e-07 2.718 ||| 0-1 1-2 ||| 547 48212 +a los ||| commitments ||| 0.000191975 0.00580215 2.07417e-05 0.0007321 2.718 ||| 1-0 ||| 5209 48212 +a los ||| committed to the ||| 0.00296736 0.0281035 2.07417e-05 1.24419e-05 2.718 ||| 0-1 1-2 ||| 337 48212 +a los ||| compared with those ||| 0.03125 0.0162735 2.07417e-05 1.04259e-08 2.718 ||| 0-1 1-2 ||| 32 48212 +a los ||| compared with ||| 0.000731529 0.00101826 2.07417e-05 6.24397e-07 2.718 ||| 0-1 ||| 1367 48212 +a los ||| compensation to the ||| 0.0416667 0.0281035 2.07417e-05 2.26899e-06 2.718 ||| 0-1 1-2 ||| 24 48212 +a los ||| competitive systems ||| 0.5 0.0107034 2.07417e-05 6.20616e-08 2.718 ||| 1-1 ||| 2 48212 +a los ||| complement to the ||| 0.0588235 0.0281035 2.07417e-05 4.35766e-07 2.718 ||| 0-1 1-2 ||| 17 48212 +a los ||| completely dependent on the ||| 0.125 0.00957523 2.07417e-05 4.52242e-11 2.718 ||| 0-2 1-3 ||| 8 48212 +a los ||| comply with the old ||| 0.5 0.00698995 2.07417e-05 2.58071e-11 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| comply with the ||| 0.000839631 0.00698995 2.07417e-05 3.35157e-07 2.718 ||| 0-1 1-2 ||| 1191 48212 +a los ||| comply with them ||| 0.0232558 0.00218451 2.07417e-05 1.57251e-09 2.718 ||| 0-1 1-2 ||| 43 48212 +a los ||| composed as it is of the ||| 1 0.00230489 2.07417e-05 4.18532e-13 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| compulsory for ||| 0.0185185 0.000812467 2.07417e-05 9.69116e-07 2.718 ||| 1-0 0-1 ||| 54 48212 +a los ||| compulsory ||| 0.000474158 0.000595827 2.07417e-05 2.63e-05 2.718 ||| 1-0 ||| 2109 48212 +a los ||| concentration on ||| 0.00990099 0.000132155 2.07417e-05 7.20776e-08 2.718 ||| 1-0 0-1 ||| 101 48212 +a los ||| concern about the ||| 0.00202429 0.00643683 2.07417e-05 2.88579e-07 2.718 ||| 0-1 1-2 ||| 494 48212 +a los ||| concern the very ||| 0.25 0.000250375 2.07417e-05 3.53735e-08 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| concern the ||| 0.00403226 0.000250375 4.14834e-05 1.01663e-05 2.718 ||| 0-0 1-1 ||| 496 48212 +a los ||| concern three ||| 0.25 5.71634e-07 2.07417e-05 1.1613e-10 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| concern to the ||| 0.0185185 0.0281035 4.14834e-05 2.00603e-05 2.718 ||| 0-1 1-2 ||| 108 48212 +a los ||| concerned about those with capital ||| 1 0.0149858 2.07417e-05 2.24171e-14 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| concerned about those with ||| 1 0.0149858 2.07417e-05 8.65524e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| concerned about those ||| 0.333333 0.0149858 2.07417e-05 1.35354e-07 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| concerned to those ||| 0.5 0.0654285 2.07417e-05 9.40902e-06 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| concerned with ||| 0.00100908 0.00101826 2.07417e-05 2.68557e-05 2.718 ||| 0-1 ||| 991 48212 +a los ||| concerned ||| 0.000146757 0.000789931 4.14834e-05 0.0007987 2.718 ||| 0-0 ||| 13628 48212 +a los ||| concerning for the ||| 1 0.0178431 2.07417e-05 6.46482e-05 2.718 ||| 0-0 0-1 1-2 ||| 1 48212 +a los ||| concerning our ||| 0.0140845 0.00555055 2.07417e-05 1.46058e-05 2.718 ||| 0-0 1-1 ||| 71 48212 +a los ||| concerning the ||| 0.001332 0.0273292 0.000165934 0.00175443 2.718 ||| 0-0 1-1 ||| 6006 48212 +a los ||| concerning ||| 7.03779e-05 0.00398119 2.07417e-05 0.00409 2.718 ||| 0-0 ||| 14209 48212 +a los ||| concerns the workers ||| 0.5 0.0309804 2.07417e-05 7.389e-06 2.718 ||| 0-0 1-1 1-2 ||| 2 48212 +a los ||| concerns the ||| 0.000886132 0.0155655 4.14834e-05 0.00101169 2.718 ||| 0-0 1-1 ||| 2257 48212 +a los ||| concerns those in developing ||| 1 0.0264843 2.07417e-05 1.28481e-10 2.718 ||| 0-0 1-1 0-2 ||| 1 48212 +a los ||| concerns those in ||| 0.5 0.0264843 2.07417e-05 2.36613e-06 2.718 ||| 0-0 1-1 0-2 ||| 2 48212 +a los ||| concerns ||| 7.14337e-05 0.00226751 2.07417e-05 0.0023585 2.718 ||| 0-0 ||| 13999 48212 +a los ||| conditions of employment of ||| 0.166667 3.72943e-05 2.07417e-05 5.71697e-13 2.718 ||| 0-1 1-3 ||| 6 48212 +a los ||| conduct hearings of the ||| 0.5 0.00230489 2.07417e-05 3.27893e-12 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| confidence again ||| 0.333333 6.87089e-05 2.07417e-05 1.34467e-08 2.718 ||| 1-0 0-1 ||| 3 48212 +a los ||| conflicts of jurisdiction ||| 0.0416667 0.010727 2.07417e-05 3.62376e-10 2.718 ||| 1-0 ||| 24 48212 +a los ||| conflicts of ||| 0.00298507 0.010727 2.07417e-05 4.36597e-05 2.718 ||| 1-0 ||| 335 48212 +a los ||| conflicts ||| 0.000619387 0.010727 4.14834e-05 0.0008031 2.718 ||| 1-0 ||| 3229 48212 +a los ||| congratulate the ||| 0.000513875 0.0299907 2.07417e-05 0.0014283 2.718 ||| 0-0 1-1 ||| 1946 48212 +a los ||| conjunction with the ||| 0.00561798 0.00698995 4.14834e-05 1.08138e-07 2.718 ||| 0-1 1-2 ||| 356 48212 +a los ||| connection with the ||| 0.000636943 0.00698995 2.07417e-05 1.09284e-06 2.718 ||| 0-1 1-2 ||| 1570 48212 +a los ||| consequences for the ||| 0.00829876 0.00835696 4.14834e-05 6.71772e-07 2.718 ||| 0-1 1-2 ||| 241 48212 +a los ||| conservative ||| 0.00241546 0.00116548 2.07417e-05 9.7e-06 2.718 ||| 1-0 ||| 414 48212 +a los ||| consider the ||| 0.000707214 0.00612862 2.07417e-05 6.82469e-05 2.718 ||| 1-1 ||| 1414 48212 +a los ||| considerable bias , to the ||| 1 0.0281035 2.07417e-05 2.01597e-12 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| considerable problems in ||| 0.111111 0.00532475 2.07417e-05 2.95366e-09 2.718 ||| 1-1 ||| 9 48212 +a los ||| considerable problems ||| 0.0131579 0.00532475 2.07417e-05 1.37993e-07 2.718 ||| 1-1 ||| 76 48212 +a los ||| consideration for ||| 0.00487805 0.0012174 2.07417e-05 3.97964e-06 2.718 ||| 0-1 ||| 205 48212 +a los ||| consideration of needs in relation to the ||| 1 0.0281035 2.07417e-05 9.11088e-16 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| considering ||| 0.000335008 0.000386327 2.07417e-05 7.3e-05 2.718 ||| 0-0 ||| 2985 48212 +a los ||| consistent with the ||| 0.00436681 0.00698995 4.14834e-05 1.98373e-07 2.718 ||| 0-1 1-2 ||| 458 48212 +a los ||| consortia ||| 0.0322581 0.00701621 2.07417e-05 6.8e-06 2.718 ||| 1-0 ||| 31 48212 +a los ||| consulted the ||| 0.0133333 0.0156562 2.07417e-05 9.31693e-05 2.718 ||| 0-0 1-1 ||| 75 48212 +a los ||| consumers ||| 0.0002331 0.0210651 6.22252e-05 0.008307 2.718 ||| 1-0 ||| 12870 48212 +a los ||| contacted by ||| 0.0416667 0.00060207 2.07417e-05 1.15185e-08 2.718 ||| 0-1 ||| 24 48212 +a los ||| contacts the ||| 0.142857 0.00737052 2.07417e-05 0.000135979 2.718 ||| 1-0 1-1 ||| 7 48212 +a los ||| continue to ||| 0.000195046 0.00409398 2.07417e-05 8.10598e-05 2.718 ||| 0-1 ||| 5127 48212 +a los ||| continue with its ||| 0.0263158 0.00120818 2.07417e-05 8.24842e-09 2.718 ||| 0-1 1-2 ||| 38 48212 +a los ||| contradicted those ||| 0.5 0.00287581 2.07417e-05 1.50278e-08 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| contributing to ||| 0.00128041 0.00409398 2.07417e-05 3.78326e-06 2.718 ||| 0-1 ||| 781 48212 +a los ||| contribution to the ||| 0.00134409 0.0281035 2.07417e-05 1.35238e-05 2.718 ||| 0-1 1-2 ||| 744 48212 +a los ||| contributions to the ||| 0.00666667 0.0281035 2.07417e-05 3.41099e-06 2.718 ||| 0-1 1-2 ||| 150 48212 +a los ||| contributors to these ||| 0.25 0.00552379 2.07417e-05 1.53695e-09 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| control the ||| 0.00243309 0.00612862 2.07417e-05 3.29009e-05 2.718 ||| 1-1 ||| 411 48212 +a los ||| conversely ||| 0.0047619 0.00198371 2.07417e-05 4.66e-05 2.718 ||| 0-0 ||| 210 48212 +a los ||| convey to the ||| 0.0227273 0.0281035 2.07417e-05 1.41248e-06 2.718 ||| 0-1 1-2 ||| 44 48212 +a los ||| convey with regard to the ||| 1 0.0281035 2.07417e-05 6.14997e-12 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| corner shops owned by ||| 1 0.00314069 2.07417e-05 2.87596e-17 2.718 ||| 1-1 0-3 ||| 1 48212 +a los ||| correct since the objective of peace and ||| 1 0.000620569 2.07417e-05 4.60572e-21 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| correct since the objective of peace ||| 1 0.000620569 2.07417e-05 3.67696e-19 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| correct since the objective of ||| 1 0.000620569 2.07417e-05 8.81765e-15 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| correct since the objective ||| 1 0.000620569 2.07417e-05 1.62196e-13 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| correct since the ||| 1 0.000620569 2.07417e-05 2.42446e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| corresponding to the ||| 0.0151515 0.0281035 2.07417e-05 3.2457e-06 2.718 ||| 0-1 1-2 ||| 66 48212 +a los ||| cost at all to the ||| 0.5 0.0281035 2.07417e-05 2.46189e-10 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| cost of as much as ||| 1 1.75229e-05 2.07417e-05 8.94999e-15 2.718 ||| 0-1 1-4 ||| 1 48212 +a los ||| costs , such as ||| 0.142857 0.0107469 2.07417e-05 6.97149e-09 2.718 ||| 1-0 ||| 7 48212 +a los ||| costs , such ||| 0.5 0.0107469 2.07417e-05 6.83184e-07 2.718 ||| 1-0 ||| 2 48212 +a los ||| costs , ||| 0.00176991 0.0107469 2.07417e-05 0.000330216 2.718 ||| 1-0 ||| 565 48212 +a los ||| costs ||| 0.000246326 0.0107469 6.22252e-05 0.002769 2.718 ||| 1-0 ||| 12179 48212 +a los ||| countries of ||| 0.000247525 0.00479712 2.07417e-05 0.000453189 2.718 ||| 1-0 ||| 4040 48212 +a los ||| countries on the ||| 0.00653595 0.00957523 2.07417e-05 6.17875e-06 2.718 ||| 0-1 1-2 ||| 153 48212 +a los ||| countries to the ||| 0.0113636 0.0281035 2.07417e-05 5.70553e-05 2.718 ||| 0-1 1-2 ||| 88 48212 +a los ||| countries with ||| 0.000755858 0.00101826 2.07417e-05 6.33913e-06 2.718 ||| 0-1 ||| 1323 48212 +a los ||| countries ||| 4.43228e-05 0.00479712 8.29669e-05 0.0083362 2.718 ||| 1-0 ||| 90247 48212 +a los ||| country such as the ||| 0.047619 0.00297745 2.07417e-05 2.8019e-09 2.718 ||| 0-2 1-3 ||| 21 48212 +a los ||| country to the ||| 0.0181818 0.0281035 2.07417e-05 5.408e-05 2.718 ||| 0-1 1-2 ||| 55 48212 +a los ||| course , to the ||| 0.0526316 0.0281035 2.07417e-05 2.26093e-05 2.718 ||| 0-2 1-3 ||| 19 48212 +a los ||| courses , ||| 0.047619 0.00648114 2.07417e-05 9.96969e-06 2.718 ||| 1-0 ||| 21 48212 +a los ||| courses ||| 0.00179211 0.00648114 2.07417e-05 8.36e-05 2.718 ||| 1-0 ||| 558 48212 +a los ||| cover the area of the ||| 0.5 0.00230489 2.07417e-05 2.52646e-11 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| cover the ||| 0.00380228 0.000616069 4.14834e-05 7.03488e-06 2.718 ||| 0-0 1-1 ||| 526 48212 +a los ||| cover ||| 0.000936914 0.000434815 6.22252e-05 3.01e-05 2.718 ||| 1-0 ||| 3202 48212 +a los ||| covered by the ||| 0.00108696 0.00413296 2.07417e-05 2.52693e-07 2.718 ||| 0-1 1-2 ||| 920 48212 +a los ||| covering the ||| 0.010101 0.00354081 6.22252e-05 2.11475e-05 2.718 ||| 0-0 1-1 ||| 297 48212 +a los ||| created for the ||| 0.037037 0.00835696 2.07417e-05 1.66599e-06 2.718 ||| 0-1 1-2 ||| 27 48212 +a los ||| created on the ||| 0.0434783 0.00957523 2.07417e-05 1.71514e-06 2.718 ||| 0-1 1-2 ||| 23 48212 +a los ||| credibility in the ||| 0.0116279 0.00718601 2.07417e-05 1.85564e-07 2.718 ||| 0-1 1-2 ||| 86 48212 +a los ||| credibility of the three ||| 1 0.00230489 2.07417e-05 5.78263e-12 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| credibility of the ||| 0.00176991 0.00230489 2.07417e-05 9.13528e-08 2.718 ||| 0-1 1-2 ||| 565 48212 +a los ||| credit on the ||| 0.111111 0.00957523 2.07417e-05 5.85818e-07 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| crews ||| 0.00362319 0.00194153 2.07417e-05 1.56e-05 2.718 ||| 1-0 ||| 276 48212 +a los ||| crimes ||| 0.000298864 0.00850659 2.07417e-05 0.0005999 2.718 ||| 1-0 ||| 3346 48212 +a los ||| criminality spreads ||| 0.166667 0.0040416 2.07417e-05 1.022e-11 2.718 ||| 1-1 ||| 6 48212 +a los ||| criminals ||| 0.00209351 0.000636966 6.22252e-05 5.66e-05 2.718 ||| 0-0 ||| 1433 48212 +a los ||| criticised unfairly in the ||| 1 0.00718601 2.07417e-05 7.09267e-13 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| crops ||| 0.000812348 0.00774779 2.07417e-05 0.0002615 2.718 ||| 1-0 ||| 1231 48212 +a los ||| culminates in companies ||| 0.5 0.00104682 2.07417e-05 1.68712e-12 2.718 ||| 0-1 ||| 2 48212 +a los ||| culminates in ||| 0.142857 0.00104682 2.07417e-05 2.4033e-08 2.718 ||| 0-1 ||| 7 48212 +a los ||| current ||| 5.17572e-05 0.000123616 2.07417e-05 4.28e-05 2.718 ||| 1-0 ||| 19321 48212 +a los ||| cuts ||| 0.000492126 0.00524494 2.07417e-05 0.0002207 2.718 ||| 1-0 ||| 2032 48212 +a los ||| damage to ||| 0.00182149 0.00409398 2.07417e-05 1.47477e-05 2.718 ||| 0-1 ||| 549 48212 +a los ||| data ||| 7.58668e-05 0.00816489 2.07417e-05 0.0020719 2.718 ||| 1-0 ||| 13181 48212 +a los ||| dating right back to the ||| 0.5 0.0281035 2.07417e-05 8.66874e-13 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| day-to-day basis so as to gain the ||| 1 0.0281035 2.07417e-05 2.88287e-19 2.718 ||| 0-4 1-6 ||| 1 48212 +a los ||| deal with them ||| 0.00714286 0.00218451 2.07417e-05 1.42668e-08 2.718 ||| 0-1 1-2 ||| 140 48212 +a los ||| deal with ||| 0.000160565 0.00101826 2.07417e-05 7.08874e-06 2.718 ||| 0-1 ||| 6228 48212 +a los ||| dealing with ||| 0.000225479 0.00101826 2.07417e-05 1.7246e-06 2.718 ||| 0-1 ||| 4435 48212 +a los ||| dealt out to those ||| 0.5 0.0654285 2.07417e-05 2.34578e-09 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| dealt with ||| 0.000339789 0.00101826 2.07417e-05 1.74798e-06 2.718 ||| 0-1 ||| 2943 48212 +a los ||| debate in the ||| 0.00269542 0.00718601 2.07417e-05 5.10043e-06 2.718 ||| 0-1 1-2 ||| 371 48212 +a los ||| debate on the ||| 0.000760746 0.00957523 4.14834e-05 3.22037e-06 2.718 ||| 0-1 1-2 ||| 2629 48212 +a los ||| debt to the ||| 0.0526316 0.0281035 2.07417e-05 2.97523e-06 2.718 ||| 0-1 1-2 ||| 19 48212 +a los ||| decision to require the ||| 1 0.0281035 2.07417e-05 1.10619e-09 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| decision-makers in all the ||| 1 0.00411578 2.07417e-05 1.52427e-10 2.718 ||| 0-1 1-2 1-3 ||| 1 48212 +a los ||| decrease in ||| 0.00505051 0.00104682 2.07417e-05 3.48479e-07 2.718 ||| 0-1 ||| 198 48212 +a los ||| delays in the ||| 0.008 0.00718601 2.07417e-05 1.75255e-07 2.718 ||| 0-1 1-2 ||| 125 48212 +a los ||| deliberately mislead the ||| 0.333333 0.0414989 2.07417e-05 5.70469e-10 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| delighted with an ||| 0.5 0.00101826 2.07417e-05 1.38763e-09 2.718 ||| 0-1 ||| 2 48212 +a los ||| delighted with ||| 0.00621118 0.00101826 2.07417e-05 3.12198e-07 2.718 ||| 0-1 ||| 161 48212 +a los ||| delivery ||| 0.00107875 0.00146649 2.07417e-05 2.24e-05 2.718 ||| 1-0 ||| 927 48212 +a los ||| demanded . in the case of ||| 1 0.00718601 2.07417e-05 4.08656e-14 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| demanded . in the case ||| 1 0.00718601 2.07417e-05 7.51703e-13 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| demanded . in the ||| 1 0.00718601 2.07417e-05 7.02591e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| demands of the ||| 0.00331126 0.00230489 2.07417e-05 4.88484e-07 2.718 ||| 0-1 1-2 ||| 302 48212 +a los ||| democracy , for the ||| 0.2 0.00835696 2.07417e-05 5.48531e-08 2.718 ||| 0-2 1-3 ||| 5 48212 +a los ||| demonstration to the ||| 0.25 0.0281035 2.07417e-05 1.56275e-06 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| demonstrators ||| 0.00222222 0.0111148 2.07417e-05 0.0001089 2.718 ||| 1-0 ||| 450 48212 +a los ||| denied a say by ||| 0.5 0.00060207 2.07417e-05 5.26343e-12 2.718 ||| 0-3 ||| 2 48212 +a los ||| dependence on the ||| 0.0357143 0.00957523 2.07417e-05 6.50909e-08 2.718 ||| 0-1 1-2 ||| 28 48212 +a los ||| dependent on the ||| 0.0125523 0.00957523 6.22252e-05 4.44245e-07 2.718 ||| 0-1 1-2 ||| 239 48212 +a los ||| depriving the ||| 0.0333333 0.0413733 2.07417e-05 4.42254e-05 2.718 ||| 0-0 1-1 ||| 30 48212 +a los ||| describe the ||| 0.00568182 0.00612862 2.07417e-05 1.05094e-05 2.718 ||| 1-1 ||| 176 48212 +a los ||| describes the food ||| 0.25 0.00615985 2.07417e-05 4.44367e-09 2.718 ||| 1-1 1-2 ||| 4 48212 +a los ||| deserve our ||| 0.00529101 0.00124472 2.07417e-05 6.28514e-08 2.718 ||| 1-1 ||| 189 48212 +a los ||| designed to ||| 0.000454339 0.00409398 2.07417e-05 2.73586e-05 2.718 ||| 0-1 ||| 2201 48212 +a los ||| detainees ||| 0.00273973 0.00026143 2.07417e-05 6.4e-06 2.718 ||| 0-0 ||| 365 48212 +a los ||| developed ||| 0.000182083 0.000291223 2.07417e-05 3.31e-05 2.718 ||| 1-0 ||| 5492 48212 +a los ||| developing at the ||| 0.0714286 0.0249683 2.07417e-05 7.92764e-07 2.718 ||| 0-1 1-2 ||| 14 48212 +a los ||| developing ||| 0.000216474 0.00755554 4.14834e-05 0.0035604 2.718 ||| 1-0 ||| 9239 48212 +a los ||| developments in the ||| 0.00207039 0.00718601 2.07417e-05 7.70606e-07 2.718 ||| 0-1 1-2 ||| 483 48212 +a los ||| developments ||| 0.000191461 0.00727331 2.07417e-05 0.0010199 2.718 ||| 1-0 ||| 5223 48212 +a los ||| dictated by the ||| 0.0149254 0.00413296 2.07417e-05 8.82309e-09 2.718 ||| 0-1 1-2 ||| 67 48212 +a los ||| did give the ||| 1 0.00295273 2.07417e-05 1.09554e-07 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| different from the ||| 0.00408163 0.0053267 2.07417e-05 6.79971e-07 2.718 ||| 0-1 1-2 ||| 245 48212 +a los ||| different ||| 4.8752e-05 0.000266185 2.07417e-05 0.0001069 2.718 ||| 1-0 ||| 20512 48212 +a los ||| difficult for the ||| 0.00862069 0.00835696 2.07417e-05 1.96315e-06 2.718 ||| 0-1 1-2 ||| 116 48212 +a los ||| diminishing them ||| 0.5 0.00191533 2.07417e-05 2.81764e-09 2.718 ||| 1-1 ||| 2 48212 +a los ||| direct ||| 0.000155015 8.83742e-05 2.07417e-05 1.07e-05 2.718 ||| 1-0 ||| 6451 48212 +a los ||| directed at the ||| 0.00740741 0.0249683 2.07417e-05 4.56971e-07 2.718 ||| 0-1 1-2 ||| 135 48212 +a los ||| direction in the form of ||| 1 0.00718601 2.07417e-05 5.78472e-11 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| direction in the form ||| 1 0.00718601 2.07417e-05 1.06407e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| direction in the ||| 0.0588235 0.00718601 2.07417e-05 2.33759e-06 2.718 ||| 0-1 1-2 ||| 17 48212 +a los ||| direction of the ||| 0.00787402 0.00230489 2.07417e-05 1.15079e-06 2.718 ||| 0-1 1-2 ||| 127 48212 +a los ||| direction to the ||| 0.142857 0.0281035 2.07417e-05 1.3629e-05 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| disagree with ||| 0.00122399 0.00101826 2.07417e-05 1.31891e-07 2.718 ||| 0-1 ||| 817 48212 +a los ||| discussing problems that are ||| 0.333333 0.00532475 2.07417e-05 2.76279e-11 2.718 ||| 1-1 ||| 3 48212 +a los ||| discussing problems that ||| 0.333333 0.00532475 2.07417e-05 1.8209e-09 2.718 ||| 1-1 ||| 3 48212 +a los ||| discussing problems ||| 0.125 0.00532475 2.07417e-05 1.08247e-07 2.718 ||| 1-1 ||| 8 48212 +a los ||| discussion of the ||| 0.00331126 0.00230489 2.07417e-05 1.09623e-06 2.718 ||| 0-1 1-2 ||| 302 48212 +a los ||| discussions ||| 0.000150761 0.00359432 2.07417e-05 0.0005464 2.718 ||| 1-0 ||| 6633 48212 +a los ||| dishonest ||| 0.00549451 0.000227801 2.07417e-05 1e-06 2.718 ||| 1-0 ||| 182 48212 +a los ||| dismissing the Kurdish ||| 0.333333 0.00612862 2.07417e-05 1.74156e-12 2.718 ||| 1-1 ||| 3 48212 +a los ||| dismissing the ||| 0.0909091 0.00612862 2.07417e-05 6.00539e-07 2.718 ||| 1-1 ||| 11 48212 +a los ||| disposal of those with ||| 1 0.0053661 2.07417e-05 2.65919e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| disposal of those ||| 0.333333 0.0053661 2.07417e-05 4.15855e-08 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| disturbed even those ||| 0.25 0.0141053 2.07417e-05 5.86537e-11 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| do for the ||| 0.0344828 0.00835696 4.14834e-05 5.42997e-05 2.718 ||| 0-1 1-2 ||| 58 48212 +a los ||| do not accord with the ||| 0.333333 0.00698995 2.07417e-05 1.1507e-12 2.718 ||| 0-3 1-4 ||| 3 48212 +a los ||| do not have the proper identity ||| 0.5 0.00612862 2.07417e-05 1.07565e-16 2.718 ||| 1-3 ||| 2 48212 +a los ||| do not have the proper ||| 0.5 0.00612862 2.07417e-05 5.32502e-12 2.718 ||| 1-3 ||| 2 48212 +a los ||| do not have the ||| 0.00229358 0.00612862 2.07417e-05 6.01697e-08 2.718 ||| 1-3 ||| 436 48212 +a los ||| do of our ||| 1 0.000468123 2.07417e-05 3.62863e-07 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| do the ||| 0.00106838 0.00612862 2.07417e-05 0.00147359 2.718 ||| 1-1 ||| 936 48212 +a los ||| do to all the ||| 1 0.0160962 2.07417e-05 1.38771e-06 2.718 ||| 0-1 1-2 1-3 ||| 1 48212 +a los ||| do to the ||| 0.05 0.0281035 2.07417e-05 0.000516202 2.718 ||| 0-1 1-2 ||| 20 48212 +a los ||| do with cross-border ||| 1 0.000758794 2.07417e-05 4.07204e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| do with the fact that the ||| 0.0714286 0.000104203 2.07417e-05 1.15688e-12 2.718 ||| 0-4 1-5 ||| 14 48212 +a los ||| do with the ||| 0.00106724 0.00698995 2.07417e-05 2.46018e-05 2.718 ||| 0-1 1-2 ||| 937 48212 +a los ||| documents to the ||| 0.0769231 0.0281035 2.07417e-05 3.78665e-06 2.718 ||| 0-1 1-2 ||| 13 48212 +a los ||| does not involve those ||| 0.5 0.0485418 2.07417e-05 2.73337e-11 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| does to the ||| 0.142857 0.0281035 4.14834e-05 0.000105395 2.718 ||| 0-1 1-2 ||| 14 48212 +a los ||| domestic ||| 0.00032175 0.000684386 2.07417e-05 4.28e-05 2.718 ||| 1-0 ||| 3108 48212 +a los ||| doors open to the ||| 1 0.0281035 2.07417e-05 2.88249e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| dossiers ||| 0.00285714 0.00454451 2.07417e-05 3.5e-05 2.718 ||| 1-0 ||| 350 48212 +a los ||| down on the ||| 0.0222222 0.00957523 2.07417e-05 1.136e-05 2.718 ||| 0-1 1-2 ||| 45 48212 +a los ||| down the throat ||| 0.5 0.00277001 2.07417e-05 4.54175e-10 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| down the throats of the ||| 0.5 0.00230489 2.07417e-05 2.55573e-12 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| down the ||| 0.010101 0.00277001 0.00012445 0.000156612 2.718 ||| 0-0 1-1 ||| 594 48212 +a los ||| down to the ||| 0.0201005 0.0281035 8.29669e-05 0.000104899 2.718 ||| 0-1 1-2 ||| 199 48212 +a los ||| down to your successor ||| 0.125 0.00221403 2.07417e-05 3.01476e-13 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| down to your ||| 0.0769231 0.00221403 2.07417e-05 7.53689e-08 2.718 ||| 0-1 1-2 ||| 13 48212 +a los ||| down ||| 0.000326691 0.000249742 2.07417e-05 8.56e-05 2.718 ||| 1-0 ||| 3061 48212 +a los ||| drag the cheated ||| 0.5 0.00612862 2.07417e-05 9.95179e-13 2.718 ||| 1-1 ||| 2 48212 +a los ||| drag the ||| 0.0666667 0.00612862 2.07417e-05 2.48795e-06 2.718 ||| 1-1 ||| 15 48212 +a los ||| drawn up in the ||| 0.0322581 0.00718601 2.07417e-05 1.24903e-08 2.718 ||| 0-2 1-3 ||| 31 48212 +a los ||| drive simple house ||| 0.25 0.000938331 2.07417e-05 5.79468e-14 2.718 ||| 0-0 ||| 4 48212 +a los ||| drive simple ||| 0.25 0.000938331 2.07417e-05 2.68272e-09 2.718 ||| 0-0 ||| 4 48212 +a los ||| drive ||| 0.00104167 0.000938331 2.07417e-05 6.21e-05 2.718 ||| 0-0 ||| 960 48212 +a los ||| drivers ||| 0.000639386 0.019388 2.07417e-05 0.0009392 2.718 ||| 1-0 ||| 1564 48212 +a los ||| driving force behind those ||| 1 0.0262872 2.07417e-05 7.24699e-14 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| driving under the ||| 0.0625 0.00470099 2.07417e-05 2.01391e-08 2.718 ||| 0-1 1-2 ||| 16 48212 +a los ||| drove out the ||| 1 0.0234388 2.07417e-05 3.45046e-08 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| drug ||| 0.000952381 5.65539e-05 2.07417e-05 9.1e-06 2.718 ||| 0-0 ||| 1050 48212 +a los ||| due to Mr ||| 0.0909091 0.00017075 2.07417e-05 1.62857e-08 2.718 ||| 0-1 1-2 ||| 11 48212 +a los ||| due to both our ||| 1 0.00690518 2.07417e-05 4.14158e-10 2.718 ||| 0-1 1-2 1-3 ||| 1 48212 +a los ||| due to payment ||| 0.166667 0.0116014 2.07417e-05 1.67601e-08 2.718 ||| 0-1 1-2 ||| 6 48212 +a los ||| due to the ||| 0.00131637 0.0281035 6.22252e-05 4.1533e-05 2.718 ||| 0-1 1-2 ||| 2279 48212 +a los ||| due to ||| 0.000177999 0.00409398 2.07417e-05 9.68234e-05 2.718 ||| 0-1 ||| 5618 48212 +a los ||| dumps it on the ||| 0.5 0.00139487 2.07417e-05 1.65664e-11 2.718 ||| 0-2 ||| 2 48212 +a los ||| dumps it on ||| 0.5 0.00139487 2.07417e-05 2.69847e-10 2.718 ||| 0-2 ||| 2 48212 +a los ||| during the ||| 0.000341997 0.000664189 8.29669e-05 3.99358e-05 2.718 ||| 0-0 1-1 ||| 11696 48212 +a los ||| duties ||| 0.000450857 0.00535807 2.07417e-05 0.0002917 2.718 ||| 1-0 ||| 2218 48212 +a los ||| duty of the ||| 0.0105263 0.00230489 2.07417e-05 9.45247e-07 2.718 ||| 0-1 1-2 ||| 95 48212 +a los ||| duty were to obey the ||| 1 0.0281035 2.07417e-05 5.01353e-14 2.718 ||| 0-2 1-4 ||| 1 48212 +a los ||| each of the ||| 0.00246002 0.00230489 4.14834e-05 3.56149e-06 2.718 ||| 0-1 1-2 ||| 813 48212 +a los ||| each of these ||| 0.00429185 0.000453032 2.07417e-05 2.02378e-08 2.718 ||| 0-1 1-2 ||| 233 48212 +a los ||| each other ||| 0.000566251 0.00249326 2.07417e-05 1.13991e-06 2.718 ||| 1-0 ||| 1766 48212 +a los ||| each ||| 0.000507798 0.00249326 0.000145192 0.0008799 2.718 ||| 1-0 ||| 13785 48212 +a los ||| ears of the ||| 0.1 0.00230489 2.07417e-05 1.50986e-07 2.718 ||| 0-1 1-2 ||| 10 48212 +a los ||| eat up the ||| 0.25 0.00612862 2.07417e-05 1.57999e-08 2.718 ||| 1-2 ||| 4 48212 +a los ||| economic ||| 1.99346e-05 3.3753e-05 2.07417e-05 3.01e-05 2.718 ||| 1-0 ||| 50164 48212 +a los ||| educators will have to ||| 0.5 0.0679724 2.07417e-05 7.39388e-10 2.718 ||| 1-0 0-3 ||| 2 48212 +a los ||| effect on the ||| 0.00507614 0.00957523 2.07417e-05 5.42858e-06 2.718 ||| 0-1 1-2 ||| 197 48212 +a los ||| effect on those for whom they ||| 1 0.0112063 2.07417e-05 4.05062e-17 2.718 ||| 0-1 1-2 1-3 ||| 1 48212 +a los ||| effect on those for whom ||| 1 0.0112063 2.07417e-05 1.241e-14 2.718 ||| 0-1 1-2 1-3 ||| 1 48212 +a los ||| effect on those for ||| 1 0.0112063 2.07417e-05 1.86336e-10 2.718 ||| 0-1 1-2 1-3 ||| 1 48212 +a los ||| effect to the ||| 0.030303 0.0281035 2.07417e-05 5.01281e-05 2.718 ||| 0-1 1-2 ||| 33 48212 +a los ||| effort to see the ||| 1 0.0281035 2.07417e-05 9.37003e-09 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| either , the ||| 0.0909091 0.00612862 2.07417e-05 4.429e-05 2.718 ||| 1-2 ||| 11 48212 +a los ||| either in the ||| 0.00826446 0.00718601 2.07417e-05 2.23141e-05 2.718 ||| 0-1 1-2 ||| 121 48212 +a los ||| either the ||| 0.00259067 5.58006e-05 2.07417e-05 1.58714e-06 2.718 ||| 0-0 1-1 ||| 386 48212 +a los ||| either to their ||| 0.5 0.00543993 2.07417e-05 6.93839e-07 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| elect the ||| 0.0238095 0.0299762 2.07417e-05 3.44452e-05 2.718 ||| 0-0 1-1 ||| 42 48212 +a los ||| elements ||| 0.000215564 0.00159909 2.07417e-05 0.0001429 2.718 ||| 1-0 ||| 4639 48212 +a los ||| else ||| 0.000337838 0.000657018 2.07417e-05 7e-05 2.718 ||| 1-0 ||| 2960 48212 +a los ||| employed to spend taxpayers ' ||| 0.333333 0.0507242 2.07417e-05 2.28949e-15 2.718 ||| 0-1 1-3 1-4 ||| 3 48212 +a los ||| employees ||| 0.000287853 0.0169612 2.07417e-05 0.001611 2.718 ||| 1-0 ||| 3474 48212 +a los ||| employers as a ||| 0.5 0.00734988 2.07417e-05 3.04698e-07 2.718 ||| 1-0 0-1 ||| 2 48212 +a los ||| employers as ||| 0.166667 0.00734988 2.07417e-05 6.87405e-06 2.718 ||| 1-0 0-1 ||| 6 48212 +a los ||| empowered to ||| 0.0104167 0.00409398 2.07417e-05 6.30543e-07 2.718 ||| 0-1 ||| 96 48212 +a los ||| en ||| 0.00510204 0.000188513 2.07417e-05 3.7e-06 2.718 ||| 0-0 ||| 196 48212 +a los ||| enable the ||| 0.00153139 0.00612862 2.07417e-05 4.22951e-05 2.718 ||| 1-1 ||| 653 48212 +a los ||| encourage the ||| 0.000892857 0.00160204 2.07417e-05 3.29009e-05 2.718 ||| 0-0 1-1 ||| 1120 48212 +a los ||| encourage ||| 0.0001468 8.17203e-06 2.07417e-05 4.03e-05 2.718 ||| 0-0 1-0 ||| 6812 48212 +a los ||| encouraging the ||| 0.00724638 0.00164726 6.22252e-05 1.6429e-05 2.718 ||| 0-0 1-1 ||| 414 48212 +a los ||| encouraging ||| 0.000257202 0.000239965 2.07417e-05 3.83e-05 2.718 ||| 0-0 ||| 3888 48212 +a los ||| end after ||| 0.111111 0.000607523 2.07417e-05 3.64962e-07 2.718 ||| 0-1 ||| 9 48212 +a los ||| end is put to the ||| 1 0.0281035 2.07417e-05 2.25931e-09 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| end of the year , in our ||| 0.5 0.00145948 2.07417e-05 9.26686e-15 2.718 ||| 0-5 1-6 ||| 2 48212 +a los ||| ending up in little backrooms ||| 0.5 0.00104682 2.07417e-05 1.24739e-19 2.718 ||| 0-2 ||| 2 48212 +a los ||| ending up in little ||| 0.5 0.00104682 2.07417e-05 3.11846e-13 2.718 ||| 0-2 ||| 2 48212 +a los ||| ending up in the hands ||| 0.0909091 0.00718601 2.07417e-05 8.32851e-14 2.718 ||| 0-2 1-3 ||| 11 48212 +a los ||| ending up in the ||| 0.0434783 0.00718601 2.07417e-05 8.26241e-10 2.718 ||| 0-2 1-3 ||| 23 48212 +a los ||| ending up in ||| 0.015625 0.00104682 2.07417e-05 1.92617e-09 2.718 ||| 0-2 ||| 64 48212 +a los ||| endorses the ||| 0.00840336 0.00612862 2.07417e-05 9.43704e-07 2.718 ||| 1-1 ||| 119 48212 +a los ||| enemies of freedom ||| 0.0666667 0.000335766 2.07417e-05 2.77535e-12 2.718 ||| 0-1 ||| 15 48212 +a los ||| enemies of ||| 0.00943396 0.000335766 2.07417e-05 3.25364e-08 2.718 ||| 0-1 ||| 106 48212 +a los ||| engaged in ||| 0.00106952 0.00104682 2.07417e-05 2.46338e-06 2.718 ||| 0-1 ||| 935 48212 +a los ||| enhancing the position of ||| 0.2 0.0001404 2.07417e-05 6.91128e-12 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| enhancing the position ||| 0.5 0.0001404 2.07417e-05 1.2713e-10 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| enhancing the ||| 0.00373134 0.0001404 2.07417e-05 3.86061e-07 2.718 ||| 0-0 1-1 ||| 268 48212 +a los ||| ensuring that our ||| 0.0181818 0.00124472 2.07417e-05 6.98032e-09 2.718 ||| 1-2 ||| 55 48212 +a los ||| enter ||| 0.000588235 9.63408e-06 2.07417e-05 1.8e-06 2.718 ||| 0-0 ||| 1700 48212 +a los ||| entirely to the ||| 0.0416667 0.0281035 2.07417e-05 9.94748e-06 2.718 ||| 0-1 1-2 ||| 24 48212 +a los ||| entrust to the ||| 0.25 0.0281035 2.07417e-05 1.6529e-07 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| equate to ||| 0.0434783 0.00409398 2.07417e-05 2.45211e-07 2.718 ||| 0-1 ||| 23 48212 +a los ||| equipment ||| 0.000315856 0.00508421 2.07417e-05 0.0002586 2.718 ||| 1-0 ||| 3166 48212 +a los ||| establish them in the ||| 1 0.00718601 2.07417e-05 5.27484e-09 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| even before the establishment ||| 1 0.00605863 2.07417e-05 9.42123e-12 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| even before the ||| 0.00641026 0.00605863 2.07417e-05 2.09361e-07 2.718 ||| 0-0 1-2 ||| 156 48212 +a los ||| even in the current ||| 0.333333 0.00718601 2.07417e-05 2.58451e-09 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| even in the ||| 0.0017762 0.00718601 2.07417e-05 1.56827e-05 2.718 ||| 0-1 1-2 ||| 563 48212 +a los ||| even just the ||| 0.25 0.00605863 2.07417e-05 1.05618e-06 2.718 ||| 0-0 1-2 ||| 4 48212 +a los ||| even the ||| 0.00109051 0.00605863 4.14834e-05 0.000837108 2.718 ||| 0-0 1-1 ||| 1834 48212 +a los ||| even those ||| 0.00854701 0.0141053 4.14834e-05 3.25854e-05 2.718 ||| 0-0 1-1 ||| 234 48212 +a los ||| even ||| 5.91996e-05 0.000882593 4.14834e-05 0.0019515 2.718 ||| 0-0 ||| 33784 48212 +a los ||| every ||| 0.000215936 0.0072283 8.29669e-05 0.0032639 2.718 ||| 1-0 ||| 18524 48212 +a los ||| everybody ||| 0.000442087 0.0030857 2.07417e-05 0.000154 2.718 ||| 0-0 1-0 ||| 2262 48212 +a los ||| everyone ||| 0.000273623 0.00049582 6.22252e-05 0.0003359 2.718 ||| 0-0 ||| 10964 48212 +a los ||| everything on its ||| 0.125 0.00165503 2.07417e-05 7.49216e-09 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| evils ||| 0.00990099 0.00556842 2.07417e-05 1.65e-05 2.718 ||| 1-0 ||| 101 48212 +a los ||| examples of the ||| 0.0111111 0.00230489 2.07417e-05 2.195e-07 2.718 ||| 0-1 1-2 ||| 90 48212 +a los ||| excuse those ||| 0.333333 0.0142682 2.07417e-05 3.07236e-07 2.718 ||| 1-1 ||| 3 48212 +a los ||| exercise the same rights ||| 0.5 0.00612862 2.07417e-05 4.27548e-12 2.718 ||| 1-1 ||| 2 48212 +a los ||| exercise the same ||| 0.142857 0.00612862 2.07417e-05 2.13667e-08 2.718 ||| 1-1 ||| 7 48212 +a los ||| exercise the ||| 0.01 0.00612862 2.07417e-05 2.65524e-05 2.718 ||| 1-1 ||| 100 48212 +a los ||| expense of the ||| 0.00680272 0.00230489 2.07417e-05 2.46145e-07 2.718 ||| 0-1 1-2 ||| 147 48212 +a los ||| expenses ||| 0.000877963 0.012616 2.07417e-05 0.000317 2.718 ||| 1-0 ||| 1139 48212 +a los ||| experiencing in the shape ||| 0.5 0.00718601 2.07417e-05 2.9158e-11 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| experiencing in the ||| 0.111111 0.00718601 2.07417e-05 4.81951e-07 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| expert ||| 0.000786163 0.00350811 2.07417e-05 8.17e-05 2.718 ||| 1-0 ||| 1272 48212 +a los ||| experts ||| 0.000889944 0.00777152 6.22252e-05 0.0005396 2.718 ||| 1-0 ||| 3371 48212 +a los ||| exploited and forced to ||| 0.333333 0.00409398 2.07417e-05 2.90782e-12 2.718 ||| 0-3 ||| 3 48212 +a los ||| extent to ||| 0.00203252 0.00409398 2.07417e-05 6.7328e-05 2.718 ||| 0-1 ||| 492 48212 +a los ||| extra to watch these events by granting ||| 1 0.00552379 2.07417e-05 3.72437e-24 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| extra to watch these events by ||| 1 0.00552379 2.07417e-05 1.45483e-19 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| extra to watch these events ||| 1 0.00552379 2.07417e-05 2.77106e-17 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| extra to watch these ||| 1 0.00552379 2.07417e-05 3.81163e-13 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| eye to the ||| 0.0169492 0.0281035 2.07417e-05 8.55003e-06 2.718 ||| 0-1 1-2 ||| 59 48212 +a los ||| face those in ||| 1 0.01673 2.07417e-05 1.67841e-07 2.718 ||| 1-1 0-2 ||| 1 48212 +a los ||| face to face those in ||| 1 0.01673 2.07417e-05 2.49512e-12 2.718 ||| 1-3 0-4 ||| 1 48212 +a los ||| faces the ||| 0.0217391 0.0205257 2.07417e-05 0.000102177 2.718 ||| 0-0 1-1 ||| 46 48212 +a los ||| facilitate the ||| 0.0011325 0.00612862 2.07417e-05 1.03378e-05 2.718 ||| 1-1 ||| 883 48212 +a los ||| facilities for the ||| 0.125 0.00835696 2.07417e-05 2.44999e-07 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| facing the ||| 0.00135135 0.0210092 2.07417e-05 0.000596292 2.718 ||| 0-0 1-1 ||| 740 48212 +a los ||| facing those ||| 0.1 0.0489122 2.07417e-05 2.32113e-05 2.718 ||| 0-0 1-1 ||| 10 48212 +a los ||| facing ||| 0.00032457 0.00306052 2.07417e-05 0.0013901 2.718 ||| 0-0 ||| 3081 48212 +a los ||| fact that the ||| 0.000414938 0.000104203 4.14834e-05 8.57841e-07 2.718 ||| 0-1 1-2 ||| 4820 48212 +a los ||| fact to our ||| 1 0.0057078 2.07417e-05 3.66444e-06 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| fail for the ||| 0.5 0.00835696 2.07417e-05 8.53545e-07 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| fail to ||| 0.000693001 0.00409398 2.07417e-05 1.89163e-05 2.718 ||| 0-1 ||| 1443 48212 +a los ||| failure to take due ||| 0.2 0.00409398 2.07417e-05 7.29545e-12 2.718 ||| 0-1 ||| 5 48212 +a los ||| failure to take ||| 0.025641 0.00409398 2.07417e-05 2.63945e-08 2.718 ||| 0-1 ||| 39 48212 +a los ||| failure to ||| 0.00148038 0.00409398 4.14834e-05 1.63941e-05 2.718 ||| 0-1 ||| 1351 48212 +a los ||| fall to the ||| 0.030303 0.0281035 2.07417e-05 1.43803e-05 2.718 ||| 0-1 1-2 ||| 33 48212 +a los ||| falls to the ||| 0.0123457 0.0281035 2.07417e-05 4.70327e-06 2.718 ||| 0-1 1-2 ||| 81 48212 +a los ||| far as the ||| 0.00113636 0.00612862 2.07417e-05 2.98834e-06 2.718 ||| 1-2 ||| 880 48212 +a los ||| far as to view those ||| 1 0.0654285 2.07417e-05 3.68083e-11 2.718 ||| 0-2 1-4 ||| 1 48212 +a los ||| far as ||| 0.000569909 0.00043374 6.22252e-05 5.98892e-06 2.718 ||| 0-1 ||| 5264 48212 +a los ||| far removed from the ||| 0.0149254 0.0053267 2.07417e-05 9.54995e-11 2.718 ||| 0-2 1-3 ||| 67 48212 +a los ||| farmers ' ||| 0.00621118 0.0190485 2.07417e-05 1.68685e-05 2.718 ||| 1-0 ||| 161 48212 +a los ||| farmers in the ||| 0.00436681 0.00718601 2.07417e-05 1.03864e-06 2.718 ||| 0-1 1-2 ||| 229 48212 +a los ||| farmers of wanting to ||| 0.25 0.0873487 2.07417e-05 1.38413e-09 2.718 ||| 1-0 0-3 ||| 4 48212 +a los ||| farmers ||| 0.00046669 0.00131568 8.29669e-05 0.00247645 2.718 ||| 0-0 1-0 ||| 8571 48212 +a los ||| fast ||| 0.000925926 2.56885e-05 2.07417e-05 1.8e-06 2.718 ||| 0-0 ||| 1080 48212 +a los ||| fathers raising ||| 0.25 0.0121325 2.07417e-05 3.4224e-09 2.718 ||| 1-0 ||| 4 48212 +a los ||| fathers ||| 0.00212766 0.0121325 2.07417e-05 0.0001488 2.718 ||| 1-0 ||| 470 48212 +a los ||| favour ||| 4.8695e-05 3.04004e-05 2.07417e-05 3.38e-05 2.718 ||| 0-0 ||| 20536 48212 +a los ||| fears ||| 0.00078064 0.00489113 2.07417e-05 0.0001303 2.718 ||| 1-0 ||| 1281 48212 +a los ||| feed ||| 0.000460829 0.00420144 2.07417e-05 0.0002032 2.718 ||| 1-0 ||| 2170 48212 +a los ||| feeding materials ||| 0.25 0.00691098 2.07417e-05 7.95953e-09 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| feeling the ||| 0.0232558 0.000412212 2.07417e-05 2.35926e-06 2.718 ||| 0-0 1-1 ||| 43 48212 +a los ||| fellow MEPs ||| 0.00242718 0.00764494 2.07417e-05 1.02903e-07 2.718 ||| 1-1 ||| 412 48212 +a los ||| fellow ||| 0.00186916 8.23453e-06 8.29669e-05 1.95e-05 2.718 ||| 0-0 1-0 ||| 2140 48212 +a los ||| fertiliser but ||| 0.5 0.0064251 2.07417e-05 9.97764e-09 2.718 ||| 1-0 ||| 2 48212 +a los ||| fertiliser ||| 0.0105263 0.0064251 2.07417e-05 1.46e-05 2.718 ||| 1-0 ||| 95 48212 +a los ||| few examples of the ||| 0.0909091 0.00230489 2.07417e-05 3.84784e-11 2.718 ||| 0-2 1-3 ||| 11 48212 +a los ||| few of the ||| 0.00714286 0.00230489 2.07417e-05 2.22419e-06 2.718 ||| 0-1 1-2 ||| 140 48212 +a los ||| finally to the ||| 0.111111 0.0281035 2.07417e-05 1.76861e-05 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| financial resources available to compensate victims ||| 1 0.050462 2.07417e-05 6.74643e-21 2.718 ||| 1-1 0-3 ||| 1 48212 +a los ||| financial resources available to compensate ||| 1 0.050462 2.07417e-05 1.91117e-16 2.718 ||| 1-1 0-3 ||| 1 48212 +a los ||| financial resources available to ||| 0.111111 0.050462 2.07417e-05 6.59024e-11 2.718 ||| 1-1 0-3 ||| 9 48212 +a los ||| financial ||| 2.96842e-05 4.74647e-05 2.07417e-05 3.01e-05 2.718 ||| 1-0 ||| 33688 48212 +a los ||| finger at the ||| 0.125 0.0249683 2.07417e-05 2.56955e-07 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| fingers at the ||| 0.333333 0.0249683 2.07417e-05 4.23391e-08 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| fire on ||| 0.0416667 0.00572786 2.07417e-05 3.68734e-06 2.718 ||| 1-0 0-1 ||| 24 48212 +a los ||| firmly on the ||| 0.02 0.00957523 2.07417e-05 6.15109e-07 2.718 ||| 0-1 1-2 ||| 50 48212 +a los ||| firmly to the ||| 0.0625 0.0281035 2.07417e-05 5.67998e-06 2.718 ||| 0-1 1-2 ||| 16 48212 +a los ||| first to the problems ||| 1 0.0244172 2.07417e-05 3.55059e-08 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| first with the ||| 0.1 0.00698995 2.07417e-05 3.85573e-06 2.718 ||| 0-1 1-2 ||| 10 48212 +a los ||| firstly for those in ||| 1 0.0194561 2.07417e-05 6.63758e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| firstly for those ||| 0.5 0.0194561 2.07417e-05 3.10102e-08 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| fish ||| 0.000734214 0.00454454 6.22252e-05 0.000351 2.718 ||| 1-0 ||| 4086 48212 +a los ||| fitted to ||| 0.030303 0.00409398 2.07417e-05 3.29284e-06 2.718 ||| 0-1 ||| 33 48212 +a los ||| fix the ||| 0.0181818 0.00612862 2.07417e-05 1.84451e-06 2.718 ||| 1-1 ||| 55 48212 +a los ||| fleeces ||| 0.2 0.0142516 2.07417e-05 3.7e-06 2.718 ||| 0-0 ||| 5 48212 +a los ||| flights to the ||| 0.111111 0.0281035 2.07417e-05 1.24719e-06 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| flights ||| 0.000813008 0.0155152 2.07417e-05 0.0004521 2.718 ||| 1-0 ||| 1230 48212 +a los ||| flying the flag ||| 0.0243902 0.00612862 2.07417e-05 4.5212e-11 2.718 ||| 1-1 ||| 41 48212 +a los ||| flying the ||| 0.0166667 0.00612862 2.07417e-05 6.64882e-06 2.718 ||| 1-1 ||| 60 48212 +a los ||| focused message to the ||| 0.5 0.0281035 2.07417e-05 1.61513e-10 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| focused on the ||| 0.0041841 0.00957523 2.07417e-05 3.62882e-07 2.718 ||| 0-1 1-2 ||| 239 48212 +a los ||| focusing its attention on ||| 0.2 0.00139487 2.07417e-05 2.85273e-13 2.718 ||| 0-3 ||| 5 48212 +a los ||| focusing on the ||| 0.00515464 0.00957523 2.07417e-05 3.28709e-07 2.718 ||| 0-1 1-2 ||| 194 48212 +a los ||| followers of the ||| 0.0769231 0.00230489 2.07417e-05 8.88152e-09 2.718 ||| 0-1 1-2 ||| 13 48212 +a los ||| following objectives ||| 0.0384615 0.00426439 2.07417e-05 7.69614e-07 2.718 ||| 0-0 1-1 ||| 26 48212 +a los ||| following the ||| 0.00110914 0.00881011 0.000103709 0.000422865 2.718 ||| 0-0 1-1 ||| 4508 48212 +a los ||| food safety ||| 0.000618812 0.00619108 2.07417e-05 1.11748e-07 2.718 ||| 1-0 ||| 1616 48212 +a los ||| food ||| 8.56238e-05 0.00619108 2.07417e-05 0.0022041 2.718 ||| 1-0 ||| 11679 48212 +a los ||| for ' ||| 0.00355872 0.00303747 2.07417e-05 0.000196005 2.718 ||| 0-0 1-1 ||| 281 48212 +a los ||| for ( the ||| 0.5 0.00835696 2.07417e-05 1.52437e-05 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| for , the ||| 0.04 0.00835696 2.07417e-05 0.00188499 2.718 ||| 0-0 1-2 ||| 25 48212 +a los ||| for , ||| 0.00112233 0.0012174 2.07417e-05 0.00439436 2.718 ||| 0-0 ||| 891 48212 +a los ||| for EU ||| 0.0060241 0.000295151 2.07417e-05 1.99203e-05 2.718 ||| 0-0 1-1 ||| 166 48212 +a los ||| for Europe 's ||| 0.0454545 0.00239055 2.07417e-05 1.14244e-07 2.718 ||| 0-0 1-2 ||| 22 48212 +a los ||| for European ||| 0.0111732 0.000233496 4.14834e-05 4.19889e-05 2.718 ||| 0-0 1-1 ||| 179 48212 +a los ||| for Iraq ’ s ||| 0.5 0.00164457 2.07417e-05 3.95569e-13 2.718 ||| 0-0 1-2 1-3 ||| 2 48212 +a los ||| for US ||| 0.1 0.00815231 2.07417e-05 4.4104e-05 2.718 ||| 0-0 1-1 ||| 10 48212 +a los ||| for a long time ||| 0.000829187 3.24604e-06 2.07417e-05 2.68145e-12 2.718 ||| 0-0 1-2 ||| 1206 48212 +a los ||| for a long ||| 0.000891266 3.24604e-06 2.07417e-05 1.63334e-09 2.718 ||| 0-0 1-2 ||| 1122 48212 +a los ||| for a ||| 0.00014644 0.0012174 8.29669e-05 0.00163334 2.718 ||| 0-0 ||| 27315 48212 +a los ||| for all components of the ||| 1 0.00325063 2.07417e-05 5.32676e-12 2.718 ||| 0-0 1-1 1-2 1-3 1-4 ||| 1 48212 +a los ||| for all of the ||| 0.0123457 0.00835696 2.07417e-05 4.06053e-06 2.718 ||| 0-0 1-3 ||| 81 48212 +a los ||| for all the reasons that ||| 0.1 0.00478644 2.07417e-05 7.22652e-11 2.718 ||| 0-0 1-1 1-2 ||| 10 48212 +a los ||| for all the reasons ||| 0.0416667 0.00478644 2.07417e-05 4.29598e-09 2.718 ||| 0-0 1-1 1-2 ||| 24 48212 +a los ||| for all the ||| 0.0030581 0.00478644 8.29669e-05 4.24923e-05 2.718 ||| 0-0 1-1 1-2 ||| 1308 48212 +a los ||| for all ||| 0.00122087 0.00121592 0.000228159 9.90598e-05 2.718 ||| 0-0 1-1 ||| 9010 48212 +a los ||| for animal ||| 0.0555556 0.0118439 2.07417e-05 5.23064e-05 2.718 ||| 0-0 1-1 ||| 18 48212 +a los ||| for any of the ||| 0.0555556 0.00835696 2.07417e-05 1.29943e-06 2.718 ||| 0-0 1-3 ||| 18 48212 +a los ||| for any ||| 0.00287356 0.00121722 6.22252e-05 3.40333e-05 2.718 ||| 0-0 1-1 ||| 1044 48212 +a los ||| for anyone ||| 0.00735294 0.00212011 2.07417e-05 5.84049e-06 2.718 ||| 0-0 1-1 ||| 136 48212 +a los ||| for bona ||| 0.25 0.00112029 2.07417e-05 3.68485e-08 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| for border ||| 0.25 0.000408748 2.07417e-05 1.14599e-06 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| for both the ||| 0.00480769 0.00835696 2.07417e-05 2.61833e-05 2.718 ||| 0-0 1-2 ||| 208 48212 +a los ||| for both ||| 0.00318471 0.00240941 8.29669e-05 4.41371e-05 2.718 ||| 0-0 1-1 ||| 1256 48212 +a los ||| for breast ||| 0.0909091 0.00282927 2.07417e-05 1.39656e-06 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| for by ||| 0.00337838 0.000426865 2.07417e-05 5.96872e-05 2.718 ||| 0-0 1-1 ||| 296 48212 +a los ||| for certain ||| 0.00136426 0.000209605 2.07417e-05 2.32883e-06 2.718 ||| 0-0 1-1 ||| 733 48212 +a los ||| for child ||| 0.0714286 0.00515574 2.07417e-05 1.3365e-05 2.718 ||| 0-0 1-1 ||| 14 48212 +a los ||| for civil ||| 0.0526316 0.0029962 2.07417e-05 1.94192e-05 2.718 ||| 0-0 1-1 ||| 19 48212 +a los ||| for communities ||| 0.047619 0.0012174 2.07417e-05 4.90085e-07 2.718 ||| 0-0 ||| 21 48212 +a los ||| for competing ||| 0.333333 0.000842187 2.07417e-05 2.5057e-07 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| for dried ||| 1 0.00683377 2.07417e-05 4.31127e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for each ||| 0.00375587 0.00339979 8.29669e-05 3.2423e-05 2.718 ||| 0-0 1-1 ||| 1065 48212 +a los ||| for employees and ||| 0.0322581 0.0231282 2.07417e-05 7.43574e-07 2.718 ||| 0-0 1-1 ||| 31 48212 +a los ||| for employees ||| 0.00628931 0.0231282 2.07417e-05 5.93629e-05 2.718 ||| 0-0 1-1 ||| 159 48212 +a los ||| for expressing their ||| 0.125 0.00161764 2.07417e-05 2.21705e-09 2.718 ||| 0-0 1-2 ||| 8 48212 +a los ||| for fighting ||| 0.00552486 0.000302886 2.07417e-05 7.51709e-07 2.718 ||| 0-0 1-1 ||| 181 48212 +a los ||| for food ||| 0.00377358 0.00844213 2.07417e-05 8.12178e-05 2.718 ||| 0-0 1-1 ||| 265 48212 +a los ||| for fundamental ||| 0.030303 0.00643794 2.07417e-05 5.45984e-05 2.718 ||| 0-0 1-1 ||| 33 48212 +a los ||| for governments to ||| 0.0285714 0.0407559 2.07417e-05 4.59463e-05 2.718 ||| 0-0 1-1 0-2 ||| 35 48212 +a los ||| for household ||| 0.142857 0.00524488 2.07417e-05 1.21969e-06 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| for human ||| 0.00689655 0.021854 2.07417e-05 0.000718748 2.718 ||| 0-0 1-1 ||| 145 48212 +a los ||| for individual ||| 0.0310559 0.00754111 0.000103709 4.73614e-05 2.718 ||| 0-0 1-1 ||| 161 48212 +a los ||| for it to ||| 0.0025641 0.00409398 2.07417e-05 4.78779e-05 2.718 ||| 0-2 ||| 390 48212 +a los ||| for its supply ||| 0.5 0.00144446 2.07417e-05 4.05177e-09 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| for its ||| 0.00236718 0.00144446 0.000186676 7.86752e-05 2.718 ||| 0-0 1-1 ||| 3802 48212 +a los ||| for later ||| 0.0434783 0.0012174 2.07417e-05 3.16897e-06 2.718 ||| 0-0 ||| 23 48212 +a los ||| for local ||| 0.037037 0.00130431 2.07417e-05 6.91278e-06 2.718 ||| 0-0 1-1 ||| 27 48212 +a los ||| for making a very ||| 0.333333 0.0012174 2.07417e-05 2.18633e-09 2.718 ||| 0-0 ||| 3 48212 +a los ||| for making a ||| 0.0243902 0.0012174 2.07417e-05 6.28346e-07 2.718 ||| 0-0 ||| 41 48212 +a los ||| for making ||| 0.00199203 0.0012174 2.07417e-05 1.41756e-05 2.718 ||| 0-0 ||| 502 48212 +a los ||| for members of ||| 0.0263158 0.010566 2.07417e-05 3.97722e-06 2.718 ||| 0-0 1-1 ||| 38 48212 +a los ||| for members ||| 0.0169492 0.010566 2.07417e-05 7.3159e-05 2.718 ||| 0-0 1-1 ||| 59 48212 +a los ||| for more ||| 0.000785546 0.0012174 2.07417e-05 8.41509e-05 2.718 ||| 0-0 ||| 1273 48212 +a los ||| for my part , ||| 0.00236407 0.0012174 2.07417e-05 3.36917e-09 2.718 ||| 0-0 ||| 423 48212 +a los ||| for my part ||| 0.00189753 0.0012174 2.07417e-05 2.82519e-08 2.718 ||| 0-0 ||| 527 48212 +a los ||| for my ||| 0.00129282 0.0012174 4.14834e-05 2.36973e-05 2.718 ||| 0-0 ||| 1547 48212 +a los ||| for national ||| 0.03125 0.000887372 2.07417e-05 1.57638e-05 2.718 ||| 0-0 1-1 ||| 32 48212 +a los ||| for new ||| 0.00151286 4.01552e-05 2.07417e-05 1.43341e-06 2.718 ||| 0-0 1-1 ||| 661 48212 +a los ||| for non-Latvian ||| 1 0.0227792 2.07417e-05 3.68485e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for ordinary ||| 0.0357143 0.00698158 2.07417e-05 7.95191e-06 2.718 ||| 0-0 1-1 ||| 28 48212 +a los ||| for other ||| 0.00093633 0.000263018 2.07417e-05 1.04613e-05 2.718 ||| 0-0 1-1 ||| 1068 48212 +a los ||| for our ||| 0.00297114 0.0016973 0.000290384 0.00013159 2.718 ||| 0-0 1-1 ||| 4712 48212 +a los ||| for parties ||| 0.0322581 0.00906799 2.07417e-05 6.19423e-05 2.718 ||| 0-0 1-1 ||| 31 48212 +a los ||| for people ||| 0.00282686 0.00611398 8.29669e-05 0.000290193 2.718 ||| 0-0 1-1 ||| 1415 48212 +a los ||| for private ||| 0.08 0.00124941 4.14834e-05 4.47709e-06 2.718 ||| 0-0 1-1 ||| 25 48212 +a los ||| for professional ||| 0.125 0.000163484 2.07417e-05 2.5057e-07 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| for public ||| 0.0229885 0.00109997 4.14834e-05 2.1748e-05 2.718 ||| 0-0 1-1 ||| 87 48212 +a los ||| for real ||| 0.0123457 0.0012174 2.07417e-05 6.62905e-06 2.718 ||| 0-0 ||| 81 48212 +a los ||| for reform to those ||| 1 0.0424423 2.07417e-05 8.8369e-09 2.718 ||| 0-0 0-2 1-3 ||| 1 48212 +a los ||| for services ||| 0.0034965 0.0185998 2.07417e-05 0.000287256 2.718 ||| 0-0 1-1 ||| 286 48212 +a los ||| for some ||| 0.000497512 0.000141903 2.07417e-05 4.19336e-06 2.718 ||| 0-0 1-1 ||| 2010 48212 +a los ||| for staff other ||| 0.25 0.00105518 2.07417e-05 3.34161e-09 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| for staff ||| 0.0125 0.00105518 2.07417e-05 2.57939e-06 2.718 ||| 0-0 1-1 ||| 80 48212 +a los ||| for such coffee to ||| 1 0.00011357 2.07417e-05 8.99612e-13 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for such coffee ||| 1 0.00011357 2.07417e-05 1.01241e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for such systems ||| 0.2 0.0145951 2.07417e-05 2.47713e-07 2.718 ||| 0-0 1-2 ||| 5 48212 +a los ||| for such ||| 0.000896861 0.00011357 2.07417e-05 4.04965e-06 2.718 ||| 0-0 1-1 ||| 1115 48212 +a los ||| for that damage the ||| 0.333333 0.00835696 2.07417e-05 1.11939e-08 2.718 ||| 0-0 1-3 ||| 3 48212 +a los ||| for the European ||| 0.00362319 0.00835696 2.07417e-05 5.2855e-05 2.718 ||| 0-0 1-1 ||| 276 48212 +a los ||| for the Slovenian ||| 1 0.00835696 2.07417e-05 3.9516e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for the attention of ||| 0.0833333 0.00835696 2.07417e-05 2.24535e-07 2.718 ||| 0-0 1-1 ||| 12 48212 +a los ||| for the attention ||| 0.0175439 0.00835696 2.07417e-05 4.13021e-06 2.718 ||| 0-0 1-1 ||| 57 48212 +a los ||| for the benefit of the ||| 0.016835 0.00561638 0.000103709 2.95355e-09 2.718 ||| 0-0 1-1 1-3 1-4 ||| 297 48212 +a los ||| for the benefit of those ||| 0.0434783 0.0124111 2.07417e-05 1.47145e-10 2.718 ||| 0-0 0-3 1-4 ||| 23 48212 +a los ||| for the benefit of ||| 0.00802752 0.00835696 0.000145192 1.1317e-07 2.718 ||| 0-0 1-1 ||| 872 48212 +a los ||| for the benefit ||| 0.0085197 0.00835696 0.000165934 2.0817e-06 2.718 ||| 0-0 1-1 ||| 939 48212 +a los ||| for the big ||| 0.0434783 0.00835696 2.07417e-05 7.44481e-07 2.718 ||| 0-0 1-1 ||| 23 48212 +a los ||| for the countries ||| 0.0022779 0.00744915 2.07417e-05 0.000131765 2.718 ||| 0-0 1-1 1-2 ||| 439 48212 +a los ||| for the creation of ||| 0.00263158 0.00835696 2.07417e-05 3.98715e-08 2.718 ||| 0-0 1-1 ||| 380 48212 +a los ||| for the creation ||| 0.0021978 0.00835696 2.07417e-05 7.33417e-07 2.718 ||| 0-0 1-1 ||| 455 48212 +a los ||| for the freedom to ||| 0.333333 0.00835696 2.07417e-05 1.19806e-07 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| for the freedom ||| 0.0136986 0.00835696 2.07417e-05 1.34829e-06 2.718 ||| 0-0 1-1 ||| 73 48212 +a los ||| for the general ||| 0.0666667 0.00835696 2.07417e-05 2.76454e-06 2.718 ||| 0-0 1-1 ||| 15 48212 +a los ||| for the hospital to be working ||| 1 0.00835696 2.07417e-05 1.55087e-14 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for the hospital to be ||| 1 0.00835696 2.07417e-05 8.14532e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for the hospital to ||| 1 0.00835696 2.07417e-05 4.49449e-09 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for the hospital ||| 1 0.00835696 2.07417e-05 5.05805e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for the members of the ||| 0.0454545 0.00561638 2.07417e-05 3.30789e-09 2.718 ||| 0-0 1-1 1-3 1-4 ||| 22 48212 +a los ||| for the most part , ||| 0.00854701 0.00835696 2.07417e-05 9.71275e-10 2.718 ||| 0-0 1-1 ||| 117 48212 +a los ||| for the most part ||| 0.00328947 0.00835696 2.07417e-05 8.14454e-09 2.718 ||| 0-0 1-1 ||| 304 48212 +a los ||| for the most ||| 0.0030581 0.00835696 2.07417e-05 6.83152e-06 2.718 ||| 0-0 1-1 ||| 327 48212 +a los ||| for the necessary ||| 0.030303 0.00835696 2.07417e-05 4.06699e-06 2.718 ||| 0-0 1-1 ||| 33 48212 +a los ||| for the now ||| 1 0.00835696 2.07417e-05 3.25596e-05 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for the other ||| 0.00288184 0.00430999 2.07417e-05 4.48744e-06 2.718 ||| 0-0 1-1 1-2 ||| 347 48212 +a los ||| for the people of ||| 0.00282486 0.00486872 2.07417e-05 4.1173e-07 2.718 ||| 0-0 1-1 1-2 1-3 ||| 354 48212 +a los ||| for the sake of the ||| 0.00434783 0.00835696 2.07417e-05 3.70076e-08 2.718 ||| 0-0 1-1 1-4 ||| 230 48212 +a los ||| for the simple ||| 0.00694444 0.00835696 2.07417e-05 6.82836e-07 2.718 ||| 0-0 1-1 ||| 144 48212 +a los ||| for the so-called ||| 0.0135135 0.00835696 2.07417e-05 5.91159e-07 2.718 ||| 0-0 1-1 ||| 74 48212 +a los ||| for the time being to my elders ||| 1 0.00835696 2.07417e-05 1.68798e-18 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for the time being to my ||| 1 0.00835696 2.07417e-05 4.21995e-12 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for the time being to ||| 0.5 0.00835696 2.07417e-05 6.56188e-09 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| for the time being ||| 0.00176991 0.00835696 2.07417e-05 7.38467e-08 2.718 ||| 0-0 1-1 ||| 565 48212 +a los ||| for the time ||| 0.00373134 0.00835696 2.07417e-05 2.59494e-05 2.718 ||| 0-0 1-1 ||| 268 48212 +a los ||| for the two ||| 0.00671141 0.00835696 2.07417e-05 3.73663e-06 2.718 ||| 0-0 1-1 ||| 149 48212 +a los ||| for the use ||| 0.00295858 0.00835696 2.07417e-05 7.68507e-06 2.718 ||| 0-0 1-1 ||| 338 48212 +a los ||| for the very ||| 0.0214286 0.00835696 6.22252e-05 5.49984e-05 2.718 ||| 0-0 1-1 ||| 140 48212 +a los ||| for the vote ||| 0.00606061 0.00835696 2.07417e-05 2.48635e-06 2.718 ||| 0-0 1-1 ||| 165 48212 +a los ||| for the work of those ||| 0.5 0.0139065 2.07417e-05 9.08243e-09 2.718 ||| 0-0 1-1 1-4 ||| 2 48212 +a los ||| for the ||| 0.0150158 0.00835696 0.035012 0.0158064 2.718 ||| 0-0 1-1 ||| 112415 48212 +a los ||| for their ||| 0.00172549 0.00161764 0.000228159 8.42983e-05 2.718 ||| 0-0 1-1 ||| 6375 48212 +a los ||| for them ||| 0.00135379 0.00261173 6.22252e-05 7.41613e-05 2.718 ||| 0-0 1-1 ||| 2216 48212 +a los ||| for these ||| 0.00151699 0.00164258 0.000103709 8.98182e-05 2.718 ||| 0-0 1-1 ||| 3296 48212 +a los ||| for they are not in the ||| 1 0.00718601 2.07417e-05 3.34914e-11 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| for this ||| 0.000122264 0.0012174 4.14834e-05 0.000238093 2.718 ||| 0-0 ||| 16358 48212 +a los ||| for those coming ||| 1 0.0100485 2.07417e-05 4.00548e-08 2.718 ||| 0-0 1-1 1-2 ||| 1 48212 +a los ||| for those groups of ||| 1 0.0194561 2.07417e-05 2.21433e-09 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for those groups ||| 0.142857 0.0194561 2.07417e-05 4.07316e-08 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| for those in ||| 0.0196078 0.0194561 2.07417e-05 1.31698e-05 2.718 ||| 0-0 1-1 ||| 51 48212 +a los ||| for those of us ||| 0.0172414 0.0194561 2.07417e-05 9.64072e-08 2.718 ||| 0-0 1-1 ||| 58 48212 +a los ||| for those of ||| 0.0172414 0.0194561 4.14834e-05 3.34492e-05 2.718 ||| 0-0 1-1 ||| 116 48212 +a los ||| for those people ||| 0.0135135 0.012785 2.07417e-05 4.84553e-06 2.718 ||| 0-0 1-1 1-2 ||| 74 48212 +a los ||| for those ||| 0.0544968 0.0194561 0.0033809 0.000615282 2.718 ||| 0-0 1-1 ||| 2991 48212 +a los ||| for tourist ||| 1 0.000833385 2.07417e-05 3.24267e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for trade and ||| 0.0238095 0.00209935 2.07417e-05 3.46447e-07 2.718 ||| 0-0 1-1 ||| 42 48212 +a los ||| for trade ||| 0.00423729 0.00209935 2.07417e-05 2.76585e-05 2.718 ||| 0-0 1-1 ||| 236 48212 +a los ||| for trades ||| 1 0.00803973 2.07417e-05 8.5857e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| for us ||| 0.000203169 0.0012174 2.07417e-05 0.000106205 2.718 ||| 0-0 ||| 4922 48212 +a los ||| for what ||| 0.00081103 0.000418288 2.07417e-05 3.53267e-05 2.718 ||| 0-0 1-1 ||| 1233 48212 +a los ||| for which the ||| 0.00293255 0.00835696 2.07417e-05 0.000134269 2.718 ||| 0-0 1-2 ||| 341 48212 +a los ||| for which ||| 0.000306279 8.41237e-06 2.07417e-05 1.25285e-06 2.718 ||| 0-0 1-1 ||| 3265 48212 +a los ||| for whom ||| 0.0021322 0.0104996 2.07417e-05 3.33184e-05 2.718 ||| 0-0 1-1 ||| 469 48212 +a los ||| for work on the ||| 0.2 0.00957523 2.07417e-05 7.91675e-08 2.718 ||| 0-2 1-3 ||| 5 48212 +a los ||| for ||| 0.000479452 0.0012174 0.00541359 0.0368485 2.718 ||| 0-0 ||| 544372 48212 +a los ||| force against the ||| 0.0526316 0.006293 2.07417e-05 1.89785e-07 2.718 ||| 0-1 1-2 ||| 19 48212 +a los ||| force all the ||| 0.25 0.000476879 2.07417e-05 4.03809e-08 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| force behind those ||| 1 0.0262872 2.07417e-05 2.18942e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| forced the ||| 0.012987 0.00837598 2.07417e-05 0.000119421 2.718 ||| 0-0 1-1 ||| 77 48212 +a los ||| forced to ||| 0.000776398 0.00409398 2.07417e-05 2.46963e-05 2.718 ||| 0-1 ||| 1288 48212 +a los ||| forcing people ||| 0.111111 0.0300317 2.07417e-05 2.06333e-06 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| forcing the ||| 0.0102041 0.0410491 2.07417e-05 0.000112387 2.718 ||| 0-0 1-1 ||| 98 48212 +a los ||| forged with those ||| 0.5 0.0162735 2.07417e-05 6.9692e-10 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| forgetting the ||| 0.00671141 0.00612862 2.07417e-05 1.24397e-06 2.718 ||| 1-1 ||| 149 48212 +a los ||| form , the ||| 0.0434783 0.00612862 2.07417e-05 2.32858e-05 2.718 ||| 1-2 ||| 23 48212 +a los ||| forward to the ||| 0.003663 0.0281035 2.07417e-05 8.36069e-05 2.718 ||| 0-1 1-2 ||| 273 48212 +a los ||| forward to ||| 0.000968054 0.00409398 2.07417e-05 0.000194908 2.718 ||| 0-1 ||| 1033 48212 +a los ||| founded upon the principles of ||| 0.2 0.0233035 2.07417e-05 3.40913e-14 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| founded upon the principles ||| 0.166667 0.0233035 2.07417e-05 6.27094e-13 2.718 ||| 0-1 1-2 ||| 6 48212 +a los ||| founded upon the ||| 0.025641 0.0233035 2.07417e-05 1.55606e-08 2.718 ||| 0-1 1-2 ||| 39 48212 +a los ||| free of the ||| 0.0357143 0.00230489 2.07417e-05 1.47941e-06 2.718 ||| 0-1 1-2 ||| 28 48212 +a los ||| friend on the ||| 0.333333 0.00957523 2.07417e-05 1.87136e-07 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| frightening the ||| 0.333333 0.000650468 2.07417e-05 3.86061e-07 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| from a ||| 0.000203004 0.000775968 2.07417e-05 0.000319093 2.718 ||| 0-0 ||| 4926 48212 +a los ||| from across the ||| 0.0196078 0.00566407 2.07417e-05 1.51928e-06 2.718 ||| 0-0 0-1 1-2 ||| 51 48212 +a los ||| from all ||| 0.000844595 0.000775022 2.07417e-05 1.93525e-05 2.718 ||| 0-0 1-1 ||| 1184 48212 +a los ||| from allowing the ||| 1 0.0053267 2.07417e-05 1.55634e-07 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| from any ||| 0.00260417 0.000775854 2.07417e-05 6.64881e-06 2.718 ||| 0-0 1-1 ||| 384 48212 +a los ||| from being the ||| 0.0526316 0.0053267 2.07417e-05 8.78775e-06 2.718 ||| 0-0 1-2 ||| 19 48212 +a los ||| from close by to the ||| 1 0.0281035 2.07417e-05 1.88407e-10 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| from each ||| 0.00555556 0.00216702 2.07417e-05 6.33422e-06 2.718 ||| 0-0 1-1 ||| 180 48212 +a los ||| from ending up in the hands ||| 0.25 0.00718601 2.07417e-05 1.34122e-16 2.718 ||| 0-3 1-4 ||| 4 48212 +a los ||| from ending up in the ||| 0.2 0.00718601 2.07417e-05 1.33058e-12 2.718 ||| 0-3 1-4 ||| 5 48212 +a los ||| from going to the ||| 0.5 0.0281035 2.07417e-05 2.07091e-07 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| from its ||| 0.00153374 0.000920694 2.07417e-05 1.53702e-05 2.718 ||| 0-0 1-1 ||| 652 48212 +a los ||| from landfill ||| 0.0909091 0.00857965 2.07417e-05 6.37094e-07 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| from me ||| 0.00925926 0.000775968 2.07417e-05 4.3344e-06 2.718 ||| 0-0 ||| 108 48212 +a los ||| from other socialist and left-wing ||| 0.5 2.8277e-05 2.07417e-05 6.19921e-21 2.718 ||| 0-3 ||| 2 48212 +a los ||| from other socialist and ||| 0.5 2.8277e-05 2.07417e-05 5.63565e-15 2.718 ||| 0-3 ||| 2 48212 +a los ||| from other ||| 0.00091659 0.000167647 2.07417e-05 2.04374e-06 2.718 ||| 0-0 1-1 ||| 1091 48212 +a los ||| from our ||| 0.00145666 0.00108185 4.14834e-05 2.57076e-05 2.718 ||| 0-0 1-1 ||| 1373 48212 +a los ||| from public ||| 0.0416667 0.000701117 2.07417e-05 4.24873e-06 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| from that ||| 0.000884173 2.23454e-06 2.07417e-05 3.15307e-07 2.718 ||| 0-0 1-1 ||| 1131 48212 +a los ||| from the budget to ||| 0.142857 0.0053267 2.07417e-05 3.38599e-08 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| from the budget ||| 0.0121951 0.0053267 2.07417e-05 3.81056e-07 2.718 ||| 0-0 1-1 ||| 82 48212 +a los ||| from the former East ||| 0.333333 0.0053267 2.07417e-05 4.18256e-12 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| from the former ||| 0.0204082 0.0053267 2.07417e-05 1.39885e-07 2.718 ||| 0-0 1-1 ||| 49 48212 +a los ||| from the start to address the ||| 1 0.0053267 2.07417e-05 1.24741e-12 2.718 ||| 0-0 1-1 1-5 ||| 1 48212 +a los ||| from the viewpoint of countries ||| 1 0.00474806 2.07417e-05 1.31547e-11 2.718 ||| 0-0 1-1 1-4 ||| 1 48212 +a los ||| from the ||| 0.00595052 0.0053267 0.00514395 0.00308797 2.718 ||| 0-0 1-1 ||| 41677 48212 +a los ||| from their ||| 0.00205128 0.00103108 4.14834e-05 1.64687e-05 2.718 ||| 0-0 1-1 ||| 975 48212 +a los ||| from those concerned ||| 0.333333 0.0124013 2.07417e-05 1.93358e-07 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| from those with ||| 0.0909091 0.0124013 2.07417e-05 7.68636e-07 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| from those ||| 0.0438185 0.0124013 0.000580768 0.000120203 2.718 ||| 0-0 1-1 ||| 639 48212 +a los ||| from trade ||| 0.0416667 0.00133812 2.07417e-05 5.40342e-06 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| from ||| 0.000292927 0.000775968 0.000684477 0.0071988 2.718 ||| 0-0 ||| 112656 48212 +a los ||| function of the ||| 0.0105263 0.00230489 2.07417e-05 3.1466e-07 2.718 ||| 0-1 1-2 ||| 95 48212 +a los ||| function to the ||| 0.333333 0.0281035 2.07417e-05 3.72655e-06 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| fundamental ||| 0.0001404 0.0047213 4.14834e-05 0.0014817 2.718 ||| 1-0 ||| 14245 48212 +a los ||| funding for those ||| 0.142857 0.0194561 2.07417e-05 3.27945e-08 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| funding that was ||| 0.166667 0.00155805 2.07417e-05 1.76288e-08 2.718 ||| 1-0 ||| 6 48212 +a los ||| funding that ||| 0.0131579 0.00155805 2.07417e-05 5.62683e-06 2.718 ||| 1-0 ||| 76 48212 +a los ||| funding ||| 7.2427e-05 0.00155805 2.07417e-05 0.0003345 2.718 ||| 1-0 ||| 13807 48212 +a los ||| funds ||| 6.39795e-05 0.0110485 2.07417e-05 0.0037422 2.718 ||| 1-0 ||| 15630 48212 +a los ||| further than those ||| 0.0769231 0.00689761 2.07417e-05 1.01431e-08 2.718 ||| 0-1 1-2 ||| 13 48212 +a los ||| gained as part ||| 0.5 0.00043374 2.07417e-05 3.31533e-10 2.718 ||| 0-1 ||| 2 48212 +a los ||| gained as ||| 0.166667 0.00043374 2.07417e-05 2.78085e-07 2.718 ||| 0-1 ||| 6 48212 +a los ||| gains ||| 0.0017452 0.00199892 2.07417e-05 2.72e-05 2.718 ||| 1-0 ||| 573 48212 +a los ||| gave it to the ||| 1 0.0281035 2.07417e-05 2.23127e-07 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| gave our approval to ||| 0.333333 0.00409398 2.07417e-05 1.2064e-12 2.718 ||| 0-3 ||| 3 48212 +a los ||| gave the ||| 0.00769231 0.00512826 4.14834e-05 6.10834e-05 2.718 ||| 0-0 1-1 ||| 260 48212 +a los ||| gave to the ||| 0.027027 0.0281035 2.07417e-05 1.25471e-05 2.718 ||| 0-1 1-2 ||| 37 48212 +a los ||| get to ||| 0.00205339 0.00409398 2.07417e-05 0.000153152 2.718 ||| 0-1 ||| 487 48212 +a los ||| get ||| 0.000130463 5.33241e-05 2.07417e-05 4.38e-05 2.718 ||| 0-0 ||| 7665 48212 +a los ||| gets to the ||| 0.0526316 0.0281035 2.07417e-05 4.4929e-06 2.718 ||| 0-1 1-2 ||| 19 48212 +a los ||| getting engaged in ||| 0.142857 0.00104682 2.07417e-05 2.86245e-10 2.718 ||| 0-2 ||| 7 48212 +a los ||| getting the ||| 0.00358423 0.00402143 2.07417e-05 5.83381e-05 2.718 ||| 0-0 1-1 ||| 279 48212 +a los ||| getting ||| 0.000453309 0.000585823 2.07417e-05 0.000136 2.718 ||| 0-0 ||| 2206 48212 +a los ||| give more power to the ||| 0.333333 0.0281035 2.07417e-05 3.10475e-11 2.718 ||| 0-3 1-4 ||| 3 48212 +a los ||| give the ||| 0.00661455 0.00295273 0.000228159 0.000241202 2.718 ||| 0-0 1-1 ||| 1663 48212 +a los ||| give these ||| 0.0166667 0.000580366 2.07417e-05 1.37061e-06 2.718 ||| 0-0 1-1 ||| 60 48212 +a los ||| give those ||| 0.037037 0.00687435 2.07417e-05 9.38906e-06 2.718 ||| 0-0 1-1 ||| 27 48212 +a los ||| give to the ||| 0.037037 0.0281035 6.22252e-05 9.106e-05 2.718 ||| 0-1 1-2 ||| 81 48212 +a los ||| give ||| 0.000202415 0.00043014 6.22252e-05 0.0005623 2.718 ||| 0-0 ||| 14821 48212 +a los ||| given priority over ||| 0.0625 0.00121592 2.07417e-05 8.89567e-11 2.718 ||| 0-2 ||| 16 48212 +a los ||| given the ||| 0.000990099 0.00453706 0.000103709 0.000453407 2.718 ||| 0-0 1-1 ||| 5050 48212 +a los ||| given to the ||| 0.00542005 0.0281035 8.29669e-05 0.000103126 2.718 ||| 0-1 1-2 ||| 738 48212 +a los ||| given to them ||| 0.025641 0.00878293 2.07417e-05 4.83853e-07 2.718 ||| 0-1 1-2 ||| 39 48212 +a los ||| given to those ||| 0.0434783 0.0654285 2.07417e-05 4.0143e-06 2.718 ||| 0-1 1-2 ||| 23 48212 +a los ||| given to ||| 0.000480307 0.00409398 2.07417e-05 0.000240412 2.718 ||| 0-1 ||| 2082 48212 +a los ||| given ||| 4.41151e-05 0.000660938 2.07417e-05 0.001057 2.718 ||| 0-0 ||| 22668 48212 +a los ||| giving an ||| 0.0149254 0.00243205 2.07417e-05 4.48292e-06 2.718 ||| 0-0 ||| 67 48212 +a los ||| giving any ||| 0.025 0.0024317 2.07417e-05 9.31543e-07 2.718 ||| 0-0 1-1 ||| 40 48212 +a los ||| giving the ||| 0.0131772 0.016695 0.000186676 0.000432645 2.718 ||| 0-0 1-1 ||| 683 48212 +a los ||| giving ||| 0.00042735 0.00243205 4.14834e-05 0.0010086 2.718 ||| 0-0 ||| 4680 48212 +a los ||| go into the ||| 0.00714286 0.0131557 2.07417e-05 1.52376e-06 2.718 ||| 0-1 1-2 ||| 140 48212 +a los ||| go so far as to view those ||| 1 0.0654285 2.07417e-05 4.88564e-17 2.718 ||| 0-4 1-6 ||| 1 48212 +a los ||| go to any ||| 0.111111 0.00409338 2.07417e-05 1.89205e-07 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| go to meet the ||| 1 0.0281035 2.07417e-05 1.06855e-08 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| go to the ||| 0.0120773 0.0281035 0.000103709 8.78744e-05 2.718 ||| 0-1 1-2 ||| 414 48212 +a los ||| goes to the ||| 0.00840336 0.0281035 2.07417e-05 2.08116e-05 2.718 ||| 0-1 1-2 ||| 119 48212 +a los ||| going into the ||| 0.00943396 0.0131557 2.07417e-05 2.22988e-06 2.718 ||| 0-1 1-2 ||| 106 48212 +a los ||| going to benefit the ||| 0.5 0.0140889 2.07417e-05 3.72928e-10 2.718 ||| 0-1 1-2 1-3 ||| 2 48212 +a los ||| going to enable the ||| 0.333333 0.0281035 2.07417e-05 1.26796e-08 2.718 ||| 0-1 1-3 ||| 3 48212 +a los ||| going to make any ||| 0.333333 0.00409338 2.07417e-05 4.8117e-10 2.718 ||| 0-1 1-3 ||| 3 48212 +a los ||| going to the ||| 0.00909091 0.0281035 2.07417e-05 0.000128596 2.718 ||| 0-1 1-2 ||| 110 48212 +a los ||| going to ||| 0.000322165 0.00409398 2.07417e-05 0.000299788 2.718 ||| 0-1 ||| 3104 48212 +a los ||| governments of the ||| 0.00175131 0.00230489 2.07417e-05 4.33926e-07 2.718 ||| 0-1 1-2 ||| 571 48212 +a los ||| governments ||| 0.00027933 0.0137013 6.22252e-05 0.0035595 2.718 ||| 1-0 ||| 10740 48212 +a los ||| granted for the ||| 0.047619 0.00835696 2.07417e-05 1.28032e-06 2.718 ||| 0-1 1-2 ||| 21 48212 +a los ||| granted the ||| 0.010101 0.00257898 2.07417e-05 3.09277e-05 2.718 ||| 0-0 1-1 ||| 99 48212 +a los ||| granted to the ||| 0.00649351 0.0281035 2.07417e-05 1.21714e-05 2.718 ||| 0-1 1-2 ||| 154 48212 +a los ||| grants ||| 0.000974659 0.000874614 2.07417e-05 5.2e-05 2.718 ||| 0-0 ||| 1026 48212 +a los ||| grass-roots ||| 0.00401606 0.00269682 2.07417e-05 2.33e-05 2.718 ||| 1-0 ||| 249 48212 +a los ||| grave problems ||| 0.0625 0.00532475 2.07417e-05 2.08522e-08 2.718 ||| 1-1 ||| 16 48212 +a los ||| great significance for the ||| 0.0714286 0.00835696 2.07417e-05 1.27344e-10 2.718 ||| 0-2 1-3 ||| 14 48212 +a los ||| green rooms ||| 0.333333 0.000715939 2.07417e-05 8.134e-11 2.718 ||| 1-1 ||| 3 48212 +a los ||| green rooms ’ ||| 0.333333 0.000715939 2.07417e-05 1.41702e-13 2.718 ||| 1-1 ||| 3 48212 +a los ||| groups ||| 0.000378644 0.00720682 0.000103709 0.0019844 2.718 ||| 1-0 ||| 13205 48212 +a los ||| guaranteed for ||| 0.025641 0.0012174 2.07417e-05 1.30075e-06 2.718 ||| 0-1 ||| 39 48212 +a los ||| guidance to the ||| 0.111111 0.0281035 2.07417e-05 1.0819e-06 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| had been applied to ||| 0.142857 0.00409398 2.07417e-05 1.2715e-10 2.718 ||| 0-3 ||| 7 48212 +a los ||| had some very serious clashes with the ||| 1 0.00698995 2.07417e-05 6.90471e-21 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| had to ||| 0.000320616 0.00409398 2.07417e-05 0.000351598 2.718 ||| 0-1 ||| 3119 48212 +a los ||| half-way those ||| 0.5 0.0142682 2.07417e-05 6.67904e-09 2.718 ||| 1-1 ||| 2 48212 +a los ||| hand down to your successor ||| 0.125 0.00221403 2.07417e-05 1.19565e-16 2.718 ||| 0-2 1-3 ||| 8 48212 +a los ||| hand down to your ||| 0.125 0.00221403 2.07417e-05 2.98913e-11 2.718 ||| 0-2 1-3 ||| 8 48212 +a los ||| hand of the ||| 0.0588235 0.00230489 2.07417e-05 5.03201e-06 2.718 ||| 0-1 1-2 ||| 17 48212 +a los ||| hand to the ||| 0.0689655 0.0281035 4.14834e-05 5.95947e-05 2.718 ||| 0-1 1-2 ||| 29 48212 +a los ||| hands of the ||| 0.00770713 0.00230489 8.29669e-05 1.27894e-06 2.718 ||| 0-1 1-2 ||| 519 48212 +a los ||| hands on the ||| 0.0555556 0.00957523 2.07417e-05 1.64029e-06 2.718 ||| 0-1 1-2 ||| 18 48212 +a los ||| happy about that ||| 0.0555556 0.000937686 2.07417e-05 5.34045e-09 2.718 ||| 0-1 ||| 18 48212 +a los ||| happy about ||| 0.00746269 0.000937686 2.07417e-05 3.17476e-07 2.718 ||| 0-1 ||| 134 48212 +a los ||| happy to grant the ||| 0.25 0.0281035 2.07417e-05 3.00092e-10 2.718 ||| 0-1 1-3 ||| 4 48212 +a los ||| harm the ||| 0.00724638 0.0135523 2.07417e-05 6.6574e-05 2.718 ||| 0-0 1-1 ||| 138 48212 +a los ||| harm ||| 0.000925069 0.00197423 2.07417e-05 0.0001552 2.718 ||| 0-0 ||| 1081 48212 +a los ||| has applied for ||| 0.0357143 0.0012174 2.07417e-05 2.05421e-08 2.718 ||| 0-2 ||| 28 48212 +a los ||| has had to ||| 0.00334448 0.00409398 2.07417e-05 1.80985e-06 2.718 ||| 0-2 ||| 299 48212 +a los ||| has made to the ||| 0.0416667 0.0281035 2.07417e-05 1.6203e-06 2.718 ||| 0-2 1-3 ||| 24 48212 +a los ||| has repeatedly pressed for the freedom to ||| 0.5 0.00835696 2.07417e-05 5.55032e-20 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| has repeatedly pressed for the freedom ||| 0.5 0.00835696 2.07417e-05 6.24627e-19 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| has repeatedly pressed for the ||| 0.5 0.00835696 2.07417e-05 7.32271e-15 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| has the ||| 0.000279642 0.00612862 2.07417e-05 0.00220805 2.718 ||| 1-1 ||| 3576 48212 +a los ||| has to be a ||| 0.00704225 0.00409398 2.07417e-05 1.44851e-06 2.718 ||| 0-1 ||| 142 48212 +a los ||| has to be ||| 0.000765404 0.00409398 4.14834e-05 3.26788e-05 2.718 ||| 0-1 ||| 2613 48212 +a los ||| has to represent his members ||| 0.5 0.0355323 2.07417e-05 5.49733e-14 2.718 ||| 0-1 1-4 ||| 2 48212 +a los ||| has to ||| 0.000496771 0.00409398 6.22252e-05 0.00180318 2.718 ||| 0-1 ||| 6039 48212 +a los ||| hate ||| 0.00471698 0.00195647 2.07417e-05 1.26e-05 2.718 ||| 1-0 ||| 212 48212 +a los ||| hauliers ||| 0.00520833 0.0167547 2.07417e-05 0.0001099 2.718 ||| 1-0 ||| 192 48212 +a los ||| have accused farmers of wanting to ||| 0.25 0.0873487 2.07417e-05 2.08579e-16 2.718 ||| 1-2 0-5 ||| 4 48212 +a los ||| have been affected by the consequences of ||| 1 0.00547344 2.07417e-05 1.12055e-16 2.718 ||| 0-2 0-3 1-4 ||| 1 48212 +a los ||| have been affected by the consequences ||| 1 0.00547344 2.07417e-05 2.0612e-15 2.718 ||| 0-2 0-3 1-4 ||| 1 48212 +a los ||| have been affected by the ||| 0.0434783 0.00547344 2.07417e-05 4.84989e-11 2.718 ||| 0-2 0-3 1-4 ||| 23 48212 +a los ||| have been returned to the ||| 1 0.0281035 2.07417e-05 7.98129e-11 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| have brought to bear ||| 0.166667 0.00409398 2.07417e-05 1.75609e-10 2.718 ||| 0-2 ||| 6 48212 +a los ||| have brought to ||| 0.0344828 0.00409398 2.07417e-05 1.17307e-06 2.718 ||| 0-2 ||| 29 48212 +a los ||| have disturbed even those ||| 0.25 0.0141053 2.07417e-05 7.01486e-13 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| have given the ||| 0.0188679 0.00453706 2.07417e-05 5.42265e-06 2.718 ||| 0-1 1-2 ||| 53 48212 +a los ||| have great significance for the ||| 0.5 0.00835696 2.07417e-05 1.52301e-12 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| have in many ||| 0.125 0.000176152 2.07417e-05 1.01319e-07 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| have in mind ||| 0.00531915 0.00104682 2.07417e-05 1.81009e-07 2.718 ||| 0-1 ||| 188 48212 +a los ||| have in ||| 0.00194175 0.00104682 4.14834e-05 0.000718575 2.718 ||| 0-1 ||| 1030 48212 +a los ||| have lost to the ||| 1 0.0281035 2.07417e-05 1.02257e-07 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| have made as rapporteurs to our ||| 1 0.0057078 2.07417e-05 2.52653e-15 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| have on the ||| 0.00609756 0.00957523 2.07417e-05 0.000194618 2.718 ||| 0-1 1-2 ||| 164 48212 +a los ||| have our ||| 0.00387597 0.00124472 2.07417e-05 4.27096e-05 2.718 ||| 1-1 ||| 258 48212 +a los ||| have the opportunity to ||| 0.00274725 0.0281035 2.07417e-05 3.23303e-07 2.718 ||| 1-1 0-3 ||| 364 48212 +a los ||| have the proper identity ||| 0.5 0.00612862 2.07417e-05 9.17131e-12 2.718 ||| 1-1 ||| 2 48212 +a los ||| have the proper ||| 0.2 0.00612862 2.07417e-05 4.54025e-07 2.718 ||| 1-1 ||| 5 48212 +a los ||| have the ||| 0.000402685 0.00612862 6.22252e-05 0.00513023 2.718 ||| 1-1 ||| 7450 48212 +a los ||| have their ||| 0.00141844 0.00118631 2.07417e-05 2.73604e-05 2.718 ||| 1-1 ||| 705 48212 +a los ||| have those ||| 0.027027 0.0142682 2.07417e-05 0.0001997 2.718 ||| 1-1 ||| 37 48212 +a los ||| have to be met by the ||| 0.5 0.0147695 2.07417e-05 4.04635e-12 2.718 ||| 0-1 1-4 1-5 ||| 2 48212 +a los ||| have to drive home the message that ||| 1 0.0281035 2.07417e-05 4.46649e-18 2.718 ||| 0-1 1-4 ||| 1 48212 +a los ||| have to drive home the message ||| 1 0.0281035 2.07417e-05 2.65521e-16 2.718 ||| 0-1 1-4 ||| 1 48212 +a los ||| have to drive home the ||| 1 0.0281035 2.07417e-05 5.50874e-12 2.718 ||| 0-1 1-4 ||| 1 48212 +a los ||| have to please ||| 0.25 0.00409398 2.07417e-05 3.7245e-07 2.718 ||| 0-1 ||| 4 48212 +a los ||| have to say , ||| 0.0192308 0.00409398 2.07417e-05 4.77539e-07 2.718 ||| 0-1 ||| 52 48212 +a los ||| have to say ||| 0.00208333 0.00409398 2.07417e-05 4.00436e-06 2.718 ||| 0-1 ||| 480 48212 +a los ||| have to ||| 0.000368053 0.00409398 8.29669e-05 0.00418954 2.718 ||| 0-1 ||| 10868 48212 +a los ||| have us ||| 0.0131579 0.000127048 2.07417e-05 6.17843e-06 2.718 ||| 0-1 ||| 76 48212 +a los ||| headlong into the ||| 0.0769231 0.0131557 2.07417e-05 2.86617e-09 2.718 ||| 0-1 1-2 ||| 13 48212 +a los ||| heads of the ||| 0.0120482 0.00117109 2.07417e-05 2.05252e-07 2.718 ||| 0-1 1-1 1-2 ||| 83 48212 +a los ||| hearing about the EUR ||| 1 0.00643683 2.07417e-05 1.5202e-11 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| hearing about the ||| 0.0555556 0.00643683 2.07417e-05 5.68511e-08 2.718 ||| 0-1 1-2 ||| 18 48212 +a los ||| hearing me list the ||| 0.25 0.00612862 2.07417e-05 4.96541e-13 2.718 ||| 1-3 ||| 4 48212 +a los ||| hearings of the ||| 0.0285714 0.00230489 2.07417e-05 5.45579e-08 2.718 ||| 0-1 1-2 ||| 35 48212 +a los ||| heed the advice of the ||| 1 0.00230489 2.07417e-05 6.02893e-14 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| help terrorism to ||| 0.5 0.00409398 2.07417e-05 1.73019e-09 2.718 ||| 0-2 ||| 2 48212 +a los ||| help the ||| 0.00773395 0.0317922 0.000207417 0.00282137 2.718 ||| 0-0 1-1 ||| 1293 48212 +a los ||| help them contend ||| 1 0.00993574 2.07417e-05 1.04576e-10 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| help them ||| 0.00140845 0.00993574 2.07417e-05 1.32375e-05 2.718 ||| 0-0 1-1 ||| 710 48212 +a los ||| help those ||| 0.0103093 0.0740164 4.14834e-05 0.000109825 2.718 ||| 0-0 1-1 ||| 194 48212 +a los ||| help ||| 6.30597e-05 0.00463133 2.07417e-05 0.0065773 2.718 ||| 0-0 ||| 15858 48212 +a los ||| helping the ||| 0.00247525 0.0369646 2.07417e-05 0.000510544 2.718 ||| 0-0 1-1 ||| 404 48212 +a los ||| helping workers ||| 0.0322581 0.110178 2.07417e-05 8.69274e-06 2.718 ||| 0-0 1-1 ||| 31 48212 +a los ||| helps the ||| 0.0142857 0.0335892 2.07417e-05 0.000171111 2.718 ||| 0-0 1-1 ||| 70 48212 +a los ||| her to the ||| 0.25 0.0281035 2.07417e-05 4.08869e-05 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| here before the ||| 0.1 0.00248592 2.07417e-05 4.61275e-07 2.718 ||| 0-1 1-2 ||| 10 48212 +a los ||| here for the ||| 0.0114943 0.00835696 2.07417e-05 3.20522e-05 2.718 ||| 0-1 1-2 ||| 87 48212 +a los ||| here in ||| 0.000272331 0.00104682 2.07417e-05 0.000121835 2.718 ||| 0-1 ||| 3672 48212 +a los ||| here ||| 3.10058e-05 0.000325546 2.07417e-05 0.0008598 2.718 ||| 0-0 ||| 32252 48212 +a los ||| hiding to ||| 0.5 0.00409398 2.07417e-05 2.66229e-06 2.718 ||| 0-1 ||| 2 48212 +a los ||| highlights the ||| 0.00138889 0.00612862 2.07417e-05 2.9169e-06 2.718 ||| 1-1 ||| 720 48212 +a los ||| highly susceptible to the ||| 0.5 0.0281035 2.07417e-05 6.36368e-12 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| his spirits up at ||| 0.25 0.0181179 2.07417e-05 8.82498e-13 2.718 ||| 1-1 0-3 ||| 4 48212 +a los ||| his ||| 6.49161e-05 0.000294771 4.14834e-05 0.0001731 2.718 ||| 1-0 ||| 30809 48212 +a los ||| hit the ||| 0.0178571 0.0148658 6.22252e-05 9.86599e-05 2.718 ||| 0-0 1-1 ||| 168 48212 +a los ||| hits those ||| 0.333333 0.0578082 2.07417e-05 6.09462e-07 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| hold responsible for that damage the ||| 0.333333 0.00835696 2.07417e-05 2.88402e-16 2.718 ||| 0-2 1-5 ||| 3 48212 +a los ||| hold the ||| 0.00560224 0.000298459 4.14834e-05 4.28956e-06 2.718 ||| 0-0 1-1 ||| 357 48212 +a los ||| holders ||| 0.00263852 0.0141304 2.07417e-05 0.0001458 2.718 ||| 1-0 ||| 379 48212 +a los ||| home ||| 0.00041684 0.000798731 4.14834e-05 8.75e-05 2.718 ||| 1-0 ||| 4798 48212 +a los ||| honourable members some ||| 0.5 0.00774865 2.07417e-05 1.12893e-10 2.718 ||| 1-1 ||| 2 48212 +a los ||| honourable members ||| 0.0188679 0.00774865 2.07417e-05 1.03638e-07 2.718 ||| 1-1 ||| 53 48212 +a los ||| hope for ||| 0.00162866 0.0012174 2.07417e-05 6.45954e-06 2.718 ||| 0-1 ||| 614 48212 +a los ||| hope to the ||| 0.0243902 0.0281035 2.07417e-05 2.63413e-05 2.718 ||| 0-1 1-2 ||| 41 48212 +a los ||| hope to those ||| 0.0625 0.0654285 2.07417e-05 1.02536e-06 2.718 ||| 0-1 1-2 ||| 16 48212 +a los ||| how obliged I am to them ||| 1 0.00878293 2.07417e-05 8.69937e-17 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| however , of the ||| 0.0666667 0.00230489 2.07417e-05 1.67605e-06 2.718 ||| 0-2 1-3 ||| 15 48212 +a los ||| however , to ||| 0.002849 0.00409398 2.07417e-05 4.62743e-05 2.718 ||| 0-2 ||| 351 48212 +a los ||| human ||| 0.000235497 0.0160268 6.22252e-05 0.0195055 2.718 ||| 1-0 ||| 12739 48212 +a los ||| i.e. giving ||| 0.5 0.00243205 2.07417e-05 5.92048e-08 2.718 ||| 0-1 ||| 2 48212 +a los ||| i.e. the ||| 0.00649351 0.00612862 4.14834e-05 2.51797e-05 2.718 ||| 1-1 ||| 308 48212 +a los ||| i.e. those ||| 0.030303 0.0142682 2.07417e-05 9.80149e-07 2.718 ||| 1-1 ||| 33 48212 +a los ||| identified with those ||| 1 0.0162735 2.07417e-05 1.07326e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| if immigrants ||| 0.333333 0.000454092 2.07417e-05 1.73262e-07 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| if the ||| 0.000188466 0.000181979 4.14834e-05 5.55927e-05 2.718 ||| 0-0 1-1 ||| 10612 48212 +a los ||| if ||| 1.00909e-05 2.65098e-05 2.07417e-05 0.0001296 2.718 ||| 0-0 ||| 99099 48212 +a los ||| illegal immigrants from the former East ||| 1 0.0053267 2.07417e-05 2.53413e-21 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| illegal immigrants from the former ||| 0.333333 0.0053267 2.07417e-05 8.47536e-17 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| illegal immigrants from the ||| 0.2 0.0053267 2.07417e-05 1.87094e-12 2.718 ||| 0-2 1-3 ||| 5 48212 +a los ||| immediately obvious to the ||| 0.5 0.0281035 2.07417e-05 2.48134e-10 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| immediately reassure ||| 0.142857 0.00507564 2.07417e-05 1.10603e-08 2.718 ||| 0-1 ||| 7 48212 +a los ||| immense and ||| 0.0333333 0.000130171 2.07417e-05 2.37992e-08 2.718 ||| 1-0 ||| 30 48212 +a los ||| immense ||| 0.00157978 0.000130171 2.07417e-05 1.9e-06 2.718 ||| 1-0 ||| 633 48212 +a los ||| immigrants from the former East ||| 1 0.0053267 2.07417e-05 7.82139e-17 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| immigrants from the former ||| 1 0.0053267 2.07417e-05 2.61585e-12 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| immigrants from the ||| 0.0833333 0.0053267 2.07417e-05 5.77451e-08 2.718 ||| 0-1 1-2 ||| 12 48212 +a los ||| immigrants ||| 0.000294898 0.0152928 2.07417e-05 0.0013369 2.718 ||| 1-0 ||| 3391 48212 +a los ||| impetus for the ||| 0.0384615 0.00835696 2.07417e-05 1.88096e-07 2.718 ||| 0-1 1-2 ||| 26 48212 +a los ||| implementation of the ||| 0.000207641 0.00230489 2.07417e-05 9.85849e-07 2.718 ||| 0-1 1-2 ||| 4816 48212 +a los ||| importance for its ||| 1 0.00144446 2.07417e-05 1.02199e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| importance from the ||| 0.333333 0.0053267 2.07417e-05 4.01127e-07 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| importance to people ||| 0.111111 0.0205606 2.07417e-05 3.58359e-07 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| imposed on the ||| 0.00595238 0.00957523 2.07417e-05 9.08017e-07 2.718 ||| 0-1 1-2 ||| 168 48212 +a los ||| imposed on ||| 0.00149031 0.00139487 2.07417e-05 2.11681e-06 2.718 ||| 0-1 ||| 671 48212 +a los ||| imprisoned persons ||| 0.333333 0.00134908 2.07417e-05 5.6459e-10 2.718 ||| 1-1 ||| 3 48212 +a los ||| impulses served up in the form of ||| 0.5 0.00718601 2.07417e-05 1.97505e-20 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| impulses served up in the form ||| 0.5 0.00718601 2.07417e-05 3.63302e-19 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| impulses served up in the ||| 0.5 0.00718601 2.07417e-05 7.98114e-16 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| in ' ||| 0.0031746 0.00261187 2.07417e-05 0.000319591 2.718 ||| 0-0 1-1 ||| 315 48212 +a los ||| in EU ||| 0.00847458 0.000253795 2.07417e-05 3.24806e-05 2.718 ||| 0-0 1-1 ||| 118 48212 +a los ||| in European ||| 0.00549451 0.000200779 2.07417e-05 6.8464e-05 2.718 ||| 0-0 1-1 ||| 182 48212 +a los ||| in Financial Instruments ||| 0.117647 0.0104933 4.14834e-05 5.88628e-12 2.718 ||| 0-0 1-2 ||| 17 48212 +a los ||| in GMOs ||| 0.0714286 0.0152071 2.07417e-05 3.09605e-05 2.718 ||| 0-0 1-1 ||| 14 48212 +a los ||| in a position to give the ||| 0.25 0.00718601 2.07417e-05 2.02572e-11 2.718 ||| 0-0 1-5 ||| 4 48212 +a los ||| in a ||| 9.36388e-05 0.00104682 6.22252e-05 0.0026632 2.718 ||| 0-0 ||| 32038 48212 +a los ||| in accordance with ||| 0.000185598 0.00104682 2.07417e-05 3.05437e-08 2.718 ||| 0-0 ||| 5388 48212 +a los ||| in accordance ||| 0.000223314 0.00104682 2.07417e-05 4.77656e-06 2.718 ||| 0-0 ||| 4478 48212 +a los ||| in addition to the sum ||| 1 0.0281035 2.07417e-05 1.33512e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| in addition to the ||| 0.00229621 0.0281035 4.14834e-05 3.1713e-07 2.718 ||| 0-2 1-3 ||| 871 48212 +a los ||| in agreement with the other ||| 0.1 0.00698995 2.07417e-05 3.65991e-11 2.718 ||| 0-2 1-3 ||| 10 48212 +a los ||| in agreement with the ||| 0.00340136 0.00698995 2.07417e-05 2.82509e-08 2.718 ||| 0-2 1-3 ||| 294 48212 +a los ||| in all our ||| 0.00343643 0.00125251 2.07417e-05 5.76803e-07 2.718 ||| 0-0 1-1 1-2 ||| 291 48212 +a los ||| in all the ||| 0.00128866 0.00411578 4.14834e-05 6.92849e-05 2.718 ||| 0-0 1-1 1-2 ||| 1552 48212 +a los ||| in all ||| 0.000428174 0.00104555 8.29669e-05 0.00016152 2.718 ||| 0-0 1-1 ||| 9342 48212 +a los ||| in any case know anything ||| 1 0.00104667 2.07417e-05 2.40335e-15 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| in any case know ||| 1 0.00104667 2.07417e-05 1.53177e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| in any case ||| 0.000289101 0.00104667 2.07417e-05 5.93711e-08 2.718 ||| 0-0 1-1 ||| 3459 48212 +a los ||| in any debate . they are ||| 1 0.00104667 2.07417e-05 1.64737e-15 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| in any debate . they ||| 1 0.00104667 2.07417e-05 1.08574e-13 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| in any debate . ||| 1 0.00104667 2.07417e-05 3.32642e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| in any debate ||| 0.0909091 0.00104667 2.07417e-05 1.09819e-08 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| in any way ||| 0.000735294 0.00104667 2.07417e-05 1.19619e-07 2.718 ||| 0-0 1-1 ||| 1360 48212 +a los ||| in any ||| 0.000566011 0.00104667 8.29669e-05 5.54922e-05 2.718 ||| 0-0 1-1 ||| 7067 48212 +a los ||| in calling the ||| 0.333333 0.00718601 2.07417e-05 1.69843e-06 2.718 ||| 0-0 1-2 ||| 3 48212 +a los ||| in case it may be of interest ||| 0.333333 0.000139702 2.07417e-05 2.46389e-17 2.718 ||| 0-0 1-6 ||| 3 48212 +a los ||| in certain ||| 0.000465549 0.000180236 2.07417e-05 3.79721e-06 2.718 ||| 0-0 1-1 ||| 2148 48212 +a los ||| in companies ||| 0.0075188 0.00104682 2.07417e-05 4.21779e-06 2.718 ||| 0-0 ||| 133 48212 +a los ||| in contrast ||| 0.00163132 0.00104682 2.07417e-05 7.14982e-07 2.718 ||| 0-0 ||| 613 48212 +a los ||| in danger from ||| 0.333333 0.00104682 2.07417e-05 4.73141e-09 2.718 ||| 0-0 ||| 3 48212 +a los ||| in danger ||| 0.00158983 0.00104682 2.07417e-05 2.93803e-06 2.718 ||| 0-0 ||| 629 48212 +a los ||| in due time ||| 0.012987 0.00104682 2.07417e-05 2.72634e-08 2.718 ||| 0-0 ||| 77 48212 +a los ||| in due ||| 0.00520833 0.00104682 2.07417e-05 1.66068e-05 2.718 ||| 0-0 ||| 192 48212 +a los ||| in each case take the ||| 1 0.00718601 2.07417e-05 1.24616e-11 2.718 ||| 0-0 1-4 ||| 1 48212 +a los ||| in every ||| 0.000547645 0.00847542 2.07417e-05 0.000196103 2.718 ||| 0-0 1-1 ||| 1826 48212 +a los ||| in everybody ||| 0.0769231 0.00389709 2.07417e-05 1.11573e-05 2.718 ||| 0-0 1-1 ||| 13 48212 +a los ||| in everybody ’ s best ||| 1 0.00389709 2.07417e-05 5.12108e-15 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| in everybody ’ s ||| 1 0.00389709 2.07417e-05 3.69753e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| in everybody ’ ||| 1 0.00389709 2.07417e-05 1.94372e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| in fact , disregarding the three ||| 1 0.00718601 2.07417e-05 1.02583e-15 2.718 ||| 0-0 1-4 ||| 1 48212 +a los ||| in fact , disregarding the ||| 1 0.00718601 2.07417e-05 1.62059e-11 2.718 ||| 0-0 1-4 ||| 1 48212 +a los ||| in fact , ||| 0.000162232 0.00104682 2.07417e-05 2.09888e-05 2.718 ||| 0-0 ||| 6164 48212 +a los ||| in fact give the ||| 1 0.00718601 2.07417e-05 4.57507e-08 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| in fact to do with the ||| 1 0.0140931 2.07417e-05 1.51677e-09 2.718 ||| 0-0 0-2 0-4 1-5 ||| 1 48212 +a los ||| in fact ||| 0.000151653 0.00104682 4.14834e-05 0.000176 2.718 ||| 0-0 ||| 13188 48212 +a los ||| in favour of a ||| 0.00108342 0.000116273 2.07417e-05 2.84965e-09 2.718 ||| 0-0 1-2 ||| 923 48212 +a los ||| in favour of ||| 6.81942e-05 0.000116273 2.07417e-05 6.42888e-08 2.718 ||| 0-0 1-2 ||| 14664 48212 +a los ||| in favour ||| 5.18995e-05 0.00104682 2.07417e-05 1.94367e-05 2.718 ||| 0-0 ||| 19268 48212 +a los ||| in future , ||| 0.000765697 1.72938e-05 2.07417e-05 7.66668e-08 2.718 ||| 0-0 1-1 ||| 1306 48212 +a los ||| in future ||| 0.000197433 1.72938e-05 2.07417e-05 6.42883e-07 2.718 ||| 0-0 1-1 ||| 5065 48212 +a los ||| in getting the ||| 0.02 0.00718601 2.07417e-05 2.9948e-06 2.718 ||| 0-0 1-2 ||| 50 48212 +a los ||| in helping ||| 0.0031348 0.00104682 2.07417e-05 2.27112e-06 2.718 ||| 0-0 ||| 319 48212 +a los ||| in his ||| 0.000262674 0.000345629 2.07417e-05 1.04003e-05 2.718 ||| 0-0 1-1 ||| 3807 48212 +a los ||| in identifying ||| 0.01 0.000131757 2.07417e-05 1.14157e-07 2.718 ||| 0-0 1-1 ||| 100 48212 +a los ||| in impaired ||| 1 0.00032646 2.07417e-05 6.00825e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| in including the ||| 0.1 0.00718601 2.07417e-05 2.69068e-06 2.718 ||| 0-0 1-2 ||| 10 48212 +a los ||| in international ||| 0.0185185 7.13376e-05 2.07417e-05 2.10289e-06 2.718 ||| 0-0 1-1 ||| 54 48212 +a los ||| in it ||| 0.000770416 1.69177e-05 2.07417e-05 8.47163e-06 2.718 ||| 0-0 1-1 ||| 1298 48212 +a los ||| in its ||| 0.000286478 0.00124207 6.22252e-05 0.000128282 2.718 ||| 0-0 1-1 ||| 10472 48212 +a los ||| in just ||| 0.00434783 0.00104682 2.07417e-05 7.58061e-05 2.718 ||| 0-0 ||| 230 48212 +a los ||| in keeping with the ||| 0.00277778 0.00718601 2.07417e-05 9.67399e-09 2.718 ||| 0-0 1-3 ||| 360 48212 +a los ||| in length ||| 0.037037 0.00104682 2.07417e-05 2.31318e-06 2.718 ||| 0-0 ||| 27 48212 +a los ||| in line with the ||| 0.000600601 0.00698995 2.07417e-05 4.51279e-08 2.718 ||| 0-2 1-3 ||| 1665 48212 +a los ||| in line with ||| 0.000654022 4.37016e-05 4.14834e-05 4.09307e-09 2.718 ||| 0-0 1-2 ||| 3058 48212 +a los ||| in little backrooms ||| 0.5 0.00104682 2.07417e-05 3.89094e-12 2.718 ||| 0-0 ||| 2 48212 +a los ||| in little ||| 0.0666667 0.00104682 2.07417e-05 9.72736e-06 2.718 ||| 0-0 ||| 15 48212 +a los ||| in many ||| 0.00019478 0.000176152 2.07417e-05 8.47163e-06 2.718 ||| 0-0 1-1 ||| 5134 48212 +a los ||| in mind the ||| 0.00140845 0.00718601 2.07417e-05 6.49216e-06 2.718 ||| 0-0 1-2 ||| 710 48212 +a los ||| in mind ||| 0.00021254 0.00104682 2.07417e-05 1.51348e-05 2.718 ||| 0-0 ||| 4705 48212 +a los ||| in my view , for ||| 0.0526316 0.000298989 2.07417e-05 3.934e-12 2.718 ||| 0-0 1-1 1-4 ||| 19 48212 +a los ||| in my ||| 0.000182482 0.00050776 6.22252e-05 4.14149e-05 2.718 ||| 0-0 1-1 ||| 16440 48212 +a los ||| in neighbouring ||| 0.015625 0.00992593 2.07417e-05 2.55891e-05 2.718 ||| 0-0 1-1 ||| 64 48212 +a los ||| in numerous ||| 0.004329 0.00104682 2.07417e-05 1.05745e-06 2.718 ||| 0-0 ||| 231 48212 +a los ||| in order to provide a ||| 0.0185185 0.00104682 2.07417e-05 3.72822e-11 2.718 ||| 0-0 ||| 54 48212 +a los ||| in order to provide ||| 0.00299401 0.00104682 2.07417e-05 8.41095e-10 2.718 ||| 0-0 ||| 334 48212 +a los ||| in order to ||| 4.25351e-05 0.00104682 2.07417e-05 2.84346e-06 2.718 ||| 0-0 ||| 23510 48212 +a los ||| in order ||| 0.000135648 0.00104682 4.14834e-05 3.19999e-05 2.718 ||| 0-0 ||| 14744 48212 +a los ||| in other ||| 0.000125329 0.000226165 2.07417e-05 1.70574e-05 2.718 ||| 0-0 1-1 ||| 7979 48212 +a los ||| in our opinion ||| 0.000986193 0.00145948 2.07417e-05 5.26532e-08 2.718 ||| 0-0 1-1 ||| 1014 48212 +a los ||| in our work - ||| 0.333333 0.00145948 2.07417e-05 5.12315e-10 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| in our work ||| 0.00632911 0.00145948 2.07417e-05 1.35817e-07 2.718 ||| 0-0 1-1 ||| 158 48212 +a los ||| in our ||| 0.000814332 0.00145948 0.000228159 0.000214561 2.718 ||| 0-0 1-1 ||| 13508 48212 +a los ||| in particular , as ||| 0.00925926 0.00043374 2.07417e-05 1.37802e-08 2.718 ||| 0-3 ||| 108 48212 +a los ||| in particular , the ||| 0.0008 0.00718601 2.07417e-05 1.89145e-06 2.718 ||| 0-0 1-3 ||| 1250 48212 +a los ||| in particular - those ||| 1 0.01673 2.07417e-05 2.32886e-09 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| in particular the ||| 0.00060241 0.00718601 2.07417e-05 1.58606e-05 2.718 ||| 0-0 1-2 ||| 1660 48212 +a los ||| in particular to the ||| 0.00301205 0.0281035 2.07417e-05 1.97933e-06 2.718 ||| 0-2 1-3 ||| 332 48212 +a los ||| in person ||| 0.00680272 0.00104682 2.07417e-05 7.73863e-06 2.718 ||| 0-0 ||| 147 48212 +a los ||| in place of the ||| 0.0208333 0.00718601 2.07417e-05 2.10867e-06 2.718 ||| 0-0 1-3 ||| 48 48212 +a los ||| in place with ||| 0.0384615 4.37016e-05 2.07417e-05 2.09242e-08 2.718 ||| 0-0 1-2 ||| 26 48212 +a los ||| in place ||| 0.000281373 0.00104682 2.07417e-05 9.04242e-05 2.718 ||| 0-0 ||| 3554 48212 +a los ||| in practice , produce the ||| 1 0.00718601 2.07417e-05 2.86695e-11 2.718 ||| 0-0 1-4 ||| 1 48212 +a los ||| in professions ||| 0.2 0.00104682 2.07417e-05 8.41155e-08 2.718 ||| 0-0 ||| 5 48212 +a los ||| in progress ||| 0.00239234 0.0023085 2.07417e-05 5.0998e-05 2.718 ||| 0-0 1-1 ||| 418 48212 +a los ||| in receipt of ||| 0.027027 0.000116273 2.07417e-05 9.34026e-10 2.718 ||| 0-0 1-2 ||| 37 48212 +a los ||| in relation to the ||| 0.00104712 0.0281035 6.22252e-05 7.82532e-07 2.718 ||| 0-2 1-3 ||| 2865 48212 +a los ||| in relation to ||| 0.000688705 0.000506 0.000103709 9.40801e-07 2.718 ||| 0-0 1-1 0-2 ||| 7260 48212 +a los ||| in relation ||| 0.000253485 0.00104682 2.07417e-05 1.46181e-05 2.718 ||| 0-0 ||| 3945 48212 +a los ||| in respect of both the ||| 1 0.00251276 2.07417e-05 1.41522e-10 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| in respect of the ||| 0.00260078 0.00718601 4.14834e-05 6.0612e-07 2.718 ||| 0-0 1-3 ||| 769 48212 +a los ||| in respect of ||| 0.00296004 0.000269508 0.00012445 3.4623e-07 2.718 ||| 0-0 1-1 ||| 2027 48212 +a los ||| in respect ||| 0.00167715 0.000269508 8.29669e-05 6.36874e-06 2.718 ||| 0-0 1-1 ||| 2385 48212 +a los ||| in supporting those ||| 0.333333 0.0355004 2.07417e-05 1.15011e-06 2.718 ||| 0-0 0-1 1-2 ||| 3 48212 +a los ||| in tandem ||| 0.00714286 0.00104682 2.07417e-05 1.74239e-07 2.718 ||| 0-0 ||| 140 48212 +a los ||| in tax ||| 0.0172414 0.00359284 2.07417e-05 4.05977e-05 2.718 ||| 0-0 1-1 ||| 58 48212 +a los ||| in terms of the ||| 0.000520562 0.00718601 2.07417e-05 1.53786e-06 2.718 ||| 0-0 1-3 ||| 1921 48212 +a los ||| in terms of ||| 0.000268264 0.000116273 6.22252e-05 2.18125e-07 2.718 ||| 0-0 1-2 ||| 11183 48212 +a los ||| in terms ||| 8.10045e-05 0.00104682 2.07417e-05 6.59466e-05 2.718 ||| 0-0 ||| 12345 48212 +a los ||| in that case , to the ||| 1 0.0281035 2.07417e-05 6.90313e-09 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| in that way ||| 0.0014771 0.00104682 2.07417e-05 2.17863e-06 2.718 ||| 0-0 ||| 677 48212 +a los ||| in that ||| 0.000218364 0.00104682 4.14834e-05 0.00101068 2.718 ||| 0-0 ||| 9159 48212 +a los ||| in the " ||| 0.0666667 0.00718601 2.07417e-05 6.10299e-06 2.718 ||| 0-0 1-1 ||| 15 48212 +a los ||| in the Chamber ||| 0.00126904 0.00718601 2.07417e-05 6.77824e-07 2.718 ||| 0-0 1-1 ||| 788 48212 +a los ||| in the Commission ||| 0.0005005 0.00718601 2.07417e-05 1.50539e-05 2.718 ||| 0-0 1-1 ||| 1998 48212 +a los ||| in the Cypriot ||| 1 0.00718601 2.07417e-05 1.10823e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| in the Group ||| 0.00318471 0.00718601 2.07417e-05 8.38388e-06 2.718 ||| 0-0 1-1 ||| 314 48212 +a los ||| in the Turkish ||| 0.0434783 0.00104682 2.07417e-05 1.10288e-07 2.718 ||| 0-0 ||| 23 48212 +a los ||| in the absence of ||| 0.00205339 0.00718601 2.07417e-05 3.62888e-08 2.718 ||| 0-0 1-1 ||| 487 48212 +a los ||| in the absence ||| 0.0019802 0.00718601 2.07417e-05 6.67515e-07 2.718 ||| 0-0 1-1 ||| 505 48212 +a los ||| in the accounting ||| 0.25 0.00718601 2.07417e-05 2.42264e-07 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| in the area of ||| 0.000236967 0.00718601 2.07417e-05 5.81881e-07 2.718 ||| 0-0 1-1 ||| 4220 48212 +a los ||| in the area ||| 0.000201939 0.00718601 2.07417e-05 1.07034e-05 2.718 ||| 0-0 1-1 ||| 4952 48212 +a los ||| in the best interests of the ||| 0.0555556 0.00482943 2.07417e-05 6.94343e-13 2.718 ||| 0-0 1-1 1-4 1-5 ||| 18 48212 +a los ||| in the case of ||| 0.00133618 0.00718601 0.000103709 1.49905e-06 2.718 ||| 0-0 1-1 ||| 3742 48212 +a los ||| in the case ||| 0.00251544 0.00718601 0.000228159 2.75743e-05 2.718 ||| 0-0 1-1 ||| 4373 48212 +a los ||| in the context ||| 0.000486027 0.00718601 4.14834e-05 3.45871e-06 2.718 ||| 0-0 1-1 ||| 4115 48212 +a los ||| in the court of the ||| 0.125 0.00718601 6.22252e-05 2.5719e-09 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| in the court of ||| 0.117647 0.00718601 4.14834e-05 4.18932e-08 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| in the court ||| 0.0465116 0.00718601 4.14834e-05 7.70606e-07 2.718 ||| 0-0 1-1 ||| 43 48212 +a los ||| in the current ||| 0.00172117 0.00718601 2.07417e-05 4.24735e-06 2.718 ||| 0-0 1-1 ||| 581 48212 +a los ||| in the dark ||| 0.011236 0.00718601 2.07417e-05 2.88655e-07 2.718 ||| 0-0 1-1 ||| 89 48212 +a los ||| in the day ||| 0.0212766 0.00718601 2.07417e-05 6.60298e-06 2.718 ||| 0-0 1-1 ||| 47 48212 +a los ||| in the direction of the ||| 0.04 0.00718601 4.14834e-05 7.80172e-09 2.718 ||| 0-0 1-1 ||| 50 48212 +a los ||| in the direction of ||| 0.00514139 0.00718601 4.14834e-05 1.27081e-07 2.718 ||| 0-0 1-1 ||| 389 48212 +a los ||| in the direction ||| 0.00352734 0.00718601 4.14834e-05 2.33759e-06 2.718 ||| 0-0 1-1 ||| 567 48212 +a los ||| in the elections ||| 0.00558659 0.00718601 2.07417e-05 9.2782e-07 2.718 ||| 0-0 1-1 ||| 179 48212 +a los ||| in the event of ||| 0.000633312 0.00718601 2.07417e-05 1.46276e-07 2.718 ||| 0-0 1-1 ||| 1579 48212 +a los ||| in the event ||| 0.000565291 0.00718601 2.07417e-05 2.69068e-06 2.718 ||| 0-0 1-1 ||| 1769 48212 +a los ||| in the eyes of ||| 0.00573066 0.00718601 4.14834e-05 8.16848e-08 2.718 ||| 0-0 1-1 ||| 349 48212 +a los ||| in the eyes ||| 0.00930233 0.00718601 8.29669e-05 1.50255e-06 2.718 ||| 0-0 1-1 ||| 430 48212 +a los ||| in the face of the ||| 0.00714286 0.00751919 4.14834e-05 3.71153e-08 2.718 ||| 0-0 1-1 0-2 1-3 1-4 ||| 280 48212 +a los ||| in the face ||| 0.0030426 0.00718601 6.22252e-05 4.31178e-06 2.718 ||| 0-0 1-1 ||| 986 48212 +a los ||| in the faces of the ||| 1 0.00931197 2.07417e-05 8.71021e-09 2.718 ||| 0-0 1-1 0-2 1-3 1-4 ||| 1 48212 +a los ||| in the fact that ||| 0.003861 0.00718601 2.07417e-05 1.26997e-06 2.718 ||| 0-0 1-1 ||| 259 48212 +a los ||| in the fact ||| 0.00240385 0.00718601 2.07417e-05 7.54962e-05 2.718 ||| 0-0 1-1 ||| 416 48212 +a los ||| in the field ||| 0.000393236 0.00718601 4.14834e-05 3.7654e-06 2.718 ||| 0-0 1-1 ||| 5086 48212 +a los ||| in the flesh ||| 0.1 0.00718601 2.07417e-05 1.57214e-07 2.718 ||| 0-0 1-1 ||| 10 48212 +a los ||| in the form of ||| 0.001287 0.00718601 4.14834e-05 6.37786e-07 2.718 ||| 0-0 1-1 ||| 1554 48212 +a los ||| in the form ||| 0.00205023 0.00718601 8.29669e-05 1.17318e-05 2.718 ||| 0-0 1-1 ||| 1951 48212 +a los ||| in the future ||| 0.000142714 0.00718601 2.07417e-05 6.84525e-06 2.718 ||| 0-0 1-1 ||| 7007 48212 +a los ||| in the government of the ||| 0.142857 0.00474545 2.07417e-05 2.61274e-08 2.718 ||| 0-0 1-1 0-3 1-4 ||| 7 48212 +a los ||| in the hands of the ||| 0.0197368 0.00718601 0.00012445 8.67048e-09 2.718 ||| 0-0 1-1 ||| 304 48212 +a los ||| in the hands of ||| 0.00365631 0.00718601 4.14834e-05 1.41232e-07 2.718 ||| 0-0 1-1 ||| 547 48212 +a los ||| in the hands ||| 0.00637959 0.00718601 8.29669e-05 2.59789e-06 2.718 ||| 0-0 1-1 ||| 627 48212 +a los ||| in the hierarchy ||| 0.0588235 0.00718601 2.07417e-05 3.60819e-08 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| in the higher ||| 0.2 0.00718601 2.07417e-05 1.08503e-06 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| in the individual ||| 0.0165289 0.00683524 8.29669e-05 3.31257e-05 2.718 ||| 0-0 1-1 1-2 ||| 242 48212 +a los ||| in the interest of the ||| 0.00671141 0.00718601 2.07417e-05 9.65968e-09 2.718 ||| 0-0 1-1 ||| 149 48212 +a los ||| in the interest of ||| 0.00660793 0.00718601 6.22252e-05 1.57345e-07 2.718 ||| 0-0 1-1 ||| 454 48212 +a los ||| in the interest ||| 0.00598802 0.00718601 6.22252e-05 2.89428e-06 2.718 ||| 0-0 1-1 ||| 501 48212 +a los ||| in the interests of all those ||| 0.25 0.00626945 2.07417e-05 5.24618e-13 2.718 ||| 0-0 1-1 1-3 1-4 1-5 ||| 4 48212 +a los ||| in the interests of the Member ||| 1 0.00718601 2.07417e-05 6.07688e-12 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| in the interests of the ||| 0.00584795 0.00718601 6.22252e-05 1.17929e-08 2.718 ||| 0-0 1-1 ||| 513 48212 +a los ||| in the interests of ||| 0.00326797 0.00718601 0.00012445 1.92092e-07 2.718 ||| 0-0 1-1 ||| 1836 48212 +a los ||| in the interests ||| 0.00329489 0.00718601 0.00012445 3.53345e-06 2.718 ||| 0-0 1-1 ||| 1821 48212 +a los ||| in the light of the ||| 0.0035057 0.00482943 8.29669e-05 6.35531e-09 2.718 ||| 0-0 1-1 1-3 1-4 ||| 1141 48212 +a los ||| in the light of ||| 0.000448229 0.00718601 2.07417e-05 2.43513e-07 2.718 ||| 0-0 1-1 ||| 2231 48212 +a los ||| in the light ||| 0.000785855 0.00718601 4.14834e-05 4.47931e-06 2.718 ||| 0-0 1-1 ||| 2545 48212 +a los ||| in the long term to ||| 0.0344828 0.00718601 2.07417e-05 8.47574e-11 2.718 ||| 0-0 1-1 ||| 29 48212 +a los ||| in the long term ||| 0.000773395 0.00718601 2.07417e-05 9.53851e-10 2.718 ||| 0-0 1-1 ||| 1293 48212 +a los ||| in the long ||| 0.000815661 0.00718601 2.07417e-05 8.71893e-06 2.718 ||| 0-0 1-1 ||| 1226 48212 +a los ||| in the matter , ||| 0.0454545 0.00718601 2.07417e-05 3.18878e-06 2.718 ||| 0-0 1-1 ||| 22 48212 +a los ||| in the matter ||| 0.00278552 0.00718601 2.07417e-05 2.67392e-05 2.718 ||| 0-0 1-1 ||| 359 48212 +a los ||| in the meantime ||| 0.00106952 0.00718601 2.07417e-05 6.31433e-07 2.718 ||| 0-0 1-1 ||| 935 48212 +a los ||| in the men of ||| 1 0.00995816 2.07417e-05 2.23813e-06 2.718 ||| 0-0 1-1 1-2 ||| 1 48212 +a los ||| in the men ||| 1 0.00995816 2.07417e-05 4.11694e-05 2.718 ||| 0-0 1-1 1-2 ||| 1 48212 +a los ||| in the minds of ||| 0.010101 0.00718601 2.07417e-05 6.71132e-08 2.718 ||| 0-0 1-1 ||| 99 48212 +a los ||| in the minds ||| 0.00900901 0.00718601 2.07417e-05 1.23452e-06 2.718 ||| 0-0 1-1 ||| 111 48212 +a los ||| in the most ||| 0.0129032 0.00718601 4.14834e-05 1.1139e-05 2.718 ||| 0-0 1-1 ||| 155 48212 +a los ||| in the other versions . ||| 0.333333 0.00718601 2.07417e-05 5.05671e-13 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| in the other versions ||| 0.2 0.00718601 2.07417e-05 1.66943e-10 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| in the other ||| 0.00239234 0.00718601 2.07417e-05 3.33886e-05 2.718 ||| 0-0 1-1 ||| 418 48212 +a los ||| in the primary interest of ||| 0.25 0.00718601 2.07417e-05 2.26576e-12 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| in the primary interest ||| 0.25 0.00718601 2.07417e-05 4.16777e-11 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| in the primary ||| 0.142857 0.00718601 2.07417e-05 3.71128e-07 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| in the process of ||| 0.000922509 0.00612862 2.07417e-05 2.13386e-07 2.718 ||| 1-1 ||| 1084 48212 +a los ||| in the process ||| 0.000575374 0.00612862 2.07417e-05 3.92513e-06 2.718 ||| 1-1 ||| 1738 48212 +a los ||| in the same ||| 0.000401929 0.00718601 2.07417e-05 2.07393e-05 2.718 ||| 0-0 1-1 ||| 2488 48212 +a los ||| in the sense that ||| 0.00350877 0.00718601 2.07417e-05 7.72133e-08 2.718 ||| 0-0 1-1 ||| 285 48212 +a los ||| in the sense ||| 0.001443 0.00718601 2.07417e-05 4.59013e-06 2.718 ||| 0-0 1-1 ||| 693 48212 +a los ||| in the service ||| 0.00606061 0.00718601 2.07417e-05 1.7242e-06 2.718 ||| 0-0 1-1 ||| 165 48212 +a los ||| in the shape ||| 0.00471698 0.00718601 2.07417e-05 1.55925e-06 2.718 ||| 0-0 1-1 ||| 212 48212 +a los ||| in the wake ||| 0.0025641 0.00718601 2.07417e-05 6.13392e-07 2.718 ||| 0-0 1-1 ||| 390 48212 +a los ||| in the way of the ||| 0.0192308 0.00482943 2.07417e-05 7.88234e-08 2.718 ||| 0-0 1-1 1-3 1-4 ||| 52 48212 +a los ||| in the way of ||| 0.00615385 0.00718601 4.14834e-05 3.02023e-06 2.718 ||| 0-0 1-1 ||| 325 48212 +a los ||| in the way ||| 0.001693 0.00718601 6.22252e-05 5.55558e-05 2.718 ||| 0-0 1-1 ||| 1772 48212 +a los ||| in the wheels of all ||| 1 0.00718601 2.07417e-05 2.11866e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| in the wheels of ||| 0.333333 0.00718601 2.07417e-05 4.48355e-09 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| in the wheels ||| 0.142857 0.00718601 2.07417e-05 8.24729e-08 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| in the world , while ||| 0.111111 0.00718601 2.07417e-05 1.30508e-10 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| in the world , ||| 0.00105708 0.00718601 2.07417e-05 7.00149e-07 2.718 ||| 0-0 1-1 ||| 946 48212 +a los ||| in the world tells the ||| 1 0.00718601 2.07417e-05 1.71252e-11 2.718 ||| 0-0 1-1 1-4 ||| 1 48212 +a los ||| in the world ||| 0.000202102 0.00718601 2.07417e-05 5.87104e-06 2.718 ||| 0-0 1-1 ||| 4948 48212 +a los ||| in the ||| 0.00317843 0.00718601 0.0189579 0.0257728 2.718 ||| 0-0 1-1 ||| 287563 48212 +a los ||| in their countries ||| 0.00502513 0.00562478 2.07417e-05 5.80547e-07 2.718 ||| 0-0 1-2 ||| 199 48212 +a los ||| in their dealings with ||| 0.0322581 0.00139098 2.07417e-05 9.14086e-12 2.718 ||| 0-0 1-1 ||| 31 48212 +a los ||| in their dealings ||| 0.0277778 0.00139098 2.07417e-05 1.42949e-09 2.718 ||| 0-0 1-1 ||| 36 48212 +a los ||| in their job ||| 0.125 0.00139098 2.07417e-05 1.07349e-08 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| in their treatment ||| 0.25 0.00139098 2.07417e-05 8.31577e-09 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| in their ||| 0.00132188 0.00139098 0.000207417 0.000137451 2.718 ||| 0-0 1-1 ||| 7565 48212 +a los ||| in these ||| 0.000348493 0.00141242 4.14834e-05 0.000146451 2.718 ||| 0-0 1-1 ||| 5739 48212 +a los ||| in they ||| 0.5 0.000425463 2.07417e-05 4.91835e-05 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| in this process , and ||| 0.0625 1.73878e-05 2.07417e-05 5.82042e-12 2.718 ||| 0-0 1-1 ||| 16 48212 +a los ||| in this process , ||| 0.00724638 1.73878e-05 2.07417e-05 4.64671e-10 2.718 ||| 0-0 1-1 ||| 138 48212 +a los ||| in this process ||| 0.0013369 1.73878e-05 2.07417e-05 3.89646e-09 2.718 ||| 0-0 1-1 ||| 748 48212 +a los ||| in this regard ||| 0.000250188 1.73878e-05 2.07417e-05 6.20607e-09 2.718 ||| 0-0 1-1 ||| 3997 48212 +a los ||| in this ||| 3.08957e-05 1.73878e-05 4.14834e-05 9.11452e-06 2.718 ||| 0-0 1-1 ||| 64734 48212 +a los ||| in those countries ||| 0.00141844 0.01673 2.07417e-05 3.80928e-07 2.718 ||| 0-0 1-1 ||| 705 48212 +a los ||| in those regions that are not ||| 0.5 0.01673 2.07417e-05 7.20337e-14 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| in those regions that are ||| 0.5 0.01673 2.07417e-05 2.10989e-11 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| in those regions that ||| 0.142857 0.01673 2.07417e-05 1.39058e-09 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| in those regions ||| 0.00900901 0.01673 2.07417e-05 8.26664e-08 2.718 ||| 0-0 1-1 ||| 111 48212 +a los ||| in those years ||| 0.111111 0.01673 2.07417e-05 1.7075e-07 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| in those ||| 0.0053027 0.01673 0.000248901 0.00100323 2.718 ||| 0-0 1-1 ||| 2263 48212 +a los ||| in to the ||| 0.0337079 0.0176447 6.22252e-05 0.00902824 2.718 ||| 0-0 0-1 1-2 ||| 89 48212 +a los ||| in to ||| 0.0031348 0.0025704 2.07417e-05 0.021047 2.718 ||| 0-0 0-1 ||| 319 48212 +a los ||| in towards the ||| 1 0.0131014 2.07417e-05 8.69212e-05 2.718 ||| 0-0 0-1 1-2 ||| 1 48212 +a los ||| in trade ||| 0.00537634 0.0018052 2.07417e-05 4.50979e-05 2.718 ||| 0-0 1-1 ||| 186 48212 +a los ||| in tune with the ||| 0.0294118 0.00698995 2.07417e-05 4.5833e-09 2.718 ||| 0-2 1-3 ||| 34 48212 +a los ||| in warmly welcoming the ||| 0.2 0.00718601 2.07417e-05 3.22675e-12 2.718 ||| 0-0 1-3 ||| 5 48212 +a los ||| in which the ||| 0.000361794 0.00718601 2.07417e-05 0.000218929 2.718 ||| 0-0 1-2 ||| 2764 48212 +a los ||| in with animal ||| 1 0.0100454 2.07417e-05 1.42388e-06 2.718 ||| 0-0 0-1 1-2 ||| 1 48212 +a los ||| in with the ||| 0.0227273 0.00708798 4.14834e-05 0.000430279 2.718 ||| 0-0 0-1 1-2 ||| 88 48212 +a los ||| in with those ||| 0.333333 0.0165018 2.07417e-05 1.67491e-05 2.718 ||| 0-0 0-1 1-2 ||| 3 48212 +a los ||| in your ||| 0.000360881 0.000566123 2.07417e-05 1.85174e-05 2.718 ||| 0-0 1-1 ||| 2771 48212 +a los ||| in ||| 0.000183382 0.00104682 0.00421057 0.0600825 2.718 ||| 0-0 ||| 1.10698e+06 48212 +a los ||| inciting the ||| 0.142857 0.027064 2.07417e-05 1.05523e-05 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| include the ||| 0.00307456 0.00343942 8.29669e-05 0.000113545 2.718 ||| 0-0 1-1 ||| 1301 48212 +a los ||| include ||| 0.00034823 0.000501038 6.22252e-05 0.0002647 2.718 ||| 0-0 ||| 8615 48212 +a los ||| included in the ||| 0.00058997 0.00718601 2.07417e-05 2.42006e-06 2.718 ||| 0-1 1-2 ||| 1695 48212 +a los ||| includes as far ||| 0.5 0.00043374 2.07417e-05 1.74277e-10 2.718 ||| 0-1 ||| 2 48212 +a los ||| includes as ||| 0.25 0.00043374 2.07417e-05 2.55277e-07 2.718 ||| 0-1 ||| 4 48212 +a los ||| includes the ||| 0.00159236 0.00379192 2.07417e-05 5.16892e-05 2.718 ||| 0-0 1-1 ||| 628 48212 +a los ||| including the ||| 0.000691244 0.00612862 6.22252e-05 4.4783e-05 2.718 ||| 1-1 ||| 4340 48212 +a los ||| including ||| 4.63564e-05 7.20415e-05 2.07417e-05 2.63e-05 2.718 ||| 1-0 ||| 21572 48212 +a los ||| income ||| 0.000235405 0.00495883 2.07417e-05 0.0004113 2.718 ||| 1-0 ||| 4248 48212 +a los ||| incorporate into their own ||| 1 0.00254652 2.07417e-05 3.13324e-13 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| incorporate into their ||| 0.166667 0.00254652 2.07417e-05 1.84819e-10 2.718 ||| 0-1 1-2 ||| 6 48212 +a los ||| incorporated after ||| 0.5 0.000607523 2.07417e-05 1.69438e-08 2.718 ||| 0-1 ||| 2 48212 +a los ||| increase in ||| 0.000250627 0.00104682 2.07417e-05 7.76266e-06 2.718 ||| 0-1 ||| 3990 48212 +a los ||| increased to the ||| 0.5 0.0281035 2.07417e-05 7.46812e-06 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| increased to ||| 0.01 0.00409398 2.07417e-05 1.741e-05 2.718 ||| 0-1 ||| 100 48212 +a los ||| increased ||| 0.000113353 8.0481e-05 2.07417e-05 1.75e-05 2.718 ||| 1-0 ||| 8822 48212 +a los ||| increasing rates of ||| 0.5 0.00891313 2.07417e-05 2.96784e-09 2.718 ||| 1-1 ||| 2 48212 +a los ||| increasing rates ||| 0.333333 0.00891313 2.07417e-05 5.4592e-08 2.718 ||| 1-1 ||| 3 48212 +a los ||| increasingly seeking out the ||| 0.333333 0.00819065 2.07417e-05 5.13728e-12 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| indeed , due to ||| 0.5 0.00409398 2.07417e-05 8.7512e-09 2.718 ||| 0-3 ||| 2 48212 +a los ||| indeed , in the ||| 0.0227273 0.00718601 2.07417e-05 2.32942e-06 2.718 ||| 0-2 1-3 ||| 44 48212 +a los ||| indeed enable the ||| 0.5 0.00612862 2.07417e-05 3.20554e-08 2.718 ||| 1-2 ||| 2 48212 +a los ||| indeed for the ||| 0.037037 0.00835696 2.07417e-05 1.19797e-05 2.718 ||| 0-1 1-2 ||| 27 48212 +a los ||| indeed of the ||| 0.0263158 0.00230489 2.07417e-05 9.61615e-06 2.718 ||| 0-1 1-2 ||| 38 48212 +a los ||| indeed the wider ||| 1 0.000140865 2.07417e-05 3.33797e-10 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| indeed the ||| 0.00312012 0.000140865 4.14834e-05 1.17534e-05 2.718 ||| 0-0 1-1 ||| 641 48212 +a los ||| indeed to the ||| 0.0606061 0.0281035 4.14834e-05 0.000113885 2.718 ||| 0-1 1-2 ||| 33 48212 +a los ||| indication of the ||| 0.00571429 0.00230489 2.07417e-05 2.74058e-07 2.718 ||| 0-1 1-2 ||| 175 48212 +a los ||| indispensable to ||| 0.0102041 0.00409398 2.07417e-05 1.12097e-06 2.718 ||| 0-1 ||| 98 48212 +a los ||| individual justifications to the ||| 1 0.0281035 2.07417e-05 2.33721e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| individual ||| 0.00112108 0.00553031 0.000228159 0.0012853 2.718 ||| 1-0 ||| 9812 48212 +a los ||| individually ||| 0.00168634 0.000461857 2.07417e-05 1.92e-05 2.718 ||| 0-0 ||| 593 48212 +a los ||| individuals can ||| 0.0384615 0.00718331 2.07417e-05 1.61356e-06 2.718 ||| 1-0 ||| 26 48212 +a los ||| individuals to ||| 0.00869565 0.0329398 2.07417e-05 0.000190039 2.718 ||| 1-0 0-1 ||| 115 48212 +a los ||| individuals ||| 0.00071048 0.00718331 4.14834e-05 0.0005425 2.718 ||| 1-0 ||| 2815 48212 +a los ||| industries to the ||| 0.333333 0.0281035 2.07417e-05 2.43428e-06 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| inform the ||| 0.00211416 0.0159007 2.07417e-05 0.000178532 2.718 ||| 0-0 1-1 ||| 473 48212 +a los ||| information on the ||| 0.00133156 0.00957523 2.07417e-05 2.69313e-06 2.718 ||| 0-1 1-2 ||| 751 48212 +a los ||| informed of the ||| 0.00564972 0.00230489 2.07417e-05 3.79368e-07 2.718 ||| 0-1 1-2 ||| 177 48212 +a los ||| informed those ||| 0.5 0.00794641 2.07417e-05 1.95028e-06 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| injury to the ||| 0.25 0.0281035 2.07417e-05 4.80845e-07 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| inland ||| 0.0022831 0.000551229 2.07417e-05 1.17e-05 2.718 ||| 1-0 ||| 438 48212 +a los ||| innovation in those regions that are not ||| 1 0.01673 2.07417e-05 8.28387e-19 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| innovation in those regions that are ||| 1 0.01673 2.07417e-05 2.42637e-16 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| innovation in those regions that ||| 1 0.01673 2.07417e-05 1.59917e-14 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| innovation in those regions ||| 1 0.01673 2.07417e-05 9.50664e-13 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| innovation in those ||| 0.5 0.01673 2.07417e-05 1.15372e-08 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| inspectors ||| 0.00114943 0.0106202 2.07417e-05 0.0001799 2.718 ||| 1-0 ||| 870 48212 +a los ||| insult to the ||| 0.0120482 0.0281035 2.07417e-05 6.01056e-07 2.718 ||| 0-1 1-2 ||| 83 48212 +a los ||| insurance ||| 0.000687521 0.00495033 4.14834e-05 0.000385 2.718 ||| 1-0 ||| 2909 48212 +a los ||| integration on the basis ||| 0.333333 0.00957523 2.07417e-05 1.91322e-10 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| integration on the ||| 0.0769231 0.00957523 2.07417e-05 3.222e-07 2.718 ||| 0-1 1-2 ||| 13 48212 +a los ||| interest in any debate . they are ||| 1 0.00104667 2.07417e-05 1.84999e-19 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| interest in any debate . they ||| 1 0.00104667 2.07417e-05 1.21929e-17 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| interest in any debate . ||| 1 0.00104667 2.07417e-05 3.73557e-15 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| interest in any debate ||| 1 0.00104667 2.07417e-05 1.23327e-12 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| interest in any ||| 0.333333 0.00104667 2.07417e-05 6.23177e-09 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| interests of the ||| 0.00226629 0.00230489 8.29669e-05 1.73951e-06 2.718 ||| 0-1 1-2 ||| 1765 48212 +a los ||| interests ||| 6.68673e-05 0.00335834 2.07417e-05 0.0010199 2.718 ||| 1-0 ||| 14955 48212 +a los ||| international ||| 3.09483e-05 6.08406e-05 2.07417e-05 3.5e-05 2.718 ||| 1-0 ||| 32312 48212 +a los ||| internationally ||| 0.000900901 0.00282643 2.07417e-05 0.0002592 2.718 ||| 0-0 ||| 1110 48212 +a los ||| into ' ||| 0.0588235 0.00478163 2.07417e-05 3.23104e-05 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| into Russia , the ||| 0.5 0.0131557 2.07417e-05 1.25225e-08 2.718 ||| 0-0 1-3 ||| 2 48212 +a los ||| into air ||| 0.5 0.00213905 2.07417e-05 1.01016e-06 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| into all ||| 0.00626959 0.00191412 4.14834e-05 1.63295e-05 2.718 ||| 0-0 1-1 ||| 319 48212 +a los ||| into animal ||| 0.333333 0.0186448 2.07417e-05 8.62247e-06 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| into jobs ||| 0.0555556 0.00640712 2.07417e-05 6.02996e-06 2.718 ||| 0-0 1-1 ||| 18 48212 +a los ||| into line with costs ||| 1 0.0230693 2.07417e-05 3.16638e-11 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| into line with the ||| 0.0684932 0.0100728 0.000207417 1.28067e-08 2.718 ||| 0-0 0-2 1-3 ||| 146 48212 +a los ||| into line with those ||| 0.375 0.0234508 6.22252e-05 4.98514e-10 2.718 ||| 0-0 0-2 1-3 ||| 8 48212 +a los ||| into line with ||| 0.00308642 0.00191645 2.07417e-05 1.14351e-08 2.718 ||| 0-0 ||| 324 48212 +a los ||| into line ||| 0.00520833 0.00191645 4.14834e-05 1.78827e-06 2.718 ||| 0-0 ||| 384 48212 +a los ||| into management ||| 0.25 0.000175256 2.07417e-05 1.00226e-07 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| into name calling ||| 0.333333 0.00191645 2.07417e-05 3.49859e-11 2.718 ||| 0-0 ||| 3 48212 +a los ||| into name ||| 0.333333 0.00191645 2.07417e-05 5.30894e-07 2.718 ||| 0-0 ||| 3 48212 +a los ||| into other ||| 0.00684932 0.000414047 2.07417e-05 1.72449e-06 2.718 ||| 0-0 1-1 ||| 146 48212 +a los ||| into our ||| 0.00236407 0.00267191 2.07417e-05 2.16919e-05 2.718 ||| 0-0 1-1 ||| 423 48212 +a los ||| into the EU ||| 0.00236967 0.0131557 2.07417e-05 1.28926e-06 2.718 ||| 0-0 1-1 ||| 422 48212 +a los ||| into the Union ||| 0.00793651 0.0131557 2.07417e-05 1.45237e-06 2.718 ||| 0-0 1-1 ||| 126 48212 +a los ||| into the hands of the ||| 0.0983607 0.0131557 0.00012445 8.7658e-10 2.718 ||| 0-0 1-1 ||| 61 48212 +a los ||| into the hands of ||| 0.0441176 0.0131557 0.00012445 1.42785e-08 2.718 ||| 0-0 1-1 ||| 136 48212 +a los ||| into the hands ||| 0.0384615 0.0131557 0.00012445 2.62645e-07 2.718 ||| 0-0 1-1 ||| 156 48212 +a los ||| into the market , and that money ||| 1 0.0131557 2.07417e-05 2.41781e-15 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| into the market , and that ||| 1 0.0131557 2.07417e-05 1.47969e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| into the market , and ||| 1 0.0131557 2.07417e-05 8.79634e-10 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| into the market , ||| 0.2 0.0131557 2.07417e-05 7.02252e-08 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| into the market ||| 0.02 0.0131557 2.07417e-05 5.88868e-07 2.718 ||| 0-0 1-1 ||| 50 48212 +a los ||| into the ||| 0.0184332 0.0131557 0.00373351 0.00260561 2.718 ||| 0-0 1-1 ||| 9765 48212 +a los ||| into their own ||| 0.0222222 0.00254652 2.07417e-05 2.35582e-08 2.718 ||| 0-0 1-1 ||| 45 48212 +a los ||| into their ||| 0.00588235 0.00254652 4.14834e-05 1.38962e-05 2.718 ||| 0-0 1-1 ||| 340 48212 +a los ||| into these ||| 0.0060241 0.00258577 2.07417e-05 1.48061e-05 2.718 ||| 0-0 1-1 ||| 166 48212 +a los ||| into who is ||| 1 0.000173653 2.07417e-05 2.23881e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| into who ||| 1 0.000173653 2.07417e-05 7.14338e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| into ||| 0.000847004 0.00191645 0.000788186 0.0060743 2.718 ||| 0-0 ||| 44864 48212 +a los ||| intrigued to hear the ||| 1 0.0281035 2.07417e-05 6.10072e-12 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| invite those ||| 0.125 0.0939608 2.07417e-05 1.06531e-05 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| invited to ||| 0.00408163 0.00409398 2.07417e-05 2.27696e-06 2.718 ||| 0-1 ||| 245 48212 +a los ||| inviting elected ||| 1 0.00432657 2.07417e-05 8.7447e-09 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| inviting the ||| 0.0140845 0.0429166 2.07417e-05 7.28368e-05 2.718 ||| 0-0 1-1 ||| 71 48212 +a los ||| involve aspects ||| 0.333333 0.018977 2.07417e-05 7.69665e-07 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| involve sports ||| 1 0.0142604 2.07417e-05 6.04986e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| involve the ||| 0.0021097 0.0208501 2.07417e-05 0.000293235 2.718 ||| 0-0 1-1 ||| 474 48212 +a los ||| involve those ||| 0.125 0.0485418 2.07417e-05 1.14145e-05 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| involve ||| 0.000711238 0.00303735 4.14834e-05 0.0006836 2.718 ||| 0-0 ||| 2812 48212 +a los ||| involved in the ||| 0.00220426 0.00718601 6.22252e-05 8.91222e-06 2.718 ||| 0-1 1-2 ||| 1361 48212 +a los ||| involved to ||| 0.00657895 0.00409398 2.07417e-05 0.000121134 2.718 ||| 0-1 ||| 152 48212 +a los ||| involves only products which ||| 1 0.0167204 2.07417e-05 9.37338e-12 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| involves only products ||| 1 0.0167204 2.07417e-05 1.10345e-09 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| involves the ||| 0.00325733 0.00833703 2.07417e-05 8.49762e-05 2.718 ||| 0-0 1-1 ||| 307 48212 +a los ||| involving the ||| 0.00328947 0.0125359 6.22252e-05 0.000249395 2.718 ||| 0-0 1-1 ||| 912 48212 +a los ||| involving ||| 0.000268384 0.00182617 2.07417e-05 0.0005814 2.718 ||| 0-0 ||| 3726 48212 +a los ||| is , into the ||| 1 0.0131557 2.07417e-05 9.73866e-06 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| is , to this ||| 0.5 0.00409398 2.07417e-05 8.45977e-06 2.718 ||| 0-2 ||| 2 48212 +a los ||| is , to ||| 0.00564972 0.00409398 2.07417e-05 0.00130928 2.718 ||| 0-2 ||| 177 48212 +a los ||| is against that ||| 0.0454545 0.000916734 2.07417e-05 1.37048e-06 2.718 ||| 0-1 ||| 22 48212 +a los ||| is against ||| 0.0026738 0.000916734 2.07417e-05 8.14712e-05 2.718 ||| 0-1 ||| 374 48212 +a los ||| is also necessary to ||| 0.0285714 0.00409398 2.07417e-05 1.42616e-08 2.718 ||| 0-3 ||| 35 48212 +a los ||| is available to the ||| 0.142857 0.0281035 2.07417e-05 1.49807e-06 2.718 ||| 0-2 1-3 ||| 7 48212 +a los ||| is because of the ||| 0.0192308 0.000636466 2.07417e-05 2.36143e-07 2.718 ||| 0-1 1-3 ||| 52 48212 +a los ||| is calling on ||| 0.0185185 0.00139487 2.07417e-05 7.83514e-08 2.718 ||| 0-2 ||| 54 48212 +a los ||| is committed to the ||| 0.0192308 0.0281035 2.07417e-05 3.89942e-07 2.718 ||| 0-2 1-3 ||| 52 48212 +a los ||| is completely dependent on the ||| 1 0.00957523 2.07417e-05 1.41737e-12 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| is concerned to those ||| 0.5 0.0654285 2.07417e-05 2.94889e-07 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| is concerned ||| 0.000288018 0.000789931 2.07417e-05 2.50321e-05 2.718 ||| 0-1 ||| 3472 48212 +a los ||| is consistent with the ||| 0.010989 0.00698995 2.07417e-05 6.21722e-09 2.718 ||| 0-2 1-3 ||| 91 48212 +a los ||| is for governments to ||| 0.5 0.0407559 2.07417e-05 1.44001e-06 2.718 ||| 0-1 1-2 0-3 ||| 2 48212 +a los ||| is for parties ||| 0.25 0.00906799 2.07417e-05 1.94134e-06 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| is for the ||| 0.00364964 0.00835696 4.14834e-05 0.00049539 2.718 ||| 0-1 1-2 ||| 548 48212 +a los ||| is for ||| 0.000825764 0.0012174 4.14834e-05 0.00115487 2.718 ||| 0-1 ||| 2422 48212 +a los ||| is going to enable the ||| 0.333333 0.0281035 2.07417e-05 3.97392e-10 2.718 ||| 0-2 1-4 ||| 3 48212 +a los ||| is going to make any ||| 1 0.00409338 2.07417e-05 1.50804e-11 2.718 ||| 0-2 1-4 ||| 1 48212 +a los ||| is guidance to the ||| 1 0.0281035 2.07417e-05 3.3908e-08 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| is in the interests of all those ||| 0.5 0.00626945 2.07417e-05 1.64421e-14 2.718 ||| 0-1 1-2 1-4 1-5 1-6 ||| 2 48212 +a los ||| is in the ||| 0.00417827 0.00718601 0.00012445 0.000807747 2.718 ||| 0-1 1-2 ||| 1436 48212 +a los ||| is it the ||| 0.00578035 7.89132e-05 2.07417e-05 3.98748e-06 2.718 ||| 0-1 1-2 ||| 173 48212 +a los ||| is more than happy to grant the ||| 0.25 0.0281035 2.07417e-05 6.56175e-18 2.718 ||| 0-4 1-6 ||| 4 48212 +a los ||| is motivated by ||| 0.04 0.00060207 2.07417e-05 2.96538e-09 2.718 ||| 0-2 ||| 25 48212 +a los ||| is of the ||| 0.00275482 0.00230489 2.07417e-05 0.000397652 2.718 ||| 0-1 1-2 ||| 363 48212 +a los ||| is our message to the ||| 0.333333 0.0281035 2.07417e-05 3.13117e-10 2.718 ||| 0-3 1-4 ||| 3 48212 +a los ||| is provided to the ||| 0.166667 0.0281035 2.07417e-05 1.0794e-06 2.718 ||| 0-2 1-3 ||| 6 48212 +a los ||| is put to the ||| 0.0833333 0.0281035 2.07417e-05 5.19263e-06 2.718 ||| 0-2 1-3 ||| 12 48212 +a los ||| is reserved for the ||| 0.142857 0.00835696 2.07417e-05 3.22003e-09 2.718 ||| 0-2 1-3 ||| 7 48212 +a los ||| is safe to say that the ||| 0.166667 0.0281035 2.07417e-05 2.45329e-12 2.718 ||| 0-2 1-5 ||| 6 48212 +a los ||| is supposed to ||| 0.00338983 0.00409398 2.07417e-05 6.44458e-07 2.718 ||| 0-2 ||| 295 48212 +a los ||| is the way we ||| 0.05 0.00612862 2.07417e-05 3.28987e-07 2.718 ||| 1-1 ||| 20 48212 +a los ||| is the way ||| 0.0017094 0.00612862 2.07417e-05 2.89798e-05 2.718 ||| 1-1 ||| 585 48212 +a los ||| is the ||| 0.000149884 0.00612862 0.00012445 0.013444 2.718 ||| 1-1 ||| 40031 48212 +a los ||| is to call the ||| 1 0.0281035 2.07417e-05 1.0455e-06 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| is to find ||| 0.0107527 0.00409398 2.07417e-05 3.65485e-06 2.718 ||| 0-1 ||| 93 48212 +a los ||| is to say the ||| 0.016129 0.0281035 2.07417e-05 4.50128e-06 2.718 ||| 0-1 1-3 ||| 62 48212 +a los ||| is to the ||| 0.0253165 0.0281035 8.29669e-05 0.00470944 2.718 ||| 0-1 1-2 ||| 158 48212 +a los ||| is to ||| 0.000256131 0.00409398 8.29669e-05 0.0109788 2.718 ||| 0-1 ||| 15617 48212 +a los ||| is up to the ||| 0.013245 0.0281035 4.14834e-05 1.60616e-05 2.718 ||| 0-2 1-3 ||| 151 48212 +a los ||| issue at a time ||| 0.0909091 0.00363727 2.07417e-05 1.8744e-09 2.718 ||| 0-1 ||| 11 48212 +a los ||| issue at a ||| 0.05 0.00363727 2.07417e-05 1.14174e-06 2.718 ||| 0-1 ||| 20 48212 +a los ||| issue at ||| 0.00328947 0.00363727 2.07417e-05 2.5758e-05 2.718 ||| 0-1 ||| 304 48212 +a los ||| issue for ||| 0.00581395 0.0012174 4.14834e-05 2.78869e-05 2.718 ||| 0-1 ||| 344 48212 +a los ||| issue of the ||| 0.00117578 0.00230489 4.14834e-05 9.60219e-06 2.718 ||| 0-1 1-2 ||| 1701 48212 +a los ||| issue of ||| 0.000108331 0.000335766 2.07417e-05 2.2385e-05 2.718 ||| 0-1 ||| 9231 48212 +a los ||| issues through their own ||| 0.5 0.00118631 2.07417e-05 4.48978e-13 2.718 ||| 1-2 ||| 2 48212 +a los ||| issues through their ||| 0.5 0.00118631 2.07417e-05 2.64837e-10 2.718 ||| 1-2 ||| 2 48212 +a los ||| issues ||| 0.000109278 0.00201231 6.22252e-05 0.001121 2.718 ||| 1-0 ||| 27453 48212 +a los ||| it accelerated the proceedings ||| 0.333333 0.00612862 2.07417e-05 4.98428e-13 2.718 ||| 1-2 ||| 3 48212 +a los ||| it accelerated the ||| 0.333333 0.00612862 2.07417e-05 1.37308e-08 2.718 ||| 1-2 ||| 3 48212 +a los ||| it at the ||| 0.0120482 0.0249683 2.07417e-05 0.000259629 2.718 ||| 0-1 1-2 ||| 83 48212 +a los ||| it be in the ||| 0.0714286 0.00718601 2.07417e-05 8.30613e-06 2.718 ||| 0-2 1-3 ||| 14 48212 +a los ||| it caused injury to the ||| 1 0.0281035 2.07417e-05 7.25977e-13 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| it does to the ||| 0.222222 0.0281035 4.14834e-05 1.87426e-06 2.718 ||| 0-2 1-3 ||| 9 48212 +a los ||| it from their ||| 0.125 0.00103108 2.07417e-05 2.92866e-07 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| it has had to ||| 0.0434783 0.00409398 2.07417e-05 3.21849e-08 2.718 ||| 0-3 ||| 23 48212 +a los ||| it into the ||| 0.0263158 0.0131557 2.07417e-05 4.63361e-05 2.718 ||| 0-1 1-2 ||| 38 48212 +a los ||| it is correct ||| 0.0123457 1.14957e-05 2.07417e-05 3.34648e-10 2.718 ||| 0-0 ||| 81 48212 +a los ||| it is for governments to ||| 1 0.0407559 2.07417e-05 2.5608e-08 2.718 ||| 0-2 1-3 0-4 ||| 1 48212 +a los ||| it is for the ||| 0.00413223 0.00835696 2.07417e-05 8.80962e-06 2.718 ||| 0-2 1-3 ||| 242 48212 +a los ||| it is for ||| 0.000777605 0.0012174 2.07417e-05 2.05373e-05 2.718 ||| 0-2 ||| 1286 48212 +a los ||| it is in the ||| 0.00904977 0.00718601 8.29669e-05 1.43643e-05 2.718 ||| 0-2 1-3 ||| 442 48212 +a los ||| it is not the ||| 0.00119904 7.89132e-05 2.07417e-05 1.36137e-08 2.718 ||| 0-0 1-3 ||| 834 48212 +a los ||| it is of the ||| 0.0060241 0.00230489 2.07417e-05 7.07153e-06 2.718 ||| 0-2 1-3 ||| 166 48212 +a los ||| it is the ||| 0.000196155 7.89132e-05 2.07417e-05 3.98748e-06 2.718 ||| 0-0 1-2 ||| 5098 48212 +a los ||| it is to ||| 0.000700771 0.00409398 2.07417e-05 0.000195239 2.718 ||| 0-2 ||| 1427 48212 +a los ||| it is up to the ||| 0.00505051 0.0281035 4.14834e-05 2.85626e-07 2.718 ||| 0-3 1-4 ||| 396 48212 +a los ||| it is ||| 1.36275e-05 1.14957e-05 4.14834e-05 9.29577e-06 2.718 ||| 0-0 ||| 146762 48212 +a los ||| it on the ||| 0.02 0.00139487 4.14834e-05 4.14159e-05 2.718 ||| 0-1 ||| 100 48212 +a los ||| it on ||| 0.003003 0.00139487 2.07417e-05 0.000674616 2.718 ||| 0-1 ||| 333 48212 +a los ||| it out to the individual ||| 0.5 0.0281035 2.07417e-05 1.4473e-09 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| it out to the ||| 0.333333 0.0281035 2.07417e-05 1.02355e-05 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| it possible for ||| 0.00409836 0.000132158 2.07417e-05 4.65252e-08 2.718 ||| 1-1 0-2 ||| 244 48212 +a los ||| it represents a cause for ||| 0.5 0.0012174 2.07417e-05 1.94724e-13 2.718 ||| 0-4 ||| 2 48212 +a los ||| it the ||| 0.0025974 7.89132e-05 2.07417e-05 0.000127228 2.718 ||| 0-0 1-1 ||| 385 48212 +a los ||| it through in the ||| 1 0.0176996 2.07417e-05 3.64325e-06 2.718 ||| 0-1 0-2 1-3 ||| 1 48212 +a los ||| it to the Central ||| 1 0.0281035 2.07417e-05 5.95895e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| it to the responsible ||| 0.5 0.0281035 2.07417e-05 3.95215e-07 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| it to the ||| 0.105455 0.0281035 0.00060151 0.00267218 2.718 ||| 0-1 1-2 ||| 275 48212 +a los ||| it to ||| 0.000422297 0.00409398 2.07417e-05 0.00622948 2.718 ||| 0-1 ||| 2368 48212 +a los ||| it was in ||| 0.0031746 0.00104682 2.07417e-05 3.34748e-06 2.718 ||| 0-2 ||| 315 48212 +a los ||| it was the ||| 0.00132275 0.00612862 2.07417e-05 2.38992e-05 2.718 ||| 1-2 ||| 756 48212 +a los ||| it will be for the ||| 0.047619 0.00835696 2.07417e-05 4.40704e-08 2.718 ||| 0-3 1-4 ||| 21 48212 +a los ||| it will be up to the ||| 0.0243902 0.0281035 2.07417e-05 1.42885e-09 2.718 ||| 0-4 1-5 ||| 41 48212 +a los ||| it will help the ||| 0.0769231 0.0317922 2.07417e-05 4.34057e-07 2.718 ||| 0-2 1-3 ||| 13 48212 +a los ||| it ||| 1.2906e-05 1.14957e-05 4.14834e-05 0.0002966 2.718 ||| 0-0 ||| 154967 48212 +a los ||| its attention on ||| 0.0277778 0.00139487 2.07417e-05 1.41224e-08 2.718 ||| 0-2 ||| 36 48212 +a los ||| its hands on the ||| 0.333333 0.00957523 2.07417e-05 2.33692e-09 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| its legitimacy ||| 0.0117647 0.0010593 2.07417e-05 1.62268e-08 2.718 ||| 1-0 ||| 85 48212 +a los ||| its nose at the ||| 0.5 0.0249683 2.07417e-05 1.26881e-10 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| its voice to the ||| 0.333333 0.0281035 2.07417e-05 9.31253e-09 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| its way into animal ||| 1 0.0186448 2.07417e-05 2.64803e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| its way through to ||| 1 0.00485755 2.07417e-05 7.42112e-10 2.718 ||| 1-0 0-3 ||| 1 48212 +a los ||| its ||| 0.000381297 0.0010593 0.000829669 0.0021351 2.718 ||| 1-0 ||| 104905 48212 +a los ||| itself in the ||| 0.027027 0.00718601 2.07417e-05 1.7492e-05 2.718 ||| 0-1 1-2 ||| 37 48212 +a los ||| jobs in the ||| 0.0025974 0.00718601 2.07417e-05 1.33503e-06 2.718 ||| 0-1 1-2 ||| 385 48212 +a los ||| jobs will ||| 0.0135135 0.00334474 2.07417e-05 1.39809e-05 2.718 ||| 1-0 0-1 ||| 74 48212 +a los ||| join unions ||| 0.166667 0.00281087 2.07417e-05 3.72996e-09 2.718 ||| 1-1 ||| 6 48212 +a los ||| joined the ||| 0.00223214 0.0237361 2.07417e-05 0.000182864 2.718 ||| 0-0 1-1 ||| 448 48212 +a los ||| joining the ||| 0.00149701 0.0307702 2.07417e-05 0.000228248 2.718 ||| 0-0 1-1 ||| 668 48212 +a los ||| jointly represents the ||| 0.333333 0.00612862 2.07417e-05 3.66028e-10 2.718 ||| 1-2 ||| 3 48212 +a los ||| journey for ||| 0.142857 0.0012174 2.07417e-05 3.7217e-07 2.718 ||| 0-1 ||| 7 48212 +a los ||| just a few examples of the ||| 1 0.00230489 2.07417e-05 2.15194e-15 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| just a ||| 0.000454959 2.87348e-05 2.07417e-05 2.91221e-06 2.718 ||| 0-0 ||| 2198 48212 +a los ||| just as ||| 0.000245098 0.00043374 2.07417e-05 1.10681e-05 2.718 ||| 0-1 ||| 4080 48212 +a los ||| just fertiliser but ||| 0.5 0.0064251 2.07417e-05 1.25888e-11 2.718 ||| 1-1 ||| 2 48212 +a los ||| just fertiliser ||| 0.5 0.0064251 2.07417e-05 1.84208e-08 2.718 ||| 1-1 ||| 2 48212 +a los ||| just pay lip-service to ||| 0.142857 0.00409398 2.07417e-05 1.83544e-13 2.718 ||| 0-3 ||| 7 48212 +a los ||| just the ||| 0.000922509 0.000197252 2.07417e-05 2.81824e-05 2.718 ||| 0-0 1-1 ||| 1084 48212 +a los ||| just to the ||| 0.0243902 0.0281035 4.14834e-05 0.000189588 2.718 ||| 0-1 1-2 ||| 82 48212 +a los ||| just ||| 3.47029e-05 2.87348e-05 2.07417e-05 6.57e-05 2.718 ||| 0-0 ||| 28816 48212 +a los ||| justice on the ||| 0.111111 0.00957523 2.07417e-05 6.49281e-07 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| justice to the ||| 0.00699301 0.0281035 2.07417e-05 5.99554e-06 2.718 ||| 0-1 1-2 ||| 143 48212 +a los ||| justifiably be demanded . in the case ||| 1 0.00718601 2.07417e-05 2.99707e-20 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| justifiably be demanded . in the ||| 1 0.00718601 2.07417e-05 2.80126e-17 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| justifications to the ||| 1 0.0281035 2.07417e-05 1.6529e-07 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| juvenile ||| 0.00952381 0.00303732 2.07417e-05 7.8e-06 2.718 ||| 1-0 ||| 105 48212 +a los ||| keep before the ||| 1 0.00248592 2.07417e-05 3.54407e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| keep hearing about the EUR ||| 1 0.00643683 2.07417e-05 2.36847e-15 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| keep hearing about the ||| 0.333333 0.00643683 2.07417e-05 8.8574e-12 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| keep in ||| 0.00729927 0.00104682 2.07417e-05 9.36085e-06 2.718 ||| 0-1 ||| 137 48212 +a los ||| keep pace with ||| 0.0126582 0.00101826 2.07417e-05 5.04613e-11 2.718 ||| 0-2 ||| 79 48212 +a los ||| keep the lid on ||| 1 0.00957523 2.07417e-05 4.56352e-12 2.718 ||| 1-1 0-3 ||| 1 48212 +a los ||| keep up with ||| 0.00980392 0.000180726 2.07417e-05 5.51432e-10 2.718 ||| 1-1 0-2 ||| 102 48212 +a los ||| kick-starts innovation in those regions that are ||| 1 0.01673 2.07417e-05 9.70549e-23 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| kick-starts innovation in those regions that ||| 1 0.01673 2.07417e-05 6.39668e-21 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| kick-starts innovation in those regions ||| 1 0.01673 2.07417e-05 3.80266e-19 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| kick-starts innovation in those ||| 1 0.01673 2.07417e-05 4.61487e-15 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| known offenders ||| 0.25 0.000224931 2.07417e-05 5.0646e-10 2.718 ||| 0-1 ||| 4 48212 +a los ||| known to the ||| 0.0188679 0.0281035 2.07417e-05 1.65441e-05 2.718 ||| 0-1 1-2 ||| 53 48212 +a los ||| label the ||| 0.0769231 0.00612862 2.07417e-05 5.8767e-06 2.718 ||| 1-1 ||| 13 48212 +a los ||| labelling and the ||| 0.0833333 0.00019411 2.07417e-05 1.1008e-08 2.718 ||| 0-1 1-2 ||| 12 48212 +a los ||| large-scale United States ||| 0.25 0.0005041 2.07417e-05 1.36094e-12 2.718 ||| 1-0 ||| 4 48212 +a los ||| large-scale United ||| 0.25 0.0005041 2.07417e-05 2.85192e-09 2.718 ||| 1-0 ||| 4 48212 +a los ||| large-scale ||| 0.00100806 0.0005041 2.07417e-05 2.33e-05 2.718 ||| 1-0 ||| 992 48212 +a los ||| last but not least , the ||| 0.0344828 0.00612862 2.07417e-05 6.39686e-15 2.718 ||| 1-5 ||| 29 48212 +a los ||| latter can replace the ||| 1 0.00089715 2.07417e-05 1.45904e-12 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| lawyers ||| 0.001221 0.0133113 2.07417e-05 0.0002771 2.718 ||| 1-0 ||| 819 48212 +a los ||| leaders ||| 0.000446229 0.0113447 4.14834e-05 0.0011084 2.718 ||| 1-0 ||| 4482 48212 +a los ||| leadership to ||| 0.04 0.00409398 2.07417e-05 5.81501e-06 2.718 ||| 0-1 ||| 25 48212 +a los ||| leading on the ||| 0.25 0.00957523 2.07417e-05 1.41735e-06 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| leads to a certain amount of frustration ||| 1 0.000454728 2.07417e-05 8.07684e-23 2.718 ||| 0-1 1-5 ||| 1 48212 +a los ||| leads to a certain amount of ||| 1 0.000454728 2.07417e-05 1.15383e-16 2.718 ||| 0-1 1-5 ||| 1 48212 +a los ||| least , the ||| 0.0075188 0.00612862 2.07417e-05 1.25535e-05 2.718 ||| 1-2 ||| 133 48212 +a los ||| leave the ||| 0.0033389 0.000392402 4.14834e-05 6.64882e-06 2.718 ||| 0-0 1-1 ||| 599 48212 +a los ||| leave this task to the ||| 1 0.0281035 2.07417e-05 1.16219e-11 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| leave to the ||| 0.125 0.0281035 2.07417e-05 1.42751e-05 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| leaving out the ||| 0.0666667 0.00840155 2.07417e-05 2.159e-07 2.718 ||| 0-0 1-2 ||| 15 48212 +a los ||| led the ||| 0.00340136 0.00310193 2.07417e-05 5.63649e-05 2.718 ||| 0-0 1-1 ||| 294 48212 +a los ||| left to the ||| 0.01 0.0281035 4.14834e-05 2.83849e-05 2.718 ||| 0-1 1-2 ||| 200 48212 +a los ||| legislation to the ||| 0.0625 0.0281035 2.07417e-05 1.20662e-05 2.718 ||| 0-1 1-2 ||| 16 48212 +a los ||| less than those ||| 0.0833333 0.00689761 2.07417e-05 3.57202e-09 2.718 ||| 0-1 1-2 ||| 12 48212 +a los ||| less than ||| 0.000353107 0.000431595 2.07417e-05 2.13924e-07 2.718 ||| 0-1 ||| 2832 48212 +a los ||| let the ||| 0.00496278 0.00033396 4.14834e-05 2.66382e-05 2.718 ||| 0-0 1-1 ||| 403 48212 +a los ||| let those of ||| 1 0.000777502 2.07417e-05 5.63712e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| let those ||| 0.0555556 0.000777502 2.07417e-05 1.03692e-06 2.718 ||| 0-0 1-1 ||| 18 48212 +a los ||| level , at ||| 0.142857 0.00363727 2.07417e-05 3.47197e-06 2.718 ||| 0-2 ||| 7 48212 +a los ||| level in ||| 0.00534759 0.00104682 2.07417e-05 5.13946e-05 2.718 ||| 0-1 ||| 187 48212 +a los ||| level to the ||| 0.142857 0.0281035 2.07417e-05 0.000128536 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| levels ||| 0.000664187 0.0111534 0.000103709 0.0019669 2.718 ||| 1-0 ||| 7528 48212 +a los ||| levied on a ||| 0.2 0.00139487 2.07417e-05 1.02573e-08 2.718 ||| 0-1 ||| 5 48212 +a los ||| levied on ||| 0.025641 0.00139487 2.07417e-05 2.31407e-07 2.718 ||| 0-1 ||| 39 48212 +a los ||| life to the ||| 0.0357143 0.0281035 2.07417e-05 2.2765e-05 2.718 ||| 0-1 1-2 ||| 28 48212 +a los ||| lifted on ||| 0.142857 0.00139487 2.07417e-05 5.04543e-07 2.718 ||| 0-1 ||| 7 48212 +a los ||| light of the ||| 0.000566251 0.00230489 2.07417e-05 2.20515e-06 2.718 ||| 0-1 1-2 ||| 1766 48212 +a los ||| like any ||| 0.00478469 0.000892658 2.07417e-05 1.64022e-06 2.718 ||| 1-1 ||| 209 48212 +a los ||| like the ||| 0.000315358 0.00612862 2.07417e-05 0.000761783 2.718 ||| 1-1 ||| 3171 48212 +a los ||| like those ||| 0.00373134 0.0142682 2.07417e-05 2.96533e-05 2.718 ||| 1-1 ||| 268 48212 +a los ||| like to extend my thanks ||| 0.333333 0.00198578 2.07417e-05 1.50051e-15 2.718 ||| 0-1 1-3 ||| 3 48212 +a los ||| like to extend my ||| 0.0769231 0.00198578 2.07417e-05 1.85248e-11 2.718 ||| 0-1 1-3 ||| 13 48212 +a los ||| like to mention the ||| 0.0294118 0.0281035 2.07417e-05 2.59382e-08 2.718 ||| 0-1 1-3 ||| 34 48212 +a los ||| like to see the ||| 0.027027 0.0281035 2.07417e-05 1.88025e-07 2.718 ||| 0-1 1-3 ||| 37 48212 +a los ||| like to thank the ||| 0.00487805 0.0281035 4.14834e-05 2.82332e-08 2.718 ||| 0-1 1-3 ||| 410 48212 +a los ||| like to ||| 0.0015949 0.00409398 0.000145192 0.000622101 2.718 ||| 0-1 ||| 4389 48212 +a los ||| likely to be the targets of the ||| 1 0.00230489 2.07417e-05 2.5346e-15 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| line with the ||| 0.0029274 0.00698995 0.000103709 2.10834e-06 2.718 ||| 0-1 1-2 ||| 1708 48212 +a los ||| line with those ||| 0.0212766 0.0162735 2.07417e-05 8.20693e-08 2.718 ||| 0-1 1-2 ||| 47 48212 +a los ||| line with ||| 0.000305437 0.00101826 2.07417e-05 4.91504e-06 2.718 ||| 0-1 ||| 3274 48212 +a los ||| lines of those ||| 0.0666667 0.0053661 2.07417e-05 4.4944e-08 2.718 ||| 0-1 1-2 ||| 15 48212 +a los ||| linked to the ||| 0.0020555 0.0281035 4.14834e-05 6.26601e-06 2.718 ||| 0-1 1-2 ||| 973 48212 +a los ||| links to the ||| 0.0333333 0.0281035 2.07417e-05 1.78814e-06 2.718 ||| 0-1 1-2 ||| 30 48212 +a los ||| lion 's share to the ||| 0.25 0.0281035 2.07417e-05 1.87494e-14 2.718 ||| 0-3 1-4 ||| 4 48212 +a los ||| lip-service to ||| 0.05 0.00409398 2.07417e-05 1.01587e-06 2.718 ||| 0-1 ||| 20 48212 +a los ||| list the ||| 0.0111111 0.00612862 2.07417e-05 3.13567e-05 2.718 ||| 1-1 ||| 90 48212 +a los ||| little closer to the ||| 0.25 0.0281035 2.07417e-05 5.18181e-09 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| living at the ||| 0.125 0.0249683 2.07417e-05 1.22345e-06 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| local authorities ||| 0.00074184 0.00095652 2.07417e-05 1.24942e-08 2.718 ||| 1-0 ||| 1348 48212 +a los ||| local ||| 0.00020202 3.02001e-05 4.14834e-05 0.0001011 2.718 ||| 0-0 1-0 ||| 9900 48212 +a los ||| lock up all the ||| 1 0.00238558 2.07417e-05 8.958e-12 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| long to see ||| 0.333333 0.00409398 2.07417e-05 8.35001e-08 2.718 ||| 0-1 ||| 3 48212 +a los ||| long to ||| 0.0102041 0.00409398 2.07417e-05 0.000118507 2.718 ||| 0-1 ||| 98 48212 +a los ||| longer be on the Committee , according ||| 1 0.00957523 2.07417e-05 8.90558e-17 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| longer be on the Committee , ||| 1 0.00957523 2.07417e-05 1.00628e-12 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| longer be on the Committee ||| 1 0.00957523 2.07417e-05 8.43808e-12 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| longer be on the ||| 1 0.00957523 2.07417e-05 5.52954e-08 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| longer be open to the ||| 1 0.0281035 2.07417e-05 8.23094e-11 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| look at our ||| 0.0169492 0.00507106 2.07417e-05 3.543e-08 2.718 ||| 0-1 1-2 ||| 59 48212 +a los ||| look at the ||| 0.000609756 0.0249683 2.07417e-05 4.25581e-06 2.718 ||| 0-1 1-2 ||| 1640 48212 +a los ||| look forward to ||| 0.00171527 0.00409398 2.07417e-05 5.68156e-08 2.718 ||| 0-2 ||| 583 48212 +a los ||| lost to the ||| 0.125 0.0281035 2.07417e-05 8.55003e-06 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| lot of the ||| 0.00900901 0.00117109 2.07417e-05 9.11293e-07 2.718 ||| 0-1 1-1 1-2 ||| 111 48212 +a los ||| lot to the ||| 0.25 0.0281035 2.07417e-05 1.94141e-05 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| lower ||| 0.000348311 0.000109769 2.07417e-05 8.8e-06 2.718 ||| 1-0 ||| 2871 48212 +a los ||| made about the ||| 0.0222222 0.00643683 2.07417e-05 4.5282e-06 2.718 ||| 0-1 1-2 ||| 45 48212 +a los ||| made as rapporteurs to our ||| 1 0.0057078 2.07417e-05 2.11252e-13 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| made by ||| 0.000251762 0.00060207 2.07417e-05 1.7235e-05 2.718 ||| 0-1 ||| 3972 48212 +a los ||| made for ||| 0.00275482 0.0012174 2.07417e-05 7.71902e-05 2.718 ||| 0-1 ||| 363 48212 +a los ||| made of the ||| 0.01875 0.00230489 6.22252e-05 2.65786e-05 2.718 ||| 0-1 1-2 ||| 160 48212 +a los ||| made redundant ||| 0.00318471 0.000895439 2.07417e-05 7.26896e-08 2.718 ||| 0-1 ||| 314 48212 +a los ||| made the ||| 0.00558659 0.00612862 8.29669e-05 0.000898578 2.718 ||| 1-1 ||| 716 48212 +a los ||| made to achieving the ||| 1 0.0281035 2.07417e-05 2.0838e-08 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| made to its ||| 0.333333 0.00485755 2.07417e-05 1.56676e-06 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| made to the ||| 0.0107527 0.0281035 0.000103709 0.000314773 2.718 ||| 0-1 1-2 ||| 465 48212 +a los ||| made to ||| 0.0012285 0.00409398 4.14834e-05 0.000733812 2.718 ||| 0-1 ||| 1628 48212 +a los ||| mainly benefit the ||| 0.125 0.00399027 2.07417e-05 5.55279e-09 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| mainly on the ||| 0.0119048 0.00612862 2.07417e-05 1.34323e-07 2.718 ||| 1-2 ||| 84 48212 +a los ||| mainly to the ||| 0.0121951 0.0281035 2.07417e-05 7.03236e-06 2.718 ||| 0-1 1-2 ||| 82 48212 +a los ||| mainly to those ||| 1 0.0654285 2.07417e-05 2.73742e-07 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| make cigarettes more attractive ||| 1 0.000844992 2.07417e-05 5.30376e-16 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| make cigarettes more ||| 1 0.000844992 2.07417e-05 4.91089e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| make cigarettes ||| 0.25 0.000844992 2.07417e-05 2.15041e-08 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| make it possible for ||| 0.00487805 0.000132158 2.07417e-05 8.08515e-11 2.718 ||| 1-2 0-3 ||| 205 48212 +a los ||| make one ||| 0.00487805 5.95453e-07 2.07417e-05 2.9667e-09 2.718 ||| 0-0 1-1 ||| 205 48212 +a los ||| make the ||| 0.00199005 0.000404092 0.00012445 7.71263e-05 2.718 ||| 0-0 1-1 ||| 3015 48212 +a los ||| make to the ||| 0.0348837 0.0281035 6.22252e-05 0.000261129 2.718 ||| 0-1 1-2 ||| 86 48212 +a los ||| make upon the ||| 0.333333 0.0233035 2.07417e-05 1.46964e-06 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| makers ||| 0.00813008 0.0123519 4.14834e-05 0.0001526 2.718 ||| 1-0 ||| 246 48212 +a los ||| makes to ||| 0.0294118 0.00409398 2.07417e-05 5.95162e-05 2.718 ||| 0-1 ||| 34 48212 +a los ||| making any living at the ||| 0.5 0.0249683 2.07417e-05 7.11737e-13 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| making the ||| 0.00347524 0.00336792 8.29669e-05 0.000195776 2.718 ||| 0-0 1-1 ||| 1151 48212 +a los ||| making them pay extra to watch these ||| 1 0.00552379 2.07417e-05 5.63248e-23 2.718 ||| 0-4 1-6 ||| 1 48212 +a los ||| making to the ||| 0.111111 0.0281035 2.07417e-05 5.78066e-05 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| maltreated the ||| 0.5 0.0141103 2.07417e-05 1.15818e-06 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| man in the ||| 0.0227273 0.00718601 2.07417e-05 1.64173e-06 2.718 ||| 0-1 1-2 ||| 44 48212 +a los ||| many of the ||| 0.000419639 0.00230489 2.07417e-05 4.35575e-06 2.718 ||| 0-1 1-2 ||| 2383 48212 +a los ||| many people ||| 0.000504796 0.000150232 2.07417e-05 1.24108e-07 2.718 ||| 1-0 ||| 1981 48212 +a los ||| many ||| 8.54719e-05 0.000150232 8.29669e-05 0.000141 2.718 ||| 1-0 ||| 46799 48212 +a los ||| marginalised by the Algerian ||| 1 0.00413296 2.07417e-05 1.58816e-14 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| marginalised by the ||| 0.5 0.00413296 2.07417e-05 8.82309e-09 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| marginalization of the ||| 0.0909091 0.00230489 2.07417e-05 5.07515e-09 2.718 ||| 0-1 1-2 ||| 11 48212 +a los ||| market of the ||| 0.0416667 0.00230489 2.07417e-05 2.86746e-06 2.718 ||| 0-1 1-2 ||| 24 48212 +a los ||| markets to the ||| 0.0714286 0.0281035 2.07417e-05 4.22242e-06 2.718 ||| 0-1 1-2 ||| 14 48212 +a los ||| marking to the ||| 1 0.0281035 2.07417e-05 1.0819e-06 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| masters ' ||| 0.25 0.00377617 2.07417e-05 8.77668e-08 2.718 ||| 1-0 1-1 ||| 4 48212 +a los ||| matter , the ||| 0.011236 0.00612862 2.07417e-05 5.30734e-05 2.718 ||| 1-2 ||| 89 48212 +a los ||| matter for the ||| 0.00634249 0.00835696 6.22252e-05 1.63991e-05 2.718 ||| 0-1 1-2 ||| 473 48212 +a los ||| matter for those ||| 0.25 0.0194561 2.07417e-05 6.38355e-07 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| matter of ||| 0.000244499 0.000335766 2.07417e-05 3.06877e-05 2.718 ||| 0-1 ||| 4090 48212 +a los ||| me list the ||| 0.25 0.00612862 2.07417e-05 1.88799e-08 2.718 ||| 1-2 ||| 4 48212 +a los ||| mean reaching for our ||| 1 0.00314855 2.07417e-05 1.37101e-11 2.718 ||| 0-1 0-2 1-3 ||| 1 48212 +a los ||| mean that the ||| 0.0026738 0.00612862 2.07417e-05 1.85949e-06 2.718 ||| 1-2 ||| 374 48212 +a los ||| means of the ||| 0.0026178 0.00230489 2.07417e-05 8.04031e-06 2.718 ||| 0-1 1-2 ||| 382 48212 +a los ||| means the ||| 0.00294985 0.00612862 2.07417e-05 0.00027183 2.718 ||| 1-1 ||| 339 48212 +a los ||| measures ||| 2.38966e-05 2.34041e-06 2.07417e-05 1.9e-06 2.718 ||| 1-0 ||| 41847 48212 +a los ||| medicines ||| 0.00043956 0.0120748 2.07417e-05 0.0006592 2.718 ||| 1-0 ||| 2275 48212 +a los ||| meet anyone else ||| 0.5 0.000657018 2.07417e-05 4.07725e-13 2.718 ||| 1-2 ||| 2 48212 +a los ||| meet the ||| 0.000827472 0.00589643 4.14834e-05 0.000168365 2.718 ||| 0-0 1-1 ||| 2417 48212 +a los ||| meet with ||| 0.00304878 0.000153827 2.07417e-05 3.88996e-07 2.718 ||| 1-0 0-1 ||| 328 48212 +a los ||| meets ||| 0.000926784 0.00117678 2.07417e-05 8.58e-05 2.718 ||| 0-0 ||| 1079 48212 +a los ||| member ||| 0.000133958 0.000198288 2.07417e-05 3.01e-05 2.718 ||| 1-0 ||| 7465 48212 +a los ||| members at ||| 0.0769231 0.0315684 2.07417e-05 6.75739e-05 2.718 ||| 1-0 0-1 ||| 13 48212 +a los ||| members from the ||| 0.0357143 0.0053267 2.07417e-05 4.55476e-07 2.718 ||| 0-1 1-2 ||| 28 48212 +a los ||| members of the ||| 0.000992064 0.00230489 8.29669e-05 1.87146e-06 2.718 ||| 0-1 1-2 ||| 4032 48212 +a los ||| members of ||| 0.00022553 0.00774865 2.07417e-05 0.000107934 2.718 ||| 1-0 ||| 4434 48212 +a los ||| members some ||| 0.5 0.00774865 2.07417e-05 2.1627e-06 2.718 ||| 1-0 ||| 2 48212 +a los ||| members will be ||| 0.0588235 0.00774865 2.07417e-05 3.11281e-07 2.718 ||| 1-0 ||| 17 48212 +a los ||| members will ||| 0.037037 0.00774865 2.07417e-05 1.71761e-05 2.718 ||| 1-0 ||| 27 48212 +a los ||| members ||| 0.000634748 0.00774865 0.000145192 0.0019854 2.718 ||| 1-0 ||| 11028 48212 +a los ||| men ||| 0.000168124 0.0108571 2.07417e-05 0.0015974 2.718 ||| 1-0 ||| 5948 48212 +a los ||| menaces the ||| 0.5 0.0611446 2.07417e-05 1.58714e-06 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| message to the ||| 0.0153846 0.0281035 8.29669e-05 7.24273e-06 2.718 ||| 0-1 1-2 ||| 260 48212 +a los ||| messages - ||| 0.166667 0.00317123 2.07417e-05 2.23686e-07 2.718 ||| 1-0 ||| 6 48212 +a los ||| messages ||| 0.0010929 0.00317123 2.07417e-05 5.93e-05 2.718 ||| 1-0 ||| 915 48212 +a los ||| met by the ||| 0.0263158 0.00612862 2.07417e-05 1.72733e-07 2.718 ||| 1-2 ||| 38 48212 +a los ||| met by ||| 0.00591716 0.00060207 2.07417e-05 6.31049e-07 2.718 ||| 0-1 ||| 169 48212 +a los ||| methods ||| 0.000191095 0.00786421 2.07417e-05 0.0007749 2.718 ||| 1-0 ||| 5233 48212 +a los ||| middle to ||| 0.142857 0.00409398 2.07417e-05 7.18118e-06 2.718 ||| 0-1 ||| 7 48212 +a los ||| might be to the ||| 0.333333 0.0281035 2.07417e-05 1.04572e-06 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| might disagree with ||| 0.25 0.00101826 2.07417e-05 5.06463e-11 2.718 ||| 0-2 ||| 4 48212 +a los ||| might refer to the ||| 1 0.0281035 2.07417e-05 4.50648e-09 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| might revert to the ||| 1 0.0281035 2.07417e-05 1.03863e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| might spread to ||| 0.5 0.00409398 2.07417e-05 3.82025e-09 2.718 ||| 0-2 ||| 2 48212 +a los ||| migrate to the ||| 0.0833333 0.0281035 2.07417e-05 1.05185e-07 2.718 ||| 0-1 1-2 ||| 12 48212 +a los ||| militants with ||| 0.5 0.0146221 2.07417e-05 3.57275e-07 2.718 ||| 1-0 0-1 ||| 2 48212 +a los ||| minds away from those ||| 1 0.0124013 2.07417e-05 1.83153e-12 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| minds of our ||| 0.0454545 0.000468123 2.07417e-05 5.05957e-09 2.718 ||| 0-1 1-2 ||| 22 48212 +a los ||| minds to ||| 0.0454545 0.00409398 2.07417e-05 1.67794e-05 2.718 ||| 0-1 ||| 22 48212 +a los ||| minimum ||| 0.00017094 9.85627e-05 2.07417e-05 1.07e-05 2.718 ||| 1-0 ||| 5850 48212 +a los ||| minors can ||| 0.125 0.0171893 2.07417e-05 1.26675e-06 2.718 ||| 1-0 ||| 8 48212 +a los ||| minors ||| 0.00113895 0.0171893 2.07417e-05 0.0004259 2.718 ||| 1-0 ||| 878 48212 +a los ||| mislead the ||| 0.0263158 0.0414989 2.07417e-05 3.68045e-05 2.718 ||| 0-0 1-1 ||| 38 48212 +a los ||| mistake the ||| 0.1 0.00612862 2.07417e-05 7.8928e-06 2.718 ||| 1-1 ||| 10 48212 +a los ||| misuse ||| 0.00186567 0.00109244 2.07417e-05 1.56e-05 2.718 ||| 1-0 ||| 536 48212 +a los ||| modern camera ||| 0.0833333 0.00065129 2.07417e-05 2.653e-11 2.718 ||| 1-0 ||| 12 48212 +a los ||| modern times ||| 0.0123457 0.00065129 2.07417e-05 3.84685e-09 2.718 ||| 1-0 ||| 81 48212 +a los ||| modern ||| 0.000645578 0.00065129 4.14834e-05 3.79e-05 2.718 ||| 1-0 ||| 3098 48212 +a los ||| modified ||| 0.000650618 0.00367341 2.07417e-05 0.0001361 2.718 ||| 1-0 ||| 1537 48212 +a los ||| monetary union , but economic and social ||| 1 1.50506e-06 2.07417e-05 5.23467e-25 2.718 ||| 0-3 1-6 ||| 1 48212 +a los ||| money by the ||| 0.5 0.00413296 2.07417e-05 5.76677e-07 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| money on to the ||| 1 0.0188393 2.07417e-05 9.31438e-07 2.718 ||| 0-1 0-2 1-3 ||| 1 48212 +a los ||| more acute ||| 0.0125 0.000248509 2.07417e-05 6.62273e-09 2.718 ||| 1-1 ||| 80 48212 +a los ||| more closely with the ||| 0.0208333 0.00698995 2.07417e-05 1.44739e-09 2.718 ||| 0-2 1-3 ||| 48 48212 +a los ||| more on the ||| 0.00714286 0.00957523 2.07417e-05 3.7162e-05 2.718 ||| 0-1 1-2 ||| 140 48212 +a los ||| more on this ||| 0.04 2.31689e-05 2.07417e-05 1.31423e-08 2.718 ||| 0-1 1-2 ||| 25 48212 +a los ||| more power to the ||| 0.04 0.0281035 2.07417e-05 5.12335e-08 2.718 ||| 0-2 1-3 ||| 25 48212 +a los ||| more than happy to grant the ||| 0.25 0.0281035 2.07417e-05 2.09366e-16 2.718 ||| 0-3 1-5 ||| 4 48212 +a los ||| more than the ||| 0.00232558 0.00296272 2.07417e-05 1.23127e-06 2.718 ||| 0-1 1-2 ||| 430 48212 +a los ||| more to promote the ||| 0.2 0.0281035 2.07417e-05 2.19964e-08 2.718 ||| 0-1 1-3 ||| 5 48212 +a los ||| most of the ||| 0.000457038 0.00230489 2.07417e-05 5.4837e-06 2.718 ||| 0-1 1-2 ||| 2188 48212 +a los ||| motivated by ||| 0.00581395 0.00060207 2.07417e-05 9.46162e-08 2.718 ||| 0-1 ||| 172 48212 +a los ||| motorised ||| 0.04 0.0100232 2.07417e-05 5.8e-06 2.718 ||| 1-0 ||| 25 48212 +a los ||| move both ||| 0.5 0.00176695 2.07417e-05 1.83144e-07 2.718 ||| 1-1 ||| 2 48212 +a los ||| move into other ||| 1 0.000414047 2.07417e-05 2.63675e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| move towards the ||| 0.0107527 0.0190168 2.07417e-05 2.212e-07 2.718 ||| 0-1 1-2 ||| 93 48212 +a los ||| movement towards the ||| 0.1 0.0190168 2.07417e-05 6.351e-08 2.718 ||| 0-1 1-2 ||| 10 48212 +a los ||| movements ||| 0.000719942 0.013312 2.07417e-05 0.0004297 2.718 ||| 1-0 ||| 1389 48212 +a los ||| moving in the ||| 0.00787402 0.00718601 2.07417e-05 1.5309e-06 2.718 ||| 0-1 1-2 ||| 127 48212 +a los ||| moving towards those ||| 0.5 0.0442737 2.07417e-05 3.34507e-09 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| much about the ||| 0.0526316 0.00643683 2.07417e-05 2.16964e-06 2.718 ||| 0-1 1-2 ||| 19 48212 +a los ||| much as of the ||| 1 0.00230489 2.07417e-05 1.29951e-07 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| much importance to people ||| 1 0.0205606 2.07417e-05 3.59685e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| much in the ||| 0.0105263 0.00718601 2.07417e-05 2.58681e-05 2.718 ||| 0-1 1-2 ||| 95 48212 +a los ||| much to the ||| 0.0483871 0.0281035 6.22252e-05 0.00015082 2.718 ||| 0-1 1-2 ||| 62 48212 +a los ||| murdered in ||| 0.0140845 0.00104682 2.07417e-05 2.82388e-07 2.718 ||| 0-1 ||| 71 48212 +a los ||| must prevent the ' ||| 0.125 0.00612862 2.07417e-05 1.16371e-10 2.718 ||| 1-2 ||| 8 48212 +a los ||| must prevent the ||| 0.0714286 0.00612862 2.07417e-05 3.3879e-08 2.718 ||| 1-2 ||| 14 48212 +a los ||| must the people ||| 1 0.000972517 2.07417e-05 4.3572e-07 2.718 ||| 1-1 0-2 ||| 1 48212 +a los ||| my fellow MEPs ||| 0.00438596 0.00764494 2.07417e-05 6.61768e-11 2.718 ||| 1-2 ||| 228 48212 +a los ||| my fellow ||| 0.000669344 1.88337e-05 2.07417e-05 9.44341e-09 2.718 ||| 1-0 0-1 ||| 1494 48212 +a los ||| my sincerest appreciation ||| 0.333333 0.000433046 2.07417e-05 9.85699e-15 2.718 ||| 1-0 ||| 3 48212 +a los ||| my sincerest ||| 0.02 0.000433046 2.07417e-05 7.5823e-10 2.718 ||| 1-0 ||| 50 48212 +a los ||| my voice to those of other ||| 1 0.00198578 2.07417e-05 5.35657e-16 2.718 ||| 1-0 0-2 ||| 1 48212 +a los ||| my voice to those of ||| 0.142857 0.00198578 4.14834e-05 8.8956e-12 2.718 ||| 0-2 1-3 ||| 14 48212 +a los ||| my voice to those ||| 0.0540541 0.00198578 4.14834e-05 1.6363e-10 2.718 ||| 0-2 1-3 ||| 37 48212 +a los ||| my voice to ||| 0.00787402 0.00198578 2.07417e-05 1.05036e-08 2.718 ||| 1-0 0-2 ||| 127 48212 +a los ||| my ||| 0.000140667 0.000433046 0.000228159 0.0006893 2.718 ||| 1-0 ||| 78199 48212 +a los ||| myself among the ||| 0.5 0.0016448 2.07417e-05 9.07157e-09 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| myself to the ||| 0.111111 0.0281035 2.07417e-05 2.33661e-05 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| namely the ||| 0.00052687 0.0196652 2.07417e-05 0.000750545 2.718 ||| 0-0 1-1 ||| 1898 48212 +a los ||| narrow in its ||| 0.5 0.00124207 2.07417e-05 9.74944e-10 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| nation ||| 0.000984737 0.000622854 4.14834e-05 2.53e-05 2.718 ||| 1-0 ||| 2031 48212 +a los ||| national governments ||| 0.000701754 0.0137013 2.07417e-05 4.57396e-07 2.718 ||| 1-1 ||| 1425 48212 +a los ||| national ||| 0.000140119 0.000650759 0.000103709 0.0004278 2.718 ||| 1-0 ||| 35684 48212 +a los ||| nationals ||| 0.000457247 0.0143919 2.07417e-05 0.0007379 2.718 ||| 1-0 ||| 2187 48212 +a los ||| naturalisation for those ||| 1 0.0194561 2.07417e-05 4.30697e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| nearer to the ||| 0.0714286 0.0281035 2.07417e-05 6.46136e-07 2.718 ||| 0-1 1-2 ||| 14 48212 +a los ||| necessary to ||| 0.000242014 0.00409398 2.07417e-05 9.01326e-05 2.718 ||| 0-1 ||| 4132 48212 +a los ||| need access to ||| 0.0416667 0.00409398 2.07417e-05 2.76225e-08 2.718 ||| 0-2 ||| 24 48212 +a los ||| need to ||| 5.52822e-05 0.00409398 2.07417e-05 0.000321192 2.718 ||| 0-1 ||| 18089 48212 +a los ||| needed from the ||| 0.0588235 0.0053267 2.07417e-05 4.13479e-07 2.718 ||| 0-1 1-2 ||| 17 48212 +a los ||| needs in relation to the ||| 0.5 0.0281035 2.07417e-05 1.55176e-10 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| negotiated settlements ||| 0.142857 0.00991472 2.07417e-05 8.086e-10 2.718 ||| 1-1 ||| 7 48212 +a los ||| negotiations with ||| 0.00059312 0.00101826 2.07417e-05 9.24909e-07 2.718 ||| 0-1 ||| 1686 48212 +a los ||| neighbouring country to the ||| 0.333333 0.0281035 2.07417e-05 3.29888e-10 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| network of the ||| 0.0909091 0.00230489 2.07417e-05 3.1466e-07 2.718 ||| 0-1 1-2 ||| 11 48212 +a los ||| new ||| 1.4073e-05 2.9448e-05 2.07417e-05 3.89e-05 2.718 ||| 1-0 ||| 71058 48212 +a los ||| newcomers ||| 0.00884956 0.00931905 2.07417e-05 4.38e-05 2.718 ||| 1-0 ||| 113 48212 +a los ||| no interest in any debate . they ||| 1 0.00104667 2.07417e-05 9.49095e-21 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| no interest in any debate . ||| 1 0.00104667 2.07417e-05 2.90777e-18 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| no interest in any debate ||| 1 0.00104667 2.07417e-05 9.59976e-16 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| no interest in any ||| 1 0.00104667 2.07417e-05 4.85081e-12 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| no longer be on the Committee , ||| 1 0.00957523 2.07417e-05 7.83289e-16 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| no longer be on the Committee ||| 1 0.00957523 2.07417e-05 6.5682e-15 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| no longer be on the ||| 1 0.00957523 2.07417e-05 4.30419e-11 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| no longer be open to the ||| 1 0.0281035 2.07417e-05 6.40696e-14 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| no to the ||| 0.0123457 0.0281035 2.07417e-05 0.000116966 2.718 ||| 0-1 1-2 ||| 81 48212 +a los ||| noise ||| 0.000668003 0.00106733 2.07417e-05 4.28e-05 2.718 ||| 1-0 ||| 1497 48212 +a los ||| none in the ||| 0.166667 0.00718601 2.07417e-05 5.10301e-07 2.718 ||| 0-1 1-2 ||| 6 48212 +a los ||| none other than the ||| 0.0454545 0.00296272 2.07417e-05 1.38298e-11 2.718 ||| 0-2 1-3 ||| 22 48212 +a los ||| nor excuse those ||| 0.5 0.0142682 2.07417e-05 1.63757e-11 2.718 ||| 1-2 ||| 2 48212 +a los ||| nor the ||| 0.000978474 0.00612862 2.07417e-05 2.28634e-05 2.718 ||| 1-1 ||| 1022 48212 +a los ||| nose at the ||| 0.5 0.0249683 2.07417e-05 8.90582e-08 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| not accord with the ||| 0.5 0.00698995 2.07417e-05 3.34965e-10 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| not forgetting the ||| 0.0151515 0.00612862 2.07417e-05 4.24705e-09 2.718 ||| 1-2 ||| 66 48212 +a los ||| not have the proper identity ||| 0.5 0.00612862 2.07417e-05 3.13118e-14 2.718 ||| 1-2 ||| 2 48212 +a los ||| not have the proper ||| 0.5 0.00612862 2.07417e-05 1.55009e-09 2.718 ||| 1-2 ||| 2 48212 +a los ||| not have the ||| 0.00671141 0.00612862 2.07417e-05 1.75151e-05 2.718 ||| 1-2 ||| 149 48212 +a los ||| not in the ||| 0.00253165 0.00718601 2.07417e-05 8.79908e-05 2.718 ||| 0-1 1-2 ||| 395 48212 +a los ||| not involve those ||| 1 0.0485418 2.07417e-05 3.89702e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| not just fertiliser but ||| 0.5 0.0064251 2.07417e-05 4.29794e-14 2.718 ||| 1-2 ||| 2 48212 +a los ||| not just fertiliser ||| 0.5 0.0064251 2.07417e-05 6.28905e-11 2.718 ||| 1-2 ||| 2 48212 +a los ||| not least , the ||| 0.0102041 0.00612862 2.07417e-05 4.28587e-08 2.718 ||| 1-3 ||| 98 48212 +a los ||| not the ||| 0.000324254 0.00612862 2.07417e-05 0.0014645 2.718 ||| 1-1 ||| 3084 48212 +a los ||| not to eliminate the ||| 0.25 0.0281035 2.07417e-05 5.89969e-09 2.718 ||| 0-1 1-3 ||| 4 48212 +a los ||| not to flood ||| 1 0.0111442 2.07417e-05 4.30547e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| not to the ||| 0.00471698 0.0281035 2.07417e-05 0.000513017 2.718 ||| 0-1 1-2 ||| 212 48212 +a los ||| not to those ||| 0.142857 0.0654285 2.07417e-05 1.99697e-05 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| not to ||| 0.000132135 0.00409398 2.07417e-05 0.00119596 2.718 ||| 0-1 ||| 7568 48212 +a los ||| note that the ||| 0.00348432 0.00612862 2.07417e-05 7.53322e-07 2.718 ||| 1-2 ||| 287 48212 +a los ||| number of ||| 5.16609e-05 0.000335766 2.07417e-05 1.46354e-05 2.718 ||| 0-1 ||| 19357 48212 +a los ||| numbers in the ||| 0.0833333 0.00718601 2.07417e-05 1.26029e-06 2.718 ||| 0-1 1-2 ||| 12 48212 +a los ||| objectives from ||| 0.0909091 0.0025783 2.07417e-05 5.6201e-06 2.718 ||| 1-0 0-1 ||| 11 48212 +a los ||| obligations towards the ||| 0.0769231 0.0190168 2.07417e-05 1.92411e-08 2.718 ||| 0-1 1-2 ||| 13 48212 +a los ||| obliged I am to them ||| 1 0.00878293 2.07417e-05 2.42728e-13 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| obstacle to those ||| 0.333333 0.0654285 2.07417e-05 3.39253e-08 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| obstructing ||| 0.00877193 0.00075933 2.07417e-05 1.9e-06 2.718 ||| 1-0 ||| 114 48212 +a los ||| obvious to the ||| 0.125 0.0281035 2.07417e-05 6.26601e-06 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| obviously , to the ||| 0.25 0.0281035 2.07417e-05 1.18628e-06 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| of , ||| 0.00112994 0.000335766 2.07417e-05 0.00352738 2.718 ||| 0-0 ||| 885 48212 +a los ||| of Certain Public ||| 0.333333 0.000335766 2.07417e-05 3.47814e-12 2.718 ||| 0-0 ||| 3 48212 +a los ||| of Certain ||| 0.125 0.000335766 2.07417e-05 3.25364e-08 2.718 ||| 0-0 ||| 8 48212 +a los ||| of EUR ||| 0.0143149 0.000646964 0.000145192 1.68804e-05 2.718 ||| 0-0 1-1 ||| 489 48212 +a los ||| of Employment of ||| 0.0625 0.000335766 2.07417e-05 1.67233e-08 2.718 ||| 0-0 ||| 16 48212 +a los ||| of Employment ||| 0.0526316 0.000335766 2.07417e-05 3.07616e-07 2.718 ||| 0-0 ||| 19 48212 +a los ||| of Good ||| 0.027027 3.72943e-05 2.07417e-05 1.80874e-08 2.718 ||| 0-0 1-0 ||| 37 48212 +a los ||| of Parliament ||| 0.000192493 0.000335766 2.07417e-05 1.69781e-05 2.718 ||| 0-0 ||| 5195 48212 +a los ||| of a ||| 0.000140542 0.000335766 0.00012445 0.00131109 2.718 ||| 0-0 ||| 42692 48212 +a los ||| of accounts of ||| 0.25 5.72505e-05 2.07417e-05 7.69901e-09 2.718 ||| 0-0 1-1 0-2 ||| 4 48212 +a los ||| of achieving ||| 0.00110865 1.02061e-05 2.07417e-05 8.57777e-08 2.718 ||| 0-0 1-1 ||| 902 48212 +a los ||| of aid to the ||| 0.0204082 0.0281035 2.07417e-05 1.06687e-06 2.718 ||| 0-2 1-3 ||| 49 48212 +a los ||| of all , to the ||| 0.2 0.0281035 2.07417e-05 4.60342e-06 2.718 ||| 0-3 1-4 ||| 5 48212 +a los ||| of all the ||| 0.00147765 0.00230489 8.29669e-05 5.99553e-05 2.718 ||| 0-0 1-2 ||| 2707 48212 +a los ||| of all those ||| 0.00598802 0.00285073 4.14834e-05 1.32772e-06 2.718 ||| 0-0 1-1 1-2 ||| 334 48212 +a los ||| of all to ||| 0.00699301 0.00409398 2.07417e-05 8.99896e-05 2.718 ||| 0-2 ||| 143 48212 +a los ||| of all ||| 0.000910954 0.000335357 0.000248901 7.95159e-05 2.718 ||| 0-0 1-1 ||| 13173 48212 +a los ||| of animal ||| 0.00769231 0.00326661 2.07417e-05 4.19867e-05 2.718 ||| 0-0 1-1 ||| 130 48212 +a los ||| of any additional cash subsidy ||| 1 0.000571148 2.07417e-05 2.98371e-19 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| of any additional cash ||| 1 0.000571148 2.07417e-05 4.59032e-14 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| of any ||| 0.000651042 0.000335717 4.14834e-05 2.73187e-05 2.718 ||| 0-0 1-1 ||| 3072 48212 +a los ||| of arable ||| 0.142857 0.00150497 2.07417e-05 6.03401e-07 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| of as much as ||| 0.0769231 1.75229e-05 2.07417e-05 1.08092e-10 2.718 ||| 0-0 1-3 ||| 13 48212 +a los ||| of basic ||| 0.015873 0.000111218 2.07417e-05 1.35174e-06 2.718 ||| 0-0 1-1 ||| 63 48212 +a los ||| of both the ||| 0.00668151 0.00240883 6.22252e-05 8.31564e-06 2.718 ||| 0-0 0-1 1-2 ||| 449 48212 +a los ||| of both ||| 0.00213789 0.000664528 8.29669e-05 3.54291e-05 2.718 ||| 0-0 1-1 ||| 1871 48212 +a los ||| of central ||| 0.0140845 0.000119603 2.07417e-05 9.79048e-07 2.718 ||| 0-0 1-1 ||| 71 48212 +a los ||| of citizens living ||| 0.125 0.00553321 2.07417e-05 3.75202e-08 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| of citizens ||| 0.000533333 0.00553321 2.07417e-05 0.000447736 2.718 ||| 0-0 1-1 ||| 1875 48212 +a los ||| of course , ||| 6.83107e-05 0.000335766 2.07417e-05 4.45049e-06 2.718 ||| 0-0 ||| 14639 48212 +a los ||| of course ||| 3.64963e-05 0.000335766 2.07417e-05 3.73192e-05 2.718 ||| 0-0 ||| 27400 48212 +a los ||| of data ||| 0.000925069 0.00307071 2.07417e-05 6.12837e-05 2.718 ||| 0-0 1-1 ||| 1081 48212 +a los ||| of eating ||| 0.0454545 0.000602811 2.07417e-05 4.31846e-07 2.718 ||| 0-0 1-1 ||| 22 48212 +a los ||| of either the ||| 0.0277778 0.00230489 2.07417e-05 1.09852e-05 2.718 ||| 0-0 1-2 ||| 36 48212 +a los ||| of emission ||| 0.04 0.000747393 2.07417e-05 3.16194e-06 2.718 ||| 0-0 1-1 ||| 25 48212 +a los ||| of employment of ||| 0.0555556 3.72943e-05 2.07417e-05 4.78408e-09 2.718 ||| 0-0 1-2 ||| 18 48212 +a los ||| of events might ||| 0.166667 0.0026405 2.07417e-05 1.23236e-08 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| of events ||| 0.00221729 0.0026405 2.07417e-05 3.20927e-05 2.718 ||| 0-0 1-1 ||| 451 48212 +a los ||| of everybody ||| 0.0181818 0.00124998 2.07417e-05 5.49273e-06 2.718 ||| 0-0 1-1 ||| 55 48212 +a los ||| of everyone ||| 0.00357143 0.00151245 2.07417e-05 3.05132e-05 2.718 ||| 0-0 1-1 ||| 280 48212 +a los ||| of existing ||| 0.00689655 0.000875594 2.07417e-05 1.27986e-05 2.718 ||| 0-0 1-1 ||| 145 48212 +a los ||| of fat profits ||| 0.111111 0.00300095 2.07417e-05 2.6384e-11 2.718 ||| 0-0 1-2 ||| 9 48212 +a los ||| of followers of the ||| 0.333333 0.00230489 2.07417e-05 4.82835e-10 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| of forcing people ||| 1 0.0300317 2.07417e-05 1.12171e-07 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| of freedom ||| 0.000425351 0.000335766 2.07417e-05 2.52305e-06 2.718 ||| 0-0 ||| 2351 48212 +a los ||| of fundamental ||| 0.00904977 0.00177562 4.14834e-05 4.38265e-05 2.718 ||| 0-0 1-1 ||| 221 48212 +a los ||| of individual ||| 0.00465116 0.00207988 6.22252e-05 3.80172e-05 2.718 ||| 0-0 1-1 ||| 645 48212 +a los ||| of its ability the ||| 1 0.00230489 2.07417e-05 8.33323e-10 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| of its ||| 0.000932053 0.00039839 0.000207417 6.31531e-05 2.718 ||| 0-0 1-1 ||| 10729 48212 +a los ||| of least-developed , ||| 1 0.00187308 2.07417e-05 1.09701e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| of least-developed ||| 1 0.00187308 2.07417e-05 9.19891e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| of legislation to the ||| 0.5 0.0281035 2.07417e-05 6.55967e-07 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| of local ||| 0.0105263 0.000359735 2.07417e-05 5.54893e-06 2.718 ||| 0-0 1-1 ||| 95 48212 +a los ||| of male and female ||| 0.25 0.0010845 2.07417e-05 1.92244e-13 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| of male and ||| 0.25 0.0010845 2.07417e-05 1.0448e-08 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| of male ||| 0.0666667 0.0010845 2.07417e-05 8.34114e-07 2.718 ||| 0-0 1-1 ||| 15 48212 +a los ||| of many of the ||| 0.00990099 0.00230489 2.07417e-05 2.36796e-07 2.718 ||| 0-2 1-3 ||| 101 48212 +a los ||| of medicines ||| 0.00338983 0.00454118 2.07417e-05 1.94981e-05 2.718 ||| 0-0 1-1 ||| 295 48212 +a los ||| of money by the ||| 0.5 0.00413296 2.07417e-05 3.13505e-08 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| of naturalisation for those ||| 1 0.0194561 2.07417e-05 2.34144e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| of needs in relation to the ||| 1 0.0281035 2.07417e-05 8.436e-12 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| of oil - ||| 0.166667 0.000171192 2.07417e-05 7.69854e-09 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| of oil ||| 0.00196078 0.000171192 2.07417e-05 2.04092e-06 2.718 ||| 0-0 1-1 ||| 510 48212 +a los ||| of one country against the ||| 1 0.00230489 2.07417e-05 4.54118e-12 2.718 ||| 0-0 1-4 ||| 1 48212 +a los ||| of our own countries ||| 0.047619 0.000468123 2.07417e-05 6.79932e-11 2.718 ||| 0-0 1-1 ||| 21 48212 +a los ||| of our own ||| 0.00207469 0.000468123 2.07417e-05 1.79071e-07 2.718 ||| 0-0 1-1 ||| 482 48212 +a los ||| of our ||| 0.000686499 0.000468123 0.000311126 0.000105628 2.718 ||| 0-0 1-1 ||| 21850 48212 +a los ||| of overcoming the ||| 0.027027 0.00230489 2.07417e-05 3.67949e-08 2.718 ||| 0-0 1-2 ||| 37 48212 +a los ||| of parliament , ||| 0.0384615 0.000335766 2.07417e-05 8.50097e-08 2.718 ||| 0-0 ||| 26 48212 +a los ||| of parliament ||| 0.00694444 0.000335766 2.07417e-05 7.12842e-07 2.718 ||| 0-0 ||| 144 48212 +a los ||| of parliaments ||| 0.0138889 0.0050743 2.07417e-05 4.21878e-05 2.718 ||| 0-0 1-1 ||| 72 48212 +a los ||| of people ||| 0.000372648 0.00168627 4.14834e-05 0.00023294 2.718 ||| 0-0 1-1 ||| 5367 48212 +a los ||| of persuading the ||| 0.111111 0.0221163 2.07417e-05 9.73161e-07 2.718 ||| 0-0 0-1 1-2 ||| 9 48212 +a los ||| of pesticide ||| 0.0769231 0.00247498 2.07417e-05 1.49667e-06 2.718 ||| 0-0 1-1 ||| 13 48212 +a los ||| of positive ||| 0.0138889 3.96183e-06 2.07417e-05 8.57777e-08 2.718 ||| 0-0 1-1 ||| 72 48212 +a los ||| of principles - , the ||| 1 0.00230489 2.07417e-05 2.30013e-10 2.718 ||| 0-0 1-4 ||| 1 48212 +a los ||| of problems ||| 0.00143885 0.00200257 2.07417e-05 9.07025e-05 2.718 ||| 0-0 1-1 ||| 695 48212 +a los ||| of producer ||| 0.0714286 0.00126787 2.07417e-05 2.35741e-06 2.718 ||| 0-0 1-1 ||| 14 48212 +a los ||| of rating the ||| 0.5 0.00230489 2.07417e-05 9.13528e-08 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| of storm ||| 0.0588235 0.000202666 2.07417e-05 1.15356e-07 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| of supporting the ||| 0.00740741 0.0128079 2.07417e-05 1.45454e-05 2.718 ||| 0-0 0-1 1-2 ||| 135 48212 +a los ||| of tax ||| 0.0110701 0.0011524 6.22252e-05 1.99862e-05 2.718 ||| 0-0 1-1 ||| 271 48212 +a los ||| of the Committee ||| 0.00010337 0.00230489 2.07417e-05 1.93617e-06 2.718 ||| 0-0 1-1 ||| 9674 48212 +a los ||| of the Conditions of Employment ||| 0.333333 0.00230489 2.07417e-05 1.57818e-14 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| of the Conditions of ||| 0.333333 0.00230489 2.07417e-05 1.51748e-09 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| of the Conditions ||| 0.333333 0.00230489 2.07417e-05 2.79133e-08 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| of the Council , but as a ||| 0.5 0.00230489 2.07417e-05 1.61737e-13 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| of the Council , but as ||| 0.5 0.00230489 2.07417e-05 3.64882e-12 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| of the Council , but ||| 0.02 0.00230489 2.07417e-05 3.57573e-10 2.718 ||| 0-0 1-1 ||| 50 48212 +a los ||| of the Council , ||| 0.00024108 0.00230489 2.07417e-05 5.23226e-07 2.718 ||| 0-0 1-1 ||| 4148 48212 +a los ||| of the Council ||| 8.31255e-05 0.00230489 2.07417e-05 4.38747e-06 2.718 ||| 0-0 1-1 ||| 12030 48212 +a los ||| of the EU ||| 0.000154607 0.000807864 2.07417e-05 3.81304e-06 2.718 ||| 0-0 1-0 1-1 1-2 ||| 6468 48212 +a los ||| of the EUR ||| 0.0416667 0.00230489 2.07417e-05 3.39274e-06 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| of the European ||| 0.000886001 0.00230489 6.22252e-05 4.2427e-05 2.718 ||| 0-0 1-1 ||| 3386 48212 +a los ||| of the Renault ||| 0.2 0.00230489 2.07417e-05 2.28382e-08 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| of the Schengen area to the ||| 1 0.0152042 2.07417e-05 8.55126e-12 2.718 ||| 0-0 1-1 0-4 1-5 ||| 1 48212 +a los ||| of the Swiss ||| 0.166667 0.00230489 2.07417e-05 4.06012e-08 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| of the Union in the ||| 0.0147059 0.00718601 2.07417e-05 4.79457e-08 2.718 ||| 0-3 1-4 ||| 68 48212 +a los ||| of the Union ||| 0.000156838 0.00230489 2.07417e-05 7.07223e-06 2.718 ||| 0-0 1-1 ||| 6376 48212 +a los ||| of the activities ||| 0.0052356 0.00230489 2.07417e-05 1.00869e-06 2.718 ||| 0-0 1-1 ||| 191 48212 +a los ||| of the agreement ||| 0.000854701 0.00230489 2.07417e-05 2.33838e-06 2.718 ||| 0-0 1-1 ||| 1170 48212 +a los ||| of the burden ||| 0.00492611 0.00230489 2.07417e-05 5.51923e-07 2.718 ||| 0-0 1-1 ||| 203 48212 +a los ||| of the degree ||| 0.04 0.00230489 2.07417e-05 1.75727e-06 2.718 ||| 0-0 1-1 ||| 25 48212 +a los ||| of the efforts of ||| 0.025 0.00230489 2.07417e-05 8.38753e-08 2.718 ||| 0-0 1-1 ||| 40 48212 +a los ||| of the efforts ||| 0.00555556 0.00230489 2.07417e-05 1.54285e-06 2.718 ||| 0-0 1-1 ||| 180 48212 +a los ||| of the fact ||| 0.000424809 0.00230489 2.07417e-05 3.71666e-05 2.718 ||| 0-0 1-1 ||| 2354 48212 +a los ||| of the general ||| 0.0185185 0.00230489 2.07417e-05 2.21911e-06 2.718 ||| 0-0 1-1 ||| 54 48212 +a los ||| of the hands of ||| 0.142857 0.00230489 2.07417e-05 6.95282e-08 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| of the hands ||| 0.125 0.00230489 2.07417e-05 1.27894e-06 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| of the human ||| 0.0285714 0.00416618 2.07417e-05 0.000247484 2.718 ||| 0-0 1-1 1-2 ||| 35 48212 +a los ||| of the individual ||| 0.00362976 0.00230489 4.14834e-05 1.79407e-06 2.718 ||| 0-0 1-1 ||| 551 48212 +a los ||| of the interests ||| 0.00851064 0.00230489 4.14834e-05 1.73951e-06 2.718 ||| 0-0 1-1 ||| 235 48212 +a los ||| of the issue ||| 0.00193798 0.00230489 2.07417e-05 9.60219e-06 2.718 ||| 0-0 1-1 ||| 516 48212 +a los ||| of the kind of ||| 0.0232558 0.00230489 2.07417e-05 3.36605e-07 2.718 ||| 0-0 1-1 ||| 43 48212 +a los ||| of the kind ||| 0.00296736 0.00230489 2.07417e-05 6.19169e-06 2.718 ||| 0-0 1-1 ||| 337 48212 +a los ||| of the line ||| 0.027027 0.00230489 2.07417e-05 3.73531e-06 2.718 ||| 0-0 1-1 ||| 37 48212 +a los ||| of the many ||| 0.0021645 0.0011807 2.07417e-05 1.78899e-06 2.718 ||| 0-0 1-1 1-2 ||| 462 48212 +a los ||| of the market ||| 0.000646412 0.00230489 2.07417e-05 2.86746e-06 2.718 ||| 0-0 1-1 ||| 1547 48212 +a los ||| of the normal ||| 0.2 0.00230489 2.07417e-05 2.10619e-07 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| of the other ||| 0.000995025 0.00230489 2.07417e-05 1.64372e-05 2.718 ||| 0-0 1-1 ||| 1005 48212 +a los ||| of the people of ||| 0.00345423 0.00101644 4.14834e-05 1.83728e-07 2.718 ||| 0-0 1-0 1-1 1-2 1-3 ||| 579 48212 +a los ||| of the people who are ||| 0.0526316 0.00230489 2.07417e-05 1.49452e-10 2.718 ||| 0-0 1-1 ||| 19 48212 +a los ||| of the people who ||| 0.00518135 0.00230489 2.07417e-05 9.85007e-09 2.718 ||| 0-0 1-1 ||| 193 48212 +a los ||| of the people ||| 0.00083647 0.00230489 4.14834e-05 1.11679e-05 2.718 ||| 0-0 1-1 ||| 2391 48212 +a los ||| of the points raised were really ||| 0.5 0.00230489 2.07417e-05 1.64758e-16 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| of the points raised were ||| 0.333333 0.00230489 2.07417e-05 3.40129e-13 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| of the points raised ||| 0.0217391 0.00230489 2.07417e-05 1.89868e-10 2.718 ||| 0-0 1-1 ||| 46 48212 +a los ||| of the points ||| 0.00204499 0.00230489 2.07417e-05 1.64816e-06 2.718 ||| 0-0 1-1 ||| 489 48212 +a los ||| of the political groups are ||| 0.2 0.00230489 2.07417e-05 2.27483e-12 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| of the political groups ||| 0.00358423 0.00230489 2.07417e-05 1.49929e-10 2.718 ||| 0-0 1-1 ||| 279 48212 +a los ||| of the political ||| 0.0142857 0.00230489 2.07417e-05 2.26479e-06 2.718 ||| 0-0 1-1 ||| 70 48212 +a los ||| of the population ||| 0.00059952 0.00230489 2.07417e-05 7.80305e-07 2.718 ||| 0-0 1-1 ||| 1668 48212 +a los ||| of the possible ||| 0.00462963 0.00230489 2.07417e-05 1.0177e-05 2.718 ||| 0-0 1-1 ||| 216 48212 +a los ||| of the present ||| 0.00210084 0.00230489 2.07417e-05 4.64377e-06 2.718 ||| 0-0 1-1 ||| 476 48212 +a los ||| of the profits of ||| 0.125 0.00230489 2.07417e-05 6.96662e-09 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| of the profits ||| 0.037037 0.00230489 2.07417e-05 1.28148e-07 2.718 ||| 0-0 1-1 ||| 27 48212 +a los ||| of the proposal ||| 0.00060423 0.00230489 2.07417e-05 2.53377e-06 2.718 ||| 0-0 1-1 ||| 1655 48212 +a los ||| of the question concerns whether ||| 1 0.00230489 2.07417e-05 2.06535e-13 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| of the question concerns ||| 1 0.00230489 2.07417e-05 7.86202e-10 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| of the question ||| 0.00508906 0.00230489 4.14834e-05 1.04967e-05 2.718 ||| 0-0 1-1 ||| 393 48212 +a los ||| of the reason for ||| 0.0666667 0.00230489 2.07417e-05 2.28088e-08 2.718 ||| 0-0 1-1 ||| 15 48212 +a los ||| of the reason ||| 0.037037 0.00230489 2.07417e-05 2.9677e-06 2.718 ||| 0-0 1-1 ||| 27 48212 +a los ||| of the security risks and a thorough ||| 0.5 0.00230489 2.07417e-05 1.6815e-19 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| of the security risks and a ||| 0.5 0.00230489 2.07417e-05 9.55399e-15 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| of the security risks and ||| 0.5 0.00230489 2.07417e-05 2.1554e-13 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| of the security risks ||| 0.5 0.00230489 2.07417e-05 1.72076e-11 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| of the security ||| 0.0103093 0.00230489 2.07417e-05 1.0366e-06 2.718 ||| 0-0 1-1 ||| 97 48212 +a los ||| of the shipyard ||| 0.125 0.00230489 2.07417e-05 5.07515e-09 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| of the situation of those ||| 0.333333 0.00256943 2.07417e-05 3.60881e-10 2.718 ||| 0-0 1-1 1-3 1-4 ||| 3 48212 +a los ||| of the speakers ||| 0.00584795 0.00230489 2.07417e-05 2.56295e-07 2.718 ||| 0-0 1-1 ||| 171 48212 +a los ||| of the special needs ||| 0.111111 0.00116791 2.07417e-05 3.92497e-11 2.718 ||| 0-0 1-1 1-2 ||| 9 48212 +a los ||| of the special ||| 0.0384615 0.00116791 2.07417e-05 1.97931e-07 2.718 ||| 0-0 1-1 1-2 ||| 26 48212 +a los ||| of the sugar sector ||| 0.0434783 0.00230489 2.07417e-05 2.21477e-11 2.718 ||| 0-0 1-1 ||| 23 48212 +a los ||| of the sugar ||| 0.142857 0.00230489 2.07417e-05 1.19266e-07 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| of the three ||| 0.00170068 0.00230489 2.07417e-05 8.03143e-07 2.718 ||| 0-0 1-1 ||| 588 48212 +a los ||| of the timing of the ||| 0.5 0.00230489 2.07417e-05 2.11729e-10 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| of the timing of ||| 0.1 0.00230489 2.07417e-05 3.44882e-09 2.718 ||| 0-0 1-1 ||| 10 48212 +a los ||| of the timing ||| 0.0833333 0.00230489 2.07417e-05 6.34394e-08 2.718 ||| 0-0 1-1 ||| 12 48212 +a los ||| of the type ||| 0.0138889 0.00230489 4.14834e-05 1.48448e-06 2.718 ||| 0-0 1-1 ||| 144 48212 +a los ||| of the union ||| 0.0714286 0.00230489 2.07417e-05 2.91821e-07 2.718 ||| 0-0 1-1 ||| 14 48212 +a los ||| of the various ||| 0.00093633 0.00126011 2.07417e-05 1.99834e-06 2.718 ||| 0-0 1-1 1-2 ||| 1068 48212 +a los ||| of the very ||| 0.0162162 0.00230489 6.22252e-05 4.41475e-05 2.718 ||| 0-0 1-1 ||| 185 48212 +a los ||| of the way ||| 0.00287356 0.00230489 4.14834e-05 2.735e-05 2.718 ||| 0-0 1-1 ||| 696 48212 +a los ||| of the work of the ||| 0.00625 0.00154903 2.07417e-05 1.13951e-08 2.718 ||| 0-0 1-1 1-3 1-4 ||| 160 48212 +a los ||| of the year , in our opinion ||| 0.5 0.00145948 2.07417e-05 5.22659e-15 2.718 ||| 0-4 1-5 ||| 2 48212 +a los ||| of the year , in our ||| 0.5 0.00145948 2.07417e-05 2.12982e-11 2.718 ||| 0-4 1-5 ||| 2 48212 +a los ||| of the ||| 0.00355188 0.00230489 0.0349705 0.0126879 2.718 ||| 0-0 1-1 ||| 474678 48212 +a los ||| of their ||| 0.000499451 0.000446154 0.000103709 6.76667e-05 2.718 ||| 0-0 1-1 ||| 10011 48212 +a los ||| of them , ||| 0.00336134 0.000720329 4.14834e-05 7.0992e-06 2.718 ||| 0-0 1-1 ||| 595 48212 +a los ||| of them ||| 0.000973331 0.000720329 0.000103709 5.95297e-05 2.718 ||| 0-0 1-1 ||| 5137 48212 +a los ||| of these than the ||| 0.5 0.00612862 2.07417e-05 7.3885e-09 2.718 ||| 1-3 ||| 2 48212 +a los ||| of these ||| 0.000724924 0.000453032 0.000228159 7.20976e-05 2.718 ||| 0-0 1-1 ||| 15174 48212 +a los ||| of this protection to trade ||| 1 0.00705988 2.07417e-05 9.37464e-12 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| of this to ||| 0.0434783 0.00409398 2.07417e-05 0.00012305 2.718 ||| 0-2 ||| 23 48212 +a los ||| of this ||| 2.13547e-05 5.57709e-06 2.07417e-05 4.48706e-06 2.718 ||| 0-0 1-1 ||| 46828 48212 +a los ||| of those applicant ||| 1 0.00358838 2.07417e-05 5.24399e-08 2.718 ||| 0-0 0-1 1-1 1-2 ||| 1 48212 +a los ||| of those it is ||| 0.5 0.0053661 2.07417e-05 2.75267e-07 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| of those it ||| 0.333333 0.0053661 2.07417e-05 8.78294e-06 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| of those rights to the ||| 1 0.0281035 2.07417e-05 1.18362e-09 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| of those states ' ||| 1 0.0053661 2.07417e-05 1.27574e-10 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| of those states ||| 0.0357143 0.0053661 2.07417e-05 3.71405e-08 2.718 ||| 0-0 1-1 ||| 28 48212 +a los ||| of those with ||| 0.025641 0.0053661 2.07417e-05 3.15818e-06 2.718 ||| 0-0 1-1 ||| 39 48212 +a los ||| of those ||| 0.0118797 0.0053661 0.0016386 0.00049389 2.718 ||| 0-0 1-1 ||| 6650 48212 +a los ||| of trade ||| 0.00481696 0.000579013 0.000103709 2.22016e-05 2.718 ||| 0-0 1-1 ||| 1038 48212 +a los ||| of using ||| 0.00148368 0.000335766 2.07417e-05 2.29825e-06 2.718 ||| 0-0 ||| 674 48212 +a los ||| of various ||| 0.00158228 0.000215328 2.07417e-05 4.65861e-06 2.718 ||| 0-0 1-1 ||| 632 48212 +a los ||| of what is ||| 0.00122399 0.000115366 2.07417e-05 8.88737e-07 2.718 ||| 0-0 1-1 ||| 817 48212 +a los ||| of what ||| 0.000559493 0.000115366 6.22252e-05 2.83569e-05 2.718 ||| 0-0 1-1 ||| 5362 48212 +a los ||| of whether ||| 0.00145349 3.68099e-06 4.14834e-05 1.44935e-07 2.718 ||| 0-0 1-1 ||| 1376 48212 +a los ||| of whom ||| 0.00134409 0.00289584 2.07417e-05 2.67449e-05 2.718 ||| 0-0 1-1 ||| 744 48212 +a los ||| of you ||| 0.000488998 0.000335766 2.07417e-05 9.55001e-05 2.718 ||| 0-0 ||| 2045 48212 +a los ||| of ||| 0.000162724 0.000335766 0.00481208 0.0295785 2.718 ||| 0-0 ||| 1.42573e+06 48212 +a los ||| off against the ||| 0.0666667 0.006293 2.07417e-05 4.53834e-07 2.718 ||| 0-1 1-2 ||| 15 48212 +a los ||| off of the ||| 0.5 0.00661854 2.07417e-05 9.70496e-06 2.718 ||| 0-0 0-1 1-2 ||| 2 48212 +a los ||| off on to the ||| 1 0.0188393 2.07417e-05 2.32005e-06 2.718 ||| 0-1 0-2 1-3 ||| 1 48212 +a los ||| off onto the ||| 0.333333 0.0253313 2.07417e-05 4.15862e-08 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| off the hook the ||| 1 0.0109322 2.07417e-05 6.44582e-11 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| off the land ||| 0.166667 0.0109322 2.07417e-05 1.26322e-08 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| off the mark ||| 0.0384615 0.0109322 2.07417e-05 1.78163e-08 2.718 ||| 0-0 1-1 ||| 26 48212 +a los ||| off the ||| 0.00613497 0.0109322 0.000103709 0.000328109 2.718 ||| 0-0 1-1 ||| 815 48212 +a los ||| off to the ||| 0.4 0.0281035 4.14834e-05 6.11575e-05 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| off ||| 0.001229 0.00159255 6.22252e-05 0.0007649 2.718 ||| 0-0 ||| 2441 48212 +a los ||| offences relating ||| 0.5 0.00496947 2.07417e-05 1.30414e-08 2.718 ||| 1-0 ||| 2 48212 +a los ||| offences ||| 0.00107527 0.00496947 2.07417e-05 0.0001147 2.718 ||| 1-0 ||| 930 48212 +a los ||| offenders ||| 0.00380228 0.000224931 2.07417e-05 4.6e-06 2.718 ||| 0-0 ||| 263 48212 +a los ||| offer the ||| 0.00682594 0.000418327 4.14834e-05 8.23596e-06 2.718 ||| 0-0 1-1 ||| 293 48212 +a los ||| offered the Freedom ||| 0.5 0.00612862 2.07417e-05 4.6649e-11 2.718 ||| 1-1 ||| 2 48212 +a los ||| offered the ||| 0.0263158 0.00377772 4.14834e-05 3.79626e-05 2.718 ||| 0-0 1-1 ||| 76 48212 +a los ||| offered ||| 0.000643501 0.00055032 2.07417e-05 8.85e-05 2.718 ||| 0-0 ||| 1554 48212 +a los ||| offering ||| 0.000798085 0.00184419 2.07417e-05 0.0001771 2.718 ||| 0-0 ||| 1253 48212 +a los ||| officers ||| 0.00323625 0.00747934 4.14834e-05 0.0001721 2.718 ||| 1-0 ||| 618 48212 +a los ||| officials ||| 0.000271444 0.0110761 2.07417e-05 0.0007875 2.718 ||| 1-0 ||| 3684 48212 +a los ||| often ||| 0.000158831 0.00513341 4.14834e-05 0.0060241 2.718 ||| 0-0 ||| 12592 48212 +a los ||| on , although ||| 0.2 0.00139487 2.07417e-05 4.84973e-07 2.718 ||| 0-0 ||| 5 48212 +a los ||| on , ||| 0.00180995 0.00139487 4.14834e-05 0.004524 2.718 ||| 0-0 ||| 1105 48212 +a los ||| on Britain 's ||| 1 0.00273904 2.07417e-05 2.60332e-09 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| on EU ||| 0.027027 0.000338177 4.14834e-05 2.0508e-05 2.718 ||| 0-0 1-1 ||| 74 48212 +a los ||| on Member ||| 0.125 5.7848e-05 2.07417e-05 4.20326e-06 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| on a par with ||| 0.00854701 0.00139487 2.07417e-05 7.31171e-11 2.718 ||| 0-0 ||| 117 48212 +a los ||| on a par ||| 0.00775194 0.00139487 2.07417e-05 1.14344e-08 2.718 ||| 0-0 ||| 129 48212 +a los ||| on a ||| 0.00020744 0.00139487 6.22252e-05 0.00168153 2.718 ||| 0-0 ||| 14462 48212 +a los ||| on account of the ||| 0.00398406 0.00230489 2.07417e-05 2.44072e-08 2.718 ||| 0-2 1-3 ||| 251 48212 +a los ||| on air ||| 0.0540541 0.00155689 4.14834e-05 6.30869e-06 2.718 ||| 0-0 1-1 ||| 37 48212 +a los ||| on all the ||| 0.0130435 0.0054842 0.00012445 4.37459e-05 2.718 ||| 0-0 1-1 1-2 ||| 460 48212 +a los ||| on all those in positions of ||| 1 0.0118428 2.07417e-05 6.69749e-14 2.718 ||| 0-0 1-1 1-2 ||| 1 48212 +a los ||| on all those in positions ||| 1 0.0118428 2.07417e-05 1.23197e-12 2.718 ||| 0-0 1-1 1-2 ||| 1 48212 +a los ||| on all those in ||| 0.5 0.0118428 2.07417e-05 3.64488e-08 2.718 ||| 0-0 1-1 1-2 ||| 2 48212 +a los ||| on all those ||| 0.0615385 0.0118428 8.29669e-05 1.70286e-06 2.718 ||| 0-0 1-1 1-2 ||| 65 48212 +a los ||| on all ||| 0.00720644 0.00139317 0.000352609 0.000101982 2.718 ||| 0-0 1-1 ||| 2359 48212 +a los ||| on any ||| 0.00607287 0.00139467 6.22252e-05 3.50373e-05 2.718 ||| 0-0 1-1 ||| 494 48212 +a los ||| on are the ||| 0.333333 0.00957523 2.07417e-05 0.000246901 2.718 ||| 0-0 1-2 ||| 3 48212 +a los ||| on behalf of the ||| 0.000138293 0.00957523 4.14834e-05 2.81761e-07 2.718 ||| 0-0 1-3 ||| 14462 48212 +a los ||| on board in ||| 0.0227273 0.00104682 2.07417e-05 5.36686e-08 2.718 ||| 0-2 ||| 44 48212 +a los ||| on both the ||| 0.0247934 0.00616794 6.22252e-05 1.94915e-05 2.718 ||| 0-0 1-1 1-2 ||| 121 48212 +a los ||| on both ||| 0.000783085 0.00276065 2.07417e-05 4.54393e-05 2.718 ||| 0-0 1-1 ||| 1277 48212 +a los ||| on by ||| 0.0046729 0.000489092 2.07417e-05 6.14481e-05 2.718 ||| 0-0 1-1 ||| 214 48212 +a los ||| on corporate ||| 0.2 0.00094028 2.07417e-05 8.11822e-07 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| on developing " ||| 1 0.0118046 2.07417e-05 3.19836e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| on developing ||| 0.00401606 0.0118046 2.07417e-05 0.000135066 2.718 ||| 0-0 1-1 ||| 249 48212 +a los ||| on each and every ||| 0.0555556 0.0112934 2.07417e-05 4.35347e-10 2.718 ||| 0-0 1-3 ||| 18 48212 +a los ||| on everyone ||| 0.0169492 0.00628318 4.14834e-05 3.91344e-05 2.718 ||| 0-0 1-1 ||| 118 48212 +a los ||| on existing ||| 0.03125 0.00363748 2.07417e-05 1.64147e-05 2.718 ||| 0-0 1-1 ||| 32 48212 +a los ||| on finding the ||| 0.142857 0.00957523 2.07417e-05 8.67336e-07 2.718 ||| 0-0 1-2 ||| 7 48212 +a los ||| on flights ||| 0.0263158 0.0242406 2.07417e-05 1.71507e-05 2.718 ||| 0-0 1-1 ||| 38 48212 +a los ||| on from the ||| 0.00571429 0.00745096 2.07417e-05 0.000117144 2.718 ||| 0-0 0-1 1-2 ||| 175 48212 +a los ||| on how ||| 0.000455166 9.70919e-05 2.07417e-05 2.32545e-06 2.718 ||| 0-0 1-1 ||| 2197 48212 +a los ||| on human ||| 0.0526316 0.0250399 4.14834e-05 0.000739953 2.718 ||| 0-0 1-1 ||| 38 48212 +a los ||| on individual ||| 0.0666667 0.00864044 0.000103709 4.87586e-05 2.718 ||| 0-0 1-1 ||| 75 48212 +a los ||| on individuals ||| 0.0192308 0.0112231 2.07417e-05 2.05801e-05 2.718 ||| 0-0 1-1 ||| 52 48212 +a los ||| on its the ||| 1 0.00957523 2.07417e-05 2.31837e-05 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| on its ||| 0.00220264 0.00165503 0.00012445 8.09963e-05 2.718 ||| 0-0 1-1 ||| 2724 48212 +a los ||| on labour ||| 0.00925926 0.00111868 2.07417e-05 5.27305e-06 2.718 ||| 0-0 1-1 ||| 108 48212 +a los ||| on mobile ||| 0.0909091 0.00486231 2.07417e-05 3.20935e-06 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| on my fellow ||| 0.0212766 0.000676582 2.07417e-05 1.72322e-09 2.718 ||| 0-0 1-1 ||| 47 48212 +a los ||| on my ||| 0.00588235 0.000676582 0.000103709 2.6149e-05 2.718 ||| 0-0 1-1 ||| 850 48212 +a los ||| on one ||| 0.000909918 0.00139487 2.07417e-05 0.000158116 2.718 ||| 0-0 ||| 1099 48212 +a los ||| on other ||| 0.00131234 0.000301361 2.07417e-05 1.07699e-05 2.718 ||| 0-0 1-1 ||| 762 48212 +a los ||| on our shoulders ||| 0.0833333 0.00194473 2.07417e-05 2.09981e-09 2.718 ||| 0-0 1-1 ||| 12 48212 +a los ||| on our ||| 0.0025 0.00194473 0.000186676 0.000135472 2.718 ||| 0-0 1-1 ||| 3600 48212 +a los ||| on passengers ||| 0.0454545 0.0321689 2.07417e-05 7.43576e-05 2.718 ||| 0-0 1-1 ||| 22 48212 +a los ||| on people ||| 0.00423729 0.00700527 2.07417e-05 0.000298754 2.718 ||| 0-0 1-1 ||| 236 48212 +a los ||| on private ||| 0.1 0.00143155 2.07417e-05 4.60918e-06 2.718 ||| 0-0 1-1 ||| 10 48212 +a los ||| on promoting the ||| 0.0232558 0.00957523 2.07417e-05 4.62145e-07 2.718 ||| 0-0 1-2 ||| 43 48212 +a los ||| on public ||| 0.00943396 0.00126032 2.07417e-05 2.23896e-05 2.718 ||| 0-0 1-1 ||| 106 48212 +a los ||| on rubbish ||| 0.5 0.0012836 2.07417e-05 1.10013e-07 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| on tax ||| 0.0555556 0.0047874 4.14834e-05 2.56331e-05 2.718 ||| 0-0 1-1 ||| 36 48212 +a los ||| on that of ||| 0.0322581 0.000154932 2.07417e-05 2.1107e-06 2.718 ||| 0-0 1-2 ||| 31 48212 +a los ||| on the Alps ||| 1 0.00687164 2.07417e-05 2.21309e-07 2.718 ||| 0-0 1-1 1-2 ||| 1 48212 +a los ||| on the Committee , according ||| 1 0.00957523 2.07417e-05 2.6208e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| on the Committee , ||| 0.142857 0.00957523 2.07417e-05 2.96135e-07 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| on the Committee ||| 0.00252525 0.00957523 2.07417e-05 2.48322e-06 2.718 ||| 0-0 1-1 ||| 396 48212 +a los ||| on the Environment to encompass ||| 1 0.00957523 2.07417e-05 9.16163e-14 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| on the Environment to ||| 0.111111 0.00957523 2.07417e-05 2.86301e-08 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| on the Environment ||| 0.00038506 0.00957523 2.07417e-05 3.222e-07 2.718 ||| 0-0 1-1 ||| 2597 48212 +a los ||| on the European Union ||| 0.00321543 0.00957523 2.07417e-05 3.03305e-08 2.718 ||| 0-0 1-1 ||| 311 48212 +a los ||| on the European ||| 0.00666667 0.00957523 2.07417e-05 5.44143e-05 2.718 ||| 0-0 1-1 ||| 150 48212 +a los ||| on the Member ||| 0.0666667 0.00957523 2.07417e-05 8.38533e-06 2.718 ||| 0-0 1-1 ||| 15 48212 +a los ||| on the back foot ||| 0.333333 0.00957523 2.07417e-05 2.44074e-10 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| on the back of ||| 0.0149254 0.00957523 2.07417e-05 5.95015e-07 2.718 ||| 0-0 1-1 ||| 67 48212 +a los ||| on the back ||| 0.0140845 0.00957523 4.14834e-05 1.0945e-05 2.718 ||| 0-0 1-1 ||| 142 48212 +a los ||| on the basis of ||| 0.00052789 0.00957523 6.22252e-05 5.25305e-07 2.718 ||| 0-0 1-1 ||| 5683 48212 +a los ||| on the basis ||| 0.000617952 0.00957523 8.29669e-05 9.66274e-06 2.718 ||| 0-0 1-1 ||| 6473 48212 +a los ||| on the board for ||| 1 0.00957523 2.07417e-05 1.66965e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| on the board ||| 0.0196078 0.00957523 2.07417e-05 2.17241e-06 2.718 ||| 0-0 1-1 ||| 51 48212 +a los ||| on the budget ||| 0.002457 0.00957523 2.07417e-05 2.00805e-06 2.718 ||| 0-0 1-1 ||| 407 48212 +a los ||| on the dilatory ||| 1 0.00957523 2.07417e-05 1.13909e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| on the entrenched ||| 0.5 0.00957523 2.07417e-05 5.20727e-08 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| on the environment ||| 0.00125 0.00957523 2.07417e-05 9.08017e-07 2.718 ||| 0-0 1-1 ||| 800 48212 +a los ||| on the figure of ||| 0.5 0.00957523 2.07417e-05 6.74988e-08 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| on the figure ||| 0.25 0.00957523 2.07417e-05 1.24161e-06 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| on the individual ||| 0.0169492 0.00910784 2.07417e-05 2.09153e-05 2.718 ||| 0-0 1-1 1-2 ||| 59 48212 +a los ||| on the labour market ||| 0.00297619 0.00957523 2.07417e-05 1.58874e-10 2.718 ||| 0-0 1-1 ||| 336 48212 +a los ||| on the labour ||| 0.0588235 0.00957523 2.07417e-05 7.02981e-07 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| on the legal ||| 0.111111 0.00957523 2.07417e-05 2.10894e-06 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| on the more ||| 0.111111 0.00957523 2.07417e-05 3.7162e-05 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| on the older ||| 0.2 0.00957523 2.07417e-05 1.10654e-07 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| on the one hand and the ||| 0.00943396 0.00957523 2.07417e-05 2.06852e-11 2.718 ||| 0-0 1-1 ||| 106 48212 +a los ||| on the one hand and ||| 0.0026455 0.00957523 2.07417e-05 3.36938e-10 2.718 ||| 0-0 1-1 ||| 378 48212 +a los ||| on the one hand those ||| 1 0.0159338 2.07417e-05 4.49153e-10 2.718 ||| 0-0 1-1 1-4 ||| 1 48212 +a los ||| on the one hand ||| 0.000270197 0.00957523 2.07417e-05 2.68993e-08 2.718 ||| 0-0 1-1 ||| 3701 48212 +a los ||| on the one ||| 0.000303582 0.00957523 2.07417e-05 6.78247e-05 2.718 ||| 0-0 1-1 ||| 3294 48212 +a los ||| on the other , ||| 0.000980392 0.00957523 2.07417e-05 2.51404e-06 2.718 ||| 0-0 1-1 ||| 1020 48212 +a los ||| on the other those ||| 0.5 0.0159338 2.07417e-05 3.52007e-07 2.718 ||| 0-0 1-1 1-3 ||| 2 48212 +a los ||| on the other ||| 0.000324675 0.00957523 4.14834e-05 2.10813e-05 2.718 ||| 0-0 1-1 ||| 6160 48212 +a los ||| on the owners of the ||| 1 0.0037759 2.07417e-05 1.42908e-09 2.718 ||| 1-2 0-3 1-4 ||| 1 48212 +a los ||| on the part of the ||| 0.00217391 0.00957523 6.22252e-05 6.47487e-08 2.718 ||| 0-0 1-1 ||| 1380 48212 +a los ||| on the part of ||| 0.00212879 0.00957523 8.29669e-05 1.05468e-06 2.718 ||| 0-0 1-1 ||| 1879 48212 +a los ||| on the part ||| 0.00247729 0.00957523 0.00012445 1.94003e-05 2.718 ||| 0-0 1-1 ||| 2422 48212 +a los ||| on the parties ||| 0.0243902 0.00998257 2.07417e-05 2.73544e-05 2.718 ||| 0-0 1-1 1-2 ||| 41 48212 +a los ||| on the people of ||| 0.0416667 0.00829025 4.14834e-05 6.96688e-06 2.718 ||| 0-0 1-1 1-2 ||| 48 48212 +a los ||| on the people ||| 0.015625 0.00829025 4.14834e-05 0.000128153 2.718 ||| 0-0 1-1 1-2 ||| 128 48212 +a los ||| on the plus side ||| 0.111111 0.00957523 2.07417e-05 2.56822e-11 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| on the plus ||| 0.142857 0.00957523 2.07417e-05 1.17164e-07 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| on the question of ||| 0.00121212 0.00957523 2.07417e-05 7.31871e-07 2.718 ||| 0-0 1-1 ||| 825 48212 +a los ||| on the question ||| 0.00100604 0.00957523 2.07417e-05 1.34624e-05 2.718 ||| 0-0 1-1 ||| 994 48212 +a los ||| on the relevant administrative ||| 1 0.00957523 2.07417e-05 3.58944e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| on the relevant ||| 0.0714286 0.00957523 2.07417e-05 1.75094e-06 2.718 ||| 0-0 1-1 ||| 14 48212 +a los ||| on the remaining ||| 0.0333333 0.00957523 2.07417e-05 5.32118e-07 2.718 ||| 0-0 1-1 ||| 30 48212 +a los ||| on the role ||| 0.00260417 0.00957523 2.07417e-05 3.61254e-06 2.718 ||| 0-0 1-1 ||| 384 48212 +a los ||| on the same footing as ||| 0.0869565 0.00957523 4.14834e-05 2.88626e-12 2.718 ||| 0-0 1-1 ||| 23 48212 +a los ||| on the same footing ||| 0.0576923 0.00957523 6.22252e-05 2.82845e-10 2.718 ||| 0-0 1-1 ||| 52 48212 +a los ||| on the same terms as ||| 0.0294118 0.00957523 2.07417e-05 1.46665e-10 2.718 ||| 0-0 1-1 ||| 34 48212 +a los ||| on the same terms ||| 0.0222222 0.00957523 2.07417e-05 1.43727e-08 2.718 ||| 0-0 1-1 ||| 45 48212 +a los ||| on the same ||| 0.004561 0.00957523 8.29669e-05 1.30947e-05 2.718 ||| 0-0 1-1 ||| 877 48212 +a los ||| on the scoreboard ||| 0.0588235 0.00957523 2.07417e-05 3.58e-08 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| on the side ||| 0.00490196 0.00957523 2.07417e-05 3.56698e-06 2.718 ||| 0-0 1-1 ||| 204 48212 +a los ||| on the streets , ||| 0.0434783 0.00957523 2.07417e-05 6.20991e-09 2.718 ||| 0-0 1-1 ||| 23 48212 +a los ||| on the streets ||| 0.00444444 0.00957523 2.07417e-05 5.20727e-08 2.718 ||| 0-0 1-1 ||| 225 48212 +a los ||| on the subject of ||| 0.00148478 0.00957523 4.14834e-05 4.77534e-07 2.718 ||| 0-0 1-1 ||| 1347 48212 +a los ||| on the subject ||| 0.00121408 0.00957523 6.22252e-05 8.78401e-06 2.718 ||| 0-0 1-1 ||| 2471 48212 +a los ||| on the two ||| 0.00606061 0.00957523 2.07417e-05 3.84687e-06 2.718 ||| 0-0 1-1 ||| 165 48212 +a los ||| on the very core of ||| 1 0.00957523 2.07417e-05 4.64799e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| on the very core ||| 0.5 0.00957523 2.07417e-05 8.54976e-10 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| on the very ||| 0.00884956 0.00957523 2.07417e-05 5.66209e-05 2.718 ||| 0-0 1-1 ||| 113 48212 +a los ||| on the ||| 0.0100742 0.00957523 0.0299718 0.0162727 2.718 ||| 0-0 1-1 ||| 143436 48212 +a los ||| on their own ||| 0.00210526 0.00185346 2.07417e-05 1.47127e-07 2.718 ||| 0-0 1-1 ||| 475 48212 +a los ||| on their willingness ||| 0.5 0.00185346 2.07417e-05 1.12821e-09 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| on their ||| 0.00281294 0.00185346 0.000165934 8.67853e-05 2.718 ||| 0-0 1-1 ||| 2844 48212 +a los ||| on them ||| 0.00127551 0.00299247 2.07417e-05 7.63492e-05 2.718 ||| 0-0 1-1 ||| 784 48212 +a los ||| on these ||| 0.00108421 0.00188203 6.22252e-05 9.2468e-05 2.718 ||| 0-0 1-1 ||| 2767 48212 +a los ||| on they should be involved in the ||| 1 0.00838062 2.07417e-05 8.86161e-14 2.718 ||| 0-0 0-5 1-6 ||| 1 48212 +a los ||| on this ||| 4.58274e-05 2.31689e-05 2.07417e-05 5.75483e-06 2.718 ||| 0-0 1-1 ||| 21821 48212 +a los ||| on those for whom they ||| 1 0.0112063 2.07417e-05 1.21421e-13 2.718 ||| 0-0 1-1 1-2 ||| 1 48212 +a los ||| on those for whom ||| 1 0.0112063 2.07417e-05 3.72002e-11 2.718 ||| 0-0 1-1 1-2 ||| 1 48212 +a los ||| on those for ||| 1 0.0112063 2.07417e-05 5.58562e-07 2.718 ||| 0-0 1-1 1-2 ||| 1 48212 +a los ||| on those in ||| 0.0909091 0.0222924 2.07417e-05 1.35583e-05 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| on those of us ||| 0.25 0.0222924 2.07417e-05 9.92514e-08 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| on those of ||| 0.111111 0.0222924 4.14834e-05 3.4436e-05 2.718 ||| 0-0 1-1 ||| 18 48212 +a los ||| on those they ||| 1 0.0222924 2.07417e-05 2.06753e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| on those with ||| 0.2 0.0222924 2.07417e-05 4.05049e-06 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| on those ||| 0.0733668 0.0222924 0.00151415 0.000633433 2.718 ||| 0-0 1-1 ||| 995 48212 +a los ||| on to any ||| 0.5 0.00274402 2.07417e-05 1.22736e-05 2.718 ||| 0-0 0-1 1-2 ||| 2 48212 +a los ||| on to its ||| 0.1 0.00325629 2.07417e-05 2.83731e-05 2.718 ||| 0-0 0-1 1-2 ||| 10 48212 +a los ||| on to the ||| 0.0852273 0.0188393 0.000933378 0.00570036 2.718 ||| 0-0 0-1 1-2 ||| 528 48212 +a los ||| on to their ||| 0.0769231 0.0036467 2.07417e-05 3.0401e-05 2.718 ||| 0-0 0-1 1-2 ||| 13 48212 +a los ||| on to those ||| 0.5 0.0438605 4.14834e-05 0.000221893 2.718 ||| 0-0 0-1 1-2 ||| 4 48212 +a los ||| on to ||| 0.00204638 0.00139487 6.22252e-05 0.00337089 2.718 ||| 0-0 ||| 1466 48212 +a los ||| on top of ||| 0.00284091 0.000464694 2.07417e-05 3.53842e-09 2.718 ||| 0-0 1-1 1-2 ||| 352 48212 +a los ||| on trade ||| 0.00330033 0.0024054 2.07417e-05 2.84745e-05 2.718 ||| 0-0 1-1 ||| 303 48212 +a los ||| on various ||| 0.00342466 0.000894537 2.07417e-05 5.97486e-06 2.718 ||| 0-0 1-1 ||| 292 48212 +a los ||| on wage ||| 0.5 0.00470427 2.07417e-05 3.31937e-06 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| on what ||| 0.000548847 0.000479266 2.07417e-05 3.63689e-05 2.718 ||| 0-0 1-1 ||| 1822 48212 +a los ||| on whatever ||| 0.0526316 0.00033918 2.07417e-05 9.97706e-07 2.718 ||| 0-0 1-1 ||| 19 48212 +a los ||| on where we ||| 0.0666667 0.00351878 2.07417e-05 9.50458e-07 2.718 ||| 0-0 1-1 ||| 15 48212 +a los ||| on where ||| 0.0104167 0.00351878 2.07417e-05 8.37239e-05 2.718 ||| 0-0 1-1 ||| 96 48212 +a los ||| on who is ||| 0.0666667 0.000126392 2.07417e-05 1.3982e-07 2.718 ||| 0-0 1-1 ||| 15 48212 +a los ||| on who ||| 0.0128205 0.000126392 2.07417e-05 4.46123e-06 2.718 ||| 0-0 1-1 ||| 78 48212 +a los ||| on whom ||| 0.0212766 0.0120302 2.07417e-05 3.43014e-05 2.718 ||| 0-0 1-1 ||| 47 48212 +a los ||| on you ||| 0.00537634 0.00139487 2.07417e-05 0.000122483 2.718 ||| 0-0 ||| 186 48212 +a los ||| on your behalf ||| 0.0178571 0.000754349 2.07417e-05 3.72382e-09 2.718 ||| 0-0 1-1 ||| 56 48212 +a los ||| on your ||| 0.00105597 0.000754349 2.07417e-05 1.16918e-05 2.718 ||| 0-0 1-1 ||| 947 48212 +a los ||| on ||| 0.000353881 0.00139487 0.00336016 0.0379356 2.718 ||| 0-0 ||| 457781 48212 +a los ||| one ' s ||| 0.0178571 0.00196964 2.07417e-05 3.49406e-08 2.718 ||| 1-1 1-2 ||| 56 48212 +a los ||| one of the ||| 6.01431e-05 0.00230489 2.07417e-05 5.28831e-05 2.718 ||| 0-1 1-2 ||| 16627 48212 +a los ||| one of ||| 4.29277e-05 0.000335766 2.07417e-05 0.000123283 2.718 ||| 0-1 ||| 23295 48212 +a los ||| one to also cover the ||| 1 0.0281035 2.07417e-05 2.46948e-10 2.718 ||| 0-1 1-4 ||| 1 48212 +a los ||| one to the ||| 0.0967742 0.0281035 6.22252e-05 0.000626301 2.718 ||| 0-1 1-2 ||| 31 48212 +a los ||| ones , ||| 0.0113636 0.00431559 4.14834e-05 4.37068e-05 2.718 ||| 1-0 ||| 176 48212 +a los ||| ones encouraged ||| 0.166667 0.00852804 2.07417e-05 6.85722e-08 2.718 ||| 1-0 0-1 ||| 6 48212 +a los ||| ones for the ||| 0.5 0.00835696 2.07417e-05 3.49321e-06 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| ones to ||| 0.0238095 0.00431559 2.07417e-05 3.25665e-05 2.718 ||| 1-0 ||| 42 48212 +a los ||| ones ||| 0.00544588 0.00431559 0.000165934 0.0003665 2.718 ||| 1-0 ||| 1469 48212 +a los ||| oneself to the ||| 0.333333 0.0281035 2.07417e-05 1.24719e-06 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| only at the ||| 0.00892857 0.0249683 2.07417e-05 1.62509e-05 2.718 ||| 0-1 1-2 ||| 112 48212 +a los ||| only for those ||| 0.03125 0.0194561 2.07417e-05 6.8487e-07 2.718 ||| 0-1 1-2 ||| 32 48212 +a los ||| only those ||| 0.0045045 0.0142682 2.07417e-05 1.85861e-05 2.718 ||| 1-1 ||| 222 48212 +a los ||| only to the ||| 0.00269542 0.0281035 2.07417e-05 0.000167259 2.718 ||| 0-1 1-2 ||| 371 48212 +a los ||| only to ||| 0.000909091 0.00409398 4.14834e-05 0.000389921 2.718 ||| 0-1 ||| 2200 48212 +a los ||| onto the Member States ||| 0.2 0.0253313 2.07417e-05 2.51255e-11 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| onto the Member ||| 1 0.0253313 2.07417e-05 5.2652e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| onto the backs of the ||| 1 0.0138181 2.07417e-05 1.02417e-11 2.718 ||| 0-0 1-1 0-3 1-4 ||| 1 48212 +a los ||| onto the ||| 0.038674 0.0253313 0.000290384 0.000102177 2.718 ||| 0-0 1-1 ||| 362 48212 +a los ||| onto ||| 0.00477707 0.00369015 6.22252e-05 0.0002382 2.718 ||| 0-0 ||| 628 48212 +a los ||| open a window for the simple ||| 1 0.00835696 2.07417e-05 5.46457e-17 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| open a window for the ||| 0.5 0.00835696 2.07417e-05 1.26495e-12 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| open to the ||| 0.0144928 0.0281035 6.22252e-05 2.42226e-05 2.718 ||| 0-1 1-2 ||| 207 48212 +a los ||| openly and cynically upheld ||| 0.333333 6.12913e-06 2.07417e-05 1.71354e-20 2.718 ||| 0-0 1-3 ||| 3 48212 +a los ||| operating budgets ||| 0.125 0.0123615 2.07417e-05 3.22875e-08 2.718 ||| 1-1 ||| 8 48212 +a los ||| operators might ||| 0.5 0.016548 2.07417e-05 5.23814e-07 2.718 ||| 1-0 ||| 2 48212 +a los ||| operators ||| 0.000919399 0.016548 6.22252e-05 0.0013641 2.718 ||| 1-0 ||| 3263 48212 +a los ||| opinion of the Committee ||| 0.000906618 0.00230489 2.07417e-05 4.75136e-10 2.718 ||| 0-1 1-2 ||| 1103 48212 +a los ||| opinion of the ||| 0.000579374 0.00230489 2.07417e-05 3.11361e-06 2.718 ||| 0-1 1-2 ||| 1726 48212 +a los ||| opponents ||| 0.00119332 0.000610086 2.07417e-05 3.19e-05 2.718 ||| 0-0 ||| 838 48212 +a los ||| oppose ||| 0.000566893 0.00605179 2.07417e-05 0.0009885 2.718 ||| 0-0 ||| 1764 48212 +a los ||| opposite of ||| 0.00411523 0.000335766 2.07417e-05 6.27064e-07 2.718 ||| 0-1 ||| 243 48212 +a los ||| opposition to ||| 0.0010661 0.00409398 2.07417e-05 8.96772e-06 2.718 ||| 0-1 ||| 938 48212 +a los ||| or her to the ||| 0.5 0.0281035 2.07417e-05 4.67459e-08 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| or problems which exist in ||| 1 0.00624344 2.07417e-05 1.64799e-13 2.718 ||| 1-1 0-4 ||| 1 48212 +a los ||| or the rights ||| 0.0526316 0.00314162 2.07417e-05 7.4839e-08 2.718 ||| 1-1 1-2 ||| 19 48212 +a los ||| or the ||| 0.00015569 0.000102222 2.07417e-05 3.3287e-05 2.718 ||| 0-0 1-1 ||| 6423 48212 +a los ||| or ||| 8.33118e-06 1.48911e-05 2.07417e-05 7.76e-05 2.718 ||| 0-0 ||| 120031 48212 +a los ||| order of the ||| 0.00591716 0.00230489 2.07417e-05 6.75757e-06 2.718 ||| 0-1 1-2 ||| 169 48212 +a los ||| order to accommodate the ||| 0.125 0.0281035 2.07417e-05 8.32319e-10 2.718 ||| 0-1 1-3 ||| 8 48212 +a los ||| ordinary ||| 0.00245248 0.00930891 8.29669e-05 0.00019825 2.718 ||| 0-0 1-0 ||| 1631 48212 +a los ||| other parts of the ||| 0.00181818 0.00230489 2.07417e-05 9.58286e-10 2.718 ||| 0-2 1-3 ||| 550 48212 +a los ||| other socialist and left-wing ||| 0.5 2.8277e-05 2.07417e-05 3.84949e-18 2.718 ||| 0-2 ||| 2 48212 +a los ||| other socialist and ||| 0.5 2.8277e-05 2.07417e-05 3.49953e-12 2.718 ||| 0-2 ||| 2 48212 +a los ||| other than the ||| 0.00383142 0.00296272 2.07417e-05 6.98476e-07 2.718 ||| 0-1 1-2 ||| 261 48212 +a los ||| other things to the ||| 0.0588235 0.0281035 2.07417e-05 8.00082e-08 2.718 ||| 0-2 1-3 ||| 17 48212 +a los ||| other ||| 7.12687e-05 0.000192886 0.000103709 0.0002839 2.718 ||| 1-0 ||| 70157 48212 +a los ||| others designed ||| 0.5 0.00364738 2.07417e-05 7.57023e-08 2.718 ||| 1-0 ||| 2 48212 +a los ||| others in ||| 0.00288184 0.00427667 2.07417e-05 5.8238e-05 2.718 ||| 1-0 0-1 ||| 347 48212 +a los ||| others ||| 8.03277e-05 0.00364738 2.07417e-05 0.0009693 2.718 ||| 1-0 ||| 12449 48212 +a los ||| our approval to ||| 0.0588235 0.00409398 2.07417e-05 1.44479e-08 2.718 ||| 0-2 ||| 17 48212 +a los ||| our friend on the ||| 0.5 0.00957523 2.07417e-05 2.58136e-10 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| our message to the ||| 0.0526316 0.0281035 2.07417e-05 9.99062e-09 2.718 ||| 0-2 1-3 ||| 19 48212 +a los ||| our minds away from those ||| 1 0.0124013 2.07417e-05 2.52641e-15 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| our neighbouring country to the ||| 0.5 0.0281035 2.07417e-05 4.55048e-13 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| our own ||| 0.000210172 0.00124472 2.07417e-05 6.05409e-06 2.718 ||| 1-0 ||| 4758 48212 +a los ||| our ||| 0.000495537 0.00124472 0.00155563 0.0035711 2.718 ||| 1-0 ||| 151351 48212 +a los ||| out , ||| 0.00113895 0.00119317 2.07417e-05 0.000489064 2.718 ||| 0-0 ||| 878 48212 +a los ||| out across all ||| 1 0.000873196 2.07417e-05 5.06625e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| out as the ||| 0.0833333 0.00297745 2.07417e-05 1.44137e-05 2.718 ||| 0-1 1-2 ||| 12 48212 +a los ||| out by the ||| 0.00468384 0.00413296 4.14834e-05 1.35184e-05 2.718 ||| 0-1 1-2 ||| 427 48212 +a los ||| out by ||| 0.00232288 0.000314738 4.14834e-05 2.01919e-05 2.718 ||| 0-0 0-1 1-1 ||| 861 48212 +a los ||| out from the ||| 0.025 0.0053267 2.07417e-05 1.18282e-05 2.718 ||| 0-1 1-2 ||| 40 48212 +a los ||| out in the ||| 0.00218341 0.00718601 2.07417e-05 9.872e-05 2.718 ||| 0-1 1-2 ||| 458 48212 +a los ||| out of the hands of ||| 0.166667 0.00230489 2.07417e-05 2.66321e-10 2.718 ||| 0-1 1-2 ||| 6 48212 +a los ||| out of the hands ||| 0.142857 0.00230489 2.07417e-05 4.89885e-09 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| out of the ||| 0.00308166 0.00230489 8.29669e-05 4.85997e-05 2.718 ||| 0-1 1-2 ||| 1298 48212 +a los ||| out of ||| 0.000431127 0.000132529 4.14834e-05 1.35645e-05 2.718 ||| 0-0 1-1 ||| 4639 48212 +a los ||| out our ||| 0.010101 0.00166352 2.07417e-05 1.46451e-05 2.718 ||| 0-0 1-1 ||| 99 48212 +a los ||| out the ||| 0.0133964 0.00819065 0.000352609 0.00175915 2.718 ||| 0-0 1-1 ||| 1269 48212 +a los ||| out those ||| 0.136364 0.0190689 6.22252e-05 6.84769e-05 2.718 ||| 0-0 1-1 ||| 22 48212 +a los ||| out to our ||| 0.333333 0.0057078 2.07417e-05 4.79169e-06 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| out to the individual ||| 0.5 0.0281035 2.07417e-05 8.13858e-08 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| out to the ||| 0.104839 0.0281035 0.000269642 0.000575572 2.718 ||| 0-1 1-2 ||| 124 48212 +a los ||| out to their ||| 1 0.00543993 2.07417e-05 3.06962e-06 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| out to those ||| 0.25 0.0654285 4.14834e-05 2.24048e-05 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| out who is ||| 0.2 0.000108115 2.07417e-05 1.51151e-08 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| out who ||| 0.0588235 0.000108115 2.07417e-05 4.82278e-07 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| out ||| 0.00056097 0.00119317 0.000165934 0.004101 2.718 ||| 0-0 ||| 14261 48212 +a los ||| outrages the ||| 1 0.00149133 2.07417e-05 3.86061e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| over the carpet ||| 1 0.00834678 2.07417e-05 1.25549e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| over the general ||| 0.333333 0.00834678 2.07417e-05 1.74274e-07 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| over the ||| 0.00191773 0.00834678 0.000414834 0.000996423 2.718 ||| 0-0 1-1 ||| 10429 48212 +a los ||| over those ||| 0.0147059 0.0194324 2.07417e-05 3.87869e-05 2.718 ||| 0-0 1-1 ||| 68 48212 +a los ||| over to the ||| 0.0638298 0.0182251 0.00012445 0.000349048 2.718 ||| 0-0 0-1 1-2 ||| 94 48212 +a los ||| over to them ||| 0.333333 0.00878293 2.07417e-05 3.39466e-07 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| over with their ||| 1 0.00135303 2.07417e-05 1.83901e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| over ||| 0.000166411 0.00121592 0.000103709 0.0023229 2.718 ||| 0-0 ||| 30046 48212 +a los ||| overseas ||| 0.0017452 0.00375432 2.07417e-05 4.18e-05 2.718 ||| 1-0 ||| 573 48212 +a los ||| overtake the ||| 0.2 0.0171634 2.07417e-05 3.13138e-06 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| own against the ||| 0.166667 0.006293 2.07417e-05 1.89038e-06 2.718 ||| 0-1 1-2 ||| 6 48212 +a los ||| own countries ||| 0.00156986 0.00479712 2.07417e-05 1.41324e-05 2.718 ||| 1-1 ||| 637 48212 +a los ||| owners of the ||| 0.030303 0.0037759 2.07417e-05 3.47902e-06 2.718 ||| 1-0 0-1 1-2 ||| 33 48212 +a los ||| owners ||| 0.00130719 0.0139513 2.07417e-05 0.0002742 2.718 ||| 1-0 ||| 765 48212 +a los ||| pace with ||| 0.00694444 0.00101826 2.07417e-05 3.23885e-07 2.718 ||| 0-1 ||| 144 48212 +a los ||| paid back to the ||| 0.111111 0.0281035 2.07417e-05 1.36037e-08 2.718 ||| 0-2 1-3 ||| 9 48212 +a los ||| paid to the ||| 0.0241935 0.0281035 6.22252e-05 2.02255e-05 2.718 ||| 0-1 1-2 ||| 124 48212 +a los ||| paid to ||| 0.00182815 0.00409398 2.07417e-05 4.71506e-05 2.718 ||| 0-1 ||| 547 48212 +a los ||| parade the ||| 0.2 0.00612862 2.07417e-05 7.72121e-07 2.718 ||| 1-1 ||| 5 48212 +a los ||| part of our ||| 0.00149477 0.000468123 2.07417e-05 1.25929e-07 2.718 ||| 0-1 1-2 ||| 669 48212 +a los ||| part of the ||| 0.000339136 0.00230489 6.22252e-05 1.51265e-05 2.718 ||| 0-1 1-2 ||| 8846 48212 +a los ||| part of ||| 7.31743e-05 0.000335766 2.07417e-05 3.52635e-05 2.718 ||| 0-1 ||| 13666 48212 +a los ||| participants about the ||| 0.5 0.00643683 2.07417e-05 1.7077e-08 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| participate to the ||| 0.25 0.0281035 2.07417e-05 3.62136e-06 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| participated in this process , and ||| 1 1.73878e-05 2.07417e-05 2.09535e-17 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| participated in this process , ||| 0.5 1.73878e-05 2.07417e-05 1.67281e-15 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| participated in this process ||| 0.142857 1.73878e-05 2.07417e-05 1.40272e-14 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| participated in this ||| 0.0169492 1.73878e-05 2.07417e-05 3.28123e-11 2.718 ||| 0-1 1-2 ||| 59 48212 +a los ||| participation in the ||| 0.00196078 0.00718601 2.07417e-05 6.21124e-07 2.718 ||| 0-1 1-2 ||| 510 48212 +a los ||| particular , as ||| 0.0104167 0.00043374 2.07417e-05 6.43801e-07 2.718 ||| 0-2 ||| 96 48212 +a los ||| particular , to sing from the ||| 1 0.0053267 2.07417e-05 6.44397e-14 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| particular thanks are due to the ||| 1 0.0281035 2.07417e-05 3.14122e-14 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| particular to the ||| 0.00342466 0.0281035 2.07417e-05 9.24725e-05 2.718 ||| 0-1 1-2 ||| 292 48212 +a los ||| particularly those ||| 0.0037594 3.18016e-05 4.14834e-05 6.17811e-08 2.718 ||| 0-0 1-1 ||| 532 48212 +a los ||| partly on the ||| 0.0454545 0.00957523 2.07417e-05 5.50018e-07 2.718 ||| 0-1 1-2 ||| 22 48212 +a los ||| parts of the ||| 0.000577367 0.00230489 2.07417e-05 7.39704e-07 2.718 ||| 0-1 1-2 ||| 1732 48212 +a los ||| party ||| 0.000189251 0.000496983 2.07417e-05 4.86e-05 2.718 ||| 1-0 ||| 5284 48212 +a los ||| passengers ||| 0.000319693 0.0205897 2.07417e-05 0.0019601 2.718 ||| 1-0 ||| 3128 48212 +a los ||| pay extra to watch these events by ||| 1 0.00552379 2.07417e-05 2.08332e-23 2.718 ||| 0-2 1-4 ||| 1 48212 +a los ||| pay extra to watch these events ||| 1 0.00552379 2.07417e-05 3.96815e-21 2.718 ||| 0-2 1-4 ||| 1 48212 +a los ||| pay extra to watch these ||| 1 0.00552379 2.07417e-05 5.45826e-17 2.718 ||| 0-2 1-4 ||| 1 48212 +a los ||| pay lip-service to ||| 0.0384615 0.00409398 2.07417e-05 1.45473e-10 2.718 ||| 0-2 ||| 26 48212 +a los ||| pay tribute to the ||| 0.00518135 0.0281035 2.07417e-05 4.17446e-10 2.718 ||| 0-2 1-3 ||| 193 48212 +a los ||| payers ||| 0.0188679 0.00728957 2.07417e-05 1.56e-05 2.718 ||| 1-0 ||| 53 48212 +a los ||| paying back to the ||| 1 0.0281035 2.07417e-05 3.41609e-09 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| payments have to be effected ||| 1 0.0629417 2.07417e-05 4.71378e-13 2.718 ||| 1-0 0-2 ||| 1 48212 +a los ||| payments have to be ||| 0.333333 0.0629417 2.07417e-05 1.09623e-07 2.718 ||| 1-0 0-2 ||| 3 48212 +a los ||| payments have to ||| 0.333333 0.0629417 2.07417e-05 6.04885e-06 2.718 ||| 1-0 0-2 ||| 3 48212 +a los ||| pension ||| 0.0004158 0.00272297 2.07417e-05 0.0002401 2.718 ||| 1-0 ||| 2405 48212 +a los ||| people ' ||| 0.00507614 0.00222754 2.07417e-05 4.68196e-06 2.718 ||| 1-1 ||| 197 48212 +a los ||| people around ||| 0.0128205 0.00833211 2.07417e-05 7.12321e-06 2.718 ||| 1-0 0-1 ||| 78 48212 +a los ||| people at a ||| 0.0833333 0.0182669 2.07417e-05 1.1881e-05 2.718 ||| 1-0 0-1 ||| 12 48212 +a los ||| people at ||| 0.00877193 0.0182669 4.14834e-05 0.000268039 2.718 ||| 1-0 0-1 ||| 228 48212 +a los ||| people carried ||| 0.333333 0.00448372 2.07417e-05 2.32085e-06 2.718 ||| 1-0 ||| 3 48212 +a los ||| people from across the ||| 0.5 0.00566407 2.07417e-05 1.33727e-09 2.718 ||| 0-1 0-2 1-3 ||| 2 48212 +a los ||| people in the ||| 0.00313808 0.00718601 6.22252e-05 2.26852e-05 2.718 ||| 0-1 1-2 ||| 956 48212 +a los ||| people of the ||| 0.00176367 0.00230489 2.07417e-05 1.11679e-05 2.718 ||| 0-1 1-2 ||| 567 48212 +a los ||| people to ||| 0.00121139 0.0205606 4.14834e-05 0.00275873 2.718 ||| 1-0 0-1 ||| 1651 48212 +a los ||| people ||| 0.000699354 0.000711497 0.000954119 0.00426625 2.718 ||| 0-0 1-0 ||| 65775 48212 +a los ||| per ||| 0.000322373 0.000182116 2.07417e-05 5.57e-05 2.718 ||| 0-0 ||| 3102 48212 +a los ||| perhaps specifically for the benefit of the ||| 1 0.00230489 2.07417e-05 6.84261e-18 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| permissible , to use the ||| 0.5 0.0281035 2.07417e-05 6.88292e-11 2.718 ||| 0-2 1-4 ||| 2 48212 +a los ||| perpetrated at the expense ||| 0.5 0.0249683 2.07417e-05 4.4751e-12 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| perpetrated at the ||| 0.333333 0.0249683 2.07417e-05 2.30675e-07 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| personal reference to our friend on the ||| 1 0.00957523 2.07417e-05 8.31541e-20 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| persons ||| 0.000567537 0.00134908 4.14834e-05 0.0001313 2.718 ||| 1-0 ||| 3524 48212 +a los ||| persuade the ||| 0.00421941 0.0258548 2.07417e-05 9.71157e-05 2.718 ||| 0-0 1-1 ||| 237 48212 +a los ||| pertaining to the ||| 0.0149254 0.0281035 2.07417e-05 9.16611e-07 2.718 ||| 0-1 1-2 ||| 67 48212 +a los ||| pictures for ||| 0.333333 0.0012174 2.07417e-05 9.21213e-08 2.718 ||| 0-1 ||| 3 48212 +a los ||| pitting the ||| 0.0909091 0.0283886 2.07417e-05 5.10458e-06 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| place during the ||| 0.00862069 0.000664189 2.07417e-05 6.01034e-08 2.718 ||| 0-1 1-2 ||| 116 48212 +a los ||| place of the ||| 0.00900901 0.00230489 2.07417e-05 1.90953e-05 2.718 ||| 0-1 1-2 ||| 111 48212 +a los ||| place with the ||| 0.0153846 0.00698995 2.07417e-05 1.0778e-05 2.718 ||| 0-1 1-2 ||| 65 48212 +a los ||| placed on the ||| 0.00374532 0.00957523 2.07417e-05 2.03734e-06 2.718 ||| 0-1 1-2 ||| 267 48212 +a los ||| placed on ||| 0.00181488 0.00139487 2.07417e-05 4.74954e-06 2.718 ||| 0-1 ||| 551 48212 +a los ||| plane ||| 0.00307692 0.000312246 2.07417e-05 1.9e-06 2.718 ||| 1-0 ||| 325 48212 +a los ||| plans ||| 0.000153116 0.0063567 2.07417e-05 0.0007623 2.718 ||| 1-0 ||| 6531 48212 +a los ||| played off against the ||| 0.2 0.006293 2.07417e-05 2.2374e-11 2.718 ||| 0-2 1-3 ||| 5 48212 +a los ||| players benefit as ||| 1 0.00476045 2.07417e-05 9.10645e-10 2.718 ||| 1-0 0-1 0-2 ||| 1 48212 +a los ||| players ||| 0.000544366 0.00837433 2.07417e-05 0.0003753 2.718 ||| 1-0 ||| 1837 48212 +a los ||| plight of those ||| 0.0588235 0.0053661 2.07417e-05 1.23472e-09 2.718 ||| 0-1 1-2 ||| 17 48212 +a los ||| pointing the finger at ||| 0.0357143 0.0249683 2.07417e-05 5.83287e-12 2.718 ||| 1-1 0-3 ||| 28 48212 +a los ||| points of ||| 0.000848176 0.000402041 2.07417e-05 8.91496e-06 2.718 ||| 1-0 0-1 ||| 1179 48212 +a los ||| points to ||| 0.00282486 0.00409398 2.07417e-05 4.55042e-05 2.718 ||| 0-1 ||| 354 48212 +a los ||| points ||| 0.000148214 0.00106901 4.14834e-05 0.0003014 2.718 ||| 1-0 ||| 13494 48212 +a los ||| policies in the ||| 0.0178571 0.00718601 2.07417e-05 1.69843e-06 2.718 ||| 0-1 1-2 ||| 56 48212 +a los ||| policy also kick-starts innovation in those regions ||| 1 0.01673 2.07417e-05 7.55829e-25 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| policy also kick-starts innovation in those ||| 1 0.01673 2.07417e-05 9.17268e-21 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| policy closer to the ||| 1 0.0281035 2.07417e-05 1.26009e-08 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| political leaders ||| 0.00205339 0.0113447 2.07417e-05 1.97849e-07 2.718 ||| 1-1 ||| 487 48212 +a los ||| political ||| 1.91402e-05 3.90853e-05 2.07417e-05 3.69e-05 2.718 ||| 1-0 ||| 52246 48212 +a los ||| poor ||| 0.000192493 0.00158212 2.07417e-05 0.0001653 2.718 ||| 1-0 ||| 5195 48212 +a los ||| popular expression ||| 0.5 0.000860022 2.07417e-05 8.7098e-10 2.718 ||| 1-0 ||| 2 48212 +a los ||| popular with the ||| 0.0769231 0.00698995 2.07417e-05 7.73439e-08 2.718 ||| 0-1 1-2 ||| 13 48212 +a los ||| popular ||| 0.000874126 0.000860022 2.07417e-05 2.14e-05 2.718 ||| 1-0 ||| 1144 48212 +a los ||| position against those ||| 0.5 0.0146509 2.07417e-05 1.42934e-08 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| position of the ||| 0.000912409 0.00230489 2.07417e-05 4.17812e-06 2.718 ||| 0-1 1-2 ||| 1096 48212 +a los ||| position of those ||| 0.04 0.0053661 2.07417e-05 1.62638e-07 2.718 ||| 0-1 1-2 ||| 25 48212 +a los ||| position on the ||| 0.00253807 0.00957523 2.07417e-05 5.3586e-06 2.718 ||| 0-1 1-2 ||| 394 48212 +a los ||| positions of the ||| 0.00571429 0.00230489 2.07417e-05 4.2885e-07 2.718 ||| 0-1 1-2 ||| 175 48212 +a los ||| possible for it to ||| 0.166667 0.00409398 2.07417e-05 3.84029e-08 2.718 ||| 0-3 ||| 6 48212 +a los ||| possible for the ||| 0.00373134 0.00835696 2.07417e-05 1.26783e-05 2.718 ||| 0-1 1-2 ||| 268 48212 +a los ||| possible for those ||| 0.0909091 0.0194561 2.07417e-05 4.93517e-07 2.718 ||| 0-1 1-2 ||| 11 48212 +a los ||| possible for ||| 0.000786163 0.000132158 2.07417e-05 2.61624e-06 2.718 ||| 1-0 0-1 ||| 1272 48212 +a los ||| possible to the ||| 0.0208333 0.0281035 2.07417e-05 0.000120527 2.718 ||| 0-1 1-2 ||| 48 48212 +a los ||| possible to ||| 0.000227531 0.00409398 2.07417e-05 0.000280977 2.718 ||| 0-1 ||| 4395 48212 +a los ||| potentially at ||| 0.0714286 0.00363727 2.07417e-05 5.37759e-07 2.718 ||| 0-1 ||| 14 48212 +a los ||| power to the ||| 0.0117647 0.0281035 2.07417e-05 2.24344e-05 2.718 ||| 0-1 1-2 ||| 85 48212 +a los ||| practitioners ||| 0.00571429 0.012233 2.07417e-05 6.03e-05 2.718 ||| 1-0 ||| 175 48212 +a los ||| precisely the ||| 0.00149701 0.000102588 2.07417e-05 1.9732e-06 2.718 ||| 0-0 1-1 ||| 668 48212 +a los ||| preparations ||| 0.00060423 0.00948526 2.07417e-05 0.000384 2.718 ||| 1-0 ||| 1655 48212 +a los ||| presence in the ||| 0.00840336 0.00718601 2.07417e-05 9.92252e-07 2.718 ||| 0-1 1-2 ||| 119 48212 +a los ||| present for the ||| 0.025641 0.00835696 2.07417e-05 5.78514e-06 2.718 ||| 0-1 1-2 ||| 39 48212 +a los ||| present to hear the ||| 0.2 0.0281035 2.07417e-05 5.58216e-09 2.718 ||| 0-1 1-3 ||| 5 48212 +a los ||| presently focusing its attention on ||| 0.333333 0.00139487 2.07417e-05 1.14109e-18 2.718 ||| 0-4 ||| 3 48212 +a los ||| preserve of the ||| 0.0357143 0.00117109 2.07417e-05 8.11135e-08 2.718 ||| 0-1 1-1 1-2 ||| 28 48212 +a los ||| press ahead with ||| 0.0113636 0.00101826 2.07417e-05 5.49569e-11 2.718 ||| 0-2 ||| 88 48212 +a los ||| pressed ahead with their ||| 0.5 0.00101826 2.07417e-05 1.05465e-14 2.718 ||| 0-2 ||| 2 48212 +a los ||| pressed ahead with ||| 0.142857 0.00101826 2.07417e-05 9.09883e-12 2.718 ||| 0-2 ||| 7 48212 +a los ||| pressed for the freedom to ||| 0.5 0.00835696 2.07417e-05 5.99031e-13 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| pressed for the freedom ||| 0.5 0.00835696 2.07417e-05 6.74143e-12 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| pressed for the ||| 0.0833333 0.00835696 2.07417e-05 7.9032e-08 2.718 ||| 0-1 1-2 ||| 12 48212 +a los ||| pressure on the ||| 0.00575816 0.00957523 6.22252e-05 9.7799e-07 2.718 ||| 0-1 1-2 ||| 521 48212 +a los ||| pressure to bear on the ||| 0.030303 0.00957523 2.07417e-05 1.30093e-11 2.718 ||| 0-3 1-4 ||| 33 48212 +a los ||| prevent the ' ||| 0.125 0.00612862 2.07417e-05 7.52919e-08 2.718 ||| 1-1 ||| 8 48212 +a los ||| prevent the ||| 0.000678887 0.00612862 2.07417e-05 2.19197e-05 2.718 ||| 1-1 ||| 1473 48212 +a los ||| prevented from going to the ||| 1 0.0281035 2.07417e-05 4.70097e-12 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| principle to the ||| 0.0322581 0.0281035 2.07417e-05 2.30355e-05 2.718 ||| 0-1 1-2 ||| 31 48212 +a los ||| priority in the ||| 0.00813008 0.00718601 2.07417e-05 1.43812e-06 2.718 ||| 0-1 1-2 ||| 123 48212 +a los ||| priority over ||| 0.00787402 0.00121592 2.07417e-05 1.29618e-07 2.718 ||| 0-1 ||| 127 48212 +a los ||| priority to all the ||| 1 0.0160962 2.07417e-05 2.25407e-08 2.718 ||| 0-1 1-2 1-3 ||| 1 48212 +a los ||| problem of the ||| 0.0013089 0.00230489 2.07417e-05 2.85351e-06 2.718 ||| 0-1 1-2 ||| 764 48212 +a los ||| problems in ||| 0.000796178 0.00532475 2.07417e-05 6.56369e-05 2.718 ||| 1-0 ||| 1256 48212 +a los ||| problems that are ||| 0.0149254 0.00532475 2.07417e-05 7.8266e-07 2.718 ||| 1-0 ||| 67 48212 +a los ||| problems that ||| 0.000925926 0.00532475 2.07417e-05 5.15834e-05 2.718 ||| 1-0 ||| 1080 48212 +a los ||| problems which exist in ||| 0.142857 0.00624344 2.07417e-05 1.44143e-10 2.718 ||| 1-0 0-3 ||| 7 48212 +a los ||| problems ||| 0.000173166 0.00532475 0.000103709 0.0030665 2.718 ||| 1-0 ||| 28874 48212 +a los ||| procedures used in ||| 0.25 0.0129174 2.07417e-05 6.12475e-08 2.718 ||| 1-0 0-2 ||| 4 48212 +a los ||| processes ||| 0.00108264 0.00997996 6.22252e-05 0.0006738 2.718 ||| 1-0 ||| 2771 48212 +a los ||| products from the ||| 0.0113636 0.0053267 2.07417e-05 3.21149e-07 2.718 ||| 0-1 1-2 ||| 88 48212 +a los ||| products ||| 0.000356422 0.0122913 0.00012445 0.0050042 2.718 ||| 1-0 ||| 16834 48212 +a los ||| profit the ||| 0.2 0.00612862 2.07417e-05 5.57643e-06 2.718 ||| 1-1 ||| 5 48212 +a los ||| profits ||| 0.000535045 0.00797939 2.07417e-05 0.0003568 2.718 ||| 1-0 ||| 1869 48212 +a los ||| programme to cover ||| 0.25 0.00199389 2.07417e-05 1.34332e-09 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| programme to include ||| 0.142857 0.00409398 2.07417e-05 5.9088e-09 2.718 ||| 0-1 ||| 7 48212 +a los ||| programme to ||| 0.00235849 0.00409398 2.07417e-05 4.46284e-05 2.718 ||| 0-1 ||| 424 48212 +a los ||| progress ||| 5.66476e-05 0.00196882 2.07417e-05 0.0008488 2.718 ||| 1-0 ||| 17653 48212 +a los ||| properly in the ||| 0.04 0.00718601 2.07417e-05 1.92007e-06 2.718 ||| 0-1 1-2 ||| 25 48212 +a los ||| property ||| 0.00109529 0.00836757 4.14834e-05 0.0005445 2.718 ||| 1-0 ||| 1826 48212 +a los ||| proposed by the ||| 0.000390778 0.00413296 2.07417e-05 3.93863e-07 2.718 ||| 0-1 1-2 ||| 2559 48212 +a los ||| protect the ||| 0.00051573 0.000329582 2.07417e-05 8.23596e-06 2.718 ||| 0-0 1-1 ||| 1939 48212 +a los ||| protected internationally ||| 0.333333 0.00282643 2.07417e-05 6.16896e-09 2.718 ||| 0-1 ||| 3 48212 +a los ||| protecting those ||| 0.037037 0.000322714 2.07417e-05 6.17811e-08 2.718 ||| 0-0 1-1 ||| 27 48212 +a los ||| protection to trade ||| 1 0.00705988 2.07417e-05 2.6688e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| protects the ||| 0.00900901 0.0267771 2.07417e-05 4.9716e-05 2.718 ||| 0-0 1-1 ||| 111 48212 +a los ||| protocols ||| 0.00280112 0.00510889 2.07417e-05 4.08e-05 2.718 ||| 1-0 ||| 357 48212 +a los ||| provide the ||| 0.000810373 0.00612862 2.07417e-05 0.000126885 2.718 ||| 1-1 ||| 1234 48212 +a los ||| provided to the ||| 0.0142857 0.0281035 2.07417e-05 3.44405e-05 2.718 ||| 0-1 1-2 ||| 70 48212 +a los ||| providers ||| 0.000618429 0.0158077 2.07417e-05 0.0006621 2.718 ||| 1-0 ||| 1617 48212 +a los ||| public demand for more ||| 0.5 0.00109997 2.07417e-05 2.66209e-12 2.718 ||| 1-0 0-2 ||| 2 48212 +a los ||| public demand for ||| 0.1 0.00109997 2.07417e-05 1.16569e-09 2.718 ||| 1-0 0-2 ||| 10 48212 +a los ||| public ||| 0.000117079 0.000806669 8.29669e-05 0.0005902 2.718 ||| 1-0 ||| 34165 48212 +a los ||| purposes are in any way ||| 0.5 0.00104667 2.07417e-05 2.19427e-13 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| purposes are in any ||| 0.5 0.00104667 2.07417e-05 1.01794e-10 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| purse back to the ||| 1 0.0281035 2.07417e-05 3.23416e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| put on them ||| 0.25 0.00299247 2.07417e-05 8.41826e-08 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| put on ||| 0.00170648 0.00139487 2.07417e-05 4.18278e-05 2.718 ||| 0-1 ||| 586 48212 +a los ||| put out ||| 0.0102041 0.00119317 2.07417e-05 4.52176e-06 2.718 ||| 0-1 ||| 98 48212 +a los ||| put the ||| 0.00115075 0.000194146 2.07417e-05 1.76301e-05 2.718 ||| 0-0 1-1 ||| 869 48212 +a los ||| put to the ||| 0.00201613 0.0281035 2.07417e-05 0.000165681 2.718 ||| 0-1 1-2 ||| 496 48212 +a los ||| quicker off the mark ||| 0.142857 0.0109322 2.07417e-05 4.45408e-14 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| quicker off the ||| 0.25 0.0109322 2.07417e-05 8.20272e-10 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| raise the ||| 0.00123153 0.00612862 2.07417e-05 2.82682e-05 2.718 ||| 1-1 ||| 812 48212 +a los ||| raise up those ||| 1 0.00555395 2.07417e-05 1.35082e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| raised in the ||| 0.00316456 0.00718601 2.07417e-05 2.96902e-06 2.718 ||| 0-1 1-2 ||| 316 48212 +a los ||| rapporteurs to our ||| 1 0.0057078 2.07417e-05 9.8826e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| rapporteurs ||| 0.000211775 0.00149995 2.07417e-05 0.0001322 2.718 ||| 1-0 ||| 4722 48212 +a los ||| rate down to the ||| 1 0.0281035 2.07417e-05 1.05319e-08 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| rate markets to the ||| 1 0.0281035 2.07417e-05 4.23931e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| rates of ||| 0.00277778 0.00891313 2.07417e-05 5.72942e-05 2.718 ||| 1-0 ||| 360 48212 +a los ||| rates ||| 0.000235073 0.00891313 2.07417e-05 0.0010539 2.718 ||| 1-0 ||| 4254 48212 +a los ||| rather reminiscent of ||| 1 0.000310705 2.07417e-05 3.51437e-11 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| rather than ||| 0.000129668 0.000431595 2.07417e-05 3.84863e-07 2.718 ||| 0-1 ||| 7712 48212 +a los ||| rationality employed to spend taxpayers ' ||| 0.333333 0.0507242 2.07417e-05 9.15794e-22 2.718 ||| 0-2 1-4 1-5 ||| 3 48212 +a los ||| reach those ||| 0.0322581 0.0519852 2.07417e-05 2.4492e-05 2.718 ||| 0-0 1-1 ||| 31 48212 +a los ||| reached the ||| 0.00218818 0.017716 2.07417e-05 0.000527402 2.718 ||| 0-0 1-1 ||| 457 48212 +a los ||| reached their ||| 0.0416667 0.00342926 2.07417e-05 2.81273e-06 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| reached ||| 0.000173883 0.00258078 2.07417e-05 0.0012295 2.718 ||| 0-0 ||| 5751 48212 +a los ||| reaches the ||| 0.0114943 0.031579 2.07417e-05 5.83381e-05 2.718 ||| 0-0 1-1 ||| 87 48212 +a los ||| reaches those ||| 0.125 0.0735201 2.07417e-05 2.27087e-06 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| reaching for our ||| 1 0.00314855 2.07417e-05 5.32017e-08 2.718 ||| 0-0 0-1 1-2 ||| 1 48212 +a los ||| really watch the ||| 0.2 0.00612862 2.07417e-05 3.74016e-09 2.718 ||| 1-2 ||| 5 48212 +a los ||| reason that payments have to be effected ||| 1 0.0629417 2.07417e-05 1.85467e-18 2.718 ||| 1-2 0-4 ||| 1 48212 +a los ||| reason that payments have to be ||| 1 0.0629417 2.07417e-05 4.31319e-13 2.718 ||| 1-2 0-4 ||| 1 48212 +a los ||| reason that payments have to ||| 1 0.0629417 2.07417e-05 2.37997e-11 2.718 ||| 1-2 0-4 ||| 1 48212 +a los ||| reassure our ||| 0.0526316 0.00707644 2.07417e-05 9.97408e-07 2.718 ||| 0-0 1-1 ||| 19 48212 +a los ||| reassure the ||| 0.0113636 0.0348422 2.07417e-05 0.000119807 2.718 ||| 0-0 1-1 ||| 88 48212 +a los ||| reassure ||| 0.00201613 0.00507564 2.07417e-05 0.0002793 2.718 ||| 0-0 ||| 496 48212 +a los ||| receive the ||| 0.0021978 0.000250925 2.07417e-05 4.28956e-06 2.718 ||| 0-0 1-1 ||| 455 48212 +a los ||| received the ||| 0.00266667 0.00612862 2.07417e-05 3.84345e-05 2.718 ||| 1-1 ||| 375 48212 +a los ||| recipients ||| 0.00277008 0.01094 2.07417e-05 0.0001021 2.718 ||| 1-0 ||| 361 48212 +a los ||| recognition to the ||| 0.047619 0.0281035 2.07417e-05 4.22242e-06 2.718 ||| 0-1 1-2 ||| 21 48212 +a los ||| record to record ||| 0.166667 0.00409398 2.07417e-05 1.09071e-09 2.718 ||| 0-1 ||| 6 48212 +a los ||| record to ||| 0.05 0.00409398 2.07417e-05 1.95468e-05 2.718 ||| 0-1 ||| 20 48212 +a los ||| recourse against the ||| 0.25 0.006293 2.07417e-05 1.36039e-08 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| recruitment ||| 0.00128205 0.000593967 2.07417e-05 7.8e-06 2.718 ||| 1-0 ||| 780 48212 +a los ||| redundant ||| 0.00280899 0.000895439 2.07417e-05 3.47e-05 2.718 ||| 0-0 ||| 356 48212 +a los ||| refer to the ||| 0.00429646 0.0281035 8.29669e-05 1.17356e-05 2.718 ||| 0-1 1-2 ||| 931 48212 +a los ||| reference to our friend on the ||| 1 0.00957523 2.07417e-05 1.95657e-15 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| reference to the ||| 0.000922509 0.0281035 2.07417e-05 1.28175e-05 2.718 ||| 0-1 1-2 ||| 1084 48212 +a los ||| reference to ||| 0.000409333 0.00409398 2.07417e-05 2.98807e-05 2.718 ||| 0-1 ||| 2443 48212 +a los ||| referring to milk ||| 0.166667 0.00409398 2.07417e-05 1.57384e-10 2.718 ||| 0-1 ||| 6 48212 +a los ||| referring to the ||| 0.00218341 0.0281035 2.07417e-05 6.49141e-06 2.718 ||| 0-1 1-2 ||| 458 48212 +a los ||| referring to ||| 0.000998004 0.00409398 2.07417e-05 1.5133e-05 2.718 ||| 0-1 ||| 1002 48212 +a los ||| reflected in the ||| 0.00178571 0.00718601 2.07417e-05 5.2061e-07 2.718 ||| 0-1 1-2 ||| 560 48212 +a los ||| refugees ||| 0.000213904 0.0134638 2.07417e-05 0.0014983 2.718 ||| 1-0 ||| 4675 48212 +a los ||| regard to participation in the ||| 1 0.00718601 2.07417e-05 3.75802e-11 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| regard to the heartfelt ||| 1 0.0281035 2.07417e-05 2.25093e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| regard to the ||| 0.00141069 0.0281035 0.000165934 0.000102315 2.718 ||| 0-1 1-2 ||| 5671 48212 +a los ||| regard to ||| 0.000152404 0.00409398 4.14834e-05 0.00023852 2.718 ||| 0-1 ||| 13123 48212 +a los ||| regarding the ||| 0.000904814 0.0227982 0.000103709 0.00144357 2.718 ||| 0-0 1-1 ||| 5526 48212 +a los ||| regards the ||| 0.00199071 0.0322152 0.00012445 0.00192516 2.718 ||| 0-0 1-1 ||| 3014 48212 +a los ||| regards ||| 0.000126056 0.00469295 2.07417e-05 0.004488 2.718 ||| 0-0 ||| 7933 48212 +a los ||| regime granted the ||| 0.5 0.00257898 2.07417e-05 8.6907e-10 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| regimes ||| 0.000771605 0.0101224 2.07417e-05 0.0002975 2.718 ||| 1-0 ||| 1296 48212 +a los ||| regular visits to the ||| 1 0.0281035 2.07417e-05 1.32232e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| regulations ||| 0.00020145 0.00294182 4.14834e-05 0.0005454 2.718 ||| 1-0 ||| 9928 48212 +a los ||| regulatory framework ||| 0.00155039 6.51505e-05 2.07417e-05 4.6449e-10 2.718 ||| 1-0 ||| 645 48212 +a los ||| regulatory ||| 0.000273149 6.51505e-05 2.07417e-05 3.9e-06 2.718 ||| 1-0 ||| 3661 48212 +a los ||| reign in ||| 0.0666667 0.00104682 2.07417e-05 3.66503e-07 2.718 ||| 0-1 ||| 15 48212 +a los ||| rekindled until the ||| 0.5 0.00612862 2.07417e-05 8.33891e-12 2.718 ||| 1-2 ||| 2 48212 +a los ||| relate to its ||| 0.25 0.00485755 2.07417e-05 1.85486e-08 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| related to the ||| 0.00120627 0.0281035 2.07417e-05 9.8423e-06 2.718 ||| 0-1 1-2 ||| 829 48212 +a los ||| related ||| 0.000894055 0.000630036 4.14834e-05 6.61e-05 2.718 ||| 1-0 ||| 2237 48212 +a los ||| relates to port ||| 1 0.0101161 2.07417e-05 8.80007e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| relation to the proposal for ||| 0.25 0.00835696 2.07417e-05 6.82418e-11 2.718 ||| 1-2 0-4 ||| 4 48212 +a los ||| relation to the ||| 0.00166223 0.0281035 0.000103709 3.65593e-05 2.718 ||| 0-1 1-2 ||| 3008 48212 +a los ||| relation to ||| 0.000134989 0.00409398 2.07417e-05 8.52284e-05 2.718 ||| 0-1 ||| 7408 48212 +a los ||| relations with ||| 0.000327869 0.00101826 2.07417e-05 9.06544e-07 2.718 ||| 0-1 ||| 3050 48212 +a los ||| relatives in the ||| 0.111111 0.00718601 2.07417e-05 1.03091e-07 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| release the ||| 0.00884956 0.000172892 2.07417e-05 1.15818e-06 2.718 ||| 0-0 1-1 ||| 113 48212 +a los ||| relevant to the ||| 0.00584795 0.0281035 2.07417e-05 1.61684e-05 2.718 ||| 0-1 1-2 ||| 171 48212 +a los ||| relief to the ||| 0.125 0.0281035 2.07417e-05 1.68296e-06 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| remind the ||| 0.00263852 0.000306958 2.07417e-05 5.10458e-06 2.718 ||| 0-0 1-1 ||| 379 48212 +a los ||| reminiscent of ||| 0.0138889 0.000310705 2.07417e-05 1.14774e-07 2.718 ||| 0-0 1-1 ||| 72 48212 +a los ||| remote to the average ||| 1 0.0281035 2.07417e-05 2.42226e-11 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| remote to the ||| 1 0.0281035 2.07417e-05 9.76717e-07 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| removed from the ||| 0.00469484 0.0053267 2.07417e-05 1.39885e-07 2.718 ||| 0-1 1-2 ||| 213 48212 +a los ||| repeatedly pressed for the freedom to ||| 0.5 0.00835696 2.07417e-05 1.07826e-17 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| repeatedly pressed for the freedom ||| 0.5 0.00835696 2.07417e-05 1.21346e-16 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| repeatedly pressed for the ||| 0.5 0.00835696 2.07417e-05 1.42258e-12 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| replace the ||| 0.00186567 0.00089715 2.07417e-05 5.10458e-06 2.718 ||| 0-0 1-1 ||| 536 48212 +a los ||| replacing the ||| 0.00540541 0.00280721 2.07417e-05 6.26276e-06 2.718 ||| 0-0 1-1 ||| 185 48212 +a los ||| reports ||| 8.8129e-05 0.00435434 2.07417e-05 0.000983 2.718 ||| 1-0 ||| 11347 48212 +a los ||| represent the ||| 0.00164204 0.000507953 2.07417e-05 7.8499e-06 2.718 ||| 0-0 1-1 ||| 609 48212 +a los ||| representative present to hear the ||| 0.5 0.0281035 2.07417e-05 1.30623e-13 2.718 ||| 0-2 1-4 ||| 2 48212 +a los ||| representatives in ||| 0.00980392 0.00796302 2.07417e-05 5.78895e-05 2.718 ||| 1-0 0-1 ||| 102 48212 +a los ||| representatives ||| 0.000275255 0.0067913 4.14834e-05 0.0009635 2.718 ||| 1-0 ||| 7266 48212 +a los ||| represents a cause for ||| 0.5 0.0012174 2.07417e-05 1.09499e-11 2.718 ||| 0-3 ||| 2 48212 +a los ||| represents the ||| 0.00197239 0.00612862 2.07417e-05 1.59143e-05 2.718 ||| 1-1 ||| 507 48212 +a los ||| require the ||| 0.00381679 7.91333e-05 2.07417e-05 1.15818e-06 2.718 ||| 0-0 1-1 ||| 262 48212 +a los ||| required by ||| 0.00234192 0.00060207 2.07417e-05 1.3057e-06 2.718 ||| 0-1 ||| 427 48212 +a los ||| required to meet ||| 0.0333333 0.00409398 2.07417e-05 6.76009e-09 2.718 ||| 0-1 ||| 30 48212 +a los ||| required to ||| 0.00080064 0.00409398 2.07417e-05 5.55929e-05 2.718 ||| 0-1 ||| 1249 48212 +a los ||| requiring the ||| 0.00680272 0.00102843 2.07417e-05 4.28956e-06 2.718 ||| 0-0 1-1 ||| 147 48212 +a los ||| reserved for the ||| 0.0517241 0.00835696 6.22252e-05 1.02742e-07 2.718 ||| 0-1 1-2 ||| 58 48212 +a los ||| resort to the ||| 0.015873 0.0281035 2.07417e-05 2.32909e-06 2.718 ||| 0-1 1-2 ||| 63 48212 +a los ||| resources are ||| 0.00364964 0.0110044 2.07417e-05 7.35527e-05 2.718 ||| 1-0 ||| 274 48212 +a los ||| resources available to compensate victims ||| 1 0.050462 2.07417e-05 5.52986e-17 2.718 ||| 1-0 0-2 ||| 1 48212 +a los ||| resources available to compensate ||| 1 0.050462 2.07417e-05 1.56653e-12 2.718 ||| 1-0 0-2 ||| 1 48212 +a los ||| resources available to ||| 0.0153846 0.050462 2.07417e-05 5.40184e-07 2.718 ||| 1-0 0-2 ||| 65 48212 +a los ||| resources ||| 0.000210349 0.0110044 8.29669e-05 0.0048477 2.718 ||| 1-0 ||| 19016 48212 +a los ||| respect of both the ||| 1 0.00251276 2.07417e-05 6.61176e-09 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| respect of least-developed , ||| 1 0.00187308 2.07417e-05 4.74568e-11 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| respect of least-developed ||| 1 0.00187308 2.07417e-05 3.97945e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| respect of the ||| 0.000946074 0.00230489 2.07417e-05 5.48878e-06 2.718 ||| 0-1 1-2 ||| 1057 48212 +a los ||| respect the ||| 0.000591017 0.00612862 2.07417e-05 0.000185566 2.718 ||| 1-1 ||| 1692 48212 +a los ||| respecting the ||| 0.00337268 0.00035267 4.14834e-05 1.58714e-06 2.718 ||| 0-0 1-1 ||| 593 48212 +a los ||| respond to ||| 0.000493097 0.00409398 2.07417e-05 9.94857e-06 2.718 ||| 0-1 ||| 2028 48212 +a los ||| response to the ||| 0.00184332 0.0281035 4.14834e-05 1.50264e-05 2.718 ||| 0-1 1-2 ||| 1085 48212 +a los ||| responsibility of individual ||| 0.2 0.00207988 2.07417e-05 4.39099e-09 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| responsibility of the ||| 0.0023175 0.00117109 4.14834e-05 8.14662e-07 2.718 ||| 0-1 1-1 1-2 ||| 863 48212 +a los ||| responsible for that damage the ||| 0.333333 0.00835696 2.07417e-05 1.65558e-12 2.718 ||| 0-1 1-4 ||| 3 48212 +a los ||| responsible for the ||| 0.000693963 0.00835696 2.07417e-05 2.33777e-06 2.718 ||| 0-1 1-2 ||| 1441 48212 +a los ||| responsible ||| 9.40734e-05 2.78193e-05 2.07417e-05 5.8e-06 2.718 ||| 1-0 ||| 10630 48212 +a los ||| restricted by the ||| 0.0357143 0.00413296 2.07417e-05 5.5762e-08 2.718 ||| 0-1 1-2 ||| 28 48212 +a los ||| result of the Council , but as ||| 1 0.00230489 2.07417e-05 1.9211e-15 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| result of the Council , but ||| 1 0.00230489 2.07417e-05 1.88262e-13 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| result of the Council , ||| 1 0.00230489 2.07417e-05 2.75479e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| result of the Council ||| 0.333333 0.00230489 2.07417e-05 2.31e-09 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| result of the ||| 0.00105485 0.00230489 4.14834e-05 6.68017e-06 2.718 ||| 0-1 1-2 ||| 1896 48212 +a los ||| result of using ||| 0.0909091 0.000335766 2.07417e-05 1.21003e-09 2.718 ||| 0-1 ||| 11 48212 +a los ||| result of ||| 0.000183419 0.000335766 2.07417e-05 1.55731e-05 2.718 ||| 0-1 ||| 5452 48212 +a los ||| return to huge ||| 1 0.000311303 2.07417e-05 1.81975e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| returned to the ||| 0.019802 0.0281035 4.14834e-05 1.99851e-06 2.718 ||| 0-1 1-2 ||| 101 48212 +a los ||| revenue has dropped ||| 0.5 0.0101431 2.07417e-05 2.14113e-11 2.718 ||| 1-0 ||| 2 48212 +a los ||| revenue has ||| 0.142857 0.0101431 2.07417e-05 1.86185e-06 2.718 ||| 1-0 ||| 7 48212 +a los ||| revenue ||| 0.000655738 0.0101431 2.07417e-05 0.0003617 2.718 ||| 1-0 ||| 1525 48212 +a los ||| reversed the ||| 0.1 0.00612862 2.07417e-05 2.14478e-06 2.718 ||| 1-1 ||| 10 48212 +a los ||| revert to the ||| 0.0322581 0.0281035 2.07417e-05 2.70475e-07 2.718 ||| 0-1 1-2 ||| 31 48212 +a los ||| review of the ||| 0.000911577 0.00230489 2.07417e-05 4.79602e-07 2.718 ||| 0-1 1-2 ||| 1097 48212 +a los ||| reviewing the ||| 0.00342466 0.00488227 2.07417e-05 8.23596e-06 2.718 ||| 0-0 1-1 ||| 292 48212 +a los ||| reward ||| 0.0030581 0.0032266 2.07417e-05 6.48e-05 2.718 ||| 0-0 ||| 327 48212 +a los ||| right across the ||| 0.0052356 0.00600144 2.07417e-05 1.36104e-07 2.718 ||| 0-1 1-2 ||| 191 48212 +a los ||| right at the ||| 0.00564972 0.0249683 2.07417e-05 9.41535e-06 2.718 ||| 0-1 1-2 ||| 177 48212 +a los ||| right back to the ||| 0.25 0.0281035 2.07417e-05 6.51785e-08 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| right in the ||| 0.0138889 0.00718601 2.07417e-05 1.66209e-05 2.718 ||| 0-1 1-2 ||| 72 48212 +a los ||| rights from the ||| 0.1 0.0053267 2.07417e-05 6.17903e-07 2.718 ||| 0-1 1-2 ||| 10 48212 +a los ||| rights of those ||| 0.0136986 0.0053661 2.07417e-05 9.88274e-08 2.718 ||| 0-1 1-2 ||| 73 48212 +a los ||| rights to the ||| 0.0333333 0.0281035 2.07417e-05 3.00678e-05 2.718 ||| 0-1 1-2 ||| 30 48212 +a los ||| rise to ||| 0.00077101 0.00409398 2.07417e-05 4.39979e-05 2.718 ||| 0-1 ||| 1297 48212 +a los ||| road towards EU membership ||| 1 0.000671634 2.07417e-05 3.98448e-15 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| road towards EU ||| 1 0.000671634 2.07417e-05 1.62632e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| role of the ||| 0.000494805 0.00230489 2.07417e-05 2.81671e-06 2.718 ||| 0-1 1-2 ||| 2021 48212 +a los ||| rolled up ||| 0.166667 0.000158456 2.07417e-05 9.116e-10 2.718 ||| 1-1 ||| 6 48212 +a los ||| rooms ||| 0.00714286 0.000715939 2.07417e-05 4.9e-06 2.718 ||| 1-0 ||| 140 48212 +a los ||| rooms ’ ||| 0.5 0.000715939 2.07417e-05 8.53629e-09 2.718 ||| 1-0 ||| 2 48212 +a los ||| roots ||| 0.00229621 0.000161399 4.14834e-05 7.3e-06 2.718 ||| 0-0 ||| 871 48212 +a los ||| rule was applied to ||| 0.5 0.00409398 2.07417e-05 9.66321e-12 2.718 ||| 0-3 ||| 2 48212 +a los ||| rules to keep pace with ||| 0.5 0.00101826 2.07417e-05 5.21029e-16 2.718 ||| 0-4 ||| 2 48212 +a los ||| rushing headlong into the ||| 0.333333 0.0131557 2.07417e-05 5.15911e-15 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| s members will be ||| 0.5 0.00774865 2.07417e-05 5.92149e-10 2.718 ||| 1-1 ||| 2 48212 +a los ||| s members will ||| 0.5 0.00774865 2.07417e-05 3.26741e-08 2.718 ||| 1-1 ||| 2 48212 +a los ||| s members ||| 0.166667 0.00774865 2.07417e-05 3.77683e-06 2.718 ||| 1-1 ||| 6 48212 +a los ||| s workforce ||| 0.0769231 0.000654041 2.07417e-05 2.96759e-08 2.718 ||| 1-1 ||| 13 48212 +a los ||| s ||| 0.000373396 0.00171175 0.000165934 0.001576 2.718 ||| 1-0 ||| 21425 48212 +a los ||| safe to say that the ||| 0.125 0.0281035 2.07417e-05 7.82771e-11 2.718 ||| 0-1 1-4 ||| 8 48212 +a los ||| safety of the ||| 0.00302115 0.00230489 2.07417e-05 6.43276e-07 2.718 ||| 0-1 1-2 ||| 331 48212 +a los ||| same right across the ||| 1 0.00600144 2.07417e-05 1.09523e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| saw in ||| 0.0120482 0.00104682 2.07417e-05 3.22042e-06 2.718 ||| 0-1 ||| 83 48212 +a los ||| say by ||| 0.047619 0.00060207 2.07417e-05 7.86384e-06 2.718 ||| 0-1 ||| 21 48212 +a los ||| say to those ||| 0.0277778 0.0654285 2.07417e-05 5.59066e-06 2.718 ||| 0-1 1-2 ||| 36 48212 +a los ||| saying to the ||| 0.03125 0.0281035 2.07417e-05 2.66568e-05 2.718 ||| 0-1 1-2 ||| 32 48212 +a los ||| saying to those ||| 1 0.0654285 2.07417e-05 1.03765e-06 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| scene of the ||| 0.037037 0.00230489 2.07417e-05 1.64942e-07 2.718 ||| 0-1 1-2 ||| 27 48212 +a los ||| schemes ||| 0.000529101 0.00762169 2.07417e-05 0.0005221 2.718 ||| 1-0 ||| 1890 48212 +a los ||| scope to cover the ||| 1 0.0281035 2.07417e-05 1.17004e-09 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| screening off ||| 0.333333 0.00159255 2.07417e-05 3.59503e-09 2.718 ||| 0-1 ||| 3 48212 +a los ||| secondly , to the ||| 0.0714286 0.0281035 2.07417e-05 6.45109e-07 2.718 ||| 0-2 1-3 ||| 14 48212 +a los ||| secondly because ||| 0.0163934 9.27173e-05 2.07417e-05 1.16316e-08 2.718 ||| 0-1 ||| 61 48212 +a los ||| section covering the ||| 0.333333 0.00354081 2.07417e-05 4.41984e-10 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| sectors ||| 0.000277585 0.00735197 4.14834e-05 0.0010977 2.718 ||| 1-0 ||| 7205 48212 +a los ||| securing the agreement ||| 0.111111 0.00612862 2.07417e-05 1.02774e-09 2.718 ||| 1-1 ||| 9 48212 +a los ||| securing the ||| 0.005 0.00612862 2.07417e-05 5.57643e-06 2.718 ||| 1-1 ||| 200 48212 +a los ||| see the ||| 0.000523834 0.00612862 2.07417e-05 0.000302243 2.718 ||| 1-1 ||| 1909 48212 +a los ||| see what ||| 0.00144092 0.000306754 2.07417e-05 6.755e-07 2.718 ||| 1-1 ||| 694 48212 +a los ||| seeking out the ||| 0.125 0.00819065 2.07417e-05 8.91889e-08 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| seems to me ||| 0.00142248 0.00409398 2.07417e-05 2.53522e-08 2.718 ||| 0-1 ||| 703 48212 +a los ||| seems to ||| 0.00042337 0.00409398 2.07417e-05 4.21063e-05 2.718 ||| 0-1 ||| 2362 48212 +a los ||| send a message to the ||| 0.04 0.0281035 2.07417e-05 2.0675e-11 2.718 ||| 0-3 1-4 ||| 25 48212 +a los ||| senior citizens ||| 0.00806452 0.0147126 2.07417e-05 1.84674e-07 2.718 ||| 1-1 ||| 124 48212 +a los ||| sense simply to hope for ||| 0.333333 0.0012174 2.07417e-05 2.26636e-14 2.718 ||| 0-4 ||| 3 48212 +a los ||| sent to the ||| 0.0122699 0.0281035 4.14834e-05 9.03087e-06 2.718 ||| 0-1 1-2 ||| 163 48212 +a los ||| serious clashes with the ||| 1 0.00698995 2.07417e-05 1.815e-12 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| serve the ||| 0.00728155 0.0149399 6.22252e-05 0.000187926 2.718 ||| 0-0 1-1 ||| 412 48212 +a los ||| serve to offer the ||| 0.333333 0.00409398 2.07417e-05 1.68281e-10 2.718 ||| 0-1 ||| 3 48212 +a los ||| serve to offer ||| 0.333333 0.00409398 2.07417e-05 2.7411e-09 2.718 ||| 0-1 ||| 3 48212 +a los ||| serve to ||| 0.0026455 0.00409398 2.07417e-05 2.39606e-05 2.718 ||| 0-1 ||| 378 48212 +a los ||| served up in the form of ||| 0.5 0.00718601 2.07417e-05 4.93763e-14 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| served up in the form ||| 0.5 0.00718601 2.07417e-05 9.08254e-13 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| served up in the ||| 0.5 0.00718601 2.07417e-05 1.99529e-09 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| services , ||| 0.000735835 0.0136403 2.07417e-05 0.000929662 2.718 ||| 1-0 ||| 1359 48212 +a los ||| services ||| 3.9384e-05 0.0136403 2.07417e-05 0.0077956 2.718 ||| 1-0 ||| 25391 48212 +a los ||| serving the ||| 0.00840336 0.0191228 2.07417e-05 4.65847e-05 2.718 ||| 0-0 1-1 ||| 119 48212 +a los ||| set at a fixed ||| 1 0.00147153 2.07417e-05 6.87689e-12 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| set for the ||| 0.0113636 0.00835696 2.07417e-05 9.23726e-06 2.718 ||| 0-1 1-2 ||| 88 48212 +a los ||| set the ||| 0.0017452 0.00612862 2.07417e-05 0.000250682 2.718 ||| 1-1 ||| 573 48212 +a los ||| setting a charge for those ||| 1 0.0194561 2.07417e-05 1.30582e-13 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| setting out the ||| 0.00353357 0.00819065 2.07417e-05 1.67119e-07 2.718 ||| 0-1 1-2 ||| 283 48212 +a los ||| settlements ||| 0.00191939 0.00991472 2.07417e-05 0.0001244 2.718 ||| 1-0 ||| 521 48212 +a los ||| shall ||| 0.000504286 0.00234993 2.07417e-05 0.0024151 2.718 ||| 0-0 ||| 1983 48212 +a los ||| shame the ||| 0.117647 0.000124405 4.14834e-05 3.86061e-07 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| share to the ||| 0.25 0.0281035 2.07417e-05 1.40647e-05 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| she urged the ||| 0.25 0.0390245 2.07417e-05 4.66346e-08 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| ships ||| 0.00203355 0.0148323 8.29669e-05 0.0006981 2.718 ||| 1-0 ||| 1967 48212 +a los ||| shipyards ||| 0.002 0.0105134 2.07417e-05 0.0001585 2.718 ||| 1-0 ||| 500 48212 +a los ||| shops owned by ||| 1 0.00314069 2.07417e-05 2.50083e-12 2.718 ||| 1-0 0-2 ||| 1 48212 +a los ||| should be developing ||| 0.142857 0.00755554 2.07417e-05 2.85909e-07 2.718 ||| 1-2 ||| 7 48212 +a los ||| should be drawn up in the ||| 0.333333 0.00718601 2.07417e-05 1.003e-12 2.718 ||| 0-4 1-5 ||| 3 48212 +a los ||| should be paid back to the ||| 0.5 0.0281035 2.07417e-05 1.09241e-12 2.718 ||| 0-4 1-5 ||| 2 48212 +a los ||| should go to the ||| 0.0526316 0.0281035 2.07417e-05 3.89372e-07 2.718 ||| 0-2 1-3 ||| 19 48212 +a los ||| should have their ||| 0.0454545 0.00118631 2.07417e-05 1.21234e-07 2.718 ||| 1-2 ||| 22 48212 +a los ||| should include the ||| 0.0163934 0.00343942 2.07417e-05 5.03117e-07 2.718 ||| 0-1 1-2 ||| 61 48212 +a los ||| should send a message to the ||| 0.333333 0.0281035 2.07417e-05 9.16107e-14 2.718 ||| 0-4 1-5 ||| 3 48212 +a los ||| should tell the ||| 0.25 0.00035931 2.07417e-05 3.47829e-08 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| showed the ||| 0.00990099 0.00612862 2.07417e-05 9.09387e-06 2.718 ||| 1-1 ||| 101 48212 +a los ||| signal to the ||| 0.00671141 0.0281035 2.07417e-05 3.57629e-06 2.718 ||| 0-1 1-2 ||| 149 48212 +a los ||| signals to ||| 0.0333333 0.00409398 2.07417e-05 2.66229e-06 2.718 ||| 0-1 ||| 30 48212 +a los ||| significance for the ||| 0.0204082 0.00835696 2.07417e-05 3.24031e-07 2.718 ||| 0-1 1-2 ||| 49 48212 +a los ||| similar cuts ||| 0.111111 0.00524494 2.07417e-05 8.89421e-09 2.718 ||| 1-1 ||| 9 48212 +a los ||| simply to hope for ||| 0.333333 0.0012174 2.07417e-05 1.27252e-10 2.718 ||| 0-3 ||| 3 48212 +a los ||| since the objective of peace and ||| 1 0.000620569 2.07417e-05 1.27937e-16 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| since the objective of peace ||| 1 0.000620569 2.07417e-05 1.02138e-14 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| since the objective of ||| 0.333333 0.000620569 2.07417e-05 2.44935e-10 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| since the objective ||| 0.142857 0.000620569 2.07417e-05 4.50546e-09 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| since the ||| 0.000326477 0.000620569 4.14834e-05 6.73461e-05 2.718 ||| 0-0 1-1 ||| 6126 48212 +a los ||| since ||| 3.3539e-05 9.04015e-05 2.07417e-05 0.000157 2.718 ||| 0-0 ||| 29816 48212 +a los ||| sincerest appreciation of the ||| 1 0.00230489 2.07417e-05 1.81437e-13 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| sing from the ||| 0.2 0.0053267 2.07417e-05 9.88151e-09 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| situation to the ||| 0.125 0.0281035 2.07417e-05 7.7386e-05 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| situation where the ||| 0.00546448 0.000651251 2.07417e-05 5.4234e-08 2.718 ||| 0-1 1-2 ||| 183 48212 +a los ||| skinned to make stylish trimmings ||| 0.5 0.00409398 2.07417e-05 6.81805e-23 2.718 ||| 0-1 ||| 2 48212 +a los ||| skinned to make stylish ||| 0.5 0.00409398 2.07417e-05 1.70451e-16 2.718 ||| 0-1 ||| 2 48212 +a los ||| skinned to make ||| 0.5 0.00409398 2.07417e-05 4.26128e-10 2.718 ||| 0-1 ||| 2 48212 +a los ||| skinned to ||| 0.5 0.00409398 2.07417e-05 2.45211e-07 2.718 ||| 0-1 ||| 2 48212 +a los ||| slip through the safety net ||| 0.333333 0.00612862 2.07417e-05 1.00857e-18 2.718 ||| 1-2 ||| 3 48212 +a los ||| slip through the safety ||| 0.333333 0.00612862 2.07417e-05 6.50692e-14 2.718 ||| 1-2 ||| 3 48212 +a los ||| slip through the ||| 0.0666667 0.00612862 2.07417e-05 1.28342e-09 2.718 ||| 1-2 ||| 15 48212 +a los ||| small tankers ||| 0.111111 0.013147 2.07417e-05 1.45778e-08 2.718 ||| 1-1 ||| 9 48212 +a los ||| so as to gain the space ||| 1 0.0281035 2.07417e-05 8.03981e-15 2.718 ||| 0-2 1-4 ||| 1 48212 +a los ||| so as to gain the ||| 1 0.0281035 2.07417e-05 1.94198e-10 2.718 ||| 0-2 1-4 ||| 1 48212 +a los ||| so far as to view those ||| 1 0.0654285 2.07417e-05 8.35438e-14 2.718 ||| 0-3 1-5 ||| 1 48212 +a los ||| so far as ||| 0.00151976 0.00043374 2.07417e-05 1.3593e-08 2.718 ||| 0-2 ||| 658 48212 +a los ||| so in the ||| 0.00757576 0.00718601 2.07417e-05 5.84964e-05 2.718 ||| 0-1 1-2 ||| 132 48212 +a los ||| so the ||| 0.000753012 9.38325e-05 2.07417e-05 3.44452e-05 2.718 ||| 0-0 1-1 ||| 1328 48212 +a los ||| so to the ||| 0.0555556 0.0281035 2.07417e-05 0.000341054 2.718 ||| 0-1 1-2 ||| 18 48212 +a los ||| so to ||| 0.00333333 0.00409398 2.07417e-05 0.00079508 2.718 ||| 0-1 ||| 300 48212 +a los ||| so ||| 1.39384e-05 1.36691e-05 2.07417e-05 8.03e-05 2.718 ||| 0-0 ||| 71744 48212 +a los ||| social ||| 2.36122e-05 0.000190425 2.07417e-05 0.0001517 2.718 ||| 1-0 ||| 42351 48212 +a los ||| socialist and left-wing ||| 0.5 2.8277e-05 2.07417e-05 2.97143e-15 2.718 ||| 0-1 ||| 2 48212 +a los ||| socialist and ||| 0.0196078 2.8277e-05 2.07417e-05 2.7013e-09 2.718 ||| 0-1 ||| 51 48212 +a los ||| soldiers ||| 0.000888099 0.00652751 2.07417e-05 0.0001478 2.718 ||| 1-0 ||| 1126 48212 +a los ||| sole preserve of the ||| 0.166667 0.00117109 2.07417e-05 7.86801e-13 2.718 ||| 0-2 1-2 1-3 ||| 6 48212 +a los ||| solely to the ||| 0.0126582 0.0281035 2.07417e-05 3.30581e-06 2.718 ||| 0-1 1-2 ||| 79 48212 +a los ||| solidarity with Africa , ||| 0.333333 0.00101826 2.07417e-05 1.7908e-12 2.718 ||| 0-1 ||| 3 48212 +a los ||| solidarity with Africa ||| 0.142857 0.00101826 2.07417e-05 1.50166e-11 2.718 ||| 0-1 ||| 7 48212 +a los ||| solidarity with ||| 0.000702741 0.00101826 2.07417e-05 4.39081e-07 2.718 ||| 0-1 ||| 1423 48212 +a los ||| solutions proposed by the ||| 0.125 0.00413296 2.07417e-05 7.52278e-12 2.718 ||| 0-2 1-3 ||| 8 48212 +a los ||| solutions to the ||| 0.00526316 0.0281035 2.07417e-05 2.87004e-06 2.718 ||| 0-1 1-2 ||| 190 48212 +a los ||| some members ||| 0.00645161 0.000104065 2.07417e-05 1.67855e-08 2.718 ||| 1-0 ||| 155 48212 +a los ||| some of the ||| 0.000185117 0.00230489 2.07417e-05 1.38209e-05 2.718 ||| 0-1 1-2 ||| 5402 48212 +a los ||| some very serious clashes with the ||| 1 0.00698995 2.07417e-05 6.87926e-18 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| some ||| 9.23992e-05 0.000104065 0.000103709 0.0001138 2.718 ||| 1-0 ||| 54113 48212 +a los ||| someone in his ||| 1 0.000345629 2.07417e-05 5.68895e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| someone to ||| 0.0123457 0.00409398 2.07417e-05 1.91615e-05 2.718 ||| 0-1 ||| 81 48212 +a los ||| something about the ||| 0.00374532 0.00643683 2.07417e-05 1.19647e-06 2.718 ||| 0-1 1-2 ||| 267 48212 +a los ||| sometimes , of course , ||| 0.25 0.000335766 2.07417e-05 2.99869e-11 2.718 ||| 0-2 ||| 4 48212 +a los ||| sometimes , of course ||| 0.333333 0.000335766 2.07417e-05 2.51453e-10 2.718 ||| 0-2 ||| 3 48212 +a los ||| sometimes , of ||| 0.25 0.000335766 2.07417e-05 1.99297e-07 2.718 ||| 0-2 ||| 4 48212 +a los ||| somewhere in the world tells the ||| 1 0.00718601 2.07417e-05 3.51067e-16 2.718 ||| 0-1 1-2 1-5 ||| 1 48212 +a los ||| sought the help ||| 0.333333 0.0317922 2.07417e-05 9.14125e-08 2.718 ||| 1-1 0-2 ||| 3 48212 +a los ||| speak to your ||| 0.25 0.00221403 2.07417e-05 1.46074e-08 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| speakers ||| 0.000270416 0.00405246 2.07417e-05 0.0004268 2.718 ||| 1-0 ||| 3698 48212 +a los ||| speaking with the ||| 0.0769231 0.00698995 2.07417e-05 8.22137e-07 2.718 ||| 0-1 1-2 ||| 13 48212 +a los ||| special ||| 0.000102627 8.224e-05 2.07417e-05 1.56e-05 2.718 ||| 1-0 ||| 9744 48212 +a los ||| specifically for the benefit of the ||| 1 0.00230489 2.07417e-05 4.42315e-14 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| speech to the ||| 0.0212766 0.0281035 2.07417e-05 6.76188e-06 2.718 ||| 0-1 1-2 ||| 47 48212 +a los ||| spend the ||| 0.00900901 0.00612862 2.07417e-05 1.29545e-05 2.718 ||| 1-1 ||| 111 48212 +a los ||| spirits up at ||| 0.25 0.0181179 2.07417e-05 2.93677e-09 2.718 ||| 1-0 0-2 ||| 4 48212 +a los ||| spoke in the wheels of all ||| 1 0.00718601 2.07417e-05 5.57207e-16 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| spoke in the wheels of ||| 0.333333 0.00718601 2.07417e-05 1.17917e-13 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| spoke in the wheels ||| 0.25 0.00718601 2.07417e-05 2.16904e-12 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| spoke in the ||| 0.0357143 0.00718601 2.07417e-05 6.77824e-07 2.718 ||| 0-1 1-2 ||| 28 48212 +a los ||| spoke up , ||| 0.166667 0.00034752 2.07417e-05 3.85024e-09 2.718 ||| 0-1 ||| 6 48212 +a los ||| spoke up ||| 0.0666667 0.00034752 2.07417e-05 3.22859e-08 2.718 ||| 0-1 ||| 15 48212 +a los ||| spot of ||| 0.142857 0.000335766 2.07417e-05 4.05225e-07 2.718 ||| 0-1 ||| 7 48212 +a los ||| spread to ||| 0.0116279 0.00409398 2.07417e-05 9.94857e-06 2.718 ||| 0-1 ||| 86 48212 +a los ||| spreads ||| 0.00787402 0.0040416 2.07417e-05 1.46e-05 2.718 ||| 1-0 ||| 127 48212 +a los ||| squeeze on the ||| 1 0.00957523 2.07417e-05 3.58e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| staff ||| 0.000394711 0.000773823 4.14834e-05 7e-05 2.718 ||| 1-0 ||| 5067 48212 +a los ||| stand alongside the ||| 0.125 0.0189671 2.07417e-05 2.63893e-08 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| stand up to the ||| 0.0208333 0.0281035 2.07417e-05 8.4456e-08 2.718 ||| 0-2 1-3 ||| 48 48212 +a los ||| standards of ||| 0.00138313 0.000933301 2.07417e-05 2.46448e-05 2.718 ||| 1-0 0-1 ||| 723 48212 +a los ||| standards ||| 6.59892e-05 0.00248161 2.07417e-05 0.0008332 2.718 ||| 1-0 ||| 15154 48212 +a los ||| start discussing problems that are ||| 0.333333 0.00532475 2.07417e-05 3.83752e-15 2.718 ||| 1-2 ||| 3 48212 +a los ||| start discussing problems that ||| 0.333333 0.00532475 2.07417e-05 2.52922e-13 2.718 ||| 1-2 ||| 3 48212 +a los ||| start discussing problems ||| 0.333333 0.00532475 2.07417e-05 1.50356e-11 2.718 ||| 1-2 ||| 3 48212 +a los ||| still a duty of the ||| 1 0.00230489 2.07417e-05 3.15582e-11 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| still equate to ||| 0.125 0.00409398 2.07417e-05 1.84693e-10 2.718 ||| 0-2 ||| 8 48212 +a los ||| still have to ||| 0.00657895 0.00409398 2.07417e-05 3.15556e-06 2.718 ||| 0-2 ||| 152 48212 +a los ||| still in the Chamber ||| 0.5 0.00718601 2.07417e-05 5.10537e-10 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| still in the ||| 0.0119048 0.00718601 2.07417e-05 1.9412e-05 2.718 ||| 0-1 1-2 ||| 84 48212 +a los ||| stock and barrel , to the ||| 1 0.0281035 2.07417e-05 1.49266e-14 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| stock of the ||| 0.0105263 0.00230489 2.07417e-05 3.37498e-07 2.718 ||| 0-1 1-2 ||| 95 48212 +a los ||| store for the ||| 0.0909091 0.00835696 2.07417e-05 2.38677e-07 2.718 ||| 0-1 1-2 ||| 11 48212 +a los ||| strengthen the position of ||| 0.0222222 0.00230489 2.07417e-05 8.10555e-11 2.718 ||| 1-1 0-3 ||| 45 48212 +a los ||| stress to my ||| 0.5 0.00198578 2.07417e-05 8.59608e-09 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| strongly of the ||| 0.25 0.00230489 2.07417e-05 6.0775e-07 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| struck in the ||| 0.0625 0.00718601 2.07417e-05 6.59783e-07 2.718 ||| 0-1 1-2 ||| 16 48212 +a los ||| students ||| 0.000547345 0.0149418 2.07417e-05 0.0006563 2.718 ||| 1-0 ||| 1827 48212 +a los ||| subcontractors ' ||| 0.333333 0.00544709 2.07417e-05 1.1915e-07 2.718 ||| 1-0 1-1 ||| 3 48212 +a los ||| subject to the ||| 0.00255428 0.0281035 4.14834e-05 8.11125e-05 2.718 ||| 0-1 1-2 ||| 783 48212 +a los ||| subject to ||| 0.000529101 0.00409398 4.14834e-05 0.000189093 2.718 ||| 0-1 ||| 3780 48212 +a los ||| submitted to ||| 0.00185529 0.00409398 2.07417e-05 1.80405e-05 2.718 ||| 0-1 ||| 539 48212 +a los ||| subsequent offences relating ||| 0.5 0.00496947 2.07417e-05 2.06054e-13 2.718 ||| 1-1 ||| 2 48212 +a los ||| subsequent offences ||| 0.5 0.00496947 2.07417e-05 1.81226e-09 2.718 ||| 1-1 ||| 2 48212 +a los ||| subsidies ||| 0.000248509 0.00183201 2.07417e-05 0.000175 2.718 ||| 1-0 ||| 4024 48212 +a los ||| successor to the ||| 0.0454545 0.0281035 2.07417e-05 6.01056e-07 2.718 ||| 0-1 1-2 ||| 22 48212 +a los ||| such - to draw the ||| 1 0.0281035 2.07417e-05 1.38845e-10 2.718 ||| 0-2 1-4 ||| 1 48212 +a los ||| such are the ||| 0.0526316 0.00612862 2.07417e-05 1.34653e-05 2.718 ||| 1-2 ||| 19 48212 +a los ||| such as the ||| 0.000161134 0.00297745 2.07417e-05 7.78522e-06 2.718 ||| 0-1 1-2 ||| 6206 48212 +a los ||| such as ||| 3.72731e-05 0.00043374 2.07417e-05 1.81492e-05 2.718 ||| 0-1 ||| 26829 48212 +a los ||| suffered at the hands ||| 0.2 0.0249683 2.07417e-05 5.03304e-11 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| suffered at the ||| 0.142857 0.0249683 2.07417e-05 4.9931e-07 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| suffering from the ||| 0.0120482 0.0053267 2.07417e-05 1.36797e-07 2.718 ||| 0-1 1-2 ||| 83 48212 +a los ||| suggested for the ||| 0.333333 0.00835696 2.07417e-05 3.12967e-07 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| super green rooms ||| 0.5 0.000715939 2.07417e-05 1.13876e-16 2.718 ||| 1-2 ||| 2 48212 +a los ||| super green rooms ’ ||| 0.5 0.000715939 2.07417e-05 1.98383e-19 2.718 ||| 1-2 ||| 2 48212 +a los ||| suppliers ||| 0.00113507 0.0132576 2.07417e-05 0.0002742 2.718 ||| 1-0 ||| 881 48212 +a los ||| supplies to the ||| 0.0588235 0.0281035 2.07417e-05 3.08041e-06 2.718 ||| 0-1 1-2 ||| 17 48212 +a los ||| supplies ||| 0.000552792 0.00739847 2.07417e-05 0.000245 2.718 ||| 1-0 ||| 1809 48212 +a los ||| support for the ||| 0.00133333 0.00835696 6.22252e-05 5.40421e-06 2.718 ||| 0-1 1-2 ||| 2250 48212 +a los ||| support getting ||| 0.5 4.85249e-05 2.07417e-05 1.72906e-08 2.718 ||| 0-0 ||| 2 48212 +a los ||| support of the ||| 0.000684932 0.00230489 2.07417e-05 4.33799e-06 2.718 ||| 0-1 1-2 ||| 1460 48212 +a los ||| support of ||| 0.000352237 0.000335766 2.07417e-05 1.01129e-05 2.718 ||| 0-1 ||| 2839 48212 +a los ||| support the original proposal from ||| 1 0.000333104 2.07417e-05 6.19919e-16 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| support the original proposal ||| 1 0.000333104 2.07417e-05 3.84947e-13 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| support the original ||| 1 0.000333104 2.07417e-05 1.92763e-09 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| support the ||| 0.000470293 0.000333104 6.22252e-05 6.38287e-05 2.718 ||| 0-0 1-1 ||| 6379 48212 +a los ||| support those ||| 0.00558659 0.000775509 2.07417e-05 2.4846e-06 2.718 ||| 0-0 1-1 ||| 179 48212 +a los ||| support ||| 1.60511e-05 4.85249e-05 2.07417e-05 0.0001488 2.718 ||| 0-0 ||| 62301 48212 +a los ||| supporting the ||| 0.000664894 0.0233109 2.07417e-05 0.000491756 2.718 ||| 0-0 1-1 ||| 1504 48212 +a los ||| supposed to be responsible adults ||| 1 0.0700272 2.07417e-05 1.35034e-14 2.718 ||| 0-1 1-4 ||| 1 48212 +a los ||| supposed to ||| 0.0023015 0.00409398 4.14834e-05 2.05627e-05 2.718 ||| 0-1 ||| 869 48212 +a los ||| sure they can tell ||| 0.2 0.000362858 2.07417e-05 4.16501e-14 2.718 ||| 1-1 ||| 5 48212 +a los ||| sure they can ||| 0.166667 0.000362858 2.07417e-05 4.24136e-10 2.718 ||| 1-1 ||| 6 48212 +a los ||| sure they ||| 0.0238095 0.000362858 2.07417e-05 1.426e-07 2.718 ||| 1-1 ||| 42 48212 +a los ||| surety agreements ||| 0.5 0.00998989 2.07417e-05 1.2612e-09 2.718 ||| 1-1 ||| 2 48212 +a los ||| susceptible to the ||| 0.0625 0.0281035 2.07417e-05 1.05185e-07 2.718 ||| 0-1 1-2 ||| 16 48212 +a los ||| sympathising with the ||| 1 0.00698995 2.07417e-05 2.86459e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| system of producer ||| 1 0.00126787 2.07417e-05 6.57481e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| systems ||| 0.000243724 0.0107034 6.22252e-05 0.0032493 2.718 ||| 1-0 ||| 12309 48212 +a los ||| tabled to the ||| 0.0243902 0.0281035 2.07417e-05 1.22766e-05 2.718 ||| 0-1 1-2 ||| 41 48212 +a los ||| take in the ||| 0.028169 0.00718601 4.14834e-05 4.14942e-05 2.718 ||| 0-1 1-2 ||| 71 48212 +a los ||| take place ||| 0.000333444 2.30395e-05 2.07417e-05 1.03092e-07 2.718 ||| 0-0 ||| 2999 48212 +a los ||| take stock of the ||| 0.0142857 0.00230489 2.07417e-05 5.43371e-10 2.718 ||| 0-2 1-3 ||| 70 48212 +a los ||| take the strain ||| 0.142857 0.000158157 2.07417e-05 1.79239e-10 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| take the ||| 0.000566251 0.000158157 4.14834e-05 2.93835e-05 2.718 ||| 0-0 1-1 ||| 3532 48212 +a los ||| take those ||| 0.0232558 0.0142682 2.07417e-05 2.68831e-05 2.718 ||| 1-1 ||| 43 48212 +a los ||| take ||| 3.11352e-05 2.30395e-05 2.07417e-05 6.85e-05 2.718 ||| 0-0 ||| 32118 48212 +a los ||| taken by the ||| 0.000736377 0.00413296 2.07417e-05 3.2169e-06 2.718 ||| 0-1 1-2 ||| 1358 48212 +a los ||| taken off to the ||| 1 0.0281035 2.07417e-05 5.5745e-08 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| taking the applicant ||| 1 0.0012584 2.07417e-05 1.45119e-08 2.718 ||| 0-0 1-1 1-2 ||| 1 48212 +a los ||| talk more on this ||| 1 2.31689e-05 2.07417e-05 1.05533e-12 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| talk our ||| 0.5 0.00124472 2.07417e-05 2.86759e-07 2.718 ||| 1-1 ||| 2 48212 +a los ||| talked about the ||| 0.00568182 0.00643683 2.07417e-05 2.24811e-08 2.718 ||| 0-1 1-2 ||| 176 48212 +a los ||| tankers ||| 0.00473934 0.013147 2.07417e-05 0.0001138 2.718 ||| 1-0 ||| 211 48212 +a los ||| target ||| 0.000281057 0.000131539 2.07417e-05 8.8e-06 2.718 ||| 1-0 ||| 3558 48212 +a los ||| targeted at the ||| 0.0169492 0.0249683 2.07417e-05 4.10252e-07 2.718 ||| 0-1 1-2 ||| 59 48212 +a los ||| targeted ||| 0.00064433 0.000225829 2.07417e-05 2.37e-05 2.718 ||| 0-0 ||| 1552 48212 +a los ||| targeting of ||| 0.0277778 0.000350612 2.07417e-05 3.04961e-07 2.718 ||| 0-0 1-1 ||| 36 48212 +a los ||| targets of the ||| 0.0512821 0.00230489 4.14834e-05 3.01972e-07 2.718 ||| 0-1 1-2 ||| 39 48212 +a los ||| targets ||| 0.000405927 0.00521388 4.14834e-05 0.0004861 2.718 ||| 1-0 ||| 4927 48212 +a los ||| tariffs ||| 0.00117096 0.00910785 2.07417e-05 0.0001954 2.718 ||| 1-0 ||| 854 48212 +a los ||| task to the ||| 0.125 0.0281035 2.07417e-05 1.89333e-05 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| tasks from the ||| 0.2 0.0053267 2.07417e-05 5.00251e-08 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| tax ||| 0.000196252 0.00306418 4.14834e-05 0.0006757 2.718 ||| 1-0 ||| 10191 48212 +a los ||| taxation ||| 0.000546597 0.0029449 4.14834e-05 0.0002732 2.718 ||| 1-0 ||| 3659 48212 +a los ||| tell the ||| 0.00753769 0.00035931 6.22252e-05 7.8499e-06 2.718 ||| 0-0 1-1 ||| 398 48212 +a los ||| tell ||| 0.000327869 5.23426e-05 2.07417e-05 1.83e-05 2.718 ||| 0-0 ||| 3050 48212 +a los ||| tending to those ||| 0.333333 0.0654285 2.07417e-05 1.28682e-08 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| terrorism to ||| 0.0163934 0.00409398 2.07417e-05 9.07281e-06 2.718 ||| 0-1 ||| 61 48212 +a los ||| than happy to grant the ||| 0.25 0.0281035 2.07417e-05 9.16782e-14 2.718 ||| 0-2 1-4 ||| 4 48212 +a los ||| than it does now to the important ||| 1 0.0155331 2.07417e-05 1.86147e-15 2.718 ||| 0-0 0-4 1-5 ||| 1 48212 +a los ||| than it does now to the ||| 1 0.0155331 2.07417e-05 4.85264e-12 2.718 ||| 0-0 0-4 1-5 ||| 1 48212 +a los ||| than it has had to ||| 0.25 0.00409398 2.07417e-05 9.83249e-12 2.718 ||| 0-4 ||| 4 48212 +a los ||| than it is for ||| 0.0714286 0.0012174 2.07417e-05 6.27415e-09 2.718 ||| 0-3 ||| 14 48212 +a los ||| than that ||| 0.00123916 1.51797e-05 2.07417e-05 2.08565e-07 2.718 ||| 0-1 ||| 807 48212 +a los ||| than the ||| 0.00280656 0.00296272 0.000269642 0.000539155 2.718 ||| 0-0 1-1 ||| 4632 48212 +a los ||| than their ||| 0.00617284 0.000573489 2.07417e-05 2.87541e-06 2.718 ||| 0-0 1-1 ||| 162 48212 +a los ||| than those for ||| 0.047619 0.00689761 2.07417e-05 1.61301e-07 2.718 ||| 0-0 1-1 ||| 21 48212 +a los ||| than those ||| 0.0137328 0.00689761 0.000228159 2.09872e-05 2.718 ||| 0-0 1-1 ||| 801 48212 +a los ||| than was the ||| 0.0294118 0.00296272 2.07417e-05 1.68917e-06 2.718 ||| 0-0 1-2 ||| 34 48212 +a los ||| than we do now for ||| 1 3.52869e-05 2.07417e-05 5.95474e-14 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| than we do now ||| 0.111111 3.52869e-05 2.07417e-05 7.74782e-12 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| than we do ||| 0.0120482 3.52869e-05 2.07417e-05 3.76126e-09 2.718 ||| 0-0 1-1 ||| 83 48212 +a los ||| than we ||| 0.00151745 3.52869e-05 2.07417e-05 1.09489e-06 2.718 ||| 0-0 1-1 ||| 659 48212 +a los ||| than what the ||| 0.0526316 0.00296272 2.07417e-05 7.56489e-07 2.718 ||| 0-0 1-2 ||| 19 48212 +a los ||| than ||| 0.000158918 0.000431595 0.000145192 0.0012569 2.718 ||| 0-0 ||| 44048 48212 +a los ||| thank the ||| 0.00123648 0.00154283 8.29669e-05 0.000250167 2.718 ||| 0-0 1-1 ||| 3235 48212 +a los ||| thank those ||| 0.0181818 0.0035919 2.07417e-05 9.73804e-06 2.718 ||| 0-0 1-1 ||| 55 48212 +a los ||| thanks are due to the ||| 0.047619 0.0281035 2.07417e-05 5.10436e-11 2.718 ||| 0-3 1-4 ||| 21 48212 +a los ||| thanks to the ||| 0.0014918 0.0281035 6.22252e-05 1.21714e-05 2.718 ||| 0-1 1-2 ||| 2011 48212 +a los ||| that , by the use ||| 1 0.00413296 2.07417e-05 3.44222e-09 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| that , by the ||| 0.03125 0.00413296 2.07417e-05 7.07984e-06 2.718 ||| 0-2 1-3 ||| 32 48212 +a los ||| that , in ||| 0.000174034 0.00104682 2.07417e-05 0.000120529 2.718 ||| 0-2 ||| 5746 48212 +a los ||| that after the initial selection , ||| 1 0.00417039 2.07417e-05 1.10103e-16 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| that after the initial selection ||| 1 0.00417039 2.07417e-05 9.23257e-16 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| that after the initial ||| 1 0.00417039 2.07417e-05 1.59182e-10 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| that after the ||| 0.00806452 0.00417039 2.07417e-05 6.05256e-06 2.718 ||| 0-1 1-2 ||| 124 48212 +a los ||| that all ||| 0.0003885 4.2273e-05 4.14834e-05 1.10645e-06 2.718 ||| 0-0 0-1 1-1 ||| 5148 48212 +a los ||| that an end is put to the ||| 0.5 0.0281035 2.07417e-05 1.68922e-13 2.718 ||| 0-5 1-6 ||| 2 48212 +a los ||| that are to ||| 0.00729927 0.00409398 2.07417e-05 8.94072e-05 2.718 ||| 0-2 ||| 137 48212 +a los ||| that are ||| 0.000130617 1.51797e-05 2.07417e-05 1.03584e-05 2.718 ||| 0-0 ||| 7656 48212 +a los ||| that case , to the ||| 1 0.0281035 2.07417e-05 3.22508e-07 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| that fact to our ||| 1 0.0057078 2.07417e-05 6.16418e-08 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| that for the ||| 0.00348432 0.00835696 2.07417e-05 0.000265889 2.718 ||| 0-1 1-2 ||| 287 48212 +a los ||| that had been applied to ||| 0.25 0.00409398 2.07417e-05 2.13887e-12 2.718 ||| 0-4 ||| 4 48212 +a los ||| that has applied for ||| 0.5 0.0012174 2.07417e-05 3.45551e-10 2.718 ||| 0-3 ||| 2 48212 +a los ||| that is , into the ||| 1 0.0131557 2.07417e-05 1.6382e-07 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| that is for parties ||| 0.25 0.00906799 2.07417e-05 3.26565e-08 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| that matter , the ||| 0.0769231 0.00612862 2.07417e-05 8.92779e-07 2.718 ||| 1-3 ||| 13 48212 +a los ||| that of eating ||| 1 0.000602811 2.07417e-05 7.26434e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| that of the ||| 0.00308071 0.00230489 0.000103709 0.000213431 2.718 ||| 0-1 1-2 ||| 1623 48212 +a los ||| that of ||| 0.000232234 0.000335766 2.07417e-05 0.000497558 2.718 ||| 0-1 ||| 4306 48212 +a los ||| that old ||| 0.0322581 1.51797e-05 2.07417e-05 5.25679e-08 2.718 ||| 0-0 ||| 31 48212 +a los ||| that oppose ||| 0.05 0.00605179 2.07417e-05 1.66282e-05 2.718 ||| 0-1 ||| 20 48212 +a los ||| that our ||| 0.000192641 0.00124472 2.07417e-05 6.00716e-05 2.718 ||| 1-1 ||| 5191 48212 +a los ||| that payments have to be effected ||| 1 0.0629417 2.07417e-05 7.92933e-15 2.718 ||| 1-1 0-3 ||| 1 48212 +a los ||| that payments have to be ||| 0.333333 0.0629417 2.07417e-05 1.84403e-09 2.718 ||| 1-1 0-3 ||| 3 48212 +a los ||| that payments have to ||| 0.333333 0.0629417 2.07417e-05 1.01751e-07 2.718 ||| 1-1 0-3 ||| 3 48212 +a los ||| that relates to port ||| 1 0.0101161 2.07417e-05 1.48031e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| that senior citizens ||| 0.333333 0.0147126 2.07417e-05 3.10651e-09 2.718 ||| 1-2 ||| 3 48212 +a los ||| that the other ||| 0.00552486 0.000104203 2.07417e-05 3.79385e-07 2.718 ||| 0-0 1-1 ||| 181 48212 +a los ||| that the ||| 0.000523315 0.000104203 0.00155563 0.000292848 2.718 ||| 0-0 1-1 ||| 143317 48212 +a los ||| that there ||| 0.000194628 2.29368e-06 2.07417e-05 2.50892e-07 2.718 ||| 0-0 1-1 ||| 5138 48212 +a los ||| that those in this ||| 0.333333 0.00848629 2.07417e-05 4.42546e-09 2.718 ||| 0-0 1-1 0-2 ||| 3 48212 +a los ||| that those in ||| 0.0192308 0.00848629 2.07417e-05 6.84908e-07 2.718 ||| 0-0 1-1 0-2 ||| 52 48212 +a los ||| that those ||| 0.0048913 0.000242597 0.000186676 1.13995e-05 2.718 ||| 0-0 1-1 ||| 1840 48212 +a los ||| that to the ||| 0.0645161 0.0281035 8.29669e-05 0.00252768 2.718 ||| 0-1 1-2 ||| 62 48212 +a los ||| that to those ||| 0.5 0.0654285 2.07417e-05 9.83928e-05 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| that ||| 6.35763e-06 1.51797e-05 0.00012445 0.0006827 2.718 ||| 0-0 ||| 943748 48212 +a los ||| the ' ||| 0.000336474 0.00612862 2.07417e-05 0.00147342 2.718 ||| 1-0 ||| 2972 48212 +a los ||| the African , Caribbean and Pacific ( ||| 0.166667 0.00612862 2.07417e-05 3.26597e-22 2.718 ||| 1-0 ||| 6 48212 +a los ||| the African , Caribbean and Pacific ||| 0.0555556 0.00612862 2.07417e-05 3.38653e-19 2.718 ||| 1-0 ||| 18 48212 +a los ||| the African , Caribbean and ||| 0.0416667 0.00612862 2.07417e-05 7.20538e-14 2.718 ||| 1-0 ||| 24 48212 +a los ||| the African , Caribbean ||| 0.0357143 0.00612862 2.07417e-05 5.75239e-12 2.718 ||| 1-0 ||| 28 48212 +a los ||| the African , ||| 0.0333333 0.00612862 2.07417e-05 8.84982e-07 2.718 ||| 1-0 ||| 30 48212 +a los ||| the African ||| 0.015873 0.00612862 2.07417e-05 7.42094e-06 2.718 ||| 1-0 ||| 63 48212 +a los ||| the Commission has in fact been implementing ||| 1 0.00718601 2.07417e-05 2.18295e-17 2.718 ||| 1-0 0-3 ||| 1 48212 +a los ||| the Commission has in fact been ||| 0.333333 0.00718601 2.07417e-05 7.57968e-13 2.718 ||| 1-0 0-3 ||| 3 48212 +a los ||| the Commission has in fact ||| 0.2 0.00718601 2.07417e-05 2.26991e-10 2.718 ||| 1-0 0-3 ||| 5 48212 +a los ||| the Commission has in ||| 0.0322581 0.00718601 2.07417e-05 7.74898e-08 2.718 ||| 1-0 0-3 ||| 31 48212 +a los ||| the Commission ||| 6.28295e-06 0.00612862 2.07417e-05 0.000250553 2.718 ||| 1-0 ||| 159161 48212 +a los ||| the Community ||| 0.000165893 0.00612862 2.07417e-05 6.9448e-05 2.718 ||| 1-0 ||| 6028 48212 +a los ||| the Croatians ||| 0.0555556 0.00612862 2.07417e-05 1.71583e-07 2.718 ||| 1-0 ||| 18 48212 +a los ||| the EU 's ||| 0.000809062 0.00612862 2.07417e-05 4.04204e-07 2.718 ||| 1-0 ||| 1236 48212 +a los ||| the EU ||| 0.000119622 0.00612862 0.00012445 0.000212248 2.718 ||| 1-0 ||| 50158 48212 +a los ||| the EU ’ s ||| 0.00869565 0.00612862 4.14834e-05 7.03388e-10 2.718 ||| 1-0 ||| 230 48212 +a los ||| the EU ’ ||| 0.00144928 0.00612862 2.07417e-05 3.69757e-07 2.718 ||| 1-0 ||| 690 48212 +a los ||| the European Parliament ||| 7.42997e-05 0.00612862 4.14834e-05 8.23338e-07 2.718 ||| 1-0 ||| 26918 48212 +a los ||| the European ||| 0.000383767 0.00612862 8.29669e-05 0.00143439 2.718 ||| 1-0 ||| 10423 48212 +a los ||| the Finnish ||| 0.012987 0.00612862 2.07417e-05 2.14478e-06 2.718 ||| 1-0 ||| 77 48212 +a los ||| the Freedom ||| 0.0555556 0.00612862 2.07417e-05 1.07239e-06 2.718 ||| 1-0 ||| 18 48212 +a los ||| the Group of the ||| 0.000543183 0.00230489 2.07417e-05 2.53387e-07 2.718 ||| 0-2 1-3 ||| 1841 48212 +a los ||| the House ||| 0.000117275 0.00612862 2.07417e-05 0.000107282 2.718 ||| 1-0 ||| 8527 48212 +a los ||| the Joint ||| 0.0208333 0.00612862 2.07417e-05 4.933e-06 2.718 ||| 1-0 ||| 48 48212 +a los ||| the Kurdish ||| 0.03125 0.00612862 2.07417e-05 1.24397e-06 2.718 ||| 1-0 ||| 32 48212 +a los ||| the Legislature ||| 0.2 0.00612862 2.07417e-05 1.71583e-07 2.718 ||| 1-0 ||| 5 48212 +a los ||| the Management ||| 0.015873 0.00612862 2.07417e-05 1.71583e-06 2.718 ||| 1-0 ||| 63 48212 +a los ||| the Member States would have to revoke ||| 1 0.0281035 2.07417e-05 1.81543e-18 2.718 ||| 1-0 0-5 ||| 1 48212 +a los ||| the Member States would have to ||| 0.0769231 0.0281035 2.07417e-05 2.59347e-12 2.718 ||| 1-0 0-5 ||| 13 48212 +a los ||| the Mister ||| 1 0.0101908 2.07417e-05 3.86061e-07 2.718 ||| 1-0 0-1 ||| 1 48212 +a los ||| the Structural ||| 0.00653595 0.00499184 2.07417e-05 0.000205599 2.718 ||| 1-0 1-1 ||| 153 48212 +a los ||| the Union in the ||| 0.00793651 0.00718601 2.07417e-05 8.81939e-07 2.718 ||| 0-2 1-3 ||| 126 48212 +a los ||| the accent firmly on the ||| 1 0.00957523 2.07417e-05 9.44066e-14 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| the accessing ||| 1 0.0419167 2.07417e-05 8.53623e-05 2.718 ||| 1-0 0-1 ||| 1 48212 +a los ||| the accession of the ||| 0.00338983 0.00230489 2.07417e-05 2.85868e-08 2.718 ||| 0-2 1-3 ||| 295 48212 +a los ||| the advice of the ||| 0.016129 0.00230489 2.07417e-05 1.40208e-08 2.718 ||| 0-2 1-3 ||| 62 48212 +a los ||| the agreement ||| 0.000197316 0.00612862 2.07417e-05 7.90566e-05 2.718 ||| 1-0 ||| 5068 48212 +a los ||| the aid awarded to trees ||| 1 0.0416786 2.07417e-05 3.75515e-15 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| the alleged ||| 0.00510204 0.00612862 2.07417e-05 6.94909e-06 2.718 ||| 1-0 ||| 196 48212 +a los ||| the area of the ||| 0.003003 0.00230489 2.07417e-05 3.2349e-07 2.718 ||| 0-2 1-3 ||| 333 48212 +a los ||| the arms of ||| 0.037037 0.00230489 2.07417e-05 3.51454e-07 2.718 ||| 1-0 0-2 ||| 27 48212 +a los ||| the as the ||| 1 0.00297745 2.07417e-05 0.000231016 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| the assistance ||| 0.00238663 0.00612862 2.07417e-05 2.13191e-05 2.718 ||| 1-0 ||| 419 48212 +a los ||| the bad ||| 0.00520833 0.00612862 2.07417e-05 1.96033e-05 2.718 ||| 1-0 ||| 192 48212 +a los ||| the basis of a ||| 0.00164745 0.00230489 2.07417e-05 3.33953e-07 2.718 ||| 1-0 0-2 ||| 607 48212 +a los ||| the basis of the ||| 0.000544662 0.00230489 2.07417e-05 4.6253e-07 2.718 ||| 0-2 1-3 ||| 1836 48212 +a los ||| the basis of ||| 0.000166722 0.00230489 2.07417e-05 7.53407e-06 2.718 ||| 1-0 0-2 ||| 5998 48212 +a los ||| the benefit of the ||| 0.00223714 0.00230489 2.07417e-05 1.02585e-07 2.718 ||| 0-2 1-3 ||| 447 48212 +a los ||| the bird has ||| 0.5 0.00612862 2.07417e-05 4.85772e-09 2.718 ||| 1-0 ||| 2 48212 +a los ||| the bird ||| 0.0769231 0.00612862 2.07417e-05 9.43704e-07 2.718 ||| 1-0 ||| 13 48212 +a los ||| the borderless nature ||| 0.5 0.00612862 2.07417e-05 2.42618e-11 2.718 ||| 1-0 ||| 2 48212 +a los ||| the borderless ||| 0.166667 0.00612862 2.07417e-05 1.71583e-07 2.718 ||| 1-0 ||| 6 48212 +a los ||| the case concerning our ||| 1 0.00555055 2.07417e-05 9.59354e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| the case during the ||| 0.1 0.000664189 2.07417e-05 2.62311e-09 2.718 ||| 0-2 1-3 ||| 10 48212 +a los ||| the case for a ||| 0.0357143 0.00835696 2.07417e-05 7.49605e-07 2.718 ||| 1-0 0-2 ||| 28 48212 +a los ||| the case for ||| 0.00229358 0.00835696 2.07417e-05 1.69113e-05 2.718 ||| 1-0 0-2 ||| 436 48212 +a los ||| the case of ||| 0.000218627 0.00230489 2.07417e-05 1.35748e-05 2.718 ||| 1-0 0-2 ||| 4574 48212 +a los ||| the case that ||| 0.0013986 0.00612862 2.07417e-05 7.72011e-06 2.718 ||| 1-0 ||| 715 48212 +a los ||| the case ||| 8.32293e-05 0.00612862 2.07417e-05 0.00045894 2.718 ||| 1-0 ||| 12015 48212 +a los ||| the causes of ||| 0.00158479 0.00612862 2.07417e-05 6.03982e-07 2.718 ||| 1-0 ||| 631 48212 +a los ||| the causes ||| 0.00088574 0.00612862 2.07417e-05 1.111e-05 2.718 ||| 1-0 ||| 1129 48212 +a los ||| the challenges ||| 0.000428816 0.000476231 2.07417e-05 1.29116e-05 2.718 ||| 1-0 0-1 ||| 2332 48212 +a los ||| the cheated ||| 0.5 0.00612862 2.07417e-05 1.71583e-07 2.718 ||| 1-0 ||| 2 48212 +a los ||| the child soldiers ||| 0.111111 0.00652751 2.07417e-05 3.0034e-10 2.718 ||| 1-2 ||| 9 48212 +a los ||| the citizens of the ||| 0.00091659 0.00230489 2.07417e-05 8.49036e-08 2.718 ||| 0-2 1-3 ||| 1091 48212 +a los ||| the citizens of ||| 0.000666667 0.00612862 4.14834e-05 2.54186e-06 2.718 ||| 1-0 ||| 3000 48212 +a los ||| the citizens ||| 0.000543036 0.0104206 8.29669e-05 0.0064932 2.718 ||| 1-0 1-1 ||| 7366 48212 +a los ||| the common rules for ||| 0.166667 0.00835696 2.07417e-05 4.24278e-10 2.718 ||| 1-0 0-3 ||| 6 48212 +a los ||| the compromise ||| 0.000519751 0.00612862 2.07417e-05 1.94317e-05 2.718 ||| 1-0 ||| 1924 48212 +a los ||| the conflicts ||| 0.0033557 0.010727 2.07417e-05 4.93038e-05 2.718 ||| 1-1 ||| 298 48212 +a los ||| the countries in ||| 0.00155039 0.00718601 2.07417e-05 9.78592e-06 2.718 ||| 1-0 0-2 ||| 645 48212 +a los ||| the country ||| 0.000169262 0.00612862 2.07417e-05 0.000154381 2.718 ||| 1-0 ||| 5908 48212 +a los ||| the courts against ||| 0.333333 0.006293 2.07417e-05 1.32694e-08 2.718 ||| 1-0 0-2 ||| 3 48212 +a los ||| the courts ||| 0.00139276 0.00612862 2.07417e-05 5.10458e-06 2.718 ||| 1-0 ||| 718 48212 +a los ||| the credibility of the three ||| 1 0.00230489 2.07417e-05 3.55006e-13 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| the credibility of the ||| 0.00205339 0.00230489 2.07417e-05 5.60831e-09 2.718 ||| 0-2 1-3 ||| 487 48212 +a los ||| the criminal responsibility of ||| 0.25 0.00230489 2.07417e-05 6.11093e-11 2.718 ||| 1-0 0-3 ||| 4 48212 +a los ||| the current system of ||| 0.0111111 0.00612862 2.07417e-05 1.07184e-09 2.718 ||| 1-0 ||| 90 48212 +a los ||| the current system ||| 0.00268817 0.00612862 2.07417e-05 1.9716e-08 2.718 ||| 1-0 ||| 372 48212 +a los ||| the current ||| 0.000183925 0.00612862 2.07417e-05 7.0692e-05 2.718 ||| 1-0 ||| 5437 48212 +a los ||| the debate on the ||| 0.000667111 0.00957523 2.07417e-05 1.97704e-07 2.718 ||| 0-2 1-3 ||| 1499 48212 +a los ||| the deficits where countries ||| 0.5 0.00612862 2.07417e-05 1.57923e-13 2.718 ||| 1-0 ||| 2 48212 +a los ||| the deficits where ||| 0.5 0.00612862 2.07417e-05 4.15916e-10 2.718 ||| 1-0 ||| 2 48212 +a los ||| the deficits ||| 0.015625 0.00612862 2.07417e-05 1.37266e-06 2.718 ||| 1-0 ||| 64 48212 +a los ||| the direction of the ||| 0.01 0.00230489 2.07417e-05 7.06491e-08 2.718 ||| 0-2 1-3 ||| 100 48212 +a los ||| the directive ||| 0.000108755 0.00612862 2.07417e-05 4.78715e-05 2.718 ||| 1-0 ||| 9195 48212 +a los ||| the doors open to the ||| 1 0.0281035 2.07417e-05 1.76961e-11 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| the driving force behind those ||| 1 0.0262872 2.07417e-05 4.44906e-15 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| the eager ||| 0.5 0.00612862 2.07417e-05 1.71583e-06 2.718 ||| 1-0 ||| 2 48212 +a los ||| the ears of the ||| 0.125 0.00230489 2.07417e-05 9.26929e-09 2.718 ||| 0-2 1-3 ||| 8 48212 +a los ||| the effects ||| 0.000386847 0.00612862 2.07417e-05 2.32923e-05 2.718 ||| 1-0 ||| 2585 48212 +a los ||| the efforts ||| 0.000722022 0.00612862 4.14834e-05 5.21611e-05 2.718 ||| 1-0 ||| 2770 48212 +a los ||| the essential ||| 0.00363636 0.00612862 2.07417e-05 3.86061e-05 2.718 ||| 1-0 ||| 275 48212 +a los ||| the establishment , ||| 0.025641 0.00612862 2.07417e-05 2.30198e-06 2.718 ||| 1-0 ||| 39 48212 +a los ||| the establishment ||| 0.000303582 0.00612862 2.07417e-05 1.9303e-05 2.718 ||| 1-0 ||| 3294 48212 +a los ||| the excesses of ||| 0.025 0.00230489 2.07417e-05 2.79133e-08 2.718 ||| 1-0 0-2 ||| 40 48212 +a los ||| the excessive ||| 0.00555556 0.00612862 2.07417e-05 5.40485e-06 2.718 ||| 1-0 ||| 180 48212 +a los ||| the existence ||| 0.000686342 0.00612862 2.07417e-05 2.96409e-05 2.718 ||| 1-0 ||| 1457 48212 +a los ||| the fact at ||| 0.5 0.0249683 2.07417e-05 4.27669e-05 2.718 ||| 1-0 0-2 ||| 2 48212 +a los ||| the fact is ||| 0.000748503 0.00612862 2.07417e-05 3.93814e-05 2.718 ||| 1-0 ||| 1336 48212 +a los ||| the fact that it ||| 0.00323625 0.00612862 2.07417e-05 3.75884e-07 2.718 ||| 1-0 ||| 309 48212 +a los ||| the fact that the ||| 0.000253036 0.000104203 2.07417e-05 5.26644e-08 2.718 ||| 0-2 1-3 ||| 3952 48212 +a los ||| the fact that we have ||| 0.00361011 0.00612862 2.07417e-05 2.8698e-09 2.718 ||| 1-0 ||| 277 48212 +a los ||| the fact that we ||| 0.0026455 0.00612862 2.07417e-05 2.39954e-07 2.718 ||| 1-0 ||| 378 48212 +a los ||| the fact that ||| 0.00018216 0.00612862 6.22252e-05 2.1137e-05 2.718 ||| 1-0 ||| 16469 48212 +a los ||| the fact ||| 0.000249359 0.00612862 0.000145192 0.00125654 2.718 ||| 1-0 ||| 28072 48212 +a los ||| the farmers ||| 0.00308642 0.000869491 4.14834e-05 0.00106229 2.718 ||| 1-0 0-1 1-1 ||| 648 48212 +a los ||| the finger at ||| 0.0142857 0.0249683 2.07417e-05 2.56955e-07 2.718 ||| 1-0 0-2 ||| 70 48212 +a los ||| the flag ||| 0.00492611 0.00612862 2.07417e-05 2.9169e-06 2.718 ||| 1-0 ||| 203 48212 +a los ||| the food ||| 0.00294118 0.00615985 2.07417e-05 0.000945463 2.718 ||| 1-0 1-1 ||| 340 48212 +a los ||| the funds are still ||| 0.5 0.00612862 2.07417e-05 3.74034e-10 2.718 ||| 1-0 ||| 2 48212 +a los ||| the funds are ||| 0.0116279 0.00612862 2.07417e-05 4.96593e-07 2.718 ||| 1-0 ||| 86 48212 +a los ||| the funds ||| 0.000504286 0.00612862 2.07417e-05 3.27294e-05 2.718 ||| 1-0 ||| 1983 48212 +a los ||| the gentlemen - ||| 0.5 0.00612862 2.07417e-05 1.11808e-07 2.718 ||| 1-0 ||| 2 48212 +a los ||| the gentlemen ||| 0.030303 0.00612862 2.07417e-05 2.96409e-05 2.718 ||| 1-0 ||| 33 48212 +a los ||| the good people of ||| 0.0714286 0.00230489 2.07417e-05 5.79166e-09 2.718 ||| 1-0 0-3 ||| 14 48212 +a los ||| the government ||| 0.00032175 0.00612862 2.07417e-05 3.42736e-05 2.718 ||| 1-0 ||| 3108 48212 +a los ||| the governments of the ||| 0.00172414 0.00230489 2.07417e-05 2.66395e-08 2.718 ||| 0-2 1-3 ||| 580 48212 +a los ||| the group ||| 0.00116822 3.846e-05 2.07417e-05 2.35926e-06 2.718 ||| 1-0 0-1 ||| 856 48212 +a los ||| the hand of the ||| 0.0666667 0.00230489 2.07417e-05 3.08924e-07 2.718 ||| 0-2 1-3 ||| 15 48212 +a los ||| the hands of the ||| 0.00719424 0.00230489 6.22252e-05 7.85163e-08 2.718 ||| 0-2 1-3 ||| 417 48212 +a los ||| the heads of the ||| 0.0126582 0.00117109 2.07417e-05 1.26008e-08 2.718 ||| 0-2 1-2 1-3 ||| 79 48212 +a los ||| the help ||| 0.00132979 0.0317922 2.07417e-05 0.00282137 2.718 ||| 1-0 0-1 ||| 752 48212 +a los ||| the honourable ||| 0.00243309 0.00612862 2.07417e-05 2.23915e-05 2.718 ||| 1-0 ||| 411 48212 +a los ||| the implementation ||| 0.000137174 0.00612862 2.07417e-05 3.33299e-05 2.718 ||| 1-0 ||| 7290 48212 +a los ||| the individual ||| 0.0016538 0.00582946 6.22252e-05 0.000551338 2.718 ||| 1-0 1-1 ||| 1814 48212 +a los ||| the intended ||| 0.025 0.00016904 2.07417e-05 2.74532e-06 2.718 ||| 1-0 0-1 ||| 40 48212 +a los ||| the interests of the ||| 0.000569801 0.00230489 2.07417e-05 1.06792e-07 2.718 ||| 0-2 1-3 ||| 1755 48212 +a los ||| the interests ||| 0.000556896 0.00474348 6.22252e-05 0.000437493 2.718 ||| 1-0 1-1 ||| 5387 48212 +a los ||| the introduction ||| 0.000232992 0.00612862 2.07417e-05 2.25202e-05 2.718 ||| 1-0 ||| 4292 48212 +a los ||| the island ||| 0.00143678 0.00612862 2.07417e-05 4.33246e-06 2.718 ||| 1-0 ||| 696 48212 +a los ||| the key ||| 0.000682594 0.00612862 2.07417e-05 3.11851e-05 2.718 ||| 1-0 ||| 1465 48212 +a los ||| the language of force ||| 0.166667 0.00612862 2.07417e-05 1.8575e-10 2.718 ||| 1-0 ||| 6 48212 +a los ||| the language of ||| 0.0045045 0.00612862 2.07417e-05 1.09137e-06 2.718 ||| 1-0 ||| 222 48212 +a los ||| the language ||| 0.00176991 0.00612862 2.07417e-05 2.00752e-05 2.718 ||| 1-0 ||| 565 48212 +a los ||| the latter can replace the ||| 1 0.00089715 2.07417e-05 8.95733e-14 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| the latter ||| 0.000458085 0.00612862 2.07417e-05 4.12227e-05 2.718 ||| 1-0 ||| 2183 48212 +a los ||| the law in ||| 0.00980392 0.00718601 2.07417e-05 4.54374e-06 2.718 ||| 1-0 0-2 ||| 102 48212 +a los ||| the law is formed from events ) ||| 0.5 0.0053267 2.07417e-05 3.45878e-20 2.718 ||| 1-0 0-4 ||| 2 48212 +a los ||| the law is formed from events ||| 0.5 0.0053267 2.07417e-05 2.40644e-17 2.718 ||| 1-0 0-4 ||| 2 48212 +a los ||| the law is formed from ||| 0.5 0.0053267 2.07417e-05 3.3101e-13 2.718 ||| 1-0 0-4 ||| 2 48212 +a los ||| the leaders ||| 0.00136612 0.00873667 2.07417e-05 0.000475455 2.718 ||| 1-0 1-1 ||| 732 48212 +a los ||| the least- and ||| 1 0.122289 2.07417e-05 4.83576e-09 2.718 ||| 1-0 0-1 ||| 1 48212 +a los ||| the least- ||| 1 0.122289 2.07417e-05 3.86061e-07 2.718 ||| 1-0 0-1 ||| 1 48212 +a los ||| the letters ||| 0.0149254 0.00612862 2.07417e-05 2.78822e-06 2.718 ||| 1-0 ||| 67 48212 +a los ||| the levels ||| 0.00273224 0.008641 2.07417e-05 0.000843714 2.718 ||| 1-0 1-1 ||| 366 48212 +a los ||| the lid on ||| 1 0.00957523 2.07417e-05 2.92909e-08 2.718 ||| 1-0 0-2 ||| 1 48212 +a los ||| the life out ||| 0.142857 0.00819065 2.07417e-05 2.66511e-07 2.718 ||| 1-0 0-2 ||| 7 48212 +a los ||| the light of the ||| 0.00091659 0.00230489 2.07417e-05 1.35378e-07 2.718 ||| 0-2 1-3 ||| 1091 48212 +a los ||| the lines of those ||| 0.142857 0.0053661 2.07417e-05 2.75919e-09 2.718 ||| 0-2 1-3 ||| 7 48212 +a los ||| the local underworld ||| 0.333333 0.000193498 2.07417e-05 2.5051e-12 2.718 ||| 1-0 0-1 ||| 3 48212 +a los ||| the local ||| 0.00502513 0.000193498 2.07417e-05 6.26276e-06 2.718 ||| 1-0 0-1 ||| 199 48212 +a los ||| the long line ||| 0.111111 0.00612862 2.07417e-05 4.27221e-08 2.718 ||| 1-0 ||| 9 48212 +a los ||| the long ||| 0.000562746 0.00612862 2.07417e-05 0.000145116 2.718 ||| 1-0 ||| 1777 48212 +a los ||| the lot of the ||| 0.0666667 0.00117109 2.07417e-05 5.59459e-08 2.718 ||| 0-2 1-2 1-3 ||| 15 48212 +a los ||| the main body ||| 0.0357143 0.00612862 2.07417e-05 3.66085e-09 2.718 ||| 1-0 ||| 28 48212 +a los ||| the main goal of Lisbon will be ||| 0.5 0.00612862 2.07417e-05 2.80864e-19 2.718 ||| 1-0 ||| 2 48212 +a los ||| the main goal of Lisbon will ||| 0.5 0.00612862 2.07417e-05 1.54977e-17 2.718 ||| 1-0 ||| 2 48212 +a los ||| the main goal of Lisbon ||| 0.5 0.00612862 2.07417e-05 1.7914e-15 2.718 ||| 1-0 ||| 2 48212 +a los ||| the main goal of ||| 0.0526316 0.00612862 2.07417e-05 7.78869e-11 2.718 ||| 1-0 ||| 19 48212 +a los ||| the main goal ||| 0.0277778 0.00612862 2.07417e-05 1.43269e-09 2.718 ||| 1-0 ||| 36 48212 +a los ||| the main ||| 0.000526131 0.00612862 6.22252e-05 4.27669e-05 2.718 ||| 1-0 ||| 5702 48212 +a los ||| the man in the ||| 0.0227273 0.00718601 2.07417e-05 1.00788e-07 2.718 ||| 0-2 1-3 ||| 44 48212 +a los ||| the margins of ||| 0.02 0.00230489 2.07417e-05 7.35897e-08 2.718 ||| 1-0 0-2 ||| 50 48212 +a los ||| the market of the ||| 0.0666667 0.00230489 2.07417e-05 1.76039e-07 2.718 ||| 0-2 1-3 ||| 15 48212 +a los ||| the mass ||| 0.010989 0.00612862 2.07417e-05 6.77751e-06 2.718 ||| 1-0 ||| 91 48212 +a los ||| the matter ||| 0.00039801 0.00612862 4.14834e-05 0.000445042 2.718 ||| 1-0 ||| 5025 48212 +a los ||| the meantime ||| 0.00152207 0.00612862 2.07417e-05 1.05094e-05 2.718 ||| 1-0 ||| 657 48212 +a los ||| the meetings ||| 0.00249377 0.00612862 2.07417e-05 9.43704e-06 2.718 ||| 1-0 ||| 401 48212 +a los ||| the members of the ||| 0.00064433 0.00230489 2.07417e-05 1.14892e-07 2.718 ||| 0-2 1-3 ||| 1552 48212 +a los ||| the men ||| 0.0035461 0.00612862 2.07417e-05 1.82306e-05 2.718 ||| 1-0 ||| 282 48212 +a los ||| the minds of our ||| 0.0714286 0.000468123 2.07417e-05 3.10616e-10 2.718 ||| 0-2 1-3 ||| 14 48212 +a los ||| the minds of ||| 0.00813008 0.00230489 2.07417e-05 6.0775e-07 2.718 ||| 1-0 0-2 ||| 123 48212 +a los ||| the minds ||| 0.00641026 0.00612862 2.07417e-05 2.0547e-05 2.718 ||| 1-0 ||| 156 48212 +a los ||| the money on to the ||| 1 0.0188393 2.07417e-05 5.71827e-08 2.718 ||| 0-2 0-3 1-4 ||| 1 48212 +a los ||| the most progress ||| 0.25 0.00612862 2.07417e-05 2.44165e-08 2.718 ||| 1-0 ||| 4 48212 +a los ||| the most ||| 0.000166334 0.00612862 2.07417e-05 0.000185395 2.718 ||| 1-0 ||| 6012 48212 +a los ||| the need for ||| 0.000143287 0.00835696 2.07417e-05 1.44929e-05 2.718 ||| 1-0 0-2 ||| 6979 48212 +a los ||| the need ||| 6.57462e-05 0.00612862 2.07417e-05 0.00039331 2.718 ||| 1-0 ||| 15210 48212 +a los ||| the number employed on a ||| 0.125 0.00612862 2.07417e-05 1.81294e-12 2.718 ||| 1-0 ||| 8 48212 +a los ||| the number employed on ||| 0.125 0.00612862 2.07417e-05 4.09003e-11 2.718 ||| 1-0 ||| 8 48212 +a los ||| the number employed ||| 0.111111 0.00612862 2.07417e-05 6.11273e-09 2.718 ||| 1-0 ||| 9 48212 +a los ||| the number ||| 0.000194099 0.00612862 2.07417e-05 0.000212248 2.718 ||| 1-0 ||| 5152 48212 +a los ||| the numerous ||| 0.00201207 0.00612862 2.07417e-05 7.54963e-06 2.718 ||| 1-0 ||| 497 48212 +a los ||| the officials ||| 0.00373134 0.00860234 2.07417e-05 0.000337803 2.718 ||| 1-0 1-1 ||| 268 48212 +a los ||| the one ||| 0.000198255 0.00612862 2.07417e-05 0.00178789 2.718 ||| 1-0 ||| 5044 48212 +a los ||| the ones ||| 0.00367647 0.00612862 4.14834e-05 9.47993e-05 2.718 ||| 1-0 ||| 544 48212 +a los ||| the opportunity to ||| 0.000734214 0.0281035 6.22252e-05 2.70325e-05 2.718 ||| 1-0 0-2 ||| 4086 48212 +a los ||| the other insurgency ||| 0.166667 0.00612862 2.07417e-05 2.22285e-10 2.718 ||| 1-0 ||| 6 48212 +a los ||| the other ||| 0.000124906 0.00612862 4.14834e-05 0.000555713 2.718 ||| 1-0 ||| 16012 48212 +a los ||| the others ||| 0.000985222 0.00612862 2.07417e-05 4.16946e-05 2.718 ||| 1-0 ||| 1015 48212 +a los ||| the owners of the ||| 0.0416667 0.0037759 2.07417e-05 2.13583e-07 2.718 ||| 1-1 0-2 1-3 ||| 24 48212 +a los ||| the package ||| 0.00114155 0.00612862 2.07417e-05 2.03754e-05 2.718 ||| 1-0 ||| 876 48212 +a los ||| the part of the ||| 0.000716846 0.00230489 2.07417e-05 9.28643e-07 2.718 ||| 0-2 1-3 ||| 1395 48212 +a los ||| the parties of ||| 0.0344828 0.00230489 2.07417e-05 9.31291e-07 2.718 ||| 1-0 0-2 ||| 29 48212 +a los ||| the people in the ||| 0.00452489 0.00718601 2.07417e-05 1.39268e-06 2.718 ||| 0-2 1-3 ||| 221 48212 +a los ||| the people of the ||| 0.00194175 0.00230489 2.07417e-05 6.85616e-07 2.718 ||| 0-2 1-3 ||| 515 48212 +a los ||| the people of ||| 0.0010644 0.00612862 8.29669e-05 2.05261e-05 2.718 ||| 1-0 ||| 3758 48212 +a los ||| the people ||| 0.0014494 0.000972517 0.000352609 0.00028191 2.718 ||| 1-0 0-1 ||| 11729 48212 +a los ||| the perpetrators of ||| 0.0052356 0.00230489 2.07417e-05 6.34394e-08 2.718 ||| 1-0 0-2 ||| 191 48212 +a los ||| the place of the ||| 0.0192308 0.00230489 2.07417e-05 1.17229e-06 2.718 ||| 0-2 1-3 ||| 52 48212 +a los ||| the political prisoners , to ||| 1 0.0281035 2.07417e-05 3.90237e-11 2.718 ||| 1-0 0-4 ||| 1 48212 +a los ||| the ports located ||| 0.5 0.00612862 2.07417e-05 9.99983e-11 2.718 ||| 1-0 ||| 2 48212 +a los ||| the ports ||| 0.00483092 0.00612862 2.07417e-05 4.03219e-06 2.718 ||| 1-0 ||| 207 48212 +a los ||| the position of the ||| 0.000929368 0.00230489 2.07417e-05 2.56502e-07 2.718 ||| 0-2 1-3 ||| 1076 48212 +a los ||| the position of ||| 0.00060024 0.00230489 2.07417e-05 4.17812e-06 2.718 ||| 1-0 0-2 ||| 1666 48212 +a los ||| the positions of the ||| 0.00649351 0.00230489 2.07417e-05 2.63279e-08 2.718 ||| 0-2 1-3 ||| 154 48212 +a los ||| the possibility of ||| 0.000233809 0.00230489 2.07417e-05 1.08608e-06 2.718 ||| 1-0 0-2 ||| 4277 48212 +a los ||| the presence ||| 0.000757576 0.00612862 2.07417e-05 1.65148e-05 2.718 ||| 1-0 ||| 1320 48212 +a los ||| the procedures that are ||| 0.166667 0.00612862 2.07417e-05 4.72963e-09 2.718 ||| 1-0 ||| 6 48212 +a los ||| the procedures that ||| 0.0285714 0.00612862 2.07417e-05 3.1172e-07 2.718 ||| 1-0 ||| 35 48212 +a los ||| the procedures ||| 0.000831947 0.00612862 2.07417e-05 1.85309e-05 2.718 ||| 1-0 ||| 1202 48212 +a los ||| the proceedings ||| 0.00303951 0.00612862 2.07417e-05 1.55711e-05 2.718 ||| 1-0 ||| 329 48212 +a los ||| the process of ||| 0.000336474 0.00612862 2.07417e-05 9.96921e-06 2.718 ||| 1-0 ||| 2972 48212 +a los ||| the process ||| 0.000173641 0.00612862 2.07417e-05 0.000183379 2.718 ||| 1-0 ||| 5759 48212 +a los ||| the programme to cover ||| 1 0.00199389 2.07417e-05 8.24686e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| the proper identity ||| 0.5 0.00612862 2.07417e-05 7.66845e-10 2.718 ||| 1-0 ||| 2 48212 +a los ||| the proper ||| 0.00166389 0.00612862 2.07417e-05 3.79626e-05 2.718 ||| 1-0 ||| 601 48212 +a los ||| the proposal for ||| 0.000285225 0.00835696 2.07417e-05 3.15654e-06 2.718 ||| 1-0 0-2 ||| 3506 48212 +a los ||| the purposes ||| 0.00214133 0.00612862 2.07417e-05 5.18608e-05 2.718 ||| 1-0 ||| 467 48212 +a los ||| the question of ||| 0.00017316 0.00230489 2.07417e-05 1.04967e-05 2.718 ||| 1-0 0-2 ||| 5775 48212 +a los ||| the range of ||| 0.00377358 0.00230489 2.07417e-05 8.71658e-07 2.718 ||| 1-0 0-2 ||| 265 48212 +a los ||| the rapporteur , for his commitment ||| 1 0.00835696 2.07417e-05 2.28521e-15 2.718 ||| 1-0 0-3 ||| 1 48212 +a los ||| the rapporteur , for his ||| 0.1 0.00835696 2.07417e-05 4.09535e-11 2.718 ||| 1-0 0-3 ||| 10 48212 +a los ||| the rapporteur , for ||| 0.0138889 0.00835696 2.07417e-05 1.36285e-07 2.718 ||| 1-0 0-3 ||| 72 48212 +a los ||| the rates ||| 0.00636943 0.00612862 2.07417e-05 1.63432e-05 2.718 ||| 1-0 ||| 157 48212 +a los ||| the rationing of ||| 0.5 0.00230489 2.07417e-05 1.39567e-08 2.718 ||| 1-0 0-2 ||| 2 48212 +a los ||| the rebellion to ||| 0.5 0.0281035 2.07417e-05 1.05185e-07 2.718 ||| 1-0 0-2 ||| 2 48212 +a los ||| the region of 7 , ||| 0.5 0.00230489 2.07417e-05 1.33318e-12 2.718 ||| 1-0 0-2 ||| 2 48212 +a los ||| the region of 7 ||| 0.5 0.00230489 2.07417e-05 1.11793e-11 2.718 ||| 1-0 0-2 ||| 2 48212 +a los ||| the region of ||| 0.00421941 0.00230489 2.07417e-05 1.24214e-06 2.718 ||| 1-0 0-2 ||| 237 48212 +a los ||| the regional ||| 0.00952381 0.00612862 2.07417e-05 1.05094e-05 2.718 ||| 1-0 ||| 105 48212 +a los ||| the regulations to ||| 0.0434783 0.0281035 2.07417e-05 6.59659e-06 2.718 ||| 1-0 0-2 ||| 23 48212 +a los ||| the relevant books ||| 0.5 0.00612862 2.07417e-05 4.66173e-10 2.718 ||| 1-0 ||| 2 48212 +a los ||| the relevant ||| 0.00132979 0.00612862 2.07417e-05 4.61557e-05 2.718 ||| 1-0 ||| 752 48212 +a los ||| the remaining ||| 0.00194932 0.00612862 2.07417e-05 1.40269e-05 2.718 ||| 1-0 ||| 513 48212 +a los ||| the representative ||| 0.00233645 0.00612862 2.07417e-05 1.00376e-05 2.718 ||| 1-0 ||| 428 48212 +a los ||| the reputation ||| 0.00606061 0.00612862 2.07417e-05 2.78822e-06 2.718 ||| 1-0 ||| 165 48212 +a los ||| the required ||| 0.00862069 0.00612862 2.07417e-05 6.80754e-05 2.718 ||| 1-0 ||| 116 48212 +a los ||| the rescue ||| 0.030303 0.00612862 2.07417e-05 2.31636e-06 2.718 ||| 1-0 ||| 33 48212 +a los ||| the resolution of ||| 0.00284091 0.00230489 2.07417e-05 1.10892e-06 2.718 ||| 1-0 0-2 ||| 352 48212 +a los ||| the rest can ||| 0.142857 0.00612862 2.07417e-05 9.64539e-08 2.718 ||| 1-0 ||| 7 48212 +a los ||| the rest of ||| 0.000938086 0.00230489 2.07417e-05 9.59204e-07 2.718 ||| 1-0 0-2 ||| 1066 48212 +a los ||| the rest ||| 0.000371609 0.00612862 2.07417e-05 3.24291e-05 2.718 ||| 1-0 ||| 2691 48212 +a los ||| the right ||| 9.273e-05 0.00612862 2.07417e-05 0.000276634 2.718 ||| 1-0 ||| 10784 48212 +a los ||| the rights of those ||| 0.012987 0.0053661 2.07417e-05 6.06719e-09 2.718 ||| 0-2 1-3 ||| 77 48212 +a los ||| the rights ||| 0.000386399 0.00612862 4.14834e-05 8.58342e-05 2.718 ||| 1-0 ||| 5176 48212 +a los ||| the role of the ||| 0.000581734 0.00230489 2.07417e-05 1.72923e-07 2.718 ||| 0-2 1-3 ||| 1719 48212 +a los ||| the rule concerning ||| 0.2 0.0273292 2.07417e-05 1.42635e-07 2.718 ||| 1-0 0-2 ||| 5 48212 +a los ||| the safety net ||| 0.03125 0.00612862 2.07417e-05 3.37095e-10 2.718 ||| 1-0 ||| 32 48212 +a los ||| the safety ||| 0.000505561 0.00612862 2.07417e-05 2.17481e-05 2.718 ||| 1-0 ||| 1978 48212 +a los ||| the salaries ||| 0.0117647 0.0100182 2.07417e-05 0.000120966 2.718 ||| 1-0 1-1 ||| 85 48212 +a los ||| the same as ||| 0.00152439 0.00297745 2.07417e-05 3.02807e-06 2.718 ||| 1-0 0-2 ||| 656 48212 +a los ||| the same right across the ||| 1 0.00600144 2.07417e-05 6.7238e-12 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| the same rights ||| 0.00245098 0.00612862 2.07417e-05 6.90707e-08 2.718 ||| 1-0 ||| 408 48212 +a los ||| the same time ||| 0.00045683 0.00612862 2.07417e-05 5.66684e-07 2.718 ||| 1-0 ||| 2189 48212 +a los ||| the same ||| 0.000277123 0.00612862 0.00012445 0.000345181 2.718 ||| 1-0 ||| 21651 48212 +a los ||| the savings towards ||| 0.333333 0.0190168 2.07417e-05 1.20076e-08 2.718 ||| 1-0 0-2 ||| 3 48212 +a los ||| the scope ||| 0.00034965 0.00612862 2.07417e-05 4.27669e-05 2.718 ||| 1-0 ||| 2860 48212 +a los ||| the section covering the ||| 1 0.00354081 2.07417e-05 2.71342e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| the so ||| 0.0454545 0.00612862 2.07417e-05 0.000973602 2.718 ||| 1-0 ||| 22 48212 +a los ||| the sometimes ||| 0.0588235 0.0403062 2.07417e-05 0.00122038 2.718 ||| 1-0 0-1 ||| 17 48212 +a los ||| the speakers from ||| 0.0588235 0.0053267 2.07417e-05 6.2377e-08 2.718 ||| 1-0 0-2 ||| 17 48212 +a los ||| the status of ||| 0.00110375 0.00230489 2.07417e-05 1.28275e-06 2.718 ||| 1-0 0-2 ||| 906 48212 +a los ||| the status ||| 0.000693481 0.00612862 2.07417e-05 4.33675e-05 2.718 ||| 1-0 ||| 1442 48212 +a los ||| the stock breeders ||| 0.166667 0.00612862 2.07417e-05 1.25513e-11 2.718 ||| 1-0 ||| 6 48212 +a los ||| the stock ||| 0.00662252 0.00612862 2.07417e-05 1.14102e-05 2.718 ||| 1-0 ||| 151 48212 +a los ||| the subject of ||| 0.000289771 0.00230489 2.07417e-05 6.84892e-06 2.718 ||| 1-0 0-2 ||| 3451 48212 +a los ||| the subject ||| 0.000179083 0.00612862 2.07417e-05 0.000231551 2.718 ||| 1-0 ||| 5584 48212 +a los ||| the target group of ||| 0.5 0.00230489 2.07417e-05 6.17727e-11 2.718 ||| 1-0 0-3 ||| 2 48212 +a los ||| the targets of the ||| 0.0277778 0.00230489 2.07417e-05 1.85386e-08 2.718 ||| 0-2 1-3 ||| 36 48212 +a los ||| the targets ||| 0.00155521 0.00612862 2.07417e-05 1.02092e-05 2.718 ||| 1-0 ||| 643 48212 +a los ||| the task of ||| 0.00238095 0.00230489 4.14834e-05 1.59867e-06 2.718 ||| 1-0 0-2 ||| 840 48212 +a los ||| the three ||| 0.000311818 0.00612862 2.07417e-05 2.71529e-05 2.718 ||| 1-0 ||| 3207 48212 +a los ||| the throats of the ||| 0.5 0.00230489 2.07417e-05 3.66098e-09 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| the time to ||| 0.00172117 0.0281035 2.07417e-05 0.000246689 2.718 ||| 1-0 0-2 ||| 581 48212 +a los ||| the time ||| 0.000137174 0.00612862 2.07417e-05 0.000704218 2.718 ||| 1-0 ||| 7290 48212 +a los ||| the town ||| 0.00409836 0.00612862 2.07417e-05 5.40485e-06 2.718 ||| 1-0 ||| 244 48212 +a los ||| the trade in ||| 0.00262467 0.00718601 2.07417e-05 2.24481e-06 2.718 ||| 1-0 0-2 ||| 381 48212 +a los ||| the tributaries ||| 0.1 0.00612862 2.07417e-05 1.71583e-07 2.718 ||| 1-0 ||| 10 48212 +a los ||| the troublemakers are ||| 0.5 0.00612862 2.07417e-05 2.60337e-09 2.718 ||| 1-0 ||| 2 48212 +a los ||| the troublemakers ||| 0.166667 0.00612862 2.07417e-05 1.71583e-07 2.718 ||| 1-0 ||| 6 48212 +a los ||| the two of ||| 0.0344828 0.00230489 2.07417e-05 2.99942e-06 2.718 ||| 1-0 0-2 ||| 29 48212 +a los ||| the various ||| 0.000449236 0.00335058 6.22252e-05 6.75606e-05 2.718 ||| 1-0 1-1 ||| 6678 48212 +a los ||| the very ||| 0.00157274 0.00612862 0.00012445 0.00149255 2.718 ||| 1-0 ||| 3815 48212 +a los ||| the victims ||| 0.000343525 0.00612862 2.07417e-05 1.51422e-05 2.718 ||| 1-0 ||| 2911 48212 +a los ||| the views of those ||| 0.0526316 0.0053661 2.07417e-05 2.46508e-09 2.718 ||| 0-2 1-3 ||| 19 48212 +a los ||| the voice of the ||| 0.00636943 0.00230489 2.07417e-05 3.38835e-08 2.718 ||| 0-2 1-3 ||| 157 48212 +a los ||| the way for ||| 0.00100301 0.00835696 2.07417e-05 3.40723e-05 2.718 ||| 1-0 0-2 ||| 997 48212 +a los ||| the way we ||| 0.00220264 0.00612862 2.07417e-05 1.0497e-05 2.718 ||| 1-0 ||| 454 48212 +a los ||| the way ||| 7.73874e-05 0.00612862 2.07417e-05 0.000924658 2.718 ||| 1-0 ||| 12922 48212 +a los ||| the welfare ||| 0.00293255 0.00612862 2.07417e-05 5.70512e-06 2.718 ||| 1-0 ||| 341 48212 +a los ||| the work of the ||| 0.000543183 0.00117109 2.07417e-05 2.741e-07 2.718 ||| 0-2 1-2 1-3 ||| 1841 48212 +a los ||| the world 's ||| 0.00666667 0.00612862 2.07417e-05 1.86091e-07 2.718 ||| 1-0 ||| 150 48212 +a los ||| the world ||| 9.60246e-05 0.00612862 2.07417e-05 9.77162e-05 2.718 ||| 1-0 ||| 10414 48212 +a los ||| the worst ||| 0.000807102 0.00612862 2.07417e-05 6.47724e-06 2.718 ||| 1-0 ||| 1239 48212 +a los ||| the year , in our opinion ||| 0.5 0.00145948 2.07417e-05 9.61406e-14 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| the year , in our ||| 0.5 0.00145948 2.07417e-05 3.91771e-10 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| the ||| 0.00302741 0.00612862 0.212292 0.428956 2.718 ||| 1-0 ||| 3.38078e+06 48212 +a los ||| their case to ||| 0.2 0.00543993 2.07417e-05 8.57402e-07 2.718 ||| 1-0 0-2 ||| 5 48212 +a los ||| their component ||| 0.5 0.00118631 2.07417e-05 3.45443e-08 2.718 ||| 1-0 ||| 2 48212 +a los ||| their fingers at the ||| 1 0.0249683 2.07417e-05 4.90753e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| their links to the ||| 0.25 0.0281035 2.07417e-05 2.07264e-09 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| their minds to ||| 0.2 0.00409398 2.07417e-05 1.94491e-08 2.718 ||| 0-2 ||| 5 48212 +a los ||| their own ||| 0.00013776 0.00118631 2.07417e-05 3.87834e-06 2.718 ||| 1-0 ||| 7259 48212 +a los ||| their while ||| 0.333333 0.000894332 2.07417e-05 2.09645e-06 2.718 ||| 1-0 0-1 ||| 3 48212 +a los ||| their ||| 0.000485336 0.00118631 0.00101634 0.0022877 2.718 ||| 1-0 ||| 100961 48212 +a los ||| them for the ||| 0.0277778 0.00835696 2.07417e-05 4.23991e-05 2.718 ||| 0-1 1-2 ||| 36 48212 +a los ||| them in order to provide a ||| 0.5 0.00104682 2.07417e-05 1.00006e-13 2.718 ||| 0-1 ||| 2 48212 +a los ||| them in order to provide ||| 0.333333 0.00104682 2.07417e-05 2.25615e-12 2.718 ||| 0-1 ||| 3 48212 +a los ||| them in order to ||| 0.0357143 0.00104682 2.07417e-05 7.62729e-09 2.718 ||| 0-1 ||| 28 48212 +a los ||| them in order ||| 0.027027 0.00104682 2.07417e-05 8.58366e-08 2.718 ||| 0-1 ||| 37 48212 +a los ||| them in the service ||| 1 0.00718601 2.07417e-05 4.62499e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| them in the ||| 0.00956938 0.00718601 4.14834e-05 6.91329e-05 2.718 ||| 0-1 1-2 ||| 209 48212 +a los ||| them in ||| 0.00105708 0.00104682 2.07417e-05 0.000161165 2.718 ||| 0-1 ||| 946 48212 +a los ||| them on a par with ||| 0.333333 0.00139487 2.07417e-05 1.96129e-13 2.718 ||| 0-1 ||| 3 48212 +a los ||| them on a par ||| 0.333333 0.00139487 2.07417e-05 3.06716e-11 2.718 ||| 0-1 ||| 3 48212 +a los ||| them on a ||| 0.047619 0.00139487 2.07417e-05 4.51052e-06 2.718 ||| 0-1 ||| 21 48212 +a los ||| them on ||| 0.00483092 0.00139487 2.07417e-05 0.000101758 2.718 ||| 0-1 ||| 207 48212 +a los ||| them onto the ||| 0.25 0.0253313 2.07417e-05 2.74081e-07 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| them pay extra to watch these events ||| 1 0.00552379 2.07417e-05 1.06442e-23 2.718 ||| 0-3 1-5 ||| 1 48212 +a los ||| them pay extra to watch these ||| 1 0.00552379 2.07417e-05 1.46412e-19 2.718 ||| 0-3 1-5 ||| 1 48212 +a los ||| them to retain their ||| 0.333333 0.00543993 2.07417e-05 3.33193e-11 2.718 ||| 0-1 1-3 ||| 3 48212 +a los ||| them to the ||| 0.0224719 0.0281035 4.14834e-05 0.000403068 2.718 ||| 0-1 1-2 ||| 89 48212 +a los ||| them to your ||| 1 0.00221403 2.07417e-05 2.896e-07 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| them to ||| 0.000484261 0.00878293 2.07417e-05 0.000705017 2.718 ||| 1-0 0-1 ||| 2065 48212 +a los ||| them towards ||| 0.142857 0.00277028 2.07417e-05 9.04666e-06 2.718 ||| 0-1 ||| 7 48212 +a los ||| them up to the ||| 0.25 0.0281035 2.07417e-05 1.37466e-06 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| them with the ||| 0.0285714 0.00698995 2.07417e-05 1.92099e-05 2.718 ||| 0-1 1-2 ||| 35 48212 +a los ||| them ||| 0.000558722 0.00191533 0.000311126 0.0020126 2.718 ||| 1-0 ||| 26847 48212 +a los ||| themselves from the ||| 0.1 0.0053267 2.07417e-05 1.3269e-06 2.718 ||| 0-1 1-2 ||| 10 48212 +a los ||| then , to ||| 0.0149254 0.00409398 2.07417e-05 6.72746e-05 2.718 ||| 0-2 ||| 67 48212 +a los ||| then the ||| 0.000719424 0.00309316 2.07417e-05 0.000365685 2.718 ||| 0-0 1-1 ||| 1390 48212 +a los ||| there are still ||| 0.0008 1.55263e-06 2.07417e-05 2.52218e-09 2.718 ||| 0-0 1-0 ||| 1250 48212 +a los ||| there are ||| 0.000145948 1.55263e-06 8.29669e-05 3.34861e-06 2.718 ||| 0-0 1-0 ||| 27407 48212 +a los ||| there for the ||| 0.0227273 0.00835696 2.07417e-05 4.84513e-05 2.718 ||| 0-1 1-2 ||| 44 48212 +a los ||| there to spend ||| 0.047619 0.00409398 2.07417e-05 3.24281e-08 2.718 ||| 0-1 ||| 21 48212 +a los ||| there to those ||| 0.5 0.0654285 2.07417e-05 1.79295e-05 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| there to ||| 0.00165563 0.00409398 2.07417e-05 0.00107378 2.718 ||| 0-1 ||| 604 48212 +a los ||| there ||| 0.000121474 1.55263e-06 0.000103709 0.0002207 2.718 ||| 0-0 1-0 ||| 41161 48212 +a los ||| therefore no longer be on the Committee ||| 1 0.00957523 2.07417e-05 5.49299e-18 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| therefore no longer be on the ||| 1 0.00957523 2.07417e-05 3.5996e-14 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| therefore treat ||| 0.25 0.00483055 2.07417e-05 3.71735e-07 2.718 ||| 0-1 ||| 4 48212 +a los ||| these are the ||| 0.000874126 0.000119917 2.07417e-05 1.47386e-07 2.718 ||| 0-1 1-2 ||| 1144 48212 +a los ||| these child ||| 1 1.33554e-05 2.07417e-05 4.46683e-07 2.718 ||| 0-0 1-0 1-1 ||| 1 48212 +a los ||| these companies with ||| 0.5 0.00137389 2.07417e-05 2.85674e-09 2.718 ||| 1-0 0-2 ||| 2 48212 +a los ||| these compulsory ||| 0.0909091 0.00120459 2.07417e-05 2.535e-08 2.718 ||| 1-0 ||| 11 48212 +a los ||| these conditions to ||| 0.142857 0.00552379 2.07417e-05 1.02036e-07 2.718 ||| 1-0 0-2 ||| 7 48212 +a los ||| these evils ||| 0.125 0.00556842 2.07417e-05 1.71122e-08 2.718 ||| 1-1 ||| 8 48212 +a los ||| these management ||| 0.5 0.00120459 2.07417e-05 1.07006e-07 2.718 ||| 1-0 ||| 2 48212 +a los ||| these than the ||| 0.5 0.00612862 2.07417e-05 1.35908e-07 2.718 ||| 1-2 ||| 2 48212 +a los ||| these ||| 0.000333203 0.00120459 0.00072596 0.0024375 2.718 ||| 1-0 ||| 105041 48212 +a los ||| they announced they were going to ||| 0.5 0.00409398 2.07417e-05 1.19579e-16 2.718 ||| 0-5 ||| 2 48212 +a los ||| they are not in the ||| 0.142857 0.00718601 2.07417e-05 4.35763e-09 2.718 ||| 0-3 1-4 ||| 7 48212 +a los ||| they are ||| 5.25403e-05 0.000362858 2.07417e-05 1.24204e-05 2.718 ||| 1-0 ||| 19033 48212 +a los ||| they can enter ||| 0.0833333 9.63408e-06 2.07417e-05 1.74746e-11 2.718 ||| 0-2 ||| 12 48212 +a los ||| they can tell ||| 0.0666667 0.000362858 2.07417e-05 2.39094e-10 2.718 ||| 1-0 ||| 15 48212 +a los ||| they can to those ||| 0.5 0.0654285 2.07417e-05 5.67847e-08 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| they can ||| 0.000297089 0.000362858 2.07417e-05 2.43476e-06 2.718 ||| 1-0 ||| 3366 48212 +a los ||| they consider the ||| 0.142857 0.00612862 2.07417e-05 2.22758e-07 2.718 ||| 1-2 ||| 7 48212 +a los ||| they could ||| 0.00125 0.000362858 2.07417e-05 5.82106e-07 2.718 ||| 1-0 ||| 800 48212 +a los ||| they do to all the ||| 1 0.0160962 2.07417e-05 4.52947e-09 2.718 ||| 0-2 1-3 1-4 ||| 1 48212 +a los ||| they drove out the ||| 1 0.0234388 2.07417e-05 1.12623e-10 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| they have brought to bear ||| 0.2 0.00409398 2.07417e-05 5.73187e-13 2.718 ||| 0-3 ||| 5 48212 +a los ||| they have brought to ||| 0.125 0.00409398 2.07417e-05 3.8289e-09 2.718 ||| 0-3 ||| 8 48212 +a los ||| they have made as rapporteurs to our ||| 1 0.0057078 2.07417e-05 8.24661e-18 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| they may ||| 0.00140252 0.000362858 2.07417e-05 6.13295e-07 2.718 ||| 1-0 ||| 713 48212 +a los ||| they might be to the ||| 1 0.0281035 2.07417e-05 3.41322e-09 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| they represent the ||| 0.0212766 0.000507953 2.07417e-05 2.56221e-08 2.718 ||| 0-1 1-2 ||| 47 48212 +a los ||| they were going to ||| 0.0416667 0.00409398 2.07417e-05 1.7529e-09 2.718 ||| 0-3 ||| 24 48212 +a los ||| they were up to ||| 0.5 0.00409398 2.07417e-05 6.98559e-09 2.718 ||| 0-3 ||| 2 48212 +a los ||| they ||| 0.000171944 0.000362858 0.000145192 0.0008186 2.718 ||| 1-0 ||| 40711 48212 +a los ||| things appear behind the scenes ||| 1 0.0112911 2.07417e-05 5.57931e-17 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| things appear behind the ||| 1 0.0112911 2.07417e-05 1.18709e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| things to the ||| 0.0322581 0.0281035 2.07417e-05 6.17585e-05 2.718 ||| 0-1 1-2 ||| 31 48212 +a los ||| things ||| 7.54262e-05 7.0107e-05 2.07417e-05 2.53e-05 2.718 ||| 1-0 ||| 13258 48212 +a los ||| thinking of the ||| 0.00549451 0.00230489 2.07417e-05 9.40172e-07 2.718 ||| 0-1 1-2 ||| 182 48212 +a los ||| this has to ||| 0.00363636 0.00409398 2.07417e-05 1.16511e-05 2.718 ||| 0-2 ||| 275 48212 +a los ||| this mainly on the ||| 0.333333 0.00612862 2.07417e-05 8.67914e-10 2.718 ||| 1-3 ||| 3 48212 +a los ||| this marking to the ||| 1 0.0281035 2.07417e-05 6.9906e-09 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| this progress ||| 0.00518135 0.00196882 2.07417e-05 5.48444e-06 2.718 ||| 1-1 ||| 193 48212 +a los ||| this protection to trade ||| 1 0.00705988 2.07417e-05 1.72442e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| this rule was applied to ||| 0.5 0.00409398 2.07417e-05 6.24379e-14 2.718 ||| 0-4 ||| 2 48212 +a los ||| this should include the ||| 0.166667 0.00343942 2.07417e-05 3.25084e-09 2.718 ||| 0-2 1-3 ||| 6 48212 +a los ||| this task to the ||| 0.166667 0.0281035 2.07417e-05 1.22335e-07 2.718 ||| 0-2 1-3 ||| 6 48212 +a los ||| this to our ||| 0.0714286 0.0057078 2.07417e-05 8.08297e-06 2.718 ||| 0-1 1-2 ||| 14 48212 +a los ||| this to the ||| 0.0231214 0.0281035 8.29669e-05 0.000970916 2.718 ||| 0-1 1-2 ||| 173 48212 +a los ||| this to ||| 0.00136986 0.00409398 4.14834e-05 0.00226344 2.718 ||| 0-1 ||| 1460 48212 +a los ||| this up with any ||| 1 0.00101811 2.07417e-05 3.39796e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| this with the ||| 0.00662252 0.00698995 2.07417e-05 4.62731e-05 2.718 ||| 0-1 1-2 ||| 151 48212 +a los ||| those , in particular , ||| 1 0.01673 2.07417e-05 8.78032e-09 2.718 ||| 1-0 0-2 ||| 1 48212 +a los ||| those , in particular ||| 0.5 0.01673 2.07417e-05 7.36267e-08 2.718 ||| 1-0 0-2 ||| 2 48212 +a los ||| those , in ||| 0.142857 0.01673 2.07417e-05 0.00011964 2.718 ||| 1-0 0-2 ||| 7 48212 +a los ||| those about ||| 0.0769231 0.0149858 2.07417e-05 8.41442e-05 2.718 ||| 1-0 0-1 ||| 13 48212 +a los ||| those among his country ||| 1 0.00382932 2.07417e-05 2.45595e-13 2.718 ||| 1-0 0-1 ||| 1 48212 +a los ||| those among his country ’ ||| 1 0.00382932 2.07417e-05 4.27851e-16 2.718 ||| 1-0 0-1 ||| 1 48212 +a los ||| those among his ||| 1 0.00382932 2.07417e-05 6.82398e-10 2.718 ||| 1-0 0-1 ||| 1 48212 +a los ||| those among us ||| 0.111111 0.00205064 2.07417e-05 8.51346e-09 2.718 ||| 1-0 0-1 1-1 ||| 9 48212 +a los ||| those among ||| 0.111111 0.00382932 4.14834e-05 2.27087e-06 2.718 ||| 1-0 0-1 ||| 18 48212 +a los ||| those by the ||| 0.0526316 0.00687752 2.07417e-05 5.89298e-05 2.718 ||| 1-0 0-1 1-2 ||| 19 48212 +a los ||| those concerning the ||| 0.0163934 0.0273292 2.07417e-05 1.27038e-06 2.718 ||| 0-1 1-2 ||| 61 48212 +a los ||| those contained ||| 0.0416667 0.0142682 2.07417e-05 1.13544e-06 2.718 ||| 1-0 ||| 24 48212 +a los ||| those for the ||| 0.0238095 0.00835696 2.07417e-05 1.14454e-05 2.718 ||| 0-1 1-2 ||| 42 48212 +a los ||| those for ||| 0.0114504 0.0194561 6.22252e-05 0.000615282 2.718 ||| 1-0 0-1 ||| 262 48212 +a los ||| those from ||| 0.00704225 0.0124013 4.14834e-05 0.000120203 2.718 ||| 1-0 0-1 ||| 284 48212 +a los ||| those in the ||| 0.00420168 0.00718601 4.14834e-05 1.86621e-05 2.718 ||| 0-1 1-2 ||| 476 48212 +a los ||| those in ||| 0.0137525 0.01673 0.000435576 0.00100323 2.718 ||| 1-0 0-1 ||| 1527 48212 +a los ||| those individuals in ||| 0.333333 0.01673 2.07417e-05 3.25048e-08 2.718 ||| 1-0 0-2 ||| 3 48212 +a los ||| those looming ||| 0.5 0.0142682 2.07417e-05 4.8423e-08 2.718 ||| 1-0 ||| 2 48212 +a los ||| those making presentations and ||| 0.5 0.0142682 2.07417e-05 3.21844e-14 2.718 ||| 1-0 ||| 2 48212 +a los ||| those making presentations ||| 0.5 0.0142682 2.07417e-05 2.56943e-12 2.718 ||| 1-0 ||| 2 48212 +a los ||| those making ||| 0.0625 0.0142682 2.07417e-05 6.42357e-06 2.718 ||| 1-0 ||| 16 48212 +a los ||| those members of the ||| 0.0285714 0.0053661 2.07417e-05 4.47232e-09 2.718 ||| 1-0 0-2 ||| 35 48212 +a los ||| those members of ||| 0.0294118 0.0053661 2.07417e-05 7.28488e-08 2.718 ||| 1-0 0-2 ||| 34 48212 +a los ||| those of our ||| 0.0113636 0.0142682 2.07417e-05 1.25215e-06 2.718 ||| 1-0 ||| 88 48212 +a los ||| those of the ||| 0.00102987 0.00226846 2.07417e-05 1.27501e-05 2.718 ||| 0-0 0-1 1-2 ||| 971 48212 +a los ||| those of us ||| 0.00961538 0.0053661 8.29669e-05 1.42349e-06 2.718 ||| 1-0 0-1 ||| 416 48212 +a los ||| those of you ||| 0.00684932 0.0053661 2.07417e-05 1.59462e-06 2.718 ||| 1-0 0-1 ||| 146 48212 +a los ||| those of ||| 0.00596421 0.0053661 0.000373351 0.00049389 2.718 ||| 1-0 0-1 ||| 3018 48212 +a los ||| those officials ||| 0.0555556 0.00461515 2.07417e-05 6.97036e-06 2.718 ||| 0-0 1-0 1-1 ||| 18 48212 +a los ||| those older ||| 0.25 0.0142682 2.07417e-05 1.13544e-07 2.718 ||| 1-0 ||| 4 48212 +a los ||| those on the ||| 0.00505051 0.00957523 2.07417e-05 1.17831e-05 2.718 ||| 0-1 1-2 ||| 198 48212 +a los ||| those on ||| 0.00261097 0.0222924 2.07417e-05 0.000633433 2.718 ||| 1-0 0-1 ||| 383 48212 +a los ||| those people ||| 0.00214592 0.0034147 4.14834e-05 6.97062e-05 2.718 ||| 0-0 1-0 1-1 ||| 932 48212 +a los ||| those producing the ||| 0.5 0.00223202 2.07417e-05 1.44404e-08 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| those responsible for the ||| 0.00636943 0.00835696 2.07417e-05 1.69278e-09 2.718 ||| 0-2 1-3 ||| 157 48212 +a los ||| those rights to the ||| 1 0.0281035 2.07417e-05 2.17721e-08 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| those that are ||| 0.00540541 0.0142682 2.07417e-05 4.26171e-06 2.718 ||| 1-0 ||| 185 48212 +a los ||| those that ||| 0.0014892 0.0142682 4.14834e-05 0.00028088 2.718 ||| 1-0 ||| 1343 48212 +a los ||| those to ||| 0.0166667 0.0654285 4.14834e-05 0.0058492 2.718 ||| 1-0 0-1 ||| 120 48212 +a los ||| those under ||| 0.0181818 0.0109445 2.07417e-05 2.36839e-05 2.718 ||| 1-0 0-1 ||| 55 48212 +a los ||| those who are the ||| 0.0526316 0.00223202 2.07417e-05 5.76856e-09 2.718 ||| 0-0 1-3 ||| 19 48212 +a los ||| those who are under the ||| 0.25 0.00470099 2.07417e-05 5.89579e-12 2.718 ||| 0-3 1-4 ||| 4 48212 +a los ||| those who are ||| 0.00453172 0.0142682 0.00012445 2.23453e-07 2.718 ||| 1-0 ||| 1324 48212 +a los ||| those who do ||| 0.0208333 0.000163307 2.07417e-05 2.24856e-09 2.718 ||| 1-0 0-1 ||| 48 48212 +a los ||| those who have been ||| 0.00492611 0.0142682 2.07417e-05 5.88151e-10 2.718 ||| 1-0 ||| 203 48212 +a los ||| those who have ||| 0.000588235 0.0142682 2.07417e-05 1.76135e-07 2.718 ||| 1-0 ||| 1700 48212 +a los ||| those who will ||| 0.0307692 0.00803978 4.14834e-05 2.07415e-07 2.718 ||| 1-0 0-2 ||| 65 48212 +a los ||| those who ||| 0.000719166 0.0142682 0.000207417 1.47273e-05 2.718 ||| 1-0 ||| 13905 48212 +a los ||| those with ||| 0.00884956 0.0162735 0.000103709 0.000278768 2.718 ||| 1-0 0-1 ||| 565 48212 +a los ||| those ||| 0.0150412 0.0142682 0.0181697 0.0166976 2.718 ||| 1-0 ||| 58240 48212 +a los ||| thought to those ||| 0.166667 0.0654285 2.07417e-05 4.86068e-07 2.718 ||| 0-1 1-2 ||| 6 48212 +a los ||| threatening to engulf ||| 0.25 0.00409398 2.07417e-05 1.42222e-12 2.718 ||| 0-1 ||| 4 48212 +a los ||| threatening to ||| 0.00458716 0.00409398 2.07417e-05 2.03175e-06 2.718 ||| 0-1 ||| 218 48212 +a los ||| thriving democracy , for the ||| 1 0.00835696 2.07417e-05 6.03384e-14 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| throats of the ||| 0.5 0.00230489 2.07417e-05 5.96331e-08 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| through and ||| 0.0126582 0.00410995 2.07417e-05 9.95696e-05 2.718 ||| 0-0 ||| 79 48212 +a los ||| through in the ||| 0.0243902 0.0176996 2.07417e-05 0.00020487 2.718 ||| 0-0 0-1 1-2 ||| 41 48212 +a los ||| through independent ||| 1 0.000251126 2.07417e-05 4.61048e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| through the report ||| 0.0416667 0.0282131 2.07417e-05 1.39768e-06 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| through the safety net ||| 0.333333 0.00612862 2.07417e-05 1.55165e-13 2.718 ||| 1-1 ||| 3 48212 +a los ||| through the safety ||| 0.333333 0.00612862 2.07417e-05 1.00106e-08 2.718 ||| 1-1 ||| 3 48212 +a los ||| through the ||| 0.00228903 0.0282131 0.000311126 0.00340982 2.718 ||| 0-0 1-1 ||| 6553 48212 +a los ||| through their own ||| 0.025 0.00118631 2.07417e-05 1.7852e-09 2.718 ||| 1-1 ||| 40 48212 +a los ||| through their ||| 0.00246914 0.00118631 2.07417e-05 1.05303e-06 2.718 ||| 1-1 ||| 405 48212 +a los ||| through them ||| 0.0153846 0.0088172 2.07417e-05 1.59984e-05 2.718 ||| 0-0 1-1 ||| 65 48212 +a los ||| through those ||| 0.0434783 0.0656838 2.07417e-05 0.000132731 2.718 ||| 0-0 1-1 ||| 23 48212 +a los ||| through to our ||| 0.5 0.0057078 2.07417e-05 5.75818e-07 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| through ||| 9.19709e-05 0.00410995 6.22252e-05 0.0079491 2.718 ||| 0-0 ||| 32619 48212 +a los ||| throughout the ||| 0.000197316 0.00724303 2.07417e-05 0.000319873 2.718 ||| 0-0 1-1 ||| 5068 48212 +a los ||| thrown at the ||| 0.5 0.0249683 2.07417e-05 4.04412e-07 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| ties ||| 0.00147275 0.00670563 2.07417e-05 0.0001293 2.718 ||| 1-0 ||| 679 48212 +a los ||| time in our ||| 0.0526316 0.00145948 2.07417e-05 3.52244e-07 2.718 ||| 0-1 1-2 ||| 19 48212 +a los ||| to ' ||| 0.00191205 0.0102146 2.07417e-05 0.00186332 2.718 ||| 0-0 1-1 ||| 523 48212 +a los ||| to , all the ||| 1 0.0160962 2.07417e-05 4.81735e-05 2.718 ||| 0-0 1-2 1-3 ||| 1 48212 +a los ||| to , the ||| 0.0615385 0.0281035 8.29669e-05 0.0179197 2.718 ||| 0-0 1-2 ||| 65 48212 +a los ||| to , those ||| 0.25 0.0654285 2.07417e-05 0.000697544 2.718 ||| 0-0 1-2 ||| 4 48212 +a los ||| to , ||| 0.00213447 0.00409398 4.14834e-05 0.0417751 2.718 ||| 0-0 ||| 937 48212 +a los ||| to 6 100 ||| 1 8.08936e-05 2.07417e-05 3.64314e-12 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| to ACP ||| 0.2 0.0179342 2.07417e-05 9.16039e-05 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| to C ||| 0.0833333 0.0028302 2.07417e-05 1.71648e-06 2.718 ||| 0-0 1-1 ||| 12 48212 +a los ||| to Community ||| 0.0227273 0.000168452 2.07417e-05 7.14615e-06 2.718 ||| 0-0 1-1 ||| 44 48212 +a los ||| to Credit Default ||| 0.5 0.153208 2.07417e-05 7.3213e-13 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| to ECU ||| 0.0512821 0.00551938 4.14834e-05 3.47499e-05 2.718 ||| 0-0 1-1 ||| 39 48212 +a los ||| to EU ||| 0.0258065 0.000992555 8.29669e-05 0.000189373 2.718 ||| 0-0 1-1 ||| 155 48212 +a los ||| to EUR ||| 0.0452675 0.00788839 0.000228159 0.000199917 2.718 ||| 0-0 1-1 ||| 243 48212 +a los ||| to European ||| 0.0485437 0.00078522 0.000207417 0.000399169 2.718 ||| 0-0 1-1 ||| 206 48212 +a los ||| to HKSAR ||| 0.142857 0.00409398 2.07417e-05 1.40121e-07 2.718 ||| 0-0 ||| 7 48212 +a los ||| to JEREMIE ||| 1 0.010446 2.07417e-05 3.50302e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to Luxembourg and get ||| 0.5 0.00409398 2.07417e-05 1.59224e-11 2.718 ||| 0-0 ||| 2 48212 +a los ||| to Luxembourg and ||| 0.166667 0.00409398 2.07417e-05 3.64191e-08 2.718 ||| 0-0 ||| 6 48212 +a los ||| to Luxembourg ||| 0.0153846 0.00409398 2.07417e-05 2.9075e-06 2.718 ||| 0-0 ||| 65 48212 +a los ||| to Members of the ||| 0.0285714 0.00230489 2.07417e-05 1.66295e-07 2.718 ||| 0-2 1-3 ||| 35 48212 +a los ||| to Mr ||| 0.000769231 0.00017075 6.22252e-05 5.89207e-05 2.718 ||| 0-0 1-1 ||| 3900 48212 +a los ||| to Serbian ||| 0.5 0.00064554 2.07417e-05 6.65573e-07 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to US ||| 0.1 0.0274152 4.14834e-05 0.000419276 2.718 ||| 0-0 1-1 ||| 20 48212 +a los ||| to a certain amount of frustration on ||| 1 0.000454728 2.07417e-05 1.66797e-20 2.718 ||| 0-0 1-4 ||| 1 48212 +a los ||| to a certain amount of frustration ||| 1 0.000454728 2.07417e-05 2.49285e-18 2.718 ||| 0-0 1-4 ||| 1 48212 +a los ||| to a certain amount of ||| 0.125 0.000454728 2.07417e-05 3.56122e-12 2.718 ||| 0-0 1-4 ||| 8 48212 +a los ||| to a cost-effectiveness ||| 1 0.012032 2.07417e-05 1.50616e-07 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| to a good EUR ||| 1 0.00788839 2.07417e-05 4.59557e-09 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| to a shortage in the ||| 1 0.0281035 2.07417e-05 1.22607e-09 2.718 ||| 0-0 1-4 ||| 1 48212 +a los ||| to a strict ||| 0.0909091 0.00409398 2.07417e-05 2.29806e-07 2.718 ||| 0-0 ||| 11 48212 +a los ||| to a ||| 0.000667283 0.00409398 0.000269642 0.0155274 2.718 ||| 0-0 ||| 19482 48212 +a los ||| to abandon the ||| 0.00943396 0.0281035 2.07417e-05 1.18709e-06 2.718 ||| 0-0 1-2 ||| 106 48212 +a los ||| to abolish the ||| 0.00534759 0.0281035 2.07417e-05 6.01056e-07 2.718 ||| 0-0 1-2 ||| 187 48212 +a los ||| to accept ||| 0.000313775 0.00409398 2.07417e-05 3.79377e-05 2.718 ||| 0-0 ||| 3187 48212 +a los ||| to accommodate the ||| 0.0151515 0.0281035 2.07417e-05 1.56275e-06 2.718 ||| 0-0 1-2 ||| 66 48212 +a los ||| to achieving the ||| 0.00896861 0.0281035 4.14834e-05 9.94748e-06 2.718 ||| 0-0 1-2 ||| 223 48212 +a los ||| to act if ||| 0.0714286 0.00409398 2.07417e-05 4.97318e-08 2.718 ||| 0-0 ||| 14 48212 +a los ||| to act ||| 0.00029274 0.00409398 2.07417e-05 5.95162e-05 2.718 ||| 0-0 ||| 3416 48212 +a los ||| to address the ||| 0.000787402 0.0281035 2.07417e-05 1.14651e-05 2.718 ||| 0-0 1-2 ||| 1270 48212 +a los ||| to affect the ||| 0.0227273 0.0342697 2.07417e-05 0.000237417 2.718 ||| 0-0 0-1 1-2 ||| 44 48212 +a los ||| to aid the ||| 0.027027 0.0281035 2.07417e-05 1.96245e-05 2.718 ||| 0-0 1-2 ||| 37 48212 +a los ||| to aid ||| 0.003003 0.00409398 2.07417e-05 4.57494e-05 2.718 ||| 0-0 ||| 333 48212 +a los ||| to air traffic ||| 0.0714286 0.0045695 2.07417e-05 1.65445e-09 2.718 ||| 0-0 1-1 ||| 14 48212 +a los ||| to air ||| 0.0277778 0.0045695 2.07417e-05 5.82552e-05 2.718 ||| 0-0 1-1 ||| 36 48212 +a los ||| to all my ||| 0.011236 0.00303738 2.07417e-05 6.49125e-07 2.718 ||| 0-0 1-1 1-2 ||| 89 48212 +a los ||| to all of the ||| 0.00757576 0.0281035 2.07417e-05 3.86016e-05 2.718 ||| 0-0 1-3 ||| 132 48212 +a los ||| to all of them ||| 0.027027 0.00408899 2.07417e-05 1.37327e-07 2.718 ||| 0-0 1-1 ||| 37 48212 +a los ||| to all of ||| 0.00159236 0.00408899 2.07417e-05 5.11954e-05 2.718 ||| 0-0 1-1 ||| 628 48212 +a los ||| to all other ||| 0.0178571 0.00408899 2.07417e-05 1.21999e-06 2.718 ||| 0-0 1-1 ||| 56 48212 +a los ||| to all the goals ||| 1 0.00868742 2.07417e-05 1.09615e-08 2.718 ||| 0-0 1-1 1-3 ||| 1 48212 +a los ||| to all the ||| 0.0165349 0.0160962 0.00047706 0.000403955 2.718 ||| 0-0 1-1 1-2 ||| 1391 48212 +a los ||| to all those who believe ||| 0.166667 0.0654285 2.07417e-05 7.58896e-12 2.718 ||| 0-0 1-2 ||| 6 48212 +a los ||| to all those who ||| 0.00290698 0.0654285 2.07417e-05 2.43783e-08 2.718 ||| 0-0 1-2 ||| 344 48212 +a los ||| to all those ||| 0.018797 0.0347588 0.000207417 1.57244e-05 2.718 ||| 0-0 1-1 1-2 ||| 532 48212 +a los ||| to all ||| 0.00964266 0.00408899 0.00141044 0.000941716 2.718 ||| 0-0 1-1 ||| 7052 48212 +a los ||| to allow the ||| 0.00628931 0.0281035 6.22252e-05 3.64541e-05 2.718 ||| 0-0 1-2 ||| 477 48212 +a los ||| to allow ||| 0.000310174 0.00409398 2.07417e-05 8.49832e-05 2.718 ||| 0-0 ||| 3224 48212 +a los ||| to also cover the ||| 1 0.0281035 2.07417e-05 5.92485e-08 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| to an ||| 0.000239866 0.00409398 2.07417e-05 0.00155699 2.718 ||| 0-0 ||| 4169 48212 +a los ||| to and for the ||| 1 0.0182302 2.07417e-05 6.9356e-05 2.718 ||| 0-0 0-2 1-3 ||| 1 48212 +a los ||| to animal ||| 0.047619 0.0398296 2.07417e-05 0.000497253 2.718 ||| 0-0 1-1 ||| 21 48212 +a los ||| to any ||| 0.0198864 0.00409338 0.000580768 0.000323539 2.718 ||| 0-0 1-1 ||| 1408 48212 +a los ||| to anyone ||| 0.00362319 0.00712967 2.07417e-05 5.55228e-05 2.718 ||| 0-0 1-1 ||| 276 48212 +a los ||| to appeal to the ||| 0.00806452 0.0281035 2.07417e-05 4.03236e-07 2.718 ||| 0-2 1-3 ||| 124 48212 +a los ||| to apply also to the ||| 0.5 0.0281035 2.07417e-05 9.70028e-09 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| to are the ||| 0.333333 0.0281035 2.07417e-05 0.00227991 2.718 ||| 0-0 1-2 ||| 3 48212 +a los ||| to arrive at the ||| 0.04 0.0249683 2.07417e-05 2.62055e-08 2.718 ||| 0-2 1-3 ||| 25 48212 +a los ||| to as ||| 0.0106762 0.00409398 6.22252e-05 0.00357462 2.718 ||| 0-0 ||| 281 48212 +a los ||| to ask the ||| 0.000662691 0.0281035 2.07417e-05 2.06613e-05 2.718 ||| 0-0 1-2 ||| 1509 48212 +a los ||| to assist the ||| 0.00389105 0.0369702 2.07417e-05 2.99556e-05 2.718 ||| 0-1 1-2 ||| 257 48212 +a los ||| to asylum ||| 0.0042735 0.000520385 2.07417e-05 4.4138e-06 2.718 ||| 0-0 1-1 ||| 234 48212 +a los ||| to attaining our ||| 0.25 0.0057078 2.07417e-05 3.12741e-09 2.718 ||| 0-0 1-2 ||| 4 48212 +a los ||| to auditors ||| 0.166667 0.0490533 2.07417e-05 2.48714e-05 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| to bar the ||| 0.333333 0.0281035 2.07417e-05 4.35766e-07 2.718 ||| 0-0 1-2 ||| 3 48212 +a los ||| to base the selection ||| 1 0.0281035 2.07417e-05 2.94578e-11 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| to base the ||| 0.047619 0.0281035 2.07417e-05 5.07893e-06 2.718 ||| 0-0 1-2 ||| 21 48212 +a los ||| to basic ||| 0.166667 0.00135607 4.14834e-05 1.60088e-05 2.718 ||| 0-0 1-1 ||| 12 48212 +a los ||| to be a ||| 0.000346021 0.00409398 2.07417e-05 0.000281401 2.718 ||| 0-0 ||| 2890 48212 +a los ||| to be able to enjoy the ||| 0.166667 0.0281035 2.07417e-05 7.85895e-12 2.718 ||| 0-0 1-5 ||| 6 48212 +a los ||| to be brought ||| 0.00645161 0.00409398 2.07417e-05 1.77757e-06 2.718 ||| 0-0 ||| 155 48212 +a los ||| to be commended ||| 0.02 0.00409398 2.07417e-05 8.88787e-09 2.718 ||| 0-0 ||| 50 48212 +a los ||| to be done ||| 0.000444642 0.00409398 2.07417e-05 2.89491e-06 2.718 ||| 0-0 ||| 2249 48212 +a los ||| to be given ||| 0.0014881 0.00409398 2.07417e-05 4.35696e-06 2.718 ||| 0-0 ||| 672 48212 +a los ||| to be held ||| 0.0013986 0.00409398 2.07417e-05 1.6195e-06 2.718 ||| 0-0 ||| 715 48212 +a los ||| to be identified with those ||| 1 0.0162735 2.07417e-05 1.72834e-11 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| to be implemented under the ||| 0.2 0.0281035 2.07417e-05 8.57886e-11 2.718 ||| 0-0 1-4 ||| 5 48212 +a los ||| to be in these ||| 1 0.00552379 2.07417e-05 3.31222e-07 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| to be introduced in ||| 0.047619 2.91401e-05 2.07417e-05 8.10971e-11 2.718 ||| 0-0 1-3 ||| 21 48212 +a los ||| to be made of ||| 0.0322581 0.00409398 2.07417e-05 7.22976e-07 2.718 ||| 0-0 ||| 31 48212 +a los ||| to be made ||| 0.000765697 0.00409398 2.07417e-05 1.32988e-05 2.718 ||| 0-0 ||| 1306 48212 +a los ||| to be met by operators of a ||| 1 0.00143549 2.07417e-05 2.4708e-17 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| to be met by operators of ||| 1 0.00143549 2.07417e-05 5.57418e-16 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| to be met by operators ||| 1 0.00143549 2.07417e-05 1.02534e-14 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| to be met by the ||| 0.111111 0.0147695 2.07417e-05 3.38329e-10 2.718 ||| 0-0 1-3 1-4 ||| 9 48212 +a los ||| to be met by ||| 0.0294118 0.00143549 2.07417e-05 7.88727e-10 2.718 ||| 0-0 1-3 ||| 34 48212 +a los ||| to be more on the ||| 1 0.00957523 2.07417e-05 5.98445e-08 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| to be provided ||| 0.00423729 0.00409398 2.07417e-05 1.45507e-06 2.718 ||| 0-0 ||| 236 48212 +a los ||| to be required ||| 0.025641 0.00409398 2.07417e-05 1.0075e-06 2.718 ||| 0-0 ||| 39 48212 +a los ||| to be responsible adults ||| 1 0.0700272 2.07417e-05 2.3004e-10 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| to be sent to the ||| 0.125 0.0281035 2.07417e-05 1.4543e-08 2.718 ||| 0-3 1-4 ||| 8 48212 +a los ||| to be so in the ||| 0.333333 0.00718601 2.07417e-05 9.42008e-08 2.718 ||| 0-3 1-4 ||| 3 48212 +a los ||| to be the targets of the ||| 1 0.00230489 2.07417e-05 2.98539e-11 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| to be turned against each other and ||| 0.5 0.0114331 2.07417e-05 1.21334e-18 2.718 ||| 0-0 1-4 ||| 2 48212 +a los ||| to be turned against each other ||| 0.5 0.0114331 2.07417e-05 9.68666e-17 2.718 ||| 0-0 1-4 ||| 2 48212 +a los ||| to be turned against each ||| 0.5 0.0114331 2.07417e-05 7.47716e-14 2.718 ||| 0-0 1-4 ||| 2 48212 +a los ||| to be ||| 0.000454299 0.00409398 0.000539285 0.00634848 2.718 ||| 0-0 ||| 57231 48212 +a los ||| to bear on the ||| 0.0392157 0.00957523 4.14834e-05 2.16461e-07 2.718 ||| 0-2 1-3 ||| 51 48212 +a los ||| to bear ||| 0.00100402 0.00409398 2.07417e-05 5.24401e-05 2.718 ||| 0-0 ||| 996 48212 +a los ||| to become a full ||| 0.2 0.00409398 2.07417e-05 8.14039e-10 2.718 ||| 0-0 ||| 5 48212 +a los ||| to become a ||| 0.00182815 0.00409398 2.07417e-05 4.43618e-06 2.718 ||| 0-0 ||| 547 48212 +a los ||| to become ||| 0.000505051 0.00409398 2.07417e-05 0.000100081 2.718 ||| 0-0 ||| 1980 48212 +a los ||| to benefit the ||| 0.0105263 0.0140889 2.07417e-05 4.35766e-07 2.718 ||| 0-0 1-1 1-2 ||| 95 48212 +a los ||| to bind the ||| 0.0666667 0.0310214 2.07417e-05 8.64018e-06 2.718 ||| 0-0 0-1 1-2 ||| 15 48212 +a los ||| to bombers ||| 1 0.0292025 2.07417e-05 7.84676e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to both our ||| 0.0909091 0.00690518 2.07417e-05 1.4984e-06 2.718 ||| 0-0 1-1 1-2 ||| 11 48212 +a los ||| to both the ||| 0.0352423 0.018103 0.000165934 0.000179986 2.718 ||| 0-0 1-1 1-2 ||| 227 48212 +a los ||| to both those ||| 0.166667 0.0367655 2.07417e-05 7.00617e-06 2.718 ||| 0-0 1-1 1-2 ||| 6 48212 +a los ||| to both ||| 0.0156827 0.00810255 0.000352609 0.000419591 2.718 ||| 0-0 1-1 ||| 1084 48212 +a los ||| to break them down both ||| 0.5 0.00409398 2.07417e-05 3.16204e-14 2.718 ||| 0-0 ||| 2 48212 +a los ||| to break them down ||| 0.333333 0.00409398 2.07417e-05 1.90887e-11 2.718 ||| 0-0 ||| 3 48212 +a los ||| to break them ||| 0.333333 0.00409398 2.07417e-05 2.73438e-08 2.718 ||| 0-0 ||| 3 48212 +a los ||| to break ||| 0.00268817 0.00409398 2.07417e-05 1.01938e-05 2.718 ||| 0-0 ||| 372 48212 +a los ||| to breast ||| 0.666667 0.00951449 8.29669e-05 1.32764e-05 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| to bring in the ||| 0.03125 0.0176447 2.07417e-05 2.81049e-06 2.718 ||| 0-0 0-2 1-3 ||| 32 48212 +a los ||| to bring the ||| 0.0125786 0.0281035 0.00012445 4.67772e-05 2.718 ||| 0-0 1-2 ||| 477 48212 +a los ||| to bring together its ||| 0.5 0.00485755 2.07417e-05 1.39838e-10 2.718 ||| 0-0 1-3 ||| 2 48212 +a los ||| to build up our ||| 0.125 0.0057078 2.07417e-05 1.6895e-10 2.718 ||| 0-0 1-3 ||| 8 48212 +a los ||| to by ||| 0.0153846 0.00409398 8.29669e-05 0.00183912 2.718 ||| 0-0 ||| 260 48212 +a los ||| to call on the ||| 0.00285714 0.00957523 2.07417e-05 3.21004e-07 2.718 ||| 0-2 1-3 ||| 350 48212 +a los ||| to call the ||| 0.0294118 0.0281035 4.14834e-05 3.33586e-05 2.718 ||| 0-0 1-2 ||| 68 48212 +a los ||| to certain ||| 0.00365408 0.000704878 6.22252e-05 2.21391e-05 2.718 ||| 0-0 1-1 ||| 821 48212 +a los ||| to check with the ||| 0.2 0.00698995 2.07417e-05 1.94725e-08 2.718 ||| 0-2 1-3 ||| 5 48212 +a los ||| to chemical ||| 0.333333 0.00133224 2.07417e-05 2.73235e-06 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to child ||| 0.0416667 0.0173381 2.07417e-05 0.000127054 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| to children in ||| 0.0909091 0.06743 2.07417e-05 4.13494e-05 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| to children ||| 0.00760456 0.06743 4.14834e-05 0.00193181 2.718 ||| 0-0 1-1 ||| 263 48212 +a los ||| to citizens ||| 0.00167224 0.0674662 2.07417e-05 0.00530259 2.718 ||| 0-0 1-1 ||| 598 48212 +a los ||| to civil ||| 0.214286 0.0100759 6.22252e-05 0.000184609 2.718 ||| 0-0 1-1 ||| 14 48212 +a los ||| to come forward and ||| 0.0909091 0.00409398 2.07417e-05 2.07348e-09 2.718 ||| 0-0 ||| 11 48212 +a los ||| to come forward ||| 0.00909091 0.00409398 2.07417e-05 1.65535e-07 2.718 ||| 0-0 ||| 110 48212 +a los ||| to come ||| 0.0013181 0.00409398 6.22252e-05 0.000297511 2.718 ||| 0-0 ||| 2276 48212 +a los ||| to comment on the ||| 0.00337838 0.00957523 2.07417e-05 6.60806e-08 2.718 ||| 0-2 1-3 ||| 296 48212 +a los ||| to commercial ||| 0.117647 0.00104013 4.14834e-05 6.13028e-06 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| to commit acts of ||| 0.5 0.0320224 2.07417e-05 2.59572e-10 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| to commit acts ||| 0.5 0.0320224 2.07417e-05 4.7747e-09 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| to commit the ||| 0.037037 0.0281035 2.07417e-05 3.57629e-06 2.718 ||| 0-0 1-2 ||| 27 48212 +a los ||| to comply with them ||| 0.0555556 0.00878293 2.07417e-05 2.10985e-10 2.718 ||| 0-0 1-3 ||| 18 48212 +a los ||| to conduct hearings of the ||| 0.5 0.00230489 2.07417e-05 2.9136e-13 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| to confine the national ||| 1 0.0281035 2.07417e-05 6.95122e-11 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| to confine the ||| 0.5 0.0281035 2.07417e-05 5.40951e-07 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| to confirm the ||| 0.0108696 0.0281035 2.07417e-05 2.76486e-06 2.718 ||| 0-0 1-2 ||| 92 48212 +a los ||| to consumer ||| 0.0322581 0.0423065 2.07417e-05 0.00111543 2.718 ||| 0-0 1-1 ||| 31 48212 +a los ||| to contemporary ||| 0.0909091 0.00185832 2.07417e-05 1.01587e-06 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| to control the ||| 0.00462963 0.0281035 2.07417e-05 1.15253e-05 2.718 ||| 0-0 1-2 ||| 216 48212 +a los ||| to control ||| 0.000919118 7.21838e-05 2.07417e-05 1.36618e-06 2.718 ||| 0-0 1-1 ||| 1088 48212 +a los ||| to convey to the ||| 0.037037 0.0281035 2.07417e-05 1.25511e-07 2.718 ||| 0-2 1-3 ||| 27 48212 +a los ||| to coordinate their ||| 0.0188679 0.00543993 2.07417e-05 2.00346e-09 2.718 ||| 0-0 1-2 ||| 53 48212 +a los ||| to cope with the ||| 0.00561798 0.0281035 2.07417e-05 2.18116e-08 2.718 ||| 0-0 1-3 ||| 178 48212 +a los ||| to cope ||| 0.00578035 0.00409398 2.07417e-05 7.95185e-06 2.718 ||| 0-0 ||| 173 48212 +a los ||| to countries ||| 0.00146413 0.0219977 2.07417e-05 0.00292018 2.718 ||| 0-0 1-1 ||| 683 48212 +a los ||| to court ||| 0.00543478 0.0185714 2.07417e-05 7.73116e-05 2.718 ||| 0-0 1-1 ||| 184 48212 +a los ||| to cover the individual ||| 0.2 0.0281035 2.07417e-05 1.65942e-09 2.718 ||| 0-0 1-2 ||| 5 48212 +a los ||| to cover the ||| 0.0252708 0.0281035 0.000145192 1.17356e-05 2.718 ||| 0-0 1-2 ||| 277 48212 +a los ||| to cover ||| 0.00524738 0.00199389 0.000145192 1.05441e-05 2.718 ||| 0-0 1-1 ||| 1334 48212 +a los ||| to credit ||| 0.00847458 0.00345457 2.07417e-05 2.14735e-05 2.718 ||| 0-0 1-1 ||| 118 48212 +a los ||| to criticize the ||| 0.0833333 0.0281035 2.07417e-05 1.6529e-07 2.718 ||| 0-0 1-2 ||| 12 48212 +a los ||| to current ||| 0.0285714 0.000566853 4.14834e-05 1.49929e-05 2.718 ||| 0-0 1-1 ||| 70 48212 +a los ||| to cut off ||| 0.0238095 0.00409398 2.07417e-05 1.07785e-08 2.718 ||| 0-0 ||| 42 48212 +a los ||| to cut ||| 0.00181159 0.00409398 2.07417e-05 2.64828e-05 2.718 ||| 0-0 ||| 552 48212 +a los ||| to data ||| 0.00980392 0.037441 2.07417e-05 0.00072579 2.718 ||| 0-0 1-1 ||| 102 48212 +a los ||| to deal with illegal ||| 1 0.000372961 2.07417e-05 1.11279e-11 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| to deal with ||| 0.000266738 0.000170911 2.07417e-05 3.4418e-08 2.718 ||| 0-0 1-2 ||| 3749 48212 +a los ||| to dealing with the ||| 0.0188679 0.0281035 2.07417e-05 9.92572e-08 2.718 ||| 0-0 1-3 ||| 53 48212 +a los ||| to departmental ||| 1 0.0265167 2.07417e-05 1.01587e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to determine the extent to ||| 0.333333 0.0281035 2.07417e-05 6.18476e-11 2.718 ||| 0-0 1-2 ||| 3 48212 +a los ||| to determine the extent ||| 0.166667 0.0281035 2.07417e-05 6.96026e-10 2.718 ||| 0-0 1-2 ||| 6 48212 +a los ||| to determine the ||| 0.00393701 0.0281035 2.07417e-05 3.62136e-06 2.718 ||| 0-0 1-2 ||| 254 48212 +a los ||| to develop ||| 0.000229674 0.00409398 2.07417e-05 2.14385e-05 2.718 ||| 0-0 ||| 4354 48212 +a los ||| to developing ||| 0.00680272 0.0346467 4.14834e-05 0.00124721 2.718 ||| 0-0 1-1 ||| 294 48212 +a los ||| to diploma holders ||| 1 0.0647965 2.07417e-05 2.04296e-11 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| to disabled ||| 0.111111 0.0051882 2.07417e-05 2.07729e-05 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| to do is ||| 0.00277778 0.00409398 2.07417e-05 3.77156e-05 2.718 ||| 0-0 ||| 360 48212 +a los ||| to do so ||| 0.00031348 0.00409398 2.07417e-05 2.73134e-06 2.718 ||| 0-0 ||| 3190 48212 +a los ||| to do the ||| 0.0026738 0.0281035 2.07417e-05 0.000516202 2.718 ||| 0-0 1-2 ||| 374 48212 +a los ||| to do with cross-border ||| 1 0.000758794 2.07417e-05 3.61834e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| to do with the ||| 0.00110132 0.0281035 2.07417e-05 3.30085e-06 2.718 ||| 0-0 1-3 ||| 908 48212 +a los ||| to do with ||| 0.000740467 0.000170911 4.14834e-05 2.78465e-07 2.718 ||| 0-0 1-2 ||| 2701 48212 +a los ||| to do ||| 0.000306913 0.00409398 8.29669e-05 0.00120339 2.718 ||| 0-0 ||| 13033 48212 +a los ||| to domestic ||| 0.0666667 0.00313833 2.07417e-05 1.49929e-05 2.718 ||| 0-0 1-1 ||| 15 48212 +a los ||| to drag the ||| 0.142857 0.0281035 2.07417e-05 8.71532e-07 2.718 ||| 0-0 1-2 ||| 7 48212 +a los ||| to draw the ||| 0.00286533 0.0281035 2.07417e-05 1.77913e-05 2.718 ||| 0-0 1-2 ||| 349 48212 +a los ||| to drive home the message that ||| 0.5 0.0281035 2.07417e-05 3.73459e-16 2.718 ||| 0-0 1-3 ||| 2 48212 +a los ||| to drive home the message ||| 0.2 0.0281035 2.07417e-05 2.22011e-14 2.718 ||| 0-0 1-3 ||| 5 48212 +a los ||| to drive home the ||| 0.25 0.0281035 2.07417e-05 4.60604e-10 2.718 ||| 0-0 1-3 ||| 4 48212 +a los ||| to driving ||| 0.117647 0.0152342 4.14834e-05 5.99366e-05 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| to each of the ||| 0.03125 0.0133304 2.07417e-05 4.37322e-07 2.718 ||| 0-0 1-1 1-2 1-3 ||| 32 48212 +a los ||| to each other ||| 0.00588235 0.0114331 2.07417e-05 3.99312e-07 2.718 ||| 0-0 1-1 ||| 170 48212 +a los ||| to each ||| 0.0135338 0.0114331 0.000186676 0.00030823 2.718 ||| 0-0 1-1 ||| 665 48212 +a los ||| to either the ||| 0.0625 0.0281035 2.07417e-05 0.000130099 2.718 ||| 0-0 1-2 ||| 16 48212 +a los ||| to elect the ||| 0.1 0.0290398 4.14834e-05 1.20662e-05 2.718 ||| 0-0 0-1 1-2 ||| 20 48212 +a los ||| to elected ||| 0.666667 0.00283321 4.14834e-05 1.80405e-05 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to electromagnetic ||| 1 0.0698161 2.07417e-05 2.45211e-05 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to eliminate the ||| 0.00444444 0.0281035 2.07417e-05 1.72804e-06 2.718 ||| 0-0 1-2 ||| 225 48212 +a los ||| to eliminate ||| 0.00106157 0.00409398 2.07417e-05 4.02847e-06 2.718 ||| 0-0 ||| 942 48212 +a los ||| to embrace the ||| 0.08 0.0142465 4.14834e-05 1.35238e-07 2.718 ||| 0-0 0-1 1-2 ||| 25 48212 +a los ||| to employees ||| 0.0120482 0.0777773 2.07417e-05 0.000564336 2.718 ||| 0-0 1-1 ||| 83 48212 +a los ||| to enable the ||| 0.00472813 0.0143045 4.14834e-05 2.34412e-06 2.718 ||| 0-0 1-1 1-2 ||| 423 48212 +a los ||| to engage the ||| 0.05 0.0281035 2.07417e-05 7.30283e-06 2.718 ||| 0-0 1-2 ||| 20 48212 +a los ||| to engulf ||| 0.166667 0.00409398 2.07417e-05 2.45211e-07 2.718 ||| 0-0 ||| 6 48212 +a los ||| to ensure the ||| 0.000684463 0.0281035 2.07417e-05 6.73784e-05 2.718 ||| 0-0 1-2 ||| 1461 48212 +a los ||| to ensure ||| 0.000102506 0.00409398 4.14834e-05 0.000157075 2.718 ||| 0-0 ||| 19511 48212 +a los ||| to environment-friendly projects ||| 0.333333 0.0370212 2.07417e-05 2.66467e-10 2.718 ||| 0-0 1-2 ||| 3 48212 +a los ||| to every ||| 0.00558659 0.0331462 4.14834e-05 0.00114335 2.718 ||| 0-0 1-1 ||| 358 48212 +a los ||| to everybody ||| 0.00617284 0.015241 2.07417e-05 6.5051e-05 2.718 ||| 0-0 1-1 ||| 162 48212 +a los ||| to everyone ||| 0.00117371 0.0184412 2.07417e-05 0.000361371 2.718 ||| 0-0 1-1 ||| 852 48212 +a los ||| to everything ||| 0.00729927 0.00409398 2.07417e-05 3.24029e-05 2.718 ||| 0-0 ||| 137 48212 +a los ||| to exactly the ||| 0.111111 0.0281035 2.07417e-05 1.50865e-05 2.718 ||| 0-0 1-2 ||| 9 48212 +a los ||| to exclusive ||| 0.2 0.00409398 2.07417e-05 2.27696e-06 2.718 ||| 0-0 ||| 5 48212 +a los ||| to executive ||| 0.333333 0.000389507 2.07417e-05 6.65573e-07 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to expose the ||| 0.0344828 0.0255992 2.07417e-05 8.36971e-06 2.718 ||| 0-0 0-1 1-2 ||| 29 48212 +a los ||| to extend my thanks ||| 0.0344828 0.00198578 2.07417e-05 8.44927e-13 2.718 ||| 0-0 1-2 ||| 29 48212 +a los ||| to extend my ||| 0.00666667 0.00198578 2.07417e-05 1.04312e-08 2.718 ||| 0-0 1-2 ||| 150 48212 +a los ||| to external ||| 0.0909091 0.000323138 2.07417e-05 3.39793e-06 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| to face squarely up ||| 0.5 0.00409398 2.07417e-05 6.39597e-13 2.718 ||| 0-0 ||| 2 48212 +a los ||| to face squarely ||| 0.5 0.00409398 2.07417e-05 1.87537e-10 2.718 ||| 0-0 ||| 2 48212 +a los ||| to face those in ||| 1 0.01673 2.07417e-05 1.4914e-08 2.718 ||| 1-2 0-3 ||| 1 48212 +a los ||| to face ||| 0.000992064 0.00409398 2.07417e-05 5.86055e-05 2.718 ||| 0-0 ||| 1008 48212 +a los ||| to feed ||| 0.00456621 0.0192662 2.07417e-05 7.11813e-05 2.718 ||| 0-0 1-1 ||| 219 48212 +a los ||| to finance the ||| 0.0037037 0.0281035 2.07417e-05 2.80994e-06 2.718 ||| 0-0 1-2 ||| 270 48212 +a los ||| to find ||| 0.000208681 0.00409398 2.07417e-05 0.000116615 2.718 ||| 0-0 ||| 4792 48212 +a los ||| to fire on ||| 0.25 0.00572786 2.07417e-05 3.2765e-07 2.718 ||| 1-1 0-2 ||| 4 48212 +a los ||| to fire ||| 0.0416667 0.0168114 2.07417e-05 3.40493e-05 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| to fish ||| 0.0147059 0.0208395 6.22252e-05 0.000122956 2.718 ||| 0-0 1-1 ||| 204 48212 +a los ||| to fishing ||| 0.012987 0.00144351 2.07417e-05 2.01073e-05 2.718 ||| 0-0 1-1 ||| 77 48212 +a los ||| to flood ||| 0.0909091 0.0111442 2.07417e-05 1.26109e-05 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| to food ||| 0.0306748 0.0283899 0.000103709 0.0007721 2.718 ||| 0-0 1-1 ||| 163 48212 +a los ||| to fool the ||| 0.142857 0.0281035 2.07417e-05 1.6529e-07 2.718 ||| 0-0 1-2 ||| 7 48212 +a los ||| to foreign ||| 0.0526316 0.000278233 2.07417e-05 4.09853e-06 2.718 ||| 0-0 1-1 ||| 19 48212 +a los ||| to forward the ||| 0.0833333 0.0281035 2.07417e-05 8.36069e-05 2.718 ||| 0-0 1-2 ||| 12 48212 +a los ||| to from ||| 0.142857 0.000252563 2.07417e-05 6.77834e-05 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| to fundamental ||| 0.235294 0.02165 8.29669e-05 0.000519042 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| to gain the space ||| 1 0.0281035 2.07417e-05 3.47128e-10 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| to gain the ||| 0.0192308 0.0281035 2.07417e-05 8.38474e-06 2.718 ||| 0-0 1-2 ||| 52 48212 +a los ||| to get in the way of the ||| 1 0.0281035 2.07417e-05 1.01165e-11 2.718 ||| 0-0 1-6 ||| 1 48212 +a los ||| to get the ||| 0.00192678 0.0281035 2.07417e-05 6.56955e-05 2.718 ||| 0-0 1-2 ||| 519 48212 +a los ||| to get to ||| 0.004 0.00409398 2.07417e-05 1.36088e-05 2.718 ||| 0-2 ||| 250 48212 +a los ||| to give account for the ||| 0.5 0.0281035 2.07417e-05 2.0121e-10 2.718 ||| 0-0 1-4 ||| 2 48212 +a los ||| to give its ||| 0.00510204 0.00485755 2.07417e-05 4.53245e-07 2.718 ||| 0-0 1-2 ||| 196 48212 +a los ||| to give the ||| 0.00615006 0.0155281 0.000103709 8.44935e-05 2.718 ||| 0-0 0-1 1-2 ||| 813 48212 +a los ||| to grant the ||| 0.0240964 0.0281035 4.14834e-05 4.76337e-06 2.718 ||| 0-0 1-2 ||| 83 48212 +a los ||| to have , ||| 0.0232558 0.00409398 2.07417e-05 0.000499622 2.718 ||| 0-0 ||| 43 48212 +a los ||| to have the ||| 0.00192864 0.0281035 4.14834e-05 0.00179713 2.718 ||| 0-0 1-2 ||| 1037 48212 +a los ||| to have ||| 0.000577034 0.00409398 0.000145192 0.00418954 2.718 ||| 0-0 ||| 12131 48212 +a los ||| to health ||| 0.0015083 0.000704694 2.07417e-05 3.03011e-05 2.718 ||| 0-0 1-1 ||| 663 48212 +a los ||| to hear the ||| 0.00716846 0.0281035 4.14834e-05 1.52518e-05 2.718 ||| 0-0 1-2 ||| 279 48212 +a los ||| to help the ||| 0.00252207 0.0299478 4.14834e-05 0.000988332 2.718 ||| 0-0 0-1 1-2 ||| 793 48212 +a los ||| to help those ||| 0.00675676 0.0697225 2.07417e-05 3.84719e-05 2.718 ||| 0-0 0-1 1-2 ||| 148 48212 +a los ||| to helping the ||| 0.0555556 0.032534 2.07417e-05 0.000178844 2.718 ||| 0-0 0-1 1-2 ||| 18 48212 +a los ||| to her ||| 0.00228833 0.00409398 2.07417e-05 9.53171e-05 2.718 ||| 0-0 ||| 437 48212 +a los ||| to high-powered ||| 1 0.0287264 2.07417e-05 6.65573e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to his ||| 0.00218818 0.0013517 4.14834e-05 6.06372e-05 2.718 ||| 0-0 1-1 ||| 914 48212 +a los ||| to hold ||| 0.000719424 0.00409398 2.07417e-05 6.10225e-05 2.718 ||| 0-0 ||| 1390 48212 +a los ||| to hope for ||| 0.0285714 0.0012174 2.07417e-05 5.73983e-07 2.718 ||| 0-2 ||| 35 48212 +a los ||| to host the ||| 0.0243902 0.0281035 2.07417e-05 2.91512e-06 2.718 ||| 0-0 1-2 ||| 41 48212 +a los ||| to how ||| 0.00120048 0.000284966 2.07417e-05 2.14735e-05 2.718 ||| 0-0 1-1 ||| 833 48212 +a los ||| to huge ||| 0.0277778 0.000311303 2.07417e-05 2.73235e-06 2.718 ||| 0-0 1-1 ||| 36 48212 +a los ||| to human ||| 0.0181818 0.0734925 4.14834e-05 0.00683281 2.718 ||| 0-0 1-1 ||| 110 48212 +a los ||| to identify the ||| 0.00383142 0.0281035 2.07417e-05 2.59957e-06 2.718 ||| 0-0 1-2 ||| 261 48212 +a los ||| to in the ||| 0.015544 0.0176447 6.22252e-05 0.00902824 2.718 ||| 0-0 0-1 1-2 ||| 193 48212 +a los ||| to in ||| 0.00688468 0.00409398 8.29669e-05 0.00749803 2.718 ||| 0-0 ||| 581 48212 +a los ||| to incentives ||| 0.1 0.0257744 2.07417e-05 7.3213e-05 2.718 ||| 0-0 1-1 ||| 10 48212 +a los ||| to include the countries ||| 0.0357143 0.0281035 2.07417e-05 7.55412e-09 2.718 ||| 0-0 1-2 ||| 28 48212 +a los ||| to include the ||| 0.0691145 0.0151104 0.000663735 1.38844e-05 2.718 ||| 0-0 1-1 1-2 ||| 463 48212 +a los ||| to include those ||| 0.117647 0.033773 4.14834e-05 5.40466e-07 2.718 ||| 0-0 1-1 1-2 ||| 17 48212 +a los ||| to include ||| 0.00821288 0.00211737 0.000518543 3.23679e-05 2.718 ||| 0-0 1-1 ||| 3044 48212 +a los ||| to incorporate the ||| 0.0136986 0.0281035 4.14834e-05 1.99851e-06 2.718 ||| 0-0 1-2 ||| 146 48212 +a los ||| to individual ||| 0.0983607 0.0253598 0.000248901 0.000450243 2.718 ||| 0-0 1-1 ||| 122 48212 +a los ||| to inform their ||| 0.05 0.00543993 2.07417e-05 1.53065e-08 2.718 ||| 0-0 1-2 ||| 20 48212 +a los ||| to insalubrious ||| 1 0.0459623 2.07417e-05 3.50302e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to interests ||| 0.166667 0.0154 2.07417e-05 0.000357273 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| to international markets . without ||| 1 0.0551532 2.07417e-05 5.15276e-14 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| to international markets . ||| 0.142857 0.0551532 2.07417e-05 2.33157e-10 2.718 ||| 0-0 1-2 ||| 7 48212 +a los ||| to international markets ||| 0.0714286 0.0551532 2.07417e-05 7.69748e-08 2.718 ||| 0-0 1-2 ||| 14 48212 +a los ||| to international ||| 0.00900901 0.000278991 2.07417e-05 1.22606e-05 2.718 ||| 0-0 1-1 ||| 111 48212 +a los ||| to introduce these ||| 0.0263158 0.00552379 2.07417e-05 4.36323e-08 2.718 ||| 0-0 1-2 ||| 38 48212 +a los ||| to investment ||| 0.00952381 0.000182884 2.07417e-05 2.73235e-06 2.718 ||| 0-0 1-1 ||| 105 48212 +a los ||| to investors with ||| 1 0.0920775 2.07417e-05 1.83591e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to investors ||| 0.0151515 0.0920775 2.07417e-05 0.000287107 2.718 ||| 0-0 1-1 ||| 66 48212 +a los ||| to involve those ||| 0.125 0.0569852 2.07417e-05 3.99851e-06 2.718 ||| 0-0 0-1 1-2 ||| 8 48212 +a los ||| to it that the ||| 0.0204082 0.0281035 2.07417e-05 4.49503e-05 2.718 ||| 0-0 1-3 ||| 49 48212 +a los ||| to items of ||| 0.333333 0.015957 2.07417e-05 1.98055e-06 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to items ||| 0.1 0.015957 2.07417e-05 3.64314e-05 2.718 ||| 0-0 1-1 ||| 10 48212 +a los ||| to its best advantage ||| 0.333333 0.00485755 2.07417e-05 5.25192e-12 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to its best ||| 0.2 0.00485755 2.07417e-05 1.03588e-07 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| to its own ||| 0.00558659 0.00485755 2.07417e-05 1.26796e-06 2.718 ||| 0-0 1-1 ||| 179 48212 +a los ||| to its ||| 0.0338691 0.00485755 0.00244752 0.000747929 2.718 ||| 0-0 1-1 ||| 3484 48212 +a los ||| to join unions ||| 0.2 0.00281087 2.07417e-05 3.31438e-10 2.718 ||| 1-2 ||| 5 48212 +a los ||| to justice on the ||| 0.5 0.00957523 2.07417e-05 5.7694e-08 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| to justice the ||| 0.222222 0.0281035 4.14834e-05 5.99554e-06 2.718 ||| 0-0 1-2 ||| 9 48212 +a los ||| to justice those ||| 0.133333 0.0654285 4.14834e-05 2.33383e-07 2.718 ||| 0-0 1-2 ||| 15 48212 +a los ||| to keep pace with ||| 0.0217391 0.00101826 2.07417e-05 4.4839e-12 2.718 ||| 0-3 ||| 46 48212 +a los ||| to keep the lid on ||| 1 0.00957523 2.07417e-05 4.05506e-13 2.718 ||| 1-2 0-4 ||| 1 48212 +a los ||| to keep up with ||| 0.0185185 0.000180726 2.07417e-05 4.89993e-11 2.718 ||| 1-2 0-3 ||| 54 48212 +a los ||| to keep ||| 0.00036075 0.000180839 2.07417e-05 2.03175e-06 2.718 ||| 0-0 1-1 ||| 2772 48212 +a los ||| to levels ||| 0.0277778 0.0511451 2.07417e-05 0.000689008 2.718 ||| 0-0 1-1 ||| 36 48212 +a los ||| to line the ||| 0.166667 0.0281035 2.07417e-05 4.42377e-05 2.718 ||| 0-0 1-2 ||| 6 48212 +a los ||| to local ||| 0.0555556 0.00438623 4.14834e-05 6.57166e-05 2.718 ||| 0-0 1-1 ||| 36 48212 +a los ||| to locate the ||| 0.04 0.0281035 2.07417e-05 3.30581e-07 2.718 ||| 0-0 1-2 ||| 25 48212 +a los ||| to look after the ||| 0.0285714 0.0281035 2.07417e-05 1.18703e-08 2.718 ||| 0-0 1-3 ||| 35 48212 +a los ||| to lorries ||| 0.0833333 0.0545925 2.07417e-05 5.6889e-05 2.718 ||| 0-0 1-1 ||| 12 48212 +a los ||| to mail ||| 0.25 0.00409398 2.07417e-05 1.26109e-06 2.718 ||| 0-0 ||| 4 48212 +a los ||| to make any ||| 0.00552486 0.00409338 2.07417e-05 5.62245e-07 2.718 ||| 0-0 1-2 ||| 181 48212 +a los ||| to make stylish trimmings ||| 0.5 0.00409398 2.07417e-05 9.74007e-17 2.718 ||| 0-0 ||| 2 48212 +a los ||| to make stylish ||| 0.5 0.00409398 2.07417e-05 2.43502e-10 2.718 ||| 0-0 ||| 2 48212 +a los ||| to make the ||| 0.00102249 0.0281035 4.14834e-05 0.000261129 2.718 ||| 0-0 1-2 ||| 1956 48212 +a los ||| to make to ||| 0.0123457 0.00409398 2.07417e-05 5.40928e-05 2.718 ||| 0-0 ||| 81 48212 +a los ||| to make ||| 0.00015837 0.00409398 6.22252e-05 0.000608754 2.718 ||| 0-0 ||| 18943 48212 +a los ||| to man 's ||| 0.5 0.00803912 2.07417e-05 1.36724e-07 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| to management decisions ||| 1 0.000374386 2.07417e-05 4.41012e-10 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to management ||| 0.0714286 0.000374386 4.14834e-05 5.77998e-06 2.718 ||| 0-0 1-1 ||| 28 48212 +a los ||| to managerial ||| 0.5 0.0116571 2.07417e-05 2.38205e-06 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to markets ||| 0.00925926 0.0551532 2.07417e-05 0.000994506 2.718 ||| 0-0 1-1 ||| 108 48212 +a los ||| to mass ||| 0.0714286 0.00163598 2.07417e-05 6.48058e-06 2.718 ||| 0-0 1-1 ||| 14 48212 +a los ||| to me ||| 0.000300933 0.00409398 2.07417e-05 0.000210917 2.718 ||| 0-0 ||| 3323 48212 +a los ||| to meet the ||| 0.00449775 0.0281035 0.00012445 1.82721e-05 2.718 ||| 0-0 1-2 ||| 1334 48212 +a los ||| to meet ||| 0.000570613 0.00409398 4.14834e-05 4.25967e-05 2.718 ||| 0-0 ||| 3505 48212 +a los ||| to member ||| 1 0.000909272 4.14834e-05 1.05441e-05 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to members of the ||| 0.0930233 0.0281035 8.29669e-05 1.20492e-06 2.718 ||| 0-0 1-3 ||| 43 48212 +a los ||| to members ||| 0.00990099 0.0355323 2.07417e-05 0.000695489 2.718 ||| 0-0 1-1 ||| 101 48212 +a los ||| to mention the ||| 0.001321 0.0281035 2.07417e-05 1.46057e-05 2.718 ||| 0-0 1-2 ||| 757 48212 +a los ||| to migrants and ||| 0.166667 0.0732236 2.07417e-05 2.64938e-06 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| to migrants ||| 0.047619 0.0732236 2.07417e-05 0.000211512 2.718 ||| 0-0 1-1 ||| 21 48212 +a los ||| to milk ||| 0.0357143 0.00409398 2.07417e-05 3.64314e-06 2.718 ||| 0-0 ||| 28 48212 +a los ||| to mobile ||| 0.2 0.0142709 2.07417e-05 2.96355e-05 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| to motor ||| 0.5 0.0198066 2.07417e-05 4.97428e-05 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to move into other ||| 1 0.000414047 2.07417e-05 2.34297e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| to my ||| 0.00684117 0.00198578 0.00047706 0.000241463 2.718 ||| 0-0 1-1 ||| 3362 48212 +a los ||| to national ||| 0.0235294 0.00298412 4.14834e-05 0.000149859 2.718 ||| 0-0 1-1 ||| 85 48212 +a los ||| to necessary ||| 0.25 7.96526e-05 2.07417e-05 3.08265e-06 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| to no ||| 0.00662252 0.00409398 2.07417e-05 0.000272675 2.718 ||| 0-0 ||| 151 48212 +a los ||| to noise ||| 0.0333333 0.00489434 2.07417e-05 1.49929e-05 2.718 ||| 0-0 1-1 ||| 30 48212 +a los ||| to non-member ||| 0.166667 0.0370166 2.07417e-05 8.16203e-06 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| to obey the ||| 0.0526316 0.0281035 2.07417e-05 3.7566e-07 2.718 ||| 0-0 1-2 ||| 19 48212 +a los ||| to obtain ||| 0.000599161 0.000222618 2.07417e-05 1.01587e-06 2.718 ||| 0-0 1-1 ||| 1669 48212 +a los ||| to offer my very ||| 0.25 0.00198578 2.07417e-05 9.61155e-11 2.718 ||| 0-0 1-2 ||| 4 48212 +a los ||| to offer my ||| 0.00641026 0.00198578 2.07417e-05 2.76234e-08 2.718 ||| 0-0 1-2 ||| 156 48212 +a los ||| to offer the ||| 0.00943396 0.00409398 2.07417e-05 2.46025e-06 2.718 ||| 0-0 ||| 106 48212 +a los ||| to offer ||| 0.000622665 0.00409398 2.07417e-05 4.00745e-05 2.718 ||| 0-0 ||| 1606 48212 +a los ||| to official ||| 0.030303 0.00085653 2.07417e-05 4.4138e-06 2.718 ||| 0-0 1-1 ||| 33 48212 +a los ||| to one ' s ||| 0.25 0.00903201 2.07417e-05 1.22397e-08 2.718 ||| 0-0 1-2 1-3 ||| 4 48212 +a los ||| to one of the ||| 0.0163043 0.0281035 6.22252e-05 3.40482e-05 2.718 ||| 0-0 1-3 ||| 184 48212 +a los ||| to operate the ||| 0.0434783 0.0281035 2.07417e-05 7.30283e-06 2.718 ||| 0-0 1-2 ||| 23 48212 +a los ||| to ordinary ||| 0.15 0.0234782 6.22252e-05 7.55951e-05 2.718 ||| 0-0 1-1 ||| 20 48212 +a los ||| to other ||| 0.000956938 0.000884498 4.14834e-05 9.94506e-05 2.718 ||| 0-0 1-1 ||| 2090 48212 +a los ||| to our fellow citizens ' ||| 0.5 0.0388404 2.07417e-05 2.56395e-12 2.718 ||| 0-0 1-3 1-4 ||| 2 48212 +a los ||| to our friend on the ||| 1 0.00957523 2.07417e-05 2.29375e-11 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| to our honoured ||| 0.2 0.0057078 2.07417e-05 1.21343e-08 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| to our market to ||| 1 0.0057078 2.07417e-05 2.51218e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to our market ||| 0.0357143 0.0057078 2.07417e-05 2.82717e-07 2.718 ||| 0-0 1-1 ||| 28 48212 +a los ||| to our own ||| 0.00421941 0.0057078 2.07417e-05 2.12076e-06 2.718 ||| 0-0 1-1 ||| 237 48212 +a los ||| to our ||| 0.0222887 0.0057078 0.00309052 0.00125096 2.718 ||| 0-0 1-1 ||| 6685 48212 +a los ||| to outside ||| 0.0833333 2.90941e-05 2.07417e-05 3.50302e-07 2.718 ||| 0-0 1-1 ||| 12 48212 +a los ||| to overseas ||| 0.2 0.0172158 2.07417e-05 1.46426e-05 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| to participate to the ||| 0.333333 0.0281035 2.07417e-05 3.21788e-07 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| to participation in the ||| 0.125 0.00718601 2.07417e-05 5.51919e-08 2.718 ||| 0-2 1-3 ||| 8 48212 +a los ||| to party ||| 0.5 0.00227897 2.07417e-05 1.70247e-05 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to passenger ||| 0.555556 0.0502247 0.000103709 0.000333102 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| to passengers ||| 0.00613497 0.0944161 2.07417e-05 0.000686626 2.718 ||| 0-0 1-1 ||| 163 48212 +a los ||| to pay the ||| 0.00515464 0.0281035 2.07417e-05 2.15178e-05 2.718 ||| 0-0 1-2 ||| 194 48212 +a los ||| to payment ||| 0.125 0.0116014 4.14834e-05 6.06372e-05 2.718 ||| 0-0 1-1 ||| 16 48212 +a los ||| to pension ||| 0.142857 0.0124865 2.07417e-05 8.41074e-05 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| to people ' ||| 0.333333 0.0153876 2.07417e-05 1.46742e-05 2.718 ||| 0-0 1-1 1-2 ||| 3 48212 +a los ||| to people in ||| 0.0113636 0.0205606 2.07417e-05 5.90492e-05 2.718 ||| 0-0 1-1 ||| 88 48212 +a los ||| to people ||| 0.011236 0.0205606 0.000207417 0.00275873 2.718 ||| 0-0 1-1 ||| 890 48212 +a los ||| to persons ||| 0.0120482 0.00618634 2.07417e-05 4.59946e-05 2.718 ||| 0-0 1-1 ||| 83 48212 +a los ||| to petitioners ||| 0.25 0.0530334 2.07417e-05 1.7375e-05 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| to physical ||| 0.0833333 0.00104054 2.07417e-05 2.38205e-06 2.718 ||| 0-0 1-1 ||| 12 48212 +a los ||| to please ||| 0.0106383 0.00409398 2.07417e-05 3.11418e-05 2.718 ||| 0-0 ||| 94 48212 +a los ||| to political ||| 0.0175439 0.00017923 2.07417e-05 1.29261e-05 2.718 ||| 0-0 1-1 ||| 57 48212 +a los ||| to poorer ||| 0.1 0.0177207 2.07417e-05 4.32622e-05 2.718 ||| 0-0 1-1 ||| 10 48212 +a los ||| to popular ||| 0.25 0.00394372 2.07417e-05 7.49645e-06 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| to port ||| 0.0625 0.0101161 2.07417e-05 3.1317e-05 2.718 ||| 0-0 1-1 ||| 16 48212 +a los ||| to previous ||| 0.0454545 0.00307111 2.07417e-05 3.40493e-05 2.718 ||| 0-0 1-1 ||| 22 48212 +a los ||| to private ||| 0.0833333 0.00420162 4.14834e-05 4.25616e-05 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| to procedures used in ||| 1 0.0129174 2.07417e-05 5.44234e-09 2.718 ||| 1-1 0-3 ||| 1 48212 +a los ||| to processing ||| 0.125 0.00129108 2.07417e-05 3.08265e-06 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| to produce all ||| 0.142857 0.00408899 2.07417e-05 8.33418e-08 2.718 ||| 0-0 1-2 ||| 7 48212 +a los ||| to produce the ||| 0.0108696 0.0281035 2.07417e-05 1.32984e-05 2.718 ||| 0-0 1-2 ||| 92 48212 +a los ||| to producers ' ||| 0.5 0.0466285 2.07417e-05 4.71216e-06 2.718 ||| 0-0 1-1 1-2 ||| 2 48212 +a los ||| to producers , those ||| 1 0.0654285 2.07417e-05 1.35324e-08 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| to promote the ||| 0.000906618 0.0281035 2.07417e-05 9.63193e-06 2.718 ||| 0-0 1-2 ||| 1103 48212 +a los ||| to protect ||| 0.000479616 0.00044241 6.22252e-05 5.1144e-06 2.718 ||| 0-0 1-1 ||| 6255 48212 +a los ||| to provide the ||| 0.00526316 0.0281035 6.22252e-05 4.44481e-05 2.718 ||| 0-0 1-2 ||| 570 48212 +a los ||| to provide ||| 0.000161264 8.23184e-05 2.07417e-05 2.03175e-06 2.718 ||| 0-0 1-1 ||| 6201 48212 +a los ||| to public ||| 0.0849673 0.00369907 0.000269642 0.000206748 2.718 ||| 0-0 1-1 ||| 153 48212 +a los ||| to pull the ||| 0.0526316 0.0281035 2.07417e-05 3.57629e-06 2.718 ||| 0-0 1-2 ||| 19 48212 +a los ||| to put the ||| 0.00277008 0.0281035 2.07417e-05 0.000165681 2.718 ||| 0-0 1-2 ||| 361 48212 +a los ||| to question their ||| 0.333333 0.00543993 2.07417e-05 6.62986e-07 2.718 ||| 0-0 1-2 ||| 3 48212 +a los ||| to quote an ||| 0.0555556 0.00409398 2.07417e-05 6.94416e-08 2.718 ||| 0-0 ||| 18 48212 +a los ||| to quote ||| 0.00254453 0.00409398 2.07417e-05 1.56235e-05 2.718 ||| 0-0 ||| 393 48212 +a los ||| to raise awareness on ||| 0.333333 0.000158892 2.07417e-05 2.46277e-13 2.718 ||| 0-0 1-3 ||| 3 48212 +a los ||| to reach the ||| 0.00380228 0.0252163 2.07417e-05 0.000220407 2.718 ||| 0-0 0-1 1-2 ||| 263 48212 +a los ||| to rebut the ||| 0.5 0.0281035 2.07417e-05 6.01056e-08 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| to receive ||| 0.000922509 0.00409398 2.07417e-05 3.51703e-05 2.718 ||| 0-0 ||| 1084 48212 +a los ||| to record ||| 0.00543478 0.00409398 2.07417e-05 1.95468e-05 2.718 ||| 0-0 ||| 184 48212 +a los ||| to refer to the ||| 0.00343643 0.0281035 2.07417e-05 1.04281e-06 2.718 ||| 0-2 1-3 ||| 291 48212 +a los ||| to regard ||| 0.00632911 0.000800617 2.07417e-05 3.10017e-05 2.718 ||| 0-0 1-1 ||| 158 48212 +a los ||| to register those ||| 0.5 0.0654285 2.07417e-05 7.13602e-08 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| to regulate these matters ||| 0.2 0.00552379 2.07417e-05 1.07416e-12 2.718 ||| 0-0 1-2 ||| 5 48212 +a los ||| to regulate these ||| 0.0434783 0.00552379 2.07417e-05 5.80625e-09 2.718 ||| 0-0 1-2 ||| 23 48212 +a los ||| to represent his members ||| 0.5 0.0355323 2.07417e-05 1.06796e-11 2.718 ||| 0-0 1-3 ||| 2 48212 +a los ||| to require the ||| 0.0238095 0.0281035 2.07417e-05 7.03236e-06 2.718 ||| 0-0 1-2 ||| 42 48212 +a los ||| to rescue the ||| 0.02 0.0281035 2.07417e-05 8.11426e-07 2.718 ||| 0-0 1-2 ||| 50 48212 +a los ||| to resolving the ||| 0.0117647 0.0281035 2.07417e-05 1.29227e-06 2.718 ||| 0-0 1-2 ||| 85 48212 +a los ||| to resort to the ||| 0.0243902 0.0281035 2.07417e-05 2.06959e-07 2.718 ||| 0-2 1-3 ||| 41 48212 +a los ||| to respect for ||| 0.00469484 0.00105401 2.07417e-05 2.85385e-07 2.718 ||| 0-0 1-1 ||| 213 48212 +a los ||| to respect the ||| 0.0029985 0.0145787 4.14834e-05 1.5928e-05 2.718 ||| 0-0 1-1 1-2 ||| 667 48212 +a los ||| to respect ||| 0.000513611 0.00105401 2.07417e-05 3.7132e-05 2.718 ||| 0-0 1-1 ||| 1947 48212 +a los ||| to retain their ||| 0.0263158 0.00543993 2.07417e-05 1.24215e-08 2.718 ||| 0-0 1-2 ||| 38 48212 +a los ||| to road ||| 0.03125 0.0019869 2.07417e-05 3.43996e-05 2.718 ||| 0-0 1-1 ||| 32 48212 +a los ||| to say , ||| 0.000481232 0.00409398 2.07417e-05 3.99287e-05 2.718 ||| 0-0 ||| 2078 48212 +a los ||| to say that the ||| 0.000861326 0.0281035 2.07417e-05 2.41596e-06 2.718 ||| 0-0 1-3 ||| 1161 48212 +a los ||| to say the ||| 0.00187266 0.0281035 2.07417e-05 0.000143622 2.718 ||| 0-0 1-2 ||| 534 48212 +a los ||| to say ||| 0.000115194 0.00409398 4.14834e-05 0.000334818 2.718 ||| 0-0 ||| 17362 48212 +a los ||| to scientific and ||| 0.111111 0.000668062 2.07417e-05 6.40625e-08 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| to scientific ||| 0.0555556 0.000668062 2.07417e-05 5.1144e-06 2.718 ||| 0-0 1-1 ||| 18 48212 +a los ||| to secure the involvement ||| 0.333333 0.0281035 2.07417e-05 2.26442e-10 2.718 ||| 0-0 1-2 ||| 3 48212 +a los ||| to secure the ||| 0.00342466 0.0281035 2.07417e-05 7.57331e-06 2.718 ||| 0-0 1-2 ||| 292 48212 +a los ||| to securing ||| 0.0120482 0.00409398 2.07417e-05 4.55392e-06 2.718 ||| 0-0 ||| 83 48212 +a los ||| to see the ||| 0.00408163 0.0281035 8.29669e-05 0.000105876 2.718 ||| 0-0 1-2 ||| 980 48212 +a los ||| to see ||| 0.000369777 0.00409398 6.22252e-05 0.000246823 2.718 ||| 0-0 ||| 8113 48212 +a los ||| to separate out ||| 0.333333 0.00409398 2.07417e-05 4.83046e-08 2.718 ||| 0-0 ||| 3 48212 +a los ||| to separate ||| 0.00543478 0.00409398 2.07417e-05 1.26109e-05 2.718 ||| 0-0 ||| 184 48212 +a los ||| to set for the ||| 0.333333 0.00835696 2.07417e-05 8.20806e-07 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| to shared ||| 0.0909091 0.000206738 2.07417e-05 1.01587e-06 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| to ships ' ||| 1 0.0391149 2.07417e-05 1.30079e-06 2.718 ||| 0-0 1-1 1-2 ||| 1 48212 +a los ||| to shoulder against the ||| 1 0.0281035 2.07417e-05 6.95548e-10 2.718 ||| 0-0 1-3 ||| 1 48212 +a los ||| to sing from the ||| 0.333333 0.0053267 2.07417e-05 8.78053e-10 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| to social ||| 0.0186916 0.000873214 4.14834e-05 5.31408e-05 2.718 ||| 0-0 1-1 ||| 107 48212 +a los ||| to some of the ||| 0.00682594 0.0281035 4.14834e-05 8.89844e-06 2.718 ||| 0-0 1-3 ||| 293 48212 +a los ||| to some of those ||| 0.0769231 0.0654285 2.07417e-05 3.46382e-07 2.718 ||| 0-0 1-3 ||| 13 48212 +a los ||| to some of ||| 0.00232019 0.000477203 2.07417e-05 2.16718e-06 2.718 ||| 0-0 1-1 ||| 431 48212 +a los ||| to some ||| 0.00231589 0.000477203 0.000103709 3.98643e-05 2.718 ||| 0-0 1-1 ||| 2159 48212 +a los ||| to speak to your ||| 0.333333 0.00221403 2.07417e-05 1.29799e-09 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| to special ||| 0.0666667 0.000377121 2.07417e-05 5.4647e-06 2.718 ||| 0-0 1-1 ||| 15 48212 +a los ||| to specific ||| 0.0123457 0.000125017 2.07417e-05 3.08265e-06 2.718 ||| 0-0 1-1 ||| 81 48212 +a los ||| to spend taxpayers ' ||| 0.333333 0.0507242 2.07417e-05 7.9496e-11 2.718 ||| 0-0 1-2 1-3 ||| 3 48212 +a los ||| to spend ||| 0.00144509 0.00409398 2.07417e-05 1.05791e-05 2.718 ||| 0-0 ||| 692 48212 +a los ||| to stand as a candidate ||| 0.0909091 0.00771245 2.07417e-05 4.01083e-12 2.718 ||| 0-0 1-4 ||| 11 48212 +a los ||| to stand up to the ||| 0.0344828 0.0281035 2.07417e-05 7.50461e-09 2.718 ||| 0-3 1-4 ||| 29 48212 +a los ||| to start discussing problems that are ||| 0.333333 0.00532475 2.07417e-05 3.40995e-16 2.718 ||| 1-3 ||| 3 48212 +a los ||| to start discussing problems that ||| 0.333333 0.00532475 2.07417e-05 2.24742e-14 2.718 ||| 1-3 ||| 3 48212 +a los ||| to start discussing problems ||| 0.333333 0.00532475 2.07417e-05 1.33603e-12 2.718 ||| 1-3 ||| 3 48212 +a los ||| to starter ||| 1 0.0164151 2.07417e-05 3.50302e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to stop the ||| 0.00282486 0.0281035 2.07417e-05 1.03832e-05 2.718 ||| 0-0 1-2 ||| 354 48212 +a los ||| to store records ||| 0.5 0.0342086 2.07417e-05 6.01951e-10 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| to stress to my ||| 0.5 0.00198578 2.07417e-05 7.63832e-10 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| to strike a balance in the name ||| 1 0.0281035 2.07417e-05 2.15314e-17 2.718 ||| 0-0 1-5 ||| 1 48212 +a los ||| to strike a balance in the ||| 1 0.0281035 2.07417e-05 2.46355e-13 2.718 ||| 0-0 1-5 ||| 1 48212 +a los ||| to structural ||| 0.0909091 0.00196151 2.07417e-05 1.90564e-05 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| to study the ||| 0.0078125 0.0281035 2.07417e-05 5.07893e-06 2.718 ||| 0-0 1-2 ||| 128 48212 +a los ||| to such parliaments ||| 0.5 0.0618707 2.07417e-05 1.0337e-06 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| to such ||| 0.00588235 0.000381924 0.000103709 3.84981e-05 2.718 ||| 0-0 1-1 ||| 850 48212 +a los ||| to suicide ||| 0.0833333 0.00596912 2.07417e-05 4.7641e-06 2.718 ||| 0-0 1-1 ||| 12 48212 +a los ||| to suit the ||| 0.0416667 0.0281035 2.07417e-05 1.51767e-06 2.718 ||| 0-0 1-2 ||| 24 48212 +a los ||| to support the ||| 0.000403877 0.0142183 2.07417e-05 2.23593e-05 2.718 ||| 0-0 0-1 1-2 ||| 2476 48212 +a los ||| to symbols , ||| 1 0.0407856 2.07417e-05 4.22346e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to symbols ||| 0.25 0.0407856 2.07417e-05 3.54155e-05 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| to tackle the problem of ||| 0.0166667 0.0281035 2.07417e-05 6.66903e-11 2.718 ||| 0-0 1-2 ||| 60 48212 +a los ||| to tackle the problem ||| 0.00869565 0.0281035 2.07417e-05 1.22674e-09 2.718 ||| 0-0 1-2 ||| 115 48212 +a los ||| to tackle the ||| 0.00137552 0.0281035 2.07417e-05 5.45459e-06 2.718 ||| 0-0 1-2 ||| 727 48212 +a los ||| to tackle those ||| 0.1 0.0654285 2.07417e-05 2.12326e-07 2.718 ||| 0-0 1-2 ||| 10 48212 +a los ||| to tackle ||| 0.000403226 0.00409398 2.07417e-05 1.27159e-05 2.718 ||| 0-0 ||| 2480 48212 +a los ||| to take account of ||| 0.00129199 0.000454728 2.07417e-05 5.36314e-10 2.718 ||| 0-0 1-3 ||| 774 48212 +a los ||| to take due ||| 0.0277778 0.00409398 2.07417e-05 1.55886e-07 2.718 ||| 0-0 ||| 36 48212 +a los ||| to take in the ||| 0.0606061 0.0176447 4.14834e-05 1.45355e-05 2.718 ||| 0-0 0-2 1-3 ||| 33 48212 +a los ||| to take place ||| 0.00135501 0.00409398 2.07417e-05 8.48798e-07 2.718 ||| 0-0 ||| 738 48212 +a los ||| to take stock of the ||| 0.0185185 0.00230489 2.07417e-05 4.8283e-11 2.718 ||| 0-3 1-4 ||| 54 48212 +a los ||| to take the ||| 0.00120482 0.0281035 4.14834e-05 0.000241925 2.718 ||| 0-0 1-2 ||| 1660 48212 +a los ||| to take ||| 0.000253984 0.00409398 8.29669e-05 0.000563986 2.718 ||| 0-0 ||| 15749 48212 +a los ||| to talk about the ||| 0.00403226 0.0281035 2.07417e-05 1.70652e-08 2.718 ||| 0-0 1-3 ||| 248 48212 +a los ||| to talk ||| 0.00100402 0.00409398 2.07417e-05 2.81292e-05 2.718 ||| 0-0 ||| 996 48212 +a los ||| to tax ||| 0.139073 0.0140511 0.000435576 0.000236699 2.718 ||| 0-0 1-1 ||| 151 48212 +a los ||| to tell our ||| 0.047619 0.0057078 2.07417e-05 1.22844e-07 2.718 ||| 0-0 1-2 ||| 21 48212 +a los ||| to tell the ||| 0.00346021 0.0281035 2.07417e-05 1.47559e-05 2.718 ||| 0-0 1-2 ||| 289 48212 +a los ||| to tell those ||| 0.125 0.0654285 2.07417e-05 5.74391e-07 2.718 ||| 0-0 1-2 ||| 8 48212 +a los ||| to tell ||| 0.000849618 0.00409398 2.07417e-05 3.43996e-05 2.718 ||| 0-0 ||| 1177 48212 +a los ||| to thank my ||| 0.00266667 0.00198578 2.07417e-05 2.55468e-08 2.718 ||| 0-0 1-2 ||| 375 48212 +a los ||| to thank the rapporteur for this and ||| 1 0.0281035 2.07417e-05 7.14987e-16 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| to thank the rapporteur for this ||| 0.0434783 0.0281035 2.07417e-05 5.70807e-14 2.718 ||| 0-0 1-2 ||| 23 48212 +a los ||| to thank the rapporteur for ||| 0.00178891 0.0281035 2.07417e-05 8.83411e-12 2.718 ||| 0-0 1-2 ||| 559 48212 +a los ||| to thank the rapporteur ||| 0.000642261 0.0281035 2.07417e-05 1.14942e-09 2.718 ||| 0-0 1-2 ||| 1557 48212 +a los ||| to thank the ||| 0.00218102 0.0281035 0.000207417 1.58979e-05 2.718 ||| 0-0 1-2 ||| 4585 48212 +a los ||| to that of the ||| 0.012987 0.0281035 4.14834e-05 0.000137415 2.718 ||| 0-0 1-3 ||| 154 48212 +a los ||| to that which is ||| 0.125 0.00409398 2.07417e-05 1.5688e-06 2.718 ||| 0-0 ||| 8 48212 +a los ||| to that which would be ||| 0.5 0.00409398 2.07417e-05 5.3238e-09 2.718 ||| 0-0 ||| 2 48212 +a los ||| to that which would ||| 0.5 0.00409398 2.07417e-05 2.93761e-07 2.718 ||| 0-0 ||| 2 48212 +a los ||| to that which ||| 0.0357143 0.00409398 4.14834e-05 5.00556e-05 2.718 ||| 0-0 ||| 56 48212 +a los ||| to that ||| 0.00221022 0.00409398 0.000186676 0.00589263 2.718 ||| 0-0 ||| 4072 48212 +a los ||| to the ' no ' ||| 0.333333 0.0161776 2.07417e-05 3.30941e-09 2.718 ||| 0-0 1-1 1-2 1-4 ||| 3 48212 +a los ||| to the ' ||| 0.0145985 0.019159 4.14834e-05 0.000799285 2.718 ||| 0-0 1-1 1-2 ||| 137 48212 +a los ||| to the African , Caribbean and ||| 0.5 0.0281035 2.07417e-05 2.52406e-14 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the African , Caribbean ||| 0.5 0.0281035 2.07417e-05 2.01507e-12 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the African , ||| 0.5 0.0281035 2.07417e-05 3.10011e-07 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the African ||| 0.5 0.0281035 2.07417e-05 2.59957e-06 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the Bank ||| 0.0555556 0.0281035 2.07417e-05 4.16231e-06 2.718 ||| 0-0 1-1 ||| 18 48212 +a los ||| to the Burmese ||| 0.5 0.0281035 2.07417e-05 7.06241e-07 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the Central ||| 1 0.0281035 2.07417e-05 3.35089e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the Commission 's ||| 0.0181818 0.0281035 2.07417e-05 1.67148e-07 2.718 ||| 0-0 1-1 ||| 55 48212 +a los ||| to the Commission ||| 0.000164555 0.0281035 2.07417e-05 8.77692e-05 2.718 ||| 0-0 1-1 ||| 6077 48212 +a los ||| to the Community ||| 0.00549451 0.0281035 2.07417e-05 2.43278e-05 2.718 ||| 0-0 1-1 ||| 182 48212 +a los ||| to the Council ||| 0.000283447 0.0281035 2.07417e-05 5.19613e-05 2.718 ||| 0-0 1-1 ||| 3528 48212 +a los ||| to the ECU ||| 0.333333 0.0281035 2.07417e-05 6.86707e-06 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to the EU 's overall ||| 1 0.0281035 2.07417e-05 8.96286e-12 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the EU 's ||| 0.0526316 0.0281035 2.07417e-05 1.41593e-07 2.718 ||| 0-0 1-1 ||| 19 48212 +a los ||| to the EU ||| 0.00180397 0.0281035 6.22252e-05 7.43507e-05 2.718 ||| 0-0 1-1 ||| 1663 48212 +a los ||| to the EU ’ s ||| 0.166667 0.0281035 2.07417e-05 2.46398e-10 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| to the EU ’ ||| 0.0625 0.0281035 2.07417e-05 1.29526e-07 2.718 ||| 0-0 1-1 ||| 16 48212 +a los ||| to the EUR ||| 0.25 0.0281035 4.14834e-05 4.01806e-05 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| to the European ||| 0.0157658 0.0281035 0.000145192 0.000502468 2.718 ||| 0-0 1-1 ||| 444 48212 +a los ||| to the French ||| 0.0526316 0.0281035 2.07417e-05 5.61988e-06 2.718 ||| 0-0 1-1 ||| 19 48212 +a los ||| to the House ||| 0.000868056 0.0281035 2.07417e-05 3.7581e-05 2.718 ||| 0-0 1-1 ||| 1152 48212 +a los ||| to the Members ||| 0.00531915 0.0334569 2.07417e-05 0.000724934 2.718 ||| 0-0 1-1 1-2 ||| 188 48212 +a los ||| to the Union ||| 0.00181818 0.0281035 2.07417e-05 8.37572e-05 2.718 ||| 0-0 1-1 ||| 550 48212 +a los ||| to the account ||| 0.125 0.0281035 2.07417e-05 4.32009e-05 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| to the actual ||| 0.016129 0.0281035 2.07417e-05 2.17432e-05 2.718 ||| 0-0 1-1 ||| 62 48212 +a los ||| to the additional ||| 0.333333 0.0281035 2.07417e-05 7.94897e-06 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to the administrative ||| 0.666667 0.0281035 4.14834e-05 3.08041e-06 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to the advantage of ||| 0.025 0.0281035 4.14834e-05 4.14166e-07 2.718 ||| 0-0 1-1 ||| 80 48212 +a los ||| to the advantage ||| 0.0208333 0.0281035 4.14834e-05 7.61839e-06 2.718 ||| 0-0 1-1 ||| 96 48212 +a los ||| to the agreed procedure for achieving the ||| 1 0.0281035 2.07417e-05 2.57155e-16 2.718 ||| 0-0 1-1 1-6 ||| 1 48212 +a los ||| to the agreed ||| 0.5 0.0281035 2.07417e-05 1.17356e-05 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the aims ||| 0.0222222 0.0281035 2.07417e-05 5.99554e-06 2.718 ||| 0-0 1-1 ||| 45 48212 +a los ||| to the ambitions of ||| 0.125 0.0281035 2.07417e-05 3.51265e-08 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| to the ambitions ||| 0.0555556 0.0281035 2.07417e-05 6.46136e-07 2.718 ||| 0-0 1-1 ||| 18 48212 +a los ||| to the application 's legality ||| 1 0.0281035 2.07417e-05 6.95948e-15 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the application 's ||| 1 0.0281035 2.07417e-05 1.73987e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the application ||| 0.00649351 0.0281035 2.07417e-05 9.13606e-06 2.718 ||| 0-0 1-1 ||| 154 48212 +a los ||| to the appointment ||| 0.0263158 0.0281035 2.07417e-05 1.72804e-06 2.718 ||| 0-0 1-1 ||| 38 48212 +a los ||| to the area ||| 0.00873362 0.0281035 4.14834e-05 6.24047e-05 2.718 ||| 0-0 1-1 ||| 229 48212 +a los ||| to the arguments ||| 0.0322581 0.0281035 2.07417e-05 3.62136e-06 2.718 ||| 0-0 1-1 ||| 31 48212 +a los ||| to the army of ||| 0.166667 0.0281035 2.07417e-05 7.35206e-08 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| to the army ||| 0.0454545 0.0281035 2.07417e-05 1.35238e-06 2.718 ||| 0-0 1-1 ||| 22 48212 +a los ||| to the arrangement of ||| 1 0.0281035 2.07417e-05 1.17633e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the arrangement ||| 0.2 0.0281035 2.07417e-05 2.1638e-06 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| to the association ||| 0.25 0.0281035 2.07417e-05 2.37417e-06 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| to the attention of the ||| 0.045045 0.0281035 0.000103709 1.31044e-07 2.718 ||| 0-0 1-1 ||| 111 48212 +a los ||| to the attention of those ||| 0.5 0.0313289 2.07417e-05 2.16851e-09 2.718 ||| 0-0 1-1 1-3 1-4 ||| 2 48212 +a los ||| to the attention of ||| 0.032 0.0281035 8.29669e-05 2.13455e-06 2.718 ||| 0-0 1-1 ||| 125 48212 +a los ||| to the attention ||| 0.0233918 0.0281035 8.29669e-05 3.9264e-05 2.718 ||| 0-0 1-1 ||| 171 48212 +a los ||| to the average ||| 0.0416667 0.0281035 2.07417e-05 3.72655e-06 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| to the benefit ||| 0.00347222 0.0281035 2.07417e-05 1.97898e-05 2.718 ||| 0-0 1-1 ||| 288 48212 +a los ||| to the benefits of ||| 0.0526316 0.0281035 2.07417e-05 3.23491e-07 2.718 ||| 0-0 1-1 ||| 19 48212 +a los ||| to the benefits ||| 0.025641 0.0281035 2.07417e-05 5.95046e-06 2.718 ||| 0-0 1-1 ||| 39 48212 +a los ||| to the bottle bank or collecting ||| 0.333333 0.0281035 2.07417e-05 5.4549e-21 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to the bottle bank or ||| 0.333333 0.0281035 2.07417e-05 3.89635e-15 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to the bottle bank ||| 0.333333 0.0281035 2.07417e-05 3.40799e-12 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to the bottle ||| 0.25 0.0281035 2.07417e-05 2.1037e-07 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| to the budget ||| 0.00434783 0.0281035 2.07417e-05 1.85426e-05 2.718 ||| 0-0 1-1 ||| 230 48212 +a los ||| to the camp ||| 0.333333 0.0281035 2.07417e-05 1.41248e-06 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to the clear ||| 0.05 0.0281035 2.07417e-05 5.00229e-05 2.718 ||| 0-0 1-1 ||| 20 48212 +a los ||| to the control of the ||| 0.142857 0.0281035 2.07417e-05 3.84656e-08 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| to the control of ||| 0.0232558 0.0281035 2.07417e-05 6.26559e-07 2.718 ||| 0-0 1-1 ||| 43 48212 +a los ||| to the control ||| 0.0181818 0.0281035 2.07417e-05 1.15253e-05 2.718 ||| 0-0 1-1 ||| 55 48212 +a los ||| to the cost of ||| 0.0131579 0.0281035 2.07417e-05 6.7639e-07 2.718 ||| 0-0 1-1 ||| 76 48212 +a los ||| to the cost ||| 0.00980392 0.0281035 2.07417e-05 1.24419e-05 2.718 ||| 0-0 1-1 ||| 102 48212 +a los ||| to the countries ||| 0.00441501 0.0250506 4.14834e-05 0.00125263 2.718 ||| 0-0 1-1 1-2 ||| 453 48212 +a los ||| to the country 's political ||| 1 0.0281035 2.07417e-05 1.83837e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the country 's ||| 0.25 0.0281035 2.07417e-05 1.0299e-07 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| to the country ||| 0.00421941 0.0281035 2.07417e-05 5.408e-05 2.718 ||| 0-0 1-1 ||| 237 48212 +a los ||| to the credit of the ||| 0.0555556 0.0188872 2.07417e-05 7.67509e-09 2.718 ||| 0-0 1-1 1-3 1-4 ||| 18 48212 +a los ||| to the criteria ||| 0.012987 0.0217129 2.07417e-05 9.01434e-05 2.718 ||| 0-0 1-1 1-2 ||| 77 48212 +a los ||| to the current ||| 0.00754717 0.0281035 4.14834e-05 2.47635e-05 2.718 ||| 0-0 1-1 ||| 265 48212 +a los ||| to the defence ||| 0.0169492 0.0281035 2.07417e-05 3.78665e-06 2.718 ||| 0-0 1-1 ||| 59 48212 +a los ||| to the development ||| 0.00112994 0.0281035 2.07417e-05 2.47184e-05 2.718 ||| 0-0 1-1 ||| 885 48212 +a los ||| to the different ||| 0.00806452 0.0281035 2.07417e-05 3.30882e-05 2.718 ||| 0-0 1-1 ||| 124 48212 +a los ||| to the disadvantage of ||| 0.0588235 0.0281035 4.14834e-05 8.82247e-08 2.718 ||| 0-0 1-1 ||| 34 48212 +a los ||| to the disadvantage ||| 0.0731707 0.0281035 6.22252e-05 1.62285e-06 2.718 ||| 0-0 1-1 ||| 41 48212 +a los ||| to the dismantling of the ||| 0.25 0.0281035 2.07417e-05 1.25377e-09 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| to the dismantling of ||| 0.1 0.0281035 2.07417e-05 2.04224e-08 2.718 ||| 0-0 1-1 ||| 10 48212 +a los ||| to the dismantling ||| 0.0769231 0.0281035 2.07417e-05 3.7566e-07 2.718 ||| 0-0 1-1 ||| 13 48212 +a los ||| to the effect ||| 0.00105042 0.0281035 2.07417e-05 5.01281e-05 2.718 ||| 0-0 1-1 ||| 952 48212 +a los ||| to the enormous amount of ||| 1 0.0281035 2.07417e-05 5.72402e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the enormous amount ||| 1 0.0281035 2.07417e-05 1.05291e-09 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the enormous ||| 0.0243902 0.0281035 2.07417e-05 4.32761e-06 2.718 ||| 0-0 1-1 ||| 41 48212 +a los ||| to the environment ||| 0.00137741 0.0281035 2.07417e-05 8.38474e-06 2.718 ||| 0-0 1-1 ||| 726 48212 +a los ||| to the euro ||| 0.00310559 0.0281035 2.07417e-05 8.8205e-06 2.718 ||| 0-0 1-1 ||| 322 48212 +a los ||| to the existing ||| 0.0769231 0.0193898 6.22252e-05 6.50193e-05 2.718 ||| 0-0 1-1 1-2 ||| 39 48212 +a los ||| to the expenditure ||| 0.1 0.0340639 2.07417e-05 0.000178243 2.718 ||| 0-0 1-1 1-2 ||| 10 48212 +a los ||| to the experts ||| 0.0333333 0.0318703 2.07417e-05 8.10825e-05 2.718 ||| 0-0 1-1 1-2 ||| 30 48212 +a los ||| to the extension ||| 0.0243902 0.0281035 2.07417e-05 2.53946e-06 2.718 ||| 0-0 1-1 ||| 41 48212 +a los ||| to the fact ||| 0.000429738 0.0281035 2.07417e-05 0.000440169 2.718 ||| 0-0 1-1 ||| 2327 48212 +a los ||| to the failure to observe ||| 1 0.0281035 2.07417e-05 1.19353e-11 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the failure to ||| 0.0714286 0.0281035 2.07417e-05 6.24883e-07 2.718 ||| 0-0 1-1 ||| 14 48212 +a los ||| to the failure ||| 0.0243902 0.0281035 2.07417e-05 7.03236e-06 2.718 ||| 0-0 1-1 ||| 41 48212 +a los ||| to the few ||| 0.0714286 0.0281035 2.07417e-05 2.63413e-05 2.718 ||| 0-0 1-1 ||| 14 48212 +a los ||| to the financial ||| 0.1 0.0281035 2.07417e-05 1.83322e-05 2.718 ||| 0-0 1-1 ||| 10 48212 +a los ||| to the fishing nations ||| 0.5 0.0281035 2.07417e-05 9.29308e-11 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the fishing ||| 0.2 0.0281035 2.07417e-05 5.99554e-06 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| to the fundamental ||| 0.105263 0.0248767 4.14834e-05 0.000222646 2.718 ||| 0-0 1-1 1-2 ||| 19 48212 +a los ||| to the future development of the ||| 0.0588235 0.0281035 2.07417e-05 2.19114e-11 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| to the future development of ||| 0.05 0.0281035 2.07417e-05 3.56912e-10 2.718 ||| 0-0 1-1 ||| 20 48212 +a los ||| to the future development ||| 0.04 0.0281035 2.07417e-05 6.56522e-09 2.718 ||| 0-0 1-1 ||| 25 48212 +a los ||| to the future ||| 0.001001 0.0281035 2.07417e-05 3.99101e-05 2.718 ||| 0-0 1-1 ||| 999 48212 +a los ||| to the general ||| 0.0153846 0.0281035 2.07417e-05 2.62812e-05 2.718 ||| 0-0 1-1 ||| 65 48212 +a los ||| to the gentlemen ||| 0.5 0.0281035 2.07417e-05 1.03832e-05 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the governments of ||| 0.0125 0.0281035 2.07417e-05 2.79378e-07 2.718 ||| 0-0 1-1 ||| 80 48212 +a los ||| to the governments ||| 0.00671141 0.0281035 2.07417e-05 5.13903e-06 2.718 ||| 0-0 1-1 ||| 149 48212 +a los ||| to the ground ||| 0.0208333 0.0281035 2.07417e-05 1.75809e-05 2.718 ||| 0-0 1-1 ||| 48 48212 +a los ||| to the heartfelt ||| 1 0.0281035 2.07417e-05 3.30581e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the highest bidder , like common ||| 1 0.0281035 2.07417e-05 1.779e-19 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the highest bidder , like ||| 1 0.0281035 2.07417e-05 7.70131e-16 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the highest bidder , ||| 0.5 0.0281035 2.07417e-05 4.33657e-13 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the highest bidder ||| 0.111111 0.0281035 2.07417e-05 3.63639e-12 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| to the highest ||| 0.0169492 0.0281035 2.07417e-05 3.30581e-06 2.718 ||| 0-0 1-1 ||| 59 48212 +a los ||| to the human ||| 0.142857 0.0281035 2.07417e-05 1.85426e-05 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| to the idea of ||| 0.00458716 0.0281035 2.07417e-05 1.83148e-06 2.718 ||| 0-0 1-1 ||| 218 48212 +a los ||| to the idea ||| 0.0023753 0.0281035 2.07417e-05 3.36892e-05 2.718 ||| 0-0 1-1 ||| 421 48212 +a los ||| to the individual ||| 0.0495868 0.0281035 0.00012445 2.12473e-05 2.718 ||| 0-0 1-1 ||| 121 48212 +a los ||| to the individuals ||| 0.1 0.0305216 2.07417e-05 8.15183e-05 2.718 ||| 0-0 1-1 1-2 ||| 10 48212 +a los ||| to the issue of ||| 0.00286123 0.0281035 4.14834e-05 6.18227e-06 2.718 ||| 0-0 1-1 ||| 699 48212 +a los ||| to the issue ||| 0.00428725 0.0281035 8.29669e-05 0.00011372 2.718 ||| 0-0 1-1 ||| 933 48212 +a los ||| to the joint European tourist ||| 1 0.0281035 2.07417e-05 1.04674e-13 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the joint European ||| 0.333333 0.0281035 2.07417e-05 3.27107e-08 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to the joint ||| 0.0833333 0.0281035 2.07417e-05 9.78219e-06 2.718 ||| 0-0 1-1 ||| 12 48212 +a los ||| to the kind of ||| 0.0277778 0.0281035 2.07417e-05 3.98645e-06 2.718 ||| 0-0 1-1 ||| 36 48212 +a los ||| to the kind ||| 0.0408163 0.0281035 4.14834e-05 7.33289e-05 2.718 ||| 0-0 1-1 ||| 49 48212 +a los ||| to the lethal ||| 1 0.0281035 2.07417e-05 1.05185e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the level of the ||| 0.0540541 0.0188872 4.14834e-05 1.82369e-07 2.718 ||| 0-0 1-1 1-3 1-4 ||| 37 48212 +a los ||| to the list of ||| 0.00840336 0.0281035 2.07417e-05 5.97151e-07 2.718 ||| 0-0 1-1 ||| 119 48212 +a los ||| to the list ||| 0.00591716 0.0281035 2.07417e-05 1.09843e-05 2.718 ||| 0-0 1-1 ||| 169 48212 +a los ||| to the lives of ||| 0.025 0.0281035 2.07417e-05 4.20701e-07 2.718 ||| 0-0 1-1 ||| 40 48212 +a los ||| to the lives ||| 0.0212766 0.0281035 2.07417e-05 7.7386e-06 2.718 ||| 0-0 1-1 ||| 47 48212 +a los ||| to the male domination ||| 1 0.0281035 2.07417e-05 2.7318e-12 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the male ||| 1 0.0281035 2.07417e-05 1.51767e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the many ||| 0.00462963 0.0143962 2.07417e-05 2.11872e-05 2.718 ||| 0-0 1-1 1-2 ||| 216 48212 +a los ||| to the master and ||| 0.5 0.0281035 2.07417e-05 7.52877e-09 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the master ||| 0.5 0.0281035 2.07417e-05 6.01056e-07 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the material ||| 0.142857 0.0281035 2.07417e-05 4.22242e-06 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| to the member ||| 0.166667 0.0281035 2.07417e-05 2.5034e-05 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| to the members ||| 0.0078125 0.0318179 2.07417e-05 0.000298334 2.718 ||| 0-0 1-1 1-2 ||| 128 48212 +a los ||| to the men of ||| 0.5 0.0389449 2.07417e-05 1.30491e-05 2.718 ||| 0-0 1-1 1-2 ||| 2 48212 +a los ||| to the men ||| 0.0833333 0.0389449 4.14834e-05 0.000240032 2.718 ||| 0-0 1-1 1-2 ||| 24 48212 +a los ||| to the mill ||| 0.25 0.0281035 6.22252e-05 4.80845e-07 2.718 ||| 0-0 1-1 ||| 12 48212 +a los ||| to the more ||| 0.1 0.0281035 4.14834e-05 0.000343158 2.718 ||| 0-0 1-1 ||| 20 48212 +a los ||| to the most ||| 0.0119048 0.0281035 2.07417e-05 6.49441e-05 2.718 ||| 0-0 1-1 ||| 84 48212 +a los ||| to the nation state ||| 0.25 0.0281035 2.07417e-05 5.31394e-10 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| to the nation ||| 0.0625 0.0281035 2.07417e-05 2.1037e-06 2.718 ||| 0-0 1-1 ||| 16 48212 +a los ||| to the national ||| 0.0588235 0.0281035 2.07417e-05 1.93089e-05 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| to the nearest ||| 0.333333 0.0281035 2.07417e-05 1.6529e-07 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to the needs of ||| 0.00293255 0.0281035 2.07417e-05 1.6199e-06 2.718 ||| 0-0 1-1 ||| 341 48212 +a los ||| to the needs ||| 0.00199203 0.0281035 2.07417e-05 2.97974e-05 2.718 ||| 0-0 1-1 ||| 502 48212 +a los ||| to the new ||| 0.000732064 0.0281035 2.07417e-05 8.98128e-05 2.718 ||| 0-0 1-1 ||| 1366 48212 +a los ||| to the newly ||| 0.2 0.0281035 2.07417e-05 1.0819e-06 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| to the news ||| 0.0666667 0.0281035 2.07417e-05 5.45459e-06 2.718 ||| 0-0 1-1 ||| 15 48212 +a los ||| to the non obligatory ||| 1 0.0281035 2.07417e-05 5.08494e-12 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the non ||| 1 0.0281035 2.07417e-05 7.06241e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the number of ||| 0.00961538 0.0281035 2.07417e-05 4.042e-06 2.718 ||| 0-0 1-1 ||| 104 48212 +a los ||| to the number ||| 0.00862069 0.0281035 2.07417e-05 7.43507e-05 2.718 ||| 0-0 1-1 ||| 116 48212 +a los ||| to the numerous ||| 0.0172414 0.0281035 2.07417e-05 2.64465e-06 2.718 ||| 0-0 1-1 ||| 58 48212 +a los ||| to the nuts and ||| 0.333333 0.0281035 2.07417e-05 4.14082e-09 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to the nuts ||| 0.25 0.0281035 2.07417e-05 3.30581e-07 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| to the objectives ||| 0.00595238 0.0281035 2.07417e-05 7.03236e-06 2.718 ||| 0-0 1-1 ||| 168 48212 +a los ||| to the ones ||| 0.142857 0.0281035 4.14834e-05 3.32084e-05 2.718 ||| 0-0 1-1 ||| 14 48212 +a los ||| to the opportunities ||| 0.0222222 0.0281035 2.07417e-05 5.13903e-06 2.718 ||| 0-0 1-1 ||| 45 48212 +a los ||| to the other ||| 0.00316957 0.0281035 4.14834e-05 0.000194667 2.718 ||| 0-0 1-1 ||| 631 48212 +a los ||| to the others ||| 0.03125 0.0224144 2.07417e-05 0.000145651 2.718 ||| 0-0 1-1 1-2 ||| 32 48212 +a los ||| to the outside ||| 0.0232558 0.0281035 2.07417e-05 5.99554e-06 2.718 ||| 0-0 1-1 ||| 43 48212 +a los ||| to the overall ||| 0.117647 0.0281035 4.14834e-05 9.51172e-06 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| to the pace of ||| 0.2 0.0281035 2.07417e-05 1.58478e-07 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| to the pace ||| 0.166667 0.0281035 2.07417e-05 2.91512e-06 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| to the parent ||| 0.5 0.0281035 2.07417e-05 3.30581e-07 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the particular ||| 0.105263 0.0281035 4.14834e-05 9.24725e-05 2.718 ||| 0-0 1-1 ||| 19 48212 +a los ||| to the parties ||| 0.0138889 0.029299 2.07417e-05 0.000252594 2.718 ||| 0-0 1-1 1-2 ||| 72 48212 +a los ||| to the partnership ||| 0.0769231 0.0281035 2.07417e-05 3.2457e-06 2.718 ||| 0-0 1-1 ||| 13 48212 +a los ||| to the people of ||| 0.0232019 0.024332 0.000207417 6.4333e-05 2.718 ||| 0-0 1-1 1-2 ||| 431 48212 +a los ||| to the people ||| 0.0152 0.024332 0.000394093 0.00118337 2.718 ||| 0-0 1-1 1-2 ||| 1250 48212 +a los ||| to the person ||| 0.0285714 0.0281035 2.07417e-05 1.9354e-05 2.718 ||| 0-0 1-1 ||| 35 48212 +a los ||| to the previous ||| 0.0142857 0.0281035 2.07417e-05 7.67849e-06 2.718 ||| 0-0 1-1 ||| 70 48212 +a los ||| to the principles ||| 0.00380228 0.0281035 2.07417e-05 6.05564e-06 2.718 ||| 0-0 1-1 ||| 263 48212 +a los ||| to the problems of ||| 0.00645161 0.0281035 2.07417e-05 1.09627e-06 2.718 ||| 0-0 1-1 ||| 155 48212 +a los ||| to the problems ||| 0.00491803 0.0281035 6.22252e-05 2.01654e-05 2.718 ||| 0-0 1-1 ||| 610 48212 +a los ||| to the products of ||| 0.111111 0.0281035 2.07417e-05 8.49571e-07 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| to the products ||| 0.0344828 0.0281035 2.07417e-05 1.56275e-05 2.718 ||| 0-0 1-1 ||| 29 48212 +a los ||| to the proposal for ||| 0.0075188 0.00835696 2.07417e-05 2.80484e-07 2.718 ||| 1-1 0-3 ||| 133 48212 +a los ||| to the protection of ||| 0.00286533 0.0281035 2.07417e-05 8.29149e-07 2.718 ||| 0-0 1-1 ||| 349 48212 +a los ||| to the protection ||| 0.00449438 0.0281035 4.14834e-05 1.52518e-05 2.718 ||| 0-0 1-1 ||| 445 48212 +a los ||| to the provision of ||| 0.0113636 0.0281035 2.07417e-05 9.70472e-07 2.718 ||| 0-0 1-1 ||| 88 48212 +a los ||| to the provision ||| 0.00952381 0.0281035 2.07417e-05 1.78514e-05 2.718 ||| 0-0 1-1 ||| 105 48212 +a los ||| to the pursuit ||| 0.0285714 0.0281035 2.07417e-05 3.72655e-06 2.718 ||| 0-0 1-1 ||| 35 48212 +a los ||| to the question about ||| 0.0588235 0.0281035 2.07417e-05 1.75817e-07 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| to the question of the ||| 0.00826446 0.0281035 2.07417e-05 4.14897e-07 2.718 ||| 0-0 1-1 ||| 121 48212 +a los ||| to the question of ||| 0.00505051 0.0281035 6.22252e-05 6.75818e-06 2.718 ||| 0-0 1-1 ||| 594 48212 +a los ||| to the question ||| 0.00557103 0.0281035 0.00012445 0.000124313 2.718 ||| 0-0 1-1 ||| 1077 48212 +a los ||| to the questions ||| 0.0033557 0.0281035 2.07417e-05 1.32984e-05 2.718 ||| 0-0 1-1 ||| 298 48212 +a los ||| to the remaining ||| 0.0384615 0.0281035 2.07417e-05 4.91364e-06 2.718 ||| 0-0 1-1 ||| 26 48212 +a los ||| to the resolution ||| 0.00465116 0.0281035 2.07417e-05 1.31331e-05 2.718 ||| 0-0 1-1 ||| 215 48212 +a los ||| to the resources ||| 0.0204082 0.0392827 2.07417e-05 0.000728435 2.718 ||| 0-0 1-1 1-2 ||| 49 48212 +a los ||| to the respective ||| 0.05 0.0281035 2.07417e-05 4.80845e-06 2.718 ||| 0-0 1-1 ||| 20 48212 +a los ||| to the responsible ||| 0.2 0.0281035 2.07417e-05 2.22241e-05 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| to the right ||| 0.00429185 0.0281035 2.07417e-05 9.69053e-05 2.718 ||| 0-0 1-1 ||| 233 48212 +a los ||| to the rights ||| 0.010929 0.0144062 4.14834e-05 2.29303e-05 2.718 ||| 0-0 1-1 1-2 ||| 183 48212 +a los ||| to the same ||| 0.00308166 0.0281035 4.14834e-05 0.000120918 2.718 ||| 0-0 1-1 ||| 649 48212 +a los ||| to the sectoral ||| 1 0.0281035 2.07417e-05 3.30581e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the selective imposition of ||| 0.5 0.0281035 2.07417e-05 2.03734e-13 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the selective imposition ||| 0.5 0.0281035 2.07417e-05 3.74759e-12 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the selective ||| 0.333333 0.0281035 2.07417e-05 4.35766e-07 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| to the sessional ||| 1 0.0281035 2.07417e-05 6.01056e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the simple ||| 0.166667 0.0281035 2.07417e-05 6.49141e-06 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| to the simplification ||| 0.027027 0.0281035 2.07417e-05 6.46136e-07 2.718 ||| 0-0 1-1 ||| 37 48212 +a los ||| to the sittings ||| 0.5 0.0281035 2.07417e-05 7.06241e-07 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the situation of ||| 0.00746269 0.0281035 2.07417e-05 4.20701e-06 2.718 ||| 0-0 1-1 ||| 134 48212 +a los ||| to the situation ||| 0.00150376 0.0281035 2.07417e-05 7.7386e-05 2.718 ||| 0-0 1-1 ||| 665 48212 +a los ||| to the so ||| 0.5 0.0281035 2.07417e-05 0.000341054 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to the so-called ||| 0.00793651 0.0281035 2.07417e-05 5.61988e-06 2.718 ||| 0-0 1-1 ||| 126 48212 +a los ||| to the status of ||| 0.0153846 0.0281035 2.07417e-05 8.25881e-07 2.718 ||| 0-0 1-1 ||| 65 48212 +a los ||| to the status ||| 0.010989 0.0281035 2.07417e-05 1.51917e-05 2.718 ||| 0-0 1-1 ||| 91 48212 +a los ||| to the subject of ||| 0.00632911 0.0281035 2.07417e-05 4.4096e-06 2.718 ||| 0-0 1-1 ||| 158 48212 +a los ||| to the subject ||| 0.00363636 0.0281035 2.07417e-05 8.11125e-05 2.718 ||| 0-0 1-1 ||| 275 48212 +a los ||| to the sum ||| 0.0357143 0.0281035 2.07417e-05 6.32612e-06 2.718 ||| 0-0 1-1 ||| 28 48212 +a los ||| to the supervisory ||| 1 0.0281035 2.07417e-05 7.06241e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the terms ||| 0.0192308 0.0281035 2.07417e-05 0.00016493 2.718 ||| 0-0 1-1 ||| 52 48212 +a los ||| to the those ||| 0.333333 0.046766 2.07417e-05 0.00250905 2.718 ||| 0-0 1-1 1-2 ||| 3 48212 +a los ||| to the treatment of ||| 0.0625 0.0281035 4.14834e-05 4.94222e-07 2.718 ||| 0-0 1-1 ||| 32 48212 +a los ||| to the treatment ||| 0.0357143 0.0281035 4.14834e-05 9.09098e-06 2.718 ||| 0-0 1-1 ||| 56 48212 +a los ||| to the two ||| 0.00395257 0.0281035 2.07417e-05 3.55224e-05 2.718 ||| 0-0 1-1 ||| 253 48212 +a los ||| to the use of ||| 0.00284091 0.0281035 2.07417e-05 3.97175e-06 2.718 ||| 0-0 1-1 ||| 352 48212 +a los ||| to the use ||| 0.00246914 0.0281035 2.07417e-05 7.30584e-05 2.718 ||| 0-0 1-1 ||| 405 48212 +a los ||| to the various ||| 0.00664452 0.0281035 4.14834e-05 2.32008e-05 2.718 ||| 0-0 1-1 ||| 301 48212 +a los ||| to the very ||| 0.0157068 0.0281035 6.22252e-05 0.000522844 2.718 ||| 0-0 1-1 ||| 191 48212 +a los ||| to the views of the ||| 0.04 0.0188872 2.07417e-05 1.73329e-08 2.718 ||| 0-0 1-1 1-3 1-4 ||| 25 48212 +a los ||| to the wishes of the ||| 0.0322581 0.0188872 2.07417e-05 1.12781e-08 2.718 ||| 0-0 1-1 1-3 1-4 ||| 31 48212 +a los ||| to the work ||| 0.00203666 0.0281035 2.07417e-05 9.51172e-05 2.718 ||| 0-0 1-1 ||| 491 48212 +a los ||| to the ||| 0.0892887 0.0281035 0.315979 0.150264 2.718 ||| 0-0 1-1 ||| 170615 48212 +a los ||| to the ‘ No ||| 1 0.0281035 2.07417e-05 1.14241e-09 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the ‘ No ’ ||| 1 0.0281035 2.07417e-05 1.9902e-12 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to the ‘ ||| 0.0263158 0.0281035 2.07417e-05 1.68747e-05 2.718 ||| 0-0 1-1 ||| 38 48212 +a los ||| to their fellow ||| 0.111111 0.00315408 2.07417e-05 2.0275e-08 2.718 ||| 0-0 1-1 1-2 ||| 9 48212 +a los ||| to their national ||| 0.2 0.00421203 2.07417e-05 3.42832e-07 2.718 ||| 0-0 1-1 1-2 ||| 5 48212 +a los ||| to their own devices ||| 0.0526316 0.00543993 4.14834e-05 1.07328e-11 2.718 ||| 0-0 1-1 ||| 38 48212 +a los ||| to their own ||| 0.00961538 0.00543993 6.22252e-05 1.35859e-06 2.718 ||| 0-0 1-1 ||| 312 48212 +a los ||| to their ||| 0.0131488 0.00543993 0.00118228 0.000801385 2.718 ||| 0-0 1-1 ||| 4335 48212 +a los ||| to them from ||| 0.125 0.00878293 2.07417e-05 1.13536e-06 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| to them ||| 0.00634166 0.00878293 0.000331868 0.000705017 2.718 ||| 0-0 1-1 ||| 2523 48212 +a los ||| to these as ||| 0.5 0.00552379 2.07417e-05 8.71313e-06 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to these projects ||| 0.0714286 0.0212725 2.07417e-05 1.62379e-06 2.718 ||| 0-0 1-1 1-2 ||| 14 48212 +a los ||| to these ||| 0.0127841 0.00552379 0.000933378 0.00085386 2.718 ||| 0-0 1-1 ||| 3520 48212 +a los ||| to this Parliament ||| 0.00208333 0.00409398 2.07417e-05 1.29921e-06 2.718 ||| 0-0 ||| 480 48212 +a los ||| to this analysis ||| 0.2 0.00409398 2.07417e-05 7.65042e-08 2.718 ||| 0-0 ||| 5 48212 +a los ||| to this ||| 0.000367332 0.00409398 0.00012445 0.00226344 2.718 ||| 0-0 ||| 16334 48212 +a los ||| to those , ||| 0.111111 0.0654285 2.07417e-05 0.000697544 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| to those European ||| 1 0.0654285 2.07417e-05 1.95591e-05 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to those already ||| 0.0416667 0.0654285 2.07417e-05 2.70876e-06 2.718 ||| 0-0 1-1 ||| 24 48212 +a los ||| to those applicable ||| 1 0.0654285 2.07417e-05 1.40966e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to those colleagues ||| 0.0625 0.0172267 2.07417e-05 1.97799e-07 2.718 ||| 0-0 1-2 ||| 16 48212 +a los ||| to those countries ||| 0.0123967 0.0654285 6.22252e-05 2.22094e-06 2.718 ||| 0-0 1-1 ||| 242 48212 +a los ||| to those enjoyed ||| 0.2 0.0654285 2.07417e-05 1.34532e-07 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| to those fields that ||| 1 0.0654285 2.07417e-05 3.65037e-09 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to those fields ||| 1 0.0654285 2.07417e-05 2.17005e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to those found ||| 1 0.0654285 2.07417e-05 1.2798e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to those from ||| 0.0625 0.0654285 2.07417e-05 9.41955e-06 2.718 ||| 0-0 1-1 ||| 16 48212 +a los ||| to those groups of the ||| 1 0.0313289 2.07417e-05 5.49389e-10 2.718 ||| 0-0 1-1 1-3 1-4 ||| 1 48212 +a los ||| to those held ||| 1 0.0654285 2.07417e-05 1.49213e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to those in the ||| 0.0566038 0.029362 6.22252e-05 0.00015075 2.718 ||| 0-0 1-1 0-2 1-3 ||| 53 48212 +a los ||| to those in ||| 0.0564516 0.0654285 0.000145192 0.000125199 2.718 ||| 0-0 1-1 ||| 124 48212 +a los ||| to those involved ||| 0.0285714 0.0654285 2.07417e-05 2.02265e-06 2.718 ||| 0-0 1-1 ||| 35 48212 +a los ||| to those made ||| 0.125 0.0654285 2.07417e-05 1.22529e-05 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| to those of its ||| 1 0.0654285 2.07417e-05 4.53034e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to those of you ||| 0.0588235 0.0654285 2.07417e-05 1.02668e-06 2.718 ||| 0-0 1-1 ||| 17 48212 +a los ||| to those of ||| 0.031746 0.0654285 0.000207417 0.000317986 2.718 ||| 0-0 1-1 ||| 315 48212 +a los ||| to those offered ||| 1 0.0654285 2.07417e-05 2.5444e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to those on the ||| 0.333333 0.0312303 4.14834e-05 8.95229e-07 2.718 ||| 0-0 1-1 1-2 1-3 ||| 6 48212 +a los ||| to those on ||| 0.125 0.0654285 2.07417e-05 3.9137e-05 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| to those people ||| 0.0285714 0.0429946 6.22252e-05 4.60642e-05 2.718 ||| 0-0 1-1 1-2 ||| 105 48212 +a los ||| to those responsible for the ||| 0.0769231 0.00835696 2.07417e-05 1.50417e-10 2.718 ||| 0-3 1-4 ||| 13 48212 +a los ||| to those that ||| 0.0322581 0.0654285 6.22252e-05 9.83928e-05 2.718 ||| 0-0 1-1 ||| 93 48212 +a los ||| to those through ||| 1 0.0654285 2.07417e-05 2.69238e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to those which ||| 0.0357143 0.0654285 4.14834e-05 4.96866e-05 2.718 ||| 0-0 1-1 ||| 56 48212 +a los ||| to those who are ||| 0.0291262 0.0654285 6.22252e-05 7.82758e-08 2.718 ||| 0-0 1-1 ||| 103 48212 +a los ||| to those who can ||| 0.0769231 0.0654285 2.07417e-05 1.53444e-08 2.718 ||| 0-0 1-1 ||| 13 48212 +a los ||| to those who have the ||| 0.166667 0.046766 2.07417e-05 2.64668e-08 2.718 ||| 0-0 1-1 1-4 ||| 6 48212 +a los ||| to those who ||| 0.0041876 0.0654285 0.000103709 5.15899e-06 2.718 ||| 0-0 1-1 ||| 1194 48212 +a los ||| to those with ||| 0.0384615 0.0654285 2.07417e-05 3.74027e-05 2.718 ||| 0-0 1-1 ||| 26 48212 +a los ||| to those ||| 0.222222 0.0654285 0.0189579 0.0058492 2.718 ||| 0-0 1-1 ||| 4113 48212 +a los ||| to three months - ||| 0.5 0.00409398 2.07417e-05 3.37081e-12 2.718 ||| 0-0 ||| 2 48212 +a los ||| to three months ||| 0.04 0.00409398 2.07417e-05 8.93616e-10 2.718 ||| 0-0 ||| 25 48212 +a los ||| to three ||| 0.00213675 0.00409398 2.07417e-05 2.21741e-05 2.718 ||| 0-0 ||| 468 48212 +a los ||| to tinkering ||| 0.2 0.00409398 2.07417e-05 3.85332e-07 2.718 ||| 0-0 ||| 5 48212 +a los ||| to tobacco growers at ||| 0.333333 0.0812043 2.07417e-05 8.04686e-12 2.718 ||| 0-0 1-2 ||| 3 48212 +a los ||| to tobacco growers ||| 0.047619 0.0812043 2.07417e-05 1.92168e-09 2.718 ||| 0-0 1-2 ||| 21 48212 +a los ||| to tobacco ||| 0.0277778 0.0020664 2.07417e-05 1.42923e-05 2.718 ||| 0-0 1-1 ||| 36 48212 +a los ||| to touch ||| 0.00564972 0.00409398 2.07417e-05 7.70664e-06 2.718 ||| 0-0 ||| 177 48212 +a los ||| to trade ||| 0.00653595 0.00705988 8.29669e-05 0.000262936 2.718 ||| 0-0 1-1 ||| 612 48212 +a los ||| to trades ||| 1 0.0270366 2.07417e-05 8.16203e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to travel ||| 0.00164204 0.0139317 2.07417e-05 7.69613e-05 2.718 ||| 0-0 1-1 ||| 609 48212 +a los ||| to treat babies ||| 1 0.05839 2.07417e-05 1.04481e-08 2.718 ||| 0-0 0-1 1-2 ||| 1 48212 +a los ||| to trees ||| 0.5 0.0416786 2.07417e-05 2.45211e-05 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| to trial those ||| 0.5 0.0654285 2.07417e-05 7.36999e-08 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| to turn the ||| 0.00671141 0.0281035 2.07417e-05 3.36892e-05 2.718 ||| 0-0 1-2 ||| 149 48212 +a los ||| to turn to the ||| 0.010101 0.0281035 2.07417e-05 2.99356e-06 2.718 ||| 0-2 1-3 ||| 99 48212 +a los ||| to understand what is really going ||| 0.5 0.00409398 2.07417e-05 4.98738e-16 2.718 ||| 0-0 ||| 2 48212 +a los ||| to understand what is really ||| 0.5 0.00409398 2.07417e-05 5.82774e-13 2.718 ||| 0-0 ||| 2 48212 +a los ||| to understand what is ||| 0.0625 0.00409398 2.07417e-05 1.20308e-09 2.718 ||| 0-0 ||| 16 48212 +a los ||| to understand what ||| 0.0126582 0.00409398 2.07417e-05 3.83868e-08 2.718 ||| 0-0 ||| 79 48212 +a los ||| to understand ||| 0.000506329 0.00409398 2.07417e-05 2.73586e-05 2.718 ||| 0-0 ||| 1975 48212 +a los ||| to urge the ||| 0.00458716 0.0351971 2.07417e-05 0.00036702 2.718 ||| 0-0 0-1 1-2 ||| 218 48212 +a los ||| to us ' ||| 0.25 0.0102146 2.07417e-05 5.37047e-06 2.718 ||| 0-0 1-2 ||| 4 48212 +a los ||| to us , given ||| 1 0.000228754 2.07417e-05 2.20188e-09 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to us , ||| 0.00223714 0.000228754 2.07417e-05 3.20833e-06 2.718 ||| 0-0 1-1 ||| 447 48212 +a los ||| to us Europeans ||| 0.0769231 0.0815507 2.07417e-05 2.75642e-06 2.718 ||| 0-0 1-2 ||| 13 48212 +a los ||| to us ||| 0.000405597 0.000228754 4.14834e-05 2.69032e-05 2.718 ||| 0-0 1-1 ||| 4931 48212 +a los ||| to use the ||| 0.00194175 0.0281035 4.14834e-05 7.30584e-05 2.718 ||| 0-0 1-2 ||| 1030 48212 +a los ||| to value the ||| 0.142857 0.0281035 2.07417e-05 1.31932e-05 2.718 ||| 0-0 1-2 ||| 7 48212 +a los ||| to various ||| 0.00806452 0.00262548 4.14834e-05 5.51725e-05 2.718 ||| 0-0 1-1 ||| 248 48212 +a los ||| to vessels ||| 0.0227273 0.0601975 2.07417e-05 0.000278245 2.718 ||| 0-0 1-1 ||| 44 48212 +a los ||| to veterinary ||| 0.2 0.00271279 2.07417e-05 2.38205e-06 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| to view all ||| 0.333333 0.00408899 2.07417e-05 8.50652e-07 2.718 ||| 0-0 1-2 ||| 3 48212 +a los ||| to view those ||| 1 0.0654285 2.07417e-05 5.28358e-06 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| to vouched-for ||| 1 0.229811 2.07417e-05 3.50302e-07 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| to watch these events by granting ||| 1 0.00552379 2.07417e-05 1.50176e-19 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| to watch these events by ||| 1 0.00552379 2.07417e-05 5.86626e-15 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| to watch these events ||| 0.5 0.00552379 2.07417e-05 1.11736e-12 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| to watch these ||| 0.25 0.00552379 2.07417e-05 1.53695e-08 2.718 ||| 0-0 1-2 ||| 4 48212 +a los ||| to what are ||| 0.0740741 0.00140665 4.14834e-05 5.09551e-06 2.718 ||| 0-0 1-1 ||| 27 48212 +a los ||| to what has been described as the ||| 1 0.0281035 2.07417e-05 1.64932e-15 2.718 ||| 0-0 1-6 ||| 1 48212 +a los ||| to what has ||| 0.0113636 0.00140665 2.07417e-05 1.72871e-06 2.718 ||| 0-0 1-1 ||| 88 48212 +a los ||| to what is ||| 0.0031348 0.00140665 2.07417e-05 1.05254e-05 2.718 ||| 0-0 1-1 ||| 319 48212 +a los ||| to what it was ||| 0.0909091 0.00140665 2.07417e-05 1.87109e-08 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| to what it ||| 0.0277778 0.00140665 2.07417e-05 5.97221e-06 2.718 ||| 0-0 1-1 ||| 36 48212 +a los ||| to what its ||| 0.5 0.0031321 2.07417e-05 7.17039e-07 2.718 ||| 0-0 1-1 1-2 ||| 2 48212 +a los ||| to what the ||| 0.0119048 0.0281035 4.14834e-05 0.000210836 2.718 ||| 0-0 1-2 ||| 168 48212 +a los ||| to what they are ||| 0.166667 0.00153529 2.07417e-05 4.17119e-09 2.718 ||| 0-0 1-1 1-2 ||| 6 48212 +a los ||| to what they ||| 0.0322581 0.00153529 2.07417e-05 2.74914e-07 2.718 ||| 0-0 1-1 1-2 ||| 31 48212 +a los ||| to what was ||| 0.02 0.00140665 4.14834e-05 1.05217e-06 2.718 ||| 0-0 1-1 ||| 100 48212 +a los ||| to what ||| 0.00482133 0.00140665 0.000352609 0.000335834 2.718 ||| 0-0 1-1 ||| 3526 48212 +a los ||| to where ||| 0.0047619 0.0103277 2.07417e-05 0.000773116 2.718 ||| 0-0 1-1 ||| 210 48212 +a los ||| to which the ||| 0.0011976 0.0281035 2.07417e-05 0.00127643 2.718 ||| 0-0 1-2 ||| 835 48212 +a los ||| to which ||| 0.00016129 0.00409398 2.07417e-05 0.00297567 2.718 ||| 0-0 ||| 6200 48212 +a los ||| to whom ||| 0.00345423 0.0353089 4.14834e-05 0.000316743 2.718 ||| 0-0 1-1 ||| 579 48212 +a los ||| to withdraw the ||| 0.00746269 0.0281035 2.07417e-05 1.41248e-06 2.718 ||| 0-0 1-2 ||| 134 48212 +a los ||| to wood ||| 0.25 0.00370068 2.07417e-05 3.39793e-06 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| to workers ||| 0.00361011 0.0837665 2.07417e-05 0.00255846 2.718 ||| 0-0 1-1 ||| 277 48212 +a los ||| to working ||| 0.003367 0.00409398 2.07417e-05 6.66974e-05 2.718 ||| 0-0 ||| 297 48212 +a los ||| to you , the ||| 0.0454545 0.0281035 2.07417e-05 5.78573e-05 2.718 ||| 0-0 1-3 ||| 22 48212 +a los ||| to you the ||| 0.027027 0.0281035 2.07417e-05 0.000485158 2.718 ||| 0-0 1-2 ||| 37 48212 +a los ||| to young people from ||| 0.111111 0.0205606 2.07417e-05 2.82997e-10 2.718 ||| 0-0 1-2 ||| 9 48212 +a los ||| to young people ||| 0.00458716 0.0205606 2.07417e-05 1.75731e-07 2.718 ||| 0-0 1-2 ||| 218 48212 +a los ||| to your successor ||| 0.0909091 0.00221403 2.07417e-05 4.31852e-10 2.718 ||| 0-0 1-1 ||| 11 48212 +a los ||| to your ||| 0.00852459 0.00221403 0.000269642 0.000107963 2.718 ||| 0-0 1-1 ||| 1525 48212 +a los ||| to ||| 0.00200113 0.00409398 0.0464822 0.350302 2.718 ||| 0-0 ||| 1.11987e+06 48212 +a los ||| today 's ||| 0.00118906 3.14483e-06 2.07417e-05 2.26706e-08 2.718 ||| 0-0 1-1 ||| 841 48212 +a los ||| together the ||| 0.00787402 0.00612862 2.07417e-05 0.000257631 2.718 ||| 1-1 ||| 127 48212 +a los ||| together with the ||| 0.000911577 0.00698995 4.14834e-05 4.30118e-06 2.718 ||| 0-1 1-2 ||| 2194 48212 +a los ||| together ||| 0.000152207 0.000285593 4.14834e-05 0.0002711 2.718 ||| 0-0 ||| 13140 48212 +a los ||| too would like to ||| 0.00374532 0.00409398 2.07417e-05 4.9689e-09 2.718 ||| 0-3 ||| 267 48212 +a los ||| touch on the ||| 0.0181818 0.00957523 2.07417e-05 3.58e-07 2.718 ||| 0-1 1-2 ||| 55 48212 +a los ||| toward the ||| 0.027027 0.0195185 2.07417e-05 1.91743e-05 2.718 ||| 0-0 1-1 ||| 37 48212 +a los ||| towards , the ||| 0.333333 0.0190168 2.07417e-05 0.000172526 2.718 ||| 0-0 1-2 ||| 3 48212 +a los ||| towards , ||| 0.047619 0.00277028 2.07417e-05 0.000402198 2.718 ||| 0-0 ||| 21 48212 +a los ||| towards EU membership ||| 0.030303 0.000671634 2.07417e-05 4.46691e-11 2.718 ||| 0-0 1-1 ||| 33 48212 +a los ||| towards EU ||| 0.125 0.000671634 2.07417e-05 1.82323e-06 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| towards its ||| 0.0173913 0.00328696 4.14834e-05 7.20084e-06 2.718 ||| 0-0 1-1 ||| 115 48212 +a los ||| towards meeting the ||| 0.0263158 0.0190168 2.07417e-05 1.81705e-07 2.718 ||| 0-0 1-2 ||| 38 48212 +a los ||| towards meeting ||| 0.0114943 5.3992e-05 2.07417e-05 1.31531e-08 2.718 ||| 0-0 1-1 ||| 87 48212 +a los ||| towards the end ||| 0.00632911 0.0190168 2.07417e-05 6.29458e-07 2.718 ||| 0-0 1-1 ||| 158 48212 +a los ||| towards the ||| 0.0131541 0.0190168 0.000954119 0.0014467 2.718 ||| 0-0 1-1 ||| 3497 48212 +a los ||| towards those ||| 0.0333333 0.0442737 6.22252e-05 5.63143e-05 2.718 ||| 0-0 1-1 ||| 90 48212 +a los ||| towards which the ||| 0.142857 0.0190168 2.07417e-05 1.22891e-05 2.718 ||| 0-0 1-2 ||| 7 48212 +a los ||| towards ||| 0.000369959 0.00277028 0.000145192 0.0033726 2.718 ||| 0-0 ||| 18921 48212 +a los ||| trade ||| 4.66331e-05 0.00153957 2.07417e-05 0.0007506 2.718 ||| 1-0 ||| 21444 48212 +a los ||| traffic participants about the ||| 1 0.00643683 2.07417e-05 4.84985e-13 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| transactions carry the ||| 0.333333 0.00612862 2.07417e-05 8.50106e-10 2.718 ||| 1-2 ||| 3 48212 +a los ||| transported ||| 0.00187617 0.000441422 2.07417e-05 1.28e-05 2.718 ||| 0-0 ||| 533 48212 +a los ||| travellers ||| 0.00225734 0.0186788 2.07417e-05 0.0002178 2.718 ||| 1-0 ||| 443 48212 +a los ||| treat the ||| 0.0078125 0.0331597 2.07417e-05 0.000190671 2.718 ||| 0-0 1-1 ||| 128 48212 +a los ||| treat ||| 0.00107411 0.00483055 2.07417e-05 0.0004445 2.718 ||| 0-0 ||| 931 48212 +a los ||| treating the ||| 0.025641 0.02121 4.14834e-05 5.01021e-05 2.718 ||| 0-0 1-1 ||| 78 48212 +a los ||| treatment of the ||| 0.00840336 0.00230489 2.07417e-05 7.67617e-07 2.718 ||| 0-1 1-2 ||| 119 48212 +a los ||| tribute to the ||| 0.00238095 0.0281035 2.07417e-05 2.91512e-06 2.718 ||| 0-1 1-2 ||| 420 48212 +a los ||| tried in the ||| 0.0714286 0.00718601 2.07417e-05 1.02833e-06 2.718 ||| 0-1 1-2 ||| 14 48212 +a los ||| true of those ||| 0.142857 0.0053661 2.07417e-05 7.98126e-08 2.718 ||| 0-1 1-2 ||| 7 48212 +a los ||| trying to control the ||| 0.111111 0.0281035 2.07417e-05 1.32771e-09 2.718 ||| 0-1 1-3 ||| 9 48212 +a los ||| trying to ||| 0.00026617 0.00409398 2.07417e-05 4.03547e-05 2.718 ||| 0-1 ||| 3757 48212 +a los ||| tune with the ||| 0.030303 0.00698995 2.07417e-05 2.14128e-07 2.718 ||| 0-1 1-2 ||| 33 48212 +a los ||| turn our minds away from those ||| 1 0.0124013 2.07417e-05 5.66421e-19 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| turn to my ||| 0.0833333 0.00198578 2.07417e-05 5.4136e-08 2.718 ||| 0-1 1-2 ||| 12 48212 +a los ||| turn to the ||| 0.00369004 0.0281035 2.07417e-05 3.36892e-05 2.718 ||| 0-1 1-2 ||| 271 48212 +a los ||| types ||| 0.000448229 0.00219307 2.07417e-05 0.000105 2.718 ||| 1-0 ||| 2231 48212 +a los ||| under all ||| 0.0133333 0.000683984 2.07417e-05 3.81308e-06 2.718 ||| 0-0 1-1 ||| 75 48212 +a los ||| under the Stability ||| 0.0357143 0.00470099 2.07417e-05 3.28553e-09 2.718 ||| 0-0 1-1 ||| 28 48212 +a los ||| under the ||| 0.000460229 0.00470099 0.00012445 0.000608432 2.718 ||| 0-0 1-1 ||| 13037 48212 +a los ||| under ||| 2.93936e-05 0.000684818 2.07417e-05 0.0014184 2.718 ||| 0-0 ||| 34021 48212 +a los ||| undermines the ||| 0.00444444 0.00612862 2.07417e-05 1.24397e-06 2.718 ||| 1-1 ||| 225 48212 +a los ||| unfairly in the ||| 1 0.00718601 2.07417e-05 8.24729e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| union , but economic and social ||| 1 1.50506e-06 2.07417e-05 3.63518e-20 2.718 ||| 0-2 1-5 ||| 1 48212 +a los ||| unions ||| 0.0014245 0.00281087 2.07417e-05 7.97e-05 2.718 ||| 1-0 ||| 702 48212 +a los ||| united messages - ||| 0.5 0.00317123 2.07417e-05 4.18292e-12 2.718 ||| 1-1 ||| 2 48212 +a los ||| united messages ||| 0.5 0.00317123 2.07417e-05 1.10891e-09 2.718 ||| 1-1 ||| 2 48212 +a los ||| unless ||| 0.000287026 0.0039118 2.07417e-05 0.0012751 2.718 ||| 0-0 ||| 3484 48212 +a los ||| unsuccessful ||| 0.00531915 0.000465471 2.07417e-05 2.9e-06 2.718 ||| 1-0 ||| 188 48212 +a los ||| until the cows ||| 0.333333 0.00328847 2.07417e-05 3.14476e-10 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| until the ||| 0.0015186 0.00328847 4.14834e-05 9.82739e-05 2.718 ||| 0-0 1-1 ||| 1317 48212 +a los ||| until those ||| 0.166667 0.00765598 2.07417e-05 3.82542e-06 2.718 ||| 0-0 1-1 ||| 6 48212 +a los ||| unused funding that was ||| 0.25 0.00155805 2.07417e-05 3.17319e-14 2.718 ||| 1-1 ||| 4 48212 +a los ||| unused funding that ||| 0.25 0.00155805 2.07417e-05 1.01283e-11 2.718 ||| 1-1 ||| 4 48212 +a los ||| unused funding ||| 0.166667 0.00155805 2.07417e-05 6.021e-10 2.718 ||| 1-1 ||| 6 48212 +a los ||| up , ||| 0.00178571 0.00034752 2.07417e-05 0.000146397 2.718 ||| 0-0 ||| 560 48212 +a los ||| up a ||| 0.0014881 0.00034752 2.07417e-05 5.44144e-05 2.718 ||| 0-0 ||| 672 48212 +a los ||| up against the ||| 0.0555556 0.006293 4.14834e-05 3.80295e-06 2.718 ||| 0-1 1-2 ||| 36 48212 +a los ||| up all the ||| 0.0333333 0.00238558 2.07417e-05 2.48833e-06 2.718 ||| 0-0 1-2 ||| 30 48212 +a los ||| up back in the ||| 0.5 0.00718601 2.07417e-05 5.91202e-08 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| up by ||| 0.00178571 0.000106858 2.07417e-05 1.74423e-06 2.718 ||| 1-0 0-1 ||| 560 48212 +a los ||| up for the ||| 0.01 0.00835696 2.07417e-05 5.39077e-05 2.718 ||| 0-1 1-2 ||| 100 48212 +a los ||| up in little backrooms ||| 0.5 0.00104682 2.07417e-05 1.32701e-14 2.718 ||| 0-1 ||| 2 48212 +a los ||| up in little ||| 0.5 0.00104682 2.07417e-05 3.31752e-08 2.718 ||| 0-1 ||| 2 48212 +a los ||| up in the form of ||| 0.5 0.00718601 2.07417e-05 2.17517e-09 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| up in the form ||| 0.5 0.00718601 2.07417e-05 4.00112e-08 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| up in the hands ||| 0.125 0.00718601 2.07417e-05 8.86012e-09 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| up in the ||| 0.0179372 0.00718601 8.29669e-05 8.7898e-05 2.718 ||| 0-1 1-2 ||| 223 48212 +a los ||| up in ||| 0.00125156 0.00104682 2.07417e-05 0.000204911 2.718 ||| 0-1 ||| 799 48212 +a los ||| up negotiations with ||| 0.5 0.00101826 2.07417e-05 3.1544e-09 2.718 ||| 0-2 ||| 2 48212 +a los ||| up on the ||| 0.00840336 0.00957523 2.07417e-05 5.54981e-05 2.718 ||| 0-1 1-2 ||| 119 48212 +a los ||| up the ||| 0.00937275 0.00238558 0.000269642 0.000526587 2.718 ||| 0-0 1-1 ||| 1387 48212 +a los ||| up these ||| 0.0196078 0.000468891 2.07417e-05 2.99227e-06 2.718 ||| 0-0 1-1 ||| 51 48212 +a los ||| up those ||| 0.1 0.00555395 4.14834e-05 2.0498e-05 2.718 ||| 0-0 1-1 ||| 20 48212 +a los ||| up to the ||| 0.0207254 0.0281035 0.000580768 0.000512476 2.718 ||| 0-1 1-2 ||| 1351 48212 +a los ||| up to ||| 0.000541126 0.00409398 6.22252e-05 0.0011947 2.718 ||| 0-1 ||| 5544 48212 +a los ||| up with any ||| 0.166667 0.00101811 2.07417e-05 5.25885e-08 2.718 ||| 0-1 1-2 ||| 6 48212 +a los ||| up with the ||| 0.0550847 0.00698995 0.000269642 2.44242e-05 2.718 ||| 0-1 1-2 ||| 236 48212 +a los ||| up with those ||| 0.111111 0.0162735 2.07417e-05 9.50739e-07 2.718 ||| 0-1 1-2 ||| 9 48212 +a los ||| up with ||| 0.00100604 0.000180726 2.07417e-05 3.53936e-06 2.718 ||| 1-0 0-1 ||| 994 48212 +a los ||| up ||| 0.000288545 0.00034752 6.22252e-05 0.0012276 2.718 ||| 0-0 ||| 10397 48212 +a los ||| upholds the ||| 0.0188679 0.00612862 2.07417e-05 1.71583e-07 2.718 ||| 1-1 ||| 53 48212 +a los ||| upon employing ||| 0.5 0.00339473 2.07417e-05 6.3088e-09 2.718 ||| 0-0 ||| 2 48212 +a los ||| upon food ||| 1 0.0235409 2.07417e-05 4.34538e-06 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| upon our ||| 0.0196078 0.00473292 2.07417e-05 7.04042e-06 2.718 ||| 0-0 1-1 ||| 51 48212 +a los ||| upon people ||| 0.142857 0.0170489 2.07417e-05 1.55262e-05 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| upon such ||| 0.5 0.000316692 2.07417e-05 2.16668e-07 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| upon the principles of ||| 0.111111 0.0233035 2.07417e-05 1.85279e-09 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| upon the principles ||| 0.1 0.0233035 2.07417e-05 3.40812e-08 2.718 ||| 0-0 1-1 ||| 10 48212 +a los ||| upon the ||| 0.0600815 0.0233035 0.00122376 0.000845687 2.718 ||| 0-0 1-1 ||| 982 48212 +a los ||| upon them ||| 0.0144928 0.00728283 2.07417e-05 3.96784e-06 2.718 ||| 0-0 1-1 ||| 69 48212 +a los ||| upon those ||| 0.125 0.0542535 4.14834e-05 3.29193e-05 2.718 ||| 0-0 1-1 ||| 16 48212 +a los ||| upon ||| 0.000767853 0.00339473 6.22252e-05 0.0019715 2.718 ||| 0-0 ||| 3907 48212 +a los ||| urge the ||| 0.00438596 0.0422908 6.22252e-05 0.00104773 2.718 ||| 0-0 1-1 ||| 684 48212 +a los ||| urged the ||| 0.00613497 0.0390245 2.07417e-05 0.000164033 2.718 ||| 0-0 1-1 ||| 163 48212 +a los ||| urgent in certain ||| 0.5 0.000180236 2.07417e-05 1.17334e-10 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| us and the ||| 0.00909091 0.00087213 2.07417e-05 2.77572e-06 2.718 ||| 0-0 1-2 ||| 110 48212 +a los ||| us in the ||| 0.00217865 0.00718601 2.07417e-05 7.42823e-05 2.718 ||| 0-1 1-2 ||| 459 48212 +a los ||| us in ||| 0.000649773 0.00104682 2.07417e-05 0.00017317 2.718 ||| 0-1 ||| 1539 48212 +a los ||| us remember those ||| 1 0.00203043 2.07417e-05 3.22612e-10 2.718 ||| 0-0 1-2 ||| 1 48212 +a los ||| us ||| 2.18241e-05 0.000127048 2.07417e-05 0.0005166 2.718 ||| 0-0 ||| 45821 48212 +a los ||| use a popular expression ||| 0.5 0.000860022 2.07417e-05 1.87707e-14 2.718 ||| 1-2 ||| 2 48212 +a los ||| use a popular ||| 0.5 0.000860022 2.07417e-05 4.61196e-10 2.718 ||| 1-2 ||| 2 48212 +a los ||| use the ||| 0.000919963 0.00612862 4.14834e-05 0.000208559 2.718 ||| 1-1 ||| 2174 48212 +a los ||| use to the ||| 0.0322581 0.0281035 2.07417e-05 7.30584e-05 2.718 ||| 0-1 1-2 ||| 31 48212 +a los ||| used for each ||| 0.2 0.00339979 2.07417e-05 1.39095e-08 2.718 ||| 0-1 1-2 ||| 5 48212 +a los ||| users will ||| 0.166667 0.0209623 2.07417e-05 1.76638e-05 2.718 ||| 1-0 0-1 ||| 6 48212 +a los ||| users ||| 0.000851426 0.0187064 4.14834e-05 0.0012542 2.718 ||| 1-0 ||| 2349 48212 +a los ||| using any of ||| 0.5 0.000335717 2.07417e-05 2.12266e-09 2.718 ||| 1-1 0-2 ||| 2 48212 +a los ||| very much in the ||| 0.0185185 0.00718601 2.07417e-05 9.00081e-08 2.718 ||| 0-2 1-3 ||| 54 48212 +a los ||| very serious clashes with the ||| 1 0.00698995 2.07417e-05 6.3153e-15 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| vessels ||| 0.000770713 0.0131275 4.14834e-05 0.0007943 2.718 ||| 1-0 ||| 2595 48212 +a los ||| vested ||| 0.00510204 0.00222407 2.07417e-05 1.46e-05 2.718 ||| 1-0 ||| 196 48212 +a los ||| view of the ||| 0.00029274 0.00230489 2.07417e-05 1.1461e-05 2.718 ||| 0-1 1-2 ||| 3416 48212 +a los ||| view to securing ||| 0.0909091 0.00409398 2.07417e-05 4.11356e-09 2.718 ||| 0-1 ||| 11 48212 +a los ||| view to ||| 0.000996016 0.00409398 4.14834e-05 0.000316427 2.718 ||| 0-1 ||| 2008 48212 +a los ||| views of the ||| 0.00275482 0.00230489 2.07417e-05 1.03152e-06 2.718 ||| 0-1 1-2 ||| 363 48212 +a los ||| views of those ||| 0.0952381 0.0053661 4.14834e-05 4.01533e-08 2.718 ||| 0-1 1-2 ||| 21 48212 +a los ||| violators ||| 0.0454545 0.00835264 2.07417e-05 4.9e-06 2.718 ||| 1-0 ||| 22 48212 +a los ||| vis-à-vis the ||| 0.00414938 0.029776 2.07417e-05 8.41612e-05 2.718 ||| 0-0 1-1 ||| 241 48212 +a los ||| vis-à-vis ||| 0.00185185 0.00433762 2.07417e-05 0.0001962 2.718 ||| 0-0 ||| 540 48212 +a los ||| visit from the ||| 0.0588235 0.0053267 2.07417e-05 9.10951e-08 2.718 ||| 0-1 1-2 ||| 17 48212 +a los ||| visited the ||| 0.00574713 0.00612862 2.07417e-05 3.38875e-06 2.718 ||| 1-1 ||| 174 48212 +a los ||| visiting these ||| 0.25 0.00428776 2.07417e-05 2.31319e-07 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| visits to the ||| 0.0263158 0.0281035 2.07417e-05 7.5132e-07 2.718 ||| 0-1 1-2 ||| 38 48212 +a los ||| voice of the ||| 0.00628931 0.00230489 2.07417e-05 5.51923e-07 2.718 ||| 0-1 1-2 ||| 159 48212 +a los ||| voice to the ||| 0.027027 0.0281035 4.14834e-05 6.53649e-06 2.718 ||| 0-1 1-2 ||| 74 48212 +a los ||| voice to those of ||| 0.0666667 0.0654285 2.07417e-05 1.38324e-08 2.718 ||| 0-1 1-2 ||| 15 48212 +a los ||| voice to those ||| 0.0238095 0.0654285 2.07417e-05 2.5444e-07 2.718 ||| 0-1 1-2 ||| 42 48212 +a los ||| wage and ||| 0.0128205 0.00301096 2.07417e-05 1.09602e-06 2.718 ||| 1-0 ||| 78 48212 +a los ||| wage war on ||| 0.04 0.00470427 2.07417e-05 1.23148e-10 2.718 ||| 1-0 0-2 ||| 25 48212 +a los ||| wage ||| 0.000805153 0.00301096 2.07417e-05 8.75e-05 2.718 ||| 1-0 ||| 1242 48212 +a los ||| want to check with the ||| 1 0.00698995 2.07417e-05 9.10338e-12 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| was applied to ||| 0.125 0.00409398 2.07417e-05 1.18859e-07 2.718 ||| 0-2 ||| 8 48212 +a los ||| was available following the ||| 1 0.00881011 2.07417e-05 4.2143e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| was for the ||| 0.0144928 0.00835696 2.07417e-05 4.95214e-05 2.718 ||| 0-1 1-2 ||| 69 48212 +a los ||| was in ||| 0.000881057 0.00104682 2.07417e-05 0.000188238 2.718 ||| 0-1 ||| 1135 48212 +a los ||| was of the ||| 0.04 0.00230489 2.07417e-05 3.97511e-05 2.718 ||| 0-1 1-2 ||| 25 48212 +a los ||| was present for the ||| 0.25 0.00835696 2.07417e-05 1.81248e-08 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| was the ||| 0.000456621 0.00612862 4.14834e-05 0.00134392 2.718 ||| 1-1 ||| 4380 48212 +a los ||| waste , on ||| 0.5 0.0154004 2.07417e-05 7.67089e-06 2.718 ||| 1-0 0-2 ||| 2 48212 +a los ||| waste to ||| 0.0227273 0.0452003 4.14834e-05 0.000593971 2.718 ||| 1-0 0-1 ||| 88 48212 +a los ||| waste ||| 0.000123625 0.00985699 2.07417e-05 0.0016956 2.718 ||| 1-0 ||| 8089 48212 +a los ||| watch the ||| 0.0163934 0.00612862 2.07417e-05 7.72121e-06 2.718 ||| 1-1 ||| 61 48212 +a los ||| way into animal ||| 1 0.0186448 2.07417e-05 1.85866e-08 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| way into the ||| 0.010989 0.0131557 2.07417e-05 5.61665e-06 2.718 ||| 0-1 1-2 ||| 91 48212 +a los ||| way the ||| 0.00178253 0.00612862 2.07417e-05 0.000924658 2.718 ||| 1-1 ||| 561 48212 +a los ||| way to the ||| 0.0177515 0.0281035 6.22252e-05 0.000323909 2.718 ||| 0-1 1-2 ||| 169 48212 +a los ||| we all ||| 0.00034118 0.0008917 2.07417e-05 3.05184e-05 2.718 ||| 1-1 ||| 2931 48212 +a los ||| we also have to drive home the ||| 1 0.0281035 2.07417e-05 3.15723e-16 2.718 ||| 0-3 1-6 ||| 1 48212 +a los ||| we are calling for the ||| 0.02 0.00835696 2.07417e-05 1.79418e-10 2.718 ||| 0-3 1-4 ||| 50 48212 +a los ||| we are experiencing ||| 0.00341297 7.29937e-05 2.07417e-05 2.47157e-10 2.718 ||| 1-0 ||| 293 48212 +a los ||| we are in the process of ||| 0.0104167 0.00612862 2.07417e-05 3.67547e-11 2.718 ||| 1-3 ||| 96 48212 +a los ||| we are in the process ||| 0.00990099 0.00612862 2.07417e-05 6.76085e-10 2.718 ||| 1-3 ||| 101 48212 +a los ||| we are in the ||| 0.00299401 0.00612862 2.07417e-05 1.58148e-06 2.718 ||| 1-3 ||| 334 48212 +a los ||| we are ||| 3.99856e-05 4.05889e-07 4.14834e-05 8.20109e-08 2.718 ||| 0-0 1-1 ||| 50018 48212 +a los ||| we can beat the ||| 0.666667 0.0217775 4.14834e-05 5.15622e-10 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| we consider the ||| 0.00389105 7.29937e-05 2.07417e-05 8.50841e-09 2.718 ||| 1-0 ||| 257 48212 +a los ||| we consider ||| 0.000596303 7.29937e-05 2.07417e-05 1.38592e-07 2.718 ||| 1-0 ||| 1677 48212 +a los ||| we do of our ||| 1 0.000468123 2.07417e-05 4.11933e-09 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| we feel ||| 0.000794281 7.29937e-05 2.07417e-05 1.47303e-07 2.718 ||| 1-0 ||| 1259 48212 +a los ||| we fix the ||| 0.125 0.00612862 2.07417e-05 2.09395e-08 2.718 ||| 1-2 ||| 8 48212 +a los ||| we gave the ||| 0.0625 0.00512826 2.07417e-05 6.93437e-07 2.718 ||| 0-1 1-2 ||| 16 48212 +a los ||| we give the ||| 0.025 0.00152577 2.07417e-05 1.09409e-07 2.718 ||| 0-0 0-1 1-2 ||| 40 48212 +a los ||| we had the ||| 0.00314465 9.87974e-05 2.07417e-05 1.95295e-07 2.718 ||| 0-0 1-2 ||| 318 48212 +a los ||| we have in many ||| 1 0.000176152 2.07417e-05 1.1502e-09 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| we in the ||| 0.000588928 0.00718601 2.07417e-05 0.00029258 2.718 ||| 0-1 1-2 ||| 1698 48212 +a los ||| we in ||| 0.000319183 0.00104682 2.07417e-05 0.000682075 2.718 ||| 0-1 ||| 3133 48212 +a los ||| we look at our ||| 0.0909091 0.00507106 2.07417e-05 4.02212e-10 2.718 ||| 0-2 1-3 ||| 11 48212 +a los ||| we look forward to ||| 0.00271003 0.00409398 2.07417e-05 6.44988e-10 2.718 ||| 0-3 ||| 369 48212 +a los ||| we might refer to the ||| 0.5 0.0281035 2.07417e-05 5.11589e-11 2.718 ||| 0-3 1-4 ||| 2 48212 +a los ||| we need to ||| 8.52878e-05 0.00409398 2.07417e-05 3.64626e-06 2.718 ||| 0-2 ||| 11725 48212 +a los ||| we on ||| 0.0138889 0.00139487 2.07417e-05 0.000430656 2.718 ||| 0-1 ||| 72 48212 +a los ||| we reached ||| 0.00446429 0.00258078 2.07417e-05 1.39577e-05 2.718 ||| 0-1 ||| 224 48212 +a los ||| we saw in ||| 0.0126582 0.00104682 2.07417e-05 3.65592e-08 2.718 ||| 0-2 ||| 79 48212 +a los ||| we see the ||| 0.0035461 9.87974e-05 2.07417e-05 1.37097e-07 2.718 ||| 0-0 1-2 ||| 282 48212 +a los ||| we should be developing ||| 0.1 0.00755554 2.07417e-05 3.24573e-09 2.718 ||| 1-3 ||| 10 48212 +a los ||| we should tell the ||| 0.125 0.00035931 2.07417e-05 3.94866e-10 2.718 ||| 0-2 1-3 ||| 8 48212 +a los ||| we social ||| 0.2 2.12324e-06 2.07417e-05 1.00478e-07 2.718 ||| 0-0 1-0 1-1 ||| 5 48212 +a los ||| we turn our minds away from those ||| 1 0.0124013 2.07417e-05 6.43018e-21 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| we would like to ||| 0.00109769 0.00409398 2.07417e-05 4.14464e-08 2.718 ||| 0-3 ||| 911 48212 +a los ||| we ||| 3.74102e-05 7.29937e-05 0.00012445 0.0008711 2.718 ||| 1-0 ||| 160384 48212 +a los ||| weight in the ||| 0.0322581 0.00718601 2.07417e-05 7.88647e-07 2.718 ||| 0-1 1-2 ||| 31 48212 +a los ||| welcome to our ||| 0.0263158 0.0057078 2.07417e-05 1.37731e-07 2.718 ||| 0-1 1-2 ||| 38 48212 +a los ||| welcome to talk ||| 0.166667 0.00409398 2.07417e-05 3.09703e-09 2.718 ||| 0-1 ||| 6 48212 +a los ||| welcome to ||| 0.00248139 0.00409398 2.07417e-05 3.85682e-05 2.718 ||| 0-1 ||| 403 48212 +a los ||| well as sympathising with the ||| 1 0.00698995 2.07417e-05 4.63493e-14 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| well as the ||| 0.00191939 0.00297745 4.14834e-05 5.96658e-06 2.718 ||| 0-1 1-2 ||| 1042 48212 +a los ||| well as those ||| 0.025 0.00693189 4.14834e-05 2.32256e-07 2.718 ||| 0-1 1-2 ||| 80 48212 +a los ||| well as to ||| 0.00510204 0.00409398 2.07417e-05 5.66791e-06 2.718 ||| 0-2 ||| 196 48212 +a los ||| well than the ||| 1 0.00296272 2.07417e-05 8.54884e-07 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| well to the ||| 0.0416667 0.0281035 2.07417e-05 0.000238259 2.718 ||| 0-1 1-2 ||| 24 48212 +a los ||| were denied a say by ||| 0.5 0.00060207 2.07417e-05 9.4289e-15 2.718 ||| 0-4 ||| 2 48212 +a los ||| were going to ||| 0.00980392 0.00409398 2.07417e-05 5.3704e-07 2.718 ||| 0-2 ||| 102 48212 +a los ||| were thrown at the ||| 1 0.0249683 2.07417e-05 7.24463e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| were to obey the ||| 1 0.0281035 2.07417e-05 6.72958e-10 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| were up to ||| 0.0833333 0.00409398 2.07417e-05 2.14019e-06 2.718 ||| 0-2 ||| 12 48212 +a los ||| what the ||| 0.000257666 3.03644e-05 2.07417e-05 1.56569e-05 2.718 ||| 0-0 1-1 ||| 3881 48212 +a los ||| what they are ||| 0.00243309 0.000362858 2.07417e-05 1.7427e-08 2.718 ||| 1-1 ||| 411 48212 +a los ||| what they were up to ||| 0.5 0.00409398 2.07417e-05 9.80148e-12 2.718 ||| 0-4 ||| 2 48212 +a los ||| what they ||| 0.00112233 0.000362858 2.07417e-05 1.14858e-06 2.718 ||| 1-1 ||| 891 48212 +a los ||| what we gave the ||| 1 0.00512826 2.07417e-05 9.72961e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| what ||| 8.10016e-05 0.000306754 0.000145192 0.0009587 2.718 ||| 1-0 ||| 86418 48212 +a los ||| whatsoever with the ||| 0.125 0.00698995 2.07417e-05 3.9961e-07 2.718 ||| 0-1 1-2 ||| 8 48212 +a los ||| when a business person ||| 0.333333 0.000319529 2.07417e-05 1.08348e-12 2.718 ||| 0-0 1-2 ||| 3 48212 +a los ||| when a business ||| 0.142857 0.000319529 2.07417e-05 8.41213e-09 2.718 ||| 0-0 1-2 ||| 7 48212 +a los ||| when people discuss the past , the ||| 1 0.000678314 2.07417e-05 4.58192e-18 2.718 ||| 0-0 1-6 ||| 1 48212 +a los ||| when we ||| 0.000273598 9.88135e-05 2.07417e-05 3.52262e-06 2.718 ||| 0-0 ||| 3655 48212 +a los ||| when ||| 1.40584e-05 9.88135e-05 2.07417e-05 0.0003103 2.718 ||| 0-0 ||| 71132 48212 +a los ||| where it ||| 0.00107991 0.00225219 2.07417e-05 3.92475e-05 2.718 ||| 1-0 ||| 926 48212 +a los ||| where the ||| 0.00155189 0.000651251 0.000165934 0.000105309 2.718 ||| 0-0 1-1 ||| 5155 48212 +a los ||| where there is ||| 0.00110375 0.000126831 2.07417e-05 1.41238e-08 2.718 ||| 0-0 1-0 1-1 ||| 906 48212 +a los ||| where there ||| 0.00143266 0.000126831 2.07417e-05 4.50647e-07 2.718 ||| 0-0 1-0 1-1 ||| 698 48212 +a los ||| where ||| 7.36269e-05 0.00225219 6.22252e-05 0.002207 2.718 ||| 1-0 ||| 40746 48212 +a los ||| whether it is correct ||| 0.1 1.14957e-05 2.07417e-05 8.7912e-14 2.718 ||| 0-1 ||| 10 48212 +a los ||| whether it is ||| 0.00100301 1.14957e-05 2.07417e-05 2.442e-09 2.718 ||| 0-1 ||| 997 48212 +a los ||| whether it ||| 0.00117371 1.14957e-05 2.07417e-05 7.79168e-08 2.718 ||| 0-1 ||| 852 48212 +a los ||| which is to say the ||| 0.0526316 0.0281035 2.07417e-05 3.82366e-08 2.718 ||| 0-2 1-4 ||| 19 48212 +a los ||| which leads to a certain amount of ||| 1 0.000454728 2.07417e-05 9.80137e-19 2.718 ||| 0-2 1-6 ||| 1 48212 +a los ||| which outrages the ||| 1 0.00149133 2.07417e-05 3.27943e-09 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| which the ||| 0.000144697 0.00612862 4.14834e-05 0.00364381 2.718 ||| 1-1 ||| 13822 48212 +a los ||| which to ||| 0.00090009 0.00409398 2.07417e-05 0.00297567 2.718 ||| 0-1 ||| 1111 48212 +a los ||| which was available following the ||| 1 0.00881011 2.07417e-05 3.57988e-12 2.718 ||| 0-3 1-4 ||| 1 48212 +a los ||| which will take place ||| 0.00458716 2.30395e-05 2.07417e-05 7.57611e-12 2.718 ||| 0-2 ||| 218 48212 +a los ||| which will take ||| 0.00387597 2.30395e-05 2.07417e-05 5.03396e-09 2.718 ||| 0-2 ||| 258 48212 +a los ||| while leaving the ||| 0.166667 0.00462024 2.07417e-05 9.35567e-09 2.718 ||| 0-0 1-2 ||| 6 48212 +a los ||| while the ||| 0.000441112 0.00462024 2.07417e-05 0.000393096 2.718 ||| 0-0 1-1 ||| 2267 48212 +a los ||| whilst also ||| 0.0104167 0.000787926 2.07417e-05 1.28588e-06 2.718 ||| 0-0 ||| 96 48212 +a los ||| whilst the ||| 0.00204499 0.00540879 2.07417e-05 0.000109255 2.718 ||| 0-0 1-1 ||| 489 48212 +a los ||| whilst ||| 0.00024266 0.000787926 2.07417e-05 0.0002547 2.718 ||| 0-0 ||| 4121 48212 +a los ||| who are supposed to be responsible adults ||| 1 0.0700272 2.07417e-05 1.80706e-19 2.718 ||| 0-3 1-6 ||| 1 48212 +a los ||| who are under the ||| 0.333333 0.00470099 2.07417e-05 8.14223e-09 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| who are ||| 0.000160102 8.08969e-05 2.07417e-05 1.78431e-06 2.718 ||| 1-0 ||| 6246 48212 +a los ||| who have the ||| 0.00549451 0.00612862 2.07417e-05 4.52486e-06 2.718 ||| 1-2 ||| 182 48212 +a los ||| who live ||| 0.00159236 1.02184e-05 2.07417e-05 3.95136e-09 2.718 ||| 0-0 ||| 628 48212 +a los ||| who the ||| 0.0196078 0.00612862 2.07417e-05 0.000378339 2.718 ||| 1-1 ||| 51 48212 +a los ||| who was ||| 0.00322928 8.08969e-05 6.22252e-05 3.68441e-07 2.718 ||| 1-0 ||| 929 48212 +a los ||| who will guard the ||| 1 0.0068677 2.07417e-05 5.16857e-11 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| who ||| 8.76155e-05 8.08969e-05 0.00012445 0.0001176 2.718 ||| 1-0 ||| 68481 48212 +a los ||| whom , in the meantime ||| 1 0.00718601 2.07417e-05 5.01507e-12 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| whom , in the ||| 0.333333 0.00718601 2.07417e-05 2.04697e-07 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| whom I ||| 0.00176056 0.00769993 2.07417e-05 6.39586e-06 2.718 ||| 1-0 ||| 568 48212 +a los ||| whom they ||| 0.0147059 0.00769993 2.07417e-05 2.95131e-06 2.718 ||| 1-0 ||| 68 48212 +a los ||| whom ||| 0.000992457 0.00769993 0.000103709 0.0009042 2.718 ||| 1-0 ||| 5038 48212 +a los ||| whose practitioners ||| 0.166667 0.012233 2.07417e-05 4.75164e-09 2.718 ||| 1-1 ||| 6 48212 +a los ||| wide to the ||| 0.166667 0.0281035 2.07417e-05 6.22093e-06 2.718 ||| 0-1 1-2 ||| 6 48212 +a los ||| wild ||| 0.00242131 0.000546718 2.07417e-05 5.8e-06 2.718 ||| 1-0 ||| 413 48212 +a los ||| will affect those ||| 0.25 0.0941404 2.07417e-05 2.28238e-07 2.718 ||| 0-1 1-2 ||| 4 48212 +a los ||| will be for the ||| 0.0322581 0.00835696 2.07417e-05 2.4782e-06 2.718 ||| 0-2 1-3 ||| 31 48212 +a los ||| will be replacing the ||| 1 0.00280721 2.07417e-05 9.81906e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| will be to ||| 0.00251256 0.00409398 2.07417e-05 5.4922e-05 2.718 ||| 0-2 ||| 398 48212 +a los ||| will be up to the ||| 0.047619 0.0281035 2.07417e-05 8.03484e-08 2.718 ||| 0-3 1-4 ||| 21 48212 +a los ||| will benefit the ||| 0.0142857 0.00399027 2.07417e-05 1.02646e-06 2.718 ||| 0-1 1-2 ||| 70 48212 +a los ||| will concern the ||| 0.111111 0.0068677 2.07417e-05 8.06512e-07 2.718 ||| 0-0 1-2 ||| 9 48212 +a los ||| will continue to ||| 0.000572738 0.00409398 2.07417e-05 7.01264e-07 2.718 ||| 0-2 ||| 1746 48212 +a los ||| will deal with them ||| 0.25 0.00218451 2.07417e-05 1.23425e-10 2.718 ||| 0-2 1-3 ||| 4 48212 +a los ||| will give more power to the ||| 1 0.0281035 2.07417e-05 2.68598e-13 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| will guard the ||| 0.5 0.0068677 2.07417e-05 5.86005e-08 2.718 ||| 0-0 1-2 ||| 2 48212 +a los ||| will have the ||| 0.00171821 0.0068677 2.07417e-05 7.22526e-05 2.718 ||| 0-0 1-2 ||| 582 48212 +a los ||| will have to be met by the ||| 0.5 0.0147695 2.07417e-05 3.50058e-14 2.718 ||| 0-2 1-5 1-6 ||| 2 48212 +a los ||| will help the ||| 0.0075188 0.0317922 2.07417e-05 2.44083e-05 2.718 ||| 0-1 1-2 ||| 133 48212 +a los ||| will keep before the ||| 1 0.00248592 2.07417e-05 3.06604e-10 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| will make to the ||| 0.166667 0.0281035 2.07417e-05 2.25908e-06 2.718 ||| 0-2 1-3 ||| 6 48212 +a los ||| will migrate to the ||| 0.5 0.0281035 2.07417e-05 9.09975e-10 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| will serve to offer the ||| 0.333333 0.00409398 2.07417e-05 1.45583e-12 2.718 ||| 0-2 ||| 3 48212 +a los ||| will serve to offer ||| 0.333333 0.00409398 2.07417e-05 2.37138e-11 2.718 ||| 0-2 ||| 3 48212 +a los ||| will serve to ||| 0.0111111 0.00409398 2.07417e-05 2.07288e-07 2.718 ||| 0-2 ||| 90 48212 +a los ||| will sort out ||| 0.25 0.00100045 2.07417e-05 8.6206e-09 2.718 ||| 0-0 ||| 4 48212 +a los ||| will sort ||| 0.166667 0.00100045 2.07417e-05 2.25058e-06 2.718 ||| 0-0 ||| 6 48212 +a los ||| will take place ||| 0.00019984 2.30395e-05 2.07417e-05 8.91874e-10 2.718 ||| 0-1 ||| 5004 48212 +a los ||| will take ||| 0.000159439 2.30395e-05 2.07417e-05 5.92607e-07 2.718 ||| 0-1 ||| 6272 48212 +a los ||| will the ||| 0.00174216 0.0068677 4.14834e-05 0.00604129 2.718 ||| 0-0 1-1 ||| 1148 48212 +a los ||| will ||| 0.000130702 0.00100045 0.000165934 0.0140837 2.718 ||| 0-0 ||| 61208 48212 +a los ||| window for the simple ||| 1 0.00835696 2.07417e-05 7.64777e-12 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| window for the ||| 0.5 0.00835696 2.07417e-05 1.77032e-07 2.718 ||| 0-1 1-2 ||| 2 48212 +a los ||| winners ||| 0.00328947 0.00327634 2.07417e-05 2.63e-05 2.718 ||| 1-0 ||| 304 48212 +a los ||| wish to thank the rapporteur for this ||| 1 0.0281035 2.07417e-05 1.68217e-17 2.718 ||| 0-1 1-3 ||| 1 48212 +a los ||| wish to thank the rapporteur for ||| 0.111111 0.0281035 2.07417e-05 2.60341e-15 2.718 ||| 0-1 1-3 ||| 9 48212 +a los ||| wish to thank the rapporteur ||| 0.027027 0.0281035 2.07417e-05 3.38734e-13 2.718 ||| 0-1 1-3 ||| 37 48212 +a los ||| wish to thank the ||| 0.026087 0.0281035 6.22252e-05 4.68512e-09 2.718 ||| 0-1 1-3 ||| 115 48212 +a los ||| wish to ||| 0.000233318 0.00409398 2.07417e-05 0.000103234 2.718 ||| 0-1 ||| 4286 48212 +a los ||| wishes to the ||| 0.04 0.0281035 2.07417e-05 7.94897e-06 2.718 ||| 0-1 1-2 ||| 25 48212 +a los ||| with , the ||| 0.0222222 0.00698995 2.07417e-05 0.000854039 2.718 ||| 0-0 1-2 ||| 45 48212 +a los ||| with Africa , ||| 0.0322581 0.00101826 2.07417e-05 6.80911e-08 2.718 ||| 0-0 ||| 31 48212 +a los ||| with Africa ||| 0.00649351 0.00101826 2.07417e-05 5.70972e-07 2.718 ||| 0-0 ||| 154 48212 +a los ||| with a referral of those ||| 1 0.0162735 2.07417e-05 2.14962e-12 2.718 ||| 0-0 1-4 ||| 1 48212 +a los ||| with a ||| 6.07497e-05 0.00101826 2.07417e-05 0.000740024 2.718 ||| 0-0 ||| 16461 48212 +a los ||| with all other ||| 0.025 0.00101702 2.07417e-05 5.81439e-08 2.718 ||| 0-0 1-1 ||| 40 48212 +a los ||| with all those ||| 0.00598802 0.00864528 2.07417e-05 7.49412e-07 2.718 ||| 0-0 1-1 1-2 ||| 167 48212 +a los ||| with all ||| 0.00145858 0.00101702 0.000103709 4.48814e-05 2.718 ||| 0-0 1-1 ||| 3428 48212 +a los ||| with an ||| 0.000739645 0.00101826 4.14834e-05 7.42047e-05 2.718 ||| 0-0 ||| 2704 48212 +a los ||| with animal ||| 0.25 0.00990651 2.07417e-05 2.36987e-05 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| with any ||| 0.00213675 0.00101811 2.07417e-05 1.54196e-05 2.718 ||| 0-0 1-1 ||| 468 48212 +a los ||| with both ||| 0.0025641 0.00201528 2.07417e-05 1.99974e-05 2.718 ||| 0-0 1-1 ||| 390 48212 +a los ||| with by the ||| 0.0166667 0.00556146 2.07417e-05 5.8921e-05 2.718 ||| 0-0 0-1 1-2 ||| 60 48212 +a los ||| with capital at their ||| 1 0.00483308 2.07417e-05 1.28954e-11 2.718 ||| 0-2 1-3 ||| 1 48212 +a los ||| with considerable bias , to the ||| 1 0.0281035 2.07417e-05 1.28911e-14 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| with cross-border ||| 0.0666667 0.000758794 2.07417e-05 1.18535e-06 2.718 ||| 0-0 1-1 ||| 15 48212 +a los ||| with direct ||| 0.125 0.000100795 2.07417e-05 1.78638e-07 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| with driving ||| 0.142857 0.00378908 2.07417e-05 2.85653e-06 2.718 ||| 0-0 1-1 ||| 7 48212 +a los ||| with each other ||| 0.0060241 0.00284366 4.14834e-05 1.90309e-08 2.718 ||| 0-0 1-1 ||| 332 48212 +a los ||| with each ||| 0.00379507 0.00284366 4.14834e-05 1.469e-05 2.718 ||| 0-0 1-1 ||| 527 48212 +a los ||| with electronic ||| 0.333333 0.000717394 2.07417e-05 5.52608e-07 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| with grants ||| 0.166667 0.000874614 2.07417e-05 3.32514e-07 2.718 ||| 0-1 ||| 6 48212 +a los ||| with high-intensity ||| 0.5 0.0168115 2.07417e-05 1.61942e-07 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| with his ||| 0.00134228 0.000336199 2.07417e-05 2.88992e-06 2.718 ||| 0-0 1-1 ||| 745 48212 +a los ||| with individual ||| 0.0238095 0.00630755 2.07417e-05 2.14582e-05 2.718 ||| 0-0 1-1 ||| 42 48212 +a los ||| with its ||| 0.00276413 0.00120818 0.000186676 3.56457e-05 2.718 ||| 0-0 1-1 ||| 3256 48212 +a los ||| with more ||| 0.00147059 0.00101826 2.07417e-05 3.81266e-05 2.718 ||| 0-0 ||| 680 48212 +a los ||| with our ||| 0.00122549 0.00141966 8.29669e-05 5.96199e-05 2.718 ||| 0-0 1-1 ||| 3264 48212 +a los ||| with passenger ||| 0.25 0.012492 2.07417e-05 1.58754e-05 2.718 ||| 0-0 1-1 ||| 4 48212 +a los ||| with people ||| 0.00411523 0.00511387 2.07417e-05 0.000131479 2.718 ||| 0-0 1-1 ||| 243 48212 +a los ||| with priority to all the ||| 1 0.0160962 2.07417e-05 1.44136e-10 2.718 ||| 0-2 1-3 1-4 ||| 1 48212 +a los ||| with regard to participation in the ||| 1 0.00718601 2.07417e-05 2.40307e-13 2.718 ||| 0-4 1-5 ||| 1 48212 +a los ||| with regard to the ||| 0.000488202 0.0281035 6.22252e-05 6.54252e-07 2.718 ||| 0-2 1-3 ||| 6145 48212 +a los ||| with regard to ||| 0.000503416 0.000499874 0.000145192 5.17576e-07 2.718 ||| 0-0 1-1 0-2 ||| 13905 48212 +a los ||| with regard ||| 7.11187e-05 0.000199131 2.07417e-05 1.47752e-06 2.718 ||| 0-0 1-1 ||| 14061 48212 +a los ||| with respect to ||| 0.00117233 0.000658081 2.07417e-05 6.19922e-07 2.718 ||| 0-0 1-1 0-2 ||| 853 48212 +a los ||| with special needs ||| 0.0222222 0.00101826 2.07417e-05 2.83391e-10 2.718 ||| 0-0 ||| 45 48212 +a los ||| with special ||| 0.00970874 0.00101826 2.07417e-05 1.4291e-06 2.718 ||| 0-0 ||| 103 48212 +a los ||| with that of the ||| 0.0103093 0.00698995 2.07417e-05 6.54909e-06 2.718 ||| 0-0 1-3 ||| 97 48212 +a los ||| with that of ||| 0.00584795 0.000113101 2.07417e-05 9.28901e-07 2.718 ||| 0-0 1-2 ||| 171 48212 +a los ||| with that which is ||| 0.333333 0.00101826 2.07417e-05 7.47676e-08 2.718 ||| 0-0 ||| 3 48212 +a los ||| with that which ||| 0.0909091 0.00101826 2.07417e-05 2.38561e-06 2.718 ||| 0-0 ||| 11 48212 +a los ||| with that ||| 0.000544959 0.00101826 2.07417e-05 0.000280838 2.718 ||| 0-0 ||| 1835 48212 +a los ||| with the EU ' ||| 0.333333 0.00698995 2.07417e-05 1.21715e-08 2.718 ||| 0-0 1-1 ||| 3 48212 +a los ||| with the EU ||| 0.00157233 0.00698995 2.07417e-05 3.54349e-06 2.718 ||| 0-0 1-1 ||| 636 48212 +a los ||| with the accession ||| 0.0119048 0.00698995 2.07417e-05 2.62826e-07 2.718 ||| 0-0 1-1 ||| 84 48212 +a los ||| with the actual ||| 0.04 0.00698995 2.07417e-05 1.03626e-06 2.718 ||| 0-0 1-1 ||| 25 48212 +a los ||| with the competent ||| 0.5 0.00698995 2.07417e-05 9.30991e-08 2.718 ||| 0-0 1-1 ||| 2 48212 +a los ||| with the countries of ||| 0.00316456 0.00698995 2.07417e-05 1.47827e-07 2.718 ||| 0-0 1-1 ||| 316 48212 +a los ||| with the countries ||| 0.00162866 0.00698995 2.07417e-05 2.71921e-06 2.718 ||| 0-0 1-1 ||| 614 48212 +a los ||| with the fact that the ||| 0.015873 0.000104203 2.07417e-05 3.36763e-10 2.718 ||| 0-3 1-4 ||| 63 48212 +a los ||| with the goal ||| 0.0175439 0.00698995 2.07417e-05 2.39909e-07 2.718 ||| 0-0 1-1 ||| 57 48212 +a los ||| with the help ||| 0.00194553 0.00698995 2.07417e-05 1.36569e-06 2.718 ||| 0-0 1-1 ||| 514 48212 +a los ||| with the imposition of ||| 0.125 0.00698995 2.07417e-05 3.3482e-09 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| with the imposition ||| 0.125 0.00698995 2.07417e-05 6.15886e-08 2.718 ||| 0-0 1-1 ||| 8 48212 +a los ||| with the individual ||| 0.03125 0.00664875 2.07417e-05 9.20464e-06 2.718 ||| 0-0 1-1 1-2 ||| 32 48212 +a los ||| with the internal ||| 0.0833333 0.00698995 2.07417e-05 3.32292e-07 2.718 ||| 0-0 1-1 ||| 12 48212 +a los ||| with the legislation in Europe on the ||| 1 0.00698995 2.07417e-05 2.55844e-15 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| with the legislation in Europe on ||| 1 0.00698995 2.07417e-05 4.16739e-14 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| with the legislation in Europe ||| 1 0.00698995 2.07417e-05 6.22835e-12 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| with the legislation in ||| 0.2 0.00698995 2.07417e-05 1.2309e-08 2.718 ||| 0-0 1-1 ||| 5 48212 +a los ||| with the legislation ||| 0.0125 0.00698995 2.07417e-05 5.75066e-07 2.718 ||| 0-0 1-1 ||| 80 48212 +a los ||| with the level of ||| 0.037037 0.00698995 2.07417e-05 3.3303e-07 2.718 ||| 0-0 1-1 ||| 27 48212 +a los ||| with the level ||| 0.0344828 0.00698995 2.07417e-05 6.12592e-06 2.718 ||| 0-0 1-1 ||| 29 48212 +a los ||| with the many ||| 0.0192308 0.00698995 2.07417e-05 2.45853e-06 2.718 ||| 0-0 1-1 ||| 52 48212 +a los ||| with the old ||| 0.02 0.00698995 2.07417e-05 5.51433e-07 2.718 ||| 0-0 1-1 ||| 50 48212 +a los ||| with the opportunity to ||| 0.0263158 0.00698995 2.07417e-05 1.1448e-07 2.718 ||| 0-0 1-1 ||| 38 48212 +a los ||| with the opportunity ||| 0.0188679 0.00698995 2.07417e-05 1.28835e-06 2.718 ||| 0-0 1-1 ||| 53 48212 +a los ||| with the other ||| 0.00121359 0.00698995 2.07417e-05 9.27768e-06 2.718 ||| 0-0 1-1 ||| 824 48212 +a los ||| with the people of ||| 0.00662252 0.00605191 2.07417e-05 3.06606e-06 2.718 ||| 0-0 1-1 1-2 ||| 151 48212 +a los ||| with the people ||| 0.00261097 0.00605191 2.07417e-05 5.63987e-05 2.718 ||| 0-0 1-1 1-2 ||| 383 48212 +a los ||| with the rights ||| 0.02 0.00698995 2.07417e-05 1.43301e-06 2.718 ||| 0-0 1-1 ||| 50 48212 +a los ||| with the usual ||| 0.111111 0.00698995 2.07417e-05 1.23893e-07 2.718 ||| 0-0 1-1 ||| 9 48212 +a los ||| with the ||| 0.00990583 0.00698995 0.0168215 0.00716147 2.718 ||| 0-0 1-1 ||| 81871 48212 +a los ||| with their ||| 0.00387409 0.00135303 0.000165934 3.81934e-05 2.718 ||| 0-0 1-1 ||| 2065 48212 +a los ||| with them ||| 0.00206044 0.00218451 6.22252e-05 3.36006e-05 2.718 ||| 0-0 1-1 ||| 1456 48212 +a los ||| with these ||| 0.00243457 0.00137389 8.29669e-05 4.06943e-05 2.718 ||| 0-0 1-1 ||| 1643 48212 +a los ||| with this in ||| 0.00248756 0.00101826 2.07417e-05 2.30898e-06 2.718 ||| 0-0 ||| 402 48212 +a los ||| with this ||| 0.000151035 0.00101826 2.07417e-05 0.000107874 2.718 ||| 0-0 ||| 6621 48212 +a los ||| with those held ||| 1 0.0162735 2.07417e-05 7.11137e-08 2.718 ||| 0-0 1-1 ||| 1 48212 +a los ||| with those of ||| 0.0042735 0.0162735 2.07417e-05 1.51549e-05 2.718 ||| 0-0 1-1 ||| 234 48212 +a los ||| with those people ||| 0.0625 0.0106937 2.07417e-05 2.19538e-06 2.718 ||| 0-0 1-1 1-2 ||| 16 48212 +a los ||| with those ||| 0.0371795 0.0162735 0.00120302 0.000278768 2.718 ||| 0-0 1-1 ||| 1560 48212 +a los ||| with trade ||| 0.027027 0.00175595 2.07417e-05 1.25313e-05 2.718 ||| 0-0 1-1 ||| 37 48212 +a los ||| with traditionally ||| 0.333333 0.00101826 2.07417e-05 6.67804e-08 2.718 ||| 0-0 ||| 3 48212 +a los ||| with us , the ||| 0.0714286 0.00698995 2.07417e-05 2.46151e-06 2.718 ||| 0-0 1-3 ||| 14 48212 +a los ||| with us ||| 0.000548546 0.000572655 2.07417e-05 8.62469e-06 2.718 ||| 0-0 0-1 ||| 1823 48212 +a los ||| with what ||| 0.000622278 0.000349866 2.07417e-05 1.60056e-05 2.718 ||| 0-0 1-1 ||| 1607 48212 +a los ||| with you , on behalf of the ||| 0.5 0.00957523 2.07417e-05 6.9373e-13 2.718 ||| 0-3 1-6 ||| 2 48212 +a los ||| with ||| 0.000469674 0.00101826 0.00269642 0.0166951 2.718 ||| 0-0 ||| 276788 48212 +a los ||| within about ||| 0.142857 0.000578844 2.07417e-05 2.50655e-06 2.718 ||| 0-0 0-1 ||| 7 48212 +a los ||| within all the ||| 0.0434783 0.000864978 2.07417e-05 5.73583e-07 2.718 ||| 0-0 1-1 1-2 ||| 23 48212 +a los ||| within our ||| 0.00147275 0.000306726 2.07417e-05 1.77627e-06 2.718 ||| 0-0 1-1 ||| 679 48212 +a los ||| within the framework of ||| 0.000394789 0.00151022 2.07417e-05 1.38147e-09 2.718 ||| 0-0 1-1 ||| 2533 48212 +a los ||| within the framework ||| 0.000311236 0.00151022 2.07417e-05 2.54115e-08 2.718 ||| 0-0 1-1 ||| 3213 48212 +a los ||| within the meaning ||| 0.0113636 0.00151022 2.07417e-05 6.5289e-09 2.718 ||| 0-0 1-1 ||| 88 48212 +a los ||| within the ||| 0.00062383 0.00151022 0.000290384 0.000213363 2.718 ||| 0-0 1-1 ||| 22442 48212 +a los ||| within ||| 0.00019207 0.000220002 0.000145192 0.0004974 2.718 ||| 0-0 ||| 36445 48212 +a los ||| without fail for the ||| 0.5 0.00835696 2.07417e-05 1.88634e-10 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| won from the ||| 0.333333 0.0053267 2.07417e-05 6.88617e-08 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| wording of the ||| 0.00561798 0.00230489 2.07417e-05 1.7763e-07 2.718 ||| 0-1 1-2 ||| 178 48212 +a los ||| words to the ||| 0.025 0.0281035 2.07417e-05 3.39597e-05 2.718 ||| 0-1 1-2 ||| 40 48212 +a los ||| work of the ||| 0.000469704 0.00117109 2.07417e-05 4.46477e-06 2.718 ||| 0-1 1-1 1-2 ||| 2129 48212 +a los ||| work on the ||| 0.0010846 0.00957523 2.07417e-05 1.03006e-05 2.718 ||| 0-1 1-2 ||| 922 48212 +a los ||| worked to the ||| 0.0769231 0.00409398 2.07417e-05 9.35496e-07 2.718 ||| 0-1 ||| 13 48212 +a los ||| worked to ||| 0.00934579 0.00409398 2.07417e-05 1.52381e-05 2.718 ||| 0-1 ||| 107 48212 +a los ||| workers are kept ||| 0.25 0.0182673 2.07417e-05 7.90113e-09 2.718 ||| 1-0 ||| 4 48212 +a los ||| workers are ||| 0.004329 0.0182673 2.07417e-05 0.000110815 2.718 ||| 1-0 ||| 231 48212 +a los ||| workers ||| 0.000282865 0.0182673 8.29669e-05 0.0073036 2.718 ||| 1-0 ||| 14141 48212 +a los ||| workforce ||| 0.000769823 0.000654041 2.07417e-05 1.56e-05 2.718 ||| 1-0 ||| 1299 48212 +a los ||| worldwide network of the ||| 0.5 0.00230489 2.07417e-05 1.82503e-12 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| worst the ||| 0.5 0.00612862 2.07417e-05 6.47724e-06 2.718 ||| 1-1 ||| 2 48212 +a los ||| would also like to extend my thanks ||| 0.333333 0.00198578 2.07417e-05 4.44581e-20 2.718 ||| 0-3 1-5 ||| 3 48212 +a los ||| would also like to extend my ||| 0.25 0.00198578 2.07417e-05 5.48865e-16 2.718 ||| 0-3 1-5 ||| 4 48212 +a los ||| would also like to thank the ||| 0.0125 0.0281035 2.07417e-05 8.36512e-13 2.718 ||| 0-3 1-5 ||| 80 48212 +a los ||| would be incorporated after ||| 0.5 0.000607523 2.07417e-05 1.8021e-12 2.718 ||| 0-3 ||| 2 48212 +a los ||| would be offering ||| 0.5 0.00184419 2.07417e-05 1.8836e-08 2.718 ||| 0-2 ||| 2 48212 +a los ||| would favour ||| 0.0243902 3.04004e-05 2.07417e-05 1.98362e-07 2.718 ||| 0-1 ||| 41 48212 +a los ||| would hold responsible for that damage the ||| 0.333333 0.00835696 2.07417e-05 1.69255e-18 2.718 ||| 0-3 1-6 ||| 3 48212 +a los ||| would involve ||| 0.00546448 0.000155239 2.07417e-05 2.01737e-06 2.718 ||| 0-1 1-1 ||| 183 48212 +a los ||| would like to ||| 0.000260688 0.00409398 4.14834e-05 3.65092e-06 2.718 ||| 0-2 ||| 7672 48212 +a los ||| would no longer be open to the ||| 1 0.0281035 2.07417e-05 3.76005e-16 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| would therefore no longer be on the ||| 1 0.00957523 2.07417e-05 2.1125e-16 2.718 ||| 0-5 1-6 ||| 1 48212 +a los ||| writing to the ||| 0.0294118 0.0281035 2.07417e-05 3.28177e-05 2.718 ||| 0-1 1-2 ||| 34 48212 +a los ||| writing to ||| 0.0169492 0.00409398 2.07417e-05 7.65059e-05 2.718 ||| 0-1 ||| 59 48212 +a los ||| year , in our opinion ||| 0.5 0.00145948 2.07417e-05 1.56602e-12 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| year , in our ||| 0.333333 0.00145948 2.07417e-05 6.38149e-09 2.718 ||| 0-2 1-3 ||| 3 48212 +a los ||| years ; not to eliminate the ||| 0.333333 0.0281035 2.07417e-05 3.09271e-16 2.718 ||| 0-3 1-5 ||| 3 48212 +a los ||| yet again to the ||| 0.166667 0.0281035 2.07417e-05 2.29844e-08 2.718 ||| 0-2 1-3 ||| 6 48212 +a los ||| yet to the ||| 1 0.0281035 2.07417e-05 3.97448e-05 2.718 ||| 0-1 1-2 ||| 1 48212 +a los ||| you , on behalf of the ||| 0.125 0.00957523 2.07417e-05 1.08489e-10 2.718 ||| 0-2 1-5 ||| 8 48212 +a los ||| you ask the ||| 0.0384615 0.00100983 2.07417e-05 2.03591e-07 2.718 ||| 0-1 1-2 ||| 26 48212 +a los ||| you give to the ||| 0.5 0.0281035 2.07417e-05 2.94006e-07 2.718 ||| 0-2 1-3 ||| 2 48212 +a los ||| you might disagree with ||| 0.25 0.00101826 2.07417e-05 1.63522e-13 2.718 ||| 0-3 ||| 4 48212 +a los ||| you on the ||| 0.010989 0.00957523 2.07417e-05 5.25397e-05 2.718 ||| 0-1 1-2 ||| 91 48212 +a los ||| you talked about the ||| 0.0588235 0.00643683 2.07417e-05 7.25846e-11 2.718 ||| 0-2 1-3 ||| 17 48212 +a los ||| you to the ||| 0.0512821 0.0281035 4.14834e-05 0.000485158 2.718 ||| 0-1 1-2 ||| 39 48212 +a los ||| young people ||| 0.000145624 0.000159797 2.07417e-05 1.22067e-07 2.718 ||| 0-0 1-1 ||| 6867 48212 +a los ||| your speech to the ||| 0.166667 0.0281035 2.07417e-05 1.73037e-09 2.718 ||| 0-2 1-3 ||| 6 48212 +a los ||| your ||| 0.000155531 0.000482821 0.000103709 0.0003082 2.718 ||| 1-0 ||| 32148 48212 +a los ||| yourself with the ||| 0.333333 0.00698995 2.07417e-05 3.22266e-07 2.718 ||| 0-1 1-2 ||| 3 48212 +a los ||| – to the ||| 0.0151515 0.0281035 2.07417e-05 5.90538e-05 2.718 ||| 0-1 1-2 ||| 66 48212 +a los ||| ‘ super green rooms ||| 0.5 0.000715939 2.07417e-05 1.27883e-20 2.718 ||| 1-3 ||| 2 48212 +a los ||| ‘ super green rooms ’ ||| 0.5 0.000715939 2.07417e-05 2.22785e-23 2.718 ||| 1-3 ||| 2 48212 +a los ||| ’ s ||| 0.000591436 0.00120605 0.000103709 8.51986e-07 2.718 ||| 1-0 1-1 ||| 8454 48212 +a los ||| ’ ||| 0.000194288 0.000700358 0.000103709 0.0005406 2.718 ||| 1-0 ||| 25735 48212 +a ||| ! ) to ||| 0.333333 0.229811 1.49697e-06 2.32108e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| $ ||| 0.00980392 0.0418006 1.49697e-06 1.19e-05 2.718 ||| 0-0 ||| 102 668016 +a ||| % of women achieve high-level positions ||| 1 0.0188479 1.49697e-06 5.55917e-24 2.718 ||| 0-1 ||| 1 668016 +a ||| % of women achieve high-level ||| 1 0.0188479 1.49697e-06 1.64473e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| % of women achieve ||| 1 0.0188479 1.49697e-06 4.56868e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| % of women ||| 0.0555556 0.0188479 1.49697e-06 1.99942e-10 2.718 ||| 0-1 ||| 18 668016 +a ||| % of ||| 0.000424628 0.0188479 1.49697e-06 1.68302e-06 2.718 ||| 0-1 ||| 2355 668016 +a ||| % over ||| 0.0232558 0.0682544 1.49697e-06 1.32173e-07 2.718 ||| 0-1 ||| 43 668016 +a ||| % to ||| 0.00537634 0.229811 2.99394e-06 1.99322e-05 2.718 ||| 0-1 ||| 372 668016 +a ||| [ never again ] ||| 1 0.0700825 1.49697e-06 1.76302e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| [ never again ] ’ . ||| 1 0.0700825 1.49697e-06 9.30314e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| [ never again ] ’ ||| 1 0.0700825 1.49697e-06 3.07136e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| [ never again ||| 1 0.0700825 1.49697e-06 4.71396e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| ] at the ||| 0.5 0.204175 1.49697e-06 7.81471e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| ] at ||| 0.5 0.204175 1.49697e-06 1.27292e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| ' , for which Mr Milosevic ||| 1 0.0683377 1.49697e-06 1.17182e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| ' , for which Mr ||| 1 0.0683377 1.49697e-06 8.37014e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| ' , for which ||| 0.25 0.0683377 1.49697e-06 1.28219e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| ' , for ||| 0.0192308 0.0683377 1.49697e-06 1.50942e-05 2.718 ||| 0-2 ||| 52 668016 +a ||| ' , in ||| 0.00763359 0.0587624 1.49697e-06 2.46115e-05 2.718 ||| 0-2 ||| 131 668016 +a ||| ' , which seems to be ||| 1 0.229811 1.49697e-06 2.65526e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| ' , which seems to ||| 0.5 0.229811 1.49697e-06 1.46514e-10 2.718 ||| 0-4 ||| 2 668016 +a ||| ' No ' to ||| 0.037037 0.229811 1.49697e-06 2.79807e-10 2.718 ||| 0-3 ||| 27 668016 +a ||| ' Rights and ||| 0.666667 0.0015873 2.99394e-06 5.46117e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| ' and ' when ' need to ||| 0.25 0.229811 1.49697e-06 8.15077e-17 2.718 ||| 0-6 ||| 4 668016 +a ||| ' are to ||| 0.5 0.229811 1.49697e-06 1.82566e-05 2.718 ||| 0-2 ||| 2 668016 +a ||| ' arrangements for ||| 1 0.0683377 1.49697e-06 5.55646e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| ' as ||| 0.00396825 0.0243476 1.49697e-06 3.01323e-05 2.718 ||| 0-1 ||| 252 668016 +a ||| ' down to ||| 0.333333 0.229811 1.49697e-06 8.39989e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| ' fees to ||| 1 0.229811 1.49697e-06 5.17398e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| ' for ||| 0.0027027 0.0683377 1.49697e-06 0.000126571 2.718 ||| 0-1 ||| 370 668016 +a ||| ' heel for ||| 1 0.0683377 1.49697e-06 8.85996e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| ' in deficiencies ||| 0.25 0.0587624 1.49697e-06 5.15943e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| ' in ||| 0.0105263 0.0587624 1.34727e-05 0.000206377 2.718 ||| 0-1 ||| 855 668016 +a ||| ' is concerned ||| 0.125 0.044342 1.49697e-06 8.59829e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| ' line by ||| 1 0.0337966 1.49697e-06 8.31993e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| ' motivation to ||| 1 0.229811 1.49697e-06 1.32358e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| ' need to ||| 0.111111 0.229811 1.49697e-06 1.10326e-06 2.718 ||| 0-2 ||| 9 668016 +a ||| ' no ' to ||| 0.0292683 0.229811 8.98182e-06 3.21716e-09 2.718 ||| 0-3 ||| 205 668016 +a ||| ' on ||| 0.0103093 0.0782999 2.99394e-06 0.000130305 2.718 ||| 0-1 ||| 194 668016 +a ||| ' parliaments to ||| 1 0.229811 1.49697e-06 1.34764e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| ' premises for the purpose of housing ||| 1 0.0683377 1.49697e-06 2.05187e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| ' premises for the purpose of ||| 1 0.0683377 1.49697e-06 4.10375e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| ' premises for the purpose ||| 1 0.0683377 1.49697e-06 7.54865e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| ' premises for the ||| 1 0.0683377 1.49697e-06 4.19602e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| ' premises for ||| 1 0.0683377 1.49697e-06 6.83483e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| ' principle for ||| 1 0.0683377 1.49697e-06 1.94033e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| ' right to ||| 0.0192308 0.229811 1.49697e-06 7.75977e-07 2.718 ||| 0-2 ||| 52 668016 +a ||| ' s Achilles ' heel for ||| 1 0.0683377 1.49697e-06 2.31571e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| ' s attention to ||| 0.0909091 0.229811 1.49697e-06 5.98101e-10 2.718 ||| 0-3 ||| 11 668016 +a ||| ' s becoming a member of ||| 1 0.0188479 2.99394e-06 1.46864e-16 2.718 ||| 0-5 ||| 2 668016 +a ||| ' s punishing ||| 1 0.320988 1.49697e-06 6.20097e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| ' s responsibility to ||| 0.142857 0.229811 1.49697e-06 2.64373e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| ' s signing up to ||| 1 0.229811 1.49697e-06 8.74322e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| ' s task to ||| 0.25 0.229811 1.49697e-06 2.88407e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| ' thinking appears to me to ||| 0.5 0.229811 1.49697e-06 2.49007e-16 2.718 ||| 0-5 ||| 2 668016 +a ||| ' thought to ||| 1 0.229811 1.49697e-06 9.99902e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| ' time , will ||| 0.5 0.0561595 1.49697e-06 9.47109e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| ' time in ||| 0.333333 0.0587624 1.49697e-06 3.3881e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| ' to ' ||| 0.0333333 0.229811 1.49697e-06 4.13305e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| ' to be dealt with ||| 0.5 0.0571592 1.49697e-06 9.66885e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| ' to ||| 0.050193 0.229811 7.78424e-05 0.00120325 2.718 ||| 0-1 ||| 1036 668016 +a ||| ' travel to ||| 1 0.229811 1.49697e-06 4.54829e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| ' when ' need to ||| 0.25 0.229811 1.49697e-06 1.89442e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| ' ||| 1.10953e-05 8.1e-06 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 90128 668016 +a ||| ' à ||| 0.5 0.331035 1.49697e-06 1.50449e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| 'll ||| 0.0666667 0.0434783 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| 're all ||| 1 0.0038996 1.49697e-06 1.99116e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| 's admittance to ||| 1 0.229811 1.49697e-06 2.66846e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| 's application for membership before ||| 1 0.0626155 1.49697e-06 2.90324e-16 2.718 ||| 0-3 0-4 ||| 1 668016 +a ||| 's attempts to ||| 0.1 0.229811 1.49697e-06 2.11475e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| 's attention at ||| 1 0.204175 1.49697e-06 1.69367e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| 's attention to ||| 0.0322581 0.229811 2.99394e-06 1.74317e-07 2.718 ||| 0-2 ||| 62 668016 +a ||| 's being informed of ||| 1 0.0188479 1.49697e-06 4.79303e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| 's citizens to ||| 0.0909091 0.229811 1.49697e-06 7.27155e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| 's claims in ||| 1 0.0587624 1.49697e-06 3.45552e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| 's duty to ||| 0.0208333 0.229811 1.49697e-06 4.97e-08 2.718 ||| 0-2 ||| 48 668016 +a ||| 's example of ||| 0.5 0.0188479 1.49697e-06 1.63975e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| 's for ||| 0.5 0.0683377 1.49697e-06 7.01743e-05 2.718 ||| 0-1 ||| 2 668016 +a ||| 's full weight behind diplomatic initiatives ||| 1 0.0923313 1.49697e-06 1.22741e-24 2.718 ||| 0-3 ||| 1 668016 +a ||| 's full weight behind diplomatic ||| 1 0.0923313 1.49697e-06 3.87195e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| 's full weight behind ||| 1 0.0923313 1.49697e-06 8.23819e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| 's hunger will , in ||| 1 0.0587624 1.49697e-06 4.24972e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| 's input for ||| 1 0.0683377 1.49697e-06 8.84196e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| 's job to ||| 0.04 0.229811 1.49697e-06 5.21016e-08 2.718 ||| 0-2 ||| 25 668016 +a ||| 's lot to ||| 0.333333 0.229811 1.49697e-06 8.61912e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| 's nose to ||| 1 0.229811 1.49697e-06 4.0694e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| 's not news to us ||| 0.5 0.229811 1.49697e-06 2.38291e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| 's not news to ||| 0.5 0.229811 1.49697e-06 8.26767e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| 's objective in ||| 1 0.0587624 1.49697e-06 7.65477e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| 's of Agriculture ||| 1 0.0188479 1.49697e-06 7.71711e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| 's of ||| 0.25 0.0188479 1.49697e-06 5.63293e-05 2.718 ||| 0-1 ||| 4 668016 +a ||| 's organisation to ||| 1 0.229811 1.49697e-06 2.25485e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| 's position instead of ||| 1 0.0188479 1.49697e-06 3.74509e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| 's powers to ||| 0.25 0.229811 1.49697e-06 3.28887e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| 's procedures or of ||| 0.333333 0.0188479 1.49697e-06 2.78214e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| 's question on ||| 0.333333 0.0782999 1.49697e-06 5.97679e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| 's reference to these ||| 1 0.229811 1.49697e-06 5.9016e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| 's reference to ||| 0.0714286 0.229811 1.49697e-06 5.69049e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| 's rooms , has to be ||| 0.5 0.229811 1.49697e-06 2.15228e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| 's rooms , has to ||| 0.5 0.229811 1.49697e-06 1.1876e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| 's ruling by ||| 0.5 0.0337966 1.49697e-06 3.10235e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| 's scope to cover ||| 1 0.229811 1.49697e-06 5.19453e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| 's scope to ||| 0.5 0.229811 1.49697e-06 6.65113e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| 's share to ||| 0.4 0.229811 2.99394e-06 6.24419e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| 's sitting to ||| 1 0.229811 1.49697e-06 4.63644e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| 's tax havens to ||| 1 0.229811 1.49697e-06 9.29023e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| 's to ||| 0.222222 0.229811 2.99394e-06 0.000667114 2.718 ||| 0-1 ||| 9 668016 +a ||| 't help feeling that ||| 1 0.259976 1.49697e-06 1.69084e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| 't help feeling ||| 1 0.259976 1.49697e-06 1.00516e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| 't help ||| 0.4 0.259976 2.99394e-06 2.76904e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| 't persecute these people , it ||| 1 0.410256 1.49697e-06 3.5698e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| 't persecute these people , ||| 1 0.410256 1.49697e-06 2.0074e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| 't persecute these people ||| 1 0.410256 1.49697e-06 1.68329e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| 't persecute these ||| 1 0.410256 1.49697e-06 1.91239e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| 't persecute ||| 1 0.410256 1.49697e-06 1.84398e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| 't stand around ||| 1 0.0931303 1.49697e-06 6.27549e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| " As for ||| 0.333333 0.0683377 1.49697e-06 5.32269e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| " Nearer my God to ||| 0.5 0.154977 1.49697e-06 6.76593e-19 2.718 ||| 0-3 ||| 2 668016 +a ||| " Nearer my God ||| 0.5 0.154977 1.49697e-06 7.6143e-18 2.718 ||| 0-3 ||| 2 668016 +a ||| " fire in ||| 1 0.0587624 1.49697e-06 2.56096e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| " made to ||| 0.5 0.229811 1.49697e-06 1.73767e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| " to ||| 0.0326087 0.229811 4.49091e-06 8.29514e-05 2.718 ||| 0-1 ||| 92 668016 +a ||| " yes " to ||| 0.0555556 0.229811 1.49697e-06 6.28573e-13 2.718 ||| 0-3 ||| 18 668016 +a ||| ( ! ) to ||| 0.5 0.229811 1.49697e-06 2.23845e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| ( 1 ||| 0.000768639 0.0002015 1.49697e-06 3.456e-11 2.718 ||| 0-0 0-1 ||| 1301 668016 +a ||| ( 3 ) ( a ||| 0.0588235 0.0005823 1.49697e-06 1.29933e-17 2.718 ||| 0-4 ||| 17 668016 +a ||| ( APF ) ||| 1 1 1.49697e-06 1.24752e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| ( APF ||| 1 1 1.49697e-06 8.6796e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| ( ECAs ) ||| 0.0833333 0.131148 1.49697e-06 1.01188e-11 2.718 ||| 0-1 ||| 12 668016 +a ||| ( ECAs ||| 0.0833333 0.131148 1.49697e-06 7.04012e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| ( FR ) In ||| 0.0344828 0.0054054 1.49697e-06 2.34007e-16 2.718 ||| 0-3 ||| 29 668016 +a ||| ( FTT ) ||| 0.0625 0.02 1.49697e-06 2.49504e-12 2.718 ||| 0-1 ||| 16 668016 +a ||| ( FTT ||| 0.0625 0.02 1.49697e-06 1.73592e-09 2.718 ||| 0-1 ||| 16 668016 +a ||| ( MS ) to ||| 1 0.229811 1.49697e-06 5.34121e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| ( WENRA ) should be upgraded to ||| 1 0.229811 1.49697e-06 4.52308e-23 2.718 ||| 0-6 ||| 1 668016 +a ||| ( a ) ||| 0.00609756 0.0005823 1.49697e-06 5.85779e-10 2.718 ||| 0-1 ||| 164 668016 +a ||| ( a ||| 0.0939227 0.0003723 2.54485e-05 5.40928e-09 2.718 ||| 0-0 0-1 ||| 181 668016 +a ||| ( at ||| 0.037037 0.204175 1.49697e-06 3.28237e-05 2.718 ||| 0-1 ||| 27 668016 +a ||| ( de ) If I could only ||| 1 0.0013612 1.49697e-06 6.09551e-26 2.718 ||| 0-4 ||| 1 668016 +a ||| ( de ) If I could ||| 1 0.0013612 1.49697e-06 5.47616e-23 2.718 ||| 0-4 ||| 1 668016 +a ||| ( de ) If I ||| 0.5 0.0013612 1.49697e-06 7.70096e-20 2.718 ||| 0-4 ||| 2 668016 +a ||| ( fr ) At ||| 0.333333 0.0148148 1.49697e-06 6.81145e-17 2.718 ||| 0-3 ||| 3 668016 +a ||| ( ||| 5.96858e-05 0.0001623 7.48485e-06 1.28e-05 2.718 ||| 0-0 ||| 83772 668016 +a ||| ) ( a ||| 0.0169492 0.0005823 1.49697e-06 5.85779e-10 2.718 ||| 0-2 ||| 59 668016 +a ||| ) , for ||| 0.0285714 0.0683377 1.49697e-06 6.31601e-06 2.718 ||| 0-2 ||| 35 668016 +a ||| ) - to ||| 0.333333 0.229811 1.49697e-06 1.89921e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| ) At ||| 0.0188679 0.0148148 1.49697e-06 2.58714e-09 2.718 ||| 0-1 ||| 53 668016 +a ||| ) Critics ||| 1 1 1.49697e-06 1.29357e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| ) If I could only make it ||| 1 0.0013612 1.49697e-06 5.71132e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| ) If I could only make ||| 1 0.0013612 1.49697e-06 3.21164e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| ) If I could only ||| 1 0.0013612 1.49697e-06 1.84811e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| ) If I could ||| 1 0.0013612 1.49697e-06 1.66032e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| ) If I ||| 0.2 0.0013612 1.49697e-06 2.33487e-12 2.718 ||| 0-2 ||| 5 668016 +a ||| ) In ||| 0.00215983 0.0054054 1.49697e-06 6.61158e-09 2.718 ||| 0-1 ||| 463 668016 +a ||| ) Procedure for ||| 1 0.0683377 1.49697e-06 3.3737e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| ) and from ||| 0.333333 0.0435582 1.49697e-06 1.29603e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| ) of the Rules of Procedure ||| 0.00225225 0.0188479 1.49697e-06 6.40813e-16 2.718 ||| 0-1 ||| 444 668016 +a ||| ) of the Rules of ||| 0.0188679 0.0188479 1.49697e-06 1.00599e-11 2.718 ||| 0-1 ||| 53 668016 +a ||| ) of the Rules ||| 0.0208333 0.0188479 1.49697e-06 1.85046e-10 2.718 ||| 0-1 ||| 48 668016 +a ||| ) of the Treaty to categories of ||| 0.5 0.229811 1.49697e-06 8.4454e-17 2.718 ||| 0-4 ||| 2 668016 +a ||| ) of the Treaty to categories ||| 0.5 0.229811 1.49697e-06 1.55349e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| ) of the Treaty to ||| 0.25 0.229811 1.49697e-06 1.43842e-10 2.718 ||| 0-4 ||| 4 668016 +a ||| ) of the ||| 0.00154083 0.0188479 1.49697e-06 2.60996e-06 2.718 ||| 0-1 ||| 649 668016 +a ||| ) of ||| 0.00197628 0.0188479 1.49697e-06 4.25132e-05 2.718 ||| 0-1 ||| 506 668016 +a ||| ) on ||| 0.0037594 0.0782999 1.49697e-06 5.45248e-05 2.718 ||| 0-1 ||| 266 668016 +a ||| ) regarding ||| 0.166667 0.186429 1.49697e-06 4.83695e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| ) should be upgraded to ||| 1 0.229811 1.49697e-06 1.17251e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| ) to ( ||| 1 0.229811 1.49697e-06 4.85564e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| ) to defend all people clearly ||| 1 0.229811 1.49697e-06 7.98764e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| ) to defend all people ||| 1 0.229811 1.49697e-06 4.37679e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| ) to defend all ||| 1 0.229811 1.49697e-06 4.9725e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| ) to defend ||| 0.333333 0.229811 1.49697e-06 1.05229e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| ) to ||| 0.0134228 0.229811 5.98788e-06 0.000503488 2.718 ||| 0-1 ||| 298 668016 +a ||| , " As for ||| 0.5 0.0683377 1.49697e-06 6.34756e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| , 000 and ||| 0.285714 0.00114825 2.99394e-06 1.26556e-09 2.718 ||| 0-1 0-2 ||| 7 668016 +a ||| , 000 for ||| 0.166667 0.0683377 1.49697e-06 4.60089e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| , 000 to ||| 0.5 0.229811 2.99394e-06 4.37385e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| , 000 ||| 0.0070922 0.0007092 1.49697e-06 6.55901e-07 2.718 ||| 0-1 ||| 141 668016 +a ||| , 10 and 17 , on ||| 1 0.0782999 1.49697e-06 8.32023e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| , 5 , ||| 0.00454545 0.0001706 1.49697e-06 1.27995e-08 2.718 ||| 0-1 ||| 220 668016 +a ||| , 5 million will be subject to ||| 1 0.229811 1.49697e-06 4.16394e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| , 5 ||| 0.00285714 0.0001706 1.49697e-06 1.07329e-07 2.718 ||| 0-1 ||| 350 668016 +a ||| , 9 , 10 , 11 , ||| 0.030303 0.0006022 1.49697e-06 7.84406e-20 2.718 ||| 0-1 ||| 33 668016 +a ||| , 9 , 10 , 11 ||| 0.0227273 0.0006022 1.49697e-06 6.57757e-19 2.718 ||| 0-1 ||| 44 668016 +a ||| , 9 , 10 , ||| 0.0131579 0.0006022 1.49697e-06 4.94554e-14 2.718 ||| 0-1 ||| 76 668016 +a ||| , 9 , 10 ||| 0.0114943 0.0006022 1.49697e-06 4.14704e-13 2.718 ||| 0-1 ||| 87 668016 +a ||| , 9 , ||| 0.00497512 0.0006022 1.49697e-06 2.5599e-08 2.718 ||| 0-1 ||| 201 668016 +a ||| , 9 ||| 0.00315457 0.0006022 1.49697e-06 2.14658e-07 2.718 ||| 0-1 ||| 317 668016 +a ||| , Commissioner , to ||| 0.00473934 0.229811 1.49697e-06 4.39402e-07 2.718 ||| 0-3 ||| 211 668016 +a ||| , Common Security and Defence Policy ||| 0.00285714 0.0015873 1.49697e-06 1.04483e-21 2.718 ||| 0-3 ||| 350 668016 +a ||| , Common Security and Defence ||| 0.0238095 0.0015873 1.49697e-06 1.07937e-17 2.718 ||| 0-3 ||| 42 668016 +a ||| , Common Security and ||| 0.00263158 0.0015873 1.49697e-06 3.57406e-13 2.718 ||| 0-3 ||| 380 668016 +a ||| , Democrat and Reform Party for ||| 0.5 0.0683377 1.49697e-06 1.72568e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| , EU-wide ||| 0.0833333 0.0913978 1.49697e-06 1.29511e-05 2.718 ||| 0-1 ||| 12 668016 +a ||| , Education and the Media , to ||| 1 0.229811 1.49697e-06 1.85566e-15 2.718 ||| 0-6 ||| 1 668016 +a ||| , Gaëlle Le Bouler ||| 1 1 1.49697e-06 9.44497e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| , Gaëlle Le ||| 1 1 1.49697e-06 2.36124e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , Gaëlle ||| 1 1 1.49697e-06 1.07329e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| , I absolutely disagree with ||| 1 0.0571592 1.49697e-06 1.04915e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| , I agree with you , ||| 0.142857 0.0571592 1.49697e-06 8.62725e-13 2.718 ||| 0-3 ||| 7 668016 +a ||| , I agree with you ||| 0.0105263 0.0571592 1.49697e-06 7.2343e-12 2.718 ||| 0-3 ||| 95 668016 +a ||| , I agree with ||| 0.00115075 0.0571592 1.49697e-06 2.24062e-09 2.718 ||| 0-3 ||| 869 668016 +a ||| , I am pleased to ||| 0.0046729 0.229811 1.49697e-06 1.53641e-11 2.718 ||| 0-4 ||| 214 668016 +a ||| , I asked ||| 0.00588235 0.0895701 1.49697e-06 6.92975e-07 2.718 ||| 0-2 ||| 170 668016 +a ||| , I believe , has to ||| 1 0.229811 1.49697e-06 5.64681e-11 2.718 ||| 0-5 ||| 1 668016 +a ||| , I believe , reassure Mrs Torres ||| 1 0.284916 1.49697e-06 5.73072e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| , I believe , reassure Mrs ||| 1 0.284916 1.49697e-06 8.18675e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| , I believe , reassure ||| 1 0.284916 1.49697e-06 8.74652e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| , I came to ||| 0.0714286 0.229811 1.49697e-06 3.72325e-08 2.718 ||| 0-3 ||| 14 668016 +a ||| , I congratulate ||| 0.00282486 0.245244 1.49697e-06 2.80876e-06 2.718 ||| 0-2 ||| 354 668016 +a ||| , I do not think that on ||| 1 0.0782999 1.49697e-06 2.41489e-15 2.718 ||| 0-6 ||| 1 668016 +a ||| , I happened to ||| 0.2 0.229811 1.49697e-06 1.82912e-08 2.718 ||| 0-3 ||| 5 668016 +a ||| , I have given ||| 0.0769231 0.0371011 1.49697e-06 1.06637e-08 2.718 ||| 0-3 ||| 13 668016 +a ||| , I have to ||| 0.00258732 0.229811 2.99394e-06 3.53408e-06 2.718 ||| 0-3 ||| 773 668016 +a ||| , I include ||| 0.125 0.0281253 1.49697e-06 2.23287e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| , I must emphasise once again ||| 0.333333 0.0700825 1.49697e-06 2.09034e-17 2.718 ||| 0-5 ||| 3 668016 +a ||| , I shall give up ||| 1 0.0241455 1.49697e-06 8.84231e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| , I shall give ||| 0.0434783 0.0241455 1.49697e-06 2.59267e-10 2.718 ||| 0-3 ||| 23 668016 +a ||| , I shall support it ||| 1 0.131911 1.49697e-06 1.23867e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| , I shall support ||| 0.142857 0.131911 1.49697e-06 6.96537e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| , I shall ||| 0.00198413 0.131911 1.49697e-06 2.03725e-06 2.718 ||| 0-2 ||| 504 668016 +a ||| , I should like to ||| 0.000393701 0.229811 1.49697e-06 2.32526e-09 2.718 ||| 0-4 ||| 2540 668016 +a ||| , I thank ||| 0.00195312 0.0126162 1.49697e-06 4.91957e-07 2.718 ||| 0-2 ||| 512 668016 +a ||| , I was in Genoa , my ||| 0.25 0.0587624 1.49697e-06 8.52453e-18 2.718 ||| 0-3 ||| 4 668016 +a ||| , I was in Genoa , ||| 0.25 0.0587624 1.49697e-06 1.32554e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| , I was in Genoa ||| 0.25 0.0587624 1.49697e-06 1.11152e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| , I was in ||| 0.015873 0.0587624 1.49697e-06 1.58788e-07 2.718 ||| 0-3 ||| 63 668016 +a ||| , I will consider ||| 0.142857 0.0561595 1.49697e-06 1.89015e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| , I will turn to ||| 0.2 0.229811 1.49697e-06 5.73144e-10 2.718 ||| 0-4 ||| 5 668016 +a ||| , I will ||| 0.00149254 0.0561595 1.49697e-06 1.18803e-05 2.718 ||| 0-2 ||| 670 668016 +a ||| , I wish to express my ||| 0.00925926 0.229811 1.49697e-06 5.6843e-15 2.718 ||| 0-3 ||| 108 668016 +a ||| , I wish to express ||| 0.00675676 0.229811 1.49697e-06 8.8389e-12 2.718 ||| 0-3 ||| 148 668016 +a ||| , I wish to ||| 0.000543774 0.229811 1.49697e-06 8.70827e-08 2.718 ||| 0-3 ||| 1839 668016 +a ||| , I would like to take this ||| 0.00854701 0.229811 1.49697e-06 3.2038e-14 2.718 ||| 0-4 ||| 117 668016 +a ||| , I would like to take ||| 0.00546448 0.229811 1.49697e-06 4.95836e-12 2.718 ||| 0-4 ||| 183 668016 +a ||| , I would like to ||| 0.00181561 0.229811 1.34727e-05 3.07973e-09 2.718 ||| 0-4 ||| 4957 668016 +a ||| , I ||| 0.000102804 0.0013612 5.98788e-06 8.80577e-05 2.718 ||| 0-1 ||| 38909 668016 +a ||| , Mr Pasqua , you will have ||| 1 0.0561595 1.49697e-06 5.55383e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| , Mr Pasqua , you will ||| 1 0.0561595 1.49697e-06 4.64374e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| , Public Health and Consumer Policy about ||| 1 0.0526361 1.49697e-06 9.0424e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| , Public Health and Consumer Policy by ||| 1 0.0337966 1.49697e-06 1.47632e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| , Public Health and Consumer Policy to ||| 0.25 0.229811 1.49697e-06 6.28573e-20 2.718 ||| 0-6 ||| 4 668016 +a ||| , Public Health and Consumer Policy ||| 0.00175439 0.0015873 1.49697e-06 2.76407e-20 2.718 ||| 0-3 ||| 570 668016 +a ||| , Public Health and Consumer Protection to ||| 0.5 0.229811 1.49697e-06 2.31169e-20 2.718 ||| 0-6 ||| 2 668016 +a ||| , Public Health and Consumer ||| 0.00884956 0.0015873 1.49697e-06 2.85545e-16 2.718 ||| 0-3 ||| 113 668016 +a ||| , Public Health and ||| 0.00113636 0.0015873 2.99394e-06 2.61968e-12 2.718 ||| 0-3 ||| 1760 668016 +a ||| , Thursday , at ||| 0.0294118 0.102147 1.49697e-06 3.89409e-12 2.718 ||| 0-0 0-3 ||| 34 668016 +a ||| , Wednesday , at ||| 0.04 0.102147 1.49697e-06 2.37972e-12 2.718 ||| 0-0 0-3 ||| 25 668016 +a ||| , Wednesday , ||| 0.027027 0.0001191 1.49697e-06 6.9919e-11 2.718 ||| 0-0 ||| 37 668016 +a ||| , Wednesday ||| 0.0185185 0.0001191 1.49697e-06 5.863e-10 2.718 ||| 0-0 ||| 54 668016 +a ||| , a case of ||| 0.1 0.0188479 1.49697e-06 1.67283e-07 2.718 ||| 0-3 ||| 10 668016 +a ||| , a decision confirmed at ||| 1 0.204175 1.49697e-06 5.49027e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| , a little later on ||| 0.5 0.0782999 1.49697e-06 2.79206e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| , a problem for ||| 0.111111 0.0683377 1.49697e-06 4.38068e-08 2.718 ||| 0-3 ||| 9 668016 +a ||| , a return to ||| 0.0714286 0.229811 1.49697e-06 1.23324e-07 2.718 ||| 0-3 ||| 14 668016 +a ||| , a ||| 4.33595e-05 0.0001191 1.49697e-06 1.18128e-05 2.718 ||| 0-0 ||| 23063 668016 +a ||| , able to ||| 0.0151515 0.229811 1.49697e-06 3.4878e-05 2.718 ||| 0-2 ||| 66 668016 +a ||| , about ||| 0.00380642 0.0526361 1.04788e-05 0.00060096 2.718 ||| 0-1 ||| 1839 668016 +a ||| , above all , for the ||| 0.0333333 0.0683377 1.49697e-06 1.97027e-11 2.718 ||| 0-4 ||| 30 668016 +a ||| , above all , for ||| 0.0103093 0.0683377 1.49697e-06 3.20933e-10 2.718 ||| 0-4 ||| 97 668016 +a ||| , above all , through ||| 0.0909091 0.230708 1.49697e-06 6.92329e-11 2.718 ||| 0-4 ||| 11 668016 +a ||| , according to her plan . ||| 1 0.229811 1.49697e-06 2.22744e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| , according to her plan ||| 1 0.229811 1.49697e-06 7.35372e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| , according to her ||| 0.2 0.229811 1.49697e-06 1.00598e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| , according to ||| 0.000892061 0.229811 2.99394e-06 3.6971e-06 2.718 ||| 0-2 ||| 2242 668016 +a ||| , accused ||| 0.0263158 0.100079 1.49697e-06 1.37143e-05 2.718 ||| 0-1 ||| 38 668016 +a ||| , add up to ||| 0.5 0.229811 1.49697e-06 1.16829e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| , adding to ||| 0.04 0.229811 1.49697e-06 6.01562e-07 2.718 ||| 0-2 ||| 25 668016 +a ||| , additionally ||| 0.0909091 0.0068259 1.49697e-06 2.14658e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| , adopting for ||| 0.5 0.0683377 1.49697e-06 2.14884e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| , affect up to 24 % of ||| 1 0.330659 1.49697e-06 1.51904e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| , affect up to 24 % ||| 1 0.330659 1.49697e-06 2.79421e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| , affect up to 24 ||| 1 0.330659 1.49697e-06 4.91074e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , affect up to ||| 1 0.330659 1.49697e-06 5.71016e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| , affect up ||| 1 0.330659 1.49697e-06 6.42615e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| , affect ||| 0.0285714 0.330659 1.49697e-06 0.000188422 2.718 ||| 0-1 ||| 35 668016 +a ||| , affecting ||| 0.00869565 0.268066 1.49697e-06 0.000106995 2.718 ||| 0-1 ||| 115 668016 +a ||| , after all , also launched for ||| 0.5 0.0683377 1.49697e-06 1.12144e-16 2.718 ||| 0-6 ||| 2 668016 +a ||| , after all , to ||| 0.142857 0.229811 1.49697e-06 6.37971e-09 2.718 ||| 0-4 ||| 7 668016 +a ||| , after all , ||| 0.00125313 0.0341027 1.49697e-06 5.637e-08 2.718 ||| 0-1 ||| 798 668016 +a ||| , after all ||| 0.0021254 0.0341027 2.99394e-06 4.72686e-07 2.718 ||| 0-1 ||| 941 668016 +a ||| , after critical ||| 1 0.0341027 1.49697e-06 2.52078e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| , after ||| 0.000877501 0.0341027 7.48485e-06 0.000100031 2.718 ||| 0-1 ||| 5698 668016 +a ||| , again , do ||| 1 0.0700825 1.49697e-06 1.13267e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| , again , ||| 0.00925926 0.0700825 2.99394e-06 3.29716e-05 2.718 ||| 0-1 ||| 216 668016 +a ||| , again ||| 0.00811359 0.0700825 5.98788e-06 0.00027648 2.718 ||| 0-1 ||| 493 668016 +a ||| , against ||| 0.00363636 0.05146 4.49091e-06 0.000310003 2.718 ||| 0-1 ||| 825 668016 +a ||| , agreed to ||| 0.0434783 0.229811 1.49697e-06 3.26264e-06 2.718 ||| 0-2 ||| 23 668016 +a ||| , all of ||| 0.00159236 0.0188479 1.49697e-06 1.66683e-05 2.718 ||| 0-2 ||| 628 668016 +a ||| , all the ||| 0.0019802 0.0038996 2.99394e-06 4.04939e-06 2.718 ||| 0-1 ||| 1010 668016 +a ||| , all ||| 0.000710395 0.0038996 4.49091e-06 6.59598e-05 2.718 ||| 0-1 ||| 4223 668016 +a ||| , along with others , safeguards ||| 1 0.0571592 1.49697e-06 1.73169e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| , along with others , ||| 0.0714286 0.0571592 1.49697e-06 4.02719e-12 2.718 ||| 0-2 ||| 14 668016 +a ||| , along with others ||| 0.0384615 0.0571592 1.49697e-06 3.37696e-11 2.718 ||| 0-2 ||| 26 668016 +a ||| , along with ||| 0.00107469 0.0571592 2.99394e-06 3.47424e-07 2.718 ||| 0-2 ||| 1861 668016 +a ||| , along ||| 0.000540249 0.0178286 1.49697e-06 1.45848e-05 2.718 ||| 0-1 ||| 1851 668016 +a ||| , alongside those to ||| 1 0.229811 1.49697e-06 5.65663e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| , also at ||| 0.0416667 0.204175 1.49697e-06 2.04917e-05 2.718 ||| 0-2 ||| 24 668016 +a ||| , also for ||| 0.0144928 0.0683377 1.49697e-06 2.21853e-05 2.718 ||| 0-2 ||| 69 668016 +a ||| , also gives practical expression to ||| 1 0.229811 1.49697e-06 2.98451e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| , also launched for ||| 0.5 0.0683377 1.49697e-06 7.34335e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| , also to encourage ||| 1 0.229811 1.49697e-06 8.11987e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| , also to ||| 0.015873 0.229811 1.49697e-06 0.000210906 2.718 ||| 0-2 ||| 63 668016 +a ||| , although I ||| 0.00265957 0.0921822 1.49697e-06 1.22652e-06 2.718 ||| 0-1 ||| 376 668016 +a ||| , although of ||| 0.0526316 0.0921822 1.49697e-06 9.42652e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| , although ||| 0.000825277 0.0921822 1.04788e-05 0.000173396 2.718 ||| 0-1 ||| 8482 668016 +a ||| , always ready to take ||| 1 0.229811 1.49697e-06 5.12479e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| , always ready to ||| 0.333333 0.229811 1.49697e-06 3.1831e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| , am elected by ||| 1 0.0337966 1.49697e-06 2.79518e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| , am in ||| 0.0769231 0.0587624 1.49697e-06 9.15344e-06 2.718 ||| 0-2 ||| 13 668016 +a ||| , among both ||| 0.25 0.0205477 1.49697e-06 7.00309e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| , among other things ||| 0.0011274 0.0134501 1.49697e-06 8.63562e-12 2.718 ||| 0-1 ||| 887 668016 +a ||| , among other ||| 0.000978474 0.0134501 1.49697e-06 2.10112e-08 2.718 ||| 0-1 ||| 1022 668016 +a ||| , among ||| 0.000530786 0.0134501 1.49697e-06 1.62186e-05 2.718 ||| 0-1 ||| 1884 668016 +a ||| , amongst other things , there should ||| 1 0.0156749 1.49697e-06 5.07051e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| , amongst other things , there ||| 1 0.0156749 1.49697e-06 1.14433e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| , amongst other things , ||| 0.002849 0.0156749 1.49697e-06 3.73316e-13 2.718 ||| 0-1 ||| 351 668016 +a ||| , amongst other things ||| 0.00240964 0.0156749 1.49697e-06 3.13041e-12 2.718 ||| 0-1 ||| 415 668016 +a ||| , amongst other ||| 0.00211416 0.0156749 1.49697e-06 7.61658e-09 2.718 ||| 0-1 ||| 473 668016 +a ||| , amongst others ||| 0.00591716 0.0156749 1.49697e-06 5.71464e-10 2.718 ||| 0-1 ||| 169 668016 +a ||| , amongst the Balkan countries ||| 0.333333 0.0156749 1.49697e-06 3.42621e-16 2.718 ||| 0-1 ||| 3 668016 +a ||| , amongst the Balkan ||| 0.333333 0.0156749 1.49697e-06 9.02345e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| , amongst the ||| 0.0185185 0.0156749 1.49697e-06 3.60938e-07 2.718 ||| 0-1 ||| 54 668016 +a ||| , amongst ||| 0.00353774 0.0156749 4.49091e-06 5.87926e-06 2.718 ||| 0-1 ||| 848 668016 +a ||| , amounts to ||| 0.030303 0.229811 1.49697e-06 2.52739e-06 2.718 ||| 0-2 ||| 33 668016 +a ||| , and I give you ||| 0.333333 0.0015873 1.49697e-06 3.1846e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| , and I give ||| 0.166667 0.0015873 1.49697e-06 9.86341e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| , and I should just ||| 1 0.0015873 1.49697e-06 9.09939e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , and I should ||| 0.0125 0.0015873 1.49697e-06 7.21201e-09 2.718 ||| 0-1 ||| 80 668016 +a ||| , and I wish to conclude ||| 0.5 0.229811 1.49697e-06 2.6288e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| , and I wish to ||| 0.0106383 0.229811 1.49697e-06 1.09079e-09 2.718 ||| 0-4 ||| 94 668016 +a ||| , and I ||| 0.0005065 0.0015873 4.49091e-06 1.62763e-06 2.718 ||| 0-1 ||| 5923 668016 +a ||| , and about ||| 0.00568182 0.0526361 1.49697e-06 7.52757e-06 2.718 ||| 0-2 ||| 176 668016 +a ||| , and above all , ||| 0.00628931 0.0015873 1.49697e-06 1.6805e-11 2.718 ||| 0-1 ||| 159 668016 +a ||| , and above all ||| 0.00184502 0.0015873 1.49697e-06 1.40917e-10 2.718 ||| 0-1 ||| 542 668016 +a ||| , and above ||| 0.00228833 0.0015873 1.49697e-06 2.98212e-08 2.718 ||| 0-1 ||| 437 668016 +a ||| , and against two peoples in ||| 0.5 0.0587624 1.49697e-06 7.08726e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| , and also with ||| 0.0125 0.0571592 1.49697e-06 1.25905e-07 2.718 ||| 0-3 ||| 80 668016 +a ||| , and are subject to ||| 0.2 0.229811 1.49697e-06 4.28571e-09 2.718 ||| 0-4 ||| 5 668016 +a ||| , and asked ||| 0.0909091 0.0455787 1.49697e-06 1.89029e-07 2.718 ||| 0-1 0-2 ||| 11 668016 +a ||| , and away ||| 0.333333 0.0015873 1.49697e-06 7.31954e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| , and both in the ||| 1 0.0587624 1.49697e-06 9.12713e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| , and both in ||| 1 0.0587624 1.49697e-06 1.4867e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| , and concern ||| 0.0769231 0.0015873 1.49697e-06 3.07186e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| , and each nation alone , to ||| 1 0.229811 1.49697e-06 2.51605e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| , and for the conversion of printed ||| 1 0.0015873 1.49697e-06 1.69221e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| , and for the conversion of ||| 1 0.0015873 1.49697e-06 2.77411e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| , and for the conversion ||| 1 0.0015873 1.49697e-06 5.10284e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , and for the ||| 0.00248139 0.0015873 1.49697e-06 1.08571e-07 2.718 ||| 0-1 ||| 403 668016 +a ||| , and for ||| 0.00151362 0.0683377 4.49091e-06 5.50433e-05 2.718 ||| 0-2 ||| 1982 668016 +a ||| , and give ||| 0.0204082 0.0015873 1.49697e-06 1.39442e-07 2.718 ||| 0-1 ||| 49 668016 +a ||| , and have allowed itself to proceed ||| 1 0.229811 1.49697e-06 2.20052e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| , and have allowed itself to ||| 1 0.229811 1.49697e-06 6.87662e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| , and if we want ||| 0.0769231 0.0008079 1.49697e-06 2.6469e-13 2.718 ||| 0-3 ||| 13 668016 +a ||| , and if we ||| 0.0153846 0.0008079 1.49697e-06 5.66182e-10 2.718 ||| 0-3 ||| 65 668016 +a ||| , and in ||| 0.00128397 0.0587624 8.98182e-06 8.97496e-05 2.718 ||| 0-2 ||| 4673 668016 +a ||| , and involve ||| 0.2 0.170498 1.49697e-06 1.02114e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| , and is ||| 0.00121655 0.0015873 1.49697e-06 7.21165e-06 2.718 ||| 0-1 ||| 822 668016 +a ||| , and not for ||| 0.0227273 0.0683377 1.49697e-06 1.87923e-07 2.718 ||| 0-3 ||| 44 668016 +a ||| , and on a ||| 0.0357143 0.0782999 1.49697e-06 2.51182e-06 2.718 ||| 0-2 ||| 28 668016 +a ||| , and on ||| 0.00150038 0.0782999 2.99394e-06 5.66672e-05 2.718 ||| 0-2 ||| 1333 668016 +a ||| , and one to ||| 0.0588235 0.229811 1.49697e-06 2.18099e-06 2.718 ||| 0-3 ||| 17 668016 +a ||| , and one ||| 0.00138889 0.0015873 1.49697e-06 9.59065e-07 2.718 ||| 0-1 ||| 720 668016 +a ||| , and particularly ||| 0.000948767 0.0001117 1.49697e-06 5.52696e-09 2.718 ||| 0-2 ||| 1054 668016 +a ||| , and so on ||| 0.00588235 0.0782999 2.99394e-06 1.28617e-07 2.718 ||| 0-3 ||| 340 668016 +a ||| , and so ||| 0.000784929 0.0015873 2.99394e-06 5.22262e-07 2.718 ||| 0-1 ||| 2548 668016 +a ||| , and subject to ||| 0.166667 0.229811 1.49697e-06 2.82462e-07 2.718 ||| 0-3 ||| 6 668016 +a ||| , and that is to ||| 0.0181818 0.229811 1.49697e-06 2.75872e-07 2.718 ||| 0-4 ||| 55 668016 +a ||| , and that ||| 0.000189502 0.0015873 2.99394e-06 3.87068e-06 2.718 ||| 0-1 ||| 10554 668016 +a ||| , and thereby also ||| 0.166667 0.0015873 1.49697e-06 5.09983e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| , and thereby ||| 0.0107527 0.0015873 1.49697e-06 1.01015e-08 2.718 ||| 0-1 ||| 93 668016 +a ||| , and therefore to ||| 0.0263158 0.229811 1.49697e-06 4.37611e-07 2.718 ||| 0-3 ||| 38 668016 +a ||| , and they live in ||| 1 0.0587624 1.49697e-06 2.95286e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| , and they ||| 0.00127714 0.0015873 1.49697e-06 7.51053e-07 2.718 ||| 0-1 ||| 783 668016 +a ||| , and this at the ||| 0.5 0.0015873 1.49697e-06 3.8221e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| , and this at ||| 0.0434783 0.0015873 1.49697e-06 6.22575e-09 2.718 ||| 0-1 ||| 23 668016 +a ||| , and this has been the case ||| 0.25 0.0015873 1.49697e-06 1.67857e-15 2.718 ||| 0-1 ||| 4 668016 +a ||| , and this has been the ||| 0.142857 0.0015873 1.49697e-06 1.5689e-12 2.718 ||| 0-1 ||| 7 668016 +a ||| , and this has been ||| 0.0212766 0.0015873 1.49697e-06 2.55556e-11 2.718 ||| 0-1 ||| 47 668016 +a ||| , and this has ||| 0.0078125 0.0015873 1.49697e-06 7.6532e-09 2.718 ||| 0-1 ||| 128 668016 +a ||| , and this in ||| 0.047619 0.0587624 2.99394e-06 5.79908e-07 2.718 ||| 0-3 ||| 42 668016 +a ||| , and this with a ||| 0.25 0.0571592 1.49697e-06 7.14261e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| , and this with ||| 0.125 0.0571592 1.49697e-06 1.61139e-07 2.718 ||| 0-3 ||| 8 668016 +a ||| , and this ||| 0.000613622 0.0015873 4.49091e-06 1.48678e-06 2.718 ||| 0-1 ||| 4889 668016 +a ||| , and to call on you to ||| 1 0.102882 1.49697e-06 2.85856e-14 2.718 ||| 0-4 0-5 0-6 ||| 1 668016 +a ||| , and to eliminate them ||| 1 0.229811 1.49697e-06 1.61417e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| , and to eliminate ||| 0.0909091 0.229811 1.49697e-06 6.01762e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| , and to get down to ||| 0.5 0.229811 1.49697e-06 1.41913e-11 2.718 ||| 0-5 ||| 2 668016 +a ||| , and to thank him ||| 0.25 0.229811 1.49697e-06 1.77491e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| , and to thank ||| 0.03125 0.229811 1.49697e-06 5.53621e-08 2.718 ||| 0-2 ||| 32 668016 +a ||| , and to the ||| 0.00248756 0.229811 1.49697e-06 3.21245e-05 2.718 ||| 0-2 ||| 402 668016 +a ||| , and to this I would like ||| 1 0.229811 1.49697e-06 2.49257e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| , and to this I would ||| 1 0.229811 1.49697e-06 1.40356e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| , and to this I ||| 1 0.229811 1.49697e-06 2.39159e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| , and to this ||| 0.0333333 0.229811 1.49697e-06 3.38106e-06 2.718 ||| 0-2 ||| 30 668016 +a ||| , and to ||| 0.00292113 0.229811 1.79636e-05 0.000523271 2.718 ||| 0-2 ||| 4108 668016 +a ||| , and undermining ||| 0.25 0.0015873 1.49697e-06 1.49566e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| , and which depend upon ||| 1 0.19056 1.49697e-06 4.60301e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| , and will be ||| 0.0107527 0.0561595 1.49697e-06 3.81267e-07 2.718 ||| 0-2 ||| 93 668016 +a ||| , and will undermine ||| 1 0.0015873 1.49697e-06 2.22954e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , and will ||| 0.00374532 0.0015873 2.99394e-06 1.99066e-06 2.718 ||| 0-1 ||| 534 668016 +a ||| , and with it ||| 0.0277778 0.0289023 1.49697e-06 7.39681e-09 2.718 ||| 0-2 0-3 ||| 36 668016 +a ||| , and with regard to ||| 0.0232558 0.229811 1.49697e-06 2.27833e-09 2.718 ||| 0-4 ||| 43 668016 +a ||| , and ||| 0.000311639 0.0015873 8.68243e-05 0.000230102 2.718 ||| 0-1 ||| 186113 668016 +a ||| , another effect of this kind of ||| 1 0.0188479 1.49697e-06 4.86332e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| , another effect of this kind ||| 1 0.0188479 1.49697e-06 8.94584e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| , another effect of this ||| 1 0.0188479 1.49697e-06 1.83316e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| , another effect of ||| 1 0.0188479 1.49697e-06 2.8371e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| , answer ||| 0.111111 0.0026107 1.49697e-06 2.50435e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| , apply to ||| 0.0833333 0.229811 2.99394e-06 6.01144e-06 2.718 ||| 0-2 ||| 24 668016 +a ||| , applying ||| 0.00990099 0.0003493 1.49697e-06 1.07329e-07 2.718 ||| 0-1 ||| 101 668016 +a ||| , are all about ||| 0.5 0.0526361 1.49697e-06 4.30871e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| , are going to ||| 0.0243902 0.229811 1.49697e-06 5.42441e-07 2.718 ||| 0-3 ||| 41 668016 +a ||| , are in ||| 0.00699301 0.0587624 1.49697e-06 0.000108714 2.718 ||| 0-2 ||| 143 668016 +a ||| , are particularly vulnerable to ||| 1 0.229811 1.49697e-06 1.14272e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| , are suffering from ||| 0.333333 0.0435582 1.49697e-06 5.77035e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| , are to ||| 0.0121951 0.229811 1.49697e-06 0.000633841 2.718 ||| 0-2 ||| 82 668016 +a ||| , arms at ||| 1 0.204175 1.49697e-06 1.12431e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| , as Europe , to ||| 0.333333 0.229811 1.49697e-06 2.57236e-08 2.718 ||| 0-4 ||| 3 668016 +a ||| , as I have already said , ||| 0.00934579 0.0243476 1.49697e-06 2.0103e-15 2.718 ||| 0-1 ||| 107 668016 +a ||| , as I have already said ||| 0.00636943 0.0243476 1.49697e-06 1.68572e-14 2.718 ||| 0-1 ||| 157 668016 +a ||| , as I have already ||| 0.00448431 0.0243476 1.49697e-06 4.09852e-11 2.718 ||| 0-1 ||| 223 668016 +a ||| , as I have ||| 0.0018018 0.0243476 1.49697e-06 8.85018e-08 2.718 ||| 0-1 ||| 555 668016 +a ||| , as I might put it ||| 1 0.0243476 1.49697e-06 5.5717e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| , as I might put ||| 1 0.0243476 1.49697e-06 3.13312e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , as I might ||| 0.333333 0.0243476 1.49697e-06 2.84158e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| , as I said , ||| 0.00255102 0.0243476 1.49697e-06 3.62963e-10 2.718 ||| 0-1 ||| 392 668016 +a ||| , as I said ||| 0.00116279 0.0243476 1.49697e-06 3.0436e-09 2.718 ||| 0-1 ||| 860 668016 +a ||| , as I see it ||| 0.00680272 0.0243476 1.49697e-06 9.27216e-11 2.718 ||| 0-1 ||| 147 668016 +a ||| , as I see ||| 0.00833333 0.0243476 1.49697e-06 5.214e-09 2.718 ||| 0-1 ||| 120 668016 +a ||| , as I was saying , ||| 0.0555556 0.0243476 1.49697e-06 4.90476e-13 2.718 ||| 0-1 ||| 18 668016 +a ||| , as I was saying ||| 0.0384615 0.0243476 1.49697e-06 4.11284e-12 2.718 ||| 0-1 ||| 26 668016 +a ||| , as I was ||| 0.0212766 0.0243476 1.49697e-06 2.3184e-08 2.718 ||| 0-1 ||| 47 668016 +a ||| , as I ||| 0.0022831 0.0243476 7.48485e-06 7.39994e-06 2.718 ||| 0-1 ||| 2190 668016 +a ||| , as a follow-up to ||| 0.0769231 0.229811 1.49697e-06 2.72097e-10 2.718 ||| 0-4 ||| 13 668016 +a ||| , as a matter ||| 0.00414938 0.0243476 1.49697e-06 4.81104e-08 2.718 ||| 0-1 ||| 241 668016 +a ||| , as a result of which we ||| 0.333333 0.0243476 1.49697e-06 1.27993e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| , as a result of which ||| 0.0075188 0.0243476 1.49697e-06 1.12747e-11 2.718 ||| 0-1 ||| 133 668016 +a ||| , as a result of ||| 0.00137552 0.0243476 1.49697e-06 1.32727e-09 2.718 ||| 0-1 ||| 727 668016 +a ||| , as a result ||| 0.000870322 0.0243476 1.49697e-06 2.44146e-08 2.718 ||| 0-1 ||| 1149 668016 +a ||| , as a ||| 0.00414723 0.0243476 2.39515e-05 4.63714e-05 2.718 ||| 0-1 ||| 3858 668016 +a ||| , as far as possible , to ||| 0.142857 0.229811 1.49697e-06 2.84071e-13 2.718 ||| 0-6 ||| 7 668016 +a ||| , as far as ||| 0.00180018 0.0243476 2.99394e-06 7.28805e-09 2.718 ||| 0-1 ||| 1111 668016 +a ||| , as far ||| 0.00298507 0.0243476 4.49091e-06 7.14207e-07 2.718 ||| 0-1 ||| 1005 668016 +a ||| , as he ||| 0.00393701 0.0243476 1.49697e-06 9.12975e-07 2.718 ||| 0-1 ||| 254 668016 +a ||| , as it provides a ||| 0.2 0.0243476 1.49697e-06 5.90437e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| , as it provides ||| 0.0454545 0.0243476 1.49697e-06 1.33204e-09 2.718 ||| 0-1 ||| 22 668016 +a ||| , as it were , to ||| 0.0555556 0.229811 1.49697e-06 1.61951e-09 2.718 ||| 0-5 ||| 18 668016 +a ||| , as it were , ||| 0.00724638 0.0243476 2.99394e-06 3.9744e-09 2.718 ||| 0-1 ||| 276 668016 +a ||| , as it were ||| 0.00488998 0.0243476 2.99394e-06 3.3327e-08 2.718 ||| 0-1 ||| 409 668016 +a ||| , as it ||| 0.00166251 0.0243476 5.98788e-06 1.86039e-05 2.718 ||| 0-1 ||| 2406 668016 +a ||| , as laid ||| 0.0555556 0.0243476 1.49697e-06 1.1403e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| , as long ||| 0.0035461 0.0243476 1.49697e-06 3.53913e-07 2.718 ||| 0-1 ||| 282 668016 +a ||| , as must ||| 0.0357143 0.0243476 2.99394e-06 1.61693e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| , as one says , to ||| 1 0.0243476 1.49697e-06 3.19281e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , as one says , to ‘ ||| 1 0.0243476 1.49697e-06 3.58552e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| , as one says , ||| 1 0.0243476 1.49697e-06 3.59315e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , as one says ||| 1 0.0243476 1.49697e-06 3.013e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , as one ||| 0.00497512 0.0243476 1.49697e-06 4.36035e-06 2.718 ||| 0-1 ||| 201 668016 +a ||| , as part ||| 0.00224215 0.0243476 1.49697e-06 1.24722e-06 2.718 ||| 0-1 ||| 446 668016 +a ||| , as rapporteur , ||| 0.00510204 0.0243476 1.49697e-06 9.02002e-09 2.718 ||| 0-1 ||| 196 668016 +a ||| , as rapporteur ||| 0.00243902 0.0243476 1.49697e-06 7.56366e-08 2.718 ||| 0-1 ||| 410 668016 +a ||| , as recently as 1992 that they ||| 1 0.0243476 1.49697e-06 1.15586e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| , as recently as 1992 that ||| 1 0.0243476 1.49697e-06 3.54124e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| , as recently as 1992 ||| 1 0.0243476 1.49697e-06 2.10518e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| , as recently as ||| 0.0833333 0.0243476 1.49697e-06 7.25923e-10 2.718 ||| 0-3 ||| 12 668016 +a ||| , as regards ||| 0.00302725 0.0243476 4.49091e-06 1.46461e-07 2.718 ||| 0-1 ||| 991 668016 +a ||| , as the case may be ||| 0.0357143 0.0243476 1.49697e-06 9.32981e-13 2.718 ||| 0-1 ||| 28 668016 +a ||| , as the case may ||| 0.0454545 0.0243476 1.49697e-06 5.14808e-11 2.718 ||| 0-1 ||| 22 668016 +a ||| , as the case ||| 0.0714286 0.0243476 1.49697e-06 6.87144e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| , as the country ||| 0.0222222 0.0243476 1.49697e-06 2.31146e-08 2.718 ||| 0-1 ||| 45 668016 +a ||| , as the rapporteur said , ||| 0.0344828 0.0243476 1.49697e-06 2.2776e-13 2.718 ||| 0-1 ||| 29 668016 +a ||| , as the rapporteur said ||| 0.0217391 0.0243476 1.49697e-06 1.90986e-12 2.718 ||| 0-1 ||| 46 668016 +a ||| , as the rapporteur ||| 0.00806452 0.0243476 1.49697e-06 4.64347e-09 2.718 ||| 0-1 ||| 124 668016 +a ||| , as the ||| 0.00143143 0.0243476 7.48485e-06 6.4225e-05 2.718 ||| 0-1 ||| 3493 668016 +a ||| , as they have ||| 0.00925926 0.0243476 1.49697e-06 4.08383e-08 2.718 ||| 0-1 ||| 108 668016 +a ||| , as they ||| 0.00243013 0.0243476 2.99394e-06 3.41463e-06 2.718 ||| 0-1 ||| 823 668016 +a ||| , as to ||| 0.0152672 0.229811 2.99394e-06 0.00042629 2.718 ||| 0-2 ||| 131 668016 +a ||| , as usual , ||| 0.00684932 0.0243476 1.49697e-06 2.15832e-09 2.718 ||| 0-1 ||| 146 668016 +a ||| , as usual ||| 0.00598802 0.0243476 1.49697e-06 1.80984e-08 2.718 ||| 0-1 ||| 167 668016 +a ||| , as we say in ||| 0.0144928 0.0587624 1.49697e-06 7.93345e-10 2.718 ||| 0-4 ||| 69 668016 +a ||| , as well as for ||| 0.00378788 0.0683377 1.49697e-06 7.25544e-10 2.718 ||| 0-4 ||| 264 668016 +a ||| , as well as ||| 0.000227531 0.0243476 2.99394e-06 1.69268e-08 2.718 ||| 0-1 ||| 8790 668016 +a ||| , as well ||| 0.000659805 0.0243476 7.48485e-06 1.65878e-06 2.718 ||| 0-1 ||| 7578 668016 +a ||| , as witness ||| 0.0666667 0.0243476 1.49697e-06 1.50646e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| , as you know , to ||| 0.0909091 0.229811 1.49697e-06 4.23475e-11 2.718 ||| 0-5 ||| 11 668016 +a ||| , as you know , ||| 0.00094697 0.0243476 1.49697e-06 1.03924e-10 2.718 ||| 0-1 ||| 1056 668016 +a ||| , as you know ||| 0.000844595 0.0243476 1.49697e-06 8.71448e-10 2.718 ||| 0-1 ||| 1184 668016 +a ||| , as you ||| 0.000558347 0.0243476 1.49697e-06 3.3777e-06 2.718 ||| 0-1 ||| 1791 668016 +a ||| , as ||| 0.00193617 0.0243476 0.000194606 0.00104615 2.718 ||| 0-1 ||| 67143 668016 +a ||| , asks ||| 0.0666667 0.0964912 1.49697e-06 9.57615e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| , aspiring to ||| 0.333333 0.229811 1.49697e-06 2.92426e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| , at European institution level , ||| 1 0.204175 1.49697e-06 3.77978e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| , at European institution level ||| 1 0.204175 1.49697e-06 3.16951e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , at European institution ||| 1 0.204175 1.49697e-06 3.70529e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , at European ||| 0.111111 0.204175 1.49697e-06 1.35725e-05 2.718 ||| 0-1 ||| 9 668016 +a ||| , at a cost ||| 0.05 0.204175 1.49697e-06 1.48968e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| , at a disadvantage ||| 0.125 0.204175 1.49697e-06 1.94306e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| , at a time ||| 0.00200401 0.204175 1.49697e-06 2.95363e-07 2.718 ||| 0-1 ||| 499 668016 +a ||| , at a ||| 0.0179574 0.204175 2.39515e-05 0.000179913 2.718 ||| 0-1 ||| 891 668016 +a ||| , at both ||| 0.030303 0.204175 4.49091e-06 6.72354e-06 2.718 ||| 0-1 ||| 99 668016 +a ||| , at first glance , to ||| 0.25 0.229811 1.49697e-06 2.80791e-14 2.718 ||| 0-5 ||| 4 668016 +a ||| , at least from ||| 0.0333333 0.204175 1.49697e-06 1.60404e-09 2.718 ||| 0-1 ||| 30 668016 +a ||| , at least ||| 0.000993542 0.204175 2.99394e-06 9.96049e-07 2.718 ||| 0-1 ||| 2013 668016 +a ||| , at long last , of ||| 0.5 0.0188479 1.49697e-06 1.30145e-13 2.718 ||| 0-5 ||| 2 668016 +a ||| , at long ||| 0.0416667 0.204175 1.49697e-06 1.37312e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| , at one ||| 0.02 0.204175 1.49697e-06 1.69174e-05 2.718 ||| 0-1 ||| 50 668016 +a ||| , at the end of the day ||| 0.00526316 0.204175 1.49697e-06 9.27058e-14 2.718 ||| 0-1 ||| 190 668016 +a ||| , at the end of the ||| 0.00389105 0.204175 1.49697e-06 3.61849e-10 2.718 ||| 0-1 ||| 257 668016 +a ||| , at the end of ||| 0.00220751 0.204175 1.49697e-06 5.8941e-09 2.718 ||| 0-1 ||| 453 668016 +a ||| , at the end ||| 0.00324149 0.204175 2.99394e-06 1.08419e-07 2.718 ||| 0-1 ||| 617 668016 +a ||| , at the right ||| 1 0.204175 1.49697e-06 1.60697e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| , at the same time , to ||| 0.00884956 0.229811 1.49697e-06 1.6919e-12 2.718 ||| 0-6 ||| 113 668016 +a ||| , at the same time , ||| 0.000480307 0.204175 1.49697e-06 3.92573e-11 2.718 ||| 0-1 ||| 2082 668016 +a ||| , at the same time ||| 0.000856898 0.204175 2.99394e-06 3.29188e-10 2.718 ||| 0-1 ||| 2334 668016 +a ||| , at the same ||| 0.000985707 0.204175 2.99394e-06 2.00517e-07 2.718 ||| 0-1 ||| 2029 668016 +a ||| , at the ||| 0.00733676 0.204175 5.98788e-05 0.000249182 2.718 ||| 0-1 ||| 5452 668016 +a ||| , at this stage in the agenda ||| 0.5 0.204175 1.49697e-06 5.12294e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| , at this stage in the ||| 0.0416667 0.204175 1.49697e-06 5.15906e-12 2.718 ||| 0-1 ||| 24 668016 +a ||| , at this stage in ||| 0.1 0.204175 1.49697e-06 8.40349e-11 2.718 ||| 0-1 ||| 10 668016 +a ||| , at this stage ||| 0.00537634 0.204175 1.49697e-06 3.92604e-09 2.718 ||| 0-1 ||| 186 668016 +a ||| , at this ||| 0.00449775 0.204175 4.49091e-06 2.62261e-05 2.718 ||| 0-1 ||| 667 668016 +a ||| , at yesterday evening ||| 1 0.204175 1.49697e-06 2.15421e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , at yesterday ||| 0.5 0.204175 1.49697e-06 9.66014e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| , at ||| 0.0372418 0.204175 0.000615255 0.00405888 2.718 ||| 0-1 ||| 11036 668016 +a ||| , attacking ||| 0.0769231 0.243421 1.49697e-06 1.20805e-05 2.718 ||| 0-1 ||| 13 668016 +a ||| , attempting as it does so to ||| 1 0.229811 1.49697e-06 1.78612e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| , attempting to ||| 0.047619 0.229811 1.49697e-06 6.18272e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| , attended by representatives of all these ||| 1 0.237833 1.49697e-06 1.27763e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| , attended by representatives of all ||| 1 0.237833 1.49697e-06 1.23193e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| , attended by representatives of ||| 0.333333 0.237833 1.49697e-06 2.60704e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| , attended by representatives ||| 0.333333 0.237833 1.49697e-06 4.79552e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| , attended by ||| 0.0434783 0.237833 1.49697e-06 1.4801e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| , attended ||| 0.0625 0.237833 1.49697e-06 2.81918e-05 2.718 ||| 0-1 ||| 16 668016 +a ||| , away from ||| 0.0243902 0.0435582 1.49697e-06 2.73086e-07 2.718 ||| 0-2 ||| 41 668016 +a ||| , back in ||| 0.0125 0.0562121 1.49697e-06 5.27138e-06 2.718 ||| 0-1 0-2 ||| 80 668016 +a ||| , back to ||| 0.0666667 0.229811 1.49697e-06 2.80979e-05 2.718 ||| 0-2 ||| 15 668016 +a ||| , back ||| 0.00854701 0.0536618 1.49697e-06 8.77357e-05 2.718 ||| 0-1 ||| 117 668016 +a ||| , based on eco-tax ||| 1 0.0782999 1.49697e-06 7.42931e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| , based on ||| 0.00128287 0.0782999 2.99394e-06 1.06133e-06 2.718 ||| 0-2 ||| 1559 668016 +a ||| , be able to ||| 0.0123457 0.229811 1.49697e-06 6.32091e-07 2.718 ||| 0-3 ||| 81 668016 +a ||| , be accorded the same status in ||| 1 0.0587624 1.49697e-06 9.59861e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| , be allowed to ||| 0.1 0.229811 1.49697e-06 1.22572e-07 2.718 ||| 0-3 ||| 10 668016 +a ||| , be an issue for ||| 1 0.0683377 1.49697e-06 2.67884e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| , be conducting a ||| 1 0.140069 1.49697e-06 1.0672e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| , be conducting ||| 1 0.140069 1.49697e-06 2.40762e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| , be given ||| 0.0263158 0.0371011 1.49697e-06 2.28443e-06 2.718 ||| 0-2 ||| 38 668016 +a ||| , be giving ||| 0.2 0.136521 1.49697e-06 2.17983e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| , be introduced to ||| 1 0.229811 1.49697e-06 7.00305e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| , be no more than ||| 1 0.0242272 1.49697e-06 4.82887e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| , be part of ||| 0.25 0.0188479 1.49697e-06 7.62129e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| , be proved to ||| 1 0.229811 1.49697e-06 3.13434e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| , be sent to ||| 1 0.229811 1.49697e-06 4.55009e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| , be signing up to ||| 1 0.229811 1.49697e-06 2.89189e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| , be taken to ||| 0.25 0.229811 1.49697e-06 6.90084e-07 2.718 ||| 0-3 ||| 4 668016 +a ||| , be to ||| 0.125 0.229811 1.49697e-06 0.000757086 2.718 ||| 0-2 ||| 8 668016 +a ||| , be undertaken by ||| 0.333333 0.0337966 1.49697e-06 8.44626e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| , be used to ||| 0.142857 0.229811 1.49697e-06 3.2479e-07 2.718 ||| 0-3 ||| 7 668016 +a ||| , bearing in mind ||| 0.00158983 0.0587624 1.49697e-06 8.04983e-11 2.718 ||| 0-2 ||| 629 668016 +a ||| , bearing in ||| 0.00193798 0.0587624 1.49697e-06 3.19564e-07 2.718 ||| 0-2 ||| 516 668016 +a ||| , because , ladies and gentlemen , ||| 0.333333 0.0015873 1.49697e-06 4.436e-18 2.718 ||| 0-4 ||| 3 668016 +a ||| , because , ladies and gentlemen ||| 0.333333 0.0015873 1.49697e-06 3.71977e-17 2.718 ||| 0-4 ||| 3 668016 +a ||| , because , ladies and ||| 1 0.0015873 1.49697e-06 5.38316e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| , because it ||| 0.000613497 0.0052046 1.49697e-06 6.85208e-07 2.718 ||| 0-1 ||| 1630 668016 +a ||| , because of ||| 0.00115741 0.0052046 1.49697e-06 2.09471e-06 2.718 ||| 0-1 ||| 864 668016 +a ||| , because such a standstill ||| 1 0.0052046 1.49697e-06 2.54414e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| , because such a ||| 0.0909091 0.0052046 1.49697e-06 3.53353e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| , because such ||| 0.030303 0.0052046 1.49697e-06 7.97172e-08 2.718 ||| 0-1 ||| 33 668016 +a ||| , because they happen to ||| 1 0.229811 1.49697e-06 4.8704e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| , because they would ||| 0.125 0.0052046 1.49697e-06 7.38082e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| , because they ||| 0.00181488 0.0052046 1.49697e-06 1.25766e-07 2.718 ||| 0-1 ||| 551 668016 +a ||| , because ||| 0.000295751 0.0052046 1.34727e-05 3.85312e-05 2.718 ||| 0-1 ||| 30431 668016 +a ||| , been a very ||| 0.333333 0.0005823 1.49697e-06 5.8555e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| , been a ||| 0.047619 0.0005823 1.49697e-06 1.68286e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| , been reached ||| 0.5 0.14487 1.49697e-06 4.89606e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| , before which ||| 0.125 0.0203282 1.49697e-06 5.37205e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| , before ||| 0.000301477 0.0203282 1.49697e-06 6.32408e-05 2.718 ||| 0-1 ||| 3317 668016 +a ||| , behind ||| 0.0141844 0.0923313 2.99394e-06 9.18738e-05 2.718 ||| 0-1 ||| 141 668016 +a ||| , being allowed to ||| 1 0.229811 1.49697e-06 1.92473e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| , being ||| 0.00147059 0.0010112 1.49697e-06 6.74982e-06 2.718 ||| 0-1 ||| 680 668016 +a ||| , binding on the ||| 0.25 0.0782999 1.49697e-06 4.88816e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| , binding on ||| 0.166667 0.0782999 1.49697e-06 7.96224e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| , both in terms ||| 0.0047619 0.0587624 1.49697e-06 1.30274e-08 2.718 ||| 0-2 ||| 210 668016 +a ||| , both in the ||| 0.00268817 0.0587624 1.49697e-06 7.28661e-07 2.718 ||| 0-2 ||| 372 668016 +a ||| , both in ||| 0.00309358 0.0587624 5.98788e-06 1.1869e-05 2.718 ||| 0-2 ||| 1293 668016 +a ||| , both now and in ||| 0.0277778 0.0587624 1.49697e-06 3.06246e-10 2.718 ||| 0-4 ||| 36 668016 +a ||| , both to ||| 0.036036 0.229811 5.98788e-06 6.92005e-05 2.718 ||| 0-2 ||| 111 668016 +a ||| , both ||| 0.000732064 0.0205477 5.98788e-06 7.81595e-05 2.718 ||| 0-1 ||| 5464 668016 +a ||| , bring ||| 0.00990099 0.0161903 1.49697e-06 2.27538e-05 2.718 ||| 0-1 ||| 101 668016 +a ||| , brought in ||| 0.25 0.0587624 1.49697e-06 2.00623e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| , building on the ||| 0.030303 0.0782999 1.49697e-06 1.6192e-08 2.718 ||| 0-2 ||| 33 668016 +a ||| , building on ||| 0.0172414 0.0782999 1.49697e-06 2.63749e-07 2.718 ||| 0-2 ||| 58 668016 +a ||| , but I am here ||| 0.25 0.0003961 1.49697e-06 1.2565e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| , but I am ||| 0.0015361 0.0003961 1.49697e-06 6.19639e-11 2.718 ||| 0-1 ||| 651 668016 +a ||| , but I ||| 0.000354359 0.0003961 1.49697e-06 4.8504e-08 2.718 ||| 0-1 ||| 2822 668016 +a ||| , but at ||| 0.00195695 0.204175 1.49697e-06 2.77384e-06 2.718 ||| 0-2 ||| 511 668016 +a ||| , but economic and ||| 0.5 0.0003961 1.49697e-06 1.04187e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| , but economic ||| 0.333333 0.0003961 1.49697e-06 8.31772e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| , but has to ||| 0.0769231 0.229811 1.49697e-06 1.46957e-07 2.718 ||| 0-3 ||| 13 668016 +a ||| , but if it wishes to do ||| 0.333333 0.0014881 1.49697e-06 3.03308e-18 2.718 ||| 0-2 ||| 3 668016 +a ||| , but if it wishes to ||| 0.333333 0.0014881 1.49697e-06 8.82914e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| , but if it wishes ||| 0.333333 0.0014881 1.49697e-06 9.93622e-15 2.718 ||| 0-2 ||| 3 668016 +a ||| , but if it ||| 0.0294118 0.0014881 1.49697e-06 1.8783e-10 2.718 ||| 0-2 ||| 34 668016 +a ||| , but if ||| 0.00127714 0.0014881 1.49697e-06 1.05622e-08 2.718 ||| 0-2 ||| 783 668016 +a ||| , but it is better not to ||| 1 0.229811 1.49697e-06 9.22967e-15 2.718 ||| 0-6 ||| 1 668016 +a ||| , but no less importantly , as ||| 1 0.0243476 1.49697e-06 1.2651e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| , but on ||| 0.00167504 0.0782999 1.49697e-06 3.0917e-06 2.718 ||| 0-2 ||| 597 668016 +a ||| , but using ||| 0.0434783 0.0106396 1.49697e-06 6.25095e-09 2.718 ||| 0-2 ||| 23 668016 +a ||| , but ||| 6.02506e-05 0.0003961 8.98182e-06 6.85715e-06 2.718 ||| 0-1 ||| 99584 668016 +a ||| , by and ||| 0.0208333 0.0337966 1.49697e-06 1.229e-05 2.718 ||| 0-1 ||| 48 668016 +a ||| , by definition ||| 0.00653595 0.0337966 1.49697e-06 2.67859e-08 2.718 ||| 0-1 ||| 153 668016 +a ||| , by going against ||| 0.333333 0.05146 1.49697e-06 1.39285e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| , by means of ||| 0.00179211 0.0337966 1.49697e-06 3.38017e-08 2.718 ||| 0-1 ||| 558 668016 +a ||| , by means ||| 0.00307692 0.0337966 2.99394e-06 6.21766e-07 2.718 ||| 0-1 ||| 650 668016 +a ||| , by setting a charge for ||| 1 0.0683377 1.49697e-06 4.89636e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| , by the way , to ||| 0.5 0.229811 1.49697e-06 3.4613e-09 2.718 ||| 0-5 ||| 2 668016 +a ||| , by the ||| 0.00170358 0.0337966 2.99394e-06 6.02357e-05 2.718 ||| 0-1 ||| 1174 668016 +a ||| , by which ||| 0.00641026 0.0337966 2.99394e-06 8.33463e-06 2.718 ||| 0-1 ||| 312 668016 +a ||| , by ||| 0.0107617 0.0337966 0.000134727 0.000981168 2.718 ||| 0-1 ||| 8363 668016 +a ||| , called for what might ||| 0.333333 0.0683377 1.49697e-06 4.11495e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| , called for what ||| 0.333333 0.0683377 1.49697e-06 1.0716e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| , called for ||| 0.0166667 0.0683377 1.49697e-06 7.63739e-07 2.718 ||| 0-2 ||| 60 668016 +a ||| , calling to mind ||| 1 0.229811 1.49697e-06 6.93476e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| , calling to ||| 1 0.229811 1.49697e-06 2.75298e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| , calling ||| 0.0147059 0.0047307 2.99394e-06 2.82634e-06 2.718 ||| 0-1 ||| 136 668016 +a ||| , can you tell me on ||| 0.5 0.0782999 1.49697e-06 2.56871e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| , cannot escape ||| 0.25 0.0829268 1.49697e-06 1.66851e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| , careful look at ||| 1 0.204175 1.49697e-06 3.27736e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| , carried out at ||| 0.5 0.204175 1.49697e-06 4.58174e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| , caused ||| 0.00826446 0.0017836 1.49697e-06 9.77889e-07 2.718 ||| 0-1 ||| 121 668016 +a ||| , certainly , for ||| 0.333333 0.0683377 1.49697e-06 1.31274e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| , co-rapporteur for Lithuania . ( da ||| 0.5 0.0683377 1.49697e-06 1.41306e-25 2.718 ||| 0-2 ||| 2 668016 +a ||| , co-rapporteur for Lithuania . ( ||| 0.5 0.0683377 1.49697e-06 1.64309e-20 2.718 ||| 0-2 ||| 2 668016 +a ||| , co-rapporteur for Lithuania . ||| 0.5 0.0683377 1.49697e-06 1.70374e-17 2.718 ||| 0-2 ||| 2 668016 +a ||| , co-rapporteur for Lithuania ||| 0.5 0.0683377 1.49697e-06 5.62478e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| , co-rapporteur for ||| 0.5 0.0683377 1.49697e-06 1.75774e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| , committed to ||| 0.0588235 0.229811 1.49697e-06 3.45898e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| , compared with ||| 0.003861 0.0571592 1.49697e-06 7.44622e-08 2.718 ||| 0-2 ||| 259 668016 +a ||| , concerning ||| 0.00139665 0.22348 1.49697e-06 0.000487752 2.718 ||| 0-1 ||| 716 668016 +a ||| , concerns young people the world over ||| 1 0.0682544 1.49697e-06 1.62694e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| , condemning them to a life of ||| 1 0.0946124 1.49697e-06 6.81777e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| , condemning them to a life ||| 1 0.0946124 1.49697e-06 1.2541e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| , condemning them to a ||| 1 0.0946124 1.49697e-06 8.27787e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , condemning them to ||| 0.333333 0.0946124 1.49697e-06 1.86751e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| , condemning them ||| 0.333333 0.0946124 1.49697e-06 2.10167e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| , condemning ||| 0.0227273 0.0946124 1.49697e-06 7.83503e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| , conducted directly ||| 1 0.0770934 1.49697e-06 3.93579e-12 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| , conducted ||| 0.0277778 0.0770934 1.49697e-06 1.04122e-07 2.718 ||| 0-0 0-1 ||| 36 668016 +a ||| , confer on ||| 0.5 0.0782999 1.49697e-06 4.9764e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| , consequently , ||| 0.00238663 0.0001191 1.49697e-06 1.41745e-09 2.718 ||| 0-0 ||| 419 668016 +a ||| , consequently ||| 0.00265252 0.0001191 1.49697e-06 1.18859e-08 2.718 ||| 0-0 ||| 377 668016 +a ||| , considering in ||| 0.25 0.0587624 1.49697e-06 2.16387e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| , considering ||| 0.00285714 0.0216861 1.49697e-06 8.70559e-06 2.718 ||| 0-1 ||| 350 668016 +a ||| , contribute to ||| 0.015873 0.229811 1.49697e-06 1.62505e-06 2.718 ||| 0-2 ||| 63 668016 +a ||| , corresponds to an impact velocity ||| 1 0.229811 1.49697e-06 2.63157e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| , corresponds to an impact ||| 1 0.229811 1.49697e-06 6.57894e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| , corresponds to an ||| 0.333333 0.229811 1.49697e-06 7.98415e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| , corresponds to ||| 0.111111 0.229811 1.49697e-06 1.79633e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| , could provide for consumers , ||| 1 0.0683377 1.49697e-06 4.1226e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| , could provide for consumers ||| 1 0.0683377 1.49697e-06 3.45697e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| , could provide for ||| 1 0.0683377 1.49697e-06 9.24324e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| , crime in the cities or ||| 0.5 0.0587624 1.49697e-06 4.04398e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| , crime in the cities ||| 0.5 0.0587624 1.49697e-06 3.53712e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| , crime in the ||| 0.5 0.0587624 1.49697e-06 1.85189e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| , crime in ||| 0.5 0.0587624 1.49697e-06 3.01652e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| , dating right back to ||| 0.333333 0.229811 1.49697e-06 2.41001e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| , defected to ||| 1 0.229811 1.49697e-06 1.671e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| , despite numerous ||| 0.111111 0.453792 1.49697e-06 1.34333e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| , despite the wish ||| 0.333333 0.453792 1.49697e-06 1.38089e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| , despite the ||| 0.00056338 0.453792 1.49697e-06 4.68575e-05 2.718 ||| 0-1 ||| 1775 668016 +a ||| , despite ||| 0.000645891 0.453792 5.98788e-06 0.000763254 2.718 ||| 0-1 ||| 6193 668016 +a ||| , destined to ||| 0.2 0.229811 1.49697e-06 2.71538e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| , did you treat ||| 1 0.271158 1.49697e-06 7.7736e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| , direction of ||| 1 0.0188479 1.49697e-06 3.19933e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| , do not have to ||| 0.25 0.229811 1.49697e-06 5.8598e-09 2.718 ||| 0-4 ||| 4 668016 +a ||| , drawing on ||| 0.025641 0.0782999 1.49697e-06 2.24843e-07 2.718 ||| 0-2 ||| 39 668016 +a ||| , drawn attention to ||| 0.5 0.229811 1.49697e-06 1.55114e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| , drunk in ||| 1 0.0587624 1.49697e-06 1.00312e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| , due to a heavy ||| 0.5 0.229811 1.49697e-06 9.00793e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| , due to a ||| 0.0222222 0.229811 1.49697e-06 5.11814e-07 2.718 ||| 0-2 ||| 45 668016 +a ||| , due to ||| 0.00493218 0.229811 5.98788e-06 1.15466e-05 2.718 ||| 0-2 ||| 811 668016 +a ||| , during the transitional period ||| 0.142857 0.0054313 1.49697e-06 6.89857e-16 2.718 ||| 0-1 ||| 7 668016 +a ||| , during the transitional ||| 1 0.0054313 1.49697e-06 3.95333e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , during the ||| 0.000976562 0.0054313 1.49697e-06 6.81609e-07 2.718 ||| 0-1 ||| 1024 668016 +a ||| , during ||| 0.00229674 0.0054313 7.48485e-06 1.11026e-05 2.718 ||| 0-1 ||| 2177 668016 +a ||| , earlier ||| 0.0163934 0.031057 1.49697e-06 1.86157e-05 2.718 ||| 0-1 ||| 61 668016 +a ||| , educate the people ||| 1 0.249147 1.49697e-06 4.29182e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , educate the ||| 1 0.249147 1.49697e-06 4.87596e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| , educate ||| 0.142857 0.249147 1.49697e-06 7.94236e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| , either , by ||| 1 0.0337966 1.49697e-06 1.01306e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| , either , to ||| 0.125 0.229811 1.49697e-06 4.31331e-06 2.718 ||| 0-3 ||| 8 668016 +a ||| , either on ||| 0.03125 0.0782999 1.49697e-06 3.91688e-06 2.718 ||| 0-2 ||| 32 668016 +a ||| , either to ||| 0.0294118 0.229811 1.49697e-06 3.61689e-05 2.718 ||| 0-2 ||| 34 668016 +a ||| , employing 22 million people - 16 ||| 1 0.178947 1.49697e-06 2.45713e-26 2.718 ||| 0-1 ||| 1 668016 +a ||| , employing 22 million people - ||| 1 0.178947 1.49697e-06 1.11688e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| , employing 22 million people ||| 1 0.178947 1.49697e-06 2.96089e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| , employing 22 million ||| 1 0.178947 1.49697e-06 3.36389e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| , employing 22 ||| 1 0.178947 1.49697e-06 4.62708e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , employing ||| 0.0277778 0.178947 1.49697e-06 9.25416e-06 2.718 ||| 0-1 ||| 36 668016 +a ||| , encourage ||| 0.00775194 0.0131004 1.49697e-06 9.14684e-06 2.718 ||| 0-1 ||| 129 668016 +a ||| , encourages or ||| 1 0.19604 1.49697e-06 2.46373e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| , encourages ||| 0.025 0.19604 1.49697e-06 2.15493e-05 2.718 ||| 0-1 ||| 40 668016 +a ||| , engage in ||| 0.0526316 0.0587624 1.49697e-06 3.48225e-07 2.718 ||| 0-2 ||| 19 668016 +a ||| , equipment - will give ||| 1 0.0241455 1.49697e-06 7.54957e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| , especially , of ||| 0.0714286 0.0188479 1.49697e-06 3.37787e-08 2.718 ||| 0-3 ||| 14 668016 +a ||| , especially in ||| 0.00072648 0.0587624 2.99394e-06 5.75359e-07 2.718 ||| 0-2 ||| 2753 668016 +a ||| , essentially , leave ||| 1 0.0032088 1.49697e-06 4.21033e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| , established OLAF to deal with suspicions ||| 1 0.229811 1.49697e-06 1.41949e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| , established OLAF to deal with ||| 1 0.229811 1.49697e-06 1.29045e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| , established OLAF to deal ||| 1 0.229811 1.49697e-06 2.01806e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| , established OLAF to ||| 1 0.229811 1.49697e-06 4.75284e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| , even though this may not ||| 1 0.0495435 1.49697e-06 9.5504e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| , even though this may ||| 1 0.0495435 1.49697e-06 2.79734e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , even though this ||| 0.0111111 0.0495435 1.49697e-06 3.73377e-10 2.718 ||| 0-1 ||| 90 668016 +a ||| , even though ||| 0.000500877 0.0495435 2.99394e-06 5.77858e-08 2.718 ||| 0-1 ||| 3993 668016 +a ||| , even ||| 0.00116976 0.0495435 1.19758e-05 0.000232726 2.718 ||| 0-1 ||| 6839 668016 +a ||| , eventually , ||| 0.0298507 0.0344828 2.99394e-06 9.74185e-07 2.718 ||| 0-1 ||| 67 668016 +a ||| , eventually ||| 0.0204082 0.0344828 2.99394e-06 8.16895e-06 2.718 ||| 0-1 ||| 98 668016 +a ||| , exceptionally , to be ||| 0.25 0.229811 1.49697e-06 4.87545e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| , exceptionally , to ||| 0.25 0.229811 1.49697e-06 2.69021e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| , exposed ||| 0.0909091 0.0357143 1.49697e-06 4.56746e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| , faced ||| 0.0238095 0.0494043 1.49697e-06 3.06962e-05 2.718 ||| 0-1 ||| 42 668016 +a ||| , far from being ||| 0.03125 0.0435582 1.49697e-06 1.6679e-09 2.718 ||| 0-2 ||| 32 668016 +a ||| , far from ||| 0.0047619 0.0435582 1.49697e-06 5.86092e-07 2.718 ||| 0-2 ||| 210 668016 +a ||| , favours ||| 0.0666667 0.222874 1.49697e-06 1.65406e-05 2.718 ||| 0-1 ||| 15 668016 +a ||| , finally , is to ||| 1 0.229811 1.49697e-06 1.83774e-08 2.718 ||| 0-4 ||| 1 668016 +a ||| , finally , to ||| 0.0212766 0.229811 1.49697e-06 5.86367e-07 2.718 ||| 0-3 ||| 47 668016 +a ||| , find in ||| 1 0.0587624 1.49697e-06 2.38527e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| , first and ||| 0.00193798 0.0015873 1.49697e-06 1.23887e-07 2.718 ||| 0-2 ||| 516 668016 +a ||| , first on the automobile industry ||| 1 0.0782999 1.49697e-06 2.76547e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| , first on the automobile ||| 1 0.0782999 1.49697e-06 2.09347e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| , first on the ||| 0.25 0.0782999 1.49697e-06 1.49533e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| , first on ||| 0.142857 0.0782999 1.49697e-06 2.43572e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| , first to the ||| 0.333333 0.229811 1.49697e-06 1.38081e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| , first to ||| 0.0833333 0.229811 1.49697e-06 2.24917e-05 2.718 ||| 0-2 ||| 12 668016 +a ||| , focus upon a ||| 1 0.19056 1.49697e-06 8.06622e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| , focus upon ||| 1 0.19056 1.49697e-06 1.81976e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| , follow ||| 0.0344828 0.0017301 1.49697e-06 9.77889e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| , following a ||| 0.00520833 0.0720432 1.49697e-06 5.211e-06 2.718 ||| 0-1 ||| 192 668016 +a ||| , following an ||| 0.030303 0.0720432 1.49697e-06 5.22525e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| , following on ||| 0.0126582 0.0782999 1.49697e-06 5.78167e-07 2.718 ||| 0-2 ||| 79 668016 +a ||| , following political talks , ||| 1 0.0720432 1.49697e-06 6.58163e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| , following political talks ||| 1 0.0720432 1.49697e-06 5.51897e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , following political ||| 1 0.0720432 1.49697e-06 2.09847e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| , following ||| 0.00300526 0.0720432 1.19758e-05 0.000117561 2.718 ||| 0-1 ||| 2662 668016 +a ||| , for a ||| 0.00264901 0.0683377 2.99394e-06 0.000194783 2.718 ||| 0-1 ||| 755 668016 +a ||| , for another example , ||| 1 0.0683377 1.49697e-06 3.67799e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , for another example ||| 1 0.0683377 1.49697e-06 3.08414e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , for another ||| 0.0625 0.0683377 1.49697e-06 1.05948e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| , for both ||| 0.0131579 0.0444427 1.49697e-06 2.88006e-06 2.718 ||| 0-1 0-2 ||| 76 668016 +a ||| , for example , be ||| 0.0384615 0.0683377 1.49697e-06 2.76465e-09 2.718 ||| 0-1 ||| 26 668016 +a ||| , for example , to ||| 0.00527705 0.0683377 2.99394e-06 1.35553e-08 2.718 ||| 0-1 ||| 379 668016 +a ||| , for example , ||| 0.00117333 0.0683377 1.64667e-05 1.5255e-07 2.718 ||| 0-1 ||| 9375 668016 +a ||| , for example - ||| 0.00724638 0.0683377 1.49697e-06 4.82526e-09 2.718 ||| 0-1 ||| 138 668016 +a ||| , for example : if you make ||| 1 0.0683377 1.49697e-06 2.01993e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| , for example : if you ||| 1 0.0683377 1.49697e-06 1.16235e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| , for example : if ||| 1 0.0683377 1.49697e-06 3.60005e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , for example : ||| 0.030303 0.0683377 1.49697e-06 4.30834e-10 2.718 ||| 0-1 ||| 33 668016 +a ||| , for example ; ||| 0.0714286 0.0683377 1.49697e-06 3.93993e-10 2.718 ||| 0-1 ||| 14 668016 +a ||| , for example ||| 0.00140125 0.0683377 2.99394e-05 1.2792e-06 2.718 ||| 0-1 ||| 14273 668016 +a ||| , for following formal rules ||| 1 0.0683377 1.49697e-06 1.10286e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| , for following formal ||| 1 0.0683377 1.49697e-06 9.49102e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , for following ||| 0.333333 0.0683377 1.49697e-06 5.61599e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| , for groups such ||| 1 0.0683377 1.49697e-06 6.01856e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , for groups ||| 0.333333 0.0683377 1.49697e-06 2.90906e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| , for his commitment ||| 0.125 0.0683377 1.49697e-06 7.36841e-11 2.718 ||| 0-1 ||| 8 668016 +a ||| , for his ||| 0.00163132 0.0683377 1.49697e-06 1.3205e-06 2.718 ||| 0-1 ||| 613 668016 +a ||| , for instance ||| 0.000532481 0.0683377 1.49697e-06 2.84754e-07 2.718 ||| 0-1 ||| 1878 668016 +a ||| , for it has been very much ||| 1 0.0683377 1.49697e-06 4.69099e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| , for it has been very ||| 1 0.0683377 1.49697e-06 4.6737e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , for it has been ||| 0.166667 0.0683377 1.49697e-06 1.34321e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| , for it has ||| 0.047619 0.0683377 1.49697e-06 4.02255e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| , for it ||| 0.00232019 0.0683377 1.49697e-06 7.81457e-05 2.718 ||| 0-1 ||| 431 668016 +a ||| , for making himself so unstintingly ||| 1 0.0683377 1.49697e-06 1.13727e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| , for making himself so ||| 1 0.0683377 1.49697e-06 2.84318e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , for making himself ||| 1 0.0683377 1.49697e-06 1.25267e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , for making ||| 0.0689655 0.0683377 2.99394e-06 1.69051e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| , for my part , ||| 0.00900901 0.0683377 1.49697e-06 4.01789e-10 2.718 ||| 0-1 ||| 111 668016 +a ||| , for my part ||| 0.0075188 0.0683377 1.49697e-06 3.36917e-09 2.718 ||| 0-1 ||| 133 668016 +a ||| , for my ||| 0.00588235 0.0683377 1.49697e-06 2.82601e-06 2.718 ||| 0-1 ||| 170 668016 +a ||| , for once ||| 0.00680272 0.0683377 1.49697e-06 1.79817e-06 2.718 ||| 0-1 ||| 147 668016 +a ||| , for one , ||| 0.0333333 0.0683377 2.99394e-06 2.18423e-06 2.718 ||| 0-1 ||| 60 668016 +a ||| , for one thing , by ||| 1 0.0683377 1.49697e-06 4.18447e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , for one thing , ||| 0.0769231 0.0683377 1.49697e-06 7.97026e-10 2.718 ||| 0-1 ||| 13 668016 +a ||| , for one thing ||| 0.0625 0.0683377 1.49697e-06 6.68339e-09 2.718 ||| 0-1 ||| 16 668016 +a ||| , for one ||| 0.0238095 0.0683377 5.98788e-06 1.83157e-05 2.718 ||| 0-1 ||| 168 668016 +a ||| , for present purposes , ||| 1 0.0683377 1.49697e-06 2.31888e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , for present purposes ||| 1 0.0683377 1.49697e-06 1.94448e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , for present ||| 1 0.0683377 1.49697e-06 1.60833e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| , for that matter , ||| 0.012987 0.0683377 1.49697e-06 9.1459e-09 2.718 ||| 0-1 ||| 77 668016 +a ||| , for that matter ||| 0.0185185 0.0683377 2.99394e-06 7.66921e-08 2.718 ||| 0-1 ||| 108 668016 +a ||| , for that reason , ||| 0.0169492 0.0683377 1.49697e-06 2.0619e-09 2.718 ||| 0-1 ||| 59 668016 +a ||| , for that reason ||| 0.0153846 0.0683377 1.49697e-06 1.72899e-08 2.718 ||| 0-1 ||| 65 668016 +a ||| , for that ||| 0.00671141 0.0683377 4.49091e-06 7.39201e-05 2.718 ||| 0-1 ||| 447 668016 +a ||| , for the most ||| 0.0128205 0.0683377 1.49697e-06 1.16598e-07 2.718 ||| 0-1 ||| 78 668016 +a ||| , for the ||| 0.001 0.0683377 7.48485e-06 0.000269777 2.718 ||| 0-1 ||| 5000 668016 +a ||| , for their opinions regarding ||| 1 0.186429 1.49697e-06 7.8655e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| , for there to be ||| 0.05 0.229811 1.49697e-06 1.78362e-08 2.718 ||| 0-3 ||| 20 668016 +a ||| , for there to ||| 0.2 0.229811 1.49697e-06 9.84179e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| , for they are not in ||| 1 0.0587624 1.49697e-06 9.311e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| , for us to be supporting ||| 0.5 0.190621 1.49697e-06 4.87691e-12 2.718 ||| 0-5 ||| 2 668016 +a ||| , for which Mr Milosevic ||| 1 0.0683377 1.49697e-06 3.41151e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| , for which Mr ||| 0.142857 0.0683377 1.49697e-06 2.43679e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| , for which ||| 0.00164609 0.0683377 2.99394e-06 3.73283e-05 2.718 ||| 0-1 ||| 1215 668016 +a ||| , for whom I am standing in ||| 0.25 0.0683377 1.49697e-06 2.99451e-18 2.718 ||| 0-1 ||| 4 668016 +a ||| , for whom I am standing ||| 0.25 0.0683377 1.49697e-06 1.39901e-16 2.718 ||| 0-1 ||| 4 668016 +a ||| , for whom I am ||| 0.5 0.0683377 1.49697e-06 2.64463e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| , for whom I ||| 0.166667 0.0683377 1.49697e-06 2.07016e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| , for whom ||| 0.00609756 0.0683377 1.49697e-06 2.92664e-07 2.718 ||| 0-1 ||| 164 668016 +a ||| , for whose report I also voted ||| 1 0.0683377 1.49697e-06 2.04272e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| , for whose report I also ||| 1 0.0683377 1.49697e-06 5.0688e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| , for whose report I ||| 1 0.0683377 1.49697e-06 1.004e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , for whose report ||| 1 0.0683377 1.49697e-06 1.41938e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , for whose ||| 0.1 0.0683377 1.49697e-06 3.46275e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| , for years , has required our ||| 1 0.0683377 1.49697e-06 1.00506e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| , for years , has required ||| 1 0.0683377 1.49697e-06 7.28624e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| , for years , has ||| 1 0.0683377 1.49697e-06 4.59121e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , for years , ||| 0.0192308 0.0683377 1.49697e-06 8.91929e-08 2.718 ||| 0-1 ||| 52 668016 +a ||| , for years ||| 0.0121951 0.0683377 1.49697e-06 7.4792e-07 2.718 ||| 0-1 ||| 82 668016 +a ||| , for ||| 0.00565338 0.0683377 0.000326339 0.00439436 2.718 ||| 0-1 ||| 38561 668016 +a ||| , forced ||| 0.0169492 0.0684932 1.49697e-06 3.32005e-05 2.718 ||| 0-1 ||| 59 668016 +a ||| , forcing unemployment ||| 0.5 0.335672 1.49697e-06 5.74903e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| , forcing ||| 0.0540541 0.335672 2.99394e-06 3.12447e-05 2.718 ||| 0-1 ||| 37 668016 +a ||| , formed around ||| 0.333333 0.0931303 1.49697e-06 2.0926e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| , frankly , to ||| 0.2 0.229811 1.49697e-06 3.38768e-08 2.718 ||| 0-3 ||| 5 668016 +a ||| , from now on , to ||| 0.25 0.229811 1.49697e-06 1.10577e-10 2.718 ||| 0-5 ||| 4 668016 +a ||| , from state to state , ||| 0.5 0.229811 1.49697e-06 5.1191e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| , from state to state ||| 0.5 0.229811 1.49697e-06 4.29258e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| , from state to ||| 0.5 0.229811 1.49697e-06 1.69936e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| , from the rest ||| 0.333333 0.0435582 1.49697e-06 3.98444e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| , from the ||| 0.000694927 0.0435582 1.49697e-06 5.27043e-05 2.718 ||| 0-1 ||| 1439 668016 +a ||| , from ||| 0.00301023 0.0435582 2.24546e-05 0.000858491 2.718 ||| 0-1 ||| 4983 668016 +a ||| , give thought to ||| 0.5 0.229811 1.49697e-06 2.10374e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| , give ||| 0.015748 0.0241455 5.98788e-06 6.70569e-05 2.718 ||| 0-1 ||| 254 668016 +a ||| , given ||| 0.000859476 0.0371011 5.98788e-06 0.000126052 2.718 ||| 0-1 ||| 4654 668016 +a ||| , giving him the opportunity to ||| 1 0.229811 1.49697e-06 2.3312e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| , giving ||| 0.00210084 0.136521 1.49697e-06 0.00012028 2.718 ||| 0-1 ||| 476 668016 +a ||| , goes out to ||| 1 0.229811 1.49697e-06 2.21621e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| , goes to ||| 0.125 0.229811 1.49697e-06 5.78585e-06 2.718 ||| 0-2 ||| 8 668016 +a ||| , going so far as to ||| 0.1 0.229811 1.49697e-06 5.65296e-13 2.718 ||| 0-5 ||| 10 668016 +a ||| , going to ||| 0.0232558 0.229811 1.49697e-06 3.57511e-05 2.718 ||| 0-2 ||| 43 668016 +a ||| , got to the ||| 1 0.229811 1.49697e-06 2.80573e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| , got to ||| 1 0.229811 1.49697e-06 4.5702e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| , gradually , ||| 0.142857 0.11393 1.49697e-06 3.44023e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| , gradually ||| 0.0625 0.11393 1.49697e-06 2.88477e-05 2.718 ||| 0-1 ||| 16 668016 +a ||| , hand in ||| 0.125 0.0587624 1.49697e-06 2.84169e-06 2.718 ||| 0-2 ||| 8 668016 +a ||| , has , over the course of ||| 1 0.0682544 1.49697e-06 7.1607e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| , has , over the course ||| 1 0.0682544 1.49697e-06 1.31718e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| , has , over the ||| 1 0.0682544 1.49697e-06 1.04397e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| , has , over ||| 1 0.0682544 1.49697e-06 1.7005e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| , has just been deported ||| 1 0.0994152 1.49697e-06 4.00869e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| , has now tried to find ||| 1 0.229811 1.49697e-06 5.88365e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| , has now tried to ||| 1 0.229811 1.49697e-06 1.76739e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| , has to be ||| 0.0172414 0.229811 1.49697e-06 3.8971e-06 2.718 ||| 0-2 ||| 58 668016 +a ||| , has to do ||| 0.0454545 0.229811 1.49697e-06 7.38718e-07 2.718 ||| 0-2 ||| 22 668016 +a ||| , has to ||| 0.0180723 0.229811 4.49091e-06 0.000215037 2.718 ||| 0-2 ||| 166 668016 +a ||| , haunted by ||| 1 0.0337966 1.49697e-06 6.86818e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| , have an adverse effect on ||| 0.2 0.0782999 1.49697e-06 4.65311e-16 2.718 ||| 0-5 ||| 5 668016 +a ||| , have been landing on ||| 0.5 0.0782999 1.49697e-06 9.75624e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| , have them peeled in ||| 1 0.0587624 1.49697e-06 1.60905e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| , have to deal with ||| 0.25 0.229811 1.49697e-06 1.35653e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| , have to deal ||| 0.333333 0.229811 1.49697e-06 2.12139e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| , have to ||| 0.0114943 0.229811 4.49091e-06 0.000499622 2.718 ||| 0-2 ||| 261 668016 +a ||| , having put up ||| 0.5 0.0195077 1.49697e-06 6.18067e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| , he has , in point ||| 1 0.0587624 1.49697e-06 3.35791e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| , he has , in ||| 1 0.0587624 1.49697e-06 3.83849e-09 2.718 ||| 0-4 ||| 1 668016 +a ||| , he refused to ||| 0.333333 0.229811 1.49697e-06 4.3384e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| , help terrorism to ||| 0.5 0.229811 1.49697e-06 2.06333e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| , help to ||| 0.0169492 0.244893 1.49697e-06 0.000274767 2.718 ||| 0-1 0-2 ||| 59 668016 +a ||| , help ||| 0.0153846 0.259976 4.49091e-06 0.000784374 2.718 ||| 0-1 ||| 195 668016 +a ||| , helped ||| 0.0238095 0.1991 1.49697e-06 6.25849e-05 2.718 ||| 0-1 ||| 42 668016 +a ||| , helping ||| 0.00689655 0.302272 1.49697e-06 0.000141937 2.718 ||| 0-1 ||| 145 668016 +a ||| , hence , upon ||| 1 0.19056 1.49697e-06 7.26185e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| , here , to ||| 0.142857 0.229811 1.49697e-06 1.01023e-05 2.718 ||| 0-3 ||| 7 668016 +a ||| , here , ||| 0.00840336 0.00919665 1.49697e-06 2.73256e-08 2.718 ||| 0-0 0-1 ||| 119 668016 +a ||| , here ||| 0.0027933 0.00919665 2.99394e-06 2.29137e-07 2.718 ||| 0-0 0-1 ||| 716 668016 +a ||| , hidden subsidies in ||| 1 0.0587624 1.49697e-06 6.70655e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| , hit ||| 0.0769231 0.121563 1.49697e-06 2.74286e-05 2.718 ||| 0-1 ||| 13 668016 +a ||| , holding ||| 0.0217391 0.0045643 1.49697e-06 1.19255e-06 2.718 ||| 0-1 ||| 46 668016 +a ||| , how to use ||| 0.25 0.229811 1.49697e-06 7.27948e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| , how to ||| 0.0102041 0.229811 1.49697e-06 1.49722e-05 2.718 ||| 0-2 ||| 98 668016 +a ||| , however , I shall also ||| 1 0.0012781 1.49697e-06 3.34513e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| , however , I shall ||| 0.5 0.0012781 1.49697e-06 6.62586e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| , however , I ||| 0.011236 0.0012781 1.49697e-06 1.21219e-08 2.718 ||| 0-1 ||| 89 668016 +a ||| , however , at ||| 0.0645161 0.204175 2.99394e-06 5.36172e-07 2.718 ||| 0-3 ||| 31 668016 +a ||| , however , by ||| 0.0526316 0.0337966 1.49697e-06 1.29611e-07 2.718 ||| 0-3 ||| 19 668016 +a ||| , however , into ||| 0.5 0.107578 1.49697e-06 9.56906e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| , however , is to harmonize ||| 1 0.229811 1.49697e-06 2.42135e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| , however , is to ||| 0.0769231 0.229811 1.49697e-06 1.72954e-07 2.718 ||| 0-4 ||| 13 668016 +a ||| , however , of ||| 0.0243902 0.0188479 1.49697e-06 4.65961e-07 2.718 ||| 0-3 ||| 41 668016 +a ||| , however , on ||| 0.05 0.0782999 1.49697e-06 5.97613e-07 2.718 ||| 0-3 ||| 20 668016 +a ||| , however , reduce consumption by even ||| 1 0.0337966 1.49697e-06 4.98809e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| , however , reduce consumption by ||| 1 0.0337966 1.49697e-06 8.19736e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| , however , the ||| 0.0025641 0.0012781 1.49697e-06 1.05208e-07 2.718 ||| 0-1 ||| 390 668016 +a ||| , however , to a ||| 1 0.229811 1.49697e-06 2.44609e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| , however , to ||| 0.0413223 0.229811 1.49697e-05 5.51843e-06 2.718 ||| 0-3 ||| 242 668016 +a ||| , however , ||| 0.000233263 0.0012781 5.98788e-06 1.71371e-06 2.718 ||| 0-1 ||| 17148 668016 +a ||| , however ||| 0.000258759 0.0012781 7.48485e-06 1.43702e-05 2.718 ||| 0-1 ||| 19323 668016 +a ||| , if I may , to ||| 0.047619 0.229811 1.49697e-06 2.20609e-11 2.718 ||| 0-5 ||| 21 668016 +a ||| , if anything , of ||| 0.333333 0.0188479 1.49697e-06 5.51504e-11 2.718 ||| 0-4 ||| 3 668016 +a ||| , if at all ||| 0.010101 0.204175 1.49697e-06 1.60267e-08 2.718 ||| 0-2 ||| 99 668016 +a ||| , if at ||| 0.010989 0.204175 1.49697e-06 3.3916e-06 2.718 ||| 0-2 ||| 91 668016 +a ||| , if so , to ||| 0.1 0.229811 1.49697e-06 9.44844e-09 2.718 ||| 0-4 ||| 10 668016 +a ||| , if so ||| 0.00819672 0.0014881 1.49697e-06 3.50791e-08 2.718 ||| 0-1 ||| 122 668016 +a ||| , if we are going to be ||| 0.333333 0.229811 1.49697e-06 9.3253e-14 2.718 ||| 0-5 ||| 3 668016 +a ||| , if we are going to ||| 0.027027 0.229811 1.49697e-06 5.14559e-12 2.718 ||| 0-5 ||| 37 668016 +a ||| , if ||| 0.000461281 0.0014881 1.19758e-05 1.54554e-05 2.718 ||| 0-1 ||| 17343 668016 +a ||| , important though they ||| 1 0.0171304 1.49697e-06 2.90269e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| , important though ||| 0.1 0.0171304 1.49697e-06 8.89304e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| , imposed on ||| 0.166667 0.0782999 1.49697e-06 2.52439e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| , in Belgium , ||| 0.05 0.0587624 1.49697e-06 5.55408e-09 2.718 ||| 0-1 ||| 20 668016 +a ||| , in Belgium ||| 0.0344828 0.0587624 1.49697e-06 4.65733e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| , in Poland today , journalists are ||| 1 0.0587624 1.49697e-06 8.92272e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| , in Poland today , journalists ||| 1 0.0587624 1.49697e-06 5.88077e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| , in Poland today , ||| 1 0.0587624 1.49697e-06 2.35231e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , in Poland today ||| 1 0.0587624 1.49697e-06 1.97251e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , in Poland ||| 0.0277778 0.0587624 1.49697e-06 4.37072e-08 2.718 ||| 0-1 ||| 36 668016 +a ||| , in a couple ||| 0.111111 0.0587624 1.49697e-06 4.79576e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| , in a manner of speaking , ||| 0.0833333 0.0587624 1.49697e-06 4.60939e-14 2.718 ||| 0-1 ||| 12 668016 +a ||| , in a manner of speaking ||| 0.0833333 0.0587624 1.49697e-06 3.86516e-13 2.718 ||| 0-1 ||| 12 668016 +a ||| , in a manner of ||| 0.0909091 0.0587624 1.49697e-06 3.36687e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| , in a manner ||| 0.03125 0.0587624 1.49697e-06 6.19319e-08 2.718 ||| 0-1 ||| 32 668016 +a ||| , in a way , generating ||| 1 0.0587624 1.49697e-06 4.98028e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , in a way , ||| 0.0105263 0.0587624 1.49697e-06 8.16439e-08 2.718 ||| 0-1 ||| 95 668016 +a ||| , in a way ||| 0.00625 0.0587624 1.49697e-06 6.84618e-07 2.718 ||| 0-1 ||| 160 668016 +a ||| , in a ||| 0.0035524 0.0587624 1.19758e-05 0.0003176 2.718 ||| 0-1 ||| 2252 668016 +a ||| , in accordance ||| 0.000928505 0.0587624 1.49697e-06 5.69627e-07 2.718 ||| 0-1 ||| 1077 668016 +a ||| , in actual fact , try to ||| 0.25 0.229811 1.49697e-06 6.96067e-15 2.718 ||| 0-6 ||| 4 668016 +a ||| , in actual fact , ||| 0.00917431 0.0587624 2.99394e-06 3.62186e-10 2.718 ||| 0-1 ||| 218 668016 +a ||| , in actual fact ||| 0.00913242 0.0587624 2.99394e-06 3.03708e-09 2.718 ||| 0-1 ||| 219 668016 +a ||| , in actual ||| 0.0454545 0.0587624 2.99394e-06 1.03679e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| , in addition to ||| 0.00102775 0.229811 1.49697e-06 8.81657e-08 2.718 ||| 0-3 ||| 973 668016 +a ||| , in all ||| 0.00171821 0.0587624 1.49697e-06 3.38581e-05 2.718 ||| 0-1 ||| 582 668016 +a ||| , in an ||| 0.00221729 0.0587624 1.49697e-06 3.18468e-05 2.718 ||| 0-1 ||| 451 668016 +a ||| , in any case , ||| 0.00183824 0.0587624 1.49697e-06 1.38246e-09 2.718 ||| 0-1 ||| 544 668016 +a ||| , in any case ||| 0.00166945 0.0587624 1.49697e-06 1.15925e-08 2.718 ||| 0-1 ||| 599 668016 +a ||| , in any ||| 0.00112108 0.0587624 1.49697e-06 1.08351e-05 2.718 ||| 0-1 ||| 892 668016 +a ||| , in both the ||| 0.0212766 0.0587624 1.49697e-06 7.28661e-07 2.718 ||| 0-1 ||| 47 668016 +a ||| , in both ||| 0.00588235 0.0587624 1.49697e-06 1.1869e-05 2.718 ||| 0-1 ||| 170 668016 +a ||| , in brief , ||| 0.05 0.0587624 1.49697e-06 2.05928e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| , in brief ||| 0.037037 0.0587624 1.49697e-06 1.72679e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| , in broad areas , ||| 1 0.0587624 1.49697e-06 6.04371e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , in broad areas ||| 1 0.0587624 1.49697e-06 5.0679e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , in broad ||| 0.25 0.0587624 1.49697e-06 2.21402e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| , in certain ways , to ||| 1 0.229811 1.49697e-06 2.92968e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| , in certain ||| 0.00469484 0.0587624 1.49697e-06 2.04206e-06 2.718 ||| 0-1 ||| 213 668016 +a ||| , in common ||| 0.0136986 0.0587624 1.49697e-06 1.65514e-06 2.718 ||| 0-1 ||| 73 668016 +a ||| , in debating ||| 0.142857 0.0587624 1.49697e-06 8.74145e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| , in doing so , ||| 0.0232558 0.0587624 1.49697e-06 7.11954e-10 2.718 ||| 0-1 ||| 43 668016 +a ||| , in doing so ||| 0.0196078 0.0587624 1.49697e-06 5.97003e-09 2.718 ||| 0-1 ||| 51 668016 +a ||| , in doing ||| 0.0285714 0.0587624 1.49697e-06 2.63032e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| , in due course , ||| 0.0185185 0.0587624 1.49697e-06 2.97984e-10 2.718 ||| 0-1 ||| 54 668016 +a ||| , in due course ||| 0.0178571 0.0587624 1.49697e-06 2.49872e-09 2.718 ||| 0-1 ||| 56 668016 +a ||| , in due ||| 0.08 0.0587624 2.99394e-06 1.98044e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| , in early 2010 ||| 0.5 0.0587624 1.49697e-06 4.17168e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| , in early ||| 0.0344828 0.0587624 1.49697e-06 4.85079e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| , in effect , be allowing ||| 1 0.0587624 1.49697e-06 2.60365e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , in effect , be ||| 0.25 0.0587624 1.49697e-06 5.16598e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| , in effect , treated the same ||| 1 0.0587624 1.49697e-06 7.64662e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| , in effect , treated the ||| 1 0.0587624 1.49697e-06 9.50244e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , in effect , treated ||| 1 0.0587624 1.49697e-06 1.54784e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , in effect , ||| 0.034965 0.0587624 7.48485e-06 2.85053e-07 2.718 ||| 0-1 ||| 143 668016 +a ||| , in effect ||| 0.0326797 0.0587624 7.48485e-06 2.39028e-06 2.718 ||| 0-1 ||| 153 668016 +a ||| , in emotional ||| 1 0.0587624 1.49697e-06 1.57633e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| , in fact , be ||| 0.0153846 0.0587624 1.49697e-06 4.53618e-08 2.718 ||| 0-1 ||| 65 668016 +a ||| , in fact , disregarding ||| 1 0.0587624 1.49697e-06 4.50542e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , in fact , done far ||| 1 0.0587624 1.49697e-06 7.79216e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , in fact , done ||| 0.5 0.0587624 1.49697e-06 1.14137e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| , in fact , the ||| 0.0060241 0.0587624 1.49697e-06 1.53664e-07 2.718 ||| 0-1 ||| 166 668016 +a ||| , in fact , to ||| 0.0178571 0.229811 1.49697e-06 3.12365e-07 2.718 ||| 0-4 ||| 56 668016 +a ||| , in fact , ||| 0.00648824 0.0587624 2.39515e-05 2.50301e-06 2.718 ||| 0-1 ||| 2466 668016 +a ||| , in fact ||| 0.00891266 0.0587624 3.74243e-05 2.09888e-05 2.718 ||| 0-1 ||| 2805 668016 +a ||| , in for ||| 1 0.0587624 1.49697e-06 5.5069e-05 2.718 ||| 0-1 ||| 1 668016 +a ||| , in future years , ||| 0.5 0.0587624 1.49697e-06 3.86266e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| , in future years ||| 0.333333 0.0587624 1.49697e-06 3.239e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| , in future ||| 0.00171527 0.0587624 1.49697e-06 1.90306e-06 2.718 ||| 0-1 ||| 583 668016 +a ||| , in general , ||| 0.00325733 0.0587624 1.49697e-06 1.49448e-07 2.718 ||| 0-1 ||| 307 668016 +a ||| , in general ||| 0.002849 0.0587624 1.49697e-06 1.25318e-06 2.718 ||| 0-1 ||| 351 668016 +a ||| , in her heart of hearts , ||| 1 0.0587624 1.49697e-06 1.21233e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| , in her heart of hearts ||| 1 0.0587624 1.49697e-06 1.01659e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| , in her heart of ||| 1 0.0587624 1.49697e-06 8.54277e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , in her heart ||| 1 0.0587624 1.49697e-06 1.5714e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , in her ||| 0.00980392 0.0587624 1.49697e-06 1.94963e-06 2.718 ||| 0-1 ||| 102 668016 +a ||| , in his ||| 0.00290698 0.0587624 1.49697e-06 2.15312e-06 2.718 ||| 0-1 ||| 344 668016 +a ||| , in its ||| 0.000972763 0.0587624 1.49697e-06 1.02081e-05 2.718 ||| 0-1 ||| 1028 668016 +a ||| , in itself , ||| 0.00763359 0.0587624 1.49697e-06 5.79932e-07 2.718 ||| 0-1 ||| 131 668016 +a ||| , in itself ||| 0.00769231 0.0587624 1.49697e-06 4.86297e-06 2.718 ||| 0-1 ||| 130 668016 +a ||| , in keeping with ||| 0.0117647 0.0571592 1.49697e-06 2.50154e-09 2.718 ||| 0-3 ||| 85 668016 +a ||| , in line with ||| 0.0015949 0.0571592 1.49697e-06 1.25461e-08 2.718 ||| 0-3 ||| 627 668016 +a ||| , in line ||| 0.00172414 0.0587624 1.49697e-06 2.10941e-06 2.718 ||| 0-1 ||| 580 668016 +a ||| , in more recent times , ||| 1 0.0587624 1.49697e-06 9.62588e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| , in more recent times ||| 0.5 0.0587624 1.49697e-06 8.0717e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| , in more recent ||| 1 0.0587624 1.49697e-06 7.95241e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , in more ||| 0.0454545 0.0587624 1.49697e-06 1.6363e-05 2.718 ||| 0-1 ||| 22 668016 +a ||| , in my opinion , ||| 0.000733676 0.0587624 1.49697e-06 1.3485e-10 2.718 ||| 0-1 ||| 1363 668016 +a ||| , in my opinion ||| 0.00121139 0.0587624 2.99394e-06 1.13078e-09 2.718 ||| 0-1 ||| 1651 668016 +a ||| , in my turn , to ||| 0.333333 0.229811 1.49697e-06 1.53749e-11 2.718 ||| 0-5 ||| 3 668016 +a ||| , in my view , ||| 0.000655738 0.0587624 1.49697e-06 4.96375e-10 2.718 ||| 0-1 ||| 1525 668016 +a ||| , in my view ||| 0.000544959 0.0587624 1.49697e-06 4.16231e-09 2.718 ||| 0-1 ||| 1835 668016 +a ||| , in my ||| 0.00104739 0.0587624 5.98788e-06 4.60789e-06 2.718 ||| 0-1 ||| 3819 668016 +a ||| , in no uncertain ||| 1 0.0587624 1.49697e-06 4.23877e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , in no ||| 0.025 0.0587624 1.49697e-06 5.57733e-06 2.718 ||| 0-1 ||| 40 668016 +a ||| , in order to please the American ||| 1 0.0587624 1.49697e-06 4.73777e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| , in order to please the ||| 0.5 0.0587624 1.49697e-06 1.85069e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| , in order to please ||| 0.333333 0.0587624 1.49697e-06 3.01456e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| , in order to ||| 0.000722195 0.0587624 4.49091e-06 3.39096e-07 2.718 ||| 0-1 ||| 4154 668016 +a ||| , in order ||| 0.000643915 0.0587624 2.99394e-06 3.81614e-06 2.718 ||| 0-1 ||| 3106 668016 +a ||| , in other words , ||| 0.00257511 0.0587624 4.49091e-06 2.50176e-10 2.718 ||| 0-1 ||| 1165 668016 +a ||| , in other words let us suspend ||| 1 0.0587624 1.49697e-06 1.06181e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| , in other words let us ||| 1 0.0587624 1.49697e-06 2.46933e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| , in other words let ||| 1 0.0587624 1.49697e-06 8.56752e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , in other words ||| 0.0019926 0.0587624 1.04788e-05 2.09783e-09 2.718 ||| 0-1 ||| 3513 668016 +a ||| , in other ||| 0.00730519 0.0587624 1.34727e-05 9.28241e-06 2.718 ||| 0-1 ||| 1232 668016 +a ||| , in particular , as ||| 0.0212766 0.0243476 1.49697e-06 1.64336e-09 2.718 ||| 0-4 ||| 47 668016 +a ||| , in particular , in the ||| 0.0128205 0.0587624 1.49697e-06 6.9099e-10 2.718 ||| 0-4 ||| 78 668016 +a ||| , in particular , in ||| 0.00584795 0.0587624 1.49697e-06 1.12554e-08 2.718 ||| 0-4 ||| 171 668016 +a ||| , in particular , to ||| 0.00250627 0.229811 1.49697e-06 6.56229e-08 2.718 ||| 0-4 ||| 399 668016 +a ||| , in particular , ||| 0.00209086 0.0587624 1.64667e-05 5.25843e-07 2.718 ||| 0-1 ||| 5261 668016 +a ||| , in particular ||| 0.00133869 0.0587624 1.94606e-05 4.40942e-06 2.718 ||| 0-1 ||| 9711 668016 +a ||| , in point ||| 0.0434783 0.0587624 1.49697e-06 6.26805e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| , in practice , produce ||| 1 0.0587624 1.49697e-06 7.97045e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , in practice , ||| 0.00338983 0.0587624 1.49697e-06 9.00616e-08 2.718 ||| 0-1 ||| 295 668016 +a ||| , in practice ||| 0.00294985 0.0587624 1.49697e-06 7.55204e-07 2.718 ||| 0-1 ||| 339 668016 +a ||| , in principle , ||| 0.0021692 0.0587624 1.49697e-06 1.30991e-07 2.718 ||| 0-1 ||| 461 668016 +a ||| , in principle ||| 0.00186567 0.0587624 1.49697e-06 1.09841e-06 2.718 ||| 0-1 ||| 536 668016 +a ||| , in response to a ||| 0.0357143 0.0587624 1.49697e-06 2.82213e-09 2.718 ||| 0-1 ||| 28 668016 +a ||| , in response to ||| 0.00819672 0.0587624 2.99394e-06 6.3668e-08 2.718 ||| 0-1 ||| 244 668016 +a ||| , in response ||| 0.00377358 0.0587624 1.49697e-06 7.16512e-07 2.718 ||| 0-1 ||| 265 668016 +a ||| , in short ||| 0.00561798 0.0587624 1.49697e-06 1.011e-06 2.718 ||| 0-1 ||| 178 668016 +a ||| , in some way , ||| 0.05 0.0587624 1.49697e-06 2.00639e-09 2.718 ||| 0-1 ||| 20 668016 +a ||| , in some way ||| 0.0434783 0.0587624 1.49697e-06 1.68244e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| , in some ||| 0.00141844 0.0587624 1.49697e-06 7.80497e-06 2.718 ||| 0-1 ||| 705 668016 +a ||| , in speaking and in ||| 1 0.0587624 1.49697e-06 2.20536e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| , in spite of ||| 0.00142248 0.0188479 1.49697e-06 1.44208e-09 2.718 ||| 0-3 ||| 703 668016 +a ||| , in spite ||| 0.00137931 0.0587624 1.49697e-06 1.36854e-07 2.718 ||| 0-1 ||| 725 668016 +a ||| , in such ||| 0.00917431 0.0587624 1.49697e-06 1.48239e-05 2.718 ||| 0-1 ||| 109 668016 +a ||| , in terms of ||| 0.0011325 0.0188479 1.49697e-06 8.28707e-08 2.718 ||| 0-3 ||| 883 668016 +a ||| , in that case , to ||| 1 0.229811 1.49697e-06 1.91915e-09 2.718 ||| 0-5 ||| 1 668016 +a ||| , in the European Union , ||| 0.00952381 0.0587624 1.49697e-06 9.77754e-11 2.718 ||| 0-1 ||| 105 668016 +a ||| , in the European Union ||| 0.00555556 0.0587624 1.49697e-06 8.19887e-10 2.718 ||| 0-1 ||| 180 668016 +a ||| , in the European ||| 0.047619 0.0587624 1.49697e-06 1.47091e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| , in the context of the Agenda ||| 1 0.0587624 1.49697e-06 9.25989e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| , in the context of the ||| 0.00529101 0.0587624 1.49697e-06 1.97019e-10 2.718 ||| 0-1 ||| 189 668016 +a ||| , in the context of ||| 0.00253807 0.0587624 1.49697e-06 3.20921e-09 2.718 ||| 0-1 ||| 394 668016 +a ||| , in the context ||| 0.0021097 0.0587624 1.49697e-06 5.90318e-08 2.718 ||| 0-1 ||| 474 668016 +a ||| , in the direct tradition of ||| 1 0.0188479 1.49697e-06 1.07402e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| , in the form ||| 0.00361011 0.0587624 1.49697e-06 2.00233e-07 2.718 ||| 0-1 ||| 277 668016 +a ||| , in the hope that ||| 0.0078125 0.0008521 1.49697e-06 1.87544e-11 2.718 ||| 0-4 ||| 128 668016 +a ||| , in the main , to ||| 0.333333 0.229811 1.49697e-06 6.52685e-10 2.718 ||| 0-5 ||| 3 668016 +a ||| , in the past , ||| 0.00819672 0.0587624 1.49697e-06 6.71983e-09 2.718 ||| 0-1 ||| 122 668016 +a ||| , in the past ||| 0.00632911 0.0587624 1.49697e-06 5.63486e-08 2.718 ||| 0-1 ||| 158 668016 +a ||| , in the programming stage , ||| 0.333333 0.0587624 1.49697e-06 3.69087e-14 2.718 ||| 0-1 ||| 3 668016 +a ||| , in the programming stage ||| 0.333333 0.0587624 1.49697e-06 3.09495e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| , in the programming ||| 0.25 0.0587624 1.49697e-06 2.06743e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| , in the same ||| 0.00495049 0.0587624 1.49697e-06 3.53971e-07 2.718 ||| 0-1 ||| 202 668016 +a ||| , in the way ||| 0.0140845 0.0587624 1.49697e-06 9.48205e-07 2.718 ||| 0-1 ||| 71 668016 +a ||| , in the ||| 0.00761137 0.0587624 0.000152691 0.00043988 2.718 ||| 0-1 ||| 13401 668016 +a ||| , in their ||| 0.00295858 0.0587624 1.49697e-06 8.30509e-06 2.718 ||| 0-1 ||| 338 668016 +a ||| , in themselves ||| 0.0333333 0.0587624 1.49697e-06 3.07885e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| , in this ||| 0.000661157 0.0587624 2.99394e-06 4.62967e-05 2.718 ||| 0-1 ||| 3025 668016 +a ||| , in turn , ||| 0.00249377 0.0587624 1.49697e-06 1.91573e-07 2.718 ||| 0-1 ||| 401 668016 +a ||| , in turn ||| 0.00252525 0.0587624 1.49697e-06 1.60642e-06 2.718 ||| 0-1 ||| 396 668016 +a ||| , in violation ||| 0.0212766 0.0587624 1.49697e-06 7.73833e-08 2.718 ||| 0-1 ||| 47 668016 +a ||| , in what was ||| 0.25 0.0587624 1.49697e-06 3.14972e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| , in what ||| 0.0121951 0.0587624 1.49697e-06 1.00534e-05 2.718 ||| 0-1 ||| 82 668016 +a ||| , in which ||| 0.000376648 0.0587624 1.49697e-06 6.08648e-05 2.718 ||| 0-1 ||| 2655 668016 +a ||| , in your native English ||| 1 0.0587624 1.49697e-06 1.73363e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| , in your native ||| 1 0.0587624 1.49697e-06 1.11847e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , in your ||| 0.00364964 0.0587624 1.49697e-06 1.83355e-06 2.718 ||| 0-1 ||| 274 668016 +a ||| , in ||| 0.0152645 0.0587624 0.00186373 0.00716512 2.718 ||| 0-1 ||| 81562 668016 +a ||| , incidentally ||| 0.0026455 0.0372222 1.49697e-06 7.29839e-06 2.718 ||| 0-1 ||| 378 668016 +a ||| , includes ||| 0.00925926 0.0310078 1.49697e-06 1.43702e-05 2.718 ||| 0-1 ||| 108 668016 +a ||| , including on revenue ||| 1 0.0782999 1.49697e-06 5.1009e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| , including on ||| 0.0075188 0.0782999 1.49697e-06 4.72305e-07 2.718 ||| 0-2 ||| 133 668016 +a ||| , indeed , also to encourage ||| 1 0.229811 1.49697e-06 7.339e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| , indeed , also to ||| 1 0.229811 1.49697e-06 1.90623e-08 2.718 ||| 0-4 ||| 1 668016 +a ||| , indeed , in ||| 0.027027 0.0587624 1.49697e-06 6.47606e-07 2.718 ||| 0-3 ||| 37 668016 +a ||| , indeed , to ||| 0.030303 0.229811 1.49697e-06 3.77577e-06 2.718 ||| 0-3 ||| 33 668016 +a ||| , indeed , ||| 0.000765111 0.0011519 1.49697e-06 3.89674e-07 2.718 ||| 0-1 ||| 1307 668016 +a ||| , indeed ||| 0.000629723 0.0011519 1.49697e-06 3.26758e-06 2.718 ||| 0-1 ||| 1588 668016 +a ||| , individual rights on ||| 1 0.0782999 1.49697e-06 1.28003e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| , inform ||| 0.0384615 0.130026 1.49697e-06 4.96338e-05 2.718 ||| 0-1 ||| 26 668016 +a ||| , instead of ||| 0.000847458 0.0188479 1.49697e-06 7.12177e-07 2.718 ||| 0-2 ||| 1180 668016 +a ||| , intend to ||| 0.0333333 0.229811 1.49697e-06 3.33783e-06 2.718 ||| 0-2 ||| 30 668016 +a ||| , intercepted at the ||| 1 0.204175 1.49697e-06 9.96728e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| , intercepted at ||| 1 0.204175 1.49697e-06 1.62355e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| , into ||| 0.0367171 0.107578 2.54485e-05 0.000724389 2.718 ||| 0-1 ||| 463 668016 +a ||| , invest in ||| 0.05 0.0587624 1.49697e-06 6.73521e-08 2.718 ||| 0-2 ||| 20 668016 +a ||| , invite ||| 0.1 0.330028 1.49697e-06 7.60845e-05 2.718 ||| 0-1 ||| 10 668016 +a ||| , invited themselves ||| 1 0.245853 1.49697e-06 1.94111e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| , invited ||| 0.0454545 0.245853 1.49697e-06 4.51737e-05 2.718 ||| 0-1 ||| 22 668016 +a ||| , involving ||| 0.00199203 0.102511 1.49697e-06 6.93347e-05 2.718 ||| 0-1 ||| 502 668016 +a ||| , is in ||| 0.00342466 0.0587624 1.49697e-06 0.000224563 2.718 ||| 0-2 ||| 292 668016 +a ||| , is intended to ||| 0.0263158 0.229811 1.49697e-06 1.14955e-07 2.718 ||| 0-3 ||| 38 668016 +a ||| , is responsible for ||| 0.0294118 0.0683377 1.49697e-06 2.03694e-08 2.718 ||| 0-3 ||| 34 668016 +a ||| , is to harmonize ||| 1 0.229811 1.49697e-06 1.83299e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| , is to ||| 0.0103245 0.229811 1.04788e-05 0.00130928 2.718 ||| 0-2 ||| 678 668016 +a ||| , is ||| 0.000106587 0.0001191 2.99394e-06 8.3524e-06 2.718 ||| 0-0 ||| 18764 668016 +a ||| , isolate itself from ||| 1 0.273713 1.49697e-06 1.20176e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , isolate itself ||| 1 0.273713 1.49697e-06 7.4625e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| , isolate ||| 0.25 0.273713 1.49697e-06 1.09953e-05 2.718 ||| 0-1 ||| 4 668016 +a ||| , issues that , in my view ||| 1 0.0587624 1.49697e-06 2.09998e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| , issues that , in my ||| 1 0.0587624 1.49697e-06 2.32479e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| , issues that , in ||| 1 0.0587624 1.49697e-06 3.61497e-09 2.718 ||| 0-4 ||| 1 668016 +a ||| , it allows for ||| 0.333333 0.0683377 1.49697e-06 2.21934e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| , it has contributed to ||| 0.2 0.229811 1.49697e-06 3.59461e-11 2.718 ||| 0-4 ||| 5 668016 +a ||| , it has our ||| 0.333333 0.0006453 1.49697e-06 2.5115e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| , it has ||| 0.000535045 0.0006453 1.49697e-06 1.82072e-07 2.718 ||| 0-1 ||| 1869 668016 +a ||| , it is important to provide ||| 0.0833333 0.229811 1.49697e-06 2.64191e-12 2.718 ||| 0-4 ||| 12 668016 +a ||| , it is important to ||| 0.00179211 0.229811 1.49697e-06 8.93142e-09 2.718 ||| 0-4 ||| 558 668016 +a ||| , it is meeting with ||| 1 0.0571592 1.49697e-06 1.39373e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| , it is more to ||| 1 0.229811 1.49697e-06 5.31717e-08 2.718 ||| 0-4 ||| 1 668016 +a ||| , it is possible for ||| 0.0769231 0.0683377 1.49697e-06 1.96448e-09 2.718 ||| 0-4 ||| 13 668016 +a ||| , it is to be ||| 0.0307692 0.229811 2.99394e-06 4.21958e-07 2.718 ||| 0-3 ||| 65 668016 +a ||| , it is to ||| 0.0141844 0.229811 2.99394e-06 2.32832e-05 2.718 ||| 0-3 ||| 141 668016 +a ||| , it leads to ||| 0.0588235 0.229811 1.49697e-06 2.40698e-08 2.718 ||| 0-3 ||| 17 668016 +a ||| , it responds to ||| 0.333333 0.229811 1.49697e-06 1.85724e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| , it was at ||| 0.2 0.204175 1.49697e-06 2.2614e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| , it will ||| 0.00126904 0.0561595 1.49697e-06 2.98677e-05 2.718 ||| 0-2 ||| 788 668016 +a ||| , it ||| 0.000124805 0.0006453 2.99394e-06 3.53709e-05 2.718 ||| 0-1 ||| 16025 668016 +a ||| , jointly with it , to ||| 1 0.229811 1.49697e-06 1.30298e-11 2.718 ||| 0-5 ||| 1 668016 +a ||| , judging ||| 0.0181818 0.296104 1.49697e-06 1.24144e-05 2.718 ||| 0-1 ||| 55 668016 +a ||| , just as ||| 0.000672947 0.0243476 1.49697e-06 1.31993e-06 2.718 ||| 0-2 ||| 1486 668016 +a ||| , ladies and gentlemen , to petition ||| 1 0.229811 1.49697e-06 6.43568e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| , ladies and gentlemen , to ||| 0.00990099 0.229811 1.49697e-06 2.57427e-13 2.718 ||| 0-5 ||| 101 668016 +a ||| , ladies and gentlemen , ||| 4.59495e-05 0.0015873 1.49697e-06 1.132e-13 2.718 ||| 0-2 ||| 21763 668016 +a ||| , ladies and gentlemen ||| 4.58737e-05 0.0015873 1.49697e-06 9.49233e-13 2.718 ||| 0-2 ||| 21799 668016 +a ||| , ladies and ||| 0.000319285 0.0015873 1.49697e-06 1.37371e-08 2.718 ||| 0-2 ||| 3132 668016 +a ||| , large-scale ||| 0.0322581 0.243923 1.49697e-06 6.33481e-05 2.718 ||| 0-1 ||| 31 668016 +a ||| , last but not least , to ||| 0.25 0.229811 1.49697e-06 6.22976e-16 2.718 ||| 0-6 ||| 4 668016 +a ||| , lead to a ||| 0.0714286 0.229811 1.49697e-06 3.56455e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| , lead to ||| 0.019802 0.229811 2.99394e-06 8.04171e-06 2.718 ||| 0-2 ||| 101 668016 +a ||| , leading to ||| 0.00323625 0.229811 1.49697e-06 3.63861e-06 2.718 ||| 0-2 ||| 309 668016 +a ||| , leave this task to ||| 1 0.229811 1.49697e-06 3.23101e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| , leave ||| 0.0166667 0.0032088 1.49697e-06 1.84845e-06 2.718 ||| 0-1 ||| 60 668016 +a ||| , let me ||| 0.000541418 0.0027309 1.49697e-06 4.45898e-09 2.718 ||| 0-1 ||| 1847 668016 +a ||| , let us congratulate ||| 0.2 0.245244 1.49697e-06 4.67402e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| , let ||| 0.00110988 0.0027309 1.49697e-06 7.40572e-06 2.718 ||| 0-1 ||| 901 668016 +a ||| , lie awake at night thinking ||| 0.333333 0.204175 1.49697e-06 4.41111e-23 2.718 ||| 0-3 ||| 3 668016 +a ||| , lie awake at night ||| 0.333333 0.204175 1.49697e-06 5.95292e-19 2.718 ||| 0-3 ||| 3 668016 +a ||| , lie awake at ||| 0.333333 0.204175 1.49697e-06 6.13703e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| , like other countries , to ||| 1 0.229811 1.49697e-06 4.35201e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| , like ||| 0.000186185 0.0001599 1.49697e-06 1.74112e-06 2.718 ||| 0-1 ||| 5371 668016 +a ||| , look to ||| 0.142857 0.229811 1.49697e-06 1.21774e-05 2.718 ||| 0-2 ||| 7 668016 +a ||| , make an effort on ||| 1 0.0782999 1.49697e-06 3.09249e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| , making it possible to ||| 0.0357143 0.229811 1.49697e-06 2.29234e-10 2.718 ||| 0-4 ||| 28 668016 +a ||| , making them ||| 0.0151515 0.0275406 1.49697e-06 1.45997e-07 2.718 ||| 0-1 ||| 66 668016 +a ||| , making ||| 0.00417101 0.0275406 5.98788e-06 5.44278e-05 2.718 ||| 0-1 ||| 959 668016 +a ||| , meet ||| 0.0208333 0.0482171 1.49697e-06 4.68075e-05 2.718 ||| 0-1 ||| 48 668016 +a ||| , meets in public ||| 1 0.0587624 1.49697e-06 1.0421e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| , meets in ||| 0.5 0.0587624 1.49697e-06 6.44861e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| , merely to ||| 0.166667 0.229811 1.49697e-06 2.66107e-06 2.718 ||| 0-2 ||| 6 668016 +a ||| , more than ||| 0.00136799 0.0242272 1.49697e-06 3.42307e-07 2.718 ||| 0-2 ||| 731 668016 +a ||| , moreover , to ||| 0.0333333 0.229811 1.49697e-06 5.39537e-07 2.718 ||| 0-3 ||| 30 668016 +a ||| , much as ||| 0.0294118 0.0243476 1.49697e-06 1.05002e-06 2.718 ||| 0-2 ||| 34 668016 +a ||| , murdered in ||| 0.142857 0.0587624 1.49697e-06 3.36761e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| , must be ||| 0.00105263 0.0003124 1.49697e-06 2.49016e-08 2.718 ||| 0-2 ||| 950 668016 +a ||| , myself , am elected by ||| 1 0.0337966 1.49697e-06 5.1834e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| , namely , ||| 0.00188679 0.160809 1.49697e-06 2.48837e-05 2.718 ||| 0-1 ||| 530 668016 +a ||| , namely that we are in ||| 0.5 0.0587624 1.49697e-06 3.31753e-12 2.718 ||| 0-5 ||| 2 668016 +a ||| , namely that ||| 0.0018018 0.160809 2.99394e-06 3.50999e-06 2.718 ||| 0-1 ||| 1110 668016 +a ||| , namely to ||| 0.00362319 0.229811 1.49697e-06 6.67566e-06 2.718 ||| 0-2 ||| 276 668016 +a ||| , namely ||| 0.000959898 0.160809 1.34727e-05 0.00020866 2.718 ||| 0-1 ||| 9376 668016 +a ||| , need to be attached ||| 0.333333 0.229811 1.49697e-06 2.22135e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| , need to be ||| 0.0126582 0.229811 1.49697e-06 6.94172e-07 2.718 ||| 0-2 ||| 79 668016 +a ||| , need to ||| 0.00571429 0.229811 1.49697e-06 3.83036e-05 2.718 ||| 0-2 ||| 175 668016 +a ||| , no ||| 0.000417537 0.0002005 1.49697e-06 5.35665e-09 2.718 ||| 0-0 0-1 ||| 2395 668016 +a ||| , nonetheless , to ||| 0.25 0.229811 1.49697e-06 3.80117e-07 2.718 ||| 0-3 ||| 4 668016 +a ||| , normally , for following formal rules ||| 1 0.0683377 1.49697e-06 1.5651e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| , normally , for following formal ||| 1 0.0683377 1.49697e-06 1.3469e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| , normally , for following ||| 1 0.0683377 1.49697e-06 7.96982e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| , normally , for ||| 1 0.0683377 1.49697e-06 6.23617e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| , not afraid to ||| 1 0.229811 1.49697e-06 3.28036e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| , not even a ||| 0.0454545 0.0495435 1.49697e-06 3.5219e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| , not even ||| 0.00319489 0.0495435 1.49697e-06 7.94548e-07 2.718 ||| 0-2 ||| 313 668016 +a ||| , not just upon ||| 0.2 0.19056 1.49697e-06 1.01276e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| , not least , to ||| 0.12 0.229811 4.49091e-06 4.17392e-09 2.718 ||| 0-4 ||| 25 668016 +a ||| , not only in ||| 0.00134589 0.0587624 1.49697e-06 2.72291e-08 2.718 ||| 0-3 ||| 743 668016 +a ||| , not to ||| 0.000969932 0.229811 1.49697e-06 0.000142624 2.718 ||| 0-2 ||| 1031 668016 +a ||| , not unlike ||| 0.0833333 0.321608 1.49697e-06 2.8541e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| , not ||| 6.51551e-05 0.0001191 1.49697e-06 9.09858e-07 2.718 ||| 0-0 ||| 15348 668016 +a ||| , nothing short of ||| 0.5 0.0188479 1.49697e-06 9.26243e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| , now , to ||| 0.166667 0.229811 1.49697e-06 1.02622e-05 2.718 ||| 0-3 ||| 6 668016 +a ||| , of " ||| 0.333333 0.0188479 1.49697e-06 8.35282e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| , of a ||| 0.0025 0.0188479 1.49697e-06 0.000156354 2.718 ||| 0-1 ||| 400 668016 +a ||| , of all viral infections , ||| 1 0.0188479 1.49697e-06 8.74618e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| , of all viral infections ||| 1 0.0188479 1.49697e-06 7.33403e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| , of all viral ||| 1 0.0188479 1.49697e-06 6.6673e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , of all ||| 0.00564972 0.0188479 1.49697e-06 1.66683e-05 2.718 ||| 0-1 ||| 177 668016 +a ||| , of course , already explained this ||| 1 0.0188479 1.49697e-06 2.2869e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| , of course , already explained ||| 1 0.0188479 1.49697e-06 3.53933e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| , of course , already ||| 0.125 0.0188479 1.49697e-06 2.45787e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| , of course , be allowed to ||| 1 0.229811 1.49697e-06 1.00262e-12 2.718 ||| 0-6 ||| 1 668016 +a ||| , of course , by ||| 0.0333333 0.0337966 1.49697e-06 8.02576e-09 2.718 ||| 0-4 ||| 30 668016 +a ||| , of course , established OLAF to ||| 1 0.229811 1.49697e-06 3.88773e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| , of course , first and ||| 0.2 0.0188479 1.49697e-06 3.57929e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| , of course , first ||| 0.166667 0.0188479 1.49697e-06 2.85751e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| , of course , goes out to ||| 1 0.229811 1.49697e-06 1.81282e-13 2.718 ||| 0-6 ||| 1 668016 +a ||| , of course , in ||| 0.0138889 0.0587624 2.99394e-06 5.86093e-08 2.718 ||| 0-4 ||| 144 668016 +a ||| , of course , inform ||| 0.166667 0.130026 1.49697e-06 4.05995e-10 2.718 ||| 0-4 ||| 6 668016 +a ||| , of course , is ||| 0.00393701 0.0188479 1.49697e-06 1.6634e-08 2.718 ||| 0-1 ||| 254 668016 +a ||| , of course , means ||| 0.0625 0.0188479 1.49697e-06 3.36331e-10 2.718 ||| 0-1 ||| 16 668016 +a ||| , of course , put ||| 0.142857 0.0015876 1.49697e-06 4.00922e-11 2.718 ||| 0-4 ||| 7 668016 +a ||| , of course , the additional matter ||| 1 0.0188479 1.49697e-06 1.78829e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| , of course , the additional ||| 1 0.0188479 1.49697e-06 1.72365e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , of course , the ||| 0.0015674 0.0188479 1.49697e-06 3.25832e-08 2.718 ||| 0-1 ||| 638 668016 +a ||| , of course , to the fact ||| 1 0.229811 1.49697e-06 6.14518e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| , of course , to the ||| 0.016129 0.229811 1.49697e-06 2.09783e-08 2.718 ||| 0-4 ||| 62 668016 +a ||| , of course , to ||| 0.0277778 0.229811 1.19758e-05 3.41712e-07 2.718 ||| 0-4 ||| 288 668016 +a ||| , of course , ||| 0.00175695 0.0188479 2.69455e-05 5.30742e-07 2.718 ||| 0-1 ||| 10245 668016 +a ||| , of course ||| 0.00174536 0.0188479 2.84424e-05 4.45049e-06 2.718 ||| 0-1 ||| 10886 668016 +a ||| , of it ||| 0.25 0.0188479 1.49697e-06 6.2728e-05 2.718 ||| 0-1 ||| 4 668016 +a ||| , of necessity , ||| 0.0344828 0.0188479 1.49697e-06 6.98289e-09 2.718 ||| 0-1 ||| 29 668016 +a ||| , of necessity ||| 0.0344828 0.0188479 1.49697e-06 5.85544e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| , of the Commission ||| 0.0454545 0.0188479 1.49697e-06 1.26488e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| , of the ||| 0.000827472 0.0188479 2.99394e-06 0.000216552 2.718 ||| 0-1 ||| 2417 668016 +a ||| , of these ||| 0.0263158 0.0188479 1.49697e-06 3.65824e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| , of ||| 0.00821477 0.0188479 0.000145206 0.00352738 2.718 ||| 0-1 ||| 11808 668016 +a ||| , often at ||| 0.0666667 0.204175 1.49697e-06 5.33337e-07 2.718 ||| 0-2 ||| 15 668016 +a ||| , on EU-Serbia relations ||| 1 0.0782999 1.49697e-06 9.82612e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| , on EU-Serbia ||| 1 0.0782999 1.49697e-06 1.8096e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| , on a ||| 0.00724638 0.0782999 1.19758e-05 0.00020053 2.718 ||| 0-1 ||| 1104 668016 +a ||| , on account of ||| 0.0114943 0.0782999 1.49697e-06 7.07085e-08 2.718 ||| 0-1 ||| 87 668016 +a ||| , on account ||| 0.00952381 0.0782999 1.49697e-06 1.30065e-06 2.718 ||| 0-1 ||| 105 668016 +a ||| , on an ||| 0.0247934 0.0782999 4.49091e-06 2.01078e-05 2.718 ||| 0-1 ||| 121 668016 +a ||| , on assessing ||| 0.166667 0.0782999 1.49697e-06 1.94532e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| , on behalf of ||| 0.000211327 0.0782999 1.49697e-06 7.83327e-08 2.718 ||| 0-1 ||| 4732 668016 +a ||| , on behalf ||| 0.000445765 0.0782999 4.49091e-06 1.44089e-06 2.718 ||| 0-1 ||| 6730 668016 +a ||| , on environmental issues , ||| 0.333333 0.0782999 1.49697e-06 3.70424e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| , on environmental issues ||| 0.333333 0.0782999 1.49697e-06 3.10615e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| , on environmental ||| 1 0.0782999 1.49697e-06 1.23505e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| , on our instructions , ||| 1 0.0782999 1.49697e-06 2.38143e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , on our instructions ||| 1 0.0782999 1.49697e-06 1.99693e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , on our ||| 0.011236 0.0782999 1.49697e-06 6.2404e-06 2.718 ||| 0-1 ||| 89 668016 +a ||| , on pre-accession technical cooperation ||| 1 0.0782999 1.49697e-06 9.65402e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| , on pre-accession technical ||| 1 0.0782999 1.49697e-06 1.04821e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , on pre-accession ||| 1 0.0782999 1.49697e-06 3.1668e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| , on the face of ||| 0.0666667 0.0782999 1.49697e-06 2.52604e-09 2.718 ||| 0-1 ||| 15 668016 +a ||| , on the face ||| 0.0714286 0.0782999 1.49697e-06 4.64653e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| , on the one hand , to ||| 0.016129 0.229811 1.49697e-06 3.38279e-12 2.718 ||| 0-6 ||| 62 668016 +a ||| , on the one hand , ||| 0.000922509 0.0782999 1.49697e-06 5.47506e-11 2.718 ||| 0-1 ||| 1084 668016 +a ||| , on the one hand ||| 0.000860585 0.0782999 1.49697e-06 4.59106e-10 2.718 ||| 0-1 ||| 1162 668016 +a ||| , on the one ||| 0.000877193 0.0782999 1.49697e-06 1.15761e-06 2.718 ||| 0-1 ||| 1140 668016 +a ||| , on the other hand , ||| 0.00187617 0.0782999 2.99394e-06 1.70176e-11 2.718 ||| 0-1 ||| 1066 668016 +a ||| , on the other hand ||| 0.00377715 0.0782999 5.98788e-06 1.427e-10 2.718 ||| 0-1 ||| 1059 668016 +a ||| , on the other ||| 0.00275482 0.0782999 5.98788e-06 3.59808e-07 2.718 ||| 0-1 ||| 1452 668016 +a ||| , on the same information , ||| 1 0.0782999 1.49697e-06 4.41103e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , on the same information ||| 1 0.0782999 1.49697e-06 3.69883e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , on the same ||| 0.02 0.0782999 1.49697e-06 2.23494e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| , on the ||| 0.00216695 0.0782999 3.44303e-05 0.000277736 2.718 ||| 0-1 ||| 10614 668016 +a ||| , on these grounds , ||| 1 0.0782999 1.49697e-06 5.85821e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , on these grounds ||| 1 0.0782999 1.49697e-06 4.91236e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , on these ||| 0.0277778 0.0782999 1.49697e-06 4.69184e-06 2.718 ||| 0-1 ||| 36 668016 +a ||| , on top of ||| 0.02 0.0782999 1.49697e-06 1.69946e-08 2.718 ||| 0-1 ||| 50 668016 +a ||| , on top ||| 0.0166667 0.0782999 1.49697e-06 3.12608e-07 2.718 ||| 0-1 ||| 60 668016 +a ||| , on which they have encountered ||| 1 0.0782999 1.49697e-06 6.00067e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| , on which they have ||| 0.5 0.0782999 1.49697e-06 1.50017e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| , on which they ||| 1 0.0782999 1.49697e-06 1.25434e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| , on which ||| 0.00369914 0.0782999 4.49091e-06 3.84296e-05 2.718 ||| 0-1 ||| 811 668016 +a ||| , on ||| 0.00646337 0.0782999 0.000291909 0.004524 2.718 ||| 0-1 ||| 30170 668016 +a ||| , once again , to ||| 0.0166667 0.229811 1.49697e-06 1.17891e-09 2.718 ||| 0-4 ||| 60 668016 +a ||| , one day , ||| 0.016129 0.0001378 1.49697e-06 4.33588e-11 2.718 ||| 0-1 ||| 62 668016 +a ||| , one day ||| 0.0105263 0.0001378 1.49697e-06 3.63581e-10 2.718 ||| 0-1 ||| 95 668016 +a ||| , one to ||| 0.0277778 0.229811 1.49697e-06 0.000174119 2.718 ||| 0-2 ||| 36 668016 +a ||| , one ||| 0.000188076 0.0001378 1.49697e-06 1.41913e-06 2.718 ||| 0-1 ||| 5317 668016 +a ||| , only addresses in ||| 1 0.0587624 1.49697e-06 3.98775e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| , only with ||| 0.0909091 0.0571592 1.49697e-06 2.21615e-06 2.718 ||| 0-2 ||| 11 668016 +a ||| , only ||| 0.000493583 0.0004289 1.49697e-06 3.48224e-06 2.718 ||| 0-1 ||| 2026 668016 +a ||| , onto ||| 0.0714286 0.207143 1.49697e-06 2.84065e-05 2.718 ||| 0-1 ||| 14 668016 +a ||| , oppressed ||| 0.0833333 0.0413223 1.49697e-06 1.08522e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| , or only for ||| 1 0.0683377 1.49697e-06 5.59229e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| , or rather to ||| 0.0769231 0.229811 1.49697e-06 1.46246e-08 2.718 ||| 0-3 ||| 13 668016 +a ||| , or to ||| 0.00209205 0.229811 1.49697e-06 4.77615e-05 2.718 ||| 0-2 ||| 478 668016 +a ||| , or ||| 6.76682e-05 0.0008359 1.49697e-06 9.25416e-06 2.718 ||| 0-1 ||| 14778 668016 +a ||| , out of ||| 0.00396825 0.0188479 1.49697e-06 1.35113e-05 2.718 ||| 0-2 ||| 252 668016 +a ||| , over 200 ||| 0.1 0.0682544 1.49697e-06 1.38508e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| , over the course of ||| 0.0588235 0.0682544 1.49697e-06 1.1665e-09 2.718 ||| 0-1 ||| 17 668016 +a ||| , over the course ||| 0.0555556 0.0682544 1.49697e-06 2.14572e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| , over the ||| 0.0035524 0.0682544 2.99394e-06 1.70066e-05 2.718 ||| 0-1 ||| 563 668016 +a ||| , over three and ||| 1 0.0682544 1.49697e-06 2.19644e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , over three ||| 0.125 0.0682544 1.49697e-06 1.75352e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| , over to this amendment ||| 1 0.229811 1.49697e-06 8.27904e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| , over to this ||| 1 0.229811 1.49697e-06 1.29969e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| , over to ||| 0.5 0.229811 1.49697e-06 2.01147e-05 2.718 ||| 0-2 ||| 2 668016 +a ||| , over ||| 0.00535834 0.0682544 1.19758e-05 0.000277017 2.718 ||| 0-1 ||| 1493 668016 +a ||| , overnight , into ||| 1 0.107578 1.49697e-06 3.10992e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| , owned by ||| 0.142857 0.0337966 1.49697e-06 6.67194e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| , particularly with regard to the role ||| 1 0.229811 1.49697e-06 4.42496e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| , particularly with regard to the ||| 0.0105263 0.229811 1.49697e-06 1.99322e-12 2.718 ||| 0-4 ||| 95 668016 +a ||| , particularly with regard to ||| 0.00303951 0.229811 1.49697e-06 3.24673e-11 2.718 ||| 0-4 ||| 329 668016 +a ||| , partly on ||| 0.0769231 0.0782999 1.49697e-06 1.52911e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| , partly with ||| 0.0833333 0.0571592 1.49697e-06 6.72948e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| , people living ||| 0.05 0.0079526 1.49697e-06 6.56776e-09 2.718 ||| 0-1 ||| 20 668016 +a ||| , people ||| 0.000899281 0.0079526 1.49697e-06 7.83742e-05 2.718 ||| 0-1 ||| 1112 668016 +a ||| , perhaps specifically for the benefit of ||| 1 0.0188479 1.49697e-06 1.90232e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| , permitted to work ||| 0.5 0.229811 1.49697e-06 7.51e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| , permitted to ||| 0.5 0.229811 1.49697e-06 1.18641e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| , personally , ||| 0.00689655 0.0397531 1.49697e-06 2.09059e-06 2.718 ||| 0-1 ||| 145 668016 +a ||| , personally ||| 0.010929 0.0397531 2.99394e-06 1.75304e-05 2.718 ||| 0-1 ||| 183 668016 +a ||| , pitting ||| 0.25 0.232143 1.49697e-06 1.41913e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| , please , for ||| 0.5 0.0683377 1.49697e-06 4.65878e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| , please , to ||| 0.125 0.229811 2.99394e-06 4.42889e-07 2.718 ||| 0-3 ||| 16 668016 +a ||| , please see to it ||| 0.5 0.229811 1.49697e-06 4.65342e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| , please see to ||| 0.5 0.229811 1.49697e-06 2.61675e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| , possibly , to ||| 0.111111 0.229811 1.49697e-06 2.24185e-07 2.718 ||| 0-3 ||| 9 668016 +a ||| , prompted ||| 0.03125 0.159696 1.49697e-06 9.14684e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| , put pressure on ||| 0.142857 0.0782999 1.49697e-06 2.99788e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| , put ||| 0.0052356 0.0015876 1.49697e-06 4.90137e-06 2.718 ||| 0-1 ||| 191 668016 +a ||| , putting forward his theory , ||| 1 0.049485 1.49697e-06 3.64504e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| , putting forward his theory ||| 1 0.049485 1.49697e-06 3.05652e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| , putting forward his ||| 1 0.049485 1.49697e-06 4.02173e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , putting forward ||| 0.05 0.049485 1.49697e-06 1.33835e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| , putting its hands ||| 0.5 0.049485 1.49697e-06 3.45434e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| , putting its ||| 0.5 0.049485 1.49697e-06 3.42693e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| , putting ||| 0.0101523 0.049485 2.99394e-06 2.40537e-05 2.718 ||| 0-1 ||| 197 668016 +a ||| , rather , to ||| 0.153846 0.229811 2.99394e-06 1.52545e-06 2.718 ||| 0-3 ||| 13 668016 +a ||| , rather than ||| 0.00164541 0.0242272 5.98788e-06 4.58967e-08 2.718 ||| 0-2 ||| 2431 668016 +a ||| , reach ||| 0.047619 0.182593 1.49697e-06 0.000174923 2.718 ||| 0-1 ||| 21 668016 +a ||| , reaches ||| 0.2 0.258232 1.49697e-06 1.62186e-05 2.718 ||| 0-1 ||| 5 668016 +a ||| , reaching ||| 0.0147059 0.185201 1.49697e-06 4.82147e-05 2.718 ||| 0-1 ||| 68 668016 +a ||| , really - that I ||| 1 0.0013612 1.49697e-06 2.70659e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| , reassure Mrs Torres ||| 1 0.284916 1.49697e-06 2.18233e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| , reassure Mrs ||| 1 0.284916 1.49697e-06 3.11761e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| , reassure ||| 0.2 0.284916 1.49697e-06 3.33078e-05 2.718 ||| 0-1 ||| 5 668016 +a ||| , reduce consumption by even a single ||| 1 0.0337966 1.49697e-06 2.65626e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| , reduce consumption by even a ||| 1 0.0337966 1.49697e-06 1.67376e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| , reduce consumption by even ||| 1 0.0337966 1.49697e-06 3.77604e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| , reduce consumption by ||| 1 0.0337966 1.49697e-06 6.2055e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| , reflected by the serious situation of ||| 1 0.0188479 1.49697e-06 1.36251e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| , regarding ||| 0.00486224 0.186429 4.49091e-06 0.000401328 2.718 ||| 0-1 ||| 617 668016 +a ||| , regardless ||| 0.00101626 0.0283814 1.49697e-06 6.96447e-06 2.718 ||| 0-1 ||| 984 668016 +a ||| , respectively , to ||| 0.333333 0.229811 1.49697e-06 6.82517e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| , restricted ' ||| 1 0.0006146 1.49697e-06 3.68665e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , restricted ||| 0.030303 0.0006146 1.49697e-06 1.07329e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| , result in ||| 0.025 0.0587624 1.49697e-06 3.77244e-06 2.718 ||| 0-2 ||| 40 668016 +a ||| , reviewing ||| 0.0555556 0.039924 1.49697e-06 2.28969e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| , seated in ||| 0.5 0.0587624 1.49697e-06 2.57944e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| , seen in ||| 0.142857 0.0587624 1.49697e-06 1.50826e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| , serve ||| 0.0909091 0.122168 2.99394e-06 5.22455e-05 2.718 ||| 0-1 ||| 22 668016 +a ||| , several ||| 0.00247525 0.00057795 1.49697e-06 2.42515e-09 2.718 ||| 0-0 0-1 ||| 404 668016 +a ||| , shall have to ||| 0.5 0.229811 1.49697e-06 2.73093e-07 2.718 ||| 0-3 ||| 2 668016 +a ||| , shipped out to ||| 1 0.229811 1.49697e-06 6.40062e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| , should like to ||| 0.025641 0.229811 1.49697e-06 3.28729e-07 2.718 ||| 0-3 ||| 39 668016 +a ||| , should support it on ||| 0.5 0.0782999 1.49697e-06 1.2188e-10 2.718 ||| 0-4 ||| 2 668016 +a ||| , simply out in ||| 1 0.0587624 1.49697e-06 6.08462e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| , since in ||| 0.00884956 0.0587624 1.49697e-06 9.72307e-07 2.718 ||| 0-2 ||| 113 668016 +a ||| , since ||| 9.68992e-05 0.0050746 1.49697e-06 1.8723e-05 2.718 ||| 0-1 ||| 10320 668016 +a ||| , so as to make sure ||| 1 0.229811 1.49697e-06 2.92901e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| , so as to make ||| 0.037037 0.229811 1.49697e-06 1.68141e-09 2.718 ||| 0-3 ||| 27 668016 +a ||| , so as to ||| 0.0047619 0.229811 5.98788e-06 9.6755e-07 2.718 ||| 0-3 ||| 840 668016 +a ||| , so as ||| 0.00106724 0.0243476 1.49697e-06 2.37445e-06 2.718 ||| 0-2 ||| 937 668016 +a ||| , so close to ||| 0.25 0.229811 1.49697e-06 1.40614e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| , so far as ||| 0.0263158 0.0243476 1.49697e-06 1.62103e-09 2.718 ||| 0-3 ||| 38 668016 +a ||| , so to speak , ||| 0.0052356 0.229811 1.49697e-06 1.52989e-09 2.718 ||| 0-2 ||| 191 668016 +a ||| , so to speak ||| 0.00653595 0.229811 2.99394e-06 1.28287e-08 2.718 ||| 0-2 ||| 306 668016 +a ||| , so to ||| 0.0280374 0.229811 4.49091e-06 9.4817e-05 2.718 ||| 0-2 ||| 107 668016 +a ||| , so ||| 6.35445e-05 0.0007673 1.49697e-06 9.57615e-06 2.718 ||| 0-1 ||| 15737 668016 +a ||| , something for ||| 0.0333333 0.0683377 1.49697e-06 2.43228e-06 2.718 ||| 0-2 ||| 30 668016 +a ||| , sometimes due to ||| 0.333333 0.229811 1.49697e-06 6.52385e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| , sometimes ||| 0.00152905 0.329597 1.49697e-06 0.00033928 2.718 ||| 0-1 ||| 654 668016 +a ||| , speak with ||| 0.333333 0.0571592 1.49697e-06 2.69378e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| , standing at ||| 0.2 0.204175 1.49697e-06 2.14715e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| , starting with the ||| 0.00446429 0.0571592 1.49697e-06 5.58587e-09 2.718 ||| 0-2 ||| 224 668016 +a ||| , starting with ||| 0.00652174 0.0571592 4.49091e-06 9.09873e-08 2.718 ||| 0-2 ||| 460 668016 +a ||| , stock and barrel , to ||| 1 0.229811 1.49697e-06 4.14977e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| , stock and barrel to ||| 1 0.229811 1.49697e-06 3.47975e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| , subject to ||| 0.00554017 0.229811 2.99394e-06 2.25502e-05 2.718 ||| 0-2 ||| 361 668016 +a ||| , such as ||| 0.000232378 0.0243476 4.49091e-06 2.16438e-06 2.718 ||| 0-2 ||| 12910 668016 +a ||| , support ||| 0.00157978 0.0014215 1.49697e-06 3.96552e-08 2.718 ||| 0-0 0-1 ||| 633 668016 +a ||| , supported by ||| 0.00555556 0.0337966 1.49697e-06 5.08245e-08 2.718 ||| 0-2 ||| 180 668016 +a ||| , supporting ||| 0.00384615 0.190621 1.49697e-06 0.000136714 2.718 ||| 0-1 ||| 260 668016 +a ||| , taking into consideration comments ||| 1 0.107578 1.49697e-06 1.66247e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| , taking into consideration ||| 0.0232558 0.107578 2.99394e-06 3.32494e-11 2.718 ||| 0-2 ||| 86 668016 +a ||| , taking into ||| 0.00753296 0.107578 5.98788e-06 3.07865e-07 2.718 ||| 0-2 ||| 531 668016 +a ||| , taking over ||| 0.125 0.0682544 1.49697e-06 1.17732e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| , taking the ||| 0.0121951 0.0112121 1.49697e-06 1.23656e-06 2.718 ||| 0-1 ||| 82 668016 +a ||| , taking ||| 0.000770416 0.0112121 1.49697e-06 2.01421e-05 2.718 ||| 0-1 ||| 1298 668016 +a ||| , tend to ||| 0.0555556 0.229811 1.49697e-06 9.60828e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| , than we are at ||| 1 0.204175 1.49697e-06 2.13582e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| , thank ||| 0.00675676 0.0126162 1.49697e-06 6.95493e-05 2.718 ||| 0-1 ||| 148 668016 +a ||| , thanks to the ||| 0.00229358 0.229811 1.49697e-06 2.07737e-07 2.718 ||| 0-2 ||| 436 668016 +a ||| , thanks to ||| 0.00118765 0.229811 1.49697e-06 3.38378e-06 2.718 ||| 0-2 ||| 842 668016 +a ||| , that being ||| 0.00869565 0.0010112 1.49697e-06 1.13543e-07 2.718 ||| 0-2 ||| 115 668016 +a ||| , that has applied for ||| 0.5 0.0683377 1.49697e-06 4.12086e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| , that has to be said after ||| 1 0.229811 1.49697e-06 7.30696e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| , that has to be said ||| 0.5 0.229811 1.49697e-06 2.6963e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| , that has to be ||| 0.2 0.229811 1.49697e-06 6.55555e-08 2.718 ||| 0-3 ||| 5 668016 +a ||| , that has to ||| 0.1 0.229811 1.49697e-06 3.61727e-06 2.718 ||| 0-3 ||| 10 668016 +a ||| , that help is at hand ||| 1 0.204175 1.49697e-06 1.61842e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| , that help is at ||| 1 0.204175 1.49697e-06 4.08074e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| , that is , in ||| 0.0188679 0.0587624 1.49697e-06 4.50485e-07 2.718 ||| 0-4 ||| 53 668016 +a ||| , that is to say , ||| 0.00172712 0.229811 1.49697e-06 2.51039e-09 2.718 ||| 0-3 ||| 579 668016 +a ||| , that is to say ||| 0.000522466 0.229811 1.49697e-06 2.10507e-08 2.718 ||| 0-3 ||| 1914 668016 +a ||| , that is to ||| 0.00561798 0.229811 2.99394e-06 2.20242e-05 2.718 ||| 0-3 ||| 356 668016 +a ||| , that it would be wise to ||| 0.5 0.229811 1.49697e-06 8.63928e-15 2.718 ||| 0-6 ||| 2 668016 +a ||| , that of ||| 0.00185185 0.0188479 1.49697e-06 5.93361e-05 2.718 ||| 0-2 ||| 540 668016 +a ||| , that they receive their reward ||| 1 0.181122 1.49697e-06 4.93768e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| , that ||| 0.000138956 0.0008521 5.98788e-06 8.14152e-05 2.718 ||| 0-1 ||| 28786 668016 +a ||| , the Committee on Fisheries ||| 0.0147059 0.0782999 1.49697e-06 2.75487e-13 2.718 ||| 0-3 ||| 68 668016 +a ||| , the Committee on ||| 0.000805802 0.0782999 1.49697e-06 4.23826e-08 2.718 ||| 0-3 ||| 1241 668016 +a ||| , the Council may decide to ||| 1 0.229811 1.49697e-06 4.25901e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| , the Council will ||| 0.0204082 0.0561595 1.49697e-06 3.56556e-08 2.718 ||| 0-3 ||| 49 668016 +a ||| , the conditions valid for the ||| 0.333333 0.0683377 1.49697e-06 3.3448e-14 2.718 ||| 0-4 ||| 3 668016 +a ||| , the conditions valid for ||| 0.333333 0.0683377 1.49697e-06 5.44829e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| , the control is made even more ||| 0.333333 0.0495435 1.49697e-06 1.64303e-16 2.718 ||| 0-5 ||| 3 668016 +a ||| , the control is made even ||| 0.333333 0.0495435 1.49697e-06 7.1946e-14 2.718 ||| 0-5 ||| 3 668016 +a ||| , the man in the ||| 0.5 0.0587624 1.49697e-06 1.72022e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| , the man in ||| 0.5 0.0587624 1.49697e-06 2.80203e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| , the need for ||| 0.00387597 0.0683377 1.49697e-06 2.47359e-07 2.718 ||| 0-3 ||| 258 668016 +a ||| , the negative trend in ||| 1 0.0587624 1.49697e-06 1.73955e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| , the objective being to ||| 0.125 0.229811 1.49697e-06 4.88268e-10 2.718 ||| 0-4 ||| 8 668016 +a ||| , the right to pursue ||| 1 0.229811 1.49697e-06 6.48345e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| , the right to ||| 0.00226757 0.229811 1.49697e-06 1.65394e-06 2.718 ||| 0-3 ||| 441 668016 +a ||| , the section covering ||| 1 0.0289544 1.49697e-06 7.54361e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| , the ||| 1.78437e-05 0.0004654 4.49091e-06 0.000182758 2.718 ||| 0-1 ||| 168127 668016 +a ||| , then , can ||| 0.0666667 0.0252938 1.49697e-06 3.60604e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| , then , is to ||| 0.0833333 0.229811 1.49697e-06 2.51444e-07 2.718 ||| 0-4 ||| 12 668016 +a ||| , then , to ||| 0.152174 0.229811 1.04788e-05 8.02282e-06 2.718 ||| 0-3 ||| 46 668016 +a ||| , then , ||| 0.00121065 0.0252938 2.99394e-06 1.2124e-05 2.718 ||| 0-1 ||| 1652 668016 +a ||| , then a closer ||| 1 0.0252938 1.49697e-06 9.59856e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , then a ||| 0.0285714 0.0252938 1.49697e-06 4.50637e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| , then at ||| 0.0217391 0.204175 1.49697e-06 6.53642e-06 2.718 ||| 0-2 ||| 46 668016 +a ||| , then it is clear ||| 0.111111 0.0252938 1.49697e-06 1.88629e-11 2.718 ||| 0-1 ||| 9 668016 +a ||| , then it is ||| 0.00429185 0.0252938 1.49697e-06 5.66623e-08 2.718 ||| 0-1 ||| 233 668016 +a ||| , then it ||| 0.0041841 0.0252938 1.49697e-06 1.80792e-06 2.718 ||| 0-1 ||| 239 668016 +a ||| , then ||| 0.00108167 0.0252938 1.19758e-05 0.000101665 2.718 ||| 0-1 ||| 7396 668016 +a ||| , there is ||| 0.000150263 0.0005768 1.49697e-06 2.76207e-07 2.718 ||| 0-1 ||| 6655 668016 +a ||| , there ||| 0.000191498 0.0005768 1.49697e-06 8.81292e-06 2.718 ||| 0-1 ||| 5222 668016 +a ||| , thereby risking penalising our ||| 1 0.309434 1.49697e-06 3.7812e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| , thereby risking penalising ||| 1 0.309434 1.49697e-06 2.74119e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| , therefore , a case of ||| 0.333333 0.0188479 1.49697e-06 1.66836e-11 2.718 ||| 0-5 ||| 3 668016 +a ||| , therefore , from ||| 0.333333 0.0435582 1.49697e-06 8.56196e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| , therefore , in ||| 0.0135135 0.0587624 1.49697e-06 7.14597e-07 2.718 ||| 0-3 ||| 74 668016 +a ||| , therefore , is to ||| 0.05 0.229811 1.49697e-06 1.30578e-07 2.718 ||| 0-4 ||| 20 668016 +a ||| , therefore the study was not to ||| 1 0.229811 1.49697e-06 7.75431e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| , these are ||| 0.00212766 0.0009806 1.49697e-06 4.09749e-08 2.718 ||| 0-2 ||| 470 668016 +a ||| , these ||| 0.00030021 0.0002685 1.49697e-06 3.05292e-06 2.718 ||| 0-1 ||| 3331 668016 +a ||| , they are being charged by the ||| 1 0.0337966 1.49697e-06 1.40922e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| , they are being charged by ||| 1 0.0337966 1.49697e-06 2.29546e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| , they are prepared to accept their ||| 1 0.229811 1.49697e-06 2.25164e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| , they are prepared to accept ||| 1 0.229811 1.49697e-06 1.94258e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| , they are prepared to ||| 0.166667 0.229811 1.49697e-06 1.7937e-10 2.718 ||| 0-4 ||| 6 668016 +a ||| , this very afternoon , to ||| 1 0.229811 1.49697e-06 1.08645e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| , those ||| 0.00175747 0.00918555 4.49091e-06 2.67806e-07 2.718 ||| 0-0 0-1 ||| 1707 668016 +a ||| , though , as to ||| 0.333333 0.229811 1.49697e-06 1.26228e-08 2.718 ||| 0-4 ||| 3 668016 +a ||| , though , for ||| 0.125 0.0683377 2.99394e-06 1.30121e-07 2.718 ||| 0-3 ||| 16 668016 +a ||| , though , is ||| 0.00813008 0.0171304 1.49697e-06 8.66486e-08 2.718 ||| 0-1 ||| 123 668016 +a ||| , though , look to ||| 1 0.229811 1.49697e-06 3.60586e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| , though , to ||| 0.0588235 0.229811 2.99394e-06 1.237e-06 2.718 ||| 0-3 ||| 34 668016 +a ||| , though , ||| 0.000979912 0.0171304 2.99394e-06 2.7647e-06 2.718 ||| 0-1 ||| 2041 668016 +a ||| , though ||| 0.00116584 0.0171304 5.98788e-06 2.31831e-05 2.718 ||| 0-1 ||| 3431 668016 +a ||| , through a concession ||| 1 0.230708 1.49697e-06 1.5127e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , through a ||| 0.00571429 0.230708 1.49697e-06 4.20194e-05 2.718 ||| 0-1 ||| 175 668016 +a ||| , through means ||| 1 0.230708 1.49697e-06 6.00727e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| , through voting , can ||| 0.166667 0.230708 1.49697e-06 1.30799e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| , through voting , ||| 0.166667 0.230708 1.49697e-06 4.39763e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| , through voting ||| 0.166667 0.230708 1.49697e-06 3.68759e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| , through ||| 0.00307765 0.230708 1.94606e-05 0.000947968 2.718 ||| 0-1 ||| 4224 668016 +a ||| , thus enabling it ||| 0.428571 0.0053457 4.49091e-06 4.94499e-12 2.718 ||| 0-2 ||| 7 668016 +a ||| , thus enabling ||| 0.0483871 0.0053457 4.49091e-06 2.78071e-10 2.718 ||| 0-2 ||| 62 668016 +a ||| , thus taking ||| 0.125 0.0112121 1.49697e-06 3.42819e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| , to Kosovo ||| 0.333333 0.229811 1.49697e-06 1.02349e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| , to Mr Patten ' ||| 1 0.229811 1.49697e-06 1.0304e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , to Mr Patten ||| 1 0.229811 1.49697e-06 2.99979e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , to Mr ||| 0.0153846 0.229811 1.49697e-06 2.72708e-05 2.718 ||| 0-1 ||| 65 668016 +a ||| , to a great extent ||| 0.0285714 0.229811 1.49697e-06 1.39869e-10 2.718 ||| 0-1 ||| 35 668016 +a ||| , to a great ||| 0.0277778 0.229811 1.49697e-06 7.27724e-07 2.718 ||| 0-1 ||| 36 668016 +a ||| , to a large extent , to ||| 0.0714286 0.229811 1.49697e-06 5.79662e-13 2.718 ||| 0-6 ||| 14 668016 +a ||| , to a ||| 0.0139616 0.229811 1.19758e-05 0.00185172 2.718 ||| 0-1 ||| 573 668016 +a ||| , to access ||| 0.0454545 0.229811 1.49697e-06 3.59266e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| , to achieve ||| 0.00495049 0.229811 1.49697e-06 9.54561e-06 2.718 ||| 0-1 ||| 202 668016 +a ||| , to all outward appearances ||| 1 0.229811 1.49697e-06 4.77718e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| , to all outward ||| 1 0.229811 1.49697e-06 2.17145e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , to all ||| 0.0124224 0.229811 2.99394e-06 0.000197404 2.718 ||| 0-1 ||| 161 668016 +a ||| , to allow ||| 0.00518135 0.229811 1.49697e-06 1.01346e-05 2.718 ||| 0-1 ||| 193 668016 +a ||| , to also ||| 0.0833333 0.229811 1.49697e-06 0.000210906 2.718 ||| 0-1 ||| 12 668016 +a ||| , to be able to ||| 0.00819672 0.229811 1.49697e-06 5.61665e-08 2.718 ||| 0-4 ||| 122 668016 +a ||| , to be bound by ||| 1 0.229811 1.49697e-06 2.04701e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , to be bound ||| 1 0.229811 1.49697e-06 3.89899e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| , to be deducted ||| 1 0.229811 1.49697e-06 2.42268e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| , to be extended ||| 0.111111 0.229811 1.49697e-06 2.74822e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| , to be fired upon ||| 0.5 0.229811 1.49697e-06 7.72198e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| , to be fired ||| 0.5 0.229811 1.49697e-06 3.25547e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| , to be incurred ||| 1 0.229811 1.49697e-06 7.11661e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| , to be perfectly ||| 0.142857 0.229811 1.49697e-06 2.8845e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| , to be ||| 0.0144144 0.229811 3.59273e-05 0.000757086 2.718 ||| 0-1 ||| 1665 668016 +a ||| , to both ||| 0.0769231 0.229811 1.49697e-06 6.92005e-05 2.718 ||| 0-1 ||| 13 668016 +a ||| , to break and overturn ||| 1 0.0015873 1.49697e-06 6.54491e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| , to break and ||| 1 0.0015873 1.49697e-06 5.94992e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| , to breed ||| 1 0.229811 1.49697e-06 7.51952e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| , to call on ||| 0.047619 0.0782999 1.49697e-06 8.92428e-08 2.718 ||| 0-3 ||| 21 668016 +a ||| , to call ||| 0.016129 0.229811 1.49697e-06 9.27407e-06 2.718 ||| 0-1 ||| 62 668016 +a ||| , to carry out a ||| 0.0666667 0.229811 1.49697e-06 1.30153e-09 2.718 ||| 0-1 ||| 15 668016 +a ||| , to carry out ||| 0.015873 0.229811 1.49697e-06 2.93628e-08 2.718 ||| 0-1 ||| 63 668016 +a ||| , to carry ||| 0.0645161 0.229811 2.99394e-06 7.66573e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| , to catch ||| 0.1 0.229811 1.49697e-06 7.22709e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| , to clone ||| 1 0.229811 1.49697e-06 1.671e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| , to combat ||| 0.00943396 0.229811 1.49697e-06 8.10437e-07 2.718 ||| 0-1 ||| 106 668016 +a ||| , to come to ||| 0.0357143 0.229811 1.49697e-06 3.15265e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| , to come ||| 0.0289855 0.229811 2.99394e-06 3.54796e-05 2.718 ||| 0-1 ||| 69 668016 +a ||| , to comply with ||| 0.0357143 0.229811 1.49697e-06 1.25017e-08 2.718 ||| 0-1 ||| 28 668016 +a ||| , to comply ||| 0.0833333 0.229811 1.49697e-06 1.95508e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| , to condone ||| 1 0.229811 1.49697e-06 5.84852e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| , to conduct hearings of ||| 1 0.0188479 1.49697e-06 8.10013e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| , to correct ||| 0.0357143 0.229811 1.49697e-06 1.5039e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| , to discuss ||| 0.00934579 0.229811 1.49697e-06 1.74202e-06 2.718 ||| 0-1 ||| 107 668016 +a ||| , to do with ||| 0.0588235 0.229811 1.49697e-06 9.17675e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| , to do ||| 0.00584795 0.229811 1.49697e-06 0.00014351 2.718 ||| 0-1 ||| 171 668016 +a ||| , to draw these ||| 1 0.229811 1.49697e-06 5.12968e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| , to draw ||| 0.015625 0.229811 1.49697e-06 4.94617e-06 2.718 ||| 0-1 ||| 64 668016 +a ||| , to ensure that ||| 0.00158479 0.229811 1.49697e-06 3.15102e-07 2.718 ||| 0-1 ||| 631 668016 +a ||| , to ensure ||| 0.00379507 0.229811 5.98788e-06 1.8732e-05 2.718 ||| 0-1 ||| 1054 668016 +a ||| , to enter into ||| 0.08 0.107578 2.99394e-06 3.17334e-09 2.718 ||| 0-3 ||| 25 668016 +a ||| , to expect ||| 0.166667 0.229811 1.49697e-06 2.22661e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| , to express my own ||| 1 0.229811 1.49697e-06 4.62284e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| , to express my ||| 0.0204082 0.229811 1.49697e-06 2.72686e-09 2.718 ||| 0-1 ||| 49 668016 +a ||| , to express ||| 0.00621118 0.229811 1.49697e-06 4.24017e-06 2.718 ||| 0-1 ||| 161 668016 +a ||| , to gain ||| 0.0555556 0.229811 1.49697e-06 2.33105e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| , to get it back into ||| 0.333333 0.107578 1.49697e-06 3.36602e-13 2.718 ||| 0-5 ||| 3 668016 +a ||| , to give ||| 0.00257732 0.229811 1.49697e-06 2.53157e-05 2.718 ||| 0-1 ||| 388 668016 +a ||| , to have ||| 0.00251256 0.229811 1.49697e-06 0.000499622 2.718 ||| 0-1 ||| 398 668016 +a ||| , to impose ||| 0.0227273 0.229811 1.49697e-06 1.36605e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| , to incorporate ||| 0.0588235 0.229811 1.49697e-06 5.55609e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| , to indicate ||| 0.0833333 0.229811 1.49697e-06 9.19052e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| , to just ||| 0.1 0.229811 1.49697e-06 5.27077e-05 2.718 ||| 0-1 ||| 10 668016 +a ||| , to keep on ||| 0.25 0.0782999 1.49697e-06 6.26307e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| , to largely ||| 1 0.229811 1.49697e-06 1.36605e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| , to lay into ||| 1 0.107578 1.49697e-06 2.66483e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| , to make him ||| 1 0.229811 1.49697e-06 2.32745e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| , to make it possible ||| 0.0625 0.229811 1.49697e-06 1.03551e-09 2.718 ||| 0-1 ||| 16 668016 +a ||| , to make it ||| 0.012987 0.229811 1.49697e-06 1.291e-06 2.718 ||| 0-1 ||| 77 668016 +a ||| , to make ||| 0.00387597 0.229811 4.49091e-06 7.25968e-05 2.718 ||| 0-1 ||| 774 668016 +a ||| , to my ||| 0.00293255 0.229811 1.49697e-06 2.68656e-05 2.718 ||| 0-1 ||| 341 668016 +a ||| , to name just two ||| 0.166667 0.229811 1.49697e-06 1.08901e-12 2.718 ||| 0-1 ||| 6 668016 +a ||| , to name just ||| 0.030303 0.229811 1.49697e-06 4.60665e-09 2.718 ||| 0-1 ||| 33 668016 +a ||| , to name ||| 0.011236 0.229811 1.49697e-06 3.65114e-06 2.718 ||| 0-1 ||| 89 668016 +a ||| , to one ||| 0.0625 0.229811 1.49697e-06 0.000174119 2.718 ||| 0-1 ||| 16 668016 +a ||| , to petition ||| 0.166667 0.229811 1.49697e-06 1.04438e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| , to preserve ||| 0.0243902 0.229811 1.49697e-06 4.80414e-07 2.718 ||| 0-1 ||| 41 668016 +a ||| , to provide ||| 0.0034965 0.229811 1.49697e-06 1.23571e-05 2.718 ||| 0-1 ||| 286 668016 +a ||| , to pull our carriages ||| 1 0.229811 1.49697e-06 5.48586e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| , to pull our ||| 1 0.229811 1.49697e-06 1.37147e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| , to pull ||| 0.333333 0.229811 1.49697e-06 9.94248e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| , to put ||| 0.00395257 0.229811 1.49697e-06 4.60612e-05 2.718 ||| 0-1 ||| 253 668016 +a ||| , to quote ||| 0.0138889 0.229811 1.49697e-06 1.86317e-06 2.718 ||| 0-1 ||| 72 668016 +a ||| , to refer ||| 0.0322581 0.229811 1.49697e-06 3.26264e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| , to refuse or ||| 1 0.229811 1.49697e-06 4.96719e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , to refuse ||| 0.0555556 0.229811 1.49697e-06 4.34461e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| , to relate in ||| 0.5 0.0587624 1.49697e-06 1.57897e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| , to say the ||| 0.00746269 0.229811 1.49697e-06 2.45129e-06 2.718 ||| 0-1 ||| 134 668016 +a ||| , to say ||| 0.00903614 0.229811 4.49091e-06 3.99287e-05 2.718 ||| 0-1 ||| 332 668016 +a ||| , to serve ||| 0.0344828 0.229811 1.49697e-06 2.85742e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| , to settle ||| 0.25 0.229811 1.49697e-06 3.30023e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| , to sing from ||| 1 0.0435582 1.49697e-06 2.44109e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| , to speak ||| 0.0142857 0.229811 1.49697e-06 5.65217e-06 2.718 ||| 0-1 ||| 70 668016 +a ||| , to specific ||| 0.5 0.229811 1.49697e-06 6.31222e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| , to supply ||| 0.0833333 0.229811 1.49697e-06 2.15142e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| , to tackle ||| 0.0172414 0.229811 1.49697e-06 1.51644e-06 2.718 ||| 0-1 ||| 58 668016 +a ||| , to take account ||| 0.0172414 0.229811 1.49697e-06 1.93367e-08 2.718 ||| 0-1 ||| 58 668016 +a ||| , to take ||| 0.00343053 0.229811 2.99394e-06 6.72579e-05 2.718 ||| 0-1 ||| 583 668016 +a ||| , to thank ||| 0.0116279 0.229811 2.99394e-06 4.41981e-06 2.718 ||| 0-1 ||| 172 668016 +a ||| , to the effect ||| 0.00628931 0.229811 1.49697e-06 8.55567e-07 2.718 ||| 0-1 ||| 159 668016 +a ||| , to the extent ||| 0.00641026 0.229811 1.49697e-06 4.92926e-07 2.718 ||| 0-1 ||| 156 668016 +a ||| , to the fact ||| 0.0666667 0.229811 5.98788e-06 7.51263e-06 2.718 ||| 0-1 ||| 60 668016 +a ||| , to the ||| 0.00445236 0.229811 2.24546e-05 0.00256465 2.718 ||| 0-1 ||| 3369 668016 +a ||| , to their ||| 0.0172414 0.229811 1.49697e-06 4.84215e-05 2.718 ||| 0-1 ||| 58 668016 +a ||| , to this ||| 0.00699301 0.229811 1.49697e-06 0.000269926 2.718 ||| 0-1 ||| 143 668016 +a ||| , to use ||| 0.0117647 0.229811 4.49091e-06 2.03111e-05 2.718 ||| 0-1 ||| 255 668016 +a ||| , to warmly thank ||| 1 0.229811 1.49697e-06 1.3834e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , to warmly ||| 0.5 0.229811 1.49697e-06 1.30756e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| , to which ||| 0.000755858 0.229811 1.49697e-06 0.000354863 2.718 ||| 0-1 ||| 1323 668016 +a ||| , to ||| 0.038194 0.229811 0.00206282 0.0417751 2.718 ||| 0-1 ||| 36079 668016 +a ||| , together with a clear ||| 1 0.0571592 1.49697e-06 1.76449e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| , together with a ||| 0.00662252 0.0571592 1.49697e-06 5.30037e-08 2.718 ||| 0-2 ||| 151 668016 +a ||| , together with ||| 0.000973078 0.0571592 4.49091e-06 1.19578e-06 2.718 ||| 0-2 ||| 3083 668016 +a ||| , too , am in ||| 0.166667 0.0587624 1.49697e-06 1.48566e-09 2.718 ||| 0-4 ||| 6 668016 +a ||| , too , to ||| 0.0447761 0.229811 4.49091e-06 6.78034e-06 2.718 ||| 0-3 ||| 67 668016 +a ||| , towards ||| 0.0237389 0.155507 1.19758e-05 0.000402198 2.718 ||| 0-1 ||| 337 668016 +a ||| , treat them like children ||| 1 0.271158 1.49697e-06 1.88125e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| , treat them like ||| 1 0.271158 1.49697e-06 2.52516e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| , treat them ||| 1 0.271158 1.49697e-06 1.42191e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| , treat ||| 0.0833333 0.271158 1.49697e-06 5.30087e-05 2.718 ||| 0-1 ||| 12 668016 +a ||| , try to act ||| 0.25 0.229811 1.49697e-06 1.09303e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| , try to ||| 0.0169492 0.229811 1.49697e-06 6.43337e-06 2.718 ||| 0-2 ||| 59 668016 +a ||| , two measures to ||| 1 0.229811 1.49697e-06 2.04327e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| , under ||| 0.00105895 0.0384416 4.49091e-06 0.000169151 2.718 ||| 0-1 ||| 2833 668016 +a ||| , unilaterally decided to change ||| 0.25 0.229811 1.49697e-06 1.11554e-15 2.718 ||| 0-3 ||| 4 668016 +a ||| , unilaterally decided to ||| 0.25 0.229811 1.49697e-06 9.14374e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| , uniquely among ||| 0.333333 0.0134501 1.49697e-06 1.78405e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| , unless ||| 0.00288184 0.219585 2.99394e-06 0.000152062 2.718 ||| 0-1 ||| 694 668016 +a ||| , until ||| 0.00222469 0.0268909 2.99394e-06 2.73213e-05 2.718 ||| 0-1 ||| 899 668016 +a ||| , up to ||| 0.00411523 0.229811 1.49697e-06 0.000142474 2.718 ||| 0-2 ||| 243 668016 +a ||| , up with ||| 1 0.0571592 1.49697e-06 6.7902e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| , upon employing ||| 0.5 0.19056 1.49697e-06 7.52354e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| , upon ||| 0.021978 0.19056 5.98788e-06 0.000235111 2.718 ||| 0-1 ||| 182 668016 +a ||| , urged ||| 0.0714286 0.319117 1.49697e-06 4.5603e-05 2.718 ||| 0-1 ||| 14 668016 +a ||| , via ||| 0.00367647 0.330861 2.99394e-06 0.00016512 2.718 ||| 0-1 ||| 544 668016 +a ||| , vigorous democracy at the heart of ||| 1 0.204175 1.49697e-06 1.58864e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| , vigorous democracy at the heart ||| 1 0.204175 1.49697e-06 2.92223e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| , vigorous democracy at the ||| 1 0.204175 1.49697e-06 3.6256e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| , vigorous democracy at ||| 1 0.204175 1.49697e-06 5.90567e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| , wanted to ||| 0.0238095 0.229811 1.49697e-06 2.2851e-06 2.718 ||| 0-2 ||| 42 668016 +a ||| , was to ||| 0.012987 0.229811 1.49697e-06 0.000130881 2.718 ||| 0-2 ||| 77 668016 +a ||| , we are calling for ||| 0.016129 0.0683377 1.49697e-06 4.98801e-11 2.718 ||| 0-4 ||| 62 668016 +a ||| , we are giving ||| 0.0212766 0.136521 1.49697e-06 2.07177e-08 2.718 ||| 0-3 ||| 47 668016 +a ||| , we are in ||| 0.00595238 0.0587624 2.99394e-06 1.23416e-06 2.718 ||| 0-3 ||| 336 668016 +a ||| , we are slowly but surely destroying ||| 1 0.0547945 1.49697e-06 1.23177e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| , we are slowly but surely ||| 1 0.0547945 1.49697e-06 4.24747e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| , we are slowly but ||| 1 0.0547945 1.49697e-06 6.66793e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| , we are slowly ||| 1 0.0547945 1.49697e-06 9.75699e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| , we as ||| 0.0128205 0.0243476 1.49697e-06 1.18762e-05 2.718 ||| 0-2 ||| 78 668016 +a ||| , we believe , ||| 0.0135135 0.0008079 1.49697e-06 2.00818e-09 2.718 ||| 0-1 ||| 74 668016 +a ||| , we believe ||| 0.00092081 0.0008079 1.49697e-06 1.68394e-08 2.718 ||| 0-1 ||| 1086 668016 +a ||| , we have also been able to ||| 0.333333 0.229811 1.49697e-06 7.98313e-14 2.718 ||| 0-6 ||| 3 668016 +a ||| , we in ||| 0.00369004 0.0587624 2.99394e-06 8.13406e-05 2.718 ||| 0-2 ||| 542 668016 +a ||| , we moved on rather quickly to ||| 1 0.229811 1.49697e-06 1.39526e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| , we must ||| 0.000127372 0.0008079 1.49697e-06 8.36076e-08 2.718 ||| 0-1 ||| 7851 668016 +a ||| , we need to decide ||| 0.142857 0.229811 1.49697e-06 2.78729e-11 2.718 ||| 0-3 ||| 7 668016 +a ||| , we need to ||| 0.000391543 0.229811 1.49697e-06 4.34834e-07 2.718 ||| 0-3 ||| 2554 668016 +a ||| , we ought to ||| 0.0116279 0.229811 1.49697e-06 3.97416e-08 2.718 ||| 0-3 ||| 86 668016 +a ||| , we placed on ||| 1 0.0782999 1.49697e-06 6.43e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| , we reached ||| 0.0263158 0.14487 1.49697e-06 1.66452e-06 2.718 ||| 0-2 ||| 38 668016 +a ||| , we refer to ||| 0.0714286 0.229811 1.49697e-06 3.70384e-08 2.718 ||| 0-3 ||| 14 668016 +a ||| , we shall be doing ||| 0.2 0.131911 1.49697e-06 2.17524e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| , we shall be ||| 0.011236 0.131911 2.99394e-06 5.92546e-08 2.718 ||| 0-2 ||| 178 668016 +a ||| , we shall find ||| 0.0909091 0.131911 1.49697e-06 1.08845e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| , we shall ||| 0.00672646 0.131911 4.49091e-06 3.2696e-06 2.718 ||| 0-2 ||| 446 668016 +a ||| , we want to stop ||| 1 0.229811 1.49697e-06 1.53201e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| , we want to ||| 0.00235294 0.229811 1.49697e-06 2.21709e-07 2.718 ||| 0-3 ||| 425 668016 +a ||| , we who are supposed to be ||| 1 0.229811 1.49697e-06 6.75148e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| , we who are supposed to ||| 1 0.229811 1.49697e-06 3.72538e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| , we will be ||| 0.0042735 0.0561595 2.99394e-06 3.45544e-07 2.718 ||| 0-2 ||| 468 668016 +a ||| , we will certainly ||| 0.0285714 0.0561595 1.49697e-06 4.77621e-09 2.718 ||| 0-2 ||| 35 668016 +a ||| , we will ||| 0.00406504 0.0561595 7.48485e-06 1.90667e-05 2.718 ||| 0-2 ||| 1230 668016 +a ||| , we ||| 0.000192437 0.0008079 5.98788e-06 5.40939e-05 2.718 ||| 0-1 ||| 20786 668016 +a ||| , were brought ||| 0.2 0.0182841 1.49697e-06 2.53582e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| , what issues are up for ||| 1 0.0683377 1.49697e-06 8.02422e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| , whatever ||| 0.00114811 0.0099471 1.49697e-06 6.74982e-06 2.718 ||| 0-1 ||| 871 668016 +a ||| , when counting towards ||| 0.25 0.0055468 1.49697e-06 3.71268e-14 2.718 ||| 0-1 ||| 4 668016 +a ||| , when counting ||| 0.25 0.0055468 1.49697e-06 2.92337e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| , when not many people are watching ||| 1 0.0055468 1.49697e-06 6.25569e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| , when not many people are ||| 1 0.0055468 1.49697e-06 5.79231e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| , when not many people ||| 1 0.0055468 1.49697e-06 3.81758e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| , when not many ||| 1 0.0055468 1.49697e-06 4.33718e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| , when not ||| 0.25 0.0055468 1.49697e-06 1.26338e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| , when we ||| 0.00194553 0.0055468 1.49697e-06 4.20089e-07 2.718 ||| 0-1 ||| 514 668016 +a ||| , when ||| 0.00107643 0.0055468 1.94606e-05 3.70047e-05 2.718 ||| 0-1 ||| 12077 668016 +a ||| , where possible , to ||| 0.1 0.229811 1.49697e-06 1.21078e-09 2.718 ||| 0-4 ||| 10 668016 +a ||| , where serious mistakes are made in ||| 0.333333 0.0587624 1.49697e-06 3.97461e-20 2.718 ||| 0-6 ||| 3 668016 +a ||| , where ||| 0.000309406 0.0053255 4.49091e-06 2.9277e-05 2.718 ||| 0-1 ||| 9696 668016 +a ||| , whether by ||| 0.0227273 0.0337966 1.49697e-06 2.57753e-07 2.718 ||| 0-2 ||| 44 668016 +a ||| , which , over three and ||| 1 0.0682544 1.49697e-06 2.22504e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| , which , over three ||| 1 0.0682544 1.49697e-06 1.77635e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| , which , over ||| 0.2 0.0682544 1.49697e-06 2.80624e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| , which affects ||| 0.00952381 0.380413 1.49697e-06 1.24267e-06 2.718 ||| 0-2 ||| 105 668016 +a ||| , which are ||| 0.000257599 9.85e-05 1.49697e-06 4.6321e-08 2.718 ||| 0-1 ||| 3882 668016 +a ||| , which attempts to ||| 0.0454545 0.229811 1.49697e-06 1.12492e-08 2.718 ||| 0-3 ||| 22 668016 +a ||| , which concerns ||| 0.00454545 0.127284 1.49697e-06 2.38921e-06 2.718 ||| 0-2 ||| 220 668016 +a ||| , which could help to set out ||| 1 0.229811 1.49697e-06 1.0772e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| , which could help to set ||| 1 0.229811 1.49697e-06 2.81224e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| , which could help to ||| 0.25 0.229811 1.49697e-06 4.81218e-11 2.718 ||| 0-4 ||| 4 668016 +a ||| , which creates a burden on ||| 0.5 0.0782999 1.49697e-06 1.41529e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| , which does not form part of ||| 0.25 0.0188479 1.49697e-06 3.89393e-17 2.718 ||| 0-6 ||| 4 668016 +a ||| , which enables the customer to ||| 1 0.229811 1.49697e-06 1.20605e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| , which has backing across the board ||| 1 0.0490758 1.49697e-06 3.55352e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| , which has backing across the ||| 1 0.0490758 1.49697e-06 2.66181e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| , which has backing across ||| 1 0.0490758 1.49697e-06 4.33577e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| , which has been reduced by ||| 1 0.0337966 1.49697e-06 6.70457e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| , which is affecting ||| 0.0714286 0.268066 1.49697e-06 2.84854e-08 2.718 ||| 0-3 ||| 14 668016 +a ||| , which is at one and ||| 1 0.204175 1.49697e-06 5.64157e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| , which is at one ||| 0.5 0.204175 1.49697e-06 4.50393e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| , which is at ||| 0.0172414 0.204175 1.49697e-06 1.0806e-06 2.718 ||| 0-3 ||| 58 668016 +a ||| , which is causing ||| 0.0434783 0.0028474 1.49697e-06 1.46046e-10 2.718 ||| 0-3 ||| 23 668016 +a ||| , which is granted to ||| 1 0.229811 1.49697e-06 9.00865e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| , which is of a ||| 0.125 0.0188479 1.49697e-06 4.16261e-08 2.718 ||| 0-3 ||| 8 668016 +a ||| , which is of ||| 0.00552486 0.0188479 1.49697e-06 9.39093e-07 2.718 ||| 0-3 ||| 181 668016 +a ||| , which is taking place at the ||| 0.333333 0.0112121 1.49697e-06 2.07469e-15 2.718 ||| 0-3 ||| 3 668016 +a ||| , which is taking place at ||| 0.2 0.0112121 1.49697e-06 3.37943e-14 2.718 ||| 0-3 ||| 5 668016 +a ||| , which is taking place ||| 0.0769231 0.0112121 1.49697e-06 8.07047e-12 2.718 ||| 0-3 ||| 13 668016 +a ||| , which is taking ||| 0.0555556 0.0112121 1.49697e-06 5.36244e-09 2.718 ||| 0-3 ||| 18 668016 +a ||| , which leads to a certain amount ||| 1 0.229811 1.49697e-06 3.53386e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| , which leads to a certain ||| 1 0.229811 1.49697e-06 1.45247e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| , which leads to a ||| 0.0625 0.229811 1.49697e-06 5.09638e-10 2.718 ||| 0-3 ||| 16 668016 +a ||| , which leads to ||| 0.0125 0.229811 1.49697e-06 1.14976e-08 2.718 ||| 0-3 ||| 80 668016 +a ||| , which relate to ||| 0.0232558 0.229811 1.49697e-06 8.8006e-09 2.718 ||| 0-3 ||| 43 668016 +a ||| , which seems to be ||| 0.0322581 0.229811 1.49697e-06 7.73024e-10 2.718 ||| 0-3 ||| 31 668016 +a ||| , which seems to ||| 0.0172414 0.229811 1.49697e-06 4.26545e-08 2.718 ||| 0-3 ||| 58 668016 +a ||| , which takes account of ||| 0.0357143 0.0188479 1.49697e-06 1.113e-12 2.718 ||| 0-4 ||| 28 668016 +a ||| , which was ||| 0.000405186 9.85e-05 1.49697e-06 9.5648e-09 2.718 ||| 0-1 ||| 2468 668016 +a ||| , which we wish to ||| 0.111111 0.229811 1.49697e-06 1.1872e-09 2.718 ||| 0-4 ||| 9 668016 +a ||| , which were dealt with at ||| 1 0.204175 1.49697e-06 4.13519e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| , which will help ||| 0.00900901 0.259976 1.49697e-06 5.76425e-08 2.718 ||| 0-3 ||| 111 668016 +a ||| , which will take place ||| 0.00909091 0.0012933 1.49697e-06 9.03487e-13 2.718 ||| 0-3 ||| 110 668016 +a ||| , which will take ||| 0.00806452 0.0012933 1.49697e-06 6.00324e-10 2.718 ||| 0-3 ||| 124 668016 +a ||| , which will ||| 0.00176678 0.0561595 4.49091e-06 1.42671e-05 2.718 ||| 0-2 ||| 1698 668016 +a ||| , which ||| 4.29323e-05 0.0001191 5.98788e-06 2.26381e-06 2.718 ||| 0-0 ||| 93170 668016 +a ||| , while , ||| 0.00699301 0.0377813 1.49697e-06 1.30328e-05 2.718 ||| 0-1 ||| 143 668016 +a ||| , while at the same time ||| 0.00199203 0.204175 1.49697e-06 6.13607e-14 2.718 ||| 0-2 ||| 502 668016 +a ||| , while at the same ||| 0.00374532 0.204175 1.49697e-06 3.73763e-11 2.718 ||| 0-2 ||| 267 668016 +a ||| , while at the ||| 0.00338983 0.204175 1.49697e-06 4.64475e-08 2.718 ||| 0-2 ||| 295 668016 +a ||| , while at ||| 0.00884956 0.204175 1.49697e-06 7.56575e-07 2.718 ||| 0-2 ||| 113 668016 +a ||| , while leaving ||| 0.0909091 0.0377813 2.99394e-06 2.60098e-09 2.718 ||| 0-1 ||| 22 668016 +a ||| , while we are on ||| 0.125 0.0782999 1.49697e-06 1.4525e-10 2.718 ||| 0-4 ||| 8 668016 +a ||| , while ||| 0.00127747 0.0377813 1.49697e-05 0.000109285 2.718 ||| 0-1 ||| 7828 668016 +a ||| , whilst the ||| 0.00454545 0.0442295 1.49697e-06 1.86473e-06 2.718 ||| 0-1 ||| 220 668016 +a ||| , whilst ||| 0.000541126 0.0442295 1.49697e-06 3.03742e-05 2.718 ||| 0-1 ||| 1848 668016 +a ||| , who are brought to book ||| 1 0.229811 1.49697e-06 4.2264e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| , who are brought to ||| 1 0.229811 1.49697e-06 1.56533e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| , who are recruited ||| 1 0.108108 1.49697e-06 2.92051e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| , who falsified the vote for ||| 1 0.0683377 1.49697e-06 2.62e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| , who suffer as a result ||| 0.5 0.0005736 1.49697e-06 3.96327e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| , who suffer as a ||| 0.5 0.0005736 1.49697e-06 7.52758e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| , who suffer as ||| 0.5 0.0005736 1.49697e-06 1.69824e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| , who suffer ||| 0.0666667 0.0005736 1.49697e-06 1.66422e-10 2.718 ||| 0-1 ||| 15 668016 +a ||| , who ||| 7.46102e-05 0.0005736 1.49697e-06 4.67478e-06 2.718 ||| 0-1 ||| 13403 668016 +a ||| , why this has to be done ||| 1 0.229811 1.49697e-06 2.83041e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| , why this has to be ||| 1 0.229811 1.49697e-06 6.20705e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| , why this has to ||| 1 0.229811 1.49697e-06 3.42498e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| , will , in ||| 0.0714286 0.0587624 1.49697e-06 7.39223e-06 2.718 ||| 0-3 ||| 14 668016 +a ||| , will , ||| 0.0222222 0.0561595 1.49697e-06 0.000200294 2.718 ||| 0-1 ||| 45 668016 +a ||| , will be able to ||| 0.0075188 0.229811 1.49697e-06 5.46835e-09 2.718 ||| 0-4 ||| 133 668016 +a ||| , will be in ||| 0.047619 0.0587624 1.49697e-06 1.12338e-06 2.718 ||| 0-3 ||| 21 668016 +a ||| , will be replacing ||| 1 0.0229555 1.49697e-06 2.72981e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| , will be to ||| 0.0666667 0.229811 1.49697e-06 6.5497e-06 2.718 ||| 0-3 ||| 15 668016 +a ||| , will be ||| 0.000777605 0.0561595 1.49697e-06 3.04383e-05 2.718 ||| 0-1 ||| 1286 668016 +a ||| , will come to the fore ||| 1 0.229811 1.49697e-06 2.16702e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| , will come to the ||| 1 0.229811 1.49697e-06 1.88437e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| , will come to ||| 0.0833333 0.229811 1.49697e-06 3.06941e-07 2.718 ||| 0-3 ||| 12 668016 +a ||| , will eventually be paid out in ||| 1 0.0587624 1.49697e-06 1.60434e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| , will have a fundamental ||| 0.5 0.0561595 1.49697e-06 4.38955e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| , will have a ||| 0.0212766 0.0561595 1.49697e-06 8.90375e-07 2.718 ||| 0-1 ||| 47 668016 +a ||| , will have to ||| 0.00636943 0.229811 1.49697e-06 4.32233e-06 2.718 ||| 0-3 ||| 157 668016 +a ||| , will have ||| 0.00292398 0.0561595 1.49697e-06 2.00871e-05 2.718 ||| 0-1 ||| 342 668016 +a ||| , will help to ||| 0.02 0.229811 1.49697e-06 6.89199e-08 2.718 ||| 0-3 ||| 50 668016 +a ||| , will now pass through ||| 1 0.230708 1.49697e-06 9.663e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| , will result in ||| 0.0294118 0.0587624 1.49697e-06 3.26361e-08 2.718 ||| 0-3 ||| 34 668016 +a ||| , will ||| 0.0081663 0.0561595 3.29333e-05 0.00167955 2.718 ||| 0-1 ||| 2694 668016 +a ||| , with , in more recent times ||| 1 0.0587624 1.49697e-06 6.15527e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| , with , in more recent ||| 1 0.0587624 1.49697e-06 6.0643e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| , with , in more ||| 1 0.0587624 1.49697e-06 1.2478e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| , with , in ||| 1 0.0587624 1.49697e-06 5.46394e-06 2.718 ||| 0-3 ||| 1 668016 +a ||| , with a view to ||| 0.00122699 0.229811 1.49697e-06 1.06958e-08 2.718 ||| 0-4 ||| 815 668016 +a ||| , with a view ||| 0.0011919 0.0571592 1.49697e-06 7.97174e-08 2.718 ||| 0-1 ||| 839 668016 +a ||| , with a ||| 0.00519931 0.0571592 1.79636e-05 8.82513e-05 2.718 ||| 0-1 ||| 2308 668016 +a ||| , with any ||| 0.111111 0.0571592 1.49697e-06 3.01074e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| , with considerable bias , to ||| 1 0.229811 1.49697e-06 3.58387e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| , with enlargement looming , ||| 1 0.0571592 1.49697e-06 2.07943e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| , with enlargement looming ||| 1 0.0571592 1.49697e-06 1.74369e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| , with enlargement ||| 0.0526316 0.0571592 1.49697e-06 6.01273e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| , with regard to ||| 0.000710227 0.229811 1.49697e-06 1.81889e-07 2.718 ||| 0-3 ||| 1408 668016 +a ||| , with regard ||| 0.00209497 0.0571592 4.49091e-06 1.35565e-06 2.718 ||| 0-1 ||| 1432 668016 +a ||| , with stress on ||| 1 0.0782999 1.49697e-06 1.02986e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| , with the ||| 0.00142925 0.0571592 1.34727e-05 0.000122229 2.718 ||| 0-1 ||| 6297 668016 +a ||| , with their ||| 0.00497512 0.0571592 1.49697e-06 2.30773e-06 2.718 ||| 0-1 ||| 201 668016 +a ||| , with ||| 0.00454528 0.0571592 0.000173649 0.00199097 2.718 ||| 0-1 ||| 25521 668016 +a ||| , within a ||| 0.00684932 0.0123496 1.49697e-06 2.62929e-06 2.718 ||| 0-1 ||| 146 668016 +a ||| , within which ||| 0.0217391 0.0123496 1.49697e-06 5.03877e-07 2.718 ||| 0-1 ||| 46 668016 +a ||| , within ||| 0.00233536 0.0123496 7.48485e-06 5.93173e-05 2.718 ||| 0-1 ||| 2141 668016 +a ||| , without equal on the ||| 1 0.0782999 1.49697e-06 3.51092e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| , without equal on ||| 1 0.0782999 1.49697e-06 5.71888e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| , would like to ||| 0.00617284 0.229811 1.49697e-06 4.3539e-07 2.718 ||| 0-3 ||| 162 668016 +a ||| , yet , at ||| 0.5 0.204175 1.49697e-06 1.28029e-07 2.718 ||| 0-3 ||| 2 668016 +a ||| , yet the positive outcome has to ||| 1 0.229811 1.49697e-06 1.62372e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| , yet ||| 0.000564016 0.0130882 1.49697e-06 3.25446e-05 2.718 ||| 0-1 ||| 1773 668016 +a ||| , you and I , to ||| 1 0.229811 1.49697e-06 1.42516e-09 2.718 ||| 0-5 ||| 1 668016 +a ||| , you see , that ||| 0.111111 0.0008521 1.49697e-06 2.20877e-11 2.718 ||| 0-4 ||| 9 668016 +a ||| , you want to ||| 0.030303 0.229811 1.49697e-06 6.30561e-08 2.718 ||| 0-3 ||| 33 668016 +a ||| , you will have ||| 0.00735294 0.0561595 1.49697e-06 6.48551e-08 2.718 ||| 0-2 ||| 136 668016 +a ||| , you will ||| 0.0034965 0.0561595 1.49697e-06 5.42275e-06 2.718 ||| 0-2 ||| 286 668016 +a ||| , ||| 9.09004e-05 0.0001191 0.00031137 0.0002665 2.718 ||| 0-0 ||| 2.28822e+06 668016 +a ||| - ( FR ) In ||| 0.03125 0.0054054 1.49697e-06 8.82697e-19 2.718 ||| 0-4 ||| 32 668016 +a ||| - ( PT ) ||| 0.000919118 0.0001092 1.49697e-06 1.82494e-15 2.718 ||| 0-0 ||| 1088 668016 +a ||| - ( PT ||| 0.00092081 0.0001092 1.49697e-06 1.2697e-12 2.718 ||| 0-0 ||| 1086 668016 +a ||| - ( ||| 8.53388e-05 0.0001092 1.49697e-06 1.32123e-08 2.718 ||| 0-0 ||| 11718 668016 +a ||| - C6-0051 / 2009 - ||| 1 1 1.49697e-06 3.82895e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| - C6-0051 / 2009 ||| 1 1 1.49697e-06 1.01507e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| - C6-0051 / ||| 1 1 1.49697e-06 7.80825e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| - C6-0051 ||| 1 1 1.49697e-06 3.39489e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| - I prefer to ||| 0.333333 0.229811 1.49697e-06 2.45819e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| - I ||| 0.000439174 0.0013612 1.49697e-06 2.78532e-06 2.718 ||| 0-1 ||| 2277 668016 +a ||| - a shared duty , of ||| 1 0.0188479 1.49697e-06 1.18635e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| - able to ||| 0.2 0.229811 1.49697e-06 1.10321e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| - albeit not many - to ||| 0.5 0.229811 1.49697e-06 1.22097e-16 2.718 ||| 0-5 ||| 2 668016 +a ||| - although ||| 0.00238095 0.0921822 1.49697e-06 5.48463e-06 2.718 ||| 0-1 ||| 420 668016 +a ||| - and in ||| 0.00442478 0.0587624 1.49697e-06 2.83883e-06 2.718 ||| 0-2 ||| 226 668016 +a ||| - and to ||| 0.00970874 0.229811 1.49697e-06 1.65514e-05 2.718 ||| 0-2 ||| 103 668016 +a ||| - and we should like to ||| 1 0.229811 1.49697e-06 1.47856e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| - and ||| 0.000157679 0.0015873 2.99394e-06 7.27827e-06 2.718 ||| 0-1 ||| 12684 668016 +a ||| - as I urge them ||| 1 0.0243476 1.49697e-06 2.05309e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| - as I urge ||| 1 0.0243476 1.49697e-06 7.65392e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| - as I ||| 0.00775194 0.0243476 1.49697e-06 2.34065e-07 2.718 ||| 0-1 ||| 129 668016 +a ||| - as they should do - of ||| 1 0.0188479 1.49697e-06 2.13376e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| - as well ||| 0.016129 0.0243476 1.49697e-06 5.24681e-08 2.718 ||| 0-1 ||| 62 668016 +a ||| - as ||| 0.000901713 0.0243476 4.49091e-06 3.30904e-05 2.718 ||| 0-1 ||| 3327 668016 +a ||| - at least ||| 0.00393701 0.204175 1.49697e-06 3.15057e-08 2.718 ||| 0-1 ||| 254 668016 +a ||| - at the ||| 0.025974 0.204175 2.99394e-06 7.88178e-06 2.718 ||| 0-1 ||| 77 668016 +a ||| - at ||| 0.0266075 0.204175 1.79636e-05 0.000128385 2.718 ||| 0-1 ||| 451 668016 +a ||| - because it is ||| 0.03125 0.0052046 1.49697e-06 6.79273e-10 2.718 ||| 0-1 ||| 32 668016 +a ||| - because it ||| 0.0555556 0.0052046 1.49697e-06 2.16736e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| - because ||| 0.0017452 0.0052046 1.49697e-06 1.21877e-06 2.718 ||| 0-1 ||| 573 668016 +a ||| - before ||| 0.00934579 0.0203282 1.49697e-06 2.00034e-06 2.718 ||| 0-1 ||| 107 668016 +a ||| - by ||| 0.0106007 0.0337966 4.49091e-06 3.1035e-05 2.718 ||| 0-1 ||| 283 668016 +a ||| - concern ||| 0.0588235 0.0020474 1.49697e-06 8.93988e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| - confronted with ||| 0.333333 0.0571592 1.49697e-06 6.36053e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| - either from ||| 0.5 0.0435582 1.49697e-06 2.35104e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| - for various specific reasons - ||| 1 0.0683377 1.49697e-06 1.23666e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| - for various specific reasons ||| 1 0.0683377 1.49697e-06 3.27843e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| - for various specific ||| 1 0.0683377 1.49697e-06 3.24276e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| - for various ||| 1 0.0683377 1.49697e-06 2.1461e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| - for ||| 0.00357143 0.0683377 5.98788e-06 0.000138996 2.718 ||| 0-1 ||| 1120 668016 +a ||| - from ||| 0.00323625 0.0435582 1.49697e-06 2.71546e-05 2.718 ||| 0-1 ||| 309 668016 +a ||| - giving ||| 0.166667 0.136521 1.49697e-06 3.80454e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| - goes up ||| 1 0.0195077 1.49697e-06 6.41342e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| - going to ||| 0.142857 0.229811 1.49697e-06 1.13083e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| - have , in ||| 1 0.0587624 1.49697e-06 3.23244e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| - in the ||| 0.00571429 0.0587624 2.99394e-06 1.39137e-05 2.718 ||| 0-1 ||| 350 668016 +a ||| - in violation of ||| 0.5 0.0587624 1.49697e-06 1.33066e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| - in violation ||| 0.5 0.0587624 1.49697e-06 2.44768e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| - in ||| 0.00508475 0.0587624 1.79636e-05 0.000226637 2.718 ||| 0-1 ||| 2360 668016 +a ||| - into ||| 0.0571429 0.107578 2.99394e-06 2.29129e-05 2.718 ||| 0-1 ||| 35 668016 +a ||| - involve ||| 0.2 0.170498 1.49697e-06 2.57861e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| - is giving ||| 1 0.136521 1.49697e-06 1.19238e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| - it simply was not possible to ||| 0.333333 0.229811 1.49697e-06 4.46957e-17 2.718 ||| 0-6 ||| 3 668016 +a ||| - leaders to ||| 0.5 0.229811 1.49697e-06 2.19348e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| - make it easier for ||| 0.5 0.0683377 1.49697e-06 2.99825e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| - more than ||| 0.0166667 0.0242272 1.49697e-06 1.08274e-08 2.718 ||| 0-2 ||| 60 668016 +a ||| - namely ||| 0.00729927 0.160809 2.99394e-06 6.60004e-06 2.718 ||| 0-1 ||| 274 668016 +a ||| - of ||| 0.00585938 0.0188479 4.49091e-06 0.000111573 2.718 ||| 0-1 ||| 512 668016 +a ||| - on a Thursday ||| 0.5 0.0782999 1.49697e-06 2.28344e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| - on a ||| 0.0384615 0.0782999 1.49697e-06 6.34288e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| - on ||| 0.0171103 0.0782999 1.34727e-05 0.000143097 2.718 ||| 0-1 ||| 526 668016 +a ||| - or the governments - to disagree ||| 1 0.229811 1.49697e-06 9.45219e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| - or the governments - to ||| 1 0.229811 1.49697e-06 1.19648e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| - over ||| 0.0104167 0.0682544 1.49697e-06 8.76221e-06 2.718 ||| 0-1 ||| 96 668016 +a ||| - particularly ||| 0.00250627 0.0001117 1.49697e-06 1.39568e-08 2.718 ||| 0-1 ||| 399 668016 +a ||| - referring to ||| 0.125 0.229811 1.49697e-06 5.70833e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| - regardless of their concerns ||| 0.5 0.127284 1.49697e-06 8.07261e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| - representing the ||| 0.25 0.194985 1.49697e-06 8.05421e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| - representing ||| 0.111111 0.194985 1.49697e-06 1.31194e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| - some of ||| 0.0149254 0.0188479 1.49697e-06 1.21537e-07 2.718 ||| 0-2 ||| 67 668016 +a ||| - that I ||| 0.0625 0.0013612 1.49697e-06 4.68535e-08 2.718 ||| 0-2 ||| 16 668016 +a ||| - that is , on ||| 0.5 0.0782999 1.49697e-06 8.99678e-09 2.718 ||| 0-4 ||| 2 668016 +a ||| - that is , ||| 0.00348432 0.0008521 1.49697e-06 9.62505e-09 2.718 ||| 0-1 ||| 287 668016 +a ||| - that is ||| 0.00139276 0.0008521 1.49697e-06 8.071e-08 2.718 ||| 0-1 ||| 718 668016 +a ||| - that of ||| 0.0138889 0.0188479 1.49697e-06 1.87684e-06 2.718 ||| 0-2 ||| 72 668016 +a ||| - that ||| 0.000399521 0.0008521 1.49697e-06 2.57521e-06 2.718 ||| 0-1 ||| 2503 668016 +a ||| - then ||| 0.00680272 0.0252938 1.49697e-06 3.21572e-06 2.718 ||| 0-1 ||| 147 668016 +a ||| - to a ||| 0.1 0.229811 2.99394e-06 5.85709e-05 2.718 ||| 0-1 ||| 20 668016 +a ||| - to be ||| 0.0192308 0.229811 2.99394e-06 2.39471e-05 2.718 ||| 0-1 ||| 104 668016 +a ||| - to change ||| 0.25 0.229811 1.49697e-06 1.61207e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| - to disagree . ||| 1 0.229811 1.49697e-06 3.16193e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| - to disagree ||| 1 0.229811 1.49697e-06 1.04388e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| - to draw ||| 0.166667 0.229811 1.49697e-06 1.56451e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| - to get butter on ||| 1 0.0782999 1.49697e-06 1.00065e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| - to host ||| 1 0.229811 1.49697e-06 2.56346e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| - to make sure ||| 0.1 0.229811 1.49697e-06 4.00012e-10 2.718 ||| 0-1 ||| 10 668016 +a ||| - to make ||| 0.030303 0.229811 1.49697e-06 2.29628e-06 2.718 ||| 0-1 ||| 33 668016 +a ||| - to many of ||| 0.333333 0.0188479 1.49697e-06 3.40354e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| - to prepare all the ||| 1 0.229811 1.49697e-06 6.89996e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| - to prepare all ||| 1 0.229811 1.49697e-06 1.12392e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| - to prepare ||| 0.5 0.229811 1.49697e-06 2.37847e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| - to put in ||| 0.25 0.229811 1.49697e-06 3.11852e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| - to put ||| 0.0227273 0.229811 1.49697e-06 1.45695e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| - to ||| 0.0505814 0.229811 0.000130236 0.00132137 2.718 ||| 0-1 ||| 1720 668016 +a ||| - unless ||| 0.0384615 0.219585 1.49697e-06 4.8098e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| - video on ||| 1 0.0782999 1.49697e-06 4.14981e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| - well , maybe ||| 1 0.0001092 1.49697e-06 5.23288e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| - well , ||| 0.04 0.0001092 1.49697e-06 2.59054e-09 2.718 ||| 0-0 ||| 25 668016 +a ||| - well ||| 0.0333333 0.0001092 1.49697e-06 2.17227e-08 2.718 ||| 0-0 ||| 30 668016 +a ||| - will be ||| 0.021978 0.0561595 2.99394e-06 9.62781e-07 2.718 ||| 0-1 ||| 91 668016 +a ||| - will expire in ||| 1 0.0587624 1.49697e-06 7.84273e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| - will give ||| 0.2 0.0241455 1.49697e-06 1.83496e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| - will ||| 0.0116959 0.0561595 2.99394e-06 5.31251e-05 2.718 ||| 0-1 ||| 171 668016 +a ||| - with regard to ||| 0.0384615 0.229811 1.49697e-06 5.75328e-09 2.718 ||| 0-3 ||| 26 668016 +a ||| - with the ||| 0.00632911 0.0571592 1.49697e-06 3.86618e-06 2.718 ||| 0-1 ||| 158 668016 +a ||| - with ||| 0.00745157 0.0571592 7.48485e-06 6.29756e-05 2.718 ||| 0-1 ||| 671 668016 +a ||| - ||| 0.000119668 0.0001092 1.64667e-05 1.37e-05 2.718 ||| 0-0 ||| 91921 668016 +a ||| . ( NL ) ||| 0.0113636 5.8e-06 1.49697e-06 6.27918e-16 2.718 ||| 0-0 ||| 88 668016 +a ||| . ( NL ||| 0.011236 5.8e-06 1.49697e-06 4.36873e-13 2.718 ||| 0-0 ||| 89 668016 +a ||| . ( PT ) ||| 0.0340909 5.8e-06 4.49091e-06 1.33207e-15 2.718 ||| 0-0 ||| 88 668016 +a ||| . ( PT ||| 0.0344828 5.8e-06 4.49091e-06 9.26788e-13 2.718 ||| 0-0 ||| 87 668016 +a ||| . ( fr ) At ||| 0.5 0.0148148 1.49697e-06 2.06319e-19 2.718 ||| 0-4 ||| 2 668016 +a ||| . ( fr ) ||| 0.0147059 5.8e-06 1.49697e-06 3.78414e-16 2.718 ||| 0-0 ||| 68 668016 +a ||| . ( fr ||| 0.0142857 5.8e-06 1.49697e-06 2.63281e-13 2.718 ||| 0-0 ||| 70 668016 +a ||| . ( ||| 0.00998004 5.8e-06 7.48485e-06 9.644e-09 2.718 ||| 0-0 ||| 501 668016 +a ||| . I do not believe ||| 0.0769231 0.0013612 1.49697e-06 8.16603e-15 2.718 ||| 0-1 ||| 13 668016 +a ||| . I do not ||| 0.0204082 0.0013612 1.49697e-06 2.6232e-11 2.718 ||| 0-1 ||| 49 668016 +a ||| . I do ||| 0.027027 0.0013612 1.49697e-06 7.68344e-09 2.718 ||| 0-1 ||| 37 668016 +a ||| . I shall just mention the two ||| 1 0.131911 1.49697e-06 9.20977e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| . I shall just mention the ||| 1 0.131911 1.49697e-06 3.89584e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| . I shall just mention ||| 1 0.131911 1.49697e-06 6.34587e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| . I shall just ||| 1 0.131911 1.49697e-06 6.52867e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| . I shall ||| 0.0322581 0.131911 1.49697e-06 5.1745e-08 2.718 ||| 0-2 ||| 31 668016 +a ||| . I would like to encourage ||| 1 0.229811 1.49697e-06 3.0116e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| . I would like to ||| 0.0338983 0.229811 2.99394e-06 7.82233e-11 2.718 ||| 0-4 ||| 59 668016 +a ||| . I ||| 0.000452694 0.0013612 1.49697e-06 2.23661e-06 2.718 ||| 0-1 ||| 2209 668016 +a ||| . a ||| 0.00487805 0.0005823 1.49697e-06 1.28006e-06 2.718 ||| 0-1 ||| 205 668016 +a ||| . as ||| 0.00367647 0.0243476 2.99394e-06 2.65716e-05 2.718 ||| 0-1 ||| 544 668016 +a ||| . at all events ||| 0.25 0.204175 1.49697e-06 3.54163e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| . at all ||| 0.25 0.204175 1.49697e-06 4.87157e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| . at ||| 0.0128205 0.204175 2.99394e-06 0.000103093 2.718 ||| 0-1 ||| 156 668016 +a ||| . conversely ||| 0.5 0.111354 1.49697e-06 1.41151e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| . ever since 1984 , in ||| 1 0.0587624 1.49697e-06 3.87371e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| . first of ||| 0.0714286 0.0188479 1.49697e-06 4.8237e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| . for example , ||| 0.0128205 0.0683377 1.49697e-06 3.87469e-09 2.718 ||| 0-1 ||| 78 668016 +a ||| . for example ||| 0.0238095 0.0683377 2.99394e-06 3.24909e-08 2.718 ||| 0-1 ||| 84 668016 +a ||| . for ||| 0.00547945 0.0683377 2.99394e-06 0.000111614 2.718 ||| 0-1 ||| 365 668016 +a ||| . from the ||| 0.166667 0.0435582 1.49697e-06 1.33866e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| . from ||| 0.025641 0.0435582 1.49697e-06 2.18052e-05 2.718 ||| 0-1 ||| 39 668016 +a ||| . he killed people ||| 0.25 0.102431 1.49697e-06 3.75999e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| . he killed ||| 0.25 0.102431 1.49697e-06 4.27175e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| . if ||| 0.00265957 0.0014881 1.49697e-06 3.92558e-07 2.718 ||| 0-1 ||| 376 668016 +a ||| . in addition , ||| 0.0181818 0.0587624 1.49697e-06 2.13993e-09 2.718 ||| 0-1 ||| 55 668016 +a ||| . in addition ||| 0.010989 0.0587624 1.49697e-06 1.79442e-08 2.718 ||| 0-1 ||| 91 668016 +a ||| . in terms ||| 0.333333 0.0587624 1.49697e-06 1.99752e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| . in the ||| 0.00613497 0.0587624 1.49697e-06 1.11727e-05 2.718 ||| 0-1 ||| 163 668016 +a ||| . in this ||| 0.0168067 0.0587624 2.99394e-06 1.17591e-06 2.718 ||| 0-1 ||| 119 668016 +a ||| . in ||| 0.0120391 0.0587624 2.39515e-05 0.00018199 2.718 ||| 0-1 ||| 1329 668016 +a ||| . it is important to have a ||| 1 0.229811 1.49697e-06 1.20261e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| . it is important to have ||| 1 0.229811 1.49697e-06 2.71311e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| . it is important to ||| 0.2 0.229811 1.49697e-06 2.26853e-10 2.718 ||| 0-4 ||| 5 668016 +a ||| . it takes two to ||| 0.5 0.229811 1.49697e-06 5.76317e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| . it was because ||| 1 0.0052046 1.49697e-06 5.45264e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| . many of the EU Member States ||| 1 0.0188479 1.49697e-06 2.29747e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| . many of the EU Member ||| 1 0.0188479 1.49697e-06 4.81448e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| . many of the EU ||| 1 0.0188479 1.49697e-06 9.34306e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| . many of the ||| 0.5 0.0188479 1.49697e-06 1.88825e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| . many of ||| 0.1 0.0188479 1.49697e-06 3.07574e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| . nevertheless ||| 0.02 0.0151859 2.99394e-06 5.36436e-07 2.718 ||| 0-1 ||| 100 668016 +a ||| . of course ||| 0.0144928 0.0188479 1.49697e-06 1.1304e-07 2.718 ||| 0-1 ||| 69 668016 +a ||| . of ||| 0.0175439 0.0188479 1.49697e-06 8.95933e-05 2.718 ||| 0-1 ||| 57 668016 +a ||| . on top of ||| 0.333333 0.0782999 1.49697e-06 4.31654e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| . on top ||| 0.2 0.0782999 1.49697e-06 7.94007e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| . on ||| 0.012605 0.0782999 4.49091e-06 0.000114907 2.718 ||| 0-1 ||| 238 668016 +a ||| . so much for ||| 0.5 0.0683377 1.49697e-06 2.54268e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| . such practices must naturally be stopped ||| 1 0.0700165 1.49697e-06 3.06958e-23 2.718 ||| 0-6 ||| 1 668016 +a ||| . that way we ||| 1 5.8e-06 1.49697e-06 4.11642e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| . that way ||| 0.1 5.8e-06 1.49697e-06 3.62606e-10 2.718 ||| 0-0 ||| 10 668016 +a ||| . that ||| 0.000887311 5.8e-06 1.49697e-06 1.68216e-07 2.718 ||| 0-0 ||| 1127 668016 +a ||| . the first ||| 0.00900901 0.0004654 1.49697e-06 2.49922e-09 2.718 ||| 0-1 ||| 111 668016 +a ||| . the following ||| 0.25 0.0720432 1.49697e-06 1.83315e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| . the programmes of Palestinian organisations that ||| 1 0.0008521 1.49697e-06 1.64469e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| . the summit cannot be allowed to ||| 1 0.229811 1.49697e-06 1.37796e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| . the ||| 0.000327976 0.0004654 1.49697e-06 4.64194e-06 2.718 ||| 0-1 ||| 3049 668016 +a ||| . then ||| 0.0175439 0.0252938 1.49697e-06 2.58222e-06 2.718 ||| 0-1 ||| 57 668016 +a ||| . these related in ||| 1 0.0587624 1.49697e-06 1.23626e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| . this is down to ||| 1 0.229811 1.49697e-06 1.50003e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| . this is in ||| 0.0666667 0.0587624 1.49697e-06 3.68543e-08 2.718 ||| 0-3 ||| 15 668016 +a ||| . this is to ||| 0.0909091 0.229811 1.49697e-06 2.14873e-07 2.718 ||| 0-3 ||| 11 668016 +a ||| . this will ||| 0.0070922 0.0561595 1.49697e-06 2.7564e-07 2.718 ||| 0-2 ||| 141 668016 +a ||| . through ||| 0.1 0.230708 1.49697e-06 2.40778e-05 2.718 ||| 0-1 ||| 10 668016 +a ||| . to ||| 0.00943396 0.229811 1.49697e-06 0.00106106 2.718 ||| 0-1 ||| 106 668016 +a ||| . today , it is more to ||| 1 0.229811 1.49697e-06 7.26851e-14 2.718 ||| 0-6 ||| 1 668016 +a ||| . we are therefore dealing with ||| 1 0.0008079 1.49697e-06 1.15161e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| . we are therefore dealing ||| 1 0.0008079 1.49697e-06 1.80093e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| . we are therefore ||| 0.166667 0.0008079 1.49697e-06 1.7434e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| . we are ||| 0.00413223 0.0008079 1.49697e-06 2.08466e-08 2.718 ||| 0-1 ||| 242 668016 +a ||| . we ||| 0.000625391 0.0008079 1.49697e-06 1.37395e-06 2.718 ||| 0-1 ||| 1599 668016 +a ||| . when it ||| 0.111111 0.0055468 1.49697e-06 1.67144e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| . when ||| 0.0111111 0.0055468 1.49697e-06 9.39899e-07 2.718 ||| 0-1 ||| 90 668016 +a ||| . with several thousand banks participating ||| 1 0.0571592 1.49697e-06 6.44203e-24 2.718 ||| 0-1 ||| 1 668016 +a ||| . with several thousand banks ||| 1 0.0571592 1.49697e-06 5.60176e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| . with several thousand ||| 1 0.0571592 1.49697e-06 3.70978e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| . with several ||| 1 0.0571592 1.49697e-06 3.3123e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| . with ||| 0.0229885 0.0571592 2.99394e-06 5.05695e-05 2.718 ||| 0-1 ||| 87 668016 +a ||| . ||| 5.10256e-06 5.8e-06 1.49697e-05 1e-05 2.718 ||| 0-0 ||| 1.9598e+06 668016 +a ||| ... to ||| 0.05 0.229811 1.49697e-06 1.23656e-05 2.718 ||| 0-1 ||| 20 668016 +a ||| / kg ||| 0.05 0.0062112 1.49697e-06 2.07e-10 2.718 ||| 0-1 ||| 20 668016 +a ||| 00 to ||| 0.166667 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| 000 Yugoslav soldiers in ||| 1 0.0587624 1.49697e-06 1.71483e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| 000 and ||| 0.0206186 0.00114825 2.99394e-06 1.06122e-08 2.718 ||| 0-0 0-1 ||| 97 668016 +a ||| 000 for ||| 0.0588235 0.0683377 1.49697e-06 3.85804e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| 000 to ||| 0.0618557 0.229811 8.98182e-06 3.66766e-05 2.718 ||| 0-1 ||| 97 668016 +a ||| 000 tonnes to ||| 0.125 0.229811 1.49697e-06 7.40867e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| 000 ||| 0.000182615 0.0007092 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 5476 668016 +a ||| 1 ||| 0.00016009 0.0002407 2.99394e-06 2.7e-06 2.718 ||| 0-0 ||| 12493 668016 +a ||| 10 % of women achieve high-level positions ||| 1 0.0188479 1.49697e-06 9.00586e-29 2.718 ||| 0-2 ||| 1 668016 +a ||| 10 % of women achieve high-level ||| 1 0.0188479 1.49697e-06 2.66446e-24 2.718 ||| 0-2 ||| 1 668016 +a ||| 10 % of women achieve ||| 1 0.0188479 1.49697e-06 7.40127e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| 10 % of women ||| 0.125 0.0188479 1.49697e-06 3.23907e-15 2.718 ||| 0-2 ||| 8 668016 +a ||| 10 % of ||| 0.00200401 0.0188479 1.49697e-06 2.72649e-11 2.718 ||| 0-2 ||| 499 668016 +a ||| 10 and 17 , on ||| 1 0.0782999 1.49697e-06 6.97686e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| 100 of ||| 0.111111 0.0188479 1.49697e-06 4.05225e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| 120 million worth of ||| 1 0.0188479 1.49697e-06 1.71018e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| 17 , on ||| 0.333333 0.0782999 1.49697e-06 3.43824e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| 1984 , in ||| 1 0.0587624 1.49697e-06 5.01558e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| 1991 to 1993 ||| 0.125 0.229811 1.49697e-06 3.76574e-12 2.718 ||| 0-1 ||| 8 668016 +a ||| 1991 to ||| 0.0588235 0.229811 2.99394e-06 1.5063e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| 1997 ||| 0.000276625 0.000354 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 3615 668016 +a ||| 1999 to 2000 to ||| 1 0.229811 1.49697e-06 1.41641e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| 2.3 % over ||| 0.5 0.0682544 1.49697e-06 5.28692e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| 2000 to ||| 0.00558659 0.229811 1.49697e-06 1.00887e-05 2.718 ||| 0-1 ||| 179 668016 +a ||| 2003 to 2006 ||| 0.0625 0.229811 1.49697e-06 3.78676e-11 2.718 ||| 0-1 ||| 16 668016 +a ||| 2003 to ||| 0.0104167 0.229811 1.49697e-06 4.02847e-06 2.718 ||| 0-1 ||| 96 668016 +a ||| 2005 to 2007 at ||| 1 0.204175 1.49697e-06 6.02082e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| 2005 to ||| 0.0105263 0.229811 1.49697e-06 4.4138e-06 2.718 ||| 0-1 ||| 95 668016 +a ||| 2006-2010 , amounts to ||| 0.333333 0.229811 1.49697e-06 1.01096e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| 2007 at ||| 0.166667 0.204175 1.49697e-06 5.37759e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| 2010 , at ||| 0.0588235 0.204175 1.49697e-06 3.49064e-08 2.718 ||| 0-2 ||| 17 668016 +a ||| 2011 , ||| 0.00242718 0.0005063 1.49697e-06 1.07329e-07 2.718 ||| 0-0 ||| 412 668016 +a ||| 2011 ||| 0.000467071 0.0005063 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2141 668016 +a ||| 3 ) ( a ||| 0.111111 0.0005823 1.49697e-06 1.34729e-14 2.718 ||| 0-3 ||| 9 668016 +a ||| 3.00 ||| 0.0142857 0.007874 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 70 668016 +a ||| 300 of them ||| 0.2 0.0188479 1.49697e-06 4.6018e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| 300 of ||| 0.0833333 0.0188479 1.49697e-06 1.71555e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| 35 000 Yugoslav soldiers in ||| 1 0.0587624 1.49697e-06 6.85931e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| 39 to ||| 0.0625 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| 4 to paragraph 1 , you have ||| 1 0.229811 1.49697e-06 3.14969e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| 4 to paragraph 1 , you ||| 1 0.229811 1.49697e-06 2.63356e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| 4 to paragraph 1 , ||| 1 0.229811 1.49697e-06 8.15673e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| 4 to paragraph 1 ||| 1 0.229811 1.49697e-06 6.83975e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| 4 to paragraph ||| 0.5 0.229811 1.49697e-06 1.07374e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| 4 to ||| 0.0113636 0.229811 1.49697e-06 6.79585e-06 2.718 ||| 0-1 ||| 88 668016 +a ||| 5 , ||| 0.00130378 0.0001706 1.49697e-06 1.07329e-07 2.718 ||| 0-0 ||| 767 668016 +a ||| 5 million will be subject to the ||| 1 0.229811 1.49697e-06 2.14358e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| 5 million will be subject to ||| 1 0.229811 1.49697e-06 3.49163e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| 5 ||| 0.000162893 0.0001706 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 6139 668016 +a ||| 50 years to ||| 0.142857 0.229811 1.49697e-06 8.34699e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| 51 of ||| 0.111111 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| 6 , 10 and 17 , on ||| 1 0.0782999 1.49697e-06 8.65304e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| 79 to ||| 0.2 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| 8 to 11 are ||| 0.2 0.229811 1.49697e-06 8.90691e-13 2.718 ||| 0-1 ||| 5 668016 +a ||| 8 to 11 ||| 0.0769231 0.229811 1.49697e-06 5.87035e-11 2.718 ||| 0-1 ||| 13 668016 +a ||| 8 to ||| 0.0144928 0.229811 1.49697e-06 4.4138e-06 2.718 ||| 0-1 ||| 69 668016 +a ||| 9 , 10 , 11 , 12 ||| 0.047619 0.0006022 1.49697e-06 9.2086e-24 2.718 ||| 0-0 ||| 21 668016 +a ||| 9 , 10 , 11 , ||| 0.027027 0.0006022 1.49697e-06 6.57757e-19 2.718 ||| 0-0 ||| 37 668016 +a ||| 9 , 10 , 11 ||| 0.0204082 0.0006022 1.49697e-06 5.51557e-18 2.718 ||| 0-0 ||| 49 668016 +a ||| 9 , 10 , ||| 0.0117647 0.0006022 1.49697e-06 4.14704e-13 2.718 ||| 0-0 ||| 85 668016 +a ||| 9 , 10 ||| 0.00980392 0.0006022 1.49697e-06 3.47747e-12 2.718 ||| 0-0 ||| 102 668016 +a ||| 9 , ||| 0.00203666 0.0006022 1.49697e-06 2.14658e-07 2.718 ||| 0-0 ||| 491 668016 +a ||| 9 to ||| 0.0151515 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-1 ||| 66 668016 +a ||| 9 ||| 0.000301023 0.0006022 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 3322 668016 +a ||| : a ||| 0.000657895 0.00065995 1.49697e-06 1.96932e-08 2.718 ||| 0-0 0-1 ||| 1520 668016 +a ||| : for ||| 0.00461894 0.0683377 2.99394e-06 1.24106e-05 2.718 ||| 0-1 ||| 433 668016 +a ||| : in ||| 0.000853242 0.0587624 1.49697e-06 2.02358e-05 2.718 ||| 0-1 ||| 1172 668016 +a ||| : information is only ||| 1 0.0007376 1.49697e-06 2.6905e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| : information is ||| 1 0.0007376 1.49697e-06 2.41712e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| : information ||| 0.030303 0.0007376 1.49697e-06 7.7123e-09 2.718 ||| 0-0 ||| 33 668016 +a ||| : people went to Galicia and also ||| 1 0.0007376 1.49697e-06 2.05547e-23 2.718 ||| 0-0 ||| 1 668016 +a ||| : people went to Galicia and ||| 1 0.0007376 1.49697e-06 4.07138e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| : people went to Galicia ||| 1 0.0007376 1.49697e-06 3.25037e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| : people went to ||| 1 0.0007376 1.49697e-06 2.32169e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| : people went ||| 1 0.0007376 1.49697e-06 2.6128e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| : people ||| 0.012987 0.0007376 1.49697e-06 4.10173e-08 2.718 ||| 0-0 ||| 77 668016 +a ||| : ready at the ||| 1 0.204175 1.49697e-06 3.11758e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| : ready at ||| 1 0.204175 1.49697e-06 5.07816e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| : that appeal is ||| 1 0.0008521 1.49697e-06 2.17632e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| : that appeal ||| 1 0.0008521 1.49697e-06 6.94399e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| : that by the ||| 0.5 0.0007376 1.49697e-06 2.52657e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| : that by ||| 1 0.0007376 1.49697e-06 4.11548e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| : that technically ||| 1 0.0007376 1.49697e-06 2.27327e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| : that ||| 0.0034904 0.0007376 5.98788e-06 7.83887e-07 2.718 ||| 0-0 ||| 1146 668016 +a ||| : the efficiency of the rules , ||| 1 0.0188479 1.49697e-06 7.28415e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| : the efficiency of the rules ||| 1 0.0188479 1.49697e-06 6.10806e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| : the efficiency of the ||| 1 0.0188479 1.49697e-06 5.2565e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| : the efficiency of ||| 1 0.0188479 1.49697e-06 8.56222e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| : there ||| 0.00420168 0.0006572 1.49697e-06 3.44374e-09 2.718 ||| 0-0 0-1 ||| 238 668016 +a ||| : to stimulate ||| 0.5 0.229811 1.49697e-06 7.6688e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| : to ||| 0.00534759 0.229811 5.98788e-06 0.000117982 2.718 ||| 0-1 ||| 748 668016 +a ||| : when , at ||| 1 0.204175 1.49697e-06 6.83379e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| : ||| 0.000415672 0.0007376 4.64061e-05 4.66e-05 2.718 ||| 0-0 ||| 74578 668016 +a ||| ; Who long to see ||| 0.5 0.229811 1.49697e-06 2.82898e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| ; Who long to ||| 0.5 0.229811 1.49697e-06 4.01502e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| ; a thought to ||| 0.5 0.229811 1.49697e-06 3.97421e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| ; namely ||| 0.02 0.160809 1.49697e-06 5.38908e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| ; not to eliminate ||| 0.333333 0.229811 1.49697e-06 4.23611e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| ; not to ||| 0.1 0.229811 1.49697e-06 3.68357e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| ; on ||| 0.00271003 0.0782999 1.49697e-06 1.16842e-05 2.718 ||| 0-1 ||| 369 668016 +a ||| ; to get them to champion ||| 0.5 0.229811 1.49697e-06 1.23676e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| ; to get them to ||| 0.5 0.229811 1.49697e-06 1.12433e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| ; to get them ||| 0.5 0.229811 1.49697e-06 1.26531e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| ; to get ||| 0.25 0.229811 1.49697e-06 4.71708e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| ; to ||| 0.0141844 0.229811 5.98788e-06 0.000107893 2.718 ||| 0-1 ||| 282 668016 +a ||| ? in ||| 0.05 0.0587624 1.49697e-06 1.02681e-05 2.718 ||| 0-1 ||| 20 668016 +a ||| ? it would then be for the ||| 0.5 0.0683377 1.49697e-06 1.17757e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| ? it would then be for ||| 0.5 0.0683377 1.49697e-06 1.91812e-14 2.718 ||| 0-5 ||| 2 668016 +a ||| ? to ||| 0.166667 0.229811 1.49697e-06 5.98665e-05 2.718 ||| 0-1 ||| 6 668016 +a ||| ? what programmes are envisaged here to ||| 1 0.229811 1.49697e-06 1.99475e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| A ||| 0.00126582 0.0010846 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 790 668016 +a ||| ACP countries , in order to please ||| 1 0.0587624 1.49697e-06 1.2362e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| ACP countries , in order to ||| 1 0.0587624 1.49697e-06 1.39055e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| ACP countries , in order ||| 1 0.0587624 1.49697e-06 1.56491e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| ACP countries , in ||| 0.1 0.0587624 1.49697e-06 2.93824e-11 2.718 ||| 0-3 ||| 10 668016 +a ||| APF ) ||| 1 1 1.49697e-06 1.29357e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| APF ||| 1 1 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| Achilles ' heel for ||| 1 0.0683377 1.49697e-06 3.54399e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| Affairs and Industrial Policy to ||| 1 0.229811 1.49697e-06 3.14463e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| Afghanistan to ||| 0.0238095 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| African Republic in ||| 1 0.0587624 1.49697e-06 4.93728e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| African dictators existing or ||| 1 0.0075188 1.49697e-06 4.2082e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| African dictators existing ||| 1 0.0075188 1.49697e-06 3.68075e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| African dictators ||| 0.0833333 0.0075188 1.49697e-06 4.671e-11 2.718 ||| 0-1 ||| 12 668016 +a ||| Agency for Fundamental Rights to ||| 0.25 0.229811 1.49697e-06 1.1536e-17 2.718 ||| 0-4 ||| 4 668016 +a ||| Agency for ||| 0.00377358 0.0683377 1.49697e-06 4.7903e-07 2.718 ||| 0-1 ||| 265 668016 +a ||| Agency to ||| 0.015625 0.229811 1.49697e-06 4.55392e-06 2.718 ||| 0-1 ||| 64 668016 +a ||| Aids for ||| 1 0.0683377 1.49697e-06 4.05334e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| Algeria ||| 0.000962464 0.0031646 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 1039 668016 +a ||| Ambassador ||| 0.00675676 0.0052356 2.99394e-06 1.8e-06 2.718 ||| 0-0 ||| 296 668016 +a ||| Amber Fox in the Republic ||| 1 0.0587624 1.49697e-06 2.80332e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| Amber Fox in the ||| 1 0.0587624 1.49697e-06 5.90172e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| Amber Fox in ||| 0.5 0.0587624 1.49697e-06 9.6132e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| America to ||| 0.0196078 0.229811 1.49697e-06 9.70335e-06 2.718 ||| 0-1 ||| 51 668016 +a ||| Amsterdam was able to ||| 1 0.229811 1.49697e-06 9.5295e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| Annex to ||| 0.0416667 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| Arab and Israeli delegations to engage in ||| 1 0.0587624 1.49697e-06 9.24316e-25 2.718 ||| 0-6 ||| 1 668016 +a ||| Ariel ||| 0.0243902 0.0882353 2.99394e-06 8.2e-06 2.718 ||| 0-0 ||| 82 668016 +a ||| Article 51 of ||| 0.2 0.0188479 1.49697e-06 2.34262e-13 2.718 ||| 0-2 ||| 5 668016 +a ||| As for ||| 0.1 0.0683377 1.49697e-06 2.24776e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| Assurance in ||| 0.5 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| At ||| 0.0210526 0.0148148 2.99394e-06 1.8e-06 2.718 ||| 0-0 ||| 95 668016 +a ||| Auditors puts ||| 0.333333 0.0136986 1.49697e-06 2.496e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| Austria ||| 0.000338524 0.0003775 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2954 668016 +a ||| Belarus to ||| 0.0102041 0.229811 1.49697e-06 4.16859e-06 2.718 ||| 0-1 ||| 98 668016 +a ||| Belgium , did you treat ||| 1 0.271158 1.49697e-06 5.05284e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| Belgium as ||| 0.0909091 0.0243476 1.49697e-06 5.70206e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| Bordeaux as to ||| 0.5 0.229811 1.49697e-06 1.42985e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| Brazil and the EU to ||| 0.25 0.229811 1.49697e-06 3.3322e-13 2.718 ||| 0-4 ||| 4 668016 +a ||| British Government to ||| 0.0153846 0.229811 1.49697e-06 4.98094e-10 2.718 ||| 0-2 ||| 65 668016 +a ||| Bulgaria in the ||| 0.05 0.0587624 1.49697e-06 1.58609e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| Bulgaria in ||| 0.0204082 0.0587624 1.49697e-06 2.58355e-07 2.718 ||| 0-1 ||| 49 668016 +a ||| Bulgarians were hired ||| 0.125 0.0895522 1.49697e-06 3.94108e-15 2.718 ||| 0-2 ||| 8 668016 +a ||| Bureau itself to leave for ||| 1 0.0683377 1.49697e-06 2.28004e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| Bush into ||| 0.5 0.107578 1.49697e-06 2.42972e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| C6-0051 / 2009 - ||| 1 1 1.49697e-06 1.01507e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| C6-0051 / 2009 ||| 1 1 1.49697e-06 2.691e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| C6-0051 / ||| 1 1 1.49697e-06 2.07e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| C6-0051 ||| 1 1 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| CAP , dating right back to ||| 1 0.229811 1.49697e-06 2.16901e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| Capital of Culture to ||| 1 0.229811 1.49697e-06 3.29077e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| Card to ||| 0.5 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| Cato in ||| 1 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| Centre for ||| 0.0106383 0.0683377 1.49697e-06 3.31636e-07 2.718 ||| 0-1 ||| 94 668016 +a ||| Chairman of ||| 0.00164204 0.0188479 1.49697e-06 1.71555e-07 2.718 ||| 0-1 ||| 609 668016 +a ||| Chamber , for their opinions regarding ||| 1 0.186429 1.49697e-06 2.06863e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| Chamber , on ||| 0.2 0.0782999 1.49697e-06 1.18981e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| China a member of the ||| 1 0.0188479 1.49697e-06 3.52674e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| China a member of ||| 1 0.0188479 1.49697e-06 5.74465e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| China to ||| 0.0037037 0.229811 1.49697e-06 9.21293e-06 2.718 ||| 0-1 ||| 270 668016 +a ||| Christian and ||| 0.0192308 0.0015873 1.49697e-06 6.03934e-08 2.718 ||| 0-1 ||| 52 668016 +a ||| Commission agree with ||| 0.1 0.0571592 1.49697e-06 1.55148e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| Commission and ||| 0.000157542 0.0015873 2.99394e-06 1.12702e-06 2.718 ||| 0-1 ||| 12695 668016 +a ||| Commission going to ||| 0.0769231 0.229811 1.49697e-06 1.75106e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| Commission has at ||| 0.125 0.204175 1.49697e-06 1.02333e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| Commission has in fact been implementing the ||| 1 0.0587624 1.49697e-06 3.12421e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| Commission has in fact been implementing ||| 1 0.0587624 1.49697e-06 5.08898e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| Commission has in fact been ||| 1 0.0587624 1.49697e-06 1.76701e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| Commission has in fact ||| 0.5 0.0587624 1.49697e-06 5.2917e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| Commission has in ||| 0.0526316 0.0587624 1.49697e-06 1.80647e-07 2.718 ||| 0-2 ||| 19 668016 +a ||| Commission has tried to reach ||| 0.5 0.182593 1.49697e-06 1.5636e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| Commission in ||| 0.000515198 0.0587624 1.49697e-06 3.50942e-05 2.718 ||| 0-1 ||| 1941 668016 +a ||| Commission intend to make ||| 0.5 0.229811 1.49697e-06 2.84103e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| Commission intend to ||| 0.0120482 0.229811 1.49697e-06 1.63484e-08 2.718 ||| 0-2 ||| 83 668016 +a ||| Commission intends to continue giving support ||| 1 0.136521 1.49697e-06 7.91042e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| Commission intends to continue giving ||| 1 0.136521 1.49697e-06 2.31366e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| Commission intends with ||| 1 0.0571592 1.49697e-06 1.86256e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| Commission is to ||| 0.00555556 0.229811 1.49697e-06 6.41274e-06 2.718 ||| 0-2 ||| 180 668016 +a ||| Commission representative present to hear ||| 0.5 0.229811 1.49697e-06 1.77866e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| Commission representative present to ||| 0.5 0.229811 1.49697e-06 1.75237e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| Commission taken to inform and safeguard the ||| 1 0.229811 1.49697e-06 5.61555e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| Commission taken to inform and safeguard ||| 1 0.229811 1.49697e-06 9.14707e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| Commission taken to inform and ||| 1 0.229811 1.49697e-06 4.46199e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| Commission taken to inform ||| 1 0.229811 1.49697e-06 3.56221e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| Commission taken to ||| 1 0.229811 1.49697e-06 1.86503e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| Commission to be ||| 0.00510204 0.229811 1.49697e-06 3.70815e-06 2.718 ||| 0-1 ||| 196 668016 +a ||| Commission to ||| 0.00131199 0.229811 1.49697e-05 0.000204611 2.718 ||| 0-1 ||| 7622 668016 +a ||| Commission use the legal instruments available to ||| 1 0.229811 1.49697e-06 6.52113e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| Commission would cover ||| 0.2 0.0050378 1.49697e-06 5.62177e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| Commission would like to ||| 0.00735294 0.229811 1.49697e-06 2.1325e-09 2.718 ||| 0-3 ||| 136 668016 +a ||| Commissioner , for ||| 0.00328947 0.0683377 1.49697e-06 3.87582e-07 2.718 ||| 0-2 ||| 304 668016 +a ||| Commissioner , should support it on ||| 0.5 0.0782999 1.49697e-06 1.07498e-14 2.718 ||| 0-5 ||| 2 668016 +a ||| Commissioner , to ||| 0.0042735 0.229811 1.49697e-06 3.68456e-06 2.718 ||| 0-2 ||| 234 668016 +a ||| Commissioner with ||| 0.0185185 0.0571592 1.49697e-06 1.47251e-06 2.718 ||| 0-1 ||| 54 668016 +a ||| Committee , according to her plan . ||| 1 0.229811 1.49697e-06 3.39907e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| Committee , according to her plan ||| 1 0.229811 1.49697e-06 1.12218e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| Committee , according to her ||| 1 0.229811 1.49697e-06 1.53513e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| Committee , according to ||| 0.5 0.229811 1.49697e-06 5.64177e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| Committee on Budgets ||| 0.000388199 0.0782999 1.49697e-06 5.84686e-11 2.718 ||| 0-1 ||| 2576 668016 +a ||| Committee on Fisheries ||| 0.000909091 0.0782999 1.49697e-06 3.76283e-11 2.718 ||| 0-1 ||| 1100 668016 +a ||| Committee on Internal Market and Consumer Protection ||| 0.25 0.0782999 1.49697e-06 2.33044e-25 2.718 ||| 0-1 ||| 4 668016 +a ||| Committee on Internal Market and Consumer ||| 1 0.0782999 1.49697e-06 6.54618e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| Committee on Internal Market and ||| 0.0107527 0.0782999 1.49697e-06 6.00567e-17 2.718 ||| 0-1 ||| 93 668016 +a ||| Committee on Internal Market ||| 0.0104167 0.0782999 1.49697e-06 4.7946e-15 2.718 ||| 0-1 ||| 96 668016 +a ||| Committee on Internal ||| 0.0108696 0.0782999 1.49697e-06 1.60355e-10 2.718 ||| 0-1 ||| 92 668016 +a ||| Committee on ||| 0.000201142 0.0782999 7.48485e-06 5.78897e-06 2.718 ||| 0-1 ||| 24858 668016 +a ||| Common Security and Defence Policy ||| 0.00224719 0.0015873 1.49697e-06 8.7613e-21 2.718 ||| 0-2 ||| 445 668016 +a ||| Common Security and Defence ||| 0.0333333 0.0015873 1.49697e-06 9.05093e-17 2.718 ||| 0-2 ||| 30 668016 +a ||| Common Security and ||| 0.00242131 0.0015873 1.49697e-06 2.997e-12 2.718 ||| 0-2 ||| 413 668016 +a ||| Community law into ||| 0.0526316 0.107578 1.49697e-06 1.73379e-10 2.718 ||| 0-2 ||| 19 668016 +a ||| Community of ||| 0.00480769 0.0188479 1.49697e-06 4.78876e-06 2.718 ||| 0-1 ||| 208 668016 +a ||| Community subject to ||| 1 0.229811 1.49697e-06 3.06141e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| Community wishes to ||| 0.333333 0.229811 1.49697e-06 3.00016e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| Conditions of Employment of ||| 0.0666667 0.0188479 1.49697e-06 3.67912e-14 2.718 ||| 0-1 ||| 15 668016 +a ||| Conditions of Employment ||| 0.0909091 0.0188479 1.49697e-06 6.76756e-13 2.718 ||| 0-1 ||| 11 668016 +a ||| Conditions of ||| 0.0833333 0.0188479 1.49697e-06 6.50727e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| Conference to help ||| 1 0.229811 1.49697e-06 1.24921e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| Conference to ||| 0.0285714 0.229811 1.49697e-06 6.55064e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| Constable ||| 0.142857 0.111111 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| Constant ||| 0.2 0.5 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| Consumer Policy about ||| 1 0.0526361 1.49697e-06 5.31707e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| Consumer Policy by ||| 0.5 0.0337966 1.49697e-06 8.681e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| Consumer Policy to ||| 0.125 0.229811 1.49697e-06 3.6961e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| Consumer Protection to ||| 0.166667 0.229811 1.49697e-06 1.35931e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| Convention 's procedures or of ||| 0.333333 0.0188479 1.49697e-06 9.01412e-17 2.718 ||| 0-4 ||| 3 668016 +a ||| Convention into ||| 0.111111 0.107578 1.49697e-06 1.96807e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| Corbett referred to ||| 0.333333 0.229811 1.49697e-06 4.69334e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| Council - or the governments - to ||| 1 0.229811 1.49697e-06 4.13743e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| Council for making ||| 0.166667 0.0683377 1.49697e-06 4.90193e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| Council for ||| 0.00137741 0.0683377 1.49697e-06 1.27422e-05 2.718 ||| 0-1 ||| 726 668016 +a ||| Council has followed up ||| 1 0.0192747 1.49697e-06 4.21307e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| Council has followed ||| 0.166667 0.0192747 1.49697e-06 1.23532e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| Council may decide to ||| 0.5 0.229811 1.49697e-06 5.81732e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| Council meeting in ||| 0.0166667 0.0587624 1.49697e-06 2.60953e-09 2.718 ||| 0-2 ||| 60 668016 +a ||| Council of Ministers ||| 0.000451875 0.0188479 1.49697e-06 2.39341e-10 2.718 ||| 0-1 ||| 2213 668016 +a ||| Council of ||| 0.000217061 0.0188479 1.49697e-06 1.02282e-05 2.718 ||| 0-1 ||| 4607 668016 +a ||| Council position on ||| 0.142857 0.0782999 1.49697e-06 4.3198e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| Council to be held ||| 0.0909091 0.229811 1.49697e-06 5.60022e-10 2.718 ||| 0-1 ||| 11 668016 +a ||| Council to be ||| 0.0126582 0.229811 1.49697e-06 2.1953e-06 2.718 ||| 0-1 ||| 79 668016 +a ||| Council to reach ||| 0.027027 0.229811 1.49697e-06 9.81188e-09 2.718 ||| 0-1 ||| 37 668016 +a ||| Council to support ||| 0.0357143 0.229811 1.49697e-06 4.14158e-08 2.718 ||| 0-1 ||| 28 668016 +a ||| Council to ||| 0.00214056 0.229811 8.98182e-06 0.000121134 2.718 ||| 0-1 ||| 2803 668016 +a ||| Council will ||| 0.00393701 0.0561595 2.99394e-06 4.87014e-06 2.718 ||| 0-1 ||| 508 668016 +a ||| Councils to ||| 0.111111 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| Court in ||| 0.0123457 0.0587624 1.49697e-06 2.81186e-06 2.718 ||| 0-1 ||| 81 668016 +a ||| Critics ||| 1 1 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| Croatia from ||| 0.0909091 0.0435582 1.49697e-06 3.09548e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| Cuban ||| 0.00145138 0.0015528 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 689 668016 +a ||| Culture to ||| 0.0833333 0.229811 1.49697e-06 1.89163e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| Dalia ||| 0.0909091 0.117647 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| Davos was obliged to ||| 1 0.229811 1.49697e-06 1.67258e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| De Magistris gave to ||| 1 0.229811 1.49697e-06 4.68003e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| Democrat and Reform Party , to ||| 0.111111 0.229811 1.49697e-06 1.64052e-16 2.718 ||| 0-5 ||| 9 668016 +a ||| Democrat and Reform Party for ||| 0.333333 0.0683377 1.49697e-06 1.44705e-16 2.718 ||| 0-4 ||| 3 668016 +a ||| Democrats , to ||| 0.111111 0.229811 1.49697e-06 4.44905e-06 2.718 ||| 0-2 ||| 9 668016 +a ||| Democrats in ||| 0.00341297 0.0587624 1.49697e-06 6.39879e-06 2.718 ||| 0-1 ||| 293 668016 +a ||| Democrats to ||| 0.04 0.229811 1.49697e-06 3.73071e-05 2.718 ||| 0-1 ||| 25 668016 +a ||| Deputies , who falsified the vote for ||| 1 0.0683377 1.49697e-06 1.834e-23 2.718 ||| 0-6 ||| 1 668016 +a ||| Development and Energy with ||| 1 0.0571592 1.49697e-06 2.18494e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| Development and ||| 0.00177936 0.0015873 1.49697e-06 8.47051e-08 2.718 ||| 0-1 ||| 562 668016 +a ||| Directive in ||| 0.0175439 0.0587624 1.49697e-06 4.62635e-06 2.718 ||| 0-1 ||| 57 668016 +a ||| Directive into ||| 0.0434783 0.107578 1.49697e-06 4.67721e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| Director of the ||| 0.00892857 0.0188479 1.49697e-06 2.54223e-09 2.718 ||| 0-1 ||| 112 668016 +a ||| Director of ||| 0.00854701 0.0188479 1.49697e-06 4.14099e-08 2.718 ||| 0-1 ||| 117 668016 +a ||| Distance ||| 0.25 0.333333 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| ECAs ) ||| 0.0833333 0.131148 1.49697e-06 1.04923e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| ECAs ||| 0.0222222 0.131148 1.49697e-06 7.3e-06 2.718 ||| 0-0 ||| 45 668016 +a ||| ECHO has financed humanitarian aid to Ingushetia ||| 1 0.229811 1.49697e-06 1.04236e-29 2.718 ||| 0-5 ||| 1 668016 +a ||| ECHO has financed humanitarian aid to ||| 1 0.229811 1.49697e-06 2.60589e-23 2.718 ||| 0-5 ||| 1 668016 +a ||| ECU to ||| 0.1 0.229811 1.49697e-06 1.60088e-05 2.718 ||| 0-1 ||| 10 668016 +a ||| ECU ||| 0.000441696 0.0011773 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 2264 668016 +a ||| ESA 79 to ||| 0.5 0.229811 1.49697e-06 1.13498e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| EU funds to return to the budgets ||| 1 0.229811 1.49697e-06 4.13216e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| EU funds to return to the ||| 1 0.229811 1.49697e-06 4.80483e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| EU funds to return to ||| 1 0.229811 1.49697e-06 7.82651e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| EU funds to return ||| 1 0.229811 1.49697e-06 8.80786e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| EU funds to ||| 0.0322581 0.229811 1.49697e-06 1.3225e-08 2.718 ||| 0-2 ||| 31 668016 +a ||| EU level to the ||| 0.333333 0.229811 1.49697e-06 9.10231e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| EU level to ||| 0.016129 0.229811 1.49697e-06 1.48266e-07 2.718 ||| 0-2 ||| 62 668016 +a ||| EU to ||| 0.00404531 0.229811 7.48485e-06 0.000173329 2.718 ||| 0-1 ||| 1236 668016 +a ||| EU vis-à-vis ||| 0.333333 0.243488 1.49697e-06 9.70798e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| EU was to ||| 0.2 0.229811 1.49697e-06 5.4304e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| EU with ||| 0.00534759 0.0571592 1.49697e-06 8.26074e-06 2.718 ||| 0-1 ||| 187 668016 +a ||| EU-wide ||| 0.00664452 0.0913978 5.98788e-06 0.0001086 2.718 ||| 0-0 ||| 602 668016 +a ||| EUR 120 million worth of ||| 1 0.0188479 1.49697e-06 4.57302e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| EUR ||| 0.00410601 0.0097655 6.58667e-05 0.0001524 2.718 ||| 0-0 ||| 10716 668016 +a ||| Earl of ||| 0.0555556 0.0188479 1.49697e-06 2.07049e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| East Timor to ||| 0.0666667 0.229811 1.49697e-06 2.6185e-11 2.718 ||| 0-2 ||| 15 668016 +a ||| East and ||| 0.00131234 0.0015873 1.49697e-06 5.7692e-08 2.718 ||| 0-1 ||| 762 668016 +a ||| Education and the Media , to ||| 1 0.229811 1.49697e-06 1.55605e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| Energy with ||| 0.333333 0.0571592 1.49697e-06 3.97343e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| Euro-ACP citizenship ||| 1 1 1.49697e-06 4.5e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| Euro-ACP ||| 1 1 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| Europe , and particularly ||| 0.0555556 0.0001117 1.49697e-06 2.79664e-12 2.718 ||| 0-3 ||| 18 668016 +a ||| Europe , have them peeled in ||| 1 0.0587624 1.49697e-06 8.14178e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| Europe , to ||| 0.00595238 0.229811 1.49697e-06 2.11382e-05 2.718 ||| 0-2 ||| 168 668016 +a ||| Europe as a ||| 0.00175439 0.0243476 1.49697e-06 1.96755e-07 2.718 ||| 0-1 ||| 570 668016 +a ||| Europe as ||| 0.00099108 0.0243476 1.49697e-06 4.43883e-06 2.718 ||| 0-1 ||| 1009 668016 +a ||| Europe in ||| 0.000676133 0.0587624 1.49697e-06 3.04017e-05 2.718 ||| 0-1 ||| 1479 668016 +a ||| Europe of Nations voted for the ||| 1 0.0683377 1.49697e-06 9.47958e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| Europe of Nations voted for ||| 1 0.0683377 1.49697e-06 1.54411e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| Europe to ||| 0.00286369 0.229811 7.48485e-06 0.000177253 2.718 ||| 0-1 ||| 1746 668016 +a ||| Europe-wide enhancement ||| 0.5 0.138461 1.49697e-06 2.6622e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| Europe-wide ||| 0.00290276 0.138461 2.99394e-06 0.0001479 2.718 ||| 0-0 ||| 689 668016 +a ||| European Community subject to ||| 1 0.229811 1.49697e-06 1.02371e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| European Council meeting in ||| 0.0125 0.0587624 1.49697e-06 8.72601e-12 2.718 ||| 0-3 ||| 80 668016 +a ||| European Council to be held ||| 0.0909091 0.229811 1.49697e-06 1.87266e-12 2.718 ||| 0-2 ||| 11 668016 +a ||| European Council to be ||| 0.05 0.229811 1.49697e-06 7.34088e-09 2.718 ||| 0-2 ||| 20 668016 +a ||| European Council to ||| 0.011976 0.229811 2.99394e-06 4.05061e-07 2.718 ||| 0-2 ||| 167 668016 +a ||| European Council will ||| 0.012987 0.0561595 1.49697e-06 1.62853e-08 2.718 ||| 0-2 ||| 77 668016 +a ||| European Democrats to ||| 0.0243902 0.229811 1.49697e-06 1.24751e-07 2.718 ||| 0-2 ||| 41 668016 +a ||| European Foundation for ||| 0.0133333 0.0683377 1.49697e-06 4.43584e-10 2.718 ||| 0-2 ||| 75 668016 +a ||| European Parliament be able to ||| 0.25 0.229811 1.49697e-06 1.01735e-11 2.718 ||| 0-4 ||| 4 668016 +a ||| European Parliament for ||| 0.00186567 0.0683377 1.49697e-06 7.0727e-08 2.718 ||| 0-2 ||| 536 668016 +a ||| European Parliament in ||| 0.00100806 0.0587624 1.49697e-06 1.15322e-07 2.718 ||| 0-2 ||| 992 668016 +a ||| European Union 's citizens to ||| 0.5 0.229811 1.49697e-06 1.35534e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| European Union . in ||| 0.1 0.0587624 1.49697e-06 3.39209e-10 2.718 ||| 0-3 ||| 10 668016 +a ||| European Union and to join ||| 1 0.218864 1.49697e-06 1.1175e-11 2.718 ||| 0-3 0-4 ||| 1 668016 +a ||| European Union for ||| 0.00195312 0.0683377 1.49697e-06 6.86815e-08 2.718 ||| 0-2 ||| 512 668016 +a ||| European Union into ||| 0.0116279 0.107578 1.49697e-06 1.13218e-08 2.718 ||| 0-2 ||| 86 668016 +a ||| European Union to ||| 0.00051948 0.229811 1.49697e-06 6.52924e-07 2.718 ||| 0-2 ||| 1925 668016 +a ||| European Union with ||| 0.00262467 0.0571592 1.49697e-06 3.11178e-08 2.718 ||| 0-2 ||| 381 668016 +a ||| European budget to ||| 0.111111 0.229811 1.49697e-06 1.44547e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| European citizens , to ||| 0.0555556 0.229811 1.49697e-06 1.52264e-08 2.718 ||| 0-3 ||| 18 668016 +a ||| European countries to reduce their levels ||| 1 0.229811 1.49697e-06 2.60058e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| European countries to reduce their ||| 1 0.229811 1.49697e-06 1.96418e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| European countries to reduce ||| 1 0.229811 1.49697e-06 1.69458e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| European countries to ||| 0.0192308 0.229811 1.49697e-06 4.44771e-07 2.718 ||| 0-2 ||| 52 668016 +a ||| European level , at ||| 0.2 0.204175 1.49697e-06 1.16099e-08 2.718 ||| 0-3 ||| 5 668016 +a ||| European level and ||| 0.00359712 0.0015873 1.49697e-06 5.51909e-09 2.718 ||| 0-2 ||| 278 668016 +a ||| European level to ||| 0.00763359 0.229811 1.49697e-06 1.00199e-06 2.718 ||| 0-2 ||| 131 668016 +a ||| European pressurised ||| 0.5 0.0909091 1.49697e-06 2.1401e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| European taxpayers to ||| 0.0833333 0.229811 1.49697e-06 3.39698e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| European to ||| 0.0833333 0.229811 1.49697e-06 0.00117137 2.718 ||| 0-1 ||| 12 668016 +a ||| European-level , ||| 0.333333 0.204724 1.49697e-06 5.6646e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| European-level ||| 0.00877193 0.204724 1.49697e-06 4.75e-05 2.718 ||| 0-0 ||| 114 668016 +a ||| Europol to what ||| 1 0.229811 1.49697e-06 4.22697e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| Europol to ||| 0.025641 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| FAA in ||| 1 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| FR ) In ||| 0.0344828 0.0054054 1.49697e-06 2.42645e-13 2.718 ||| 0-2 ||| 29 668016 +a ||| FTT ) ||| 0.0625 0.02 1.49697e-06 2.58714e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| FTT ||| 0.016129 0.02 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 62 668016 +a ||| Finland ought to ||| 1 0.229811 1.49697e-06 1.26228e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| Foundation for ||| 0.0232558 0.0683377 1.49697e-06 1.32655e-07 2.718 ||| 0-1 ||| 43 668016 +a ||| Fox in the Republic ||| 1 0.0587624 1.49697e-06 7.00829e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| Fox in the ||| 0.5 0.0587624 1.49697e-06 1.47543e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| Fox in ||| 0.5 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| France , for ||| 0.0135135 0.0683377 1.49697e-06 1.0107e-07 2.718 ||| 0-2 ||| 74 668016 +a ||| France comes second with ||| 0.5 0.0571592 1.49697e-06 9.99403e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| Frontex from sending ||| 1 0.0435582 1.49697e-06 3.64259e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| Frontex from ||| 1 0.0435582 1.49697e-06 1.58374e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| Fundamental Rights to ||| 0.0434783 0.229811 1.49697e-06 1.15459e-10 2.718 ||| 0-2 ||| 23 668016 +a ||| Funds to Europe ||| 1 0.229811 1.49697e-06 6.62925e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| Funds to ||| 0.0833333 0.229811 1.49697e-06 1.31013e-05 2.718 ||| 0-1 ||| 12 668016 +a ||| GMOs in ||| 0.0105263 0.0587624 1.49697e-06 3.24446e-07 2.718 ||| 0-1 ||| 95 668016 +a ||| Gaëlle Le Bouler ||| 1 1 1.49697e-06 7.92e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| Gaëlle Le ||| 1 1 1.49697e-06 1.98e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| Gaëlle ||| 1 1 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| Georgia in the ||| 0.0833333 0.0587624 1.49697e-06 2.65577e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| Georgia in ||| 0.0212766 0.0587624 1.49697e-06 4.32594e-07 2.718 ||| 0-1 ||| 47 668016 +a ||| German , in ||| 0.5 0.0587624 1.49697e-06 1.72679e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| German-speaking people or those in ||| 0.25 0.0587624 1.49697e-06 1.75125e-17 2.718 ||| 0-4 ||| 4 668016 +a ||| Germany owes Greece remain in abeyance and ||| 1 0.0587624 1.49697e-06 4.31996e-29 2.718 ||| 0-4 ||| 1 668016 +a ||| Germany owes Greece remain in abeyance ||| 1 0.0587624 1.49697e-06 3.44882e-27 2.718 ||| 0-4 ||| 1 668016 +a ||| Germany owes Greece remain in ||| 1 0.0587624 1.49697e-06 3.13529e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| God , ||| 0.00714286 0.154977 1.49697e-06 1.49068e-05 2.718 ||| 0-0 ||| 140 668016 +a ||| God to ||| 0.25 0.154977 1.49697e-06 1.11073e-05 2.718 ||| 0-0 ||| 4 668016 +a ||| God ||| 0.0034965 0.154977 2.99394e-06 0.000125 2.718 ||| 0-0 ||| 572 668016 +a ||| Government in ||| 0.00515464 0.0587624 1.49697e-06 2.89598e-06 2.718 ||| 0-1 ||| 194 668016 +a ||| Government to hand ||| 1 0.229811 1.49697e-06 6.69641e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| Government to ||| 0.0105263 0.229811 4.49091e-06 1.68845e-05 2.718 ||| 0-1 ||| 285 668016 +a ||| Greece is ||| 0.00490196 0.0006155 1.49697e-06 8.4621e-08 2.718 ||| 0-0 ||| 204 668016 +a ||| Greece remain in abeyance and have not ||| 1 0.0587624 1.49697e-06 6.19138e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| Greece remain in abeyance and have ||| 1 0.0587624 1.49697e-06 1.81347e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| Greece remain in abeyance and ||| 1 0.0587624 1.49697e-06 1.51631e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| Greece remain in abeyance ||| 1 0.0587624 1.49697e-06 1.21054e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| Greece remain in ||| 1 0.0587624 1.49697e-06 1.10049e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| Greece ||| 0.000359454 0.0006155 2.99394e-06 2.7e-06 2.718 ||| 0-0 ||| 5564 668016 +a ||| Greens did not nominate him ||| 1 0.271605 1.49697e-06 7.99416e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| Greens did not nominate ||| 1 0.271605 1.49697e-06 2.4935e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| Group for ||| 0.015873 0.0683377 1.49697e-06 1.19868e-05 2.718 ||| 0-1 ||| 63 668016 +a ||| Group in ||| 0.0113636 0.0587624 1.49697e-06 1.95448e-05 2.718 ||| 0-1 ||| 88 668016 +a ||| Group is asking ||| 1 0.0319755 1.49697e-06 1.35903e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| Group of the ||| 0.000343053 0.0188479 1.49697e-06 5.90705e-07 2.718 ||| 0-1 ||| 2915 668016 +a ||| Group of ||| 0.000502765 0.0188479 2.99394e-06 9.62189e-06 2.718 ||| 0-1 ||| 3978 668016 +a ||| Group to cut ||| 1 0.229811 1.49697e-06 8.61486e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| Group to ||| 0.027027 0.229811 1.49697e-06 0.000113953 2.718 ||| 0-1 ||| 37 668016 +a ||| HTAs ||| 1 1 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| Hague to see what it ||| 0.5 0.229811 1.49697e-06 8.62207e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| Hague to see what ||| 0.5 0.229811 1.49697e-06 4.84843e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| Hague to see ||| 0.5 0.229811 1.49697e-06 3.45552e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| Hague to ||| 0.1 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| Haifa on the eve of ||| 1 0.0782999 1.49697e-06 9.11594e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| Haifa on the eve ||| 1 0.0782999 1.49697e-06 1.67683e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| Haifa on the ||| 1 0.0782999 1.49697e-06 9.31574e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| Haifa on ||| 1 0.0782999 1.49697e-06 1.51742e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| Head of Police ||| 1 0.0188479 1.49697e-06 1.17131e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| Head of State ||| 0.00714286 0.0188479 1.49697e-06 6.3996e-12 2.718 ||| 0-1 ||| 140 668016 +a ||| Head of ||| 0.00754717 0.0188479 2.99394e-06 5.32413e-08 2.718 ||| 0-1 ||| 265 668016 +a ||| Health and Consumer Policy about ||| 1 0.0526361 1.49697e-06 7.09301e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| Health and Consumer Policy by ||| 0.5 0.0337966 1.49697e-06 1.15805e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| Health and Consumer Policy to ||| 0.166667 0.229811 1.49697e-06 4.93063e-15 2.718 ||| 0-4 ||| 6 668016 +a ||| Health and Consumer Policy ||| 0.00158983 0.0015873 1.49697e-06 2.16818e-15 2.718 ||| 0-1 ||| 629 668016 +a ||| Health and Consumer Protection to ||| 0.25 0.229811 1.49697e-06 1.81333e-15 2.718 ||| 0-4 ||| 4 668016 +a ||| Health and Consumer ||| 0.00925926 0.0015873 1.49697e-06 2.23986e-11 2.718 ||| 0-1 ||| 108 668016 +a ||| Health and ||| 0.00103306 0.0015873 2.99394e-06 2.05492e-07 2.718 ||| 0-1 ||| 1936 668016 +a ||| House , to ||| 0.0238095 0.229811 2.99394e-06 1.0448e-05 2.718 ||| 0-2 ||| 84 668016 +a ||| House at ||| 0.00980392 0.204175 1.49697e-06 8.51225e-06 2.718 ||| 0-1 ||| 102 668016 +a ||| House for ||| 0.00243902 0.0683377 1.49697e-06 9.21581e-06 2.718 ||| 0-1 ||| 410 668016 +a ||| House in order ||| 0.0833333 0.0587624 1.49697e-06 8.00318e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| House in ||| 0.00245098 0.0587624 1.49697e-06 1.50266e-05 2.718 ||| 0-1 ||| 408 668016 +a ||| House intend to deny Portugal ||| 1 0.229811 1.49697e-06 3.98164e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| House intend to deny ||| 1 0.229811 1.49697e-06 5.53006e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| House intend to ||| 1 0.229811 1.49697e-06 7.00007e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| House to ||| 0.00643087 0.229811 1.19758e-05 8.76104e-05 2.718 ||| 0-1 ||| 1244 668016 +a ||| House with ||| 0.0102041 0.0571592 1.49697e-06 4.17544e-06 2.718 ||| 0-1 ||| 98 668016 +a ||| Human Aids for ||| 1 0.0683377 1.49697e-06 1.64971e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| Human Rights , Common Security and Defence ||| 0.0357143 0.0015873 1.49697e-06 3.61985e-26 2.718 ||| 0-5 ||| 28 668016 +a ||| Human Rights , Common Security and ||| 0.00276243 0.0015873 1.49697e-06 1.19862e-21 2.718 ||| 0-5 ||| 362 668016 +a ||| I , for one , ||| 0.0181818 0.0683377 1.49697e-06 1.54502e-08 2.718 ||| 0-2 ||| 55 668016 +a ||| I , for one ||| 0.0175439 0.0683377 1.49697e-06 1.29556e-07 2.718 ||| 0-2 ||| 57 668016 +a ||| I , for ||| 0.013245 0.0683377 2.99394e-06 3.10835e-05 2.718 ||| 0-2 ||| 151 668016 +a ||| I , to ||| 0.333333 0.229811 1.49697e-06 0.000295496 2.718 ||| 0-2 ||| 3 668016 +a ||| I , too , am in ||| 0.142857 0.0587624 1.49697e-06 1.05088e-11 2.718 ||| 0-5 ||| 7 668016 +a ||| I , ||| 0.000577367 0.0013612 1.49697e-06 8.80577e-05 2.718 ||| 0-0 ||| 1732 668016 +a ||| I absolutely disagree with ||| 0.25 0.0571592 1.49697e-06 8.79756e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| I accused ||| 0.333333 0.100079 1.49697e-06 8.13452e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| I address to ||| 0.5 0.229811 1.49697e-06 1.89061e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| I address ||| 0.010101 0.0257046 1.49697e-06 1.27182e-06 2.718 ||| 0-1 ||| 99 668016 +a ||| I agree with the various speakers that ||| 1 0.0571592 1.49697e-06 6.0516e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| I agree with the various speakers ||| 1 0.0571592 1.49697e-06 3.59751e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| I agree with the various ||| 0.5 0.0571592 1.49697e-06 1.78095e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| I agree with the ||| 0.000584112 0.0571592 1.49697e-06 1.15346e-09 2.718 ||| 0-2 ||| 1712 668016 +a ||| I agree with you , ||| 0.0204082 0.0571592 1.49697e-06 7.2343e-12 2.718 ||| 0-2 ||| 49 668016 +a ||| I agree with you ||| 0.00284091 0.0571592 1.49697e-06 6.06626e-11 2.718 ||| 0-2 ||| 352 668016 +a ||| I agree with ||| 0.000681199 0.0571592 4.49091e-06 1.87886e-08 2.718 ||| 0-2 ||| 4404 668016 +a ||| I also believe that if ||| 0.125 0.0014881 1.49697e-06 2.42358e-14 2.718 ||| 0-4 ||| 8 668016 +a ||| I also did in ||| 0.2 0.0587624 1.49697e-06 9.74542e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| I also have ||| 0.00403226 0.0013612 1.49697e-06 4.45848e-08 2.718 ||| 0-0 ||| 248 668016 +a ||| I also thank ||| 0.00561798 0.0126162 1.49697e-06 2.08268e-08 2.718 ||| 0-2 ||| 178 668016 +a ||| I also want to thank ||| 0.00961538 0.229811 1.49697e-06 6.18749e-13 2.718 ||| 0-3 ||| 104 668016 +a ||| I also want to ||| 0.00280899 0.229811 1.49697e-06 5.84829e-09 2.718 ||| 0-3 ||| 356 668016 +a ||| I also wish to extend ||| 0.2 0.229811 1.49697e-06 1.59262e-13 2.718 ||| 0-3 ||| 5 668016 +a ||| I also wish to ||| 0.00325733 0.229811 1.49697e-06 3.68661e-09 2.718 ||| 0-3 ||| 307 668016 +a ||| I also ||| 0.000208986 0.0013612 1.49697e-06 3.72789e-06 2.718 ||| 0-0 ||| 4785 668016 +a ||| I am adamant in ||| 1 0.0587624 1.49697e-06 2.17172e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| I am also awaiting ||| 0.5 0.0889121 1.49697e-06 3.5402e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| I am amazed at just ||| 1 0.204175 1.49697e-06 6.98481e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| I am amazed at ||| 0.0666667 0.204175 1.49697e-06 5.53603e-13 2.718 ||| 0-3 ||| 15 668016 +a ||| I am at a ||| 0.0833333 0.204175 1.49697e-06 1.36327e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| I am at one with ||| 0.2 0.0571592 1.49697e-06 2.63303e-12 2.718 ||| 0-4 ||| 5 668016 +a ||| I am at ||| 0.0147059 0.204175 1.49697e-06 3.07557e-07 2.718 ||| 0-2 ||| 68 668016 +a ||| I am for it ||| 1 0.0683377 1.49697e-06 5.92141e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| I am for ||| 0.0243902 0.0683377 1.49697e-06 3.32978e-07 2.718 ||| 0-2 ||| 41 668016 +a ||| I am here as an acting Commissioner ||| 1 0.0243476 1.49697e-06 3.71794e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| I am here as an acting ||| 1 0.0243476 1.49697e-06 4.21535e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| I am here as an ||| 0.5 0.0243476 1.49697e-06 7.14466e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| I am here as ||| 0.111111 0.0243476 1.49697e-06 1.60745e-10 2.718 ||| 0-3 ||| 9 668016 +a ||| I am in agreement with ||| 0.015625 0.0571592 1.49697e-06 5.95134e-13 2.718 ||| 0-4 ||| 64 668016 +a ||| I am in ||| 0.00251256 0.0587624 4.49091e-06 5.42929e-07 2.718 ||| 0-2 ||| 1194 668016 +a ||| I am looking for ||| 0.0833333 0.0683377 1.49697e-06 3.5229e-11 2.718 ||| 0-3 ||| 12 668016 +a ||| I am making ||| 0.0126582 0.0275406 1.49697e-06 4.12421e-09 2.718 ||| 0-2 ||| 79 668016 +a ||| I am now giving ||| 0.2 0.136521 1.49697e-06 1.87742e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| I am of ||| 0.00529101 0.0188479 1.49697e-06 2.67283e-07 2.718 ||| 0-2 ||| 189 668016 +a ||| I am on ||| 0.0714286 0.0782999 5.98788e-06 3.42801e-07 2.718 ||| 0-2 ||| 56 668016 +a ||| I am pleased to note ||| 0.00617284 0.229811 1.49697e-06 1.34503e-14 2.718 ||| 0-3 ||| 162 668016 +a ||| I am pleased to ||| 0.00288184 0.229811 2.99394e-06 1.28834e-10 2.718 ||| 0-3 ||| 694 668016 +a ||| I am prepared to ||| 0.00645161 0.229811 1.49697e-06 2.74446e-10 2.718 ||| 0-3 ||| 155 668016 +a ||| I am receptive to those who say ||| 1 0.229811 1.49697e-06 1.3526e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| I am receptive to those who ||| 1 0.229811 1.49697e-06 1.41515e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| I am receptive to those ||| 1 0.229811 1.49697e-06 1.60448e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| I am receptive to ||| 0.333333 0.229811 1.49697e-06 2.21582e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| I am representing ||| 0.0588235 0.194985 1.49697e-06 3.14286e-09 2.718 ||| 0-2 ||| 17 668016 +a ||| I am saying it for ||| 0.5 0.0683377 1.49697e-06 1.05046e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| I am to ||| 0.0434783 0.229811 4.49091e-06 3.16546e-06 2.718 ||| 0-2 ||| 69 668016 +a ||| I am willing to ||| 0.0166667 0.229811 1.49697e-06 1.19655e-10 2.718 ||| 0-3 ||| 60 668016 +a ||| I am ||| 5.36121e-05 0.0013612 2.99394e-06 9.43306e-07 2.718 ||| 0-0 ||| 37305 668016 +a ||| I appeal to ||| 0.00304878 0.229811 1.49697e-06 7.48313e-08 2.718 ||| 0-2 ||| 328 668016 +a ||| I arrived back in ||| 1 0.0587624 1.49697e-06 4.74512e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| I ask you : where ||| 0.5 0.0013612 1.49697e-06 3.34531e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| I ask you : ||| 0.0208333 0.0013612 1.49697e-06 1.10406e-13 2.718 ||| 0-0 ||| 48 668016 +a ||| I ask you ||| 0.0017094 0.0013612 1.49697e-06 3.2781e-10 2.718 ||| 0-0 ||| 585 668016 +a ||| I ask ||| 0.00119403 0.0013612 2.99394e-06 1.0153e-07 2.718 ||| 0-0 ||| 1675 668016 +a ||| I asked ||| 0.00495868 0.0895701 4.49091e-06 5.81088e-06 2.718 ||| 0-1 ||| 605 668016 +a ||| I became ||| 0.0133333 0.0298893 1.49697e-06 5.22732e-07 2.718 ||| 0-1 ||| 75 668016 +a ||| I believe , has to ||| 1 0.229811 1.49697e-06 4.73508e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| I believe , reassure Mrs Torres ||| 1 0.284916 1.49697e-06 4.80545e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| I believe , reassure Mrs ||| 1 0.284916 1.49697e-06 6.86492e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| I believe , reassure ||| 1 0.284916 1.49697e-06 7.33432e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| I believe , ||| 0.000564334 0.0013612 1.49697e-06 2.74124e-08 2.718 ||| 0-0 ||| 1772 668016 +a ||| I believe that it went much further ||| 1 0.0003879 1.49697e-06 4.21147e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| I believe ||| 3.47996e-05 0.0013612 1.49697e-06 2.29864e-07 2.718 ||| 0-0 ||| 28736 668016 +a ||| I bring to ||| 0.166667 0.229811 1.49697e-06 7.71357e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| I call upon him to ||| 0.5 0.229811 1.49697e-06 4.18319e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| I came down here ||| 0.2 0.0182742 1.49697e-06 5.34958e-13 2.718 ||| 0-3 ||| 5 668016 +a ||| I came out ||| 0.2 0.0669777 1.49697e-06 3.65506e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| I came to ||| 0.0294118 0.229811 2.99394e-06 3.1221e-07 2.718 ||| 0-2 ||| 68 668016 +a ||| I can answer ||| 0.0153846 0.0026107 1.49697e-06 4.41813e-10 2.718 ||| 0-2 ||| 65 668016 +a ||| I can do is to ||| 0.142857 0.229811 1.49697e-06 7.93488e-10 2.718 ||| 0-4 ||| 7 668016 +a ||| I can immediately reassure ||| 0.166667 0.284916 1.49697e-06 2.32694e-13 2.718 ||| 0-3 ||| 6 668016 +a ||| I can understand why , over ||| 1 0.0682544 1.49697e-06 1.122e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| I can ||| 0.000113753 0.0013612 1.49697e-06 2.19622e-06 2.718 ||| 0-0 ||| 8791 668016 +a ||| I caught up with ||| 1 0.0571592 1.49697e-06 1.11563e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| I conclude , for ||| 1 0.0683377 1.49697e-06 7.49112e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| I congratulate ||| 0.00193548 0.245244 4.49091e-06 2.35526e-05 2.718 ||| 0-1 ||| 1550 668016 +a ||| I could mention , in emotional ||| 1 0.0587624 1.49697e-06 7.70686e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| I could mention , in ||| 1 0.0587624 1.49697e-06 3.50312e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| I could not sleep for the rest ||| 0.5 0.0683377 1.49697e-06 1.46846e-20 2.718 ||| 0-4 ||| 2 668016 +a ||| I could not sleep for the ||| 0.5 0.0683377 1.49697e-06 1.94241e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| I could not sleep for ||| 0.5 0.0683377 1.49697e-06 3.16396e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| I could only make it clear at ||| 1 0.0013612 1.49697e-06 2.51782e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| I could only make it clear ||| 1 0.0013612 1.49697e-06 6.01285e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| I could only make it ||| 1 0.0013612 1.49697e-06 1.8062e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| I could only make ||| 1 0.0013612 1.49697e-06 1.01568e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| I could only ||| 0.025641 0.0013612 1.49697e-06 5.84462e-10 2.718 ||| 0-0 ||| 39 668016 +a ||| I could refer to ||| 0.1 0.229811 1.49697e-06 1.37613e-10 2.718 ||| 0-3 ||| 10 668016 +a ||| I could ||| 0.000668449 0.0013612 1.49697e-06 5.25076e-07 2.718 ||| 0-0 ||| 1496 668016 +a ||| I dare say ||| 0.0212766 0.188525 1.49697e-06 1.27712e-09 2.718 ||| 0-1 ||| 47 668016 +a ||| I dare ||| 0.0194175 0.188525 2.99394e-06 1.33618e-06 2.718 ||| 0-1 ||| 103 668016 +a ||| I do not believe ||| 0.000656168 0.0013612 1.49697e-06 2.69595e-12 2.718 ||| 0-0 ||| 1524 668016 +a ||| I do not think that on ||| 1 0.0782999 1.49697e-06 2.02498e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| I do not think ||| 0.000485673 0.0013612 1.49697e-06 3.31256e-12 2.718 ||| 0-0 ||| 2059 668016 +a ||| I do not want to ||| 0.00129032 0.229811 1.49697e-06 1.35862e-11 2.718 ||| 0-4 ||| 775 668016 +a ||| I do not ||| 0.000453206 0.0013612 2.99394e-06 8.66029e-09 2.718 ||| 0-0 ||| 4413 668016 +a ||| I do ||| 0.00113037 0.0013612 4.49091e-06 2.53663e-06 2.718 ||| 0-0 ||| 2654 668016 +a ||| I for one ||| 0.0113636 0.0683377 1.49697e-06 1.08638e-06 2.718 ||| 0-1 ||| 88 668016 +a ||| I for ||| 0.0430108 0.0683377 5.98788e-06 0.000260648 2.718 ||| 0-1 ||| 93 668016 +a ||| I give the floor to ||| 0.00483092 0.229811 1.49697e-06 3.91786e-12 2.718 ||| 0-4 ||| 207 668016 +a ||| I give ||| 0.00454545 0.0241455 2.99394e-06 3.97743e-06 2.718 ||| 0-1 ||| 440 668016 +a ||| I had ||| 0.00045683 0.0013612 1.49697e-06 7.41132e-07 2.718 ||| 0-0 ||| 2189 668016 +a ||| I happened to ||| 0.0769231 0.229811 1.49697e-06 1.53379e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| I have a ||| 0.000881057 0.0013612 1.49697e-06 3.91446e-07 2.718 ||| 0-0 ||| 1135 668016 +a ||| I have already congratulated ||| 0.5 0.165644 1.49697e-06 3.86287e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| I have at ||| 0.1 0.204175 1.49697e-06 2.87931e-06 2.718 ||| 0-2 ||| 10 668016 +a ||| I have been known to ||| 0.333333 0.229811 1.49697e-06 1.08951e-11 2.718 ||| 0-4 ||| 3 668016 +a ||| I have been struck by ||| 0.0714286 0.0337966 1.49697e-06 5.94988e-14 2.718 ||| 0-4 ||| 14 668016 +a ||| I have been ||| 0.000581734 0.0013612 1.49697e-06 2.94889e-08 2.718 ||| 0-0 ||| 1719 668016 +a ||| I have come to have great ||| 0.166667 0.229811 1.49697e-06 1.18298e-13 2.718 ||| 0-3 ||| 6 668016 +a ||| I have come to have ||| 0.142857 0.229811 1.49697e-06 3.01013e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| I have come to ||| 0.015625 0.229811 1.49697e-06 2.51687e-08 2.718 ||| 0-3 ||| 64 668016 +a ||| I have given ||| 0.00961538 0.0371011 1.49697e-06 8.94197e-08 2.718 ||| 0-2 ||| 104 668016 +a ||| I have got to know her as ||| 1 0.229811 1.49697e-06 2.32249e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| I have got to know her ||| 1 0.229811 1.49697e-06 2.27597e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| I have got to know ||| 0.25 0.229811 1.49697e-06 8.36445e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| I have got to ||| 0.125 0.229811 1.49697e-06 3.24204e-09 2.718 ||| 0-3 ||| 8 668016 +a ||| I have in ||| 0.0171429 0.0587624 4.49091e-06 5.08284e-06 2.718 ||| 0-2 ||| 175 668016 +a ||| I have needed to urge them ||| 1 0.229811 1.49697e-06 3.48059e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| I have needed to urge ||| 1 0.229811 1.49697e-06 1.29756e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| I have needed to ||| 1 0.229811 1.49697e-06 3.96809e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| I have on ||| 0.0555556 0.0782999 1.49697e-06 3.20926e-06 2.718 ||| 0-2 ||| 18 668016 +a ||| I have spoken to ||| 0.0232558 0.229811 1.49697e-06 6.60854e-10 2.718 ||| 0-3 ||| 43 668016 +a ||| I have three comments to make ||| 0.111111 0.0013612 1.49697e-06 4.31605e-18 2.718 ||| 0-0 ||| 9 668016 +a ||| I have three comments to ||| 0.166667 0.0013612 1.49697e-06 2.48363e-15 2.718 ||| 0-0 ||| 6 668016 +a ||| I have three comments ||| 0.125 0.0013612 1.49697e-06 2.79505e-14 2.718 ||| 0-0 ||| 8 668016 +a ||| I have three ||| 0.00806452 0.0013612 1.49697e-06 5.5901e-10 2.718 ||| 0-0 ||| 124 668016 +a ||| I have to say that ||| 0.000823045 0.229811 1.49697e-06 4.76469e-10 2.718 ||| 0-2 ||| 1215 668016 +a ||| I have to say ||| 0.00053135 0.229811 1.49697e-06 2.83248e-08 2.718 ||| 0-2 ||| 1882 668016 +a ||| I have to ||| 0.00395726 0.229811 1.49697e-05 2.96347e-05 2.718 ||| 0-2 ||| 2527 668016 +a ||| I have ||| 0.000166962 0.0013612 7.48485e-06 8.83112e-06 2.718 ||| 0-0 ||| 29947 668016 +a ||| I in turn ||| 0.0769231 0.0587624 1.49697e-06 9.52836e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| I in ||| 0.0263158 0.0587624 1.49697e-06 0.000424994 2.718 ||| 0-1 ||| 38 668016 +a ||| I include in ||| 0.25 0.0587624 1.49697e-06 5.62691e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| I include ||| 0.0175439 0.0281253 1.49697e-06 1.87236e-06 2.718 ||| 0-1 ||| 57 668016 +a ||| I invite ||| 0.0106952 0.330028 2.99394e-06 4.51289e-06 2.718 ||| 0-1 ||| 187 668016 +a ||| I join everyone else in ||| 1 0.207917 1.49697e-06 1.64291e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| I join everyone else ||| 1 0.207917 1.49697e-06 7.67555e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| I join everyone ||| 1 0.207917 1.49697e-06 6.5047e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| I join ||| 0.00518135 0.207917 1.49697e-06 9.66523e-06 2.718 ||| 0-1 ||| 193 668016 +a ||| I listen to ||| 0.0294118 0.229811 1.49697e-06 3.74157e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| I look into this further ||| 1 0.107578 1.49697e-06 3.91122e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| I look into this ||| 1 0.107578 1.49697e-06 8.09274e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| I look into ||| 1 0.107578 1.49697e-06 1.25248e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| I make it to ||| 1 0.229811 1.49697e-06 7.65749e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| I make ||| 0.0046729 0.0033044 1.49697e-06 1.27182e-06 2.718 ||| 0-1 ||| 214 668016 +a ||| I managed to ||| 0.1 0.229811 1.49697e-06 1.39008e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| I may , to relate in ||| 1 0.0587624 1.49697e-06 8.36768e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| I may , to ||| 0.0714286 0.229811 2.99394e-06 2.21386e-07 2.718 ||| 0-3 ||| 28 668016 +a ||| I may happen to ||| 1 0.229811 1.49697e-06 2.01792e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| I may say so , to ||| 0.2 0.229811 1.49697e-06 4.8027e-13 2.718 ||| 0-5 ||| 5 668016 +a ||| I must emphasise once again ||| 0.166667 0.0700825 1.49697e-06 1.75284e-16 2.718 ||| 0-4 ||| 6 668016 +a ||| I must emphasise the urgency of adopting ||| 1 0.0188479 1.49697e-06 4.24926e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| I must emphasise the urgency of ||| 1 0.0188479 1.49697e-06 8.68969e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| I participated in ||| 0.03125 0.0587624 1.49697e-06 1.52998e-09 2.718 ||| 0-2 ||| 32 668016 +a ||| I pass on ||| 0.166667 0.0782999 1.49697e-06 1.53489e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| I prefer to spell it out ||| 0.25 0.229811 1.49697e-06 3.81755e-17 2.718 ||| 0-2 ||| 4 668016 +a ||| I prefer to spell it ||| 0.25 0.229811 1.49697e-06 9.96645e-15 2.718 ||| 0-2 ||| 4 668016 +a ||| I prefer to spell ||| 0.25 0.229811 1.49697e-06 5.60442e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| I prefer to ||| 0.0277778 0.229811 2.99394e-06 6.51677e-08 2.718 ||| 0-2 ||| 72 668016 +a ||| I really have to highlight just how ||| 1 0.229811 1.49697e-06 1.21386e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| I really have to highlight just ||| 1 0.229811 1.49697e-06 3.3869e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| I really have to highlight ||| 1 0.229811 1.49697e-06 2.68439e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| I really have to ||| 0.047619 0.229811 1.49697e-06 1.4355e-08 2.718 ||| 0-3 ||| 21 668016 +a ||| I refer to ||| 0.00183824 0.229811 1.49697e-06 1.93521e-07 2.718 ||| 0-2 ||| 544 668016 +a ||| I rushed down to ||| 1 0.229811 1.49697e-06 3.80554e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| I said earlier , this ||| 0.111111 0.031057 1.49697e-06 3.49944e-13 2.718 ||| 0-2 ||| 9 668016 +a ||| I said earlier , ||| 0.00414938 0.031057 1.49697e-06 5.41591e-11 2.718 ||| 0-2 ||| 241 668016 +a ||| I said earlier ||| 0.0025 0.031057 1.49697e-06 4.54146e-10 2.718 ||| 0-2 ||| 400 668016 +a ||| I say on ||| 0.0909091 0.0782999 1.49697e-06 2.56477e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| I say this - to ||| 1 0.229811 1.49697e-06 5.77236e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| I say to ||| 0.0104167 0.229811 2.99394e-06 2.36834e-06 2.718 ||| 0-2 ||| 192 668016 +a ||| I say ||| 0.000502765 0.0013612 1.49697e-06 7.05763e-07 2.718 ||| 0-0 ||| 1989 668016 +a ||| I shall address him and ||| 1 0.131911 1.49697e-06 5.23439e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| I shall address him ||| 1 0.131911 1.49697e-06 4.17886e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| I shall address ||| 0.0526316 0.131911 1.49697e-06 1.30345e-09 2.718 ||| 0-1 ||| 19 668016 +a ||| I shall be ||| 0.00228833 0.131911 1.49697e-06 3.09597e-07 2.718 ||| 0-1 ||| 437 668016 +a ||| I shall give up ||| 1 0.0241455 1.49697e-06 7.41464e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| I shall give ||| 0.0176991 0.131911 2.99394e-06 1.03524e-08 2.718 ||| 0-1 ||| 113 668016 +a ||| I shall just mention the two that ||| 1 0.131911 1.49697e-06 5.11466e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| I shall just mention the two ||| 1 0.131911 1.49697e-06 3.04053e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| I shall just mention the ||| 0.142857 0.131911 1.49697e-06 1.28618e-13 2.718 ||| 0-1 ||| 7 668016 +a ||| I shall just mention ||| 0.0833333 0.131911 1.49697e-06 2.09504e-12 2.718 ||| 0-1 ||| 12 668016 +a ||| I shall just ||| 0.04 0.131911 1.49697e-06 2.15539e-08 2.718 ||| 0-1 ||| 25 668016 +a ||| I shall moan and ||| 1 0.131911 1.49697e-06 8.5593e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| I shall moan ||| 1 0.131911 1.49697e-06 6.83328e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| I shall pass on to ||| 0.166667 0.229811 1.49697e-06 5.18362e-13 2.718 ||| 0-4 ||| 6 668016 +a ||| I shall read out on ||| 1 0.0782999 1.49697e-06 2.70796e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| I shall reply to ||| 0.0666667 0.229811 1.49697e-06 3.90066e-11 2.718 ||| 0-3 ||| 15 668016 +a ||| I shall support it ||| 0.25 0.131911 1.49697e-06 1.03867e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| I shall support ||| 0.0285714 0.131911 1.49697e-06 5.84075e-09 2.718 ||| 0-1 ||| 35 668016 +a ||| I shall ||| 0.0132906 0.131911 4.34121e-05 1.70832e-05 2.718 ||| 0-1 ||| 2182 668016 +a ||| I should again like to ||| 0.125 0.229811 1.49697e-06 1.12759e-11 2.718 ||| 0-4 ||| 8 668016 +a ||| I should also like to thank ||| 0.00273224 0.229811 1.49697e-06 1.04149e-14 2.718 ||| 0-4 ||| 366 668016 +a ||| I should also like to ||| 0.00343643 0.229811 2.99394e-06 9.84391e-11 2.718 ||| 0-4 ||| 582 668016 +a ||| I should at ||| 0.142857 0.204175 1.49697e-06 1.06676e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| I should first like to congratulate the ||| 0.0625 0.0013612 1.49697e-06 2.64519e-19 2.718 ||| 0-0 ||| 16 668016 +a ||| I should first like to congratulate ||| 0.0263158 0.0013612 1.49697e-06 4.3087e-18 2.718 ||| 0-0 ||| 38 668016 +a ||| I should first like to ||| 0.0111111 0.0013612 1.49697e-06 2.77981e-13 2.718 ||| 0-0 ||| 90 668016 +a ||| I should first like ||| 0.00444444 0.0013612 1.49697e-06 3.12836e-12 2.718 ||| 0-0 ||| 225 668016 +a ||| I should first ||| 0.00507614 0.0013612 1.49697e-06 1.76156e-09 2.718 ||| 0-0 ||| 197 668016 +a ||| I should like by ||| 1 0.0337966 1.49697e-06 4.57955e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| I should like to say the following ||| 0.0526316 0.0720432 1.49697e-06 2.861e-16 2.718 ||| 0-6 ||| 19 668016 +a ||| I should like to ||| 0.00341122 0.229811 2.99394e-05 1.94983e-08 2.718 ||| 0-3 ||| 5863 668016 +a ||| I should ||| 0.00161394 0.0013612 7.48485e-06 3.27185e-06 2.718 ||| 0-0 ||| 3098 668016 +a ||| I stand to where you ||| 0.25 0.229811 1.49697e-06 3.99488e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| I stand to where ||| 0.25 0.229811 1.49697e-06 1.2373e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| I stand to ||| 0.142857 0.229811 1.49697e-06 4.08351e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| I stress given – to ||| 1 0.229811 1.49697e-06 2.37921e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| I submitted to ||| 0.1 0.229811 1.49697e-06 1.2761e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| I support both ||| 0.0833333 0.0027239 1.49697e-06 1.74353e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| I support ||| 0.000238265 0.0027239 1.49697e-06 1.05254e-06 2.718 ||| 0-1 ||| 4197 668016 +a ||| I take this opportunity to ||| 0.015625 0.229811 1.49697e-06 4.63725e-12 2.718 ||| 0-4 ||| 64 668016 +a ||| I take ||| 0.00134771 0.0013612 1.49697e-06 1.18882e-06 2.718 ||| 0-0 ||| 742 668016 +a ||| I thank ||| 0.00484027 0.0126162 1.49697e-05 4.12527e-06 2.718 ||| 0-1 ||| 2066 668016 +a ||| I therefore have no doubt that ||| 1 0.0008521 1.49697e-06 3.43637e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| I therefore take ||| 0.037037 0.0012933 1.49697e-06 4.05216e-10 2.718 ||| 0-2 ||| 27 668016 +a ||| I think , to ||| 0.05 0.229811 1.49697e-06 1.13027e-07 2.718 ||| 0-3 ||| 20 668016 +a ||| I think , ||| 0.000909918 0.0013612 1.49697e-06 3.36821e-08 2.718 ||| 0-0 ||| 1099 668016 +a ||| I think that in ||| 0.00628931 0.0587624 1.49697e-06 2.73452e-09 2.718 ||| 0-3 ||| 159 668016 +a ||| I think ||| 3.92157e-05 0.0013612 1.49697e-06 2.82438e-07 2.718 ||| 0-0 ||| 25500 668016 +a ||| I too would like to ||| 0.0026738 0.229811 1.49697e-06 3.51475e-11 2.718 ||| 0-4 ||| 374 668016 +a ||| I treated ||| 0.25 0.016092 1.49697e-06 3.16185e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| I tried to obtain legal ||| 1 0.229811 1.49697e-06 7.70068e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| I tried to obtain ||| 0.5 0.229811 1.49697e-06 5.94188e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| I tried to ||| 0.00961538 0.229811 1.49697e-06 9.88665e-08 2.718 ||| 0-2 ||| 104 668016 +a ||| I turn to ||| 0.0208333 0.229811 2.99394e-06 5.55536e-07 2.718 ||| 0-2 ||| 96 668016 +a ||| I urge them to ||| 0.0555556 0.229811 1.49697e-06 2.17344e-10 2.718 ||| 0-3 ||| 18 668016 +a ||| I urge ||| 0.00296443 0.345826 4.49091e-06 1.7277e-05 2.718 ||| 0-1 ||| 1012 668016 +a ||| I urged ||| 0.0434783 0.319117 1.49697e-06 2.70491e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| I used to ||| 0.0277778 0.229811 1.49697e-06 1.063e-06 2.718 ||| 0-2 ||| 36 668016 +a ||| I visited ||| 0.00374532 0.0117057 1.49697e-06 9.05408e-08 2.718 ||| 0-1 ||| 267 668016 +a ||| I voted in ||| 0.000227998 0.0587624 1.49697e-06 1.71272e-08 2.718 ||| 0-2 ||| 4386 668016 +a ||| I want to say thank you to ||| 0.5 0.229811 1.49697e-06 3.36075e-17 2.718 ||| 0-6 ||| 2 668016 +a ||| I want to thank ||| 0.00373134 0.229811 2.99394e-06 1.22559e-10 2.718 ||| 0-2 ||| 536 668016 +a ||| I want to ||| 0.002292 0.229811 1.49697e-05 1.1584e-06 2.718 ||| 0-2 ||| 4363 668016 +a ||| I wanted to demonstrate the fact ||| 1 0.229811 1.49697e-06 6.04491e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| I wanted to demonstrate the ||| 1 0.229811 1.49697e-06 2.0636e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| I wanted to demonstrate ||| 1 0.229811 1.49697e-06 3.36136e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| I wanted to say ||| 0.00490196 0.229811 1.49697e-06 1.29548e-10 2.718 ||| 0-2 ||| 204 668016 +a ||| I wanted to ||| 0.00199601 0.229811 2.99394e-06 1.35539e-07 2.718 ||| 0-2 ||| 1002 668016 +a ||| I was concerned ||| 0.0322581 0.0013612 1.49697e-06 3.72135e-09 2.718 ||| 0-0 ||| 31 668016 +a ||| I was going to say the role ||| 1 0.229811 1.49697e-06 8.65445e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| I was going to say the ||| 1 0.229811 1.49697e-06 3.8984e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| I was going to say ||| 0.04 0.229811 1.49697e-06 6.35004e-12 2.718 ||| 0-3 ||| 25 668016 +a ||| I was going to ||| 0.0149254 0.229811 1.49697e-06 6.64369e-09 2.718 ||| 0-3 ||| 67 668016 +a ||| I was in Genoa , my ||| 0.25 0.0587624 1.49697e-06 7.14817e-17 2.718 ||| 0-2 ||| 4 668016 +a ||| I was in Genoa , ||| 0.25 0.0587624 1.49697e-06 1.11152e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| I was in Genoa ||| 0.2 0.0587624 1.49697e-06 9.32053e-13 2.718 ||| 0-2 ||| 5 668016 +a ||| I was in ||| 0.00258398 0.0587624 1.49697e-06 1.3315e-06 2.718 ||| 0-2 ||| 387 668016 +a ||| I was to ||| 0.0769231 0.229811 1.49697e-06 7.76313e-06 2.718 ||| 0-2 ||| 13 668016 +a ||| I was ||| 0.000363769 0.0013612 2.99394e-06 2.31341e-06 2.718 ||| 0-0 ||| 5498 668016 +a ||| I went on ||| 0.0833333 0.0782999 1.49697e-06 1.70931e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| I were approaching ||| 1 0.1653 1.49697e-06 1.39893e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| I will be ||| 0.00140252 0.0561595 1.49697e-06 1.80542e-06 2.718 ||| 0-1 ||| 713 668016 +a ||| I will consider ||| 0.0909091 0.0561595 1.49697e-06 1.58497e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| I will cut ||| 0.5 0.0561595 1.49697e-06 7.53135e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| I will have to move ||| 1 0.229811 1.49697e-06 3.91998e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| I will have to ||| 0.025974 0.229811 2.99394e-06 2.56376e-07 2.718 ||| 0-3 ||| 77 668016 +a ||| I will not name them ||| 0.333333 0.0561595 1.49697e-06 7.97374e-14 2.718 ||| 0-1 ||| 3 668016 +a ||| I will not name ||| 0.166667 0.0561595 1.49697e-06 2.97262e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| I will not ||| 0.00152439 0.0561595 1.49697e-06 3.40116e-07 2.718 ||| 0-1 ||| 656 668016 +a ||| I will provide ||| 0.111111 0.0561595 1.49697e-06 2.94679e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| I will put a ||| 0.5 0.0015876 1.49697e-06 1.11483e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| I will put ||| 0.0222222 0.0015876 1.49697e-06 2.51508e-09 2.718 ||| 0-2 ||| 45 668016 +a ||| I will speak of ||| 0.5 0.0188479 1.49697e-06 2.44898e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| I will therefore ||| 0.0103093 0.0561595 1.49697e-06 8.33131e-08 2.718 ||| 0-1 ||| 97 668016 +a ||| I will turn to ||| 0.125 0.229811 1.49697e-06 4.80605e-09 2.718 ||| 0-3 ||| 8 668016 +a ||| I will use to ||| 1 0.229811 1.49697e-06 1.04224e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| I will ||| 0.00552792 0.0561595 2.99394e-05 9.96211e-05 2.718 ||| 0-1 ||| 3618 668016 +a ||| I wish , by ||| 0.5 0.0337966 1.49697e-06 2.0453e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| I wish her all the best for ||| 0.5 0.0683377 1.49697e-06 8.39772e-19 2.718 ||| 0-6 ||| 2 668016 +a ||| I wish to clarify relates to ||| 1 0.229811 1.49697e-06 2.09681e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| I wish to conclude ||| 0.0222222 0.229811 1.49697e-06 1.75984e-11 2.718 ||| 0-2 ||| 45 668016 +a ||| I wish to express my ||| 0.00454545 0.229811 1.49697e-06 4.76652e-14 2.718 ||| 0-2 ||| 220 668016 +a ||| I wish to express ||| 0.00324675 0.229811 1.49697e-06 7.41178e-11 2.718 ||| 0-2 ||| 308 668016 +a ||| I wish to see ||| 0.0588235 0.229811 1.49697e-06 5.14516e-10 2.718 ||| 0-2 ||| 17 668016 +a ||| I wish to thank ||| 0.00233645 0.229811 2.99394e-06 7.72578e-11 2.718 ||| 0-2 ||| 856 668016 +a ||| I wish to ||| 0.00338014 0.229811 1.94606e-05 7.30225e-07 2.718 ||| 0-2 ||| 3846 668016 +a ||| I wish you every success in your ||| 0.0526316 0.0587624 1.49697e-06 1.00008e-21 2.718 ||| 0-5 ||| 19 668016 +a ||| I wish you every success in ||| 0.0277778 0.0587624 1.49697e-06 3.90809e-18 2.718 ||| 0-5 ||| 36 668016 +a ||| I wish ||| 0.000255624 0.0013612 1.49697e-06 2.17606e-07 2.718 ||| 0-0 ||| 3912 668016 +a ||| I would , in ||| 0.0869565 0.0587624 2.99394e-06 2.9744e-07 2.718 ||| 0-3 ||| 23 668016 +a ||| I would also like to extend ||| 0.0526316 0.229811 1.49697e-06 5.63238e-15 2.718 ||| 0-4 ||| 19 668016 +a ||| I would also like to thank ||| 0.00387597 0.229811 4.49091e-06 1.37941e-14 2.718 ||| 0-4 ||| 774 668016 +a ||| I would also like to ||| 0.0052161 0.229811 1.04788e-05 1.30379e-10 2.718 ||| 0-4 ||| 1342 668016 +a ||| I would also like ||| 0.000289771 0.0013612 1.49697e-06 3.88529e-11 2.718 ||| 0-0 ||| 3451 668016 +a ||| I would also ||| 0.000549753 0.0013612 1.49697e-06 2.18778e-08 2.718 ||| 0-0 ||| 1819 668016 +a ||| I would answer ||| 0.2 0.0026107 1.49697e-06 8.71757e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| I would ask ||| 0.000400802 0.0082577 1.49697e-06 6.1023e-09 2.718 ||| 0-2 ||| 2495 668016 +a ||| I would call thoroughly ||| 0.1 0.0915663 1.49697e-06 9.59356e-13 2.718 ||| 0-3 ||| 10 668016 +a ||| I would in ||| 0.0454545 0.0587624 1.49697e-06 2.49416e-06 2.718 ||| 0-2 ||| 22 668016 +a ||| I would just like to ||| 0.00361011 0.229811 1.49697e-06 3.25831e-11 2.718 ||| 0-4 ||| 277 668016 +a ||| I would like , in ||| 0.0714286 0.0587624 2.99394e-06 5.28224e-10 2.718 ||| 0-4 ||| 28 668016 +a ||| I would like both to ||| 1 0.229811 1.49697e-06 4.27788e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| I would like to ask ||| 0.000754717 0.229811 1.49697e-06 3.55091e-12 2.718 ||| 0-3 ||| 1325 668016 +a ||| I would like to draw ||| 0.000915751 0.229811 1.49697e-06 3.05766e-12 2.718 ||| 0-3 ||| 1092 668016 +a ||| I would like to encourage ||| 0.015873 0.229811 1.49697e-06 9.94255e-13 2.718 ||| 0-3 ||| 63 668016 +a ||| I would like to go on and ||| 1 0.0782999 1.49697e-06 1.82035e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| I would like to go on ||| 0.5 0.0782999 1.49697e-06 1.45327e-13 2.718 ||| 0-5 ||| 2 668016 +a ||| I would like to make ||| 0.00078064 0.229811 1.49697e-06 4.48783e-11 2.718 ||| 0-3 ||| 1281 668016 +a ||| I would like to note in ||| 0.5 0.229811 1.49697e-06 5.77089e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| I would like to note ||| 0.0169492 0.229811 1.49697e-06 2.69611e-12 2.718 ||| 0-3 ||| 59 668016 +a ||| I would like to offer them good ||| 1 0.229811 1.49697e-06 4.10978e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| I would like to offer them ||| 0.333333 0.229811 1.49697e-06 7.92477e-15 2.718 ||| 0-3 ||| 3 668016 +a ||| I would like to offer ||| 0.00943396 0.229811 1.49697e-06 2.95436e-12 2.718 ||| 0-3 ||| 106 668016 +a ||| I would like to remind you ||| 0.0021978 0.229811 1.49697e-06 2.57646e-15 2.718 ||| 0-3 ||| 455 668016 +a ||| I would like to remind ||| 0.00358423 0.229811 1.49697e-06 7.97986e-13 2.718 ||| 0-3 ||| 279 668016 +a ||| I would like to say ||| 0.000374532 0.229811 1.49697e-06 2.46833e-11 2.718 ||| 0-3 ||| 2670 668016 +a ||| I would like to take this opportunity ||| 0.00232019 0.229811 1.49697e-06 4.83304e-17 2.718 ||| 0-3 ||| 431 668016 +a ||| I would like to take this ||| 0.00243309 0.229811 1.49697e-06 2.68652e-13 2.718 ||| 0-3 ||| 411 668016 +a ||| I would like to take ||| 0.00512821 0.229811 4.49091e-06 4.15779e-11 2.718 ||| 0-3 ||| 585 668016 +a ||| I would like to thank three people ||| 1 0.229811 1.49697e-06 1.52233e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| I would like to thank three ||| 1 0.229811 1.49697e-06 1.72952e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| I would like to thank ||| 0.000424809 0.229811 2.99394e-06 2.73226e-12 2.718 ||| 0-3 ||| 4708 668016 +a ||| I would like to ||| 0.00518052 0.229811 9.73031e-05 2.58248e-08 2.718 ||| 0-3 ||| 12547 668016 +a ||| I would like ||| 2.73718e-05 0.0013612 1.49697e-06 7.69577e-09 2.718 ||| 0-0 ||| 36534 668016 +a ||| I would point out to ||| 0.0192308 0.229811 1.49697e-06 4.87272e-11 2.718 ||| 0-4 ||| 52 668016 +a ||| I would say to ||| 0.00775194 0.229811 2.99394e-06 1.38991e-08 2.718 ||| 0-3 ||| 258 668016 +a ||| I would thank ||| 0.00588235 0.0126162 1.49697e-06 2.42099e-08 2.718 ||| 0-2 ||| 170 668016 +a ||| I would therefore like to ||| 0.00393701 0.229811 1.49697e-06 2.15973e-11 2.718 ||| 0-4 ||| 254 668016 +a ||| I would ||| 0.00100869 0.0013612 1.94606e-05 4.33345e-06 2.718 ||| 0-0 ||| 12888 668016 +a ||| I ||| 0.000733169 0.0013612 0.000205085 0.0007384 2.718 ||| 0-0 ||| 186860 668016 +a ||| If I could only make it clear ||| 1 0.0013612 1.49697e-06 1.32283e-23 2.718 ||| 0-1 ||| 1 668016 +a ||| If I could only make it ||| 1 0.0013612 1.49697e-06 3.97364e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| If I could only make ||| 1 0.0013612 1.49697e-06 2.23449e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| If I could only ||| 1 0.0013612 1.49697e-06 1.28582e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| If I could ||| 1 0.0013612 1.49697e-06 1.15517e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| If I ||| 0.125 0.0013612 1.49697e-06 1.62448e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| In Burundi ||| 0.333333 0.0054054 1.49697e-06 8.28e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| In ||| 0.00582751 0.0054054 7.48485e-06 4.6e-06 2.718 ||| 0-0 ||| 858 668016 +a ||| Independents for a Europe of ||| 0.0114943 0.0683377 1.49697e-06 7.09897e-13 2.718 ||| 0-1 ||| 87 668016 +a ||| Independents for a Europe ||| 0.0116279 0.0683377 1.49697e-06 1.30582e-11 2.718 ||| 0-1 ||| 86 668016 +a ||| Independents for a ||| 0.0289855 0.0683377 2.99394e-06 2.58068e-08 2.718 ||| 0-1 ||| 69 668016 +a ||| Independents for ||| 0.0384615 0.0683377 4.49091e-06 5.82206e-07 2.718 ||| 0-1 ||| 78 668016 +a ||| Index published by Transparency ||| 0.5 0.0337966 1.49697e-06 2.93557e-20 2.718 ||| 0-2 ||| 2 668016 +a ||| Index published by ||| 0.5 0.0337966 1.49697e-06 7.33893e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| India on ||| 0.0344828 0.0782999 1.49697e-06 3.14865e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| Indonesia to ||| 0.0434783 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| Industrial Policy to ||| 0.142857 0.229811 1.49697e-06 2.81446e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| Internal Market to ||| 0.125 0.229811 1.49697e-06 2.9013e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| Internet at ||| 0.1 0.204175 1.49697e-06 5.88812e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| Internet ||| 0.000708717 0.0013043 2.99394e-06 5.5e-06 2.718 ||| 0-0 ||| 2822 668016 +a ||| Iraq to ||| 0.0208333 0.229811 2.99394e-06 4.4138e-06 2.718 ||| 0-1 ||| 96 668016 +a ||| Irish to ||| 0.0833333 0.229811 1.49697e-06 8.96772e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| Irish ||| 0.00034662 0.0003895 2.99394e-06 1.8e-06 2.718 ||| 0-0 ||| 5770 668016 +a ||| Israel , ||| 0.00129032 0.0001191 1.49697e-06 6.3427e-09 2.718 ||| 0-1 ||| 775 668016 +a ||| Israel to ||| 0.0037594 0.229811 1.49697e-06 8.33718e-06 2.718 ||| 0-1 ||| 266 668016 +a ||| Israel will become much more secure as ||| 1 0.0561595 1.49697e-06 1.12892e-22 2.718 ||| 0-1 ||| 1 668016 +a ||| Israel will become much more secure ||| 1 0.0561595 1.49697e-06 1.10631e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| Israel will become much more ||| 1 0.0561595 1.49697e-06 2.19506e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| Israel will become much ||| 1 0.0561595 1.49697e-06 9.61187e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| Israel will become ||| 0.5 0.0561595 1.49697e-06 9.57644e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| Israel will ||| 0.0434783 0.0561595 1.49697e-06 3.35192e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| Israeli delegations to engage in ||| 1 0.0587624 1.49697e-06 1.02489e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| It is for ||| 0.5 0.0683377 1.49697e-06 3.199e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| Joe and ||| 0.0625 0.0015873 1.49697e-06 7.718e-10 2.718 ||| 0-1 ||| 16 668016 +a ||| Justice , to ||| 0.0769231 0.229811 1.49697e-06 2.25586e-06 2.718 ||| 0-2 ||| 13 668016 +a ||| Kittelmann touches on ||| 1 0.0762313 1.49697e-06 4.29431e-13 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| Larrea for ||| 0.333333 0.0683377 1.49697e-06 1.47394e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| Leave Act ||| 1 0.153846 1.49697e-06 2.812e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| Leave ||| 0.0588235 0.153846 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 17 668016 +a ||| Lisbon for the establishment of a ||| 1 0.0683377 1.49697e-06 5.64207e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| Lisbon for the establishment of ||| 1 0.0683377 1.49697e-06 1.27286e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| Lisbon for the establishment ||| 1 0.0683377 1.49697e-06 2.34137e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| Lisbon for the ||| 0.25 0.0683377 1.49697e-06 5.20305e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| Lisbon for ||| 0.037037 0.0683377 1.49697e-06 8.47515e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| Lisbon will be to set ||| 1 0.229811 1.49697e-06 7.38217e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| Lisbon will be to ||| 1 0.229811 1.49697e-06 1.26321e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| Luxembourg and get to know ||| 1 0.229811 1.49697e-06 4.10799e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| Luxembourg and get to ||| 1 0.229811 1.49697e-06 1.59224e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| Lyon with ||| 0.25 0.0571592 1.49697e-06 1.16866e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| MKO ||| 0.142857 0.0714286 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| MS ) to ||| 1 0.229811 1.49697e-06 5.53837e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| Madam Commissioner , should support it on ||| 0.5 0.0782999 1.49697e-06 2.01022e-19 2.718 ||| 0-6 ||| 2 668016 +a ||| Magistris gave to ||| 1 0.229811 1.49697e-06 1.17001e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| Market to ||| 0.125 0.229811 1.49697e-06 1.0474e-05 2.718 ||| 0-1 ||| 8 668016 +a ||| Media , to ||| 0.5 0.229811 1.49697e-06 6.76757e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| Member State to have ||| 0.0588235 0.229811 1.49697e-06 2.59496e-10 2.718 ||| 0-2 ||| 17 668016 +a ||| Member State to ||| 0.0015361 0.229811 1.49697e-06 2.16974e-08 2.718 ||| 0-2 ||| 651 668016 +a ||| Member States and the social partners to ||| 0.5 0.229811 1.49697e-06 1.75171e-19 2.718 ||| 0-6 ||| 2 668016 +a ||| Member States and the social partners with ||| 1 0.0571592 1.49697e-06 8.34851e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| Member States at national level , ||| 0.333333 0.204175 1.49697e-06 1.09708e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| Member States at national level ||| 0.111111 0.204175 1.49697e-06 9.19949e-16 2.718 ||| 0-2 ||| 9 668016 +a ||| Member States at national ||| 0.25 0.204175 1.49697e-06 1.07546e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| Member States at ||| 0.00704225 0.204175 1.49697e-06 8.36934e-09 2.718 ||| 0-2 ||| 142 668016 +a ||| Member States conform to ||| 1 0.229811 1.49697e-06 1.20595e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| Member States for ||| 0.00235849 0.0683377 1.49697e-06 9.06109e-09 2.718 ||| 0-2 ||| 424 668016 +a ||| Member States in ||| 0.000437063 0.0587624 1.49697e-06 1.47744e-08 2.718 ||| 0-2 ||| 2288 668016 +a ||| Member States of ||| 0.000346021 0.0188479 1.49697e-06 7.27339e-09 2.718 ||| 0-2 ||| 2890 668016 +a ||| Member States should do more to support ||| 1 0.229811 1.49697e-06 1.02378e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| Member States should do more to ||| 1 0.229811 1.49697e-06 2.99439e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| Member States to join it - ||| 0.5 0.229811 1.49697e-06 2.70422e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| Member States to join it ||| 0.5 0.229811 1.49697e-06 7.169e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| Member States to join ||| 0.0416667 0.229811 1.49697e-06 4.03133e-12 2.718 ||| 0-2 ||| 24 668016 +a ||| Member States to ||| 0.00099519 0.229811 8.98182e-06 8.61396e-08 2.718 ||| 0-2 ||| 6029 668016 +a ||| Member States with ||| 0.0033389 0.0571592 2.99394e-06 4.10534e-09 2.718 ||| 0-2 ||| 599 668016 +a ||| Member States would have to revoke the ||| 1 0.229811 1.49697e-06 2.59823e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| Member States would have to revoke ||| 1 0.229811 1.49697e-06 4.2322e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| Member States would have to ||| 0.05 0.229811 1.49697e-06 6.04601e-12 2.718 ||| 0-4 ||| 20 668016 +a ||| Member for ||| 0.0196078 0.0683377 1.49697e-06 1.8988e-05 2.718 ||| 0-1 ||| 51 668016 +a ||| Member from ||| 0.0188679 0.0435582 1.49697e-06 3.70954e-06 2.718 ||| 0-1 ||| 53 668016 +a ||| Member of Parliament who was ||| 1 0.0188479 1.49697e-06 2.41756e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| Member of Parliament who ||| 0.125 0.0188479 1.49697e-06 7.71644e-12 2.718 ||| 0-1 ||| 8 668016 +a ||| Member of Parliament ||| 0.00574713 0.0188479 1.49697e-06 8.74879e-09 2.718 ||| 0-1 ||| 174 668016 +a ||| Member of this House to ||| 0.166667 0.229811 1.49697e-06 1.58582e-11 2.718 ||| 0-4 ||| 6 668016 +a ||| Member of this ||| 0.00314465 0.0188479 1.49697e-06 9.84834e-08 2.718 ||| 0-1 ||| 318 668016 +a ||| Member of ||| 0.00394737 0.0188479 4.49091e-06 1.52418e-05 2.718 ||| 0-1 ||| 760 668016 +a ||| Member ||| 2.67051e-05 1.3e-05 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 37446 668016 +a ||| Members , ||| 0.000915751 0.0001191 1.49697e-06 3.93088e-08 2.718 ||| 0-1 ||| 1092 668016 +a ||| Members in ||| 0.00318471 0.0587624 1.49697e-06 8.86217e-06 2.718 ||| 0-1 ||| 314 668016 +a ||| Members of ||| 0.00295946 0.0188479 1.49697e-05 4.36283e-06 2.718 ||| 0-1 ||| 3379 668016 +a ||| Members ||| 5.60193e-05 0.0002382 1.49697e-06 6.4e-06 2.718 ||| 0-0 ||| 17851 668016 +a ||| Men of ||| 1 0.0188479 1.49697e-06 9.46512e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| Milosevic could ||| 0.0769231 0.002445 1.49697e-06 1.27998e-09 2.718 ||| 0-0 ||| 13 668016 +a ||| Milosevic ||| 0.0011919 0.002445 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 839 668016 +a ||| Minister for Foreign Affairs ||| 0.00469484 0.0683377 1.49697e-06 1.49974e-15 2.718 ||| 0-1 ||| 213 668016 +a ||| Minister for Foreign ||| 0.25 0.0683377 1.49697e-06 1.68132e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| Minister for ||| 0.00147059 0.0683377 1.49697e-06 1.37813e-06 2.718 ||| 0-1 ||| 680 668016 +a ||| Minister of Israel , ||| 0.25 0.0001191 1.49697e-06 1.28961e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| Ministerial meetings to be sufficiently well ||| 1 0.229811 1.49697e-06 4.55534e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| Ministerial meetings to be sufficiently ||| 1 0.229811 1.49697e-06 2.87294e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| Ministerial meetings to be ||| 1 0.229811 1.49697e-06 1.53633e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| Ministerial meetings to ||| 1 0.229811 1.49697e-06 8.4773e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| Ministers of ||| 0.0037037 0.0188479 1.49697e-06 6.92137e-07 2.718 ||| 0-1 ||| 270 668016 +a ||| Ministers on ||| 0.0178571 0.0782999 1.49697e-06 8.87693e-07 2.718 ||| 0-1 ||| 56 668016 +a ||| Mister ||| 0.1 0.0833333 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| Monday they announced they were going to ||| 0.5 0.229811 1.49697e-06 2.63073e-22 2.718 ||| 0-6 ||| 2 668016 +a ||| Monetary Affairs and Industrial Policy to ||| 0.2 0.229811 1.49697e-06 3.61632e-21 2.718 ||| 0-5 ||| 5 668016 +a ||| Monnet and ||| 0.015873 0.0036101 1.49697e-06 1.12733e-08 2.718 ||| 0-0 ||| 63 668016 +a ||| Monnet ||| 0.00348432 0.0036101 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 287 668016 +a ||| Mr De Magistris gave to ||| 1 0.229811 1.49697e-06 3.05512e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| Mr Kittelmann touches on ||| 1 0.0762313 1.49697e-06 2.80333e-16 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| Mr Mulder and thank them for ||| 1 0.0683377 1.49697e-06 1.19714e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| Mr Mulder mentioned one ||| 1 6.73e-05 1.49697e-06 3.4283e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| Mr Mulder mentioned ||| 0.166667 6.73e-05 1.49697e-06 8.22528e-16 2.718 ||| 0-2 ||| 6 668016 +a ||| Mr Pasqua , you will have ||| 1 0.0561595 1.49697e-06 4.65711e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| Mr Pasqua , you will ||| 1 0.0561595 1.49697e-06 3.89397e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| Mr President , although I ||| 0.0833333 0.0921822 1.49697e-06 1.16097e-13 2.718 ||| 0-3 ||| 12 668016 +a ||| Mr President , although ||| 0.00458716 0.0921822 1.49697e-06 1.6413e-11 2.718 ||| 0-3 ||| 218 668016 +a ||| Mr President-in-Office , in ||| 0.125 0.0587624 1.49697e-06 2.45563e-10 2.718 ||| 0-3 ||| 8 668016 +a ||| Mr Schulz and from other socialist and ||| 0.5 0.0015873 1.49697e-06 1.33638e-25 2.718 ||| 0-6 ||| 2 668016 +a ||| Mr Wijsenbeek to ||| 1 0.229811 1.49697e-06 1.60074e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| Mrs. ||| 0.0408163 0.0485437 2.99394e-06 4.6e-06 2.718 ||| 0-0 ||| 49 668016 +a ||| Mulder and thank them for ||| 1 0.0683377 1.49697e-06 1.83386e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| Mulder mentioned one ||| 1 6.73e-05 1.49697e-06 5.25168e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| Mulder mentioned ||| 0.2 6.73e-05 1.49697e-06 1.26e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| National Head of Police ||| 1 0.0188479 1.49697e-06 1.81553e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| National Head of ||| 1 0.0188479 1.49697e-06 8.2524e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| Nations to ||| 0.2 0.229811 1.49697e-06 1.32414e-05 2.718 ||| 0-1 ||| 5 668016 +a ||| Nations voted for the ||| 1 0.0683377 1.49697e-06 3.44609e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| Nations voted for ||| 1 0.0683377 1.49697e-06 5.61328e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| Nearer my God to ||| 0.5 0.154977 1.49697e-06 2.85724e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| Nearer my God ||| 0.5 0.154977 1.49697e-06 3.2155e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| Networks in ||| 0.5 0.0587624 1.49697e-06 2.82388e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| No ' to ||| 0.0344828 0.229811 1.49697e-06 8.14601e-08 2.718 ||| 0-2 ||| 29 668016 +a ||| Nos 8 to 11 are ||| 0.2 0.229811 1.49697e-06 4.77411e-17 2.718 ||| 0-2 ||| 5 668016 +a ||| Nos 8 to 11 ||| 0.166667 0.229811 1.49697e-06 3.14651e-15 2.718 ||| 0-2 ||| 6 668016 +a ||| Nos 8 to ||| 0.111111 0.229811 1.49697e-06 2.3658e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| Nos 9 to ||| 0.125 0.229811 1.49697e-06 2.10293e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| OLAF to deal with suspicions ||| 0.5 0.229811 1.49697e-06 7.95124e-18 2.718 ||| 0-1 ||| 2 668016 +a ||| OLAF to deal with ||| 0.5 0.229811 1.49697e-06 7.2284e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| OLAF to deal ||| 1 0.229811 1.49697e-06 1.13041e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| OLAF to ||| 0.037037 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-1 ||| 27 668016 +a ||| Ombudsman often attends ||| 1 0.31579 1.49697e-06 4.66181e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| Ombudsman to ||| 0.0208333 0.229811 1.49697e-06 5.67489e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| Osama ||| 0.0192308 0.0188679 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 52 668016 +a ||| Palestinian organisations that ||| 1 0.0008521 1.49697e-06 3.03528e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| Paper on a ||| 0.5 0.0782999 1.49697e-06 2.11872e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| Paper on ||| 0.0322581 0.0782999 1.49697e-06 4.77989e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| Parliament , for ||| 0.012987 0.0683377 1.49697e-06 2.52236e-06 2.718 ||| 0-2 ||| 77 668016 +a ||| Parliament after ||| 0.0263158 0.0341027 1.49697e-06 4.81471e-07 2.718 ||| 0-1 ||| 38 668016 +a ||| Parliament at first ||| 0.00961538 0.204175 1.49697e-06 1.05184e-08 2.718 ||| 0-1 ||| 104 668016 +a ||| Parliament at ||| 0.00293255 0.204175 1.49697e-06 1.95363e-05 2.718 ||| 0-1 ||| 341 668016 +a ||| Parliament be able to ||| 0.2 0.229811 1.49697e-06 3.0424e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| Parliament for ||| 0.00111359 0.0683377 1.49697e-06 2.1151e-05 2.718 ||| 0-1 ||| 898 668016 +a ||| Parliament in favour ||| 0.0588235 0.0587624 1.49697e-06 1.11567e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| Parliament in ||| 0.0013708 0.0587624 2.99394e-06 3.44874e-05 2.718 ||| 0-1 ||| 1459 668016 +a ||| Parliament involved for ||| 1 0.0683377 1.49697e-06 7.31403e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| Parliament on ||| 0.00100705 0.0782999 1.49697e-06 2.1775e-05 2.718 ||| 0-1 ||| 993 668016 +a ||| Parliament than ||| 0.0384615 0.0242272 1.49697e-06 7.21461e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| Parliament to be ||| 0.0147059 0.229811 2.99394e-06 3.64403e-06 2.718 ||| 0-1 ||| 136 668016 +a ||| Parliament to issue ||| 0.142857 0.229811 1.49697e-06 1.52172e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| Parliament to participate in ||| 0.111111 0.0587624 1.49697e-06 7.38541e-11 2.718 ||| 0-3 ||| 9 668016 +a ||| Parliament to ||| 0.00555556 0.229811 1.94606e-05 0.000201073 2.718 ||| 0-1 ||| 2340 668016 +a ||| Party , to ||| 0.142857 0.229811 1.49697e-06 6.29969e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| Party for ||| 0.0163934 0.0683377 1.49697e-06 5.55675e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| Party to ||| 0.142857 0.229811 2.99394e-06 5.28255e-05 2.718 ||| 0-1 ||| 14 668016 +a ||| Pasqua , you will have ||| 1 0.0561595 1.49697e-06 7.13406e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| Pasqua , you will ||| 1 0.0561595 1.49697e-06 5.96503e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| Pass to ||| 1 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| Peter to ||| 0.0714286 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| Point of ||| 0.25 0.0188479 2.99394e-06 5.32413e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| Poland to ||| 0.0116279 0.229811 1.49697e-06 2.13684e-06 2.718 ||| 0-1 ||| 86 668016 +a ||| Policy about ||| 1 0.0526361 1.49697e-06 4.87804e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| Policy by ||| 0.333333 0.0337966 1.49697e-06 7.96422e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| Policy to ||| 0.117647 0.229811 2.99394e-06 3.39092e-05 2.718 ||| 0-1 ||| 17 668016 +a ||| Portuguese in ||| 0.125 0.0587624 1.49697e-06 8.65188e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| Presidency for ||| 0.00952381 0.0683377 1.49697e-06 1.83137e-06 2.718 ||| 0-1 ||| 105 668016 +a ||| Presidency of ||| 0.00289017 0.0188479 1.49697e-06 1.47005e-06 2.718 ||| 0-1 ||| 346 668016 +a ||| President , I would like to ||| 0.000712758 0.229811 1.49697e-06 4.46561e-13 2.718 ||| 0-5 ||| 1403 668016 +a ||| President , although I ||| 0.0555556 0.0921822 1.49697e-06 1.77845e-10 2.718 ||| 0-2 ||| 18 668016 +a ||| President , although ||| 0.00371747 0.0921822 1.49697e-06 2.51425e-08 2.718 ||| 0-2 ||| 269 668016 +a ||| President drew lots to ||| 0.5 0.229811 1.49697e-06 1.57257e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| President of ||| 0.000177179 0.0188479 1.49697e-06 4.28888e-06 2.718 ||| 0-1 ||| 5644 668016 +a ||| President-in-Office , in ||| 0.0588235 0.0587624 1.49697e-06 3.76169e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| President-in-Office to ||| 0.0163934 0.229811 1.49697e-06 1.83908e-05 2.718 ||| 0-1 ||| 61 668016 +a ||| Prime Minister of Israel , ||| 0.25 0.0001191 1.49697e-06 1.94731e-19 2.718 ||| 0-4 ||| 4 668016 +a ||| Prize in ||| 0.0666667 0.0587624 1.49697e-06 2.50544e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| Prize to ||| 0.9 0.229811 1.34727e-05 1.46076e-05 2.718 ||| 0-1 ||| 10 668016 +a ||| Procedure for ||| 0.2 0.0683377 1.49697e-06 2.34725e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| Protection to ||| 1 0.229811 1.49697e-06 1.24707e-05 2.718 ||| 0-1 ||| 1 668016 +a ||| Public Health and Consumer Policy about ||| 1 0.0526361 1.49697e-06 7.58243e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| Public Health and Consumer Policy by ||| 0.5 0.0337966 1.49697e-06 1.23796e-20 2.718 ||| 0-5 ||| 2 668016 +a ||| Public Health and Consumer Policy to ||| 0.2 0.229811 1.49697e-06 5.27084e-19 2.718 ||| 0-5 ||| 5 668016 +a ||| Public Health and Consumer Policy ||| 0.0016 0.0015873 1.49697e-06 2.31779e-19 2.718 ||| 0-2 ||| 625 668016 +a ||| Public Health and Consumer Protection to ||| 0.333333 0.229811 1.49697e-06 1.93845e-19 2.718 ||| 0-5 ||| 3 668016 +a ||| Public Health and Consumer ||| 0.00884956 0.0015873 1.49697e-06 2.39441e-15 2.718 ||| 0-2 ||| 113 668016 +a ||| Public Health and ||| 0.00112931 0.0015873 2.99394e-06 2.19671e-11 2.718 ||| 0-2 ||| 1771 668016 +a ||| Quality Assurance in ||| 1 0.0587624 1.49697e-06 3.36462e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| Race to ||| 0.5 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| Recommendations on BSE ||| 0.25 0.0782999 1.49697e-06 5.9483e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| Recommendations on ||| 0.25 0.0782999 1.49697e-06 5.31098e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| Red Card to ||| 0.0909091 0.229811 1.49697e-06 6.86591e-13 2.718 ||| 0-2 ||| 11 668016 +a ||| Reform Party , to ||| 0.0909091 0.229811 1.49697e-06 2.42538e-10 2.718 ||| 0-3 ||| 11 668016 +a ||| Reform Party for ||| 0.333333 0.0683377 1.49697e-06 2.13935e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| Regulation in respect of ||| 1 0.0587624 1.49697e-06 3.20754e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| Regulation in respect ||| 1 0.0587624 1.49697e-06 5.90011e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| Regulation in ||| 0.0222222 0.0587624 1.49697e-06 1.36387e-06 2.718 ||| 0-1 ||| 45 668016 +a ||| Regulations which does not just meet with ||| 1 0.0571592 1.49697e-06 1.87571e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| Representative of the Dalai Lama and the ||| 0.333333 0.0188479 1.49697e-06 1.21653e-23 2.718 ||| 0-1 ||| 3 668016 +a ||| Representative of the Dalai Lama and ||| 0.333333 0.0188479 1.49697e-06 1.98159e-22 2.718 ||| 0-1 ||| 3 668016 +a ||| Representative of the Dalai Lama ||| 0.25 0.0188479 1.49697e-06 1.58199e-20 2.718 ||| 0-1 ||| 4 668016 +a ||| Representative of the Dalai ||| 0.25 0.0188479 1.49697e-06 7.19087e-15 2.718 ||| 0-1 ||| 4 668016 +a ||| Representative of the ||| 0.00448431 0.0188479 1.49697e-06 6.53716e-09 2.718 ||| 0-1 ||| 223 668016 +a ||| Representative of ||| 0.00487805 0.0188479 1.49697e-06 1.06483e-07 2.718 ||| 0-1 ||| 205 668016 +a ||| Republic in ||| 0.0714286 0.0587624 1.49697e-06 2.85392e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| Republic of ||| 0.000571102 0.0188479 1.49697e-06 1.40498e-06 2.718 ||| 0-1 ||| 1751 668016 +a ||| Review in ||| 1 0.0587624 1.49697e-06 6.60907e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| Rights , Common Security and Defence Policy ||| 0.0333333 0.0015873 1.49697e-06 8.60937e-26 2.718 ||| 0-4 ||| 30 668016 +a ||| Rights , Common Security and Defence ||| 0.0357143 0.0015873 1.49697e-06 8.89397e-22 2.718 ||| 0-4 ||| 28 668016 +a ||| Rights , Common Security and ||| 0.0322581 0.0015873 1.49697e-06 2.94502e-17 2.718 ||| 0-4 ||| 31 668016 +a ||| Rights and ||| 0.0240964 0.0015873 2.99394e-06 1.58991e-07 2.718 ||| 0-1 ||| 83 668016 +a ||| Rights to ||| 0.0555556 0.229811 1.49697e-06 2.88649e-05 2.718 ||| 0-1 ||| 18 668016 +a ||| Romanians to ||| 0.25 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| Rules of Procedure as to what is ||| 1 0.0188479 1.49697e-06 5.32659e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| Rules of Procedure as to what ||| 1 0.0188479 1.49697e-06 1.69956e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| Rules of Procedure as to ||| 0.5 0.0188479 1.49697e-06 1.21129e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| Rules of Procedure as ||| 0.0833333 0.0188479 1.49697e-06 1.36317e-12 2.718 ||| 0-1 ||| 12 668016 +a ||| Rules of Procedure ||| 0.000558659 0.0188479 1.49697e-06 1.33586e-10 2.718 ||| 0-1 ||| 1790 668016 +a ||| Rules of ||| 0.0019685 0.0188479 1.49697e-06 2.09712e-06 2.718 ||| 0-1 ||| 508 668016 +a ||| Russian bear by backing ||| 1 0.0337966 1.49697e-06 3.8924e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| Russian bear by ||| 1 0.0337966 1.49697e-06 2.3032e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| SK ) Critics ||| 1 1 1.49697e-06 6.07978e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| Santa ||| 0.0104167 0.011236 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 96 668016 +a ||| Schulz and from other socialist and left-wing ||| 0.5 0.0015873 1.49697e-06 2.25187e-28 2.718 ||| 0-5 ||| 2 668016 +a ||| Schulz and from other socialist and ||| 0.5 0.0015873 1.49697e-06 2.04716e-22 2.718 ||| 0-5 ||| 2 668016 +a ||| Security and Defence Policy ||| 0.00225225 0.0015873 1.49697e-06 2.6793e-16 2.718 ||| 0-1 ||| 444 668016 +a ||| Security and Defence ||| 0.00558659 0.0015873 1.49697e-06 2.76787e-12 2.718 ||| 0-1 ||| 179 668016 +a ||| Security and ||| 0.00100503 0.0015873 1.49697e-06 9.16513e-08 2.718 ||| 0-1 ||| 995 668016 +a ||| Serbs for ||| 0.5 0.0683377 1.49697e-06 8.10667e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| Simon ||| 0.0178571 0.028169 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 56 668016 +a ||| South versus ||| 1 0.208333 1.49697e-06 1.18368e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| Spain expressed opposition after ||| 1 0.0341027 1.49697e-06 3.38127e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| Spain on ||| 0.037037 0.0782999 1.49697e-06 6.14557e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| Spanish-speaking ||| 0.25 0.2 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| State of ||| 0.00479616 0.0188479 2.99394e-06 3.55534e-06 2.718 ||| 0-1 ||| 417 668016 +a ||| State to have ||| 0.5 0.229811 1.49697e-06 5.03582e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| State to ||| 0.00990099 0.229811 1.49697e-06 4.21063e-05 2.718 ||| 0-1 ||| 101 668016 +a ||| States , I came to ||| 1 0.229811 1.49697e-06 1.77674e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| States and the social partners to get ||| 1 0.229811 1.49697e-06 1.48622e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| States and the social partners to ||| 1 0.229811 1.49697e-06 3.3994e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| States and the social partners with ||| 1 0.0571592 1.49697e-06 1.62013e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| States at a ||| 1 0.204175 1.49697e-06 7.19926e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| States at national level , ||| 1 0.204175 1.49697e-06 2.12902e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| States at national level ||| 1 0.204175 1.49697e-06 1.78527e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| States at national ||| 1 0.204175 1.49697e-06 2.08706e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| States at ||| 0.214286 0.204175 4.49091e-06 1.62417e-05 2.718 ||| 0-1 ||| 14 668016 +a ||| States conform to ||| 1 0.229811 1.49697e-06 2.34029e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| States for ||| 0.0357143 0.0683377 1.49697e-06 1.75841e-05 2.718 ||| 0-1 ||| 28 668016 +a ||| States in ||| 0.0106952 0.0587624 2.99394e-06 2.86714e-05 2.718 ||| 0-1 ||| 187 668016 +a ||| States of ||| 0.00740741 0.0188479 2.99394e-06 1.41149e-05 2.718 ||| 0-1 ||| 270 668016 +a ||| States should do more to support such ||| 1 0.229811 1.49697e-06 4.11042e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| States should do more to support ||| 1 0.229811 1.49697e-06 1.98677e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| States should do more to ||| 1 0.229811 1.49697e-06 5.81096e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| States should meet half the ||| 1 0.0482171 1.49697e-06 1.46739e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| States should meet half ||| 1 0.0482171 1.49697e-06 2.3902e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| States should meet ||| 1 0.0482171 1.49697e-06 8.29931e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| States that wish to contribute ||| 0.5 0.229811 1.49697e-06 3.22359e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| States that wish to ||| 0.166667 0.229811 1.49697e-06 8.28686e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| States to join it - ||| 0.5 0.229811 1.49697e-06 5.24785e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| States to join it ||| 0.5 0.229811 1.49697e-06 1.39123e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| States to join ||| 0.166667 0.229811 1.49697e-06 7.82327e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| States to ||| 0.00956023 0.229811 1.49697e-05 0.000167164 2.718 ||| 0-1 ||| 1046 668016 +a ||| States with ||| 0.0196078 0.0571592 2.99394e-06 7.9669e-06 2.718 ||| 0-1 ||| 102 668016 +a ||| States would have to revoke the existing ||| 1 0.229811 1.49697e-06 3.97322e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| States would have to revoke the ||| 1 0.229811 1.49697e-06 5.04216e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| States would have to revoke ||| 1 0.229811 1.49697e-06 8.21309e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| States would have to ||| 1 0.229811 1.49697e-06 1.1733e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| Strasbourg and Bordeaux as to ||| 0.5 0.229811 1.49697e-06 1.68355e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| Strasbourg to ||| 0.0119048 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-1 ||| 84 668016 +a ||| Swedish National Head of Police ||| 1 0.0188479 1.49697e-06 3.46766e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| Swedish National Head of ||| 1 0.0188479 1.49697e-06 1.57621e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| System in all Member ||| 1 0.0587624 1.49697e-06 8.48545e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| System in all ||| 1 0.0587624 1.49697e-06 1.6467e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| System in ||| 0.25 0.0587624 1.49697e-06 3.48479e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| Taiwan to ||| 0.04 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| The Hague to see what it ||| 0.5 0.229811 1.49697e-06 3.7506e-19 2.718 ||| 0-2 ||| 2 668016 +a ||| The Hague to see what ||| 0.5 0.229811 1.49697e-06 2.10907e-17 2.718 ||| 0-2 ||| 2 668016 +a ||| The Hague to see ||| 0.5 0.229811 1.49697e-06 1.50315e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| The Hague to ||| 0.1 0.229811 1.49697e-06 2.13334e-11 2.718 ||| 0-2 ||| 10 668016 +a ||| This attitude is , to this ||| 0.5 0.229811 1.49697e-06 3.66528e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| This attitude is , to ||| 0.5 0.229811 1.49697e-06 5.67258e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| Time at ||| 0.111111 0.204175 1.49697e-06 1.59966e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| Timor to ||| 1 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| Tourism , ||| 0.00215054 0.0001191 1.49697e-06 6.6092e-09 2.718 ||| 0-1 ||| 465 668016 +a ||| Transport and Tourism , ||| 0.00214133 0.0001191 1.49697e-06 1.37425e-15 2.718 ||| 0-3 ||| 467 668016 +a ||| Treaty , then at ||| 1 0.204175 1.49697e-06 5.59518e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| Treaty needs to focus on ||| 1 0.0782999 1.49697e-06 4.42876e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| Treaty to categories of ||| 0.333333 0.229811 1.49697e-06 1.76056e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| Treaty to categories ||| 0.333333 0.229811 1.49697e-06 3.23847e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| Treaty to ||| 0.00520833 0.229811 1.49697e-06 2.99858e-05 2.718 ||| 0-1 ||| 192 668016 +a ||| Tunisia has reached an historic turning point ||| 1 0.14487 1.49697e-06 2.06953e-26 2.718 ||| 0-2 ||| 1 668016 +a ||| Tunisia has reached an historic turning ||| 1 0.14487 1.49697e-06 2.36572e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| Tunisia has reached an historic ||| 1 0.14487 1.49697e-06 4.73144e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| Tunisia has reached an ||| 1 0.14487 1.49697e-06 8.15766e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| Tunisia has reached ||| 1 0.14487 1.49697e-06 1.83537e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| Turkey and the earthquake in ||| 1 0.0587624 1.49697e-06 5.96662e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| Turkey ||| 7.06514e-05 8.2e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 14154 668016 +a ||| Turkish ||| 0.00131475 0.0016177 7.48485e-06 5.5e-06 2.718 ||| 0-0 ||| 3803 668016 +a ||| UN blacklist , for example ||| 1 0.0683377 1.49697e-06 3.73398e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| UN blacklist , for ||| 1 0.0683377 1.49697e-06 1.28271e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| US before solidarity with ||| 1 0.0571592 1.49697e-06 4.70005e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| US for resettlement ||| 0.5 0.0683377 1.49697e-06 3.46965e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| US for ||| 0.0625 0.0683377 1.49697e-06 1.57712e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| Uganda to ||| 0.0833333 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| Union 's citizens to ||| 0.5 0.229811 1.49697e-06 4.05316e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| Union . as ||| 0.125 0.0243476 1.49697e-06 1.4811e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| Union . conversely ||| 0.5 0.111354 1.49697e-06 7.86778e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| Union . in ||| 0.5 0.0587624 1.49697e-06 1.01441e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| Union and also ||| 0.0416667 0.0015873 1.49697e-06 5.42979e-09 2.718 ||| 0-1 ||| 24 668016 +a ||| Union and to join ||| 1 0.218864 1.49697e-06 3.34192e-09 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| Union and ||| 0.000434594 0.0015873 1.49697e-06 1.0755e-06 2.718 ||| 0-1 ||| 2301 668016 +a ||| Union can lend support ||| 0.5 0.0027239 1.49697e-06 3.37968e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| Union for ||| 0.00193986 0.0683377 2.99394e-06 2.05394e-05 2.718 ||| 0-1 ||| 1031 668016 +a ||| Union in ||| 0.00386847 0.0587624 2.99394e-06 3.349e-05 2.718 ||| 0-1 ||| 517 668016 +a ||| Union into ||| 0.0172414 0.107578 1.49697e-06 3.38581e-06 2.718 ||| 0-1 ||| 58 668016 +a ||| Union of countries , and ||| 1 0.0015873 1.49697e-06 2.64752e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| Union on the ||| 0.0277778 0.0782999 1.49697e-06 1.29815e-06 2.718 ||| 0-1 ||| 36 668016 +a ||| Union on ||| 0.00854701 0.0782999 1.49697e-06 2.11453e-05 2.718 ||| 0-1 ||| 117 668016 +a ||| Union to join them ||| 0.5 0.229811 1.49697e-06 2.4512e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| Union to join ||| 0.2 0.229811 1.49697e-06 9.13808e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| Union to ||| 0.00573066 0.229811 5.98788e-06 0.000195258 2.718 ||| 0-1 ||| 698 668016 +a ||| Union with ||| 0.0113636 0.0571592 2.99394e-06 9.30585e-06 2.718 ||| 0-1 ||| 176 668016 +a ||| Union-wide ||| 0.0103093 0.0888889 1.49697e-06 7.3e-06 2.718 ||| 0-0 ||| 97 668016 +a ||| Unit for the Coordination of Fraud Prevention ||| 0.333333 0.0683377 1.49697e-06 8.67761e-29 2.718 ||| 0-1 ||| 3 668016 +a ||| Unit for the Coordination of Fraud ||| 0.333333 0.0683377 1.49697e-06 6.19829e-23 2.718 ||| 0-1 ||| 3 668016 +a ||| Unit for the Coordination of ||| 0.111111 0.0683377 1.49697e-06 1.54957e-16 2.718 ||| 0-1 ||| 9 668016 +a ||| Unit for the Coordination ||| 0.25 0.0683377 1.49697e-06 2.85037e-15 2.718 ||| 0-1 ||| 4 668016 +a ||| Unit for the ||| 0.25 0.0683377 1.49697e-06 1.58354e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| Unit for ||| 0.0909091 0.0683377 1.49697e-06 2.57939e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| United States to ||| 0.00377358 0.229811 1.49697e-06 2.04609e-08 2.718 ||| 0-2 ||| 265 668016 +a ||| Use of ||| 0.0588235 0.0188479 1.49697e-06 8.57777e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| VAT in ||| 0.0238095 0.0587624 1.49697e-06 4.98685e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| Vice-President of the Commission . - ||| 0.00169779 0.0188479 1.49697e-06 2.48433e-16 2.718 ||| 0-1 ||| 589 668016 +a ||| Vice-President of the Commission . ||| 0.0015083 0.0188479 1.49697e-06 6.58608e-14 2.718 ||| 0-1 ||| 663 668016 +a ||| Vice-President of the Commission ||| 0.000788022 0.0188479 1.49697e-06 2.17434e-11 2.718 ||| 0-1 ||| 1269 668016 +a ||| Vice-President of the ||| 0.000692521 0.0188479 1.49697e-06 3.72255e-08 2.718 ||| 0-1 ||| 1444 668016 +a ||| Vice-President of ||| 0.00141443 0.0188479 2.99394e-06 6.06359e-07 2.718 ||| 0-1 ||| 1414 668016 +a ||| Volkskammer at that time ||| 0.333333 0.204175 1.49697e-06 3.75969e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| Volkskammer at that ||| 0.333333 0.204175 1.49697e-06 2.29012e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| Volkskammer at ||| 0.333333 0.204175 1.49697e-06 1.36142e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| WENRA ) should be upgraded to ||| 1 0.229811 1.49697e-06 4.69004e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| Wallström and I participated in ||| 1 0.0587624 1.49697e-06 1.3415e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| Watson 's example of ||| 0.5 0.0188479 1.49697e-06 2.29564e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| White Paper on a ||| 0.0555556 0.0782999 1.49697e-06 1.44073e-13 2.718 ||| 0-2 ||| 18 668016 +a ||| White Paper on ||| 0.00180505 0.0782999 1.49697e-06 3.25032e-12 2.718 ||| 0-2 ||| 554 668016 +a ||| Who long to see ||| 0.5 0.229811 1.49697e-06 9.18501e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| Who long to ||| 0.5 0.229811 1.49697e-06 1.30358e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| Wijsenbeek to ||| 1 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| Wise Men of ||| 1 0.0188479 1.49697e-06 1.04116e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| Yasser ||| 0.0215054 0.0571429 2.99394e-06 5.5e-06 2.718 ||| 0-0 ||| 93 668016 +a ||| Yes , Mr Pasqua , you will ||| 1 0.0561595 1.49697e-06 9.19461e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| Yugoslav soldiers in ||| 1 0.0587624 1.49697e-06 1.63785e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| Zanna ||| 1 1 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| a ) ||| 0.00537634 0.0005823 1.49697e-06 6.07403e-07 2.718 ||| 0-0 ||| 186 668016 +a ||| a Commissioner with ||| 0.0555556 0.0571592 1.49697e-06 6.52701e-08 2.718 ||| 0-2 ||| 18 668016 +a ||| a Community of ||| 0.0117647 0.0188479 1.49697e-06 2.12266e-07 2.718 ||| 0-2 ||| 85 668016 +a ||| a EUR ||| 0.0588235 0.0097655 1.49697e-06 6.75525e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| a Europe of Nations voted for the ||| 1 0.0683377 1.49697e-06 4.2019e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| a Europe of Nations voted for ||| 1 0.0683377 1.49697e-06 6.8444e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| a European Foundation for ||| 0.333333 0.0683377 1.49697e-06 1.96622e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| a Member ||| 0.000739645 0.0005823 1.49697e-06 2.17766e-07 2.718 ||| 0-0 ||| 1352 668016 +a ||| a back seat to ||| 0.5 0.229811 1.49697e-06 1.69188e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| a basis for ||| 0.00152905 0.0683377 1.49697e-06 9.69877e-07 2.718 ||| 0-2 ||| 654 668016 +a ||| a basis of ||| 0.0142857 0.0188479 1.49697e-06 7.78526e-07 2.718 ||| 0-2 ||| 70 668016 +a ||| a better idea of ||| 0.0434783 0.0188479 1.49697e-06 4.99415e-11 2.718 ||| 0-3 ||| 23 668016 +a ||| a better insight into the important role ||| 1 0.107578 1.49697e-06 1.29146e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| a better insight into the important ||| 1 0.107578 1.49697e-06 5.8174e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| a better insight into the ||| 0.25 0.107578 1.49697e-06 1.51653e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| a better insight into ||| 0.125 0.107578 1.49697e-06 2.47024e-13 2.718 ||| 0-3 ||| 8 668016 +a ||| a blind eye to ||| 0.0106383 0.229811 2.99394e-06 1.36944e-11 2.718 ||| 0-3 ||| 188 668016 +a ||| a breath of ||| 0.0384615 0.0188479 1.49697e-06 1.27176e-08 2.718 ||| 0-2 ||| 26 668016 +a ||| a building up of ||| 0.5 0.0188479 1.49697e-06 2.60687e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| a burden on ||| 0.0319149 0.0782999 4.49091e-06 7.31464e-08 2.718 ||| 0-2 ||| 94 668016 +a ||| a call directed at ||| 1 0.204175 1.49697e-06 1.0483e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| a case against ||| 0.181818 0.05146 2.99394e-06 1.23279e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| a case of ||| 0.0114943 0.0188479 7.48485e-06 1.40274e-06 2.718 ||| 0-2 ||| 435 668016 +a ||| a cause for ||| 0.0120482 0.0683377 2.99394e-06 2.95144e-07 2.718 ||| 0-2 ||| 166 668016 +a ||| a cause of ||| 0.00806452 0.0188479 1.49697e-06 2.36914e-07 2.718 ||| 0-2 ||| 124 668016 +a ||| a central item on the agenda , ||| 1 0.0782999 1.49697e-06 1.26152e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| a central item on the agenda ||| 1 0.0782999 1.49697e-06 1.05783e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| a central item on the ||| 1 0.0782999 1.49697e-06 1.06529e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| a central item on ||| 1 0.0782999 1.49697e-06 1.73523e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| a challenge for ||| 0.0125 0.0683377 2.99394e-06 6.99069e-08 2.718 ||| 0-2 ||| 160 668016 +a ||| a challenge to ||| 0.00694444 0.229811 1.49697e-06 6.64573e-07 2.718 ||| 0-2 ||| 144 668016 +a ||| a chance to ||| 0.00392157 0.229811 2.99394e-06 1.02326e-06 2.718 ||| 0-2 ||| 510 668016 +a ||| a change in how ||| 1 0.0587624 1.49697e-06 1.16448e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| a change in ||| 0.00177305 0.0587624 1.49697e-06 3.24911e-07 2.718 ||| 0-2 ||| 564 668016 +a ||| a charge for ||| 0.1 0.0683377 1.49697e-06 8.23203e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| a choice in ||| 0.0714286 0.0587624 1.49697e-06 1.18779e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| a city with a ||| 0.5 0.0571592 1.49697e-06 6.72444e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| a city with ||| 0.0833333 0.0571592 1.49697e-06 1.51705e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| a clear position , based on eco-tax ||| 1 0.0782999 1.49697e-06 3.61003e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| a clear position , based on ||| 1 0.0782999 1.49697e-06 5.15718e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| a close in good ||| 1 0.0587624 1.49697e-06 2.04823e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| a close in ||| 0.25 0.0587624 1.49697e-06 3.94953e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| a closer look at ||| 0.0454545 0.204175 2.99394e-06 9.36711e-11 2.718 ||| 0-3 ||| 44 668016 +a ||| a closer relationship between the two institutions ||| 1 0.0006394 1.49697e-06 6.10416e-24 2.718 ||| 0-3 ||| 1 668016 +a ||| a closer relationship between the two ||| 1 0.0006394 1.49697e-06 1.1627e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| a closer relationship between the ||| 0.125 0.0006394 1.49697e-06 4.91834e-16 2.718 ||| 0-3 ||| 8 668016 +a ||| a closer relationship between ||| 0.1 0.0006394 1.49697e-06 8.0114e-15 2.718 ||| 0-3 ||| 10 668016 +a ||| a collective spirit in ||| 1 0.0587624 1.49697e-06 1.5164e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| a communication on ||| 0.0025 0.0782999 1.49697e-06 5.14547e-08 2.718 ||| 0-2 ||| 400 668016 +a ||| a competent leader in ||| 0.333333 0.0587624 1.49697e-06 4.11998e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| a complaint to ||| 0.047619 0.229811 1.49697e-06 1.28877e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| a complement to ||| 0.0243902 0.229811 1.49697e-06 4.50295e-08 2.718 ||| 0-2 ||| 41 668016 +a ||| a compromise in ||| 0.0119048 0.0587624 1.49697e-06 1.20643e-07 2.718 ||| 0-2 ||| 84 668016 +a ||| a condition for ||| 0.00520833 0.0683377 1.49697e-06 4.18135e-08 2.718 ||| 0-2 ||| 192 668016 +a ||| a considerable amount around it ||| 1 0.0931303 1.49697e-06 7.80602e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| a considerable amount around ||| 1 0.0931303 1.49697e-06 4.38955e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| a contribution to ||| 0.00393701 0.229811 1.49697e-06 1.39747e-06 2.718 ||| 0-2 ||| 254 668016 +a ||| a contributory factor in ||| 0.5 0.0587624 1.49697e-06 2.8475e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| a counterpart based on ||| 1 0.0782999 1.49697e-06 1.42015e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| a country such as ||| 0.00680272 0.0243476 1.49697e-06 2.89532e-10 2.718 ||| 0-3 ||| 147 668016 +a ||| a country with access ||| 1 0.0571592 1.49697e-06 2.29048e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| a country with ||| 0.00255102 0.0571592 1.49697e-06 2.66335e-07 2.718 ||| 0-2 ||| 392 668016 +a ||| a couple of flowers to ||| 1 0.229811 1.49697e-06 5.09855e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| a courageous idea : that by the ||| 1 0.0007376 1.49697e-06 3.51521e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| a courageous idea : that by ||| 1 0.0007376 1.49697e-06 5.72586e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| a courageous idea : that ||| 1 0.0007376 1.49697e-06 1.09062e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| a courageous idea : ||| 1 0.0007376 1.49697e-06 6.48345e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| a course of ||| 0.0163934 0.0188479 1.49697e-06 1.6542e-06 2.718 ||| 0-2 ||| 61 668016 +a ||| a crass ||| 0.333333 0.0005823 1.49697e-06 2.9582e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| a crisis for ||| 0.025641 0.0683377 1.49697e-06 1.1809e-07 2.718 ||| 0-2 ||| 39 668016 +a ||| a criticism of ||| 0.025 0.0188479 1.49697e-06 2.6484e-08 2.718 ||| 0-2 ||| 40 668016 +a ||| a cruel blow to ||| 1 0.229811 1.49697e-06 7.65811e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| a danger in the ||| 0.333333 0.0587624 1.49697e-06 7.9951e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| a danger in ||| 0.0714286 0.0587624 1.49697e-06 1.30231e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| a day-to-day basis so as to gain ||| 1 0.229811 1.49697e-06 2.97899e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| a day-to-day basis so as to ||| 1 0.229811 1.49697e-06 5.33869e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| a debt of ||| 0.0294118 0.0188479 1.49697e-06 2.59596e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| a debt to ||| 0.125 0.229811 1.49697e-06 3.07442e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| a decision , to ||| 0.2 0.229811 1.49697e-06 2.91275e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| a decision confirmed at ||| 1 0.204175 1.49697e-06 4.60382e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| a decision is to be implemented ||| 1 0.229811 1.49697e-06 1.21805e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| a decision is to be ||| 0.25 0.229811 1.49697e-06 1.3873e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| a decision is to ||| 0.2 0.229811 1.49697e-06 7.65494e-08 2.718 ||| 0-3 ||| 5 668016 +a ||| a decision on ||| 0.00505051 0.0782999 4.49091e-06 2.64504e-07 2.718 ||| 0-2 ||| 594 668016 +a ||| a declaration to ||| 0.0769231 0.229811 1.49697e-06 2.73282e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| a definitive line under ||| 0.5 0.0384416 1.49697e-06 1.12908e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| a desire here to ||| 1 0.229811 1.49697e-06 1.47357e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| a deterrent , and which depend upon ||| 1 0.19056 1.49697e-06 6.52903e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| a direct appeal to ||| 0.2 0.229811 1.49697e-06 2.31181e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| a direct impact on ||| 0.00970874 0.0782999 1.49697e-06 6.8309e-12 2.718 ||| 0-3 ||| 103 668016 +a ||| a disappointment to ||| 0.0833333 0.229811 1.49697e-06 2.79493e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| a discussion about ||| 0.015625 0.0526361 1.49697e-06 1.92993e-08 2.718 ||| 0-2 ||| 64 668016 +a ||| a discussion of ||| 0.0196078 0.0188479 1.49697e-06 1.13278e-07 2.718 ||| 0-2 ||| 51 668016 +a ||| a discussion on ||| 0.00662252 0.0782999 1.49697e-06 1.45284e-07 2.718 ||| 0-2 ||| 151 668016 +a ||| a disorganised fashion to ||| 0.5 0.229811 1.49697e-06 2.23595e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| a distance ||| 0.0138889 0.131537 1.49697e-06 6.71536e-06 2.718 ||| 0-1 ||| 72 668016 +a ||| a document which was agreed on and ||| 1 0.0782999 1.49697e-06 1.4666e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| a document which was agreed on ||| 1 0.0782999 1.49697e-06 1.17085e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| a doubt that humanitarian aid for Gaza ||| 1 0.0683377 1.49697e-06 9.89155e-24 2.718 ||| 0-5 ||| 1 668016 +a ||| a doubt that humanitarian aid for ||| 1 0.0683377 1.49697e-06 3.41088e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| a drain on ||| 0.0454545 0.0782999 1.49697e-06 6.7261e-09 2.718 ||| 0-2 ||| 22 668016 +a ||| a drop in the ||| 0.0111111 0.0587624 1.49697e-06 2.58328e-09 2.718 ||| 0-2 ||| 90 668016 +a ||| a drop in ||| 0.00549451 0.0587624 1.49697e-06 4.20786e-08 2.718 ||| 0-2 ||| 182 668016 +a ||| a duty of ||| 0.0163934 0.0188479 1.49697e-06 9.76763e-08 2.718 ||| 0-2 ||| 61 668016 +a ||| a duty to ||| 0.00297619 0.229811 2.99394e-06 1.15679e-06 2.718 ||| 0-2 ||| 672 668016 +a ||| a facelift with ||| 1 0.0571592 1.49697e-06 2.96009e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| a failure to ||| 0.00775194 0.229811 1.49697e-06 7.26682e-07 2.718 ||| 0-2 ||| 129 668016 +a ||| a feature ||| 0.0105263 0.0005823 1.49697e-06 1.14102e-08 2.718 ||| 0-0 ||| 95 668016 +a ||| a few examples of ||| 0.025 0.0188479 1.49697e-06 3.97613e-12 2.718 ||| 0-3 ||| 40 668016 +a ||| a few minutes to ||| 0.0625 0.229811 1.49697e-06 4.40956e-11 2.718 ||| 0-3 ||| 16 668016 +a ||| a few of ||| 0.00331126 0.0188479 1.49697e-06 2.29834e-07 2.718 ||| 0-2 ||| 302 668016 +a ||| a few words about ||| 0.0027027 0.0526361 1.49697e-06 8.84947e-12 2.718 ||| 0-3 ||| 370 668016 +a ||| a few words to ||| 0.0147059 0.229811 1.49697e-06 6.15161e-10 2.718 ||| 0-3 ||| 68 668016 +a ||| a few ||| 9.64785e-05 0.0005823 1.49697e-06 7.40818e-08 2.718 ||| 0-0 ||| 10365 668016 +a ||| a firm message to ||| 0.2 0.229811 1.49697e-06 2.7467e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| a flash in the ||| 0.142857 0.0587624 1.49697e-06 4.08747e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| a flash in ||| 0.125 0.0587624 1.49697e-06 6.65801e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| a focused message to ||| 0.5 0.229811 1.49697e-06 1.66898e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| a follow-up to ||| 0.0217391 0.229811 2.99394e-06 2.23595e-07 2.718 ||| 0-2 ||| 92 668016 +a ||| a foothold in ||| 0.0666667 0.0587624 1.49697e-06 3.72849e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| a for ||| 0.04 0.0683377 1.49697e-06 0.00163334 2.718 ||| 0-1 ||| 25 668016 +a ||| a fortunate one in the sense ||| 1 0.0587624 1.49697e-06 5.70433e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| a fortunate one in the ||| 1 0.0587624 1.49697e-06 3.20288e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| a fortunate one in ||| 1 0.0587624 1.49697e-06 5.21711e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| a fresh start to ||| 0.333333 0.229811 1.49697e-06 5.82324e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| a function of ||| 0.0196078 0.0188479 1.49697e-06 3.2515e-08 2.718 ||| 0-2 ||| 51 668016 +a ||| a further address on ||| 0.333333 0.0782999 1.49697e-06 6.20076e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| a further ||| 0.000530223 0.0003879 1.49697e-06 4.43258e-07 2.718 ||| 0-1 ||| 1886 668016 +a ||| a go at it ||| 0.25 0.204175 1.49697e-06 1.56893e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| a go at ||| 0.0769231 0.204175 1.49697e-06 8.82256e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| a good deal of time to ||| 1 0.229811 1.49697e-06 3.05152e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| a good idea to ||| 0.00591716 0.229811 1.49697e-06 1.80537e-09 2.718 ||| 0-3 ||| 169 668016 +a ||| a good thing for ||| 0.0138889 0.0683377 1.49697e-06 3.09088e-10 2.718 ||| 0-3 ||| 72 668016 +a ||| a government to ||| 0.0588235 0.229811 1.49697e-06 1.24064e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| a great deal of aid to ||| 1 0.229811 1.49697e-06 1.83961e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| a great deal of pressure on ||| 0.333333 0.0782999 1.49697e-06 9.16773e-16 2.718 ||| 0-5 ||| 3 668016 +a ||| a great deal of work to ||| 0.0277778 0.229811 1.49697e-06 8.91633e-14 2.718 ||| 0-5 ||| 36 668016 +a ||| a great responsibility here to ||| 1 0.229811 1.49697e-06 1.42922e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| a great wrong here ||| 1 0.0182742 1.49697e-06 8.35758e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| a greater insight into ||| 0.5 0.107578 1.49697e-06 1.91484e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| a grip on ||| 0.0208333 0.0782999 1.49697e-06 2.79133e-08 2.718 ||| 0-2 ||| 48 668016 +a ||| a habit of ||| 0.047619 0.0188479 1.49697e-06 9.96429e-09 2.718 ||| 0-2 ||| 21 668016 +a ||| a halt to ||| 0.0128205 0.229811 1.49697e-06 3.13653e-07 2.718 ||| 0-2 ||| 78 668016 +a ||| a hand in ||| 0.0285714 0.0587624 1.49697e-06 1.05623e-06 2.718 ||| 0-2 ||| 35 668016 +a ||| a hand to ||| 0.0555556 0.229811 1.49697e-06 6.15817e-06 2.718 ||| 0-2 ||| 18 668016 +a ||| a hell of ||| 0.333333 0.0188479 1.49697e-06 6.16213e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| a helping hand , so ||| 0.5 0.302272 1.49697e-06 5.66335e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| a helping hand , ||| 0.111111 0.302272 1.49697e-06 2.4952e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| a helping hand ||| 0.0126582 0.302272 1.49697e-06 2.09233e-08 2.718 ||| 0-1 ||| 79 668016 +a ||| a helping ||| 0.030303 0.302272 1.49697e-06 5.27566e-05 2.718 ||| 0-1 ||| 33 668016 +a ||| a hiding to ||| 0.5 0.229811 1.49697e-06 1.18008e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| a hold on ||| 0.25 0.0782999 1.49697e-06 2.92922e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| a home for ||| 0.0833333 0.0683377 1.49697e-06 1.65784e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| a huge supporter of ||| 1 0.0188479 1.49697e-06 2.73756e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| a journey on ||| 1 0.0782999 1.49697e-06 1.69834e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| a kind of ||| 0.00102775 0.0188479 1.49697e-06 6.39812e-07 2.718 ||| 0-2 ||| 973 668016 +a ||| a kind that , I agree with ||| 1 0.0571592 1.49697e-06 8.15291e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| a lack of ||| 0.000935016 0.0188479 2.99394e-06 1.59429e-07 2.718 ||| 0-2 ||| 2139 668016 +a ||| a language like that of ||| 1 0.0188479 1.49697e-06 1.83301e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| a large extent , to ||| 0.0714286 0.229811 1.49697e-06 5.47018e-11 2.718 ||| 0-4 ||| 14 668016 +a ||| a large gathering of ||| 1 0.0142665 1.49697e-06 7.45604e-13 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| a laughing stock of ||| 0.25 0.0188479 1.49697e-06 3.83625e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| a legal basis for various operations , ||| 1 0.0683377 1.49697e-06 5.83237e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| a legal basis for various operations ||| 1 0.0683377 1.49697e-06 4.89068e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| a legal basis for various ||| 1 0.0683377 1.49697e-06 1.94075e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| a legal basis for ||| 0.00431034 0.0683377 1.49697e-06 1.25696e-10 2.718 ||| 0-3 ||| 232 668016 +a ||| a level of ||| 0.00431034 0.0188479 1.49697e-06 1.12151e-06 2.718 ||| 0-2 ||| 232 668016 +a ||| a level playing field for ||| 0.00943396 0.0683377 1.49697e-06 1.34518e-14 2.718 ||| 0-4 ||| 106 668016 +a ||| a line under ||| 0.0285714 0.0384416 1.49697e-06 1.85094e-08 2.718 ||| 0-2 ||| 35 668016 +a ||| a little closer to ||| 0.0769231 0.229811 1.49697e-06 5.35458e-10 2.718 ||| 0-3 ||| 13 668016 +a ||| a little later on ||| 0.111111 0.0782999 1.49697e-06 2.34126e-11 2.718 ||| 0-3 ||| 9 668016 +a ||| a little more to ||| 0.142857 0.229811 1.49697e-06 5.74096e-09 2.718 ||| 0-3 ||| 7 668016 +a ||| a little way towards ||| 0.5 0.155507 1.49697e-06 5.21719e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| a livelihood for ||| 0.0833333 0.0683377 1.49697e-06 8.1667e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| a long way in ||| 0.0188679 0.0587624 1.49697e-06 1.94211e-09 2.718 ||| 0-3 ||| 53 668016 +a ||| a longer time to reconstruct and help ||| 1 0.229811 1.49697e-06 7.99193e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| a longer time to reconstruct and ||| 1 0.229811 1.49697e-06 4.19084e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| a longer time to reconstruct ||| 1 0.229811 1.49697e-06 3.34574e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| a longer time to ||| 1 0.229811 1.49697e-06 4.77962e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| a look at ourselves here ||| 1 0.204175 1.49697e-06 2.83671e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| a look at ourselves ||| 0.333333 0.204175 1.49697e-06 1.39891e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| a look at ||| 0.00512821 0.204175 1.49697e-06 4.3977e-07 2.718 ||| 0-2 ||| 195 668016 +a ||| a lot more to discover ||| 1 0.229811 1.49697e-06 2.47397e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| a lot more to ||| 0.0416667 0.229811 1.49697e-06 4.58142e-09 2.718 ||| 0-3 ||| 24 668016 +a ||| a lot of hot air ||| 0.111111 0.0188479 1.49697e-06 7.3735e-17 2.718 ||| 0-2 ||| 9 668016 +a ||| a lot of hot ||| 0.2 0.0188479 1.49697e-06 1.3382e-12 2.718 ||| 0-2 ||| 5 668016 +a ||| a lot of ||| 0.00113037 0.0188479 4.49091e-06 1.69393e-07 2.718 ||| 0-2 ||| 2654 668016 +a ||| a lot to ||| 0.00250627 0.229811 1.49697e-06 2.00614e-06 2.718 ||| 0-2 ||| 399 668016 +a ||| a loved ||| 0.166667 0.0928144 1.49697e-06 1.25442e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| a low threshold for ||| 0.5 0.0683377 1.49697e-06 6.76202e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| a major effect on ||| 0.0769231 0.0782999 1.49697e-06 5.43006e-11 2.718 ||| 0-3 ||| 13 668016 +a ||| a majority in ||| 0.00288184 0.0587624 1.49697e-06 1.07327e-07 2.718 ||| 0-2 ||| 347 668016 +a ||| a man for ||| 0.2 0.0683377 1.49697e-06 1.04044e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| a mandate for ||| 0.0147059 0.0683377 1.49697e-06 3.64235e-08 2.718 ||| 0-2 ||| 68 668016 +a ||| a massive yes , to ||| 1 0.229811 1.49697e-06 9.18451e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| a matter for ||| 0.0228758 0.0683377 3.14364e-05 1.69459e-06 2.718 ||| 0-2 ||| 918 668016 +a ||| a matter of urgency , to ||| 0.025641 0.229811 1.49697e-06 2.70504e-12 2.718 ||| 0-5 ||| 39 668016 +a ||| a matter of urgency , ||| 0.00465116 0.0188479 1.49697e-06 4.20142e-12 2.718 ||| 0-2 ||| 215 668016 +a ||| a matter of urgency to ||| 0.0333333 0.229811 1.49697e-06 2.26829e-11 2.718 ||| 0-4 ||| 30 668016 +a ||| a matter of urgency ||| 0.00147929 0.0188479 1.49697e-06 3.52306e-11 2.718 ||| 0-2 ||| 676 668016 +a ||| a matter of ||| 0.002693 0.0188479 1.34727e-05 1.36026e-06 2.718 ||| 0-2 ||| 3342 668016 +a ||| a means of identifying ||| 0.5 0.0188479 1.49697e-06 2.65868e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| a means of sending ||| 1 0.0177863 1.49697e-06 1.81954e-11 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| a means of ||| 0.00230415 0.0188479 2.99394e-06 8.30838e-07 2.718 ||| 0-2 ||| 868 668016 +a ||| a means to ||| 0.0128205 0.229811 2.99394e-06 9.83971e-06 2.718 ||| 0-2 ||| 156 668016 +a ||| a meeting of ||| 0.00793651 0.0188479 2.99394e-06 1.64673e-07 2.718 ||| 0-2 ||| 252 668016 +a ||| a member of the ||| 0.00138985 0.0188479 2.99394e-06 1.34097e-08 2.718 ||| 0-2 ||| 1439 668016 +a ||| a member of ||| 0.00430416 0.0188479 8.98182e-06 2.18428e-07 2.718 ||| 0-2 ||| 1394 668016 +a ||| a message to ||| 0.0314961 0.229811 5.98788e-06 7.48421e-07 2.718 ||| 0-2 ||| 127 668016 +a ||| a mistake to ||| 0.00961538 0.229811 1.49697e-06 2.85704e-07 2.718 ||| 0-2 ||| 104 668016 +a ||| a more ||| 0.000769823 0.0005823 1.49697e-06 9.65092e-07 2.718 ||| 0-0 ||| 1299 668016 +a ||| a move towards ||| 0.0194175 0.155507 2.99394e-06 2.28575e-08 2.718 ||| 0-2 ||| 103 668016 +a ||| a name for ||| 0.111111 0.0683377 1.49697e-06 1.42754e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| a need for ||| 0.00103306 0.0683377 1.49697e-06 1.49761e-06 2.718 ||| 0-2 ||| 968 668016 +a ||| a need to ||| 0.00312012 0.229811 2.99394e-06 1.42371e-05 2.718 ||| 0-2 ||| 641 668016 +a ||| a negative effect on ||| 0.0120482 0.0782999 1.49697e-06 1.31264e-11 2.718 ||| 0-3 ||| 83 668016 +a ||| a number of English football fans ||| 0.333333 0.0188479 1.49697e-06 7.88334e-23 2.718 ||| 0-2 ||| 3 668016 +a ||| a number of English football ||| 0.333333 0.0188479 1.49697e-06 1.12619e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| a number of English ||| 0.333333 0.0188479 1.49697e-06 1.00553e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| a number of the ||| 0.00361011 0.0188479 1.49697e-06 3.98266e-08 2.718 ||| 0-2 ||| 277 668016 +a ||| a number of ||| 0.00115494 0.0188479 1.94606e-05 6.48728e-07 2.718 ||| 0-2 ||| 11256 668016 +a ||| a numbers of ||| 1 0.0188479 1.49697e-06 6.41123e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| a part in bringing about ||| 0.25 0.0587624 1.49697e-06 3.60588e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| a part in bringing ||| 0.166667 0.0587624 1.49697e-06 2.54958e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| a part in ||| 0.00985222 0.0587624 2.99394e-06 3.17507e-06 2.718 ||| 0-2 ||| 203 668016 +a ||| a part of ||| 0.00193798 0.0188479 1.49697e-06 1.56308e-06 2.718 ||| 0-2 ||| 516 668016 +a ||| a part to ||| 0.03125 0.229811 1.49697e-06 1.85118e-05 2.718 ||| 0-2 ||| 32 668016 +a ||| a part with ||| 0.5 0.0571592 1.49697e-06 8.82256e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| a particular word of thanks to ||| 0.5 0.229811 1.49697e-06 4.28352e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| a partner for ||| 0.0588235 0.0683377 1.49697e-06 4.11601e-08 2.718 ||| 0-2 ||| 17 668016 +a ||| a party to ||| 0.0291262 0.229811 4.49091e-06 1.06207e-06 2.718 ||| 0-2 ||| 103 668016 +a ||| a penalty on ||| 0.5 0.0782999 1.49697e-06 2.35414e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| a personal reference to our friend on ||| 1 0.0782999 1.49697e-06 8.59265e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| a picture of ||| 0.0377358 0.0188479 2.99394e-06 4.48393e-08 2.718 ||| 0-2 ||| 53 668016 +a ||| a place at ||| 0.1 0.204175 1.49697e-06 2.27051e-06 2.718 ||| 0-2 ||| 10 668016 +a ||| a place for ||| 0.0138889 0.0683377 1.49697e-06 2.45818e-06 2.718 ||| 0-2 ||| 72 668016 +a ||| a place in ||| 0.00719424 0.0587624 1.49697e-06 4.00812e-06 2.718 ||| 0-2 ||| 139 668016 +a ||| a place to ||| 0.0357143 0.229811 1.49697e-06 2.33687e-05 2.718 ||| 0-2 ||| 28 668016 +a ||| a point at ||| 0.027027 0.204175 1.49697e-06 1.31976e-06 2.718 ||| 0-2 ||| 37 668016 +a ||| a point of asking ||| 1 0.0188479 1.49697e-06 4.95479e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| a point of ||| 0.00198151 0.0188479 4.49091e-06 1.14694e-06 2.718 ||| 0-2 ||| 1514 668016 +a ||| a point on ||| 0.0121951 0.0782999 1.49697e-06 1.471e-06 2.718 ||| 0-2 ||| 82 668016 +a ||| a position to dialogue ||| 1 0.229811 1.49697e-06 2.00436e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| a position to ||| 0.00531108 0.229811 1.04788e-05 5.11317e-06 2.718 ||| 0-2 ||| 1318 668016 +a ||| a positive effect on ||| 0.00877193 0.0782999 1.49697e-06 5.10471e-11 2.718 ||| 0-3 ||| 114 668016 +a ||| a potential for ||| 0.0666667 0.0683377 1.49697e-06 8.4117e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| a power of good ||| 0.5 0.0188479 1.49697e-06 1.01514e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| a power of ||| 0.047619 0.0188479 1.49697e-06 1.95746e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| a practitioner of many years ||| 1 0.0188479 1.49697e-06 8.42672e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| a practitioner of many ||| 1 0.0188479 1.49697e-06 4.95107e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| a practitioner of ||| 1 0.0188479 1.49697e-06 1.4422e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| a precarious state to ||| 1 0.229811 1.49697e-06 4.31444e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| a precondition for certain ||| 1 0.0683377 1.49697e-06 1.34995e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| a precondition for ||| 0.004 0.0683377 1.49697e-06 4.73668e-09 2.718 ||| 0-2 ||| 250 668016 +a ||| a prerequisite for ||| 0.00224215 0.0683377 1.49697e-06 8.82003e-09 2.718 ||| 0-2 ||| 446 668016 +a ||| a presentation to ||| 0.333333 0.229811 1.49697e-06 2.45333e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| a principle which ||| 0.0169492 0.0005823 1.49697e-06 5.50319e-10 2.718 ||| 0-0 ||| 59 668016 +a ||| a principle ||| 0.00242718 0.0005823 1.49697e-06 6.47846e-08 2.718 ||| 0-0 ||| 412 668016 +a ||| a priority , to ||| 0.333333 0.229811 1.49697e-06 1.03326e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| a problem for ||| 0.00321543 0.0683377 1.49697e-06 3.67338e-07 2.718 ||| 0-2 ||| 311 668016 +a ||| a problem in waters ||| 1 0.0587624 1.49697e-06 9.94265e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| a problem in ||| 0.00534759 0.0587624 1.49697e-06 5.98955e-07 2.718 ||| 0-2 ||| 187 668016 +a ||| a problem with ||| 0.00301205 0.0571592 1.49697e-06 1.66431e-07 2.718 ||| 0-2 ||| 332 668016 +a ||| a process to ||| 0.0333333 0.229811 1.49697e-06 6.63796e-06 2.718 ||| 0-2 ||| 30 668016 +a ||| a proportion of ||| 0.01 0.0188479 1.49697e-06 3.95949e-08 2.718 ||| 0-2 ||| 100 668016 +a ||| a proposal for ||| 0.000821018 0.0683377 1.49697e-06 3.26178e-07 2.718 ||| 0-2 ||| 1218 668016 +a ||| a proposal in the ||| 0.047619 0.0587624 1.49697e-06 3.26507e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| a proposal in ||| 0.0142857 0.0587624 1.49697e-06 5.31842e-07 2.718 ||| 0-2 ||| 70 668016 +a ||| a proposal to ||| 0.004158 0.229811 2.99394e-06 3.10082e-06 2.718 ||| 0-2 ||| 481 668016 +a ||| a question for the future , both ||| 1 0.0683377 1.49697e-06 4.35256e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| a question for the future , ||| 1 0.0683377 1.49697e-06 2.62756e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| a question for the future ||| 1 0.0683377 1.49697e-06 2.20332e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| a question for the ||| 0.0136986 0.0683377 1.49697e-06 8.29564e-08 2.718 ||| 0-2 ||| 73 668016 +a ||| a question for ||| 0.0171429 0.0683377 4.49091e-06 1.35126e-06 2.718 ||| 0-2 ||| 175 668016 +a ||| a question of ||| 0.00134892 0.0188479 4.49091e-06 1.08467e-06 2.718 ||| 0-2 ||| 2224 668016 +a ||| a rare insight into ||| 1 0.107578 1.49697e-06 7.2697e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| a real chance of administering ||| 0.333333 0.0188479 1.49697e-06 2.79783e-17 2.718 ||| 0-3 ||| 3 668016 +a ||| a real chance of ||| 0.0416667 0.0188479 1.49697e-06 1.55435e-11 2.718 ||| 0-3 ||| 24 668016 +a ||| a real gain in ||| 1 0.0587624 1.49697e-06 2.67344e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| a reason for ||| 0.0114943 0.0683377 2.99394e-06 3.82038e-07 2.718 ||| 0-2 ||| 174 668016 +a ||| a recent recurrence of ||| 1 0.0188479 1.49697e-06 1.14694e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| a reference to ||| 0.00325733 0.229811 1.49697e-06 1.32449e-06 2.718 ||| 0-2 ||| 307 668016 +a ||| a registered ||| 0.125 0.0005823 1.49697e-06 4.73312e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| a regular basis to ||| 0.142857 0.229811 1.49697e-06 1.62275e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| a regulatory framework should continue to exist ||| 0.25 0.229811 1.49697e-06 2.51477e-21 2.718 ||| 0-5 ||| 4 668016 +a ||| a regulatory framework should continue to ||| 0.25 0.229811 1.49697e-06 2.73047e-17 2.718 ||| 0-5 ||| 4 668016 +a ||| a rejection of ||| 0.02 0.0188479 1.49697e-06 1.12754e-08 2.718 ||| 0-2 ||| 50 668016 +a ||| a reliance on ||| 0.25 0.0782999 1.49697e-06 6.05349e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| a repeat occurrence of ||| 1 0.0188479 1.49697e-06 4.62553e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| a repeat ||| 0.00540541 0.0005204 1.49697e-06 7.97864e-08 2.718 ||| 0-1 ||| 185 668016 +a ||| a report on ||| 0.000919118 0.0782999 1.49697e-06 6.89257e-07 2.718 ||| 0-2 ||| 1088 668016 +a ||| a requirement for ||| 0.0075188 0.0683377 1.49697e-06 6.87636e-08 2.718 ||| 0-2 ||| 133 668016 +a ||| a resolution on ||| 0.00109769 0.0782999 1.49697e-06 1.46965e-07 2.718 ||| 0-2 ||| 911 668016 +a ||| a responsibility to ||| 0.00293255 0.229811 1.49697e-06 1.79341e-06 2.718 ||| 0-2 ||| 341 668016 +a ||| a result of the ||| 0.000643501 0.0188479 1.49697e-06 4.23781e-08 2.718 ||| 0-2 ||| 1554 668016 +a ||| a result of using ||| 0.25 0.0188479 1.49697e-06 5.36355e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| a result of ||| 0.00549313 0.0188479 3.29333e-05 6.90289e-07 2.718 ||| 0-2 ||| 4005 668016 +a ||| a result ||| 0.000146821 0.0005823 1.49697e-06 2.22499e-07 2.718 ||| 0-0 ||| 6811 668016 +a ||| a return on ||| 0.03125 0.0782999 1.49697e-06 1.1199e-07 2.718 ||| 0-2 ||| 32 668016 +a ||| a return to ||| 0.00557103 0.229811 2.99394e-06 1.03412e-06 2.718 ||| 0-2 ||| 359 668016 +a ||| a right of ||| 0.00657895 0.0188479 1.49697e-06 8.45522e-07 2.718 ||| 0-2 ||| 152 668016 +a ||| a right to ||| 0.00284091 0.229811 2.99394e-06 1.00136e-05 2.718 ||| 0-2 ||| 704 668016 +a ||| a rise in ||| 0.00529101 0.0587624 1.49697e-06 3.34499e-07 2.718 ||| 0-2 ||| 189 668016 +a ||| a rise of ||| 0.047619 0.0188479 1.49697e-06 1.64673e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| a risk of ||| 0.00224215 0.0188479 1.49697e-06 1.53398e-07 2.718 ||| 0-2 ||| 446 668016 +a ||| a role for ||| 0.0140845 0.0683377 1.49697e-06 3.62601e-07 2.718 ||| 0-2 ||| 71 668016 +a ||| a role in which they are merely ||| 1 0.0587624 1.49697e-06 1.58436e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| a role in which they are ||| 1 0.0587624 1.49697e-06 2.48722e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| a role in which they ||| 1 0.0587624 1.49697e-06 1.63927e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| a role in which ||| 0.5 0.0587624 1.49697e-06 5.02227e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| a role in ||| 0.0125 0.0587624 5.98788e-06 5.91231e-07 2.718 ||| 0-2 ||| 320 668016 +a ||| a role of ||| 0.0322581 0.0188479 1.49697e-06 2.91062e-07 2.718 ||| 0-2 ||| 31 668016 +a ||| a say by ||| 0.5 0.0337966 1.49697e-06 3.48571e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| a say in ||| 0.00970874 0.0587624 1.49697e-06 2.54549e-06 2.718 ||| 0-2 ||| 103 668016 +a ||| a scheme to ||| 0.0555556 0.229811 1.49697e-06 5.48117e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| a seat at ||| 0.0714286 0.204175 1.49697e-06 2.44401e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| a series of ||| 0.000449843 0.0188479 1.49697e-06 5.23125e-08 2.718 ||| 0-2 ||| 2223 668016 +a ||| a set of measures designed to serve ||| 1 0.229811 1.49697e-06 5.4524e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| a set of measures designed to ||| 0.2 0.229811 1.49697e-06 7.97135e-15 2.718 ||| 0-5 ||| 5 668016 +a ||| a shared duty , of ||| 1 0.0188479 1.49697e-06 3.14506e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| a shift in ||| 0.0172414 0.0587624 1.49697e-06 5.27315e-08 2.718 ||| 0-2 ||| 58 668016 +a ||| a short distance to ||| 0.5 0.180674 1.49697e-06 3.31924e-10 2.718 ||| 0-2 0-3 ||| 2 668016 +a ||| a short distance ||| 0.125 0.131537 1.49697e-06 9.47537e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| a shortcut to ||| 0.25 0.229811 1.49697e-06 6.21096e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| a shot in ||| 0.0416667 0.0587624 1.49697e-06 2.98279e-08 2.718 ||| 0-2 ||| 24 668016 +a ||| a sign of ||| 0.00224215 0.0188479 1.49697e-06 6.84389e-08 2.718 ||| 0-2 ||| 446 668016 +a ||| a sign ||| 0.00126743 0.0005823 1.49697e-06 2.20597e-08 2.718 ||| 0-0 ||| 789 668016 +a ||| a signal to ||| 0.00892857 0.229811 1.49697e-06 3.69552e-07 2.718 ||| 0-2 ||| 112 668016 +a ||| a significant part in ||| 0.0232558 0.0587624 1.49697e-06 1.82884e-10 2.718 ||| 0-3 ||| 43 668016 +a ||| a significant role in ||| 0.0075188 0.0587624 1.49697e-06 3.40549e-11 2.718 ||| 0-3 ||| 133 668016 +a ||| a similar way to another directive ||| 1 0.229811 1.49697e-06 3.62939e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| a similar way to another ||| 1 0.229811 1.49697e-06 3.25214e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| a similar way to ||| 0.0555556 0.229811 1.49697e-06 1.34888e-09 2.718 ||| 0-3 ||| 18 668016 +a ||| a situation in which ||| 0.00322581 0.0587624 2.99394e-06 1.16508e-08 2.718 ||| 0-2 ||| 620 668016 +a ||| a situation in ||| 0.00678295 0.0587624 1.04788e-05 1.37155e-06 2.718 ||| 0-2 ||| 1032 668016 +a ||| a situation where there are grounds for ||| 1 0.0683377 1.49697e-06 1.24111e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| a situation where we have to say ||| 1 0.229811 1.49697e-06 3.1443e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| a situation where we have to ||| 0.25 0.229811 1.49697e-06 3.2897e-13 2.718 ||| 0-5 ||| 4 668016 +a ||| a situation ||| 0.000343407 0.0005823 1.49697e-06 2.17639e-07 2.718 ||| 0-0 ||| 2912 668016 +a ||| a sound footing in the ||| 0.5 0.0587624 1.49697e-06 2.09776e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| a sound footing in ||| 0.333333 0.0587624 1.49697e-06 3.417e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| a sound inventory of ||| 1 0.0188479 1.49697e-06 1.40182e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| a source of ||| 0.00274725 0.0188479 2.99394e-06 8.35165e-08 2.718 ||| 0-2 ||| 728 668016 +a ||| a spade a ||| 0.105263 0.0894309 2.99394e-06 5.91398e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| a spade ||| 0.136364 0.0894309 3.14364e-05 1.33421e-06 2.718 ||| 0-1 ||| 154 668016 +a ||| a special word of thanks to ||| 0.111111 0.229811 1.49697e-06 5.95822e-16 2.718 ||| 0-5 ||| 9 668016 +a ||| a specific question to you ||| 0.333333 0.229811 1.49697e-06 6.26692e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| a specific question to ||| 0.111111 0.229811 1.49697e-06 1.941e-09 2.718 ||| 0-3 ||| 9 668016 +a ||| a stand against ||| 0.0138889 0.05146 1.49697e-06 1.89891e-08 2.718 ||| 0-2 ||| 72 668016 +a ||| a statement pursuant to ||| 0.5 0.229811 1.49697e-06 1.5848e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| a statement to ||| 0.0117647 0.229811 1.49697e-06 1.15679e-06 2.718 ||| 0-2 ||| 85 668016 +a ||| a step in the ||| 0.00133869 0.0587624 1.49697e-06 2.41161e-08 2.718 ||| 0-2 ||| 747 668016 +a ||| a step in ||| 0.00232019 0.0587624 2.99394e-06 3.92823e-07 2.718 ||| 0-2 ||| 862 668016 +a ||| a stop to ||| 0.00240964 0.229811 1.49697e-06 1.07294e-06 2.718 ||| 0-2 ||| 415 668016 +a ||| a strain on ||| 0.0384615 0.0782999 1.49697e-06 1.02573e-08 2.718 ||| 0-2 ||| 26 668016 +a ||| a substantial way to ||| 1 0.229811 1.49697e-06 1.00078e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| a switch to ||| 0.0714286 0.229811 1.49697e-06 1.95645e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| a system in the ||| 0.25 0.0587624 1.49697e-06 4.55999e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| a system in ||| 0.00900901 0.0587624 1.49697e-06 7.42768e-07 2.718 ||| 0-2 ||| 111 668016 +a ||| a task for ||| 0.00740741 0.0683377 1.49697e-06 2.05801e-07 2.718 ||| 0-2 ||| 135 668016 +a ||| a task of ||| 0.0555556 0.0188479 1.49697e-06 1.65197e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| a thing as ||| 0.03125 0.0243476 1.49697e-06 1.41889e-07 2.718 ||| 0-2 ||| 32 668016 +a ||| a thing of ||| 0.03125 0.0188479 1.49697e-06 4.78417e-07 2.718 ||| 0-2 ||| 32 668016 +a ||| a thought to ||| 0.5 0.229811 1.49697e-06 1.29033e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| a thousand miles ||| 0.125 0.0526316 1.49697e-06 8.14176e-12 2.718 ||| 0-2 ||| 8 668016 +a ||| a threat to ||| 0.00125313 0.229811 1.49697e-06 6.08674e-07 2.718 ||| 0-2 ||| 798 668016 +a ||| a thriving democracy , for ||| 1 0.0683377 1.49697e-06 6.23502e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| a time schedule saying , for example ||| 1 0.0683377 1.49697e-06 5.94489e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| a time schedule saying , for ||| 1 0.0683377 1.49697e-06 2.04222e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| a time when ||| 0.000283447 0.0055468 1.49697e-06 2.25804e-08 2.718 ||| 0-2 ||| 3528 668016 +a ||| a total of ||| 0.00352734 0.0188479 2.99394e-06 1.23636e-07 2.718 ||| 0-2 ||| 567 668016 +a ||| a total ||| 0.00124533 0.0005823 1.49697e-06 3.98512e-08 2.718 ||| 0-0 ||| 803 668016 +a ||| a track record of reasonably ||| 0.5 0.0188479 1.49697e-06 1.36163e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| a track record of ||| 0.125 0.0188479 1.49697e-06 2.89709e-12 2.718 ||| 0-3 ||| 8 668016 +a ||| a true representation of ||| 0.5 0.0188479 1.49697e-06 2.52128e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| a turn for the ||| 0.05 0.0683377 1.49697e-06 2.24813e-08 2.718 ||| 0-2 ||| 20 668016 +a ||| a turn for ||| 0.0869565 0.0683377 2.99394e-06 3.66195e-07 2.718 ||| 0-2 ||| 23 668016 +a ||| a united front against ||| 0.125 0.05146 1.49697e-06 1.73669e-13 2.718 ||| 0-3 ||| 8 668016 +a ||| a useful addition to ||| 0.111111 0.229811 1.49697e-06 4.85327e-11 2.718 ||| 0-3 ||| 9 668016 +a ||| a useful part of ||| 1 0.0188479 1.49697e-06 4.95497e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| a value of EUR ||| 0.5 0.0188479 1.49697e-06 3.07814e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| a value of ||| 0.0212766 0.0188479 1.49697e-06 1.15114e-07 2.718 ||| 0-2 ||| 47 668016 +a ||| a variety of ||| 0.002 0.0188479 1.49697e-06 3.01551e-08 2.718 ||| 0-2 ||| 500 668016 +a ||| a very thorough , careful look at ||| 1 0.204175 1.49697e-06 8.89633e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| a very ||| 0.000435066 0.0005823 2.99394e-06 1.47044e-06 2.718 ||| 0-0 ||| 4597 668016 +a ||| a view to adopting a decision of ||| 1 0.229811 1.49697e-06 2.59978e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| a view to adopting a decision ||| 1 0.229811 1.49697e-06 4.78217e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| a view to adopting a ||| 0.0212766 0.229811 1.49697e-06 3.04016e-11 2.718 ||| 0-2 ||| 47 668016 +a ||| a view to adopting ||| 0.010101 0.229811 1.49697e-06 6.85866e-10 2.718 ||| 0-2 ||| 99 668016 +a ||| a view to converting ||| 0.5 0.229811 1.49697e-06 3.0857e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| a view to having ||| 0.0588235 0.229811 1.49697e-06 5.37052e-09 2.718 ||| 0-2 ||| 17 668016 +a ||| a view to the better ||| 1 0.229811 1.49697e-06 1.46297e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| a view to the ||| 0.00537634 0.229811 2.99394e-06 8.61075e-07 2.718 ||| 0-2 ||| 372 668016 +a ||| a view to their receiving aid ||| 1 0.229811 1.49697e-06 6.34842e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| a view to their receiving ||| 1 0.229811 1.49697e-06 4.86097e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| a view to their ||| 0.0555556 0.229811 1.49697e-06 1.62574e-08 2.718 ||| 0-2 ||| 18 668016 +a ||| a view to ||| 0.00563631 0.229811 2.84424e-05 1.40259e-05 2.718 ||| 0-2 ||| 3371 668016 +a ||| a visit by ||| 0.0384615 0.0337966 1.49697e-06 1.07584e-08 2.718 ||| 0-2 ||| 26 668016 +a ||| a visit to ||| 0.00847458 0.229811 1.49697e-06 4.58058e-07 2.718 ||| 0-2 ||| 118 668016 +a ||| a voluntary approach to establishing ||| 0.142857 0.229811 1.49697e-06 2.11854e-15 2.718 ||| 0-3 ||| 7 668016 +a ||| a voluntary approach to ||| 0.111111 0.229811 1.49697e-06 4.5268e-11 2.718 ||| 0-3 ||| 9 668016 +a ||| a vote in ||| 0.00609756 0.0587624 1.49697e-06 4.18922e-07 2.718 ||| 0-2 ||| 164 668016 +a ||| a warm welcome to ||| 0.0131579 0.229811 1.49697e-06 2.27372e-11 2.718 ||| 0-3 ||| 76 668016 +a ||| a warning to ||| 0.0178571 0.229811 1.49697e-06 2.17384e-07 2.718 ||| 0-2 ||| 56 668016 +a ||| a way as to meet ||| 0.333333 0.0243476 1.49697e-06 9.05679e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| a way as to ||| 0.0141509 0.229811 4.49091e-06 3.4155e-07 2.718 ||| 0-3 ||| 212 668016 +a ||| a way as ||| 0.00444444 0.0243476 1.49697e-06 8.38191e-07 2.718 ||| 0-2 ||| 225 668016 +a ||| a way forward if we are to ||| 1 0.229811 1.49697e-06 2.6804e-15 2.718 ||| 0-6 ||| 1 668016 +a ||| a way of giving ||| 0.142857 0.136521 1.49697e-06 5.23908e-09 2.718 ||| 0-3 ||| 7 668016 +a ||| a way of ||| 0.00115207 0.0188479 1.49697e-06 2.82619e-06 2.718 ||| 0-2 ||| 868 668016 +a ||| a way to make ||| 0.125 0.229811 1.49697e-06 5.81657e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| a way to ||| 0.00595238 0.229811 2.99394e-06 3.34709e-05 2.718 ||| 0-2 ||| 336 668016 +a ||| a weapon to ||| 0.142857 0.229811 1.49697e-06 4.96877e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| a whole host of ||| 0.0103093 0.0188479 1.49697e-06 1.43887e-11 2.718 ||| 0-3 ||| 97 668016 +a ||| a whole series of ||| 0.00244499 0.0188479 1.49697e-06 2.95932e-11 2.718 ||| 0-3 ||| 409 668016 +a ||| a willingness to ||| 0.00653595 0.229811 1.49697e-06 2.01856e-07 2.718 ||| 0-2 ||| 153 668016 +a ||| a window for ||| 0.2 0.0683377 1.49697e-06 1.82934e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| a wish to introduce for ||| 1 0.0683377 1.49697e-06 2.18562e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| a woman , has just been deported ||| 1 0.0994152 1.49697e-06 3.07401e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| a word about ||| 0.00452489 0.0526361 1.49697e-06 2.27392e-08 2.718 ||| 0-2 ||| 221 668016 +a ||| a word of ||| 0.00763359 0.0188479 1.49697e-06 1.33469e-07 2.718 ||| 0-2 ||| 131 668016 +a ||| a worrying increase in the number of ||| 0.5 0.0587624 1.49697e-06 6.36409e-18 2.718 ||| 0-3 ||| 2 668016 +a ||| a worrying increase in the number ||| 0.333333 0.0587624 1.49697e-06 1.17064e-16 2.718 ||| 0-3 ||| 3 668016 +a ||| a worrying increase in the ||| 0.25 0.0587624 1.49697e-06 2.3659e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| a worrying increase in ||| 0.142857 0.0587624 1.49697e-06 3.85376e-12 2.718 ||| 0-3 ||| 7 668016 +a ||| a yardstick of ||| 0.142857 0.0188479 1.49697e-06 4.19549e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| a year for ||| 0.027027 0.0683377 1.49697e-06 4.07355e-07 2.718 ||| 0-2 ||| 37 668016 +a ||| a ||| 0.0005102 0.0005823 0.000537412 0.0004226 2.718 ||| 0-0 ||| 703645 668016 +a ||| abandon the attempt to ||| 0.5 0.229811 1.49697e-06 1.41862e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| abandon ||| 0.00556174 0.0516194 7.48485e-06 4.66e-05 2.718 ||| 0-0 ||| 899 668016 +a ||| abandoning ||| 0.005 0.107143 2.99394e-06 4.66e-05 2.718 ||| 0-0 ||| 400 668016 +a ||| abducted ||| 0.0128205 0.0536585 2.99394e-06 1e-05 2.718 ||| 0-0 ||| 156 668016 +a ||| abduction and given ||| 1 0.0371011 1.49697e-06 1.85358e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| abide by ||| 0.00248139 0.0337966 1.49697e-06 5.9238e-08 2.718 ||| 0-1 ||| 403 668016 +a ||| ability of ||| 0.00492611 0.0188479 2.99394e-06 1.36357e-06 2.718 ||| 0-1 ||| 406 668016 +a ||| ability to borrow money ||| 0.111111 0.229811 1.49697e-06 8.44394e-15 2.718 ||| 0-1 ||| 9 668016 +a ||| ability to borrow ||| 0.125 0.229811 1.49697e-06 5.16765e-11 2.718 ||| 0-1 ||| 8 668016 +a ||| ability to change ||| 0.0625 0.229811 1.49697e-06 1.97017e-09 2.718 ||| 0-1 ||| 16 668016 +a ||| ability to ||| 0.00408163 0.229811 1.19758e-05 1.61489e-05 2.718 ||| 0-1 ||| 1960 668016 +a ||| able , in the past , ||| 1 0.0587624 1.49697e-06 5.61039e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| able , in the past ||| 1 0.0587624 1.49697e-06 4.70454e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| able , in the ||| 0.111111 0.0587624 1.49697e-06 3.67256e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| able , in ||| 0.037037 0.0587624 1.49697e-06 5.98216e-06 2.718 ||| 0-2 ||| 27 668016 +a ||| able by ||| 0.5 0.0337966 1.49697e-06 6.86914e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| able to achieve ||| 0.0060241 0.229811 1.49697e-06 6.68287e-08 2.718 ||| 0-1 ||| 166 668016 +a ||| able to acquire ||| 0.0666667 0.229811 1.49697e-06 4.85495e-09 2.718 ||| 0-1 ||| 15 668016 +a ||| able to afford ||| 0.0714286 0.229811 1.49697e-06 8.21832e-09 2.718 ||| 0-1 ||| 14 668016 +a ||| able to attack ||| 1 0.229811 1.49697e-06 8.62777e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| able to be ||| 0.0140845 0.229811 2.99394e-06 5.30035e-06 2.718 ||| 0-1 ||| 142 668016 +a ||| able to benefit ||| 0.0277778 0.229811 1.49697e-06 3.85179e-08 2.718 ||| 0-1 ||| 36 668016 +a ||| able to bring her entire ||| 1 0.229811 1.49697e-06 1.96205e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| able to bring her ||| 1 0.229811 1.49697e-06 2.47733e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| able to bring ||| 0.0238095 0.229811 1.49697e-06 9.10449e-08 2.718 ||| 0-1 ||| 42 668016 +a ||| able to call on ||| 0.2 0.0782999 1.49697e-06 6.24787e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| able to charge ||| 0.166667 0.229811 1.49697e-06 1.47403e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| able to claim ||| 0.2 0.229811 1.49697e-06 1.37752e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| able to collect ||| 0.1 0.229811 1.49697e-06 1.16987e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| able to continue ||| 0.015625 0.229811 1.49697e-06 6.76768e-08 2.718 ||| 0-1 ||| 64 668016 +a ||| able to contribute ||| 0.0227273 0.229811 1.49697e-06 1.1377e-08 2.718 ||| 0-1 ||| 44 668016 +a ||| able to detect ||| 0.166667 0.229811 1.49697e-06 1.57932e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| able to do so ||| 0.0232558 0.229811 2.99394e-06 2.28039e-09 2.718 ||| 0-1 ||| 86 668016 +a ||| able to do this very ||| 1 0.229811 1.49697e-06 2.25884e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| able to do this ||| 0.0285714 0.229811 1.49697e-06 6.49184e-09 2.718 ||| 0-1 ||| 35 668016 +a ||| able to do ||| 0.0223464 0.229811 5.98788e-06 1.00471e-06 2.718 ||| 0-1 ||| 179 668016 +a ||| able to endorse ||| 0.0909091 0.229811 1.49697e-06 6.639e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| able to enjoy ||| 0.047619 0.229811 1.49697e-06 1.1377e-08 2.718 ||| 0-1 ||| 21 668016 +a ||| able to establish ||| 0.0175439 0.229811 1.49697e-06 2.23152e-08 2.718 ||| 0-1 ||| 57 668016 +a ||| able to follow that up ||| 1 0.0008521 1.49697e-06 1.71007e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| able to follow that ||| 1 0.0008521 1.49697e-06 5.01415e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| able to give ||| 0.0145985 0.229811 2.99394e-06 1.77235e-07 2.718 ||| 0-1 ||| 137 668016 +a ||| able to go to ||| 0.125 0.229811 1.49697e-06 1.51978e-08 2.718 ||| 0-3 ||| 8 668016 +a ||| able to have any impact on ||| 0.5 0.0782999 1.49697e-06 4.1941e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| able to hold ||| 0.0238095 0.229811 1.49697e-06 5.09477e-08 2.718 ||| 0-1 ||| 42 668016 +a ||| able to implement once ||| 0.5 0.229811 1.49697e-06 6.678e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| able to implement ||| 0.0133333 0.229811 1.49697e-06 1.63196e-08 2.718 ||| 0-1 ||| 75 668016 +a ||| able to inform ||| 0.0526316 0.229811 1.49697e-06 5.58612e-09 2.718 ||| 0-1 ||| 19 668016 +a ||| able to invite ||| 0.142857 0.229811 1.49697e-06 3.15864e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| able to learn ||| 0.0588235 0.229811 1.49697e-06 1.02071e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| able to live ||| 0.0285714 0.229811 1.49697e-06 2.94807e-08 2.718 ||| 0-1 ||| 35 668016 +a ||| able to make ||| 0.00434783 0.229811 1.49697e-06 5.08249e-07 2.718 ||| 0-1 ||| 230 668016 +a ||| able to move ||| 0.0294118 0.229811 1.49697e-06 4.47182e-08 2.718 ||| 0-1 ||| 34 668016 +a ||| able to oppose ||| 0.125 0.229811 1.49697e-06 1.57932e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| able to reach ||| 0.00862069 0.206202 1.49697e-06 4.2899e-07 2.718 ||| 0-1 0-2 ||| 116 668016 +a ||| able to receive ||| 0.0344828 0.229811 1.49697e-06 2.93637e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| able to reconcile conflicting wishes ||| 1 0.229811 1.49697e-06 2.00511e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| able to reconcile conflicting ||| 1 0.229811 1.49697e-06 3.79037e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| able to reconcile ||| 0.0833333 0.229811 1.49697e-06 1.05288e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| able to require television ||| 1 0.229811 1.49697e-06 9.30746e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| able to require ||| 0.25 0.229811 1.49697e-06 1.36874e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| able to rid ourselves of ||| 1 0.0188479 1.49697e-06 1.63338e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| able to set up the Daphne programme ||| 1 0.229811 1.49697e-06 1.82366e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| able to set up the Daphne ||| 1 0.229811 1.49697e-06 1.43145e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| able to set up the ||| 1 0.229811 1.49697e-06 3.57862e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| able to set up ||| 0.111111 0.229811 1.49697e-06 5.82914e-10 2.718 ||| 0-1 ||| 9 668016 +a ||| able to set ||| 0.0294118 0.229811 1.49697e-06 1.70918e-07 2.718 ||| 0-1 ||| 34 668016 +a ||| able to speak on her behalf in ||| 1 0.0782999 1.49697e-06 7.0635e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| able to speak on her behalf ||| 1 0.0782999 1.49697e-06 3.30001e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| able to speak on her ||| 1 0.0782999 1.49697e-06 1.03611e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| able to speak on ||| 0.2 0.0782999 1.49697e-06 3.80782e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| able to take part in ||| 0.105263 0.0587624 2.99394e-06 8.55569e-12 2.718 ||| 0-4 ||| 19 668016 +a ||| able to use ||| 0.00952381 0.229811 1.49697e-06 1.42197e-07 2.718 ||| 0-1 ||| 105 668016 +a ||| able to vote ||| 0.0119048 0.229811 1.49697e-06 4.6005e-08 2.718 ||| 0-1 ||| 84 668016 +a ||| able to ||| 0.0192746 0.229811 0.000278436 0.000292467 2.718 ||| 0-1 ||| 9650 668016 +a ||| aboard ||| 0.0571429 0.326923 2.99394e-06 1.55e-05 2.718 ||| 0-0 ||| 35 668016 +a ||| abolishing by ||| 1 0.0337966 1.49697e-06 1.48095e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| about , but ||| 0.0526316 0.0526361 1.49697e-06 4.10696e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| about , there ||| 0.2 0.0526361 1.49697e-06 1.84212e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| about , ||| 0.0401606 0.0526361 1.49697e-05 0.00060096 2.718 ||| 0-0 ||| 249 668016 +a ||| about a change in how ||| 1 0.0587624 1.49697e-06 1.64693e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| about a change in ||| 0.0909091 0.0587624 1.49697e-06 4.59522e-10 2.718 ||| 0-3 ||| 11 668016 +a ||| about a ||| 0.00268637 0.0526361 5.98788e-06 0.000223371 2.718 ||| 0-0 ||| 1489 668016 +a ||| about actually looking at ||| 1 0.10245 1.49697e-06 7.35214e-14 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| about after ||| 0.25 0.0433694 1.49697e-06 4.22696e-06 2.718 ||| 0-0 0-1 ||| 4 668016 +a ||| about all of ||| 0.166667 0.035742 1.49697e-06 7.04344e-07 2.718 ||| 0-0 0-2 ||| 6 668016 +a ||| about all ||| 0.00598802 0.0526361 1.49697e-06 2.38127e-05 2.718 ||| 0-0 ||| 167 668016 +a ||| about as a result of the ||| 0.142857 0.0243476 1.49697e-06 9.66355e-13 2.718 ||| 0-1 ||| 7 668016 +a ||| about as a result of ||| 0.0714286 0.0243476 1.49697e-06 1.57408e-11 2.718 ||| 0-1 ||| 14 668016 +a ||| about as a result ||| 0.0588235 0.0243476 1.49697e-06 2.89544e-10 2.718 ||| 0-1 ||| 17 668016 +a ||| about as a ||| 0.166667 0.0526361 2.99394e-06 2.27937e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| about as helpful to ||| 0.5 0.229811 1.49697e-06 4.19613e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| about as ||| 0.0508475 0.0526361 4.49091e-06 5.1423e-05 2.718 ||| 0-0 ||| 59 668016 +a ||| about at the ||| 0.357143 0.128405 7.48485e-06 1.05296e-05 2.718 ||| 0-0 0-1 ||| 14 668016 +a ||| about at will ||| 0.5 0.204175 1.49697e-06 4.16436e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| about at ||| 0.214286 0.204175 8.98182e-06 4.81363e-05 2.718 ||| 0-1 ||| 28 668016 +a ||| about being ||| 0.0222222 0.0526361 1.49697e-06 1.43408e-05 2.718 ||| 0-0 ||| 45 668016 +a ||| about by ||| 0.0272727 0.0526361 4.49091e-06 2.64568e-05 2.718 ||| 0-0 ||| 110 668016 +a ||| about changes ||| 0.0416667 0.0526361 1.49697e-06 2.57508e-07 2.718 ||| 0-0 ||| 24 668016 +a ||| about completing ||| 0.2 0.0526361 1.49697e-06 7.05502e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| about condemning ||| 0.2 0.0736243 1.49697e-06 3.31082e-07 2.718 ||| 0-0 0-1 ||| 5 668016 +a ||| about criticisms ||| 1 0.0526361 1.49697e-06 2.36847e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| about eating ||| 0.25 0.0526361 1.49697e-06 1.25983e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| about ensuring ||| 0.0307692 0.0526361 2.99394e-06 5.85567e-07 2.718 ||| 0-0 ||| 65 668016 +a ||| about events ||| 0.0416667 0.0526361 1.49697e-06 3.66357e-07 2.718 ||| 0-0 ||| 24 668016 +a ||| about for ||| 0.0588235 0.0683377 1.49697e-06 5.21148e-05 2.718 ||| 0-1 ||| 17 668016 +a ||| about hardwood and coniferous trees ||| 1 0.0526361 1.49697e-06 6.16068e-23 2.718 ||| 0-0 ||| 1 668016 +a ||| about hardwood and coniferous ||| 1 0.0526361 1.49697e-06 1.00995e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| about hardwood and ||| 1 0.0526361 1.49697e-06 2.52487e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| about hardwood ||| 1 0.0526361 1.49697e-06 2.01572e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| about how ||| 0.00194175 0.0526361 2.99394e-06 1.80609e-06 2.718 ||| 0-0 ||| 1030 668016 +a ||| about in ||| 0.0273973 0.0556992 2.99394e-06 0.000302774 2.718 ||| 0-0 0-1 ||| 73 668016 +a ||| about is ||| 0.0235294 0.0526361 2.99394e-06 0.000157937 2.718 ||| 0-0 ||| 85 668016 +a ||| about it ||| 0.00501672 0.0526361 8.98182e-06 8.96149e-05 2.718 ||| 0-0 ||| 1196 668016 +a ||| about keeping ||| 0.0454545 0.0526361 1.49697e-06 2.95807e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| about not ||| 0.0263158 0.0526361 1.49697e-06 1.72047e-05 2.718 ||| 0-0 ||| 38 668016 +a ||| about one and a ||| 0.2 0.0526361 1.49697e-06 1.16617e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| about one and ||| 0.2 0.0526361 1.49697e-06 2.63092e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| about one ||| 0.00497512 0.0526361 1.49697e-06 2.10038e-05 2.718 ||| 0-0 ||| 201 668016 +a ||| about our ||| 0.00230947 0.0526361 1.49697e-06 6.95121e-06 2.718 ||| 0-0 ||| 433 668016 +a ||| about providing ||| 0.0357143 0.0526361 1.49697e-06 4.62608e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| about putting together ||| 1 0.0526361 1.49697e-06 3.38677e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| about putting ||| 0.0526316 0.0526361 1.49697e-06 5.63898e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| about seeking ||| 0.25 0.0526361 1.49697e-06 2.55493e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| about some ||| 0.00740741 0.0526361 1.49697e-06 5.48931e-06 2.718 ||| 0-0 ||| 135 668016 +a ||| about something that ||| 0.037037 0.0526361 1.49697e-06 4.69197e-08 2.718 ||| 0-0 ||| 27 668016 +a ||| about something ||| 0.0131579 0.0526361 1.49697e-06 2.78925e-06 2.718 ||| 0-0 ||| 76 668016 +a ||| about supporting ||| 0.0357143 0.121628 1.49697e-06 5.77705e-06 2.718 ||| 0-0 0-1 ||| 28 668016 +a ||| about that ||| 0.00346821 0.0526361 4.49091e-06 8.47691e-05 2.718 ||| 0-0 ||| 865 668016 +a ||| about the appropriateness of such a lavish ||| 1 0.0526361 1.49697e-06 1.51152e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| about the appropriateness of such a ||| 1 0.0526361 1.49697e-06 2.15932e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| about the appropriateness of such ||| 1 0.0526361 1.49697e-06 4.87146e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| about the appropriateness of ||| 0.166667 0.0526361 1.49697e-06 2.35462e-11 2.718 ||| 0-0 ||| 6 668016 +a ||| about the appropriateness ||| 0.142857 0.0526361 1.49697e-06 4.3312e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| about the danger of accepting poor ||| 1 0.0526361 1.49697e-06 2.52323e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| about the danger of accepting ||| 1 0.0526361 1.49697e-06 8.55331e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| about the danger of ||| 0.166667 0.0526361 1.49697e-06 8.22434e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| about the danger ||| 0.0833333 0.0526361 1.49697e-06 1.51283e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| about the fact ||| 0.00226757 0.0526361 1.49697e-06 9.06243e-07 2.718 ||| 0-0 ||| 441 668016 +a ||| about the need ||| 0.00293255 0.0526361 1.49697e-06 2.83663e-07 2.718 ||| 0-0 ||| 341 668016 +a ||| about the release onto ||| 1 0.207143 1.49697e-06 4.69483e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| about the time of ||| 0.142857 0.0188479 1.49697e-06 4.21621e-09 2.718 ||| 0-3 ||| 7 668016 +a ||| about the use of animals in ||| 0.5 0.0587624 1.49697e-06 5.61204e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| about the ||| 0.00117675 0.0526361 2.99394e-05 0.000309372 2.718 ||| 0-0 ||| 16996 668016 +a ||| about their captivity on a number of ||| 1 0.0782999 1.49697e-06 5.19045e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| about their captivity on a number ||| 1 0.0782999 1.49697e-06 9.54759e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| about their captivity on a ||| 1 0.0782999 1.49697e-06 1.92959e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| about their captivity on ||| 1 0.0782999 1.49697e-06 4.35319e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| about them , ||| 0.047619 0.0526361 1.49697e-06 1.61202e-06 2.718 ||| 0-0 ||| 21 668016 +a ||| about them ||| 0.00473934 0.0526361 1.49697e-06 1.35174e-05 2.718 ||| 0-0 ||| 211 668016 +a ||| about this either , ||| 1 0.0526361 1.49697e-06 3.36194e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| about this either ||| 0.5 0.0526361 1.49697e-06 2.81913e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| about this ||| 0.00216383 0.0526361 1.04788e-05 3.25609e-05 2.718 ||| 0-0 ||| 3235 668016 +a ||| about through ||| 0.0212766 0.0526361 1.49697e-06 2.31959e-06 2.718 ||| 0-0 ||| 47 668016 +a ||| about to be ||| 0.0128205 0.229811 1.49697e-06 8.97866e-06 2.718 ||| 0-1 ||| 78 668016 +a ||| about to get ||| 0.111111 0.229811 1.49697e-06 2.16603e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| about to repeat ||| 0.166667 0.229811 1.49697e-06 1.24849e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| about to say ||| 0.111111 0.229811 1.49697e-06 4.73533e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| about to take place ||| 0.0454545 0.229811 1.49697e-06 1.20046e-09 2.718 ||| 0-1 ||| 22 668016 +a ||| about to take ||| 0.0540541 0.229811 2.99394e-06 7.97645e-07 2.718 ||| 0-1 ||| 37 668016 +a ||| about to ||| 0.0296296 0.229811 4.19152e-05 0.000495432 2.718 ||| 0-1 ||| 945 668016 +a ||| about too ||| 1 0.0526361 1.49697e-06 6.85849e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| about turning ||| 0.333333 0.0526361 1.49697e-06 2.51965e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| about via ||| 0.25 0.330861 1.49697e-06 1.95824e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| about what is happening ||| 0.0172414 0.0526361 1.49697e-06 1.2033e-11 2.718 ||| 0-0 ||| 58 668016 +a ||| about what is ||| 0.00632911 0.0526361 1.49697e-06 2.21602e-07 2.718 ||| 0-0 ||| 158 668016 +a ||| about what ||| 0.00363967 0.0526361 5.98788e-06 7.07064e-06 2.718 ||| 0-0 ||| 1099 668016 +a ||| about whether to ||| 0.111111 0.229811 1.49697e-06 1.3015e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| about who is ||| 0.0232558 0.0526361 1.49697e-06 1.39301e-07 2.718 ||| 0-0 ||| 43 668016 +a ||| about who ||| 0.00943396 0.0526361 1.49697e-06 4.44466e-06 2.718 ||| 0-0 ||| 106 668016 +a ||| about ||| 0.0262044 0.0526361 0.00210324 0.0050393 2.718 ||| 0-0 ||| 53617 668016 +a ||| about ‘ ||| 0.0625 0.0526361 1.49697e-06 5.65913e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| above all , for the ||| 0.027027 0.0683377 1.49697e-06 1.65215e-10 2.718 ||| 0-3 ||| 37 668016 +a ||| above all , for ||| 0.00934579 0.0683377 1.49697e-06 2.69116e-09 2.718 ||| 0-3 ||| 107 668016 +a ||| above all , through ||| 0.0625 0.230708 1.49697e-06 5.80547e-10 2.718 ||| 0-3 ||| 16 668016 +a ||| above all , we ||| 0.0178571 0.0038996 1.49697e-06 9.70439e-11 2.718 ||| 0-1 ||| 56 668016 +a ||| above all , ||| 0.000212993 0.0038996 1.49697e-06 8.54839e-09 2.718 ||| 0-1 ||| 4695 668016 +a ||| above all else ||| 0.00689655 0.0038996 1.49697e-06 8.45845e-12 2.718 ||| 0-1 ||| 145 668016 +a ||| above all on ||| 0.011236 0.0782999 1.49697e-06 2.32322e-08 2.718 ||| 0-2 ||| 89 668016 +a ||| above all ||| 0.000567988 0.0038996 7.48485e-06 7.16818e-08 2.718 ||| 0-1 ||| 8803 668016 +a ||| above and ||| 0.0147059 0.0016279 1.49697e-06 2.05425e-07 2.718 ||| 0-0 ||| 68 668016 +a ||| above everything , ||| 1 0.0016279 1.49697e-06 1.80909e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| above everything ||| 0.2 0.0016279 1.49697e-06 1.517e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| above that of ||| 0.166667 0.0188479 1.49697e-06 6.44835e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| above the ||| 0.00251889 0.0016279 1.49697e-06 1.00683e-06 2.718 ||| 0-0 ||| 397 668016 +a ||| above ||| 0.00112496 0.0016279 1.79636e-05 1.64e-05 2.718 ||| 0-0 ||| 10667 668016 +a ||| abroad to ||| 0.0588235 0.229811 2.99394e-06 2.9075e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| abrupt halt at ||| 1 0.204175 1.49697e-06 4.81261e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| absence of ||| 0.000613874 0.0188479 1.49697e-06 7.66083e-07 2.718 ||| 0-1 ||| 1629 668016 +a ||| absent from ||| 0.0114943 0.0435582 1.49697e-06 2.59157e-08 2.718 ||| 0-1 ||| 87 668016 +a ||| absolute disgrace for ||| 0.5 0.0683377 1.49697e-06 1.82769e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| absolutely disagree with ||| 0.5 0.0571592 1.49697e-06 1.24373e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| absolutely in ||| 0.0322581 0.0587624 1.49697e-06 5.66578e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| absolutely no difference at ||| 0.5 0.204175 1.49697e-06 6.57054e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| absolutely no objection to Amendment ||| 1 0.229811 1.49697e-06 3.01848e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| absolutely no objection to ||| 0.2 0.229811 1.49697e-06 1.10567e-13 2.718 ||| 0-3 ||| 5 668016 +a ||| absolutely nothing against that - ||| 1 0.05146 1.49697e-06 2.89467e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| absolutely nothing against that ||| 0.5 0.05146 1.49697e-06 7.67388e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| absolutely nothing against ||| 0.0555556 0.05146 1.49697e-06 4.56192e-11 2.718 ||| 0-2 ||| 18 668016 +a ||| absorbed into ||| 0.0588235 0.107578 1.49697e-06 1.33635e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| absurd ||| 0.000870322 0.0008741 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1149 668016 +a ||| abuses in ||| 0.0166667 0.0587624 1.49697e-06 3.66503e-07 2.718 ||| 0-1 ||| 60 668016 +a ||| accede at a ||| 1 0.204175 1.49697e-06 5.43113e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| accede at ||| 1 0.204175 1.49697e-06 1.22527e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| accede to ||| 0.00925926 0.229811 2.99394e-06 1.26109e-06 2.718 ||| 0-1 ||| 216 668016 +a ||| acceding ||| 0.00263852 0.0477454 1.49697e-06 1.64e-05 2.718 ||| 0-0 ||| 379 668016 +a ||| accent firmly on ||| 1 0.0782999 1.49697e-06 3.58491e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| accept a role in which they are ||| 1 0.0587624 1.49697e-06 2.69365e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| accept a role in which they ||| 1 0.0587624 1.49697e-06 1.77533e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| accept a role in which ||| 1 0.0587624 1.49697e-06 5.43912e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| accept a role in ||| 1 0.0587624 1.49697e-06 6.40304e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| acceptable for ||| 0.00465116 0.0683377 1.49697e-06 1.19389e-06 2.718 ||| 0-1 ||| 215 668016 +a ||| acceptable here at ||| 1 0.204175 1.49697e-06 2.23615e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| acceptable to ||| 0.00120482 0.229811 1.49697e-06 1.13498e-05 2.718 ||| 0-1 ||| 830 668016 +a ||| acceptance for ||| 0.0238095 0.0683377 1.49697e-06 4.49552e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| acceptance path into ||| 1 0.107578 1.49697e-06 2.82346e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| accepted for ||| 0.0285714 0.0683377 1.49697e-06 2.26618e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| accepted if ||| 0.0909091 0.0014881 1.49697e-06 7.9704e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| accepted into ||| 0.0285714 0.107578 1.49697e-06 3.73569e-07 2.718 ||| 0-1 ||| 35 668016 +a ||| accepting ||| 0.000784929 0.0023166 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 1274 668016 +a ||| access for ||| 0.00443459 0.0683377 2.99394e-06 3.16897e-06 2.718 ||| 0-1 ||| 451 668016 +a ||| access to a ||| 0.0060241 0.124961 1.49697e-06 6.12245e-06 2.718 ||| 0-0 0-1 ||| 166 668016 +a ||| access to affordable essential medicines . we ||| 1 0.229811 1.49697e-06 2.00449e-24 2.718 ||| 0-1 ||| 1 668016 +a ||| access to affordable essential medicines . ||| 0.5 0.229811 1.49697e-06 1.76572e-22 2.718 ||| 0-1 ||| 2 668016 +a ||| access to affordable essential medicines ||| 0.5 0.229811 1.49697e-06 5.82937e-20 2.718 ||| 0-1 ||| 2 668016 +a ||| access to affordable essential ||| 1 0.229811 1.49697e-06 6.77834e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| access to affordable ||| 1 0.229811 1.49697e-06 7.53148e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| access to information ||| 0.00265252 0.229811 1.49697e-06 4.98584e-09 2.718 ||| 0-1 ||| 377 668016 +a ||| access to the general resources ||| 0.333333 0.229811 1.49697e-06 2.31608e-14 2.718 ||| 0-1 ||| 3 668016 +a ||| access to the general ||| 0.333333 0.229811 1.49697e-06 3.23475e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| access to the ||| 0.00128452 0.229811 2.99394e-06 1.84949e-06 2.718 ||| 0-1 ||| 1557 668016 +a ||| access to ||| 0.00402114 0.229811 5.2394e-05 3.01259e-05 2.718 ||| 0-1 ||| 8704 668016 +a ||| access ||| 0.000578481 0.0201099 1.34727e-05 0.0003943 2.718 ||| 0-0 ||| 15558 668016 +a ||| accessed ||| 0.0178571 0.228814 1.49697e-06 2.46e-05 2.718 ||| 0-0 ||| 56 668016 +a ||| accessible to ||| 0.0102249 0.229811 7.48485e-06 4.55392e-06 2.718 ||| 0-1 ||| 489 668016 +a ||| accessing financial services , a sector ||| 1 0.342767 1.49697e-06 2.10911e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| accessing financial services , a ||| 1 0.342767 1.49697e-06 1.13576e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| accessing financial services , ||| 1 0.342767 1.49697e-06 2.56231e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| accessing financial services ||| 1 0.342767 1.49697e-06 2.1486e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| accessing financial ||| 1 0.342767 1.49697e-06 2.4278e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| accessing ||| 0.00761421 0.342767 4.49091e-06 0.000199 2.718 ||| 0-0 ||| 394 668016 +a ||| accession negotiations with ||| 0.004329 0.0571592 1.49697e-06 3.39441e-11 2.718 ||| 0-2 ||| 231 668016 +a ||| accession of ||| 0.00150943 0.0188479 2.99394e-06 1.08553e-06 2.718 ||| 0-1 ||| 1325 668016 +a ||| accession to ||| 0.00380228 0.229811 5.98788e-06 1.28561e-05 2.718 ||| 0-1 ||| 1052 668016 +a ||| accession ||| 7.89017e-05 0.0001156 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 12674 668016 +a ||| accidents waiting to happen ||| 0.333333 0.229811 1.49697e-06 1.023e-14 2.718 ||| 0-2 ||| 3 668016 +a ||| accidents waiting to ||| 0.333333 0.229811 1.49697e-06 9.4112e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| accommodated ||| 0.0140845 0.0888889 1.49697e-06 1.1e-05 2.718 ||| 0-0 ||| 71 668016 +a ||| accommodating ||| 0.00819672 0.103825 1.49697e-06 1.73e-05 2.718 ||| 0-0 ||| 122 668016 +a ||| accommodation over ||| 1 0.0682544 1.49697e-06 6.73641e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| accompanied by ||| 0.00191022 0.0337966 2.99394e-06 1.66196e-07 2.718 ||| 0-1 ||| 1047 668016 +a ||| accompany ||| 0.00442478 0.167939 1.49697e-06 6.02e-05 2.718 ||| 0-0 ||| 226 668016 +a ||| accomplices now ||| 0.5 0.00208 1.49697e-06 5.332e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| accomplished ||| 0.00325733 0.0141176 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 307 668016 +a ||| accord to come forward and ||| 0.333333 0.229811 1.49697e-06 2.84066e-14 2.718 ||| 0-1 ||| 3 668016 +a ||| accord to come forward ||| 0.333333 0.229811 1.49697e-06 2.26783e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| accord to come ||| 0.333333 0.229811 1.49697e-06 4.0759e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| accord to ||| 0.181818 0.229811 2.99394e-06 4.79913e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| accord with ||| 0.0240964 0.0571592 2.99394e-06 2.28723e-07 2.718 ||| 0-1 ||| 83 668016 +a ||| accordance with an ||| 0.166667 0.0571592 1.49697e-06 5.89927e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| accordance with the ||| 0.000434972 0.0571592 1.49697e-06 8.14829e-08 2.718 ||| 0-1 ||| 2299 668016 +a ||| accordance with ||| 0.00321888 0.0571592 2.24546e-05 1.32726e-06 2.718 ||| 0-1 ||| 4660 668016 +a ||| accorded the same status in ||| 1 0.0587624 1.49697e-06 4.44125e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| accorded to ||| 0.0246914 0.229811 2.99394e-06 5.18446e-06 2.718 ||| 0-1 ||| 81 668016 +a ||| accorded ||| 0.0250896 0.0718447 1.04788e-05 3.38e-05 2.718 ||| 0-0 ||| 279 668016 +a ||| according to her plan . ||| 1 0.229811 1.49697e-06 1.8678e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| according to her plan ||| 1 0.229811 1.49697e-06 6.16639e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| according to her ||| 0.0909091 0.229811 1.49697e-06 8.43556e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| according to ||| 0.00286962 0.229811 3.44303e-05 3.10017e-05 2.718 ||| 0-1 ||| 8015 668016 +a ||| accords to ||| 0.1 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| accords with ||| 0.0217391 0.0571592 1.49697e-06 5.34243e-08 2.718 ||| 0-1 ||| 46 668016 +a ||| account for ||| 0.00593472 0.0683377 5.98788e-06 1.05939e-05 2.718 ||| 0-1 ||| 674 668016 +a ||| account in the ||| 0.00549451 0.0587624 1.49697e-06 1.06046e-06 2.718 ||| 0-1 ||| 182 668016 +a ||| account in ||| 0.00368324 0.0587624 2.99394e-06 1.72737e-05 2.718 ||| 0-1 ||| 543 668016 +a ||| account of his trip to ||| 0.5 0.229811 1.49697e-06 1.00361e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| account of some ||| 0.0909091 0.0188479 1.49697e-06 9.26321e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| account of the protocol on ||| 0.5 0.0782999 1.49697e-06 2.76643e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| account of ||| 0.00306387 0.0188479 1.94606e-05 8.50382e-06 2.718 ||| 0-1 ||| 4243 668016 +a ||| account on ||| 0.0454545 0.0782999 1.49697e-06 1.09065e-05 2.718 ||| 0-1 ||| 22 668016 +a ||| accounted for , ||| 0.5 0.0683377 1.49697e-06 2.85633e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| accounted for ||| 0.0268456 0.0683377 5.98788e-06 2.39515e-07 2.718 ||| 0-1 ||| 149 668016 +a ||| accounting for ||| 0.0107527 0.0683377 2.99394e-06 3.46376e-07 2.718 ||| 0-1 ||| 186 668016 +a ||| accounts for ||| 0.00347826 0.0683377 2.99394e-06 1.13862e-06 2.718 ||| 0-1 ||| 575 668016 +a ||| accruing to himself or herself ||| 1 0.229811 1.49697e-06 4.63259e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| accruing to himself or ||| 1 0.229811 1.49697e-06 2.07739e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| accruing to himself ||| 1 0.229811 1.49697e-06 1.81701e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| accruing to ||| 0.0714286 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| accumulated into ||| 0.333333 0.107578 1.49697e-06 8.50402e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| accurate idea as to ||| 1 0.229811 1.49697e-06 8.33486e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| accuse ||| 0.00680272 0.256173 1.49697e-06 7.58e-05 2.718 ||| 0-0 ||| 147 668016 +a ||| accused against ||| 1 0.100079 1.49697e-06 2.7439e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| accused either ||| 0.5 0.100079 1.49697e-06 9.9567e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| accused of ||| 0.00226244 0.0188479 1.49697e-06 3.72689e-07 2.718 ||| 0-1 ||| 442 668016 +a ||| accused ||| 0.0136674 0.100079 1.79636e-05 0.000115 2.718 ||| 0-0 ||| 878 668016 +a ||| accuses ||| 0.03125 0.346667 1.49697e-06 2.37e-05 2.718 ||| 0-0 ||| 32 668016 +a ||| accusing ||| 0.0113636 0.271028 1.49697e-06 5.29e-05 2.718 ||| 0-0 ||| 88 668016 +a ||| achieve a situation in which ||| 0.0909091 0.0587624 1.49697e-06 2.6622e-12 2.718 ||| 0-3 ||| 11 668016 +a ||| achieve a situation in ||| 0.0526316 0.0587624 1.49697e-06 3.13399e-10 2.718 ||| 0-3 ||| 19 668016 +a ||| achieve in getting ||| 1 0.0587624 1.49697e-06 1.59529e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| achieve in ||| 0.00704225 0.0587624 1.49697e-06 1.37289e-05 2.718 ||| 0-1 ||| 142 668016 +a ||| achieve not monetary union , but economic ||| 1 0.0003961 1.49697e-06 2.1491e-25 2.718 ||| 0-5 ||| 1 668016 +a ||| achieve not monetary union , but ||| 1 0.0003961 1.49697e-06 1.77172e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| achieve something in ||| 0.0769231 0.0587624 1.49697e-06 7.59892e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| achieve through ||| 0.0285714 0.230708 1.49697e-06 1.81637e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| achieve ||| 8.01154e-05 6.71e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 12482 668016 +a ||| achieved at ||| 0.0526316 0.204175 5.98788e-06 5.69412e-06 2.718 ||| 0-1 ||| 76 668016 +a ||| achieved in ||| 0.00144509 0.0587624 1.49697e-06 1.00518e-05 2.718 ||| 0-1 ||| 692 668016 +a ||| achieved on ||| 0.0121951 0.0782999 1.49697e-06 6.34663e-06 2.718 ||| 0-1 ||| 82 668016 +a ||| achieved through favourable treatment of ||| 0.333333 0.0188479 1.49697e-06 2.67344e-18 2.718 ||| 0-4 ||| 3 668016 +a ||| achieved to ||| 0.0147059 0.229811 1.49697e-06 5.86055e-05 2.718 ||| 0-1 ||| 68 668016 +a ||| achievement of the aforementioned aims to the ||| 1 0.229811 1.49697e-06 4.96932e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| achievement of the aforementioned aims to ||| 1 0.229811 1.49697e-06 8.09443e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| achievement of ||| 0.00490798 0.0188479 5.98788e-06 7.12842e-07 2.718 ||| 0-1 ||| 815 668016 +a ||| achievements have been here up until ||| 1 0.0268909 1.49697e-06 4.80893e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| achieving at ||| 0.166667 0.204175 1.49697e-06 2.25314e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| achieving success with ||| 1 0.0571592 1.49697e-06 6.56498e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| achieving ||| 0.000191608 0.000722 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 5219 668016 +a ||| acknowledged it as ||| 0.333333 0.0243476 1.49697e-06 1.74722e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| acknowledged to ||| 0.0526316 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| acquired the status of being ||| 0.5 0.0188479 1.49697e-06 7.52323e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| acquired the status of ||| 0.5 0.0188479 1.49697e-06 2.64363e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| acquired under ||| 0.166667 0.0384416 1.49697e-06 2.0425e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| across by ||| 1 0.0414362 1.49697e-06 4.04793e-06 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| across on this ||| 1 0.0782999 1.49697e-06 2.5149e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| across on ||| 0.25 0.0782999 1.49697e-06 3.89219e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| across successfully to ||| 0.5 0.229811 1.49697e-06 1.13933e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| across the board ||| 0.00413223 0.0490758 1.49697e-06 4.03234e-09 2.718 ||| 0-0 ||| 242 668016 +a ||| across the groups ||| 0.0833333 0.0490758 1.49697e-06 1.99956e-09 2.718 ||| 0-0 ||| 12 668016 +a ||| across the idea of the ||| 1 0.0490758 1.49697e-06 2.26013e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| across the idea of ||| 1 0.0490758 1.49697e-06 3.68148e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| across the idea ||| 0.5 0.0490758 1.49697e-06 6.77191e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| across the ||| 0.00185128 0.0490758 8.98182e-06 3.02048e-05 2.718 ||| 0-0 ||| 3241 668016 +a ||| across to ||| 0.419355 0.229811 1.94606e-05 3.59409e-05 2.718 ||| 0-1 ||| 31 668016 +a ||| across which ||| 0.0909091 0.0490758 1.49697e-06 4.17934e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| across ||| 0.00892992 0.0490758 8.83212e-05 0.000492 2.718 ||| 0-0 ||| 6607 668016 +a ||| act as support ||| 0.333333 0.0243476 1.49697e-06 5.09578e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| act as watchdogs ||| 0.5 0.0243476 1.49697e-06 1.0433e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| act as ||| 0.00328587 0.0243476 4.49091e-06 1.49043e-06 2.718 ||| 0-1 ||| 913 668016 +a ||| act in ||| 0.00310559 0.0587624 2.99394e-06 1.0208e-05 2.718 ||| 0-1 ||| 644 668016 +a ||| act of yours ||| 1 0.0188479 1.49697e-06 3.81929e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| act of ||| 0.00212766 0.0188479 1.49697e-06 5.02539e-06 2.718 ||| 0-1 ||| 470 668016 +a ||| act on ||| 0.00638978 0.0782999 2.99394e-06 6.44526e-06 2.718 ||| 0-1 ||| 313 668016 +a ||| act to ensure ||| 0.037037 0.229811 1.49697e-06 2.66871e-08 2.718 ||| 0-1 ||| 27 668016 +a ||| act to ||| 0.00558659 0.229811 1.49697e-06 5.95162e-05 2.718 ||| 0-1 ||| 179 668016 +a ||| acted as ||| 0.00684932 0.0243476 1.49697e-06 1.70185e-07 2.718 ||| 0-1 ||| 146 668016 +a ||| acted on ||| 0.0178571 0.0782999 1.49697e-06 7.35951e-07 2.718 ||| 0-1 ||| 56 668016 +a ||| acted out in ||| 0.5 0.0587624 1.49697e-06 4.46472e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| acted upon ||| 0.025974 0.19056 2.99394e-06 3.82471e-08 2.718 ||| 0-1 ||| 77 668016 +a ||| acting against ||| 0.0196078 0.05146 1.49697e-06 1.5337e-07 2.718 ||| 0-1 ||| 51 668016 +a ||| acting as ||| 0.0031746 0.0243476 1.49697e-06 5.17572e-07 2.718 ||| 0-1 ||| 315 668016 +a ||| acting at ||| 0.0384615 0.204175 1.49697e-06 2.00809e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| acting on a ||| 0.2 0.0782999 2.99394e-06 9.921e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| acting on ||| 0.0186335 0.0782999 4.49091e-06 2.2382e-06 2.718 ||| 0-1 ||| 161 668016 +a ||| acting to ||| 0.0238095 0.229811 1.49697e-06 2.06678e-05 2.718 ||| 0-1 ||| 42 668016 +a ||| acting within ||| 0.0666667 0.0123496 1.49697e-06 2.93466e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| acting ||| 0.00127959 0.000997 2.99394e-06 1.8e-06 2.718 ||| 0-0 ||| 1563 668016 +a ||| action - as I urge them ||| 1 0.0243476 1.49697e-06 6.20648e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| action - as I urge ||| 1 0.0243476 1.49697e-06 2.31378e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| action - as I ||| 1 0.0243476 1.49697e-06 7.07578e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| action - as ||| 0.5 0.0243476 1.49697e-06 1.00032e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| action against such ||| 0.25 0.05146 1.49697e-06 1.6258e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| action against ||| 0.010989 0.05146 7.48485e-06 7.85829e-07 2.718 ||| 0-1 ||| 455 668016 +a ||| action by ||| 0.00449438 0.0337966 2.99394e-06 2.48717e-06 2.718 ||| 0-1 ||| 445 668016 +a ||| action in ||| 0.00115875 0.0587624 1.49697e-06 1.81629e-05 2.718 ||| 0-1 ||| 863 668016 +a ||| action is taken away from ||| 1 0.0435582 1.49697e-06 1.97757e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| action may be taken to ||| 1 0.229811 1.49697e-06 1.31058e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| action on ||| 0.0046875 0.0782999 4.49091e-06 1.14679e-05 2.718 ||| 0-1 ||| 640 668016 +a ||| action plan for Ukraine , ||| 0.5 0.0683377 1.49697e-06 9.80781e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| action plan for Ukraine ||| 0.111111 0.0683377 1.49697e-06 8.22426e-15 2.718 ||| 0-2 ||| 9 668016 +a ||| action plan for ||| 0.00319489 0.0683377 1.49697e-06 8.14283e-10 2.718 ||| 0-2 ||| 313 668016 +a ||| action to follow through ||| 1 0.229811 1.49697e-06 4.82566e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| action to follow ||| 0.142857 0.229811 1.49697e-06 1.04837e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| action to ||| 0.00692641 0.229811 1.19758e-05 0.000105896 2.718 ||| 0-1 ||| 1155 668016 +a ||| actions in ||| 0.00722022 0.0587624 2.99394e-06 4.19376e-06 2.718 ||| 0-1 ||| 277 668016 +a ||| actions of ||| 0.00361664 0.0188479 2.99394e-06 2.06458e-06 2.718 ||| 0-1 ||| 553 668016 +a ||| actions to ||| 0.00288184 0.229811 1.49697e-06 2.44511e-05 2.718 ||| 0-1 ||| 347 668016 +a ||| actions will ||| 0.03125 0.0561595 1.49697e-06 9.83042e-07 2.718 ||| 0-1 ||| 32 668016 +a ||| active in ||| 0.00175747 0.0587624 1.49697e-06 2.42132e-06 2.718 ||| 0-1 ||| 569 668016 +a ||| active since ||| 0.125 0.0050746 1.49697e-06 6.3271e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| actively encourages ||| 0.0769231 0.19604 1.49697e-06 3.77663e-09 2.718 ||| 0-1 ||| 13 668016 +a ||| actively to ||| 0.0196078 0.229811 2.99394e-06 7.3213e-06 2.718 ||| 0-1 ||| 102 668016 +a ||| activities . I would like to ||| 1 0.229811 1.49697e-06 6.21875e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| activities at ||| 0.0285714 0.204175 1.49697e-06 2.70581e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| activities of ||| 0.00215054 0.0188479 2.99394e-06 2.35149e-06 2.718 ||| 0-1 ||| 930 668016 +a ||| activities on a ||| 0.166667 0.0782999 1.49697e-06 1.33681e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| activities on ||| 0.0126582 0.0782999 1.49697e-06 3.01588e-06 2.718 ||| 0-1 ||| 79 668016 +a ||| activity by ||| 0.0416667 0.0337966 1.49697e-06 4.40994e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| acts after ||| 1 0.0341027 1.49697e-06 4.77277e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| acts in ||| 0.0123457 0.0587624 1.49697e-06 3.41869e-06 2.718 ||| 0-1 ||| 81 668016 +a ||| actual fact , try to act ||| 0.25 0.229811 1.49697e-06 4.63302e-16 2.718 ||| 0-4 ||| 4 668016 +a ||| actual fact , try to ||| 0.25 0.229811 1.49697e-06 2.72691e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| actual improvements are to be made ||| 1 0.229811 1.49697e-06 4.00004e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| actual improvements are to be ||| 1 0.229811 1.49697e-06 1.90951e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| actual improvements are to ||| 1 0.229811 1.49697e-06 1.05364e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| actual way in which we have ||| 1 0.0587624 1.49697e-06 2.1614e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| actual way in which we ||| 1 0.0587624 1.49697e-06 1.80722e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| actual way in which ||| 0.5 0.0587624 1.49697e-06 1.59194e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| actual way in ||| 0.333333 0.0587624 1.49697e-06 1.87407e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| actually about ||| 0.0222222 0.0526361 1.49697e-06 2.08022e-06 2.718 ||| 0-1 ||| 45 668016 +a ||| actually be retained by ||| 1 0.0337966 1.49697e-06 5.7858e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| actually hamper security ||| 0.5 0.0179856 1.49697e-06 1.55138e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| actually hamper ||| 0.5 0.0179856 1.49697e-06 1.89888e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| actually in ||| 0.0322581 0.0587624 2.99394e-06 2.48021e-05 2.718 ||| 0-1 ||| 62 668016 +a ||| actually is as it ||| 1 0.0243476 1.49697e-06 2.01828e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| actually is as ||| 1 0.0243476 1.49697e-06 1.13494e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| actually liable to ||| 0.25 0.229811 1.49697e-06 2.44382e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| actually look at ||| 0.166667 0.204175 1.49697e-06 4.09552e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| actually looking at ||| 0.5 0.10245 1.49697e-06 5.19843e-11 2.718 ||| 0-1 0-2 ||| 2 668016 +a ||| actually prompted ||| 1 0.159696 1.49697e-06 3.16618e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| actually then ||| 0.5 0.0252938 1.49697e-06 3.51912e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| actually to be made ||| 1 0.229811 1.49697e-06 5.48974e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| actually to be ||| 0.0588235 0.229811 1.49697e-06 2.62065e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| actually to ||| 0.020202 0.229811 2.99394e-06 0.000144605 2.718 ||| 0-1 ||| 99 668016 +a ||| acute in the context of ||| 0.5 0.0587624 1.49697e-06 2.52959e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| acute in the context ||| 0.5 0.0587624 1.49697e-06 4.65306e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| acute in the ||| 0.2 0.0587624 1.49697e-06 3.46726e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| acute in ||| 0.0384615 0.0587624 1.49697e-06 5.64775e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| adamant in ||| 0.166667 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| adapt their economies and to ||| 1 0.229811 1.49697e-06 3.47472e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| adapt to ||| 0.00355872 0.229811 2.99394e-06 2.13684e-06 2.718 ||| 0-1 ||| 562 668016 +a ||| adapted to ||| 0.00247525 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-1 ||| 404 668016 +a ||| adapted ||| 0.00113636 0.0009872 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 880 668016 +a ||| adapting to ||| 0.00483092 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 207 668016 +a ||| add , at ||| 1 0.204175 1.49697e-06 3.32828e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| add impetus to ||| 0.5 0.229811 1.49697e-06 3.41824e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| add something to ||| 0.0625 0.229811 1.49697e-06 1.58991e-08 2.718 ||| 0-2 ||| 16 668016 +a ||| add to the ||| 0.00490196 0.229811 1.49697e-06 1.76346e-06 2.718 ||| 0-1 ||| 204 668016 +a ||| add to ||| 0.0196464 0.229811 1.49697e-05 2.87247e-05 2.718 ||| 0-1 ||| 509 668016 +a ||| add up to ||| 0.025641 0.229811 1.49697e-06 9.79657e-08 2.718 ||| 0-2 ||| 39 668016 +a ||| added at ||| 0.111111 0.204175 1.49697e-06 2.42672e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| added to the ||| 0.00387597 0.229811 1.49697e-06 1.53335e-06 2.718 ||| 0-1 ||| 258 668016 +a ||| added to ||| 0.0281385 0.229811 1.94606e-05 2.49765e-05 2.718 ||| 0-1 ||| 462 668016 +a ||| addiction ||| 0.00409836 0.0018215 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 244 668016 +a ||| adding an international dimension to ||| 0.5 0.229811 1.49697e-06 5.50107e-17 2.718 ||| 0-4 ||| 2 668016 +a ||| adding to ||| 0.00671141 0.229811 1.49697e-06 5.04434e-06 2.718 ||| 0-1 ||| 149 668016 +a ||| addition , they are prepared to accept ||| 1 0.229811 1.49697e-06 1.91538e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| addition , they are prepared to ||| 1 0.229811 1.49697e-06 1.76859e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| addition to ||| 0.0210035 0.229811 2.69455e-05 3.45397e-05 2.718 ||| 0-1 ||| 857 668016 +a ||| additional time you have granted me to ||| 1 0.229811 1.49697e-06 5.72924e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| additional to ||| 0.0217391 0.229811 1.49697e-06 1.8531e-05 2.718 ||| 0-1 ||| 46 668016 +a ||| additionally to ||| 0.5 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| additionally ||| 0.0041841 0.0068259 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 239 668016 +a ||| address , ||| 0.00909091 0.0257046 1.49697e-06 2.1442e-05 2.718 ||| 0-0 ||| 110 668016 +a ||| address . ||| 0.00787402 0.0257046 1.49697e-06 5.44614e-07 2.718 ||| 0-0 ||| 127 668016 +a ||| address a particular word of thanks to ||| 1 0.229811 1.49697e-06 3.26832e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| address is that ||| 0.0833333 0.0257046 1.49697e-06 9.47919e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| address is ||| 0.0178571 0.0257046 1.49697e-06 5.63513e-06 2.718 ||| 0-0 ||| 56 668016 +a ||| address myself to ||| 0.0909091 0.229811 1.49697e-06 4.15621e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| address on ||| 0.0526316 0.0782999 1.49697e-06 2.89449e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| address the ||| 0.000590319 0.0004654 1.49697e-06 1.1693e-07 2.718 ||| 0-1 ||| 1694 668016 +a ||| address to ||| 0.0444444 0.229811 2.99394e-06 2.6728e-05 2.718 ||| 0-1 ||| 45 668016 +a ||| address ||| 0.00247852 0.0257046 2.24546e-05 0.0001798 2.718 ||| 0-0 ||| 6052 668016 +a ||| addressed by ||| 0.00754717 0.0178193 2.99394e-06 6.00608e-08 2.718 ||| 0-0 0-1 ||| 265 668016 +a ||| addressed in ||| 0.0027933 0.0587624 1.49697e-06 3.22042e-06 2.718 ||| 0-1 ||| 358 668016 +a ||| addressed to ||| 0.0280899 0.229811 1.49697e-05 1.87762e-05 2.718 ||| 0-1 ||| 356 668016 +a ||| addressed ||| 0.000567698 0.001842 2.99394e-06 7.3e-06 2.718 ||| 0-0 ||| 3523 668016 +a ||| addresses in ||| 0.0555556 0.0587624 1.49697e-06 3.00412e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| addresses ||| 0.00787402 0.0621866 1.19758e-05 5.66e-05 2.718 ||| 0-0 ||| 1016 668016 +a ||| addressing more ||| 0.5 0.133226 1.49697e-06 6.8785e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| addressing ||| 0.00560652 0.133226 1.64667e-05 0.0003012 2.718 ||| 0-0 ||| 1962 668016 +a ||| adequate for ||| 0.0178571 0.0683377 1.49697e-06 9.13843e-07 2.718 ||| 0-1 ||| 56 668016 +a ||| adhere to ||| 0.00767263 0.229811 4.49091e-06 3.53805e-06 2.718 ||| 0-1 ||| 391 668016 +a ||| adhered to ||| 0.00403226 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-1 ||| 248 668016 +a ||| adherence to ||| 0.00458716 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-1 ||| 218 668016 +a ||| adjacent to ||| 0.0322581 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| adjust to ||| 0.00862069 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 116 668016 +a ||| adjusting to ||| 0.0285714 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 35 668016 +a ||| adjustments to ||| 0.011236 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-1 ||| 89 668016 +a ||| administering them lies with ||| 0.5 0.0571592 1.49697e-06 4.95747e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| administration of ||| 0.00235849 0.0188479 1.49697e-06 5.97486e-07 2.718 ||| 0-1 ||| 424 668016 +a ||| administrative bodies in ||| 0.5 0.0587624 1.49697e-06 4.91445e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| admissible on ||| 0.333333 0.0782999 1.49697e-06 1.51742e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| admittance to ||| 0.333333 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| admitted to ||| 0.0165289 0.229811 2.99394e-06 2.9075e-06 2.718 ||| 0-1 ||| 121 668016 +a ||| admitting ||| 0.0176471 0.142222 4.49091e-06 2.92e-05 2.718 ||| 0-0 ||| 170 668016 +a ||| adopt for ||| 0.0769231 0.0683377 1.49697e-06 3.83224e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| adopt in ||| 0.0138889 0.0587624 1.49697e-06 6.24858e-06 2.718 ||| 0-1 ||| 72 668016 +a ||| adopted at ||| 0.00936768 0.204175 5.98788e-06 6.94322e-06 2.718 ||| 0-1 ||| 427 668016 +a ||| adopted by Parliament at first ||| 0.0277778 0.204175 1.49697e-06 1.12654e-14 2.718 ||| 0-3 ||| 36 668016 +a ||| adopted by Parliament at ||| 0.0196078 0.204175 1.49697e-06 2.09238e-11 2.718 ||| 0-3 ||| 51 668016 +a ||| adopted by ||| 0.000931099 0.0337966 4.49091e-06 1.67841e-06 2.718 ||| 0-1 ||| 3222 668016 +a ||| adopted in a fit of ||| 0.5 0.0587624 1.49697e-06 9.56954e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| adopted in a fit ||| 0.5 0.0587624 1.49697e-06 1.76027e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| adopted in a ||| 0.04 0.0587624 1.49697e-06 5.43294e-07 2.718 ||| 0-1 ||| 25 668016 +a ||| adopted in ||| 0.00172712 0.0587624 4.49091e-06 1.22568e-05 2.718 ||| 0-1 ||| 1737 668016 +a ||| adopted reluctantly , in ||| 1 0.0587624 1.49697e-06 1.02318e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| adopted to ||| 0.019802 0.229811 2.99394e-06 7.14615e-05 2.718 ||| 0-1 ||| 101 668016 +a ||| adopting for ||| 0.5 0.0683377 1.49697e-06 1.80189e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| adopting it at ||| 0.333333 0.204175 1.49697e-06 2.95971e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| adoption of ||| 0.0014339 0.0188479 7.48485e-06 1.36357e-06 2.718 ||| 0-1 ||| 3487 668016 +a ||| adoption to ||| 0.0769231 0.229811 1.49697e-06 1.61489e-05 2.718 ||| 0-1 ||| 13 668016 +a ||| adrift in ||| 0.333333 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| advance of ||| 0.0105263 0.0188479 4.49091e-06 1.04412e-06 2.718 ||| 0-1 ||| 285 668016 +a ||| advance to ||| 0.037037 0.229811 1.49697e-06 1.23656e-05 2.718 ||| 0-1 ||| 27 668016 +a ||| advanced as a ||| 0.333333 0.0243476 1.49697e-06 5.75489e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| advanced as ||| 0.0833333 0.0243476 1.49697e-06 1.29832e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| advantage accruing to himself or herself ||| 1 0.229811 1.49697e-06 2.34872e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| advantage accruing to himself or ||| 1 0.229811 1.49697e-06 1.05324e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| advantage accruing to himself ||| 1 0.229811 1.49697e-06 9.21226e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| advantage accruing to ||| 1 0.229811 1.49697e-06 1.24322e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| advantage at the ||| 1 0.204175 1.49697e-06 1.05937e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| advantage at ||| 0.333333 0.204175 1.49697e-06 1.72559e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| advantage involved in ||| 0.5 0.0587624 1.49697e-06 1.05337e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| advantage of ||| 0.00246002 0.0188479 2.99394e-06 1.49963e-06 2.718 ||| 0-1 ||| 813 668016 +a ||| advantage to ||| 0.0172414 0.229811 1.49697e-06 1.77603e-05 2.718 ||| 0-1 ||| 58 668016 +a ||| advantages in ||| 0.0153846 0.0587624 1.49697e-06 4.56627e-07 2.718 ||| 0-1 ||| 65 668016 +a ||| adverse effect on ||| 0.0235294 0.0782999 2.99394e-06 7.34008e-11 2.718 ||| 0-2 ||| 85 668016 +a ||| adversely affect ||| 0.0108696 0.330659 1.49697e-06 7.9e-09 2.718 ||| 0-1 ||| 92 668016 +a ||| adversely affected ||| 0.0128205 0.0557198 1.49697e-06 1.7205e-09 2.718 ||| 0-1 ||| 78 668016 +a ||| advice from ||| 0.0169492 0.0435582 1.49697e-06 1.29578e-07 2.718 ||| 0-1 ||| 59 668016 +a ||| advice of ||| 0.00793651 0.0188479 1.49697e-06 5.32413e-07 2.718 ||| 0-1 ||| 126 668016 +a ||| advice to give them ||| 1 0.229811 1.49697e-06 1.02497e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| advice to give ||| 0.2 0.229811 1.49697e-06 3.82109e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| advice to ||| 0.0131579 0.229811 1.49697e-06 6.30543e-06 2.718 ||| 0-1 ||| 76 668016 +a ||| advise how ||| 1 0.221649 1.49697e-06 5.62688e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| advise ||| 0.00704225 0.221649 2.99394e-06 0.000157 2.718 ||| 0-0 ||| 284 668016 +a ||| advised to check ||| 1 0.229811 1.49697e-06 1.15768e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| advised to ||| 0.0634921 0.229811 5.98788e-06 3.78326e-06 2.718 ||| 0-1 ||| 63 668016 +a ||| adviser to ||| 0.0555556 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| advocated earlier ||| 0.125 0.031057 1.49697e-06 1.29563e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| affairs at ||| 0.1 0.204175 1.49697e-06 4.16593e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| affairs in respect of ||| 0.5 0.0587624 1.49697e-06 1.72953e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| affairs in respect ||| 0.25 0.0587624 1.49697e-06 3.18138e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| affairs in ||| 0.0555556 0.0587624 5.98788e-06 7.3541e-06 2.718 ||| 0-1 ||| 72 668016 +a ||| affairs to ||| 0.0714286 0.229811 1.49697e-06 4.28769e-05 2.718 ||| 0-1 ||| 14 668016 +a ||| affect how ||| 0.5 0.330659 1.49697e-06 5.66272e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| affect its image ||| 0.5 0.330659 1.49697e-06 2.99386e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| affect its ||| 0.0454545 0.330659 1.49697e-06 2.25103e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| affect the actions of ||| 1 0.330659 1.49697e-06 3.68073e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| affect the actions ||| 1 0.330659 1.49697e-06 6.77053e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| affect the ||| 0.00160772 0.330659 1.49697e-06 9.6999e-05 2.718 ||| 0-0 ||| 622 668016 +a ||| affect them that much in the ||| 1 0.0587624 1.49697e-06 3.90903e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| affect them that much in ||| 1 0.0587624 1.49697e-06 6.36735e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| affect them ||| 0.0123457 0.330659 1.49697e-06 4.23819e-06 2.718 ||| 0-0 ||| 81 668016 +a ||| affect up to 24 % of European ||| 1 0.330659 1.49697e-06 4.2594e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| affect up to 24 % of ||| 1 0.330659 1.49697e-06 1.27378e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| affect up to 24 % ||| 1 0.330659 1.49697e-06 2.34306e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| affect up to 24 ||| 1 0.330659 1.49697e-06 4.11786e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| affect up to ||| 1 0.330659 1.49697e-06 4.7882e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| affect up ||| 1 0.330659 1.49697e-06 5.38859e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| affect water ||| 0.166667 0.330659 1.49697e-06 8.9902e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| affect ||| 0.0189702 0.330659 6.28727e-05 0.00158 2.718 ||| 0-0 ||| 2214 668016 +a ||| affected and ||| 0.00671141 0.0286535 1.49697e-06 6.63941e-07 2.718 ||| 0-0 0-1 ||| 149 668016 +a ||| affected areas and to ||| 1 0.115699 1.49697e-06 1.0304e-11 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| affected by ||| 0.00383509 0.0337966 1.19758e-05 5.47952e-07 2.718 ||| 0-1 ||| 2086 668016 +a ||| affected in any way ||| 0.0909091 0.0587624 1.49697e-06 1.30437e-11 2.718 ||| 0-1 ||| 11 668016 +a ||| affected in any ||| 0.5 0.0587624 1.49697e-06 6.05106e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| affected in ||| 0.0105263 0.0587624 1.49697e-06 4.00149e-06 2.718 ||| 0-1 ||| 95 668016 +a ||| affected ||| 0.00528169 0.0557198 4.04182e-05 0.0003441 2.718 ||| 0-0 ||| 5112 668016 +a ||| affecting other people ||| 1 0.268066 1.49697e-06 1.02308e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| affecting other ||| 0.142857 0.268066 1.49697e-06 1.16232e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| affecting the running ||| 0.333333 0.268066 1.49697e-06 4.20266e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| affecting the ||| 0.0022779 0.268066 1.49697e-06 5.50807e-05 2.718 ||| 0-0 ||| 439 668016 +a ||| affecting these ||| 0.166667 0.268066 1.49697e-06 9.30486e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| affecting ||| 0.0128465 0.268066 2.84424e-05 0.0008972 2.718 ||| 0-0 ||| 1479 668016 +a ||| affects women ||| 0.030303 0.380413 1.49697e-06 1.45732e-07 2.718 ||| 0-0 ||| 33 668016 +a ||| affects ||| 0.0135484 0.380413 3.14364e-05 0.0012267 2.718 ||| 0-0 ||| 1550 668016 +a ||| affirmed in relation to ||| 1 0.229811 1.49697e-06 2.0067e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| afford every assistance to ||| 1 0.229811 1.49697e-06 7.95962e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| afford to provide on the ||| 0.5 0.0782999 1.49697e-06 1.72012e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| afford to provide on ||| 0.5 0.0782999 1.49697e-06 2.80188e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| afford to rest ||| 0.0909091 0.229811 1.49697e-06 7.44167e-10 2.718 ||| 0-1 ||| 11 668016 +a ||| afford to ||| 0.0083682 0.229811 5.98788e-06 9.84347e-06 2.718 ||| 0-1 ||| 478 668016 +a ||| afforded to ||| 0.0151515 0.229811 1.49697e-06 5.04434e-06 2.718 ||| 0-1 ||| 66 668016 +a ||| affront to ||| 0.00990099 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 101 668016 +a ||| aforementioned aims to the ||| 1 0.229811 1.49697e-06 6.17814e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| aforementioned aims to ||| 1 0.229811 1.49697e-06 1.00635e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| aforesaid guidelines into one ||| 1 0.107578 1.49697e-06 5.90408e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| aforesaid guidelines into ||| 1 0.107578 1.49697e-06 1.41653e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| afraid to ||| 0.015873 0.229811 2.99394e-06 8.05694e-06 2.718 ||| 0-1 ||| 126 668016 +a ||| after all , also launched for ||| 0.5 0.0683377 1.49697e-06 9.40377e-16 2.718 ||| 0-5 ||| 2 668016 +a ||| after all , to ||| 0.0909091 0.229811 1.49697e-06 5.34965e-08 2.718 ||| 0-3 ||| 11 668016 +a ||| after all , ||| 0.00103164 0.0341027 4.49091e-06 4.72686e-07 2.718 ||| 0-0 ||| 2908 668016 +a ||| after all to ||| 0.125 0.229811 1.49697e-06 4.4859e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| after all via a side entrance , ||| 1 0.0341027 1.49697e-06 1.80677e-22 2.718 ||| 0-0 ||| 1 668016 +a ||| after all via a side entrance ||| 1 0.0341027 1.49697e-06 1.51506e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| after all via a side ||| 1 0.0341027 1.49697e-06 1.08218e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| after all via a ||| 1 0.0341027 1.49697e-06 4.93696e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| after all via ||| 1 0.0341027 1.49697e-06 1.11379e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| after all ||| 0.00234192 0.0341027 1.34727e-05 3.96367e-06 2.718 ||| 0-0 ||| 3843 668016 +a ||| after another , ||| 0.0277778 0.0341027 1.49697e-06 2.41174e-08 2.718 ||| 0-0 ||| 36 668016 +a ||| after another ||| 0.00826446 0.0341027 1.49697e-06 2.02235e-07 2.718 ||| 0-0 ||| 121 668016 +a ||| after as a ||| 1 0.0243476 1.49697e-06 1.05377e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| after as ||| 0.5 0.0243476 1.49697e-06 2.37732e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| after being ||| 0.00854701 0.0341027 1.49697e-06 2.38706e-06 2.718 ||| 0-0 ||| 117 668016 +a ||| after characters from ||| 1 0.0435582 1.49697e-06 2.14596e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| after critical ||| 1 0.0341027 1.49697e-06 2.11378e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| after listening to ||| 0.025 0.229811 1.49697e-06 1.19614e-09 2.718 ||| 0-2 ||| 40 668016 +a ||| after school at ||| 0.5 0.0341027 1.49697e-06 7.3409e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| after school ||| 0.166667 0.0341027 1.49697e-06 1.75309e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| after the event ||| 0.00925926 0.0341027 1.49697e-06 5.37612e-09 2.718 ||| 0-0 ||| 108 668016 +a ||| after the fact - ||| 0.25 0.0341027 1.49697e-06 5.69005e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| after the fact ||| 0.0625 0.0341027 1.49697e-06 1.50846e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| after the ||| 0.00285426 0.0341027 2.54485e-05 5.14954e-05 2.718 ||| 0-0 ||| 5956 668016 +a ||| after their child was ||| 0.333333 0.0341027 1.49697e-06 1.00825e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| after their child ||| 0.333333 0.0341027 1.49697e-06 3.21816e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| after their ||| 0.0108696 0.0341027 1.49697e-06 9.72253e-07 2.718 ||| 0-0 ||| 92 668016 +a ||| after these five years we should ||| 0.25 0.0341027 1.49697e-06 1.47465e-19 2.718 ||| 0-0 ||| 4 668016 +a ||| after these five years we ||| 0.25 0.0341027 1.49697e-06 3.32803e-17 2.718 ||| 0-0 ||| 4 668016 +a ||| after these five years ||| 0.166667 0.0341027 1.49697e-06 2.93159e-15 2.718 ||| 0-0 ||| 6 668016 +a ||| after these five ||| 0.166667 0.0341027 1.49697e-06 1.72244e-11 2.718 ||| 0-0 ||| 6 668016 +a ||| after these ||| 0.0166667 0.0341027 1.49697e-06 8.69919e-07 2.718 ||| 0-0 ||| 60 668016 +a ||| after year ||| 0.00510204 0.0341027 1.49697e-06 2.09197e-07 2.718 ||| 0-0 ||| 196 668016 +a ||| after ||| 0.00484578 0.0341027 0.000249994 0.0008388 2.718 ||| 0-0 ||| 34463 668016 +a ||| aftermath to ||| 0.333333 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| afternoon , to ||| 0.333333 0.229811 1.49697e-06 4.05219e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| afternoon at ||| 0.04 0.204175 1.49697e-06 3.30143e-07 2.718 ||| 0-1 ||| 25 668016 +a ||| afternoon for ||| 0.166667 0.0683377 1.49697e-06 3.5743e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| afternoons , when not many people are ||| 1 0.0055468 1.49697e-06 2.31692e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| afternoons , when not many people ||| 1 0.0055468 1.49697e-06 1.52703e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| afternoons , when not many ||| 1 0.0055468 1.49697e-06 1.73487e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| afternoons , when not ||| 1 0.0055468 1.49697e-06 5.05351e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| afternoons , when ||| 0.5 0.0055468 1.49697e-06 1.48019e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| afterwards , ||| 0.0070922 0.0599455 1.49697e-06 4.79404e-06 2.718 ||| 0-0 ||| 141 668016 +a ||| afterwards ||| 0.00771605 0.0599455 7.48485e-06 4.02e-05 2.718 ||| 0-0 ||| 648 668016 +a ||| again ] ||| 1 0.0700825 1.49697e-06 8.67082e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| again ] ’ . ||| 1 0.0700825 1.49697e-06 4.57543e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| again ] ’ ||| 1 0.0700825 1.49697e-06 1.51054e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| again , " As for ||| 0.5 0.0683377 1.49697e-06 3.67079e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| again , and if we want ||| 1 0.0008079 1.49697e-06 1.5307e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| again , and if we ||| 1 0.0008079 1.49697e-06 3.27423e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| again , do ||| 1 0.0700825 1.49697e-06 9.49792e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| again , loud and ||| 1 0.0700825 1.49697e-06 3.60169e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| again , loud ||| 1 0.0700825 1.49697e-06 2.87539e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| again , to correct ||| 0.333333 0.229811 1.49697e-06 8.69708e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| again , to ||| 0.0909091 0.229811 2.99394e-06 2.41585e-05 2.718 ||| 0-2 ||| 22 668016 +a ||| again , we ||| 0.0222222 0.0700825 1.49697e-06 3.13868e-06 2.718 ||| 0-0 ||| 45 668016 +a ||| again , ||| 0.00673725 0.0700825 2.09576e-05 0.00027648 2.718 ||| 0-0 ||| 2078 668016 +a ||| again . ||| 0.00102881 0.0700825 1.49697e-06 7.02243e-06 2.718 ||| 0-0 ||| 972 668016 +a ||| again and again ||| 0.00404858 0.0015873 1.49697e-06 6.45284e-10 2.718 ||| 0-1 ||| 247 668016 +a ||| again and ||| 0.0151899 0.0700825 8.98182e-06 2.904e-05 2.718 ||| 0-0 ||| 395 668016 +a ||| again as ||| 0.016129 0.0243476 1.49697e-06 5.07308e-06 2.718 ||| 0-1 ||| 62 668016 +a ||| again at ||| 0.0107527 0.0700825 2.99394e-06 9.70807e-06 2.718 ||| 0-0 ||| 186 668016 +a ||| again back on track ||| 0.333333 0.0782999 1.49697e-06 5.84322e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| again back on ||| 0.333333 0.0782999 1.49697e-06 1.47556e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| again be overcome ||| 1 0.0700825 1.49697e-06 7.85702e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| again be raised for ||| 1 0.0683377 1.49697e-06 4.44891e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| again be ||| 0.0210526 0.0700825 2.99394e-06 4.20161e-05 2.718 ||| 0-0 ||| 95 668016 +a ||| again both to ||| 1 0.229811 1.49697e-06 3.35573e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| again by ||| 0.0149254 0.0700825 1.49697e-06 1.21718e-05 2.718 ||| 0-0 ||| 67 668016 +a ||| again comes up ||| 0.5 0.0700825 1.49697e-06 3.16118e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| again comes ||| 0.333333 0.0700825 1.49697e-06 9.26896e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| again confirming ||| 0.333333 0.0700825 1.49697e-06 2.55024e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| again for ||| 0.0097561 0.0700825 2.99394e-06 1.78185e-05 2.718 ||| 0-0 ||| 205 668016 +a ||| again going to ||| 0.2 0.0700825 1.49697e-06 1.76302e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| again going ||| 0.142857 0.0700825 1.49697e-06 1.98409e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| again in ||| 0.00729927 0.0587624 5.98788e-06 3.47457e-05 2.718 ||| 0-1 ||| 548 668016 +a ||| again like to ||| 0.0625 0.229811 1.49697e-06 3.59761e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| again of ||| 0.1 0.0700825 2.99394e-06 0.000126037 2.718 ||| 0-0 ||| 20 668016 +a ||| again on the fact ||| 0.5 0.0782999 1.49697e-06 3.94525e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| again on the ||| 0.0140845 0.0782999 1.49697e-06 1.34682e-06 2.718 ||| 0-1 ||| 71 668016 +a ||| again on ||| 0.015625 0.0782999 4.49091e-06 2.19382e-05 2.718 ||| 0-1 ||| 192 668016 +a ||| again struck ||| 0.333333 0.0700825 1.49697e-06 5.9351e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| again to ||| 0.0322581 0.229811 1.64667e-05 0.000202579 2.718 ||| 0-1 ||| 341 668016 +a ||| again unless ||| 0.2 0.219585 1.49697e-06 7.3739e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| again ||| 0.0124366 0.0700825 0.000260473 0.0023184 2.718 ||| 0-0 ||| 13991 668016 +a ||| against , ||| 0.00316456 0.05146 1.49697e-06 0.000310003 2.718 ||| 0-0 ||| 316 668016 +a ||| against Colonel ||| 0.5 0.05146 1.49697e-06 1.0398e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| against Europe ||| 0.0166667 0.05146 1.49697e-06 1.31535e-06 2.718 ||| 0-0 ||| 60 668016 +a ||| against a ||| 0.00469484 0.05146 5.98788e-06 0.000115225 2.718 ||| 0-0 ||| 852 668016 +a ||| against competition in ||| 1 0.036756 1.49697e-06 1.40566e-10 2.718 ||| 0-0 0-1 0-2 ||| 1 668016 +a ||| against crime ||| 0.00460829 0.05146 1.49697e-06 1.09439e-07 2.718 ||| 0-0 ||| 217 668016 +a ||| against each other ||| 0.0126582 0.05146 1.49697e-06 9.453e-10 2.718 ||| 0-0 ||| 79 668016 +a ||| against each ||| 0.011236 0.05146 1.49697e-06 7.2968e-07 2.718 ||| 0-0 ||| 89 668016 +a ||| against him ||| 0.0172414 0.05146 2.99394e-06 8.334e-07 2.718 ||| 0-0 ||| 116 668016 +a ||| against holding ||| 0.25 0.0280121 1.49697e-06 2.5995e-08 2.718 ||| 0-0 0-1 ||| 4 668016 +a ||| against human ||| 0.25 0.05146 1.49697e-06 3.20778e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| against it ||| 0.0037831 0.05146 4.49091e-06 4.62274e-05 2.718 ||| 0-0 ||| 793 668016 +a ||| against not taking action ||| 1 0.05146 1.49697e-06 1.14023e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| against not taking ||| 1 0.05146 1.49697e-06 3.77186e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| against not ||| 0.333333 0.05146 1.49697e-06 8.87495e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| against one another ||| 0.0454545 0.05146 1.49697e-06 2.61225e-09 2.718 ||| 0-0 ||| 22 668016 +a ||| against one ||| 0.0131579 0.05146 1.49697e-06 1.08347e-05 2.718 ||| 0-0 ||| 76 668016 +a ||| against such a development ||| 0.333333 0.05146 1.49697e-06 3.9215e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| against such a ||| 0.0208333 0.05146 1.49697e-06 2.38389e-07 2.718 ||| 0-0 ||| 48 668016 +a ||| against such ||| 0.0123457 0.05146 2.99394e-06 5.37811e-06 2.718 ||| 0-0 ||| 162 668016 +a ||| against terrorism , ||| 0.00209644 0.05146 1.49697e-06 8.02907e-09 2.718 ||| 0-0 ||| 477 668016 +a ||| against terrorism ||| 0.000502008 0.05146 1.49697e-06 6.7327e-08 2.718 ||| 0-0 ||| 1992 668016 +a ||| against that - ||| 0.5 0.05146 1.49697e-06 1.64945e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| against that ||| 0.00746269 0.05146 2.99394e-06 4.37277e-05 2.718 ||| 0-0 ||| 268 668016 +a ||| against the odds ||| 0.1 0.05146 1.49697e-06 1.43629e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| against the report ||| 0.00102354 0.05146 1.49697e-06 6.54151e-08 2.718 ||| 0-0 ||| 977 668016 +a ||| against the ||| 0.00118297 0.05146 1.79636e-05 0.000159588 2.718 ||| 0-0 ||| 10144 668016 +a ||| against this ||| 0.000364166 0.05146 1.49697e-06 1.67964e-05 2.718 ||| 0-0 ||| 2746 668016 +a ||| against trafficking ||| 0.00793651 0.05146 1.49697e-06 3.0934e-08 2.718 ||| 0-0 ||| 126 668016 +a ||| against two peoples in ||| 0.5 0.0587624 1.49697e-06 4.74454e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| against went on for a ||| 0.5 0.0782999 1.49697e-06 1.96425e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| against went on for ||| 0.5 0.0782999 1.49697e-06 4.43139e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| against went on ||| 0.5 0.0782999 1.49697e-06 5.76576e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| against ||| 0.0148144 0.05146 0.00111225 0.0025995 2.718 ||| 0-0 ||| 50154 668016 +a ||| age of ||| 0.0017452 0.0188479 1.49697e-06 1.81908e-06 2.718 ||| 0-1 ||| 573 668016 +a ||| age to the ||| 0.5 0.229811 1.49697e-06 1.3226e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| age to those of ||| 0.5 0.229811 1.49697e-06 8.48061e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| age to those ||| 0.5 0.229811 1.49697e-06 1.55997e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| age to ||| 0.097561 0.229811 5.98788e-06 2.15435e-05 2.718 ||| 0-1 ||| 41 668016 +a ||| agency to ||| 0.015625 0.229811 1.49697e-06 5.67489e-06 2.718 ||| 0-1 ||| 64 668016 +a ||| agenda at the ||| 0.0322581 0.204175 1.49697e-06 2.07487e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| agenda at ||| 0.0135135 0.204175 1.49697e-06 3.37972e-06 2.718 ||| 0-1 ||| 74 668016 +a ||| agenda for ||| 0.00120192 0.0683377 1.49697e-06 3.65906e-06 2.718 ||| 0-1 ||| 832 668016 +a ||| agenda to the ||| 0.142857 0.229811 1.49697e-06 2.13551e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| agenda to ||| 0.027027 0.229811 1.49697e-06 3.47849e-05 2.718 ||| 0-1 ||| 37 668016 +a ||| aggravated by ||| 0.0153846 0.0337966 1.49697e-06 3.291e-09 2.718 ||| 0-1 ||| 65 668016 +a ||| ago to ||| 0.0344828 0.229811 1.49697e-06 3.85682e-05 2.718 ||| 0-1 ||| 29 668016 +a ||| agree entirely with ||| 0.0188679 0.0571592 1.49697e-06 1.7584e-10 2.718 ||| 0-2 ||| 53 668016 +a ||| agree in the ||| 0.0666667 0.0587624 1.49697e-06 5.86852e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| agree in ||| 0.00813008 0.0587624 1.49697e-06 9.55913e-06 2.718 ||| 0-1 ||| 123 668016 +a ||| agree on ||| 0.00197239 0.0782999 5.98788e-06 6.03555e-06 2.718 ||| 0-1 ||| 2028 668016 +a ||| agree to abide by ||| 0.25 0.0337966 1.49697e-06 8.37468e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| agree to calculate ||| 1 0.229811 1.49697e-06 3.90131e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| agree to put ||| 0.1 0.229811 1.49697e-06 6.14512e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| agree to the ||| 0.00440529 0.229811 1.49697e-06 3.42155e-06 2.718 ||| 0-1 ||| 227 668016 +a ||| agree to ||| 0.00849257 0.229811 1.79636e-05 5.5733e-05 2.718 ||| 0-1 ||| 1413 668016 +a ||| agree upon ||| 0.0151515 0.19056 1.49697e-06 3.13666e-07 2.718 ||| 0-1 ||| 66 668016 +a ||| agree with the various speakers that the ||| 1 0.0571592 1.49697e-06 5.25226e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| agree with the various speakers that ||| 1 0.0571592 1.49697e-06 8.55531e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| agree with the various speakers ||| 1 0.0571592 1.49697e-06 5.0859e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| agree with the various ||| 0.333333 0.0571592 1.49697e-06 2.51777e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| agree with the ||| 0.000206271 0.0571592 1.49697e-06 1.63068e-07 2.718 ||| 0-1 ||| 4848 668016 +a ||| agree with what was said in the ||| 1 0.0587624 1.49697e-06 6.78489e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| agree with what was said in ||| 1 0.0587624 1.49697e-06 1.10518e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| agree with you , ||| 0.008 0.0571592 1.49697e-06 1.02273e-09 2.718 ||| 0-1 ||| 125 668016 +a ||| agree with you ||| 0.00108814 0.0571592 1.49697e-06 8.57604e-09 2.718 ||| 0-1 ||| 919 668016 +a ||| agree with ||| 0.000620059 0.0571592 1.19758e-05 2.65619e-06 2.718 ||| 0-1 ||| 12902 668016 +a ||| agreed at New Year ||| 0.333333 0.204175 1.49697e-06 1.01223e-16 2.718 ||| 0-1 ||| 3 668016 +a ||| agreed at New ||| 0.333333 0.204175 1.49697e-06 3.16322e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| agreed at ||| 0.00699301 0.204175 2.99394e-06 2.65816e-06 2.718 ||| 0-1 ||| 286 668016 +a ||| agreed on and ||| 0.0909091 0.0782999 1.49697e-06 3.71114e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| agreed on by ||| 0.030303 0.0782999 1.49697e-06 1.55548e-08 2.718 ||| 0-1 ||| 33 668016 +a ||| agreed on ||| 0.00193986 0.0782999 2.99394e-06 2.96277e-06 2.718 ||| 0-1 ||| 1031 668016 +a ||| agreed to refrain ||| 0.25 0.229811 1.49697e-06 1.66887e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| agreed to ||| 0.00558214 0.229811 1.04788e-05 2.73586e-05 2.718 ||| 0-1 ||| 1254 668016 +a ||| agreeing to ||| 0.00990099 0.229811 2.99394e-06 3.39793e-06 2.718 ||| 0-1 ||| 202 668016 +a ||| agreement and ||| 0.00147059 0.0015873 1.49697e-06 3.55607e-07 2.718 ||| 0-1 ||| 680 668016 +a ||| agreement as provided for ||| 0.333333 0.0243476 1.49697e-06 2.84801e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| agreement as provided ||| 0.333333 0.0243476 1.49697e-06 3.7056e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| agreement as ||| 0.00564972 0.0243476 1.49697e-06 1.61675e-06 2.718 ||| 0-1 ||| 177 668016 +a ||| agreement at ||| 0.004662 0.204175 2.99394e-06 6.27272e-06 2.718 ||| 0-1 ||| 429 668016 +a ||| agreement by ||| 0.0070922 0.0337966 1.49697e-06 1.51633e-06 2.718 ||| 0-1 ||| 141 668016 +a ||| agreement for ||| 0.00621118 0.0683377 1.49697e-06 6.79118e-06 2.718 ||| 0-1 ||| 161 668016 +a ||| agreement on this subject , as well ||| 1 0.0782999 1.49697e-06 4.70531e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| agreement on this subject , as ||| 1 0.0782999 1.49697e-06 2.96753e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| agreement on this subject , ||| 1 0.0782999 1.49697e-06 2.90809e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| agreement on this subject ||| 0.2 0.0782999 1.49697e-06 2.43855e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| agreement on this ||| 0.00311526 0.0782999 1.49697e-06 4.51751e-08 2.718 ||| 0-1 ||| 321 668016 +a ||| agreement on ||| 0.000309406 0.0782999 1.49697e-06 6.99153e-06 2.718 ||| 0-1 ||| 3232 668016 +a ||| agreement seems to allow ||| 0.5 0.229811 1.49697e-06 1.88262e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| agreement seems to ||| 0.2 0.229811 1.49697e-06 7.76018e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| agreement to ||| 0.00608519 0.229811 4.49091e-06 6.45606e-05 2.718 ||| 0-1 ||| 493 668016 +a ||| agreement will ||| 0.00819672 0.0561595 1.49697e-06 2.59563e-06 2.718 ||| 0-1 ||| 122 668016 +a ||| agreement with ||| 0.00243309 0.0571592 8.98182e-06 3.07691e-06 2.718 ||| 0-1 ||| 2466 668016 +a ||| agreement within ||| 0.0131579 0.0123496 1.49697e-06 9.16708e-08 2.718 ||| 0-1 ||| 76 668016 +a ||| agreements to ||| 0.00819672 0.229811 1.49697e-06 1.29962e-05 2.718 ||| 0-1 ||| 122 668016 +a ||| agrees to ||| 0.00980392 0.229811 1.49697e-06 3.39793e-06 2.718 ||| 0-1 ||| 102 668016 +a ||| agrees with ||| 0.00147929 0.0571592 1.49697e-06 1.61942e-07 2.718 ||| 0-1 ||| 676 668016 +a ||| agricultural and ||| 0.00166945 0.0015873 1.49697e-06 7.50575e-08 2.718 ||| 0-1 ||| 599 668016 +a ||| agricultural policy to ||| 0.0208333 0.229811 1.49697e-06 5.36484e-09 2.718 ||| 0-2 ||| 48 668016 +a ||| agricultural products under ||| 1 0.0384416 1.49697e-06 5.73828e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| agricultural systems in ||| 0.5 0.0587624 1.49697e-06 1.22703e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| ahead , educate the people ||| 1 0.249147 1.49697e-06 4.67808e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| ahead , educate the ||| 1 0.249147 1.49697e-06 5.3148e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| ahead , educate ||| 1 0.249147 1.49697e-06 8.65718e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| ahead and ||| 0.00704225 0.0042743 1.49697e-06 2.51771e-07 2.718 ||| 0-0 ||| 142 668016 +a ||| ahead at ||| 0.142857 0.204175 1.49697e-06 3.70986e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| ahead into ||| 0.5 0.107578 1.49697e-06 6.62099e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| ahead of ||| 0.0177353 0.0188479 1.94606e-05 3.22406e-06 2.718 ||| 0-1 ||| 733 668016 +a ||| ahead on time ||| 0.333333 0.0782999 1.49697e-06 6.7884e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| ahead on ||| 0.0454545 0.0782999 1.49697e-06 4.13498e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| ahead regardless ||| 0.1 0.0283814 1.49697e-06 6.3656e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| ahead to ||| 0.0517241 0.229811 4.49091e-06 3.81829e-05 2.718 ||| 0-1 ||| 58 668016 +a ||| ahead with their ||| 0.0833333 0.0571592 1.49697e-06 2.10929e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| ahead with ||| 0.0178042 0.0571592 8.98182e-06 1.81977e-06 2.718 ||| 0-1 ||| 337 668016 +a ||| ahead ||| 0.00156189 0.0042743 5.98788e-06 2.01e-05 2.718 ||| 0-0 ||| 2561 668016 +a ||| aid awarded to ||| 0.5 0.229811 1.49697e-06 8.73813e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| aid for Gaza must be forthcoming ; ||| 1 0.0683377 1.49697e-06 5.33384e-24 2.718 ||| 0-1 ||| 1 668016 +a ||| aid for Gaza must be forthcoming ||| 1 0.0683377 1.49697e-06 1.73177e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| aid for Gaza must be ||| 1 0.0683377 1.49697e-06 3.90918e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| aid for Gaza must ||| 1 0.0683377 1.49697e-06 2.15704e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| aid for Gaza ||| 0.5 0.0683377 1.49697e-06 1.3956e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| aid for ||| 0.00093633 0.0683377 1.49697e-06 4.81241e-06 2.718 ||| 0-1 ||| 1068 668016 +a ||| aid from ||| 0.00364964 0.0435582 1.49697e-06 9.40163e-07 2.718 ||| 0-1 ||| 274 668016 +a ||| aid in ||| 0.00404858 0.0587624 1.49697e-06 7.84677e-06 2.718 ||| 0-1 ||| 247 668016 +a ||| aid is made available to ||| 1 0.229811 1.49697e-06 9.55445e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| aid of ||| 0.012605 0.0188479 4.49091e-06 3.86295e-06 2.718 ||| 0-1 ||| 238 668016 +a ||| aid to Ingushetia ; ||| 1 0.229811 1.49697e-06 5.63632e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| aid to Ingushetia ||| 1 0.229811 1.49697e-06 1.82998e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| aid to ||| 0.00810612 0.229811 1.64667e-05 4.57494e-05 2.718 ||| 0-1 ||| 1357 668016 +a ||| aided by ||| 0.0285714 0.0337966 1.49697e-06 5.75925e-09 2.718 ||| 0-1 ||| 35 668016 +a ||| aiding of ||| 0.333333 0.140674 1.49697e-06 1.13286e-06 2.718 ||| 0-0 0-1 ||| 3 668016 +a ||| aim for people or bodies not ||| 0.125 0.0683377 1.49697e-06 6.94566e-19 2.718 ||| 0-1 ||| 8 668016 +a ||| aim for people or bodies ||| 0.125 0.0683377 1.49697e-06 2.0344e-16 2.718 ||| 0-1 ||| 8 668016 +a ||| aim for people or ||| 0.125 0.0683377 1.49697e-06 5.09875e-12 2.718 ||| 0-1 ||| 8 668016 +a ||| aim for people ||| 0.125 0.0683377 1.49697e-06 4.45968e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| aim for ||| 0.0110497 0.0683377 2.99394e-06 5.06667e-06 2.718 ||| 0-1 ||| 181 668016 +a ||| aim of mitigating traffic ||| 1 0.0188479 1.49697e-06 4.62016e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| aim of mitigating ||| 0.166667 0.0188479 1.49697e-06 1.62682e-12 2.718 ||| 0-1 ||| 6 668016 +a ||| aim of securing respect ||| 1 0.0188479 1.49697e-06 2.28722e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| aim of securing ||| 0.0714286 0.0188479 1.49697e-06 5.28716e-11 2.718 ||| 0-1 ||| 14 668016 +a ||| aim of ||| 0.000927644 0.0188479 4.49091e-06 4.06704e-06 2.718 ||| 0-1 ||| 3234 668016 +a ||| aim to ||| 0.0046729 0.229811 5.98788e-06 4.81665e-05 2.718 ||| 0-1 ||| 856 668016 +a ||| aim was to ||| 0.0133333 0.229811 1.49697e-06 1.50906e-07 2.718 ||| 0-2 ||| 75 668016 +a ||| aimed at countering ||| 0.2 0.204175 1.49697e-06 9.46184e-13 2.718 ||| 0-1 ||| 5 668016 +a ||| aimed at engaging ||| 0.125 0.204175 1.49697e-06 3.14606e-11 2.718 ||| 0-1 ||| 8 668016 +a ||| aimed at placing ||| 0.333333 0.204175 1.49697e-06 5.6298e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| aimed at putting in ||| 1 0.0587624 1.49697e-06 1.95662e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| aimed at removing senior ||| 0.5 0.204175 1.49697e-06 2.07782e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| aimed at removing ||| 0.025641 0.204175 1.49697e-06 1.70313e-11 2.718 ||| 0-1 ||| 39 668016 +a ||| aimed at the ||| 0.00458716 0.204175 1.49697e-06 1.4522e-07 2.718 ||| 0-1 ||| 218 668016 +a ||| aimed at ||| 0.00388385 0.204175 3.14364e-05 2.36546e-06 2.718 ||| 0-1 ||| 5407 668016 +a ||| aiming at ||| 0.0103093 0.204175 2.99394e-06 4.9011e-07 2.718 ||| 0-1 ||| 194 668016 +a ||| aiming to ||| 0.00361011 0.229811 1.49697e-06 5.04434e-06 2.718 ||| 0-1 ||| 277 668016 +a ||| aims to the ||| 0.333333 0.229811 1.49697e-06 8.58075e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| aims to ||| 0.00445576 0.229811 1.04788e-05 1.3977e-05 2.718 ||| 0-1 ||| 1571 668016 +a ||| air disasters linked to ||| 1 0.229811 1.49697e-06 7.2439e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| air into ||| 0.142857 0.107578 1.49697e-06 3.34694e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| aircraft to ||| 0.0454545 0.229811 1.49697e-06 4.02847e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| airline companies in ||| 0.2 0.0587624 1.49697e-06 2.8681e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| airports in ||| 0.0135135 0.0587624 1.49697e-06 3.48479e-07 2.718 ||| 0-1 ||| 74 668016 +a ||| akin to ||| 0.0273973 0.229811 2.99394e-06 1.40121e-06 2.718 ||| 0-1 ||| 73 668016 +a ||| al-Qa ||| 0.0185185 0.06 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 54 668016 +a ||| alarmed by ||| 0.0588235 0.0337966 2.99394e-06 2.05688e-08 2.718 ||| 0-1 ||| 34 668016 +a ||| albeit not many - to ||| 0.5 0.229811 1.49697e-06 3.23684e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| alert to ||| 0.010989 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-1 ||| 91 668016 +a ||| aligning itself with ||| 0.1 0.0571592 1.49697e-06 1.58634e-11 2.718 ||| 0-2 ||| 10 668016 +a ||| alive at ||| 0.5 0.204175 1.49697e-06 2.6888e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| alive for ||| 0.333333 0.0683377 1.49697e-06 2.91103e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| alive if ||| 0.5 0.0014881 1.49697e-06 1.02384e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| alive to ||| 0.111111 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| alive ||| 0.00200401 0.0017007 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 499 668016 +a ||| all , I would like to ||| 0.00970874 0.229811 1.49697e-06 1.45529e-11 2.718 ||| 0-5 ||| 103 668016 +a ||| all , also launched for ||| 0.5 0.0683377 1.49697e-06 3.47003e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| all , at ||| 0.027027 0.204175 1.49697e-06 1.91798e-05 2.718 ||| 0-2 ||| 37 668016 +a ||| all , for the ||| 0.0222222 0.0683377 1.49697e-06 1.27481e-06 2.718 ||| 0-2 ||| 45 668016 +a ||| all , for ||| 0.0130719 0.0683377 2.99394e-06 2.07651e-05 2.718 ||| 0-2 ||| 153 668016 +a ||| all , in ||| 0.00431034 0.0587624 1.49697e-06 3.38581e-05 2.718 ||| 0-2 ||| 232 668016 +a ||| all , through ||| 0.0555556 0.230708 1.49697e-06 4.47953e-06 2.718 ||| 0-2 ||| 18 668016 +a ||| all , to indicate ||| 1 0.229811 1.49697e-06 4.34289e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| all , to thank ||| 0.0833333 0.229811 1.49697e-06 2.08854e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| all , to ||| 0.0517241 0.229811 2.69455e-05 0.000197404 2.718 ||| 0-2 ||| 348 668016 +a ||| all , up to ||| 0.2 0.229811 1.49697e-06 6.73247e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| all , we ||| 0.00568182 0.0038996 1.49697e-06 7.48795e-07 2.718 ||| 0-0 ||| 176 668016 +a ||| all , ||| 0.000653221 0.0038996 1.19758e-05 6.59598e-05 2.718 ||| 0-0 ||| 12247 668016 +a ||| all I can do is to ||| 0.142857 0.229811 1.49697e-06 3.74955e-12 2.718 ||| 0-5 ||| 7 668016 +a ||| all about them , ||| 1 0.0526361 1.49697e-06 7.61742e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| all about them ||| 1 0.0526361 1.49697e-06 6.38752e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| all about ||| 0.0113122 0.0526361 7.48485e-06 2.38127e-05 2.718 ||| 0-1 ||| 442 668016 +a ||| all along the ||| 0.0666667 0.0038996 1.49697e-06 5.92529e-09 2.718 ||| 0-0 ||| 15 668016 +a ||| all along ||| 0.0105263 0.0038996 1.49697e-06 9.65159e-08 2.718 ||| 0-0 ||| 95 668016 +a ||| all also to ||| 1 0.229811 1.49697e-06 8.35702e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| all as ||| 0.0140845 0.0141236 1.49697e-06 4.85201e-06 2.718 ||| 0-0 0-1 ||| 71 668016 +a ||| all at ||| 0.0689655 0.204175 1.19758e-05 0.000160831 2.718 ||| 0-1 ||| 116 668016 +a ||| all away ||| 1 0.0038996 1.49697e-06 1.75941e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| all be supported ||| 0.25 0.0120717 1.49697e-06 7.27066e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| all care for ||| 1 0.0683377 1.49697e-06 1.76736e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| all countries to help ||| 0.5 0.229811 1.49697e-06 1.19859e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| all countries to ||| 0.0294118 0.229811 1.49697e-06 6.28523e-07 2.718 ||| 0-2 ||| 34 668016 +a ||| all else , ||| 0.00925926 0.0038996 1.49697e-06 7.78325e-09 2.718 ||| 0-0 ||| 108 668016 +a ||| all else ||| 0.00900901 0.0038996 2.99394e-06 6.52658e-08 2.718 ||| 0-0 ||| 222 668016 +a ||| all for ||| 0.00692841 0.0683377 4.49091e-06 0.000174124 2.718 ||| 0-1 ||| 433 668016 +a ||| all from ||| 0.0178571 0.0435582 1.49697e-06 3.40172e-05 2.718 ||| 0-1 ||| 56 668016 +a ||| all given ||| 0.2 0.0371011 1.49697e-06 4.99475e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| all have to ||| 0.0512821 0.229811 2.99394e-06 1.97972e-05 2.718 ||| 0-2 ||| 39 668016 +a ||| all in ||| 0.0181159 0.0587624 2.99394e-05 0.000283914 2.718 ||| 0-1 ||| 1104 668016 +a ||| all into ||| 0.0666667 0.107578 1.49697e-06 2.87035e-05 2.718 ||| 0-1 ||| 15 668016 +a ||| all it can to ||| 0.0111111 0.229811 1.49697e-06 8.75539e-08 2.718 ||| 0-3 ||| 90 668016 +a ||| all its ||| 0.000669792 0.0038996 1.49697e-06 7.88002e-07 2.718 ||| 0-0 ||| 1493 668016 +a ||| all like to ||| 0.0673077 0.229811 1.04788e-05 2.93967e-06 2.718 ||| 0-2 ||| 104 668016 +a ||| all luck with ||| 1 0.0571592 1.49697e-06 7.65243e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| all my ||| 0.00130208 0.0038996 1.49697e-06 3.55699e-07 2.718 ||| 0-0 ||| 768 668016 +a ||| all of these ||| 0.0012987 0.0188479 1.49697e-06 1.44956e-07 2.718 ||| 0-1 ||| 770 668016 +a ||| all of this sets ||| 1 0.0038996 1.49697e-06 7.61601e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| all of this ||| 0.00203046 0.0038996 2.99394e-06 1.94286e-07 2.718 ||| 0-0 ||| 985 668016 +a ||| all of us in ||| 0.00621118 0.0587624 1.49697e-06 4.44859e-08 2.718 ||| 0-3 ||| 161 668016 +a ||| all of us must , to ||| 1 0.229811 1.49697e-06 4.78067e-11 2.718 ||| 0-5 ||| 1 668016 +a ||| all of ||| 0.00317217 0.0188479 4.34121e-05 0.00013977 2.718 ||| 0-1 ||| 9142 668016 +a ||| all on ||| 0.0136364 0.0782999 4.49091e-06 0.000179261 2.718 ||| 0-1 ||| 220 668016 +a ||| all out for ||| 0.166667 0.0683377 1.49697e-06 6.66964e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| all out to ||| 0.285714 0.229811 2.99394e-06 6.34052e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| all over again ||| 0.0425532 0.0038996 2.99394e-06 1.54011e-10 2.718 ||| 0-0 ||| 47 668016 +a ||| all over the ||| 0.00323625 0.0682544 2.99394e-06 6.73875e-07 2.718 ||| 0-1 ||| 618 668016 +a ||| all over ||| 0.00769231 0.0682544 1.19758e-05 1.09766e-05 2.718 ||| 0-1 ||| 1040 668016 +a ||| all pending ||| 0.5 0.0799136 1.49697e-06 3.18965e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| all prepare themselves to ||| 1 0.229811 1.49697e-06 1.28032e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| all pulling out ||| 1 0.0669777 1.49697e-06 1.60845e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| all ready on ||| 1 0.0782999 1.49697e-06 7.94126e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| all relevant information for ||| 0.5 0.0683377 1.49697e-06 3.10076e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| all the best for the future ||| 0.0666667 0.0683377 1.49697e-06 2.41411e-14 2.718 ||| 0-3 ||| 15 668016 +a ||| all the best for the ||| 0.04 0.0683377 1.49697e-06 9.08927e-11 2.718 ||| 0-3 ||| 25 668016 +a ||| all the best for ||| 0.0263158 0.0683377 1.49697e-06 1.48053e-09 2.718 ||| 0-3 ||| 38 668016 +a ||| all the islands in ||| 0.2 0.0587624 1.49697e-06 1.37697e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| all the political ||| 0.142857 0.0038996 1.49697e-06 6.06111e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| all the right to ||| 0.333333 0.229811 1.49697e-06 6.55365e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| all the same to ||| 0.25 0.229811 1.49697e-06 8.17758e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| all the same ||| 0.00293255 0.0038996 1.49697e-06 2.73242e-08 2.718 ||| 0-0 ||| 341 668016 +a ||| all the time to ||| 0.166667 0.229811 1.49697e-06 1.66834e-07 2.718 ||| 0-3 ||| 6 668016 +a ||| all the while , ||| 0.333333 0.0377813 1.49697e-06 3.17037e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| all the while ||| 0.04 0.0377813 1.49697e-06 2.65848e-07 2.718 ||| 0-2 ||| 25 668016 +a ||| all the ||| 0.000555755 0.0038996 2.54485e-05 3.39558e-05 2.718 ||| 0-0 ||| 30589 668016 +a ||| all they can to ||| 0.03125 0.229811 1.49697e-06 1.607e-08 2.718 ||| 0-3 ||| 32 668016 +a ||| all this must be done whilst meeting ||| 1 0.0442295 1.49697e-06 1.24759e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| all this must be done whilst ||| 1 0.0442295 1.49697e-06 9.93308e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| all those of ||| 0.030303 0.0188479 1.49697e-06 1.01208e-07 2.718 ||| 0-2 ||| 33 668016 +a ||| all those ||| 0.00400501 0.0110758 2.39515e-05 5.5581e-07 2.718 ||| 0-0 0-1 ||| 3995 668016 +a ||| all to a ||| 0.0833333 0.229811 1.49697e-06 7.33732e-05 2.718 ||| 0-1 ||| 12 668016 +a ||| all to ||| 0.0904255 0.229811 0.000127242 0.00165532 2.718 ||| 0-1 ||| 940 668016 +a ||| all together with ||| 1 0.0571592 1.49697e-06 4.73819e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| all too eager to ||| 0.1 0.229811 1.49697e-06 9.01154e-12 2.718 ||| 0-3 ||| 10 668016 +a ||| all towards ||| 0.111111 0.155507 1.49697e-06 1.59369e-05 2.718 ||| 0-1 ||| 9 668016 +a ||| all visiting ||| 1 0.178388 1.49697e-06 4.4844e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| all you can to ||| 0.0833333 0.229811 1.49697e-06 1.58962e-08 2.718 ||| 0-3 ||| 12 668016 +a ||| all ||| 0.00216547 0.0038996 0.000495497 0.0005531 2.718 ||| 0-0 ||| 152854 668016 +a ||| alla ||| 0.5 0.333333 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| alleged to ||| 0.0138889 0.229811 1.49697e-06 5.67489e-06 2.718 ||| 0-1 ||| 72 668016 +a ||| allocate to ||| 0.047619 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| allocated as ||| 0.0909091 0.0036337 1.49697e-06 9.286e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| allocated for ||| 0.0152672 0.0683377 2.99394e-06 1.64344e-06 2.718 ||| 0-1 ||| 131 668016 +a ||| allocated it to ||| 1 0.229811 1.49697e-06 2.77835e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| allocated to the ||| 0.00411523 0.229811 1.49697e-06 9.59152e-07 2.718 ||| 0-1 ||| 243 668016 +a ||| allocated to ||| 0.0162037 0.229811 2.09576e-05 1.56235e-05 2.718 ||| 0-1 ||| 864 668016 +a ||| allocated ||| 0.000447227 0.0036337 1.49697e-06 9.1e-06 2.718 ||| 0-0 ||| 2236 668016 +a ||| allocation of ||| 0.0027933 0.0188479 2.99394e-06 4.99877e-07 2.718 ||| 0-1 ||| 716 668016 +a ||| allocation to ||| 0.0833333 0.229811 2.99394e-06 5.9201e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| allotted to ||| 0.00854701 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-1 ||| 117 668016 +a ||| allow for ||| 0.00197628 0.0683377 1.49697e-06 8.93945e-06 2.718 ||| 0-1 ||| 506 668016 +a ||| allow me to put ||| 0.0909091 0.229811 1.49697e-06 5.64182e-11 2.718 ||| 0-2 ||| 11 668016 +a ||| allow me to ||| 0.00104932 0.229811 1.49697e-06 5.11684e-08 2.718 ||| 0-2 ||| 953 668016 +a ||| allow myself to succumb ||| 0.5 0.229811 1.49697e-06 2.90727e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| allow myself to ||| 0.142857 0.229811 1.49697e-06 1.32149e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| allow people over ||| 1 0.0682544 1.49697e-06 4.96024e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| allow people to ||| 0.037037 0.118882 1.49697e-06 5.58509e-08 2.718 ||| 0-1 0-2 ||| 27 668016 +a ||| allow to ||| 0.0344828 0.229811 1.49697e-06 8.49832e-05 2.718 ||| 0-1 ||| 29 668016 +a ||| allow us to draw on ||| 1 0.229811 1.49697e-06 1.94044e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| allow us to draw ||| 0.333333 0.229811 1.49697e-06 2.90007e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| allow us to meet ||| 0.166667 0.229811 1.49697e-06 2.97845e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| allow us to ||| 0.0084507 0.229811 4.49091e-06 2.44938e-07 2.718 ||| 0-2 ||| 355 668016 +a ||| allowance rates for officials ||| 0.111111 0.0683377 1.49697e-06 1.41516e-16 2.718 ||| 0-2 ||| 9 668016 +a ||| allowance rates for ||| 0.111111 0.0683377 1.49697e-06 1.01083e-11 2.718 ||| 0-2 ||| 9 668016 +a ||| allowed at ||| 0.142857 0.204175 1.49697e-06 5.51033e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| allowed for ||| 0.0188679 0.0683377 2.99394e-06 5.96577e-06 2.718 ||| 0-1 ||| 106 668016 +a ||| allowed itself to proceed to other votes ||| 1 0.229811 1.49697e-06 5.14705e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| allowed itself to proceed to other ||| 1 0.229811 1.49697e-06 1.41792e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| allowed itself to proceed to ||| 1 0.229811 1.49697e-06 1.0945e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| allowed itself to proceed ||| 1 0.229811 1.49697e-06 1.23173e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| allowed itself to ||| 0.0625 0.229811 1.49697e-06 3.84917e-08 2.718 ||| 0-2 ||| 16 668016 +a ||| allowed onto ||| 1 0.207143 1.49697e-06 3.85646e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| allowed to be ||| 0.0107527 0.229811 1.49697e-06 1.02782e-06 2.718 ||| 0-1 ||| 93 668016 +a ||| allowed to divert us ||| 1 0.229811 1.49697e-06 1.14422e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| allowed to divert ||| 1 0.229811 1.49697e-06 3.96997e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| allowed to fail ||| 0.25 0.229811 1.49697e-06 3.06255e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| allowed to happen , ||| 0.166667 0.229811 1.49697e-06 7.35181e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| allowed to happen at the ||| 0.5 0.229811 1.49697e-06 1.5848e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| allowed to happen at ||| 0.5 0.229811 1.49697e-06 2.58145e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| allowed to happen ||| 0.0322581 0.229811 2.99394e-06 6.16479e-09 2.718 ||| 0-1 ||| 62 668016 +a ||| allowed to have a ||| 1 0.229811 1.49697e-06 3.00656e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| allowed to have ||| 0.0384615 0.229811 1.49697e-06 6.78286e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| allowed to lead to ||| 0.0909091 0.229811 1.49697e-06 9.70102e-10 2.718 ||| 0-1 ||| 11 668016 +a ||| allowed to lead ||| 0.0769231 0.229811 1.49697e-06 1.09174e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| allowed to view ||| 1 0.229811 1.49697e-06 5.12296e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| allowed to ||| 0.0150637 0.229811 3.89212e-05 5.67138e-05 2.718 ||| 0-1 ||| 1726 668016 +a ||| allowing manufacturers to ||| 0.333333 0.229811 1.49697e-06 1.27117e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| allowing provision to be made for ||| 1 0.229811 1.49697e-06 6.11988e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| allowing provision to be made ||| 1 0.229811 1.49697e-06 7.96268e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| allowing provision to be ||| 1 0.229811 1.49697e-06 3.80117e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| allowing provision to ||| 1 0.229811 1.49697e-06 2.09744e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| allowing them to carry out work ||| 1 0.229811 1.49697e-06 2.10708e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| allowing them to carry out ||| 0.333333 0.229811 1.49697e-06 3.32871e-14 2.718 ||| 0-2 ||| 3 668016 +a ||| allowing them to carry ||| 1 0.229811 1.49697e-06 8.69025e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| allowing them to ||| 0.00943396 0.229811 1.49697e-06 4.73583e-08 2.718 ||| 0-2 ||| 106 668016 +a ||| allowing ||| 0.000379651 0.0216573 1.49697e-06 8.4e-05 2.718 ||| 0-0 ||| 2634 668016 +a ||| allows Parliament to ||| 0.0833333 0.229811 1.49697e-06 5.71048e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| allows for ||| 0.00297619 0.0683377 1.49697e-06 1.0465e-06 2.718 ||| 0-1 ||| 336 668016 +a ||| allows participation of ||| 1 0.0188479 1.49697e-06 2.02447e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| allows ||| 0.000895656 0.0019623 2.99394e-06 4.6e-06 2.718 ||| 0-0 ||| 2233 668016 +a ||| alluded to ||| 0.0263158 0.229811 2.99394e-06 4.90422e-07 2.718 ||| 0-1 ||| 76 668016 +a ||| allusion to ||| 0.0588235 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| almost 100 of ||| 1 0.0188479 1.49697e-06 3.33906e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| almost at the ||| 0.0714286 0.204175 1.49697e-06 1.72174e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| almost at ||| 0.0526316 0.204175 1.49697e-06 2.80452e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| almost died from breathing ||| 0.25 0.0435582 1.49697e-06 1.1745e-17 2.718 ||| 0-2 ||| 4 668016 +a ||| almost died from ||| 0.25 0.0435582 1.49697e-06 5.33863e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| almost had to ||| 0.333333 0.229811 1.49697e-06 2.89717e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| almost on the ||| 0.2 0.0782999 1.49697e-06 1.91904e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| almost on ||| 0.0454545 0.0782999 1.49697e-06 3.12589e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| almost stereotypical ||| 1 0.04 1.49697e-06 7.416e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| almost to ||| 0.0222222 0.229811 1.49697e-06 2.88649e-05 2.718 ||| 0-1 ||| 45 668016 +a ||| almost ||| 0.000134571 0.0004511 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 7431 668016 +a ||| alone , to ||| 0.1 0.229811 1.49697e-06 4.28613e-06 2.718 ||| 0-2 ||| 10 668016 +a ||| alone faced ||| 1 0.0494043 1.49697e-06 2.64092e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| alone to take ||| 1 0.229811 1.49697e-06 5.78649e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| alone to ||| 0.0410959 0.229811 4.49091e-06 3.59409e-05 2.718 ||| 0-1 ||| 73 668016 +a ||| along , ||| 0.0344828 0.0178286 1.49697e-06 1.45848e-05 2.718 ||| 0-0 ||| 29 668016 +a ||| along and ||| 0.0416667 0.0178286 1.49697e-06 1.53192e-06 2.718 ||| 0-0 ||| 24 668016 +a ||| along the lines ||| 0.00271739 0.0178286 1.49697e-06 6.83248e-10 2.718 ||| 0-0 ||| 368 668016 +a ||| along the way to ||| 0.125 0.229811 1.49697e-06 8.0894e-09 2.718 ||| 0-3 ||| 8 668016 +a ||| along the ||| 0.00666667 0.0178286 1.34727e-05 7.50822e-06 2.718 ||| 0-0 ||| 1350 668016 +a ||| along to ||| 0.1875 0.229811 4.49091e-06 6.11276e-05 2.718 ||| 0-1 ||| 16 668016 +a ||| along with it into ||| 1 0.107578 1.49697e-06 1.20534e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| along with others , safeguards ||| 1 0.0571592 1.49697e-06 1.45209e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| along with others , ||| 0.05 0.0571592 1.49697e-06 3.37696e-11 2.718 ||| 0-1 ||| 20 668016 +a ||| along with others ||| 0.0238095 0.0571592 1.49697e-06 2.83172e-10 2.718 ||| 0-1 ||| 42 668016 +a ||| along with ||| 0.00710136 0.0571592 3.29333e-05 2.91329e-06 2.718 ||| 0-1 ||| 3098 668016 +a ||| along ||| 0.00719551 0.0178286 6.13758e-05 0.0001223 2.718 ||| 0-0 ||| 5698 668016 +a ||| alongside all ||| 0.0769231 0.0795001 1.49697e-06 2.06472e-07 2.718 ||| 0-0 0-1 ||| 13 668016 +a ||| alongside each other ||| 0.03125 0.155101 1.49697e-06 1.35749e-10 2.718 ||| 0-0 ||| 32 668016 +a ||| alongside each ||| 0.0357143 0.155101 1.49697e-06 1.04785e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| alongside those to ||| 1 0.229811 1.49697e-06 4.74332e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| alongside us in the ||| 0.5 0.0587624 1.49697e-06 1.98804e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| alongside us in ||| 0.25 0.0587624 1.49697e-06 3.23827e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| alongside us ||| 0.0344828 0.155101 1.49697e-06 1.07593e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| alongside ||| 0.0129534 0.155101 3.74243e-05 0.0003733 2.718 ||| 0-0 ||| 1930 668016 +a ||| already as to ||| 1 0.229811 1.49697e-06 1.65541e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| already at ||| 0.0188679 0.204175 1.49697e-06 1.57618e-05 2.718 ||| 0-1 ||| 53 668016 +a ||| already barely managing to recover ||| 0.166667 0.229811 1.49697e-06 1.44257e-20 2.718 ||| 0-3 ||| 6 668016 +a ||| already barely managing to ||| 0.166667 0.229811 1.49697e-06 3.35481e-15 2.718 ||| 0-3 ||| 6 668016 +a ||| already been Members of ||| 1 0.0188479 1.49697e-06 6.74661e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| already by ||| 0.142857 0.0337966 1.49697e-06 3.81016e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| already coming to ||| 0.5 0.229811 1.49697e-06 3.15203e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| already congratulated ||| 0.5 0.165644 1.49697e-06 4.56617e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| already have to be known ||| 0.5 0.229811 1.49697e-06 3.87129e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| already have to be ||| 0.333333 0.229811 1.49697e-06 3.51616e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| already have to ||| 0.0714286 0.229811 1.49697e-06 1.94017e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| already having ||| 0.0333333 0.005163 1.49697e-06 3.76037e-08 2.718 ||| 0-1 ||| 30 668016 +a ||| already in use ||| 0.0454545 0.0587624 1.49697e-06 1.35281e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| already in ||| 0.00733945 0.0587624 5.98788e-06 2.78242e-05 2.718 ||| 0-1 ||| 545 668016 +a ||| already led to ||| 0.1 0.229811 1.49697e-06 1.48922e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| already spoken about ||| 0.111111 0.0526361 1.49697e-06 5.20415e-11 2.718 ||| 0-2 ||| 9 668016 +a ||| already taken on ||| 0.142857 0.0782999 1.49697e-06 1.60132e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| already to ||| 0.0909091 0.229811 2.99394e-06 0.000162225 2.718 ||| 0-1 ||| 22 668016 +a ||| also ' No ' to ||| 1 0.229811 1.49697e-06 1.41263e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| also , at ||| 0.0454545 0.204175 1.49697e-06 2.04917e-05 2.718 ||| 0-2 ||| 22 668016 +a ||| also , in the ||| 0.0322581 0.0587624 1.49697e-06 2.22078e-06 2.718 ||| 0-2 ||| 31 668016 +a ||| also , in ||| 0.00980392 0.0587624 2.99394e-06 3.61738e-05 2.718 ||| 0-2 ||| 204 668016 +a ||| also , though , look to ||| 1 0.229811 1.49697e-06 1.82045e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| also , to ||| 0.025641 0.229811 1.49697e-06 0.000210906 2.718 ||| 0-2 ||| 39 668016 +a ||| also a disappointment to ||| 1 0.229811 1.49697e-06 1.41105e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| also a number of ||| 0.0322581 0.0188479 1.49697e-06 3.27517e-09 2.718 ||| 0-3 ||| 31 668016 +a ||| also about ||| 0.00995025 0.0526361 5.98788e-06 2.54414e-05 2.718 ||| 0-1 ||| 402 668016 +a ||| also accepted into ||| 1 0.107578 1.49697e-06 1.886e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| also addresses ||| 0.0178571 0.0621866 1.49697e-06 2.85751e-07 2.718 ||| 0-1 ||| 56 668016 +a ||| also all of ||| 0.111111 0.0188479 1.49697e-06 7.05644e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| also all ||| 0.0192308 0.0038996 2.99394e-06 2.79238e-06 2.718 ||| 0-1 ||| 104 668016 +a ||| also are able to implement once ||| 0.5 0.229811 1.49697e-06 5.11541e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| also are able to implement ||| 0.5 0.229811 1.49697e-06 1.2501e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| also are able to ||| 0.5 0.229811 1.49697e-06 2.24032e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| also as regards ||| 0.0166667 0.263434 1.49697e-06 2.31212e-07 2.718 ||| 0-2 ||| 60 668016 +a ||| also asking ||| 0.0625 0.0319755 1.49697e-06 6.72978e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| also at ||| 0.0115607 0.204175 5.98788e-06 0.000171831 2.718 ||| 0-1 ||| 346 668016 +a ||| also attending ||| 1 0.257576 1.49697e-06 8.61796e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| also awaiting ||| 0.142857 0.0889121 1.49697e-06 3.91771e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| also be able to hold ||| 0.5 0.229811 1.49697e-06 4.66148e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| also be able to ||| 0.0149254 0.229811 1.49697e-06 2.67593e-08 2.718 ||| 0-3 ||| 67 668016 +a ||| also be pointed out ||| 0.0526316 0.0669777 1.49697e-06 1.72977e-11 2.718 ||| 0-3 ||| 19 668016 +a ||| also bears witness to the ||| 1 0.229811 1.49697e-06 2.87676e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| also bears witness to ||| 0.25 0.229811 1.49697e-06 4.6859e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| also because it is ||| 0.0357143 0.0006453 1.49697e-06 1.54214e-11 2.718 ||| 0-2 ||| 28 668016 +a ||| also because it ||| 0.027027 0.0006453 1.49697e-06 4.9205e-10 2.718 ||| 0-2 ||| 37 668016 +a ||| also because of ||| 0.00793651 0.0120263 1.49697e-06 4.82485e-08 2.718 ||| 0-1 0-2 ||| 126 668016 +a ||| also been able to set up the ||| 1 0.229811 1.49697e-06 6.03293e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| also been able to set up ||| 1 0.229811 1.49697e-06 9.82694e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| also been able to set ||| 1 0.229811 1.49697e-06 2.88138e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| also been able to ||| 0.142857 0.229811 1.49697e-06 4.93049e-09 2.718 ||| 0-3 ||| 7 668016 +a ||| also been hearing from many ||| 0.166667 0.0435582 1.49697e-06 1.09573e-15 2.718 ||| 0-3 ||| 6 668016 +a ||| also been hearing from ||| 0.166667 0.0435582 1.49697e-06 3.19175e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| also been tested ||| 1 0.143456 1.49697e-06 2.10729e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| also been the subject of complaint to ||| 1 0.229811 1.49697e-06 8.83056e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| also being involved in ||| 1 0.0587624 1.49697e-06 2.98503e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| also believe that if ||| 0.5 0.0014881 1.49697e-06 3.42628e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| also bring ||| 0.0588235 0.0161903 2.99394e-06 9.63273e-07 2.718 ||| 0-1 ||| 34 668016 +a ||| also brought to bear on ||| 1 0.0782999 1.49697e-06 7.13338e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| also by ||| 0.00163132 0.0337966 1.49697e-06 4.15374e-05 2.718 ||| 0-1 ||| 613 668016 +a ||| also called on ||| 0.0714286 0.0782999 1.49697e-06 3.32865e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| also concern ourselves with here in ||| 1 0.0587624 1.49697e-06 1.6703e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| also congratulate ||| 0.0192308 0.245244 1.49697e-06 1.68103e-05 2.718 ||| 0-1 ||| 52 668016 +a ||| also consulted ||| 0.142857 0.128026 1.49697e-06 1.09656e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| also continue to ||| 0.0263158 0.229811 1.49697e-06 4.09238e-07 2.718 ||| 0-2 ||| 38 668016 +a ||| also contribute to ||| 0.019802 0.229811 2.99394e-06 6.87959e-08 2.718 ||| 0-2 ||| 101 668016 +a ||| also contributed to ||| 0.0588235 0.229811 1.49697e-06 1.66242e-08 2.718 ||| 0-2 ||| 17 668016 +a ||| also did in ||| 0.5 0.0587624 1.49697e-06 1.37774e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| also disassociated themselves from ||| 1 0.0435582 1.49697e-06 6.24678e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| also draw attention to ||| 0.0833333 0.229811 1.49697e-06 5.47147e-11 2.718 ||| 0-3 ||| 12 668016 +a ||| also due to the fact ||| 0.111111 0.229811 1.49697e-06 8.79074e-11 2.718 ||| 0-2 ||| 9 668016 +a ||| also due to the ||| 0.0232558 0.229811 1.49697e-06 3.00097e-08 2.718 ||| 0-2 ||| 43 668016 +a ||| also due to ||| 0.0422535 0.229811 4.49091e-06 4.88822e-07 2.718 ||| 0-2 ||| 71 668016 +a ||| also entitled to ||| 0.0526316 0.229811 1.49697e-06 8.64812e-08 2.718 ||| 0-2 ||| 19 668016 +a ||| also evident in ||| 0.25 0.0587624 1.49697e-06 5.67232e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| also fall within ||| 0.111111 0.0123496 1.49697e-06 2.40319e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| also focusing on ||| 0.2 0.0782999 1.49697e-06 3.86874e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| also for ||| 0.00308642 0.0683377 8.98182e-06 0.000186033 2.718 ||| 0-1 ||| 1944 668016 +a ||| also force European countries to reduce their ||| 1 0.229811 1.49697e-06 1.68777e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| also force European countries to reduce ||| 1 0.229811 1.49697e-06 1.4561e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| also force European countries to ||| 1 0.229811 1.49697e-06 3.82179e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| also from ||| 0.00634921 0.0435582 2.99394e-06 3.63439e-05 2.718 ||| 0-1 ||| 315 668016 +a ||| also give ||| 0.00657895 0.0241455 1.49697e-06 2.83883e-06 2.718 ||| 0-1 ||| 152 668016 +a ||| also given to ||| 0.2 0.229811 1.49697e-06 1.21374e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| also gives practical expression to ||| 1 0.229811 1.49697e-06 2.50263e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| also gives ||| 0.010101 0.0245059 1.49697e-06 5.71502e-07 2.718 ||| 0-1 ||| 99 668016 +a ||| also go for ||| 0.5 0.0683377 1.49697e-06 1.08792e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| also go to ||| 0.0526316 0.229811 1.49697e-06 1.03424e-06 2.718 ||| 0-2 ||| 19 668016 +a ||| also go ||| 0.0172414 0.0021766 1.49697e-06 1.7973e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| also going to ||| 0.0526316 0.229811 1.49697e-06 1.51351e-06 2.718 ||| 0-2 ||| 19 668016 +a ||| also have to be ||| 0.0192308 0.229811 1.49697e-06 3.83323e-07 2.718 ||| 0-2 ||| 52 668016 +a ||| also have to drive home ||| 1 0.229811 1.49697e-06 6.48351e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| also have to drive ||| 1 0.229811 1.49697e-06 6.38769e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| also have to ||| 0.0155763 0.229811 7.48485e-06 2.11513e-05 2.718 ||| 0-2 ||| 321 668016 +a ||| also help in ||| 0.125 0.0587624 1.49697e-06 5.78455e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| also help to ||| 0.0111111 0.229811 1.49697e-06 3.37259e-07 2.718 ||| 0-2 ||| 90 668016 +a ||| also help us ||| 0.111111 0.259976 2.99394e-06 9.57068e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| also help ||| 0.00980392 0.259976 2.99394e-06 3.32062e-05 2.718 ||| 0-1 ||| 204 668016 +a ||| also hit ||| 0.125 0.121563 1.49697e-06 1.16118e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| also how to ||| 0.166667 0.229811 1.49697e-06 6.33842e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| also in ||| 0.0055208 0.0587624 2.24546e-05 0.000303333 2.718 ||| 0-1 ||| 2717 668016 +a ||| also involve dialogue with other institutions ||| 1 0.0571592 1.49697e-06 1.10787e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| also involve dialogue with other ||| 1 0.0571592 1.49697e-06 2.11023e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| also involve dialogue with ||| 1 0.0571592 1.49697e-06 1.62889e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| also kick-starts innovation in ||| 1 0.0587624 1.49697e-06 1.39533e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| also launched for ||| 0.5 0.0683377 1.49697e-06 6.1577e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| also lead to ||| 0.0294118 0.229811 2.99394e-06 3.40443e-07 2.718 ||| 0-2 ||| 68 668016 +a ||| also leads to ||| 0.0285714 0.229811 1.49697e-06 5.73005e-08 2.718 ||| 0-2 ||| 35 668016 +a ||| also legislation in the pipeline ||| 1 0.0587624 1.49697e-06 2.15331e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| also legislation in the ||| 1 0.0587624 1.49697e-06 1.49536e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| also legislation in ||| 1 0.0587624 1.49697e-06 2.43576e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| also like to congratulate ||| 0.0169492 0.245244 1.49697e-06 2.65272e-09 2.718 ||| 0-3 ||| 59 668016 +a ||| also like to extend ||| 0.2 0.229811 1.49697e-06 1.3568e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| also like to thank ||| 0.0196078 0.229811 5.98788e-06 3.3229e-10 2.718 ||| 0-2 ||| 204 668016 +a ||| also like to ||| 0.0295983 0.229811 2.09576e-05 3.14074e-06 2.718 ||| 0-2 ||| 473 668016 +a ||| also managing to ||| 0.5 0.229811 1.49697e-06 1.66242e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| also necessary , in fact ||| 1 0.0587624 1.49697e-06 2.72645e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| also necessary , in ||| 0.5 0.0587624 1.49697e-06 9.30753e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| also necessary to ||| 0.0138889 0.229811 1.49697e-06 4.55043e-07 2.718 ||| 0-2 ||| 72 668016 +a ||| also need to be ||| 0.00813008 0.229811 1.49697e-06 2.93875e-08 2.718 ||| 0-2 ||| 123 668016 +a ||| also need to ||| 0.00302115 0.229811 1.49697e-06 1.62157e-06 2.718 ||| 0-2 ||| 331 668016 +a ||| also of supporting ||| 1 0.104734 1.49697e-06 1.71192e-07 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| also of ||| 0.00508044 0.0188479 8.98182e-06 0.00014933 2.718 ||| 0-1 ||| 1181 668016 +a ||| also on supporting ||| 1 0.13446 1.49697e-06 2.1956e-07 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| also on ||| 0.00551876 0.0782999 7.48485e-06 0.000191522 2.718 ||| 0-1 ||| 906 668016 +a ||| also primarily affects women ||| 0.333333 0.380413 1.49697e-06 1.32434e-14 2.718 ||| 0-2 ||| 3 668016 +a ||| also primarily affects ||| 0.333333 0.380413 1.49697e-06 1.11476e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| also related to ||| 0.05 0.229811 1.49697e-06 1.15839e-07 2.718 ||| 0-2 ||| 20 668016 +a ||| also result in ||| 0.0434783 0.0587624 1.49697e-06 1.59705e-07 2.718 ||| 0-2 ||| 23 668016 +a ||| also rule against ||| 1 0.05146 1.49697e-06 1.06697e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| also run counter to ||| 0.2 0.229811 1.49697e-06 3.45585e-12 2.718 ||| 0-3 ||| 5 668016 +a ||| also see into ||| 1 0.107578 1.49697e-06 2.16078e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| also some in ||| 0.142857 0.0587624 1.49697e-06 3.3042e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| also supports ||| 0.00502513 0.0029626 1.49697e-06 5.0486e-08 2.718 ||| 0-1 ||| 199 668016 +a ||| also taking ||| 0.010989 0.0112121 1.49697e-06 8.52709e-07 2.718 ||| 0-1 ||| 91 668016 +a ||| also talked to ||| 0.5 0.229811 1.49697e-06 1.83927e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| also thank ||| 0.0114943 0.0126162 2.99394e-06 2.94434e-06 2.718 ||| 0-1 ||| 174 668016 +a ||| also thanks to ||| 0.030303 0.229811 1.49697e-06 1.43251e-07 2.718 ||| 0-2 ||| 33 668016 +a ||| also the most important issue for the ||| 1 0.0683377 1.49697e-06 8.79743e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| also the most important issue for ||| 1 0.0683377 1.49697e-06 1.433e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| also thinking of ||| 0.0454545 0.0188479 1.49697e-06 1.10654e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| also to be able to ||| 0.0769231 0.229811 1.49697e-06 2.37779e-09 2.718 ||| 0-4 ||| 13 668016 +a ||| also to congratulate ||| 0.0909091 0.237528 1.49697e-06 5.88868e-06 2.718 ||| 0-1 0-2 ||| 11 668016 +a ||| also to defend ||| 0.0833333 0.229811 1.49697e-06 3.69623e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| also to elect ||| 1 0.237468 1.49697e-06 1.42013e-07 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| also to encourage ||| 0.0454545 0.229811 1.49697e-06 6.80885e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| also to ensure ||| 0.010989 0.229811 1.49697e-06 7.9301e-07 2.718 ||| 0-1 ||| 91 668016 +a ||| also to ensuring ||| 0.2 0.229811 1.49697e-06 2.05503e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| also to have ||| 0.0285714 0.229811 1.49697e-06 2.11513e-05 2.718 ||| 0-1 ||| 35 668016 +a ||| also to thank ||| 0.0212766 0.229811 1.49697e-06 1.87111e-07 2.718 ||| 0-1 ||| 47 668016 +a ||| also to the delegation ||| 1 0.229811 1.49697e-06 1.56346e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| also to the ||| 0.00326264 0.229811 2.99394e-06 0.000108573 2.718 ||| 0-1 ||| 613 668016 +a ||| also to which ||| 1 0.229811 1.49697e-06 1.5023e-05 2.718 ||| 0-1 ||| 1 668016 +a ||| also to ||| 0.0308189 0.229811 0.000157182 0.00176853 2.718 ||| 0-1 ||| 3407 668016 +a ||| also towards ||| 0.037037 0.155507 1.49697e-06 1.70269e-05 2.718 ||| 0-1 ||| 27 668016 +a ||| also true for ||| 0.0833333 0.0683377 1.49697e-06 3.0063e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| also try to ||| 0.0588235 0.229811 2.99394e-06 2.72354e-07 2.718 ||| 0-2 ||| 34 668016 +a ||| also up to ||| 0.0588235 0.229811 1.49697e-06 6.03158e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| also urged ||| 0.0833333 0.319117 2.99394e-06 1.93058e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| also very grateful to ||| 0.2 0.229811 1.49697e-06 1.39687e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| also want to thank ||| 0.047619 0.229811 1.49697e-06 8.74743e-11 2.718 ||| 0-2 ||| 21 668016 +a ||| also want to ||| 0.00645161 0.229811 1.49697e-06 8.26789e-07 2.718 ||| 0-2 ||| 155 668016 +a ||| also wish to extend ||| 1 0.229811 1.49697e-06 2.25153e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| also wish to see compliance with ||| 1 0.0571592 1.49697e-06 3.57691e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| also wish to ||| 0.00740741 0.229811 1.49697e-06 5.21187e-07 2.718 ||| 0-2 ||| 135 668016 +a ||| also with regard to ||| 0.0186916 0.229811 2.99394e-06 7.70022e-09 2.718 ||| 0-3 ||| 107 668016 +a ||| also with ||| 0.00376412 0.0571592 4.49091e-06 8.42869e-05 2.718 ||| 0-1 ||| 797 668016 +a ||| also worrying when it comes to ||| 1 0.229811 1.49697e-06 7.03991e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| also ||| 0.000330476 0.000372 7.63455e-05 5.39e-05 2.718 ||| 0-0 ||| 154323 668016 +a ||| alternatives to these ||| 0.0833333 0.229811 1.49697e-06 1.81649e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| alternatives to ||| 0.00355872 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-1 ||| 281 668016 +a ||| although I am aware ||| 0.0344828 0.0921822 1.49697e-06 1.825e-12 2.718 ||| 0-0 ||| 29 668016 +a ||| although I am ||| 0.00568182 0.0921822 1.49697e-06 1.31389e-08 2.718 ||| 0-0 ||| 176 668016 +a ||| although I have ||| 0.00877193 0.0921822 1.49697e-06 1.23005e-07 2.718 ||| 0-0 ||| 114 668016 +a ||| although I must tell my ||| 1 0.0921822 1.49697e-06 1.00389e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| although I must tell ||| 0.5 0.0921822 1.49697e-06 1.56102e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| although I must ||| 0.0322581 0.0921822 1.49697e-06 1.58963e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| although I ||| 0.00578035 0.0921822 5.98788e-06 1.02849e-05 2.718 ||| 0-0 ||| 692 668016 +a ||| although he is ||| 0.0526316 0.0921822 1.49697e-06 3.97689e-08 2.718 ||| 0-0 ||| 19 668016 +a ||| although he ||| 0.027027 0.0921822 1.49697e-06 1.26891e-06 2.718 ||| 0-0 ||| 37 668016 +a ||| although in ||| 0.0060241 0.0754723 1.49697e-06 8.736e-05 2.718 ||| 0-0 0-1 ||| 166 668016 +a ||| although it is to ||| 1 0.229811 1.49697e-06 2.09296e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| although it was ||| 0.0188679 0.0921822 1.49697e-06 8.10093e-08 2.718 ||| 0-0 ||| 53 668016 +a ||| although it would ||| 0.142857 0.0921822 1.49697e-06 1.51746e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| although it ||| 0.00323625 0.0921822 2.99394e-06 2.58568e-05 2.718 ||| 0-0 ||| 618 668016 +a ||| although of ||| 0.0454545 0.0921822 1.49697e-06 7.90453e-05 2.718 ||| 0-0 ||| 22 668016 +a ||| although the ||| 0.000499251 0.0921822 1.49697e-06 8.92637e-05 2.718 ||| 0-0 ||| 2003 668016 +a ||| although there is ||| 0.00900901 0.0921822 1.49697e-06 1.39686e-07 2.718 ||| 0-0 ||| 111 668016 +a ||| although there ||| 0.00680272 0.0921822 1.49697e-06 4.45695e-06 2.718 ||| 0-0 ||| 147 668016 +a ||| although they ||| 0.00628931 0.0921822 1.49697e-06 4.74586e-06 2.718 ||| 0-0 ||| 159 668016 +a ||| although we are drafting decisions on behalf ||| 1 0.0782999 1.49697e-06 2.51932e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| although we are drafting decisions on ||| 1 0.0782999 1.49697e-06 7.90997e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| although we have ||| 0.00617284 0.0921822 1.49697e-06 1.97411e-07 2.718 ||| 0-0 ||| 162 668016 +a ||| although we ||| 0.00412371 0.0921822 2.99394e-06 1.65062e-05 2.718 ||| 0-0 ||| 485 668016 +a ||| although ||| 0.00298063 0.0921822 7.48485e-05 0.001454 2.718 ||| 0-0 ||| 16775 668016 +a ||| altogether through ||| 0.5 0.230708 1.49697e-06 2.1701e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| always argue in ||| 0.25 0.0587624 1.49697e-06 2.27352e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| always as ||| 0.05 0.0243476 1.49697e-06 1.50885e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| always have to ||| 0.0285714 0.229811 1.49697e-06 7.206e-07 2.718 ||| 0-2 ||| 35 668016 +a ||| always match ||| 0.5 0.112971 1.49697e-06 1.69592e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| always out ||| 0.142857 0.0669777 1.49697e-06 7.05372e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| always ready to take ||| 1 0.229811 1.49697e-06 4.29734e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| always ready to ||| 0.0666667 0.229811 1.49697e-06 2.66916e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| always resulted in ||| 0.5 0.0587624 1.49697e-06 2.64555e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| always sought from ||| 0.5 0.0435582 1.49697e-06 4.01175e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| always to secure ||| 0.5 0.229811 1.49697e-06 3.03669e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| always to ||| 0.0196078 0.229811 2.99394e-06 6.02519e-05 2.718 ||| 0-1 ||| 102 668016 +a ||| am adamant in ||| 1 0.0587624 1.49697e-06 3.07022e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| am also awaiting ||| 0.5 0.0889121 1.49697e-06 5.00488e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| am also very grateful to ||| 0.5 0.229811 1.49697e-06 1.7845e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| am amazed at just ||| 1 0.204175 1.49697e-06 9.87462e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| am amazed at ||| 0.25 0.204175 1.49697e-06 7.82644e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| am asking that ||| 0.166667 0.0164138 1.49697e-06 1.16257e-10 2.718 ||| 0-1 0-2 ||| 6 668016 +a ||| am at a ||| 0.0769231 0.204175 1.49697e-06 1.9273e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| am at one with ||| 1 0.0571592 1.49697e-06 3.72239e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| am at ||| 0.030303 0.204175 1.49697e-06 4.34802e-05 2.718 ||| 0-1 ||| 33 668016 +a ||| am directing my comments to ||| 1 0.229811 1.49697e-06 4.6047e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| am elected by ||| 1 0.0337966 1.49697e-06 2.34387e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| am eligible for ||| 1 0.0683377 1.49697e-06 4.04836e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| am for it ||| 1 0.0683377 1.49697e-06 8.37126e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| am for ||| 0.0909091 0.0683377 1.49697e-06 4.7074e-05 2.718 ||| 0-1 ||| 11 668016 +a ||| am going on ||| 0.5 0.0782999 1.49697e-06 4.14744e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| am going to do just that ||| 0.25 0.229811 1.49697e-06 2.79231e-14 2.718 ||| 0-2 ||| 4 668016 +a ||| am going to do just ||| 0.25 0.229811 1.49697e-06 1.65995e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| am going to do ||| 0.125 0.229811 1.49697e-06 1.31565e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| am going to take ||| 0.2 0.229811 1.49697e-06 6.16597e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| am going to ||| 0.010929 0.229811 2.99394e-06 3.82979e-07 2.718 ||| 0-2 ||| 183 668016 +a ||| am here as an acting Commissioner ||| 1 0.0243476 1.49697e-06 5.25615e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| am here as an acting ||| 1 0.0243476 1.49697e-06 5.95935e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| am here as an ||| 1 0.0243476 1.49697e-06 1.01006e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| am here as ||| 0.5 0.0243476 1.49697e-06 2.2725e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| am in agreement with ||| 0.0714286 0.0571592 1.49697e-06 8.41357e-11 2.718 ||| 0-3 ||| 14 668016 +a ||| am in full agreement ||| 0.0909091 0.0587624 1.49697e-06 2.59579e-12 2.718 ||| 0-1 ||| 11 668016 +a ||| am in full ||| 0.0909091 0.0587624 1.49697e-06 1.40846e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| am in partial agreement with ||| 1 0.0587624 1.49697e-06 3.25644e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| am in partial agreement ||| 1 0.0587624 1.49697e-06 5.09257e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| am in partial ||| 1 0.0587624 1.49697e-06 2.76319e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| am in ||| 0.0273038 0.0587624 1.19758e-05 7.67554e-05 2.718 ||| 0-1 ||| 293 668016 +a ||| am looking for ||| 0.25 0.0683377 1.49697e-06 4.98042e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| am making to ||| 1 0.229811 1.49697e-06 1.72157e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| am making ||| 0.0555556 0.0275406 1.49697e-06 5.83051e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| am more than happy to include ||| 1 0.229811 1.49697e-06 2.60424e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| am more than happy to ||| 0.2 0.229811 1.49697e-06 1.96695e-14 2.718 ||| 0-4 ||| 5 668016 +a ||| am not afraid to ||| 0.333333 0.229811 1.49697e-06 3.51404e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| am not even going to ||| 0.333333 0.229811 1.49697e-06 7.95632e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| am now giving ||| 0.333333 0.136521 1.49697e-06 2.65415e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| am now going to ||| 0.333333 0.229811 1.49697e-06 7.88899e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| am obliged include ||| 1 0.0281253 1.49697e-06 1.28837e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| am of ||| 0.0181818 0.0188479 1.49697e-06 3.77865e-05 2.718 ||| 0-1 ||| 55 668016 +a ||| am on ||| 0.15625 0.0782999 7.48485e-06 4.84627e-05 2.718 ||| 0-1 ||| 32 668016 +a ||| am opposed to ||| 0.0526316 0.147072 1.49697e-06 1.11117e-07 2.718 ||| 0-1 0-2 ||| 19 668016 +a ||| am pleased to note ||| 0.111111 0.229811 2.99394e-06 1.90151e-12 2.718 ||| 0-2 ||| 18 668016 +a ||| am pleased to ||| 0.0337079 0.229811 4.49091e-06 1.82137e-08 2.718 ||| 0-2 ||| 89 668016 +a ||| am prepared to ||| 0.0333333 0.229811 1.49697e-06 3.87991e-08 2.718 ||| 0-2 ||| 30 668016 +a ||| am quoting the ||| 1 0.167702 1.49697e-06 3.8665e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| am quoting ||| 0.166667 0.167702 1.49697e-06 6.29807e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| am receptive to those who say : ||| 1 0.229811 1.49697e-06 6.44032e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| am receptive to those who say ||| 1 0.229811 1.49697e-06 1.91221e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| am receptive to those who ||| 1 0.229811 1.49697e-06 2.00064e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| am receptive to those ||| 1 0.229811 1.49697e-06 2.2683e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| am receptive to ||| 1 0.229811 1.49697e-06 3.13257e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| am referring to ||| 0.0240964 0.229811 2.99394e-06 1.93324e-08 2.718 ||| 0-2 ||| 83 668016 +a ||| am reminded of ||| 0.0555556 0.0188479 1.49697e-06 4.08095e-10 2.718 ||| 0-2 ||| 18 668016 +a ||| am representing ||| 0.25 0.194985 1.49697e-06 4.44315e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| am saying it for ||| 0.5 0.0683377 1.49697e-06 1.48506e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| am sorry to say ||| 0.0357143 0.229811 1.49697e-06 6.75814e-12 2.718 ||| 0-2 ||| 28 668016 +a ||| am sorry to ||| 0.04 0.229811 1.49697e-06 7.07066e-09 2.718 ||| 0-2 ||| 25 668016 +a ||| am speaking of ||| 0.5 0.0188479 1.49697e-06 4.33789e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| am taking ||| 0.0294118 0.0112121 1.49697e-06 2.1577e-07 2.718 ||| 0-1 ||| 34 668016 +a ||| am therefore happy to ||| 1 0.229811 1.49697e-06 2.35779e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| am to put ||| 1 0.229811 1.49697e-06 4.93425e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| am to ||| 0.111111 0.229811 7.48485e-06 0.00044751 2.718 ||| 0-1 ||| 45 668016 +a ||| am willing to ||| 0.111111 0.229811 2.99394e-06 1.69159e-08 2.718 ||| 0-2 ||| 18 668016 +a ||| amazed at just ||| 1 0.204175 1.49697e-06 7.72964e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| amazed at ||| 0.05 0.204175 1.49697e-06 6.12637e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| ambiguity in ||| 0.05 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| ambitions of ||| 0.00892857 0.0188479 1.49697e-06 1.27188e-07 2.718 ||| 0-1 ||| 112 668016 +a ||| ambitions ||| 0.000782473 0.000693 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1278 668016 +a ||| amendment in ||| 0.00458716 0.0587624 1.49697e-06 3.82726e-06 2.718 ||| 0-1 ||| 218 668016 +a ||| amendment on ||| 0.0035461 0.0782999 1.49697e-06 2.4165e-06 2.718 ||| 0-1 ||| 282 668016 +a ||| amendment put to the ||| 1 0.229811 1.49697e-06 1.51046e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| amendment put to ||| 1 0.229811 1.49697e-06 2.46037e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| amendment to ||| 0.00173461 0.229811 2.99394e-06 2.23142e-05 2.718 ||| 0-1 ||| 1153 668016 +a ||| amendment was inspired by ||| 1 0.0337966 1.49697e-06 8.2099e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| amendments , in ||| 0.0238095 0.0587624 1.49697e-06 5.46699e-07 2.718 ||| 0-2 ||| 42 668016 +a ||| amendments include ||| 0.111111 0.0281253 1.49697e-06 2.01966e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| amendments to ||| 0.000639795 0.229811 1.49697e-06 2.6728e-05 2.718 ||| 0-1 ||| 1563 668016 +a ||| among European ||| 0.142857 0.0134501 1.49697e-06 4.5477e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| among both ||| 0.0666667 0.0205477 1.49697e-06 5.87238e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| among his country ||| 1 0.0134501 1.49697e-06 1.47084e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| among his country ’ ||| 1 0.0134501 1.49697e-06 2.56235e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| among his ||| 0.142857 0.0134501 1.49697e-06 4.0868e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| among hosts of ||| 1 0.016149 1.49697e-06 2.81587e-12 2.718 ||| 0-0 0-2 ||| 1 668016 +a ||| among other things ||| 0.000823045 0.0134501 1.49697e-06 7.24133e-11 2.718 ||| 0-0 ||| 1215 668016 +a ||| among other ||| 0.00141543 0.0134501 2.99394e-06 1.76188e-07 2.718 ||| 0-0 ||| 1413 668016 +a ||| among them on ||| 0.0526316 0.0782999 1.49697e-06 9.11756e-09 2.718 ||| 0-2 ||| 19 668016 +a ||| among traditional ||| 0.5 0.0134501 1.49697e-06 1.3192e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| among us ||| 0.00471698 0.0134501 1.49697e-06 3.91979e-07 2.718 ||| 0-0 ||| 212 668016 +a ||| among ||| 0.00612803 0.0134501 9.73031e-05 0.000136 2.718 ||| 0-0 ||| 10607 668016 +a ||| amongst other things , there should be ||| 1 0.0156749 1.49697e-06 7.70556e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| amongst other things , there should ||| 1 0.0156749 1.49697e-06 4.25183e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| amongst other things , there ||| 1 0.0156749 1.49697e-06 9.59566e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| amongst other things , ||| 0.00220264 0.0156749 1.49697e-06 3.13041e-12 2.718 ||| 0-0 ||| 454 668016 +a ||| amongst other things ||| 0.00163934 0.0156749 1.49697e-06 2.62498e-11 2.718 ||| 0-0 ||| 610 668016 +a ||| amongst other ||| 0.00142653 0.0156749 1.49697e-06 6.38682e-08 2.718 ||| 0-0 ||| 701 668016 +a ||| amongst others ||| 0.0035461 0.0156749 1.49697e-06 4.79196e-09 2.718 ||| 0-0 ||| 282 668016 +a ||| amongst the Balkan countries ||| 0.333333 0.0156749 1.49697e-06 2.87301e-15 2.718 ||| 0-0 ||| 3 668016 +a ||| amongst the Balkan ||| 0.333333 0.0156749 1.49697e-06 7.56654e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| amongst the ||| 0.00112233 0.0156749 1.49697e-06 3.02662e-06 2.718 ||| 0-0 ||| 891 668016 +a ||| amongst ||| 0.0074184 0.0156749 3.74243e-05 4.93e-05 2.718 ||| 0-0 ||| 3370 668016 +a ||| amount around it ||| 1 0.0931303 1.49697e-06 3.91346e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| amount around ||| 1 0.0931303 1.49697e-06 2.20065e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| amount earmarked for research into ||| 1 0.107578 1.49697e-06 6.41438e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| amount in ||| 0.0350877 0.0587624 2.99394e-06 1.46181e-05 2.718 ||| 0-1 ||| 57 668016 +a ||| amount of development ||| 0.333333 0.0188479 1.49697e-06 1.18382e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| amount of reassurance on ||| 1 0.0782999 1.49697e-06 3.51236e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| amount of ||| 0.00331754 0.0188479 1.04788e-05 7.19645e-06 2.718 ||| 0-1 ||| 2110 668016 +a ||| amount to no more ||| 0.25 0.229811 1.49697e-06 1.51505e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| amount to no ||| 0.1 0.229811 1.49697e-06 6.63418e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| amount to pay ||| 1 0.229811 1.49697e-06 1.22047e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| amount to waiting ||| 1 0.229811 1.49697e-06 2.26707e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| amount to ||| 0.03125 0.229811 2.24546e-05 8.52284e-05 2.718 ||| 0-1 ||| 480 668016 +a ||| amounted to ||| 0.00628931 0.229811 1.49697e-06 2.13684e-06 2.718 ||| 0-1 ||| 159 668016 +a ||| amounting to ||| 0.00315457 0.229811 1.49697e-06 4.90422e-06 2.718 ||| 0-1 ||| 317 668016 +a ||| amounts in ||| 0.0357143 0.0587624 1.49697e-06 3.63499e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| amounts of ||| 0.00231481 0.0188479 1.49697e-06 1.7895e-06 2.718 ||| 0-1 ||| 432 668016 +a ||| amounts to a facelift with ||| 1 0.0571592 1.49697e-06 1.59132e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| amounts to ||| 0.00872818 0.229811 1.04788e-05 2.11932e-05 2.718 ||| 0-1 ||| 802 668016 +a ||| an absolute disgrace for ||| 0.5 0.0683377 1.49697e-06 8.12351e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| an account of his trip to ||| 0.5 0.229811 1.49697e-06 4.46075e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| an action against such ||| 1 0.05146 1.49697e-06 7.2262e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| an action against ||| 0.111111 0.05146 1.49697e-06 3.49277e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| an adverse effect on ||| 0.0147059 0.0782999 1.49697e-06 3.26245e-13 2.718 ||| 0-3 ||| 68 668016 +a ||| an adviser to ||| 0.111111 0.229811 1.49697e-06 3.42537e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| an affront to ||| 0.010989 0.229811 1.49697e-06 1.08989e-09 2.718 ||| 0-2 ||| 91 668016 +a ||| an agreement at ||| 0.00480769 0.204175 1.49697e-06 2.78804e-08 2.718 ||| 0-2 ||| 208 668016 +a ||| an answer off the ||| 0.25 0.0893962 1.49697e-06 1.56329e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| an answer off ||| 0.25 0.0893962 1.49697e-06 2.54641e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| an application in ||| 0.0909091 0.0587624 1.49697e-06 1.62366e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| an appropriate approach to ||| 0.25 0.229811 1.49697e-06 4.59378e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| an argument in ||| 0.0909091 0.0587624 1.49697e-06 8.65238e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| an assessment of ||| 0.00307692 0.0188479 1.49697e-06 5.71884e-09 2.718 ||| 0-2 ||| 325 668016 +a ||| an attack on ||| 0.00337838 0.0782999 1.49697e-06 4.97406e-09 2.718 ||| 0-2 ||| 296 668016 +a ||| an attempt to shut ||| 1 0.229811 1.49697e-06 2.01513e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| an attempt to ||| 0.00501882 0.229811 5.98788e-06 1.30008e-07 2.718 ||| 0-2 ||| 797 668016 +a ||| an earlier ||| 0.0175439 0.031057 1.49697e-06 6.93818e-07 2.718 ||| 0-1 ||| 57 668016 +a ||| an effort on ||| 0.166667 0.0782999 1.49697e-06 1.49222e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| an effort to ||| 0.00261097 0.229811 1.49697e-06 1.37793e-07 2.718 ||| 0-2 ||| 383 668016 +a ||| an encouragement to ||| 0.0322581 0.229811 1.49697e-06 1.46357e-08 2.718 ||| 0-2 ||| 31 668016 +a ||| an end at the ||| 0.5 0.204175 1.49697e-06 4.04085e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| an end at ||| 0.333333 0.204175 1.49697e-06 6.58207e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| an end in favour of current ||| 0.5 0.0587624 1.49697e-06 3.36761e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| an end in favour of ||| 0.5 0.0587624 1.49697e-06 2.04346e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| an end in favour ||| 0.5 0.0587624 1.49697e-06 3.75884e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| an end in ||| 0.00325733 0.0587624 1.49697e-06 1.16193e-07 2.718 ||| 0-2 ||| 307 668016 +a ||| an end is put to ||| 0.25 0.229811 1.49697e-06 2.34102e-11 2.718 ||| 0-4 ||| 4 668016 +a ||| an end to ||| 0.0100446 0.229811 1.34727e-05 6.77444e-07 2.718 ||| 0-2 ||| 896 668016 +a ||| an endeavour to ||| 0.0714286 0.229811 1.49697e-06 2.52232e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| an especially concrete contribution to seeing ||| 1 0.229811 1.49697e-06 1.87722e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| an especially concrete contribution to ||| 1 0.229811 1.49697e-06 3.52198e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| an exemption for ||| 0.0294118 0.0683377 1.49697e-06 9.99061e-10 2.718 ||| 0-2 ||| 34 668016 +a ||| an expert report on ||| 0.5 0.0782999 1.49697e-06 7.94813e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| an explanation in ||| 0.166667 0.0587624 1.49697e-06 5.18074e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| an expression of our ||| 0.0322581 0.0188479 1.49697e-06 7.3808e-12 2.718 ||| 0-2 ||| 31 668016 +a ||| an expression of ||| 0.00306748 0.0188479 1.49697e-06 5.35073e-09 2.718 ||| 0-2 ||| 326 668016 +a ||| an extension to his ||| 0.5 0.229811 1.49697e-06 7.90707e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| an extension to ||| 0.0416667 0.229811 2.99394e-06 2.63131e-08 2.718 ||| 0-2 ||| 48 668016 +a ||| an hour to ||| 0.142857 0.229811 1.49697e-06 2.17978e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| an idea for you ||| 1 0.0683377 1.49697e-06 1.18557e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| an idea for ||| 0.0625 0.0683377 1.49697e-06 3.67196e-08 2.718 ||| 0-2 ||| 16 668016 +a ||| an image of ||| 0.0166667 0.0188479 1.49697e-06 1.74852e-09 2.718 ||| 0-2 ||| 60 668016 +a ||| an impact on ||| 0.00357143 0.0782999 1.49697e-06 1.38937e-08 2.718 ||| 0-2 ||| 280 668016 +a ||| an important boost for ||| 0.166667 0.0683377 1.49697e-06 1.08689e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| an important task to fulfil ||| 0.5 0.229811 1.49697e-06 1.92652e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| an important task to ||| 0.111111 0.229811 1.49697e-06 7.52547e-11 2.718 ||| 0-3 ||| 9 668016 +a ||| an impression on ||| 0.125 0.0782999 1.49697e-06 4.43451e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| an impression upon ||| 1 0.19056 1.49697e-06 2.3046e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| an in ||| 0.125 0.0587624 1.49697e-06 0.000267049 2.718 ||| 0-1 ||| 8 668016 +a ||| an increase in ||| 0.00110742 0.0587624 2.99394e-06 3.45027e-08 2.718 ||| 0-2 ||| 1806 668016 +a ||| an insight into ||| 0.025641 0.107578 1.49697e-06 1.45792e-10 2.718 ||| 0-2 ||| 39 668016 +a ||| an insult to ||| 0.00662252 0.229811 1.49697e-06 6.22794e-09 2.718 ||| 0-2 ||| 151 668016 +a ||| an international dimension to ||| 0.25 0.229811 1.49697e-06 3.82019e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| an invitation onto ||| 1 0.207143 1.49697e-06 6.88173e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| an invite ||| 0.333333 0.330028 1.49697e-06 2.83572e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| an issue for ||| 0.0254777 0.0683377 5.98788e-06 1.23949e-07 2.718 ||| 0-2 ||| 157 668016 +a ||| an issue of ||| 0.00239808 0.0188479 1.49697e-06 9.94946e-08 2.718 ||| 0-2 ||| 417 668016 +a ||| an objective study is to determine whether ||| 1 0.229811 1.49697e-06 6.98584e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| an objective study is to determine ||| 1 0.229811 1.49697e-06 2.65925e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| an objective study is to ||| 1 0.229811 1.49697e-06 1.10342e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| an obligation to ||| 0.00289017 0.229811 1.49697e-06 3.19182e-08 2.718 ||| 0-2 ||| 346 668016 +a ||| an open door for ||| 0.25 0.0683377 1.49697e-06 1.19598e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| an opportunity to honour ||| 1 0.229811 1.49697e-06 5.2379e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| an opportunity to ||| 0.00182704 0.229811 4.49091e-06 2.80102e-07 2.718 ||| 0-2 ||| 1642 668016 +a ||| an undertaking that you will ||| 1 0.0561595 1.49697e-06 1.01654e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| ancient culinary traditions is crucial to preserving ||| 1 0.229811 1.49697e-06 3.72941e-29 2.718 ||| 0-5 ||| 1 668016 +a ||| ancient culinary traditions is crucial to ||| 1 0.229811 1.49697e-06 6.43001e-24 2.718 ||| 0-5 ||| 1 668016 +a ||| and ' when ' need to ||| 0.25 0.229811 1.49697e-06 2.37293e-14 2.718 ||| 0-5 ||| 4 668016 +a ||| and , above all , through ||| 0.2 0.230708 1.49697e-06 8.67204e-13 2.718 ||| 0-5 ||| 5 668016 +a ||| and , at the ||| 0.00212766 0.204175 2.99394e-06 3.12123e-06 2.718 ||| 0-2 ||| 940 668016 +a ||| and , at ||| 0.00537634 0.204175 2.99394e-06 5.08411e-05 2.718 ||| 0-2 ||| 372 668016 +a ||| and , by the ||| 0.037037 0.0015873 1.49697e-06 7.41649e-08 2.718 ||| 0-0 ||| 27 668016 +a ||| and , by ||| 0.004329 0.0015873 1.49697e-06 1.20806e-06 2.718 ||| 0-0 ||| 231 668016 +a ||| and , here ||| 0.0555556 0.0182742 1.49697e-06 1.28435e-06 2.718 ||| 0-2 ||| 18 668016 +a ||| and , in spite ||| 0.0666667 0.0587624 1.49697e-06 1.71422e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| and , in ||| 0.00110108 0.0587624 7.48485e-06 8.97496e-05 2.718 ||| 0-2 ||| 4541 668016 +a ||| and , to ||| 0.0027248 0.229811 1.49697e-06 0.000523271 2.718 ||| 0-2 ||| 367 668016 +a ||| and , ||| 0.000142202 0.0015873 5.98788e-06 0.000230102 2.718 ||| 0-0 ||| 28129 668016 +a ||| and 17 , on ||| 1 0.0782999 1.49697e-06 4.3067e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| and 2005 ||| 0.00990099 0.0015873 1.49697e-06 2.43117e-08 2.718 ||| 0-0 ||| 101 668016 +a ||| and Bordeaux as to ||| 0.5 0.229811 1.49697e-06 1.79101e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| and Consumer Policy about ||| 1 0.0526361 1.49697e-06 6.6601e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| and Consumer Policy by ||| 0.5 0.0337966 1.49697e-06 1.08737e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| and Consumer Policy to ||| 0.142857 0.229811 1.49697e-06 4.6297e-11 2.718 ||| 0-3 ||| 7 668016 +a ||| and Consumer Policy ||| 0.00154799 0.0015873 1.49697e-06 2.03585e-11 2.718 ||| 0-0 ||| 646 668016 +a ||| and Consumer Protection to ||| 0.142857 0.229811 1.49697e-06 1.70266e-11 2.718 ||| 0-3 ||| 7 668016 +a ||| and Consumer ||| 0.0070922 0.0015873 1.49697e-06 2.10316e-07 2.718 ||| 0-0 ||| 141 668016 +a ||| and Defence Policy ||| 0.00140845 0.0015873 1.49697e-06 5.64062e-12 2.718 ||| 0-0 ||| 710 668016 +a ||| and Defence ||| 0.00714286 0.0015873 1.49697e-06 5.82709e-08 2.718 ||| 0-0 ||| 140 668016 +a ||| and Democrats in ||| 0.00392157 0.0587624 1.49697e-06 8.01506e-08 2.718 ||| 0-2 ||| 255 668016 +a ||| and EUR ||| 0.0704225 0.0056764 7.48485e-06 2.94056e-07 2.718 ||| 0-0 0-1 ||| 71 668016 +a ||| and Energy with ||| 0.5 0.0571592 1.49697e-06 4.97708e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| and European Democrats to ||| 0.0416667 0.229811 1.49697e-06 1.56262e-09 2.718 ||| 0-3 ||| 24 668016 +a ||| and I , to ||| 1 0.229811 1.49697e-06 3.70136e-06 2.718 ||| 0-3 ||| 1 668016 +a ||| and I also want to thank ||| 0.166667 0.229811 1.49697e-06 7.75039e-15 2.718 ||| 0-4 ||| 6 668016 +a ||| and I also want to ||| 0.0909091 0.229811 1.49697e-06 7.32551e-11 2.718 ||| 0-4 ||| 11 668016 +a ||| and I am in agreement with ||| 0.2 0.0571592 1.49697e-06 7.45459e-15 2.718 ||| 0-5 ||| 5 668016 +a ||| and I believe ||| 0.000489476 0.0015873 1.49697e-06 4.24872e-09 2.718 ||| 0-0 ||| 2043 668016 +a ||| and I can understand why , over ||| 1 0.0682544 1.49697e-06 1.40541e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| and I give you ||| 0.25 0.0015873 1.49697e-06 2.67042e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| and I give ||| 0.0769231 0.0015873 1.49697e-06 8.27088e-09 2.718 ||| 0-0 ||| 13 668016 +a ||| and I make it to ||| 1 0.229811 1.49697e-06 9.59169e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| and I participated in ||| 0.5 0.0587624 1.49697e-06 1.91643e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| and I shall be ||| 0.03125 0.131911 1.49697e-06 3.87798e-09 2.718 ||| 0-2 ||| 32 668016 +a ||| and I shall ||| 0.00628931 0.131911 1.49697e-06 2.13983e-07 2.718 ||| 0-2 ||| 159 668016 +a ||| and I should just ||| 0.5 0.0015873 1.49697e-06 7.63022e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| and I should ||| 0.00653595 0.0015873 1.49697e-06 6.04757e-08 2.718 ||| 0-0 ||| 153 668016 +a ||| and I support both ||| 1 0.0027239 1.49697e-06 2.18392e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| and I support ||| 0.00384615 0.0027239 1.49697e-06 1.3184e-08 2.718 ||| 0-2 ||| 260 668016 +a ||| and I wish to conclude ||| 0.5 0.229811 1.49697e-06 2.20436e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| and I wish to thank them ||| 0.5 0.0015873 1.49697e-06 1.0143e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| and I wish to thank ||| 0.0222222 0.0015873 1.49697e-06 3.78131e-14 2.718 ||| 0-0 ||| 45 668016 +a ||| and I wish to ||| 0.010582 0.0015873 2.99394e-06 3.57402e-10 2.718 ||| 0-0 ||| 189 668016 +a ||| and I wish ||| 0.00414938 0.0015873 1.49697e-06 4.02216e-09 2.718 ||| 0-0 ||| 241 668016 +a ||| and I would like to offer them ||| 0.25 0.229811 1.49697e-06 9.92648e-17 2.718 ||| 0-4 ||| 4 668016 +a ||| and I would like to offer ||| 0.125 0.229811 1.49697e-06 3.7006e-14 2.718 ||| 0-4 ||| 8 668016 +a ||| and I would like to ||| 0.00409277 0.229811 4.49091e-06 3.23479e-10 2.718 ||| 0-4 ||| 733 668016 +a ||| and I would ||| 0.000968992 0.0013612 1.49697e-06 5.42803e-08 2.718 ||| 0-1 ||| 1032 668016 +a ||| and I ||| 0.000892857 0.0015873 1.79636e-05 1.36483e-05 2.718 ||| 0-0 ||| 13440 668016 +a ||| and Industrial Policy to ||| 0.166667 0.229811 1.49697e-06 3.52537e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| and Israeli delegations to engage in ||| 1 0.0587624 1.49697e-06 1.28377e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| and Member States should do more to ||| 1 0.229811 1.49697e-06 3.75074e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| and Monetary Affairs and Industrial Policy to ||| 0.2 0.229811 1.49697e-06 4.52977e-23 2.718 ||| 0-6 ||| 5 668016 +a ||| and Mr Mulder and thank them for ||| 1 0.0683377 1.49697e-06 1.49953e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| and New ||| 0.00970874 0.0015873 1.49697e-06 2.2961e-08 2.718 ||| 0-0 ||| 103 668016 +a ||| and Reform Party , to ||| 0.111111 0.229811 1.49697e-06 3.03801e-12 2.718 ||| 0-4 ||| 9 668016 +a ||| and Reform Party for ||| 0.333333 0.0683377 1.49697e-06 2.67973e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| and Tourism , ||| 0.00218818 0.0001191 1.49697e-06 8.27862e-11 2.718 ||| 0-2 ||| 457 668016 +a ||| and a longer time to reconstruct and ||| 1 0.229811 1.49697e-06 5.2494e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| and a longer time to reconstruct ||| 1 0.229811 1.49697e-06 4.19084e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| and a longer time to ||| 1 0.229811 1.49697e-06 5.98691e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| and abandoning ||| 0.0526316 0.107143 1.49697e-06 5.83707e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| and about ||| 0.00209205 0.0015873 2.99394e-06 2.72889e-06 2.718 ||| 0-0 ||| 956 668016 +a ||| and above all , ||| 0.00512821 0.0015873 1.49697e-06 1.40917e-10 2.718 ||| 0-0 ||| 195 668016 +a ||| and above all ||| 0.00094697 0.0015873 1.49697e-06 1.18165e-09 2.718 ||| 0-0 ||| 1056 668016 +a ||| and above ||| 0.000747384 0.0015873 1.49697e-06 2.50063e-07 2.718 ||| 0-0 ||| 1338 668016 +a ||| and actions in ||| 0.0384615 0.0587624 1.49697e-06 5.25306e-08 2.718 ||| 0-2 ||| 26 668016 +a ||| and again ||| 0.00634921 0.0700825 5.98788e-06 2.904e-05 2.718 ||| 0-1 ||| 630 668016 +a ||| and against the ||| 0.005 0.05146 1.49697e-06 1.99898e-06 2.718 ||| 0-1 ||| 200 668016 +a ||| and against two peoples in ||| 0.5 0.0587624 1.49697e-06 5.94296e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| and against ||| 0.00359281 0.05146 4.49091e-06 3.25611e-05 2.718 ||| 0-1 ||| 835 668016 +a ||| and all ||| 0.000255493 0.00274345 1.49697e-06 1.06721e-06 2.718 ||| 0-0 0-1 ||| 3914 668016 +a ||| and allocated it to ||| 1 0.229811 1.49697e-06 3.48013e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| and also the most important issue for ||| 1 0.0683377 1.49697e-06 1.79496e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| and also to the delegation ||| 1 0.229811 1.49697e-06 1.95837e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| and also to the ||| 0.00478469 0.229811 1.49697e-06 1.35998e-06 2.718 ||| 0-2 ||| 209 668016 +a ||| and also to ||| 0.00097371 0.229811 1.49697e-06 2.21525e-05 2.718 ||| 0-2 ||| 1027 668016 +a ||| and also with ||| 0.00446429 0.0571592 1.49697e-06 1.05577e-06 2.718 ||| 0-2 ||| 224 668016 +a ||| and also ||| 0.000354453 0.0015873 5.98788e-06 9.74127e-06 2.718 ||| 0-0 ||| 11285 668016 +a ||| and an economic system that is ||| 1 0.0015873 1.49697e-06 1.5296e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| and an economic system that ||| 1 0.0015873 1.49697e-06 4.88049e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| and an economic system ||| 1 0.0015873 1.49697e-06 2.90133e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| and an economic ||| 0.047619 0.0015873 1.49697e-06 1.04027e-09 2.718 ||| 0-0 ||| 21 668016 +a ||| and an ||| 0.000349895 0.0015873 1.49697e-06 8.57605e-06 2.718 ||| 0-0 ||| 2858 668016 +a ||| and answer ||| 0.0120482 0.0026107 1.49697e-06 2.63044e-07 2.718 ||| 0-1 ||| 83 668016 +a ||| and application at a ||| 1 0.204175 1.49697e-06 1.14895e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| and application at ||| 1 0.204175 1.49697e-06 2.59205e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| and are already ||| 0.0833333 0.0015873 1.49697e-06 1.35576e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| and are subject to ||| 0.0285714 0.229811 1.49697e-06 3.59374e-08 2.718 ||| 0-3 ||| 35 668016 +a ||| and are ||| 0.000343879 0.0015873 1.49697e-06 2.92757e-05 2.718 ||| 0-0 ||| 2908 668016 +a ||| and as ||| 0.000357654 0.0243476 1.49697e-06 0.000109882 2.718 ||| 0-1 ||| 2796 668016 +a ||| and asked ||| 0.01 0.0455787 1.49697e-06 1.58508e-06 2.718 ||| 0-0 0-1 ||| 100 668016 +a ||| and assistance to ||| 0.0185185 0.229811 1.49697e-06 2.18076e-07 2.718 ||| 0-2 ||| 54 668016 +a ||| and assists ||| 0.111111 0.252525 1.49697e-06 2.85591e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| and at that ||| 0.0285714 0.204175 1.49697e-06 7.17145e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| and at ||| 0.00801509 0.204175 2.54485e-05 0.000426324 2.718 ||| 0-1 ||| 2121 668016 +a ||| and attention to ||| 0.0333333 0.229811 1.49697e-06 1.14654e-06 2.718 ||| 0-2 ||| 30 668016 +a ||| and available from ||| 1 0.0435582 1.49697e-06 2.86835e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| and away ||| 0.0204082 0.0015873 1.49697e-06 6.13774e-07 2.718 ||| 0-0 ||| 49 668016 +a ||| and barrel , to ||| 1 0.229811 1.49697e-06 1.30818e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| and barrel to ||| 1 0.229811 1.49697e-06 1.09696e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| and be in ||| 0.0666667 0.0587624 1.49697e-06 1.36391e-05 2.718 ||| 0-2 ||| 15 668016 +a ||| and because ||| 0.00170794 0.0015873 2.99394e-06 6.34034e-07 2.718 ||| 0-0 ||| 1171 668016 +a ||| and beyond ||| 0.00156495 0.0015873 1.49697e-06 1.4452e-07 2.718 ||| 0-0 ||| 639 668016 +a ||| and blaming ||| 0.0666667 0.356828 1.49697e-06 9.25664e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| and both in the ||| 1 0.0587624 1.49697e-06 7.65348e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| and both in ||| 1 0.0587624 1.49697e-06 1.24666e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| and bring it in line with ||| 0.5 0.0571592 1.49697e-06 7.29508e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| and burns down a considerable amount around ||| 1 0.0931303 1.49697e-06 4.2222e-24 2.718 ||| 0-6 ||| 1 668016 +a ||| and by ||| 0.000296648 0.0337966 1.49697e-06 0.000103057 2.718 ||| 0-1 ||| 3371 668016 +a ||| and can give ||| 0.0909091 0.0241455 1.49697e-06 2.09489e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| and can leave with ||| 1 0.0571592 1.49697e-06 5.9089e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| and carry out ||| 0.0102041 0.0669777 1.49697e-06 9.42616e-09 2.718 ||| 0-2 ||| 98 668016 +a ||| and cause ||| 0.00925926 0.0015873 1.49697e-06 3.48661e-07 2.718 ||| 0-0 ||| 108 668016 +a ||| and causing ||| 0.0144928 0.0015873 1.49697e-06 5.69202e-08 2.718 ||| 0-0 ||| 69 668016 +a ||| and certain ||| 0.00255102 0.0015873 1.49697e-06 5.49908e-07 2.718 ||| 0-0 ||| 392 668016 +a ||| and chance I meant ||| 1 0.0015873 1.49697e-06 7.15042e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| and chance I ||| 1 0.0015873 1.49697e-06 8.99424e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| and chance ||| 0.25 0.0015873 1.49697e-06 1.27154e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| and child rapists , for example , ||| 1 0.0683377 1.49697e-06 2.52994e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| and child rapists , for example ||| 1 0.0683377 1.49697e-06 2.12146e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| and child rapists , for ||| 1 0.0683377 1.49697e-06 7.28773e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| and choosing ||| 0.04 0.0015873 1.49697e-06 1.11911e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| and civic ||| 0.0416667 0.0029762 1.49697e-06 1.12733e-08 2.718 ||| 0-1 ||| 24 668016 +a ||| and clinical approach to ||| 1 0.229811 1.49697e-06 1.058e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| and close working ||| 1 0.0015873 1.49697e-06 5.4482e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| and close ||| 0.00787402 0.0015873 1.49697e-06 2.86145e-07 2.718 ||| 0-0 ||| 127 668016 +a ||| and comprehensive answers to ||| 1 0.229811 1.49697e-06 2.38839e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| and concern ||| 0.00938967 0.0015873 2.99394e-06 2.57588e-07 2.718 ||| 0-0 ||| 213 668016 +a ||| and conducting ||| 0.025641 0.140069 1.49697e-06 1.39539e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| and congratulate ||| 0.00819672 0.245244 2.99394e-06 4.17075e-05 2.718 ||| 0-1 ||| 244 668016 +a ||| and congratulating the rapporteur , ||| 0.166667 0.129156 1.49697e-06 6.0504e-13 2.718 ||| 0-0 0-1 ||| 6 668016 +a ||| and congratulating the rapporteur ||| 0.1 0.129156 1.49697e-06 5.07351e-12 2.718 ||| 0-0 0-1 ||| 10 668016 +a ||| and congratulating the ||| 0.0555556 0.129156 1.49697e-06 7.0173e-08 2.718 ||| 0-0 0-1 ||| 18 668016 +a ||| and congratulating ||| 0.0243902 0.129156 1.49697e-06 1.14304e-06 2.718 ||| 0-0 0-1 ||| 41 668016 +a ||| and consider ||| 0.00420168 0.0015873 1.49697e-06 3.06983e-07 2.718 ||| 0-0 ||| 238 668016 +a ||| and consumption will not be affected in ||| 1 0.0587624 1.49697e-06 4.45369e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| and contractors from ||| 1 0.0435582 1.49697e-06 6.312e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| and control of ||| 0.00462963 0.0188479 1.49697e-06 2.84171e-08 2.718 ||| 0-2 ||| 216 668016 +a ||| and cooperation of ||| 0.0294118 0.0188479 1.49697e-06 3.41228e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| and cooperation to ||| 0.0714286 0.0015873 1.49697e-06 1.57907e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| and cooperation ||| 0.00109111 0.0015873 2.99394e-06 1.77707e-07 2.718 ||| 0-0 ||| 1833 668016 +a ||| and dare ||| 0.0714286 0.188525 1.49697e-06 2.36614e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| and deal with ||| 0.00854701 0.0571592 1.49697e-06 8.87928e-08 2.718 ||| 0-2 ||| 117 668016 +a ||| and demands that ||| 0.047619 0.0015873 1.49697e-06 1.24961e-09 2.718 ||| 0-0 ||| 21 668016 +a ||| and demands ||| 0.00507614 0.0015873 1.49697e-06 7.42858e-08 2.718 ||| 0-0 ||| 197 668016 +a ||| and depth to ||| 1 0.229811 1.49697e-06 6.31849e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| and detailed information ||| 0.125 0.0015873 1.49697e-06 8.04717e-12 2.718 ||| 0-0 ||| 8 668016 +a ||| and detailed ||| 0.00421941 0.0015873 1.49697e-06 4.86234e-08 2.718 ||| 0-0 ||| 237 668016 +a ||| and develop international law . ||| 1 0.0015873 1.49697e-06 4.88077e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| and develop international law ||| 1 0.0015873 1.49697e-06 1.61135e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| and develop international ||| 1 0.0015873 1.49697e-06 9.13981e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| and develop ||| 0.0016129 0.0015873 1.49697e-06 1.18085e-07 2.718 ||| 0-0 ||| 620 668016 +a ||| and discussion to ||| 1 0.229811 1.49697e-06 3.7911e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| and disseminated a courageous idea : that ||| 1 0.0007376 1.49697e-06 3.00542e-25 2.718 ||| 0-5 ||| 1 668016 +a ||| and disseminated a courageous idea : ||| 1 0.0007376 1.49697e-06 1.78664e-23 2.718 ||| 0-5 ||| 1 668016 +a ||| and done , to ||| 1 0.229811 1.49697e-06 2.38612e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| and done with ||| 0.2 0.0015873 1.49697e-06 5.62621e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| and done ||| 0.00793651 0.0015873 1.49697e-06 8.79852e-07 2.718 ||| 0-0 ||| 126 668016 +a ||| and down ||| 0.0263158 0.0015873 1.49697e-06 1.34698e-06 2.718 ||| 0-0 ||| 38 668016 +a ||| and drink ||| 0.0212766 0.0015873 1.49697e-06 1.52431e-08 2.718 ||| 0-0 ||| 47 668016 +a ||| and dry ||| 0.0357143 0.0015873 1.49697e-06 1.73655e-08 2.718 ||| 0-0 ||| 28 668016 +a ||| and each nation alone , to ||| 1 0.229811 1.49697e-06 2.10981e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| and educating people ||| 0.5 0.094014 1.49697e-06 8.5257e-11 2.718 ||| 0-0 0-1 ||| 2 668016 +a ||| and educating ||| 0.025641 0.094014 1.49697e-06 9.68609e-08 2.718 ||| 0-0 0-1 ||| 39 668016 +a ||| and effectively : people went to Galicia ||| 1 0.0007376 1.49697e-06 2.91511e-25 2.718 ||| 0-2 ||| 1 668016 +a ||| and effectively : people went to ||| 1 0.0007376 1.49697e-06 2.08222e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| and effectively : people went ||| 1 0.0007376 1.49697e-06 2.3433e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| and effectively : people ||| 1 0.0007376 1.49697e-06 3.67866e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| and effectively : ||| 1 0.0007376 1.49697e-06 4.17934e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| and effort to ||| 0.0714286 0.229811 1.49697e-06 3.88324e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| and enter into ||| 0.0588235 0.107578 2.99394e-06 3.75104e-09 2.718 ||| 0-2 ||| 34 668016 +a ||| and equally ||| 0.0133333 0.0015873 1.49697e-06 6.73396e-08 2.718 ||| 0-0 ||| 75 668016 +a ||| and establish them in ||| 1 0.0587624 1.49697e-06 1.5403e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| and fast ||| 0.0149254 0.001442 1.49697e-06 2.25466e-08 2.718 ||| 0-1 ||| 67 668016 +a ||| and following ||| 0.0045045 0.0015873 1.49697e-06 2.4659e-07 2.718 ||| 0-0 ||| 222 668016 +a ||| and for all , be of central ||| 1 0.0683377 1.49697e-06 6.99592e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| and for all , be of ||| 1 0.0683377 1.49697e-06 2.56261e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| and for all , be ||| 1 0.0683377 1.49697e-06 4.71379e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| and for all , ||| 0.0740741 0.0683377 2.99394e-06 2.60101e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| and for all at the ||| 1 0.0683377 1.49697e-06 5.60689e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| and for all at ||| 1 0.0683377 1.49697e-06 9.13296e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| and for all to ||| 0.1 0.0683377 1.49697e-06 1.93805e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| and for all ||| 0.0265487 0.0683377 1.34727e-05 2.18106e-06 2.718 ||| 0-1 ||| 339 668016 +a ||| and for tackling ||| 0.111111 0.0598805 1.49697e-06 4.71715e-08 2.718 ||| 0-1 0-2 ||| 9 668016 +a ||| and for the conversion of printed publications ||| 1 0.0015873 1.49697e-06 3.12177e-24 2.718 ||| 0-0 ||| 1 668016 +a ||| and for the conversion of printed ||| 1 0.0015873 1.49697e-06 1.41898e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| and for the conversion of ||| 1 0.0015873 1.49697e-06 2.3262e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| and for the conversion ||| 1 0.0015873 1.49697e-06 4.27894e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| and for the ||| 0.000337838 0.0015873 1.49697e-06 9.10413e-07 2.718 ||| 0-0 ||| 2960 668016 +a ||| and for ||| 0.00205927 0.0683377 3.44303e-05 0.000461561 2.718 ||| 0-1 ||| 11169 668016 +a ||| and force it into ||| 0.166667 0.107578 1.49697e-06 2.3029e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| and forced to ||| 0.0384615 0.229811 1.49697e-06 3.09343e-07 2.718 ||| 0-2 ||| 26 668016 +a ||| and forced ||| 0.0121951 0.0684932 1.49697e-06 3.48721e-06 2.718 ||| 0-1 ||| 82 668016 +a ||| and foremost about ensuring ||| 1 0.0526361 1.49697e-06 2.85322e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| and foremost about ||| 0.125 0.0526361 1.49697e-06 2.45544e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| and foremost at ||| 0.111111 0.204175 1.49697e-06 1.6584e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| and forwarded to ||| 0.166667 0.229811 1.49697e-06 1.40411e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| and forwards ||| 0.037037 0.0015873 1.49697e-06 2.35399e-08 2.718 ||| 0-0 ||| 27 668016 +a ||| and from other socialist and left-wing ||| 0.5 0.0015873 1.49697e-06 7.76507e-23 2.718 ||| 0-4 ||| 2 668016 +a ||| and from other socialist and ||| 0.5 0.0015873 1.49697e-06 7.05916e-17 2.718 ||| 0-4 ||| 2 668016 +a ||| and from the outset , ||| 0.5 0.0435582 1.49697e-06 1.28073e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| and from the outset ||| 0.5 0.0435582 1.49697e-06 1.07394e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| and from the ||| 0.00171821 0.0435582 1.49697e-06 5.53579e-06 2.718 ||| 0-1 ||| 582 668016 +a ||| and from ||| 0.0019084 0.0435582 4.49091e-06 9.01714e-05 2.718 ||| 0-1 ||| 1572 668016 +a ||| and frozen at ||| 1 0.204175 1.49697e-06 2.00372e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| and geared it to ||| 1 0.229811 1.49697e-06 1.01439e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| and gentlemen , to petition ||| 1 0.229811 1.49697e-06 9.0395e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| and gentlemen , to ||| 0.0714286 0.229811 1.49697e-06 3.6158e-08 2.718 ||| 0-3 ||| 14 668016 +a ||| and gentlemen , ||| 0.000263366 0.0015873 1.49697e-06 1.59e-08 2.718 ||| 0-0 ||| 3797 668016 +a ||| and gentlemen ||| 0.000260417 0.0015873 1.49697e-06 1.33328e-07 2.718 ||| 0-0 ||| 3840 668016 +a ||| and get to know ||| 0.333333 0.229811 1.49697e-06 4.94938e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| and get to ||| 0.111111 0.229811 1.49697e-06 1.91836e-06 2.718 ||| 0-2 ||| 9 668016 +a ||| and give ||| 0.00396825 0.0015873 4.49091e-06 1.16928e-06 2.718 ||| 0-0 ||| 756 668016 +a ||| and given instead to ||| 1 0.229811 1.49697e-06 6.07997e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| and given ||| 0.00253807 0.0371011 1.49697e-06 1.32399e-05 2.718 ||| 0-1 ||| 394 668016 +a ||| and grief over ||| 0.5 0.0682544 1.49697e-06 1.36753e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| and growth ||| 0.00133511 0.0015873 1.49697e-06 9.30019e-08 2.718 ||| 0-0 ||| 749 668016 +a ||| and has done so in ||| 0.125 0.0587624 1.49697e-06 4.00947e-12 2.718 ||| 0-4 ||| 8 668016 +a ||| and have a good ||| 0.2 0.0015873 1.49697e-06 5.30466e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| and have a ||| 0.0046729 0.0015873 1.49697e-06 1.02288e-06 2.718 ||| 0-0 ||| 214 668016 +a ||| and have allowed itself to proceed to ||| 1 0.229811 1.49697e-06 1.63963e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| and have allowed itself to proceed ||| 1 0.229811 1.49697e-06 1.84523e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| and have allowed itself to ||| 1 0.229811 1.49697e-06 5.76633e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| and have ||| 0.00197006 0.0015873 7.48485e-06 2.30764e-05 2.718 ||| 0-0 ||| 2538 668016 +a ||| and help ||| 0.00405954 0.259976 4.49091e-06 8.23866e-05 2.718 ||| 0-1 ||| 739 668016 +a ||| and helps ||| 0.0102041 0.27467 1.49697e-06 4.99658e-06 2.718 ||| 0-1 ||| 98 668016 +a ||| and here ||| 0.00131752 0.00993075 1.49697e-06 1.65898e-06 2.718 ||| 0-0 0-1 ||| 759 668016 +a ||| and himself to ||| 1 0.229811 1.49697e-06 3.25139e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| and if we want ||| 0.025641 0.0008079 1.49697e-06 2.21954e-12 2.718 ||| 0-2 ||| 39 668016 +a ||| and if we ||| 0.00609756 0.0008079 1.49697e-06 4.74767e-09 2.718 ||| 0-2 ||| 164 668016 +a ||| and improving the link between ||| 1 0.0015873 1.49697e-06 1.65367e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| and improving the link ||| 1 0.0015873 1.49697e-06 6.26866e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| and improving the ||| 0.00480769 0.0015873 1.49697e-06 2.55864e-09 2.718 ||| 0-0 ||| 208 668016 +a ||| and improving ||| 0.00140647 0.0015873 1.49697e-06 4.16772e-08 2.718 ||| 0-0 ||| 711 668016 +a ||| and in a manner that ||| 0.166667 0.0587624 1.49697e-06 1.09425e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| and in a manner ||| 0.111111 0.0587624 1.49697e-06 6.50501e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| and in a ||| 0.00251889 0.0587624 1.49697e-06 3.3359e-05 2.718 ||| 0-1 ||| 397 668016 +a ||| and in fact the number ||| 1 0.0587624 1.49697e-06 6.6967e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| and in fact the ||| 0.0555556 0.0587624 1.49697e-06 1.35342e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| and in fact ||| 0.00588235 0.0587624 1.49697e-06 2.20455e-06 2.718 ||| 0-1 ||| 170 668016 +a ||| and in particular , helping ||| 1 0.302272 1.49697e-06 2.34189e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| and in so doing ||| 0.0144928 0.0015873 1.49697e-06 3.44114e-11 2.718 ||| 0-0 ||| 69 668016 +a ||| and in so ||| 0.027027 0.0015873 1.49697e-06 9.37386e-08 2.718 ||| 0-0 ||| 37 668016 +a ||| and in such ||| 0.0322581 0.0587624 1.49697e-06 1.55703e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| and in the ||| 0.000656599 0.0587624 4.49091e-06 4.62027e-05 2.718 ||| 0-1 ||| 4569 668016 +a ||| and in which ||| 0.00227273 0.0587624 1.49697e-06 6.39293e-06 2.718 ||| 0-1 ||| 440 668016 +a ||| and in ||| 0.00164033 0.0587624 4.49091e-05 0.000752587 2.718 ||| 0-1 ||| 18289 668016 +a ||| and include ||| 0.0117647 0.0281253 2.99394e-06 3.31561e-06 2.718 ||| 0-1 ||| 170 668016 +a ||| and indeed ||| 0.000664011 0.0015873 1.49697e-06 1.46237e-06 2.718 ||| 0-0 ||| 1506 668016 +a ||| and ineffective in ||| 0.333333 0.0587624 1.49697e-06 3.23613e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| and information ||| 0.00100705 0.0015873 1.49697e-06 3.19332e-07 2.718 ||| 0-0 ||| 993 668016 +a ||| and informing them ||| 0.333333 0.247008 1.49697e-06 6.96181e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| and informing ||| 0.0277778 0.247008 1.49697e-06 2.59537e-06 2.718 ||| 0-1 ||| 36 668016 +a ||| and instead pursue ||| 0.333333 0.0015873 1.49697e-06 1.5271e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| and instead ||| 0.00408163 0.0015873 1.49697e-06 3.89566e-07 2.718 ||| 0-0 ||| 245 668016 +a ||| and intelligence leading ||| 1 0.0015873 1.49697e-06 9.74745e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| and intelligence ||| 0.0108696 0.0015873 1.49697e-06 1.11911e-08 2.718 ||| 0-0 ||| 92 668016 +a ||| and internally structured agenda ||| 1 0.0652418 1.49697e-06 3.28991e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| and internally structured ||| 1 0.0652418 1.49697e-06 3.3131e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| and internally ||| 0.0588235 0.0652418 1.49697e-06 6.6262e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| and into the ||| 0.0106383 0.107578 1.49697e-06 4.67106e-06 2.718 ||| 0-1 ||| 94 668016 +a ||| and into ||| 0.017316 0.107578 5.98788e-06 7.60861e-05 2.718 ||| 0-1 ||| 231 668016 +a ||| and introduce ||| 0.00515464 0.00090805 1.49697e-06 1.73655e-09 2.718 ||| 0-0 0-1 ||| 194 668016 +a ||| and involve ||| 0.010101 0.170498 1.49697e-06 8.56271e-06 2.718 ||| 0-1 ||| 99 668016 +a ||| and involvement to ||| 0.5 0.229811 1.49697e-06 1.31197e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| and is as ||| 0.166667 0.0129675 1.49697e-06 5.3049e-07 2.718 ||| 0-0 0-2 ||| 6 668016 +a ||| and is ignoring every ||| 0.5 0.0015873 1.49697e-06 1.37745e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| and is ignoring ||| 0.5 0.0015873 1.49697e-06 8.46617e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| and is to ||| 0.025641 0.229811 1.49697e-06 0.00013752 2.718 ||| 0-2 ||| 39 668016 +a ||| and is ||| 0.00101317 0.0015873 7.48485e-06 6.04727e-05 2.718 ||| 0-0 ||| 4935 668016 +a ||| and it can be understood as meaning ||| 1 0.0015873 1.49697e-06 1.35142e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| and it can be understood as ||| 1 0.0015873 1.49697e-06 4.41642e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| and it can be understood ||| 1 0.0015873 1.49697e-06 4.32796e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| and it can be ||| 0.0454545 0.0015873 1.49697e-06 1.84955e-09 2.718 ||| 0-0 ||| 22 668016 +a ||| and it can ||| 0.0120482 0.0015873 1.49697e-06 1.02056e-07 2.718 ||| 0-0 ||| 83 668016 +a ||| and it has to do ||| 0.142857 0.229811 1.49697e-06 1.37982e-09 2.718 ||| 0-3 ||| 7 668016 +a ||| and it has to ||| 0.0131579 0.229811 1.49697e-06 4.01659e-07 2.718 ||| 0-3 ||| 76 668016 +a ||| and it is by ||| 0.5 0.0337966 1.49697e-06 5.74382e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| and it is our responsibility , to ||| 1 0.229811 1.49697e-06 4.64647e-14 2.718 ||| 0-6 ||| 1 668016 +a ||| and it is this ||| 0.0126582 0.0015873 1.49697e-06 6.94857e-09 2.718 ||| 0-0 ||| 79 668016 +a ||| and it is true as ||| 0.5 0.0015873 1.49697e-06 1.77336e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| and it is true ||| 0.0114943 0.0015873 1.49697e-06 1.73784e-10 2.718 ||| 0-0 ||| 87 668016 +a ||| and it is ||| 0.000667 0.0015873 5.98788e-06 1.0754e-06 2.718 ||| 0-0 ||| 5997 668016 +a ||| and it should be ||| 0.00699301 0.0015873 1.49697e-06 2.7554e-09 2.718 ||| 0-0 ||| 143 668016 +a ||| and it should ||| 0.00343643 0.0015873 1.49697e-06 1.5204e-07 2.718 ||| 0-0 ||| 291 668016 +a ||| and it ||| 0.00116725 0.0015873 1.04788e-05 3.43127e-05 2.718 ||| 0-0 ||| 5997 668016 +a ||| and join ||| 0.0125 0.207917 1.49697e-06 1.71154e-05 2.718 ||| 0-1 ||| 80 668016 +a ||| and key for good ||| 0.5 0.0683377 1.49697e-06 1.74019e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| and key for ||| 0.5 0.0683377 1.49697e-06 3.35555e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| and killed ||| 0.0135135 0.0015873 1.49697e-06 4.59221e-08 2.718 ||| 0-0 ||| 74 668016 +a ||| and lack of attention to ||| 0.5 0.229811 1.49697e-06 7.57941e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| and large ||| 0.00291545 0.0015873 1.49697e-06 2.96564e-07 2.718 ||| 0-0 ||| 343 668016 +a ||| and later still ||| 0.5 0.0050322 1.49697e-06 7.42636e-11 2.718 ||| 0-0 0-1 ||| 2 668016 +a ||| and later ||| 0.00694444 0.0050322 1.49697e-06 9.85975e-08 2.718 ||| 0-0 0-1 ||| 144 668016 +a ||| and lead to ||| 0.00961538 0.229811 1.49697e-06 8.4466e-07 2.718 ||| 0-2 ||| 104 668016 +a ||| and learning more accessible to ||| 1 0.229811 1.49697e-06 1.87584e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| and left-wing ||| 0.25 0.0015873 1.49697e-06 2.12245e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| and less ||| 0.0013245 0.0015873 1.49697e-06 3.28401e-07 2.718 ||| 0-0 ||| 755 668016 +a ||| and let good ||| 0.25 0.0015873 1.49697e-06 4.08661e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| and let us ||| 0.00854701 0.0071317 1.49697e-06 2.64271e-09 2.718 ||| 0-2 ||| 117 668016 +a ||| and let ||| 0.00689655 0.0015873 2.99394e-06 7.88008e-07 2.718 ||| 0-0 ||| 290 668016 +a ||| and lost all ||| 0.5 0.0038996 1.49697e-06 3.94207e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| and main ||| 0.047619 0.0015873 1.49697e-06 1.92371e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| and make a point of congratulating ||| 1 0.129156 1.49697e-06 4.18732e-15 2.718 ||| 0-0 0-5 ||| 1 668016 +a ||| and make a presentation to ||| 1 0.229811 1.49697e-06 5.34029e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| and make it ||| 0.0035461 0.0015873 1.49697e-06 5.96286e-08 2.718 ||| 0-0 ||| 282 668016 +a ||| and make ||| 0.00125313 0.0015873 2.99394e-06 3.35309e-06 2.718 ||| 0-0 ||| 1596 668016 +a ||| and making ||| 0.00172414 0.0145639 1.49697e-06 8.80624e-07 2.718 ||| 0-0 0-1 ||| 580 668016 +a ||| and malfunctions , ||| 1 0.0015873 1.49697e-06 9.20408e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| and malfunctions ||| 0.5 0.0015873 1.49697e-06 7.718e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| and may even become corrupt ||| 0.5 0.0015873 1.49697e-06 8.04199e-19 2.718 ||| 0-0 ||| 2 668016 +a ||| and may even become ||| 0.5 0.0015873 1.49697e-06 2.51312e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| and may even ||| 0.0285714 0.0015873 1.49697e-06 8.79636e-10 2.718 ||| 0-0 ||| 35 668016 +a ||| and may ||| 0.00219298 0.0015873 1.49697e-06 1.44558e-06 2.718 ||| 0-0 ||| 456 668016 +a ||| and meaning another ||| 0.166667 0.0015873 1.49697e-06 1.42352e-11 2.718 ||| 0-0 ||| 6 668016 +a ||| and meaning ||| 0.037037 0.0015873 1.49697e-06 5.90427e-08 2.718 ||| 0-0 ||| 27 668016 +a ||| and means ||| 0.00340136 0.0015873 1.49697e-06 1.22272e-06 2.718 ||| 0-0 ||| 294 668016 +a ||| and medicinal product ||| 1 0.0015873 1.49697e-06 5.04448e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| and medicinal ||| 0.333333 0.0015873 1.49697e-06 8.29685e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| and medium-sized enterprises with ||| 0.0714286 0.0571592 1.49697e-06 3.89593e-14 2.718 ||| 0-3 ||| 14 668016 +a ||| and meet ||| 0.00645161 0.0249022 1.49697e-06 7.57329e-07 2.718 ||| 0-0 0-1 ||| 155 668016 +a ||| and meeting ||| 0.00653595 0.0015873 1.49697e-06 2.42345e-07 2.718 ||| 0-0 ||| 153 668016 +a ||| and might lead to ||| 0.25 0.229811 1.49697e-06 3.24349e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| and misuse ||| 0.0357143 0.0015873 1.49697e-06 7.718e-09 2.718 ||| 0-0 ||| 28 668016 +a ||| and modelled along the same ||| 0.5 0.0015873 1.49697e-06 2.3287e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| and modelled along the ||| 0.5 0.0015873 1.49697e-06 2.89387e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| and modelled along ||| 0.5 0.0015873 1.49697e-06 4.71377e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| and modelled ||| 0.5 0.0015873 1.49697e-06 2.7013e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| and monitored by ||| 0.0666667 0.0337966 1.49697e-06 1.25729e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| and months at a time , of ||| 1 0.0015873 1.49697e-06 1.53614e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| and months at a time , ||| 1 0.0015873 1.49697e-06 2.82566e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| and months at a time ||| 1 0.0015873 1.49697e-06 2.36943e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| and months at a ||| 1 0.0015873 1.49697e-06 1.44328e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| and months at ||| 1 0.0015873 1.49697e-06 3.25607e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| and months ||| 0.00330033 0.0015873 1.49697e-06 7.77589e-08 2.718 ||| 0-0 ||| 303 668016 +a ||| and more quickly to ||| 0.5 0.229811 1.49697e-06 4.53929e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| and more to ensure ||| 0.2 0.229811 1.49697e-06 4.4932e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| and more to ||| 0.030303 0.229811 1.49697e-06 1.00205e-05 2.718 ||| 0-2 ||| 33 668016 +a ||| and more ||| 0.000339155 0.0015873 2.99394e-06 4.4064e-06 2.718 ||| 0-0 ||| 5897 668016 +a ||| and move down to ||| 1 0.229811 1.49697e-06 4.68356e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| and move into ||| 0.25 0.107578 1.49697e-06 1.16336e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| and moved in the direction ||| 0.5 0.0587624 1.49697e-06 1.32842e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| and moved in the ||| 0.5 0.0587624 1.49697e-06 1.46463e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| and moved in ||| 0.5 0.0587624 1.49697e-06 2.3857e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| and must also go for ||| 1 0.0683377 1.49697e-06 2.10622e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| and my assistant , Gaëlle Le Bouler ||| 1 1 1.49697e-06 8.36914e-31 2.718 ||| 0-4 ||| 1 668016 +a ||| and my assistant , Gaëlle Le ||| 1 1 1.49697e-06 2.09228e-24 2.718 ||| 0-4 ||| 1 668016 +a ||| and my assistant , Gaëlle ||| 1 1 1.49697e-06 9.51039e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| and naming ||| 0.2 0.0351973 1.49697e-06 2.64341e-08 2.718 ||| 0-0 0-1 ||| 5 668016 +a ||| and nitrates which seriously affect water ||| 1 0.330659 1.49697e-06 1.59558e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| and nitrates which seriously affect ||| 1 0.330659 1.49697e-06 2.80417e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| and no less ||| 0.0121951 0.0015873 1.49697e-06 2.55627e-10 2.718 ||| 0-0 ||| 82 668016 +a ||| and no ||| 0.000782473 0.0015873 1.49697e-06 1.50192e-06 2.718 ||| 0-0 ||| 1278 668016 +a ||| and not for ||| 0.00549451 0.0683377 1.49697e-06 1.57581e-06 2.718 ||| 0-2 ||| 182 668016 +a ||| and now to ||| 0.037037 0.229811 1.49697e-06 9.03852e-06 2.718 ||| 0-2 ||| 27 668016 +a ||| and obtain ||| 0.00961538 0.0015873 1.49697e-06 1.15963e-07 2.718 ||| 0-0 ||| 104 668016 +a ||| and occasionally it ||| 0.5 0.123664 1.49697e-06 1.64613e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| and occasionally ||| 0.0454545 0.123664 1.49697e-06 9.25664e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| and of ||| 0.000491823 0.0188479 5.98788e-06 0.000370497 2.718 ||| 0-1 ||| 8133 668016 +a ||| and offer young ||| 1 0.0034208 1.49697e-06 1.53197e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| and offer ||| 0.00446429 0.0034208 1.49697e-06 2.40497e-07 2.718 ||| 0-1 ||| 224 668016 +a ||| and often ||| 0.00198413 0.0015873 1.49697e-06 2.53536e-07 2.718 ||| 0-0 ||| 504 668016 +a ||| and on a ||| 0.0104167 0.0782999 2.99394e-06 2.10626e-05 2.718 ||| 0-1 ||| 192 668016 +a ||| and on those ||| 0.0555556 0.0782999 1.49697e-06 3.44076e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| and on to ||| 0.0625 0.103233 1.49697e-06 2.56409e-05 2.718 ||| 0-0 0-1 0-2 ||| 16 668016 +a ||| and on ||| 0.000751767 0.0782999 7.48485e-06 0.000475178 2.718 ||| 0-1 ||| 6651 668016 +a ||| and one that represents ||| 1 0.0015873 1.49697e-06 5.01896e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| and one that ||| 0.00252525 0.0015873 1.49697e-06 1.35282e-07 2.718 ||| 0-0 ||| 396 668016 +a ||| and one to ||| 0.111111 0.229811 5.98788e-06 1.82885e-05 2.718 ||| 0-2 ||| 36 668016 +a ||| and one ||| 0.000984737 0.0015873 2.99394e-06 8.04216e-06 2.718 ||| 0-0 ||| 2031 668016 +a ||| and onto ||| 0.235294 0.104365 5.98788e-06 4.59607e-07 2.718 ||| 0-0 0-1 ||| 17 668016 +a ||| and opening up to ||| 0.142857 0.229811 1.49697e-06 4.20509e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| and our European citizens , to ||| 1 0.229811 1.49697e-06 2.63085e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| and over again , ||| 0.025 0.0015873 1.49697e-06 6.40722e-11 2.718 ||| 0-0 ||| 40 668016 +a ||| and over again ||| 0.00714286 0.0015873 1.49697e-06 5.37272e-10 2.718 ||| 0-0 ||| 140 668016 +a ||| and over ||| 0.00398406 0.0015873 2.99394e-06 9.29054e-07 2.718 ||| 0-0 ||| 502 668016 +a ||| and overturn ||| 0.0625 0.0015873 1.49697e-06 2.12245e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| and paid their ||| 0.5 0.0004527 1.49697e-06 6.9294e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| and particularly ||| 0.00066357 0.0001117 1.49697e-06 4.63458e-08 2.718 ||| 0-1 ||| 1507 668016 +a ||| and penalising ||| 0.0666667 0.155511 1.49697e-06 1.44327e-07 2.718 ||| 0-0 0-1 ||| 15 668016 +a ||| and penalties ||| 0.00793651 0.0015873 1.49697e-06 1.17699e-08 2.718 ||| 0-0 ||| 126 668016 +a ||| and people are locked up in prison ||| 1 0.0587624 1.49697e-06 3.17828e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| and people are locked up in ||| 1 0.0587624 1.49697e-06 2.60515e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| and permissible , to use ||| 0.5 0.229811 1.49697e-06 2.00987e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| and permissible , to ||| 0.5 0.229811 1.49697e-06 4.13384e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| and promote ||| 0.00104384 0.0015873 1.49697e-06 1.23681e-07 2.718 ||| 0-0 ||| 958 668016 +a ||| and proper to ||| 0.047619 0.229811 1.49697e-06 3.88324e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| and proposals ||| 0.00211864 0.0015873 1.49697e-06 1.87547e-07 2.718 ||| 0-0 ||| 472 668016 +a ||| and pure sleight of hand . ||| 1 0.0188479 1.49697e-06 1.47766e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| and pure sleight of hand ||| 1 0.0188479 1.49697e-06 4.87838e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| and pure sleight of ||| 1 0.0188479 1.49697e-06 1.23005e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| and put it ||| 0.0192308 0.0015873 1.49697e-06 3.78332e-08 2.718 ||| 0-0 ||| 52 668016 +a ||| and put these before ||| 1 0.0109578 1.49697e-06 1.17005e-12 2.718 ||| 0-0 0-3 ||| 1 668016 +a ||| and put ||| 0.002079 0.0015873 1.49697e-06 2.12747e-06 2.718 ||| 0-0 ||| 481 668016 +a ||| and ravaging ||| 1 0.0015873 1.49697e-06 1.35065e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| and re-establish itself ||| 0.25 0.0015873 1.49697e-06 2.88101e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| and re-establish ||| 0.0294118 0.0015873 1.49697e-06 4.2449e-09 2.718 ||| 0-0 ||| 34 668016 +a ||| and recognition to ||| 0.333333 0.229811 1.49697e-06 1.23298e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| and regional ||| 0.000610128 0.0015873 1.49697e-06 4.72727e-08 2.718 ||| 0-0 ||| 1639 668016 +a ||| and regulations bring ||| 1 0.0161903 1.49697e-06 1.04918e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| and related rights in ||| 0.1 0.0587624 1.49697e-06 9.86382e-12 2.718 ||| 0-3 ||| 10 668016 +a ||| and remember ||| 0.0131579 0.0015873 1.49697e-06 7.21633e-08 2.718 ||| 0-0 ||| 76 668016 +a ||| and removed from ||| 0.25 0.0435582 1.49697e-06 4.08477e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| and reporting to ||| 0.5 0.229811 1.49697e-06 5.7042e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| and request ||| 0.0131579 0.0015873 1.49697e-06 1.47993e-07 2.718 ||| 0-0 ||| 76 668016 +a ||| and responsibilities during the current revision of ||| 1 0.0188479 1.49697e-06 1.03416e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| and resulted ||| 0.0384615 0.0015873 1.49697e-06 4.93952e-08 2.718 ||| 0-0 ||| 26 668016 +a ||| and rights in developing ||| 0.125 0.0587624 1.49697e-06 8.17719e-12 2.718 ||| 0-2 ||| 8 668016 +a ||| and rights in ||| 0.0555556 0.0587624 1.49697e-06 1.50593e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| and rise above ||| 1 0.0015873 1.49697e-06 3.14079e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| and rise ||| 0.0909091 0.0015873 1.49697e-06 2.42345e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| and rooted in ||| 0.5 0.0587624 1.49697e-06 4.59078e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| and safety ||| 0.000476644 0.0015873 1.49697e-06 9.78256e-08 2.718 ||| 0-0 ||| 2098 668016 +a ||| and saw ||| 0.0144928 0.0015873 1.49697e-06 1.03421e-07 2.718 ||| 0-0 ||| 69 668016 +a ||| and say that to ||| 1 0.229811 1.49697e-06 7.05481e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| and security to ||| 0.0588235 0.229811 1.49697e-06 3.58487e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| and shall only cover ||| 1 0.131911 1.49697e-06 2.62984e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| and shall only ||| 1 0.131911 1.49697e-06 3.36727e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| and shall ||| 0.0149254 0.131911 1.49697e-06 3.02513e-05 2.718 ||| 0-1 ||| 67 668016 +a ||| and simply to ||| 0.0625 0.229811 1.49697e-06 9.72785e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| and sisters to ||| 1 0.229811 1.49697e-06 4.82663e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| and small and ||| 0.0070922 0.0015873 1.49697e-06 3.09601e-09 2.718 ||| 0-0 ||| 141 668016 +a ||| and small ||| 0.00209644 0.0015873 1.49697e-06 2.47169e-07 2.718 ||| 0-0 ||| 477 668016 +a ||| and smoothly ||| 0.0666667 0.0015873 1.49697e-06 1.65937e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| and so I am now giving ||| 1 0.136521 1.49697e-06 5.3375e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| and so brought ||| 0.5 0.0182841 1.49697e-06 3.37465e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| and so on - ||| 0.0172414 0.0782999 1.49697e-06 4.06825e-09 2.718 ||| 0-2 ||| 58 668016 +a ||| and so on in this ||| 0.5 0.0587624 1.49697e-06 7.38487e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| and so on in ||| 0.1 0.0587624 1.49697e-06 1.14292e-08 2.718 ||| 0-3 ||| 10 668016 +a ||| and so on ||| 0.00511945 0.0782999 8.98182e-06 1.07851e-06 2.718 ||| 0-2 ||| 1172 668016 +a ||| and so ||| 0.00163018 0.0015873 1.04788e-05 4.37939e-06 2.718 ||| 0-0 ||| 4294 668016 +a ||| and spiritual terrorism at the ||| 1 0.204175 1.49697e-06 1.22018e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| and spiritual terrorism at ||| 1 0.204175 1.49697e-06 1.98752e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| and stand ||| 0.0131579 0.0015873 1.49697e-06 3.17982e-07 2.718 ||| 0-0 ||| 76 668016 +a ||| and start taking ||| 0.333333 0.0015873 1.49697e-06 1.13903e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| and start ||| 0.00373134 0.0015873 1.49697e-06 2.68008e-07 2.718 ||| 0-0 ||| 268 668016 +a ||| and started to ||| 0.111111 0.229811 1.49697e-06 1.97453e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| and stop ||| 0.00309598 0.0015873 1.49697e-06 1.33328e-07 2.718 ||| 0-0 ||| 323 668016 +a ||| and stronger ||| 0.00840336 0.0015873 1.49697e-06 5.34471e-08 2.718 ||| 0-0 ||| 119 668016 +a ||| and subject it to ||| 1 0.229811 1.49697e-06 4.21205e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| and subject to ||| 0.00970874 0.229811 1.49697e-06 2.36856e-06 2.718 ||| 0-2 ||| 103 668016 +a ||| and such praise is ||| 1 0.0015873 1.49697e-06 1.75157e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| and such praise ||| 1 0.0015873 1.49697e-06 5.58872e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| and such ||| 0.00374532 0.0015873 1.49697e-06 3.99194e-06 2.718 ||| 0-0 ||| 267 668016 +a ||| and support ||| 0.00171674 0.0027239 5.98788e-06 1.86385e-06 2.718 ||| 0-1 ||| 2330 668016 +a ||| and systems available as a ||| 1 0.0243476 1.49697e-06 8.13405e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| and systems available as ||| 1 0.0243476 1.49697e-06 1.83506e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| and take responsibility ||| 0.0344828 0.0015873 1.49697e-06 3.588e-10 2.718 ||| 0-0 ||| 29 668016 +a ||| and take ||| 0.00169492 0.0015873 2.99394e-06 3.1065e-06 2.718 ||| 0-0 ||| 1180 668016 +a ||| and taken off ||| 0.5 0.0893962 1.49697e-06 8.73314e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| and taking ||| 0.00243309 0.0015873 1.49697e-06 8.20037e-07 2.718 ||| 0-0 ||| 411 668016 +a ||| and talking about ||| 0.0416667 0.0526361 1.49697e-06 6.90552e-09 2.718 ||| 0-2 ||| 24 668016 +a ||| and tame ||| 1 0.0015873 1.49697e-06 1.35065e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| and tangible ||| 0.011236 0.0015873 1.49697e-06 1.38924e-08 2.718 ||| 0-0 ||| 89 668016 +a ||| and thank them for ||| 0.0625 0.0683377 1.49697e-06 1.3099e-10 2.718 ||| 0-3 ||| 16 668016 +a ||| and that after ||| 0.142857 0.0341027 1.49697e-06 1.7674e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| and that applies to ||| 0.047619 0.229811 1.49697e-06 6.18532e-09 2.718 ||| 0-3 ||| 21 668016 +a ||| and that are ||| 0.0142857 0.0008521 1.49697e-06 1.29748e-07 2.718 ||| 0-1 ||| 70 668016 +a ||| and that happened ||| 1 0.0015873 1.49697e-06 2.00911e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| and that have proved to be ||| 1 0.229811 1.49697e-06 6.62324e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| and that have proved to ||| 1 0.229811 1.49697e-06 3.65462e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| and that in the ||| 0.0196078 0.0587624 1.49697e-06 7.77203e-07 2.718 ||| 0-2 ||| 51 668016 +a ||| and that in ||| 0.00396825 0.0587624 1.49697e-06 1.26597e-05 2.718 ||| 0-2 ||| 252 668016 +a ||| and that includes ||| 0.00617284 0.0310078 1.49697e-06 2.539e-08 2.718 ||| 0-2 ||| 162 668016 +a ||| and that is to ||| 0.0235294 0.229811 2.99394e-06 2.3133e-06 2.718 ||| 0-3 ||| 85 668016 +a ||| and that is ||| 0.000225989 0.0015873 1.49697e-06 1.01725e-06 2.718 ||| 0-0 ||| 4425 668016 +a ||| and that on ||| 0.027027 0.0782999 1.49697e-06 7.99325e-06 2.718 ||| 0-2 ||| 37 668016 +a ||| and that subsequently ||| 0.142857 0.0015873 1.49697e-06 5.48528e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| and that to ||| 0.047619 0.229811 1.49697e-06 7.38105e-05 2.718 ||| 0-2 ||| 21 668016 +a ||| and that was to ||| 0.2 0.229811 1.49697e-06 2.31248e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| and that ||| 0.000381886 0.0015873 1.79636e-05 3.24573e-05 2.718 ||| 0-0 ||| 31423 668016 +a ||| and the EU to ||| 0.0434783 0.229811 1.49697e-06 1.33288e-07 2.718 ||| 0-3 ||| 23 668016 +a ||| and the Internal Market to ||| 0.2 0.229811 1.49697e-06 2.23107e-13 2.718 ||| 0-4 ||| 5 668016 +a ||| and the Media , to ||| 1 0.229811 1.49697e-06 5.20418e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| and the Parliament ||| 0.00819672 0.0015873 1.49697e-06 6.79934e-08 2.718 ||| 0-0 ||| 122 668016 +a ||| and the country to ||| 1 0.229811 1.49697e-06 9.6949e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| and the earthquake in ||| 0.2 0.0587624 1.49697e-06 1.01646e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| and the grass roots to ||| 1 0.229811 1.49697e-06 1.66799e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| and the patients ||| 0.333333 0.0025755 1.49697e-06 7.68988e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| and the right to ||| 0.00224215 0.229811 1.49697e-06 1.73722e-07 2.718 ||| 0-3 ||| 446 668016 +a ||| and the same goes for ||| 0.0714286 0.0349625 1.49697e-06 4.86473e-13 2.718 ||| 0-0 0-4 ||| 14 668016 +a ||| and the social partners to get ||| 1 0.229811 1.49697e-06 3.11445e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| and the social partners to ||| 0.142857 0.229811 1.49697e-06 7.12364e-13 2.718 ||| 0-4 ||| 7 668016 +a ||| and the social partners with ||| 1 0.0571592 1.49697e-06 3.39507e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| and the whole ||| 0.0026178 0.0004654 1.49697e-06 1.08591e-08 2.718 ||| 0-1 ||| 382 668016 +a ||| and the ||| 0.000147658 0.0015873 2.99394e-05 0.000118455 2.718 ||| 0-0 ||| 135448 668016 +a ||| and then by ||| 0.025641 0.0015873 1.49697e-06 1.63135e-08 2.718 ||| 0-0 ||| 39 668016 +a ||| and then we will ||| 0.0322581 0.0288734 1.49697e-06 4.96797e-10 2.718 ||| 0-0 0-3 ||| 31 668016 +a ||| and then ||| 0.000743679 0.0015873 4.49091e-06 3.10727e-06 2.718 ||| 0-0 ||| 4034 668016 +a ||| and there he indulges ||| 0.5 0.0015873 1.49697e-06 3.61311e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| and there he ||| 0.142857 0.0015873 1.49697e-06 5.16158e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| and there to ||| 0.2 0.229811 1.49697e-06 1.34501e-05 2.718 ||| 0-2 ||| 5 668016 +a ||| and there will ||| 0.0175439 0.0561595 1.49697e-06 5.40753e-07 2.718 ||| 0-2 ||| 57 668016 +a ||| and there ||| 0.00114811 0.0015873 2.99394e-06 5.9145e-06 2.718 ||| 0-0 ||| 1742 668016 +a ||| and thereby also ||| 0.0625 0.0015873 1.49697e-06 4.27642e-10 2.718 ||| 0-0 ||| 16 668016 +a ||| and thereby ||| 0.00393701 0.0015873 2.99394e-06 8.47051e-08 2.718 ||| 0-0 ||| 508 668016 +a ||| and therefore to ||| 0.0136986 0.229811 1.49697e-06 3.66955e-06 2.718 ||| 0-2 ||| 73 668016 +a ||| and therefore ||| 0.000292398 0.0015873 1.49697e-06 1.61364e-06 2.718 ||| 0-0 ||| 3420 668016 +a ||| and these , in ||| 0.5 0.0587624 1.49697e-06 9.30793e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| and these people ||| 0.0434783 0.0079526 1.49697e-06 8.53743e-09 2.718 ||| 0-2 ||| 23 668016 +a ||| and they are ||| 0.00158983 0.0015873 1.49697e-06 9.5556e-08 2.718 ||| 0-0 ||| 629 668016 +a ||| and they live in ||| 0.2 0.0587624 1.49697e-06 2.4761e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| and they ||| 0.00100857 0.0015873 2.99394e-06 6.29789e-06 2.718 ||| 0-0 ||| 1983 668016 +a ||| and this at the ||| 0.25 0.0015873 1.49697e-06 3.20499e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| and this at ||| 0.0357143 0.0015873 1.49697e-06 5.22055e-08 2.718 ||| 0-0 ||| 28 668016 +a ||| and this has been the case ||| 0.125 0.0015873 1.49697e-06 1.40755e-14 2.718 ||| 0-0 ||| 8 668016 +a ||| and this has been the ||| 0.0909091 0.0015873 1.49697e-06 1.31559e-11 2.718 ||| 0-0 ||| 11 668016 +a ||| and this has been ||| 0.0103093 0.0015873 1.49697e-06 2.14294e-10 2.718 ||| 0-0 ||| 97 668016 +a ||| and this has ||| 0.00398406 0.0015873 1.49697e-06 6.41753e-08 2.718 ||| 0-0 ||| 251 668016 +a ||| and this in ||| 0.0909091 0.0587624 5.98788e-06 4.86277e-06 2.718 ||| 0-2 ||| 44 668016 +a ||| and this is closely related to the ||| 1 0.229811 1.49697e-06 3.16218e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| and this is closely related to ||| 0.333333 0.229811 1.49697e-06 5.15082e-15 2.718 ||| 0-5 ||| 3 668016 +a ||| and this is ||| 0.000343171 0.0015873 1.49697e-06 3.90738e-07 2.718 ||| 0-0 ||| 2914 668016 +a ||| and this track came ||| 0.5 0.0015873 1.49697e-06 6.22067e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| and this track ||| 0.5 0.0015873 1.49697e-06 4.93704e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| and this with a ||| 0.5 0.0015873 2.99394e-06 3.53374e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| and this with ||| 0.285714 0.0015873 2.99394e-06 7.9722e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| and this would ||| 0.0212766 0.0015873 1.49697e-06 7.31667e-08 2.718 ||| 0-0 ||| 47 668016 +a ||| and this ||| 0.000985761 0.0015873 1.34727e-05 1.24673e-05 2.718 ||| 0-0 ||| 9130 668016 +a ||| and those activities are ||| 1 0.0015873 1.49697e-06 1.68528e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| and those activities ||| 1 0.0015873 1.49697e-06 1.11074e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| and those ||| 0.000711238 0.0015873 2.99394e-06 1.39715e-06 2.718 ||| 0-0 ||| 2812 668016 +a ||| and thus also to ||| 0.25 0.229811 1.49697e-06 3.77035e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| and time again , ||| 0.025641 0.0700825 1.49697e-06 5.68547e-09 2.718 ||| 0-2 ||| 39 668016 +a ||| and time again ||| 0.0173913 0.0700825 2.99394e-06 4.7675e-08 2.718 ||| 0-2 ||| 115 668016 +a ||| and to be given ||| 0.0526316 0.229811 1.49697e-06 5.45749e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| and to be reassured about ||| 1 0.229811 1.49697e-06 4.49863e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| and to be reassured ||| 0.5 0.229811 1.49697e-06 3.18082e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| and to be ||| 0.00444444 0.229811 2.99394e-06 7.95204e-05 2.718 ||| 0-1 ||| 450 668016 +a ||| and to call on you to ||| 1 0.102882 1.49697e-06 2.39702e-13 2.718 ||| 0-3 0-4 0-5 ||| 1 668016 +a ||| and to determine ||| 0.0277778 0.229811 1.49697e-06 1.05747e-07 2.718 ||| 0-1 ||| 36 668016 +a ||| and to draw ||| 0.016129 0.0015873 1.49697e-06 2.02999e-08 2.718 ||| 0-0 ||| 62 668016 +a ||| and to duly ||| 1 0.229811 1.49697e-06 4.73887e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| and to eliminate them ||| 1 0.229811 1.49697e-06 1.35354e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| and to eliminate ||| 0.0188679 0.229811 1.49697e-06 5.04602e-08 2.718 ||| 0-1 ||| 53 668016 +a ||| and to focus ||| 0.0227273 0.229811 1.49697e-06 3.39619e-07 2.718 ||| 0-1 ||| 44 668016 +a ||| and to get down to ||| 0.5 0.229811 1.49697e-06 1.19e-10 2.718 ||| 0-4 ||| 2 668016 +a ||| and to get to ||| 0.166667 0.229811 1.49697e-06 1.70462e-07 2.718 ||| 0-3 ||| 6 668016 +a ||| and to improve ||| 0.00309598 0.229811 1.49697e-06 1.90871e-07 2.718 ||| 0-1 ||| 323 668016 +a ||| and to its people ||| 0.25 0.229811 1.49697e-06 5.50245e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| and to its ||| 0.0106383 0.229811 1.49697e-06 6.25136e-06 2.718 ||| 0-1 ||| 94 668016 +a ||| and to join ||| 0.0384615 0.218864 1.49697e-06 5.99555e-06 2.718 ||| 0-1 0-2 ||| 26 668016 +a ||| and to make ||| 0.00155763 0.229811 1.49697e-06 7.62519e-06 2.718 ||| 0-1 ||| 642 668016 +a ||| and to meet ||| 0.0135135 0.229811 1.49697e-06 5.33562e-07 2.718 ||| 0-1 ||| 74 668016 +a ||| and to resolve the disputes in the ||| 1 0.229811 1.49697e-06 7.24275e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| and to resolve the disputes in ||| 1 0.229811 1.49697e-06 1.17976e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| and to resolve the disputes ||| 1 0.229811 1.49697e-06 5.51173e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| and to resolve the ||| 0.0666667 0.229811 1.49697e-06 6.97688e-09 2.718 ||| 0-1 ||| 15 668016 +a ||| and to resolve ||| 0.0322581 0.229811 1.49697e-06 1.13645e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| and to resort to ||| 0.2 0.229811 1.49697e-06 6.04339e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| and to restore ||| 0.0238095 0.229811 1.49697e-06 6.01134e-08 2.718 ||| 0-1 ||| 42 668016 +a ||| and to stand as a ||| 1 0.229811 1.49697e-06 3.27079e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| and to stand as ||| 1 0.229811 1.49697e-06 7.37897e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| and to stand ||| 0.0833333 0.229811 1.49697e-06 7.23116e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| and to thank him ||| 0.0384615 0.229811 1.49697e-06 1.48833e-10 2.718 ||| 0-1 ||| 26 668016 +a ||| and to thank ||| 0.00934579 0.229811 1.49697e-06 4.64234e-07 2.718 ||| 0-1 ||| 107 668016 +a ||| and to the ||| 0.000316056 0.229811 1.49697e-06 0.000269378 2.718 ||| 0-1 ||| 3164 668016 +a ||| and to this I would like ||| 1 0.229811 1.49697e-06 2.09013e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| and to this I would ||| 1 0.229811 1.49697e-06 1.17694e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| and to this I ||| 1 0.229811 1.49697e-06 2.00545e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| and to this ||| 0.0119048 0.229811 1.49697e-06 2.83516e-05 2.718 ||| 0-1 ||| 84 668016 +a ||| and to verify all the information . ||| 1 0.229811 1.49697e-06 1.85053e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| and to verify all the information ||| 1 0.229811 1.49697e-06 6.10936e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| and to verify all the ||| 1 0.229811 1.49697e-06 3.69146e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| and to verify all ||| 1 0.229811 1.49697e-06 6.01295e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| and to verify ||| 0.0833333 0.229811 1.49697e-06 1.27247e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| and to witness this reality and its ||| 1 0.229811 1.49697e-06 4.87415e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| and to witness this reality and ||| 1 0.229811 1.49697e-06 3.42117e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| and to witness this reality ||| 1 0.229811 1.49697e-06 2.73128e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| and to witness this ||| 1 0.229811 1.49697e-06 4.08263e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| and to witness ||| 0.125 0.229811 1.49697e-06 6.31849e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| and to ||| 0.00303655 0.229811 0.000121255 0.00438784 2.718 ||| 0-1 ||| 26675 668016 +a ||| and tour of ||| 1 0.02473 1.49697e-06 2.03774e-09 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| and towards ||| 0.00740741 0.155507 2.99394e-06 4.22449e-05 2.718 ||| 0-1 ||| 270 668016 +a ||| and try to ||| 0.00319489 0.229811 1.49697e-06 6.75728e-07 2.718 ||| 0-2 ||| 313 668016 +a ||| and uncertainties ||| 0.0208333 0.0015873 1.49697e-06 1.35065e-09 2.718 ||| 0-0 ||| 48 668016 +a ||| and under the law of ||| 1 0.0384416 1.49697e-06 1.0454e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| and under the law ||| 1 0.0384416 1.49697e-06 1.92296e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| and under the ||| 0.00862069 0.0384416 1.49697e-06 1.09073e-06 2.718 ||| 0-1 ||| 116 668016 +a ||| and under ||| 0.00503778 0.0384416 2.99394e-06 1.77667e-05 2.718 ||| 0-1 ||| 397 668016 +a ||| and undermining ||| 0.0114943 0.0015873 1.49697e-06 1.25417e-08 2.718 ||| 0-0 ||| 87 668016 +a ||| and until we are ||| 1 0.0268909 1.49697e-06 4.94289e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| and until we ||| 0.05 0.0268909 1.49697e-06 3.25775e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| and until ||| 0.00568182 0.0268909 1.49697e-06 2.86968e-06 2.718 ||| 0-1 ||| 176 668016 +a ||| and uses accords with ||| 0.5 0.0571592 1.49697e-06 1.23131e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| and utterly ||| 0.0285714 0.0015873 1.49697e-06 1.38924e-08 2.718 ||| 0-0 ||| 35 668016 +a ||| and verse for ||| 1 0.0683377 1.49697e-06 1.84624e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| and via ||| 0.0119048 0.166224 1.49697e-06 2.67159e-06 2.718 ||| 0-0 0-1 ||| 84 668016 +a ||| and violates ||| 0.030303 0.0092593 1.49697e-06 3.38199e-08 2.718 ||| 0-1 ||| 33 668016 +a ||| and was won by ||| 0.5 0.0337966 1.49697e-06 7.20016e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| and was ||| 0.00293686 0.0015873 2.99394e-06 6.04512e-06 2.718 ||| 0-0 ||| 681 668016 +a ||| and we can vote for ||| 0.2 0.0683377 1.49697e-06 2.45147e-12 2.718 ||| 0-4 ||| 5 668016 +a ||| and we have to ||| 0.0021645 0.229811 1.49697e-06 5.95743e-07 2.718 ||| 0-3 ||| 462 668016 +a ||| and we must ||| 0.000437828 0.0015873 1.49697e-06 3.38552e-08 2.718 ||| 0-0 ||| 2284 668016 +a ||| and we should like to ||| 0.0909091 0.229811 1.49697e-06 3.91972e-10 2.718 ||| 0-4 ||| 11 668016 +a ||| and we talked about ||| 0.5 0.0526361 1.49697e-06 7.4524e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| and we would like to ||| 0.031746 0.229811 2.99394e-06 5.19153e-10 2.718 ||| 0-4 ||| 63 668016 +a ||| and we would ||| 0.00719424 0.0015873 1.49697e-06 1.2855e-07 2.718 ||| 0-0 ||| 139 668016 +a ||| and we ||| 0.000359971 0.0015873 4.49091e-06 2.19043e-05 2.718 ||| 0-0 ||| 8334 668016 +a ||| and were also entitled to ||| 1 0.229811 1.49697e-06 1.94054e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| and were ||| 0.00342466 0.0015873 1.49697e-06 3.45651e-06 2.718 ||| 0-0 ||| 292 668016 +a ||| and what did ||| 0.142857 0.0015873 1.49697e-06 1.22965e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| and what is to be done ||| 1 0.229811 1.49697e-06 1.59458e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| and what is to be ||| 0.166667 0.229811 1.49697e-06 3.49689e-09 2.718 ||| 0-3 ||| 6 668016 +a ||| and what is to ||| 0.166667 0.229811 1.49697e-06 1.92954e-07 2.718 ||| 0-3 ||| 6 668016 +a ||| and what ||| 0.000252525 0.0015873 1.49697e-06 2.70728e-06 2.718 ||| 0-0 ||| 3960 668016 +a ||| and when I ||| 0.037037 0.0015873 1.49697e-06 6.82279e-09 2.718 ||| 0-0 ||| 27 668016 +a ||| and when ||| 0.000581395 0.0015873 1.49697e-06 9.64557e-07 2.718 ||| 0-0 ||| 1720 668016 +a ||| and where we must ||| 0.333333 0.0034564 1.49697e-06 8.31146e-12 2.718 ||| 0-0 0-1 ||| 3 668016 +a ||| and where we ||| 0.0222222 0.0034564 1.49697e-06 5.3775e-09 2.718 ||| 0-0 0-1 ||| 45 668016 +a ||| and where ||| 0.000713267 0.0034564 1.49697e-06 4.73692e-07 2.718 ||| 0-0 0-1 ||| 1402 668016 +a ||| and whether it will act to ensure ||| 1 0.229811 1.49697e-06 1.351e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| and whether it will act to ||| 1 0.229811 1.49697e-06 3.01294e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| and which are competitively ||| 1 0.0462482 1.49697e-06 1.36777e-12 2.718 ||| 0-0 0-3 ||| 1 668016 +a ||| and which depend upon ||| 1 0.19056 1.49697e-06 3.85981e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| and which would ||| 0.0140845 0.0015873 1.49697e-06 9.61899e-08 2.718 ||| 0-0 ||| 71 668016 +a ||| and which ||| 0.000378263 0.0015873 4.49091e-06 1.63903e-05 2.718 ||| 0-0 ||| 7931 668016 +a ||| and will be ||| 0.00158983 0.0561595 1.49697e-06 3.19708e-06 2.718 ||| 0-1 ||| 629 668016 +a ||| and will continue to be maintained ||| 1 0.229811 1.49697e-06 5.61944e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| and will continue to be ||| 0.00909091 0.229811 1.49697e-06 1.59191e-10 2.718 ||| 0-3 ||| 110 668016 +a ||| and will continue to do so ||| 0.00862069 0.229811 1.49697e-06 6.84895e-14 2.718 ||| 0-3 ||| 116 668016 +a ||| and will continue to do ||| 0.0294118 0.229811 1.49697e-06 3.01756e-11 2.718 ||| 0-3 ||| 34 668016 +a ||| and will continue to say it to ||| 1 0.229811 1.49697e-06 1.32668e-14 2.718 ||| 0-6 ||| 1 668016 +a ||| and will continue to ||| 0.00632911 0.229811 2.99394e-06 8.78397e-09 2.718 ||| 0-3 ||| 316 668016 +a ||| and will go on applying pressure until ||| 1 0.0782999 1.49697e-06 2.32423e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| and will go on applying pressure ||| 1 0.0782999 1.49697e-06 4.78236e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| and will go on applying ||| 1 0.0782999 1.49697e-06 7.95733e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| and will go on ||| 0.25 0.0782999 1.49697e-06 2.40403e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| and will undermine ||| 0.25 0.0015873 1.49697e-06 1.86956e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| and will vote against the report ||| 1 0.05146 1.49697e-06 1.11504e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| and will vote against the ||| 0.333333 0.05146 1.49697e-06 2.72028e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| and will vote against ||| 0.0588235 0.05146 1.49697e-06 4.43102e-11 2.718 ||| 0-3 ||| 17 668016 +a ||| and will ||| 0.00144928 0.0561595 5.98788e-06 0.000176411 2.718 ||| 0-1 ||| 2760 668016 +a ||| and with it ||| 0.0169492 0.0289023 1.49697e-06 6.20253e-08 2.718 ||| 0-1 0-2 ||| 59 668016 +a ||| and with no ||| 0.0172414 0.0571592 1.49697e-06 1.6278e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| and with regard to ||| 0.00632911 0.229811 1.49697e-06 1.91047e-08 2.718 ||| 0-3 ||| 158 668016 +a ||| and with the help ||| 0.0555556 0.0571592 1.49697e-06 2.44827e-09 2.718 ||| 0-1 ||| 18 668016 +a ||| and with the ||| 0.000617665 0.0571592 1.49697e-06 1.28383e-05 2.718 ||| 0-1 ||| 1619 668016 +a ||| and with ||| 0.000585138 0.0571592 4.49091e-06 0.000209121 2.718 ||| 0-1 ||| 5127 668016 +a ||| and withdrawing ||| 0.0232558 0.0025189 1.49697e-06 1.12733e-08 2.718 ||| 0-1 ||| 43 668016 +a ||| and without further ||| 0.125 0.0015466 1.49697e-06 2.4881e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| and without ||| 0.000731529 0.0015466 1.49697e-06 5.14814e-07 2.718 ||| 0-1 ||| 1367 668016 +a ||| and woman on ||| 0.142857 0.0782999 1.49697e-06 8.22057e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| and work for ||| 0.0285714 0.0683377 1.49697e-06 2.92168e-07 2.718 ||| 0-2 ||| 35 668016 +a ||| and years was ||| 0.333333 0.0015873 1.49697e-06 1.02888e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| and years ||| 0.00495049 0.0015873 1.49697e-06 3.28401e-07 2.718 ||| 0-0 ||| 202 668016 +a ||| and yet that is precisely ||| 0.5 0.0130882 1.49697e-06 1.77693e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| and yet that is ||| 0.111111 0.0130882 1.49697e-06 1.80216e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| and yet that ||| 0.0909091 0.0130882 1.49697e-06 5.75016e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| and yet ||| 0.000718391 0.0130882 1.49697e-06 3.41832e-06 2.718 ||| 0-1 ||| 1392 668016 +a ||| and you want ||| 0.142857 0.0015873 1.49697e-06 2.91242e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| and you ||| 0.000763359 0.0015873 1.49697e-06 6.22978e-06 2.718 ||| 0-0 ||| 1310 668016 +a ||| and ||| 0.00102769 0.0015873 0.00235473 0.0019295 2.718 ||| 0-0 ||| 1.53061e+06 668016 +a ||| angry with ||| 0.0833333 0.0571592 1.49697e-06 4.84158e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| animal welfare for ||| 1 0.0683377 1.49697e-06 1.41144e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| animal-based ||| 0.2 0.0714286 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| animals in ||| 0.00613497 0.0587624 1.49697e-06 2.44536e-06 2.718 ||| 0-1 ||| 163 668016 +a ||| animals to areas ||| 1 0.229811 1.49697e-06 3.26349e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| animals to ||| 0.0131579 0.229811 1.49697e-06 1.42573e-05 2.718 ||| 0-1 ||| 76 668016 +a ||| annexed to ||| 0.012987 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 77 668016 +a ||| announced at ||| 0.0322581 0.204175 1.49697e-06 7.1134e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| announced for ||| 0.02 0.0683377 1.49697e-06 7.70134e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| announced may appear to be ||| 0.25 0.229811 1.49697e-06 8.68811e-15 2.718 ||| 0-3 ||| 4 668016 +a ||| announced may appear to ||| 0.25 0.229811 1.49697e-06 4.794e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| announced they were going to ||| 0.5 0.229811 1.49697e-06 3.66356e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| another concern ||| 0.0263158 0.0020474 1.49697e-06 5.71407e-09 2.718 ||| 0-1 ||| 38 668016 +a ||| another effect of this kind of system ||| 1 0.0188479 1.49697e-06 1.13738e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| another effect of this kind of ||| 1 0.0188479 1.49697e-06 4.07809e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| another effect of this kind ||| 1 0.0188479 1.49697e-06 7.50146e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| another effect of this ||| 1 0.0188479 1.49697e-06 1.53718e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| another effect of ||| 1 0.0188479 1.49697e-06 2.37903e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| another honourable Member of this ||| 0.5 0.0188479 1.49697e-06 1.23945e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| another honourable Member of ||| 0.5 0.0188479 1.49697e-06 1.91824e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| another issue that needs to be ||| 1 0.229811 1.49697e-06 3.86401e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| another issue that needs to ||| 1 0.229811 1.49697e-06 2.13211e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| another of the ||| 0.0147059 0.0188479 1.49697e-06 4.37808e-07 2.718 ||| 0-1 ||| 68 668016 +a ||| another of ||| 0.00636943 0.0188479 1.49697e-06 7.13138e-06 2.718 ||| 0-1 ||| 157 668016 +a ||| answer off the ||| 0.25 0.0893962 1.49697e-06 3.5172e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| answer off ||| 0.25 0.0893962 1.49697e-06 5.7291e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| answer to that ||| 0.010101 0.229811 1.49697e-06 4.41358e-07 2.718 ||| 0-1 ||| 99 668016 +a ||| answer to ||| 0.00571429 0.229811 1.04788e-05 2.62376e-05 2.718 ||| 0-1 ||| 1225 668016 +a ||| answer ||| 0.00131077 0.0026107 1.64667e-05 2.1e-05 2.718 ||| 0-0 ||| 8392 668016 +a ||| answered ||| 0.0078125 0.181277 1.04788e-05 0.0003058 2.718 ||| 0-0 ||| 896 668016 +a ||| answering to ||| 0.333333 0.290581 1.49697e-06 6.23537e-05 2.718 ||| 0-0 0-1 ||| 3 668016 +a ||| answering ||| 0.0075188 0.351351 2.99394e-06 0.000178 2.718 ||| 0-0 ||| 266 668016 +a ||| answers on ||| 0.0344828 0.0782999 1.49697e-06 8.19409e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| answers to ||| 0.00923788 0.229811 5.98788e-06 7.56651e-06 2.718 ||| 0-1 ||| 433 668016 +a ||| anti ||| 0.125 0.137931 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| anti-Semitism manifests itself as ||| 0.5 0.0243476 1.49697e-06 9.52612e-19 2.718 ||| 0-3 ||| 2 668016 +a ||| anticipation of ||| 0.0102041 0.0188479 1.49697e-06 9.46512e-08 2.718 ||| 0-1 ||| 98 668016 +a ||| anxiety about ||| 0.0175439 0.0526361 1.49697e-06 2.01572e-08 2.718 ||| 0-1 ||| 57 668016 +a ||| anxious to ||| 0.00636943 0.229811 1.49697e-06 3.15271e-06 2.718 ||| 0-1 ||| 157 668016 +a ||| any Member of this House to ||| 0.5 0.229811 1.49697e-06 2.39808e-14 2.718 ||| 0-5 ||| 2 668016 +a ||| any action to ||| 0.0588235 0.229811 1.49697e-06 1.60136e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| any attempt to seriously get to ||| 1 0.229811 1.49697e-06 7.16558e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| any attempts to ||| 0.0243902 0.229811 1.49697e-06 1.67923e-08 2.718 ||| 0-2 ||| 41 668016 +a ||| any attention to ||| 0.1 0.229811 1.49697e-06 1.38417e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| any closer to ||| 0.111111 0.229811 2.99394e-06 1.12832e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| any description at ||| 1 0.204175 1.49697e-06 6.48501e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| any desire to act like ||| 1 0.229811 1.49697e-06 7.48013e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| any desire to act ||| 0.333333 0.229811 1.49697e-06 4.21202e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| any desire to ||| 0.0555556 0.229811 1.49697e-06 2.47912e-08 2.718 ||| 0-2 ||| 18 668016 +a ||| any great favours ||| 0.5 0.222874 1.49697e-06 8.24287e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| any impact on ||| 0.0625 0.0782999 1.49697e-06 4.72698e-09 2.718 ||| 0-2 ||| 16 668016 +a ||| any influence in ||| 0.166667 0.0587624 1.49697e-06 3.1073e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| any infringements of ||| 0.142857 0.0188479 1.49697e-06 2.10224e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| any interference in ||| 0.0909091 0.0587624 1.49697e-06 3.90684e-10 2.718 ||| 0-2 ||| 11 668016 +a ||| any intervention from ||| 0.5 0.0435582 1.49697e-06 2.89568e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| any living at ||| 1 0.204175 1.49697e-06 4.31305e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| any objections to ||| 0.015625 0.229811 1.49697e-06 3.81403e-09 2.718 ||| 0-2 ||| 64 668016 +a ||| any of them , not even a ||| 1 0.0495435 1.49697e-06 7.76642e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| any of them , not even ||| 1 0.0495435 1.49697e-06 1.75212e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| any of those of ||| 1 0.0188479 1.49697e-06 1.76074e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| any of ||| 0.00826446 0.0188479 1.49697e-05 4.47286e-05 2.718 ||| 0-1 ||| 1210 668016 +a ||| any questions about ||| 0.2 0.0526361 1.49697e-06 6.74408e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| any reason for ||| 0.047619 0.0683377 1.49697e-06 1.30334e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| any reference to ||| 0.00763359 0.229811 1.49697e-06 4.51856e-08 2.718 ||| 0-2 ||| 131 668016 +a ||| any response to our request for ||| 1 0.0683377 1.49697e-06 5.23856e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| any role for ||| 1 0.0683377 1.49697e-06 1.23704e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| any sense to ||| 0.166667 0.229811 1.49697e-06 9.43442e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| any solution to ||| 0.142857 0.229811 1.49697e-06 3.60214e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| any stronger in the ||| 1 0.0587624 1.49697e-06 1.54507e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| any stronger in ||| 1 0.0587624 1.49697e-06 2.51673e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| any tendency to over-regulate ||| 1 0.229811 1.49697e-06 2.28842e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| any tendency to ||| 0.333333 0.229811 1.49697e-06 5.72104e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| any truck to ||| 1 0.229811 1.49697e-06 3.70808e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| any way with ||| 0.0555556 0.0571592 1.49697e-06 5.4421e-08 2.718 ||| 0-2 ||| 18 668016 +a ||| anybody to carry out ||| 1 0.229811 1.49697e-06 1.94513e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| anybody to carry ||| 1 0.229811 1.49697e-06 5.07815e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| anybody to ||| 0.0454545 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| anybody try to ||| 1 0.229811 1.49697e-06 4.26177e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| anybody ||| 0.0121317 0.108583 1.04788e-05 9.58e-05 2.718 ||| 0-0 ||| 577 668016 +a ||| anyone and ||| 0.0588235 0.0504378 1.49697e-06 3.03002e-06 2.718 ||| 0-0 ||| 17 668016 +a ||| anyone apart from ||| 0.5 0.0435582 1.49697e-06 2.14824e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| anyone in particular ||| 0.125 0.0587624 1.49697e-06 1.77109e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| anyone in ||| 0.00729927 0.0587624 1.49697e-06 2.87795e-06 2.718 ||| 0-1 ||| 137 668016 +a ||| anyone who ||| 0.000769231 0.0504378 1.49697e-06 2.13356e-07 2.718 ||| 0-0 ||| 1300 668016 +a ||| anyone ||| 0.00353812 0.0504378 1.64667e-05 0.0002419 2.718 ||| 0-0 ||| 3109 668016 +a ||| anything , of ||| 0.333333 0.0188479 1.49697e-06 5.53445e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| anything approaching their satisfaction ||| 1 0.1653 1.49697e-06 2.38924e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| anything approaching their ||| 1 0.1653 1.49697e-06 2.00777e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| anything approaching ||| 0.2 0.1653 1.49697e-06 1.73218e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| anything at all ||| 0.0106383 0.204175 1.49697e-06 2.52344e-08 2.718 ||| 0-1 ||| 94 668016 +a ||| anything at ||| 0.0212766 0.204175 1.49697e-06 5.34015e-06 2.718 ||| 0-1 ||| 47 668016 +a ||| anything away ||| 0.125 0.0377856 1.49697e-06 3.695e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| anything else , to ||| 0.142857 0.229811 1.49697e-06 7.73433e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| anything regarding ||| 0.25 0.186429 1.49697e-06 5.28016e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| anything to do with ||| 0.0163934 0.229811 2.99394e-06 1.20736e-09 2.718 ||| 0-1 ||| 122 668016 +a ||| anything to do ||| 0.0175439 0.229811 2.99394e-06 1.88812e-07 2.718 ||| 0-1 ||| 114 668016 +a ||| anything to ||| 0.0128205 0.229811 5.98788e-06 5.49623e-05 2.718 ||| 0-1 ||| 312 668016 +a ||| anyway . this is down to ||| 1 0.229811 1.49697e-06 5.34011e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| anywhere to ||| 0.0666667 0.229811 1.49697e-06 1.05791e-05 2.718 ||| 0-1 ||| 15 668016 +a ||| apart , to ||| 0.333333 0.229811 1.49697e-06 2.60259e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| apart from certain ||| 0.166667 0.0435582 1.49697e-06 1.27818e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| apart from ||| 0.00192678 0.0435582 5.98788e-06 4.48485e-07 2.718 ||| 0-1 ||| 2076 668016 +a ||| apart in ||| 0.25 0.0587624 1.49697e-06 3.74314e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| apart when one ||| 0.5 0.0055468 1.49697e-06 8.05745e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| apart when ||| 0.333333 0.0055468 1.49697e-06 1.93317e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| apart ||| 0.0107604 0.0216794 2.24546e-05 6.48e-05 2.718 ||| 0-0 ||| 1394 668016 +a ||| apparent aim for people or bodies not ||| 0.125 0.0683377 1.49697e-06 2.47265e-23 2.718 ||| 0-2 ||| 8 668016 +a ||| apparent aim for people or bodies ||| 0.125 0.0683377 1.49697e-06 7.24247e-21 2.718 ||| 0-2 ||| 8 668016 +a ||| apparent aim for people or ||| 0.125 0.0683377 1.49697e-06 1.81516e-16 2.718 ||| 0-2 ||| 8 668016 +a ||| apparent aim for people ||| 0.125 0.0683377 1.49697e-06 1.58765e-13 2.718 ||| 0-2 ||| 8 668016 +a ||| apparent aim for ||| 0.125 0.0683377 1.49697e-06 1.80373e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| apparent in the ||| 0.0172414 0.0587624 1.49697e-06 1.31313e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| apparent in ||| 0.00819672 0.0587624 1.49697e-06 2.13894e-06 2.718 ||| 0-1 ||| 122 668016 +a ||| apparently be given to ||| 1 0.229811 1.49697e-06 8.45251e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| apparently causing ||| 1 0.0028474 1.49697e-06 8.924e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| appeal at ||| 0.142857 0.204175 1.49697e-06 1.02787e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| appeal for a ||| 0.0344828 0.0683377 1.49697e-06 4.93268e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| appeal for ||| 0.00387597 0.0683377 1.49697e-06 1.11282e-06 2.718 ||| 0-1 ||| 258 668016 +a ||| appeal to armchair ||| 0.25 0.229811 1.49697e-06 4.23164e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| appeal to ||| 0.00884956 0.229811 1.19758e-05 1.05791e-05 2.718 ||| 0-1 ||| 904 668016 +a ||| appealing to ||| 0.04 0.229811 4.49091e-06 2.13684e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| appeals against ||| 0.1 0.05146 1.49697e-06 8.3184e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| appear appropriate for ||| 1 0.0683377 1.49697e-06 4.33487e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| appear at ||| 0.047619 0.204175 1.49697e-06 2.97469e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| appear before ||| 0.0243902 0.0203282 2.99394e-06 4.63482e-08 2.718 ||| 0-1 ||| 82 668016 +a ||| appear behind ||| 1 0.0923313 1.49697e-06 6.7333e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| appear for ||| 0.111111 0.0683377 1.49697e-06 3.22056e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| appear to be prepared to ||| 0.333333 0.229811 1.49697e-06 4.27462e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| appear to be some ||| 1 0.229811 1.49697e-06 6.04406e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| appear to be ||| 0.00735294 0.229811 5.98788e-06 5.54857e-07 2.718 ||| 0-1 ||| 544 668016 +a ||| appear to have ||| 0.00917431 0.229811 1.49697e-06 3.66166e-07 2.718 ||| 0-1 ||| 109 668016 +a ||| appear to jump to ||| 0.5 0.229811 1.49697e-06 1.27864e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| appear to me ||| 0.1 0.229811 1.49697e-06 1.84341e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| appear to ||| 0.00961538 0.229811 1.19758e-05 3.06164e-05 2.718 ||| 0-1 ||| 832 668016 +a ||| appeared at ||| 0.0588235 0.204175 1.49697e-06 7.58989e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| appeared in ||| 0.00813008 0.0587624 1.49697e-06 1.33984e-06 2.718 ||| 0-1 ||| 123 668016 +a ||| appeared to ||| 0.0217391 0.229811 2.99394e-06 7.81173e-06 2.718 ||| 0-1 ||| 92 668016 +a ||| appears to evoke ||| 0.25 0.229811 1.49697e-06 2.01143e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| appears to have been to seek to ||| 1 0.229811 1.49697e-06 4.00736e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| appears to me to ||| 0.0769231 0.229811 1.49697e-06 9.78315e-10 2.718 ||| 0-3 ||| 13 668016 +a ||| appears to ||| 0.00782123 0.229811 1.04788e-05 1.82857e-05 2.718 ||| 0-1 ||| 895 668016 +a ||| appended to ||| 0.05 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| applause for ||| 0.0526316 0.0683377 1.49697e-06 1.32655e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| applicable to disputes ||| 1 0.229811 1.49697e-06 6.66939e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| applicable to ||| 0.00708215 0.229811 7.48485e-06 8.44227e-06 2.718 ||| 0-1 ||| 706 668016 +a ||| applicant ||| 0.000566251 0.0362103 1.49697e-06 6.66e-05 2.718 ||| 0-0 ||| 1766 668016 +a ||| application , and to ||| 0.5 0.229811 1.49697e-06 3.18149e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| application at a ||| 0.5 0.204175 1.49697e-06 9.17257e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| application at ||| 0.111111 0.204175 1.49697e-06 2.06935e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| application for membership before ||| 1 0.0626155 1.49697e-06 1.52449e-13 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| application for ||| 0.00398406 0.0683377 1.49697e-06 2.24039e-06 2.718 ||| 0-1 ||| 251 668016 +a ||| application in ||| 0.0103093 0.0587624 1.49697e-06 3.65302e-06 2.718 ||| 0-1 ||| 97 668016 +a ||| application to ||| 0.0102564 0.229811 2.99394e-06 2.12983e-05 2.718 ||| 0-1 ||| 195 668016 +a ||| applications in ||| 0.0285714 0.0587624 1.49697e-06 8.41155e-07 2.718 ||| 0-1 ||| 35 668016 +a ||| applied against ||| 0.1 0.05146 1.49697e-06 2.81526e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| applied at ||| 0.0422535 0.204175 4.49091e-06 3.68603e-06 2.718 ||| 0-1 ||| 71 668016 +a ||| applied for ||| 0.00421941 0.0683377 1.49697e-06 3.99069e-06 2.718 ||| 0-1 ||| 237 668016 +a ||| applied to the ||| 0.00478469 0.229811 1.49697e-06 2.32906e-06 2.718 ||| 0-1 ||| 209 668016 +a ||| applied to ||| 0.0256098 0.229811 3.14364e-05 3.79377e-05 2.718 ||| 0-1 ||| 820 668016 +a ||| applies to our relationship with developing countries ||| 1 0.229811 1.49697e-06 1.42005e-22 2.718 ||| 0-1 ||| 1 668016 +a ||| applies to our relationship with developing ||| 1 0.229811 1.49697e-06 3.73994e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| applies to our relationship with ||| 1 0.229811 1.49697e-06 6.88755e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| applies to our relationship ||| 1 0.229811 1.49697e-06 1.0771e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| applies to our ||| 0.0434783 0.229811 1.49697e-06 4.04927e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| applies to ||| 0.0123457 0.229811 3.14364e-05 2.93553e-05 2.718 ||| 0-1 ||| 1701 668016 +a ||| apply across ||| 0.047619 0.0490758 1.49697e-06 7.07988e-08 2.718 ||| 0-1 ||| 21 668016 +a ||| apply also to ||| 0.125 0.229811 1.49697e-06 2.54492e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| apply for ||| 0.0025641 0.0683377 1.49697e-06 5.3025e-06 2.718 ||| 0-1 ||| 390 668016 +a ||| apply here ||| 0.0204082 0.0182742 1.49697e-06 1.23725e-07 2.718 ||| 0-1 ||| 49 668016 +a ||| apply if ||| 0.0454545 0.0014881 1.49697e-06 1.86494e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| apply in ||| 0.00301205 0.0587624 1.49697e-06 8.64587e-06 2.718 ||| 0-1 ||| 332 668016 +a ||| apply not just to ||| 0.333333 0.229811 1.49697e-06 2.17138e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| apply to Members of ||| 1 0.0188479 1.49697e-06 5.57862e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| apply to ||| 0.0216524 0.229811 5.68849e-05 5.04084e-05 2.718 ||| 0-1 ||| 1755 668016 +a ||| applying for ||| 0.00512821 0.0683377 1.49697e-06 1.21969e-06 2.718 ||| 0-1 ||| 195 668016 +a ||| applying per sub-area ||| 1 0.0102229 1.49697e-06 7.37468e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| applying per ||| 1 0.0102229 1.49697e-06 1.84367e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| applying to ||| 0.017301 0.229811 7.48485e-06 1.1595e-05 2.718 ||| 0-1 ||| 289 668016 +a ||| applying ||| 0.000335909 0.0003493 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2977 668016 +a ||| appoint as ||| 0.5 0.199045 1.49697e-06 1.16432e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| appoint ||| 0.00417537 0.199045 2.99394e-06 0.0001141 2.718 ||| 0-0 ||| 479 668016 +a ||| appointed ||| 0.000915751 0.0163371 1.49697e-06 1.73e-05 2.718 ||| 0-0 ||| 1092 668016 +a ||| appointment of ||| 0.00478469 0.0188479 4.49091e-06 3.40153e-07 2.718 ||| 0-1 ||| 627 668016 +a ||| appointments to ||| 0.0208333 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| apportioned to ||| 0.666667 0.229811 2.99394e-06 3.85332e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| appreciation of ||| 0.00854701 0.0188479 2.99394e-06 3.8452e-07 2.718 ||| 0-1 ||| 234 668016 +a ||| appreciation to ||| 0.00961538 0.229811 1.49697e-06 4.55392e-06 2.718 ||| 0-1 ||| 104 668016 +a ||| approach across ||| 0.333333 0.0490758 1.49697e-06 1.07846e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| approach based on ||| 0.0114943 0.0782999 1.49697e-06 1.95081e-09 2.718 ||| 0-2 ||| 87 668016 +a ||| approach in tabling ||| 1 0.0587624 1.49697e-06 1.00093e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| approach in ||| 0.0112994 0.0587624 2.99394e-06 1.31701e-05 2.718 ||| 0-1 ||| 177 668016 +a ||| approach to European ||| 0.25 0.229811 1.49697e-06 2.56765e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| approach to environmental ||| 1 0.229811 1.49697e-06 2.09626e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| approach to establishing ||| 0.111111 0.229811 1.49697e-06 3.59359e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| approach to lead to a ||| 1 0.229811 1.49697e-06 5.82194e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| approach to lead to ||| 1 0.229811 1.49697e-06 1.31344e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| approach to lead ||| 1 0.229811 1.49697e-06 1.47813e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| approach to the preparation of this report ||| 1 0.229811 1.49697e-06 8.28073e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| approach to the preparation of this ||| 1 0.229811 1.49697e-06 2.02018e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| approach to the preparation of ||| 1 0.229811 1.49697e-06 3.12654e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| approach to the preparation ||| 1 0.229811 1.49697e-06 5.75113e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| approach to the ||| 0.00294985 0.229811 1.49697e-06 4.71404e-06 2.718 ||| 0-1 ||| 339 668016 +a ||| approach to this ||| 0.0153846 0.229811 1.49697e-06 4.96146e-07 2.718 ||| 0-1 ||| 65 668016 +a ||| approach to ||| 0.0153739 0.229811 3.29333e-05 7.67861e-05 2.718 ||| 0-1 ||| 1431 668016 +a ||| approach which is aimed at placing ||| 1 0.204175 1.49697e-06 3.28542e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| approach which is aimed at ||| 1 0.204175 1.49697e-06 1.38043e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| approach would be to ||| 0.0909091 0.229811 1.49697e-06 8.16681e-09 2.718 ||| 0-3 ||| 11 668016 +a ||| approached by ||| 0.102564 0.0337966 5.98788e-06 8.8857e-08 2.718 ||| 0-1 ||| 39 668016 +a ||| approached on ||| 0.166667 0.0782999 1.49697e-06 4.09704e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| approached ||| 0.017301 0.108793 7.48485e-06 6.66e-05 2.718 ||| 0-0 ||| 289 668016 +a ||| approaches to ||| 0.0227273 0.229811 4.49091e-06 3.78326e-06 2.718 ||| 0-1 ||| 132 668016 +a ||| approaching Turkish ||| 1 0.1653 1.49697e-06 3.30096e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| approaching their satisfaction ||| 1 0.1653 1.49697e-06 1.52278e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| approaching their ||| 0.5 0.1653 1.49697e-06 1.27965e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| approaching ||| 0.0207469 0.1653 1.49697e-05 0.0001104 2.718 ||| 0-0 ||| 482 668016 +a ||| appropriate and until we are ||| 1 0.0268909 1.49697e-06 6.65313e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| appropriate and until we ||| 1 0.0268909 1.49697e-06 4.38493e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| appropriate and until ||| 1 0.0268909 1.49697e-06 3.86259e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| appropriate approach to ||| 0.2 0.229811 1.49697e-06 1.03354e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| appropriate for you ||| 0.2 0.0683377 1.49697e-06 1.60137e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| appropriate for ||| 0.0078125 0.0683377 4.49091e-06 4.95981e-06 2.718 ||| 0-1 ||| 384 668016 +a ||| appropriate person to ||| 0.5 0.229811 1.49697e-06 6.073e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| appropriate to keep exercising ||| 1 0.229811 1.49697e-06 7.12568e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| appropriate to keep ||| 0.25 0.229811 1.49697e-06 7.34606e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| appropriate to set up ||| 0.166667 0.229811 1.49697e-06 9.39757e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| appropriate to set ||| 0.2 0.229811 1.49697e-06 2.75548e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| appropriate to ||| 0.00240674 0.229811 2.99394e-06 4.71506e-05 2.718 ||| 0-1 ||| 831 668016 +a ||| appropriated for ||| 0.125 0.0683377 1.49697e-06 9.21213e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| appropriated to ||| 0.0769231 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| appropriately directed towards ||| 1 0.155507 1.49697e-06 8.02274e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| appropriately to short-term ||| 0.25 0.229811 1.49697e-06 1.73049e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| appropriately to ||| 0.0166667 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-1 ||| 60 668016 +a ||| approval for ||| 0.00862069 0.0683377 1.49697e-06 1.10177e-06 2.718 ||| 0-1 ||| 116 668016 +a ||| approval of ||| 0.00183824 0.0188479 2.99394e-06 8.84397e-07 2.718 ||| 0-1 ||| 1088 668016 +a ||| approval to ||| 0.0104167 0.229811 1.49697e-06 1.0474e-05 2.718 ||| 0-1 ||| 96 668016 +a ||| approval with ||| 0.166667 0.0571592 1.49697e-06 4.99183e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| approved and monitored by ||| 0.5 0.0337966 1.49697e-06 5.74583e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| approved at least ||| 0.5 0.204175 1.49697e-06 3.817e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| approved at ||| 0.00877193 0.204175 1.49697e-06 1.55542e-06 2.718 ||| 0-1 ||| 114 668016 +a ||| approved in Beijing ||| 1 0.0587624 1.49697e-06 6.04069e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| approved in ||| 0.00255102 0.0587624 1.49697e-06 2.74577e-06 2.718 ||| 0-1 ||| 392 668016 +a ||| approved of ||| 0.0416667 0.0188479 1.49697e-06 1.35174e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| approved recently . in ||| 1 0.0587624 1.49697e-06 5.65552e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| apétit ' to ||| 1 0.229811 1.49697e-06 4.813e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| arable farmers have to ||| 1 0.229811 1.49697e-06 2.36374e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| are , at ||| 0.105263 0.204175 5.98788e-06 6.15842e-05 2.718 ||| 0-2 ||| 38 668016 +a ||| are , by and ||| 0.0909091 0.0337966 1.49697e-06 1.86473e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| are , by ||| 0.02 0.0337966 1.49697e-06 1.4887e-05 2.718 ||| 0-2 ||| 50 668016 +a ||| are , in effect , ||| 0.0833333 0.0587624 1.49697e-06 4.32502e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| are , in effect ||| 0.0833333 0.0587624 1.49697e-06 3.62671e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| are , in my ||| 0.0175439 0.0587624 1.49697e-06 6.99141e-08 2.718 ||| 0-2 ||| 57 668016 +a ||| are , in ||| 0.00705882 0.0587624 4.49091e-06 0.000108714 2.718 ||| 0-2 ||| 425 668016 +a ||| are , of course , ||| 0.00772201 0.0188479 2.99394e-06 8.05279e-09 2.718 ||| 0-2 ||| 259 668016 +a ||| are , of course ||| 0.00904977 0.0188479 2.99394e-06 6.75259e-08 2.718 ||| 0-2 ||| 221 668016 +a ||| are , of ||| 0.0240964 0.0188479 2.99394e-06 5.35198e-05 2.718 ||| 0-2 ||| 83 668016 +a ||| are , ||| 0.000826105 0.0009806 2.99394e-06 3.95091e-05 2.718 ||| 0-0 ||| 2421 668016 +a ||| are : the efficiency of the rules ||| 1 0.0188479 1.49697e-06 9.26757e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| are : the efficiency of the ||| 1 0.0188479 1.49697e-06 7.97554e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| are : the efficiency of ||| 1 0.0188479 1.49697e-06 1.29912e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| are able to implement once ||| 0.5 0.229811 1.49697e-06 1.01323e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| are able to implement ||| 0.25 0.229811 1.49697e-06 2.47613e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| are able to ||| 0.00573888 0.229811 5.98788e-06 4.43751e-06 2.718 ||| 0-2 ||| 697 668016 +a ||| are about ||| 0.00319489 0.0526361 1.49697e-06 7.64598e-05 2.718 ||| 0-1 ||| 313 668016 +a ||| are accepting ||| 0.0769231 0.0023166 1.49697e-06 4.09663e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| are acting at ||| 1 0.204175 1.49697e-06 3.04681e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| are added to ||| 0.0526316 0.229811 1.49697e-06 3.78961e-07 2.718 ||| 0-2 ||| 19 668016 +a ||| are admitting ||| 0.142857 0.142222 1.49697e-06 4.43043e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| are affecting ||| 0.0294118 0.268066 1.49697e-06 1.36129e-05 2.718 ||| 0-1 ||| 34 668016 +a ||| are against a ||| 0.142857 0.05146 1.49697e-06 1.74827e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| are against ||| 0.0022831 0.05146 1.49697e-06 3.94414e-05 2.718 ||| 0-1 ||| 438 668016 +a ||| are aimed at ||| 0.00833333 0.204175 2.99394e-06 3.58904e-08 2.718 ||| 0-2 ||| 240 668016 +a ||| are aiming to ||| 0.0666667 0.229811 1.49697e-06 7.65363e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| are air disasters linked to ||| 1 0.229811 1.49697e-06 1.09909e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| are all about ||| 0.0294118 0.0526361 1.49697e-06 3.61303e-07 2.718 ||| 0-2 ||| 34 668016 +a ||| are all pending ||| 0.5 0.0799136 1.49697e-06 4.83955e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| are all visiting ||| 1 0.178388 1.49697e-06 6.80405e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| are alleged to ||| 0.0714286 0.229811 1.49697e-06 8.61033e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| are allocated to ||| 0.0909091 0.229811 2.99394e-06 2.3705e-07 2.718 ||| 0-2 ||| 22 668016 +a ||| are allowed to ||| 0.00632911 0.229811 1.49697e-06 8.60502e-07 2.718 ||| 0-2 ||| 158 668016 +a ||| are already coming to ||| 0.5 0.229811 1.49697e-06 4.78247e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| are already in use ||| 0.047619 0.0587624 1.49697e-06 2.05258e-10 2.718 ||| 0-2 ||| 21 668016 +a ||| are already in ||| 0.00609756 0.0587624 1.49697e-06 4.22168e-07 2.718 ||| 0-2 ||| 164 668016 +a ||| are also due to ||| 0.1 0.229811 2.99394e-06 7.41676e-09 2.718 ||| 0-3 ||| 20 668016 +a ||| are also in ||| 0.015873 0.0587624 1.49697e-06 4.60237e-06 2.718 ||| 0-2 ||| 63 668016 +a ||| are also some in ||| 0.333333 0.0587624 1.49697e-06 5.01337e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| are also thinking of ||| 0.5 0.0188479 1.49697e-06 1.67891e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| are also to ||| 0.0454545 0.229811 2.99394e-06 2.68334e-05 2.718 ||| 0-2 ||| 44 668016 +a ||| are also ||| 0.000269324 0.0009806 1.49697e-06 1.6726e-06 2.718 ||| 0-0 ||| 3713 668016 +a ||| are among ||| 0.00334448 0.0134501 1.49697e-06 2.06349e-06 2.718 ||| 0-1 ||| 299 668016 +a ||| are applied to ||| 0.0434783 0.229811 1.49697e-06 5.75617e-07 2.718 ||| 0-2 ||| 23 668016 +a ||| are areas in ||| 0.0833333 0.0587624 1.49697e-06 2.08668e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| are as ||| 0.00585938 0.0243476 4.49091e-06 0.000133101 2.718 ||| 0-1 ||| 512 668016 +a ||| are asking for ||| 0.00704225 0.0683377 1.49697e-06 2.41527e-08 2.718 ||| 0-2 ||| 142 668016 +a ||| are associated with ||| 0.0185185 0.0571592 1.49697e-06 1.30455e-08 2.718 ||| 0-2 ||| 54 668016 +a ||| are associated ||| 0.0185185 0.0025594 1.49697e-06 9.71053e-08 2.718 ||| 0-1 ||| 54 668016 +a ||| are at issue , ||| 0.333333 0.204175 1.49697e-06 4.66069e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| are at issue ||| 0.08 0.204175 2.99394e-06 3.90818e-07 2.718 ||| 0-1 ||| 25 668016 +a ||| are at risk ||| 0.00421941 0.204175 1.49697e-06 6.04198e-08 2.718 ||| 0-1 ||| 237 668016 +a ||| are at stake ||| 0.00689655 0.204175 2.99394e-06 1.55955e-08 2.718 ||| 0-1 ||| 290 668016 +a ||| are at the ||| 0.00242131 0.204175 1.49697e-06 3.17033e-05 2.718 ||| 0-1 ||| 413 668016 +a ||| are at ||| 0.0139903 0.204175 3.44303e-05 0.000516409 2.718 ||| 0-1 ||| 1644 668016 +a ||| are attempts to ||| 0.166667 0.229811 1.49697e-06 1.68486e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| are automatically entitled to ||| 1 0.229811 1.49697e-06 3.09286e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| are available for ||| 0.0188679 0.0683377 1.49697e-06 1.77847e-07 2.718 ||| 0-2 ||| 53 668016 +a ||| are available ||| 0.00165289 0.0046481 1.49697e-06 7.75325e-07 2.718 ||| 0-1 ||| 605 668016 +a ||| are awaiting from the ||| 1 0.0889121 1.49697e-06 1.16404e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| are awaiting from ||| 0.5 0.0889121 1.49697e-06 1.89609e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| are awaiting ||| 0.0133333 0.0889121 1.49697e-06 1.1774e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| are before ||| 0.0243902 0.0203282 1.49697e-06 8.04608e-06 2.718 ||| 0-1 ||| 41 668016 +a ||| are beginning to be ||| 0.142857 0.229811 1.49697e-06 3.92037e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| are beginning to ||| 0.0202703 0.229811 4.49091e-06 2.16321e-07 2.718 ||| 0-2 ||| 148 668016 +a ||| are being asked to ||| 0.0144928 0.229811 1.49697e-06 1.14349e-09 2.718 ||| 0-3 ||| 69 668016 +a ||| are being carried out on ||| 0.5 0.0782999 1.49697e-06 1.84901e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| are being charged by the forces of ||| 1 0.0337966 1.49697e-06 1.04117e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| are being charged by the forces ||| 1 0.0337966 1.49697e-06 1.91518e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| are being charged by the ||| 1 0.0337966 1.49697e-06 3.62038e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| are being charged by ||| 1 0.0337966 1.49697e-06 5.89716e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| are being complied with ||| 0.0384615 0.0571592 1.49697e-06 1.21827e-11 2.718 ||| 0-3 ||| 26 668016 +a ||| are being defended as ||| 1 0.0243476 1.49697e-06 1.3636e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| are being empowered to ||| 0.5 0.229811 1.49697e-06 2.72259e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| are being forced to vote ||| 1 0.229811 1.49697e-06 1.67736e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| are being forced to ||| 0.0232558 0.229811 1.49697e-06 1.06635e-09 2.718 ||| 0-3 ||| 43 668016 +a ||| are being given ||| 0.0135135 0.0371011 1.49697e-06 4.56396e-08 2.718 ||| 0-2 ||| 74 668016 +a ||| are being interrogated ||| 1 0.0645161 1.49697e-06 7.77212e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| are being recognised just as much on ||| 1 0.0782999 1.49697e-06 5.10128e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| are being taken on ||| 0.142857 0.0782999 1.49697e-06 1.49304e-09 2.718 ||| 0-3 ||| 7 668016 +a ||| are being urged to ||| 0.25 0.274464 1.49697e-06 5.78399e-09 2.718 ||| 0-2 0-3 ||| 4 668016 +a ||| are being ||| 0.000190549 0.0009806 1.49697e-06 9.42814e-07 2.718 ||| 0-0 ||| 5248 668016 +a ||| are bound to ||| 0.0277778 0.229811 2.99394e-06 2.73724e-07 2.718 ||| 0-2 ||| 72 668016 +a ||| are bringing about ||| 0.166667 0.0526361 1.49697e-06 6.13972e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| are bringing together ||| 1 0.0537586 1.49697e-06 2.0048e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| are bringing ||| 0.0333333 0.0537586 1.49697e-06 3.33799e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| are brought on board ||| 0.5 0.0782999 1.49697e-06 2.15154e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| are brought on ||| 0.5 0.0782999 1.49697e-06 1.61164e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| are brought to book ||| 1 0.229811 1.49697e-06 4.01816e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| are brought to ||| 0.0285714 0.229811 2.99394e-06 1.48821e-06 2.718 ||| 0-2 ||| 70 668016 +a ||| are by now placing strain upon the ||| 1 0.19056 1.49697e-06 2.8833e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| are by now placing strain upon ||| 1 0.19056 1.49697e-06 4.69656e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| are called daily to ||| 1 0.229811 1.49697e-06 2.09691e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| are called for at ||| 1 0.136256 1.49697e-06 3.30722e-09 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| are called on ||| 0.0322581 0.0782999 1.49697e-06 1.00037e-07 2.718 ||| 0-2 ||| 31 668016 +a ||| are called upon to think ||| 1 0.19056 1.49697e-06 1.76701e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| are called upon to ||| 0.025 0.19056 1.49697e-06 4.61963e-10 2.718 ||| 0-2 ||| 40 668016 +a ||| are called upon ||| 0.025641 0.19056 1.49697e-06 5.19888e-09 2.718 ||| 0-2 ||| 39 668016 +a ||| are calling for ||| 0.015873 0.0683377 7.48485e-06 3.68441e-08 2.718 ||| 0-2 ||| 315 668016 +a ||| are calling on ||| 0.0185185 0.0782999 1.49697e-06 3.79311e-08 2.718 ||| 0-2 ||| 54 668016 +a ||| are calling upon ||| 0.111111 0.19056 1.49697e-06 1.97127e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| are carried out ||| 0.00393701 0.0669777 1.49697e-06 1.83372e-08 2.718 ||| 0-2 ||| 254 668016 +a ||| are champing at the bit and ||| 1 0.204175 1.49697e-06 1.25805e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| are champing at the bit ||| 1 0.204175 1.49697e-06 1.00436e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| are champing at the ||| 1 0.204175 1.49697e-06 1.26813e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| are champing at ||| 1 0.204175 1.49697e-06 2.06564e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| are clear about ||| 0.142857 0.0526361 1.49697e-06 2.54535e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| are close to ||| 0.0123457 0.229811 1.49697e-06 7.88218e-07 2.718 ||| 0-2 ||| 81 668016 +a ||| are coming into being ||| 0.25 0.107578 1.49697e-06 5.09608e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| are coming into ||| 0.142857 0.107578 1.49697e-06 1.79074e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| are committed at ||| 0.2 0.204175 1.49697e-06 4.27587e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| are committed to their own ||| 1 0.229811 1.49697e-06 8.64774e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| are committed to their ||| 0.25 0.229811 1.49697e-06 5.10101e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| are committed to ||| 0.00492611 0.229811 1.49697e-06 4.40084e-07 2.718 ||| 0-2 ||| 203 668016 +a ||| are complied with ||| 0.00819672 0.0571592 1.49697e-06 4.28093e-09 2.718 ||| 0-2 ||| 122 668016 +a ||| are concerned , a partner ||| 1 0.044342 1.49697e-06 1.61428e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| are concerned , a ||| 0.0769231 0.044342 1.49697e-06 6.40588e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| are concerned , to ||| 0.5 0.229811 1.49697e-06 1.0196e-06 2.718 ||| 0-3 ||| 2 668016 +a ||| are concerned , will be to ||| 1 0.229811 1.49697e-06 1.59857e-10 2.718 ||| 0-5 ||| 1 668016 +a ||| are concerned , ||| 0.00499002 0.044342 7.48485e-06 1.44518e-06 2.718 ||| 0-1 ||| 1002 668016 +a ||| are concerned about ||| 0.00326797 0.0526361 1.49697e-06 1.22993e-07 2.718 ||| 0-2 ||| 306 668016 +a ||| are concerned at ||| 0.037037 0.204175 1.49697e-06 8.30695e-07 2.718 ||| 0-2 ||| 27 668016 +a ||| are concerned has ||| 0.5 0.044342 1.49697e-06 6.23796e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| are concerned ||| 0.0200314 0.044342 7.63455e-05 1.21184e-05 2.718 ||| 0-1 ||| 2546 668016 +a ||| are dealing with ||| 0.00239808 0.0571592 1.49697e-06 2.61669e-08 2.718 ||| 0-2 ||| 417 668016 +a ||| are dealt with under the cooperation procedure ||| 1 0.0571592 1.49697e-06 5.402e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| are dealt with under the cooperation ||| 1 0.0571592 1.49697e-06 5.38048e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| are dealt with under the ||| 0.25 0.0571592 1.49697e-06 5.842e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| are dealt with under ||| 0.2 0.0571592 1.49697e-06 9.51593e-12 2.718 ||| 0-2 ||| 5 668016 +a ||| are dealt with ||| 0.00729927 0.0571592 1.49697e-06 2.65215e-08 2.718 ||| 0-2 ||| 137 668016 +a ||| are demonstrating to ||| 0.333333 0.229811 1.49697e-06 6.32488e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| are designed to ||| 0.00995025 0.229811 2.99394e-06 4.15103e-07 2.718 ||| 0-2 ||| 201 668016 +a ||| are detailed in ||| 0.1 0.0587624 1.49697e-06 2.29727e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| are developing at ||| 0.125 0.204175 1.49697e-06 2.8041e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| are directed to ||| 0.111111 0.229811 1.49697e-06 1.6636e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| are displaying in their ||| 1 0.0587624 1.49697e-06 4.22661e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| are displaying in ||| 0.5 0.0587624 1.49697e-06 3.64645e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| are doing at ||| 0.0555556 0.204175 1.49697e-06 1.89574e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| are drafting decisions on behalf ||| 1 0.0782999 1.49697e-06 2.07017e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| are drafting decisions on ||| 1 0.0782999 1.49697e-06 6.49974e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| are driven ||| 0.025641 0.0335498 1.49697e-06 4.29387e-07 2.718 ||| 0-1 ||| 39 668016 +a ||| are due here both to ||| 1 0.229811 1.49697e-06 4.93469e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| are due to take ||| 0.0909091 0.229811 1.49697e-06 2.36521e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| are due to ||| 0.0264151 0.229811 1.04788e-05 1.46907e-06 2.718 ||| 0-2 ||| 265 668016 +a ||| are due too to ||| 1 0.229811 1.49697e-06 1.99941e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| are duty-bound to hand ||| 1 0.229811 1.49697e-06 1.47556e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| are duty-bound to ||| 0.142857 0.229811 1.49697e-06 3.72051e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| are earmarked for ||| 0.0833333 0.0683377 1.49697e-06 5.81455e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| are employed in ||| 0.0181818 0.0587624 1.49697e-06 2.62545e-08 2.718 ||| 0-2 ||| 55 668016 +a ||| are envisaged here to ||| 1 0.229811 1.49697e-06 1.552e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| are equated with ||| 0.25 0.0571592 1.49697e-06 2.78641e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| are equivalent to ||| 0.047619 0.229811 1.49697e-06 1.08958e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| are essential to ||| 0.0112994 0.229811 2.99394e-06 4.78352e-07 2.718 ||| 0-2 ||| 177 668016 +a ||| are even in-built ||| 0.125 0.0495435 1.49697e-06 1.18438e-11 2.718 ||| 0-1 ||| 8 668016 +a ||| are even ||| 0.00338983 0.0495435 1.49697e-06 2.96095e-05 2.718 ||| 0-1 ||| 295 668016 +a ||| are ever going to ||| 1 0.229811 1.49697e-06 8.54681e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| are extended to ||| 0.1 0.229811 1.49697e-06 1.92935e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| are faced with ||| 0.00408998 0.0571592 2.99394e-06 1.60345e-08 2.718 ||| 0-2 ||| 489 668016 +a ||| are facing ||| 0.00119617 0.171799 1.49697e-06 2.10916e-05 2.718 ||| 0-1 ||| 836 668016 +a ||| are far lower than ||| 0.142857 0.0242272 1.49697e-06 3.33299e-13 2.718 ||| 0-3 ||| 7 668016 +a ||| are figures to substantiate these claims . ||| 1 0.229811 1.49697e-06 2.55697e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| are figures to substantiate these claims ||| 1 0.229811 1.49697e-06 8.44163e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| are figures to substantiate these ||| 1 0.229811 1.49697e-06 2.79524e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| are figures to substantiate ||| 1 0.229811 1.49697e-06 2.69525e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| are figures to ||| 1 0.229811 1.49697e-06 2.45022e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| are flooding into ||| 0.25 0.107578 1.49697e-06 6.45145e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| are following ||| 0.0114943 0.0720432 1.49697e-06 1.49572e-05 2.718 ||| 0-1 ||| 87 668016 +a ||| are for ||| 0.0107914 0.0683377 4.49091e-06 0.000559091 2.718 ||| 0-1 ||| 278 668016 +a ||| are forced to reduce ||| 0.2 0.229811 1.49697e-06 1.42764e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| are forced to ||| 0.00390625 0.229811 1.49697e-06 3.74709e-07 2.718 ||| 0-2 ||| 256 668016 +a ||| are forgetting and abandoning ||| 1 0.107143 1.49697e-06 2.56836e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| are fortunate in being able ||| 0.25 0.0587624 1.49697e-06 1.018e-14 2.718 ||| 0-2 ||| 4 668016 +a ||| are fortunate in being ||| 0.25 0.0587624 1.49697e-06 1.21931e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| are fortunate in ||| 0.2 0.0587624 1.49697e-06 4.28458e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| are frequent in ||| 1 0.0587624 1.49697e-06 3.91994e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| are from ||| 0.00787402 0.0435582 1.49697e-06 0.000109225 2.718 ||| 0-1 ||| 127 668016 +a ||| are gains to be ||| 1 0.229811 1.49697e-06 8.28383e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| are gains to ||| 1 0.229811 1.49697e-06 4.57092e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| are given to ||| 0.176471 0.229811 4.49091e-06 3.6477e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| are given ||| 0.00198413 0.0371011 1.49697e-06 1.60375e-05 2.718 ||| 0-1 ||| 504 668016 +a ||| are giving to ||| 0.125 0.229811 2.99394e-06 8.37647e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| are giving up ||| 0.166667 0.136521 2.99394e-06 5.21915e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| are giving ||| 0.0231214 0.136521 5.98788e-06 1.53032e-05 2.718 ||| 0-1 ||| 173 668016 +a ||| are going into ||| 0.111111 0.107578 1.49697e-06 7.88736e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| are going through ||| 0.0114943 0.230708 1.49697e-06 1.03217e-07 2.718 ||| 0-2 ||| 87 668016 +a ||| are going to be absolutely rigorous , ||| 1 0.229811 1.49697e-06 3.98621e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| are going to be absolutely rigorous ||| 1 0.229811 1.49697e-06 3.34261e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| are going to be absolutely ||| 0.5 0.229811 1.49697e-06 7.7735e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| are going to be invested ||| 0.25 0.229811 1.49697e-06 6.26496e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| are going to be ||| 0.00757576 0.229811 2.99394e-06 8.24337e-08 2.718 ||| 0-2 ||| 264 668016 +a ||| are going to do in ||| 1 0.229811 1.49697e-06 3.34462e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| are going to do ||| 0.0232558 0.229811 1.49697e-06 1.56258e-08 2.718 ||| 0-2 ||| 43 668016 +a ||| are going to have to ||| 0.037037 0.229811 5.98788e-06 4.83391e-09 2.718 ||| 0-2 ||| 108 668016 +a ||| are going to have ||| 0.0177515 0.229811 4.49091e-06 5.44003e-08 2.718 ||| 0-2 ||| 169 668016 +a ||| are going to make will ||| 1 0.229811 1.49697e-06 6.83838e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| are going to make ||| 0.0384615 0.229811 1.49697e-06 7.90455e-09 2.718 ||| 0-2 ||| 26 668016 +a ||| are going to tackle ||| 0.2 0.229811 1.49697e-06 1.65114e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| are going to ||| 0.0169492 0.229811 3.44303e-05 4.5486e-06 2.718 ||| 0-2 ||| 1357 668016 +a ||| are going ||| 0.000597372 0.0011228 1.49697e-06 2.91316e-07 2.718 ||| 0-1 ||| 1674 668016 +a ||| are granted to cope ||| 1 0.229811 1.49697e-06 9.77273e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| are granted to ||| 0.0769231 0.229811 1.49697e-06 4.30517e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| are grounds for ||| 0.0909091 0.0683377 2.99394e-06 5.85369e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| are happy to ||| 0.0153846 0.229811 1.49697e-06 3.34846e-07 2.718 ||| 0-2 ||| 65 668016 +a ||| are having to ||| 0.00925926 0.229811 1.49697e-06 2.03512e-06 2.718 ||| 0-2 ||| 108 668016 +a ||| are having ||| 0.00244499 0.005163 1.49697e-06 1.23202e-06 2.718 ||| 0-1 ||| 409 668016 +a ||| are heading towards the elections in 2009 ||| 0.5 0.0587624 1.49697e-06 1.08772e-22 2.718 ||| 0-5 ||| 2 668016 +a ||| are heading towards the elections in ||| 0.5 0.0587624 1.49697e-06 8.3671e-18 2.718 ||| 0-5 ||| 2 668016 +a ||| are helped ||| 0.04 0.1991 1.49697e-06 7.96263e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| are helping to ||| 0.03125 0.266042 1.49697e-06 6.32594e-06 2.718 ||| 0-1 0-2 ||| 32 668016 +a ||| are helping ||| 0.0121951 0.302272 1.49697e-06 1.80585e-05 2.718 ||| 0-1 ||| 82 668016 +a ||| are impossible to ||| 0.047619 0.229811 1.49697e-06 2.84885e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| are in a position to ||| 0.0117647 0.229811 1.49697e-06 1.66057e-09 2.718 ||| 0-4 ||| 85 668016 +a ||| are in actual ||| 0.0588235 0.0587624 1.49697e-06 1.31911e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| are in fact ||| 0.00326797 0.0587624 1.49697e-06 2.67039e-06 2.718 ||| 0-1 ||| 306 668016 +a ||| are in favour of ||| 0.00251889 0.0587624 1.49697e-06 1.60323e-08 2.718 ||| 0-1 ||| 397 668016 +a ||| are in favour ||| 0.00446429 0.0587624 2.99394e-06 2.94907e-07 2.718 ||| 0-1 ||| 448 668016 +a ||| are in front ||| 0.5 0.0587624 1.49697e-06 7.34761e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| are in order to ||| 1 0.229811 1.49697e-06 6.05914e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| are in place ||| 0.0140187 0.0587624 4.49091e-06 1.37198e-06 2.718 ||| 0-1 ||| 214 668016 +a ||| are in possession ||| 0.0909091 0.0587624 1.49697e-06 1.31272e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| are in short supply , and ||| 0.5 0.0587624 1.49697e-06 9.89531e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| are in short supply , ||| 0.25 0.0587624 1.49697e-06 7.89988e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| are in short supply ||| 0.0666667 0.0587624 1.49697e-06 6.62438e-12 2.718 ||| 0-1 ||| 15 668016 +a ||| are in short ||| 0.2 0.0587624 1.49697e-06 1.28629e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| are in the European Union ||| 0.0625 0.0587624 1.49697e-06 1.04314e-10 2.718 ||| 0-1 ||| 16 668016 +a ||| are in the European ||| 0.5 0.0587624 1.49697e-06 1.87143e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| are in the ||| 0.00386598 0.0587624 4.49091e-06 5.59656e-05 2.718 ||| 0-1 ||| 776 668016 +a ||| are in ||| 0.0144863 0.0587624 9.73031e-05 0.000911614 2.718 ||| 0-1 ||| 4487 668016 +a ||| are incorporated into ||| 0.0588235 0.107578 1.49697e-06 1.8617e-09 2.718 ||| 0-2 ||| 17 668016 +a ||| are increasingly seeking out ||| 0.333333 0.0669777 1.49697e-06 1.81712e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| are increasingly ||| 0.0037037 0.0009806 1.49697e-06 1.90829e-08 2.718 ||| 0-0 ||| 270 668016 +a ||| are indispensable to ||| 0.0769231 0.229811 1.49697e-06 1.70081e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| are intended especially for ||| 1 0.0683377 1.49697e-06 3.94178e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| are intended for ||| 0.0344828 0.0683377 1.49697e-06 4.90882e-08 2.718 ||| 0-2 ||| 29 668016 +a ||| are invited ||| 0.016129 0.245853 1.49697e-06 5.74742e-06 2.718 ||| 0-1 ||| 62 668016 +a ||| are involved in taking care ||| 0.5 0.0587624 1.49697e-06 1.35985e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| are involved in taking ||| 0.5 0.0587624 1.49697e-06 1.33975e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| are involved in ||| 0.00295858 0.0587624 1.49697e-06 3.15236e-07 2.718 ||| 0-2 ||| 338 668016 +a ||| are issued for ||| 0.5 0.0683377 1.49697e-06 3.46077e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| are just a few examples of ||| 0.142857 0.0188479 1.49697e-06 7.61167e-17 2.718 ||| 0-5 ||| 7 668016 +a ||| are keen to ||| 0.0163934 0.229811 1.49697e-06 1.39785e-07 2.718 ||| 0-2 ||| 61 668016 +a ||| are kept by ||| 0.333333 0.0337966 1.49697e-06 8.90062e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| are kept to ||| 0.0769231 0.229811 1.49697e-06 3.78961e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| are killed ||| 0.0135135 0.102431 1.49697e-06 2.45191e-06 2.718 ||| 0-1 ||| 74 668016 +a ||| are leading to ||| 0.0263158 0.229811 1.49697e-06 4.62938e-07 2.718 ||| 0-2 ||| 38 668016 +a ||| are likely to ||| 0.00711744 0.229811 2.99394e-06 4.51245e-07 2.718 ||| 0-2 ||| 281 668016 +a ||| are locked up in prison . that ||| 1 0.0587624 1.49697e-06 1.46882e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| are locked up in prison . ||| 1 0.0587624 1.49697e-06 8.73176e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| are locked up in prison ||| 1 0.0587624 1.49697e-06 2.88272e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| are locked up in ||| 0.25 0.0587624 1.49697e-06 2.36288e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| are lost every year ||| 0.142857 0.0116434 1.49697e-06 5.32686e-14 2.718 ||| 0-2 ||| 7 668016 +a ||| are lost every ||| 0.25 0.0116434 1.49697e-06 2.13587e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| are made in ||| 0.0140845 0.0587624 1.49697e-06 1.90965e-06 2.718 ||| 0-2 ||| 71 668016 +a ||| are made to ||| 0.0192308 0.229811 1.49697e-06 1.11339e-05 2.718 ||| 0-2 ||| 52 668016 +a ||| are making , for example ||| 1 0.0683377 1.49697e-06 7.46659e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| are making , for ||| 1 0.0683377 1.49697e-06 2.56496e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| are making at ||| 1 0.204175 1.49697e-06 1.98663e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| are making ||| 0.00171821 0.0275406 1.49697e-06 6.92482e-06 2.718 ||| 0-1 ||| 582 668016 +a ||| are meant to ||| 0.0172414 0.229811 1.49697e-06 4.22544e-07 2.718 ||| 0-2 ||| 58 668016 +a ||| are members of ||| 0.00806452 0.0188479 1.49697e-06 6.61959e-08 2.718 ||| 0-2 ||| 124 668016 +a ||| are missed out ||| 1 0.0669777 1.49697e-06 5.84898e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| are more closely involved in ||| 1 0.0587624 1.49697e-06 6.37116e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| are more than a ||| 0.142857 0.0242272 1.49697e-06 1.93045e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| are more than ||| 0.00826446 0.0242272 1.49697e-06 4.35515e-08 2.718 ||| 0-2 ||| 121 668016 +a ||| are more ||| 0.000803859 0.0001318 1.49697e-06 2.07866e-07 2.718 ||| 0-1 ||| 1244 668016 +a ||| are motivated by ||| 0.0454545 0.0337966 1.49697e-06 1.43558e-09 2.718 ||| 0-2 ||| 22 668016 +a ||| are necessary to ||| 0.00819672 0.229811 1.49697e-06 1.36755e-06 2.718 ||| 0-2 ||| 122 668016 +a ||| are needed in this respect ||| 0.5 0.0587624 1.49697e-06 3.41197e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| are needed in this ||| 0.25 0.0587624 1.49697e-06 7.88711e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| are needed in ||| 0.0357143 0.0587624 2.99394e-06 1.22065e-07 2.718 ||| 0-2 ||| 56 668016 +a ||| are new ||| 0.0142857 0.0009806 1.49697e-06 1.98018e-07 2.718 ||| 0-0 ||| 70 668016 +a ||| are not always sought from ||| 0.5 0.0435582 1.49697e-06 2.07813e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| are not being expected of ||| 1 0.0188479 1.49697e-06 2.32406e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| are not entitled to ||| 0.0344828 0.229811 1.49697e-06 8.8734e-10 2.718 ||| 0-3 ||| 29 668016 +a ||| are not here just to ||| 0.333333 0.229811 1.49697e-06 4.64261e-11 2.718 ||| 0-4 ||| 3 668016 +a ||| are not in ||| 0.00318471 0.0587624 1.49697e-06 3.11234e-06 2.718 ||| 0-2 ||| 314 668016 +a ||| are not prepared to ||| 0.00854701 0.229811 1.49697e-06 1.57326e-09 2.718 ||| 0-3 ||| 117 668016 +a ||| are not waiting on ||| 1 0.0782999 1.49697e-06 5.22718e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| are now approaching ||| 0.0714286 0.1653 1.49697e-06 3.45047e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| are now fooled by ||| 0.5 0.00208 1.49697e-06 7.43291e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| are now fooled ||| 0.5 0.00208 1.49697e-06 1.41576e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| are now in ||| 0.00497512 0.0587624 1.49697e-06 1.87783e-06 2.718 ||| 0-2 ||| 201 668016 +a ||| are now ||| 0.00036914 0.00208 1.49697e-06 2.02252e-06 2.718 ||| 0-1 ||| 2709 668016 +a ||| are number one in ||| 0.5 0.0587624 1.49697e-06 1.88005e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| are obliged to ||| 0.00406504 0.229811 1.49697e-06 2.02502e-07 2.718 ||| 0-2 ||| 246 668016 +a ||| are of concern to ||| 0.0434783 0.229811 1.49697e-06 3.85743e-08 2.718 ||| 0-3 ||| 23 668016 +a ||| are of ||| 0.00793079 0.0188479 1.64667e-05 0.000448786 2.718 ||| 0-1 ||| 1387 668016 +a ||| are often inspired by the United States ||| 1 0.0337966 1.49697e-06 2.94095e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| are often inspired by the United ||| 1 0.0337966 1.49697e-06 6.16294e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| are often inspired by the ||| 1 0.0337966 1.49697e-06 5.03508e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| are often inspired by ||| 1 0.0337966 1.49697e-06 8.20155e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| are often involved . ||| 1 0.288159 1.49697e-06 9.57369e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| are often involved ||| 0.333333 0.288159 1.49697e-06 3.16068e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| are often ||| 0.00174064 0.288159 2.99394e-06 9.14019e-05 2.718 ||| 0-1 ||| 1149 668016 +a ||| are on the ||| 0.00175439 0.0782999 1.49697e-06 3.53362e-05 2.718 ||| 0-1 ||| 570 668016 +a ||| are on ||| 0.016317 0.0782999 2.09576e-05 0.000575585 2.718 ||| 0-1 ||| 858 668016 +a ||| are once again going to ||| 0.142857 0.0700825 1.49697e-06 1.0946e-12 2.718 ||| 0-2 ||| 7 668016 +a ||| are once again going ||| 0.142857 0.0700825 1.49697e-06 1.23185e-11 2.718 ||| 0-2 ||| 7 668016 +a ||| are once again ||| 0.0147059 0.0700825 2.99394e-06 1.43942e-08 2.718 ||| 0-2 ||| 136 668016 +a ||| are only compensating in dribs and ||| 1 0.0587624 1.49697e-06 7.11774e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| are only compensating in dribs ||| 1 0.0587624 1.49697e-06 5.68242e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| are only compensating in ||| 1 0.0587624 1.49697e-06 1.4206e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| are only felt after ||| 1 0.0341027 1.49697e-06 8.10311e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| are only too aware of the historical ||| 1 0.0188479 1.49697e-06 2.49294e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| are only too aware of the ||| 0.5 0.0188479 1.49697e-06 5.79754e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| are only too aware of ||| 0.333333 0.0188479 1.49697e-06 9.44351e-14 2.718 ||| 0-4 ||| 3 668016 +a ||| are open to ||| 0.0266667 0.229811 2.99394e-06 8.56781e-07 2.718 ||| 0-2 ||| 75 668016 +a ||| are other ways to deal with it ||| 1 0.229811 1.49697e-06 3.20491e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| are other ways to deal with ||| 1 0.229811 1.49697e-06 1.80221e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| are other ways to deal ||| 1 0.229811 1.49697e-06 2.81838e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| are other ways to ||| 1 0.229811 1.49697e-06 6.63773e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| are out there , ||| 0.333333 0.0669777 1.49697e-06 2.27458e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| are out there ||| 0.0714286 0.0669777 1.49697e-06 1.90733e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| are out ||| 0.0173913 0.0669777 2.99394e-06 6.22232e-05 2.718 ||| 0-1 ||| 115 668016 +a ||| are over here . tempting ||| 1 0.0682544 1.49697e-06 3.03072e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| are over here . ||| 1 0.0682544 1.49697e-06 2.1648e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| are over here ||| 1 0.0682544 1.49697e-06 7.14691e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| are over ||| 0.00675676 0.0682544 1.49697e-06 3.52447e-05 2.718 ||| 0-1 ||| 148 668016 +a ||| are particularly vulnerable to ||| 0.0454545 0.229811 1.49697e-06 9.58219e-12 2.718 ||| 0-3 ||| 22 668016 +a ||| are piled on top of ||| 1 0.0188479 1.49697e-06 2.90493e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| are planning to ||| 0.037037 0.229811 1.49697e-06 1.49352e-07 2.718 ||| 0-2 ||| 27 668016 +a ||| are polluted on ||| 1 0.0782999 1.49697e-06 1.03605e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| are preferable to ||| 0.25 0.229811 1.49697e-06 2.28546e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| are prepared for terrorists and ||| 0.333333 0.0683377 1.49697e-06 2.42868e-15 2.718 ||| 0-2 ||| 3 668016 +a ||| are prepared for terrorists ||| 0.333333 0.0683377 1.49697e-06 1.93893e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| are prepared for ||| 0.0454545 0.0683377 1.49697e-06 4.84732e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| are prepared to accept their responsibilities and ||| 1 0.229811 1.49697e-06 1.72448e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| are prepared to accept their responsibilities ||| 0.5 0.229811 1.49697e-06 1.37674e-18 2.718 ||| 0-2 ||| 2 668016 +a ||| are prepared to accept their ||| 0.5 0.229811 1.49697e-06 5.7846e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| are prepared to accept ||| 0.05 0.229811 1.49697e-06 4.9906e-11 2.718 ||| 0-2 ||| 20 668016 +a ||| are prepared to ||| 0.00253807 0.229811 1.49697e-06 4.60812e-07 2.718 ||| 0-2 ||| 394 668016 +a ||| are pretty well-known to ||| 0.333333 0.229811 1.49697e-06 4.78352e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| are problems in ||| 0.0714286 0.0587624 1.49697e-06 1.22339e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| are prohibited from doing others ||| 1 0.0435582 1.49697e-06 1.55896e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| are prohibited from doing ||| 1 0.0435582 1.49697e-06 1.60386e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| are prohibited from ||| 0.166667 0.0435582 1.49697e-06 4.36901e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| are protected internationally ||| 0.5 0.158659 1.49697e-06 9.35998e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| are pushing ||| 0.03125 0.102314 1.49697e-06 1.16375e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| are put into ||| 0.0377358 0.107578 2.99394e-06 1.0162e-07 2.718 ||| 0-2 ||| 53 668016 +a ||| are put to death in ||| 1 0.0587624 1.49697e-06 4.84983e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| are putting to ||| 0.125 0.229811 1.49697e-06 5.94751e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| are putting ||| 0.0181818 0.049485 2.99394e-06 3.06033e-06 2.718 ||| 0-1 ||| 110 668016 +a ||| are quoting ||| 0.5 0.167702 1.49697e-06 7.48014e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| are recruited ||| 0.0588235 0.108108 1.49697e-06 2.7766e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| are referring to ||| 0.030303 0.229811 1.49697e-06 2.29609e-07 2.718 ||| 0-2 ||| 33 668016 +a ||| are rejecting the report ||| 1 0.0036145 1.49697e-06 1.0309e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| are rejecting the ||| 0.142857 0.0036145 1.49697e-06 2.51499e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| are rejecting ||| 0.04 0.0036145 1.49697e-06 4.09663e-08 2.718 ||| 0-1 ||| 25 668016 +a ||| are required in ||| 0.05 0.0587624 1.49697e-06 1.44673e-07 2.718 ||| 0-2 ||| 20 668016 +a ||| are required to be ||| 0.142857 0.229811 1.49697e-06 1.52866e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| are required to ||| 0.00502513 0.229811 1.49697e-06 8.43494e-07 2.718 ||| 0-2 ||| 199 668016 +a ||| are resistant to ||| 0.0833333 0.229811 1.49697e-06 3.72051e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| are resisting ||| 0.0526316 0.277566 1.49697e-06 1.0105e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| are responsible for because ||| 1 0.0683377 1.49697e-06 2.71718e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| are responsible for ||| 0.00172117 0.0683377 1.49697e-06 8.26896e-08 2.718 ||| 0-2 ||| 581 668016 +a ||| are seeking to achieve ||| 0.125 0.229811 1.49697e-06 6.15743e-11 2.718 ||| 0-2 ||| 8 668016 +a ||| are seeking to ||| 0.00892857 0.229811 1.49697e-06 2.69472e-07 2.718 ||| 0-2 ||| 112 668016 +a ||| are seen to ||| 0.0416667 0.229811 1.49697e-06 1.11881e-06 2.718 ||| 0-2 ||| 24 668016 +a ||| are sending them to ||| 0.333333 0.229811 1.49697e-06 3.27911e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| are sent abroad , ||| 1 0.0151564 1.49697e-06 6.44279e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| are sent abroad ||| 0.5 0.0151564 1.49697e-06 5.40254e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| are sent ||| 0.0169492 0.0151564 1.49697e-06 6.50909e-07 2.718 ||| 0-1 ||| 59 668016 +a ||| are serving ||| 0.0714286 0.156373 1.49697e-06 1.64776e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| are set to ||| 0.0212766 0.229811 1.49697e-06 3.1061e-06 2.718 ||| 0-2 ||| 47 668016 +a ||| are simply playing at ||| 1 0.204175 1.49697e-06 7.54475e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| are simply running for no purpose ||| 1 0.0683377 1.49697e-06 1.32436e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| are simply running for no ||| 1 0.0683377 1.49697e-06 7.36166e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| are simply running for ||| 1 0.0683377 1.49697e-06 9.45743e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| are skinned to make stylish trimmings ||| 0.5 0.229811 1.49697e-06 1.03448e-24 2.718 ||| 0-2 ||| 2 668016 +a ||| are skinned to make stylish ||| 0.5 0.229811 1.49697e-06 2.5862e-18 2.718 ||| 0-2 ||| 2 668016 +a ||| are skinned to make ||| 0.5 0.229811 1.49697e-06 6.46551e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| are skinned to ||| 0.5 0.229811 1.49697e-06 3.72051e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| are slapping everyone ||| 0.333333 0.0278324 1.49697e-06 2.0386e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| are slowly but surely destroying ||| 1 0.0547945 1.49697e-06 9.09848e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| are slowly but surely ||| 0.166667 0.0547945 1.49697e-06 3.13741e-14 2.718 ||| 0-1 ||| 6 668016 +a ||| are slowly but ||| 0.2 0.0547945 1.49697e-06 4.92529e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| are slowly ||| 0.166667 0.0547945 1.49697e-06 7.20703e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| are standing up in ||| 1 0.0587624 1.49697e-06 1.64469e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| are starting to ||| 0.00980392 0.229811 1.49697e-06 2.42896e-07 2.718 ||| 0-2 ||| 102 668016 +a ||| are still faced ||| 0.0833333 0.0494043 1.49697e-06 2.94159e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| are still going on ||| 0.125 0.0782999 1.49697e-06 3.71016e-10 2.718 ||| 0-3 ||| 8 668016 +a ||| are still in charge there . ||| 1 0.0587624 1.49697e-06 3.2131e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| are still in charge there ||| 1 0.0587624 1.49697e-06 1.06078e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| are still in charge ||| 0.5 0.0587624 1.49697e-06 3.4606e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| are still in ||| 0.00505051 0.0587624 1.49697e-06 6.86627e-07 2.718 ||| 0-2 ||| 198 668016 +a ||| are still not prepared to ||| 1 0.229811 1.49697e-06 1.18498e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| are still often in turmoil ||| 0.5 0.0587624 1.49697e-06 6.3156e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| are still often in ||| 0.5 0.0587624 1.49697e-06 9.02229e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| are subject to very ||| 0.5 0.229811 1.49697e-06 9.98285e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| are subject to ||| 0.00886918 0.229811 5.98788e-06 2.86905e-06 2.718 ||| 0-2 ||| 451 668016 +a ||| are subordinated to ||| 0.5 0.229811 1.49697e-06 5.84652e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| are suffering from ||| 0.00909091 0.0435582 1.49697e-06 4.83868e-09 2.718 ||| 0-2 ||| 110 668016 +a ||| are suited to ||| 0.0833333 0.229811 1.49697e-06 4.41147e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| are supposed to be responsible ||| 1 0.229811 1.49697e-06 8.36255e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| are supposed to be ||| 0.0263158 0.229811 2.99394e-06 5.6542e-09 2.718 ||| 0-2 ||| 76 668016 +a ||| are supposed to ||| 0.0162162 0.229811 4.49091e-06 3.11992e-07 2.718 ||| 0-2 ||| 185 668016 +a ||| are sure to ||| 0.05 0.229811 1.49697e-06 9.25877e-07 2.718 ||| 0-2 ||| 20 668016 +a ||| are taken in ||| 0.0222222 0.0587624 1.49697e-06 8.30936e-07 2.718 ||| 0-2 ||| 45 668016 +a ||| are taken on ||| 0.0263158 0.0782999 1.49697e-06 5.24646e-07 2.718 ||| 0-2 ||| 38 668016 +a ||| are taking in ||| 0.0909091 0.0587624 1.49697e-06 3.87436e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| are taking to ||| 0.0526316 0.229811 1.49697e-06 2.25888e-06 2.718 ||| 0-2 ||| 19 668016 +a ||| are talking about , ||| 0.0666667 0.0526361 1.49697e-06 9.9753e-10 2.718 ||| 0-2 ||| 15 668016 +a ||| are talking about ||| 0.00417537 0.0526361 2.99394e-06 8.3647e-09 2.718 ||| 0-2 ||| 479 668016 +a ||| are talking to ; ||| 1 0.229811 1.49697e-06 1.79091e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| are talking to ||| 0.166667 0.229811 1.49697e-06 5.81463e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| are tantamount to a cancellation ||| 0.5 0.229811 1.49697e-06 5.06524e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| are tantamount to a ||| 0.333333 0.229811 1.49697e-06 2.0261e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| are tantamount to ||| 0.0526316 0.229811 1.49697e-06 4.57092e-08 2.718 ||| 0-2 ||| 19 668016 +a ||| are the cause of ||| 0.0344828 0.0188479 1.49697e-06 4.9786e-09 2.718 ||| 0-3 ||| 29 668016 +a ||| are the ||| 0.000388098 0.0004654 4.49091e-06 2.32522e-05 2.718 ||| 0-1 ||| 7730 668016 +a ||| are themselves so ||| 1 0.0012719 1.49697e-06 5.64775e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| are themselves ||| 0.00961538 0.0012719 1.49697e-06 2.48832e-07 2.718 ||| 0-1 ||| 104 668016 +a ||| are then pushed into ||| 1 0.107578 1.49697e-06 2.73093e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| are then ||| 0.00628931 0.0252938 1.49697e-06 1.29347e-05 2.718 ||| 0-1 ||| 159 668016 +a ||| are they opposed to ||| 1 0.147072 1.49697e-06 4.30757e-09 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| are things on the ||| 1 0.0782999 1.49697e-06 1.45232e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| are things on ||| 1 0.0782999 1.49697e-06 2.36566e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| are thinking of ||| 0.0434783 0.0188479 1.49697e-06 3.3255e-08 2.718 ||| 0-2 ||| 23 668016 +a ||| are those ||| 0.00210526 0.018252 1.49697e-06 1.5247e-05 2.718 ||| 0-1 ||| 475 668016 +a ||| are to avoid massive ||| 0.25 0.229811 1.49697e-06 2.90811e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| are to avoid ||| 0.0277778 0.229811 1.49697e-06 1.8762e-07 2.718 ||| 0-1 ||| 36 668016 +a ||| are to be believed ||| 0.0769231 0.229811 1.49697e-06 1.07882e-09 2.718 ||| 0-1 ||| 13 668016 +a ||| are to be commended ||| 0.1 0.229811 1.49697e-06 1.34853e-10 2.718 ||| 0-1 ||| 10 668016 +a ||| are to be delayed for ||| 1 0.0683377 1.49697e-06 8.46322e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| are to be for a ||| 1 0.0683377 1.49697e-06 3.99084e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| are to be for ||| 1 0.0683377 1.49697e-06 9.00343e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| are to be fulfilled ||| 0.125 0.229811 1.49697e-06 1.10772e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| are to be given ||| 0.0487805 0.229811 2.99394e-06 6.61069e-08 2.718 ||| 0-1 ||| 41 668016 +a ||| are to be kept ||| 0.111111 0.229811 1.49697e-06 6.86787e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| are to be made ||| 0.0181818 0.229811 1.49697e-06 2.01779e-07 2.718 ||| 0-1 ||| 55 668016 +a ||| are to be required ||| 0.5 0.229811 1.49697e-06 1.52866e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| are to be sent , ||| 1 0.229811 1.49697e-06 6.90371e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| are to be sent ||| 1 0.229811 1.49697e-06 5.78905e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| are to be ||| 0.0210459 0.229811 4.94e-05 9.63236e-05 2.718 ||| 0-1 ||| 1568 668016 +a ||| are to call ||| 0.333333 0.229811 1.49697e-06 1.17993e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| are to do ||| 0.0588235 0.229811 1.49697e-06 1.82587e-05 2.718 ||| 0-1 ||| 17 668016 +a ||| are to draw the ||| 1 0.0004654 1.49697e-06 2.44632e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| are to have a better time of ||| 1 0.229811 1.49697e-06 4.27252e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| are to have a better time ||| 1 0.229811 1.49697e-06 7.8591e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| are to have a better ||| 1 0.229811 1.49697e-06 4.78717e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| are to have a ||| 0.0384615 0.229811 1.49697e-06 2.81764e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| are to have ||| 0.025641 0.229811 4.49091e-06 6.35666e-05 2.718 ||| 0-1 ||| 117 668016 +a ||| are to hit ||| 0.5 0.229811 1.49697e-06 1.6636e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| are to maintain ||| 0.25 0.229811 1.49697e-06 2.42896e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| are to monitor ||| 0.5 0.229811 1.49697e-06 8.02568e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| are to press ||| 1 0.229811 1.49697e-06 1.60514e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| are to receive ||| 0.0689655 0.229811 2.99394e-06 5.33628e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| are to shift ||| 0.166667 0.229811 1.49697e-06 1.05237e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| are to subject themselves ||| 1 0.229811 1.49697e-06 1.23283e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| are to subject ||| 1 0.229811 1.49697e-06 2.86905e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| are to take ||| 0.0238095 0.229811 1.49697e-06 8.55718e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| are to ||| 0.0532472 0.229811 0.000258976 0.00531502 2.718 ||| 0-1 ||| 3249 668016 +a ||| are told by ||| 0.0909091 0.0337966 1.49697e-06 7.4151e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| are towards ||| 0.333333 0.155507 1.49697e-06 5.11714e-05 2.718 ||| 0-1 ||| 3 668016 +a ||| are transferred to ||| 0.0714286 0.229811 1.49697e-06 1.14804e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| are translated into ||| 0.0384615 0.107578 1.49697e-06 7.92606e-10 2.718 ||| 0-2 ||| 26 668016 +a ||| are transported ||| 0.0119048 0.0247788 1.49697e-06 1.94211e-07 2.718 ||| 0-1 ||| 84 668016 +a ||| are treated with ||| 0.037037 0.0571592 1.49697e-06 1.37547e-08 2.718 ||| 0-2 ||| 27 668016 +a ||| are treating ||| 0.0526316 0.173442 1.49697e-06 1.77217e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| are turning to ||| 0.0588235 0.229811 1.49697e-06 2.65751e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| are ultimately to ||| 1 0.229811 1.49697e-06 3.26874e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| are unable to ||| 0.00408998 0.229811 2.99394e-06 1.451e-07 2.718 ||| 0-2 ||| 489 668016 +a ||| are under ||| 0.00218341 0.0384416 1.49697e-06 2.1521e-05 2.718 ||| 0-1 ||| 458 668016 +a ||| are up for ||| 0.0769231 0.0683377 1.49697e-06 1.90678e-06 2.718 ||| 0-2 ||| 13 668016 +a ||| are up to in ||| 1 0.144287 1.49697e-06 1.08911e-06 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| are up to ||| 0.030303 0.229811 1.49697e-06 1.81269e-05 2.718 ||| 0-2 ||| 33 668016 +a ||| are urged ||| 0.0285714 0.319117 1.49697e-06 5.80204e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| are useful to ||| 0.0769231 0.229811 1.49697e-06 1.68486e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| are using ||| 0.00381679 0.0106396 1.49697e-06 1.16375e-06 2.718 ||| 0-1 ||| 262 668016 +a ||| are waiting in the ||| 0.333333 0.0587624 1.49697e-06 1.48869e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| are waiting in ||| 0.166667 0.0587624 1.49697e-06 2.42489e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| are we to carry ||| 0.5 0.229811 1.49697e-06 1.1072e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| are we to ||| 0.00469484 0.229811 1.49697e-06 6.03377e-05 2.718 ||| 0-2 ||| 213 668016 +a ||| are welcome to ||| 0.0714286 0.229811 1.49697e-06 5.85184e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| are when it is done ||| 1 0.0055468 1.49697e-06 1.19656e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| are when it is ||| 1 0.0055468 1.49697e-06 2.62403e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| are when it ||| 0.125 0.0055468 1.49697e-06 8.37249e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| are when ||| 0.0555556 0.0055468 1.49697e-06 4.70809e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| are widely promoted throughout ||| 0.5 0.0592287 1.49697e-06 6.89492e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| are willing to ||| 0.00943396 0.229811 2.99394e-06 2.00908e-07 2.718 ||| 0-2 ||| 212 668016 +a ||| are with ||| 0.00826446 0.0571592 1.49697e-06 0.00025331 2.718 ||| 0-1 ||| 121 668016 +a ||| are within ||| 0.0188679 0.0123496 1.49697e-06 7.5469e-06 2.718 ||| 0-1 ||| 53 668016 +a ||| are witnessing ||| 0.0114943 0.114514 1.49697e-06 1.19106e-06 2.718 ||| 0-1 ||| 87 668016 +a ||| are working in the interests ||| 1 0.0587624 1.49697e-06 1.46092e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| are working in the ||| 0.0714286 0.0587624 1.49697e-06 1.06559e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| are working in ||| 0.0181818 0.0587624 1.49697e-06 1.73571e-07 2.718 ||| 0-2 ||| 55 668016 +a ||| are writing to ||| 0.166667 0.229811 1.49697e-06 1.1608e-06 2.718 ||| 0-2 ||| 6 668016 +a ||| are ||| 0.000385788 0.0009806 0.000110776 0.0003313 2.718 ||| 0-0 ||| 191815 668016 +a ||| area at ||| 0.0227273 0.204175 1.49697e-06 1.41349e-05 2.718 ||| 0-1 ||| 44 668016 +a ||| area for ||| 0.013986 0.0683377 2.99394e-06 1.53032e-05 2.718 ||| 0-1 ||| 143 668016 +a ||| area left to ||| 0.333333 0.229811 1.49697e-06 2.74812e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| area of ||| 0.000725584 0.0188479 7.48485e-06 1.2284e-05 2.718 ||| 0-1 ||| 6891 668016 +a ||| area to ensure that ||| 0.5 0.229811 1.49697e-06 1.09733e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| area to ensure ||| 0.5 0.229811 1.49697e-06 6.52333e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| area to ||| 0.0295567 0.229811 8.98182e-06 0.00014548 2.718 ||| 0-1 ||| 203 668016 +a ||| area which touches upon traditional relations within ||| 1 0.0123496 1.49697e-06 1.18383e-27 2.718 ||| 0-6 ||| 1 668016 +a ||| area with ||| 0.00925926 0.0571592 1.49697e-06 6.93348e-06 2.718 ||| 0-1 ||| 108 668016 +a ||| areas and to ||| 0.0588235 0.115699 1.49697e-06 1.54715e-07 2.718 ||| 0-1 0-2 ||| 17 668016 +a ||| areas in ||| 0.00189753 0.0587624 2.99394e-06 1.37529e-05 2.718 ||| 0-1 ||| 1054 668016 +a ||| areas of flexibility over the scope of ||| 1 0.0188479 1.49697e-06 1.56206e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| areas of ||| 0.000295421 0.0188479 1.49697e-06 6.77052e-06 2.718 ||| 0-1 ||| 3385 668016 +a ||| areas such as ||| 0.00156986 0.0243476 1.49697e-06 4.15436e-09 2.718 ||| 0-2 ||| 637 668016 +a ||| areas to ||| 0.0193237 0.229811 5.98788e-06 8.0184e-05 2.718 ||| 0-1 ||| 207 668016 +a ||| argue against ||| 0.0204082 0.05146 1.49697e-06 5.7189e-08 2.718 ||| 0-1 ||| 49 668016 +a ||| argue for ||| 0.00970874 0.0683377 1.49697e-06 8.10667e-07 2.718 ||| 0-1 ||| 103 668016 +a ||| argue in ||| 0.0149254 0.0587624 1.49697e-06 1.32181e-06 2.718 ||| 0-1 ||| 67 668016 +a ||| argue with me ||| 1 0.0571592 1.49697e-06 2.21147e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| argue with ||| 0.0285714 0.0571592 1.49697e-06 3.67292e-07 2.718 ||| 0-1 ||| 35 668016 +a ||| argument in ||| 0.0163934 0.0587624 1.49697e-06 1.94667e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| arguments from ||| 0.0714286 0.0435582 1.49697e-06 1.73491e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| arguments in ||| 0.00833333 0.0587624 1.49697e-06 1.44799e-06 2.718 ||| 0-1 ||| 120 668016 +a ||| arguments of the ||| 0.0208333 0.0188479 1.49697e-06 4.37626e-08 2.718 ||| 0-1 ||| 48 668016 +a ||| arguments of ||| 0.00952381 0.0188479 1.49697e-06 7.12842e-07 2.718 ||| 0-1 ||| 105 668016 +a ||| arise due to ||| 0.0666667 0.229811 1.49697e-06 4.21182e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| arises out of ||| 0.0833333 0.0188479 1.49697e-06 2.3226e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| arising from news ||| 0.5 0.0435582 1.49697e-06 7.60431e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| arising from ||| 0.00359712 0.0435582 4.49091e-06 2.09485e-07 2.718 ||| 0-1 ||| 834 668016 +a ||| arising ||| 0.00145985 0.0061193 1.49697e-06 1.1e-05 2.718 ||| 0-0 ||| 685 668016 +a ||| arm behind ||| 1 0.0923313 1.49697e-06 1.24805e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| arm for ||| 0.333333 0.0683377 1.49697e-06 5.96946e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| arms at ||| 0.333333 0.204175 1.49697e-06 9.42781e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| arms industries to ||| 1 0.229811 1.49697e-06 1.57194e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| arms of ||| 0.00840336 0.0188479 1.49697e-06 8.19324e-07 2.718 ||| 0-1 ||| 119 668016 +a ||| around , ||| 0.015873 0.0931303 1.49697e-06 0.000107866 2.718 ||| 0-0 ||| 63 668016 +a ||| around a table ||| 0.047619 0.0931303 1.49697e-06 2.71427e-09 2.718 ||| 0-0 ||| 21 668016 +a ||| around a ||| 0.00729927 0.0931303 1.49697e-06 4.00927e-05 2.718 ||| 0-0 ||| 137 668016 +a ||| around at ||| 0.25 0.204175 1.49697e-06 4.53352e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| around in ||| 0.0344828 0.0759463 1.49697e-06 5.43446e-05 2.718 ||| 0-0 0-1 ||| 29 668016 +a ||| around it ||| 0.0196078 0.0931303 1.49697e-06 1.60849e-05 2.718 ||| 0-0 ||| 51 668016 +a ||| around one ||| 0.0217391 0.0931303 1.49697e-06 3.76996e-06 2.718 ||| 0-0 ||| 46 668016 +a ||| around only ||| 0.166667 0.0931303 1.49697e-06 1.0068e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| around the country ||| 0.0909091 0.0931303 1.49697e-06 1.99848e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| around the table ||| 0.0181818 0.0004654 1.49697e-06 1.38195e-11 2.718 ||| 0-1 ||| 55 668016 +a ||| around the ||| 0.00380048 0.0931303 1.19758e-05 5.55289e-05 2.718 ||| 0-0 ||| 2105 668016 +a ||| around to ||| 0.0740741 0.229811 2.99394e-06 4.66602e-05 2.718 ||| 0-1 ||| 27 668016 +a ||| around with ||| 0.0769231 0.0571592 1.49697e-06 2.22379e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| around ||| 0.0149675 0.0931303 0.000158679 0.0009045 2.718 ||| 0-0 ||| 7082 668016 +a ||| arrange for ||| 0.0352941 0.0683377 4.49091e-06 3.7217e-07 2.718 ||| 0-1 ||| 85 668016 +a ||| arranged following this ceremony ||| 1 0.0720432 1.49697e-06 1.31724e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| arranged following this ||| 1 0.0720432 1.49697e-06 5.98747e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| arranged following ||| 1 0.0720432 1.49697e-06 9.26652e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| arrangement for ||| 0.0526316 0.0683377 1.49697e-06 5.30618e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| arrangements for ||| 0.00588235 0.0683377 2.99394e-06 1.61765e-06 2.718 ||| 0-1 ||| 340 668016 +a ||| arrangements in the ||| 0.0909091 0.0587624 1.49697e-06 1.61928e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| arrangements in ||| 0.0172414 0.0587624 1.49697e-06 2.63762e-06 2.718 ||| 0-1 ||| 58 668016 +a ||| arrangements to ||| 0.0294118 0.229811 2.99394e-06 1.53782e-05 2.718 ||| 0-1 ||| 68 668016 +a ||| arranging for ||| 0.111111 0.0683377 2.99394e-06 1.73188e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| arrest of ||| 0.0042735 0.0188479 1.49697e-06 4.05225e-07 2.718 ||| 0-1 ||| 234 668016 +a ||| arrest to ||| 1 0.229811 1.49697e-06 4.79913e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| arrested ||| 0.00541126 0.0414938 7.48485e-06 3.65e-05 2.718 ||| 0-0 ||| 924 668016 +a ||| arresting war criminals ||| 0.5 0.339623 1.49697e-06 6.10295e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| arresting war ||| 0.5 0.339623 1.49697e-06 1.22059e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| arresting ||| 0.016129 0.339623 1.49697e-06 3.29e-05 2.718 ||| 0-0 ||| 62 668016 +a ||| arrival of ||| 0.005 0.0188479 1.49697e-06 2.12965e-07 2.718 ||| 0-1 ||| 200 668016 +a ||| arrive all along the ||| 1 0.0038996 1.49697e-06 1.19691e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| arrive all along ||| 1 0.0038996 1.49697e-06 1.94962e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| arrive all ||| 1 0.0038996 1.49697e-06 1.11726e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| arrive at ||| 0.0107991 0.204175 7.48485e-06 6.87515e-07 2.718 ||| 0-1 ||| 463 668016 +a ||| arrive here at ||| 0.2 0.204175 1.49697e-06 1.39414e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| arrived at the ||| 0.0204082 0.204175 1.49697e-06 3.46856e-08 2.718 ||| 0-1 ||| 49 668016 +a ||| arrived at ||| 0.00859599 0.204175 4.49091e-06 5.64988e-07 2.718 ||| 0-1 ||| 349 668016 +a ||| arrived back in ||| 1 0.0587624 1.49697e-06 6.70831e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| arrived in ||| 0.0102041 0.0587624 1.49697e-06 9.97369e-07 2.718 ||| 0-1 ||| 98 668016 +a ||| arrives at ||| 0.0833333 0.204175 1.49697e-06 9.87027e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| arrives here ||| 0.166667 0.0182742 1.49697e-06 2.49342e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| arriving at ||| 0.00952381 0.109117 1.49697e-06 2.48458e-07 2.718 ||| 0-0 0-1 ||| 105 668016 +a ||| arriving on ||| 0.0526316 0.0782999 1.49697e-06 1.89678e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| arrogantly to ||| 1 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| article seeking to ||| 1 0.229811 1.49697e-06 2.55748e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| articles to ||| 0.142857 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| as , ||| 0.00285714 0.0243476 2.99394e-06 0.00104615 2.718 ||| 0-0 ||| 700 668016 +a ||| as 1992 that they were incompatible with ||| 1 0.0243476 1.49697e-06 8.00024e-23 2.718 ||| 0-0 ||| 1 668016 +a ||| as 1992 that they were incompatible ||| 1 0.0243476 1.49697e-06 1.25111e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| as 1992 that they were ||| 1 0.0243476 1.49697e-06 2.50223e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| as 1992 that they ||| 1 0.0243476 1.49697e-06 1.3968e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| as 1992 that ||| 1 0.0243476 1.49697e-06 4.27941e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| as 1992 ||| 0.0909091 0.0243476 1.49697e-06 2.544e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| as Europe , to ||| 0.333333 0.229811 1.49697e-06 2.15703e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| as Finance ||| 1 0.0243476 1.49697e-06 1.22814e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| as I did ||| 0.0289855 0.0243476 5.98788e-06 2.81838e-08 2.718 ||| 0-0 ||| 138 668016 +a ||| as I have already said , ||| 0.00444444 0.0243476 1.49697e-06 1.68572e-14 2.718 ||| 0-0 ||| 225 668016 +a ||| as I have already said ||| 0.00328947 0.0243476 1.49697e-06 1.41355e-13 2.718 ||| 0-0 ||| 304 668016 +a ||| as I have already ||| 0.00210526 0.0243476 1.49697e-06 3.43678e-10 2.718 ||| 0-0 ||| 475 668016 +a ||| as I have ||| 0.000831947 0.0243476 1.49697e-06 7.42124e-07 2.718 ||| 0-0 ||| 1202 668016 +a ||| as I might put it ||| 1 0.0243476 1.49697e-06 4.6721e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| as I might put ||| 1 0.0243476 1.49697e-06 2.62725e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| as I might ||| 0.333333 0.0243476 1.49697e-06 2.38278e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| as I said , ||| 0.00123609 0.0243476 1.49697e-06 3.0436e-09 2.718 ||| 0-0 ||| 809 668016 +a ||| as I said earlier , this ||| 0.125 0.031057 1.49697e-06 3.57096e-15 2.718 ||| 0-3 ||| 8 668016 +a ||| as I said earlier , ||| 0.00454545 0.031057 1.49697e-06 5.52661e-13 2.718 ||| 0-3 ||| 220 668016 +a ||| as I said earlier ||| 0.00346021 0.031057 1.49697e-06 4.63429e-12 2.718 ||| 0-3 ||| 289 668016 +a ||| as I said ||| 0.000540833 0.0243476 1.49697e-06 2.55218e-08 2.718 ||| 0-0 ||| 1849 668016 +a ||| as I see it ||| 0.00217865 0.0243476 1.49697e-06 7.77509e-10 2.718 ||| 0-0 ||| 459 668016 +a ||| as I see ||| 0.00291545 0.0243476 1.49697e-06 4.37215e-08 2.718 ||| 0-0 ||| 343 668016 +a ||| as I urge them ||| 1 0.0243476 1.49697e-06 5.44282e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| as I urge ||| 1 0.0243476 1.49697e-06 2.02909e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| as I was saying , ||| 0.025 0.0243476 1.49697e-06 4.11284e-12 2.718 ||| 0-0 ||| 40 668016 +a ||| as I was saying ||| 0.0416667 0.0243476 2.99394e-06 3.44879e-11 2.718 ||| 0-0 ||| 48 668016 +a ||| as I was ||| 0.0196078 0.0243476 2.99394e-06 1.94408e-07 2.718 ||| 0-0 ||| 102 668016 +a ||| as I ||| 0.00227445 0.0243476 1.79636e-05 6.20516e-05 2.718 ||| 0-0 ||| 5276 668016 +a ||| as President of ||| 0.00326797 0.0243476 1.49697e-06 6.91509e-08 2.718 ||| 0-0 ||| 306 668016 +a ||| as President ||| 0.00141443 0.0243476 1.49697e-06 1.272e-06 2.718 ||| 0-0 ||| 707 668016 +a ||| as Sweden , ||| 0.111111 0.0243476 1.49697e-06 1.80984e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| as Sweden ||| 0.0555556 0.0243476 1.49697e-06 1.51763e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| as a Commissioner with ||| 1 0.0571592 1.49697e-06 6.66042e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| as a basis for ||| 0.00371747 0.0683377 1.49697e-06 9.89701e-09 2.718 ||| 0-3 ||| 269 668016 +a ||| as a basis ||| 0.00310559 0.0243476 1.49697e-06 2.30895e-07 2.718 ||| 0-0 ||| 322 668016 +a ||| as a board , at ||| 1 0.0243476 1.49697e-06 2.59225e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| as a board , ||| 1 0.0243476 1.49697e-06 6.19059e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| as a board ||| 1 0.0243476 1.49697e-06 5.19106e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| as a deterrent , and is ||| 1 0.0243476 1.49697e-06 5.82537e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| as a deterrent , and ||| 1 0.0243476 1.49697e-06 1.8587e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| as a deterrent , ||| 0.166667 0.0243476 1.49697e-06 1.48389e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| as a deterrent ||| 0.0243902 0.0243476 1.49697e-06 1.2443e-09 2.718 ||| 0-0 ||| 41 668016 +a ||| as a direct ||| 0.333333 0.0243476 2.99394e-06 1.917e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| as a follow-up to ||| 0.0192308 0.229811 1.49697e-06 2.28165e-09 2.718 ||| 0-3 ||| 52 668016 +a ||| as a matter of urgency , ||| 0.00502513 0.0188479 1.49697e-06 4.2873e-14 2.718 ||| 0-3 ||| 199 668016 +a ||| as a matter of urgency to ||| 0.0588235 0.229811 1.49697e-06 2.31465e-13 2.718 ||| 0-5 ||| 17 668016 +a ||| as a matter of urgency ||| 0.0017762 0.0188479 1.49697e-06 3.59508e-13 2.718 ||| 0-3 ||| 563 668016 +a ||| as a matter of ||| 0.00315457 0.0188479 4.49091e-06 1.38806e-08 2.718 ||| 0-3 ||| 951 668016 +a ||| as a matter ||| 0.00193424 0.0243476 2.99394e-06 4.03425e-07 2.718 ||| 0-0 ||| 1034 668016 +a ||| as a means ||| 0.00145985 0.0243476 1.49697e-06 2.4641e-07 2.718 ||| 0-0 ||| 685 668016 +a ||| as a reason ||| 0.0204082 0.0243476 1.49697e-06 9.09505e-08 2.718 ||| 0-0 ||| 49 668016 +a ||| as a representative of ||| 0.00456621 0.0215977 1.49697e-06 2.69133e-10 2.718 ||| 0-0 0-3 ||| 219 668016 +a ||| as a result , ||| 0.000617665 0.0243476 1.49697e-06 2.44146e-08 2.718 ||| 0-0 ||| 1619 668016 +a ||| as a result of the ||| 0.000643915 0.0243476 1.49697e-06 6.83274e-10 2.718 ||| 0-0 ||| 1553 668016 +a ||| as a result of which we have ||| 0.25 0.0243476 1.49697e-06 1.28362e-14 2.718 ||| 0-0 ||| 4 668016 +a ||| as a result of which we ||| 0.333333 0.0243476 1.49697e-06 1.07328e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| as a result of which ||| 0.00609756 0.0243476 1.49697e-06 9.45426e-11 2.718 ||| 0-0 ||| 164 668016 +a ||| as a result of ||| 0.00172626 0.0188479 1.04788e-05 7.04399e-09 2.718 ||| 0-3 ||| 4055 668016 +a ||| as a result ||| 0.000729607 0.0243476 7.48485e-06 2.04726e-07 2.718 ||| 0-0 ||| 6853 668016 +a ||| as a rule ||| 0.00512821 0.0243476 1.49697e-06 3.1613e-08 2.718 ||| 0-0 ||| 195 668016 +a ||| as a unity ||| 1 0.0243476 1.49697e-06 2.25529e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| as a way of ||| 0.00442478 0.0215977 1.49697e-06 2.47924e-08 2.718 ||| 0-0 0-3 ||| 226 668016 +a ||| as a weapon to ||| 0.166667 0.229811 1.49697e-06 5.07033e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| as a whole . ||| 0.000766871 0.0243476 1.49697e-06 6.66286e-10 2.718 ||| 0-0 ||| 1304 668016 +a ||| as a whole ||| 0.00143885 0.0243476 1.04788e-05 2.19969e-07 2.718 ||| 0-0 ||| 4865 668016 +a ||| as a ||| 0.0125327 0.0243476 0.000645194 0.000388844 2.718 ||| 0-0 ||| 34390 668016 +a ||| as active behaviour ||| 0.125 0.0243476 1.49697e-06 9.05031e-12 2.718 ||| 0-0 ||| 8 668016 +a ||| as active ||| 0.04 0.0243476 1.49697e-06 3.53528e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| as addressed in ||| 0.25 0.0587624 1.49697e-06 3.28625e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| as affected by ||| 0.2 0.0337966 1.49697e-06 5.59152e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| as against ||| 0.00990099 0.0379038 1.49697e-06 2.28039e-05 2.718 ||| 0-0 0-1 ||| 101 668016 +a ||| as all of us must , to ||| 1 0.229811 1.49697e-06 4.87839e-13 2.718 ||| 0-6 ||| 1 668016 +a ||| as all ||| 0.0057971 0.0243476 2.99394e-06 4.14531e-05 2.718 ||| 0-0 ||| 345 668016 +a ||| as also ||| 0.00478469 0.0243476 1.49697e-06 4.42883e-05 2.718 ||| 0-0 ||| 209 668016 +a ||| as an acting Commissioner ||| 1 0.0243476 1.49697e-06 2.029e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| as an acting ||| 1 0.0243476 1.49697e-06 2.30045e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| as an encouragement to ||| 0.166667 0.229811 1.49697e-06 1.49348e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| as an example ||| 0.00210084 0.0243476 1.49697e-06 1.13502e-08 2.718 ||| 0-0 ||| 476 668016 +a ||| as an ||| 0.00175254 0.0243476 1.49697e-05 3.89907e-05 2.718 ||| 0-0 ||| 5706 668016 +a ||| as and when ||| 0.00961538 0.0149472 1.49697e-06 3.40964e-08 2.718 ||| 0-0 0-2 ||| 104 668016 +a ||| as and ||| 0.00787402 0.0243476 1.49697e-06 0.000109882 2.718 ||| 0-0 ||| 127 668016 +a ||| as asking ||| 0.166667 0.0319755 1.49697e-06 1.36025e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| as associated with ||| 1 0.0571592 1.49697e-06 8.77372e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| as at the ||| 0.0655738 0.204175 5.98788e-06 2.1322e-05 2.718 ||| 0-1 ||| 61 668016 +a ||| as at ||| 0.0349345 0.204175 1.19758e-05 0.000347311 2.718 ||| 0-1 ||| 229 668016 +a ||| as being ||| 0.00948367 0.0243476 1.34727e-05 2.49645e-05 2.718 ||| 0-0 ||| 949 668016 +a ||| as called for in ||| 0.027027 0.0587624 1.49697e-06 8.18971e-10 2.718 ||| 0-3 ||| 37 668016 +a ||| as change ||| 1 0.0243476 1.49697e-06 1.07023e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| as cheating ||| 1 0.0243476 1.49697e-06 9.64964e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| as close as ||| 0.0263158 0.0243476 1.49697e-06 1.32754e-08 2.718 ||| 0-0 ||| 38 668016 +a ||| as close ||| 0.00704225 0.0243476 1.49697e-06 1.30095e-06 2.718 ||| 0-0 ||| 142 668016 +a ||| as compared with ||| 0.00724638 0.0571592 1.49697e-06 6.37159e-09 2.718 ||| 0-2 ||| 138 668016 +a ||| as countries in ||| 0.5 0.0587624 1.49697e-06 2.32796e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| as criminals ||| 0.0344828 0.0357555 1.49697e-06 5.77569e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| as does the ||| 0.00746269 0.0243476 1.49697e-06 3.77741e-07 2.718 ||| 0-0 ||| 134 668016 +a ||| as does ||| 0.00772201 0.0243476 2.99394e-06 6.15296e-06 2.718 ||| 0-0 ||| 259 668016 +a ||| as early as at the ||| 0.166667 0.204175 1.49697e-06 1.47301e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| as early as at ||| 0.0714286 0.204175 1.49697e-06 2.39935e-10 2.718 ||| 0-3 ||| 14 668016 +a ||| as early as the ||| 0.0930233 0.0243476 5.98788e-06 3.72053e-10 2.718 ||| 0-0 ||| 43 668016 +a ||| as early as ||| 0.0201729 0.0357095 1.04788e-05 2.17347e-08 2.718 ||| 0-0 0-1 ||| 347 668016 +a ||| as early ||| 0.0311526 0.0357095 1.49697e-05 2.12994e-06 2.718 ||| 0-0 0-1 ||| 321 668016 +a ||| as effective ||| 0.00819672 0.0243476 1.49697e-06 5.74592e-07 2.718 ||| 0-0 ||| 122 668016 +a ||| as elsewhere , ||| 0.0208333 0.0243476 1.49697e-06 3.88122e-08 2.718 ||| 0-0 ||| 48 668016 +a ||| as elsewhere ||| 0.00961538 0.0243476 1.49697e-06 3.25456e-07 2.718 ||| 0-0 ||| 104 668016 +a ||| as everywhere else ||| 0.25 0.0243476 1.49697e-06 1.93572e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| as everywhere ||| 0.142857 0.0243476 1.49697e-06 1.64044e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| as far as I am ||| 0.00289017 0.0243476 1.49697e-06 5.52244e-13 2.718 ||| 0-0 ||| 346 668016 +a ||| as far as I ||| 0.0030303 0.0243476 1.49697e-06 4.32285e-10 2.718 ||| 0-0 ||| 330 668016 +a ||| as far as possible , although ||| 1 0.0921822 1.49697e-06 9.8872e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| as far as possible , to ||| 0.0588235 0.229811 1.49697e-06 2.38205e-12 2.718 ||| 0-5 ||| 17 668016 +a ||| as far as to ||| 0.111111 0.229811 5.98788e-06 2.49027e-08 2.718 ||| 0-3 ||| 36 668016 +a ||| as far as ||| 0.00891379 0.0243476 0.000104788 6.11133e-08 2.718 ||| 0-0 ||| 7853 668016 +a ||| as far ||| 0.0165094 0.0243476 0.000104788 5.98892e-06 2.718 ||| 0-0 ||| 4240 668016 +a ||| as fast ||| 0.012987 0.0243476 1.49697e-06 1.61412e-07 2.718 ||| 0-0 ||| 77 668016 +a ||| as follows ||| 0.00140845 0.0243476 1.49697e-06 4.6406e-07 2.718 ||| 0-0 ||| 710 668016 +a ||| as for the ||| 0.000682594 0.0683377 1.49697e-06 2.30844e-05 2.718 ||| 0-1 ||| 1465 668016 +a ||| as for ||| 0.00753864 0.0683377 2.99394e-05 0.000376017 2.718 ||| 0-1 ||| 2653 668016 +a ||| as friendly to ||| 1 0.12708 1.49697e-06 3.31882e-08 2.718 ||| 0-0 0-2 ||| 1 668016 +a ||| as from the ||| 0.015625 0.0435582 1.49697e-06 4.50981e-06 2.718 ||| 0-1 ||| 64 668016 +a ||| as from ||| 0.00702576 0.0435582 4.49091e-06 7.34594e-05 2.718 ||| 0-1 ||| 427 668016 +a ||| as gifts to ||| 0.5 0.229811 1.49697e-06 5.00446e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| as good as ||| 0.00775194 0.0243476 1.49697e-06 4.64236e-08 2.718 ||| 0-0 ||| 129 668016 +a ||| as good ||| 0.00403226 0.0243476 1.49697e-06 4.54937e-06 2.718 ||| 0-0 ||| 248 668016 +a ||| as grant aid is made available to ||| 1 0.229811 1.49697e-06 3.09067e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| as has already been said , in ||| 0.2 0.0243476 1.49697e-06 7.33114e-17 2.718 ||| 0-0 ||| 5 668016 +a ||| as has already been said , ||| 0.00395257 0.0243476 1.49697e-06 3.42504e-15 2.718 ||| 0-0 ||| 253 668016 +a ||| as has already been said ||| 0.00258398 0.0243476 1.49697e-06 2.87204e-14 2.718 ||| 0-0 ||| 387 668016 +a ||| as has already been ||| 0.0013369 0.0243476 1.49697e-06 6.98284e-11 2.718 ||| 0-0 ||| 748 668016 +a ||| as has already ||| 0.00462963 0.0243476 1.49697e-06 2.09117e-08 2.718 ||| 0-0 ||| 216 668016 +a ||| as has ||| 0.00134048 0.0243476 1.49697e-06 4.51559e-05 2.718 ||| 0-0 ||| 746 668016 +a ||| as having bribed ||| 1 0.0243476 1.49697e-06 2.35127e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| as having ||| 0.00515464 0.0243476 1.49697e-06 3.35895e-06 2.718 ||| 0-0 ||| 194 668016 +a ||| as he is supposed to ||| 0.2 0.0243476 1.49697e-06 1.25151e-12 2.718 ||| 0-0 ||| 5 668016 +a ||| as he is supposed ||| 0.2 0.0243476 1.49697e-06 1.40843e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| as he is ||| 0.0133333 0.0243476 1.49697e-06 2.39937e-07 2.718 ||| 0-0 ||| 75 668016 +a ||| as he ||| 0.00525394 0.0243476 4.49091e-06 7.65567e-06 2.718 ||| 0-0 ||| 571 668016 +a ||| as helpful to ||| 0.333333 0.229811 1.49697e-06 2.96693e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| as highly negative . in ||| 1 0.0587624 1.49697e-06 2.62909e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| as how ||| 0.0322581 0.0243476 1.49697e-06 3.14403e-06 2.718 ||| 0-0 ||| 31 668016 +a ||| as important progress ||| 0.333333 0.0243476 1.49697e-06 4.43183e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| as important ||| 0.00199203 0.0243476 1.49697e-06 3.36509e-06 2.718 ||| 0-0 ||| 502 668016 +a ||| as importers ||| 0.5 0.0243476 1.49697e-06 3.50896e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| as in any ||| 0.025641 0.0587624 1.49697e-06 9.27139e-07 2.718 ||| 0-1 ||| 39 668016 +a ||| as in other ||| 0.00641026 0.041555 1.49697e-06 6.82816e-07 2.718 ||| 0-0 0-1 ||| 156 668016 +a ||| as in terms ||| 0.0714286 0.0587624 1.49697e-06 6.72945e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| as in ||| 0.00475248 0.0587624 1.79636e-05 0.000613106 2.718 ||| 0-1 ||| 2525 668016 +a ||| as individuals ||| 0.00952381 0.0243476 1.49697e-06 2.84226e-07 2.718 ||| 0-0 ||| 105 668016 +a ||| as into ||| 0.0625 0.107578 1.49697e-06 6.19846e-05 2.718 ||| 0-1 ||| 16 668016 +a ||| as is ||| 0.000926784 0.0243476 2.99394e-06 0.000274937 2.718 ||| 0-0 ||| 2158 668016 +a ||| as issue out ||| 1 0.0243476 1.49697e-06 2.54298e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| as issue ||| 1 0.0243476 1.49697e-06 6.63895e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| as it affects ||| 0.0277778 0.20238 1.49697e-06 1.91367e-07 2.718 ||| 0-0 0-2 ||| 36 668016 +a ||| as it deals ||| 0.1 0.0243476 1.49697e-06 3.99363e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| as it does , to ||| 0.5 0.229811 1.49697e-06 5.31717e-09 2.718 ||| 0-4 ||| 2 668016 +a ||| as it does so to ||| 1 0.229811 1.49697e-06 1.01198e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| as it does to ||| 0.0416667 0.229811 1.49697e-06 4.45867e-08 2.718 ||| 0-3 ||| 24 668016 +a ||| as it does ||| 0.00434783 0.0243476 1.49697e-06 1.09419e-07 2.718 ||| 0-0 ||| 230 668016 +a ||| as it enters ||| 0.111111 0.0243476 1.49697e-06 6.70806e-10 2.718 ||| 0-0 ||| 9 668016 +a ||| as it is at ||| 0.0416667 0.204175 1.49697e-06 1.93572e-07 2.718 ||| 0-3 ||| 24 668016 +a ||| as it is done ||| 0.25 0.0243476 1.49697e-06 2.2295e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| as it is of ||| 0.0909091 0.0188479 1.49697e-06 1.68224e-07 2.718 ||| 0-3 ||| 11 668016 +a ||| as it is to ||| 0.0384615 0.229811 2.99394e-06 1.9923e-06 2.718 ||| 0-3 ||| 52 668016 +a ||| as it is with ||| 0.111111 0.0571592 1.49697e-06 9.49512e-08 2.718 ||| 0-3 ||| 9 668016 +a ||| as it is ||| 0.000880669 0.0243476 2.99394e-06 4.88925e-06 2.718 ||| 0-0 ||| 2271 668016 +a ||| as it pains ||| 1 0.0243476 1.49697e-06 7.80007e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| as it provides a ||| 0.0588235 0.0243476 1.49697e-06 4.95106e-10 2.718 ||| 0-0 ||| 17 668016 +a ||| as it provides ||| 0.0238095 0.0243476 1.49697e-06 1.11697e-08 2.718 ||| 0-0 ||| 42 668016 +a ||| as it stands ||| 0.00188679 0.0243476 1.49697e-06 8.59567e-09 2.718 ||| 0-0 ||| 530 668016 +a ||| as it was in ||| 0.0144928 0.0587624 1.49697e-06 3.4159e-08 2.718 ||| 0-3 ||| 69 668016 +a ||| as it were , to ||| 0.037037 0.229811 1.49697e-06 1.35802e-08 2.718 ||| 0-4 ||| 27 668016 +a ||| as it were , ||| 0.00684932 0.0243476 2.99394e-06 3.3327e-08 2.718 ||| 0-0 ||| 292 668016 +a ||| as it were ||| 0.00436681 0.0243476 2.99394e-06 2.79461e-07 2.718 ||| 0-0 ||| 458 668016 +a ||| as it wishes , ||| 1 0.0243476 1.49697e-06 9.84146e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| as it wishes ||| 0.111111 0.0243476 1.49697e-06 8.25247e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| as it would to ||| 0.333333 0.229811 1.49697e-06 3.73062e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| as it ||| 0.00397022 0.0243476 3.59273e-05 0.000156001 2.718 ||| 0-0 ||| 6045 668016 +a ||| as laid ||| 0.0222222 0.0243476 1.49697e-06 9.56192e-07 2.718 ||| 0-0 ||| 45 668016 +a ||| as large as that paid to ||| 0.333333 0.229811 1.49697e-06 1.26941e-14 2.718 ||| 0-5 ||| 3 668016 +a ||| as long as ||| 0.00128287 0.0243476 2.99394e-06 3.02836e-08 2.718 ||| 0-0 ||| 1559 668016 +a ||| as long ||| 0.00548847 0.0243476 7.48485e-06 2.9677e-06 2.718 ||| 0-0 ||| 911 668016 +a ||| as luck would have it , in ||| 1 0.0587624 1.49697e-06 8.85235e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| as many as ||| 0.0182927 0.0243476 4.49091e-06 3.07312e-08 2.718 ||| 0-2 ||| 164 668016 +a ||| as many ||| 0.00141044 0.0243476 2.99394e-06 3.01156e-06 2.718 ||| 0-0 ||| 1418 668016 +a ||| as meaning ||| 0.0175439 0.0243476 1.49697e-06 2.68435e-07 2.718 ||| 0-0 ||| 57 668016 +a ||| as means to ||| 1 0.0243476 1.49697e-06 4.93969e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| as means ||| 0.0526316 0.0243476 1.49697e-06 5.55907e-06 2.718 ||| 0-0 ||| 19 668016 +a ||| as much as possible to ||| 0.0625 0.229811 1.49697e-06 2.93663e-11 2.718 ||| 0-4 ||| 16 668016 +a ||| as much as ||| 0.0023015 0.0243476 2.99394e-06 8.98483e-08 2.718 ||| 0-0 ||| 869 668016 +a ||| as much for the ||| 0.125 0.0683377 1.49697e-06 2.31698e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| as much for ||| 0.05 0.0683377 1.49697e-06 3.77408e-07 2.718 ||| 0-2 ||| 20 668016 +a ||| as much good for ||| 1 0.0683377 1.49697e-06 1.95724e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| as much on ||| 0.0833333 0.0782999 1.49697e-06 3.88542e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| as much to ||| 0.0909091 0.229811 5.98788e-06 3.58784e-06 2.718 ||| 0-2 ||| 44 668016 +a ||| as much ||| 0.00244021 0.0243476 7.48485e-06 8.80486e-06 2.718 ||| 0-0 ||| 2049 668016 +a ||| as must ||| 0.0298507 0.0243476 2.99394e-06 1.35586e-05 2.718 ||| 0-0 ||| 67 668016 +a ||| as no ||| 0.00806452 0.0243476 1.49697e-06 6.82844e-06 2.718 ||| 0-0 ||| 124 668016 +a ||| as none of the challenges faced by ||| 1 0.0188479 1.49697e-06 2.28009e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| as none of the challenges faced ||| 1 0.0188479 1.49697e-06 4.34295e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| as none of the challenges ||| 1 0.0188479 1.49697e-06 6.8609e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| as none of the ||| 1 0.0188479 1.49697e-06 3.66893e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| as none of ||| 0.1 0.0188479 1.49697e-06 5.97625e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| as of the ||| 0.0107527 0.0188479 1.49697e-06 1.85299e-05 2.718 ||| 0-1 ||| 93 668016 +a ||| as of ||| 0.00986842 0.0188479 8.98182e-06 0.000301831 2.718 ||| 0-1 ||| 608 668016 +a ||| as on a ||| 0.125 0.0513238 1.49697e-06 1.4751e-05 2.718 ||| 0-0 0-1 ||| 8 668016 +a ||| as on ||| 0.0186667 0.0513238 1.04788e-05 0.000332786 2.718 ||| 0-0 0-1 ||| 375 668016 +a ||| as one in which ||| 1 0.0587624 1.49697e-06 2.17073e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| as one in ||| 0.0666667 0.0587624 1.49697e-06 2.55543e-06 2.718 ||| 0-2 ||| 15 668016 +a ||| as one says , to ||| 1 0.0243476 1.49697e-06 2.6773e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| as one says , to ‘ name ||| 1 0.0243476 1.49697e-06 2.62778e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| as one says , to ‘ ||| 1 0.0243476 1.49697e-06 3.00661e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| as one says , ||| 1 0.0243476 1.49697e-06 3.013e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| as one says ||| 0.333333 0.0243476 1.49697e-06 2.52653e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| as one ||| 0.00069979 0.0243476 1.49697e-06 3.65634e-05 2.718 ||| 0-0 ||| 1429 668016 +a ||| as opposed to ||| 0.00334448 0.229811 1.49697e-06 7.47095e-08 2.718 ||| 0-2 ||| 299 668016 +a ||| as opposed ||| 0.00299401 0.0243476 1.49697e-06 1.83343e-07 2.718 ||| 0-0 ||| 334 668016 +a ||| as others ||| 0.00558659 0.0243476 1.49697e-06 8.52677e-07 2.718 ||| 0-0 ||| 179 668016 +a ||| as ourselves ||| 0.0434783 0.0243476 1.49697e-06 2.7905e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| as over ||| 0.0666667 0.046301 1.49697e-06 2.03774e-05 2.718 ||| 0-0 0-1 ||| 15 668016 +a ||| as part of ||| 0.00144718 0.0188479 4.49091e-06 3.59843e-07 2.718 ||| 0-2 ||| 2073 668016 +a ||| as part ||| 0.00177494 0.0243476 7.48485e-06 1.04585e-05 2.718 ||| 0-0 ||| 2817 668016 +a ||| as penalisation is concerned ||| 1 0.0243476 1.49697e-06 3.09584e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| as penalisation is ||| 1 0.0243476 1.49697e-06 1.92456e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| as penalisation ||| 1 0.0243476 1.49697e-06 6.14068e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| as people ||| 0.00689655 0.0243476 1.49697e-06 7.72147e-06 2.718 ||| 0-0 ||| 145 668016 +a ||| as possible , although ||| 0.25 0.0921822 1.49697e-06 1.41924e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| as possible , as well as for ||| 1 0.0683377 1.49697e-06 5.93854e-15 2.718 ||| 0-6 ||| 1 668016 +a ||| as possible , as ||| 0.016129 0.0243476 1.49697e-06 8.56268e-09 2.718 ||| 0-0 ||| 62 668016 +a ||| as possible , to ||| 0.0117647 0.229811 1.49697e-06 3.41927e-07 2.718 ||| 0-3 ||| 85 668016 +a ||| as possible , ||| 0.00193798 0.0243476 4.49091e-06 8.39117e-07 2.718 ||| 0-0 ||| 1548 668016 +a ||| as possible at ||| 0.0526316 0.204175 1.49697e-06 2.78578e-07 2.718 ||| 0-2 ||| 19 668016 +a ||| as possible for ||| 0.0135135 0.0683377 1.49697e-06 3.01603e-07 2.718 ||| 0-2 ||| 74 668016 +a ||| as possible to ||| 0.0144509 0.229811 7.48485e-06 2.8672e-06 2.718 ||| 0-2 ||| 346 668016 +a ||| as possible with ||| 0.0135135 0.0243476 1.49697e-06 4.49939e-08 2.718 ||| 0-0 ||| 74 668016 +a ||| as possible ||| 0.00133755 0.0243476 1.64667e-05 7.03634e-06 2.718 ||| 0-0 ||| 8224 668016 +a ||| as producer ||| 0.5 0.0243476 1.49697e-06 2.80717e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| as provided for ||| 0.00507614 0.0243476 1.49697e-06 1.54531e-08 2.718 ||| 0-0 ||| 197 668016 +a ||| as provided ||| 0.00917431 0.0243476 1.49697e-06 2.01063e-06 2.718 ||| 0-0 ||| 109 668016 +a ||| as putting ||| 0.166667 0.049485 1.49697e-06 2.05823e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| as quickly as possible ||| 0.00161725 0.0243476 4.49091e-06 3.25261e-12 2.718 ||| 0-0 ||| 1855 668016 +a ||| as quickly as ||| 0.00993378 0.0243476 4.49091e-06 4.05512e-09 2.718 ||| 0-0 ||| 302 668016 +a ||| as quickly ||| 0.00128287 0.0243476 2.99394e-06 3.9739e-07 2.718 ||| 0-0 ||| 1559 668016 +a ||| as rapporteur , ||| 0.00220751 0.0243476 1.49697e-06 7.56366e-08 2.718 ||| 0-0 ||| 453 668016 +a ||| as rapporteur ||| 0.000687758 0.0243476 1.49697e-06 6.34245e-07 2.718 ||| 0-0 ||| 1454 668016 +a ||| as rapporteurs to ||| 1 0.229811 1.49697e-06 2.82395e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| as reaching ||| 0.333333 0.104774 1.49697e-06 3.54668e-06 2.718 ||| 0-0 0-1 ||| 3 668016 +a ||| as recently as 1992 that they were ||| 1 0.0243476 1.49697e-06 1.73629e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| as recently as 1992 that they ||| 1 0.0243476 1.49697e-06 9.69238e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| as recently as 1992 that ||| 1 0.0243476 1.49697e-06 2.96948e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| as recently as 1992 ||| 0.5 0.0243476 1.49697e-06 1.76528e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| as recently as ||| 0.018018 0.0243476 2.99394e-06 6.08716e-09 2.718 ||| 0-2 ||| 111 668016 +a ||| as referred to ||| 0.0357143 0.229811 2.99394e-06 3.42091e-07 2.718 ||| 0-2 ||| 56 668016 +a ||| as referring to ||| 0.166667 0.229811 1.49697e-06 1.54423e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| as regards access to ||| 0.0243902 0.229811 1.49697e-06 4.30384e-11 2.718 ||| 0-3 ||| 41 668016 +a ||| as regards expenditure relating to passenger cars ||| 1 0.229811 1.49697e-06 1.68438e-25 2.718 ||| 0-4 ||| 1 668016 +a ||| as regards expenditure relating to passenger ||| 1 0.229811 1.49697e-06 9.96674e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| as regards expenditure relating to ||| 1 0.229811 1.49697e-06 1.7184e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| as regards ||| 0.00366178 0.263434 6.58667e-05 4.57973e-05 2.718 ||| 0-1 ||| 12016 668016 +a ||| as saying the following ||| 1 0.0243476 1.49697e-06 1.22099e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| as saying the ||| 0.5 0.0243476 1.49697e-06 9.55394e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| as saying ||| 0.0294118 0.0243476 2.99394e-06 1.55622e-06 2.718 ||| 0-0 ||| 68 668016 +a ||| as she ||| 0.0126582 0.0243476 2.99394e-06 2.49399e-06 2.718 ||| 0-0 ||| 158 668016 +a ||| as someone who should ||| 1 0.0243476 1.49697e-06 1.87532e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| as someone who ||| 0.00591716 0.0243476 1.49697e-06 4.23228e-10 2.718 ||| 0-0 ||| 169 668016 +a ||| as someone ||| 0.00766284 0.0243476 2.99394e-06 4.7985e-07 2.718 ||| 0-0 ||| 261 668016 +a ||| as something ||| 0.00471698 0.0243476 1.49697e-06 4.85552e-06 2.718 ||| 0-0 ||| 212 668016 +a ||| as soon as possible to ||| 0.0136986 0.229811 1.49697e-06 2.69467e-12 2.718 ||| 0-4 ||| 73 668016 +a ||| as soon as they set foot ||| 0.5 0.0243476 1.49697e-06 3.50696e-19 2.718 ||| 0-0 ||| 2 668016 +a ||| as soon as they set ||| 0.5 0.0243476 1.49697e-06 1.57263e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| as soon as they ||| 0.0294118 0.0243476 1.49697e-06 2.69101e-11 2.718 ||| 0-0 ||| 34 668016 +a ||| as soon as ||| 0.00184843 0.0243476 4.49091e-06 8.24452e-09 2.718 ||| 0-0 ||| 1623 668016 +a ||| as soon ||| 0.00122324 0.0243476 5.98788e-06 8.07938e-07 2.718 ||| 0-0 ||| 3270 668016 +a ||| as stated on ||| 0.333333 0.0782999 1.49697e-06 2.4117e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| as strong ||| 0.0227273 0.0243476 2.99394e-06 7.44777e-07 2.718 ||| 0-0 ||| 88 668016 +a ||| as subjects ||| 0.0769231 0.0243476 1.49697e-06 2.08783e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| as such , ||| 0.00111982 0.0243476 1.49697e-06 2.16438e-06 2.718 ||| 0-0 ||| 893 668016 +a ||| as such in ||| 0.025641 0.0587624 1.49697e-06 1.26845e-06 2.718 ||| 0-2 ||| 39 668016 +a ||| as such matters are dealt with under ||| 1 0.0571592 1.49697e-06 3.71663e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| as such matters are dealt with ||| 1 0.0571592 1.49697e-06 1.03585e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| as such to ||| 0.0666667 0.229811 1.49697e-06 7.39553e-06 2.718 ||| 0-2 ||| 15 668016 +a ||| as such ||| 0.00294551 0.0243476 8.98182e-06 1.81492e-05 2.718 ||| 0-0 ||| 2037 668016 +a ||| as support ||| 0.02 0.0243476 1.49697e-06 2.99928e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| as sympathising with ||| 1 0.0571592 1.49697e-06 6.81454e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| as that for ||| 0.142857 0.0683377 1.49697e-06 6.3252e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| as that of ||| 0.00813008 0.0215977 1.49697e-06 4.36478e-06 2.718 ||| 0-0 0-2 ||| 123 668016 +a ||| as that paid to ||| 0.333333 0.229811 1.49697e-06 8.0936e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| as that ||| 0.00394737 0.0243476 4.49091e-06 0.000147566 2.718 ||| 0-0 ||| 760 668016 +a ||| as the case may be ||| 0.0357143 0.0243476 1.49697e-06 7.82343e-12 2.718 ||| 0-0 ||| 28 668016 +a ||| as the case may ||| 0.0434783 0.0243476 1.49697e-06 4.31688e-10 2.718 ||| 0-0 ||| 23 668016 +a ||| as the case ||| 0.0434783 0.0243476 1.49697e-06 5.76198e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| as the country ||| 0.00793651 0.0243476 1.49697e-06 1.93825e-07 2.718 ||| 0-0 ||| 126 668016 +a ||| as the directive on ||| 0.2 0.0782999 1.49697e-06 2.65222e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| as the feed used , will ||| 1 0.0561595 1.49697e-06 8.4409e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| as the guests of ||| 0.5 0.0188479 1.49697e-06 7.96787e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| as the key to ||| 0.125 0.0243476 1.49697e-06 3.47905e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| as the key ||| 0.0769231 0.0243476 1.49697e-06 3.91528e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| as the men entered the ||| 0.5 0.0243476 1.49697e-06 4.49654e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| as the men entered ||| 0.5 0.0243476 1.49697e-06 7.32433e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| as the men ||| 0.5 0.0243476 1.49697e-06 2.28885e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| as the opposite of ||| 0.5 0.0188479 1.49697e-06 3.92835e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| as the rapporteur said , ||| 0.0166667 0.0243476 1.49697e-06 1.90986e-12 2.718 ||| 0-0 ||| 60 668016 +a ||| as the rapporteur said ||| 0.0120482 0.0243476 1.49697e-06 1.6015e-11 2.718 ||| 0-0 ||| 83 668016 +a ||| as the rapporteur ||| 0.00266667 0.0243476 1.49697e-06 3.89374e-08 2.718 ||| 0-0 ||| 375 668016 +a ||| as the ||| 0.00184804 0.0243476 5.2394e-05 0.000538553 2.718 ||| 0-0 ||| 18939 668016 +a ||| as their ||| 0.00446429 0.0243476 2.99394e-06 1.01681e-05 2.718 ||| 0-0 ||| 448 668016 +a ||| as there is ||| 0.0042735 0.0243476 1.49697e-06 8.42763e-07 2.718 ||| 0-0 ||| 234 668016 +a ||| as there ||| 0.00284091 0.0243476 1.49697e-06 2.689e-05 2.718 ||| 0-0 ||| 352 668016 +a ||| as they are called ||| 0.0384615 0.0243476 1.49697e-06 7.5506e-11 2.718 ||| 0-0 ||| 26 668016 +a ||| as they are ||| 0.00237812 0.0243476 2.99394e-06 4.34442e-07 2.718 ||| 0-0 ||| 841 668016 +a ||| as they cut ||| 1 0.0243476 1.49697e-06 2.16466e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| as they have ||| 0.00381679 0.0243476 1.49697e-06 3.42446e-07 2.718 ||| 0-0 ||| 262 668016 +a ||| as they leave for ||| 1 0.0683377 1.49697e-06 1.16595e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| as they should do - of ||| 1 0.0188479 1.49697e-06 5.6567e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| as they stand now ||| 0.5 0.0243476 1.49697e-06 9.72013e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| as they stand ||| 0.00862069 0.0243476 1.49697e-06 4.71874e-09 2.718 ||| 0-0 ||| 116 668016 +a ||| as they would ||| 0.0454545 0.0243476 1.49697e-06 1.68039e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| as they ||| 0.00401606 0.0243476 1.49697e-05 2.86331e-05 2.718 ||| 0-0 ||| 2490 668016 +a ||| as things stand ||| 0.00540541 0.0243476 1.49697e-06 5.94179e-10 2.718 ||| 0-0 ||| 185 668016 +a ||| as things ||| 0.0163934 0.0243476 2.99394e-06 3.60546e-06 2.718 ||| 0-0 ||| 122 668016 +a ||| as this at ||| 0.5 0.204175 1.49697e-06 2.24411e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| as those Members ||| 1 0.0212998 1.49697e-06 1.30027e-09 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| as those of ||| 0.011236 0.0243476 1.49697e-06 3.45325e-07 2.718 ||| 0-0 ||| 89 668016 +a ||| as those ||| 0.00379747 0.0243476 4.49091e-06 6.35209e-06 2.718 ||| 0-0 ||| 790 668016 +a ||| as to achieve ||| 0.0212766 0.229811 1.49697e-06 8.168e-07 2.718 ||| 0-1 ||| 47 668016 +a ||| as to be able to ||| 0.015625 0.229811 1.49697e-06 4.80606e-09 2.718 ||| 0-4 ||| 64 668016 +a ||| as to be able ||| 0.0645161 0.229811 2.99394e-06 5.40869e-08 2.718 ||| 0-1 ||| 31 668016 +a ||| as to be ||| 0.0277778 0.229811 2.99394e-06 6.47824e-05 2.718 ||| 0-1 ||| 72 668016 +a ||| as to enable ||| 0.0149254 0.229811 1.49697e-06 3.52457e-07 2.718 ||| 0-1 ||| 67 668016 +a ||| as to ensure ||| 0.003663 0.229811 1.49697e-06 1.60286e-06 2.718 ||| 0-1 ||| 273 668016 +a ||| as to gain ||| 0.333333 0.229811 1.49697e-06 1.99464e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| as to make sure ||| 0.2 0.229811 1.49697e-06 1.08213e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| as to make ||| 0.0206186 0.229811 2.99394e-06 6.21197e-06 2.718 ||| 0-1 ||| 97 668016 +a ||| as to meet ||| 0.111111 0.0243476 1.49697e-06 9.47872e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| as to reduce the number ||| 0.5 0.229811 1.49697e-06 4.13709e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| as to reduce the ||| 0.0833333 0.229811 1.49697e-06 8.36113e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| as to reduce ||| 0.05 0.229811 1.49697e-06 1.36193e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| as to render ||| 0.25 0.229811 1.49697e-06 3.21716e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| as to the ||| 0.00271493 0.12708 4.49091e-06 0.000188656 2.718 ||| 0-0 0-1 ||| 1105 668016 +a ||| as to view ||| 1 0.229811 1.49697e-06 3.22895e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| as to whether , and to ||| 1 0.229811 1.49697e-06 1.24644e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| as to whether , and ||| 1 0.229811 1.49697e-06 1.40273e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| as to whether , ||| 0.0555556 0.229811 1.49697e-06 1.11986e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| as to whether ||| 0.00235018 0.229811 2.99394e-06 9.39052e-07 2.718 ||| 0-1 ||| 851 668016 +a ||| as to who should ||| 0.111111 0.229811 1.49697e-06 1.39701e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| as to who ||| 0.0133333 0.229811 1.49697e-06 3.15281e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| as to ||| 0.0389739 0.229811 0.000354782 0.00357462 2.718 ||| 0-1 ||| 6081 668016 +a ||| as us ||| 0.0333333 0.0243476 1.49697e-06 2.52838e-05 2.718 ||| 0-0 ||| 30 668016 +a ||| as usual , ||| 0.003861 0.0243476 1.49697e-06 1.80984e-08 2.718 ||| 0-0 ||| 259 668016 +a ||| as usual ||| 0.00180505 0.0243476 1.49697e-06 1.51763e-07 2.718 ||| 0-0 ||| 554 668016 +a ||| as was ||| 0.00118343 0.0243476 1.49697e-06 2.74839e-05 2.718 ||| 0-0 ||| 845 668016 +a ||| as watchdogs ||| 0.333333 0.0243476 1.49697e-06 6.14068e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| as we do ||| 0.00363636 0.0243476 1.49697e-06 3.42111e-07 2.718 ||| 0-0 ||| 275 668016 +a ||| as we enter ||| 0.0333333 0.0243476 1.49697e-06 4.90963e-09 2.718 ||| 0-0 ||| 30 668016 +a ||| as we have also been hearing from ||| 0.166667 0.0435582 1.49697e-06 4.42206e-18 2.718 ||| 0-6 ||| 6 668016 +a ||| as we move forward ||| 0.0625 0.0243476 1.49697e-06 8.47221e-12 2.718 ||| 0-0 ||| 16 668016 +a ||| as we move ||| 0.0126582 0.0243476 1.49697e-06 1.52268e-08 2.718 ||| 0-0 ||| 79 668016 +a ||| as we near the ||| 0.142857 0.0243476 1.49697e-06 2.39662e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| as we near ||| 0.125 0.0243476 1.49697e-06 3.90381e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| as we saw in ||| 0.0294118 0.0587624 1.49697e-06 3.73065e-10 2.718 ||| 0-3 ||| 34 668016 +a ||| as we say in ||| 0.0111111 0.0587624 1.49697e-06 6.65252e-09 2.718 ||| 0-3 ||| 90 668016 +a ||| as we were ||| 0.015625 0.0243476 1.49697e-06 1.784e-07 2.718 ||| 0-0 ||| 64 668016 +a ||| as we ||| 0.00197746 0.0243476 1.49697e-05 9.95869e-05 2.718 ||| 0-0 ||| 5057 668016 +a ||| as well , ||| 0.006 0.0243476 4.49091e-06 1.65878e-06 2.718 ||| 0-0 ||| 500 668016 +a ||| as well as facilitating ||| 0.0833333 0.0243476 1.49697e-06 6.6711e-13 2.718 ||| 0-0 ||| 12 668016 +a ||| as well as for ||| 0.00250627 0.0683377 1.49697e-06 6.08399e-09 2.718 ||| 0-3 ||| 399 668016 +a ||| as well as myself , ||| 1 0.0243476 1.49697e-06 2.63212e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| as well as myself ||| 0.25 0.0243476 1.49697e-06 2.20714e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| as well as on ||| 0.00378788 0.0782999 1.49697e-06 6.26348e-09 2.718 ||| 0-3 ||| 264 668016 +a ||| as well as the contributions to the ||| 1 0.0243476 1.49697e-06 1.07906e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| as well as the contributions to ||| 1 0.0243476 1.49697e-06 1.75765e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| as well as the contributions ||| 1 0.0243476 1.49697e-06 1.97804e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| as well as the ||| 0.000339098 0.0243476 1.49697e-06 8.71385e-09 2.718 ||| 0-0 ||| 2949 668016 +a ||| as well as to ||| 0.011745 0.229811 1.04788e-05 5.78377e-08 2.718 ||| 0-3 ||| 596 668016 +a ||| as well as ||| 0.00190288 0.0243476 3.74243e-05 1.41938e-07 2.718 ||| 0-0 ||| 13138 668016 +a ||| as well in ||| 0.030303 0.0587624 1.49697e-06 9.72141e-07 2.718 ||| 0-2 ||| 33 668016 +a ||| as well start at ||| 1 0.204175 1.49697e-06 7.64917e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| as well to ||| 0.0625 0.229811 4.49091e-06 5.66791e-06 2.718 ||| 0-2 ||| 48 668016 +a ||| as well ||| 0.00395312 0.0243476 8.53273e-05 1.39095e-05 2.718 ||| 0-0 ||| 14419 668016 +a ||| as what happens to ||| 1 0.229811 1.49697e-06 2.99428e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| as with ||| 0.0045045 0.0571592 4.49091e-06 0.000170363 2.718 ||| 0-1 ||| 666 668016 +a ||| as within it ||| 0.333333 0.0123496 1.49697e-06 9.02616e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| as within ||| 0.0294118 0.0123496 1.49697e-06 5.07567e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| as witness ||| 0.0454545 0.0243476 1.49697e-06 1.26323e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| as you are ||| 0.00617284 0.0243476 1.49697e-06 4.29743e-07 2.718 ||| 0-0 ||| 162 668016 +a ||| as you have ||| 0.00239808 0.0243476 1.49697e-06 3.38743e-07 2.718 ||| 0-0 ||| 417 668016 +a ||| as you know , to ||| 0.0714286 0.229811 1.49697e-06 3.55101e-10 2.718 ||| 0-4 ||| 14 668016 +a ||| as you know , ||| 0.000365764 0.0243476 1.49697e-06 8.71448e-10 2.718 ||| 0-0 ||| 2734 668016 +a ||| as you know ||| 0.000329164 0.0243476 1.49697e-06 7.30745e-09 2.718 ||| 0-0 ||| 3038 668016 +a ||| as you said , corresponds to an ||| 1 0.229811 1.49697e-06 1.08194e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| as you said , corresponds to ||| 1 0.229811 1.49697e-06 2.43422e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| as you submit to ||| 1 0.229811 1.49697e-06 2.41215e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| as you ||| 0.000794491 0.0243476 4.49091e-06 2.83234e-05 2.718 ||| 0-0 ||| 3776 668016 +a ||| as your basis , ||| 0.5 0.0243476 1.49697e-06 1.58966e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| as your basis ||| 0.5 0.0243476 1.49697e-06 1.333e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| as your ||| 0.00862069 0.0243476 1.49697e-06 2.24486e-06 2.718 ||| 0-0 ||| 116 668016 +a ||| as ||| 0.0153665 0.0243476 0.00602081 0.0087724 2.718 ||| 0-0 ||| 261739 668016 +a ||| aside as people ||| 0.25 0.0243476 1.49697e-06 5.44363e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| aside as ||| 0.0625 0.0243476 1.49697e-06 6.18454e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| aside for ||| 0.0196078 0.0683377 2.99394e-06 2.59782e-06 2.718 ||| 0-1 ||| 102 668016 +a ||| aside in ||| 0.0344828 0.0587624 1.49697e-06 4.23582e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| aside ||| 0.00615114 0.047402 1.04788e-05 9.49e-05 2.718 ||| 0-0 ||| 1138 668016 +a ||| ask any questions about ||| 0.5 0.0526361 1.49697e-06 9.27311e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| ask for ||| 0.00216685 0.0683377 2.99394e-06 5.06667e-06 2.718 ||| 0-1 ||| 923 668016 +a ||| ask it to introduce ||| 0.5 0.229811 1.49697e-06 4.37699e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| ask it to ||| 0.030303 0.229811 1.49697e-06 8.56554e-07 2.718 ||| 0-2 ||| 33 668016 +a ||| ask it ||| 0.0185185 0.0082577 1.49697e-06 2.61413e-06 2.718 ||| 0-0 ||| 54 668016 +a ||| ask myself - ||| 0.333333 0.0082577 1.49697e-06 8.62245e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| ask myself ||| 0.00578035 0.0082577 1.49697e-06 2.28585e-08 2.718 ||| 0-0 ||| 173 668016 +a ||| ask of ||| 0.0645161 0.0135528 2.99394e-06 4.34804e-06 2.718 ||| 0-0 0-1 ||| 31 668016 +a ||| ask that ||| 0.00265957 0.0082577 1.49697e-06 2.47278e-06 2.718 ||| 0-0 ||| 376 668016 +a ||| ask them to ||| 0.00925926 0.229811 1.49697e-06 1.29202e-07 2.718 ||| 0-2 ||| 108 668016 +a ||| ask to take ||| 0.0833333 0.229811 1.49697e-06 7.7548e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| ask to ||| 0.025 0.229811 2.99394e-06 4.81665e-05 2.718 ||| 0-1 ||| 80 668016 +a ||| ask workers to allow ||| 1 0.229811 1.49697e-06 7.94593e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| ask workers to ||| 0.5 0.229811 1.49697e-06 3.27532e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| ask you to ||| 0.00111982 0.229811 1.49697e-06 1.55515e-07 2.718 ||| 0-2 ||| 893 668016 +a ||| ask ||| 0.00405132 0.0082577 5.38909e-05 0.000147 2.718 ||| 0-0 ||| 8886 668016 +a ||| asked as ||| 0.0714286 0.0243476 1.49697e-06 6.63193e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| asked by ||| 0.00909091 0.0337966 1.49697e-06 6.21999e-07 2.718 ||| 0-1 ||| 110 668016 +a ||| asked in ||| 0.015625 0.0587624 1.49697e-06 4.54224e-06 2.718 ||| 0-1 ||| 64 668016 +a ||| asked periodically to ||| 1 0.229811 1.49697e-06 1.8538e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| asked to do ||| 0.0294118 0.229811 1.49697e-06 9.09764e-08 2.718 ||| 0-1 ||| 34 668016 +a ||| asked to nail ||| 1 0.229811 1.49697e-06 1.536e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| asked to take ||| 0.0294118 0.0895701 1.49697e-06 1.17525e-07 2.718 ||| 0-0 ||| 34 668016 +a ||| asked to ||| 0.012016 0.229811 1.34727e-05 2.64828e-05 2.718 ||| 0-1 ||| 749 668016 +a ||| asked ||| 0.00499136 0.0895701 3.89212e-05 0.0008215 2.718 ||| 0-0 ||| 5209 668016 +a ||| asking , in the ||| 1 0.0587624 1.49697e-06 1.90028e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| asking , in ||| 0.25 0.0587624 1.49697e-06 3.09533e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| asking for ||| 0.00265957 0.0683377 2.99394e-06 1.59186e-06 2.718 ||| 0-1 ||| 752 668016 +a ||| asking that ||| 0.015873 0.0164138 1.49697e-06 9.10039e-08 2.718 ||| 0-0 0-1 ||| 63 668016 +a ||| asking them to ||| 0.0196078 0.229811 1.49697e-06 4.05928e-08 2.718 ||| 0-2 ||| 51 668016 +a ||| asking to be let ||| 0.333333 0.229811 1.49697e-06 1.12005e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| asking to be ||| 0.0625 0.229811 1.49697e-06 2.74254e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| asking to ||| 0.0185185 0.229811 1.49697e-06 1.5133e-05 2.718 ||| 0-1 ||| 54 668016 +a ||| asking you ||| 0.00943396 0.0319755 1.49697e-06 4.30386e-07 2.718 ||| 0-0 ||| 106 668016 +a ||| asking ||| 0.00723654 0.0319755 2.39515e-05 0.0001333 2.718 ||| 0-0 ||| 2211 668016 +a ||| asks ||| 0.0056926 0.0964912 4.49091e-06 8.03e-05 2.718 ||| 0-0 ||| 527 668016 +a ||| aspect I wish to clarify relates to ||| 1 0.229811 1.49697e-06 1.47825e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| aspect of ||| 0.00201005 0.0188479 2.99394e-06 2.08528e-06 2.718 ||| 0-1 ||| 995 668016 +a ||| aspects into ||| 0.1 0.107578 1.49697e-06 4.28238e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| aspects of ||| 0.000514933 0.0188479 1.49697e-06 2.08528e-06 2.718 ||| 0-1 ||| 1942 668016 +a ||| aspects to ||| 0.0173913 0.229811 2.99394e-06 2.46963e-05 2.718 ||| 0-1 ||| 115 668016 +a ||| aspired to ||| 0.0833333 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| aspiring to ||| 0.027027 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 37 668016 +a ||| assailing ||| 0.5 0.5 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| assassination attempt on ||| 0.125 0.0782999 1.49697e-06 2.21734e-12 2.718 ||| 0-2 ||| 8 668016 +a ||| assaulted ||| 0.03125 0.139535 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 32 668016 +a ||| assembled delegates to rise to this ||| 1 0.229811 1.49697e-06 3.85235e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| assembled delegates to rise to ||| 1 0.229811 1.49697e-06 5.9621e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| assembled delegates to rise ||| 1 0.229811 1.49697e-06 6.70968e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| assembled delegates to ||| 1 0.229811 1.49697e-06 5.3421e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| assent to ||| 0.0238095 0.229811 4.49091e-06 2.76738e-06 2.718 ||| 0-1 ||| 126 668016 +a ||| assessment conducted at an earlier stage ||| 1 0.204175 1.49697e-06 4.16002e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| assessment conducted at an earlier ||| 1 0.204175 1.49697e-06 2.7789e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| assessment conducted at an ||| 1 0.204175 1.49697e-06 3.98124e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| assessment conducted at ||| 1 0.204175 1.49697e-06 8.95727e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| assessment of ||| 0.000809717 0.0188479 1.49697e-06 1.28666e-06 2.718 ||| 0-1 ||| 1235 668016 +a ||| assign to ||| 0.0833333 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| assigned to ||| 0.0297619 0.229811 7.48485e-06 2.66229e-06 2.718 ||| 0-1 ||| 168 668016 +a ||| assist greatly all ||| 1 0.302317 1.49697e-06 9.76701e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| assist greatly ||| 0.5 0.302317 1.49697e-06 2.06692e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| assist in ||| 0.00873362 0.18054 2.99394e-06 4.72188e-05 2.718 ||| 0-0 0-1 ||| 229 668016 +a ||| assist ||| 0.0045045 0.302317 1.04788e-05 0.0007859 2.718 ||| 0-0 ||| 1554 668016 +a ||| assistance by ||| 0.0434783 0.0337966 1.49697e-06 4.08907e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| assistance for ||| 0.0104712 0.0683377 5.98788e-06 1.83137e-06 2.718 ||| 0-1 ||| 382 668016 +a ||| assistance from the ||| 0.00546448 0.0435582 1.49697e-06 2.19648e-08 2.718 ||| 0-1 ||| 183 668016 +a ||| assistance from ||| 0.00561798 0.0435582 1.49697e-06 3.5778e-07 2.718 ||| 0-1 ||| 178 668016 +a ||| assistance in ||| 0.010929 0.0587624 5.98788e-06 2.9861e-06 2.718 ||| 0-1 ||| 366 668016 +a ||| assistance to Member States during times ||| 1 0.229811 1.49697e-06 4.38012e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| assistance to Member States during ||| 1 0.229811 1.49697e-06 4.31539e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| assistance to Member States ||| 0.0588235 0.229811 1.49697e-06 4.28114e-12 2.718 ||| 0-1 ||| 17 668016 +a ||| assistance to Member ||| 1 0.229811 1.49697e-06 8.97137e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| assistance to us ||| 0.166667 0.229811 1.49697e-06 5.01791e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| assistance to ||| 0.0127389 0.229811 1.49697e-05 1.741e-05 2.718 ||| 0-1 ||| 785 668016 +a ||| assistant , Gaëlle Le Bouler ||| 1 1 1.49697e-06 1.03895e-25 2.718 ||| 0-2 ||| 1 668016 +a ||| assistant , Gaëlle Le ||| 1 1 1.49697e-06 2.59737e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| assistant , Gaëlle ||| 1 1 1.49697e-06 1.18062e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| assistant ||| 0.00826446 0.037037 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 121 668016 +a ||| assistants sacked ||| 0.5 0.206349 1.49697e-06 4.76e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| assisted by ||| 0.0192308 0.0512795 2.99394e-06 2.62457e-07 2.718 ||| 0-0 0-1 ||| 104 668016 +a ||| assisted ||| 0.0114286 0.0687623 5.98788e-06 3.19e-05 2.718 ||| 0-0 ||| 350 668016 +a ||| assisting in ||| 0.0285714 0.0587624 1.49697e-06 1.92264e-07 2.718 ||| 0-1 ||| 35 668016 +a ||| assisting ||| 0.00742115 0.251748 5.98788e-06 0.00023 2.718 ||| 0-0 ||| 539 668016 +a ||| assists ||| 0.015873 0.252525 1.49697e-06 2.28e-05 2.718 ||| 0-0 ||| 63 668016 +a ||| associate myself with ||| 0.0192308 0.0571592 1.49697e-06 1.68746e-11 2.718 ||| 0-2 ||| 52 668016 +a ||| associated with it ||| 0.00892857 0.0571592 1.49697e-06 1.529e-08 2.718 ||| 0-1 ||| 112 668016 +a ||| associated with ||| 0.00488334 0.0571592 1.34727e-05 8.59798e-07 2.718 ||| 0-1 ||| 1843 668016 +a ||| associated ||| 0.00225428 0.0025594 7.48485e-06 6.4e-06 2.718 ||| 0-0 ||| 2218 668016 +a ||| association agreement within ||| 0.25 0.0123496 1.49697e-06 1.4484e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| association of ||| 0.00813008 0.0188479 1.49697e-06 4.6734e-07 2.718 ||| 0-1 ||| 123 668016 +a ||| assumed access to ||| 1 0.229811 1.49697e-06 3.91637e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| assumed to be ||| 0.125 0.229811 1.49697e-06 8.25303e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| assumed to ||| 0.0344828 0.229811 1.49697e-06 4.55392e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| assuming here ||| 1 0.0182742 1.49697e-06 8.08212e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| assumption for ||| 1 0.0683377 1.49697e-06 3.7217e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| assure ||| 0.00226415 0.0014425 4.49091e-06 3.7e-06 2.718 ||| 0-0 ||| 1325 668016 +a ||| assured in the ||| 0.25 0.0587624 1.49697e-06 3.72546e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| assured in ||| 0.125 0.0587624 1.49697e-06 6.06833e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| assured of ||| 0.0217391 0.0188479 1.49697e-06 2.98743e-07 2.718 ||| 0-1 ||| 46 668016 +a ||| asylum seeker to be ||| 1 0.229811 1.49697e-06 1.18018e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| asylum seeker to ||| 0.25 0.229811 1.49697e-06 6.51211e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| at , for example ||| 0.5 0.204175 1.49697e-06 9.08096e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| at , for ||| 0.5 0.204175 1.49697e-06 3.11953e-05 2.718 ||| 0-0 ||| 2 668016 +a ||| at , in ||| 0.166667 0.204175 1.49697e-06 8.68783e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| at , ||| 0.0666667 0.204175 5.98788e-06 0.00405888 2.718 ||| 0-0 ||| 60 668016 +a ||| at - make it easier for ||| 0.5 0.0683377 1.49697e-06 1.25549e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| at - ||| 0.2 0.204175 1.49697e-06 0.000128385 2.718 ||| 0-0 ||| 5 668016 +a ||| at 1 : ||| 1 0.204175 1.49697e-06 7.30201e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| at 1 ||| 0.0344828 0.204175 1.49697e-06 2.16805e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| at 1.00 ||| 0.5 0.204175 1.49697e-06 1.36142e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| at 11.10 ||| 0.2 0.154719 1.49697e-06 6.12637e-08 2.718 ||| 0-0 0-1 ||| 5 668016 +a ||| at 15 ||| 0.0833333 0.204175 1.49697e-06 7.48779e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| at 3 ||| 0.0357143 0.204175 1.49697e-06 7.82814e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| at 40 % , ||| 0.5 0.204175 1.49697e-06 9.93087e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| at 40 % ||| 0.1 0.204175 1.49697e-06 8.32744e-12 2.718 ||| 0-0 ||| 10 668016 +a ||| at 40 ||| 0.0833333 0.204175 1.49697e-06 1.46352e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| at 5 ||| 0.166667 0.204175 2.99394e-06 5.51373e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| at 6 ||| 0.125 0.204175 1.49697e-06 3.53968e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| at Chief ||| 1 0.204175 1.49697e-06 1.22527e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| at Community ||| 0.0333333 0.204175 2.99394e-06 5.51033e-06 2.718 ||| 0-0 ||| 60 668016 +a ||| at ECU ||| 0.0769231 0.204175 1.49697e-06 1.55542e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| at EU level ||| 0.00073046 0.204175 1.49697e-06 1.44055e-08 2.718 ||| 0-0 ||| 1369 668016 +a ||| at EU ||| 0.00401606 0.204175 1.49697e-06 1.68407e-05 2.718 ||| 0-0 ||| 249 668016 +a ||| at European institution level , ||| 1 0.204175 1.49697e-06 3.16951e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| at European institution level ||| 1 0.204175 1.49697e-06 2.65776e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| at European institution ||| 1 0.204175 1.49697e-06 3.10704e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| at European level to ||| 0.00854701 0.229811 1.49697e-06 4.19575e-09 2.718 ||| 0-3 ||| 117 668016 +a ||| at European ||| 0.0419847 0.204175 1.64667e-05 0.000113811 2.718 ||| 0-0 ||| 262 668016 +a ||| at Member ||| 0.0344828 0.204175 1.49697e-06 1.75384e-05 2.718 ||| 0-0 ||| 29 668016 +a ||| at New Year ||| 0.166667 0.204175 1.49697e-06 1.29607e-12 2.718 ||| 0-0 ||| 6 668016 +a ||| at New ||| 0.1 0.204175 1.49697e-06 4.05021e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| at Russia ||| 0.0909091 0.204175 1.49697e-06 1.37163e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| at Strasbourg , ||| 0.142857 0.204175 1.49697e-06 3.81535e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| at Strasbourg ||| 0.047619 0.204175 1.49697e-06 3.19933e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| at a complete loss to say ||| 1 0.204175 1.49697e-06 3.86231e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| at a complete loss to ||| 1 0.204175 1.49697e-06 4.04092e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| at a complete loss ||| 0.25 0.204175 1.49697e-06 4.5476e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| at a complete ||| 0.111111 0.204175 1.49697e-06 1.08019e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| at a cost ||| 0.0322581 0.204175 2.99394e-06 1.24916e-07 2.718 ||| 0-0 ||| 62 668016 +a ||| at a depth ||| 0.5 0.204175 2.99394e-06 2.17245e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| at a disadvantage ||| 0.00429185 0.204175 1.49697e-06 1.62934e-08 2.718 ||| 0-0 ||| 233 668016 +a ||| at a halfway stage ||| 1 0.204175 1.49697e-06 7.22702e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| at a halfway ||| 0.5 0.204175 1.49697e-06 4.82767e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| at a later date ||| 0.00568182 0.204175 1.49697e-06 1.32598e-11 2.718 ||| 0-0 ||| 176 668016 +a ||| at a later ||| 0.0178571 0.204175 1.49697e-06 1.29744e-07 2.718 ||| 0-0 ||| 56 668016 +a ||| at a level ||| 0.01 0.204175 1.49697e-06 1.2905e-06 2.718 ||| 0-0 ||| 100 668016 +a ||| at a number ||| 0.0333333 0.204175 1.49697e-06 7.46478e-07 2.718 ||| 0-0 ||| 30 668016 +a ||| at a practical level ||| 0.0588235 0.204175 1.49697e-06 5.66528e-11 2.718 ||| 0-0 ||| 17 668016 +a ||| at a practical ||| 0.25 0.204175 1.49697e-06 6.62296e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| at a situation in which all ||| 1 0.204175 1.49697e-06 6.67546e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| at a situation in which ||| 0.25 0.204175 1.49697e-06 1.41268e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| at a situation in ||| 0.125 0.204175 1.49697e-06 1.66303e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| at a situation ||| 0.133333 0.204175 2.99394e-06 7.76953e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| at a steam ||| 0.5 0.204175 1.49697e-06 6.48718e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| at a stroke ||| 0.0263158 0.204175 1.49697e-06 6.48718e-09 2.718 ||| 0-0 ||| 38 668016 +a ||| at a time and ||| 0.0588235 0.204175 1.49697e-06 3.10235e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| at a time when we ||| 0.00578035 0.204175 1.49697e-06 1.40556e-11 2.718 ||| 0-0 ||| 173 668016 +a ||| at a time when ||| 0.000299222 0.204175 1.49697e-06 1.23812e-09 2.718 ||| 0-0 ||| 3342 668016 +a ||| at a time ||| 0.00349786 0.204175 1.34727e-05 2.47674e-06 2.718 ||| 0-0 ||| 2573 668016 +a ||| at a very ||| 0.0571429 0.204175 5.98788e-06 5.24933e-06 2.718 ||| 0-0 ||| 70 668016 +a ||| at a ||| 0.100484 0.204175 0.00127542 0.00150865 2.718 ||| 0-0 ||| 8479 668016 +a ||| at about ||| 0.015625 0.128405 1.49697e-06 0.000171515 2.718 ||| 0-0 0-1 ||| 64 668016 +a ||| at ad hoc ||| 1 0.204175 1.49697e-06 9.31549e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| at ad ||| 1 0.204175 1.49697e-06 8.10043e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| at all ) , ||| 0.5 0.204175 1.49697e-06 2.75672e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| at all ) ||| 0.333333 0.204175 1.49697e-06 2.31162e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| at all , ||| 0.0148368 0.204175 7.48485e-06 1.91798e-05 2.718 ||| 0-0 ||| 337 668016 +a ||| at all about having a ||| 1 0.204175 1.49697e-06 3.86058e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| at all about having ||| 1 0.204175 1.49697e-06 8.70956e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| at all about ||| 0.0322581 0.204175 1.49697e-06 2.27463e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| at all are ||| 0.4 0.204175 2.99394e-06 2.44024e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| at all cost ||| 0.0833333 0.204175 1.49697e-06 1.33168e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| at all costs to ||| 0.125 0.216993 1.49697e-06 4.23672e-09 2.718 ||| 0-0 0-3 ||| 8 668016 +a ||| at all costs ||| 0.00236407 0.204175 1.49697e-06 1.20945e-08 2.718 ||| 0-0 ||| 423 668016 +a ||| at all events ||| 0.00595238 0.204175 1.49697e-06 1.16924e-08 2.718 ||| 0-0 ||| 168 668016 +a ||| at all getting into ||| 1 0.204175 1.49697e-06 1.91875e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| at all getting ||| 1 0.204175 1.49697e-06 1.86885e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| at all in getting ||| 1 0.204175 1.49697e-06 4.00019e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| at all in the ||| 0.0232558 0.204175 1.49697e-06 2.11342e-07 2.718 ||| 0-0 ||| 43 668016 +a ||| at all in ||| 0.0128205 0.204175 2.99394e-06 3.4425e-06 2.718 ||| 0-0 ||| 156 668016 +a ||| at all of ||| 0.0625 0.204175 4.49091e-06 8.74341e-06 2.718 ||| 0-0 ||| 48 668016 +a ||| at all on ||| 0.0344828 0.141237 1.49697e-06 6.10122e-06 2.718 ||| 0-0 0-2 ||| 29 668016 +a ||| at all possible , ||| 0.025641 0.204175 1.49697e-06 1.53841e-08 2.718 ||| 0-0 ||| 39 668016 +a ||| at all possible ||| 0.010101 0.204175 1.49697e-06 1.29002e-07 2.718 ||| 0-0 ||| 99 668016 +a ||| at all since ||| 0.111111 0.204175 1.49697e-06 2.18248e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| at all that ||| 0.015873 0.204175 1.49697e-06 2.70543e-06 2.718 ||| 0-0 ||| 63 668016 +a ||| at all the ||| 0.0113636 0.204175 1.49697e-06 9.8737e-06 2.718 ||| 0-0 ||| 88 668016 +a ||| at all to ||| 0.115702 0.204175 2.09576e-05 1.42911e-05 2.718 ||| 0-0 ||| 121 668016 +a ||| at all ||| 0.0226812 0.204175 0.000184127 0.000160831 2.718 ||| 0-0 ||| 5423 668016 +a ||| at am ||| 1 0.204175 1.49697e-06 4.34802e-05 2.718 ||| 0-0 ||| 1 668016 +a ||| at an earlier stage ||| 0.0188679 0.204175 1.49697e-06 1.5807e-12 2.718 ||| 0-0 ||| 53 668016 +a ||| at an earlier ||| 0.0416667 0.204175 1.49697e-06 1.05591e-08 2.718 ||| 0-0 ||| 24 668016 +a ||| at an ||| 0.0943125 0.204175 0.000196103 0.000151277 2.718 ||| 0-0 ||| 1389 668016 +a ||| at and of ||| 0.5 0.204175 1.49697e-06 2.31767e-05 2.718 ||| 0-0 ||| 2 668016 +a ||| at and ||| 0.0277778 0.204175 1.49697e-06 0.000426324 2.718 ||| 0-0 ||| 36 668016 +a ||| at any ||| 0.00399734 0.204175 8.98182e-06 5.14683e-05 2.718 ||| 0-0 ||| 1501 668016 +a ||| at arm 's length ||| 0.166667 0.204175 1.49697e-06 4.04264e-14 2.718 ||| 0-0 ||| 6 668016 +a ||| at arm 's ||| 0.1 0.204175 1.49697e-06 1.05004e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| at arm ||| 0.0714286 0.204175 1.49697e-06 5.51373e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| at around ||| 0.00735294 0.204175 1.49697e-06 4.53352e-06 2.718 ||| 0-0 ||| 136 668016 +a ||| at as to ||| 1 0.229811 1.49697e-06 1.49684e-05 2.718 ||| 0-2 ||| 1 668016 +a ||| at balanced legal ||| 1 0.204175 1.49697e-06 6.83703e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| at balanced ||| 1 0.204175 1.49697e-06 5.27549e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| at best ||| 0.00158479 0.204175 1.49697e-06 4.7139e-06 2.718 ||| 0-0 ||| 631 668016 +a ||| at both a ||| 0.3 0.204175 4.49091e-06 2.49907e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| at both the ||| 0.0645161 0.204175 2.99394e-06 3.46125e-06 2.718 ||| 0-0 ||| 31 668016 +a ||| at both ||| 0.0665236 0.204175 4.64061e-05 5.63796e-05 2.718 ||| 0-0 ||| 466 668016 +a ||| at bringing about a ||| 0.2 0.204175 1.49697e-06 1.71334e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| at bringing about ||| 0.1 0.204175 1.49697e-06 3.86534e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| at bringing ||| 0.0454545 0.204175 1.49697e-06 2.73304e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| at charter ||| 0.5 0.204175 1.49697e-06 8.50885e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| at civil servant ||| 1 0.204175 1.49697e-06 1.26748e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| at civil ||| 0.5 0.204175 1.49697e-06 9.05342e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| at close range ||| 0.333333 0.204175 1.49697e-06 3.4676e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| at close ||| 0.0909091 0.204175 1.49697e-06 5.04745e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| at concluding a ||| 0.333333 0.204175 1.49697e-06 1.29744e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| at concluding ||| 0.142857 0.204175 1.49697e-06 2.92704e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| at conveying ||| 1 0.204175 1.49697e-06 9.87027e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| at countering ||| 0.25 0.204175 1.49697e-06 1.36142e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| at country ||| 0.25 0.204175 1.49697e-06 1.22493e-05 2.718 ||| 0-0 ||| 4 668016 +a ||| at crushing ||| 0.5 0.204175 1.49697e-06 7.48779e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| at each ||| 0.00769231 0.204175 1.49697e-06 9.55374e-06 2.718 ||| 0-0 ||| 130 668016 +a ||| at earlier points in ||| 1 0.204175 1.49697e-06 6.60542e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| at earlier points ||| 1 0.204175 1.49697e-06 3.086e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| at earlier ||| 0.5 0.204175 1.49697e-06 2.37567e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| at either by ||| 1 0.204175 1.49697e-06 1.54709e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| at either ||| 0.0833333 0.204175 2.99394e-06 2.94678e-05 2.718 ||| 0-0 ||| 24 668016 +a ||| at encouraging ||| 0.0526316 0.204175 1.49697e-06 8.10043e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| at engaging ||| 0.2 0.204175 1.49697e-06 4.52671e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| at ensuring ||| 0.0125 0.204175 1.49697e-06 3.95491e-06 2.718 ||| 0-0 ||| 80 668016 +a ||| at ever more ||| 1 0.204175 1.49697e-06 1.46048e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| at ever ||| 0.5 0.204175 1.49697e-06 6.39525e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| at every ||| 0.00201207 0.204175 1.49697e-06 5.53756e-06 2.718 ||| 0-0 ||| 497 668016 +a ||| at everything in economic terms ||| 1 0.204175 1.49697e-06 8.97186e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| at everything in economic ||| 1 0.204175 1.49697e-06 8.17407e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| at everything in ||| 1 0.204175 1.49697e-06 6.73872e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| at everything ||| 0.5 0.204175 1.49697e-06 3.14827e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| at exactly ||| 0.0322581 0.204175 1.49697e-06 3.41715e-06 2.718 ||| 0-0 ||| 31 668016 +a ||| at exploiting ||| 0.111111 0.204175 1.49697e-06 1.22527e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| at face value ||| 0.0344828 0.204175 1.49697e-06 4.99944e-10 2.718 ||| 0-0 ||| 29 668016 +a ||| at face ||| 0.0416667 0.204175 1.49697e-06 5.69412e-06 2.718 ||| 0-0 ||| 24 668016 +a ||| at facilitating ||| 0.0625 0.204175 1.49697e-06 1.59966e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| at fault ||| 0.0138889 0.204175 1.49697e-06 5.37759e-07 2.718 ||| 0-0 ||| 72 668016 +a ||| at first glance , to ||| 0.25 0.229811 1.49697e-06 2.35455e-13 2.718 ||| 0-4 ||| 4 668016 +a ||| at first ||| 0.000439947 0.204175 1.49697e-06 1.83247e-05 2.718 ||| 0-0 ||| 2273 668016 +a ||| at five minutes to ||| 0.166667 0.229811 1.49697e-06 4.70508e-13 2.718 ||| 0-3 ||| 6 668016 +a ||| at five ||| 0.0555556 0.204175 1.49697e-06 6.73901e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| at fundamentally ||| 1 0.204175 1.49697e-06 3.30143e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| at giving ||| 0.047619 0.170348 1.49697e-06 3.43281e-05 2.718 ||| 0-0 0-1 ||| 21 668016 +a ||| at great ||| 0.012987 0.204175 1.49697e-06 1.33759e-05 2.718 ||| 0-0 ||| 77 668016 +a ||| at hand ||| 0.0204082 0.204175 5.98788e-06 1.34984e-05 2.718 ||| 0-0 ||| 196 668016 +a ||| at having ||| 0.0322581 0.204175 1.49697e-06 1.30322e-05 2.718 ||| 0-0 ||| 31 668016 +a ||| at heart ||| 0.037037 0.204175 2.99394e-06 2.74325e-06 2.718 ||| 0-0 ||| 54 668016 +a ||| at helping ||| 0.0333333 0.204175 1.49697e-06 1.28654e-06 2.718 ||| 0-0 ||| 30 668016 +a ||| at her first ||| 1 0.204175 1.49697e-06 4.98614e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| at her ||| 0.0555556 0.204175 1.49697e-06 9.26103e-06 2.718 ||| 0-0 ||| 18 668016 +a ||| at his or her ||| 0.5 0.204175 1.49697e-06 3.18174e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| at his or ||| 1 0.204175 1.49697e-06 1.16933e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| at his ||| 0.0176991 0.204175 2.99394e-06 1.02276e-05 2.718 ||| 0-0 ||| 113 668016 +a ||| at home are perfectly ||| 1 0.204175 1.49697e-06 1.99703e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| at home are ||| 0.25 0.204175 1.49697e-06 5.24155e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| at home ||| 0.00414508 0.204175 5.98788e-06 3.45459e-06 2.718 ||| 0-0 ||| 965 668016 +a ||| at how ||| 0.00625 0.204175 1.49697e-06 1.21983e-05 2.718 ||| 0-0 ||| 160 668016 +a ||| at in ||| 0.0416667 0.131468 2.99394e-06 0.00204493 2.718 ||| 0-0 0-1 ||| 48 668016 +a ||| at international ||| 0.0227273 0.204175 1.49697e-06 2.63434e-06 2.718 ||| 0-0 ||| 44 668016 +a ||| at is ||| 0.0714286 0.204175 1.49697e-06 0.00106671 2.718 ||| 0-0 ||| 14 668016 +a ||| at issue , ||| 0.030303 0.204175 1.49697e-06 3.07176e-06 2.718 ||| 0-0 ||| 33 668016 +a ||| at issue ||| 0.0236842 0.204175 1.34727e-05 2.5758e-05 2.718 ||| 0-0 ||| 380 668016 +a ||| at it ||| 0.0559441 0.204175 1.19758e-05 0.000605258 2.718 ||| 0-0 ||| 143 668016 +a ||| at its heart ||| 0.0285714 0.204175 1.49697e-06 3.90831e-09 2.718 ||| 0-0 ||| 35 668016 +a ||| at its helm ||| 0.25 0.204175 1.49697e-06 1.21226e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| at its ||| 0.00681663 0.204175 1.49697e-05 4.84902e-05 2.718 ||| 0-0 ||| 1467 668016 +a ||| at just the ||| 0.0384615 0.204175 1.49697e-06 2.63632e-06 2.718 ||| 0-0 ||| 26 668016 +a ||| at just ||| 0.0769231 0.204175 5.98788e-06 4.29425e-05 2.718 ||| 0-0 ||| 52 668016 +a ||| at large ||| 0.0142349 0.204175 5.98788e-06 5.23124e-06 2.718 ||| 0-0 ||| 281 668016 +a ||| at last , some ||| 1 0.204175 1.49697e-06 9.65621e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| at last , ||| 0.00609756 0.204175 2.99394e-06 8.8646e-07 2.718 ||| 0-0 ||| 328 668016 +a ||| at last caved in ||| 1 0.0587624 1.49697e-06 2.19789e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| at last come out in ||| 1 0.131468 2.99394e-06 1.4529e-12 2.718 ||| 0-0 0-4 ||| 2 668016 +a ||| at last reached ||| 0.2 0.204175 1.49697e-06 8.028e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| at last ||| 0.00675676 0.204175 1.94606e-05 7.43333e-06 2.718 ||| 0-0 ||| 1924 668016 +a ||| at leading ||| 0.333333 0.204175 1.49697e-06 2.96448e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| at least a ||| 0.00380228 0.204175 1.49697e-06 3.70222e-07 2.718 ||| 0-0 ||| 263 668016 +a ||| at least at ||| 0.0116279 0.204175 1.49697e-06 2.84273e-07 2.718 ||| 0-0 0-2 ||| 86 668016 +a ||| at least converted ||| 1 0.204175 1.49697e-06 3.59148e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| at least from ||| 0.0204082 0.204175 1.49697e-06 1.34505e-08 2.718 ||| 0-0 ||| 49 668016 +a ||| at least ten years and that has ||| 1 0.204175 1.49697e-06 1.72685e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| at least ten years and that ||| 1 0.204175 1.49697e-06 3.35474e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| at least ten years and ||| 1 0.204175 1.49697e-06 1.99431e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| at least ten years ||| 0.111111 0.204175 1.49697e-06 1.59215e-14 2.718 ||| 0-0 ||| 9 668016 +a ||| at least ten ||| 0.0294118 0.204175 1.49697e-06 9.35456e-11 2.718 ||| 0-0 ||| 34 668016 +a ||| at least ||| 0.00274043 0.204175 4.7903e-05 8.35229e-06 2.718 ||| 0-0 ||| 11677 668016 +a ||| at length ||| 0.00363636 0.204175 1.49697e-06 1.31036e-06 2.718 ||| 0-0 ||| 275 668016 +a ||| at liberty ||| 0.0166667 0.204175 1.49697e-06 3.43758e-07 2.718 ||| 0-0 ||| 60 668016 +a ||| at local and ||| 0.0555556 0.204175 1.49697e-06 2.17852e-08 2.718 ||| 0-0 ||| 18 668016 +a ||| at local ||| 0.0113636 0.204175 1.49697e-06 1.73921e-06 2.718 ||| 0-0 ||| 88 668016 +a ||| at long last , of ||| 0.333333 0.0188479 1.49697e-06 1.09132e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| at long last , ||| 0.00571429 0.204175 1.49697e-06 2.99889e-10 2.718 ||| 0-0 ||| 175 668016 +a ||| at long last to ||| 0.04 0.204175 1.49697e-06 2.23451e-10 2.718 ||| 0-0 ||| 25 668016 +a ||| at long last ||| 0.00625 0.204175 5.98788e-06 2.5147e-09 2.718 ||| 0-0 ||| 640 668016 +a ||| at long ||| 0.047619 0.204175 1.19758e-05 1.15142e-05 2.718 ||| 0-0 ||| 168 668016 +a ||| at low to ||| 1 0.216993 1.49697e-06 4.29216e-07 2.718 ||| 0-0 0-2 ||| 1 668016 +a ||| at me ||| 0.0454545 0.204175 1.49697e-06 2.04927e-05 2.718 ||| 0-0 ||| 22 668016 +a ||| at ministerial level ||| 0.00909091 0.204175 1.49697e-06 1.36835e-10 2.718 ||| 0-0 ||| 110 668016 +a ||| at ministerial ||| 0.05 0.204175 1.49697e-06 1.59966e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| at more ||| 0.0540541 0.204175 2.99394e-06 7.77266e-05 2.718 ||| 0-0 ||| 37 668016 +a ||| at much ||| 0.25 0.204175 1.49697e-06 3.41613e-05 2.718 ||| 0-0 ||| 4 668016 +a ||| at municipal ||| 0.333333 0.204175 1.49697e-06 1.97405e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| at my finger ||| 0.5 0.204175 1.49697e-06 3.85232e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| at my ||| 0.0192308 0.204175 4.49091e-06 2.18882e-05 2.718 ||| 0-0 ||| 156 668016 +a ||| at national level , ||| 0.00343643 0.204175 1.49697e-06 4.46148e-10 2.718 ||| 0-0 ||| 291 668016 +a ||| at national level ||| 0.00075815 0.204175 1.49697e-06 3.74113e-09 2.718 ||| 0-0 ||| 1319 668016 +a ||| at national ||| 0.00429185 0.204175 1.49697e-06 4.37355e-06 2.718 ||| 0-0 ||| 233 668016 +a ||| at night thinking ||| 0.333333 0.204175 1.49697e-06 2.44636e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| at night ||| 0.0118343 0.204175 2.99394e-06 3.30143e-07 2.718 ||| 0-0 ||| 169 668016 +a ||| at not ||| 0.0526316 0.204175 1.49697e-06 0.0001162 2.718 ||| 0-0 ||| 19 668016 +a ||| at odds with each other ||| 1 0.204175 1.49697e-06 7.12295e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| at odds with each ||| 1 0.204175 1.49697e-06 5.49822e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| at odds with ||| 0.0103093 0.204175 2.99394e-06 1.95875e-09 2.718 ||| 0-0 ||| 194 668016 +a ||| at odds ||| 0.0147059 0.204175 4.49091e-06 3.06319e-07 2.718 ||| 0-0 ||| 204 668016 +a ||| at once to ||| 0.333333 0.216993 2.99394e-06 4.87875e-06 2.718 ||| 0-0 0-2 ||| 6 668016 +a ||| at once ||| 0.00701754 0.204175 2.99394e-06 1.39273e-05 2.718 ||| 0-0 ||| 285 668016 +a ||| at one and ||| 0.333333 0.204175 8.98182e-06 1.77692e-06 2.718 ||| 0-0 ||| 18 668016 +a ||| at one with ||| 0.0416667 0.0571592 1.49697e-06 2.91381e-07 2.718 ||| 0-2 ||| 24 668016 +a ||| at one ||| 0.0317848 0.204175 1.94606e-05 0.00014186 2.718 ||| 0-0 ||| 409 668016 +a ||| at our disposal ||| 0.00446429 0.204175 2.99394e-06 3.95306e-09 2.718 ||| 0-0 ||| 448 668016 +a ||| at our ||| 0.00457143 0.204175 5.98788e-06 4.69484e-05 2.718 ||| 0-0 ||| 875 668016 +a ||| at ourselves here ||| 1 0.204175 1.49697e-06 2.19543e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| at ourselves ||| 0.0526316 0.204175 1.49697e-06 1.08267e-05 2.718 ||| 0-0 ||| 19 668016 +a ||| at overcoming ||| 0.166667 0.204175 1.49697e-06 9.87027e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| at pains ||| 0.0625 0.204175 1.49697e-06 1.70177e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| at people ||| 0.153846 0.204175 2.99394e-06 2.9958e-05 2.718 ||| 0-0 ||| 13 668016 +a ||| at placing ||| 0.2 0.204175 1.49697e-06 8.10043e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| at present , ||| 0.00086881 0.204175 1.49697e-06 1.48555e-06 2.718 ||| 0-0 ||| 1151 668016 +a ||| at present . on ||| 1 0.0782999 1.49697e-06 1.76105e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| at present for ||| 0.125 0.0683377 1.49697e-06 5.64736e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| at present in terms ||| 0.25 0.0587624 1.49697e-06 1.01069e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| at present in ||| 0.0338983 0.0587624 2.99394e-06 9.20817e-08 2.718 ||| 0-2 ||| 59 668016 +a ||| at present playing ||| 0.333333 0.204175 1.49697e-06 8.20913e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| at present see that ||| 1 0.204175 1.49697e-06 1.47646e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| at present see ||| 0.5 0.204175 1.49697e-06 8.77717e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| at present ||| 0.00251446 0.204175 1.49697e-05 1.2457e-05 2.718 ||| 0-0 ||| 3977 668016 +a ||| at providing for ||| 1 0.136256 1.49697e-06 1.15131e-07 2.718 ||| 0-0 0-2 ||| 1 668016 +a ||| at putting in ||| 0.5 0.0587624 1.49697e-06 2.81529e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| at quite ||| 0.285714 0.204175 2.99394e-06 1.32772e-05 2.718 ||| 0-0 ||| 7 668016 +a ||| at reading ||| 0.25 0.204175 1.49697e-06 9.8022e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| at reckoning up ||| 0.5 0.204175 1.49697e-06 2.0894e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| at reckoning ||| 0.5 0.204175 1.49697e-06 6.12637e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| at reducing ||| 0.0131579 0.204175 1.49697e-06 9.05342e-07 2.718 ||| 0-0 ||| 76 668016 +a ||| at removing senior ||| 0.5 0.204175 1.49697e-06 2.98967e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| at removing ||| 0.0625 0.204175 1.49697e-06 2.45055e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| at risk everything ||| 0.5 0.204175 1.49697e-06 3.68348e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| at risk is ||| 0.166667 0.204175 1.49697e-06 1.24805e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| at risk of placing ||| 1 0.204175 1.49697e-06 5.15235e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| at risk of ||| 0.0100334 0.204175 4.49091e-06 2.16485e-07 2.718 ||| 0-0 ||| 299 668016 +a ||| at risk ||| 0.00666667 0.204175 1.49697e-05 3.98214e-06 2.718 ||| 0-0 ||| 1500 668016 +a ||| at room ||| 1 0.204175 1.49697e-06 1.27292e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| at safeguarding ||| 0.111111 0.204175 1.49697e-06 1.70177e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| at sea ||| 0.00149701 0.204175 1.49697e-06 1.01766e-06 2.718 ||| 0-0 ||| 668 668016 +a ||| at secretary-general ||| 1 0.204175 1.49697e-06 3.74389e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| at securing a ||| 0.125 0.204175 1.49697e-06 1.96124e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| at securing ||| 0.0833333 0.204175 1.49697e-06 4.4246e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| at set ||| 0.333333 0.204175 1.49697e-06 1.98903e-05 2.718 ||| 0-0 ||| 3 668016 +a ||| at sharing our ||| 1 0.204175 1.49697e-06 5.58686e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| at sharing ||| 0.25 0.204175 1.49697e-06 4.05021e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| at slightly ||| 0.5 0.204175 1.49697e-06 6.36462e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| at so ||| 0.166667 0.204175 1.49697e-06 7.72501e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| at some considerable ||| 0.5 0.204175 1.49697e-06 1.66836e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| at some date ||| 1 0.204175 1.49697e-06 3.78904e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| at some future date ||| 0.0588235 0.204175 1.49697e-06 1.00637e-12 2.718 ||| 0-0 ||| 17 668016 +a ||| at some future ||| 0.0769231 0.204175 1.49697e-06 9.84706e-09 2.718 ||| 0-0 ||| 13 668016 +a ||| at some time ||| 0.0123457 0.204175 1.49697e-06 6.08656e-08 2.718 ||| 0-0 ||| 81 668016 +a ||| at some ||| 0.0110497 0.204175 1.19758e-05 3.70748e-05 2.718 ||| 0-0 ||| 724 668016 +a ||| at stake here ||| 0.00495049 0.204175 1.49697e-06 2.08431e-09 2.718 ||| 0-0 ||| 202 668016 +a ||| at stake ||| 0.00263505 0.204175 5.98788e-06 1.02787e-06 2.718 ||| 0-0 ||| 1518 668016 +a ||| at students ||| 0.142857 0.204175 1.49697e-06 2.58669e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| at such a ||| 0.00925926 0.204175 1.49697e-06 3.12124e-06 2.718 ||| 0-0 ||| 108 668016 +a ||| at such short notice ||| 0.0625 0.204175 1.49697e-06 3.82523e-13 2.718 ||| 0-0 ||| 16 668016 +a ||| at such short ||| 0.0833333 0.204175 1.49697e-06 9.93567e-09 2.718 ||| 0-0 ||| 12 668016 +a ||| at such ||| 0.0995261 0.204175 3.14364e-05 7.04158e-05 2.718 ||| 0-0 ||| 211 668016 +a ||| at tens of ||| 0.166667 0.204175 1.49697e-06 1.2027e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| at tens ||| 0.166667 0.204175 1.49697e-06 2.2123e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| at that time ||| 0.00383509 0.204175 5.98788e-06 9.39922e-07 2.718 ||| 0-0 ||| 1043 668016 +a ||| at that ||| 0.00849515 0.204175 2.09576e-05 0.00057253 2.718 ||| 0-0 ||| 1648 668016 +a ||| at the Conference of the Presidents ||| 1 0.204175 1.49697e-06 5.21632e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| at the Conference of the ||| 0.166667 0.204175 1.49697e-06 1.30408e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| at the Conference of ||| 0.00740741 0.204175 1.49697e-06 2.12419e-09 2.718 ||| 0-0 ||| 135 668016 +a ||| at the Conference ||| 0.00578035 0.204175 1.49697e-06 3.90735e-08 2.718 ||| 0-0 ||| 173 668016 +a ||| at the European Parliament ||| 0.00561798 0.204175 1.49697e-06 4.01057e-09 2.718 ||| 0-0 ||| 178 668016 +a ||| at the European ||| 0.0430108 0.204175 5.98788e-06 6.98706e-06 2.718 ||| 0-0 ||| 93 668016 +a ||| at the age ||| 0.0322581 0.204175 1.49697e-06 1.28504e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| at the appropriate ||| 0.0204082 0.204175 1.49697e-06 2.81246e-07 2.718 ||| 0-0 ||| 49 668016 +a ||| at the back of our minds ||| 0.2 0.204175 1.49697e-06 5.04818e-15 2.718 ||| 0-0 ||| 5 668016 +a ||| at the back of our ||| 0.25 0.204175 1.49697e-06 1.0539e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| at the back of ||| 0.0714286 0.204175 1.49697e-06 7.64028e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| at the back ||| 0.0333333 0.204175 1.49697e-06 1.40539e-06 2.718 ||| 0-0 ||| 30 668016 +a ||| at the beck and ||| 0.5 0.204175 1.49697e-06 1.8321e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| at the beck ||| 0.5 0.204175 1.49697e-06 1.46265e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| at the bit and ||| 1 0.204175 1.49697e-06 2.07289e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| at the bit ||| 0.5 0.204175 1.49697e-06 1.65488e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| at the community ||| 1 0.204175 1.49697e-06 7.96097e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| at the cost ||| 0.00440529 0.0004654 1.49697e-06 5.31343e-10 2.718 ||| 0-1 ||| 227 668016 +a ||| at the end of the day , ||| 0.00301205 0.204175 1.49697e-06 9.27058e-14 2.718 ||| 0-0 ||| 332 668016 +a ||| at the end of the day ||| 0.00176678 0.204175 1.49697e-06 7.77376e-13 2.718 ||| 0-0 ||| 566 668016 +a ||| at the end of the ||| 0.000604595 0.204175 1.49697e-06 3.03426e-09 2.718 ||| 0-0 ||| 1654 668016 +a ||| at the end of ||| 0.000294291 0.204175 1.49697e-06 4.94244e-08 2.718 ||| 0-0 ||| 3398 668016 +a ||| at the end ||| 0.000886132 0.204175 5.98788e-06 9.09139e-07 2.718 ||| 0-0 ||| 4514 668016 +a ||| at the expense of ||| 0.000978474 0.204175 1.49697e-06 2.20371e-09 2.718 ||| 0-0 ||| 1022 668016 +a ||| at the expense ||| 0.00197628 0.204175 2.99394e-06 4.05362e-08 2.718 ||| 0-0 ||| 1012 668016 +a ||| at the fact ||| 0.0103093 0.204175 4.49091e-06 6.12076e-06 2.718 ||| 0-0 ||| 291 668016 +a ||| at the feet of ||| 0.25 0.0188479 1.49697e-06 1.42191e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| at the first hurdle ||| 0.142857 0.204175 1.49697e-06 7.87489e-13 2.718 ||| 0-0 ||| 7 668016 +a ||| at the first ||| 0.00304878 0.204175 1.49697e-06 1.12498e-06 2.718 ||| 0-0 ||| 328 668016 +a ||| at the further and recent ||| 1 0.204175 1.49697e-06 6.14757e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| at the further and ||| 1 0.204175 1.49697e-06 1.26493e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| at the further ||| 0.5 0.204175 1.49697e-06 1.00985e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| at the hands of ||| 0.0107527 0.204175 1.49697e-06 1.14502e-08 2.718 ||| 0-0 ||| 93 668016 +a ||| at the hands ||| 0.0176991 0.204175 2.99394e-06 2.10621e-07 2.718 ||| 0-0 ||| 113 668016 +a ||| at the heart of the Middle East ||| 1 0.204175 1.49697e-06 1.88229e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| at the heart of the Middle ||| 1 0.204175 1.49697e-06 6.29529e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| at the heart of the ||| 0.00221239 0.204175 1.49697e-06 5.6208e-10 2.718 ||| 0-0 ||| 452 668016 +a ||| at the heart of ||| 0.00102881 0.204175 1.49697e-06 9.15562e-09 2.718 ||| 0-0 ||| 972 668016 +a ||| at the heart ||| 0.000841043 0.204175 1.49697e-06 1.68413e-07 2.718 ||| 0-0 ||| 1189 668016 +a ||| at the helm ||| 0.0144928 0.204175 1.49697e-06 5.22374e-09 2.718 ||| 0-0 ||| 69 668016 +a ||| at the highest level in ||| 0.0909091 0.204175 1.49697e-06 8.41663e-13 2.718 ||| 0-0 ||| 11 668016 +a ||| at the highest level ||| 0.00438596 0.204175 1.49697e-06 3.93218e-11 2.718 ||| 0-0 ||| 228 668016 +a ||| at the highest ||| 0.00396825 0.204175 1.49697e-06 4.59689e-08 2.718 ||| 0-0 ||| 252 668016 +a ||| at the increasingly common ||| 1 0.204175 1.49697e-06 2.7802e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| at the increasingly ||| 0.5 0.204175 1.49697e-06 1.20355e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| at the last ||| 0.00144928 0.204175 1.49697e-06 4.56346e-07 2.718 ||| 0-0 ||| 690 668016 +a ||| at the level of ||| 0.00392927 0.204175 2.99394e-06 9.71677e-08 2.718 ||| 0-0 ||| 509 668016 +a ||| at the level ||| 0.00314961 0.204175 2.99394e-06 1.78735e-06 2.718 ||| 0-0 ||| 635 668016 +a ||| at the moment in ||| 0.0151515 0.204175 1.49697e-06 8.08173e-09 2.718 ||| 0-0 ||| 66 668016 +a ||| at the moment to ||| 0.0454545 0.229811 1.49697e-06 1.62725e-08 2.718 ||| 0-3 ||| 22 668016 +a ||| at the moment ||| 0.000715649 0.204175 4.49091e-06 3.77572e-07 2.718 ||| 0-0 ||| 4192 668016 +a ||| at the next Intergovernmental Conference ||| 0.1 0.204175 1.49697e-06 2.01815e-17 2.718 ||| 0-0 ||| 10 668016 +a ||| at the next Intergovernmental ||| 1 0.204175 1.49697e-06 1.07922e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| at the next ||| 0.00200803 0.204175 1.49697e-06 2.15845e-07 2.718 ||| 0-0 ||| 498 668016 +a ||| at the official ||| 0.5 0.204175 2.99394e-06 8.12813e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| at the pace of a ||| 0.5 0.204175 1.49697e-06 9.76812e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| at the pace of ||| 0.25 0.204175 1.49697e-06 2.20371e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| at the pace ||| 0.04 0.204175 1.49697e-06 4.05362e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| at the present time ||| 0.00163399 0.204175 1.49697e-06 1.2555e-09 2.718 ||| 0-0 ||| 612 668016 +a ||| at the present ||| 0.00297619 0.204175 1.49697e-06 7.64755e-07 2.718 ||| 0-0 ||| 336 668016 +a ||| at the realisation ||| 1 0.204175 1.49697e-06 8.35798e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| at the right ||| 0.272727 0.204175 8.98182e-06 1.34751e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| at the risk of ||| 0.00847458 0.204175 1.49697e-06 1.32904e-08 2.718 ||| 0-0 ||| 118 668016 +a ||| at the risk ||| 0.018018 0.204175 2.99394e-06 2.44471e-07 2.718 ||| 0-0 ||| 111 668016 +a ||| at the root of ||| 0.00641026 0.204175 1.49697e-06 2.04468e-09 2.718 ||| 0-0 ||| 156 668016 +a ||| at the root ||| 0.00555556 0.204175 1.49697e-06 3.76109e-08 2.718 ||| 0-0 ||| 180 668016 +a ||| at the same table ||| 0.0454545 0.204175 1.49697e-06 1.13832e-10 2.718 ||| 0-0 ||| 22 668016 +a ||| at the same time , so that ||| 0.5 0.204175 1.49697e-06 1.25684e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| at the same time , so ||| 0.333333 0.204175 1.49697e-06 7.47159e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| at the same time , to ||| 0.00775194 0.229811 1.49697e-06 1.41873e-11 2.718 ||| 0-5 ||| 129 668016 +a ||| at the same time , ||| 0.000606612 0.204175 5.98788e-06 3.29188e-10 2.718 ||| 0-0 ||| 6594 668016 +a ||| at the same time to ||| 0.00740741 0.204175 1.49697e-06 2.45282e-10 2.718 ||| 0-0 ||| 135 668016 +a ||| at the same time ||| 0.00141309 0.204175 2.69455e-05 2.76038e-09 2.718 ||| 0-0 ||| 12738 668016 +a ||| at the same ||| 0.00199658 0.204175 3.14364e-05 1.68142e-06 2.718 ||| 0-0 ||| 10518 668016 +a ||| at the sight ||| 0.0666667 0.204175 1.49697e-06 4.80584e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| at the time ||| 0.000889284 0.204175 2.99394e-06 3.43032e-06 2.718 ||| 0-0 ||| 2249 668016 +a ||| at the turn ||| 0.04 0.204175 1.49697e-06 4.68465e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| at the urgent ||| 0.5 0.204175 1.49697e-06 6.45654e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| at the very least ||| 0.00230415 0.204175 1.49697e-06 1.78416e-09 2.718 ||| 0-0 ||| 434 668016 +a ||| at the very ||| 0.0116473 0.204175 1.04788e-05 7.2704e-06 2.718 ||| 0-0 ||| 601 668016 +a ||| at the wrong ||| 0.0833333 0.204175 1.49697e-06 1.16594e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| at the ||| 0.0446478 0.204175 0.00348345 0.00208949 2.718 ||| 0-0 ||| 52119 668016 +a ||| at their disposal , ||| 0.0416667 0.204175 1.49697e-06 3.96131e-10 2.718 ||| 0-0 ||| 24 668016 +a ||| at their disposal ||| 0.00952381 0.204175 2.99394e-06 3.32173e-09 2.718 ||| 0-0 ||| 210 668016 +a ||| at their door ||| 0.5 0.204175 1.49697e-06 1.7871e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| at their doors ||| 0.5 0.204175 1.49697e-06 4.6946e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| at their ||| 0.0168453 0.204175 1.64667e-05 3.94504e-05 2.718 ||| 0-0 ||| 653 668016 +a ||| at them ||| 0.0131579 0.204175 1.49697e-06 9.12966e-05 2.718 ||| 0-0 ||| 76 668016 +a ||| at these views on ||| 1 0.204175 1.49697e-06 1.92014e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| at these views ||| 1 0.204175 1.49697e-06 2.86974e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| at these ||| 0.00502513 0.204175 1.49697e-06 3.52981e-05 2.718 ||| 0-0 ||| 199 668016 +a ||| at things ||| 0.04 0.204175 1.49697e-06 1.39885e-05 2.718 ||| 0-0 ||| 25 668016 +a ||| at this early stage ||| 0.0172414 0.204175 1.49697e-06 2.22878e-12 2.718 ||| 0-0 ||| 58 668016 +a ||| at this early ||| 0.037037 0.204175 1.49697e-06 1.48883e-08 2.718 ||| 0-0 ||| 27 668016 +a ||| at this juncture ||| 0.00452489 0.204175 1.49697e-06 2.13319e-09 2.718 ||| 0-0 ||| 221 668016 +a ||| at this moment ||| 0.00238095 0.204175 1.49697e-06 3.97389e-08 2.718 ||| 0-0 ||| 420 668016 +a ||| at this point , ||| 0.00273224 0.204175 1.49697e-06 2.29426e-08 2.718 ||| 0-0 ||| 366 668016 +a ||| at this point in time ||| 0.00787402 0.0587624 1.49697e-06 2.33465e-12 2.718 ||| 0-3 ||| 127 668016 +a ||| at this point in ||| 0.0178571 0.0587624 1.49697e-06 1.42209e-09 2.718 ||| 0-3 ||| 56 668016 +a ||| at this point to ||| 0.09375 0.204175 4.49091e-06 1.70948e-08 2.718 ||| 0-0 ||| 32 668016 +a ||| at this point ||| 0.0070922 0.204175 1.34727e-05 1.92383e-07 2.718 ||| 0-0 ||| 1269 668016 +a ||| at this stage , ||| 0.00273224 0.204175 1.49697e-06 3.92604e-09 2.718 ||| 0-0 ||| 366 668016 +a ||| at this stage in the agenda ||| 0.5 0.204175 1.49697e-06 4.2958e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| at this stage in the ||| 0.0121951 0.204175 1.49697e-06 4.32608e-11 2.718 ||| 0-0 ||| 82 668016 +a ||| at this stage in ||| 0.0217391 0.204175 1.49697e-06 7.04668e-10 2.718 ||| 0-0 ||| 46 668016 +a ||| at this stage share with ||| 1 0.204175 1.49697e-06 1.97043e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| at this stage share ||| 1 0.204175 1.49697e-06 3.08145e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| at this stage ||| 0.00291545 0.204175 7.48485e-06 3.29215e-08 2.718 ||| 0-0 ||| 1715 668016 +a ||| at this time ||| 0.000927644 0.204175 1.49697e-06 3.61037e-07 2.718 ||| 0-0 ||| 1078 668016 +a ||| at this ||| 0.00623928 0.204175 5.98788e-05 0.000219916 2.718 ||| 0-0 ||| 6411 668016 +a ||| at those countries ||| 0.2 0.204175 1.49697e-06 9.35772e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| at those levels ||| 0.125 0.204175 1.49697e-06 3.263e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| at those ||| 0.0347826 0.204175 5.98788e-06 2.4645e-05 2.718 ||| 0-0 ||| 115 668016 +a ||| at times , ||| 0.00595238 0.204175 1.49697e-06 4.11976e-07 2.718 ||| 0-0 ||| 168 668016 +a ||| at times to ||| 0.0625 0.229811 1.49697e-06 1.48886e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| at times ||| 0.00246609 0.204175 2.99394e-06 3.45459e-06 2.718 ||| 0-0 ||| 811 668016 +a ||| at to ||| 0.5 0.216993 2.99394e-06 0.0119227 2.718 ||| 0-0 0-1 ||| 4 668016 +a ||| at today ||| 0.05 0.204175 1.49697e-06 1.53602e-05 2.718 ||| 0-0 ||| 20 668016 +a ||| at trying ||| 1 0.204175 1.49697e-06 3.92088e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| at us ||| 0.12 0.204175 4.49091e-06 9.80968e-05 2.718 ||| 0-0 ||| 25 668016 +a ||| at very ||| 0.0869565 0.204175 5.98788e-06 0.000118426 2.718 ||| 0-0 ||| 46 668016 +a ||| at what they ||| 0.5 0.204175 1.49697e-06 1.55873e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| at what ||| 0.00243309 0.204175 1.49697e-06 4.77551e-05 2.718 ||| 0-0 ||| 411 668016 +a ||| at which it fell ||| 1 0.204175 1.49697e-06 7.60931e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| at which it ||| 0.0454545 0.204175 1.49697e-06 5.14143e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| at which we ||| 0.03125 0.204175 1.49697e-06 3.28214e-06 2.718 ||| 0-0 ||| 32 668016 +a ||| at which ||| 0.0119956 0.204175 1.64667e-05 0.000289117 2.718 ||| 0-0 ||| 917 668016 +a ||| at will ||| 0.0384615 0.204175 2.99394e-06 0.000294447 2.718 ||| 0-0 ||| 52 668016 +a ||| at work ||| 0.00775194 0.204175 8.98182e-06 2.15444e-05 2.718 ||| 0-0 ||| 774 668016 +a ||| at working people ||| 0.5 0.204175 1.49697e-06 5.704e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| at working ||| 0.25 0.204175 1.49697e-06 6.48034e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| at yesterday evening ||| 0.5 0.204175 1.49697e-06 1.80639e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| at yesterday ||| 0.111111 0.204175 1.49697e-06 8.10043e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| at you ||| 0.05 0.204175 1.49697e-06 0.00010989 2.718 ||| 0-0 ||| 20 668016 +a ||| at your ||| 0.0103627 0.204175 2.99394e-06 8.70966e-06 2.718 ||| 0-0 ||| 193 668016 +a ||| at zero ||| 0.0714286 0.204175 1.49697e-06 8.50885e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| at ||| 0.209468 0.204175 0.0448148 0.0340354 2.718 ||| 0-0 ||| 142919 668016 +a ||| atmosphere with ||| 0.25 0.0571592 1.49697e-06 1.86985e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| attach particular importance to ||| 0.0714286 0.229811 1.49697e-06 3.02435e-13 2.718 ||| 0-3 ||| 14 668016 +a ||| attach to ||| 0.015625 0.229811 2.99394e-06 3.78326e-06 2.718 ||| 0-1 ||| 128 668016 +a ||| attached at ||| 1 0.204175 1.49697e-06 1.08913e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| attached to ||| 0.0184758 0.229811 1.19758e-05 1.12097e-05 2.718 ||| 0-1 ||| 433 668016 +a ||| attack by ||| 0.016129 0.0337966 1.49697e-06 2.42711e-07 2.718 ||| 0-1 ||| 62 668016 +a ||| attack in Haifa on the eve of ||| 1 0.0782999 1.49697e-06 5.7561e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| attack in Haifa on the eve ||| 1 0.0782999 1.49697e-06 1.05881e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| attack in Haifa on the ||| 1 0.0782999 1.49697e-06 5.88226e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| attack in Haifa on ||| 0.5 0.0782999 1.49697e-06 9.58151e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| attack in ||| 0.0144928 0.0587624 1.49697e-06 1.77243e-06 2.718 ||| 0-1 ||| 69 668016 +a ||| attack on ||| 0.00307692 0.0782999 2.99394e-06 1.1191e-06 2.718 ||| 0-1 ||| 650 668016 +a ||| attack ||| 0.00158165 0.0024982 5.98788e-06 6.4e-06 2.718 ||| 0-0 ||| 2529 668016 +a ||| attacked ||| 0.00862069 0.116041 5.98788e-06 6.21e-05 2.718 ||| 0-0 ||| 464 668016 +a ||| attacking ||| 0.0115607 0.243421 5.98788e-06 0.0001013 2.718 ||| 0-0 ||| 346 668016 +a ||| attacks are being carried out on ||| 0.5 0.0782999 1.49697e-06 2.40371e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| attacks in ||| 0.00909091 0.0587624 1.49697e-06 7.81072e-07 2.718 ||| 0-1 ||| 110 668016 +a ||| attacks on dissenters ||| 0.142857 0.0782999 1.49697e-06 1.97265e-13 2.718 ||| 0-1 ||| 7 668016 +a ||| attacks on ||| 0.00570342 0.0782999 4.49091e-06 4.93163e-07 2.718 ||| 0-1 ||| 526 668016 +a ||| attempt at ||| 0.0105263 0.204175 2.99394e-06 2.84196e-06 2.718 ||| 0-1 ||| 190 668016 +a ||| attempt on ||| 0.0344828 0.0782999 1.49697e-06 3.16762e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| attempt to ease ||| 0.5 0.229811 1.49697e-06 3.04202e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| attempt to evaluate them ||| 0.5 0.229811 1.49697e-06 5.09995e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| attempt to evaluate ||| 0.166667 0.229811 1.49697e-06 1.90126e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| attempt to seriously get to ||| 1 0.229811 1.49697e-06 4.73852e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| attempt to shut ||| 1 0.229811 1.49697e-06 4.53378e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| attempt to try to ||| 0.166667 0.229811 1.49697e-06 4.00264e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| attempt to ||| 0.00868373 0.229811 2.84424e-05 2.92502e-05 2.718 ||| 0-1 ||| 2188 668016 +a ||| attempting as it does so to ||| 1 0.229811 1.49697e-06 1.49774e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| attempting to do ||| 0.0454545 0.229811 1.49697e-06 1.78102e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| attempting to stamp it out in ||| 1 0.0587624 1.49697e-06 2.9064e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| attempting to ||| 0.0087108 0.229811 7.48485e-06 5.18446e-06 2.718 ||| 0-1 ||| 574 668016 +a ||| attempts to exploit the legal system to ||| 1 0.229811 1.49697e-06 1.66409e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| attempts to exploit the legal system ||| 1 0.229811 1.49697e-06 1.87275e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| attempts to exploit the legal ||| 1 0.229811 1.49697e-06 6.71476e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| attempts to exploit the ||| 1 0.229811 1.49697e-06 5.18114e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| attempts to exploit ||| 0.2 0.229811 1.49697e-06 8.43947e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| attempts to integrate ||| 0.333333 0.229811 1.49697e-06 4.77496e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| attempts to tell ||| 1 0.229811 1.49697e-06 1.09047e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| attempts to ||| 0.01 0.229811 1.49697e-05 1.11046e-05 2.718 ||| 0-1 ||| 1000 668016 +a ||| attend to ||| 0.0194175 0.242698 2.99394e-06 0.000124392 2.718 ||| 0-0 0-1 ||| 103 668016 +a ||| attend ||| 0.00896287 0.255585 1.04788e-05 0.0003551 2.718 ||| 0-0 ||| 781 668016 +a ||| attended by representatives of all these bodies ||| 1 0.237833 1.49697e-06 4.27468e-22 2.718 ||| 0-0 ||| 1 668016 +a ||| attended by representatives of all these ||| 1 0.237833 1.49697e-06 1.07135e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| attended by representatives of all ||| 0.5 0.237833 1.49697e-06 1.03302e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| attended by representatives of ||| 0.111111 0.237833 1.49697e-06 2.18611e-12 2.718 ||| 0-0 ||| 9 668016 +a ||| attended by representatives ||| 0.0833333 0.237833 1.49697e-06 4.02124e-11 2.718 ||| 0-0 ||| 12 668016 +a ||| attended by ||| 0.00763359 0.237833 1.49697e-06 1.24112e-06 2.718 ||| 0-0 ||| 131 668016 +a ||| attended to ||| 0.03125 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| attended ||| 0.0119048 0.237833 7.48485e-06 0.0002364 2.718 ||| 0-0 ||| 420 668016 +a ||| attending both ||| 1 0.257576 1.49697e-06 2.82765e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| attending in a ||| 1 0.257576 1.49697e-06 1.61955e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| attending in ||| 0.5 0.257576 1.49697e-06 3.65375e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| attending meetings ||| 0.125 0.257576 1.49697e-06 3.7554e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| attending to ||| 0.027027 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| attending ||| 0.021978 0.257576 1.19758e-05 0.0001707 2.718 ||| 0-0 ||| 364 668016 +a ||| attends ||| 0.02 0.31579 1.49697e-06 2.19e-05 2.718 ||| 0-0 ||| 50 668016 +a ||| attention , in ||| 0.0555556 0.0587624 1.49697e-06 1.87225e-06 2.718 ||| 0-2 ||| 18 668016 +a ||| attention at ||| 0.0263158 0.204175 1.49697e-06 8.89345e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| attention for a few ||| 0.5 0.0683377 1.49697e-06 7.48166e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| attention for a ||| 0.0909091 0.0683377 1.49697e-06 4.26792e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| attention for ||| 0.0140845 0.0683377 1.49697e-06 9.62851e-06 2.718 ||| 0-1 ||| 71 668016 +a ||| attention in ||| 0.00429185 0.0587624 1.49697e-06 1.56996e-05 2.718 ||| 0-1 ||| 233 668016 +a ||| attention of the ||| 0.00244499 0.0188479 1.49697e-06 4.74489e-07 2.718 ||| 0-1 ||| 409 668016 +a ||| attention of ||| 0.0154321 0.0188479 1.49697e-05 7.72886e-06 2.718 ||| 0-1 ||| 648 668016 +a ||| attention on women ||| 0.333333 0.0782999 1.49697e-06 1.17761e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| attention on ||| 0.00622407 0.0782999 4.49091e-06 9.91257e-06 2.718 ||| 0-1 ||| 482 668016 +a ||| attention paid to ||| 0.0140845 0.229811 1.49697e-06 1.23205e-08 2.718 ||| 0-2 ||| 71 668016 +a ||| attention that ||| 0.00877193 0.0008521 1.49697e-06 1.7839e-07 2.718 ||| 0-1 ||| 114 668016 +a ||| attention to serious ||| 0.5 0.229811 1.49697e-06 1.05447e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| attention to the fact ||| 0.000785546 0.229811 1.49697e-06 1.6461e-08 2.718 ||| 0-1 ||| 1273 668016 +a ||| attention to the ||| 0.00030525 0.229811 1.49697e-06 5.61943e-06 2.718 ||| 0-1 ||| 3276 668016 +a ||| attention to them ||| 0.0384615 0.229811 1.49697e-06 2.4553e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| attention to ||| 0.00517598 0.229811 5.2394e-05 9.15338e-05 2.718 ||| 0-1 ||| 6762 668016 +a ||| attentive to ||| 0.0128205 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 78 668016 +a ||| attitude in ||| 0.0175439 0.0587624 1.49697e-06 3.13631e-06 2.718 ||| 0-1 ||| 57 668016 +a ||| attitude is , to this ||| 0.5 0.229811 1.49697e-06 4.416e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| attitude is , to ||| 0.5 0.229811 1.49697e-06 6.83443e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| attitude of ||| 0.00239234 0.0188479 1.49697e-06 1.544e-06 2.718 ||| 0-1 ||| 418 668016 +a ||| attitude on ||| 0.0285714 0.0782999 1.49697e-06 1.98024e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| attitude towards ||| 0.0324675 0.155507 7.48485e-06 1.7605e-07 2.718 ||| 0-1 ||| 154 668016 +a ||| attract particular ||| 1 0.138028 1.49697e-06 5.50168e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| attract ||| 0.00367647 0.138028 2.99394e-06 8.94e-05 2.718 ||| 0-0 ||| 544 668016 +a ||| attracted support in ||| 0.125 0.0587624 1.49697e-06 5.95724e-11 2.718 ||| 0-2 ||| 8 668016 +a ||| attractive to ||| 0.00666667 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-1 ||| 150 668016 +a ||| attracts ||| 0.0224719 0.217742 2.99394e-06 2.46e-05 2.718 ||| 0-0 ||| 89 668016 +a ||| attributable to ||| 0.024 0.229811 4.49091e-06 1.40121e-06 2.718 ||| 0-1 ||| 125 668016 +a ||| attributed to a design error ||| 0.125 0.229811 1.49697e-06 7.49492e-18 2.718 ||| 0-1 ||| 8 668016 +a ||| attributed to a design ||| 0.125 0.229811 1.49697e-06 7.97332e-13 2.718 ||| 0-1 ||| 8 668016 +a ||| attributed to a ||| 0.0769231 0.229811 1.49697e-06 1.00928e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| attributed to ||| 0.0431655 0.229811 8.98182e-06 2.27696e-06 2.718 ||| 0-1 ||| 139 668016 +a ||| attuned to ||| 0.0909091 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| audit to ||| 0.125 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| authorisation to ||| 0.0104167 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-1 ||| 96 668016 +a ||| authorises ||| 0.011236 0.252252 1.49697e-06 2.56e-05 2.718 ||| 0-0 ||| 89 668016 +a ||| authorities about their captivity on a number ||| 1 0.0782999 1.49697e-06 6.35869e-23 2.718 ||| 0-4 ||| 1 668016 +a ||| authorities about their captivity on a ||| 1 0.0782999 1.49697e-06 1.2851e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| authorities about their captivity on ||| 1 0.0782999 1.49697e-06 2.89922e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| authorities in ||| 0.00339559 0.0587624 2.99394e-06 4.00149e-06 2.718 ||| 0-1 ||| 589 668016 +a ||| authorities to ||| 0.0026738 0.229811 1.49697e-06 2.33301e-05 2.718 ||| 0-1 ||| 374 668016 +a ||| authorities ||| 5.45494e-05 4.88e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 18332 668016 +a ||| authority to ||| 0.00696864 0.229811 2.99394e-06 1.48878e-05 2.718 ||| 0-1 ||| 287 668016 +a ||| authors of ||| 0.00374532 0.0188479 1.49697e-06 4.14099e-08 2.718 ||| 0-1 ||| 267 668016 +a ||| automatically at ||| 0.333333 0.204175 1.49697e-06 4.05021e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| automatically because ||| 1 0.0052046 1.49697e-06 3.84489e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| automatically entitled to ||| 0.5 0.229811 1.49697e-06 2.03844e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| automatically expect to be taken ||| 0.5 0.229811 1.49697e-06 3.67029e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| automatically expect to be ||| 0.5 0.229811 1.49697e-06 4.02665e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| automatically expect to ||| 0.5 0.229811 1.49697e-06 2.22186e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| automatically to attach ||| 0.1 0.229811 1.49697e-06 4.50208e-11 2.718 ||| 0-1 ||| 10 668016 +a ||| automatically to ||| 0.0357143 0.229811 1.49697e-06 4.16859e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| autumn of ||| 0.00847458 0.0188479 1.49697e-06 1.18314e-07 2.718 ||| 0-1 ||| 118 668016 +a ||| avail themselves of student ||| 0.333333 0.0188479 1.49697e-06 1.39809e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| avail themselves of ||| 0.0175439 0.0188479 1.49697e-06 6.35494e-11 2.718 ||| 0-2 ||| 57 668016 +a ||| available and ||| 0.00487805 0.0015873 1.49697e-06 6.13774e-07 2.718 ||| 0-1 ||| 205 668016 +a ||| available as a ||| 0.142857 0.0243476 1.49697e-06 1.23691e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| available as ||| 0.0192308 0.0243476 1.49697e-06 2.7905e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| available at ||| 0.0268456 0.204175 5.98788e-06 1.08267e-05 2.718 ||| 0-1 ||| 149 668016 +a ||| available both to ||| 0.2 0.229811 1.49697e-06 1.84585e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| available by means of ||| 0.5 0.0188479 1.49697e-06 3.13034e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| available following ||| 0.5 0.0720432 1.49697e-06 3.13583e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| available for cultivation which could be ||| 0.5 0.0683377 1.49697e-06 1.06503e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| available for cultivation which could ||| 0.5 0.0683377 1.49697e-06 5.87672e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| available for cultivation which ||| 0.5 0.0683377 1.49697e-06 8.26427e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| available for cultivation ||| 0.25 0.0683377 1.49697e-06 9.72885e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| available for ||| 0.0215176 0.0683377 2.84424e-05 1.17215e-05 2.718 ||| 0-1 ||| 883 668016 +a ||| available from ||| 0.0120482 0.0435582 1.49697e-06 2.28994e-06 2.718 ||| 0-1 ||| 83 668016 +a ||| available in ||| 0.00356506 0.0587624 2.99394e-06 1.91122e-05 2.718 ||| 0-1 ||| 561 668016 +a ||| available mean ||| 0.5 0.0201991 1.49697e-06 6.06935e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| available on ||| 0.0112782 0.0782999 4.49091e-06 1.20673e-05 2.718 ||| 0-1 ||| 266 668016 +a ||| available only to ||| 0.111111 0.229811 1.49697e-06 1.24034e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| available to compensate victims ||| 0.5 0.229811 1.49697e-06 1.14072e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| available to compensate ||| 0.2 0.229811 1.49697e-06 3.2315e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| available to it ||| 0.0102041 0.229811 1.49697e-06 1.9816e-06 2.718 ||| 0-1 ||| 98 668016 +a ||| available to them ||| 0.00584795 0.229811 1.49697e-06 2.98902e-07 2.718 ||| 0-1 ||| 171 668016 +a ||| available to ||| 0.0178253 0.229811 5.98788e-05 0.000111431 2.718 ||| 0-1 ||| 2244 668016 +a ||| available under ||| 0.0103093 0.0384416 1.49697e-06 4.51193e-07 2.718 ||| 0-1 ||| 97 668016 +a ||| available ||| 0.00030245 0.0046481 4.49091e-06 5.11e-05 2.718 ||| 0-0 ||| 9919 668016 +a ||| avoid putting ||| 0.0833333 0.049485 1.49697e-06 7.12001e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| avoided by ||| 0.0666667 0.0337966 1.49697e-06 1.12717e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| await the outcome of ||| 0.047619 0.0188479 1.49697e-06 3.99003e-13 2.718 ||| 0-3 ||| 21 668016 +a ||| await them ||| 0.125 0.0955348 1.49697e-06 2.25322e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| await you ||| 0.125 0.0955348 1.49697e-06 2.71211e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| await ||| 0.00359712 0.0955348 2.99394e-06 8.4e-05 2.718 ||| 0-0 ||| 556 668016 +a ||| awaited ||| 0.00862069 0.0049751 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 116 668016 +a ||| awaiting from the ||| 0.25 0.0889121 1.49697e-06 7.67195e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| awaiting from ||| 0.25 0.0889121 1.49697e-06 1.24967e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| awaiting ||| 0.00461894 0.0889121 5.98788e-06 7.76e-05 2.718 ||| 0-0 ||| 866 668016 +a ||| awake at night thinking ||| 0.333333 0.204175 1.49697e-06 9.78545e-18 2.718 ||| 0-1 ||| 3 668016 +a ||| awake at night ||| 0.25 0.204175 1.49697e-06 1.32057e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| awake at ||| 0.25 0.204175 1.49697e-06 1.36142e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| awarded again ||| 1 0.0700825 1.49697e-06 4.42814e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| awarded to ||| 0.05 0.229811 5.98788e-06 6.69076e-06 2.718 ||| 0-1 ||| 80 668016 +a ||| awarded ||| 0.00189753 0.0013812 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 527 668016 +a ||| aware of Parliament 's recommendations ||| 1 0.0188479 1.49697e-06 4.35632e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| aware of Parliament 's ||| 1 0.0188479 1.49697e-06 4.49106e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| aware of Parliament ||| 1 0.0188479 1.49697e-06 2.35825e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| aware of the historical examples . ||| 1 0.0188479 1.49697e-06 5.68333e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| aware of the historical examples ||| 1 0.0188479 1.49697e-06 1.8763e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| aware of the historical ||| 1 0.0188479 1.49697e-06 1.08457e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| aware of the ||| 0.000443853 0.0188479 1.49697e-06 2.52225e-07 2.718 ||| 0-1 ||| 2253 668016 +a ||| aware of ||| 0.00205708 0.0188479 1.19758e-05 4.10845e-06 2.718 ||| 0-1 ||| 3889 668016 +a ||| awareness in ||| 0.0434783 0.0587624 2.99394e-06 1.79647e-06 2.718 ||| 0-1 ||| 46 668016 +a ||| awareness of ||| 0.00253485 0.0188479 2.99394e-06 8.84397e-07 2.718 ||| 0-1 ||| 789 668016 +a ||| awareness when ||| 0.25 0.0055468 1.49697e-06 9.27797e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| awareness with ||| 0.125 0.0571592 1.49697e-06 4.99183e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| away and ||| 0.0178571 0.0377856 1.49697e-06 2.94985e-06 2.718 ||| 0-0 ||| 56 668016 +a ||| away at ||| 0.0714286 0.204175 1.49697e-06 1.08267e-05 2.718 ||| 0-1 ||| 14 668016 +a ||| away because ||| 0.142857 0.0377856 1.49697e-06 7.73853e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| away by ||| 0.0263158 0.0377856 1.49697e-06 1.2364e-06 2.718 ||| 0-0 ||| 38 668016 +a ||| away for ||| 0.166667 0.0683377 2.99394e-06 1.17215e-05 2.718 ||| 0-1 ||| 12 668016 +a ||| away from dubious practices ||| 0.125 0.0435582 1.49697e-06 3.83152e-16 2.718 ||| 0-1 ||| 8 668016 +a ||| away from dubious ||| 0.125 0.0435582 1.49697e-06 1.07627e-11 2.718 ||| 0-1 ||| 8 668016 +a ||| away from the ||| 0.00314465 0.0435582 1.49697e-06 1.40583e-07 2.718 ||| 0-1 ||| 318 668016 +a ||| away from ||| 0.0500544 0.0435582 6.88606e-05 2.28994e-06 2.718 ||| 0-1 ||| 919 668016 +a ||| away furiously at a ||| 0.333333 0.0377856 1.49697e-06 1.74844e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| away furiously at ||| 0.333333 0.0377856 1.49697e-06 3.94453e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| away furiously ||| 0.333333 0.0377856 1.49697e-06 9.42e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| away in ||| 0.047619 0.0587624 2.99394e-06 1.91122e-05 2.718 ||| 0-1 ||| 42 668016 +a ||| away somewhere ||| 1 0.0377856 1.49697e-06 4.82775e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| away ten to ||| 1 0.229811 1.49697e-06 1.24803e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| away to ||| 0.272727 0.229811 8.98182e-06 0.000111431 2.718 ||| 0-1 ||| 22 668016 +a ||| away with just ||| 0.5 0.0571592 1.49697e-06 6.70052e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| away with ||| 0.0179104 0.0571592 8.98182e-06 5.31071e-06 2.718 ||| 0-1 ||| 335 668016 +a ||| away ||| 0.0503995 0.0377856 0.000122752 0.0002355 2.718 ||| 0-0 ||| 1627 668016 +a ||| axe to the ||| 0.25 0.229811 1.49697e-06 4.73124e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| axe to ||| 0.0909091 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| babies into the world ||| 0.5 0.107578 1.49697e-06 9.34443e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| babies into the ||| 0.5 0.107578 1.49697e-06 4.10203e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| babies into ||| 0.5 0.107578 1.49697e-06 6.68173e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| back , they ||| 0.333333 0.0536618 1.49697e-06 2.86369e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| back , ||| 0.00531915 0.0536618 1.49697e-06 8.77357e-05 2.718 ||| 0-0 ||| 188 668016 +a ||| back and forth ||| 0.0185185 0.0536618 1.49697e-06 1.86149e-10 2.718 ||| 0-0 ||| 54 668016 +a ||| back and put it ||| 1 0.0015873 1.49697e-06 2.54466e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| back and put ||| 1 0.0015873 1.49697e-06 1.43093e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| back and ||| 0.0251046 0.0536618 8.98182e-06 9.2153e-06 2.718 ||| 0-0 ||| 239 668016 +a ||| back as far as ||| 0.2 0.0243476 1.49697e-06 4.11048e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| back as far ||| 0.5 0.0243476 1.49697e-06 4.02815e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| back as ||| 0.0357143 0.0243476 2.99394e-06 5.90032e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| back at the ||| 0.0377358 0.204175 2.99394e-06 1.40539e-06 2.718 ||| 0-1 ||| 53 668016 +a ||| back at ||| 0.076087 0.204175 1.04788e-05 2.28922e-05 2.718 ||| 0-1 ||| 92 668016 +a ||| back closer to ||| 1 0.229811 1.49697e-06 5.01855e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| back for ||| 0.0869565 0.0683377 5.98788e-06 2.47843e-05 2.718 ||| 0-1 ||| 46 668016 +a ||| back from this ||| 0.5 0.0435582 1.49697e-06 3.12855e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| back from ||| 0.0384615 0.0435582 4.49091e-06 4.84191e-06 2.718 ||| 0-1 ||| 78 668016 +a ||| back guarantee to ||| 1 0.229811 1.49697e-06 1.42546e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| back home ||| 0.00826446 0.0536618 1.49697e-06 7.46736e-08 2.718 ||| 0-0 ||| 121 668016 +a ||| back in , as a matter ||| 1 0.0587624 1.49697e-06 2.26158e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| back in , as a ||| 1 0.0587624 1.49697e-06 2.17984e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| back in , as ||| 1 0.0587624 1.49697e-06 4.91777e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| back in , ||| 1 0.0587624 1.49697e-06 4.81926e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| back in line with ||| 0.5 0.0571592 1.49697e-06 7.07602e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| back in ||| 0.00859951 0.0587624 1.04788e-05 4.04115e-05 2.718 ||| 0-1 ||| 814 668016 +a ||| back into line with ||| 0.25 0.0571592 1.49697e-06 3.39412e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| back into operation ||| 0.333333 0.107578 1.49697e-06 2.32469e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| back into the ||| 0.0078125 0.107578 1.49697e-06 2.50821e-07 2.718 ||| 0-1 ||| 128 668016 +a ||| back into ||| 0.0557769 0.107578 2.09576e-05 4.08557e-06 2.718 ||| 0-1 ||| 251 668016 +a ||| back of ||| 0.0172414 0.0188479 2.99394e-06 1.98945e-05 2.718 ||| 0-1 ||| 116 668016 +a ||| back on a ||| 0.0769231 0.0782999 1.49697e-06 1.13099e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| back on taking ||| 1 0.0782999 1.49697e-06 1.08441e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| back on the ||| 0.00714286 0.0782999 1.49697e-06 1.56644e-06 2.718 ||| 0-1 ||| 140 668016 +a ||| back on to its ||| 1 0.0782999 1.49697e-06 3.23017e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| back on to ||| 0.1 0.0782999 1.49697e-06 2.26726e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| back on track ||| 0.0133333 0.0782999 1.49697e-06 1.01041e-09 2.718 ||| 0-1 ||| 75 668016 +a ||| back on using ||| 1 0.0782999 1.49697e-06 1.98255e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| back on ||| 0.0483516 0.0782999 3.29333e-05 2.55155e-05 2.718 ||| 0-1 ||| 455 668016 +a ||| back onto ||| 0.0612245 0.207143 4.49091e-06 1.60213e-07 2.718 ||| 0-1 ||| 49 668016 +a ||| back over that ||| 1 0.0682544 1.49697e-06 2.62818e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| back over ||| 0.0384615 0.0682544 2.99394e-06 1.56238e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| back seat to ||| 0.5 0.229811 1.49697e-06 3.81693e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| back to Europe ||| 0.0526316 0.229811 1.49697e-06 1.1922e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| back to a ||| 0.030303 0.229811 1.49697e-06 1.04437e-05 2.718 ||| 0-1 ||| 33 668016 +a ||| back to haunt us ||| 0.2 0.229811 1.49697e-06 9.50717e-13 2.718 ||| 0-1 ||| 5 668016 +a ||| back to haunt ||| 0.2 0.229811 1.49697e-06 3.29858e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| back to me ||| 0.0555556 0.229811 1.49697e-06 1.41863e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| back to the ||| 0.00684932 0.229811 5.98788e-06 1.44647e-05 2.718 ||| 0-1 ||| 584 668016 +a ||| back to them ||| 0.2 0.229811 1.49697e-06 6.32008e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| back to those at ||| 1 0.204175 1.49697e-06 1.47294e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| back to us ||| 0.0666667 0.229811 1.49697e-06 6.79083e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| back to ||| 0.143133 0.229811 0.000332327 0.000235613 2.718 ||| 0-1 ||| 1551 668016 +a ||| back towards ||| 0.111111 0.155507 1.49697e-06 2.26841e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| back under ||| 0.1 0.0536618 1.49697e-06 2.63969e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| back up to ||| 0.25 0.229811 1.49697e-06 8.03558e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| back with ||| 0.0178571 0.0571592 1.49697e-06 1.12291e-05 2.718 ||| 0-1 ||| 56 668016 +a ||| back within ||| 0.5 0.0123496 1.49697e-06 3.34551e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| back ||| 0.0178604 0.0536618 0.000145206 0.0007357 2.718 ||| 0-0 ||| 5431 668016 +a ||| background of ||| 0.00609756 0.0188479 2.99394e-06 7.86788e-07 2.718 ||| 0-1 ||| 328 668016 +a ||| background to the conflict shows the depth ||| 1 0.229811 1.49697e-06 8.41426e-22 2.718 ||| 0-1 ||| 1 668016 +a ||| background to the conflict shows the ||| 1 0.229811 1.49697e-06 5.84324e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| background to the conflict shows ||| 1 0.229811 1.49697e-06 9.51794e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| background to the conflict ||| 1 0.229811 1.49697e-06 2.38545e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| background to the ||| 0.0142857 0.229811 1.49697e-06 5.7205e-07 2.718 ||| 0-1 ||| 70 668016 +a ||| background to ||| 0.00436681 0.229811 1.49697e-06 9.31802e-06 2.718 ||| 0-1 ||| 229 668016 +a ||| backing across the board ||| 1 0.0490758 1.49697e-06 6.81465e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| backing across the ||| 1 0.0490758 1.49697e-06 5.10461e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| backing across ||| 1 0.0490758 1.49697e-06 8.3148e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| backing for ||| 0.0188679 0.0683377 1.49697e-06 6.2274e-07 2.718 ||| 0-1 ||| 53 668016 +a ||| backrooms with ||| 1 0.0571592 1.49697e-06 6.67804e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| backs at ||| 1 0.204175 1.49697e-06 2.6888e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| backs of ||| 0.0238095 0.0188479 1.49697e-06 2.3367e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| backward ||| 0.00534759 0.0033223 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 187 668016 +a ||| bad as ||| 0.0175439 0.0243476 1.49697e-06 4.00899e-07 2.718 ||| 0-1 ||| 57 668016 +a ||| bad for ||| 0.00526316 0.0683377 1.49697e-06 1.68398e-06 2.718 ||| 0-1 ||| 190 668016 +a ||| bad to ||| 0.0344828 0.229811 1.49697e-06 1.60088e-05 2.718 ||| 0-1 ||| 29 668016 +a ||| badly affected ||| 0.0140845 0.0557198 1.49697e-06 4.95504e-09 2.718 ||| 0-1 ||| 71 668016 +a ||| badly hit ||| 0.025 0.121563 1.49697e-06 3.312e-09 2.718 ||| 0-1 ||| 40 668016 +a ||| badly on ||| 0.0666667 0.0782999 1.49697e-06 5.46273e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| ball here ||| 1 0.0182742 1.49697e-06 8.08212e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| ball rolling with ||| 0.2 0.0571592 1.49697e-06 1.23978e-12 2.718 ||| 0-2 ||| 5 668016 +a ||| ban for ||| 0.1 0.0683377 1.49697e-06 1.41867e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| ban of ||| 0.0714286 0.0188479 1.49697e-06 1.13877e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| ban on gene ||| 0.333333 0.0782999 1.49697e-06 2.62894e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| ban on ||| 0.00189514 0.0782999 4.49091e-06 1.46052e-06 2.718 ||| 0-1 ||| 1583 668016 +a ||| ban that at ||| 1 0.204175 1.49697e-06 2.20424e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| bank , on the ||| 1 0.0782999 1.49697e-06 4.49933e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| bank , on ||| 1 0.0782999 1.49697e-06 7.32888e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| bank has supported ||| 1 0.0120717 1.49697e-06 7.07977e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| bank manager asking ||| 1 0.0319755 1.49697e-06 2.37541e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| banned from ||| 0.00793651 0.0435582 1.49697e-06 7.48675e-08 2.718 ||| 0-1 ||| 126 668016 +a ||| barely managing to recover ||| 0.166667 0.229811 1.49697e-06 3.11502e-17 2.718 ||| 0-2 ||| 6 668016 +a ||| barely managing to ||| 0.142857 0.229811 1.49697e-06 7.24424e-12 2.718 ||| 0-2 ||| 7 668016 +a ||| barred from ||| 0.0232558 0.0435582 1.49697e-06 1.58374e-08 2.718 ||| 0-1 ||| 43 668016 +a ||| barrel , to ||| 1 0.229811 1.49697e-06 1.04438e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| barrel to ||| 0.222222 0.229811 2.99394e-06 8.75754e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| barrier to ||| 0.00526316 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 190 668016 +a ||| based on a ||| 0.00090009 0.0782999 1.49697e-06 3.94486e-07 2.718 ||| 0-1 ||| 1111 668016 +a ||| based on action ||| 0.333333 0.0782999 1.49697e-06 2.69038e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| based on eco-tax ||| 1 0.0782999 1.49697e-06 6.22978e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| based on respect for the country 's ||| 0.5 0.0782999 1.49697e-06 1.24507e-18 2.718 ||| 0-1 ||| 2 668016 +a ||| based on respect for the country ||| 0.5 0.0782999 1.49697e-06 6.53788e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| based on respect for the ||| 0.0285714 0.0782999 1.49697e-06 1.81658e-12 2.718 ||| 0-1 ||| 35 668016 +a ||| based on respect for ||| 0.00970874 0.0782999 1.49697e-06 2.959e-11 2.718 ||| 0-1 ||| 103 668016 +a ||| based on respect ||| 0.00869565 0.0782999 1.49697e-06 3.85001e-09 2.718 ||| 0-1 ||| 115 668016 +a ||| based on the ||| 0.00030003 0.0782999 1.49697e-06 5.46368e-07 2.718 ||| 0-1 ||| 3333 668016 +a ||| based on very small farms ||| 1 0.0782999 1.49697e-06 3.7288e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| based on very small ||| 1 0.0782999 1.49697e-06 3.96681e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| based on very ||| 0.333333 0.0782999 1.49697e-06 3.09665e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| based on ||| 0.00203634 0.0782999 3.89212e-05 8.89969e-06 2.718 ||| 0-1 ||| 12768 668016 +a ||| based upon ||| 0.00398406 0.19056 1.49697e-06 4.62514e-07 2.718 ||| 0-1 ||| 251 668016 +a ||| basically in ||| 0.0666667 0.0587624 1.49697e-06 1.73038e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| basically to ||| 0.04 0.229811 1.49697e-06 1.00887e-05 2.718 ||| 0-1 ||| 25 668016 +a ||| basing my comments on the ||| 0.333333 0.0782999 1.49697e-06 3.22014e-16 2.718 ||| 0-3 ||| 3 668016 +a ||| basing my comments on ||| 0.333333 0.0782999 1.49697e-06 5.24522e-15 2.718 ||| 0-3 ||| 3 668016 +a ||| basis for various operations , ||| 1 0.0683377 1.49697e-06 1.01527e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| basis for various operations ||| 1 0.0683377 1.49697e-06 8.51349e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| basis for various ||| 1 0.0683377 1.49697e-06 3.37837e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| basis for ||| 0.00282187 0.0683377 1.19758e-05 2.18806e-05 2.718 ||| 0-1 ||| 2835 668016 +a ||| basis of a ||| 0.00142248 0.0188479 1.49697e-06 7.78526e-07 2.718 ||| 0-1 ||| 703 668016 +a ||| basis of an ||| 0.00645161 0.0188479 1.49697e-06 7.80654e-08 2.718 ||| 0-1 ||| 155 668016 +a ||| basis of publications in the ||| 1 0.0587624 1.49697e-06 2.61959e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| basis of publications in ||| 0.5 0.0587624 1.49697e-06 4.267e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| basis of whether you succeed , when ||| 1 0.0188479 1.49697e-06 3.38367e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| basis of whether you succeed , ||| 1 0.0188479 1.49697e-06 6.76869e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| basis of whether you succeed ||| 1 0.0188479 1.49697e-06 5.67583e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| basis of whether you ||| 1 0.0188479 1.49697e-06 1.48972e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| basis of whether ||| 0.111111 0.0188479 1.49697e-06 4.61399e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| basis of ||| 0.00186007 0.0188479 1.94606e-05 1.75637e-05 2.718 ||| 0-1 ||| 6989 668016 +a ||| basis on ||| 0.00292398 0.0782999 1.49697e-06 2.25262e-05 2.718 ||| 0-1 ||| 342 668016 +a ||| basis provided ||| 0.333333 0.0016615 1.49697e-06 9.2039e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| basis so as to gain ||| 1 0.229811 1.49697e-06 2.68827e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| basis so as to ||| 1 0.229811 1.49697e-06 4.81768e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| basis that an objective study is to ||| 1 0.229811 1.49697e-06 1.10217e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| basis to supporting ||| 1 0.229811 1.49697e-06 6.65629e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| basis to ||| 0.0674157 0.229811 8.98182e-06 0.000208009 2.718 ||| 0-1 ||| 89 668016 +a ||| basis with ||| 0.0588235 0.0571592 1.49697e-06 9.91355e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| battles , in ||| 1 0.0587624 1.49697e-06 1.00312e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be , at ||| 0.0909091 0.204175 1.49697e-06 7.35587e-05 2.718 ||| 0-2 ||| 11 668016 +a ||| be , then a closer ||| 1 0.0252938 1.49697e-06 1.73954e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| be , then a ||| 1 0.0252938 1.49697e-06 8.16684e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be , then ||| 0.125 0.0252938 1.49697e-06 1.84246e-06 2.718 ||| 0-2 ||| 8 668016 +a ||| be , to ||| 0.05 0.229811 1.49697e-06 0.000757086 2.718 ||| 0-2 ||| 20 668016 +a ||| be - confronted with ||| 0.333333 0.0571592 1.49697e-06 1.15271e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| be a burden on ||| 0.25 0.0782999 1.49697e-06 1.32562e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| be a means to ||| 0.1 0.229811 1.49697e-06 1.78324e-07 2.718 ||| 0-3 ||| 10 668016 +a ||| be a need for ||| 0.0625 0.0683377 1.49697e-06 2.7141e-08 2.718 ||| 0-3 ||| 16 668016 +a ||| be a place for ||| 0.111111 0.0683377 1.49697e-06 4.45493e-08 2.718 ||| 0-3 ||| 9 668016 +a ||| be a sign of ||| 0.0666667 0.0188479 1.49697e-06 1.24031e-09 2.718 ||| 0-3 ||| 15 668016 +a ||| be a task of ||| 0.5 0.0188479 1.49697e-06 2.99386e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| be a useful addition to ||| 0.2 0.229811 1.49697e-06 8.79554e-13 2.718 ||| 0-4 ||| 5 668016 +a ||| be a ||| 9.5338e-05 0.0005823 1.49697e-06 7.65874e-06 2.718 ||| 0-1 ||| 10489 668016 +a ||| be able by ||| 0.5 0.0337966 1.49697e-06 1.24489e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| be able to acquire ||| 0.125 0.229811 1.49697e-06 8.79858e-11 2.718 ||| 0-2 ||| 8 668016 +a ||| be able to attack ||| 1 0.229811 1.49697e-06 1.5636e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| be able to do so ||| 0.0188679 0.229811 1.49697e-06 4.13273e-11 2.718 ||| 0-2 ||| 53 668016 +a ||| be able to do this very ||| 1 0.229811 1.49697e-06 4.09367e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| be able to do this ||| 0.0526316 0.229811 1.49697e-06 1.17651e-10 2.718 ||| 0-2 ||| 19 668016 +a ||| be able to do ||| 0.0215054 0.229811 2.99394e-06 1.82083e-08 2.718 ||| 0-2 ||| 93 668016 +a ||| be able to follow that up ||| 1 0.0008521 1.49697e-06 3.09915e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| be able to follow that ||| 1 0.0008521 1.49697e-06 9.08709e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| be able to give ||| 0.015873 0.229811 1.49697e-06 3.21201e-09 2.718 ||| 0-2 ||| 63 668016 +a ||| be able to have any impact on ||| 0.5 0.0782999 1.49697e-06 7.60093e-17 2.718 ||| 0-6 ||| 2 668016 +a ||| be able to hold ||| 0.0588235 0.229811 1.49697e-06 9.2332e-10 2.718 ||| 0-2 ||| 17 668016 +a ||| be able to live ||| 0.0294118 0.229811 1.49697e-06 5.34275e-10 2.718 ||| 0-2 ||| 34 668016 +a ||| be able to require television ||| 1 0.229811 1.49697e-06 1.68678e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| be able to require ||| 0.1 0.229811 1.49697e-06 2.48056e-10 2.718 ||| 0-2 ||| 10 668016 +a ||| be able to rid ourselves of ||| 1 0.0188479 1.49697e-06 2.96016e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| be able to speak on her behalf ||| 1 0.0782999 1.49697e-06 5.98057e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| be able to speak on her ||| 1 0.0782999 1.49697e-06 1.87773e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| be able to speak on ||| 0.25 0.0782999 1.49697e-06 6.90088e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| be able to take part in ||| 0.037037 0.0587624 1.49697e-06 1.55054e-13 2.718 ||| 0-5 ||| 27 668016 +a ||| be able to use ||| 0.0135135 0.229811 1.49697e-06 2.57703e-09 2.718 ||| 0-2 ||| 74 668016 +a ||| be able to ||| 0.0131703 0.229811 0.000104788 5.30035e-06 2.718 ||| 0-2 ||| 5315 668016 +a ||| be about ||| 0.010101 0.0526361 2.99394e-06 9.13267e-05 2.718 ||| 0-1 ||| 198 668016 +a ||| be accorded the same status in ||| 1 0.0587624 1.49697e-06 8.04883e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| be accorded ||| 0.0142857 0.0718447 1.49697e-06 6.12554e-07 2.718 ||| 0-1 ||| 70 668016 +a ||| be accounted for , ||| 1 0.0683377 1.49697e-06 5.1765e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| be accounted for ||| 0.111111 0.0683377 1.49697e-06 4.34071e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| be achieved at ||| 0.0333333 0.204175 1.49697e-06 1.03194e-07 2.718 ||| 0-2 ||| 30 668016 +a ||| be achieved on ||| 0.0769231 0.0782999 1.49697e-06 1.15019e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| be achieved through favourable treatment of ||| 0.333333 0.0188479 1.49697e-06 4.84505e-20 2.718 ||| 0-5 ||| 3 668016 +a ||| be achieving at ||| 1 0.204175 1.49697e-06 4.08335e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be active in ||| 0.0222222 0.0587624 1.49697e-06 4.38814e-08 2.718 ||| 0-2 ||| 45 668016 +a ||| be adapted to ||| 0.00787402 0.229811 1.49697e-06 3.68212e-08 2.718 ||| 0-2 ||| 127 668016 +a ||| be added to the ||| 0.0123457 0.229811 1.49697e-06 2.77888e-08 2.718 ||| 0-2 ||| 81 668016 +a ||| be added to ||| 0.027027 0.229811 4.49091e-06 4.52647e-07 2.718 ||| 0-2 ||| 111 668016 +a ||| be addressed by ||| 0.0238095 0.0337966 1.49697e-06 7.99209e-09 2.718 ||| 0-2 ||| 42 668016 +a ||| be addressed to ||| 0.0588235 0.229811 1.49697e-06 3.40279e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| be adequate for ||| 0.333333 0.0683377 1.49697e-06 1.65615e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| be adhered to ||| 0.0172414 0.229811 1.49697e-06 5.0153e-08 2.718 ||| 0-2 ||| 58 668016 +a ||| be advised to ||| 1 0.229811 1.49697e-06 6.85636e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be affected by ||| 0.00813008 0.0337966 1.49697e-06 9.93047e-09 2.718 ||| 0-2 ||| 123 668016 +a ||| be affected in any way ||| 0.25 0.0587624 1.49697e-06 2.36389e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| be affected in any ||| 0.5 0.0587624 1.49697e-06 1.09663e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| be affected in ||| 0.0833333 0.0587624 1.49697e-06 7.25187e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| be affected ||| 0.00806452 0.0557198 2.99394e-06 6.23609e-06 2.718 ||| 0-1 ||| 248 668016 +a ||| be aimed at ||| 0.00862069 0.204175 1.49697e-06 4.2869e-08 2.718 ||| 0-2 ||| 116 668016 +a ||| be alive if ||| 1 0.0014881 1.49697e-06 1.85549e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| be all the same to ||| 1 0.229811 1.49697e-06 1.48202e-09 2.718 ||| 0-4 ||| 1 668016 +a ||| be allocated as ||| 0.111111 0.0036337 1.49697e-06 1.68289e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| be allocated to the ||| 0.0263158 0.229811 1.49697e-06 1.73826e-08 2.718 ||| 0-2 ||| 38 668016 +a ||| be allocated to ||| 0.0108696 0.229811 1.49697e-06 2.83142e-07 2.718 ||| 0-2 ||| 92 668016 +a ||| be allocated ||| 0.00322581 0.0036337 1.49697e-06 1.64918e-07 2.718 ||| 0-1 ||| 310 668016 +a ||| be allowed for ||| 0.1 0.0683377 1.49697e-06 1.08117e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| be allowed to be ||| 0.025641 0.229811 1.49697e-06 1.86271e-08 2.718 ||| 0-2 ||| 39 668016 +a ||| be allowed to divert us ||| 1 0.229811 1.49697e-06 2.07367e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| be allowed to divert ||| 1 0.229811 1.49697e-06 7.19473e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| be allowed to fail ||| 1 0.229811 1.49697e-06 5.55022e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| be allowed to ||| 0.0137195 0.229811 1.34727e-05 1.02782e-06 2.718 ||| 0-2 ||| 656 668016 +a ||| be an issue for ||| 0.2 0.0683377 1.49697e-06 2.24632e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| be announced for ||| 1 0.0683377 1.49697e-06 1.39571e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be applied to ||| 0.0238095 0.229811 8.98182e-06 6.8754e-07 2.718 ||| 0-2 ||| 252 668016 +a ||| be apportioned to ||| 1 0.229811 1.49697e-06 6.98333e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| be appropriated to ||| 1 0.229811 1.49697e-06 1.58712e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be approved and monitored by ||| 1 0.0337966 1.49697e-06 1.04131e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| be asked ||| 0.0102564 0.0895701 2.99394e-06 1.4888e-05 2.718 ||| 0-1 ||| 195 668016 +a ||| be assisted by ||| 0.0714286 0.0337966 1.49697e-06 5.36782e-10 2.718 ||| 0-2 ||| 14 668016 +a ||| be assisted ||| 0.0277778 0.0687623 1.49697e-06 5.78121e-07 2.718 ||| 0-1 ||| 36 668016 +a ||| be assisting ||| 0.5 0.251748 1.49697e-06 4.16827e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| be associated with it ||| 0.166667 0.0571592 1.49697e-06 2.77098e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| be associated with ||| 0.0194175 0.0571592 2.99394e-06 1.5582e-08 2.718 ||| 0-2 ||| 103 668016 +a ||| be assured of ||| 0.04 0.0188479 1.49697e-06 5.41409e-09 2.718 ||| 0-2 ||| 25 668016 +a ||| be at a ||| 0.047619 0.204175 1.49697e-06 2.7341e-05 2.718 ||| 0-1 ||| 21 668016 +a ||| be at risk of placing ||| 1 0.204175 1.49697e-06 9.33755e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| be at risk of ||| 0.125 0.204175 1.49697e-06 3.92334e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| be at risk ||| 0.025 0.204175 1.49697e-06 7.2168e-08 2.718 ||| 0-1 ||| 40 668016 +a ||| be at the ||| 0.00787402 0.204175 4.49091e-06 3.78677e-05 2.718 ||| 0-1 ||| 381 668016 +a ||| be at ||| 0.0359937 0.204175 3.44303e-05 0.00061682 2.718 ||| 0-1 ||| 639 668016 +a ||| be attached to ||| 0.0212766 0.229811 1.49697e-06 2.03151e-07 2.718 ||| 0-2 ||| 47 668016 +a ||| be attending both ||| 1 0.257576 1.49697e-06 5.12451e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| be attending in a ||| 1 0.257576 1.49697e-06 2.9351e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| be attending in ||| 1 0.257576 1.49697e-06 6.62165e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| be attending ||| 0.117647 0.257576 2.99394e-06 3.09358e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| be attributed to ||| 0.0222222 0.229811 1.49697e-06 4.12651e-08 2.718 ||| 0-2 ||| 45 668016 +a ||| be available at ||| 0.125 0.204175 1.49697e-06 1.9621e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| be available for ||| 0.037037 0.0683377 2.99394e-06 2.12428e-07 2.718 ||| 0-2 ||| 54 668016 +a ||| be available only to ||| 0.333333 0.229811 1.49697e-06 2.24785e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| be available to ||| 0.011236 0.229811 1.49697e-06 2.01945e-06 2.718 ||| 0-2 ||| 89 668016 +a ||| be back to ||| 0.5 0.229811 1.49697e-06 4.26999e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| be back ||| 0.0277778 0.0536618 1.49697e-06 1.3333e-05 2.718 ||| 0-1 ||| 36 668016 +a ||| be based on the ||| 0.00361011 0.0782999 1.49697e-06 9.90177e-09 2.718 ||| 0-2 ||| 277 668016 +a ||| be based on ||| 0.000807102 0.0782999 1.49697e-06 1.61288e-07 2.718 ||| 0-2 ||| 1239 668016 +a ||| be because ||| 0.0243902 0.0052046 1.49697e-06 5.85551e-06 2.718 ||| 0-1 ||| 41 668016 +a ||| be better off if there are several ||| 1 0.0893962 1.49697e-06 5.99517e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| be better off if there are ||| 1 0.0893962 1.49697e-06 9.15293e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| be better off if there ||| 1 0.0893962 1.49697e-06 6.0325e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| be better off if ||| 1 0.0893962 1.49697e-06 1.968e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| be better off ||| 0.1 0.0893962 1.49697e-06 2.35519e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| be blamed for ||| 0.0555556 0.0683377 1.49697e-06 1.46916e-09 2.718 ||| 0-2 ||| 18 668016 +a ||| be borne by ||| 0.015873 0.0337966 1.49697e-06 4.7714e-09 2.718 ||| 0-2 ||| 63 668016 +a ||| be borne in mind that ||| 0.00990099 0.0587624 1.49697e-06 1.47646e-13 2.718 ||| 0-2 ||| 101 668016 +a ||| be borne in mind ||| 0.00469484 0.0587624 1.49697e-06 8.77716e-12 2.718 ||| 0-2 ||| 213 668016 +a ||| be borne in ||| 0.00510204 0.0587624 1.49697e-06 3.48438e-08 2.718 ||| 0-2 ||| 196 668016 +a ||| be both ||| 0.0108696 0.0205477 1.49697e-06 1.18777e-05 2.718 ||| 0-1 ||| 92 668016 +a ||| be bound by ||| 0.0434783 0.0337966 1.49697e-06 7.67897e-09 2.718 ||| 0-2 ||| 23 668016 +a ||| be bound to respect ||| 0.5 0.229811 1.49697e-06 1.41437e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| be bound to ||| 0.166667 0.229811 2.99394e-06 3.26947e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| be broadened to ||| 0.125 0.229811 1.49697e-06 2.53939e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| be brought forward to ||| 0.0555556 0.229811 1.49697e-06 9.89043e-10 2.718 ||| 0-3 ||| 18 668016 +a ||| be brought into line with ||| 0.0294118 0.0571592 1.49697e-06 2.56068e-14 2.718 ||| 0-4 ||| 34 668016 +a ||| be brought into line ||| 0.027027 0.107578 1.49697e-06 9.07444e-12 2.718 ||| 0-2 ||| 37 668016 +a ||| be brought into ||| 0.0306122 0.107578 4.49091e-06 3.08235e-08 2.718 ||| 0-2 ||| 98 668016 +a ||| be brought on board ||| 0.333333 0.0782999 1.49697e-06 2.56989e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| be brought on ||| 0.333333 0.0782999 1.49697e-06 1.92501e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| be brought to bear on ||| 0.2 0.0782999 1.49697e-06 2.56066e-12 2.718 ||| 0-4 ||| 5 668016 +a ||| be brought to bear upon ||| 0.333333 0.229811 1.49697e-06 6.31196e-14 2.718 ||| 0-2 ||| 3 668016 +a ||| be brought to bear ||| 0.153846 0.229811 2.99394e-06 2.66103e-10 2.718 ||| 0-2 ||| 13 668016 +a ||| be brought to ||| 0.0276498 0.229811 8.98182e-06 1.77757e-06 2.718 ||| 0-2 ||| 217 668016 +a ||| be brought within the ||| 0.125 0.0123496 1.49697e-06 1.54954e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| be brought within ||| 0.0769231 0.0123496 1.49697e-06 2.52401e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| be brought ||| 0.00176678 0.0182841 1.49697e-06 2.15119e-06 2.718 ||| 0-1 ||| 566 668016 +a ||| be built up at ||| 1 0.204175 1.49697e-06 1.04552e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| be by ||| 0.0208333 0.0337966 1.49697e-06 0.000149106 2.718 ||| 0-1 ||| 48 668016 +a ||| be called upon to ||| 0.047619 0.210186 1.49697e-06 2.17529e-09 2.718 ||| 0-2 0-3 ||| 21 668016 +a ||| be calling on ||| 0.2 0.0782999 1.49697e-06 4.53065e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| be carried away by ||| 0.125 0.0377856 1.49697e-06 6.60338e-12 2.718 ||| 0-2 ||| 8 668016 +a ||| be carried away ||| 0.125 0.0377856 1.49697e-06 1.25776e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| be carried out by a ||| 0.25 0.0337966 1.49697e-06 7.46065e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| be carried out by ||| 0.00900901 0.0337966 1.49697e-06 1.68314e-10 2.718 ||| 0-3 ||| 111 668016 +a ||| be carried out on ||| 0.037037 0.0782999 1.49697e-06 7.76066e-10 2.718 ||| 0-3 ||| 27 668016 +a ||| be carried out within ||| 0.0666667 0.0123496 1.49697e-06 1.01755e-11 2.718 ||| 0-3 ||| 15 668016 +a ||| be carried out ||| 0.00109051 0.0669777 1.49697e-06 2.19027e-08 2.718 ||| 0-2 ||| 917 668016 +a ||| be caused to ||| 0.153846 0.229811 2.99394e-06 5.38986e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| be chipping in towards ||| 1 0.107135 1.49697e-06 1.46893e-12 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| be claimed for ||| 0.25 0.0683377 1.49697e-06 1.32225e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| be clear to ||| 0.0107527 0.229811 1.49697e-06 2.11341e-06 2.718 ||| 0-2 ||| 93 668016 +a ||| be coming back into ||| 1 0.107578 1.49697e-06 1.43864e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| be committed by ||| 0.333333 0.0337966 1.49697e-06 1.2346e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| be committed to ||| 0.0169492 0.229811 1.49697e-06 5.25654e-07 2.718 ||| 0-2 ||| 59 668016 +a ||| be communicated by us to ||| 1 0.229811 1.49697e-06 2.11341e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| be complied with ||| 0.00833333 0.0571592 1.49697e-06 5.11333e-09 2.718 ||| 0-2 ||| 120 668016 +a ||| be concentrating on ||| 0.0666667 0.0782999 1.49697e-06 7.42503e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| be concluded at ||| 0.111111 0.204175 1.49697e-06 2.19588e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| be concluded on ||| 0.333333 0.0782999 1.49697e-06 2.44751e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| be conducted by ||| 0.0434783 0.0939322 1.49697e-06 5.82558e-08 2.718 ||| 0-1 0-2 ||| 23 668016 +a ||| be conducting a ||| 0.333333 0.140069 1.49697e-06 8.9489e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| be conducting ||| 0.0588235 0.140069 1.49697e-06 2.01889e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| be confronted with ||| 0.0357143 0.050378 1.49697e-06 8.83486e-09 2.718 ||| 0-1 0-2 ||| 28 668016 +a ||| be confronted ||| 0.0344828 0.0435967 1.49697e-06 5.29189e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| be consensus as to who should ||| 0.25 0.229811 1.49697e-06 3.92427e-15 2.718 ||| 0-3 ||| 4 668016 +a ||| be consensus as to who ||| 0.25 0.229811 1.49697e-06 8.85641e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| be consensus as to ||| 0.25 0.229811 1.49697e-06 1.00413e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| be considered as ||| 0.00469484 0.0243476 1.49697e-06 1.71064e-08 2.718 ||| 0-2 ||| 213 668016 +a ||| be considered to ||| 0.0204082 0.229811 1.49697e-06 6.83097e-07 2.718 ||| 0-2 ||| 49 668016 +a ||| be contributing to ||| 0.0625 0.229811 1.49697e-06 6.85636e-08 2.718 ||| 0-2 ||| 16 668016 +a ||| be dealt with ||| 0.0013245 0.0571592 1.49697e-06 3.16784e-08 2.718 ||| 0-2 ||| 755 668016 +a ||| be debated at ||| 0.0666667 0.204175 1.49697e-06 5.11961e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| be deferred until ||| 0.0714286 0.0268909 1.49697e-06 9.1343e-12 2.718 ||| 0-2 ||| 14 668016 +a ||| be delayed for ||| 0.25 0.0683377 1.49697e-06 6.27734e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| be delighted with an ||| 0.5 0.0571592 1.49697e-06 2.51478e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| be delighted with ||| 0.0909091 0.0571592 1.49697e-06 5.65794e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| be delivered to ||| 0.25 0.229811 2.99394e-06 2.19023e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| be demanded . in ||| 1 0.0587624 1.49697e-06 2.96837e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| be denied this right ||| 0.333333 0.0328418 1.49697e-06 3.37563e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| be denied this ||| 0.333333 0.0328418 1.49697e-06 5.23434e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| be denied to ||| 1 0.229811 1.49697e-06 9.58621e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be denied ||| 0.0121951 0.0328418 1.49697e-06 8.10094e-07 2.718 ||| 0-1 ||| 82 668016 +a ||| be deployed in ||| 0.047619 0.0587624 1.49697e-06 1.4482e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| be deployed on ||| 0.25 0.0782999 1.49697e-06 9.14379e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| be deprived ||| 0.0166667 0.0533769 1.49697e-06 8.10094e-07 2.718 ||| 0-1 ||| 60 668016 +a ||| be designed to ||| 0.037037 0.229811 1.49697e-06 4.95816e-07 2.718 ||| 0-2 ||| 27 668016 +a ||| be desirable to ||| 0.0909091 0.229811 1.49697e-06 7.99909e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| be desired in certain ||| 1 0.0587624 1.49697e-06 4.81008e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| be desired in ||| 0.0454545 0.0587624 1.49697e-06 1.68775e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| be detrimental to ||| 0.0169492 0.229811 1.49697e-06 3.68212e-08 2.718 ||| 0-2 ||| 59 668016 +a ||| be developed in ||| 0.016129 0.0587624 1.49697e-06 7.48053e-08 2.718 ||| 0-2 ||| 62 668016 +a ||| be devoted to ||| 0.0243902 0.229811 1.49697e-06 1.30144e-07 2.718 ||| 0-2 ||| 41 668016 +a ||| be differences in the ||| 0.5 0.0587624 1.49697e-06 1.56423e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| be differences in ||| 0.333333 0.0587624 1.49697e-06 2.54795e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| be directed at ||| 0.0217391 0.204175 1.49697e-06 1.93065e-08 2.718 ||| 0-2 ||| 46 668016 +a ||| be directed towards ||| 0.02 0.155507 1.49697e-06 1.9131e-09 2.718 ||| 0-2 ||| 50 668016 +a ||| be discussed at ||| 0.0133333 0.204175 1.49697e-06 3.23831e-08 2.718 ||| 0-2 ||| 75 668016 +a ||| be discussed in relation to Mr Swoboda ||| 1 0.229811 1.49697e-06 2.83267e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| be discussed in relation to Mr ||| 1 0.229811 1.49697e-06 1.13307e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| be discussed in relation to ||| 1 0.229811 1.49697e-06 1.73571e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| be displayed in ||| 0.166667 0.0587624 1.49697e-06 1.91641e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| be distributed to ||| 0.111111 0.229811 1.49697e-06 8.88787e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| be doing ||| 0.00309598 0.0003124 1.49697e-06 4.95952e-08 2.718 ||| 0-0 ||| 323 668016 +a ||| be done away with ||| 0.025641 0.0571592 1.49697e-06 4.38879e-11 2.718 ||| 0-3 ||| 39 668016 +a ||| be done whilst meeting ||| 1 0.0442295 1.49697e-06 2.64369e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| be done whilst ||| 0.5 0.0442295 1.49697e-06 2.10485e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| be drafted in such ||| 0.5 0.0587624 1.49697e-06 6.33026e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| be drafted in ||| 0.0714286 0.0587624 1.49697e-06 3.05972e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| be drawn to ||| 0.111111 0.229811 1.49697e-06 9.02119e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| be drawn up in ||| 0.0526316 0.0587624 1.49697e-06 5.27701e-10 2.718 ||| 0-3 ||| 19 668016 +a ||| be driving back to ||| 0.5 0.229811 1.49697e-06 1.41337e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| be due to ||| 0.0571429 0.229811 2.99394e-06 1.75472e-06 2.718 ||| 0-2 ||| 35 668016 +a ||| be elected by ||| 0.0344828 0.0337966 1.49697e-06 3.32507e-09 2.718 ||| 0-2 ||| 29 668016 +a ||| be enabled to ||| 0.0384615 0.229811 1.49697e-06 9.58621e-08 2.718 ||| 0-2 ||| 26 668016 +a ||| be encouraging ||| 0.025641 0.0134702 1.49697e-06 6.94107e-07 2.718 ||| 0-1 ||| 39 668016 +a ||| be endowed with ||| 0.2 0.0571592 1.49697e-06 6.6564e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| be engaged in ||| 0.04 0.0587624 1.49697e-06 4.46436e-08 2.718 ||| 0-2 ||| 25 668016 +a ||| be enhanced by ||| 0.0625 0.0337966 1.49697e-06 1.77436e-09 2.718 ||| 0-2 ||| 16 668016 +a ||| be ensured in ||| 0.0909091 0.0587624 1.49697e-06 1.56797e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| be equal to ||| 0.0666667 0.229811 2.99394e-06 3.63133e-07 2.718 ||| 0-2 ||| 30 668016 +a ||| be established allowing manufacturers to ||| 1 0.229811 1.49697e-06 3.44869e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| be even ||| 0.00564972 0.0495435 1.49697e-06 3.53668e-05 2.718 ||| 0-1 ||| 177 668016 +a ||| be expected to contribute towards ||| 1 0.229811 1.49697e-06 1.67167e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| be expected to contribute ||| 1 0.229811 1.49697e-06 1.31627e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| be expected to ||| 0.0144928 0.229811 1.49697e-06 3.38374e-07 2.718 ||| 0-2 ||| 69 668016 +a ||| be exposed to ||| 0.0166667 0.229811 1.49697e-06 1.09829e-07 2.718 ||| 0-2 ||| 60 668016 +a ||| be extended to ||| 0.00647249 0.229811 2.99394e-06 2.3045e-07 2.718 ||| 0-2 ||| 309 668016 +a ||| be fed to ||| 0.1 0.229811 1.49697e-06 5.26924e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| be fed with ||| 0.333333 0.0571592 1.49697e-06 2.51128e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| be feeding ||| 0.142857 0.117534 1.49697e-06 1.00945e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| be financially beneficial for ||| 1 0.0683377 1.49697e-06 3.47257e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| be followed by ||| 0.00621118 0.0337966 1.49697e-06 1.0676e-08 2.718 ||| 0-2 ||| 161 668016 +a ||| be followed exactly in ||| 1 0.0587624 1.49697e-06 7.82749e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| be for a ||| 0.0769231 0.0683377 1.49697e-06 2.96008e-05 2.718 ||| 0-1 ||| 13 668016 +a ||| be for the ||| 0.0229885 0.0683377 2.99394e-06 4.09975e-05 2.718 ||| 0-1 ||| 87 668016 +a ||| be for ||| 0.037415 0.0683377 1.64667e-05 0.000667802 2.718 ||| 0-1 ||| 294 668016 +a ||| be forced out ||| 0.2 0.0684932 1.49697e-06 1.9326e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| be forced to actually ||| 1 0.229811 1.49697e-06 1.84756e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| be forced to employ that ||| 1 0.229811 1.49697e-06 5.11959e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| be forced to employ ||| 0.25 0.229811 1.49697e-06 3.04346e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| be forced to ||| 0.0333333 0.229811 5.98788e-06 4.47568e-07 2.718 ||| 0-2 ||| 120 668016 +a ||| be forced ||| 0.00930233 0.0684932 2.99394e-06 5.04542e-06 2.718 ||| 0-1 ||| 215 668016 +a ||| be found for ||| 0.0454545 0.0683377 1.49697e-06 1.46115e-07 2.718 ||| 0-2 ||| 22 668016 +a ||| be found to ||| 0.0909091 0.229811 2.99394e-06 1.38905e-06 2.718 ||| 0-2 ||| 22 668016 +a ||| be free to go after ||| 1 0.229811 1.49697e-06 1.17313e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| be free to go ||| 1 0.229811 1.49697e-06 4.32888e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| be free to ||| 0.00961538 0.229811 1.49697e-06 7.40233e-07 2.718 ||| 0-2 ||| 104 668016 +a ||| be from now on ||| 1 0.0435582 1.49697e-06 1.79815e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| be from now ||| 0.5 0.0435582 1.49697e-06 2.68741e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| be from ||| 0.0740741 0.0435582 2.99394e-06 0.000130463 2.718 ||| 0-1 ||| 27 668016 +a ||| be fulfilled to anything approaching their satisfaction ||| 1 0.1653 1.49697e-06 4.42469e-24 2.718 ||| 0-4 ||| 1 668016 +a ||| be fulfilled to anything approaching their ||| 1 0.1653 1.49697e-06 3.71823e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| be fulfilled to anything approaching ||| 1 0.1653 1.49697e-06 3.20786e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| be generous in ||| 0.0833333 0.0587624 1.49697e-06 5.11768e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| be getting in to ||| 1 0.0587624 1.49697e-06 1.12429e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be getting in ||| 1 0.0587624 1.49697e-06 1.26527e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| be given an increase in ||| 0.2 0.0587624 1.49697e-06 4.29136e-13 2.718 ||| 0-4 ||| 5 668016 +a ||| be given decent ||| 1 0.0371011 1.49697e-06 1.99221e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| be given to what might be a ||| 0.333333 0.229811 1.49697e-06 1.88577e-15 2.718 ||| 0-2 ||| 3 668016 +a ||| be given to what might be ||| 0.333333 0.229811 1.49697e-06 4.25433e-14 2.718 ||| 0-2 ||| 3 668016 +a ||| be given to what might ||| 0.333333 0.229811 1.49697e-06 2.34749e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| be given to what ||| 0.142857 0.229811 1.49697e-06 6.11325e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| be given to ||| 0.0657895 0.229811 3.74243e-05 4.35696e-06 2.718 ||| 0-2 ||| 380 668016 +a ||| be given ||| 0.00528634 0.0371011 1.79636e-05 1.91559e-05 2.718 ||| 0-1 ||| 2270 668016 +a ||| be giving ||| 0.105263 0.136521 8.98182e-06 1.82788e-05 2.718 ||| 0-1 ||| 57 668016 +a ||| be going on to produce a ||| 1 0.0782999 1.49697e-06 2.0509e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| be going on to produce ||| 1 0.0782999 1.49697e-06 4.62687e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| be going on to ||| 1 0.0782999 1.49697e-06 5.22811e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be going on ||| 0.25 0.0782999 1.49697e-06 5.88365e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| be good for ||| 0.0136986 0.0683377 1.49697e-06 3.46322e-07 2.718 ||| 0-2 ||| 73 668016 +a ||| be got back on to its ||| 1 0.0782999 1.49697e-06 6.40427e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| be got back on to ||| 1 0.0782999 1.49697e-06 4.49517e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| be got back on ||| 0.5 0.0782999 1.49697e-06 5.05882e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| be governed by ||| 0.00952381 0.0337966 1.49697e-06 3.28034e-09 2.718 ||| 0-2 ||| 105 668016 +a ||| be grabbing by ||| 1 0.0337966 1.49697e-06 1.64017e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| be granted ||| 0.0038835 0.0210892 2.99394e-06 1.30666e-06 2.718 ||| 0-1 ||| 515 668016 +a ||| be guarantees of ||| 0.2 0.0188479 1.49697e-06 1.08282e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| be had at ||| 0.5 0.204175 1.49697e-06 6.19102e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| be handed over to ||| 0.0384615 0.229811 1.49697e-06 9.44549e-11 2.718 ||| 0-3 ||| 26 668016 +a ||| be handed over wholesale ||| 0.5 0.0682544 1.49697e-06 2.8618e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| be handed over ||| 0.0192308 0.0682544 1.49697e-06 1.30082e-09 2.718 ||| 0-2 ||| 52 668016 +a ||| be happy to keep you ||| 0.5 0.229811 1.49697e-06 2.0119e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| be happy to keep ||| 0.5 0.229811 1.49697e-06 6.23129e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| be happy to ||| 0.0133333 0.229811 1.49697e-06 3.99954e-07 2.718 ||| 0-2 ||| 75 668016 +a ||| be heartily congratulated ||| 1 0.165644 1.49697e-06 5.18206e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| be held to ||| 0.030303 0.229811 1.49697e-06 1.6195e-06 2.718 ||| 0-2 ||| 33 668016 +a ||| be held up to the ||| 0.5 0.229811 1.49697e-06 3.39085e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| be held up to ||| 0.333333 0.229811 1.49697e-06 5.5233e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| be helped to ||| 0.133333 0.214456 2.99394e-06 3.33168e-06 2.718 ||| 0-1 0-2 ||| 15 668016 +a ||| be helped ||| 0.0217391 0.1991 4.49091e-06 9.5109e-06 2.718 ||| 0-1 ||| 138 668016 +a ||| be helping ||| 0.0882353 0.302272 4.49091e-06 2.15699e-05 2.718 ||| 0-1 ||| 34 668016 +a ||| be henceforth ||| 1 0.0699844 1.49697e-06 7.44851e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| be identified with ||| 0.25 0.0571592 1.49697e-06 1.16487e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| be implemented at ||| 0.0277778 0.204175 1.49697e-06 5.41568e-08 2.718 ||| 0-2 ||| 36 668016 +a ||| be implemented in its entirety . ||| 0.25 0.0587624 1.49697e-06 3.42429e-18 2.718 ||| 0-2 ||| 4 668016 +a ||| be implemented in its entirety ||| 0.25 0.0587624 1.49697e-06 1.1305e-15 2.718 ||| 0-2 ||| 4 668016 +a ||| be implemented in its ||| 0.25 0.0587624 1.49697e-06 1.36205e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| be implemented in ||| 0.00487805 0.0587624 1.49697e-06 9.56027e-08 2.718 ||| 0-2 ||| 205 668016 +a ||| be implemented partly in order to ||| 1 0.229811 1.49697e-06 2.14777e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| be imposed on ||| 0.0895522 0.0782999 8.98182e-06 3.83627e-08 2.718 ||| 0-2 ||| 67 668016 +a ||| be imposed ||| 0.00371747 0.00271 1.49697e-06 1.32297e-07 2.718 ||| 0-1 ||| 269 668016 +a ||| be in a position to give ||| 0.2 0.0587624 1.49697e-06 8.55843e-13 2.718 ||| 0-1 ||| 5 668016 +a ||| be in a position to ||| 0.00526316 0.0587624 1.49697e-06 1.41228e-09 2.718 ||| 0-1 ||| 190 668016 +a ||| be in a position ||| 0.00454545 0.0587624 1.49697e-06 1.58937e-08 2.718 ||| 0-1 ||| 220 668016 +a ||| be in a ||| 0.00310559 0.0587624 1.49697e-06 4.8265e-05 2.718 ||| 0-1 ||| 322 668016 +a ||| be in danger of ||| 0.0416667 0.0188479 1.49697e-06 5.61071e-10 2.718 ||| 0-3 ||| 24 668016 +a ||| be in favour ||| 0.00787402 0.0587624 1.49697e-06 3.52249e-07 2.718 ||| 0-1 ||| 127 668016 +a ||| be in keeping with ||| 0.0285714 0.0587624 1.49697e-06 4.08715e-10 2.718 ||| 0-1 ||| 35 668016 +a ||| be in keeping ||| 0.0344828 0.0587624 1.49697e-06 6.39166e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| be in place ||| 0.03125 0.0587624 4.49091e-06 1.63875e-06 2.718 ||| 0-1 ||| 96 668016 +a ||| be in the ||| 0.00767263 0.0587624 4.49091e-06 6.68476e-05 2.718 ||| 0-1 ||| 391 668016 +a ||| be in time ||| 1 0.0587624 1.49697e-06 1.7876e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| be in violation ||| 0.5 0.0587624 1.49697e-06 1.17598e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| be in ||| 0.0300388 0.0587624 9.28122e-05 0.00108887 2.718 ||| 0-1 ||| 2064 668016 +a ||| be incorporated after ||| 0.5 0.0341027 1.49697e-06 3.0707e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| be increased on ||| 1 0.0782999 1.49697e-06 3.41689e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be increased to ||| 0.0333333 0.229811 1.49697e-06 3.15519e-07 2.718 ||| 0-2 ||| 30 668016 +a ||| be informed ||| 0.00220751 0.027911 1.49697e-06 2.11675e-06 2.718 ||| 0-1 ||| 453 668016 +a ||| be installed to ||| 1 0.229811 1.49697e-06 4.12651e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be instructed ||| 0.25 0.196787 1.49697e-06 8.10094e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| be insufficient to carry out the decommissioning ||| 1 0.229811 1.49697e-06 5.71993e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| be insufficient to carry out the ||| 1 0.229811 1.49697e-06 1.58887e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| be insufficient to carry out ||| 1 0.229811 1.49697e-06 2.58808e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| be insufficient to carry ||| 1 0.229811 1.49697e-06 6.75669e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| be insufficient to ||| 0.166667 0.229811 1.49697e-06 3.68212e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| be interested to know ||| 0.0416667 0.229811 1.49697e-06 3.47237e-11 2.718 ||| 0-2 ||| 24 668016 +a ||| be interested to ||| 0.0384615 0.229811 1.49697e-06 1.34588e-07 2.718 ||| 0-2 ||| 26 668016 +a ||| be introduced at ||| 0.0588235 0.204175 1.49697e-06 5.70559e-08 2.718 ||| 0-2 ||| 17 668016 +a ||| be introduced for ||| 0.0555556 0.0683377 1.49697e-06 6.17717e-08 2.718 ||| 0-2 ||| 18 668016 +a ||| be introduced to ||| 0.0833333 0.229811 1.49697e-06 5.87234e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| be invested in ||| 0.030303 0.0587624 1.49697e-06 8.27541e-09 2.718 ||| 0-2 ||| 33 668016 +a ||| be invited ||| 0.0131579 0.245853 1.49697e-06 6.86495e-06 2.718 ||| 0-1 ||| 76 668016 +a ||| be inviting ||| 0.166667 0.350943 1.49697e-06 3.07727e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| be involved by ||| 0.125 0.0337966 1.49697e-06 5.15609e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| be joining ||| 0.0263158 0.251619 1.49697e-06 9.6432e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| be kind enough to ||| 0.0588235 0.229811 1.49697e-06 5.11799e-10 2.718 ||| 0-3 ||| 17 668016 +a ||| be labelled ||| 0.00724638 0.0003124 1.49697e-06 9.7272e-10 2.718 ||| 0-0 ||| 138 668016 +a ||| be lacking in ||| 0.0909091 0.0587624 1.49697e-06 1.88374e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| be laid down in ||| 0.05 0.0587624 1.49697e-06 8.28552e-11 2.718 ||| 0-3 ||| 20 668016 +a ||| be laid to ||| 0.333333 0.229811 1.49697e-06 6.91984e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| be launched to ||| 0.25 0.229811 1.49697e-06 2.10135e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| be led to ||| 0.142857 0.229811 1.49697e-06 5.82791e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| be let in ||| 1 0.0587624 1.49697e-06 4.44694e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| be levied on ||| 0.5 0.0782999 1.49697e-06 4.19377e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| be like to ||| 0.5 0.229811 1.49697e-06 1.12743e-05 2.718 ||| 0-2 ||| 2 668016 +a ||| be limited to closely ||| 1 0.229811 1.49697e-06 2.18556e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| be limited to ||| 0.0173913 0.229811 5.98788e-06 2.46956e-07 2.718 ||| 0-2 ||| 230 668016 +a ||| be linked by ||| 0.5 0.0337966 1.49697e-06 6.21773e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| be linked to ||| 0.015625 0.229811 4.49091e-06 2.64732e-07 2.718 ||| 0-2 ||| 192 668016 +a ||| be listed as a ||| 1 0.0243476 1.49697e-06 7.61073e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| be listed as ||| 0.5 0.0243476 1.49697e-06 1.717e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| be made available for ||| 0.0882353 0.0683377 4.49091e-06 4.44994e-10 2.718 ||| 0-3 ||| 34 668016 +a ||| be made by ||| 0.0111111 0.0337966 1.49697e-06 3.12348e-07 2.718 ||| 0-2 ||| 90 668016 +a ||| be made for ||| 0.0119048 0.0683377 1.49697e-06 1.39891e-06 2.718 ||| 0-2 ||| 84 668016 +a ||| be made from ||| 0.0357143 0.0435582 1.49697e-06 2.73294e-07 2.718 ||| 0-2 ||| 28 668016 +a ||| be made in ||| 0.00938967 0.0587624 2.99394e-06 2.28096e-06 2.718 ||| 0-2 ||| 213 668016 +a ||| be made of ||| 0.0493827 0.0188479 5.98788e-06 1.12291e-06 2.718 ||| 0-2 ||| 81 668016 +a ||| be made on the ||| 0.0232558 0.0782999 1.49697e-06 8.84153e-08 2.718 ||| 0-2 ||| 43 668016 +a ||| be made on ||| 0.0481928 0.0782999 5.98788e-06 1.44018e-06 2.718 ||| 0-2 ||| 83 668016 +a ||| be made reality by ||| 1 0.0337966 1.49697e-06 2.08961e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| be made to achieving ||| 1 0.229811 1.49697e-06 8.8038e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| be made to ||| 0.0661479 0.229811 2.54485e-05 1.32988e-05 2.718 ||| 0-2 ||| 257 668016 +a ||| be made with ||| 0.0294118 0.0571592 1.49697e-06 6.3381e-07 2.718 ||| 0-2 ||| 34 668016 +a ||| be making ||| 0.00757576 0.0275406 1.49697e-06 8.27129e-06 2.718 ||| 0-1 ||| 132 668016 +a ||| be matched to ||| 0.5 0.229811 1.49697e-06 1.84106e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| be measured against ||| 0.0714286 0.05146 1.49697e-06 5.60615e-10 2.718 ||| 0-2 ||| 14 668016 +a ||| be met in ||| 0.0384615 0.0587624 1.49697e-06 8.35163e-08 2.718 ||| 0-2 ||| 26 668016 +a ||| be misled ||| 0.05 0.229885 1.49697e-06 9.93135e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| be more cautious in ||| 0.5 0.0587624 1.49697e-06 3.48131e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| be more involved in ||| 0.0344828 0.0587624 1.49697e-06 8.59884e-10 2.718 ||| 0-3 ||| 29 668016 +a ||| be more on ||| 0.25 0.0782999 1.49697e-06 1.57005e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| be motivated by ||| 0.0909091 0.0337966 1.49697e-06 1.71472e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| be my gift to ||| 1 0.229811 1.49697e-06 2.04135e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| be necessary in ||| 0.0625 0.0587624 1.49697e-06 2.80166e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| be necessary to ||| 0.00657895 0.229811 1.49697e-06 1.63346e-06 2.718 ||| 0-2 ||| 152 668016 +a ||| be needed across ||| 1 0.0490758 1.49697e-06 1.19391e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| be new to them ||| 1 0.229811 1.49697e-06 1.01783e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be new to ||| 0.5 0.229811 1.49697e-06 3.79449e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| be no keeping their number down to ||| 0.5 0.229811 1.49697e-06 1.16139e-19 2.718 ||| 0-6 ||| 2 668016 +a ||| be no more than ||| 0.0666667 0.0242272 1.49697e-06 4.04921e-11 2.718 ||| 0-3 ||| 15 668016 +a ||| be noted in ||| 0.1 0.0587624 1.49697e-06 3.33194e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| be obliged to ||| 0.0377358 0.229811 5.98788e-06 2.41877e-07 2.718 ||| 0-2 ||| 106 668016 +a ||| be of interest to ||| 0.0714286 0.229811 1.49697e-06 3.8758e-08 2.718 ||| 0-3 ||| 14 668016 +a ||| be of possible interest to ||| 1 0.229811 1.49697e-06 3.10878e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| be of ||| 0.00407056 0.0188479 4.49091e-06 0.000536048 2.718 ||| 0-1 ||| 737 668016 +a ||| be offered to ||| 0.0625 0.229811 1.49697e-06 2.76159e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| be offering ||| 0.0666667 0.103522 1.49697e-06 3.20957e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| be on the ||| 0.00374532 0.0782999 1.49697e-06 4.22071e-05 2.718 ||| 0-1 ||| 267 668016 +a ||| be on ||| 0.0169173 0.0782999 1.34727e-05 0.000687503 2.718 ||| 0-1 ||| 532 668016 +a ||| be one of ||| 0.00184843 0.0188479 1.49697e-06 2.23425e-06 2.718 ||| 0-2 ||| 541 668016 +a ||| be only as strong ||| 0.5 0.0243476 1.49697e-06 1.50241e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| be only as ||| 0.5 0.0243476 1.49697e-06 1.76962e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| be open to public scrutiny ||| 0.25 0.229811 1.49697e-06 2.4972e-15 2.718 ||| 0-2 ||| 4 668016 +a ||| be open to public ||| 0.5 0.229811 1.49697e-06 1.65377e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| be open to ||| 0.0106952 0.229811 2.99394e-06 1.02338e-06 2.718 ||| 0-2 ||| 187 668016 +a ||| be opened to ||| 0.166667 0.229811 2.99394e-06 1.64426e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| be opened up for ||| 0.5 0.0683377 1.49697e-06 5.89882e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| be opened up to ||| 0.037037 0.229811 1.49697e-06 5.60774e-10 2.718 ||| 0-3 ||| 27 668016 +a ||| be opening up to ||| 1 0.229811 1.49697e-06 6.08407e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| be opposed in this House to ||| 0.5 0.0587624 1.49697e-06 3.26783e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| be opposed in this House ||| 0.5 0.0587624 1.49697e-06 3.67758e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| be opposed in this ||| 0.5 0.0587624 1.49697e-06 1.47044e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| be opposed in ||| 0.5 0.0587624 1.49697e-06 2.27574e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| be paid back to ||| 0.333333 0.229811 1.49697e-06 5.7474e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| be paid by ||| 0.0540541 0.0337966 2.99394e-06 2.00697e-08 2.718 ||| 0-2 ||| 37 668016 +a ||| be paid out in ||| 0.333333 0.0587624 1.49697e-06 5.6139e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| be paid to ||| 0.108911 0.229811 1.64667e-05 8.54506e-07 2.718 ||| 0-2 ||| 101 668016 +a ||| be part of ||| 0.00225225 0.0188479 1.49697e-06 6.39077e-07 2.718 ||| 0-2 ||| 444 668016 +a ||| be passed on to ||| 0.0333333 0.0782999 1.49697e-06 4.37406e-09 2.718 ||| 0-2 ||| 30 668016 +a ||| be passed on ||| 0.0408163 0.0782999 2.99394e-06 4.92252e-08 2.718 ||| 0-2 ||| 49 668016 +a ||| be paying back to ||| 1 0.229811 1.49697e-06 1.44326e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| be permitted to ||| 0.037037 0.229811 2.99394e-06 1.80297e-07 2.718 ||| 0-2 ||| 54 668016 +a ||| be placed at the feet of ||| 1 0.0188479 1.49697e-06 3.2263e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| be placed on ||| 0.0152672 0.0782999 2.99394e-06 8.60754e-08 2.718 ||| 0-2 ||| 131 668016 +a ||| be placed upon ||| 0.2 0.19056 1.49697e-06 4.47331e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| be pointed at ||| 1 0.204175 1.49697e-06 2.84354e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be pointed out ||| 0.00636943 0.0669777 1.49697e-06 3.42624e-09 2.718 ||| 0-2 ||| 157 668016 +a ||| be possible for it to ||| 0.25 0.229811 1.49697e-06 6.95972e-10 2.718 ||| 0-4 ||| 4 668016 +a ||| be possible for such training to ||| 1 0.229811 1.49697e-06 2.85822e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| be possible for ||| 0.00904977 0.0683377 2.99394e-06 5.35644e-07 2.718 ||| 0-2 ||| 221 668016 +a ||| be possible to bring ||| 0.0714286 0.229811 1.49697e-06 1.58518e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| be possible to ||| 0.00487805 0.229811 4.49091e-06 5.09212e-06 2.718 ||| 0-2 ||| 615 668016 +a ||| be postponed , by ||| 1 0.0337966 1.49697e-06 1.08468e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| be poured into ||| 0.25 0.107578 1.49697e-06 1.98151e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| be practised by ||| 1 0.0337966 1.49697e-06 1.44633e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| be preceded by ||| 0.027027 0.0337966 1.49697e-06 3.28034e-10 2.718 ||| 0-2 ||| 37 668016 +a ||| be premature to draw up ||| 1 0.229811 1.49697e-06 6.40884e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| be premature to draw ||| 1 0.229811 1.49697e-06 1.87915e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| be premature to ||| 0.166667 0.229811 1.49697e-06 1.58712e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| be prepared to ||| 0.00928074 0.229811 5.98788e-06 5.50413e-07 2.718 ||| 0-2 ||| 431 668016 +a ||| be presented at ||| 0.0454545 0.204175 1.49697e-06 4.86054e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| be presented with ||| 0.0454545 0.0571592 1.49697e-06 2.3842e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| be proved to ||| 0.5 0.229811 1.49697e-06 2.62827e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| be provided at ||| 0.0909091 0.204175 1.49697e-06 1.41375e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| be provided for ||| 0.0454545 0.0683377 4.49091e-06 1.5306e-07 2.718 ||| 0-2 ||| 66 668016 +a ||| be provided to ||| 0.108108 0.229811 5.98788e-06 1.45507e-06 2.718 ||| 0-2 ||| 37 668016 +a ||| be providing ||| 0.111111 0.0170047 2.99394e-06 1.80323e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| be pursued by ||| 0.0588235 0.0337966 1.49697e-06 5.4722e-09 2.718 ||| 0-2 ||| 17 668016 +a ||| be pursued in ||| 0.025641 0.0587624 1.49697e-06 3.99615e-08 2.718 ||| 0-2 ||| 39 668016 +a ||| be pursued with ||| 0.0714286 0.0571592 1.49697e-06 1.11041e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| be pushed ||| 0.0263158 0.0479651 1.49697e-06 5.45499e-07 2.718 ||| 0-1 ||| 38 668016 +a ||| be pushing aside ||| 0.5 0.102314 1.49697e-06 9.79969e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| be pushing ||| 0.0666667 0.102314 1.49697e-06 1.39003e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| be put at a ||| 0.2 0.204175 1.49697e-06 3.01462e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| be put at ||| 0.0175439 0.204175 1.49697e-06 6.80106e-07 2.718 ||| 0-2 ||| 57 668016 +a ||| be put before the national ||| 0.5 0.0203282 1.49697e-06 8.35951e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| be put before the ||| 0.0625 0.0203282 1.49697e-06 6.50545e-10 2.718 ||| 0-2 ||| 16 668016 +a ||| be put before ||| 0.0416667 0.0203282 1.49697e-06 1.05966e-08 2.718 ||| 0-2 ||| 24 668016 +a ||| be put in place ||| 0.00645161 0.0587624 1.49697e-06 1.80688e-09 2.718 ||| 0-2 ||| 155 668016 +a ||| be put in ||| 0.00462963 0.0587624 1.49697e-06 1.20059e-06 2.718 ||| 0-2 ||| 216 668016 +a ||| be put into ||| 0.00473934 0.107578 1.49697e-06 1.21379e-07 2.718 ||| 0-2 ||| 211 668016 +a ||| be put off to a ||| 1 0.229811 1.49697e-06 1.26281e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| be put off to ||| 0.5 0.229811 1.49697e-06 2.84893e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| be put out onto the street at ||| 0.142857 0.204175 1.49697e-06 4.52283e-20 2.718 ||| 0-6 ||| 7 668016 +a ||| be put to the ||| 0.0227273 0.229811 4.49091e-06 4.29732e-07 2.718 ||| 0-2 ||| 132 668016 +a ||| be put to ||| 0.0316742 0.229811 1.04788e-05 6.99984e-06 2.718 ||| 0-2 ||| 221 668016 +a ||| be putting ||| 0.0416667 0.049485 2.99394e-06 3.65539e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| be quite prepared to ||| 0.5 0.229811 1.49697e-06 2.14716e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| be raised for ||| 0.5 0.0683377 1.49697e-06 7.69308e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| be reached ||| 0.00819672 0.14487 4.49091e-06 2.22821e-05 2.718 ||| 0-1 ||| 366 668016 +a ||| be reasons for ||| 0.2 0.0683377 1.49697e-06 6.75147e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| be recommended for ||| 0.333333 0.0683377 1.49697e-06 3.60613e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| be reduced to playing ||| 0.5 0.229811 1.49697e-06 1.95795e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| be reduced to ||| 0.0078125 0.229811 1.49697e-06 2.97109e-07 2.718 ||| 0-2 ||| 128 668016 +a ||| be referred to ||| 0.0625 0.229811 5.98788e-06 6.0755e-07 2.718 ||| 0-2 ||| 64 668016 +a ||| be refused to ||| 0.5 0.229811 1.49697e-06 7.55469e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| be regarding ||| 0.666667 0.186429 2.99394e-06 6.0989e-05 2.718 ||| 0-1 ||| 3 668016 +a ||| be reinstated ; ||| 0.25 0.0365854 1.49697e-06 3.07002e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| be reinstated ||| 0.0238095 0.0365854 1.49697e-06 9.9676e-08 2.718 ||| 0-1 ||| 42 668016 +a ||| be released to ||| 0.142857 0.229811 1.49697e-06 1.23161e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| be relying on old ||| 1 0.0782999 1.49697e-06 2.85864e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| be relying on ||| 1 0.0782999 1.49697e-06 3.71252e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| be reminded ||| 0.0294118 0.0717905 1.49697e-06 1.40634e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| be repaid , and ||| 0.5 0.0015873 1.49697e-06 5.83816e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| be repatriated to ||| 0.25 0.229811 1.49697e-06 4.44394e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| be replacing ||| 0.142857 0.0229555 1.49697e-06 2.64594e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| be required for ||| 0.047619 0.0683377 1.49697e-06 1.0598e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| be required to ||| 0.0378788 0.229811 7.48485e-06 1.0075e-06 2.718 ||| 0-2 ||| 132 668016 +a ||| be reserves at a ||| 1 0.204175 1.49697e-06 2.07792e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| be reserves at ||| 1 0.204175 1.49697e-06 4.68783e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| be resolved at ||| 0.0222222 0.204175 1.49697e-06 1.59756e-08 2.718 ||| 0-2 ||| 45 668016 +a ||| be responsible for fulfilling ||| 1 0.0683377 1.49697e-06 6.41991e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| be responsible for ||| 0.00892857 0.0683377 2.99394e-06 9.87679e-08 2.718 ||| 0-2 ||| 224 668016 +a ||| be restricted to ||| 0.02 0.229811 2.99394e-06 1.00306e-07 2.718 ||| 0-2 ||| 100 668016 +a ||| be retained at ||| 0.25 0.204175 1.49697e-06 5.79811e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| be retained by ||| 0.166667 0.0337966 1.49697e-06 1.4016e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| be returned and ||| 0.5 0.0015873 1.49697e-06 4.65076e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| be returned to ||| 0.015625 0.229811 1.49697e-06 8.44348e-08 2.718 ||| 0-2 ||| 64 668016 +a ||| be returned ||| 0.00653595 0.0073918 1.49697e-06 1.15987e-07 2.718 ||| 0-1 ||| 153 668016 +a ||| be said to ||| 0.016129 0.229811 1.49697e-06 2.61113e-06 2.718 ||| 0-2 ||| 62 668016 +a ||| be seeing ||| 0.0555556 0.0117124 1.49697e-06 4.80257e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| be seen as all ||| 0.333333 0.0243476 1.49697e-06 1.58138e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| be seen as highly negative . in ||| 1 0.0587624 1.49697e-06 1.00296e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| be seen as ||| 0.00141044 0.0243476 1.49697e-06 3.34656e-08 2.718 ||| 0-2 ||| 709 668016 +a ||| be seen from ||| 0.0178571 0.0435582 1.49697e-06 2.74625e-08 2.718 ||| 0-2 ||| 56 668016 +a ||| be seen in the light of ||| 0.0588235 0.0587624 1.49697e-06 1.32953e-13 2.718 ||| 0-2 ||| 17 668016 +a ||| be seen in the light ||| 0.0526316 0.0587624 1.49697e-06 2.44561e-12 2.718 ||| 0-2 ||| 19 668016 +a ||| be seen in the ||| 0.00757576 0.0587624 1.49697e-06 1.40714e-08 2.718 ||| 0-2 ||| 132 668016 +a ||| be seen in ||| 0.0037037 0.0587624 1.49697e-06 2.29207e-07 2.718 ||| 0-2 ||| 270 668016 +a ||| be seen most clearly from the ||| 1 0.0435582 1.49697e-06 1.32984e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| be seen most clearly from ||| 1 0.0435582 1.49697e-06 2.16615e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| be seized upon ||| 0.25 0.19056 1.49697e-06 2.82261e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| be sending ||| 0.0434783 0.0167247 1.49697e-06 3.96892e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| be sent on a ||| 1 0.0782999 1.49697e-06 1.83149e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| be sent on ||| 0.5 0.0782999 1.49697e-06 4.13189e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| be sent to ||| 0.047619 0.229811 2.99394e-06 3.81544e-07 2.718 ||| 0-2 ||| 42 668016 +a ||| be set against ||| 0.142857 0.05146 1.49697e-06 2.75314e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| be set aside in ||| 0.333333 0.0587624 1.49697e-06 4.48616e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| be set at a ||| 0.111111 0.204175 1.49697e-06 1.59781e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| be set at zero ||| 1 0.204175 1.49697e-06 9.01174e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| be set at ||| 0.0416667 0.204175 2.99394e-06 3.6047e-07 2.718 ||| 0-2 ||| 48 668016 +a ||| be signing up to ||| 1 0.229811 1.49697e-06 2.42497e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| be silenced ||| 0.111111 0.135135 1.49697e-06 1.64918e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| be sitting in judgment upon itself ||| 1 0.0587624 1.49697e-06 1.88836e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| be sitting in judgment upon ||| 1 0.0587624 1.49697e-06 2.78232e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| be sitting in judgment ||| 1 0.0587624 1.49697e-06 1.17298e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| be sitting in ||| 0.2 0.0587624 1.49697e-06 7.56764e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| be so in ||| 0.0714286 0.0587624 1.49697e-06 2.47141e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| be so ||| 0.0027248 0.0007673 1.49697e-06 1.45527e-06 2.718 ||| 0-1 ||| 367 668016 +a ||| be something that would come to ||| 1 0.229811 1.49697e-06 2.94617e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| be sorely missed by ||| 0.25 0.0337966 1.49697e-06 3.08352e-15 2.718 ||| 0-3 ||| 4 668016 +a ||| be specific - to ||| 0.5 0.229811 1.49697e-06 3.61841e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| be spent on ||| 0.016129 0.0782999 1.49697e-06 4.40689e-08 2.718 ||| 0-2 ||| 62 668016 +a ||| be stated in ||| 0.0909091 0.0587624 1.49697e-06 6.78365e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| be stopped to ||| 1 0.229811 1.49697e-06 1.37127e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| be stopped ||| 0.00581395 0.0700165 1.49697e-06 1.40634e-06 2.718 ||| 0-1 ||| 172 668016 +a ||| be subject to the revision ||| 0.333333 0.229811 1.49697e-06 2.41942e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| be subject to the ||| 0.00769231 0.229811 1.49697e-06 2.10384e-07 2.718 ||| 0-2 ||| 130 668016 +a ||| be subject to ||| 0.00440529 0.229811 4.49091e-06 3.42691e-06 2.718 ||| 0-2 ||| 681 668016 +a ||| be subjected to discrimination ||| 0.2 0.229811 1.49697e-06 1.7278e-12 2.718 ||| 0-2 ||| 5 668016 +a ||| be subjected to ||| 0.00847458 0.229811 1.49697e-06 1.37127e-07 2.718 ||| 0-2 ||| 118 668016 +a ||| be submitted to ||| 0.015625 0.229811 1.49697e-06 3.26947e-07 2.718 ||| 0-2 ||| 64 668016 +a ||| be successful in ||| 0.0212766 0.0587624 1.49697e-06 5.99967e-08 2.718 ||| 0-2 ||| 47 668016 +a ||| be supported ||| 0.0013986 0.0120717 1.49697e-06 1.53863e-06 2.718 ||| 0-1 ||| 715 668016 +a ||| be supporting ||| 0.0352941 0.190621 4.49091e-06 2.07761e-05 2.718 ||| 0-1 ||| 85 668016 +a ||| be suspended at ||| 0.5 0.204175 1.49697e-06 4.19438e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| be swept by ||| 1 0.0337966 1.49697e-06 1.44633e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| be tabled on ||| 0.333333 0.0782999 1.49697e-06 5.6169e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| be taken , even ||| 1 0.0495435 1.49697e-06 3.8444e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| be taken at ||| 0.016 0.204175 2.99394e-06 5.62232e-07 2.718 ||| 0-2 ||| 125 668016 +a ||| be taken away from ||| 0.125 0.0435582 1.49697e-06 3.78275e-11 2.718 ||| 0-3 ||| 8 668016 +a ||| be taken by the ||| 0.0131579 0.0337966 1.49697e-06 8.34378e-09 2.718 ||| 0-2 ||| 76 668016 +a ||| be taken by ||| 0.0117647 0.0337966 2.99394e-06 1.3591e-07 2.718 ||| 0-2 ||| 170 668016 +a ||| be taken in the ||| 0.0175439 0.0587624 1.49697e-06 6.09316e-08 2.718 ||| 0-2 ||| 57 668016 +a ||| be taken in ||| 0.00434783 0.0587624 1.49697e-06 9.92504e-07 2.718 ||| 0-2 ||| 230 668016 +a ||| be taken into account ||| 0.00119332 0.107578 1.49697e-06 2.88482e-11 2.718 ||| 0-2 ||| 838 668016 +a ||| be taken into ||| 0.0030896 0.107578 4.49091e-06 1.00342e-07 2.718 ||| 0-2 ||| 971 668016 +a ||| be taken of ||| 0.0493827 0.0188479 5.98788e-06 4.88608e-07 2.718 ||| 0-2 ||| 81 668016 +a ||| be taken on in ||| 0.5 0.0685311 1.49697e-06 3.76512e-08 2.718 ||| 0-2 0-3 ||| 2 668016 +a ||| be taken on ||| 0.00952381 0.0782999 1.49697e-06 6.26659e-07 2.718 ||| 0-2 ||| 105 668016 +a ||| be taken out of ||| 0.0263158 0.0188479 1.49697e-06 1.87156e-09 2.718 ||| 0-3 ||| 38 668016 +a ||| be taken over ||| 0.0333333 0.0682544 1.49697e-06 3.8372e-08 2.718 ||| 0-2 ||| 30 668016 +a ||| be taken regarding ||| 0.25 0.186429 1.49697e-06 5.55915e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| be taken to ||| 0.0140187 0.229811 4.49091e-06 5.78664e-06 2.718 ||| 0-2 ||| 214 668016 +a ||| be taken under ||| 0.111111 0.0384416 1.49697e-06 2.34306e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| be taken up again ||| 0.166667 0.0700825 1.49697e-06 1.30614e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| be taken with ||| 0.0434783 0.0571592 1.49697e-06 2.75787e-07 2.718 ||| 0-2 ||| 23 668016 +a ||| be taking as ||| 1 0.0243476 1.49697e-06 6.75671e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| be taking forward to ||| 1 0.229811 1.49697e-06 1.50123e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| be targeted at ||| 0.025641 0.204175 1.49697e-06 1.73326e-08 2.718 ||| 0-2 ||| 39 668016 +a ||| be targeted on ||| 0.2 0.0782999 1.49697e-06 1.93188e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| be thanked for ||| 0.333333 0.0683377 1.49697e-06 9.34922e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| be thanks to ||| 0.25 0.229811 1.49697e-06 5.14227e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| be that we will soon have ||| 1 0.0008079 1.49697e-06 1.31773e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| be that we will soon ||| 1 0.0008079 1.49697e-06 1.1018e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| be that we will ||| 0.333333 0.0008079 1.49697e-06 1.19631e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| be that we ||| 0.0384615 0.0008079 1.49697e-06 1.38283e-07 2.718 ||| 0-2 ||| 26 668016 +a ||| be the best way in ||| 0.5 0.0587624 1.49697e-06 1.99574e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| be the concern of ||| 0.5 0.0188479 1.49697e-06 4.39335e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| be the same right across ||| 1 0.0490758 1.49697e-06 2.84073e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| be the targets of ||| 0.5 0.0188479 1.49697e-06 7.83233e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| be the ||| 0.000167392 0.0004654 1.49697e-06 2.77733e-05 2.718 ||| 0-1 ||| 5974 668016 +a ||| be thrown in ||| 0.333333 0.0587624 1.49697e-06 3.01617e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| be to set ||| 0.166667 0.229811 1.49697e-06 3.71005e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| be to ||| 0.0268857 0.229811 5.38909e-05 0.00634848 2.718 ||| 0-1 ||| 1339 668016 +a ||| be told ||| 0.0116279 0.0003124 2.99394e-06 8.02494e-09 2.718 ||| 0-0 ||| 172 668016 +a ||| be traced back to ||| 0.0714286 0.229811 1.49697e-06 1.708e-11 2.718 ||| 0-3 ||| 14 668016 +a ||| be transferred to the European Parliament ||| 1 0.229811 1.49697e-06 1.61584e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| be transferred to the European ||| 1 0.229811 1.49697e-06 2.81506e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| be transferred to the ||| 0.025641 0.229811 1.49697e-06 8.41848e-09 2.718 ||| 0-2 ||| 39 668016 +a ||| be transferred to ||| 0.025641 0.229811 2.99394e-06 1.37127e-07 2.718 ||| 0-2 ||| 78 668016 +a ||| be treated as ||| 0.00471698 0.0243476 1.49697e-06 8.63269e-09 2.718 ||| 0-2 ||| 212 668016 +a ||| be treated by means of ||| 1 0.0188479 1.49697e-06 9.684e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| be treated ||| 0.00251889 0.016092 2.99394e-06 8.10094e-07 2.718 ||| 0-1 ||| 794 668016 +a ||| be triggered , by ||| 0.333333 0.0337966 1.49697e-06 7.64609e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| be true to say ||| 0.5 0.229811 1.49697e-06 9.80569e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| be true to ||| 0.0833333 0.229811 2.99394e-06 1.02591e-06 2.718 ||| 0-2 ||| 24 668016 +a ||| be trying to engage in ||| 1 0.0587624 1.49697e-06 5.41704e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| be turned on ||| 1 0.0782999 2.99394e-06 3.85689e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| be unable to ||| 0.0107527 0.229811 1.49697e-06 1.73314e-07 2.718 ||| 0-2 ||| 93 668016 +a ||| be under ||| 0.0113636 0.0384416 1.49697e-06 2.57055e-05 2.718 ||| 0-1 ||| 88 668016 +a ||| be undertaken by ||| 0.030303 0.0337966 1.49697e-06 7.08254e-09 2.718 ||| 0-2 ||| 33 668016 +a ||| be undertaken ||| 0.003861 0.008107 1.49697e-06 3.31649e-07 2.718 ||| 0-1 ||| 259 668016 +a ||| be up to the ||| 0.0163934 0.229811 1.49697e-06 1.32922e-06 2.718 ||| 0-2 ||| 61 668016 +a ||| be up to ||| 0.0693069 0.229811 1.04788e-05 2.16515e-05 2.718 ||| 0-2 ||| 101 668016 +a ||| be upgraded to ||| 0.166667 0.229811 1.49697e-06 1.84106e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| be upon ||| 0.142857 0.19056 1.49697e-06 3.57293e-05 2.718 ||| 0-1 ||| 7 668016 +a ||| be used for ||| 0.00635593 0.0683377 4.49091e-06 2.86487e-07 2.718 ||| 0-2 ||| 472 668016 +a ||| be used to ||| 0.00721501 0.229811 7.48485e-06 2.7235e-06 2.718 ||| 0-2 ||| 693 668016 +a ||| be verified on ||| 1 0.0782999 1.49697e-06 1.71876e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| be very firm : ||| 1 0.0007376 1.49697e-06 1.07844e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| be very much in the interests of ||| 1 0.0188479 1.49697e-06 3.3727e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| be voting in ||| 0.0606061 0.0587624 2.99394e-06 4.2357e-08 2.718 ||| 0-2 ||| 33 668016 +a ||| be voting ||| 0.00546448 0.075849 1.49697e-06 1.39274e-05 2.718 ||| 0-1 ||| 183 668016 +a ||| be well advised to ||| 0.0833333 0.229811 1.49697e-06 1.08714e-10 2.718 ||| 0-3 ||| 12 668016 +a ||| be wheeled out ||| 0.5 0.0669777 1.49697e-06 8.17542e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| be where ||| 0.05 0.0053255 1.49697e-06 4.44917e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| be willing to ||| 0.00900901 0.229811 1.49697e-06 2.39973e-07 2.718 ||| 0-2 ||| 111 668016 +a ||| be wise to consider ||| 0.5 0.229811 1.49697e-06 6.56528e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| be wise to ||| 0.0769231 0.229811 1.49697e-06 4.12651e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| be with you at the ||| 1 0.204175 1.49697e-06 7.81814e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| be with you at ||| 1 0.204175 1.49697e-06 1.27348e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| be with ||| 0.015625 0.0571592 2.99394e-06 0.000302564 2.718 ||| 0-1 ||| 128 668016 +a ||| be withheld , through ||| 0.5 0.230708 1.49697e-06 3.09239e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| be within ||| 0.0208333 0.0123496 1.49697e-06 9.01433e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| be without interest for ||| 1 0.0683377 1.49697e-06 1.65737e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| be worked out at last , some ||| 1 0.204175 1.49697e-06 2.91587e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| be worked out at last , ||| 1 0.204175 1.49697e-06 2.67683e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| be worked out at last ||| 1 0.204175 1.49697e-06 2.24463e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| be worked out at ||| 0.333333 0.204175 1.49697e-06 1.02776e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| be writing to ||| 0.5 0.229811 1.49697e-06 1.38651e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| be ||| 0.000249035 0.0003124 6.58667e-05 0.0001351 2.718 ||| 0-0 ||| 176682 668016 +a ||| beans . we are therefore dealing with ||| 1 0.0008079 1.49697e-06 1.61225e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| beans . we are therefore dealing ||| 1 0.0008079 1.49697e-06 2.52131e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| beans . we are therefore ||| 1 0.0008079 1.49697e-06 2.44076e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| beans . we are ||| 1 0.0008079 1.49697e-06 2.91852e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| beans . we ||| 1 0.0008079 1.49697e-06 1.92354e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| bear at least ||| 0.333333 0.204175 1.49697e-06 1.25034e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| bear at ||| 0.333333 0.204175 1.49697e-06 5.0951e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| bear by backing ||| 1 0.0337966 1.49697e-06 2.0815e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| bear by ||| 0.0714286 0.0337966 1.49697e-06 1.23166e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| bear in mind what was said by ||| 0.5 0.0587624 1.49697e-06 2.15067e-20 2.718 ||| 0-1 ||| 2 668016 +a ||| bear in mind what was said ||| 0.5 0.0587624 1.49697e-06 4.09643e-18 2.718 ||| 0-1 ||| 2 668016 +a ||| bear in mind what was ||| 0.5 0.0587624 1.49697e-06 9.95972e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| bear in mind what ||| 0.111111 0.0587624 1.49697e-06 3.17897e-12 2.718 ||| 0-1 ||| 9 668016 +a ||| bear in mind ||| 0.00364964 0.0587624 5.98788e-06 2.26568e-09 2.718 ||| 0-1 ||| 1096 668016 +a ||| bear in ||| 0.0054407 0.0587624 7.48485e-06 8.99435e-06 2.718 ||| 0-1 ||| 919 668016 +a ||| bear on the ||| 0.0169492 0.0782999 1.49697e-06 3.48642e-07 2.718 ||| 0-1 ||| 59 668016 +a ||| bear on ||| 0.117647 0.0782999 1.79636e-05 5.67896e-06 2.718 ||| 0-1 ||| 102 668016 +a ||| bear to ||| 0.0384615 0.229811 1.49697e-06 5.24401e-05 2.718 ||| 0-1 ||| 26 668016 +a ||| bear upon ||| 0.25 0.19056 1.49697e-06 2.95134e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| bearing in mind ||| 0.00242131 0.0587624 4.49091e-06 6.75011e-10 2.718 ||| 0-1 ||| 1239 668016 +a ||| bearing in ||| 0.0146484 0.0587624 2.24546e-05 2.67968e-06 2.718 ||| 0-1 ||| 1024 668016 +a ||| bearing on ||| 0.0217391 0.0782999 4.49091e-06 1.69193e-06 2.718 ||| 0-1 ||| 138 668016 +a ||| bearing with ||| 0.25 0.0571592 1.49697e-06 7.44601e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| bearing ||| 0.000649773 0.0005302 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1539 668016 +a ||| bears in ||| 0.0625 0.0587624 1.49697e-06 1.10552e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| bears that in ||| 1 0.0587624 1.49697e-06 1.85966e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| bears witness to a ||| 0.0666667 0.229811 1.49697e-06 4.11414e-12 2.718 ||| 0-2 ||| 15 668016 +a ||| bears witness to the ||| 0.047619 0.229811 1.49697e-06 5.69814e-12 2.718 ||| 0-2 ||| 21 668016 +a ||| bears witness to ||| 0.0298507 0.229811 2.99394e-06 9.28159e-11 2.718 ||| 0-2 ||| 67 668016 +a ||| beat ||| 0.0361446 0.178082 4.49091e-06 3.56e-05 2.718 ||| 0-0 ||| 83 668016 +a ||| became clear that ||| 0.025 0.0298893 1.49697e-06 4.13833e-10 2.718 ||| 0-0 ||| 40 668016 +a ||| became clear ||| 0.0106383 0.0298893 1.49697e-06 2.46013e-08 2.718 ||| 0-0 ||| 94 668016 +a ||| became economic ||| 0.25 0.0298893 1.49697e-06 8.96407e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| became ||| 0.00533333 0.0298893 8.98182e-06 7.39e-05 2.718 ||| 0-0 ||| 1125 668016 +a ||| because , ladies and gentlemen , ||| 0.047619 0.0015873 1.49697e-06 3.71977e-17 2.718 ||| 0-3 ||| 21 668016 +a ||| because , ladies and gentlemen ||| 0.0555556 0.0015873 1.49697e-06 3.11918e-16 2.718 ||| 0-3 ||| 18 668016 +a ||| because , ladies and ||| 0.333333 0.0015873 1.49697e-06 4.51401e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| because , to be perfectly ||| 1 0.229811 1.49697e-06 9.47846e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| because , to be ||| 0.166667 0.229811 1.49697e-06 2.48779e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| because , to ||| 0.04 0.229811 1.49697e-06 1.37273e-05 2.718 ||| 0-2 ||| 25 668016 +a ||| because , ||| 0.000245821 0.0052046 1.49697e-06 3.85312e-05 2.718 ||| 0-0 ||| 4068 668016 +a ||| because in ||| 0.00128535 0.0587624 1.49697e-06 1.97431e-05 2.718 ||| 0-1 ||| 778 668016 +a ||| because it affects ||| 0.0588235 0.380413 2.99394e-06 7.16829e-09 2.718 ||| 0-2 ||| 34 668016 +a ||| because it is ||| 0.000929656 0.0052046 4.49091e-06 1.80078e-07 2.718 ||| 0-0 ||| 3227 668016 +a ||| because it seems ||| 0.0238095 0.0052046 1.49697e-06 6.90639e-10 2.718 ||| 0-0 ||| 42 668016 +a ||| because it ||| 0.001287 0.0052046 8.98182e-06 5.74575e-06 2.718 ||| 0-0 ||| 4662 668016 +a ||| because of a ||| 0.00342466 0.0052046 1.49697e-06 7.78583e-07 2.718 ||| 0-0 ||| 292 668016 +a ||| because of the ||| 0.000589102 0.0188479 2.99394e-06 5.96697e-07 2.718 ||| 0-1 ||| 3395 668016 +a ||| because of ||| 0.01068 0.0052046 0.000118261 1.7565e-05 2.718 ||| 0-0 ||| 7397 668016 +a ||| because otherwise ||| 0.00383142 0.0052046 1.49697e-06 1.91921e-08 2.718 ||| 0-0 ||| 261 668016 +a ||| because such a standstill ||| 1 0.0052046 1.49697e-06 2.13337e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| because such a ||| 0.05 0.0052046 1.49697e-06 2.96301e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| because such ||| 0.0125 0.0052046 1.49697e-06 6.68462e-07 2.718 ||| 0-0 ||| 80 668016 +a ||| because that is ||| 0.00189394 0.0052046 1.49697e-06 1.70341e-07 2.718 ||| 0-0 ||| 528 668016 +a ||| because that ||| 0.000967118 0.0052046 1.49697e-06 5.43506e-06 2.718 ||| 0-0 ||| 1034 668016 +a ||| because the banana regime ||| 0.5 0.0052046 1.49697e-06 2.78691e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| because the banana ||| 0.5 0.0052046 1.49697e-06 9.91785e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| because the boundaries of ||| 1 0.0052046 1.49697e-06 8.51895e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| because the boundaries ||| 0.333333 0.0052046 1.49697e-06 1.56702e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| because the other gases cause ||| 1 0.0052046 1.49697e-06 1.34661e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| because the other gases ||| 1 0.0052046 1.49697e-06 7.45217e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| because the other ||| 0.0625 0.0052046 1.49697e-06 2.56971e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| because the ||| 0.000386648 0.0052046 4.49091e-06 1.98357e-05 2.718 ||| 0-0 ||| 7759 668016 +a ||| because there is ||| 0.00201207 0.0005768 1.49697e-06 7.61073e-10 2.718 ||| 0-1 ||| 497 668016 +a ||| because there was ||| 0.0106383 0.0052046 1.49697e-06 3.10292e-09 2.718 ||| 0-0 ||| 94 668016 +a ||| because there ||| 0.00314465 0.0052046 2.99394e-06 9.90398e-07 2.718 ||| 0-0 ||| 636 668016 +a ||| because they are dead ||| 0.5 0.0052046 1.49697e-06 3.96827e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| because they are ||| 0.00185701 0.0052046 2.99394e-06 1.60011e-08 2.718 ||| 0-0 ||| 1077 668016 +a ||| because they happen to ||| 0.5 0.229811 1.49697e-06 4.08403e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| because they have the greatest desire to ||| 1 0.229811 1.49697e-06 2.37552e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| because they would ||| 0.05 0.0052046 1.49697e-06 6.18912e-09 2.718 ||| 0-0 ||| 20 668016 +a ||| because they ||| 0.0031072 0.0052046 8.98182e-06 1.0546e-06 2.718 ||| 0-0 ||| 1931 668016 +a ||| because to ||| 0.0172414 0.117508 1.49697e-06 0.000113182 2.718 ||| 0-0 0-1 ||| 58 668016 +a ||| because we never got a ||| 1 0.0052046 1.49697e-06 1.02451e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| because we never got ||| 1 0.0052046 1.49697e-06 2.31132e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| because we never ||| 0.111111 0.0052046 1.49697e-06 2.11273e-10 2.718 ||| 0-0 ||| 9 668016 +a ||| because we would then have to vote ||| 1 0.0052046 1.49697e-06 5.79491e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| because we would then have to ||| 1 0.0052046 1.49697e-06 3.68399e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| because we would then have ||| 0.333333 0.0052046 1.49697e-06 4.14592e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| because we would then ||| 1 0.0052046 1.49697e-06 3.46654e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| because we would ||| 0.0769231 0.0052046 1.49697e-06 2.1526e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| because we ||| 0.00172936 0.0052046 5.98788e-06 3.66793e-06 2.718 ||| 0-0 ||| 2313 668016 +a ||| because you talked about ||| 0.333333 0.0526361 1.49697e-06 5.56031e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| because ||| 0.00195573 0.0052046 0.000248497 0.0003231 2.718 ||| 0-0 ||| 84879 668016 +a ||| become a discussion of ||| 1 0.0188479 1.49697e-06 3.23636e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| become apparent in the ||| 0.2 0.0587624 1.49697e-06 3.75162e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| become apparent in ||| 0.142857 0.0587624 1.49697e-06 6.11094e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| become clear to me ||| 0.333333 0.229811 1.49697e-06 2.00602e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| become clear to ||| 0.0714286 0.229811 1.49697e-06 3.3317e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| become involved in ||| 0.00628931 0.0587624 1.49697e-06 5.93585e-09 2.718 ||| 0-2 ||| 159 668016 +a ||| become of ||| 0.0224719 0.0188479 2.99394e-06 8.45058e-06 2.718 ||| 0-1 ||| 89 668016 +a ||| become one by ||| 0.2 0.0337966 1.49697e-06 9.79729e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| become subject to ||| 0.05 0.229811 1.49697e-06 5.40238e-08 2.718 ||| 0-2 ||| 20 668016 +a ||| become the latest in ||| 0.5 0.0587624 1.49697e-06 1.7072e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| become very stretched and ||| 1 0.0015873 1.49697e-06 4.21983e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| become ||| 0.0003944 0.0018724 5.98788e-06 4.38e-05 2.718 ||| 0-0 ||| 10142 668016 +a ||| becoming a member of ||| 0.0571429 0.0188479 2.99394e-06 2.24762e-11 2.718 ||| 0-3 ||| 35 668016 +a ||| becoming available on ||| 1 0.0782999 1.49697e-06 1.24173e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| becoming aware of ||| 0.0666667 0.0188479 1.49697e-06 4.2276e-10 2.718 ||| 0-2 ||| 15 668016 +a ||| been Members of ||| 0.333333 0.0188479 1.49697e-06 1.45684e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| been a very ||| 0.0142857 0.0005823 1.49697e-06 4.91008e-09 2.718 ||| 0-1 ||| 70 668016 +a ||| been a ||| 0.000311624 0.0005823 1.49697e-06 1.41115e-06 2.718 ||| 0-1 ||| 3209 668016 +a ||| been able to achieve ||| 0.02 0.229811 1.49697e-06 2.23154e-10 2.718 ||| 0-2 ||| 50 668016 +a ||| been able to invite ||| 0.333333 0.229811 1.49697e-06 1.05473e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| been able to set up the Daphne ||| 1 0.229811 1.49697e-06 4.77989e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| been able to set up the ||| 1 0.229811 1.49697e-06 1.19497e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| been able to set up ||| 1 0.229811 1.49697e-06 1.94647e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| been able to set ||| 0.333333 0.229811 1.49697e-06 5.70728e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| been able to ||| 0.00438276 0.229811 8.98182e-06 9.76605e-07 2.718 ||| 0-2 ||| 1369 668016 +a ||| been accused against ||| 1 0.100079 1.49697e-06 9.16243e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| been accused ||| 0.015625 0.100079 1.49697e-06 3.84008e-07 2.718 ||| 0-1 ||| 64 668016 +a ||| been achieved to ||| 0.333333 0.229811 1.49697e-06 1.95695e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| been active since ||| 0.25 0.0050746 1.49697e-06 2.11275e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| been addressed to ||| 0.166667 0.229811 1.49697e-06 6.26974e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| been affected by ||| 0.0232558 0.0447582 1.49697e-06 9.45355e-09 2.718 ||| 0-1 0-2 ||| 43 668016 +a ||| been alluded to ||| 0.166667 0.229811 1.49697e-06 1.63762e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| been applied to ||| 0.0769231 0.229811 1.49697e-06 1.26681e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| been appointed ||| 0.0147059 0.0163371 1.49697e-06 5.77682e-08 2.718 ||| 0-1 ||| 68 668016 +a ||| been arrested ||| 0.00729927 0.0414938 1.49697e-06 1.21881e-07 2.718 ||| 0-1 ||| 137 668016 +a ||| been assailing ||| 1 0.5 1.49697e-06 6.01056e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| been at the ||| 0.00917431 0.204175 1.49697e-06 6.97724e-06 2.718 ||| 0-1 ||| 109 668016 +a ||| been at ||| 0.012987 0.204175 2.99394e-06 0.000113651 2.718 ||| 0-1 ||| 154 668016 +a ||| been available to ||| 0.25 0.229811 1.49697e-06 3.7209e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| been bearing in ||| 0.5 0.0587624 1.49697e-06 8.94799e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| been brought to an ||| 0.5 0.229811 1.49697e-06 1.45574e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| been brought to ||| 0.0212766 0.229811 1.49697e-06 3.27524e-07 2.718 ||| 0-2 ||| 47 668016 +a ||| been built on ||| 0.5 0.0782999 1.49697e-06 6.29573e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| been built up ||| 0.0909091 0.0195077 1.49697e-06 2.0373e-10 2.718 ||| 0-2 ||| 11 668016 +a ||| been carefully monitoring developments in ||| 1 0.0587624 1.49697e-06 8.95927e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| been carried out on ||| 0.0666667 0.0782999 1.49697e-06 1.42993e-10 2.718 ||| 0-3 ||| 15 668016 +a ||| been carried out to ||| 0.333333 0.229811 1.49697e-06 1.32041e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| been caused by ||| 0.0263158 0.0337966 1.49697e-06 2.33248e-09 2.718 ||| 0-2 ||| 38 668016 +a ||| been committed to ||| 0.0454545 0.229811 1.49697e-06 9.68534e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| been compensated with ||| 1 0.0571592 1.49697e-06 1.22646e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| been compounded by a ||| 0.333333 0.0544218 1.49697e-06 5.6727e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| been compounded by ||| 0.166667 0.0544218 1.49697e-06 1.27977e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| been compounded ||| 0.166667 0.0544218 1.49697e-06 2.43762e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| been confined to ||| 0.4 0.229811 2.99394e-06 1.18142e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| been contacted by ||| 0.142857 0.0337966 1.49697e-06 3.84626e-11 2.718 ||| 0-2 ||| 7 668016 +a ||| been conveyed to ||| 1 0.229811 1.49697e-06 5.49772e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| been defined in ||| 0.0769231 0.0587624 1.49697e-06 6.72102e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| been deported ||| 0.166667 0.0994152 1.49697e-06 5.17576e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| been devised in ||| 0.333333 0.0587624 1.49697e-06 1.7254e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| been doing in ||| 0.0769231 0.0587624 1.49697e-06 7.36503e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| been done to ||| 0.0625 0.229811 1.49697e-06 5.33396e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| been equal to ||| 0.142857 0.229811 1.49697e-06 6.69084e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| been expressed to you ||| 0.5 0.229811 1.49697e-06 3.67095e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| been expressed to ||| 0.2 0.229811 1.49697e-06 1.13697e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| been faced up to ||| 0.333333 0.229811 1.49697e-06 2.52526e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| been filed with ||| 1 0.0571592 1.49697e-06 1.6167e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| been flown home to ||| 1 0.229811 1.49697e-06 2.612e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| been forced ||| 0.0123457 0.0684932 1.49697e-06 9.29633e-07 2.718 ||| 0-1 ||| 81 668016 +a ||| been given ||| 0.014881 0.0371011 7.48485e-06 3.52953e-06 2.718 ||| 0-1 ||| 336 668016 +a ||| been going on ||| 0.012987 0.0782999 1.49697e-06 1.08408e-07 2.718 ||| 0-2 ||| 77 668016 +a ||| been granted to ||| 0.125 0.229811 1.49697e-06 9.47479e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| been granted ||| 0.0121951 0.0210892 1.49697e-06 2.40756e-07 2.718 ||| 0-1 ||| 82 668016 +a ||| been hearing from many ||| 0.166667 0.0435582 1.49697e-06 2.17036e-13 2.718 ||| 0-2 ||| 6 668016 +a ||| been hearing from ||| 0.166667 0.0435582 1.49697e-06 6.32206e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| been helping ||| 0.142857 0.302272 1.49697e-06 3.97432e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| been here up until ||| 1 0.0268909 1.49697e-06 5.29067e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| been highlighted by ||| 0.0769231 0.0337966 1.49697e-06 5.5496e-10 2.718 ||| 0-2 ||| 13 668016 +a ||| been in place ||| 0.0307692 0.0587624 2.99394e-06 3.01944e-07 2.718 ||| 0-1 ||| 65 668016 +a ||| been in the past ||| 0.0208333 0.0587624 1.49697e-06 1.57779e-09 2.718 ||| 0-1 ||| 48 668016 +a ||| been in the ||| 0.00645161 0.0587624 1.49697e-06 1.23169e-05 2.718 ||| 0-1 ||| 155 668016 +a ||| been in ||| 0.0109769 0.0587624 1.49697e-05 0.000200627 2.718 ||| 0-1 ||| 911 668016 +a ||| been increased to ||| 0.25 0.229811 1.49697e-06 5.81354e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| been instructed ||| 0.0769231 0.196787 1.49697e-06 1.49262e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| been instrumental in ||| 0.0384615 0.0587624 1.49697e-06 5.8182e-10 2.718 ||| 0-2 ||| 26 668016 +a ||| been invited to ||| 0.0232558 0.229811 1.49697e-06 7.60323e-09 2.718 ||| 0-2 ||| 43 668016 +a ||| been involved with ||| 0.125 0.0571592 1.49697e-06 1.92778e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| been killed ||| 0.00694444 0.102431 1.49697e-06 5.39615e-07 2.718 ||| 0-1 ||| 144 668016 +a ||| been known to ||| 0.0909091 0.229811 1.49697e-06 1.28787e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| been landing on ||| 0.5 0.0782999 1.49697e-06 6.84043e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| been largely due to ||| 0.333333 0.229811 1.49697e-06 1.05723e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| been left behind ||| 0.25 0.0923313 1.49697e-06 4.85949e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| been left to ||| 0.0714286 0.229811 1.49697e-06 2.20961e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| been lodged against ||| 1 0.05146 1.49697e-06 3.12489e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| been made and ||| 0.0588235 0.0015873 1.49697e-06 1.34968e-08 2.718 ||| 0-2 ||| 17 668016 +a ||| been made at ||| 0.142857 0.204175 1.49697e-06 2.38076e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| been made down through ||| 0.5 0.230708 1.49697e-06 3.88169e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| been made for representatives of ||| 0.5 0.0683377 1.49697e-06 4.54006e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| been made for representatives ||| 0.5 0.0683377 1.49697e-06 8.35122e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| been made for ||| 0.08 0.0683377 2.99394e-06 2.57754e-07 2.718 ||| 0-2 ||| 25 668016 +a ||| been made on the ||| 0.111111 0.0782999 1.49697e-06 1.62908e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| been made on your side ||| 1 0.0782999 1.49697e-06 1.48848e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| been made on your ||| 1 0.0782999 1.49697e-06 6.79051e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| been made on ||| 0.117647 0.0782999 2.99394e-06 2.65358e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| been made to ||| 0.0416667 0.229811 2.99394e-06 2.45034e-06 2.718 ||| 0-2 ||| 48 668016 +a ||| been made towards ||| 0.333333 0.155507 1.49697e-06 2.35912e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| been notified in ||| 1 0.105991 1.49697e-06 3.0019e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| been notified ||| 0.0416667 0.105991 1.49697e-06 1.40246e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| been on the table ||| 0.0769231 0.0782999 1.49697e-06 5.26488e-10 2.718 ||| 0-1 ||| 13 668016 +a ||| been on the ||| 0.019802 0.0782999 2.99394e-06 7.77678e-06 2.718 ||| 0-1 ||| 101 668016 +a ||| been on ||| 0.0228571 0.0782999 5.98788e-06 0.000126675 2.718 ||| 0-1 ||| 175 668016 +a ||| been passed on to ||| 0.25 0.154056 1.49697e-06 3.1772e-09 2.718 ||| 0-2 0-3 ||| 4 668016 +a ||| been pioneers in ||| 0.25 0.0587624 1.49697e-06 8.0251e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| been poised to send out ||| 1 0.229811 1.49697e-06 6.348e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| been poised to send ||| 1 0.229811 1.49697e-06 1.65727e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| been poised to ||| 1 0.229811 1.49697e-06 2.5734e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| been possible for ||| 0.030303 0.0683377 1.49697e-06 9.8694e-08 2.718 ||| 0-2 ||| 33 668016 +a ||| been prepared to ||| 0.0204082 0.229811 1.49697e-06 1.01415e-07 2.718 ||| 0-2 ||| 49 668016 +a ||| been put forward on ||| 0.166667 0.0782999 1.49697e-06 7.77131e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| been put in by ||| 0.5 0.0462795 1.49697e-06 1.82002e-09 2.718 ||| 0-2 0-3 ||| 2 668016 +a ||| been put in place at ||| 0.5 0.204175 1.49697e-06 4.03676e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| been put on ||| 0.0333333 0.0782999 1.49697e-06 1.39671e-07 2.718 ||| 0-2 ||| 30 668016 +a ||| been put to ||| 0.03125 0.229811 1.49697e-06 1.28974e-06 2.718 ||| 0-2 ||| 32 668016 +a ||| been reached when any solution to ||| 1 0.229811 1.49697e-06 6.49396e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| been reached ||| 0.015625 0.14487 2.99394e-06 4.10555e-06 2.718 ||| 0-1 ||| 128 668016 +a ||| been reduced by ||| 0.0714286 0.0337966 1.49697e-06 1.28575e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| been referred back to ||| 0.25 0.229811 1.49697e-06 7.52928e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| been replicated in ||| 0.25 0.0587624 1.49697e-06 8.0251e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| been responsible for ||| 0.0140845 0.0683377 1.49697e-06 1.81983e-08 2.718 ||| 0-2 ||| 71 668016 +a ||| been restricted to ||| 0.2 0.229811 1.49697e-06 1.84817e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| been returned to ||| 0.0769231 0.229811 1.49697e-06 1.55574e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| been said before : ||| 1 0.0203282 1.49697e-06 2.45298e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| been said before ||| 0.1 0.0203282 1.49697e-06 7.28321e-10 2.718 ||| 0-2 ||| 10 668016 +a ||| been shown to ||| 0.0526316 0.229811 1.49697e-06 1.2212e-07 2.718 ||| 0-2 ||| 19 668016 +a ||| been sitting for ||| 1 0.0683377 1.49697e-06 8.55159e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| been spoken to ||| 0.5 0.229811 1.49697e-06 2.60849e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| been struck by ||| 0.0769231 0.0337966 1.49697e-06 7.03316e-10 2.718 ||| 0-2 ||| 13 668016 +a ||| been substituted without the ||| 1 0.0015466 1.49697e-06 3.37019e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| been substituted without ||| 1 0.0015466 1.49697e-06 5.48964e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| been supporting ||| 0.037037 0.190621 1.49697e-06 3.82806e-06 2.718 ||| 0-1 ||| 27 668016 +a ||| been tabled either on ||| 0.5 0.0782999 1.49697e-06 8.96043e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| been taken at ||| 0.5 0.204175 1.49697e-06 1.03593e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| been taken in the ||| 0.166667 0.0587624 1.49697e-06 1.12268e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| been taken in ||| 0.125 0.0587624 2.99394e-06 1.82872e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| been taken over by Josu ||| 1 0.0682544 1.49697e-06 1.48476e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| been taken over by ||| 0.418605 0.0682544 2.69455e-05 3.71191e-11 2.718 ||| 0-2 ||| 43 668016 +a ||| been taken over ||| 0.472222 0.0682544 5.0897e-05 7.07017e-09 2.718 ||| 0-2 ||| 72 668016 +a ||| been tested ||| 0.0344828 0.143456 2.99394e-06 4.174e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| been the subject of complaint to ||| 1 0.229811 1.49697e-06 1.74911e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| been to date , ||| 0.25 0.229811 1.49697e-06 1.42564e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| been to date ||| 0.047619 0.229811 1.49697e-06 1.19546e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| been to discredit ||| 1 0.229811 1.49697e-06 2.5734e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| been to prevent ||| 0.2 0.229811 1.49697e-06 5.97731e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| been to seek to ||| 0.5 0.229811 1.49697e-06 7.22382e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| been to ||| 0.0246914 0.229811 1.49697e-05 0.00116973 2.718 ||| 0-1 ||| 405 668016 +a ||| been transferred to ||| 0.111111 0.229811 1.49697e-06 2.52661e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| been undertaking schemes involving the composting ||| 1 0.102511 1.49697e-06 2.62287e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| been undertaking schemes involving the ||| 1 0.102511 1.49697e-06 6.55718e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| been undertaking schemes involving ||| 1 0.102511 1.49697e-06 1.06809e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| been used to produce it ||| 0.333333 0.229811 1.49697e-06 7.8976e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| been used to produce ||| 0.333333 0.229811 1.49697e-06 4.44104e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| been used to ||| 0.0810811 0.229811 4.49091e-06 5.01813e-07 2.718 ||| 0-2 ||| 37 668016 +a ||| been wanting to ||| 0.5 0.229811 1.49697e-06 1.7312e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| been warning of ||| 0.125 0.0188479 1.49697e-06 1.38276e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| been wearing thin of late ||| 0.333333 0.0188479 1.49697e-06 1.71326e-19 2.718 ||| 0-3 ||| 3 668016 +a ||| been wearing thin of ||| 0.333333 0.0188479 1.49697e-06 5.40461e-15 2.718 ||| 0-3 ||| 3 668016 +a ||| before , ||| 0.00235018 0.0203282 2.99394e-06 6.32408e-05 2.718 ||| 0-0 ||| 851 668016 +a ||| before : ||| 0.025 0.0203282 1.49697e-06 1.78605e-07 2.718 ||| 0-0 ||| 40 668016 +a ||| before a ||| 0.012931 0.0203282 4.49091e-06 2.3506e-05 2.718 ||| 0-0 ||| 232 668016 +a ||| before it , to ||| 1 0.229811 1.49697e-06 1.85798e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| before it can ||| 0.0232558 0.0203282 1.49697e-06 2.80489e-08 2.718 ||| 0-0 ||| 43 668016 +a ||| before it is too ||| 0.012987 0.0006453 1.49697e-06 3.16415e-12 2.718 ||| 0-1 ||| 77 668016 +a ||| before it is ||| 0.00537634 0.0006453 1.49697e-06 2.32487e-09 2.718 ||| 0-1 ||| 186 668016 +a ||| before it ||| 0.00740741 0.0203282 5.98788e-06 9.43043e-06 2.718 ||| 0-0 ||| 540 668016 +a ||| before our very eyes , and ||| 0.25 0.0015873 1.49697e-06 1.61031e-17 2.718 ||| 0-5 ||| 4 668016 +a ||| before solidarity with ||| 1 0.0571592 1.49697e-06 1.09814e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| before that ||| 0.00425532 0.0203282 1.49697e-06 8.92049e-06 2.718 ||| 0-0 ||| 235 668016 +a ||| before the courts ||| 0.0120482 0.0203282 1.49697e-06 3.87417e-10 2.718 ||| 0-0 ||| 83 668016 +a ||| before the horse ||| 0.0322581 0.0203282 1.49697e-06 1.6278e-10 2.718 ||| 0-0 ||| 31 668016 +a ||| before the national ||| 0.5 0.0203282 1.49697e-06 4.18346e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| before the ||| 0.000818331 0.0203282 7.48485e-06 3.25561e-05 2.718 ||| 0-0 ||| 6110 668016 +a ||| before then to ||| 1 0.229811 1.49697e-06 1.41088e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| before these ||| 0.03125 0.0203282 1.49697e-06 5.49974e-07 2.718 ||| 0-0 ||| 32 668016 +a ||| before they have even started ||| 1 0.0495435 1.49697e-06 8.57371e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| before they have even ||| 0.25 0.0495435 1.49697e-06 1.90527e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| before they ||| 0.00263158 0.0203282 1.49697e-06 1.7309e-06 2.718 ||| 0-0 ||| 380 668016 +a ||| before to ||| 0.0263158 0.0203282 1.49697e-06 4.71215e-05 2.718 ||| 0-0 ||| 38 668016 +a ||| before us at ||| 0.0666667 0.204175 1.49697e-06 2.4534e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| before us ||| 0.000363901 0.0203282 1.49697e-06 1.52843e-06 2.718 ||| 0-0 ||| 2748 668016 +a ||| before we hold ||| 0.25 0.0203282 1.49697e-06 1.04871e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| before we ||| 0.0019084 0.0203282 2.99394e-06 6.02012e-06 2.718 ||| 0-0 ||| 1048 668016 +a ||| before which ||| 0.0769231 0.0203282 1.49697e-06 4.50469e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| before yesterday ||| 0.0454545 0.0203282 1.49697e-06 1.26211e-08 2.718 ||| 0-0 ||| 22 668016 +a ||| before ||| 0.00560329 0.0203282 0.000314364 0.0005303 2.718 ||| 0-0 ||| 37478 668016 +a ||| beg to ||| 0.125 0.229811 2.99394e-06 1.26109e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| began to ||| 0.00534759 0.229811 1.49697e-06 5.28955e-06 2.718 ||| 0-1 ||| 187 668016 +a ||| began with ||| 0.00990099 0.0571592 1.49697e-06 2.52096e-07 2.718 ||| 0-1 ||| 101 668016 +a ||| begin at ||| 0.027027 0.204175 1.49697e-06 2.00809e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| begin by ||| 0.00235571 0.0337966 2.99394e-06 4.85423e-07 2.718 ||| 0-1 ||| 849 668016 +a ||| begin putting in place ||| 1 0.0587624 1.49697e-06 5.96989e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| begin putting in ||| 1 0.0587624 1.49697e-06 3.96671e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| begin to give ||| 0.333333 0.229811 1.49697e-06 1.25247e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| begin to show up ||| 0.5 0.229811 1.49697e-06 9.43828e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| begin to show ||| 0.166667 0.229811 1.49697e-06 2.76742e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| begin to take ||| 0.0526316 0.229811 1.49697e-06 3.32751e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| begin to ||| 0.0136187 0.229811 1.04788e-05 2.06678e-05 2.718 ||| 0-1 ||| 514 668016 +a ||| begin with ||| 0.00191939 0.0571592 1.49697e-06 9.85011e-07 2.718 ||| 0-1 ||| 521 668016 +a ||| beginning of ||| 0.000486855 0.0188479 1.49697e-06 1.20384e-06 2.718 ||| 0-1 ||| 2054 668016 +a ||| beginning to be ||| 0.0434783 0.229811 1.49697e-06 2.58383e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| beginning to ||| 0.0137525 0.229811 1.04788e-05 1.42573e-05 2.718 ||| 0-1 ||| 509 668016 +a ||| begun to cooperate ||| 0.125 0.229811 1.49697e-06 3.97242e-11 2.718 ||| 0-1 ||| 8 668016 +a ||| begun to ||| 0.0107914 0.229811 4.49091e-06 4.4138e-06 2.718 ||| 0-1 ||| 278 668016 +a ||| begun ||| 0.000744602 0.0006854 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1343 668016 +a ||| behalf in ||| 0.0666667 0.0587624 1.49697e-06 1.91363e-05 2.718 ||| 0-1 ||| 15 668016 +a ||| behalf of the EFD Group . - ||| 0.00613497 0.0188479 1.49697e-06 5.37406e-21 2.718 ||| 0-1 ||| 163 668016 +a ||| behalf of the EFD Group . ||| 0.00613497 0.0188479 1.49697e-06 1.42469e-18 2.718 ||| 0-1 ||| 163 668016 +a ||| behalf of the EFD Group ||| 0.00595238 0.0188479 1.49697e-06 4.70349e-16 2.718 ||| 0-1 ||| 168 668016 +a ||| behalf of the EFD ||| 0.333333 0.0188479 1.49697e-06 1.44589e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| behalf of the ||| 0.000143462 0.0188479 2.99394e-06 5.78357e-07 2.718 ||| 0-1 ||| 13941 668016 +a ||| behalf of ||| 0.00108792 0.0188479 1.64667e-05 9.42075e-06 2.718 ||| 0-1 ||| 10111 668016 +a ||| behalf on ||| 0.111111 0.0782999 1.49697e-06 1.20825e-05 2.718 ||| 0-1 ||| 9 668016 +a ||| behaved towards ||| 0.5 0.155507 1.49697e-06 4.72164e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| behaving in ||| 0.0344828 0.0587624 1.49697e-06 2.58355e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| behaviour to ||| 0.0625 0.229811 1.49697e-06 8.96772e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| behind , ||| 0.0142857 0.0923313 1.49697e-06 9.18738e-05 2.718 ||| 0-0 ||| 70 668016 +a ||| behind and ||| 0.0196078 0.0923313 1.49697e-06 9.64995e-06 2.718 ||| 0-0 ||| 51 668016 +a ||| behind bars ||| 0.0333333 0.0923313 1.49697e-06 1.926e-09 2.718 ||| 0-0 ||| 30 668016 +a ||| behind closed ||| 0.0344828 0.0923313 1.49697e-06 4.46062e-08 2.718 ||| 0-0 ||| 29 668016 +a ||| behind diplomatic initiatives ||| 1 0.0923313 1.49697e-06 1.14782e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| behind diplomatic ||| 1 0.0923313 1.49697e-06 3.62088e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| behind in ||| 0.0172414 0.0755468 2.99394e-06 4.62876e-05 2.718 ||| 0-0 0-1 ||| 116 668016 +a ||| behind the ||| 0.0144049 0.0923313 2.84424e-05 4.72962e-05 2.718 ||| 0-0 ||| 1319 668016 +a ||| behind their backs ||| 0.0666667 0.0923313 1.49697e-06 7.05447e-12 2.718 ||| 0-0 ||| 15 668016 +a ||| behind their ||| 0.0222222 0.0923313 1.49697e-06 8.92971e-07 2.718 ||| 0-0 ||| 45 668016 +a ||| behind them ||| 0.00970874 0.0923313 1.49697e-06 2.06652e-06 2.718 ||| 0-0 ||| 103 668016 +a ||| behind us ||| 0.0121951 0.0923313 2.99394e-06 2.22045e-06 2.718 ||| 0-0 ||| 164 668016 +a ||| behind ||| 0.0612204 0.0923313 0.000461067 0.0007704 2.718 ||| 0-0 ||| 5031 668016 +a ||| being able to call on ||| 1 0.0782999 1.49697e-06 1.77802e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| being able to continue ||| 0.2 0.229811 1.49697e-06 1.92595e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| being able to make ||| 0.0714286 0.229811 1.49697e-06 1.44637e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| being able to move ||| 0.166667 0.229811 1.49697e-06 1.27259e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| being able to vote ||| 0.1 0.229811 1.49697e-06 1.30921e-10 2.718 ||| 0-2 ||| 10 668016 +a ||| being able to ||| 0.0162907 0.229811 1.94606e-05 8.32302e-07 2.718 ||| 0-2 ||| 798 668016 +a ||| being accorded to ||| 1 0.229811 1.49697e-06 1.47539e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| being accorded ||| 0.111111 0.0718447 1.49697e-06 9.6188e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| being accused ||| 0.0163934 0.100079 1.49697e-06 3.27267e-07 2.718 ||| 0-1 ||| 61 668016 +a ||| being acted out in ||| 1 0.0587624 1.49697e-06 1.27057e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| being admitted to ||| 0.166667 0.229811 1.49697e-06 8.27417e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| being adopted at ||| 0.333333 0.204175 1.49697e-06 1.9759e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| being advanced as a ||| 0.5 0.0243476 1.49697e-06 1.63773e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| being advanced as ||| 1 0.0243476 1.49697e-06 3.69475e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| being aimed at ||| 0.25 0.204175 1.49697e-06 6.73163e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| being allowed to ||| 0.0192308 0.229811 1.49697e-06 1.61396e-07 2.718 ||| 0-2 ||| 52 668016 +a ||| being appropriated for ||| 1 0.0683377 1.49697e-06 2.62159e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| being asked to ||| 0.0133333 0.229811 1.49697e-06 7.53648e-08 2.718 ||| 0-2 ||| 75 668016 +a ||| being at a ||| 0.2 0.204175 1.49697e-06 4.29331e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| being at ||| 0.0454545 0.204175 4.49091e-06 9.68579e-05 2.718 ||| 0-1 ||| 66 668016 +a ||| being awarded ||| 0.0434783 0.0013812 1.49697e-06 2.56122e-09 2.718 ||| 0-1 ||| 23 668016 +a ||| being brought to a ||| 0.25 0.229811 1.49697e-06 1.23726e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| being brought to bear upon ||| 0.5 0.19056 1.49697e-06 2.08967e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| being brought to ||| 0.0555556 0.229811 1.49697e-06 2.79129e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| being brought up to the ||| 1 0.229811 1.49697e-06 5.84431e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| being brought up to ||| 0.5 0.229811 1.49697e-06 9.51969e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| being brought ||| 0.020202 0.0182841 2.99394e-06 3.37796e-07 2.718 ||| 0-1 ||| 99 668016 +a ||| being carried out on them ||| 0.25 0.0782999 1.49697e-06 3.26888e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| being carried out on ||| 0.166667 0.0782999 2.99394e-06 1.21864e-10 2.718 ||| 0-3 ||| 12 668016 +a ||| being charged by the forces of law ||| 1 0.0337966 1.49697e-06 1.20979e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| being charged by the forces of ||| 1 0.0337966 1.49697e-06 6.86211e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| being charged by the forces ||| 1 0.0337966 1.49697e-06 1.26225e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| being charged by the ||| 0.5 0.0337966 1.49697e-06 2.38611e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| being charged by ||| 0.5 0.0337966 1.49697e-06 3.88669e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| being close to ||| 0.2 0.229811 1.49697e-06 1.47839e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| being complied with ||| 0.0333333 0.0571592 1.49697e-06 8.02934e-10 2.718 ||| 0-2 ||| 30 668016 +a ||| being conducted in ||| 0.0454545 0.0587624 1.49697e-06 1.03445e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| being conducted on ||| 0.2 0.0782999 1.49697e-06 6.53141e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| being conducted with a view to converting ||| 1 0.229811 1.49697e-06 3.39719e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| being conducted with a view to ||| 1 0.229811 1.49697e-06 1.54418e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| being cover ||| 1 0.0050378 1.49697e-06 4.66711e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| being defended as ||| 1 0.0243476 1.49697e-06 8.98722e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| being deliberately worded in ||| 1 0.0587624 1.49697e-06 9.54084e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| being denied to ||| 0.5 0.229811 1.49697e-06 1.5053e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| being devoted to ||| 0.142857 0.229811 1.49697e-06 2.04362e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| being difficult over ||| 0.5 0.0682544 1.49697e-06 8.21025e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| being directed specially at ||| 1 0.204175 1.49697e-06 8.7918e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| being displayed as ||| 1 0.0243476 1.49697e-06 4.39375e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| being disrupted in ||| 0.5 0.0587624 1.49697e-06 3.07769e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| being done into ||| 1 0.107578 1.49697e-06 7.88253e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| being driven to ||| 0.25 0.229811 1.49697e-06 2.94082e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| being earmarked for ||| 0.333333 0.0683377 2.99394e-06 1.09058e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| being empowered to ||| 0.5 0.229811 1.49697e-06 1.7944e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| being expected of ||| 1 0.0188479 1.49697e-06 4.4865e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| being fired off on the ||| 0.5 0.0782999 1.49697e-06 1.15991e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| being fired off on ||| 0.5 0.0782999 1.49697e-06 1.88936e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| being focused on ||| 0.5 0.0782999 1.49697e-06 2.40744e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| being forced to vote ||| 0.5 0.229811 1.49697e-06 1.10551e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| being forced to ||| 0.0119048 0.229811 1.49697e-06 7.02806e-08 2.718 ||| 0-2 ||| 84 668016 +a ||| being fully aware of Parliament 's recommendations ||| 1 0.0188479 1.49697e-06 1.40585e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| being fully aware of Parliament 's ||| 1 0.0188479 1.49697e-06 1.44933e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| being fully aware of Parliament ||| 1 0.0188479 1.49697e-06 7.6104e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| being fully aware of ||| 0.111111 0.0188479 1.49697e-06 1.32585e-12 2.718 ||| 0-3 ||| 9 668016 +a ||| being given over to ||| 1 0.229811 1.49697e-06 3.29425e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| being given priority over ||| 0.5 0.0682544 1.49697e-06 2.53153e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| being given to any ||| 0.5 0.229811 1.49697e-06 1.03459e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| being given to ||| 0.153846 0.229811 1.49697e-05 6.84164e-07 2.718 ||| 0-2 ||| 65 668016 +a ||| being given ||| 0.0116959 0.0371011 5.98788e-06 3.00801e-06 2.718 ||| 0-1 ||| 342 668016 +a ||| being granted to ||| 0.222222 0.229811 2.99394e-06 8.0748e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| being guided by ||| 0.111111 0.0337966 1.49697e-06 2.69259e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| being handed out to ||| 1 0.229811 1.49697e-06 1.17991e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| being held in Guantánamo together ||| 1 0.0587624 1.49697e-06 3.66755e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| being held in Guantánamo ||| 1 0.0587624 1.49697e-06 6.10648e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| being held in ||| 0.0273973 0.0587624 2.99394e-06 4.36177e-08 2.718 ||| 0-2 ||| 73 668016 +a ||| being held over ||| 0.333333 0.0682544 1.49697e-06 1.68634e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| being held to ransom by ||| 0.333333 0.229811 1.49697e-06 3.33783e-15 2.718 ||| 0-2 ||| 3 668016 +a ||| being held to ransom ||| 0.25 0.229811 1.49697e-06 6.35766e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| being held to ||| 0.333333 0.229811 1.49697e-06 2.54306e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| being imposed on ||| 0.0434783 0.0782999 1.49697e-06 6.02401e-09 2.718 ||| 0-2 ||| 23 668016 +a ||| being in a ||| 0.027027 0.0587624 1.49697e-06 7.57895e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| being in conflict ||| 0.333333 0.0587624 1.49697e-06 7.12998e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| being in ||| 0.0160772 0.0587624 7.48485e-06 0.000170983 2.718 ||| 0-1 ||| 311 668016 +a ||| being inflicted on ||| 0.5 0.0782999 1.49697e-06 7.34108e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| being informed of ||| 0.111111 0.0188479 1.49697e-06 2.51682e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| being interrogated ||| 0.166667 0.0645161 1.49697e-06 5.12244e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| being invited to ||| 0.142857 0.229811 1.49697e-06 6.47977e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| being invited ||| 0.05 0.245853 1.49697e-06 1.07799e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| being involved in ||| 0.0178571 0.0587624 1.49697e-06 5.91258e-08 2.718 ||| 0-2 ||| 56 668016 +a ||| being kept in the ||| 0.25 0.0587624 1.49697e-06 7.48432e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| being kept in ||| 0.0909091 0.0587624 1.49697e-06 1.21911e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| being kicked in the head , ||| 1 0.0587624 1.49697e-06 9.95564e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| being kicked in the head ||| 1 0.0587624 1.49697e-06 8.34822e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| being kicked in the ||| 1 0.0587624 1.49697e-06 1.15466e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| being kicked in ||| 1 0.0587624 1.49697e-06 1.88081e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| being left to ||| 0.0689655 0.229811 2.99394e-06 1.88312e-07 2.718 ||| 0-2 ||| 29 668016 +a ||| being located in ||| 0.142857 0.0587624 1.49697e-06 4.24037e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| being made at ||| 0.0769231 0.204175 1.49697e-06 2.02898e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| being made available to ||| 0.0555556 0.229811 1.49697e-06 6.64282e-10 2.718 ||| 0-3 ||| 18 668016 +a ||| being made for ||| 0.0666667 0.0683377 1.49697e-06 2.19668e-07 2.718 ||| 0-2 ||| 15 668016 +a ||| being made in ||| 0.0277778 0.0587624 2.99394e-06 3.58175e-07 2.718 ||| 0-2 ||| 72 668016 +a ||| being made into something ||| 1 0.107578 1.49697e-06 2.00429e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| being made into ||| 0.25 0.107578 1.49697e-06 3.62112e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| being made of ||| 0.0714286 0.0188479 1.49697e-06 1.76329e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| being made to ||| 0.032967 0.229811 4.49091e-06 2.08828e-06 2.718 ||| 0-2 ||| 91 668016 +a ||| being made via ||| 0.333333 0.330861 1.49697e-06 8.25413e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| being made ||| 0.0013624 0.0010112 1.49697e-06 1.18566e-07 2.718 ||| 0-0 ||| 734 668016 +a ||| being neglected for ||| 0.5 0.0683377 1.49697e-06 3.77508e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| being offered to ||| 0.181818 0.229811 2.99394e-06 4.33646e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| being on the ||| 0.0344828 0.0782999 1.49697e-06 6.62768e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| being on ||| 0.0126582 0.0782999 1.49697e-06 0.000107957 2.718 ||| 0-1 ||| 79 668016 +a ||| being owed to ||| 1 0.229811 1.49697e-06 5.78195e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| being paid for ||| 0.0909091 0.0683377 1.49697e-06 1.41146e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| being paid to ||| 0.282051 0.229811 1.64667e-05 1.34181e-07 2.718 ||| 0-2 ||| 39 668016 +a ||| being passed on , ||| 0.5 0.0782999 1.49697e-06 9.21807e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| being passed on ||| 0.0869565 0.0782999 2.99394e-06 7.72973e-09 2.718 ||| 0-2 ||| 23 668016 +a ||| being prepared for ||| 0.111111 0.0683377 1.49697e-06 9.09166e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| being prepared in ||| 0.1 0.0587624 1.49697e-06 1.48242e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| being prepared to ||| 0.0344828 0.229811 1.49697e-06 8.64302e-08 2.718 ||| 0-2 ||| 29 668016 +a ||| being promoted to ||| 1 0.229811 1.49697e-06 2.19315e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| being pursued for ||| 0.333333 0.0683377 1.49697e-06 3.84849e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| being put forward , for ||| 1 0.0683377 1.49697e-06 7.67193e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| being put in a ||| 0.333333 0.0587624 1.49697e-06 8.35655e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| being put in jeopardy ||| 0.5 0.0587624 1.49697e-06 6.03282e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| being put in ||| 0.0652174 0.0587624 4.49091e-06 1.88526e-07 2.718 ||| 0-2 ||| 46 668016 +a ||| being put into ||| 0.0333333 0.107578 1.49697e-06 1.90598e-08 2.718 ||| 0-2 ||| 30 668016 +a ||| being put on ||| 0.0294118 0.0782999 1.49697e-06 1.19034e-07 2.718 ||| 0-2 ||| 34 668016 +a ||| being put through our ||| 1 0.230708 1.49697e-06 3.44057e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| being put through ||| 0.333333 0.230708 1.49697e-06 2.49425e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| being put to the ||| 0.030303 0.229811 1.49697e-06 6.748e-08 2.718 ||| 0-2 ||| 33 668016 +a ||| being put to ||| 0.04 0.229811 2.99394e-06 1.09917e-06 2.718 ||| 0-2 ||| 50 668016 +a ||| being recognised just as much on ||| 1 0.0782999 1.49697e-06 3.36214e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| being recorded in ||| 0.111111 0.0587624 1.49697e-06 3.57354e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| being reflected in ||| 0.0666667 0.0587624 1.49697e-06 3.45385e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| being released on to ||| 0.25 0.0782999 1.49697e-06 1.86102e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| being released on ||| 0.2 0.0782999 1.49697e-06 2.09437e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| being reluctant to conclude ||| 1 0.229811 1.49697e-06 7.688e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| being reluctant to ||| 1 0.229811 1.49697e-06 3.19004e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| being replaced by ||| 0.027027 0.0337966 1.49697e-06 4.30814e-10 2.718 ||| 0-2 ||| 37 668016 +a ||| being robbed ||| 0.5 0.123595 1.49697e-06 2.8458e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| being routed alongside ||| 0.5 0.155101 1.49697e-06 7.43636e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| being shown for ||| 0.333333 0.0683377 1.49697e-06 1.09477e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| being socially ||| 0.25 0.0010112 1.49697e-06 2.83e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| being sold at ||| 0.333333 0.204175 1.49697e-06 1.35601e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| being sold off to ||| 0.142857 0.229811 1.49697e-06 5.68027e-12 2.718 ||| 0-3 ||| 7 668016 +a ||| being subordinated to ||| 0.166667 0.229811 1.49697e-06 1.09658e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| being taken at ||| 0.111111 0.204175 1.49697e-06 8.8286e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| being taken by ||| 0.0140845 0.0337966 1.49697e-06 2.13417e-08 2.718 ||| 0-2 ||| 71 668016 +a ||| being taken on ||| 0.1 0.0782999 2.99394e-06 9.84029e-08 2.718 ||| 0-2 ||| 20 668016 +a ||| being the case , ||| 0.00584795 0.0004654 1.49697e-06 5.56447e-10 2.718 ||| 0-1 ||| 171 668016 +a ||| being the case ||| 0.00471698 0.0004654 1.49697e-06 4.66604e-09 2.718 ||| 0-1 ||| 212 668016 +a ||| being the ||| 0.00111982 0.0004654 1.49697e-06 4.36119e-06 2.718 ||| 0-1 ||| 893 668016 +a ||| being thrown at ||| 1 0.204175 1.49697e-06 2.68296e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| being to ||| 0.0588235 0.229811 1.04788e-05 0.000996888 2.718 ||| 0-1 ||| 119 668016 +a ||| being towards ||| 0.333333 0.155507 1.49697e-06 9.59775e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| being transferred to ||| 0.0294118 0.229811 1.49697e-06 2.15328e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| being treated in the same way ||| 0.25 0.0587624 1.49697e-06 9.887e-16 2.718 ||| 0-2 ||| 4 668016 +a ||| being treated in the same ||| 0.25 0.0587624 1.49697e-06 4.58666e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| being treated in the ||| 0.25 0.0587624 1.49697e-06 5.69984e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| being treated in ||| 0.0588235 0.0587624 1.49697e-06 9.28436e-09 2.718 ||| 0-2 ||| 17 668016 +a ||| being treated ||| 0.00840336 0.016092 1.49697e-06 1.27207e-07 2.718 ||| 0-1 ||| 119 668016 +a ||| being urged to ||| 0.1 0.274464 1.49697e-06 3.8121e-07 2.718 ||| 0-1 0-2 ||| 10 668016 +a ||| being used against ||| 0.2 0.05146 1.49697e-06 3.17359e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| being used by ||| 0.0172414 0.0337966 1.49697e-06 1.00445e-08 2.718 ||| 0-2 ||| 58 668016 +a ||| being used to justify the ||| 1 0.229811 1.49697e-06 4.25333e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| being used to justify ||| 0.2 0.229811 1.49697e-06 6.92817e-12 2.718 ||| 0-2 ||| 5 668016 +a ||| being used to ||| 0.0428571 0.229811 8.98182e-06 4.27665e-07 2.718 ||| 0-2 ||| 140 668016 +a ||| being used up in ||| 1 0.0587624 1.49697e-06 2.50166e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| being ||| 0.000719424 0.0010112 2.99394e-05 5.66e-05 2.718 ||| 0-0 ||| 27800 668016 +a ||| belief in an ||| 0.333333 0.0587624 1.49697e-06 7.1035e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| belief in ||| 0.00588235 0.0587624 1.49697e-06 1.59819e-06 2.718 ||| 0-1 ||| 170 668016 +a ||| believe , has to ||| 1 0.229811 1.49697e-06 6.69411e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| believe , reassure Mrs Torres ||| 1 0.284916 1.49697e-06 6.79359e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| believe , reassure Mrs ||| 1 0.284916 1.49697e-06 9.70513e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| believe , reassure ||| 1 0.284916 1.49697e-06 1.03687e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| believe , to ||| 0.0555556 0.229811 1.49697e-06 1.30046e-05 2.718 ||| 0-2 ||| 18 668016 +a ||| believe in ||| 0.00200803 0.0587624 1.49697e-06 1.87037e-05 2.718 ||| 0-1 ||| 498 668016 +a ||| believe that if ||| 0.0227273 0.0014881 1.49697e-06 6.78659e-10 2.718 ||| 0-2 ||| 44 668016 +a ||| believe that it went much further ||| 1 0.0003879 1.49697e-06 5.95387e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| believe that ||| 0.00015108 0.0008521 1.49697e-06 2.12525e-07 2.718 ||| 0-1 ||| 6619 668016 +a ||| believe we must continue to back ||| 0.25 0.229811 1.49697e-06 2.97798e-16 2.718 ||| 0-4 ||| 4 668016 +a ||| believe we must continue to ||| 0.25 0.229811 1.49697e-06 4.42757e-13 2.718 ||| 0-4 ||| 4 668016 +a ||| believed to be unchangeable ||| 1 0.229811 1.49697e-06 2.84412e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| believed to be ||| 0.0465116 0.229811 2.99394e-06 7.1103e-08 2.718 ||| 0-1 ||| 43 668016 +a ||| believed to ||| 0.031746 0.229811 2.99394e-06 3.92338e-06 2.718 ||| 0-1 ||| 63 668016 +a ||| belong in ||| 0.00826446 0.0587624 1.49697e-06 1.73038e-06 2.718 ||| 0-1 ||| 121 668016 +a ||| belong to the ||| 0.00289855 0.229811 1.49697e-06 6.19363e-07 2.718 ||| 0-1 ||| 345 668016 +a ||| belong to them ||| 0.111111 0.229811 1.49697e-06 2.70619e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| belong to ||| 0.0132939 0.229811 1.34727e-05 1.00887e-05 2.718 ||| 0-1 ||| 677 668016 +a ||| belonged to ||| 0.0333333 0.229811 2.99394e-06 8.75754e-07 2.718 ||| 0-1 ||| 60 668016 +a ||| belonging to every grouping in ||| 1 0.0587624 1.49697e-06 4.22152e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| belonging to one ||| 0.125 0.229811 1.49697e-06 3.94215e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| belonging to one ’ s ||| 1 0.229811 1.49697e-06 1.30643e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| belonging to one ’ ||| 1 0.229811 1.49697e-06 6.86763e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| belonging to the ||| 0.00319489 0.229811 1.49697e-06 5.80652e-07 2.718 ||| 0-1 ||| 313 668016 +a ||| belonging to ||| 0.0100287 0.229811 1.04788e-05 9.45814e-06 2.718 ||| 0-1 ||| 698 668016 +a ||| belongs to ||| 0.00334448 0.229811 1.49697e-06 5.28955e-06 2.718 ||| 0-1 ||| 299 668016 +a ||| below ||| 0.00210637 0.0371573 5.98788e-06 9.4e-05 2.718 ||| 0-0 ||| 1899 668016 +a ||| beneficial for ||| 0.00653595 0.0683377 1.49697e-06 3.83224e-07 2.718 ||| 0-1 ||| 153 668016 +a ||| beneficial to ||| 0.00315457 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-1 ||| 317 668016 +a ||| beneficiaries in ||| 0.0588235 0.0587624 1.49697e-06 1.92264e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| beneficiaries of ||| 0.00321543 0.0188479 1.49697e-06 9.46512e-08 2.718 ||| 0-1 ||| 311 668016 +a ||| benefit and let good ||| 0.25 0.0015873 1.49697e-06 5.38206e-14 2.718 ||| 0-1 ||| 4 668016 +a ||| benefit and let ||| 0.25 0.0015873 1.49697e-06 1.03781e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| benefit and ||| 0.0128205 0.0015873 1.49697e-06 2.54115e-07 2.718 ||| 0-1 ||| 78 668016 +a ||| benefit as ||| 0.0357143 0.0284887 1.49697e-06 2.42645e-06 2.718 ||| 0-0 0-1 ||| 28 668016 +a ||| benefit from ||| 0.00139276 0.0435582 4.49091e-06 9.48082e-07 2.718 ||| 0-1 ||| 2154 668016 +a ||| benefit here ||| 0.333333 0.0326298 1.49697e-06 5.60889e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| benefit of the ||| 0.00217391 0.0326298 1.49697e-06 9.23154e-07 2.718 ||| 0-0 ||| 460 668016 +a ||| benefit of ||| 0.00756144 0.0257389 1.79636e-05 8.18141e-06 2.718 ||| 0-0 0-1 ||| 1587 668016 +a ||| benefit to ||| 0.00289017 0.229811 1.49697e-06 4.61347e-05 2.718 ||| 0-1 ||| 346 668016 +a ||| benefit ||| 0.00386272 0.0326298 3.89212e-05 0.0002766 2.718 ||| 0-0 ||| 6731 668016 +a ||| benefited ||| 0.0046729 0.0546624 1.49697e-06 4.66e-05 2.718 ||| 0-0 ||| 214 668016 +a ||| benefiting ||| 0.0143266 0.115566 7.48485e-06 8.94e-05 2.718 ||| 0-0 ||| 349 668016 +a ||| benefits of the workforce are ||| 1 0.0188479 1.49697e-06 7.09182e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| benefits of the workforce ||| 1 0.0188479 1.49697e-06 4.67407e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| benefits of the ||| 0.00389105 0.0188479 1.49697e-06 7.19087e-08 2.718 ||| 0-1 ||| 257 668016 +a ||| benefits of ||| 0.00211193 0.0188479 2.99394e-06 1.17131e-06 2.718 ||| 0-1 ||| 947 668016 +a ||| benefits to ||| 0.00378788 0.229811 1.49697e-06 1.38719e-05 2.718 ||| 0-1 ||| 264 668016 +a ||| bent on ||| 0.0344828 0.0782999 1.49697e-06 4.17292e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| beset with ||| 0.0434783 0.0571592 1.49697e-06 3.67292e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| beside the ||| 0.0384615 0.206522 1.49697e-06 2.1303e-06 2.718 ||| 0-0 ||| 26 668016 +a ||| beside ||| 0.0188679 0.206522 2.99394e-06 3.47e-05 2.718 ||| 0-0 ||| 106 668016 +a ||| besides treating ||| 0.5 0.173442 1.49697e-06 1.68192e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| best , in doing so , ||| 0.5 0.0587624 1.49697e-06 9.86056e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| best , in doing so ||| 0.5 0.0587624 1.49697e-06 8.26849e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| best , in doing ||| 0.5 0.0587624 1.49697e-06 3.64299e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| best , in ||| 0.125 0.0587624 1.49697e-06 9.92369e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| best for the future ||| 0.0294118 0.0683377 1.49697e-06 8.32162e-11 2.718 ||| 0-1 ||| 34 668016 +a ||| best for the ||| 0.010989 0.0683377 1.49697e-06 3.13314e-07 2.718 ||| 0-1 ||| 91 668016 +a ||| best for ||| 0.00497512 0.0683377 1.49697e-06 5.10352e-06 2.718 ||| 0-1 ||| 201 668016 +a ||| best to do ||| 0.2 0.229811 1.49697e-06 1.6667e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| best to ||| 0.00714286 0.229811 5.98788e-06 4.85168e-05 2.718 ||| 0-1 ||| 560 668016 +a ||| best way in ||| 0.0714286 0.0587624 1.49697e-06 1.79377e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| best wishes to ||| 0.0731707 0.229811 4.49091e-06 2.56654e-09 2.718 ||| 0-2 ||| 41 668016 +a ||| bestowed on ||| 0.0625 0.0782999 1.49697e-06 4.17292e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| betraying ||| 0.0243902 0.178082 1.49697e-06 1.19e-05 2.718 ||| 0-0 ||| 41 668016 +a ||| better able to ||| 0.0103093 0.229811 1.49697e-06 4.96901e-08 2.718 ||| 0-2 ||| 97 668016 +a ||| better directed towards ||| 0.333333 0.155507 1.49697e-06 1.7935e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| better for ||| 0.00452489 0.0683377 1.49697e-06 6.26056e-06 2.718 ||| 0-1 ||| 221 668016 +a ||| better idea of ||| 0.0416667 0.0188479 1.49697e-06 1.12669e-09 2.718 ||| 0-2 ||| 24 668016 +a ||| better insight into the important role to ||| 1 0.107578 1.49697e-06 2.58895e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| better insight into the important role ||| 1 0.107578 1.49697e-06 2.91357e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| better insight into the important ||| 1 0.107578 1.49697e-06 1.31242e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| better insight into the ||| 0.25 0.107578 1.49697e-06 3.42132e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| better insight into ||| 0.125 0.107578 1.49697e-06 5.57293e-12 2.718 ||| 0-2 ||| 8 668016 +a ||| better not give in to ||| 1 0.0587624 1.49697e-06 1.87667e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| better not give in ||| 1 0.0587624 1.49697e-06 2.11198e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| better not to make any choices here ||| 1 0.229811 1.49697e-06 7.79612e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| better not to make any choices ||| 1 0.229811 1.49697e-06 3.84462e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| better not to make any ||| 1 0.229811 1.49697e-06 5.33975e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| better not to make ||| 1 0.229811 1.49697e-06 3.53111e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| better not to ||| 0.0666667 0.229811 1.49697e-06 2.03194e-07 2.718 ||| 0-2 ||| 15 668016 +a ||| better of ||| 0.0714286 0.0188479 2.99394e-06 5.02539e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| better off if there are several different ||| 1 0.0893962 1.49697e-06 7.28435e-23 2.718 ||| 0-1 ||| 1 668016 +a ||| better off if there are several ||| 1 0.0893962 1.49697e-06 3.30806e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| better off if there are ||| 1 0.0893962 1.49697e-06 5.05048e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| better off if there ||| 1 0.0893962 1.49697e-06 3.32866e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| better off if ||| 0.2 0.0893962 1.49697e-06 1.08592e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| better off ||| 0.0192308 0.0893962 2.99394e-06 1.29957e-07 2.718 ||| 0-1 ||| 104 668016 +a ||| better to use the market economy ||| 1 0.229811 1.49697e-06 2.09575e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| better to use the market ||| 1 0.229811 1.49697e-06 4.01485e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| better to use the ||| 0.25 0.229811 1.49697e-06 1.77648e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| better to use ||| 0.0769231 0.229811 1.49697e-06 2.89368e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| better to ||| 0.00308642 0.229811 2.99394e-06 5.95162e-05 2.718 ||| 0-1 ||| 648 668016 +a ||| better with ||| 0.015625 0.0571592 1.49697e-06 2.8365e-06 2.718 ||| 0-1 ||| 64 668016 +a ||| better ||| 4.54215e-05 4.06e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 22016 668016 +a ||| between EUR ||| 0.0138889 0.0097655 1.49697e-06 4.02031e-08 2.718 ||| 0-1 ||| 72 668016 +a ||| between colleagues ||| 0.25 0.00078705 1.49697e-06 2.9029e-10 2.718 ||| 0-0 0-1 ||| 4 668016 +a ||| between the two institutions must take ||| 1 0.0006394 1.49697e-06 6.04826e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| between the two institutions must ||| 1 0.0006394 1.49697e-06 3.75669e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| between the two institutions ||| 0.0151515 0.0006394 1.49697e-06 2.43057e-14 2.718 ||| 0-0 ||| 66 668016 +a ||| between the two ||| 0.000886525 0.0006394 1.49697e-06 4.62965e-10 2.718 ||| 0-0 ||| 1128 668016 +a ||| between the ||| 0.000137463 0.0006394 4.49091e-06 1.9584e-06 2.718 ||| 0-0 ||| 21824 668016 +a ||| between ||| 0.000487092 0.0006394 4.19152e-05 3.19e-05 2.718 ||| 0-0 ||| 57484 668016 +a ||| beyond financial conglomerates to ||| 1 0.229811 1.49697e-06 1.28039e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| beyond help ||| 0.5 0.259976 1.49697e-06 4.9264e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| beyond just ||| 0.0666667 0.001613 1.49697e-06 4.92093e-09 2.718 ||| 0-1 ||| 15 668016 +a ||| beyond them by ||| 0.0909091 0.0337966 1.49697e-06 1.653e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| beyond ||| 0.00130529 0.0146574 1.34727e-05 0.0001177 2.718 ||| 0-0 ||| 6895 668016 +a ||| bias , to ||| 1 0.229811 1.49697e-06 1.04438e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| bid to ||| 0.00434783 0.229811 1.49697e-06 9.31802e-06 2.718 ||| 0-1 ||| 230 668016 +a ||| bidding for ||| 0.0625 0.0683377 1.49697e-06 5.15879e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| big task to bring ||| 0.333333 0.229811 1.49697e-06 6.47162e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| big task to ||| 1 0.229811 1.49697e-06 2.0789e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| bill has to be met ||| 1 0.229811 1.49697e-06 4.33618e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| bill has to be ||| 1 0.229811 1.49697e-06 5.65343e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| bill has to ||| 1 0.229811 1.49697e-06 3.1195e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| billion and ||| 0.00952381 0.0015873 1.49697e-06 4.37996e-08 2.718 ||| 0-1 ||| 105 668016 +a ||| billion to ||| 0.0530973 0.229811 8.98182e-06 7.95185e-06 2.718 ||| 0-1 ||| 113 668016 +a ||| bind ||| 0.0183486 0.277533 2.99394e-06 5.75e-05 2.718 ||| 0-0 ||| 109 668016 +a ||| binding on the ||| 0.0147059 0.0782999 1.49697e-06 4.09893e-08 2.718 ||| 0-1 ||| 68 668016 +a ||| binding on ||| 0.00526316 0.0782999 1.49697e-06 6.67667e-07 2.718 ||| 0-1 ||| 190 668016 +a ||| birth to ||| 0.0138889 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-1 ||| 72 668016 +a ||| bit for ||| 0.125 0.0683377 1.49697e-06 2.9184e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| bit in ||| 0.05 0.0587624 1.49697e-06 4.75853e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| bit like the same sort of ||| 1 0.0188479 1.49697e-06 3.28429e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| bit of ||| 0.005 0.0188479 1.49697e-06 2.34262e-06 2.718 ||| 0-1 ||| 200 668016 +a ||| bit players , at ||| 1 0.204175 1.49697e-06 5.43273e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| bit to ||| 0.04 0.229811 1.49697e-06 2.77439e-05 2.718 ||| 0-1 ||| 25 668016 +a ||| bits of ||| 0.0344828 0.0188479 1.49697e-06 1.39019e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| blacklist , for example ||| 1 0.0683377 1.49697e-06 8.95438e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| blacklist , for ||| 1 0.0683377 1.49697e-06 3.07605e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| blame on ||| 0.0208333 0.0782999 1.49697e-06 9.02867e-07 2.718 ||| 0-1 ||| 48 668016 +a ||| blame ||| 0.0036523 0.0991736 7.48485e-06 0.0001533 2.718 ||| 0-0 ||| 1369 668016 +a ||| blamed - ||| 0.5 0.177083 1.49697e-06 1.7578e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| blamed for reducing ||| 0.2 0.0683377 1.49697e-06 2.15637e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| blamed for ||| 0.0285714 0.0683377 2.99394e-06 8.10667e-08 2.718 ||| 0-1 ||| 70 668016 +a ||| blamed on ||| 0.0434783 0.127692 1.49697e-06 1.7678e-06 2.718 ||| 0-0 0-1 ||| 23 668016 +a ||| blamed ||| 0.0207254 0.177083 5.98788e-06 4.66e-05 2.718 ||| 0-0 ||| 193 668016 +a ||| blaming it ||| 0.5 0.356828 1.49697e-06 1.31418e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| blaming of ||| 0.333333 0.187838 1.49697e-06 2.18585e-06 2.718 ||| 0-0 0-1 ||| 3 668016 +a ||| blaming ||| 0.0325203 0.356828 5.98788e-06 7.39e-05 2.718 ||| 0-0 ||| 123 668016 +a ||| blasphemy at ||| 1 0.204175 1.49697e-06 1.36142e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| blessing after the ||| 1 0.0341027 1.49697e-06 9.26918e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| blessing after ||| 1 0.0341027 1.49697e-06 1.50984e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| blind eye to ||| 0.0103093 0.229811 2.99394e-06 3.08948e-10 2.718 ||| 0-2 ||| 194 668016 +a ||| blind to ||| 0.0588235 0.229811 2.99394e-06 5.42967e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| block in all ||| 1 0.0587624 1.49697e-06 2.75396e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| block in ||| 0.111111 0.0587624 1.49697e-06 5.828e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| block on ||| 0.0833333 0.0782999 1.49697e-06 3.67975e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| blocked ||| 0.00145773 0.0012594 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 686 668016 +a ||| blow to ||| 0.00680272 0.229811 1.49697e-06 4.79913e-06 2.718 ||| 0-1 ||| 147 668016 +a ||| board in ||| 0.0307692 0.0587624 2.99394e-06 8.02101e-06 2.718 ||| 0-1 ||| 65 668016 +a ||| boat of ||| 0.2 0.0188479 1.49697e-06 1.71555e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| boats only to ||| 1 0.229811 1.49697e-06 1.83263e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| bodies in ||| 0.025974 0.0587624 2.99394e-06 2.39729e-06 2.718 ||| 0-1 ||| 77 668016 +a ||| bodies to ||| 0.0441176 0.229811 4.49091e-06 1.3977e-05 2.718 ||| 0-1 ||| 68 668016 +a ||| body at which ||| 1 0.204175 1.49697e-06 2.47484e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| body at ||| 0.142857 0.204175 1.49697e-06 2.91343e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| body of ||| 0.0114068 0.0188479 4.49091e-06 2.53192e-06 2.718 ||| 0-1 ||| 263 668016 +a ||| body repair shop to have ||| 0.333333 0.229811 1.49697e-06 1.67836e-17 2.718 ||| 0-3 ||| 3 668016 +a ||| body repair shop to ||| 0.333333 0.229811 1.49697e-06 1.40334e-15 2.718 ||| 0-3 ||| 3 668016 +a ||| body to ||| 0.0243902 0.229811 2.99394e-06 2.99858e-05 2.718 ||| 0-1 ||| 82 668016 +a ||| body will ||| 0.0769231 0.0561595 1.49697e-06 1.20556e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| bogged down in ||| 0.0243902 0.0587624 1.49697e-06 2.85216e-10 2.718 ||| 0-2 ||| 41 668016 +a ||| boil down to ||| 0.0454545 0.229811 1.49697e-06 2.69e-10 2.718 ||| 0-2 ||| 22 668016 +a ||| boils down to ||| 0.0192308 0.229811 1.49697e-06 7.82546e-10 2.718 ||| 0-2 ||| 52 668016 +a ||| bold as to ||| 0.166667 0.229811 1.49697e-06 1.93029e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| bon ||| 0.25 0.05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| bona ||| 0.0384615 0.0163934 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| bonus in ||| 0.2 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| bonus to ||| 0.5 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| book to ||| 0.0769231 0.229811 1.49697e-06 9.45814e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| boost agricultural and ||| 0.25 0.0015873 1.49697e-06 1.2985e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| boost for ||| 0.025 0.0683377 1.49697e-06 6.37479e-07 2.718 ||| 0-1 ||| 40 668016 +a ||| boost to ||| 0.00704225 0.229811 1.49697e-06 6.06022e-06 2.718 ||| 0-1 ||| 142 668016 +a ||| boost ||| 0.000627746 0.0019595 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 1593 668016 +a ||| border to ||| 0.0416667 0.229811 1.49697e-06 8.19706e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| borders of ||| 0.00252525 0.0188479 1.49697e-06 1.27779e-06 2.718 ||| 0-1 ||| 396 668016 +a ||| born out of crass ||| 1 0.0188479 1.49697e-06 7.6929e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| born out of ||| 0.03125 0.0188479 1.49697e-06 1.09899e-09 2.718 ||| 0-2 ||| 32 668016 +a ||| borne by ||| 0.012605 0.0337966 4.49091e-06 2.6328e-07 2.718 ||| 0-1 ||| 238 668016 +a ||| borne in mind that ||| 0.00769231 0.0587624 1.49697e-06 8.14692e-12 2.718 ||| 0-1 ||| 130 668016 +a ||| borne in mind ||| 0.00364964 0.0587624 1.49697e-06 4.84313e-10 2.718 ||| 0-1 ||| 274 668016 +a ||| borne in ||| 0.00921659 0.0587624 2.99394e-06 1.92264e-06 2.718 ||| 0-1 ||| 217 668016 +a ||| borne out ||| 0.011236 0.0669777 1.49697e-06 1.31232e-07 2.718 ||| 0-1 ||| 89 668016 +a ||| borrow loosely from ||| 1 0.0435582 1.49697e-06 3.22506e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| both Russia ||| 0.0666667 0.0205477 1.49697e-06 2.64126e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| both are giving up ||| 1 0.136521 1.49697e-06 8.64552e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| both are giving ||| 1 0.136521 1.49697e-06 2.53497e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| both as a ||| 0.0185185 0.0224476 1.49697e-06 2.54848e-07 2.718 ||| 0-0 0-1 ||| 54 668016 +a ||| both as individuals ||| 0.142857 0.0243476 1.49697e-06 4.7082e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| both as ||| 0.00851064 0.0224476 2.99394e-06 5.74943e-06 2.718 ||| 0-0 0-1 ||| 235 668016 +a ||| both at a ||| 0.1 0.0205477 2.99394e-06 1.21649e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| both at the ||| 0.0116279 0.204175 1.49697e-06 3.46125e-06 2.718 ||| 0-1 ||| 86 668016 +a ||| both at ||| 0.020339 0.204175 1.79636e-05 5.63796e-05 2.718 ||| 0-1 ||| 590 668016 +a ||| both by ||| 0.0118343 0.0337966 5.98788e-06 1.36289e-05 2.718 ||| 0-1 ||| 338 668016 +a ||| both day ||| 0.333333 0.0205477 1.49697e-06 1.67913e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| both do ||| 0.333333 0.0205477 1.49697e-06 2.2515e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| both for ||| 0.00794439 0.0683377 1.19758e-05 6.10395e-05 2.718 ||| 0-1 ||| 1007 668016 +a ||| both from ||| 0.00401606 0.0435582 1.49697e-06 1.19248e-05 2.718 ||| 0-1 ||| 249 668016 +a ||| both good ||| 0.0222222 0.0205477 1.49697e-06 3.3989e-07 2.718 ||| 0-0 ||| 45 668016 +a ||| both in terms ||| 0.00314465 0.0587624 1.49697e-06 1.0924e-07 2.718 ||| 0-1 ||| 318 668016 +a ||| both in the ||| 0.00503145 0.0587624 5.98788e-06 6.11012e-06 2.718 ||| 0-1 ||| 795 668016 +a ||| both in ||| 0.0059761 0.0587624 2.24546e-05 9.95267e-05 2.718 ||| 0-1 ||| 2510 668016 +a ||| both now and in ||| 0.0140845 0.0587624 1.49697e-06 2.568e-09 2.718 ||| 0-3 ||| 71 668016 +a ||| both of the detailed ||| 1 0.0188479 1.49697e-06 7.58016e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| both of the ||| 0.00540541 0.0188479 1.49697e-06 3.008e-06 2.718 ||| 0-1 ||| 185 668016 +a ||| both of them ||| 0.0126582 0.0188479 1.49697e-06 1.31429e-07 2.718 ||| 0-1 ||| 79 668016 +a ||| both of ||| 0.0244233 0.0188479 2.69455e-05 4.89968e-05 2.718 ||| 0-1 ||| 737 668016 +a ||| both on ||| 0.00431034 0.0782999 2.99394e-06 6.28403e-05 2.718 ||| 0-1 ||| 464 668016 +a ||| both the ||| 0.000242895 0.0205477 1.49697e-06 4.02362e-05 2.718 ||| 0-0 ||| 4117 668016 +a ||| both to ||| 0.0942721 0.229811 0.000118261 0.000580275 2.718 ||| 0-1 ||| 838 668016 +a ||| both towards ||| 0.0909091 0.155507 1.49697e-06 5.58671e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| both whoever is guilty of ||| 1 0.0188479 1.49697e-06 1.3022e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| both with ||| 0.0045045 0.0571592 1.49697e-06 2.76554e-05 2.718 ||| 0-1 ||| 222 668016 +a ||| both ||| 0.00826764 0.0205477 0.000386218 0.0006554 2.718 ||| 0-0 ||| 31206 668016 +a ||| bother ||| 0.0153846 0.0059524 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 65 668016 +a ||| bothers ||| 0.0454545 0.147541 1.49697e-06 8.2e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| bottom of ||| 0.00555556 0.0188479 1.49697e-06 4.2593e-07 2.718 ||| 0-1 ||| 180 668016 +a ||| bought in ||| 0.030303 0.0587624 1.49697e-06 2.82388e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| bound by ||| 0.00348432 0.0337966 1.49697e-06 4.23716e-07 2.718 ||| 0-1 ||| 287 668016 +a ||| bound for ||| 0.0526316 0.0683377 1.49697e-06 1.8977e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| bound to be a ||| 0.166667 0.229811 1.49697e-06 1.44922e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| bound to be ||| 0.0277778 0.229811 1.49697e-06 3.26947e-07 2.718 ||| 0-1 ||| 36 668016 +a ||| bound to mean ||| 0.5 0.229811 1.49697e-06 4.64905e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| bound to require ||| 1 0.229811 1.49697e-06 8.44297e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| bound to respect ||| 0.25 0.229811 1.49697e-06 7.80433e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| bound to ||| 0.0252632 0.229811 1.79636e-05 1.80405e-05 2.718 ||| 0-1 ||| 475 668016 +a ||| bound up with a Member ||| 0.5 0.0571592 1.49697e-06 6.69778e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| bound up with a Member ’ ||| 0.5 0.0571592 1.49697e-06 1.16682e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| bound up with a ||| 0.2 0.0571592 1.49697e-06 1.29978e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| bound up with ||| 0.0117647 0.0571592 1.49697e-06 2.93234e-09 2.718 ||| 0-2 ||| 85 668016 +a ||| bound ||| 0.00545852 0.0087173 7.48485e-06 1.28e-05 2.718 ||| 0-0 ||| 916 668016 +a ||| bounds with ||| 0.25 0.0571592 1.49697e-06 1.56934e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| bow their heads in ||| 0.5 0.0587624 1.49697e-06 4.45846e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| bowing to ||| 0.0263158 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 38 668016 +a ||| boys acting in ||| 0.5 0.0451613 1.49697e-06 1.61647e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| boys acting ||| 0.5 0.0451613 1.49697e-06 7.552e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| boys ||| 0.0107527 0.0451613 2.99394e-06 1.28e-05 2.718 ||| 0-0 ||| 186 668016 +a ||| bracket to ||| 0.333333 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| branded ||| 0.025 0.0537634 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 40 668016 +a ||| branding of ||| 0.5 0.083498 1.49697e-06 2.15923e-07 2.718 ||| 0-0 0-1 ||| 2 668016 +a ||| branding ||| 0.037037 0.148148 1.49697e-06 7.3e-06 2.718 ||| 0-0 ||| 27 668016 +a ||| breaches of the ||| 0.0135135 0.0188479 1.49697e-06 5.26604e-09 2.718 ||| 0-1 ||| 74 668016 +a ||| breaches of ||| 0.00217865 0.0188479 1.49697e-06 8.57777e-08 2.718 ||| 0-1 ||| 459 668016 +a ||| breadwinners for around ||| 0.25 0.0683377 1.49697e-06 1.96329e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| breadwinners for ||| 0.25 0.0683377 1.49697e-06 1.47394e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| break and overturn ||| 1 0.0015873 1.49697e-06 6.17633e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| break and ||| 0.142857 0.0015873 1.49697e-06 5.61484e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| break for ||| 0.25 0.0683377 1.49697e-06 1.07229e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| break into ||| 0.125 0.107578 2.99394e-06 1.76762e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| break with ||| 0.00970874 0.0571592 1.49697e-06 4.85827e-07 2.718 ||| 0-1 ||| 103 668016 +a ||| break ||| 0.000935454 0.000609 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1069 668016 +a ||| breaking it down into ||| 0.25 0.107578 1.49697e-06 1.13868e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| breaks out on this earth . ||| 1 0.0782999 1.49697e-06 2.21143e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| breaks out on this earth ||| 1 0.0782999 1.49697e-06 7.30086e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| breaks out on this ||| 1 0.0782999 1.49697e-06 5.07004e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| breaks out on ||| 0.333333 0.0782999 1.49697e-06 7.84666e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| breath of ||| 0.030303 0.0188479 1.49697e-06 2.86911e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| breeding ground for ||| 0.010989 0.0683377 1.49697e-06 3.57836e-11 2.718 ||| 0-2 ||| 91 668016 +a ||| bridge to ||| 0.0243902 0.229811 1.49697e-06 1.89163e-06 2.718 ||| 0-1 ||| 41 668016 +a ||| brief for ||| 0.0833333 0.0683377 1.49697e-06 8.88049e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| brief in ||| 0.037037 0.0587624 1.49697e-06 1.44799e-06 2.718 ||| 0-1 ||| 27 668016 +a ||| briefly to ||| 0.00416667 0.229811 1.49697e-06 5.04434e-06 2.718 ||| 0-1 ||| 240 668016 +a ||| bring a ||| 0.00628931 0.0161903 1.49697e-06 8.45736e-06 2.718 ||| 0-0 ||| 159 668016 +a ||| bring about the ||| 0.00401606 0.0526361 1.49697e-06 9.63074e-08 2.718 ||| 0-1 ||| 249 668016 +a ||| bring about ||| 0.00433369 0.0526361 1.19758e-05 1.56873e-06 2.718 ||| 0-1 ||| 1846 668016 +a ||| bring home to ||| 0.111111 0.229811 1.49697e-06 1.10685e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| bring in ||| 0.00649351 0.0587624 2.99394e-06 1.87037e-05 2.718 ||| 0-1 ||| 308 668016 +a ||| bring into ||| 0.0181818 0.107578 1.49697e-06 1.89093e-06 2.718 ||| 0-1 ||| 55 668016 +a ||| bring it in line with ||| 0.1 0.0571592 1.49697e-06 5.82399e-13 2.718 ||| 0-4 ||| 10 668016 +a ||| bring it into line with ||| 0.04 0.0571592 1.49697e-06 2.79357e-14 2.718 ||| 0-4 ||| 25 668016 +a ||| bring it to ||| 0.05 0.229811 2.99394e-06 1.93924e-06 2.718 ||| 0-2 ||| 40 668016 +a ||| bring itself to ||| 0.1 0.229811 1.49697e-06 7.40115e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| bring myself to ||| 0.5 0.229811 1.49697e-06 1.69571e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| bring pressure to bear on ||| 0.0238095 0.0782999 1.49697e-06 9.44104e-15 2.718 ||| 0-4 ||| 42 668016 +a ||| bring relief to ||| 0.333333 0.229811 1.49697e-06 1.22135e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| bring the case to ||| 0.5 0.229811 1.49697e-06 7.16267e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| bring them to ||| 0.0196078 0.229811 1.49697e-06 2.92513e-07 2.718 ||| 0-2 ||| 51 668016 +a ||| bring this to ||| 0.117647 0.229811 2.99394e-06 7.04608e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| bring to pass ||| 0.25 0.229811 1.49697e-06 6.2376e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| bring to ||| 0.0231023 0.229811 1.04788e-05 0.000109049 2.718 ||| 0-1 ||| 303 668016 +a ||| bring together ||| 0.00364964 0.0161903 1.49697e-06 1.14594e-07 2.718 ||| 0-0 ||| 274 668016 +a ||| bring with ||| 0.0238095 0.0571592 1.49697e-06 5.19718e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| bring ||| 0.00500782 0.0161903 4.7903e-05 0.0001908 2.718 ||| 0-0 ||| 6390 668016 +a ||| bringing about ||| 0.0107817 0.0526361 5.98788e-06 4.04656e-07 2.718 ||| 0-1 ||| 371 668016 +a ||| bringing fresh impetus to ||| 1 0.229811 1.49697e-06 9.03792e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| bringing in a ||| 0.0769231 0.0587624 1.49697e-06 2.13855e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| bringing in ||| 0.00877193 0.0587624 1.49697e-06 4.82462e-06 2.718 ||| 0-1 ||| 114 668016 +a ||| bringing it to ||| 0.111111 0.229811 1.49697e-06 5.00228e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| bringing stability to ||| 0.1 0.229811 1.49697e-06 5.87901e-10 2.718 ||| 0-2 ||| 10 668016 +a ||| bringing terrorists ||| 0.5 0.0537586 1.49697e-06 8.8e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| bringing to a ||| 0.2 0.229811 1.49697e-06 1.24685e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| bringing to ||| 0.0588235 0.229811 7.48485e-06 2.81292e-05 2.718 ||| 0-1 ||| 85 668016 +a ||| bringing together ||| 0.00645161 0.0537586 2.99394e-06 1.32132e-07 2.718 ||| 0-0 ||| 310 668016 +a ||| bringing ||| 0.00795085 0.0537586 3.29333e-05 0.00022 2.718 ||| 0-0 ||| 2767 668016 +a ||| brings forth ||| 0.2 0.0083969 1.49697e-06 4.0602e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| brings in ||| 0.0384615 0.0587624 1.49697e-06 2.44536e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| brings me to ||| 0.0078125 0.229811 2.99394e-06 8.58431e-09 2.718 ||| 0-2 ||| 256 668016 +a ||| brings the ||| 0.01 0.0083969 1.49697e-06 1.23398e-06 2.718 ||| 0-0 ||| 100 668016 +a ||| brings to ||| 0.01 0.229811 1.49697e-06 1.42573e-05 2.718 ||| 0-1 ||| 100 668016 +a ||| brings ||| 0.00319285 0.0083969 7.48485e-06 2.01e-05 2.718 ||| 0-0 ||| 1566 668016 +a ||| broad lines of ||| 0.0333333 0.0188479 1.49697e-06 8.31718e-11 2.718 ||| 0-2 ||| 30 668016 +a ||| broad provision in ||| 1 0.0587624 1.49697e-06 2.20558e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| broadened to ||| 0.0769231 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| broadly based ||| 0.0153846 0.0146739 1.49697e-06 5.77116e-09 2.718 ||| 0-0 ||| 65 668016 +a ||| broadly ||| 0.00114679 0.0146739 1.49697e-06 2.46e-05 2.718 ||| 0-0 ||| 872 668016 +a ||| broke in ||| 0.5 0.0587624 1.49697e-06 5.828e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| broke out in Albania ||| 0.25 0.0587624 1.49697e-06 1.85286e-14 2.718 ||| 0-2 ||| 4 668016 +a ||| broke out in ||| 0.1 0.0587624 2.99394e-06 2.23236e-09 2.718 ||| 0-2 ||| 20 668016 +a ||| broken down by transport mode ||| 1 0.0337966 1.49697e-06 7.59872e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| broken down by transport ||| 1 0.0337966 1.49697e-06 1.76714e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| broken down by ||| 0.0232558 0.0337966 1.49697e-06 1.71734e-10 2.718 ||| 0-2 ||| 43 668016 +a ||| brought about a ||| 0.0185185 0.0526361 1.49697e-06 6.25439e-08 2.718 ||| 0-1 ||| 54 668016 +a ||| brought about ||| 0.00413223 0.0526361 2.99394e-06 1.411e-06 2.718 ||| 0-1 ||| 484 668016 +a ||| brought before ||| 0.0127389 0.0203282 2.99394e-06 1.48484e-07 2.718 ||| 0-1 ||| 157 668016 +a ||| brought down to ||| 0.25 0.229811 1.49697e-06 6.84728e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| brought forward to ||| 0.0689655 0.229811 2.99394e-06 5.45742e-08 2.718 ||| 0-2 ||| 29 668016 +a ||| brought home to ||| 0.0869565 0.229811 2.99394e-06 9.95557e-09 2.718 ||| 0-2 ||| 23 668016 +a ||| brought in ||| 0.0185185 0.0587624 4.49091e-06 1.68231e-05 2.718 ||| 0-1 ||| 162 668016 +a ||| brought into discredit ||| 0.333333 0.107578 1.49697e-06 3.74177e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| brought into line with ||| 0.02 0.0571592 1.49697e-06 1.41296e-12 2.718 ||| 0-3 ||| 50 668016 +a ||| brought into line ||| 0.0298507 0.107578 2.99394e-06 5.00717e-10 2.718 ||| 0-1 ||| 67 668016 +a ||| brought into ||| 0.0300752 0.107578 1.19758e-05 1.7008e-06 2.718 ||| 0-1 ||| 266 668016 +a ||| brought on board ||| 0.285714 0.0782999 2.99394e-06 1.41803e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| brought on ||| 0.0952381 0.0782999 2.99394e-06 1.0622e-05 2.718 ||| 0-1 ||| 21 668016 +a ||| brought renewed ||| 0.166667 0.0182841 1.49697e-06 1.5431e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| brought to a conclusion ||| 0.03125 0.229811 1.49697e-06 3.84769e-10 2.718 ||| 0-1 ||| 32 668016 +a ||| brought to a ||| 0.0277778 0.229811 2.99394e-06 4.34767e-06 2.718 ||| 0-1 ||| 72 668016 +a ||| brought to an ||| 0.0140845 0.229811 1.49697e-06 4.35956e-07 2.718 ||| 0-1 ||| 71 668016 +a ||| brought to bear on the ||| 0.0833333 0.0782999 1.49697e-06 8.6743e-12 2.718 ||| 0-3 ||| 12 668016 +a ||| brought to bear on ||| 0.2 0.0782999 5.98788e-06 1.41294e-10 2.718 ||| 0-3 ||| 20 668016 +a ||| brought to bear to ||| 0.2 0.229811 1.49697e-06 1.30473e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| brought to bear upon ||| 0.4 0.229811 2.99394e-06 3.48286e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| brought to bear ||| 0.0714286 0.229811 7.48485e-06 1.46832e-08 2.718 ||| 0-1 ||| 70 668016 +a ||| brought to book ||| 0.0833333 0.229811 1.49697e-06 2.64828e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| brought to its ||| 0.2 0.229811 1.49697e-06 1.39741e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| brought to justice ||| 0.00757576 0.229811 1.49697e-06 3.91357e-09 2.718 ||| 0-1 ||| 132 668016 +a ||| brought to light by ||| 0.125 0.229811 1.49697e-06 8.94989e-11 2.718 ||| 0-1 ||| 8 668016 +a ||| brought to light ||| 0.038961 0.229811 4.49091e-06 1.70471e-08 2.718 ||| 0-1 ||| 77 668016 +a ||| brought to power ||| 0.333333 0.229811 1.49697e-06 1.4644e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| brought to such ||| 0.333333 0.229811 1.49697e-06 2.02927e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| brought to ||| 0.0426309 0.229811 5.2394e-05 9.80844e-05 2.718 ||| 0-1 ||| 821 668016 +a ||| brought together ||| 0.00613497 0.0182841 1.49697e-06 7.12912e-08 2.718 ||| 0-0 ||| 163 668016 +a ||| brought under ||| 0.0294118 0.0384416 1.49697e-06 3.97152e-07 2.718 ||| 0-1 ||| 34 668016 +a ||| brought up by ||| 0.030303 0.0337966 1.49697e-06 7.85677e-09 2.718 ||| 0-2 ||| 33 668016 +a ||| brought up to the ||| 0.1 0.229811 1.49697e-06 2.05366e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| brought up to ||| 0.0645161 0.229811 2.99394e-06 3.34517e-07 2.718 ||| 0-2 ||| 31 668016 +a ||| brought up ||| 0.00408163 0.0195077 1.49697e-06 3.43728e-07 2.718 ||| 0-1 ||| 245 668016 +a ||| brought within the ||| 0.0769231 0.0123496 1.49697e-06 8.55016e-09 2.718 ||| 0-1 ||| 13 668016 +a ||| brought within ||| 0.0263158 0.0123496 1.49697e-06 1.39272e-07 2.718 ||| 0-1 ||| 38 668016 +a ||| brought ||| 0.00459902 0.0182841 2.39515e-05 0.0001187 2.718 ||| 0-0 ||| 3479 668016 +a ||| budget at ||| 0.0227273 0.204175 1.49697e-06 4.19997e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| budget for ||| 0.00142857 0.0683377 2.99394e-06 4.5471e-06 2.718 ||| 0-1 ||| 1400 668016 +a ||| budget to ||| 0.00378788 0.229811 1.49697e-06 4.32272e-05 2.718 ||| 0-1 ||| 264 668016 +a ||| building on the ||| 0.0212766 0.0782999 2.99394e-06 1.35777e-07 2.718 ||| 0-1 ||| 94 668016 +a ||| building on ||| 0.00947867 0.0782999 2.99394e-06 2.21165e-06 2.718 ||| 0-1 ||| 211 668016 +a ||| building up of ||| 0.0588235 0.0188479 1.49697e-06 5.88116e-09 2.718 ||| 0-2 ||| 17 668016 +a ||| building with ||| 0.142857 0.0571592 1.49697e-06 9.73324e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| built on ||| 0.0101695 0.0782999 4.49091e-06 1.8854e-06 2.718 ||| 0-1 ||| 295 668016 +a ||| built up at ||| 1 0.204175 1.49697e-06 5.76906e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| built up ||| 0.00460829 0.0195077 1.49697e-06 6.10117e-08 2.718 ||| 0-1 ||| 217 668016 +a ||| burden of ||| 0.00241838 0.0188479 2.99394e-06 1.28666e-06 2.718 ||| 0-1 ||| 827 668016 +a ||| burden on ||| 0.0255682 0.0782999 1.34727e-05 1.6502e-06 2.718 ||| 0-1 ||| 352 668016 +a ||| burden to ||| 0.037037 0.229811 1.49697e-06 1.52381e-05 2.718 ||| 0-1 ||| 27 668016 +a ||| burden would be imposed on ||| 1 0.0782999 1.49697e-06 9.79355e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| burdening ||| 0.0131579 0.22619 1.49697e-06 1.73e-05 2.718 ||| 0-0 ||| 76 668016 +a ||| burns down a considerable amount around it ||| 1 0.0931303 1.49697e-06 5.99432e-24 2.718 ||| 0-5 ||| 1 668016 +a ||| burns down a considerable amount around ||| 1 0.0931303 1.49697e-06 3.37078e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| bursting at the ||| 0.25 0.204175 1.49697e-06 1.46265e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| bursting at ||| 0.25 0.204175 1.49697e-06 2.38248e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| business all ||| 0.333333 0.0038996 1.49697e-06 6.90822e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| business in ||| 0.00917431 0.0587624 2.99394e-06 7.5043e-06 2.718 ||| 0-1 ||| 218 668016 +a ||| business is with ||| 0.5 0.0571592 1.49697e-06 6.5353e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| business of ||| 0.00961538 0.0188479 2.99394e-06 3.69435e-06 2.718 ||| 0-1 ||| 208 668016 +a ||| business our blessing after the ||| 1 0.0341027 1.49697e-06 1.59696e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| business our blessing after ||| 1 0.0341027 1.49697e-06 2.60126e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| businesses from ||| 0.0232558 0.0435582 1.49697e-06 1.91488e-07 2.718 ||| 0-1 ||| 43 668016 +a ||| but , at ||| 0.0162602 0.204175 2.99394e-06 2.77384e-06 2.718 ||| 0-2 ||| 123 668016 +a ||| but , in ||| 0.0015083 0.0587624 1.49697e-06 4.89664e-06 2.718 ||| 0-2 ||| 663 668016 +a ||| but , ||| 0.000163908 0.0003961 1.49697e-06 6.85715e-06 2.718 ||| 0-0 ||| 6101 668016 +a ||| but I am here ||| 0.142857 0.0003961 1.49697e-06 1.05363e-12 2.718 ||| 0-0 ||| 7 668016 +a ||| but I am ||| 0.00102669 0.0003961 1.49697e-06 5.19593e-10 2.718 ||| 0-0 ||| 974 668016 +a ||| but I ||| 0.000436205 0.0003961 2.99394e-06 4.06726e-07 2.718 ||| 0-0 ||| 4585 668016 +a ||| but against ||| 0.00699301 0.05146 1.49697e-06 1.7765e-06 2.718 ||| 0-1 ||| 143 668016 +a ||| but also to ||| 0.000501002 0.229811 1.49697e-06 1.20862e-06 2.718 ||| 0-2 ||| 1996 668016 +a ||| but also ||| 0.000179978 0.0003961 5.98788e-06 2.90295e-07 2.718 ||| 0-0 ||| 22225 668016 +a ||| but are of concern to ||| 1 0.229811 1.49697e-06 2.63617e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| but are prohibited from doing others ||| 1 0.0435582 1.49697e-06 1.06539e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| but are prohibited from doing ||| 1 0.0435582 1.49697e-06 1.09608e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| but are prohibited from ||| 1 0.0435582 1.49697e-06 2.98578e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| but as ||| 0.000821693 0.0243476 1.49697e-06 5.99506e-06 2.718 ||| 0-1 ||| 1217 668016 +a ||| but at the ||| 0.0026455 0.102285 2.99394e-06 1.20146e-07 2.718 ||| 0-0 0-1 ||| 756 668016 +a ||| but at ||| 0.00609013 0.204175 7.48485e-06 2.32598e-05 2.718 ||| 0-1 ||| 821 668016 +a ||| but by ||| 0.00154321 0.0170964 1.49697e-06 4.73081e-07 2.718 ||| 0-0 0-1 ||| 648 668016 +a ||| but economic and ||| 0.5 0.0003961 1.49697e-06 8.7365e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| but economic ||| 0.2 0.0003961 1.49697e-06 6.97475e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| but even ||| 0.00262467 0.0249698 1.49697e-06 1.12211e-07 2.718 ||| 0-0 0-1 ||| 381 668016 +a ||| but for ||| 0.000854701 0.0683377 1.49697e-06 2.51823e-05 2.718 ||| 0-1 ||| 1170 668016 +a ||| but has to ||| 0.0434783 0.229811 1.49697e-06 1.23229e-06 2.718 ||| 0-2 ||| 23 668016 +a ||| but if it wishes to do so ||| 0.333333 0.0014881 1.49697e-06 5.77266e-20 2.718 ||| 0-1 ||| 3 668016 +a ||| but if it wishes to do ||| 0.333333 0.0014881 1.49697e-06 2.54336e-17 2.718 ||| 0-1 ||| 3 668016 +a ||| but if it wishes to ||| 0.333333 0.0014881 1.49697e-06 7.4036e-15 2.718 ||| 0-1 ||| 3 668016 +a ||| but if it wishes ||| 0.333333 0.0014881 1.49697e-06 8.33193e-14 2.718 ||| 0-1 ||| 3 668016 +a ||| but if it ||| 0.0185185 0.0014881 1.49697e-06 1.57503e-09 2.718 ||| 0-1 ||| 54 668016 +a ||| but if ||| 0.000679348 0.0014881 1.49697e-06 8.85686e-08 2.718 ||| 0-1 ||| 1472 668016 +a ||| but in ||| 0.00190476 0.0295793 8.98182e-06 3.45474e-06 2.718 ||| 0-0 0-1 ||| 3150 668016 +a ||| but is ||| 0.00102987 0.0003961 1.49697e-06 1.80211e-06 2.718 ||| 0-0 ||| 971 668016 +a ||| but it is better not to make ||| 1 0.229811 1.49697e-06 1.34496e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| but it is better not to ||| 1 0.229811 1.49697e-06 7.73946e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| but nevertheless ||| 0.0042735 0.0151859 1.49697e-06 1.2103e-07 2.718 ||| 0-1 ||| 234 668016 +a ||| but no less importantly , as ||| 1 0.0243476 1.49697e-06 1.06084e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| but not least , to ||| 0.2 0.229811 1.49697e-06 2.3919e-11 2.718 ||| 0-4 ||| 5 668016 +a ||| but on ||| 0.00298211 0.0782999 4.49091e-06 2.59252e-05 2.718 ||| 0-1 ||| 1006 668016 +a ||| but simply left the country , in ||| 0.5 0.0587624 1.49697e-06 4.53094e-18 2.718 ||| 0-6 ||| 2 668016 +a ||| but there are also some in ||| 0.5 0.0587624 1.49697e-06 1.05021e-14 2.718 ||| 0-5 ||| 2 668016 +a ||| but they need to ||| 0.0454545 0.229811 1.49697e-06 7.16455e-10 2.718 ||| 0-3 ||| 22 668016 +a ||| but to accord ||| 1 0.229811 1.49697e-06 3.27973e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| but to comply ||| 0.5 0.229811 1.49697e-06 1.12037e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| but to increase quality , ||| 0.2 0.229811 1.49697e-06 1.81845e-13 2.718 ||| 0-1 ||| 5 668016 +a ||| but to increase quality ||| 0.2 0.229811 1.49697e-06 1.52485e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| but to increase ||| 0.0526316 0.229811 1.49697e-06 3.093e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| but to leave ||| 0.142857 0.229811 1.49697e-06 2.27426e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| but to rely on ||| 0.5 0.0782999 1.49697e-06 4.56126e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| but to ||| 0.00441696 0.229811 1.49697e-05 0.000239396 2.718 ||| 0-1 ||| 2264 668016 +a ||| but using ||| 0.0344828 0.0106396 1.49697e-06 5.24168e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| but which ||| 0.000519211 0.0003961 1.49697e-06 4.88439e-07 2.718 ||| 0-0 ||| 1926 668016 +a ||| but will always ||| 0.5 0.0561595 1.49697e-06 1.65547e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| but will ||| 0.00193798 0.0561595 1.49697e-06 9.6248e-06 2.718 ||| 0-1 ||| 516 668016 +a ||| but with little success ||| 0.25 0.0571592 1.49697e-06 1.09723e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| but with little ||| 0.2 0.0571592 1.49697e-06 1.84719e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| but with ||| 0.00102775 0.0571592 1.49697e-06 1.14094e-05 2.718 ||| 0-1 ||| 973 668016 +a ||| but ||| 0.000253334 0.0003961 6.73637e-05 5.75e-05 2.718 ||| 0-0 ||| 177631 668016 +a ||| butter on a ||| 0.25 0.0782999 1.49697e-06 3.02675e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| butter on ||| 0.333333 0.0782999 2.99394e-06 6.82841e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| by ' we ' ||| 0.5 0.0337966 1.49697e-06 1.102e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| by ' we ||| 0.5 0.0337966 1.49697e-06 3.20823e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| by ' ||| 0.00552486 0.0337966 1.49697e-06 2.82606e-05 2.718 ||| 0-0 ||| 181 668016 +a ||| by , ||| 0.00384615 0.0337966 1.49697e-06 0.000981168 2.718 ||| 0-0 ||| 260 668016 +a ||| by Annex 1 ||| 0.0666667 0.0337966 1.49697e-06 1.88673e-12 2.718 ||| 0-0 ||| 15 668016 +a ||| by Annex ||| 0.0357143 0.0337966 1.49697e-06 2.9619e-08 2.718 ||| 0-0 ||| 28 668016 +a ||| by Bart Staes ||| 0.0588235 0.0337966 1.49697e-06 1.3164e-15 2.718 ||| 0-0 ||| 17 668016 +a ||| by Bart ||| 0.0588235 0.0337966 1.49697e-06 3.291e-09 2.718 ||| 0-0 ||| 17 668016 +a ||| by Hizbollah ||| 0.2 0.0337966 1.49697e-06 3.291e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| by Hizbollah ’ ||| 1 0.0337966 1.49697e-06 5.73325e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| by Members ||| 0.00380228 0.0337966 1.49697e-06 1.21356e-06 2.718 ||| 0-0 ||| 263 668016 +a ||| by Mr Wijsenbeek to ||| 1 0.229811 1.49697e-06 8.40404e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| by Parliament at first ||| 0.0142857 0.204175 1.49697e-06 5.52224e-11 2.718 ||| 0-2 ||| 70 668016 +a ||| by Parliament at ||| 0.00862069 0.204175 1.49697e-06 1.02568e-07 2.718 ||| 0-2 ||| 116 668016 +a ||| by Parliament ||| 0.000353732 0.0337966 1.49697e-06 4.72259e-06 2.718 ||| 0-0 ||| 2827 668016 +a ||| by Poland to ||| 0.333333 0.229811 1.49697e-06 1.12186e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| by Transparency ||| 0.111111 0.0337966 1.49697e-06 3.291e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| by a blast ||| 0.5 0.0337966 1.49697e-06 2.55283e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| by a good ||| 0.0588235 0.0337966 1.49697e-06 1.89129e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| by a race ||| 0.333333 0.0337966 1.49697e-06 3.79278e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| by a yet to be established ||| 0.5 0.0337966 1.49697e-06 2.3254e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| by a yet to be ||| 0.5 0.0337966 1.49697e-06 1.55337e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| by a yet to ||| 0.5 0.0337966 1.49697e-06 8.57132e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| by a yet ||| 0.5 0.0337966 1.49697e-06 9.64606e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| by a ||| 0.00409142 0.0337966 4.34121e-05 0.000364691 2.718 ||| 0-0 ||| 7088 668016 +a ||| by accepting the ||| 0.0285714 0.0337966 1.49697e-06 5.25305e-09 2.718 ||| 0-0 ||| 35 668016 +a ||| by accepting ||| 0.00763359 0.0337966 1.49697e-06 8.5566e-08 2.718 ||| 0-0 ||| 131 668016 +a ||| by accusing ||| 0.2 0.152412 1.49697e-06 4.35235e-07 2.718 ||| 0-0 0-1 ||| 5 668016 +a ||| by adding ||| 0.00649351 0.0337966 1.49697e-06 1.18476e-07 2.718 ||| 0-0 ||| 154 668016 +a ||| by adopting ||| 0.00273973 0.0337966 2.99394e-06 4.02325e-07 2.718 ||| 0-0 ||| 730 668016 +a ||| by all means ||| 0.0133333 0.0337966 1.49697e-06 2.46371e-08 2.718 ||| 0-0 ||| 75 668016 +a ||| by all ||| 0.00104932 0.0337966 2.99394e-06 3.88782e-05 2.718 ||| 0-0 ||| 1906 668016 +a ||| by and watch ||| 0.0606061 0.0337966 2.99394e-06 1.85502e-09 2.718 ||| 0-0 ||| 33 668016 +a ||| by and ||| 0.0373134 0.0337966 1.49697e-05 0.000103057 2.718 ||| 0-0 ||| 268 668016 +a ||| by any ||| 0.00225225 0.0337966 1.49697e-06 1.24416e-05 2.718 ||| 0-0 ||| 444 668016 +a ||| by anyone ||| 0.0172414 0.0421172 1.49697e-06 1.99023e-06 2.718 ||| 0-0 0-1 ||| 58 668016 +a ||| by anything ||| 0.2 0.0337966 1.49697e-06 1.29089e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| by applying ||| 0.00487805 0.0337966 1.49697e-06 2.7233e-07 2.718 ||| 0-0 ||| 205 668016 +a ||| by approved ||| 1 0.0337966 1.49697e-06 3.75997e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| by area of ||| 0.2 0.0337966 1.49697e-06 1.85755e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| by area ||| 0.125 0.0337966 1.49697e-06 3.41688e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| by around ||| 0.0140845 0.0634635 1.49697e-06 7.44177e-06 2.718 ||| 0-0 0-1 ||| 71 668016 +a ||| by arranging for ||| 0.25 0.0683377 1.49697e-06 9.09254e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| by as ||| 0.0322581 0.0290721 1.49697e-06 7.21749e-05 2.718 ||| 0-0 0-1 ||| 31 668016 +a ||| by at least ||| 0.00763359 0.204175 1.49697e-06 4.38503e-08 2.718 ||| 0-1 ||| 131 668016 +a ||| by at ||| 0.00980392 0.204175 1.49697e-06 0.000178689 2.718 ||| 0-1 ||| 102 668016 +a ||| by backing ||| 0.0588235 0.0337966 1.49697e-06 1.39045e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| by both whoever is guilty ||| 1 0.0337966 1.49697e-06 3.62217e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| by both whoever is ||| 1 0.0337966 1.49697e-06 1.70857e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| by both whoever ||| 1 0.0337966 1.49697e-06 5.45154e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| by both ||| 0.0017094 0.0337966 1.49697e-06 1.36289e-05 2.718 ||| 0-0 ||| 585 668016 +a ||| by breaking it down ||| 1 0.0337966 1.49697e-06 1.54231e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| by breaking it ||| 0.5 0.0337966 1.49697e-06 2.2093e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| by breaking ||| 0.04 0.0337966 1.49697e-06 1.24235e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| by bringing an action before ||| 0.5 0.0337966 1.49697e-06 2.22013e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| by bringing an action ||| 0.5 0.0337966 1.49697e-06 8.87696e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| by bringing an ||| 0.5 0.0337966 1.49697e-06 2.93647e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| by bringing stability ||| 0.25 0.0337966 1.49697e-06 1.3808e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| by bringing ||| 0.0155039 0.0337966 2.99394e-06 6.60668e-07 2.718 ||| 0-0 ||| 129 668016 +a ||| by buying out ||| 1 0.0337966 1.49697e-06 1.26058e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| by buying ||| 0.0344828 0.0337966 1.49697e-06 3.291e-08 2.718 ||| 0-0 ||| 29 668016 +a ||| by calculating ||| 0.2 0.0337966 1.49697e-06 9.05025e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| by calling ||| 0.00775194 0.0337966 1.49697e-06 5.42192e-07 2.718 ||| 0-0 ||| 129 668016 +a ||| by certain ||| 0.00246305 0.0337966 1.49697e-06 2.34484e-06 2.718 ||| 0-0 ||| 406 668016 +a ||| by compliant ||| 0.25 0.0337966 1.49697e-06 5.75925e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| by congratulating ||| 0.00261097 0.145261 2.99394e-06 4.87397e-06 2.718 ||| 0-0 0-1 ||| 766 668016 +a ||| by decreasing reliance on ||| 1 0.0782999 1.49697e-06 2.86799e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| by default , ||| 0.125 0.0337966 1.49697e-06 2.15857e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| by default ||| 0.0263158 0.0337966 1.49697e-06 1.81005e-08 2.718 ||| 0-0 ||| 38 668016 +a ||| by definition ||| 0.00246914 0.0337966 1.49697e-06 2.24611e-07 2.718 ||| 0-0 ||| 405 668016 +a ||| by discontented ||| 1 0.0337966 1.49697e-06 3.291e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| by either ||| 0.0172414 0.0337966 1.49697e-06 7.12337e-06 2.718 ||| 0-0 ||| 58 668016 +a ||| by enhancing their ||| 0.2 0.0337966 1.49697e-06 6.86628e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| by enhancing ||| 0.0192308 0.0337966 1.49697e-06 5.9238e-08 2.718 ||| 0-0 ||| 52 668016 +a ||| by even a single cigarette ||| 1 0.0337966 1.49697e-06 7.74791e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| by even a single ||| 1 0.0337966 1.49697e-06 3.52178e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| by even a ||| 1 0.0337966 1.49697e-06 2.21914e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| by even ||| 0.222222 0.0337966 2.99394e-06 5.00643e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| by exempting ||| 0.142857 0.133687 1.49697e-06 2.40243e-07 2.718 ||| 0-0 0-1 ||| 7 668016 +a ||| by following ||| 0.0181818 0.0720432 1.49697e-06 5.17555e-06 2.718 ||| 0-1 ||| 55 668016 +a ||| by force to ||| 0.333333 0.229811 1.49697e-06 3.13018e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| by force ||| 0.00714286 0.0337966 1.49697e-06 1.40032e-06 2.718 ||| 0-0 ||| 140 668016 +a ||| by forced march , and this after ||| 1 0.0337966 1.49697e-06 6.06872e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| by forced march , and this ||| 1 0.0337966 1.49697e-06 2.23938e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| by forced march , and ||| 1 0.0337966 1.49697e-06 3.46578e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| by forced march , ||| 1 0.0337966 1.49697e-06 2.76689e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| by forced march ||| 1 0.0337966 1.49697e-06 2.32016e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| by forced ||| 0.333333 0.0337966 1.49697e-06 5.80039e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| by giants ||| 1 0.0337966 1.49697e-06 3.291e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| by giving them ||| 0.0153846 0.0337966 1.49697e-06 3.47814e-09 2.718 ||| 0-0 ||| 65 668016 +a ||| by giving ||| 0.00475059 0.0337966 2.99394e-06 1.29665e-06 2.718 ||| 0-0 ||| 421 668016 +a ||| by going against ||| 0.333333 0.05146 1.49697e-06 1.16796e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| by going to the ||| 0.2 0.229811 1.49697e-06 9.66256e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| by going to ||| 0.1 0.229811 1.49697e-06 1.57392e-06 2.718 ||| 0-2 ||| 10 668016 +a ||| by going ||| 0.0425532 0.0337966 2.99394e-06 7.04109e-06 2.718 ||| 0-0 ||| 47 668016 +a ||| by hanging ||| 0.1 0.0337966 1.49697e-06 7.40475e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| by having ||| 0.00934579 0.0337966 2.99394e-06 3.15031e-06 2.718 ||| 0-0 ||| 214 668016 +a ||| by him in ||| 0.5 0.0587624 1.49697e-06 1.0113e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| by including it ||| 0.0625 0.0337966 1.49697e-06 1.52749e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| by including ||| 0.00543478 0.0337966 1.49697e-06 8.58951e-07 2.718 ||| 0-0 ||| 184 668016 +a ||| by individual ||| 0.00787402 0.0337966 1.49697e-06 1.16337e-06 2.718 ||| 0-0 ||| 127 668016 +a ||| by informing ||| 0.0526316 0.247008 1.49697e-06 1.08782e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| by introducing ||| 0.00178571 0.0337966 1.49697e-06 2.57521e-07 2.718 ||| 0-0 ||| 560 668016 +a ||| by involving ||| 0.0204082 0.0681536 1.49697e-06 4.78347e-06 2.718 ||| 0-0 0-1 ||| 49 668016 +a ||| by it , ||| 0.0833333 0.0337966 2.99394e-06 1.74483e-05 2.718 ||| 0-0 ||| 24 668016 +a ||| by it ||| 0.0410959 0.0337966 1.34727e-05 0.000146311 2.718 ||| 0-0 ||| 219 668016 +a ||| by joint agreement ||| 0.333333 0.0337966 1.49697e-06 9.8713e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| by joint ||| 0.25 0.0337966 1.49697e-06 5.3561e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| by lending ||| 0.0769231 0.0337966 1.49697e-06 5.5947e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| by looking after ||| 0.333333 0.0341027 1.49697e-06 4.6592e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| by looking through ||| 1 0.0337966 1.49697e-06 4.00677e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| by looking ||| 0.0212766 0.0337966 1.49697e-06 8.70469e-07 2.718 ||| 0-0 ||| 47 668016 +a ||| by making ||| 0.00129366 0.0337966 1.49697e-06 3.16512e-06 2.718 ||| 0-0 ||| 773 668016 +a ||| by many ||| 0.003367 0.0337966 2.99394e-06 2.8245e-06 2.718 ||| 0-0 ||| 594 668016 +a ||| by means of ||| 0.0028454 0.0337966 1.34727e-05 2.83441e-07 2.718 ||| 0-0 ||| 3163 668016 +a ||| by means ||| 0.00363825 0.0337966 2.09576e-05 5.21377e-06 2.718 ||| 0-0 ||| 3848 668016 +a ||| by members ||| 0.00769231 0.0337966 1.49697e-06 1.21356e-06 2.718 ||| 0-0 ||| 130 668016 +a ||| by merely resorting ||| 0.5 0.0337966 1.49697e-06 1.88673e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| by merely ||| 0.0555556 0.0337966 1.49697e-06 5.24092e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| by more than ||| 0.010582 0.0242272 2.99394e-06 1.50698e-08 2.718 ||| 0-2 ||| 189 668016 +a ||| by name ||| 0.0123457 0.0337966 1.49697e-06 7.19083e-07 2.718 ||| 0-0 ||| 81 668016 +a ||| by national ||| 0.0135135 0.0337966 1.49697e-06 1.05723e-06 2.718 ||| 0-0 ||| 74 668016 +a ||| by no means an easy task , ||| 1 0.0337966 1.49697e-06 1.02455e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| by no means an easy task ||| 1 0.0337966 1.49697e-06 8.59131e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| by no means an easy ||| 1 0.0337966 1.49697e-06 6.8185e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| by no means an ||| 0.0666667 0.0337966 1.49697e-06 1.80384e-11 2.718 ||| 0-0 ||| 15 668016 +a ||| by no means ||| 0.00205339 0.0337966 1.49697e-06 4.0584e-09 2.718 ||| 0-0 ||| 487 668016 +a ||| by no ||| 0.00263158 0.0337966 1.49697e-06 6.40429e-06 2.718 ||| 0-0 ||| 380 668016 +a ||| by not ||| 0.00404858 0.0337966 1.49697e-06 2.80895e-05 2.718 ||| 0-0 ||| 247 668016 +a ||| by now placing strain upon the Stability ||| 1 0.19056 1.49697e-06 1.02617e-24 2.718 ||| 0-4 ||| 1 668016 +a ||| by now placing strain upon the ||| 1 0.19056 1.49697e-06 1.90032e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| by now placing strain upon ||| 1 0.19056 1.49697e-06 3.0954e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| by offering my ||| 0.0434783 0.103522 1.49697e-06 5.9795e-10 2.718 ||| 0-1 ||| 23 668016 +a ||| by offering ||| 0.00591716 0.103522 1.49697e-06 9.29793e-07 2.718 ||| 0-1 ||| 169 668016 +a ||| by on ||| 0.111111 0.0782999 1.49697e-06 0.000199166 2.718 ||| 0-1 ||| 9 668016 +a ||| by one , ||| 0.0322581 0.0337966 1.49697e-06 4.08951e-06 2.718 ||| 0-0 ||| 31 668016 +a ||| by one ||| 0.00314465 0.0337966 2.99394e-06 3.42922e-05 2.718 ||| 0-0 ||| 636 668016 +a ||| by only ||| 0.0140845 0.0337966 1.49697e-06 9.15803e-06 2.718 ||| 0-0 ||| 71 668016 +a ||| by or from a distance ||| 1 0.131537 1.49697e-06 6.49129e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| by ordering ||| 0.142857 0.12 1.49697e-06 4.30508e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| by paying tribute to ||| 0.0294118 0.229811 1.49697e-06 1.20595e-12 2.718 ||| 0-3 ||| 34 668016 +a ||| by penal ||| 0.5 0.0337966 1.49697e-06 1.81005e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| by people from ||| 0.2 0.0435582 1.49697e-06 3.32666e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| by people involved ||| 1 0.0337966 1.49697e-06 2.50423e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| by people ||| 0.00334448 0.0337966 1.49697e-06 7.24185e-06 2.718 ||| 0-0 ||| 299 668016 +a ||| by persisting in ||| 0.5 0.0587624 1.49697e-06 4.41615e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| by post ||| 0.0588235 0.0355856 1.49697e-06 3.07709e-07 2.718 ||| 0-0 0-1 ||| 17 668016 +a ||| by presenting ||| 0.012987 0.0337966 1.49697e-06 1.81005e-07 2.718 ||| 0-0 ||| 77 668016 +a ||| by promoting ||| 0.00230947 0.0337966 1.49697e-06 2.33661e-07 2.718 ||| 0-0 ||| 433 668016 +a ||| by protecting ||| 0.0128205 0.0337966 1.49697e-06 1.03666e-07 2.718 ||| 0-0 ||| 78 668016 +a ||| by quite ||| 0.1 0.0337966 1.49697e-06 3.20955e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| by reference to ||| 0.0153846 0.229811 1.49697e-06 1.56877e-07 2.718 ||| 0-2 ||| 65 668016 +a ||| by regulating ||| 0.0294118 0.0337966 1.49697e-06 2.6328e-08 2.718 ||| 0-0 ||| 34 668016 +a ||| by reviewing ||| 0.0588235 0.0368603 1.49697e-06 1.57968e-07 2.718 ||| 0-0 0-1 ||| 17 668016 +a ||| by rigid ||| 0.5 0.0337966 1.49697e-06 1.48095e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| by saying ||| 0.000628536 0.0337966 1.49697e-06 1.45956e-06 2.718 ||| 0-0 ||| 1591 668016 +a ||| by setting a charge for ||| 1 0.0683377 1.49697e-06 4.1058e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| by setting free ||| 0.5 0.0337966 1.49697e-06 9.1136e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| by setting ||| 0.00862069 0.0337966 2.99394e-06 7.81613e-07 2.718 ||| 0-0 ||| 232 668016 +a ||| by showing our ||| 0.5 0.0337966 1.49697e-06 3.50685e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| by showing ||| 0.0121951 0.0337966 1.49697e-06 2.5423e-07 2.718 ||| 0-0 ||| 82 668016 +a ||| by slaughtering ||| 0.25 0.0337966 1.49697e-06 9.05025e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| by smaller suppliers ||| 1 0.0337966 1.49697e-06 2.55382e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| by smaller ||| 0.2 0.0337966 1.49697e-06 7.98068e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| by so doing , ||| 0.037037 0.0337966 1.49697e-06 8.17516e-10 2.718 ||| 0-0 ||| 27 668016 +a ||| by so doing ||| 0.02 0.0337966 1.49697e-06 6.85521e-09 2.718 ||| 0-0 ||| 50 668016 +a ||| by so ||| 0.0833333 0.0337966 2.99394e-06 1.8674e-05 2.718 ||| 0-0 ||| 24 668016 +a ||| by some ||| 0.00224972 0.0337966 2.99394e-06 8.96222e-06 2.718 ||| 0-0 ||| 889 668016 +a ||| by something which starts out as a ||| 0.25 0.0243476 1.49697e-06 3.45601e-19 2.718 ||| 0-5 ||| 4 668016 +a ||| by something which starts out as ||| 0.25 0.0243476 1.49697e-06 7.79684e-18 2.718 ||| 0-5 ||| 4 668016 +a ||| by step , to ||| 1 0.229811 1.49697e-06 3.23502e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| by stoning of ||| 0.2 0.0188479 1.49697e-06 6.2116e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| by strengthening ||| 0.00383142 0.0337966 1.49697e-06 1.06957e-07 2.718 ||| 0-0 ||| 261 668016 +a ||| by subsidies provided ||| 1 0.0337966 1.49697e-06 2.45147e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| by subsidies ||| 0.111111 0.0337966 1.49697e-06 1.06957e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| by such ||| 0.010582 0.0337966 2.99394e-06 1.70219e-05 2.718 ||| 0-0 ||| 189 668016 +a ||| by switched off ||| 0.166667 0.0893962 1.49697e-06 1.60632e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| by taking the opportunity ||| 0.2 0.0337966 1.49697e-06 3.86188e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| by taking the ||| 0.0149254 0.0337966 1.49697e-06 2.14668e-07 2.718 ||| 0-0 ||| 67 668016 +a ||| by taking ||| 0.00700935 0.0337966 4.49091e-06 3.49669e-06 2.718 ||| 0-0 ||| 428 668016 +a ||| by telling people in other countries ||| 1 0.143208 1.49697e-06 7.77029e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| by telling people in other ||| 1 0.143208 1.49697e-06 2.04643e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| by telling people in ||| 1 0.143208 1.49697e-06 1.57964e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| by telling people ||| 1 0.143208 1.49697e-06 7.37996e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| by telling ||| 0.0487805 0.0885023 2.99394e-06 1.31393e-06 2.718 ||| 0-0 0-1 ||| 41 668016 +a ||| by thanking ||| 0.00155039 0.0337966 2.99394e-06 5.01878e-08 2.718 ||| 0-0 ||| 1290 668016 +a ||| by that Member State ||| 0.2 0.0337966 1.49697e-06 8.57235e-12 2.718 ||| 0-0 ||| 5 668016 +a ||| by that Member ||| 0.333333 0.0337966 1.49697e-06 7.13174e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| by that ||| 0.014862 0.0337966 1.04788e-05 0.0001384 2.718 ||| 0-0 ||| 471 668016 +a ||| by the Bank ||| 0.0625 0.0337966 1.49697e-06 1.39913e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| by the Community , ||| 0.0333333 0.0337966 1.49697e-06 9.75216e-09 2.718 ||| 0-0 ||| 30 668016 +a ||| by the Community ||| 0.00497512 0.0337966 1.49697e-06 8.17759e-08 2.718 ||| 0-0 ||| 201 668016 +a ||| by the European Union for ||| 0.0357143 0.0683377 1.49697e-06 2.2137e-11 2.718 ||| 0-4 ||| 28 668016 +a ||| by the European Union ||| 0.000593472 0.0337966 1.49697e-06 9.41453e-10 2.718 ||| 0-0 ||| 1685 668016 +a ||| by the European ||| 0.00226244 0.0337966 1.49697e-06 1.68901e-06 2.718 ||| 0-0 ||| 442 668016 +a ||| by the United States ||| 0.00246305 0.0337966 1.49697e-06 2.95026e-11 2.718 ||| 0-0 ||| 406 668016 +a ||| by the United ||| 0.0117647 0.0337966 1.49697e-06 6.18244e-08 2.718 ||| 0-0 ||| 85 668016 +a ||| by the citizens to ||| 0.25 0.229811 1.49697e-06 1.23068e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| by the end of ||| 0.000745156 0.0188479 1.49697e-06 4.14804e-09 2.718 ||| 0-3 ||| 1342 668016 +a ||| by the fact that such carriers have ||| 1 0.0337966 1.49697e-06 3.32557e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| by the fact that such carriers ||| 1 0.0337966 1.49697e-06 2.78063e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| by the fact that such ||| 1 0.0337966 1.49697e-06 5.14931e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| by the fact that ||| 0.00194553 0.0337966 1.49697e-06 2.48891e-08 2.718 ||| 0-0 ||| 514 668016 +a ||| by the fact ||| 0.00552486 0.0337966 7.48485e-06 1.47959e-06 2.718 ||| 0-0 ||| 905 668016 +a ||| by the forces of law and ||| 0.5 0.0337966 1.49697e-06 3.20779e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| by the forces of law ||| 0.5 0.0337966 1.49697e-06 2.56093e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| by the forces of ||| 0.0416667 0.0337966 1.49697e-06 1.4526e-09 2.718 ||| 0-0 ||| 24 668016 +a ||| by the forces ||| 0.0344828 0.0337966 1.49697e-06 2.67198e-08 2.718 ||| 0-0 ||| 29 668016 +a ||| by the light of day , ||| 1 0.0337966 1.49697e-06 1.45812e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| by the light of day ||| 1 0.0337966 1.49697e-06 1.2227e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| by the light of ||| 0.5 0.0337966 1.49697e-06 4.77243e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| by the light ||| 0.5 0.0337966 1.49697e-06 8.77866e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| by the new worldwide ||| 1 0.0337966 1.49697e-06 1.75101e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| by the new ||| 0.00363636 0.0337966 1.49697e-06 3.01899e-07 2.718 ||| 0-0 ||| 275 668016 +a ||| by the rapporteur in her report ||| 0.1 0.0587624 1.49697e-06 1.5616e-16 2.718 ||| 0-3 ||| 10 668016 +a ||| by the rapporteur in her ||| 0.125 0.0587624 1.49697e-06 3.80972e-13 2.718 ||| 0-3 ||| 8 668016 +a ||| by the rapporteur in ||| 0.0175439 0.0587624 1.49697e-06 1.40012e-09 2.718 ||| 0-3 ||| 57 668016 +a ||| by the serious situation of their public ||| 1 0.0188479 1.49697e-06 1.05944e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| by the serious situation of their ||| 1 0.0188479 1.49697e-06 6.55594e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| by the serious situation of ||| 1 0.0188479 1.49697e-06 5.65606e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| by the success of racist parties ||| 0.333333 0.0337966 1.49697e-06 4.78886e-20 2.718 ||| 0-0 ||| 3 668016 +a ||| by the success of racist ||| 0.333333 0.0337966 1.49697e-06 6.52433e-16 2.718 ||| 0-0 ||| 3 668016 +a ||| by the success of ||| 0.0714286 0.0337966 1.49697e-06 1.63108e-09 2.718 ||| 0-0 ||| 14 668016 +a ||| by the success ||| 0.0625 0.0337966 1.49697e-06 3.0003e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| by the time ||| 0.00892857 0.0337966 2.99394e-06 8.29224e-07 2.718 ||| 0-0 ||| 224 668016 +a ||| by the various ||| 0.00469484 0.0337966 1.49697e-06 7.79876e-08 2.718 ||| 0-0 ||| 213 668016 +a ||| by the way , to ||| 0.333333 0.229811 1.49697e-06 2.90244e-08 2.718 ||| 0-4 ||| 3 668016 +a ||| by the way ||| 0.0018622 0.0337966 1.49697e-06 1.0888e-06 2.718 ||| 0-0 ||| 537 668016 +a ||| by the willingness to ||| 0.333333 0.229811 1.49697e-06 1.46779e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| by the year ||| 0.00255754 0.0337966 1.49697e-06 1.25972e-07 2.718 ||| 0-0 ||| 391 668016 +a ||| by the ||| 0.00199843 0.0337966 0.000209576 0.000505101 2.718 ||| 0-0 ||| 70055 668016 +a ||| by them , ||| 0.0434783 0.0337966 1.49697e-06 2.63189e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| by them ||| 0.0272727 0.0337966 8.98182e-06 2.20694e-05 2.718 ||| 0-0 ||| 220 668016 +a ||| by then ||| 0.00625 0.0337966 1.49697e-06 1.32496e-05 2.718 ||| 0-0 ||| 160 668016 +a ||| by these ships ||| 1 0.0337966 1.49697e-06 1.3823e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| by these ||| 0.00315457 0.0337966 2.99394e-06 8.53274e-06 2.718 ||| 0-0 ||| 634 668016 +a ||| by this price increase ||| 0.333333 0.0337966 1.49697e-06 3.50976e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| by this price ||| 0.333333 0.0337966 1.49697e-06 2.71654e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| by this ||| 0.00261584 0.0337966 1.04788e-05 5.31612e-05 2.718 ||| 0-0 ||| 2676 668016 +a ||| by those ||| 0.00159744 0.0337966 1.49697e-06 5.95753e-06 2.718 ||| 0-0 ||| 626 668016 +a ||| by tiny ||| 1 0.0337966 1.49697e-06 2.6328e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| by to ||| 0.666667 0.229811 2.99394e-06 0.00183912 2.718 ||| 0-1 ||| 3 668016 +a ||| by transport mode ||| 1 0.0337966 1.49697e-06 3.64042e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| by transport ||| 0.0555556 0.0337966 1.49697e-06 8.4661e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| by trying to conceal things ||| 0.5 0.229811 1.49697e-06 5.3117e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| by trying to conceal ||| 0.5 0.229811 1.49697e-06 1.29239e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| by trying to ||| 0.0285714 0.229811 2.99394e-06 2.11866e-07 2.718 ||| 0-2 ||| 70 668016 +a ||| by unlocking ||| 0.333333 0.0337966 1.49697e-06 3.291e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| by us , ||| 0.02 0.0337966 1.49697e-06 2.82792e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| by us here ||| 0.333333 0.0337966 1.49697e-06 4.80858e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| by us to ||| 0.2 0.229811 1.49697e-06 5.30071e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| by us ||| 0.016 0.0337966 5.98788e-06 2.37133e-05 2.718 ||| 0-0 ||| 250 668016 +a ||| by using ||| 0.00170358 0.0337966 1.49697e-06 6.39277e-07 2.718 ||| 0-0 ||| 587 668016 +a ||| by virtue ||| 0.00334448 0.0337966 1.49697e-06 1.81005e-07 2.718 ||| 0-0 ||| 299 668016 +a ||| by waving ||| 0.5 0.0337966 1.49697e-06 5.75925e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| by way of apology ||| 0.333333 0.0337966 1.49697e-06 1.34982e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| by way of ||| 0.0077951 0.0337966 1.04788e-05 9.64156e-07 2.718 ||| 0-0 ||| 898 668016 +a ||| by way ||| 0.00791296 0.0337966 1.19758e-05 1.77352e-05 2.718 ||| 0-0 ||| 1011 668016 +a ||| by welcoming ||| 0.0126582 0.0728257 1.49697e-06 8.78697e-07 2.718 ||| 0-0 0-1 ||| 79 668016 +a ||| by well ||| 0.5 0.0337966 1.49697e-06 1.30455e-05 2.718 ||| 0-0 ||| 2 668016 +a ||| by which , ||| 0.0714286 0.0337966 1.49697e-06 8.33463e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| by which I ||| 0.00403226 0.0337966 1.49697e-06 4.94362e-07 2.718 ||| 0-0 ||| 248 668016 +a ||| by which ||| 0.0123318 0.0337966 1.64667e-05 6.98893e-05 2.718 ||| 0-0 ||| 892 668016 +a ||| by whom ||| 0.0108696 0.0337966 1.49697e-06 5.47952e-07 2.718 ||| 0-0 ||| 92 668016 +a ||| by yourselves ||| 0.2 0.0337966 1.49697e-06 9.2148e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| by ||| 0.0272711 0.0337966 0.00846836 0.0082275 2.718 ||| 0-0 ||| 207436 668016 +a ||| bypassing ||| 0.0102041 0.0789474 1.49697e-06 8.2e-06 2.718 ||| 0-0 ||| 98 668016 +a ||| calculated by ||| 0.0666667 0.0337966 1.49697e-06 9.46162e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| calculated in ||| 0.0454545 0.0587624 1.49697e-06 6.90949e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| calculated on ||| 0.0322581 0.0782999 1.49697e-06 4.36259e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| calculated to ||| 0.0526316 0.229811 1.49697e-06 4.02847e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| call - on ||| 1 0.0782999 1.49697e-06 3.17675e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| call directed at ||| 1 0.204175 1.49697e-06 2.36498e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| call for action ||| 0.030303 0.0683377 1.49697e-06 2.47292e-09 2.718 ||| 0-1 ||| 33 668016 +a ||| call for special treatment ||| 1 0.0683377 1.49697e-06 4.23645e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| call for special ||| 0.25 0.0683377 1.49697e-06 7.00239e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| call for ||| 0.0044991 0.0683377 2.24546e-05 8.18037e-06 2.718 ||| 0-1 ||| 3334 668016 +a ||| call it ||| 0.003861 0.0032909 1.49697e-06 8.44702e-07 2.718 ||| 0-0 ||| 259 668016 +a ||| call on them ||| 0.0277778 0.0782999 1.49697e-06 2.25904e-08 2.718 ||| 0-1 ||| 36 668016 +a ||| call on you to ||| 0.008 0.102882 1.49697e-06 2.1536e-10 2.718 ||| 0-1 0-2 0-3 ||| 125 668016 +a ||| call on you ||| 0.00675676 0.0782999 1.49697e-06 2.71912e-08 2.718 ||| 0-1 ||| 148 668016 +a ||| call on ||| 0.00716418 0.0782999 1.79636e-05 8.4217e-06 2.718 ||| 0-1 ||| 1675 668016 +a ||| call thoroughly ||| 0.1 0.0915663 1.49697e-06 2.31102e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| call to mind ||| 0.0666667 0.229811 1.49697e-06 1.95895e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| call to use ||| 0.166667 0.229811 1.49697e-06 3.78103e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| call to ||| 0.0119048 0.229811 5.98788e-06 7.7767e-05 2.718 ||| 0-1 ||| 336 668016 +a ||| call upon him to ||| 1 0.229811 1.49697e-06 5.91389e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| call upon ||| 0.00298507 0.19056 2.99394e-06 4.37673e-07 2.718 ||| 0-1 ||| 670 668016 +a ||| call ||| 0.00225162 0.0032909 2.39515e-05 4.75e-05 2.718 ||| 0-0 ||| 7106 668016 +a ||| called daily to ||| 1 0.229811 1.49697e-06 1.38203e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| called for at ||| 0.0909091 0.136256 1.49697e-06 2.17972e-07 2.718 ||| 0-1 0-2 ||| 11 668016 +a ||| called for in ||| 0.015625 0.0683377 2.99394e-06 1.3708e-07 2.718 ||| 0-1 ||| 128 668016 +a ||| called for what might ||| 0.333333 0.0683377 1.49697e-06 3.45056e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| called for what ||| 0.333333 0.0683377 1.49697e-06 8.98583e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| called for ||| 0.0054672 0.0683377 1.64667e-05 6.40427e-06 2.718 ||| 0-1 ||| 2012 668016 +a ||| called on at ||| 0.5 0.141237 1.49697e-06 2.24402e-07 2.718 ||| 0-1 0-2 ||| 2 668016 +a ||| called on to make ||| 0.166667 0.154056 1.49697e-06 4.01364e-09 2.718 ||| 0-1 0-2 ||| 6 668016 +a ||| called on to ||| 0.020202 0.154056 2.99394e-06 2.30961e-06 2.718 ||| 0-1 0-2 ||| 99 668016 +a ||| called on ||| 0.00823723 0.0782999 7.48485e-06 6.59321e-06 2.718 ||| 0-1 ||| 607 668016 +a ||| called to ||| 0.0288462 0.229811 4.49091e-06 6.08824e-05 2.718 ||| 0-1 ||| 104 668016 +a ||| called upon to think ||| 1 0.19056 1.49697e-06 1.1646e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| called upon to ||| 0.0192308 0.210186 7.48485e-06 1.2003e-07 2.718 ||| 0-1 0-2 ||| 260 668016 +a ||| called upon ||| 0.0145631 0.19056 8.98182e-06 3.42647e-07 2.718 ||| 0-1 ||| 412 668016 +a ||| calling a spade a ||| 0.166667 0.0047307 1.49697e-06 1.86261e-13 2.718 ||| 0-0 ||| 6 668016 +a ||| calling a spade ||| 0.1 0.0047307 1.49697e-06 4.20209e-12 2.718 ||| 0-0 ||| 10 668016 +a ||| calling a ||| 0.0212766 0.0047307 1.49697e-06 1.05052e-06 2.718 ||| 0-0 ||| 47 668016 +a ||| calling for ||| 0.00382816 0.0683377 1.34727e-05 2.42832e-06 2.718 ||| 0-1 ||| 2351 668016 +a ||| calling into ||| 0.0113636 0.107578 1.49697e-06 4.00296e-07 2.718 ||| 0-1 ||| 88 668016 +a ||| calling it ||| 0.030303 0.002688 1.49697e-06 7.02942e-09 2.718 ||| 0-0 0-1 ||| 33 668016 +a ||| calling on ||| 0.0121739 0.0782999 1.04788e-05 2.49996e-06 2.718 ||| 0-1 ||| 575 668016 +a ||| calling to mind ||| 1 0.229811 1.49697e-06 5.81508e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| calling to ||| 0.111111 0.229811 1.49697e-06 2.30849e-05 2.718 ||| 0-1 ||| 9 668016 +a ||| calling upon ||| 0.0243902 0.19056 2.99394e-06 1.29922e-07 2.718 ||| 0-1 ||| 82 668016 +a ||| calling ||| 0.00425985 0.0047307 1.19758e-05 2.37e-05 2.718 ||| 0-0 ||| 1878 668016 +a ||| calls into ||| 0.0136986 0.107578 1.49697e-06 2.18675e-07 2.718 ||| 0-1 ||| 73 668016 +a ||| calls on ||| 0.0011976 0.0782999 1.49697e-06 1.36568e-06 2.718 ||| 0-1 ||| 835 668016 +a ||| calls to ||| 0.008 0.229811 1.49697e-06 1.26109e-05 2.718 ||| 0-1 ||| 125 668016 +a ||| calls upon ||| 0.00735294 0.19056 1.49697e-06 7.0974e-08 2.718 ||| 0-1 ||| 136 668016 +a ||| calls ||| 0.00172058 0.0034185 7.48485e-06 1.92e-05 2.718 ||| 0-0 ||| 2906 668016 +a ||| calmly keeps to the framework of ||| 0.5 0.0188479 1.49697e-06 2.4214e-19 2.718 ||| 0-5 ||| 2 668016 +a ||| came back to me ||| 0.0833333 0.229811 1.49697e-06 1.78747e-11 2.718 ||| 0-2 ||| 12 668016 +a ||| came back to ||| 0.0952381 0.229811 2.99394e-06 2.96872e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| came back ||| 0.0333333 0.0536618 1.49697e-06 9.26982e-08 2.718 ||| 0-1 ||| 30 668016 +a ||| came down here ||| 0.2 0.0182742 1.49697e-06 7.56285e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| came into being - ||| 0.25 0.107578 1.49697e-06 8.21589e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| came into being ||| 0.011236 0.107578 1.49697e-06 2.17807e-09 2.718 ||| 0-1 ||| 89 668016 +a ||| came into ||| 0.00626305 0.107578 4.49091e-06 7.65362e-07 2.718 ||| 0-1 ||| 479 668016 +a ||| came out in ||| 0.0645161 0.0587624 2.99394e-06 2.89976e-08 2.718 ||| 0-2 ||| 31 668016 +a ||| came out of ||| 0.0147059 0.0188479 1.49697e-06 1.42755e-08 2.718 ||| 0-2 ||| 68 668016 +a ||| came out with ||| 0.111111 0.0571592 1.49697e-06 8.05756e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| came out ||| 0.00543478 0.0669777 1.49697e-06 5.16726e-07 2.718 ||| 0-1 ||| 184 668016 +a ||| came to light ||| 0.0192308 0.229811 1.49697e-06 7.67118e-09 2.718 ||| 0-1 ||| 52 668016 +a ||| came to ||| 0.0133657 0.229811 1.64667e-05 4.4138e-05 2.718 ||| 0-1 ||| 823 668016 +a ||| came up against ||| 0.0434783 0.05146 1.49697e-06 1.11706e-09 2.718 ||| 0-2 ||| 23 668016 +a ||| came up with some sobering ||| 0.333333 0.0571592 1.49697e-06 5.47045e-18 2.718 ||| 0-2 ||| 3 668016 +a ||| came up with some ||| 0.142857 0.0571592 1.49697e-06 7.81493e-12 2.718 ||| 0-2 ||| 7 668016 +a ||| came up with ||| 0.00980392 0.0571592 1.49697e-06 7.17427e-09 2.718 ||| 0-2 ||| 102 668016 +a ||| campaigners ||| 0.00598802 0.0298507 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 167 668016 +a ||| can 't help ||| 0.2 0.259976 1.49697e-06 8.23597e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| can , leave this task to ||| 1 0.229811 1.49697e-06 9.61e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| can , on ||| 0.111111 0.0782999 1.49697e-06 1.34557e-05 2.718 ||| 0-2 ||| 9 668016 +a ||| can about ||| 0.2 0.0526361 1.49697e-06 1.49884e-05 2.718 ||| 0-1 ||| 5 668016 +a ||| can accuse ||| 0.0625 0.256173 1.49697e-06 2.25452e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| can adjust to ||| 1 0.229811 1.49697e-06 4.89694e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| can agree on ||| 0.0181818 0.0782999 1.49697e-06 1.79515e-08 2.718 ||| 0-2 ||| 55 668016 +a ||| can agree to put ||| 1 0.229811 1.49697e-06 1.82774e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| can agree to ||| 0.0212766 0.229811 1.49697e-06 1.65767e-07 2.718 ||| 0-2 ||| 47 668016 +a ||| can also see into ||| 1 0.107578 1.49697e-06 6.4268e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| can and ||| 0.00114548 0.0015873 1.49697e-06 5.73891e-06 2.718 ||| 0-1 ||| 873 668016 +a ||| can answer ||| 0.0212766 0.0026107 1.49697e-06 6.24603e-08 2.718 ||| 0-1 ||| 47 668016 +a ||| can ask workers to allow ||| 1 0.229811 1.49697e-06 2.36336e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| can ask workers to ||| 1 0.229811 1.49697e-06 9.74178e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| can at ||| 0.032967 0.204175 4.49091e-06 0.000101231 2.718 ||| 0-1 ||| 91 668016 +a ||| can be achieved on ||| 0.25 0.0782999 1.49697e-06 3.42102e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| can be allowed to ||| 0.0434783 0.229811 1.49697e-06 3.05704e-09 2.718 ||| 0-3 ||| 23 668016 +a ||| can be attributed to ||| 0.0344828 0.229811 1.49697e-06 1.22735e-10 2.718 ||| 0-3 ||| 29 668016 +a ||| can be brought to ||| 0.037037 0.229811 1.49697e-06 5.28704e-09 2.718 ||| 0-3 ||| 27 668016 +a ||| can be considered to ||| 0.0833333 0.229811 1.49697e-06 2.03173e-09 2.718 ||| 0-3 ||| 12 668016 +a ||| can be delivered to ||| 1 0.229811 1.49697e-06 6.51439e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| can be directed towards ||| 0.166667 0.155507 1.49697e-06 5.69012e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| can be for ||| 0.142857 0.0683377 1.49697e-06 1.98624e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| can be given to what might be ||| 0.333333 0.229811 1.49697e-06 1.26537e-16 2.718 ||| 0-3 ||| 3 668016 +a ||| can be given to what might ||| 0.333333 0.229811 1.49697e-06 6.98214e-15 2.718 ||| 0-3 ||| 3 668016 +a ||| can be given to what ||| 0.333333 0.229811 1.49697e-06 1.81827e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| can be given to ||| 0.0333333 0.229811 1.49697e-06 1.29589e-08 2.718 ||| 0-3 ||| 30 668016 +a ||| can be informed ||| 0.0769231 0.027911 1.49697e-06 6.29586e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| can be involved by ||| 0.125 0.0337966 1.49697e-06 1.53358e-10 2.718 ||| 0-3 ||| 8 668016 +a ||| can be made to ||| 0.037037 0.229811 1.49697e-06 3.95546e-08 2.718 ||| 0-3 ||| 27 668016 +a ||| can be provided for ||| 0.111111 0.0683377 1.49697e-06 4.55247e-10 2.718 ||| 0-3 ||| 9 668016 +a ||| can be put to ||| 0.0526316 0.229811 1.49697e-06 2.08196e-08 2.718 ||| 0-3 ||| 19 668016 +a ||| can be said to ||| 0.0263158 0.229811 1.49697e-06 7.76628e-09 2.718 ||| 0-3 ||| 38 668016 +a ||| can be seen most clearly from the ||| 1 0.0435582 1.49697e-06 3.95533e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| can be seen most clearly from ||| 1 0.0435582 1.49697e-06 6.44277e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| can be set against ||| 0.333333 0.05146 1.49697e-06 8.18865e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| can be taken in the ||| 0.142857 0.0587624 1.49697e-06 1.81229e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| can be taken in ||| 0.0588235 0.0587624 1.49697e-06 2.95201e-09 2.718 ||| 0-3 ||| 17 668016 +a ||| can be traced back to ||| 0.0625 0.229811 1.49697e-06 5.08009e-14 2.718 ||| 0-4 ||| 16 668016 +a ||| can be turned on ||| 1 0.0782999 1.49697e-06 1.14716e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| can be used to ||| 0.00704225 0.229811 1.49697e-06 8.1005e-09 2.718 ||| 0-3 ||| 142 668016 +a ||| can be verified on ||| 1 0.0782999 1.49697e-06 5.1121e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| can be ||| 0.000260722 0.0008168 5.98788e-06 1.55494e-06 2.718 ||| 0-0 ||| 15342 668016 +a ||| can beat ||| 0.5 0.178082 2.99394e-06 1.05885e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| can begin to take ||| 1 0.229811 1.49697e-06 9.89703e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| can begin to ||| 0.030303 0.229811 1.49697e-06 6.14722e-08 2.718 ||| 0-2 ||| 33 668016 +a ||| can bring it to ||| 0.5 0.229811 1.49697e-06 5.76788e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| can come towards ||| 1 0.155507 1.49697e-06 8.51943e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| can continue to stick precisely to ||| 0.5 0.229811 1.49697e-06 4.26694e-17 2.718 ||| 0-2 ||| 2 668016 +a ||| can continue to stick precisely ||| 0.5 0.229811 1.49697e-06 4.80196e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| can continue to stick ||| 0.5 0.229811 1.49697e-06 4.87014e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| can continue to ||| 0.00507614 0.229811 1.49697e-06 2.41096e-07 2.718 ||| 0-2 ||| 197 668016 +a ||| can contribute to ||| 0.00373134 0.229811 1.49697e-06 4.053e-08 2.718 ||| 0-2 ||| 268 668016 +a ||| can cope with ||| 0.0294118 0.0571592 1.49697e-06 1.1272e-09 2.718 ||| 0-2 ||| 34 668016 +a ||| can do is to ||| 0.0243902 0.229811 1.49697e-06 1.12178e-07 2.718 ||| 0-3 ||| 41 668016 +a ||| can draw from ||| 0.142857 0.0435582 1.49697e-06 2.53511e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| can draw on it ||| 1 0.0782999 1.49697e-06 2.37571e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| can draw on ||| 0.0666667 0.0782999 1.49697e-06 1.33593e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| can engage in ||| 0.2 0.0587624 1.49697e-06 8.68498e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| can enter ||| 0.0166667 0.0005408 1.49697e-06 5.35374e-09 2.718 ||| 0-1 ||| 60 668016 +a ||| can get back to ||| 0.2 0.229811 1.49697e-06 3.06382e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| can give ||| 0.00263158 0.0241455 1.49697e-06 1.67245e-06 2.718 ||| 0-1 ||| 380 668016 +a ||| can go along with ||| 0.0666667 0.0571592 1.49697e-06 5.0673e-12 2.718 ||| 0-3 ||| 15 668016 +a ||| can go ||| 0.00716846 0.0008168 2.99394e-06 5.01758e-08 2.718 ||| 0-0 ||| 279 668016 +a ||| can help us ||| 0.00869565 0.259976 1.49697e-06 5.63841e-08 2.718 ||| 0-1 ||| 115 668016 +a ||| can help ||| 0.00460299 0.259976 5.98788e-06 1.95629e-05 2.718 ||| 0-1 ||| 869 668016 +a ||| can immediately reassure ||| 0.166667 0.284916 1.49697e-06 3.28966e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| can involve ||| 0.0454545 0.170498 1.49697e-06 2.03323e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| can it help to ||| 0.5 0.244893 1.49697e-06 1.21867e-07 2.718 ||| 0-2 0-3 ||| 2 668016 +a ||| can justifiably be demanded . in ||| 1 0.0587624 1.49697e-06 1.94234e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| can leave with ||| 1 0.0571592 1.49697e-06 4.71734e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| can lend support ||| 0.5 0.0027239 1.49697e-06 6.06329e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| can live with it ||| 0.5 0.0571592 1.49697e-06 8.90111e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| can live with ||| 0.0243902 0.0571592 1.49697e-06 5.00535e-09 2.718 ||| 0-2 ||| 41 668016 +a ||| can make it possible for ||| 0.333333 0.0683377 1.49697e-06 2.71671e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| can make to ||| 0.0588235 0.229811 4.49091e-06 1.81062e-06 2.718 ||| 0-2 ||| 51 668016 +a ||| can no longer listen to because ||| 0.5 0.229811 1.49697e-06 7.54528e-19 2.718 ||| 0-4 ||| 2 668016 +a ||| can no longer listen to ||| 0.5 0.229811 1.49697e-06 2.29619e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| can on ||| 0.0588235 0.0782999 1.49697e-06 0.000112832 2.718 ||| 0-1 ||| 17 668016 +a ||| can only depend on what is expected ||| 0.111111 0.0782999 1.49697e-06 5.41644e-21 2.718 ||| 0-3 ||| 9 668016 +a ||| can only depend on what is ||| 0.111111 0.0782999 1.49697e-06 1.01622e-16 2.718 ||| 0-3 ||| 9 668016 +a ||| can only depend on what ||| 0.111111 0.0782999 1.49697e-06 3.24244e-15 2.718 ||| 0-3 ||| 9 668016 +a ||| can only depend on ||| 0.1 0.0782999 1.49697e-06 2.31091e-12 2.718 ||| 0-3 ||| 10 668016 +a ||| can provide some specific instances drawn from ||| 1 0.0435582 1.49697e-06 1.70352e-24 2.718 ||| 0-6 ||| 1 668016 +a ||| can reach a ||| 0.0416667 0.182593 1.49697e-06 1.9338e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| can reach ||| 0.0384615 0.182593 5.98788e-06 4.3627e-06 2.718 ||| 0-1 ||| 104 668016 +a ||| can read in ||| 0.142857 0.0587624 1.49697e-06 8.6135e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| can really deal with ||| 0.5 0.0571592 1.49697e-06 1.02131e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| can replace ||| 0.0204082 0.0073363 1.49697e-06 3.53942e-08 2.718 ||| 0-1 ||| 49 668016 +a ||| can restore trust in ||| 0.25 0.0587624 1.49697e-06 4.67613e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| can see how , at ||| 1 0.204175 1.49697e-06 3.04861e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| can speak at ||| 1 0.204175 1.49697e-06 1.36966e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| can stick to ||| 0.5 0.229811 1.49697e-06 2.10464e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| can take on ||| 0.0526316 0.0782999 1.49697e-06 1.81659e-07 2.718 ||| 0-2 ||| 19 668016 +a ||| can then ||| 0.00531915 0.0252938 1.49697e-06 2.53559e-06 2.718 ||| 0-1 ||| 188 668016 +a ||| can therefore ||| 0.00378788 0.0008168 1.49697e-06 7.17545e-08 2.718 ||| 0-0 ||| 264 668016 +a ||| can to ensure that ||| 0.00636943 0.229811 1.49697e-06 7.85886e-09 2.718 ||| 0-1 ||| 157 668016 +a ||| can to ensure ||| 0.0052356 0.229811 1.49697e-06 4.67189e-07 2.718 ||| 0-1 ||| 191 668016 +a ||| can to ||| 0.019937 0.229811 2.84424e-05 0.0010419 2.718 ||| 0-1 ||| 953 668016 +a ||| can ultimately be ||| 0.0909091 0.0196689 1.49697e-06 6.84028e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| can ultimately ||| 0.0625 0.0196689 1.49697e-06 3.77439e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| can understand why , over ||| 1 0.0682544 1.49697e-06 1.5862e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| can use to ||| 0.0333333 0.229811 1.49697e-06 5.06573e-07 2.718 ||| 0-2 ||| 30 668016 +a ||| can vote for ||| 0.04 0.0683377 1.49697e-06 1.72398e-08 2.718 ||| 0-2 ||| 25 668016 +a ||| can we protect ||| 0.0588235 0.0026951 1.49697e-06 6.48291e-10 2.718 ||| 0-2 ||| 17 668016 +a ||| can you tell me on ||| 0.5 0.0782999 1.49697e-06 2.15397e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| can ||| 0.000577756 0.0008168 5.38909e-05 8.58e-05 2.718 ||| 0-0 ||| 62310 668016 +a ||| candidates for ||| 0.00847458 0.0683377 2.99394e-06 3.16897e-07 2.718 ||| 0-1 ||| 236 668016 +a ||| cannot afford to rest ||| 0.125 0.229811 1.49697e-06 1.67661e-13 2.718 ||| 0-2 ||| 8 668016 +a ||| cannot afford to ||| 0.0121212 0.229811 2.99394e-06 2.21773e-09 2.718 ||| 0-2 ||| 165 668016 +a ||| cannot be allowed to fail ||| 0.5 0.229811 1.49697e-06 1.25047e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| cannot be allowed to ||| 0.00826446 0.229811 1.49697e-06 2.31568e-10 2.718 ||| 0-3 ||| 121 668016 +a ||| cannot be in ||| 0.0243902 0.0587624 1.49697e-06 2.45322e-07 2.718 ||| 0-2 ||| 41 668016 +a ||| cannot escape the ||| 0.0769231 0.0416961 1.49697e-06 2.14414e-11 2.718 ||| 0-1 0-2 ||| 13 668016 +a ||| cannot escape ||| 0.0217391 0.0829268 1.49697e-06 1.39911e-08 2.718 ||| 0-1 ||| 46 668016 +a ||| cannot fail to ||| 0.00925926 0.229811 1.49697e-06 4.26184e-09 2.718 ||| 0-2 ||| 108 668016 +a ||| cannot help but ||| 0.0645161 0.259976 2.99394e-06 1.01271e-09 2.718 ||| 0-1 ||| 31 668016 +a ||| cannot help ||| 0.027027 0.259976 2.99394e-06 1.48187e-06 2.718 ||| 0-1 ||| 74 668016 +a ||| cannot keep pace with ||| 0.0769231 0.0571592 1.49697e-06 1.13689e-14 2.718 ||| 0-3 ||| 13 668016 +a ||| cannot of ||| 1 0.0188479 1.49697e-06 6.66404e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| cannot wait for ||| 0.0454545 0.0683377 1.49697e-06 2.24153e-10 2.718 ||| 0-2 ||| 22 668016 +a ||| cap on the floor ||| 0.5 0.0782999 1.49697e-06 4.25613e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| cap on the ||| 0.1 0.0782999 1.49697e-06 1.00144e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| cap on ||| 0.0434783 0.0782999 1.49697e-06 1.63123e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| capability for ||| 0.125 0.0683377 1.49697e-06 9.21213e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| capable of maintaining ||| 0.125 0.0188479 1.49697e-06 2.79517e-11 2.718 ||| 0-1 ||| 8 668016 +a ||| capable of understanding ||| 0.0416667 0.0188479 1.49697e-06 5.2487e-11 2.718 ||| 0-1 ||| 24 668016 +a ||| capable of ||| 0.00122951 0.0188479 4.49091e-06 1.55287e-06 2.718 ||| 0-1 ||| 2440 668016 +a ||| capacity at ||| 0.0909091 0.204175 1.49697e-06 2.48799e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| capacity in ||| 0.0120482 0.0587624 1.49697e-06 4.39203e-06 2.718 ||| 0-1 ||| 83 668016 +a ||| capacity of ||| 0.00276243 0.0188479 1.49697e-06 2.16219e-06 2.718 ||| 0-1 ||| 362 668016 +a ||| capacity to ||| 0.00462428 0.229811 5.98788e-06 2.5607e-05 2.718 ||| 0-1 ||| 865 668016 +a ||| capital , at ||| 0.333333 0.204175 1.49697e-06 1.05125e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| capital at ||| 0.133333 0.204175 2.99394e-06 8.81517e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| capital cities to believe ||| 0.5 0.229811 1.49697e-06 5.39454e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| capital cities to ||| 0.25 0.229811 1.49697e-06 1.73291e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| capital participation in ||| 1 0.0587624 1.49697e-06 3.75029e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| capital to ||| 0.0147059 0.229811 1.49697e-06 9.07281e-06 2.718 ||| 0-1 ||| 68 668016 +a ||| captivity on a number of ||| 1 0.0782999 1.49697e-06 3.16623e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| captivity on a number ||| 1 0.0782999 1.49697e-06 5.82413e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| captivity on a ||| 1 0.0782999 1.49697e-06 1.17707e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| captivity on ||| 1 0.0782999 1.49697e-06 2.65549e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| car industry in Europe in ||| 1 0.0587624 1.49697e-06 1.64187e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| car ||| 0.000373274 0.0049161 1.49697e-06 1.55e-05 2.718 ||| 0-0 ||| 2679 668016 +a ||| carbon dioxide in the ||| 0.125 0.0587624 1.49697e-06 2.35331e-14 2.718 ||| 0-2 ||| 8 668016 +a ||| carbon dioxide in ||| 0.1 0.0587624 1.49697e-06 3.83326e-13 2.718 ||| 0-2 ||| 10 668016 +a ||| carcass to ||| 0.5 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| cards in ||| 0.166667 0.0587624 1.49697e-06 5.40742e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| care , on ||| 0.5 0.0782999 1.49697e-06 4.59186e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| care deeply about ||| 0.0833333 0.0526361 1.49697e-06 1.19688e-11 2.718 ||| 0-2 ||| 12 668016 +a ||| care for ||| 0.00684932 0.0683377 4.49091e-06 3.74012e-06 2.718 ||| 0-1 ||| 438 668016 +a ||| care of ||| 0.00316456 0.0188479 1.49697e-06 3.00222e-06 2.718 ||| 0-1 ||| 316 668016 +a ||| care to ||| 0.0206186 0.229811 5.98788e-06 3.55556e-05 2.718 ||| 0-1 ||| 194 668016 +a ||| cared for ||| 0.025 0.0683377 1.49697e-06 6.63273e-08 2.718 ||| 0-1 ||| 40 668016 +a ||| careful look at ||| 0.0666667 0.204175 1.49697e-06 2.74821e-10 2.718 ||| 0-2 ||| 15 668016 +a ||| carefully about ||| 0.02 0.0526361 1.49697e-06 1.97541e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| carefully in ||| 0.0322581 0.0587624 1.49697e-06 2.35523e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| carefully monitoring developments in ||| 0.25 0.0587624 1.49697e-06 2.68306e-15 2.718 ||| 0-3 ||| 4 668016 +a ||| carefully to what ||| 0.0169492 0.229811 1.49697e-06 1.92671e-08 2.718 ||| 0-1 ||| 59 668016 +a ||| carefully to ||| 0.00869565 0.229811 4.49091e-06 1.37318e-05 2.718 ||| 0-1 ||| 345 668016 +a ||| cares for ||| 0.0666667 0.0683377 1.49697e-06 5.15879e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| carpet in ||| 0.142857 0.0587624 1.49697e-06 7.57039e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| carried away by ||| 0.05 0.0377856 1.49697e-06 3.64367e-10 2.718 ||| 0-1 ||| 20 668016 +a ||| carried away ||| 0.0222222 0.0377856 1.49697e-06 6.94019e-08 2.718 ||| 0-1 ||| 45 668016 +a ||| carried by a ||| 0.25 0.0337966 2.99394e-06 1.07474e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| carried by ||| 0.047619 0.0337966 4.49091e-06 2.42464e-06 2.718 ||| 0-1 ||| 63 668016 +a ||| carried forward to ||| 0.166667 0.229811 1.49697e-06 5.74393e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| carried on the Internet ||| 1 0.0782999 1.49697e-06 1.18736e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| carried on the ||| 0.166667 0.0782999 1.49697e-06 6.86337e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| carried on ||| 0.0212766 0.0782999 2.99394e-06 1.11796e-05 2.718 ||| 0-1 ||| 94 668016 +a ||| carried out a ||| 0.00729927 0.0669777 1.49697e-06 5.35706e-08 2.718 ||| 0-1 ||| 137 668016 +a ||| carried out at ||| 0.0232558 0.204175 4.49091e-06 3.84198e-08 2.718 ||| 0-2 ||| 129 668016 +a ||| carried out by a ||| 0.0416667 0.0337966 1.49697e-06 4.1167e-10 2.718 ||| 0-2 ||| 24 668016 +a ||| carried out by ||| 0.00378215 0.0337966 7.48485e-06 9.28736e-09 2.718 ||| 0-2 ||| 1322 668016 +a ||| carried out for ||| 0.0188679 0.0683377 1.49697e-06 4.15953e-08 2.718 ||| 0-2 ||| 53 668016 +a ||| carried out in the ||| 0.00529101 0.0587624 1.49697e-06 4.16373e-09 2.718 ||| 0-2 ||| 189 668016 +a ||| carried out in ||| 0.00714286 0.0587624 7.48485e-06 6.78223e-08 2.718 ||| 0-2 ||| 700 668016 +a ||| carried out on them ||| 0.4 0.0782999 2.99394e-06 1.14867e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| carried out on ||| 0.0220264 0.0782999 7.48485e-06 4.28224e-08 2.718 ||| 0-2 ||| 227 668016 +a ||| carried out to ||| 0.0232558 0.229811 1.49697e-06 3.95427e-07 2.718 ||| 0-2 ||| 43 668016 +a ||| carried out trials ||| 0.333333 0.0669777 1.49697e-06 5.68025e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| carried out within ||| 0.0151515 0.0123496 1.49697e-06 5.61475e-10 2.718 ||| 0-2 ||| 66 668016 +a ||| carried out ||| 0.00301262 0.0669777 2.39515e-05 1.20856e-06 2.718 ||| 0-1 ||| 5311 668016 +a ||| carried over into ||| 0.142857 0.0682544 1.49697e-06 7.02836e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| carried over to ||| 0.0434783 0.229811 1.49697e-06 4.97071e-08 2.718 ||| 0-2 ||| 23 668016 +a ||| carried over ||| 0.0169492 0.0682544 1.49697e-06 6.84559e-07 2.718 ||| 0-1 ||| 59 668016 +a ||| carried through ||| 0.0196078 0.230708 1.49697e-06 2.3426e-06 2.718 ||| 0-1 ||| 51 668016 +a ||| carried to ||| 0.142857 0.229811 1.49697e-06 0.000103234 2.718 ||| 0-1 ||| 7 668016 +a ||| carry at ||| 0.5 0.204175 1.49697e-06 6.2455e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| carry on being ||| 0.2 0.0782999 1.49697e-06 1.98101e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| carry on until ||| 1 0.0782999 1.49697e-06 3.38313e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| carry on ||| 0.00760456 0.0782999 5.98788e-06 6.96118e-06 2.718 ||| 0-1 ||| 526 668016 +a ||| carry out new ||| 0.25 0.0669777 1.49697e-06 4.49789e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| carry out the ||| 0.00323625 0.0669777 1.49697e-06 4.61994e-08 2.718 ||| 0-1 ||| 309 668016 +a ||| carry out ||| 0.00218579 0.0669777 8.98182e-06 7.52533e-07 2.718 ||| 0-1 ||| 2745 668016 +a ||| carry through ||| 0.0151515 0.230708 1.49697e-06 1.45866e-06 2.718 ||| 0-1 ||| 66 668016 +a ||| carrying on with ||| 0.1 0.0782999 1.49697e-06 1.4676e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| carrying on ||| 0.0357143 0.0782999 2.99394e-06 2.2951e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| carrying out ||| 0.000674309 0.0669777 1.49697e-06 2.4811e-07 2.718 ||| 0-1 ||| 1483 668016 +a ||| cars against ||| 0.0625 0.05146 1.49697e-06 4.39316e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| carte ||| 0.00917431 0.0263158 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 109 668016 +a ||| case , as ||| 0.00862069 0.0243476 1.49697e-06 1.11928e-06 2.718 ||| 0-2 ||| 116 668016 +a ||| case , because ||| 0.0181818 0.0052046 1.49697e-06 4.12245e-08 2.718 ||| 0-2 ||| 55 668016 +a ||| case , to ||| 0.0208333 0.229811 1.49697e-06 4.46952e-05 2.718 ||| 0-2 ||| 48 668016 +a ||| case , you see , that ||| 1 0.0008521 1.49697e-06 2.36317e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| case against ||| 0.0363636 0.05146 2.99394e-06 2.78121e-06 2.718 ||| 0-1 ||| 55 668016 +a ||| case as a ||| 0.166667 0.0243476 1.49697e-06 4.16024e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| case as ||| 0.0133333 0.0243476 1.49697e-06 9.38559e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| case at present in ||| 0.25 0.0587624 1.49697e-06 9.85183e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| case at present ||| 0.0294118 0.204175 1.49697e-06 1.33277e-08 2.718 ||| 0-1 ||| 34 668016 +a ||| case at ||| 0.0306122 0.204175 4.49091e-06 3.64145e-05 2.718 ||| 0-1 ||| 98 668016 +a ||| case before ||| 0.0204082 0.0203282 1.49697e-06 5.67368e-07 2.718 ||| 0-1 ||| 49 668016 +a ||| case concerning ||| 0.05 0.22348 1.49697e-06 4.37589e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| case due to ||| 0.333333 0.229811 1.49697e-06 1.03591e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| case during ||| 0.0833333 0.0054313 1.49697e-06 9.96077e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| case for a ||| 0.0232558 0.0683377 1.49697e-06 1.74751e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| case for ||| 0.0060241 0.0683377 5.98788e-06 3.94242e-05 2.718 ||| 0-1 ||| 664 668016 +a ||| case here ||| 0.0107527 0.0182742 1.49697e-06 9.199e-07 2.718 ||| 0-1 ||| 93 668016 +a ||| case in ||| 0.00219058 0.0587624 2.99394e-06 6.42823e-05 2.718 ||| 0-1 ||| 913 668016 +a ||| case of illegal immigrants , intercepted at ||| 1 0.204175 1.49697e-06 5.72147e-23 2.718 ||| 0-6 ||| 1 668016 +a ||| case of sums ||| 1 0.0188479 1.49697e-06 3.9874e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| case of ||| 0.00250627 0.0188479 2.09576e-05 3.1646e-05 2.718 ||| 0-1 ||| 5586 668016 +a ||| case to ||| 0.0364583 0.229811 1.04788e-05 0.000374788 2.718 ||| 0-1 ||| 192 668016 +a ||| case with ||| 0.00189394 0.0571592 1.49697e-06 1.78621e-05 2.718 ||| 0-1 ||| 528 668016 +a ||| case-by-case details via ||| 1 0.330861 1.49697e-06 1.11225e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| cases , to ||| 0.0384615 0.229811 1.49697e-06 5.35139e-06 2.718 ||| 0-2 ||| 26 668016 +a ||| cases for ||| 0.0212766 0.0683377 1.49697e-06 4.72029e-06 2.718 ||| 0-1 ||| 47 668016 +a ||| cases of default on ||| 1 0.0782999 1.49697e-06 5.81206e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| cases of ||| 0.00242424 0.0188479 5.98788e-06 3.78901e-06 2.718 ||| 0-1 ||| 1650 668016 +a ||| cases where they refer to ||| 1 0.229811 1.49697e-06 3.46605e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| cast out on ||| 1 0.0782999 1.49697e-06 4.91143e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| cast the recipient in ||| 1 0.0587624 1.49697e-06 5.36097e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| casting of ||| 0.5 0.0188479 1.49697e-06 1.80429e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| casual in ||| 0.1 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| casual ||| 0.0116279 0.0258621 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 86 668016 +a ||| catch up in ||| 0.0714286 0.0587624 1.49697e-06 3.54497e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| catch up with ||| 0.0126582 0.0571592 1.49697e-06 9.85038e-10 2.718 ||| 0-2 ||| 79 668016 +a ||| catch ||| 0.00104058 0.0034014 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 961 668016 +a ||| catches up on ||| 1 0.0782999 1.49697e-06 6.08083e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| category as ||| 0.0416667 0.0243476 1.49697e-06 1.48254e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| cater for ||| 0.0227273 0.0683377 1.49697e-06 9.21213e-08 2.718 ||| 0-1 ||| 44 668016 +a ||| caught at ||| 0.333333 0.204175 1.49697e-06 9.42781e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| caught up in ||| 0.00628931 0.0587624 1.49697e-06 5.67604e-09 2.718 ||| 0-2 ||| 159 668016 +a ||| caught up with ||| 0.0769231 0.0571592 1.49697e-06 1.5772e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| caught up ||| 0.00680272 0.0195077 1.49697e-06 3.40045e-08 2.718 ||| 0-1 ||| 147 668016 +a ||| cause for reflection ||| 0.142857 0.0683377 1.49697e-06 9.12218e-11 2.718 ||| 0-1 ||| 7 668016 +a ||| cause for ||| 0.00743494 0.0683377 8.98182e-06 6.65852e-06 2.718 ||| 0-1 ||| 807 668016 +a ||| cause of concern to ||| 0.2 0.229811 1.49697e-06 4.59402e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| cause of ||| 0.00438596 0.0188479 7.48485e-06 5.34483e-06 2.718 ||| 0-1 ||| 1140 668016 +a ||| cause to be ||| 0.0588235 0.229811 1.49697e-06 1.14717e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| cause to fear ||| 0.142857 0.229811 1.49697e-06 1.39259e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| cause to ||| 0.0432099 0.229811 1.04788e-05 6.32995e-05 2.718 ||| 0-1 ||| 162 668016 +a ||| cause unfair criticism to be ||| 0.333333 0.229811 1.49697e-06 1.83065e-16 2.718 ||| 0-3 ||| 3 668016 +a ||| cause unfair criticism to ||| 0.333333 0.229811 1.49697e-06 1.01013e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| cause us to ||| 0.0277778 0.229811 1.49697e-06 1.82442e-07 2.718 ||| 0-2 ||| 36 668016 +a ||| caused a shift in ||| 1 0.0587624 1.49697e-06 4.4769e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| caused by a ||| 0.020202 0.0337966 2.99394e-06 3.09622e-08 2.718 ||| 0-1 ||| 99 668016 +a ||| caused by the fact ||| 0.047619 0.0337966 1.49697e-06 1.25617e-10 2.718 ||| 0-1 ||| 21 668016 +a ||| caused by the ||| 0.00137552 0.0337966 1.49697e-06 4.28831e-08 2.718 ||| 0-1 ||| 727 668016 +a ||| caused by using ||| 0.1 0.0337966 1.49697e-06 5.42746e-11 2.718 ||| 0-1 ||| 10 668016 +a ||| caused by ||| 0.00327198 0.0337966 1.19758e-05 6.98515e-07 2.718 ||| 0-1 ||| 2445 668016 +a ||| caused concern in ||| 0.1 0.0587624 1.49697e-06 6.80984e-10 2.718 ||| 0-2 ||| 10 668016 +a ||| caused injury to ||| 0.5 0.229811 1.49697e-06 9.51699e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| caused to ||| 0.0306122 0.229811 4.49091e-06 2.97406e-05 2.718 ||| 0-1 ||| 98 668016 +a ||| caused ||| 0.000233536 0.0017836 1.49697e-06 8.2e-06 2.718 ||| 0-0 ||| 4282 668016 +a ||| causes are ||| 0.0285714 0.0009806 1.49697e-06 8.58067e-09 2.718 ||| 0-1 ||| 35 668016 +a ||| causes to ||| 0.0555556 0.229811 1.49697e-06 9.07281e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| causing ||| 0.00306044 0.0028474 5.98788e-06 4.6e-06 2.718 ||| 0-0 ||| 1307 668016 +a ||| caution , perhaps , ||| 1 0.0022198 1.49697e-06 3.96017e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| caution , perhaps ||| 1 0.0022198 1.49697e-06 3.32077e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| caution , ||| 0.0133333 0.0022198 1.49697e-06 2.14658e-07 2.718 ||| 0-0 ||| 75 668016 +a ||| caution ||| 0.00321027 0.0022198 2.99394e-06 1.8e-06 2.718 ||| 0-0 ||| 623 668016 +a ||| cautious in ||| 0.0204082 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 49 668016 +a ||| caved in ||| 0.111111 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| celebration of the ||| 0.0294118 0.0188479 1.49697e-06 2.54223e-09 2.718 ||| 0-1 ||| 34 668016 +a ||| celebration of ||| 0.0151515 0.0188479 1.49697e-06 4.14099e-08 2.718 ||| 0-1 ||| 66 668016 +a ||| censure , in ||| 0.25 0.0587624 1.49697e-06 2.29284e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| cent with ||| 0.333333 0.0571592 1.49697e-06 1.43578e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| central item on the agenda , ||| 1 0.0782999 1.49697e-06 2.84601e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| central item on the agenda ||| 1 0.0782999 1.49697e-06 2.3865e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| central item on the ||| 1 0.0782999 1.49697e-06 2.40332e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| central item on ||| 0.5 0.0782999 1.49697e-06 3.91473e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| centre around ||| 0.166667 0.0931303 1.49697e-06 2.8944e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| centres on ||| 0.0238095 0.0782999 1.49697e-06 4.62814e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| centres over to our ||| 1 0.229811 1.49697e-06 2.8385e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| centres over to ||| 1 0.229811 1.49697e-06 2.05778e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| certain in ||| 0.125 0.0587624 1.49697e-06 1.71235e-05 2.718 ||| 0-1 ||| 8 668016 +a ||| certain sort of ||| 0.5 0.0188479 1.49697e-06 1.34709e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| certain support schemes for farmers and ||| 1 0.0683377 1.49697e-06 3.335e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| certain support schemes for farmers ||| 0.142857 0.0683377 1.49697e-06 2.66248e-18 2.718 ||| 0-3 ||| 7 668016 +a ||| certain support schemes for ||| 0.142857 0.0683377 1.49697e-06 6.60665e-14 2.718 ||| 0-3 ||| 7 668016 +a ||| certain tasks from ||| 1 0.0435582 1.49697e-06 3.32369e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| certain to attract ||| 1 0.229811 1.49697e-06 6.78885e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| certain to ||| 0.0508475 0.229811 4.49091e-06 9.9836e-05 2.718 ||| 0-1 ||| 59 668016 +a ||| certain ways , to ||| 1 0.229811 1.49697e-06 1.14773e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| certainly , for ||| 0.25 0.0683377 1.49697e-06 1.10079e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| certainly as ||| 0.0322581 0.0243476 1.49697e-06 2.19749e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| certainly has to be in ||| 1 0.0587624 1.49697e-06 1.24761e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| certainly helps ease ||| 0.111111 0.27467 1.49697e-06 1.03921e-12 2.718 ||| 0-1 ||| 9 668016 +a ||| certainly helps ||| 0.0909091 0.27467 1.49697e-06 9.99245e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| certainly improved in ||| 0.333333 0.0587624 1.49697e-06 3.4165e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| certainly in ||| 0.00487805 0.0587624 1.49697e-06 1.50507e-05 2.718 ||| 0-1 ||| 205 668016 +a ||| certainly not to create ||| 1 0.229811 1.49697e-06 3.37337e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| certainly not to ||| 0.0322581 0.229811 1.49697e-06 2.99589e-07 2.718 ||| 0-2 ||| 31 668016 +a ||| certainly show the same commitment in tackling ||| 1 0.0587624 1.49697e-06 1.13886e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| certainly show the same commitment in ||| 1 0.0587624 1.49697e-06 5.55539e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| certainty for ||| 0.037037 0.0683377 1.49697e-06 4.12703e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| certainty with regard ||| 0.1 0.0571592 1.49697e-06 1.27318e-10 2.718 ||| 0-1 ||| 10 668016 +a ||| certainty with ||| 0.1 0.0571592 1.49697e-06 1.86985e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| cessation of ||| 0.010101 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-1 ||| 99 668016 +a ||| chairman of ||| 0.0019802 0.0188479 2.99394e-06 2.86911e-07 2.718 ||| 0-1 ||| 1010 668016 +a ||| challenge for ||| 0.00712589 0.0683377 4.49091e-06 1.57712e-06 2.718 ||| 0-1 ||| 421 668016 +a ||| challenge of ||| 0.00282087 0.0188479 2.99394e-06 1.26596e-06 2.718 ||| 0-1 ||| 709 668016 +a ||| challenge on ||| 0.0833333 0.0782999 1.49697e-06 1.62364e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| challenge to ||| 0.00664452 0.229811 2.99394e-06 1.49929e-05 2.718 ||| 0-1 ||| 301 668016 +a ||| challenges ||| 0.000275748 0.0038943 2.99394e-06 3.01e-05 2.718 ||| 0-0 ||| 7253 668016 +a ||| champing at the bit and ||| 1 0.204175 1.49697e-06 8.29154e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| champing at the bit ||| 0.5 0.204175 1.49697e-06 6.61952e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| champing at the ||| 0.5 0.204175 1.49697e-06 8.35798e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| champing at ||| 0.5 0.204175 1.49697e-06 1.36142e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| chance , to ||| 0.25 0.229811 1.49697e-06 2.75298e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| chance of administering ||| 0.333333 0.0188479 1.49697e-06 3.5086e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| chance of surfacing ||| 0.333333 0.0188479 1.49697e-06 1.36446e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| chance of ||| 0.00368664 0.0188479 5.98788e-06 1.94922e-06 2.718 ||| 0-1 ||| 1085 668016 +a ||| chance to do so ||| 0.03125 0.229811 1.49697e-06 1.79995e-10 2.718 ||| 0-1 ||| 32 668016 +a ||| chance to do ||| 0.0322581 0.229811 1.49697e-06 7.93035e-08 2.718 ||| 0-1 ||| 31 668016 +a ||| chance to ||| 0.00706215 0.229811 1.49697e-05 2.30849e-05 2.718 ||| 0-1 ||| 1416 668016 +a ||| change , which affects ||| 1 0.380413 1.49697e-06 1.51606e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| change in how ||| 1 0.0587624 1.49697e-06 2.6271e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| change in response ||| 0.5 0.0587624 1.49697e-06 7.33006e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| change in ||| 0.0014771 0.0587624 2.99394e-06 7.33006e-06 2.718 ||| 0-1 ||| 1354 668016 +a ||| change things for ||| 0.333333 0.0683377 1.49697e-06 1.84766e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| change to ||| 0.00420168 0.229811 2.99394e-06 4.27368e-05 2.718 ||| 0-1 ||| 476 668016 +a ||| changed in ||| 0.015873 0.0587624 2.99394e-06 1.9647e-06 2.718 ||| 0-1 ||| 126 668016 +a ||| changes for ||| 0.0208333 0.0683377 1.49697e-06 1.88296e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| changes in ||| 0.000831255 0.0587624 1.49697e-06 3.07022e-06 2.718 ||| 0-1 ||| 1203 668016 +a ||| changes to ||| 0.000987167 0.229811 1.49697e-06 1.79004e-05 2.718 ||| 0-1 ||| 1013 668016 +a ||| changing ||| 0.000347584 0.0004095 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2877 668016 +a ||| channelled to ||| 0.037037 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-1 ||| 27 668016 +a ||| channelled ||| 0.0238095 0.0483384 5.98788e-06 1.46e-05 2.718 ||| 0-0 ||| 168 668016 +a ||| characteristics of ||| 0.00518135 0.0188479 1.49697e-06 2.78038e-07 2.718 ||| 0-1 ||| 193 668016 +a ||| characters from ||| 1 0.0435582 1.49697e-06 7.91868e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| charge for ||| 0.0232558 0.0683377 1.49697e-06 1.85716e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| charge laid against ||| 0.111111 0.05146 1.49697e-06 1.42806e-11 2.718 ||| 0-2 ||| 9 668016 +a ||| charge laid at ||| 1 0.204175 1.49697e-06 1.86977e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| charge of ||| 0.00251256 0.0188479 1.49697e-06 1.49076e-06 2.718 ||| 0-1 ||| 398 668016 +a ||| charged by the forces of law and ||| 1 0.0337966 1.49697e-06 5.32494e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| charged by the forces of law ||| 1 0.0337966 1.49697e-06 4.25114e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| charged by the forces of ||| 1 0.0337966 1.49697e-06 2.41131e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| charged by the forces ||| 1 0.0337966 1.49697e-06 4.43549e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| charged by the ||| 0.1 0.0337966 1.49697e-06 8.38468e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| charged by ||| 0.037037 0.0337966 1.49697e-06 1.36577e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| charges against ||| 0.0204082 0.05146 1.49697e-06 5.7189e-08 2.718 ||| 0-1 ||| 49 668016 +a ||| charges such as ||| 0.333333 0.0243476 1.49697e-06 3.99283e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| charging ||| 0.00211416 0.0013661 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 473 668016 +a ||| chase after ||| 0.166667 0.0341027 1.49697e-06 5.8716e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| cheaply at ||| 0.25 0.204175 1.49697e-06 3.74389e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| check with ||| 0.0625 0.0571592 1.49697e-06 5.1087e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| checked to ||| 0.0454545 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| checking handed over to ||| 1 0.229811 1.49697e-06 3.5441e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| child rapists , for example , ||| 1 0.0683377 1.49697e-06 2.01977e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| child rapists , for example ||| 1 0.0683377 1.49697e-06 1.69366e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| child rapists , for ||| 1 0.0683377 1.49697e-06 5.81813e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| child ||| 0.000304507 0.0004045 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 3284 668016 +a ||| childlike ||| 0.333333 0.333333 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| children to ||| 0.00369004 0.229811 1.49697e-06 2.60975e-05 2.718 ||| 0-1 ||| 271 668016 +a ||| children were ||| 0.0232558 0.0019658 1.49697e-06 6.21616e-08 2.718 ||| 0-0 ||| 43 668016 +a ||| children who will have to ||| 0.5 0.229811 1.49697e-06 2.38159e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| children ||| 0.000137108 0.0019658 2.99394e-06 3.47e-05 2.718 ||| 0-0 ||| 14587 668016 +a ||| chipping in towards ||| 1 0.107135 1.49697e-06 8.10537e-11 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| chips on ||| 1 0.0782999 1.49697e-06 2.65549e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| choice but to leave ||| 0.5 0.229811 1.49697e-06 1.01432e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| choice but to ||| 0.0206897 0.229811 4.49091e-06 1.06771e-08 2.718 ||| 0-2 ||| 145 668016 +a ||| choice in ||| 0.0120482 0.0587624 1.49697e-06 2.67968e-06 2.718 ||| 0-1 ||| 83 668016 +a ||| choice means being able to make ||| 1 0.229811 1.49697e-06 4.08789e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| choice means being able to ||| 1 0.229811 1.49697e-06 2.35234e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| choice of loss ||| 0.25 0.0188479 1.49697e-06 5.55384e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| choice of ||| 0.00120337 0.0188479 1.49697e-06 1.3192e-06 2.718 ||| 0-1 ||| 831 668016 +a ||| choose to ||| 0.00869565 0.229811 2.99394e-06 1.11046e-05 2.718 ||| 0-1 ||| 230 668016 +a ||| choose ||| 0.000562746 0.0012804 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 1777 668016 +a ||| choosing to ||| 0.0149254 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-1 ||| 67 668016 +a ||| chosaint a ||| 1 1 1.49697e-06 3.98932e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| chosaint ||| 1 1 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| chosen as ||| 0.0416667 0.0243476 1.49697e-06 2.11415e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| chosen to ||| 0.0035524 0.229811 2.99394e-06 8.44227e-06 2.718 ||| 0-1 ||| 563 668016 +a ||| circling for ||| 1 0.0683377 1.49697e-06 2.57939e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| circulating around the country ||| 1 0.0931303 1.49697e-06 2.19833e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| circulating around the ||| 0.5 0.0931303 1.49697e-06 6.10818e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| circulating around ||| 0.25 0.0931303 1.49697e-06 9.9495e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| circumstances , treat them like children ||| 1 0.271158 1.49697e-06 1.01587e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| circumstances , treat them like ||| 1 0.271158 1.49697e-06 1.36359e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| circumstances , treat them ||| 1 0.271158 1.49697e-06 7.67829e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| circumstances , treat ||| 1 0.271158 1.49697e-06 2.86247e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| circumstances in which they ||| 0.5 0.0587624 1.49697e-06 8.9957e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| circumstances in which ||| 0.0108696 0.0587624 1.49697e-06 2.75603e-08 2.718 ||| 0-1 ||| 92 668016 +a ||| circumstances in ||| 0.00462963 0.0587624 1.49697e-06 3.24445e-06 2.718 ||| 0-1 ||| 216 668016 +a ||| cite ||| 0.0150943 0.0283688 5.98788e-06 1.1e-05 2.718 ||| 0-0 ||| 265 668016 +a ||| cities to believe ||| 0.5 0.229811 1.49697e-06 2.08283e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| cities to ||| 0.0238095 0.229811 1.49697e-06 6.69076e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| citizen education , to ||| 1 0.229811 1.49697e-06 2.44276e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| citizen ||| 0.00064914 0.0010228 2.99394e-06 2.7e-06 2.718 ||| 0-0 ||| 3081 668016 +a ||| citizens , to ||| 0.0169492 0.229811 1.49697e-06 4.55349e-06 2.718 ||| 0-2 ||| 59 668016 +a ||| citizens at ||| 0.0133333 0.204175 1.49697e-06 3.70986e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| citizens for ||| 0.0107527 0.0683377 1.49697e-06 4.01649e-06 2.718 ||| 0-1 ||| 93 668016 +a ||| citizens of ||| 0.000246245 0.0188479 1.49697e-06 3.22406e-06 2.718 ||| 0-1 ||| 4061 668016 +a ||| citizens to ||| 0.00501253 0.229811 5.98788e-06 3.81829e-05 2.718 ||| 0-1 ||| 798 668016 +a ||| citizens ||| 2.63151e-05 0.0002263 1.49697e-06 1.1e-05 2.718 ||| 0-0 ||| 38001 668016 +a ||| city with a ||| 0.333333 0.0571592 1.49697e-06 1.51705e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| city with ||| 0.0769231 0.0571592 1.49697e-06 3.4225e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| civic ||| 0.00411523 0.0029762 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 243 668016 +a ||| claim on ||| 0.0625 0.0782999 1.49697e-06 1.78677e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| claim to ||| 0.00749064 0.229811 2.99394e-06 1.64992e-05 2.718 ||| 0-1 ||| 267 668016 +a ||| claimed as an ||| 1 0.0243476 1.49697e-06 7.72016e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| claimed as ||| 1 0.0243476 1.49697e-06 1.73694e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| claimed for ||| 0.285714 0.0683377 2.99394e-06 7.296e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| claiming to be helping ||| 1 0.302272 1.49697e-06 1.24583e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| claims in ||| 0.0434783 0.0587624 1.49697e-06 1.81449e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| claims of ||| 0.0147059 0.0188479 1.49697e-06 8.93271e-07 2.718 ||| 0-1 ||| 68 668016 +a ||| claims to ||| 0.00574713 0.229811 1.49697e-06 1.05791e-05 2.718 ||| 0-1 ||| 174 668016 +a ||| clarification from ||| 0.0434783 0.0435582 1.49697e-06 8.78254e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| clarification in ||| 0.0344828 0.0587624 1.49697e-06 7.33006e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| clarify relates to ||| 1 0.229811 1.49697e-06 1.132e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| clarity in ||| 0.00714286 0.0587624 1.49697e-06 5.1671e-07 2.718 ||| 0-1 ||| 140 668016 +a ||| clashes with ||| 0.0294118 0.0571592 1.49697e-06 3.67292e-08 2.718 ||| 0-1 ||| 34 668016 +a ||| class at ||| 0.5 0.204175 1.49697e-06 2.92704e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| class in itself ||| 1 0.0587624 1.49697e-06 3.50691e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| class in ||| 0.1 0.0587624 1.49697e-06 5.1671e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| clause on ||| 0.0117647 0.0782999 1.49697e-06 3.67975e-07 2.718 ||| 0-1 ||| 85 668016 +a ||| clause was included in the actual body ||| 1 0.0587624 1.49697e-06 1.30376e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| clause was included in the actual ||| 1 0.0587624 1.49697e-06 1.52309e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| clause was included in the ||| 1 0.0587624 1.49697e-06 1.05258e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| clause was included in ||| 1 0.0587624 1.49697e-06 1.71453e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| clause would mean that ||| 1 0.0201991 1.49697e-06 1.82709e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| clause would mean ||| 1 0.0201991 1.49697e-06 1.08616e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| clean at ||| 0.5 0.204175 1.49697e-06 6.73901e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| clean the affected areas and to ||| 1 0.115699 1.49697e-06 1.25251e-17 2.718 ||| 0-4 0-5 ||| 1 668016 +a ||| cleansing ' , for which Mr Milosevic ||| 1 0.0683377 1.49697e-06 1.64055e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| cleansing ' , for which Mr ||| 1 0.0683377 1.49697e-06 1.17182e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| cleansing ' , for which ||| 1 0.0683377 1.49697e-06 1.79507e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| cleansing ' , for ||| 1 0.0683377 1.49697e-06 2.11318e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| cleansing from ||| 0.5 0.0435582 1.49697e-06 1.00783e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| clear . in addition , ||| 1 0.0587624 1.49697e-06 7.12383e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| clear . in addition ||| 1 0.0587624 1.49697e-06 5.97363e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| clear . in ||| 0.5 0.0587624 1.49697e-06 6.05844e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| clear about ||| 0.00277778 0.0526361 1.49697e-06 1.67758e-06 2.718 ||| 0-1 ||| 360 668016 +a ||| clear all ||| 0.166667 0.0038996 1.49697e-06 1.84127e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| clear at ||| 0.0107527 0.204175 1.49697e-06 1.13304e-05 2.718 ||| 0-1 ||| 93 668016 +a ||| clear encouragement to ||| 1 0.229811 1.49697e-06 1.09618e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| clear for ||| 0.0116279 0.0683377 1.49697e-06 1.22669e-05 2.718 ||| 0-1 ||| 86 668016 +a ||| clear in our ||| 0.02 0.0587624 1.49697e-06 2.759e-08 2.718 ||| 0-1 ||| 50 668016 +a ||| clear in ||| 0.00623701 0.0587624 4.49091e-06 2.00015e-05 2.718 ||| 0-1 ||| 481 668016 +a ||| clear on ||| 0.00324675 0.0782999 1.49697e-06 1.26288e-05 2.718 ||| 0-1 ||| 308 668016 +a ||| clear position , based on eco-tax ||| 1 0.0782999 1.49697e-06 8.14431e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| clear position , based on ||| 1 0.0782999 1.49697e-06 1.16347e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| clear the way for ||| 0.0357143 0.0683377 1.49697e-06 1.62335e-09 2.718 ||| 0-3 ||| 28 668016 +a ||| clear to me ||| 0.0166667 0.229811 1.49697e-06 7.02141e-08 2.718 ||| 0-1 ||| 60 668016 +a ||| clear to ||| 0.0114177 0.229811 1.79636e-05 0.000116615 2.718 ||| 0-1 ||| 1051 668016 +a ||| cleared up by ||| 0.5 0.0337966 1.49697e-06 3.33913e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| clearing up after ||| 0.333333 0.0341027 1.49697e-06 9.15433e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| clearly commit himself to a ||| 1 0.229811 1.49697e-06 4.99755e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| clearly commit himself to ||| 1 0.229811 1.49697e-06 1.12746e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| clearly from the ||| 0.0555556 0.0435582 1.49697e-06 8.06554e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| clearly from ||| 0.0606061 0.0435582 2.99394e-06 1.31378e-06 2.718 ||| 0-1 ||| 33 668016 +a ||| clearly in ||| 0.00651466 0.0587624 2.99394e-06 1.09651e-05 2.718 ||| 0-1 ||| 307 668016 +a ||| clearly involves ||| 0.333333 0.0681747 1.49697e-06 3.61532e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| clearly on ||| 0.0133333 0.0782999 1.49697e-06 6.92325e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| clearly to the ||| 0.0169492 0.229811 1.49697e-06 3.92478e-06 2.718 ||| 0-1 ||| 59 668016 +a ||| clearly to ||| 0.011976 0.229811 2.99394e-06 6.393e-05 2.718 ||| 0-1 ||| 167 668016 +a ||| clinging onto ||| 0.2 0.207143 1.49697e-06 2.6202e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| clinical approach to ||| 0.5 0.229811 1.49697e-06 8.44647e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| cloning and ||| 0.0384615 0.0015873 1.49697e-06 4.82375e-09 2.718 ||| 0-1 ||| 26 668016 +a ||| close at hand ||| 0.1 0.204175 1.49697e-06 2.00182e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| close at ||| 0.1 0.204175 1.49697e-06 5.04745e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| close attention to ||| 0.015873 0.229811 2.99394e-06 1.35745e-08 2.718 ||| 0-2 ||| 126 668016 +a ||| close by to ||| 0.5 0.229811 1.49697e-06 2.72741e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| close cooperation in order to meet ||| 1 0.229811 1.49697e-06 6.63258e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| close cooperation in order to ||| 0.25 0.229811 1.49697e-06 5.45443e-14 2.718 ||| 0-4 ||| 4 668016 +a ||| close in good ||| 1 0.0587624 1.49697e-06 4.62085e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| close in ||| 0.0333333 0.0587624 1.49697e-06 8.91023e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| close to becoming ||| 0.2 0.229811 1.49697e-06 5.34563e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| close to its ||| 0.0357143 0.229811 1.49697e-06 7.40128e-08 2.718 ||| 0-1 ||| 28 668016 +a ||| close to nature ||| 0.166667 0.229811 1.49697e-06 7.34569e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| close to the ||| 0.00524934 0.229811 2.99394e-06 3.18929e-06 2.718 ||| 0-1 ||| 381 668016 +a ||| close to ||| 0.0156833 0.229811 3.14364e-05 5.19497e-05 2.718 ||| 0-1 ||| 1339 668016 +a ||| closed at ||| 0.0384615 0.204175 2.99394e-06 1.97065e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| closed meetings or in ||| 1 0.0587624 1.49697e-06 8.75003e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| closed with ||| 0.0588235 0.0571592 1.49697e-06 9.66646e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| closely bound up with a Member ||| 0.5 0.0571592 1.49697e-06 5.92754e-18 2.718 ||| 0-3 ||| 2 668016 +a ||| closely bound up with a Member ’ ||| 0.5 0.0571592 1.49697e-06 1.03264e-20 2.718 ||| 0-3 ||| 2 668016 +a ||| closely bound up with a ||| 0.5 0.0571592 1.49697e-06 1.15031e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| closely bound up with ||| 0.0294118 0.0571592 1.49697e-06 2.59512e-13 2.718 ||| 0-3 ||| 34 668016 +a ||| closely into line with ||| 0.333333 0.0571592 1.49697e-06 4.46595e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| closely involved in ||| 0.015625 0.0587624 1.49697e-06 1.83872e-09 2.718 ||| 0-2 ||| 64 668016 +a ||| closely on this . ||| 0.333333 0.0782999 1.49697e-06 6.57077e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| closely on this ||| 0.0769231 0.0782999 1.49697e-06 2.16929e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| closely on ||| 0.0133333 0.0782999 1.49697e-06 3.3573e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| closely related to the fact ||| 1 0.229811 1.49697e-06 3.65175e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| closely related to the ||| 0.0178571 0.229811 1.49697e-06 1.24663e-10 2.718 ||| 0-2 ||| 56 668016 +a ||| closely related to ||| 0.0108696 0.229811 1.49697e-06 2.03061e-09 2.718 ||| 0-2 ||| 92 668016 +a ||| closely to ||| 0.0342466 0.229811 7.48485e-06 3.10017e-05 2.718 ||| 0-1 ||| 146 668016 +a ||| closely with ||| 0.00767263 0.0571592 8.98182e-06 1.47752e-06 2.718 ||| 0-1 ||| 782 668016 +a ||| closer into ||| 0.333333 0.107578 1.49697e-06 1.29383e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| closer look at one ||| 1 0.204175 1.49697e-06 8.80799e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| closer look at ||| 0.0576923 0.204175 4.49091e-06 2.11324e-09 2.718 ||| 0-2 ||| 52 668016 +a ||| closer relationship between the two institutions must ||| 1 0.0006394 1.49697e-06 2.12846e-25 2.718 ||| 0-2 ||| 1 668016 +a ||| closer relationship between the two institutions ||| 1 0.0006394 1.49697e-06 1.37711e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| closer relationship between the two ||| 1 0.0006394 1.49697e-06 2.62307e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| closer relationship between the ||| 0.111111 0.0006394 1.49697e-06 1.10959e-14 2.718 ||| 0-2 ||| 9 668016 +a ||| closer relationship between ||| 0.0909091 0.0006394 1.49697e-06 1.80739e-13 2.718 ||| 0-2 ||| 11 668016 +a ||| closer to fulfilment ||| 1 0.229811 1.49697e-06 2.68611e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| closer to home ||| 0.0243902 0.229811 1.49697e-06 7.57335e-09 2.718 ||| 0-1 ||| 41 668016 +a ||| closer to that ||| 0.05 0.229811 1.49697e-06 1.25513e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| closer to the ||| 0.00208768 0.229811 1.49697e-06 4.5807e-06 2.718 ||| 0-1 ||| 479 668016 +a ||| closer to ||| 0.286119 0.229811 0.000453582 7.46142e-05 2.718 ||| 0-1 ||| 1059 668016 +a ||| closer together ||| 0.0214286 0.0160315 4.49091e-06 5.77443e-08 2.718 ||| 0-1 ||| 140 668016 +a ||| cloud over many of ||| 0.5 0.0188479 1.49697e-06 1.56457e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| clutches of ||| 0.0625 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| co-rapporteur for Lithuania . ( da ) ||| 0.5 0.0683377 1.49697e-06 1.70307e-27 2.718 ||| 0-1 ||| 2 668016 +a ||| co-rapporteur for Lithuania . ( da ||| 0.5 0.0683377 1.49697e-06 1.18491e-24 2.718 ||| 0-1 ||| 2 668016 +a ||| co-rapporteur for Lithuania . ( ||| 0.5 0.0683377 1.49697e-06 1.3778e-19 2.718 ||| 0-1 ||| 2 668016 +a ||| co-rapporteur for Lithuania . ||| 0.5 0.0683377 1.49697e-06 1.42866e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| co-rapporteur for Lithuania ||| 0.5 0.0683377 1.49697e-06 4.71661e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| co-rapporteur for ||| 0.0909091 0.0683377 1.49697e-06 1.47394e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| coffers at ||| 1 0.204175 1.49697e-06 4.76496e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| coherent message to ||| 1 0.229811 1.49697e-06 1.21569e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| cold by ||| 0.25 0.0337966 1.49697e-06 9.46162e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| cold in ||| 0.166667 0.0587624 1.49697e-06 6.90949e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| collapse in ||| 0.0204082 0.0587624 1.49697e-06 6.24858e-07 2.718 ||| 0-1 ||| 49 668016 +a ||| colleague referred to ||| 0.333333 0.229811 1.49697e-06 1.85722e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| colleagues , and thereby also ||| 1 0.0015873 1.49697e-06 1.13726e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| colleagues , and thereby ||| 1 0.0015873 1.49697e-06 2.25263e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| colleagues , and ||| 0.0169492 0.0015873 1.49697e-06 5.13127e-09 2.718 ||| 0-2 ||| 59 668016 +a ||| colleagues in ||| 0.00107066 0.0587624 1.49697e-06 1.33984e-06 2.718 ||| 0-1 ||| 934 668016 +a ||| colleagues to ||| 0.00290698 0.229811 1.49697e-06 7.81173e-06 2.718 ||| 0-1 ||| 344 668016 +a ||| colleagues ||| 0.000444444 0.0009347 5.98788e-06 9.1e-06 2.718 ||| 0-0 ||| 9000 668016 +a ||| collection of ||| 0.00208333 0.0188479 1.49697e-06 2.78038e-07 2.718 ||| 0-1 ||| 480 668016 +a ||| collective spirit in ||| 1 0.0587624 1.49697e-06 3.42104e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| collude in ||| 0.333333 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| combination – to ||| 1 0.229811 1.49697e-06 1.04628e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| combined in a way ||| 1 0.0587624 1.49697e-06 1.44668e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| combined in a ||| 0.2 0.0587624 1.49697e-06 6.71128e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| combined in ||| 0.0434783 0.0587624 1.49697e-06 1.51408e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| combined to ||| 0.0666667 0.229811 1.49697e-06 8.8276e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| combined with ||| 0.00171821 0.0571592 1.49697e-06 4.20717e-07 2.718 ||| 0-1 ||| 582 668016 +a ||| come about as a result of the ||| 0.2 0.0243476 1.49697e-06 8.20725e-16 2.718 ||| 0-2 ||| 5 668016 +a ||| come about as a result of ||| 0.0833333 0.0243476 1.49697e-06 1.33686e-14 2.718 ||| 0-2 ||| 12 668016 +a ||| come about as a result ||| 0.0909091 0.0243476 1.49697e-06 2.4591e-13 2.718 ||| 0-2 ||| 11 668016 +a ||| come about as a ||| 0.0909091 0.0243476 1.49697e-06 4.67065e-10 2.718 ||| 0-2 ||| 11 668016 +a ||| come about as ||| 0.0555556 0.0243476 1.49697e-06 1.05371e-08 2.718 ||| 0-2 ||| 18 668016 +a ||| come about at the ||| 0.25 0.0526361 1.49697e-06 1.10024e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| come about at ||| 0.2 0.0526361 1.49697e-06 1.79216e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| come about ||| 0.0160256 0.0526361 7.48485e-06 4.27988e-06 2.718 ||| 0-1 ||| 312 668016 +a ||| come across on this ||| 1 0.0782999 1.49697e-06 2.13591e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| come across on ||| 0.5 0.0782999 1.49697e-06 3.30564e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| come along ||| 0.0227273 0.0178286 1.49697e-06 1.03869e-07 2.718 ||| 0-1 ||| 44 668016 +a ||| come and re-establish itself ||| 0.25 0.0015873 1.49697e-06 2.44684e-15 2.718 ||| 0-1 ||| 4 668016 +a ||| come and re-establish ||| 0.25 0.0015873 1.49697e-06 3.60519e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| come and ||| 0.00784314 0.0009084 2.99394e-06 8.8757e-09 2.718 ||| 0-0 0-1 ||| 255 668016 +a ||| come as a ||| 0.0222222 0.0243476 1.49697e-06 3.30245e-07 2.718 ||| 0-1 ||| 45 668016 +a ||| come as no ||| 0.05 0.0243476 1.49697e-06 5.79939e-09 2.718 ||| 0-1 ||| 20 668016 +a ||| come as ||| 0.0617284 0.0243476 7.48485e-06 7.4504e-06 2.718 ||| 0-1 ||| 81 668016 +a ||| come at the expense ||| 0.2 0.204175 1.49697e-06 3.44274e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| come at the ||| 0.037037 0.204175 1.49697e-06 1.77461e-06 2.718 ||| 0-1 ||| 27 668016 +a ||| come at ||| 0.0113636 0.204175 1.49697e-06 2.89063e-05 2.718 ||| 0-1 ||| 88 668016 +a ||| come back to ||| 0.00877193 0.229811 4.49091e-06 2.00106e-07 2.718 ||| 0-2 ||| 342 668016 +a ||| come close to ||| 0.0434783 0.229811 1.49697e-06 4.41209e-08 2.718 ||| 0-2 ||| 23 668016 +a ||| come closer to ||| 0.0175439 0.229811 1.49697e-06 6.33699e-08 2.718 ||| 0-2 ||| 57 668016 +a ||| come down in ||| 0.0769231 0.0587624 1.49697e-06 3.56227e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| come forward with ||| 0.00446429 0.0571592 1.49697e-06 7.88928e-09 2.718 ||| 0-2 ||| 224 668016 +a ||| come from people at all ||| 0.111111 0.204175 1.49697e-06 1.93618e-13 2.718 ||| 0-3 ||| 9 668016 +a ||| come from people at ||| 0.111111 0.204175 1.49697e-06 4.09739e-11 2.718 ||| 0-3 ||| 9 668016 +a ||| come from to ||| 0.5 0.136685 1.49697e-06 2.14172e-06 2.718 ||| 0-1 0-2 ||| 2 668016 +a ||| come from ||| 0.0020339 0.0435582 4.49091e-06 6.11394e-06 2.718 ||| 0-1 ||| 1475 668016 +a ||| come in and ||| 0.0714286 0.0587624 1.49697e-06 6.39172e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| come in the ||| 0.03125 0.0587624 1.49697e-06 3.1327e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| come in ||| 0.0248756 0.0587624 7.48485e-06 5.10281e-05 2.718 ||| 0-1 ||| 201 668016 +a ||| come into it at all ||| 1 0.107578 1.49697e-06 1.81531e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| come into it at ||| 1 0.107578 1.49697e-06 3.8416e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| come into it ||| 0.166667 0.107578 1.49697e-06 9.17418e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| come into line ||| 0.04 0.107578 1.49697e-06 1.51878e-09 2.718 ||| 0-1 ||| 25 668016 +a ||| come into operation on 3 June next ||| 1 0.107578 1.49697e-06 4.01317e-26 2.718 ||| 0-1 ||| 1 668016 +a ||| come into operation on 3 June ||| 1 0.107578 1.49697e-06 3.88496e-22 2.718 ||| 0-1 ||| 1 668016 +a ||| come into operation on 3 ||| 1 0.107578 1.49697e-06 4.5174e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| come into operation on ||| 0.5 0.107578 1.49697e-06 1.96409e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| come into operation ||| 0.0526316 0.107578 1.49697e-06 2.93542e-10 2.718 ||| 0-1 ||| 19 668016 +a ||| come into play ||| 0.0140845 0.107578 1.49697e-06 1.331e-09 2.718 ||| 0-1 ||| 71 668016 +a ||| come into ||| 0.00882029 0.107578 1.19758e-05 5.1589e-06 2.718 ||| 0-1 ||| 907 668016 +a ||| come off ||| 0.0384615 0.0893962 1.49697e-06 6.4963e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| come on ||| 0.0114943 0.0782999 1.49697e-06 3.22187e-05 2.718 ||| 0-1 ||| 87 668016 +a ||| come onto ||| 0.0416667 0.207143 1.49697e-06 2.02303e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| come out in ||| 0.027027 0.0587624 1.49697e-06 1.95458e-07 2.718 ||| 0-2 ||| 37 668016 +a ||| come out safely at ||| 1 0.204175 1.49697e-06 9.18997e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| come out with ||| 0.047619 0.0571592 1.49697e-06 5.43118e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| come out ||| 0.002457 0.0669777 1.49697e-06 3.48298e-06 2.718 ||| 0-1 ||| 407 668016 +a ||| come round to ||| 0.0769231 0.229811 1.49697e-06 2.28191e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| come through ||| 0.025974 0.230708 2.99394e-06 6.75117e-06 2.718 ||| 0-1 ||| 77 668016 +a ||| come to an ||| 0.00578035 0.229811 2.99394e-06 1.32235e-06 2.718 ||| 0-1 ||| 346 668016 +a ||| come to be a focus of ||| 1 0.229811 1.49697e-06 1.00563e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| come to be a focus ||| 1 0.229811 1.49697e-06 1.84982e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| come to be a ||| 0.333333 0.229811 1.49697e-06 2.38994e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| come to be in the ||| 1 0.0587624 1.49697e-06 5.04481e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| come to be in ||| 0.333333 0.0587624 1.49697e-06 8.2174e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| come to be ||| 0.0285714 0.229811 1.49697e-06 5.39176e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| come to have great ||| 0.25 0.229811 1.49697e-06 1.39836e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| come to have ||| 0.0833333 0.229811 1.49697e-06 3.55817e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| come to light on ||| 0.5 0.0782999 1.49697e-06 4.97571e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| come to nothing ||| 0.0204082 0.229811 1.49697e-06 5.53668e-08 2.718 ||| 0-1 ||| 49 668016 +a ||| come to our attention that ||| 0.2 0.0008521 1.49697e-06 1.85703e-14 2.718 ||| 0-4 ||| 5 668016 +a ||| come to realise ||| 0.027027 0.229811 1.49697e-06 7.70554e-09 2.718 ||| 0-1 ||| 37 668016 +a ||| come to see ||| 0.0833333 0.229811 1.49697e-06 2.09626e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| come to some ||| 0.047619 0.229811 1.49697e-06 3.24079e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| come to such a ||| 0.142857 0.229811 1.49697e-06 2.72835e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| come to such ||| 0.166667 0.229811 1.49697e-06 6.15521e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| come to the fore ||| 0.0454545 0.229811 1.49697e-06 2.10045e-10 2.718 ||| 0-1 ||| 22 668016 +a ||| come to the ||| 0.00369686 0.229811 2.99394e-06 1.82647e-05 2.718 ||| 0-1 ||| 541 668016 +a ||| come to ||| 0.0185185 0.229811 7.93394e-05 0.000297511 2.718 ||| 0-1 ||| 2862 668016 +a ||| come together to ||| 0.025 0.229811 1.49697e-06 1.78685e-07 2.718 ||| 0-2 ||| 40 668016 +a ||| come towards ||| 0.25 0.155507 1.49697e-06 2.86435e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| come under ||| 0.00617284 0.0384416 2.99394e-06 1.20465e-06 2.718 ||| 0-1 ||| 324 668016 +a ||| come up to ||| 0.0526316 0.229811 2.99394e-06 1.01466e-06 2.718 ||| 0-2 ||| 38 668016 +a ||| come up with ||| 0.00612245 0.0571592 8.98182e-06 4.8358e-08 2.718 ||| 0-2 ||| 980 668016 +a ||| come what ||| 0.0169492 0.0002295 1.49697e-06 6.45426e-09 2.718 ||| 0-0 ||| 59 668016 +a ||| come within ||| 0.010989 0.0123496 1.49697e-06 4.22442e-07 2.718 ||| 0-1 ||| 91 668016 +a ||| come ||| 0.000105585 0.0002295 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 9471 668016 +a ||| comes about for ||| 1 0.0683377 1.49697e-06 2.08355e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| comes about is ||| 0.0833333 0.0526361 1.49697e-06 6.31433e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| comes about ||| 0.0263158 0.0526361 1.49697e-06 2.01471e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| comes at ||| 0.00909091 0.204175 2.99394e-06 1.36074e-05 2.718 ||| 0-1 ||| 220 668016 +a ||| comes back in , as a matter ||| 1 0.0587624 1.49697e-06 9.04181e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| comes back in , as a ||| 1 0.0587624 1.49697e-06 8.715e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| comes back in , as ||| 1 0.0587624 1.49697e-06 1.96612e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| comes back in , ||| 1 0.0587624 1.49697e-06 1.92674e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| comes back in ||| 1 0.0587624 1.49697e-06 1.61565e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| comes before ||| 0.0138889 0.0203282 1.49697e-06 2.12014e-07 2.718 ||| 0-1 ||| 72 668016 +a ||| comes complete with ||| 1 0.0571592 1.49697e-06 4.77909e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| comes down to ||| 0.011236 0.229811 1.49697e-06 9.77693e-08 2.718 ||| 0-2 ||| 89 668016 +a ||| comes for ||| 0.111111 0.0683377 1.49697e-06 1.4732e-05 2.718 ||| 0-1 ||| 9 668016 +a ||| comes from ||| 0.0015456 0.0435582 1.49697e-06 2.87808e-06 2.718 ||| 0-1 ||| 647 668016 +a ||| comes in , ||| 0.125 0.0587624 1.49697e-06 2.86462e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| comes in ||| 0.00813008 0.0587624 1.49697e-06 2.4021e-05 2.718 ||| 0-1 ||| 123 668016 +a ||| comes into ||| 0.00280112 0.107578 1.49697e-06 2.42851e-06 2.718 ||| 0-1 ||| 357 668016 +a ||| comes of ||| 0.0833333 0.0188479 1.49697e-06 1.18255e-05 2.718 ||| 0-1 ||| 12 668016 +a ||| comes second with ||| 0.5 0.0571592 1.49697e-06 4.34523e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| comes to an ||| 0.04 0.229811 2.99394e-06 6.22483e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| comes to ensuring ||| 0.166667 0.229811 1.49697e-06 1.62739e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| comes to mind ||| 0.0185185 0.229811 1.49697e-06 3.52787e-08 2.718 ||| 0-1 ||| 54 668016 +a ||| comes to the ||| 0.00386598 0.229811 4.49091e-06 8.59796e-06 2.718 ||| 0-1 ||| 776 668016 +a ||| comes to ||| 0.0224452 0.229811 0.000127242 0.000140051 2.718 ||| 0-1 ||| 3787 668016 +a ||| comes towards and ||| 1 0.155507 1.49697e-06 1.68895e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| comes towards ||| 1 0.155507 1.49697e-06 1.34837e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| comes under the control of ||| 1 0.0188479 1.49697e-06 1.99792e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| comes up for ||| 0.105263 0.0683377 2.99394e-06 5.02436e-08 2.718 ||| 0-2 ||| 19 668016 +a ||| comfort , to pull our carriages ||| 1 0.229811 1.49697e-06 2.74293e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| comfort , to pull our ||| 1 0.229811 1.49697e-06 6.85733e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| comfort , to pull ||| 1 0.229811 1.49697e-06 4.97124e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| comfort , to ||| 1 0.229811 1.49697e-06 2.08876e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| comfort for ||| 0.166667 0.0683377 1.49697e-06 1.84243e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| comfort from ||| 0.142857 0.0435582 1.49697e-06 3.5994e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| comfort to ||| 0.030303 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-1 ||| 33 668016 +a ||| coming along and ||| 0.5 0.0178286 1.49697e-06 2.97652e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| coming along ||| 0.0909091 0.0178286 1.49697e-06 2.37629e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| coming and ||| 0.0344828 0.0015873 1.49697e-06 3.74902e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| coming back into ||| 0.25 0.107578 1.49697e-06 7.93827e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| coming back to haunt us ||| 0.333333 0.229811 1.49697e-06 1.84724e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| coming back to haunt ||| 0.2 0.229811 1.49697e-06 6.40914e-14 2.718 ||| 0-2 ||| 5 668016 +a ||| coming back to us ||| 1 0.229811 1.49697e-06 1.31946e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| coming back to ||| 0.0294118 0.229811 2.99394e-06 4.57796e-08 2.718 ||| 0-2 ||| 68 668016 +a ||| coming from ||| 0.0014881 0.0435582 1.49697e-06 1.39873e-06 2.718 ||| 0-1 ||| 672 668016 +a ||| coming in ||| 0.008 0.0587624 1.49697e-06 1.1674e-05 2.718 ||| 0-1 ||| 125 668016 +a ||| coming into being ||| 0.0322581 0.107578 1.49697e-06 3.35872e-09 2.718 ||| 0-1 ||| 31 668016 +a ||| coming into effect ||| 0.0416667 0.107578 1.49697e-06 3.93727e-10 2.718 ||| 0-1 ||| 24 668016 +a ||| coming into ||| 0.0115274 0.107578 5.98788e-06 1.18024e-06 2.718 ||| 0-1 ||| 347 668016 +a ||| coming of ||| 0.136364 0.0188479 4.49091e-06 5.7471e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| coming onto the market ||| 0.047619 0.207143 1.49697e-06 6.42145e-13 2.718 ||| 0-1 ||| 21 668016 +a ||| coming onto the ||| 0.0416667 0.207143 1.49697e-06 2.84135e-09 2.718 ||| 0-1 ||| 24 668016 +a ||| coming onto ||| 0.1 0.207143 2.99394e-06 4.62823e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| coming out onto ||| 1 0.207143 1.49697e-06 1.7728e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| coming out ||| 0.0070922 0.0669777 1.49697e-06 7.96824e-07 2.718 ||| 0-1 ||| 141 668016 +a ||| coming to ||| 0.0122592 0.229811 1.04788e-05 6.80636e-05 2.718 ||| 0-1 ||| 571 668016 +a ||| coming together to ||| 0.0714286 0.229811 1.49697e-06 4.0879e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| coming up against ||| 0.0357143 0.05146 1.49697e-06 1.72259e-09 2.718 ||| 0-2 ||| 28 668016 +a ||| coming up in ||| 0.0588235 0.0587624 1.49697e-06 3.98143e-08 2.718 ||| 0-2 ||| 17 668016 +a ||| coming up with ||| 0.00892857 0.0571592 1.49697e-06 1.10632e-08 2.718 ||| 0-2 ||| 112 668016 +a ||| coming up ||| 0.00913242 0.0195077 2.99394e-06 2.38523e-07 2.718 ||| 0-1 ||| 219 668016 +a ||| commend ||| 0.00162338 0.0871873 1.49697e-06 0.000105 2.718 ||| 0-0 ||| 616 668016 +a ||| commended also for ||| 1 0.0683377 1.49697e-06 2.60447e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| comment from ||| 0.0833333 0.0435582 1.49697e-06 3.28985e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| comment on ||| 0.00311526 0.0782999 5.98788e-06 1.73366e-06 2.718 ||| 0-1 ||| 1284 668016 +a ||| comments by ||| 0.012987 0.0337966 1.49697e-06 4.11375e-07 2.718 ||| 0-1 ||| 77 668016 +a ||| comments in ||| 0.00980392 0.0587624 1.49697e-06 3.00412e-06 2.718 ||| 0-1 ||| 102 668016 +a ||| comments on the ||| 0.00341297 0.0782999 1.49697e-06 1.16447e-07 2.718 ||| 0-1 ||| 293 668016 +a ||| comments on ||| 0.00306279 0.0782999 2.99394e-06 1.89678e-06 2.718 ||| 0-1 ||| 653 668016 +a ||| comments to the ||| 0.0294118 0.229811 1.49697e-06 1.07528e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| comments to ||| 0.0193548 0.229811 4.49091e-06 1.75151e-05 2.718 ||| 0-1 ||| 155 668016 +a ||| commit himself to a ||| 1 0.229811 1.49697e-06 2.73838e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| commit himself to ||| 0.125 0.229811 1.49697e-06 6.17785e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| commit itself to ||| 0.0172414 0.229811 2.99394e-06 5.65844e-09 2.718 ||| 0-2 ||| 116 668016 +a ||| commit ourselves to the search ||| 0.5 0.229811 1.49697e-06 2.2794e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| commit ourselves to the ||| 0.142857 0.229811 1.49697e-06 1.62815e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| commit ourselves to ||| 0.0149254 0.229811 1.49697e-06 2.65206e-09 2.718 ||| 0-2 ||| 67 668016 +a ||| commit themselves to ||| 0.00980392 0.229811 1.49697e-06 3.58249e-09 2.718 ||| 0-2 ||| 102 668016 +a ||| commitment , so as to ||| 1 0.229811 1.49697e-06 5.39893e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| commitment by ||| 0.00869565 0.0337966 1.49697e-06 4.59095e-07 2.718 ||| 0-1 ||| 115 668016 +a ||| commitment in tackling ||| 1 0.0587624 1.49697e-06 6.87284e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| commitment in ||| 0.00534759 0.0587624 1.49697e-06 3.3526e-06 2.718 ||| 0-1 ||| 187 668016 +a ||| commitment to ||| 0.00166778 0.229811 7.48485e-06 1.95468e-05 2.718 ||| 0-1 ||| 2998 668016 +a ||| commitments at ||| 0.05 0.204175 1.49697e-06 6.73901e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| committed at ||| 0.0769231 0.204175 1.49697e-06 2.81813e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| committed by those ||| 0.166667 0.0337966 1.49697e-06 4.93284e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| committed by ||| 0.00641026 0.0337966 2.99394e-06 6.81237e-07 2.718 ||| 0-1 ||| 312 668016 +a ||| committed evil by accepting the ||| 1 0.0337966 1.49697e-06 4.08855e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| committed evil by accepting ||| 1 0.0337966 1.49697e-06 6.65977e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| committed evil by ||| 1 0.0337966 1.49697e-06 6.40363e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| committed for ||| 0.047619 0.0683377 1.49697e-06 3.05106e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| committed ourselves to ||| 0.02 0.229811 1.49697e-06 9.22648e-09 2.718 ||| 0-2 ||| 50 668016 +a ||| committed themselves to ||| 0.0153846 0.229811 2.99394e-06 1.24634e-08 2.718 ||| 0-2 ||| 130 668016 +a ||| committed to , including ||| 1 0.229811 1.49697e-06 3.61117e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| committed to , ||| 0.0769231 0.229811 1.49697e-06 3.45898e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| committed to their own ||| 1 0.229811 1.49697e-06 5.69954e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| committed to their ||| 0.0769231 0.229811 1.49697e-06 3.36197e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| committed to ||| 0.0047081 0.229811 1.49697e-05 2.9005e-05 2.718 ||| 0-1 ||| 2124 668016 +a ||| committed ||| 0.000639932 0.0011455 4.49091e-06 6.4e-06 2.718 ||| 0-0 ||| 4688 668016 +a ||| committee during ||| 0.166667 0.0054313 1.49697e-06 7.20594e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| committee to ||| 0.00507614 0.229811 1.49697e-06 2.71133e-05 2.718 ||| 0-1 ||| 197 668016 +a ||| common agricultural policy to ||| 0.025 0.229811 1.49697e-06 1.23928e-12 2.718 ||| 0-3 ||| 40 668016 +a ||| common criminals ||| 0.0769231 0.0357555 1.49697e-06 1.30746e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| common fisheries policy , which , over ||| 1 0.0682544 1.49697e-06 6.71209e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| common fisheries policy for ||| 0.1 0.0683377 1.49697e-06 8.81359e-14 2.718 ||| 0-3 ||| 10 668016 +a ||| common nationally and ||| 1 0.223614 1.49697e-06 3.30146e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| common nationally ||| 1 0.223614 1.49697e-06 2.63571e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| common obstacle to ||| 1 0.229811 1.49697e-06 4.69334e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| common rules for ||| 0.00526316 0.0683377 1.49697e-06 9.89095e-10 2.718 ||| 0-2 ||| 190 668016 +a ||| common to find that ||| 1 0.229811 1.49697e-06 4.53143e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| common to find ||| 1 0.229811 1.49697e-06 2.69382e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| common to ||| 0.0155642 0.229811 5.98788e-06 8.09197e-05 2.718 ||| 0-1 ||| 257 668016 +a ||| common trick to ||| 0.5 0.229811 1.49697e-06 1.45655e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| communicate to ||| 0.025641 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| communicated by us to ||| 1 0.229811 1.49697e-06 1.16616e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| communication on ||| 0.00221239 0.0782999 2.99394e-06 1.16083e-06 2.718 ||| 0-1 ||| 904 668016 +a ||| communication with ||| 0.00487805 0.0571592 1.49697e-06 5.1087e-07 2.718 ||| 0-1 ||| 205 668016 +a ||| community stands for ||| 1 0.0683377 1.49697e-06 7.73564e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| community to ||| 0.0169492 0.229811 1.49697e-06 1.33465e-05 2.718 ||| 0-1 ||| 59 668016 +a ||| companies ' premises for the purpose of ||| 1 0.0683377 1.49697e-06 2.88083e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| companies ' premises for the purpose ||| 1 0.0683377 1.49697e-06 5.29915e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| companies ' premises for the ||| 1 0.0683377 1.49697e-06 2.94561e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| companies ' premises for ||| 1 0.0683377 1.49697e-06 4.79805e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| companies as ||| 0.037037 0.0243476 1.49697e-06 6.15822e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| companies from ||| 0.00793651 0.0435582 1.49697e-06 5.05356e-07 2.718 ||| 0-1 ||| 126 668016 +a ||| companies have ||| 0.00714286 0.0013048 1.49697e-06 2.72683e-07 2.718 ||| 0-0 ||| 140 668016 +a ||| companies in the ||| 0.00507614 0.0587624 1.49697e-06 2.58938e-07 2.718 ||| 0-1 ||| 197 668016 +a ||| companies in ||| 0.00438596 0.0587624 2.99394e-06 4.21779e-06 2.718 ||| 0-1 ||| 456 668016 +a ||| companies to ||| 0.00472813 0.115558 2.99394e-06 7.98688e-06 2.718 ||| 0-0 0-1 ||| 423 668016 +a ||| companies with ||| 0.010101 0.0571592 1.49697e-06 1.172e-06 2.718 ||| 0-1 ||| 99 668016 +a ||| companies ||| 6.86672e-05 0.0013048 1.49697e-06 2.28e-05 2.718 ||| 0-0 ||| 14563 668016 +a ||| company for ||| 0.0909091 0.0683377 1.49697e-06 1.39287e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| company to ||| 0.015873 0.229811 1.49697e-06 1.32414e-05 2.718 ||| 0-1 ||| 63 668016 +a ||| compare him to ||| 1 0.229811 1.49697e-06 6.85071e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| compared to ||| 0.000888889 0.229811 1.49697e-06 1.31013e-05 2.718 ||| 0-1 ||| 1125 668016 +a ||| compared with the situation ||| 0.0769231 0.0571592 1.49697e-06 1.97414e-11 2.718 ||| 0-1 ||| 13 668016 +a ||| compared with the ||| 0.00197628 0.0571592 1.49697e-06 3.83328e-08 2.718 ||| 0-1 ||| 506 668016 +a ||| compared with ||| 0.00585223 0.0571592 1.19758e-05 6.24397e-07 2.718 ||| 0-1 ||| 1367 668016 +a ||| comparison with ||| 0.00488599 0.0571592 4.49091e-06 2.33731e-07 2.718 ||| 0-1 ||| 614 668016 +a ||| compel anyone ||| 0.333333 0.339844 1.49697e-06 3.80326e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| compel them ||| 0.166667 0.339844 1.49697e-06 2.12983e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| compel ||| 0.0283019 0.339844 4.49091e-06 7.94e-05 2.718 ||| 0-0 ||| 106 668016 +a ||| compelled to ||| 0.00595238 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-1 ||| 168 668016 +a ||| compelled ||| 0.00478469 0.0626959 1.49697e-06 1.83e-05 2.718 ||| 0-0 ||| 209 668016 +a ||| compensate for ||| 0.00273973 0.0683377 1.49697e-06 1.06861e-07 2.718 ||| 0-1 ||| 365 668016 +a ||| compensate people ||| 0.333333 0.122807 1.49697e-06 7.86899e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| compensate ||| 0.00519481 0.122807 2.99394e-06 8.94e-05 2.718 ||| 0-0 ||| 385 668016 +a ||| compensated with ||| 0.5 0.0571592 1.49697e-06 3.67292e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| compensating in dribs and ||| 1 0.0587624 1.49697e-06 4.21449e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| compensating in dribs ||| 1 0.0587624 1.49697e-06 3.36462e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| compensating in ||| 1 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| compensating ||| 0.00568182 0.0654762 1.49697e-06 1e-05 2.718 ||| 0-0 ||| 176 668016 +a ||| compensation for ||| 0.00194553 0.0683377 1.49697e-06 5.56412e-07 2.718 ||| 0-1 ||| 514 668016 +a ||| compensation to ||| 0.00917431 0.229811 1.49697e-06 5.28955e-06 2.718 ||| 0-1 ||| 109 668016 +a ||| compete on an equal footing ; ||| 1 0.0782999 1.49697e-06 5.06894e-22 2.718 ||| 0-1 ||| 1 668016 +a ||| compete on an equal footing ||| 0.166667 0.0782999 1.49697e-06 1.64576e-18 2.718 ||| 0-1 ||| 6 668016 +a ||| compete on an equal ||| 0.25 0.0782999 1.49697e-06 7.61926e-14 2.718 ||| 0-1 ||| 4 668016 +a ||| compete on an ||| 0.0909091 0.0782999 1.49697e-06 1.33204e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| compete on ||| 0.00724638 0.0782999 1.49697e-06 2.99691e-07 2.718 ||| 0-1 ||| 138 668016 +a ||| compete with ||| 0.00226757 0.0571592 1.49697e-06 1.31891e-07 2.718 ||| 0-1 ||| 441 668016 +a ||| competence of the ||| 0.0045045 0.0188479 2.99394e-06 4.37626e-08 2.718 ||| 0-1 ||| 444 668016 +a ||| competence of ||| 0.0037037 0.0188479 2.99394e-06 7.12842e-07 2.718 ||| 0-1 ||| 540 668016 +a ||| competent leader in ||| 0.333333 0.0587624 1.49697e-06 9.29476e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| competition from ||| 0.00423729 0.0435582 1.49697e-06 2.61316e-07 2.718 ||| 0-1 ||| 236 668016 +a ||| competition here ||| 0.142857 0.0182742 1.49697e-06 3.12107e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| competition rules will then be bound to ||| 1 0.229811 1.49697e-06 1.92132e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| competition to ||| 0.0135135 0.229811 1.49697e-06 1.27159e-05 2.718 ||| 0-1 ||| 74 668016 +a ||| competition with respect to ||| 1 0.229811 1.49697e-06 3.51756e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| competitive examinations available to ||| 1 0.229811 1.49697e-06 2.97966e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| competitively ||| 0.027027 0.0909091 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 37 668016 +a ||| competitiveness of regions helps to ||| 1 0.229811 1.49697e-06 6.34274e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| complaint in ||| 0.0666667 0.0587624 1.49697e-06 4.98685e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| complaint to ||| 0.0526316 0.229811 2.99394e-06 2.9075e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| complement to ||| 0.0204082 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| complete standstill whilst we await ||| 1 0.0442295 1.49697e-06 6.40954e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| complete standstill whilst we ||| 1 0.0442295 1.49697e-06 1.49059e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| complete standstill whilst ||| 1 0.0442295 1.49697e-06 1.31303e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| complete with ||| 0.030303 0.0571592 1.49697e-06 1.19537e-06 2.718 ||| 0-1 ||| 33 668016 +a ||| completely , as well ||| 0.333333 0.0243476 1.49697e-06 1.68863e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| completely , as ||| 0.166667 0.0243476 1.49697e-06 1.06498e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| completely abandon the attempt to ||| 0.5 0.229811 1.49697e-06 1.44416e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| completely belongs to ||| 0.5 0.229811 1.49697e-06 5.38477e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| completely dependent on ||| 0.0666667 0.0782999 1.49697e-06 1.05428e-10 2.718 ||| 0-2 ||| 15 668016 +a ||| completely new to him ||| 1 0.229811 1.49697e-06 6.8334e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| completely new to ||| 0.333333 0.229811 1.49697e-06 2.13144e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| completely smoothed out ||| 0.333333 0.0669777 1.49697e-06 1.66993e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| compliance with this ||| 0.0217391 0.0571592 1.49697e-06 2.4811e-09 2.718 ||| 0-1 ||| 46 668016 +a ||| compliance with ||| 0.00223414 0.0571592 7.48485e-06 3.83987e-07 2.718 ||| 0-1 ||| 2238 668016 +a ||| complications , we want to stop ||| 1 0.229811 1.49697e-06 2.14481e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| complications , we want to ||| 1 0.229811 1.49697e-06 3.10392e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| complicit in ||| 0.0222222 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-1 ||| 45 668016 +a ||| complied with ||| 0.00484262 0.0571592 5.98788e-06 2.82147e-07 2.718 ||| 0-1 ||| 826 668016 +a ||| compliment him ||| 0.0909091 0.10311 1.49697e-06 1.84345e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| compliment ||| 0.00344828 0.10311 1.49697e-06 5.75e-05 2.718 ||| 0-0 ||| 290 668016 +a ||| compliments to ||| 0.0149254 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-1 ||| 67 668016 +a ||| comply to ||| 0.333333 0.229811 1.49697e-06 1.63941e-05 2.718 ||| 0-1 ||| 3 668016 +a ||| comply with ||| 0.00254916 0.0571592 1.04788e-05 7.81331e-07 2.718 ||| 0-1 ||| 2746 668016 +a ||| complying with ||| 0.0020284 0.0571592 1.49697e-06 8.34755e-08 2.718 ||| 0-1 ||| 493 668016 +a ||| components together ||| 0.5 0.0160315 1.49697e-06 2.33146e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| composed as it is of ||| 1 0.0188479 1.49697e-06 9.75699e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| composed of ||| 0.00490196 0.0188479 1.49697e-06 1.71555e-07 2.718 ||| 0-1 ||| 204 668016 +a ||| compounded by a ||| 0.1 0.0544218 1.49697e-06 1.69882e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| compounded by ||| 0.0163934 0.0544218 1.49697e-06 3.83257e-08 2.718 ||| 0-0 ||| 61 668016 +a ||| compounded ||| 0.0361446 0.0544218 4.49091e-06 7.3e-06 2.718 ||| 0-0 ||| 83 668016 +a ||| comprehensive answers to ||| 0.333333 0.229811 1.49697e-06 1.90676e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| compromise in ||| 0.00531915 0.0587624 1.49697e-06 2.72174e-06 2.718 ||| 0-1 ||| 188 668016 +a ||| compromises based on ||| 0.5 0.0782999 1.49697e-06 4.80583e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| compulsion to ||| 0.166667 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| compulsorily to ||| 0.5 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| conceded as a ||| 1 0.0243476 1.49697e-06 8.55456e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| conceded as ||| 1 0.0243476 1.49697e-06 1.92993e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| conceded that ||| 0.0416667 0.0008521 1.49697e-06 1.50194e-09 2.718 ||| 0-1 ||| 24 668016 +a ||| concentrate on preparing ||| 0.5 0.0782999 1.49697e-06 8.70243e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| concentrate on ||| 0.00297915 0.0782999 4.49091e-06 5.88002e-07 2.718 ||| 0-1 ||| 1007 668016 +a ||| concentrate only on ||| 0.0454545 0.0782999 1.49697e-06 6.54505e-10 2.718 ||| 0-2 ||| 22 668016 +a ||| concentrates on ||| 0.010989 0.0782999 1.49697e-06 9.4839e-08 2.718 ||| 0-1 ||| 91 668016 +a ||| concentrating on having ||| 0.25 0.0782999 1.49697e-06 1.56876e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| concentrating on ||| 0.0168067 0.0782999 5.98788e-06 4.09704e-07 2.718 ||| 0-1 ||| 238 668016 +a ||| concentration of ||| 0.00247525 0.0188479 1.49697e-06 1.71555e-07 2.718 ||| 0-1 ||| 404 668016 +a ||| concept of human rights ||| 0.0208333 0.0188479 1.49697e-06 4.33835e-14 2.718 ||| 0-1 ||| 48 668016 +a ||| concept of human ||| 0.5 0.0188479 1.49697e-06 2.16809e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| concept of ||| 0.00255102 0.0188479 8.98182e-06 1.75696e-06 2.718 ||| 0-1 ||| 2352 668016 +a ||| concept put ||| 0.0625 0.0015876 1.49697e-06 2.44134e-09 2.718 ||| 0-1 ||| 16 668016 +a ||| concern about ||| 0.00116686 0.0526361 1.49697e-06 6.72747e-07 2.718 ||| 0-1 ||| 857 668016 +a ||| concern also to ||| 1 0.229811 1.49697e-06 2.36099e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| concern data exchange for European ||| 1 0.0683377 1.49697e-06 2.06411e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| concern data exchange for ||| 1 0.0683377 1.49697e-06 6.17276e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| concern for ||| 0.00660502 0.0683377 7.48485e-06 4.91927e-06 2.718 ||| 0-1 ||| 757 668016 +a ||| concern in ||| 0.00359712 0.0587624 1.49697e-06 8.02101e-06 2.718 ||| 0-1 ||| 278 668016 +a ||| concern is to ||| 0.0263158 0.229811 1.49697e-06 1.46567e-06 2.718 ||| 0-2 ||| 38 668016 +a ||| concern of ||| 0.00895522 0.0188479 4.49091e-06 3.94873e-06 2.718 ||| 0-1 ||| 335 668016 +a ||| concern ourselves with here in ||| 1 0.0587624 1.49697e-06 3.30845e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| concern to a ||| 0.333333 0.229811 1.49697e-06 2.07291e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| concern to ||| 0.0166976 0.229811 1.34727e-05 4.67653e-05 2.718 ||| 0-1 ||| 539 668016 +a ||| concern ||| 0.00114407 0.0020474 2.09576e-05 2.37e-05 2.718 ||| 0-0 ||| 12237 668016 +a ||| concerned , a partner ||| 1 0.044342 1.49697e-06 1.06394e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| concerned , a ||| 0.0294118 0.044342 1.49697e-06 4.22198e-06 2.718 ||| 0-0 ||| 34 668016 +a ||| concerned , at ||| 0.125 0.204175 1.49697e-06 6.52912e-06 2.718 ||| 0-2 ||| 8 668016 +a ||| concerned , is ||| 0.0357143 0.044342 1.49697e-06 2.9852e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| concerned , it is already five ||| 1 0.044342 1.49697e-06 4.86769e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| concerned , it is already ||| 1 0.044342 1.49697e-06 2.45843e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| concerned , it is ||| 0.00854701 0.044342 1.49697e-06 5.30864e-08 2.718 ||| 0-0 ||| 117 668016 +a ||| concerned , it ||| 0.0163934 0.044342 1.49697e-06 1.69383e-06 2.718 ||| 0-0 ||| 61 668016 +a ||| concerned , the ||| 0.00183486 0.044342 1.49697e-06 5.84749e-06 2.718 ||| 0-0 ||| 545 668016 +a ||| concerned , to ||| 0.0689655 0.229811 2.99394e-06 6.71994e-05 2.718 ||| 0-2 ||| 29 668016 +a ||| concerned , we are in ||| 0.25 0.0587624 1.49697e-06 1.98526e-09 2.718 ||| 0-4 ||| 4 668016 +a ||| concerned , we doubt ||| 0.333333 0.044342 1.49697e-06 9.88301e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| concerned , we ||| 0.0111111 0.044342 1.49697e-06 1.08129e-06 2.718 ||| 0-0 ||| 90 668016 +a ||| concerned , will be to ||| 1 0.229811 1.49697e-06 1.05359e-08 2.718 ||| 0-4 ||| 1 668016 +a ||| concerned , ||| 0.00368822 0.044342 2.24546e-05 9.52487e-05 2.718 ||| 0-0 ||| 4067 668016 +a ||| concerned about ||| 0.00314861 0.0526361 7.48485e-06 8.10622e-06 2.718 ||| 0-1 ||| 1588 668016 +a ||| concerned are ||| 0.00649351 0.044342 1.49697e-06 1.21184e-05 2.718 ||| 0-0 ||| 154 668016 +a ||| concerned at ||| 0.00526316 0.204175 1.49697e-06 5.47493e-05 2.718 ||| 0-1 ||| 190 668016 +a ||| concerned by ||| 0.00440529 0.0337966 1.49697e-06 1.32348e-05 2.718 ||| 0-1 ||| 227 668016 +a ||| concerned has ||| 0.0217391 0.044342 1.49697e-06 4.11131e-06 2.718 ||| 0-0 ||| 46 668016 +a ||| concerned in ||| 0.0149254 0.0587624 2.99394e-06 9.66487e-05 2.718 ||| 0-1 ||| 134 668016 +a ||| concerned play ||| 1 0.044342 1.49697e-06 2.06065e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| concerned take some ||| 0.166667 0.044342 1.49697e-06 1.40074e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| concerned take ||| 0.1 0.044342 1.49697e-06 1.28591e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| concerned to play ||| 0.5 0.229811 1.49697e-06 1.45382e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| concerned to take up ||| 1 0.229811 1.49697e-06 3.0941e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| concerned to take ||| 0.166667 0.229811 1.49697e-06 9.07227e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| concerned to ||| 0.0191257 0.229811 1.04788e-05 0.000563495 2.718 ||| 0-1 ||| 366 668016 +a ||| concerned with ||| 0.0100908 0.0571592 1.49697e-05 2.68557e-05 2.718 ||| 0-1 ||| 991 668016 +a ||| concerned ||| 0.0129146 0.044342 0.000263467 0.0007987 2.718 ||| 0-0 ||| 13628 668016 +a ||| concerning electronic money ||| 1 0.22348 1.49697e-06 6.28208e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| concerning electronic ||| 1 0.22348 1.49697e-06 3.8446e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| concerning for ||| 0.5 0.145909 1.49697e-06 0.00015071 2.718 ||| 0-0 0-1 ||| 2 668016 +a ||| concerning ourselves ||| 0.0526316 0.22348 1.49697e-06 1.30103e-06 2.718 ||| 0-0 ||| 19 668016 +a ||| concerning the requirement ||| 0.111111 0.22348 1.49697e-06 1.0571e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| concerning the ||| 0.001332 0.22348 1.19758e-05 0.000251092 2.718 ||| 0-0 ||| 6006 668016 +a ||| concerning town ||| 0.25 0.22348 1.49697e-06 5.1534e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| concerning whether ||| 0.333333 0.22348 1.49697e-06 1.07444e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| concerning ||| 0.00654515 0.22348 0.000139218 0.00409 2.718 ||| 0-0 ||| 14209 668016 +a ||| concerns - ||| 0.0769231 0.127284 1.49697e-06 8.8965e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| concerns a ||| 0.00854701 0.127284 2.99394e-06 0.000104542 2.718 ||| 0-0 ||| 234 668016 +a ||| concerns about ||| 0.00145349 0.127284 1.49697e-06 3.33563e-06 2.718 ||| 0-0 ||| 688 668016 +a ||| concerns as to ||| 0.142857 0.229811 1.49697e-06 2.67739e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| concerns me is ||| 0.025 0.127284 1.49697e-06 4.4506e-08 2.718 ||| 0-0 ||| 40 668016 +a ||| concerns me ||| 0.00641026 0.127284 1.49697e-06 1.42005e-06 2.718 ||| 0-0 ||| 156 668016 +a ||| concerns now of ||| 0.333333 0.0188479 1.49697e-06 4.56356e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| concerns of ||| 0.00138889 0.0730661 1.49697e-06 6.97609e-05 2.718 ||| 0-0 0-1 ||| 720 668016 +a ||| concerns that are ||| 0.05 0.127284 1.49697e-06 6.01958e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| concerns that ||| 0.00306748 0.127284 1.49697e-06 3.96737e-05 2.718 ||| 0-0 ||| 326 668016 +a ||| concerns the desire to ||| 0.5 0.229811 1.49697e-06 7.53842e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| concerns whether we ||| 0.5 0.127284 1.49697e-06 7.03363e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| concerns whether ||| 0.0555556 0.127284 1.49697e-06 6.19578e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| concerns young people the world over ||| 1 0.0682544 1.49697e-06 1.36426e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| concerns ||| 0.00428602 0.127284 8.98182e-05 0.0023585 2.718 ||| 0-0 ||| 13999 668016 +a ||| concession for ||| 0.0833333 0.0683377 1.49697e-06 1.32655e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| concession from ||| 0.5 0.0435582 1.49697e-06 2.59157e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| concessions for were ||| 0.111111 0.0683377 1.49697e-06 3.30052e-10 2.718 ||| 0-1 ||| 9 668016 +a ||| concessions for ||| 0.030303 0.0683377 1.49697e-06 1.84243e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| concessions to known ||| 1 0.229811 1.49697e-06 1.92841e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| concessions to ||| 0.0163934 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| conclude , for ||| 0.2 0.0683377 1.49697e-06 1.05904e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| conclude in ||| 0.0555556 0.0587624 1.49697e-06 1.44799e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| concluded at a ||| 0.333333 0.204175 2.99394e-06 5.37078e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| concluded at ||| 0.0483871 0.204175 4.49091e-06 1.21166e-06 2.718 ||| 0-1 ||| 62 668016 +a ||| concluded on ||| 0.025 0.0782999 1.49697e-06 1.35051e-06 2.718 ||| 0-1 ||| 40 668016 +a ||| conclusion at ||| 0.0714286 0.204175 1.49697e-06 3.01213e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| conclusions from ||| 0.0047619 0.0435582 1.49697e-06 1.8141e-07 2.718 ||| 0-1 ||| 210 668016 +a ||| concrete contribution to seeing ||| 1 0.229811 1.49697e-06 5.25964e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| concrete contribution to ||| 0.333333 0.229811 1.49697e-06 9.868e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| concur with ||| 0.00409836 0.0571592 1.49697e-06 4.84158e-08 2.718 ||| 0-1 ||| 244 668016 +a ||| condemn it to a niche position ||| 0.5 0.229811 1.49697e-06 1.22026e-18 2.718 ||| 0-2 ||| 2 668016 +a ||| condemn it to a niche ||| 0.5 0.229811 1.49697e-06 3.70562e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| condemn it to a ||| 0.5 0.229811 1.49697e-06 3.36875e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| condemn it to ||| 0.25 0.229811 1.49697e-06 7.59997e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| condemn ourselves to the Europe ||| 0.25 0.229811 1.49697e-06 4.22305e-14 2.718 ||| 0-2 ||| 4 668016 +a ||| condemn ourselves to the ||| 0.25 0.229811 1.49697e-06 8.34595e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| condemn ourselves to ||| 0.25 0.229811 1.49697e-06 1.35946e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| condemn ||| 0.00111235 0.0017762 2.99394e-06 3.7e-06 2.718 ||| 0-0 ||| 1798 668016 +a ||| condemned for ||| 0.0384615 0.0683377 1.49697e-06 4.49552e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| condemned in such a ||| 1 0.0587624 1.49697e-06 6.72208e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| condemned in such ||| 1 0.0587624 1.49697e-06 1.51652e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| condemned in ||| 0.030303 0.0587624 1.49697e-06 7.33006e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| condemned of ||| 0.5 0.0188479 1.49697e-06 3.60858e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| condemned to ||| 0.00813008 0.229811 2.99394e-06 4.27368e-06 2.718 ||| 0-1 ||| 246 668016 +a ||| condemning itself to ||| 0.333333 0.229811 1.49697e-06 8.55899e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| condemning them to a life of ||| 1 0.0946124 1.49697e-06 5.71698e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| condemning them to a life ||| 1 0.0946124 1.49697e-06 1.05161e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| condemning them to a ||| 0.1 0.0946124 1.49697e-06 6.94133e-10 2.718 ||| 0-0 ||| 10 668016 +a ||| condemning them to ||| 0.0714286 0.0946124 1.49697e-06 1.56598e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| condemning them ||| 0.0555556 0.0946124 1.49697e-06 1.76234e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| condemning ||| 0.00197824 0.0946124 2.99394e-06 6.57e-05 2.718 ||| 0-0 ||| 1011 668016 +a ||| condition for ||| 0.00358423 0.0683377 1.49697e-06 9.43322e-07 2.718 ||| 0-1 ||| 279 668016 +a ||| condition of ||| 0.00409836 0.0188479 1.49697e-06 7.5721e-07 2.718 ||| 0-1 ||| 244 668016 +a ||| conditional on ||| 0.0357143 0.0782999 7.48485e-06 3.4142e-07 2.718 ||| 0-1 ||| 140 668016 +a ||| conditional upon ||| 0.0409836 0.19056 7.48485e-06 1.77435e-08 2.718 ||| 0-1 ||| 122 668016 +a ||| conditions for ||| 0.000964785 0.0683377 2.99394e-06 4.4034e-06 2.718 ||| 0-1 ||| 2073 668016 +a ||| conditions in Georgia in the ||| 1 0.0587624 1.49697e-06 6.79303e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| conditions in Georgia in ||| 1 0.0587624 1.49697e-06 1.10651e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| conditions in ||| 0.00186916 0.0587624 1.49697e-06 7.17986e-06 2.718 ||| 0-1 ||| 535 668016 +a ||| conditions of employment ||| 0.0178571 0.0188479 1.49697e-06 1.72843e-10 2.718 ||| 0-1 ||| 56 668016 +a ||| conditions of ||| 0.00189934 0.0188479 2.99394e-06 3.53463e-06 2.718 ||| 0-1 ||| 1053 668016 +a ||| conditions on ||| 0.00990099 0.0782999 1.49697e-06 4.5333e-06 2.718 ||| 0-1 ||| 101 668016 +a ||| conditions to ||| 0.00980392 0.229811 2.99394e-06 4.1861e-05 2.718 ||| 0-1 ||| 204 668016 +a ||| conditions until ||| 1 0.0268909 1.49697e-06 2.73775e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| conditions valid for the ||| 0.333333 0.0683377 1.49697e-06 4.56862e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| conditions valid for ||| 0.333333 0.0683377 1.49697e-06 7.44174e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| condolences to ||| 0.00446429 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 224 668016 +a ||| conduct for ||| 0.00724638 0.0683377 1.49697e-06 2.21459e-06 2.718 ||| 0-1 ||| 138 668016 +a ||| conduct hearings of ||| 0.5 0.0188479 1.49697e-06 7.64397e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| conduct of ||| 0.0057971 0.0188479 2.99394e-06 1.77767e-06 2.718 ||| 0-1 ||| 345 668016 +a ||| conducted at an earlier stage ||| 1 0.204175 1.49697e-06 9.56326e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| conducted at an earlier ||| 1 0.204175 1.49697e-06 6.38828e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| conducted at an ||| 1 0.204175 1.49697e-06 9.15227e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| conducted at ||| 0.0294118 0.204175 1.49697e-06 2.05914e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| conducted by ||| 0.00406504 0.0939322 1.49697e-06 3.21448e-06 2.718 ||| 0-0 0-1 ||| 246 668016 +a ||| conducted in an equally determined ||| 1 0.0587624 1.49697e-06 1.9284e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| conducted in an equally ||| 1 0.0587624 1.49697e-06 5.6386e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| conducted in an ||| 0.0909091 0.0587624 1.49697e-06 1.61564e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| conducted in ||| 0.011583 0.0587624 4.49091e-06 3.63499e-06 2.718 ||| 0-1 ||| 259 668016 +a ||| conducted on ||| 0.0384615 0.0782999 2.99394e-06 2.2951e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| conducted showed ||| 0.5 0.154068 1.49697e-06 8.28284e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| conducted with a view to converting ||| 1 0.229811 1.49697e-06 1.19376e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| conducted with a view to ||| 0.333333 0.229811 1.49697e-06 5.42616e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| conducted ||| 0.00438596 0.154068 1.04788e-05 0.0003907 2.718 ||| 0-0 ||| 1596 668016 +a ||| conducting a silent ||| 1 0.140069 1.49697e-06 4.24659e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| conducting a ||| 0.018018 0.140069 2.99394e-06 4.93789e-06 2.718 ||| 0-0 ||| 111 668016 +a ||| conducting this debate so close to ||| 0.333333 0.229811 1.49697e-06 1.83943e-18 2.718 ||| 0-5 ||| 3 668016 +a ||| conducting ||| 0.0151007 0.140069 1.34727e-05 0.0001114 2.718 ||| 0-0 ||| 596 668016 +a ||| confer on ||| 0.047619 0.0782999 1.49697e-06 4.17292e-08 2.718 ||| 0-1 ||| 21 668016 +a ||| conference to embark on ||| 0.5 0.0782999 1.49697e-06 4.68688e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| conferred on suppliers and contractors from third ||| 1 0.0782999 1.49697e-06 3.77035e-28 2.718 ||| 0-1 ||| 1 668016 +a ||| conferred on suppliers and contractors from ||| 1 0.0782999 1.49697e-06 8.0563e-24 2.718 ||| 0-1 ||| 1 668016 +a ||| conferred on suppliers and contractors ||| 1 0.0782999 1.49697e-06 5.00267e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| conferred on suppliers and ||| 1 0.0782999 1.49697e-06 7.14667e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| conferred on suppliers ||| 1 0.0782999 1.49697e-06 5.70551e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| conferred on ||| 0.0243902 0.0782999 4.49091e-06 1.78297e-07 2.718 ||| 0-1 ||| 123 668016 +a ||| confidence even ||| 0.25 0.0495435 1.49697e-06 6.03013e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| confined spaces for long periods ||| 1 0.0683377 1.49697e-06 2.04973e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| confined spaces for long ||| 1 0.0683377 1.49697e-06 1.38496e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| confined spaces for ||| 1 0.0683377 1.49697e-06 4.09387e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| confined to ||| 0.0208333 0.229811 8.98182e-06 3.53805e-06 2.718 ||| 0-1 ||| 288 668016 +a ||| confirmed at ||| 0.0277778 0.204175 1.49697e-06 6.60287e-07 2.718 ||| 0-1 ||| 36 668016 +a ||| conflict with ||| 0.00170068 0.0571592 1.49697e-06 6.96186e-07 2.718 ||| 0-1 ||| 588 668016 +a ||| conform to ||| 0.0101523 0.229811 2.99394e-06 4.90422e-07 2.718 ||| 0-1 ||| 197 668016 +a ||| confront ||| 0.00420168 0.170828 2.99394e-06 0.0001187 2.718 ||| 0-0 ||| 476 668016 +a ||| confronted by ||| 0.0149254 0.0337966 1.49697e-06 8.30978e-08 2.718 ||| 0-1 ||| 67 668016 +a ||| confronted in ||| 0.2 0.0587624 1.49697e-06 6.06833e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| confronted with ||| 0.0141844 0.050378 5.98788e-06 4.87497e-07 2.718 ||| 0-0 0-1 ||| 282 668016 +a ||| confronted ||| 0.00809717 0.0435967 2.99394e-06 2.92e-05 2.718 ||| 0-0 ||| 247 668016 +a ||| confronting ||| 0.0225989 0.138947 5.98788e-06 6.02e-05 2.718 ||| 0-0 ||| 177 668016 +a ||| conglomerates to ||| 0.5 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| congratulate him ||| 0.0027248 0.245244 1.49697e-06 1.0675e-06 2.718 ||| 0-0 ||| 367 668016 +a ||| congratulate them ||| 0.0128205 0.245244 1.49697e-06 8.93159e-06 2.718 ||| 0-0 ||| 78 668016 +a ||| congratulate themselves ||| 0.25 0.245244 1.49697e-06 1.43077e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| congratulate ||| 0.00444624 0.245244 3.29333e-05 0.0033297 2.718 ||| 0-0 ||| 4948 668016 +a ||| congratulated ||| 0.0113314 0.165644 5.98788e-06 9.86e-05 2.718 ||| 0-0 ||| 353 668016 +a ||| congratulating both ||| 0.125 0.256725 1.49697e-06 9.81311e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| congratulating ||| 0.00408163 0.256725 4.49091e-06 0.0005924 2.718 ||| 0-0 ||| 735 668016 +a ||| congratulations on ||| 0.00625 0.0782999 1.49697e-06 3.9453e-07 2.718 ||| 0-1 ||| 160 668016 +a ||| congratulations to ||| 0.0113122 0.229811 7.48485e-06 3.64314e-06 2.718 ||| 0-1 ||| 442 668016 +a ||| conjunction with other funds at ||| 0.5 0.204175 1.49697e-06 3.24845e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| conjunction with ||| 0.00544959 0.0571592 5.98788e-06 2.52096e-07 2.718 ||| 0-1 ||| 734 668016 +a ||| connected to ||| 0.00480769 0.229811 1.49697e-06 7.07609e-06 2.718 ||| 0-1 ||| 208 668016 +a ||| connected with the ||| 0.00290698 0.0571592 1.49697e-06 2.07038e-08 2.718 ||| 0-1 ||| 344 668016 +a ||| connected with ||| 0.00107066 0.0571592 1.49697e-06 3.37241e-07 2.718 ||| 0-1 ||| 934 668016 +a ||| connection into ||| 1 0.107578 1.49697e-06 9.26938e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| connection to the ||| 0.047619 0.229811 1.49697e-06 3.28176e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| connection to ||| 0.0172414 0.229811 1.49697e-06 5.3456e-05 2.718 ||| 0-1 ||| 58 668016 +a ||| connection with the ||| 0.000636943 0.0571592 1.49697e-06 1.56406e-07 2.718 ||| 0-1 ||| 1570 668016 +a ||| connection with ||| 0.00401482 0.0571592 1.94606e-05 2.54767e-06 2.718 ||| 0-1 ||| 3238 668016 +a ||| consciousness of ||| 0.05 0.0188479 1.49697e-06 1.06483e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| consensus as to who should ||| 0.25 0.229811 1.49697e-06 2.16537e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| consensus as to who ||| 0.25 0.229811 1.49697e-06 4.88686e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| consensus as to ||| 0.166667 0.229811 1.49697e-06 5.54066e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| consensus of ||| 0.0116279 0.0188479 1.49697e-06 4.58467e-07 2.718 ||| 0-1 ||| 86 668016 +a ||| consent to ||| 0.00480769 0.229811 1.49697e-06 2.9075e-06 2.718 ||| 0-1 ||| 208 668016 +a ||| consequence of ||| 0.00208333 0.0188479 1.49697e-06 1.04412e-06 2.718 ||| 0-1 ||| 480 668016 +a ||| consequences for ||| 0.00453172 0.0683377 4.49091e-06 1.56606e-06 2.718 ||| 0-1 ||| 662 668016 +a ||| consequences of ||| 0.00185615 0.0188479 5.98788e-06 1.25709e-06 2.718 ||| 0-1 ||| 2155 668016 +a ||| consider , at yesterday evening ||| 1 0.204175 1.49697e-06 3.42735e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| consider , at yesterday ||| 1 0.204175 1.49697e-06 1.53693e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| consider , at ||| 0.333333 0.204175 1.49697e-06 6.45768e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| consider for ||| 0.0714286 0.0683377 1.49697e-06 5.8626e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| consider in ||| 0.0188679 0.0587624 1.49697e-06 9.55913e-06 2.718 ||| 0-1 ||| 53 668016 +a ||| consider our Ministerial meetings to be sufficiently ||| 1 0.229811 1.49697e-06 6.30503e-25 2.718 ||| 0-4 ||| 1 668016 +a ||| consider our Ministerial meetings to be ||| 1 0.229811 1.49697e-06 3.37167e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| consider our Ministerial meetings to ||| 1 0.229811 1.49697e-06 1.86045e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| consider to be important ||| 0.142857 0.229811 1.49697e-06 3.87453e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| consider to be ||| 0.00438596 0.229811 1.49697e-06 1.01004e-06 2.718 ||| 0-1 ||| 228 668016 +a ||| consider to ||| 0.0403226 0.229811 7.48485e-06 5.5733e-05 2.718 ||| 0-1 ||| 124 668016 +a ||| consider ||| 0.000225581 0.0002838 2.99394e-06 3.7e-06 2.718 ||| 0-0 ||| 8866 668016 +a ||| considerable amount around it ||| 1 0.0931303 1.49697e-06 1.76106e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| considerable amount around ||| 1 0.0931303 1.49697e-06 9.90292e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| considerable bias , to ||| 1 0.229811 1.49697e-06 4.6997e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| considerable effort over this item , to ||| 1 0.229811 1.49697e-06 1.95654e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| considerably towards ||| 1 0.155507 1.49697e-06 6.20558e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| consideration for ||| 0.0097561 0.0683377 2.99394e-06 3.97964e-06 2.718 ||| 0-1 ||| 205 668016 +a ||| consideration of needs in relation to ||| 1 0.229811 1.49697e-06 2.12396e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| consideration of ||| 0.00627615 0.0188479 4.49091e-06 3.19448e-06 2.718 ||| 0-1 ||| 478 668016 +a ||| consideration should also involve dialogue with other ||| 1 0.0571592 1.49697e-06 1.00985e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| consideration should also involve dialogue with ||| 1 0.0571592 1.49697e-06 7.79504e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| consideration to ||| 0.00925926 0.229811 4.49091e-06 3.78326e-05 2.718 ||| 0-1 ||| 324 668016 +a ||| consideration ||| 0.000198373 0.0001731 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 5041 668016 +a ||| considerations to ||| 0.111111 0.229811 1.49697e-06 9.21293e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| considered as ||| 0.00411523 0.0243476 1.49697e-06 9.4391e-07 2.718 ||| 0-1 ||| 243 668016 +a ||| considered to be ||| 0.00269542 0.229811 1.49697e-06 6.83097e-07 2.718 ||| 0-1 ||| 371 668016 +a ||| considered to ||| 0.012605 0.229811 4.49091e-06 3.76925e-05 2.718 ||| 0-1 ||| 238 668016 +a ||| considering in ||| 0.0769231 0.0587624 1.49697e-06 1.81449e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| considering ||| 0.00201005 0.0216861 8.98182e-06 7.3e-05 2.718 ||| 0-0 ||| 2985 668016 +a ||| considers , in ||| 0.4 0.0587624 2.99394e-06 1.08193e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| considers it appropriate to set up ||| 1 0.229811 1.49697e-06 2.52349e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| considers it appropriate to set ||| 1 0.229811 1.49697e-06 7.39919e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| considers it appropriate to ||| 0.333333 0.229811 1.49697e-06 1.26612e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| consign to ||| 0.333333 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| consigned to ||| 0.0377358 0.229811 2.99394e-06 8.75754e-07 2.718 ||| 0-1 ||| 53 668016 +a ||| consignments in ||| 0.5 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| consistent approach to ||| 0.0555556 0.229811 1.49697e-06 2.12698e-09 2.718 ||| 0-2 ||| 18 668016 +a ||| consistent information at ||| 1 0.204175 1.49697e-06 1.5603e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| consistent with ||| 0.00201816 0.0571592 2.99394e-06 4.62454e-07 2.718 ||| 0-1 ||| 991 668016 +a ||| consistently with ||| 0.0416667 0.0571592 1.49697e-06 2.22045e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| consists in ||| 0.00943396 0.0587624 1.49697e-06 5.828e-07 2.718 ||| 0-1 ||| 106 668016 +a ||| constantly result in ||| 0.111111 0.0587624 1.49697e-06 9.90127e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| constantly stimulating into new movement , ||| 0.333333 0.107578 1.49697e-06 1.48732e-21 2.718 ||| 0-2 ||| 3 668016 +a ||| constantly stimulating into new movement ||| 0.333333 0.107578 1.49697e-06 1.24718e-20 2.718 ||| 0-2 ||| 3 668016 +a ||| constantly stimulating into new ||| 0.333333 0.107578 1.49697e-06 2.84095e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| constantly stimulating into ||| 0.333333 0.107578 1.49697e-06 4.75314e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| constantly telling ||| 0.142857 0.143208 1.49697e-06 4.99861e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| constitution , in violation ||| 1 0.0587624 1.49697e-06 1.28456e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| constitution , in ||| 0.1 0.0587624 1.49697e-06 1.18941e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| constrained to ||| 0.0769231 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| construction of ||| 0.000881834 0.0188479 1.49697e-06 4.99877e-07 2.718 ||| 0-1 ||| 1134 668016 +a ||| consult ||| 0.00490196 0.163287 4.49091e-06 0.0001397 2.718 ||| 0-0 ||| 612 668016 +a ||| consultation in ||| 0.0138889 0.0587624 1.49697e-06 8.89221e-07 2.718 ||| 0-1 ||| 72 668016 +a ||| consultation suffers ||| 1 0.0004898 1.49697e-06 8.46e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| consultation ||| 0.000187935 0.0004898 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 5321 668016 +a ||| consultations with ||| 0.00497512 0.0571592 1.49697e-06 6.67804e-08 2.718 ||| 0-1 ||| 201 668016 +a ||| consulted ||| 0.00239617 0.128026 4.49091e-06 0.0002172 2.718 ||| 0-0 ||| 1252 668016 +a ||| consulting ||| 0.0034188 0.210012 2.99394e-06 0.000157 2.718 ||| 0-0 ||| 585 668016 +a ||| consumers ' ||| 0.00403226 0.0012299 1.49697e-06 7.83157e-08 2.718 ||| 0-0 ||| 248 668016 +a ||| consumers suffering from ||| 0.5 0.0435582 1.49697e-06 1.19271e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| consumers to ||| 0.00250627 0.229811 1.49697e-06 1.31013e-05 2.718 ||| 0-1 ||| 399 668016 +a ||| consumers ||| 7.77001e-05 0.0012299 1.49697e-06 2.28e-05 2.718 ||| 0-0 ||| 12870 668016 +a ||| consumption by even a single cigarette ||| 1 0.0337966 1.49697e-06 1.28615e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| consumption by even a single ||| 1 0.0337966 1.49697e-06 5.84615e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| consumption by even a ||| 1 0.0337966 1.49697e-06 3.68378e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| consumption by even ||| 1 0.0337966 1.49697e-06 8.31068e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| consumption by ||| 0.037037 0.0337966 1.49697e-06 1.36577e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| consumption will not be affected in any ||| 1 0.0587624 1.49697e-06 5.37675e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| consumption will not be affected in ||| 1 0.0587624 1.49697e-06 3.55558e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| contact him again , ||| 0.333333 0.0700825 1.49697e-06 1.69301e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| contact him again ||| 0.333333 0.0700825 1.49697e-06 1.41966e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| contact with ||| 0.00224719 0.0571592 2.99394e-06 3.18876e-07 2.718 ||| 0-1 ||| 890 668016 +a ||| contacted by ||| 0.0416667 0.0337966 1.49697e-06 1.15185e-08 2.718 ||| 0-1 ||| 24 668016 +a ||| contain ECU ||| 0.5 0.0011773 1.49697e-06 1.5732e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| contained in this ||| 0.0046729 0.0587624 1.49697e-06 2.63988e-08 2.718 ||| 0-1 ||| 214 668016 +a ||| contained in ||| 0.0024108 0.0587624 7.48485e-06 4.08561e-06 2.718 ||| 0-1 ||| 2074 668016 +a ||| contains proposals for additional measures . ||| 1 0.0683377 1.49697e-06 4.86839e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| contains proposals for additional measures ||| 1 0.0683377 1.49697e-06 1.60726e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| contains proposals for additional ||| 1 0.0683377 1.49697e-06 7.76829e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| contains proposals for ||| 0.0833333 0.0683377 1.49697e-06 1.46849e-10 2.718 ||| 0-2 ||| 12 668016 +a ||| contaminated with ||| 0.0222222 0.0571592 1.49697e-06 4.17378e-08 2.718 ||| 0-1 ||| 45 668016 +a ||| contempt on ||| 0.2 0.0782999 1.49697e-06 3.9453e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| contempt towards ||| 0.2 0.155507 1.49697e-06 3.5075e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| contend , to ||| 0.5 0.229811 1.49697e-06 3.30023e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| content of ||| 0.00302572 0.0188479 5.98788e-06 1.45822e-06 2.718 ||| 0-1 ||| 1322 668016 +a ||| content to ||| 0.011236 0.229811 1.49697e-06 1.72699e-05 2.718 ||| 0-1 ||| 89 668016 +a ||| content with ||| 0.00900901 0.0571592 1.49697e-06 8.23068e-07 2.718 ||| 0-1 ||| 111 668016 +a ||| contented ||| 0.166667 0.0588235 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| context in ||| 0.00438596 0.0587624 1.49697e-06 8.06307e-06 2.718 ||| 0-1 ||| 228 668016 +a ||| context of helping people ||| 0.25 0.0188479 1.49697e-06 1.32069e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| context of helping ||| 0.25 0.0188479 1.49697e-06 1.50045e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| context of the ||| 0.000478698 0.0188479 1.49697e-06 2.43691e-07 2.718 ||| 0-1 ||| 2089 668016 +a ||| context of ||| 0.000926784 0.0188479 5.98788e-06 3.96943e-06 2.718 ||| 0-1 ||| 4316 668016 +a ||| continent of ||| 0.00505051 0.0188479 1.49697e-06 3.40153e-07 2.718 ||| 0-1 ||| 198 668016 +a ||| contingent on ||| 0.0769231 0.0782999 1.49697e-06 6.82841e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| contingent upon ||| 0.1 0.19056 1.49697e-06 3.5487e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| continuation of ||| 0.00134771 0.0188479 1.49697e-06 3.60858e-07 2.718 ||| 0-1 ||| 742 668016 +a ||| continue at ||| 0.04 0.204175 1.49697e-06 7.87579e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| continue giving support ||| 1 0.136521 1.49697e-06 7.97961e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| continue giving ||| 0.1 0.136521 1.49697e-06 2.3339e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| continue in ||| 0.00383142 0.0587624 1.49697e-06 1.39031e-05 2.718 ||| 0-1 ||| 261 668016 +a ||| continue to allow ever more ||| 0.0833333 0.229811 1.49697e-06 8.43844e-15 2.718 ||| 0-1 ||| 12 668016 +a ||| continue to allow ever ||| 0.0833333 0.229811 1.49697e-06 3.69507e-12 2.718 ||| 0-1 ||| 12 668016 +a ||| continue to allow ||| 0.0208333 0.229811 1.49697e-06 1.96651e-08 2.718 ||| 0-1 ||| 48 668016 +a ||| continue to back ||| 0.2 0.229811 2.99394e-06 5.45208e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| continue to be maintained ||| 0.5 0.229811 1.49697e-06 5.18571e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| continue to be postponed , by ||| 1 0.0337966 1.49697e-06 2.23029e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| continue to be ||| 0.00185701 0.229811 2.99394e-06 1.46904e-06 2.718 ||| 0-1 ||| 1077 668016 +a ||| continue to detain ||| 0.2 0.229811 1.49697e-06 1.13484e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| continue to do so for ||| 0.2 0.229811 1.49697e-06 4.8576e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| continue to do so ||| 0.013245 0.229811 2.99394e-06 6.32031e-10 2.718 ||| 0-1 ||| 151 668016 +a ||| continue to do ||| 0.0190476 0.229811 2.99394e-06 2.78465e-07 2.718 ||| 0-1 ||| 105 668016 +a ||| continue to exist , subject to ||| 0.25 0.229811 1.49697e-06 4.27042e-14 2.718 ||| 0-1 ||| 4 668016 +a ||| continue to exist , subject ||| 0.25 0.229811 1.49697e-06 4.80589e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| continue to exist , ||| 0.0909091 0.229811 1.49697e-06 8.90309e-10 2.718 ||| 0-1 ||| 11 668016 +a ||| continue to exist ||| 0.0238095 0.229811 2.99394e-06 7.46561e-09 2.718 ||| 0-1 ||| 84 668016 +a ||| continue to fight every ||| 0.5 0.229811 1.49697e-06 7.26682e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| continue to fight ||| 0.0163934 0.229811 1.49697e-06 4.46639e-09 2.718 ||| 0-1 ||| 61 668016 +a ||| continue to play ||| 0.00769231 0.229811 1.49697e-06 2.09134e-08 2.718 ||| 0-1 ||| 130 668016 +a ||| continue to say it to ||| 1 0.229811 1.49697e-06 1.22428e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| continue to stick precisely to ||| 0.5 0.229811 1.49697e-06 1.4346e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| continue to stick precisely ||| 0.5 0.229811 1.49697e-06 1.61448e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| continue to stick ||| 0.5 0.229811 1.49697e-06 1.63741e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| continue to support those countries ||| 1 0.229811 1.49697e-06 7.6198e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| continue to support those ||| 1 0.229811 1.49697e-06 2.0068e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| continue to support ||| 0.00529101 0.229811 1.49697e-06 2.77143e-08 2.718 ||| 0-1 ||| 189 668016 +a ||| continue to ||| 0.00760679 0.229811 5.83818e-05 8.10598e-05 2.718 ||| 0-1 ||| 5127 668016 +a ||| continue with ||| 0.00384615 0.0571592 2.99394e-06 3.86325e-06 2.718 ||| 0-1 ||| 520 668016 +a ||| continued breaches of the ||| 1 0.0188479 1.49697e-06 1.80099e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| continued breaches of ||| 1 0.0188479 1.49697e-06 2.9336e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| continued to hit ||| 0.166667 0.229811 1.49697e-06 3.74984e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| continued to ||| 0.0037037 0.229811 1.49697e-06 1.19803e-05 2.718 ||| 0-1 ||| 270 668016 +a ||| continues to protect ||| 0.166667 0.229811 1.49697e-06 5.57137e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| continues to remain ||| 0.166667 0.229811 1.49697e-06 1.95886e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| continues to ||| 0.00511509 0.229811 1.19758e-05 1.61489e-05 2.718 ||| 0-1 ||| 1564 668016 +a ||| continuing to ||| 0.00911854 0.229811 8.98182e-06 2.16837e-05 2.718 ||| 0-1 ||| 658 668016 +a ||| contractors from ||| 0.5 0.0435582 1.49697e-06 5.03916e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| contracts to ||| 0.0212766 0.229811 1.49697e-06 8.58239e-06 2.718 ||| 0-1 ||| 47 668016 +a ||| contradicted ||| 0.015873 0.010101 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 63 668016 +a ||| contrary to ||| 0.00126502 0.229811 2.99394e-06 1.76552e-05 2.718 ||| 0-1 ||| 1581 668016 +a ||| contrast in ||| 0.25 0.0587624 1.49697e-06 7.14982e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| contrast to ||| 0.00262467 0.229811 1.49697e-06 4.16859e-06 2.718 ||| 0-1 ||| 381 668016 +a ||| contrast with ||| 0.010989 0.0571592 1.49697e-06 1.98672e-07 2.718 ||| 0-1 ||| 91 668016 +a ||| contribute to a temporary ||| 1 0.229811 1.49697e-06 9.36225e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| contribute to a ||| 0.00564972 0.229811 1.49697e-06 6.04016e-07 2.718 ||| 0-1 ||| 177 668016 +a ||| contribute to the death ||| 0.5 0.229811 1.49697e-06 4.54257e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| contribute to the ||| 0.00327869 0.229811 4.49091e-06 8.3657e-07 2.718 ||| 0-1 ||| 915 668016 +a ||| contribute to ||| 0.00789771 0.229811 3.14364e-05 1.36267e-05 2.718 ||| 0-1 ||| 2659 668016 +a ||| contribute towards ||| 0.00790514 0.155507 2.99394e-06 1.31194e-07 2.718 ||| 0-1 ||| 253 668016 +a ||| contribute ||| 0.000242601 0.0001732 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 4122 668016 +a ||| contributed , ||| 0.0416667 0.0055866 1.49697e-06 1.3118e-06 2.718 ||| 0-0 ||| 24 668016 +a ||| contributed to ||| 0.00481928 0.229811 5.98788e-06 3.29284e-06 2.718 ||| 0-1 ||| 830 668016 +a ||| contributed ||| 0.000582072 0.0055866 1.49697e-06 1.1e-05 2.718 ||| 0-0 ||| 1718 668016 +a ||| contributes to ||| 0.0040404 0.229811 2.99394e-06 1.5063e-06 2.718 ||| 0-1 ||| 495 668016 +a ||| contributing to ||| 0.00384123 0.229811 4.49091e-06 3.78326e-06 2.718 ||| 0-1 ||| 781 668016 +a ||| contribution in ||| 0.0078125 0.0587624 1.49697e-06 5.40743e-06 2.718 ||| 0-1 ||| 128 668016 +a ||| contribution to keeping those ||| 0.5 0.229811 1.49697e-06 1.34005e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| contribution to keeping ||| 0.5 0.229811 1.49697e-06 1.85064e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| contribution to seeing ||| 1 0.229811 1.49697e-06 1.6804e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| contribution to the preparations ||| 0.5 0.229811 1.49697e-06 1.66454e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| contribution to the ||| 0.00403226 0.229811 4.49091e-06 1.93551e-06 2.718 ||| 0-1 ||| 744 668016 +a ||| contribution to their ||| 0.5 0.229811 1.49697e-06 3.65431e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| contribution to ||| 0.0280682 0.229811 7.63455e-05 3.15271e-05 2.718 ||| 0-1 ||| 1817 668016 +a ||| contribution towards ||| 0.0266667 0.155507 5.98788e-06 3.03534e-07 2.718 ||| 0-1 ||| 150 668016 +a ||| contribution we are making , for example ||| 1 0.0683377 1.49697e-06 7.62867e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| contribution we are making , for ||| 1 0.0683377 1.49697e-06 2.62064e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| contributions to ||| 0.0262295 0.229811 1.19758e-05 7.95185e-06 2.718 ||| 0-1 ||| 305 668016 +a ||| contributors to ||| 0.0327869 0.229811 2.99394e-06 6.30543e-07 2.718 ||| 0-1 ||| 61 668016 +a ||| contributory factor in ||| 0.333333 0.0587624 1.49697e-06 6.42402e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| control is made even more ||| 0.333333 0.0495435 1.49697e-06 2.24419e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| control is made even ||| 0.333333 0.0495435 1.49697e-06 9.82699e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| control of ||| 0.00101317 0.0188479 2.99394e-06 2.26867e-06 2.718 ||| 0-1 ||| 1974 668016 +a ||| control to ||| 0.0425532 0.229811 2.99394e-06 2.68681e-05 2.718 ||| 0-1 ||| 47 668016 +a ||| controversial by ||| 0.25 0.0337966 1.49697e-06 6.2529e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| convenience and often ||| 1 0.0015873 1.49697e-06 1.09021e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| convenience and ||| 0.0333333 0.0015873 1.49697e-06 8.29685e-09 2.718 ||| 0-1 ||| 30 668016 +a ||| convenience of ||| 0.105263 0.0188479 2.99394e-06 1.27188e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| convenient for ||| 0.0952381 0.0683377 2.99394e-06 1.47394e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| convenient it may seem to ||| 1 0.229811 1.49697e-06 1.7063e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| conversely ||| 0.0047619 0.111354 1.49697e-06 4.66e-05 2.718 ||| 0-0 ||| 210 668016 +a ||| convert to ||| 0.0967742 0.229811 4.49091e-06 1.75151e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| converted into ||| 0.0102041 0.107578 1.49697e-06 2.61195e-08 2.718 ||| 0-1 ||| 98 668016 +a ||| convey to the ||| 0.0227273 0.229811 1.49697e-06 2.02153e-07 2.718 ||| 0-1 ||| 44 668016 +a ||| convey to ||| 0.0235294 0.229811 2.99394e-06 3.29284e-06 2.718 ||| 0-1 ||| 85 668016 +a ||| convey with regard to ||| 1 0.229811 1.49697e-06 1.43371e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| conveyed to ||| 0.0243902 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 41 668016 +a ||| convince both ||| 0.142857 0.328358 1.49697e-06 8.98154e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| convince ||| 0.00342466 0.328358 4.49091e-06 0.0005422 2.718 ||| 0-0 ||| 876 668016 +a ||| cooperate with FRONTEX ||| 0.333333 0.0571592 1.49697e-06 6.01024e-14 2.718 ||| 0-1 ||| 3 668016 +a ||| cooperate with ||| 0.0013986 0.0571592 1.49697e-06 1.50256e-07 2.718 ||| 0-1 ||| 715 668016 +a ||| cooperation and with the help ||| 1 0.0571592 1.49697e-06 2.25486e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| cooperation and with the ||| 1 0.0571592 1.49697e-06 1.18241e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| cooperation and with ||| 0.5 0.0571592 1.49697e-06 1.92601e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| cooperation in order to meet ||| 1 0.229811 1.49697e-06 4.47241e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| cooperation in order to ||| 0.0227273 0.229811 1.49697e-06 3.67797e-10 2.718 ||| 0-3 ||| 44 668016 +a ||| cooperation in ||| 0.00042123 0.0587624 1.49697e-06 5.5336e-06 2.718 ||| 0-1 ||| 2374 668016 +a ||| cooperation must be based on the ||| 1 0.0782999 1.49697e-06 1.40952e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| cooperation must be based on ||| 0.1 0.0782999 1.49697e-06 2.29593e-14 2.718 ||| 0-4 ||| 10 668016 +a ||| cooperation of ||| 0.00464037 0.0188479 2.99394e-06 2.72418e-06 2.718 ||| 0-1 ||| 431 668016 +a ||| cooperation on a basis ||| 1 0.0782999 1.49697e-06 9.19609e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| cooperation on a ||| 0.025641 0.0782999 1.49697e-06 1.54869e-07 2.718 ||| 0-1 ||| 39 668016 +a ||| cooperation on ||| 0.00113895 0.0782999 1.49697e-06 3.49387e-06 2.718 ||| 0-1 ||| 878 668016 +a ||| coordinated at ||| 0.0163934 0.204175 1.49697e-06 2.31441e-07 2.718 ||| 0-1 ||| 61 668016 +a ||| coordination measures into account ||| 1 0.107578 1.49697e-06 5.45596e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| coordination measures into ||| 1 0.107578 1.49697e-06 1.89773e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| cope with ||| 0.00131926 0.0571592 1.49697e-06 3.78979e-07 2.718 ||| 0-1 ||| 758 668016 +a ||| coping with ||| 0.00694444 0.0571592 1.49697e-06 4.17378e-08 2.718 ||| 0-1 ||| 144 668016 +a ||| copyright and related rights in ||| 0.166667 0.0587624 1.49697e-06 3.15642e-17 2.718 ||| 0-4 ||| 6 668016 +a ||| copyright law based on ||| 1 0.0782999 1.49697e-06 5.02085e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| correct since ||| 1 0.0050746 1.49697e-06 5.652e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| correcting when ||| 1 0.0055468 1.49697e-06 3.4133e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| correctly to ||| 0.333333 0.229811 1.49697e-06 6.69076e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| correlation is also evident in ||| 1 0.0587624 1.49697e-06 3.91109e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| correspond to ||| 0.00421941 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 237 668016 +a ||| corresponding to those ||| 0.2 0.229811 1.49697e-06 5.47891e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| corresponding to ||| 0.0102564 0.229811 2.99394e-06 7.56651e-06 2.718 ||| 0-1 ||| 195 668016 +a ||| corresponds to an impact velocity ||| 1 0.229811 1.49697e-06 2.20668e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| corresponds to an impact ||| 1 0.229811 1.49697e-06 5.51671e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| corresponds to an ||| 0.1 0.229811 1.49697e-06 6.69504e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| corresponds to one-third ||| 0.5 0.229811 1.49697e-06 1.05441e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| corresponds to ||| 0.0130435 0.229811 4.49091e-06 1.5063e-06 2.718 ||| 0-1 ||| 230 668016 +a ||| corrupt . if ||| 0.5 0.0014881 1.49697e-06 1.25619e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| cost advantage involved in ||| 0.5 0.0587624 1.49697e-06 8.7219e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| cost at all to ||| 0.5 0.229811 1.49697e-06 5.73925e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| cost of as much ||| 1 0.0188479 1.49697e-06 2.50841e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| cost of as ||| 1 0.0188479 1.49697e-06 2.49916e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| cost of ||| 0.00143609 0.0188479 4.49091e-06 2.4491e-06 2.718 ||| 0-1 ||| 2089 668016 +a ||| costs accounting for ||| 0.5 0.0683377 1.49697e-06 2.60475e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| costs at ||| 0.0588235 0.204175 1.49697e-06 2.55946e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| could adversely affect ||| 0.166667 0.330659 1.49697e-06 5.61769e-12 2.718 ||| 0-2 ||| 6 668016 +a ||| could affect ||| 0.0151515 0.330659 1.49697e-06 1.12354e-06 2.718 ||| 0-1 ||| 66 668016 +a ||| could be allowed to ||| 0.25 0.229811 1.49697e-06 7.30882e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| could be brought to ||| 0.142857 0.229811 1.49697e-06 1.26403e-09 2.718 ||| 0-3 ||| 7 668016 +a ||| could be made available for ||| 0.333333 0.0683377 1.49697e-06 3.16435e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| could be reserves at a ||| 1 0.204175 1.49697e-06 1.47761e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| could be reserves at ||| 1 0.204175 1.49697e-06 3.33352e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| could be returned ||| 0.25 0.0073918 1.49697e-06 8.2478e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| could be ||| 0.000179276 0.0003124 1.49697e-06 9.60696e-08 2.718 ||| 0-1 ||| 5578 668016 +a ||| could do , however , is to ||| 1 0.229811 1.49697e-06 4.22498e-13 2.718 ||| 0-6 ||| 1 668016 +a ||| could fail to ||| 0.1 0.229811 1.49697e-06 1.34514e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| could get not ||| 1 0.0029933 1.49697e-06 1.06336e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| could get ||| 0.012987 0.0029933 1.49697e-06 3.11462e-08 2.718 ||| 0-1 ||| 77 668016 +a ||| could give ||| 0.00487805 0.0241455 1.49697e-06 3.99852e-07 2.718 ||| 0-1 ||| 205 668016 +a ||| could have misunderstood me on ||| 1 0.0782999 1.49697e-06 7.77016e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| could have talked about ||| 1 0.0526361 1.49697e-06 4.45716e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| could help to set out ||| 1 0.229811 1.49697e-06 1.06335e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| could help to set ||| 1 0.229811 1.49697e-06 2.77609e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| could help to ||| 0.0194175 0.244893 2.99394e-06 1.6384e-06 2.718 ||| 0-1 0-2 ||| 103 668016 +a ||| could in fact ||| 0.0384615 0.0587624 1.49697e-06 1.25153e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| could in ||| 0.031746 0.0587624 2.99394e-06 4.27247e-05 2.718 ||| 0-1 ||| 63 668016 +a ||| could involve ||| 0.0263158 0.170498 1.49697e-06 4.86108e-07 2.718 ||| 0-1 ||| 38 668016 +a ||| could join ||| 0.04 2.63e-05 1.49697e-06 4.212e-11 2.718 ||| 0-0 ||| 25 668016 +a ||| could lead to ||| 0.0023753 0.229811 1.49697e-06 4.79516e-08 2.718 ||| 0-2 ||| 421 668016 +a ||| could lose out ||| 0.2 0.0669777 1.49697e-06 9.65269e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| could mention , in emotional ||| 1 0.0587624 1.49697e-06 1.08954e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| could mention , in ||| 1 0.0587624 1.49697e-06 4.95245e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| could not help thinking of ||| 0.0714286 0.0188479 1.49697e-06 1.01473e-15 2.718 ||| 0-4 ||| 14 668016 +a ||| could not sleep for the rest of ||| 0.5 0.0683377 1.49697e-06 1.1286e-19 2.718 ||| 0-3 ||| 2 668016 +a ||| could not sleep for the rest ||| 0.5 0.0683377 1.49697e-06 2.07601e-18 2.718 ||| 0-3 ||| 2 668016 +a ||| could not sleep for the ||| 0.5 0.0683377 1.49697e-06 2.74604e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| could not sleep for ||| 0.5 0.0683377 1.49697e-06 4.47298e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| could open up ||| 0.142857 0.0195077 1.49697e-06 1.40719e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| could prove to ||| 0.0555556 0.229811 1.49697e-06 1.31774e-08 2.718 ||| 0-2 ||| 18 668016 +a ||| could provide for consumers , ||| 1 0.0683377 1.49697e-06 3.45697e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| could provide for consumers ||| 1 0.0683377 1.49697e-06 2.89881e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| could provide for ||| 0.25 0.0683377 1.49697e-06 7.75084e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| could pursue at ||| 1 0.204175 1.49697e-06 9.48741e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| could refer to ||| 0.142857 0.229811 1.49697e-06 1.94547e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| could succeed in doing ||| 1 0.0587624 1.49697e-06 5.97569e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| could succeed in ||| 0.5 0.0587624 1.49697e-06 1.62781e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| could tell ||| 0.04 0.0029382 1.49697e-06 1.30131e-08 2.718 ||| 0-1 ||| 25 668016 +a ||| could to ||| 0.0263158 0.229811 1.49697e-06 0.000249099 2.718 ||| 0-1 ||| 38 668016 +a ||| could ||| 4.23926e-05 2.63e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 23589 668016 +a ||| council to ||| 0.125 0.229811 1.49697e-06 1.89163e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| count to ||| 0.166667 0.229811 1.49697e-06 9.56323e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| counter to ||| 0.00512821 0.229811 2.99394e-06 6.44555e-06 2.718 ||| 0-1 ||| 390 668016 +a ||| counter weight on the ||| 0.333333 0.0782999 1.49697e-06 1.31128e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| counter weight on ||| 0.333333 0.0782999 1.49697e-06 2.13593e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| counterbalance to ||| 0.0526316 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| counterpart based on ||| 1 0.0782999 1.49697e-06 3.20389e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| counterpart to ||| 0.111111 0.229811 2.99394e-06 1.26109e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| countries , and ||| 0.0017331 0.0015873 1.49697e-06 8.73697e-08 2.718 ||| 0-2 ||| 577 668016 +a ||| countries , in order to please the ||| 1 0.0587624 1.49697e-06 7.02708e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| countries , in order to please ||| 1 0.0587624 1.49697e-06 1.14463e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| countries , in order to ||| 0.0526316 0.0587624 1.49697e-06 1.28755e-10 2.718 ||| 0-2 ||| 19 668016 +a ||| countries , in order ||| 0.0714286 0.0587624 1.49697e-06 1.44899e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| countries , in ||| 0.00621118 0.0587624 1.49697e-06 2.7206e-06 2.718 ||| 0-2 ||| 161 668016 +a ||| countries , is responsible for ||| 1 0.0683377 1.49697e-06 7.73425e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| countries , to ||| 0.0103093 0.229811 1.49697e-06 1.5862e-05 2.718 ||| 0-2 ||| 97 668016 +a ||| countries : ||| 0.0105263 0.0007376 1.49697e-06 1.7694e-08 2.718 ||| 0-1 ||| 95 668016 +a ||| countries in question here ||| 0.5 0.0587624 1.49697e-06 3.82716e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| countries in question ||| 0.00757576 0.0587624 1.49697e-06 1.88735e-08 2.718 ||| 0-1 ||| 132 668016 +a ||| countries in ||| 0.00176056 0.0587624 7.48485e-06 2.28133e-05 2.718 ||| 0-1 ||| 2840 668016 +a ||| countries of ||| 0.00049505 0.0188479 2.99394e-06 1.1231e-05 2.718 ||| 0-1 ||| 4040 668016 +a ||| countries on ||| 0.00722022 0.0782999 2.99394e-06 1.44041e-05 2.718 ||| 0-1 ||| 277 668016 +a ||| countries sign up to ||| 1 0.229811 1.49697e-06 2.36794e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| countries to apply ||| 0.333333 0.229811 1.49697e-06 1.91401e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| countries to benefit ||| 0.25 0.229811 1.49697e-06 1.75174e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| countries to help ||| 0.0714286 0.229811 1.49697e-06 2.53649e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| countries to pre-empt such a ||| 1 0.229811 1.49697e-06 8.53841e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| countries to pre-empt such ||| 1 0.229811 1.49697e-06 1.92628e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| countries to pre-empt ||| 1 0.229811 1.49697e-06 9.31067e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| countries to reduce their levels ||| 1 0.229811 1.49697e-06 7.77708e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| countries to reduce their ||| 0.5 0.229811 1.49697e-06 5.87393e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| countries to reduce ||| 0.333333 0.229811 1.49697e-06 5.06766e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| countries to ||| 0.00646831 0.229811 1.49697e-05 0.00013301 2.718 ||| 0-1 ||| 1546 668016 +a ||| countries which stand to benefit from ||| 0.5 0.229811 1.49697e-06 3.94914e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| countries which stand to benefit ||| 0.5 0.229811 1.49697e-06 2.45227e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| countries which stand to ||| 0.5 0.229811 1.49697e-06 1.86201e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| countries which want to ||| 0.0769231 0.229811 1.49697e-06 5.28211e-10 2.718 ||| 0-3 ||| 13 668016 +a ||| countries who find themselves trapped in ||| 1 0.0587624 1.49697e-06 1.15132e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| countries with which we are ||| 0.111111 0.0571592 1.49697e-06 9.27511e-12 2.718 ||| 0-1 ||| 9 668016 +a ||| countries with which we ||| 0.125 0.0571592 1.49697e-06 6.11303e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| countries with which ||| 0.00543478 0.0571592 1.49697e-06 5.38484e-08 2.718 ||| 0-1 ||| 184 668016 +a ||| countries with ||| 0.00226757 0.0571592 4.49091e-06 6.33913e-06 2.718 ||| 0-1 ||| 1323 668016 +a ||| countries ||| 4.43228e-05 4.47e-05 5.98788e-06 3.7e-06 2.718 ||| 0-0 ||| 90247 668016 +a ||| country , in ||| 0.00877193 0.0587624 1.49697e-06 2.57873e-06 2.718 ||| 0-2 ||| 114 668016 +a ||| country closer to ||| 0.0909091 0.229811 1.49697e-06 2.68537e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| country concerned to ||| 0.5 0.229811 1.49697e-06 2.02802e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| country concerned ||| 0.00813008 0.044342 1.49697e-06 2.87452e-07 2.718 ||| 0-1 ||| 123 668016 +a ||| country free of ||| 0.25 0.0188479 1.49697e-06 1.24124e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| country holding ||| 0.00826446 0.0045643 1.49697e-06 3.599e-09 2.718 ||| 0-1 ||| 121 668016 +a ||| country in ||| 0.00165289 0.0587624 2.99394e-06 2.16237e-05 2.718 ||| 0-1 ||| 1210 668016 +a ||| country is worse off ||| 1 0.0893962 1.49697e-06 3.0715e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| country of Romania ||| 0.5 0.0188479 1.49697e-06 1.07518e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| country of ||| 0.000590667 0.0188479 1.49697e-06 1.06453e-05 2.718 ||| 0-1 ||| 1693 668016 +a ||| country on ||| 0.00813008 0.0782999 1.49697e-06 1.3653e-05 2.718 ||| 0-1 ||| 123 668016 +a ||| country such as ||| 0.00617284 0.0243476 1.49697e-06 6.5319e-09 2.718 ||| 0-2 ||| 162 668016 +a ||| country to ||| 0.00868726 0.229811 1.34727e-05 0.000126074 2.718 ||| 0-1 ||| 1036 668016 +a ||| country unless ||| 0.5 0.219585 1.49697e-06 4.58908e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| country with access ||| 0.5 0.0571592 1.49697e-06 5.16737e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| country with ||| 0.00166113 0.0571592 1.49697e-06 6.00857e-06 2.718 ||| 0-1 ||| 602 668016 +a ||| coup to ||| 0.5 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| couple of flowers to ||| 1 0.229811 1.49697e-06 1.15025e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| couple of years and at ||| 1 0.102881 1.49697e-06 9.17537e-15 2.718 ||| 0-3 0-4 ||| 1 668016 +a ||| coupled to ||| 0.0555556 0.229811 1.49697e-06 3.15271e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| coupled with the ||| 0.0116279 0.0571592 1.49697e-06 9.22448e-09 2.718 ||| 0-1 ||| 86 668016 +a ||| coupled with ||| 0.011811 0.0571592 4.49091e-06 1.50256e-07 2.718 ||| 0-1 ||| 254 668016 +a ||| couples of ||| 0.25 0.0188479 1.49697e-06 4.14099e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| courage to make reforms you can forget ||| 1 0.229811 1.49697e-06 1.45722e-23 2.718 ||| 0-1 ||| 1 668016 +a ||| courage to make reforms you can ||| 1 0.229811 1.49697e-06 7.79264e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| courage to make reforms you ||| 1 0.229811 1.49697e-06 2.61999e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| courage to make reforms ||| 1 0.229811 1.49697e-06 8.11469e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| courage to make ||| 0.0384615 0.229811 1.49697e-06 5.23529e-09 2.718 ||| 0-1 ||| 26 668016 +a ||| courage to persevere ||| 0.5 0.229811 1.49697e-06 2.10882e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| courage to ||| 0.00338219 0.229811 4.49091e-06 3.01259e-06 2.718 ||| 0-1 ||| 887 668016 +a ||| courageous idea : that by the ||| 1 0.0007376 1.49697e-06 7.93039e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| courageous idea : that by ||| 1 0.0007376 1.49697e-06 1.29177e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| courageous idea : that ||| 1 0.0007376 1.49697e-06 2.46046e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| courageous idea : ||| 1 0.0007376 1.49697e-06 1.46268e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| course , be allowed to ||| 1 0.229811 1.49697e-06 1.54649e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| course , be sent to ||| 1 0.229811 1.49697e-06 5.74085e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| course , both ||| 0.25 0.0205477 1.49697e-06 9.86139e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| course , by ||| 0.0833333 0.0337966 1.49697e-06 1.23794e-06 2.718 ||| 0-2 ||| 12 668016 +a ||| course , established OLAF to deal with ||| 1 0.229811 1.49697e-06 1.62815e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| course , established OLAF to deal ||| 1 0.229811 1.49697e-06 2.54618e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| course , established OLAF to ||| 1 0.229811 1.49697e-06 5.99666e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| course , for ||| 0.0344828 0.0683377 1.49697e-06 5.54436e-06 2.718 ||| 0-2 ||| 29 668016 +a ||| course , goes out to ||| 1 0.229811 1.49697e-06 2.7962e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| course , in ||| 0.0333333 0.0587624 2.99394e-06 9.04023e-06 2.718 ||| 0-2 ||| 60 668016 +a ||| course , inform ||| 0.333333 0.130026 1.49697e-06 6.2623e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| course , put ||| 0.25 0.0015876 1.49697e-06 6.18406e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| course , to achieve ||| 1 0.229811 1.49697e-06 1.20437e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| course , to the fact ||| 1 0.229811 1.49697e-06 9.47868e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| course , to the ||| 0.0526316 0.229811 1.49697e-06 3.23582e-06 2.718 ||| 0-2 ||| 19 668016 +a ||| course , to ||| 0.109244 0.229811 1.94606e-05 5.27077e-05 2.718 ||| 0-2 ||| 119 668016 +a ||| course , we shall find ||| 0.5 0.131911 1.49697e-06 1.3733e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| course , we shall ||| 1 0.131911 1.49697e-06 4.12525e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| course at ||| 0.0769231 0.204175 1.49697e-06 4.29425e-05 2.718 ||| 0-1 ||| 13 668016 +a ||| course continue to ||| 0.0714286 0.229811 1.49697e-06 1.02273e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| course decided to invite Yasser Arafat and ||| 1 0.330028 1.49697e-06 3.43184e-26 2.718 ||| 0-3 ||| 1 668016 +a ||| course decided to invite Yasser Arafat ||| 1 0.330028 1.49697e-06 2.7398e-24 2.718 ||| 0-3 ||| 1 668016 +a ||| course decided to invite Yasser ||| 1 0.330028 1.49697e-06 1.957e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| course decided to invite ||| 1 0.330028 1.49697e-06 4.8925e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| course in ||| 0.0224719 0.0587624 2.99394e-06 7.58061e-05 2.718 ||| 0-1 ||| 89 668016 +a ||| course mention to ||| 1 0.229811 1.49697e-06 4.296e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| course of which ||| 0.0434783 0.0188479 1.49697e-06 3.17012e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| course of ||| 0.00627287 0.0188479 1.79636e-05 3.73192e-05 2.718 ||| 0-1 ||| 1913 668016 +a ||| course sent to ||| 1 0.229811 1.49697e-06 2.65627e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| course to ||| 0.0512821 0.229811 5.98788e-06 0.000441976 2.718 ||| 0-1 ||| 78 668016 +a ||| courses of ||| 0.0116279 0.0188479 1.49697e-06 3.40153e-07 2.718 ||| 0-1 ||| 86 668016 +a ||| courses relate to ||| 1 0.229811 1.49697e-06 9.9906e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| court for ||| 0.0344828 0.0683377 1.49697e-06 1.10177e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| court of the ||| 0.0344828 0.0188479 1.49697e-06 5.42947e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| court of ||| 0.0135135 0.0188479 2.99394e-06 8.84397e-07 2.718 ||| 0-1 ||| 148 668016 +a ||| courts against ||| 0.333333 0.05146 1.49697e-06 3.0934e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| cover both ||| 0.0454545 0.0205477 1.49697e-06 5.11867e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| cover for ||| 0.0133333 0.0683377 1.49697e-06 2.87787e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| cover the area of ||| 0.333333 0.0188479 1.49697e-06 5.88979e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| cover the landfill or to reinforce the ||| 1 0.229811 1.49697e-06 1.36751e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| cover the landfill or to reinforce ||| 1 0.229811 1.49697e-06 2.22752e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| cover the landfill or to ||| 1 0.229811 1.49697e-06 5.5688e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| cover ||| 0.00343535 0.0050378 1.64667e-05 1.64e-05 2.718 ||| 0-0 ||| 3202 668016 +a ||| coverage to ||| 0.2 0.229811 1.49697e-06 2.9075e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| covered because of the ||| 1 0.0188479 1.49697e-06 4.27235e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| covered because of ||| 1 0.0188479 1.49697e-06 6.95916e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| covered by ||| 0.00280741 0.0337966 7.48485e-06 5.89089e-07 2.718 ||| 0-1 ||| 1781 668016 +a ||| covered in ||| 0.00374532 0.0587624 1.49697e-06 4.30191e-06 2.718 ||| 0-1 ||| 267 668016 +a ||| covered ||| 0.000352609 0.0002815 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2836 668016 +a ||| covering ||| 0.00232919 0.0289544 4.49091e-06 4.93e-05 2.718 ||| 0-0 ||| 1288 668016 +a ||| covers ||| 0.00319693 0.0266836 7.48485e-06 3.83e-05 2.718 ||| 0-0 ||| 1564 668016 +a ||| cows at ||| 0.333333 0.204175 1.49697e-06 1.08913e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| create real ||| 0.05 0.0001706 1.49697e-06 3.2382e-10 2.718 ||| 0-0 ||| 20 668016 +a ||| create ||| 0.000171218 0.0001706 2.99394e-06 1.8e-06 2.718 ||| 0-0 ||| 11681 668016 +a ||| created and ||| 0.00909091 0.0015873 1.49697e-06 2.03369e-07 2.718 ||| 0-1 ||| 110 668016 +a ||| created for ||| 0.0204082 0.0683377 2.99394e-06 3.88383e-06 2.718 ||| 0-1 ||| 98 668016 +a ||| created in the sector ||| 0.5 0.0587624 1.49697e-06 7.21956e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| created in the ||| 0.0125 0.0587624 1.49697e-06 3.88776e-07 2.718 ||| 0-1 ||| 80 668016 +a ||| created in ||| 0.00340136 0.0587624 1.49697e-06 6.3327e-06 2.718 ||| 0-1 ||| 294 668016 +a ||| created on the whole ||| 0.333333 0.0782999 1.49697e-06 1.38862e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| created on the ||| 0.0434783 0.0782999 1.49697e-06 2.4547e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| created on ||| 0.0465116 0.0782999 2.99394e-06 3.99841e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| created to ||| 0.0102041 0.229811 1.49697e-06 3.69218e-05 2.718 ||| 0-1 ||| 98 668016 +a ||| created vis-à-vis ||| 1 0.243488 1.49697e-06 2.06795e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| creates a burden on ||| 0.333333 0.0782999 1.49697e-06 1.3971e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| creates more small and medium-sized enterprises with ||| 1 0.0571592 1.49697e-06 2.17687e-25 2.718 ||| 0-6 ||| 1 668016 +a ||| creates uncertainty in the region and ||| 1 0.0587624 1.49697e-06 5.01085e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| creates uncertainty in the region ||| 1 0.0587624 1.49697e-06 4.00039e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| creates uncertainty in the ||| 1 0.0587624 1.49697e-06 4.0862e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| creates uncertainty in ||| 1 0.0587624 1.49697e-06 6.65594e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| creating a lot of hot air ||| 0.25 0.0188479 1.49697e-06 4.29875e-21 2.718 ||| 0-3 ||| 4 668016 +a ||| creating a lot of hot ||| 0.25 0.0188479 1.49697e-06 7.80173e-17 2.718 ||| 0-3 ||| 4 668016 +a ||| creating a lot of ||| 0.2 0.0188479 1.49697e-06 9.87561e-12 2.718 ||| 0-3 ||| 5 668016 +a ||| creating support for ||| 0.25 0.0683377 1.49697e-06 7.34493e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| creation of a European Foundation for ||| 0.333333 0.0683377 1.49697e-06 4.95977e-17 2.718 ||| 0-5 ||| 3 668016 +a ||| creation of ||| 0.000379939 0.0188479 2.99394e-06 1.37244e-06 2.718 ||| 0-1 ||| 5264 668016 +a ||| creativity and ||| 0.0042735 0.0015873 1.49697e-06 2.7013e-09 2.718 ||| 0-1 ||| 234 668016 +a ||| creativity in ||| 0.037037 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 27 668016 +a ||| credibility . first of ||| 1 0.0188479 1.49697e-06 3.47307e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| credibility in ||| 0.00561798 0.0587624 1.49697e-06 4.32594e-07 2.718 ||| 0-1 ||| 178 668016 +a ||| credibility of ||| 0.00118906 0.0188479 1.49697e-06 2.12965e-07 2.718 ||| 0-1 ||| 841 668016 +a ||| credit for it ||| 0.25 0.0683377 1.49697e-06 2.35902e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| credit for this ||| 0.0277778 0.0683377 1.49697e-06 8.57134e-09 2.718 ||| 0-1 ||| 36 668016 +a ||| credit for ||| 0.0135747 0.0683377 4.49091e-06 1.32655e-06 2.718 ||| 0-1 ||| 221 668016 +a ||| credit on ||| 0.125 0.0782999 2.99394e-06 1.36568e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| credit to ||| 0.00540541 0.229811 1.49697e-06 1.26109e-05 2.718 ||| 0-1 ||| 185 668016 +a ||| credited to ||| 0.222222 0.229811 2.99394e-06 3.85332e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| cries for ||| 0.0909091 0.0683377 1.49697e-06 6.63273e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| crime , crime in the cities or ||| 0.5 0.0587624 1.49697e-06 1.70252e-20 2.718 ||| 0-3 ||| 2 668016 +a ||| crime , crime in the cities ||| 0.5 0.0587624 1.49697e-06 1.48913e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| crime , crime in the ||| 0.5 0.0587624 1.49697e-06 7.79647e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| crime , crime in ||| 0.5 0.0587624 1.49697e-06 1.26995e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| crime against human ||| 1 0.05146 1.49697e-06 1.35048e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| crime against ||| 0.011976 0.05146 2.99394e-06 1.09439e-07 2.718 ||| 0-1 ||| 167 668016 +a ||| crime in the cities or ||| 0.5 0.0587624 1.49697e-06 3.39105e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| crime in the cities ||| 0.5 0.0587624 1.49697e-06 2.96602e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| crime in the ||| 0.027027 0.0587624 1.49697e-06 1.55289e-07 2.718 ||| 0-1 ||| 37 668016 +a ||| crime in ||| 0.00581395 0.0587624 1.49697e-06 2.52947e-06 2.718 ||| 0-1 ||| 172 668016 +a ||| criminal responsibility of ||| 0.125 0.0188479 1.49697e-06 1.4246e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| criminalise ||| 0.00840336 0.168605 1.49697e-06 2.65e-05 2.718 ||| 0-0 ||| 119 668016 +a ||| criminalising homeless people ||| 1 0.155689 1.49697e-06 4.58936e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| criminalising homeless ||| 1 0.155689 1.49697e-06 5.214e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| criminalising ||| 0.00917431 0.155689 1.49697e-06 2.37e-05 2.718 ||| 0-0 ||| 109 668016 +a ||| criminals acting against ||| 0.25 0.05146 1.49697e-06 7.66852e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| criminals of ||| 0.142857 0.0273017 1.49697e-06 1.67414e-06 2.718 ||| 0-0 0-1 ||| 7 668016 +a ||| criminals ||| 0.00418702 0.0357555 8.98182e-06 5.66e-05 2.718 ||| 0-0 ||| 1433 668016 +a ||| crisis for ||| 0.027027 0.0683377 2.99394e-06 2.66415e-06 2.718 ||| 0-1 ||| 74 668016 +a ||| crisis of ||| 0.00211416 0.0188479 1.49697e-06 2.13853e-06 2.718 ||| 0-1 ||| 473 668016 +a ||| critical of ||| 0.00251889 0.0188479 1.49697e-06 7.45378e-07 2.718 ||| 0-1 ||| 397 668016 +a ||| critical towards ||| 0.111111 0.155507 1.49697e-06 8.49895e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| critically in ||| 0.25 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| critically to areas in ||| 1 0.0587624 1.49697e-06 3.05514e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| criticise ||| 0.00403769 0.126607 4.49091e-06 0.0001168 2.718 ||| 0-0 ||| 743 668016 +a ||| criticised unfairly in ||| 1 0.0587624 1.49697e-06 1.65347e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| criticism of ||| 0.00376648 0.0188479 2.99394e-06 5.97486e-07 2.718 ||| 0-1 ||| 531 668016 +a ||| criticism to be ||| 0.142857 0.229811 1.49697e-06 1.28239e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| criticism to ||| 0.0384615 0.229811 1.49697e-06 7.07609e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| criticisms at ||| 0.25 0.204175 1.49697e-06 1.59966e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| crop which contributes to ||| 1 0.229811 1.49697e-06 5.50202e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| crops , to ||| 0.5 0.229811 1.49697e-06 7.05999e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| crops from ||| 0.125 0.0435582 1.49697e-06 1.2166e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| crops to ||| 0.0625 0.229811 1.49697e-06 5.9201e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| crops up occasionally ||| 0.166667 0.0195077 1.49697e-06 6.01647e-14 2.718 ||| 0-1 ||| 6 668016 +a ||| crops up ||| 0.0238095 0.0195077 1.49697e-06 2.07464e-08 2.718 ||| 0-1 ||| 42 668016 +a ||| cross face ||| 1 0.124218 1.49697e-06 1.3195e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| cross over ||| 0.0666667 0.0682544 1.49697e-06 3.01977e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| crowd with ||| 0.142857 0.0571592 1.49697e-06 3.67292e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| crowing with ||| 1 0.0571592 1.49697e-06 6.67804e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| crucial to any solution . ||| 1 0.229811 1.49697e-06 4.15704e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| crucial to any solution ||| 1 0.229811 1.49697e-06 1.37241e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| crucial to any ||| 0.5 0.229811 1.49697e-06 2.01826e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| crucial to preserving ||| 0.2 0.229811 1.49697e-06 7.74096e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| crucial to ||| 0.00190658 0.229811 2.99394e-06 1.33465e-05 2.718 ||| 0-1 ||| 1049 668016 +a ||| crucially ||| 0.0034965 0.0016447 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 286 668016 +a ||| cruel blow to ||| 1 0.229811 1.49697e-06 1.72769e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| cruelly slaughtered fellow-Muslims ||| 0.166667 0.0151515 1.49697e-06 1.628e-18 2.718 ||| 0-1 ||| 6 668016 +a ||| cruelly slaughtered ||| 0.166667 0.0151515 1.49697e-06 4.07e-12 2.718 ||| 0-1 ||| 6 668016 +a ||| cruelty in ||| 0.0909091 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| cry to ||| 0.333333 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| culinary traditions is crucial to preserving ||| 1 0.229811 1.49697e-06 1.03595e-23 2.718 ||| 0-4 ||| 1 668016 +a ||| culinary traditions is crucial to ||| 1 0.229811 1.49697e-06 1.78611e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| culminates in companies ||| 0.5 0.0587624 1.49697e-06 1.68712e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| culminates in ||| 0.142857 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| culture of ||| 0.00144509 0.0188479 1.49697e-06 5.85654e-07 2.718 ||| 0-1 ||| 692 668016 +a ||| currency at ||| 0.333333 0.204175 1.49697e-06 1.27292e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| currency in ||| 0.030303 0.0587624 1.49697e-06 2.24709e-06 2.718 ||| 0-1 ||| 33 668016 +a ||| currency to another ||| 0.333333 0.229811 1.49697e-06 3.15872e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| currency to ||| 0.0454545 0.229811 1.49697e-06 1.31013e-05 2.718 ||| 0-1 ||| 22 668016 +a ||| current 50 years to ||| 1 0.229811 1.49697e-06 1.37558e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| current funding will be insufficient to carry ||| 1 0.229811 1.49697e-06 5.13446e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| current funding will be insufficient to ||| 1 0.229811 1.49697e-06 2.79807e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| current revision of the Treaty . ||| 1 0.0188479 1.49697e-06 8.92308e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| current revision of the Treaty ||| 1 0.0188479 1.49697e-06 2.94588e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| current revision of the ||| 0.125 0.0188479 1.49697e-06 3.44145e-12 2.718 ||| 0-2 ||| 8 668016 +a ||| current revision of ||| 0.2 0.0188479 1.49697e-06 5.60572e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| current talks on ||| 0.5 0.0782999 1.49697e-06 1.64422e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| currently engaged in ||| 0.0322581 0.0587624 1.49697e-06 2.57177e-10 2.718 ||| 0-2 ||| 31 668016 +a ||| currently in force ||| 0.00311526 0.0587624 1.49697e-06 1.0676e-09 2.718 ||| 0-1 ||| 321 668016 +a ||| currently in ||| 0.00189394 0.0587624 1.49697e-06 6.27261e-06 2.718 ||| 0-1 ||| 528 668016 +a ||| currently is on ||| 1 0.0782999 1.49697e-06 1.24126e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| currently under submission to ||| 0.333333 0.229811 1.49697e-06 1.12848e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| currently under way ||| 0.00909091 0.0384416 1.49697e-06 3.19203e-10 2.718 ||| 0-1 ||| 110 668016 +a ||| currently under ||| 0.0041841 0.0384416 1.49697e-06 1.48081e-07 2.718 ||| 0-1 ||| 239 668016 +a ||| curve in relation to the ||| 1 0.0587624 1.49697e-06 1.11642e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| curve in relation to ||| 1 0.0587624 1.49697e-06 1.81851e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| curve in relation ||| 1 0.0587624 1.49697e-06 2.04653e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| curve in ||| 1 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| customer to ||| 0.333333 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| cut in advance , rather ||| 1 0.0587624 1.49697e-06 5.85498e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| cut in advance , ||| 1 0.0587624 1.49697e-06 1.91214e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| cut in advance ||| 1 0.0587624 1.49697e-06 1.60341e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| cut in ||| 0.00862069 0.0587624 1.49697e-06 4.54224e-06 2.718 ||| 0-1 ||| 116 668016 +a ||| cut through ||| 0.0714286 0.230708 1.49697e-06 6.00952e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| cut to ||| 0.0769231 0.229811 1.49697e-06 2.64828e-05 2.718 ||| 0-1 ||| 13 668016 +a ||| cut-back at all ||| 0.5 0.204175 1.49697e-06 1.12582e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| cut-back at ||| 0.5 0.204175 1.49697e-06 2.38248e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| daily life ||| 0.00520833 0.0058036 1.49697e-06 1.80285e-09 2.718 ||| 0-0 ||| 192 668016 +a ||| daily subsistence allowance rates for officials ||| 0.111111 0.0683377 1.49697e-06 4.49738e-27 2.718 ||| 0-4 ||| 9 668016 +a ||| daily subsistence allowance rates for ||| 0.111111 0.0683377 1.49697e-06 3.21241e-22 2.718 ||| 0-4 ||| 9 668016 +a ||| daily to ||| 0.0714286 0.229811 1.49697e-06 7.95185e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| daily ||| 0.000582411 0.0058036 1.49697e-06 1.19e-05 2.718 ||| 0-0 ||| 1717 668016 +a ||| damage done to ||| 0.0344828 0.229811 1.49697e-06 6.72495e-09 2.718 ||| 0-2 ||| 29 668016 +a ||| damage for ||| 0.0833333 0.0683377 1.49697e-06 1.55132e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| damage in ||| 0.0163934 0.0587624 1.49697e-06 2.52947e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| damage to ||| 0.00910747 0.229811 7.48485e-06 1.47477e-05 2.718 ||| 0-1 ||| 549 668016 +a ||| damaged ||| 0.00374532 0.0046225 2.99394e-06 2.7e-06 2.718 ||| 0-0 ||| 534 668016 +a ||| damages ||| 0.00677201 0.075662 4.49091e-06 5.48e-05 2.718 ||| 0-0 ||| 443 668016 +a ||| danger in the ||| 0.0588235 0.0587624 1.49697e-06 1.80371e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| danger in ||| 0.0181818 0.0587624 1.49697e-06 2.93803e-06 2.718 ||| 0-1 ||| 55 668016 +a ||| danger of ||| 0.000696864 0.0188479 1.49697e-06 1.44639e-06 2.718 ||| 0-1 ||| 1435 668016 +a ||| danger to ||| 0.00373134 0.229811 1.49697e-06 1.71297e-05 2.718 ||| 0-1 ||| 268 668016 +a ||| dangerous to ||| 0.00512821 0.229811 1.49697e-06 7.81173e-06 2.718 ||| 0-1 ||| 195 668016 +a ||| dangers and to be reassured about ||| 1 0.229811 1.49697e-06 3.41896e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| dangers and to be reassured ||| 1 0.229811 1.49697e-06 2.41742e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| dangers and to be ||| 1 0.229811 1.49697e-06 6.04355e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| dangers and to ||| 0.333333 0.229811 1.49697e-06 3.33476e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| dare say ||| 0.0238095 0.188525 1.49697e-06 1.80551e-07 2.718 ||| 0-0 ||| 42 668016 +a ||| dare to ||| 0.00826446 0.188525 2.99394e-06 1.67853e-05 2.718 ||| 0-0 ||| 242 668016 +a ||| dare ||| 0.0133038 0.188525 8.98182e-06 0.0001889 2.718 ||| 0-0 ||| 451 668016 +a ||| dares to ||| 0.0227273 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 44 668016 +a ||| data at ||| 0.0357143 0.204175 1.49697e-06 1.5418e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| data exchange for European ||| 1 0.0683377 1.49697e-06 1.54615e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| data exchange for ||| 1 0.0683377 1.49697e-06 4.62379e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| data to ||| 0.00617284 0.229811 1.49697e-06 1.58687e-05 2.718 ||| 0-1 ||| 162 668016 +a ||| date back to ||| 0.027027 0.229811 1.49697e-06 2.40796e-08 2.718 ||| 0-2 ||| 37 668016 +a ||| date for deliberation ||| 1 0.0683377 1.49697e-06 4.14251e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| date for ||| 0.00645161 0.0683377 2.99394e-06 3.76592e-06 2.718 ||| 0-1 ||| 310 668016 +a ||| date of ||| 0.00205339 0.0188479 1.49697e-06 3.02292e-06 2.718 ||| 0-1 ||| 487 668016 +a ||| date on which he will be able ||| 1 0.0782999 1.49697e-06 3.76222e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| date on which he will be ||| 1 0.0782999 1.49697e-06 4.50619e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| date on which he will ||| 1 0.0782999 1.49697e-06 2.48646e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| date on which he ||| 1 0.0782999 1.49697e-06 2.87413e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| date on which ||| 0.0277778 0.0782999 2.99394e-06 3.29337e-08 2.718 ||| 0-1 ||| 72 668016 +a ||| date on ||| 0.0136054 0.0782999 2.99394e-06 3.87702e-06 2.718 ||| 0-1 ||| 147 668016 +a ||| dating back to ||| 0.0133333 0.229811 1.49697e-06 3.13365e-09 2.718 ||| 0-2 ||| 75 668016 +a ||| dating back ||| 0.00990099 0.0536618 1.49697e-06 9.78481e-09 2.718 ||| 0-1 ||| 101 668016 +a ||| dating from ||| 0.0153846 0.0435582 1.49697e-06 9.5744e-08 2.718 ||| 0-1 ||| 65 668016 +a ||| dating right back to ||| 0.333333 0.229811 1.49697e-06 2.02089e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| dawned on ||| 0.1 0.0782999 1.49697e-06 2.65549e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| day before yesterday ||| 0.0344828 0.0203282 1.49697e-06 3.23354e-12 2.718 ||| 0-1 ||| 29 668016 +a ||| day before ||| 0.00641026 0.0203282 1.49697e-06 1.35863e-07 2.718 ||| 0-1 ||| 156 668016 +a ||| day go down ||| 0.5 0.0226513 1.49697e-06 5.47014e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| day in ||| 0.00383142 0.0587624 1.49697e-06 1.53931e-05 2.718 ||| 0-1 ||| 261 668016 +a ||| day on hold ||| 1 0.0782999 1.49697e-06 1.69307e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| day on which ||| 0.027027 0.0782999 2.99394e-06 8.25599e-08 2.718 ||| 0-1 ||| 74 668016 +a ||| day on ||| 0.0263158 0.0782999 4.49091e-06 9.7191e-06 2.718 ||| 0-1 ||| 114 668016 +a ||| day this would lead to ||| 1 0.229811 1.49697e-06 6.55119e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| day to ||| 0.00537634 0.229811 1.49697e-06 8.97473e-05 2.718 ||| 0-1 ||| 186 668016 +a ||| day-to-day basis so as to gain ||| 1 0.229811 1.49697e-06 6.72067e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| day-to-day basis so as to ||| 1 0.229811 1.49697e-06 1.20442e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| day-to-day ||| 0.00199601 0.0049423 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 501 668016 +a ||| days after ||| 0.00392157 0.0341027 1.49697e-06 5.34316e-08 2.718 ||| 0-1 ||| 255 668016 +a ||| days and ||| 0.00440529 0.0015873 1.49697e-06 1.22909e-07 2.718 ||| 0-1 ||| 227 668016 +a ||| days to ||| 0.0240964 0.229811 2.99394e-06 2.23142e-05 2.718 ||| 0-1 ||| 83 668016 +a ||| de ) If I could only make ||| 1 0.0013612 1.49697e-06 1.09838e-25 2.718 ||| 0-3 ||| 1 668016 +a ||| de ) If I could only ||| 1 0.0013612 1.49697e-06 6.32052e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| de ) If I could ||| 1 0.0013612 1.49697e-06 5.6783e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| de ) If I ||| 0.5 0.0013612 1.49697e-06 7.98524e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| dead in the ||| 0.125 0.0587624 1.49697e-06 9.14766e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| dead in ||| 0.0666667 0.0587624 4.49091e-06 1.49005e-06 2.718 ||| 0-1 ||| 45 668016 +a ||| deadlock in ||| 0.0172414 0.0587624 1.49697e-06 2.16297e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| deal for ||| 0.0163934 0.0683377 1.49697e-06 1.56459e-05 2.718 ||| 0-1 ||| 61 668016 +a ||| deal in ||| 0.00704225 0.0587624 1.49697e-06 2.5511e-05 2.718 ||| 0-1 ||| 142 668016 +a ||| deal of aid to ||| 1 0.229811 1.49697e-06 1.05603e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| deal of pressure on ||| 1 0.0782999 1.49697e-06 5.26275e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| deal of support ||| 0.111111 0.0188479 1.49697e-06 4.29393e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| deal of time to ||| 0.5 0.229811 1.49697e-06 1.32748e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| deal of work to ||| 0.166667 0.229811 1.49697e-06 5.11844e-09 2.718 ||| 0-3 ||| 6 668016 +a ||| deal of ||| 0.00723764 0.0188479 8.98182e-06 1.2559e-05 2.718 ||| 0-1 ||| 829 668016 +a ||| deal to ||| 0.0152672 0.229811 2.99394e-06 0.000148738 2.718 ||| 0-1 ||| 131 668016 +a ||| deal with demonstrate how much ||| 0.5 0.0571592 1.49697e-06 6.32401e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| deal with demonstrate how ||| 0.5 0.0571592 1.49697e-06 6.3007e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| deal with demonstrate ||| 0.5 0.0571592 1.49697e-06 1.75801e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| deal with each other in ||| 0.5 0.0587624 1.49697e-06 5.93218e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| deal with the ||| 0.000549753 0.0571592 1.49697e-06 4.3519e-07 2.718 ||| 0-1 ||| 1819 668016 +a ||| deal with this ||| 0.00148368 0.0571592 1.49697e-06 4.58032e-08 2.718 ||| 0-1 ||| 674 668016 +a ||| deal with ||| 0.00449583 0.0571592 4.19152e-05 7.08874e-06 2.718 ||| 0-1 ||| 6228 668016 +a ||| dealers in ||| 0.0714286 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| dealing with regarding ||| 1 0.186429 1.49697e-06 2.22296e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| dealing with ||| 0.00338219 0.0571592 2.24546e-05 1.7246e-06 2.718 ||| 0-1 ||| 4435 668016 +a ||| dealings with ||| 0.00387597 0.0571592 1.49697e-06 1.73629e-07 2.718 ||| 0-1 ||| 258 668016 +a ||| deals with ||| 0.000755287 0.0571592 1.49697e-06 4.27395e-07 2.718 ||| 0-1 ||| 1324 668016 +a ||| dealt a cruel blow to ||| 0.333333 0.229811 1.49697e-06 8.01804e-17 2.718 ||| 0-4 ||| 3 668016 +a ||| dealt out to ||| 1 0.229811 1.49697e-06 1.40486e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| dealt with at ||| 0.00675676 0.204175 1.49697e-06 2.27868e-08 2.718 ||| 0-2 ||| 148 668016 +a ||| dealt with by ||| 0.00333333 0.0571592 1.49697e-06 9.17705e-09 2.718 ||| 0-1 ||| 300 668016 +a ||| dealt with in ||| 0.00200803 0.0579608 1.49697e-06 1.05023e-07 2.718 ||| 0-1 0-2 ||| 498 668016 +a ||| dealt with under the cooperation procedure this ||| 1 0.0571592 1.49697e-06 2.30048e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| dealt with under the cooperation procedure ||| 1 0.0571592 1.49697e-06 3.56034e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| dealt with under the cooperation ||| 1 0.0571592 1.49697e-06 3.54616e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| dealt with under the ||| 0.0555556 0.0571592 1.49697e-06 3.85033e-11 2.718 ||| 0-1 ||| 18 668016 +a ||| dealt with under ||| 0.0178571 0.0571592 1.49697e-06 6.27174e-10 2.718 ||| 0-1 ||| 56 668016 +a ||| dealt with vis-à-vis ||| 1 0.243488 1.49697e-06 1.31357e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| dealt with what is ||| 0.2 0.0571592 1.49697e-06 7.68668e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| dealt with what ||| 0.2 0.0571592 1.49697e-06 2.45259e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| dealt with ||| 0.00441726 0.0571592 1.94606e-05 1.74798e-06 2.718 ||| 0-1 ||| 2943 668016 +a ||| dear to ||| 0.0238095 0.229811 4.49091e-06 6.69076e-06 2.718 ||| 0-1 ||| 126 668016 +a ||| death in ||| 0.00735294 0.0587624 1.49697e-06 3.26248e-06 2.718 ||| 0-1 ||| 136 668016 +a ||| death of ||| 0.00214592 0.0188479 1.49697e-06 1.60611e-06 2.718 ||| 0-1 ||| 466 668016 +a ||| debate in ||| 0.000852515 0.0587624 1.49697e-06 1.18903e-05 2.718 ||| 0-1 ||| 1173 668016 +a ||| debate is needed with ||| 1 0.0571592 1.49697e-06 1.38653e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| debate on ||| 0.000845023 0.0782999 7.48485e-06 7.50746e-06 2.718 ||| 0-1 ||| 5917 668016 +a ||| debate so close to ||| 0.333333 0.229811 1.49697e-06 2.33344e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| debate was in ||| 1 0.0587624 1.49697e-06 3.72524e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| debated at ||| 0.0188679 0.204175 1.49697e-06 2.82494e-07 2.718 ||| 0-1 ||| 53 668016 +a ||| debating ||| 0.000489956 0.0003752 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2041 668016 +a ||| debt of ||| 0.0104167 0.0188479 1.49697e-06 5.85654e-07 2.718 ||| 0-1 ||| 96 668016 +a ||| debt to ||| 0.0363636 0.229811 2.99394e-06 6.93597e-06 2.718 ||| 0-1 ||| 55 668016 +a ||| debts to ||| 0.0588235 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| deceive ||| 0.0140845 0.251337 1.49697e-06 4.29e-05 2.718 ||| 0-0 ||| 71 668016 +a ||| deceived ||| 0.0113636 0.162338 1.49697e-06 2.28e-05 2.718 ||| 0-0 ||| 88 668016 +a ||| deceiving ||| 0.0243902 0.364407 1.49697e-06 3.92e-05 2.718 ||| 0-0 ||| 41 668016 +a ||| decide on ||| 0.00260417 0.0782999 2.99394e-06 2.43167e-06 2.718 ||| 0-1 ||| 768 668016 +a ||| decide to apply ||| 0.2 0.229811 2.99394e-06 3.23118e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| decide to ||| 0.016 0.229811 8.98182e-06 2.24543e-05 2.718 ||| 0-1 ||| 375 668016 +a ||| decide upon our times , places and ||| 1 0.19056 1.49697e-06 1.39814e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| decide upon our times , places ||| 1 0.19056 1.49697e-06 1.1162e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| decide upon our times , ||| 1 0.19056 1.49697e-06 2.11002e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| decide upon our times ||| 1 0.19056 1.49697e-06 1.76934e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| decide upon our ||| 0.5 0.19056 1.49697e-06 1.74319e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| decide upon ||| 0.0222222 0.19056 1.49697e-06 1.26373e-07 2.718 ||| 0-1 ||| 45 668016 +a ||| decided in committee ||| 0.5 0.0587624 1.49697e-06 3.18086e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| decided in conjunction ||| 0.25 0.0587624 1.49697e-06 6.20556e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| decided in ||| 0.00920245 0.0587624 4.49091e-06 4.10964e-06 2.718 ||| 0-1 ||| 326 668016 +a ||| decided on by ||| 0.0196078 0.0560483 1.49697e-06 2.13487e-08 2.718 ||| 0-1 0-2 ||| 51 668016 +a ||| decided to change ||| 0.0588235 0.229811 1.49697e-06 2.9232e-09 2.718 ||| 0-1 ||| 17 668016 +a ||| decided to invite Yasser Arafat and Shimon ||| 1 0.330028 1.49697e-06 1.08801e-29 2.718 ||| 0-2 ||| 1 668016 +a ||| decided to invite Yasser Arafat and ||| 1 0.330028 1.49697e-06 2.72001e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| decided to invite Yasser Arafat ||| 1 0.330028 1.49697e-06 2.17151e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| decided to invite Yasser ||| 1 0.330028 1.49697e-06 1.55108e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| decided to invite ||| 0.0833333 0.330028 1.49697e-06 3.8777e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| decided to raise ||| 0.1 0.229811 1.49697e-06 1.57901e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| decided to resort to ||| 0.2 0.229811 1.49697e-06 3.3001e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| decided to resort ||| 0.2 0.229811 1.49697e-06 3.7139e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| decided to ||| 0.0018622 0.229811 5.98788e-06 2.39606e-05 2.718 ||| 0-1 ||| 2148 668016 +a ||| decided upon ||| 0.00454545 0.19056 1.49697e-06 1.34851e-07 2.718 ||| 0-1 ||| 220 668016 +a ||| decides to ||| 0.00943396 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 106 668016 +a ||| deciding to ||| 0.00943396 0.229811 1.49697e-06 5.42967e-06 2.718 ||| 0-1 ||| 106 668016 +a ||| decision , to ||| 0.142857 0.229811 1.49697e-06 6.57123e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| decision by ||| 0.00342466 0.0337966 1.49697e-06 1.29419e-06 2.718 ||| 0-1 ||| 292 668016 +a ||| decision confirmed at ||| 1 0.204175 1.49697e-06 1.03863e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| decision is to be implemented ||| 1 0.229811 1.49697e-06 2.74794e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| decision is to be ||| 0.333333 0.229811 1.49697e-06 3.12977e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| decision is to ||| 0.0769231 0.229811 1.49697e-06 1.72697e-06 2.718 ||| 0-2 ||| 13 668016 +a ||| decision not to ||| 0.0465116 0.229811 2.99394e-06 1.88125e-07 2.718 ||| 0-2 ||| 43 668016 +a ||| decision on ||| 0.00363636 0.0782999 7.48485e-06 5.96727e-06 2.718 ||| 0-1 ||| 1375 668016 +a ||| decision to require ||| 1 0.229811 1.49697e-06 2.57879e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| decision to ||| 0.00552868 0.229811 1.19758e-05 5.51024e-05 2.718 ||| 0-1 ||| 1447 668016 +a ||| decision will be ||| 0.0232558 0.0561595 1.49697e-06 4.01489e-08 2.718 ||| 0-1 ||| 43 668016 +a ||| decision will depend on ||| 1 0.0782999 1.49697e-06 9.49882e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| decision will ||| 0.0163934 0.0561595 1.49697e-06 2.21537e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| decision-makers in ||| 0.0769231 0.0587624 1.49697e-06 1.32181e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| decision-makers time to ||| 1 0.229811 1.49697e-06 1.2652e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| decision-making process in ||| 0.0196078 0.0587624 1.49697e-06 4.16101e-10 2.718 ||| 0-2 ||| 51 668016 +a ||| decisions on behalf ||| 0.25 0.0782999 1.49697e-06 9.21894e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| decisions on the basis of publications in ||| 1 0.0587624 1.49697e-06 1.33736e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| decisions on ||| 0.00323625 0.0782999 4.49091e-06 2.89449e-06 2.718 ||| 0-1 ||| 927 668016 +a ||| declaration to ||| 0.025 0.229811 1.49697e-06 6.16531e-06 2.718 ||| 0-1 ||| 40 668016 +a ||| declarations to ||| 0.0416667 0.229811 1.49697e-06 3.39793e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| declare itself in ||| 0.166667 0.0587624 1.49697e-06 8.80805e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| decline with ||| 1 0.0571592 1.49697e-06 1.50256e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| decommission ||| 0.0111111 0.0117647 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 90 668016 +a ||| decorated , having put up ||| 0.5 0.0195077 1.49697e-06 2.47227e-17 2.718 ||| 0-4 ||| 2 668016 +a ||| decrease in ||| 0.00505051 0.0587624 1.49697e-06 3.48479e-07 2.718 ||| 0-1 ||| 198 668016 +a ||| decreasing reliance on ||| 1 0.0782999 1.49697e-06 5.46273e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| dedicated department , for ||| 1 0.0683377 1.49697e-06 4.22737e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| dedicated to ||| 0.00795756 0.229811 4.49091e-06 5.18446e-06 2.718 ||| 0-1 ||| 377 668016 +a ||| dedicated ||| 0.00522876 0.0169082 5.98788e-06 1.28e-05 2.718 ||| 0-0 ||| 765 668016 +a ||| dedication to ||| 0.0178571 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 56 668016 +a ||| deducted at ||| 1 0.204175 1.49697e-06 1.08913e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| deeper into ||| 0.0416667 0.107578 1.49697e-06 1.94378e-08 2.718 ||| 0-1 ||| 24 668016 +a ||| deeper to ||| 1 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| deeply about ||| 0.0769231 0.0526361 1.49697e-06 1.1792e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| default , to ||| 1 0.229811 1.49697e-06 9.19052e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| default on ||| 0.0833333 0.0782999 1.49697e-06 8.34583e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| defected to ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| defects and malfunctions , ||| 1 0.0015873 1.49697e-06 1.01245e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| defects and malfunctions ||| 1 0.0015873 1.49697e-06 8.4898e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| defects and ||| 0.0434783 0.0015873 1.49697e-06 2.12245e-09 2.718 ||| 0-1 ||| 23 668016 +a ||| defence of ||| 0.00084317 0.0188479 1.49697e-06 7.45378e-07 2.718 ||| 0-1 ||| 1186 668016 +a ||| defended as ||| 0.1 0.0243476 1.49697e-06 3.15806e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| defer to ||| 0.0769231 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| deferred until ||| 0.0454545 0.0268909 1.49697e-06 5.0402e-10 2.718 ||| 0-1 ||| 22 668016 +a ||| defiance of ||| 0.0188679 0.0188479 1.49697e-06 2.07049e-08 2.718 ||| 0-1 ||| 53 668016 +a ||| deficiencies is to ||| 1 0.229811 1.49697e-06 2.74471e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| defined at ||| 0.015873 0.102264 1.49697e-06 3.06319e-08 2.718 ||| 0-0 0-1 ||| 63 668016 +a ||| defined in ||| 0.00210526 0.0587624 1.49697e-06 2.01276e-06 2.718 ||| 0-1 ||| 475 668016 +a ||| definite opportunity to ||| 0.5 0.229811 1.49697e-06 6.80608e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| definition of ||| 0.00115407 0.0188479 2.99394e-06 8.07493e-07 2.718 ||| 0-1 ||| 1733 668016 +a ||| definitive line under ||| 0.5 0.0384416 1.49697e-06 2.54722e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| degree of ||| 0.00301386 0.0188479 7.48485e-06 4.09662e-06 2.718 ||| 0-1 ||| 1659 668016 +a ||| degree reassured by the ||| 1 0.0337966 1.49697e-06 2.79826e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| degree reassured by ||| 1 0.0337966 1.49697e-06 4.55803e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| degree to which these countries protect ||| 1 0.229811 1.49697e-06 5.59906e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| degree to which these countries ||| 1 0.229811 1.49697e-06 1.62292e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| degree to which these ||| 1 0.229811 1.49697e-06 4.27421e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| degree to which ||| 0.0117647 0.229811 1.49697e-06 4.12131e-07 2.718 ||| 0-1 ||| 85 668016 +a ||| degree to ||| 0.00917431 0.229811 1.49697e-06 4.85168e-05 2.718 ||| 0-1 ||| 109 668016 +a ||| delay , in ||| 0.0769231 0.0587624 1.49697e-06 2.24268e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| delayed decision by ||| 1 0.0337966 1.49697e-06 1.21653e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| delayed for ||| 0.0322581 0.0683377 1.49697e-06 3.46376e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| delays in ||| 0.00249377 0.0587624 1.49697e-06 4.08561e-07 2.718 ||| 0-1 ||| 401 668016 +a ||| delegated to ||| 0.047619 0.229811 2.99394e-06 8.75754e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| delegates to rise to this ||| 1 0.229811 1.49697e-06 1.54094e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| delegates to rise to ||| 1 0.229811 1.49697e-06 2.38484e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| delegates to rise ||| 1 0.229811 1.49697e-06 2.68387e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| delegates to ||| 0.125 0.229811 2.99394e-06 2.13684e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| delegation is in ||| 0.25 0.0587624 1.49697e-06 2.71159e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| delegation will make even lunch difficult ||| 1 0.0495435 1.49697e-06 1.3118e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| delegation will make even lunch ||| 1 0.0495435 1.49697e-06 1.0562e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| delegation will make even ||| 1 0.0495435 1.49697e-06 4.22481e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| delegations from ||| 0.0243902 0.0435582 1.49697e-06 3.5994e-08 2.718 ||| 0-1 ||| 41 668016 +a ||| delegations to engage in ||| 0.5 0.0587624 1.49697e-06 1.29733e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| deliberately failed to deliver ||| 1 0.229811 1.49697e-06 9.34686e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| deliberately failed to ||| 0.2 0.229811 1.49697e-06 2.51937e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| deliberately mislead ||| 0.2 0.33935 1.49697e-06 1.3299e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| deliberately worded in ||| 1 0.0587624 1.49697e-06 3.3526e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| deliberations on ||| 0.0120482 0.0782999 1.49697e-06 1.51742e-07 2.718 ||| 0-1 ||| 83 668016 +a ||| delight in ||| 0.0666667 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| delighted to be able to speak on ||| 0.333333 0.0782999 1.49697e-06 1.14668e-17 2.718 ||| 0-6 ||| 3 668016 +a ||| delighted to ||| 0.00214133 0.229811 1.49697e-06 6.55064e-06 2.718 ||| 0-1 ||| 467 668016 +a ||| delighted with an ||| 0.5 0.0571592 1.49697e-06 1.38763e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| delighted with ||| 0.00621118 0.0571592 1.49697e-06 3.12198e-07 2.718 ||| 0-1 ||| 161 668016 +a ||| delivered at ||| 0.0833333 0.204175 1.49697e-06 1.17422e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| delivered in ||| 0.0196078 0.0587624 1.49697e-06 2.07285e-06 2.718 ||| 0-1 ||| 51 668016 +a ||| delivered to ||| 0.0625 0.229811 4.49091e-06 1.20854e-05 2.718 ||| 0-1 ||| 48 668016 +a ||| delivered with ||| 0.333333 0.0571592 1.49697e-06 5.75981e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| deliveries to ||| 0.166667 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| delivering for ||| 0.0833333 0.0683377 1.49697e-06 3.46376e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| delivers ||| 0.00621118 0.0057803 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 161 668016 +a ||| demand for more ||| 0.0769231 0.0683377 1.49697e-06 4.51049e-09 2.718 ||| 0-1 ||| 13 668016 +a ||| demand for ||| 0.00144404 0.0683377 2.99394e-06 1.97508e-06 2.718 ||| 0-1 ||| 1385 668016 +a ||| demanded . in ||| 1 0.0587624 1.49697e-06 1.63791e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| demanding for ||| 0.0384615 0.0683377 1.49697e-06 5.04824e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| demands for ||| 0.00236407 0.0683377 1.49697e-06 1.41867e-06 2.718 ||| 0-1 ||| 423 668016 +a ||| demands of ||| 0.00359066 0.0188479 2.99394e-06 1.13877e-06 2.718 ||| 0-1 ||| 557 668016 +a ||| demands on ||| 0.0165289 0.0782999 2.99394e-06 1.46052e-06 2.718 ||| 0-1 ||| 121 668016 +a ||| demands upon ||| 0.04 0.19056 1.49697e-06 7.59028e-08 2.718 ||| 0-1 ||| 25 668016 +a ||| democracy , for ||| 0.0322581 0.0683377 1.49697e-06 1.27876e-07 2.718 ||| 0-2 ||| 31 668016 +a ||| democracy at the heart of the Middle ||| 1 0.204175 1.49697e-06 1.83193e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| democracy at the heart of the ||| 0.333333 0.204175 1.49697e-06 1.63565e-14 2.718 ||| 0-1 ||| 3 668016 +a ||| democracy at the heart of ||| 0.2 0.204175 1.49697e-06 2.66428e-13 2.718 ||| 0-1 ||| 5 668016 +a ||| democracy at the heart ||| 0.166667 0.204175 1.49697e-06 4.90083e-12 2.718 ||| 0-1 ||| 6 668016 +a ||| democracy at the ||| 0.0666667 0.204175 1.49697e-06 6.08043e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| democracy at ||| 0.0163934 0.204175 1.49697e-06 9.9043e-07 2.718 ||| 0-1 ||| 61 668016 +a ||| demonstrated to ||| 0.025641 0.229811 1.49697e-06 9.45814e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| demonstrating to ||| 0.0769231 0.229811 1.49697e-06 4.16859e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| demonstration to ||| 0.125 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| denied a say by ||| 0.5 0.0337966 1.49697e-06 5.26343e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| denied permission to take part ||| 1 0.229811 1.49697e-06 9.8484e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| denied permission to take ||| 1 0.229811 1.49697e-06 8.2607e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| denied permission to ||| 0.5 0.229811 1.49697e-06 5.13087e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| denied that ||| 0.0151515 0.0328418 1.49697e-06 7.51926e-07 2.718 ||| 0-0 ||| 66 668016 +a ||| denied this right ||| 0.25 0.0328418 1.49697e-06 1.86263e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| denied this ||| 0.0909091 0.0328418 1.49697e-06 2.88825e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| denied to ||| 0.0833333 0.229811 4.49091e-06 5.28955e-06 2.718 ||| 0-1 ||| 36 668016 +a ||| denied ||| 0.00194553 0.0328418 2.99394e-06 4.47e-05 2.718 ||| 0-0 ||| 1028 668016 +a ||| deny assent to ||| 0.333333 0.229811 1.49697e-06 2.18623e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| deny legitimacy to other ways ||| 0.5 0.229811 1.49697e-06 2.62662e-18 2.718 ||| 0-2 ||| 2 668016 +a ||| deny legitimacy to other ||| 0.5 0.229811 1.49697e-06 2.72471e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| deny legitimacy to ||| 0.5 0.229811 1.49697e-06 2.10321e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| deny ||| 0.00222469 0.0094518 2.99394e-06 9.1e-06 2.718 ||| 0-0 ||| 899 668016 +a ||| denying ||| 0.00678733 0.121693 4.49091e-06 6.3e-05 2.718 ||| 0-0 ||| 442 668016 +a ||| department , for ||| 1 0.0683377 1.49697e-06 2.85633e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| departments receive ||| 0.166667 0.0020519 1.49697e-06 6.5e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| depend on what is expected ||| 0.111111 0.0782999 1.49697e-06 1.63604e-15 2.718 ||| 0-1 ||| 9 668016 +a ||| depend on what is ||| 0.111111 0.0782999 1.49697e-06 3.0695e-11 2.718 ||| 0-1 ||| 9 668016 +a ||| depend on what ||| 0.0714286 0.0782999 1.49697e-06 9.79385e-10 2.718 ||| 0-1 ||| 14 668016 +a ||| depend on ||| 0.00568182 0.0782999 7.48485e-06 6.98015e-07 2.718 ||| 0-1 ||| 880 668016 +a ||| depend upon ||| 0.0263158 0.19056 1.49697e-06 3.62756e-08 2.718 ||| 0-1 ||| 38 668016 +a ||| dependence on ||| 0.00207039 0.0782999 1.49697e-06 1.51742e-07 2.718 ||| 0-1 ||| 483 668016 +a ||| dependent in turn ||| 1 0.0587624 1.49697e-06 3.67745e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| dependent in ||| 0.142857 0.0587624 1.49697e-06 1.64025e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| dependent on the ||| 0.0083682 0.0782999 2.99394e-06 6.35799e-08 2.718 ||| 0-1 ||| 239 668016 +a ||| dependent on ||| 0.0147929 0.0782999 2.24546e-05 1.03564e-06 2.718 ||| 0-1 ||| 1014 668016 +a ||| dependent upon ||| 0.060241 0.19056 7.48485e-06 5.3822e-08 2.718 ||| 0-1 ||| 83 668016 +a ||| depending on the ||| 0.00239808 0.0782999 1.49697e-06 1.93302e-08 2.718 ||| 0-1 ||| 417 668016 +a ||| depending on ||| 0.00255428 0.0782999 2.99394e-06 3.14865e-07 2.718 ||| 0-1 ||| 783 668016 +a ||| depends on the ||| 0.00293255 0.0782999 1.49697e-06 3.51669e-08 2.718 ||| 0-1 ||| 341 668016 +a ||| depends on ||| 0.00166528 0.0782999 2.99394e-06 5.72828e-07 2.718 ||| 0-1 ||| 1201 668016 +a ||| depleted to feed ||| 1 0.229811 1.49697e-06 7.2057e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| depleted to ||| 1 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| deployed in ||| 0.0126582 0.0587624 1.49697e-06 7.99097e-07 2.718 ||| 0-1 ||| 79 668016 +a ||| deployed on ||| 0.0833333 0.0782999 1.49697e-06 5.04543e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| deported from their homes ||| 0.5 0.0435582 1.49697e-06 3.37103e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| deported from their ||| 0.5 0.0435582 1.49697e-06 3.33765e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| deported from ||| 0.1 0.0435582 1.49697e-06 2.87952e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| deported ||| 0.00934579 0.0994152 1.49697e-06 1.55e-05 2.718 ||| 0-0 ||| 107 668016 +a ||| deprive Parliament of ||| 1 0.334034 1.49697e-06 4.52784e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| deprive Parliament ||| 1 0.334034 1.49697e-06 8.32874e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| deprive ||| 0.033557 0.334034 7.48485e-06 0.0001451 2.718 ||| 0-0 ||| 149 668016 +a ||| deprived of their leadership ||| 1 0.0361124 1.49697e-06 2.54397e-14 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| deprived of their ||| 0.0153846 0.0361124 1.49697e-06 1.53251e-09 2.718 ||| 0-0 0-1 ||| 65 668016 +a ||| deprived of ||| 0.00308642 0.0361124 1.49697e-06 1.32216e-06 2.718 ||| 0-0 0-1 ||| 324 668016 +a ||| deprived ||| 0.00495868 0.0533769 4.49091e-06 4.47e-05 2.718 ||| 0-0 ||| 605 668016 +a ||| depriving them ||| 0.047619 0.338323 1.49697e-06 2.76555e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| depriving ||| 0.0387097 0.338323 8.98182e-06 0.0001031 2.718 ||| 0-0 ||| 155 668016 +a ||| depth to ||| 0.142857 0.229811 1.49697e-06 5.04434e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| depths of ||| 0.0212766 0.0188479 1.49697e-06 1.06483e-07 2.718 ||| 0-1 ||| 47 668016 +a ||| deputising for the author . - ||| 0.0294118 0.0683377 1.49697e-06 7.53703e-19 2.718 ||| 0-1 ||| 34 668016 +a ||| deputising for the author . ||| 0.0294118 0.0683377 1.49697e-06 1.9981e-16 2.718 ||| 0-1 ||| 34 668016 +a ||| deputising for the author ||| 0.0294118 0.0683377 1.49697e-06 6.59656e-14 2.718 ||| 0-1 ||| 34 668016 +a ||| deputising for the ||| 0.0208333 0.0683377 1.49697e-06 4.07195e-09 2.718 ||| 0-1 ||| 48 668016 +a ||| deputising for ||| 0.0185185 0.0683377 1.49697e-06 6.63273e-08 2.718 ||| 0-1 ||| 54 668016 +a ||| deriving from ||| 0.00813008 0.0435582 1.49697e-06 1.7997e-08 2.718 ||| 0-1 ||| 123 668016 +a ||| described by ||| 0.00581395 0.0337966 1.49697e-06 3.66946e-07 2.718 ||| 0-1 ||| 172 668016 +a ||| description at ||| 1 0.204175 1.49697e-06 4.28846e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| description of ||| 0.00552486 0.0188479 1.49697e-06 3.72689e-07 2.718 ||| 0-1 ||| 181 668016 +a ||| deserve - although ||| 1 0.0921822 1.49697e-06 9.65295e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| deserve to be ||| 0.00684932 0.229811 1.49697e-06 1.11733e-07 2.718 ||| 0-1 ||| 146 668016 +a ||| deserve to ||| 0.0157068 0.229811 4.49091e-06 6.16531e-06 2.718 ||| 0-1 ||| 191 668016 +a ||| deserves to be ||| 0.00471698 0.229811 1.49697e-06 1.23161e-07 2.718 ||| 0-1 ||| 212 668016 +a ||| deserves to ||| 0.00414938 0.229811 1.49697e-06 6.79585e-06 2.718 ||| 0-1 ||| 241 668016 +a ||| designated for ||| 0.0222222 0.0683377 1.49697e-06 3.46376e-07 2.718 ||| 0-1 ||| 45 668016 +a ||| designated to ||| 0.111111 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| designated ||| 0.00239234 0.0020619 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 418 668016 +a ||| designed for ||| 0.00478469 0.0683377 1.49697e-06 2.87787e-06 2.718 ||| 0-1 ||| 209 668016 +a ||| designed specifically for ||| 0.2 0.0683377 1.49697e-06 1.61448e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| designed to ' green ||| 1 0.229811 1.49697e-06 1.55997e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| designed to ' ||| 1 0.229811 1.49697e-06 9.39739e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| designed to bring ||| 0.0333333 0.229811 1.49697e-06 8.51672e-09 2.718 ||| 0-1 ||| 30 668016 +a ||| designed to deal ||| 0.2 0.229811 1.49697e-06 1.16164e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| designed to serve ||| 0.0666667 0.229811 1.49697e-06 1.87133e-09 2.718 ||| 0-1 ||| 15 668016 +a ||| designed to ||| 0.0104498 0.229811 3.44303e-05 2.73586e-05 2.718 ||| 0-1 ||| 2201 668016 +a ||| desirable to ||| 0.00609756 0.229811 1.49697e-06 4.4138e-06 2.718 ||| 0-1 ||| 164 668016 +a ||| desire for ||| 0.00168634 0.0683377 1.49697e-06 1.72451e-06 2.718 ||| 0-1 ||| 593 668016 +a ||| desire here to ||| 1 0.229811 1.49697e-06 3.3244e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| desire on ||| 0.047619 0.0782999 1.49697e-06 1.77539e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| desire to act like ||| 1 0.229811 1.49697e-06 4.94652e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| desire to act ||| 0.166667 0.229811 1.49697e-06 2.78536e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| desire to arrive at ||| 0.5 0.204175 1.49697e-06 2.85908e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| desire to prove ||| 0.5 0.229811 1.49697e-06 8.67249e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| desire to ||| 0.00392927 0.229811 8.98182e-06 1.63941e-05 2.718 ||| 0-1 ||| 1527 668016 +a ||| desired in certain ||| 1 0.0587624 1.49697e-06 2.65414e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| desired in ||| 0.222222 0.0587624 2.99394e-06 9.31279e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| desired to ||| 0.25 0.229811 1.49697e-06 5.42967e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| desperate times ||| 0.1 0.0076336 1.49697e-06 3.7555e-10 2.718 ||| 0-0 ||| 10 668016 +a ||| desperate ||| 0.00413223 0.0076336 2.99394e-06 3.7e-06 2.718 ||| 0-0 ||| 484 668016 +a ||| despite all ||| 0.00157978 0.453792 1.49697e-06 3.02435e-05 2.718 ||| 0-0 ||| 633 668016 +a ||| despite having ||| 0.00724638 0.453792 1.49697e-06 2.45064e-06 2.718 ||| 0-0 ||| 138 668016 +a ||| despite numerous ||| 0.0666667 0.453792 1.49697e-06 1.12644e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| despite the fact I am ||| 0.5 0.453792 1.49697e-06 1.04007e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| despite the fact I ||| 0.5 0.453792 1.49697e-06 8.14146e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| despite the fact ||| 0.00174825 0.453792 2.99394e-06 1.15098e-06 2.718 ||| 0-0 ||| 1144 668016 +a ||| despite the wish ||| 0.333333 0.453792 1.49697e-06 1.15793e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| despite the ||| 0.00166528 0.453792 8.98182e-06 0.00039292 2.718 ||| 0-0 ||| 3603 668016 +a ||| despite ||| 0.00186433 0.453792 3.89212e-05 0.0064002 2.718 ||| 0-0 ||| 13946 668016 +a ||| destabilises ||| 0.0344828 0.047619 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 29 668016 +a ||| destined for ||| 0.00645161 0.0683377 1.49697e-06 2.39515e-07 2.718 ||| 0-1 ||| 155 668016 +a ||| destined to ||| 0.0169492 0.229811 2.99394e-06 2.27696e-06 2.718 ||| 0-1 ||| 118 668016 +a ||| destroyed and removed from ||| 1 0.0435582 1.49697e-06 4.69748e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| destroyed by something which starts out as ||| 0.25 0.0243476 1.49697e-06 8.96636e-23 2.718 ||| 0-6 ||| 4 668016 +a ||| detailed , it is meeting with ||| 1 0.0571592 1.49697e-06 3.5122e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| detailed in ||| 0.0178571 0.0587624 1.49697e-06 1.51408e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| details about ||| 0.0212766 0.0526361 1.49697e-06 1.39589e-07 2.718 ||| 0-1 ||| 47 668016 +a ||| details of a ||| 0.0769231 0.0188479 1.49697e-06 3.63172e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| details of the article ||| 1 0.0188479 1.49697e-06 7.24317e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| details of the ||| 0.0030581 0.0188479 1.49697e-06 5.02998e-08 2.718 ||| 0-1 ||| 327 668016 +a ||| details of ||| 0.00784929 0.0188479 7.48485e-06 8.19324e-07 2.718 ||| 0-1 ||| 637 668016 +a ||| details via ||| 0.25 0.330861 1.49697e-06 3.83534e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| detained ||| 0.00220751 0.0038986 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 453 668016 +a ||| detainees ||| 0.00273973 0.0146751 1.49697e-06 6.4e-06 2.718 ||| 0-0 ||| 365 668016 +a ||| detention of ||| 0.00806452 0.0188479 1.49697e-06 1.47893e-07 2.718 ||| 0-1 ||| 124 668016 +a ||| deter ||| 0.00666667 0.184332 1.49697e-06 3.65e-05 2.718 ||| 0-0 ||| 150 668016 +a ||| determination , not afraid to ||| 1 0.229811 1.49697e-06 3.90363e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| determination to ||| 0.00180832 0.229811 1.49697e-06 4.16859e-06 2.718 ||| 0-1 ||| 553 668016 +a ||| determined by ||| 0.00319489 0.0337966 1.49697e-06 2.81381e-07 2.718 ||| 0-1 ||| 313 668016 +a ||| determined on ||| 0.05 0.0782999 1.49697e-06 1.2974e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| determined to push ||| 0.2 0.229811 1.49697e-06 3.31855e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| determined to ||| 0.00486224 0.229811 4.49091e-06 1.19803e-05 2.718 ||| 0-1 ||| 617 668016 +a ||| deterrent , and which depend upon ||| 1 0.19056 1.49697e-06 1.47296e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| detract from ||| 0.00900901 0.0435582 1.49697e-06 1.7997e-08 2.718 ||| 0-1 ||| 111 668016 +a ||| detriment of ||| 0.00262467 0.0188479 2.99394e-06 2.86911e-07 2.718 ||| 0-1 ||| 762 668016 +a ||| detrimental to ||| 0.00423729 0.229811 2.99394e-06 2.03175e-06 2.718 ||| 0-1 ||| 472 668016 +a ||| develop in such a ||| 0.333333 0.0587624 1.49697e-06 3.37206e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| develop in such ||| 0.166667 0.0587624 1.49697e-06 7.60745e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| develop in ||| 0.0111732 0.0587624 2.99394e-06 3.67705e-06 2.718 ||| 0-1 ||| 179 668016 +a ||| develop into ||| 0.00952381 0.107578 1.49697e-06 3.71747e-07 2.718 ||| 0-1 ||| 105 668016 +a ||| develop special links with ||| 1 0.0571592 1.49697e-06 1.04079e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| developed countries , is responsible for ||| 1 0.0683377 1.49697e-06 5.31343e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| developed countries who find themselves trapped in ||| 1 0.0587624 1.49697e-06 7.90957e-25 2.718 ||| 0-6 ||| 1 668016 +a ||| developed for ||| 0.0263158 0.0683377 1.49697e-06 2.53149e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| developed in ||| 0.00692042 0.0587624 2.99394e-06 4.12767e-06 2.718 ||| 0-1 ||| 289 668016 +a ||| developed to ||| 0.0181818 0.229811 1.49697e-06 2.40657e-05 2.718 ||| 0-1 ||| 55 668016 +a ||| developing at the ||| 0.0714286 0.204175 1.49697e-06 1.1346e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| developing at ||| 0.0645161 0.204175 2.99394e-06 1.84812e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| development in order ||| 0.0454545 0.0587624 1.49697e-06 5.26399e-09 2.718 ||| 0-1 ||| 22 668016 +a ||| development in ||| 0.000985222 0.0587624 1.49697e-06 9.88357e-06 2.718 ||| 0-1 ||| 1015 668016 +a ||| development of more ||| 0.2 0.0188479 1.49697e-06 1.11117e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| development of ||| 0.000577834 0.0188479 7.48485e-06 4.86566e-06 2.718 ||| 0-1 ||| 8653 668016 +a ||| development-performing ||| 1 1 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| developments aimed at ||| 1 0.204175 1.49697e-06 7.07273e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| developments in ||| 0.00310078 0.0587624 5.98788e-06 1.79647e-06 2.718 ||| 0-1 ||| 1290 668016 +a ||| developments move towards a ||| 1 0.155507 1.49697e-06 6.8344e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| developments move towards ||| 1 0.155507 1.49697e-06 1.54185e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| developments regarding ||| 0.047619 0.186429 1.49697e-06 1.00622e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| devised in ||| 0.0434783 0.0587624 1.49697e-06 5.1671e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| devolved power in trying ||| 0.5 0.0587624 1.49697e-06 1.86008e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| devolved power in ||| 0.5 0.0587624 1.49697e-06 1.61466e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| devote ourselves to ||| 0.0833333 0.229811 1.49697e-06 1.08088e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| devote themselves to ||| 0.0416667 0.229811 1.49697e-06 1.46009e-09 2.718 ||| 0-2 ||| 24 668016 +a ||| devoted to tackling ||| 1 0.229811 1.49697e-06 1.47214e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| devoted to ||| 0.0174419 0.229811 1.34727e-05 7.18118e-06 2.718 ||| 0-1 ||| 516 668016 +a ||| diagnosed at the ||| 1 0.204175 1.49697e-06 1.46265e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| diagnosed at ||| 1 0.204175 1.49697e-06 2.38248e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| dialogue with other institutions ||| 0.25 0.0571592 1.49697e-06 4.45115e-14 2.718 ||| 0-1 ||| 4 668016 +a ||| dialogue with other ||| 0.0714286 0.0571592 1.49697e-06 8.47837e-10 2.718 ||| 0-1 ||| 14 668016 +a ||| dialogue with ||| 0.000649351 0.0571592 1.49697e-06 6.54448e-07 2.718 ||| 0-1 ||| 1540 668016 +a ||| diarrhoea diseases kill 1.5 ||| 1 0.191759 1.49697e-06 5.24621e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| diarrhoea diseases kill ||| 1 0.191759 1.49697e-06 4.76928e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| dictated by ||| 0.00636943 0.0337966 1.49697e-06 2.05688e-08 2.718 ||| 0-1 ||| 157 668016 +a ||| dictates of ||| 0.0232558 0.0188479 1.49697e-06 9.46512e-08 2.718 ||| 0-1 ||| 43 668016 +a ||| dictators existing or ||| 1 0.0075188 1.49697e-06 2.43249e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| dictators existing ||| 1 0.0075188 1.49697e-06 2.1276e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| dictators ||| 0.00289855 0.0075188 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 345 668016 +a ||| did against ||| 0.333333 0.05146 1.49697e-06 1.18069e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| did for ||| 0.0204082 0.0683377 1.49697e-06 1.67366e-05 2.718 ||| 0-1 ||| 49 668016 +a ||| did give ||| 0.666667 0.0241455 2.99394e-06 2.55397e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| did in ||| 0.00416667 0.0587624 1.49697e-06 2.72895e-05 2.718 ||| 0-1 ||| 240 668016 +a ||| did indeed have to ||| 0.25 0.229811 1.49697e-06 1.4422e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| did it to ||| 1 0.229811 1.49697e-06 2.82943e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| did not nominate him ||| 1 0.271605 1.49697e-06 1.99854e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| did not nominate ||| 1 0.271605 1.49697e-06 6.23375e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| did so in ||| 0.0333333 0.0587624 1.49697e-06 6.19389e-08 2.718 ||| 0-2 ||| 30 668016 +a ||| did to ||| 0.15625 0.229811 7.48485e-06 0.000159107 2.718 ||| 0-1 ||| 32 668016 +a ||| did we treat Mandela and the apartheid ||| 1 0.271158 1.49697e-06 9.86984e-25 2.718 ||| 0-2 ||| 1 668016 +a ||| did we treat Mandela and the ||| 1 0.271158 1.49697e-06 7.04989e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| did we treat Mandela and ||| 1 0.271158 1.49697e-06 1.14834e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| did we treat Mandela ||| 1 0.271158 1.49697e-06 9.16775e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| did we treat ||| 0.5 0.271158 1.49697e-06 2.29194e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| did with ||| 0.0175439 0.0571592 1.49697e-06 7.58291e-06 2.718 ||| 0-1 ||| 57 668016 +a ||| did you treat ||| 1 0.271158 1.49697e-06 6.51848e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| died from breathing ||| 0.25 0.0435582 1.49697e-06 1.42536e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| died from ||| 0.025 0.0435582 1.49697e-06 6.47892e-08 2.718 ||| 0-1 ||| 40 668016 +a ||| difference at ||| 0.0909091 0.204175 1.49697e-06 8.95131e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| differences in the ||| 0.00617284 0.0587624 1.49697e-06 8.63126e-08 2.718 ||| 0-1 ||| 162 668016 +a ||| differences in ||| 0.00367647 0.0587624 4.49091e-06 1.40593e-06 2.718 ||| 0-1 ||| 816 668016 +a ||| differences to sustain ||| 0.166667 0.229811 1.49697e-06 5.32809e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| differences to ||| 0.0526316 0.229811 1.49697e-06 8.19706e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| different from ||| 0.005 0.0435582 5.98788e-06 1.58518e-06 2.718 ||| 0-1 ||| 800 668016 +a ||| different roles in ||| 1 0.0587624 1.49697e-06 3.83675e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| different to the tactic used ||| 1 0.229811 1.49697e-06 2.2347e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| different to the tactic ||| 1 0.229811 1.49697e-06 5.2091e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| different to the ||| 0.025641 0.229811 1.49697e-06 4.73554e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| different to ||| 0.0114286 0.229811 2.99394e-06 7.71364e-05 2.718 ||| 0-1 ||| 175 668016 +a ||| differently from ||| 0.00793651 0.0435582 1.49697e-06 7.7747e-08 2.718 ||| 0-1 ||| 126 668016 +a ||| difficult for ||| 0.00446429 0.0683377 4.49091e-06 4.57658e-06 2.718 ||| 0-1 ||| 672 668016 +a ||| difficult over ||| 0.25 0.0682544 1.49697e-06 2.88504e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| difficult position of having to hold in ||| 1 0.0587624 1.49697e-06 7.91779e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| difficult to agree upon ||| 1 0.19056 1.49697e-06 3.46167e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| difficult to get ||| 0.0120482 0.229811 1.49697e-06 1.90215e-08 2.718 ||| 0-1 ||| 83 668016 +a ||| difficult to organise ||| 0.142857 0.229811 1.49697e-06 4.52478e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| difficult to solve , ||| 0.111111 0.229811 1.49697e-06 8.04213e-11 2.718 ||| 0-1 ||| 9 668016 +a ||| difficult to solve ||| 0.0434783 0.229811 1.49697e-06 6.74366e-10 2.718 ||| 0-1 ||| 23 668016 +a ||| difficult to ||| 0.00192246 0.229811 8.98182e-06 4.35075e-05 2.718 ||| 0-1 ||| 3121 668016 +a ||| difficulties in ||| 0.00163399 0.0587624 1.49697e-06 1.23169e-06 2.718 ||| 0-1 ||| 612 668016 +a ||| difficulty at all ||| 0.142857 0.204175 1.49697e-06 2.89496e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| difficulty at ||| 0.0769231 0.204175 1.49697e-06 6.12637e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| difficulty in ||| 0.00238095 0.0587624 1.49697e-06 1.08148e-06 2.718 ||| 0-1 ||| 420 668016 +a ||| difficulty of ||| 0.005 0.0188479 1.49697e-06 5.32413e-07 2.718 ||| 0-1 ||| 200 668016 +a ||| dignity to ||| 0.0526316 0.229811 1.49697e-06 2.52217e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| dimension into ||| 0.125 0.107578 1.49697e-06 1.92555e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| dimension to ||| 0.0181818 0.229811 2.99394e-06 1.11046e-05 2.718 ||| 0-1 ||| 110 668016 +a ||| dioxide in the ||| 1 0.0587624 1.49697e-06 1.06969e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| dioxide in ||| 1 0.0587624 1.49697e-06 1.74239e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| dire in ||| 0.333333 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| direct appeal to ||| 0.125 0.229811 1.49697e-06 5.2155e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| direct impact on ||| 0.00854701 0.0782999 1.49697e-06 1.54107e-10 2.718 ||| 0-2 ||| 117 668016 +a ||| direct tradition of ||| 1 0.0188479 1.49697e-06 6.85363e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| directed against the ||| 0.016129 0.05146 1.49697e-06 4.9951e-09 2.718 ||| 0-1 ||| 62 668016 +a ||| directed against ||| 0.0110497 0.05146 2.99394e-06 8.13643e-08 2.718 ||| 0-1 ||| 181 668016 +a ||| directed at ||| 0.0231884 0.204175 1.19758e-05 1.06531e-06 2.718 ||| 0-1 ||| 345 668016 +a ||| directed into ||| 0.333333 0.107578 1.49697e-06 1.90126e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| directed specially at ||| 1 0.204175 1.49697e-06 3.08939e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| directed to ||| 0.0441176 0.229811 4.49091e-06 1.09644e-05 2.718 ||| 0-1 ||| 68 668016 +a ||| directed towards me ||| 0.333333 0.155507 1.49697e-06 6.35591e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| directed towards ||| 0.0437158 0.155507 1.19758e-05 1.05562e-07 2.718 ||| 0-1 ||| 183 668016 +a ||| directing my comments to ||| 1 0.229811 1.49697e-06 3.60446e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| direction , in ||| 0.0769231 0.0587624 1.49697e-06 6.49876e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| direction in which ||| 0.00869565 0.0587624 1.49697e-06 4.62912e-08 2.718 ||| 0-1 ||| 115 668016 +a ||| direction in ||| 0.0126582 0.0587624 4.49091e-06 5.44948e-06 2.718 ||| 0-1 ||| 237 668016 +a ||| direction of ||| 0.00462963 0.0188479 4.49091e-06 2.68277e-06 2.718 ||| 0-1 ||| 648 668016 +a ||| direction so that it now ||| 1 0.00208 1.49697e-06 8.20886e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| direction to ||| 0.0243902 0.229811 2.99394e-06 3.17724e-05 2.718 ||| 0-1 ||| 82 668016 +a ||| directive in ||| 0.00487805 0.0587624 2.99394e-06 6.70521e-06 2.718 ||| 0-1 ||| 410 668016 +a ||| directive initiated by ||| 0.5 0.0337966 1.49697e-06 1.28546e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| directive on ||| 0.000700035 0.0782999 2.99394e-06 4.23361e-06 2.718 ||| 0-1 ||| 2857 668016 +a ||| directive to include policy ||| 0.166667 0.229811 1.49697e-06 2.03779e-12 2.718 ||| 0-1 ||| 6 668016 +a ||| directive to include ||| 0.0322581 0.229811 1.49697e-06 5.176e-09 2.718 ||| 0-1 ||| 31 668016 +a ||| directive to ||| 0.00364299 0.229811 2.99394e-06 3.90937e-05 2.718 ||| 0-1 ||| 549 668016 +a ||| directives in ||| 0.0104167 0.0587624 1.49697e-06 8.65188e-07 2.718 ||| 0-1 ||| 96 668016 +a ||| directly about ||| 0.125 0.0526361 1.49697e-06 1.90486e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| directly at ||| 0.0277778 0.204175 1.49697e-06 1.28654e-06 2.718 ||| 0-1 ||| 36 668016 +a ||| directly on ||| 0.0125 0.0782999 1.49697e-06 1.43397e-06 2.718 ||| 0-1 ||| 80 668016 +a ||| directly to ||| 0.00663717 0.229811 4.49091e-06 1.32414e-05 2.718 ||| 0-1 ||| 452 668016 +a ||| directly towards ||| 0.111111 0.155507 1.49697e-06 1.27484e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| directory ||| 0.00662252 0.106796 1.49697e-06 2.01e-05 2.718 ||| 0-0 ||| 151 668016 +a ||| directs our thoughts more to ||| 1 0.229811 1.49697e-06 4.28157e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| disagree with ||| 0.00244798 0.0571592 2.99394e-06 1.31891e-07 2.718 ||| 0-1 ||| 817 668016 +a ||| disappointment to ||| 0.030303 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| disarm ||| 0.00833333 0.121795 1.49697e-06 1.73e-05 2.718 ||| 0-0 ||| 120 668016 +a ||| disassociated themselves from ||| 0.5 0.0435582 1.49697e-06 1.23733e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| disaster it has proven to be . ||| 0.5 0.229811 1.49697e-06 6.21018e-19 2.718 ||| 0-4 ||| 2 668016 +a ||| disaster it has proven to be ||| 0.5 0.229811 1.49697e-06 2.05024e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| disaster it has proven to ||| 0.5 0.229811 1.49697e-06 1.1313e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| disaster upon ||| 0.2 0.19056 1.49697e-06 4.96818e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| disasters linked to ||| 1 0.229811 1.49697e-06 1.31468e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| disasters to ||| 0.0588235 0.229811 1.49697e-06 3.15271e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| disbursed to ||| 0.1 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| discarded for ||| 0.25 0.0683377 1.49697e-06 1.06861e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| discards far over ||| 1 0.0682544 1.49697e-06 3.48886e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| discharge for ||| 0.0031746 0.0683377 1.49697e-06 9.02788e-07 2.718 ||| 0-1 ||| 315 668016 +a ||| discharge on the grounds ||| 1 0.0782999 1.49697e-06 5.97407e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| discharge on the ||| 0.1 0.0782999 1.49697e-06 5.70589e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| discharge on ||| 0.0588235 0.0782999 1.49697e-06 9.29422e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| discharge to ||| 0.003125 0.229811 1.49697e-06 8.58239e-06 2.718 ||| 0-1 ||| 320 668016 +a ||| discipline over ||| 0.333333 0.0682544 1.49697e-06 7.43328e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| disclosing it at ||| 1 0.204175 1.49697e-06 4.23681e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| discourage ||| 0.00403226 0.212048 1.49697e-06 8.03e-05 2.718 ||| 0-0 ||| 248 668016 +a ||| discouraging ||| 0.0075188 0.115942 1.49697e-06 2.19e-05 2.718 ||| 0-0 ||| 133 668016 +a ||| discredited by ||| 0.0833333 0.0337966 1.49697e-06 1.15185e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| discretion , in the ||| 1 0.0587624 1.49697e-06 2.1994e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| discretion , in ||| 1 0.0587624 1.49697e-06 3.58256e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| discriminate against ||| 0.00617284 0.0298013 1.49697e-06 1.95652e-09 2.718 ||| 0-0 ||| 162 668016 +a ||| discriminate ||| 0.012987 0.0298013 1.49697e-06 8.2e-06 2.718 ||| 0-0 ||| 77 668016 +a ||| discriminates disproportionately against ||| 0.5 0.0454545 1.49697e-06 5.2492e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| discriminates disproportionately ||| 0.5 0.0454545 1.49697e-06 2.2e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| discriminates ||| 0.0263158 0.0454545 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 38 668016 +a ||| discussed at ||| 0.0031746 0.204175 1.49697e-06 1.78686e-06 2.718 ||| 0-1 ||| 315 668016 +a ||| discussed in relation to Mr Swoboda 's ||| 1 0.229811 1.49697e-06 2.97664e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| discussed in relation to Mr Swoboda ||| 1 0.229811 1.49697e-06 1.56304e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| discussed in relation to Mr ||| 1 0.229811 1.49697e-06 6.25214e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| discussed in relation to ||| 0.125 0.229811 1.49697e-06 9.57742e-11 2.718 ||| 0-3 ||| 8 668016 +a ||| discussed in ||| 0.00158479 0.0587624 1.49697e-06 3.15433e-06 2.718 ||| 0-1 ||| 631 668016 +a ||| discussed the capacity of ||| 1 0.0188479 1.49697e-06 6.96888e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| discussion about ||| 0.00331126 0.0526361 1.49697e-06 4.35396e-07 2.718 ||| 0-1 ||| 302 668016 +a ||| discussion in order to ||| 0.333333 0.229811 1.49697e-06 3.45034e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| discussion of ||| 0.00276243 0.0188479 2.99394e-06 2.55558e-06 2.718 ||| 0-1 ||| 724 668016 +a ||| discussion on the ||| 0.00327869 0.0782999 1.49697e-06 2.0122e-07 2.718 ||| 0-1 ||| 305 668016 +a ||| discussion on ||| 0.0033557 0.0782999 4.49091e-06 3.27764e-06 2.718 ||| 0-1 ||| 894 668016 +a ||| discussion to ||| 0.0142857 0.229811 1.49697e-06 3.02661e-05 2.718 ||| 0-1 ||| 70 668016 +a ||| discussions about ||| 0.00564972 0.0526361 1.49697e-06 2.08627e-07 2.718 ||| 0-1 ||| 177 668016 +a ||| discussions lasting until half past three in ||| 1 0.0268909 1.49697e-06 4.78847e-28 2.718 ||| 0-2 ||| 1 668016 +a ||| discussions lasting until half past three ||| 1 0.0268909 1.49697e-06 2.23713e-26 2.718 ||| 0-2 ||| 1 668016 +a ||| discussions lasting until half past ||| 1 0.0268909 1.49697e-06 3.53418e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| discussions lasting until half ||| 1 0.0268909 1.49697e-06 2.75892e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| discussions lasting until ||| 1 0.0268909 1.49697e-06 9.57959e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| disease diagnosed at the ||| 1 0.204175 1.49697e-06 4.31481e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| disease diagnosed at ||| 1 0.204175 1.49697e-06 7.02831e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| disease into ||| 0.142857 0.107578 1.49697e-06 1.79192e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| diseases kill 1.5 ||| 1 0.191759 1.49697e-06 1.31155e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| diseases kill ||| 0.333333 0.191759 1.49697e-06 1.19232e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| disgrace for ||| 0.03125 0.0683377 1.49697e-06 1.17915e-07 2.718 ||| 0-1 ||| 32 668016 +a ||| dish by means of ||| 1 0.0337966 1.49697e-06 1.98409e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| dish by means ||| 1 0.0337966 1.49697e-06 3.64964e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| dish by ||| 1 0.0337966 1.49697e-06 5.75925e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| dismantling of ||| 0.00452489 0.0188479 1.49697e-06 7.39463e-08 2.718 ||| 0-1 ||| 221 668016 +a ||| dismissed ||| 0.00546448 0.0206897 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 183 668016 +a ||| dismissing workers and ||| 1 0.00205525 1.49697e-06 1.28312e-13 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| disorganised fashion to ||| 0.5 0.229811 1.49697e-06 5.04434e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| displace ||| 0.0294118 0.153846 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 34 668016 +a ||| displacing ||| 0.0625 0.375 1.49697e-06 8.2e-06 2.718 ||| 0-0 ||| 16 668016 +a ||| displayed as ||| 0.2 0.0243476 1.49697e-06 1.54394e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| displayed in asking ||| 1 0.0587624 1.49697e-06 4.56819e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| displayed in ||| 0.037037 0.0587624 2.99394e-06 1.05745e-06 2.718 ||| 0-1 ||| 54 668016 +a ||| displaying in their ||| 1 0.0587624 1.49697e-06 2.78567e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| displaying in ||| 0.333333 0.0587624 1.49697e-06 2.4033e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| displays in ||| 0.125 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| disposal of ||| 0.00714286 0.0188479 2.99394e-06 2.49051e-06 2.718 ||| 0-1 ||| 280 668016 +a ||| disposal to ||| 0.00492611 0.229811 1.49697e-06 2.94954e-05 2.718 ||| 0-1 ||| 203 668016 +a ||| disposed of ||| 0.015625 0.0188479 1.49697e-06 1.9226e-07 2.718 ||| 0-1 ||| 64 668016 +a ||| disposed towards ||| 0.0408163 0.155507 2.99394e-06 2.19219e-08 2.718 ||| 0-1 ||| 49 668016 +a ||| dispute threatens assistance for ||| 0.166667 0.0683377 1.49697e-06 9.90405e-17 2.718 ||| 0-3 ||| 6 668016 +a ||| disputes over the ||| 0.25 0.0682544 1.49697e-06 1.1266e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| disputes over ||| 0.0232558 0.0682544 1.49697e-06 1.83509e-08 2.718 ||| 0-1 ||| 43 668016 +a ||| disquiet with ||| 0.333333 0.0571592 1.49697e-06 1.16866e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| disregard for detail ||| 1 0.0683377 1.49697e-06 1.82647e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| disregard for ||| 0.0111732 0.0683377 2.99394e-06 3.5743e-07 2.718 ||| 0-1 ||| 179 668016 +a ||| disregarded by ||| 0.0666667 0.0337966 1.49697e-06 5.34787e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| disrespect to members ||| 0.2 0.229811 1.49697e-06 3.61686e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| disrespect to ||| 0.05 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| disrupted in ||| 0.5 0.0587624 1.49697e-06 1.08148e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| disseminated a courageous idea : that by ||| 1 0.0007376 1.49697e-06 1.25969e-25 2.718 ||| 0-4 ||| 1 668016 +a ||| disseminated a courageous idea : that ||| 1 0.0007376 1.49697e-06 2.39936e-23 2.718 ||| 0-4 ||| 1 668016 +a ||| disseminated a courageous idea : ||| 1 0.0007376 1.49697e-06 1.42636e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| disservice ||| 0.0111111 0.118812 1.49697e-06 2.19e-05 2.718 ||| 0-0 ||| 90 668016 +a ||| distance to ||| 0.0952381 0.180674 2.99394e-06 5.30707e-05 2.718 ||| 0-0 0-1 ||| 21 668016 +a ||| distance ||| 0.00416089 0.131537 4.49091e-06 0.0001515 2.718 ||| 0-0 ||| 721 668016 +a ||| distinct from ||| 0.0147059 0.0435582 1.49697e-06 5.47109e-08 2.718 ||| 0-1 ||| 68 668016 +a ||| distress to ||| 0.05 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| distributed to ||| 0.0222222 0.229811 1.49697e-06 4.90422e-06 2.718 ||| 0-1 ||| 45 668016 +a ||| distribution by the ||| 0.5 0.0337966 1.49697e-06 1.03546e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| distribution by ||| 0.1 0.0337966 1.49697e-06 1.68664e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| distrustful of ||| 0.142857 0.0188479 1.49697e-06 2.07049e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| disturbed even ||| 0.5 0.0495435 1.49697e-06 3.5127e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| diverted through ||| 0.25 0.230708 1.49697e-06 3.97455e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| divided , over ||| 1 0.0682544 1.49697e-06 2.88097e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| divided , with , in more recent ||| 1 0.0587624 1.49697e-06 6.30688e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| divided , with , in more ||| 1 0.0587624 1.49697e-06 1.29771e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| divided , with , in ||| 1 0.0587624 1.49697e-06 5.68249e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| divided into two in ||| 1 0.0587624 1.49697e-06 1.5166e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| division responsible for servicing ||| 1 0.0683377 1.49697e-06 3.43343e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| division responsible for ||| 0.666667 0.0683377 2.99394e-06 4.9049e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| do , after ||| 0.0434783 0.0341027 1.49697e-06 3.43636e-07 2.718 ||| 0-2 ||| 23 668016 +a ||| do , finally , is to ||| 1 0.229811 1.49697e-06 6.31318e-11 2.718 ||| 0-5 ||| 1 668016 +a ||| do , however , is to harmonize ||| 1 0.229811 1.49697e-06 8.31806e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| do , however , is to ||| 0.333333 0.229811 1.49697e-06 5.94147e-10 2.718 ||| 0-5 ||| 3 668016 +a ||| do , of course , ||| 0.015873 0.0188479 1.49697e-06 1.82326e-09 2.718 ||| 0-2 ||| 63 668016 +a ||| do , of course ||| 0.0149254 0.0188479 1.49697e-06 1.52888e-08 2.718 ||| 0-2 ||| 67 668016 +a ||| do , of ||| 0.1 0.0188479 1.49697e-06 1.21176e-05 2.718 ||| 0-2 ||| 10 668016 +a ||| do , therefore , is to ||| 0.333333 0.229811 1.49697e-06 4.48574e-10 2.718 ||| 0-5 ||| 3 668016 +a ||| do - of ||| 1 0.0188479 1.49697e-06 3.83287e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| do - to many of ||| 0.333333 0.0188479 1.49697e-06 1.16922e-11 2.718 ||| 0-4 ||| 3 668016 +a ||| do I really have to highlight just ||| 1 0.229811 1.49697e-06 1.1635e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| do I really have to highlight ||| 1 0.229811 1.49697e-06 9.2217e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| do I really have to ||| 1 0.229811 1.49697e-06 4.93139e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| do all you can to ||| 0.0909091 0.229811 1.49697e-06 5.46082e-11 2.718 ||| 0-4 ||| 11 668016 +a ||| do anything to ||| 0.0192308 0.229811 1.49697e-06 1.88812e-07 2.718 ||| 0-2 ||| 52 668016 +a ||| do at this ||| 0.0666667 0.204175 1.49697e-06 7.55479e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| do at ||| 0.0458716 0.204175 7.48485e-06 0.000116922 2.718 ||| 0-1 ||| 109 668016 +a ||| do away with ||| 0.00393701 0.0571592 1.49697e-06 1.82439e-08 2.718 ||| 0-2 ||| 254 668016 +a ||| do by ||| 0.0333333 0.0337966 1.49697e-06 2.82639e-05 2.718 ||| 0-1 ||| 30 668016 +a ||| do exactly as ||| 0.5 0.0243476 1.49697e-06 3.02564e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| do for fun ||| 1 0.0683377 1.49697e-06 5.06343e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| do for ||| 0.0306122 0.0683377 8.98182e-06 0.000126586 2.718 ||| 0-1 ||| 196 668016 +a ||| do have a great responsibility here to ||| 1 0.229811 1.49697e-06 5.87201e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| do have to ||| 0.0294118 0.229811 1.49697e-06 1.43923e-05 2.718 ||| 0-2 ||| 34 668016 +a ||| do in fact ||| 0.015625 0.0587624 1.49697e-06 6.04612e-07 2.718 ||| 0-1 ||| 64 668016 +a ||| do in ||| 0.00802139 0.0587624 8.98182e-06 0.000206401 2.718 ||| 0-1 ||| 748 668016 +a ||| do is to become like us ||| 1 0.229811 1.49697e-06 5.51536e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| do is to become like ||| 1 0.229811 1.49697e-06 1.91359e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| do is to become ||| 1 0.229811 1.49697e-06 1.07753e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| do is to ||| 0.0253807 0.229811 7.48485e-06 3.77156e-05 2.718 ||| 0-2 ||| 197 668016 +a ||| do just ||| 0.0138889 0.001613 1.49697e-06 2.25699e-07 2.718 ||| 0-1 ||| 72 668016 +a ||| do justice to ||| 0.0108696 0.229811 1.49697e-06 4.80153e-08 2.718 ||| 0-2 ||| 92 668016 +a ||| do more than ||| 0.0114943 0.0242272 1.49697e-06 9.86063e-09 2.718 ||| 0-2 ||| 87 668016 +a ||| do more to support such schemes . ||| 1 0.229811 1.49697e-06 1.08343e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| do more to support such schemes ||| 1 0.229811 1.49697e-06 3.57686e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| do more to support such ||| 1 0.229811 1.49697e-06 1.94395e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| do more to support ||| 0.0526316 0.229811 1.49697e-06 9.39604e-10 2.718 ||| 0-2 ||| 19 668016 +a ||| do more to ||| 0.00460829 0.229811 1.49697e-06 2.74818e-06 2.718 ||| 0-2 ||| 217 668016 +a ||| do no more than tot up ||| 1 0.0195077 1.49697e-06 9.16083e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| do not accord with ||| 0.25 0.0571592 1.49697e-06 2.68257e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| do not attend ||| 0.1 0.255585 1.49697e-06 4.16478e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| do not come to ||| 0.0555556 0.229811 1.49697e-06 3.48935e-09 2.718 ||| 0-3 ||| 18 668016 +a ||| do not consider our Ministerial meetings to ||| 1 0.229811 1.49697e-06 2.18202e-23 2.718 ||| 0-6 ||| 1 668016 +a ||| do not end up with ||| 0.5 0.0571592 1.49697e-06 2.90561e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| do not have enough time to dedicate ||| 1 0.229811 1.49697e-06 1.4659e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| do not have enough time to ||| 0.2 0.229811 1.49697e-06 1.33263e-14 2.718 ||| 0-5 ||| 5 668016 +a ||| do not have to ||| 0.00819672 0.229811 2.99394e-06 4.91368e-08 2.718 ||| 0-3 ||| 244 668016 +a ||| do not know what we mean ||| 1 0.0201991 1.49697e-06 9.19626e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| do not need to ||| 0.00617284 0.229811 1.49697e-06 3.76708e-09 2.718 ||| 0-3 ||| 162 668016 +a ||| do not think that on ||| 1 0.0782999 1.49697e-06 2.86277e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| do not want to ||| 0.00164474 0.229811 1.49697e-06 1.92072e-09 2.718 ||| 0-3 ||| 608 668016 +a ||| do not wish to ||| 0.00377358 0.229811 1.49697e-06 1.21077e-09 2.718 ||| 0-3 ||| 265 668016 +a ||| do of course mention to ||| 1 0.229811 1.49697e-06 8.02307e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| do of ||| 0.0625 0.0188479 1.49697e-06 0.000101611 2.718 ||| 0-1 ||| 16 668016 +a ||| do on ||| 0.00990099 0.0782999 1.49697e-06 0.00013032 2.718 ||| 0-1 ||| 101 668016 +a ||| do our best , in doing so ||| 0.5 0.0587624 1.49697e-06 3.91815e-18 2.718 ||| 0-4 ||| 2 668016 +a ||| do our best , in doing ||| 0.5 0.0587624 1.49697e-06 1.72629e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| do our best , in ||| 0.5 0.0587624 1.49697e-06 4.70249e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| do seem to go ||| 0.333333 0.229811 1.49697e-06 6.43221e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| do seem to ||| 0.111111 0.229811 1.49697e-06 1.0999e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| do so , or only for ||| 1 0.0683377 1.49697e-06 4.36036e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| do so from ||| 0.0666667 0.0435582 1.49697e-06 5.61298e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| do so in ||| 0.00555556 0.0587624 2.99394e-06 4.68469e-07 2.718 ||| 0-2 ||| 360 668016 +a ||| do so to suit ||| 0.5 0.229811 1.49697e-06 2.75865e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| do so to ||| 0.04 0.229811 1.49697e-06 2.73134e-06 2.718 ||| 0-2 ||| 25 668016 +a ||| do something about ||| 0.00350877 0.0526361 1.49697e-06 9.58192e-09 2.718 ||| 0-2 ||| 285 668016 +a ||| do something in ||| 0.0434783 0.0587624 1.49697e-06 1.14243e-07 2.718 ||| 0-2 ||| 23 668016 +a ||| do something to ||| 0.0106383 0.229811 1.49697e-06 6.66077e-07 2.718 ||| 0-2 ||| 94 668016 +a ||| do their bit in ||| 0.142857 0.0587624 1.49697e-06 1.89478e-11 2.718 ||| 0-3 ||| 7 668016 +a ||| do they have anything to do with ||| 1 0.0571592 1.49697e-06 1.07229e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| do this at ||| 0.0645161 0.204175 2.99394e-06 7.55479e-07 2.718 ||| 0-2 ||| 31 668016 +a ||| do this on ||| 0.0454545 0.0782999 1.49697e-06 8.42051e-07 2.718 ||| 0-2 ||| 22 668016 +a ||| do this to ||| 0.0625 0.229811 1.49697e-06 7.77559e-06 2.718 ||| 0-2 ||| 16 668016 +a ||| do to ||| 0.0544662 0.229811 3.74243e-05 0.00120339 2.718 ||| 0-1 ||| 459 668016 +a ||| do try and obtain ||| 1 0.0015873 1.49697e-06 6.13486e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| do try and ||| 1 0.0015873 1.49697e-06 1.02078e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| do we pay most attention to ||| 0.5 0.229811 1.49697e-06 2.20932e-16 2.718 ||| 0-5 ||| 2 668016 +a ||| do well to follow its ||| 1 0.229811 1.49697e-06 2.69128e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| do well to follow ||| 0.125 0.229811 1.49697e-06 1.88902e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| do well to ||| 0.122449 0.229811 8.98182e-06 1.9081e-06 2.718 ||| 0-2 ||| 49 668016 +a ||| do what we can to ||| 0.0344828 0.229811 1.49697e-06 5.70117e-11 2.718 ||| 0-4 ||| 29 668016 +a ||| do wish to ||| 0.111111 0.229811 2.99394e-06 3.54639e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| do with it ||| 0.0151515 0.0571592 1.49697e-06 1.01991e-06 2.718 ||| 0-1 ||| 66 668016 +a ||| do with the fact that ||| 0.0136986 0.0008521 1.49697e-06 2.69697e-12 2.718 ||| 0-4 ||| 73 668016 +a ||| do with ||| 0.0143457 0.0571592 6.13758e-05 5.73527e-05 2.718 ||| 0-1 ||| 2858 668016 +a ||| document which was agreed on and ||| 1 0.0782999 1.49697e-06 3.30868e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| document which was agreed on ||| 1 0.0782999 1.49697e-06 2.64147e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| documents to ||| 0.016129 0.229811 1.49697e-06 8.8276e-06 2.718 ||| 0-1 ||| 62 668016 +a ||| does , to ||| 0.166667 0.229811 1.49697e-06 2.93011e-05 2.718 ||| 0-2 ||| 6 668016 +a ||| does for ||| 0.0333333 0.0683377 1.49697e-06 2.58455e-05 2.718 ||| 0-1 ||| 30 668016 +a ||| does help ||| 0.0769231 0.259976 1.49697e-06 4.61332e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| does it suit ||| 1 0.134642 1.49697e-06 1.09265e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| does not appear to be prepared to ||| 1 0.229811 1.49697e-06 1.02362e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| does not apply to ||| 0.00769231 0.229811 1.49697e-06 1.2071e-10 2.718 ||| 0-3 ||| 130 668016 +a ||| does not deter ||| 1 0.184332 1.49697e-06 8.74047e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| does not form part of ||| 0.047619 0.0188479 1.49697e-06 3.84388e-14 2.718 ||| 0-4 ||| 21 668016 +a ||| does not have to ||| 0.00694444 0.229811 1.49697e-06 1.00325e-08 2.718 ||| 0-3 ||| 144 668016 +a ||| does not involve ||| 0.0113636 0.170498 1.49697e-06 1.63698e-09 2.718 ||| 0-2 ||| 88 668016 +a ||| does not just meet with the approval ||| 1 0.0571592 1.49697e-06 1.12591e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| does not just meet with the ||| 1 0.0571592 1.49697e-06 3.76557e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| does not just meet with ||| 1 0.0571592 1.49697e-06 6.13367e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| does not occur to ||| 1 0.229811 1.49697e-06 3.74127e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| does on ||| 0.0952381 0.0782999 2.99394e-06 2.6608e-05 2.718 ||| 0-1 ||| 21 668016 +a ||| does seem to me ||| 0.142857 0.229811 1.49697e-06 1.35214e-11 2.718 ||| 0-2 ||| 7 668016 +a ||| does seem to ||| 0.133333 0.229811 2.99394e-06 2.24571e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| does so to ||| 0.333333 0.229811 1.49697e-06 5.57669e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| does to ||| 0.25 0.229811 2.09576e-05 0.000245702 2.718 ||| 0-1 ||| 56 668016 +a ||| doing all of ||| 0.1 0.0188479 1.49697e-06 5.13097e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| doing and in which ||| 1 0.0587624 1.49697e-06 2.34684e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| doing and in ||| 0.5 0.0587624 1.49697e-06 2.76275e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| doing at ||| 0.016129 0.204175 1.49697e-06 1.24944e-05 2.718 ||| 0-1 ||| 62 668016 +a ||| doing in ||| 0.00515464 0.0587624 1.49697e-06 2.20563e-05 2.718 ||| 0-1 ||| 194 668016 +a ||| doing justice to ||| 0.0555556 0.229811 1.49697e-06 5.13097e-09 2.718 ||| 0-2 ||| 18 668016 +a ||| doing much to ||| 0.2 0.229811 1.49697e-06 1.29072e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| doing on ||| 0.0344828 0.0782999 1.49697e-06 1.39262e-05 2.718 ||| 0-1 ||| 29 668016 +a ||| doing so in ||| 0.0192308 0.0587624 1.49697e-06 5.00612e-08 2.718 ||| 0-2 ||| 52 668016 +a ||| doing so within an appropriate ||| 1 0.0123496 1.49697e-06 2.4794e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| doing so within an ||| 1 0.0123496 1.49697e-06 1.84205e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| doing so within ||| 0.25 0.0123496 1.49697e-06 4.14437e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| doing to ||| 0.0162602 0.229811 2.99394e-06 0.000128596 2.718 ||| 0-1 ||| 123 668016 +a ||| doing without ||| 0.0625 0.0015466 1.49697e-06 1.50878e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| dominant on ||| 0.5 0.0782999 1.49697e-06 1.36568e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| don 't persecute these people , it ||| 1 0.410256 1.49697e-06 4.35515e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| don 't persecute these people , ||| 1 0.410256 1.49697e-06 2.44903e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| don 't persecute these people ||| 1 0.410256 1.49697e-06 2.05361e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| don 't persecute these ||| 1 0.410256 1.49697e-06 2.33312e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| don 't persecute ||| 1 0.410256 1.49697e-06 2.24966e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| done , to ||| 0.0909091 0.229811 1.49697e-06 1.90495e-05 2.718 ||| 0-2 ||| 11 668016 +a ||| done - to get butter on ||| 1 0.0782999 1.49697e-06 4.56294e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| done against ||| 0.25 0.05146 1.49697e-06 1.18537e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| done at a ||| 0.117647 0.204175 2.99394e-06 6.87943e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| done at ||| 0.0106383 0.204175 2.99394e-06 1.55201e-05 2.718 ||| 0-1 ||| 188 668016 +a ||| done away with ||| 0.00909091 0.0571592 1.49697e-06 2.42168e-09 2.718 ||| 0-2 ||| 110 668016 +a ||| done by people from ||| 1 0.0435582 1.49697e-06 1.51696e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| done by ||| 0.002442 0.0337966 2.99394e-06 3.75174e-06 2.718 ||| 0-1 ||| 819 668016 +a ||| done in ||| 0.00137741 0.0587624 2.99394e-06 2.73976e-05 2.718 ||| 0-1 ||| 1452 668016 +a ||| done into ||| 0.25 0.107578 1.49697e-06 2.76988e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| done on ||| 0.00186567 0.0782999 1.49697e-06 1.72986e-05 2.718 ||| 0-1 ||| 536 668016 +a ||| done so at a ||| 1 0.204175 1.49697e-06 1.56142e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| done so at ||| 0.25 0.204175 1.49697e-06 3.52261e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| done so in ||| 0.0217391 0.0587624 1.49697e-06 6.21844e-08 2.718 ||| 0-2 ||| 46 668016 +a ||| done to ||| 0.0124805 0.229811 1.19758e-05 0.000159738 2.718 ||| 0-1 ||| 641 668016 +a ||| done whilst meeting ||| 1 0.0442295 1.49697e-06 1.45876e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| done whilst ||| 0.5 0.0442295 1.49697e-06 1.16143e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| done with ||| 0.0070922 0.0571592 2.99394e-06 7.61297e-06 2.718 ||| 0-1 ||| 282 668016 +a ||| done without embarking on ||| 1 0.0782999 1.49697e-06 1.64389e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| done à ||| 1 0.331035 1.49697e-06 1.99728e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| doomed to failure ||| 0.0135135 0.229811 1.49697e-06 4.75429e-11 2.718 ||| 0-1 ||| 74 668016 +a ||| doomed to ||| 0.0070922 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-1 ||| 141 668016 +a ||| door after the ||| 0.0714286 0.0341027 1.49697e-06 2.33274e-09 2.718 ||| 0-1 ||| 14 668016 +a ||| door after ||| 0.142857 0.0341027 1.49697e-06 3.79976e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| door for ||| 0.0540541 0.0683377 2.99394e-06 1.66924e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| door is shut on ||| 0.25 0.0782999 1.49697e-06 8.34817e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| door of ||| 0.030303 0.0188479 2.99394e-06 1.33991e-06 2.718 ||| 0-1 ||| 66 668016 +a ||| door to ||| 0.0149701 0.229811 7.48485e-06 1.58687e-05 2.718 ||| 0-1 ||| 334 668016 +a ||| door without ||| 0.166667 0.0015466 1.49697e-06 1.86183e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| doors of ||| 0.0196078 0.0188479 1.49697e-06 3.51984e-07 2.718 ||| 0-1 ||| 51 668016 +a ||| doors open to ||| 0.333333 0.229811 1.49697e-06 6.71977e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| doors to ||| 0.010101 0.229811 1.49697e-06 4.16859e-06 2.718 ||| 0-1 ||| 99 668016 +a ||| doubt about all ||| 1 0.0526361 1.49697e-06 2.17648e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| doubt about ||| 0.0037037 0.0526361 1.49697e-06 4.60592e-07 2.718 ||| 0-1 ||| 270 668016 +a ||| doubt as to ||| 0.01 0.229811 1.49697e-06 3.2672e-07 2.718 ||| 0-2 ||| 100 668016 +a ||| doubt that humanitarian aid for Gaza must ||| 1 0.0683377 1.49697e-06 3.44909e-25 2.718 ||| 0-4 ||| 1 668016 +a ||| doubt that humanitarian aid for Gaza ||| 1 0.0683377 1.49697e-06 2.23156e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| doubt that humanitarian aid for ||| 1 0.0683377 1.49697e-06 7.69502e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| doubt that ||| 0.00075815 0.0008521 1.49697e-06 6.23988e-08 2.718 ||| 0-1 ||| 1319 668016 +a ||| down , in other words let us ||| 1 0.0587624 1.49697e-06 1.72384e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| down , in other words let ||| 1 0.0587624 1.49697e-06 5.98099e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| down , in other words ||| 1 0.0587624 1.49697e-06 1.46449e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| down , in other ||| 1 0.0587624 1.49697e-06 6.48005e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| down , in ||| 0.5 0.0587624 1.49697e-06 5.00197e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| down , ||| 0.00934579 0.0226513 2.99394e-06 4.35399e-05 2.718 ||| 0-0 ||| 214 668016 +a ||| down a considerable amount around it ||| 1 0.0931303 1.49697e-06 5.44938e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| down a considerable amount around ||| 1 0.0931303 1.49697e-06 3.06434e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| down a ||| 0.00884956 0.0226513 1.49697e-06 1.61833e-05 2.718 ||| 0-0 ||| 113 668016 +a ||| down and ||| 0.00694444 0.0121193 1.49697e-06 7.0446e-07 2.718 ||| 0-0 0-1 ||| 144 668016 +a ||| down at the same table ||| 1 0.204175 1.49697e-06 7.9466e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| down at the same ||| 1 0.204175 1.49697e-06 1.1738e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| down at the ||| 0.0909091 0.204175 1.49697e-06 1.45868e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| down at ||| 0.1 0.204175 2.99394e-06 2.37601e-05 2.718 ||| 0-1 ||| 20 668016 +a ||| down by means ||| 0.2 0.0337966 1.49697e-06 3.63973e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| down by transport mode ||| 1 0.0337966 1.49697e-06 2.54138e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| down by transport ||| 1 0.0337966 1.49697e-06 5.91018e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| down by ||| 0.0188679 0.0337966 4.49091e-06 5.74362e-06 2.718 ||| 0-1 ||| 159 668016 +a ||| down for holding ||| 0.5 0.0683377 1.49697e-06 1.54601e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| down for ||| 0.0526316 0.0683377 4.49091e-06 2.57239e-05 2.718 ||| 0-1 ||| 57 668016 +a ||| down from ||| 0.025 0.0435582 1.49697e-06 5.02548e-06 2.718 ||| 0-1 ||| 40 668016 +a ||| down here ||| 0.0909091 0.0182742 1.49697e-06 6.00226e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| down in the ||| 0.00684932 0.0587624 1.49697e-06 2.57499e-06 2.718 ||| 0-1 ||| 146 668016 +a ||| down in ||| 0.0457746 0.0587624 1.94606e-05 4.19436e-05 2.718 ||| 0-1 ||| 284 668016 +a ||| down into ||| 0.105263 0.107578 2.99394e-06 4.24047e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| down long ||| 0.5 0.0226513 1.49697e-06 1.23513e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| down on the ||| 0.0222222 0.0782999 1.49697e-06 1.62583e-06 2.718 ||| 0-1 ||| 45 668016 +a ||| down on ||| 0.0145985 0.0782999 2.99394e-06 2.64828e-05 2.718 ||| 0-1 ||| 137 668016 +a ||| down so ||| 0.125 0.0226513 1.49697e-06 8.28667e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| down the euro area with ||| 1 0.0571592 1.49697e-06 1.74428e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| down the road of ||| 0.0645161 0.0188479 2.99394e-06 1.13076e-10 2.718 ||| 0-3 ||| 31 668016 +a ||| down the throats of ||| 0.5 0.0188479 1.49697e-06 5.95802e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| down the throats ||| 0.5 0.0226513 1.49697e-06 1.05346e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| down the ||| 0.00505051 0.0226513 4.49091e-06 2.24141e-05 2.718 ||| 0-0 ||| 594 668016 +a ||| down there to ||| 1 0.229811 1.49697e-06 7.49605e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| down there ||| 0.0344828 0.0226513 1.49697e-06 1.11914e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| down through ||| 0.05 0.230708 1.49697e-06 5.54927e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| down to Community-level ||| 1 0.229811 1.49697e-06 9.78182e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| down to sustained ||| 1 0.229811 1.49697e-06 2.10309e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| down to the fact ||| 0.0769231 0.229811 1.49697e-06 4.39778e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| down to the southernmost tip of Europe ||| 0.5 0.229811 1.49697e-06 2.97348e-22 2.718 ||| 0-1 ||| 2 668016 +a ||| down to the southernmost tip of ||| 0.5 0.229811 1.49697e-06 5.87644e-19 2.718 ||| 0-1 ||| 2 668016 +a ||| down to the southernmost tip ||| 0.5 0.229811 1.49697e-06 1.08094e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| down to the southernmost ||| 0.5 0.229811 1.49697e-06 6.00524e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| down to the ||| 0.0100503 0.229811 2.99394e-06 1.50131e-05 2.718 ||| 0-1 ||| 199 668016 +a ||| down to ||| 0.123328 0.229811 0.000124249 0.000244546 2.718 ||| 0-1 ||| 673 668016 +a ||| down ||| 0.027442 0.0226513 0.000125745 0.0003651 2.718 ||| 0-0 ||| 3061 668016 +a ||| downstream at ||| 0.5 0.204175 1.49697e-06 1.08913e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| draft of ||| 0.00793651 0.0188479 1.49697e-06 1.55287e-06 2.718 ||| 0-1 ||| 126 668016 +a ||| draft report to ||| 0.111111 0.229811 1.49697e-06 7.5384e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| drafted in such ||| 0.5 0.0587624 1.49697e-06 3.49296e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| drafted in ||| 0.0103093 0.0587624 1.49697e-06 1.68832e-06 2.718 ||| 0-1 ||| 97 668016 +a ||| drafting decisions on behalf ||| 1 0.0782999 1.49697e-06 1.3644e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| drafting decisions on ||| 1 0.0782999 1.49697e-06 4.28384e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| draftsman of the opinion of the Committee ||| 0.00344828 0.0188479 2.99394e-06 6.3774e-18 2.718 ||| 0-1 ||| 580 668016 +a ||| draftsman of the opinion of the ||| 0.00330033 0.0188479 2.99394e-06 4.17916e-14 2.718 ||| 0-1 ||| 606 668016 +a ||| draftsman of the opinion of ||| 0.00493421 0.0188479 4.49091e-06 6.80736e-13 2.718 ||| 0-1 ||| 608 668016 +a ||| draftsman of the opinion ||| 0.00294985 0.0188479 2.99394e-06 1.25218e-11 2.718 ||| 0-1 ||| 678 668016 +a ||| draftsman of the ||| 0.00289855 0.0188479 2.99394e-06 5.10262e-08 2.718 ||| 0-1 ||| 690 668016 +a ||| draftsman of ||| 0.00271003 0.0188479 2.99394e-06 8.31156e-07 2.718 ||| 0-1 ||| 738 668016 +a ||| draftspeople for ||| 1 0.0683377 1.49697e-06 1.47394e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| drag ourselves down to ||| 0.333333 0.229811 1.49697e-06 4.51182e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| dragged in left , ||| 0.333333 0.0587624 1.49697e-06 6.76746e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| dragged in left ||| 0.333333 0.0587624 1.49697e-06 5.67479e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| dragged in ||| 0.125 0.0587624 1.49697e-06 3.00412e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| dragged on ||| 0.142857 0.0782999 2.99394e-06 1.89678e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| drain on ||| 0.025 0.0782999 1.49697e-06 1.51742e-07 2.718 ||| 0-1 ||| 40 668016 +a ||| dramatic effect on ||| 0.166667 0.0782999 1.49697e-06 9.61804e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| draw a line under ||| 0.0384615 0.0384416 1.49697e-06 2.19152e-12 2.718 ||| 0-3 ||| 26 668016 +a ||| draw at ||| 0.5 0.204175 1.49697e-06 4.02979e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| draw attention , in ||| 0.333333 0.0587624 1.49697e-06 2.21674e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| draw attention to ||| 0.00399202 0.229811 2.99394e-06 1.08376e-08 2.718 ||| 0-2 ||| 501 668016 +a ||| draw closer to ||| 0.04 0.229811 1.49697e-06 8.83433e-09 2.718 ||| 0-2 ||| 25 668016 +a ||| draw from ||| 0.0107527 0.0435582 1.49697e-06 8.52338e-07 2.718 ||| 0-1 ||| 93 668016 +a ||| draw not only on ||| 1 0.0782999 1.49697e-06 1.7069e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| draw on it ||| 0.5 0.0782999 1.49697e-06 7.98746e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| draw on ||| 0.0112994 0.0782999 2.99394e-06 4.49158e-06 2.718 ||| 0-1 ||| 177 668016 +a ||| draw the ||| 0.00348432 0.0004654 1.49697e-06 1.81448e-07 2.718 ||| 0-1 ||| 287 668016 +a ||| draw up ||| 0.000603865 0.0195077 1.49697e-06 1.45348e-07 2.718 ||| 0-1 ||| 1656 668016 +a ||| draw your attention to ||| 0.00342466 0.229811 1.49697e-06 2.77334e-12 2.718 ||| 0-3 ||| 292 668016 +a ||| drawing on ||| 0.0267857 0.0782999 4.49091e-06 1.8854e-06 2.718 ||| 0-1 ||| 112 668016 +a ||| drawn attention to ||| 0.0153846 0.229811 2.99394e-06 1.3007e-08 2.718 ||| 0-2 ||| 130 668016 +a ||| drawn by ||| 0.0208333 0.0337966 1.49697e-06 1.16913e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| drawn from Spain ||| 1 0.0435582 1.49697e-06 1.65718e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| drawn from ||| 0.00478469 0.0435582 1.49697e-06 1.02295e-06 2.718 ||| 0-1 ||| 209 668016 +a ||| drawn into ||| 0.0625 0.107578 4.49091e-06 8.63158e-07 2.718 ||| 0-1 ||| 48 668016 +a ||| drawn on ||| 0.0294118 0.0782999 1.49697e-06 5.39065e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| drawn to ||| 0.0533333 0.229811 5.98788e-06 4.97779e-05 2.718 ||| 0-1 ||| 75 668016 +a ||| drawn up in a ||| 0.0833333 0.0587624 1.49697e-06 1.29067e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| drawn up in ||| 0.0134228 0.0587624 2.99394e-06 2.91179e-08 2.718 ||| 0-2 ||| 149 668016 +a ||| drawn up on a ||| 0.25 0.0782999 1.49697e-06 8.14921e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| drawn up on ||| 0.0266667 0.0782999 2.99394e-06 1.83848e-08 2.718 ||| 0-2 ||| 75 668016 +a ||| drawn up ||| 0.00047619 0.0195077 1.49697e-06 1.74442e-07 2.718 ||| 0-1 ||| 2100 668016 +a ||| drew lots to ||| 0.5 0.229811 1.49697e-06 1.08453e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| drift ||| 0.00502513 0.0669975 1.49697e-06 2.46e-05 2.718 ||| 0-0 ||| 199 668016 +a ||| drive out ||| 0.05 0.0526723 1.49697e-06 2.37868e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| drive simple house ||| 0.25 0.0526723 1.49697e-06 5.79468e-14 2.718 ||| 0-0 ||| 4 668016 +a ||| drive simple ||| 0.25 0.0526723 1.49697e-06 2.68272e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| drive some of them out of ||| 0.5 0.0188479 1.49697e-06 5.43513e-16 2.718 ||| 0-5 ||| 2 668016 +a ||| drive through ||| 0.05 0.230708 1.49697e-06 2.40063e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| drive to ||| 0.0322581 0.229811 2.99394e-06 1.05791e-05 2.718 ||| 0-1 ||| 62 668016 +a ||| drive ||| 0.0114583 0.0526723 1.64667e-05 6.21e-05 2.718 ||| 0-0 ||| 960 668016 +a ||| driven at ||| 0.2 0.204175 1.49697e-06 1.00404e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| driven by ||| 0.00395257 0.0337966 1.49697e-06 2.42711e-07 2.718 ||| 0-1 ||| 253 668016 +a ||| driven through the House at ||| 1 0.204175 1.49697e-06 7.09607e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| driven to ||| 0.0526316 0.229811 1.49697e-06 1.03339e-05 2.718 ||| 0-1 ||| 19 668016 +a ||| driven ||| 0.010772 0.0335498 8.98182e-06 2.83e-05 2.718 ||| 0-0 ||| 557 668016 +a ||| driver for ||| 0.0714286 0.0683377 1.49697e-06 2.65309e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| driving back to ||| 0.5 0.229811 1.49697e-06 7.79879e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| driving force behind ||| 0.0104167 0.0923313 2.99394e-06 4.34014e-12 2.718 ||| 0-2 ||| 192 668016 +a ||| driving on to ||| 1 0.0782999 1.49697e-06 1.11576e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| driving on ||| 0.0666667 0.0782999 1.49697e-06 1.25567e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| driving under ||| 0.0526316 0.0384416 1.49697e-06 4.6949e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| drop in the ||| 0.00724638 0.0587624 1.49697e-06 5.82795e-08 2.718 ||| 0-1 ||| 138 668016 +a ||| drop in ||| 0.00673401 0.0587624 2.99394e-06 9.49304e-07 2.718 ||| 0-1 ||| 297 668016 +a ||| dropped and so ||| 1 0.0015873 1.49697e-06 5.03629e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| dropped and ||| 0.333333 0.0015873 1.49697e-06 2.21893e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| dropped to ||| 0.0416667 0.229811 1.49697e-06 4.02847e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| drove out ||| 1 0.191667 1.49697e-06 8.04384e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| drove their ||| 0.333333 0.191667 1.49697e-06 2.43411e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| drove ||| 0.0377358 0.191667 2.99394e-06 2.1e-05 2.718 ||| 0-0 ||| 53 668016 +a ||| drug ||| 0.00285714 0.0031746 4.49091e-06 9.1e-06 2.718 ||| 0-0 ||| 1050 668016 +a ||| drunk in ||| 0.166667 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| due for ||| 0.030303 0.0683377 1.49697e-06 1.01849e-05 2.718 ||| 0-1 ||| 33 668016 +a ||| due here both to ||| 1 0.229811 1.49697e-06 3.25235e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| due in ||| 0.020202 0.0587624 2.99394e-06 1.66068e-05 2.718 ||| 0-1 ||| 99 668016 +a ||| due recognition to ||| 0.333333 0.229811 1.49697e-06 2.72074e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| due respect to ||| 0.0208333 0.229811 2.99394e-06 4.18858e-08 2.718 ||| 0-2 ||| 96 668016 +a ||| due to a heavy ||| 0.5 0.229811 1.49697e-06 7.55352e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| due to a ||| 0.00306748 0.229811 1.49697e-06 4.29177e-06 2.718 ||| 0-1 ||| 326 668016 +a ||| due to be named ||| 1 0.229811 1.49697e-06 1.38623e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| due to be ||| 0.00740741 0.229811 1.49697e-06 1.75472e-06 2.718 ||| 0-1 ||| 135 668016 +a ||| due to errors ||| 0.166667 0.229811 1.49697e-06 4.84117e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| due to lack of ||| 0.02 0.229811 1.49697e-06 6.40067e-10 2.718 ||| 0-1 ||| 50 668016 +a ||| due to lack ||| 0.0196078 0.229811 1.49697e-06 1.17737e-08 2.718 ||| 0-1 ||| 51 668016 +a ||| due to take place at ||| 0.333333 0.204175 1.49697e-06 2.02548e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| due to take ||| 0.0123457 0.229811 1.49697e-06 1.55886e-07 2.718 ||| 0-1 ||| 81 668016 +a ||| due to the fact ||| 0.0126183 0.229811 5.98788e-06 1.74122e-08 2.718 ||| 0-1 ||| 317 668016 +a ||| due to the specialised centres where financial ||| 1 0.115665 1.49697e-06 9.9121e-26 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| due to the specialised centres where ||| 1 0.115665 1.49697e-06 8.12467e-22 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| due to the specialised centres ||| 1 0.115665 1.49697e-06 2.68141e-18 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| due to the specialised ||| 1 0.115665 1.49697e-06 2.19788e-13 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| due to the ||| 0.00219394 0.229811 7.48485e-06 5.94416e-06 2.718 ||| 0-1 ||| 2279 668016 +a ||| due to visit ||| 0.142857 0.229811 1.49697e-06 2.85629e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| due to ||| 0.0140619 0.229811 0.000118261 9.68234e-05 2.718 ||| 0-1 ||| 5618 668016 +a ||| due too to ||| 1 0.229811 1.49697e-06 1.31777e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| due ||| 0.000477327 0.001519 5.98788e-06 1.46e-05 2.718 ||| 0-0 ||| 8380 668016 +a ||| dues to ||| 0.125 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| duly inform ||| 0.333333 0.130026 1.49697e-06 4.49496e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| dumping it on ||| 0.5 0.0782999 2.99394e-06 7.01601e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| dumps it on the ||| 0.5 0.0782999 1.49697e-06 1.65664e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| dumps it on ||| 0.5 0.0782999 1.49697e-06 2.69847e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| duped into ||| 0.142857 0.107578 1.49697e-06 8.50402e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| during examination ||| 0.333333 0.0054313 1.49697e-06 1.27547e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| during the course of ||| 0.00393701 0.0188479 1.49697e-06 2.30942e-10 2.718 ||| 0-3 ||| 254 668016 +a ||| during the current revision of the Treaty ||| 1 0.0188479 1.49697e-06 1.823e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| during the current revision of the ||| 1 0.0188479 1.49697e-06 2.12967e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| during the current revision of ||| 1 0.0188479 1.49697e-06 3.46898e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| during the transitional period ||| 0.02 0.0054313 1.49697e-06 5.78474e-15 2.718 ||| 0-0 ||| 50 668016 +a ||| during the transitional ||| 1 0.0054313 1.49697e-06 3.31503e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| during the ||| 0.000256498 0.0054313 4.49091e-06 5.71558e-06 2.718 ||| 0-0 ||| 11696 668016 +a ||| during their lifetime ||| 0.0555556 0.0054313 2.99394e-06 2.69781e-13 2.718 ||| 0-0 ||| 36 668016 +a ||| during their ||| 0.00746269 0.0054313 2.99394e-06 1.07912e-07 2.718 ||| 0-0 ||| 268 668016 +a ||| during voting time , which now begins ||| 1 0.075849 1.49697e-06 2.28224e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| during voting time , which now ||| 1 0.075849 1.49697e-06 2.65377e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| during voting time , which ||| 0.333333 0.075849 1.49697e-06 1.2883e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| during voting time , ||| 0.2 0.075849 1.49697e-06 1.51661e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| during voting time ||| 0.0357143 0.075849 1.49697e-06 1.27174e-10 2.718 ||| 0-1 ||| 28 668016 +a ||| during voting ||| 0.0243902 0.075849 1.49697e-06 7.74648e-08 2.718 ||| 0-1 ||| 41 668016 +a ||| during which it was allowed ||| 1 0.0054313 1.49697e-06 7.13362e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| during which it was ||| 0.142857 0.0054313 1.49697e-06 4.40619e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| during which it ||| 0.2 0.0054313 1.49697e-06 1.40638e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| during which ||| 0.00251889 0.0054313 1.49697e-06 7.90847e-07 2.718 ||| 0-0 ||| 397 668016 +a ||| during ||| 0.00307136 0.0054313 0.000101794 9.31e-05 2.718 ||| 0-0 ||| 22140 668016 +a ||| duties with ||| 0.0625 0.0571592 1.49697e-06 3.4225e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| duty , of ||| 0.333333 0.0188479 1.49697e-06 2.62789e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| duty - a shared duty , of ||| 1 0.0188479 1.49697e-06 8.83828e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| duty bound to ||| 0.0172414 0.229811 1.49697e-06 1.34402e-09 2.718 ||| 0-2 ||| 58 668016 +a ||| duty falls to ||| 1 0.229811 1.49697e-06 8.16851e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| duty of ||| 0.00446429 0.0188479 2.99394e-06 2.2036e-06 2.718 ||| 0-1 ||| 448 668016 +a ||| duty on ||| 0.0266667 0.0782999 2.99394e-06 2.8262e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| duty to be paid by ||| 1 0.229811 1.49697e-06 3.34225e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| duty to be paid ||| 1 0.229811 1.49697e-06 6.36607e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| duty to be ||| 0.0285714 0.229811 1.49697e-06 4.72962e-07 2.718 ||| 0-1 ||| 35 668016 +a ||| duty to take ||| 0.0192308 0.229811 1.49697e-06 4.20169e-08 2.718 ||| 0-1 ||| 52 668016 +a ||| duty to ||| 0.0071475 0.229811 1.64667e-05 2.60975e-05 2.718 ||| 0-1 ||| 1539 668016 +a ||| duty were to obey ||| 1 0.229811 1.49697e-06 1.16878e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| duty were to ||| 1 0.229811 1.49697e-06 4.6751e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| duty-bound to hand ||| 1 0.229811 1.49697e-06 9.72507e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| duty-bound to ||| 0.0204082 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 49 668016 +a ||| dwindle away ||| 0.5 0.0377856 1.49697e-06 1.6485e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| dynamic ||| 0.000545554 0.000578 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1833 668016 +a ||| e-mail address , ||| 0.142857 0.0257046 1.49697e-06 2.35862e-11 2.718 ||| 0-1 ||| 7 668016 +a ||| e-mail address ||| 0.0526316 0.0257046 1.49697e-06 1.9778e-10 2.718 ||| 0-1 ||| 19 668016 +a ||| each Member State to have ||| 0.25 0.229811 1.49697e-06 7.28405e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| each Member State to ||| 0.00649351 0.229811 1.49697e-06 6.09045e-12 2.718 ||| 0-3 ||| 154 668016 +a ||| each complying with ||| 1 0.0571592 1.49697e-06 2.34316e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| each country on ||| 0.0588235 0.0782999 1.49697e-06 3.8324e-09 2.718 ||| 0-2 ||| 17 668016 +a ||| each nation alone , to ||| 1 0.229811 1.49697e-06 1.68436e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| each of ||| 0.00401837 0.0188479 1.04788e-05 8.30268e-06 2.718 ||| 0-1 ||| 1742 668016 +a ||| each other at ||| 0.142857 0.204175 2.99394e-06 1.23769e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| each other in ||| 0.0283019 0.0587624 4.49091e-06 2.18488e-08 2.718 ||| 0-2 ||| 106 668016 +a ||| each other ||| 0.000566251 0.0001099 1.49697e-06 2.3319e-09 2.718 ||| 0-0 ||| 1766 668016 +a ||| each person in France ||| 1 0.0587624 1.49697e-06 4.99613e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| each person in ||| 0.166667 0.0587624 1.49697e-06 2.17223e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| each to ||| 0.111111 0.229811 1.49697e-06 9.83297e-05 2.718 ||| 0-1 ||| 9 668016 +a ||| each with ||| 0.025641 0.0571592 1.49697e-06 4.68631e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| each ||| 7.25426e-05 0.0001099 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 13785 668016 +a ||| eager to ||| 0.00990099 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-1 ||| 101 668016 +a ||| ear of ||| 0.0769231 0.0188479 1.49697e-06 2.01134e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| ear to ground with respect to ||| 1 0.229811 1.49697e-06 6.85058e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| earlier , this ||| 0.0526316 0.031057 1.49697e-06 1.20283e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| earlier , ||| 0.00128866 0.031057 1.49697e-06 1.86157e-05 2.718 ||| 0-0 ||| 776 668016 +a ||| earlier on ||| 0.00675676 0.0782999 1.49697e-06 2.6479e-06 2.718 ||| 0-1 ||| 148 668016 +a ||| earlier ||| 0.00282057 0.031057 1.94606e-05 0.0001561 2.718 ||| 0-0 ||| 4609 668016 +a ||| early as at the ||| 0.25 0.204175 1.49697e-06 1.4435e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| early as at ||| 0.125 0.204175 1.49697e-06 2.35129e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| early as ||| 0.00526316 0.0243476 1.49697e-06 5.93891e-07 2.718 ||| 0-1 ||| 190 668016 +a ||| early on as ||| 0.25 0.0782999 1.49697e-06 2.62073e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| early on ||| 0.00970874 0.0782999 1.49697e-06 2.56824e-06 2.718 ||| 0-1 ||| 103 668016 +a ||| early ||| 0.00185787 0.0470713 1.19758e-05 0.0002428 2.718 ||| 0-0 ||| 4306 668016 +a ||| earmarked for research into ||| 1 0.107578 1.49697e-06 2.63641e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| earmarked for ||| 0.0129032 0.0683377 8.98182e-06 3.83224e-07 2.718 ||| 0-1 ||| 465 668016 +a ||| earmarked ||| 0.0018622 0.0133333 1.49697e-06 1.1e-05 2.718 ||| 0-0 ||| 537 668016 +a ||| ears of ||| 0.030303 0.0188479 1.49697e-06 3.51984e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| earth to ||| 0.0714286 0.229811 1.49697e-06 5.04434e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| earthquake in ||| 0.00763359 0.0587624 1.49697e-06 1.32181e-07 2.718 ||| 0-1 ||| 131 668016 +a ||| eased by ||| 0.0625 0.0337966 1.49697e-06 9.05025e-09 2.718 ||| 0-1 ||| 16 668016 +a ||| easier for ||| 0.0221519 0.0683377 1.04788e-05 2.57203e-06 2.718 ||| 0-1 ||| 316 668016 +a ||| easier to achieve but less effective ||| 1 0.229811 1.49697e-06 4.25657e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| easier to achieve but less ||| 1 0.229811 1.49697e-06 6.49858e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| easier to achieve but ||| 1 0.229811 1.49697e-06 3.8182e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| easier to achieve ||| 0.0434783 0.229811 1.49697e-06 5.58707e-09 2.718 ||| 0-1 ||| 23 668016 +a ||| easier to engage ||| 0.5 0.229811 1.49697e-06 1.18832e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| easier to ||| 0.00686106 0.229811 5.98788e-06 2.44511e-05 2.718 ||| 0-1 ||| 583 668016 +a ||| easily to ||| 0.0454545 0.229811 1.49697e-06 1.41172e-05 2.718 ||| 0-1 ||| 22 668016 +a ||| easy to ||| 0.00308325 0.229811 4.49091e-06 1.32414e-05 2.718 ||| 0-1 ||| 973 668016 +a ||| economic support from Europe , ||| 1 0.0435582 1.49697e-06 1.80155e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| economic support from Europe ||| 1 0.0435582 1.49697e-06 1.51067e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| economic support from ||| 0.333333 0.0435582 1.49697e-06 2.98552e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| economies and to ||| 0.2 0.229811 1.49697e-06 4.91438e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| economy close to ||| 1 0.229811 1.49697e-06 2.71178e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| economy in the ||| 0.0125 0.0587624 1.49697e-06 1.92544e-07 2.718 ||| 0-1 ||| 80 668016 +a ||| economy in ||| 0.00438596 0.0587624 1.49697e-06 3.13631e-06 2.718 ||| 0-1 ||| 228 668016 +a ||| economy will rally ||| 0.5 0.0561595 1.49697e-06 1.61737e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| economy will ||| 0.0357143 0.0561595 1.49697e-06 7.35169e-07 2.718 ||| 0-1 ||| 28 668016 +a ||| economy with ||| 0.0322581 0.0571592 1.49697e-06 8.71484e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| edge over ||| 0.5 0.0682544 1.49697e-06 1.99769e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| educate the people ||| 0.5 0.249147 1.49697e-06 3.59887e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| educate the ||| 0.0625 0.249147 1.49697e-06 4.08869e-06 2.718 ||| 0-0 ||| 16 668016 +a ||| educate ||| 0.0105263 0.249147 2.99394e-06 6.66e-05 2.718 ||| 0-0 ||| 190 668016 +a ||| educating ||| 0.0052356 0.186441 1.49697e-06 5.02e-05 2.718 ||| 0-0 ||| 191 668016 +a ||| education , to ||| 0.0434783 0.229811 1.49697e-06 1.412e-06 2.718 ||| 0-2 ||| 23 668016 +a ||| education at ||| 0.0232558 0.204175 1.49697e-06 1.1504e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| education in the Member States conform to ||| 1 0.229811 1.49697e-06 5.35628e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| effect - on ||| 1 0.0782999 1.49697e-06 4.77371e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| effect in ||| 0.011976 0.0587624 2.99394e-06 2.00435e-05 2.718 ||| 0-1 ||| 167 668016 +a ||| effect of making ||| 0.181818 0.0188479 2.99394e-06 3.79598e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| effect of this kind of system is ||| 1 0.0188479 1.49697e-06 1.4785e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| effect of this kind of system ||| 1 0.0188479 1.49697e-06 4.71746e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| effect of this kind of ||| 1 0.0188479 1.49697e-06 1.69145e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| effect of this kind ||| 1 0.0188479 1.49697e-06 3.11135e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| effect of this ||| 0.0140845 0.0188479 1.49697e-06 6.37571e-08 2.718 ||| 0-1 ||| 71 668016 +a ||| effect of working ||| 1 0.0188479 1.49697e-06 1.87875e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| effect of ||| 0.00948509 0.0188479 1.04788e-05 9.86739e-06 2.718 ||| 0-1 ||| 738 668016 +a ||| effect on ||| 0.02589 0.0782999 2.39515e-05 1.26553e-05 2.718 ||| 0-1 ||| 618 668016 +a ||| effect to ||| 0.0441176 0.229811 4.49091e-06 0.000116861 2.718 ||| 0-1 ||| 68 668016 +a ||| effectively : people went to Galicia and ||| 1 0.0007376 1.49697e-06 2.91511e-25 2.718 ||| 0-1 ||| 1 668016 +a ||| effectively : people went to Galicia ||| 1 0.0007376 1.49697e-06 2.32726e-23 2.718 ||| 0-1 ||| 1 668016 +a ||| effectively : people went to ||| 1 0.0007376 1.49697e-06 1.66233e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| effectively : people went ||| 1 0.0007376 1.49697e-06 1.87077e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| effectively : people ||| 1 0.0007376 1.49697e-06 2.93684e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| effectively : ||| 0.111111 0.0007376 1.49697e-06 3.33656e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| effectively and more quickly to ||| 1 0.229811 1.49697e-06 3.25013e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| effectively to ||| 0.00754717 0.229811 2.99394e-06 2.50816e-05 2.718 ||| 0-1 ||| 265 668016 +a ||| efficiency in ||| 0.00303951 0.0587624 1.49697e-06 8.41155e-07 2.718 ||| 0-1 ||| 329 668016 +a ||| efficiency of the rules , the risk ||| 1 0.0188479 1.49697e-06 2.53042e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| efficiency of the rules , the ||| 1 0.0188479 1.49697e-06 2.16275e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| efficiency of the rules , ||| 1 0.0188479 1.49697e-06 3.52287e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| efficiency of the rules ||| 1 0.0188479 1.49697e-06 2.95407e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| efficiency of the ||| 0.00352113 0.0188479 1.49697e-06 2.54223e-08 2.718 ||| 0-1 ||| 284 668016 +a ||| efficiency of ||| 0.00150602 0.0188479 1.49697e-06 4.14099e-07 2.718 ||| 0-1 ||| 664 668016 +a ||| efficiency to ||| 0.0357143 0.229811 1.49697e-06 4.90422e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| effort and dare ||| 1 0.188525 1.49697e-06 2.09404e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| effort in ||| 0.00588235 0.0587624 1.49697e-06 5.3173e-06 2.718 ||| 0-1 ||| 170 668016 +a ||| effort into ||| 0.0188679 0.107578 2.99394e-06 5.37576e-07 2.718 ||| 0-1 ||| 106 668016 +a ||| effort on ||| 0.0266667 0.0782999 2.99394e-06 3.3573e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| effort over this item , to the ||| 1 0.229811 1.49697e-06 2.66923e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| effort over this item , to ||| 1 0.229811 1.49697e-06 4.34786e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| effort to express solidarity ||| 1 0.229811 1.49697e-06 8.27575e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| effort to express ||| 0.5 0.229811 1.49697e-06 3.14667e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| effort to help ||| 0.0454545 0.229811 1.49697e-06 5.91202e-09 2.718 ||| 0-1 ||| 22 668016 +a ||| effort to make contact ||| 0.5 0.229811 1.49697e-06 1.02901e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| effort to make ||| 0.0322581 0.229811 1.49697e-06 5.38747e-08 2.718 ||| 0-1 ||| 31 668016 +a ||| effort to reinstate ||| 0.25 0.229811 1.49697e-06 3.41019e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| effort to see ||| 0.333333 0.229811 1.49697e-06 2.18438e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| effort to ||| 0.00705128 0.229811 1.64667e-05 3.10017e-05 2.718 ||| 0-1 ||| 1560 668016 +a ||| efforts are put into ||| 1 0.107578 1.49697e-06 1.23569e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| efforts in ||| 0.00474684 0.0587624 4.49091e-06 7.30603e-06 2.718 ||| 0-1 ||| 632 668016 +a ||| efforts into ||| 0.0175439 0.107578 1.49697e-06 7.38635e-07 2.718 ||| 0-1 ||| 57 668016 +a ||| efforts of ||| 0.00103093 0.0188479 1.49697e-06 3.59675e-06 2.718 ||| 0-1 ||| 970 668016 +a ||| efforts to get ||| 0.030303 0.229811 1.49697e-06 1.86233e-08 2.718 ||| 0-1 ||| 33 668016 +a ||| efforts to make ||| 0.0133333 0.229811 1.49697e-06 7.40245e-08 2.718 ||| 0-1 ||| 75 668016 +a ||| efforts to ||| 0.00429975 0.229811 2.09576e-05 4.25967e-05 2.718 ||| 0-1 ||| 3256 668016 +a ||| efforts towards ||| 0.0106383 0.155507 2.99394e-06 4.10108e-07 2.718 ||| 0-1 ||| 188 668016 +a ||| efforts which have been made on your ||| 1 0.0782999 1.49697e-06 8.38885e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| efforts which have been made on ||| 1 0.0782999 1.49697e-06 3.27818e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| either , by ||| 1 0.0337966 1.49697e-06 8.49495e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| either , to ||| 0.2 0.229811 1.49697e-06 3.61689e-05 2.718 ||| 0-2 ||| 5 668016 +a ||| either at ||| 0.0533333 0.204175 5.98788e-06 2.94678e-05 2.718 ||| 0-1 ||| 75 668016 +a ||| either by ||| 0.00543478 0.0337966 1.49697e-06 7.12337e-06 2.718 ||| 0-1 ||| 184 668016 +a ||| either for ||| 0.0214286 0.0683377 4.49091e-06 3.19034e-05 2.718 ||| 0-1 ||| 140 668016 +a ||| either from ||| 0.0147059 0.0435582 1.49697e-06 6.23272e-06 2.718 ||| 0-1 ||| 68 668016 +a ||| either getting closer to ||| 0.5 0.229811 1.49697e-06 7.50664e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| either have to ||| 0.111111 0.229811 1.49697e-06 3.6273e-06 2.718 ||| 0-2 ||| 9 668016 +a ||| either in the ||| 0.00826446 0.0587624 1.49697e-06 3.19357e-06 2.718 ||| 0-1 ||| 121 668016 +a ||| either in ||| 0.0186667 0.0587624 1.04788e-05 5.20194e-05 2.718 ||| 0-1 ||| 375 668016 +a ||| either of ||| 0.0114286 0.0188479 2.99394e-06 2.56091e-05 2.718 ||| 0-1 ||| 175 668016 +a ||| either on ||| 0.0238095 0.0782999 2.99394e-06 3.28446e-05 2.718 ||| 0-1 ||| 84 668016 +a ||| either to cover the landfill or to ||| 1 0.229811 1.49697e-06 4.28427e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| either to over ||| 1 0.229811 1.49697e-06 1.46035e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| either to ||| 0.112108 0.229811 3.74243e-05 0.000303291 2.718 ||| 0-1 ||| 223 668016 +a ||| either towards ||| 0.2 0.155507 1.49697e-06 2.92e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| either ||| 0.000217533 0.0004563 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 4597 668016 +a ||| elaborate upon ||| 0.2 0.19056 1.49697e-06 7.0974e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| elbow ||| 0.111111 0.0243902 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| elect ||| 0.00492611 0.245125 1.49697e-06 8.03e-05 2.718 ||| 0-0 ||| 203 668016 +a ||| elected by the ||| 0.00826446 0.0337966 1.49697e-06 1.12638e-08 2.718 ||| 0-1 ||| 121 668016 +a ||| elected by ||| 0.0105263 0.0337966 4.49091e-06 1.83473e-07 2.718 ||| 0-1 ||| 285 668016 +a ||| elected to play ||| 0.5 0.229811 1.49697e-06 2.01543e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| elected to power ||| 0.2 0.229811 1.49697e-06 1.16629e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| elected to ||| 0.0106952 0.229811 2.99394e-06 7.81173e-06 2.718 ||| 0-1 ||| 187 668016 +a ||| electing ||| 0.00961538 0.182692 1.49697e-06 1.73e-05 2.718 ||| 0-0 ||| 104 668016 +a ||| elections in 2009 and 2010 ; ||| 0.5 0.0587624 1.49697e-06 9.32936e-22 2.718 ||| 0-1 ||| 2 668016 +a ||| elections in 2009 and 2010 ||| 0.5 0.0587624 1.49697e-06 3.02901e-18 2.718 ||| 0-1 ||| 2 668016 +a ||| elections in 2009 and ||| 0.25 0.0587624 1.49697e-06 3.52211e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| elections in 2009 ||| 0.0909091 0.0587624 1.49697e-06 2.81186e-11 2.718 ||| 0-1 ||| 11 668016 +a ||| elections in ||| 0.00175131 0.0587624 1.49697e-06 2.16297e-06 2.718 ||| 0-1 ||| 571 668016 +a ||| elections on ||| 0.0133333 0.0782999 1.49697e-06 1.36568e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| electorate . in terms ||| 0.5 0.0587624 1.49697e-06 3.59554e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| electorate . in ||| 0.5 0.0587624 1.49697e-06 3.27582e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| element in ||| 0.00775194 0.0587624 1.49697e-06 2.61359e-06 2.718 ||| 0-1 ||| 129 668016 +a ||| element into forestry . ||| 1 0.107578 1.49697e-06 2.0009e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| element into forestry ||| 1 0.107578 1.49697e-06 6.6058e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| element into ||| 0.2 0.107578 1.49697e-06 2.64232e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| elements in ||| 0.00847458 0.0587624 1.49697e-06 2.13894e-06 2.718 ||| 0-1 ||| 118 668016 +a ||| elephant in the room , ||| 0.111111 0.0587624 1.49697e-06 1.1516e-14 2.718 ||| 0-1 ||| 9 668016 +a ||| elephant in the room ||| 0.0625 0.0587624 1.49697e-06 9.65668e-14 2.718 ||| 0-1 ||| 16 668016 +a ||| elephant in the ||| 0.0769231 0.0587624 1.49697e-06 2.582e-09 2.718 ||| 0-1 ||| 13 668016 +a ||| elephant in ||| 0.0666667 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| elevate them to ||| 0.2 0.229811 1.49697e-06 3.7586e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| eligible for ||| 0.00308642 0.0683377 1.49697e-06 3.16897e-07 2.718 ||| 0-1 ||| 324 668016 +a ||| else , to ||| 0.0909091 0.229811 1.49697e-06 4.92946e-06 2.718 ||| 0-2 ||| 11 668016 +a ||| else in ||| 0.0102041 0.0587624 1.49697e-06 7.08973e-06 2.718 ||| 0-1 ||| 98 668016 +a ||| else to stand by ||| 1 0.229811 1.49697e-06 3.57642e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| else to stand ||| 1 0.229811 1.49697e-06 6.81211e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| else to ||| 0.0133333 0.229811 1.49697e-06 4.13356e-05 2.718 ||| 0-1 ||| 75 668016 +a ||| elsewhere , as well ||| 0.166667 0.0243476 1.49697e-06 6.15406e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| elsewhere , as ||| 0.1 0.0243476 1.49697e-06 3.88122e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| elsewhere , to ||| 0.125 0.229811 1.49697e-06 1.54986e-06 2.718 ||| 0-2 ||| 8 668016 +a ||| elsewhere in the ||| 0.00421941 0.0587624 1.49697e-06 1.36846e-07 2.718 ||| 0-1 ||| 237 668016 +a ||| elsewhere in ||| 0.00331126 0.0587624 1.49697e-06 2.22906e-06 2.718 ||| 0-1 ||| 302 668016 +a ||| embark on ||| 0.00829876 0.0782999 2.99394e-06 2.99691e-07 2.718 ||| 0-1 ||| 241 668016 +a ||| embark upon ||| 0.0224719 0.19056 2.99394e-06 1.55749e-08 2.718 ||| 0-1 ||| 89 668016 +a ||| embarked upon in the ||| 0.5 0.0587624 1.49697e-06 2.18732e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| embarked upon in ||| 0.166667 0.0587624 1.49697e-06 3.56289e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| embarked with ||| 0.5 0.0571592 1.49697e-06 4.17378e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| embarking on ||| 0.0190476 0.0782999 2.99394e-06 1.63123e-07 2.718 ||| 0-1 ||| 105 668016 +a ||| embarking upon ||| 0.0344828 0.19056 1.49697e-06 8.47745e-09 2.718 ||| 0-1 ||| 29 668016 +a ||| embarrassment at having ||| 0.333333 0.204175 1.49697e-06 2.86707e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| embarrassment at ||| 0.333333 0.204175 1.49697e-06 7.48779e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| embarrassment to ||| 0.0588235 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| emerge from ||| 0.00434783 0.0435582 1.49697e-06 2.17404e-07 2.718 ||| 0-1 ||| 230 668016 +a ||| emerge on ||| 0.166667 0.0782999 1.49697e-06 1.14566e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| emerge to ||| 0.5 0.229811 1.49697e-06 1.05791e-05 2.718 ||| 0-1 ||| 2 668016 +a ||| emerge towards ||| 0.333333 0.155507 1.49697e-06 1.01853e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| emerged clearly from ||| 0.25 0.0435582 1.49697e-06 3.16621e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| emerging , on ||| 1 0.0782999 1.49697e-06 8.95752e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| emerging in ||| 0.0204082 0.0587624 1.49697e-06 1.18963e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| emissions account for ||| 1 0.0683377 1.49697e-06 1.83275e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| emissions to ||| 0.031746 0.229811 2.99394e-06 6.06022e-06 2.718 ||| 0-1 ||| 63 668016 +a ||| emitted into ||| 0.1 0.107578 1.49697e-06 6.68173e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| emitted ||| 0.0149254 0.0188679 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 67 668016 +a ||| emphasis on ||| 0.00524246 0.0782999 1.19758e-05 1.93851e-06 2.718 ||| 0-1 ||| 1526 668016 +a ||| emphasise once again ||| 0.0103093 0.0700825 1.49697e-06 1.60328e-11 2.718 ||| 0-2 ||| 97 668016 +a ||| emphasise the urgency of adopting this ||| 1 0.0188479 1.49697e-06 2.51136e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| emphasise the urgency of adopting ||| 1 0.0188479 1.49697e-06 3.88671e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| emphasise the urgency of ||| 0.5 0.0188479 1.49697e-06 7.94828e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| emphatically in ||| 0.111111 0.0587624 2.99394e-06 4.98685e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| employ more people ||| 0.125 0.243276 1.49697e-06 3.65036e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| employ more ||| 0.0588235 0.243276 1.49697e-06 4.1472e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| employ the services of ||| 1 0.131062 1.49697e-06 2.91841e-11 2.718 ||| 0-0 0-3 ||| 1 668016 +a ||| employ ||| 0.00632911 0.243276 4.49091e-06 0.0001816 2.718 ||| 0-0 ||| 474 668016 +a ||| employed by them , ||| 1 0.0337966 1.49697e-06 7.57983e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| employed by them ||| 0.142857 0.0337966 1.49697e-06 6.356e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| employed by ||| 0.013986 0.0337966 2.99394e-06 2.36952e-07 2.718 ||| 0-1 ||| 143 668016 +a ||| employed in ||| 0.00655738 0.0587624 2.99394e-06 1.73038e-06 2.718 ||| 0-1 ||| 305 668016 +a ||| employed on ||| 0.0344828 0.0782999 1.49697e-06 1.09255e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| employed to spend ||| 0.333333 0.229811 1.49697e-06 3.04678e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| employed to ||| 0.0384615 0.229811 1.49697e-06 1.00887e-05 2.718 ||| 0-1 ||| 26 668016 +a ||| employed ||| 0.000962464 0.0057803 1.49697e-06 6.4e-06 2.718 ||| 0-0 ||| 1039 668016 +a ||| employee ||| 0.00271739 0.002448 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 368 668016 +a ||| employees at the ||| 0.2 0.204175 1.49697e-06 2.86261e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| employees at ||| 0.047619 0.204175 1.49697e-06 4.66285e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| employing 22 million people - 16 per ||| 1 0.178947 1.49697e-06 9.12761e-30 2.718 ||| 0-0 ||| 1 668016 +a ||| employing 22 million people - 16 ||| 1 0.178947 1.49697e-06 2.06041e-25 2.718 ||| 0-0 ||| 1 668016 +a ||| employing 22 million people - ||| 1 0.178947 1.49697e-06 9.36549e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| employing 22 million people ||| 1 0.178947 1.49697e-06 2.48283e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| employing 22 million ||| 1 0.178947 1.49697e-06 2.82076e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| employing 22 ||| 1 0.178947 1.49697e-06 3.88e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| employing women ||| 0.2 0.178947 1.49697e-06 9.21888e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| employing ||| 0.00651466 0.178947 2.99394e-06 7.76e-05 2.718 ||| 0-0 ||| 307 668016 +a ||| employment structure as ||| 0.5 0.0243476 1.49697e-06 1.28262e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| employs ||| 0.00621118 0.313187 1.49697e-06 0.0001041 2.718 ||| 0-0 ||| 161 668016 +a ||| empowered to ||| 0.0104167 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 96 668016 +a ||| en masse , ||| 0.2 0.010582 1.49697e-06 3.0887e-13 2.718 ||| 0-0 ||| 5 668016 +a ||| en masse ||| 0.0104167 0.010582 1.49697e-06 2.59e-12 2.718 ||| 0-0 ||| 96 668016 +a ||| en route to ||| 0.0384615 0.229811 1.49697e-06 3.78326e-11 2.718 ||| 0-2 ||| 26 668016 +a ||| en ||| 0.0153061 0.010582 4.49091e-06 3.7e-06 2.718 ||| 0-0 ||| 196 668016 +a ||| enable it to ||| 0.00671141 0.229811 1.49697e-06 6.14227e-07 2.718 ||| 0-2 ||| 149 668016 +a ||| enable people to ||| 0.05 0.229811 1.49697e-06 3.04019e-08 2.718 ||| 0-2 ||| 20 668016 +a ||| enable them to ||| 0.00420168 0.229811 1.49697e-06 9.26494e-08 2.718 ||| 0-2 ||| 238 668016 +a ||| enable us to ||| 0.00865052 0.229811 7.48485e-06 9.95504e-08 2.718 ||| 0-2 ||| 578 668016 +a ||| enabled it to meet members ||| 1 0.229811 1.49697e-06 1.68715e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| enabled it to meet ||| 1 0.229811 1.49697e-06 1.14383e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| enabled it to ||| 0.0909091 0.229811 1.49697e-06 9.40652e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| enabled to take ||| 0.166667 0.229811 1.49697e-06 8.51618e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| enabled to ||| 0.030303 0.229811 2.99394e-06 5.28955e-06 2.718 ||| 0-1 ||| 66 668016 +a ||| enables the customer to ||| 1 0.229811 1.49697e-06 1.19055e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| enabling Parliament to be ||| 1 0.229811 1.49697e-06 1.23168e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| enabling Parliament to ||| 0.0769231 0.229811 1.49697e-06 6.79627e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| enabling it ||| 0.075 0.0053457 4.49091e-06 2.4363e-07 2.718 ||| 0-0 ||| 40 668016 +a ||| enabling them ||| 0.0121951 0.0045234 1.49697e-06 7.55768e-09 2.718 ||| 0-1 ||| 82 668016 +a ||| enabling various bodies to ||| 1 0.229811 1.49697e-06 7.29422e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| enabling ||| 0.0019802 0.0053457 4.49091e-06 1.37e-05 2.718 ||| 0-0 ||| 1515 668016 +a ||| encompass the following partners : ||| 1 0.0720432 1.49697e-06 1.66979e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| encompass the following partners ||| 1 0.0720432 1.49697e-06 4.9578e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| encompass the following ||| 0.5 0.0720432 1.49697e-06 1.93664e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| encompass ||| 0.0157895 0.11811 4.49091e-06 2.74e-05 2.718 ||| 0-0 ||| 190 668016 +a ||| encourage appreciation of ||| 0.5 0.0188479 1.49697e-06 1.4804e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| encourage close cooperation in order to meet ||| 1 0.229811 1.49697e-06 2.55354e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| encourage close cooperation in order to ||| 1 0.229811 1.49697e-06 2.09995e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| encourage them to carry ||| 1 0.229811 1.49697e-06 6.63839e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| encourage them to ||| 0.0198676 0.229811 4.49091e-06 3.61765e-08 2.718 ||| 0-2 ||| 151 668016 +a ||| encourage trade ||| 0.0714286 0.0131004 1.49697e-06 6.68057e-09 2.718 ||| 0-0 ||| 14 668016 +a ||| encourage us to ||| 0.02 0.229811 1.49697e-06 3.88711e-08 2.718 ||| 0-2 ||| 50 668016 +a ||| encourage ||| 0.0024956 0.0131004 2.54485e-05 7.67e-05 2.718 ||| 0-0 ||| 6812 668016 +a ||| encouraged them to ||| 0.166667 0.229811 1.49697e-06 1.69137e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| encouraged them ||| 0.125 0.0990338 1.49697e-06 5.01877e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| encouraged ||| 0.00864937 0.0990338 1.94606e-05 0.0001871 2.718 ||| 0-0 ||| 1503 668016 +a ||| encouragement to ||| 0.0181818 0.229811 2.99394e-06 3.29284e-06 2.718 ||| 0-1 ||| 110 668016 +a ||| encourages or ||| 0.333333 0.19604 1.49697e-06 2.06594e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| encourages ||| 0.00576701 0.19604 7.48485e-06 0.0001807 2.718 ||| 0-0 ||| 867 668016 +a ||| encouraging them to break ||| 0.5 0.229811 1.49697e-06 6.50782e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| encouraging them to ||| 0.0172414 0.229811 1.49697e-06 2.23636e-08 2.718 ||| 0-2 ||| 58 668016 +a ||| encouraging ||| 0.00205761 0.0134702 1.19758e-05 3.83e-05 2.718 ||| 0-0 ||| 3888 668016 +a ||| end , in ||| 0.0769231 0.0587624 1.49697e-06 3.11754e-06 2.718 ||| 0-2 ||| 13 668016 +a ||| end , to ||| 0.0344828 0.229811 1.49697e-06 1.81764e-05 2.718 ||| 0-2 ||| 29 668016 +a ||| end after ||| 0.111111 0.0341027 1.49697e-06 3.64962e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| end at the ||| 0.0666667 0.204175 1.49697e-06 9.09139e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| end at ||| 0.030303 0.204175 1.49697e-06 1.48088e-05 2.718 ||| 0-1 ||| 33 668016 +a ||| end in favour of current ||| 0.5 0.0587624 1.49697e-06 7.5767e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| end in favour of ||| 0.25 0.0587624 1.49697e-06 4.59751e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| end in favour ||| 0.25 0.0587624 1.49697e-06 8.4569e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| end in ||| 0.0109409 0.0587624 7.48485e-06 2.61419e-05 2.718 ||| 0-1 ||| 457 668016 +a ||| end is put to ||| 1 0.229811 1.49697e-06 5.267e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| end of the year , in ||| 0.2 0.0587624 1.49697e-06 2.59496e-12 2.718 ||| 0-5 ||| 5 668016 +a ||| end of the ||| 0.000328299 0.0188479 1.49697e-06 7.90088e-07 2.718 ||| 0-1 ||| 3046 668016 +a ||| end of ||| 0.00123558 0.0188479 8.98182e-06 1.28696e-05 2.718 ||| 0-1 ||| 4856 668016 +a ||| end to ||| 0.00661241 0.229811 1.94606e-05 0.000152416 2.718 ||| 0-1 ||| 1966 668016 +a ||| end up at ||| 0.111111 0.204175 1.49697e-06 5.05054e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| end up having ||| 0.0625 0.0195077 1.49697e-06 2.04518e-10 2.718 ||| 0-1 ||| 16 668016 +a ||| end up in the ||| 0.0163934 0.0587624 1.49697e-06 5.4735e-09 2.718 ||| 0-2 ||| 61 668016 +a ||| end up in ||| 0.0174419 0.0587624 4.49091e-06 8.91569e-08 2.718 ||| 0-2 ||| 172 668016 +a ||| end up pushing ||| 1 0.102314 1.49697e-06 1.13816e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| end up with ||| 0.0258065 0.0571592 5.98788e-06 2.4774e-08 2.718 ||| 0-2 ||| 155 668016 +a ||| end up ||| 0.007034 0.0195077 8.98182e-06 5.34129e-07 2.718 ||| 0-1 ||| 853 668016 +a ||| end will want to ||| 1 0.229811 1.49697e-06 6.16438e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| end – to ||| 0.5 0.229811 1.49697e-06 5.98996e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| endeavour to spare ||| 1 0.229811 1.49697e-06 5.73163e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| endeavour to ||| 0.0045045 0.229811 2.99394e-06 5.67489e-06 2.718 ||| 0-1 ||| 444 668016 +a ||| endeavoured to generate ||| 0.25 0.229811 1.49697e-06 4.16158e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| endeavoured to ||| 0.00729927 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 137 668016 +a ||| endeavouring to reach ||| 0.25 0.206202 1.49697e-06 2.98017e-09 2.718 ||| 0-1 0-2 ||| 4 668016 +a ||| endeavouring to ||| 0.00502513 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-1 ||| 199 668016 +a ||| endeavours to ensure ||| 0.1 0.229811 1.49697e-06 1.02099e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| endeavours to ||| 0.00552486 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-1 ||| 181 668016 +a ||| ended up with ||| 0.016129 0.0571592 1.49697e-06 1.12739e-09 2.718 ||| 0-2 ||| 62 668016 +a ||| ending up in little backrooms ||| 0.5 0.0587624 1.49697e-06 1.24739e-19 2.718 ||| 0-2 ||| 2 668016 +a ||| ending up in little ||| 0.5 0.0587624 1.49697e-06 3.11846e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| ending up in ||| 0.03125 0.0587624 2.99394e-06 1.92617e-09 2.718 ||| 0-2 ||| 64 668016 +a ||| ending up with ||| 0.0294118 0.0571592 1.49697e-06 5.35223e-10 2.718 ||| 0-2 ||| 34 668016 +a ||| endorse ||| 0.000928074 0.0018564 2.99394e-06 5.5e-06 2.718 ||| 0-0 ||| 2155 668016 +a ||| endorsed by that Member State ||| 1 0.0337966 1.49697e-06 7.11505e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| endorsed by that Member ||| 1 0.0337966 1.49697e-06 5.91934e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| endorsed by that ||| 1 0.0337966 1.49697e-06 1.14872e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| endorsed by ||| 0.00327869 0.0337966 1.49697e-06 6.82883e-08 2.718 ||| 0-1 ||| 305 668016 +a ||| endowed with ||| 0.0144928 0.0571592 1.49697e-06 3.67292e-08 2.718 ||| 0-1 ||| 69 668016 +a ||| ends at ||| 0.0625 0.204175 1.49697e-06 7.96428e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| ends of ||| 0.0769231 0.0188479 1.49697e-06 6.92137e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| ends up ||| 0.00568182 0.0195077 1.49697e-06 2.87258e-08 2.718 ||| 0-1 ||| 176 668016 +a ||| enemies of freedom ||| 0.0666667 0.0188479 1.49697e-06 2.77535e-12 2.718 ||| 0-1 ||| 15 668016 +a ||| enemies of ||| 0.00943396 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-1 ||| 106 668016 +a ||| energetic steps to see ||| 0.5 0.229811 1.49697e-06 4.22313e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| energetic steps to ||| 0.5 0.229811 1.49697e-06 5.99366e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| energies to ||| 0.0227273 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| energy efficiency to ||| 0.0714286 0.229811 1.49697e-06 4.35985e-10 2.718 ||| 0-2 ||| 14 668016 +a ||| engage in ||| 0.0105882 0.0587624 1.34727e-05 2.92001e-06 2.718 ||| 0-1 ||| 850 668016 +a ||| engage with ||| 0.0121212 0.0571592 2.99394e-06 8.11382e-07 2.718 ||| 0-1 ||| 165 668016 +a ||| engaged in ||| 0.00534759 0.0587624 7.48485e-06 2.46338e-06 2.718 ||| 0-1 ||| 935 668016 +a ||| engaging in ||| 0.00446429 0.0587624 1.49697e-06 7.99097e-07 2.718 ||| 0-1 ||| 224 668016 +a ||| engaging on ||| 0.25 0.0782999 1.49697e-06 5.04543e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| engineering or that resulting in ||| 1 0.0587624 1.49697e-06 2.25083e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| enhanced by ||| 0.0196078 0.0337966 1.49697e-06 9.79072e-08 2.718 ||| 0-1 ||| 51 668016 +a ||| enhances ||| 0.00537634 0.0165746 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 186 668016 +a ||| enhancing ||| 0.000922509 0.0011481 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1084 668016 +a ||| enjoyed by ||| 0.00917431 0.0337966 2.99394e-06 1.89232e-07 2.718 ||| 0-1 ||| 218 668016 +a ||| enjoyed with ||| 0.0555556 0.0571592 1.49697e-06 3.83987e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| enlargement of ||| 0.000794913 0.0188479 1.49697e-06 8.93271e-07 2.718 ||| 0-1 ||| 1258 668016 +a ||| enlargement to include ||| 0.0108696 0.229811 1.49697e-06 1.40067e-09 2.718 ||| 0-1 ||| 92 668016 +a ||| enlargement to ||| 0.003003 0.229811 1.49697e-06 1.05791e-05 2.718 ||| 0-1 ||| 333 668016 +a ||| enormous gratitude to ||| 1 0.229811 1.49697e-06 7.97006e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| enormous suffering amongst ||| 1 0.0156749 1.49697e-06 6.28989e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| enough of ||| 0.00621118 0.0188479 1.49697e-06 4.88637e-06 2.718 ||| 0-1 ||| 161 668016 +a ||| enough time to dedicate ||| 1 0.229811 1.49697e-06 1.04505e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| enough time to ||| 0.015873 0.229811 2.99394e-06 9.50049e-08 2.718 ||| 0-2 ||| 126 668016 +a ||| enough to compel anyone ||| 1 0.339844 1.49697e-06 5.58295e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| enough to compel ||| 1 0.339844 1.49697e-06 1.16554e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| enough to confirm ||| 1 0.229811 1.49697e-06 1.0648e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| enough to remove ||| 0.333333 0.229811 1.49697e-06 1.10531e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| enough to ||| 0.0121269 0.229811 1.94606e-05 5.78698e-05 2.718 ||| 0-1 ||| 1072 668016 +a ||| enshrined in ||| 0.00126743 0.0587624 1.49697e-06 8.89221e-07 2.718 ||| 0-1 ||| 789 668016 +a ||| ensure as ||| 0.05 0.0243476 1.49697e-06 3.93354e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| ensure back at ||| 0.5 0.204175 1.49697e-06 1.02649e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| ensure that an end is put to ||| 1 0.229811 1.49697e-06 1.76579e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| ensure that the referendum takes place at ||| 1 0.204175 1.49697e-06 3.30976e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| ensure ||| 3.44436e-05 6.48e-05 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 29033 668016 +a ||| ensured in ||| 0.05 0.0587624 1.49697e-06 8.65188e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| ensuring that there is ||| 0.0175439 0.0005768 1.49697e-06 4.52723e-12 2.718 ||| 0-2 ||| 57 668016 +a ||| ensuring that there ||| 0.025641 0.0005768 1.49697e-06 1.4445e-10 2.718 ||| 0-2 ||| 39 668016 +a ||| enter into a conflict with China now ||| 1 0.107578 1.49697e-06 1.91754e-22 2.718 ||| 0-1 ||| 1 668016 +a ||| enter into a conflict with China ||| 1 0.107578 1.49697e-06 9.3089e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| enter into a conflict with ||| 1 0.107578 1.49697e-06 3.5395e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| enter into a conflict ||| 1 0.107578 1.49697e-06 5.53523e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| enter into a ||| 0.00671141 0.107578 1.49697e-06 1.32739e-08 2.718 ||| 0-1 ||| 149 668016 +a ||| enter into force ||| 0.00206612 0.107578 1.49697e-06 5.09686e-11 2.718 ||| 0-1 ||| 484 668016 +a ||| enter into ||| 0.00758853 0.107578 1.34727e-05 2.99463e-07 2.718 ||| 0-1 ||| 1186 668016 +a ||| enter ||| 0.000588235 0.0005408 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 1700 668016 +a ||| entered by ||| 0.2 0.0337966 1.49697e-06 2.6328e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| entered into force ||| 0.00213675 0.107578 1.49697e-06 3.30831e-11 2.718 ||| 0-1 ||| 468 668016 +a ||| entered into on ||| 0.25 0.107578 1.49697e-06 1.30058e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| entered into ||| 0.00521921 0.107578 7.48485e-06 1.94378e-07 2.718 ||| 0-1 ||| 958 668016 +a ||| entering an ||| 0.0769231 0.0339175 1.49697e-06 2.4357e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| entering into ||| 0.0210084 0.107578 7.48485e-06 9.41517e-08 2.718 ||| 0-1 ||| 238 668016 +a ||| entering ||| 0.00308325 0.0339175 4.49091e-06 5.48e-05 2.718 ||| 0-0 ||| 973 668016 +a ||| enterprise of ||| 0.0384615 0.0188479 1.49697e-06 2.12965e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| enterprises with ||| 0.03125 0.0571592 1.49697e-06 2.70461e-07 2.718 ||| 0-1 ||| 32 668016 +a ||| entertaining vague notions of ||| 0.5 0.0188479 1.49697e-06 1.82204e-19 2.718 ||| 0-3 ||| 2 668016 +a ||| enthusiasm for ||| 0.0106383 0.0683377 2.99394e-06 2.39515e-07 2.718 ||| 0-1 ||| 188 668016 +a ||| enthusiastic about ||| 0.0104167 0.0526361 1.49697e-06 2.1669e-08 2.718 ||| 0-1 ||| 96 668016 +a ||| entirely at ||| 0.0416667 0.204175 1.49697e-06 2.25314e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| entirely by the Community , ||| 0.5 0.0337966 1.49697e-06 6.45593e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| entirely by the Community ||| 0.333333 0.0337966 1.49697e-06 5.41356e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| entirely by the ||| 0.0833333 0.0337966 1.49697e-06 3.34377e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| entirely by ||| 0.037037 0.0337966 1.49697e-06 5.44661e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| entirely on ||| 0.011236 0.0782999 1.49697e-06 2.51134e-06 2.718 ||| 0-1 ||| 89 668016 +a ||| entirely to ||| 0.0333333 0.229811 2.99394e-06 2.319e-05 2.718 ||| 0-1 ||| 60 668016 +a ||| entirely up to ||| 0.125 0.229811 1.49697e-06 7.90894e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| entirely visible to ||| 0.5 0.229811 1.49697e-06 3.43211e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| entirely with ||| 0.015625 0.0571592 1.49697e-06 1.10522e-06 2.718 ||| 0-1 ||| 64 668016 +a ||| entitled to and ||| 0.333333 0.229811 1.49697e-06 2.14566e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| entitled to maintenance ||| 0.166667 0.229811 1.49697e-06 1.35325e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| entitled to reimbursement of ||| 0.5 0.0188479 1.49697e-06 2.31342e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| entitled to this , but so are ||| 0.166667 0.229811 1.49697e-06 3.10641e-16 2.718 ||| 0-1 ||| 6 668016 +a ||| entitled to this , but so ||| 0.166667 0.229811 1.49697e-06 2.04737e-14 2.718 ||| 0-1 ||| 6 668016 +a ||| entitled to this , but ||| 0.166667 0.229811 1.49697e-06 9.02045e-12 2.718 ||| 0-1 ||| 6 668016 +a ||| entitled to this , ||| 0.142857 0.229811 1.49697e-06 1.31994e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| entitled to this ||| 0.0588235 0.229811 1.49697e-06 1.10682e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| entitled to ||| 0.00757098 0.229811 1.79636e-05 1.71297e-05 2.718 ||| 0-1 ||| 1585 668016 +a ||| entrust to ||| 0.1 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| entrusted to ||| 0.0155039 0.229811 2.99394e-06 2.03175e-06 2.718 ||| 0-1 ||| 129 668016 +a ||| entry for ||| 0.03125 0.0683377 1.49697e-06 6.78012e-07 2.718 ||| 0-1 ||| 32 668016 +a ||| entry into force of ||| 0.00233645 0.0188479 1.49697e-06 9.51036e-14 2.718 ||| 0-3 ||| 428 668016 +a ||| entry of ||| 0.00826446 0.0188479 2.99394e-06 5.44244e-07 2.718 ||| 0-1 ||| 242 668016 +a ||| entry to ||| 0.00534759 0.229811 1.49697e-06 6.44555e-06 2.718 ||| 0-1 ||| 187 668016 +a ||| envelope for ||| 0.25 0.0683377 1.49697e-06 4.05334e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| environment in ||| 0.00273224 0.0587624 1.49697e-06 3.3526e-06 2.718 ||| 0-1 ||| 366 668016 +a ||| envisaged here to ||| 1 0.229811 1.49697e-06 1.02289e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| envisaged in the new Directive ||| 1 0.0587624 1.49697e-06 2.44453e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| envisaged in the new ||| 0.5 0.0587624 1.49697e-06 3.17471e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| envisaged in the ||| 0.00704225 0.0587624 1.49697e-06 5.31154e-08 2.718 ||| 0-1 ||| 142 668016 +a ||| envisaged in ||| 0.00510204 0.0587624 1.49697e-06 8.65188e-07 2.718 ||| 0-1 ||| 196 668016 +a ||| equal on the ||| 1 0.0782999 1.49697e-06 1.33215e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| equal on ||| 1 0.0782999 1.49697e-06 2.16992e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| equal to ||| 0.0242718 0.229811 1.49697e-05 2.00373e-05 2.718 ||| 0-1 ||| 412 668016 +a ||| equally to ||| 0.0190476 0.229811 2.99394e-06 1.22255e-05 2.718 ||| 0-1 ||| 105 668016 +a ||| equally true of ||| 0.25 0.0188479 1.49697e-06 1.66818e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| equate to ||| 0.0434783 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| equated with ||| 0.111111 0.0571592 2.99394e-06 1.83646e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| equates her ||| 1 0.0588235 1.49697e-06 1.98633e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| equates ||| 0.025641 0.0588235 2.99394e-06 7.3e-06 2.718 ||| 0-0 ||| 78 668016 +a ||| equating ||| 0.02 0.104167 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| equip ourselves with ||| 0.0192308 0.0571592 1.49697e-06 1.69943e-11 2.718 ||| 0-2 ||| 52 668016 +a ||| equipment - will give ||| 1 0.0241455 1.49697e-06 6.33063e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| equipment to operate in ||| 1 0.0587624 1.49697e-06 8.9516e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| equipped to ||| 0.00787402 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-1 ||| 127 668016 +a ||| equivalent in value ||| 1 0.0587624 1.49697e-06 1.08142e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| equivalent in ||| 0.047619 0.0587624 1.49697e-06 1.23169e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| equivalent to ||| 0.0112676 0.229811 5.98788e-06 7.18118e-06 2.718 ||| 0-1 ||| 355 668016 +a ||| error of ||| 0.0169492 0.0188479 1.49697e-06 2.78038e-07 2.718 ||| 0-1 ||| 59 668016 +a ||| escape the ||| 0.00961538 0.0416961 1.49697e-06 9.51683e-08 2.718 ||| 0-0 0-1 ||| 104 668016 +a ||| escape ||| 0.00581395 0.0829268 5.98788e-06 6.21e-05 2.718 ||| 0-0 ||| 688 668016 +a ||| especially , of ||| 0.05 0.0188479 1.49697e-06 2.83248e-07 2.718 ||| 0-2 ||| 20 668016 +a ||| especially against ||| 0.02 0.05146 1.49697e-06 2.0874e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| especially applies to ||| 0.142857 0.229811 1.49697e-06 2.35723e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| especially because the other gases cause ||| 1 0.0052046 1.49697e-06 1.08133e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| especially because the other gases ||| 1 0.0052046 1.49697e-06 5.98409e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| especially because the other ||| 1 0.0052046 1.49697e-06 2.06348e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| especially because the ||| 0.0714286 0.0052046 1.49697e-06 1.59281e-09 2.718 ||| 0-1 ||| 14 668016 +a ||| especially because ||| 0.00819672 0.0052046 1.49697e-06 2.59449e-08 2.718 ||| 0-1 ||| 122 668016 +a ||| especially concrete contribution to seeing ||| 1 0.229811 1.49697e-06 4.22349e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| especially concrete contribution to ||| 1 0.229811 1.49697e-06 7.924e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| especially for ||| 0.00115607 0.0683377 1.49697e-06 2.95893e-06 2.718 ||| 0-1 ||| 865 668016 +a ||| especially in ||| 0.0018622 0.0587624 8.98182e-06 4.82462e-06 2.718 ||| 0-1 ||| 3222 668016 +a ||| especially women , are particularly vulnerable to ||| 1 0.229811 1.49697e-06 1.09011e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| essential that ||| 0.00057971 0.0008521 1.49697e-06 6.1443e-08 2.718 ||| 0-1 ||| 1725 668016 +a ||| essential to nurture ||| 1 0.229811 1.49697e-06 5.67489e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| essential to ||| 0.00213584 0.229811 7.48485e-06 3.15271e-05 2.718 ||| 0-1 ||| 2341 668016 +a ||| essentially , leave ||| 1 0.0032088 1.49697e-06 3.53054e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| establish them in ||| 0.5 0.0587624 1.49697e-06 1.22969e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| established OLAF to deal with suspicions ||| 0.5 0.229811 1.49697e-06 1.1903e-21 2.718 ||| 0-2 ||| 2 668016 +a ||| established OLAF to deal with ||| 0.5 0.229811 1.49697e-06 1.08209e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| established OLAF to deal ||| 1 0.229811 1.49697e-06 1.69222e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| established OLAF to ||| 0.5 0.229811 1.49697e-06 3.98545e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| established allowing manufacturers to ||| 1 0.229811 1.49697e-06 1.90295e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| established nevertheless ||| 0.333333 0.0151859 1.49697e-06 2.65119e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| established on ||| 0.0322581 0.0782999 2.99394e-06 5.67896e-06 2.718 ||| 0-1 ||| 62 668016 +a ||| established to be excluded ||| 1 0.229811 1.49697e-06 1.09292e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| established to be ||| 1 0.229811 1.49697e-06 9.50368e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| established to deal ||| 1 0.229811 1.49697e-06 2.22661e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| established to ||| 0.0327869 0.229811 2.99394e-06 5.24401e-05 2.718 ||| 0-1 ||| 61 668016 +a ||| establishing certain support schemes for farmers and ||| 1 0.0683377 1.49697e-06 1.56078e-24 2.718 ||| 0-4 ||| 1 668016 +a ||| establishing certain support schemes for farmers ||| 1 0.0683377 1.49697e-06 1.24604e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| establishing certain support schemes for ||| 0.2 0.0683377 1.49697e-06 3.09191e-18 2.718 ||| 0-4 ||| 5 668016 +a ||| establishing to ||| 0.5 0.229811 1.49697e-06 1.63941e-05 2.718 ||| 0-1 ||| 2 668016 +a ||| establishment of the relevant ||| 1 0.0188479 1.49697e-06 8.79248e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| establishment of the ||| 0.00163934 0.0188479 1.49697e-06 8.17145e-08 2.718 ||| 0-1 ||| 610 668016 +a ||| establishment of ||| 0.000697107 0.0188479 2.99394e-06 1.33103e-06 2.718 ||| 0-1 ||| 2869 668016 +a ||| estimated at ||| 0.00558659 0.204175 1.49697e-06 4.9011e-07 2.718 ||| 0-1 ||| 179 668016 +a ||| ethnic cleansing from ||| 0.5 0.0435582 1.49697e-06 1.15901e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| euro area with ||| 0.166667 0.0571592 1.49697e-06 4.06995e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| euro currency in ||| 0.2 0.0587624 1.49697e-06 1.31904e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| euros an hour to ||| 1 0.229811 1.49697e-06 1.32967e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| evacuated ||| 0.015873 0.130952 1.49697e-06 1e-05 2.718 ||| 0-0 ||| 63 668016 +a ||| even , at ||| 0.111111 0.204175 1.49697e-06 2.46983e-06 2.718 ||| 0-2 ||| 9 668016 +a ||| even a ||| 0.003663 0.0495435 2.99394e-06 8.65018e-05 2.718 ||| 0-0 ||| 546 668016 +a ||| even addressed ||| 0.5 0.0495435 1.49697e-06 1.046e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| even after ||| 0.0018315 0.0418231 1.49697e-06 1.63692e-06 2.718 ||| 0-0 0-1 ||| 546 668016 +a ||| even at ||| 0.00914634 0.204175 4.49091e-06 2.07105e-05 2.718 ||| 0-1 ||| 328 668016 +a ||| even be ||| 0.0046729 0.0495435 1.49697e-06 3.53668e-05 2.718 ||| 0-0 ||| 214 668016 +a ||| even before ||| 0.000982318 0.0495435 1.49697e-06 4.8807e-07 2.718 ||| 0-0 ||| 1018 668016 +a ||| even begin to ||| 0.1 0.229811 1.49697e-06 1.25764e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| even by Members ||| 0.333333 0.0337966 1.49697e-06 7.38449e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| even by ||| 0.00641026 0.0337966 1.49697e-06 5.00643e-06 2.718 ||| 0-1 ||| 156 668016 +a ||| even come close ||| 0.0526316 0.0495435 1.49697e-06 2.45794e-10 2.718 ||| 0-0 ||| 19 668016 +a ||| even come to ||| 0.5 0.229811 1.49697e-06 1.81036e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| even come ||| 0.0769231 0.0495435 1.49697e-06 1.65741e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| even fellow ||| 0.5 0.0495435 1.49697e-06 1.28604e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| even further below ||| 1 0.0495435 1.49697e-06 1.65996e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| even further ||| 0.00182482 0.0495435 1.49697e-06 9.4316e-07 2.718 ||| 0-0 ||| 548 668016 +a ||| even going to ||| 0.2 0.229811 1.49697e-06 1.82421e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| even help ||| 0.333333 0.259976 1.49697e-06 4.00229e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| even hold ||| 0.333333 0.0495435 1.49697e-06 3.39951e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| even if it ||| 0.00377358 0.0495435 1.49697e-06 2.89986e-08 2.718 ||| 0-0 ||| 265 668016 +a ||| even if ||| 0.000243487 0.0495435 1.49697e-06 1.63067e-06 2.718 ||| 0-0 ||| 4107 668016 +a ||| even in the ||| 0.0017762 0.0587624 1.49697e-06 2.2445e-06 2.718 ||| 0-1 ||| 563 668016 +a ||| even in ||| 0.00227661 0.0587624 5.98788e-06 3.65602e-05 2.718 ||| 0-1 ||| 1757 668016 +a ||| even in-built ||| 0.125 0.0495435 1.49697e-06 7.806e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| even just ||| 0.027027 0.0495435 1.49697e-06 2.46221e-06 2.718 ||| 0-0 ||| 37 668016 +a ||| even lunch difficult ||| 1 0.0495435 1.49697e-06 6.05941e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| even lunch ||| 1 0.0495435 1.49697e-06 4.87875e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| even mentioned in ||| 0.125 0.0587624 1.49697e-06 3.23558e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| even more acute in the context of ||| 1 0.0587624 1.49697e-06 3.5152e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| even more acute in the context ||| 1 0.0587624 1.49697e-06 6.46604e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| even more acute in the ||| 0.333333 0.0587624 1.49697e-06 4.81821e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| even more acute in ||| 0.166667 0.0587624 1.49697e-06 7.8483e-13 2.718 ||| 0-3 ||| 6 668016 +a ||| even more of it to ||| 1 0.229811 1.49697e-06 4.70612e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| even more ||| 0.000733855 0.0495435 4.49091e-06 4.45664e-06 2.718 ||| 0-0 ||| 4088 668016 +a ||| even now ||| 0.003367 0.0495435 1.49697e-06 4.01989e-06 2.718 ||| 0-0 ||| 297 668016 +a ||| even of ||| 0.0141844 0.0341957 2.99394e-06 5.77224e-05 2.718 ||| 0-0 0-1 ||| 141 668016 +a ||| even richer ||| 0.111111 0.0495435 1.49697e-06 4.2933e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| even seen ||| 0.2 0.0495435 1.49697e-06 4.10791e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| even self-imposed restrictions ||| 1 0.0495435 1.49697e-06 1.49095e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| even self-imposed ||| 1 0.0495435 1.49697e-06 7.806e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| even specialists in the ||| 1 0.0587624 1.49697e-06 4.93789e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| even specialists in ||| 1 0.0587624 1.49697e-06 8.04324e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| even spend ||| 0.25 0.0495435 1.49697e-06 5.89353e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| even started ||| 0.111111 0.0495435 1.49697e-06 8.78175e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| even the ||| 0.00163577 0.0495435 4.49091e-06 0.000119806 2.718 ||| 0-0 ||| 1834 668016 +a ||| even though this may not ||| 0.5 0.0495435 1.49697e-06 8.0084e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| even though this may ||| 1 0.0495435 1.49697e-06 2.34568e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| even though this ||| 0.00684932 0.0495435 1.49697e-06 3.13092e-09 2.718 ||| 0-0 ||| 146 668016 +a ||| even though we shall be ||| 0.5 0.131911 1.49697e-06 7.5073e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| even though we shall ||| 0.5 0.131911 1.49697e-06 4.14244e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| even though ||| 0.000670241 0.0495435 5.98788e-06 4.84557e-07 2.718 ||| 0-0 ||| 5968 668016 +a ||| even to ||| 0.0021097 0.229811 1.49697e-06 0.000213159 2.718 ||| 0-1 ||| 474 668016 +a ||| even today , ||| 0.00625 0.0495435 1.49697e-06 1.05029e-07 2.718 ||| 0-0 ||| 160 668016 +a ||| even today ||| 0.00625 0.0495435 2.99394e-06 8.80712e-07 2.718 ||| 0-0 ||| 320 668016 +a ||| even undertaken to look ||| 1 0.229811 1.49697e-06 2.95145e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| even undertaken to ||| 1 0.229811 1.49697e-06 1.0125e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| even valuable ||| 0.25 0.0495435 1.49697e-06 2.81016e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| even with ||| 0.00227273 0.0571592 1.49697e-06 1.0159e-05 2.718 ||| 0-1 ||| 440 668016 +a ||| even ||| 0.0239758 0.0495435 0.00121255 0.0019515 2.718 ||| 0-0 ||| 33784 668016 +a ||| even-handedly to ||| 0.5 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| evening at ||| 0.0344828 0.204175 1.49697e-06 7.58989e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| event of the ||| 0.0151515 0.0188479 1.49697e-06 1.89578e-07 2.718 ||| 0-1 ||| 66 668016 +a ||| event of ||| 0.00157812 0.0004155 4.49091e-06 9.78552e-08 2.718 ||| 0-0 ||| 1901 668016 +a ||| event to ||| 0.05 0.229811 1.49697e-06 3.65715e-05 2.718 ||| 0-1 ||| 20 668016 +a ||| event ||| 0.00042008 0.0004155 2.99394e-06 1.8e-06 2.718 ||| 0-0 ||| 4761 668016 +a ||| events in ||| 0.00105263 0.0587624 1.49697e-06 4.368e-06 2.718 ||| 0-1 ||| 950 668016 +a ||| events of ||| 0.00160256 0.0188479 1.49697e-06 2.15036e-06 2.718 ||| 0-1 ||| 624 668016 +a ||| events regarding ||| 0.25 0.186429 1.49697e-06 2.44657e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| events to ||| 0.0384615 0.229811 1.49697e-06 2.54669e-05 2.718 ||| 0-1 ||| 26 668016 +a ||| eventually , ||| 0.013986 0.0344828 2.99394e-06 8.16895e-06 2.718 ||| 0-0 ||| 143 668016 +a ||| eventually apply to ||| 0.5 0.229811 1.49697e-06 1.39631e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| eventually be paid out in ||| 1 0.0587624 1.49697e-06 1.55505e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| eventually blocked ||| 1 0.0344828 1.49697e-06 5.891e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| eventually developed ||| 0.2 0.0344828 1.49697e-06 4.70595e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| eventually to ||| 0.0408163 0.229811 2.99394e-06 9.70335e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| eventually ||| 0.00816994 0.0344828 1.49697e-05 6.85e-05 2.718 ||| 0-0 ||| 1224 668016 +a ||| ever comes of ||| 0.25 0.0188479 1.49697e-06 2.22201e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| ever effecting ||| 0.2 0.0054117 1.49697e-06 4.213e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| ever going to ||| 0.25 0.229811 1.49697e-06 5.63302e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| ever got hurt ||| 1 0.182648 1.49697e-06 7.50303e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| ever makes love to children ||| 1 0.229811 1.49697e-06 6.33187e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| ever makes love to ||| 1 0.229811 1.49697e-06 8.49916e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| ever since 1984 , in ||| 1 0.0587624 1.49697e-06 1.27888e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| ever since ||| 0.00213675 0.0050746 1.49697e-06 2.95003e-08 2.718 ||| 0-1 ||| 468 668016 +a ||| ever to ||| 0.0198676 0.229811 4.49091e-06 6.58217e-05 2.718 ||| 0-1 ||| 151 668016 +a ||| ever ||| 0.00296171 0.0054117 2.09576e-05 3.83e-05 2.718 ||| 0-0 ||| 4727 668016 +a ||| ever-rising ||| 0.25 0.125 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| ever-supportive ||| 0.5 0.5 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| every assistance to ||| 0.125 0.229811 1.49697e-06 2.83261e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| every effort ||| 0.00131234 0.0116434 1.49697e-06 2.18949e-08 2.718 ||| 0-0 ||| 762 668016 +a ||| every government to ensure this ||| 1 0.229811 1.49697e-06 1.31938e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| every government to ensure ||| 1 0.229811 1.49697e-06 2.04194e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| every government to ||| 1 0.229811 1.49697e-06 4.55383e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| every grouping in ||| 1 0.0587624 1.49697e-06 1.75958e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| every now ||| 0.0384615 0.0116434 1.49697e-06 5.09619e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| every success in her ||| 0.333333 0.0587624 1.49697e-06 1.57998e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| every success in your next reincarnation ] ||| 1 0.0587624 1.49697e-06 2.29628e-28 2.718 ||| 0-2 ||| 1 668016 +a ||| every success in your next reincarnation ||| 1 0.0587624 1.49697e-06 6.13978e-24 2.718 ||| 0-2 ||| 1 668016 +a ||| every success in your next ||| 0.5 0.0587624 1.49697e-06 1.53494e-17 2.718 ||| 0-2 ||| 2 668016 +a ||| every success in your ||| 0.04 0.0587624 1.49697e-06 1.48591e-13 2.718 ||| 0-2 ||| 25 668016 +a ||| every success in ||| 0.0114286 0.0587624 2.99394e-06 5.8066e-10 2.718 ||| 0-2 ||| 175 668016 +a ||| every year ||| 0.000510986 0.0116434 1.49697e-06 6.17016e-08 2.718 ||| 0-0 ||| 1957 668016 +a ||| every ||| 0.00399482 0.0116434 0.000110776 0.0002474 2.718 ||| 0-0 ||| 18524 668016 +a ||| everybody ' ||| 0.0666667 0.0465278 1.49697e-06 4.20088e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| everybody simply turned ||| 1 0.0465278 1.49697e-06 1.52109e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| everybody simply ||| 1 0.0465278 1.49697e-06 2.71139e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| everybody ||| 0.00265252 0.0465278 8.98182e-06 0.0001223 2.718 ||| 0-0 ||| 2262 668016 +a ||| everyone is willing ||| 0.5 0.0278324 1.49697e-06 3.97939e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| everyone is ||| 0.00149925 0.0278324 1.49697e-06 1.05275e-05 2.718 ||| 0-0 ||| 667 668016 +a ||| everyone on ||| 0.0140845 0.0782999 1.49697e-06 2.55307e-06 2.718 ||| 0-1 ||| 71 668016 +a ||| everyone ||| 0.0011857 0.0278324 1.94606e-05 0.0003359 2.718 ||| 0-0 ||| 10964 668016 +a ||| everything , in ||| 0.142857 0.0587624 1.49697e-06 6.62774e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| everything can continue to stick precisely to ||| 0.5 0.229811 1.49697e-06 3.94692e-21 2.718 ||| 0-3 ||| 2 668016 +a ||| everything can continue to stick precisely ||| 0.5 0.229811 1.49697e-06 4.44181e-20 2.718 ||| 0-3 ||| 2 668016 +a ||| everything can continue to stick ||| 0.5 0.229811 1.49697e-06 4.50488e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| everything can continue to ||| 0.5 0.229811 1.49697e-06 2.23014e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| everything has ground to ||| 1 0.229811 1.49697e-06 1.95149e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| everything on ||| 0.0181818 0.0782999 1.49697e-06 3.50904e-06 2.718 ||| 0-1 ||| 55 668016 +a ||| everything possible to open up ||| 1 0.229811 1.49697e-06 1.42888e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| everything possible to open ||| 1 0.229811 1.49697e-06 4.18965e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| everything possible to ||| 0.00296736 0.229811 1.49697e-06 2.59904e-08 2.718 ||| 0-2 ||| 337 668016 +a ||| everything to do with ||| 0.0178571 0.0571592 1.49697e-06 4.71404e-10 2.718 ||| 0-3 ||| 56 668016 +a ||| everything to ||| 0.00555556 0.229811 2.99394e-06 3.24029e-05 2.718 ||| 0-1 ||| 360 668016 +a ||| everything would resolve itself in ||| 0.5 0.0587624 1.49697e-06 5.73336e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| evidence from ||| 0.0212766 0.0435582 1.49697e-06 3.96654e-07 2.718 ||| 0-1 ||| 47 668016 +a ||| evidence of ||| 0.00244798 0.0188479 2.99394e-06 1.62978e-06 2.718 ||| 0-1 ||| 817 668016 +a ||| evident from ||| 0.00769231 0.0435582 1.49697e-06 1.34618e-07 2.718 ||| 0-1 ||| 130 668016 +a ||| evident in ||| 0.00621118 0.0587624 1.49697e-06 1.12354e-06 2.718 ||| 0-1 ||| 161 668016 +a ||| evidently trying to force us into ||| 1 0.229811 1.49697e-06 1.97149e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| evidently trying to force us ||| 1 0.229811 1.49697e-06 1.92022e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| evidently trying to force ||| 1 0.229811 1.49697e-06 6.66233e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| evidently trying to ||| 1 0.229811 1.49697e-06 3.91441e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| evil by accepting the ||| 1 0.0337966 1.49697e-06 4.93787e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| evil by accepting ||| 1 0.0337966 1.49697e-06 8.0432e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| evil by ||| 0.25 0.0337966 1.49697e-06 7.73385e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| ex ||| 0.0531915 0.045082 7.48485e-06 1e-05 2.718 ||| 0-0 ||| 94 668016 +a ||| exactly as ||| 0.0215054 0.0243476 2.99394e-06 8.80749e-07 2.718 ||| 0-1 ||| 93 668016 +a ||| exactly in ||| 0.0333333 0.0587624 1.49697e-06 6.03228e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| exactly the same from ||| 1 0.0435582 1.49697e-06 3.57058e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| examination of ||| 0.00295858 0.0188479 1.49697e-06 4.05225e-07 2.718 ||| 0-1 ||| 338 668016 +a ||| examinations available to ||| 1 0.229811 1.49697e-06 1.56003e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| example , in Poland today , journalists ||| 1 0.0587624 1.49697e-06 1.71189e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| example , in Poland today , ||| 1 0.0587624 1.49697e-06 6.84757e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| example , in Poland today ||| 1 0.0587624 1.49697e-06 5.74197e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| example , in Poland ||| 0.166667 0.0587624 1.49697e-06 1.27232e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| example , in ||| 0.00249377 0.0587624 2.99394e-06 2.08577e-06 2.718 ||| 0-2 ||| 802 668016 +a ||| example , to ||| 0.00243309 0.229811 1.49697e-06 1.21607e-05 2.718 ||| 0-2 ||| 411 668016 +a ||| example in ||| 0.0012987 0.0587624 1.49697e-06 1.749e-05 2.718 ||| 0-1 ||| 770 668016 +a ||| example of the favours being done ||| 1 0.222874 1.49697e-06 1.74868e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| example of the favours being ||| 1 0.222874 1.49697e-06 3.83482e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| example of the favours ||| 1 0.222874 1.49697e-06 1.34754e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| example of ||| 0.00168577 0.0188479 7.48485e-06 8.6103e-06 2.718 ||| 0-1 ||| 2966 668016 +a ||| example to ||| 0.00498753 0.229811 2.99394e-06 0.000101973 2.718 ||| 0-1 ||| 401 668016 +a ||| examples of ||| 0.00104384 0.0188479 1.49697e-06 5.11708e-07 2.718 ||| 0-1 ||| 958 668016 +a ||| excellent job tackling ||| 1 0.0514233 1.49697e-06 2.9852e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| except for ||| 0.00296736 0.0683377 1.49697e-06 3.46376e-07 2.718 ||| 0-1 ||| 337 668016 +a ||| except ||| 0.00143062 0.0154321 2.99394e-06 1.83e-05 2.718 ||| 0-0 ||| 1398 668016 +a ||| exception for ||| 0.0192308 0.0683377 1.49697e-06 6.89067e-07 2.718 ||| 0-1 ||| 52 668016 +a ||| exceptionally , to be ||| 0.25 0.229811 1.49697e-06 4.08827e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| exceptionally , to ||| 0.25 0.229811 1.49697e-06 2.25586e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| exceptions allowed at ||| 0.5 0.204175 1.49697e-06 2.58986e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| excess of ||| 0.00408163 0.0188479 1.49697e-06 3.19448e-07 2.718 ||| 0-1 ||| 245 668016 +a ||| excesses of ||| 0.0172414 0.0188479 1.49697e-06 6.50727e-08 2.718 ||| 0-1 ||| 58 668016 +a ||| exchange for European ||| 1 0.0683377 1.49697e-06 3.41313e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| exchange for ||| 0.00534759 0.0683377 1.49697e-06 1.0207e-06 2.718 ||| 0-1 ||| 187 668016 +a ||| excise duty on ||| 0.0144928 0.0782999 1.49697e-06 1.52615e-11 2.718 ||| 0-2 ||| 69 668016 +a ||| excise duty to ||| 0.0769231 0.229811 1.49697e-06 1.40926e-10 2.718 ||| 0-2 ||| 13 668016 +a ||| exclude ||| 0.00229885 0.0619289 2.99394e-06 5.57e-05 2.718 ||| 0-0 ||| 870 668016 +a ||| excluding ||| 0.00990099 0.157434 7.48485e-06 9.86e-05 2.718 ||| 0-0 ||| 505 668016 +a ||| exclusively at ||| 0.0740741 0.204175 2.99394e-06 4.52671e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| exclusively on ||| 0.00502513 0.0782999 1.49697e-06 5.04543e-07 2.718 ||| 0-1 ||| 199 668016 +a ||| exclusively to ||| 0.00675676 0.229811 1.49697e-06 4.65901e-06 2.718 ||| 0-1 ||| 148 668016 +a ||| exempt , ||| 0.1 0.11838 1.49697e-06 8.27628e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| exempt ||| 0.00322581 0.11838 1.49697e-06 6.94e-05 2.718 ||| 0-0 ||| 310 668016 +a ||| exemption for ||| 0.0136986 0.0683377 1.49697e-06 2.24776e-07 2.718 ||| 0-1 ||| 73 668016 +a ||| exercise in the ||| 0.142857 0.0587624 1.49697e-06 2.28323e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| exercise in ||| 0.00568182 0.0587624 1.49697e-06 3.71911e-06 2.718 ||| 0-1 ||| 176 668016 +a ||| exercise of ||| 0.00222222 0.0188479 1.49697e-06 1.83091e-06 2.718 ||| 0-1 ||| 450 668016 +a ||| exercise scrutiny over ||| 0.333333 0.0682544 1.49697e-06 2.17119e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| exercised by ||| 0.00909091 0.0337966 1.49697e-06 1.27526e-07 2.718 ||| 0-1 ||| 110 668016 +a ||| exert itself to ||| 0.2 0.229811 1.49697e-06 2.4726e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| exerted on ||| 0.0232558 0.0782999 1.49697e-06 4.51434e-07 2.718 ||| 0-1 ||| 43 668016 +a ||| exhort ||| 0.0666667 0.266667 1.49697e-06 7.3e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| exile in ||| 0.0588235 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| exist and ||| 0.00478469 0.0015873 1.49697e-06 1.77707e-07 2.718 ||| 0-1 ||| 209 668016 +a ||| exist at the moment in ||| 1 0.204175 1.49697e-06 7.44328e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| exist at the moment ||| 0.2 0.204175 1.49697e-06 3.47743e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| exist at the ||| 0.0769231 0.204175 1.49697e-06 1.92442e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| exist at ||| 0.038961 0.204175 4.49091e-06 3.13466e-06 2.718 ||| 0-1 ||| 77 668016 +a ||| exist for ||| 0.0117647 0.0683377 1.49697e-06 3.39375e-06 2.718 ||| 0-1 ||| 85 668016 +a ||| exist in ||| 0.0017331 0.0587624 1.49697e-06 5.5336e-06 2.718 ||| 0-1 ||| 577 668016 +a ||| existed to ||| 0.0714286 0.229811 1.49697e-06 5.18446e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| existence , in ||| 0.2 0.0587624 1.49697e-06 4.9511e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| existence of ||| 0.000752445 0.0188479 1.49697e-06 2.04387e-06 2.718 ||| 0-1 ||| 1329 668016 +a ||| exists at the moment to ||| 1 0.229811 1.49697e-06 9.08007e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| exists in physical form ||| 1 0.0587624 1.49697e-06 1.31245e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| exists in physical ||| 1 0.0587624 1.49697e-06 2.88324e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| exists in ||| 0.00253807 0.0587624 1.49697e-06 3.3526e-06 2.718 ||| 0-1 ||| 394 668016 +a ||| expand in ||| 0.125 0.0587624 1.49697e-06 2.16297e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| expect to be taken ||| 0.25 0.229811 1.49697e-06 3.08428e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| expect to be ||| 0.0212766 0.229811 1.49697e-06 3.38374e-07 2.718 ||| 0-1 ||| 47 668016 +a ||| expect to ||| 0.00413223 0.229811 1.49697e-06 1.86711e-05 2.718 ||| 0-1 ||| 242 668016 +a ||| expected of ||| 0.0150376 0.0188479 2.99394e-06 1.57653e-06 2.718 ||| 0-1 ||| 133 668016 +a ||| expected to contribute towards ||| 1 0.229811 1.49697e-06 9.22407e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| expected to contribute ||| 0.125 0.229811 1.49697e-06 7.26305e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| expected to sit ||| 0.333333 0.229811 1.49697e-06 7.05767e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| expected to ||| 0.00993378 0.229811 1.34727e-05 1.86711e-05 2.718 ||| 0-1 ||| 906 668016 +a ||| expecting to ||| 0.0625 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| expel ||| 0.00961538 0.335294 1.49697e-06 5.2e-05 2.718 ||| 0-0 ||| 104 668016 +a ||| expelled ||| 0.0193548 0.0515464 4.49091e-06 1.37e-05 2.718 ||| 0-0 ||| 155 668016 +a ||| expenditure in ||| 0.00675676 0.0587624 1.49697e-06 1.81449e-06 2.718 ||| 0-1 ||| 148 668016 +a ||| expenditure on rural development ||| 0.2 0.0782999 1.49697e-06 2.11075e-15 2.718 ||| 0-1 ||| 5 668016 +a ||| expenditure on rural ||| 0.25 0.0782999 1.49697e-06 1.28313e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| expenditure on ||| 0.00298507 0.0782999 1.49697e-06 1.14566e-06 2.718 ||| 0-1 ||| 335 668016 +a ||| expenditure relating to passenger cars , generally ||| 1 0.229811 1.49697e-06 5.82103e-25 2.718 ||| 0-2 ||| 1 668016 +a ||| expenditure relating to passenger cars , ||| 1 0.229811 1.49697e-06 1.40605e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| expenditure relating to passenger cars ||| 1 0.229811 1.49697e-06 1.17903e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| expenditure relating to passenger ||| 1 0.229811 1.49697e-06 6.9765e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| expenditure relating to ||| 0.1 0.229811 1.49697e-06 1.20284e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| expense of ||| 0.00163399 0.0188479 1.49697e-06 5.73823e-07 2.718 ||| 0-1 ||| 612 668016 +a ||| expenses for ||| 0.0263158 0.0683377 1.49697e-06 2.13721e-07 2.718 ||| 0-1 ||| 38 668016 +a ||| expenses on ||| 0.05 0.0782999 1.49697e-06 2.20026e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| experience Europe as a ||| 1 0.0243476 1.49697e-06 1.35958e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| experience Europe as ||| 0.5 0.0243476 1.49697e-06 3.06723e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| experience at ||| 0.0217391 0.204175 1.49697e-06 2.35185e-06 2.718 ||| 0-1 ||| 46 668016 +a ||| experience with ||| 0.00460829 0.0571592 1.49697e-06 1.15363e-06 2.718 ||| 0-1 ||| 217 668016 +a ||| experiences and information ||| 0.0909091 0.0015873 1.49697e-06 1.59666e-12 2.718 ||| 0-1 ||| 11 668016 +a ||| experiences and ||| 0.00625 0.0015873 1.49697e-06 9.6475e-09 2.718 ||| 0-1 ||| 160 668016 +a ||| experiences at ||| 0.111111 0.204175 1.49697e-06 1.70177e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| experiencing in ||| 0.0454545 0.0587624 1.49697e-06 1.12354e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| expert report on ||| 0.25 0.0782999 1.49697e-06 1.78823e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| expire in ||| 0.142857 0.0587624 2.99394e-06 2.4033e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| explain to ||| 0.00539084 0.229811 2.99394e-06 9.21293e-06 2.718 ||| 0-1 ||| 371 668016 +a ||| explained by Hizbollah ||| 1 0.0337966 1.49697e-06 4.73904e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| explained by Hizbollah ’ ||| 1 0.0337966 1.49697e-06 8.25588e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| explained by the fact ||| 0.125 0.0337966 1.49697e-06 2.13061e-11 2.718 ||| 0-1 ||| 8 668016 +a ||| explained by the ||| 0.0285714 0.0337966 1.49697e-06 7.27345e-09 2.718 ||| 0-1 ||| 35 668016 +a ||| explained by ||| 0.0886076 0.0337966 1.04788e-05 1.18476e-07 2.718 ||| 0-1 ||| 79 668016 +a ||| explanation in ||| 0.0714286 0.0587624 1.49697e-06 1.1656e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| explanation of what is meant ||| 0.5 0.0188479 1.49697e-06 2.00608e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| explanation of what is ||| 0.333333 0.0188479 1.49697e-06 2.52337e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| explanation of what ||| 0.0588235 0.0188479 1.49697e-06 8.05131e-10 2.718 ||| 0-1 ||| 17 668016 +a ||| explanation of ||| 0.00125945 0.0188479 1.49697e-06 5.73823e-07 2.718 ||| 0-1 ||| 794 668016 +a ||| explicit reference to ||| 0.0138889 0.229811 1.49697e-06 1.49404e-10 2.718 ||| 0-2 ||| 72 668016 +a ||| explicitly to ||| 0.0294118 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| exploitation in ||| 0.0277778 0.0587624 1.49697e-06 5.64775e-07 2.718 ||| 0-1 ||| 36 668016 +a ||| exploited and forced to ||| 0.333333 0.229811 1.49697e-06 2.90782e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| export ||| 0.00197482 0.0930983 1.19758e-05 0.0003423 2.718 ||| 0-0 ||| 4051 668016 +a ||| exported to ||| 0.00884956 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-1 ||| 113 668016 +a ||| exporting to the ||| 0.0526316 0.229811 1.49697e-06 5.37641e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| exporting to ||| 0.025 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-1 ||| 40 668016 +a ||| exports towards ||| 1 0.155507 1.49697e-06 2.19219e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| expose you ||| 1 0.188855 1.49697e-06 1.79839e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| expose ||| 0.0134228 0.188855 2.99394e-06 5.57e-05 2.718 ||| 0-0 ||| 149 668016 +a ||| exposed to . he is also entitled ||| 1 0.229811 1.49697e-06 1.2395e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| exposed to . he is also ||| 1 0.229811 1.49697e-06 2.53476e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| exposed to . he is ||| 1 0.229811 1.49697e-06 5.02073e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| exposed to . he ||| 1 0.229811 1.49697e-06 1.60196e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| exposed to . ||| 1 0.229811 1.49697e-06 1.83564e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| exposed to the ||| 0.0104167 0.229811 1.49697e-06 3.72048e-07 2.718 ||| 0-1 ||| 96 668016 +a ||| exposed to ||| 0.00943396 0.229811 7.48485e-06 6.06022e-06 2.718 ||| 0-1 ||| 530 668016 +a ||| exposed ||| 0.00424178 0.0357143 5.98788e-06 3.83e-05 2.718 ||| 0-0 ||| 943 668016 +a ||| exposing ||| 0.0103093 0.176471 1.49697e-06 3.01e-05 2.718 ||| 0-0 ||| 97 668016 +a ||| exposure to ||| 0.00438596 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-1 ||| 228 668016 +a ||| express enormous gratitude to ||| 1 0.229811 1.49697e-06 8.08961e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| expressed by ||| 0.00081367 0.0337966 1.49697e-06 7.99713e-07 2.718 ||| 0-1 ||| 1229 668016 +a ||| expressed in ||| 0.000972763 0.0587624 1.49697e-06 5.84002e-06 2.718 ||| 0-1 ||| 1028 668016 +a ||| expressed its preference for ||| 0.5 0.0683377 1.49697e-06 3.87814e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| expressed opposition after ||| 1 0.0341027 1.49697e-06 2.0872e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| expressed to you ||| 0.5 0.229811 1.49697e-06 1.09935e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| expressed to ||| 0.05 0.229811 2.99394e-06 3.40493e-05 2.718 ||| 0-1 ||| 40 668016 +a ||| expression of our ||| 0.0222222 0.0188479 1.49697e-06 1.66058e-09 2.718 ||| 0-1 ||| 45 668016 +a ||| expression of ||| 0.00236128 0.0188479 2.99394e-06 1.20384e-06 2.718 ||| 0-1 ||| 847 668016 +a ||| expression to ||| 0.0350877 0.229811 2.99394e-06 1.42573e-05 2.718 ||| 0-1 ||| 57 668016 +a ||| extend it to ||| 0.027027 0.229811 1.49697e-06 2.69114e-07 2.718 ||| 0-2 ||| 37 668016 +a ||| extend my compliments to ||| 0.333333 0.229811 1.49697e-06 2.43301e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| extend our sympathy to ||| 1 0.229811 1.49697e-06 3.23555e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| extend to ||| 0.01 0.229811 2.99394e-06 1.5133e-05 2.718 ||| 0-1 ||| 200 668016 +a ||| extended to ||| 0.0214844 0.229811 1.64667e-05 1.27159e-05 2.718 ||| 0-1 ||| 512 668016 +a ||| extended upon ||| 1 0.19056 1.49697e-06 7.15655e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| extending to comparisons ||| 0.25 0.229811 1.49697e-06 7.8993e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| extending to ||| 0.0151515 0.229811 1.49697e-06 7.18118e-06 2.718 ||| 0-1 ||| 66 668016 +a ||| extension , to ||| 0.1 0.229811 1.49697e-06 7.05999e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| extension to his ||| 0.5 0.229811 1.49697e-06 1.77899e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| extension to ||| 0.0229008 0.229811 4.49091e-06 5.9201e-06 2.718 ||| 0-1 ||| 131 668016 +a ||| extensive to ||| 0.25 0.229811 1.49697e-06 9.21293e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| extent , to ||| 0.030303 0.229811 1.49697e-06 8.02918e-06 2.718 ||| 0-2 ||| 33 668016 +a ||| extent a prerequisite for ||| 0.25 0.0683377 1.49697e-06 1.69521e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| extent generally affected by ||| 1 0.0337966 1.49697e-06 4.36009e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| extent of ||| 0.00146413 0.0188479 1.49697e-06 5.68499e-06 2.718 ||| 0-1 ||| 683 668016 +a ||| extent to which ||| 0.00352734 0.229811 2.99394e-06 5.71924e-07 2.718 ||| 0-1 ||| 567 668016 +a ||| extent to ||| 0.0101626 0.229811 7.48485e-06 6.7328e-05 2.718 ||| 0-1 ||| 492 668016 +a ||| externally ||| 0.00416667 0.0143885 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 240 668016 +a ||| extorted money from ||| 0.333333 0.0435582 1.49697e-06 8.23399e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| extra things into ||| 1 0.107578 1.49697e-06 6.19141e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| extra to watch ||| 1 0.229811 1.49697e-06 1.56375e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| extra to ||| 0.1 0.229811 1.49697e-06 8.68748e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| extradite ||| 0.0229885 0.338346 2.99394e-06 4.11e-05 2.718 ||| 0-0 ||| 87 668016 +a ||| extraordinarily positive reaction to ||| 1 0.229811 1.49697e-06 1.80905e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| extremely carefully in ||| 0.25 0.0587624 1.49697e-06 2.23747e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| extremely small on the ||| 0.5 0.0782999 1.49697e-06 2.8342e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| extremely small on ||| 0.5 0.0782999 1.49697e-06 4.61657e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| extremes of ||| 0.0666667 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| eye in ||| 0.0909091 0.0587624 1.49697e-06 3.41869e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| eye to ||| 0.0333333 0.229811 8.98182e-06 1.99322e-05 2.718 ||| 0-1 ||| 180 668016 +a ||| eyes , and ||| 0.0714286 0.0015873 1.49697e-06 1.34149e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| eyes of ||| 0.00483092 0.0188479 2.99394e-06 1.72443e-06 2.718 ||| 0-1 ||| 414 668016 +a ||| eyes off ||| 0.142857 0.0893962 1.49697e-06 4.45937e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| eyes on ||| 0.0625 0.0782999 1.49697e-06 2.21165e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| eyes to ||| 0.00552486 0.229811 1.49697e-06 2.04226e-05 2.718 ||| 0-1 ||| 181 668016 +a ||| face , ||| 0.00813008 0.124218 1.49697e-06 0.000121044 2.718 ||| 0-0 ||| 123 668016 +a ||| face against ||| 0.142857 0.05146 1.49697e-06 4.34896e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| face following ||| 1 0.0720432 1.49697e-06 1.64924e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| face in the ||| 0.0133333 0.0587624 1.49697e-06 6.17098e-07 2.718 ||| 0-1 ||| 75 668016 +a ||| face in ||| 0.00571429 0.0587624 1.49697e-06 1.00518e-05 2.718 ||| 0-1 ||| 175 668016 +a ||| face of ||| 0.0100548 0.0188479 1.64667e-05 4.94848e-06 2.718 ||| 0-1 ||| 1094 668016 +a ||| face payment ||| 0.5 0.124218 1.49697e-06 2.5578e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| face to face with a ||| 0.142857 0.0571592 1.49697e-06 1.8405e-12 2.718 ||| 0-3 ||| 7 668016 +a ||| face to face with ||| 0.0344828 0.0571592 1.49697e-06 4.1522e-11 2.718 ||| 0-3 ||| 29 668016 +a ||| face to face ||| 0.0277778 0.229811 1.49697e-06 9.80469e-09 2.718 ||| 0-1 ||| 36 668016 +a ||| face to ||| 0.0444444 0.229811 2.99394e-06 5.86055e-05 2.718 ||| 0-1 ||| 45 668016 +a ||| face up to the ||| 0.0052356 0.229811 1.49697e-06 1.22706e-08 2.718 ||| 0-2 ||| 191 668016 +a ||| face up to ||| 0.00189394 0.229811 1.49697e-06 1.99874e-07 2.718 ||| 0-2 ||| 528 668016 +a ||| face up ||| 0.00182482 0.124218 1.49697e-06 3.46166e-06 2.718 ||| 0-0 ||| 548 668016 +a ||| face various ||| 0.333333 0.124218 1.49697e-06 1.56716e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| face with a ||| 0.142857 0.0571592 1.49697e-06 1.23806e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| face with ||| 0.0535714 0.124218 4.49091e-06 6.49042e-06 2.718 ||| 0-0 ||| 56 668016 +a ||| face ||| 0.00817801 0.124218 6.43697e-05 0.001015 2.718 ||| 0-0 ||| 5258 668016 +a ||| faced by ||| 0.00149925 0.0416004 1.49697e-06 2.11776e-06 2.718 ||| 0-0 0-1 ||| 667 668016 +a ||| faced ongoing ||| 1 0.0494043 1.49697e-06 9.16344e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| faced up to ||| 0.037037 0.229811 1.49697e-06 7.56247e-08 2.718 ||| 0-2 ||| 27 668016 +a ||| faced with ||| 0.00649351 0.0571592 1.64667e-05 1.0568e-06 2.718 ||| 0-1 ||| 1694 668016 +a ||| faced ||| 0.00874404 0.0494043 1.64667e-05 0.0002574 2.718 ||| 0-0 ||| 1258 668016 +a ||| facelift with ||| 1 0.0571592 1.49697e-06 6.67804e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| faces by ||| 0.5 0.167846 1.49697e-06 1.25057e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| faces ||| 0.00472255 0.167846 5.98788e-06 0.0002382 2.718 ||| 0-0 ||| 847 668016 +a ||| facile recourse to ||| 0.333333 0.229811 1.49697e-06 1.70947e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| facilitated by ||| 0.0135135 0.0337966 1.49697e-06 2.9619e-08 2.718 ||| 0-1 ||| 74 668016 +a ||| facilitating access for ||| 0.05 0.0683377 1.49697e-06 1.48942e-11 2.718 ||| 0-2 ||| 20 668016 +a ||| facilities for ||| 0.0185185 0.0683377 2.99394e-06 5.71152e-07 2.718 ||| 0-1 ||| 108 668016 +a ||| facilities we have used in ||| 1 0.0587624 1.49697e-06 5.42431e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| facility for ||| 0.0212766 0.0683377 2.99394e-06 5.04824e-07 2.718 ||| 0-1 ||| 94 668016 +a ||| facing demands ||| 1 0.171799 1.49697e-06 5.35189e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| facing in ||| 0.0454545 0.0587624 1.49697e-06 3.2024e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| facing prosecution ||| 0.333333 0.171799 1.49697e-06 7.50654e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| facing ||| 0.00714054 0.171799 3.29333e-05 0.0013901 2.718 ||| 0-0 ||| 3081 668016 +a ||| fact , to keep on ||| 1 0.0782999 1.49697e-06 1.83464e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| fact , to make ||| 0.333333 0.229811 1.49697e-06 2.12658e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| fact , to ||| 0.0833333 0.229811 8.98182e-06 0.000122372 2.718 ||| 0-2 ||| 72 668016 +a ||| fact , try to act ||| 0.25 0.229811 1.49697e-06 3.20181e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| fact , try to ||| 0.25 0.229811 1.49697e-06 1.88453e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| fact a fortunate one in the sense ||| 1 0.0587624 1.49697e-06 1.67097e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| fact a fortunate one in the ||| 1 0.0587624 1.49697e-06 9.38219e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| fact a fortunate one in ||| 1 0.0587624 1.49697e-06 1.52825e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| fact at ||| 0.0952381 0.204175 2.99394e-06 9.96999e-05 2.718 ||| 0-1 ||| 21 668016 +a ||| fact come to ||| 0.5 0.229811 1.49697e-06 8.71499e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| fact gave to ||| 1 0.229811 1.49697e-06 8.56826e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| fact in ||| 0.020202 0.0587624 2.99394e-06 0.000176 2.718 ||| 0-1 ||| 99 668016 +a ||| fact of ||| 0.00406504 0.0188479 1.49697e-06 8.66443e-05 2.718 ||| 0-1 ||| 246 668016 +a ||| fact on ||| 0.0588235 0.0782999 1.49697e-06 0.000111125 2.718 ||| 0-1 ||| 17 668016 +a ||| fact that ||| 0.000149321 0.0008521 4.49091e-06 1.99983e-06 2.718 ||| 0-1 ||| 20091 668016 +a ||| fact to ||| 0.05 0.229811 4.49091e-06 0.00102614 2.718 ||| 0-1 ||| 60 668016 +a ||| fact with ||| 0.142857 0.0571592 1.49697e-06 4.8905e-05 2.718 ||| 0-1 ||| 7 668016 +a ||| factor in setting the course ||| 1 0.0587624 1.49697e-06 2.14869e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| factor in setting the ||| 1 0.0587624 1.49697e-06 1.70301e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| factor in setting ||| 1 0.0587624 1.49697e-06 2.77401e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| factor in ||| 0.0130435 0.0587624 4.49091e-06 2.92001e-06 2.718 ||| 0-1 ||| 230 668016 +a ||| factories to ||| 0.0769231 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| factors to ||| 0.037037 0.229811 1.49697e-06 1.0474e-05 2.718 ||| 0-1 ||| 27 668016 +a ||| fade out of the picture ||| 1 0.0188479 1.49697e-06 3.33031e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| fade out of the ||| 1 0.0188479 1.49697e-06 9.73775e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| fade out of ||| 1 0.0188479 1.49697e-06 1.58616e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| fail at ||| 0.166667 0.204175 1.49697e-06 1.83791e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| fail for ||| 0.2 0.0683377 1.49697e-06 1.98982e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| fail on occasion to ||| 0.25 0.229811 1.49697e-06 6.18922e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| fail take care to ||| 0.5 0.229811 1.49697e-06 3.0912e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| fail to deal ||| 0.2 0.229811 1.49697e-06 8.03186e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| fail to ||| 0.00762301 0.229811 1.64667e-05 1.89163e-05 2.718 ||| 0-1 ||| 1443 668016 +a ||| failed to deliver ||| 0.111111 0.229811 1.49697e-06 6.03023e-10 2.718 ||| 0-1 ||| 9 668016 +a ||| failed to received an extension ||| 1 0.229811 1.49697e-06 1.09395e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| failed to received an ||| 1 0.229811 1.49697e-06 6.47307e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| failed to received ||| 1 0.229811 1.49697e-06 1.45636e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| failed to ||| 0.00680272 0.229811 1.34727e-05 1.6254e-05 2.718 ||| 0-1 ||| 1323 668016 +a ||| failing in ||| 0.0333333 0.0587624 1.49697e-06 1.23169e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| failing to bring ||| 0.142857 0.229811 1.49697e-06 2.2355e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| failing to tackle ||| 0.25 0.229811 1.49697e-06 2.60677e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| failing to ||| 0.00857633 0.229811 7.48485e-06 7.18118e-06 2.718 ||| 0-1 ||| 583 668016 +a ||| failing ||| 0.000881834 0.0164766 1.49697e-06 2.37e-05 2.718 ||| 0-0 ||| 1134 668016 +a ||| fails to combine ||| 0.333333 0.229811 1.49697e-06 4.17875e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| fails to ||| 0.00589102 0.229811 5.98788e-06 5.28955e-06 2.718 ||| 0-1 ||| 679 668016 +a ||| failure to act persists ||| 0.25 0.229811 1.49697e-06 8.07754e-15 2.718 ||| 0-1 ||| 4 668016 +a ||| failure to act ||| 0.0144928 0.229811 1.49697e-06 2.78536e-09 2.718 ||| 0-1 ||| 69 668016 +a ||| failure to appreciate ||| 0.142857 0.229811 1.49697e-06 2.95094e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| failure to comply ||| 0.0333333 0.229811 1.49697e-06 7.67245e-10 2.718 ||| 0-1 ||| 30 668016 +a ||| failure to do ||| 0.0172414 0.229811 1.49697e-06 5.63187e-08 2.718 ||| 0-1 ||| 58 668016 +a ||| failure to enforce ||| 0.0769231 0.229811 1.49697e-06 1.65581e-10 2.718 ||| 0-1 ||| 13 668016 +a ||| failure to take due ||| 0.2 0.229811 1.49697e-06 7.29545e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| failure to take ||| 0.025641 0.229811 1.49697e-06 2.63945e-08 2.718 ||| 0-1 ||| 39 668016 +a ||| failure to ||| 0.00814212 0.229811 1.64667e-05 1.63941e-05 2.718 ||| 0-1 ||| 1351 668016 +a ||| fair share to ||| 0.166667 0.229811 1.49697e-06 1.69843e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| fair to ||| 0.00414938 0.229811 1.49697e-06 1.81456e-05 2.718 ||| 0-1 ||| 241 668016 +a ||| faith in ||| 0.00204918 0.0587624 1.49697e-06 8.89221e-07 2.718 ||| 0-1 ||| 488 668016 +a ||| faith with ||| 0.030303 0.0571592 1.49697e-06 2.47087e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| fall at the first hurdle ||| 0.5 0.204175 1.49697e-06 7.53627e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| fall at the first ||| 0.5 0.204175 1.49697e-06 1.07661e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| fall at the ||| 0.2 0.204175 1.49697e-06 1.99965e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| fall at ||| 0.166667 0.204175 1.49697e-06 3.25719e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| fall back on the ||| 0.0909091 0.0782999 1.49697e-06 1.49908e-10 2.718 ||| 0-2 ||| 11 668016 +a ||| fall back on ||| 0.0606061 0.0782999 2.99394e-06 2.44183e-09 2.718 ||| 0-2 ||| 33 668016 +a ||| fall hardest on ||| 0.333333 0.0782999 1.49697e-06 1.05283e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| fall in line with ||| 0.333333 0.0571592 1.49697e-06 1.0068e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| fall in ||| 0.00515464 0.0587624 2.99394e-06 5.7499e-06 2.718 ||| 0-1 ||| 388 668016 +a ||| fall into ||| 0.0169492 0.107578 5.98788e-06 5.81311e-07 2.718 ||| 0-1 ||| 236 668016 +a ||| fall on ||| 0.0208333 0.0782999 1.49697e-06 3.63044e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| fall to Member States at national level ||| 1 0.204175 1.49697e-06 7.823e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| fall to Member States at national ||| 1 0.204175 1.49697e-06 9.14543e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| fall to Member States at ||| 1 0.204175 1.49697e-06 7.11706e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| fall to us , ||| 0.5 0.229811 1.49697e-06 1.15227e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| fall to us ||| 0.142857 0.229811 1.49697e-06 9.66225e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| fall to ||| 0.0487805 0.229811 5.98788e-06 3.35239e-05 2.718 ||| 0-1 ||| 82 668016 +a ||| fall under ||| 0.0060241 0.0384416 1.49697e-06 1.35741e-07 2.718 ||| 0-1 ||| 166 668016 +a ||| fall within ||| 0.00478469 0.0123496 2.99394e-06 4.76012e-08 2.718 ||| 0-1 ||| 418 668016 +a ||| fallen back on ||| 0.5 0.0782999 1.49697e-06 3.85284e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| fallen way behind ||| 1 0.0923313 1.49697e-06 2.50762e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| falling in ||| 0.0434783 0.0587624 1.49697e-06 1.53811e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| falling into disrepair ||| 0.5 0.107578 1.49697e-06 6.22008e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| falling into ||| 0.030303 0.107578 4.49091e-06 1.55502e-07 2.718 ||| 0-1 ||| 99 668016 +a ||| falling of ||| 0.333333 0.0188479 1.49697e-06 7.5721e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| falling to ||| 0.0769231 0.229811 1.49697e-06 8.96772e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| falls in ||| 0.027027 0.0587624 1.49697e-06 1.88058e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| falls into ||| 0.0238095 0.107578 1.49697e-06 1.90126e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| falls to ||| 0.0217391 0.229811 4.49091e-06 1.09644e-05 2.718 ||| 0-1 ||| 138 668016 +a ||| falsified the vote for ||| 1 0.0683377 1.49697e-06 2.4909e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| familiar with ||| 0.00228833 0.0571592 1.49697e-06 2.58774e-07 2.718 ||| 0-1 ||| 437 668016 +a ||| families of ||| 0.00304878 0.0188479 1.49697e-06 2.45502e-07 2.718 ||| 0-1 ||| 328 668016 +a ||| famous for ||| 0.0322581 0.0683377 1.49697e-06 2.24776e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| fantastic way in which ||| 1 0.0587624 1.49697e-06 1.54024e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| fantastic way in ||| 0.5 0.0587624 1.49697e-06 1.81319e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| far , in ||| 0.05 0.0587624 1.49697e-06 4.89163e-06 2.718 ||| 0-2 ||| 20 668016 +a ||| far and ||| 0.0083682 0.0015873 2.99394e-06 1.31727e-06 2.718 ||| 0-1 ||| 239 668016 +a ||| far as possible , although ||| 1 0.0921822 1.49697e-06 9.68915e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| far as possible , to ||| 0.03125 0.229811 1.49697e-06 2.33434e-10 2.718 ||| 0-4 ||| 32 668016 +a ||| far as to view ||| 1 0.229811 1.49697e-06 2.20441e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| far as to ||| 0.129496 0.229811 2.69455e-05 2.44039e-06 2.718 ||| 0-2 ||| 139 668016 +a ||| far as ||| 0.00607903 0.0243476 4.7903e-05 5.98892e-06 2.718 ||| 0-1 ||| 5264 668016 +a ||| far back ||| 0.0344828 0.0536618 1.49697e-06 5.02262e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| far before ||| 0.333333 0.0203282 2.99394e-06 3.62036e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| far behind ||| 0.00943396 0.0923313 1.49697e-06 5.25952e-07 2.718 ||| 0-1 ||| 106 668016 +a ||| far enough to ||| 0.0833333 0.229811 1.49697e-06 3.95077e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| far for ||| 0.027027 0.0683377 1.49697e-06 2.51565e-05 2.718 ||| 0-1 ||| 37 668016 +a ||| far from being ||| 0.00404858 0.0435582 1.49697e-06 1.3986e-08 2.718 ||| 0-1 ||| 247 668016 +a ||| far from ||| 0.00192678 0.0435582 4.49091e-06 4.91462e-06 2.718 ||| 0-1 ||| 1557 668016 +a ||| far lower than ||| 0.0666667 0.0242272 1.49697e-06 2.1967e-11 2.718 ||| 0-2 ||| 15 668016 +a ||| far off ||| 0.0222222 0.0893962 1.49697e-06 5.22197e-07 2.718 ||| 0-1 ||| 45 668016 +a ||| far over ||| 0.333333 0.0682544 1.49697e-06 1.58584e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| far removed from ||| 0.00689655 0.0435582 1.49697e-06 2.22632e-10 2.718 ||| 0-2 ||| 145 668016 +a ||| far they go back into the ||| 1 0.107578 1.49697e-06 3.26852e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| far they go back into ||| 1 0.107578 1.49697e-06 5.32403e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| far to ||| 0.012987 0.229811 1.49697e-06 0.000239151 2.718 ||| 0-1 ||| 77 668016 +a ||| fares to ||| 0.166667 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| farmers have to ||| 0.0555556 0.229811 1.49697e-06 1.68838e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| farmers in ||| 0.00179211 0.0587624 1.49697e-06 2.42132e-06 2.718 ||| 0-1 ||| 558 668016 +a ||| farmers with ||| 0.0147059 0.0571592 1.49697e-06 6.72813e-07 2.718 ||| 0-1 ||| 68 668016 +a ||| farmers ||| 0.000350018 0.0034615 4.49091e-06 4.2e-05 2.718 ||| 0-0 ||| 8571 668016 +a ||| farming at ||| 0.5 0.204175 1.49697e-06 5.03724e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| farther away ||| 0.142857 0.0377856 1.49697e-06 9.42e-11 2.718 ||| 0-1 ||| 7 668016 +a ||| fashion for no reason other ||| 1 0.0683377 1.49697e-06 3.12891e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| fashion for no reason ||| 1 0.0683377 1.49697e-06 2.41521e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| fashion for no ||| 1 0.0683377 1.49697e-06 1.03258e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| fashion for ||| 0.142857 0.0683377 1.49697e-06 1.32655e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| fashion to ||| 0.3 0.229811 4.49091e-06 1.26109e-05 2.718 ||| 0-1 ||| 10 668016 +a ||| fast and ||| 0.00729927 0.0015873 1.49697e-06 3.55028e-08 2.718 ||| 0-1 ||| 137 668016 +a ||| fast ||| 0.000925926 0.001442 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 1080 668016 +a ||| father ||| 0.00229358 0.0023474 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 436 668016 +a ||| fault of the ||| 0.0107527 0.0188479 1.49697e-06 2.86909e-08 2.718 ||| 0-1 ||| 93 668016 +a ||| fault of ||| 0.00502513 0.0188479 1.49697e-06 4.6734e-07 2.718 ||| 0-1 ||| 199 668016 +a ||| fault to find ||| 0.166667 0.229811 1.49697e-06 1.84252e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| fault to ||| 0.142857 0.229811 1.49697e-06 5.53477e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| favour and ||| 0.0060241 0.0016469 1.49697e-06 6.52171e-08 2.718 ||| 0-0 0-1 ||| 166 668016 +a ||| favour of distribution by the ||| 1 0.0337966 1.49697e-06 1.82103e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| favour of distribution by ||| 1 0.0337966 1.49697e-06 2.96625e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| favour of ||| 0.00124249 0.0188479 2.69455e-05 9.56864e-06 2.718 ||| 0-1 ||| 14487 668016 +a ||| favour with ||| 0.0285714 0.0571592 1.49697e-06 5.40086e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| favour ||| 0.00068173 0.0017065 2.09576e-05 3.38e-05 2.718 ||| 0-0 ||| 20536 668016 +a ||| favourable treatment of ||| 0.25 0.0188479 1.49697e-06 3.47163e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| favoured by ||| 0.0196078 0.0337966 1.49697e-06 4.44285e-08 2.718 ||| 0-1 ||| 51 668016 +a ||| favoured measures according to ||| 1 0.229811 1.49697e-06 3.46369e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| favoured status to ||| 1 0.229811 1.49697e-06 1.91244e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| favouring ||| 0.00595238 0.178998 2.99394e-06 6.85e-05 2.718 ||| 0-0 ||| 336 668016 +a ||| favours and encourages ||| 1 0.222874 1.49697e-06 8.16551e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| favours and ||| 0.166667 0.222874 1.49697e-06 1.73734e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| favours being done ||| 1 0.222874 1.49697e-06 1.79989e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| favours being ||| 1 0.222874 1.49697e-06 3.94712e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| favours partisan ideals ||| 1 0.222874 1.49697e-06 1.43416e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| favours partisan ||| 1 0.222874 1.49697e-06 3.0514e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| favours ||| 0.0138889 0.222874 1.04788e-05 0.0001387 2.718 ||| 0-0 ||| 504 668016 +a ||| fear of ||| 0.00138889 0.0188479 1.49697e-06 6.50727e-07 2.718 ||| 0-1 ||| 720 668016 +a ||| fear over ||| 1 0.0682544 1.49697e-06 5.11038e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| feasible at ||| 0.111111 0.204175 1.49697e-06 2.31441e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| feature of the ||| 0.015625 0.0188479 1.49697e-06 4.90287e-08 2.718 ||| 0-1 ||| 64 668016 +a ||| feature of ||| 0.0078125 0.0188479 1.49697e-06 7.98619e-07 2.718 ||| 0-1 ||| 128 668016 +a ||| feature to ||| 0.25 0.229811 1.49697e-06 9.45814e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| featured at all ||| 1 0.204175 1.49697e-06 4.6641e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| featured at ||| 0.333333 0.204175 1.49697e-06 9.87027e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| features offering increased ||| 1 0.103522 1.49697e-06 1.61954e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| features offering ||| 1 0.103522 1.49697e-06 3.25864e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| features on ||| 0.111111 0.0782999 1.49697e-06 6.98015e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| fed into ||| 0.0416667 0.107578 1.49697e-06 5.04167e-08 2.718 ||| 0-1 ||| 24 668016 +a ||| fed to ||| 0.0540541 0.229811 2.99394e-06 2.9075e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| fed up ||| 0.0243902 0.0195077 1.49697e-06 1.01891e-08 2.718 ||| 0-1 ||| 41 668016 +a ||| fed with ||| 0.027027 0.0571592 1.49697e-06 1.38569e-07 2.718 ||| 0-1 ||| 37 668016 +a ||| fed ||| 0.0037037 0.0022573 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 270 668016 +a ||| feed him for ||| 0.0588235 0.0683377 1.49697e-06 2.20915e-10 2.718 ||| 0-2 ||| 17 668016 +a ||| feed used , will ||| 1 0.0561595 1.49697e-06 1.34738e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| feedback on ||| 0.05 0.0782999 1.49697e-06 5.31098e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| feeding ||| 0.013089 0.117534 7.48485e-06 5.57e-05 2.718 ||| 0-0 ||| 382 668016 +a ||| feel , will ||| 0.5 0.0561595 1.49697e-06 2.84011e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| feel at work ||| 1 0.204175 1.49697e-06 3.64316e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| feel at ||| 0.0172414 0.204175 1.49697e-06 5.75539e-06 2.718 ||| 0-1 ||| 58 668016 +a ||| feel like giving ||| 1 0.136521 1.49697e-06 3.02887e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| feel on ||| 0.25 0.0782999 1.49697e-06 6.41491e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| feeling of ||| 0.00597015 0.0188479 2.99394e-06 1.0737e-06 2.718 ||| 0-1 ||| 335 668016 +a ||| feeling our way ahead ||| 0.25 0.0033708 1.49697e-06 1.78257e-15 2.718 ||| 0-0 ||| 4 668016 +a ||| feeling our way ||| 0.25 0.0033708 1.49697e-06 1.63539e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| feeling our ||| 0.2 0.0033708 1.49697e-06 7.5867e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| feeling ||| 0.0014245 0.0033708 4.49091e-06 5.5e-06 2.718 ||| 0-0 ||| 2106 668016 +a ||| feels in response ||| 1 0.0587624 1.49697e-06 7.33006e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| feels in ||| 0.333333 0.0587624 1.49697e-06 7.33006e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| feels is more appropriately directed towards ||| 1 0.155507 1.49697e-06 7.00545e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| fees to ||| 0.125 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| feet of ||| 0.037037 0.0188479 1.49697e-06 5.53118e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| feet to ||| 1 0.229811 1.49697e-06 6.55064e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| feet with regard to ||| 0.25 0.229811 1.49697e-06 2.85216e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| fell apart when one ||| 0.5 0.0055468 1.49697e-06 1.1925e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| fell apart when ||| 0.5 0.0055468 1.49697e-06 2.86109e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| fellow Members , ||| 0.00203666 0.0001191 1.49697e-06 2.59045e-12 2.718 ||| 0-2 ||| 491 668016 +a ||| fellow ||| 0.00373832 0.0021796 1.19758e-05 1.37e-05 2.718 ||| 0-0 ||| 2140 668016 +a ||| felt after ||| 0.333333 0.0341027 1.49697e-06 4.79794e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| felt by ||| 0.0247934 0.0337966 4.49091e-06 4.70613e-07 2.718 ||| 0-1 ||| 121 668016 +a ||| felt in ||| 0.00980392 0.0587624 1.49697e-06 3.43672e-06 2.718 ||| 0-1 ||| 102 668016 +a ||| felt to hold ||| 0.25 0.229811 1.49697e-06 3.49049e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| felt to ||| 0.0344828 0.229811 1.49697e-06 2.00373e-05 2.718 ||| 0-1 ||| 29 668016 +a ||| fetching about ||| 1 0.0526361 1.49697e-06 2.01572e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| few countries in ||| 0.0909091 0.0587624 1.49697e-06 3.99918e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| few examples of ||| 0.025 0.0188479 1.49697e-06 8.97024e-11 2.718 ||| 0-2 ||| 40 668016 +a ||| few minutes to ||| 0.125 0.229811 1.49697e-06 9.94808e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| few of ||| 0.00298507 0.0188479 1.49697e-06 5.18511e-06 2.718 ||| 0-1 ||| 335 668016 +a ||| few words about ||| 0.00714286 0.0526361 1.49697e-06 1.99646e-10 2.718 ||| 0-2 ||| 140 668016 +a ||| few words to ||| 0.037037 0.229811 1.49697e-06 1.38782e-08 2.718 ||| 0-2 ||| 27 668016 +a ||| field , for ||| 0.25 0.0683377 1.49697e-06 6.42016e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| field for ||| 0.00537634 0.0683377 1.49697e-06 5.38357e-06 2.718 ||| 0-1 ||| 186 668016 +a ||| field of ||| 0.000400962 0.0188479 2.99394e-06 4.32142e-06 2.718 ||| 0-1 ||| 4988 668016 +a ||| field to ||| 0.0136986 0.229811 1.49697e-06 5.11791e-05 2.718 ||| 0-1 ||| 73 668016 +a ||| field will ||| 0.0714286 0.0561595 1.49697e-06 2.05763e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| fields at ||| 0.142857 0.204175 1.49697e-06 1.26271e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| fields of ||| 0.00138504 0.0188479 1.49697e-06 1.09736e-06 2.718 ||| 0-1 ||| 722 668016 +a ||| fight against trafficking ||| 0.0142857 0.05146 1.49697e-06 1.70447e-12 2.718 ||| 0-1 ||| 70 668016 +a ||| fight against ||| 0.000133743 0.05146 1.49697e-06 1.43232e-07 2.718 ||| 0-1 ||| 7477 668016 +a ||| fight for ||| 0.00207254 0.0683377 2.99394e-06 2.03035e-06 2.718 ||| 0-1 ||| 965 668016 +a ||| fight to realise ||| 1 0.229811 1.49697e-06 4.99912e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| fight to ||| 0.00623053 0.229811 2.99394e-06 1.93016e-05 2.718 ||| 0-1 ||| 321 668016 +a ||| fighters on ||| 0.5 0.0782999 1.49697e-06 6.82841e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| fighting for a social , democratic , ||| 1 0.0683377 1.49697e-06 1.95867e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| fighting for a social , democratic ||| 1 0.0683377 1.49697e-06 1.64243e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| fighting for a social , ||| 1 0.0683377 1.49697e-06 5.49307e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| fighting for a social ||| 1 0.0683377 1.49697e-06 4.60616e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| fighting for a ||| 0.0357143 0.0683377 1.49697e-06 4.45902e-08 2.718 ||| 0-1 ||| 28 668016 +a ||| fighting for ||| 0.00197628 0.0683377 1.49697e-06 1.00596e-06 2.718 ||| 0-1 ||| 506 668016 +a ||| fighting in the ||| 0.05 0.0587624 1.49697e-06 1.00698e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| fighting in ||| 0.028169 0.0587624 2.99394e-06 1.64025e-06 2.718 ||| 0-1 ||| 71 668016 +a ||| figure for ||| 0.0135135 0.0683377 1.49697e-06 2.81154e-06 2.718 ||| 0-1 ||| 74 668016 +a ||| figure in the order ||| 1 0.0587624 1.49697e-06 1.49894e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| figure in the ||| 0.0384615 0.0587624 1.49697e-06 2.81438e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| figure in ||| 0.0117647 0.0587624 1.49697e-06 4.58429e-06 2.718 ||| 0-1 ||| 85 668016 +a ||| figure of around ||| 0.2 0.0559891 1.49697e-06 2.04131e-09 2.718 ||| 0-1 0-2 ||| 5 668016 +a ||| figures for funding in ||| 1 0.0683377 1.49697e-06 1.938e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| figures for funding ||| 1 0.0683377 1.49697e-06 9.05416e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| figures for ||| 0.00584795 0.0683377 1.49697e-06 1.69872e-06 2.718 ||| 0-1 ||| 171 668016 +a ||| figures in ||| 0.00990099 0.0587624 1.49697e-06 2.7698e-06 2.718 ||| 0-1 ||| 101 668016 +a ||| figures to substantiate these claims . ||| 1 0.229811 1.49697e-06 1.68524e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| figures to substantiate these claims ||| 1 0.229811 1.49697e-06 5.56369e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| figures to substantiate these ||| 1 0.229811 1.49697e-06 1.84228e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| figures to substantiate ||| 1 0.229811 1.49697e-06 1.77638e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| figures to ||| 0.0238095 0.229811 1.49697e-06 1.61489e-05 2.718 ||| 0-1 ||| 42 668016 +a ||| file to ||| 0.125 0.229811 1.49697e-06 2.9075e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| filed with ||| 0.333333 0.0571592 1.49697e-06 4.84158e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| filters exist and ||| 1 0.0015873 1.49697e-06 1.24395e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| final question is to ||| 0.5 0.229811 1.49697e-06 6.93017e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| final shot in ||| 0.5 0.0587624 1.49697e-06 5.13441e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| final stage and ||| 0.25 0.0015873 1.49697e-06 2.2039e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| finalised , and ||| 0.142857 0.0015873 1.49697e-06 9.20408e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| finally , is to ||| 1 0.229811 1.49697e-06 1.54102e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| finally , to ||| 0.00990099 0.229811 1.49697e-06 4.91693e-06 2.718 ||| 0-2 ||| 101 668016 +a ||| finally decides to ||| 0.333333 0.229811 1.49697e-06 1.93783e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| finally going to ||| 0.142857 0.229811 1.49697e-06 3.52851e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| finally thrown in ||| 0.333333 0.0587624 1.49697e-06 1.95886e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| finally to begin putting in place ||| 1 0.0587624 1.49697e-06 6.24368e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| finally to begin putting in ||| 1 0.0587624 1.49697e-06 4.14862e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| finally to ||| 0.0193237 0.229811 5.98788e-06 4.12305e-05 2.718 ||| 0-1 ||| 207 668016 +a ||| finance to ||| 0.0285714 0.229811 1.49697e-06 6.55064e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| financed humanitarian aid to Ingushetia ; ||| 1 0.229811 1.49697e-06 4.45495e-25 2.718 ||| 0-3 ||| 1 668016 +a ||| financed humanitarian aid to Ingushetia ||| 1 0.229811 1.49697e-06 1.44641e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| financed humanitarian aid to ||| 0.5 0.229811 1.49697e-06 3.61603e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| financial assistance for ||| 0.00763359 0.0683377 1.49697e-06 2.23427e-10 2.718 ||| 0-2 ||| 131 668016 +a ||| financial conglomerates to ||| 1 0.229811 1.49697e-06 1.70947e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| financial crime , crime in the cities ||| 0.5 0.0587624 1.49697e-06 1.81673e-21 2.718 ||| 0-4 ||| 2 668016 +a ||| financial crime , crime in the ||| 0.5 0.0587624 1.49697e-06 9.51169e-17 2.718 ||| 0-4 ||| 2 668016 +a ||| financial crime , crime in ||| 0.5 0.0587624 1.49697e-06 1.54934e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| financial ||| 2.96842e-05 3.06e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 33688 668016 +a ||| financially beneficial for ||| 0.5 0.0683377 1.49697e-06 1.91612e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| financially unstable ||| 1 0.0054526 1.49697e-06 5.06e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| financially ||| 0.00114943 0.0054526 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 870 668016 +a ||| find at ||| 0.125 0.204175 1.49697e-06 1.13304e-05 2.718 ||| 0-1 ||| 8 668016 +a ||| find in ||| 0.0108696 0.0587624 1.49697e-06 2.00015e-05 2.718 ||| 0-1 ||| 92 668016 +a ||| find it impossible to ||| 0.0526316 0.229811 1.49697e-06 1.11155e-10 2.718 ||| 0-3 ||| 19 668016 +a ||| find it to accept ||| 1 0.229811 1.49697e-06 2.24592e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| find it to ||| 0.333333 0.229811 2.99394e-06 2.0738e-06 2.718 ||| 0-2 ||| 6 668016 +a ||| find myself in ||| 0.0294118 0.0587624 1.49697e-06 3.11023e-09 2.718 ||| 0-2 ||| 34 668016 +a ||| find our way through ||| 0.5 0.230708 1.49697e-06 7.86847e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| find ourselves at the ||| 0.0769231 0.204175 1.49697e-06 2.21268e-10 2.718 ||| 0-2 ||| 13 668016 +a ||| find ourselves at ||| 0.0454545 0.204175 1.49697e-06 3.6042e-09 2.718 ||| 0-2 ||| 22 668016 +a ||| find ourselves in ||| 0.00675676 0.0587624 1.49697e-06 6.36247e-09 2.718 ||| 0-2 ||| 148 668016 +a ||| find out about ||| 0.0175439 0.0669777 1.49697e-06 1.93083e-09 2.718 ||| 0-1 ||| 57 668016 +a ||| find out ||| 0.00132802 0.0669777 1.49697e-06 1.36522e-06 2.718 ||| 0-1 ||| 753 668016 +a ||| find peace again ||| 1 0.0700825 1.49697e-06 3.21839e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| find them fighting for a social , ||| 1 0.0683377 1.49697e-06 4.90515e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| find them fighting for a social ||| 1 0.0683377 1.49697e-06 4.11317e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| find them fighting for a ||| 1 0.0683377 1.49697e-06 3.98177e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| find them fighting for ||| 1 0.0683377 1.49697e-06 8.98297e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| find themselves in ||| 0.00775194 0.0587624 1.49697e-06 8.59463e-09 2.718 ||| 0-2 ||| 129 668016 +a ||| find themselves trapped in ||| 0.5 0.0587624 1.49697e-06 3.43785e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| find yourself in ||| 0.1 0.0587624 1.49697e-06 9.00066e-10 2.718 ||| 0-2 ||| 10 668016 +a ||| finding ourselves in ||| 0.0833333 0.0587624 1.49697e-06 1.01868e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| finding themselves in ||| 0.111111 0.0587624 1.49697e-06 1.37607e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| finds itself in ||| 0.0163934 0.0587624 1.49697e-06 4.97492e-10 2.718 ||| 0-2 ||| 61 668016 +a ||| fine a point on ||| 0.333333 0.0782999 1.49697e-06 4.76604e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| fined ||| 0.027027 0.110236 2.99394e-06 1.28e-05 2.718 ||| 0-0 ||| 74 668016 +a ||| finger at ||| 0.266667 0.204175 1.19758e-05 5.99023e-07 2.718 ||| 0-1 ||| 30 668016 +a ||| finger firmly on ||| 0.5 0.0782999 1.49697e-06 2.52378e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| finger on ||| 0.0208333 0.0782999 1.49697e-06 6.67667e-07 2.718 ||| 0-1 ||| 48 668016 +a ||| fingers at ||| 0.0769231 0.204175 1.49697e-06 9.87027e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| finish at ||| 0.0909091 0.204175 1.49697e-06 2.58669e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| finished at ||| 0.0666667 0.204175 1.49697e-06 2.6888e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| finishing touches to ||| 0.0344828 0.229811 1.49697e-06 1.15389e-11 2.718 ||| 0-2 ||| 29 668016 +a ||| fire in ||| 0.025 0.0587624 1.49697e-06 1.08148e-06 2.718 ||| 0-1 ||| 40 668016 +a ||| fire on ||| 0.0416667 0.0782999 1.49697e-06 6.82841e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| fired off on the ||| 0.5 0.0782999 1.49697e-06 4.07587e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| fired off on ||| 0.5 0.0782999 1.49697e-06 6.63911e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| fires are frequent in ||| 1 0.0587624 1.49697e-06 2.39116e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| firing on ||| 0.166667 0.0782999 2.99394e-06 1.51742e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| firm : ||| 1 0.0007376 1.49697e-06 1.71022e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| firm message to ||| 0.2 0.229811 1.49697e-06 6.19663e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| firm on ||| 0.0133333 0.0782999 1.49697e-06 1.39224e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| firm stand against ||| 0.0833333 0.05146 1.49697e-06 1.57222e-11 2.718 ||| 0-2 ||| 12 668016 +a ||| firm to ||| 0.0434783 0.229811 1.49697e-06 1.28561e-05 2.718 ||| 0-1 ||| 23 668016 +a ||| firm with you , on behalf of ||| 1 0.0782999 1.49697e-06 5.93531e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| firm with you , on behalf ||| 1 0.0782999 1.49697e-06 1.09177e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| firm with you , on ||| 1 0.0782999 1.49697e-06 3.42786e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| firmly annexed to ||| 0.333333 0.229811 1.49697e-06 2.91311e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| firmly at ||| 0.111111 0.204175 1.49697e-06 1.28654e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| firmly declare itself in ||| 0.333333 0.0587624 1.49697e-06 3.32944e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| firmly in ||| 0.0309278 0.0587624 4.49091e-06 2.27112e-06 2.718 ||| 0-1 ||| 97 668016 +a ||| firmly into touch ||| 1 0.107578 1.49697e-06 5.05139e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| firmly into ||| 0.142857 0.107578 1.49697e-06 2.29609e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| firmly of ||| 0.05 0.0188479 1.49697e-06 1.11807e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| firmly on ||| 0.0263158 0.0782999 2.99394e-06 1.43397e-06 2.718 ||| 0-1 ||| 76 668016 +a ||| firmly to ||| 0.027027 0.229811 1.49697e-06 1.32414e-05 2.718 ||| 0-1 ||| 37 668016 +a ||| first and main ||| 0.333333 0.0015873 1.49697e-06 1.03573e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| first and ||| 0.00095511 0.0015873 2.99394e-06 1.03884e-06 2.718 ||| 0-1 ||| 2094 668016 +a ||| first glance , to ||| 0.25 0.229811 1.49697e-06 5.62293e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| first of all , ||| 0.000314564 0.0188479 1.49697e-06 8.97419e-09 2.718 ||| 0-1 ||| 3179 668016 +a ||| first of all ||| 0.000162232 0.0188479 1.49697e-06 7.52523e-08 2.718 ||| 0-1 ||| 6164 668016 +a ||| first of ||| 0.001016 0.0188479 5.98788e-06 1.59251e-05 2.718 ||| 0-1 ||| 3937 668016 +a ||| first on the automobile industry ||| 1 0.0782999 1.49697e-06 2.31896e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| first on the automobile ||| 1 0.0782999 1.49697e-06 1.75546e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| first on the ||| 0.0232558 0.0782999 1.49697e-06 1.2539e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| first on ||| 0.0114943 0.0782999 1.49697e-06 2.04245e-05 2.718 ||| 0-1 ||| 87 668016 +a ||| first place to play a kind of ||| 0.5 0.0188479 1.49697e-06 1.18853e-17 2.718 ||| 0-6 ||| 2 668016 +a ||| first reason relates to its legal basis ||| 1 0.229811 1.49697e-06 1.3591e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| first reason relates to its legal ||| 1 0.229811 1.49697e-06 2.28882e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| first reason relates to its ||| 1 0.229811 1.49697e-06 1.76607e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| first reason relates to ||| 1 0.229811 1.49697e-06 1.23961e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| first request is that a meeting of ||| 1 0.0188479 1.49697e-06 3.58513e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| first step on ||| 0.0175439 0.0782999 1.49697e-06 3.01262e-09 2.718 ||| 0-2 ||| 57 668016 +a ||| first time in ||| 0.00210526 0.0587624 1.49697e-06 5.31064e-08 2.718 ||| 0-2 ||| 475 668016 +a ||| first to the ||| 0.0263158 0.229811 1.49697e-06 1.15786e-05 2.718 ||| 0-1 ||| 38 668016 +a ||| first to ||| 0.00381679 0.229811 4.49091e-06 0.000188602 2.718 ||| 0-1 ||| 786 668016 +a ||| first with ||| 0.03125 0.0571592 1.49697e-06 8.98864e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| firstly for ||| 0.04 0.0683377 1.49697e-06 1.85716e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| firstly like to ||| 0.0126582 0.229811 1.49697e-06 3.13539e-08 2.718 ||| 0-2 ||| 79 668016 +a ||| firstly to tell me which ||| 1 0.229811 1.49697e-06 8.86739e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| firstly to tell me ||| 1 0.229811 1.49697e-06 1.04389e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| firstly to tell ||| 1 0.229811 1.49697e-06 1.73374e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| firstly to ||| 0.00995025 0.229811 2.99394e-06 1.76552e-05 2.718 ||| 0-1 ||| 201 668016 +a ||| fiscal incentives to achieve ||| 0.142857 0.229811 1.49697e-06 2.80954e-15 2.718 ||| 0-2 ||| 7 668016 +a ||| fiscal incentives to ||| 0.125 0.229811 1.49697e-06 1.22956e-11 2.718 ||| 0-2 ||| 8 668016 +a ||| fish to ||| 0.0204082 0.229811 1.49697e-06 1.1595e-05 2.718 ||| 0-1 ||| 49 668016 +a ||| fisheries on ||| 0.0909091 0.0782999 1.49697e-06 9.97706e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| fisheries policy , which , over three ||| 1 0.0682544 1.49697e-06 1.83929e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| fisheries policy , which , over ||| 1 0.0682544 1.49697e-06 2.90567e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| fisheries policy for ||| 0.111111 0.0683377 1.49697e-06 3.81541e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| fishermen to do ||| 0.5 0.229811 1.49697e-06 5.65594e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| fishermen to ||| 0.0121951 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 82 668016 +a ||| fit . at all events ||| 1 0.204175 1.49697e-06 1.14749e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| fit . at all ||| 1 0.204175 1.49697e-06 1.57839e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| fit . at ||| 1 0.204175 1.49697e-06 3.34022e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| fit for the purpose in the ||| 1 0.0683377 1.49697e-06 1.73269e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| fit for the purpose in ||| 1 0.0683377 1.49697e-06 2.82235e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| fit for the purpose ||| 0.333333 0.0683377 1.49697e-06 1.31858e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| fit for the ||| 0.0243902 0.0683377 1.49697e-06 7.32951e-08 2.718 ||| 0-1 ||| 41 668016 +a ||| fit for ||| 0.00617284 0.0683377 1.49697e-06 1.19389e-06 2.718 ||| 0-1 ||| 162 668016 +a ||| fit in ||| 0.0119048 0.0587624 1.49697e-06 1.94667e-06 2.718 ||| 0-1 ||| 84 668016 +a ||| fit to ||| 0.00909091 0.229811 1.49697e-06 1.13498e-05 2.718 ||| 0-1 ||| 110 668016 +a ||| fit within ||| 0.1 0.0123496 1.49697e-06 1.61158e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| fitted to ||| 0.0606061 0.229811 2.99394e-06 3.29284e-06 2.718 ||| 0-1 ||| 33 668016 +a ||| fitting out ||| 0.1 0.0669777 1.49697e-06 2.95272e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| five minutes to ||| 0.0416667 0.229811 1.49697e-06 1.12363e-10 2.718 ||| 0-2 ||| 24 668016 +a ||| fixing of ||| 0.0217391 0.0188479 1.49697e-06 1.06483e-07 2.718 ||| 0-1 ||| 46 668016 +a ||| flag for ||| 0.0769231 0.0683377 1.49697e-06 2.5057e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| flash in the ||| 0.166667 0.0587624 1.49697e-06 9.22143e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| flash in ||| 0.142857 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| flash over into ||| 1 0.107578 1.49697e-06 7.31194e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| flat , with ||| 0.333333 0.0571592 1.49697e-06 6.3711e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| flee en masse , ||| 1 0.010582 1.49697e-06 1.11193e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| flee en masse ||| 1 0.010582 1.49697e-06 9.324e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| flee en ||| 1 0.010582 1.49697e-06 1.332e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| fleeces ||| 0.6 0.8 4.49091e-06 3.7e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| flesh from ||| 1 0.0435582 1.49697e-06 4.39127e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| fleshed out ||| 0.0263158 0.0669777 1.49697e-06 1.02525e-08 2.718 ||| 0-1 ||| 38 668016 +a ||| flexibility over the scope of ||| 1 0.0188479 1.49697e-06 1.25528e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| flight ban of ||| 0.5 0.0188479 1.49697e-06 8.9963e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| flight in ||| 0.166667 0.0587624 1.49697e-06 4.74652e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| flights to ||| 0.0212766 0.229811 1.49697e-06 2.9075e-06 2.718 ||| 0-1 ||| 47 668016 +a ||| flooding into ||| 0.0588235 0.107578 1.49697e-06 4.25201e-09 2.718 ||| 0-1 ||| 17 668016 +a ||| floor of ||| 0.047619 0.0188479 2.99394e-06 1.25709e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| floor to ||| 0.00603318 0.229811 5.98788e-06 1.48878e-05 2.718 ||| 0-1 ||| 663 668016 +a ||| flow in the ||| 0.5 0.0587624 1.49697e-06 6.63943e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| flow in ||| 0.111111 0.0587624 1.49697e-06 1.08148e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| flow into the ||| 0.166667 0.107578 1.49697e-06 6.71242e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| flow into ||| 0.0588235 0.107578 1.49697e-06 1.09337e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| flowers to ||| 0.142857 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| flown home to ||| 1 0.229811 1.49697e-06 7.82223e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| fly at ||| 0.25 0.204175 1.49697e-06 3.91407e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| fly in ||| 0.0338983 0.0587624 2.99394e-06 6.90949e-07 2.718 ||| 0-1 ||| 59 668016 +a ||| focus of ||| 0.00255754 0.0188479 1.49697e-06 2.28938e-06 2.718 ||| 0-1 ||| 391 668016 +a ||| focus on the quality of olive oil ||| 1 0.0782999 1.49697e-06 1.02852e-22 2.718 ||| 0-1 ||| 1 668016 +a ||| focus on the quality of olive ||| 1 0.0782999 1.49697e-06 2.94704e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| focus on the quality of ||| 0.25 0.0782999 1.49697e-06 4.83122e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| focus on the quality ||| 0.2 0.0782999 1.49697e-06 8.8868e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| focus on the ||| 0.00139665 0.0782999 1.49697e-06 1.8026e-07 2.718 ||| 0-1 ||| 716 668016 +a ||| focus on ||| 0.00375657 0.0782999 1.49697e-05 2.93622e-06 2.718 ||| 0-1 ||| 2662 668016 +a ||| focus to be ||| 1 0.229811 1.49697e-06 4.91372e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| focus to ||| 0.0769231 0.229811 2.99394e-06 2.71133e-05 2.718 ||| 0-1 ||| 26 668016 +a ||| focus upon a ||| 0.5 0.19056 1.49697e-06 6.76386e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| focus upon ||| 0.0204082 0.19056 1.49697e-06 1.52594e-07 2.718 ||| 0-1 ||| 49 668016 +a ||| focused message to ||| 0.5 0.229811 1.49697e-06 3.76525e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| focused on ||| 0.0078329 0.0782999 8.98182e-06 8.45964e-07 2.718 ||| 0-1 ||| 766 668016 +a ||| focusing its attention on ||| 0.2 0.0782999 1.49697e-06 2.85273e-13 2.718 ||| 0-3 ||| 5 668016 +a ||| focusing on and ||| 0.5 0.0782999 1.49697e-06 9.59859e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| focusing on ||| 0.0055325 0.0782999 5.98788e-06 7.66299e-07 2.718 ||| 0-1 ||| 723 668016 +a ||| focussing on ||| 0.0232558 0.0782999 1.49697e-06 5.31098e-08 2.718 ||| 0-1 ||| 43 668016 +a ||| fodder crops from ||| 1 0.0435582 1.49697e-06 1.70324e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| follow in ||| 0.0133333 0.0587624 1.49697e-06 5.94817e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| follow on to ||| 0.5 0.0782999 1.49697e-06 3.33718e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| follow on ||| 0.0119048 0.0782999 1.49697e-06 3.75562e-06 2.718 ||| 0-1 ||| 84 668016 +a ||| follow that up ||| 0.333333 0.0008521 1.49697e-06 2.30506e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| follow that ||| 0.0212766 0.0008521 1.49697e-06 6.75873e-08 2.718 ||| 0-1 ||| 47 668016 +a ||| follow up . I would like to ||| 1 0.229811 1.49697e-06 2.64113e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| follow up by ||| 0.2 0.0337966 1.49697e-06 2.77793e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| follow up on ||| 0.0114943 0.0782999 1.49697e-06 1.28086e-08 2.718 ||| 0-2 ||| 87 668016 +a ||| follow up ||| 0.00210084 0.0195077 1.49697e-06 1.21532e-07 2.718 ||| 0-1 ||| 476 668016 +a ||| follow ||| 0.000645995 0.0017301 2.99394e-06 8.2e-06 2.718 ||| 0-0 ||| 3096 668016 +a ||| follow-up at ||| 0.166667 0.204175 1.49697e-06 4.9011e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| follow-up to Parliament 's opinion ||| 0.5 0.229811 1.49697e-06 1.35316e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| follow-up to Parliament 's ||| 0.333333 0.229811 1.49697e-06 5.5141e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| follow-up to Parliament ||| 0.166667 0.229811 1.49697e-06 2.89545e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| follow-up to ||| 0.00859599 0.229811 4.49091e-06 5.04434e-06 2.718 ||| 0-1 ||| 349 668016 +a ||| followed as a ||| 1 0.0243476 1.49697e-06 2.78412e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| followed as ||| 0.166667 0.0243476 1.49697e-06 6.28104e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| followed by ||| 0.00230947 0.0337966 2.99394e-06 5.89089e-07 2.718 ||| 0-1 ||| 866 668016 +a ||| followed exactly in ||| 1 0.0587624 1.49697e-06 4.31911e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| followed on ||| 0.111111 0.0782999 2.99394e-06 2.71619e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| followed up by ||| 0.0128205 0.0337966 1.49697e-06 2.00909e-09 2.718 ||| 0-2 ||| 78 668016 +a ||| followed up ||| 0.00607903 0.0192747 2.99394e-06 2.36689e-07 2.718 ||| 0-0 ||| 329 668016 +a ||| followed ||| 0.0015674 0.0192747 5.98788e-06 6.94e-05 2.718 ||| 0-0 ||| 2552 668016 +a ||| followers of ||| 0.03125 0.0188479 1.49697e-06 2.07049e-08 2.718 ||| 0-1 ||| 32 668016 +a ||| following a period ||| 0.0714286 0.0720432 1.49697e-06 7.62502e-09 2.718 ||| 0-0 ||| 14 668016 +a ||| following a ||| 0.0218069 0.0720432 2.09576e-05 4.36964e-05 2.718 ||| 0-0 ||| 642 668016 +a ||| following amendments ||| 0.00613497 0.0720432 1.49697e-06 7.52165e-08 2.718 ||| 0-0 ||| 163 668016 +a ||| following an ||| 0.0127389 0.0720432 2.99394e-06 4.38159e-06 2.718 ||| 0-0 ||| 157 668016 +a ||| following comment from ||| 1 0.0435582 1.49697e-06 4.20443e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| following countries : ||| 0.333333 0.0007376 1.49697e-06 2.2613e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| following in ||| 0.0185185 0.0587624 1.49697e-06 7.67854e-06 2.718 ||| 0-1 ||| 54 668016 +a ||| following objectives ||| 0.0384615 0.0720432 1.49697e-06 4.61354e-08 2.718 ||| 0-0 ||| 26 668016 +a ||| following on from ||| 0.00406504 0.0646338 1.49697e-06 2.69213e-07 2.718 ||| 0-0 0-1 0-2 ||| 246 668016 +a ||| following on ||| 0.00790514 0.0751716 2.99394e-06 3.73969e-05 2.718 ||| 0-0 0-1 ||| 253 668016 +a ||| following partners : ||| 1 0.0720432 1.49697e-06 8.49965e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| following partners ||| 1 0.0720432 1.49697e-06 2.52365e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| following phrase should be added to the ||| 1 0.229811 1.49697e-06 2.09293e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| following phrase should be added to ||| 1 0.229811 1.49697e-06 3.40913e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| following points ||| 0.00568182 0.0720432 1.49697e-06 1.28055e-07 2.718 ||| 0-0 ||| 176 668016 +a ||| following political talks , ||| 1 0.0720432 1.49697e-06 5.51897e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| following political talks ||| 1 0.0720432 1.49697e-06 4.62789e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| following political ||| 0.111111 0.0720432 1.49697e-06 1.75965e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| following question . ||| 0.0322581 0.0720432 1.49697e-06 2.47031e-09 2.718 ||| 0-0 ||| 31 668016 +a ||| following question : ||| 0.0116279 0.0720432 1.49697e-06 2.74678e-10 2.718 ||| 0-0 ||| 86 668016 +a ||| following question ||| 0.0104712 0.0720432 2.99394e-06 8.15552e-07 2.718 ||| 0-0 ||| 191 668016 +a ||| following the decisions of ||| 0.333333 0.0720432 1.49697e-06 2.51035e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| following the decisions ||| 0.0555556 0.0720432 1.49697e-06 4.61768e-09 2.718 ||| 0-0 ||| 18 668016 +a ||| following the ||| 0.00221828 0.0720432 1.49697e-05 6.052e-05 2.718 ||| 0-0 ||| 4508 668016 +a ||| following things : ||| 0.333333 0.0720432 1.49697e-06 1.36459e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| following things ||| 0.2 0.0720432 1.49697e-06 4.05164e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| following this ceremony ||| 0.5 0.0720432 1.49697e-06 1.40132e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| following this ||| 0.00425532 0.0720432 1.49697e-06 6.36965e-06 2.718 ||| 0-0 ||| 235 668016 +a ||| following to ||| 0.111111 0.150927 2.99394e-06 0.000345327 2.718 ||| 0-0 0-1 ||| 18 668016 +a ||| following up ||| 0.00534759 0.0720432 1.49697e-06 3.36207e-06 2.718 ||| 0-0 ||| 187 668016 +a ||| following ways , and on a ||| 1 0.0782999 1.49697e-06 3.09454e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| following ways , and on ||| 1 0.0782999 1.49697e-06 6.98135e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| following your speech ||| 0.1 0.0720432 1.49697e-06 1.1352e-11 2.718 ||| 0-0 ||| 10 668016 +a ||| following your ||| 0.0181818 0.0720432 1.49697e-06 2.52266e-07 2.718 ||| 0-0 ||| 55 668016 +a ||| following ||| 0.00732303 0.0720432 0.000175145 0.0009858 2.718 ||| 0-0 ||| 15977 668016 +a ||| food for thought to a ||| 1 0.0683377 1.49697e-06 6.51281e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| food for thought to ||| 0.333333 0.0683377 1.49697e-06 1.46931e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| food for thought ||| 0.0107527 0.0683377 1.49697e-06 1.65354e-10 2.718 ||| 0-1 ||| 93 668016 +a ||| food for ||| 0.0123457 0.0683377 2.99394e-06 1.98982e-06 2.718 ||| 0-1 ||| 162 668016 +a ||| food to ||| 0.0103093 0.229811 1.49697e-06 1.89163e-05 2.718 ||| 0-1 ||| 97 668016 +a ||| foolishness in terms ||| 0.333333 0.0587624 1.49697e-06 2.63786e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| foolishness in ||| 0.333333 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| foot and onto ||| 1 0.104365 1.49697e-06 1.02492e-11 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| foot in Spain on ||| 1 0.0782999 1.49697e-06 2.9334e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| foot to drive ||| 0.25 0.229811 1.49697e-06 2.35914e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| foot to ||| 0.2 0.229811 1.49697e-06 7.81173e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| foothold in ||| 0.0526316 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| footing in the ||| 0.2 0.0587624 1.49697e-06 7.96732e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| footing in ||| 0.0714286 0.0587624 1.49697e-06 1.29778e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| footing with ||| 0.00704225 0.0571592 1.49697e-06 3.60614e-07 2.718 ||| 0-1 ||| 142 668016 +a ||| footsteps of ||| 0.0285714 0.0188479 1.49697e-06 4.14099e-08 2.718 ||| 0-1 ||| 35 668016 +a ||| for ' ||| 0.00711744 0.0683377 2.99394e-06 0.000126571 2.718 ||| 0-0 ||| 281 668016 +a ||| for ( ||| 0.125 0.0683377 1.49697e-06 3.55367e-05 2.718 ||| 0-0 ||| 8 668016 +a ||| for , and on ||| 1 0.0683377 1.49697e-06 3.68295e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| for , and ||| 0.00980392 0.0683377 1.49697e-06 5.50433e-05 2.718 ||| 0-0 ||| 102 668016 +a ||| for , for example , ||| 0.166667 0.0683377 1.49697e-06 1.17246e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| for , for example ||| 0.25 0.0683377 1.49697e-06 9.83153e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| for , for ||| 0.125 0.0683377 1.49697e-06 3.37737e-05 2.718 ||| 0-0 ||| 8 668016 +a ||| for , though , is ||| 1 0.0683377 1.49697e-06 4.07814e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for , though , ||| 1 0.0683377 1.49697e-06 1.30121e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| for , though ||| 1 0.0683377 1.49697e-06 1.09112e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| for , ||| 0.0347924 0.0683377 4.64061e-05 0.00439436 2.718 ||| 0-0 ||| 891 668016 +a ||| for . ||| 0.00286533 0.0683377 1.49697e-06 0.000111614 2.718 ||| 0-0 ||| 349 668016 +a ||| for 54 years ||| 0.25 0.0683377 1.49697e-06 8.78026e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| for 54 ||| 0.25 0.0683377 1.49697e-06 5.15879e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| for ? ||| 0.0227273 0.0683377 1.49697e-06 6.29741e-06 2.718 ||| 0-0 ||| 44 668016 +a ||| for Afghan ||| 1 0.0683377 1.49697e-06 6.63273e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| for American ||| 0.25 0.0683377 1.49697e-06 9.43322e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| for Certain ||| 0.5 0.0683377 1.49697e-06 4.05334e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| for EUR ||| 0.0967742 0.0390516 4.49091e-06 5.61571e-06 2.718 ||| 0-0 0-1 ||| 31 668016 +a ||| for Europe to ||| 0.00299401 0.229811 1.49697e-06 1.36231e-06 2.718 ||| 0-2 ||| 334 668016 +a ||| for Europe ||| 0.000464576 0.0683377 2.99394e-06 1.86453e-05 2.718 ||| 0-0 ||| 4305 668016 +a ||| for European ||| 0.0223464 0.0683377 5.98788e-06 0.000123218 2.718 ||| 0-0 ||| 179 668016 +a ||| for Fisheries ||| 0.0136986 0.0683377 1.49697e-06 2.39515e-07 2.718 ||| 0-0 ||| 73 668016 +a ||| for Foreign Affairs ||| 0.0017762 0.0683377 1.49697e-06 4.01e-11 2.718 ||| 0-0 ||| 563 668016 +a ||| for Foreign ||| 0.1 0.0683377 1.49697e-06 4.49552e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| for Fundamental Rights to ||| 0.111111 0.229811 1.49697e-06 8.87386e-13 2.718 ||| 0-3 ||| 9 668016 +a ||| for Gaza must be forthcoming ; ||| 1 0.0683377 1.49697e-06 4.08411e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| for Gaza must be forthcoming ||| 1 0.0683377 1.49697e-06 1.32601e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| for Gaza must be ||| 1 0.0683377 1.49697e-06 2.99325e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| for Gaza must ||| 1 0.0683377 1.49697e-06 1.65164e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for Gaza ||| 0.0833333 0.0683377 1.49697e-06 1.06861e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| for Greek and ||| 1 0.0683377 1.49697e-06 6.64647e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for Greek ||| 0.5 0.0683377 1.49697e-06 5.30618e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| for Human ||| 0.0666667 0.0683377 1.49697e-06 1.49973e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| for Iraq ||| 0.00952381 0.0683377 1.49697e-06 4.64291e-07 2.718 ||| 0-0 ||| 105 668016 +a ||| for Italian ||| 1 0.0683377 1.49697e-06 6.89067e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| for Kosovo 's ||| 1 0.0683377 1.49697e-06 1.71927e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for Kosovo ||| 0.00413223 0.0683377 1.49697e-06 9.02788e-07 2.718 ||| 0-0 ||| 242 668016 +a ||| for Lithuania . ( da ) - ||| 0.5 0.0683377 1.49697e-06 1.60604e-23 2.718 ||| 0-0 ||| 2 668016 +a ||| for Lithuania . ( da ) ||| 0.5 0.0683377 1.49697e-06 4.25767e-21 2.718 ||| 0-0 ||| 2 668016 +a ||| for Lithuania . ( da ||| 0.5 0.0683377 1.49697e-06 2.96227e-18 2.718 ||| 0-0 ||| 2 668016 +a ||| for Lithuania . ( ||| 0.5 0.0683377 1.49697e-06 3.4445e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| for Lithuania . ||| 0.125 0.0683377 1.49697e-06 3.57165e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| for Lithuania ||| 0.02 0.0683377 1.49697e-06 1.17915e-07 2.718 ||| 0-0 ||| 50 668016 +a ||| for Making ||| 1 0.0683377 1.49697e-06 1.47394e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| for OLAF , in ||| 1 0.0683377 1.49697e-06 7.14848e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for OLAF , ||| 0.0714286 0.0683377 1.49697e-06 3.33971e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| for OLAF ||| 0.0135135 0.0683377 1.49697e-06 2.80049e-07 2.718 ||| 0-0 ||| 74 668016 +a ||| for Parliament to issue ||| 0.2 0.229811 1.49697e-06 1.16955e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| for Parliament to ||| 0.00283286 0.229811 1.49697e-06 1.54539e-06 2.718 ||| 0-2 ||| 353 668016 +a ||| for Poland ||| 0.0140845 0.0683377 1.49697e-06 2.24776e-07 2.718 ||| 0-0 ||| 71 668016 +a ||| for Russia ||| 0.00497512 0.0683377 1.49697e-06 1.48499e-06 2.718 ||| 0-0 ||| 201 668016 +a ||| for Ukraine , ||| 0.04 0.0683377 1.49697e-06 4.4383e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| for Ukraine ||| 0.00632911 0.0683377 1.49697e-06 3.7217e-07 2.718 ||| 0-0 ||| 158 668016 +a ||| for a Council ||| 0.0196078 0.0683377 1.49697e-06 5.64809e-07 2.718 ||| 0-0 ||| 51 668016 +a ||| for a Europe of Nations ||| 0.00649351 0.0683377 1.49697e-06 1.69836e-12 2.718 ||| 0-0 ||| 154 668016 +a ||| for a Europe of ||| 0.0083682 0.0683377 2.99394e-06 4.49302e-08 2.718 ||| 0-0 ||| 239 668016 +a ||| for a Europe ||| 0.00623053 0.0683377 2.99394e-06 8.2647e-07 2.718 ||| 0-0 ||| 321 668016 +a ||| for a directive ||| 0.000573723 0.0683377 1.49697e-06 1.82281e-07 2.718 ||| 0-0 ||| 1743 668016 +a ||| for a few ||| 0.0047619 0.0683377 1.49697e-06 2.86324e-07 2.718 ||| 0-0 ||| 210 668016 +a ||| for a little more flexibility , because ||| 1 0.0683377 1.49697e-06 3.40775e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| for a little more flexibility , ||| 1 0.0683377 1.49697e-06 1.03705e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| for a little more flexibility ||| 1 0.0683377 1.49697e-06 8.69611e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| for a little more ||| 0.0833333 0.0683377 1.49697e-06 6.03896e-10 2.718 ||| 0-0 ||| 12 668016 +a ||| for a little ||| 0.0333333 0.0683377 1.49697e-06 2.64438e-07 2.718 ||| 0-0 ||| 30 668016 +a ||| for a long time ||| 0.000829187 0.0683377 1.49697e-06 9.07136e-10 2.718 ||| 0-0 ||| 1206 668016 +a ||| for a long ||| 0.00178253 0.0683377 2.99394e-06 5.52559e-07 2.718 ||| 0-0 ||| 1122 668016 +a ||| for a meeting ||| 0.0344828 0.0683377 1.49697e-06 2.05147e-07 2.718 ||| 0-0 ||| 29 668016 +a ||| for a moment ||| 0.00416667 0.0683377 1.49697e-06 2.95144e-07 2.718 ||| 0-0 ||| 240 668016 +a ||| for a more ||| 0.0357143 0.0683377 1.49697e-06 3.73006e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| for a national missile defence programme . ||| 1 0.0683377 1.49697e-06 2.24513e-24 2.718 ||| 0-0 ||| 1 668016 +a ||| for a national missile defence programme ||| 1 0.0683377 1.49697e-06 7.41212e-22 2.718 ||| 0-0 ||| 1 668016 +a ||| for a national missile defence ||| 1 0.0683377 1.49697e-06 5.81799e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| for a national missile ||| 1 0.0683377 1.49697e-06 2.30873e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| for a national ||| 0.333333 0.0683377 1.49697e-06 2.09884e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| for a period of ||| 0.0104167 0.0683377 2.99394e-06 1.54947e-08 2.718 ||| 0-0 ||| 192 668016 +a ||| for a period ||| 0.00816326 0.0683377 2.99394e-06 2.85018e-07 2.718 ||| 0-0 ||| 245 668016 +a ||| for a resolution ||| 0.000287687 0.0683377 1.49697e-06 1.42754e-07 2.718 ||| 0-0 ||| 3476 668016 +a ||| for a ride ||| 0.0357143 0.0683377 1.49697e-06 9.47337e-09 2.718 ||| 0-0 ||| 28 668016 +a ||| for a second time ||| 0.0263158 0.0683377 1.49697e-06 1.74563e-10 2.718 ||| 0-0 ||| 38 668016 +a ||| for a second ||| 0.00671141 0.0683377 1.49697e-06 1.0633e-07 2.718 ||| 0-0 ||| 149 668016 +a ||| for a simple ||| 0.1 0.0683377 1.49697e-06 7.05603e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| for a social , democratic , mutually ||| 1 0.0683377 1.49697e-06 4.6635e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| for a social , democratic , ||| 1 0.0683377 1.49697e-06 7.17462e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| for a social , democratic ||| 1 0.0683377 1.49697e-06 6.01622e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| for a social , ||| 1 0.0683377 1.49697e-06 2.01211e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| for a social ||| 1 0.0683377 1.49697e-06 1.68724e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| for a targeted ||| 1 0.0683377 1.49697e-06 4.58968e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| for a very ||| 0.0121951 0.0683377 1.49697e-06 5.6832e-06 2.718 ||| 0-0 ||| 82 668016 +a ||| for a whole ||| 0.02 0.0683377 1.49697e-06 9.2398e-07 2.718 ||| 0-0 ||| 50 668016 +a ||| for a willingness ||| 0.25 0.0683377 1.49697e-06 2.12334e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| for a ||| 0.00505217 0.0683377 0.000206582 0.00163334 2.718 ||| 0-0 ||| 27315 668016 +a ||| for access to ||| 0.00442478 0.149075 1.49697e-06 1.1101e-06 2.718 ||| 0-0 0-2 ||| 226 668016 +a ||| for accession ||| 0.00171527 0.0683377 1.49697e-06 1.35234e-06 2.718 ||| 0-0 ||| 583 668016 +a ||| for achieving ||| 0.00161031 0.0683377 1.49697e-06 2.43937e-06 2.718 ||| 0-0 ||| 621 668016 +a ||| for action by ||| 0.0322581 0.0337966 1.49697e-06 1.91157e-08 2.718 ||| 0-2 ||| 31 668016 +a ||| for action ||| 0.00107527 0.0683377 1.49697e-06 1.11393e-05 2.718 ||| 0-0 ||| 930 668016 +a ||| for activity ||| 0.111111 0.0683377 1.49697e-06 1.97508e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| for activity ’ ||| 0.333333 0.0683377 1.49697e-06 3.44079e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| for actual ||| 0.0714286 0.0683377 1.49697e-06 5.33198e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| for additional measures . ||| 0.5 0.0683377 1.49697e-06 1.22162e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| for additional measures ||| 0.0833333 0.0683377 1.49697e-06 4.03307e-10 2.718 ||| 0-0 ||| 12 668016 +a ||| for additional ||| 0.0238095 0.0683377 1.49697e-06 1.94929e-06 2.718 ||| 0-0 ||| 42 668016 +a ||| for administrative ||| 0.142857 0.0683377 1.49697e-06 7.55394e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| for adoption to ||| 0.2 0.229811 1.49697e-06 1.24116e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| for adoption ||| 0.0162602 0.0683377 2.99394e-06 1.69872e-06 2.718 ||| 0-0 ||| 123 668016 +a ||| for aid ||| 0.005 0.0683377 1.49697e-06 4.81241e-06 2.718 ||| 0-0 ||| 200 668016 +a ||| for all , and ||| 0.02 0.0683377 1.49697e-06 2.60101e-07 2.718 ||| 0-0 ||| 50 668016 +a ||| for all , be of central importance ||| 1 0.0683377 1.49697e-06 7.25512e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| for all , be of central ||| 1 0.0683377 1.49697e-06 5.58516e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| for all , be of ||| 1 0.0683377 1.49697e-06 2.04585e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| for all , be ||| 1 0.0683377 2.99394e-06 3.76324e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| for all , ||| 0.0103093 0.0683377 5.98788e-06 2.07651e-05 2.718 ||| 0-0 ||| 388 668016 +a ||| for all at the ||| 0.5 0.0683377 1.49697e-06 4.47624e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| for all at ||| 0.2 0.0683377 1.49697e-06 7.29126e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| for all of this ||| 0.0526316 0.0683377 1.49697e-06 6.11641e-08 2.718 ||| 0-0 ||| 19 668016 +a ||| for all of ||| 0.00381679 0.0683377 4.49091e-06 9.46607e-06 2.718 ||| 0-0 ||| 786 668016 +a ||| for all similar ||| 1 0.0683377 1.49697e-06 7.01719e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for all the ||| 0.000764526 0.0683377 1.49697e-06 1.06898e-05 2.718 ||| 0-0 ||| 1308 668016 +a ||| for all to ||| 0.00833333 0.0683377 1.49697e-06 1.54723e-05 2.718 ||| 0-0 ||| 120 668016 +a ||| for all ||| 0.00410655 0.0683377 5.53879e-05 0.000174124 2.718 ||| 0-0 ||| 9010 668016 +a ||| for an awful ||| 1 0.0683377 1.49697e-06 1.35938e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for an explanation ||| 0.05 0.0683377 1.49697e-06 3.17734e-09 2.718 ||| 0-0 ||| 20 668016 +a ||| for an indefinite ||| 0.333333 0.0683377 1.49697e-06 1.14646e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| for an ||| 0.00341978 0.0683377 1.79636e-05 0.000163781 2.718 ||| 0-0 ||| 3509 668016 +a ||| for and ||| 0.0078125 0.0683377 4.49091e-06 0.000461561 2.718 ||| 0-0 ||| 384 668016 +a ||| for another example , ||| 1 0.0683377 1.49697e-06 3.08414e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for another example ||| 1 0.0683377 1.49697e-06 2.58618e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for another ||| 0.00268817 0.0683377 1.49697e-06 8.88417e-06 2.718 ||| 0-0 ||| 372 668016 +a ||| for any of ||| 0.0263158 0.0683377 1.49697e-06 3.02929e-06 2.718 ||| 0-0 ||| 38 668016 +a ||| for any ||| 0.00383142 0.0683377 5.98788e-06 5.57223e-05 2.718 ||| 0-0 ||| 1044 668016 +a ||| for anybody to carry out ||| 1 0.229811 1.49697e-06 1.49497e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| for anybody to carry ||| 1 0.229811 1.49697e-06 3.90291e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| for anybody to ||| 0.25 0.229811 1.49697e-06 2.12693e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| for around ||| 0.0273973 0.0683377 2.99394e-06 4.90822e-06 2.718 ||| 0-0 ||| 73 668016 +a ||| for as a ||| 0.25 0.0683377 1.49697e-06 1.66672e-05 2.718 ||| 0-0 ||| 4 668016 +a ||| for as far ||| 0.166667 0.0683377 1.49697e-06 2.56707e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| for as well as ||| 0.5 0.0683377 1.49697e-06 6.08399e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| for as well ||| 0.333333 0.0683377 1.49697e-06 5.96212e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| for as ||| 0.0150754 0.0683377 4.49091e-06 0.000376017 2.718 ||| 0-0 ||| 199 668016 +a ||| for assistance ||| 0.00492611 0.0683377 1.49697e-06 1.83137e-06 2.718 ||| 0-0 ||| 203 668016 +a ||| for assisting ||| 0.025 0.160043 1.49697e-06 8.47516e-06 2.718 ||| 0-0 0-1 ||| 40 668016 +a ||| for at a ||| 0.166667 0.0683377 1.49697e-06 6.83944e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| for at ||| 0.0148148 0.136256 5.98788e-06 0.00125415 2.718 ||| 0-0 0-1 ||| 270 668016 +a ||| for basing ||| 0.1 0.0683377 1.49697e-06 1.58449e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| for because ||| 0.166667 0.0683377 1.49697e-06 1.21084e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| for being ||| 0.003663 0.0683377 2.99394e-06 0.000104863 2.718 ||| 0-0 ||| 546 668016 +a ||| for both the ||| 0.00480769 0.0683377 1.49697e-06 3.74733e-06 2.718 ||| 0-0 ||| 208 668016 +a ||| for both ||| 0.00796178 0.0683377 1.49697e-05 6.10395e-05 2.718 ||| 0-0 ||| 1256 668016 +a ||| for budget ||| 0.1 0.0683377 1.49697e-06 4.5471e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| for by them ||| 1 0.0683377 1.49697e-06 5.18933e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| for by ||| 0.0236486 0.0683377 1.04788e-05 0.000193458 2.718 ||| 0-0 ||| 296 668016 +a ||| for cancer ||| 0.0555556 0.0683377 1.49697e-06 3.46376e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| for capital punishment , torture or ||| 0.333333 0.0683377 1.49697e-06 4.1119e-21 2.718 ||| 0-0 ||| 3 668016 +a ||| for capital punishment , torture ||| 0.333333 0.0683377 1.49697e-06 3.59652e-18 2.718 ||| 0-0 ||| 3 668016 +a ||| for capital punishment , ||| 0.333333 0.0683377 1.49697e-06 8.99129e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| for capital punishment ||| 0.333333 0.0683377 1.49697e-06 7.53957e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| for capital ||| 0.0153846 0.0683377 1.49697e-06 9.54376e-07 2.718 ||| 0-0 ||| 65 668016 +a ||| for central ||| 0.333333 0.0683377 1.49697e-06 1.00596e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| for certain ||| 0.00272851 0.0683377 2.99394e-06 1.05018e-05 2.718 ||| 0-0 ||| 733 668016 +a ||| for citizens ||| 0.00122549 0.0683377 1.49697e-06 4.01649e-06 2.718 ||| 0-0 ||| 816 668016 +a ||| for coal ||| 0.0384615 0.0683377 1.49697e-06 1.98982e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| for coming here at ||| 0.5 0.0683377 1.49697e-06 6.07942e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| for coming here ||| 0.0344828 0.0683377 1.49697e-06 1.45184e-08 2.718 ||| 0-0 ||| 29 668016 +a ||| for coming ||| 0.00917431 0.0683377 1.49697e-06 7.15966e-06 2.718 ||| 0-0 ||| 109 668016 +a ||| for commercial ||| 0.05 0.0683377 1.49697e-06 7.03806e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| for communities ||| 0.047619 0.0683377 1.49697e-06 4.90085e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| for compliance with ||| 0.0169492 0.0683377 1.49697e-06 5.41944e-09 2.718 ||| 0-0 ||| 59 668016 +a ||| for compliance ||| 0.0196078 0.0683377 1.49697e-06 8.47515e-07 2.718 ||| 0-0 ||| 51 668016 +a ||| for compromise ||| 0.0138889 0.0683377 1.49697e-06 1.66924e-06 2.718 ||| 0-0 ||| 72 668016 +a ||| for concern ||| 0.00206612 0.0683377 1.49697e-06 4.91927e-06 2.718 ||| 0-0 ||| 484 668016 +a ||| for concerns ||| 0.333333 0.0683377 1.49697e-06 2.75995e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| for consideration ||| 0.00813008 0.0683377 1.49697e-06 3.97964e-06 2.718 ||| 0-0 ||| 123 668016 +a ||| for consultation with ||| 0.0555556 0.0683377 1.49697e-06 3.48729e-09 2.718 ||| 0-0 ||| 18 668016 +a ||| for consultation ||| 0.0151515 0.0683377 2.99394e-06 5.45358e-07 2.718 ||| 0-0 ||| 132 668016 +a ||| for consumers , ||| 0.00434783 0.0683377 1.49697e-06 1.64349e-07 2.718 ||| 0-0 ||| 230 668016 +a ||| for consumers ||| 0.000803213 0.0683377 1.49697e-06 1.37813e-06 2.718 ||| 0-0 ||| 1245 668016 +a ||| for cooperation ||| 0.00133511 0.0683377 1.49697e-06 3.39375e-06 2.718 ||| 0-0 ||| 749 668016 +a ||| for country-specific ||| 1 0.0683377 1.49697e-06 1.47394e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| for criminal ||| 0.0357143 0.0683377 1.49697e-06 1.53658e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| for cross-border ||| 0.05 0.0683377 1.49697e-06 3.7217e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| for cultivation which could be ||| 0.5 0.0683377 1.49697e-06 3.34811e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| for cultivation which could ||| 0.5 0.0683377 1.49697e-06 1.84745e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| for cultivation which ||| 0.5 0.0683377 1.49697e-06 2.59801e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| for cultivation ||| 0.0714286 0.0683377 1.49697e-06 3.05843e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| for cultural ||| 0.0588235 0.0683377 1.49697e-06 8.62255e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| for dairy ||| 0.25 0.0683377 1.49697e-06 1.84243e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| for debate ||| 0.00395257 0.0683377 1.49697e-06 7.29232e-06 2.718 ||| 0-0 ||| 253 668016 +a ||| for decision ||| 0.015873 0.0683377 1.49697e-06 5.79627e-06 2.718 ||| 0-0 ||| 63 668016 +a ||| for deliberation ||| 0.111111 0.0683377 1.49697e-06 4.05334e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| for detail ||| 1 0.0683377 1.49697e-06 1.88296e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| for discussion ||| 0.00447427 0.0683377 2.99394e-06 3.18371e-06 2.718 ||| 0-0 ||| 447 668016 +a ||| for doing so ||| 0.0233645 0.0683377 7.48485e-06 3.07024e-08 2.718 ||| 0-0 ||| 214 668016 +a ||| for doing ||| 0.0262009 0.0683377 8.98182e-06 1.35271e-05 2.718 ||| 0-0 ||| 229 668016 +a ||| for due ||| 0.2 0.0683377 1.49697e-06 1.01849e-05 2.718 ||| 0-0 ||| 5 668016 +a ||| for each Member State to have ||| 0.333333 0.229811 1.49697e-06 5.5983e-16 2.718 ||| 0-4 ||| 3 668016 +a ||| for each Member State to ||| 0.04 0.229811 1.49697e-06 4.68093e-14 2.718 ||| 0-4 ||| 25 668016 +a ||| for each energy source ||| 0.5 0.0683377 1.49697e-06 5.85738e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| for each energy ||| 1 0.0683377 1.49697e-06 9.19526e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for each ||| 0.00187793 0.0683377 2.99394e-06 1.03434e-05 2.718 ||| 0-0 ||| 1065 668016 +a ||| for early ||| 0.0172414 0.0683377 1.49697e-06 2.49464e-06 2.718 ||| 0-0 ||| 58 668016 +a ||| for effort and dare ||| 1 0.188525 1.49697e-06 1.60941e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| for election at ||| 0.25 0.0683377 1.49697e-06 3.67233e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| for election ||| 0.011236 0.0683377 1.49697e-06 8.76994e-07 2.718 ||| 0-0 ||| 89 668016 +a ||| for elections at a ||| 1 0.0683377 1.49697e-06 2.4622e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for elections at ||| 1 0.0683377 1.49697e-06 5.55478e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for elections ||| 0.0133333 0.0683377 1.49697e-06 1.32655e-06 2.718 ||| 0-0 ||| 75 668016 +a ||| for energy production ||| 0.04 0.0683377 1.49697e-06 2.73532e-10 2.718 ||| 0-0 ||| 25 668016 +a ||| for energy ||| 0.00352113 0.0683377 1.49697e-06 3.27583e-06 2.718 ||| 0-0 ||| 284 668016 +a ||| for ensuring ||| 0.0032 0.0683377 2.99394e-06 4.2818e-06 2.718 ||| 0-0 ||| 625 668016 +a ||| for entire ||| 0.333333 0.0683377 1.49697e-06 2.9184e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| for establishing this ||| 0.2 0.0683377 1.49697e-06 1.11427e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| for establishing ||| 0.00265957 0.0683377 1.49697e-06 1.72451e-06 2.718 ||| 0-0 ||| 376 668016 +a ||| for ever and ever ||| 0.5 0.0683377 1.49697e-06 1.6296e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| for ever and ||| 0.0625 0.0683377 1.49697e-06 8.67272e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| for ever ||| 0.0222222 0.0683377 4.49091e-06 6.92383e-06 2.718 ||| 0-0 ||| 135 668016 +a ||| for example , be able to ||| 0.333333 0.0683377 1.49697e-06 1.71988e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| for example , be able ||| 0.25 0.0683377 1.49697e-06 1.93553e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| for example , be ||| 0.1 0.0683377 2.99394e-06 2.31828e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| for example , our immigration policy does ||| 1 0.0683377 1.49697e-06 6.33435e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| for example , our immigration policy ||| 1 0.0683377 1.49697e-06 9.03101e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| for example , our immigration ||| 1 0.0683377 1.49697e-06 2.29388e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| for example , our ||| 0.0333333 0.0683377 1.49697e-06 1.76452e-09 2.718 ||| 0-0 ||| 30 668016 +a ||| for example , that ||| 0.00229885 0.0683377 1.49697e-06 2.15181e-08 2.718 ||| 0-0 ||| 435 668016 +a ||| for example , to ||| 0.00497512 0.0683377 2.99394e-06 1.13667e-07 2.718 ||| 0-0 ||| 402 668016 +a ||| for example , whilst the assessing of ||| 1 0.0683377 1.49697e-06 9.71144e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| for example , whilst the assessing ||| 1 0.0683377 1.49697e-06 1.78637e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| for example , whilst the ||| 0.5 0.0683377 1.49697e-06 4.15435e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| for example , whilst ||| 0.142857 0.0683377 1.49697e-06 6.76695e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| for example , ||| 0.00165742 0.0683377 3.44303e-05 1.2792e-06 2.718 ||| 0-0 ||| 13877 668016 +a ||| for example - ||| 0.0104712 0.0683377 2.99394e-06 4.04618e-08 2.718 ||| 0-0 ||| 191 668016 +a ||| for example : if you make your ||| 1 0.0683377 1.49697e-06 4.33441e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| for example : if you make ||| 1 0.0683377 1.49697e-06 1.69379e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| for example : if you ||| 1 0.0683377 1.49697e-06 9.74676e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| for example : if ||| 0.333333 0.0683377 1.49697e-06 3.01879e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| for example : ||| 0.0178571 0.0683377 1.49697e-06 3.61272e-09 2.718 ||| 0-0 ||| 56 668016 +a ||| for example ; ||| 0.0526316 0.0683377 1.49697e-06 3.30379e-09 2.718 ||| 0-0 ||| 19 668016 +a ||| for example in ||| 0.00162602 0.0587624 1.49697e-06 1.34423e-07 2.718 ||| 0-2 ||| 615 668016 +a ||| for example ||| 0.00210712 0.0683377 6.43697e-05 1.07266e-05 2.718 ||| 0-0 ||| 20407 668016 +a ||| for expressing ||| 0.02 0.0683377 1.49697e-06 9.69116e-07 2.718 ||| 0-0 ||| 50 668016 +a ||| for farmers and ||| 0.0126582 0.0683377 1.49697e-06 1.86009e-08 2.718 ||| 0-0 ||| 79 668016 +a ||| for farmers ||| 0.0018018 0.0683377 1.49697e-06 1.48499e-06 2.718 ||| 0-0 ||| 555 668016 +a ||| for fear ||| 0.00662252 0.0683377 1.49697e-06 8.10667e-07 2.718 ||| 0-0 ||| 151 668016 +a ||| for fisheries and for obligatory payments ||| 0.0833333 0.0683377 1.49697e-06 2.22346e-20 2.718 ||| 0-0 ||| 12 668016 +a ||| for fisheries and for obligatory ||| 0.0833333 0.0683377 1.49697e-06 6.71739e-16 2.718 ||| 0-0 ||| 12 668016 +a ||| for fisheries and for ||| 0.0833333 0.0683377 1.49697e-06 9.32971e-11 2.718 ||| 0-0 ||| 12 668016 +a ||| for fisheries and ||| 0.0454545 0.0683377 1.49697e-06 1.2139e-08 2.718 ||| 0-0 ||| 22 668016 +a ||| for fisheries ||| 0.00925926 0.0683377 1.49697e-06 9.69116e-07 2.718 ||| 0-0 ||| 108 668016 +a ||| for following formal rules ||| 1 0.0683377 1.49697e-06 9.24791e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| for following formal ||| 1 0.0683377 1.49697e-06 7.95861e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| for following ||| 0.0416667 0.0683377 1.49697e-06 4.70924e-06 2.718 ||| 0-0 ||| 24 668016 +a ||| for from ||| 0.0454545 0.0559479 1.49697e-06 0.000265265 2.718 ||| 0-0 0-1 ||| 22 668016 +a ||| for fulfilling ||| 0.025 0.0683377 1.49697e-06 2.39515e-07 2.718 ||| 0-0 ||| 40 668016 +a ||| for fun ||| 0.05 0.0683377 1.49697e-06 1.47394e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| for funding for ||| 0.05 0.0683377 1.49697e-06 1.50949e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| for funding in ||| 0.0909091 0.0683377 1.49697e-06 4.2039e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| for funding ||| 0.00701754 0.0683377 2.99394e-06 1.96403e-06 2.718 ||| 0-0 ||| 285 668016 +a ||| for further ||| 0.00138122 0.0683377 1.49697e-06 1.78089e-05 2.718 ||| 0-0 ||| 724 668016 +a ||| for future ||| 0.00233645 0.0683377 1.49697e-06 9.78696e-06 2.718 ||| 0-0 ||| 428 668016 +a ||| for getting involved ||| 0.2 0.0683377 1.49697e-06 1.48064e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| for getting ||| 0.0125 0.0683377 1.49697e-06 4.2818e-06 2.718 ||| 0-0 ||| 80 668016 +a ||| for giving ||| 0.00520833 0.102429 1.49697e-06 3.71654e-05 2.718 ||| 0-0 0-1 ||| 192 668016 +a ||| for good from ||| 1 0.0683377 1.49697e-06 3.07742e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| for good ||| 0.00568182 0.0683377 2.99394e-06 1.91096e-05 2.718 ||| 0-0 ||| 352 668016 +a ||| for granted ||| 0.0058997 0.0683377 2.99394e-06 2.98473e-06 2.718 ||| 0-0 ||| 339 668016 +a ||| for greater assistance ||| 0.333333 0.0683377 1.49697e-06 2.41191e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| for greater ||| 0.00136054 0.0683377 1.49697e-06 4.85295e-06 2.718 ||| 0-0 ||| 735 668016 +a ||| for groups such ||| 1 0.0683377 1.49697e-06 5.04681e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for groups ||| 0.04 0.0683377 1.49697e-06 2.43937e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| for handling ||| 0.0138889 0.0683377 1.49697e-06 4.7903e-07 2.718 ||| 0-0 ||| 72 668016 +a ||| for having freed ||| 0.142857 0.0683377 1.49697e-06 5.07934e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| for having in ||| 0.5 0.0587624 1.49697e-06 1.76814e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| for having ||| 0.00224551 0.0683377 4.49091e-06 1.41093e-05 2.718 ||| 0-0 ||| 1336 668016 +a ||| for he ||| 0.0217391 0.0683377 1.49697e-06 3.21577e-05 2.718 ||| 0-0 ||| 46 668016 +a ||| for helping ||| 0.00714286 0.185305 1.49697e-06 4.38571e-05 2.718 ||| 0-0 0-1 ||| 140 668016 +a ||| for her death ||| 1 0.0683377 1.49697e-06 5.44438e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for her trip to ||| 1 0.229811 1.49697e-06 4.46873e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| for her ||| 0.00247158 0.0683377 7.48485e-06 1.00265e-05 2.718 ||| 0-0 ||| 2023 668016 +a ||| for herself ||| 0.0416667 0.0683377 1.49697e-06 8.21722e-07 2.718 ||| 0-0 ||| 24 668016 +a ||| for higher ||| 0.025641 0.0683377 1.49697e-06 1.55132e-06 2.718 ||| 0-0 ||| 39 668016 +a ||| for him ||| 0.00429185 0.0683377 1.49697e-06 1.18136e-05 2.718 ||| 0-0 ||| 233 668016 +a ||| for himself ||| 0.025641 0.0683377 2.99394e-06 2.73047e-06 2.718 ||| 0-0 ||| 78 668016 +a ||| for his commitment ||| 0.0222222 0.0683377 1.49697e-06 6.17872e-10 2.718 ||| 0-0 ||| 45 668016 +a ||| for his report ||| 0.00181159 0.0683377 1.49697e-06 4.53881e-09 2.718 ||| 0-0 ||| 552 668016 +a ||| for his victory ||| 1 0.0683377 1.49697e-06 6.42233e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| for his ||| 0.00109099 0.0683377 7.48485e-06 1.1073e-05 2.718 ||| 0-0 ||| 4583 668016 +a ||| for holding ||| 0.0135135 0.0683377 1.49697e-06 2.21459e-06 2.718 ||| 0-0 ||| 74 668016 +a ||| for human ||| 0.00689655 0.0683377 1.49697e-06 4.5471e-06 2.718 ||| 0-0 ||| 145 668016 +a ||| for ideas ||| 0.0833333 0.0683377 1.49697e-06 1.30075e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| for if we are ||| 0.25 0.0683377 1.49697e-06 5.30353e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| for if we ||| 0.0384615 0.0683377 1.49697e-06 3.49544e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| for if ||| 0.00657895 0.0683377 1.49697e-06 3.07906e-05 2.718 ||| 0-0 ||| 152 668016 +a ||| for in the ||| 0.00719424 0.0683377 1.49697e-06 4.84212e-05 2.718 ||| 0-0 ||| 139 668016 +a ||| for in ||| 0.0203488 0.0683377 1.04788e-05 0.000788724 2.718 ||| 0-0 ||| 344 668016 +a ||| for inclusion ||| 0.0123457 0.0683377 1.49697e-06 7.14861e-07 2.718 ||| 0-0 ||| 81 668016 +a ||| for increasing ||| 0.00310559 0.0683377 1.49697e-06 1.90875e-06 2.718 ||| 0-0 ||| 322 668016 +a ||| for independent ||| 0.0714286 0.0683377 1.49697e-06 9.02788e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| for information ||| 0.00328947 0.0683377 1.49697e-06 6.09843e-06 2.718 ||| 0-0 ||| 304 668016 +a ||| for instance , ||| 0.000540541 0.0683377 1.49697e-06 2.84754e-07 2.718 ||| 0-0 ||| 1850 668016 +a ||| for instance ||| 0.00171174 0.0683377 7.48485e-06 2.38778e-06 2.718 ||| 0-0 ||| 2921 668016 +a ||| for international protection . I am pleased ||| 0.5 0.0683377 1.49697e-06 3.2249e-22 2.718 ||| 0-0 ||| 2 668016 +a ||| for international protection . I am ||| 0.5 0.0683377 1.49697e-06 7.92358e-18 2.718 ||| 0-0 ||| 2 668016 +a ||| for international protection . I ||| 0.5 0.0683377 1.49697e-06 6.20241e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| for international protection . ||| 0.166667 0.0683377 1.49697e-06 8.76852e-13 2.718 ||| 0-0 ||| 6 668016 +a ||| for international protection ||| 0.03125 0.0683377 1.49697e-06 2.89486e-10 2.718 ||| 0-0 ||| 32 668016 +a ||| for international ||| 0.0232558 0.0683377 1.49697e-06 2.85207e-06 2.718 ||| 0-0 ||| 43 668016 +a ||| for is ||| 0.0535714 0.0683377 4.49091e-06 0.00115487 2.718 ||| 0-0 ||| 56 668016 +a ||| for it - ||| 0.05 0.0683377 1.49697e-06 2.4718e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| for it and that ||| 0.166667 0.0683377 1.49697e-06 1.38072e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| for it and ||| 0.0144928 0.0683377 1.49697e-06 8.20802e-06 2.718 ||| 0-0 ||| 69 668016 +a ||| for it are ||| 0.25 0.0683377 1.49697e-06 9.94243e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| for it at a ||| 1 0.0683377 1.49697e-06 1.21627e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| for it at ||| 0.111111 0.0683377 1.49697e-06 2.74394e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| for it has been very much to ||| 1 0.0683377 1.49697e-06 3.49532e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| for it has been very much ||| 1 0.0683377 1.49697e-06 3.93359e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| for it has been very ||| 1 0.0683377 1.49697e-06 3.91909e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| for it has been ||| 0.0909091 0.0683377 1.49697e-06 1.12634e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| for it has ||| 0.04 0.0683377 1.49697e-06 3.37308e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| for it in ||| 0.0153846 0.0683377 1.49697e-06 1.4026e-05 2.718 ||| 0-0 ||| 65 668016 +a ||| for it is ||| 0.00286533 0.0683377 1.49697e-06 2.05373e-05 2.718 ||| 0-0 ||| 349 668016 +a ||| for it to be held ||| 0.333333 0.0683377 1.49697e-06 2.69194e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| for it to be ||| 0.00790514 0.0683377 2.99394e-06 1.05525e-06 2.718 ||| 0-0 ||| 253 668016 +a ||| for it to ||| 0.0153846 0.229811 8.98182e-06 4.78779e-05 2.718 ||| 0-2 ||| 390 668016 +a ||| for it will ||| 0.0666667 0.0683377 1.49697e-06 5.669e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| for it ||| 0.0156752 0.0683377 5.83818e-05 0.000655284 2.718 ||| 0-0 ||| 2488 668016 +a ||| for its external aspects ||| 1 0.0683377 1.49697e-06 6.92108e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| for its external ||| 1 0.0683377 1.49697e-06 9.81714e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for its implementation ||| 0.0125 0.0683377 1.49697e-06 4.0791e-09 2.718 ||| 0-0 ||| 80 668016 +a ||| for its intended ||| 0.142857 0.0683377 1.49697e-06 4.60933e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| for its ||| 0.00210416 0.0683377 1.19758e-05 5.24981e-05 2.718 ||| 0-0 ||| 3802 668016 +a ||| for itself by ||| 1 0.0337966 1.49697e-06 4.2917e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| for itself ||| 0.00303951 0.0683377 1.49697e-06 2.50091e-05 2.718 ||| 0-0 ||| 329 668016 +a ||| for just ||| 0.00961538 0.0683377 1.49697e-06 4.64918e-05 2.718 ||| 0-0 ||| 104 668016 +a ||| for last year ||| 0.0555556 0.0683377 1.49697e-06 2.0071e-09 2.718 ||| 0-0 ||| 18 668016 +a ||| for last ||| 0.05 0.0683377 1.49697e-06 8.04771e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| for later ||| 0.0434783 0.0683377 1.49697e-06 3.16897e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| for legal ||| 0.142857 0.0683377 2.99394e-06 4.77557e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| for life , ||| 0.04 0.0683377 1.49697e-06 6.65745e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| for life ||| 0.00636943 0.0683377 1.49697e-06 5.58255e-06 2.718 ||| 0-0 ||| 157 668016 +a ||| for local authorities , ||| 0.0769231 0.0683377 1.49697e-06 1.49551e-11 2.718 ||| 0-0 ||| 13 668016 +a ||| for local authorities ||| 0.0227273 0.0683377 1.49697e-06 1.25405e-10 2.718 ||| 0-0 ||| 44 668016 +a ||| for local ||| 0.037037 0.0683377 1.49697e-06 1.88296e-06 2.718 ||| 0-0 ||| 27 668016 +a ||| for long and short ||| 1 0.0683377 1.49697e-06 2.20322e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| for long and ||| 1 0.0683377 1.49697e-06 1.56146e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| for long periods ||| 0.0232558 0.0683377 1.49697e-06 1.84495e-10 2.718 ||| 0-0 ||| 43 668016 +a ||| for long ||| 0.0227273 0.0683377 2.99394e-06 1.24658e-05 2.718 ||| 0-0 ||| 88 668016 +a ||| for lost ground ||| 0.333333 0.0683377 1.49697e-06 2.45312e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| for lost ||| 0.0555556 0.0683377 1.49697e-06 2.09668e-06 2.718 ||| 0-0 ||| 18 668016 +a ||| for making a very ||| 0.333333 0.0683377 1.49697e-06 2.18633e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| for making a ||| 0.0243902 0.0683377 1.49697e-06 6.28346e-07 2.718 ||| 0-0 ||| 41 668016 +a ||| for making himself so unstintingly ||| 1 0.0683377 1.49697e-06 9.53649e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| for making himself so ||| 1 0.0683377 1.49697e-06 2.38412e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| for making himself ||| 0.5 0.0683377 1.49697e-06 1.05041e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| for making ||| 0.00796813 0.0683377 5.98788e-06 1.41756e-05 2.718 ||| 0-0 ||| 502 668016 +a ||| for manoeuvre for ||| 0.0769231 0.0683377 1.49697e-06 1.9258e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| for manoeuvre ||| 0.00442478 0.0683377 2.99394e-06 2.5057e-07 2.718 ||| 0-0 ||| 452 668016 +a ||| for many ||| 0.000420168 0.0683377 1.49697e-06 1.26501e-05 2.718 ||| 0-0 ||| 2380 668016 +a ||| for matters on ||| 1 0.0782999 1.49697e-06 5.39389e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| for me to take that ||| 1 0.0683377 1.49697e-06 5.33924e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| for me to take ||| 0.125 0.0683377 1.49697e-06 3.17404e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| for me to ||| 0.0121951 0.0683377 5.98788e-06 1.97145e-06 2.718 ||| 0-0 ||| 328 668016 +a ||| for me ||| 0.00449326 0.0683377 1.34727e-05 2.21865e-05 2.718 ||| 0-0 ||| 2003 668016 +a ||| for membership , namely ||| 1 0.0683377 1.49697e-06 1.72043e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| for membership , ||| 0.025641 0.0683377 1.49697e-06 1.07662e-07 2.718 ||| 0-0 ||| 39 668016 +a ||| for membership before ||| 1 0.0626155 1.49697e-06 2.50739e-09 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| for membership ||| 0.007109 0.0683377 4.49091e-06 9.02788e-07 2.718 ||| 0-0 ||| 422 668016 +a ||| for mixed ||| 0.125 0.0683377 1.49697e-06 3.46376e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| for more ||| 0.00314218 0.0683377 5.98788e-06 8.41509e-05 2.718 ||| 0-0 ||| 1273 668016 +a ||| for much criticism ||| 1 0.0683377 1.49697e-06 7.47094e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for much ||| 0.00917431 0.0683377 1.49697e-06 3.69848e-05 2.718 ||| 0-0 ||| 109 668016 +a ||| for mutual recognition ||| 0.047619 0.0683377 1.49697e-06 2.27797e-11 2.718 ||| 0-0 ||| 21 668016 +a ||| for mutual ||| 0.0769231 0.0683377 1.49697e-06 8.10667e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| for my part , ||| 0.00472813 0.0683377 2.99394e-06 3.36917e-09 2.718 ||| 0-0 ||| 423 668016 +a ||| for my part ||| 0.00379507 0.0683377 2.99394e-06 2.82519e-08 2.718 ||| 0-0 ||| 527 668016 +a ||| for my ||| 0.00129282 0.0683377 2.99394e-06 2.36973e-05 2.718 ||| 0-0 ||| 1547 668016 +a ||| for nature ||| 0.0285714 0.0683377 1.49697e-06 5.21038e-06 2.718 ||| 0-0 ||| 35 668016 +a ||| for new ||| 0.00151286 0.0683377 1.49697e-06 2.20243e-05 2.718 ||| 0-0 ||| 661 668016 +a ||| for no apparent reason ||| 0.2 0.0683377 1.49697e-06 2.38838e-13 2.718 ||| 0-0 ||| 5 668016 +a ||| for no apparent ||| 1 0.0683377 1.49697e-06 1.02111e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for no good ||| 0.2 0.0683377 1.49697e-06 1.48749e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| for no less than ||| 0.25 0.0683377 1.49697e-06 1.4914e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| for no less ||| 0.25 0.0683377 1.49697e-06 4.88182e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| for no purpose ||| 0.5 0.0683377 1.49697e-06 5.16005e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| for no reason other ||| 0.166667 0.0683377 1.49697e-06 8.69141e-12 2.718 ||| 0-0 ||| 6 668016 +a ||| for no reason ||| 0.0416667 0.0683377 1.49697e-06 6.70892e-09 2.718 ||| 0-0 ||| 24 668016 +a ||| for no ||| 0.0333333 0.0683377 7.48485e-06 2.86829e-05 2.718 ||| 0-0 ||| 150 668016 +a ||| for now : ||| 1 0.0683377 1.49697e-06 2.55645e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| for now ||| 0.00485437 0.0683377 1.49697e-06 7.59042e-05 2.718 ||| 0-0 ||| 206 668016 +a ||| for of course ||| 0.2 0.0683377 1.49697e-06 2.52748e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| for of ||| 0.142857 0.0683377 1.49697e-06 0.00200323 2.718 ||| 0-0 ||| 7 668016 +a ||| for offering ||| 0.0416667 0.103522 1.49697e-06 1.36114e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| for officials ||| 0.02 0.0683377 1.49697e-06 5.15879e-07 2.718 ||| 0-0 ||| 50 668016 +a ||| for once , ||| 0.00497512 0.0683377 1.49697e-06 1.79817e-06 2.718 ||| 0-0 ||| 201 668016 +a ||| for once might mean ||| 0.5 0.0683377 1.49697e-06 1.49211e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| for once might ||| 0.5 0.0683377 1.49697e-06 5.79011e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| for once ||| 0.00707965 0.0683377 5.98788e-06 1.50784e-05 2.718 ||| 0-0 ||| 565 668016 +a ||| for one ' ||| 0.4 0.0683377 2.99394e-06 5.27548e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| for one , ||| 0.0294118 0.0683377 2.99394e-06 1.83157e-05 2.718 ||| 0-0 ||| 68 668016 +a ||| for one another ||| 0.0714286 0.0683377 1.49697e-06 3.70292e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| for one thing , by ||| 1 0.0683377 1.49697e-06 3.50885e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| for one thing , ||| 0.0147059 0.0683377 1.49697e-06 6.68339e-09 2.718 ||| 0-0 ||| 68 668016 +a ||| for one thing ||| 0.0114943 0.0683377 1.49697e-06 5.6043e-08 2.718 ||| 0-0 ||| 87 668016 +a ||| for one ||| 0.0107914 0.0683377 1.79636e-05 0.000153585 2.718 ||| 0-0 ||| 1112 668016 +a ||| for only ||| 0.00666667 0.0683377 1.49697e-06 4.10161e-05 2.718 ||| 0-0 ||| 150 668016 +a ||| for or against this ||| 0.111111 0.0683377 1.49697e-06 6.49497e-11 2.718 ||| 0-0 ||| 9 668016 +a ||| for or against ||| 0.003861 0.0683377 1.49697e-06 1.0052e-08 2.718 ||| 0-0 ||| 259 668016 +a ||| for or ||| 0.00505051 0.0683377 1.49697e-06 4.21289e-05 2.718 ||| 0-0 ||| 198 668016 +a ||| for ordinary contracts ||| 0.333333 0.0683377 1.49697e-06 1.66113e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| for ordinary ||| 0.0357143 0.0683377 1.49697e-06 6.78012e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| for others who are ||| 0.333333 0.0683377 1.49697e-06 4.79311e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| for others who ||| 0.2 0.0683377 1.49697e-06 3.15904e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| for others ||| 0.0037037 0.0683377 1.49697e-06 3.58167e-06 2.718 ||| 0-0 ||| 270 668016 +a ||| for our involvement ||| 0.5 0.0683377 1.49697e-06 1.51978e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| for our ||| 0.000848896 0.0683377 5.98788e-06 5.08288e-05 2.718 ||| 0-0 ||| 4712 668016 +a ||| for ourselves ||| 0.0117647 0.0683377 4.49091e-06 1.17215e-05 2.718 ||| 0-0 ||| 255 668016 +a ||| for out ||| 0.0714286 0.0683377 1.49697e-06 0.000141144 2.718 ||| 0-0 ||| 14 668016 +a ||| for payment ||| 0.0131579 0.0683377 1.49697e-06 9.28582e-07 2.718 ||| 0-0 ||| 76 668016 +a ||| for payments being ||| 0.5 0.0683377 1.49697e-06 3.47098e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| for payments ||| 0.0168067 0.0683377 2.99394e-06 1.21969e-06 2.718 ||| 0-0 ||| 119 668016 +a ||| for people or bodies not ||| 0.125 0.0683377 1.49697e-06 5.05139e-15 2.718 ||| 0-0 ||| 8 668016 +a ||| for people or bodies ||| 0.125 0.0683377 1.49697e-06 1.47957e-12 2.718 ||| 0-0 ||| 8 668016 +a ||| for people or businesses ||| 1 0.0683377 1.49697e-06 9.86377e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| for people or ||| 0.166667 0.0683377 2.99394e-06 3.70818e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| for people to ||| 0.0166667 0.229811 4.49091e-06 2.36977e-06 2.718 ||| 0-2 ||| 180 668016 +a ||| for people ||| 0.00565371 0.0683377 1.19758e-05 3.2434e-05 2.718 ||| 0-0 ||| 1415 668016 +a ||| for physically ||| 0.333333 0.0683377 1.49697e-06 6.63273e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| for playing ||| 0.0909091 0.0683377 1.49697e-06 2.42832e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| for present purposes , ||| 1 0.0683377 1.49697e-06 1.94448e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for present purposes ||| 1 0.0683377 1.49697e-06 1.63052e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for present ||| 0.25 0.0683377 1.49697e-06 1.34866e-05 2.718 ||| 0-0 ||| 4 668016 +a ||| for presentation ||| 0.0588235 0.0683377 1.49697e-06 5.82206e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| for private ||| 0.04 0.0683377 1.49697e-06 8.76994e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| for problems ||| 0.04 0.0683377 1.49697e-06 4.94507e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| for proposals at ||| 1 0.204175 1.49697e-06 2.54261e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| for providing ||| 0.00327869 0.0683377 1.49697e-06 3.38269e-06 2.718 ||| 0-0 ||| 305 668016 +a ||| for pursuing ||| 0.0377358 0.0683377 2.99394e-06 9.02788e-07 2.718 ||| 0-0 ||| 53 668016 +a ||| for pushing ||| 0.0625 0.102314 1.49697e-06 5.89493e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| for questions to ||| 0.0322581 0.229811 1.49697e-06 2.3827e-07 2.718 ||| 0-2 ||| 31 668016 +a ||| for quite ||| 0.0227273 0.0683377 1.49697e-06 1.43746e-05 2.718 ||| 0-0 ||| 44 668016 +a ||| for rail ||| 0.0526316 0.0683377 1.49697e-06 4.38497e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| for real ||| 0.0123457 0.0683377 1.49697e-06 6.62905e-06 2.718 ||| 0-0 ||| 81 668016 +a ||| for really ||| 0.166667 0.0683377 1.49697e-06 1.78494e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| for reasons ||| 0.00226244 0.0683377 2.99394e-06 3.72538e-06 2.718 ||| 0-0 ||| 884 668016 +a ||| for recovery ||| 0.0138889 0.0683377 1.49697e-06 4.90085e-07 2.718 ||| 0-0 ||| 72 668016 +a ||| for reducing ||| 0.002079 0.0683377 1.49697e-06 9.8017e-07 2.718 ||| 0-0 ||| 481 668016 +a ||| for referring ||| 0.0434783 0.0683377 1.49697e-06 1.59186e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| for reflection ||| 0.010101 0.0683377 1.49697e-06 5.04824e-07 2.718 ||| 0-0 ||| 99 668016 +a ||| for reform to ||| 0.142857 0.149075 1.49697e-06 5.29232e-07 2.718 ||| 0-0 0-2 ||| 7 668016 +a ||| for regulations , ||| 0.2 0.0683377 1.49697e-06 1.92912e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| for regulations ||| 0.0222222 0.0683377 1.49697e-06 1.61765e-06 2.718 ||| 0-0 ||| 45 668016 +a ||| for representation via professionals and that means ||| 0.5 0.0683377 1.49697e-06 5.92292e-24 2.718 ||| 0-0 ||| 2 668016 +a ||| for representation via professionals and that ||| 0.5 0.0683377 1.49697e-06 9.34656e-21 2.718 ||| 0-0 ||| 2 668016 +a ||| for representation via professionals and ||| 0.5 0.0683377 1.49697e-06 5.55629e-19 2.718 ||| 0-0 ||| 2 668016 +a ||| for representation via professionals ||| 0.5 0.0683377 1.49697e-06 4.43584e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| for representation via ||| 0.5 0.0683377 1.49697e-06 1.23218e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| for representation ||| 0.125 0.0683377 1.49697e-06 4.38497e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| for representatives of ||| 0.0769231 0.0683377 1.49697e-06 6.49047e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| for representatives ||| 0.0526316 0.0683377 1.49697e-06 1.19389e-06 2.718 ||| 0-0 ||| 19 668016 +a ||| for research into ||| 0.011236 0.107578 1.49697e-06 2.53501e-09 2.718 ||| 0-2 ||| 89 668016 +a ||| for resettlement ||| 0.05 0.0683377 1.49697e-06 8.10667e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| for resources to ||| 0.142857 0.0683377 1.49697e-06 2.34439e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| for resources ||| 0.0188679 0.0683377 1.49697e-06 2.63835e-06 2.718 ||| 0-0 ||| 53 668016 +a ||| for restrictions ||| 0.0833333 0.0683377 1.49697e-06 7.03806e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| for sale on ||| 0.166667 0.0683377 1.49697e-06 3.10657e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| for sale ||| 0.0136986 0.0683377 1.49697e-06 4.64291e-07 2.718 ||| 0-0 ||| 73 668016 +a ||| for saying so , ||| 0.125 0.0683377 1.49697e-06 1.76936e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| for saying so ||| 0.0833333 0.0683377 1.49697e-06 1.48369e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| for saying ||| 0.0224719 0.0683377 2.99394e-06 6.53692e-06 2.718 ||| 0-0 ||| 89 668016 +a ||| for security ||| 0.00381679 0.0683377 1.49697e-06 3.01052e-06 2.718 ||| 0-0 ||| 262 668016 +a ||| for servicing ||| 0.333333 0.0683377 1.49697e-06 2.57939e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| for session ||| 0.333333 0.0683377 1.49697e-06 8.10667e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| for seven years ||| 0.0126582 0.0683377 1.49697e-06 3.13581e-11 2.718 ||| 0-0 ||| 79 668016 +a ||| for seven ||| 0.00917431 0.0683377 1.49697e-06 1.84243e-07 2.718 ||| 0-0 ||| 109 668016 +a ||| for short ||| 0.0357143 0.0683377 1.49697e-06 5.19932e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| for showing such ||| 0.111111 0.0683377 1.49697e-06 2.35569e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| for showing ||| 0.0294118 0.0683377 1.49697e-06 1.13862e-06 2.718 ||| 0-0 ||| 34 668016 +a ||| for small and ||| 0.00295421 0.0683377 2.99394e-06 5.91259e-08 2.718 ||| 0-0 ||| 677 668016 +a ||| for small ||| 0.00228833 0.0683377 2.99394e-06 4.72029e-06 2.718 ||| 0-0 ||| 874 668016 +a ||| for smaller states ||| 1 0.0683377 1.49697e-06 2.68788e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| for smaller ||| 0.0322581 0.0683377 1.49697e-06 3.5743e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| for some Member States , reflecting a ||| 0.25 0.0683377 1.49697e-06 1.30437e-19 2.718 ||| 0-0 ||| 4 668016 +a ||| for some Member States , reflecting ||| 0.25 0.0683377 1.49697e-06 2.94268e-18 2.718 ||| 0-0 ||| 4 668016 +a ||| for some Member States , ||| 0.0666667 0.0683377 1.49697e-06 1.17707e-12 2.718 ||| 0-0 ||| 15 668016 +a ||| for some Member States ||| 0.0166667 0.0683377 1.49697e-06 9.87024e-12 2.718 ||| 0-0 ||| 60 668016 +a ||| for some Member ||| 0.2 0.0683377 1.49697e-06 2.06837e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| for some time ||| 0.00165563 0.0683377 1.49697e-06 6.58963e-08 2.718 ||| 0-0 ||| 604 668016 +a ||| for some ||| 0.00298507 0.0683377 8.98182e-06 4.01391e-05 2.718 ||| 0-0 ||| 2010 668016 +a ||| for something is ||| 1 0.0683377 1.49697e-06 6.39222e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| for something ||| 0.0123457 0.0683377 2.99394e-06 2.03956e-05 2.718 ||| 0-0 ||| 162 668016 +a ||| for special treatment ||| 0.111111 0.0683377 1.49697e-06 1.90831e-10 2.718 ||| 0-0 ||| 9 668016 +a ||| for special ||| 0.047619 0.0683377 1.49697e-06 3.15423e-06 2.718 ||| 0-0 ||| 21 668016 +a ||| for spending ||| 0.02 0.0683377 1.49697e-06 7.81188e-07 2.718 ||| 0-0 ||| 50 668016 +a ||| for such comments to be made ||| 1 0.0683377 1.49697e-06 1.28587e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| for such comments to be ||| 1 0.0683377 1.49697e-06 6.13839e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| for such comments to ||| 1 0.0683377 1.49697e-06 3.38709e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for such comments ||| 1 0.0683377 1.49697e-06 3.81179e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for such matters , ||| 0.25 0.0683377 1.49697e-06 1.68192e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| for such matters ||| 0.04 0.0683377 1.49697e-06 1.41036e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| for such training to ||| 1 0.229811 1.49697e-06 1.96625e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| for such ||| 0.00807175 0.0683377 1.34727e-05 7.62359e-05 2.718 ||| 0-0 ||| 1115 668016 +a ||| for support for ||| 0.0192308 0.0683377 1.49697e-06 4.64236e-07 2.718 ||| 0-0 0-2 ||| 52 668016 +a ||| for support ||| 0.00492611 0.0683377 1.49697e-06 1.25985e-05 2.718 ||| 0-0 ||| 203 668016 +a ||| for surely ||| 0.1 0.0683377 1.49697e-06 2.34725e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| for tackling ||| 0.00452489 0.0598805 1.49697e-06 3.76592e-06 2.718 ||| 0-0 0-1 ||| 221 668016 +a ||| for technical ||| 0.0769231 0.0683377 1.49697e-06 1.21969e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| for terrorists and ||| 0.111111 0.0683377 1.49697e-06 1.84624e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| for terrorists ||| 0.0172414 0.0683377 1.49697e-06 1.47394e-07 2.718 ||| 0-0 ||| 58 668016 +a ||| for that damage ||| 0.25 0.0683377 1.49697e-06 2.60957e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| for that matter , ||| 0.00675676 0.0683377 1.49697e-06 7.66921e-08 2.718 ||| 0-0 ||| 148 668016 +a ||| for that matter ||| 0.0121951 0.0683377 4.49091e-06 6.43095e-07 2.718 ||| 0-0 ||| 246 668016 +a ||| for that meeting ||| 0.25 0.0683377 1.49697e-06 7.78533e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| for that one ||| 0.2 0.0683377 1.49697e-06 2.58354e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| for that reason , ||| 0.00116144 0.0683377 1.49697e-06 1.72899e-08 2.718 ||| 0-0 ||| 861 668016 +a ||| for that reason ||| 0.000552181 0.0683377 1.49697e-06 1.44983e-07 2.718 ||| 0-0 ||| 1811 668016 +a ||| for that ||| 0.00409042 0.0683377 2.84424e-05 0.000619851 2.718 ||| 0-0 ||| 4645 668016 +a ||| for the Coordination of Fraud Prevention ( ||| 0.5 0.0683377 1.49697e-06 1.19553e-25 2.718 ||| 0-0 ||| 2 668016 +a ||| for the Coordination of Fraud Prevention ||| 0.333333 0.0683377 1.49697e-06 1.23966e-22 2.718 ||| 0-0 ||| 3 668016 +a ||| for the Coordination of Fraud ||| 0.333333 0.0683377 1.49697e-06 8.8547e-17 2.718 ||| 0-0 ||| 3 668016 +a ||| for the Coordination of ||| 0.05 0.0683377 1.49697e-06 2.21368e-10 2.718 ||| 0-0 ||| 20 668016 +a ||| for the Coordination ||| 0.0588235 0.0683377 1.49697e-06 4.07195e-09 2.718 ||| 0-0 ||| 17 668016 +a ||| for the Group of the European People ||| 1 0.0683377 1.49697e-06 4.82089e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| for the Group of the European ||| 0.125 0.0683377 1.49697e-06 8.21276e-12 2.718 ||| 0-0 ||| 8 668016 +a ||| for the Group of the ||| 0.0153846 0.0683377 1.49697e-06 2.45604e-09 2.718 ||| 0-0 ||| 65 668016 +a ||| for the Group of ||| 0.00877193 0.0683377 1.49697e-06 4.0006e-08 2.718 ||| 0-0 ||| 114 668016 +a ||| for the Group ||| 0.0075188 0.0683377 1.49697e-06 7.35892e-07 2.718 ||| 0-0 ||| 133 668016 +a ||| for the Member States acting ||| 1 0.0683377 1.49697e-06 3.28203e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| for the Member States ||| 0.000929368 0.0683377 1.49697e-06 5.56277e-10 2.718 ||| 0-0 ||| 1076 668016 +a ||| for the Member ||| 0.0357143 0.0683377 1.49697e-06 1.16571e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| for the absence of ||| 0.0555556 0.0683377 1.49697e-06 3.18523e-09 2.718 ||| 0-0 ||| 18 668016 +a ||| for the absence ||| 0.05 0.0683377 1.49697e-06 5.85909e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| for the achievement of such ||| 1 0.0683377 1.49697e-06 6.13194e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| for the achievement of ||| 0.0153846 0.0683377 1.49697e-06 2.96387e-09 2.718 ||| 0-0 ||| 65 668016 +a ||| for the achievement ||| 0.0144928 0.0683377 1.49697e-06 5.45189e-08 2.718 ||| 0-0 ||| 69 668016 +a ||| for the author . - ||| 0.2 0.0683377 1.49697e-06 4.18724e-13 2.718 ||| 0-0 ||| 5 668016 +a ||| for the author . ||| 0.25 0.0683377 1.49697e-06 1.11005e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| for the author ||| 0.2 0.0683377 1.49697e-06 3.66476e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| for the benefit of ||| 0.00802752 0.0683377 1.04788e-05 1.61967e-08 2.718 ||| 0-0 ||| 872 668016 +a ||| for the benefit ||| 0.00532481 0.0683377 7.48485e-06 2.97931e-07 2.718 ||| 0-0 ||| 939 668016 +a ||| for the common market to function , ||| 1 0.0683377 1.49697e-06 3.10367e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| for the common market to function ||| 1 0.0683377 1.49697e-06 2.60255e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| for the common market to ||| 1 0.0683377 1.49697e-06 1.04942e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| for the common market ||| 0.125 0.0683377 1.49697e-06 1.181e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| for the common ||| 0.0277778 0.0683377 1.49697e-06 5.22567e-07 2.718 ||| 0-0 ||| 36 668016 +a ||| for the countries of ||| 0.00699301 0.0435928 1.49697e-06 2.54066e-08 2.718 ||| 0-0 0-3 ||| 143 668016 +a ||| for the cuts ||| 1 0.0683377 1.49697e-06 2.60153e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| for the employment ||| 0.0277778 0.0683377 1.49697e-06 1.10621e-07 2.718 ||| 0-0 ||| 36 668016 +a ||| for the establishment of a ||| 0.00826446 0.0683377 1.49697e-06 2.45307e-10 2.718 ||| 0-0 ||| 121 668016 +a ||| for the establishment of ||| 0.00425532 0.0683377 1.49697e-06 5.53419e-09 2.718 ||| 0-0 ||| 235 668016 +a ||| for the establishment ||| 0.00373134 0.0683377 1.49697e-06 1.01799e-07 2.718 ||| 0-0 ||| 268 668016 +a ||| for the fact ||| 0.0036036 0.0683377 2.99394e-06 6.62665e-06 2.718 ||| 0-0 ||| 555 668016 +a ||| for the final ||| 0.0454545 0.0683377 1.49697e-06 1.72606e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| for the forced ||| 1 0.0684932 1.49697e-06 1.3136e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| for the future , both for us ||| 1 0.0683377 1.49697e-06 2.62926e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| for the future , both for ||| 0.25 0.0683377 1.49697e-06 9.12239e-13 2.718 ||| 0-0 ||| 4 668016 +a ||| for the future , both ||| 0.2 0.0683377 1.49697e-06 1.18693e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| for the future , ||| 0.00245098 0.0683377 1.49697e-06 7.16529e-08 2.718 ||| 0-0 ||| 408 668016 +a ||| for the future too ||| 0.2 0.0683377 1.49697e-06 8.17742e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| for the future ||| 0.00143843 0.0683377 7.48485e-06 6.00839e-07 2.718 ||| 0-0 ||| 3476 668016 +a ||| for the ideal solution , in other ||| 1 0.0587624 1.49697e-06 2.79957e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| for the ideal solution , in ||| 1 0.0587624 1.49697e-06 2.161e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| for the interests ||| 0.0133333 0.0683377 1.49697e-06 3.10147e-07 2.718 ||| 0-0 ||| 75 668016 +a ||| for the leadership ||| 0.0625 0.0683377 1.49697e-06 3.75524e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| for the media ||| 0.0192308 0.0683377 1.49697e-06 6.51512e-08 2.718 ||| 0-0 ||| 52 668016 +a ||| for the most ||| 0.0030581 0.0683377 1.49697e-06 9.77721e-07 2.718 ||| 0-0 ||| 327 668016 +a ||| for the motion ||| 0.00641026 0.0683377 1.49697e-06 1.71022e-07 2.718 ||| 0-0 ||| 156 668016 +a ||| for the negotiations ||| 0.00628931 0.0683377 1.49697e-06 1.25326e-07 2.718 ||| 0-0 ||| 159 668016 +a ||| for the next ||| 0.000877963 0.0683377 1.49697e-06 2.33685e-07 2.718 ||| 0-0 ||| 1139 668016 +a ||| for the pain of ||| 0.5 0.0683377 1.49697e-06 6.1491e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| for the pain ||| 0.5 0.0683377 1.49697e-06 1.1311e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| for the proposal ||| 0.00492611 0.0683377 1.49697e-06 4.5176e-07 2.718 ||| 0-0 ||| 203 668016 +a ||| for the purpose in the ||| 0.5 0.0683377 1.49697e-06 5.34782e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| for the purpose in ||| 0.5 0.0683377 1.49697e-06 8.71097e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| for the purpose of housing equipment ||| 1 0.0683377 1.49697e-06 3.81647e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| for the purpose of housing ||| 1 0.0683377 1.49697e-06 1.10622e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| for the purpose of the ||| 0.0666667 0.0683377 1.49697e-06 1.35826e-09 2.718 ||| 0-0 ||| 15 668016 +a ||| for the purpose of ||| 0.00719424 0.0683377 4.49091e-06 2.21245e-08 2.718 ||| 0-0 ||| 417 668016 +a ||| for the purpose ||| 0.0112782 0.0683377 8.98182e-06 4.06969e-07 2.718 ||| 0-0 ||| 532 668016 +a ||| for the purposes of ||| 0.00852273 0.0683377 4.49091e-06 1.48685e-08 2.718 ||| 0-0 ||| 352 668016 +a ||| for the purposes ||| 0.00490196 0.0683377 2.99394e-06 2.73499e-07 2.718 ||| 0-0 ||| 408 668016 +a ||| for the report ||| 0.00211864 0.0683377 2.99394e-06 9.27274e-07 2.718 ||| 0-0 ||| 944 668016 +a ||| for the rest of the night ||| 0.5 0.0683377 1.49697e-06 5.53663e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| for the rest of the ||| 0.00892857 0.0683377 1.49697e-06 5.70787e-10 2.718 ||| 0-0 ||| 112 668016 +a ||| for the rest of ||| 0.0162602 0.0683377 2.99394e-06 9.29744e-09 2.718 ||| 0-0 ||| 123 668016 +a ||| for the rest ||| 0.0021978 0.0683377 1.49697e-06 1.71022e-07 2.718 ||| 0-0 ||| 455 668016 +a ||| for the sake of ||| 0.000884956 0.0683377 1.49697e-06 1.23474e-08 2.718 ||| 0-0 ||| 1130 668016 +a ||| for the sake ||| 0.000901713 0.0683377 1.49697e-06 2.27124e-07 2.718 ||| 0-0 ||| 1109 668016 +a ||| for the same reason , ||| 0.0232558 0.0683377 1.49697e-06 5.07773e-11 2.718 ||| 0-0 ||| 43 668016 +a ||| for the same reason ||| 0.00990099 0.0683377 1.49697e-06 4.25789e-10 2.718 ||| 0-0 ||| 101 668016 +a ||| for the same ||| 0.00222222 0.0683377 1.49697e-06 1.82039e-06 2.718 ||| 0-0 ||| 450 668016 +a ||| for the sitting ||| 0.0454545 0.0683377 1.49697e-06 1.57223e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| for the things ||| 0.0555556 0.0683377 1.49697e-06 9.29762e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| for the time being ||| 0.00176991 0.0683377 1.49697e-06 1.05689e-08 2.718 ||| 0-0 ||| 565 668016 +a ||| for the time ||| 0.00373134 0.0683377 1.49697e-06 3.71385e-06 2.718 ||| 0-0 ||| 268 668016 +a ||| for the whole of ||| 0.00578035 0.0683377 2.99394e-06 6.95709e-08 2.718 ||| 0-0 ||| 346 668016 +a ||| for the whole ||| 0.00225734 0.0683377 2.99394e-06 1.27972e-06 2.718 ||| 0-0 ||| 886 668016 +a ||| for the work undertaken ||| 0.142857 0.0683377 1.49697e-06 6.80186e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| for the work ||| 0.00105485 0.0683377 1.49697e-06 1.43197e-06 2.718 ||| 0-0 ||| 948 668016 +a ||| for the ||| 0.00501712 0.0683377 0.000844291 0.0022622 2.718 ||| 0-0 ||| 112415 668016 +a ||| for their Olympic ||| 1 0.0683377 1.49697e-06 1.36676e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for their opinions regarding ||| 1 0.186429 1.49697e-06 6.59555e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| for their part ||| 0.00909091 0.0683377 1.49697e-06 5.09202e-08 2.718 ||| 0-0 ||| 110 668016 +a ||| for their plight ||| 1 0.0683377 1.49697e-06 1.06778e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for their views ||| 0.0833333 0.0683377 1.49697e-06 3.47241e-09 2.718 ||| 0-0 ||| 12 668016 +a ||| for their ||| 0.00109804 0.0683377 1.04788e-05 4.27111e-05 2.718 ||| 0-0 ||| 6375 668016 +a ||| for them to ||| 0.0083682 0.229811 5.98788e-06 7.22186e-06 2.718 ||| 0-2 ||| 478 668016 +a ||| for them ||| 0.0112816 0.0683377 3.74243e-05 9.88424e-05 2.718 ||| 0-0 ||| 2216 668016 +a ||| for themselves ||| 0.00728863 0.0683377 7.48485e-06 1.58338e-05 2.718 ||| 0-0 ||| 686 668016 +a ||| for then ||| 0.0169492 0.0683377 1.49697e-06 5.93408e-05 2.718 ||| 0-0 ||| 59 668016 +a ||| for there is ||| 0.0232558 0.0683377 1.49697e-06 3.54003e-06 2.718 ||| 0-0 ||| 43 668016 +a ||| for there to be European ||| 1 0.229811 1.49697e-06 5.00126e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| for there to be ||| 0.012 0.229811 4.49091e-06 1.49564e-07 2.718 ||| 0-2 ||| 250 668016 +a ||| for there to ||| 0.0357143 0.229811 5.98788e-06 8.25275e-06 2.718 ||| 0-2 ||| 112 668016 +a ||| for there ||| 0.0138249 0.0683377 4.49091e-06 0.000112952 2.718 ||| 0-0 ||| 217 668016 +a ||| for these benefits ||| 0.333333 0.0683377 1.49697e-06 1.51334e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| for these products ||| 0.0208333 0.0683377 1.49697e-06 3.97442e-09 2.718 ||| 0-0 ||| 48 668016 +a ||| for these tax differences to continue ||| 1 0.0683377 1.49697e-06 1.16391e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| for these tax differences to ||| 1 0.0683377 1.49697e-06 5.02988e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| for these tax differences ||| 1 0.0683377 1.49697e-06 5.66057e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| for these tax ||| 1 0.0683377 1.49697e-06 2.41905e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for these ||| 0.00182039 0.0683377 8.98182e-06 3.82156e-05 2.718 ||| 0-0 ||| 3296 668016 +a ||| for they are not in ||| 1 0.0587624 1.49697e-06 7.80766e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| for this . ||| 0.00146843 0.0683377 1.49697e-06 7.21183e-07 2.718 ||| 0-0 ||| 681 668016 +a ||| for this and ||| 0.0108696 0.0683377 1.49697e-06 2.98233e-06 2.718 ||| 0-0 ||| 92 668016 +a ||| for this area ||| 0.0108696 0.0683377 1.49697e-06 9.888e-08 2.718 ||| 0-0 ||| 92 668016 +a ||| for this as the ||| 0.5 0.0683377 1.49697e-06 1.49157e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| for this as ||| 0.030303 0.0683377 1.49697e-06 2.4296e-06 2.718 ||| 0-0 ||| 33 668016 +a ||| for this financial solution must be accompanied ||| 0.5 0.0683377 1.49697e-06 1.11761e-21 2.718 ||| 0-0 ||| 2 668016 +a ||| for this financial solution must be ||| 0.5 0.0683377 1.49697e-06 5.53274e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| for this financial solution must ||| 0.5 0.0683377 1.49697e-06 3.0529e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| for this financial solution ||| 0.5 0.0683377 1.49697e-06 1.97522e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| for this financial ||| 0.5 0.0683377 1.49697e-06 2.90473e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| for this is of course ||| 0.5 0.0683377 1.49697e-06 5.11833e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| for this is of ||| 0.5 0.0683377 1.49697e-06 4.05669e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| for this is ||| 0.00797872 0.0683377 4.49091e-06 7.46209e-06 2.718 ||| 0-0 ||| 376 668016 +a ||| for this preliminary draft report to ||| 1 0.229811 1.49697e-06 3.36924e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| for this reason ||| 0.000549149 0.0683377 2.99394e-06 5.56899e-08 2.718 ||| 0-0 ||| 3642 668016 +a ||| for this to be ||| 0.0113636 0.0683377 1.49697e-06 3.83417e-07 2.718 ||| 0-0 ||| 88 668016 +a ||| for this to form ||| 1 0.0683377 1.49697e-06 9.63044e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for this to ||| 0.0163265 0.0683377 5.98788e-06 2.11565e-05 2.718 ||| 0-0 ||| 245 668016 +a ||| for this was ||| 0.0357143 0.0683377 1.49697e-06 7.45945e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| for this ||| 0.00268982 0.0683377 6.58667e-05 0.000238093 2.718 ||| 0-0 ||| 16358 668016 +a ||| for those involved in the organisation ||| 1 0.0683377 1.49697e-06 4.09803e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| for those involved in the ||| 0.1 0.0683377 1.49697e-06 1.21244e-11 2.718 ||| 0-0 ||| 10 668016 +a ||| for those involved in ||| 0.05 0.0683377 1.49697e-06 1.97492e-10 2.718 ||| 0-0 ||| 20 668016 +a ||| for those involved ||| 0.0217391 0.0683377 1.49697e-06 9.22664e-09 2.718 ||| 0-0 ||| 46 668016 +a ||| for those of ||| 0.00862069 0.0683377 1.49697e-06 1.45054e-06 2.718 ||| 0-0 ||| 116 668016 +a ||| for those who were ||| 0.125 0.0683377 1.49697e-06 4.2158e-11 2.718 ||| 0-0 ||| 8 668016 +a ||| for those who ||| 0.00101523 0.0683377 1.49697e-06 2.35335e-08 2.718 ||| 0-0 ||| 985 668016 +a ||| for those ||| 0.00234035 0.0683377 1.04788e-05 2.6682e-05 2.718 ||| 0-0 ||| 2991 668016 +a ||| for thought to a ||| 1 0.0683377 1.49697e-06 1.20608e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| for thought to ||| 0.333333 0.0683377 1.49697e-06 2.72094e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| for thought ||| 0.00877193 0.0683377 1.49697e-06 3.06211e-06 2.718 ||| 0-0 ||| 114 668016 +a ||| for thousands ||| 0.00990099 0.0683377 1.49697e-06 3.97964e-07 2.718 ||| 0-0 ||| 101 668016 +a ||| for time ||| 0.0277778 0.0683377 1.49697e-06 6.04942e-05 2.718 ||| 0-0 ||| 36 668016 +a ||| for too ||| 0.00363636 0.0683377 1.49697e-06 5.01508e-05 2.718 ||| 0-0 ||| 275 668016 +a ||| for treating ||| 0.0212766 0.12089 1.49697e-06 4.3039e-06 2.718 ||| 0-0 0-1 ||| 47 668016 +a ||| for turning ||| 0.0333333 0.0683377 1.49697e-06 1.84242e-06 2.718 ||| 0-0 ||| 30 668016 +a ||| for two regulations , one of which ||| 1 0.0683377 1.49697e-06 8.77787e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| for two regulations , one of ||| 1 0.0683377 1.49697e-06 1.03335e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| for two regulations , one ||| 1 0.0683377 1.49697e-06 1.90079e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| for two regulations , ||| 0.5 0.0683377 1.49697e-06 4.56045e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| for two regulations ||| 0.142857 0.0683377 1.49697e-06 3.82412e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| for two ||| 0.00112867 0.0683377 1.49697e-06 8.71099e-06 2.718 ||| 0-0 ||| 886 668016 +a ||| for us on ||| 0.125 0.0733188 1.49697e-06 4.02894e-06 2.718 ||| 0-0 0-2 ||| 8 668016 +a ||| for us to ask : is it ||| 1 0.0683377 1.49697e-06 2.43579e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| for us to ask : is ||| 1 0.0683377 1.49697e-06 1.36972e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| for us to ask : ||| 1 0.0683377 1.49697e-06 4.37035e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| for us to ask ||| 0.153846 0.0683377 2.99394e-06 1.29761e-09 2.718 ||| 0-0 ||| 13 668016 +a ||| for us to be supporting ||| 0.5 0.190621 1.49697e-06 4.08949e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| for us to give ||| 0.037037 0.0683377 1.49697e-06 5.71892e-09 2.718 ||| 0-0 ||| 27 668016 +a ||| for us to have ||| 0.00684932 0.0683377 1.49697e-06 1.12867e-07 2.718 ||| 0-0 ||| 146 668016 +a ||| for us to ||| 0.0136054 0.229811 2.69455e-05 7.75978e-06 2.718 ||| 0-2 ||| 1323 668016 +a ||| for us ||| 0.00609508 0.0683377 4.49091e-05 0.000106205 2.718 ||| 0-0 ||| 4922 668016 +a ||| for use , ||| 0.1 0.0683377 1.49697e-06 2.13654e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| for use by ||| 0.04 0.0510672 1.49697e-06 1.47402e-07 2.718 ||| 0-0 0-2 ||| 25 668016 +a ||| for use ||| 0.00772201 0.0683377 2.99394e-06 1.79157e-05 2.718 ||| 0-0 ||| 259 668016 +a ||| for using ||| 0.00816326 0.0683377 2.99394e-06 2.86313e-06 2.718 ||| 0-0 ||| 245 668016 +a ||| for valuable ||| 0.333333 0.0683377 1.49697e-06 5.30618e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| for various operations , ||| 1 0.0683377 1.49697e-06 1.70979e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| for various operations ||| 1 0.0683377 1.49697e-06 1.43373e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for various specific reasons - ||| 1 0.0683377 1.49697e-06 3.27843e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| for various specific reasons ||| 1 0.0683377 1.49697e-06 8.69126e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| for various specific ||| 1 0.0683377 1.49697e-06 8.5967e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for various ||| 0.0105634 0.0683377 4.49091e-06 5.68941e-06 2.718 ||| 0-0 ||| 284 668016 +a ||| for violent ||| 1 0.0683377 1.49697e-06 2.39515e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| for voting in favour ||| 0.0714286 0.0683377 1.49697e-06 9.92542e-12 2.718 ||| 0-0 ||| 14 668016 +a ||| for voting in ||| 0.047619 0.0683377 1.49697e-06 3.06814e-08 2.718 ||| 0-0 ||| 21 668016 +a ||| for voting ||| 0.00729927 0.0683377 1.49697e-06 1.43341e-06 2.718 ||| 0-0 ||| 137 668016 +a ||| for walks ||| 0.5 0.0683377 1.49697e-06 5.15879e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| for we are directly guilty ||| 1 0.0683377 1.49697e-06 5.08621e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| for we are directly ||| 1 0.0683377 1.49697e-06 2.39916e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| for we are ||| 0.0416667 0.0683377 2.99394e-06 6.34697e-06 2.718 ||| 0-0 ||| 48 668016 +a ||| for we ||| 0.0114943 0.0683377 4.49091e-06 0.000418315 2.718 ||| 0-0 ||| 261 668016 +a ||| for were ||| 0.0909091 0.0683377 1.49697e-06 6.60104e-05 2.718 ||| 0-0 ||| 11 668016 +a ||| for what are ||| 0.0526316 0.0683377 1.49697e-06 7.84461e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| for what has happened ||| 0.0294118 0.0683377 1.49697e-06 1.64739e-11 2.718 ||| 0-0 ||| 34 668016 +a ||| for what has ||| 0.027027 0.0683377 1.49697e-06 2.66137e-07 2.718 ||| 0-0 ||| 37 668016 +a ||| for what is ||| 0.0136054 0.0683377 2.99394e-06 1.6204e-06 2.718 ||| 0-0 ||| 147 668016 +a ||| for what might ||| 0.142857 0.0683377 1.49697e-06 1.98536e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| for what ||| 0.00567721 0.0683377 1.04788e-05 5.17021e-05 2.718 ||| 0-0 ||| 1233 668016 +a ||| for which Mr Milosevic ||| 1 0.0683377 1.49697e-06 2.86069e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| for which Mr ||| 0.0588235 0.0683377 1.49697e-06 2.04335e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| for which came ||| 0.5 0.0683377 1.49697e-06 3.94397e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| for which they must be prepared ||| 1 0.0683377 1.49697e-06 2.48117e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| for which they must be ||| 1 0.0683377 1.49697e-06 2.86179e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| for which they must ||| 0.2 0.0683377 1.49697e-06 1.5791e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| for which they ||| 0.037037 0.0683377 2.99394e-06 1.02168e-06 2.718 ||| 0-0 ||| 54 668016 +a ||| for which we ||| 0.00689655 0.0683377 1.49697e-06 3.55342e-06 2.718 ||| 0-0 ||| 145 668016 +a ||| for which ||| 0.00398162 0.0683377 1.94606e-05 0.000313013 2.718 ||| 0-0 ||| 3265 668016 +a ||| for whom I am standing in - ||| 1 0.0683377 1.49697e-06 9.47182e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| for whom I am standing in ||| 0.25 0.0683377 1.49697e-06 2.51102e-17 2.718 ||| 0-0 ||| 4 668016 +a ||| for whom I am standing ||| 0.25 0.0683377 1.49697e-06 1.17313e-15 2.718 ||| 0-0 ||| 4 668016 +a ||| for whom I am ||| 0.333333 0.0683377 1.49697e-06 2.21763e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| for whom I ||| 0.111111 0.0683377 1.49697e-06 1.73591e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| for whom ||| 0.00639659 0.0683377 4.49091e-06 2.45411e-06 2.718 ||| 0-0 ||| 469 668016 +a ||| for whose report I also voted in ||| 1 0.0683377 1.49697e-06 3.6664e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| for whose report I also voted ||| 1 0.0683377 1.49697e-06 1.71291e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| for whose report I also ||| 1 0.0683377 1.49697e-06 4.25039e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| for whose report I ||| 1 0.0683377 1.49697e-06 8.41896e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| for whose report ||| 1 0.0683377 1.49697e-06 1.19021e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| for whose ||| 0.037037 0.0683377 1.49697e-06 2.90366e-06 2.718 ||| 0-0 ||| 27 668016 +a ||| for with ||| 0.05 0.0627484 1.49697e-06 0.000615189 2.718 ||| 0-0 0-1 ||| 20 668016 +a ||| for word into ||| 1 0.107578 1.49697e-06 4.75256e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| for work on ||| 0.0588235 0.0782999 1.49697e-06 1.84559e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| for years , has required our support ||| 1 0.0683377 1.49697e-06 2.88149e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| for years , has required our ||| 1 0.0683377 1.49697e-06 8.42788e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| for years , has required ||| 1 0.0683377 1.49697e-06 6.10982e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| for years , has ||| 0.25 0.0683377 1.49697e-06 3.84992e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| for years , ||| 0.00307692 0.0683377 1.49697e-06 7.4792e-07 2.718 ||| 0-0 ||| 325 668016 +a ||| for years ||| 0.000686813 0.0683377 1.49697e-06 6.27161e-06 2.718 ||| 0-0 ||| 1456 668016 +a ||| for you , ||| 0.00507614 0.0683377 1.49697e-06 1.41881e-05 2.718 ||| 0-0 ||| 197 668016 +a ||| for you in ||| 0.0714286 0.0683377 1.49697e-06 2.54655e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| for you ||| 0.0143416 0.0683377 1.64667e-05 0.000118973 2.718 ||| 0-0 ||| 767 668016 +a ||| for young ||| 0.0119048 0.0683377 1.49697e-06 2.34725e-06 2.718 ||| 0-0 ||| 84 668016 +a ||| for your comment ||| 0.04 0.0683377 1.49697e-06 4.3093e-10 2.718 ||| 0-0 ||| 25 668016 +a ||| for your part , the ||| 1 0.0683377 1.49697e-06 8.23048e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| for your part , ||| 0.25 0.0683377 1.49697e-06 1.34065e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| for your part ||| 0.125 0.0683377 1.49697e-06 1.12419e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| for your ||| 0.000637959 0.0683377 2.99394e-06 9.42953e-06 2.718 ||| 0-0 ||| 3135 668016 +a ||| for yourself in ||| 0.5 0.0587624 1.49697e-06 2.07799e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| for ||| 0.0551002 0.0683377 0.0449016 0.0368485 2.718 ||| 0-0 ||| 544372 668016 +a ||| for £ ||| 1 0.0683377 1.49697e-06 6.63273e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| for – ||| 0.0909091 0.0683377 1.49697e-06 1.44815e-05 2.718 ||| 0-0 ||| 11 668016 +a ||| force European countries to reduce their levels ||| 1 0.229811 1.49697e-06 4.42618e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| force European countries to reduce their ||| 1 0.229811 1.49697e-06 3.34304e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| force European countries to reduce ||| 1 0.229811 1.49697e-06 2.88417e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| force European countries to ||| 1 0.229811 1.49697e-06 7.56999e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| force against ||| 0.0113636 0.05146 1.49697e-06 4.42435e-07 2.718 ||| 0-1 ||| 88 668016 +a ||| force all ||| 0.1 0.0038996 1.49697e-06 9.41376e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| force any truck to ||| 1 0.229811 1.49697e-06 6.31116e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| force at ||| 0.0169492 0.204175 1.49697e-06 5.79283e-06 2.718 ||| 0-1 ||| 59 668016 +a ||| force behind ||| 0.0952381 0.0923313 2.99394e-06 1.31122e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| force her to ||| 1 0.229811 1.49697e-06 1.6223e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| force into ||| 0.166667 0.107578 1.49697e-06 1.03385e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| force it into ||| 0.25 0.107578 2.99394e-06 1.83851e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| force of ||| 0.0047619 0.0188479 4.49091e-06 5.03426e-06 2.718 ||| 0-1 ||| 630 668016 +a ||| force to ||| 0.0142857 0.229811 2.99394e-06 5.96213e-05 2.718 ||| 0-1 ||| 140 668016 +a ||| force us to ||| 0.0163934 0.229811 1.49697e-06 1.71841e-07 2.718 ||| 0-2 ||| 61 668016 +a ||| forced back onto ||| 0.047619 0.207143 1.49697e-06 1.1295e-11 2.718 ||| 0-2 ||| 21 668016 +a ||| forced on ||| 0.025 0.0782999 1.49697e-06 2.67446e-06 2.718 ||| 0-1 ||| 40 668016 +a ||| forced out ||| 0.05 0.0684932 1.49697e-06 1.06638e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| forced to actually ||| 1 0.229811 1.49697e-06 1.01946e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| forced to employ that ||| 1 0.229811 1.49697e-06 2.82493e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| forced to employ ||| 0.2 0.229811 1.49697e-06 1.67935e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| forced to flee ||| 0.0185185 0.229811 1.49697e-06 8.89065e-11 2.718 ||| 0-1 ||| 54 668016 +a ||| forced to have ||| 0.0714286 0.229811 1.49697e-06 2.95362e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| forced to reduce ||| 0.0909091 0.229811 1.49697e-06 9.40928e-10 2.718 ||| 0-1 ||| 11 668016 +a ||| forced to resort to one ||| 0.5 0.229811 1.49697e-06 1.41771e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| forced to resort to ||| 0.2 0.229811 1.49697e-06 3.40142e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| forced to resort ||| 0.2 0.229811 1.49697e-06 3.82792e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| forced to take part ||| 0.166667 0.229811 1.49697e-06 4.7403e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| forced to take ||| 0.027027 0.229811 1.49697e-06 3.9761e-08 2.718 ||| 0-1 ||| 37 668016 +a ||| forced to vote ||| 0.0526316 0.229811 1.49697e-06 3.88472e-09 2.718 ||| 0-1 ||| 19 668016 +a ||| forced to watch ||| 0.125 0.229811 1.49697e-06 4.44533e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| forced to ||| 0.0147516 0.229811 2.84424e-05 2.46963e-05 2.718 ||| 0-1 ||| 1288 668016 +a ||| forced upon ||| 0.0434783 0.19056 2.99394e-06 1.38991e-07 2.718 ||| 0-1 ||| 46 668016 +a ||| forced ||| 0.0128824 0.0684932 4.7903e-05 0.0002784 2.718 ||| 0-0 ||| 2484 668016 +a ||| forces , must be ||| 1 0.0003124 1.49697e-06 1.3173e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| forcibly deported from their homes ||| 1 0.0435582 1.49697e-06 6.06785e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| forcibly deported from their ||| 1 0.0435582 1.49697e-06 6.00777e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| forcibly deported from ||| 0.5 0.0435582 1.49697e-06 5.18314e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| forcibly displaced ||| 0.166667 0.164251 1.49697e-06 2.356e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| forcibly imposed ||| 0.1 0.164251 1.49697e-06 1.7298e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| forcibly removed ||| 0.142857 0.164251 1.49697e-06 1.4043e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| forcibly ||| 0.0396825 0.164251 7.48485e-06 3.1e-05 2.718 ||| 0-0 ||| 126 668016 +a ||| forcing countries ||| 0.142857 0.335672 1.49697e-06 9.94814e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| forcing the hand of ||| 1 0.17726 1.49697e-06 1.88686e-10 2.718 ||| 0-0 0-3 ||| 1 668016 +a ||| forcing them ||| 0.0204082 0.335672 1.49697e-06 7.02789e-07 2.718 ||| 0-0 ||| 49 668016 +a ||| forcing unemployment ||| 0.5 0.335672 1.49697e-06 4.8208e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| forcing ||| 0.0338983 0.335672 2.09576e-05 0.000262 2.718 ||| 0-0 ||| 413 668016 +a ||| fore in respect of ||| 0.5 0.0587624 1.49697e-06 1.62496e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| fore in respect ||| 0.5 0.0587624 1.49697e-06 2.98904e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| fore in ||| 0.037037 0.0587624 1.49697e-06 6.90949e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| foreign nationals working in the Union to ||| 1 0.229811 1.49697e-06 1.49373e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| foremost , to ||| 0.0227273 0.229811 1.49697e-06 1.62505e-06 2.718 ||| 0-2 ||| 44 668016 +a ||| foremost about ensuring ||| 1 0.0526361 1.49697e-06 2.27785e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| foremost about ||| 0.125 0.0526361 1.49697e-06 1.96029e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| foremost at ||| 0.111111 0.204175 1.49697e-06 1.32398e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| foremost to ||| 0.0196078 0.229811 1.49697e-06 1.36267e-05 2.718 ||| 0-1 ||| 51 668016 +a ||| foreseeable future , for ||| 0.333333 0.0683377 1.49697e-06 5.48556e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| forest in ||| 0.0526316 0.0587624 1.49697e-06 6.24858e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| forests mainly for ||| 1 0.0683377 1.49697e-06 8.62255e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| forged with ||| 0.5 0.0571592 1.49697e-06 4.17378e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| forgetting and abandoning ||| 1 0.107143 1.49697e-06 1.69275e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| forgive me for saying so , ||| 0.2 0.0683377 1.49697e-06 7.24428e-18 2.718 ||| 0-2 ||| 5 668016 +a ||| forgive me for saying so ||| 0.142857 0.0683377 1.49697e-06 6.07462e-17 2.718 ||| 0-2 ||| 7 668016 +a ||| forgive me for saying ||| 0.5 0.0683377 1.49697e-06 2.6764e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| forgive me for ||| 0.0227273 0.0683377 1.49697e-06 1.50868e-10 2.718 ||| 0-2 ||| 44 668016 +a ||| form , although ||| 0.333333 0.0921822 1.49697e-06 7.893e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| form , to ||| 0.333333 0.229811 1.49697e-06 1.9016e-05 2.718 ||| 0-2 ||| 3 668016 +a ||| form as soon ||| 1 0.0243476 1.49697e-06 3.67773e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| form as ||| 0.0714286 0.0243476 1.49697e-06 3.9932e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| form at ||| 0.166667 0.204175 1.49697e-06 1.54929e-05 2.718 ||| 0-1 ||| 6 668016 +a ||| form of accommodation over ||| 1 0.0682544 1.49697e-06 1.66703e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| form of ||| 0.00242879 0.0188479 1.64667e-05 1.34641e-05 2.718 ||| 0-1 ||| 4529 668016 +a ||| form part of ||| 0.00461894 0.0188479 2.99394e-06 1.60519e-08 2.718 ||| 0-2 ||| 433 668016 +a ||| form to ||| 0.0232558 0.229811 1.49697e-06 0.000159457 2.718 ||| 0-1 ||| 43 668016 +a ||| formed around ||| 0.333333 0.0931303 1.49697e-06 1.75473e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| formed from events ) ||| 1 0.0435582 1.49697e-06 1.4593e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| formed from events ||| 1 0.0435582 1.49697e-06 1.0153e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| formed from ||| 0.0909091 0.0435582 1.49697e-06 1.39657e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| forms of ||| 0.00146252 0.0188479 5.98788e-06 2.6384e-06 2.718 ||| 0-1 ||| 2735 668016 +a ||| fortunate in being able ||| 0.2 0.0587624 1.49697e-06 6.70942e-13 2.718 ||| 0-1 ||| 5 668016 +a ||| fortunate in being ||| 0.25 0.0587624 1.49697e-06 8.03619e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| fortunate in ||| 0.04 0.0587624 1.49697e-06 2.82388e-07 2.718 ||| 0-1 ||| 25 668016 +a ||| fortunate one in the sense ||| 1 0.0587624 1.49697e-06 1.28691e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| fortunate one in the ||| 1 0.0587624 1.49697e-06 7.22577e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| fortunate one in ||| 1 0.0587624 1.49697e-06 1.17699e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| forward , for ||| 0.0666667 0.0683377 1.49697e-06 2.44502e-06 2.718 ||| 0-2 ||| 15 668016 +a ||| forward , in ||| 0.0588235 0.0587624 1.49697e-06 3.98667e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| forward , to ||| 0.0588235 0.229811 1.49697e-06 2.32437e-05 2.718 ||| 0-2 ||| 17 668016 +a ||| forward again , ||| 1 0.0700825 1.49697e-06 1.53834e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| forward again ||| 0.166667 0.0700825 1.49697e-06 1.28996e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| forward at ||| 0.0882353 0.204175 4.49091e-06 1.89373e-05 2.718 ||| 0-1 ||| 34 668016 +a ||| forward for ||| 0.0150376 0.0683377 5.98788e-06 2.05025e-05 2.718 ||| 0-1 ||| 266 668016 +a ||| forward if we are to ||| 0.25 0.229811 1.49697e-06 2.80527e-11 2.718 ||| 0-4 ||| 4 668016 +a ||| forward in ||| 0.00481541 0.0587624 4.49091e-06 3.34299e-05 2.718 ||| 0-1 ||| 623 668016 +a ||| forward now , to ||| 1 0.229811 1.49697e-06 4.78796e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| forward on ||| 0.0183486 0.0782999 2.99394e-06 2.11074e-05 2.718 ||| 0-1 ||| 109 668016 +a ||| forward to civil ||| 1 0.229811 1.49697e-06 5.18455e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| forward to meeting ||| 0.5 0.229811 1.49697e-06 2.44804e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| forward to next ||| 1 0.229811 1.49697e-06 2.0134e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| forward to ||| 0.0261375 0.229811 4.04182e-05 0.000194908 2.718 ||| 0-1 ||| 1033 668016 +a ||| forward towards ||| 0.0126582 0.155507 1.49697e-06 1.87651e-06 2.718 ||| 0-1 ||| 79 668016 +a ||| forward very much to getting ||| 1 0.229811 1.49697e-06 7.90963e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| forward very much to ||| 0.333333 0.229811 1.49697e-06 6.80691e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| forward with ||| 0.0047619 0.0571592 1.49697e-06 9.28915e-06 2.718 ||| 0-1 ||| 210 668016 +a ||| forward your comments to the ||| 1 0.229811 1.49697e-06 1.53102e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| forward your comments to ||| 1 0.229811 1.49697e-06 2.49385e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| forwarded to ||| 0.029703 0.229811 4.49091e-06 1.12097e-06 2.718 ||| 0-1 ||| 101 668016 +a ||| forwards to ||| 1 0.229811 1.49697e-06 4.27368e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| fought alongside us in the ||| 1 0.0587624 1.49697e-06 3.1411e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| fought alongside us in ||| 1 0.0587624 1.49697e-06 5.11647e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| fought to ||| 0.016129 0.229811 1.49697e-06 5.53477e-06 2.718 ||| 0-1 ||| 62 668016 +a ||| found for ||| 0.0384615 0.0683377 2.99394e-06 8.06245e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| found in favour of ||| 0.111111 0.0587624 1.49697e-06 2.31196e-10 2.718 ||| 0-1 ||| 9 668016 +a ||| found in favour ||| 0.125 0.0587624 1.49697e-06 4.25275e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| found in ||| 0.00983146 0.0587624 1.04788e-05 1.31461e-05 2.718 ||| 0-1 ||| 712 668016 +a ||| found themselves in a ||| 0.111111 0.0587624 1.49697e-06 2.5039e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| found themselves in ||| 0.0333333 0.0587624 1.49697e-06 5.64886e-09 2.718 ||| 0-2 ||| 30 668016 +a ||| found to ||| 0.0406091 0.229811 1.19758e-05 7.6646e-05 2.718 ||| 0-1 ||| 197 668016 +a ||| foundation for ||| 0.00469484 0.0683377 1.49697e-06 3.7217e-07 2.718 ||| 0-1 ||| 213 668016 +a ||| foundations for ||| 0.00526316 0.0683377 2.99394e-06 3.46376e-07 2.718 ||| 0-1 ||| 380 668016 +a ||| foundations of ||| 0.00338983 0.0188479 1.49697e-06 2.78038e-07 2.718 ||| 0-1 ||| 295 668016 +a ||| founded on ||| 0.00369686 0.0782999 2.99394e-06 6.98015e-07 2.718 ||| 0-1 ||| 541 668016 +a ||| founded to ||| 0.2 0.229811 1.49697e-06 6.44555e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| founded upon ||| 0.00704225 0.19056 1.49697e-06 3.62756e-08 2.718 ||| 0-1 ||| 142 668016 +a ||| foundering ||| 0.166667 0.166667 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| four-year period from 2003 to 2006 ||| 0.25 0.229811 1.49697e-06 4.25654e-24 2.718 ||| 0-4 ||| 4 668016 +a ||| four-year period from 2003 to ||| 0.25 0.229811 1.49697e-06 4.52824e-19 2.718 ||| 0-4 ||| 4 668016 +a ||| fourteen-year-old ||| 1 0.5 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| fr ) At ||| 0.333333 0.0148148 1.49697e-06 7.06289e-14 2.718 ||| 0-2 ||| 3 668016 +a ||| frail in ||| 0.125 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| framework conditions for ||| 0.02 0.0683377 1.49697e-06 5.24444e-10 2.718 ||| 0-2 ||| 50 668016 +a ||| framework for mutual recognition ||| 1 0.0683377 1.49697e-06 2.71307e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| framework for mutual ||| 1 0.0683377 1.49697e-06 9.65504e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| framework for ||| 0.00195122 0.0683377 2.99394e-06 4.38866e-06 2.718 ||| 0-1 ||| 1025 668016 +a ||| framework of ||| 0.000524384 0.0188479 2.99394e-06 3.5228e-06 2.718 ||| 0-1 ||| 3814 668016 +a ||| framework should continue to exist , subject ||| 0.25 0.229811 1.49697e-06 2.53622e-19 2.718 ||| 0-3 ||| 4 668016 +a ||| framework should continue to exist , ||| 0.25 0.229811 1.49697e-06 4.69844e-16 2.718 ||| 0-3 ||| 4 668016 +a ||| framework should continue to exist ||| 0.25 0.229811 1.49697e-06 3.93984e-15 2.718 ||| 0-3 ||| 4 668016 +a ||| framework should continue to ||| 0.25 0.229811 1.49697e-06 4.27779e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| framework to ||| 0.0105263 0.229811 1.49697e-06 4.17209e-05 2.718 ||| 0-1 ||| 95 668016 +a ||| frankly , to ||| 0.111111 0.229811 1.49697e-06 2.84071e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| frankly , ||| 0.00220751 0.0049546 1.49697e-06 6.55901e-07 2.718 ||| 0-0 ||| 453 668016 +a ||| frankly ||| 0.00108932 0.0049546 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 918 668016 +a ||| free from ||| 0.003663 0.0435582 1.49697e-06 8.3938e-07 2.718 ||| 0-1 ||| 273 668016 +a ||| free in ||| 0.04 0.0587624 1.49697e-06 7.00562e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| free of ||| 0.00507614 0.0188479 2.99394e-06 3.44885e-06 2.718 ||| 0-1 ||| 394 668016 +a ||| free to do as ||| 0.2 0.229811 1.49697e-06 1.43183e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| free to do ||| 0.0666667 0.229811 1.49697e-06 1.40315e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| free to go after ||| 1 0.229811 1.49697e-06 6.47317e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| free to go ||| 0.1 0.229811 1.49697e-06 2.38863e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| free to ||| 0.00940439 0.229811 8.98182e-06 4.08452e-05 2.718 ||| 0-1 ||| 638 668016 +a ||| free trade to reducing poverty and encouraging ||| 0.5 0.229811 1.49697e-06 4.25994e-25 2.718 ||| 0-2 ||| 2 668016 +a ||| free trade to reducing poverty and ||| 0.5 0.229811 1.49697e-06 1.78989e-20 2.718 ||| 0-2 ||| 2 668016 +a ||| free trade to reducing poverty ||| 0.5 0.229811 1.49697e-06 1.42895e-18 2.718 ||| 0-2 ||| 2 668016 +a ||| free trade to reducing ||| 0.5 0.229811 1.49697e-06 9.46325e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| free trade to ||| 0.0714286 0.229811 1.49697e-06 3.55761e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| free while ||| 0.5 0.0377813 1.49697e-06 1.06852e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| freed ||| 0.00512821 0.0038023 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 195 668016 +a ||| freedom of expression ||| 0.000595238 0.0188479 1.49697e-06 1.02688e-10 2.718 ||| 0-1 ||| 1680 668016 +a ||| freedom of ||| 0.000290023 0.0188479 2.99394e-06 2.52305e-06 2.718 ||| 0-1 ||| 6896 668016 +a ||| freedom to ||| 0.00393701 0.229811 4.49091e-06 2.98807e-05 2.718 ||| 0-1 ||| 762 668016 +a ||| freely to ||| 0.027027 0.229811 1.49697e-06 4.55392e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| freight to ||| 0.333333 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| frenzy ||| 0.0666667 0.0416667 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| frequent in ||| 0.0833333 0.0587624 1.49697e-06 2.58355e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| frequently enjoy ||| 1 0.157626 1.49697e-06 1.42374e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| frequently found ||| 0.5 0.157626 1.49697e-06 8.00808e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| frequently ||| 0.0021645 0.157626 4.49091e-06 0.000366 2.718 ||| 0-0 ||| 1386 668016 +a ||| fresh impetus to ||| 0.015625 0.229811 1.49697e-06 1.12552e-10 2.718 ||| 0-2 ||| 64 668016 +a ||| fresh start to ||| 0.333333 0.229811 1.49697e-06 1.31374e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| friend on ||| 0.25 0.0782999 1.49697e-06 4.36259e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| friendship and cooperation to ||| 0.5 0.0015873 1.49697e-06 2.2107e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| friendship and cooperation ||| 0.0714286 0.0015873 1.49697e-06 2.4879e-13 2.718 ||| 0-1 ||| 14 668016 +a ||| friendship and ||| 0.00925926 0.0015873 1.49697e-06 2.7013e-09 2.718 ||| 0-1 ||| 108 668016 +a ||| frightened to ||| 0.0454545 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| frightening ||| 0.00671141 0.0053191 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 149 668016 +a ||| from , ||| 0.00662252 0.0435582 1.49697e-06 0.000858491 2.718 ||| 0-0 ||| 151 668016 +a ||| from - ||| 0.0909091 0.0435582 1.49697e-06 2.71546e-05 2.718 ||| 0-0 ||| 11 668016 +a ||| from 2003 to 2006 ||| 0.142857 0.229811 1.49697e-06 6.0982e-14 2.718 ||| 0-2 ||| 7 668016 +a ||| from 2003 to ||| 0.0555556 0.229811 1.49697e-06 6.48745e-09 2.718 ||| 0-2 ||| 18 668016 +a ||| from Europe , ||| 0.00980392 0.0435582 1.49697e-06 4.34396e-07 2.718 ||| 0-0 ||| 102 668016 +a ||| from Europe ||| 0.0019685 0.0435582 1.49697e-06 3.64259e-06 2.718 ||| 0-0 ||| 508 668016 +a ||| from Parliament than ||| 0.5 0.0242272 1.49697e-06 1.16184e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| from Portugal ||| 0.0217391 0.0435582 1.49697e-06 5.18314e-08 2.718 ||| 0-0 ||| 46 668016 +a ||| from Spain ||| 0.0105263 0.0435582 1.49697e-06 1.16621e-07 2.718 ||| 0-0 ||| 95 668016 +a ||| from a distance ||| 0.0588235 0.131537 1.49697e-06 1.08144e-08 2.718 ||| 0-2 ||| 17 668016 +a ||| from a slightly more ||| 1 0.021845 1.49697e-06 8.17483e-14 2.718 ||| 0-0 0-3 ||| 1 668016 +a ||| from a ||| 0.00426309 0.0435582 3.14364e-05 0.000319093 2.718 ||| 0-0 ||| 4926 668016 +a ||| from abroad to ||| 1 0.229811 1.49697e-06 4.68224e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| from across ||| 0.0117647 0.046317 1.49697e-06 3.54181e-06 2.718 ||| 0-0 0-1 ||| 85 668016 +a ||| from adopting any ||| 1 0.0435582 1.49697e-06 5.32327e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| from adopting ||| 0.0294118 0.0435582 1.49697e-06 3.52021e-07 2.718 ||| 0-0 ||| 34 668016 +a ||| from all ||| 0.00253378 0.0435582 4.49091e-06 3.40172e-05 2.718 ||| 0-0 ||| 1184 668016 +a ||| from allowing ||| 0.142857 0.0435582 1.49697e-06 3.6282e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| from an ||| 0.0015873 0.0435582 2.99394e-06 3.19965e-05 2.718 ||| 0-0 ||| 1260 668016 +a ||| from any ||| 0.00260417 0.0435582 1.49697e-06 1.0886e-05 2.718 ||| 0-0 ||| 384 668016 +a ||| from anyone ||| 0.05 0.046998 1.49697e-06 1.74139e-06 2.718 ||| 0-0 0-1 ||| 20 668016 +a ||| from anything ||| 0.0136986 0.0435582 1.49697e-06 1.12949e-06 2.718 ||| 0-0 ||| 73 668016 +a ||| from arising ||| 0.0714286 0.0435582 2.99394e-06 2.09485e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| from arrest ||| 0.25 0.0435582 1.49697e-06 9.86236e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| from before ||| 0.03125 0.0319432 1.49697e-06 3.81752e-06 2.718 ||| 0-0 0-1 ||| 32 668016 +a ||| from being broadcast ||| 1 0.0435582 1.49697e-06 1.24967e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| from being driven into ||| 1 0.0435582 1.49697e-06 6.20483e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| from being driven ||| 0.333333 0.0435582 1.49697e-06 6.04347e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| from being ||| 0.0109589 0.0435582 1.19758e-05 2.04863e-05 2.718 ||| 0-0 ||| 730 668016 +a ||| from bidding for ||| 0.5 0.0683377 1.49697e-06 8.30772e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| from both sides ||| 0.00925926 0.0435582 1.49697e-06 4.37641e-10 2.718 ||| 0-0 ||| 108 668016 +a ||| from both ||| 0.00230415 0.0435582 1.49697e-06 1.19248e-05 2.718 ||| 0-0 ||| 434 668016 +a ||| from breathing ||| 0.0833333 0.0435582 1.49697e-06 1.58374e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| from bringing ||| 0.166667 0.0435582 2.99394e-06 5.78064e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| from certain ||| 0.00558659 0.0435582 1.49697e-06 2.05166e-06 2.718 ||| 0-0 ||| 179 668016 +a ||| from close by to ||| 1 0.229811 1.49697e-06 4.39223e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| from combined waste collection ||| 0.111111 0.0435582 1.49697e-06 1.19027e-16 2.718 ||| 0-0 ||| 9 668016 +a ||| from combined waste ||| 0.111111 0.0435582 1.49697e-06 1.26624e-11 2.718 ||| 0-0 ||| 9 668016 +a ||| from combined ||| 0.111111 0.0435582 1.49697e-06 1.8141e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| from coming to ||| 0.1 0.229811 1.49697e-06 1.0961e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| from conducting ||| 0.333333 0.0435582 1.49697e-06 8.78254e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| from custody ||| 1 0.0435582 1.49697e-06 4.1753e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| from dictatorship to ||| 0.142857 0.0435582 1.49697e-06 1.40728e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| from dictatorship ||| 0.0769231 0.0435582 1.49697e-06 1.58374e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| from doing others ||| 1 0.0435582 1.49697e-06 2.56868e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| from doing ||| 0.0181818 0.0435582 1.49697e-06 2.64268e-06 2.718 ||| 0-0 ||| 55 668016 +a ||| from driving on to ||| 1 0.0782999 1.49697e-06 1.79683e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| from driving on ||| 1 0.0782999 1.49697e-06 2.02213e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| from dubious practices ||| 0.125 0.0435582 1.49697e-06 1.2045e-12 2.718 ||| 0-0 ||| 8 668016 +a ||| from dubious ||| 0.125 0.0435582 1.49697e-06 3.38344e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| from ending up in ||| 0.125 0.0587624 1.49697e-06 3.1019e-12 2.718 ||| 0-3 ||| 8 668016 +a ||| from engaging ||| 0.125 0.0435582 1.49697e-06 9.5744e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| from entering ||| 0.0125 0.0435582 1.49697e-06 1.11581e-07 2.718 ||| 0-0 ||| 80 668016 +a ||| from ethnic minorities , ||| 0.5 0.0435582 1.49697e-06 1.24395e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| from ethnic minorities ||| 0.111111 0.0435582 1.49697e-06 1.04311e-12 2.718 ||| 0-0 ||| 9 668016 +a ||| from ethnic ||| 1 0.0435582 1.49697e-06 8.27862e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| from events ) ||| 1 0.0435582 1.49697e-06 7.52215e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| from events ||| 0.05 0.0435582 1.49697e-06 5.23353e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| from every ||| 0.00666667 0.0435582 1.49697e-06 1.17124e-06 2.718 ||| 0-0 ||| 150 668016 +a ||| from exercising ||| 0.0333333 0.0435582 1.49697e-06 6.98284e-08 2.718 ||| 0-0 ||| 30 668016 +a ||| from factories to ||| 1 0.229811 1.49697e-06 2.2565e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| from giving ||| 0.0294118 0.136521 1.49697e-06 1.62425e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| from going down ||| 0.2 0.0435582 1.49697e-06 4.30081e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| from going to ||| 0.0625 0.229811 1.49697e-06 4.82779e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| from going ||| 0.0322581 0.0435582 2.99394e-06 6.16073e-06 2.718 ||| 0-0 ||| 62 668016 +a ||| from having access to ||| 0.1 0.0435582 1.49697e-06 2.1064e-11 2.718 ||| 0-0 ||| 10 668016 +a ||| from having access ||| 0.0909091 0.0435582 1.49697e-06 2.37052e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| from having to ||| 0.030303 0.229811 1.49697e-06 2.16004e-07 2.718 ||| 0-2 ||| 33 668016 +a ||| from having ||| 0.00598802 0.0435582 1.49697e-06 2.75642e-06 2.718 ||| 0-0 ||| 167 668016 +a ||| from here ||| 0.00636943 0.0435582 1.49697e-06 1.45977e-05 2.718 ||| 0-0 ||| 157 668016 +a ||| from holding ||| 0.0714286 0.0435582 1.49697e-06 4.32648e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| from house ||| 0.111111 0.0435582 1.49697e-06 1.55494e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| from in ||| 0.0625 0.0435582 1.49697e-06 0.000154087 2.718 ||| 0-0 ||| 16 668016 +a ||| from issuing an ||| 1 0.0435582 1.49697e-06 4.38352e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| from issuing ||| 0.125 0.0435582 1.49697e-06 9.86236e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| from it for ||| 0.5 0.0683377 1.49697e-06 1.05527e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| from it in ||| 0.142857 0.0587624 1.49697e-06 1.72065e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| from it ||| 0.00588235 0.0435582 4.49091e-06 0.000128018 2.718 ||| 0-0 ||| 510 668016 +a ||| from knowingly ||| 1 0.0435582 1.49697e-06 7.91868e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| from making ||| 0.0131579 0.0435582 1.49697e-06 2.76938e-06 2.718 ||| 0-0 ||| 76 668016 +a ||| from many ||| 0.00444444 0.0435582 1.49697e-06 2.47135e-06 2.718 ||| 0-0 ||| 225 668016 +a ||| from me ||| 0.00925926 0.0435582 1.49697e-06 4.3344e-06 2.718 ||| 0-0 ||| 108 668016 +a ||| from members ||| 0.0344828 0.0435582 1.49697e-06 1.06182e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| from misleading ||| 0.25 0.0435582 1.49697e-06 3.38344e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| from more environmentally ||| 0.25 0.0435582 1.49697e-06 1.47959e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| from more ||| 0.0212766 0.0435582 1.49697e-06 1.64399e-05 2.718 ||| 0-0 ||| 47 668016 +a ||| from moving to ||| 0.5 0.229811 1.49697e-06 3.35091e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| from moving ||| 0.0909091 0.0435582 1.49697e-06 4.27609e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| from negligible cause of ||| 1 0.0435582 1.49697e-06 9.90051e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| from negligible cause ||| 1 0.0435582 1.49697e-06 1.82115e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| from negligible ||| 0.5 0.0435582 1.49697e-06 1.00783e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| from news ||| 0.166667 0.0435582 1.49697e-06 2.61316e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| from non-EU ||| 0.0588235 0.0435582 1.49697e-06 7.91868e-09 2.718 ||| 0-0 ||| 17 668016 +a ||| from now on , to ||| 0.2 0.229811 1.49697e-06 9.27232e-10 2.718 ||| 0-4 ||| 5 668016 +a ||| from now on ||| 0.00425532 0.0782999 4.49091e-06 1.25842e-07 2.718 ||| 0-2 ||| 705 668016 +a ||| from now ||| 0.00291121 0.0435582 2.99394e-06 1.48288e-05 2.718 ||| 0-0 ||| 687 668016 +a ||| from occurring ||| 0.0344828 0.0435582 1.49697e-06 1.39657e-07 2.718 ||| 0-0 ||| 29 668016 +a ||| from office ||| 0.0869565 0.0435582 2.99394e-06 7.40757e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| from one another ||| 0.0232558 0.0435582 1.49697e-06 7.23411e-09 2.718 ||| 0-0 ||| 43 668016 +a ||| from one month to the ||| 0.5 0.0435582 1.49697e-06 2.12784e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| from one month to ||| 0.166667 0.0435582 1.49697e-06 3.466e-11 2.718 ||| 0-0 ||| 6 668016 +a ||| from one month ||| 0.2 0.0435582 1.49697e-06 3.9006e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| from one national currency to another ||| 1 0.229811 1.49697e-06 2.72443e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| from one national currency to ||| 1 0.229811 1.49697e-06 1.13e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| from one ||| 0.00448431 0.0435582 8.98182e-06 3.00046e-05 2.718 ||| 0-0 ||| 1338 668016 +a ||| from other socialist and left-wing ||| 0.5 0.0015873 1.49697e-06 6.19921e-21 2.718 ||| 0-3 ||| 2 668016 +a ||| from other socialist and ||| 0.5 0.0015873 1.49697e-06 5.63565e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| from our ||| 0.000728332 0.0435582 1.49697e-06 9.93002e-06 2.718 ||| 0-0 ||| 1373 668016 +a ||| from outside ||| 0.00163132 0.0435582 1.49697e-06 2.87232e-07 2.718 ||| 0-0 ||| 613 668016 +a ||| from participating ||| 0.025641 0.0435582 1.49697e-06 8.27862e-08 2.718 ||| 0-0 ||| 39 668016 +a ||| from people at all ||| 0.111111 0.204175 1.49697e-06 2.27974e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| from people at ||| 0.111111 0.204175 1.49697e-06 4.82443e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| from reaching ||| 0.0238095 0.114379 1.49697e-06 2.91047e-06 2.718 ||| 0-0 0-1 ||| 42 668016 +a ||| from registering for ||| 1 0.0683377 1.49697e-06 1.48352e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| from rejecting ||| 0.125 0.0435582 1.49697e-06 3.09548e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| from seeking ||| 0.0434783 0.0435582 1.49697e-06 3.64979e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| from sending ||| 0.166667 0.0435582 1.49697e-06 1.65572e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| from standard ||| 0.5 0.0435582 1.49697e-06 3.39063e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| from state to state , ||| 0.5 0.229811 1.49697e-06 4.29258e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| from state to state ||| 0.166667 0.229811 1.49697e-06 3.5995e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| from state to ||| 0.333333 0.229811 1.49697e-06 1.42498e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| from taking over ||| 0.2 0.0435582 1.49697e-06 1.47314e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| from taking place ||| 0.047619 0.0435582 1.49697e-06 4.60453e-09 2.718 ||| 0-0 ||| 21 668016 +a ||| from taking up ||| 0.2 0.0435582 1.49697e-06 1.04344e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| from taking ||| 0.028169 0.0435582 5.98788e-06 3.05949e-06 2.718 ||| 0-0 ||| 142 668016 +a ||| from that , ||| 0.010101 0.0435582 1.49697e-06 1.44412e-05 2.718 ||| 0-0 ||| 99 668016 +a ||| from that of the ||| 0.0243902 0.0435582 1.49697e-06 4.04156e-07 2.718 ||| 0-0 ||| 41 668016 +a ||| from that of ||| 0.0113636 0.0435582 1.49697e-06 6.58323e-06 2.718 ||| 0-0 ||| 88 668016 +a ||| from that public prosecutor to ||| 1 0.229811 1.49697e-06 1.68685e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| from that ||| 0.00442087 0.0435582 7.48485e-06 0.000121095 2.718 ||| 0-0 ||| 1131 668016 +a ||| from the current 50 years to ||| 1 0.229811 1.49697e-06 1.35998e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| from the direction ||| 0.166667 0.0435582 1.49697e-06 4.00846e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| from the fact that ||| 0.00421941 0.0435582 1.49697e-06 2.17772e-08 2.718 ||| 0-0 ||| 237 668016 +a ||| from the fact ||| 0.0287356 0.0435582 1.49697e-05 1.2946e-06 2.718 ||| 0-0 ||| 348 668016 +a ||| from the front ||| 0.111111 0.0435582 1.49697e-06 3.5621e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| from the ice of the ||| 1 0.0435582 1.49697e-06 8.9975e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| from the ice of ||| 1 0.0435582 1.49697e-06 1.46559e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| from the ice ||| 1 0.0435582 1.49697e-06 2.69588e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| from the market ||| 0.00578035 0.0435582 1.49697e-06 9.98801e-08 2.718 ||| 0-0 ||| 173 668016 +a ||| from the outset , ||| 0.00473934 0.0435582 1.49697e-06 1.02246e-09 2.718 ||| 0-0 ||| 211 668016 +a ||| from the outset ||| 0.00118064 0.0435582 1.49697e-06 8.57378e-09 2.718 ||| 0-0 ||| 847 668016 +a ||| from the point of ||| 0.00102354 0.0435582 1.49697e-06 2.1018e-08 2.718 ||| 0-0 ||| 977 668016 +a ||| from the point ||| 0.000966184 0.0435582 1.49697e-06 3.86615e-07 2.718 ||| 0-0 ||| 1035 668016 +a ||| from the raw information ||| 1 0.0435582 1.49697e-06 8.41136e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| from the raw ||| 1 0.0435582 1.49697e-06 5.08239e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| from the rest ||| 0.0123457 0.0435582 1.49697e-06 3.34112e-08 2.718 ||| 0-0 ||| 81 668016 +a ||| from the sidelines ||| 0.0625 0.0435582 1.49697e-06 1.59101e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| from the spending ||| 1 0.0435582 1.49697e-06 9.36928e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| from the tax ||| 0.0909091 0.0435582 1.49697e-06 2.79753e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| from the world of work due to ||| 1 0.0435582 1.49697e-06 8.50893e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| from the world of work due ||| 1 0.0435582 1.49697e-06 9.57585e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| from the world of work ||| 0.25 0.0435582 1.49697e-06 3.46449e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| from the world of ||| 0.0384615 0.0435582 1.49697e-06 5.47313e-09 2.718 ||| 0-0 ||| 26 668016 +a ||| from the world ||| 0.0166667 0.0435582 1.49697e-06 1.00676e-07 2.718 ||| 0-0 ||| 60 668016 +a ||| from the ||| 0.0016076 0.0435582 0.000100297 0.000441947 2.718 ||| 0-0 ||| 41677 668016 +a ||| from their homes ||| 0.0153846 0.0435582 1.49697e-06 8.42757e-11 2.718 ||| 0-0 ||| 65 668016 +a ||| from their own group to ||| 1 0.229811 1.49697e-06 1.42777e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| from their ||| 0.00102564 0.0435582 1.49697e-06 8.34413e-06 2.718 ||| 0-0 ||| 975 668016 +a ||| from them ||| 0.00326797 0.0435582 1.49697e-06 1.93101e-05 2.718 ||| 0-0 ||| 306 668016 +a ||| from there to ||| 0.125 0.136685 1.49697e-06 7.72992e-06 2.718 ||| 0-0 0-2 ||| 8 668016 +a ||| from this ongoing ||| 1 0.0435582 1.49697e-06 1.65591e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| from this place , ||| 0.5 0.0435582 1.49697e-06 8.34831e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| from this place ||| 0.047619 0.0435582 1.49697e-06 7.00041e-08 2.718 ||| 0-0 ||| 21 668016 +a ||| from this ||| 0.00120992 0.0435582 5.98788e-06 4.65143e-05 2.718 ||| 0-0 ||| 3306 668016 +a ||| from time to time ||| 0.00318471 0.229811 1.49697e-06 1.52042e-09 2.718 ||| 0-2 ||| 314 668016 +a ||| from time to ||| 0.00858369 0.0435582 2.99394e-06 1.05015e-06 2.718 ||| 0-0 ||| 233 668016 +a ||| from time ||| 0.00790514 0.0435582 2.99394e-06 1.18183e-05 2.718 ||| 0-0 ||| 253 668016 +a ||| from to ||| 0.25 0.136685 1.49697e-06 0.00252175 2.718 ||| 0-0 0-1 ||| 4 668016 +a ||| from transparent ||| 0.25 0.0435582 1.49697e-06 6.76687e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| from underneath ||| 0.25 0.0435582 1.49697e-06 1.29578e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| from us ||| 0.00909091 0.0435582 4.49091e-06 2.07484e-05 2.718 ||| 0-0 ||| 330 668016 +a ||| from using ||| 0.0232558 0.0435582 2.99394e-06 5.59347e-07 2.718 ||| 0-0 ||| 86 668016 +a ||| from where ||| 0.00990099 0.0244419 1.49697e-06 1.76731e-06 2.718 ||| 0-0 0-1 ||| 101 668016 +a ||| from who ||| 0.25 0.0435582 1.49697e-06 6.34934e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| from you about ||| 0.5 0.0435582 1.49697e-06 3.28722e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| from you ||| 0.00320513 0.0435582 1.49697e-06 2.32428e-05 2.718 ||| 0-0 ||| 312 668016 +a ||| from ||| 0.0296833 0.0435582 0.00500587 0.0071988 2.718 ||| 0-0 ||| 112656 668016 +a ||| front against ||| 0.2 0.05146 1.49697e-06 2.0952e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| front for ||| 0.0625 0.0683377 1.49697e-06 2.96999e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| front of ||| 0.00813008 0.0188479 2.99394e-06 2.38403e-06 2.718 ||| 0-1 ||| 246 668016 +a ||| frontier workers are to have a better ||| 1 0.229811 1.49697e-06 1.30211e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| frontier workers are to have a ||| 1 0.229811 1.49697e-06 7.66398e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| frontier workers are to have ||| 1 0.229811 1.49697e-06 1.72901e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| frontier workers are to ||| 1 0.229811 1.49697e-06 1.44569e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| frozen at ||| 0.125 0.204175 1.49697e-06 1.59966e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| fulfilled to anything approaching their satisfaction ||| 1 0.1653 1.49697e-06 2.44149e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| fulfilled to anything approaching their ||| 1 0.1653 1.49697e-06 2.05167e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| fulfilled to anything approaching ||| 1 0.1653 1.49697e-06 1.77006e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| fulfils ||| 0.00321543 0.005618 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 311 668016 +a ||| full access to ||| 0.012987 0.229811 1.49697e-06 5.52811e-09 2.718 ||| 0-2 ||| 77 668016 +a ||| full agreement with ||| 0.0645161 0.0571592 2.99394e-06 5.64612e-10 2.718 ||| 0-2 ||| 31 668016 +a ||| full cooperation of ||| 0.0588235 0.0188479 1.49697e-06 4.99887e-10 2.718 ||| 0-2 ||| 17 668016 +a ||| full implications of ||| 0.125 0.0188479 1.49697e-06 1.13438e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| full membership ||| 0.00568182 0.104903 1.49697e-06 1.12889e-07 2.718 ||| 0-1 ||| 176 668016 +a ||| full of good intentions and wish ||| 0.5 0.0188479 1.49697e-06 1.16373e-19 2.718 ||| 0-1 ||| 2 668016 +a ||| full of good intentions and ||| 0.2 0.0188479 1.49697e-06 3.94886e-16 2.718 ||| 0-1 ||| 5 668016 +a ||| full of good intentions ||| 0.030303 0.0188479 1.49697e-06 3.15256e-14 2.718 ||| 0-1 ||| 33 668016 +a ||| full of good ||| 0.0285714 0.0188479 1.49697e-06 2.81478e-09 2.718 ||| 0-1 ||| 35 668016 +a ||| full of ||| 0.00315457 0.0188479 2.99394e-06 5.42765e-06 2.718 ||| 0-1 ||| 634 668016 +a ||| full weight behind diplomatic initiatives ||| 1 0.0923313 1.49697e-06 6.44512e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| full weight behind diplomatic ||| 1 0.0923313 1.49697e-06 2.03316e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| full weight behind ||| 0.2 0.0923313 1.49697e-06 4.32587e-12 2.718 ||| 0-2 ||| 5 668016 +a ||| full-scale ||| 0.015873 0.134021 1.49697e-06 1.19e-05 2.718 ||| 0-0 ||| 63 668016 +a ||| full-time staff to ||| 1 0.229811 1.49697e-06 9.88201e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| full-time ||| 0.0107527 0.252525 2.99394e-06 0.0001141 2.718 ||| 0-0 ||| 186 668016 +a ||| fully aware of Parliament 's recommendations ||| 1 0.0188479 1.49697e-06 4.94007e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| fully aware of Parliament 's ||| 1 0.0188479 1.49697e-06 5.09286e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| fully aware of Parliament ||| 1 0.0188479 1.49697e-06 2.67426e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| fully aware of ||| 0.0031348 0.0188479 1.49697e-06 4.65899e-10 2.718 ||| 0-2 ||| 319 668016 +a ||| fully behind ||| 0.04 0.0923313 1.49697e-06 8.73634e-08 2.718 ||| 0-1 ||| 25 668016 +a ||| fully in ensuring ||| 0.5 0.0587624 1.49697e-06 7.91712e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| fully in ||| 0.00480769 0.0587624 2.99394e-06 6.81336e-06 2.718 ||| 0-1 ||| 416 668016 +a ||| fully taken in ||| 0.5 0.0587624 1.49697e-06 6.21037e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| fully to these ||| 1 0.229811 1.49697e-06 4.1198e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| fully to ||| 0.00943396 0.229811 1.49697e-06 3.97242e-05 2.718 ||| 0-1 ||| 106 668016 +a ||| function of ||| 0.00970874 0.0188479 2.99394e-06 7.33547e-07 2.718 ||| 0-1 ||| 206 668016 +a ||| function to ||| 0.08 0.229811 2.99394e-06 8.68748e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| function with ||| 0.037037 0.0571592 1.49697e-06 4.14038e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| functioning of ||| 0.00126422 0.0188479 1.49697e-06 4.58467e-07 2.718 ||| 0-1 ||| 791 668016 +a ||| functioning systems believed to be unchangeable ||| 1 0.229811 1.49697e-06 2.3144e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| functioning systems believed to be ||| 1 0.229811 1.49697e-06 5.78601e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| functioning systems believed to ||| 1 0.229811 1.49697e-06 3.19265e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| functions as ||| 0.037037 0.0243476 1.49697e-06 9.1233e-08 2.718 ||| 0-1 ||| 27 668016 +a ||| functions at ||| 0.142857 0.204175 1.49697e-06 3.53968e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| functions for ||| 0.0526316 0.0683377 1.49697e-06 3.83224e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| fund at the ||| 0.25 0.204175 1.49697e-06 7.96097e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| fund at ||| 0.1 0.204175 1.49697e-06 1.29675e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| fund for ||| 0.00917431 0.0683377 1.49697e-06 1.40393e-06 2.718 ||| 0-1 ||| 109 668016 +a ||| fund to ||| 0.0106383 0.229811 1.49697e-06 1.33465e-05 2.718 ||| 0-1 ||| 94 668016 +a ||| fundamental shift in ||| 0.1 0.0587624 1.49697e-06 5.86489e-11 2.718 ||| 0-2 ||| 10 668016 +a ||| funded ||| 0.000914077 0.0006998 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1094 668016 +a ||| funding for ||| 0.00219298 0.0683377 4.49091e-06 1.96403e-06 2.718 ||| 0-1 ||| 1368 668016 +a ||| funding is to be made ||| 0.5 0.229811 1.49697e-06 2.22154e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| funding is to be ||| 0.25 0.229811 1.49697e-06 1.0605e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| funding is to ||| 0.047619 0.229811 1.49697e-06 5.85172e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| funding levels reached ||| 1 0.14487 1.49697e-06 8.67648e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| funding will be insufficient to carry out ||| 1 0.229811 1.49697e-06 1.19339e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| funding will be insufficient to carry ||| 1 0.229811 1.49697e-06 3.11557e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| funding will be insufficient to ||| 1 0.229811 1.49697e-06 1.69786e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| funds at ||| 0.0384615 0.204175 1.49697e-06 2.5969e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| funds for ||| 0.00163399 0.0683377 1.49697e-06 2.81154e-06 2.718 ||| 0-1 ||| 612 668016 +a ||| funds into ||| 0.0384615 0.107578 1.49697e-06 4.63469e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| funds to return to the budgets of ||| 1 0.229811 1.49697e-06 4.54003e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| funds to return to the budgets ||| 1 0.229811 1.49697e-06 8.35117e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| funds to return to the ||| 1 0.229811 1.49697e-06 9.71066e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| funds to return to ||| 1 0.229811 1.49697e-06 1.58175e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| funds to return ||| 1 0.229811 1.49697e-06 1.78009e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| funds to ||| 0.0042735 0.229811 2.99394e-06 2.6728e-05 2.718 ||| 0-1 ||| 468 668016 +a ||| further address on ||| 0.333333 0.0782999 1.49697e-06 1.39891e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| further detailed , it is meeting with ||| 1 0.0571592 1.49697e-06 1.69744e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| further details about ||| 0.333333 0.0526361 1.49697e-06 6.74632e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| further in ||| 0.00358423 0.0587624 1.49697e-06 2.90379e-05 2.718 ||| 0-1 ||| 279 668016 +a ||| further into the corner ||| 1 0.107578 1.49697e-06 2.07263e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| further into the ||| 0.0227273 0.107578 1.49697e-06 1.80228e-07 2.718 ||| 0-1 ||| 44 668016 +a ||| further into ||| 0.047619 0.107578 4.49091e-06 2.93571e-06 2.718 ||| 0-1 ||| 63 668016 +a ||| further link in ||| 0.333333 0.0587624 1.49697e-06 7.11428e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| further on , ||| 0.25 0.0782999 1.49697e-06 2.18645e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| further on ||| 0.00862069 0.0782999 1.49697e-06 1.83343e-05 2.718 ||| 0-1 ||| 116 668016 +a ||| further out to ||| 0.2 0.229811 1.49697e-06 6.4849e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| further scope to ||| 0.25 0.229811 1.49697e-06 1.68793e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| further separate funding is to be made ||| 0.5 0.229811 1.49697e-06 3.86521e-19 2.718 ||| 0-4 ||| 2 668016 +a ||| further separate funding is to be ||| 0.5 0.229811 1.49697e-06 1.84515e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| further separate funding is to ||| 0.5 0.229811 1.49697e-06 1.01813e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| further than ||| 0.00704225 0.0242272 5.98788e-06 6.0746e-07 2.718 ||| 0-1 ||| 568 668016 +a ||| further to the ||| 0.00833333 0.229811 1.49697e-06 1.03937e-05 2.718 ||| 0-1 ||| 120 668016 +a ||| further to ||| 0.0279188 0.229811 1.64667e-05 0.000169301 2.718 ||| 0-1 ||| 394 668016 +a ||| further upstream , namely to ||| 1 0.229811 1.49697e-06 8.06587e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| further ||| 0.000363636 0.0003879 1.04788e-05 1e-05 2.718 ||| 0-0 ||| 19250 668016 +a ||| furthermore , on ||| 0.0555556 0.0782999 1.49697e-06 2.08556e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| furthermore , ||| 0.000139938 9.38e-05 1.49697e-06 1.07329e-07 2.718 ||| 0-0 ||| 7146 668016 +a ||| furthermore give cause for ||| 0.5 0.0683377 1.49697e-06 1.86017e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| furthermore ||| 0.000126247 9.38e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 7921 668016 +a ||| future , for ||| 0.0116279 0.0683377 1.49697e-06 1.16714e-06 2.718 ||| 0-2 ||| 86 668016 +a ||| future , to ||| 0.00793651 0.229811 1.49697e-06 1.10955e-05 2.718 ||| 0-2 ||| 126 668016 +a ||| future . in the ||| 1 0.0587624 1.49697e-06 2.96747e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| future . in ||| 0.5 0.0587624 1.49697e-06 4.83365e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| future developments regarding ||| 1 0.186429 1.49697e-06 2.67253e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| future in the ||| 0.0107527 0.0587624 1.49697e-06 9.79685e-07 2.718 ||| 0-1 ||| 93 668016 +a ||| future in ||| 0.00526316 0.0587624 2.99394e-06 1.59579e-05 2.718 ||| 0-1 ||| 380 668016 +a ||| future into ||| 0.2 0.107578 1.49697e-06 1.61333e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| future membership ||| 0.0392157 0.104903 2.99394e-06 1.63397e-07 2.718 ||| 0-1 ||| 51 668016 +a ||| future of ||| 0.000470256 0.0188479 2.99394e-06 7.85605e-06 2.718 ||| 0-1 ||| 4253 668016 +a ||| future to ||| 0.00568182 0.229811 2.99394e-06 9.30401e-05 2.718 ||| 0-1 ||| 352 668016 +a ||| future too , for ||| 0.2 0.0683377 1.49697e-06 1.58848e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| gadgets for ||| 0.5 0.0683377 1.49697e-06 1.47394e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| gagged ||| 0.0454545 0.166667 1.49697e-06 6.4e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| gain a ||| 0.013986 0.0005823 2.99394e-06 2.35811e-08 2.718 ||| 0-1 ||| 143 668016 +a ||| gain at ||| 0.25 0.204175 1.49697e-06 1.89918e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| gain in ||| 0.025 0.0587624 1.49697e-06 3.3526e-06 2.718 ||| 0-1 ||| 40 668016 +a ||| gain support for ||| 0.125 0.0683377 1.49697e-06 7.02996e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| gained access to ||| 0.142857 0.229811 1.49697e-06 9.54992e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| gained as part ||| 0.5 0.0243476 1.49697e-06 3.31533e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| gained as ||| 0.166667 0.0243476 1.49697e-06 2.78085e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| gained at ||| 0.111111 0.204175 1.49697e-06 1.07892e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| gained by ||| 0.0175439 0.0337966 1.49697e-06 2.60812e-07 2.718 ||| 0-1 ||| 57 668016 +a ||| gained from ||| 0.00662252 0.0435582 1.49697e-06 2.28202e-07 2.718 ||| 0-1 ||| 151 668016 +a ||| gaining an exemption for ||| 1 0.0683377 1.49697e-06 1.14892e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| gains to be ||| 0.333333 0.229811 1.49697e-06 5.45969e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| gains to ||| 0.0769231 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| game at an ||| 1 0.204175 1.49697e-06 4.35678e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| game at ||| 0.2 0.204175 1.49697e-06 9.8022e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| gathered around the table ||| 0.333333 0.0004654 1.49697e-06 8.42992e-17 2.718 ||| 0-2 ||| 3 668016 +a ||| gathered around the ||| 0.333333 0.0004654 1.49697e-06 1.24519e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| gathered to ||| 0.125 0.229811 1.49697e-06 2.13684e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| gathering of ||| 0.0175439 0.0142665 1.49697e-06 1.0944e-07 2.718 ||| 0-0 0-1 ||| 57 668016 +a ||| gathering ||| 0.00224719 0.0096852 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 445 668016 +a ||| gave an undertaking ||| 0.0909091 0.0419355 1.49697e-06 1.89245e-11 2.718 ||| 0-0 ||| 11 668016 +a ||| gave an ||| 0.0333333 0.0419355 2.99394e-06 6.32925e-07 2.718 ||| 0-0 ||| 60 668016 +a ||| gave concessions for were ||| 0.111111 0.0683377 1.49697e-06 2.75593e-14 2.718 ||| 0-2 ||| 9 668016 +a ||| gave concessions for ||| 0.111111 0.0683377 1.49697e-06 1.53842e-11 2.718 ||| 0-2 ||| 9 668016 +a ||| gave it to ||| 0.2 0.229811 1.49697e-06 5.20162e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| gave on ||| 0.0666667 0.0782999 1.49697e-06 3.16762e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| gave our approval to ||| 0.333333 0.229811 1.49697e-06 1.2064e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| gave this year to ||| 1 0.229811 1.49697e-06 4.71359e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| gave to ||| 0.0561798 0.229811 7.48485e-06 2.92502e-05 2.718 ||| 0-1 ||| 89 668016 +a ||| gave way to what ||| 1 0.229811 1.49697e-06 8.84678e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| gave way to ||| 0.0833333 0.229811 1.49697e-06 6.30517e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| gave ||| 0.00482668 0.0419355 1.64667e-05 0.0001424 2.718 ||| 0-0 ||| 2279 668016 +a ||| geared it to ||| 1 0.229811 1.49697e-06 8.09833e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| geared to ||| 0.0138408 0.229811 5.98788e-06 4.55392e-06 2.718 ||| 0-1 ||| 289 668016 +a ||| geared towards obtaining ||| 0.5 0.155507 1.49697e-06 6.48888e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| geared towards ||| 0.00843882 0.155507 2.99394e-06 4.38438e-08 2.718 ||| 0-1 ||| 237 668016 +a ||| general for such ||| 1 0.0683377 1.49697e-06 1.33337e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| general for ||| 0.0588235 0.0683377 1.49697e-06 6.4448e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| general reflection on ||| 0.125 0.0782999 1.49697e-06 9.08986e-11 2.718 ||| 0-2 ||| 8 668016 +a ||| general right to ||| 0.142857 0.229811 1.49697e-06 3.95116e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| general run of ||| 1 0.0188479 1.49697e-06 5.49402e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| general seem to ||| 0.5 0.229811 1.49697e-06 5.59987e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| general to ||| 0.0192308 0.229811 1.49697e-06 6.12677e-05 2.718 ||| 0-1 ||| 52 668016 +a ||| generally affected by ||| 1 0.0337966 1.49697e-06 2.26852e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| generally as ||| 0.0833333 0.0243476 1.49697e-06 3.63177e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| generate from ||| 0.5 0.0435582 1.49697e-06 7.7747e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| generated by ||| 0.0100334 0.0337966 4.49091e-06 1.09426e-07 2.718 ||| 0-1 ||| 299 668016 +a ||| generates for ||| 0.333333 0.0683377 1.49697e-06 8.10667e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| generation and enter into ||| 1 0.107578 1.49697e-06 6.60184e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| generation from ||| 0.166667 0.0435582 1.49697e-06 1.26699e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| generous in ||| 0.0185185 0.0587624 1.49697e-06 2.82388e-07 2.718 ||| 0-1 ||| 54 668016 +a ||| genetic structure of ||| 0.5 0.0188479 1.49697e-06 6.36766e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| gentlemen , to petition ||| 1 0.229811 1.49697e-06 7.21665e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| gentlemen , to ||| 0.0666667 0.229811 1.49697e-06 2.88666e-06 2.718 ||| 0-2 ||| 15 668016 +a ||| genuinely hope to ||| 0.5 0.229811 1.49697e-06 2.10015e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| get a grip on ||| 0.0434783 0.0782999 1.49697e-06 1.22037e-11 2.718 ||| 0-3 ||| 23 668016 +a ||| get authorisation to ||| 0.25 0.229811 1.49697e-06 1.2099e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| get away with just ||| 0.5 0.0571592 1.49697e-06 2.92947e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| get away with ||| 0.0142857 0.0571592 1.49697e-06 2.32184e-09 2.718 ||| 0-2 ||| 70 668016 +a ||| get away ||| 0.00854701 0.0377856 1.49697e-06 1.02961e-07 2.718 ||| 0-1 ||| 117 668016 +a ||| get back on ||| 0.0333333 0.0782999 1.49697e-06 1.11554e-08 2.718 ||| 0-2 ||| 30 668016 +a ||| get back to ||| 0.0267857 0.229811 4.49091e-06 1.0301e-07 2.718 ||| 0-2 ||| 112 668016 +a ||| get bogged down in ||| 0.04 0.0587624 1.49697e-06 1.24697e-13 2.718 ||| 0-3 ||| 25 668016 +a ||| get butter on ||| 1 0.0782999 1.49697e-06 2.98538e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| get caught up in ||| 0.0909091 0.0587624 1.49697e-06 2.48157e-12 2.718 ||| 0-3 ||| 11 668016 +a ||| get closer to ||| 0.0285714 0.229811 1.49697e-06 3.26213e-08 2.718 ||| 0-2 ||| 35 668016 +a ||| get down to ||| 0.0183486 0.229811 2.99394e-06 1.06915e-07 2.718 ||| 0-2 ||| 109 668016 +a ||| get in on the back ||| 1 0.0587624 1.49697e-06 7.25749e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| get in on the ||| 0.5 0.0587624 1.49697e-06 1.07902e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| get in on ||| 0.333333 0.0587624 1.49697e-06 1.7576e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| get in ||| 0.0111111 0.0587624 1.49697e-06 2.62681e-05 2.718 ||| 0-1 ||| 90 668016 +a ||| get into difficulty - ||| 1 0.107578 1.49697e-06 1.80315e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| get into difficulty ||| 0.2 0.107578 1.49697e-06 4.78023e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| get into ||| 0.012987 0.107578 4.49091e-06 2.65568e-06 2.718 ||| 0-1 ||| 231 668016 +a ||| get involved in ||| 0.00526316 0.0587624 1.49697e-06 9.0835e-09 2.718 ||| 0-2 ||| 190 668016 +a ||| get it back into ||| 0.333333 0.107578 1.49697e-06 3.17646e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| get its hands on ||| 0.166667 0.0782999 1.49697e-06 2.38183e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| get lost in ||| 0.0625 0.0587624 1.49697e-06 1.49465e-09 2.718 ||| 0-2 ||| 16 668016 +a ||| get not ||| 0.333333 0.0029933 1.49697e-06 1.49538e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| get off ||| 0.0142857 0.0893962 1.49697e-06 3.34414e-07 2.718 ||| 0-1 ||| 70 668016 +a ||| get on ||| 0.00534759 0.0782999 1.49697e-06 1.65854e-05 2.718 ||| 0-1 ||| 187 668016 +a ||| get them to ||| 0.047619 0.229811 1.49697e-06 4.10815e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| get them ||| 0.0140845 0.0045234 1.49697e-06 9.77579e-08 2.718 ||| 0-1 ||| 71 668016 +a ||| get to know ||| 0.0163934 0.229811 1.49697e-06 3.95132e-08 2.718 ||| 0-1 ||| 61 668016 +a ||| get to ||| 0.0143737 0.229811 1.04788e-05 0.000153152 2.718 ||| 0-1 ||| 487 668016 +a ||| get used to ||| 0.0131579 0.229811 1.49697e-06 6.57021e-08 2.718 ||| 0-2 ||| 76 668016 +a ||| get worked up ||| 0.2 0.0195077 1.49697e-06 2.33467e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| get ||| 0.00182648 0.0029933 2.09576e-05 4.38e-05 2.718 ||| 0-0 ||| 7665 668016 +a ||| gets more ||| 0.0833333 0.0038948 1.49697e-06 8.44969e-09 2.718 ||| 0-0 ||| 12 668016 +a ||| gets through to ||| 0.25 0.229811 1.49697e-06 4.82119e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| gets to ||| 0.117647 0.229811 5.98788e-06 1.0474e-05 2.718 ||| 0-1 ||| 34 668016 +a ||| gets ||| 0.00327332 0.0038948 2.99394e-06 3.7e-06 2.718 ||| 0-0 ||| 611 668016 +a ||| getting any ||| 0.25 0.0328846 1.49697e-06 2.05659e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| getting bargain ||| 1 0.0328846 1.49697e-06 3.944e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| getting closer to ||| 0.05 0.229811 1.49697e-06 8.67017e-09 2.718 ||| 0-2 ||| 20 668016 +a ||| getting engaged in ||| 0.142857 0.0587624 1.49697e-06 2.86245e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| getting in to ||| 0.5 0.0587624 1.49697e-06 6.20371e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| getting in ||| 0.0714286 0.0587624 1.49697e-06 6.98159e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| getting into ||| 0.0128205 0.107578 1.49697e-06 7.05834e-07 2.718 ||| 0-1 ||| 78 668016 +a ||| getting involved in ||| 0.0357143 0.0587624 1.49697e-06 2.41423e-09 2.718 ||| 0-2 ||| 28 668016 +a ||| getting out of hand ||| 0.0714286 0.0669777 1.49697e-06 1.02745e-11 2.718 ||| 0-1 ||| 14 668016 +a ||| getting out of ||| 0.0217391 0.0669777 1.49697e-06 2.59064e-08 2.718 ||| 0-1 ||| 46 668016 +a ||| getting out ||| 0.0212766 0.0669777 1.49697e-06 4.76536e-07 2.718 ||| 0-1 ||| 47 668016 +a ||| getting rid of ||| 0.0119048 0.0188479 1.49697e-06 8.04263e-11 2.718 ||| 0-2 ||| 84 668016 +a ||| getting straight down ||| 0.333333 0.0328846 1.49697e-06 3.55082e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| getting straight ||| 0.333333 0.0328846 1.49697e-06 5.0864e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| getting them used to ||| 0.5 0.229811 1.49697e-06 4.68413e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| getting to ||| 0.00980392 0.229811 1.49697e-06 4.0705e-05 2.718 ||| 0-1 ||| 102 668016 +a ||| getting up to ||| 0.0909091 0.229811 1.49697e-06 1.38825e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| getting very ||| 0.111111 0.0328846 1.49697e-06 4.73212e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| getting ||| 0.00725295 0.0328846 2.39515e-05 0.000136 2.718 ||| 0-0 ||| 2206 668016 +a ||| gift to ||| 0.0294118 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| gifts to ||| 0.25 0.229811 2.99394e-06 4.90422e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| girls ||| 0.00132979 0.0133097 1.49697e-06 1.37e-05 2.718 ||| 0-0 ||| 752 668016 +a ||| give , and that ||| 1 0.0015873 1.49697e-06 2.34563e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| give , and ||| 0.1 0.0015873 1.49697e-06 1.39442e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| give a ||| 0.00172861 0.0241455 2.99394e-06 2.49244e-05 2.718 ||| 0-0 ||| 1157 668016 +a ||| give an ||| 0.00215517 0.0241455 1.49697e-06 2.49925e-06 2.718 ||| 0-0 ||| 464 668016 +a ||| give cause for ||| 0.0222222 0.0683377 1.49697e-06 4.03507e-09 2.718 ||| 0-2 ||| 45 668016 +a ||| give due recognition to ||| 0.5 0.229811 1.49697e-06 1.64877e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| give greater priority to ||| 0.125 0.229811 1.49697e-06 1.56004e-12 2.718 ||| 0-3 ||| 8 668016 +a ||| give her ||| 0.0232558 0.0241455 1.49697e-06 1.53002e-07 2.718 ||| 0-0 ||| 43 668016 +a ||| give in to ||| 0.0165289 0.0587624 2.99394e-06 3.23533e-06 2.718 ||| 0-1 ||| 121 668016 +a ||| give in ||| 0.0204082 0.0587624 4.49091e-06 3.641e-05 2.718 ||| 0-1 ||| 147 668016 +a ||| give information on ||| 0.0909091 0.0782999 1.49697e-06 3.80468e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| give it their ||| 0.25 0.0241455 1.49697e-06 1.15904e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| give it ||| 0.00462963 0.0241455 2.99394e-06 9.99949e-06 2.718 ||| 0-0 ||| 432 668016 +a ||| give its ||| 0.00324675 0.0241455 1.49697e-06 8.01109e-07 2.718 ||| 0-0 ||| 308 668016 +a ||| give more power to ||| 0.333333 0.229811 1.49697e-06 7.23792e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| give notice to ||| 0.5 0.229811 1.49697e-06 8.17289e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| give our work ||| 0.333333 0.0241455 1.49697e-06 4.90978e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| give our ||| 0.00719424 0.0241455 2.99394e-06 7.75637e-07 2.718 ||| 0-0 ||| 278 668016 +a ||| give priority to ||| 0.00304878 0.229811 1.49697e-06 1.18454e-08 2.718 ||| 0-2 ||| 328 668016 +a ||| give rise to payments ||| 0.5 0.229811 1.49697e-06 8.82536e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| give rise to ||| 0.0112108 0.229811 7.48485e-06 2.66627e-08 2.718 ||| 0-2 ||| 446 668016 +a ||| give rise ||| 0.00228833 0.0241455 1.49697e-06 7.06249e-08 2.718 ||| 0-0 ||| 437 668016 +a ||| give some impetus to the process of ||| 1 0.0188479 1.49697e-06 5.4186e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| give some thought to ||| 0.0140845 0.229811 1.49697e-06 1.9216e-11 2.718 ||| 0-3 ||| 71 668016 +a ||| give space to ||| 0.5 0.229811 1.49697e-06 8.78851e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| give tax ||| 0.333333 0.0241455 1.49697e-06 3.55936e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| give the floor to ||| 0.00440529 0.229811 1.49697e-06 5.53878e-10 2.718 ||| 0-3 ||| 227 668016 +a ||| give the ||| 0.00180397 0.0241455 4.49091e-06 3.45206e-05 2.718 ||| 0-0 ||| 1663 668016 +a ||| give them the ||| 0.00694444 0.0241455 1.49697e-06 9.25981e-08 2.718 ||| 0-0 ||| 144 668016 +a ||| give them ||| 0.00626959 0.0241455 5.98788e-06 1.50831e-06 2.718 ||| 0-0 ||| 638 668016 +a ||| give this ||| 0.00609756 0.0241455 1.49697e-06 3.63325e-06 2.718 ||| 0-0 ||| 164 668016 +a ||| give thought to ||| 0.0185185 0.229811 1.49697e-06 1.76407e-08 2.718 ||| 0-2 ||| 54 668016 +a ||| give to the ||| 0.0123457 0.229811 1.49697e-06 1.30324e-05 2.718 ||| 0-1 ||| 81 668016 +a ||| give to ||| 0.0779817 0.229811 2.54485e-05 0.000212283 2.718 ||| 0-1 ||| 218 668016 +a ||| give toll ||| 1 0.0241455 1.49697e-06 2.8115e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| give up on ||| 0.0185185 0.0782999 1.49697e-06 7.84039e-08 2.718 ||| 0-2 ||| 54 668016 +a ||| give up ||| 0.00184502 0.0241455 1.49697e-06 1.91772e-06 2.718 ||| 0-0 ||| 542 668016 +a ||| give us ||| 0.0019084 0.0241455 2.99394e-06 1.62066e-06 2.718 ||| 0-0 ||| 1048 668016 +a ||| give way to helping people to ||| 0.25 0.229811 1.49697e-06 1.35286e-15 2.718 ||| 0-5 ||| 4 668016 +a ||| give way to ||| 0.0107527 0.229811 1.49697e-06 4.57597e-07 2.718 ||| 0-2 ||| 93 668016 +a ||| give you ||| 0.00113122 0.0241455 1.49697e-06 1.8155e-06 2.718 ||| 0-0 ||| 884 668016 +a ||| give ||| 0.0109304 0.0241455 0.000242509 0.0005623 2.718 ||| 0-0 ||| 14821 668016 +a ||| given , making it possible to ||| 0.5 0.229811 1.49697e-06 1.57323e-13 2.718 ||| 0-5 ||| 2 668016 +a ||| given a chance ||| 0.0136986 0.0371011 1.49697e-06 3.08757e-09 2.718 ||| 0-0 ||| 73 668016 +a ||| given a ||| 0.00632111 0.0371011 7.48485e-06 4.68524e-05 2.718 ||| 0-0 ||| 791 668016 +a ||| given all ||| 0.016129 0.0038996 1.49697e-06 3.79593e-07 2.718 ||| 0-1 ||| 62 668016 +a ||| given an increase in ||| 0.2 0.0587624 1.49697e-06 2.36792e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| given as gifts to ||| 0.5 0.229811 1.49697e-06 3.43456e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| given at ||| 0.0377358 0.204175 2.99394e-06 2.33585e-05 2.718 ||| 0-1 ||| 53 668016 +a ||| given decent ||| 1 0.0371011 1.49697e-06 1.09928e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| given his ||| 0.0243902 0.0371011 1.49697e-06 3.17628e-07 2.718 ||| 0-0 ||| 41 668016 +a ||| given in ||| 0.00630915 0.0587624 2.99394e-06 4.12346e-05 2.718 ||| 0-1 ||| 317 668016 +a ||| given instead to ||| 1 0.229811 1.49697e-06 4.85392e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| given on ||| 0.0227273 0.0782999 1.49697e-06 2.60352e-05 2.718 ||| 0-1 ||| 44 668016 +a ||| given our ||| 0.00892857 0.0371011 1.49697e-06 1.45803e-06 2.718 ||| 0-0 ||| 112 668016 +a ||| given over to ||| 0.130435 0.229811 4.49091e-06 1.15758e-07 2.718 ||| 0-2 ||| 23 668016 +a ||| given permission to ||| 0.0909091 0.229811 1.49697e-06 2.332e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| given priority over ||| 0.0625 0.0682544 1.49697e-06 8.89567e-11 2.718 ||| 0-2 ||| 16 668016 +a ||| given that it was ||| 0.0625 0.0371011 1.49697e-06 9.90633e-10 2.718 ||| 0-0 ||| 16 668016 +a ||| given that it ||| 0.0114943 0.0371011 1.49697e-06 3.16193e-07 2.718 ||| 0-0 ||| 87 668016 +a ||| given that ||| 0.000547795 0.0371011 2.99394e-06 1.77804e-05 2.718 ||| 0-0 ||| 3651 668016 +a ||| given the sensitivity of the ||| 0.142857 0.0371011 1.49697e-06 1.0179e-12 2.718 ||| 0-0 ||| 7 668016 +a ||| given the sensitivity of ||| 0.166667 0.0371011 1.49697e-06 1.65804e-11 2.718 ||| 0-0 ||| 6 668016 +a ||| given the sensitivity ||| 0.0714286 0.0371011 1.49697e-06 3.04988e-10 2.718 ||| 0-0 ||| 14 668016 +a ||| given the ||| 0.000792079 0.0371011 5.98788e-06 6.48911e-05 2.718 ||| 0-0 ||| 5050 668016 +a ||| given to Members ||| 0.0909091 0.229811 1.49697e-06 3.54608e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| given to any ||| 0.166667 0.229811 1.49697e-06 3.63551e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| given to what might be a ||| 0.333333 0.229811 1.49697e-06 1.04054e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| given to what might be ||| 0.333333 0.229811 1.49697e-06 2.34749e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| given to what might ||| 0.333333 0.229811 1.49697e-06 1.29532e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| given to what ||| 0.111111 0.229811 1.49697e-06 3.37322e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| given to ||| 0.0614793 0.229811 0.000191612 0.000240412 2.718 ||| 0-1 ||| 2082 668016 +a ||| given up ||| 0.00869565 0.0371011 1.49697e-06 3.6049e-06 2.718 ||| 0-0 ||| 115 668016 +a ||| given us a greater insight into ||| 1 0.107578 1.49697e-06 3.78766e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| given us much cause for ||| 0.5 0.0527194 1.49697e-06 2.03602e-14 2.718 ||| 0-0 0-4 ||| 2 668016 +a ||| given us ||| 0.0108696 0.0371011 2.99394e-06 3.04649e-06 2.718 ||| 0-0 ||| 184 668016 +a ||| given way to ||| 0.025641 0.229811 1.49697e-06 5.18232e-07 2.718 ||| 0-2 ||| 39 668016 +a ||| given with one hand and ||| 1 0.0571592 1.49697e-06 2.37242e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| given with one hand ||| 1 0.0571592 1.49697e-06 1.89402e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| given with one ||| 0.5 0.0571592 1.49697e-06 4.77563e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| given with ||| 0.0526316 0.0571592 1.49697e-06 1.14578e-05 2.718 ||| 0-1 ||| 19 668016 +a ||| given ||| 0.00705841 0.0371011 0.000239515 0.001057 2.718 ||| 0-0 ||| 22668 668016 +a ||| given – I stress given – to ||| 1 0.229811 1.49697e-06 6.41711e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| given – to ||| 1 0.229811 1.49697e-06 9.44819e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| gives a signal to ||| 0.25 0.229811 1.49697e-06 2.92685e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| gives and ||| 0.5 0.0015873 1.49697e-06 1.52816e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| gives comfort to ||| 1 0.229811 1.49697e-06 1.38719e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| gives impetus to ||| 1 0.229811 1.49697e-06 3.30152e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| gives me great pleasure to ||| 0.0285714 0.229811 1.49697e-06 1.49023e-16 2.718 ||| 0-4 ||| 35 668016 +a ||| gives practical expression to ||| 1 0.229811 1.49697e-06 4.95708e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| gives them ||| 0.0103093 0.0245059 1.49697e-06 3.03648e-07 2.718 ||| 0-0 ||| 97 668016 +a ||| gives to ||| 0.046875 0.229811 4.49091e-06 2.77439e-05 2.718 ||| 0-1 ||| 64 668016 +a ||| gives ||| 0.00199302 0.0245059 1.19758e-05 0.0001132 2.718 ||| 0-0 ||| 4014 668016 +a ||| giving Commission ||| 0.5 0.136521 1.49697e-06 5.89123e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| giving a ||| 0.00393701 0.136521 1.49697e-06 4.4707e-05 2.718 ||| 0-0 ||| 254 668016 +a ||| giving an ||| 0.0298507 0.136521 2.99394e-06 4.48292e-06 2.718 ||| 0-0 ||| 67 668016 +a ||| giving birth ||| 0.0232558 0.136521 1.49697e-06 1.08929e-08 2.718 ||| 0-0 ||| 43 668016 +a ||| giving countries with ||| 1 0.0571592 1.49697e-06 9.99047e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| giving decisive ||| 1 0.136521 1.49697e-06 1.23049e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| giving for ||| 1 0.102429 1.49697e-06 3.71654e-05 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| giving him the opportunity to ||| 1 0.229811 1.49697e-06 1.9548e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| giving in to ||| 0.0175439 0.229811 1.49697e-06 1.18169e-06 2.718 ||| 0-2 ||| 57 668016 +a ||| giving into ||| 0.25 0.107578 1.49697e-06 9.5731e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| giving just ||| 0.5 0.136521 1.49697e-06 1.27255e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| giving support ||| 0.0277778 0.136521 1.49697e-06 3.4484e-07 2.718 ||| 0-0 ||| 36 668016 +a ||| giving the situation ||| 1 0.136521 1.49697e-06 3.18887e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| giving the ||| 0.00585652 0.136521 5.98788e-06 6.19198e-05 2.718 ||| 0-0 ||| 683 668016 +a ||| giving them to some over-worked ||| 1 0.229811 1.49697e-06 6.45252e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| giving them to some ||| 1 0.229811 1.49697e-06 1.61313e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| giving them to ||| 0.166667 0.229811 1.49697e-06 1.48089e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| giving to ||| 0.0909091 0.229811 5.98788e-06 5.52075e-05 2.718 ||| 0-1 ||| 44 668016 +a ||| giving up ||| 0.025 0.136521 5.98788e-06 3.43983e-06 2.718 ||| 0-0 ||| 160 668016 +a ||| giving us the ||| 0.0204082 0.136521 1.49697e-06 1.78465e-07 2.718 ||| 0-0 ||| 49 668016 +a ||| giving us ||| 0.00531915 0.136521 1.49697e-06 2.90699e-06 2.718 ||| 0-0 ||| 188 668016 +a ||| giving young ||| 1 0.136521 1.49697e-06 6.42478e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| giving ||| 0.025641 0.136521 0.000179636 0.0010086 2.718 ||| 0-0 ||| 4680 668016 +a ||| glad about ||| 0.0434783 0.0526361 1.49697e-06 9.77624e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| glance , to ||| 0.25 0.229811 1.49697e-06 1.04438e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| glance at ||| 0.027027 0.204175 1.49697e-06 8.50885e-08 2.718 ||| 0-1 ||| 37 668016 +a ||| gleam and ||| 0.25 0.0015873 1.49697e-06 7.718e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| glimpsed at a ||| 1 0.204175 1.49697e-06 6.03459e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| glimpsed at ||| 1 0.204175 1.49697e-06 1.36142e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| global ||| 7.14184e-05 0.0001506 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 14002 668016 +a ||| globally ||| 0.00278552 0.1966 2.99394e-06 0.0002428 2.718 ||| 0-0 ||| 718 668016 +a ||| go a little way towards ||| 1 0.155507 1.49697e-06 3.05101e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| go about it ||| 0.025 0.0526361 1.49697e-06 5.24068e-08 2.718 ||| 0-1 ||| 40 668016 +a ||| go about ||| 0.00769231 0.0526361 1.49697e-06 2.94698e-06 2.718 ||| 0-1 ||| 130 668016 +a ||| go again ||| 0.142857 0.0700825 1.49697e-06 1.3558e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| go against ||| 0.00473934 0.05146 1.49697e-06 1.52019e-06 2.718 ||| 0-1 ||| 211 668016 +a ||| go ahead on time ||| 0.25 0.0782999 1.49697e-06 3.96985e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| go ahead on ||| 0.05 0.0782999 1.49697e-06 2.41814e-09 2.718 ||| 0-2 ||| 20 668016 +a ||| go ahead with ||| 0.016129 0.0571592 2.99394e-06 1.0642e-09 2.718 ||| 0-2 ||| 124 668016 +a ||| go along with ||| 0.0248963 0.0571592 8.98182e-06 1.70369e-09 2.718 ||| 0-2 ||| 241 668016 +a ||| go and ||| 0.00529101 0.00188195 1.49697e-06 6.86902e-08 2.718 ||| 0-0 0-1 ||| 189 668016 +a ||| go at it ||| 0.25 0.204175 1.49697e-06 3.53955e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| go at ||| 0.0434783 0.204175 1.49697e-06 1.99039e-05 2.718 ||| 0-1 ||| 23 668016 +a ||| go back into the ||| 0.25 0.107578 1.49697e-06 1.4668e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| go back into ||| 0.333333 0.107578 1.49697e-06 2.38924e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| go back over that ||| 1 0.0682544 1.49697e-06 1.53696e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| go back over ||| 0.0277778 0.0682544 1.49697e-06 9.13681e-10 2.718 ||| 0-2 ||| 36 668016 +a ||| go back to ||| 0.00625 0.229811 2.99394e-06 1.37786e-07 2.718 ||| 0-2 ||| 320 668016 +a ||| go because ||| 0.142857 0.0052046 1.49697e-06 1.88949e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| go directly to ||| 0.125 0.229811 1.49697e-06 7.74357e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| go down the road of ||| 0.0434783 0.0188479 1.49697e-06 6.61266e-14 2.718 ||| 0-4 ||| 23 668016 +a ||| go down ||| 0.00406504 0.0226513 1.49697e-06 2.1351e-07 2.718 ||| 0-1 ||| 246 668016 +a ||| go for a ||| 0.0333333 0.0683377 1.49697e-06 9.55177e-07 2.718 ||| 0-1 ||| 30 668016 +a ||| go for ||| 0.030303 0.0683377 7.48485e-06 2.1549e-05 2.718 ||| 0-1 ||| 165 668016 +a ||| go further than ||| 0.00617284 0.0242272 1.49697e-06 3.55242e-10 2.718 ||| 0-2 ||| 162 668016 +a ||| go half way to ||| 0.5 0.229811 1.49697e-06 1.27177e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| go hand in hand ||| 0.0114943 0.0587624 4.49091e-06 5.52663e-12 2.718 ||| 0-2 ||| 261 668016 +a ||| go hand in ||| 0.00765306 0.0587624 4.49091e-06 1.3935e-08 2.718 ||| 0-2 ||| 392 668016 +a ||| go in ||| 0.0111524 0.0587624 4.49091e-06 3.51362e-05 2.718 ||| 0-1 ||| 269 668016 +a ||| go into it in ||| 0.333333 0.107578 1.49697e-06 1.35213e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| go into it ||| 0.0666667 0.107578 1.49697e-06 6.31704e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| go into ||| 0.0137195 0.107578 1.34727e-05 3.55225e-06 2.718 ||| 0-1 ||| 656 668016 +a ||| go off ||| 0.047619 0.0893962 1.49697e-06 4.47314e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| go on and ||| 0.0909091 0.0782999 2.99394e-06 2.77884e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| go on applying pressure until ||| 1 0.0782999 1.49697e-06 2.14483e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| go on applying pressure ||| 1 0.0782999 1.49697e-06 4.41323e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| go on applying ||| 1 0.0782999 1.49697e-06 7.34315e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| go on ensuring ||| 1 0.0782999 1.49697e-06 2.57787e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| go on sprinkling a ||| 1 0.0782999 1.49697e-06 3.93343e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| go on sprinkling ||| 1 0.0782999 1.49697e-06 8.8739e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| go on to ||| 0.0235294 0.0782999 2.99394e-06 1.9713e-06 2.718 ||| 0-1 ||| 85 668016 +a ||| go on ||| 0.01375 0.0782999 1.64667e-05 2.21847e-05 2.718 ||| 0-1 ||| 800 668016 +a ||| go out on ||| 0.2 0.0782999 1.49697e-06 8.49764e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| go out to ||| 0.0232558 0.229811 1.49697e-06 7.84682e-07 2.718 ||| 0-2 ||| 43 668016 +a ||| go so far as to view ||| 1 0.229811 1.49697e-06 2.92595e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| go so far as to ||| 0.0666667 0.229811 4.49091e-06 3.23918e-12 2.718 ||| 0-4 ||| 45 668016 +a ||| go some way towards ||| 0.0588235 0.155507 1.49697e-06 4.63114e-12 2.718 ||| 0-3 ||| 17 668016 +a ||| go there to ||| 0.25 0.229811 1.49697e-06 6.27946e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| go through ||| 0.0052356 0.230708 2.99394e-06 4.64863e-06 2.718 ||| 0-1 ||| 382 668016 +a ||| go to meet ||| 0.333333 0.229811 1.49697e-06 2.49105e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| go to were to ||| 1 0.229811 1.49697e-06 3.26092e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| go to ||| 0.0411171 0.229811 7.93394e-05 0.000204856 2.718 ||| 0-1 ||| 1289 668016 +a ||| go towards ||| 0.0487805 0.155507 2.99394e-06 1.9723e-06 2.718 ||| 0-1 ||| 41 668016 +a ||| go unrecognised ||| 0.25 0.0021766 1.49697e-06 1.424e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| go ||| 0.00056773 0.0021766 7.48485e-06 3.56e-05 2.718 ||| 0-0 ||| 8807 668016 +a ||| goal is to help ||| 0.166667 0.244893 1.49697e-06 2.41907e-09 2.718 ||| 0-2 0-3 ||| 6 668016 +a ||| goal of Lisbon will be to set ||| 1 0.229811 1.49697e-06 1.34444e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| goal of Lisbon will be to ||| 1 0.229811 1.49697e-06 2.30054e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| goals for ||| 0.0227273 0.0683377 1.49697e-06 4.64291e-07 2.718 ||| 0-1 ||| 44 668016 +a ||| goes back to ||| 0.030303 0.229811 2.99394e-06 3.26324e-08 2.718 ||| 0-2 ||| 66 668016 +a ||| goes beyond them by ||| 0.0833333 0.0337966 1.49697e-06 2.28941e-13 2.718 ||| 0-3 ||| 12 668016 +a ||| goes for ||| 0.0121951 0.0683377 4.49091e-06 5.10352e-06 2.718 ||| 0-1 ||| 246 668016 +a ||| goes hand in hand ||| 0.0181818 0.0587624 1.49697e-06 1.30889e-12 2.718 ||| 0-2 ||| 55 668016 +a ||| goes hand in ||| 0.0266667 0.0587624 2.99394e-06 3.30028e-09 2.718 ||| 0-2 ||| 75 668016 +a ||| goes into ||| 0.0151515 0.107578 1.49697e-06 8.41291e-07 2.718 ||| 0-1 ||| 66 668016 +a ||| goes on brought about ||| 0.25 0.0782999 1.49697e-06 2.08064e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| goes on brought ||| 0.25 0.0782999 1.49697e-06 1.47114e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| goes on in ||| 0.0192308 0.0782999 1.49697e-06 1.12461e-07 2.718 ||| 0-1 ||| 52 668016 +a ||| goes on ||| 0.0159151 0.0782999 8.98182e-06 5.25408e-06 2.718 ||| 0-1 ||| 377 668016 +a ||| goes out to ||| 0.117647 0.229811 2.99394e-06 1.85839e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| goes to show ||| 0.0138889 0.229811 1.49697e-06 6.4964e-09 2.718 ||| 0-1 ||| 72 668016 +a ||| goes to ||| 0.0324484 0.229811 1.64667e-05 4.85168e-05 2.718 ||| 0-1 ||| 339 668016 +a ||| goes up ||| 0.047619 0.0195077 1.49697e-06 1.70023e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| going about ||| 0.0222222 0.0526361 1.49697e-06 4.31263e-06 2.718 ||| 0-1 ||| 45 668016 +a ||| going against ||| 0.0135135 0.05146 1.49697e-06 2.22465e-06 2.718 ||| 0-1 ||| 74 668016 +a ||| going all out to ||| 0.333333 0.229811 1.49697e-06 5.42622e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| going at a ||| 0.333333 0.204175 1.49697e-06 1.2911e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| going at ||| 0.142857 0.204175 1.49697e-06 2.91275e-05 2.718 ||| 0-1 ||| 7 668016 +a ||| going back to ||| 0.00961538 0.229811 1.49697e-06 2.01637e-07 2.718 ||| 0-2 ||| 104 668016 +a ||| going back ||| 0.00404858 0.0536618 1.49697e-06 6.29612e-07 2.718 ||| 0-1 ||| 247 668016 +a ||| going down ||| 0.0253165 0.0226513 2.99394e-06 3.12453e-07 2.718 ||| 0-1 ||| 79 668016 +a ||| going in ||| 0.01 0.0587624 1.49697e-06 5.14186e-05 2.718 ||| 0-1 ||| 100 668016 +a ||| going into ||| 0.00704225 0.107578 2.99394e-06 5.19839e-06 2.718 ||| 0-1 ||| 284 668016 +a ||| going on to produce a ||| 1 0.0782999 1.49697e-06 1.13166e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| going on to produce ||| 1 0.0782999 1.49697e-06 2.55305e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| going on to ||| 0.107143 0.0782999 4.49091e-06 2.88481e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| going on with ||| 0.0454545 0.0571592 1.49697e-06 9.55988e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| going on ||| 0.0147203 0.0782999 2.24546e-05 3.24653e-05 2.718 ||| 0-1 ||| 1019 668016 +a ||| going out and ||| 0.5 0.0342825 1.49697e-06 6.77184e-09 2.718 ||| 0-1 0-2 ||| 2 668016 +a ||| going out ||| 0.0263158 0.0669777 1.49697e-06 3.50964e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| going over ||| 0.027027 0.0682544 1.49697e-06 1.98794e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| going so far as to ||| 0.0555556 0.229811 1.49697e-06 4.74024e-12 2.718 ||| 0-4 ||| 18 668016 +a ||| going through the ||| 0.0153846 0.230708 1.49697e-06 4.17639e-07 2.718 ||| 0-1 ||| 65 668016 +a ||| going through ||| 0.0203046 0.230708 1.19758e-05 6.80284e-06 2.718 ||| 0-1 ||| 394 668016 +a ||| going to attend ||| 0.2 0.229811 1.49697e-06 6.80519e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| going to be able to implement ||| 1 0.229811 1.49697e-06 2.2491e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| going to be able to ||| 0.0238095 0.229811 1.49697e-06 4.03064e-10 2.718 ||| 0-1 ||| 42 668016 +a ||| going to be able ||| 0.0277778 0.229811 1.49697e-06 4.53604e-09 2.718 ||| 0-1 ||| 36 668016 +a ||| going to be absolutely rigorous , no ||| 1 0.229811 1.49697e-06 2.04503e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| going to be absolutely rigorous , ||| 1 0.229811 1.49697e-06 2.62723e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| going to be absolutely rigorous ||| 1 0.229811 1.49697e-06 2.20304e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| going to be absolutely ||| 0.5 0.229811 1.49697e-06 5.12335e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| going to be aimed at ||| 1 0.204175 1.49697e-06 3.25997e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| going to be changed by ||| 0.333333 0.229811 1.49697e-06 9.32733e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| going to be changed ||| 0.166667 0.229811 1.49697e-06 1.7766e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| going to be exerted in favour ||| 1 0.229811 1.49697e-06 4.47681e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| going to be exerted in ||| 1 0.229811 1.49697e-06 1.38387e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| going to be exerted ||| 1 0.229811 1.49697e-06 6.46531e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| going to be invested ||| 0.25 0.229811 1.49697e-06 4.1291e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| going to be made to ||| 0.25 0.229811 1.49697e-06 1.01131e-09 2.718 ||| 0-4 ||| 4 668016 +a ||| going to be more demanding and more ||| 1 0.229811 1.49697e-06 4.86239e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| going to be more demanding and ||| 1 0.229811 1.49697e-06 2.12917e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| going to be more demanding ||| 1 0.229811 1.49697e-06 1.69982e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| going to be more ||| 0.142857 0.229811 1.49697e-06 1.24074e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| going to be opened up to ||| 1 0.229811 1.49697e-06 4.2644e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| going to be willing to ||| 1 0.229811 1.49697e-06 1.82487e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| going to be ||| 0.0138675 0.229811 1.34727e-05 5.43303e-06 2.718 ||| 0-1 ||| 649 668016 +a ||| going to come to ||| 0.333333 0.229811 1.49697e-06 2.26242e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| going to do in ||| 0.0833333 0.229811 1.49697e-06 2.20437e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| going to do just that ||| 0.25 0.229811 1.49697e-06 2.18576e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| going to do just ||| 0.25 0.229811 1.49697e-06 1.29938e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| going to do ||| 0.0192308 0.229811 2.99394e-06 1.02986e-06 2.718 ||| 0-1 ||| 104 668016 +a ||| going to enable ||| 0.166667 0.229811 1.49697e-06 2.95591e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| going to feel ||| 0.5 0.229811 1.49697e-06 5.06942e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| going to happen over ||| 0.5 0.229811 1.49697e-06 1.56906e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| going to happen ||| 0.0140845 0.229811 1.49697e-06 3.2587e-08 2.718 ||| 0-1 ||| 71 668016 +a ||| going to have to ||| 0.0325203 0.229811 5.98788e-06 3.18593e-07 2.718 ||| 0-1 ||| 123 668016 +a ||| going to have ||| 0.015873 0.229811 4.49091e-06 3.58541e-06 2.718 ||| 0-1 ||| 189 668016 +a ||| going to hold it against me ||| 0.125 0.229811 1.49697e-06 1.33417e-16 2.718 ||| 0-1 ||| 8 668016 +a ||| going to hold it against ||| 0.125 0.229811 1.49697e-06 2.21586e-13 2.718 ||| 0-1 ||| 8 668016 +a ||| going to hold it ||| 0.125 0.229811 1.49697e-06 9.28694e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| going to hold ||| 0.0555556 0.229811 1.49697e-06 5.22231e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| going to make at ||| 1 0.204175 1.49697e-06 4.4978e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| going to make will ||| 1 0.229811 1.49697e-06 4.50703e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| going to make ||| 0.037037 0.229811 2.99394e-06 5.20972e-07 2.718 ||| 0-1 ||| 54 668016 +a ||| going to mention ||| 0.0769231 0.229811 1.49697e-06 2.91394e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| going to prevent it ||| 1 0.229811 1.49697e-06 2.72424e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| going to prevent ||| 0.25 0.229811 1.49697e-06 1.53192e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| going to say the role ||| 1 0.229811 1.49697e-06 3.90521e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| going to say the ||| 1 0.229811 1.49697e-06 1.75911e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| going to say ||| 0.0555556 0.229811 1.49697e-06 2.86537e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| going to tackle ||| 0.2 0.229811 1.49697e-06 1.08823e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| going to take ||| 0.0147059 0.229811 1.49697e-06 4.82659e-07 2.718 ||| 0-1 ||| 68 668016 +a ||| going to the ||| 0.00909091 0.229811 1.49697e-06 1.84045e-05 2.718 ||| 0-1 ||| 110 668016 +a ||| going to trial ||| 0.5 0.229811 1.49697e-06 3.77733e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| going to understand ||| 0.142857 0.229811 1.49697e-06 2.34135e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| going to ||| 0.0502577 0.229811 0.000233527 0.000299788 2.718 ||| 0-1 ||| 3104 668016 +a ||| going ||| 0.000404449 0.0011228 2.99394e-06 1.92e-05 2.718 ||| 0-0 ||| 4945 668016 +a ||| gone about ||| 0.111111 0.0526361 1.49697e-06 3.1546e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| gone by calling ||| 1 0.0337966 1.49697e-06 3.39412e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| gone by ||| 0.0588235 0.0337966 5.98788e-06 5.15042e-07 2.718 ||| 0-1 ||| 68 668016 +a ||| gone off in ||| 1 0.0587624 1.49697e-06 1.53079e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| gone off to ||| 0.333333 0.229811 1.49697e-06 8.92505e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| gone over to ||| 0.333333 0.229811 1.49697e-06 1.05588e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| gone round to ||| 1 0.229811 1.49697e-06 1.68195e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| gone so far as to ||| 0.181818 0.229811 2.99394e-06 3.46739e-13 2.718 ||| 0-4 ||| 11 668016 +a ||| gone through ||| 0.00735294 0.230708 1.49697e-06 4.97614e-07 2.718 ||| 0-1 ||| 136 668016 +a ||| gone to meet ||| 1 0.229811 1.49697e-06 2.66655e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| gone to ||| 0.024 0.229811 4.49091e-06 2.19289e-05 2.718 ||| 0-1 ||| 125 668016 +a ||| gone up in ||| 1 0.0587624 1.49697e-06 1.28275e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| good deal of time to ||| 1 0.229811 1.49697e-06 6.8843e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| good enough to confirm ||| 1 0.229811 1.49697e-06 5.52208e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| good enough to ||| 0.0181818 0.229811 1.49697e-06 3.00113e-08 2.718 ||| 0-2 ||| 55 668016 +a ||| good for ||| 0.00467836 0.0683377 5.98788e-06 1.91096e-05 2.718 ||| 0-1 ||| 855 668016 +a ||| good guarantees for ||| 0.25 0.0683377 1.49697e-06 3.86015e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| good idea to ||| 0.00518135 0.229811 1.49697e-06 4.07296e-08 2.718 ||| 0-2 ||| 193 668016 +a ||| good if ||| 0.00465116 0.0014881 1.49697e-06 6.72106e-08 2.718 ||| 0-1 ||| 215 668016 +a ||| good intentions with which ||| 1 0.0571592 1.49697e-06 8.23725e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| good intentions with ||| 0.5 0.0571592 1.49697e-06 9.69705e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| good luck for ||| 0.125 0.0683377 1.49697e-06 1.85363e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| good people of ||| 0.0769231 0.0188479 1.49697e-06 1.35017e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| good plans on ||| 1 0.0782999 1.49697e-06 8.2825e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| good practice should be presented at ||| 0.5 0.204175 1.49697e-06 1.17723e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| good reason for ||| 0.0119048 0.0683377 1.49697e-06 4.46974e-09 2.718 ||| 0-2 ||| 84 668016 +a ||| good spending time on ||| 1 0.0782999 1.49697e-06 6.84714e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| good thing for ||| 0.0133333 0.0683377 1.49697e-06 6.9731e-09 2.718 ||| 0-2 ||| 75 668016 +a ||| good to have ||| 0.02 0.229811 1.49697e-06 2.17269e-06 2.718 ||| 0-1 ||| 50 668016 +a ||| good to ||| 0.00946372 0.229811 4.49091e-06 0.000181666 2.718 ||| 0-1 ||| 317 668016 +a ||| good use in ||| 0.166667 0.0587624 1.49697e-06 1.51494e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| good wish for ||| 1 0.0683377 1.49697e-06 5.63161e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| good work of the ||| 0.0416667 0.0188479 1.49697e-06 5.96105e-10 2.718 ||| 0-2 ||| 24 668016 +a ||| good work of ||| 0.03125 0.0188479 1.49697e-06 9.70985e-09 2.718 ||| 0-2 ||| 32 668016 +a ||| good ||| 3.25935e-05 2.85e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 30681 668016 +a ||| goods vehicles over ||| 1 0.0682544 1.49697e-06 1.97038e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| got around ||| 0.333333 0.0931303 1.49697e-06 9.89523e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| got back on to its ||| 1 0.0782999 1.49697e-06 3.5338e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| got back on to ||| 0.333333 0.0782999 1.49697e-06 2.48038e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| got back on ||| 1 0.0782999 1.49697e-06 2.79139e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| got hurt ||| 1 0.182648 1.49697e-06 3.9931e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| got information they will be able to ||| 1 0.229811 1.49697e-06 2.70986e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| got involved in ||| 0.142857 0.0587624 1.49697e-06 2.27295e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| got off to ||| 0.0322581 0.229811 1.49697e-06 1.55975e-08 2.718 ||| 0-2 ||| 31 668016 +a ||| got off ||| 0.0178571 0.0893962 1.49697e-06 8.36801e-08 2.718 ||| 0-1 ||| 56 668016 +a ||| got their way against ||| 0.5 0.05146 1.49697e-06 7.10553e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| got through a ||| 0.25 0.230708 1.49697e-06 3.85471e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| got through ||| 0.025 0.230708 1.49697e-06 8.69632e-07 2.718 ||| 0-1 ||| 40 668016 +a ||| got to know her as a ||| 1 0.229811 1.49697e-06 1.21689e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| got to know her as ||| 1 0.229811 1.49697e-06 2.74533e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| got to know her ||| 1 0.229811 1.49697e-06 2.69034e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| got to know ||| 0.0833333 0.229811 1.49697e-06 9.88733e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| got to the ||| 0.0769231 0.229811 1.49697e-06 2.35272e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| got to ||| 0.0283019 0.229811 4.49091e-06 3.8323e-05 2.718 ||| 0-1 ||| 106 668016 +a ||| govern ||| 0.00208333 0.0019802 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 480 668016 +a ||| governed by rigid ||| 1 0.0337966 1.49697e-06 3.25809e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| governed by ||| 0.00351494 0.0337966 2.99394e-06 1.81005e-07 2.718 ||| 0-1 ||| 569 668016 +a ||| government to ensure this ||| 1 0.229811 1.49697e-06 8.10926e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| government to ensure ||| 0.142857 0.229811 1.49697e-06 1.25503e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| government to ||| 0.00628931 0.229811 2.99394e-06 2.79891e-05 2.718 ||| 0-1 ||| 318 668016 +a ||| government which seeks to ||| 1 0.229811 1.49697e-06 6.15789e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| government will ||| 0.030303 0.0561595 1.49697e-06 1.12529e-06 2.718 ||| 0-1 ||| 33 668016 +a ||| government ’ s turn to ||| 1 0.229811 1.49697e-06 2.07958e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| governments - to disagree . ||| 1 0.229811 1.49697e-06 1.08138e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| governments - to disagree ||| 1 0.229811 1.49697e-06 3.57008e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| governments - to ||| 0.333333 0.229811 1.49697e-06 4.51909e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| governments of the ||| 0.00175131 0.0188479 1.49697e-06 6.2103e-08 2.718 ||| 0-1 ||| 571 668016 +a ||| governments of ||| 0.00292113 0.0188479 4.49091e-06 1.01158e-06 2.718 ||| 0-1 ||| 1027 668016 +a ||| governments to ||| 0.00408163 0.229811 2.99394e-06 1.19803e-05 2.718 ||| 0-1 ||| 490 668016 +a ||| grabbing by ||| 1 0.0337966 1.49697e-06 9.05025e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| grace at ||| 0.5 0.204175 1.49697e-06 7.48779e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| gradually , ||| 0.0238095 0.11393 2.99394e-06 2.88477e-05 2.718 ||| 0-0 ||| 84 668016 +a ||| gradually lead ||| 1 0.11393 1.49697e-06 4.65657e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| gradually make ||| 0.5 0.11393 1.49697e-06 4.20374e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| gradually merged ||| 1 0.11393 1.49697e-06 4.3542e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| gradually over time ||| 0.5 0.11393 1.49697e-06 1.91217e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| gradually over ||| 0.111111 0.11393 1.49697e-06 1.16475e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| gradually pushed ahead ||| 0.125 0.11393 1.49697e-06 4.85155e-13 2.718 ||| 0-0 ||| 8 668016 +a ||| gradually pushed ||| 0.125 0.11393 1.49697e-06 4.45096e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| gradually to ||| 0.0392157 0.229811 2.99394e-06 5.67489e-06 2.718 ||| 0-1 ||| 51 668016 +a ||| gradually ||| 0.00747791 0.11393 1.64667e-05 0.0002419 2.718 ||| 0-0 ||| 1471 668016 +a ||| grant aid is made available to ||| 1 0.229811 1.49697e-06 3.02876e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| grant for ||| 0.166667 0.0683377 1.49697e-06 1.1681e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| grant the ||| 0.00699301 0.0478224 1.49697e-06 6.27424e-06 2.718 ||| 0-0 ||| 143 668016 +a ||| grant ||| 0.00314961 0.0478224 8.98182e-06 0.0001022 2.718 ||| 0-0 ||| 1905 668016 +a ||| granted asylum ||| 0.025 0.0210892 1.49697e-06 1.21849e-09 2.718 ||| 0-0 ||| 40 668016 +a ||| granted at present for ||| 1 0.0683377 1.49697e-06 4.57436e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| granted at ||| 0.0555556 0.204175 1.49697e-06 2.75687e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| granted for ||| 0.0326087 0.0683377 4.49091e-06 2.98473e-06 2.718 ||| 0-1 ||| 92 668016 +a ||| granted me to ||| 1 0.229811 1.49697e-06 1.70842e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| granted to cope ||| 1 0.229811 1.49697e-06 6.441e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| granted to ||| 0.0336842 0.229811 2.39515e-05 2.83744e-05 2.718 ||| 0-1 ||| 475 668016 +a ||| granted ||| 0.00320513 0.0210892 1.49697e-05 7.21e-05 2.718 ||| 0-0 ||| 3120 668016 +a ||| granting ||| 0.00280899 0.0221932 8.98182e-06 4.66e-05 2.718 ||| 0-0 ||| 2136 668016 +a ||| grants to ||| 0.0151515 0.229811 1.49697e-06 1.89163e-06 2.718 ||| 0-1 ||| 66 668016 +a ||| grants ||| 0.00194932 0.0490956 2.99394e-06 5.2e-05 2.718 ||| 0-0 ||| 1026 668016 +a ||| grass roots to ||| 0.333333 0.229811 1.49697e-06 2.16907e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| grateful I am for it ||| 1 0.0683377 1.49697e-06 1.34416e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| grateful I am for ||| 0.166667 0.0683377 1.49697e-06 7.55859e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| grateful for ||| 0.0025 0.0683377 1.49697e-06 8.36461e-07 2.718 ||| 0-1 ||| 400 668016 +a ||| grateful to ||| 0.00137363 0.229811 1.49697e-06 7.95185e-06 2.718 ||| 0-1 ||| 728 668016 +a ||| gratitude to ||| 0.00390625 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-1 ||| 256 668016 +a ||| great a part of ||| 0.333333 0.0188479 1.49697e-06 6.14291e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| great as to ||| 0.2 0.229811 1.49697e-06 1.40482e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| great deal of aid to ||| 1 0.229811 1.49697e-06 4.1502e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| great deal of pressure on ||| 0.5 0.0782999 1.49697e-06 2.06826e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| great deal of work to ||| 0.1 0.229811 1.49697e-06 2.01155e-12 2.718 ||| 0-4 ||| 10 668016 +a ||| great deal of ||| 0.000715308 0.0188479 1.49697e-06 4.9357e-09 2.718 ||| 0-2 ||| 1398 668016 +a ||| great efforts in ||| 0.0454545 0.0587624 1.49697e-06 2.87127e-09 2.718 ||| 0-2 ||| 22 668016 +a ||| great favours ||| 0.5 0.222874 1.49697e-06 5.45091e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| great harm ||| 0.0588235 0.110821 1.49697e-06 6.09936e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| great pleasure of welcoming the members of ||| 1 0.0188479 1.49697e-06 5.19599e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| great pleasure to ||| 0.0190476 0.229811 2.99394e-06 3.12508e-09 2.718 ||| 0-2 ||| 105 668016 +a ||| great responsibility here to ||| 1 0.229811 1.49697e-06 3.22435e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| great significance for ||| 0.0217391 0.0683377 1.49697e-06 2.9687e-10 2.718 ||| 0-2 ||| 46 668016 +a ||| great wrong here ||| 1 0.0182742 1.49697e-06 1.88549e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| greater awareness when ||| 1 0.0055468 1.49697e-06 1.22191e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| greater emphasis on ||| 0.00675676 0.0782999 1.49697e-06 2.55302e-10 2.718 ||| 0-2 ||| 148 668016 +a ||| greater insight into ||| 0.25 0.107578 1.49697e-06 4.31992e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| greater involvement of ||| 0.00900901 0.0188479 1.49697e-06 1.16475e-10 2.718 ||| 0-2 ||| 111 668016 +a ||| greater priority to ||| 0.0666667 0.229811 1.49697e-06 2.57432e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| greater safety for ||| 0.0588235 0.0683377 1.49697e-06 2.46044e-10 2.718 ||| 0-2 ||| 17 668016 +a ||| greatest desire to ||| 1 0.229811 1.49697e-06 3.01652e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| greatest number of ||| 0.0222222 0.0188479 1.49697e-06 2.69292e-10 2.718 ||| 0-2 ||| 45 668016 +a ||| greatly from one ||| 0.04 0.0435582 1.49697e-06 7.89121e-10 2.718 ||| 0-1 ||| 25 668016 +a ||| greatly from ||| 0.0131579 0.0435582 1.49697e-06 1.89328e-07 2.718 ||| 0-1 ||| 76 668016 +a ||| greatly reassure ||| 1 0.284916 1.49697e-06 7.34559e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| greatly resisted ||| 0.2 0.223214 1.49697e-06 1.80155e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| greatly to ||| 0.0119048 0.229811 1.49697e-06 9.21293e-06 2.718 ||| 0-1 ||| 84 668016 +a ||| greed leads to a ||| 1 0.229811 1.49697e-06 9.05558e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| greed leads to ||| 1 0.229811 1.49697e-06 2.04296e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| green light from ||| 0.0909091 0.0435582 1.49697e-06 2.07691e-11 2.718 ||| 0-2 ||| 11 668016 +a ||| green light to ||| 0.00847458 0.229811 1.49697e-06 1.01065e-09 2.718 ||| 0-2 ||| 118 668016 +a ||| greetings to ||| 0.05 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| grew up with ||| 0.166667 0.0571592 1.49697e-06 2.04979e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| grief over ||| 0.2 0.0682544 1.49697e-06 1.09176e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| grind to a ||| 0.111111 0.229811 2.99394e-06 6.67678e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| grind to ||| 0.142857 0.229811 2.99394e-06 1.5063e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| grip on ||| 0.0212766 0.0782999 2.99394e-06 6.29731e-07 2.718 ||| 0-1 ||| 94 668016 +a ||| grips with ||| 0.0111111 0.0571592 2.99394e-06 2.88825e-07 2.718 ||| 0-1 ||| 180 668016 +a ||| ground and in ||| 0.125 0.0587624 1.49697e-06 8.80527e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| ground for ||| 0.00537634 0.0683377 1.49697e-06 4.31127e-06 2.718 ||| 0-1 ||| 186 668016 +a ||| ground in ||| 0.00632911 0.0587624 1.49697e-06 7.02965e-06 2.718 ||| 0-1 ||| 158 668016 +a ||| ground on ||| 0.0344828 0.0782999 1.49697e-06 4.43847e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| ground out from ||| 1 0.0435582 1.49697e-06 3.22619e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| ground to ||| 0.0103093 0.229811 1.49697e-06 4.09853e-05 2.718 ||| 0-1 ||| 97 668016 +a ||| ground with respect to ||| 1 0.229811 1.49697e-06 1.13376e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| grounds for saying ||| 0.2 0.0683377 1.49697e-06 6.84416e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| grounds for ||| 0.00674536 0.0683377 5.98788e-06 3.85804e-06 2.718 ||| 0-1 ||| 593 668016 +a ||| grounds of ||| 0.00455235 0.0188479 4.49091e-06 3.09687e-06 2.718 ||| 0-1 ||| 659 668016 +a ||| group for such ||| 0.5 0.0683377 1.49697e-06 9.81918e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| group for ||| 0.0135135 0.0683377 1.49697e-06 4.74609e-06 2.718 ||| 0-1 ||| 74 668016 +a ||| group of Member ||| 1 0.0188479 1.49697e-06 1.96314e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| group of ||| 0.00206327 0.0188479 4.49091e-06 3.80971e-06 2.718 ||| 0-1 ||| 1454 668016 +a ||| group to ||| 0.0226244 0.229811 7.48485e-06 4.51188e-05 2.718 ||| 0-1 ||| 221 668016 +a ||| group ||| 0.000198995 0.0003145 5.98788e-06 5.5e-06 2.718 ||| 0-0 ||| 20101 668016 +a ||| grouping in ||| 0.333333 0.0587624 1.49697e-06 1.08148e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| groups are : the efficiency of the ||| 1 0.0188479 1.49697e-06 5.2798e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| groups are : the efficiency of ||| 1 0.0188479 1.49697e-06 8.60018e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| groups of ||| 0.0017301 0.0188479 1.49697e-06 1.9581e-06 2.718 ||| 0-1 ||| 578 668016 +a ||| groups to maintain ||| 1 0.229811 1.49697e-06 1.05978e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| groups to ||| 0.0104712 0.229811 2.99394e-06 2.319e-05 2.718 ||| 0-1 ||| 191 668016 +a ||| growers in ||| 0.0555556 0.0587624 1.49697e-06 2.4033e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| growing support for ||| 0.166667 0.0683377 1.49697e-06 4.76223e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| growing up at the moment ||| 1 0.204175 1.49697e-06 4.86754e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| growing up at the ||| 1 0.204175 1.49697e-06 2.69371e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| growing up at ||| 1 0.204175 1.49697e-06 4.38774e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| growing up ||| 0.0222222 0.0195077 1.49697e-06 4.64033e-08 2.718 ||| 0-1 ||| 45 668016 +a ||| growth and ||| 0.000313873 0.0015873 1.49697e-06 9.30019e-08 2.718 ||| 0-1 ||| 3186 668016 +a ||| guarantee not to allow ||| 1 0.229811 1.49697e-06 1.75535e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| guarantee not to ||| 1 0.229811 1.49697e-06 7.23559e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| guarantee to ||| 0.0114943 0.229811 1.49697e-06 2.11932e-05 2.718 ||| 0-1 ||| 87 668016 +a ||| guaranteed for ||| 0.025641 0.0683377 1.49697e-06 1.30075e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| guaranteed freedom of ||| 0.2 0.0188479 1.49697e-06 8.90635e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| guaranteeing ||| 0.000691802 0.0010142 2.99394e-06 1.8e-06 2.718 ||| 0-0 ||| 2891 668016 +a ||| guarantees for ||| 0.00485437 0.0683377 1.49697e-06 7.4434e-07 2.718 ||| 0-1 ||| 206 668016 +a ||| guarantees of ||| 0.00358423 0.0188479 1.49697e-06 5.97486e-07 2.718 ||| 0-1 ||| 279 668016 +a ||| guarantor ||| 0.00578035 0.0059524 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 173 668016 +a ||| guests of ||| 0.2 0.0188479 1.49697e-06 1.27188e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| guidance to ||| 0.0285714 0.229811 1.49697e-06 2.52217e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| guided by ||| 0.0136054 0.0337966 5.98788e-06 9.46162e-08 2.718 ||| 0-1 ||| 294 668016 +a ||| guided in ||| 0.125 0.0587624 1.49697e-06 6.90949e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| guidelines into one ||| 1 0.107578 1.49697e-06 5.36735e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| guidelines into ||| 0.125 0.107578 1.49697e-06 1.28775e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| guilt for it ||| 1 0.0683377 1.49697e-06 2.81772e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| guilt for ||| 0.166667 0.0683377 1.49697e-06 1.58449e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| guilty at ||| 0.5 0.204175 1.49697e-06 7.2155e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| guilty of abduction and given ||| 1 0.0371011 1.49697e-06 2.13629e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| guilty of ||| 0.00595238 0.0188479 2.99394e-06 6.27064e-07 2.718 ||| 0-1 ||| 336 668016 +a ||| habit of ||| 0.00847458 0.0188479 1.49697e-06 2.24797e-07 2.718 ||| 0-1 ||| 118 668016 +a ||| had a problem with ||| 0.1 0.0571592 1.49697e-06 1.67047e-10 2.718 ||| 0-3 ||| 10 668016 +a ||| had a role in ||| 0.333333 0.0587624 1.49697e-06 5.93419e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| had access to ||| 0.0384615 0.229811 1.49697e-06 3.02374e-08 2.718 ||| 0-2 ||| 26 668016 +a ||| had at ||| 0.0227273 0.204175 1.49697e-06 3.41613e-05 2.718 ||| 0-1 ||| 44 668016 +a ||| had been applied to ||| 0.142857 0.229811 1.49697e-06 1.2715e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| had been referred back to ||| 1 0.229811 1.49697e-06 7.55714e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| had been substituted without the ||| 1 0.0015466 1.49697e-06 3.38266e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| had been substituted without ||| 1 0.0015466 1.49697e-06 5.50996e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| had branded ||| 1 0.0537634 1.49697e-06 4.61702e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| had brought ||| 0.0833333 0.0182841 1.49697e-06 1.19139e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| had carried out trials ||| 0.333333 0.0669777 1.49697e-06 5.70127e-15 2.718 ||| 0-2 ||| 3 668016 +a ||| had carried out ||| 0.111111 0.0669777 2.99394e-06 1.21304e-09 2.718 ||| 0-2 ||| 18 668016 +a ||| had come to ||| 0.0344828 0.229811 1.49697e-06 2.98612e-07 2.718 ||| 0-2 ||| 29 668016 +a ||| had confidence even ||| 1 0.0495435 1.49697e-06 6.05245e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| had drawn up on ||| 1 0.0782999 1.49697e-06 1.84528e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| had enough of ||| 0.0212766 0.0188479 1.49697e-06 4.90445e-09 2.718 ||| 0-2 ||| 47 668016 +a ||| had given his ||| 1 0.0371011 1.49697e-06 3.18804e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| had given ||| 0.0208333 0.0371011 1.49697e-06 1.06091e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| had in all the ||| 1 0.0587624 1.49697e-06 1.74945e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| had in all ||| 1 0.0587624 1.49697e-06 2.84964e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| had in mind ||| 0.0222222 0.0587624 1.49697e-06 1.51908e-08 2.718 ||| 0-1 ||| 45 668016 +a ||| had in ||| 0.00638978 0.0587624 2.99394e-06 6.03048e-05 2.718 ||| 0-1 ||| 313 668016 +a ||| had led us to ||| 0.25 0.229811 1.49697e-06 9.30278e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| had nothing to do with ||| 0.0232558 0.229811 1.49697e-06 1.43735e-12 2.718 ||| 0-2 ||| 43 668016 +a ||| had nothing to do ||| 0.0238095 0.229811 1.49697e-06 2.2478e-10 2.718 ||| 0-2 ||| 42 668016 +a ||| had nothing to ||| 0.0196078 0.229811 1.49697e-06 6.54323e-08 2.718 ||| 0-2 ||| 51 668016 +a ||| had on ||| 0.00757576 0.0782999 1.49697e-06 3.8076e-05 2.718 ||| 0-1 ||| 132 668016 +a ||| had some very serious clashes with ||| 1 0.0571592 1.49697e-06 1.60965e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| had to be asked ||| 0.5 0.229811 1.49697e-06 4.81721e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| had to be scrapped ||| 0.25 0.229811 1.49697e-06 3.44086e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| had to be ||| 0.0095057 0.229811 7.48485e-06 6.37197e-06 2.718 ||| 0-1 ||| 526 668016 +a ||| had to get ||| 0.2 0.229811 1.49697e-06 1.53719e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| had to go ||| 0.0434783 0.229811 1.49697e-06 2.05614e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| had to reinvent ||| 1 0.229811 1.49697e-06 1.40639e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| had to resort to ||| 0.111111 0.229811 1.49697e-06 4.84256e-10 2.718 ||| 0-1 ||| 9 668016 +a ||| had to resort ||| 0.111111 0.229811 1.49697e-06 5.44976e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| had to say in ||| 0.25 0.0587624 1.49697e-06 5.12173e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| had to say ||| 0.0384615 0.229811 7.48485e-06 3.36057e-07 2.718 ||| 0-1 ||| 130 668016 +a ||| had to shoulder in order to cope ||| 1 0.229811 1.49697e-06 1.56847e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| had to shoulder in order to ||| 1 0.229811 1.49697e-06 6.90958e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| had to shoulder in order ||| 1 0.229811 1.49697e-06 7.77596e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| had to shoulder in ||| 1 0.229811 1.49697e-06 1.46e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| had to shoulder ||| 1 0.229811 1.49697e-06 6.821e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| had to talk ||| 0.333333 0.229811 1.49697e-06 2.82333e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| had to ||| 0.0128246 0.229811 5.98788e-05 0.000351598 2.718 ||| 0-1 ||| 3119 668016 +a ||| had with ||| 0.00534759 0.0571592 1.49697e-06 1.67569e-05 2.718 ||| 0-1 ||| 187 668016 +a ||| had within it ||| 0.5 0.0123496 1.49697e-06 8.87809e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| had within ||| 0.166667 0.0123496 1.49697e-06 4.9924e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| half and ||| 0.0416667 0.0003975 1.49697e-06 2.25466e-08 2.718 ||| 0-0 ||| 24 668016 +a ||| half of all ||| 0.00444444 0.0188479 1.49697e-06 4.02538e-09 2.718 ||| 0-1 ||| 225 668016 +a ||| half of ||| 0.000859845 0.0188479 2.99394e-06 8.51861e-07 2.718 ||| 0-1 ||| 2326 668016 +a ||| half way to ||| 0.333333 0.229811 1.49697e-06 2.17472e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| half ||| 0.000135704 0.0003975 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 7369 668016 +a ||| halfway ||| 0.0128205 0.176887 2.99394e-06 6.85e-05 2.718 ||| 0-0 ||| 156 668016 +a ||| halt at ||| 0.2 0.204175 1.49697e-06 6.87515e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| halt to ||| 0.012987 0.229811 1.49697e-06 7.07609e-06 2.718 ||| 0-1 ||| 77 668016 +a ||| hammer on ||| 1 0.0782999 1.49697e-06 1.51742e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| hamper security ||| 0.5 0.0179856 1.49697e-06 3.7582e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| hamper the poorest beneficiaries in ||| 0.25 0.0587624 1.49697e-06 1.61471e-19 2.718 ||| 0-4 ||| 4 668016 +a ||| hamper ||| 0.00438596 0.0179856 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 228 668016 +a ||| hand , to ||| 0.0265487 0.229811 4.49091e-06 1.6568e-05 2.718 ||| 0-2 ||| 113 668016 +a ||| hand down to ||| 0.5 0.229811 1.49697e-06 9.69868e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| hand in hand with watering ||| 1 0.0587624 1.49697e-06 1.51078e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| hand in hand with ||| 0.00530035 0.0587624 4.49091e-06 6.0431e-11 2.718 ||| 0-1 ||| 566 668016 +a ||| hand in hand ||| 0.0224719 0.0587624 8.98182e-06 9.45047e-09 2.718 ||| 0-1 ||| 267 668016 +a ||| hand in ||| 0.0350515 0.0587624 2.54485e-05 2.38287e-05 2.718 ||| 0-1 ||| 485 668016 +a ||| hand is doing and in which ||| 1 0.0587624 1.49697e-06 2.9171e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| hand is doing and in ||| 1 0.0587624 1.49697e-06 3.43406e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| hand of ||| 0.0306122 0.0188479 4.49091e-06 1.17308e-05 2.718 ||| 0-1 ||| 98 668016 +a ||| hand to ||| 0.0454545 0.229811 7.48485e-06 0.00013893 2.718 ||| 0-1 ||| 110 668016 +a ||| hand with ||| 0.0116959 0.0571592 5.98788e-06 6.62128e-06 2.718 ||| 0-1 ||| 342 668016 +a ||| handed around ||| 0.5 0.0931303 1.49697e-06 2.79491e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| handed down , in other words let ||| 1 0.0587624 1.49697e-06 1.84812e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| handed down , in other words ||| 1 0.0587624 1.49697e-06 4.52528e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| handed down , in other ||| 1 0.0587624 1.49697e-06 2.00234e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| handed down , in ||| 1 0.0587624 1.49697e-06 1.54561e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| handed down long ||| 1 0.0226513 1.49697e-06 3.81656e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| handed down ||| 0.00934579 0.0226513 1.49697e-06 1.12816e-08 2.718 ||| 0-1 ||| 107 668016 +a ||| handed in to ||| 0.2 0.144287 1.49697e-06 6.50352e-07 2.718 ||| 0-1 0-2 ||| 5 668016 +a ||| handed out to ||| 0.0909091 0.229811 1.49697e-06 4.14615e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| handed over for ||| 0.5 0.0683377 1.49697e-06 5.48245e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| handed over to ||| 0.0736842 0.229811 1.04788e-05 5.21191e-09 2.718 ||| 0-2 ||| 95 668016 +a ||| handed over wholesale ||| 0.5 0.0682544 1.49697e-06 1.57911e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| handed over ||| 0.0108696 0.0682544 2.99394e-06 7.17776e-08 2.718 ||| 0-1 ||| 184 668016 +a ||| handled by ||| 0.0149254 0.0337966 1.49697e-06 1.68664e-07 2.718 ||| 0-1 ||| 67 668016 +a ||| hands in ||| 0.027027 0.0587624 1.49697e-06 6.05632e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| hands of the ||| 0.00192678 0.0188479 1.49697e-06 1.8304e-07 2.718 ||| 0-1 ||| 519 668016 +a ||| hands of various ||| 0.142857 0.0188479 1.49697e-06 4.60346e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| hands of ||| 0.0102708 0.0188479 1.64667e-05 2.98151e-06 2.718 ||| 0-1 ||| 1071 668016 +a ||| hands on ||| 0.0714286 0.0782999 4.49091e-06 3.82391e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| happen , subject to ||| 0.5 0.229811 1.49697e-06 2.45121e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| happen in ||| 0.00273224 0.0587624 1.49697e-06 6.53097e-06 2.718 ||| 0-1 ||| 366 668016 +a ||| happen on ||| 0.0294118 0.0782999 1.49697e-06 4.1236e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| happen to ||| 0.0189573 0.229811 5.98788e-06 3.80778e-05 2.718 ||| 0-1 ||| 211 668016 +a ||| happen today with the fight against trafficking ||| 1 0.05146 1.49697e-06 3.28247e-23 2.718 ||| 0-5 ||| 1 668016 +a ||| happen today with the fight against ||| 1 0.05146 1.49697e-06 2.75837e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| happen with these ||| 0.333333 0.0571592 1.49697e-06 1.88208e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| happen with ||| 0.0163934 0.0571592 1.49697e-06 1.81476e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| happened and to verify all the information ||| 1 0.229811 1.49697e-06 3.7817e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| happened and to verify all the ||| 1 0.229811 1.49697e-06 2.28501e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| happened and to verify all ||| 1 0.229811 1.49697e-06 3.72202e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| happened and to verify ||| 1 0.229811 1.49697e-06 7.87662e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| happened and to ||| 0.142857 0.229811 1.49697e-06 2.71607e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| happened in the first place ||| 0.166667 0.0587624 1.49697e-06 1.85008e-13 2.718 ||| 0-1 ||| 6 668016 +a ||| happened in the first ||| 0.1 0.0587624 1.49697e-06 1.22929e-10 2.718 ||| 0-1 ||| 10 668016 +a ||| happened in the ||| 0.00346021 0.0587624 1.49697e-06 2.28323e-07 2.718 ||| 0-1 ||| 289 668016 +a ||| happened in ||| 0.00223464 0.0587624 2.99394e-06 3.71911e-06 2.718 ||| 0-1 ||| 895 668016 +a ||| happened to ||| 0.00568182 0.229811 2.99394e-06 2.16837e-05 2.718 ||| 0-1 ||| 352 668016 +a ||| happened with ||| 0.00588235 0.0571592 1.49697e-06 1.03343e-06 2.718 ||| 0-1 ||| 170 668016 +a ||| happening in ||| 0.00434783 0.0587624 4.49091e-06 3.26248e-06 2.718 ||| 0-1 ||| 690 668016 +a ||| happening on China ||| 0.5 0.0782999 1.49697e-06 5.41755e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| happening on ||| 0.0196078 0.0782999 1.49697e-06 2.0599e-06 2.718 ||| 0-1 ||| 51 668016 +a ||| happening right on ||| 1 0.0782999 1.49697e-06 1.32843e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| happening with ||| 0.0104167 0.0571592 1.49697e-06 9.06544e-07 2.718 ||| 0-1 ||| 96 668016 +a ||| happens again ||| 0.0344828 0.0700825 1.49697e-06 1.38408e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| happens it may end in ||| 1 0.0587624 1.49697e-06 2.07931e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| happens to ||| 0.00921659 0.229811 2.99394e-06 2.0913e-05 2.718 ||| 0-1 ||| 217 668016 +a ||| happy about that ||| 0.0555556 0.0526361 1.49697e-06 5.34045e-09 2.718 ||| 0-1 ||| 18 668016 +a ||| happy about ||| 0.00746269 0.0526361 1.49697e-06 3.17476e-07 2.718 ||| 0-1 ||| 134 668016 +a ||| happy to grant ||| 0.25 0.229811 1.49697e-06 6.99587e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| happy to hide behind ||| 1 0.229811 1.49697e-06 1.77964e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| happy to hide ||| 1 0.229811 1.49697e-06 1.98621e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| happy to include ||| 0.333333 0.229811 1.49697e-06 2.92194e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| happy to keep you ||| 0.5 0.229811 1.49697e-06 1.11014e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| happy to keep ||| 0.333333 0.229811 1.49697e-06 3.43835e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| happy to ||| 0.0149942 0.229811 1.94606e-05 2.2069e-05 2.718 ||| 0-1 ||| 867 668016 +a ||| happy with ||| 0.00413223 0.0571592 2.99394e-06 1.05179e-06 2.718 ||| 0-1 ||| 484 668016 +a ||| harassed ||| 0.0229885 0.107143 2.99394e-06 1.37e-05 2.718 ||| 0-0 ||| 87 668016 +a ||| harassment of ||| 0.0128205 0.0188479 1.49697e-06 1.18314e-07 2.718 ||| 0-1 ||| 78 668016 +a ||| hard on the head ||| 1 0.0782999 1.49697e-06 1.76969e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| hard on the ||| 0.0344828 0.0782999 1.49697e-06 2.44771e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| hard on ||| 0.0121951 0.0782999 2.99394e-06 3.98703e-06 2.718 ||| 0-1 ||| 164 668016 +a ||| hard to conceal ||| 1 0.229811 1.49697e-06 2.24582e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| hard to cope ||| 1 0.229811 1.49697e-06 8.35739e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| hard to ||| 0.00370714 0.229811 5.98788e-06 3.68167e-05 2.718 ||| 0-1 ||| 1079 668016 +a ||| hardest on ||| 0.2 0.0782999 1.49697e-06 1.10013e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| hardly any of ||| 0.0909091 0.0188479 1.49697e-06 1.01534e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| hardly complain ||| 1 0.0019203 1.49697e-06 1.332e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| hardly ||| 0.00144613 0.0019203 2.99394e-06 3.7e-06 2.718 ||| 0-0 ||| 1383 668016 +a ||| hark back to ||| 0.1 0.229811 1.49697e-06 9.42451e-11 2.718 ||| 0-2 ||| 10 668016 +a ||| harm ||| 0.00740056 0.110821 1.19758e-05 0.0001552 2.718 ||| 0-0 ||| 1081 668016 +a ||| harmed ||| 0.0363636 0.177665 5.98788e-06 3.19e-05 2.718 ||| 0-0 ||| 110 668016 +a ||| harmful in any way ||| 0.5 0.0587624 1.49697e-06 2.33062e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| harmful in any ||| 0.333333 0.0587624 1.49697e-06 1.0812e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| harmful in ||| 0.0714286 0.0587624 1.49697e-06 7.14982e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| harmonisation of ||| 0.000874126 0.0188479 1.49697e-06 1.39019e-07 2.718 ||| 0-1 ||| 1144 668016 +a ||| harms ||| 0.00925926 0.216495 1.49697e-06 3.83e-05 2.718 ||| 0-0 ||| 108 668016 +a ||| harsh light to ||| 1 0.229811 1.49697e-06 4.14e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| has , in point ||| 1 0.0587624 1.49697e-06 3.22648e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| has , in ||| 0.0130719 0.0587624 2.99394e-06 3.68825e-05 2.718 ||| 0-2 ||| 153 668016 +a ||| has , of course , already explained ||| 1 0.0188479 1.49697e-06 1.82187e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| has , of course , already ||| 0.5 0.0188479 1.49697e-06 1.26519e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| has , of course , ||| 0.0169492 0.0188479 1.49697e-06 2.73199e-09 2.718 ||| 0-2 ||| 59 668016 +a ||| has , of course ||| 0.0192308 0.0188479 1.49697e-06 2.29089e-08 2.718 ||| 0-2 ||| 52 668016 +a ||| has , of ||| 0.047619 0.0188479 1.49697e-06 1.81572e-05 2.718 ||| 0-2 ||| 21 668016 +a ||| has , over the course of ||| 1 0.0682544 1.49697e-06 6.00455e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| has , over the course ||| 1 0.0682544 1.49697e-06 1.10451e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| has , over the ||| 0.25 0.0682544 1.49697e-06 8.75412e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| has , over ||| 0.166667 0.0682544 1.49697e-06 1.42594e-06 2.718 ||| 0-2 ||| 6 668016 +a ||| has already spoken about ||| 0.0555556 0.0526361 1.49697e-06 2.67884e-13 2.718 ||| 0-3 ||| 18 668016 +a ||| has an important task to fulfil ||| 0.5 0.229811 1.49697e-06 9.91677e-18 2.718 ||| 0-4 ||| 2 668016 +a ||| has an important task to ||| 0.5 0.229811 1.49697e-06 3.87374e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| has applied for ||| 0.0357143 0.0683377 1.49697e-06 2.05421e-08 2.718 ||| 0-2 ||| 28 668016 +a ||| has as ||| 0.0108696 0.0243476 1.49697e-06 4.51559e-05 2.718 ||| 0-1 ||| 92 668016 +a ||| has asked to ||| 0.0227273 0.229811 1.49697e-06 1.3632e-07 2.718 ||| 0-2 ||| 44 668016 +a ||| has at its ||| 0.03125 0.204175 1.49697e-06 2.49603e-07 2.718 ||| 0-1 ||| 32 668016 +a ||| has at ||| 0.0252101 0.204175 4.49091e-06 0.000175197 2.718 ||| 0-1 ||| 119 668016 +a ||| has backing across the board ||| 1 0.0490758 1.49697e-06 3.50784e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| has backing across the ||| 1 0.0490758 1.49697e-06 2.6276e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| has backing across ||| 1 0.0490758 1.49697e-06 4.28004e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| has been able to ||| 0.00421941 0.229811 1.49697e-06 5.02708e-09 2.718 ||| 0-3 ||| 237 668016 +a ||| has been active since ||| 0.25 0.0050746 1.49697e-06 1.08754e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| has been alluded to ||| 0.333333 0.229811 1.49697e-06 8.42964e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| has been built on ||| 0.25 0.0782999 1.49697e-06 3.24072e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| has been carried out on ||| 0.111111 0.0782999 1.49697e-06 7.36055e-13 2.718 ||| 0-4 ||| 9 668016 +a ||| has been doing in ||| 0.111111 0.0587624 1.49697e-06 3.79115e-10 2.718 ||| 0-3 ||| 9 668016 +a ||| has been done to ||| 0.012987 0.229811 1.49697e-06 2.74565e-09 2.718 ||| 0-3 ||| 77 668016 +a ||| has been faced up to ||| 0.333333 0.229811 1.49697e-06 1.29988e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| has been filed with ||| 1 0.0571592 1.49697e-06 8.32196e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| has been given ||| 0.00180505 0.0371011 1.49697e-06 1.81683e-08 2.718 ||| 0-2 ||| 554 668016 +a ||| has been granted to ||| 0.166667 0.229811 1.49697e-06 4.87715e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| has been in the past ||| 0.0384615 0.0587624 1.49697e-06 8.12169e-12 2.718 ||| 0-2 ||| 26 668016 +a ||| has been in the ||| 0.0166667 0.0587624 1.49697e-06 6.34012e-08 2.718 ||| 0-2 ||| 60 668016 +a ||| has been in ||| 0.002331 0.0587624 1.49697e-06 1.03273e-06 2.718 ||| 0-2 ||| 429 668016 +a ||| has been largely due to ||| 0.333333 0.229811 1.49697e-06 5.4421e-14 2.718 ||| 0-4 ||| 3 668016 +a ||| has been left to ||| 0.0714286 0.229811 1.49697e-06 1.1374e-09 2.718 ||| 0-3 ||| 14 668016 +a ||| has been made and ||| 0.05 0.0015873 1.49697e-06 6.94746e-11 2.718 ||| 0-3 ||| 20 668016 +a ||| has been made towards ||| 0.0434783 0.155507 1.49697e-06 1.21436e-10 2.718 ||| 0-3 ||| 23 668016 +a ||| has been on the table ||| 0.047619 0.0782999 1.49697e-06 2.7101e-12 2.718 ||| 0-2 ||| 21 668016 +a ||| has been on the ||| 0.03125 0.0782999 2.99394e-06 4.0031e-08 2.718 ||| 0-2 ||| 64 668016 +a ||| has been on ||| 0.0186916 0.0782999 2.99394e-06 6.52057e-07 2.718 ||| 0-2 ||| 107 668016 +a ||| has been put forward on ||| 0.333333 0.0782999 1.49697e-06 4.00028e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| has been put to ||| 0.0357143 0.229811 1.49697e-06 6.63894e-09 2.718 ||| 0-3 ||| 28 668016 +a ||| has been reduced by ||| 0.025 0.0337966 1.49697e-06 6.61839e-12 2.718 ||| 0-3 ||| 40 668016 +a ||| has been restricted to ||| 0.25 0.229811 1.49697e-06 9.51345e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| has been said before : ||| 1 0.0203282 1.49697e-06 1.26267e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| has been said before ||| 0.0263158 0.0203282 1.49697e-06 3.74903e-12 2.718 ||| 0-3 ||| 38 668016 +a ||| has been shown to ||| 0.02 0.229811 1.49697e-06 6.2861e-10 2.718 ||| 0-3 ||| 50 668016 +a ||| has been taken over by ||| 0.0434783 0.0682544 1.49697e-06 1.9107e-13 2.718 ||| 0-3 ||| 23 668016 +a ||| has been taken over ||| 0.172414 0.0682544 7.48485e-06 3.63937e-11 2.718 ||| 0-3 ||| 29 668016 +a ||| has been to ||| 0.00438596 0.229811 1.49697e-06 6.02117e-06 2.718 ||| 0-2 ||| 228 668016 +a ||| has been used to ||| 0.0294118 0.229811 1.49697e-06 2.58308e-09 2.718 ||| 0-3 ||| 34 668016 +a ||| has been wanting to ||| 0.5 0.229811 1.49697e-06 8.91133e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| has begun ||| 0.00310559 0.0006854 1.49697e-06 4.63275e-09 2.718 ||| 0-1 ||| 322 668016 +a ||| has changed in ||| 0.0196078 0.0587624 1.49697e-06 1.01133e-08 2.718 ||| 0-2 ||| 51 668016 +a ||| has come to ||| 0.00337838 0.229811 1.49697e-06 1.53144e-06 2.718 ||| 0-2 ||| 296 668016 +a ||| has contributed to ||| 0.00540541 0.229811 1.49697e-06 1.69499e-08 2.718 ||| 0-2 ||| 185 668016 +a ||| has demonstrated to ||| 0.2 0.229811 1.49697e-06 4.86858e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| has done so in ||| 0.0555556 0.0587624 1.49697e-06 3.20094e-10 2.718 ||| 0-3 ||| 18 668016 +a ||| has drawn on ||| 0.142857 0.0782999 1.49697e-06 2.77484e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| has dropped and so ||| 1 0.0015873 1.49697e-06 2.59243e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| has dropped and ||| 1 0.0015873 1.49697e-06 1.14219e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| has enabled it to meet members ||| 1 0.229811 1.49697e-06 8.68462e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| has enabled it to meet ||| 1 0.229811 1.49697e-06 5.88788e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| has enabled it to ||| 0.166667 0.229811 1.49697e-06 4.84201e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| has failed to ||| 0.00321543 0.229811 1.49697e-06 8.36674e-08 2.718 ||| 0-2 ||| 311 668016 +a ||| has favoured measures according to ||| 1 0.229811 1.49697e-06 1.78294e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| has financed humanitarian aid to Ingushetia ; ||| 1 0.229811 1.49697e-06 2.29319e-27 2.718 ||| 0-4 ||| 1 668016 +a ||| has financed humanitarian aid to Ingushetia ||| 1 0.229811 1.49697e-06 7.44541e-24 2.718 ||| 0-4 ||| 1 668016 +a ||| has financed humanitarian aid to ||| 1 0.229811 1.49697e-06 1.86135e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| has followed as a ||| 1 0.0243476 1.49697e-06 1.43313e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| has followed as ||| 1 0.0243476 1.49697e-06 3.23316e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| has followed up ||| 0.125 0.0192747 1.49697e-06 1.21836e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| has followed ||| 0.00636943 0.0192747 1.49697e-06 3.57237e-07 2.718 ||| 0-1 ||| 157 668016 +a ||| has given to ||| 0.0517241 0.229811 4.49091e-06 1.23752e-06 2.718 ||| 0-2 ||| 58 668016 +a ||| has given us ||| 0.00495049 0.0371011 1.49697e-06 1.56818e-08 2.718 ||| 0-1 ||| 202 668016 +a ||| has given ||| 0.00261097 0.0371011 4.49091e-06 5.44091e-06 2.718 ||| 0-1 ||| 1149 668016 +a ||| has gone by ||| 0.0909091 0.0337966 1.49697e-06 2.65118e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| has got off ||| 0.04 0.0893962 1.49697e-06 4.30743e-10 2.718 ||| 0-2 ||| 25 668016 +a ||| has ground to ||| 1 0.229811 1.49697e-06 2.10972e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| has had to be asked ||| 1 0.229811 1.49697e-06 2.47966e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| has had to be ||| 0.0357143 0.229811 1.49697e-06 3.27997e-08 2.718 ||| 0-2 ||| 28 668016 +a ||| has had to ||| 0.00668896 0.229811 2.99394e-06 1.80985e-06 2.718 ||| 0-2 ||| 299 668016 +a ||| has happened and to verify all the ||| 1 0.229811 1.49697e-06 1.17621e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| has happened and to verify all ||| 1 0.229811 1.49697e-06 1.91591e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| has happened and to verify ||| 1 0.229811 1.49697e-06 4.05449e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| has happened and to ||| 0.166667 0.229811 1.49697e-06 1.3981e-09 2.718 ||| 0-3 ||| 6 668016 +a ||| has helped in improving ||| 1 0.0587624 1.49697e-06 1.32271e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| has helped in ||| 0.125 0.0587624 1.49697e-06 6.12364e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| has important implications for ||| 0.25 0.0683377 1.49697e-06 1.52069e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| has in fact been implementing the regulation ||| 1 0.0587624 1.49697e-06 3.73344e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| has in fact been implementing the ||| 1 0.0587624 1.49697e-06 5.34876e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| has in fact been implementing ||| 1 0.0587624 1.49697e-06 8.71251e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| has in fact been ||| 0.025641 0.0587624 1.49697e-06 3.02518e-09 2.718 ||| 0-1 ||| 39 668016 +a ||| has in fact come to ||| 0.5 0.229811 1.49697e-06 9.60215e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| has in fact ||| 0.0117647 0.0587624 1.49697e-06 9.05958e-07 2.718 ||| 0-1 ||| 85 668016 +a ||| has in mind ||| 0.0322581 0.0587624 1.49697e-06 7.79063e-08 2.718 ||| 0-1 ||| 31 668016 +a ||| has in the ||| 0.0188679 0.0587624 1.49697e-06 1.89869e-05 2.718 ||| 0-1 ||| 53 668016 +a ||| has in ||| 0.015015 0.0587624 7.48485e-06 0.000309275 2.718 ||| 0-1 ||| 333 668016 +a ||| has intimidated ||| 0.5 0.0808824 1.49697e-06 5.1475e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| has it made ||| 0.125 0.00055155 1.49697e-06 3.34358e-11 2.718 ||| 0-1 0-2 ||| 8 668016 +a ||| has it reached ||| 0.5 0.14487 1.49697e-06 1.12547e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| has just been deported ||| 1 0.0994152 1.49697e-06 3.36145e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| has led to this , as ||| 0.333333 0.0243476 1.49697e-06 2.83829e-13 2.718 ||| 0-5 ||| 3 668016 +a ||| has led to ||| 0.00108108 0.229811 1.49697e-06 1.65532e-07 2.718 ||| 0-2 ||| 925 668016 +a ||| has little to ||| 0.047619 0.229811 1.49697e-06 2.91934e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| has made in ||| 0.0181818 0.0587624 1.49697e-06 6.47869e-07 2.718 ||| 0-2 ||| 55 668016 +a ||| has made to ||| 0.0444444 0.229811 5.98788e-06 3.7773e-06 2.718 ||| 0-2 ||| 90 668016 +a ||| has no problem in ||| 0.5 0.0587624 1.49697e-06 5.41423e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| has not stopped him putting ||| 0.333333 0.0700165 1.49697e-06 4.89247e-17 2.718 ||| 0-2 ||| 3 668016 +a ||| has not stopped him ||| 0.333333 0.0700165 1.49697e-06 4.37218e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| has not stopped ||| 0.025641 0.0700165 1.49697e-06 1.36375e-09 2.718 ||| 0-2 ||| 39 668016 +a ||| has not taken into account ||| 0.1 0.107578 1.49697e-06 2.79746e-14 2.718 ||| 0-3 ||| 10 668016 +a ||| has not taken into ||| 0.0833333 0.107578 1.49697e-06 9.73028e-11 2.718 ||| 0-3 ||| 12 668016 +a ||| has now been increased to ||| 0.333333 0.229811 1.49697e-06 6.1643e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| has now been made for ||| 1 0.0683377 1.49697e-06 2.73305e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| has now tried to find ||| 1 0.229811 1.49697e-06 4.93368e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| has now tried to ||| 1 0.229811 1.49697e-06 1.48203e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| has on ||| 0.0118343 0.0782999 2.99394e-06 0.000195274 2.718 ||| 0-1 ||| 169 668016 +a ||| has opted for ||| 0.0178571 0.0683377 1.49697e-06 1.10013e-09 2.718 ||| 0-2 ||| 56 668016 +a ||| has passed through ||| 0.25 0.230708 1.49697e-06 2.92973e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| has placed on ||| 0.25 0.0782999 2.99394e-06 2.44482e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| has proved to ||| 0.00515464 0.229811 1.49697e-06 7.46515e-08 2.718 ||| 0-2 ||| 194 668016 +a ||| has proven to be . ||| 0.5 0.229811 1.49697e-06 1.38578e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| has proven to be ||| 0.0153846 0.229811 1.49697e-06 4.57503e-10 2.718 ||| 0-2 ||| 65 668016 +a ||| has proven to ||| 0.0135135 0.229811 1.49697e-06 2.52445e-08 2.718 ||| 0-2 ||| 74 668016 +a ||| has put in ||| 0.0192308 0.0587624 1.49697e-06 3.41006e-07 2.718 ||| 0-2 ||| 52 668016 +a ||| has put into ||| 0.0183486 0.107578 2.99394e-06 3.44755e-08 2.718 ||| 0-2 ||| 109 668016 +a ||| has raised in ||| 0.2 0.0587624 1.49697e-06 3.56284e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| has reached an historic turning point in ||| 1 0.14487 1.49697e-06 1.52749e-22 2.718 ||| 0-1 ||| 1 668016 +a ||| has reached an historic turning point ||| 0.5 0.14487 1.49697e-06 7.13632e-21 2.718 ||| 0-1 ||| 2 668016 +a ||| has reached an historic turning ||| 1 0.14487 1.49697e-06 8.15766e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| has reached an historic ||| 1 0.14487 1.49697e-06 1.63153e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| has reached an ||| 0.0333333 0.14487 1.49697e-06 2.81298e-08 2.718 ||| 0-1 ||| 30 668016 +a ||| has reached ||| 0.00226244 0.14487 1.49697e-06 6.32885e-06 2.718 ||| 0-1 ||| 442 668016 +a ||| has received aid to ||| 1 0.229811 1.49697e-06 2.11004e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| has refused to ||| 0.00970874 0.229811 1.49697e-06 2.14578e-08 2.718 ||| 0-2 ||| 103 668016 +a ||| has refused ||| 0.00757576 0.0176039 1.49697e-06 1.69353e-07 2.718 ||| 0-1 ||| 132 668016 +a ||| has repeatedly pressed for ||| 1 0.0683377 1.49697e-06 1.7071e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| has shown for ||| 0.05 0.0683377 1.49697e-06 1.98023e-08 2.718 ||| 0-2 ||| 20 668016 +a ||| has since ||| 0.0107527 0.0050746 1.49697e-06 8.08158e-07 2.718 ||| 0-1 ||| 93 668016 +a ||| has started to ||| 0.0142857 0.229811 1.49697e-06 8.1143e-08 2.718 ||| 0-2 ||| 70 668016 +a ||| has stayed at an ||| 1 0.204175 1.49697e-06 3.1148e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| has stayed at ||| 0.333333 0.204175 1.49697e-06 7.00789e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| has strong reservations and will vote against ||| 1 0.05146 1.49697e-06 1.2587e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| has supported ||| 0.00401606 0.0120717 1.49697e-06 4.37023e-07 2.718 ||| 0-1 ||| 249 668016 +a ||| has taken to this ||| 0.2 0.229811 1.49697e-06 1.06199e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| has taken to ||| 0.03125 0.229811 1.49697e-06 1.6436e-06 2.718 ||| 0-2 ||| 32 668016 +a ||| has tended to ||| 0.0625 0.229811 1.49697e-06 1.17207e-08 2.718 ||| 0-2 ||| 16 668016 +a ||| has the Commission taken to inform and ||| 1 0.229811 1.49697e-06 1.41005e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| has the Commission taken to inform ||| 1 0.229811 1.49697e-06 1.12571e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| has the Commission taken to ||| 0.111111 0.229811 1.49697e-06 5.89376e-11 2.718 ||| 0-4 ||| 9 668016 +a ||| has the effect of ||| 0.0666667 0.0188479 1.49697e-06 3.11824e-09 2.718 ||| 0-3 ||| 15 668016 +a ||| has through ||| 0.333333 0.230708 1.49697e-06 4.0918e-05 2.718 ||| 0-1 ||| 3 668016 +a ||| has to add ||| 0.5 0.229811 1.49697e-06 1.47861e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| has to be a ||| 0.00704225 0.229811 1.49697e-06 1.44851e-06 2.718 ||| 0-1 ||| 142 668016 +a ||| has to be called ||| 0.5 0.229811 1.49697e-06 5.67958e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| has to be contained ||| 0.5 0.229811 1.49697e-06 2.22216e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| has to be done ||| 0.0104712 0.229811 2.99394e-06 1.49015e-08 2.718 ||| 0-1 ||| 191 668016 +a ||| has to be in ||| 0.047619 0.0587624 1.49697e-06 4.98046e-07 2.718 ||| 0-3 ||| 21 668016 +a ||| has to be made of ||| 1 0.0188479 1.49697e-06 5.13618e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| has to be met ||| 0.25 0.229811 1.49697e-06 2.50646e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| has to be said after ||| 1 0.229811 1.49697e-06 3.64245e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| has to be said ||| 0.0104167 0.229811 2.99394e-06 1.34408e-08 2.718 ||| 0-1 ||| 192 668016 +a ||| has to be ||| 0.00880214 0.229811 3.44303e-05 3.26788e-05 2.718 ||| 0-1 ||| 2613 668016 +a ||| has to bear at least ||| 1 0.204175 1.49697e-06 5.71901e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| has to bear at ||| 1 0.204175 1.49697e-06 2.33049e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| has to choose ||| 0.111111 0.229811 1.49697e-06 5.71607e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| has to do with another matter on ||| 1 0.229811 1.49697e-06 6.62958e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| has to do with another matter ||| 1 0.229811 1.49697e-06 9.90821e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| has to do with another ||| 0.5 0.229811 1.49697e-06 9.55008e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| has to do with ||| 0.0113895 0.229811 7.48485e-06 3.96104e-08 2.718 ||| 0-1 ||| 439 668016 +a ||| has to do ||| 0.0133843 0.229811 1.04788e-05 6.19446e-06 2.718 ||| 0-1 ||| 523 668016 +a ||| has to represent his ||| 0.5 0.229811 1.49697e-06 2.76888e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| has to represent ||| 0.166667 0.229811 1.49697e-06 9.21424e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| has to say ||| 0.0152672 0.229811 2.99394e-06 1.72348e-06 2.718 ||| 0-1 ||| 131 668016 +a ||| has to swallow ||| 1 0.229811 1.49697e-06 5.77017e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| has to visit ||| 0.5 0.229811 1.49697e-06 5.31937e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| has to ||| 0.0140752 0.229811 0.000127242 0.00180318 2.718 ||| 0-1 ||| 6039 668016 +a ||| has towards ||| 0.0416667 0.155507 1.49697e-06 1.73605e-05 2.718 ||| 0-1 ||| 24 668016 +a ||| has tried to reach ||| 0.25 0.182593 1.49697e-06 2.67693e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| has used to ||| 0.125 0.229811 1.49697e-06 7.73563e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| has visited ||| 0.0232558 0.0117057 1.49697e-06 6.5888e-08 2.718 ||| 0-1 ||| 43 668016 +a ||| haste to ||| 0.0769231 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| haunted by ||| 0.111111 0.0337966 1.49697e-06 5.75925e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| haunting ||| 0.142857 0.235294 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| have , in ||| 0.0136986 0.0587624 2.99394e-06 8.56934e-05 2.718 ||| 0-2 ||| 146 668016 +a ||| have Euro-ACP citizenship ||| 1 1 1.49697e-06 5.38191e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| have Euro-ACP ||| 1 1 1.49697e-06 1.07638e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| have a decision on ||| 0.166667 0.0782999 1.49697e-06 3.16342e-09 2.718 ||| 0-3 ||| 6 668016 +a ||| have a discussion about ||| 0.2 0.0526361 1.49697e-06 2.30815e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| have a duty to ||| 0.00588235 0.229811 1.49697e-06 1.3835e-08 2.718 ||| 0-3 ||| 170 668016 +a ||| have a great responsibility here to ||| 1 0.229811 1.49697e-06 1.70932e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| have a hand in ||| 0.125 0.0587624 1.49697e-06 1.26323e-08 2.718 ||| 0-3 ||| 8 668016 +a ||| have a legal basis for various operations ||| 1 0.0683377 1.49697e-06 5.84916e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| have a legal basis for various ||| 1 0.0683377 1.49697e-06 2.32109e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| have a legal basis for ||| 0.125 0.0683377 1.49697e-06 1.5033e-12 2.718 ||| 0-4 ||| 8 668016 +a ||| have a lot more to discover ||| 1 0.229811 1.49697e-06 2.95882e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| have a lot more to ||| 0.2 0.229811 1.49697e-06 5.47929e-11 2.718 ||| 0-4 ||| 5 668016 +a ||| have a name for ||| 0.5 0.0683377 1.49697e-06 1.70731e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| have a negative effect on ||| 0.0243902 0.0782999 1.49697e-06 1.56989e-13 2.718 ||| 0-4 ||| 41 668016 +a ||| have a number of ||| 0.0114943 0.0188479 1.49697e-06 7.75865e-09 2.718 ||| 0-3 ||| 87 668016 +a ||| have a repeat ||| 0.0909091 0.0005204 1.49697e-06 9.5423e-10 2.718 ||| 0-2 ||| 11 668016 +a ||| have a right to ||| 0.003003 0.229811 1.49697e-06 1.19761e-07 2.718 ||| 0-3 ||| 333 668016 +a ||| have about the ||| 0.0555556 0.0526361 1.49697e-06 3.70002e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| have about ||| 0.0208333 0.0526361 1.49697e-06 6.0269e-05 2.718 ||| 0-1 ||| 48 668016 +a ||| have absolutely no objection to Amendment ||| 1 0.229811 1.49697e-06 3.61004e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| have absolutely no objection to ||| 0.5 0.229811 1.49697e-06 1.32236e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| have absolutely nothing against that - ||| 1 0.05146 1.49697e-06 3.46196e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| have absolutely nothing against that ||| 1 0.05146 1.49697e-06 9.17781e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| have absolutely nothing against ||| 0.0769231 0.05146 1.49697e-06 5.45597e-13 2.718 ||| 0-3 ||| 13 668016 +a ||| have access to information ||| 0.0204082 0.229811 1.49697e-06 5.96297e-11 2.718 ||| 0-2 ||| 49 668016 +a ||| have access to ||| 0.00229885 0.229811 2.99394e-06 3.603e-07 2.718 ||| 0-2 ||| 870 668016 +a ||| have addressed ||| 0.0078125 0.001842 1.49697e-06 8.73065e-08 2.718 ||| 0-1 ||| 128 668016 +a ||| have affected ||| 0.012987 0.0557198 1.49697e-06 4.11537e-06 2.718 ||| 0-1 ||| 77 668016 +a ||| have agreed to ||| 0.00729927 0.229811 1.49697e-06 3.27203e-07 2.718 ||| 0-2 ||| 137 668016 +a ||| have all over ||| 1 0.0682544 1.49697e-06 1.31278e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| have allowed itself to proceed to other ||| 1 0.229811 1.49697e-06 1.6958e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| have allowed itself to proceed to ||| 1 0.229811 1.49697e-06 1.309e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| have allowed itself to proceed ||| 1 0.229811 1.49697e-06 1.47313e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| have allowed itself to ||| 1 0.229811 1.49697e-06 4.60353e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| have already been Members of ||| 1 0.0188479 1.49697e-06 8.06881e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| have already congratulated ||| 0.333333 0.165644 1.49697e-06 5.46104e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| have also been able to set up ||| 1 0.229811 1.49697e-06 1.17528e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| have also been able to set ||| 1 0.229811 1.49697e-06 3.44607e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| have also been able to ||| 0.166667 0.229811 1.49697e-06 5.89677e-11 2.718 ||| 0-4 ||| 6 668016 +a ||| have also been hearing from many ||| 0.166667 0.0435582 1.49697e-06 1.31047e-17 2.718 ||| 0-4 ||| 6 668016 +a ||| have also been hearing from ||| 0.166667 0.0435582 1.49697e-06 3.81727e-14 2.718 ||| 0-4 ||| 6 668016 +a ||| have an adverse effect on ||| 0.027027 0.0782999 1.49697e-06 3.90182e-15 2.718 ||| 0-4 ||| 37 668016 +a ||| have an impact on ||| 0.0060241 0.0782999 1.49697e-06 1.66165e-10 2.718 ||| 0-3 ||| 166 668016 +a ||| have any impact on ||| 0.125 0.0782999 1.49697e-06 5.65337e-11 2.718 ||| 0-3 ||| 8 668016 +a ||| have anything to do with ||| 0.0689655 0.229811 2.99394e-06 1.44398e-11 2.718 ||| 0-2 ||| 29 668016 +a ||| have anything to do ||| 0.0322581 0.229811 1.49697e-06 2.25815e-09 2.718 ||| 0-2 ||| 31 668016 +a ||| have anything to ||| 0.03125 0.229811 1.49697e-06 6.57338e-07 2.718 ||| 0-2 ||| 32 668016 +a ||| have arranged following this ceremony ||| 1 0.0720432 1.49697e-06 1.5754e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| have arranged following this ||| 1 0.0720432 1.49697e-06 7.16089e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| have arranged following ||| 1 0.0720432 1.49697e-06 1.10826e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| have arrived in ||| 0.05 0.0587624 1.49697e-06 1.19283e-08 2.718 ||| 0-2 ||| 20 668016 +a ||| have as much to ||| 0.5 0.229811 1.49697e-06 4.29099e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| have at present ||| 0.0227273 0.204175 1.49697e-06 1.48983e-07 2.718 ||| 0-1 ||| 44 668016 +a ||| have at your ||| 0.333333 0.204175 1.49697e-06 1.04166e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| have at ||| 0.0545455 0.204175 1.79636e-05 0.000407057 2.718 ||| 0-1 ||| 220 668016 +a ||| have available for ||| 0.166667 0.0683377 1.49697e-06 1.40187e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| have been able to ||| 0.00352113 0.229811 1.49697e-06 1.168e-08 2.718 ||| 0-3 ||| 284 668016 +a ||| have been accused against ||| 1 0.100079 1.49697e-06 1.09581e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| have been accused ||| 0.037037 0.100079 1.49697e-06 4.59266e-09 2.718 ||| 0-2 ||| 27 668016 +a ||| have been achieved to ||| 0.5 0.229811 1.49697e-06 2.34048e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| have been addressed to ||| 0.0909091 0.229811 1.49697e-06 7.49848e-10 2.718 ||| 0-3 ||| 11 668016 +a ||| have been affected by ||| 0.016129 0.0447582 1.49697e-06 1.13063e-10 2.718 ||| 0-2 0-3 ||| 62 668016 +a ||| have been arrested ||| 0.00806452 0.0414938 1.49697e-06 1.45767e-09 2.718 ||| 0-2 ||| 124 668016 +a ||| have been at ||| 0.02 0.204175 1.49697e-06 1.35924e-06 2.718 ||| 0-2 ||| 50 668016 +a ||| have been bearing in ||| 0.5 0.0587624 1.49697e-06 1.07016e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| have been carried out to ||| 0.5 0.229811 1.49697e-06 1.57918e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| have been compensated with ||| 1 0.0571592 1.49697e-06 1.46682e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| have been conveyed to ||| 0.166667 0.229811 1.49697e-06 6.57516e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| have been devised in ||| 0.5 0.0587624 1.49697e-06 2.06354e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| have been expressed to you ||| 0.5 0.229811 1.49697e-06 4.39038e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| have been expressed to ||| 0.333333 0.229811 1.49697e-06 1.3598e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| have been given ||| 0.00249377 0.0371011 1.49697e-06 4.22125e-08 2.718 ||| 0-2 ||| 401 668016 +a ||| have been here up until ||| 1 0.0268909 1.49697e-06 6.32754e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| have been in ||| 0.00660066 0.0587624 2.99394e-06 2.39946e-06 2.718 ||| 0-2 ||| 303 668016 +a ||| have been instructed ||| 0.333333 0.196787 1.49697e-06 1.78515e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| have been killed ||| 0.00558659 0.102431 1.49697e-06 6.45368e-09 2.718 ||| 0-2 ||| 179 668016 +a ||| have been known to ||| 0.125 0.229811 1.49697e-06 1.54027e-09 2.718 ||| 0-3 ||| 8 668016 +a ||| have been landing on ||| 0.333333 0.0782999 1.49697e-06 8.18101e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| have been left behind ||| 0.0714286 0.0923313 1.49697e-06 5.81185e-12 2.718 ||| 0-3 ||| 14 668016 +a ||| have been lodged against ||| 1 0.05146 1.49697e-06 3.73731e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| have been made on your side ||| 1 0.0782999 1.49697e-06 1.78019e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| have been made on your ||| 1 0.0782999 1.49697e-06 8.12131e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| have been made on ||| 0.0454545 0.0782999 1.49697e-06 3.17363e-09 2.718 ||| 0-3 ||| 22 668016 +a ||| have been made to ||| 0.0322581 0.229811 2.99394e-06 2.93056e-08 2.718 ||| 0-3 ||| 62 668016 +a ||| have been notified in ||| 1 0.105991 1.49697e-06 3.59022e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| have been notified ||| 0.0714286 0.105991 1.49697e-06 1.67732e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| have been possible for ||| 0.0909091 0.0683377 1.49697e-06 1.18036e-09 2.718 ||| 0-3 ||| 11 668016 +a ||| have been put in by ||| 0.5 0.0462795 1.49697e-06 2.17671e-11 2.718 ||| 0-3 0-4 ||| 2 668016 +a ||| have been put in place at ||| 0.5 0.204175 1.49697e-06 4.82788e-14 2.718 ||| 0-5 ||| 2 668016 +a ||| have been responsible for ||| 0.0322581 0.0683377 1.49697e-06 2.17648e-10 2.718 ||| 0-3 ||| 31 668016 +a ||| have been returned to ||| 0.166667 0.229811 1.49697e-06 1.86063e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| have been spoken to ||| 1 0.229811 1.49697e-06 3.1197e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| have been struck by ||| 0.0526316 0.0337966 1.49697e-06 8.41151e-12 2.718 ||| 0-3 ||| 19 668016 +a ||| have been taken at ||| 0.125 0.204175 1.49697e-06 1.23895e-09 2.718 ||| 0-3 ||| 8 668016 +a ||| have been to date , ||| 0.333333 0.229811 1.49697e-06 1.70504e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| have been to date ||| 0.0769231 0.229811 1.49697e-06 1.42975e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| have been to seek to ||| 1 0.229811 1.49697e-06 8.63954e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| have been to ||| 0.0263158 0.229811 2.99394e-06 1.39897e-05 2.718 ||| 0-2 ||| 76 668016 +a ||| have been used to produce it ||| 0.333333 0.229811 1.49697e-06 9.44537e-15 2.718 ||| 0-3 ||| 3 668016 +a ||| have been used to produce ||| 0.25 0.229811 1.49697e-06 5.3114e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| have been used to ||| 0.0217391 0.229811 1.49697e-06 6.00158e-09 2.718 ||| 0-3 ||| 46 668016 +a ||| have been wearing thin of late ||| 0.333333 0.0188479 1.49697e-06 2.04903e-21 2.718 ||| 0-4 ||| 3 668016 +a ||| have been wearing thin of ||| 0.333333 0.0188479 1.49697e-06 6.46381e-17 2.718 ||| 0-4 ||| 3 668016 +a ||| have brought about a ||| 0.0714286 0.0526361 1.49697e-06 7.48012e-10 2.718 ||| 0-2 ||| 14 668016 +a ||| have brought about ||| 0.0217391 0.0526361 1.49697e-06 1.68753e-08 2.718 ||| 0-2 ||| 46 668016 +a ||| have brought to bear ||| 0.166667 0.229811 1.49697e-06 1.75609e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| have brought to ||| 0.0689655 0.229811 2.99394e-06 1.17307e-06 2.718 ||| 0-2 ||| 29 668016 +a ||| have called on ||| 0.0666667 0.0782999 1.49697e-06 7.88534e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| have cause to be ||| 0.25 0.229811 1.49697e-06 1.37199e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| have cause to ||| 0.111111 0.229811 1.49697e-06 7.57049e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| have chosen to ||| 0.0168067 0.229811 2.99394e-06 1.00968e-07 2.718 ||| 0-2 ||| 119 668016 +a ||| have come down in ||| 1 0.0587624 1.49697e-06 4.2604e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| have come from people at all ||| 0.111111 0.204175 1.49697e-06 2.31563e-15 2.718 ||| 0-4 ||| 9 668016 +a ||| have come from people at ||| 0.111111 0.204175 1.49697e-06 4.90039e-13 2.718 ||| 0-4 ||| 9 668016 +a ||| have come to have great ||| 0.333333 0.229811 1.49697e-06 1.67241e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| have come to have ||| 0.25 0.229811 1.49697e-06 4.2555e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| have come to ||| 0.00595238 0.229811 2.99394e-06 3.55817e-06 2.718 ||| 0-2 ||| 336 668016 +a ||| have continued to hit ||| 0.166667 0.229811 1.49697e-06 4.48473e-12 2.718 ||| 0-2 ||| 6 668016 +a ||| have continued to ||| 0.0163934 0.229811 1.49697e-06 1.43282e-07 2.718 ||| 0-2 ||| 61 668016 +a ||| have contributed to ||| 0.00374532 0.229811 1.49697e-06 3.93816e-08 2.718 ||| 0-2 ||| 267 668016 +a ||| have decided to raise ||| 0.2 0.229811 1.49697e-06 1.88846e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| have decided to ||| 0.00520833 0.229811 1.49697e-06 2.86564e-07 2.718 ||| 0-2 ||| 192 668016 +a ||| have disturbed even ||| 0.5 0.0495435 1.49697e-06 4.20112e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| have dragged on ||| 0.25 0.0782999 1.49697e-06 2.26851e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| have encouraged ||| 0.0465116 0.0990338 2.99394e-06 2.23768e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| have enjoyed with ||| 0.111111 0.0571592 1.49697e-06 4.59241e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| have enough time to dedicate ||| 1 0.229811 1.49697e-06 1.24986e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| have enough time to ||| 0.0666667 0.229811 1.49697e-06 1.13624e-09 2.718 ||| 0-3 ||| 15 668016 +a ||| have entered into ||| 0.015873 0.107578 1.49697e-06 2.32472e-09 2.718 ||| 0-2 ||| 63 668016 +a ||| have even started ||| 0.166667 0.0495435 1.49697e-06 1.05028e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| have even ||| 0.0070922 0.0495435 1.49697e-06 2.33395e-05 2.718 ||| 0-1 ||| 141 668016 +a ||| have every ||| 0.00537634 0.0116434 1.49697e-06 2.95885e-06 2.718 ||| 0-1 ||| 186 668016 +a ||| have failed to ||| 0.00796813 0.229811 2.99394e-06 1.94395e-07 2.718 ||| 0-2 ||| 251 668016 +a ||| have followed up ||| 0.2 0.0195077 1.49697e-06 1.05122e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| have for ||| 0.0196078 0.0683377 8.98182e-06 0.000440701 2.718 ||| 0-1 ||| 306 668016 +a ||| have frequently found ||| 0.5 0.157626 1.49697e-06 9.5775e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| have frequently ||| 0.047619 0.157626 1.49697e-06 4.37729e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| have given to ||| 0.0204082 0.229811 1.49697e-06 2.87528e-06 2.718 ||| 0-2 ||| 49 668016 +a ||| have given ||| 0.00503145 0.0371011 5.98788e-06 1.26415e-05 2.718 ||| 0-1 ||| 795 668016 +a ||| have gone about ||| 0.5 0.0526361 1.49697e-06 3.77284e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| have gone by ||| 0.0606061 0.0337966 2.99394e-06 6.15979e-09 2.718 ||| 0-2 ||| 33 668016 +a ||| have got to know her as a ||| 1 0.229811 1.49697e-06 1.45538e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| have got to know her as ||| 1 0.229811 1.49697e-06 3.28336e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| have got to know her ||| 1 0.229811 1.49697e-06 3.2176e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| have got to know ||| 0.333333 0.229811 1.49697e-06 1.18251e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| have got to ||| 0.0277778 0.229811 1.49697e-06 4.58335e-07 2.718 ||| 0-2 ||| 36 668016 +a ||| have gradually merged ||| 1 0.11393 1.49697e-06 5.20754e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| have gradually ||| 0.0714286 0.11393 1.49697e-06 2.89308e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| have granted me to ||| 1 0.229811 1.49697e-06 2.04324e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| have great significance for ||| 0.5 0.0683377 1.49697e-06 3.55051e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| have had enough of ||| 0.0322581 0.0188479 1.49697e-06 5.86562e-11 2.718 ||| 0-3 ||| 31 668016 +a ||| have had some very serious clashes with ||| 1 0.0571592 1.49697e-06 1.92511e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| have had to say ||| 0.0666667 0.229811 1.49697e-06 4.01918e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| have had to ||| 0.00722892 0.229811 4.49091e-06 4.20504e-06 2.718 ||| 0-2 ||| 415 668016 +a ||| have had with ||| 0.0163934 0.0571592 1.49697e-06 2.00409e-07 2.718 ||| 0-2 ||| 61 668016 +a ||| have heard this afternoon for ||| 1 0.0683377 1.49697e-06 2.1876e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| have helped it to ||| 1 0.229811 1.49697e-06 1.47517e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| have helped the ||| 0.0909091 0.1991 1.49697e-06 3.85326e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| have helped to shape ||| 1 0.229811 1.49697e-06 5.01865e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| have helped to ||| 0.00806452 0.229811 1.49697e-06 8.29528e-08 2.718 ||| 0-2 ||| 124 668016 +a ||| have helped ||| 0.0035461 0.1991 1.49697e-06 6.2765e-06 2.718 ||| 0-1 ||| 282 668016 +a ||| have in Europe ||| 0.0238095 0.0587624 1.49697e-06 3.63599e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| have in making ||| 1 0.0587624 1.49697e-06 2.76436e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| have in mind for ||| 0.142857 0.0683377 1.49697e-06 2.37617e-09 2.718 ||| 0-3 ||| 7 668016 +a ||| have in mind in ||| 0.2 0.0587624 1.49697e-06 3.87441e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| have in mind situations ||| 1 0.0587624 1.49697e-06 6.19051e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| have in mind ||| 0.0159574 0.0587624 4.49091e-06 1.81009e-07 2.718 ||| 0-1 ||| 188 668016 +a ||| have in this ||| 0.0208333 0.0587624 1.49697e-06 4.643e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| have in ||| 0.0242718 0.0587624 3.74243e-05 0.000718575 2.718 ||| 0-1 ||| 1030 668016 +a ||| have invited ||| 0.0526316 0.245853 1.49697e-06 4.53037e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| have it , in ||| 1 0.0587624 1.49697e-06 1.5239e-06 2.718 ||| 0-3 ||| 1 668016 +a ||| have learned to look at everything in ||| 1 0.204175 1.49697e-06 3.29833e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| have learned to look at everything ||| 1 0.204175 1.49697e-06 1.54095e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| have learned to look at ||| 1 0.204175 1.49697e-06 1.6659e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| have learned to think ||| 0.333333 0.229811 1.49697e-06 2.53195e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| have learned to ||| 0.0909091 0.229811 1.49697e-06 6.61947e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| have led to ||| 0.00265957 0.229811 1.49697e-06 3.846e-07 2.718 ||| 0-2 ||| 376 668016 +a ||| have lost to ||| 1 0.229811 1.49697e-06 2.38385e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| have made as rapporteurs to ||| 1 0.229811 1.49697e-06 7.07495e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| have made in their ||| 0.5 0.0587624 1.49697e-06 1.74476e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| have made in ||| 0.04 0.0587624 4.49091e-06 1.50527e-06 2.718 ||| 0-2 ||| 75 668016 +a ||| have made redundant ||| 1 0.0502646 1.49697e-06 8.69353e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| have made to ||| 0.0266667 0.229811 2.99394e-06 8.77624e-06 2.718 ||| 0-2 ||| 75 668016 +a ||| have misunderstood me on ||| 1 0.0782999 1.49697e-06 1.0927e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| have needed to urge them ||| 1 0.229811 1.49697e-06 4.9206e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| have needed to urge ||| 1 0.229811 1.49697e-06 1.8344e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| have needed to ||| 0.25 0.229811 1.49697e-06 5.60979e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| have no doubt that ||| 0.00649351 0.0008521 1.49697e-06 5.80902e-13 2.718 ||| 0-3 ||| 154 668016 +a ||| have not asked to ||| 1 0.229811 1.49697e-06 1.08134e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| have not been granted ||| 0.0769231 0.0210892 1.49697e-06 9.83055e-12 2.718 ||| 0-3 ||| 13 668016 +a ||| have not paid sufficient attention in ||| 1 0.0587624 1.49697e-06 4.19343e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| have not reached full legal ||| 1 0.14487 1.49697e-06 1.1939e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| have not reached full ||| 1 0.14487 1.49697e-06 9.21223e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| have not reached ||| 0.0526316 0.14487 1.49697e-06 5.02029e-08 2.718 ||| 0-2 ||| 19 668016 +a ||| have nothing against ||| 0.0185185 0.05146 1.49697e-06 5.78576e-09 2.718 ||| 0-2 ||| 54 668016 +a ||| have nothing to say ||| 0.142857 0.229811 1.49697e-06 7.45211e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| have nothing to ||| 0.00673401 0.229811 2.99394e-06 7.79673e-07 2.718 ||| 0-2 ||| 297 668016 +a ||| have occurred in ||| 0.012987 0.0587624 1.49697e-06 3.05394e-08 2.718 ||| 0-2 ||| 77 668016 +a ||| have occurred there over ||| 1 0.0682544 1.49697e-06 3.61923e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| have of favouring ||| 1 0.0188479 1.49697e-06 2.47627e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| have of ||| 0.0396825 0.0188479 7.48485e-06 0.000353753 2.718 ||| 0-1 ||| 126 668016 +a ||| have often ||| 0.00833333 0.288159 1.49697e-06 7.2047e-05 2.718 ||| 0-1 ||| 120 668016 +a ||| have on occasion ||| 0.1 0.0782999 1.49697e-06 2.2186e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| have on this ||| 0.0833333 0.0782999 1.49697e-06 2.93155e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| have on ||| 0.0254237 0.0782999 1.79636e-05 0.000453702 2.718 ||| 0-1 ||| 472 668016 +a ||| have only to remember ||| 1 0.229811 1.49697e-06 1.7441e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| have only to ||| 0.5 0.229811 1.49697e-06 4.66337e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| have over ||| 0.0263158 0.0682544 1.49697e-06 2.77814e-05 2.718 ||| 0-1 ||| 38 668016 +a ||| have prepared to ||| 0.5 0.229811 1.49697e-06 3.63233e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| have proved to be ||| 0.027027 0.229811 2.99394e-06 3.14336e-09 2.718 ||| 0-2 ||| 74 668016 +a ||| have proved to ||| 0.0224719 0.229811 2.99394e-06 1.73447e-07 2.718 ||| 0-2 ||| 89 668016 +a ||| have provided ||| 0.00487805 0.0016615 1.49697e-06 1.85377e-07 2.718 ||| 0-1 ||| 205 668016 +a ||| have put ||| 0.00275482 0.0015876 1.49697e-06 4.91548e-07 2.718 ||| 0-1 ||| 363 668016 +a ||| have reached ||| 0.00821355 0.14487 5.98788e-06 1.47046e-05 2.718 ||| 0-1 ||| 487 668016 +a ||| have responded as well to ||| 1 0.229811 1.49697e-06 2.16919e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| have resulted in successive downturns ||| 0.333333 0.0587624 1.49697e-06 1.83955e-20 2.718 ||| 0-2 ||| 3 668016 +a ||| have resulted in successive ||| 0.333333 0.0587624 1.49697e-06 4.59888e-14 2.718 ||| 0-2 ||| 3 668016 +a ||| have resulted in ||| 0.0060241 0.0587624 1.49697e-06 1.83955e-08 2.718 ||| 0-2 ||| 166 668016 +a ||| have sat up at ||| 0.166667 0.204175 1.49697e-06 7.49664e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| have seen at work ||| 1 0.204175 1.49697e-06 5.42389e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| have seen at ||| 1 0.204175 1.49697e-06 8.56854e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| have seen from ||| 0.0833333 0.0435582 1.49697e-06 1.81233e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| have seen in ||| 0.012987 0.0587624 1.49697e-06 1.5126e-07 2.718 ||| 0-2 ||| 77 668016 +a ||| have someone ||| 0.0666667 0.0328972 1.49697e-06 9.60372e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| have spoken to ||| 0.0666667 0.229811 1.49697e-06 9.34267e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| have stood ||| 0.0232558 0.003517 1.49697e-06 3.22915e-08 2.718 ||| 0-1 ||| 43 668016 +a ||| have taken up ||| 0.0123457 0.0195077 1.49697e-06 1.33825e-08 2.718 ||| 0-2 ||| 81 668016 +a ||| have talked about ||| 0.00847458 0.0526361 1.49697e-06 6.26798e-10 2.718 ||| 0-2 ||| 118 668016 +a ||| have taxes to ||| 1 0.229811 1.49697e-06 6.95463e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| have the benefit of ||| 0.0833333 0.0257389 1.49697e-06 6.00707e-09 2.718 ||| 0-2 0-3 ||| 12 668016 +a ||| have the charge laid at ||| 1 0.204175 1.49697e-06 1.37285e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| have the courage to make reforms you ||| 1 0.229811 1.49697e-06 1.92369e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| have the courage to make reforms ||| 1 0.229811 1.49697e-06 5.95808e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| have the courage to make ||| 0.0714286 0.229811 1.49697e-06 3.84392e-12 2.718 ||| 0-3 ||| 14 668016 +a ||| have the courage to ||| 0.00314465 0.229811 1.49697e-06 2.21195e-09 2.718 ||| 0-3 ||| 318 668016 +a ||| have the effect of ||| 0.0166667 0.0188479 1.49697e-06 7.24497e-09 2.718 ||| 0-3 ||| 60 668016 +a ||| have the greatest desire to ||| 1 0.229811 1.49697e-06 2.21483e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| have the objective of ||| 0.142857 0.0188479 1.49697e-06 1.4529e-09 2.718 ||| 0-3 ||| 7 668016 +a ||| have the possibility to ||| 0.047619 0.229811 1.49697e-06 2.20166e-08 2.718 ||| 0-3 ||| 21 668016 +a ||| have the right to ||| 0.00257069 0.229811 2.99394e-06 1.6587e-07 2.718 ||| 0-3 ||| 778 668016 +a ||| have the use of ||| 0.5 0.0188479 1.49697e-06 1.05591e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| have the ||| 0.000268456 0.0004654 2.99394e-06 1.83284e-05 2.718 ||| 0-1 ||| 7450 668016 +a ||| have their individual ||| 1 0.0004527 1.49697e-06 6.95049e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| have their part to play in ||| 0.25 0.0587624 1.49697e-06 2.27646e-14 2.718 ||| 0-5 ||| 4 668016 +a ||| have their ||| 0.00141844 0.0004527 1.49697e-06 4.91548e-07 2.718 ||| 0-1 ||| 705 668016 +a ||| have them peeled in ||| 1 0.0587624 1.49697e-06 1.34925e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| have this put to ||| 1 0.229811 1.49697e-06 2.98477e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| have to allow ||| 0.0909091 0.229811 1.49697e-06 1.01638e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| have to ask the people living ||| 0.5 0.229811 1.49697e-06 2.60858e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| have to ask the people ||| 0.5 0.229811 1.49697e-06 3.11287e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| have to ask the ||| 0.0555556 0.229811 1.49697e-06 3.53654e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| have to ask ||| 0.0125 0.229811 1.49697e-06 5.76061e-07 2.718 ||| 0-1 ||| 80 668016 +a ||| have to be adopted ||| 0.0555556 0.229811 1.49697e-06 1.5489e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| have to be applied , inter alia ||| 1 0.229811 1.49697e-06 1.75804e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| have to be applied , inter ||| 1 0.229811 1.49697e-06 1.05906e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| have to be applied , ||| 0.333333 0.229811 1.49697e-06 9.80613e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| have to be applied ||| 0.037037 0.229811 1.49697e-06 8.22285e-09 2.718 ||| 0-1 ||| 27 668016 +a ||| have to be drafted ||| 0.25 0.229811 1.49697e-06 2.13354e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| have to be effected ||| 1 0.229811 1.49697e-06 3.26484e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| have to be endorsed ||| 0.333333 0.229811 1.49697e-06 6.3019e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| have to be hurried ||| 1 0.229811 1.49697e-06 5.31486e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| have to be increased to ||| 1 0.229811 1.49697e-06 3.35311e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| have to be known ||| 0.5 0.229811 1.49697e-06 8.35951e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| have to be made ||| 0.00952381 0.229811 1.49697e-06 1.59051e-07 2.718 ||| 0-1 ||| 105 668016 +a ||| have to be met ||| 0.025 0.229811 1.49697e-06 5.82357e-09 2.718 ||| 0-1 ||| 40 668016 +a ||| have to be reopened ||| 1 0.229811 1.49697e-06 1.89816e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| have to be resumed very ||| 0.333333 0.229811 1.49697e-06 1.61154e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| have to be resumed ||| 0.333333 0.229811 1.49697e-06 4.63152e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| have to be set off ||| 1 0.229811 1.49697e-06 1.80592e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| have to be set ||| 0.0714286 0.229811 1.49697e-06 4.43715e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| have to be taken on ||| 0.2 0.0782999 1.49697e-06 6.65967e-10 2.718 ||| 0-4 ||| 5 668016 +a ||| have to be taken ||| 0.00446429 0.229811 1.49697e-06 6.92071e-08 2.718 ||| 0-1 ||| 224 668016 +a ||| have to be ||| 0.011467 0.229811 4.34121e-05 7.59266e-05 2.718 ||| 0-1 ||| 2529 668016 +a ||| have to bring these into line with ||| 0.333333 0.229811 1.49697e-06 2.61429e-18 2.718 ||| 0-1 ||| 3 668016 +a ||| have to bring these into line ||| 0.333333 0.229811 1.49697e-06 4.08834e-16 2.718 ||| 0-1 ||| 3 668016 +a ||| have to bring these into ||| 0.333333 0.229811 1.49697e-06 1.3887e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| have to bring these ||| 0.333333 0.229811 1.49697e-06 1.35259e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| have to bring ||| 0.0666667 0.229811 1.49697e-06 1.3042e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| have to deal with this ||| 0.0769231 0.0571592 1.49697e-06 4.86762e-11 2.718 ||| 0-3 ||| 13 668016 +a ||| have to deal with ||| 0.0217391 0.0571592 4.49091e-06 7.53339e-09 2.718 ||| 0-3 ||| 138 668016 +a ||| have to deal ||| 0.0175439 0.229811 1.49697e-06 1.77888e-06 2.718 ||| 0-1 ||| 57 668016 +a ||| have to do with ||| 0.016129 0.0571592 2.99394e-06 6.09502e-08 2.718 ||| 0-3 ||| 124 668016 +a ||| have to do ||| 0.0103093 0.229811 5.98788e-06 1.43923e-05 2.718 ||| 0-1 ||| 388 668016 +a ||| have to draw ||| 0.05 0.229811 1.49697e-06 4.96041e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| have to drive home ||| 1 0.229811 1.49697e-06 1.28422e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| have to drive ||| 0.4 0.229811 2.99394e-06 1.26524e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| have to find ||| 0.011236 0.229811 1.49697e-06 1.3947e-06 2.718 ||| 0-1 ||| 89 668016 +a ||| have to give up ||| 0.0555556 0.229811 1.49697e-06 8.65878e-09 2.718 ||| 0-1 ||| 18 668016 +a ||| have to give ||| 0.0131579 0.229811 1.49697e-06 2.53886e-06 2.718 ||| 0-1 ||| 76 668016 +a ||| have to go ||| 0.00970874 0.229811 1.49697e-06 2.45004e-06 2.718 ||| 0-1 ||| 103 668016 +a ||| have to have ||| 0.00699301 0.229811 1.49697e-06 5.0106e-05 2.718 ||| 0-1 ||| 143 668016 +a ||| have to highlight just how difficulties with ||| 1 0.229811 1.49697e-06 4.644e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| have to highlight just how difficulties ||| 1 0.229811 1.49697e-06 7.26249e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| have to highlight just how ||| 1 0.229811 1.49697e-06 3.54268e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| have to highlight just ||| 1 0.229811 1.49697e-06 9.88471e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| have to highlight ||| 0.25 0.229811 1.49697e-06 7.83443e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| have to hold ||| 0.0714286 0.229811 1.49697e-06 7.29817e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| have to inform ||| 0.142857 0.130026 1.49697e-06 4.42307e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| have to let ||| 0.166667 0.229811 1.49697e-06 1.71101e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| have to make do with ||| 0.166667 0.0571592 1.49697e-06 1.05919e-10 2.718 ||| 0-4 ||| 6 668016 +a ||| have to make ||| 0.0121951 0.229811 4.49091e-06 7.28058e-06 2.718 ||| 0-1 ||| 246 668016 +a ||| have to move ||| 0.030303 0.229811 1.49697e-06 6.4058e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| have to pay ||| 0.00420168 0.229811 1.49697e-06 5.99942e-07 2.718 ||| 0-1 ||| 238 668016 +a ||| have to please ||| 0.25 0.229811 1.49697e-06 3.7245e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| have to put up ||| 0.0833333 0.229811 1.49697e-06 1.57544e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| have to put ||| 0.0204082 0.229811 1.49697e-06 4.61938e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| have to raise ||| 0.1 0.229811 1.49697e-06 2.7609e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| have to reflect ||| 0.047619 0.229811 1.49697e-06 1.43282e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| have to respect ||| 0.0285714 0.229811 1.49697e-06 1.81239e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| have to revoke the existing bans ||| 1 0.229811 1.49697e-06 5.10744e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| have to revoke the existing ||| 1 0.229811 1.49697e-06 1.41873e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| have to revoke the ||| 1 0.229811 1.49697e-06 1.80042e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| have to revoke ||| 1 0.229811 1.49697e-06 2.93268e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| have to say , ||| 0.0192308 0.229811 1.49697e-06 4.77539e-07 2.718 ||| 0-1 ||| 52 668016 +a ||| have to say either that we want ||| 1 0.229811 1.49697e-06 3.09516e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| have to say either that we ||| 1 0.229811 1.49697e-06 6.62067e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| have to say either that ||| 1 0.229811 1.49697e-06 5.83201e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| have to say either ||| 1 0.229811 1.49697e-06 3.46697e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| have to say that ||| 0.00564972 0.229811 1.49697e-06 6.73597e-08 2.718 ||| 0-1 ||| 177 668016 +a ||| have to say ||| 0.01875 0.229811 1.34727e-05 4.00436e-06 2.718 ||| 0-1 ||| 480 668016 +a ||| have to tell ||| 0.0384615 0.229811 1.49697e-06 4.11413e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| have to ||| 0.0341369 0.229811 0.000555376 0.00418954 2.718 ||| 0-1 ||| 10868 668016 +a ||| have towards ensuring ||| 1 0.155507 1.49697e-06 4.687e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| have towards ||| 0.1 0.155507 1.49697e-06 4.03356e-05 2.718 ||| 0-1 ||| 10 668016 +a ||| have tried to ||| 0.00460829 0.229811 1.49697e-06 1.67163e-07 2.718 ||| 0-2 ||| 217 668016 +a ||| have turned out to ||| 0.0625 0.229811 1.49697e-06 9.00271e-10 2.718 ||| 0-3 ||| 16 668016 +a ||| have us ||| 0.0263158 0.0071317 2.99394e-06 6.17843e-06 2.718 ||| 0-1 ||| 76 668016 +a ||| have used in ||| 0.285714 0.0587624 2.99394e-06 3.08269e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| have very much sympathy for ||| 1 0.0683377 1.49697e-06 2.38559e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| have we had access to ||| 1 0.229811 1.49697e-06 4.10537e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| have with ||| 0.0218579 0.0571592 5.98788e-06 0.00019967 2.718 ||| 0-1 ||| 183 668016 +a ||| have yet to ||| 0.00980392 0.229811 2.99394e-06 1.10813e-06 2.718 ||| 0-2 ||| 204 668016 +a ||| havens to ||| 0.333333 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| having , in ||| 0.142857 0.0587624 1.49697e-06 2.74352e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| having a direct impact on ||| 0.0909091 0.0782999 1.49697e-06 2.61555e-15 2.718 ||| 0-4 ||| 11 668016 +a ||| having a positive effect on ||| 0.142857 0.0782999 1.49697e-06 1.95459e-14 2.718 ||| 0-4 ||| 7 668016 +a ||| having a ||| 0.000716332 0.005163 1.49697e-06 3.59925e-06 2.718 ||| 0-0 ||| 1396 668016 +a ||| having an ||| 0.00380228 0.005163 1.49697e-06 3.6091e-07 2.718 ||| 0-0 ||| 263 668016 +a ||| having entered ||| 0.333333 0.005163 1.49697e-06 2.5984e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| having gone to ||| 0.25 0.229811 1.49697e-06 8.39657e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| having in ||| 0.08 0.0319627 2.99394e-06 4.8787e-06 2.718 ||| 0-0 0-1 ||| 25 668016 +a ||| having made ||| 0.0060241 0.005163 1.49697e-06 1.70098e-07 2.718 ||| 0-0 ||| 166 668016 +a ||| having put up ||| 0.25 0.0195077 1.49697e-06 5.18275e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| having regard to ||| 0.0104167 0.229811 1.49697e-06 9.13294e-08 2.718 ||| 0-2 ||| 96 668016 +a ||| having the ||| 0.00183486 0.0004654 1.49697e-06 5.86794e-07 2.718 ||| 0-1 ||| 545 668016 +a ||| having to deal with ||| 0.03125 0.0571592 1.49697e-06 2.41186e-10 2.718 ||| 0-3 ||| 32 668016 +a ||| having to face ||| 0.04 0.229811 1.49697e-06 2.244e-08 2.718 ||| 0-1 ||| 25 668016 +a ||| having to foot ||| 0.166667 0.229811 1.49697e-06 2.99111e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| having to function ||| 0.5 0.229811 1.49697e-06 3.32644e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| having to hold in a balance ||| 1 0.0587624 1.49697e-06 8.52372e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| having to hold in a ||| 1 0.0587624 1.49697e-06 1.57847e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| having to hold in ||| 1 0.0587624 1.49697e-06 3.56106e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| having to pay ||| 0.0333333 0.229811 2.99394e-06 1.92075e-08 2.718 ||| 0-1 ||| 60 668016 +a ||| having to tackle ||| 0.333333 0.229811 1.49697e-06 4.86894e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| having to wait until the ||| 0.5 0.229811 1.49697e-06 1.08053e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| having to wait until ||| 0.166667 0.229811 1.49697e-06 1.76006e-13 2.718 ||| 0-1 ||| 6 668016 +a ||| having to wait ||| 0.0714286 0.229811 1.49697e-06 3.62152e-09 2.718 ||| 0-1 ||| 14 668016 +a ||| having to ||| 0.0177515 0.229811 3.14364e-05 0.00013413 2.718 ||| 0-1 ||| 1183 668016 +a ||| having too ||| 0.5 0.005163 1.49697e-06 1.10513e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| having trouble telling you ||| 0.0666667 0.143208 1.49697e-06 2.62585e-15 2.718 ||| 0-2 ||| 15 668016 +a ||| having trouble telling ||| 0.0666667 0.143208 1.49697e-06 8.13283e-13 2.718 ||| 0-2 ||| 15 668016 +a ||| having ||| 0.0025181 0.005163 4.7903e-05 8.12e-05 2.718 ||| 0-0 ||| 12708 668016 +a ||| he considers it appropriate to set up ||| 1 0.229811 1.49697e-06 2.20225e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| he considers it appropriate to set ||| 1 0.229811 1.49697e-06 6.45727e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| he considers it appropriate to ||| 1 0.229811 1.49697e-06 1.10494e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| he eventually developed ||| 0.2 0.0344828 1.49697e-06 4.10688e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| he eventually ||| 0.166667 0.0344828 1.49697e-06 5.978e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| he goes to ||| 0.2 0.229811 1.49697e-06 4.23406e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| he has , in point ||| 1 0.0587624 1.49697e-06 2.81575e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| he has , in ||| 0.333333 0.0587624 1.49697e-06 3.21873e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| he has in mind ||| 0.333333 0.0587624 1.49697e-06 6.79888e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| he has in ||| 0.0909091 0.0587624 1.49697e-06 2.69904e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| he has on ||| 1 0.0782999 1.49697e-06 1.70415e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| he has taken to this ||| 0.25 0.229811 1.49697e-06 9.26802e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| he has taken to ||| 0.1 0.229811 1.49697e-06 1.43437e-09 2.718 ||| 0-3 ||| 10 668016 +a ||| he has to ||| 0.0114943 0.229811 1.49697e-06 1.57363e-06 2.718 ||| 0-2 ||| 87 668016 +a ||| he has used to ||| 0.5 0.229811 1.49697e-06 6.75089e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| he is exposed to . he is ||| 1 0.229811 1.49697e-06 1.37324e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| he is exposed to . he ||| 1 0.229811 1.49697e-06 4.38159e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| he is exposed to . ||| 1 0.229811 1.49697e-06 5.02073e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| he is exposed to ||| 1 0.229811 1.49697e-06 1.65755e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| he is on the ||| 0.333333 0.0782999 1.49697e-06 6.36996e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| he is on ||| 0.0588235 0.0782999 1.49697e-06 1.03759e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| he is to ||| 0.0731707 0.229811 4.49091e-06 9.58123e-06 2.718 ||| 0-2 ||| 41 668016 +a ||| he joined us at ||| 1 0.204175 1.49697e-06 1.07867e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| he killed people ||| 0.2 0.102431 1.49697e-06 1.24133e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| he killed ||| 0.142857 0.102431 1.49697e-06 1.41028e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| he laid much emphasis on ||| 1 0.0782999 1.49697e-06 1.85082e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| he longs to cry ||| 0.2 0.229811 1.49697e-06 5.25818e-16 2.718 ||| 0-2 ||| 5 668016 +a ||| he longs to ||| 0.2 0.229811 1.49697e-06 1.22283e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| he made to ||| 0.105263 0.229811 2.99394e-06 6.40398e-07 2.718 ||| 0-2 ||| 19 668016 +a ||| he needs to ||| 0.0322581 0.229811 1.49697e-06 6.06219e-08 2.718 ||| 0-2 ||| 31 668016 +a ||| he only ever makes love to children ||| 1 0.229811 1.49697e-06 6.1508e-24 2.718 ||| 0-5 ||| 1 668016 +a ||| he only ever makes love to ||| 1 0.229811 1.49697e-06 8.2561e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| he ought to ||| 0.0666667 0.229811 1.49697e-06 2.56183e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| he pleases with ||| 0.25 0.0571592 1.49697e-06 2.62257e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| he probably has to ||| 1 0.229811 1.49697e-06 8.78087e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| he puts to ||| 0.333333 0.229811 1.49697e-06 1.01189e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| he refused to ||| 0.1 0.229811 1.49697e-06 3.63793e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| he thought of ||| 0.333333 0.0188479 1.49697e-06 2.14507e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| he undergo ||| 1 0.227957 1.49697e-06 8.44774e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| he was going to make at ||| 1 0.204175 1.49697e-06 1.22978e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| he was not going to attend ||| 1 0.229811 1.49697e-06 6.35246e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| he was not going to ||| 1 0.229811 1.49697e-06 2.79844e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| he was talking about ||| 0.0666667 0.0526361 1.49697e-06 1.50735e-12 2.718 ||| 0-3 ||| 15 668016 +a ||| he was willing to kill himself ||| 1 0.229811 1.49697e-06 1.15358e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| he was willing to kill ||| 1 0.229811 1.49697e-06 1.55678e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| he was willing to ||| 0.1 0.229811 1.49697e-06 3.62042e-11 2.718 ||| 0-3 ||| 10 668016 +a ||| he will be on ||| 0.5 0.0782999 1.49697e-06 5.19058e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| he will ||| 0.0078534 0.0561595 4.49091e-06 1.22908e-05 2.718 ||| 0-1 ||| 382 668016 +a ||| he work of ||| 0.5 0.0188479 1.49697e-06 1.63397e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| he ||| 7.43218e-05 5.63e-05 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 13455 668016 +a ||| head in ||| 0.0357143 0.0587624 4.49091e-06 4.34396e-06 2.718 ||| 0-1 ||| 84 668016 +a ||| head off ||| 0.0454545 0.0893962 1.49697e-06 5.53023e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| head to ||| 0.0588235 0.229811 2.99394e-06 2.53268e-05 2.718 ||| 0-1 ||| 34 668016 +a ||| headed by ||| 0.00436681 0.0337966 1.49697e-06 6.49973e-08 2.718 ||| 0-1 ||| 229 668016 +a ||| heading for ||| 0.0105263 0.0683377 1.49697e-06 1.20495e-06 2.718 ||| 0-1 ||| 95 668016 +a ||| heading in ||| 0.0114943 0.0587624 1.49697e-06 1.9647e-06 2.718 ||| 0-1 ||| 87 668016 +a ||| heading towards the elections in 2009 and ||| 0.5 0.0587624 1.49697e-06 8.97976e-23 2.718 ||| 0-4 ||| 2 668016 +a ||| heading towards the elections in 2009 ||| 0.5 0.0587624 1.49697e-06 7.16895e-21 2.718 ||| 0-4 ||| 2 668016 +a ||| heading towards the elections in ||| 0.5 0.0587624 1.49697e-06 5.51458e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| headlong into ||| 0.0714286 0.107578 1.49697e-06 6.68173e-09 2.718 ||| 0-1 ||| 14 668016 +a ||| heads for the ||| 1 0.0683377 1.49697e-06 6.58299e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| heads for ||| 0.111111 0.0683377 1.49697e-06 1.07229e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| heads in ||| 0.0273973 0.0587624 2.99394e-06 1.7484e-06 2.718 ||| 0-1 ||| 73 668016 +a ||| heads of ||| 0.0016129 0.0188479 1.49697e-06 8.60734e-07 2.718 ||| 0-1 ||| 620 668016 +a ||| health and safety ||| 0.000649351 0.0015873 1.49697e-06 8.12931e-12 2.718 ||| 0-1 ||| 1540 668016 +a ||| health and ||| 0.000222717 0.0015873 1.49697e-06 1.60341e-07 2.718 ||| 0-1 ||| 4490 668016 +a ||| health of the ||| 0.00460829 0.0188479 1.49697e-06 1.50899e-07 2.718 ||| 0-1 ||| 217 668016 +a ||| health of ||| 0.00100908 0.0188479 1.49697e-06 2.45797e-06 2.718 ||| 0-1 ||| 991 668016 +a ||| health to ||| 0.016129 0.229811 1.49697e-06 2.91101e-05 2.718 ||| 0-1 ||| 62 668016 +a ||| healthier in the ||| 1 0.0587624 1.49697e-06 4.05743e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| healthier in ||| 1 0.0587624 1.49697e-06 6.60907e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| hear from ||| 0.00606061 0.0435582 1.49697e-06 7.30678e-07 2.718 ||| 0-1 ||| 165 668016 +a ||| hear in ||| 0.037037 0.0587624 1.49697e-06 6.09837e-06 2.718 ||| 0-1 ||| 27 668016 +a ||| heard this afternoon for ||| 1 0.0683377 1.49697e-06 1.82912e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| hearing about ||| 0.025641 0.0526361 1.49697e-06 1.32534e-07 2.718 ||| 0-1 ||| 39 668016 +a ||| hearing for ||| 0.0357143 0.0683377 1.49697e-06 9.69116e-07 2.718 ||| 0-1 ||| 28 668016 +a ||| hearing from many ||| 0.166667 0.0435582 1.49697e-06 6.49965e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| hearing from ||| 0.037037 0.0435582 1.49697e-06 1.89328e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| hearings of ||| 0.0181818 0.0188479 1.49697e-06 1.27188e-07 2.718 ||| 0-1 ||| 55 668016 +a ||| heart of ||| 0.00191083 0.0188479 4.49091e-06 2.38403e-06 2.718 ||| 0-1 ||| 1570 668016 +a ||| heartily congratulated ||| 1 0.165644 1.49697e-06 2.8594e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| hearty congratulations to ||| 0.2 0.229811 1.49697e-06 2.5502e-12 2.718 ||| 0-2 ||| 5 668016 +a ||| heavens – to ||| 1 0.229811 1.49697e-06 5.50674e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| heavily on ||| 0.0217391 0.0782999 2.99394e-06 8.34583e-07 2.718 ||| 0-1 ||| 92 668016 +a ||| heavy goods vehicles over ||| 1 0.0682544 1.49697e-06 3.46786e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| heavy on ||| 0.142857 0.0782999 1.49697e-06 6.67667e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| heavy ||| 0.000556793 0.0005071 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1796 668016 +a ||| heed the advice of ||| 0.5 0.0188479 1.49697e-06 1.40549e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| heed to ||| 0.0185185 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-1 ||| 54 668016 +a ||| heel for ||| 0.5 0.0683377 1.49697e-06 2.57939e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| height of the ||| 0.025641 0.0188479 1.49697e-06 9.07939e-09 2.718 ||| 0-1 ||| 39 668016 +a ||| height of ||| 0.0224719 0.0188479 2.99394e-06 1.47893e-07 2.718 ||| 0-1 ||| 89 668016 +a ||| held and was won by ||| 0.5 0.0337966 1.49697e-06 1.83676e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| held at ||| 0.00584795 0.204175 1.49697e-06 8.68243e-06 2.718 ||| 0-1 ||| 171 668016 +a ||| held by ||| 0.00761421 0.0337966 4.49091e-06 2.09884e-06 2.718 ||| 0-1 ||| 394 668016 +a ||| held in Guantánamo together ||| 1 0.0587624 1.49697e-06 1.28876e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| held in Guantánamo ||| 0.333333 0.0587624 1.49697e-06 2.14579e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| held in ||| 0.00630252 0.0587624 1.34727e-05 1.5327e-05 2.718 ||| 0-1 ||| 1428 668016 +a ||| held on to ||| 0.0714286 0.229811 1.49697e-06 5.97921e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| held over to ||| 0.1 0.229811 1.49697e-06 4.30278e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| held over ||| 0.027027 0.0682544 1.49697e-06 5.92572e-07 2.718 ||| 0-1 ||| 37 668016 +a ||| held to ransom by ||| 0.0769231 0.229811 1.49697e-06 1.1729e-12 2.718 ||| 0-1 ||| 13 668016 +a ||| held to ransom ||| 0.0555556 0.229811 1.49697e-06 2.23405e-10 2.718 ||| 0-1 ||| 18 668016 +a ||| held to ||| 0.024 0.229811 4.49091e-06 8.93619e-05 2.718 ||| 0-1 ||| 125 668016 +a ||| held up to the ||| 0.333333 0.229811 1.49697e-06 1.87103e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| held up to ||| 0.181818 0.229811 2.99394e-06 3.04769e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| hell of ||| 0.0909091 0.0188479 1.49697e-06 1.39019e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| help address ||| 0.0909091 0.259976 1.49697e-06 5.01848e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| help available ||| 0.111111 0.259976 1.49697e-06 2.09224e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| help but raise ||| 0.5 0.259976 1.49697e-06 2.96216e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| help but ||| 0.0421053 0.259976 5.98788e-06 4.49493e-06 2.718 ||| 0-0 ||| 95 668016 +a ||| help change things for ||| 1 0.0683377 1.49697e-06 3.52348e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| help deliver ||| 0.0833333 0.259976 1.49697e-06 2.44018e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| help develop ||| 0.025641 0.259976 1.49697e-06 4.02531e-07 2.718 ||| 0-0 ||| 39 668016 +a ||| help either ||| 0.0625 0.259976 1.49697e-06 5.69463e-06 2.718 ||| 0-0 ||| 16 668016 +a ||| help feeling that ||| 0.0833333 0.259976 1.49697e-06 4.01626e-09 2.718 ||| 0-0 ||| 12 668016 +a ||| help feeling ||| 0.0454545 0.259976 1.49697e-06 2.38756e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| help fill ||| 0.5 0.259976 1.49697e-06 5.65648e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| help her ||| 0.1 0.259976 1.49697e-06 1.78968e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| help him or ||| 1 0.259976 1.49697e-06 2.41086e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| help him ||| 0.0238095 0.259976 1.49697e-06 2.10868e-06 2.718 ||| 0-0 ||| 42 668016 +a ||| help in advising ||| 1 0.0587624 1.49697e-06 1.60408e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| help in ||| 0.00364299 0.0587624 2.99394e-06 1.14577e-05 2.718 ||| 0-1 ||| 549 668016 +a ||| help is at hand ||| 0.5 0.204175 1.49697e-06 8.06768e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| help is at ||| 0.333333 0.204175 1.49697e-06 2.03421e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| help me ||| 0.0232558 0.259976 1.49697e-06 3.96019e-06 2.718 ||| 0-0 ||| 43 668016 +a ||| help of ||| 0.00573614 0.259976 4.49091e-06 0.000357568 2.718 ||| 0-0 ||| 523 668016 +a ||| help out ||| 0.03125 0.259976 1.49697e-06 2.51937e-05 2.718 ||| 0-0 ||| 32 668016 +a ||| help pensioners ||| 0.333333 0.259976 1.49697e-06 2.63092e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| help shape affairs at ||| 1 0.204175 1.49697e-06 4.80638e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| help terrorism to ||| 0.5 0.229811 1.49697e-06 1.73019e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| help the Union ||| 0.111111 0.259976 1.49697e-06 2.25074e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| help the governments ||| 1 0.259976 1.49697e-06 1.38097e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| help the ||| 0.00154679 0.259976 2.99394e-06 0.000403792 2.718 ||| 0-0 ||| 1293 668016 +a ||| help their ||| 0.0232558 0.259976 1.49697e-06 7.62375e-06 2.718 ||| 0-0 ||| 43 668016 +a ||| help them in ||| 0.025 0.0587624 1.49697e-06 3.07342e-08 2.718 ||| 0-2 ||| 40 668016 +a ||| help them to ||| 0.00657895 0.244893 1.49697e-06 6.18035e-06 2.718 ||| 0-0 0-2 ||| 152 668016 +a ||| help them ||| 0.00140845 0.259976 1.49697e-06 1.76429e-05 2.718 ||| 0-0 ||| 710 668016 +a ||| help these three countries to pre-empt such ||| 1 0.229811 1.49697e-06 2.41154e-24 2.718 ||| 0-4 ||| 1 668016 +a ||| help these three countries to pre-empt ||| 1 0.229811 1.49697e-06 1.16562e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| help these three countries to ||| 1 0.229811 1.49697e-06 1.66517e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| help thinking of ||| 0.0555556 0.0188479 1.49697e-06 4.1797e-10 2.718 ||| 0-2 ||| 18 668016 +a ||| help to improve ||| 0.00840336 0.244893 1.49697e-06 1.00226e-07 2.718 ||| 0-0 0-1 ||| 119 668016 +a ||| help to set out ||| 1 0.229811 1.49697e-06 1.49536e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| help to set ||| 0.25 0.229811 1.49697e-06 3.90394e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| help to turn ||| 1 0.229811 1.49697e-06 1.49771e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| help to ||| 0.0155491 0.244893 4.7903e-05 0.00230404 2.718 ||| 0-0 0-1 ||| 2058 668016 +a ||| help towards ||| 0.030303 0.155507 1.49697e-06 6.43155e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| help us counter ||| 1 0.259976 1.49697e-06 3.48811e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| help us improve ||| 0.25 0.259976 1.49697e-06 8.24634e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| help us to ||| 0.0122951 0.229811 4.49091e-06 1.92538e-07 2.718 ||| 0-2 ||| 244 668016 +a ||| help us ||| 0.00961538 0.259976 1.19758e-05 1.89571e-05 2.718 ||| 0-0 ||| 832 668016 +a ||| help various ||| 1 0.259976 1.49697e-06 1.01554e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| help we ||| 0.03125 0.259976 1.49697e-06 7.46675e-05 2.718 ||| 0-0 ||| 32 668016 +a ||| help with the broad lines of ||| 0.25 0.0188479 1.49697e-06 6.2265e-18 2.718 ||| 0-5 ||| 4 668016 +a ||| help with ||| 0.00760456 0.158567 2.99394e-06 0.000109809 2.718 ||| 0-0 0-1 ||| 263 668016 +a ||| help ||| 0.0107201 0.259976 0.000254485 0.0065773 2.718 ||| 0-0 ||| 15858 668016 +a ||| helped by ||| 0.0125 0.0337966 1.49697e-06 1.62905e-07 2.718 ||| 0-1 ||| 80 668016 +a ||| helped ensure that it did ||| 1 0.1991 1.49697e-06 3.1973e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| helped ensure that it ||| 1 0.1991 1.49697e-06 7.03942e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| helped ensure that ||| 0.166667 0.1991 1.49697e-06 3.95846e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| helped ensure ||| 0.166667 0.1991 1.49697e-06 2.3532e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| helped in finding ||| 0.5 0.0587624 1.49697e-06 6.34075e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| helped in improving ||| 1 0.0587624 1.49697e-06 2.56961e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| helped in ||| 0.0350877 0.0587624 2.99394e-06 1.18963e-06 2.718 ||| 0-1 ||| 57 668016 +a ||| helped it to ||| 0.142857 0.229811 1.49697e-06 1.23344e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| helped on its way by ||| 0.5 0.0782999 1.49697e-06 1.21108e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| helped on its way ||| 0.5 0.0782999 1.49697e-06 2.30677e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| helped on its ||| 0.5 0.0782999 1.49697e-06 1.07013e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| helped on ||| 0.2 0.0782999 1.49697e-06 7.51125e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| helped the ||| 0.0128205 0.1991 1.49697e-06 3.22184e-05 2.718 ||| 0-0 ||| 78 668016 +a ||| helped to shape ||| 0.166667 0.229811 1.49697e-06 4.19626e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| helped to ||| 0.00686106 0.214456 5.98788e-06 0.000183838 2.718 ||| 0-0 0-1 ||| 583 668016 +a ||| helped us ||| 0.0140845 0.1991 1.49697e-06 1.51258e-06 2.718 ||| 0-0 ||| 71 668016 +a ||| helped ||| 0.01 0.1991 2.69455e-05 0.0005248 2.718 ||| 0-0 ||| 1800 668016 +a ||| helpful in ||| 0.00900901 0.0587624 1.49697e-06 4.98685e-07 2.718 ||| 0-1 ||| 111 668016 +a ||| helpful to ||| 0.00621118 0.229811 1.49697e-06 2.9075e-06 2.718 ||| 0-1 ||| 161 668016 +a ||| helping develop ||| 0.2 0.302272 1.49697e-06 7.28402e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| helping hand , so ||| 0.5 0.302272 1.49697e-06 1.27766e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| helping hand , ||| 0.0588235 0.302272 1.49697e-06 5.62922e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| helping hand ||| 0.0125 0.302272 1.49697e-06 4.72033e-07 2.718 ||| 0-0 ||| 80 668016 +a ||| helping it to ||| 0.0833333 0.266042 1.49697e-06 7.41433e-06 2.718 ||| 0-0 0-2 ||| 12 668016 +a ||| helping people to ||| 0.04 0.229811 1.49697e-06 1.16551e-08 2.718 ||| 0-2 ||| 25 668016 +a ||| helping them to ||| 0.0117647 0.266042 1.49697e-06 1.11837e-06 2.718 ||| 0-0 0-2 ||| 85 668016 +a ||| helping to arm ||| 0.25 0.229811 1.49697e-06 2.14511e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| helping to create ||| 0.0192308 0.229811 1.49697e-06 1.49098e-09 2.718 ||| 0-1 ||| 52 668016 +a ||| helping to ensure ||| 0.0277778 0.266042 1.49697e-06 1.86951e-07 2.718 ||| 0-0 0-1 ||| 36 668016 +a ||| helping to ||| 0.0253317 0.266042 3.14364e-05 0.000416929 2.718 ||| 0-0 0-1 ||| 829 668016 +a ||| helping with ||| 0.0384615 0.179715 1.49697e-06 1.98705e-05 2.718 ||| 0-0 0-1 ||| 26 668016 +a ||| helping ||| 0.0132371 0.302272 4.94e-05 0.0011902 2.718 ||| 0-0 ||| 2493 668016 +a ||| helps ease ||| 0.111111 0.27467 1.49697e-06 4.14856e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| helps to ||| 0.0103896 0.252241 5.98788e-06 0.000139735 2.718 ||| 0-0 0-1 ||| 385 668016 +a ||| helps with ||| 0.285714 0.165915 2.99394e-06 6.65968e-06 2.718 ||| 0-0 0-1 ||| 7 668016 +a ||| helps ||| 0.00662252 0.27467 1.04788e-05 0.0003989 2.718 ||| 0-0 ||| 1057 668016 +a ||| hence , upon ||| 1 0.19056 1.49697e-06 6.08937e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| hence also ||| 0.0133333 0.0134011 1.49697e-06 4.00859e-07 2.718 ||| 0-0 ||| 75 668016 +a ||| hence to ||| 0.0169492 0.229811 1.49697e-06 9.07281e-06 2.718 ||| 0-1 ||| 59 668016 +a ||| hence ||| 0.000374252 0.0134011 1.49697e-06 7.94e-05 2.718 ||| 0-0 ||| 2672 668016 +a ||| henceforth also ||| 0.25 0.0699844 1.49697e-06 2.07497e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| henceforth fund the ||| 1 0.0699844 1.49697e-06 9.6134e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| henceforth fund ||| 1 0.0699844 1.49697e-06 1.56591e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| henceforth ||| 0.0217391 0.0699844 7.48485e-06 4.11e-05 2.718 ||| 0-0 ||| 230 668016 +a ||| her all the best for the future ||| 1 0.0683377 1.49697e-06 6.56879e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| her all the best for the ||| 1 0.0683377 1.49697e-06 2.47319e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| her all the best for ||| 1 0.0683377 1.49697e-06 4.02853e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| her because ||| 0.1 0.0052046 1.49697e-06 8.79155e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| her bit for ||| 1 0.0683377 1.49697e-06 7.94097e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| her in ||| 0.0277778 0.0587624 2.99394e-06 1.63484e-05 2.718 ||| 0-1 ||| 72 668016 +a ||| her part in ||| 0.2 0.0587624 1.49697e-06 1.94906e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| her speech that we in ||| 1 0.0587624 1.49697e-06 1.40488e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| her to ||| 0.0695652 0.229811 1.19758e-05 9.53171e-05 2.718 ||| 0-1 ||| 115 668016 +a ||| her trip to ||| 1 0.229811 1.49697e-06 5.81434e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| her urging ||| 0.333333 0.340127 1.49697e-06 6.63108e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| here , to ||| 0.0185185 0.229811 1.49697e-06 8.47116e-05 2.718 ||| 0-2 ||| 54 668016 +a ||| here , ||| 0.000243072 0.0182742 1.49697e-06 0.000102535 2.718 ||| 0-0 ||| 4114 668016 +a ||| here - ||| 0.00247525 0.0182742 1.49697e-06 3.24325e-06 2.718 ||| 0-0 ||| 404 668016 +a ||| here about ||| 0.0176991 0.0526361 2.99394e-06 1.02187e-05 2.718 ||| 0-1 ||| 113 668016 +a ||| here again , loud and ||| 1 0.0700825 1.49697e-06 7.3035e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| here again , loud ||| 1 0.0700825 1.49697e-06 5.83072e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| here again , ||| 0.0105263 0.0700825 1.49697e-06 5.60646e-07 2.718 ||| 0-1 ||| 95 668016 +a ||| here again ||| 0.00473934 0.0700825 1.49697e-06 4.70125e-06 2.718 ||| 0-1 ||| 211 668016 +a ||| here are ||| 0.00763359 0.0182742 2.99394e-06 1.30455e-05 2.718 ||| 0-0 ||| 262 668016 +a ||| here as an acting Commissioner ||| 1 0.0243476 1.49697e-06 4.1144e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| here as an acting ||| 1 0.0243476 1.49697e-06 4.66485e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| here as an ||| 0.0909091 0.0243476 1.49697e-06 7.90653e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| here as ||| 0.00362319 0.0243476 1.49697e-06 1.77887e-05 2.718 ||| 0-1 ||| 276 668016 +a ||| here at Strasbourg , ||| 1 0.204175 1.49697e-06 7.73676e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| here at Strasbourg ||| 1 0.204175 1.49697e-06 6.4876e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| here at the ||| 0.0224719 0.204175 2.99394e-06 4.23708e-06 2.718 ||| 0-1 ||| 89 668016 +a ||| here at ||| 0.0373444 0.204175 1.34727e-05 6.9017e-05 2.718 ||| 0-1 ||| 241 668016 +a ||| here before ||| 0.00970874 0.0203282 1.49697e-06 1.07534e-06 2.718 ||| 0-1 ||| 103 668016 +a ||| here both to ||| 0.5 0.229811 1.49697e-06 1.17668e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| here by ||| 0.00671141 0.0337966 1.49697e-06 1.66837e-05 2.718 ||| 0-1 ||| 149 668016 +a ||| here for ||| 0.0112045 0.0683377 5.98788e-06 7.47214e-05 2.718 ||| 0-1 ||| 357 668016 +a ||| here in the ||| 0.000983284 0.0587624 1.49697e-06 7.47969e-06 2.718 ||| 0-1 ||| 1017 668016 +a ||| here in this ||| 0.00197628 0.0587624 1.49697e-06 7.87227e-07 2.718 ||| 0-1 ||| 506 668016 +a ||| here in ||| 0.0035403 0.0587624 1.94606e-05 0.000121835 2.718 ||| 0-1 ||| 3672 668016 +a ||| here is ||| 0.00260756 0.0182742 5.98788e-06 2.69471e-05 2.718 ||| 0-0 ||| 1534 668016 +a ||| here just to ||| 0.166667 0.229811 1.49697e-06 8.96238e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| here of ||| 0.0217391 0.0185611 4.49091e-06 2.54316e-05 2.718 ||| 0-0 0-1 ||| 138 668016 +a ||| here on ||| 0.0204082 0.0782999 8.98182e-06 7.69258e-05 2.718 ||| 0-1 ||| 294 668016 +a ||| here once again to ||| 0.5 0.229811 1.49697e-06 1.68095e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| here to a ||| 0.166667 0.229811 1.49697e-06 3.14865e-05 2.718 ||| 0-1 ||| 6 668016 +a ||| here to ||| 0.0303922 0.229811 4.64061e-05 0.000710342 2.718 ||| 0-1 ||| 1020 668016 +a ||| here today to ||| 0.0108696 0.229811 1.49697e-06 3.20577e-07 2.718 ||| 0-2 ||| 92 668016 +a ||| here together ||| 0.0555556 0.0182742 1.49697e-06 5.16396e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| here too , ||| 0.00359712 0.0182742 1.49697e-06 1.3955e-07 2.718 ||| 0-0 ||| 278 668016 +a ||| here too ||| 0.00477707 0.0182742 4.49091e-06 1.17019e-06 2.718 ||| 0-0 ||| 628 668016 +a ||| here unless ||| 1 0.219585 1.49697e-06 2.58565e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| here until ||| 0.0869565 0.0268909 2.99394e-06 4.64569e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| here up until ||| 1 0.0268909 1.49697e-06 1.58441e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| here was ||| 0.027027 0.0182742 1.49697e-06 2.69375e-06 2.718 ||| 0-0 ||| 37 668016 +a ||| here we ||| 0.00346021 0.0182742 1.49697e-06 9.76071e-06 2.718 ||| 0-0 ||| 289 668016 +a ||| here with which ||| 1 0.0571592 1.49697e-06 2.87579e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| here with ||| 0.0163043 0.0571592 8.98182e-06 3.38543e-05 2.718 ||| 0-1 ||| 368 668016 +a ||| here ||| 0.00384472 0.0182742 0.000185624 0.0008598 2.718 ||| 0-0 ||| 32252 668016 +a ||| here – to ||| 0.2 0.229811 1.49697e-06 2.79164e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| herself to ||| 0.25 0.229811 2.99394e-06 7.81173e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| herself with ||| 0.5 0.0571592 1.49697e-06 3.72301e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| hesitate to ||| 0.00787402 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 127 668016 +a ||| hesitated to dismiss ||| 1 0.229811 1.49697e-06 4.48386e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| hesitated to ||| 0.0526316 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| hidden subsidies in ||| 0.5 0.0587624 1.49697e-06 5.62372e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| hiding to ||| 0.5 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| high and dry ||| 0.0555556 0.0015873 1.49697e-06 2.59267e-12 2.718 ||| 0-1 ||| 18 668016 +a ||| high and ||| 0.0037037 0.0015873 1.49697e-06 2.88074e-07 2.718 ||| 0-1 ||| 270 668016 +a ||| high as to ||| 0.25 0.229811 1.49697e-06 5.3369e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| high in FYROM ||| 0.111111 0.0587624 1.49697e-06 6.45863e-11 2.718 ||| 0-1 ||| 9 668016 +a ||| high in ||| 0.00961538 0.0587624 1.49697e-06 8.97032e-06 2.718 ||| 0-1 ||| 104 668016 +a ||| high levels of ||| 0.0031348 0.0188479 1.49697e-06 5.84688e-10 2.718 ||| 0-2 ||| 319 668016 +a ||| high on the agenda ||| 0.0108696 0.0782999 1.49697e-06 3.45276e-11 2.718 ||| 0-1 ||| 92 668016 +a ||| high on the ||| 0.00598802 0.0782999 1.49697e-06 3.4771e-07 2.718 ||| 0-1 ||| 167 668016 +a ||| high on ||| 0.0077821 0.0782999 2.99394e-06 5.66379e-06 2.718 ||| 0-1 ||| 257 668016 +a ||| higher than in ||| 0.0111111 0.0587624 1.49697e-06 7.72754e-10 2.718 ||| 0-2 ||| 90 668016 +a ||| highest standards for ||| 0.333333 0.0683377 1.49697e-06 5.92598e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| highlighted by ||| 0.00387597 0.0337966 1.49697e-06 1.66196e-07 2.718 ||| 0-1 ||| 258 668016 +a ||| highlighted to ||| 0.0625 0.229811 1.49697e-06 7.07609e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| highly negative . in ||| 1 0.0587624 1.49697e-06 2.57643e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| highly questionable in terms of European ||| 1 0.0587624 1.49697e-06 2.32093e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| highly questionable in terms of ||| 1 0.0587624 1.49697e-06 6.94079e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| highly questionable in terms ||| 1 0.0587624 1.49697e-06 1.27673e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| highly questionable in ||| 1 0.0587624 1.49697e-06 1.1632e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| highly susceptible to ||| 0.333333 0.229811 1.49697e-06 1.48353e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| hill in ||| 0.333333 0.0587624 1.49697e-06 1.74239e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| him again , ||| 0.25 0.0700825 1.49697e-06 8.86395e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| him again ||| 0.0769231 0.0700825 1.49697e-06 7.43279e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| him at ||| 0.0416667 0.204175 1.49697e-06 1.09117e-05 2.718 ||| 0-1 ||| 24 668016 +a ||| him by ||| 0.0434783 0.0337966 1.49697e-06 2.63774e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| him for there to be ||| 1 0.0683377 1.49697e-06 5.83152e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| him for there to ||| 1 0.0683377 1.49697e-06 3.21776e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| him for there ||| 1 0.0683377 1.49697e-06 3.62123e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| him for ||| 0.0149254 0.0683377 2.99394e-06 1.18136e-05 2.718 ||| 0-1 ||| 134 668016 +a ||| him in ||| 0.0114286 0.0587624 2.99394e-06 1.92624e-05 2.718 ||| 0-1 ||| 175 668016 +a ||| him into ||| 0.0833333 0.107578 1.49697e-06 1.94742e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| him nevertheless to ||| 1 0.229811 1.49697e-06 1.378e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| him on a ||| 0.5 0.0782999 1.49697e-06 5.39097e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| him on ||| 0.0104167 0.0782999 1.49697e-06 1.21622e-05 2.718 ||| 0-1 ||| 96 668016 +a ||| him the opportunity to ||| 0.5 0.229811 1.49697e-06 1.24036e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| him to ||| 0.032967 0.229811 1.34727e-05 0.000112307 2.718 ||| 0-1 ||| 273 668016 +a ||| himself at the ||| 0.5 0.204175 1.49697e-06 1.54832e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| himself at ||| 0.5 0.204175 1.49697e-06 2.52202e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| himself in ||| 0.0526316 0.0587624 1.49697e-06 4.45211e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| himself of ||| 0.166667 0.0188479 1.49697e-06 2.19177e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| himself to a ||| 1 0.229811 1.49697e-06 1.15058e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| himself to be carried ||| 0.5 0.229811 1.49697e-06 1.38633e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| himself to be ||| 0.0833333 0.229811 1.49697e-06 4.70422e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| himself to ||| 0.104167 0.229811 7.48485e-06 2.59573e-05 2.718 ||| 0-1 ||| 48 668016 +a ||| hinge on ||| 0.0434783 0.0782999 1.49697e-06 2.65549e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| hint at - ||| 0.5 0.204175 1.49697e-06 5.1354e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| hint at ||| 0.142857 0.204175 1.49697e-06 1.36142e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| hints to ||| 1 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| hire ||| 0.0273973 0.148515 2.99394e-06 1.37e-05 2.718 ||| 0-0 ||| 73 668016 +a ||| hired undergraduate ||| 1 0.0895522 1.49697e-06 6.05e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| hired ||| 0.04 0.0895522 2.99394e-06 5.5e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| his arrest to ||| 1 0.229811 1.49697e-06 1.44214e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| his attention to ||| 0.0344828 0.229811 1.49697e-06 2.75059e-08 2.718 ||| 0-2 ||| 29 668016 +a ||| his colleagues , and thereby also ||| 1 0.0015873 1.49697e-06 3.41747e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| his colleagues , and thereby ||| 1 0.0015873 1.49697e-06 6.76915e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| his colleagues , and ||| 0.1 0.0015873 1.49697e-06 1.54195e-12 2.718 ||| 0-3 ||| 10 668016 +a ||| his judgment to ||| 1 0.229811 1.49697e-06 1.63162e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| his reply to ||| 0.0434783 0.229811 1.49697e-06 3.03165e-09 2.718 ||| 0-2 ||| 23 668016 +a ||| his trip to ||| 0.125 0.229811 1.49697e-06 6.4212e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| his way to ||| 0.0833333 0.229811 1.49697e-06 2.26911e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| history with ||| 0.0526316 0.0571592 1.49697e-06 6.01024e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| hit by a ||| 0.0285714 0.121563 1.49697e-06 5.35244e-08 2.718 ||| 0-0 ||| 35 668016 +a ||| hit by disasters ||| 0.1 0.121563 1.49697e-06 1.08677e-11 2.718 ||| 0-0 ||| 10 668016 +a ||| hit by ||| 0.00815217 0.121563 4.49091e-06 1.20752e-06 2.718 ||| 0-0 ||| 368 668016 +a ||| hit hard ||| 0.0153846 0.121563 1.49697e-06 2.4173e-08 2.718 ||| 0-0 ||| 65 668016 +a ||| hit rock ||| 0.333333 0.121563 1.49697e-06 5.06e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| hit upon the idea of ||| 1 0.19056 1.49697e-06 4.61741e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| hit upon the idea ||| 0.2 0.19056 1.49697e-06 8.49351e-13 2.718 ||| 0-1 ||| 5 668016 +a ||| hit upon the ||| 0.333333 0.19056 1.49697e-06 3.78836e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| hit upon ||| 0.166667 0.19056 1.49697e-06 6.1708e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| hit ||| 0.0185874 0.121563 2.99394e-05 0.00023 2.718 ||| 0-0 ||| 1076 668016 +a ||| hitch up to ||| 1 0.229811 1.49697e-06 8.36293e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| hits the nail ||| 0.333333 0.203046 1.49697e-06 1.29966e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| hits the ||| 0.030303 0.203046 1.49697e-06 2.2408e-06 2.718 ||| 0-0 ||| 33 668016 +a ||| hits ||| 0.0204082 0.203046 2.99394e-06 3.65e-05 2.718 ||| 0-0 ||| 98 668016 +a ||| hitting of ||| 1 0.142167 1.49697e-06 1.6209e-06 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| hitting precise ||| 1 0.265487 1.49697e-06 1.8358e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| hitting the ||| 0.0333333 0.265487 1.49697e-06 3.36427e-06 2.718 ||| 0-0 ||| 30 668016 +a ||| hitting ||| 0.0235294 0.265487 2.99394e-06 5.48e-05 2.718 ||| 0-0 ||| 85 668016 +a ||| hold at ||| 0.25 0.204175 1.49697e-06 5.92897e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| hold back ||| 0.0133333 0.0536618 1.49697e-06 1.28159e-07 2.718 ||| 0-1 ||| 75 668016 +a ||| hold in a balance ||| 1 0.0587624 1.49697e-06 2.50522e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| hold in a ||| 1 0.0587624 1.49697e-06 4.6393e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| hold in ||| 0.0263158 0.0587624 2.99394e-06 1.04664e-05 2.718 ||| 0-1 ||| 76 668016 +a ||| hold on to a ||| 1 0.229811 1.49697e-06 1.80983e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| hold on to ||| 0.0289855 0.154056 2.99394e-06 2.31493e-06 2.718 ||| 0-1 0-2 ||| 69 668016 +a ||| hold on ||| 0.0117647 0.0782999 1.49697e-06 6.60838e-06 2.718 ||| 0-1 ||| 85 668016 +a ||| hold out until ||| 0.25 0.0268909 1.49697e-06 1.52868e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| hold responsible for that damage ||| 0.333333 0.0683377 1.49697e-06 6.72335e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| hold responsible for that ||| 0.333333 0.0683377 1.49697e-06 1.59699e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| hold responsible for ||| 0.2 0.0683377 1.49697e-06 9.49371e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| hold up to ||| 0.25 0.229811 1.49697e-06 2.08117e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| hold ||| 0.00179791 0.0024406 7.48485e-06 1e-05 2.718 ||| 0-0 ||| 2781 668016 +a ||| holding European taxpayers to ||| 1 0.229811 1.49697e-06 2.04159e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| holding on ||| 0.0769231 0.0782999 1.49697e-06 2.27993e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| holding ||| 0.00259875 0.0045643 7.48485e-06 1e-05 2.718 ||| 0-0 ||| 1924 668016 +a ||| holds back ||| 0.142857 0.0536618 1.49697e-06 2.08939e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| home for ||| 0.0208333 0.0683377 1.49697e-06 3.74012e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| home to ||| 0.0519481 0.229811 1.79636e-05 3.55556e-05 2.718 ||| 0-1 ||| 231 668016 +a ||| homes for ||| 0.04 0.0683377 1.49697e-06 3.7217e-07 2.718 ||| 0-1 ||| 25 668016 +a ||| honourable Member of this ||| 0.142857 0.0188479 1.49697e-06 5.14083e-12 2.718 ||| 0-2 ||| 7 668016 +a ||| honourable Member of ||| 0.0588235 0.0188479 1.49697e-06 7.95622e-10 2.718 ||| 0-2 ||| 17 668016 +a ||| honourable members ||| 0.0188679 0.00053 1.49697e-06 3.3408e-10 2.718 ||| 0-1 ||| 53 668016 +a ||| honoured by ||| 0.0555556 0.0337966 1.49697e-06 7.98068e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| hope for a more ||| 1 0.0683377 1.49697e-06 6.53879e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| hope for a ||| 0.00970874 0.0683377 1.49697e-06 2.86324e-07 2.718 ||| 0-1 ||| 103 668016 +a ||| hope for ||| 0.00325733 0.0683377 2.99394e-06 6.45954e-06 2.718 ||| 0-1 ||| 614 668016 +a ||| hope of ||| 0.00171821 0.0188479 1.49697e-06 5.18511e-06 2.718 ||| 0-1 ||| 582 668016 +a ||| hope that it will not take as ||| 1 0.0243476 1.49697e-06 2.18754e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| hope that ||| 0.000283366 0.0008521 1.49697e-06 1.19677e-07 2.718 ||| 0-1 ||| 3529 668016 +a ||| hope they will say ||| 0.5 0.0561595 1.49697e-06 7.70222e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| hope they will ||| 0.111111 0.0561595 1.49697e-06 8.0584e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| hope to ||| 0.00900901 0.229811 5.98788e-06 6.14079e-05 2.718 ||| 0-1 ||| 444 668016 +a ||| hope will ||| 0.0138889 0.0561595 1.49697e-06 2.46887e-06 2.718 ||| 0-1 ||| 72 668016 +a ||| hopefully in ||| 0.04 0.0587624 1.49697e-06 1.08148e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| hopefully persuade the ||| 1 0.211424 1.49697e-06 2.50184e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| hopefully persuade ||| 1 0.211424 1.49697e-06 4.0752e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| hopefully with ||| 0.0526316 0.0571592 1.49697e-06 3.00512e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| hopes can at ||| 1 0.204175 1.49697e-06 1.02244e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| hopes on ||| 0.0178571 0.0782999 1.49697e-06 3.8315e-07 2.718 ||| 0-1 ||| 56 668016 +a ||| hopes to ||| 0.00892857 0.229811 1.49697e-06 3.53805e-06 2.718 ||| 0-1 ||| 112 668016 +a ||| hoping in ||| 0.2 0.0587624 1.49697e-06 6.90949e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| hoping to damage ||| 0.25 0.229811 1.49697e-06 1.69599e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| hoping to emigrate ||| 1 0.229811 1.49697e-06 2.81993e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| hoping to ||| 0.0612245 0.229811 4.49091e-06 4.02847e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| horizons , of ||| 1 0.0188479 1.49697e-06 1.41095e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| horrific reminder of ||| 1 0.0188479 1.49697e-06 1.17131e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| horrifying treatment of ||| 1 0.0188479 1.49697e-06 4.47375e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| host of ||| 0.00943396 0.0188479 2.99394e-06 5.73823e-07 2.718 ||| 0-1 ||| 212 668016 +a ||| hostage in ||| 0.0454545 0.0587624 1.49697e-06 4.56627e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| hot on ||| 0.25 0.0782999 1.49697e-06 2.99691e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| hour to ||| 0.0714286 0.229811 1.49697e-06 4.90422e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| hours to ||| 0.0434783 0.229811 2.99394e-06 7.56651e-06 2.718 ||| 0-1 ||| 46 668016 +a ||| house for ||| 0.125 0.0683377 1.49697e-06 7.95928e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| house in order ||| 0.0126582 0.0587624 1.49697e-06 6.91199e-10 2.718 ||| 0-1 ||| 79 668016 +a ||| house in ||| 0.00862069 0.0587624 1.49697e-06 1.29778e-06 2.718 ||| 0-1 ||| 116 668016 +a ||| house that within ||| 1 0.0123496 1.49697e-06 1.80729e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| how , at ||| 0.0769231 0.204175 1.49697e-06 1.4547e-06 2.718 ||| 0-2 ||| 13 668016 +a ||| how can we protect ||| 0.0666667 0.0026951 1.49697e-06 2.32347e-13 2.718 ||| 0-3 ||| 15 668016 +a ||| how much is at ||| 0.25 0.204175 1.49697e-06 3.83722e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| how obliged I am to ||| 1 0.229811 1.49697e-06 4.32245e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| how they ||| 0.002 0.0007051 1.49697e-06 2.68083e-08 2.718 ||| 0-1 ||| 500 668016 +a ||| how to act ||| 0.0666667 0.229811 1.49697e-06 2.13306e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| how to use ||| 0.0169492 0.229811 1.49697e-06 6.10415e-08 2.718 ||| 0-1 ||| 59 668016 +a ||| how to ||| 0.00981162 0.229811 3.74243e-05 0.000125548 2.718 ||| 0-1 ||| 2548 668016 +a ||| how we , from ||| 1 0.0435582 1.49697e-06 3.49291e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| how we ||| 0.000679348 0.0008079 1.49697e-06 1.6257e-07 2.718 ||| 0-1 ||| 1472 668016 +a ||| how ||| 5.58425e-05 9.84e-05 2.99394e-06 4.6e-06 2.718 ||| 0-0 ||| 35815 668016 +a ||| however , I shall also ||| 0.5 0.0012781 1.49697e-06 2.80503e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| however , I shall ||| 0.0714286 0.0012781 1.49697e-06 5.55606e-11 2.718 ||| 0-0 ||| 14 668016 +a ||| however , I would like to ||| 0.00613497 0.229811 1.49697e-06 3.41142e-12 2.718 ||| 0-5 ||| 163 668016 +a ||| however , I ||| 0.000693481 0.0012781 1.49697e-06 1.01648e-07 2.718 ||| 0-0 ||| 1442 668016 +a ||| however , as a ||| 0.0178571 0.0012781 1.49697e-06 6.4999e-09 2.718 ||| 0-0 ||| 56 668016 +a ||| however , as ||| 0.001221 0.0012781 1.49697e-06 1.46639e-07 2.718 ||| 0-0 ||| 819 668016 +a ||| however , at ||| 0.011976 0.204175 2.99394e-06 4.49602e-06 2.718 ||| 0-2 ||| 167 668016 +a ||| however , by the ||| 0.0833333 0.0337966 1.49697e-06 6.67231e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| however , by ||| 0.0408163 0.0337966 2.99394e-06 1.08684e-06 2.718 ||| 0-2 ||| 49 668016 +a ||| however , in the ||| 0.00377358 0.0587624 1.49697e-06 4.87255e-07 2.718 ||| 0-2 ||| 265 668016 +a ||| however , in ||| 0.00278552 0.0587624 4.49091e-06 7.9368e-06 2.718 ||| 0-2 ||| 1077 668016 +a ||| however , into ||| 0.5 0.107578 1.49697e-06 8.02406e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| however , is to harmonize ||| 1 0.229811 1.49697e-06 2.0304e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| however , is to ||| 0.0714286 0.229811 1.49697e-06 1.45029e-06 2.718 ||| 0-3 ||| 14 668016 +a ||| however , of ||| 0.025 0.0188479 1.49697e-06 3.90727e-06 2.718 ||| 0-2 ||| 40 668016 +a ||| however , on ||| 0.00574713 0.0782999 1.49697e-06 5.01123e-06 2.718 ||| 0-2 ||| 174 668016 +a ||| however , reduce consumption by even a ||| 1 0.0337966 1.49697e-06 1.85403e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| however , reduce consumption by even ||| 1 0.0337966 1.49697e-06 4.18272e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| however , reduce consumption by ||| 1 0.0337966 1.49697e-06 6.87383e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| however , since in ||| 0.5 0.0587624 1.49697e-06 1.07702e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| however , the ||| 0.000218818 0.0012781 1.49697e-06 8.82212e-07 2.718 ||| 0-0 ||| 4570 668016 +a ||| however , to a ||| 0.333333 0.229811 1.49697e-06 2.05115e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| however , to ||| 0.034188 0.229811 1.79636e-05 4.62743e-05 2.718 ||| 0-2 ||| 351 668016 +a ||| however , with ||| 0.00537634 0.0571592 1.49697e-06 2.2054e-06 2.718 ||| 0-2 ||| 186 668016 +a ||| however , ||| 0.000210881 0.0012781 1.49697e-05 1.43702e-05 2.718 ||| 0-0 ||| 47420 668016 +a ||| however fail to deal ||| 1 0.229811 1.49697e-06 8.89689e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| however fail to ||| 1 0.229811 1.49697e-06 2.09536e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| however slowly ||| 0.142857 0.0547945 1.49697e-06 5.26158e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| however ||| 0.000342531 0.0012781 2.69455e-05 0.0001205 2.718 ||| 0-0 ||| 52550 668016 +a ||| huge concerns about ||| 0.166667 0.127284 1.49697e-06 1.7412e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| huge concerns ||| 0.2 0.127284 1.49697e-06 1.23114e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| huge supporter of ||| 1 0.0188479 1.49697e-06 6.17599e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| human rights clause was included in the ||| 1 0.0587624 1.49697e-06 2.59907e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| human rights clause was included in ||| 1 0.0587624 1.49697e-06 4.23358e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| human rights to ||| 0.00884956 0.229811 1.49697e-06 8.64977e-09 2.718 ||| 0-2 ||| 113 668016 +a ||| humanitarian aid for Gaza must be forthcoming ||| 1 0.0683377 1.49697e-06 1.80104e-25 2.718 ||| 0-2 ||| 1 668016 +a ||| humanitarian aid for Gaza must be ||| 1 0.0683377 1.49697e-06 4.06555e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| humanitarian aid for Gaza must ||| 1 0.0683377 1.49697e-06 2.24332e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| humanitarian aid for Gaza ||| 1 0.0683377 1.49697e-06 1.45142e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| humanitarian aid for ||| 0.0125 0.0683377 1.49697e-06 5.00491e-11 2.718 ||| 0-2 ||| 80 668016 +a ||| humanitarian aid to Ingushetia ; ||| 1 0.229811 1.49697e-06 5.86178e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| humanitarian aid to Ingushetia ||| 1 0.229811 1.49697e-06 1.90317e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| humanitarian aid to ||| 0.0052356 0.229811 1.49697e-06 4.75794e-10 2.718 ||| 0-2 ||| 191 668016 +a ||| humiliating ||| 0.00628931 0.0646766 1.49697e-06 1.19e-05 2.718 ||| 0-0 ||| 159 668016 +a ||| hundred years ahead , educate the people ||| 1 0.249147 1.49697e-06 1.25801e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| hundred years ahead , educate the ||| 1 0.249147 1.49697e-06 1.42923e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| hundred years ahead , educate ||| 1 0.249147 1.49697e-06 2.32805e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| hundreds of ||| 0.00102249 0.0188479 2.99394e-06 1.80429e-07 2.718 ||| 0-1 ||| 1956 668016 +a ||| hunger will , in ||| 1 0.0587624 1.49697e-06 2.23153e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| hungry to ||| 0.5 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| hunt down ||| 0.0666667 0.0226513 1.49697e-06 1.16832e-09 2.718 ||| 0-1 ||| 15 668016 +a ||| hunt which broke out in ||| 1 0.0587624 1.49697e-06 6.06816e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| hurricane ||| 0.00854701 0.0087719 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 117 668016 +a ||| hurt ||| 0.0186916 0.182648 2.99394e-06 3.65e-05 2.718 ||| 0-0 ||| 107 668016 +a ||| hurting ||| 0.0294118 0.295082 1.49697e-06 1.64e-05 2.718 ||| 0-0 ||| 34 668016 +a ||| hurts ||| 0.0344828 0.153846 1.49697e-06 9.1e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| hypocritical of us to ||| 0.333333 0.229811 1.49697e-06 1.59175e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| i.e. from the direction ||| 1 0.0435582 1.49697e-06 2.35297e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| i.e. from the ||| 0.25 0.0435582 1.49697e-06 2.59423e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| i.e. from ||| 0.0588235 0.0435582 1.49697e-06 4.2257e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| i.e. giving ||| 0.5 0.136521 1.49697e-06 5.92048e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| i.e. in terms of ||| 0.5 0.0587624 1.49697e-06 2.10446e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| i.e. in terms ||| 0.5 0.0587624 1.49697e-06 3.87106e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| i.e. in ||| 0.02 0.0587624 1.49697e-06 3.52684e-06 2.718 ||| 0-1 ||| 50 668016 +a ||| i.e. to pay out ||| 0.5 0.229811 1.49697e-06 1.12789e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| i.e. to pay ||| 0.5 0.229811 1.49697e-06 2.94458e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| i.e. to ||| 0.0454545 0.229811 4.49091e-06 2.05627e-05 2.718 ||| 0-1 ||| 66 668016 +a ||| idea , to ensure ||| 1 0.229811 1.49697e-06 4.19971e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| idea , to ||| 0.2 0.229811 1.49697e-06 9.36598e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| idea : that by the ||| 1 0.0007376 1.49697e-06 5.66457e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| idea : that by ||| 1 0.0007376 1.49697e-06 9.22691e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| idea : that ||| 1 0.0007376 1.49697e-06 1.75747e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| idea : ||| 0.0666667 0.0007376 1.49697e-06 1.04477e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| idea as to ||| 0.0588235 0.229811 1.49697e-06 8.01429e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| idea for you ||| 0.5 0.0683377 1.49697e-06 2.66737e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| idea for ||| 0.00877193 0.0683377 1.49697e-06 8.26143e-06 2.718 ||| 0-1 ||| 114 668016 +a ||| idea of ||| 0.00190632 0.0188479 1.04788e-05 6.6315e-06 2.718 ||| 0-1 ||| 3672 668016 +a ||| idea to which I am most open ||| 1 0.229811 1.49697e-06 4.20016e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| idea to which I am most ||| 1 0.229811 1.49697e-06 2.60556e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| idea to which I am ||| 1 0.229811 1.49697e-06 6.02859e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| idea to which I ||| 0.5 0.229811 1.49697e-06 4.71905e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| idea to which ||| 0.333333 0.229811 1.49697e-06 6.67146e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| idea to ||| 0.0145455 0.229811 5.98788e-06 7.85376e-05 2.718 ||| 0-1 ||| 275 668016 +a ||| ideal solution , in other words ||| 1 0.0587624 1.49697e-06 1.34093e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| ideal solution , in other ||| 1 0.0587624 1.49697e-06 5.93332e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| ideal solution , in ||| 1 0.0587624 1.49697e-06 4.57995e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| ideally placed to ||| 0.125 0.229811 1.49697e-06 2.98233e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| identified by ||| 0.00625 0.0337966 1.49697e-06 3.16759e-07 2.718 ||| 0-1 ||| 160 668016 +a ||| identified with ||| 0.0322581 0.0571592 1.49697e-06 6.42761e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| identify themselves by ||| 0.5 0.0337966 1.49697e-06 6.11617e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| identities and opening up to ||| 0.5 0.229811 1.49697e-06 7.56916e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| identity of ||| 0.0103093 0.0188479 2.99394e-06 5.97486e-07 2.718 ||| 0-1 ||| 194 668016 +a ||| if , in ||| 0.003663 0.0587624 1.49697e-06 5.98717e-06 2.718 ||| 0-2 ||| 273 668016 +a ||| if I may , to relate in ||| 1 0.0587624 1.49697e-06 6.99203e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| if I may , to ||| 0.0869565 0.229811 2.99394e-06 1.8499e-10 2.718 ||| 0-4 ||| 23 668016 +a ||| if I may say so , to ||| 0.2 0.229811 1.49697e-06 4.01313e-16 2.718 ||| 0-6 ||| 5 668016 +a ||| if a decision is to be implemented ||| 1 0.229811 1.49697e-06 1.0178e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| if a decision is to be ||| 1 0.229811 1.49697e-06 1.15923e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| if a decision is to ||| 1 0.229811 1.49697e-06 6.39647e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| if a ||| 0.00090009 0.0014881 1.49697e-06 5.74462e-06 2.718 ||| 0-0 ||| 1111 668016 +a ||| if actual improvements are to be made ||| 1 0.229811 1.49697e-06 3.34243e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| if actual improvements are to be ||| 1 0.229811 1.49697e-06 1.59559e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| if actual improvements are to ||| 1 0.229811 1.49697e-06 8.80425e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| if anything , of ||| 0.333333 0.0188479 1.49697e-06 4.62459e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| if at all ||| 0.00591716 0.204175 1.49697e-06 1.3439e-07 2.718 ||| 0-1 ||| 169 668016 +a ||| if at ||| 0.00512821 0.204175 1.49697e-06 2.844e-05 2.718 ||| 0-1 ||| 195 668016 +a ||| if find ||| 1 0.0014881 1.49697e-06 4.31438e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| if it concerns ||| 0.0769231 0.127284 1.49697e-06 3.50465e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| if it is to be possible ||| 0.25 0.229811 1.49697e-06 2.37149e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| if it is to be provided at ||| 1 0.0014881 1.49697e-06 1.11638e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| if it is to be provided ||| 1 0.0014881 1.49697e-06 2.66605e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| if it is to be ||| 0.0227273 0.0014881 2.99394e-06 1.1632e-10 2.718 ||| 0-0 ||| 88 668016 +a ||| if it is to ||| 0.00862069 0.0014881 2.99394e-06 6.4184e-09 2.718 ||| 0-0 ||| 232 668016 +a ||| if it is ||| 0.000507614 0.0014881 1.49697e-06 7.22319e-08 2.718 ||| 0-0 ||| 1970 668016 +a ||| if it were up to ||| 0.111111 0.229811 1.49697e-06 3.18025e-11 2.718 ||| 0-4 ||| 9 668016 +a ||| if it wishes to do so I ||| 0.333333 0.0014881 1.49697e-06 5.97497e-19 2.718 ||| 0-0 ||| 3 668016 +a ||| if it wishes to do so ||| 0.1 0.0014881 1.49697e-06 8.44698e-17 2.718 ||| 0-0 ||| 10 668016 +a ||| if it wishes to do ||| 0.333333 0.0014881 1.49697e-06 3.72163e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| if it wishes to ||| 0.0222222 0.0014881 1.49697e-06 1.08335e-11 2.718 ||| 0-0 ||| 45 668016 +a ||| if it wishes ||| 0.0294118 0.0014881 1.49697e-06 1.21919e-10 2.718 ||| 0-0 ||| 34 668016 +a ||| if it ||| 0.00174155 0.0014881 7.48485e-06 2.3047e-06 2.718 ||| 0-0 ||| 2871 668016 +a ||| if not killed ||| 1 0.102431 1.49697e-06 4.61016e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| if one thing leads to another ||| 0.25 0.0014881 1.49697e-06 1.36819e-19 2.718 ||| 0-0 ||| 4 668016 +a ||| if one thing leads to ||| 0.25 0.0014881 1.49697e-06 5.67478e-16 2.718 ||| 0-0 ||| 4 668016 +a ||| if one thing leads ||| 0.25 0.0014881 1.49697e-06 6.38633e-15 2.718 ||| 0-0 ||| 4 668016 +a ||| if one thing ||| 0.0555556 0.0014881 1.49697e-06 1.97109e-10 2.718 ||| 0-0 ||| 18 668016 +a ||| if one ||| 0.00437637 0.0014881 2.99394e-06 5.40173e-07 2.718 ||| 0-0 ||| 457 668016 +a ||| if possible , to ||| 0.0357143 0.229811 1.49697e-06 2.79991e-08 2.718 ||| 0-3 ||| 28 668016 +a ||| if so , to ||| 0.0833333 0.229811 1.49697e-06 7.92291e-08 2.718 ||| 0-3 ||| 12 668016 +a ||| if so ||| 0.00144509 0.0014881 1.49697e-06 2.94153e-07 2.718 ||| 0-0 ||| 692 668016 +a ||| if that means encouraging ||| 0.333333 0.0134702 1.49697e-06 3.41152e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| if the bill has to be met ||| 1 0.229811 1.49697e-06 2.22442e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| if the bill has to be ||| 1 0.229811 1.49697e-06 2.90015e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| if the bill has to ||| 1 0.229811 1.49697e-06 1.60027e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| if the needs of ||| 1 0.0188479 1.49697e-06 3.0089e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| if the ||| 0.000188466 0.0014881 2.99394e-06 7.95638e-06 2.718 ||| 0-0 ||| 10612 668016 +a ||| if there are to be ||| 0.0714286 0.229811 1.49697e-06 2.4672e-10 2.718 ||| 0-3 ||| 14 668016 +a ||| if there are to ||| 0.0666667 0.229811 1.49697e-06 1.36137e-08 2.718 ||| 0-3 ||| 15 668016 +a ||| if there are ||| 0.00198807 0.0014881 1.49697e-06 6.02755e-09 2.718 ||| 0-0 ||| 503 668016 +a ||| if there is a ||| 0.00225225 0.0014881 1.49697e-06 5.51885e-10 2.718 ||| 0-0 ||| 444 668016 +a ||| if there is ||| 0.00130463 0.0014881 2.99394e-06 1.24507e-08 2.718 ||| 0-0 ||| 1533 668016 +a ||| if there ||| 0.0036855 0.0014881 4.49091e-06 3.97263e-07 2.718 ||| 0-0 ||| 814 668016 +a ||| if they appear at ||| 1 0.204175 1.49697e-06 8.11318e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| if they are to ||| 0.00653595 0.229811 1.49697e-06 1.44962e-08 2.718 ||| 0-3 ||| 153 668016 +a ||| if they are ||| 0.00107759 0.0014881 1.49697e-06 6.41827e-09 2.718 ||| 0-0 ||| 928 668016 +a ||| if they have not done so by ||| 1 0.0014881 1.49697e-06 9.38547e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| if they have not done so ||| 1 0.0014881 1.49697e-06 1.78768e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| if they have not done ||| 1 0.0014881 1.49697e-06 7.87626e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| if they have not ||| 0.0625 0.0014881 1.49697e-06 1.72725e-11 2.718 ||| 0-0 ||| 16 668016 +a ||| if they have ||| 0.00497512 0.0014881 1.49697e-06 5.05917e-09 2.718 ||| 0-0 ||| 201 668016 +a ||| if they wish to ||| 0.0169492 0.0014881 1.49697e-06 1.10773e-11 2.718 ||| 0-0 ||| 59 668016 +a ||| if they wish ||| 0.0188679 0.0014881 1.49697e-06 1.24662e-10 2.718 ||| 0-0 ||| 53 668016 +a ||| if they ||| 0.00243754 0.0014881 5.98788e-06 4.23014e-07 2.718 ||| 0-0 ||| 1641 668016 +a ||| if those of ||| 0.5 0.0188479 1.49697e-06 1.78967e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| if to say ||| 0.125 0.229811 1.49697e-06 2.79774e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| if to ||| 0.0769231 0.229811 1.49697e-06 0.000292712 2.718 ||| 0-1 ||| 13 668016 +a ||| if we are forced to reduce ||| 0.25 0.229811 1.49697e-06 1.35426e-16 2.718 ||| 0-4 ||| 4 668016 +a ||| if we are forced to ||| 0.25 0.229811 1.49697e-06 3.55448e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| if we are going to be absolutely ||| 1 0.229811 1.49697e-06 7.37393e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| if we are going to be ||| 0.0714286 0.229811 1.49697e-06 7.81965e-13 2.718 ||| 0-4 ||| 14 668016 +a ||| if we are going to ||| 0.0119048 0.229811 2.99394e-06 4.31479e-11 2.718 ||| 0-4 ||| 168 668016 +a ||| if we are to maintain ||| 0.0434783 0.229811 1.49697e-06 2.30411e-12 2.718 ||| 0-3 ||| 23 668016 +a ||| if we are to ||| 0.00363636 0.229811 8.98182e-06 5.04182e-08 2.718 ||| 0-3 ||| 1650 668016 +a ||| if we are truly serious about ||| 0.333333 0.0014881 1.49697e-06 2.18585e-19 2.718 ||| 0-0 ||| 3 668016 +a ||| if we are truly serious ||| 0.333333 0.0014881 1.49697e-06 1.54553e-16 2.718 ||| 0-0 ||| 3 668016 +a ||| if we are truly ||| 0.142857 0.0014881 1.49697e-06 1.34161e-12 2.718 ||| 0-0 ||| 7 668016 +a ||| if we are ||| 0.003245 0.0014881 8.98182e-06 2.2323e-08 2.718 ||| 0-0 ||| 1849 668016 +a ||| if we continue in ||| 0.2 0.0587624 1.49697e-06 1.31884e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| if we do ||| 0.00276243 0.0008079 1.49697e-06 1.30208e-09 2.718 ||| 0-1 ||| 362 668016 +a ||| if we have to ||| 0.0125 0.229811 1.49697e-06 3.97419e-08 2.718 ||| 0-3 ||| 80 668016 +a ||| if we have ||| 0.00167504 0.001148 1.49697e-06 7.03076e-10 2.718 ||| 0-0 0-1 ||| 597 668016 +a ||| if we merely fall back on the ||| 0.5 0.0782999 1.49697e-06 9.05832e-20 2.718 ||| 0-5 ||| 2 668016 +a ||| if we merely fall back on ||| 0.5 0.0782999 1.49697e-06 1.47549e-18 2.718 ||| 0-5 ||| 2 668016 +a ||| if we pursue our ||| 0.5 0.0014881 1.49697e-06 7.95546e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| if we pursue ||| 0.0625 0.0014881 1.49697e-06 5.76733e-11 2.718 ||| 0-0 ||| 16 668016 +a ||| if we want ||| 0.00172563 0.0014881 2.99394e-06 6.87813e-10 2.718 ||| 0-0 ||| 1159 668016 +a ||| if we were to ask ||| 0.0909091 0.229811 1.49697e-06 8.18502e-13 2.718 ||| 0-3 ||| 11 668016 +a ||| if we were to neglect ||| 0.5 0.229811 1.49697e-06 3.45259e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| if we were to ||| 0.0240385 0.229811 7.48485e-06 5.95274e-09 2.718 ||| 0-3 ||| 208 668016 +a ||| if we ||| 0.00250986 0.0014881 2.09576e-05 1.47126e-06 2.718 ||| 0-0 ||| 5578 668016 +a ||| if you could tell ||| 0.5 0.0014881 1.49697e-06 2.92196e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| if you could ||| 0.00862069 0.0014881 1.49697e-06 2.97552e-10 2.718 ||| 0-0 ||| 116 668016 +a ||| if you like - to ||| 1 0.229811 1.49697e-06 6.33097e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| if you were to do that ||| 0.333333 0.229811 1.49697e-06 9.78347e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| if you were to do ||| 0.25 0.229811 1.49697e-06 5.81601e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| if you were to ||| 0.03125 0.229811 1.49697e-06 1.69302e-09 2.718 ||| 0-3 ||| 32 668016 +a ||| if you ||| 0.00102354 0.0014881 4.49091e-06 4.1844e-07 2.718 ||| 0-0 ||| 2931 668016 +a ||| if ||| 0.00115036 0.0014881 0.000170655 0.0001296 2.718 ||| 0-0 ||| 99099 668016 +a ||| ill serves the ||| 0.333333 0.12883 1.49697e-06 1.15798e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| ill serves ||| 0.333333 0.12883 1.49697e-06 1.88622e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| illegal and pure sleight of hand . ||| 1 0.0188479 1.49697e-06 4.78763e-26 2.718 ||| 0-4 ||| 1 668016 +a ||| illegal and pure sleight of hand ||| 1 0.0188479 1.49697e-06 1.5806e-23 2.718 ||| 0-4 ||| 1 668016 +a ||| illegal and pure sleight of ||| 1 0.0188479 1.49697e-06 3.98537e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| illegal because ||| 0.0909091 0.0052046 1.49697e-06 1.04684e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| illegal immigrants , intercepted at the ||| 1 0.204175 1.49697e-06 6.03898e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| illegal immigrants , intercepted at ||| 1 0.204175 1.49697e-06 9.83678e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| illegal immigrants from ||| 0.0526316 0.0435582 1.49697e-06 4.36161e-12 2.718 ||| 0-2 ||| 19 668016 +a ||| illegal immigrants to gather ||| 0.5 0.229811 1.49697e-06 1.37956e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| illegal immigrants to ||| 0.030303 0.229811 1.49697e-06 2.12241e-10 2.718 ||| 0-2 ||| 33 668016 +a ||| image of ||| 0.00242131 0.0188479 1.49697e-06 3.93394e-07 2.718 ||| 0-1 ||| 413 668016 +a ||| imagine to ||| 0.333333 0.229811 1.49697e-06 6.44555e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| imbue all ||| 1 0.0038996 1.49697e-06 2.2124e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| imitation of ||| 0.0833333 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| immediate action to ||| 0.0232558 0.229811 1.49697e-06 2.74271e-09 2.718 ||| 0-2 ||| 43 668016 +a ||| immediate upsurge in ||| 0.142857 0.0587624 1.49697e-06 2.80105e-12 2.718 ||| 0-2 ||| 7 668016 +a ||| immediately available to ||| 0.5 0.229811 1.49697e-06 4.41267e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| immediately obvious to ||| 0.2 0.229811 1.49697e-06 5.7846e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| immediately reassure ||| 0.142857 0.284916 1.49697e-06 1.10603e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| immediately relegate ||| 0.0833333 0.0833333 1.49697e-06 1.0692e-10 2.718 ||| 0-1 ||| 12 668016 +a ||| immediately their participation in ||| 1 0.0587624 1.49697e-06 6.64632e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| immediately to finance ||| 1 0.229811 1.49697e-06 2.59405e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| immediately to ||| 0.010929 0.229811 2.99394e-06 1.38719e-05 2.718 ||| 0-1 ||| 183 668016 +a ||| immersed in ||| 0.0588235 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| immigrants , intercepted at the ||| 1 0.204175 1.49697e-06 1.86388e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| immigrants , intercepted at ||| 1 0.204175 1.49697e-06 3.03604e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| immigrants as a ||| 0.2 0.0243476 1.49697e-06 7.27138e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| immigrants as ||| 0.04 0.0243476 1.49697e-06 1.64044e-07 2.718 ||| 0-1 ||| 25 668016 +a ||| immigrants from ||| 0.0111111 0.0435582 1.49697e-06 1.34618e-07 2.718 ||| 0-1 ||| 90 668016 +a ||| immigrants left ||| 1 0.0008877 1.49697e-06 6.9893e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| immigrants to gather ||| 0.5 0.229811 1.49697e-06 4.25792e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| immigrants to ||| 0.0151515 0.229811 1.49697e-06 6.55064e-06 2.718 ||| 0-1 ||| 66 668016 +a ||| immigrants ||| 0.000294898 0.0008877 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 3391 668016 +a ||| impact assessment conducted at an earlier stage ||| 1 0.204175 1.49697e-06 3.42785e-25 2.718 ||| 0-3 ||| 1 668016 +a ||| impact assessment conducted at an earlier ||| 1 0.204175 1.49697e-06 2.28982e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| impact assessment conducted at an ||| 1 0.204175 1.49697e-06 3.28054e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| impact assessment conducted at ||| 1 0.204175 1.49697e-06 7.38079e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| impact in ||| 0.0126582 0.0587624 1.49697e-06 4.9508e-06 2.718 ||| 0-1 ||| 79 668016 +a ||| impact on both ||| 0.142857 0.0782999 1.49697e-06 5.17804e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| impact on ||| 0.00415184 0.0782999 1.04788e-05 3.12589e-06 2.718 ||| 0-1 ||| 1686 668016 +a ||| impacting on ||| 0.0333333 0.0782999 1.49697e-06 4.17292e-08 2.718 ||| 0-1 ||| 30 668016 +a ||| imperial college of ||| 0.5 0.0121951 1.49697e-06 1.76139e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| imperial college ||| 0.5 0.0121951 1.49697e-06 3.24e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| imperial ||| 0.0185185 0.0121951 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 54 668016 +a ||| impetus for ||| 0.00840336 0.0683377 1.49697e-06 4.38497e-07 2.718 ||| 0-1 ||| 119 668016 +a ||| impetus to the process of ||| 0.25 0.0188479 1.49697e-06 8.20856e-13 2.718 ||| 0-4 ||| 4 668016 +a ||| impetus to ||| 0.0222222 0.229811 5.98788e-06 4.16859e-06 2.718 ||| 0-1 ||| 180 668016 +a ||| implementation of the Baltic ||| 1 0.0188479 1.49697e-06 2.08819e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| implementation of the ||| 0.000207641 0.0188479 1.49697e-06 1.41094e-07 2.718 ||| 0-1 ||| 4816 668016 +a ||| implementation of ||| 0.00100215 0.0188479 1.04788e-05 2.29825e-06 2.718 ||| 0-1 ||| 6985 668016 +a ||| implemented at ||| 0.00877193 0.204175 1.49697e-06 2.98831e-06 2.718 ||| 0-1 ||| 114 668016 +a ||| implemented in its entirety . ||| 0.5 0.0587624 1.49697e-06 1.88948e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| implemented in its entirety ||| 0.2 0.0587624 1.49697e-06 6.23798e-14 2.718 ||| 0-1 ||| 5 668016 +a ||| implemented in its ||| 0.125 0.0587624 1.49697e-06 7.51564e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| implemented in ||| 0.00298954 0.0587624 2.99394e-06 5.27524e-06 2.718 ||| 0-1 ||| 669 668016 +a ||| implemented on a ||| 0.0909091 0.0782999 1.49697e-06 1.47638e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| implemented on ||| 0.0192308 0.0782999 1.49697e-06 3.33075e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| implemented partly in order to ||| 1 0.229811 1.49697e-06 1.18511e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| implemented to hold ||| 0.333333 0.229811 1.49697e-06 5.35778e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| implemented to ||| 0.0377358 0.229811 2.99394e-06 3.07565e-05 2.718 ||| 0-1 ||| 53 668016 +a ||| implemented with ||| 0.010989 0.0571592 1.49697e-06 1.46583e-06 2.718 ||| 0-1 ||| 91 668016 +a ||| implications for ||| 0.00306748 0.0683377 1.49697e-06 7.70134e-07 2.718 ||| 0-1 ||| 326 668016 +a ||| implications of ||| 0.00273973 0.0188479 1.49697e-06 6.18191e-07 2.718 ||| 0-1 ||| 365 668016 +a ||| implied that ||| 0.04 0.0225225 1.49697e-06 7.73794e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| implied ||| 0.00617284 0.0225225 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 162 668016 +a ||| implies a ||| 0.00826446 0.0005823 1.49697e-06 2.87368e-09 2.718 ||| 0-1 ||| 121 668016 +a ||| importance for ||| 0.00165017 0.0683377 1.49697e-06 4.78662e-06 2.718 ||| 0-1 ||| 606 668016 +a ||| importance from ||| 0.166667 0.0435582 1.49697e-06 9.35124e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| importance of a ||| 0.0052356 0.0188479 1.49697e-06 1.70311e-07 2.718 ||| 0-1 ||| 191 668016 +a ||| importance of helping to ||| 1 0.229811 1.49697e-06 9.35092e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| importance of ||| 0.00014374 0.0188479 1.49697e-06 3.84225e-06 2.718 ||| 0-1 ||| 6957 668016 +a ||| importance to the fact ||| 0.0769231 0.229811 1.49697e-06 8.18324e-09 2.718 ||| 0-1 ||| 13 668016 +a ||| importance to the ||| 0.00196078 0.229811 1.49697e-06 2.79358e-06 2.718 ||| 0-1 ||| 510 668016 +a ||| importance to ||| 0.00385356 0.229811 8.98182e-06 4.55042e-05 2.718 ||| 0-1 ||| 1557 668016 +a ||| important , because ||| 0.00465116 0.0052046 1.49697e-06 1.47806e-08 2.718 ||| 0-2 ||| 215 668016 +a ||| important - unless ||| 0.25 0.219585 1.49697e-06 1.84504e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| important boost for ||| 0.166667 0.0683377 1.49697e-06 2.44537e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| important enough to ||| 0.047619 0.229811 1.49697e-06 2.21989e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| important for ||| 0.000231428 0.0683377 1.49697e-06 1.41351e-05 2.718 ||| 0-1 ||| 4321 668016 +a ||| important implications for ||| 0.0666667 0.0683377 1.49697e-06 2.95423e-10 2.718 ||| 0-2 ||| 15 668016 +a ||| important into ||| 0.111111 0.107578 1.49697e-06 2.3301e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| important issue for the Group of the ||| 1 0.0683377 1.49697e-06 7.1301e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| important issue for the Group of ||| 1 0.0683377 1.49697e-06 1.16141e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| important issue for the Group ||| 0.5 0.0683377 1.49697e-06 2.13636e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| important issue for the ||| 0.0357143 0.0683377 1.49697e-06 6.56735e-10 2.718 ||| 0-2 ||| 28 668016 +a ||| important issue for ||| 0.0136986 0.0683377 1.49697e-06 1.06974e-08 2.718 ||| 0-2 ||| 73 668016 +a ||| important part in building up ||| 1 0.0587624 1.49697e-06 5.46339e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| important part in building ||| 1 0.0587624 1.49697e-06 1.60193e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| important part in ||| 0.00625 0.0587624 1.49697e-06 2.74774e-08 2.718 ||| 0-2 ||| 160 668016 +a ||| important points and moved in the direction ||| 0.5 0.0587624 1.49697e-06 6.61945e-21 2.718 ||| 0-4 ||| 2 668016 +a ||| important points and moved in the ||| 0.5 0.0587624 1.49697e-06 7.29818e-17 2.718 ||| 0-4 ||| 2 668016 +a ||| important points and moved in ||| 0.5 0.0587624 1.49697e-06 1.18879e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| important role in ||| 0.0014771 0.0587624 1.49697e-06 5.11658e-09 2.718 ||| 0-2 ||| 677 668016 +a ||| important target group for such ||| 0.5 0.0683377 1.49697e-06 1.42379e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| important target group for ||| 0.333333 0.0683377 1.49697e-06 6.88186e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| important task to fulfil ||| 0.5 0.229811 1.49697e-06 4.33442e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| important task to ||| 0.1 0.229811 1.49697e-06 1.69313e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| important than ||| 0.00166113 0.0242272 1.49697e-06 4.82147e-07 2.718 ||| 0-1 ||| 602 668016 +a ||| important that we continue to support those ||| 1 0.229811 1.49697e-06 1.47005e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| important that we continue to support ||| 0.166667 0.229811 1.49697e-06 2.03018e-15 2.718 ||| 0-4 ||| 6 668016 +a ||| important that we continue to ||| 0.0357143 0.229811 1.49697e-06 5.93793e-12 2.718 ||| 0-4 ||| 28 668016 +a ||| important though they ||| 0.25 0.0171304 1.49697e-06 2.43402e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| important though ||| 0.04 0.0171304 1.49697e-06 7.45718e-08 2.718 ||| 0-1 ||| 25 668016 +a ||| important to have a period of reflection ||| 0.5 0.229811 1.49697e-06 9.25824e-18 2.718 ||| 0-1 ||| 2 668016 +a ||| important to have a period of ||| 0.333333 0.229811 1.49697e-06 6.75784e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| important to have a period ||| 0.333333 0.229811 1.49697e-06 1.24307e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| important to have a ||| 0.0169492 0.229811 1.49697e-06 7.12363e-08 2.718 ||| 0-1 ||| 59 668016 +a ||| important to have ||| 0.0033557 0.229811 1.49697e-06 1.60711e-06 2.718 ||| 0-1 ||| 298 668016 +a ||| important to provide ||| 0.0163934 0.229811 1.49697e-06 3.97483e-08 2.718 ||| 0-1 ||| 61 668016 +a ||| important to ||| 0.0012044 0.229811 1.04788e-05 0.000134376 2.718 ||| 0-1 ||| 5812 668016 +a ||| importantly , as ||| 0.0714286 0.0243476 1.49697e-06 1.17169e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| importantly , people living ||| 0.125 0.0079526 1.49697e-06 7.35589e-14 2.718 ||| 0-2 ||| 8 668016 +a ||| importantly , people ||| 0.125 0.0079526 1.49697e-06 8.77791e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| imports of ||| 0.00184843 0.0188479 1.49697e-06 3.31279e-07 2.718 ||| 0-1 ||| 541 668016 +a ||| impose limits on ||| 0.0714286 0.0782999 1.49697e-06 3.34933e-11 2.718 ||| 0-2 ||| 14 668016 +a ||| imposed by ||| 0.00161812 0.0337966 1.49697e-06 4.59095e-07 2.718 ||| 0-1 ||| 618 668016 +a ||| imposed from outside ||| 0.111111 0.0435582 1.49697e-06 1.60276e-11 2.718 ||| 0-1 ||| 9 668016 +a ||| imposed from ||| 0.0277778 0.0435582 1.49697e-06 4.01693e-07 2.718 ||| 0-1 ||| 36 668016 +a ||| imposed on ||| 0.0193741 0.0782999 1.94606e-05 2.11681e-06 2.718 ||| 0-1 ||| 671 668016 +a ||| imposed tighter ||| 0.25 0.00271 1.49697e-06 4.964e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| imposed upon ||| 0.0133333 0.19056 1.49697e-06 1.1001e-07 2.718 ||| 0-1 ||| 75 668016 +a ||| imposed ||| 0.00265252 0.00271 8.98182e-06 7.3e-06 2.718 ||| 0-0 ||| 2262 668016 +a ||| imposition of ||| 0.00282486 0.0188479 1.49697e-06 2.54375e-07 2.718 ||| 0-1 ||| 354 668016 +a ||| impossible to manage in ||| 1 0.0587624 1.49697e-06 1.27628e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| impossible to ||| 0.0034188 0.229811 5.98788e-06 1.87762e-05 2.718 ||| 0-1 ||| 1170 668016 +a ||| impressed on ||| 0.1 0.0782999 1.49697e-06 1.21394e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| impression on ||| 0.0333333 0.0782999 1.49697e-06 9.97706e-07 2.718 ||| 0-1 ||| 30 668016 +a ||| impression upon ||| 0.5 0.19056 1.49697e-06 5.18505e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| imprisoned ||| 0.003367 0.0424028 2.99394e-06 2.19e-05 2.718 ||| 0-0 ||| 594 668016 +a ||| improve ||| 7.90576e-05 0.0001773 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 12649 668016 +a ||| improved in ||| 0.010101 0.0587624 1.49697e-06 1.36387e-06 2.718 ||| 0-1 ||| 99 668016 +a ||| improvements are to be made ||| 0.5 0.229811 1.49697e-06 2.76437e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| improvements are to be ||| 1 0.229811 1.49697e-06 1.31963e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| improvements are to ||| 1 0.229811 1.49697e-06 7.28158e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| improvements in ||| 0.0013587 0.0587624 1.49697e-06 8.2313e-07 2.718 ||| 0-1 ||| 736 668016 +a ||| impulses served up in ||| 0.5 0.0587624 1.49697e-06 1.8606e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| in ' ||| 0.0031746 0.0587624 1.49697e-06 0.000206377 2.718 ||| 0-0 ||| 315 668016 +a ||| in , as a matter ||| 1 0.0587624 1.49697e-06 3.36245e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in , as a ||| 1 0.0587624 1.49697e-06 3.24091e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| in , as ||| 0.0909091 0.0587624 1.49697e-06 7.31158e-05 2.718 ||| 0-0 ||| 11 668016 +a ||| in , ||| 0.0139373 0.0587624 1.19758e-05 0.00716512 2.718 ||| 0-0 ||| 574 668016 +a ||| in - ||| 0.0555556 0.0587624 1.49697e-06 0.000226637 2.718 ||| 0-0 ||| 18 668016 +a ||| in ... ' labelling ||| 0.333333 0.0587624 1.49697e-06 9.68921e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| in ... ' ||| 0.25 0.0587624 1.49697e-06 7.28512e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| in ... ||| 0.0833333 0.0587624 1.49697e-06 2.12091e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| in 1980 ||| 0.0163934 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-0 ||| 61 668016 +a ||| in 1991 to ||| 0.0625 0.229811 1.49697e-06 3.22415e-08 2.718 ||| 0-2 ||| 16 668016 +a ||| in 1995 ||| 0.0013587 0.0587624 1.49697e-06 2.82388e-07 2.718 ||| 0-0 ||| 736 668016 +a ||| in 2009 and 2010 ; ||| 0.5 0.0587624 1.49697e-06 2.59149e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| in 2009 and 2010 ||| 0.0714286 0.0587624 1.49697e-06 8.41393e-14 2.718 ||| 0-0 ||| 14 668016 +a ||| in 2009 and ||| 0.0181818 0.0587624 1.49697e-06 9.78364e-09 2.718 ||| 0-0 ||| 55 668016 +a ||| in 2009 ||| 0.00104384 0.0587624 1.49697e-06 7.81072e-07 2.718 ||| 0-0 ||| 958 668016 +a ||| in Africa ||| 0.00145666 0.0587624 2.99394e-06 2.05482e-06 2.718 ||| 0-0 ||| 1373 668016 +a ||| in Albania ||| 0.00229358 0.0587624 1.49697e-06 4.98685e-07 2.718 ||| 0-0 ||| 436 668016 +a ||| in Angola ( ||| 0.5 0.0587624 1.49697e-06 4.05605e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| in Angola ||| 0.00632911 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-0 ||| 158 668016 +a ||| in Beijing ||| 0.00403226 0.0587624 1.49697e-06 1.32181e-07 2.718 ||| 0-0 ||| 248 668016 +a ||| in Belgium , ||| 0.00434783 0.0587624 1.49697e-06 4.65733e-08 2.718 ||| 0-0 ||| 230 668016 +a ||| in Belgium ||| 0.00133333 0.0587624 1.49697e-06 3.90536e-07 2.718 ||| 0-0 ||| 750 668016 +a ||| in Brussels ||| 0.00032 0.0587624 1.49697e-06 6.72924e-07 2.718 ||| 0-0 ||| 3125 668016 +a ||| in Community institutions ||| 0.2 0.0587624 1.49697e-06 5.10686e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| in Community ||| 0.037037 0.0587624 1.49697e-06 9.72736e-06 2.718 ||| 0-0 ||| 27 668016 +a ||| in Davos was obliged ||| 0.333333 0.0587624 1.49697e-06 2.86875e-15 2.718 ||| 0-0 ||| 3 668016 +a ||| in Davos was ||| 0.25 0.0587624 1.49697e-06 7.52954e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| in Davos ||| 0.0192308 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-0 ||| 52 668016 +a ||| in Europe , there is ||| 0.0833333 0.0587624 1.49697e-06 3.48306e-10 2.718 ||| 0-0 ||| 12 668016 +a ||| in Europe , there ||| 0.2 0.0587624 1.49697e-06 1.11134e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| in Europe , ||| 0.00027894 0.0587624 1.49697e-06 3.62555e-06 2.718 ||| 0-0 ||| 3585 668016 +a ||| in Europe down at ||| 1 0.0587624 1.49697e-06 8.88711e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in Europe down ||| 1 0.0587624 1.49697e-06 2.12235e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in Europe in ||| 0.00377358 0.0587624 1.49697e-06 6.50734e-07 2.718 ||| 0-2 ||| 265 668016 +a ||| in Europe is ||| 0.00202429 0.0587624 1.49697e-06 9.52824e-07 2.718 ||| 0-0 ||| 494 668016 +a ||| in Europe ||| 0.000548519 0.0587624 1.64667e-05 3.04017e-05 2.718 ||| 0-0 ||| 20054 668016 +a ||| in European ||| 0.0164835 0.0587624 4.49091e-06 0.00020091 2.718 ||| 0-0 ||| 182 668016 +a ||| in Exchange ||| 0.5 0.0587624 1.49697e-06 1.92264e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| in FYROM ||| 0.02 0.0587624 1.49697e-06 4.32594e-07 2.718 ||| 0-0 ||| 50 668016 +a ||| in Financial ||| 0.666667 0.0587624 2.99394e-06 6.06833e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| in France , for ||| 0.0243902 0.0683377 1.49697e-06 2.16336e-09 2.718 ||| 0-3 ||| 41 668016 +a ||| in France ||| 0.000951928 0.0587624 2.99394e-06 1.3819e-06 2.718 ||| 0-0 ||| 2101 668016 +a ||| in Genoa , my ||| 0.2 0.0587624 1.49697e-06 3.22552e-12 2.718 ||| 0-0 ||| 5 668016 +a ||| in Genoa , ||| 0.0416667 0.0587624 1.49697e-06 5.01558e-09 2.718 ||| 0-0 ||| 24 668016 +a ||| in Genoa ||| 0.00970874 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-0 ||| 103 668016 +a ||| in Georgia in the ||| 0.25 0.0587624 1.49697e-06 5.68455e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| in Georgia in ||| 0.0833333 0.0587624 1.49697e-06 9.25946e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| in German , in ||| 1 0.0587624 1.49697e-06 3.69612e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| in Germany , ||| 0.00174216 0.0587624 1.49697e-06 1.85577e-07 2.718 ||| 0-0 ||| 574 668016 +a ||| in Germany ||| 0.00107411 0.0587624 2.99394e-06 1.55614e-06 2.718 ||| 0-0 ||| 1862 668016 +a ||| in Greece , we have ||| 0.142857 0.0587624 1.49697e-06 1.46895e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| in Greece , we ||| 0.333333 0.0587624 1.49697e-06 1.22824e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| in Greece , ||| 0.00258398 0.0587624 1.49697e-06 1.08193e-07 2.718 ||| 0-0 ||| 387 668016 +a ||| in Greece ||| 0.00230238 0.0587624 4.49091e-06 9.07246e-07 2.718 ||| 0-0 ||| 1303 668016 +a ||| in Guantánamo together ||| 1 0.0587624 1.49697e-06 5.05198e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in Guantánamo ||| 0.0188679 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-0 ||| 53 668016 +a ||| in Haifa on the eve of ||| 1 0.0782999 1.49697e-06 1.95122e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| in Haifa on the eve ||| 1 0.0782999 1.49697e-06 3.58918e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| in Haifa on the ||| 1 0.0782999 1.49697e-06 1.99399e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| in Haifa on ||| 0.5 0.0782999 1.49697e-06 3.24797e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| in India ||| 0.00316456 0.0587624 1.49697e-06 4.98685e-07 2.718 ||| 0-0 ||| 316 668016 +a ||| in Iraq ||| 0.000643087 0.0587624 1.49697e-06 7.57039e-07 2.718 ||| 0-0 ||| 1555 668016 +a ||| in January ||| 0.000848896 0.0587624 1.49697e-06 4.08561e-07 2.718 ||| 0-0 ||| 1178 668016 +a ||| in Johannesburg ||| 0.00505051 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-0 ||| 198 668016 +a ||| in July 2004 and we are expecting ||| 1 0.0587624 1.49697e-06 5.11559e-23 2.718 ||| 0-0 ||| 1 668016 +a ||| in July 2004 and we are ||| 1 0.0587624 1.49697e-06 8.81999e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| in July 2004 and we ||| 1 0.0587624 1.49697e-06 5.81306e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| in July 2004 and ||| 1 0.0587624 1.49697e-06 5.1206e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| in July 2004 ||| 0.025641 0.0587624 1.49697e-06 4.08801e-12 2.718 ||| 0-0 ||| 39 668016 +a ||| in July ||| 0.000726216 0.0587624 1.49697e-06 3.24446e-07 2.718 ||| 0-0 ||| 1377 668016 +a ||| in Latvia ||| 0.00617284 0.0587624 1.49697e-06 3.00412e-07 2.718 ||| 0-0 ||| 162 668016 +a ||| in Parliament ||| 0.000629063 0.0587624 4.49091e-06 3.44874e-05 2.718 ||| 0-0 ||| 4769 668016 +a ||| in Poland today , journalists are dismissed ||| 1 0.0587624 1.49697e-06 4.56406e-24 2.718 ||| 0-0 ||| 1 668016 +a ||| in Poland today , journalists are ||| 1 0.0587624 1.49697e-06 7.48207e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| in Poland today , journalists ||| 1 0.0587624 1.49697e-06 4.93127e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| in Poland today , ||| 1 0.0587624 1.49697e-06 1.97251e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in Poland today ||| 0.25 0.0587624 1.49697e-06 1.65403e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| in Poland ||| 0.00105597 0.0587624 1.49697e-06 3.66503e-07 2.718 ||| 0-0 ||| 947 668016 +a ||| in Romania ||| 0.00134228 0.0587624 1.49697e-06 6.06833e-07 2.718 ||| 0-0 ||| 745 668016 +a ||| in Russia ||| 0.00145666 0.0587624 2.99394e-06 2.42132e-06 2.718 ||| 0-0 ||| 1373 668016 +a ||| in Spain on ||| 0.0769231 0.0782999 1.49697e-06 1.31543e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| in Sudan ||| 0.00381679 0.0587624 1.49697e-06 2.16297e-07 2.718 ||| 0-0 ||| 262 668016 +a ||| in Sweden ||| 0.0011325 0.0587624 1.49697e-06 1.03943e-06 2.718 ||| 0-0 ||| 883 668016 +a ||| in Tbilisi ||| 0.0416667 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-0 ||| 24 668016 +a ||| in The Hague to see what it ||| 0.5 0.229811 1.49697e-06 8.02797e-21 2.718 ||| 0-3 ||| 2 668016 +a ||| in The Hague to see what ||| 0.5 0.229811 1.49697e-06 4.51436e-19 2.718 ||| 0-3 ||| 2 668016 +a ||| in The Hague to see ||| 0.5 0.229811 1.49697e-06 3.21742e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| in The Hague to ||| 0.25 0.229811 1.49697e-06 4.5663e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| in Turkey and the earthquake in ||| 1 0.0587624 1.49697e-06 1.27712e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| in Turkey and ||| 0.00653595 0.0587624 1.49697e-06 4.41769e-08 2.718 ||| 0-0 ||| 153 668016 +a ||| in Turkey ||| 0.000616523 0.0587624 1.49697e-06 3.52684e-06 2.718 ||| 0-0 ||| 1622 668016 +a ||| in a B to ||| 1 0.0587624 1.49697e-06 7.57272e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in a B ||| 1 0.0587624 1.49697e-06 8.52226e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in a balance ||| 1 0.0587624 1.49697e-06 1.43813e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| in a bid ||| 0.00487805 0.0587624 1.49697e-06 7.08412e-08 2.718 ||| 0-0 ||| 205 668016 +a ||| in a big ||| 0.0909091 0.0587624 1.49697e-06 1.25437e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| in a couple ||| 0.0140845 0.0587624 1.49697e-06 4.02144e-08 2.718 ||| 0-0 ||| 71 668016 +a ||| in a definitive way ||| 1 0.0587624 1.49697e-06 3.50189e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in a definitive ||| 1 0.0587624 1.49697e-06 1.62455e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in a direction ||| 0.0208333 0.0587624 1.49697e-06 2.41553e-07 2.718 ||| 0-0 ||| 48 668016 +a ||| in a disaster ||| 0.25 0.0587624 1.49697e-06 6.71128e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| in a fair , ||| 0.2 0.0587624 1.49697e-06 1.64517e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| in a fair ||| 0.05 0.0587624 1.49697e-06 1.37954e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| in a fit of ||| 0.5 0.0587624 1.49697e-06 4.69095e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| in a fit ||| 0.25 0.0587624 1.49697e-06 8.62878e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| in a form ||| 0.0169492 0.0587624 1.49697e-06 1.21229e-06 2.718 ||| 0-0 ||| 59 668016 +a ||| in a game ||| 0.0909091 0.0587624 1.49697e-06 7.67003e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| in a genuine ||| 0.03125 0.0587624 1.49697e-06 9.00163e-08 2.718 ||| 0-0 ||| 32 668016 +a ||| in a good light ||| 0.166667 0.0587624 1.49697e-06 2.40042e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| in a good ||| 0.0135135 0.0587624 1.49697e-06 1.38114e-06 2.718 ||| 0-0 ||| 74 668016 +a ||| in a high number of ||| 0.5 0.0587624 1.49697e-06 1.06956e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| in a high number ||| 0.5 0.0587624 1.49697e-06 1.96741e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| in a high ||| 0.0909091 0.0587624 1.49697e-06 3.97616e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| in a legally well-organised way . ||| 0.25 0.0587624 1.49697e-06 1.36329e-19 2.718 ||| 0-0 ||| 4 668016 +a ||| in a legally well-organised way ||| 0.25 0.0587624 1.49697e-06 4.50079e-17 2.718 ||| 0-0 ||| 4 668016 +a ||| in a legally well-organised ||| 0.25 0.0587624 1.49697e-06 2.08795e-14 2.718 ||| 0-0 ||| 4 668016 +a ||| in a legally ||| 0.142857 0.0587624 1.49697e-06 2.98279e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| in a manner of speaking , sent ||| 1 0.0587624 1.49697e-06 2.32296e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| in a manner of speaking , ||| 0.0588235 0.0587624 1.49697e-06 3.86516e-13 2.718 ||| 0-0 ||| 17 668016 +a ||| in a manner of speaking ||| 0.047619 0.0587624 1.49697e-06 3.2411e-12 2.718 ||| 0-0 ||| 21 668016 +a ||| in a manner of ||| 0.0833333 0.0587624 1.49697e-06 2.82326e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| in a manner that ||| 0.0151515 0.0587624 1.49697e-06 8.73588e-09 2.718 ||| 0-0 ||| 66 668016 +a ||| in a manner ||| 0.00787402 0.0587624 2.99394e-06 5.19325e-07 2.718 ||| 0-0 ||| 254 668016 +a ||| in a moment , ||| 0.0344828 0.0587624 1.49697e-06 5.73903e-08 2.718 ||| 0-0 ||| 29 668016 +a ||| in a moment ||| 0.00625 0.0587624 1.49697e-06 4.81241e-07 2.718 ||| 0-0 ||| 160 668016 +a ||| in a number of ||| 0.00115875 0.0587624 1.49697e-06 7.16384e-08 2.718 ||| 0-0 ||| 863 668016 +a ||| in a number ||| 0.00101112 0.0587624 1.49697e-06 1.31775e-06 2.718 ||| 0-0 ||| 989 668016 +a ||| in a partnership ||| 0.0909091 0.0587624 1.49697e-06 5.75252e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| in a position to give ||| 0.0277778 0.0587624 1.49697e-06 4.72244e-11 2.718 ||| 0-0 ||| 36 668016 +a ||| in a position to ||| 0.00469116 0.229811 8.98182e-06 1.09445e-07 2.718 ||| 0-3 ||| 1279 668016 +a ||| in a position ||| 0.00237671 0.0587624 5.98788e-06 8.76993e-07 2.718 ||| 0-0 ||| 1683 668016 +a ||| in a purposeful ||| 1 0.0587624 1.49697e-06 2.92953e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in a raised position ||| 1 0.0587624 1.49697e-06 1.0103e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in a raised ||| 1 0.0587624 1.49697e-06 3.06801e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| in a similar way to another directive ||| 1 0.229811 1.49697e-06 7.76852e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| in a similar way to another ||| 1 0.229811 1.49697e-06 6.96104e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| in a similar way to ||| 0.0666667 0.229811 1.49697e-06 2.8872e-11 2.718 ||| 0-4 ||| 15 668016 +a ||| in a similar way ||| 0.0136986 0.0587624 1.49697e-06 2.31354e-10 2.718 ||| 0-0 ||| 73 668016 +a ||| in a similar ||| 0.02 0.0587624 1.49697e-06 1.07327e-07 2.718 ||| 0-0 ||| 50 668016 +a ||| in a situation in which ||| 0.00884956 0.0587624 1.49697e-06 2.49379e-10 2.718 ||| 0-0 ||| 113 668016 +a ||| in a situation in ||| 0.00512821 0.0587624 1.49697e-06 2.93574e-08 2.718 ||| 0-0 ||| 195 668016 +a ||| in a situation of ||| 0.00934579 0.0388051 1.49697e-06 4.05684e-08 2.718 ||| 0-0 0-3 ||| 107 668016 +a ||| in a situation where ||| 0.00331126 0.0587624 1.49697e-06 4.1558e-10 2.718 ||| 0-0 ||| 302 668016 +a ||| in a situation ||| 0.00616333 0.0587624 5.98788e-06 1.37155e-06 2.718 ||| 0-0 ||| 649 668016 +a ||| in a state of ||| 0.00552486 0.0587624 1.49697e-06 3.65721e-08 2.718 ||| 0-0 ||| 181 668016 +a ||| in a state ||| 0.00881057 0.0587624 2.99394e-06 6.72726e-07 2.718 ||| 0-0 ||| 227 668016 +a ||| in a substantial way to ||| 1 0.229811 1.49697e-06 2.14212e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| in a twist ||| 0.5 0.0587624 1.49697e-06 1.86424e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| in a variety of ways ||| 0.0526316 0.0587624 1.49697e-06 3.21012e-13 2.718 ||| 0-0 ||| 19 668016 +a ||| in a variety of ||| 0.0166667 0.0587624 1.49697e-06 3.33e-09 2.718 ||| 0-0 ||| 60 668016 +a ||| in a variety ||| 0.0151515 0.0587624 1.49697e-06 6.12537e-08 2.718 ||| 0-0 ||| 66 668016 +a ||| in a very ||| 0.0143541 0.0587624 4.49091e-06 9.26662e-06 2.718 ||| 0-0 ||| 209 668016 +a ||| in a way , generating ||| 1 0.0587624 1.49697e-06 4.17617e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in a way , ||| 0.0127389 0.0587624 2.99394e-06 6.84618e-07 2.718 ||| 0-0 ||| 157 668016 +a ||| in a way that will ||| 0.0454545 0.0587624 1.49697e-06 8.35442e-10 2.718 ||| 0-0 ||| 22 668016 +a ||| in a way that ||| 0.003367 0.0587624 2.99394e-06 9.65695e-08 2.718 ||| 0-0 ||| 594 668016 +a ||| in a way which reassures ||| 1 0.0587624 1.49697e-06 1.95063e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| in a way which ||| 0.00416667 0.0587624 1.49697e-06 4.87658e-08 2.718 ||| 0-0 ||| 240 668016 +a ||| in a way ||| 0.00620636 0.0587624 1.19758e-05 5.7408e-06 2.718 ||| 0-0 ||| 1289 668016 +a ||| in a ||| 0.00730383 0.0587624 0.000350291 0.0026632 2.718 ||| 0-0 ||| 32038 668016 +a ||| in abeyance and have not yet been ||| 1 0.0587624 1.49697e-06 2.98551e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| in abeyance and have not yet ||| 1 0.0587624 1.49697e-06 8.94078e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| in abeyance and have not ||| 1 0.0587624 1.49697e-06 3.38026e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| in abeyance and have ||| 1 0.0587624 1.49697e-06 9.90087e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in abeyance and ||| 0.333333 0.0587624 1.49697e-06 8.27846e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| in abeyance ||| 0.0714286 0.0587624 1.49697e-06 6.60907e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| in accepting ||| 0.00833333 0.0587624 1.49697e-06 6.24858e-07 2.718 ||| 0-0 ||| 120 668016 +a ||| in accommodating ||| 0.142857 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| in accordance with an ||| 0.1 0.0571592 1.49697e-06 1.26271e-10 2.718 ||| 0-2 ||| 10 668016 +a ||| in accordance with ||| 0.00204157 0.0571592 1.64667e-05 2.84093e-08 2.718 ||| 0-2 ||| 5388 668016 +a ||| in accordance ||| 0.00223314 0.0587624 1.49697e-05 4.77656e-06 2.718 ||| 0-0 ||| 4478 668016 +a ||| in achieving this ||| 0.0104167 0.0587624 1.49697e-06 2.57e-08 2.718 ||| 0-0 ||| 96 668016 +a ||| in achieving ||| 0.00570613 0.0587624 5.98788e-06 3.97746e-06 2.718 ||| 0-0 ||| 701 668016 +a ||| in actual fact , try to act ||| 0.25 0.229811 1.49697e-06 9.91675e-18 2.718 ||| 0-5 ||| 4 668016 +a ||| in actual fact , try to ||| 0.25 0.229811 1.49697e-06 5.83681e-14 2.718 ||| 0-5 ||| 4 668016 +a ||| in actual fact , ||| 0.00646552 0.0587624 4.49091e-06 3.03708e-09 2.718 ||| 0-0 ||| 464 668016 +a ||| in actual fact its processing is ||| 0.333333 0.0587624 1.49697e-06 1.6375e-17 2.718 ||| 0-0 ||| 3 668016 +a ||| in actual fact its processing ||| 0.333333 0.0587624 1.49697e-06 5.22476e-16 2.718 ||| 0-0 ||| 3 668016 +a ||| in actual fact its ||| 0.333333 0.0587624 1.49697e-06 3.62831e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| in actual fact ||| 0.0059312 0.0587624 7.48485e-06 2.54672e-08 2.718 ||| 0-0 ||| 843 668016 +a ||| in actual ||| 0.0314136 0.0587624 8.98182e-06 8.69394e-06 2.718 ||| 0-0 ||| 191 668016 +a ||| in actually ||| 0.153846 0.0587624 2.99394e-06 2.48021e-05 2.718 ||| 0-0 ||| 13 668016 +a ||| in addition , they are prepared to ||| 1 0.229811 1.49697e-06 3.78557e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| in addition , ||| 0.00104866 0.0587624 7.48485e-06 7.06481e-07 2.718 ||| 0-0 ||| 4768 668016 +a ||| in addition to taking ||| 0.333333 0.0587624 1.49697e-06 2.23723e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| in addition to ||| 0.00704486 0.229811 2.84424e-05 7.39306e-07 2.718 ||| 0-2 ||| 2697 668016 +a ||| in addition ||| 0.00138122 0.0587624 1.64667e-05 5.92413e-06 2.718 ||| 0-0 ||| 7964 668016 +a ||| in advance , rather ||| 1 0.0587624 1.49697e-06 7.74468e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in advance , ||| 0.00869565 0.0587624 1.49697e-06 2.52929e-07 2.718 ||| 0-0 ||| 115 668016 +a ||| in advance for your ||| 0.0714286 0.0587624 1.49697e-06 4.17135e-12 2.718 ||| 0-0 ||| 14 668016 +a ||| in advance for ||| 0.0212766 0.0587624 1.49697e-06 1.63007e-08 2.718 ||| 0-0 ||| 47 668016 +a ||| in advance of ||| 0.0105263 0.0587624 2.99394e-06 1.15301e-07 2.718 ||| 0-0 ||| 190 668016 +a ||| in advance ||| 0.00593472 0.0587624 8.98182e-06 2.12091e-06 2.718 ||| 0-0 ||| 1011 668016 +a ||| in advising ||| 0.25 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| in agreement with ||| 0.00511073 0.0587624 4.49091e-06 7.08076e-08 2.718 ||| 0-0 ||| 587 668016 +a ||| in agreement ||| 0.0041841 0.0587624 7.48485e-06 1.10732e-05 2.718 ||| 0-0 ||| 1195 668016 +a ||| in aid to ||| 0.0277778 0.229811 1.49697e-06 9.79243e-07 2.718 ||| 0-2 ||| 36 668016 +a ||| in aid ||| 0.00495049 0.0587624 1.49697e-06 7.84677e-06 2.718 ||| 0-0 ||| 202 668016 +a ||| in all Member ||| 0.2 0.0587624 1.49697e-06 1.46301e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| in all contexts ||| 0.166667 0.0587624 1.49697e-06 1.6467e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| in all countries ||| 0.00448431 0.0587624 1.49697e-06 1.07802e-07 2.718 ||| 0-0 ||| 223 668016 +a ||| in all kinds ||| 0.03125 0.0587624 1.49697e-06 1.34859e-08 2.718 ||| 0-0 ||| 32 668016 +a ||| in all legislation ||| 0.1 0.0587624 1.49697e-06 2.27983e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| in all of us in ||| 1 0.0587624 1.49697e-06 9.52198e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| in all of ||| 0.0110193 0.0587624 5.98788e-06 1.54347e-05 2.718 ||| 0-0 ||| 363 668016 +a ||| in all respects ||| 0.0111111 0.0587624 1.49697e-06 5.73506e-09 2.718 ||| 0-0 ||| 90 668016 +a ||| in all the ||| 0.00064433 0.0587624 1.49697e-06 1.743e-05 2.718 ||| 0-0 ||| 1552 668016 +a ||| in all this , ||| 0.047619 0.0587624 1.49697e-06 2.1877e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| in all this ||| 0.00735294 0.0587624 1.49697e-06 1.83448e-06 2.718 ||| 0-0 ||| 136 668016 +a ||| in all ||| 0.00278313 0.0587624 3.89212e-05 0.000283914 2.718 ||| 0-0 ||| 9342 668016 +a ||| in almost ||| 0.00540541 0.0587624 1.49697e-06 4.9508e-06 2.718 ||| 0-0 ||| 185 668016 +a ||| in an amount of ECU ||| 1 0.0587624 1.49697e-06 1.61421e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| in an amount of ||| 1 0.0587624 1.49697e-06 3.53219e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in an amount ||| 0.333333 0.0587624 1.49697e-06 6.49729e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| in an article ||| 0.0285714 0.0587624 1.49697e-06 3.8455e-09 2.718 ||| 0-0 ||| 35 668016 +a ||| in an attempt ||| 0.0046729 0.0587624 1.49697e-06 2.22986e-08 2.718 ||| 0-0 ||| 214 668016 +a ||| in an effort ||| 0.0136986 0.0587624 2.99394e-06 2.36338e-08 2.718 ||| 0-0 ||| 146 668016 +a ||| in an equally determined ||| 1 0.0587624 1.49697e-06 3.18744e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| in an equally ||| 0.125 0.0587624 1.49697e-06 9.32e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| in an increase in ||| 0.0277778 0.0587624 1.49697e-06 2.07301e-09 2.718 ||| 0-0 0-3 ||| 36 668016 +a ||| in an obligatory way ||| 1 0.0587624 1.49697e-06 4.14468e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in an obligatory ||| 1 0.0587624 1.49697e-06 1.92275e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in an utter ||| 1 0.0587624 1.49697e-06 1.629e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in an ||| 0.00467464 0.0587624 3.74243e-05 0.000267049 2.718 ||| 0-0 ||| 5348 668016 +a ||| in and day out ||| 0.0526316 0.0587624 1.49697e-06 7.3855e-10 2.718 ||| 0-0 ||| 19 668016 +a ||| in and day ||| 0.047619 0.0587624 1.49697e-06 1.92813e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| in and ||| 0.0124481 0.0587624 8.98182e-06 0.000752587 2.718 ||| 0-0 ||| 482 668016 +a ||| in answer to ||| 0.0052356 0.229811 1.49697e-06 5.61602e-07 2.718 ||| 0-2 ||| 191 668016 +a ||| in answer ||| 0.005 0.0587624 1.49697e-06 4.50018e-06 2.718 ||| 0-0 ||| 200 668016 +a ||| in any case , ||| 0.00105152 0.0587624 2.99394e-06 1.15925e-08 2.718 ||| 0-0 ||| 1902 668016 +a ||| in any case ||| 0.00173461 0.0587624 8.98182e-06 9.72076e-08 2.718 ||| 0-0 ||| 3459 668016 +a ||| in any doubt ||| 0.0178571 0.0587624 1.49697e-06 8.30431e-09 2.718 ||| 0-0 ||| 56 668016 +a ||| in any event , ||| 0.00110132 0.0587624 1.49697e-06 1.13118e-09 2.718 ||| 0-0 ||| 908 668016 +a ||| in any event as a ||| 1 0.0587624 1.49697e-06 4.29044e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in any event as ||| 0.333333 0.0587624 1.49697e-06 9.67933e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| in any event ||| 0.0015361 0.0587624 2.99394e-06 9.48545e-09 2.718 ||| 0-0 ||| 1302 668016 +a ||| in any real ||| 0.2 0.0587624 1.49697e-06 1.63451e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| in any sort of position to ||| 1 0.0587624 1.49697e-06 2.30959e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| in any sort of position ||| 1 0.0587624 1.49697e-06 2.59918e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| in any sort of ||| 0.25 0.0587624 1.49697e-06 7.89306e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| in any sort ||| 0.25 0.0587624 1.49697e-06 1.45189e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| in any way from ||| 0.1 0.0587624 1.49697e-06 3.15398e-10 2.718 ||| 0-0 ||| 10 668016 +a ||| in any way ||| 0.00441176 0.0587624 8.98182e-06 1.95851e-07 2.718 ||| 0-0 ||| 1360 668016 +a ||| in any ||| 0.00438659 0.0587624 4.64061e-05 9.08568e-05 2.718 ||| 0-0 ||| 7067 668016 +a ||| in anyone ||| 0.0666667 0.0587624 1.49697e-06 2.87795e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| in arriving ||| 0.0588235 0.0587624 1.49697e-06 3.00412e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| in asking ||| 0.0210526 0.0587624 2.99394e-06 2.59556e-06 2.718 ||| 0-0 ||| 95 668016 +a ||| in association ||| 0.016129 0.0587624 1.49697e-06 9.49304e-07 2.718 ||| 0-0 ||| 62 668016 +a ||| in at the ||| 0.0333333 0.131468 2.99394e-06 0.000125542 2.718 ||| 0-0 0-1 ||| 60 668016 +a ||| in at ||| 0.0307692 0.131468 8.98182e-06 0.00204493 2.718 ||| 0-0 0-1 ||| 195 668016 +a ||| in attitude ||| 0.02 0.0587624 1.49697e-06 3.13631e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| in backing ||| 0.0625 0.0587624 1.49697e-06 1.01539e-06 2.718 ||| 0-0 ||| 16 668016 +a ||| in being a ||| 0.142857 0.0587624 1.49697e-06 7.57895e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| in being able ||| 0.0588235 0.0587624 1.49697e-06 1.42754e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| in being ||| 0.0137931 0.0587624 2.99394e-06 0.000170983 2.718 ||| 0-0 ||| 145 668016 +a ||| in black and ||| 0.0217391 0.0587624 1.49697e-06 1.05362e-08 2.718 ||| 0-0 ||| 46 668016 +a ||| in black ||| 0.0217391 0.0587624 1.49697e-06 8.41155e-07 2.718 ||| 0-0 ||| 46 668016 +a ||| in blaming ||| 0.333333 0.207795 1.49697e-06 4.4401e-06 2.718 ||| 0-0 0-1 ||| 3 668016 +a ||| in border ||| 0.0909091 0.0587624 1.49697e-06 1.40593e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| in both Europe and Asia ||| 0.25 0.0587624 1.49697e-06 2.52324e-15 2.718 ||| 0-0 ||| 4 668016 +a ||| in both Europe and ||| 0.0769231 0.0587624 1.49697e-06 6.3081e-10 2.718 ||| 0-0 ||| 13 668016 +a ||| in both Europe ||| 0.142857 0.0587624 1.49697e-06 5.03605e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| in both the ||| 0.012012 0.0587624 5.98788e-06 6.11012e-06 2.718 ||| 0-0 ||| 333 668016 +a ||| in both ||| 0.00545785 0.0587624 1.34727e-05 9.95267e-05 2.718 ||| 0-0 ||| 1649 668016 +a ||| in brief , ||| 0.011236 0.0587624 1.49697e-06 1.72679e-07 2.718 ||| 0-0 ||| 89 668016 +a ||| in brief ||| 0.00952381 0.0587624 1.49697e-06 1.44799e-06 2.718 ||| 0-0 ||| 105 668016 +a ||| in bringing about ||| 0.025974 0.0587624 2.99394e-06 6.82347e-09 2.718 ||| 0-0 ||| 77 668016 +a ||| in bringing new ||| 1 0.0587624 1.49697e-06 2.88368e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in bringing ||| 0.0205656 0.0587624 1.19758e-05 4.82462e-06 2.718 ||| 0-0 ||| 389 668016 +a ||| in broad areas , ||| 1 0.0587624 1.49697e-06 5.0679e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in broad areas ||| 0.333333 0.0587624 1.49697e-06 4.24964e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| in broad ||| 0.0540541 0.0587624 2.99394e-06 1.85655e-06 2.718 ||| 0-0 ||| 37 668016 +a ||| in brutal ||| 0.333333 0.0587624 1.49697e-06 1.74239e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| in building up ||| 0.04 0.0587624 1.49697e-06 1.19463e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| in building ||| 0.00277778 0.0587624 1.49697e-06 3.50281e-06 2.718 ||| 0-0 ||| 360 668016 +a ||| in business ||| 0.0124224 0.0587624 2.99394e-06 7.5043e-06 2.718 ||| 0-0 ||| 161 668016 +a ||| in by ||| 0.0205479 0.0462795 4.49091e-06 0.000494329 2.718 ||| 0-0 0-1 ||| 146 668016 +a ||| in calling ||| 0.0172414 0.0587624 2.99394e-06 3.95944e-06 2.718 ||| 0-0 ||| 116 668016 +a ||| in calls to ||| 1 0.229811 1.49697e-06 2.69929e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| in carrying out ||| 0.00507614 0.0669777 1.49697e-06 5.31068e-09 2.718 ||| 0-2 ||| 197 668016 +a ||| in carrying ||| 0.0075188 0.0587624 1.49697e-06 3.63499e-06 2.718 ||| 0-0 ||| 133 668016 +a ||| in case it may be of ||| 1 0.0587624 1.49697e-06 8.43797e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| in case it may be ||| 1 0.0587624 1.49697e-06 1.55212e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in case it may ||| 1 0.0587624 1.49697e-06 8.56444e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in case it ||| 0.142857 0.0587624 1.49697e-06 1.14314e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| in case ||| 0.00846024 0.0587624 7.48485e-06 6.42823e-05 2.718 ||| 0-0 ||| 591 668016 +a ||| in cases where they refer to ||| 1 0.229811 1.49697e-06 7.41891e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| in cases ||| 0.00112233 0.0587624 1.49697e-06 7.69657e-06 2.718 ||| 0-0 ||| 891 668016 +a ||| in catching ||| 0.142857 0.0587624 1.49697e-06 3.00412e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| in categories 1 ||| 0.2 0.0587624 1.49697e-06 4.13344e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| in categories ||| 0.0454545 0.0587624 1.49697e-06 6.48891e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| in cattle ||| 0.0344828 0.0587624 1.49697e-06 4.56627e-07 2.718 ||| 0-0 ||| 29 668016 +a ||| in certain cases ||| 0.00352113 0.0587624 1.49697e-06 2.19352e-09 2.718 ||| 0-0 ||| 284 668016 +a ||| in certain ways , to ||| 1 0.229811 1.49697e-06 2.45666e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| in certain ||| 0.00139665 0.0587624 4.49091e-06 1.71235e-05 2.718 ||| 0-0 ||| 2148 668016 +a ||| in charge of a large number of ||| 0.5 0.0587624 1.49697e-06 3.0169e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| in charge of a large number ||| 0.5 0.0587624 1.49697e-06 5.54945e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| in charge of a large ||| 0.5 0.0587624 1.49697e-06 1.12155e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| in charge of a ||| 0.0769231 0.0587624 1.49697e-06 7.29704e-09 2.718 ||| 0-0 ||| 13 668016 +a ||| in charge of ||| 0.00692042 0.0587624 2.99394e-06 1.64623e-07 2.718 ||| 0-0 ||| 289 668016 +a ||| in charge there . ||| 1 0.0587624 1.49697e-06 2.81158e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in charge there ||| 1 0.0587624 1.49697e-06 9.28221e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in charge ||| 0.00684932 0.0587624 4.49091e-06 3.02816e-06 2.718 ||| 0-0 ||| 438 668016 +a ||| in check ||| 0.0535714 0.0587624 4.49091e-06 1.83852e-06 2.718 ||| 0-0 ||| 56 668016 +a ||| in clarifying ||| 0.0322581 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| in closed meetings or in ||| 1 0.0587624 1.49697e-06 1.8729e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| in come ||| 1 0.0587624 1.49697e-06 5.10281e-05 2.718 ||| 0-0 ||| 1 668016 +a ||| in coming out ||| 0.142857 0.0587624 1.49697e-06 4.47162e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| in coming ||| 0.0185185 0.0587624 2.99394e-06 1.1674e-05 2.718 ||| 0-0 ||| 108 668016 +a ||| in committee ||| 0.000574713 0.0587624 1.49697e-06 4.65039e-06 2.718 ||| 0-0 ||| 1740 668016 +a ||| in common ||| 0.00371058 0.0587624 2.99394e-06 1.38791e-05 2.718 ||| 0-0 ||| 539 668016 +a ||| in communicating ||| 0.0454545 0.0587624 1.49697e-06 6.60907e-08 2.718 ||| 0-0 ||| 22 668016 +a ||| in companies ||| 0.0075188 0.0587624 1.49697e-06 4.21779e-06 2.718 ||| 0-0 ||| 133 668016 +a ||| in comparison with ||| 0.00442478 0.0587624 2.99394e-06 5.37877e-09 2.718 ||| 0-0 ||| 452 668016 +a ||| in comparison ||| 0.00353357 0.0587624 2.99394e-06 8.41155e-07 2.718 ||| 0-0 ||| 566 668016 +a ||| in compiling ||| 0.0285714 0.0587624 1.49697e-06 6.60907e-08 2.718 ||| 0-0 ||| 35 668016 +a ||| in compliance ||| 0.011976 0.0587624 2.99394e-06 1.3819e-06 2.718 ||| 0-0 ||| 167 668016 +a ||| in concluding ||| 0.0113636 0.0587624 1.49697e-06 5.1671e-07 2.718 ||| 0-0 ||| 88 668016 +a ||| in conclusion , ||| 0.000494315 0.0587624 1.49697e-06 6.34113e-07 2.718 ||| 0-0 ||| 2023 668016 +a ||| in conclusion ||| 0.000856531 0.0587624 2.99394e-06 5.3173e-06 2.718 ||| 0-0 ||| 2335 668016 +a ||| in conflict ||| 0.00595238 0.0587624 1.49697e-06 2.50544e-06 2.718 ||| 0-0 ||| 168 668016 +a ||| in conflicting ||| 1 0.0587624 1.49697e-06 2.16297e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| in congratulating ||| 0.016129 0.157744 2.99394e-06 3.55929e-05 2.718 ||| 0-0 0-1 ||| 124 668016 +a ||| in conjunction with other funds at ||| 0.5 0.204175 1.49697e-06 6.95315e-18 2.718 ||| 0-5 ||| 2 668016 +a ||| in conjunction with ||| 0.00150602 0.0571592 1.49697e-06 5.39599e-09 2.718 ||| 0-2 ||| 664 668016 +a ||| in conjunction ||| 0.00154083 0.0587624 1.49697e-06 9.07246e-07 2.718 ||| 0-0 ||| 649 668016 +a ||| in connection , for ||| 0.25 0.0587624 1.49697e-06 8.40352e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| in connection , ||| 0.142857 0.0587624 1.49697e-06 1.0934e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| in connection with the ||| 0.000766871 0.0571592 1.49697e-06 3.3478e-09 2.718 ||| 0-2 ||| 1304 668016 +a ||| in connection with ||| 0.0036324 0.0571592 1.49697e-05 5.45317e-08 2.718 ||| 0-2 ||| 2753 668016 +a ||| in connection ||| 0.00256316 0.0587624 1.04788e-05 9.16859e-06 2.718 ||| 0-0 ||| 2731 668016 +a ||| in consequence of ||| 0.0434783 0.0587624 1.49697e-06 1.15301e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| in consequence ||| 0.02 0.0587624 2.99394e-06 2.12091e-06 2.718 ||| 0-0 ||| 100 668016 +a ||| in considerable ||| 0.047619 0.0587624 1.49697e-06 2.70371e-06 2.718 ||| 0-0 ||| 21 668016 +a ||| in consideration of ||| 0.0222222 0.0188479 1.49697e-06 6.83762e-08 2.718 ||| 0-2 ||| 45 668016 +a ||| in considering ||| 0.00869565 0.0587624 1.49697e-06 1.81449e-06 2.718 ||| 0-0 ||| 115 668016 +a ||| in contact with ||| 0.00526316 0.0587624 1.49697e-06 7.33817e-09 2.718 ||| 0-0 ||| 190 668016 +a ||| in contact ||| 0.00440529 0.0587624 1.49697e-06 1.14758e-06 2.718 ||| 0-0 ||| 227 668016 +a ||| in contempt ||| 0.0333333 0.0587624 1.49697e-06 6.24858e-07 2.718 ||| 0-0 ||| 30 668016 +a ||| in contrast , ||| 0.00529101 0.0587624 1.49697e-06 8.52649e-08 2.718 ||| 0-0 ||| 189 668016 +a ||| in contrast ||| 0.00326264 0.0587624 2.99394e-06 7.14982e-07 2.718 ||| 0-0 ||| 613 668016 +a ||| in contributing towards ||| 0.333333 0.0587624 1.49697e-06 8.24092e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| in contributing ||| 0.0238095 0.0587624 1.49697e-06 6.48891e-07 2.718 ||| 0-0 ||| 42 668016 +a ||| in countries ||| 0.000851064 0.0587624 1.49697e-06 2.28133e-05 2.718 ||| 0-0 ||| 1175 668016 +a ||| in court ||| 0.00909091 0.0587624 1.49697e-06 1.79647e-06 2.718 ||| 0-0 ||| 110 668016 +a ||| in creating ||| 0.00184843 0.0587624 1.49697e-06 3.50281e-06 2.718 ||| 0-0 ||| 541 668016 +a ||| in daily ||| 0.0769231 0.0587624 1.49697e-06 1.36387e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| in danger from ||| 0.333333 0.0587624 1.49697e-06 4.73141e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| in danger of escalating ||| 0.25 0.0587624 1.49697e-06 2.23613e-13 2.718 ||| 0-0 ||| 4 668016 +a ||| in danger of placing a ||| 0.5 0.0587624 1.49697e-06 1.68501e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| in danger of placing ||| 0.5 0.0587624 1.49697e-06 3.80141e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| in danger of ||| 0.0178571 0.0587624 1.04788e-05 1.59723e-07 2.718 ||| 0-0 ||| 392 668016 +a ||| in danger ||| 0.0158983 0.0587624 1.49697e-05 2.93803e-06 2.718 ||| 0-0 ||| 629 668016 +a ||| in dealing ||| 0.00390625 0.0587624 1.49697e-06 6.20652e-06 2.718 ||| 0-0 ||| 256 668016 +a ||| in debating ||| 0.0285714 0.0587624 1.49697e-06 7.33006e-07 2.718 ||| 0-0 ||| 35 668016 +a ||| in debt ||| 0.0172414 0.0587624 1.49697e-06 1.18963e-06 2.718 ||| 0-0 ||| 58 668016 +a ||| in defence ||| 0.00344828 0.0587624 1.49697e-06 1.51408e-06 2.718 ||| 0-0 ||| 290 668016 +a ||| in defiance both of ||| 0.5 0.0587624 1.49697e-06 3.78747e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| in defiance both ||| 0.5 0.0587624 1.49697e-06 6.96687e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| in defiance ||| 0.0172414 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-0 ||| 58 668016 +a ||| in deficiencies ||| 0.25 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| in describing ||| 0.0454545 0.0587624 1.49697e-06 3.48479e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| in design ||| 0.2 0.0587624 1.49697e-06 4.74652e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| in detail ||| 0.00103734 0.0587624 1.49697e-06 3.07022e-06 2.718 ||| 0-0 ||| 964 668016 +a ||| in developing ||| 0.00276625 0.0587624 2.99394e-06 3.26248e-06 2.718 ||| 0-0 ||| 723 668016 +a ||| in dialogue ||| 0.0112994 0.0587624 2.99394e-06 2.35523e-06 2.718 ||| 0-0 ||| 177 668016 +a ||| in discussions ||| 0.00465116 0.0587624 1.49697e-06 2.48742e-06 2.718 ||| 0-0 ||| 215 668016 +a ||| in distortions of ||| 0.25 0.0587624 1.49697e-06 1.40452e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| in distortions ||| 0.142857 0.0587624 1.49697e-06 2.58355e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| in doing so , ||| 0.00440529 0.0587624 1.49697e-06 5.97003e-09 2.718 ||| 0-0 ||| 227 668016 +a ||| in doing so ||| 0.0043956 0.0587624 2.99394e-06 5.00612e-08 2.718 ||| 0-0 ||| 455 668016 +a ||| in doing ||| 0.0157233 0.0587624 7.48485e-06 2.20563e-05 2.718 ||| 0-0 ||| 318 668016 +a ||| in drafting ||| 0.00280112 0.0587624 1.49697e-06 8.89221e-07 2.718 ||| 0-0 ||| 357 668016 +a ||| in drawing ||| 0.0120482 0.0587624 1.49697e-06 2.9861e-06 2.718 ||| 0-0 ||| 83 668016 +a ||| in dribs and ||| 0.2 0.0587624 1.49697e-06 3.01035e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| in dribs ||| 0.166667 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| in due course , ||| 0.01 0.0587624 1.49697e-06 2.49872e-09 2.718 ||| 0-0 ||| 100 668016 +a ||| in due course ||| 0.0075188 0.0587624 4.49091e-06 2.09528e-08 2.718 ||| 0-0 ||| 399 668016 +a ||| in due time ||| 0.012987 0.0587624 1.49697e-06 2.72634e-08 2.718 ||| 0-0 ||| 77 668016 +a ||| in due ||| 0.0364583 0.0587624 1.04788e-05 1.66068e-05 2.718 ||| 0-0 ||| 192 668016 +a ||| in each case take ||| 1 0.0587624 1.49697e-06 2.90509e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in each case ||| 0.00826446 0.0587624 1.49697e-06 1.8044e-08 2.718 ||| 0-0 ||| 121 668016 +a ||| in each other ||| 0.0285714 0.0587624 1.49697e-06 2.18488e-08 2.718 ||| 0-0 ||| 35 668016 +a ||| in each ||| 0.0021322 0.0587624 4.49091e-06 1.68652e-05 2.718 ||| 0-0 ||| 1407 668016 +a ||| in early 2010 ||| 0.0769231 0.0587624 1.49697e-06 3.49812e-11 2.718 ||| 0-0 ||| 13 668016 +a ||| in early ||| 0.00245098 0.0587624 1.49697e-06 4.06759e-06 2.718 ||| 0-0 ||| 408 668016 +a ||| in economic ||| 0.00892857 0.0587624 1.49697e-06 7.28801e-06 2.718 ||| 0-0 ||| 112 668016 +a ||| in effect , be allowing ||| 1 0.0587624 1.49697e-06 2.18327e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in effect , be ||| 0.166667 0.0587624 1.49697e-06 4.33189e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| in effect , treated the same ||| 1 0.0587624 1.49697e-06 6.412e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| in effect , treated the ||| 1 0.0587624 1.49697e-06 7.96819e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in effect , treated ||| 1 0.0587624 1.49697e-06 1.29792e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in effect , ||| 0.0201342 0.0587624 8.98182e-06 2.39028e-06 2.718 ||| 0-0 ||| 298 668016 +a ||| in effect to ||| 0.5 0.0587624 2.99394e-06 1.78103e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| in effect ||| 0.0115321 0.0587624 1.04788e-05 2.00435e-05 2.718 ||| 0-0 ||| 607 668016 +a ||| in emissions ||| 0.00456621 0.0587624 1.49697e-06 1.03943e-06 2.718 ||| 0-0 ||| 219 668016 +a ||| in emotional ||| 1 0.0587624 1.49697e-06 1.32181e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| in ensuring that ||| 0.0026738 0.0587624 1.49697e-06 1.17441e-07 2.718 ||| 0-0 ||| 374 668016 +a ||| in ensuring ||| 0.00807537 0.0587624 8.98182e-06 6.98159e-06 2.718 ||| 0-0 ||| 743 668016 +a ||| in entrusting me with ||| 0.5 0.0587624 1.49697e-06 2.54458e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| in entrusting me ||| 0.5 0.0587624 1.49697e-06 3.97932e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| in entrusting ||| 0.111111 0.0587624 1.49697e-06 6.60907e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| in equal ways , ||| 1 0.0587624 1.49697e-06 3.9509e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in equal ways ||| 1 0.0587624 1.49697e-06 3.313e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in equal ||| 0.0163934 0.0587624 1.49697e-06 3.43672e-06 2.718 ||| 0-0 ||| 61 668016 +a ||| in establishing to ||| 0.5 0.229811 1.49697e-06 3.50908e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| in establishing ||| 0.00446429 0.0587624 2.99394e-06 2.81186e-06 2.718 ||| 0-0 ||| 448 668016 +a ||| in ever ||| 0.05 0.0587624 1.49697e-06 1.12895e-05 2.718 ||| 0-0 ||| 20 668016 +a ||| in every instance ||| 0.0526316 0.0587624 1.49697e-06 6.33447e-10 2.718 ||| 0-0 ||| 19 668016 +a ||| in every power station ||| 1 0.0587624 1.49697e-06 9.48656e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| in every power ||| 1 0.0587624 1.49697e-06 1.45947e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in every respect ||| 0.008 0.0587624 1.49697e-06 4.22885e-09 2.718 ||| 0-0 ||| 125 668016 +a ||| in every ||| 0.00164294 0.0587624 4.49091e-06 9.77542e-06 2.718 ||| 0-0 ||| 1826 668016 +a ||| in exactly with ||| 1 0.0587624 1.49697e-06 3.85734e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in exactly ||| 0.0143885 0.0587624 2.99394e-06 6.03228e-06 2.718 ||| 0-0 ||| 139 668016 +a ||| in exercising its ||| 0.0714286 0.0587624 1.49697e-06 8.30316e-10 2.718 ||| 0-0 ||| 14 668016 +a ||| in exercising ||| 0.0151515 0.0587624 1.49697e-06 5.828e-07 2.718 ||| 0-0 ||| 66 668016 +a ||| in exerting ||| 0.0526316 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-0 ||| 19 668016 +a ||| in existence ||| 0.00843882 0.0587624 2.99394e-06 4.1517e-06 2.718 ||| 0-0 ||| 237 668016 +a ||| in explaining ||| 0.0212766 0.0587624 1.49697e-06 4.08561e-07 2.718 ||| 0-0 ||| 47 668016 +a ||| in expressing our keen appreciation for ||| 1 0.06355 1.49697e-06 2.74608e-20 2.718 ||| 0-0 0-5 ||| 1 668016 +a ||| in expressing ||| 0.00847458 0.0587624 1.49697e-06 1.58017e-06 2.718 ||| 0-0 ||| 118 668016 +a ||| in face of ||| 0.0322581 0.0188479 1.49697e-06 1.0592e-07 2.718 ||| 0-2 ||| 31 668016 +a ||| in facing ||| 0.0357143 0.115281 1.49697e-06 8.35207e-05 2.718 ||| 0-0 0-1 ||| 28 668016 +a ||| in fact , be ||| 0.0166667 0.0587624 1.49697e-06 3.80378e-07 2.718 ||| 0-0 ||| 60 668016 +a ||| in fact , disregarding ||| 1 0.0587624 1.49697e-06 3.77798e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in fact , done far ||| 1 0.0587624 1.49697e-06 6.53404e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in fact , done ||| 0.5 0.0587624 1.49697e-06 9.57089e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| in fact , obliging ||| 0.5 0.0587624 1.49697e-06 5.2472e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| in fact , the ||| 0.00131579 0.0587624 1.49697e-06 1.28854e-06 2.718 ||| 0-0 ||| 760 668016 +a ||| in fact , these are ||| 1 0.0587624 1.49697e-06 3.30271e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in fact , these ||| 0.0384615 0.0587624 1.49697e-06 2.17675e-08 2.718 ||| 0-0 ||| 26 668016 +a ||| in fact , to keep on ||| 1 0.0782999 1.49697e-06 3.92696e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| in fact , to the ||| 0.142857 0.0587624 1.49697e-06 1.14497e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| in fact , to ||| 0.0434783 0.229811 4.49091e-06 2.61931e-06 2.718 ||| 0-3 ||| 69 668016 +a ||| in fact , ||| 0.00470474 0.0587624 4.34121e-05 2.09888e-05 2.718 ||| 0-0 ||| 6164 668016 +a ||| in fact also ||| 0.0588235 0.0587624 1.49697e-06 8.88552e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| in fact and ||| 0.166667 0.0587624 1.49697e-06 2.20455e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| in fact are ||| 0.0833333 0.0587624 1.49697e-06 2.67039e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| in fact be ||| 0.0254237 0.0587624 4.49091e-06 3.18962e-06 2.718 ||| 0-0 ||| 118 668016 +a ||| in fact been implementing the regulation of ||| 1 0.0587624 1.49697e-06 3.94297e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| in fact been implementing the regulation ||| 1 0.0587624 1.49697e-06 7.25291e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| in fact been implementing the ||| 1 0.0587624 1.49697e-06 1.0391e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in fact been implementing ||| 1 0.0587624 1.49697e-06 1.69257e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in fact been ||| 0.0178571 0.0587624 1.49697e-06 5.87698e-07 2.718 ||| 0-0 ||| 56 668016 +a ||| in fact beyond ||| 1 0.0587624 1.49697e-06 1.31824e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in fact bring ||| 0.5 0.0587624 1.49697e-06 5.47887e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| in fact come to ||| 0.333333 0.229811 1.49697e-06 1.8654e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| in fact gave to ||| 1 0.229811 1.49697e-06 1.83399e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| in fact give ||| 0.125 0.0587624 1.49697e-06 1.06656e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| in fact in ||| 0.0512821 0.0587624 2.99394e-06 3.76718e-06 2.718 ||| 0-2 ||| 39 668016 +a ||| in fact include ||| 1 0.0587624 1.49697e-06 2.33024e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in fact replied ||| 0.5 0.0587624 1.49697e-06 6.33599e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| in fact the number ||| 1 0.0587624 1.49697e-06 5.34628e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in fact the ||| 0.00302115 0.0587624 1.49697e-06 1.08049e-05 2.718 ||| 0-0 ||| 331 668016 +a ||| in fact to be ||| 0.0666667 0.0587624 1.49697e-06 2.83424e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| in fact to do with ||| 1 0.115244 1.49697e-06 3.53596e-09 2.718 ||| 0-0 0-2 0-4 ||| 1 668016 +a ||| in fact to ||| 0.0327869 0.0587624 2.99394e-06 1.5639e-05 2.718 ||| 0-0 ||| 61 668016 +a ||| in fact ||| 0.00818926 0.0587624 0.000161673 0.000176 2.718 ||| 0-0 ||| 13188 668016 +a ||| in favour , ||| 0.00299401 0.0587624 1.49697e-06 2.31792e-06 2.718 ||| 0-0 ||| 334 668016 +a ||| in favour of , ||| 0.030303 0.0587624 1.49697e-06 1.26011e-07 2.718 ||| 0-0 ||| 33 668016 +a ||| in favour of current ||| 0.5 0.0587624 1.49697e-06 1.74137e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| in favour of it ||| 0.00480769 0.0587624 2.99394e-06 1.87907e-08 2.718 ||| 0-0 ||| 416 668016 +a ||| in favour of it – ||| 0.2 0.0587624 1.49697e-06 7.38476e-12 2.718 ||| 0-0 ||| 5 668016 +a ||| in favour of ||| 0.00211402 0.0587624 4.64061e-05 1.05666e-06 2.718 ||| 0-0 ||| 14664 668016 +a ||| in favour with ||| 0.166667 0.0571592 1.49697e-06 1.15603e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| in favour ||| 0.00301017 0.0587624 8.68243e-05 1.94367e-05 2.718 ||| 0-0 ||| 19268 668016 +a ||| in finding ||| 0.00543478 0.0587624 2.99394e-06 3.2024e-06 2.718 ||| 0-0 ||| 368 668016 +a ||| in first reading ||| 0.0238095 0.0587624 1.49697e-06 9.31634e-10 2.718 ||| 0-0 ||| 42 668016 +a ||| in first ||| 0.0142857 0.0587624 1.49697e-06 3.23484e-05 2.718 ||| 0-0 ||| 70 668016 +a ||| in for me so ||| 0.5 0.0587624 1.49697e-06 6.31057e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| in for me ||| 0.5 0.0587624 1.49697e-06 2.78035e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| in for the sitting ||| 1 0.0683377 1.49697e-06 3.36527e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| in for the ||| 0.142857 0.06355 2.99394e-06 0.000135918 2.718 ||| 0-0 0-1 ||| 14 668016 +a ||| in for them could be ||| 0.5 0.06355 1.49697e-06 7.65332e-11 2.718 ||| 0-0 0-1 ||| 2 668016 +a ||| in for them could ||| 0.5 0.06355 1.49697e-06 4.22301e-09 2.718 ||| 0-0 0-1 ||| 2 668016 +a ||| in for them ||| 0.5 0.06355 1.49697e-06 5.9387e-06 2.718 ||| 0-0 0-1 ||| 2 668016 +a ||| in for ||| 0.164894 0.06355 4.64061e-05 0.00221395 2.718 ||| 0-0 0-1 ||| 188 668016 +a ||| in force ||| 0.00108578 0.0587624 2.99394e-06 1.0226e-05 2.718 ||| 0-0 ||| 1842 668016 +a ||| in from ||| 0.02 0.0587624 1.49697e-06 9.67569e-05 2.718 ||| 0-0 ||| 50 668016 +a ||| in front of a ||| 0.0454545 0.0587624 1.49697e-06 1.16695e-08 2.718 ||| 0-0 ||| 22 668016 +a ||| in front of me ||| 0.0212766 0.0587624 1.49697e-06 1.58512e-10 2.718 ||| 0-0 ||| 47 668016 +a ||| in front of them ||| 0.0454545 0.0587624 1.49697e-06 7.06184e-10 2.718 ||| 0-0 ||| 22 668016 +a ||| in front of us ||| 0.00740741 0.0587624 1.49697e-06 7.58785e-10 2.718 ||| 0-0 ||| 135 668016 +a ||| in front of ||| 0.0179775 0.0587624 1.19758e-05 2.63266e-07 2.718 ||| 0-0 ||| 445 668016 +a ||| in front ||| 0.0214286 0.0587624 1.79636e-05 4.84265e-06 2.718 ||| 0-0 ||| 560 668016 +a ||| in frustrating ||| 0.333333 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| in full agreement with ||| 0.0151515 0.0571592 1.49697e-06 1.20852e-11 2.718 ||| 0-3 ||| 66 668016 +a ||| in full agreement ||| 0.011236 0.0587624 1.49697e-06 2.03193e-09 2.718 ||| 0-0 ||| 89 668016 +a ||| in full both ||| 1 0.0587624 1.49697e-06 1.82631e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in full ||| 0.00477555 0.0587624 7.48485e-06 1.10251e-05 2.718 ||| 0-0 ||| 1047 668016 +a ||| in future are provided with ||| 1 0.0587624 1.49697e-06 3.54863e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| in future are provided ||| 1 0.0587624 1.49697e-06 5.5495e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in future are ||| 1 0.0587624 1.49697e-06 2.42125e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| in future to ||| 0.00970874 0.229811 1.49697e-06 1.99148e-06 2.718 ||| 0-2 ||| 103 668016 +a ||| in future years , ||| 0.125 0.0587624 1.49697e-06 3.239e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| in future years ||| 0.015873 0.0587624 1.49697e-06 2.71604e-09 2.718 ||| 0-0 ||| 63 668016 +a ||| in future ||| 0.00138203 0.0587624 1.04788e-05 1.59579e-05 2.718 ||| 0-0 ||| 5065 668016 +a ||| in gaining control over ||| 0.5 0.0587624 1.49697e-06 2.55175e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| in gaining control ||| 0.2 0.0587624 1.49697e-06 5.29958e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| in gaining ||| 0.0217391 0.0587624 1.49697e-06 6.90949e-07 2.718 ||| 0-0 ||| 46 668016 +a ||| in general , ||| 0.000814996 0.0587624 1.49697e-06 1.25318e-06 2.718 ||| 0-0 ||| 1227 668016 +a ||| in general for such ||| 1 0.0683377 1.49697e-06 2.854e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| in general for ||| 0.0714286 0.0683377 1.49697e-06 1.37948e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| in general seem to ||| 0.5 0.229811 1.49697e-06 1.19862e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| in general to ||| 0.0204082 0.229811 1.49697e-06 1.31141e-06 2.718 ||| 0-2 ||| 49 668016 +a ||| in general ||| 0.00101626 0.0587624 5.98788e-06 1.05084e-05 2.718 ||| 0-0 ||| 3936 668016 +a ||| in getting ||| 0.0155039 0.0587624 5.98788e-06 6.98159e-06 2.718 ||| 0-0 ||| 258 668016 +a ||| in giving ||| 0.00595238 0.136521 1.49697e-06 2.15886e-05 2.718 ||| 0-1 ||| 168 668016 +a ||| in going ||| 0.047619 0.0587624 1.49697e-06 5.14186e-05 2.718 ||| 0-0 ||| 21 668016 +a ||| in good times ||| 0.0294118 0.0587624 1.49697e-06 3.16262e-09 2.718 ||| 0-0 ||| 34 668016 +a ||| in good ||| 0.0207156 0.0587624 1.64667e-05 3.11588e-05 2.718 ||| 0-0 ||| 531 668016 +a ||| in grave ||| 0.0588235 0.0587624 1.49697e-06 4.08561e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| in great damage to ||| 1 0.0587624 1.49697e-06 8.83324e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in great damage ||| 0.5 0.0587624 1.49697e-06 9.94083e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| in great detail ||| 0.0105263 0.0587624 1.49697e-06 1.20659e-09 2.718 ||| 0-0 ||| 95 668016 +a ||| in great ||| 0.0239521 0.0587624 5.98788e-06 2.36124e-05 2.718 ||| 0-0 ||| 167 668016 +a ||| in growing ||| 0.0909091 0.0587624 1.49697e-06 2.27112e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| in hand to ||| 0.2 0.229811 1.49697e-06 2.97372e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| in hand with watering ||| 1 0.0587624 1.49697e-06 3.80932e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| in hand with ||| 0.0188679 0.0587624 5.98788e-06 1.52373e-07 2.718 ||| 0-0 ||| 212 668016 +a ||| in hand ||| 0.0174051 0.0587624 1.64667e-05 2.38287e-05 2.718 ||| 0-0 ||| 632 668016 +a ||| in handling things ||| 1 0.0587624 1.49697e-06 3.21021e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in handling ||| 0.0133333 0.0587624 1.49697e-06 7.81072e-07 2.718 ||| 0-0 ||| 75 668016 +a ||| in haste to ||| 0.5 0.229811 1.49697e-06 1.04972e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| in hasty ||| 1 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in having ||| 0.00904977 0.0587624 2.99394e-06 2.30056e-05 2.718 ||| 0-0 ||| 221 668016 +a ||| in hell ||| 0.2 0.0587624 1.49697e-06 2.82388e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| in helping to ||| 0.00877193 0.266042 1.49697e-06 8.92416e-06 2.718 ||| 0-1 0-2 ||| 114 668016 +a ||| in helping ||| 0.015674 0.180517 7.48485e-06 7.15102e-05 2.718 ||| 0-0 0-1 ||| 319 668016 +a ||| in her heart of hearts , ||| 1 0.0587624 1.49697e-06 1.01659e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| in her heart of hearts ||| 1 0.0587624 1.49697e-06 8.52452e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| in her heart of ||| 1 0.0587624 1.49697e-06 7.16346e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in her heart ||| 1 0.0587624 1.49697e-06 1.31768e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in her report ||| 0.00275482 0.0587624 1.49697e-06 6.70123e-09 2.718 ||| 0-0 ||| 363 668016 +a ||| in her speech ||| 0.01 0.0587624 1.49697e-06 7.3568e-10 2.718 ||| 0-0 ||| 100 668016 +a ||| in her ||| 0.00353045 0.0587624 5.98788e-06 1.63484e-05 2.718 ||| 0-0 ||| 1133 668016 +a ||| in here , ||| 0.1 0.0587624 1.49697e-06 1.45294e-05 2.718 ||| 0-0 ||| 10 668016 +a ||| in here ||| 0.030303 0.0587624 2.99394e-06 0.000121835 2.718 ||| 0-0 ||| 66 668016 +a ||| in his latest book ||| 0.25 0.0587624 1.49697e-06 7.89717e-15 2.718 ||| 0-0 ||| 4 668016 +a ||| in his latest ||| 0.111111 0.0587624 1.49697e-06 2.92488e-10 2.718 ||| 0-0 ||| 9 668016 +a ||| in his or ||| 0.0909091 0.0587624 1.49697e-06 2.0642e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| in his reply to ||| 0.1 0.229811 1.49697e-06 6.4891e-11 2.718 ||| 0-3 ||| 10 668016 +a ||| in his ||| 0.000788022 0.0587624 4.49091e-06 1.80548e-05 2.718 ||| 0-0 ||| 3807 668016 +a ||| in holding ||| 0.027027 0.0587624 1.49697e-06 3.61096e-06 2.718 ||| 0-0 ||| 37 668016 +a ||| in hot ||| 0.333333 0.0587624 1.49697e-06 4.74652e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| in how ||| 0.00507614 0.0587624 1.49697e-06 2.15336e-05 2.718 ||| 0-0 ||| 197 668016 +a ||| in imposing ||| 0.030303 0.0587624 1.49697e-06 9.49304e-07 2.718 ||| 0-0 ||| 33 668016 +a ||| in improving ||| 0.00408998 0.0587624 2.99394e-06 1.29778e-06 2.718 ||| 0-0 ||| 489 668016 +a ||| in in ||| 0.0571429 0.0587624 2.99394e-06 0.00360991 2.718 ||| 0-0 0-1 ||| 35 668016 +a ||| in including ||| 0.0263158 0.0587624 1.49697e-06 6.27261e-06 2.718 ||| 0-0 ||| 38 668016 +a ||| in involving ||| 0.111111 0.0806364 1.49697e-06 3.4932e-05 2.718 ||| 0-0 0-1 ||| 9 668016 +a ||| in issues ||| 0.0153846 0.0587624 1.49697e-06 1.51107e-05 2.718 ||| 0-0 ||| 65 668016 +a ||| in it can ||| 0.166667 0.0587624 1.49697e-06 3.17792e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| in it to ||| 0.181818 0.229811 2.99394e-06 0.000133339 2.718 ||| 0-2 ||| 11 668016 +a ||| in it ||| 0.0107858 0.0587624 2.09576e-05 0.00106846 2.718 ||| 0-0 ||| 1298 668016 +a ||| in its composition ||| 0.2 0.0587624 1.49697e-06 3.42398e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| in its dealings ||| 0.025 0.0587624 1.49697e-06 8.90235e-10 2.718 ||| 0-0 ||| 40 668016 +a ||| in its efforts to ||| 0.00735294 0.0587624 1.49697e-06 9.24916e-10 2.718 ||| 0-0 ||| 136 668016 +a ||| in its efforts ||| 0.00613497 0.0587624 1.49697e-06 1.04089e-08 2.718 ||| 0-0 ||| 163 668016 +a ||| in its entirety . ||| 0.00653595 0.0587624 1.49697e-06 2.15203e-12 2.718 ||| 0-0 ||| 153 668016 +a ||| in its entirety ||| 0.00239808 0.0587624 1.49697e-06 7.10476e-10 2.718 ||| 0-0 ||| 417 668016 +a ||| in its own right to ||| 0.333333 0.229811 1.49697e-06 1.16791e-11 2.718 ||| 0-4 ||| 3 668016 +a ||| in its own right ||| 0.00952381 0.0587624 1.49697e-06 9.35859e-11 2.718 ||| 0-0 ||| 105 668016 +a ||| in its own ||| 0.0060241 0.0587624 2.99394e-06 1.45117e-07 2.718 ||| 0-0 ||| 332 668016 +a ||| in its power ||| 0.00595238 0.0587624 1.49697e-06 1.278e-08 2.718 ||| 0-0 ||| 168 668016 +a ||| in its praise for ||| 0.5 0.0683377 1.49697e-06 1.57317e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| in its pro-immigration stance ||| 0.5 0.0587624 1.49697e-06 9.00507e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| in its pro-immigration ||| 0.5 0.0587624 1.49697e-06 3.42398e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| in its relations ||| 0.00793651 0.0587624 1.49697e-06 4.64805e-09 2.718 ||| 0-0 ||| 126 668016 +a ||| in its response ||| 0.0294118 0.0587624 1.49697e-06 8.55995e-09 2.718 ||| 0-0 ||| 34 668016 +a ||| in its state ||| 0.333333 0.0587624 1.49697e-06 2.16224e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| in its wake , ||| 0.125 0.0587624 1.49697e-06 2.42954e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| in its wake ||| 0.0454545 0.0587624 2.99394e-06 2.03727e-09 2.718 ||| 0-0 ||| 44 668016 +a ||| in its ||| 0.00324675 0.0587624 5.0897e-05 8.55995e-05 2.718 ||| 0-0 ||| 10472 668016 +a ||| in itself , ||| 0.00252525 0.0587624 1.49697e-06 4.86297e-06 2.718 ||| 0-0 ||| 396 668016 +a ||| in itself actually ||| 1 0.0587624 1.49697e-06 1.68332e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in itself encourage ||| 0.25 0.0587624 1.49697e-06 1.56995e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| in itself ||| 0.00575705 0.0587624 1.49697e-05 4.0778e-05 2.718 ||| 0-0 ||| 1737 668016 +a ||| in jeopardy ||| 0.00793651 0.0587624 1.49697e-06 1.92264e-07 2.718 ||| 0-0 ||| 126 668016 +a ||| in judgement on ||| 0.333333 0.0782999 1.49697e-06 1.25859e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| in judgment on ||| 0.25 0.0782999 1.49697e-06 1.25859e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| in judgment upon itself ||| 1 0.0587624 1.49697e-06 1.49924e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| in judgment upon ||| 1 0.0587624 1.49697e-06 2.20899e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in judgment ||| 0.0769231 0.0587624 1.49697e-06 9.31279e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| in just ||| 0.00869565 0.0587624 2.99394e-06 7.58061e-05 2.718 ||| 0-0 ||| 230 668016 +a ||| in keeping with ||| 0.00722022 0.0587624 5.98788e-06 2.25524e-08 2.718 ||| 0-0 ||| 554 668016 +a ||| in keeping ||| 0.00716846 0.0587624 5.98788e-06 3.52684e-06 2.718 ||| 0-0 ||| 558 668016 +a ||| in kind to ||| 0.5 0.229811 2.99394e-06 3.65904e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| in later ||| 0.030303 0.0587624 1.49697e-06 5.16709e-06 2.718 ||| 0-0 ||| 33 668016 +a ||| in leading ||| 0.0294118 0.0587624 1.49697e-06 5.23319e-06 2.718 ||| 0-0 ||| 34 668016 +a ||| in left , ||| 0.333333 0.0587624 1.49697e-06 1.35349e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| in left ||| 0.333333 0.0587624 1.49697e-06 1.13496e-05 2.718 ||| 0-0 ||| 3 668016 +a ||| in length with ||| 1 0.0587624 1.49697e-06 1.47916e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in length ||| 0.0740741 0.0587624 2.99394e-06 2.31318e-06 2.718 ||| 0-0 ||| 27 668016 +a ||| in less ||| 0.011976 0.0587624 2.99394e-06 1.0226e-05 2.718 ||| 0-0 ||| 167 668016 +a ||| in life ||| 0.0115607 0.0587624 2.99394e-06 9.1025e-06 2.718 ||| 0-0 ||| 173 668016 +a ||| in light of ||| 0.00172117 0.0587624 1.49697e-06 5.67687e-07 2.718 ||| 0-0 ||| 581 668016 +a ||| in light ||| 0.00140449 0.0587624 1.49697e-06 1.04423e-05 2.718 ||| 0-0 ||| 712 668016 +a ||| in limits on ||| 1 0.0782999 1.49697e-06 2.19238e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| in line to ||| 0.125 0.229811 1.49697e-06 2.20742e-06 2.718 ||| 0-2 ||| 8 668016 +a ||| in line with what ||| 0.0113636 0.0587624 1.49697e-06 1.58701e-10 2.718 ||| 0-0 ||| 88 668016 +a ||| in line with ||| 0.00817528 0.0571592 3.74243e-05 1.05204e-07 2.718 ||| 0-2 ||| 3058 668016 +a ||| in line ||| 0.00757576 0.0587624 3.14364e-05 1.76883e-05 2.718 ||| 0-0 ||| 2772 668016 +a ||| in little backrooms ||| 0.5 0.0587624 1.49697e-06 3.89094e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| in little ||| 0.0666667 0.0587624 1.49697e-06 9.72736e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| in longer ||| 1 0.0587624 1.49697e-06 1.12655e-05 2.718 ||| 0-0 ||| 1 668016 +a ||| in making ||| 0.0115774 0.0587624 1.19758e-05 2.31137e-05 2.718 ||| 0-0 ||| 691 668016 +a ||| in many cases , ||| 0.00246914 0.0587624 1.49697e-06 3.15099e-10 2.718 ||| 0-0 ||| 405 668016 +a ||| in many cases ||| 0.000892857 0.0587624 1.49697e-06 2.64223e-09 2.718 ||| 0-0 ||| 1120 668016 +a ||| in many ||| 0.00038956 0.0587624 2.99394e-06 2.06263e-05 2.718 ||| 0-0 ||| 5134 668016 +a ||| in mind , ||| 0.00156006 0.0587624 1.49697e-06 1.80489e-06 2.718 ||| 0-0 ||| 641 668016 +a ||| in mind by ||| 0.0909091 0.0337966 1.49697e-06 4.4361e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| in mind for ||| 0.0384615 0.0683377 1.49697e-06 1.9868e-07 2.718 ||| 0-2 ||| 26 668016 +a ||| in mind in ||| 0.0163934 0.0587624 1.49697e-06 3.23952e-07 2.718 ||| 0-2 ||| 61 668016 +a ||| in mind situations ||| 1 0.0587624 1.49697e-06 5.1761e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in mind that ||| 0.000755287 0.0587624 1.49697e-06 2.54591e-07 2.718 ||| 0-0 ||| 1324 668016 +a ||| in mind the need to ||| 0.030303 0.229811 1.49697e-06 1.06318e-10 2.718 ||| 0-4 ||| 33 668016 +a ||| in mind there ||| 0.5 0.0587624 1.49697e-06 4.63926e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| in mind what was said by ||| 0.5 0.0587624 1.49697e-06 1.43665e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| in mind what was said ||| 0.5 0.0587624 1.49697e-06 2.73643e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| in mind what was ||| 0.333333 0.0587624 1.49697e-06 6.65312e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| in mind what ||| 0.0416667 0.0587624 1.49697e-06 2.12356e-08 2.718 ||| 0-0 ||| 24 668016 +a ||| in mind ||| 0.0063762 0.0587624 4.49091e-05 1.51348e-05 2.718 ||| 0-0 ||| 4705 668016 +a ||| in monitoring ||| 0.0077821 0.0587624 2.99394e-06 2.28914e-06 2.718 ||| 0-0 ||| 257 668016 +a ||| in more recent times , ||| 1 0.0587624 1.49697e-06 8.0717e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| in more recent times ||| 0.2 0.0587624 1.49697e-06 6.76845e-13 2.718 ||| 0-0 ||| 5 668016 +a ||| in more recent ||| 0.142857 0.0587624 1.49697e-06 6.66843e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| in more ||| 0.00456621 0.0587624 4.49091e-06 0.00013721 2.718 ||| 0-0 ||| 657 668016 +a ||| in most ||| 0.00213523 0.0587624 4.49091e-06 2.59677e-05 2.718 ||| 0-0 ||| 1405 668016 +a ||| in motion ||| 0.00890869 0.0587624 5.98788e-06 4.54224e-06 2.718 ||| 0-0 ||| 449 668016 +a ||| in much greater depth , ||| 1 0.0587624 1.49697e-06 1.36388e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| in much greater depth ||| 0.166667 0.0587624 1.49697e-06 1.14367e-13 2.718 ||| 0-0 ||| 6 668016 +a ||| in much greater ||| 0.142857 0.0587624 1.49697e-06 7.94214e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| in much ||| 0.0128205 0.0587624 1.49697e-06 6.03048e-05 2.718 ||| 0-0 ||| 78 668016 +a ||| in must ||| 0.333333 0.0587624 1.49697e-06 9.28635e-05 2.718 ||| 0-0 ||| 3 668016 +a ||| in my area to ||| 0.5 0.144287 1.49697e-06 5.62122e-09 2.718 ||| 0-0 0-3 ||| 2 668016 +a ||| in my capacity ||| 0.0125786 0.0587624 2.99394e-06 2.82451e-09 2.718 ||| 0-0 ||| 159 668016 +a ||| in my case , I ||| 0.5 0.0587624 1.49697e-06 3.48722e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| in my case , ||| 0.0294118 0.0587624 1.49697e-06 4.92998e-09 2.718 ||| 0-0 ||| 34 668016 +a ||| in my case ||| 0.0147059 0.0587624 1.49697e-06 4.13399e-08 2.718 ||| 0-0 ||| 68 668016 +a ||| in my country , ||| 0.00154083 0.0587624 1.49697e-06 1.65838e-09 2.718 ||| 0-0 ||| 649 668016 +a ||| in my country ||| 0.000653168 0.0587624 1.49697e-06 1.39062e-08 2.718 ||| 0-0 ||| 1531 668016 +a ||| in my explanatory statement , and I ||| 1 0.0587624 1.49697e-06 2.18995e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| in my explanatory statement , and ||| 1 0.0587624 1.49697e-06 3.09599e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| in my explanatory statement , ||| 0.333333 0.0587624 1.49697e-06 2.47167e-15 2.718 ||| 0-0 ||| 3 668016 +a ||| in my explanatory statement ||| 0.125 0.0587624 1.49697e-06 2.0726e-14 2.718 ||| 0-0 ||| 8 668016 +a ||| in my explanatory ||| 0.166667 0.0587624 1.49697e-06 2.78201e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| in my memory ||| 0.166667 0.0587624 1.49697e-06 4.44349e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| in my opinion , far from being ||| 1 0.0435582 1.49697e-06 5.63415e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| in my opinion , far from ||| 1 0.0435582 1.49697e-06 1.97981e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| in my opinion , ||| 0.000825309 0.0587624 4.49091e-06 1.13078e-09 2.718 ||| 0-0 ||| 3635 668016 +a ||| in my opinion ||| 0.000769379 0.0587624 5.98788e-06 9.48202e-09 2.718 ||| 0-0 ||| 5199 668016 +a ||| in my own ||| 0.00155521 0.0587624 1.49697e-06 6.55048e-08 2.718 ||| 0-0 ||| 643 668016 +a ||| in my turn , to ||| 0.333333 0.229811 1.49697e-06 1.28925e-10 2.718 ||| 0-4 ||| 3 668016 +a ||| in my view , we need new ||| 1 0.0587624 1.49697e-06 2.58954e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| in my view , we need ||| 0.0625 0.0587624 1.49697e-06 4.33251e-14 2.718 ||| 0-0 ||| 16 668016 +a ||| in my view , we ||| 0.0227273 0.0587624 1.49697e-06 4.72517e-11 2.718 ||| 0-0 ||| 44 668016 +a ||| in my view , ||| 0.000606244 0.0587624 2.99394e-06 4.16231e-09 2.718 ||| 0-0 ||| 3299 668016 +a ||| in my view a ||| 0.0344828 0.0587624 1.49697e-06 1.54709e-09 2.718 ||| 0-0 ||| 29 668016 +a ||| in my view ||| 0.000968429 0.0587624 7.48485e-06 3.49027e-08 2.718 ||| 0-0 ||| 5163 668016 +a ||| in my ||| 0.00145985 0.0587624 3.59273e-05 3.86391e-05 2.718 ||| 0-0 ||| 16440 668016 +a ||| in nature , ||| 0.0227273 0.0587624 1.49697e-06 1.01315e-06 2.718 ||| 0-0 ||| 44 668016 +a ||| in nature to ||| 0.5 0.144287 1.49697e-06 2.97605e-06 2.718 ||| 0-0 0-2 ||| 2 668016 +a ||| in nature ||| 0.00235294 0.0587624 1.49697e-06 8.49567e-06 2.718 ||| 0-0 ||| 425 668016 +a ||| in need ||| 0.00298954 0.0587624 2.99394e-06 5.50896e-05 2.718 ||| 0-0 ||| 669 668016 +a ||| in no uncertain terms by ||| 0.166667 0.0587624 1.49697e-06 2.04822e-15 2.718 ||| 0-0 ||| 6 668016 +a ||| in no uncertain terms ||| 0.0186916 0.0587624 2.99394e-06 3.90129e-13 2.718 ||| 0-0 ||| 107 668016 +a ||| in no uncertain ||| 0.075 0.0587624 4.49091e-06 3.55438e-10 2.718 ||| 0-0 ||| 40 668016 +a ||| in no way ||| 0.00133156 0.0587624 1.49697e-06 1.00814e-07 2.718 ||| 0-0 ||| 751 668016 +a ||| in no ||| 0.00728155 0.0587624 8.98182e-06 4.67682e-05 2.718 ||| 0-0 ||| 824 668016 +a ||| in number ||| 0.0126582 0.0587624 1.49697e-06 2.97288e-05 2.718 ||| 0-0 ||| 79 668016 +a ||| in numbers ||| 0.0204082 0.0587624 1.49697e-06 2.93803e-06 2.718 ||| 0-0 ||| 49 668016 +a ||| in numerous ||| 0.004329 0.0587624 1.49697e-06 1.05745e-06 2.718 ||| 0-0 ||| 231 668016 +a ||| in obscurity , under ||| 0.5 0.0587624 1.49697e-06 1.79959e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| in obscurity , ||| 0.333333 0.0587624 1.49697e-06 5.01558e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| in obscurity ||| 0.2 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| in obvious progress being made in ||| 1 0.0587624 1.49697e-06 4.21039e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| in offering ||| 0.0222222 0.0811421 1.49697e-06 1.06406e-05 2.718 ||| 0-0 0-1 ||| 45 668016 +a ||| in office whose names are ||| 1 0.0587624 1.49697e-06 1.16791e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| in office whose names ||| 1 0.0587624 1.49697e-06 7.69745e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| in office whose ||| 1 0.0587624 1.49697e-06 4.8718e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in office ||| 0.004329 0.0587624 1.49697e-06 6.18249e-06 2.718 ||| 0-0 ||| 231 668016 +a ||| in on the back ||| 1 0.0587624 1.49697e-06 1.65999e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in on the ||| 0.0416667 0.0587624 1.49697e-06 2.46802e-05 2.718 ||| 0-0 ||| 24 668016 +a ||| in on ||| 0.12931 0.0685311 2.24546e-05 0.00227927 2.718 ||| 0-0 0-1 ||| 116 668016 +a ||| in one by ||| 1 0.0587624 1.49697e-06 1.31475e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| in one way at the ||| 1 0.0587624 1.49697e-06 1.38771e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in one way at ||| 1 0.0587624 1.49697e-06 2.26042e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in one way ||| 0.00877193 0.0587624 1.49697e-06 5.39814e-07 2.718 ||| 0-0 ||| 114 668016 +a ||| in one ||| 0.00168634 0.0587624 5.98788e-06 0.000250424 2.718 ||| 0-0 ||| 2372 668016 +a ||| in one ’ s ||| 0.1 0.0587624 1.49697e-06 8.29904e-10 2.718 ||| 0-0 ||| 10 668016 +a ||| in one ’ ||| 0.125 0.0587624 1.49697e-06 4.36263e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| in ones ||| 0.333333 0.0587624 1.49697e-06 1.32782e-05 2.718 ||| 0-0 ||| 3 668016 +a ||| in operation ||| 0.00380228 0.0587624 1.49697e-06 3.41869e-06 2.718 ||| 0-0 ||| 263 668016 +a ||| in opposing ||| 0.0238095 0.151766 1.49697e-06 1.28336e-05 2.718 ||| 0-0 0-1 ||| 42 668016 +a ||| in opposition , however , to ||| 1 0.229811 1.49697e-06 3.02385e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| in opposition to ||| 0.0194175 0.144287 2.99394e-06 5.38803e-07 2.718 ||| 0-0 0-2 ||| 103 668016 +a ||| in order for it to be ||| 0.0666667 0.229811 1.49697e-06 9.89167e-12 2.718 ||| 0-4 ||| 15 668016 +a ||| in order for it to ||| 0.0322581 0.229811 1.49697e-06 5.4581e-10 2.718 ||| 0-4 ||| 31 668016 +a ||| in order for them to be ||| 0.111111 0.0587624 1.49697e-06 1.06238e-12 2.718 ||| 0-0 ||| 9 668016 +a ||| in order for them to ||| 0.037037 0.0587624 1.49697e-06 5.86211e-11 2.718 ||| 0-0 ||| 27 668016 +a ||| in order for them ||| 0.05 0.0587624 1.49697e-06 6.59715e-10 2.718 ||| 0-0 ||| 20 668016 +a ||| in order for ||| 0.00506971 0.0683377 5.98788e-06 4.20074e-07 2.718 ||| 0-2 ||| 789 668016 +a ||| in order to achieve ||| 0.000858369 0.0587624 1.49697e-06 6.4973e-10 2.718 ||| 0-0 ||| 1165 668016 +a ||| in order to avoid ||| 0.00113507 0.0587624 1.49697e-06 1.00374e-10 2.718 ||| 0-0 ||| 881 668016 +a ||| in order to be able to keep ||| 0.25 0.0587624 1.49697e-06 5.95626e-16 2.718 ||| 0-0 ||| 4 668016 +a ||| in order to be able to ||| 0.00234742 0.0587624 1.49697e-06 3.82302e-12 2.718 ||| 0-0 ||| 426 668016 +a ||| in order to be able ||| 0.00746269 0.0587624 1.49697e-06 4.30238e-11 2.718 ||| 0-0 ||| 134 668016 +a ||| in order to be ||| 0.00213675 0.0587624 1.49697e-06 5.15317e-08 2.718 ||| 0-0 ||| 468 668016 +a ||| in order to clear ||| 0.111111 0.229811 1.49697e-06 1.32942e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| in order to criticize ||| 0.333333 0.0587624 1.49697e-06 3.1278e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| in order to do this ||| 0.00746269 0.229811 1.49697e-06 8.8642e-11 2.718 ||| 0-2 ||| 134 668016 +a ||| in order to do ||| 0.0121951 0.229811 1.49697e-06 1.37187e-08 2.718 ||| 0-2 ||| 82 668016 +a ||| in order to keep ||| 0.00934579 0.229811 1.49697e-06 6.2218e-10 2.718 ||| 0-2 ||| 107 668016 +a ||| in order to limit ||| 0.0147059 0.0587624 1.49697e-06 1.38192e-10 2.718 ||| 0-0 ||| 68 668016 +a ||| in order to make funds ||| 1 0.0587624 1.49697e-06 3.77026e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| in order to make ||| 0.00149254 0.0587624 1.49697e-06 4.94136e-09 2.718 ||| 0-0 ||| 670 668016 +a ||| in order to meet ||| 0.0030581 0.229811 1.49697e-06 4.85604e-10 2.718 ||| 0-2 ||| 327 668016 +a ||| in order to please the American multinationals ||| 1 0.0587624 1.49697e-06 5.56195e-22 2.718 ||| 0-0 ||| 1 668016 +a ||| in order to please the American ||| 1 0.0587624 1.49697e-06 3.97282e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| in order to please the ||| 0.166667 0.0587624 1.49697e-06 1.55188e-11 2.718 ||| 0-0 ||| 6 668016 +a ||| in order to please ||| 0.111111 0.0587624 1.49697e-06 2.52783e-10 2.718 ||| 0-0 ||| 9 668016 +a ||| in order to protect ||| 0.00195695 0.0587624 1.49697e-06 9.80993e-11 2.718 ||| 0-0 ||| 511 668016 +a ||| in order to provide a ||| 0.0185185 0.0587624 1.49697e-06 3.72822e-11 2.718 ||| 0-0 ||| 54 668016 +a ||| in order to provide ||| 0.00299401 0.0587624 1.49697e-06 8.41095e-10 2.718 ||| 0-0 ||| 334 668016 +a ||| in order to put an ||| 0.016129 0.0587624 1.49697e-06 1.3935e-11 2.718 ||| 0-0 ||| 62 668016 +a ||| in order to put ||| 0.010989 0.0587624 1.49697e-06 3.1352e-09 2.718 ||| 0-0 ||| 91 668016 +a ||| in order to take in ||| 0.5 0.0587624 1.49697e-06 9.79891e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| in order to transform ||| 0.142857 0.229811 1.49697e-06 7.18821e-12 2.718 ||| 0-2 ||| 7 668016 +a ||| in order to ||| 0.00208422 0.229811 7.33515e-05 3.99345e-06 2.718 ||| 0-2 ||| 23510 668016 +a ||| in order ||| 0.0042051 0.0587624 9.28122e-05 3.19999e-05 2.718 ||| 0-0 ||| 14744 668016 +a ||| in other respects ||| 0.00900901 0.0587624 1.49697e-06 1.5723e-09 2.718 ||| 0-0 ||| 111 668016 +a ||| in other to ||| 0.5 0.229811 1.49697e-06 9.7137e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| in other words , we ||| 0.0141844 0.0587624 2.99394e-06 2.38151e-11 2.718 ||| 0-0 ||| 141 668016 +a ||| in other words , ||| 0.00179292 0.0587624 1.19758e-05 2.09783e-09 2.718 ||| 0-0 ||| 4462 668016 +a ||| in other words let us suspend ||| 1 0.0587624 1.49697e-06 8.90373e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| in other words let us ||| 1 0.0587624 1.49697e-06 2.07064e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| in other words let ||| 1 0.0587624 1.49697e-06 7.18422e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in other words ||| 0.00249204 0.0587624 2.69455e-05 1.75911e-08 2.718 ||| 0-0 ||| 7223 668016 +a ||| in other ||| 0.00438651 0.0587624 5.2394e-05 7.78369e-05 2.718 ||| 0-0 ||| 7979 668016 +a ||| in others ||| 0.00222717 0.0587624 1.49697e-06 5.84002e-06 2.718 ||| 0-0 ||| 449 668016 +a ||| in our dealings ||| 0.0133333 0.0587624 1.49697e-06 8.61929e-10 2.718 ||| 0-0 ||| 75 668016 +a ||| in our efforts to ||| 0.00934579 0.0587624 1.49697e-06 8.95508e-10 2.718 ||| 0-0 ||| 107 668016 +a ||| in our efforts ||| 0.00735294 0.0587624 1.49697e-06 1.00779e-08 2.718 ||| 0-0 ||| 136 668016 +a ||| in our eyes ||| 0.0294118 0.0587624 1.49697e-06 4.83178e-09 2.718 ||| 0-0 ||| 34 668016 +a ||| in our interests to ||| 0.0769231 0.0587624 1.49697e-06 1.00966e-09 2.718 ||| 0-0 ||| 13 668016 +a ||| in our interests ||| 0.0131579 0.0587624 1.49697e-06 1.13625e-08 2.718 ||| 0-0 ||| 76 668016 +a ||| in our minds ||| 0.015873 0.0587624 1.49697e-06 3.96985e-09 2.718 ||| 0-0 ||| 63 668016 +a ||| in our treatment of ||| 0.5 0.0587624 1.49697e-06 2.72587e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| in our treatment ||| 0.333333 0.0587624 1.49697e-06 5.01411e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| in our ||| 0.00155463 0.0587624 3.14364e-05 8.28778e-05 2.718 ||| 0-0 ||| 13508 668016 +a ||| in paragraph 12 the ||| 0.25 0.0587624 1.49697e-06 8.15912e-13 2.718 ||| 0-0 ||| 4 668016 +a ||| in paragraph 12 ||| 0.030303 0.0587624 1.49697e-06 1.32902e-11 2.718 ||| 0-0 ||| 33 668016 +a ||| in paragraph ||| 0.00108578 0.0587624 1.49697e-06 9.49304e-07 2.718 ||| 0-0 ||| 921 668016 +a ||| in part to ||| 0.0149254 0.0587624 1.49697e-06 6.36494e-06 2.718 ||| 0-0 ||| 67 668016 +a ||| in part ||| 0.000927644 0.0587624 1.49697e-06 7.16304e-05 2.718 ||| 0-0 ||| 1078 668016 +a ||| in partial agreement with ||| 1 0.0587624 1.49697e-06 2.54907e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| in partial agreement ||| 1 0.0587624 1.49697e-06 3.98635e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in partial ||| 0.142857 0.0587624 1.49697e-06 2.16297e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| in particular , as ||| 0.00925926 0.0243476 1.49697e-06 1.37802e-08 2.718 ||| 0-3 ||| 108 668016 +a ||| in particular , helping ||| 1 0.302272 1.49697e-06 1.86964e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| in particular , in the ||| 0.0103093 0.0587624 1.49697e-06 5.79424e-09 2.718 ||| 0-3 ||| 97 668016 +a ||| in particular , in ||| 0.004329 0.0587624 1.49697e-06 9.43813e-08 2.718 ||| 0-3 ||| 231 668016 +a ||| in particular , to ||| 0.00208768 0.229811 1.49697e-06 5.50276e-07 2.718 ||| 0-3 ||| 479 668016 +a ||| in particular , ||| 0.00197802 0.0587624 2.69455e-05 4.40942e-06 2.718 ||| 0-0 ||| 9100 668016 +a ||| in particular - ||| 0.0114286 0.0587624 2.99394e-06 1.39473e-07 2.718 ||| 0-0 ||| 175 668016 +a ||| in particular are likely ||| 0.5 0.0587624 1.49697e-06 4.76295e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| in particular are ||| 0.0117647 0.0587624 1.49697e-06 5.61007e-07 2.718 ||| 0-0 ||| 85 668016 +a ||| in particular be ||| 0.111111 0.0587624 1.49697e-06 6.7009e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| in particular by stating ||| 1 0.0587624 1.49697e-06 4.54244e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in particular by ||| 0.00377358 0.0587624 1.49697e-06 1.94121e-07 2.718 ||| 0-0 ||| 265 668016 +a ||| in particular to ||| 0.00824742 0.229811 1.19758e-05 4.61429e-06 2.718 ||| 0-2 ||| 970 668016 +a ||| in particular ||| 0.00186379 0.0587624 7.18546e-05 3.69748e-05 2.718 ||| 0-0 ||| 25754 668016 +a ||| in parts ||| 0.00694444 0.0587624 1.49697e-06 3.50281e-06 2.718 ||| 0-0 ||| 144 668016 +a ||| in paying my ||| 1 0.0587624 1.49697e-06 1.306e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in paying ||| 0.0222222 0.0587624 1.49697e-06 2.03079e-06 2.718 ||| 0-0 ||| 45 668016 +a ||| in peeled ||| 0.2 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| in people registering ||| 0.2 0.0587624 1.49697e-06 1.32212e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| in people ||| 0.00408163 0.0587624 1.49697e-06 5.28846e-05 2.718 ||| 0-0 ||| 245 668016 +a ||| in person ||| 0.0136054 0.0587624 2.99394e-06 7.73863e-06 2.718 ||| 0-0 ||| 147 668016 +a ||| in physical form ||| 1 0.0587624 1.49697e-06 2.35206e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in physical ||| 0.25 0.0587624 1.49697e-06 5.1671e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| in place , ||| 0.00653595 0.0587624 2.99394e-06 1.07835e-05 2.718 ||| 0-0 ||| 306 668016 +a ||| in place and ||| 0.00862069 0.0587624 1.49697e-06 1.13264e-06 2.718 ||| 0-0 ||| 116 668016 +a ||| in place appropriate legal ||| 1 0.0587624 1.49697e-06 1.57737e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in place appropriate ||| 0.25 0.0587624 1.49697e-06 1.21711e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| in place at the ||| 0.0714286 0.204175 1.49697e-06 6.73105e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| in place at ||| 0.138889 0.0587624 7.48485e-06 3.78642e-07 2.718 ||| 0-0 ||| 36 668016 +a ||| in place for ||| 0.00552486 0.0683377 1.49697e-06 1.18703e-06 2.718 ||| 0-2 ||| 181 668016 +a ||| in place in the ||| 0.02 0.0587624 1.49697e-06 1.18823e-07 2.718 ||| 0-2 ||| 50 668016 +a ||| in place in ||| 0.011976 0.0587624 2.99394e-06 1.93548e-06 2.718 ||| 0-2 ||| 167 668016 +a ||| in place of ||| 0.020979 0.0587624 4.49091e-06 4.91582e-06 2.718 ||| 0-0 ||| 143 668016 +a ||| in place on ||| 0.0434783 0.0587624 1.49697e-06 6.05028e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| in place to ||| 0.0116279 0.229811 2.99394e-06 1.12845e-05 2.718 ||| 0-2 ||| 172 668016 +a ||| in place who is ||| 1 0.0587624 1.49697e-06 2.49958e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in place who ||| 1 0.0587624 1.49697e-06 7.97541e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in place ||| 0.0230726 0.0587624 0.000122752 9.04242e-05 2.718 ||| 0-0 ||| 3554 668016 +a ||| in places such ||| 0.5 0.0587624 1.49697e-06 6.57572e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| in places ||| 0.010989 0.0587624 2.99394e-06 3.17836e-06 2.718 ||| 0-0 ||| 182 668016 +a ||| in planning ||| 0.0107527 0.0587624 1.49697e-06 1.68832e-06 2.718 ||| 0-0 ||| 93 668016 +a ||| in playing ||| 0.05 0.0587624 1.49697e-06 3.95944e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| in point ||| 0.00287356 0.0587624 1.49697e-06 5.25602e-05 2.718 ||| 0-0 ||| 348 668016 +a ||| in policy ||| 0.0116279 0.0587624 1.49697e-06 2.36545e-05 2.718 ||| 0-0 ||| 86 668016 +a ||| in poor condition ||| 0.0666667 0.0587624 1.49697e-06 4.53743e-11 2.718 ||| 0-0 ||| 15 668016 +a ||| in poor ||| 0.0181818 0.0587624 1.49697e-06 1.77243e-06 2.718 ||| 0-0 ||| 55 668016 +a ||| in possession ||| 0.021978 0.0587624 2.99394e-06 8.65188e-07 2.718 ||| 0-0 ||| 91 668016 +a ||| in post-communist ||| 1 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in practice , and if ||| 1 0.0587624 1.49697e-06 7.90445e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in practice , and ||| 0.0222222 0.0587624 1.49697e-06 9.45961e-09 2.718 ||| 0-0 ||| 45 668016 +a ||| in practice , produce ||| 1 0.0587624 1.49697e-06 6.68355e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in practice , ||| 0.00240385 0.0587624 2.99394e-06 7.55204e-07 2.718 ||| 0-0 ||| 832 668016 +a ||| in practice and ||| 0.0128205 0.0587624 1.49697e-06 7.93227e-08 2.718 ||| 0-0 ||| 78 668016 +a ||| in practice ||| 0.00164366 0.0587624 7.48485e-06 6.3327e-06 2.718 ||| 0-0 ||| 3042 668016 +a ||| in praising ||| 0.0769231 0.127037 1.49697e-06 1.36988e-06 2.718 ||| 0-0 0-1 ||| 13 668016 +a ||| in preventing ||| 0.00390625 0.0587624 1.49697e-06 7.57039e-07 2.718 ||| 0-0 ||| 256 668016 +a ||| in previous debates : ||| 1 0.0587624 1.49697e-06 1.7889e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| in previous debates ||| 0.04 0.0587624 1.49697e-06 5.31147e-11 2.718 ||| 0-0 ||| 25 668016 +a ||| in previous ||| 0.0108696 0.0587624 1.49697e-06 3.07022e-06 2.718 ||| 0-0 ||| 92 668016 +a ||| in principle , ||| 0.00103199 0.0587624 1.49697e-06 1.09841e-06 2.718 ||| 0-0 ||| 969 668016 +a ||| in principle to ||| 0.010101 0.229811 1.49697e-06 1.14945e-06 2.718 ||| 0-2 ||| 99 668016 +a ||| in principle ||| 0.00100705 0.0587624 4.49091e-06 9.21065e-06 2.718 ||| 0-0 ||| 2979 668016 +a ||| in prison . that is ||| 1 0.0587624 1.49697e-06 1.17055e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in prison . that ||| 1 0.0587624 1.49697e-06 3.73486e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in prison . ||| 0.00740741 0.0587624 1.49697e-06 2.22028e-09 2.718 ||| 0-0 ||| 135 668016 +a ||| in prison ||| 0.00165837 0.0587624 1.49697e-06 7.33006e-07 2.718 ||| 0-0 ||| 603 668016 +a ||| in producing ||| 0.00411523 0.0587624 1.49697e-06 2.01276e-06 2.718 ||| 0-0 ||| 243 668016 +a ||| in productivity in ||| 0.125 0.0587624 1.49697e-06 3.21509e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| in professions ||| 0.2 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| in promoting ||| 0.00127389 0.0587624 1.49697e-06 1.70634e-06 2.718 ||| 0-0 ||| 785 668016 +a ||| in proper ||| 0.0625 0.0587624 1.49697e-06 5.3173e-06 2.718 ||| 0-0 ||| 16 668016 +a ||| in proportion to ||| 0.0105263 0.229811 1.49697e-06 2.26441e-07 2.718 ||| 0-2 ||| 95 668016 +a ||| in public stocks ||| 0.333333 0.0587624 1.49697e-06 2.13605e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| in public ||| 0.00455581 0.0587624 2.99394e-06 9.70933e-06 2.718 ||| 0-0 ||| 439 668016 +a ||| in punishing ||| 0.111111 0.189875 1.49697e-06 5.70183e-06 2.718 ||| 0-0 0-1 ||| 9 668016 +a ||| in purchasing ||| 0.25 0.0587624 1.49697e-06 1.74239e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| in pursuing ||| 0.00632911 0.0587624 1.49697e-06 1.47202e-06 2.718 ||| 0-0 ||| 158 668016 +a ||| in pursuit of ||| 0.0173913 0.0587624 2.99394e-06 8.10049e-08 2.718 ||| 0-0 ||| 115 668016 +a ||| in pursuit ||| 0.0243902 0.0587624 4.49091e-06 1.49005e-06 2.718 ||| 0-0 ||| 123 668016 +a ||| in pushing forward ||| 0.0526316 0.0587624 1.49697e-06 4.44618e-10 2.718 ||| 0-0 ||| 19 668016 +a ||| in pushing ||| 0.0384615 0.0587624 1.49697e-06 7.99097e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| in putting wind in ||| 0.333333 0.0587624 1.49697e-06 3.1084e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| in putting wind ||| 0.333333 0.0587624 1.49697e-06 1.45222e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| in putting ||| 0.0179641 0.0587624 4.49091e-06 6.72323e-06 2.718 ||| 0-0 ||| 167 668016 +a ||| in question , ||| 0.00274725 0.0587624 1.49697e-06 5.9277e-06 2.718 ||| 0-0 ||| 364 668016 +a ||| in question are to ||| 1 0.229811 1.49697e-06 9.41181e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| in question here ||| 0.0833333 0.0587624 1.49697e-06 1.00794e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| in question to ||| 0.0208333 0.0587624 1.49697e-06 4.41681e-06 2.718 ||| 0-0 ||| 48 668016 +a ||| in question ||| 0.0112173 0.0587624 4.04182e-05 4.97063e-05 2.718 ||| 0-0 ||| 2407 668016 +a ||| in quite a ||| 0.0625 0.0587624 1.49697e-06 1.03892e-06 2.718 ||| 0-0 ||| 16 668016 +a ||| in quite ||| 0.0465116 0.0587624 2.99394e-06 2.34382e-05 2.718 ||| 0-0 ||| 43 668016 +a ||| in raising awareness in ||| 0.5 0.0587624 1.49697e-06 8.84407e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| in reaching a ||| 0.0238095 0.0587624 1.49697e-06 7.19065e-08 2.718 ||| 0-0 ||| 42 668016 +a ||| in reaching ||| 0.0164835 0.0587624 4.49091e-06 1.62223e-06 2.718 ||| 0-0 ||| 182 668016 +a ||| in real terms ||| 0.00578035 0.0587624 1.49697e-06 1.18638e-08 2.718 ||| 0-0 ||| 173 668016 +a ||| in real ||| 0.0111111 0.0587624 1.49697e-06 1.08088e-05 2.718 ||| 0-0 ||| 90 668016 +a ||| in reality in line with ||| 0.5 0.0571592 1.49697e-06 1.50648e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| in reality ||| 0.000725163 0.0587624 1.49697e-06 4.01952e-06 2.718 ||| 0-0 ||| 1379 668016 +a ||| in receipt ||| 0.0204082 0.0587624 1.49697e-06 2.82388e-07 2.718 ||| 0-0 ||| 49 668016 +a ||| in receiving ||| 0.02 0.0587624 1.49697e-06 1.79647e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| in recognition of ||| 0.015625 0.0587624 1.49697e-06 9.17837e-08 2.718 ||| 0-0 ||| 64 668016 +a ||| in recognition ||| 0.011236 0.0587624 1.49697e-06 1.68832e-06 2.718 ||| 0-0 ||| 89 668016 +a ||| in record ||| 1 0.0587624 1.49697e-06 3.3526e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| in reducing ||| 0.00280112 0.0587624 1.49697e-06 1.59819e-06 2.718 ||| 0-0 ||| 357 668016 +a ||| in refuse and ||| 1 0.0587624 1.49697e-06 7.82691e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in refuse ||| 1 0.0587624 1.49697e-06 6.24858e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| in regard ||| 0.00251889 0.0587624 1.49697e-06 4.09102e-05 2.718 ||| 0-0 ||| 397 668016 +a ||| in regions ||| 0.00401606 0.0587624 1.49697e-06 4.9508e-06 2.718 ||| 0-0 ||| 249 668016 +a ||| in relation to Mr Swoboda 's report ||| 1 0.229811 1.49697e-06 2.32405e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| in relation to Mr Swoboda 's ||| 1 0.229811 1.49697e-06 5.6698e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| in relation to Mr Swoboda ||| 1 0.229811 1.49697e-06 2.97721e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| in relation to Mr ||| 0.111111 0.229811 1.49697e-06 1.19088e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| in relation to the ||| 0.00034904 0.0587624 1.49697e-06 7.9744e-08 2.718 ||| 0-0 ||| 2865 668016 +a ||| in relation to ||| 0.00550964 0.229811 5.98788e-05 1.82427e-06 2.718 ||| 0-2 ||| 7260 668016 +a ||| in relation ||| 0.00684411 0.0587624 4.04182e-05 1.46181e-05 2.718 ||| 0-0 ||| 3945 668016 +a ||| in reply to ||| 0.0232558 0.229811 1.19758e-05 2.15943e-07 2.718 ||| 0-2 ||| 344 668016 +a ||| in reply ||| 0.0080429 0.0587624 4.49091e-06 1.73038e-06 2.718 ||| 0-0 ||| 373 668016 +a ||| in representing them are ||| 1 0.126874 1.49697e-06 8.5048e-10 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| in representing them ||| 1 0.126874 1.49697e-06 5.60533e-08 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| in representing ||| 0.0454545 0.126874 1.49697e-06 2.08967e-05 2.718 ||| 0-0 0-1 ||| 22 668016 +a ||| in respect for ||| 0.0188679 0.06355 1.49697e-06 9.57755e-07 2.718 ||| 0-0 0-2 ||| 53 668016 +a ||| in respect of both ||| 0.142857 0.0205477 1.49697e-06 3.29921e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| in respect of the ||| 0.00260078 0.0587624 2.99394e-06 8.67474e-08 2.718 ||| 0-0 ||| 769 668016 +a ||| in respect of ||| 0.0138135 0.0587624 4.19152e-05 1.41301e-06 2.718 ||| 0-0 ||| 2027 668016 +a ||| in respect ||| 0.0159329 0.0587624 5.68849e-05 2.59917e-05 2.718 ||| 0-0 ||| 2385 668016 +a ||| in response to a ||| 0.0403226 0.0587624 7.48485e-06 2.36648e-08 2.718 ||| 0-0 ||| 124 668016 +a ||| in response to the honourable Members ||| 1 0.0587624 1.49697e-06 2.52359e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| in response to the honourable ||| 0.5 0.0587624 1.49697e-06 1.71091e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| in response to the ||| 0.00176367 0.0587624 1.49697e-06 3.2776e-08 2.718 ||| 0-0 ||| 567 668016 +a ||| in response to ||| 0.0165344 0.229811 3.74243e-05 7.49803e-07 2.718 ||| 0-2 ||| 1512 668016 +a ||| in response ||| 0.0121107 0.0587624 3.14364e-05 6.00825e-06 2.718 ||| 0-0 ||| 1734 668016 +a ||| in saying ||| 0.0060241 0.0587624 4.49091e-06 1.06586e-05 2.718 ||| 0-0 ||| 498 668016 +a ||| in seeking ||| 0.00384615 0.0587624 1.49697e-06 3.04618e-06 2.718 ||| 0-0 ||| 260 668016 +a ||| in selective ||| 1 0.0587624 1.49697e-06 1.74239e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| in setting the course ||| 1 0.0587624 1.49697e-06 4.42118e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in setting the ||| 0.03125 0.0587624 1.49697e-06 3.50414e-07 2.718 ||| 0-0 ||| 32 668016 +a ||| in setting up ||| 0.015873 0.0587624 2.99394e-06 1.94666e-08 2.718 ||| 0-0 ||| 126 668016 +a ||| in setting ||| 0.0212766 0.0587624 5.98788e-06 5.70784e-06 2.718 ||| 0-0 ||| 188 668016 +a ||| in several ||| 0.00126904 0.0587624 1.49697e-06 3.9354e-06 2.718 ||| 0-0 ||| 788 668016 +a ||| in short supply , and ||| 0.5 0.0587624 1.49697e-06 6.52179e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| in short supply , ||| 0.142857 0.0587624 1.49697e-06 5.20664e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| in short supply ||| 0.0263158 0.0587624 1.49697e-06 4.36598e-10 2.718 ||| 0-0 ||| 38 668016 +a ||| in short ||| 0.00156863 0.0587624 2.99394e-06 8.47764e-06 2.718 ||| 0-0 ||| 1275 668016 +a ||| in showing ||| 0.0175439 0.0587624 1.49697e-06 1.85655e-06 2.718 ||| 0-0 ||| 57 668016 +a ||| in signing ||| 0.025 0.0587624 1.49697e-06 6.72924e-07 2.718 ||| 0-0 ||| 40 668016 +a ||| in simple terms , ||| 0.03125 0.0587624 1.49697e-06 3.39744e-10 2.718 ||| 0-0 ||| 32 668016 +a ||| in simple terms ||| 0.0227273 0.0587624 1.49697e-06 2.84889e-09 2.718 ||| 0-0 ||| 44 668016 +a ||| in simple ||| 0.0714286 0.0587624 2.99394e-06 2.59556e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| in situations ||| 0.00555556 0.0587624 1.49697e-06 2.05482e-06 2.718 ||| 0-0 ||| 180 668016 +a ||| in size from ||| 1 0.0587624 1.49697e-06 3.61871e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in size ||| 0.0151515 0.0587624 1.49697e-06 2.24709e-06 2.718 ||| 0-0 ||| 66 668016 +a ||| in small ||| 0.00480769 0.0587624 1.49697e-06 7.69657e-06 2.718 ||| 0-0 ||| 208 668016 +a ||| in smuggling , as has already ||| 1 0.0587624 1.49697e-06 8.71469e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| in smuggling , as has ||| 1 0.0587624 1.49697e-06 1.88182e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in smuggling , as ||| 1 0.0587624 1.49697e-06 3.65579e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in smuggling , ||| 1 0.0587624 1.49697e-06 3.58256e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in smuggling ||| 0.117647 0.0587624 2.99394e-06 3.00412e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| in so doing ||| 0.00197628 0.0587624 1.49697e-06 5.00612e-08 2.718 ||| 0-0 ||| 506 668016 +a ||| in so ||| 0.00940439 0.0587624 4.49091e-06 0.000136369 2.718 ||| 0-0 ||| 319 668016 +a ||| in society ||| 0.00242424 0.0587624 2.99394e-06 3.47878e-06 2.718 ||| 0-0 ||| 825 668016 +a ||| in some matters while it is infuriatingly ||| 1 0.0587624 1.49697e-06 5.0315e-22 2.718 ||| 0-0 ||| 1 668016 +a ||| in some matters while it is ||| 1 0.0587624 1.49697e-06 1.25787e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| in some matters while it ||| 1 0.0587624 1.49697e-06 4.0135e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| in some matters while ||| 1 0.0587624 1.49697e-06 2.2569e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in some matters ||| 0.2 0.0587624 1.49697e-06 1.21079e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| in some way , ||| 0.025 0.0587624 1.49697e-06 1.68244e-08 2.718 ||| 0-0 ||| 40 668016 +a ||| in some way to ||| 0.0526316 0.144287 1.49697e-06 4.94203e-08 2.718 ||| 0-0 0-3 ||| 19 668016 +a ||| in some way ||| 0.00547945 0.0587624 2.99394e-06 1.41079e-07 2.718 ||| 0-0 ||| 365 668016 +a ||| in some ways ||| 0.0121951 0.0587624 2.99394e-06 6.30917e-09 2.718 ||| 0-0 ||| 164 668016 +a ||| in some ||| 0.001844 0.0587624 1.49697e-05 6.54479e-05 2.718 ||| 0-0 ||| 5423 668016 +a ||| in something of ||| 0.125 0.0587624 1.49697e-06 1.80791e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| in something ||| 0.0192308 0.0587624 1.49697e-06 3.32557e-05 2.718 ||| 0-0 ||| 52 668016 +a ||| in speaking and in ||| 1 0.0587624 1.49697e-06 1.84929e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| in spite of ||| 0.00104167 0.0587624 2.99394e-06 6.23868e-08 2.718 ||| 0-0 ||| 1920 668016 +a ||| in spite ||| 0.00150602 0.0587624 4.49091e-06 1.14758e-06 2.718 ||| 0-0 ||| 1992 668016 +a ||| in spring ||| 0.00434783 0.0587624 1.49697e-06 7.81072e-07 2.718 ||| 0-0 ||| 230 668016 +a ||| in standing side ||| 1 0.0587624 1.49697e-06 6.96697e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in standing ||| 0.0714286 0.0587624 1.49697e-06 3.17836e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| in step with ||| 0.025 0.0587624 1.49697e-06 5.66691e-08 2.718 ||| 0-0 ||| 40 668016 +a ||| in step ||| 0.0181818 0.0587624 1.49697e-06 8.86217e-06 2.718 ||| 0-0 ||| 55 668016 +a ||| in still taking ||| 1 0.0587624 1.49697e-06 1.9233e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| in still ||| 0.2 0.0587624 2.99394e-06 4.52541e-05 2.718 ||| 0-0 ||| 10 668016 +a ||| in stone ||| 0.0144928 0.0587624 1.49697e-06 8.41155e-07 2.718 ||| 0-0 ||| 69 668016 +a ||| in substance ||| 0.00719424 0.0587624 1.49697e-06 1.77243e-06 2.718 ||| 0-0 ||| 139 668016 +a ||| in successive downturns ||| 0.333333 0.0587624 1.49697e-06 6.00825e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| in successive ||| 0.037037 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-0 ||| 27 668016 +a ||| in such a way as to ||| 0.00724638 0.0587624 2.99394e-06 1.07695e-11 2.718 ||| 0-0 ||| 276 668016 +a ||| in such a way as ||| 0.0166667 0.0587624 5.98788e-06 1.21199e-10 2.718 ||| 0-0 ||| 240 668016 +a ||| in such a way that ||| 0.0013245 0.0587624 1.49697e-06 1.99793e-10 2.718 ||| 0-0 ||| 755 668016 +a ||| in such a way ||| 0.00649351 0.0587624 1.04788e-05 1.18772e-08 2.718 ||| 0-0 ||| 1078 668016 +a ||| in such a ||| 0.0142721 0.0587624 2.24546e-05 5.5099e-06 2.718 ||| 0-0 ||| 1051 668016 +a ||| in such ||| 0.0125392 0.0587624 4.7903e-05 0.000124305 2.718 ||| 0-0 ||| 2552 668016 +a ||| in suffering for ||| 1 0.0683377 1.49697e-06 3.49405e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| in sufficient ||| 0.0487805 0.0587624 2.99394e-06 2.92001e-06 2.718 ||| 0-0 ||| 41 668016 +a ||| in support of ||| 0.00273224 0.0587624 2.99394e-06 1.11676e-06 2.718 ||| 0-0 ||| 732 668016 +a ||| in support ||| 0.003003 0.0587624 4.49091e-06 2.05422e-05 2.718 ||| 0-0 ||| 999 668016 +a ||| in supporting ||| 0.00460829 0.0587624 2.99394e-06 1.92264e-06 2.718 ||| 0-0 ||| 434 668016 +a ||| in sympathy ||| 0.0454545 0.0587624 1.49697e-06 9.31279e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| in tabling ||| 0.0147059 0.0587624 1.49697e-06 4.56627e-07 2.718 ||| 0-0 ||| 68 668016 +a ||| in tackling ||| 0.0105634 0.0587624 4.49091e-06 1.23169e-06 2.718 ||| 0-0 ||| 284 668016 +a ||| in taking care ||| 0.25 0.0587624 1.49697e-06 2.59181e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| in taking ||| 0.0056338 0.0587624 2.99394e-06 2.55351e-05 2.718 ||| 0-0 ||| 355 668016 +a ||| in talking ||| 0.0384615 0.0587624 1.49697e-06 6.57303e-06 2.718 ||| 0-0 ||| 26 668016 +a ||| in tandem ||| 0.00714286 0.0587624 1.49697e-06 1.74239e-07 2.718 ||| 0-0 ||| 140 668016 +a ||| in temperatures ||| 0.0714286 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| in terms of European ||| 0.333333 0.0587624 1.49697e-06 1.19883e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| in terms of content ||| 0.0136986 0.0587624 1.49697e-06 1.76746e-10 2.718 ||| 0-0 ||| 73 668016 +a ||| in terms of political ||| 0.25 0.0587624 1.49697e-06 6.39944e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| in terms of redistribution ||| 1 0.0188479 1.49697e-06 9.72867e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| in terms of the ||| 0.00104112 0.0587624 2.99394e-06 2.20097e-07 2.718 ||| 0-0 ||| 1921 668016 +a ||| in terms of ||| 0.00473934 0.0587624 7.93394e-05 3.58512e-06 2.718 ||| 0-0 ||| 11183 668016 +a ||| in terms ||| 0.00874848 0.0587624 0.000161673 6.59466e-05 2.718 ||| 0-0 ||| 12345 668016 +a ||| in terror as ||| 0.2 0.0587624 1.49697e-06 2.45242e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| in terror ||| 0.285714 0.0587624 2.99394e-06 2.4033e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| in testing ||| 0.0714286 0.0587624 1.49697e-06 4.32594e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| in that , ||| 0.00877193 0.0587624 1.49697e-06 0.000120529 2.718 ||| 0-0 ||| 114 668016 +a ||| in that case , to ||| 0.5 0.229811 1.49697e-06 1.60929e-08 2.718 ||| 0-4 ||| 2 668016 +a ||| in that case ||| 0.00201613 0.0587624 1.49697e-06 1.08133e-06 2.718 ||| 0-0 ||| 496 668016 +a ||| in that it ||| 0.0047619 0.0587624 1.49697e-06 1.79732e-05 2.718 ||| 0-0 ||| 210 668016 +a ||| in that judgment ||| 0.333333 0.0587624 1.49697e-06 1.56656e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| in that respect ||| 0.00261438 0.0587624 2.99394e-06 4.37222e-07 2.718 ||| 0-0 ||| 765 668016 +a ||| in that way ||| 0.0014771 0.0587624 1.49697e-06 2.17863e-06 2.718 ||| 0-0 ||| 677 668016 +a ||| in that we are ||| 0.0769231 0.0587624 1.49697e-06 1.74085e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| in that we ||| 0.027027 0.0587624 1.49697e-06 1.14736e-05 2.718 ||| 0-0 ||| 37 668016 +a ||| in that ||| 0.00196528 0.0587624 2.69455e-05 0.00101068 2.718 ||| 0-0 ||| 9159 668016 +a ||| in the ' ||| 0.00775194 0.0587624 1.49697e-06 1.26699e-05 2.718 ||| 0-0 ||| 129 668016 +a ||| in the Chamber ||| 0.00126904 0.0587624 1.49697e-06 9.70095e-08 2.718 ||| 0-0 ||| 788 668016 +a ||| in the Commission 's view ||| 0.00892857 0.0587624 1.49697e-06 3.70626e-12 2.718 ||| 0-0 ||| 112 668016 +a ||| in the Commission 's ||| 0.0106383 0.0587624 1.49697e-06 4.10302e-09 2.718 ||| 0-0 ||| 94 668016 +a ||| in the Commission ||| 0.0005005 0.0587624 1.49697e-06 2.1545e-06 2.718 ||| 0-0 ||| 1998 668016 +a ||| in the Committee ||| 0.000271887 0.0587624 1.49697e-06 5.62876e-07 2.718 ||| 0-0 ||| 3678 668016 +a ||| in the Council , of course . ||| 1 0.0587624 1.49697e-06 3.16028e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| in the Council , of course ||| 1 0.0587624 1.49697e-06 1.04334e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in the Council , of ||| 0.25 0.0587624 1.49697e-06 8.26933e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| in the Council , ||| 0.00184843 0.0587624 1.49697e-06 1.5211e-07 2.718 ||| 0-0 ||| 541 668016 +a ||| in the Council ||| 0.000295334 0.0587624 1.49697e-06 1.27551e-06 2.718 ||| 0-0 ||| 3386 668016 +a ||| in the Czech Republic ||| 0.00332226 0.0587624 1.49697e-06 1.33157e-12 2.718 ||| 0-0 ||| 301 668016 +a ||| in the Czech ||| 0.0909091 0.0587624 1.49697e-06 2.80332e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| in the Democratic Republic ||| 0.00526316 0.0587624 1.49697e-06 3.4691e-12 2.718 ||| 0-0 ||| 190 668016 +a ||| in the Democratic ||| 0.142857 0.0587624 1.49697e-06 7.30337e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| in the EU , we ||| 0.0909091 0.0587624 1.49697e-06 2.47086e-09 2.718 ||| 0-0 ||| 11 668016 +a ||| in the EU , ||| 0.00106838 0.0587624 1.49697e-06 2.17652e-07 2.718 ||| 0-0 ||| 936 668016 +a ||| in the EU ||| 0.000528541 0.0587624 4.49091e-06 1.82511e-06 2.718 ||| 0-0 ||| 5676 668016 +a ||| in the European Parliament ||| 0.000448632 0.0587624 2.99394e-06 7.07984e-09 2.718 ||| 0-0 ||| 4458 668016 +a ||| in the European Union , ||| 0.00058309 0.0587624 1.49697e-06 8.19887e-10 2.718 ||| 0-0 ||| 1715 668016 +a ||| in the European Union ||| 0.000593531 0.0587624 8.98182e-06 6.87509e-09 2.718 ||| 0-0 ||| 10109 668016 +a ||| in the European ||| 0.0113924 0.0587624 1.34727e-05 1.23342e-05 2.718 ||| 0-0 ||| 790 668016 +a ||| in the Group ||| 0.00318471 0.0587624 1.49697e-06 1.19989e-06 2.718 ||| 0-0 ||| 314 668016 +a ||| in the House during ||| 0.2 0.0587624 1.49697e-06 9.29892e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| in the House ||| 0.000747384 0.0587624 1.49697e-06 9.22512e-07 2.718 ||| 0-0 ||| 1338 668016 +a ||| in the Member States conform to ||| 1 0.229811 1.49697e-06 1.5847e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| in the Middle East ||| 0.0013468 0.0587624 2.99394e-06 1.23523e-12 2.718 ||| 0-0 ||| 1485 668016 +a ||| in the Middle ||| 0.00145985 0.0587624 2.99394e-06 4.1312e-08 2.718 ||| 0-0 ||| 1370 668016 +a ||| in the Republic ||| 0.00448431 0.0587624 1.49697e-06 1.75207e-07 2.718 ||| 0-0 ||| 223 668016 +a ||| in the Rules of Procedure as to ||| 1 0.0188479 1.49697e-06 1.5917e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| in the Rules of Procedure as ||| 1 0.0188479 1.49697e-06 1.79129e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| in the Rules of Procedure ||| 0.0125 0.0188479 1.49697e-06 1.7554e-13 2.718 ||| 0-3 ||| 80 668016 +a ||| in the Rules of ||| 0.04 0.0188479 1.49697e-06 2.75574e-09 2.718 ||| 0-3 ||| 25 668016 +a ||| in the Treaty , then at ||| 1 0.204175 1.49697e-06 7.3524e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| in the Turkish ||| 0.0434783 0.0587624 1.49697e-06 1.10288e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| in the Union to join them ||| 1 0.229811 1.49697e-06 3.22102e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| in the Union to join ||| 1 0.229811 1.49697e-06 1.2008e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| in the Union to ||| 0.047619 0.229811 1.49697e-06 2.56581e-07 2.718 ||| 0-3 ||| 21 668016 +a ||| in the United States to ||| 0.0909091 0.229811 1.49697e-06 2.68868e-11 2.718 ||| 0-4 ||| 11 668016 +a ||| in the accumulation of ||| 0.333333 0.0388051 1.49697e-06 1.52743e-10 2.718 ||| 0-0 0-3 ||| 3 668016 +a ||| in the achievement ||| 0.025641 0.0587624 1.49697e-06 8.88946e-08 2.718 ||| 0-0 ||| 39 668016 +a ||| in the actual body of ||| 1 0.0587624 1.49697e-06 2.48377e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in the actual body ||| 0.333333 0.0587624 1.49697e-06 4.56878e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| in the actual ||| 0.03125 0.0587624 1.49697e-06 5.33736e-07 2.718 ||| 0-0 ||| 32 668016 +a ||| in the air ||| 0.00671141 0.0587624 1.49697e-06 2.0324e-07 2.718 ||| 0-0 ||| 149 668016 +a ||| in the area of ||| 0.000236967 0.0587624 1.49697e-06 8.32783e-08 2.718 ||| 0-0 ||| 4220 668016 +a ||| in the area to ||| 0.0588235 0.229811 1.49697e-06 1.9117e-07 2.718 ||| 0-3 ||| 17 668016 +a ||| in the area ||| 0.000403877 0.0587624 2.99394e-06 1.53186e-06 2.718 ||| 0-0 ||| 4952 668016 +a ||| in the back ||| 0.0243902 0.0587624 1.49697e-06 2.48093e-06 2.718 ||| 0-0 ||| 41 668016 +a ||| in the best ||| 0.00238663 0.0587624 1.49697e-06 5.10867e-07 2.718 ||| 0-0 ||| 419 668016 +a ||| in the breach ||| 0.5 0.0587624 1.49697e-06 4.1312e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| in the business of ||| 0.030303 0.0587624 1.49697e-06 2.50456e-08 2.718 ||| 0-0 ||| 33 668016 +a ||| in the business ||| 0.046875 0.0587624 4.49091e-06 4.60703e-07 2.718 ||| 0-0 ||| 64 668016 +a ||| in the case of a ||| 0.00934579 0.0587624 1.49697e-06 9.50976e-09 2.718 ||| 0-0 ||| 107 668016 +a ||| in the case of ||| 0.00080171 0.0587624 4.49091e-06 2.14542e-07 2.718 ||| 0-0 ||| 3742 668016 +a ||| in the case ||| 0.00137206 0.0587624 8.98182e-06 3.9464e-06 2.718 ||| 0-0 ||| 4373 668016 +a ||| in the certain ||| 1 0.0587624 1.49697e-06 1.05124e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| in the chamber ||| 0.03125 0.0587624 1.49697e-06 1.32789e-08 2.718 ||| 0-0 ||| 32 668016 +a ||| in the cities or ||| 0.25 0.0587624 1.49697e-06 8.05475e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| in the cities ||| 0.0151515 0.0587624 1.49697e-06 7.04517e-08 2.718 ||| 0-0 ||| 66 668016 +a ||| in the cold ||| 0.04 0.0587624 2.99394e-06 4.24186e-08 2.718 ||| 0-0 ||| 50 668016 +a ||| in the coming weeks and ||| 0.0163934 0.0587624 1.49697e-06 9.69536e-14 2.718 ||| 0-0 ||| 61 668016 +a ||| in the coming weeks ||| 0.00425532 0.0587624 1.49697e-06 7.74025e-12 2.718 ||| 0-0 ||| 235 668016 +a ||| in the coming ||| 0.000841043 0.0587624 1.49697e-06 7.1669e-07 2.718 ||| 0-0 ||| 1189 668016 +a ||| in the context of the Agenda 21 ||| 1 0.0587624 1.49697e-06 6.44479e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| in the context of the Agenda ||| 0.5 0.0587624 1.49697e-06 7.7648e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| in the context of the ||| 0.000567537 0.0587624 1.49697e-06 1.65209e-09 2.718 ||| 0-0 ||| 1762 668016 +a ||| in the context of ||| 0.000584283 0.0587624 2.99394e-06 2.69105e-08 2.718 ||| 0-0 ||| 3423 668016 +a ||| in the context ||| 0.000486027 0.0587624 2.99394e-06 4.95006e-07 2.718 ||| 0-0 ||| 4115 668016 +a ||| in the course of ||| 0.00185874 0.0587624 2.99394e-06 2.53003e-07 2.718 ||| 0-0 ||| 1076 668016 +a ||| in the course ||| 0.00149589 0.0587624 2.99394e-06 4.65387e-06 2.718 ||| 0-0 ||| 1337 668016 +a ||| in the court of ||| 0.0588235 0.0188479 1.49697e-06 1.16215e-09 2.718 ||| 0-3 ||| 17 668016 +a ||| in the creation ||| 0.00347222 0.0587624 1.49697e-06 1.7115e-07 2.718 ||| 0-0 ||| 288 668016 +a ||| in the current crisis ||| 0.0196078 0.0587624 1.49697e-06 4.39495e-11 2.718 ||| 0-0 ||| 51 668016 +a ||| in the current ||| 0.00172117 0.0587624 1.49697e-06 6.07877e-07 2.718 ||| 0-0 ||| 581 668016 +a ||| in the death or ||| 1 0.0587624 1.49697e-06 2.28991e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in the death ||| 0.0769231 0.0587624 1.49697e-06 2.0029e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| in the debate - ||| 0.0588235 0.0587624 1.49697e-06 2.75351e-09 2.718 ||| 0-0 ||| 17 668016 +a ||| in the debate ||| 0.000577034 0.0587624 1.49697e-06 7.29969e-07 2.718 ||| 0-0 ||| 1733 668016 +a ||| in the direct tradition of ||| 1 0.0188479 1.49697e-06 9.00609e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| in the direction of ||| 0.0154242 0.0587624 8.98182e-06 1.81877e-08 2.718 ||| 0-0 ||| 389 668016 +a ||| in the direction ||| 0.010582 0.0587624 8.98182e-06 3.34554e-07 2.718 ||| 0-0 ||| 567 668016 +a ||| in the disaster ||| 0.0769231 0.0587624 1.49697e-06 9.2952e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| in the discussion on ||| 0.0172414 0.0782999 1.49697e-06 4.30701e-09 2.718 ||| 0-3 ||| 58 668016 +a ||| in the end , ||| 0.00172414 0.0587624 1.49697e-06 1.91392e-07 2.718 ||| 0-0 ||| 580 668016 +a ||| in the end in ||| 0.142857 0.0587624 1.49697e-06 3.4352e-08 2.718 ||| 0-3 ||| 7 668016 +a ||| in the end ||| 0.00266134 0.0587624 5.98788e-06 1.6049e-06 2.718 ||| 0-0 ||| 1503 668016 +a ||| in the event of ||| 0.000633312 0.0587624 1.49697e-06 2.09349e-08 2.718 ||| 0-0 ||| 1579 668016 +a ||| in the event ||| 0.000565291 0.0587624 1.49697e-06 3.85087e-07 2.718 ||| 0-0 ||| 1769 668016 +a ||| in the extreme ||| 0.0238095 0.0587624 1.49697e-06 6.78697e-08 2.718 ||| 0-0 ||| 42 668016 +a ||| in the face of ||| 0.00218818 0.0587624 2.99394e-06 3.35479e-08 2.718 ||| 0-0 ||| 914 668016 +a ||| in the face ||| 0.0020284 0.0587624 2.99394e-06 6.17098e-07 2.718 ||| 0-0 ||| 986 668016 +a ||| in the fact ||| 0.00961538 0.0587624 5.98788e-06 1.08049e-05 2.718 ||| 0-0 ||| 416 668016 +a ||| in the field ||| 0.000196618 0.0587624 1.49697e-06 5.389e-07 2.718 ||| 0-0 ||| 5086 668016 +a ||| in the first place ||| 0.00428571 0.0587624 4.49091e-06 2.98882e-09 2.718 ||| 0-0 ||| 700 668016 +a ||| in the first stage , the aforementioned ||| 1 0.0587624 1.49697e-06 1.56712e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| in the first stage , the ||| 1 0.0587624 1.49697e-06 2.17656e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in the first stage , ||| 0.142857 0.0587624 1.49697e-06 3.54536e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| in the first stage ||| 0.0344828 0.0587624 1.49697e-06 2.97293e-10 2.718 ||| 0-0 ||| 29 668016 +a ||| in the first ||| 0.00297915 0.0587624 8.98182e-06 1.98593e-06 2.718 ||| 0-0 ||| 2014 668016 +a ||| in the following ways , and on ||| 1 0.0782999 1.49697e-06 9.17392e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| in the foot ||| 0.037037 0.0587624 1.49697e-06 8.22552e-08 2.718 ||| 0-0 ||| 27 668016 +a ||| in the foreseeable future ||| 0.00680272 0.0587624 1.49697e-06 4.60452e-12 2.718 ||| 0-0 ||| 147 668016 +a ||| in the foreseeable ||| 0.0769231 0.0587624 1.49697e-06 1.73363e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| in the form of ||| 0.001287 0.0587624 2.99394e-06 9.12792e-08 2.718 ||| 0-0 ||| 1554 668016 +a ||| in the form ||| 0.00256279 0.0587624 7.48485e-06 1.67904e-06 2.718 ||| 0-0 ||| 1951 668016 +a ||| in the former case , ||| 0.25 0.0587624 1.49697e-06 2.13194e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| in the former case ||| 0.125 0.0587624 1.49697e-06 1.78772e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| in the former ||| 0.00289855 0.0587624 1.49697e-06 1.67092e-07 2.718 ||| 0-0 ||| 345 668016 +a ||| in the forms in ||| 1 0.0587624 1.49697e-06 7.04252e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in the forms ||| 0.125 0.0587624 1.49697e-06 3.29021e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| in the frame ||| 0.166667 0.0587624 1.49697e-06 4.3894e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| in the future too , for ||| 0.333333 0.0683377 1.49697e-06 2.08736e-12 2.718 ||| 0-5 ||| 3 668016 +a ||| in the future ||| 0.000570858 0.0587624 5.98788e-06 9.79685e-07 2.718 ||| 0-0 ||| 7007 668016 +a ||| in the grip ||| 0.0384615 0.0587624 1.49697e-06 6.12303e-08 2.718 ||| 0-0 ||| 26 668016 +a ||| in the ground and in ||| 1 0.0587624 1.49697e-06 1.15707e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| in the habit of ||| 0.0344828 0.0587624 1.49697e-06 1.52399e-09 2.718 ||| 0-0 ||| 29 668016 +a ||| in the habit ||| 0.0322581 0.0587624 1.49697e-06 2.80332e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| in the hands of the ||| 0.00328947 0.0587624 1.49697e-06 1.24091e-09 2.718 ||| 0-0 ||| 304 668016 +a ||| in the hands of ||| 0.00365631 0.0587624 2.99394e-06 2.0213e-08 2.718 ||| 0-0 ||| 547 668016 +a ||| in the hands ||| 0.00478469 0.0587624 4.49091e-06 3.71808e-07 2.718 ||| 0-0 ||| 627 668016 +a ||| in the head , ||| 0.333333 0.0587624 1.49697e-06 3.18033e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| in the head ||| 0.0666667 0.0587624 1.49697e-06 2.66684e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| in the hope that ||| 0.00613497 0.0587624 2.99394e-06 1.0877e-08 2.718 ||| 0-0 ||| 326 668016 +a ||| in the hope ||| 0.0013369 0.0587624 1.49697e-06 6.46607e-07 2.718 ||| 0-0 ||| 748 668016 +a ||| in the illegal ||| 0.5 0.0587624 1.49697e-06 1.1951e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| in the images of ||| 0.333333 0.0587624 1.49697e-06 8.6226e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| in the images ||| 0.142857 0.0587624 1.49697e-06 1.58609e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| in the interest of the committee ||| 1 0.0587624 1.49697e-06 1.07004e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| in the interest of the ||| 0.00671141 0.0587624 1.49697e-06 1.38248e-09 2.718 ||| 0-0 ||| 149 668016 +a ||| in the interest of ||| 0.00660793 0.0587624 4.49091e-06 2.2519e-08 2.718 ||| 0-0 ||| 454 668016 +a ||| in the interest ||| 0.00399202 0.0587624 2.99394e-06 4.14227e-07 2.718 ||| 0-0 ||| 501 668016 +a ||| in the interests of ||| 0.00217865 0.0587624 5.98788e-06 2.74921e-08 2.718 ||| 0-0 ||| 1836 668016 +a ||| in the interests ||| 0.00274574 0.0587624 7.48485e-06 5.05703e-07 2.718 ||| 0-0 ||| 1821 668016 +a ||| in the launch ||| 0.111111 0.0587624 1.49697e-06 7.30337e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| in the lead ||| 0.025641 0.0587624 1.49697e-06 7.1005e-07 2.718 ||| 0-0 ||| 39 668016 +a ||| in the life ||| 0.00877193 0.0587624 1.49697e-06 5.58819e-07 2.718 ||| 0-0 ||| 114 668016 +a ||| in the light of the fact ||| 0.0133333 0.0587624 1.49697e-06 6.26749e-12 2.718 ||| 0-0 ||| 75 668016 +a ||| in the light of the ||| 0.000876424 0.0587624 1.49697e-06 2.13959e-09 2.718 ||| 0-0 ||| 1141 668016 +a ||| in the light of ||| 0.00224115 0.0587624 7.48485e-06 3.48513e-08 2.718 ||| 0-0 ||| 2231 668016 +a ||| in the light ||| 0.00157171 0.0587624 5.98788e-06 6.41074e-07 2.718 ||| 0-0 ||| 2545 668016 +a ||| in the longer ||| 0.00384615 0.0587624 1.49697e-06 6.91607e-07 2.718 ||| 0-0 ||| 260 668016 +a ||| in the main , to ||| 0.333333 0.229811 1.49697e-06 5.47304e-09 2.718 ||| 0-4 ||| 3 668016 +a ||| in the manner in which they adopt ||| 1 0.0587624 1.49697e-06 4.4394e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| in the manner in which they ||| 0.25 0.0587624 1.49697e-06 4.26866e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| in the manner in which ||| 0.0833333 0.0587624 1.49697e-06 1.3078e-10 2.718 ||| 0-3 ||| 12 668016 +a ||| in the manner in ||| 0.0769231 0.0587624 1.49697e-06 1.53957e-08 2.718 ||| 0-3 ||| 13 668016 +a ||| in the market that will touch ||| 1 0.0561595 1.49697e-06 1.54786e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| in the market that will ||| 1 0.0561595 1.49697e-06 7.03571e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| in the matter ||| 0.00278552 0.0587624 1.49697e-06 3.82689e-06 2.718 ||| 0-0 ||| 359 668016 +a ||| in the medium and ||| 0.00714286 0.0587624 1.49697e-06 3.83482e-10 2.718 ||| 0-0 ||| 140 668016 +a ||| in the medium ||| 0.00226757 0.0587624 1.49697e-06 3.06152e-08 2.718 ||| 0-0 ||| 441 668016 +a ||| in the middle ||| 0.00444444 0.0587624 2.99394e-06 7.56157e-08 2.718 ||| 0-0 ||| 450 668016 +a ||| in the minds of ||| 0.020202 0.0587624 2.99394e-06 9.60517e-09 2.718 ||| 0-0 ||| 99 668016 +a ||| in the minds ||| 0.018018 0.0587624 2.99394e-06 1.76683e-07 2.718 ||| 0-0 ||| 111 668016 +a ||| in the months and ||| 0.0333333 0.0587624 1.49697e-06 1.86197e-09 2.718 ||| 0-0 ||| 30 668016 +a ||| in the months ||| 0.00671141 0.0587624 1.49697e-06 1.48649e-07 2.718 ||| 0-0 ||| 149 668016 +a ||| in the mood to ||| 1 0.0587624 1.49697e-06 2.22877e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in the mood ||| 0.166667 0.0587624 1.49697e-06 2.50823e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| in the name of ||| 0.000927644 0.0587624 1.49697e-06 1.75259e-08 2.718 ||| 0-0 ||| 1078 668016 +a ||| in the name ||| 0.00104384 0.0587624 1.49697e-06 3.22381e-07 2.718 ||| 0-0 ||| 958 668016 +a ||| in the nature ||| 0.0123457 0.0587624 1.49697e-06 5.21564e-07 2.718 ||| 0-0 ||| 81 668016 +a ||| in the near ||| 0.00917431 0.0587624 1.49697e-06 1.44592e-07 2.718 ||| 0-0 ||| 109 668016 +a ||| in the new Directive ||| 0.25 0.0587624 1.49697e-06 1.69759e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| in the new ||| 0.000510465 0.0587624 1.49697e-06 2.20466e-06 2.718 ||| 0-0 ||| 1959 668016 +a ||| in the next ||| 0.000862813 0.0587624 1.49697e-06 3.8103e-07 2.718 ||| 0-0 ||| 1159 668016 +a ||| in the normal way ||| 0.0333333 0.0587624 1.49697e-06 1.31988e-10 2.718 ||| 0-0 ||| 30 668016 +a ||| in the normal ||| 0.0714286 0.0587624 1.49697e-06 6.12303e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| in the number of ||| 0.00306748 0.0587624 2.99394e-06 9.92201e-08 2.718 ||| 0-0 ||| 652 668016 +a ||| in the number ||| 0.00403769 0.0587624 4.49091e-06 1.82511e-06 2.718 ||| 0-0 ||| 743 668016 +a ||| in the open ||| 0.0204082 0.0587624 1.49697e-06 5.94598e-07 2.718 ||| 0-0 ||| 49 668016 +a ||| in the opinion of ||| 0.0052356 0.0587624 1.49697e-06 4.9209e-08 2.718 ||| 0-0 ||| 191 668016 +a ||| in the opinion ||| 0.00308642 0.0587624 1.49697e-06 9.05176e-07 2.718 ||| 0-0 ||| 324 668016 +a ||| in the order ||| 0.00909091 0.0587624 1.49697e-06 1.96453e-06 2.718 ||| 0-0 ||| 110 668016 +a ||| in the packaging ||| 0.333333 0.0587624 1.49697e-06 1.58609e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| in the past , ||| 0.00100806 0.0587624 1.49697e-06 5.63486e-08 2.718 ||| 0-0 ||| 992 668016 +a ||| in the past brought ||| 1 0.0587624 1.49697e-06 1.32302e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in the past ||| 0.00234375 0.0587624 1.34727e-05 4.72506e-07 2.718 ||| 0-0 ||| 3840 668016 +a ||| in the person of ||| 0.0147059 0.0587624 1.49697e-06 2.58277e-08 2.718 ||| 0-0 ||| 68 668016 +a ||| in the person ||| 0.0126582 0.0587624 1.49697e-06 4.75088e-07 2.718 ||| 0-0 ||| 79 668016 +a ||| in the pipeline ||| 0.0102041 0.0587624 1.49697e-06 5.31154e-08 2.718 ||| 0-0 ||| 98 668016 +a ||| in the position of ||| 0.0153846 0.0587624 1.49697e-06 6.60331e-08 2.718 ||| 0-0 ||| 65 668016 +a ||| in the position ||| 0.00757576 0.0587624 1.49697e-06 1.21465e-06 2.718 ||| 0-0 ||| 132 668016 +a ||| in the process of ||| 0.00830258 0.0587624 1.34727e-05 8.57247e-08 2.718 ||| 0-0 ||| 1084 668016 +a ||| in the process ||| 0.00747986 0.0587624 1.94606e-05 1.57686e-06 2.718 ||| 0-0 ||| 1738 668016 +a ||| in the production of ||| 0.00561798 0.0587624 1.49697e-06 1.67439e-08 2.718 ||| 0-0 ||| 178 668016 +a ||| in the production ||| 0.00431034 0.0587624 1.49697e-06 3.07996e-07 2.718 ||| 0-0 ||| 232 668016 +a ||| in the programming stage , ||| 0.333333 0.0587624 1.49697e-06 3.09495e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| in the programming stage ||| 0.333333 0.0587624 1.49697e-06 2.59524e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| in the programming ||| 0.0588235 0.0587624 1.49697e-06 1.73363e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| in the pursuit of ||| 0.0166667 0.0587624 1.49697e-06 4.97303e-09 2.718 ||| 0-0 ||| 60 668016 +a ||| in the pursuit ||| 0.0149254 0.0587624 1.49697e-06 9.14766e-08 2.718 ||| 0-0 ||| 67 668016 +a ||| in the region and ||| 0.00414938 0.0587624 1.49697e-06 4.52324e-09 2.718 ||| 0-0 ||| 241 668016 +a ||| in the region ||| 0.000650195 0.0587624 2.99394e-06 3.61111e-07 2.718 ||| 0-0 ||| 3076 668016 +a ||| in the respect of ||| 0.125 0.0188479 1.49697e-06 1.68143e-08 2.718 ||| 0-3 ||| 8 668016 +a ||| in the right direction , but ||| 0.0075188 0.0587624 1.49697e-06 1.75836e-14 2.718 ||| 0-0 ||| 133 668016 +a ||| in the right direction , ||| 0.00209205 0.0587624 1.49697e-06 2.57296e-11 2.718 ||| 0-0 ||| 478 668016 +a ||| in the right direction ||| 0.00143885 0.0587624 4.49091e-06 2.15754e-10 2.718 ||| 0-0 ||| 2085 668016 +a ||| in the right ||| 0.00624025 0.0587624 5.98788e-06 2.37876e-06 2.718 ||| 0-0 ||| 641 668016 +a ||| in the room , ||| 0.0588235 0.0587624 1.49697e-06 1.64515e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| in the room ||| 0.0172414 0.0587624 1.49697e-06 1.37953e-07 2.718 ||| 0-0 ||| 58 668016 +a ||| in the same category as ||| 0.111111 0.0587624 2.99394e-06 5.11878e-13 2.718 ||| 0-0 ||| 18 668016 +a ||| in the same category ||| 0.0714286 0.0587624 2.99394e-06 5.01625e-11 2.718 ||| 0-0 ||| 28 668016 +a ||| in the same way , we have ||| 0.5 0.0587624 1.49697e-06 1.03596e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| in the same way , we should ||| 0.25 0.0587624 1.49697e-06 3.83815e-14 2.718 ||| 0-0 ||| 4 668016 +a ||| in the same way , we ||| 0.153846 0.0587624 2.99394e-06 8.66203e-12 2.718 ||| 0-0 ||| 13 668016 +a ||| in the same way , ||| 0.0078125 0.0587624 2.99394e-06 7.6302e-10 2.718 ||| 0-0 ||| 256 668016 +a ||| in the same way ||| 0.00256849 0.0587624 4.49091e-06 6.39824e-09 2.718 ||| 0-0 ||| 1168 668016 +a ||| in the same ||| 0.00442122 0.0587624 1.64667e-05 2.96819e-06 2.718 ||| 0-0 ||| 2488 668016 +a ||| in the sector ||| 0.00125786 0.0587624 1.49697e-06 6.84968e-07 2.718 ||| 0-0 ||| 795 668016 +a ||| in the sense ||| 0.004329 0.0587624 4.49091e-06 6.56935e-07 2.718 ||| 0-0 ||| 693 668016 +a ||| in the short and ||| 0.0136986 0.0587624 1.49697e-06 6.5192e-09 2.718 ||| 0-0 ||| 73 668016 +a ||| in the short ||| 0.00117233 0.0587624 1.49697e-06 5.20458e-07 2.718 ||| 0-0 ||| 853 668016 +a ||| in the specific case ||| 0.0136986 0.0587624 1.49697e-06 5.96302e-10 2.718 ||| 0-0 ||| 73 668016 +a ||| in the specific ||| 0.1 0.0587624 1.49697e-06 5.57343e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| in the statement ||| 0.0131579 0.0587624 1.49697e-06 2.74799e-07 2.718 ||| 0-0 ||| 76 668016 +a ||| in the strongest possible terms ||| 0.015625 0.0587624 1.49697e-06 2.3381e-14 2.718 ||| 0-0 ||| 64 668016 +a ||| in the strongest possible ||| 0.0714286 0.0587624 1.49697e-06 2.1302e-11 2.718 ||| 0-0 ||| 14 668016 +a ||| in the strongest terms ||| 0.012987 0.0587624 1.49697e-06 2.91498e-11 2.718 ||| 0-0 ||| 77 668016 +a ||| in the strongest ||| 0.0357143 0.0587624 2.99394e-06 2.65577e-08 2.718 ||| 0-0 ||| 56 668016 +a ||| in the system to properly exchange intelligence ||| 0.5 0.229811 1.49697e-06 1.53663e-21 2.718 ||| 0-3 ||| 2 668016 +a ||| in the system to properly exchange ||| 0.5 0.229811 1.49697e-06 2.64937e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| in the system to properly ||| 0.5 0.229811 1.49697e-06 9.5645e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| in the system to ||| 0.125 0.229811 1.49697e-06 1.28383e-07 2.718 ||| 0-3 ||| 8 668016 +a ||| in the text ||| 0.00157729 0.0587624 1.49697e-06 3.18693e-07 2.718 ||| 0-0 ||| 634 668016 +a ||| in the throes ||| 0.0434783 0.0587624 1.49697e-06 1.47543e-09 2.718 ||| 0-0 ||| 23 668016 +a ||| in the trans-European networks ||| 0.037037 0.0587624 1.49697e-06 1.80002e-13 2.718 ||| 0-0 ||| 27 668016 +a ||| in the trans-European ||| 0.5 0.0587624 1.49697e-06 1.47543e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| in the very ||| 0.0123967 0.0587624 4.49091e-06 1.28344e-05 2.718 ||| 0-0 ||| 242 668016 +a ||| in the water ||| 0.0285714 0.0587624 1.49697e-06 2.0988e-07 2.718 ||| 0-0 ||| 35 668016 +a ||| in the way of a ||| 0.04 0.0587624 1.49697e-06 1.916e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| in the way of ||| 0.0338462 0.0587624 1.64667e-05 4.32253e-07 2.718 ||| 0-0 ||| 325 668016 +a ||| in the way they run ||| 1 0.0587624 1.49697e-06 2.75614e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in the way they ||| 0.016129 0.0587624 1.49697e-06 2.59523e-08 2.718 ||| 0-0 ||| 62 668016 +a ||| in the way ||| 0.00902935 0.0587624 2.39515e-05 7.95109e-06 2.718 ||| 0-0 ||| 1772 668016 +a ||| in the words of ||| 0.00819672 0.0587624 1.49697e-06 4.53188e-08 2.718 ||| 0-0 ||| 122 668016 +a ||| in the words ||| 0.00636943 0.0587624 1.49697e-06 8.33617e-07 2.718 ||| 0-0 ||| 157 668016 +a ||| in the work to ||| 0.0625 0.229811 1.49697e-06 2.91381e-07 2.718 ||| 0-3 ||| 16 668016 +a ||| in the working week to ||| 1 0.229811 1.49697e-06 2.68192e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| in the works ||| 0.0344828 0.0587624 1.49697e-06 1.52707e-07 2.718 ||| 0-0 ||| 29 668016 +a ||| in the world ||| 0.000404204 0.0587624 2.99394e-06 8.40257e-07 2.718 ||| 0-0 ||| 4948 668016 +a ||| in the ||| 0.0123277 0.0587624 0.00530676 0.00368857 2.718 ||| 0-0 ||| 287563 668016 +a ||| in their actions to ||| 0.2 0.229811 1.49697e-06 6.0663e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| in their bid ||| 0.25 0.0587624 1.49697e-06 1.85247e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| in their cars at ||| 1 0.0587624 1.49697e-06 4.92833e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in their cars ||| 0.2 0.0587624 1.49697e-06 1.17694e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| in their country ||| 0.00408163 0.0587624 1.49697e-06 2.5064e-08 2.718 ||| 0-0 ||| 245 668016 +a ||| in their court ||| 0.166667 0.0587624 1.49697e-06 2.08228e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| in their efforts to ||| 0.00847458 0.229811 1.49697e-06 1.05682e-09 2.718 ||| 0-3 ||| 118 668016 +a ||| in their faces by ||| 1 0.167846 1.49697e-06 3.10267e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| in their faces ||| 0.5 0.167846 1.49697e-06 5.90973e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| in their lot ||| 0.5 0.0587624 1.49697e-06 8.9977e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| in their midst - ||| 1 0.0587624 1.49697e-06 2.46933e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in their midst ||| 0.2 0.0587624 1.49697e-06 6.54631e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| in their operations ||| 0.25 0.0587624 1.49697e-06 1.75497e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| in their own country ||| 0.00440529 0.0587624 1.49697e-06 4.2491e-11 2.718 ||| 0-0 ||| 227 668016 +a ||| in their own right ||| 0.0217391 0.0587624 1.49697e-06 7.61391e-11 2.718 ||| 0-0 ||| 46 668016 +a ||| in their own ||| 0.0021978 0.0587624 2.99394e-06 1.18063e-07 2.718 ||| 0-0 ||| 910 668016 +a ||| in their tracks ||| 0.0714286 0.0587624 1.49697e-06 4.03921e-10 2.718 ||| 0-0 ||| 14 668016 +a ||| in their ||| 0.00423001 0.0587624 4.7903e-05 6.96416e-05 2.718 ||| 0-0 ||| 7565 668016 +a ||| in them ||| 0.00735294 0.0587624 4.49091e-06 0.000161165 2.718 ||| 0-0 ||| 408 668016 +a ||| in themselves ||| 0.00911854 0.0587624 4.49091e-06 2.58175e-05 2.718 ||| 0-0 ||| 329 668016 +a ||| in theory ||| 0.00260417 0.0587624 1.49697e-06 4.56627e-07 2.718 ||| 0-0 ||| 384 668016 +a ||| in these ||| 0.000174246 0.0587624 1.49697e-06 6.23116e-05 2.718 ||| 0-0 ||| 5739 668016 +a ||| in this , ||| 0.00597015 0.0587624 2.99394e-06 4.62967e-05 2.718 ||| 0-0 ||| 335 668016 +a ||| in this House to ||| 0.00694444 0.0587624 1.49697e-06 8.62752e-09 2.718 ||| 0-0 ||| 144 668016 +a ||| in this House ||| 0.000141163 0.0587624 1.49697e-06 9.70931e-08 2.718 ||| 0-0 ||| 7084 668016 +a ||| in this area ||| 0.000280387 0.0587624 2.99394e-06 1.61227e-07 2.718 ||| 0-0 ||| 7133 668016 +a ||| in this by ||| 0.05 0.0587624 1.49697e-06 2.03818e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| in this case ||| 0.000287604 0.0587624 1.49697e-06 4.15353e-07 2.718 ||| 0-0 ||| 3477 668016 +a ||| in this connection , ||| 0.001287 0.0587624 1.49697e-06 7.06488e-09 2.718 ||| 0-0 ||| 777 668016 +a ||| in this connection that the ||| 0.0416667 0.0587624 1.49697e-06 6.11796e-11 2.718 ||| 0-0 ||| 24 668016 +a ||| in this connection that ||| 0.0238095 0.0587624 1.49697e-06 9.96544e-10 2.718 ||| 0-0 ||| 42 668016 +a ||| in this connection ||| 0.00126183 0.0587624 2.99394e-06 5.92419e-08 2.718 ||| 0-0 ||| 1585 668016 +a ||| in this context are very ||| 1 0.0587624 1.49697e-06 2.75047e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in this context are ||| 0.125 0.0587624 1.49697e-06 7.90478e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| in this context ||| 0.000268745 0.0587624 1.49697e-06 5.20987e-08 2.718 ||| 0-0 ||| 3721 668016 +a ||| in this direction ||| 0.000997009 0.0587624 1.49697e-06 3.52113e-08 2.718 ||| 0-0 ||| 1003 668016 +a ||| in this discussion ||| 0.00684932 0.0587624 1.49697e-06 3.3542e-08 2.718 ||| 0-0 ||| 146 668016 +a ||| in this effort ||| 0.0217391 0.0587624 1.49697e-06 3.43572e-08 2.718 ||| 0-0 ||| 46 668016 +a ||| in this field ||| 0.000393082 0.0587624 1.49697e-06 5.67185e-08 2.718 ||| 0-0 ||| 2544 668016 +a ||| in this it ||| 0.333333 0.0587624 1.49697e-06 6.90374e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| in this light ||| 0.00595238 0.0587624 1.49697e-06 6.74721e-08 2.718 ||| 0-0 ||| 168 668016 +a ||| in this matter ||| 0.000717875 0.0587624 1.49697e-06 4.02775e-07 2.718 ||| 0-0 ||| 1393 668016 +a ||| in this regard , the ||| 0.00515464 0.0587624 1.49697e-06 1.93528e-09 2.718 ||| 0-0 ||| 194 668016 +a ||| in this regard , ||| 0.00120627 0.0587624 2.99394e-06 3.15234e-08 2.718 ||| 0-0 ||| 1658 668016 +a ||| in this regard ||| 0.00100075 0.0587624 5.98788e-06 2.64337e-07 2.718 ||| 0-0 ||| 3997 668016 +a ||| in this report to ||| 0.0222222 0.229811 1.49697e-06 1.98587e-08 2.718 ||| 0-3 ||| 45 668016 +a ||| in this respect or why ||| 1 0.0587624 1.49697e-06 4.73302e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| in this respect or ||| 0.166667 0.0587624 1.49697e-06 1.92009e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| in this respect ||| 0.00155976 0.0587624 1.19758e-05 1.67943e-07 2.718 ||| 0-0 ||| 5129 668016 +a ||| in this sector ||| 0.00162075 0.0587624 2.99394e-06 7.20919e-08 2.718 ||| 0-0 ||| 1234 668016 +a ||| in this spirit ||| 0.00395257 0.0587624 1.49697e-06 2.27883e-08 2.718 ||| 0-0 ||| 253 668016 +a ||| in this way , we are pursuing ||| 1 0.0587624 1.49697e-06 4.21144e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| in this way , we are ||| 0.1 0.0587624 1.49697e-06 1.71896e-11 2.718 ||| 0-0 ||| 10 668016 +a ||| in this way , we ||| 0.0263158 0.0587624 1.49697e-06 1.13293e-09 2.718 ||| 0-0 ||| 38 668016 +a ||| in this way , ||| 0.00203046 0.0587624 2.99394e-06 9.97972e-08 2.718 ||| 0-0 ||| 985 668016 +a ||| in this way over the ||| 0.5 0.0587624 1.49697e-06 2.47371e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| in this way over ||| 0.5 0.0587624 1.49697e-06 4.02939e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| in this way ||| 0.00281789 0.0587624 1.19758e-05 8.36841e-07 2.718 ||| 0-0 ||| 2839 668016 +a ||| in this ||| 0.00143665 0.0587624 0.000139218 0.000388217 2.718 ||| 0-0 ||| 64734 668016 +a ||| in those months ||| 0.5 0.0587624 1.49697e-06 1.75328e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| in those revisions ||| 1 0.0587624 1.49697e-06 7.83103e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in those ||| 0.00176757 0.0587624 5.98788e-06 4.35057e-05 2.718 ||| 0-0 ||| 2263 668016 +a ||| in through the window ||| 0.25 0.144735 1.49697e-06 3.28393e-10 2.718 ||| 0-0 0-1 ||| 4 668016 +a ||| in through the ||| 0.0333333 0.144735 1.49697e-06 2.93208e-05 2.718 ||| 0-0 0-1 ||| 30 668016 +a ||| in through ||| 0.0227273 0.144735 1.49697e-06 0.000477602 2.718 ||| 0-0 0-1 ||| 44 668016 +a ||| in time , we need to decide ||| 0.25 0.229811 1.49697e-06 9.79446e-16 2.718 ||| 0-5 ||| 4 668016 +a ||| in time , we need to ||| 0.2 0.229811 1.49697e-06 1.528e-11 2.718 ||| 0-5 ||| 5 668016 +a ||| in time , ||| 0.00881057 0.0587624 2.99394e-06 1.1763e-05 2.718 ||| 0-0 ||| 227 668016 +a ||| in time ||| 0.00426621 0.0587624 7.48485e-06 9.86374e-05 2.718 ||| 0-0 ||| 1172 668016 +a ||| in to help ||| 0.166667 0.0587624 1.49697e-06 1.01811e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| in to ||| 0.23511 0.144287 0.000112273 0.021047 2.718 ||| 0-0 0-1 ||| 319 668016 +a ||| in today ||| 0.00719424 0.0587624 1.49697e-06 2.71152e-05 2.718 ||| 0-0 ||| 139 668016 +a ||| in tones ||| 0.333333 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| in total present ||| 0.5 0.0587624 1.49697e-06 2.07368e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| in total ||| 0.00303951 0.0587624 1.49697e-06 5.66578e-06 2.718 ||| 0-0 ||| 329 668016 +a ||| in touch with ||| 0.008 0.0587624 1.49697e-06 8.45235e-09 2.718 ||| 0-0 ||| 125 668016 +a ||| in touch ||| 0.00689655 0.0587624 1.49697e-06 1.32181e-06 2.718 ||| 0-0 ||| 145 668016 +a ||| in towards ||| 1 0.107135 1.49697e-06 0.000202634 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| in trade matters in ||| 0.333333 0.0587624 1.49697e-06 2.07225e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| in train ||| 0.0227273 0.0587624 1.49697e-06 1.03943e-06 2.718 ||| 0-0 ||| 44 668016 +a ||| in treatment ||| 0.0181818 0.0587624 1.49697e-06 3.63499e-06 2.718 ||| 0-0 ||| 55 668016 +a ||| in trying to meet ||| 0.2 0.0587624 1.49697e-06 7.47879e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| in trying to reach ||| 0.0909091 0.0587624 1.49697e-06 4.98176e-11 2.718 ||| 0-0 ||| 11 668016 +a ||| in trying to ||| 0.0185185 0.229811 7.48485e-06 8.63773e-07 2.718 ||| 0-2 ||| 270 668016 +a ||| in trying ||| 0.03125 0.0587624 4.49091e-06 6.9215e-06 2.718 ||| 0-0 ||| 96 668016 +a ||| in tune with ||| 0.0117647 0.0571592 1.49697e-06 1.06848e-08 2.718 ||| 0-2 ||| 85 668016 +a ||| in turmoil ||| 0.0625 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| in turn , ||| 0.00387597 0.0587624 2.99394e-06 1.60642e-06 2.718 ||| 0-0 ||| 516 668016 +a ||| in turn by ||| 0.111111 0.0587624 1.49697e-06 7.07215e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| in turn gave way ||| 0.333333 0.0587624 1.49697e-06 2.42459e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| in turn gave ||| 0.333333 0.0587624 1.49697e-06 1.12479e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| in turn ||| 0.00791937 0.0587624 1.64667e-05 1.34705e-05 2.718 ||| 0-0 ||| 1389 668016 +a ||| in two ||| 0.00104275 0.0587624 1.49697e-06 1.42035e-05 2.718 ||| 0-0 ||| 959 668016 +a ||| in universal ||| 0.5 0.0587624 1.49697e-06 5.1671e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| in urging both ||| 0.5 0.0587624 1.49697e-06 4.67775e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| in urging ||| 0.0243902 0.0587624 1.49697e-06 2.82388e-07 2.718 ||| 0-0 ||| 41 668016 +a ||| in us having to ||| 0.5 0.229811 1.49697e-06 8.27478e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| in us ||| 0.027027 0.0587624 4.49091e-06 0.00017317 2.718 ||| 0-0 ||| 111 668016 +a ||| in use in ||| 0.0909091 0.0587624 2.99394e-06 1.75514e-06 2.718 ||| 0-0 0-2 ||| 22 668016 +a ||| in use ||| 0.0128205 0.0587624 2.99394e-06 2.92121e-05 2.718 ||| 0-0 ||| 156 668016 +a ||| in vagueness ||| 0.5 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| in value conditional upon ||| 1 0.19056 1.49697e-06 3.33456e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| in value ||| 0.0606061 0.0587624 2.99394e-06 5.27524e-06 2.718 ||| 0-0 ||| 33 668016 +a ||| in various languages ||| 0.142857 0.0587624 1.49697e-06 1.66981e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| in various ||| 0.00087184 0.0587624 1.49697e-06 9.27674e-06 2.718 ||| 0-0 ||| 1147 668016 +a ||| in very great ||| 0.125 0.0587624 1.49697e-06 8.21594e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| in very ||| 0.010582 0.0587624 2.99394e-06 0.000209057 2.718 ||| 0-0 ||| 189 668016 +a ||| in view of disasters of this type ||| 1 0.0587624 1.49697e-06 1.09133e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| in view of disasters of this ||| 1 0.0587624 1.49697e-06 9.32764e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| in view of disasters of ||| 1 0.0587624 1.49697e-06 1.44359e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in view of disasters ||| 1 0.0587624 1.49697e-06 2.65542e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in view of the fact ||| 0.0022779 0.0587624 1.49697e-06 5.30598e-10 2.718 ||| 0-0 ||| 439 668016 +a ||| in view of the ||| 0.00115473 0.0587624 4.49091e-06 1.81135e-07 2.718 ||| 0-0 ||| 2598 668016 +a ||| in view of ||| 0.00526008 0.0587624 2.69455e-05 2.95047e-06 2.718 ||| 0-0 ||| 3422 668016 +a ||| in view ||| 0.00599355 0.0587624 3.89212e-05 5.42725e-05 2.718 ||| 0-0 ||| 4338 668016 +a ||| in violation of ||| 0.00943396 0.0587624 1.49697e-06 3.52763e-08 2.718 ||| 0-0 ||| 106 668016 +a ||| in violation ||| 0.0218978 0.0587624 4.49091e-06 6.48891e-07 2.718 ||| 0-0 ||| 137 668016 +a ||| in warmly welcoming ||| 0.166667 0.0587624 1.49697e-06 7.52233e-12 2.718 ||| 0-0 ||| 6 668016 +a ||| in warmly ||| 0.125 0.0587624 1.49697e-06 1.88058e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| in waters ||| 0.0263158 0.0587624 1.49697e-06 9.97369e-07 2.718 ||| 0-0 ||| 38 668016 +a ||| in ways that would encourage them to ||| 1 0.229811 1.49697e-06 7.36916e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| in welcoming ||| 0.00862069 0.0587624 1.49697e-06 2.4033e-07 2.718 ||| 0-0 ||| 116 668016 +a ||| in well ||| 0.166667 0.0587624 1.49697e-06 9.52668e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| in what was ||| 0.04 0.0587624 1.49697e-06 2.64117e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| in what ||| 0.00333056 0.0587624 5.98788e-06 8.43018e-05 2.718 ||| 0-0 ||| 1201 668016 +a ||| in which , instead , ||| 1 0.0587624 1.49697e-06 1.46547e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| in which , instead ||| 0.333333 0.0587624 1.49697e-06 1.22886e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| in which , ||| 0.00320513 0.0587624 1.49697e-06 6.08648e-05 2.718 ||| 0-0 ||| 312 668016 +a ||| in which Korea undertakes ||| 1 0.0587624 1.49697e-06 5.60394e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| in which Korea ||| 0.5 0.0587624 1.49697e-06 3.1133e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| in which either ||| 0.142857 0.0587624 1.49697e-06 4.41884e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| in which he did ||| 0.25 0.0587624 1.49697e-06 2.02303e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| in which he ||| 0.00531915 0.0587624 1.49697e-06 4.45406e-07 2.718 ||| 0-0 ||| 188 668016 +a ||| in which is ||| 0.1 0.0587624 1.49697e-06 1.59958e-05 2.718 ||| 0-0 ||| 10 668016 +a ||| in which it does so ||| 1 0.0587624 1.49697e-06 1.44489e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in which it does ||| 0.5 0.0587624 1.49697e-06 6.366e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| in which it promises ||| 1 0.0587624 1.49697e-06 6.89786e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in which it ||| 0.00588235 0.0587624 2.99394e-06 9.07613e-06 2.718 ||| 0-0 ||| 340 668016 +a ||| in which less value is ||| 1 0.0587624 1.49697e-06 2.39034e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| in which less value ||| 1 0.0587624 1.49697e-06 7.62685e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in which less ||| 0.25 0.0587624 1.49697e-06 8.68661e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| in which several lives ||| 0.25 0.0587624 1.49697e-06 1.72163e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| in which several ||| 0.0769231 0.0587624 1.49697e-06 3.34297e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| in which there actually is ||| 1 0.0587624 1.49697e-06 2.02403e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in which there actually ||| 1 0.0587624 1.49697e-06 6.45808e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| in which there is a ||| 0.0175439 0.0587624 1.49697e-06 2.17338e-09 2.718 ||| 0-0 ||| 57 668016 +a ||| in which there is ||| 0.00649351 0.0587624 1.49697e-06 4.90318e-08 2.718 ||| 0-0 ||| 154 668016 +a ||| in which there ||| 0.0155039 0.0587624 2.99394e-06 1.56446e-06 2.718 ||| 0-0 ||| 129 668016 +a ||| in which they adopt ||| 0.5 0.0587624 1.49697e-06 1.7325e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| in which they are merely ||| 1 0.0587624 1.49697e-06 1.61006e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in which they are to ||| 0.2 0.0587624 1.49697e-06 2.24596e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| in which they are ||| 0.011976 0.0587624 2.99394e-06 2.52757e-08 2.718 ||| 0-0 ||| 167 668016 +a ||| in which they have ||| 0.0126582 0.0587624 1.49697e-06 1.99235e-08 2.718 ||| 0-0 ||| 79 668016 +a ||| in which they ||| 0.0167224 0.0587624 7.48485e-06 1.66587e-06 2.718 ||| 0-0 ||| 299 668016 +a ||| in which we do so ||| 1 0.0587624 1.49697e-06 4.5176e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in which we do ||| 0.142857 0.0587624 1.49697e-06 1.9904e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| in which we have ||| 0.00555556 0.0587624 1.49697e-06 6.92945e-08 2.718 ||| 0-0 ||| 180 668016 +a ||| in which we treat ||| 0.1 0.0587624 1.49697e-06 9.61796e-11 2.718 ||| 0-0 ||| 10 668016 +a ||| in which we will vote ||| 1 0.0587624 1.49697e-06 7.8846e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| in which we will ||| 0.0434783 0.0587624 1.49697e-06 5.01246e-08 2.718 ||| 0-0 ||| 23 668016 +a ||| in which we ||| 0.00867052 0.0587624 8.98182e-06 5.79395e-06 2.718 ||| 0-0 ||| 692 668016 +a ||| in which you have ||| 0.0188679 0.0587624 1.49697e-06 1.9708e-08 2.718 ||| 0-0 ||| 53 668016 +a ||| in which you ||| 0.0070922 0.0587624 1.49697e-06 1.64785e-06 2.718 ||| 0-0 ||| 141 668016 +a ||| in which ||| 0.00530973 0.0587624 0.000143709 0.000510377 2.718 ||| 0-0 ||| 18080 668016 +a ||| in willy ||| 0.5 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| in with their ||| 0.125 0.0587624 1.49697e-06 4.45323e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| in with ||| 0.233202 0.0579608 8.83212e-05 0.00100308 2.718 ||| 0-0 0-1 ||| 253 668016 +a ||| in women ||| 0.00260417 0.0587624 1.49697e-06 7.1378e-06 2.718 ||| 0-0 ||| 384 668016 +a ||| in working life ||| 0.0285714 0.0587624 1.49697e-06 1.73312e-09 2.718 ||| 0-0 ||| 35 668016 +a ||| in working ||| 0.00666667 0.0587624 1.49697e-06 1.14397e-05 2.718 ||| 0-0 ||| 150 668016 +a ||| in writing , to ||| 0.5 0.229811 1.49697e-06 1.95288e-07 2.718 ||| 0-3 ||| 2 668016 +a ||| in writing . - ( LT ) ||| 0.00664452 0.0587624 2.99394e-06 2.38993e-21 2.718 ||| 0-0 ||| 301 668016 +a ||| in writing . - ( LT ||| 0.00662252 0.0587624 2.99394e-06 1.66279e-18 2.718 ||| 0-0 ||| 302 668016 +a ||| in writing . - ( LV ) ||| 0.0357143 0.0587624 1.49697e-06 3.74076e-22 2.718 ||| 0-0 ||| 28 668016 +a ||| in writing . - ( LV ||| 0.0357143 0.0587624 1.49697e-06 2.60263e-19 2.718 ||| 0-0 ||| 28 668016 +a ||| in writing . - ( PL ) ||| 0.00479616 0.0587624 2.99394e-06 6.73337e-21 2.718 ||| 0-0 ||| 417 668016 +a ||| in writing . - ( PL ||| 0.00475059 0.0587624 2.99394e-06 4.68474e-18 2.718 ||| 0-0 ||| 421 668016 +a ||| in writing . - ( PT ) ||| 0.0011976 0.0587624 1.49697e-06 1.99715e-20 2.718 ||| 0-0 ||| 835 668016 +a ||| in writing . - ( PT ||| 0.00119332 0.0587624 1.49697e-06 1.38952e-17 2.718 ||| 0-0 ||| 838 668016 +a ||| in writing . - ( ||| 0.00120506 0.0587624 8.98182e-06 1.44591e-13 2.718 ||| 0-0 ||| 4979 668016 +a ||| in writing . - ||| 0.000922297 0.0587624 1.19758e-05 1.49928e-10 2.718 ||| 0-0 ||| 8674 668016 +a ||| in writing . ||| 0.00117849 0.0587624 1.64667e-05 3.97466e-08 2.718 ||| 0-0 ||| 9334 668016 +a ||| in writing ||| 0.0013986 0.0587624 2.09576e-05 1.3122e-05 2.718 ||| 0-0 ||| 10010 668016 +a ||| in your complaints ||| 1 0.0587624 1.49697e-06 7.68756e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in your evaluation ||| 0.25 0.0587624 1.49697e-06 2.27552e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| in your native English ||| 1 0.0587624 1.49697e-06 1.45372e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| in your native ||| 1 0.0587624 1.49697e-06 9.37882e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| in your next reincarnation ] ||| 1 0.0587624 1.49697e-06 2.37602e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| in your next reincarnation ||| 1 0.0587624 1.49697e-06 6.353e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| in your next ||| 0.2 0.0587624 1.49697e-06 1.58825e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| in your statement ||| 0.0212766 0.0587624 1.49697e-06 1.14545e-09 2.718 ||| 0-0 ||| 47 668016 +a ||| in your ||| 0.00252616 0.0587624 1.04788e-05 1.53751e-05 2.718 ||| 0-0 ||| 2771 668016 +a ||| in ||| 0.0551898 0.0587624 0.0914559 0.0600825 2.718 ||| 0-0 ||| 1.10698e+06 668016 +a ||| inability to close ||| 1 0.229811 1.49697e-06 1.66239e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| inability to ||| 0.00337838 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-1 ||| 296 668016 +a ||| inadequate declarations to ||| 1 0.229811 1.49697e-06 4.7571e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| incapable of ||| 0.00200803 0.0188479 1.49697e-06 1.47893e-07 2.718 ||| 0-1 ||| 498 668016 +a ||| incentive for ||| 0.00377358 0.0683377 1.49697e-06 3.5743e-07 2.718 ||| 0-1 ||| 265 668016 +a ||| incentive to ||| 0.00719424 0.229811 2.99394e-06 3.39793e-06 2.718 ||| 0-1 ||| 278 668016 +a ||| incentives at ||| 0.333333 0.204175 1.49697e-06 2.2123e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| incentives for ||| 0.00573066 0.0683377 2.99394e-06 2.39515e-07 2.718 ||| 0-1 ||| 349 668016 +a ||| incentives to achieve ||| 0.1 0.229811 1.49697e-06 5.20285e-10 2.718 ||| 0-1 ||| 10 668016 +a ||| incentives to ||| 0.0184332 0.229811 5.98788e-06 2.27696e-06 2.718 ||| 0-1 ||| 217 668016 +a ||| incidentally , ||| 0.0011919 0.0372222 1.49697e-06 7.29839e-06 2.718 ||| 0-0 ||| 839 668016 +a ||| incidentally - is giving ||| 1 0.136521 1.49697e-06 2.49208e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| incidentally ||| 0.00189934 0.0372222 2.99394e-06 6.12e-05 2.718 ||| 0-0 ||| 1053 668016 +a ||| incited ||| 0.0384615 0.189189 1.49697e-06 6.4e-06 2.718 ||| 0-0 ||| 26 668016 +a ||| incitement to ||| 0.00689655 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 145 668016 +a ||| inciting ||| 0.0144928 0.221311 1.49697e-06 2.46e-05 2.718 ||| 0-0 ||| 69 668016 +a ||| inclined to ||| 0.00568182 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-1 ||| 176 668016 +a ||| include a ||| 0.00181818 0.0281253 1.49697e-06 1.1733e-05 2.718 ||| 0-0 ||| 550 668016 +a ||| include both ||| 0.0294118 0.0205477 1.49697e-06 8.6775e-08 2.718 ||| 0-1 ||| 34 668016 +a ||| include confronting ||| 1 0.138947 1.49697e-06 7.97048e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| include in paragraph 12 the ||| 0.333333 0.0587624 1.49697e-06 1.08027e-16 2.718 ||| 0-1 ||| 3 668016 +a ||| include in paragraph 12 ||| 0.333333 0.0587624 1.49697e-06 1.75963e-15 2.718 ||| 0-1 ||| 3 668016 +a ||| include in paragraph ||| 0.333333 0.0587624 1.49697e-06 1.25688e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| include in ||| 0.00749064 0.0587624 2.99394e-06 7.95492e-06 2.718 ||| 0-1 ||| 267 668016 +a ||| include setting ||| 0.5 0.0281253 1.49697e-06 2.51465e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| include ||| 0.00406268 0.0281253 5.2394e-05 0.0002647 2.718 ||| 0-0 ||| 8615 668016 +a ||| included at ||| 0.166667 0.204175 2.99394e-06 3.19592e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| included in the actual body of ||| 1 0.0587624 1.49697e-06 2.33226e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| included in the actual body ||| 0.5 0.0587624 1.49697e-06 4.29009e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| included in the actual ||| 0.333333 0.0587624 1.49697e-06 5.01179e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| included in the ||| 0.00058997 0.0587624 1.49697e-06 3.46357e-07 2.718 ||| 0-1 ||| 1695 668016 +a ||| included in ||| 0.00150376 0.0587624 5.98788e-06 5.64175e-06 2.718 ||| 0-1 ||| 2660 668016 +a ||| included some of ||| 0.333333 0.0188479 1.49697e-06 3.02544e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| includes as far ||| 0.5 0.0243476 1.49697e-06 1.74277e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| includes as ||| 0.25 0.0243476 1.49697e-06 2.55277e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| includes ||| 0.00298954 0.0310078 1.79636e-05 0.0001205 2.718 ||| 0-0 ||| 4014 668016 +a ||| including on revenue ||| 1 0.0782999 1.49697e-06 4.27731e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| including on ||| 0.00574713 0.0782999 1.49697e-06 3.96048e-06 2.718 ||| 0-1 ||| 174 668016 +a ||| including ||| 0.000139069 0.0002662 4.49091e-06 4.6e-06 2.718 ||| 0-0 ||| 21572 668016 +a ||| inclusion of ||| 0.00240577 0.0188479 4.49091e-06 5.73823e-07 2.718 ||| 0-1 ||| 1247 668016 +a ||| income , which creates a burden on ||| 0.5 0.0782999 1.49697e-06 3.11363e-20 2.718 ||| 0-6 ||| 2 668016 +a ||| income on ||| 0.0454545 0.0782999 1.49697e-06 8.34583e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| incompatible with ||| 0.00188679 0.0571592 1.49697e-06 8.34755e-08 2.718 ||| 0-1 ||| 530 668016 +a ||| incorporate EUR 120 million worth of ||| 1 0.0188479 1.49697e-06 6.08211e-25 2.718 ||| 0-5 ||| 1 668016 +a ||| incorporate into ||| 0.0140845 0.107578 1.49697e-06 8.07882e-08 2.718 ||| 0-1 ||| 71 668016 +a ||| incorporated after ||| 0.5 0.0341027 1.49697e-06 1.69438e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| incorporated in ||| 0.00487805 0.0587624 1.49697e-06 1.21367e-06 2.718 ||| 0-1 ||| 205 668016 +a ||| incorporated into ||| 0.00176678 0.107578 1.49697e-06 1.22701e-07 2.718 ||| 0-1 ||| 566 668016 +a ||| incorporating daily subsistence allowance rates for officials ||| 0.111111 0.0683377 1.49697e-06 2.24869e-32 2.718 ||| 0-5 ||| 9 668016 +a ||| incorporating daily subsistence allowance rates for ||| 0.111111 0.0683377 1.49697e-06 1.60621e-27 2.718 ||| 0-5 ||| 9 668016 +a ||| increase access to ||| 0.0769231 0.229811 1.49697e-06 3.89227e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| increase in the number of ||| 0.00364964 0.0587624 1.49697e-06 1.28192e-11 2.718 ||| 0-1 ||| 274 668016 +a ||| increase in the number ||| 0.00341297 0.0587624 1.49697e-06 2.35804e-10 2.718 ||| 0-1 ||| 293 668016 +a ||| increase in the ||| 0.000711238 0.0587624 1.49697e-06 4.76564e-07 2.718 ||| 0-1 ||| 1406 668016 +a ||| increase in ||| 0.00175439 0.0587624 1.04788e-05 7.76266e-06 2.718 ||| 0-1 ||| 3990 668016 +a ||| increase it by introducing ||| 1 0.0337966 1.49697e-06 5.91677e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| increase it by ||| 0.25 0.0337966 1.49697e-06 1.89034e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| increase to ||| 0.0128205 0.229811 1.49697e-06 4.5259e-05 2.718 ||| 0-1 ||| 78 668016 +a ||| increase ||| 5.87199e-05 6.07e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 17030 668016 +a ||| increased in ||| 0.00970874 0.0587624 1.49697e-06 2.9861e-06 2.718 ||| 0-1 ||| 103 668016 +a ||| increased on ||| 0.125 0.0782999 1.49697e-06 1.8854e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| increased to ||| 0.04 0.229811 5.98788e-06 1.741e-05 2.718 ||| 0-1 ||| 100 668016 +a ||| increasingly being made via ||| 1 0.330861 1.49697e-06 4.75438e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| increasingly seeking out ||| 0.333333 0.0669777 1.49697e-06 1.19762e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| incumbent on him to ||| 0.25 0.229811 1.49697e-06 1.18728e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| incumbent upon each country ||| 0.333333 0.19056 1.49697e-06 3.14687e-15 2.718 ||| 0-1 ||| 3 668016 +a ||| incumbent upon each ||| 0.333333 0.19056 1.49697e-06 8.74372e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| incumbent upon ||| 0.0235294 0.19056 2.99394e-06 3.11497e-08 2.718 ||| 0-1 ||| 85 668016 +a ||| indeed , also to encourage ||| 1 0.229811 1.49697e-06 6.15405e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| indeed , also to ||| 1 0.229811 1.49697e-06 1.59846e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| indeed , due to ||| 0.5 0.229811 1.49697e-06 8.7512e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| indeed , in ||| 0.0147783 0.0587624 4.49091e-06 5.43044e-06 2.718 ||| 0-2 ||| 203 668016 +a ||| indeed , to ||| 0.0163934 0.229811 1.49697e-06 3.16614e-05 2.718 ||| 0-2 ||| 61 668016 +a ||| indeed , ||| 0.000351247 0.0011519 2.99394e-06 3.26758e-06 2.718 ||| 0-0 ||| 5694 668016 +a ||| indeed bring itself to ||| 0.5 0.229811 1.49697e-06 5.60933e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| indeed come into operation on 3 June ||| 1 0.107578 1.49697e-06 2.94441e-25 2.718 ||| 0-2 ||| 1 668016 +a ||| indeed come into operation on 3 ||| 1 0.107578 1.49697e-06 3.42374e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| indeed come into operation on ||| 1 0.107578 1.49697e-06 1.48858e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| indeed come into operation ||| 1 0.107578 1.49697e-06 2.22475e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| indeed come into ||| 0.5 0.107578 1.49697e-06 3.90993e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| indeed delegated to ||| 1 0.229811 1.49697e-06 6.63734e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| indeed for ||| 0.00980392 0.0683377 1.49697e-06 2.79275e-05 2.718 ||| 0-1 ||| 102 668016 +a ||| indeed have to ||| 0.1 0.229811 1.49697e-06 3.17525e-06 2.718 ||| 0-2 ||| 10 668016 +a ||| indeed in ||| 0.0142857 0.0587624 2.99394e-06 4.55365e-05 2.718 ||| 0-1 ||| 140 668016 +a ||| indeed of ||| 0.0113636 0.0188479 1.49697e-06 2.24175e-05 2.718 ||| 0-1 ||| 88 668016 +a ||| indeed possible , for ||| 1 0.0683377 1.49697e-06 2.67138e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| indeed serve as such in ||| 0.5 0.0587624 1.49697e-06 6.57571e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| indeed sometimes ||| 0.111111 0.329597 1.49697e-06 2.15623e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| indeed to either ||| 1 0.229811 1.49697e-06 2.29864e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| indeed to ||| 0.0740741 0.229811 1.79636e-05 0.000265494 2.718 ||| 0-1 ||| 162 668016 +a ||| indeed what ||| 0.047619 0.0011519 1.49697e-06 3.84449e-08 2.718 ||| 0-0 ||| 21 668016 +a ||| indeed ||| 0.00165446 0.0011519 3.14364e-05 2.74e-05 2.718 ||| 0-0 ||| 12693 668016 +a ||| independent Members of ||| 0.5 0.0188479 1.49697e-06 1.06889e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| independent ||| 0.000162973 0.0001814 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 6136 668016 +a ||| indication of ||| 0.00497512 0.0188479 2.99394e-06 6.38896e-07 2.718 ||| 0-1 ||| 402 668016 +a ||| indifferent to ||| 0.00657895 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-1 ||| 152 668016 +a ||| indispensable in ||| 0.025 0.0587624 1.49697e-06 1.92264e-07 2.718 ||| 0-1 ||| 40 668016 +a ||| indispensable to ||| 0.0102041 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-1 ||| 98 668016 +a ||| individual justifications to ||| 1 0.229811 1.49697e-06 5.44859e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| individual rights on ||| 1 0.0782999 1.49697e-06 1.07336e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| individual to enter ||| 1 0.229811 1.49697e-06 2.44196e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| individual to ||| 0.0408163 0.229811 2.99394e-06 4.95326e-05 2.718 ||| 0-1 ||| 49 668016 +a ||| individually ||| 0.00168634 0.0259259 1.49697e-06 1.92e-05 2.718 ||| 0-0 ||| 593 668016 +a ||| individuals in ||| 0.0166667 0.0587624 1.49697e-06 1.94667e-06 2.718 ||| 0-1 ||| 60 668016 +a ||| induce Belarus to ||| 1 0.229811 1.49697e-06 1.95924e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| inducing them to ||| 1 0.229811 1.49697e-06 3.7586e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| indulge in ||| 0.0188679 0.0587624 2.99394e-06 4.32594e-07 2.718 ||| 0-1 ||| 106 668016 +a ||| indulging in a ||| 0.5 0.0587624 1.49697e-06 1.25171e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| indulging in ||| 0.08 0.0587624 5.98788e-06 2.82388e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| industries to ||| 0.0208333 0.229811 1.49697e-06 5.67489e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| industry , to ||| 0.0434783 0.229811 1.49697e-06 5.51849e-06 2.718 ||| 0-2 ||| 23 668016 +a ||| industry in Europe in ||| 1 0.0587624 1.49697e-06 8.5962e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| industry in opposition to ||| 1 0.229811 1.49697e-06 2.53565e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| industry in ||| 0.00258398 0.0587624 1.49697e-06 7.9369e-06 2.718 ||| 0-1 ||| 387 668016 +a ||| industry to ||| 0.00900901 0.229811 5.98788e-06 4.62748e-05 2.718 ||| 0-1 ||| 444 668016 +a ||| ineffective in ||| 0.02 0.0587624 1.49697e-06 2.58355e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| inequality in ||| 0.0126582 0.0587624 1.49697e-06 1.32181e-07 2.718 ||| 0-1 ||| 79 668016 +a ||| infect ||| 0.1 0.380952 1.49697e-06 1.46e-05 2.718 ||| 0-0 ||| 10 668016 +a ||| inflicted on ||| 0.0344828 0.0782999 4.49091e-06 2.57962e-07 2.718 ||| 0-1 ||| 87 668016 +a ||| influence in ||| 0.00490196 0.0587624 1.49697e-06 2.05482e-06 2.718 ||| 0-1 ||| 204 668016 +a ||| influence of alcohol drove against ||| 1 0.0188479 1.49697e-06 2.43295e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| influence of alcohol drove ||| 1 0.0188479 1.49697e-06 1.01968e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| influence of alcohol ||| 0.0769231 0.0188479 1.49697e-06 1.45668e-11 2.718 ||| 0-1 ||| 13 668016 +a ||| influence of ||| 0.00257732 0.0188479 1.49697e-06 1.01158e-06 2.718 ||| 0-1 ||| 388 668016 +a ||| influence on ||| 0.00598802 0.0782999 2.99394e-06 1.2974e-06 2.718 ||| 0-1 ||| 334 668016 +a ||| inform ||| 0.00490918 0.130026 1.49697e-05 0.0004162 2.718 ||| 0-0 ||| 2037 668016 +a ||| information about how ||| 0.05 0.0526361 1.49697e-06 2.98907e-10 2.718 ||| 0-1 ||| 20 668016 +a ||| information about ||| 0.000960615 0.0526361 1.49697e-06 8.34004e-07 2.718 ||| 0-1 ||| 1041 668016 +a ||| information at ||| 0.00819672 0.204175 1.49697e-06 5.63286e-06 2.718 ||| 0-1 ||| 122 668016 +a ||| information being directed specially at ||| 1 0.204175 1.49697e-06 1.45504e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| information for ||| 0.00245098 0.0683377 1.49697e-06 6.09843e-06 2.718 ||| 0-1 ||| 408 668016 +a ||| information from ||| 0.00274725 0.0435582 1.49697e-06 1.1914e-06 2.718 ||| 0-1 ||| 364 668016 +a ||| information on what is ||| 0.333333 0.0782999 1.49697e-06 2.76088e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| information on what ||| 0.04 0.0782999 1.49697e-06 8.80914e-09 2.718 ||| 0-1 ||| 25 668016 +a ||| information on ||| 0.0012837 0.0782999 4.49091e-06 6.27834e-06 2.718 ||| 0-1 ||| 2337 668016 +a ||| information they will be able to ||| 1 0.229811 1.49697e-06 2.47702e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| information to be ||| 0.0102041 0.229811 1.49697e-06 1.05067e-06 2.718 ||| 0-1 ||| 98 668016 +a ||| information to ||| 0.00140252 0.229811 1.49697e-06 5.79749e-05 2.718 ||| 0-1 ||| 713 668016 +a ||| informed , ||| 0.00621118 0.027911 1.49697e-06 1.39289e-05 2.718 ||| 0-0 ||| 161 668016 +a ||| informed at ||| 0.04 0.204175 1.49697e-06 1.01766e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| informed by the ||| 0.037037 0.0337966 1.49697e-06 1.51025e-08 2.718 ||| 0-1 ||| 27 668016 +a ||| informed by ||| 0.0263158 0.0337966 2.99394e-06 2.46002e-07 2.718 ||| 0-1 ||| 76 668016 +a ||| informed him of ||| 0.5 0.027911 1.49697e-06 2.03572e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| informed him ||| 0.166667 0.027911 1.49697e-06 3.74461e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| informed of ||| 0.00246305 0.0188479 1.49697e-06 8.84397e-07 2.718 ||| 0-1 ||| 406 668016 +a ||| informed ||| 0.00380035 0.027911 2.24546e-05 0.0001168 2.718 ||| 0-0 ||| 3947 668016 +a ||| informing them ||| 0.0384615 0.247008 1.49697e-06 5.55793e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| informing ||| 0.0111643 0.247008 1.04788e-05 0.0002072 2.718 ||| 0-0 ||| 627 668016 +a ||| infringed on ||| 0.333333 0.0782999 1.49697e-06 6.82841e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| infringements of ||| 0.0035461 0.0188479 1.49697e-06 1.39019e-07 2.718 ||| 0-1 ||| 282 668016 +a ||| ingenious at reducing ||| 1 0.204175 1.49697e-06 3.62137e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| ingenious at ||| 1 0.204175 1.49697e-06 1.36142e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| inherent in carrying out ||| 0.5 0.0669777 1.49697e-06 6.47903e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| inherent in ||| 0.00393701 0.0587624 1.49697e-06 7.33006e-07 2.718 ||| 0-1 ||| 254 668016 +a ||| inhibit ||| 0.0232558 0.0181818 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 43 668016 +a ||| initiated against ||| 0.0909091 0.05146 1.49697e-06 3.6393e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| initiated by ||| 0.00420168 0.0337966 1.49697e-06 1.15185e-07 2.718 ||| 0-1 ||| 238 668016 +a ||| initiatives in ||| 0.00338983 0.0587624 1.49697e-06 1.90462e-06 2.718 ||| 0-1 ||| 295 668016 +a ||| initiatives to ||| 0.00273224 0.229811 1.49697e-06 1.11046e-05 2.718 ||| 0-1 ||| 366 668016 +a ||| injure ||| 0.0526316 0.09375 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 19 668016 +a ||| injured , ||| 0.0125 0.0131752 1.49697e-06 1.08522e-06 2.718 ||| 0-0 ||| 80 668016 +a ||| injured in ||| 0.0175439 0.0587624 1.49697e-06 2.16297e-07 2.718 ||| 0-1 ||| 57 668016 +a ||| injured ||| 0.0017452 0.0131752 1.49697e-06 9.1e-06 2.718 ||| 0-0 ||| 573 668016 +a ||| injury to ||| 0.0344828 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| innovation in ||| 0.00228833 0.0587624 1.49697e-06 6.90949e-07 2.718 ||| 0-1 ||| 437 668016 +a ||| input for ||| 0.142857 0.0683377 2.99394e-06 4.64291e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| input in ||| 0.0344828 0.0587624 1.49697e-06 7.57039e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| input into ||| 0.0175439 0.107578 1.49697e-06 7.65362e-08 2.718 ||| 0-1 ||| 57 668016 +a ||| inquiries at ||| 0.25 0.204175 1.49697e-06 8.50885e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| insecurity as ||| 0.25 0.0243476 1.49697e-06 1.57903e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| insight into the important role to be ||| 1 0.107578 1.49697e-06 2.76158e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| insight into the important role to ||| 1 0.107578 1.49697e-06 1.52381e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| insight into the important role ||| 1 0.107578 1.49697e-06 1.71487e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| insight into the important ||| 1 0.107578 1.49697e-06 7.72465e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| insight into the ||| 0.0192308 0.107578 1.49697e-06 2.01373e-09 2.718 ||| 0-1 ||| 52 668016 +a ||| insight into ||| 0.0396825 0.107578 7.48485e-06 3.28012e-08 2.718 ||| 0-1 ||| 126 668016 +a ||| insist in ||| 0.0833333 0.0587624 1.49697e-06 1.27375e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| insist on ||| 0.00545703 0.0782999 5.98788e-06 8.04235e-07 2.718 ||| 0-1 ||| 733 668016 +a ||| insofar as ||| 0.00197628 0.0243476 1.49697e-06 1.35972e-07 2.718 ||| 0-1 ||| 506 668016 +a ||| inspected in order ||| 0.2 0.0587624 1.49697e-06 4.47999e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| inspected in ||| 0.1 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| inspected to see ||| 0.5 0.229811 1.49697e-06 3.45552e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| inspected to ||| 0.333333 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| inspections from ||| 0.5 0.0435582 1.49697e-06 3.88735e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| inspired by the United States ||| 1 0.0337966 1.49697e-06 1.47513e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| inspired by the United ||| 1 0.0337966 1.49697e-06 3.09122e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| inspired by the ||| 0.00925926 0.0337966 1.49697e-06 2.52551e-09 2.718 ||| 0-1 ||| 108 668016 +a ||| inspired by ||| 0.00769231 0.0337966 2.99394e-06 4.11375e-08 2.718 ||| 0-1 ||| 260 668016 +a ||| inspired to ||| 0.166667 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| installed to ||| 1 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| instance of ||| 0.0273973 0.0188479 2.99394e-06 1.91669e-06 2.718 ||| 0-1 ||| 73 668016 +a ||| instance to ||| 0.0322581 0.229811 1.49697e-06 2.26995e-05 2.718 ||| 0-1 ||| 31 668016 +a ||| instances drawn from Spain ||| 1 0.0435582 1.49697e-06 1.90575e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| instances drawn from ||| 1 0.0435582 1.49697e-06 1.17639e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| instead , to ||| 0.0526316 0.229811 1.49697e-06 8.4344e-06 2.718 ||| 0-2 ||| 19 668016 +a ||| instead at a number ||| 1 0.204175 1.49697e-06 1.50714e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| instead at a ||| 1 0.204175 1.49697e-06 3.04596e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| instead at ||| 0.25 0.204175 1.49697e-06 6.87175e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| instead of ||| 0.0011936 0.0188479 7.48485e-06 5.9719e-06 2.718 ||| 0-1 ||| 4189 668016 +a ||| instead offer ||| 0.25 0.0034208 1.49697e-06 3.87648e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| instead to focus on the quality of ||| 1 0.0782999 1.49697e-06 8.66743e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| instead to focus on the quality ||| 1 0.0782999 1.49697e-06 1.59433e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| instead to focus on the ||| 1 0.0782999 1.49697e-06 3.23394e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| instead to focus on ||| 1 0.0782999 1.49697e-06 5.26771e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| instead to ||| 0.0465116 0.229811 8.98182e-06 7.07259e-05 2.718 ||| 0-1 ||| 129 668016 +a ||| instead we will now ||| 0.166667 0.0561595 1.49697e-06 6.64941e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| instead we will ||| 0.111111 0.0561595 1.49697e-06 3.22803e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| institution by ||| 0.333333 0.0337966 1.49697e-06 2.24611e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| institution of ||| 0.00512821 0.0188479 1.49697e-06 8.07493e-07 2.718 ||| 0-1 ||| 195 668016 +a ||| institution or body to ||| 0.333333 0.229811 1.49697e-06 9.3592e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| institutions , namely ||| 0.1 0.160809 1.49697e-06 1.09546e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| institutions in ||| 0.00355872 0.0587624 1.49697e-06 3.15433e-06 2.718 ||| 0-1 ||| 281 668016 +a ||| instruct the public ||| 0.5 0.339394 1.49697e-06 5.06959e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| instruct the ||| 0.0344828 0.339394 1.49697e-06 3.13712e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| instruct ||| 0.0434783 0.339394 4.49091e-06 5.11e-05 2.718 ||| 0-0 ||| 69 668016 +a ||| instructed to do ||| 0.2 0.229811 1.49697e-06 2.1661e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| instructed to ||| 0.0555556 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| instructed ||| 0.0138889 0.196787 2.99394e-06 4.47e-05 2.718 ||| 0-0 ||| 144 668016 +a ||| instrument in exerting ||| 0.166667 0.0587624 1.49697e-06 3.54126e-12 2.718 ||| 0-1 ||| 6 668016 +a ||| instrument in ||| 0.010101 0.0587624 1.49697e-06 2.52947e-06 2.718 ||| 0-1 ||| 99 668016 +a ||| instrument of development ||| 0.125 0.0188479 1.49697e-06 2.04844e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| instrument of ||| 0.00226244 0.0188479 1.49697e-06 1.24525e-06 2.718 ||| 0-1 ||| 442 668016 +a ||| instrumental in ||| 0.0124224 0.0587624 2.99394e-06 1.74239e-07 2.718 ||| 0-1 ||| 161 668016 +a ||| instruments available to it ||| 0.1 0.229811 1.49697e-06 5.13234e-11 2.718 ||| 0-2 ||| 10 668016 +a ||| instruments available to ||| 0.0188679 0.229811 1.49697e-06 2.88606e-09 2.718 ||| 0-2 ||| 53 668016 +a ||| instruments prove to be ||| 1 0.229811 1.49697e-06 8.69812e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| instruments prove to ||| 1 0.229811 1.49697e-06 4.79952e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| insufficient and ||| 0.015625 0.0015873 1.49697e-06 1.11911e-08 2.718 ||| 0-1 ||| 64 668016 +a ||| insufficient to carry out the decommissioning work ||| 1 0.229811 1.49697e-06 1.99787e-22 2.718 ||| 0-1 ||| 1 668016 +a ||| insufficient to carry out the decommissioning ||| 1 0.229811 1.49697e-06 3.15619e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| insufficient to carry out the ||| 1 0.229811 1.49697e-06 8.7672e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| insufficient to carry out ||| 1 0.229811 1.49697e-06 1.42807e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| insufficient to carry ||| 1 0.229811 1.49697e-06 3.72826e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| insufficient to ||| 0.0103093 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-1 ||| 97 668016 +a ||| insult someone ||| 0.2 0.0328972 1.49697e-06 3.212e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| insult to ||| 0.010929 0.229811 2.99394e-06 1.40121e-06 2.718 ||| 0-1 ||| 183 668016 +a ||| intake in response ||| 0.333333 0.0587624 1.49697e-06 8.41155e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| intake in ||| 0.333333 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| integrate ||| 0.000723066 0.0008489 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1383 668016 +a ||| integrated into ||| 0.00275482 0.107578 1.49697e-06 1.22701e-07 2.718 ||| 0-1 ||| 363 668016 +a ||| integrated policy to be ||| 1 0.229811 1.49697e-06 5.04878e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| integrated policy to ||| 0.25 0.229811 1.49697e-06 2.78586e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| integration on ||| 0.0555556 0.0782999 1.49697e-06 7.51125e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| intend to deny Portugal ||| 1 0.229811 1.49697e-06 1.59202e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| intend to deny ||| 1 0.229811 1.49697e-06 2.21114e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| intend to make ||| 0.0204082 0.229811 1.49697e-06 4.86395e-08 2.718 ||| 0-1 ||| 49 668016 +a ||| intend to ||| 0.00766284 0.229811 2.39515e-05 2.79891e-05 2.718 ||| 0-1 ||| 2088 668016 +a ||| intended especially for ||| 1 0.0683377 1.49697e-06 2.59794e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| intended for ||| 0.00646831 0.0683377 7.48485e-06 3.2353e-06 2.718 ||| 0-1 ||| 773 668016 +a ||| intended to provide ||| 0.0181818 0.229811 1.49697e-06 9.09777e-09 2.718 ||| 0-1 ||| 55 668016 +a ||| intended to reflect the fact that I ||| 0.2 0.115597 1.49697e-06 1.64068e-18 2.718 ||| 0-0 0-1 ||| 5 668016 +a ||| intended to reflect the fact that ||| 0.2 0.115597 1.49697e-06 2.31948e-16 2.718 ||| 0-0 0-1 ||| 5 668016 +a ||| intended to reflect the fact ||| 0.2 0.115597 1.49697e-06 1.37887e-14 2.718 ||| 0-0 0-1 ||| 5 668016 +a ||| intended to reflect the ||| 0.2 0.115597 1.49697e-06 4.70716e-12 2.718 ||| 0-0 0-1 ||| 5 668016 +a ||| intended to reflect ||| 0.0714286 0.115597 1.49697e-06 7.6674e-11 2.718 ||| 0-0 0-1 ||| 14 668016 +a ||| intended to ||| 0.00615385 0.229811 2.09576e-05 3.07565e-05 2.718 ||| 0-1 ||| 2275 668016 +a ||| intended ||| 0.00125353 0.0013823 5.98788e-06 6.4e-06 2.718 ||| 0-0 ||| 3191 668016 +a ||| intends to continue giving support ||| 1 0.136521 1.49697e-06 1.35429e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| intends to continue giving ||| 1 0.136521 1.49697e-06 3.96108e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| intends to ||| 0.00176991 0.229811 4.49091e-06 6.69076e-06 2.718 ||| 0-1 ||| 1695 668016 +a ||| intends with ||| 1 0.0571592 1.49697e-06 3.18876e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| intensively along ||| 0.5 0.0178286 1.49697e-06 4.4028e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| intent on sustaining ||| 0.25 0.0782999 1.49697e-06 9.93154e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| intent on ||| 0.0327869 0.0782999 5.98788e-06 4.51434e-07 2.718 ||| 0-1 ||| 122 668016 +a ||| intention behind ||| 0.016129 0.0923313 1.49697e-06 4.35276e-08 2.718 ||| 0-1 ||| 62 668016 +a ||| intention of agreeing to ||| 0.5 0.229811 1.49697e-06 1.0437e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| intention to ||| 0.00259403 0.229811 2.99394e-06 1.9792e-05 2.718 ||| 0-1 ||| 771 668016 +a ||| intentionally break into ||| 1 0.107578 1.49697e-06 1.94438e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| intentions for ||| 0.0434783 0.0683377 1.49697e-06 4.12703e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| intentions in trying to reach ||| 0.5 0.0587624 1.49697e-06 5.57957e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| intentions in trying to ||| 0.5 0.0587624 1.49697e-06 6.88836e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| intentions in trying ||| 0.5 0.0587624 1.49697e-06 7.75208e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| intentions in ||| 0.0357143 0.0587624 1.49697e-06 6.72924e-07 2.718 ||| 0-1 ||| 28 668016 +a ||| intentions with which ||| 1 0.0571592 1.49697e-06 1.58836e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| intentions with ||| 0.0833333 0.0571592 1.49697e-06 1.86985e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| intercepted at the ||| 0.5 0.204175 1.49697e-06 8.35798e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| intercepted at ||| 0.166667 0.204175 1.49697e-06 1.36142e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| interest for ||| 0.0116279 0.0683377 1.49697e-06 4.13809e-06 2.718 ||| 0-1 ||| 86 668016 +a ||| interest in the ||| 0.00327869 0.0587624 1.49697e-06 4.14227e-07 2.718 ||| 0-1 ||| 305 668016 +a ||| interest in ||| 0.00184275 0.0587624 4.49091e-06 6.74726e-06 2.718 ||| 0-1 ||| 1628 668016 +a ||| interest of ||| 0.00416667 0.0188479 4.49091e-06 3.32167e-06 2.718 ||| 0-1 ||| 720 668016 +a ||| interest to do ||| 0.0909091 0.229811 1.49697e-06 1.35141e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| interest to ||| 0.0127042 0.229811 1.04788e-05 3.93389e-05 2.718 ||| 0-1 ||| 551 668016 +a ||| interest ’ , in order to ||| 0.5 0.229811 1.49697e-06 9.31701e-14 2.718 ||| 0-5 ||| 2 668016 +a ||| interested in universal ||| 1 0.0587624 1.49697e-06 1.09542e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| interested in ||| 0.00362319 0.0587624 5.98788e-06 1.27375e-06 2.718 ||| 0-1 ||| 1104 668016 +a ||| interested to know ||| 0.027027 0.229811 1.49697e-06 1.91601e-09 2.718 ||| 0-1 ||| 37 668016 +a ||| interested to ||| 0.00684932 0.229811 1.49697e-06 7.42639e-06 2.718 ||| 0-1 ||| 146 668016 +a ||| interesting to ||| 0.0042735 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-1 ||| 234 668016 +a ||| interests of all ||| 0.0042735 0.0188479 1.49697e-06 1.91625e-08 2.718 ||| 0-1 ||| 234 668016 +a ||| interests of ||| 0.0034965 0.0188479 2.54485e-05 4.05521e-06 2.718 ||| 0-1 ||| 4862 668016 +a ||| interference in ||| 0.00549451 0.0587624 1.49697e-06 2.58355e-07 2.718 ||| 0-1 ||| 182 668016 +a ||| interference with ||| 0.0217391 0.0571592 1.49697e-06 7.17889e-08 2.718 ||| 0-1 ||| 46 668016 +a ||| interferes with ||| 0.027027 0.0571592 1.49697e-06 1.16866e-08 2.718 ||| 0-1 ||| 37 668016 +a ||| interfering with , ||| 1 0.0571592 1.49697e-06 5.77381e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| interfering with ||| 0.0333333 0.0571592 2.99394e-06 4.84158e-08 2.718 ||| 0-1 ||| 60 668016 +a ||| intergovernmental conference to embark on ||| 0.5 0.0782999 1.49697e-06 8.43639e-19 2.718 ||| 0-4 ||| 2 668016 +a ||| internally structured agenda ||| 1 0.0652418 1.49697e-06 2.62649e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| internally structured ||| 1 0.0652418 1.49697e-06 2.645e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| internally ||| 0.00924499 0.0652418 8.98182e-06 5.29e-05 2.718 ||| 0-0 ||| 649 668016 +a ||| international dimension to ||| 0.142857 0.229811 1.49697e-06 8.59493e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| internationally by ||| 0.166667 0.158659 1.49697e-06 1.36083e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| internationally ||| 0.0018018 0.158659 2.99394e-06 0.0002592 2.718 ||| 0-0 ||| 1110 668016 +a ||| interpreted in ||| 0.0120482 0.0587624 1.49697e-06 6.24858e-07 2.718 ||| 0-1 ||| 83 668016 +a ||| interrogated ||| 0.0588235 0.0645161 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 17 668016 +a ||| interrupted by ||| 0.0434783 0.0594796 1.49697e-06 7.66515e-08 2.718 ||| 0-0 ||| 23 668016 +a ||| interrupted ||| 0.004329 0.0594796 1.49697e-06 1.46e-05 2.718 ||| 0-0 ||| 231 668016 +a ||| intervention from ||| 0.0384615 0.0435582 1.49697e-06 1.91488e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| intimidated ||| 0.0142857 0.0808824 1.49697e-06 1e-05 2.718 ||| 0-0 ||| 70 668016 +a ||| into , ||| 0.0769231 0.107578 2.99394e-06 0.000724389 2.718 ||| 0-0 ||| 26 668016 +a ||| into - ||| 0.2 0.107578 1.49697e-06 2.29129e-05 2.718 ||| 0-0 ||| 5 668016 +a ||| into Africa ||| 0.2 0.107578 1.49697e-06 2.07741e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| into Burma , ||| 0.333333 0.107578 1.49697e-06 4.92584e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| into Burma ||| 0.25 0.107578 1.49697e-06 4.13052e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| into French of the term ' standby ||| 1 0.107578 1.49697e-06 1.99443e-22 2.718 ||| 0-0 ||| 1 668016 +a ||| into French of the term ' ||| 1 0.107578 1.49697e-06 2.84919e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| into French of the term ||| 1 0.107578 1.49697e-06 8.29482e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| into French of the ||| 1 0.107578 1.49697e-06 7.5821e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| into French of ||| 1 0.107578 1.49697e-06 1.23503e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| into French ||| 0.333333 0.107578 1.49697e-06 2.27179e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| into Russia , ||| 0.333333 0.107578 1.49697e-06 2.91929e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| into Russia ||| 0.166667 0.107578 2.99394e-06 2.44794e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| into Schengen ||| 0.166667 0.107578 1.49697e-06 6.56024e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| into a commitment that we will ||| 1 0.107578 1.49697e-06 2.48207e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| into a commitment that we ||| 1 0.107578 1.49697e-06 2.86905e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| into a commitment that ||| 1 0.107578 1.49697e-06 2.52729e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| into a commitment ||| 0.2 0.107578 1.49697e-06 1.5024e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| into a conflict with China now to ||| 1 0.107578 1.49697e-06 3.45617e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| into a conflict with China now ||| 1 0.107578 1.49697e-06 3.88953e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| into a conflict with China ||| 1 0.107578 1.49697e-06 1.88821e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| into a conflict with ||| 0.5 0.107578 1.49697e-06 7.17952e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| into a conflict ||| 0.166667 0.107578 1.49697e-06 1.12277e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| into a form of ||| 0.0833333 0.107578 1.49697e-06 6.66295e-09 2.718 ||| 0-0 ||| 12 668016 +a ||| into a form ||| 0.0555556 0.107578 1.49697e-06 1.22562e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| into a little more ||| 0.333333 0.107578 1.49697e-06 9.95494e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| into a little ||| 0.5 0.107578 1.49697e-06 4.35913e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| into a phase of ||| 1 0.107578 1.49697e-06 3.42515e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| into a phase ||| 1 0.107578 1.49697e-06 6.30041e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| into a ||| 0.00793651 0.107578 4.19152e-05 0.000269248 2.718 ||| 0-0 ||| 3528 668016 +a ||| into a ‘ ||| 0.25 0.107578 1.49697e-06 3.02366e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| into account even ||| 0.5 0.107578 1.49697e-06 1.06266e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| into account in ||| 0.00413223 0.107578 2.99394e-06 3.738e-08 2.718 ||| 0-0 ||| 484 668016 +a ||| into account ||| 0.00216606 0.107578 2.24546e-05 1.74636e-06 2.718 ||| 0-0 ||| 6925 668016 +a ||| into action by ||| 0.125 0.107578 1.49697e-06 9.64055e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| into action themselves ||| 1 0.107578 1.49697e-06 7.89041e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| into action ||| 0.025788 0.107578 1.34727e-05 1.83626e-06 2.718 ||| 0-0 ||| 349 668016 +a ||| into again ||| 0.25 0.107578 1.49697e-06 3.51277e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| into allegations ||| 0.25 0.107578 1.49697e-06 3.28012e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| into alleged ||| 0.0769231 0.107578 1.49697e-06 9.84037e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| into an ||| 0.00309119 0.107578 2.99394e-06 2.69984e-05 2.718 ||| 0-0 ||| 647 668016 +a ||| into balance ||| 0.0714286 0.107578 1.49697e-06 3.28012e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| into being - ||| 0.25 0.107578 1.49697e-06 6.52054e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| into being a ||| 0.25 0.107578 1.49697e-06 7.66227e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| into being ||| 0.0401786 0.107578 1.34727e-05 1.72862e-05 2.718 ||| 0-0 ||| 224 668016 +a ||| into close proximity to ||| 0.5 0.107578 1.49697e-06 2.00113e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| into close proximity ||| 0.5 0.107578 1.49697e-06 2.25205e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| into close ||| 0.2 0.107578 1.49697e-06 9.00819e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| into conflict with ||| 0.0277778 0.107578 1.49697e-06 1.61972e-09 2.718 ||| 0-0 ||| 36 668016 +a ||| into conflict ||| 0.0208333 0.107578 1.49697e-06 2.53298e-07 2.718 ||| 0-0 ||| 48 668016 +a ||| into consideration comments ||| 1 0.107578 1.49697e-06 3.28012e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| into consideration in ||| 0.0104167 0.107578 1.49697e-06 1.40419e-08 2.718 ||| 0-0 ||| 96 668016 +a ||| into consideration ||| 0.00470035 0.107578 1.19758e-05 6.56024e-07 2.718 ||| 0-0 ||| 1702 668016 +a ||| into contact with ||| 0.0208333 0.0823687 2.99394e-06 1.93695e-09 2.718 ||| 0-0 0-2 ||| 96 668016 +a ||| into continuing to ||| 1 0.168695 1.49697e-06 1.31713e-07 2.718 ||| 0-0 0-2 ||| 1 668016 +a ||| into custody ||| 0.125 0.107578 2.99394e-06 3.52309e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| into detail about ||| 0.0769231 0.107578 1.49697e-06 4.38994e-10 2.718 ||| 0-0 ||| 13 668016 +a ||| into detail ||| 0.00862069 0.107578 1.49697e-06 3.10397e-07 2.718 ||| 0-0 ||| 116 668016 +a ||| into detailed ||| 0.166667 0.107578 1.49697e-06 1.53072e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| into details ||| 0.0526316 0.107578 1.49697e-06 1.68258e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| into different cultural ||| 1 0.107578 1.49697e-06 3.12989e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| into different ||| 0.037037 0.107578 1.49697e-06 1.33756e-06 2.718 ||| 0-0 ||| 27 668016 +a ||| into difficulty - ||| 1 0.107578 1.49697e-06 4.12432e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| into difficulty ||| 0.0909091 0.107578 1.49697e-06 1.09337e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| into discredit ||| 0.333333 0.107578 1.49697e-06 1.33635e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| into disrepair ||| 0.2 0.107578 1.49697e-06 2.42972e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| into disrepute ||| 0.0416667 0.107578 2.99394e-06 1.51858e-08 2.718 ||| 0-0 ||| 48 668016 +a ||| into effect with even ||| 1 0.107578 1.49697e-06 7.88478e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| into effect with ||| 0.333333 0.107578 1.49697e-06 1.29577e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| into effect ||| 0.0152672 0.107578 1.19758e-05 2.02639e-06 2.718 ||| 0-0 ||| 524 668016 +a ||| into establishing ||| 0.166667 0.107578 1.49697e-06 2.84277e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| into existence ||| 0.0232558 0.107578 1.49697e-06 4.19734e-07 2.718 ||| 0-0 ||| 43 668016 +a ||| into figures ||| 0.125 0.107578 1.49697e-06 2.80025e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| into force of ||| 0.00259067 0.0188479 1.49697e-06 5.16868e-09 2.718 ||| 0-2 ||| 386 668016 +a ||| into force ||| 0.00133779 0.107578 5.98788e-06 1.03385e-06 2.718 ||| 0-0 ||| 2990 668016 +a ||| into forestry . ||| 1 0.107578 1.49697e-06 4.59976e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| into forestry ||| 1 0.107578 1.49697e-06 1.51858e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| into free fall by the ||| 1 0.107578 1.49697e-06 2.18466e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| into free fall by ||| 1 0.107578 1.49697e-06 3.55856e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| into free fall ||| 0.25 0.107578 1.49697e-06 6.77808e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| into free ||| 0.25 0.107578 1.49697e-06 7.08263e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| into how we might best ||| 1 0.107578 1.49697e-06 1.3144e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| into how we might ||| 1 0.107578 1.49697e-06 9.49029e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| into how we ||| 0.333333 0.107578 1.49697e-06 2.47143e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| into how ||| 0.0185185 0.107578 1.49697e-06 2.17703e-06 2.718 ||| 0-0 ||| 54 668016 +a ||| into it , ||| 0.04 0.107578 1.49697e-06 1.2882e-05 2.718 ||| 0-0 ||| 25 668016 +a ||| into it at all ||| 1 0.107578 1.49697e-06 2.13742e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| into it at ||| 0.333333 0.107578 1.49697e-06 4.52325e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| into it in ||| 0.4 0.107578 2.99394e-06 2.31212e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| into it ||| 0.0621469 0.107578 1.64667e-05 0.00010802 2.718 ||| 0-0 ||| 177 668016 +a ||| into its possession ||| 0.5 0.107578 1.49697e-06 1.24618e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| into its ||| 0.0077821 0.107578 2.99394e-06 8.65406e-06 2.718 ||| 0-0 ||| 257 668016 +a ||| into law ||| 0.047619 0.107578 2.99394e-06 1.0709e-06 2.718 ||| 0-0 ||| 42 668016 +a ||| into lazy ||| 0.5 0.107578 1.49697e-06 6.68173e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| into line with those of ||| 0.166667 0.0188479 1.49697e-06 4.13964e-14 2.718 ||| 0-4 ||| 6 668016 +a ||| into line with ||| 0.222222 0.0571592 0.000107782 5.04627e-09 2.718 ||| 0-2 ||| 324 668016 +a ||| into line ||| 0.114583 0.107578 6.58667e-05 1.78827e-06 2.718 ||| 0-0 ||| 384 668016 +a ||| into more ||| 0.0212766 0.107578 1.49697e-06 1.38719e-05 2.718 ||| 0-0 ||| 47 668016 +a ||| into mothers ||| 0.5 0.107578 1.49697e-06 1.33635e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| into mothers ’ ||| 0.5 0.107578 1.49697e-06 2.32805e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| into name calling ||| 0.333333 0.107578 1.49697e-06 3.49859e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| into name ||| 0.333333 0.107578 1.49697e-06 5.30894e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| into national ||| 0.0384615 0.107578 2.99394e-06 7.80548e-07 2.718 ||| 0-0 ||| 52 668016 +a ||| into new movement , ||| 0.333333 0.107578 1.49697e-06 1.90073e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| into new movement ||| 0.333333 0.107578 1.49697e-06 1.59384e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| into new ||| 0.00757576 0.107578 1.49697e-06 3.63061e-06 2.718 ||| 0-0 ||| 132 668016 +a ||| into now ||| 0.111111 0.107578 1.49697e-06 1.25125e-05 2.718 ||| 0-0 ||| 9 668016 +a ||| into office ||| 0.0333333 0.107578 1.49697e-06 6.25045e-07 2.718 ||| 0-0 ||| 30 668016 +a ||| into on ||| 0.2 0.107578 1.49697e-06 4.06431e-05 2.718 ||| 0-0 ||| 5 668016 +a ||| into one of ||| 0.0232558 0.107578 1.49697e-06 1.37637e-06 2.718 ||| 0-0 ||| 43 668016 +a ||| into one ||| 0.00943396 0.107578 2.99394e-06 2.53177e-05 2.718 ||| 0-0 ||| 212 668016 +a ||| into operation on 3 June next year ||| 1 0.107578 1.49697e-06 1.17848e-26 2.718 ||| 0-0 ||| 1 668016 +a ||| into operation on 3 June next ||| 1 0.107578 1.49697e-06 4.72526e-23 2.718 ||| 0-0 ||| 1 668016 +a ||| into operation on 3 June ||| 1 0.107578 1.49697e-06 4.57431e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| into operation on 3 ||| 1 0.107578 1.49697e-06 5.31897e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| into operation on ||| 0.333333 0.107578 1.49697e-06 2.31259e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| into operation ||| 0.0125 0.107578 2.99394e-06 3.45628e-07 2.718 ||| 0-0 ||| 160 668016 +a ||| into other ||| 0.00684932 0.107578 1.49697e-06 7.86926e-06 2.718 ||| 0-0 ||| 146 668016 +a ||| into place soon ||| 0.5 0.107578 1.49697e-06 8.41962e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| into place ||| 0.0487805 0.107578 5.98788e-06 9.14182e-06 2.718 ||| 0-0 ||| 82 668016 +a ||| into play at the ||| 1 0.107578 1.49697e-06 4.02875e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| into play at ||| 0.5 0.107578 1.49697e-06 6.56237e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| into play ||| 0.038961 0.107578 8.98182e-06 1.56717e-06 2.718 ||| 0-0 ||| 154 668016 +a ||| into position to ||| 1 0.168695 1.49697e-06 7.00697e-07 2.718 ||| 0-0 0-2 ||| 1 668016 +a ||| into practice in connection ||| 1 0.107578 1.49697e-06 2.0912e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| into practice in ||| 0.030303 0.107578 1.49697e-06 1.37038e-08 2.718 ||| 0-0 ||| 33 668016 +a ||| into practice ||| 0.00486381 0.107578 7.48485e-06 6.40231e-07 2.718 ||| 0-0 ||| 1028 668016 +a ||| into precise ||| 0.333333 0.107578 1.49697e-06 2.03489e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| into preparing ||| 0.0526316 0.107578 1.49697e-06 8.98996e-08 2.718 ||| 0-0 ||| 19 668016 +a ||| into projects ||| 0.1 0.107578 1.49697e-06 2.99463e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| into providers ||| 1 0.107578 1.49697e-06 2.85492e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| into question ||| 0.00449438 0.107578 5.98788e-06 5.02527e-06 2.718 ||| 0-0 ||| 890 668016 +a ||| into quite ||| 0.5 0.107578 1.49697e-06 2.36958e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| into reality ||| 0.00869565 0.107578 1.49697e-06 4.06371e-07 2.718 ||| 0-0 ||| 115 668016 +a ||| into recipient ||| 1 0.107578 1.49697e-06 2.61195e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| into saying ||| 0.142857 0.107578 1.49697e-06 1.07758e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| into sending ||| 0.166667 0.107578 1.49697e-06 1.39709e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| into something ||| 0.0149254 0.107578 1.49697e-06 3.36213e-06 2.718 ||| 0-0 ||| 67 668016 +a ||| into that ||| 0.00990099 0.107578 1.49697e-06 0.000102179 2.718 ||| 0-0 ||| 101 668016 +a ||| into the ' ||| 0.166667 0.107578 1.49697e-06 1.28092e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| into the Community ||| 0.0121951 0.107578 1.49697e-06 6.03745e-08 2.718 ||| 0-0 ||| 82 668016 +a ||| into the bargain ||| 0.0555556 0.107578 1.49697e-06 1.08145e-09 2.718 ||| 0-0 ||| 18 668016 +a ||| into the coffers at ||| 1 0.204175 1.49697e-06 3.0034e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| into the corner ||| 0.333333 0.107578 1.49697e-06 4.28849e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| into the door of ||| 1 0.0188479 1.49697e-06 8.44556e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| into the fold on ||| 1 0.107578 1.49697e-06 9.98062e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| into the fold ||| 0.111111 0.107578 1.49697e-06 1.49165e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| into the hands of the ||| 0.0163934 0.107578 1.49697e-06 1.25455e-10 2.718 ||| 0-0 ||| 61 668016 +a ||| into the hands of ||| 0.0441176 0.107578 8.98182e-06 2.04352e-09 2.718 ||| 0-0 ||| 136 668016 +a ||| into the hands ||| 0.0320513 0.107578 7.48485e-06 3.75896e-08 2.718 ||| 0-0 ||| 156 668016 +a ||| into the important role to be played ||| 1 0.107578 1.49697e-06 2.52122e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| into the important role to be ||| 1 0.107578 1.49697e-06 5.11403e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| into the important role to ||| 1 0.107578 1.49697e-06 2.82186e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| into the important role ||| 1 0.107578 1.49697e-06 3.17569e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| into the important ||| 0.333333 0.107578 1.49697e-06 1.43049e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| into the matter and ||| 1 0.107578 1.49697e-06 4.84623e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| into the matter rather than ||| 1 0.107578 1.49697e-06 3.61919e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| into the matter rather ||| 1 0.107578 1.49697e-06 1.18468e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| into the matter ||| 0.0714286 0.107578 2.99394e-06 3.86896e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| into the night and having to acknowledge ||| 1 0.107578 1.49697e-06 2.38947e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| into the night and having to ||| 1 0.107578 1.49697e-06 1.54159e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| into the night and having ||| 1 0.107578 1.49697e-06 1.73489e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| into the night and ||| 1 0.107578 1.49697e-06 4.53093e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| into the night ||| 0.0769231 0.107578 1.49697e-06 3.61725e-09 2.718 ||| 0-0 ||| 13 668016 +a ||| into the world ||| 0.0212766 0.107578 1.49697e-06 8.49494e-08 2.718 ||| 0-0 ||| 47 668016 +a ||| into the ||| 0.00706605 0.107578 0.000103291 0.000372912 2.718 ||| 0-0 ||| 9765 668016 +a ||| into their ||| 0.00294118 0.107578 1.49697e-06 7.04072e-06 2.718 ||| 0-0 ||| 340 668016 +a ||| into thinking ||| 0.0434783 0.107578 1.49697e-06 4.50106e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| into this further ||| 1 0.107578 1.49697e-06 1.89688e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| into this ||| 0.00111732 0.107578 1.49697e-06 3.92485e-05 2.718 ||| 0-0 ||| 895 668016 +a ||| into touch ||| 1 0.107578 1.49697e-06 1.33635e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| into two in ||| 1 0.0587624 1.49697e-06 1.45827e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| into what has been ||| 0.5 0.107578 1.49697e-06 1.46495e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| into what has ||| 0.25 0.107578 1.49697e-06 4.38714e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| into what is ||| 0.0769231 0.107578 1.49697e-06 2.67116e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| into what ||| 0.02 0.107578 2.99394e-06 8.52285e-06 2.718 ||| 0-0 ||| 100 668016 +a ||| into wild ||| 0.0588235 0.107578 1.49697e-06 4.13052e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| into yet ||| 0.5 0.107578 1.49697e-06 1.60665e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| into ||| 0.112585 0.107578 0.0075612 0.0060743 2.718 ||| 0-0 ||| 44864 668016 +a ||| intolerant of ||| 0.25 0.0188479 1.49697e-06 4.14099e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| intrigued to hear ||| 0.5 0.229811 1.49697e-06 1.42222e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| intrigued to ||| 0.5 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| introduce for ||| 0.2 0.0683377 1.49697e-06 1.88296e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| introduced as ||| 0.0285714 0.0243476 1.49697e-06 8.11447e-07 2.718 ||| 0-1 ||| 35 668016 +a ||| introduced at ||| 0.015625 0.204175 1.49697e-06 3.14827e-06 2.718 ||| 0-1 ||| 64 668016 +a ||| introduced for ||| 0.0307692 0.0683377 2.99394e-06 3.40849e-06 2.718 ||| 0-1 ||| 65 668016 +a ||| introduced into the ||| 0.0147059 0.107578 1.49697e-06 3.44944e-08 2.718 ||| 0-1 ||| 68 668016 +a ||| introduced into ||| 0.026087 0.107578 4.49091e-06 5.61873e-07 2.718 ||| 0-1 ||| 115 668016 +a ||| introduced to ||| 0.011236 0.229811 1.49697e-06 3.24029e-05 2.718 ||| 0-1 ||| 89 668016 +a ||| introducing a situation in ||| 1 0.0587624 1.49697e-06 4.29295e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| introduction of an exchange ||| 1 0.0188479 1.49697e-06 1.91187e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| introduction of an ||| 0.00746269 0.0188479 1.49697e-06 6.90205e-09 2.718 ||| 0-1 ||| 134 668016 +a ||| introduction of ||| 0.000953592 0.0188479 4.49091e-06 1.55287e-06 2.718 ||| 0-1 ||| 3146 668016 +a ||| introduction to ||| 0.0116279 0.229811 1.49697e-06 1.83908e-05 2.718 ||| 0-1 ||| 86 668016 +a ||| invariably takes ||| 0.5 0.0205479 1.49697e-06 3.4884e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| invariably ||| 0.00862069 0.0205479 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 116 668016 +a ||| inventory of ||| 0.0169492 0.0188479 1.49697e-06 5.32413e-08 2.718 ||| 0-1 ||| 59 668016 +a ||| invest in ||| 0.00169924 0.0587624 2.99394e-06 5.64775e-07 2.718 ||| 0-1 ||| 1177 668016 +a ||| invested in ||| 0.00790514 0.0587624 2.99394e-06 4.56627e-07 2.718 ||| 0-1 ||| 253 668016 +a ||| invested to quit ||| 1 0.229811 1.49697e-06 1.8636e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| invested to ||| 0.125 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| investigation into alleged ||| 0.333333 0.107578 1.49697e-06 1.81063e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| investigation into the ||| 0.0103093 0.107578 1.49697e-06 6.86158e-09 2.718 ||| 0-1 ||| 97 668016 +a ||| investigation into ||| 0.00904977 0.107578 2.99394e-06 1.11767e-07 2.718 ||| 0-1 ||| 221 668016 +a ||| investment in ||| 0.000434972 0.0587624 1.49697e-06 1.47202e-06 2.718 ||| 0-1 ||| 2299 668016 +a ||| investment on the ||| 0.166667 0.0782999 1.49697e-06 5.70589e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| investment on ||| 0.047619 0.0782999 1.49697e-06 9.29422e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| invitation onto ||| 1 0.207143 1.49697e-06 1.5483e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| invitation to ||| 0.00364964 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-1 ||| 274 668016 +a ||| invite Yasser Arafat and Shimon Peres to ||| 1 0.330028 1.49697e-06 6.36261e-32 2.718 ||| 0-0 ||| 1 668016 +a ||| invite Yasser Arafat and Shimon Peres ||| 1 0.330028 1.49697e-06 7.16041e-31 2.718 ||| 0-0 ||| 1 668016 +a ||| invite Yasser Arafat and Shimon ||| 1 0.330028 1.49697e-06 1.7901e-24 2.718 ||| 0-0 ||| 1 668016 +a ||| invite Yasser Arafat and ||| 1 0.330028 1.49697e-06 4.47525e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| invite Yasser Arafat ||| 1 0.330028 1.49697e-06 3.5728e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| invite Yasser ||| 1 0.330028 1.49697e-06 2.552e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| invite people to ||| 0.5 0.229811 1.49697e-06 3.33002e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| invite you to join me on ||| 1 0.229811 1.49697e-06 2.30303e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| invite you to join me ||| 1 0.229811 1.49697e-06 3.44198e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| invite you to join ||| 0.2 0.229811 1.49697e-06 5.71662e-13 2.718 ||| 0-2 ||| 5 668016 +a ||| invite you to ||| 0.0141844 0.27992 2.99394e-06 7.2159e-07 2.718 ||| 0-0 0-2 ||| 141 668016 +a ||| invite you ||| 0.00769231 0.330028 1.49697e-06 2.05991e-06 2.718 ||| 0-0 ||| 130 668016 +a ||| invite ||| 0.0277778 0.330028 2.24546e-05 0.000638 2.718 ||| 0-0 ||| 540 668016 +a ||| invited in ||| 0.142857 0.245853 1.49697e-06 8.10802e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| invited themselves ||| 1 0.245853 1.49697e-06 1.6277e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| invited to ||| 0.0204082 0.229811 7.48485e-06 2.27696e-06 2.718 ||| 0-1 ||| 245 668016 +a ||| invited ||| 0.0144444 0.245853 1.94606e-05 0.0003788 2.718 ||| 0-0 ||| 900 668016 +a ||| inviting ||| 0.0208333 0.350943 7.48485e-06 0.0001698 2.718 ||| 0-0 ||| 240 668016 +a ||| invocation of ||| 0.166667 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| invoked by ||| 0.0625 0.0337966 1.49697e-06 3.53783e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| invoking ||| 0.00917431 0.0952381 1.49697e-06 1.46e-05 2.718 ||| 0-0 ||| 109 668016 +a ||| involve a ||| 0.0152672 0.170498 2.99394e-06 3.03011e-05 2.718 ||| 0-0 ||| 131 668016 +a ||| involve actually ||| 0.5 0.170498 1.49697e-06 2.8219e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| involve dialogue with other institutions ||| 1 0.0571592 1.49697e-06 2.19441e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| involve dialogue with other ||| 1 0.0571592 1.49697e-06 4.17984e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| involve dialogue with ||| 0.333333 0.0571592 1.49697e-06 3.22643e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| involve industry ||| 1 0.170498 1.49697e-06 9.03036e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| involve itself ||| 0.0277778 0.170498 1.49697e-06 4.63959e-07 2.718 ||| 0-0 ||| 36 668016 +a ||| involve representatives of ||| 0.166667 0.0188479 1.49697e-06 4.72463e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| involve the ||| 0.0021097 0.170498 1.49697e-06 4.19674e-05 2.718 ||| 0-0 ||| 474 668016 +a ||| involve ||| 0.0170697 0.170498 7.18546e-05 0.0006836 2.718 ||| 0-0 ||| 2812 668016 +a ||| involved by ||| 0.0666667 0.0337966 1.49697e-06 2.84507e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| involved for ||| 0.0153846 0.0683377 1.49697e-06 1.27422e-05 2.718 ||| 0-1 ||| 65 668016 +a ||| involved here ||| 0.0108696 0.0182742 1.49697e-06 2.97319e-07 2.718 ||| 0-1 ||| 92 668016 +a ||| involved in reaching ||| 0.125 0.185201 1.49697e-06 2.9925e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| involved in taking care ||| 0.5 0.0587624 1.49697e-06 8.96247e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| involved in taking ||| 0.125 0.0587624 1.49697e-06 8.83002e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| involved in the ||| 0.000734754 0.0587624 1.49697e-06 1.27551e-06 2.718 ||| 0-1 ||| 1361 668016 +a ||| involved in ||| 0.00844363 0.0587624 5.53879e-05 2.07765e-05 2.718 ||| 0-1 ||| 4382 668016 +a ||| involved to ||| 0.0131579 0.229811 2.99394e-06 0.000121134 2.718 ||| 0-1 ||| 152 668016 +a ||| involved with it ||| 0.2 0.0571592 1.49697e-06 1.02665e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| involved with ||| 0.0112994 0.0571592 2.99394e-06 5.77317e-06 2.718 ||| 0-1 ||| 177 668016 +a ||| involvement and cooperation of ||| 1 0.0188479 1.49697e-06 1.02027e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| involvement of ||| 0.00335008 0.0188479 5.98788e-06 8.84397e-07 2.718 ||| 0-1 ||| 1194 668016 +a ||| involvement on the part of ||| 0.1 0.0782999 1.49697e-06 4.51325e-12 2.718 ||| 0-1 ||| 10 668016 +a ||| involvement on the part ||| 0.05 0.0782999 1.49697e-06 8.3019e-11 2.718 ||| 0-1 ||| 20 668016 +a ||| involvement on the ||| 0.05 0.0782999 1.49697e-06 6.96351e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| involvement on ||| 0.0357143 0.0782999 1.49697e-06 1.13427e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| involvement to ||| 0.111111 0.229811 1.49697e-06 1.0474e-05 2.718 ||| 0-1 ||| 9 668016 +a ||| involves a systematic rather ||| 1 0.0681747 1.49697e-06 1.34436e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| involves a systematic ||| 1 0.0681747 1.49697e-06 4.39047e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| involves a ||| 0.00456621 0.0681747 1.49697e-06 8.78094e-06 2.718 ||| 0-0 ||| 219 668016 +a ||| involves certain ||| 0.111111 0.0681747 1.49697e-06 5.64585e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| involves only ||| 0.0769231 0.0681747 1.49697e-06 2.20505e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| involves ||| 0.00662252 0.0681747 2.69455e-05 0.0001981 2.718 ||| 0-0 ||| 2718 668016 +a ||| involving dangerous substances and was ||| 1 0.102511 1.49697e-06 1.09901e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| involving dangerous substances and ||| 0.5 0.102511 1.49697e-06 3.50786e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| involving dangerous substances ||| 0.0588235 0.102511 1.49697e-06 2.80049e-13 2.718 ||| 0-0 ||| 17 668016 +a ||| involving dangerous ||| 1 0.102511 1.49697e-06 1.29652e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| involving gender ||| 0.166667 0.102511 1.49697e-06 3.54654e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| involving the authorities ||| 0.2 0.102511 1.49697e-06 2.37717e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| involving the composting ||| 1 0.102511 1.49697e-06 1.42773e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| involving the ||| 0.00548246 0.102511 7.48485e-06 3.56932e-05 2.718 ||| 0-0 ||| 912 668016 +a ||| involving those components ||| 0.5 0.102511 1.49697e-06 3.62053e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| involving those ||| 0.125 0.102511 1.49697e-06 4.20992e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| involving ||| 0.00966184 0.102511 5.38909e-05 0.0005814 2.718 ||| 0-0 ||| 3726 668016 +a ||| inward investment on the ||| 0.333333 0.0782999 1.49697e-06 3.99412e-14 2.718 ||| 0-2 ||| 3 668016 +a ||| inward investment on ||| 0.333333 0.0782999 1.49697e-06 6.50596e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| irrelevant at ||| 0.125 0.204175 1.49697e-06 6.12637e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| irresistible to ||| 0.0769231 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| irresponsible vis-à-vis the Albanians ||| 1 0.243488 1.49697e-06 1.64174e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| irresponsible vis-à-vis the ||| 1 0.243488 1.49697e-06 5.66118e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| irresponsible vis-à-vis ||| 1 0.243488 1.49697e-06 9.2214e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| is , as you know , ||| 0.0322581 0.0243476 1.49697e-06 3.2571e-12 2.718 ||| 0-2 ||| 31 668016 +a ||| is , as you know ||| 0.0357143 0.0243476 1.49697e-06 2.73121e-11 2.718 ||| 0-2 ||| 28 668016 +a ||| is , as you ||| 0.037037 0.0243476 1.49697e-06 1.05861e-07 2.718 ||| 0-2 ||| 27 668016 +a ||| is , as ||| 0.00655738 0.0243476 2.99394e-06 3.27875e-05 2.718 ||| 0-2 ||| 305 668016 +a ||| is , in the ||| 0.03125 0.0587624 2.99394e-06 1.37863e-05 2.718 ||| 0-2 ||| 64 668016 +a ||| is , in ||| 0.00530035 0.0587624 8.98182e-06 0.000224563 2.718 ||| 0-2 ||| 1132 668016 +a ||| is , into ||| 0.25 0.107578 1.49697e-06 2.27031e-05 2.718 ||| 0-2 ||| 4 668016 +a ||| is , on ||| 0.0240964 0.0782999 2.99394e-06 0.000141787 2.718 ||| 0-2 ||| 83 668016 +a ||| is , to this ||| 0.5 0.229811 1.49697e-06 8.45977e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| is , to ||| 0.0338983 0.229811 8.98182e-06 0.00130928 2.718 ||| 0-2 ||| 177 668016 +a ||| is , when ||| 0.0526316 0.0055468 1.49697e-06 1.15977e-06 2.718 ||| 0-2 ||| 19 668016 +a ||| is a cause for ||| 0.02 0.0683377 1.49697e-06 9.25015e-09 2.718 ||| 0-3 ||| 50 668016 +a ||| is a failure to ||| 0.142857 0.229811 1.49697e-06 2.2775e-08 2.718 ||| 0-3 ||| 7 668016 +a ||| is a function of ||| 0.142857 0.0188479 1.49697e-06 1.01906e-09 2.718 ||| 0-3 ||| 7 668016 +a ||| is a lack of ||| 0.0114943 0.0188479 1.49697e-06 4.99667e-09 2.718 ||| 0-3 ||| 87 668016 +a ||| is a matter for ||| 0.00358423 0.0683377 1.49697e-06 5.31103e-08 2.718 ||| 0-3 ||| 279 668016 +a ||| is a place in ||| 0.2 0.0587624 1.49697e-06 1.25619e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| is a question for the future , ||| 1 0.0683377 1.49697e-06 8.23508e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| is a question for the future ||| 1 0.0683377 1.49697e-06 6.90545e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| is a question for the ||| 0.142857 0.0683377 1.49697e-06 2.59994e-09 2.718 ||| 0-3 ||| 7 668016 +a ||| is a question for ||| 0.05 0.0683377 1.49697e-06 4.235e-08 2.718 ||| 0-3 ||| 20 668016 +a ||| is a wish to introduce for ||| 1 0.0683377 1.49697e-06 6.84998e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| is a worrying increase in the number ||| 1 0.0587624 1.49697e-06 3.66893e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| is a worrying increase in the ||| 1 0.0587624 1.49697e-06 7.41498e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| is a worrying increase in ||| 1 0.0587624 1.49697e-06 1.20781e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| is a yardstick of ||| 0.333333 0.0188479 1.49697e-06 1.31491e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| is a ||| 2.27511e-05 0.0005823 1.49697e-06 1.32447e-05 2.718 ||| 0-1 ||| 43954 668016 +a ||| is able to ||| 0.00152672 0.229811 1.49697e-06 9.16623e-06 2.718 ||| 0-2 ||| 655 668016 +a ||| is about , ||| 0.0454545 0.0526361 1.49697e-06 1.88348e-05 2.718 ||| 0-1 ||| 22 668016 +a ||| is about ||| 0.00393357 0.0526361 1.34727e-05 0.000157937 2.718 ||| 0-1 ||| 2288 668016 +a ||| is accessible to ||| 0.025 0.229811 1.49697e-06 1.42725e-07 2.718 ||| 0-2 ||| 40 668016 +a ||| is accompanied by ||| 0.00990099 0.0337966 1.49697e-06 5.20875e-09 2.718 ||| 0-2 ||| 101 668016 +a ||| is achieved at ||| 0.5 0.204175 1.49697e-06 1.7846e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| is acknowledged to ||| 0.25 0.229811 1.49697e-06 1.22963e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| is actually to ||| 0.04 0.229811 1.49697e-06 4.53206e-06 2.718 ||| 0-2 ||| 25 668016 +a ||| is addressing ||| 0.0192308 0.133226 1.49697e-06 9.43994e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| is affecting ||| 0.0245902 0.268066 4.49091e-06 2.81192e-05 2.718 ||| 0-1 ||| 122 668016 +a ||| is against that ||| 0.0454545 0.05146 1.49697e-06 1.37048e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| is against this ||| 0.02 0.05146 1.49697e-06 5.26418e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| is against ||| 0.0160428 0.05146 8.98182e-06 8.14712e-05 2.718 ||| 0-1 ||| 374 668016 +a ||| is agreed to ||| 0.0833333 0.229811 1.49697e-06 8.57447e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| is aimed at placing ||| 1 0.204175 1.49697e-06 1.76444e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| is aimed at ||| 0.00218818 0.204175 1.49697e-06 7.41361e-08 2.718 ||| 0-2 ||| 457 668016 +a ||| is aligning itself with ||| 0.333333 0.0571592 1.49697e-06 4.97175e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| is allocated to ||| 0.0512821 0.229811 2.99394e-06 4.89656e-07 2.718 ||| 0-2 ||| 39 668016 +a ||| is already in ||| 0.00666667 0.0587624 1.49697e-06 8.72041e-07 2.718 ||| 0-2 ||| 150 668016 +a ||| is also a disappointment to ||| 1 0.229811 1.49697e-06 4.42238e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| is also about ||| 0.00689655 0.0526361 1.49697e-06 7.97362e-07 2.718 ||| 0-2 ||| 145 668016 +a ||| is also accepted into ||| 1 0.107578 1.49697e-06 5.91094e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| is also due to the fact ||| 0.1 0.229811 1.49697e-06 2.75511e-12 2.718 ||| 0-3 ||| 10 668016 +a ||| is also due to the ||| 0.0434783 0.229811 1.49697e-06 9.40537e-10 2.718 ||| 0-3 ||| 23 668016 +a ||| is also due to ||| 0.0384615 0.229811 1.49697e-06 1.53202e-08 2.718 ||| 0-3 ||| 26 668016 +a ||| is also evident in ||| 0.0833333 0.0587624 1.49697e-06 1.77777e-10 2.718 ||| 0-3 ||| 12 668016 +a ||| is also for ||| 0.0344828 0.0683377 1.49697e-06 5.83049e-06 2.718 ||| 0-2 ||| 29 668016 +a ||| is also necessary , in fact ||| 1 0.0587624 1.49697e-06 8.54501e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| is also necessary , in ||| 0.5 0.0587624 1.49697e-06 2.91708e-10 2.718 ||| 0-4 ||| 2 668016 +a ||| is also necessary to ||| 0.0285714 0.229811 1.49697e-06 1.42616e-08 2.718 ||| 0-3 ||| 35 668016 +a ||| is also worrying when it comes to ||| 1 0.229811 1.49697e-06 2.20638e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| is approved at least ||| 0.5 0.204175 1.49697e-06 1.19629e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| is approved at ||| 0.333333 0.204175 1.49697e-06 4.87485e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| is as it ||| 0.047619 0.0243476 1.49697e-06 4.88925e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| is as ||| 0.00542005 0.0243476 8.98182e-06 0.000274937 2.718 ||| 0-1 ||| 1107 668016 +a ||| is asked to nail ||| 1 0.229811 1.49697e-06 4.814e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| is asked to ||| 0.0333333 0.229811 1.49697e-06 8.3e-07 2.718 ||| 0-2 ||| 30 668016 +a ||| is asking ||| 0.00414938 0.0319755 1.49697e-06 4.17777e-06 2.718 ||| 0-1 ||| 241 668016 +a ||| is assured in the ||| 1 0.0587624 1.49697e-06 1.1676e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| is assured in ||| 1 0.0587624 1.49697e-06 1.90188e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| is at a ||| 0.0143885 0.204175 2.99394e-06 4.72826e-05 2.718 ||| 0-1 ||| 139 668016 +a ||| is at hand ||| 0.111111 0.204175 1.49697e-06 4.23056e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| is at issue ||| 0.025 0.204175 4.49091e-06 8.07284e-07 2.718 ||| 0-1 ||| 120 668016 +a ||| is at one and ||| 1 0.204175 1.49697e-06 5.56906e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| is at one ||| 0.111111 0.204175 1.49697e-06 4.44603e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| is at the helm ||| 0.25 0.204175 1.49697e-06 1.63718e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| is at the level of ||| 0.166667 0.0188479 1.49697e-06 2.03852e-10 2.718 ||| 0-4 ||| 6 668016 +a ||| is at the ||| 0.00579151 0.204175 4.49091e-06 6.54871e-05 2.718 ||| 0-1 ||| 518 668016 +a ||| is at your ||| 0.166667 0.204175 1.49697e-06 2.7297e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| is at ||| 0.0199134 0.204175 6.88606e-05 0.00106671 2.718 ||| 0-1 ||| 2310 668016 +a ||| is attempting to do ||| 0.142857 0.229811 1.49697e-06 5.58191e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| is attempting to ||| 0.00854701 0.229811 1.49697e-06 1.62487e-07 2.718 ||| 0-2 ||| 117 668016 +a ||| is attractive to ||| 0.0714286 0.229811 1.49697e-06 1.18571e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| is available for ||| 0.0571429 0.0683377 2.99394e-06 3.67365e-07 2.718 ||| 0-2 ||| 35 668016 +a ||| is available to ||| 0.0116279 0.229811 1.49697e-06 3.49237e-06 2.718 ||| 0-2 ||| 86 668016 +a ||| is because of ||| 0.016129 0.0052046 2.99394e-06 5.50507e-07 2.718 ||| 0-1 ||| 124 668016 +a ||| is because ||| 0.00058548 0.0052046 1.49697e-06 1.01263e-05 2.718 ||| 0-1 ||| 1708 668016 +a ||| is beginning to ||| 0.00558659 0.229811 1.49697e-06 4.46839e-07 2.718 ||| 0-2 ||| 179 668016 +a ||| is being conducted with a view to ||| 1 0.229811 1.49697e-06 4.83962e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| is being disrupted in ||| 0.5 0.0587624 1.49697e-06 9.64582e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| is being done into ||| 1 0.107578 1.49697e-06 2.47047e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| is being held over ||| 0.25 0.0682544 1.49697e-06 5.28518e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| is being invited to ||| 1 0.229811 1.49697e-06 2.03083e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| is being made at ||| 0.166667 0.204175 1.49697e-06 6.35905e-09 2.718 ||| 0-3 ||| 6 668016 +a ||| is being neglected for ||| 0.5 0.0683377 1.49697e-06 1.18315e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| is being put in ||| 0.0833333 0.0587624 1.49697e-06 5.9086e-09 2.718 ||| 0-3 ||| 12 668016 +a ||| is being released on to ||| 0.25 0.0782999 1.49697e-06 5.83264e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| is being released on ||| 0.25 0.0782999 1.49697e-06 6.56398e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| is being shown for ||| 1 0.0683377 1.49697e-06 3.43114e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| is being used to ||| 0.0166667 0.229811 1.49697e-06 1.34035e-08 2.718 ||| 0-3 ||| 60 668016 +a ||| is being ||| 0.000151676 0.0010112 1.49697e-06 1.77391e-06 2.718 ||| 0-1 ||| 6593 668016 +a ||| is beset with ||| 0.0625 0.0571592 1.49697e-06 1.15113e-09 2.718 ||| 0-2 ||| 16 668016 +a ||| is better not to make any choices ||| 1 0.229811 1.49697e-06 1.20495e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| is better not to make any ||| 1 0.229811 1.49697e-06 1.67354e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| is better not to make ||| 1 0.229811 1.49697e-06 1.10669e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| is better not to ||| 0.25 0.229811 1.49697e-06 6.36834e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| is both ||| 0.00521739 0.0205477 4.49091e-06 2.0541e-05 2.718 ||| 0-1 ||| 575 668016 +a ||| is bound to ||| 0.011236 0.229811 2.99394e-06 5.6541e-07 2.718 ||| 0-2 ||| 178 668016 +a ||| is broken down by transport mode ||| 1 0.0337966 1.49697e-06 2.38152e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| is broken down by transport ||| 1 0.0337966 1.49697e-06 5.53843e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| is broken down by ||| 1 0.0337966 1.49697e-06 5.38234e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| is by going ||| 1 0.0337966 1.49697e-06 2.20676e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| is by no means an easy task ||| 1 0.0337966 1.49697e-06 2.69261e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| is by no means an easy ||| 1 0.0337966 1.49697e-06 2.13699e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| is by no means an ||| 0.0555556 0.0337966 1.49697e-06 5.65342e-13 2.718 ||| 0-1 ||| 18 668016 +a ||| is by no means ||| 0.00444444 0.0337966 1.49697e-06 1.27195e-10 2.718 ||| 0-1 ||| 225 668016 +a ||| is by no ||| 0.00729927 0.0337966 1.49697e-06 2.00717e-07 2.718 ||| 0-1 ||| 137 668016 +a ||| is by ||| 0.0143885 0.0337966 1.19758e-05 0.000257859 2.718 ||| 0-1 ||| 556 668016 +a ||| is calling on ||| 0.0185185 0.0782999 1.49697e-06 7.83514e-08 2.718 ||| 0-2 ||| 54 668016 +a ||| is carried on ||| 0.2 0.0782999 1.49697e-06 3.50382e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| is causing ||| 0.00324675 0.0028474 1.49697e-06 1.44169e-07 2.718 ||| 0-1 ||| 308 668016 +a ||| is certainly not to create ||| 1 0.229811 1.49697e-06 1.05725e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| is certainly not to ||| 0.0833333 0.229811 1.49697e-06 9.38945e-09 2.718 ||| 0-3 ||| 12 668016 +a ||| is claimed as an ||| 1 0.0243476 1.49697e-06 2.41958e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| is claimed as ||| 1 0.0243476 1.49697e-06 5.44375e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| is clear to ||| 0.0138889 0.229811 1.49697e-06 3.65485e-06 2.718 ||| 0-2 ||| 72 668016 +a ||| is closely related to the fact ||| 1 0.229811 1.49697e-06 1.1445e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| is closely related to the ||| 0.0322581 0.229811 1.49697e-06 3.90707e-12 2.718 ||| 0-3 ||| 31 668016 +a ||| is closely related to ||| 0.0227273 0.229811 1.49697e-06 6.36416e-11 2.718 ||| 0-3 ||| 44 668016 +a ||| is come forward with ||| 1 0.0571592 1.49697e-06 2.47259e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| is committed to , including ||| 1 0.229811 1.49697e-06 1.13178e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| is committed to , ||| 1 0.229811 1.49697e-06 1.08408e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| is committed to ||| 0.004329 0.229811 2.99394e-06 9.09048e-07 2.718 ||| 0-2 ||| 462 668016 +a ||| is completely dependent on ||| 0.25 0.0782999 1.49697e-06 3.30424e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| is complied with ||| 0.0185185 0.0571592 1.49697e-06 8.8428e-09 2.718 ||| 0-2 ||| 54 668016 +a ||| is concerned , at ||| 0.2 0.204175 1.49697e-06 2.0463e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| is concerned , it is already five ||| 1 0.044342 1.49697e-06 1.52559e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| is concerned , it is already ||| 1 0.044342 1.49697e-06 7.70499e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| is concerned , it is ||| 0.0142857 0.044342 1.49697e-06 1.66379e-09 2.718 ||| 0-1 ||| 70 668016 +a ||| is concerned , it ||| 0.0285714 0.044342 1.49697e-06 5.30864e-08 2.718 ||| 0-1 ||| 35 668016 +a ||| is concerned , to ||| 0.125 0.229811 1.49697e-06 2.1061e-06 2.718 ||| 0-3 ||| 8 668016 +a ||| is concerned , we are in ||| 0.25 0.0587624 1.49697e-06 6.22204e-11 2.718 ||| 0-5 ||| 4 668016 +a ||| is concerned , we doubt ||| 0.333333 0.044342 1.49697e-06 3.09744e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| is concerned , we ||| 0.0196078 0.044342 1.49697e-06 3.38889e-08 2.718 ||| 0-1 ||| 51 668016 +a ||| is concerned , ||| 0.00337458 0.044342 8.98182e-06 2.9852e-06 2.718 ||| 0-1 ||| 1778 668016 +a ||| is concerned to ||| 0.0909091 0.229811 1.49697e-06 1.76606e-05 2.718 ||| 0-2 ||| 11 668016 +a ||| is concerned with ||| 0.00847458 0.0571592 1.49697e-06 8.41688e-07 2.718 ||| 0-2 ||| 118 668016 +a ||| is concerned ||| 0.0126728 0.044342 6.58667e-05 2.50321e-05 2.718 ||| 0-1 ||| 3472 668016 +a ||| is conducted ||| 0.0131579 0.154068 1.49697e-06 1.2245e-05 2.718 ||| 0-1 ||| 76 668016 +a ||| is consistent with ||| 0.00540541 0.0571592 1.49697e-06 1.44938e-08 2.718 ||| 0-2 ||| 185 668016 +a ||| is continuing to ||| 0.0052356 0.229811 1.49697e-06 6.7959e-07 2.718 ||| 0-2 ||| 191 668016 +a ||| is crucial to preserving ||| 0.25 0.229811 1.49697e-06 2.4261e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| is crucial to ||| 0.00322581 0.229811 1.49697e-06 4.18294e-07 2.718 ||| 0-2 ||| 310 668016 +a ||| is dear to ||| 0.0588235 0.229811 1.49697e-06 2.09696e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| is decided on by ||| 0.5 0.0560483 1.49697e-06 6.69091e-10 2.718 ||| 0-2 0-3 ||| 2 668016 +a ||| is dedicated to ||| 0.0333333 0.229811 1.49697e-06 1.62487e-07 2.718 ||| 0-2 ||| 30 668016 +a ||| is dependent upon ||| 0.0555556 0.19056 1.49697e-06 1.68684e-09 2.718 ||| 0-2 ||| 18 668016 +a ||| is desired to ||| 0.5 0.229811 1.49697e-06 1.70172e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| is detrimental to ||| 0.010989 0.229811 1.49697e-06 6.36773e-08 2.718 ||| 0-2 ||| 91 668016 +a ||| is directed at ||| 0.037037 0.204175 2.99394e-06 3.33879e-08 2.718 ||| 0-2 ||| 54 668016 +a ||| is directed into ||| 1 0.107578 1.49697e-06 5.95875e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| is displayed in asking ||| 1 0.0587624 1.49697e-06 1.43172e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| is displayed in ||| 0.25 0.0587624 1.49697e-06 3.31417e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| is doing and in which ||| 1 0.0587624 1.49697e-06 7.35527e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| is doing and in ||| 1 0.0587624 1.49697e-06 8.65876e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| is doing to ||| 0.037037 0.229811 1.49697e-06 4.03033e-06 2.718 ||| 0-2 ||| 27 668016 +a ||| is done at a ||| 0.5 0.204175 1.49697e-06 2.15609e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| is done at ||| 0.0625 0.204175 1.49697e-06 4.86418e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| is down to ||| 0.0188679 0.229811 1.49697e-06 7.66433e-06 2.718 ||| 0-2 ||| 53 668016 +a ||| is drawn to ||| 0.125 0.229811 1.49697e-06 1.56009e-06 2.718 ||| 0-2 ||| 8 668016 +a ||| is due to the fact ||| 0.00925926 0.229811 1.49697e-06 5.45718e-10 2.718 ||| 0-2 ||| 108 668016 +a ||| is due to the ||| 0.00423729 0.229811 1.49697e-06 1.86297e-07 2.718 ||| 0-2 ||| 236 668016 +a ||| is due to ||| 0.00765697 0.229811 7.48485e-06 3.03455e-06 2.718 ||| 0-2 ||| 653 668016 +a ||| is encouraged ||| 0.0188679 0.0990338 1.49697e-06 5.86392e-06 2.718 ||| 0-1 ||| 53 668016 +a ||| is enough to compel anyone ||| 1 0.339844 1.49697e-06 1.74976e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| is enough to compel ||| 1 0.339844 1.49697e-06 3.65294e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| is entirely visible to ||| 0.5 0.229811 1.49697e-06 1.07566e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| is entitled to this , but so ||| 0.166667 0.229811 1.49697e-06 6.41669e-16 2.718 ||| 0-2 ||| 6 668016 +a ||| is entitled to this , but ||| 0.166667 0.229811 1.49697e-06 2.82711e-13 2.718 ||| 0-2 ||| 6 668016 +a ||| is entitled to this , ||| 0.166667 0.229811 1.49697e-06 4.13683e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| is entitled to this ||| 0.111111 0.229811 1.49697e-06 3.4689e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| is entitled to ||| 0.00677966 0.229811 2.99394e-06 5.36865e-07 2.718 ||| 0-2 ||| 295 668016 +a ||| is equally true of ||| 0.2 0.0188479 1.49697e-06 5.22826e-12 2.718 ||| 0-3 ||| 5 668016 +a ||| is essential that ||| 0.00613497 0.0008521 1.49697e-06 1.92569e-09 2.718 ||| 0-2 ||| 163 668016 +a ||| is even ||| 0.00149925 0.0495435 1.49697e-06 6.11622e-05 2.718 ||| 0-1 ||| 667 668016 +a ||| is ever ||| 0.0140845 0.0054117 1.49697e-06 1.20036e-06 2.718 ||| 0-1 ||| 71 668016 +a ||| is evidently trying to force us into ||| 1 0.229811 1.49697e-06 6.17885e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| is evidently trying to force us ||| 1 0.229811 1.49697e-06 6.01817e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| is evidently trying to force ||| 1 0.229811 1.49697e-06 2.08805e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| is evidently trying to ||| 0.5 0.229811 1.49697e-06 1.22682e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| is expected of ||| 0.0192308 0.0188479 1.49697e-06 4.94103e-08 2.718 ||| 0-2 ||| 52 668016 +a ||| is exposed to . he is also ||| 1 0.229811 1.49697e-06 7.94423e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| is exposed to . he is ||| 1 0.229811 1.49697e-06 1.57355e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| is exposed to . he ||| 1 0.229811 1.49697e-06 5.02073e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| is exposed to . ||| 1 0.229811 1.49697e-06 5.7531e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| is exposed to ||| 0.0769231 0.229811 2.99394e-06 1.89934e-07 2.718 ||| 0-2 ||| 26 668016 +a ||| is feeling ||| 0.0666667 0.0033708 1.49697e-06 1.72376e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| is financial crime , crime in the ||| 0.5 0.0587624 1.49697e-06 2.98107e-18 2.718 ||| 0-5 ||| 2 668016 +a ||| is financial crime , crime in ||| 0.5 0.0587624 1.49697e-06 4.85581e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| is followed up by ||| 0.166667 0.0337966 1.49697e-06 6.2967e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| is for Europe to ||| 0.111111 0.229811 1.49697e-06 4.26963e-08 2.718 ||| 0-3 ||| 9 668016 +a ||| is for them ||| 0.0384615 0.0683377 1.49697e-06 3.09783e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| is for ||| 0.0136251 0.0683377 4.94e-05 0.00115487 2.718 ||| 0-1 ||| 2422 668016 +a ||| is forced upon ||| 1 0.19056 1.49697e-06 4.35612e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| is forced ||| 0.015873 0.0684932 1.49697e-06 8.72536e-06 2.718 ||| 0-1 ||| 63 668016 +a ||| is forcing ||| 0.0212766 0.335672 1.49697e-06 8.21137e-06 2.718 ||| 0-1 ||| 47 668016 +a ||| is formed from events ) ||| 1 0.0435582 1.49697e-06 4.5736e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| is formed from events ||| 1 0.0435582 1.49697e-06 3.18208e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| is formed from ||| 1 0.0435582 1.49697e-06 4.377e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| is found in ||| 0.025641 0.0587624 1.49697e-06 4.12012e-07 2.718 ||| 0-2 ||| 39 668016 +a ||| is from ||| 0.0120482 0.0435582 2.99394e-06 0.000225618 2.718 ||| 0-1 ||| 166 668016 +a ||| is geared to ||| 0.0645161 0.229811 2.99394e-06 1.42725e-07 2.718 ||| 0-2 ||| 31 668016 +a ||| is given over to ||| 0.25 0.229811 1.49697e-06 3.62799e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| is given to ||| 0.0841122 0.229811 1.34727e-05 7.53478e-06 2.718 ||| 0-2 ||| 107 668016 +a ||| is given ||| 0.00280112 0.0371011 2.99394e-06 3.31275e-05 2.718 ||| 0-1 ||| 714 668016 +a ||| is giving to ||| 0.0714286 0.229811 1.49697e-06 1.73026e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| is giving ||| 0.0134529 0.136521 4.49091e-06 3.16106e-05 2.718 ||| 0-1 ||| 223 668016 +a ||| is going on with ||| 0.111111 0.0571592 1.49697e-06 2.99617e-09 2.718 ||| 0-3 ||| 9 668016 +a ||| is going on ||| 0.00189394 0.0782999 1.49697e-06 1.0175e-06 2.718 ||| 0-2 ||| 528 668016 +a ||| is going to be exerted in favour ||| 1 0.229811 1.49697e-06 1.40308e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| is going to be exerted in ||| 1 0.229811 1.49697e-06 4.33719e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| is going to be exerted ||| 1 0.229811 1.49697e-06 2.0263e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| is going to be willing to ||| 1 0.229811 1.49697e-06 5.71934e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| is going to be ||| 0.00331675 0.229811 2.99394e-06 1.70277e-07 2.718 ||| 0-2 ||| 603 668016 +a ||| is going to enable ||| 0.1 0.229811 1.49697e-06 9.26415e-10 2.718 ||| 0-2 ||| 10 668016 +a ||| is going to make ||| 0.03125 0.229811 1.49697e-06 1.63278e-08 2.718 ||| 0-2 ||| 32 668016 +a ||| is going to understand ||| 1 0.229811 1.49697e-06 7.33803e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| is going to ||| 0.00749064 0.229811 2.39515e-05 9.39569e-06 2.718 ||| 0-2 ||| 2136 668016 +a ||| is granted to ||| 0.125 0.229811 1.49697e-06 8.89286e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| is growing up at the moment ||| 1 0.204175 1.49697e-06 1.52554e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| is growing up at the ||| 1 0.204175 1.49697e-06 8.44239e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| is growing up at ||| 1 0.204175 1.49697e-06 1.37517e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| is guidance to ||| 1 0.229811 1.49697e-06 7.90476e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| is guilty of ||| 0.025 0.0188479 1.49697e-06 1.96529e-08 2.718 ||| 0-2 ||| 40 668016 +a ||| is happening in ||| 0.00293255 0.0587624 2.99394e-06 1.0225e-07 2.718 ||| 0-2 ||| 682 668016 +a ||| is held in ||| 0.047619 0.0587624 1.49697e-06 4.80366e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| is here to ||| 0.0123457 0.229811 1.49697e-06 2.22629e-05 2.718 ||| 0-2 ||| 81 668016 +a ||| is high on the agenda ||| 0.25 0.0782999 1.49697e-06 1.08213e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| is high on the ||| 0.0714286 0.0782999 1.49697e-06 1.08976e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| is high on ||| 0.037037 0.0782999 1.49697e-06 1.77509e-07 2.718 ||| 0-2 ||| 27 668016 +a ||| is highly questionable in terms of European ||| 1 0.0587624 1.49697e-06 7.27405e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| is highly questionable in terms of ||| 1 0.0587624 1.49697e-06 2.17532e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| is highly questionable in terms ||| 1 0.0587624 1.49697e-06 4.0014e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| is highly questionable in ||| 1 0.0587624 1.49697e-06 3.64559e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| is hurting ||| 1 0.295082 1.49697e-06 5.13994e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| is illegal and pure sleight of hand ||| 1 0.0188479 1.49697e-06 4.95376e-25 2.718 ||| 0-5 ||| 1 668016 +a ||| is illegal and pure sleight of ||| 1 0.0188479 1.49697e-06 1.24906e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| is impacting on ||| 0.2 0.0782999 1.49697e-06 1.30784e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| is important , because ||| 0.0208333 0.0052046 1.49697e-06 4.63239e-10 2.718 ||| 0-3 ||| 48 668016 +a ||| is important to have a period of ||| 1 0.229811 1.49697e-06 2.11798e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| is important to have a period ||| 1 0.229811 1.49697e-06 3.89593e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| is important to have a ||| 0.1 0.229811 1.49697e-06 2.23262e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| is important to have ||| 0.0285714 0.229811 1.49697e-06 5.03685e-08 2.718 ||| 0-2 ||| 35 668016 +a ||| is important to provide ||| 0.25 0.229811 1.49697e-06 1.24576e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| is important to ||| 0.00311042 0.229811 2.99394e-06 4.21148e-06 2.718 ||| 0-2 ||| 643 668016 +a ||| is in a ||| 0.00217391 0.0587624 1.49697e-06 8.34678e-05 2.718 ||| 0-1 ||| 460 668016 +a ||| is in fact in ||| 0.142857 0.0587624 1.49697e-06 1.18068e-07 2.718 ||| 0-3 ||| 7 668016 +a ||| is in its ||| 0.025641 0.0587624 1.49697e-06 2.68278e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| is in order ||| 0.0151515 0.0587624 1.49697e-06 1.00291e-06 2.718 ||| 0-1 ||| 66 668016 +a ||| is in our ||| 0.0176991 0.0587624 2.99394e-06 2.59748e-06 2.718 ||| 0-1 ||| 113 668016 +a ||| is in the interest of ||| 0.0185185 0.0188479 1.49697e-06 1.368e-10 2.718 ||| 0-4 ||| 54 668016 +a ||| is in the ||| 0.00278552 0.0587624 5.98788e-06 0.000115604 2.718 ||| 0-1 ||| 1436 668016 +a ||| is in this spirit ||| 0.0166667 0.0587624 1.49697e-06 7.14212e-10 2.718 ||| 0-1 ||| 60 668016 +a ||| is in this ||| 0.00393701 0.0587624 1.49697e-06 1.21671e-05 2.718 ||| 0-1 ||| 254 668016 +a ||| is in ||| 0.0235135 0.0587624 0.000260473 0.00188305 2.718 ||| 0-1 ||| 7400 668016 +a ||| is incumbent upon ||| 0.0625 0.19056 1.49697e-06 9.76266e-10 2.718 ||| 0-2 ||| 16 668016 +a ||| is inflicted on ||| 0.5 0.0782999 1.49697e-06 8.08482e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| is intended for ||| 0.0227273 0.0683377 1.49697e-06 1.01398e-07 2.718 ||| 0-2 ||| 44 668016 +a ||| is intended to provide ||| 0.037037 0.229811 1.49697e-06 2.85134e-10 2.718 ||| 0-2 ||| 27 668016 +a ||| is intended to ||| 0.00583942 0.229811 5.98788e-06 9.63942e-07 2.718 ||| 0-2 ||| 685 668016 +a ||| is interesting to ||| 0.142857 0.229811 1.49697e-06 1.1418e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| is into ||| 0.25 0.107578 1.49697e-06 0.000190375 2.718 ||| 0-1 ||| 4 668016 +a ||| is involved in ||| 0.00478469 0.0587624 1.49697e-06 6.51159e-07 2.718 ||| 0-2 ||| 209 668016 +a ||| is irrelevant at ||| 0.166667 0.204175 1.49697e-06 1.92007e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| is irresponsible vis-à-vis the Albanians ||| 1 0.243488 1.49697e-06 5.1454e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| is irresponsible vis-à-vis the ||| 1 0.243488 1.49697e-06 1.77428e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| is irresponsible vis-à-vis ||| 1 0.243488 1.49697e-06 2.89009e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| is it a criticism of ||| 1 0.0188479 1.49697e-06 1.47607e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| is it comes at ||| 1 0.204175 1.49697e-06 7.58399e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| is it intended to ||| 0.0588235 0.229811 1.49697e-06 1.7142e-08 2.718 ||| 0-3 ||| 17 668016 +a ||| is it legal to hold ||| 0.166667 0.229811 1.49697e-06 4.40778e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| is it legal to ||| 0.166667 0.229811 1.49697e-06 2.5303e-08 2.718 ||| 0-3 ||| 6 668016 +a ||| is it ||| 0.000673854 0.0006453 2.99394e-06 9.29577e-06 2.718 ||| 0-1 ||| 2968 668016 +a ||| is keeping others out of ||| 0.5 0.0188479 1.49697e-06 2.026e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| is laid out for ||| 0.5 0.0683377 1.49697e-06 4.82175e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| is left for ||| 0.111111 0.0683377 1.49697e-06 2.18155e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| is liable to ||| 0.0185185 0.229811 1.49697e-06 1.85542e-07 2.718 ||| 0-2 ||| 54 668016 +a ||| is like offering ||| 0.5 0.103522 1.49697e-06 9.85715e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| is likely to generate more ||| 0.5 0.229811 1.49697e-06 2.29894e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| is likely to generate ||| 0.333333 0.229811 1.49697e-06 1.00667e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| is likely to have ||| 0.0526316 0.229811 1.49697e-06 1.11478e-08 2.718 ||| 0-2 ||| 19 668016 +a ||| is likely to improve ||| 0.25 0.229811 1.49697e-06 4.05465e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| is likely to present itself ||| 1 0.229811 1.49697e-06 2.31538e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| is likely to present ||| 1 0.229811 1.49697e-06 3.4115e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| is likely to ||| 0.0133333 0.229811 8.98182e-06 9.32103e-07 2.718 ||| 0-2 ||| 450 668016 +a ||| is linked to ||| 0.00355872 0.229811 1.49697e-06 4.57818e-07 2.718 ||| 0-2 ||| 281 668016 +a ||| is living in ||| 0.0384615 0.0587624 1.49697e-06 1.578e-07 2.718 ||| 0-2 ||| 26 668016 +a ||| is made available to ||| 0.0666667 0.229811 2.99394e-06 7.31581e-09 2.718 ||| 0-3 ||| 30 668016 +a ||| is made even more ||| 0.0909091 0.0495435 1.49697e-06 2.92593e-10 2.718 ||| 0-2 ||| 11 668016 +a ||| is made even ||| 0.1 0.0495435 1.49697e-06 1.28122e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| is made for ||| 0.117647 0.0683377 2.99394e-06 2.41923e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| is made in ||| 0.0222222 0.0587624 1.49697e-06 3.94462e-06 2.718 ||| 0-2 ||| 45 668016 +a ||| is made of ||| 0.0238095 0.0188479 1.49697e-06 1.94193e-06 2.718 ||| 0-2 ||| 42 668016 +a ||| is made to extradite ||| 1 0.229811 1.49697e-06 9.19939e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| is made to ||| 0.112676 0.229811 1.19758e-05 2.29985e-05 2.718 ||| 0-2 ||| 71 668016 +a ||| is made up of ||| 0.00606061 0.0188479 1.49697e-06 6.62294e-09 2.718 ||| 0-3 ||| 165 668016 +a ||| is making a ||| 0.00917431 0.0275406 1.49697e-06 6.3404e-07 2.718 ||| 0-1 ||| 109 668016 +a ||| is making to ||| 0.037037 0.229811 1.49697e-06 4.22356e-06 2.718 ||| 0-2 ||| 27 668016 +a ||| is making ||| 0.0027972 0.0275406 2.99394e-06 1.43041e-05 2.718 ||| 0-1 ||| 715 668016 +a ||| is meant to ||| 0.00662252 0.229811 1.49697e-06 8.72818e-07 2.718 ||| 0-2 ||| 151 668016 +a ||| is meeting with ||| 0.0666667 0.0571592 1.49697e-06 6.57193e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| is more appropriately directed towards ||| 1 0.155507 1.49697e-06 5.74217e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| is more likely to ||| 0.025641 0.229811 1.49697e-06 2.12864e-09 2.718 ||| 0-3 ||| 39 668016 +a ||| is more than happy to grant ||| 0.25 0.229811 1.49697e-06 1.5297e-17 2.718 ||| 0-4 ||| 4 668016 +a ||| is more than happy to ||| 0.2 0.229811 1.49697e-06 4.82555e-13 2.718 ||| 0-4 ||| 5 668016 +a ||| is more to ||| 0.0625 0.229811 4.49091e-06 2.50724e-05 2.718 ||| 0-2 ||| 48 668016 +a ||| is moreover willing to ||| 1 0.229811 1.49697e-06 4.49445e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| is motivated by ||| 0.04 0.0337966 1.49697e-06 2.96538e-09 2.718 ||| 0-2 ||| 25 668016 +a ||| is my task to report , ||| 1 0.229811 1.49697e-06 4.34869e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| is my task to report ||| 1 0.229811 1.49697e-06 3.64656e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| is my task to ||| 0.5 0.229811 1.49697e-06 8.89622e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| is necessary in ||| 0.0136986 0.0587624 1.49697e-06 4.84509e-07 2.718 ||| 0-2 ||| 73 668016 +a ||| is necessary to ||| 0.00411523 0.229811 2.99394e-06 2.82485e-06 2.718 ||| 0-2 ||| 486 668016 +a ||| is needed in ||| 0.00884956 0.0587624 1.49697e-06 2.52141e-07 2.718 ||| 0-2 ||| 113 668016 +a ||| is needed with ||| 0.333333 0.0571592 1.49697e-06 7.00622e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| is no different from ||| 0.05 0.0435582 1.49697e-06 3.86718e-11 2.718 ||| 0-3 ||| 20 668016 +a ||| is not achieved at ||| 1 0.204175 1.49697e-06 6.0928e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| is not admissible on ||| 1 0.0782999 1.49697e-06 1.62367e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| is not in ||| 0.00325203 0.0587624 2.99394e-06 6.42893e-06 2.718 ||| 0-2 ||| 615 668016 +a ||| is not to ||| 0.00458716 0.229811 4.49091e-06 3.74828e-05 2.718 ||| 0-2 ||| 654 668016 +a ||| is not up to ||| 0.016129 0.229811 1.49697e-06 1.27835e-07 2.718 ||| 0-3 ||| 62 668016 +a ||| is not worth hoping in ||| 0.5 0.0587624 1.49697e-06 5.34533e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| is nothing left to catch ||| 0.5 0.229811 1.49697e-06 6.67699e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| is nothing left to ||| 0.2 0.229811 1.49697e-06 3.85953e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| is now clear for ||| 0.166667 0.0683377 1.49697e-06 7.91943e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| is now time for ||| 0.05 0.0683377 1.49697e-06 3.90548e-09 2.718 ||| 0-3 ||| 20 668016 +a ||| is now time ||| 0.025 0.00208 1.49697e-06 6.85864e-09 2.718 ||| 0-1 ||| 40 668016 +a ||| is now up to ||| 0.0217391 0.229811 1.49697e-06 7.71295e-08 2.718 ||| 0-3 ||| 46 668016 +a ||| is now ||| 0.000825934 0.00208 5.98788e-06 4.17777e-06 2.718 ||| 0-1 ||| 4843 668016 +a ||| is obviously going to be more demanding ||| 1 0.229811 1.49697e-06 3.52674e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| is obviously going to be more ||| 1 0.229811 1.49697e-06 2.57427e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| is obviously going to be ||| 0.25 0.229811 1.49697e-06 1.12723e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| is obviously going to ||| 0.142857 0.229811 1.49697e-06 6.21995e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| is of a ||| 0.00934579 0.0188479 1.49697e-06 4.1091e-05 2.718 ||| 0-1 ||| 107 668016 +a ||| is of no help to ||| 1 0.0188479 1.49697e-06 1.22276e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| is of no help ||| 0.125 0.0188479 1.49697e-06 1.37608e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| is of no ||| 0.0111111 0.0188479 1.49697e-06 7.21594e-07 2.718 ||| 0-1 ||| 90 668016 +a ||| is of ||| 0.00283108 0.0188479 1.34727e-05 0.000927023 2.718 ||| 0-1 ||| 3179 668016 +a ||| is off ||| 0.0714286 0.0893962 1.49697e-06 2.39728e-05 2.718 ||| 0-1 ||| 14 668016 +a ||| is often left ||| 0.0666667 0.288159 1.49697e-06 3.56647e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| is often ||| 0.0019802 0.288159 2.99394e-06 0.000188802 2.718 ||| 0-1 ||| 1010 668016 +a ||| is on ' ||| 0.333333 0.0782999 1.49697e-06 4.0839e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| is on a ||| 0.0133333 0.0782999 1.49697e-06 5.27009e-05 2.718 ||| 0-1 ||| 75 668016 +a ||| is on an ||| 0.0666667 0.0782999 1.49697e-06 5.2845e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| is on the ||| 0.0035545 0.0782999 4.49091e-06 7.29914e-05 2.718 ||| 0-1 ||| 844 668016 +a ||| is on ||| 0.0125224 0.0782999 3.14364e-05 0.00118894 2.718 ||| 0-1 ||| 1677 668016 +a ||| is only at ||| 0.0909091 0.204175 1.49697e-06 1.18735e-06 2.718 ||| 0-2 ||| 11 668016 +a ||| is only now coming ||| 0.5 0.00208 1.49697e-06 9.03548e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| is only now ||| 0.027027 0.00208 1.49697e-06 4.65027e-09 2.718 ||| 0-2 ||| 37 668016 +a ||| is only to be expected , given ||| 0.2 0.229811 1.49697e-06 9.66129e-16 2.718 ||| 0-2 ||| 5 668016 +a ||| is only to be expected , ||| 0.142857 0.229811 1.49697e-06 1.40774e-12 2.718 ||| 0-2 ||| 7 668016 +a ||| is only to be expected ||| 0.0526316 0.229811 1.49697e-06 1.18044e-11 2.718 ||| 0-2 ||| 19 668016 +a ||| is only to be ||| 0.0454545 0.229811 1.49697e-06 2.21472e-07 2.718 ||| 0-2 ||| 22 668016 +a ||| is only to ||| 0.0333333 0.229811 1.49697e-06 1.22205e-05 2.718 ||| 0-2 ||| 30 668016 +a ||| is only ||| 0.000689417 0.0004289 2.99394e-06 9.1516e-07 2.718 ||| 0-1 ||| 2901 668016 +a ||| is open to ||| 0.00555556 0.229811 1.49697e-06 1.76979e-06 2.718 ||| 0-2 ||| 180 668016 +a ||| is our function to ||| 1 0.229811 1.49697e-06 3.75576e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| is our message to ||| 0.333333 0.229811 1.49697e-06 7.29951e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| is our responsibility , to ||| 1 0.229811 1.49697e-06 2.08595e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| is out of control to ||| 0.333333 0.229811 1.49697e-06 1.75351e-10 2.718 ||| 0-4 ||| 3 668016 +a ||| is out of the question to ||| 0.5 0.229811 1.49697e-06 1.16114e-10 2.718 ||| 0-5 ||| 2 668016 +a ||| is out ||| 0.00502513 0.0669777 1.49697e-06 0.00012853 2.718 ||| 0-1 ||| 199 668016 +a ||| is paid to ||| 0.04 0.229811 1.49697e-06 1.47775e-06 2.718 ||| 0-2 ||| 25 668016 +a ||| is particularly true as a ||| 1 0.0243476 1.49697e-06 3.51535e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| is particularly true as ||| 0.333333 0.0243476 1.49697e-06 7.93071e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| is perhaps in ||| 0.2 0.0587624 1.49697e-06 2.91308e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| is placed on ||| 0.03125 0.0782999 1.49697e-06 1.48856e-07 2.718 ||| 0-2 ||| 32 668016 +a ||| is planned for ||| 0.02 0.0683377 1.49697e-06 3.94966e-08 2.718 ||| 0-2 ||| 50 668016 +a ||| is possible for ||| 0.0666667 0.0683377 4.49091e-06 9.26323e-07 2.718 ||| 0-2 ||| 45 668016 +a ||| is possible to submit ||| 0.5 0.229811 1.49697e-06 1.84048e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| is possible to ||| 0.010989 0.229811 2.99394e-06 8.80613e-06 2.718 ||| 0-2 ||| 182 668016 +a ||| is prepared to ||| 0.00165017 0.229811 1.49697e-06 9.51865e-07 2.718 ||| 0-2 ||| 606 668016 +a ||| is present in ||| 0.0178571 0.0587624 1.49697e-06 6.89197e-07 2.718 ||| 0-2 ||| 56 668016 +a ||| is probably due ||| 0.125 0.001519 1.49697e-06 2.5533e-11 2.718 ||| 0-2 ||| 8 668016 +a ||| is provided for ||| 0.0104167 0.0683377 1.49697e-06 2.64697e-07 2.718 ||| 0-2 ||| 96 668016 +a ||| is provided to ||| 0.142857 0.229811 2.99394e-06 2.51635e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| is provided ||| 0.00332226 0.0016615 1.49697e-06 4.85787e-07 2.718 ||| 0-1 ||| 301 668016 +a ||| is providing to assist ||| 1 0.229811 1.49697e-06 1.88469e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| is providing to ||| 0.333333 0.229811 1.49697e-06 1.00786e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| is pushing a ||| 1 0.102314 1.49697e-06 1.06553e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| is pushing ||| 0.02 0.102314 1.49697e-06 2.40386e-06 2.718 ||| 0-1 ||| 50 668016 +a ||| is put across to ||| 1 0.229811 1.49697e-06 1.242e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| is put in place ||| 0.025641 0.0587624 1.49697e-06 3.12476e-09 2.718 ||| 0-2 ||| 39 668016 +a ||| is put in ||| 0.0175439 0.0587624 1.49697e-06 2.07625e-06 2.718 ||| 0-2 ||| 57 668016 +a ||| is put into effect ||| 0.0588235 0.107578 1.49697e-06 7.00252e-11 2.718 ||| 0-2 ||| 17 668016 +a ||| is put into ||| 0.0408163 0.107578 2.99394e-06 2.09908e-07 2.718 ||| 0-2 ||| 49 668016 +a ||| is put to ||| 0.0344828 0.229811 1.49697e-06 1.21053e-05 2.718 ||| 0-2 ||| 29 668016 +a ||| is putting ||| 0.00520833 0.049485 1.49697e-06 6.3215e-06 2.718 ||| 0-1 ||| 192 668016 +a ||| is ready to ||| 0.00514139 0.229811 2.99394e-06 4.86363e-07 2.718 ||| 0-2 ||| 389 668016 +a ||| is really going on ||| 0.0666667 0.0782999 1.49697e-06 4.92876e-10 2.718 ||| 0-3 ||| 15 668016 +a ||| is reason to ||| 0.0909091 0.229811 1.49697e-06 2.56795e-06 2.718 ||| 0-2 ||| 11 668016 +a ||| is reasonable to do at ||| 1 0.229811 1.49697e-06 2.84275e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| is reasonable to do ||| 1 0.229811 1.49697e-06 6.78881e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| is reasonable to ||| 0.0740741 0.229811 2.99394e-06 1.97619e-07 2.718 ||| 0-2 ||| 27 668016 +a ||| is reluctant to carry out its ||| 0.5 0.229811 1.49697e-06 3.51811e-17 2.718 ||| 0-2 ||| 2 668016 +a ||| is reluctant to carry out ||| 0.5 0.229811 1.49697e-06 2.46937e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| is reluctant to carry ||| 0.5 0.229811 1.49697e-06 6.44677e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| is reluctant to ||| 0.0625 0.229811 1.49697e-06 3.51323e-08 2.718 ||| 0-2 ||| 16 668016 +a ||| is required to have been ||| 1 0.229811 1.49697e-06 6.95824e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| is required to have ||| 1 0.229811 1.49697e-06 2.08381e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| is required to satisfy demand ||| 1 0.116324 1.49697e-06 2.57267e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| is required to satisfy ||| 1 0.116324 1.49697e-06 4.79975e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| is required to ||| 0.00787402 0.229811 1.49697e-06 1.74234e-06 2.718 ||| 0-2 ||| 127 668016 +a ||| is reserved for ||| 0.0625 0.0683377 1.49697e-06 7.50667e-09 2.718 ||| 0-2 ||| 16 668016 +a ||| is responsible for ||| 0.00246002 0.0683377 2.99394e-06 1.70806e-07 2.718 ||| 0-2 ||| 813 668016 +a ||| is restricted to ||| 0.012987 0.229811 1.49697e-06 1.73466e-07 2.718 ||| 0-2 ||| 77 668016 +a ||| is right that ||| 0.00884956 0.0008521 1.49697e-06 1.37986e-08 2.718 ||| 0-2 ||| 113 668016 +a ||| is rising to ||| 0.25 0.229811 1.49697e-06 1.38333e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| is rubbish , to put ||| 1 0.229811 1.49697e-06 5.77444e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| is rubbish , to ||| 1 0.229811 1.49697e-06 5.23711e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| is run ||| 0.0163934 0.0020741 1.49697e-06 2.00583e-07 2.718 ||| 0-1 ||| 61 668016 +a ||| is safe to say that ||| 0.1 0.229811 1.49697e-06 5.71921e-12 2.718 ||| 0-2 ||| 10 668016 +a ||| is safe to say ||| 0.1 0.229811 1.49697e-06 3.39992e-10 2.718 ||| 0-2 ||| 10 668016 +a ||| is safe to ||| 0.0384615 0.229811 1.49697e-06 3.55714e-07 2.718 ||| 0-2 ||| 26 668016 +a ||| is said to afford ||| 0.5 0.229811 1.49697e-06 1.26888e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| is said to have ||| 0.0454545 0.229811 1.49697e-06 5.40056e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| is said to ||| 0.0344828 0.229811 4.49091e-06 4.5156e-06 2.718 ||| 0-2 ||| 87 668016 +a ||| is satisfactory in ||| 0.25 0.0587624 1.49697e-06 3.05054e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| is seated in ||| 0.0833333 0.0587624 1.49697e-06 6.77899e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| is separating ||| 1 0.0045662 1.49697e-06 2.8207e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| is set to face shortly ||| 1 0.229811 1.49697e-06 1.30955e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| is set to face ||| 0.5 0.229811 1.49697e-06 1.0734e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| is set to ||| 0.00662252 0.229811 1.49697e-06 6.41603e-06 2.718 ||| 0-2 ||| 151 668016 +a ||| is shut on ||| 0.25 0.0782999 1.49697e-06 1.84286e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| is so ||| 0.000564653 0.0007673 1.49697e-06 2.51669e-06 2.718 ||| 0-1 ||| 1771 668016 +a ||| is some promise on ||| 1 0.0782999 1.49697e-06 1.21741e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| is something from ||| 0.333333 0.0435582 1.49697e-06 1.2488e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| is something that urgently needs to be ||| 0.5 0.229811 1.49697e-06 5.80429e-18 2.718 ||| 0-5 ||| 2 668016 +a ||| is something that urgently needs to ||| 0.5 0.229811 1.49697e-06 3.20274e-16 2.718 ||| 0-5 ||| 2 668016 +a ||| is something to which ||| 0.0555556 0.229811 2.99394e-06 5.16199e-08 2.718 ||| 0-2 ||| 36 668016 +a ||| is something to ||| 0.0588235 0.229811 8.98182e-06 6.07679e-06 2.718 ||| 0-2 ||| 102 668016 +a ||| is soon to ||| 0.0454545 0.229811 1.49697e-06 1.01115e-06 2.718 ||| 0-2 ||| 22 668016 +a ||| is speaking out in ||| 1 0.0587624 1.49697e-06 8.28034e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| is speeding up in some matters while ||| 1 0.0587624 1.49697e-06 3.37733e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| is speeding up in some matters ||| 1 0.0587624 1.49697e-06 1.81187e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| is speeding up in some ||| 1 0.0587624 1.49697e-06 9.7939e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| is speeding up in ||| 1 0.0587624 1.49697e-06 8.99101e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| is standing in ||| 0.0666667 0.0587624 1.49697e-06 9.96134e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| is still high in FYROM ||| 0.111111 0.0587624 1.49697e-06 1.52463e-15 2.718 ||| 0-3 ||| 9 668016 +a ||| is still high in ||| 0.111111 0.0587624 1.49697e-06 2.11754e-10 2.718 ||| 0-3 ||| 9 668016 +a ||| is still subject to ||| 0.0625 0.229811 1.49697e-06 4.46375e-09 2.718 ||| 0-3 ||| 16 668016 +a ||| is still to be ||| 0.037037 0.229811 1.49697e-06 1.49863e-07 2.718 ||| 0-2 ||| 27 668016 +a ||| is still to ||| 0.0153846 0.229811 1.49697e-06 8.26926e-06 2.718 ||| 0-2 ||| 65 668016 +a ||| is striking at ||| 0.25 0.204175 1.49697e-06 1.34405e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| is striving to give to ||| 1 0.229811 1.49697e-06 4.02009e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| is subsequently transferred to ||| 0.333333 0.229811 1.49697e-06 4.00771e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| is such a short distance ||| 1 0.131537 1.49697e-06 6.14398e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| is supposed to ||| 0.00677966 0.229811 2.99394e-06 6.44458e-07 2.718 ||| 0-2 ||| 295 668016 +a ||| is taken away from ||| 0.1 0.0435582 1.49697e-06 6.54176e-11 2.718 ||| 0-3 ||| 10 668016 +a ||| is taken in ||| 0.0714286 0.0587624 1.49697e-06 1.7164e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| is taking place at the ||| 0.0588235 0.0112121 1.49697e-06 2.04802e-12 2.718 ||| 0-1 ||| 17 668016 +a ||| is taking place at ||| 0.0138889 0.0112121 1.49697e-06 3.33599e-11 2.718 ||| 0-1 ||| 72 668016 +a ||| is taking place ||| 0.00257732 0.0112121 2.99394e-06 7.96674e-09 2.718 ||| 0-1 ||| 776 668016 +a ||| is taking to ||| 0.05 0.229811 1.49697e-06 4.66601e-06 2.718 ||| 0-2 ||| 20 668016 +a ||| is taking ||| 0.00261097 0.0112121 4.49091e-06 5.29351e-06 2.718 ||| 0-1 ||| 1149 668016 +a ||| is tantamount to ||| 0.00833333 0.229811 1.49697e-06 9.4418e-08 2.718 ||| 0-2 ||| 120 668016 +a ||| is that a meeting of ||| 1 0.0188479 1.49697e-06 8.68168e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| is that in ||| 0.00340136 0.0587624 1.49697e-06 3.16759e-05 2.718 ||| 0-2 ||| 294 668016 +a ||| is that ||| 9.27214e-05 0.0008521 2.99394e-06 2.13966e-05 2.718 ||| 0-1 ||| 21570 668016 +a ||| is the Commission ||| 0.00215983 0.0004654 1.49697e-06 2.80545e-08 2.718 ||| 0-1 ||| 463 668016 +a ||| is the case at present ||| 0.037037 0.204175 1.49697e-06 2.56436e-11 2.718 ||| 0-3 ||| 27 668016 +a ||| is the case at ||| 0.047619 0.204175 1.49697e-06 7.00646e-08 2.718 ||| 0-3 ||| 21 668016 +a ||| is the case in ||| 0.00564972 0.0587624 1.49697e-06 1.23685e-07 2.718 ||| 0-3 ||| 177 668016 +a ||| is the duty of ||| 0.0238095 0.0188479 1.49697e-06 4.23991e-09 2.718 ||| 0-3 ||| 42 668016 +a ||| is the question of bail arrangements and ||| 1 0.0188479 1.49697e-06 1.03561e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| is the question of bail arrangements ||| 1 0.0188479 1.49697e-06 8.26777e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| is the question of bail ||| 1 0.0188479 1.49697e-06 1.88332e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| is the question of ||| 0.00367647 0.0188479 1.49697e-06 4.7083e-08 2.718 ||| 0-3 ||| 272 668016 +a ||| is the task of ||| 0.025 0.0188479 1.49697e-06 7.17086e-09 2.718 ||| 0-3 ||| 40 668016 +a ||| is the way to put ||| 0.333333 0.229811 1.49697e-06 1.60196e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| is the way to ||| 0.00833333 0.229811 1.49697e-06 1.4529e-06 2.718 ||| 0-3 ||| 120 668016 +a ||| is the ||| 0.000124903 0.0004654 7.48485e-06 4.80302e-05 2.718 ||| 0-1 ||| 40031 668016 +a ||| is then blamed ||| 1 0.177083 1.49697e-06 2.35198e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| is then ||| 0.005 0.0252938 1.49697e-06 2.67183e-05 2.718 ||| 0-1 ||| 200 668016 +a ||| is there to ||| 0.00840336 0.229811 1.49697e-06 3.36534e-05 2.718 ||| 0-2 ||| 119 668016 +a ||| is therefore reason to require that ||| 1 0.229811 1.49697e-06 1.69068e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| is therefore reason to require ||| 1 0.229811 1.49697e-06 1.00507e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| is therefore reason to ||| 1 0.229811 1.49697e-06 2.14758e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| is through ||| 0.00566572 0.230708 2.99394e-06 0.000249134 2.718 ||| 0-1 ||| 353 668016 +a ||| is time for us to ask : ||| 1 0.0683377 1.49697e-06 2.24866e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| is time for us to ask ||| 1 0.0683377 1.49697e-06 6.67655e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| is time for us to ||| 0.25 0.0683377 1.49697e-06 4.85567e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| is time for us ||| 0.125 0.0683377 1.49697e-06 5.46452e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| is time for ||| 0.0128205 0.0683377 2.99394e-06 1.89595e-06 2.718 ||| 0-2 ||| 156 668016 +a ||| is to a ||| 0.030303 0.229811 1.49697e-06 0.000486646 2.718 ||| 0-1 ||| 33 668016 +a ||| is to adopt ||| 0.0149254 0.229811 1.49697e-06 1.1418e-06 2.718 ||| 0-1 ||| 67 668016 +a ||| is to be achieved ||| 0.00862069 0.229811 1.49697e-06 3.32874e-08 2.718 ||| 0-1 ||| 116 668016 +a ||| is to be donated by way ||| 1 0.229811 1.49697e-06 2.47692e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| is to be donated by ||| 1 0.229811 1.49697e-06 1.14906e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| is to be donated ||| 1 0.229811 1.49697e-06 2.18865e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| is to be done ||| 0.0106383 0.229811 1.49697e-06 9.07296e-08 2.718 ||| 0-1 ||| 94 668016 +a ||| is to be hoped ||| 0.0121951 0.229811 1.49697e-06 3.85999e-09 2.718 ||| 0-1 ||| 82 668016 +a ||| is to be implemented ||| 0.0188679 0.229811 1.49697e-06 1.74694e-08 2.718 ||| 0-1 ||| 53 668016 +a ||| is to be instructed ||| 1 0.196787 1.49697e-06 2.25604e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| is to be made ||| 0.0175439 0.229811 1.49697e-06 4.16799e-07 2.718 ||| 0-1 ||| 57 668016 +a ||| is to be possible ||| 0.0555556 0.229811 1.49697e-06 1.59593e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| is to be taken at ||| 0.5 0.204175 1.49697e-06 1.56577e-09 2.718 ||| 0-4 ||| 2 668016 +a ||| is to be ||| 0.0140468 0.229811 6.28727e-05 0.000198968 2.718 ||| 0-1 ||| 2990 668016 +a ||| is to become like us ||| 1 0.229811 1.49697e-06 1.6055e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| is to become like ||| 1 0.229811 1.49697e-06 5.57038e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| is to become ||| 0.0163934 0.229811 2.99394e-06 3.13665e-06 2.718 ||| 0-1 ||| 122 668016 +a ||| is to call ||| 0.025 0.229811 1.49697e-06 2.4373e-06 2.718 ||| 0-1 ||| 40 668016 +a ||| is to come into force , ||| 0.5 0.229811 1.49697e-06 1.9431e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| is to come into force ||| 0.333333 0.229811 1.49697e-06 1.62937e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| is to come into ||| 0.1 0.229811 1.49697e-06 9.57329e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| is to come ||| 0.0285714 0.229811 1.49697e-06 9.32433e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| is to determine whether ||| 0.125 0.229811 1.49697e-06 6.95078e-11 2.718 ||| 0-1 ||| 8 668016 +a ||| is to determine ||| 0.0333333 0.229811 1.49697e-06 2.6459e-07 2.718 ||| 0-1 ||| 30 668016 +a ||| is to ensure that ||| 0.0021692 0.229811 1.49697e-06 8.28112e-08 2.718 ||| 0-1 ||| 461 668016 +a ||| is to ensure ||| 0.00130719 0.229811 1.49697e-06 4.92291e-06 2.718 ||| 0-1 ||| 765 668016 +a ||| is to find ||| 0.0107527 0.229811 1.49697e-06 3.65485e-06 2.718 ||| 0-1 ||| 93 668016 +a ||| is to force any truck to ||| 1 0.229811 1.49697e-06 1.7576e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| is to go ||| 0.0465116 0.229811 2.99394e-06 6.42042e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| is to harmonize ||| 0.0714286 0.229811 1.49697e-06 1.53704e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| is to help ||| 0.00561798 0.244893 1.49697e-06 7.22111e-05 2.718 ||| 0-1 0-2 ||| 178 668016 +a ||| is to meet ||| 0.0232558 0.229811 1.49697e-06 1.33503e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| is to provide a source of ||| 1 0.0188479 1.49697e-06 6.8799e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| is to say , ||| 0.0182927 0.229811 4.49091e-06 1.25141e-06 2.718 ||| 0-1 ||| 164 668016 +a ||| is to say ||| 0.0141093 0.229811 1.19758e-05 1.04936e-05 2.718 ||| 0-1 ||| 567 668016 +a ||| is to sit around ||| 1 0.229811 1.49697e-06 5.5278e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| is to sit ||| 0.5 0.229811 1.49697e-06 4.15e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| is to some extent ||| 0.0384615 0.229811 1.49697e-06 2.29857e-09 2.718 ||| 0-1 ||| 26 668016 +a ||| is to some ||| 0.0384615 0.229811 1.49697e-06 1.19592e-05 2.718 ||| 0-1 ||| 26 668016 +a ||| is to start to ||| 0.5 0.229811 1.49697e-06 1.35505e-07 2.718 ||| 0-3 ||| 2 668016 +a ||| is to take place ||| 0.00862069 0.229811 1.49697e-06 2.66023e-08 2.718 ||| 0-1 ||| 116 668016 +a ||| is to take ||| 0.00409836 0.229811 1.49697e-06 1.76759e-05 2.718 ||| 0-1 ||| 244 668016 +a ||| is to the ||| 0.00632911 0.229811 1.49697e-06 0.000674011 2.718 ||| 0-1 ||| 158 668016 +a ||| is to try to ||| 0.0175439 0.229811 1.49697e-06 1.50236e-07 2.718 ||| 0-3 ||| 57 668016 +a ||| is to ||| 0.0262534 0.229811 0.000613758 0.0109788 2.718 ||| 0-1 ||| 15617 668016 +a ||| is too late we will ||| 1 0.0561595 1.49697e-06 2.16188e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| is towards ||| 0.08 0.155507 2.99394e-06 0.000105701 2.718 ||| 0-1 ||| 25 668016 +a ||| is transferred to ||| 0.0588235 0.229811 1.49697e-06 2.37143e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| is unclear because the boundaries of ||| 1 0.0052046 1.49697e-06 1.14807e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| is unclear because the boundaries ||| 1 0.0052046 1.49697e-06 2.11182e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| is unclear because the ||| 1 0.0052046 1.49697e-06 2.67319e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| is unclear because ||| 0.5 0.0052046 1.49697e-06 4.35431e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| is under ||| 0.00489396 0.0384416 4.49091e-06 4.44542e-05 2.718 ||| 0-1 ||| 613 668016 +a ||| is up to ||| 0.119048 0.229811 5.98788e-05 3.74433e-05 2.718 ||| 0-2 ||| 336 668016 +a ||| is used to ||| 0.0102041 0.229811 1.49697e-06 4.70992e-06 2.718 ||| 0-2 ||| 98 668016 +a ||| is useful to ||| 0.0232558 0.229811 1.49697e-06 3.48029e-07 2.718 ||| 0-2 ||| 43 668016 +a ||| is very hard to ||| 0.0625 0.229811 1.49697e-06 4.01491e-09 2.718 ||| 0-3 ||| 16 668016 +a ||| is very important that we continue to ||| 0.333333 0.229811 1.49697e-06 6.4754e-16 2.718 ||| 0-6 ||| 3 668016 +a ||| is very ready to continue to ||| 1 0.229811 1.49697e-06 3.47967e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| is via ||| 0.0434783 0.330861 1.49697e-06 4.33949e-05 2.718 ||| 0-1 ||| 23 668016 +a ||| is viewed as ||| 0.0526316 0.0243476 1.49697e-06 6.62597e-09 2.718 ||| 0-2 ||| 19 668016 +a ||| is what we ||| 0.00542005 0.0008079 2.99394e-06 1.99469e-08 2.718 ||| 0-2 ||| 369 668016 +a ||| is what ||| 0.000211193 0.0002483 1.49697e-06 1.14395e-06 2.718 ||| 0-1 ||| 4735 668016 +a ||| is where ||| 0.002079 0.0053255 2.99394e-06 7.69424e-06 2.718 ||| 0-1 ||| 962 668016 +a ||| is why we attach particular importance to ||| 0.333333 0.229811 1.49697e-06 2.65245e-20 2.718 ||| 0-6 ||| 3 668016 +a ||| is with reference to ||| 0.142857 0.229811 1.49697e-06 5.98842e-09 2.718 ||| 0-3 ||| 7 668016 +a ||| is with ||| 0.0190114 0.0571592 1.49697e-05 0.000523243 2.718 ||| 0-1 ||| 526 668016 +a ||| is within ||| 0.0136986 0.0123496 2.99394e-06 1.55891e-05 2.718 ||| 0-1 ||| 146 668016 +a ||| is working for ||| 0.0434783 0.0683377 1.49697e-06 2.19888e-07 2.718 ||| 0-2 ||| 23 668016 +a ||| is worse off ||| 0.5 0.0893962 1.49697e-06 8.53432e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| is worth mentioning , in ||| 1 0.0587624 1.49697e-06 9.41681e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| is wrong on ||| 0.333333 0.0782999 1.49697e-06 6.6343e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| is wrong to ||| 0.0208333 0.229811 1.49697e-06 6.12619e-07 2.718 ||| 0-2 ||| 48 668016 +a ||| is yet another ||| 0.00546448 0.0130882 1.49697e-06 2.06212e-09 2.718 ||| 0-1 ||| 183 668016 +a ||| is yet in ||| 0.1 0.0587624 1.49697e-06 4.98067e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| is yet ||| 0.00446429 0.0130882 1.49697e-06 8.55299e-06 2.718 ||| 0-1 ||| 224 668016 +a ||| islands in ||| 0.0322581 0.0587624 1.49697e-06 4.74652e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| isolate itself from ||| 0.2 0.273713 1.49697e-06 1.00773e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| isolate itself ||| 0.25 0.273713 1.49697e-06 6.25761e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| isolate ||| 0.00966184 0.273713 2.99394e-06 9.22e-05 2.718 ||| 0-0 ||| 207 668016 +a ||| isolating ||| 0.00826446 0.254438 1.49697e-06 3.92e-05 2.718 ||| 0-0 ||| 121 668016 +a ||| issue , and give ||| 0.25 0.0015873 1.49697e-06 1.0553e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| issue , and ||| 0.00327869 0.0015873 1.49697e-06 1.74141e-07 2.718 ||| 0-2 ||| 305 668016 +a ||| issue at a time ||| 0.0909091 0.204175 1.49697e-06 1.8744e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| issue at a ||| 0.05 0.204175 1.49697e-06 1.14174e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| issue at ||| 0.00986842 0.204175 4.49091e-06 2.5758e-05 2.718 ||| 0-1 ||| 304 668016 +a ||| issue for the Group of the European ||| 1 0.0683377 1.49697e-06 6.21542e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| issue for the Group of the ||| 1 0.0683377 1.49697e-06 1.85873e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| issue for the Group of ||| 1 0.0683377 1.49697e-06 3.02766e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| issue for the Group ||| 0.5 0.0683377 1.49697e-06 5.56923e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| issue for the ||| 0.00943396 0.0683377 1.49697e-06 1.71203e-06 2.718 ||| 0-1 ||| 106 668016 +a ||| issue for ||| 0.0203488 0.0683377 1.04788e-05 2.78869e-05 2.718 ||| 0-1 ||| 344 668016 +a ||| issue in ||| 0.00128866 0.0587624 1.49697e-06 4.54704e-05 2.718 ||| 0-1 ||| 776 668016 +a ||| issue of ||| 0.00270827 0.0188479 3.74243e-05 2.2385e-05 2.718 ||| 0-1 ||| 9231 668016 +a ||| issue that needs to be ||| 0.0625 0.229811 1.49697e-06 1.60266e-11 2.718 ||| 0-3 ||| 16 668016 +a ||| issue that needs to ||| 0.0714286 0.229811 1.49697e-06 8.84328e-10 2.718 ||| 0-3 ||| 14 668016 +a ||| issue to ||| 0.00374532 0.229811 1.49697e-06 0.000265108 2.718 ||| 0-1 ||| 267 668016 +a ||| issue with ||| 0.00651466 0.0571592 2.99394e-06 1.26349e-05 2.718 ||| 0-1 ||| 307 668016 +a ||| issued at ||| 0.0555556 0.204175 1.49697e-06 2.10679e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| issued for ||| 0.0833333 0.0683377 1.49697e-06 2.28092e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| issued to ||| 0.0697674 0.229811 4.49091e-06 2.16837e-05 2.718 ||| 0-1 ||| 43 668016 +a ||| issues are up for ||| 1 0.0683377 1.49697e-06 4.79555e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| issues at ||| 0.00763359 0.204175 1.49697e-06 8.5599e-06 2.718 ||| 0-1 ||| 131 668016 +a ||| issues for ||| 0.00961538 0.0683377 1.49697e-06 9.2674e-06 2.718 ||| 0-1 ||| 104 668016 +a ||| issues of ||| 0.000672947 0.0188479 1.49697e-06 7.43899e-06 2.718 ||| 0-1 ||| 1486 668016 +a ||| issues on ||| 0.00371747 0.0782999 1.49697e-06 9.5408e-06 2.718 ||| 0-1 ||| 269 668016 +a ||| issues that , in my view , ||| 0.5 0.0587624 1.49697e-06 2.09998e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| issues that , in my view ||| 0.5 0.0587624 1.49697e-06 1.76092e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| issues that , in my ||| 0.333333 0.0587624 1.49697e-06 1.94943e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| issues that , in ||| 0.166667 0.0587624 1.49697e-06 3.0313e-08 2.718 ||| 0-3 ||| 6 668016 +a ||| issuing a warning to ||| 1 0.229811 1.49697e-06 2.97816e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| issuing of ||| 0.0102041 0.0188479 1.49697e-06 4.05225e-07 2.718 ||| 0-1 ||| 98 668016 +a ||| it , in spite of ||| 0.2 0.0188479 1.49697e-06 2.56448e-11 2.718 ||| 0-4 ||| 5 668016 +a ||| it , in ||| 0.0392157 0.0587624 5.98788e-06 0.000127419 2.718 ||| 0-2 ||| 102 668016 +a ||| it , it has our ||| 1 0.0006453 1.49697e-06 4.46625e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| it , it has ||| 0.333333 0.0006453 1.49697e-06 3.23782e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| it , it ||| 0.027027 0.0006453 1.49697e-06 6.29009e-07 2.718 ||| 0-2 ||| 37 668016 +a ||| it , to ||| 0.0285714 0.229811 2.99394e-06 0.000742895 2.718 ||| 0-2 ||| 70 668016 +a ||| it - with ||| 0.333333 0.0571592 1.49697e-06 1.11991e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| it a criticism of ||| 1 0.0188479 1.49697e-06 4.70971e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| it across to ||| 0.333333 0.139444 1.49697e-06 3.06491e-06 2.718 ||| 0-1 0-2 ||| 3 668016 +a ||| it addresses ||| 0.00943396 0.0314159 1.49697e-06 1.67876e-08 2.718 ||| 0-0 0-1 ||| 106 668016 +a ||| it affects ||| 0.0160643 0.380413 5.98788e-06 2.18147e-05 2.718 ||| 0-1 ||| 249 668016 +a ||| it again , to correct ||| 0.333333 0.229811 1.49697e-06 1.54662e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| it again , to ||| 0.333333 0.229811 1.49697e-06 4.29616e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| it against ||| 0.0434783 0.05146 1.49697e-06 4.62274e-05 2.718 ||| 0-1 ||| 23 668016 +a ||| it aims to ||| 0.00492611 0.229811 1.49697e-06 2.48556e-07 2.718 ||| 0-2 ||| 203 668016 +a ||| it all away ||| 1 0.0038996 1.49697e-06 3.1288e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| it all into ||| 0.5 0.107578 1.49697e-06 5.1044e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| it all ||| 0.00263852 0.0038996 1.49697e-06 9.83589e-06 2.718 ||| 0-1 ||| 379 668016 +a ||| it allows for ||| 0.0434783 0.0683377 1.49697e-06 1.86101e-08 2.718 ||| 0-2 ||| 23 668016 +a ||| it also gives ||| 0.0204082 0.0245059 1.49697e-06 1.01631e-08 2.718 ||| 0-2 ||| 49 668016 +a ||| it also ||| 0.000303122 0.0006453 1.49697e-06 1.49741e-06 2.718 ||| 0-0 ||| 3299 668016 +a ||| it and ||| 0.00152207 0.0015873 2.99394e-06 3.43127e-05 2.718 ||| 0-1 ||| 1314 668016 +a ||| it appears to ||| 0.0238095 0.229811 4.49091e-06 3.25179e-07 2.718 ||| 0-2 ||| 126 668016 +a ||| it applies to ||| 0.0470588 0.229811 5.98788e-06 5.22031e-07 2.718 ||| 0-2 ||| 85 668016 +a ||| it appropriate to set up ||| 1 0.229811 1.49697e-06 1.67119e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| it appropriate to set ||| 1 0.229811 1.49697e-06 4.90013e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| it appropriate to ||| 0.0555556 0.229811 1.49697e-06 8.38488e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| it are to be ||| 1 0.229811 1.49697e-06 1.71294e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| it are to ||| 0.25 0.229811 1.49697e-06 9.45181e-05 2.718 ||| 0-2 ||| 4 668016 +a ||| it as a ||| 0.00413223 0.0243476 1.49697e-06 6.91488e-06 2.718 ||| 0-1 ||| 242 668016 +a ||| it as associated with ||| 1 0.0571592 1.49697e-06 1.56025e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| it as such ||| 0.0434783 0.0243476 1.49697e-06 3.22751e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| it as ||| 0.00490798 0.0243476 5.98788e-06 0.000156001 2.718 ||| 0-1 ||| 815 668016 +a ||| it at a ||| 0.0344828 0.204175 1.49697e-06 2.68286e-05 2.718 ||| 0-1 ||| 29 668016 +a ||| it at length ||| 0.0714286 0.204175 1.49697e-06 2.33024e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| it at the next Intergovernmental Conference ||| 1 0.204175 1.49697e-06 3.58891e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| it at the next Intergovernmental ||| 1 0.204175 1.49697e-06 1.91921e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| it at the next ||| 0.333333 0.204175 1.49697e-06 3.83841e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| it at the ||| 0.0361446 0.204175 4.49091e-06 3.71579e-05 2.718 ||| 0-1 ||| 83 668016 +a ||| it at ||| 0.0958466 0.204175 4.49091e-05 0.000605258 2.718 ||| 0-1 ||| 313 668016 +a ||| it available to ||| 0.2 0.229811 1.49697e-06 1.9816e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| it away somewhere ||| 1 0.0377856 1.49697e-06 8.58528e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| it away ||| 0.05 0.0377856 1.49697e-06 4.18794e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| it back and put it ||| 1 0.0015873 1.49697e-06 4.52522e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| it back and put ||| 1 0.0015873 1.49697e-06 2.54466e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| it back and ||| 1 0.0015873 1.49697e-06 2.30787e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| it back into ||| 0.25 0.107578 1.49697e-06 7.26546e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| it be in ||| 0.0217391 0.0587624 1.49697e-06 1.93636e-05 2.718 ||| 0-2 ||| 46 668016 +a ||| it began with ||| 0.0714286 0.0571592 1.49697e-06 4.48307e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| it briefly ||| 0.0588235 0.0006453 1.49697e-06 4.27104e-09 2.718 ||| 0-0 ||| 17 668016 +a ||| it bring about ||| 0.5 0.0526361 1.49697e-06 2.78971e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| it by introducing ||| 0.333333 0.0337966 1.49697e-06 4.57954e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| it by ||| 0.00729927 0.0337966 2.99394e-06 0.000146311 2.718 ||| 0-1 ||| 274 668016 +a ||| it came to ||| 0.0104167 0.229811 2.99394e-06 7.84915e-07 2.718 ||| 0-2 ||| 192 668016 +a ||| it can help ||| 0.0163934 0.259976 1.49697e-06 3.4789e-07 2.718 ||| 0-2 ||| 61 668016 +a ||| it can to ||| 0.00584795 0.229811 1.49697e-06 1.85284e-05 2.718 ||| 0-2 ||| 171 668016 +a ||| it can ||| 0.000292056 0.0008168 1.49697e-06 1.5258e-06 2.718 ||| 0-1 ||| 3424 668016 +a ||| it cannot be in ||| 0.111111 0.0587624 1.49697e-06 4.36261e-09 2.718 ||| 0-3 ||| 9 668016 +a ||| it caused injury to ||| 1 0.229811 1.49697e-06 1.69243e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| it clear at ||| 0.5 0.204175 1.49697e-06 2.0149e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| it clear to ||| 0.015873 0.229811 1.49697e-06 2.0738e-06 2.718 ||| 0-2 ||| 63 668016 +a ||| it comes at ||| 0.0227273 0.204175 1.49697e-06 2.41982e-07 2.718 ||| 0-2 ||| 44 668016 +a ||| it comes before ||| 0.0555556 0.0203282 1.49697e-06 3.77029e-09 2.718 ||| 0-2 ||| 18 668016 +a ||| it comes to ensuring ||| 0.142857 0.229811 1.49697e-06 2.89402e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| it comes to the ||| 0.00134589 0.229811 1.49697e-06 1.52899e-07 2.718 ||| 0-2 ||| 743 668016 +a ||| it comes to ||| 0.015044 0.229811 7.93394e-05 2.49055e-06 2.718 ||| 0-2 ||| 3523 668016 +a ||| it comes under the control of ||| 1 0.0188479 1.49697e-06 3.55293e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| it concerns whether we ||| 1 0.127284 1.49697e-06 1.25081e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| it concerns whether ||| 0.5 0.127284 1.49697e-06 1.10181e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| it concerns ||| 0.0114943 0.127284 1.34727e-05 4.19417e-05 2.718 ||| 0-1 ||| 783 668016 +a ||| it considers , in ||| 1 0.0587624 2.99394e-06 1.92402e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| it convenient for ||| 1 0.0683377 1.49697e-06 2.62114e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| it corresponds to one-third ||| 0.5 0.229811 1.49697e-06 1.87507e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| it corresponds to ||| 0.0714286 0.229811 1.49697e-06 2.67868e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| it could be at ||| 1 0.0006453 1.49697e-06 1.60057e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| it could be ||| 0.00197628 0.0006453 1.49697e-06 3.82234e-09 2.718 ||| 0-0 ||| 506 668016 +a ||| it could ||| 0.00060241 0.0006453 1.49697e-06 2.10912e-07 2.718 ||| 0-0 ||| 1660 668016 +a ||| it creates uncertainty in the region and ||| 1 0.0587624 1.49697e-06 8.91089e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| it creates uncertainty in the region ||| 1 0.0587624 1.49697e-06 7.11397e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| it creates uncertainty in the ||| 1 0.0587624 1.49697e-06 7.26657e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| it creates uncertainty in ||| 0.5 0.0587624 1.49697e-06 1.18364e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| it currently is on ||| 1 0.0782999 1.49697e-06 2.20735e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| it did to ||| 0.285714 0.229811 2.99394e-06 2.82943e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| it does , to ||| 0.166667 0.229811 1.49697e-06 5.21067e-07 2.718 ||| 0-3 ||| 6 668016 +a ||| it does for ||| 0.0555556 0.0683377 1.49697e-06 4.59616e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| it does on ||| 0.0555556 0.0782999 1.49697e-06 4.73176e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| it does so to ||| 0.5 0.229811 1.49697e-06 9.91714e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| it does to ||| 0.235294 0.229811 1.19758e-05 4.36936e-06 2.718 ||| 0-2 ||| 34 668016 +a ||| it down into ||| 0.2 0.107578 1.49697e-06 7.54091e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| it down the ||| 0.5 0.0226513 1.49697e-06 3.98595e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| it down to ||| 0.111111 0.229811 1.49697e-06 4.3488e-06 2.718 ||| 0-2 ||| 9 668016 +a ||| it down ||| 0.0227273 0.0226513 1.49697e-06 6.49265e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| it easier for ||| 0.0188679 0.0683377 2.99394e-06 4.57388e-08 2.718 ||| 0-2 ||| 106 668016 +a ||| it easier to engage ||| 1 0.229811 1.49697e-06 2.11322e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| it easier to ||| 0.0273973 0.229811 2.99394e-06 4.34818e-07 2.718 ||| 0-2 ||| 73 668016 +a ||| it easier ||| 0.00361011 0.0006453 1.49697e-06 2.07027e-08 2.718 ||| 0-0 ||| 277 668016 +a ||| it essential to ||| 0.0606061 0.229811 2.99394e-06 5.60654e-07 2.718 ||| 0-2 ||| 33 668016 +a ||| it falls to ||| 0.0144928 0.229811 1.49697e-06 1.94983e-07 2.718 ||| 0-2 ||| 69 668016 +a ||| it for them ||| 0.125 0.0683377 1.49697e-06 1.75773e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| it for ||| 0.0121359 0.0683377 7.48485e-06 0.000655284 2.718 ||| 0-1 ||| 412 668016 +a ||| it from occurring ||| 0.166667 0.0435582 1.49697e-06 2.48354e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| it from ||| 0.0384615 0.0435582 1.64667e-05 0.000128018 2.718 ||| 0-1 ||| 286 668016 +a ||| it gave this year to ||| 1 0.229811 1.49697e-06 8.38227e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| it gets to ||| 0.2 0.229811 2.99394e-06 1.86262e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| it grants to ||| 0.166667 0.229811 1.49697e-06 3.36392e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| it had drawn up on ||| 1 0.0782999 1.49697e-06 3.2815e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| it had in all the ||| 1 0.0587624 1.49697e-06 3.11108e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| it had in all ||| 1 0.0587624 1.49697e-06 5.06758e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| it had in ||| 0.0666667 0.0587624 1.49697e-06 1.07241e-06 2.718 ||| 0-2 ||| 15 668016 +a ||| it had ||| 0.00123305 0.0006453 1.49697e-06 2.97697e-07 2.718 ||| 0-0 ||| 811 668016 +a ||| it happens to ||| 0.0666667 0.229811 1.49697e-06 3.719e-07 2.718 ||| 0-2 ||| 15 668016 +a ||| it has been left to ||| 0.5 0.229811 1.49697e-06 2.02266e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| it has been said before : ||| 1 0.0203282 1.49697e-06 2.24544e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| it has been said before ||| 0.166667 0.0203282 1.49697e-06 6.66698e-14 2.718 ||| 0-4 ||| 6 668016 +a ||| it has contributed to ||| 0.0909091 0.229811 1.49697e-06 3.01423e-10 2.718 ||| 0-3 ||| 11 668016 +a ||| it has failed to ||| 0.0217391 0.229811 1.49697e-06 1.48787e-09 2.718 ||| 0-3 ||| 46 668016 +a ||| it has given ||| 0.00917431 0.0371011 1.49697e-06 9.67567e-08 2.718 ||| 0-2 ||| 109 668016 +a ||| it has had to ||| 0.0434783 0.229811 1.49697e-06 3.21849e-08 2.718 ||| 0-3 ||| 23 668016 +a ||| it has our ||| 0.0769231 0.0006453 1.49697e-06 2.106e-09 2.718 ||| 0-0 ||| 13 668016 +a ||| it has proven to be . ||| 0.5 0.229811 1.49697e-06 2.46436e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| it has proven to be ||| 0.1 0.229811 1.49697e-06 8.13587e-12 2.718 ||| 0-3 ||| 10 668016 +a ||| it has proven to ||| 0.0769231 0.229811 1.49697e-06 4.48928e-10 2.718 ||| 0-3 ||| 13 668016 +a ||| it has put into ||| 1 0.107578 1.49697e-06 6.13085e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| it has refused to ||| 0.142857 0.229811 1.49697e-06 3.81589e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| it has refused ||| 0.125 0.0176039 1.49697e-06 3.01163e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| it has to be said ||| 0.00254453 0.229811 1.49697e-06 2.3902e-10 2.718 ||| 0-2 ||| 393 668016 +a ||| it has to be ||| 0.00388098 0.229811 4.49091e-06 5.81134e-07 2.718 ||| 0-2 ||| 773 668016 +a ||| it has to do ||| 0.02 0.229811 2.99394e-06 1.10157e-07 2.718 ||| 0-2 ||| 100 668016 +a ||| it has to ||| 0.00529101 0.229811 1.04788e-05 3.20663e-05 2.718 ||| 0-2 ||| 1323 668016 +a ||| it has ||| 0.000211581 0.0006453 4.49091e-06 1.52675e-06 2.718 ||| 0-0 ||| 14179 668016 +a ||| it heads for the ||| 1 0.0683377 1.49697e-06 1.17067e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| it heads for ||| 1 0.0683377 1.49697e-06 1.90688e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| it help to ||| 1 0.244893 1.49697e-06 4.09732e-05 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| it help ||| 0.166667 0.259976 1.49697e-06 0.000116965 2.718 ||| 0-1 ||| 6 668016 +a ||| it helps ||| 0.00666667 0.137658 1.49697e-06 1.18314e-07 2.718 ||| 0-0 0-1 ||| 150 668016 +a ||| it here ||| 0.00854701 0.0182742 1.49697e-06 1.529e-05 2.718 ||| 0-1 ||| 117 668016 +a ||| it home to ||| 0.333333 0.229811 1.49697e-06 6.32293e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| it if those of ||| 1 0.0188479 1.49697e-06 3.18261e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| it if ||| 0.00829876 0.0010667 2.99394e-06 3.84394e-08 2.718 ||| 0-0 0-1 ||| 241 668016 +a ||| it impossible to ||| 0.0196078 0.229811 1.49697e-06 3.339e-07 2.718 ||| 0-2 ||| 51 668016 +a ||| it in a ||| 0.00990099 0.0587624 1.49697e-06 4.73603e-05 2.718 ||| 0-1 ||| 101 668016 +a ||| it in accordance with ||| 0.125 0.0571592 1.49697e-06 5.05209e-10 2.718 ||| 0-3 ||| 8 668016 +a ||| it in for ||| 1 0.06355 1.49697e-06 3.93711e-05 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| it in line with ||| 0.125 0.0571592 1.49697e-06 1.87086e-09 2.718 ||| 0-3 ||| 8 668016 +a ||| it in mind ||| 0.0625 0.0587624 1.49697e-06 2.69145e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| it in terms of ||| 0.047619 0.0188479 1.49697e-06 1.23576e-08 2.718 ||| 0-3 ||| 21 668016 +a ||| it in the ||| 0.00244499 0.0587624 1.49697e-06 6.55946e-05 2.718 ||| 0-1 ||| 409 668016 +a ||| it in ||| 0.023507 0.0587624 5.53879e-05 0.00106846 2.718 ||| 0-1 ||| 1574 668016 +a ||| it intended to ||| 0.0555556 0.229811 1.49697e-06 5.46949e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| it intends to ||| 0.00284091 0.229811 1.49697e-06 1.18983e-07 2.718 ||| 0-2 ||| 352 668016 +a ||| it into force ||| 0.142857 0.107578 1.49697e-06 1.83851e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| it into line with ||| 0.176471 0.107578 4.49091e-06 2.03353e-10 2.718 ||| 0-1 ||| 17 668016 +a ||| it into line ||| 0.133333 0.107578 2.99394e-06 3.18012e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| it into the ||| 0.0263158 0.0540218 1.49697e-06 1.65541e-07 2.718 ||| 0-1 0-2 ||| 38 668016 +a ||| it into ||| 0.100806 0.107578 3.74243e-05 0.00010802 2.718 ||| 0-1 ||| 248 668016 +a ||| it involves ||| 0.00437637 0.0681747 2.99394e-06 3.52285e-06 2.718 ||| 0-1 ||| 457 668016 +a ||| it is , in ||| 0.00657895 0.0587624 1.49697e-06 3.99344e-06 2.718 ||| 0-3 ||| 152 668016 +a ||| it is a function of ||| 1 0.0188479 1.49697e-06 1.81221e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| it is a ||| 0.000165344 0.0006453 2.99394e-06 4.12042e-07 2.718 ||| 0-0 ||| 12096 668016 +a ||| it is about ||| 0.00322234 0.0526361 4.49091e-06 2.80863e-06 2.718 ||| 0-2 ||| 931 668016 +a ||| it is against ||| 0.0245902 0.05146 4.49091e-06 1.44882e-06 2.718 ||| 0-2 ||| 122 668016 +a ||| it is also due to the fact ||| 0.0909091 0.229811 1.49697e-06 4.89947e-14 2.718 ||| 0-4 ||| 11 668016 +a ||| it is also due to the ||| 0.1 0.229811 1.49697e-06 1.67258e-11 2.718 ||| 0-4 ||| 10 668016 +a ||| it is also due to ||| 0.0909091 0.229811 1.49697e-06 2.72443e-10 2.718 ||| 0-4 ||| 11 668016 +a ||| it is as ||| 0.0113636 0.0243476 4.49091e-06 4.88925e-06 2.718 ||| 0-2 ||| 264 668016 +a ||| it is at the ||| 0.03125 0.204175 2.99394e-06 1.16457e-06 2.718 ||| 0-2 ||| 64 668016 +a ||| it is at ||| 0.0421941 0.204175 1.49697e-05 1.89695e-05 2.718 ||| 0-2 ||| 237 668016 +a ||| it is being put in ||| 1 0.0587624 1.49697e-06 1.05074e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| it is better not to make any ||| 1 0.229811 1.49697e-06 2.97608e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| it is better not to make ||| 1 0.229811 1.49697e-06 1.96805e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| it is better not to ||| 0.166667 0.229811 1.49697e-06 1.13249e-10 2.718 ||| 0-4 ||| 6 668016 +a ||| it is by ||| 0.0128205 0.0337966 2.99394e-06 4.58556e-06 2.718 ||| 0-2 ||| 156 668016 +a ||| it is continuing to ||| 0.0666667 0.229811 1.49697e-06 1.20853e-08 2.718 ||| 0-3 ||| 15 668016 +a ||| it is correct ||| 0.0123457 0.0006453 1.49697e-06 3.34648e-10 2.718 ||| 0-0 ||| 81 668016 +a ||| it is desired to ||| 0.333333 0.229811 1.49697e-06 3.0262e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| it is directed at ||| 0.1 0.204175 1.49697e-06 5.93744e-10 2.718 ||| 0-3 ||| 10 668016 +a ||| it is due to ||| 0.0227273 0.229811 1.49697e-06 5.3964e-08 2.718 ||| 0-3 ||| 44 668016 +a ||| it is equally true of ||| 0.333333 0.0188479 1.49697e-06 9.29752e-14 2.718 ||| 0-4 ||| 3 668016 +a ||| it is for ||| 0.00777605 0.0683377 1.49697e-05 2.05373e-05 2.718 ||| 0-2 ||| 1286 668016 +a ||| it is going to be willing to ||| 1 0.229811 1.49697e-06 1.01708e-14 2.718 ||| 0-6 ||| 1 668016 +a ||| it is going to ||| 0.00286533 0.229811 1.49697e-06 1.67085e-07 2.718 ||| 0-3 ||| 349 668016 +a ||| it is impacting on ||| 0.25 0.0782999 1.49697e-06 2.32575e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| it is important to have a period ||| 1 0.229811 1.49697e-06 6.92821e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| it is important to have a ||| 0.0384615 0.229811 1.49697e-06 3.97032e-11 2.718 ||| 0-3 ||| 26 668016 +a ||| it is important to have ||| 0.00775194 0.229811 1.49697e-06 8.95713e-10 2.718 ||| 0-3 ||| 129 668016 +a ||| it is important to provide ||| 0.03125 0.229811 1.49697e-06 2.21535e-11 2.718 ||| 0-3 ||| 32 668016 +a ||| it is important to ||| 0.00093633 0.229811 2.99394e-06 7.48936e-08 2.718 ||| 0-3 ||| 2136 668016 +a ||| it is in fact in ||| 0.25 0.0587624 1.49697e-06 2.09962e-09 2.718 ||| 0-4 ||| 4 668016 +a ||| it is in our ||| 0.0108696 0.0587624 1.49697e-06 4.61915e-08 2.718 ||| 0-2 ||| 92 668016 +a ||| it is in the interest of ||| 0.025641 0.0188479 1.49697e-06 2.43274e-12 2.718 ||| 0-5 ||| 39 668016 +a ||| it is in the ||| 0.00452489 0.0587624 2.99394e-06 2.05581e-06 2.718 ||| 0-2 ||| 442 668016 +a ||| it is in ||| 0.0422306 0.0587624 0.000116764 3.34867e-05 2.718 ||| 0-2 ||| 1847 668016 +a ||| it is interesting to ||| 0.0178571 0.229811 1.49697e-06 2.03048e-09 2.718 ||| 0-3 ||| 56 668016 +a ||| it is meeting with ||| 1 0.0571592 1.49697e-06 1.1687e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| it is more to ||| 0.333333 0.229811 1.49697e-06 4.45867e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| it is most certainly ||| 0.0526316 0.0006453 1.49697e-06 1.00642e-12 2.718 ||| 0-0 ||| 19 668016 +a ||| it is most ||| 0.00403226 0.0006453 1.49697e-06 4.01763e-09 2.718 ||| 0-0 ||| 248 668016 +a ||| it is my task to report , ||| 1 0.229811 1.49697e-06 7.73337e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| it is my task to report ||| 1 0.229811 1.49697e-06 6.48475e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| it is my task to ||| 0.333333 0.229811 1.49697e-06 1.58203e-11 2.718 ||| 0-4 ||| 3 668016 +a ||| it is not in ||| 0.00884956 0.0587624 1.49697e-06 1.14327e-07 2.718 ||| 0-3 ||| 113 668016 +a ||| it is not ||| 7.90952e-05 0.0006453 1.49697e-06 3.17367e-08 2.718 ||| 0-0 ||| 12643 668016 +a ||| it is now up to ||| 0.00571429 0.229811 1.49697e-06 1.37161e-09 2.718 ||| 0-4 ||| 175 668016 +a ||| it is of no help to ||| 0.5 0.0188479 1.49697e-06 2.17446e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| it is of no help ||| 0.5 0.0188479 1.49697e-06 2.44711e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| it is of no ||| 0.047619 0.0188479 1.49697e-06 1.28323e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| it is of ||| 0.00265604 0.0188479 2.99394e-06 1.64854e-05 2.718 ||| 0-2 ||| 753 668016 +a ||| it is on a ||| 0.0769231 0.0782999 1.49697e-06 9.3719e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| it is on the ||| 0.0162602 0.0006453 2.99394e-06 3.81845e-09 2.718 ||| 0-0 ||| 123 668016 +a ||| it is on ||| 0.0173913 0.0782999 8.98182e-06 2.11432e-05 2.718 ||| 0-2 ||| 345 668016 +a ||| it is only at ||| 0.142857 0.204175 1.49697e-06 2.11149e-08 2.718 ||| 0-3 ||| 7 668016 +a ||| it is only ||| 0.000735294 0.0004289 1.49697e-06 1.62745e-08 2.718 ||| 0-2 ||| 1360 668016 +a ||| it is our responsibility , to ||| 1 0.229811 1.49697e-06 3.70949e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| it is perhaps in ||| 0.25 0.0587624 1.49697e-06 5.18039e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| it is possible for ||| 0.0104167 0.0683377 1.49697e-06 1.6473e-08 2.718 ||| 0-3 ||| 96 668016 +a ||| it is reasonable to ||| 0.0217391 0.229811 1.49697e-06 3.5143e-09 2.718 ||| 0-3 ||| 46 668016 +a ||| it is right that ||| 0.00296736 0.0008521 1.49697e-06 2.45384e-10 2.718 ||| 0-3 ||| 337 668016 +a ||| it is something to ||| 0.111111 0.229811 1.49697e-06 1.08065e-07 2.718 ||| 0-3 ||| 9 668016 +a ||| it is taking ||| 0.00917431 0.0112121 1.49697e-06 9.41356e-08 2.718 ||| 0-2 ||| 109 668016 +a ||| it is that ||| 0.00148368 0.0007487 1.49697e-06 6.34622e-09 2.718 ||| 0-0 0-2 ||| 674 668016 +a ||| it is the duty of ||| 0.0117647 0.0188479 1.49697e-06 7.53992e-11 2.718 ||| 0-4 ||| 85 668016 +a ||| it is the ||| 0.000392311 0.00055535 2.99394e-06 1.42458e-08 2.718 ||| 0-0 0-2 ||| 5098 668016 +a ||| it is there to ||| 0.05 0.229811 1.49697e-06 5.98466e-07 2.718 ||| 0-3 ||| 20 668016 +a ||| it is time for us to ask ||| 1 0.0683377 1.49697e-06 1.1873e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| it is time for us to ||| 0.0769231 0.0683377 1.49697e-06 8.63494e-12 2.718 ||| 0-3 ||| 13 668016 +a ||| it is time for us ||| 0.0588235 0.0683377 1.49697e-06 9.71766e-11 2.718 ||| 0-3 ||| 17 668016 +a ||| it is time for ||| 0.00239808 0.0683377 1.49697e-06 3.37161e-08 2.718 ||| 0-3 ||| 417 668016 +a ||| it is to a ||| 0.166667 0.229811 1.49697e-06 8.65412e-06 2.718 ||| 0-2 ||| 6 668016 +a ||| it is to adopt ||| 0.2 0.229811 1.49697e-06 2.03048e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| it is to be hoped ||| 0.00429185 0.229811 1.49697e-06 6.86429e-11 2.718 ||| 0-2 ||| 233 668016 +a ||| it is to be possible ||| 0.125 0.229811 1.49697e-06 2.83807e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| it is to be ||| 0.0117647 0.229811 7.48485e-06 3.53829e-06 2.718 ||| 0-2 ||| 425 668016 +a ||| it is to ||| 0.0252277 0.229811 5.38909e-05 0.000195239 2.718 ||| 0-2 ||| 1427 668016 +a ||| it is too ||| 0.00179211 0.0006453 1.49697e-06 1.26515e-08 2.718 ||| 0-0 ||| 558 668016 +a ||| it is under ||| 0.0149254 0.0384416 1.49697e-06 7.90538e-07 2.718 ||| 0-2 ||| 67 668016 +a ||| it is up to ||| 0.0350877 0.229811 4.49091e-05 6.65862e-07 2.718 ||| 0-3 ||| 855 668016 +a ||| it is with reference to ||| 0.2 0.229811 1.49697e-06 1.06493e-10 2.718 ||| 0-4 ||| 5 668016 +a ||| it is with ||| 0.0166113 0.0571592 7.48485e-06 9.30493e-06 2.718 ||| 0-2 ||| 301 668016 +a ||| it is ||| 0.000497404 0.0006453 0.000109279 9.29577e-06 2.718 ||| 0-0 ||| 146762 668016 +a ||| it joined ||| 0.0322581 0.194098 1.49697e-06 7.58098e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| it lead to ||| 0.25 0.229811 1.49697e-06 1.19918e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| it leads to ||| 0.00884956 0.229811 1.49697e-06 2.01835e-07 2.718 ||| 0-2 ||| 113 668016 +a ||| it left something to be desired in ||| 1 0.0587624 1.49697e-06 2.78846e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| it legal to hold ||| 0.166667 0.229811 1.49697e-06 1.40639e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| it legal to ||| 0.142857 0.229811 1.49697e-06 8.07341e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| it made ||| 0.00558659 0.00055155 1.49697e-06 6.49554e-09 2.718 ||| 0-0 0-1 ||| 179 668016 +a ||| it may be to ||| 0.1 0.229811 1.49697e-06 8.45819e-08 2.718 ||| 0-3 ||| 10 668016 +a ||| it may end in ||| 0.5 0.0587624 1.49697e-06 3.48293e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| it may seem to ||| 0.333333 0.229811 1.49697e-06 4.26576e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| it means ||| 0.000831255 0.0006453 1.49697e-06 1.87955e-07 2.718 ||| 0-0 ||| 1203 668016 +a ||| it meets ||| 0.00625 0.0660576 1.49697e-06 1.5258e-06 2.718 ||| 0-1 ||| 160 668016 +a ||| it mixed to ||| 1 0.229811 1.49697e-06 5.85571e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| it more closely to ||| 0.5 0.229811 1.49697e-06 1.25903e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| it must also contribute to ||| 0.333333 0.229811 1.49697e-06 1.8909e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| it must be in ||| 0.0454545 0.0587624 1.49697e-06 2.99283e-08 2.718 ||| 0-3 ||| 22 668016 +a ||| it must in ||| 0.1 0.0587624 1.49697e-06 1.65141e-06 2.718 ||| 0-2 ||| 10 668016 +a ||| it must ||| 0.0001665 0.00038205 1.49697e-06 5.13118e-09 2.718 ||| 0-0 0-1 ||| 6006 668016 +a ||| it necessary to make ||| 0.125 0.229811 1.49697e-06 2.78543e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| it necessary to ||| 0.0196078 0.229811 2.99394e-06 1.60285e-06 2.718 ||| 0-2 ||| 102 668016 +a ||| it needs to be provided ||| 1 0.229811 1.49697e-06 5.13118e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| it needs to be ||| 0.00591716 0.229811 2.99394e-06 2.23873e-08 2.718 ||| 0-2 ||| 338 668016 +a ||| it needs to ||| 0.0041958 0.229811 4.49091e-06 1.23531e-06 2.718 ||| 0-2 ||| 715 668016 +a ||| it normally is for ||| 1 0.0683377 1.49697e-06 2.44394e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| it not for ||| 0.0454545 0.0683377 1.49697e-06 2.23721e-06 2.718 ||| 0-2 ||| 22 668016 +a ||| it now ||| 0.00283286 0.00208 1.49697e-06 2.3705e-06 2.718 ||| 0-1 ||| 353 668016 +a ||| it of ||| 0.0266667 0.0188479 2.99394e-06 0.000526 2.718 ||| 0-1 ||| 75 668016 +a ||| it off ||| 0.030303 0.0893962 1.49697e-06 1.36024e-05 2.718 ||| 0-1 ||| 33 668016 +a ||| it on a ||| 0.0526316 0.0782999 1.49697e-06 2.99029e-05 2.718 ||| 0-1 ||| 19 668016 +a ||| it on the ||| 0.03 0.0782999 4.49091e-06 4.14159e-05 2.718 ||| 0-1 ||| 100 668016 +a ||| it on to ||| 0.277778 0.154056 7.48485e-06 0.000236319 2.718 ||| 0-1 0-2 ||| 18 668016 +a ||| it on ||| 0.042042 0.0782999 2.09576e-05 0.000674616 2.718 ||| 0-1 ||| 333 668016 +a ||| it onto ||| 0.125 0.207143 1.49697e-06 4.23596e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| it out in ||| 0.142857 0.0587624 1.49697e-06 4.09263e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| it out to ||| 0.333333 0.229811 1.49697e-06 2.38614e-05 2.718 ||| 0-2 ||| 3 668016 +a ||| it out ||| 0.0378788 0.0338115 7.48485e-06 1.21636e-06 2.718 ||| 0-0 0-1 ||| 132 668016 +a ||| it over to ||| 0.333333 0.229811 1.49697e-06 2.9995e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| it paid for ||| 0.333333 0.0683377 1.49697e-06 8.82013e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| it personally . ||| 0.333333 0.0397531 1.49697e-06 7.9182e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| it personally ||| 0.2 0.0397531 1.49697e-06 2.61413e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| it possible for ||| 0.0122951 0.0683377 4.49091e-06 5.25603e-07 2.718 ||| 0-2 ||| 244 668016 +a ||| it possible to ||| 0.0260116 0.229811 1.34727e-05 4.99667e-06 2.718 ||| 0-2 ||| 346 668016 +a ||| it possible – in ||| 1 0.0587624 1.49697e-06 3.36805e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| it provides ||| 0.00157978 0.0006453 1.49697e-06 2.12366e-08 2.718 ||| 0-0 ||| 633 668016 +a ||| it putting ||| 1 0.049485 1.49697e-06 3.58687e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| it reached ||| 0.0625 0.14487 1.49697e-06 2.18644e-05 2.718 ||| 0-1 ||| 16 668016 +a ||| it reads to ||| 1 0.229811 1.49697e-06 3.36392e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| it really does seem to ||| 1 0.229811 1.49697e-06 1.9345e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| it really too difficult to organise ||| 0.25 0.229811 1.49697e-06 5.3048e-18 2.718 ||| 0-4 ||| 4 668016 +a ||| it really too difficult to ||| 0.25 0.229811 1.49697e-06 5.10077e-13 2.718 ||| 0-4 ||| 4 668016 +a ||| it reflects ||| 0.00526316 0.0017857 1.49697e-06 4.80146e-08 2.718 ||| 0-1 ||| 190 668016 +a ||| it remains up to ||| 0.5 0.229811 1.49697e-06 1.89511e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| it renders to ||| 0.333333 0.229811 1.49697e-06 2.49179e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| it represents a cause for ||| 0.5 0.0683377 1.49697e-06 1.94724e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| it responds to ||| 0.0322581 0.229811 1.49697e-06 1.55737e-08 2.718 ||| 0-2 ||| 31 668016 +a ||| it results in ||| 0.0333333 0.0587624 1.49697e-06 8.26987e-08 2.718 ||| 0-2 ||| 30 668016 +a ||| it said on numerous ||| 1 0.0782999 1.49697e-06 4.88347e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| it said on ||| 0.5 0.0782999 1.49697e-06 2.7747e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| it satisfy ||| 1 0.116324 1.49697e-06 1.93126e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| it seeks to ||| 0.00549451 0.229811 1.49697e-06 1.61344e-07 2.718 ||| 0-2 ||| 182 668016 +a ||| it seems to ||| 0.00611154 0.229811 1.19758e-05 7.48784e-07 2.718 ||| 0-2 ||| 1309 668016 +a ||| it set about ||| 1 0.0526361 1.49697e-06 5.23709e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| it should , in ||| 0.1 0.0587624 1.49697e-06 5.64593e-07 2.718 ||| 0-3 ||| 10 668016 +a ||| it should also be pointed out ||| 0.0285714 0.0669777 1.49697e-06 1.36302e-15 2.718 ||| 0-5 ||| 35 668016 +a ||| it should and must also go for ||| 1 0.0683377 1.49697e-06 1.65965e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| it should be at ||| 0.0769231 0.204175 1.49697e-06 4.86038e-08 2.718 ||| 0-3 ||| 13 668016 +a ||| it should be financially beneficial for ||| 1 0.0683377 1.49697e-06 2.73629e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| it should be implemented in its entirety ||| 1 0.0587624 1.49697e-06 8.90807e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| it should be implemented in its ||| 1 0.0587624 1.49697e-06 1.07326e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| it should be implemented in ||| 0.333333 0.0587624 1.49697e-06 7.53324e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| it should be noted in ||| 0.2 0.0587624 1.49697e-06 2.62548e-12 2.718 ||| 0-4 ||| 5 668016 +a ||| it should be resolved at ||| 1 0.204175 1.49697e-06 1.25884e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| it should not apply to ||| 1 0.229811 1.49697e-06 1.3561e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| it simply was not possible to ||| 0.333333 0.229811 1.49697e-06 1.1849e-14 2.718 ||| 0-5 ||| 3 668016 +a ||| it so in view ||| 0.5 0.0587624 1.49697e-06 2.19058e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| it so in ||| 0.25 0.0587624 1.49697e-06 2.42508e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| it sounds to me ||| 0.5 0.229811 1.49697e-06 1.61283e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| it sounds to ||| 1 0.229811 1.49697e-06 2.67868e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| it stands to reason ||| 0.0384615 0.229811 1.49697e-06 8.02849e-11 2.718 ||| 0-2 ||| 26 668016 +a ||| it stands to ||| 0.0769231 0.229811 1.49697e-06 3.43245e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| it stop us from ||| 1 0.0435582 1.49697e-06 2.5496e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| it suit ||| 1 0.134642 1.49697e-06 1.55781e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| it take to induce ||| 1 0.229811 1.49697e-06 4.71385e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| it take to ||| 0.2 0.229811 1.49697e-06 1.00295e-05 2.718 ||| 0-2 ||| 5 668016 +a ||| it takes two to ||| 0.0909091 0.229811 1.49697e-06 1.90266e-10 2.718 ||| 0-3 ||| 11 668016 +a ||| it the ||| 0.0025974 0.0006453 1.49697e-06 1.82088e-05 2.718 ||| 0-0 ||| 385 668016 +a ||| it through in ||| 1 0.144735 1.49697e-06 8.49329e-06 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| it through to ||| 0.0666667 0.23026 1.49697e-06 4.95188e-05 2.718 ||| 0-1 0-2 ||| 15 668016 +a ||| it to a niche position ||| 0.5 0.229811 1.49697e-06 1.00021e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| it to a niche ||| 0.5 0.229811 1.49697e-06 3.0374e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| it to a ||| 0.117647 0.229811 5.98788e-06 0.000276127 2.718 ||| 0-1 ||| 34 668016 +a ||| it to accept ||| 0.333333 0.229811 1.49697e-06 6.74653e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| it to be ||| 0.00490798 0.229811 5.98788e-06 0.000112896 2.718 ||| 0-1 ||| 815 668016 +a ||| it to deal with ||| 0.0909091 0.0571592 1.49697e-06 1.12015e-08 2.718 ||| 0-3 ||| 11 668016 +a ||| it to get wisdom ||| 1 0.229811 1.49697e-06 1.57965e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| it to get ||| 0.0833333 0.229811 1.49697e-06 2.72353e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| it to include a ||| 0.5 0.229811 1.49697e-06 3.65592e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| it to include ||| 0.0909091 0.229811 1.49697e-06 8.24784e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| it to introduce ||| 0.333333 0.229811 1.49697e-06 3.18327e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| it to join ||| 0.0769231 0.207917 1.49697e-06 2.15916e-06 2.718 ||| 0-2 ||| 13 668016 +a ||| it to meet members ||| 1 0.229811 1.49697e-06 1.11732e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| it to meet ||| 0.2 0.229811 1.49697e-06 7.57505e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| it to the ||| 0.0218182 0.229811 8.98182e-06 0.000382439 2.718 ||| 0-1 ||| 275 668016 +a ||| it to ||| 0.125422 0.229811 0.0004446 0.00622948 2.718 ||| 0-1 ||| 2368 668016 +a ||| it together ||| 0.025641 0.0160315 1.49697e-06 4.82103e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| it too must allow for ||| 1 0.0683377 1.49697e-06 3.34407e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| it treats ||| 0.0192308 0.306122 1.49697e-06 1.46e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| it until ||| 0.03125 0.0268909 1.49697e-06 4.07413e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| it up for ||| 0.25 0.0683377 1.49697e-06 2.23485e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| it up once ||| 0.5 0.0195077 1.49697e-06 8.9331e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| it up to ||| 0.0625 0.229811 2.99394e-06 2.12457e-05 2.718 ||| 0-2 ||| 32 668016 +a ||| it up ||| 0.0138889 0.0195077 2.99394e-06 2.18307e-05 2.718 ||| 0-1 ||| 144 668016 +a ||| it upon themselves to ||| 0.333333 0.229811 1.49697e-06 6.34939e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| it urges ||| 0.0277778 0.403683 1.49697e-06 4.62541e-06 2.718 ||| 0-1 ||| 36 668016 +a ||| it uses to ||| 0.125 0.229811 1.49697e-06 1.14622e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| it was against ||| 0.0666667 0.05146 1.49697e-06 1.44831e-07 2.718 ||| 0-2 ||| 15 668016 +a ||| it was another honourable Member of this ||| 1 0.0188479 1.49697e-06 6.90559e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| it was another honourable Member of ||| 1 0.0188479 1.49697e-06 1.06875e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| it was at ||| 0.0655738 0.204175 5.98788e-06 1.89627e-06 2.718 ||| 0-2 ||| 61 668016 +a ||| it was because ||| 0.025 0.0052046 2.99394e-06 1.80014e-08 2.718 ||| 0-2 ||| 80 668016 +a ||| it was for ||| 0.0114943 0.0683377 1.49697e-06 2.05301e-06 2.718 ||| 0-2 ||| 87 668016 +a ||| it was in ||| 0.0031746 0.0587624 1.49697e-06 3.34748e-06 2.718 ||| 0-2 ||| 315 668016 +a ||| it was meant to ||| 0.0666667 0.229811 1.49697e-06 1.5516e-09 2.718 ||| 0-3 ||| 15 668016 +a ||| it was on ||| 0.015873 0.0782999 1.49697e-06 2.11357e-06 2.718 ||| 0-2 ||| 63 668016 +a ||| it was possible for ||| 0.0526316 0.0683377 1.49697e-06 1.64672e-09 2.718 ||| 0-3 ||| 19 668016 +a ||| it was their ||| 0.1 0.0004527 1.49697e-06 2.28988e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| it was then given by ||| 0.5 0.0252938 1.49697e-06 1.71138e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| it was then given ||| 0.5 0.0252938 1.49697e-06 3.25971e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| it was then ||| 0.0172414 0.0252938 1.49697e-06 4.74968e-08 2.718 ||| 0-2 ||| 58 668016 +a ||| it was with ||| 0.0107527 0.0571592 1.49697e-06 9.30164e-07 2.718 ||| 0-2 ||| 93 668016 +a ||| it was ||| 0.000361193 0.0006453 7.48485e-06 9.29248e-07 2.718 ||| 0-0 ||| 13843 668016 +a ||| it went much further ||| 1 0.0003879 1.49697e-06 1.13698e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| it were , on ||| 0.142857 0.0782999 1.49697e-06 1.4412e-07 2.718 ||| 0-3 ||| 7 668016 +a ||| it were , to ||| 0.214286 0.229811 4.49091e-06 1.33082e-06 2.718 ||| 0-3 ||| 14 668016 +a ||| it were to ||| 0.02 0.229811 1.49697e-06 1.11595e-05 2.718 ||| 0-2 ||| 50 668016 +a ||| it were up to ||| 0.0833333 0.229811 1.49697e-06 3.80595e-08 2.718 ||| 0-3 ||| 12 668016 +a ||| it will , at ||| 0.333333 0.204175 1.49697e-06 6.24443e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| it will act to ensure ||| 1 0.229811 1.49697e-06 4.1057e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| it will act to ||| 0.5 0.229811 1.49697e-06 9.15634e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| it will affect ||| 0.0540541 0.330659 2.99394e-06 2.43077e-07 2.718 ||| 0-2 ||| 37 668016 +a ||| it will be available to ||| 0.5 0.229811 1.49697e-06 3.10685e-10 2.718 ||| 0-4 ||| 2 668016 +a ||| it will be for ||| 0.0222222 0.0683377 1.49697e-06 1.02739e-07 2.718 ||| 0-3 ||| 45 668016 +a ||| it will be only ||| 0.25 0.0561595 1.49697e-06 5.05229e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| it will be possible for ||| 0.0425532 0.0683377 2.99394e-06 8.24067e-11 2.718 ||| 0-4 ||| 47 668016 +a ||| it will be possible to bring ||| 0.2 0.229811 1.49697e-06 2.43873e-13 2.718 ||| 0-4 ||| 5 668016 +a ||| it will be possible to ||| 0.0034965 0.229811 1.49697e-06 7.83402e-10 2.718 ||| 0-4 ||| 286 668016 +a ||| it will be up to ||| 0.015873 0.229811 1.49697e-06 3.331e-09 2.718 ||| 0-4 ||| 63 668016 +a ||| it will be ||| 0.000921659 0.0561595 5.98788e-06 4.53894e-06 2.718 ||| 0-1 ||| 4340 668016 +a ||| it will come as ||| 0.166667 0.0243476 2.99394e-06 1.14621e-09 2.718 ||| 0-3 ||| 12 668016 +a ||| it will cover ||| 0.0454545 0.0561595 1.49697e-06 1.95604e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| it will end up in ||| 0.25 0.0587624 1.49697e-06 1.37164e-11 2.718 ||| 0-4 ||| 4 668016 +a ||| it will end – to ||| 0.25 0.229811 1.49697e-06 9.21531e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| it will eventually apply to ||| 1 0.229811 1.49697e-06 2.14817e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| it will fall to ||| 0.111111 0.229811 1.49697e-06 5.15751e-09 2.718 ||| 0-3 ||| 9 668016 +a ||| it will have the possibility to ||| 1 0.229811 1.49697e-06 3.38717e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| it will help us to ||| 0.0666667 0.229811 1.49697e-06 2.96212e-11 2.718 ||| 0-4 ||| 15 668016 +a ||| it will help ||| 0.00469484 0.259976 1.49697e-06 1.01189e-06 2.718 ||| 0-2 ||| 213 668016 +a ||| it will not take as long as ||| 1 0.0243476 1.49697e-06 2.56092e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| it will not take as long ||| 1 0.0243476 1.49697e-06 2.50962e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| it will not take as ||| 1 0.0243476 1.49697e-06 7.41834e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| it will put ||| 0.0416667 0.0561595 1.49697e-06 2.7615e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| it will take to ||| 0.1 0.229811 1.49697e-06 8.67669e-08 2.718 ||| 0-3 ||| 10 668016 +a ||| it will take ||| 0.00294118 0.0561595 1.49697e-06 4.0323e-07 2.718 ||| 0-1 ||| 340 668016 +a ||| it will ||| 0.00576369 0.0561595 3.89212e-05 0.000250453 2.718 ||| 0-1 ||| 4511 668016 +a ||| it wishes to implement ||| 0.25 0.229811 1.49697e-06 1.83883e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| it wishes to ||| 0.0112994 0.229811 2.99394e-06 3.2954e-07 2.718 ||| 0-2 ||| 177 668016 +a ||| it with the ||| 0.0128205 0.0571592 1.49697e-06 1.82268e-05 2.718 ||| 0-1 ||| 78 668016 +a ||| it with ||| 0.0249433 0.0571592 1.64667e-05 0.000296892 2.718 ||| 0-1 ||| 441 668016 +a ||| it would already have to be known ||| 0.5 0.229811 1.49697e-06 4.04024e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| it would already have to be ||| 0.5 0.229811 1.49697e-06 3.66961e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| it would already have to ||| 0.5 0.229811 1.49697e-06 2.02485e-10 2.718 ||| 0-4 ||| 2 668016 +a ||| it would be desirable to ||| 0.0294118 0.229811 1.49697e-06 8.34819e-12 2.718 ||| 0-4 ||| 34 668016 +a ||| it would be in ||| 0.0208333 0.0587624 1.49697e-06 1.13639e-07 2.718 ||| 0-3 ||| 48 668016 +a ||| it would be necessary in ||| 1 0.0587624 1.49697e-06 2.92393e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| it would be wise to consider ||| 0.5 0.229811 1.49697e-06 6.85181e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| it would be wise to ||| 0.0454545 0.229811 1.49697e-06 4.3066e-12 2.718 ||| 0-4 ||| 22 668016 +a ||| it would benefit ||| 0.0625 0.0166376 1.49697e-06 4.81466e-10 2.718 ||| 0-0 0-2 ||| 16 668016 +a ||| it would do to ||| 0.333333 0.229811 1.49697e-06 1.25591e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| it would for ||| 0.166667 0.0683377 1.49697e-06 3.84567e-06 2.718 ||| 0-2 ||| 6 668016 +a ||| it would happen on ||| 1 0.0782999 1.49697e-06 4.30356e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| it would have been possible for ||| 1 0.0683377 1.49697e-06 1.23187e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| it would have led to ||| 0.166667 0.229811 1.49697e-06 4.01384e-11 2.718 ||| 0-4 ||| 6 668016 +a ||| it would have to be ||| 0.0666667 0.229811 1.49697e-06 7.92402e-09 2.718 ||| 0-3 ||| 15 668016 +a ||| it would have to ||| 0.0285714 0.229811 1.49697e-06 4.37238e-07 2.718 ||| 0-3 ||| 35 668016 +a ||| it would in ||| 0.0555556 0.0587624 1.49697e-06 6.27047e-06 2.718 ||| 0-2 ||| 18 668016 +a ||| it would not be in ||| 0.2 0.0587624 1.49697e-06 3.87975e-10 2.718 ||| 0-4 ||| 5 668016 +a ||| it would penalise a ||| 1 0.0006453 1.49697e-06 1.38881e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| it would penalise ||| 0.333333 0.0006453 1.49697e-06 3.13318e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| it would seem to ||| 0.047619 0.229811 1.49697e-06 3.34149e-09 2.718 ||| 0-3 ||| 21 668016 +a ||| it would then be for the ||| 0.333333 0.0683377 1.49697e-06 6.89038e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| it would then be for ||| 0.2 0.0683377 1.49697e-06 1.12236e-10 2.718 ||| 0-4 ||| 5 668016 +a ||| it would to ||| 1 0.229811 2.99394e-06 3.6559e-05 2.718 ||| 0-2 ||| 2 668016 +a ||| it would ||| 0.000719166 0.0006453 2.99394e-06 1.74066e-06 2.718 ||| 0-0 ||| 2781 668016 +a ||| it ||| 0.00110991 0.0006453 0.000257479 0.0002966 2.718 ||| 0-0 ||| 154967 668016 +a ||| item , to the extent ||| 1 0.229811 1.49697e-06 1.86326e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| item , to the ||| 1 0.229811 1.49697e-06 9.69437e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| item , to ||| 1 0.229811 1.49697e-06 1.5791e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| item from ||| 0.166667 0.0435582 1.49697e-06 2.72115e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| item on the agenda , ||| 0.0416667 0.0782999 1.49697e-06 1.04249e-12 2.718 ||| 0-1 ||| 24 668016 +a ||| item on the agenda ||| 0.00540541 0.0782999 1.49697e-06 8.74175e-12 2.718 ||| 0-1 ||| 185 668016 +a ||| item on the ||| 0.00483092 0.0782999 1.49697e-06 8.80337e-08 2.718 ||| 0-1 ||| 207 668016 +a ||| item on ||| 0.00518135 0.0782999 1.49697e-06 1.43397e-06 2.718 ||| 0-1 ||| 193 668016 +a ||| items on ||| 0.0224719 0.0782999 2.99394e-06 1.02426e-06 2.718 ||| 0-1 ||| 89 668016 +a ||| its White Paper on a ||| 1 0.0782999 1.49697e-06 2.05261e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| its White Paper on ||| 0.0285714 0.0782999 1.49697e-06 4.63073e-15 2.718 ||| 0-3 ||| 35 668016 +a ||| its attention on ||| 0.0277778 0.0782999 1.49697e-06 1.41224e-08 2.718 ||| 0-2 ||| 36 668016 +a ||| its back on using ||| 1 0.0782999 1.49697e-06 2.82454e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| its back on ||| 0.0172414 0.0782999 1.49697e-06 3.63519e-08 2.718 ||| 0-2 ||| 58 668016 +a ||| its behalf on ||| 0.5 0.0782999 1.49697e-06 1.72139e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| its comments to ||| 0.5 0.229811 1.49697e-06 2.49537e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| its efforts in ||| 0.0144928 0.0587624 1.49697e-06 1.04089e-08 2.718 ||| 0-2 ||| 69 668016 +a ||| its efforts into ||| 0.0416667 0.107578 1.49697e-06 1.05233e-09 2.718 ||| 0-2 ||| 24 668016 +a ||| its face ||| 0.0909091 0.124218 2.99394e-06 1.44607e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| its faith in ||| 0.166667 0.0587624 1.49697e-06 1.26687e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| its finger on ||| 0.111111 0.0782999 1.49697e-06 9.51225e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| its hands on ||| 0.333333 0.0782999 2.99394e-06 5.44792e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| its head in ||| 0.0740741 0.0587624 2.99394e-06 6.18885e-09 2.718 ||| 0-2 ||| 27 668016 +a ||| its hopes on ||| 0.166667 0.0782999 1.49697e-06 5.45873e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| its limit with ||| 1 0.0571592 1.49697e-06 1.15598e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| its message across by ||| 1 0.0414362 1.49697e-06 2.77974e-13 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| its nose at ||| 0.2 0.204175 1.49697e-06 2.9579e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| its own right to ||| 0.1 0.229811 1.49697e-06 5.45638e-10 2.718 ||| 0-3 ||| 10 668016 +a ||| its part in ||| 0.00746269 0.0587624 1.49697e-06 1.02052e-07 2.718 ||| 0-2 ||| 134 668016 +a ||| its place in ||| 0.015873 0.0587624 1.49697e-06 1.28827e-07 2.718 ||| 0-2 ||| 63 668016 +a ||| its policy of sitting squarely on ||| 1 0.0782999 1.49697e-06 2.57266e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| its praise for ||| 0.5 0.0683377 1.49697e-06 7.34973e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| its preference for ||| 0.166667 0.0683377 1.49697e-06 3.98985e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| its presence felt in ||| 0.0769231 0.0587624 1.49697e-06 1.88507e-13 2.718 ||| 0-3 ||| 13 668016 +a ||| its prices to ||| 1 0.229811 1.49697e-06 1.58207e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| its progress towards ||| 0.0526316 0.155507 1.49697e-06 6.32811e-10 2.718 ||| 0-2 ||| 19 668016 +a ||| its relations with ||| 0.00292398 0.0571592 1.49697e-06 1.29155e-09 2.718 ||| 0-2 ||| 342 668016 +a ||| its reliance on ||| 0.142857 0.0782999 1.49697e-06 1.94569e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| its requirements of ||| 1 0.0188479 1.49697e-06 2.04803e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| its resources to ||| 0.0555556 0.229811 1.49697e-06 3.57337e-08 2.718 ||| 0-2 ||| 18 668016 +a ||| its role to ||| 0.0357143 0.229811 1.49697e-06 1.10795e-07 2.718 ||| 0-2 ||| 28 668016 +a ||| its seat in ||| 0.0769231 0.0587624 1.49697e-06 1.38671e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| its seems to ||| 0.5 0.229811 1.49697e-06 5.99888e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| its size to ||| 1 0.229811 1.49697e-06 1.86654e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| its usefulness to ||| 0.25 0.229811 1.49697e-06 8.98334e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| its voice to ||| 0.142857 0.229811 1.49697e-06 2.17097e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| its way at ||| 1 0.204175 1.49697e-06 1.04526e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| its way into ||| 0.0465116 0.107578 2.99394e-06 1.86547e-08 2.718 ||| 0-2 ||| 43 668016 +a ||| its way to come to such a ||| 1 0.229811 1.49697e-06 7.44541e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| its way to come to such ||| 1 0.229811 1.49697e-06 1.6797e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| its way to come to ||| 1 0.229811 1.49697e-06 8.11881e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| its way to ||| 0.0576923 0.229811 4.49091e-06 1.07581e-06 2.718 ||| 0-2 ||| 52 668016 +a ||| its will on ||| 0.111111 0.0782999 1.49697e-06 4.6757e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| its work on ||| 0.0107527 0.0782999 1.49697e-06 3.42117e-08 2.718 ||| 0-2 ||| 93 668016 +a ||| its ||| 6.6727e-05 0.0001636 1.04788e-05 1.55e-05 2.718 ||| 0-0 ||| 104905 668016 +a ||| itself as ||| 0.00699301 0.0243476 1.49697e-06 5.95383e-06 2.718 ||| 0-1 ||| 143 668016 +a ||| itself at ||| 0.0909091 0.204175 1.49697e-06 2.30998e-05 2.718 ||| 0-1 ||| 11 668016 +a ||| itself based upon ||| 0.5 0.19056 1.49697e-06 3.13908e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| itself by ||| 0.0454545 0.0337966 1.49697e-06 5.584e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| itself conducted ||| 0.166667 0.154068 1.49697e-06 2.65168e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| itself followed on ||| 1 0.0782999 1.49697e-06 1.84348e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| itself in a big ||| 0.5 0.0587624 1.49697e-06 8.51341e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| itself in a ||| 0.0434783 0.0587624 1.49697e-06 1.80752e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| itself in the ||| 0.027027 0.0587624 1.49697e-06 2.50343e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| itself in ||| 0.0555556 0.0587624 1.49697e-05 4.0778e-05 2.718 ||| 0-1 ||| 180 668016 +a ||| itself into ||| 0.0454545 0.107578 1.49697e-06 4.12263e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| itself of ||| 0.0555556 0.0188479 2.99394e-06 2.00749e-05 2.718 ||| 0-1 ||| 36 668016 +a ||| itself to be ||| 0.028169 0.229811 2.99394e-06 4.30871e-06 2.718 ||| 0-1 ||| 71 668016 +a ||| itself to do ||| 0.333333 0.229811 1.49697e-06 8.16742e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| itself to have been ||| 0.333333 0.229811 1.49697e-06 9.49481e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| itself to have ||| 0.111111 0.229811 1.49697e-06 2.84344e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| itself to leave for ||| 1 0.0683377 1.49697e-06 2.11115e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| itself to proceed to other votes . ||| 1 0.229811 1.49697e-06 9.62966e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| itself to proceed to other votes ||| 1 0.229811 1.49697e-06 3.17915e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| itself to proceed to other ||| 1 0.229811 1.49697e-06 8.758e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| itself to proceed to ||| 1 0.229811 1.49697e-06 6.76032e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| itself to proceed ||| 1 0.229811 1.49697e-06 7.60799e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| itself to ||| 0.109375 0.229811 5.2394e-05 0.00023775 2.718 ||| 0-1 ||| 320 668016 +a ||| itself with ||| 0.0210526 0.0571592 2.99394e-06 1.1331e-05 2.718 ||| 0-1 ||| 95 668016 +a ||| itself worthy of ||| 0.5 0.0188479 1.49697e-06 3.97484e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| job is to sit around ||| 1 0.229811 1.49697e-06 4.31721e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| job is to sit ||| 1 0.229811 1.49697e-06 3.24115e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| job is to ||| 0.025 0.229811 1.49697e-06 8.57447e-07 2.718 ||| 0-2 ||| 40 668016 +a ||| job of ||| 0.0112676 0.0188479 5.98788e-06 2.31008e-06 2.718 ||| 0-1 ||| 355 668016 +a ||| job tackling ||| 1 0.0514233 1.49697e-06 7.98182e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| job to ||| 0.0295858 0.229811 7.48485e-06 2.73586e-05 2.718 ||| 0-1 ||| 169 668016 +a ||| jobs in ||| 0.00281162 0.0587624 4.49091e-06 3.11227e-06 2.718 ||| 0-1 ||| 1067 668016 +a ||| jobs of ||| 0.0114943 0.0188479 1.49697e-06 1.53217e-06 2.718 ||| 0-1 ||| 87 668016 +a ||| jobs to ||| 0.010989 0.229811 1.49697e-06 1.81456e-05 2.718 ||| 0-1 ||| 91 668016 +a ||| join a ||| 0.025 0.207917 1.49697e-06 6.05668e-05 2.718 ||| 0-0 ||| 40 668016 +a ||| join everyone else in ||| 1 0.207917 1.49697e-06 2.32263e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| join everyone else ||| 1 0.207917 1.49697e-06 1.08511e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| join everyone ||| 1 0.207917 1.49697e-06 9.19587e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| join forces with ||| 0.0208333 0.207917 1.49697e-06 4.62211e-10 2.718 ||| 0-0 ||| 48 668016 +a ||| join forces ||| 0.00469484 0.207917 1.49697e-06 7.22826e-08 2.718 ||| 0-0 ||| 213 668016 +a ||| join in ||| 0.00824176 0.13334 4.49091e-06 8.20967e-05 2.718 ||| 0-0 0-1 ||| 364 668016 +a ||| join me in welcoming ||| 0.333333 0.0587624 1.49697e-06 6.77209e-15 2.718 ||| 0-2 ||| 3 668016 +a ||| join me in ||| 0.0204082 0.0587624 1.49697e-06 1.69302e-09 2.718 ||| 0-2 ||| 49 668016 +a ||| join them ||| 0.0454545 0.207917 1.49697e-06 3.66523e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| join together with ||| 0.111111 0.207917 1.49697e-06 5.24771e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| join together ||| 0.0120482 0.207917 1.49697e-06 8.2066e-07 2.718 ||| 0-0 ||| 83 668016 +a ||| join with us in ||| 0.047619 0.0587624 1.49697e-06 5.18232e-11 2.718 ||| 0-3 ||| 21 668016 +a ||| join with ||| 0.00328947 0.132538 1.49697e-06 2.28122e-05 2.718 ||| 0-0 0-1 ||| 304 668016 +a ||| join ||| 0.00689485 0.207917 4.19152e-05 0.0013664 2.718 ||| 0-0 ||| 4061 668016 +a ||| joined by a ||| 0.142857 0.194098 1.49697e-06 9.92064e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| joined by ||| 0.02 0.194098 1.49697e-06 2.23812e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| joined forces ||| 0.0232558 0.194098 1.49697e-06 2.25513e-08 2.718 ||| 0-0 ||| 43 668016 +a ||| joined the ||| 0.00223214 0.194098 1.49697e-06 2.61713e-05 2.718 ||| 0-0 ||| 448 668016 +a ||| joined us at ||| 0.5 0.204175 1.49697e-06 1.23602e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| joined ||| 0.0100604 0.194098 1.49697e-05 0.0004263 2.718 ||| 0-0 ||| 994 668016 +a ||| joining in ||| 0.0238095 0.15519 1.49697e-06 3.19699e-05 2.718 ||| 0-0 0-1 ||| 42 668016 +a ||| joining you ||| 0.142857 0.251619 1.49697e-06 1.71799e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| joining ||| 0.013986 0.251619 2.69455e-05 0.0005321 2.718 ||| 0-0 ||| 1287 668016 +a ||| joint with ||| 1 0.0571592 1.49697e-06 1.08685e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| jointly by ||| 0.00735294 0.0337966 1.49697e-06 1.89232e-07 2.718 ||| 0-1 ||| 136 668016 +a ||| jointly to ||| 0.0238095 0.229811 1.49697e-06 8.05694e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| jointly with it , to ||| 1 0.229811 1.49697e-06 1.0926e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| journey at ||| 0.333333 0.204175 1.49697e-06 3.43758e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| journey for ||| 0.142857 0.0683377 1.49697e-06 3.7217e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| journey on ||| 0.333333 0.0782999 1.49697e-06 3.8315e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| journey to ||| 0.0285714 0.229811 1.49697e-06 3.53805e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| judge to ||| 0.0714286 0.229811 1.49697e-06 4.55392e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| judged to ||| 0.0588235 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| judgement of ||| 0.0285714 0.0188479 1.49697e-06 4.58467e-07 2.718 ||| 0-1 ||| 35 668016 +a ||| judgement on ||| 0.0196078 0.0782999 1.49697e-06 5.88002e-07 2.718 ||| 0-1 ||| 51 668016 +a ||| judgement over ||| 0.666667 0.0682544 2.99394e-06 3.6005e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| judging ||| 0.00809717 0.296104 2.99394e-06 0.0001041 2.718 ||| 0-0 ||| 247 668016 +a ||| judgment on it ||| 0.166667 0.0782999 1.49697e-06 1.04566e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| judgment on ||| 0.0289855 0.0782999 2.99394e-06 5.88002e-07 2.718 ||| 0-1 ||| 69 668016 +a ||| judgment to ||| 0.0714286 0.229811 1.49697e-06 5.42967e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| jump in ||| 0.125 0.0587624 1.49697e-06 2.82388e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| jump on ||| 0.2 0.0782999 1.49697e-06 1.78297e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| jump to ||| 0.0526316 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| jumping off ||| 0.25 0.0893962 1.49697e-06 1.91225e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| juncture to ||| 0.142857 0.229811 1.49697e-06 3.39793e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| just a few examples of ||| 0.25 0.0188479 1.49697e-06 5.01669e-15 2.718 ||| 0-4 ||| 4 668016 +a ||| just a question of ||| 0.00625 0.0188479 1.49697e-06 1.36852e-09 2.718 ||| 0-3 ||| 160 668016 +a ||| just a ||| 0.00272975 0.001613 8.98182e-06 2.91221e-06 2.718 ||| 0-0 ||| 2198 668016 +a ||| just around ||| 0.0240964 0.0931303 2.99394e-06 1.14121e-06 2.718 ||| 0-1 ||| 83 668016 +a ||| just as much on ||| 0.25 0.0782999 1.49697e-06 4.90224e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| just as none of the challenges faced ||| 1 0.0188479 1.49697e-06 5.4795e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| just as none of the challenges ||| 1 0.0188479 1.49697e-06 8.65639e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| just as none of the ||| 1 0.0188479 1.49697e-06 4.62909e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| just as none of ||| 1 0.0188479 1.49697e-06 7.54024e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| just as the men entered the ||| 0.5 0.0243476 1.49697e-06 5.67328e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| just as the men entered ||| 0.5 0.0243476 1.49697e-06 9.2411e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| just as the men ||| 0.5 0.0243476 1.49697e-06 2.88784e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| just as the ||| 0.00409836 0.0243476 1.49697e-06 6.79493e-07 2.718 ||| 0-1 ||| 244 668016 +a ||| just as we were ||| 0.166667 0.0243476 1.49697e-06 2.25087e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| just as we ||| 0.003003 0.0243476 1.49697e-06 1.25649e-07 2.718 ||| 0-1 ||| 333 668016 +a ||| just as well to ||| 1 0.229811 1.49697e-06 7.15121e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| just as ||| 0.00147059 0.0243476 8.98182e-06 1.10681e-05 2.718 ||| 0-1 ||| 4080 668016 +a ||| just because ||| 0.00171233 0.0052046 1.49697e-06 4.07655e-07 2.718 ||| 0-1 ||| 584 668016 +a ||| just been deported ||| 1 0.0994152 1.49697e-06 6.53026e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| just by ||| 0.037594 0.0337966 7.48485e-06 1.03806e-05 2.718 ||| 0-1 ||| 133 668016 +a ||| just for the ||| 0.00518135 0.0683377 1.49697e-06 2.85421e-06 2.718 ||| 0-1 ||| 193 668016 +a ||| just for ||| 0.0014556 0.0683377 1.49697e-06 4.64918e-05 2.718 ||| 0-1 ||| 687 668016 +a ||| just give ||| 0.05 0.0241455 1.49697e-06 7.09454e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| just giving ||| 0.166667 0.136521 1.49697e-06 1.27255e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| just have to ||| 0.0465116 0.229811 2.99394e-06 5.28594e-06 2.718 ||| 0-2 ||| 43 668016 +a ||| just hold ||| 0.333333 0.0024406 1.49697e-06 1.2617e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| just how much is at ||| 0.5 0.204175 1.49697e-06 4.84142e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| just in ||| 0.0026455 0.0587624 2.99394e-06 7.58061e-05 2.718 ||| 0-1 ||| 756 668016 +a ||| just like to ||| 0.0103093 0.229811 1.49697e-06 7.84904e-07 2.718 ||| 0-2 ||| 97 668016 +a ||| just meet with the approval ||| 1 0.0571592 1.49697e-06 4.70176e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| just meet with the ||| 1 0.0571592 1.49697e-06 1.57249e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| just meet with ||| 1 0.0571592 1.49697e-06 2.56141e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| just pay lip-service to ||| 0.142857 0.229811 1.49697e-06 1.83544e-13 2.718 ||| 0-3 ||| 7 668016 +a ||| just to people we know ||| 0.166667 0.229811 1.49697e-06 1.13942e-12 2.718 ||| 0-1 ||| 6 668016 +a ||| just to people we ||| 0.166667 0.229811 1.49697e-06 4.41635e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| just to people ||| 0.125 0.229811 1.49697e-06 3.89027e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| just to ||| 0.0185387 0.229811 2.54485e-05 0.000441976 2.718 ||| 0-1 ||| 917 668016 +a ||| just travel , but ||| 1 0.0003961 1.49697e-06 3.27033e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| just trying to ||| 0.0909091 0.229811 1.49697e-06 5.09156e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| just upon ||| 0.142857 0.19056 1.49697e-06 2.48744e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| just watching on meekly ||| 0.25 0.0782999 1.49697e-06 3.61847e-16 2.718 ||| 0-2 ||| 4 668016 +a ||| just watching on ||| 0.2 0.0782999 1.49697e-06 5.16924e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| just ||| 0.00149223 0.001613 6.43697e-05 6.57e-05 2.718 ||| 0-0 ||| 28816 668016 +a ||| justice in ||| 0.00291545 0.0587624 1.49697e-06 2.39729e-06 2.718 ||| 0-1 ||| 343 668016 +a ||| justice on ||| 0.04 0.0782999 1.49697e-06 1.51363e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| justice to ||| 0.010453 0.229811 4.49091e-06 1.3977e-05 2.718 ||| 0-1 ||| 287 668016 +a ||| justifiably be demanded . in ||| 1 0.0587624 1.49697e-06 6.53041e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| justifications to ||| 0.5 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| justify disregard for ||| 0.25 0.0683377 1.49697e-06 5.79037e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| keen on ||| 0.00980392 0.0782999 1.49697e-06 9.97706e-07 2.718 ||| 0-1 ||| 102 668016 +a ||| keen to admit ||| 0.5 0.229811 1.49697e-06 1.98999e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| keen to get ||| 0.1 0.229811 1.49697e-06 4.02789e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| keen to support ||| 0.0769231 0.229811 1.49697e-06 3.1499e-09 2.718 ||| 0-1 ||| 13 668016 +a ||| keen to ||| 0.012 0.229811 8.98182e-06 9.21293e-06 2.718 ||| 0-1 ||| 500 668016 +a ||| keen we are to ||| 1 0.229811 1.49697e-06 1.58688e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| keep before ||| 0.5 0.0203282 1.49697e-06 8.26207e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| keep demanding for ||| 0.5 0.0683377 1.49697e-06 7.86516e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| keep hearing about ||| 0.142857 0.0526361 1.49697e-06 2.06487e-11 2.718 ||| 0-2 ||| 7 668016 +a ||| keep in ||| 0.00729927 0.0587624 1.49697e-06 9.36085e-06 2.718 ||| 0-1 ||| 137 668016 +a ||| keep myself free in ||| 1 0.0587624 1.49697e-06 1.69724e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| keep on ||| 0.00632911 0.0782999 1.49697e-06 5.91037e-06 2.718 ||| 0-1 ||| 158 668016 +a ||| keep our eyes on ||| 0.25 0.0782999 1.49697e-06 4.75306e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| keep pace with ||| 0.0379747 0.0571592 4.49091e-06 5.04613e-11 2.718 ||| 0-2 ||| 79 668016 +a ||| keep tagging along with ||| 1 0.0571592 1.49697e-06 1.81557e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| keep to the ||| 0.00510204 0.229811 1.49697e-06 3.35058e-06 2.718 ||| 0-1 ||| 196 668016 +a ||| keep to ||| 0.00265957 0.229811 1.49697e-06 5.4577e-05 2.718 ||| 0-1 ||| 376 668016 +a ||| keep ||| 0.000190223 0.0001311 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 5257 668016 +a ||| keeping others out of ||| 0.5 0.0188479 1.49697e-06 6.46435e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| keeping their number down to ||| 0.5 0.229811 1.49697e-06 8.23282e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| keeping with ||| 0.0019685 0.0571592 1.49697e-06 9.80002e-07 2.718 ||| 0-1 ||| 508 668016 +a ||| keeps to the framework of ||| 0.5 0.0188479 1.49697e-06 1.72957e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| keeps ||| 0.00282486 0.0057803 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 354 668016 +a ||| kept by ||| 0.0322581 0.0337966 1.49697e-06 5.86621e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| kept in business ||| 1 0.0587624 1.49697e-06 5.35057e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| kept in check ||| 0.0555556 0.0587624 1.49697e-06 1.31087e-10 2.718 ||| 0-1 ||| 18 668016 +a ||| kept in the ||| 0.0714286 0.0587624 1.49697e-06 2.62995e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| kept in ||| 0.0310078 0.0587624 5.98788e-06 4.28388e-06 2.718 ||| 0-1 ||| 129 668016 +a ||| kept open for ||| 0.5 0.0683377 1.49697e-06 4.2352e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| kept to ||| 0.00909091 0.229811 1.49697e-06 2.49765e-05 2.718 ||| 0-1 ||| 110 668016 +a ||| kept ||| 0.00066357 0.000399 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1507 668016 +a ||| key for good ||| 0.5 0.0683377 1.49697e-06 1.38927e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| key for ||| 0.0188679 0.0683377 1.49697e-06 2.67889e-06 2.718 ||| 0-1 ||| 53 668016 +a ||| kg to ||| 0.111111 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| kg ||| 0.00793651 0.0062112 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 126 668016 +a ||| kick-starts innovation in ||| 1 0.0587624 1.49697e-06 2.76379e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| kicked in the head , ||| 1 0.0587624 1.49697e-06 3.49836e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| kicked in the head ||| 1 0.0587624 1.49697e-06 2.93352e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| kicked in the ||| 1 0.0587624 1.49697e-06 4.05743e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| kicked in ||| 0.25 0.0587624 1.49697e-06 6.60907e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| kill 1.5 ||| 1 0.191759 1.49697e-06 1.2144e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| kill ||| 0.0110803 0.191759 5.98788e-06 0.0001104 2.718 ||| 0-0 ||| 361 668016 +a ||| killed by ||| 0.0108696 0.0337966 1.49697e-06 1.95814e-07 2.718 ||| 0-1 ||| 92 668016 +a ||| killed in ||| 0.00617284 0.0587624 1.49697e-06 1.42996e-06 2.718 ||| 0-1 ||| 162 668016 +a ||| killed people ||| 0.166667 0.102431 1.49697e-06 1.4224e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| killed ||| 0.00666667 0.102431 1.34727e-05 0.0001616 2.718 ||| 0-0 ||| 1350 668016 +a ||| killers and child rapists , for example ||| 1 0.0683377 1.49697e-06 2.3336e-25 2.718 ||| 0-5 ||| 1 668016 +a ||| killers and child rapists , for ||| 1 0.0683377 1.49697e-06 8.0165e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| kills more ||| 0.125 0.270492 1.49697e-06 1.37479e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| kills ||| 0.00645161 0.270492 1.49697e-06 6.02e-05 2.718 ||| 0-0 ||| 155 668016 +a ||| kind enough to ||| 0.0130719 0.229811 2.99394e-06 2.82405e-08 2.718 ||| 0-2 ||| 153 668016 +a ||| kind in place ||| 1 0.0587624 1.49697e-06 4.4127e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| kind in ||| 0.00869565 0.0587624 1.49697e-06 2.93203e-05 2.718 ||| 0-1 ||| 115 668016 +a ||| kind of assessment would ||| 0.5 0.0188479 1.49697e-06 3.68491e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| kind of assessment ||| 0.142857 0.0188479 1.49697e-06 6.27892e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| kind of ||| 0.00302297 0.0188479 2.24546e-05 1.44343e-05 2.718 ||| 0-1 ||| 4962 668016 +a ||| kind that , I agree with you ||| 1 0.0571592 1.49697e-06 5.9386e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| kind that , I agree with ||| 1 0.0571592 1.49697e-06 1.83932e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| kind to ||| 0.0493827 0.229811 5.98788e-06 0.000170947 2.718 ||| 0-1 ||| 81 668016 +a ||| kinds of new ||| 0.0714286 0.0188479 1.49697e-06 8.39756e-10 2.718 ||| 0-1 ||| 14 668016 +a ||| kinds of ||| 0.00358423 0.0188479 5.98788e-06 1.40498e-06 2.718 ||| 0-1 ||| 1116 668016 +a ||| knew of Gebran ||| 1 0.0188479 1.49697e-06 1.0175e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| knew of ||| 0.0416667 0.0188479 1.49697e-06 2.54375e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| knife in ||| 0.2 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| know , to ||| 0.05 0.229811 1.49697e-06 1.0778e-05 2.718 ||| 0-2 ||| 20 668016 +a ||| know about ||| 0.00362319 0.0526361 1.49697e-06 1.30014e-06 2.718 ||| 0-1 ||| 276 668016 +a ||| know how to ||| 0.00787402 0.229811 1.49697e-06 3.23914e-08 2.718 ||| 0-2 ||| 127 668016 +a ||| know us . ||| 1 0.0071317 1.49697e-06 4.03714e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| know us ||| 1 0.0071317 1.49697e-06 1.33283e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| know what we mean ||| 0.5 0.0201991 1.49697e-06 7.84098e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| knowingly and wilfully ||| 1 0.201923 1.49697e-06 1.68348e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| knowingly and ||| 0.111111 0.201923 1.49697e-06 2.40497e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| knowingly ||| 0.0136986 0.201923 1.49697e-06 1.92e-05 2.718 ||| 0-0 ||| 73 668016 +a ||| knowledge with ||| 0.0909091 0.0571592 1.49697e-06 7.93017e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| known as ||| 0.000769231 0.0243476 1.49697e-06 9.65841e-07 2.718 ||| 0-1 ||| 1300 668016 +a ||| known in ||| 0.0104167 0.0587624 1.49697e-06 6.61508e-06 2.718 ||| 0-1 ||| 96 668016 +a ||| known offenders ||| 0.25 0.0126263 1.49697e-06 5.0646e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| known on ||| 0.166667 0.0782999 1.49697e-06 4.17671e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| known to ||| 0.0379009 0.229811 1.94606e-05 3.85682e-05 2.718 ||| 0-1 ||| 343 668016 +a ||| label on ||| 0.0555556 0.0782999 1.49697e-06 5.19718e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| label to ||| 0.105263 0.229811 2.99394e-06 4.79913e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| labelling and ||| 0.004 0.0015873 1.49697e-06 2.56624e-08 2.718 ||| 0-1 ||| 250 668016 +a ||| labels about ||| 0.5 0.0526361 1.49697e-06 2.92279e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| labels to ||| 0.25 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| laborious negotiations , for it has been ||| 1 0.0683377 1.49697e-06 1.33945e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| laborious negotiations , for it has ||| 1 0.0683377 1.49697e-06 4.01129e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| laborious negotiations , for it ||| 1 0.0683377 1.49697e-06 7.79269e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| laborious negotiations , for ||| 1 0.0683377 1.49697e-06 4.38205e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| labour standards to ||| 1 0.229811 1.49697e-06 1.10622e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| lack of access to affordable essential medicines ||| 0.5 0.229811 1.49697e-06 3.8536e-25 2.718 ||| 0-3 ||| 2 668016 +a ||| lack of access to affordable essential ||| 1 0.229811 1.49697e-06 4.48093e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| lack of access to affordable ||| 1 0.229811 1.49697e-06 4.97881e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| lack of access to ||| 0.016129 0.229811 1.49697e-06 1.99152e-10 2.718 ||| 0-3 ||| 62 668016 +a ||| lack of attention to ||| 0.25 0.229811 1.49697e-06 6.05099e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| lack of ||| 0.000699056 0.0188479 8.98182e-06 3.59675e-06 2.718 ||| 0-1 ||| 8583 668016 +a ||| lacking in ||| 0.00315457 0.0587624 1.49697e-06 1.03943e-06 2.718 ||| 0-1 ||| 317 668016 +a ||| ladies and gentlemen , to petition ||| 1 0.229811 1.49697e-06 5.39658e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| ladies and gentlemen , to ||| 0.00819672 0.229811 1.49697e-06 2.15863e-12 2.718 ||| 0-4 ||| 122 668016 +a ||| ladies and gentlemen , ||| 3.87147e-05 0.0015873 1.49697e-06 9.49233e-13 2.718 ||| 0-1 ||| 25830 668016 +a ||| ladies and gentlemen ||| 3.86772e-05 0.0015873 1.49697e-06 7.95971e-12 2.718 ||| 0-1 ||| 25855 668016 +a ||| ladies and ||| 0.000266383 0.0015873 1.49697e-06 1.15191e-07 2.718 ||| 0-1 ||| 3754 668016 +a ||| lady ||| 0.0272727 0.0432692 4.49091e-06 8.2e-06 2.718 ||| 0-0 ||| 110 668016 +a ||| laid against ||| 0.0769231 0.05146 1.49697e-06 2.83345e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| laid at ||| 0.214286 0.204175 4.49091e-06 3.70986e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| laid down for holding ||| 0.5 0.0683377 1.49697e-06 1.68515e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| laid down for ||| 0.00813008 0.0683377 1.49697e-06 2.80391e-09 2.718 ||| 0-2 ||| 123 668016 +a ||| laid down in the ||| 0.00113636 0.0587624 1.49697e-06 2.80674e-10 2.718 ||| 0-2 ||| 880 668016 +a ||| laid down in ||| 0.00334001 0.0587624 7.48485e-06 4.57185e-09 2.718 ||| 0-2 ||| 1497 668016 +a ||| laid much emphasis on ||| 1 0.0782999 1.49697e-06 2.12079e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| laid on ||| 0.0454545 0.0782999 1.49697e-06 4.13498e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| laid out for ||| 0.125 0.0683377 1.49697e-06 1.53847e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| laid to ||| 0.166667 0.229811 1.49697e-06 3.81829e-05 2.718 ||| 0-1 ||| 6 668016 +a ||| land in ||| 0.0123457 0.0587624 1.49697e-06 2.31318e-06 2.718 ||| 0-1 ||| 81 668016 +a ||| landfill or to reinforce the ||| 1 0.229811 1.49697e-06 2.85214e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| landfill or to reinforce ||| 1 0.229811 1.49697e-06 4.6458e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| landfill or to ||| 1 0.229811 1.49697e-06 1.16145e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| landing on ||| 0.0555556 0.0782999 1.49697e-06 2.04852e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| landing rights to ||| 1 0.229811 1.49697e-06 3.78515e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| language like that of ||| 1 0.0188479 1.49697e-06 4.13531e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| languages closer to ||| 1 0.229811 1.49697e-06 1.34306e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| lapse after ||| 0.111111 0.0341027 1.49697e-06 3.01968e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| large as that paid to ||| 0.333333 0.229811 1.49697e-06 1.24399e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| large extent , to ||| 0.0909091 0.229811 1.49697e-06 1.23408e-09 2.718 ||| 0-3 ||| 11 668016 +a ||| large gathering of ||| 1 0.0142665 1.49697e-06 1.6821e-11 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| large groups of ||| 0.0285714 0.0188479 1.49697e-06 3.00959e-10 2.718 ||| 0-2 ||| 35 668016 +a ||| large parts of ||| 0.0102041 0.0188479 1.49697e-06 2.65044e-10 2.718 ||| 0-2 ||| 98 668016 +a ||| large proportion of ||| 0.00393701 0.0188479 1.49697e-06 1.37296e-10 2.718 ||| 0-2 ||| 254 668016 +a ||| large scale , ||| 0.1 0.0017403 1.49697e-06 8.43155e-11 2.718 ||| 0-1 ||| 10 668016 +a ||| large scale ||| 0.0121951 0.0017403 1.49697e-06 7.0702e-10 2.718 ||| 0-1 ||| 82 668016 +a ||| large-scale online ||| 1 0.243923 1.49697e-06 3.08096e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| large-scale trade ||| 0.142857 0.243923 1.49697e-06 4.62675e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| large-scale ||| 0.00604839 0.243923 8.98182e-06 0.0005312 2.718 ||| 0-0 ||| 992 668016 +a ||| largely due to ||| 0.0153846 0.229811 1.49697e-06 3.16612e-09 2.718 ||| 0-2 ||| 65 668016 +a ||| larger than ||| 0.0131579 0.0242272 1.49697e-06 1.89792e-08 2.718 ||| 0-1 ||| 76 668016 +a ||| last , of ||| 0.125 0.0188479 1.49697e-06 7.70379e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| last but not least , to ||| 0.25 0.229811 1.49697e-06 5.22391e-15 2.718 ||| 0-5 ||| 4 668016 +a ||| last caved in ||| 1 0.0587624 1.49697e-06 5.24881e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| last for ||| 0.0149254 0.0683377 1.49697e-06 8.04771e-06 2.718 ||| 0-1 ||| 67 668016 +a ||| last straw in ||| 0.333333 0.0587624 1.49697e-06 1.83708e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| last to face facts ||| 0.0833333 0.229811 1.49697e-06 2.62388e-13 2.718 ||| 0-1 ||| 12 668016 +a ||| last to face ||| 0.0833333 0.229811 1.49697e-06 1.27994e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| last to ||| 0.010989 0.229811 1.49697e-06 7.65059e-05 2.718 ||| 0-1 ||| 91 668016 +a ||| last week to ||| 0.0232558 0.229811 1.49697e-06 2.34108e-09 2.718 ||| 0-2 ||| 43 668016 +a ||| last year in ||| 0.00735294 0.0587624 1.49697e-06 3.27263e-09 2.718 ||| 0-2 ||| 136 668016 +a ||| lasting until half past three in ||| 1 0.0268909 1.49697e-06 1.15664e-23 2.718 ||| 0-1 ||| 1 668016 +a ||| lasting until half past three ||| 1 0.0268909 1.49697e-06 5.40371e-22 2.718 ||| 0-1 ||| 1 668016 +a ||| lasting until half past ||| 1 0.0268909 1.49697e-06 8.53666e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| lasting until half ||| 1 0.0268909 1.49697e-06 6.66406e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| lasting until ||| 0.2 0.0268909 1.49697e-06 2.31391e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| late for ||| 0.0123457 0.0683377 1.49697e-06 1.1681e-06 2.718 ||| 0-1 ||| 81 668016 +a ||| late have been ||| 1 0.0067513 1.49697e-06 9.10545e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| late have ||| 1 0.0067513 1.49697e-06 2.72683e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| late in the ||| 0.0135135 0.0587624 1.49697e-06 1.16928e-07 2.718 ||| 0-1 ||| 74 668016 +a ||| late in ||| 0.00813008 0.0587624 1.49697e-06 1.90462e-06 2.718 ||| 0-1 ||| 123 668016 +a ||| late to be any use ||| 0.166667 0.229811 1.49697e-06 1.47963e-13 2.718 ||| 0-1 ||| 6 668016 +a ||| late to be any ||| 0.166667 0.229811 1.49697e-06 3.04325e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| late to be ||| 0.142857 0.229811 1.49697e-06 2.01247e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| late to ||| 0.00840336 0.229811 1.49697e-06 1.11046e-05 2.718 ||| 0-1 ||| 119 668016 +a ||| late we will ||| 1 0.0561595 1.49697e-06 5.06827e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| late ||| 0.00130039 0.0067513 5.98788e-06 2.28e-05 2.718 ||| 0-0 ||| 3076 668016 +a ||| later be ||| 0.0588235 0.0084771 1.49697e-06 9.2608e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| later found to ||| 0.5 0.229811 1.49697e-06 6.59156e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| later in ||| 0.00641026 0.0587624 1.49697e-06 5.16709e-06 2.718 ||| 0-1 ||| 156 668016 +a ||| later on ||| 0.01 0.0782999 5.98788e-06 3.26246e-06 2.718 ||| 0-1 ||| 400 668016 +a ||| later this ||| 0.00288184 0.0084771 1.49697e-06 3.30178e-07 2.718 ||| 0-0 ||| 347 668016 +a ||| later to be ||| 0.2 0.229811 1.49697e-06 5.45969e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| later to ||| 0.0294118 0.229811 1.49697e-06 3.01259e-05 2.718 ||| 0-1 ||| 34 668016 +a ||| later ||| 0.00136147 0.0084771 8.98182e-06 5.11e-05 2.718 ||| 0-0 ||| 4407 668016 +a ||| latest in ||| 0.0243902 0.0587624 1.49697e-06 9.73336e-07 2.718 ||| 0-1 ||| 41 668016 +a ||| latter , in ||| 0.125 0.0587624 1.49697e-06 6.88568e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| latter can replace ||| 1 0.0073363 1.49697e-06 3.40138e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| latter could in ||| 1 0.0587624 1.49697e-06 4.10584e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| latter on ||| 0.25 0.0782999 1.49697e-06 3.64561e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| latter to ||| 0.04 0.229811 1.49697e-06 3.3664e-05 2.718 ||| 0-1 ||| 25 668016 +a ||| laughing stock of ||| 0.2 0.0188479 1.49697e-06 8.65467e-13 2.718 ||| 0-2 ||| 5 668016 +a ||| launch on to ||| 0.333333 0.154056 1.49697e-06 2.6312e-07 2.718 ||| 0-1 0-2 ||| 3 668016 +a ||| launched by ||| 0.00862069 0.0337966 2.99394e-06 2.7233e-07 2.718 ||| 0-1 ||| 232 668016 +a ||| launched for ||| 0.111111 0.0683377 1.49697e-06 1.21969e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| launched to ||| 0.0769231 0.229811 1.49697e-06 1.1595e-05 2.718 ||| 0-1 ||| 13 668016 +a ||| law based on ||| 0.0909091 0.0782999 1.49697e-06 1.56902e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| law in ||| 0.00179211 0.0587624 1.49697e-06 1.05925e-05 2.718 ||| 0-1 ||| 558 668016 +a ||| law into ||| 0.027027 0.107578 1.49697e-06 1.0709e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| law is formed from events ) ||| 1 0.0435582 1.49697e-06 8.06325e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| law is formed from events ||| 1 0.0435582 1.49697e-06 5.61e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| law is formed from ||| 1 0.0435582 1.49697e-06 7.71664e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| law to ||| 0.00465116 0.229811 1.49697e-06 6.17582e-05 2.718 ||| 0-1 ||| 215 668016 +a ||| lawlessness from ||| 1 0.0435582 1.49697e-06 2.87952e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| laws , in ||| 0.25 0.0587624 1.49697e-06 1.57633e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| lay at the ||| 0.125 0.204175 1.49697e-06 8.65051e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| lay at their doors ||| 1 0.204175 1.49697e-06 1.94356e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| lay at their ||| 0.333333 0.204175 1.49697e-06 1.63325e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| lay at ||| 0.2 0.204175 2.99394e-06 1.40907e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| lay into ||| 0.5 0.107578 1.49697e-06 2.51476e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| laying down ||| 0.00141443 0.0226513 1.49697e-06 7.63059e-09 2.718 ||| 0-1 ||| 707 668016 +a ||| lays down ||| 0.00348432 0.0226513 2.99394e-06 3.43194e-09 2.718 ||| 0-1 ||| 574 668016 +a ||| lays siege on ||| 0.2 0.0782999 1.49697e-06 2.49616e-13 2.718 ||| 0-2 ||| 5 668016 +a ||| lead it to ||| 0.125 0.229811 1.49697e-06 1.19918e-06 2.718 ||| 0-2 ||| 8 668016 +a ||| lead to a ||| 0.00139276 0.229811 1.49697e-06 2.98902e-06 2.718 ||| 0-1 ||| 718 668016 +a ||| lead to even ||| 0.166667 0.229811 1.49697e-06 4.1033e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| lead to fewer powers ||| 0.5 0.229811 1.49697e-06 7.04783e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| lead to fewer ||| 0.25 0.229811 1.49697e-06 1.42958e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| lead to relatively ||| 0.5 0.229811 1.49697e-06 9.98009e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| lead to ||| 0.0117271 0.229811 6.58667e-05 6.74331e-05 2.718 ||| 0-1 ||| 3752 668016 +a ||| lead us into ||| 0.1 0.107578 1.49697e-06 3.37016e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| lead us to ||| 0.00598802 0.229811 1.49697e-06 1.94356e-07 2.718 ||| 0-2 ||| 167 668016 +a ||| leader in ||| 0.00877193 0.0587624 1.49697e-06 7.14982e-07 2.718 ||| 0-1 ||| 114 668016 +a ||| leaders to ||| 0.0192308 0.229811 1.49697e-06 5.81501e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| leadership of ||| 0.00319489 0.0188479 1.49697e-06 4.91003e-07 2.718 ||| 0-1 ||| 313 668016 +a ||| leadership to ||| 0.04 0.229811 1.49697e-06 5.81501e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| leading on from ||| 0.333333 0.060929 1.49697e-06 2.37862e-08 2.718 ||| 0-1 0-2 ||| 3 668016 +a ||| leading on ||| 0.0555556 0.0782999 1.49697e-06 3.30419e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| leading to the creation ||| 0.05 0.229811 1.49697e-06 8.69138e-11 2.718 ||| 0-1 ||| 20 668016 +a ||| leading to the ||| 0.00823045 0.229811 2.99394e-06 1.87314e-06 2.718 ||| 0-1 ||| 243 668016 +a ||| leading to ||| 0.00527705 0.229811 8.98182e-06 3.05113e-05 2.718 ||| 0-1 ||| 1137 668016 +a ||| leading up to ||| 0.00877193 0.229811 1.49697e-06 1.04059e-07 2.718 ||| 0-2 ||| 114 668016 +a ||| leads me to ||| 0.00578035 0.229811 1.49697e-06 6.8337e-09 2.718 ||| 0-2 ||| 173 668016 +a ||| leads on ||| 0.166667 0.0782999 1.49697e-06 1.22911e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| leads to a certain amount ||| 1 0.229811 1.49697e-06 3.48844e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| leads to a certain ||| 1 0.229811 1.49697e-06 1.4338e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| leads to a ||| 0.0108108 0.229811 2.99394e-06 5.03088e-07 2.718 ||| 0-1 ||| 185 668016 +a ||| leads to ||| 0.00878594 0.229811 1.64667e-05 1.13498e-05 2.718 ||| 0-1 ||| 1252 668016 +a ||| leap forward now , to ||| 1 0.229811 1.49697e-06 2.05882e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| leap of ||| 0.0769231 0.0188479 1.49697e-06 1.27188e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| leap onto ||| 0.25 0.207143 1.49697e-06 1.02426e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| learn to live with ||| 0.0625 0.229811 1.49697e-06 7.88015e-12 2.718 ||| 0-1 ||| 16 668016 +a ||| learn to live ||| 0.05 0.229811 1.49697e-06 1.23233e-09 2.718 ||| 0-1 ||| 20 668016 +a ||| learn to ||| 0.00598802 0.229811 1.49697e-06 1.22255e-05 2.718 ||| 0-1 ||| 167 668016 +a ||| learned to look at everything in economic ||| 1 0.204175 1.49697e-06 3.34527e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| learned to look at everything in ||| 1 0.204175 1.49697e-06 2.75785e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| learned to look at everything ||| 1 0.204175 1.49697e-06 1.28844e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| learned to look at ||| 1 0.204175 1.49697e-06 1.39291e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| learned to perfect ourselves all ||| 0.166667 0.229811 1.49697e-06 7.82041e-17 2.718 ||| 0-1 ||| 6 668016 +a ||| learned to perfect ourselves ||| 0.166667 0.229811 1.49697e-06 1.65497e-14 2.718 ||| 0-1 ||| 6 668016 +a ||| learned to perfect ||| 0.166667 0.229811 1.49697e-06 5.20268e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| learned to think ||| 0.333333 0.229811 1.49697e-06 2.11705e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| learned to ||| 0.0434783 0.229811 2.99394e-06 5.53477e-06 2.718 ||| 0-1 ||| 46 668016 +a ||| learning in ||| 0.0526316 0.0587624 1.49697e-06 8.65188e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| learning more accessible to ||| 1 0.229811 1.49697e-06 1.49757e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| learning to ||| 0.0169492 0.229811 1.49697e-06 5.04434e-06 2.718 ||| 0-1 ||| 59 668016 +a ||| least , to ||| 0.0746269 0.229811 7.48485e-06 1.02516e-05 2.718 ||| 0-2 ||| 67 668016 +a ||| least because ||| 0.0026738 0.0052046 1.49697e-06 7.92887e-08 2.718 ||| 0-1 ||| 374 668016 +a ||| least by ||| 0.00990099 0.0337966 1.49697e-06 2.01903e-06 2.718 ||| 0-1 ||| 101 668016 +a ||| least converted into ||| 1 0.107578 1.49697e-06 6.40972e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| least in ||| 0.00289855 0.0587624 4.49091e-06 1.47442e-05 2.718 ||| 0-1 ||| 1035 668016 +a ||| least to change ||| 1 0.229811 1.49697e-06 1.04876e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| least to say ||| 1 0.229811 1.49697e-06 8.21644e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| least to ||| 0.0130293 0.229811 5.98788e-06 8.5964e-05 2.718 ||| 0-1 ||| 307 668016 +a ||| least ||| 6.39345e-05 5.37e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 15641 668016 +a ||| least- and ||| 1 1 1.49697e-06 1.12733e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| least- ||| 1 1 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| leave and ||| 0.0222222 0.0015873 1.49697e-06 1.83303e-07 2.718 ||| 0-1 ||| 45 668016 +a ||| leave for ||| 0.0681818 0.0683377 4.49091e-06 3.50061e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| leave office as ||| 0.25 0.0243476 1.49697e-06 8.57546e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| leave this task to ||| 0.5 0.229811 1.49697e-06 2.70934e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| leave to ||| 0.0253165 0.229811 2.99394e-06 3.32787e-05 2.718 ||| 0-1 ||| 79 668016 +a ||| leave with ||| 0.166667 0.0571592 1.49697e-06 1.58603e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| leave ||| 0.00199373 0.0032088 1.04788e-05 1.55e-05 2.718 ||| 0-0 ||| 3511 668016 +a ||| leaving for ||| 0.047619 0.0683377 1.49697e-06 8.76994e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| leaving out ||| 0.05 0.0687023 1.49697e-06 5.03315e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| leaving that ||| 0.0526316 0.0687023 1.49697e-06 2.21036e-06 2.718 ||| 0-0 ||| 19 668016 +a ||| leaving ||| 0.00586701 0.0687023 1.34727e-05 0.0001314 2.718 ||| 0-0 ||| 1534 668016 +a ||| led back and ||| 1 0.0536618 1.49697e-06 8.45965e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| led back ||| 1 0.0536618 1.49697e-06 6.75373e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| led into ||| 0.0588235 0.107578 1.49697e-06 5.57621e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| led to confrontation ||| 1 0.229811 1.49697e-06 4.50208e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| led to this , as ||| 0.333333 0.0243476 1.49697e-06 5.51392e-11 2.718 ||| 0-4 ||| 3 668016 +a ||| led to ||| 0.00498132 0.229811 1.79636e-05 3.21577e-05 2.718 ||| 0-1 ||| 2409 668016 +a ||| led us to ||| 0.0140845 0.229811 1.49697e-06 9.26849e-08 2.718 ||| 0-2 ||| 71 668016 +a ||| led ||| 0.000895656 0.0253655 5.98788e-06 0.0001314 2.718 ||| 0-0 ||| 4466 668016 +a ||| leeway to ||| 0.0625 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| left behind ||| 0.0124224 0.0923313 2.99394e-06 1.45529e-07 2.718 ||| 0-1 ||| 161 668016 +a ||| left for ||| 0.0365854 0.0683377 4.49091e-06 6.96068e-06 2.718 ||| 0-1 ||| 82 668016 +a ||| left in its wake , ||| 1 0.0587624 1.49697e-06 4.5894e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| left in its wake ||| 1 0.0587624 1.49697e-06 3.8484e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| left in its ||| 0.5 0.0587624 1.49697e-06 1.61698e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| left in ||| 0.00540541 0.0587624 1.49697e-06 1.13496e-05 2.718 ||| 0-1 ||| 185 668016 +a ||| left something to be desired in certain ||| 1 0.0587624 1.49697e-06 4.46889e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| left something to be desired in ||| 1 0.0587624 1.49697e-06 1.56803e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| left the country , in ||| 0.5 0.0587624 1.49697e-06 2.99053e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| left to catch ||| 0.5 0.229811 1.49697e-06 1.14478e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| left to pick ||| 0.25 0.229811 1.49697e-06 1.31021e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| left to ||| 0.0229508 0.229811 2.09576e-05 6.6172e-05 2.718 ||| 0-1 ||| 610 668016 +a ||| left with ||| 0.0178571 0.0571592 2.99394e-06 3.1537e-06 2.718 ||| 0-1 ||| 112 668016 +a ||| legal basis for various operations , ||| 1 0.0683377 1.49697e-06 1.3158e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| legal basis for various operations ||| 1 0.0683377 1.49697e-06 1.10335e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| legal basis for various ||| 1 0.0683377 1.49697e-06 4.37837e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| legal basis for ||| 0.00160256 0.0683377 1.49697e-06 2.83573e-09 2.718 ||| 0-2 ||| 624 668016 +a ||| legal framework for mutual recognition ||| 1 0.0683377 1.49697e-06 3.51614e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| legal framework for mutual ||| 1 0.0683377 1.49697e-06 1.25129e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| legal framework for ||| 0.00390625 0.0683377 1.49697e-06 5.6877e-10 2.718 ||| 0-2 ||| 256 668016 +a ||| legal instruments available to it ||| 1 0.229811 1.49697e-06 6.65151e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| legal instruments available to ||| 0.333333 0.229811 1.49697e-06 3.74034e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| legal to hold ||| 0.166667 0.229811 1.49697e-06 7.90852e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| legal to ||| 0.0666667 0.229811 1.49697e-06 4.53991e-05 2.718 ||| 0-1 ||| 15 668016 +a ||| legislation can go ||| 1 0.0008168 1.49697e-06 4.02912e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| legislation can ||| 0.0384615 0.0008168 1.49697e-06 6.88974e-09 2.718 ||| 0-1 ||| 26 668016 +a ||| legislation for ||| 0.00746269 0.0683377 1.49697e-06 2.95893e-06 2.718 ||| 0-1 ||| 134 668016 +a ||| legislation in the pipeline ||| 0.5 0.0587624 1.49697e-06 4.26517e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| legislation in the ||| 0.00568182 0.0587624 1.49697e-06 2.96192e-07 2.718 ||| 0-1 ||| 176 668016 +a ||| legislation in ||| 0.00146199 0.0587624 1.49697e-06 4.82462e-06 2.718 ||| 0-1 ||| 684 668016 +a ||| legislation to ||| 0.00740741 0.229811 4.49091e-06 2.81292e-05 2.718 ||| 0-1 ||| 405 668016 +a ||| legislative process to ||| 0.0666667 0.229811 1.49697e-06 3.98345e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| legitimacy to other ways ||| 0.5 0.229811 1.49697e-06 3.32484e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| legitimacy to other ||| 0.5 0.229811 1.49697e-06 3.449e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| legitimacy to ||| 0.0166667 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-1 ||| 60 668016 +a ||| lend support ||| 0.025641 0.0027239 1.49697e-06 2.03856e-09 2.718 ||| 0-1 ||| 39 668016 +a ||| length and ||| 0.0108696 0.0015873 1.49697e-06 7.42858e-08 2.718 ||| 0-1 ||| 92 668016 +a ||| less by ||| 0.0909091 0.0337966 1.49697e-06 1.40032e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| less developed countries , is responsible for ||| 1 0.0683377 1.49697e-06 9.04346e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| less important than ||| 0.037037 0.0242272 1.49697e-06 8.20614e-11 2.718 ||| 0-2 ||| 27 668016 +a ||| less importantly , as ||| 1 0.0243476 1.49697e-06 1.99421e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| less likely to strike them down ||| 1 0.229811 1.49697e-06 3.0332e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| less likely to strike them ||| 1 0.229811 1.49697e-06 4.34493e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| less likely to strike ||| 1 0.229811 1.49697e-06 1.61979e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| less likely to ||| 0.0238095 0.229811 1.49697e-06 5.06185e-09 2.718 ||| 0-2 ||| 42 668016 +a ||| less sufficient for ||| 1 0.0683377 1.49697e-06 3.048e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| less than ||| 0.00247175 0.0242272 1.04788e-05 2.13924e-07 2.718 ||| 0-1 ||| 2832 668016 +a ||| less ||| 7.98913e-05 7.44e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 12517 668016 +a ||| lessons to ||| 0.00961538 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-1 ||| 104 668016 +a ||| let in ||| 0.222222 0.0587624 2.99394e-06 2.45377e-05 2.718 ||| 0-1 ||| 9 668016 +a ||| let it ||| 0.00653595 0.0027309 1.49697e-06 1.10434e-06 2.718 ||| 0-0 ||| 153 668016 +a ||| let me ask ||| 0.0238095 0.0082577 1.49697e-06 3.6147e-11 2.718 ||| 0-2 ||| 42 668016 +a ||| let me go into ||| 1 0.107578 1.49697e-06 8.7349e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| let me say to ||| 0.0434783 0.229811 2.99394e-06 8.2331e-11 2.718 ||| 0-3 ||| 46 668016 +a ||| let me ||| 0.000444379 0.0027309 4.49091e-06 3.73904e-08 2.718 ||| 0-0 ||| 6751 668016 +a ||| let us agree to ||| 0.25 0.229811 1.49697e-06 6.56028e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| let us also congratulate ||| 1 0.245244 1.49697e-06 1.97873e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| let us at least ||| 0.030303 0.204175 1.49697e-06 9.8314e-12 2.718 ||| 0-2 ||| 33 668016 +a ||| let us at ||| 0.0625 0.204175 2.99394e-06 4.00627e-08 2.718 ||| 0-2 ||| 32 668016 +a ||| let us come to ||| 0.333333 0.229811 1.49697e-06 3.50198e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| let us congratulate ||| 0.333333 0.245244 1.49697e-06 3.91936e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| let us make it happen ||| 0.25 0.0071317 1.49697e-06 7.08728e-16 2.718 ||| 0-1 ||| 4 668016 +a ||| let us make it ||| 0.0285714 0.0071317 1.49697e-06 6.52003e-12 2.718 ||| 0-1 ||| 35 668016 +a ||| let us make ||| 0.00826446 0.0071317 1.49697e-06 3.6664e-10 2.718 ||| 0-1 ||| 121 668016 +a ||| let us say from ||| 1 0.0435582 1.49697e-06 8.0991e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| let us see ||| 0.00909091 0.0071317 1.49697e-06 1.48656e-10 2.718 ||| 0-1 ||| 110 668016 +a ||| let us ||| 0.00341686 0.0071317 1.34727e-05 2.10979e-07 2.718 ||| 0-1 ||| 2634 668016 +a ||| let you get away ||| 0.5 0.0377856 1.49697e-06 1.35764e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| let ||| 0.00435081 0.0027309 2.84424e-05 6.21e-05 2.718 ||| 0-0 ||| 4367 668016 +a ||| letter of ||| 0.00290698 0.0188479 1.49697e-06 7.66083e-07 2.718 ||| 0-1 ||| 344 668016 +a ||| letting oneself be ||| 1 0.0684105 1.49697e-06 4.66302e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| letting oneself ||| 1 0.0684105 1.49697e-06 2.573e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| letting ||| 0.010989 0.0684105 2.99394e-06 3.1e-05 2.718 ||| 0-0 ||| 182 668016 +a ||| level , at ||| 0.142857 0.204175 1.49697e-06 3.47197e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| level , of ||| 0.1 0.0188479 1.49697e-06 3.01732e-06 2.718 ||| 0-2 ||| 10 668016 +a ||| level , to ||| 0.0714286 0.229811 1.49697e-06 3.57344e-05 2.718 ||| 0-2 ||| 14 668016 +a ||| level and ||| 0.00347222 0.0015873 1.49697e-06 1.65049e-06 2.718 ||| 0-1 ||| 288 668016 +a ||| level at ||| 0.0273973 0.204175 2.99394e-06 2.91139e-05 2.718 ||| 0-1 ||| 73 668016 +a ||| level based on ||| 1 0.0782999 1.49697e-06 7.6128e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| level for ||| 0.0144928 0.0683377 1.49697e-06 3.15202e-05 2.718 ||| 0-1 ||| 69 668016 +a ||| level in a ||| 0.25 0.0587624 1.49697e-06 2.27811e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| level in case ||| 1 0.0587624 1.49697e-06 5.49871e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| level in ||| 0.0320856 0.0587624 8.98182e-06 5.13946e-05 2.718 ||| 0-1 ||| 187 668016 +a ||| level of targeting ||| 0.333333 0.0980204 1.49697e-06 2.33279e-09 2.718 ||| 0-1 0-2 ||| 3 668016 +a ||| level of ||| 0.00245821 0.0188479 2.24546e-05 2.53014e-05 2.718 ||| 0-1 ||| 6102 668016 +a ||| level playing field for ||| 0.00826446 0.0683377 1.49697e-06 3.03476e-13 2.718 ||| 0-3 ||| 121 668016 +a ||| level to the ||| 0.142857 0.229811 1.49697e-06 1.83959e-05 2.718 ||| 0-1 ||| 7 668016 +a ||| level to ||| 0.035461 0.229811 7.48485e-06 0.000299648 2.718 ||| 0-1 ||| 141 668016 +a ||| level where ||| 0.0526316 0.0053255 1.49697e-06 2.10001e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| levelled at ||| 0.0273973 0.204175 2.99394e-06 2.45055e-07 2.718 ||| 0-1 ||| 73 668016 +a ||| levels for ||| 0.0333333 0.0683377 1.49697e-06 4.87874e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| levels into ||| 0.5 0.107578 1.49697e-06 8.04237e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| levels of ||| 0.00249252 0.0188479 7.48485e-06 3.91619e-06 2.718 ||| 0-1 ||| 2006 668016 +a ||| levels reached ||| 0.5 0.14487 1.49697e-06 1.62786e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| levels will ||| 0.111111 0.0561595 1.49697e-06 1.86468e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| lever in ||| 0.2 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| levied on a ||| 0.2 0.0782999 1.49697e-06 1.02573e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| levied on ||| 0.0512821 0.0782999 2.99394e-06 2.31407e-07 2.718 ||| 0-1 ||| 39 668016 +a ||| liable to face ||| 0.333333 0.229811 1.49697e-06 9.90432e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| liable to ||| 0.0316456 0.229811 7.48485e-06 5.9201e-06 2.718 ||| 0-1 ||| 158 668016 +a ||| liaise with ||| 0.04 0.0571592 1.49697e-06 1.83646e-08 2.718 ||| 0-1 ||| 25 668016 +a ||| liberty of ||| 0.00869565 0.0188479 1.49697e-06 2.98743e-07 2.718 ||| 0-1 ||| 115 668016 +a ||| licence for ||| 0.027027 0.0683377 1.49697e-06 3.46376e-07 2.718 ||| 0-1 ||| 37 668016 +a ||| licence to ||| 0.0126582 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-1 ||| 79 668016 +a ||| lid on ||| 1 0.0782999 1.49697e-06 6.82841e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| lie at ||| 0.0111111 0.204175 1.49697e-06 1.28654e-06 2.718 ||| 0-1 ||| 90 668016 +a ||| lie awake at night thinking ||| 0.333333 0.204175 1.49697e-06 3.6989e-22 2.718 ||| 0-2 ||| 3 668016 +a ||| lie awake at night ||| 0.333333 0.204175 1.49697e-06 4.99177e-18 2.718 ||| 0-2 ||| 3 668016 +a ||| lie awake at ||| 0.333333 0.204175 1.49697e-06 5.14615e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| lie exclusively at ||| 0.5 0.204175 1.49697e-06 1.7111e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| lie to ||| 0.0357143 0.229811 1.49697e-06 1.32414e-05 2.718 ||| 0-1 ||| 28 668016 +a ||| lies at ||| 0.00689655 0.204175 1.49697e-06 2.09318e-06 2.718 ||| 0-1 ||| 145 668016 +a ||| lies both in ||| 0.2 0.0587624 1.49697e-06 6.12089e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| lies in ||| 0.0035461 0.0587624 4.49091e-06 3.69507e-06 2.718 ||| 0-1 ||| 846 668016 +a ||| lies with ||| 0.00484262 0.0571592 2.99394e-06 1.02675e-06 2.718 ||| 0-1 ||| 413 668016 +a ||| life at the ||| 0.2 0.204175 1.49697e-06 3.16558e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| life at ||| 0.03125 0.204175 1.49697e-06 5.15636e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| life for ||| 0.00531915 0.0683377 1.49697e-06 5.58255e-06 2.718 ||| 0-1 ||| 188 668016 +a ||| life in favour ||| 0.5 0.0587624 1.49697e-06 2.94466e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| life in ||| 0.00531915 0.0587624 2.99394e-06 9.1025e-06 2.718 ||| 0-1 ||| 376 668016 +a ||| life into ||| 0.0135135 0.107578 1.49697e-06 9.20256e-07 2.718 ||| 0-1 ||| 74 668016 +a ||| life of the Commission to ||| 0.5 0.229811 1.49697e-06 1.03458e-10 2.718 ||| 0-4 ||| 2 668016 +a ||| life of ||| 0.00289436 0.0188479 2.99394e-06 4.48114e-06 2.718 ||| 0-1 ||| 691 668016 +a ||| life on the ||| 0.0666667 0.0782999 1.49697e-06 3.52834e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| life on ||| 0.0133333 0.0782999 1.49697e-06 5.74724e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| life out of ||| 0.25 0.0188479 1.49697e-06 1.71646e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| life out ||| 0.1 0.0669777 1.49697e-06 6.21301e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| life to ||| 0.0135135 0.229811 1.49697e-06 5.30707e-05 2.718 ||| 0-1 ||| 74 668016 +a ||| lifeline for ||| 0.142857 0.0683377 1.49697e-06 4.05334e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| lifelong ||| 0.00337268 0.0528785 2.99394e-06 0.0001132 2.718 ||| 0-0 ||| 593 668016 +a ||| lifespan of ||| 0.111111 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| lifted on ||| 0.142857 0.0782999 1.49697e-06 5.04543e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| light at ||| 0.0555556 0.204175 1.49697e-06 5.91535e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| light for ||| 0.0833333 0.0683377 1.49697e-06 6.40427e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| light from ||| 0.142857 0.0435582 1.49697e-06 1.25115e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| light is likely to improve ||| 1 0.229811 1.49697e-06 7.04698e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| light is likely to ||| 1 0.229811 1.49697e-06 1.62e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| light of ||| 0.00188976 0.0188479 8.98182e-06 5.14074e-06 2.718 ||| 0-1 ||| 3175 668016 +a ||| light on ||| 0.0109091 0.0782999 4.49091e-06 6.59321e-06 2.718 ||| 0-1 ||| 275 668016 +a ||| light to ||| 0.138889 0.229811 7.48485e-06 6.08824e-05 2.718 ||| 0-1 ||| 36 668016 +a ||| light within our reach , ||| 1 0.0123496 1.49697e-06 1.15188e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| light within our reach ||| 1 0.0123496 1.49697e-06 9.65897e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| light within our ||| 1 0.0123496 1.49697e-06 1.19247e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| light within ||| 1 0.0123496 1.49697e-06 8.64481e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| light ||| 0.000690369 0.0011115 5.98788e-06 6.4e-06 2.718 ||| 0-0 ||| 5794 668016 +a ||| lighten the burden on ||| 0.2 0.0782999 1.49697e-06 4.05235e-14 2.718 ||| 0-3 ||| 5 668016 +a ||| lightly to ||| 1 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| like , in ||| 0.166667 0.0587624 2.99394e-06 1.27245e-05 2.718 ||| 0-2 ||| 12 668016 +a ||| like - to ||| 0.333333 0.229811 1.49697e-06 2.34663e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| like at ||| 0.0588235 0.204175 1.49697e-06 6.04435e-05 2.718 ||| 0-1 ||| 17 668016 +a ||| like both to ||| 1 0.229811 1.49697e-06 1.03051e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| like by ||| 0.166667 0.0337966 1.49697e-06 1.46112e-05 2.718 ||| 0-1 ||| 6 668016 +a ||| like far enough to ||| 1 0.229811 1.49697e-06 7.01618e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| like giving ||| 0.142857 0.136521 1.49697e-06 1.79117e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| like in ||| 0.0070922 0.0587624 1.49697e-06 0.000106701 2.718 ||| 0-1 ||| 141 668016 +a ||| like it to be ||| 0.0909091 0.229811 1.49697e-06 2.00493e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| like it to ||| 0.0588235 0.229811 1.49697e-06 1.10629e-05 2.718 ||| 0-2 ||| 17 668016 +a ||| like offering ||| 0.5 0.103522 1.49697e-06 3.14512e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| like other countries , to ||| 1 0.229811 1.49697e-06 3.64934e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| like that of ||| 0.0307692 0.0188479 2.99394e-06 8.83613e-07 2.718 ||| 0-2 ||| 65 668016 +a ||| like the same sort of ||| 1 0.0188479 1.49697e-06 4.14683e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| like the ||| 0.000315358 0.0004654 1.49697e-06 2.72157e-06 2.718 ||| 0-1 ||| 3171 668016 +a ||| like then ||| 0.5 0.0252938 1.49697e-06 1.51395e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| like this ||| 0.000819001 0.0001599 1.49697e-06 9.43364e-08 2.718 ||| 0-0 ||| 1221 668016 +a ||| like to appeal to ||| 0.111111 0.229811 1.49697e-06 1.66942e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| like to appeal ||| 0.0833333 0.229811 1.49697e-06 1.87874e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| like to ask the ||| 0.0102041 0.229811 1.49697e-06 5.25138e-09 2.718 ||| 0-1 ||| 98 668016 +a ||| like to ask whether ||| 0.0833333 0.229811 1.49697e-06 2.24711e-11 2.718 ||| 0-1 ||| 12 668016 +a ||| like to ask ||| 0.0122449 0.229811 4.49091e-06 8.55388e-08 2.718 ||| 0-1 ||| 245 668016 +a ||| like to be ||| 0.030303 0.229811 1.49697e-06 1.12743e-05 2.718 ||| 0-1 ||| 33 668016 +a ||| like to borrow ||| 1 0.229811 1.49697e-06 1.99072e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| like to bring up ||| 0.166667 0.229811 1.49697e-06 6.60477e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| like to bring ||| 0.2 0.229811 1.49697e-06 1.9366e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| like to comment on ||| 0.0588235 0.0782999 2.99394e-06 2.73577e-10 2.718 ||| 0-3 ||| 34 668016 +a ||| like to comment ||| 0.0243902 0.229811 1.49697e-06 2.843e-08 2.718 ||| 0-1 ||| 41 668016 +a ||| like to congratulate ||| 0.0107527 0.237528 5.98788e-06 2.07141e-06 2.718 ||| 0-1 0-2 ||| 372 668016 +a ||| like to discuss ||| 0.0714286 0.229811 1.49697e-06 2.59416e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| like to draw your attention to ||| 0.0232558 0.229811 1.49697e-06 4.37643e-16 2.718 ||| 0-5 ||| 43 668016 +a ||| like to draw ||| 0.00719424 0.229811 1.49697e-06 7.36567e-08 2.718 ||| 0-1 ||| 139 668016 +a ||| like to encourage ||| 0.0769231 0.229811 1.49697e-06 2.39509e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| like to experience ||| 0.125 0.229811 1.49697e-06 4.29872e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| like to express my ||| 0.00763359 0.229811 1.49697e-06 4.06074e-11 2.718 ||| 0-1 ||| 131 668016 +a ||| like to express ||| 0.00421941 0.229811 1.49697e-06 6.31432e-08 2.718 ||| 0-1 ||| 237 668016 +a ||| like to extend my warm thanks ||| 1 0.229811 1.49697e-06 1.86191e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| like to extend my warm ||| 1 0.229811 1.49697e-06 2.29866e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| like to extend my ||| 0.0769231 0.229811 1.49697e-06 1.72831e-11 2.718 ||| 0-1 ||| 13 668016 +a ||| like to extend ||| 0.0689655 0.229811 2.99394e-06 2.68747e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| like to follow up by ||| 1 0.0337966 1.49697e-06 4.38366e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| like to go along ||| 0.5 0.229811 1.49697e-06 6.34839e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| like to go back to ||| 1 0.229811 1.49697e-06 2.17431e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| like to go into ||| 0.25 0.107578 1.49697e-06 5.60557e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| like to go on and ||| 1 0.0782999 1.49697e-06 4.3851e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| like to go on ||| 1 0.0782999 1.49697e-06 3.50082e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| like to go ||| 0.0714286 0.229811 1.49697e-06 3.63804e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| like to increase ||| 0.5 0.229811 1.49697e-06 8.03754e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| like to make a statement pursuant to ||| 1 0.229811 1.49697e-06 4.34602e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| like to make a ||| 0.025 0.229811 2.99394e-06 4.792e-08 2.718 ||| 0-1 ||| 80 668016 +a ||| like to make ||| 0.0119522 0.229811 4.49091e-06 1.08109e-06 2.718 ||| 0-1 ||| 251 668016 +a ||| like to mention ||| 0.0166667 0.229811 4.49091e-06 6.04682e-08 2.718 ||| 0-1 ||| 180 668016 +a ||| like to move on to ||| 0.333333 0.0782999 1.49697e-06 8.13332e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| like to move on ||| 0.2 0.0782999 1.49697e-06 9.15315e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| like to note in ||| 0.5 0.229811 1.49697e-06 1.39016e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| like to note ||| 0.0384615 0.229811 1.49697e-06 6.49473e-08 2.718 ||| 0-1 ||| 26 668016 +a ||| like to object ||| 0.166667 0.229811 1.49697e-06 8.95825e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| like to offer them good and ||| 1 0.229811 1.49697e-06 1.24009e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| like to offer them good ||| 1 0.229811 1.49697e-06 9.90017e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| like to offer them ||| 1 0.229811 1.49697e-06 1.90902e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| like to offer ||| 0.0333333 0.229811 1.49697e-06 7.11683e-08 2.718 ||| 0-1 ||| 30 668016 +a ||| like to quote ||| 0.0454545 0.229811 1.49697e-06 2.77457e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| like to refer to ||| 0.0645161 0.229811 2.99394e-06 4.31727e-09 2.718 ||| 0-1 ||| 31 668016 +a ||| like to refer ||| 0.0425532 0.229811 2.99394e-06 4.85861e-08 2.718 ||| 0-1 ||| 47 668016 +a ||| like to remind you ||| 0.015625 0.229811 1.49697e-06 6.2065e-11 2.718 ||| 0-1 ||| 64 668016 +a ||| like to remind ||| 0.0196078 0.229811 1.49697e-06 1.92229e-08 2.718 ||| 0-1 ||| 51 668016 +a ||| like to respond ||| 0.0769231 0.229811 1.49697e-06 1.76677e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| like to return to ||| 0.1 0.229811 1.49697e-06 3.68156e-09 2.718 ||| 0-3 ||| 10 668016 +a ||| like to say something ||| 0.0384615 0.229811 1.49697e-06 3.29113e-10 2.718 ||| 0-1 ||| 26 668016 +a ||| like to say the following ||| 0.166667 0.0720432 1.49697e-06 9.12814e-12 2.718 ||| 0-4 ||| 6 668016 +a ||| like to say ||| 0.00912409 0.229811 7.48485e-06 5.94604e-07 2.718 ||| 0-1 ||| 548 668016 +a ||| like to see more emphasis on ||| 1 0.229811 1.49697e-06 3.42259e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| like to see more emphasis ||| 1 0.229811 1.49697e-06 5.11521e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| like to see more ||| 0.111111 0.229811 1.49697e-06 1.00102e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| like to see ||| 0.0239044 0.229811 8.98182e-06 4.38332e-07 2.718 ||| 0-1 ||| 251 668016 +a ||| like to stress that this is ||| 1 0.229811 1.49697e-06 7.5443e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| like to stress that this ||| 0.333333 0.229811 1.49697e-06 2.40716e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| like to stress that ||| 0.0208333 0.229811 1.49697e-06 3.72544e-10 2.718 ||| 0-1 ||| 48 668016 +a ||| like to stress ||| 0.0108108 0.229811 2.99394e-06 2.21468e-08 2.718 ||| 0-1 ||| 185 668016 +a ||| like to take a brief , ||| 1 0.229811 1.49697e-06 1.27596e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| like to take a brief ||| 1 0.229811 1.49697e-06 1.06994e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| like to take a ||| 0.142857 0.229811 1.49697e-06 4.43959e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| like to take this opportunity ||| 0.0186916 0.229811 2.99394e-06 1.16424e-12 2.718 ||| 0-1 ||| 107 668016 +a ||| like to take this ||| 0.0206186 0.229811 2.99394e-06 6.47162e-09 2.718 ||| 0-1 ||| 97 668016 +a ||| like to take ||| 0.0413793 0.229811 8.98182e-06 1.00158e-06 2.718 ||| 0-1 ||| 145 668016 +a ||| like to thank three people ||| 1 0.229811 1.49697e-06 3.66717e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| like to thank three ||| 1 0.229811 1.49697e-06 4.16629e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| like to thank ||| 0.0119376 0.229811 1.94606e-05 6.58182e-08 2.718 ||| 0-1 ||| 1089 668016 +a ||| like to turn ||| 0.0384615 0.229811 1.49697e-06 1.39475e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| like to ||| 0.0877193 0.229811 0.000576333 0.000622101 2.718 ||| 0-1 ||| 4389 668016 +a ||| like you , ||| 0.00469484 0.0005352 1.49697e-06 1.54603e-08 2.718 ||| 0-1 ||| 213 668016 +a ||| like you to ||| 0.0526316 0.229811 1.49697e-06 2.00858e-06 2.718 ||| 0-2 ||| 19 668016 +a ||| like you ||| 0.00346021 0.0005352 1.49697e-06 1.29641e-07 2.718 ||| 0-1 ||| 289 668016 +a ||| like ||| 0.000438212 0.0001599 1.64667e-05 1.46e-05 2.718 ||| 0-0 ||| 25102 668016 +a ||| likely that ||| 0.00314465 0.0008521 1.49697e-06 5.79612e-08 2.718 ||| 0-1 ||| 318 668016 +a ||| likely to be necessary so ||| 0.5 0.229811 1.49697e-06 3.14765e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| likely to be necessary ||| 0.5 0.229811 1.49697e-06 1.38681e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| likely to be the targets of ||| 1 0.0188479 1.49697e-06 5.90876e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| likely to be ||| 0.00666667 0.229811 2.99394e-06 5.38986e-07 2.718 ||| 0-1 ||| 300 668016 +a ||| likely to generate more ||| 0.5 0.229811 1.49697e-06 7.33521e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| likely to generate ||| 0.333333 0.229811 1.49697e-06 3.21199e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| likely to have ||| 0.0188679 0.229811 1.49697e-06 3.55692e-07 2.718 ||| 0-1 ||| 53 668016 +a ||| likely to improve ||| 0.142857 0.229811 1.49697e-06 1.29372e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| likely to present itself ||| 1 0.229811 1.49697e-06 7.38769e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| likely to present ||| 0.5 0.229811 1.49697e-06 1.08851e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| likely to regard ||| 1 0.229811 1.49697e-06 2.02504e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| likely to strike them down ||| 1 0.229811 1.49697e-06 1.78214e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| likely to strike them ||| 1 0.229811 1.49697e-06 2.55284e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| likely to strike ||| 1 0.229811 1.49697e-06 9.51699e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| likely to ||| 0.0118056 0.229811 2.54485e-05 2.97406e-05 2.718 ||| 0-1 ||| 1440 668016 +a ||| likes of ||| 0.0204082 0.0188479 1.49697e-06 3.51984e-07 2.718 ||| 0-1 ||| 49 668016 +a ||| likewise , to ||| 0.2 0.229811 1.49697e-06 5.84852e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| likewise to ||| 0.25 0.229811 2.99394e-06 4.90422e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| limit at ||| 0.1 0.204175 1.49697e-06 1.65412e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| limit itself to ||| 0.0416667 0.229811 1.49697e-06 1.15546e-08 2.718 ||| 0-2 ||| 24 668016 +a ||| limit on ||| 0.0229885 0.0782999 2.99394e-06 1.84367e-06 2.718 ||| 0-1 ||| 87 668016 +a ||| limit with ||| 1 0.0571592 1.49697e-06 8.11382e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| limited in ||| 0.00854701 0.0587624 1.49697e-06 2.33721e-06 2.718 ||| 0-1 ||| 117 668016 +a ||| limited itself to ||| 0.0526316 0.229811 1.49697e-06 9.24846e-09 2.718 ||| 0-2 ||| 19 668016 +a ||| limited to closely ||| 1 0.229811 1.49697e-06 1.20597e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| limited to two ||| 0.142857 0.229811 1.49697e-06 3.22136e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| limited to ||| 0.013913 0.229811 1.19758e-05 1.36267e-05 2.718 ||| 0-1 ||| 575 668016 +a ||| limits for ||| 0.010101 0.0683377 1.49697e-06 9.94909e-07 2.718 ||| 0-1 ||| 99 668016 +a ||| limits of ||| 0.00287356 0.0188479 1.49697e-06 7.98619e-07 2.718 ||| 0-1 ||| 348 668016 +a ||| limits on ||| 0.0197368 0.0782999 4.49091e-06 1.02426e-06 2.718 ||| 0-1 ||| 152 668016 +a ||| limits to ||| 0.00628931 0.229811 1.49697e-06 9.45814e-06 2.718 ||| 0-1 ||| 159 668016 +a ||| line at ||| 0.0555556 0.204175 1.49697e-06 1.002e-05 2.718 ||| 0-1 ||| 18 668016 +a ||| line by means ||| 1 0.0337966 1.49697e-06 1.53493e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| line by ||| 0.1 0.0337966 2.99394e-06 2.42218e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| line for ||| 0.0208333 0.0683377 1.49697e-06 1.08482e-05 2.718 ||| 0-1 ||| 48 668016 +a ||| line into ||| 1 0.107578 1.49697e-06 1.78827e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| line of ||| 0.00249377 0.0188479 1.49697e-06 8.70791e-06 2.718 ||| 0-1 ||| 401 668016 +a ||| line on ||| 0.0151515 0.0782999 1.49697e-06 1.11682e-05 2.718 ||| 0-1 ||| 66 668016 +a ||| line to ||| 0.0357143 0.229811 4.49091e-06 0.000103129 2.718 ||| 0-1 ||| 84 668016 +a ||| line under ||| 0.047619 0.0384416 2.99394e-06 4.17577e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| line with current ||| 0.142857 0.0571592 1.49697e-06 8.09998e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| line with those of ||| 0.0625 0.0188479 1.49697e-06 4.03199e-11 2.718 ||| 0-3 ||| 16 668016 +a ||| line with ||| 0.0201588 0.0571592 9.88e-05 4.91504e-06 2.718 ||| 0-1 ||| 3274 668016 +a ||| lines , at ||| 0.5 0.204175 1.49697e-06 3.69358e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| lines as that ||| 1 0.0243476 1.49697e-06 1.34285e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| lines as ||| 0.028169 0.0243476 2.99394e-06 7.98288e-07 2.718 ||| 0-1 ||| 71 668016 +a ||| lines in ||| 0.0166667 0.0587624 1.49697e-06 5.46751e-06 2.718 ||| 0-1 ||| 60 668016 +a ||| lines of ||| 0.0125786 0.0188479 8.98182e-06 2.69164e-06 2.718 ||| 0-1 ||| 477 668016 +a ||| lines pull themselves together and rise above ||| 1 0.0015873 1.49697e-06 1.75553e-26 2.718 ||| 0-4 ||| 1 668016 +a ||| lines pull themselves together and rise ||| 1 0.0015873 1.49697e-06 1.35458e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| lines pull themselves together and ||| 1 0.0015873 1.49697e-06 1.07848e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| lines to ||| 0.0571429 0.229811 2.99394e-06 3.18774e-05 2.718 ||| 0-1 ||| 35 668016 +a ||| lining up in ||| 1 0.0587624 1.49697e-06 4.50805e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| link in ||| 0.027027 0.0587624 2.99394e-06 1.47202e-06 2.718 ||| 0-1 ||| 74 668016 +a ||| link to ||| 0.010989 0.229811 1.49697e-06 8.58239e-06 2.718 ||| 0-1 ||| 91 668016 +a ||| linkage to ||| 0.142857 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| linked by ||| 0.0333333 0.0337966 1.49697e-06 3.43087e-07 2.718 ||| 0-1 ||| 30 668016 +a ||| linked to the ||| 0.00102775 0.229811 1.49697e-06 8.96785e-07 2.718 ||| 0-1 ||| 973 668016 +a ||| linked to ||| 0.00764331 0.229811 2.69455e-05 1.46076e-05 2.718 ||| 0-1 ||| 2355 668016 +a ||| linked with ||| 0.00492611 0.0571592 1.49697e-06 6.96186e-07 2.718 ||| 0-1 ||| 203 668016 +a ||| linking aid to ||| 1 0.229811 1.49697e-06 2.47047e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| links to ||| 0.00980392 0.229811 1.49697e-06 4.16859e-06 2.718 ||| 0-1 ||| 102 668016 +a ||| links with ||| 0.00613497 0.0571592 2.99394e-06 1.98672e-07 2.718 ||| 0-1 ||| 326 668016 +a ||| lion 's share to ||| 0.2 0.229811 1.49697e-06 4.37093e-14 2.718 ||| 0-3 ||| 5 668016 +a ||| lip-service to ||| 0.05 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| list in ||| 0.02 0.0587624 1.49697e-06 4.39203e-06 2.718 ||| 0-1 ||| 50 668016 +a ||| list of ||| 0.000784929 0.0188479 2.99394e-06 2.16219e-06 2.718 ||| 0-1 ||| 2548 668016 +a ||| list to ||| 0.0217391 0.229811 1.49697e-06 2.5607e-05 2.718 ||| 0-1 ||| 46 668016 +a ||| listed as a ||| 0.0909091 0.0243476 1.49697e-06 4.19951e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| listed as ||| 0.0232558 0.0243476 1.49697e-06 9.47419e-08 2.718 ||| 0-1 ||| 43 668016 +a ||| listen to because ||| 0.5 0.229811 1.49697e-06 1.73815e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| listen to ||| 0.00395648 0.229811 5.98788e-06 5.28955e-06 2.718 ||| 0-1 ||| 1011 668016 +a ||| listened in ||| 0.166667 0.0587624 1.49697e-06 4.08561e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| listened to ||| 0.00149925 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-1 ||| 667 668016 +a ||| listening to today ||| 1 0.229811 1.49697e-06 1.99195e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| listening to ||| 0.00612557 0.229811 5.98788e-06 4.4138e-06 2.718 ||| 0-1 ||| 653 668016 +a ||| literature ||| 0.00403226 0.0044248 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 248 668016 +a ||| little backrooms with ||| 1 0.0571592 1.49697e-06 1.08117e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| little closer to ||| 0.0909091 0.229811 1.49697e-06 1.208e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| little concerned ||| 0.0625 0.044342 1.49697e-06 1.2931e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| little later on ||| 0.111111 0.0782999 1.49697e-06 5.28193e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| little more to ||| 0.166667 0.229811 1.49697e-06 1.29517e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| little on ||| 0.0188679 0.0782999 1.49697e-06 6.14177e-06 2.718 ||| 0-1 ||| 53 668016 +a ||| little room for manoeuvre ||| 0.037037 0.0683377 1.49697e-06 1.51722e-15 2.718 ||| 0-2 ||| 27 668016 +a ||| little room for ||| 0.0208333 0.0683377 1.49697e-06 2.2312e-10 2.718 ||| 0-2 ||| 48 668016 +a ||| little something to ||| 0.5 0.229811 1.49697e-06 3.13911e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| little to address ||| 0.166667 0.229811 1.49697e-06 4.32727e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| little to promote ||| 0.142857 0.229811 1.49697e-06 3.63536e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| little to ||| 0.0138889 0.229811 5.98788e-06 5.67138e-05 2.718 ||| 0-1 ||| 288 668016 +a ||| little way towards ||| 0.5 0.155507 1.49697e-06 1.17701e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| live in ||| 0.00381679 0.0587624 8.98182e-06 6.05632e-06 2.718 ||| 0-1 ||| 1572 668016 +a ||| live together and join ||| 1 0.207917 1.49697e-06 1.03617e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| live up to ||| 0.0115942 0.229811 5.98788e-06 1.20426e-07 2.718 ||| 0-2 ||| 345 668016 +a ||| live with it ||| 0.0454545 0.0571592 1.49697e-06 2.99267e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| live with us ||| 0.5 0.0571592 1.49697e-06 4.85036e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| live with ||| 0.0058997 0.0571592 2.99394e-06 1.68287e-06 2.718 ||| 0-1 ||| 339 668016 +a ||| lived in ||| 0.00826446 0.0587624 1.49697e-06 6.48891e-07 2.718 ||| 0-1 ||| 121 668016 +a ||| livelihood for ||| 0.0588235 0.0683377 1.49697e-06 1.84243e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| lives beside the ||| 1 0.206522 1.49697e-06 1.0971e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| lives beside ||| 1 0.206522 1.49697e-06 1.78705e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| lives in ||| 0.00628931 0.0587624 2.99394e-06 3.09425e-06 2.718 ||| 0-1 ||| 318 668016 +a ||| lives of ||| 0.00230947 0.0188479 2.99394e-06 1.52329e-06 2.718 ||| 0-1 ||| 866 668016 +a ||| lives on after ||| 1 0.0782999 1.49697e-06 5.29448e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| lives on ||| 0.0266667 0.0782999 2.99394e-06 1.95368e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| livestock to ||| 0.25 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| living at ||| 0.04 0.204175 1.49697e-06 2.85217e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| living by ||| 0.125 0.0337966 1.49697e-06 6.89465e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| living in ||| 0.00100503 0.0587624 2.99394e-06 5.03491e-06 2.718 ||| 0-1 ||| 1990 668016 +a ||| living longer than ||| 1 0.0242272 1.49697e-06 1.9749e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| living off the ||| 1 0.0893962 1.49697e-06 3.93513e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| living off ||| 0.0769231 0.0893962 1.49697e-06 6.40986e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| living on ||| 0.0127389 0.0782999 2.99394e-06 3.179e-06 2.718 ||| 0-1 ||| 157 668016 +a ||| living up to ||| 0.030303 0.229811 1.49697e-06 1.00116e-07 2.718 ||| 0-2 ||| 33 668016 +a ||| loads to ||| 1 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| loans to ||| 0.00862069 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-1 ||| 116 668016 +a ||| local activities . I would like to ||| 1 0.229811 1.49697e-06 3.17778e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| local boots ||| 1 0.0015823 1.49697e-06 1.022e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| local underworld ||| 0.333333 0.0015823 1.49697e-06 5.84e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| local ||| 0.000707071 0.0015823 1.04788e-05 1.46e-05 2.718 ||| 0-0 ||| 9900 668016 +a ||| locally and ||| 0.0188679 0.0739821 1.49697e-06 1.779e-07 2.718 ||| 0-0 0-1 ||| 53 668016 +a ||| located in ||| 0.00655738 0.0587624 2.99394e-06 1.49005e-06 2.718 ||| 0-1 ||| 305 668016 +a ||| location by ||| 0.5 0.0337966 1.49697e-06 9.46162e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| location should be within ||| 0.333333 0.0123496 1.49697e-06 4.59339e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| lock , stock and barrel , to ||| 1 0.229811 1.49697e-06 1.49392e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| lock and key for good ||| 0.5 0.0683377 1.49697e-06 6.26467e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| lock and key for ||| 0.5 0.0683377 1.49697e-06 1.208e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| lock up all ||| 1 0.0195077 1.49697e-06 2.08832e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| lock up ||| 0.0833333 0.0195077 1.49697e-06 4.41936e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| locked up in prison . that is ||| 1 0.0587624 1.49697e-06 3.03403e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| locked up in prison . that ||| 1 0.0587624 1.49697e-06 9.68068e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| locked up in prison . ||| 1 0.0587624 1.49697e-06 5.75491e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| locked up in prison ||| 0.5 0.0587624 1.49697e-06 1.89994e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| locked up in ||| 0.0666667 0.0587624 1.49697e-06 1.55733e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| locust beans . we are therefore dealing ||| 1 0.0008079 1.49697e-06 1.00852e-27 2.718 ||| 0-3 ||| 1 668016 +a ||| locust beans . we are therefore ||| 1 0.0008079 1.49697e-06 9.76305e-24 2.718 ||| 0-3 ||| 1 668016 +a ||| locust beans . we are ||| 1 0.0008079 1.49697e-06 1.16741e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| locust beans . we ||| 1 0.0008079 1.49697e-06 7.69414e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| lodged against ||| 0.333333 0.05146 1.49697e-06 9.3582e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| lodged with ||| 0.0526316 0.0571592 1.49697e-06 6.01024e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| logically to ||| 0.5 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| logs on to ||| 1 0.154056 1.49697e-06 5.31556e-09 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| long as it deals ||| 1 0.0243476 1.49697e-06 1.35105e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| long as it is done ||| 0.333333 0.0243476 1.49697e-06 7.5424e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| long as it is ||| 0.0188679 0.0243476 1.49697e-06 1.65403e-09 2.718 ||| 0-1 ||| 53 668016 +a ||| long as it ||| 0.0277778 0.0243476 2.99394e-06 5.27753e-08 2.718 ||| 0-1 ||| 72 668016 +a ||| long as such matters are dealt with ||| 1 0.0571592 1.49697e-06 3.50428e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| long as you submit to ||| 1 0.229811 1.49697e-06 8.16029e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| long as ||| 0.00379267 0.0243476 4.49091e-06 2.9677e-06 2.718 ||| 0-1 ||| 791 668016 +a ||| long for ||| 0.0135135 0.0683377 1.49697e-06 1.24658e-05 2.718 ||| 0-1 ||| 74 668016 +a ||| long last , of ||| 0.2 0.0188479 1.49697e-06 2.60619e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| long time now , to come to ||| 0.5 0.229811 1.49697e-06 3.60677e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| long time now , to come ||| 0.5 0.229811 1.49697e-06 4.05902e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| long time now , to ||| 0.5 0.229811 1.49697e-06 4.77925e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| long to see ||| 0.333333 0.229811 1.49697e-06 8.35001e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| long to ||| 0.0204082 0.229811 2.99394e-06 0.000118507 2.718 ||| 0-1 ||| 98 668016 +a ||| long way in ||| 0.025 0.0587624 1.49697e-06 4.38145e-08 2.718 ||| 0-2 ||| 40 668016 +a ||| long way to ||| 0.0046729 0.229811 1.49697e-06 2.55454e-07 2.718 ||| 0-2 ||| 214 668016 +a ||| long way towards ||| 0.02 0.155507 1.49697e-06 2.45943e-09 2.718 ||| 0-2 ||| 50 668016 +a ||| long-term projects ||| 0.0625 0.275555 1.49697e-06 1.69824e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| long-term ||| 0.00108011 0.275555 8.98182e-06 0.0034447 2.718 ||| 0-0 ||| 5555 668016 +a ||| longer be on ||| 0.5 0.0782999 1.49697e-06 1.28907e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| longer be open to ||| 1 0.229811 1.49697e-06 1.91883e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| longer being able to ||| 0.166667 0.229811 1.49697e-06 1.56057e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| longer call ||| 0.333333 0.0032909 1.49697e-06 8.90625e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| longer have to do ||| 1 0.229811 1.49697e-06 2.69856e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| longer have to ||| 0.142857 0.229811 1.49697e-06 7.85538e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| longer listen to because ||| 0.5 0.229811 1.49697e-06 3.25903e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| longer listen to ||| 0.5 0.229811 1.49697e-06 9.91791e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| longer on ||| 0.0588235 0.0782999 1.49697e-06 7.11293e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| longer prepared to cover ||| 0.333333 0.229811 1.49697e-06 4.44748e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| longer prepared to ||| 0.25 0.229811 2.99394e-06 5.69459e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| longer term retailers in ||| 0.5 0.0587624 1.49697e-06 1.72542e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| longer than ||| 0.00682594 0.0242272 2.99394e-06 2.35669e-07 2.718 ||| 0-1 ||| 293 668016 +a ||| longer time to reconstruct and help ||| 1 0.229811 1.49697e-06 1.803e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| longer time to reconstruct and ||| 1 0.229811 1.49697e-06 9.45462e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| longer time to reconstruct ||| 1 0.229811 1.49697e-06 7.54806e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| longer time to ||| 0.333333 0.229811 1.49697e-06 1.07829e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| longer to ||| 0.0147059 0.229811 1.49697e-06 6.56815e-05 2.718 ||| 0-1 ||| 68 668016 +a ||| longs to cry ||| 0.2 0.229811 1.49697e-06 6.02519e-13 2.718 ||| 0-1 ||| 5 668016 +a ||| longs to ||| 0.2 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| look at everything in economic terms ||| 1 0.204175 1.49697e-06 2.6153e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| look at everything in economic ||| 1 0.204175 1.49697e-06 2.38274e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| look at everything in ||| 1 0.204175 1.49697e-06 1.96434e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| look at everything ||| 0.333333 0.204175 1.49697e-06 9.17722e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| look at it ||| 0.0144928 0.204175 2.99394e-06 1.76433e-07 2.718 ||| 0-1 ||| 138 668016 +a ||| look at one ||| 0.0588235 0.204175 1.49697e-06 4.13521e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| look at ourselves here ||| 0.5 0.204175 1.49697e-06 6.39968e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| look at ourselves ||| 0.0434783 0.204175 1.49697e-06 3.15597e-09 2.718 ||| 0-1 ||| 23 668016 +a ||| look at the ||| 0.000609756 0.204175 1.49697e-06 6.09088e-07 2.718 ||| 0-1 ||| 1640 668016 +a ||| look at ||| 0.00674374 0.204175 4.19152e-05 9.92132e-06 2.718 ||| 0-1 ||| 4152 668016 +a ||| look back on ||| 0.0454545 0.0782999 1.49697e-06 7.43776e-09 2.718 ||| 0-2 ||| 22 668016 +a ||| look back to ||| 0.0526316 0.229811 2.99394e-06 6.86811e-08 2.718 ||| 0-2 ||| 38 668016 +a ||| look for ||| 0.00579151 0.0683377 4.49091e-06 1.07413e-05 2.718 ||| 0-1 ||| 518 668016 +a ||| look forward to ||| 0.00343053 0.229811 2.99394e-06 5.68156e-08 2.718 ||| 0-2 ||| 583 668016 +a ||| look in ||| 0.0138889 0.0587624 1.49697e-06 1.7514e-05 2.718 ||| 0-1 ||| 72 668016 +a ||| look instead at a number ||| 1 0.204175 1.49697e-06 4.39331e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| look instead at a ||| 1 0.204175 1.49697e-06 8.87896e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| look instead at ||| 1 0.204175 1.49697e-06 2.00311e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| look into it in ||| 0.333333 0.0587624 1.49697e-06 3.19772e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| look into sending ||| 1 0.107578 1.49697e-06 4.07251e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| look into the matter and ||| 0.25 0.107578 1.49697e-06 1.41267e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| look into the matter ||| 0.037037 0.107578 1.49697e-06 1.1278e-10 2.718 ||| 0-1 ||| 27 668016 +a ||| look into the ||| 0.00462963 0.107578 1.49697e-06 1.08704e-07 2.718 ||| 0-1 ||| 216 668016 +a ||| look into this further ||| 0.333333 0.107578 1.49697e-06 5.5294e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| look into this ||| 0.00763359 0.107578 1.49697e-06 1.14409e-08 2.718 ||| 0-1 ||| 131 668016 +a ||| look into ||| 0.00644122 0.107578 5.98788e-06 1.77066e-06 2.718 ||| 0-1 ||| 621 668016 +a ||| look set to ||| 0.5 0.229811 1.49697e-06 5.96748e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| look to ||| 0.0106383 0.229811 5.98788e-06 0.000102113 2.718 ||| 0-1 ||| 376 668016 +a ||| looked after as a ||| 1 0.0243476 1.49697e-06 4.88948e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| looked after as ||| 1 0.0243476 1.49697e-06 1.10308e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| looked at , for example ||| 1 0.204175 1.49697e-06 4.21357e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| looked at , for ||| 1 0.204175 1.49697e-06 1.44746e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| looked at , ||| 0.0714286 0.204175 1.49697e-06 1.88332e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| looked at ||| 0.00570342 0.204175 4.49091e-06 1.57924e-06 2.718 ||| 0-1 ||| 526 668016 +a ||| looked into again ||| 0.5 0.107578 1.49697e-06 1.62992e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| looked into ||| 0.00584795 0.107578 1.49697e-06 2.81848e-07 2.718 ||| 0-1 ||| 171 668016 +a ||| looking after ||| 0.0272109 0.0341027 5.98788e-06 8.8745e-08 2.718 ||| 0-1 ||| 147 668016 +a ||| looking ahead to ||| 0.0151515 0.229811 1.49697e-06 4.03975e-09 2.718 ||| 0-2 ||| 66 668016 +a ||| looking at is ||| 0.166667 0.204175 1.49697e-06 1.12858e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| looking at things ||| 0.04 0.204175 1.49697e-06 1.47999e-09 2.718 ||| 0-1 ||| 25 668016 +a ||| looking at ||| 0.00331345 0.204175 7.48485e-06 3.60095e-06 2.718 ||| 0-1 ||| 1509 668016 +a ||| looking back on ||| 0.0909091 0.0782999 1.49697e-06 2.69954e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| looking back ||| 0.00980392 0.0271936 1.49697e-06 2.72209e-09 2.718 ||| 0-0 0-1 ||| 102 668016 +a ||| looking for the ideal solution , in ||| 1 0.0587624 1.49697e-06 2.28633e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| looking for ||| 0.00363636 0.0683377 2.99394e-06 3.89857e-06 2.718 ||| 0-1 ||| 550 668016 +a ||| looking forward to ||| 0.00456621 0.229811 1.49697e-06 2.06212e-08 2.718 ||| 0-2 ||| 219 668016 +a ||| looking forward very much to getting ||| 1 0.229811 1.49697e-06 8.36839e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| looking forward very much to ||| 0.5 0.229811 1.49697e-06 7.20171e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| looking into ||| 0.00452489 0.107578 1.49697e-06 6.42661e-07 2.718 ||| 0-1 ||| 221 668016 +a ||| looking through ||| 0.1 0.230708 1.49697e-06 8.41015e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| looking to ||| 0.00858369 0.229811 2.99394e-06 3.70619e-05 2.718 ||| 0-1 ||| 233 668016 +a ||| looking upon ||| 1 0.19056 1.49697e-06 2.08585e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| looking ||| 0.00110681 0.0007254 2.99394e-06 3.7e-06 2.718 ||| 0-0 ||| 1807 668016 +a ||| looks after ||| 0.0526316 0.0341027 1.49697e-06 2.20604e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| looks at ||| 0.01 0.204175 2.99394e-06 8.95131e-07 2.718 ||| 0-1 ||| 200 668016 +a ||| loophole for ||| 0.0666667 0.0683377 1.49697e-06 4.05334e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| loosely from ||| 1 0.0435582 1.49697e-06 1.00783e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| lose out in ||| 0.037037 0.0587624 1.49697e-06 7.61763e-09 2.718 ||| 0-2 ||| 27 668016 +a ||| lose out ||| 0.00581395 0.0669777 1.49697e-06 1.35743e-07 2.718 ||| 0-1 ||| 172 668016 +a ||| lose sight of ||| 0.00268097 0.0188479 1.49697e-06 2.25181e-11 2.718 ||| 0-2 ||| 373 668016 +a ||| loss of human life ||| 0.0181818 0.0188479 1.49697e-06 2.32802e-14 2.718 ||| 0-1 ||| 55 668016 +a ||| loss of human ||| 0.166667 0.0188479 1.49697e-06 1.53664e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| loss of the ||| 0.0136986 0.0188479 1.49697e-06 7.64484e-08 2.718 ||| 0-1 ||| 73 668016 +a ||| loss of ||| 0.0010582 0.0188479 2.99394e-06 1.24525e-06 2.718 ||| 0-1 ||| 1890 668016 +a ||| loss will be ||| 0.333333 0.0561595 1.49697e-06 1.07455e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| loss will ||| 0.5 0.0561595 1.49697e-06 5.92924e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| losses in the number of ||| 1 0.0587624 1.49697e-06 8.23526e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| losses in the number ||| 1 0.0587624 1.49697e-06 1.51484e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| losses in the ||| 0.0714286 0.0587624 1.49697e-06 3.06152e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| losses in ||| 0.0172414 0.0587624 1.49697e-06 4.98685e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| lost all ||| 0.0208333 0.0038996 1.49697e-06 3.14714e-08 2.718 ||| 0-1 ||| 48 668016 +a ||| lost every year ||| 0.166667 0.0116434 1.49697e-06 3.51082e-12 2.718 ||| 0-1 ||| 6 668016 +a ||| lost every ||| 0.142857 0.0116434 1.49697e-06 1.40771e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| lost in the ||| 0.0169492 0.0587624 1.49697e-06 2.0988e-07 2.718 ||| 0-1 ||| 59 668016 +a ||| lost in ||| 0.0129032 0.0587624 2.99394e-06 3.41869e-06 2.718 ||| 0-1 ||| 155 668016 +a ||| lost on ||| 0.0416667 0.0782999 1.49697e-06 2.15854e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| lost out in ||| 1 0.0587624 1.49697e-06 1.3095e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| lost their lives in ||| 0.0188679 0.0587624 1.49697e-06 2.04074e-13 2.718 ||| 0-3 ||| 53 668016 +a ||| lost to ||| 0.0232558 0.229811 1.49697e-06 1.99322e-05 2.718 ||| 0-1 ||| 43 668016 +a ||| lot about how ||| 0.333333 0.0526361 1.49697e-06 2.33346e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| lot about ||| 0.037037 0.0526361 1.49697e-06 6.51078e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| lot in ||| 0.0333333 0.0587624 1.49697e-06 7.76266e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| lot more to discover ||| 1 0.229811 1.49697e-06 5.58133e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| lot more to ||| 0.166667 0.229811 1.49697e-06 1.03358e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| lot of hot air ||| 0.166667 0.0188479 1.49697e-06 1.66348e-15 2.718 ||| 0-1 ||| 6 668016 +a ||| lot of hot ||| 0.2 0.0188479 1.49697e-06 3.01902e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| lot of ||| 0.0032591 0.0188479 8.98182e-06 3.82154e-06 2.718 ||| 0-1 ||| 1841 668016 +a ||| lot to ||| 0.0377358 0.229811 5.98788e-06 4.5259e-05 2.718 ||| 0-1 ||| 106 668016 +a ||| lots to ||| 0.4 0.229811 2.99394e-06 1.5063e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| love to children ||| 1 0.229811 1.49697e-06 1.98341e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| love to ||| 0.0357143 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| loved ||| 0.0172414 0.0928144 1.49697e-06 2.83e-05 2.718 ||| 0-0 ||| 58 668016 +a ||| low as ||| 0.015625 0.0243476 1.49697e-06 3.15806e-07 2.718 ||| 0-1 ||| 64 668016 +a ||| low threshold for ||| 0.5 0.0683377 1.49697e-06 1.52553e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| low-priced ||| 0.1 0.24 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| lower part of all the islands in ||| 0.5 0.0587624 1.49697e-06 2.28468e-19 2.718 ||| 0-6 ||| 2 668016 +a ||| lower than ||| 0.00215517 0.0242272 1.49697e-06 3.21766e-08 2.718 ||| 0-1 ||| 464 668016 +a ||| luck for ||| 0.0555556 0.0683377 1.49697e-06 3.5743e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| luck to ||| 0.047619 0.229811 1.49697e-06 3.39793e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| luck with ||| 0.0454545 0.0571592 1.49697e-06 1.61942e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| luck would have it , in ||| 1 0.0587624 1.49697e-06 8.67503e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| lured into ||| 0.125 0.107578 1.49697e-06 4.25201e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| lured ||| 0.0740741 0.145833 2.99394e-06 6.4e-06 2.718 ||| 0-0 ||| 27 668016 +a ||| m to ||| 0.1875 0.229811 4.49091e-06 2.03175e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| made , against ||| 1 0.05146 1.49697e-06 6.49393e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| made a direct appeal to ||| 0.333333 0.229811 1.49697e-06 4.84278e-14 2.718 ||| 0-4 ||| 3 668016 +a ||| made a ||| 0.000490918 0.00052005 1.49697e-06 9.25494e-09 2.718 ||| 0-0 0-1 ||| 2037 668016 +a ||| made about ||| 0.0078125 0.0526361 1.49697e-06 1.05563e-05 2.718 ||| 0-1 ||| 128 668016 +a ||| made accessible to ||| 0.05 0.229811 1.49697e-06 9.53955e-09 2.718 ||| 0-2 ||| 20 668016 +a ||| made against ||| 0.015625 0.05146 1.49697e-06 5.44543e-06 2.718 ||| 0-1 ||| 64 668016 +a ||| made all at ||| 0.125 0.204175 1.49697e-06 3.36909e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| made all the ||| 0.0294118 0.0038996 1.49697e-06 7.11306e-08 2.718 ||| 0-1 ||| 34 668016 +a ||| made all ||| 0.0188679 0.0038996 1.49697e-06 1.15863e-06 2.718 ||| 0-1 ||| 53 668016 +a ||| made and ||| 0.0027027 0.0015873 1.49697e-06 4.04192e-06 2.718 ||| 0-1 ||| 370 668016 +a ||| made applications in ||| 0.5 0.0587624 1.49697e-06 1.76205e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| made as rapporteurs to ||| 1 0.229811 1.49697e-06 5.91561e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| made as ||| 0.00934579 0.0243476 1.49697e-06 1.83764e-05 2.718 ||| 0-1 ||| 107 668016 +a ||| made at a ||| 0.0666667 0.204175 1.49697e-06 3.16031e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| made at the ||| 0.00581395 0.204175 1.49697e-06 4.37707e-06 2.718 ||| 0-1 ||| 172 668016 +a ||| made at ||| 0.0303867 0.204175 1.64667e-05 7.12974e-05 2.718 ||| 0-1 ||| 362 668016 +a ||| made available for ||| 0.0545455 0.0683377 8.98182e-06 2.45542e-08 2.718 ||| 0-2 ||| 110 668016 +a ||| made available to ||| 0.015748 0.229811 8.98182e-06 2.33426e-07 2.718 ||| 0-2 ||| 381 668016 +a ||| made by ||| 0.00151057 0.0337966 8.98182e-06 1.7235e-05 2.718 ||| 0-1 ||| 3972 668016 +a ||| made down through ||| 0.5 0.230708 1.49697e-06 1.16246e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| made even more ||| 0.0333333 0.0495435 1.49697e-06 9.33577e-09 2.718 ||| 0-1 ||| 30 668016 +a ||| made even ||| 0.0285714 0.0495435 1.49697e-06 4.088e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| made for representatives of ||| 0.5 0.0683377 1.49697e-06 1.35962e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| made for representatives ||| 0.5 0.0683377 1.49697e-06 2.50096e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| made for ||| 0.0275482 0.0683377 1.49697e-05 7.71902e-05 2.718 ||| 0-1 ||| 363 668016 +a ||| made from ||| 0.00947867 0.0435582 2.99394e-06 1.508e-05 2.718 ||| 0-1 ||| 211 668016 +a ||| made in ... ' labelling ||| 0.333333 0.0587624 1.49697e-06 2.0297e-16 2.718 ||| 0-1 ||| 3 668016 +a ||| made in ... ' ||| 0.333333 0.0587624 1.49697e-06 1.52609e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| made in ... ||| 0.333333 0.0587624 1.49697e-06 4.44289e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| made in a ||| 0.0227273 0.0587624 1.49697e-06 5.57888e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| made in respect ||| 0.0588235 0.0587624 1.49697e-06 5.44474e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| made in the ||| 0.00123916 0.0587624 1.49697e-06 7.72682e-06 2.718 ||| 0-1 ||| 807 668016 +a ||| made in their ||| 0.111111 0.0587624 1.49697e-06 1.45885e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| made in ||| 0.010333 0.0587624 4.04182e-05 0.000125861 2.718 ||| 0-1 ||| 2613 668016 +a ||| made into something ||| 0.5 0.107578 1.49697e-06 7.04298e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| made into ||| 0.0294118 0.107578 1.49697e-06 1.27244e-05 2.718 ||| 0-1 ||| 34 668016 +a ||| made it clear to ||| 0.0232558 0.229811 1.49697e-06 4.34419e-09 2.718 ||| 0-3 ||| 43 668016 +a ||| made it possible to ||| 0.00671141 0.229811 1.49697e-06 1.0467e-08 2.718 ||| 0-3 ||| 149 668016 +a ||| made much tighter at ||| 1 0.204175 1.49697e-06 4.86616e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| made of ||| 0.0326087 0.0188479 2.24546e-05 6.1961e-05 2.718 ||| 0-1 ||| 460 668016 +a ||| made on the ||| 0.0102564 0.0782999 2.99394e-06 4.87865e-06 2.718 ||| 0-1 ||| 195 668016 +a ||| made on your side ||| 1 0.0782999 1.49697e-06 4.45759e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| made on your ||| 1 0.0782999 1.49697e-06 2.03357e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| made on ||| 0.0200308 0.0782999 1.94606e-05 7.94675e-05 2.718 ||| 0-1 ||| 649 668016 +a ||| made once again ||| 0.25 0.0700825 1.49697e-06 1.98731e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| made out to ||| 0.111111 0.229811 1.49697e-06 2.81079e-06 2.718 ||| 0-2 ||| 9 668016 +a ||| made reality by ||| 1 0.0337966 1.49697e-06 1.15302e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| made redundant ||| 0.00636943 0.0502646 2.99394e-06 7.26896e-08 2.718 ||| 0-1 ||| 314 668016 +a ||| made standard in ||| 0.25 0.0587624 1.49697e-06 5.92804e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| made their way to ||| 0.25 0.229811 1.49697e-06 1.83347e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| made themselves liable to ||| 0.166667 0.229811 1.49697e-06 5.32889e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| made to achieving ||| 0.333333 0.229811 1.49697e-06 4.85783e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| made to also involve all ||| 1 0.229811 1.49697e-06 8.6306e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| made to also involve ||| 1 0.229811 1.49697e-06 1.82643e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| made to also ||| 1 0.229811 1.49697e-06 3.70472e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| made to extradite ||| 1 0.229811 1.49697e-06 2.93525e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| made to the fact ||| 0.142857 0.229811 1.49697e-06 1.31965e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| made to the ||| 0.00430108 0.229811 2.99394e-06 4.505e-05 2.718 ||| 0-1 ||| 465 668016 +a ||| made to ||| 0.0681818 0.229811 0.000166164 0.000733812 2.718 ||| 0-1 ||| 1628 668016 +a ||| made towards ||| 0.0149254 0.155507 2.99394e-06 7.06492e-06 2.718 ||| 0-1 ||| 134 668016 +a ||| made up of ||| 0.00208768 0.0188479 1.49697e-06 2.11318e-07 2.718 ||| 0-2 ||| 479 668016 +a ||| made up ||| 0.00182815 0.0195077 1.49697e-06 2.57158e-06 2.718 ||| 0-1 ||| 547 668016 +a ||| made via ||| 0.05 0.330861 1.49697e-06 2.90046e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| made with ||| 0.00722022 0.0571592 2.99394e-06 3.49729e-05 2.718 ||| 0-1 ||| 277 668016 +a ||| made ||| 0.000268754 0.0004578 1.19758e-05 2.19e-05 2.718 ||| 0-0 ||| 29767 668016 +a ||| mail at ||| 1 0.204175 1.49697e-06 1.22527e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| main , to ||| 0.25 0.229811 1.49697e-06 4.16498e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| main body of ||| 0.0625 0.0188479 1.49697e-06 2.52432e-10 2.718 ||| 0-2 ||| 16 668016 +a ||| main goal is to help ||| 0.5 0.244893 1.49697e-06 2.41181e-13 2.718 ||| 0-3 0-4 ||| 2 668016 +a ||| main goal of Lisbon will be to ||| 1 0.229811 1.49697e-06 2.29364e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| mainly benefit ||| 0.05 0.0326298 1.49697e-06 1.29449e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| mainly by ||| 0.00757576 0.0337966 1.49697e-06 3.85047e-07 2.718 ||| 0-1 ||| 132 668016 +a ||| mainly for ||| 0.0119048 0.0683377 1.49697e-06 1.72451e-06 2.718 ||| 0-1 ||| 84 668016 +a ||| mainly of ||| 0.0120482 0.0188479 1.49697e-06 1.38427e-06 2.718 ||| 0-1 ||| 83 668016 +a ||| mainly to ||| 0.0241935 0.229811 8.98182e-06 1.63941e-05 2.718 ||| 0-1 ||| 248 668016 +a ||| mainly ||| 0.000223015 0.0005824 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 4484 668016 +a ||| maintained in the ||| 0.0344828 0.0587624 1.49697e-06 1.30207e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| maintained in ||| 0.0217391 0.0587624 2.99394e-06 2.12091e-06 2.718 ||| 0-1 ||| 92 668016 +a ||| major danger to ||| 1 0.229811 1.49697e-06 1.65816e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| major effect on ||| 0.0833333 0.0782999 1.49697e-06 1.22503e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| major issue for ||| 0.0434783 0.0683377 1.49697e-06 2.69946e-09 2.718 ||| 0-2 ||| 23 668016 +a ||| major national differences in ||| 1 0.0587624 1.49697e-06 1.74881e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| major part in ||| 0.0277778 0.0587624 1.49697e-06 6.93382e-09 2.718 ||| 0-2 ||| 36 668016 +a ||| majority because we ||| 0.166667 0.0052046 1.49697e-06 1.47818e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| majority because ||| 0.0833333 0.0052046 1.49697e-06 1.30209e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| majority in ||| 0.00093633 0.0587624 1.49697e-06 2.42132e-06 2.718 ||| 0-1 ||| 1068 668016 +a ||| majority of ||| 0.000632511 0.0188479 4.49091e-06 1.19201e-06 2.718 ||| 0-1 ||| 4743 668016 +a ||| majority to try to limit ||| 0.5 0.229811 1.49697e-06 9.38862e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| majority to try to ||| 0.5 0.229811 1.49697e-06 1.93181e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| majority to try ||| 0.5 0.229811 1.49697e-06 2.17404e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| majority to ||| 0.0140845 0.229811 1.49697e-06 1.41172e-05 2.718 ||| 0-1 ||| 71 668016 +a ||| majority voting ||| 0.00318471 0.075849 1.49697e-06 3.09705e-08 2.718 ||| 0-1 ||| 314 668016 +a ||| make a presentation to ||| 1 0.229811 1.49697e-06 4.2634e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| make a renewed ||| 0.333333 0.0033044 1.49697e-06 1.03607e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| make a statement pursuant to ||| 0.5 0.229811 1.49697e-06 2.75407e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| make a ||| 0.00151019 0.0033044 8.98182e-06 7.96978e-06 2.718 ||| 0-0 ||| 3973 668016 +a ||| make absolutely no difference at ||| 0.5 0.204175 1.49697e-06 1.14183e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| make an application in ||| 1 0.0587624 1.49697e-06 2.82159e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| make an effort on ||| 0.333333 0.0782999 1.49697e-06 2.59318e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| make an ||| 0.0012285 0.0033044 1.49697e-06 7.99157e-07 2.718 ||| 0-0 ||| 814 668016 +a ||| make approaches to ||| 0.25 0.229811 1.49697e-06 6.57454e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| make as to whether , and to ||| 1 0.229811 1.49697e-06 2.16606e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| make as to whether , and ||| 1 0.229811 1.49697e-06 2.43766e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| make as to whether , ||| 1 0.229811 1.49697e-06 1.9461e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| make as to whether ||| 1 0.229811 1.49697e-06 1.63188e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| make as to ||| 0.5 0.229811 1.49697e-06 6.21197e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| make at ||| 0.0740741 0.204175 2.99394e-06 5.91467e-05 2.718 ||| 0-1 ||| 27 668016 +a ||| make do with ||| 0.0350877 0.0571592 2.99394e-06 9.96675e-08 2.718 ||| 0-2 ||| 57 668016 +a ||| make even lunch difficult ||| 1 0.0495435 1.49697e-06 1.053e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| make even lunch ||| 1 0.0495435 1.49697e-06 8.47829e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| make even ||| 0.0588235 0.0495435 1.49697e-06 3.39132e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| make every effort ||| 0.00302115 0.0116434 1.49697e-06 3.8049e-11 2.718 ||| 0-1 ||| 331 668016 +a ||| make every ||| 0.00258398 0.0116434 1.49697e-06 4.29932e-07 2.718 ||| 0-1 ||| 387 668016 +a ||| make for ||| 0.00775194 0.0683377 1.49697e-06 6.40353e-05 2.718 ||| 0-1 ||| 129 668016 +a ||| make in ||| 0.0211268 0.0587624 4.49091e-06 0.000104411 2.718 ||| 0-1 ||| 142 668016 +a ||| make it easier for ||| 0.0070922 0.0683377 1.49697e-06 7.9485e-11 2.718 ||| 0-3 ||| 141 668016 +a ||| make it easier to ||| 0.0117647 0.229811 1.49697e-06 7.55627e-10 2.718 ||| 0-3 ||| 85 668016 +a ||| make it possible for ||| 0.00487805 0.0683377 1.49697e-06 9.13394e-10 2.718 ||| 0-3 ||| 205 668016 +a ||| make it possible to ||| 0.00940439 0.229811 4.49091e-06 8.68321e-09 2.718 ||| 0-3 ||| 319 668016 +a ||| make it possible ||| 0.00181818 0.0033044 1.49697e-06 2.56465e-09 2.718 ||| 0-0 ||| 550 668016 +a ||| make it to ||| 0.117647 0.229811 2.99394e-06 1.08256e-05 2.718 ||| 0-2 ||| 17 668016 +a ||| make it ||| 0.00114613 0.0033044 5.98788e-06 3.19742e-06 2.718 ||| 0-0 ||| 3490 668016 +a ||| make of ||| 0.028169 0.0188479 2.99394e-06 5.14015e-05 2.718 ||| 0-1 ||| 71 668016 +a ||| make our methods and systems available as ||| 1 0.0243476 1.49697e-06 1.39444e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| make payments from ||| 1 0.0435582 1.49697e-06 4.14083e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| make room for some ||| 0.5 0.0683377 1.49697e-06 2.60879e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| make room for ||| 0.0416667 0.0683377 1.49697e-06 2.39492e-09 2.718 ||| 0-2 ||| 24 668016 +a ||| make some reference to ||| 0.166667 0.229811 1.49697e-06 5.65638e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| make spending ||| 0.5 0.0033044 1.49697e-06 3.81176e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| make the ||| 0.00066335 0.0033044 2.99394e-06 1.10382e-05 2.718 ||| 0-0 ||| 3015 668016 +a ||| make their living by ||| 0.25 0.0337966 1.49697e-06 1.38878e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| make their living ||| 0.0526316 0.0033044 1.49697e-06 1.74644e-11 2.718 ||| 0-0 ||| 19 668016 +a ||| make their way to ||| 0.25 0.229811 1.49697e-06 1.52101e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| make their ||| 0.00344828 0.0033044 1.49697e-06 2.08406e-07 2.718 ||| 0-0 ||| 290 668016 +a ||| make them in ||| 0.25 0.0587624 1.49697e-06 2.80073e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| make them ||| 0.00382409 0.0045234 2.99394e-06 3.88572e-07 2.718 ||| 0-1 ||| 523 668016 +a ||| make to ||| 0.111538 0.229811 4.34121e-05 0.000608754 2.718 ||| 0-1 ||| 260 668016 +a ||| make up large groups of ||| 0.5 0.0188479 1.49697e-06 1.78372e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| make up ||| 0.00153139 0.0195077 1.49697e-06 2.13332e-06 2.718 ||| 0-1 ||| 653 668016 +a ||| make upon the ||| 0.333333 0.19056 1.49697e-06 2.10333e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| make upon ||| 0.666667 0.19056 2.99394e-06 3.42607e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| make with regard to ||| 0.111111 0.229811 1.49697e-06 2.65052e-09 2.718 ||| 0-3 ||| 9 668016 +a ||| make ||| 0.00270117 0.0033044 0.00011377 0.0001798 2.718 ||| 0-0 ||| 28136 668016 +a ||| makes any sense to ||| 0.5 0.229811 1.49697e-06 1.60291e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| makes choice of loss ||| 0.25 0.0188479 1.49697e-06 9.43597e-15 2.718 ||| 0-2 ||| 4 668016 +a ||| makes choice of ||| 0.25 0.0188479 1.49697e-06 2.24132e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| makes for a ||| 0.0357143 0.0683377 1.49697e-06 2.77504e-07 2.718 ||| 0-1 ||| 28 668016 +a ||| makes for ||| 0.0235294 0.0683377 2.99394e-06 6.26056e-06 2.718 ||| 0-1 ||| 85 668016 +a ||| makes in ||| 0.0625 0.0587624 1.49697e-06 1.0208e-05 2.718 ||| 0-1 ||| 16 668016 +a ||| makes it really too difficult to organise ||| 0.25 0.229811 1.49697e-06 9.01286e-22 2.718 ||| 0-5 ||| 4 668016 +a ||| makes it really too difficult to ||| 0.25 0.229811 1.49697e-06 8.66621e-17 2.718 ||| 0-5 ||| 4 668016 +a ||| makes love to children ||| 1 0.229811 1.49697e-06 3.36981e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| makes love to ||| 1 0.229811 1.49697e-06 4.52323e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| makes no attempt to try to ||| 0.5 0.229811 1.49697e-06 5.2935e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| makes them think of ||| 0.5 0.0188479 1.49697e-06 5.15614e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| makes to ||| 0.176471 0.229811 8.98182e-06 5.95162e-05 2.718 ||| 0-1 ||| 34 668016 +a ||| makes ||| 0.000160411 0.0001055 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 6234 668016 +a ||| making , for example ||| 0.25 0.0683377 1.49697e-06 4.92107e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| making , for ||| 0.2 0.0683377 1.49697e-06 1.69051e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| making a ||| 0.00447928 0.0275406 5.98788e-06 2.02303e-05 2.718 ||| 0-0 ||| 893 668016 +a ||| making any living at ||| 1 0.204175 1.49697e-06 1.65923e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| making at ||| 0.0333333 0.204175 1.49697e-06 1.30934e-05 2.718 ||| 0-1 ||| 30 668016 +a ||| making in ||| 0.00909091 0.0587624 1.49697e-06 2.31137e-05 2.718 ||| 0-1 ||| 110 668016 +a ||| making it possible to ||| 0.010101 0.229811 1.49697e-06 1.92222e-09 2.718 ||| 0-3 ||| 99 668016 +a ||| making it ||| 0.00214362 0.0275406 2.99394e-06 8.11625e-06 2.718 ||| 0-0 ||| 933 668016 +a ||| making of ||| 0.015625 0.0231942 1.49697e-06 1.34996e-05 2.718 ||| 0-0 0-1 ||| 64 668016 +a ||| making presentations and on those ||| 1 0.0782999 1.49697e-06 5.29464e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| making presentations and on ||| 1 0.0782999 1.49697e-06 7.31203e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| making progress ||| 0.00286533 0.0275406 1.49697e-06 6.01079e-08 2.718 ||| 0-0 ||| 349 668016 +a ||| making the same ||| 0.0625 0.0275406 1.49697e-06 2.25471e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| making the ||| 0.00260643 0.0275406 4.49091e-06 2.80192e-05 2.718 ||| 0-0 ||| 1151 668016 +a ||| making them pay extra to watch ||| 1 0.229811 1.49697e-06 2.31076e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| making them pay extra to ||| 1 0.229811 1.49697e-06 1.28376e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| making them ||| 0.004 0.0275406 1.49697e-06 1.22425e-06 2.718 ||| 0-0 ||| 250 668016 +a ||| making to ||| 0.0340909 0.229811 4.49091e-06 0.000134761 2.718 ||| 0-1 ||| 88 668016 +a ||| making war on ||| 0.2 0.0782999 1.49697e-06 5.41431e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| making ||| 0.0064595 0.0275406 0.000110776 0.0004564 2.718 ||| 0-0 ||| 11456 668016 +a ||| male ||| 0.00257732 0.0019841 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 388 668016 +a ||| maltreated ||| 0.0625 0.115385 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 16 668016 +a ||| man and woman on ||| 0.142857 0.0782999 1.49697e-06 5.2365e-13 2.718 ||| 0-3 ||| 7 668016 +a ||| man for ||| 0.0454545 0.0683377 1.49697e-06 2.34725e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| man in the ||| 0.0227273 0.0587624 1.49697e-06 2.34962e-07 2.718 ||| 0-1 ||| 44 668016 +a ||| man in ||| 0.0273973 0.0587624 2.99394e-06 3.82726e-06 2.718 ||| 0-1 ||| 73 668016 +a ||| man to allow ||| 0.25 0.229811 1.49697e-06 5.41343e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| man to ||| 0.03125 0.229811 1.49697e-06 2.23142e-05 2.718 ||| 0-1 ||| 32 668016 +a ||| man ||| 0.000475059 0.0003785 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2105 668016 +a ||| man-portable ||| 1 1 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| manage in ||| 0.0666667 0.0587624 1.49697e-06 2.67968e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| manage to make progress ||| 0.5 0.229811 1.49697e-06 3.57571e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| manage to make ||| 0.0833333 0.229811 1.49697e-06 2.71504e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| manage to survive ||| 0.25 0.229811 1.49697e-06 9.0616e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| manage to ||| 0.0192837 0.229811 1.04788e-05 1.56235e-05 2.718 ||| 0-1 ||| 363 668016 +a ||| managed by ||| 0.00384615 0.0337966 1.49697e-06 4.61563e-07 2.718 ||| 0-1 ||| 260 668016 +a ||| managed to achieve a situation in which ||| 1 0.0587624 1.49697e-06 1.32709e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| managed to achieve a situation in ||| 1 0.0587624 1.49697e-06 1.56228e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| managed to do ||| 0.0204082 0.229811 1.49697e-06 6.75102e-08 2.718 ||| 0-1 ||| 49 668016 +a ||| managed to engage in ||| 1 0.229811 1.49697e-06 2.04431e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| managed to engage ||| 0.5 0.229811 1.49697e-06 9.55083e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| managed to qualify to ||| 1 0.229811 1.49697e-06 1.01282e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| managed to reach ||| 0.00980392 0.206202 1.49697e-06 2.88254e-08 2.718 ||| 0-1 0-2 ||| 102 668016 +a ||| managed to supply half ||| 0.25 0.229811 1.49697e-06 2.91477e-14 2.718 ||| 0-1 ||| 4 668016 +a ||| managed to supply ||| 0.25 0.229811 1.49697e-06 1.01207e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| managed to ||| 0.00576184 0.229811 1.34727e-05 1.96519e-05 2.718 ||| 0-1 ||| 1562 668016 +a ||| managed with ||| 0.0625 0.0571592 1.49697e-06 9.36595e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| management of the ||| 0.00160772 0.0188479 1.49697e-06 7.9717e-08 2.718 ||| 0-1 ||| 622 668016 +a ||| management of ||| 0.00183402 0.0188479 5.98788e-06 1.2985e-06 2.718 ||| 0-1 ||| 2181 668016 +a ||| management thereof ||| 0.0833333 0.0101351 1.49697e-06 1.1853e-10 2.718 ||| 0-1 ||| 12 668016 +a ||| manager asking ||| 1 0.0319755 1.49697e-06 1.4663e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| manages to ||| 0.0113636 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-1 ||| 88 668016 +a ||| managing to get ||| 1 0.229811 1.49697e-06 1.43963e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| managing to recover ||| 0.166667 0.229811 1.49697e-06 1.41592e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| managing to ||| 0.0350877 0.229811 5.98788e-06 3.29284e-06 2.718 ||| 0-1 ||| 114 668016 +a ||| mandate for ||| 0.00452489 0.0683377 1.49697e-06 8.21722e-07 2.718 ||| 0-1 ||| 221 668016 +a ||| mandate from ||| 0.0125 0.0435582 1.49697e-06 1.60533e-07 2.718 ||| 0-1 ||| 80 668016 +a ||| mandate must be drafted in such ||| 1 0.0587624 1.49697e-06 2.18184e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| mandate must be drafted in ||| 1 0.0587624 1.49697e-06 1.05459e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| manifests itself as ||| 0.333333 0.0243476 1.49697e-06 2.38153e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| manner as ||| 0.0322581 0.0243476 1.49697e-06 1.71062e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| manner in which they adopt ||| 1 0.0587624 1.49697e-06 3.37838e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| manner in which they ||| 0.142857 0.0587624 1.49697e-06 3.24845e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| manner in which ||| 0.00436681 0.0587624 1.49697e-06 9.95235e-08 2.718 ||| 0-1 ||| 229 668016 +a ||| manner in ||| 0.00746269 0.0587624 2.99394e-06 1.17161e-05 2.718 ||| 0-1 ||| 268 668016 +a ||| manner to ||| 0.1 0.229811 2.99394e-06 6.83088e-05 2.718 ||| 0-1 ||| 20 668016 +a ||| manoeuvre for ||| 0.0769231 0.0683377 1.49697e-06 2.5057e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| manufactured at ||| 0.166667 0.204175 1.49697e-06 1.46352e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| manufacturers to ||| 0.011236 0.229811 1.49697e-06 2.52217e-06 2.718 ||| 0-1 ||| 89 668016 +a ||| many - to ||| 0.5 0.229811 1.49697e-06 4.53627e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| many as ||| 0.0143885 0.0243476 2.99394e-06 3.01156e-06 2.718 ||| 0-1 ||| 139 668016 +a ||| many of my ||| 0.003003 0.0188479 1.49697e-06 6.53023e-09 2.718 ||| 0-1 ||| 333 668016 +a ||| many of the EU Member States have ||| 1 0.0188479 1.49697e-06 9.0714e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| many of the EU Member States ||| 0.25 0.0188479 1.49697e-06 7.58491e-17 2.718 ||| 0-1 ||| 4 668016 +a ||| many of the EU Member ||| 1 0.0188479 1.49697e-06 1.58946e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| many of the EU ||| 1 0.0188479 1.49697e-06 3.08454e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| many of the ||| 0.000419639 0.0188479 1.49697e-06 6.23391e-07 2.718 ||| 0-1 ||| 2383 668016 +a ||| many of ||| 0.000980118 0.0188479 1.04788e-05 1.01543e-05 2.718 ||| 0-1 ||| 7142 668016 +a ||| many thanks ||| 0.00229885 0.0002481 1.49697e-06 8.91e-10 2.718 ||| 0-0 ||| 435 668016 +a ||| many ||| 0.000149576 0.0002481 1.04788e-05 1.1e-05 2.718 ||| 0-0 ||| 46799 668016 +a ||| march on ||| 0.142857 0.0782999 1.49697e-06 1.51742e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| marginalised by ||| 0.2 0.0337966 1.49697e-06 2.05688e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| marginalization of ||| 0.0588235 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| margins of ||| 0.0194175 0.0188479 2.99394e-06 1.71555e-07 2.718 ||| 0-1 ||| 103 668016 +a ||| mark in ||| 0.0416667 0.0587624 1.49697e-06 3.26248e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| mark over ||| 0.133333 0.0682544 2.99394e-06 1.26133e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| mark the final shot in ||| 0.5 0.0587624 1.49697e-06 1.71159e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| mark the ||| 0.00662252 0.0004654 1.49697e-06 8.32148e-08 2.718 ||| 0-1 ||| 151 668016 +a ||| marked contrast to ||| 0.1 0.229811 1.49697e-06 1.30477e-10 2.718 ||| 0-2 ||| 10 668016 +a ||| market , to ||| 0.04 0.229811 1.49697e-06 9.44118e-06 2.718 ||| 0-2 ||| 25 668016 +a ||| market in the ||| 0.00934579 0.0587624 1.49697e-06 8.33617e-07 2.718 ||| 0-1 ||| 107 668016 +a ||| market in ||| 0.00123457 0.0587624 1.49697e-06 1.35786e-05 2.718 ||| 0-1 ||| 810 668016 +a ||| market of ||| 0.00613497 0.0188479 1.49697e-06 6.68474e-06 2.718 ||| 0-1 ||| 163 668016 +a ||| market on ||| 0.0196078 0.0782999 1.49697e-06 8.57345e-06 2.718 ||| 0-1 ||| 51 668016 +a ||| market policy in ||| 0.125 0.0587624 1.49697e-06 5.34591e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| market that will touch ||| 1 0.0561595 1.49697e-06 1.17792e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| market that will ||| 0.5 0.0561595 1.49697e-06 5.35417e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| market to ||| 0.010453 0.229811 4.49091e-06 7.91682e-05 2.718 ||| 0-1 ||| 287 668016 +a ||| markets to ||| 0.00555556 0.229811 1.49697e-06 9.84347e-06 2.718 ||| 0-1 ||| 180 668016 +a ||| marking to ||| 0.166667 0.229811 1.49697e-06 2.52217e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| massacred ||| 0.012987 0.0153846 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 77 668016 +a ||| massive amounts in ||| 0.5 0.0587624 1.49697e-06 5.63424e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| massive yes , to ||| 1 0.229811 1.49697e-06 2.07205e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| match ||| 0.00398406 0.112971 4.49091e-06 9.86e-05 2.718 ||| 0-0 ||| 753 668016 +a ||| matched to ||| 0.25 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| matches to media ||| 0.5 0.229811 1.49697e-06 2.92572e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| matches to ||| 0.5 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| material into ||| 0.5 0.107578 1.49697e-06 1.70688e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| material to ||| 0.0714286 0.229811 2.99394e-06 9.84347e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| matter - to ||| 0.333333 0.229811 1.49697e-06 1.37092e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| matter at ||| 0.00862069 0.204175 1.49697e-06 3.53117e-05 2.718 ||| 0-1 ||| 116 668016 +a ||| matter before ||| 0.0163934 0.0203282 1.49697e-06 5.50186e-07 2.718 ||| 0-1 ||| 61 668016 +a ||| matter even ||| 0.2 0.0495435 1.49697e-06 2.02468e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| matter for ||| 0.0247934 0.0683377 3.59273e-05 3.82303e-05 2.718 ||| 0-1 ||| 968 668016 +a ||| matter in ||| 0.00211864 0.0587624 1.49697e-06 6.23356e-05 2.718 ||| 0-1 ||| 472 668016 +a ||| matter of urgency , to ||| 0.0526316 0.229811 1.49697e-06 6.10263e-11 2.718 ||| 0-4 ||| 19 668016 +a ||| matter of urgency , ||| 0.00746269 0.0188479 1.49697e-06 9.4785e-11 2.718 ||| 0-1 ||| 134 668016 +a ||| matter of urgency to ||| 0.047619 0.229811 1.49697e-06 5.11731e-10 2.718 ||| 0-3 ||| 21 668016 +a ||| matter of urgency ||| 0.00424628 0.0188479 2.99394e-06 7.94811e-10 2.718 ||| 0-1 ||| 471 668016 +a ||| matter of use ||| 0.333333 0.0188479 1.49697e-06 1.49204e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| matter of ||| 0.00782396 0.0188479 4.7903e-05 3.06877e-05 2.718 ||| 0-1 ||| 4090 668016 +a ||| matter off ||| 0.5 0.0893962 1.49697e-06 7.93584e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| matter to ||| 0.0367454 0.229811 2.09576e-05 0.000363438 2.718 ||| 0-1 ||| 381 668016 +a ||| matter up with ||| 0.0909091 0.0571592 1.49697e-06 5.90738e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| matter with the ||| 0.0119048 0.0571592 1.49697e-06 1.06338e-06 2.718 ||| 0-1 ||| 84 668016 +a ||| matter with ||| 0.00505051 0.0571592 1.49697e-06 1.73212e-05 2.718 ||| 0-1 ||| 198 668016 +a ||| matters about ||| 0.1 0.0526361 1.49697e-06 9.3227e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| matters are dealt with under the cooperation ||| 1 0.0571592 1.49697e-06 9.95389e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| matters are dealt with under the ||| 1 0.0571592 1.49697e-06 1.08077e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| matters are dealt with under ||| 0.5 0.0571592 1.49697e-06 1.76045e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| matters are dealt with ||| 0.333333 0.0571592 1.49697e-06 4.90648e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| matters are to ||| 0.333333 0.229811 2.99394e-06 9.83279e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| matters arising from news ||| 0.5 0.0435582 1.49697e-06 1.4068e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| matters arising from ||| 0.125 0.0435582 1.49697e-06 3.87547e-11 2.718 ||| 0-2 ||| 8 668016 +a ||| matters at ||| 0.0212766 0.204175 1.49697e-06 6.29655e-06 2.718 ||| 0-1 ||| 47 668016 +a ||| matters concerning ||| 0.00869565 0.22348 1.49697e-06 7.5665e-07 2.718 ||| 0-1 ||| 115 668016 +a ||| matters in ||| 0.00497512 0.0587624 1.49697e-06 1.11153e-05 2.718 ||| 0-1 ||| 201 668016 +a ||| matters of ||| 0.000985222 0.0188479 1.49697e-06 5.47202e-06 2.718 ||| 0-1 ||| 1015 668016 +a ||| matters on ||| 0.0135135 0.0782999 1.49697e-06 7.01809e-06 2.718 ||| 0-1 ||| 74 668016 +a ||| matters to deal ||| 0.5 0.229811 1.49697e-06 2.75165e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| matters to us at ||| 1 0.204175 1.49697e-06 1.61259e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| matters to ||| 0.00896861 0.229811 2.99394e-06 6.48058e-05 2.718 ||| 0-1 ||| 223 668016 +a ||| maximum scope to ||| 0.111111 0.229811 1.49697e-06 6.28651e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| may , at ||| 0.166667 0.204175 1.49697e-06 3.04091e-06 2.718 ||| 0-2 ||| 6 668016 +a ||| may , for ||| 0.0833333 0.0683377 1.49697e-06 3.29225e-06 2.718 ||| 0-2 ||| 12 668016 +a ||| may , to relate in ||| 1 0.0587624 1.49697e-06 1.18296e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| may , to ||| 0.103448 0.229811 4.49091e-06 3.12979e-05 2.718 ||| 0-2 ||| 29 668016 +a ||| may I say to ||| 0.0416667 0.229811 1.49697e-06 1.77436e-09 2.718 ||| 0-3 ||| 24 668016 +a ||| may appear to be ||| 0.0454545 0.229811 1.49697e-06 4.15699e-10 2.718 ||| 0-2 ||| 22 668016 +a ||| may appear to ||| 0.0454545 0.229811 1.49697e-06 2.29378e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| may ask myself - ||| 1 0.0082577 1.49697e-06 6.45994e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| may ask myself ||| 1 0.0082577 1.49697e-06 1.71256e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| may ask ||| 0.025 0.0082577 1.49697e-06 1.10132e-07 2.718 ||| 0-1 ||| 40 668016 +a ||| may be , then a closer ||| 1 0.0252938 1.49697e-06 1.30326e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| may be , then a ||| 1 0.0252938 1.49697e-06 6.1186e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| may be , then ||| 0.333333 0.0252938 1.49697e-06 1.38037e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| may be able to ||| 0.0135135 0.229811 1.49697e-06 3.97102e-09 2.718 ||| 0-3 ||| 74 668016 +a ||| may be at ||| 0.0714286 0.204175 1.49697e-06 4.62122e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| may be brought into ||| 0.333333 0.107578 1.49697e-06 2.3093e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| may be for ||| 0.0666667 0.0683377 1.49697e-06 5.00317e-07 2.718 ||| 0-2 ||| 15 668016 +a ||| may be interested to know ||| 0.333333 0.229811 1.49697e-06 2.6015e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| may be interested to ||| 0.333333 0.229811 1.49697e-06 1.00833e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| may be taken to ||| 0.333333 0.229811 1.49697e-06 4.33535e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| may be to ||| 0.04 0.229811 1.49697e-06 4.75628e-06 2.718 ||| 0-2 ||| 25 668016 +a ||| may be used to ||| 0.0384615 0.229811 1.49697e-06 2.04044e-09 2.718 ||| 0-3 ||| 26 668016 +a ||| may be ||| 0.000202265 0.0003124 1.49697e-06 1.01217e-07 2.718 ||| 0-1 ||| 4944 668016 +a ||| may cite ||| 0.111111 0.0283688 1.49697e-06 8.2412e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| may come under ||| 0.333333 0.0384416 1.49697e-06 9.02522e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| may decide to ||| 0.05 0.229811 1.49697e-06 1.68228e-08 2.718 ||| 0-2 ||| 20 668016 +a ||| may end in ||| 0.25 0.0587624 1.49697e-06 1.95855e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| may find it to accept ||| 1 0.229811 1.49697e-06 1.68264e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| may find it to ||| 1 0.229811 1.49697e-06 1.55369e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| may happen to ||| 0.166667 0.229811 1.49697e-06 2.85279e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| may have for ||| 0.0714286 0.0683377 1.49697e-06 3.30173e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| may have to be ||| 0.047619 0.229811 1.49697e-06 5.68842e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| may have to ||| 0.027027 0.229811 2.99394e-06 3.1388e-06 2.718 ||| 0-2 ||| 74 668016 +a ||| may in ||| 0.0204082 0.0587624 1.49697e-06 4.50138e-05 2.718 ||| 0-1 ||| 49 668016 +a ||| may lead to ||| 0.00738007 0.229811 2.99394e-06 5.05208e-08 2.718 ||| 0-2 ||| 271 668016 +a ||| may only be claimed for ||| 0.333333 0.0683377 1.49697e-06 1.10267e-14 2.718 ||| 0-4 ||| 3 668016 +a ||| may only cause to ||| 0.5 0.229811 1.49697e-06 5.27876e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| may reach ||| 0.0357143 0.182593 1.49697e-06 1.09893e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| may say so , to ||| 0.333333 0.229811 1.49697e-06 6.7897e-11 2.718 ||| 0-4 ||| 3 668016 +a ||| may seem to ||| 0.0666667 0.229811 1.49697e-06 2.39876e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| may show it to ||| 1 0.229811 1.49697e-06 6.24929e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| may use the term ||| 1 0.0023121 1.49697e-06 3.66747e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| may well be all the same to ||| 1 0.229811 1.49697e-06 1.76053e-15 2.718 ||| 0-6 ||| 1 668016 +a ||| may wish to make ||| 0.25 0.229811 1.49697e-06 1.34406e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| may wish to ||| 0.027027 0.229811 1.49697e-06 7.73428e-08 2.718 ||| 0-2 ||| 37 668016 +a ||| may yet come ||| 0.2 0.0130882 1.49697e-06 1.73645e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| may yet ||| 0.0322581 0.0130882 1.49697e-06 2.04457e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| may ||| 0.000111427 0.0001035 2.99394e-06 2.7e-06 2.718 ||| 0-0 ||| 17949 668016 +a ||| maybe they will provide more funds for ||| 1 0.0683377 1.49697e-06 1.08333e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| maybe ||| 0.000833333 0.0106583 1.49697e-06 1.55e-05 2.718 ||| 0-0 ||| 1200 668016 +a ||| me - to ||| 0.2 0.229811 1.49697e-06 7.95598e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| me a ||| 0.00900901 0.0022944 1.49697e-06 3.55936e-06 2.718 ||| 0-0 ||| 111 668016 +a ||| me and to ||| 0.0588235 0.229811 1.49697e-06 2.64192e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| me and ||| 0.00246305 0.00194085 1.49697e-06 1.54939e-07 2.718 ||| 0-0 0-1 ||| 406 668016 +a ||| me answer ||| 0.25 0.0026107 1.49697e-06 1.26441e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| me ask ||| 0.333333 0.0082577 1.49697e-06 8.85087e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| me both ||| 0.0625 0.0205477 1.49697e-06 3.94616e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| me for saying so , ||| 0.5 0.0683377 1.49697e-06 1.06533e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| me for saying so ||| 0.5 0.0683377 1.49697e-06 8.93327e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| me for saying ||| 0.333333 0.0683377 1.49697e-06 3.93588e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| me for ||| 0.0232558 0.0683377 1.49697e-06 2.21865e-05 2.718 ||| 0-1 ||| 43 668016 +a ||| me go into ||| 0.5 0.107578 1.49697e-06 2.13881e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| me go to ||| 0.5 0.229811 1.49697e-06 1.23344e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| me great pleasure to ||| 0.0434783 0.229811 1.49697e-06 1.88161e-12 2.718 ||| 0-3 ||| 23 668016 +a ||| me holding ||| 1 0.0045643 1.49697e-06 6.021e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| me in welcoming ||| 0.2 0.0587624 1.49697e-06 1.44703e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| me in ||| 0.0146341 0.0587624 4.49091e-06 3.61757e-05 2.718 ||| 0-1 ||| 205 668016 +a ||| me of ||| 0.03125 0.0188479 2.99394e-06 1.78092e-05 2.718 ||| 0-1 ||| 64 668016 +a ||| me on ||| 0.0689655 0.0782999 5.98788e-06 2.2841e-05 2.718 ||| 0-1 ||| 58 668016 +a ||| me say to ||| 0.4 0.229811 2.99394e-06 2.01594e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| me that if we are going to ||| 1 0.229811 1.49697e-06 4.37014e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| me to indulge ||| 0.333333 0.229811 1.49697e-06 1.5186e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| me to put ||| 0.4 0.229811 2.99394e-06 2.32557e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| me to ||| 0.0217391 0.229811 3.44303e-05 0.000210917 2.718 ||| 0-1 ||| 1058 668016 +a ||| me up when I ||| 1 0.0055468 1.49697e-06 4.50716e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| me up when ||| 1 0.0055468 1.49697e-06 6.37189e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| me will have to ||| 1 0.229811 1.49697e-06 2.18228e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| me with ||| 0.0120482 0.0571592 1.49697e-06 1.00521e-05 2.718 ||| 0-1 ||| 83 668016 +a ||| me ||| 0.000160068 0.0022944 4.49091e-06 8.03e-05 2.718 ||| 0-0 ||| 18742 668016 +a ||| mean at ||| 0.125 0.204175 1.49697e-06 8.77092e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| mean depriving ||| 0.5 0.338323 1.49697e-06 2.65689e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| mean is ||| 0.0153846 0.0201991 1.49697e-06 5.97988e-06 2.718 ||| 0-0 ||| 65 668016 +a ||| mean more ||| 0.0204082 0.0201991 1.49697e-06 4.3573e-07 2.718 ||| 0-0 ||| 49 668016 +a ||| mean reaching for ||| 1 0.126769 1.49697e-06 3.83918e-09 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| mean that the ||| 0.0026738 0.0201991 1.49697e-06 1.97041e-07 2.718 ||| 0-0 ||| 374 668016 +a ||| mean that we ||| 0.00636943 0.0008079 1.49697e-06 1.96632e-09 2.718 ||| 0-2 ||| 157 668016 +a ||| mean that ||| 0.00122699 0.0201991 4.49091e-06 3.20956e-06 2.718 ||| 0-0 ||| 2445 668016 +a ||| mean this ||| 0.025641 0.0201991 1.49697e-06 1.23284e-06 2.718 ||| 0-0 ||| 39 668016 +a ||| mean ||| 0.00284091 0.0201991 2.99394e-05 0.0001908 2.718 ||| 0-0 ||| 7040 668016 +a ||| meaning of ||| 0.00606061 0.0188479 2.99394e-06 9.05102e-07 2.718 ||| 0-1 ||| 330 668016 +a ||| means being able to make ||| 1 0.229811 1.49697e-06 9.16568e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| means being able to ||| 0.166667 0.229811 1.49697e-06 5.2743e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| means cooperation on a basis ||| 1 0.0782999 1.49697e-06 5.82756e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| means cooperation on a ||| 0.5 0.0782999 1.49697e-06 9.81402e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| means cooperation on ||| 0.5 0.0782999 1.49697e-06 2.21406e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| means encouraging ||| 0.1 0.0134702 1.49697e-06 2.42707e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| means for ||| 0.00340136 0.0683377 1.49697e-06 2.33509e-05 2.718 ||| 0-1 ||| 294 668016 +a ||| means involving ||| 0.1 0.102511 1.49697e-06 3.68433e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| means of identifying ||| 0.142857 0.0188479 1.49697e-06 5.99805e-11 2.718 ||| 0-1 ||| 7 668016 +a ||| means of sending ||| 1 0.0177863 1.49697e-06 4.10491e-10 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| means of supporting ||| 0.0526316 0.104734 1.49697e-06 2.1488e-08 2.718 ||| 0-1 0-2 ||| 19 668016 +a ||| means of the ||| 0.0026178 0.0188479 1.49697e-06 1.15072e-06 2.718 ||| 0-1 ||| 382 668016 +a ||| means of ||| 0.00366151 0.0188479 2.69455e-05 1.87439e-05 2.718 ||| 0-1 ||| 4916 668016 +a ||| means that tests are carried out ||| 1 0.0669777 1.49697e-06 3.24483e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| means to combat it ||| 0.5 0.229811 1.49697e-06 7.65839e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| means to combat ||| 0.0666667 0.229811 1.49697e-06 4.30653e-09 2.718 ||| 0-1 ||| 15 668016 +a ||| means to ||| 0.00483559 0.229811 7.48485e-06 0.000221986 2.718 ||| 0-1 ||| 1034 668016 +a ||| meant by ||| 0.0129032 0.0337966 2.99394e-06 6.54086e-07 2.718 ||| 0-1 ||| 155 668016 +a ||| meant to be a paperless parliament ||| 1 0.229811 1.49697e-06 2.1566e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| meant to be a paperless ||| 1 0.229811 1.49697e-06 8.94857e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| meant to be a ||| 0.0714286 0.229811 1.49697e-06 2.23714e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| meant to be ||| 0.0104167 0.229811 1.49697e-06 5.04704e-07 2.718 ||| 0-1 ||| 96 668016 +a ||| meant to signal ||| 1 0.229811 1.49697e-06 6.62806e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| meant to ||| 0.0233236 0.229811 1.19758e-05 2.7849e-05 2.718 ||| 0-1 ||| 343 668016 +a ||| measure in ||| 0.0172414 0.0587624 1.49697e-06 4.50018e-06 2.718 ||| 0-1 ||| 58 668016 +a ||| measure of ||| 0.00298507 0.0188479 1.49697e-06 2.21543e-06 2.718 ||| 0-1 ||| 335 668016 +a ||| measure to ||| 0.00657895 0.229811 1.49697e-06 2.62376e-05 2.718 ||| 0-1 ||| 152 668016 +a ||| measure up to ||| 0.0277778 0.229811 1.49697e-06 8.94833e-08 2.718 ||| 0-2 ||| 36 668016 +a ||| measure your success in terms ||| 0.5 0.0587624 1.49697e-06 7.50811e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| measure your success in ||| 0.5 0.0587624 1.49697e-06 6.84048e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| measured against ||| 0.0588235 0.05146 2.99394e-06 3.0934e-08 2.718 ||| 0-1 ||| 34 668016 +a ||| measures according to ||| 0.333333 0.229811 1.49697e-06 6.41425e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| measures can justifiably be demanded . in ||| 1 0.0587624 1.49697e-06 4.0187e-23 2.718 ||| 0-6 ||| 1 668016 +a ||| measures designed to serve ||| 1 0.229811 1.49697e-06 3.87177e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| measures designed to ||| 0.0131579 0.229811 2.99394e-06 5.66049e-09 2.718 ||| 0-2 ||| 152 668016 +a ||| measures for ||| 0.00137741 0.0683377 1.49697e-06 7.62395e-06 2.718 ||| 0-1 ||| 726 668016 +a ||| measures has the Commission taken to inform ||| 1 0.229811 1.49697e-06 2.32909e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| measures has the Commission taken to ||| 0.5 0.229811 1.49697e-06 1.21942e-14 2.718 ||| 0-5 ||| 2 668016 +a ||| measures into account ||| 0.5 0.107578 1.49697e-06 3.61322e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| measures into ||| 0.0909091 0.107578 2.99394e-06 1.25677e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| measures now and in the ||| 1 0.0587624 1.49697e-06 1.96913e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| measures now and in ||| 1 0.0587624 1.49697e-06 3.20748e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| measures to be ||| 0.00280899 0.229811 1.49697e-06 1.3135e-06 2.718 ||| 0-1 ||| 356 668016 +a ||| measures to ensure that it complies in ||| 1 0.229811 1.49697e-06 2.91326e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| measures to ensure that it complies ||| 1 0.229811 1.49697e-06 1.36105e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| measures to ensure that it ||| 1 0.229811 1.49697e-06 9.72177e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| measures to ensure that ||| 0.015873 0.229811 1.49697e-06 5.46683e-10 2.718 ||| 0-1 ||| 63 668016 +a ||| measures to ensure ||| 0.00714286 0.229811 1.49697e-06 3.24989e-08 2.718 ||| 0-1 ||| 140 668016 +a ||| measures to prevent ||| 0.00483092 0.229811 1.49697e-06 3.7036e-09 2.718 ||| 0-1 ||| 207 668016 +a ||| measures to rationalize ||| 0.25 0.229811 1.49697e-06 5.07342e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| measures to tackle ||| 0.030303 0.229811 1.49697e-06 2.63093e-09 2.718 ||| 0-1 ||| 33 668016 +a ||| measures to ||| 0.00426439 0.229811 2.09576e-05 7.24774e-05 2.718 ||| 0-1 ||| 3283 668016 +a ||| measures will it take to induce ||| 1 0.229811 1.49697e-06 8.43748e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| measures will it take to ||| 0.125 0.229811 1.49697e-06 1.79521e-11 2.718 ||| 0-4 ||| 8 668016 +a ||| medallists ||| 1 0.333333 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| media help ||| 0.333333 0.259976 1.49697e-06 1.89426e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| medicinal products at ||| 0.25 0.204175 1.49697e-06 1.52206e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| medium of ||| 0.0526316 0.0762771 1.49697e-06 5.40922e-06 2.718 ||| 0-0 ||| 19 668016 +a ||| medium ||| 0.00231481 0.0762771 4.49091e-06 9.95e-05 2.718 ||| 0-0 ||| 1296 668016 +a ||| medium- to ||| 0.0555556 0.333336 1.49697e-06 4.09152e-05 2.718 ||| 0-0 0-1 ||| 18 668016 +a ||| medium-sized enterprises with ||| 0.0714286 0.0571592 1.49697e-06 3.1103e-12 2.718 ||| 0-2 ||| 14 668016 +a ||| medium-term ||| 0.00445434 0.285714 2.99394e-06 0.0002957 2.718 ||| 0-0 ||| 449 668016 +a ||| meet all ||| 0.00909091 0.0482171 1.49697e-06 1.85472e-06 2.718 ||| 0-0 ||| 110 668016 +a ||| meet half the ||| 1 0.0482171 1.49697e-06 6.93973e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| meet half ||| 1 0.0482171 1.49697e-06 1.1304e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| meet its ||| 0.00666667 0.0482171 1.49697e-06 5.59195e-07 2.718 ||| 0-0 ||| 150 668016 +a ||| meet on ||| 0.0285714 0.0782999 1.49697e-06 4.61297e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| meet some ||| 0.0555556 0.0482171 1.49697e-06 4.2755e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| meet the needs of ||| 0.00645161 0.0188479 1.49697e-06 4.37868e-11 2.718 ||| 0-3 ||| 155 668016 +a ||| meet the ||| 0.000413736 0.0482171 1.49697e-06 2.40963e-05 2.718 ||| 0-0 ||| 2417 668016 +a ||| meet to consider ||| 0.166667 0.229811 1.49697e-06 6.77713e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| meet to ||| 0.025641 0.229811 1.49697e-06 4.25967e-05 2.718 ||| 0-1 ||| 39 668016 +a ||| meet with the approval ||| 0.125 0.0571592 1.49697e-06 3.72653e-12 2.718 ||| 0-1 ||| 8 668016 +a ||| meet with the ||| 0.0125 0.0571592 1.49697e-06 1.24633e-07 2.718 ||| 0-1 ||| 80 668016 +a ||| meet with ||| 0.00914634 0.0571592 4.49091e-06 2.03012e-06 2.718 ||| 0-1 ||| 328 668016 +a ||| meet ||| 0.00342661 0.0482171 3.59273e-05 0.0003925 2.718 ||| 0-0 ||| 7004 668016 +a ||| meeting back home ||| 1 0.0536618 1.49697e-06 9.379e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| meeting back ||| 1 0.0536618 1.49697e-06 9.24039e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| meeting for ||| 0.0666667 0.0683377 1.49697e-06 4.62817e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| meeting in ||| 0.0014245 0.0587624 1.49697e-06 7.54636e-06 2.718 ||| 0-1 ||| 702 668016 +a ||| meeting of ||| 0.00177462 0.0188479 2.99394e-06 3.71506e-06 2.718 ||| 0-1 ||| 1127 668016 +a ||| meeting with ||| 0.00672646 0.0571592 4.49091e-06 2.0969e-06 2.718 ||| 0-1 ||| 446 668016 +a ||| meeting ||| 7.99297e-05 0.0003472 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 12511 668016 +a ||| meetings at ||| 0.0243902 0.204175 1.49697e-06 7.48779e-07 2.718 ||| 0-1 ||| 41 668016 +a ||| meetings of ||| 0.00421941 0.0188479 1.49697e-06 6.50727e-07 2.718 ||| 0-1 ||| 237 668016 +a ||| meetings or in ||| 1 0.0587624 1.49697e-06 1.51123e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| meetings to be sufficiently well ||| 1 0.229811 1.49697e-06 4.14121e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| meetings to be sufficiently ||| 1 0.229811 1.49697e-06 2.61177e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| meetings to be ||| 0.125 0.229811 1.49697e-06 1.39667e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| meetings to ||| 0.0384615 0.229811 1.49697e-06 7.70664e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| meets behind closed ||| 0.142857 0.0923313 1.49697e-06 4.01455e-13 2.718 ||| 0-1 ||| 7 668016 +a ||| meets behind ||| 0.0714286 0.0923313 1.49697e-06 6.9336e-09 2.718 ||| 0-1 ||| 14 668016 +a ||| meets in public ||| 0.166667 0.0587624 1.49697e-06 8.7384e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| meets in ||| 0.0322581 0.0587624 1.49697e-06 5.40742e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| meets with suspicion ||| 1 0.0571592 1.49697e-06 9.16561e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| meets with ||| 0.015625 0.0571592 1.49697e-06 1.50256e-07 2.718 ||| 0-1 ||| 64 668016 +a ||| meets ||| 0.00463392 0.0660576 7.48485e-06 8.58e-05 2.718 ||| 0-0 ||| 1079 668016 +a ||| member of Acronyms ||| 1 0.0188479 1.49697e-06 1.97111e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| member of the Commission , ||| 0.030303 0.0188479 1.49697e-06 2.10729e-11 2.718 ||| 0-1 ||| 33 668016 +a ||| member of the Commission . - ||| 0.00052356 0.0188479 1.49697e-06 2.01898e-15 2.718 ||| 0-1 ||| 1910 668016 +a ||| member of the Commission . ||| 0.000492126 0.0188479 1.49697e-06 5.35239e-13 2.718 ||| 0-1 ||| 2032 668016 +a ||| member of the Commission ||| 0.00141844 0.0188479 4.49091e-06 1.76705e-10 2.718 ||| 0-1 ||| 2115 668016 +a ||| member of the public ||| 0.0625 0.0188479 1.49697e-06 4.88881e-11 2.718 ||| 0-1 ||| 16 668016 +a ||| member of the ||| 0.00170648 0.0188479 1.04788e-05 3.02525e-07 2.718 ||| 0-1 ||| 4102 668016 +a ||| member of ||| 0.00346021 0.0188479 2.09576e-05 4.92778e-06 2.718 ||| 0-1 ||| 4046 668016 +a ||| member on ||| 0.4 0.0782999 5.98788e-06 6.32007e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| members , for example , ||| 0.166667 0.0683377 1.49697e-06 2.25012e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| members , for example ||| 0.166667 0.0683377 1.49697e-06 1.88682e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| members , for ||| 0.111111 0.0683377 1.49697e-06 6.48168e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| members , ||| 0.0027027 0.00053 1.49697e-06 7.6323e-07 2.718 ||| 0-0 ||| 370 668016 +a ||| members from ||| 0.01 0.0435582 1.49697e-06 1.06182e-06 2.718 ||| 0-1 ||| 100 668016 +a ||| members in ||| 0.00934579 0.0587624 1.49697e-06 8.86217e-06 2.718 ||| 0-1 ||| 107 668016 +a ||| members of the ||| 0.000496032 0.0188479 2.99394e-06 2.67842e-07 2.718 ||| 0-1 ||| 4032 668016 +a ||| members of ||| 0.00473613 0.0188479 3.14364e-05 4.36283e-06 2.718 ||| 0-1 ||| 4434 668016 +a ||| members to ||| 0.00952381 0.229811 1.49697e-06 5.16695e-05 2.718 ||| 0-1 ||| 105 668016 +a ||| members ||| 0.000181357 0.00053 2.99394e-06 6.4e-06 2.718 ||| 0-0 ||| 11028 668016 +a ||| membership before ||| 0.166667 0.0626155 1.49697e-06 3.26241e-07 2.718 ||| 0-0 0-1 ||| 6 668016 +a ||| membership in the ||| 0.0322581 0.104903 1.49697e-06 8.0841e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| membership in ||| 0.0169492 0.104903 1.49697e-06 1.3168e-05 2.718 ||| 0-0 ||| 59 668016 +a ||| membership of the ||| 0.00138122 0.0618753 1.49697e-06 1.11713e-06 2.718 ||| 0-0 0-1 ||| 724 668016 +a ||| membership of ||| 0.00290698 0.0618753 4.49091e-06 1.81967e-05 2.718 ||| 0-0 0-1 ||| 1032 668016 +a ||| membership ||| 0.00333095 0.104903 2.09576e-05 0.0006152 2.718 ||| 0-0 ||| 4203 668016 +a ||| men against ||| 0.1 0.05146 1.49697e-06 1.10479e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| men for ||| 0.025641 0.0683377 1.49697e-06 1.56606e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| men such as ||| 1 0.0243476 1.49697e-06 7.71342e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| menaces ||| 0.25 0.5 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| mentality of ||| 0.05 0.0188479 1.49697e-06 1.06483e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| mentality to ||| 0.333333 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| mention , in emotional ||| 1 0.0587624 1.49697e-06 1.53219e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| mention , in ||| 0.0526316 0.0587624 1.49697e-06 6.9645e-07 2.718 ||| 0-2 ||| 19 668016 +a ||| mention to ||| 0.0625 0.229811 1.49697e-06 3.40493e-05 2.718 ||| 0-1 ||| 16 668016 +a ||| mentioned in ||| 0.000823723 0.0587624 1.49697e-06 5.3173e-06 2.718 ||| 0-1 ||| 1214 668016 +a ||| mentioned one ||| 0.0454545 6.73e-05 1.49697e-06 3.7512e-09 2.718 ||| 0-0 ||| 22 668016 +a ||| mentioned to ||| 0.03125 0.229811 1.49697e-06 3.10017e-05 2.718 ||| 0-1 ||| 32 668016 +a ||| mentioned ||| 8.80824e-05 6.73e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 11353 668016 +a ||| mentioning , in ||| 0.142857 0.0587624 1.49697e-06 4.15577e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| mentioning ||| 0.0015015 0.0043415 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 666 668016 +a ||| mercy of ||| 0.0175439 0.0188479 1.49697e-06 1.06483e-07 2.718 ||| 0-1 ||| 57 668016 +a ||| mere stone ||| 0.25 0.0007022 1.49697e-06 1.26e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| mere ||| 0.000789266 0.0007022 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1267 668016 +a ||| merely as ||| 0.0163934 0.0243476 1.49697e-06 5.58802e-07 2.718 ||| 0-1 ||| 61 668016 +a ||| merely fall back on the ||| 0.5 0.0782999 1.49697e-06 9.54917e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| merely fall back on ||| 0.5 0.0782999 1.49697e-06 1.55545e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| merely in order to clear ||| 1 0.229811 1.49697e-06 8.4684e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| merely in order to ||| 0.2 0.229811 1.49697e-06 2.54383e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| merely to emphasise ||| 1 0.229811 1.49697e-06 3.7711e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| merely to ||| 0.0113636 0.229811 2.99394e-06 2.23142e-05 2.718 ||| 0-1 ||| 176 668016 +a ||| merger they have ||| 1 0.0007051 1.49697e-06 2.59432e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| merger they ||| 1 0.0007051 1.49697e-06 2.1692e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| merits of ||| 0.00724638 0.0188479 1.49697e-06 2.78038e-07 2.718 ||| 0-1 ||| 138 668016 +a ||| message across by ||| 1 0.0414362 1.49697e-06 1.9511e-10 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| message across to ||| 0.0833333 0.229811 1.49697e-06 1.73235e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| message to ||| 0.021645 0.229811 1.49697e-05 1.68845e-05 2.718 ||| 0-1 ||| 462 668016 +a ||| met , as far as ||| 1 0.0243476 1.49697e-06 5.58993e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| met , as far ||| 1 0.0243476 1.49697e-06 5.47796e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| met , as ||| 0.5 0.0243476 1.49697e-06 8.02397e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| met by ||| 0.0118343 0.0337966 2.99394e-06 6.31049e-07 2.718 ||| 0-1 ||| 169 668016 +a ||| met in ||| 0.00584795 0.0587624 1.49697e-06 4.60833e-06 2.718 ||| 0-1 ||| 171 668016 +a ||| met people ||| 0.142857 0.0005715 1.49697e-06 2.37654e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| met with ||| 0.0059761 0.0571592 4.49091e-06 1.28051e-06 2.718 ||| 0-1 ||| 502 668016 +a ||| met ||| 0.000289101 0.0005715 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 3459 668016 +a ||| meted out to one ||| 0.5 0.229811 1.49697e-06 3.24371e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| meted out to ||| 0.0263158 0.229811 1.49697e-06 7.78241e-09 2.718 ||| 0-2 ||| 38 668016 +a ||| methods and systems available as a ||| 1 0.0243476 1.49697e-06 2.57849e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| methods and systems available as ||| 1 0.0243476 1.49697e-06 5.81714e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| methods of allocating the money ||| 0.5 0.0188479 1.49697e-06 4.04451e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| methods of allocating the ||| 0.5 0.0188479 1.49697e-06 2.47522e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| methods of allocating ||| 0.5 0.0188479 1.49697e-06 4.03185e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| methods of ||| 0.00447761 0.0188479 4.49091e-06 9.37638e-07 2.718 ||| 0-1 ||| 670 668016 +a ||| metres to ||| 0.25 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| mg / kg ||| 0.0833333 0.0062112 1.49697e-06 8.28e-17 2.718 ||| 0-2 ||| 12 668016 +a ||| microgrammes to ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| middle to ||| 0.142857 0.229811 1.49697e-06 7.18118e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| midst of ||| 0.00480769 0.0188479 1.49697e-06 2.78038e-07 2.718 ||| 0-1 ||| 208 668016 +a ||| might , for example , ||| 0.0666667 0.0683377 1.49697e-06 5.85793e-11 2.718 ||| 0-2 ||| 15 668016 +a ||| might , for example ||| 0.0666667 0.0683377 1.49697e-06 4.91212e-10 2.718 ||| 0-2 ||| 15 668016 +a ||| might , for ||| 0.0714286 0.0683377 1.49697e-06 1.68743e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| might affect its image ||| 0.5 0.330659 1.49697e-06 1.14964e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| might affect its ||| 0.5 0.330659 1.49697e-06 8.64394e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| might affect ||| 0.0232558 0.330659 1.49697e-06 6.0672e-07 2.718 ||| 0-1 ||| 43 668016 +a ||| might also ||| 0.00934579 0.00155 1.49697e-06 8.73408e-08 2.718 ||| 0-0 ||| 107 668016 +a ||| might be able to ||| 0.0172414 0.229811 1.49697e-06 2.03533e-09 2.718 ||| 0-3 ||| 58 668016 +a ||| might be poured into ||| 0.5 0.107578 1.49697e-06 7.609e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| might be to ||| 0.030303 0.229811 1.49697e-06 2.43782e-06 2.718 ||| 0-2 ||| 33 668016 +a ||| might be ||| 0.000534188 0.00155 1.49697e-06 3.13526e-07 2.718 ||| 0-0 ||| 1872 668016 +a ||| might disagree with ||| 0.25 0.0571592 1.49697e-06 5.06463e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| might imagine to ||| 0.5 0.229811 1.49697e-06 2.47509e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| might in the ||| 0.333333 0.0587624 1.49697e-06 1.41641e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| might in ||| 0.0833333 0.0587624 1.49697e-06 2.30717e-05 2.718 ||| 0-1 ||| 12 668016 +a ||| might indicate ||| 1 0.00155 1.49697e-06 3.806e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| might join ||| 0.5 0.207917 1.49697e-06 5.24698e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| might lead to ||| 0.0103093 0.229811 1.49697e-06 2.58943e-08 2.718 ||| 0-2 ||| 97 668016 +a ||| might like to ||| 0.047619 0.229811 1.49697e-06 2.38887e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| might refer to ||| 0.333333 0.229811 1.49697e-06 1.05057e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| might revert to ||| 1 0.229811 1.49697e-06 2.42128e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| might spread to ||| 0.5 0.229811 1.49697e-06 3.82025e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| might take in ||| 0.1 0.0587624 1.49697e-06 3.71454e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| might take place to ||| 1 0.229811 1.49697e-06 3.25939e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| might well be forced out ||| 1 0.0684932 1.49697e-06 1.1767e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| might well be forced ||| 1 0.0684932 1.49697e-06 3.072e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| might well be in place ||| 1 0.0587624 1.49697e-06 9.97785e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| might well be in ||| 0.5 0.0587624 1.49697e-06 6.6298e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| might ||| 0.00134771 0.00155 1.34727e-05 1.73e-05 2.718 ||| 0-0 ||| 6678 668016 +a ||| migrate to ||| 0.0384615 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| miles to ||| 0.0526316 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| miles ||| 0.0114068 0.0526316 4.49091e-06 1.64e-05 2.718 ||| 0-0 ||| 263 668016 +a ||| million and EUR ||| 0.5 0.00092 1.49697e-06 3.30207e-12 2.718 ||| 0-0 0-1 ||| 2 668016 +a ||| million and ||| 0.032967 0.00092 4.49091e-06 1.23488e-08 2.718 ||| 0-0 0-1 ||| 91 668016 +a ||| million to ECU ||| 0.2 0.229811 1.49697e-06 1.16384e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| million to EUR ||| 0.05 0.229811 1.49697e-06 6.80986e-09 2.718 ||| 0-1 ||| 20 668016 +a ||| million to ||| 0.258621 0.229811 6.73637e-05 2.54669e-05 2.718 ||| 0-1 ||| 174 668016 +a ||| million tonnes to ||| 1 0.229811 1.49697e-06 5.14432e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| million will be subject to the revision ||| 1 0.229811 1.49697e-06 1.52167e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| million will be subject to the ||| 1 0.229811 1.49697e-06 1.32319e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| million will be subject to ||| 1 0.229811 1.49697e-06 2.15533e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| million worth of ||| 0.2 0.0188479 1.49697e-06 1.55471e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| million ||| 6.37755e-05 0.0002527 1.49697e-06 6.4e-06 2.718 ||| 0-0 ||| 15680 668016 +a ||| millions and ||| 0.0192308 0.0026783 1.49697e-06 9.14391e-08 2.718 ||| 0-0 ||| 52 668016 +a ||| millions ||| 0.000314564 0.0026783 1.49697e-06 7.3e-06 2.718 ||| 0-0 ||| 3179 668016 +a ||| mills of ||| 0.333333 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| mind by ||| 0.142857 0.0337966 2.99394e-06 2.07251e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| mind for the ||| 0.0909091 0.0683377 1.49697e-06 5.69847e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| mind for ||| 0.0571429 0.0683377 2.99394e-06 9.28214e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| mind in ||| 0.0104167 0.0587624 1.49697e-06 1.51348e-05 2.718 ||| 0-1 ||| 96 668016 +a ||| mind on ||| 0.025641 0.0782999 1.49697e-06 9.55598e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| mind the need to ||| 0.0333333 0.229811 1.49697e-06 4.9671e-09 2.718 ||| 0-3 ||| 30 668016 +a ||| mindful of its responsibilities ||| 1 0.0188479 1.49697e-06 2.50736e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| mindful of its ||| 0.333333 0.0188479 1.49697e-06 1.05351e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| mindful of ||| 0.0141844 0.0188479 2.99394e-06 7.39463e-08 2.718 ||| 0-1 ||| 141 668016 +a ||| minds , out of ||| 1 0.0188479 1.49697e-06 6.47189e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| minds about ||| 0.0666667 0.0526361 1.49697e-06 2.41382e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| minds away from ||| 1 0.0435582 1.49697e-06 1.09688e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| minds in the ||| 0.166667 0.0587624 1.49697e-06 1.76683e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| minds in ||| 0.125 0.0587624 2.99394e-06 2.87795e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| minds of ||| 0.0112994 0.0188479 2.99394e-06 1.41681e-06 2.718 ||| 0-1 ||| 177 668016 +a ||| minds to ||| 0.136364 0.229811 4.49091e-06 1.67794e-05 2.718 ||| 0-1 ||| 22 668016 +a ||| mindset to ||| 0.333333 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| minimum service at ||| 1 0.204175 1.49697e-06 6.39828e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| minister responsible for ||| 0.0588235 0.0683377 1.49697e-06 5.1229e-11 2.718 ||| 0-2 ||| 17 668016 +a ||| minor adjustments to ||| 0.5 0.229811 1.49697e-06 1.82157e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| minutes to ||| 0.026087 0.229811 4.49091e-06 5.67489e-06 2.718 ||| 0-1 ||| 115 668016 +a ||| misgivings about turning ||| 1 0.0526361 1.49697e-06 7.30699e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| misgivings about ||| 0.0135135 0.0526361 1.49697e-06 1.4614e-08 2.718 ||| 0-1 ||| 74 668016 +a ||| mislead ||| 0.0210526 0.33935 2.99394e-06 8.58e-05 2.718 ||| 0-0 ||| 95 668016 +a ||| misleading ' ||| 1 0.0917538 1.49697e-06 2.47656e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| misleading packaging ||| 1 0.0917538 1.49697e-06 3.1003e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| misleading terms on tobacco products ||| 1 0.0782999 1.49697e-06 4.53865e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| misleading terms on tobacco ||| 1 0.0782999 1.49697e-06 4.36409e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| misleading terms on ||| 1 0.0782999 1.49697e-06 1.95699e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| misleading ||| 0.00904393 0.0917538 1.04788e-05 7.21e-05 2.718 ||| 0-0 ||| 774 668016 +a ||| misled into ||| 0.25 0.229885 1.49697e-06 5.62632e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| misled ||| 0.0225564 0.229885 4.49091e-06 5.48e-05 2.718 ||| 0-0 ||| 133 668016 +a ||| missed by ||| 0.142857 0.0337966 1.49697e-06 7.73385e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| missed out ||| 0.0588235 0.0669777 1.49697e-06 3.85494e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| mission of ||| 0.00704225 0.0188479 1.49697e-06 3.51984e-07 2.718 ||| 0-1 ||| 142 668016 +a ||| mistake from ||| 0.25 0.0435582 1.49697e-06 1.32458e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| mistake to ||| 0.00675676 0.229811 1.49697e-06 6.44555e-06 2.718 ||| 0-1 ||| 148 668016 +a ||| mistakes are made in ||| 0.333333 0.0587624 1.49697e-06 9.54824e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| mistreatment of ||| 0.0294118 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-1 ||| 34 668016 +a ||| misunderstanding , to all ||| 0.5 0.229811 1.49697e-06 2.76366e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| misunderstanding , to ||| 0.25 0.229811 1.49697e-06 5.84852e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| misunderstood me on ||| 1 0.0782999 1.49697e-06 9.13641e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| mixed to ||| 0.5 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| mm to ||| 1 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| mobilised to the tune ||| 1 0.229811 1.49697e-06 9.00226e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| mobilised to the ||| 0.5 0.229811 1.49697e-06 3.01079e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| mobilised to ||| 0.0588235 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| modes of transport ||| 0.00211864 0.0188479 1.49697e-06 1.52181e-11 2.718 ||| 0-1 ||| 472 668016 +a ||| modes of ||| 0.00198807 0.0188479 1.49697e-06 1.47893e-07 2.718 ||| 0-1 ||| 503 668016 +a ||| moment , be to ||| 0.333333 0.229811 1.49697e-06 1.36805e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| moment at ||| 0.0416667 0.204175 1.49697e-06 6.1502e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| moment to ||| 0.00632911 0.229811 1.49697e-06 6.32995e-05 2.718 ||| 0-1 ||| 158 668016 +a ||| monetary union , but economic and ||| 1 0.0003961 1.49697e-06 3.45067e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| monetary union , but economic ||| 1 0.0003961 1.49697e-06 2.75483e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| monetary union , but ||| 0.0555556 0.0003961 1.49697e-06 2.27109e-15 2.718 ||| 0-3 ||| 18 668016 +a ||| money by ||| 0.0294118 0.0337966 1.49697e-06 1.34437e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| money from ||| 0.00223214 0.0435582 1.49697e-06 1.17628e-06 2.718 ||| 0-1 ||| 448 668016 +a ||| money into ||| 0.00704225 0.107578 1.49697e-06 9.92541e-07 2.718 ||| 0-1 ||| 142 668016 +a ||| money on to ||| 0.5 0.154056 1.49697e-06 2.17141e-06 2.718 ||| 0-1 0-2 ||| 2 668016 +a ||| money on ||| 0.0034965 0.0782999 1.49697e-06 6.19868e-06 2.718 ||| 0-1 ||| 286 668016 +a ||| money over the ||| 0.5 0.0682544 1.49697e-06 2.3302e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| money over ||| 0.25 0.0682544 1.49697e-06 3.79562e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| money to us ||| 0.25 0.229811 1.49697e-06 1.64975e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| money to ||| 0.00440529 0.229811 4.49091e-06 5.72393e-05 2.718 ||| 0-1 ||| 681 668016 +a ||| monitored by ||| 0.0070922 0.0337966 1.49697e-06 1.00376e-07 2.718 ||| 0-1 ||| 141 668016 +a ||| monitoring developments in ||| 0.125 0.0587624 1.49697e-06 6.84454e-11 2.718 ||| 0-2 ||| 8 668016 +a ||| month in the discussion on ||| 1 0.0782999 1.49697e-06 5.59912e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| month on ||| 0.0555556 0.0782999 1.49697e-06 4.93163e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| months and years was ||| 0.333333 0.0015873 1.49697e-06 4.14639e-14 2.718 ||| 0-1 ||| 3 668016 +a ||| months and years ||| 0.00588235 0.0015873 1.49697e-06 1.32346e-11 2.718 ||| 0-1 ||| 170 668016 +a ||| months and ||| 0.0019802 0.0015873 1.49697e-06 7.77589e-08 2.718 ||| 0-1 ||| 505 668016 +a ||| months in ||| 0.00469484 0.0587624 1.49697e-06 2.42132e-06 2.718 ||| 0-1 ||| 213 668016 +a ||| months to three years ||| 0.333333 0.229811 1.49697e-06 1.52093e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| months to three ||| 0.25 0.229811 1.49697e-06 8.93616e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| months to ||| 0.0121951 0.229811 5.98788e-06 1.41172e-05 2.718 ||| 0-1 ||| 328 668016 +a ||| moral finger at ||| 1 0.204175 1.49697e-06 2.99512e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| more , the control is made even ||| 0.333333 0.0495435 1.49697e-06 1.64303e-16 2.718 ||| 0-6 ||| 3 668016 +a ||| more . then ||| 1 0.0252938 1.49697e-06 5.89702e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| more about our ||| 0.0833333 0.0526361 1.49697e-06 1.58745e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| more about this ||| 0.02 0.0526361 1.49697e-06 7.43594e-08 2.718 ||| 0-1 ||| 50 668016 +a ||| more about ||| 0.00726392 0.0526361 4.49091e-06 1.15082e-05 2.718 ||| 0-1 ||| 413 668016 +a ||| more accessible to ||| 0.0169492 0.229811 1.49697e-06 1.03998e-08 2.718 ||| 0-2 ||| 59 668016 +a ||| more acute in the context of ||| 1 0.0587624 1.49697e-06 5.77682e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| more acute in the context ||| 1 0.0587624 1.49697e-06 1.06262e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| more acute in the ||| 0.5 0.0587624 1.49697e-06 7.91818e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| more acute in ||| 0.1 0.0587624 1.49697e-06 1.28978e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| more and no less ||| 0.015625 0.0015873 1.49697e-06 5.83776e-13 2.718 ||| 0-1 ||| 64 668016 +a ||| more and no ||| 0.0138889 0.0015873 1.49697e-06 3.42994e-09 2.718 ||| 0-1 ||| 72 668016 +a ||| more and that ||| 0.1 0.0015873 1.49697e-06 7.41227e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| more and ||| 0.00123609 0.0015873 4.49091e-06 4.4064e-06 2.718 ||| 0-1 ||| 2427 668016 +a ||| more appropriately directed towards ||| 1 0.155507 1.49697e-06 1.83215e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| more are to ||| 1 0.229811 1.49697e-06 1.21379e-05 2.718 ||| 0-2 ||| 1 668016 +a ||| more at ||| 0.0222222 0.204175 2.99394e-06 7.77266e-05 2.718 ||| 0-1 ||| 90 668016 +a ||| more by ||| 0.0144928 0.0337966 1.49697e-06 1.87891e-05 2.718 ||| 0-1 ||| 69 668016 +a ||| more cautious in ||| 0.166667 0.0587624 1.49697e-06 1.92095e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| more closely involved in ||| 0.0555556 0.0587624 1.49697e-06 4.19909e-12 2.718 ||| 0-3 ||| 18 668016 +a ||| more closely to ||| 0.0789474 0.229811 4.49091e-06 7.07986e-08 2.718 ||| 0-2 ||| 38 668016 +a ||| more closely with ||| 0.0103093 0.0571592 1.49697e-06 3.3742e-09 2.718 ||| 0-2 ||| 97 668016 +a ||| more difficult for ||| 0.0190476 0.0683377 2.99394e-06 1.04515e-08 2.718 ||| 0-2 ||| 105 668016 +a ||| more effectively and more quickly to ||| 1 0.229811 1.49697e-06 7.42233e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| more emphasis on ||| 0.00740741 0.0782999 1.49697e-06 4.42697e-09 2.718 ||| 0-2 ||| 135 668016 +a ||| more enthusiastic about ||| 0.2 0.0526361 1.49697e-06 4.94855e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| more every ||| 0.111111 0.0116434 1.49697e-06 5.64987e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| more for ||| 0.00835655 0.0683377 4.49091e-06 8.41509e-05 2.718 ||| 0-1 ||| 359 668016 +a ||| more funds for ||| 0.0357143 0.0683377 1.49697e-06 6.42072e-09 2.718 ||| 0-2 ||| 28 668016 +a ||| more importance to ||| 0.0384615 0.229811 1.49697e-06 1.03918e-07 2.718 ||| 0-2 ||| 26 668016 +a ||| more importantly , people living ||| 0.125 0.0079526 1.49697e-06 1.67986e-16 2.718 ||| 0-3 ||| 8 668016 +a ||| more importantly , people ||| 0.111111 0.0079526 1.49697e-06 2.00461e-12 2.718 ||| 0-3 ||| 9 668016 +a ||| more in the way of ||| 0.0588235 0.0587624 1.49697e-06 9.87136e-10 2.718 ||| 0-1 ||| 17 668016 +a ||| more in the way ||| 0.0555556 0.0587624 1.49697e-06 1.81579e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| more in the ||| 0.00581395 0.0587624 1.49697e-06 8.42359e-06 2.718 ||| 0-1 ||| 172 668016 +a ||| more in ||| 0.00817757 0.0587624 1.04788e-05 0.00013721 2.718 ||| 0-1 ||| 856 668016 +a ||| more into line with ||| 0.0416667 0.0571592 1.49697e-06 1.15242e-11 2.718 ||| 0-3 ||| 24 668016 +a ||| more into line ||| 0.0416667 0.107578 1.49697e-06 4.08388e-09 2.718 ||| 0-1 ||| 24 668016 +a ||| more into ||| 0.0153846 0.107578 1.49697e-06 1.38719e-05 2.718 ||| 0-1 ||| 65 668016 +a ||| more involved in ||| 0.0117647 0.0587624 1.49697e-06 4.74474e-08 2.718 ||| 0-2 ||| 85 668016 +a ||| more items on ||| 0.2 0.0782999 1.49697e-06 2.33911e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| more like ||| 0.00714286 0.0001599 1.49697e-06 3.3342e-08 2.718 ||| 0-1 ||| 140 668016 +a ||| more likely to ||| 0.00571429 0.229811 1.49697e-06 6.79186e-08 2.718 ||| 0-2 ||| 175 668016 +a ||| more of it to ||| 1 0.229811 1.49697e-06 7.73397e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| more of ||| 0.00567537 0.0188479 7.48485e-06 6.75484e-05 2.718 ||| 0-1 ||| 881 668016 +a ||| more often ||| 0.00378788 0.288159 1.49697e-06 1.37572e-05 2.718 ||| 0-1 ||| 264 668016 +a ||| more on ||| 0.0056391 0.0782999 4.49091e-06 8.66335e-05 2.718 ||| 0-1 ||| 532 668016 +a ||| more power to ||| 0.0212766 0.229811 1.49697e-06 1.19438e-07 2.718 ||| 0-2 ||| 47 668016 +a ||| more quickly to ||| 0.037037 0.229811 1.49697e-06 3.62393e-08 2.718 ||| 0-2 ||| 27 668016 +a ||| more reason to have done ||| 1 0.229811 1.49697e-06 1.02047e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| more reason to have ||| 1 0.229811 1.49697e-06 2.23787e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| more reason to ||| 0.0571429 0.229811 2.99394e-06 1.87116e-07 2.718 ||| 0-2 ||| 35 668016 +a ||| more reminiscent of ||| 0.125 0.0188479 1.49697e-06 1.68871e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| more room to ||| 0.0909091 0.229811 1.49697e-06 2.99194e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| more small and medium-sized enterprises with ||| 1 0.0571592 1.49697e-06 1.13972e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| more so at ||| 0.2 0.204175 1.49697e-06 1.76416e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| more strongly than ||| 0.0526316 0.0242272 1.49697e-06 1.37491e-10 2.718 ||| 0-2 ||| 19 668016 +a ||| more than a ||| 0.000934579 0.0242272 1.49697e-06 1.27232e-07 2.718 ||| 0-1 ||| 1070 668016 +a ||| more than happy to grant ||| 0.25 0.229811 1.49697e-06 4.88081e-16 2.718 ||| 0-3 ||| 4 668016 +a ||| more than happy to include ||| 1 0.229811 1.49697e-06 2.03855e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| more than happy to ||| 0.0555556 0.229811 2.99394e-06 1.53969e-11 2.718 ||| 0-3 ||| 36 668016 +a ||| more than tot up ||| 1 0.0195077 1.49697e-06 3.42584e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| more than we can chew ||| 0.333333 0.0242272 1.49697e-06 1.35686e-16 2.718 ||| 0-1 ||| 3 668016 +a ||| more than we can ||| 0.0555556 0.0242272 1.49697e-06 9.69189e-11 2.718 ||| 0-1 ||| 18 668016 +a ||| more than we ||| 0.00961538 0.0242272 1.49697e-06 3.25854e-08 2.718 ||| 0-1 ||| 104 668016 +a ||| more than ||| 0.00125875 0.0242272 2.39515e-05 2.87038e-06 2.718 ||| 0-1 ||| 12711 668016 +a ||| more thing , and that is ||| 1 0.0001318 1.49697e-06 3.93695e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| more thing , and that ||| 1 0.0001318 1.49697e-06 1.25616e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| more thing , and ||| 1 0.0001318 1.49697e-06 7.46756e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| more thing , ||| 0.0909091 0.0001318 1.49697e-06 5.9617e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| more thing to ||| 0.25 0.229811 1.49697e-06 2.91914e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| more thing ||| 0.0117647 0.0001318 1.49697e-06 4.99913e-09 2.718 ||| 0-0 ||| 85 668016 +a ||| more to allow ||| 1 0.229811 1.49697e-06 1.94076e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| more to discover ||| 1 0.229811 1.49697e-06 4.31991e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| more to ensure ||| 0.0333333 0.229811 1.49697e-06 3.58713e-07 2.718 ||| 0-1 ||| 30 668016 +a ||| more to promote ||| 0.0384615 0.229811 1.49697e-06 5.1279e-08 2.718 ||| 0-1 ||| 26 668016 +a ||| more to support such schemes . ||| 1 0.229811 1.49697e-06 3.15382e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| more to support such schemes ||| 1 0.229811 1.49697e-06 1.04121e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| more to support such ||| 1 0.229811 1.49697e-06 5.65874e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| more to support ||| 0.0344828 0.229811 1.49697e-06 2.73514e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| more to ||| 0.0220791 0.229811 3.59273e-05 0.000799984 2.718 ||| 0-1 ||| 1087 668016 +a ||| more towards ||| 0.0307692 0.155507 2.99394e-06 7.70201e-06 2.718 ||| 0-1 ||| 65 668016 +a ||| more ||| 9.69321e-05 0.0001318 1.49697e-05 1.37e-05 2.718 ||| 0-0 ||| 103165 668016 +a ||| moreover , also ||| 0.1 0.0001043 1.49697e-06 5.41862e-10 2.718 ||| 0-0 ||| 10 668016 +a ||| moreover , making ||| 0.333333 0.0275406 1.49697e-06 5.89454e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| moreover , on ||| 0.037037 0.0782999 1.49697e-06 4.89949e-07 2.718 ||| 0-2 ||| 27 668016 +a ||| moreover , to ||| 0.0188679 0.229811 1.49697e-06 4.52424e-06 2.718 ||| 0-2 ||| 53 668016 +a ||| moreover , ||| 0.000160772 0.0001043 1.49697e-06 1.07329e-07 2.718 ||| 0-0 ||| 6220 668016 +a ||| moreover willing to ||| 1 0.229811 1.49697e-06 1.43404e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| moreover ||| 0.0001514 0.0001043 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 6605 668016 +a ||| most ; on ||| 1 0.0782999 1.49697e-06 5.0499e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| most attention to ||| 0.125 0.229811 1.49697e-06 3.95609e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| most clearly from the ||| 1 0.0435582 1.49697e-06 3.48593e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| most clearly from ||| 1 0.0435582 1.49697e-06 5.67816e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| most consistent information at ||| 1 0.204175 1.49697e-06 6.74362e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| most important issue for the Group of ||| 1 0.0683377 1.49697e-06 5.01961e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| most important issue for the Group ||| 1 0.0683377 1.49697e-06 9.23334e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| most important issue for the ||| 0.125 0.0683377 1.49697e-06 2.83841e-13 2.718 ||| 0-3 ||| 8 668016 +a ||| most important issue for ||| 0.0666667 0.0683377 1.49697e-06 4.62343e-12 2.718 ||| 0-3 ||| 15 668016 +a ||| most important target group for such ||| 0.5 0.0683377 1.49697e-06 6.15362e-20 2.718 ||| 0-4 ||| 2 668016 +a ||| most important target group for ||| 0.5 0.0683377 1.49697e-06 2.97434e-17 2.718 ||| 0-4 ||| 2 668016 +a ||| most of ||| 0.000426621 0.0188479 2.99394e-06 1.27838e-05 2.718 ||| 0-1 ||| 4688 668016 +a ||| most significant shortcomings in ||| 1 0.0587624 1.49697e-06 1.6154e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| most towards ||| 1 0.155507 1.49697e-06 1.45764e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| most warmly for ||| 0.0357143 0.0683377 1.49697e-06 4.98481e-10 2.718 ||| 0-2 ||| 28 668016 +a ||| mostly unavailable to ||| 0.5 0.229811 1.49697e-06 3.19825e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| motion available for ||| 0.5 0.0683377 1.49697e-06 8.86146e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| motivate ||| 0.0162602 0.355073 2.99394e-06 8.94e-05 2.718 ||| 0-0 ||| 123 668016 +a ||| motivated by ||| 0.0174419 0.0337966 4.49091e-06 9.46162e-08 2.718 ||| 0-1 ||| 172 668016 +a ||| motivation to ||| 0.0454545 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| move around ||| 0.0104167 0.0931303 1.49697e-06 1.38298e-07 2.718 ||| 0-1 ||| 96 668016 +a ||| move at ||| 0.047619 0.204175 1.49697e-06 5.20401e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| move away from ||| 0.0042735 0.0435582 1.49697e-06 3.50132e-10 2.718 ||| 0-2 ||| 234 668016 +a ||| move away ||| 0.00917431 0.0377856 1.49697e-06 3.6008e-08 2.718 ||| 0-1 ||| 109 668016 +a ||| move by buying out ||| 1 0.0337966 1.49697e-06 1.92743e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| move by buying ||| 1 0.0337966 1.49697e-06 5.03194e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| move by ||| 0.0666667 0.0337966 1.49697e-06 1.25798e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| move closer to ||| 0.0175439 0.229811 1.49697e-06 1.14085e-08 2.718 ||| 0-2 ||| 57 668016 +a ||| move down to ||| 1 0.229811 1.49697e-06 3.7391e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| move forward in ||| 0.00819672 0.0587624 1.49697e-06 5.11143e-09 2.718 ||| 0-2 ||| 122 668016 +a ||| move into Africa ||| 1 0.107578 1.49697e-06 3.17636e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| move into ||| 0.03 0.107578 4.49091e-06 9.2876e-07 2.718 ||| 0-1 ||| 100 668016 +a ||| move offering ||| 0.333333 0.103522 1.49697e-06 2.70786e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| move on to ||| 0.00947867 0.0782999 2.99394e-06 5.15409e-07 2.718 ||| 0-1 ||| 211 668016 +a ||| move on ||| 0.0052356 0.0782999 2.99394e-06 5.80035e-06 2.718 ||| 0-1 ||| 382 668016 +a ||| move through ||| 0.2 0.230708 1.49697e-06 1.21542e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| move to ||| 0.00808081 0.229811 5.98788e-06 5.35611e-05 2.718 ||| 0-1 ||| 495 668016 +a ||| move towards a ||| 0.00520833 0.155507 1.49697e-06 2.28575e-08 2.718 ||| 0-1 ||| 192 668016 +a ||| move towards ||| 0.00595948 0.155507 7.48485e-06 5.15671e-07 2.718 ||| 0-1 ||| 839 668016 +a ||| moved in the direction ||| 0.333333 0.0587624 1.49697e-06 1.06053e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| moved in the ||| 0.0555556 0.0587624 1.49697e-06 1.16928e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| moved in ||| 0.0408163 0.0587624 2.99394e-06 1.90462e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| moved on rather quickly to ||| 1 0.229811 1.49697e-06 1.03061e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| moved on ||| 0.0175439 0.0782999 2.99394e-06 1.20256e-06 2.718 ||| 0-1 ||| 114 668016 +a ||| moved to ||| 0.012987 0.229811 2.99394e-06 1.11046e-05 2.718 ||| 0-1 ||| 154 668016 +a ||| movement if ||| 0.166667 0.0014881 1.49697e-06 5.68944e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| movement in ||| 0.00956938 0.0587624 2.99394e-06 2.63762e-06 2.718 ||| 0-1 ||| 209 668016 +a ||| movement of ||| 0.000338295 0.0188479 1.49697e-06 1.2985e-06 2.718 ||| 0-1 ||| 2956 668016 +a ||| movement on ||| 0.0307692 0.0782999 2.99394e-06 1.66537e-06 2.718 ||| 0-1 ||| 65 668016 +a ||| movement to ||| 0.0151515 0.229811 1.49697e-06 1.53782e-05 2.718 ||| 0-1 ||| 66 668016 +a ||| movement towards ||| 0.0166667 0.155507 1.49697e-06 1.48057e-07 2.718 ||| 0-1 ||| 60 668016 +a ||| movements to ||| 0.1 0.229811 1.49697e-06 4.27368e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| movements within ||| 0.166667 0.0123496 1.49697e-06 6.06828e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| moves of ||| 0.1 0.0188479 1.49697e-06 4.58467e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| moves on to ||| 0.125 0.0782999 1.49697e-06 5.22488e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| moves on ||| 0.0952381 0.0782999 2.99394e-06 5.88002e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| moving any closer to ||| 1 0.229811 1.49697e-06 6.7022e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| moving in must ||| 1 0.0587624 1.49697e-06 5.51609e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| moving in ||| 0.010101 0.0587624 2.99394e-06 3.5689e-06 2.718 ||| 0-1 ||| 198 668016 +a ||| moving mail at ||| 1 0.204175 1.49697e-06 7.27813e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| moving to ||| 0.0133333 0.229811 2.99394e-06 2.08079e-05 2.718 ||| 0-1 ||| 150 668016 +a ||| moving toward ||| 0.333333 0.159609 1.49697e-06 2.65518e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| moving towards ||| 0.00689655 0.155507 2.99394e-06 2.00332e-07 2.718 ||| 0-1 ||| 290 668016 +a ||| much about ||| 0.0263158 0.0526361 2.99394e-06 5.05795e-06 2.718 ||| 0-1 ||| 76 668016 +a ||| much an expression of our ||| 1 0.0188479 1.49697e-06 7.40811e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| much an expression of ||| 1 0.0188479 1.49697e-06 5.37053e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| much as it does ||| 0.166667 0.0243476 1.49697e-06 1.09824e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| much as it ||| 0.0322581 0.0243476 1.49697e-06 1.56579e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| much as of ||| 0.333333 0.0188479 1.49697e-06 3.02948e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| much as possible to ||| 0.047619 0.229811 1.49697e-06 2.87781e-09 2.718 ||| 0-3 ||| 21 668016 +a ||| much as ||| 0.0120087 0.0243476 1.64667e-05 8.80486e-06 2.718 ||| 0-1 ||| 916 668016 +a ||| much at heart ||| 0.25 0.204175 1.49697e-06 2.7534e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| much at ||| 0.0322581 0.204175 1.49697e-06 3.41613e-05 2.718 ||| 0-1 ||| 31 668016 +a ||| much closer to ||| 0.0740741 0.229811 2.99394e-06 7.48903e-08 2.718 ||| 0-2 ||| 27 668016 +a ||| much concerned about ||| 0.2 0.0526361 1.49697e-06 8.13621e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| much damage in ||| 0.5 0.0587624 1.49697e-06 2.53883e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| much destabilises ||| 1 0.047619 1.49697e-06 9.0333e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| much emphasis on ||| 0.0714286 0.0782999 1.49697e-06 1.94568e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| much for the ||| 0.0106383 0.0683377 1.49697e-06 2.27057e-06 2.718 ||| 0-1 ||| 94 668016 +a ||| much for their views ||| 0.5 0.0683377 1.49697e-06 3.48526e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| much for their ||| 0.0454545 0.0683377 1.49697e-06 4.28691e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| much for ||| 0.025641 0.0683377 1.19758e-05 3.69848e-05 2.718 ||| 0-1 ||| 312 668016 +a ||| much from ||| 0.0204082 0.0435582 1.49697e-06 7.22544e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| much further ||| 0.00454545 0.0003879 1.49697e-06 1.0037e-08 2.718 ||| 0-1 ||| 220 668016 +a ||| much good for ||| 1 0.0683377 1.49697e-06 1.91803e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| much importance to ||| 0.1 0.229811 1.49697e-06 4.56725e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| much in favour with ||| 1 0.0571592 1.49697e-06 1.16031e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| much in the interests of ||| 0.166667 0.0188479 1.49697e-06 5.34851e-12 2.718 ||| 0-4 ||| 6 668016 +a ||| much in the ||| 0.0105263 0.0587624 1.49697e-06 3.70222e-06 2.718 ||| 0-1 ||| 95 668016 +a ||| much in ||| 0.0414365 0.0587624 2.24546e-05 6.03048e-05 2.718 ||| 0-1 ||| 362 668016 +a ||| much interest to ||| 0.333333 0.229811 1.49697e-06 3.94844e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| much invested to quit ||| 1 0.229811 1.49697e-06 1.8705e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| much invested to ||| 1 0.229811 1.49697e-06 2.67214e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| much is at ||| 0.166667 0.204175 1.49697e-06 1.07065e-06 2.718 ||| 0-2 ||| 6 668016 +a ||| much like to ||| 0.0571429 0.229811 2.99394e-06 6.24402e-07 2.718 ||| 0-2 ||| 35 668016 +a ||| much more towards ||| 0.333333 0.155507 1.49697e-06 7.7305e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| much of a ||| 0.0188679 0.0188479 1.49697e-06 1.31594e-06 2.718 ||| 0-1 ||| 53 668016 +a ||| much of an impression upon ||| 1 0.19056 1.49697e-06 1.25751e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| much of ||| 0.000855432 0.0188479 1.49697e-06 2.96879e-05 2.718 ||| 0-1 ||| 1169 668016 +a ||| much on the ||| 0.0363636 0.0782999 2.99394e-06 2.33755e-06 2.718 ||| 0-1 ||| 55 668016 +a ||| much on ||| 0.0393701 0.0782999 7.48485e-06 3.8076e-05 2.718 ||| 0-1 ||| 127 668016 +a ||| much starting to ||| 1 0.229811 1.49697e-06 1.6068e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| much stuck in ||| 1 0.0587624 1.49697e-06 6.09079e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| much sympathy for ||| 0.333333 0.0683377 1.49697e-06 5.73265e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| much tighter at ||| 1 0.204175 1.49697e-06 2.32297e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| much to be desired ||| 0.0107527 0.229811 1.49697e-06 9.87655e-11 2.718 ||| 0-1 ||| 93 668016 +a ||| much to be ||| 0.0111111 0.229811 1.49697e-06 6.37197e-06 2.718 ||| 0-1 ||| 90 668016 +a ||| much to getting ||| 1 0.229811 1.49697e-06 4.08557e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| much to join ||| 0.25 0.229811 1.49697e-06 1.64548e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| much to ||| 0.01998 0.229811 2.99394e-05 0.000351598 2.718 ||| 0-1 ||| 1001 668016 +a ||| much under way ||| 0.5 0.0384416 1.49697e-06 3.06882e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| much under ||| 0.333333 0.0384416 1.49697e-06 1.42365e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| much urge ||| 0.25 0.345826 1.49697e-06 2.45154e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| much want to congratulate ||| 1 0.237528 1.49697e-06 5.47309e-10 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| much we as ||| 1 0.0008079 1.49697e-06 4.64584e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| much we ||| 0.00854701 0.0008079 1.49697e-06 4.55278e-07 2.718 ||| 0-1 ||| 117 668016 +a ||| multilateral approach to ||| 0.0344828 0.229811 1.49697e-06 2.7643e-10 2.718 ||| 0-2 ||| 29 668016 +a ||| murdered , ||| 0.0222222 0.0368732 1.49697e-06 2.71901e-06 2.718 ||| 0-0 ||| 45 668016 +a ||| murdered as ||| 0.5 0.0243476 1.49697e-06 4.12303e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| murdered in ||| 0.0140845 0.0587624 1.49697e-06 2.82388e-07 2.718 ||| 0-1 ||| 71 668016 +a ||| murdered ||| 0.005997 0.0368732 5.98788e-06 2.28e-05 2.718 ||| 0-0 ||| 667 668016 +a ||| murdering ||| 0.0113636 0.233645 1.49697e-06 2.28e-05 2.718 ||| 0-0 ||| 88 668016 +a ||| must , of ||| 0.0263158 0.0188479 1.49697e-06 5.45191e-06 2.718 ||| 0-2 ||| 38 668016 +a ||| must , to ||| 0.142857 0.229811 1.49697e-06 6.45676e-05 2.718 ||| 0-2 ||| 7 668016 +a ||| must adapt to ||| 0.0454545 0.229811 1.49697e-06 3.3027e-09 2.718 ||| 0-2 ||| 22 668016 +a ||| must allow for ||| 0.0909091 0.0683377 1.49697e-06 1.38168e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| must also concern ourselves with here in ||| 1 0.0587624 1.49697e-06 2.58162e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| must also contribute to ||| 0.0714286 0.229811 1.49697e-06 1.06331e-10 2.718 ||| 0-3 ||| 14 668016 +a ||| must also go for ||| 1 0.0683377 1.49697e-06 1.68149e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| must apply to ||| 0.0116279 0.229811 1.49697e-06 7.79112e-08 2.718 ||| 0-2 ||| 86 668016 +a ||| must be able to ||| 0.00423131 0.229811 4.49091e-06 8.19222e-09 2.718 ||| 0-3 ||| 709 668016 +a ||| must be allowed to ||| 0.00884956 0.229811 1.49697e-06 1.5886e-09 2.718 ||| 0-3 ||| 113 668016 +a ||| must be available for ||| 0.0909091 0.0683377 1.49697e-06 3.28328e-10 2.718 ||| 0-3 ||| 11 668016 +a ||| must be based on the ||| 0.00854701 0.0782999 1.49697e-06 1.53042e-11 2.718 ||| 0-3 ||| 117 668016 +a ||| must be based on ||| 0.00211864 0.0782999 1.49697e-06 2.49287e-10 2.718 ||| 0-3 ||| 472 668016 +a ||| must be done whilst meeting ||| 1 0.0442295 1.49697e-06 4.08609e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| must be done whilst ||| 1 0.0442295 1.49697e-06 3.25326e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| must be drafted in such ||| 0.5 0.0587624 1.49697e-06 9.78405e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| must be drafted in ||| 1 0.0587624 1.49697e-06 4.72911e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| must be given to ||| 0.0119048 0.229811 1.49697e-06 6.73412e-09 2.718 ||| 0-3 ||| 84 668016 +a ||| must be in ||| 0.00546448 0.0587624 1.49697e-06 1.68296e-06 2.718 ||| 0-2 ||| 183 668016 +a ||| must be prepared to ||| 0.0144928 0.229811 1.49697e-06 8.50719e-10 2.718 ||| 0-3 ||| 69 668016 +a ||| must be repatriated to ||| 1 0.229811 1.49697e-06 6.86855e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| must be tabled on ||| 1 0.0782999 1.49697e-06 8.68148e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| must be taken with ||| 0.333333 0.0571592 1.49697e-06 4.26256e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| must be to ||| 0.0047619 0.229811 2.99394e-06 9.81221e-06 2.718 ||| 0-2 ||| 420 668016 +a ||| must be ||| 6.88492e-05 0.0003124 2.99394e-06 2.08811e-07 2.718 ||| 0-1 ||| 29049 668016 +a ||| must bring ||| 0.0116279 0.0161903 1.49697e-06 2.949e-07 2.718 ||| 0-1 ||| 86 668016 +a ||| must call for ||| 0.0833333 0.0683377 1.49697e-06 1.26436e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| must come in the ||| 1 0.0587624 1.49697e-06 4.84191e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| must come in ||| 0.333333 0.0587624 1.49697e-06 7.8869e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| must condemn ||| 0.0217391 0.0017762 1.49697e-06 5.71872e-09 2.718 ||| 0-1 ||| 46 668016 +a ||| must continue to back ||| 0.2 0.229811 1.49697e-06 8.42674e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| must continue to ||| 0.00215517 0.229811 1.49697e-06 1.25286e-07 2.718 ||| 0-2 ||| 464 668016 +a ||| must do our best , in doing ||| 0.5 0.0587624 1.49697e-06 2.66815e-18 2.718 ||| 0-5 ||| 2 668016 +a ||| must do our best , in ||| 0.5 0.0587624 1.49697e-06 7.26817e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| must do this to ||| 1 0.229811 1.49697e-06 1.2018e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| must emphasise once again ||| 0.2 0.0700825 1.49697e-06 2.47804e-14 2.718 ||| 0-3 ||| 5 668016 +a ||| must emphasise the urgency of adopting this ||| 1 0.0188479 1.49697e-06 3.88155e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| must emphasise the urgency of adopting ||| 1 0.0188479 1.49697e-06 6.00729e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| must emphasise the urgency of ||| 1 0.0188479 1.49697e-06 1.22849e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| must fall to Member States at national ||| 1 0.204175 1.49697e-06 1.41352e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| must fall to Member States at ||| 1 0.204175 1.49697e-06 1.10001e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| must follow ||| 0.00729927 0.0017301 1.49697e-06 1.26739e-08 2.718 ||| 0-1 ||| 137 668016 +a ||| must in the ||| 0.1 0.0587624 1.49697e-06 5.70106e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| must in ||| 0.019802 0.0587624 2.99394e-06 9.28635e-05 2.718 ||| 0-1 ||| 101 668016 +a ||| must involve ||| 0.00512821 0.170498 1.49697e-06 1.05657e-06 2.718 ||| 0-1 ||| 195 668016 +a ||| must meet ||| 0.00520833 0.0482171 1.49697e-06 6.06648e-07 2.718 ||| 0-1 ||| 192 668016 +a ||| must naturally be stopped ||| 1 0.0700165 1.49697e-06 1.37591e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| must not try to ||| 0.0909091 0.229811 1.49697e-06 2.84666e-10 2.718 ||| 0-3 ||| 11 668016 +a ||| must now ||| 0.00184162 0.00208 1.49697e-06 2.06028e-07 2.718 ||| 0-1 ||| 543 668016 +a ||| must of course ||| 0.00763359 0.0188479 1.49697e-06 5.76805e-08 2.718 ||| 0-1 ||| 131 668016 +a ||| must of ||| 0.0125 0.0188479 1.49697e-06 4.57165e-05 2.718 ||| 0-1 ||| 80 668016 +a ||| must remain on ||| 0.0833333 0.0782999 1.49697e-06 7.11221e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| must send out ||| 0.0243902 0.0669777 1.49697e-06 4.082e-10 2.718 ||| 0-2 ||| 41 668016 +a ||| must shake their heads in ||| 1 0.0587624 1.49697e-06 1.25291e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| must to ||| 0.0555556 0.229811 1.49697e-06 0.000541426 2.718 ||| 0-1 ||| 18 668016 +a ||| must try to change people ||| 0.5 0.229811 1.49697e-06 8.95367e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| must try to change ||| 0.25 0.229811 1.49697e-06 1.01723e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| must try to ||| 0.0151515 0.229811 1.49697e-06 8.33796e-08 2.718 ||| 0-2 ||| 66 668016 +a ||| must work towards ||| 0.0277778 0.155507 1.49697e-06 3.29963e-09 2.718 ||| 0-2 ||| 36 668016 +a ||| must yield to ||| 0.5 0.229811 1.49697e-06 4.27727e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| must ||| 6.41001e-05 0.0001188 7.48485e-06 1.73e-05 2.718 ||| 0-0 ||| 78003 668016 +a ||| my God to ||| 0.5 0.154977 1.49697e-06 7.14309e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| my God ||| 0.125 0.154977 1.49697e-06 8.03875e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| my agreement to ||| 0.333333 0.229811 1.49697e-06 4.15189e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| my assistant , Gaëlle Le Bouler ||| 1 1 1.49697e-06 6.68147e-29 2.718 ||| 0-3 ||| 1 668016 +a ||| my assistant , Gaëlle Le ||| 1 1 1.49697e-06 1.67037e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| my assistant , Gaëlle ||| 1 1 1.49697e-06 7.59258e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| my best to ||| 0.0322581 0.229811 1.49697e-06 3.12011e-08 2.718 ||| 0-2 ||| 31 668016 +a ||| my comments on the ||| 0.0344828 0.0782999 1.49697e-06 7.48869e-11 2.718 ||| 0-2 ||| 29 668016 +a ||| my comments on ||| 0.025 0.0782999 1.49697e-06 1.21982e-09 2.718 ||| 0-2 ||| 40 668016 +a ||| my comments to ||| 0.05 0.229811 1.49697e-06 1.12639e-08 2.718 ||| 0-2 ||| 20 668016 +a ||| my compliments to ||| 0.0163934 0.229811 1.49697e-06 5.63197e-10 2.718 ||| 0-2 ||| 61 668016 +a ||| my constituent ||| 0.015625 0.0002072 1.49697e-06 1.054e-10 2.718 ||| 0-0 ||| 64 668016 +a ||| my contribution to ||| 0.03125 0.229811 1.49697e-06 2.02751e-08 2.718 ||| 0-2 ||| 32 668016 +a ||| my fellow ||| 0.000669344 0.0021796 1.49697e-06 8.81047e-09 2.718 ||| 0-1 ||| 1494 668016 +a ||| my gift to ||| 1 0.229811 1.49697e-06 1.12639e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| my neck out and ||| 1 0.0342825 1.49697e-06 2.18817e-14 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| my opinion , far from being ||| 1 0.0435582 1.49697e-06 2.63222e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| my opinion , far from ||| 1 0.0435582 1.49697e-06 9.24951e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| my opinion , to ||| 0.037037 0.229811 1.49697e-06 6.59281e-09 2.718 ||| 0-3 ||| 27 668016 +a ||| my opposition to ||| 0.0196078 0.229811 1.49697e-06 5.76714e-09 2.718 ||| 0-2 ||| 51 668016 +a ||| my reply to your question is this ||| 1 0.229811 1.49697e-06 2.78155e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| my reply to your question is ||| 1 0.229811 1.49697e-06 4.30488e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| my reply to your question ||| 0.333333 0.229811 1.49697e-06 1.37356e-15 2.718 ||| 0-2 ||| 3 668016 +a ||| my reply to your ||| 0.333333 0.229811 1.49697e-06 1.66029e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| my reply to ||| 0.0188679 0.229811 1.49697e-06 6.48803e-09 2.718 ||| 0-2 ||| 53 668016 +a ||| my sentiments to ||| 1 0.229811 1.49697e-06 1.05881e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| my speaking time to ||| 0.0434783 0.229811 1.49697e-06 4.24577e-11 2.718 ||| 0-3 ||| 23 668016 +a ||| my task to report , ||| 1 0.229811 1.49697e-06 1.38754e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| my task to report ||| 1 0.229811 1.49697e-06 1.16351e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| my task to ||| 0.166667 0.229811 1.49697e-06 2.83851e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| my thanks to ||| 0.0041841 0.229811 2.99394e-06 1.82476e-08 2.718 ||| 0-2 ||| 478 668016 +a ||| my turn , to ||| 0.333333 0.229811 1.49697e-06 6.02326e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| my voice to ||| 0.00787402 0.229811 1.49697e-06 9.79963e-09 2.718 ||| 0-2 ||| 127 668016 +a ||| my vote in ||| 0.00819672 0.0587624 1.49697e-06 6.07792e-09 2.718 ||| 0-2 ||| 122 668016 +a ||| my way to ||| 0.2 0.229811 1.49697e-06 4.85611e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| my ||| 8.95152e-05 0.0002072 1.04788e-05 1.55e-05 2.718 ||| 0-0 ||| 78199 668016 +a ||| myself , am elected by ||| 1 0.0337966 1.49697e-06 4.3465e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| myself among ||| 0.2 0.0134501 1.49697e-06 2.1148e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| myself at ||| 0.0625 0.204175 1.49697e-06 5.2925e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| myself free in ||| 1 0.0587624 1.49697e-06 1.08937e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| myself in for the sitting ||| 1 0.0683377 1.49697e-06 5.233e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| myself in for the ||| 1 0.0683377 1.49697e-06 7.52949e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| myself in for ||| 1 0.0683377 1.49697e-06 1.22647e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| myself in ||| 0.0163934 0.0587624 1.49697e-06 9.34283e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| myself of ||| 0.142857 0.0188479 1.49697e-06 4.59946e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| myself to a ||| 0.25 0.229811 1.49697e-06 2.41451e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| myself to be ||| 0.25 0.229811 1.49697e-06 9.87189e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| myself to succumb ||| 0.5 0.229811 1.49697e-06 1.19838e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| myself to suggesting a ||| 1 0.229811 1.49697e-06 2.34208e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| myself to suggesting ||| 1 0.229811 1.49697e-06 5.28377e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| myself to ||| 0.253165 0.229811 2.99394e-05 5.44719e-05 2.718 ||| 0-1 ||| 79 668016 +a ||| myself with ||| 0.151515 0.0571592 7.48485e-06 2.59609e-06 2.718 ||| 0-1 ||| 33 668016 +a ||| name for ||| 0.0222222 0.0683377 1.49697e-06 3.22056e-06 2.718 ||| 0-1 ||| 45 668016 +a ||| name of ||| 0.00224383 0.0188479 4.49091e-06 2.58516e-06 2.718 ||| 0-1 ||| 1337 668016 +a ||| name one of ||| 1 0.0188479 1.49697e-06 1.0775e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| name stands for many ||| 0.5 0.0683377 1.49697e-06 6.09195e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| name stands for ||| 0.5 0.0683377 1.49697e-06 1.77453e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| name to it at the ||| 0.5 0.204175 1.49697e-06 2.88576e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| name to it at ||| 0.5 0.204175 1.49697e-06 4.70056e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| name to ||| 0.0175439 0.229811 1.49697e-06 3.06164e-05 2.718 ||| 0-1 ||| 57 668016 +a ||| named ||| 0.0057971 0.0625 2.99394e-06 2.92e-05 2.718 ||| 0-0 ||| 345 668016 +a ||| namely , ||| 0.00552486 0.160809 5.98788e-06 0.00020866 2.718 ||| 0-0 ||| 724 668016 +a ||| namely by the ||| 0.2 0.160809 1.49697e-06 5.63951e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| namely by ||| 0.0178571 0.160809 1.49697e-06 9.1861e-06 2.718 ||| 0-0 ||| 56 668016 +a ||| namely that we are in ||| 1 0.0587624 1.49697e-06 2.78188e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| namely that ||| 0.0015186 0.160809 2.99394e-06 2.94328e-05 2.718 ||| 0-0 ||| 1317 668016 +a ||| namely to ||| 0.003003 0.229811 1.49697e-06 5.59782e-05 2.718 ||| 0-1 ||| 333 668016 +a ||| namely ||| 0.00359468 0.160809 5.53879e-05 0.0017497 2.718 ||| 0-0 ||| 10293 668016 +a ||| narrow in ||| 0.25 0.0587624 1.49697e-06 4.56627e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| nation alone , to ||| 1 0.229811 1.49697e-06 6.00058e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| nation state to lead ||| 0.333333 0.229811 1.49697e-06 2.3847e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| nation state to ||| 0.0769231 0.229811 1.49697e-06 1.23881e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| national currency to another ||| 1 0.229811 1.49697e-06 4.05895e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| national currency to ||| 0.166667 0.229811 1.49697e-06 1.68351e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| national differences in ||| 0.142857 0.0587624 1.49697e-06 1.80662e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| national of ||| 0.0416667 0.0188479 1.49697e-06 3.80084e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| nationally and ||| 0.015873 0.223614 1.49697e-06 1.42921e-06 2.718 ||| 0-0 ||| 63 668016 +a ||| nationally ||| 0.00387597 0.223614 1.49697e-06 0.0001141 2.718 ||| 0-0 ||| 258 668016 +a ||| nationals for ||| 0.111111 0.0683377 1.49697e-06 4.12703e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| nationals working in the Union to join ||| 1 0.229811 1.49697e-06 2.56068e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| nationals working in the Union to ||| 1 0.229811 1.49697e-06 5.47154e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| nations to ||| 0.0140845 0.229811 1.49697e-06 5.42967e-06 2.718 ||| 0-1 ||| 71 668016 +a ||| naturalisation for ||| 1 0.0683377 1.49697e-06 2.57939e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| naturally , ||| 0.000819001 0.0001268 1.49697e-06 1.07329e-07 2.718 ||| 0-0 ||| 1221 668016 +a ||| naturally be stopped ||| 1 0.0700165 1.49697e-06 8.90211e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| naturally ||| 0.000252845 0.0001268 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 3955 668016 +a ||| nature in this ||| 0.333333 0.0587624 1.49697e-06 5.48939e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| nature in ||| 0.0192308 0.0587624 1.49697e-06 8.49567e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| nature of the ||| 0.0015083 0.0188479 1.49697e-06 2.56765e-07 2.718 ||| 0-1 ||| 663 668016 +a ||| nature of ||| 0.00248756 0.0188479 4.49091e-06 4.1824e-06 2.718 ||| 0-1 ||| 1206 668016 +a ||| nature to ||| 0.0344828 0.229811 1.49697e-06 4.95326e-05 2.718 ||| 0-1 ||| 29 668016 +a ||| navigation on ||| 0.1 0.0782999 1.49697e-06 9.4839e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| near at ||| 0.166667 0.204175 1.49697e-06 1.33419e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| near enough to remove ||| 0.5 0.229811 1.49697e-06 4.33283e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| near enough to ||| 0.333333 0.229811 1.49697e-06 2.2685e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| near the ||| 0.00662252 0.0004654 1.49697e-06 6.0074e-08 2.718 ||| 0-1 ||| 151 668016 +a ||| near to ||| 0.0166667 0.229811 1.49697e-06 1.37318e-05 2.718 ||| 0-1 ||| 60 668016 +a ||| nearer to ||| 0.0930233 0.229811 5.98788e-06 1.5063e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| nearly prevailed ||| 0.0833333 0.0010983 1.49697e-06 1.17e-11 2.718 ||| 0-0 ||| 12 668016 +a ||| nearly ||| 0.000981354 0.0010983 2.99394e-06 1.8e-06 2.718 ||| 0-0 ||| 2038 668016 +a ||| necessary , in fact ||| 1 0.0587624 1.49697e-06 5.40042e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| necessary , in ||| 0.0147059 0.0587624 1.49697e-06 1.84359e-06 2.718 ||| 0-2 ||| 68 668016 +a ||| necessary in ||| 0.00552486 0.0587624 2.99394e-06 1.54592e-05 2.718 ||| 0-1 ||| 362 668016 +a ||| necessary steps to ensure that ||| 0.0625 0.229811 1.49697e-06 4.01113e-14 2.718 ||| 0-2 ||| 16 668016 +a ||| necessary steps to ensure ||| 0.030303 0.229811 1.49697e-06 2.38451e-12 2.718 ||| 0-2 ||| 33 668016 +a ||| necessary steps to ||| 0.00649351 0.229811 1.49697e-06 5.31782e-09 2.718 ||| 0-2 ||| 154 668016 +a ||| necessary to adopt ||| 0.0192308 0.229811 1.49697e-06 9.37379e-09 2.718 ||| 0-1 ||| 52 668016 +a ||| necessary to be ||| 0.0344828 0.229811 1.49697e-06 1.63346e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| necessary to emphasise ||| 0.0454545 0.229811 1.49697e-06 1.52324e-09 2.718 ||| 0-1 ||| 22 668016 +a ||| necessary to make ||| 0.00793651 0.229811 1.49697e-06 1.56632e-07 2.718 ||| 0-1 ||| 126 668016 +a ||| necessary to ||| 0.0036302 0.229811 2.24546e-05 9.01326e-05 2.718 ||| 0-1 ||| 4132 668016 +a ||| necessity , normally , for following formal ||| 1 0.0683377 1.49697e-06 2.23585e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| necessity , normally , for following ||| 1 0.0683377 1.49697e-06 1.32299e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| necessity , normally , for ||| 1 0.0683377 1.49697e-06 1.0352e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| neck out and ||| 1 0.0342825 1.49697e-06 3.40254e-11 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| need , at ||| 0.142857 0.204175 1.49697e-06 3.72159e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| need access to ||| 0.0416667 0.229811 1.49697e-06 2.76225e-08 2.718 ||| 0-2 ||| 24 668016 +a ||| need at ||| 0.03125 0.204175 1.49697e-06 3.12071e-05 2.718 ||| 0-1 ||| 32 668016 +a ||| need for a ||| 0.000744048 0.0683377 1.49697e-06 1.49761e-06 2.718 ||| 0-1 ||| 1344 668016 +a ||| need for effort and dare ||| 1 0.188525 1.49697e-06 1.47567e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| need for me ||| 0.037037 0.0683377 1.49697e-06 2.03428e-08 2.718 ||| 0-1 ||| 27 668016 +a ||| need for ||| 0.00197933 0.0683377 2.69455e-05 3.37864e-05 2.718 ||| 0-1 ||| 9094 668016 +a ||| need me to ||| 0.25 0.229811 1.49697e-06 1.93389e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| need of ||| 0.00473934 0.0188479 2.99394e-06 2.71205e-05 2.718 ||| 0-1 ||| 422 668016 +a ||| need them ||| 0.00746269 0.0045234 1.49697e-06 2.05019e-07 2.718 ||| 0-1 ||| 134 668016 +a ||| need to be attached ||| 0.333333 0.229811 1.49697e-06 1.8627e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| need to be met ||| 0.0344828 0.229811 1.49697e-06 4.46465e-10 2.718 ||| 0-1 ||| 29 668016 +a ||| need to be paid ||| 0.0909091 0.229811 1.49697e-06 7.83496e-10 2.718 ||| 0-1 ||| 11 668016 +a ||| need to be resolved more ||| 1 0.229811 1.49697e-06 3.44295e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| need to be resolved ||| 0.0131579 0.229811 1.49697e-06 1.50762e-10 2.718 ||| 0-1 ||| 76 668016 +a ||| need to be ||| 0.00434193 0.229811 2.39515e-05 5.82092e-06 2.718 ||| 0-1 ||| 3685 668016 +a ||| need to decide ||| 0.0625 0.229811 1.49697e-06 2.05884e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| need to do ||| 0.0105634 0.229811 4.49091e-06 1.10339e-06 2.718 ||| 0-1 ||| 284 668016 +a ||| need to find a few ||| 0.5 0.229811 1.49697e-06 8.30838e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| need to find a ||| 0.0125 0.229811 1.49697e-06 4.73952e-09 2.718 ||| 0-1 ||| 80 668016 +a ||| need to find ||| 0.00497512 0.229811 1.49697e-06 1.06925e-07 2.718 ||| 0-1 ||| 201 668016 +a ||| need to get used ||| 0.2 0.229811 1.49697e-06 6.02423e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| need to get ||| 0.0142857 0.229811 1.49697e-06 1.40425e-07 2.718 ||| 0-1 ||| 70 668016 +a ||| need to go ||| 0.010101 0.229811 1.49697e-06 1.87833e-07 2.718 ||| 0-1 ||| 99 668016 +a ||| need to improve ||| 0.00266667 0.229811 1.49697e-06 1.39718e-08 2.718 ||| 0-1 ||| 375 668016 +a ||| need to look at ||| 0.010989 0.204175 1.49697e-06 8.0833e-10 2.718 ||| 0-3 ||| 91 668016 +a ||| need to play ||| 0.0555556 0.229811 1.49697e-06 8.28674e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| need to promote economic development ||| 0.25 0.229811 1.49697e-06 4.10817e-16 2.718 ||| 0-1 ||| 4 668016 +a ||| need to promote economic ||| 0.25 0.229811 1.49697e-06 2.49737e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| need to promote ||| 0.00512821 0.229811 1.49697e-06 2.05884e-08 2.718 ||| 0-1 ||| 195 668016 +a ||| need to review ||| 0.0105263 0.229811 1.49697e-06 1.2141e-08 2.718 ||| 0-1 ||| 95 668016 +a ||| need to take action ||| 0.0212766 0.229811 1.49697e-06 1.56325e-10 2.718 ||| 0-1 ||| 47 668016 +a ||| need to take ||| 0.00397614 0.229811 2.99394e-06 5.17118e-07 2.718 ||| 0-1 ||| 503 668016 +a ||| need to think about the ||| 0.0909091 0.0004654 1.49697e-06 6.7545e-14 2.718 ||| 0-4 ||| 11 668016 +a ||| need to ||| 0.00608104 0.229811 0.000164667 0.000321192 2.718 ||| 0-1 ||| 18089 668016 +a ||| needed across ||| 0.5 0.0490758 1.49697e-06 6.58788e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| needed at a ||| 0.333333 0.204175 2.99394e-06 2.02008e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| needed at ||| 0.0350877 0.204175 2.99394e-06 4.55734e-06 2.718 ||| 0-1 ||| 57 668016 +a ||| needed for ||| 0.0017331 0.0683377 1.49697e-06 4.93401e-06 2.718 ||| 0-1 ||| 577 668016 +a ||| needed from ||| 0.037037 0.0435582 1.49697e-06 9.63919e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| needed in this respect ||| 0.5 0.0587624 1.49697e-06 2.24875e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| needed in this ||| 0.025 0.0587624 1.49697e-06 5.19823e-08 2.718 ||| 0-1 ||| 40 668016 +a ||| needed in ||| 0.0078534 0.0587624 4.49091e-06 8.04505e-06 2.718 ||| 0-1 ||| 382 668016 +a ||| needed now ||| 0.0238095 0.00208 1.49697e-06 1.78489e-08 2.718 ||| 0-1 ||| 42 668016 +a ||| needed to urge them ||| 1 0.229811 1.49697e-06 4.11428e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| needed to urge ||| 1 0.229811 1.49697e-06 1.53381e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| needed to ||| 0.00409117 0.229811 1.04788e-05 4.69054e-05 2.718 ||| 0-1 ||| 1711 668016 +a ||| needed with ||| 0.25 0.0571592 1.49697e-06 2.23547e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| needing to be given ||| 0.25 0.229811 1.49697e-06 1.74278e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| needing to be ||| 0.03125 0.229811 1.49697e-06 2.53939e-08 2.718 ||| 0-1 ||| 32 668016 +a ||| needing to ||| 0.0319149 0.229811 4.49091e-06 1.40121e-06 2.718 ||| 0-1 ||| 94 668016 +a ||| needless to say ||| 0.0027248 0.229811 1.49697e-06 1.94195e-09 2.718 ||| 0-1 ||| 367 668016 +a ||| needless to ||| 0.0143885 0.229811 2.99394e-06 2.03175e-06 2.718 ||| 0-1 ||| 139 668016 +a ||| needs are to be ||| 0.5 0.229811 1.49697e-06 1.9101e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| needs are to ||| 0.5 0.229811 1.49697e-06 1.05397e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| needs in relation to ||| 0.333333 0.229811 1.49697e-06 3.61753e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| needs of ||| 0.00297442 0.0188479 7.48485e-06 5.86542e-06 2.718 ||| 0-1 ||| 1681 668016 +a ||| needs to be adopted before ||| 0.333333 0.229811 1.49697e-06 6.42298e-14 2.718 ||| 0-1 ||| 3 668016 +a ||| needs to be adopted ||| 0.0322581 0.229811 1.49697e-06 2.56816e-10 2.718 ||| 0-1 ||| 31 668016 +a ||| needs to be done ||| 0.00183486 0.229811 1.49697e-06 5.7406e-10 2.718 ||| 0-1 ||| 545 668016 +a ||| needs to be made ||| 0.00625 0.229811 1.49697e-06 2.63715e-09 2.718 ||| 0-1 ||| 160 668016 +a ||| needs to be provided ||| 0.05 0.229811 1.49697e-06 2.88541e-10 2.718 ||| 0-1 ||| 20 668016 +a ||| needs to be put in place ||| 0.1 0.229811 1.49697e-06 4.47149e-14 2.718 ||| 0-1 ||| 10 668016 +a ||| needs to be put in ||| 0.0909091 0.229811 1.49697e-06 2.97109e-11 2.718 ||| 0-1 ||| 11 668016 +a ||| needs to be put ||| 0.0212766 0.229811 1.49697e-06 1.38807e-09 2.718 ||| 0-1 ||| 47 668016 +a ||| needs to be ||| 0.00249626 0.229811 1.49697e-05 1.2589e-06 2.718 ||| 0-1 ||| 4006 668016 +a ||| needs to focus on ||| 0.0625 0.0782999 1.49697e-06 5.17378e-11 2.718 ||| 0-3 ||| 16 668016 +a ||| needs to ||| 0.0046729 0.229811 4.19152e-05 6.94648e-05 2.718 ||| 0-1 ||| 5992 668016 +a ||| negative . in ||| 1 0.0587624 1.49697e-06 4.25856e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| negative effect on ||| 0.0104167 0.0782999 1.49697e-06 2.96134e-10 2.718 ||| 0-2 ||| 96 668016 +a ||| negative impact on both ||| 1 0.0782999 1.49697e-06 1.21166e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| negative impact on ||| 0.00326797 0.0782999 1.49697e-06 7.31459e-11 2.718 ||| 0-2 ||| 306 668016 +a ||| negative trend in ||| 0.333333 0.0587624 1.49697e-06 2.37602e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| negatively to ||| 0.0833333 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| neglected anywhere to ||| 1 0.229811 1.49697e-06 3.80848e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| neglected for ||| 0.0769231 0.0683377 1.49697e-06 1.32655e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| negotiate with ||| 0.0031746 0.0571592 1.49697e-06 1.38569e-07 2.718 ||| 0-1 ||| 315 668016 +a ||| negotiated in obscurity , under ||| 0.5 0.0587624 1.49697e-06 1.16973e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| negotiated in obscurity , ||| 0.5 0.0587624 1.49697e-06 3.26013e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| negotiated in obscurity ||| 0.5 0.0587624 1.49697e-06 2.73375e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| negotiated in ||| 0.0119048 0.0587624 1.49697e-06 3.90536e-07 2.718 ||| 0-1 ||| 84 668016 +a ||| negotiation about ||| 0.333333 0.0526361 1.49697e-06 3.42672e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| negotiation of the ||| 0.0114943 0.0188479 1.49697e-06 1.2348e-08 2.718 ||| 0-1 ||| 87 668016 +a ||| negotiation of ||| 0.00473934 0.0188479 1.49697e-06 2.01134e-07 2.718 ||| 0-1 ||| 211 668016 +a ||| negotiations , for it has been very ||| 1 0.0683377 1.49697e-06 2.58923e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| negotiations , for it has been ||| 1 0.0683377 1.49697e-06 7.44139e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| negotiations , for it has ||| 1 0.0683377 1.49697e-06 2.22849e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| negotiations , for it ||| 1 0.0683377 1.49697e-06 4.32927e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| negotiations , for ||| 0.142857 0.0683377 1.49697e-06 2.43447e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| negotiations for ||| 0.00316456 0.0683377 1.49697e-06 2.04141e-06 2.718 ||| 0-1 ||| 316 668016 +a ||| negotiations with ||| 0.00118624 0.0571592 2.99394e-06 9.24909e-07 2.718 ||| 0-1 ||| 1686 668016 +a ||| neighbour and the country to ||| 1 0.229811 1.49697e-06 2.81152e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| neighbouring country to ||| 0.166667 0.229811 1.49697e-06 7.69049e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| neither to ||| 0.0434783 0.229811 1.49697e-06 7.81173e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| network of ||| 0.00211416 0.0188479 1.49697e-06 7.33547e-07 2.718 ||| 0-1 ||| 473 668016 +a ||| networks via ||| 1 0.330861 1.49697e-06 1.68921e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| never again ] ||| 1 0.0700825 1.49697e-06 4.99439e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| never again ] ’ . ||| 1 0.0700825 1.49697e-06 2.63545e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| never again ] ’ ||| 1 0.0700825 1.49697e-06 8.70073e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| never again ||| 0.00694444 0.0700825 1.49697e-06 1.3354e-07 2.718 ||| 0-1 ||| 144 668016 +a ||| never fails to ||| 0.2 0.229811 1.49697e-06 3.04678e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| never wanting to ||| 0.333333 0.229811 1.49697e-06 2.98625e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| never ||| 0.000272294 0.0002113 2.99394e-06 1.8e-06 2.718 ||| 0-0 ||| 7345 668016 +a ||| nevertheless , I would like to ||| 0.037037 0.229811 1.49697e-06 3.77883e-13 2.718 ||| 0-5 ||| 27 668016 +a ||| nevertheless , ||| 0.000211015 0.0151859 1.49697e-06 2.112e-05 2.718 ||| 0-0 ||| 4739 668016 +a ||| nevertheless asking for ||| 1 0.0683377 1.49697e-06 1.95321e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| nevertheless channelled ||| 0.2 0.0483384 1.49697e-06 1.79142e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| nevertheless continues ||| 0.166667 0.0151859 1.49697e-06 8.16431e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| nevertheless in ||| 0.333333 0.0587624 1.49697e-06 7.37212e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| nevertheless occur , it is important to ||| 1 0.229811 1.49697e-06 4.88765e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| nevertheless to ||| 0.142857 0.229811 2.99394e-06 4.2982e-05 2.718 ||| 0-1 ||| 14 668016 +a ||| nevertheless ||| 0.00104493 0.0151859 1.19758e-05 0.0001771 2.718 ||| 0-0 ||| 7656 668016 +a ||| new , of ||| 0.25 0.0188479 1.49697e-06 2.10831e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| new Member States with ||| 0.0434783 0.0571592 1.49697e-06 2.45376e-12 2.718 ||| 0-3 ||| 23 668016 +a ||| new depths of ||| 0.5 0.0188479 1.49697e-06 6.36447e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| new direction so that it now ||| 1 0.00208 1.49697e-06 4.90644e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| new intergovernmental conference to embark on ||| 0.5 0.0782999 1.49697e-06 5.04243e-22 2.718 ||| 0-5 ||| 2 668016 +a ||| new members to ||| 0.125 0.229811 1.49697e-06 3.08829e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| new ones in ||| 0.0909091 0.0587624 1.49697e-06 7.9364e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| new phenomenon is in ||| 0.5 0.0587624 1.49697e-06 1.77829e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| new to him ||| 0.5 0.229811 1.49697e-06 6.71257e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| new to them ||| 0.25 0.229811 1.49697e-06 5.61628e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| new to ||| 0.038835 0.229811 5.98788e-06 0.000209375 2.718 ||| 0-1 ||| 103 668016 +a ||| new varieties of ||| 0.2 0.0188479 1.49697e-06 4.41977e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| new wording of the provisions on the ||| 0.5 0.0782999 1.49697e-06 5.12527e-18 2.718 ||| 0-5 ||| 2 668016 +a ||| new wording of the provisions on ||| 0.5 0.0782999 1.49697e-06 8.34846e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| news at ||| 0.333333 0.204175 1.49697e-06 1.23549e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| news for ||| 0.00617284 0.0683377 1.49697e-06 1.3376e-06 2.718 ||| 0-1 ||| 162 668016 +a ||| news to us ||| 0.5 0.229811 1.49697e-06 3.66499e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| news to ||| 0.0243902 0.229811 1.49697e-06 1.27159e-05 2.718 ||| 0-1 ||| 41 668016 +a ||| next , ||| 0.00215517 0.0076353 1.49697e-06 2.16567e-05 2.718 ||| 0-0 ||| 464 668016 +a ||| next . it is important to have ||| 1 0.229811 1.49697e-06 2.80265e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| next . it is important to ||| 1 0.229811 1.49697e-06 2.34339e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| next door to ||| 0.0416667 0.229811 1.49697e-06 1.63923e-09 2.718 ||| 0-2 ||| 24 668016 +a ||| next piece of ||| 0.333333 0.0076353 1.49697e-06 9.44798e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| next piece ||| 0.25 0.0076353 1.49697e-06 1.73791e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| next sitting ||| 0.00373134 0.0076353 1.49697e-06 1.26212e-08 2.718 ||| 0-0 ||| 268 668016 +a ||| next to it ||| 0.5 0.229811 1.49697e-06 6.43506e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| next to ||| 0.0238095 0.229811 5.98788e-06 3.61862e-05 2.718 ||| 0-1 ||| 168 668016 +a ||| next year ||| 0.000334784 0.0076353 1.49697e-06 4.5291e-08 2.718 ||| 0-0 ||| 2987 668016 +a ||| next ||| 0.000826148 0.0076353 2.39515e-05 0.0001816 2.718 ||| 0-0 ||| 19367 668016 +a ||| nicely into ||| 0.25 0.107578 1.49697e-06 1.51858e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| nitrates which seriously affect water ||| 1 0.330659 1.49697e-06 1.27382e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| nitrates which seriously affect ||| 1 0.330659 1.49697e-06 2.2387e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| no ' to ||| 0.030303 0.229811 8.98182e-06 9.36611e-07 2.718 ||| 0-2 ||| 198 668016 +a ||| no attempt to try to ||| 0.5 0.229811 1.49697e-06 3.11566e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| no choice but to ||| 0.0232558 0.229811 1.49697e-06 8.31103e-12 2.718 ||| 0-3 ||| 43 668016 +a ||| no credit on ||| 0.25 0.0782999 1.49697e-06 1.06305e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| no difference at ||| 0.333333 0.204175 1.49697e-06 6.9677e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| no different from ||| 0.166667 0.0435582 2.99394e-06 1.2339e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| no doubt that ||| 0.0015748 0.0008521 1.49697e-06 4.85712e-11 2.718 ||| 0-2 ||| 635 668016 +a ||| no interest in ||| 0.0384615 0.0587624 1.49697e-06 5.25207e-09 2.718 ||| 0-2 ||| 26 668016 +a ||| no keeping their number down to ||| 0.5 0.229811 1.49697e-06 6.40842e-18 2.718 ||| 0-5 ||| 2 668016 +a ||| no less importantly , as ||| 1 0.0243476 1.49697e-06 1.5523e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| no less than ||| 0.00904977 0.0242272 2.99394e-06 1.66519e-10 2.718 ||| 0-2 ||| 221 668016 +a ||| no longer be on ||| 0.333333 0.0782999 1.49697e-06 1.00341e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| no longer be open to ||| 1 0.229811 1.49697e-06 1.49362e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| no longer being able to ||| 0.0666667 0.229811 1.49697e-06 1.21474e-13 2.718 ||| 0-4 ||| 15 668016 +a ||| no longer call ||| 0.25 0.0032909 1.49697e-06 6.93262e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| no longer have ||| 0.00537634 0.0002819 1.49697e-06 4.50735e-11 2.718 ||| 0-0 ||| 186 668016 +a ||| no longer listen to because ||| 0.5 0.229811 1.49697e-06 2.53683e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| no longer listen to ||| 0.5 0.229811 1.49697e-06 7.7201e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| no longer than ||| 0.0625 0.0242272 1.49697e-06 1.83445e-10 2.718 ||| 0-2 ||| 16 668016 +a ||| no longer to ||| 0.015625 0.229811 1.49697e-06 5.11265e-08 2.718 ||| 0-2 ||| 64 668016 +a ||| no longer ||| 0.000162232 0.0002819 1.49697e-06 3.76875e-09 2.718 ||| 0-0 ||| 6164 668016 +a ||| no more and no less ||| 0.0178571 0.0015873 1.49697e-06 4.54411e-16 2.718 ||| 0-2 ||| 56 668016 +a ||| no more and no ||| 0.0151515 0.0015873 1.49697e-06 2.66987e-12 2.718 ||| 0-2 ||| 66 668016 +a ||| no more and ||| 0.05 0.0015873 1.49697e-06 3.42994e-09 2.718 ||| 0-2 ||| 20 668016 +a ||| no more than tot up ||| 1 0.0195077 1.49697e-06 2.66667e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| no more than ||| 0.0030581 0.0242272 1.49697e-06 2.23431e-09 2.718 ||| 0-2 ||| 327 668016 +a ||| no more ||| 0.00134589 0.0002819 1.49697e-06 4.59024e-08 2.718 ||| 0-0 ||| 743 668016 +a ||| no need for me ||| 0.111111 0.0683377 1.49697e-06 1.58348e-11 2.718 ||| 0-2 ||| 9 668016 +a ||| no need for ||| 0.00917431 0.0683377 1.49697e-06 2.62993e-08 2.718 ||| 0-2 ||| 109 668016 +a ||| no need of ||| 0.0588235 0.0188479 1.49697e-06 2.11106e-08 2.718 ||| 0-2 ||| 17 668016 +a ||| no negotiation about ||| 1 0.0526361 1.49697e-06 2.66736e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| no objection to Amendment ||| 1 0.229811 1.49697e-06 3.20093e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| no objection to ||| 0.0357143 0.229811 1.49697e-06 1.1725e-09 2.718 ||| 0-2 ||| 28 668016 +a ||| no problem in ||| 0.0333333 0.0587624 1.49697e-06 1.05182e-08 2.718 ||| 0-2 ||| 30 668016 +a ||| no serious work being carried out on ||| 1 0.0782999 1.49697e-06 6.91727e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| no small way to ||| 0.142857 0.229811 1.49697e-06 7.52943e-11 2.718 ||| 0-3 ||| 7 668016 +a ||| no to ||| 0.0227273 0.229811 1.04788e-05 0.000272675 2.718 ||| 0-1 ||| 308 668016 +a ||| no way on earth that this could ||| 1 0.0782999 1.49697e-06 7.08443e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| no way on earth that this ||| 1 0.0782999 1.49697e-06 9.96264e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| no way on earth that ||| 1 0.0782999 1.49697e-06 1.54187e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| no way on earth ||| 1 0.0782999 1.49697e-06 9.16601e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| no way on ||| 0.5 0.0782999 1.49697e-06 6.36529e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| no ||| 0.000266236 0.0002819 2.09576e-05 2.01e-05 2.718 ||| 0-0 ||| 52585 668016 +a ||| no-one but ||| 1 0.0367776 1.49697e-06 1.31213e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| no-one even ||| 0.5 0.0367776 1.49697e-06 1.16832e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| no-one ||| 0.00863931 0.0367776 5.98788e-06 1.92e-05 2.718 ||| 0-0 ||| 463 668016 +a ||| nobody can escape ||| 0.2 0.0320856 1.49697e-06 1.48513e-12 2.718 ||| 0-0 ||| 5 668016 +a ||| nobody can ||| 0.00423729 0.0320856 1.49697e-06 1.95412e-07 2.718 ||| 0-0 ||| 236 668016 +a ||| nobody even ||| 0.25 0.0320856 1.49697e-06 3.99785e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| nobody ||| 0.00253293 0.0320856 7.48485e-06 6.57e-05 2.718 ||| 0-0 ||| 1974 668016 +a ||| nod to ||| 0.285714 0.229811 2.99394e-06 3.85332e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| nominate him ||| 1 0.271605 1.49697e-06 1.28881e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| nominate ||| 0.0120482 0.271605 1.49697e-06 4.02e-05 2.718 ||| 0-0 ||| 83 668016 +a ||| non-EU ||| 0.00122549 0.136156 1.49697e-06 0.0001086 2.718 ||| 0-0 ||| 816 668016 +a ||| non-application of ||| 0.047619 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-1 ||| 21 668016 +a ||| none in ||| 0.0909091 0.0587624 1.49697e-06 1.18963e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| none of the challenges faced by the ||| 1 0.0188479 1.49697e-06 1.37175e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| none of the challenges faced by ||| 1 0.0188479 1.49697e-06 2.23442e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| none of the challenges faced ||| 1 0.0188479 1.49697e-06 4.25595e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| none of the challenges ||| 0.5 0.0188479 1.49697e-06 6.72347e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| none of the ||| 0.0027248 0.0188479 1.49697e-06 3.59544e-08 2.718 ||| 0-1 ||| 367 668016 +a ||| none of ||| 0.00150602 0.0142612 2.99394e-06 5.94528e-07 2.718 ||| 0-0 0-1 ||| 1328 668016 +a ||| none other than ||| 0.0285714 0.0242272 1.49697e-06 3.22406e-11 2.718 ||| 0-2 ||| 35 668016 +a ||| none other ||| 0.0322581 0.0096746 1.49697e-06 2.60396e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| none the less ||| 0.0625 0.00507 1.49697e-06 5.24271e-12 2.718 ||| 0-0 0-1 ||| 16 668016 +a ||| none the ||| 0.0263158 0.00507 1.49697e-06 3.08033e-08 2.718 ||| 0-0 0-1 ||| 38 668016 +a ||| none ||| 0.000521921 0.0096746 1.49697e-06 2.01e-05 2.718 ||| 0-0 ||| 1916 668016 +a ||| nonetheless , to ||| 0.142857 0.229811 1.49697e-06 3.18744e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| nonetheless because ||| 0.5 0.0052046 1.49697e-06 2.46525e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| nonetheless in ||| 0.142857 0.0587624 1.49697e-06 4.58429e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| nonetheless to ||| 0.04 0.229811 1.49697e-06 2.6728e-05 2.718 ||| 0-1 ||| 25 668016 +a ||| nor in the ||| 0.0188679 0.0587624 1.49697e-06 1.96601e-07 2.718 ||| 0-1 ||| 53 668016 +a ||| nor in ||| 0.00862069 0.0587624 1.49697e-06 3.2024e-06 2.718 ||| 0-1 ||| 116 668016 +a ||| nor limit itself to ||| 1 0.229811 1.49697e-06 6.15862e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| nor should it stop us from ||| 1 0.0435582 1.49697e-06 6.02145e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| normally , for following formal rules ||| 1 0.0683377 1.49697e-06 1.3124e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| normally , for following formal ||| 1 0.0683377 1.49697e-06 1.12943e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| normally , for following ||| 1 0.0683377 1.49697e-06 6.68303e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| normally , for ||| 0.5 0.0683377 1.49697e-06 5.22928e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| normally be carried out by a ||| 1 0.0337966 1.49697e-06 8.87817e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| normally be carried out by ||| 1 0.0337966 1.49697e-06 2.00293e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| normally is for ||| 1 0.0683377 1.49697e-06 1.3743e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| north to south ||| 0.04 0.229811 1.49697e-06 5.26854e-12 2.718 ||| 0-1 ||| 25 668016 +a ||| north to ||| 0.0263158 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| nose at ||| 0.25 0.204175 1.49697e-06 2.07616e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| nose into ||| 0.142857 0.107578 1.49697e-06 3.70532e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| nose to ||| 0.222222 0.229811 2.99394e-06 2.13684e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| not , by ||| 0.0526316 0.0337966 1.49697e-06 3.34981e-06 2.718 ||| 0-2 ||| 19 668016 +a ||| not , however , reduce consumption by ||| 1 0.0337966 1.49697e-06 2.79866e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| not accord with ||| 0.5 0.0571592 1.49697e-06 7.80883e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| not achieved at ||| 1 0.204175 1.49697e-06 1.94403e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| not admissible on ||| 1 0.0782999 1.49697e-06 5.18064e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| not affect ||| 0.05 0.330659 1.49697e-06 5.39428e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| not afraid to ||| 0.285714 0.229811 2.99394e-06 2.75072e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| not again ||| 0.142857 0.0700825 1.49697e-06 7.91525e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| not always sought from ||| 0.5 0.0435582 1.49697e-06 1.36965e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| not appear to be prepared to ||| 1 0.229811 1.49697e-06 1.4594e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| not apply to ||| 0.0540541 0.229811 2.99394e-06 1.72099e-07 2.718 ||| 0-2 ||| 37 668016 +a ||| not as ||| 0.00152439 0.0243476 1.49697e-06 2.99499e-05 2.718 ||| 0-1 ||| 656 668016 +a ||| not asked to ||| 0.25 0.229811 1.49697e-06 9.04149e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| not assigned to ||| 0.2 0.229811 1.49697e-06 9.08933e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| not at all ||| 0.00529101 0.204175 1.49697e-06 5.49093e-07 2.718 ||| 0-1 ||| 189 668016 +a ||| not at ||| 0.00756144 0.204175 5.98788e-06 0.0001162 2.718 ||| 0-1 ||| 529 668016 +a ||| not attend ||| 0.0833333 0.255585 1.49697e-06 1.21235e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| not be able to ||| 0.00520833 0.229811 1.49697e-06 1.80959e-08 2.718 ||| 0-3 ||| 192 668016 +a ||| not be affected in any way ||| 0.5 0.0587624 1.49697e-06 8.07056e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| not be affected in any ||| 1 0.0587624 1.49697e-06 3.744e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| not be affected in ||| 0.333333 0.0587624 1.49697e-06 2.47586e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| not be alive if ||| 1 0.0014881 1.49697e-06 6.33485e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| not be fed with ||| 1 0.0571592 1.49697e-06 8.57375e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| not be helped to ||| 1 0.214456 1.49697e-06 1.13747e-08 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| not be in ||| 0.0175439 0.0587624 1.49697e-06 3.71751e-06 2.718 ||| 0-2 ||| 57 668016 +a ||| not be subjected to discrimination ||| 0.333333 0.229811 1.49697e-06 5.89889e-15 2.718 ||| 0-3 ||| 3 668016 +a ||| not be subjected to ||| 0.333333 0.229811 1.49697e-06 4.68166e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| not be turned on ||| 1 0.0782999 1.49697e-06 1.31678e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| not be without interest for ||| 1 0.0683377 1.49697e-06 5.65843e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| not been granted ||| 0.111111 0.0210892 1.49697e-06 8.21966e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| not being expected of ||| 1 0.0188479 1.49697e-06 1.53174e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| not being prepared for ||| 1 0.0683377 1.49697e-06 3.10398e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| not come off ||| 0.333333 0.0893962 1.49697e-06 2.2179e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| not come to ||| 0.037037 0.229811 1.49697e-06 1.01573e-06 2.718 ||| 0-2 ||| 27 668016 +a ||| not compete on an equal footing ; ||| 1 0.0782999 1.49697e-06 1.73059e-24 2.718 ||| 0-2 ||| 1 668016 +a ||| not compete on an equal footing ||| 1 0.0782999 1.49697e-06 5.61879e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| not compete on an equal ||| 1 0.0782999 1.49697e-06 2.60129e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| not compete on an ||| 1 0.0782999 1.49697e-06 4.54771e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| not compete on ||| 1 0.0782999 1.49697e-06 1.02318e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| not concern data exchange for European ||| 1 0.0683377 1.49697e-06 7.04707e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| not concern data exchange for ||| 1 0.0683377 1.49697e-06 2.10744e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| not consider our Ministerial meetings to be ||| 1 0.229811 1.49697e-06 1.15112e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| not consider our Ministerial meetings to ||| 1 0.229811 1.49697e-06 6.35176e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| not deter ||| 0.5 0.184332 1.49697e-06 1.24615e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| not end up with ||| 0.5 0.0571592 1.49697e-06 8.45809e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| not entitled to ||| 0.0714286 0.229811 1.49697e-06 5.84827e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| not even a ||| 0.0163934 0.0495435 1.49697e-06 2.95326e-07 2.718 ||| 0-1 ||| 61 668016 +a ||| not even going to ||| 0.333333 0.229811 1.49697e-06 6.22804e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| not even ||| 0.000535332 0.0495435 1.49697e-06 6.66262e-06 2.718 ||| 0-1 ||| 1868 668016 +a ||| not expose you ||| 1 0.188855 1.49697e-06 6.13987e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| not expose ||| 0.5 0.188855 1.49697e-06 1.90165e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| not fail to ||| 0.0416667 0.229811 1.49697e-06 6.45821e-08 2.718 ||| 0-2 ||| 24 668016 +a ||| not fall at the first hurdle ||| 1 0.204175 1.49697e-06 2.57296e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| not fall at the first ||| 1 0.204175 1.49697e-06 3.67565e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| not fall at the ||| 1 0.204175 1.49697e-06 6.82699e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| not fall at ||| 1 0.204175 1.49697e-06 1.11204e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| not fall in ||| 1 0.0587624 1.49697e-06 1.96307e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| not fall into ||| 0.1 0.107578 1.49697e-06 1.98465e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| not for ||| 0.00415512 0.0683377 4.49091e-06 0.000125804 2.718 ||| 0-1 ||| 722 668016 +a ||| not form part of ||| 0.142857 0.0188479 1.49697e-06 5.48029e-11 2.718 ||| 0-3 ||| 7 668016 +a ||| not give in to ||| 0.047619 0.0587624 1.49697e-06 1.10457e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| not give in ||| 0.0526316 0.0587624 1.49697e-06 1.24307e-07 2.718 ||| 0-2 ||| 19 668016 +a ||| not go for ||| 0.25 0.0683377 1.49697e-06 7.35705e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| not go on ensuring ||| 1 0.0782999 1.49697e-06 8.80109e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| not go on ||| 0.2 0.0782999 1.49697e-06 7.57409e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| not going to attend ||| 1 0.229811 1.49697e-06 2.32336e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| not going to ||| 0.00421941 0.229811 1.49697e-06 1.02351e-06 2.718 ||| 0-2 ||| 237 668016 +a ||| not happy with ||| 0.1 0.0571592 1.49697e-06 3.59092e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| not have enough time to dedicate ||| 1 0.229811 1.49697e-06 4.26716e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| not have enough time to ||| 1 0.229811 1.49697e-06 3.87924e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| not have to deal with this ||| 1 0.0571592 1.49697e-06 1.66186e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| not have to deal with ||| 0.5 0.0571592 1.49697e-06 2.57197e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| not have to ||| 0.0222222 0.229811 4.49091e-06 1.43035e-05 2.718 ||| 0-2 ||| 135 668016 +a ||| not help thinking of ||| 0.0714286 0.0188479 1.49697e-06 1.42699e-12 2.718 ||| 0-3 ||| 14 668016 +a ||| not here just to ||| 0.333333 0.229811 1.49697e-06 3.05985e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| not hesitate to ||| 0.0526316 0.229811 1.49697e-06 1.67435e-09 2.718 ||| 0-2 ||| 19 668016 +a ||| not hit ||| 0.25 0.121563 1.49697e-06 7.85243e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| not in full agreement with ||| 0.333333 0.0571592 1.49697e-06 4.12602e-14 2.718 ||| 0-4 ||| 3 668016 +a ||| not in ||| 0.00406032 0.0587624 1.04788e-05 0.000205128 2.718 ||| 0-1 ||| 1724 668016 +a ||| not informing ||| 0.5 0.247008 1.49697e-06 7.07402e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| not involve ||| 0.0384615 0.170498 1.49697e-06 2.33388e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| not just meet with the approval ||| 1 0.0571592 1.49697e-06 1.60523e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| not just meet with the ||| 1 0.0571592 1.49697e-06 5.36865e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| not just meet with ||| 1 0.0571592 1.49697e-06 8.7449e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| not just to ||| 0.00954654 0.229811 5.98788e-06 1.50895e-06 2.718 ||| 0-2 ||| 419 668016 +a ||| not just travel , but ||| 1 0.0003961 1.49697e-06 1.11652e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| not just upon ||| 0.166667 0.19056 1.49697e-06 8.49237e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| not just ||| 0.000152718 0.001613 1.49697e-06 2.24306e-07 2.718 ||| 0-1 ||| 6548 668016 +a ||| not killed ||| 0.2 0.102431 1.49697e-06 5.51719e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| not know what we mean ||| 1 0.0201991 1.49697e-06 2.67699e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| not lead to ||| 0.0181818 0.229811 1.49697e-06 2.30223e-07 2.718 ||| 0-2 ||| 55 668016 +a ||| not least , to ||| 0.129032 0.229811 5.98788e-06 3.5e-08 2.718 ||| 0-3 ||| 31 668016 +a ||| not least by ||| 0.0147059 0.0337966 1.49697e-06 6.89317e-09 2.718 ||| 0-2 ||| 68 668016 +a ||| not least in ||| 0.00221729 0.0587624 1.49697e-06 5.03383e-08 2.718 ||| 0-2 ||| 451 668016 +a ||| not least ||| 0.000335121 5.37e-05 1.49697e-06 3.07269e-09 2.718 ||| 0-1 ||| 2984 668016 +a ||| not let ||| 0.0153846 0.0027309 1.49697e-06 2.12016e-07 2.718 ||| 0-1 ||| 65 668016 +a ||| not looked at ||| 0.5 0.204175 1.49697e-06 5.39169e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| not make them ||| 0.111111 0.0045234 1.49697e-06 1.32662e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| not make ||| 0.00492611 0.0033044 1.49697e-06 6.13855e-07 2.718 ||| 0-1 ||| 203 668016 +a ||| not many - to ||| 0.5 0.229811 1.49697e-06 1.54873e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| not monetary union , but economic and ||| 1 0.0003961 1.49697e-06 1.17809e-23 2.718 ||| 0-4 ||| 1 668016 +a ||| not monetary union , but economic ||| 1 0.0003961 1.49697e-06 9.40526e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| not monetary union , but ||| 1 0.0003961 1.49697e-06 7.75372e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| not more than ||| 0.0285714 0.0242272 1.49697e-06 9.79977e-09 2.718 ||| 0-2 ||| 35 668016 +a ||| not need me to ||| 0.333333 0.229811 1.49697e-06 6.60251e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| not need to ||| 0.0204082 0.229811 1.49697e-06 1.09658e-06 2.718 ||| 0-2 ||| 49 668016 +a ||| not news to us ||| 0.5 0.229811 1.49697e-06 1.25126e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| not news to ||| 0.5 0.229811 1.49697e-06 4.34135e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| not nominate him ||| 1 0.271605 1.49697e-06 4.40013e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| not nominate ||| 1 0.271605 1.49697e-06 1.37247e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| not occur to ||| 0.6 0.229811 4.49091e-06 5.334e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| not only about ||| 0.0135135 0.0526361 1.49697e-06 1.91505e-08 2.718 ||| 0-2 ||| 74 668016 +a ||| not only because of ||| 0.00884956 0.0052046 1.49697e-06 6.67512e-11 2.718 ||| 0-2 ||| 113 668016 +a ||| not only because ||| 0.00273973 0.0052046 1.49697e-06 1.22786e-09 2.718 ||| 0-2 ||| 365 668016 +a ||| not only give ||| 0.1 0.0241455 1.49697e-06 2.13687e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| not only in ||| 0.00129116 0.0587624 2.99394e-06 2.28328e-07 2.718 ||| 0-2 ||| 1549 668016 +a ||| not only on ||| 0.00475059 0.0782999 2.99394e-06 1.44164e-07 2.718 ||| 0-2 ||| 421 668016 +a ||| not only to continue to ||| 0.5 0.229811 1.49697e-06 2.73724e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| not only to ||| 0.00573301 0.229811 1.04788e-05 1.33123e-06 2.718 ||| 0-2 ||| 1221 668016 +a ||| not only ||| 0.000230216 0.0004289 5.98788e-06 9.96917e-08 2.718 ||| 0-1 ||| 17375 668016 +a ||| not paid sufficient attention in ||| 1 0.0587624 1.49697e-06 3.50627e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| not penalise but reward ||| 1 0.350775 1.49697e-06 1.54178e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| not penalise but ||| 1 0.350775 1.49697e-06 3.85444e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| not penalise ||| 0.142857 0.350775 1.49697e-06 5.64009e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| not possible to ||| 0.015873 0.229811 1.49697e-06 9.59283e-07 2.718 ||| 0-2 ||| 63 668016 +a ||| not prepared to ||| 0.0833333 0.229811 4.49091e-06 1.0369e-07 2.718 ||| 0-2 ||| 36 668016 +a ||| not reached full legal ||| 1 0.14487 1.49697e-06 9.98265e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| not reached full ||| 1 0.14487 1.49697e-06 7.70266e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| not reached ||| 0.03125 0.14487 1.49697e-06 4.19764e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| not reassured because we never got a ||| 1 0.0052046 1.49697e-06 1.39912e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| not reassured because we never got ||| 1 0.0052046 1.49697e-06 3.15644e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| not reassured because we never ||| 1 0.0052046 1.49697e-06 2.88522e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| not reassured because we ||| 1 0.0052046 1.49697e-06 5.00907e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| not reassured because ||| 1 0.0052046 1.49697e-06 4.41238e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| not sleep for the rest of the ||| 0.5 0.0683377 1.49697e-06 9.74361e-18 2.718 ||| 0-2 ||| 2 668016 +a ||| not sleep for the rest of ||| 0.5 0.0683377 1.49697e-06 1.58712e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| not sleep for the rest ||| 0.5 0.0683377 1.49697e-06 2.91943e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| not sleep for the ||| 0.5 0.0683377 1.49697e-06 3.86168e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| not sleep for ||| 0.5 0.0683377 1.49697e-06 6.29022e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| not stopped him putting ||| 0.333333 0.0700165 1.49697e-06 9.50455e-15 2.718 ||| 0-1 ||| 3 668016 +a ||| not stopped him ||| 0.333333 0.0700165 1.49697e-06 8.49379e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| not stopped ||| 0.0555556 0.0700165 1.49697e-06 2.64934e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| not support ||| 0.0243902 0.0027239 2.99394e-06 5.08018e-07 2.718 ||| 0-1 ||| 82 668016 +a ||| not take as long as ||| 0.5 0.0243476 1.49697e-06 1.6646e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| not take as long ||| 0.5 0.0243476 1.49697e-06 1.63126e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| not take as ||| 0.5 0.0243476 1.49697e-06 4.82193e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| not take away from ||| 1 0.0435582 1.49697e-06 1.25871e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| not taken into account ||| 0.05 0.107578 1.49697e-06 5.43459e-12 2.718 ||| 0-2 ||| 20 668016 +a ||| not taken into ||| 0.0454545 0.107578 1.49697e-06 1.89029e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| not there was ||| 0.5 0.0005768 1.49697e-06 7.90462e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| not there ||| 0.00806452 0.0005768 1.49697e-06 2.52302e-07 2.718 ||| 0-1 ||| 124 668016 +a ||| not think that on ||| 1 0.0782999 1.49697e-06 8.33339e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| not this involves ||| 0.25 0.0681747 1.49697e-06 4.37006e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| not to adopt ||| 0.0238095 0.229811 1.49697e-06 1.2438e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| not to allow ||| 0.00952381 0.229811 1.49697e-06 2.90141e-07 2.718 ||| 0-1 ||| 105 668016 +a ||| not to be done , ||| 1 0.229811 1.49697e-06 1.17865e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| not to be done ||| 1 0.229811 1.49697e-06 9.8835e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| not to be ||| 0.00149701 0.229811 1.49697e-06 2.16743e-05 2.718 ||| 0-1 ||| 668 668016 +a ||| not to come ||| 0.0714286 0.229811 1.49697e-06 1.01573e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| not to create ||| 0.011236 0.229811 1.49697e-06 1.34666e-07 2.718 ||| 0-1 ||| 89 668016 +a ||| not to do ||| 0.0128205 0.229811 1.49697e-06 4.1085e-06 2.718 ||| 0-1 ||| 78 668016 +a ||| not to eliminate ||| 0.142857 0.229811 1.49697e-06 1.37536e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| not to make any choices here for ||| 1 0.229811 1.49697e-06 3.5267e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| not to make any choices here ||| 1 0.229811 1.49697e-06 4.58865e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| not to make any choices ||| 1 0.229811 1.49697e-06 2.26287e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| not to make any ||| 0.111111 0.229811 1.49697e-06 3.14288e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| not to make ||| 0.00847458 0.229811 1.49697e-06 2.07835e-06 2.718 ||| 0-1 ||| 118 668016 +a ||| not to mention ||| 0.00112108 0.229811 1.49697e-06 1.16248e-07 2.718 ||| 0-1 ||| 892 668016 +a ||| not to those ||| 0.142857 0.229811 1.49697e-06 8.65998e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| not to ||| 0.00726744 0.229811 8.23334e-05 0.00119596 2.718 ||| 0-1 ||| 7568 668016 +a ||| not try to ||| 0.027027 0.229811 1.49697e-06 1.84179e-07 2.718 ||| 0-2 ||| 37 668016 +a ||| not unlike ||| 0.0526316 0.321608 1.49697e-06 2.39328e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| not up to ||| 0.0222222 0.229811 1.49697e-06 4.07884e-06 2.718 ||| 0-2 ||| 45 668016 +a ||| not visible to ||| 0.5 0.229811 1.49697e-06 1.77003e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| not waiting on ||| 1 0.0782999 1.49697e-06 3.44512e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| not want to ||| 0.00793651 0.229811 1.49697e-06 5.59113e-07 2.718 ||| 0-2 ||| 126 668016 +a ||| not wish to ||| 0.028169 0.229811 2.99394e-06 3.52451e-07 2.718 ||| 0-2 ||| 71 668016 +a ||| not work towards ||| 1 0.155507 1.49697e-06 7.28861e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| not worth hoping in ||| 0.5 0.0587624 1.49697e-06 1.70553e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| not written in stone ||| 0.5 0.0587624 1.49697e-06 1.43589e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| not written in ||| 0.166667 0.0587624 1.49697e-06 1.02564e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| not ||| 3.8503e-06 6.2e-06 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 259720 668016 +a ||| note for ||| 0.125 0.0683377 1.49697e-06 3.84698e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| note of discord disturb ||| 0.5 0.0188479 1.49697e-06 2.37776e-18 2.718 ||| 0-1 ||| 2 668016 +a ||| note of discord ||| 0.25 0.0188479 1.49697e-06 3.39679e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| note of ||| 0.00221239 0.0188479 4.49091e-06 3.088e-06 2.718 ||| 0-1 ||| 1356 668016 +a ||| note regarding the inclusion of ||| 0.166667 0.186429 1.49697e-06 2.27482e-14 2.718 ||| 0-1 ||| 6 668016 +a ||| note regarding the inclusion ||| 0.166667 0.186429 1.49697e-06 4.18443e-13 2.718 ||| 0-1 ||| 6 668016 +a ||| note regarding the ||| 0.166667 0.186429 1.49697e-06 2.15692e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| note regarding ||| 0.166667 0.186429 1.49697e-06 3.51337e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| note through ||| 1 0.230708 1.49697e-06 8.29886e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| noted in ||| 0.00740741 0.0587624 1.49697e-06 1.83852e-06 2.718 ||| 0-1 ||| 135 668016 +a ||| notes on ||| 0.0714286 0.0782999 1.49697e-06 5.46273e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| noteworthy fact with ||| 1 0.0571592 1.49697e-06 8.80289e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| nothing against that - ||| 1 0.05146 1.49697e-06 3.06963e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| nothing against that ||| 0.5 0.05146 1.49697e-06 8.13773e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| nothing against ||| 0.0638298 0.05146 4.49091e-06 4.83767e-07 2.718 ||| 0-1 ||| 47 668016 +a ||| nothing but ||| 0.00408163 0.0003961 1.49697e-06 1.07008e-08 2.718 ||| 0-1 ||| 245 668016 +a ||| nothing left to catch ||| 1 0.229811 1.49697e-06 2.13043e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| nothing left to ||| 0.142857 0.229811 1.49697e-06 1.23146e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| nothing on ||| 0.04 0.0782999 1.49697e-06 7.05982e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| nothing other than for ||| 0.5 0.0683377 1.49697e-06 2.71403e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| nothing short of ||| 0.0123457 0.0188479 1.49697e-06 7.76693e-10 2.718 ||| 0-2 ||| 81 668016 +a ||| nothing to do with ||| 0.0138249 0.229811 4.49091e-06 1.43206e-09 2.718 ||| 0-1 ||| 217 668016 +a ||| nothing to do ||| 0.00816326 0.229811 2.99394e-06 2.23951e-07 2.718 ||| 0-1 ||| 245 668016 +a ||| nothing to say ||| 0.0625 0.229811 1.49697e-06 6.23097e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| nothing to ||| 0.00791557 0.229811 8.98182e-06 6.51911e-05 2.718 ||| 0-1 ||| 758 668016 +a ||| notice to ||| 0.0740741 0.229811 2.99394e-06 1.34866e-05 2.718 ||| 0-1 ||| 27 668016 +a ||| noticed at ||| 0.25 0.204175 1.49697e-06 3.30143e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| notifications to ||| 0.333333 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| notified in ||| 0.111111 0.105991 1.49697e-06 8.98989e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| notified ||| 0.0102041 0.105991 4.49091e-06 4.2e-05 2.718 ||| 0-0 ||| 294 668016 +a ||| notify and ||| 0.333333 0.251656 1.49697e-06 8.69297e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| notify ||| 0.00588235 0.251656 1.49697e-06 6.94e-05 2.718 ||| 0-0 ||| 170 668016 +a ||| noting in ||| 0.333333 0.0587624 1.49697e-06 3.00412e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| notions of ||| 0.0208333 0.0188479 1.49697e-06 6.50727e-08 2.718 ||| 0-1 ||| 48 668016 +a ||| notwithstanding ||| 0.0014771 0.335451 1.49697e-06 0.000241 2.718 ||| 0-0 ||| 677 668016 +a ||| now , at ||| 0.00869565 0.204175 1.49697e-06 8.36089e-06 2.718 ||| 0-2 ||| 115 668016 +a ||| now , in a ||| 0.0625 0.0587624 1.49697e-06 6.54224e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| now , in ||| 0.011194 0.0587624 4.49091e-06 1.47594e-05 2.718 ||| 0-2 ||| 268 668016 +a ||| now , to come to ||| 0.5 0.229811 1.49697e-06 6.49415e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| now , to come ||| 0.5 0.229811 1.49697e-06 7.30844e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| now , to ||| 0.0784314 0.229811 5.98788e-06 8.60526e-05 2.718 ||| 0-2 ||| 51 668016 +a ||| now 35 000 Yugoslav soldiers in ||| 1 0.0587624 1.49697e-06 1.41295e-24 2.718 ||| 0-5 ||| 1 668016 +a ||| now I have raised ||| 1 0.00208 1.49697e-06 1.29909e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| now I have ||| 0.0263158 0.00208 1.49697e-06 1.12769e-08 2.718 ||| 0-0 ||| 38 668016 +a ||| now I ||| 0.00763359 0.00208 1.49697e-06 9.42898e-07 2.718 ||| 0-0 ||| 131 668016 +a ||| now all prepare themselves to ||| 1 0.229811 1.49697e-06 2.63733e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| now also ||| 0.00353357 0.00208 1.49697e-06 6.72978e-07 2.718 ||| 0-0 ||| 283 668016 +a ||| now and in the ||| 0.00671141 0.0587624 1.49697e-06 9.51729e-08 2.718 ||| 0-2 ||| 149 668016 +a ||| now and in ||| 0.00990099 0.0587624 2.99394e-06 1.55025e-06 2.718 ||| 0-2 ||| 202 668016 +a ||| now and then ||| 0.0227273 0.0134406 1.49697e-06 3.38833e-09 2.718 ||| 0-1 0-2 ||| 44 668016 +a ||| now approaching ||| 0.0833333 0.1653 1.49697e-06 2.27413e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| now as ||| 0.0162602 0.0243476 2.99394e-06 1.80703e-05 2.718 ||| 0-1 ||| 123 668016 +a ||| now at ||| 0.00956938 0.204175 2.99394e-06 7.01095e-05 2.718 ||| 0-1 ||| 209 668016 +a ||| now be worked out at last , ||| 1 0.204175 1.49697e-06 5.51399e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| now be worked out at last ||| 1 0.204175 1.49697e-06 4.62371e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| now be worked out at ||| 1 0.204175 1.49697e-06 2.11708e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| now been increased to ||| 1 0.229811 1.49697e-06 1.19753e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| now been made for ||| 1 0.0683377 1.49697e-06 5.30947e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| now been ||| 0.0020202 0.00208 1.49697e-06 4.45115e-07 2.718 ||| 0-0 ||| 495 668016 +a ||| now being treated ||| 0.333333 0.016092 1.49697e-06 2.62034e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| now by reviewing ||| 1 0.0368603 1.49697e-06 3.25398e-10 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| now clear for ||| 0.2 0.0683377 1.49697e-06 2.52685e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| now coming ||| 0.03125 0.00208 1.49697e-06 2.59002e-08 2.718 ||| 0-0 ||| 32 668016 +a ||| now contained in ||| 0.5 0.0587624 1.49697e-06 8.41595e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| now facing prosecution ||| 1 0.171799 1.49697e-06 1.54627e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| now facing ||| 0.0117647 0.171799 1.49697e-06 2.86347e-06 2.718 ||| 0-1 ||| 85 668016 +a ||| now fooled by ||| 0.5 0.00208 1.49697e-06 4.89887e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| now fooled ||| 0.5 0.00208 1.49697e-06 9.331e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| now for ||| 0.017316 0.0683377 5.98788e-06 7.59042e-05 2.718 ||| 0-1 ||| 231 668016 +a ||| now given way to ||| 0.5 0.229811 1.49697e-06 1.06751e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| now giving ||| 0.0769231 0.136521 1.49697e-06 2.07762e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| now going to ||| 0.0196078 0.229811 1.49697e-06 6.17534e-07 2.718 ||| 0-2 ||| 51 668016 +a ||| now gone off in ||| 1 0.0587624 1.49697e-06 3.15328e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| now in ||| 0.00796359 0.0587624 1.04788e-05 0.000123764 2.718 ||| 0-1 ||| 879 668016 +a ||| now into ||| 0.166667 0.107578 1.49697e-06 1.25125e-05 2.718 ||| 0-1 ||| 6 668016 +a ||| now it has failed to ||| 0.25 0.229811 1.49697e-06 3.06487e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| now it is impacting on ||| 1 0.0782999 1.49697e-06 4.79082e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| now like to make a ||| 0.25 0.229811 1.49697e-06 9.87105e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| now like to make ||| 0.0909091 0.229811 1.49697e-06 2.22693e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| now like to ||| 0.0449438 0.229811 5.98788e-06 1.28147e-06 2.718 ||| 0-2 ||| 89 668016 +a ||| now make ||| 0.0142857 0.00208 1.49697e-06 2.31649e-07 2.718 ||| 0-0 ||| 70 668016 +a ||| now of ||| 0.0196078 0.0188479 1.49697e-06 6.09288e-05 2.718 ||| 0-1 ||| 51 668016 +a ||| now on , to ||| 0.333333 0.229811 1.49697e-06 5.75778e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| now on , ||| 0.00645161 0.0782999 1.49697e-06 9.31898e-06 2.718 ||| 0-1 ||| 155 668016 +a ||| now on in ||| 0.4 0.0685311 2.99394e-06 4.69506e-06 2.718 ||| 0-1 0-2 ||| 5 668016 +a ||| now on to ||| 0.0833333 0.229811 1.49697e-06 4.82813e-06 2.718 ||| 0-2 ||| 12 668016 +a ||| now on ||| 0.0074184 0.0782999 7.48485e-06 7.81435e-05 2.718 ||| 0-1 ||| 674 668016 +a ||| now operating on ||| 1 0.0782999 1.49697e-06 3.51646e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| now pass through ||| 1 0.230708 1.49697e-06 9.36613e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| now placing strain upon the Stability Pact ||| 1 0.19056 1.49697e-06 2.95142e-27 2.718 ||| 0-3 ||| 1 668016 +a ||| now placing strain upon the Stability ||| 1 0.19056 1.49697e-06 1.95458e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| now placing strain upon the ||| 1 0.19056 1.49697e-06 3.6196e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| now placing strain upon ||| 1 0.19056 1.49697e-06 5.89589e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| now referred back to those at ||| 1 0.204175 1.49697e-06 2.90363e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| now see that , in ||| 1 0.0587624 1.49697e-06 1.74936e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| now shared on an equal footing with ||| 1 0.0782999 1.49697e-06 7.40893e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| now shared on an equal footing ||| 1 0.0782999 1.49697e-06 1.15864e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| now shared on an equal ||| 1 0.0782999 1.49697e-06 5.36408e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| now shared on an ||| 1 0.0782999 1.49697e-06 9.37776e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| now shared on ||| 1 0.0782999 1.49697e-06 2.10988e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| now successfully ||| 0.5 0.00208 1.49697e-06 4.22561e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| now that ||| 0.000494071 0.00208 1.49697e-06 2.24232e-06 2.718 ||| 0-0 ||| 2024 668016 +a ||| now the subject of ||| 0.0909091 0.0188479 1.49697e-06 2.01914e-09 2.718 ||| 0-3 ||| 11 668016 +a ||| now time for ||| 0.0208333 0.0683377 1.49697e-06 1.24612e-07 2.718 ||| 0-2 ||| 48 668016 +a ||| now time ||| 0.00684932 0.00208 1.49697e-06 2.18839e-07 2.718 ||| 0-0 ||| 146 668016 +a ||| now to engage in a ||| 1 0.229811 1.49697e-06 3.32726e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| now to engage in ||| 1 0.229811 1.49697e-06 7.50636e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| now to engage ||| 0.5 0.229811 1.49697e-06 3.50691e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| now to ||| 0.0284264 0.229811 4.19152e-05 0.000721586 2.718 ||| 0-1 ||| 985 668016 +a ||| now told about ||| 1 0.0526361 1.49697e-06 6.16599e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| now tried to find ||| 1 0.229811 1.49697e-06 9.58462e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| now tried to ||| 1 0.229811 1.49697e-06 2.87913e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| now up to them ||| 0.5 0.229811 1.49697e-06 6.60131e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| now up to ||| 0.0350877 0.229811 2.99394e-06 2.46097e-06 2.718 ||| 0-2 ||| 57 668016 +a ||| now ||| 0.000805829 0.00208 7.03576e-05 0.0001333 2.718 ||| 0-0 ||| 58325 668016 +a ||| nowhere ||| 0.00253165 0.0594432 1.49697e-06 7.21e-05 2.718 ||| 0-0 ||| 395 668016 +a ||| number down to ||| 0.5 0.229811 1.49697e-06 1.21001e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| number in ||| 0.0384615 0.0587624 1.49697e-06 2.97288e-05 2.718 ||| 0-1 ||| 26 668016 +a ||| number into figures ||| 1 0.107578 1.49697e-06 1.38556e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| number into ||| 1 0.107578 1.49697e-06 3.00556e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| number of English football fans ||| 0.333333 0.0188479 1.49697e-06 1.7785e-21 2.718 ||| 0-1 ||| 3 668016 +a ||| number of English football ||| 0.333333 0.0188479 1.49697e-06 2.54071e-15 2.718 ||| 0-1 ||| 3 668016 +a ||| number of English ||| 0.333333 0.0188479 1.49697e-06 2.26849e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| number of the ||| 0.00294985 0.0188479 1.49697e-06 8.98496e-07 2.718 ||| 0-1 ||| 339 668016 +a ||| number of ||| 0.00134318 0.0188479 3.89212e-05 1.46354e-05 2.718 ||| 0-1 ||| 19357 668016 +a ||| number one in ||| 0.0526316 0.0587624 1.49697e-06 1.2391e-07 2.718 ||| 0-2 ||| 19 668016 +a ||| numbers in ||| 0.0232558 0.0587624 1.49697e-06 2.93803e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| numbers of ||| 0.00798722 0.0188479 7.48485e-06 1.44639e-06 2.718 ||| 0-1 ||| 626 668016 +a ||| objecting ||| 0.0153846 0.015625 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 65 668016 +a ||| objection to Amendment ||| 0.25 0.229811 1.49697e-06 4.11219e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| objection to ||| 0.00431034 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-1 ||| 232 668016 +a ||| objections to ||| 0.00436681 0.229811 1.49697e-06 2.52217e-06 2.718 ||| 0-1 ||| 229 668016 +a ||| objective being to ||| 0.0833333 0.229811 1.49697e-06 6.66918e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| objective in ||| 0.00699301 0.0587624 1.49697e-06 4.01952e-06 2.718 ||| 0-1 ||| 143 668016 +a ||| objective of ||| 0.00137363 0.0188479 4.49091e-06 1.9788e-06 2.718 ||| 0-1 ||| 2184 668016 +a ||| objective study is to determine whether ||| 1 0.229811 1.49697e-06 1.57172e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| objective study is to determine ||| 1 0.229811 1.49697e-06 5.98296e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| objective study is to ||| 1 0.229811 1.49697e-06 2.48256e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| objectives of ||| 0.00130378 0.0188479 2.99394e-06 1.38427e-06 2.718 ||| 0-1 ||| 1534 668016 +a ||| objectives to present and future challenges ||| 1 0.229811 1.49697e-06 3.73291e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| objectives to present and future ||| 1 0.229811 1.49697e-06 1.99621e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| objectives to present and ||| 1 0.229811 1.49697e-06 7.51585e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| objectives to present ||| 1 0.229811 1.49697e-06 6.00025e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| objectives to ||| 0.00869565 0.229811 1.49697e-06 1.63941e-05 2.718 ||| 0-1 ||| 115 668016 +a ||| obligation either of ||| 1 0.0188479 1.49697e-06 5.24986e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| obligation to give due ||| 0.5 0.229811 1.49697e-06 1.20284e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| obligation to give ||| 0.0833333 0.229811 1.49697e-06 4.3518e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| obligation to ||| 0.00272727 0.229811 4.49091e-06 7.18118e-06 2.718 ||| 0-1 ||| 1100 668016 +a ||| obligations for ||| 0.012987 0.0683377 1.49697e-06 4.90085e-07 2.718 ||| 0-1 ||| 77 668016 +a ||| obligations of ||| 0.00471698 0.0188479 1.49697e-06 3.93394e-07 2.718 ||| 0-1 ||| 212 668016 +a ||| obligations set out in ||| 0.166667 0.0587624 1.49697e-06 1.78877e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| obligations to ||| 0.00515464 0.229811 1.49697e-06 4.65901e-06 2.718 ||| 0-1 ||| 194 668016 +a ||| obligations towards ||| 0.037037 0.155507 1.49697e-06 4.48556e-08 2.718 ||| 0-1 ||| 27 668016 +a ||| obliged I am to ||| 1 0.229811 1.49697e-06 1.20604e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| obliged include ||| 0.333333 0.0281253 1.49697e-06 1.00851e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| obliged to ||| 0.00783801 0.229811 1.79636e-05 1.33465e-05 2.718 ||| 0-1 ||| 1531 668016 +a ||| obliged we are to ||| 0.333333 0.229811 1.49697e-06 2.29887e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| obliges us ||| 0.015873 0.298913 1.49697e-06 2.89373e-07 2.718 ||| 0-0 ||| 63 668016 +a ||| obliges ||| 0.00446429 0.298913 1.49697e-06 0.0001004 2.718 ||| 0-0 ||| 224 668016 +a ||| observance , for ||| 1 0.0683377 1.49697e-06 1.88957e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| observations to ||| 0.0434783 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| observer of ||| 0.111111 0.0188479 1.49697e-06 5.32413e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| observers from ||| 0.0116279 0.0435582 1.49697e-06 5.975e-08 2.718 ||| 0-1 ||| 86 668016 +a ||| observing ||| 0.00218818 0.0026042 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 457 668016 +a ||| obsessed with ||| 0.0196078 0.0571592 1.49697e-06 6.67804e-09 2.718 ||| 0-1 ||| 51 668016 +a ||| obstacle for ||| 0.0625 0.0683377 1.49697e-06 2.13721e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| obstacle to ||| 0.00383877 0.229811 2.99394e-06 2.03175e-06 2.718 ||| 0-1 ||| 521 668016 +a ||| obtain it at ||| 1 0.204175 1.49697e-06 3.6376e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| obvious progress being made in ||| 1 0.0587624 1.49697e-06 1.96706e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| obvious to ||| 0.016129 0.229811 2.99394e-06 1.46076e-05 2.718 ||| 0-1 ||| 124 668016 +a ||| obviously , to ||| 0.0588235 0.229811 1.49697e-06 2.76551e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| obviously going to be more demanding and ||| 1 0.229811 1.49697e-06 1.40951e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| obviously going to be more demanding ||| 1 0.229811 1.49697e-06 1.12528e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| obviously going to be more ||| 1 0.229811 1.49697e-06 8.21371e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| obviously going to be ||| 0.5 0.229811 1.49697e-06 3.59667e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| obviously going to ||| 0.142857 0.229811 1.49697e-06 1.9846e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| obviously proving to ||| 1 0.229811 1.49697e-06 2.82918e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| obviously to ||| 0.037037 0.229811 1.49697e-06 2.319e-05 2.718 ||| 0-1 ||| 27 668016 +a ||| occasion provide an opportunity to honour ||| 1 0.229811 1.49697e-06 7.57643e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| occasion provide an opportunity to ||| 1 0.229811 1.49697e-06 4.05156e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| occasion to ||| 0.00374532 0.229811 1.49697e-06 1.71297e-05 2.718 ||| 0-1 ||| 267 668016 +a ||| occasionally , ||| 0.025641 0.123664 1.49697e-06 8.81292e-06 2.718 ||| 0-0 ||| 39 668016 +a ||| occasionally get a ||| 1 0.123664 1.49697e-06 1.43213e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| occasionally get ||| 0.25 0.123664 1.49697e-06 3.23091e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| occasionally it ||| 0.5 0.123664 1.49697e-06 1.31418e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| occasionally ||| 0.0134409 0.123664 7.48485e-06 7.39e-05 2.718 ||| 0-0 ||| 372 668016 +a ||| occasioned by the fact ||| 1 0.0337966 1.49697e-06 1.03571e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| occasioned by the ||| 0.2 0.0337966 1.49697e-06 3.53571e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| occasioned by ||| 0.111111 0.0337966 1.49697e-06 5.75925e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| occasioned to ||| 0.333333 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| occasions , I am pleased to ||| 0.5 0.229811 1.49697e-06 4.08685e-16 2.718 ||| 0-5 ||| 2 668016 +a ||| occasions on ||| 0.0322581 0.0782999 1.49697e-06 1.00909e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| occupation for which they ||| 0.5 0.0683377 1.49697e-06 6.23222e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| occupation for which ||| 0.5 0.0683377 1.49697e-06 1.90938e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| occupation for ||| 0.125 0.0683377 1.49697e-06 2.24776e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| occupied Belgium , did you treat ||| 1 0.271158 1.49697e-06 4.34544e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| occupied in ||| 0.0833333 0.0587624 1.49697e-06 5.1671e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| occupied with ||| 0.0588235 0.0571592 1.49697e-06 1.43578e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| occur , it is important to provide ||| 1 0.229811 1.49697e-06 1.17829e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| occur , it is important to ||| 1 0.229811 1.49697e-06 3.98341e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| occur at ||| 0.0588235 0.204175 1.49697e-06 1.51798e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| occur in ||| 0.0100503 0.0587624 2.99394e-06 2.67968e-06 2.718 ||| 0-1 ||| 199 668016 +a ||| occur to ||| 0.157895 0.229811 4.49091e-06 1.56235e-05 2.718 ||| 0-1 ||| 19 668016 +a ||| occurred in ||| 0.011236 0.0587624 4.49091e-06 2.55351e-06 2.718 ||| 0-1 ||| 267 668016 +a ||| occurred there over ||| 1 0.0682544 1.49697e-06 3.02616e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| occurrence of ||| 0.012987 0.0188479 1.49697e-06 4.14099e-07 2.718 ||| 0-1 ||| 77 668016 +a ||| occurring at the ||| 0.25 0.204175 1.49697e-06 4.05362e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| occurring at ||| 0.222222 0.204175 2.99394e-06 6.60287e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| occurring in ||| 0.00854701 0.0587624 1.49697e-06 1.1656e-06 2.718 ||| 0-1 ||| 117 668016 +a ||| occurs in ||| 0.0149254 0.0587624 1.49697e-06 7.57039e-07 2.718 ||| 0-1 ||| 67 668016 +a ||| odds with the insights ||| 0.5 0.0571592 1.49697e-06 3.68979e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| odds with the ||| 0.0114943 0.0571592 1.49697e-06 9.22448e-09 2.718 ||| 0-1 ||| 87 668016 +a ||| odds with ||| 0.00591716 0.0571592 1.49697e-06 1.50256e-07 2.718 ||| 0-1 ||| 169 668016 +a ||| of " Nearer my God to ||| 0.5 0.154977 1.49697e-06 3.67823e-20 2.718 ||| 0-4 ||| 2 668016 +a ||| of " Nearer my God ||| 0.5 0.154977 1.49697e-06 4.13944e-19 2.718 ||| 0-4 ||| 2 668016 +a ||| of " ||| 0.00913242 0.0188479 2.99394e-06 7.00419e-06 2.718 ||| 0-0 ||| 219 668016 +a ||| of , among other things , ||| 0.2 0.0188479 1.49697e-06 2.00685e-14 2.718 ||| 0-0 ||| 5 668016 +a ||| of , among other things ||| 0.25 0.0188479 1.49697e-06 1.68282e-13 2.718 ||| 0-0 ||| 4 668016 +a ||| of , among other ||| 0.333333 0.0188479 1.49697e-06 4.09446e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| of , among ||| 0.2 0.0188479 1.49697e-06 3.16053e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| of , essential ||| 0.111111 0.0188479 1.49697e-06 3.17464e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| of , ||| 0.0158192 0.0188479 2.09576e-05 0.00352738 2.718 ||| 0-0 ||| 885 668016 +a ||| of - ||| 0.0212766 0.0188479 1.49697e-06 0.000111573 2.718 ||| 0-0 ||| 47 668016 +a ||| of 1989 ||| 0.0238095 0.0188479 1.49697e-06 5.32413e-08 2.718 ||| 0-0 ||| 42 668016 +a ||| of 7 , ||| 0.25 0.0188479 1.49697e-06 3.17464e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| of 7 ||| 0.00862069 0.0188479 1.49697e-06 2.66207e-07 2.718 ||| 0-0 ||| 116 668016 +a ||| of 9 August 2010 to ||| 1 0.12433 1.49697e-06 3.59283e-18 2.718 ||| 0-0 0-4 ||| 1 668016 +a ||| of Acronyms ||| 1 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| of Agriculture ||| 0.00900901 0.0188479 1.49697e-06 4.05225e-07 2.718 ||| 0-0 ||| 111 668016 +a ||| of Auditors ||| 0.000341763 0.0188479 1.49697e-06 3.8452e-07 2.718 ||| 0-0 ||| 2926 668016 +a ||| of Baltic Sea States , ||| 0.5 0.0188479 1.49697e-06 5.48071e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| of Baltic Sea States ||| 0.0666667 0.0188479 1.49697e-06 4.5958e-15 2.718 ||| 0-0 ||| 15 668016 +a ||| of Baltic Sea ||| 0.2 0.0188479 1.49697e-06 9.63076e-12 2.718 ||| 0-0 ||| 5 668016 +a ||| of Baltic ||| 0.333333 0.0188479 1.49697e-06 4.37762e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| of Belarus ||| 0.00291545 0.0188479 1.49697e-06 3.51984e-07 2.718 ||| 0-0 ||| 343 668016 +a ||| of Bulgaria in the ||| 0.2 0.0587624 1.49697e-06 8.6226e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| of Bulgaria in ||| 0.125 0.0587624 1.49697e-06 1.40452e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| of Certain Public ||| 0.333333 0.0188479 1.49697e-06 3.47814e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| of Certain ||| 0.125 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| of Culture to ||| 0.166667 0.229811 1.49697e-06 1.02836e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| of EUR ||| 0.00408998 0.0188479 2.99394e-06 7.90929e-06 2.718 ||| 0-0 ||| 489 668016 +a ||| of East Timor to ||| 0.142857 0.229811 1.49697e-06 1.42352e-12 2.718 ||| 0-3 ||| 7 668016 +a ||| of Employment of ||| 0.125 0.0188479 2.99394e-06 1.67233e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| of Employment ||| 0.105263 0.0188479 2.99394e-06 3.07616e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| of English football fans ||| 0.333333 0.0188479 1.49697e-06 3.59438e-18 2.718 ||| 0-0 ||| 3 668016 +a ||| of English football ||| 0.333333 0.0188479 1.49697e-06 5.13483e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| of English ||| 0.0344828 0.0188479 1.49697e-06 4.58467e-07 2.718 ||| 0-0 ||| 29 668016 +a ||| of Europe 's ||| 0.00854701 0.0188479 1.49697e-06 2.85026e-08 2.718 ||| 0-0 ||| 117 668016 +a ||| of Europe , and particularly ||| 0.25 0.0001117 1.49697e-06 1.52037e-13 2.718 ||| 0-4 ||| 4 668016 +a ||| of Europe , ||| 0.000429369 0.0188479 1.49697e-06 1.78485e-06 2.718 ||| 0-0 ||| 2329 668016 +a ||| of Europe ||| 0.000647296 0.0188479 1.34727e-05 1.49667e-05 2.718 ||| 0-0 ||| 13904 668016 +a ||| of European Socialists ||| 0.00186567 0.0188479 1.49697e-06 1.64187e-09 2.718 ||| 0-0 ||| 536 668016 +a ||| of European ||| 0.00251678 0.0188479 4.49091e-06 9.89075e-05 2.718 ||| 0-0 ||| 1192 668016 +a ||| of GDP ||| 0.00140056 0.0188479 1.49697e-06 1.47893e-07 2.718 ||| 0-0 ||| 714 668016 +a ||| of Gebran ||| 0.5 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| of Independents for a ||| 0.0147059 0.0683377 1.49697e-06 1.40296e-09 2.718 ||| 0-2 ||| 68 668016 +a ||| of Independents for ||| 0.0277778 0.0683377 2.99394e-06 3.16511e-08 2.718 ||| 0-2 ||| 72 668016 +a ||| of International ||| 0.0769231 0.0188479 1.49697e-06 9.25807e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| of Internet ||| 0.030303 0.0188479 1.49697e-06 5.11708e-07 2.718 ||| 0-0 ||| 33 668016 +a ||| of Iraq to ||| 0.0625 0.229811 1.49697e-06 2.39952e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| of Iraq ||| 0.00173611 0.0188479 1.49697e-06 3.72689e-07 2.718 ||| 0-0 ||| 576 668016 +a ||| of Israel , ||| 0.00746269 0.0001191 1.49697e-06 3.44815e-10 2.718 ||| 0-2 ||| 134 668016 +a ||| of Israel to ||| 0.025 0.229811 1.49697e-06 4.53242e-07 2.718 ||| 0-2 ||| 40 668016 +a ||| of Justice , to ||| 0.0833333 0.229811 1.49697e-06 1.22637e-07 2.718 ||| 0-3 ||| 12 668016 +a ||| of Justice too is ||| 1 0.0188479 1.49697e-06 6.81306e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| of Justice too ||| 1 0.0188479 1.49697e-06 2.17384e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| of Justice ||| 0.000524109 0.0188479 2.99394e-06 1.59724e-06 2.718 ||| 0-0 ||| 3816 668016 +a ||| of Lisbon will be to set ||| 1 0.229811 1.49697e-06 4.01324e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| of Lisbon will be to ||| 1 0.229811 1.49697e-06 6.86729e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| of Malta ||| 0.0121951 0.0188479 1.49697e-06 1.18314e-07 2.718 ||| 0-0 ||| 82 668016 +a ||| of Member ||| 0.00763359 0.0188479 1.49697e-06 1.52418e-05 2.718 ||| 0-0 ||| 131 668016 +a ||| of Members present ||| 0.0434783 0.0188479 1.49697e-06 1.5968e-09 2.718 ||| 0-0 ||| 23 668016 +a ||| of Members ||| 0.000901713 0.0188479 1.49697e-06 4.36283e-06 2.718 ||| 0-0 ||| 1109 668016 +a ||| of Ministers on ||| 0.0222222 0.0782999 1.49697e-06 4.82585e-08 2.718 ||| 0-2 ||| 45 668016 +a ||| of Ministers ||| 0.00171306 0.0188479 5.98788e-06 6.92137e-07 2.718 ||| 0-0 ||| 2335 668016 +a ||| of Mr ||| 0.000457247 0.0188479 1.49697e-06 1.93088e-05 2.718 ||| 0-0 ||| 2187 668016 +a ||| of Nations voted for the ||| 1 0.0683377 1.49697e-06 1.87343e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| of Nations voted for ||| 1 0.0683377 1.49697e-06 3.0516e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| of Palestinian organisations that ||| 1 0.0008521 1.49697e-06 1.6501e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| of Parliament 's concerns ||| 0.0625 0.0188479 1.49697e-06 2.42174e-12 2.718 ||| 0-0 ||| 16 668016 +a ||| of Parliament 's institutional role ||| 1 0.0188479 1.49697e-06 8.54174e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| of Parliament 's institutional ||| 1 0.0188479 1.49697e-06 3.84763e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| of Parliament 's recommendations ||| 0.0909091 0.0188479 1.49697e-06 3.1363e-13 2.718 ||| 0-0 ||| 11 668016 +a ||| of Parliament 's ||| 0.0178571 0.0188479 4.49091e-06 3.2333e-08 2.718 ||| 0-0 ||| 168 668016 +a ||| of Parliament , for ||| 0.2 0.0683377 1.49697e-06 1.37126e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| of Parliament after ||| 0.166667 0.0341027 1.49697e-06 2.61747e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| of Parliament for ||| 0.0470588 0.0188479 5.98788e-06 1.30488e-07 2.718 ||| 0-0 ||| 85 668016 +a ||| of Parliament involved for ||| 1 0.0683377 1.49697e-06 3.9762e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| of Parliament to participate in ||| 1 0.0587624 1.49697e-06 4.015e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| of Parliament to ||| 0.0104712 0.229811 2.99394e-06 1.09311e-05 2.718 ||| 0-2 ||| 191 668016 +a ||| of Parliament who was ||| 0.5 0.0188479 1.49697e-06 4.69156e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| of Parliament who ||| 0.0126582 0.0188479 1.49697e-06 1.49746e-08 2.718 ||| 0-0 ||| 79 668016 +a ||| of Parliament ||| 0.00384986 0.0188479 2.99394e-05 1.69781e-05 2.718 ||| 0-0 ||| 5195 668016 +a ||| of Parliament – ||| 0.125 0.0188479 1.49697e-06 6.67238e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| of Poland ||| 0.00324675 0.0188479 1.49697e-06 1.80429e-07 2.718 ||| 0-0 ||| 308 668016 +a ||| of Police ||| 0.0588235 0.0188479 1.49697e-06 6.50727e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| of Procedure as to what is to ||| 1 0.0188479 1.49697e-06 6.67576e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| of Procedure as to what is ||| 1 0.0188479 1.49697e-06 7.51283e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| of Procedure as to what ||| 1 0.0188479 1.49697e-06 2.39712e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| of Procedure as to ||| 1 0.0188479 1.49697e-06 1.70844e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| of Procedure as ||| 0.25 0.0188479 1.49697e-06 1.92266e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| of Procedure at ||| 1 0.0188479 1.49697e-06 7.88969e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| of Procedure say that ||| 1 0.0188479 1.49697e-06 3.02935e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| of Procedure say ||| 0.333333 0.0188479 1.49697e-06 1.80087e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| of Procedure ||| 0.00641026 0.0188479 7.48485e-06 1.88415e-06 2.718 ||| 0-0 ||| 780 668016 +a ||| of Romania ||| 0.00302115 0.0188479 1.49697e-06 2.98743e-07 2.718 ||| 0-0 ||| 331 668016 +a ||| of Schengen ||| 0.00571429 0.0188479 1.49697e-06 3.19448e-07 2.718 ||| 0-0 ||| 175 668016 +a ||| of Staff Regulations ||| 0.166667 0.0188479 1.49697e-06 2.34262e-13 2.718 ||| 0-0 ||| 6 668016 +a ||| of Staff ||| 0.04 0.0188479 1.49697e-06 6.50727e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| of State ||| 0.000441501 0.0188479 1.49697e-06 3.55534e-06 2.718 ||| 0-0 ||| 2265 668016 +a ||| of Union ||| 0.0208333 0.0188479 1.49697e-06 1.64871e-05 2.718 ||| 0-0 ||| 48 668016 +a ||| of a Europe ||| 0.00304878 0.0188479 1.49697e-06 6.63412e-07 2.718 ||| 0-0 ||| 328 668016 +a ||| of a European Foundation for ||| 0.333333 0.0683377 1.49697e-06 1.06892e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| of a failure ||| 0.0625 0.0188479 1.49697e-06 6.1359e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| of a helping hand , so ||| 0.5 0.302272 1.49697e-06 3.07882e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| of a helping hand , ||| 0.5 0.302272 1.49697e-06 1.35649e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| of a helping hand ||| 0.25 0.302272 1.49697e-06 1.13747e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| of a helping ||| 0.5 0.302272 1.49697e-06 2.86806e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| of a minimum limit of ||| 1 0.0188479 1.49697e-06 5.29604e-14 2.718 ||| 0-0 0-4 ||| 1 668016 +a ||| of a nation ||| 0.0169492 0.0188479 1.49697e-06 1.83553e-08 2.718 ||| 0-0 ||| 59 668016 +a ||| of a number of English football fans ||| 0.333333 0.0188479 1.49697e-06 4.2857e-24 2.718 ||| 0-3 ||| 3 668016 +a ||| of a number of English football ||| 0.333333 0.0188479 1.49697e-06 6.12243e-18 2.718 ||| 0-3 ||| 3 668016 +a ||| of a number of English ||| 0.333333 0.0188479 1.49697e-06 5.46645e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| of a number of instalments ||| 1 0.0188479 1.49697e-06 1.4107e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| of a number of ||| 0.00823045 0.0188479 5.98788e-06 3.52674e-08 2.718 ||| 0-0 ||| 486 668016 +a ||| of a number ||| 0.00547445 0.0188479 4.49091e-06 6.48728e-07 2.718 ||| 0-0 ||| 548 668016 +a ||| of a policy of ||| 0.0175439 0.0188479 1.49697e-06 2.80614e-08 2.718 ||| 0-0 ||| 57 668016 +a ||| of a policy ||| 0.00495049 0.0188479 1.49697e-06 5.16176e-07 2.718 ||| 0-0 ||| 202 668016 +a ||| of a situation ||| 0.0147059 0.0188479 1.49697e-06 6.75212e-07 2.718 ||| 0-0 ||| 68 668016 +a ||| of a ||| 0.00189731 0.0188479 0.000121255 0.00131109 2.718 ||| 0-0 ||| 42692 668016 +a ||| of abandoning ||| 0.0217391 0.0629954 1.49697e-06 1.37836e-06 2.718 ||| 0-0 0-1 ||| 46 668016 +a ||| of abduction and given ||| 1 0.0371011 1.49697e-06 1.00768e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| of absorbing ||| 0.0769231 0.0188479 1.49697e-06 2.07049e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| of access to affordable essential medicines . ||| 0.5 0.229811 1.49697e-06 9.59914e-24 2.718 ||| 0-2 ||| 2 668016 +a ||| of access to affordable essential medicines ||| 0.5 0.229811 1.49697e-06 3.16908e-21 2.718 ||| 0-2 ||| 2 668016 +a ||| of access to affordable essential ||| 1 0.229811 1.49697e-06 3.68497e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| of access to affordable ||| 1 0.229811 1.49697e-06 4.09442e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| of access to ||| 0.00449102 0.0188479 4.49091e-06 2.26033e-07 2.718 ||| 0-0 ||| 668 668016 +a ||| of access ||| 0.00215285 0.0188479 2.99394e-06 2.54375e-06 2.718 ||| 0-0 ||| 929 668016 +a ||| of accommodation over ||| 1 0.0682544 1.49697e-06 3.66218e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| of accord with ||| 1 0.0188479 1.49697e-06 2.59121e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| of accord ||| 0.333333 0.0188479 1.49697e-06 4.05225e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| of accounting for ||| 0.333333 0.0683377 1.49697e-06 1.88304e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| of achieving ||| 0.00221729 0.0188479 2.99394e-06 1.9581e-06 2.718 ||| 0-0 ||| 902 668016 +a ||| of acquiring ||| 0.0243902 0.0188479 1.49697e-06 1.27188e-07 2.718 ||| 0-0 ||| 41 668016 +a ||| of action to ||| 0.0123457 0.229811 1.49697e-06 5.75694e-06 2.718 ||| 0-2 ||| 81 668016 +a ||| of actually producing ||| 0.333333 0.0188479 1.49697e-06 4.09035e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| of actually ||| 0.0344828 0.0188479 1.49697e-06 1.221e-05 2.718 ||| 0-0 ||| 29 668016 +a ||| of adding ||| 0.0294118 0.0188479 2.99394e-06 4.2593e-07 2.718 ||| 0-0 ||| 68 668016 +a ||| of administering ||| 0.030303 0.0188479 1.49697e-06 5.32413e-08 2.718 ||| 0-0 ||| 33 668016 +a ||| of administration ||| 0.0075188 0.0188479 1.49697e-06 5.97486e-07 2.718 ||| 0-0 ||| 133 668016 +a ||| of adopting this ||| 0.0333333 0.0188479 1.49697e-06 9.3457e-09 2.718 ||| 0-0 ||| 30 668016 +a ||| of adopting ||| 0.0025 0.0188479 1.49697e-06 1.44639e-06 2.718 ||| 0-0 ||| 400 668016 +a ||| of advice to give them ||| 1 0.229811 1.49697e-06 5.57214e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| of advice to give ||| 1 0.229811 1.49697e-06 2.0773e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| of advice to ||| 0.111111 0.229811 1.49697e-06 3.42788e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| of affairs in ||| 0.0243902 0.0587624 1.49697e-06 3.99798e-07 2.718 ||| 0-2 ||| 41 668016 +a ||| of affairs to ||| 0.142857 0.229811 1.49697e-06 2.33096e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| of affairs ||| 0.00420168 0.0188479 2.99394e-06 3.62041e-06 2.718 ||| 0-0 ||| 476 668016 +a ||| of aggressive ||| 0.142857 0.0188479 1.49697e-06 7.39463e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| of agreeing to ||| 0.166667 0.229811 1.49697e-06 1.84725e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| of aid to ||| 0.025 0.229811 5.98788e-06 2.48712e-06 2.718 ||| 0-2 ||| 160 668016 +a ||| of aid ||| 0.000745156 0.0188479 1.49697e-06 3.86295e-06 2.718 ||| 0-0 ||| 1342 668016 +a ||| of alcohol drove against ||| 1 0.0188479 1.49697e-06 7.11389e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| of alcohol drove ||| 1 0.0188479 1.49697e-06 2.98151e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| of alcohol ||| 0.00363636 0.0188479 1.49697e-06 4.2593e-07 2.718 ||| 0-0 ||| 275 668016 +a ||| of all , I would like to ||| 0.0131579 0.229811 1.49697e-06 7.91156e-13 2.718 ||| 0-6 ||| 76 668016 +a ||| of all , to thank ||| 0.111111 0.229811 1.49697e-06 1.13541e-09 2.718 ||| 0-3 ||| 9 668016 +a ||| of all , to ||| 0.172414 0.229811 1.49697e-05 1.07317e-05 2.718 ||| 0-3 ||| 58 668016 +a ||| of all , ||| 0.00383509 0.0188479 5.98788e-06 1.66683e-05 2.718 ||| 0-0 ||| 1043 668016 +a ||| of all also to ||| 1 0.229811 1.49697e-06 4.54321e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| of all like to ||| 0.0689655 0.229811 5.98788e-06 1.59812e-07 2.718 ||| 0-3 ||| 58 668016 +a ||| of all places ||| 0.1 0.0188479 1.49697e-06 7.39385e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| of all places – those ||| 1 0.0188479 1.49697e-06 2.10408e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| of all places – ||| 0.5 0.0188479 1.49697e-06 2.90578e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| of all the islands in ||| 0.333333 0.0587624 1.49697e-06 7.48575e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| of all the political ||| 0.333333 0.0038996 1.49697e-06 3.29506e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| of all the ||| 0.000369413 0.0038996 1.49697e-06 1.84597e-06 2.718 ||| 0-1 ||| 2707 668016 +a ||| of all this ? ||| 0.1 0.0188479 1.49697e-06 1.54342e-10 2.718 ||| 0-0 ||| 10 668016 +a ||| of all this ||| 0.00411523 0.0188479 1.49697e-06 9.03111e-07 2.718 ||| 0-0 ||| 243 668016 +a ||| of all to ||| 0.335664 0.229811 7.18546e-05 8.99896e-05 2.718 ||| 0-2 ||| 143 668016 +a ||| of all viral infections , ||| 1 0.0188479 1.49697e-06 7.33403e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| of all viral infections ||| 1 0.0188479 1.49697e-06 6.14989e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| of all viral ||| 1 0.0188479 1.49697e-06 5.59081e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| of all ||| 0.0029606 0.0188479 5.83818e-05 0.00013977 2.718 ||| 0-0 ||| 13173 668016 +a ||| of allocating the money ||| 0.5 0.0188479 1.49697e-06 1.27587e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| of allocating the ||| 0.142857 0.0188479 1.49697e-06 7.80827e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| of allocating ||| 0.0357143 0.0188479 2.99394e-06 1.27188e-07 2.718 ||| 0-0 ||| 56 668016 +a ||| of allowing ||| 0.00483092 0.0188479 1.49697e-06 1.49076e-06 2.718 ||| 0-0 ||| 207 668016 +a ||| of amnesty , ||| 0.5 0.0188479 1.49697e-06 6.34928e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| of amnesty ||| 0.166667 0.0188479 1.49697e-06 5.32413e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| of amounts made ||| 0.25 0.0188479 1.49697e-06 3.74864e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| of amounts ||| 0.1 0.0188479 1.49697e-06 1.7895e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| of an exchange ||| 0.0384615 0.0188479 1.49697e-06 3.64165e-09 2.718 ||| 0-0 ||| 26 668016 +a ||| of an impression on ||| 1 0.0782999 1.49697e-06 2.41077e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| of an impression upon ||| 1 0.19056 1.49697e-06 1.25287e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| of an ||| 0.000839027 0.0188479 1.04788e-05 0.000131468 2.718 ||| 0-0 ||| 8343 668016 +a ||| of animals in ||| 0.0175439 0.0587624 1.49697e-06 1.32939e-07 2.718 ||| 0-2 ||| 57 668016 +a ||| of annoying ||| 0.2 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| of another ||| 0.00199203 0.0188479 1.49697e-06 7.13138e-06 2.718 ||| 0-0 ||| 502 668016 +a ||| of any Member of this House to ||| 1 0.229811 1.49697e-06 1.30369e-15 2.718 ||| 0-6 ||| 1 668016 +a ||| of any additional ||| 0.333333 0.0188479 1.49697e-06 2.36614e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| of any kind ||| 0.00425532 0.0188479 1.49697e-06 2.18276e-08 2.718 ||| 0-0 ||| 235 668016 +a ||| of any of ||| 0.0178571 0.0188479 1.49697e-06 1.32301e-06 2.718 ||| 0-0 0-2 ||| 56 668016 +a ||| of any reference to ||| 0.0416667 0.229811 1.49697e-06 2.45647e-09 2.718 ||| 0-3 ||| 24 668016 +a ||| of any ||| 0.00195312 0.0188479 8.98182e-06 4.47286e-05 2.718 ||| 0-0 ||| 3072 668016 +a ||| of approaching ||| 0.0606061 0.0188479 2.99394e-06 1.18314e-07 2.718 ||| 0-0 ||| 33 668016 +a ||| of around ||| 0.00636943 0.0559891 2.99394e-06 2.67538e-05 2.718 ||| 0-0 0-1 ||| 314 668016 +a ||| of as much ||| 0.0769231 0.0188479 1.49697e-06 3.02948e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| of as ||| 0.0114943 0.0188479 1.49697e-06 0.000301831 2.718 ||| 0-0 ||| 87 668016 +a ||| of asking ||| 0.015625 0.0188479 1.49697e-06 1.27779e-06 2.718 ||| 0-0 ||| 64 668016 +a ||| of assessing ||| 0.00763359 0.0188479 1.49697e-06 1.27188e-07 2.718 ||| 0-0 ||| 131 668016 +a ||| of assessment would ||| 0.5 0.0188479 1.49697e-06 7.55105e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| of assessment ||| 0.0222222 0.0188479 1.49697e-06 1.28666e-06 2.718 ||| 0-0 ||| 45 668016 +a ||| of assistance to ||| 0.0153846 0.229811 1.49697e-06 9.46477e-07 2.718 ||| 0-2 ||| 65 668016 +a ||| of at least ||| 0.00383142 0.204175 1.49697e-06 4.54064e-07 2.718 ||| 0-1 ||| 261 668016 +a ||| of at the ||| 0.166667 0.204175 1.49697e-06 0.000113593 2.718 ||| 0-1 ||| 6 668016 +a ||| of at ||| 0.0163265 0.204175 5.98788e-06 0.0018503 2.718 ||| 0-1 ||| 245 668016 +a ||| of attention to ||| 0.0178571 0.229811 1.49697e-06 4.97614e-06 2.718 ||| 0-2 ||| 56 668016 +a ||| of attention ||| 0.00328947 0.0188479 1.49697e-06 7.72886e-06 2.718 ||| 0-0 ||| 304 668016 +a ||| of audiovisual works ||| 0.0833333 0.0188479 1.49697e-06 4.8982e-12 2.718 ||| 0-0 ||| 12 668016 +a ||| of audiovisual ||| 0.333333 0.0188479 1.49697e-06 1.18314e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| of bail arrangements and many others ||| 1 0.0188479 1.49697e-06 2.17095e-22 2.718 ||| 0-0 ||| 1 668016 +a ||| of bail arrangements and many ||| 1 0.0188479 1.49697e-06 2.23349e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| of bail arrangements and ||| 1 0.0188479 1.49697e-06 6.50593e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| of bail arrangements ||| 1 0.0188479 1.49697e-06 5.19398e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| of bail ||| 0.25 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| of being awarded ||| 1 0.0188479 1.49697e-06 1.60773e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| of being ||| 0.00390407 0.0188479 1.04788e-05 8.41745e-05 2.718 ||| 0-0 ||| 1793 668016 +a ||| of belonging to one ||| 0.333333 0.229811 1.49697e-06 2.14311e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| of belonging to one ’ s ||| 1 0.229811 1.49697e-06 7.10227e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| of belonging to one ’ ||| 1 0.229811 1.49697e-06 3.73352e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| of belonging to ||| 0.012987 0.229811 1.49697e-06 5.14182e-07 2.718 ||| 0-2 ||| 77 668016 +a ||| of boats only to ||| 1 0.229811 1.49697e-06 9.9629e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| of both would ||| 1 0.0196978 1.49697e-06 1.13769e-07 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| of both ||| 0.0117584 0.0196978 3.29333e-05 1.93857e-05 2.718 ||| 0-0 0-1 ||| 1871 668016 +a ||| of bringing ||| 0.00547945 0.0188479 2.99394e-06 2.37515e-06 2.718 ||| 0-0 ||| 365 668016 +a ||| of business in ||| 0.0416667 0.0587624 1.49697e-06 4.07964e-07 2.718 ||| 0-2 ||| 24 668016 +a ||| of business is ||| 0.05 0.0188479 1.49697e-06 1.15785e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| of business ||| 0.00361011 0.0188479 4.49091e-06 3.69435e-06 2.718 ||| 0-0 ||| 831 668016 +a ||| of butter on a ||| 0.25 0.0782999 1.49697e-06 1.64546e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| of butter on ||| 0.2 0.0782999 1.49697e-06 3.7122e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| of by ||| 0.0204082 0.0263223 1.49697e-06 0.000243357 2.718 ||| 0-0 0-1 ||| 49 668016 +a ||| of call for ||| 0.166667 0.0683377 1.49697e-06 4.44717e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| of capital to ||| 0.05 0.229811 1.49697e-06 4.93234e-07 2.718 ||| 0-2 ||| 20 668016 +a ||| of care , on ||| 1 0.0782999 1.49697e-06 2.49632e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| of certain ||| 0.000471921 0.0188479 1.49697e-06 8.42987e-06 2.718 ||| 0-0 ||| 2119 668016 +a ||| of charge , ||| 0.0666667 0.0188479 1.49697e-06 1.7778e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| of charge ||| 0.00900901 0.0188479 1.49697e-06 1.49076e-06 2.718 ||| 0-0 ||| 111 668016 +a ||| of children who ||| 0.0217391 0.0188479 1.49697e-06 1.94357e-09 2.718 ||| 0-0 ||| 46 668016 +a ||| of children ||| 0.00104877 0.0188479 2.99394e-06 2.2036e-06 2.718 ||| 0-0 ||| 1907 668016 +a ||| of citizens to ||| 0.0120482 0.229811 1.49697e-06 2.07577e-06 2.718 ||| 0-2 ||| 83 668016 +a ||| of classification of ||| 0.333333 0.0188479 1.49697e-06 1.0452e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| of classification ||| 0.0384615 0.0188479 1.49697e-06 1.9226e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| of cold ||| 0.0714286 0.0188479 1.49697e-06 3.40153e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| of collapse ||| 0.0123457 0.0188479 1.49697e-06 3.07616e-07 2.718 ||| 0-0 ||| 81 668016 +a ||| of combination ||| 0.25 0.0188479 1.49697e-06 2.24797e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| of competition here ||| 1 0.0182742 1.49697e-06 1.69674e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| of complaint to ||| 0.333333 0.229811 1.49697e-06 1.58064e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| of components ||| 0.0769231 0.0188479 1.49697e-06 2.54375e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| of concern to ||| 0.0104167 0.229811 2.99394e-06 2.54235e-06 2.718 ||| 0-2 ||| 192 668016 +a ||| of concern ||| 0.0011274 0.0188479 1.49697e-06 3.94873e-06 2.718 ||| 0-0 ||| 887 668016 +a ||| of concrete incitement ||| 0.25 0.0188479 1.49697e-06 6.48065e-13 2.718 ||| 0-0 ||| 4 668016 +a ||| of concrete ||| 0.0151515 0.0188479 1.49697e-06 9.25807e-07 2.718 ||| 0-0 ||| 66 668016 +a ||| of congratulation for ||| 0.333333 0.0188479 1.49697e-06 1.59132e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| of congratulation ||| 0.0454545 0.0188479 1.49697e-06 2.07049e-08 2.718 ||| 0-0 ||| 22 668016 +a ||| of control to ||| 0.0909091 0.229811 1.49697e-06 1.46066e-06 2.718 ||| 0-2 ||| 11 668016 +a ||| of coping with ||| 0.03125 0.0571592 1.49697e-06 2.26903e-09 2.718 ||| 0-2 ||| 32 668016 +a ||| of correctness ||| 0.142857 0.0188479 1.49697e-06 2.07049e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| of countries , and ||| 0.0666667 0.0015873 1.49697e-06 4.74977e-09 2.718 ||| 0-3 ||| 15 668016 +a ||| of course , already explained this . ||| 1 0.0188479 1.49697e-06 5.80859e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| of course , already explained this ||| 1 0.0188479 1.49697e-06 1.91766e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| of course , already explained ||| 1 0.0188479 1.49697e-06 2.96787e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| of course , already ||| 0.111111 0.0188479 1.49697e-06 2.06102e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| of course , be allowed to ||| 1 0.229811 1.49697e-06 8.40736e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| of course , both ||| 0.111111 0.0205477 1.49697e-06 5.36104e-09 2.718 ||| 0-3 ||| 9 668016 +a ||| of course , by ||| 0.0285714 0.0337966 1.49697e-06 6.72994e-08 2.718 ||| 0-3 ||| 35 668016 +a ||| of course , established OLAF to deal ||| 1 0.229811 1.49697e-06 1.38421e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| of course , established OLAF to ||| 1 0.229811 1.49697e-06 3.26002e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| of course , first and ||| 0.166667 0.0188479 1.49697e-06 3.00139e-11 2.718 ||| 0-0 ||| 6 668016 +a ||| of course , first ||| 0.166667 0.0188479 1.49697e-06 2.39614e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| of course , for ||| 0.00943396 0.0683377 1.49697e-06 3.01414e-07 2.718 ||| 0-3 ||| 106 668016 +a ||| of course , goes out to ||| 1 0.229811 1.49697e-06 1.52012e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| of course , in ||| 0.0097561 0.0587624 2.99394e-06 4.91463e-07 2.718 ||| 0-3 ||| 205 668016 +a ||| of course , inform ||| 0.166667 0.130026 1.49697e-06 3.40444e-09 2.718 ||| 0-3 ||| 6 668016 +a ||| of course , is ||| 0.00452489 0.0188479 1.49697e-06 1.39483e-07 2.718 ||| 0-0 ||| 221 668016 +a ||| of course , means ||| 0.0833333 0.0188479 1.49697e-06 2.82028e-09 2.718 ||| 0-0 ||| 12 668016 +a ||| of course , put ||| 0.142857 0.0015876 1.49697e-06 3.3619e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| of course , the additional matter ||| 1 0.0188479 1.49697e-06 1.49955e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| of course , the additional ||| 1 0.0188479 1.49697e-06 1.44535e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| of course , the ||| 0.000853242 0.0188479 1.49697e-06 2.73224e-07 2.718 ||| 0-0 ||| 1172 668016 +a ||| of course , to the fact ||| 1 0.229811 1.49697e-06 5.15299e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| of course , to the ||| 0.015625 0.229811 1.49697e-06 1.75912e-07 2.718 ||| 0-3 ||| 64 668016 +a ||| of course , to ||| 0.028754 0.229811 1.34727e-05 2.8654e-06 2.718 ||| 0-3 ||| 313 668016 +a ||| of course , ||| 0.0019127 0.0188479 4.19152e-05 4.45049e-06 2.718 ||| 0-0 ||| 14639 668016 +a ||| of course at ||| 0.0714286 0.204175 1.49697e-06 2.33452e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| of course give ||| 0.142857 0.0214967 1.49697e-06 2.09846e-08 2.718 ||| 0-0 0-2 ||| 7 668016 +a ||| of course in ||| 0.00925926 0.0587624 1.49697e-06 4.12112e-06 2.718 ||| 0-2 ||| 108 668016 +a ||| of course is ||| 0.011236 0.0188479 1.49697e-06 1.16962e-06 2.718 ||| 0-0 ||| 89 668016 +a ||| of course mention to ||| 1 0.229811 1.49697e-06 2.33548e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| of course of ||| 0.0526316 0.0188479 1.49697e-06 1.10385e-06 2.718 ||| 0-0 0-2 ||| 19 668016 +a ||| of course out of ||| 0.25 0.0188479 1.49697e-06 4.22817e-09 2.718 ||| 0-0 0-3 ||| 4 668016 +a ||| of course to ||| 0.0245902 0.229811 4.49091e-06 2.40276e-05 2.718 ||| 0-2 ||| 122 668016 +a ||| of course ||| 0.00156934 0.0188479 6.43697e-05 3.73192e-05 2.718 ||| 0-0 ||| 27400 668016 +a ||| of covering ||| 0.0333333 0.0188479 1.49697e-06 5.44244e-07 2.718 ||| 0-0 ||| 30 668016 +a ||| of crass ||| 1 0.0188479 1.49697e-06 2.07049e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| of credit ||| 0.00588235 0.0188479 1.49697e-06 1.06483e-06 2.718 ||| 0-0 ||| 170 668016 +a ||| of crime from being ||| 0.5 0.0188479 1.49697e-06 5.70685e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| of crime from ||| 0.333333 0.0188479 1.49697e-06 2.00536e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| of crime ||| 0.00204918 0.0188479 1.49697e-06 1.24525e-06 2.718 ||| 0-0 ||| 488 668016 +a ||| of critical scrutiny ||| 0.5 0.0188479 1.49697e-06 1.12552e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| of critical ||| 0.02 0.0188479 1.49697e-06 7.45378e-07 2.718 ||| 0-0 ||| 50 668016 +a ||| of day ||| 0.0204082 0.0188479 2.99394e-06 7.57801e-06 2.718 ||| 0-0 ||| 98 668016 +a ||| of decision should ||| 0.2 0.0188479 1.49697e-06 2.06161e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| of decision ||| 0.00529101 0.0188479 1.49697e-06 4.6527e-06 2.718 ||| 0-0 ||| 189 668016 +a ||| of default on ||| 1 0.0782999 1.49697e-06 4.53713e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| of depriving ||| 0.111111 0.338323 1.49697e-06 5.60493e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| of designation ||| 0.142857 0.0188479 1.49697e-06 8.57777e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| of developing ||| 0.00298063 0.0188479 2.99394e-06 1.60611e-06 2.718 ||| 0-0 ||| 671 668016 +a ||| of development ||| 0.00155521 0.0188479 2.99394e-06 4.86566e-06 2.718 ||| 0-0 ||| 1286 668016 +a ||| of discord disturb ||| 0.5 0.0188479 1.49697e-06 2.27754e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| of discord ||| 0.0909091 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| of dishonest ||| 0.333333 0.0116967 1.49697e-06 2.66206e-08 2.718 ||| 0-0 0-1 ||| 3 668016 +a ||| of dismay ||| 0.111111 0.0188479 1.49697e-06 6.50727e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| of distribution by the ||| 1 0.0337966 1.49697e-06 5.62916e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| of distribution by ||| 0.333333 0.0337966 1.49697e-06 9.16924e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| of documents ||| 0.003663 0.0188479 1.49697e-06 7.45378e-07 2.718 ||| 0-0 ||| 273 668016 +a ||| of doing all of ||| 0.2 0.0188479 1.49697e-06 2.7894e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| of doing justice to ||| 0.333333 0.229811 1.49697e-06 2.7894e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| of doing so ||| 0.00862069 0.0188479 1.49697e-06 2.4645e-08 2.718 ||| 0-0 ||| 116 668016 +a ||| of doing ||| 0.00298507 0.0188479 1.49697e-06 1.08583e-05 2.718 ||| 0-0 ||| 335 668016 +a ||| of duties with ||| 1 0.0571592 1.49697e-06 1.86061e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| of duty on ||| 0.1 0.0782999 1.49697e-06 1.53644e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| of each of ||| 0.00561798 0.0188479 1.49697e-06 4.51367e-07 2.718 ||| 0-2 ||| 178 668016 +a ||| of each other ||| 0.0185185 0.0188479 1.49697e-06 1.07561e-08 2.718 ||| 0-0 ||| 54 668016 +a ||| of each ||| 0.00113895 0.0188479 2.99394e-06 8.30268e-06 2.718 ||| 0-0 ||| 1756 668016 +a ||| of earlier procedures ||| 0.5 0.0188479 1.49697e-06 8.91898e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| of earlier ||| 0.1 0.0188479 2.99394e-06 2.06458e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| of economic and ||| 0.004329 0.0188479 1.49697e-06 4.49413e-08 2.718 ||| 0-0 ||| 231 668016 +a ||| of economic ||| 0.002 0.0188479 1.49697e-06 3.58787e-06 2.718 ||| 0-0 ||| 500 668016 +a ||| of either ||| 0.00628931 0.0188479 1.49697e-06 2.56091e-05 2.718 ||| 0-0 ||| 159 668016 +a ||| of electing ||| 0.0526316 0.10077 1.49697e-06 5.11708e-07 2.718 ||| 0-0 0-1 ||| 19 668016 +a ||| of elements were ||| 1 0.0188479 1.49697e-06 1.88633e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| of elements ||| 0.010101 0.0188479 1.49697e-06 1.05299e-06 2.718 ||| 0-0 ||| 99 668016 +a ||| of emotions ||| 0.0909091 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| of employment ||| 0.00056243 0.0188479 1.49697e-06 1.44639e-06 2.718 ||| 0-0 ||| 1778 668016 +a ||| of encouraging ||| 0.003861 0.0161591 1.49697e-06 1.13286e-06 2.718 ||| 0-0 0-1 ||| 259 668016 +a ||| of energy efficiency to ||| 0.5 0.229811 1.49697e-06 2.37019e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| of energy ||| 0.000479846 0.0188479 1.49697e-06 2.62953e-06 2.718 ||| 0-0 ||| 2084 668016 +a ||| of ensuring ||| 0.000971817 0.0188479 1.49697e-06 3.43702e-06 2.718 ||| 0-0 ||| 1029 668016 +a ||| of entire ||| 0.1 0.0188479 1.49697e-06 2.34262e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| of establishing a ||| 0.00473934 0.0188479 1.49697e-06 6.1359e-08 2.718 ||| 0-0 ||| 211 668016 +a ||| of establishing ||| 0.00288184 0.0188479 2.99394e-06 1.38427e-06 2.718 ||| 0-0 ||| 694 668016 +a ||| of everyone ||| 0.00357143 0.0188479 1.49697e-06 1.99063e-06 2.718 ||| 0-0 ||| 280 668016 +a ||| of everything ||| 0.00268097 0.0188479 1.49697e-06 2.73601e-06 2.718 ||| 0-0 ||| 373 668016 +a ||| of exactly ||| 0.0416667 0.0188479 1.49697e-06 2.96968e-06 2.718 ||| 0-0 ||| 24 668016 +a ||| of excise duty on ||| 0.037037 0.0782999 1.49697e-06 8.29676e-13 2.718 ||| 0-3 ||| 27 668016 +a ||| of exercising ||| 0.0169492 0.0188479 1.49697e-06 2.86911e-07 2.718 ||| 0-0 ||| 59 668016 +a ||| of existing channels ||| 1 0.0188479 1.49697e-06 2.00448e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| of existing ||| 0.00689655 0.0188479 1.49697e-06 2.33079e-06 2.718 ||| 0-0 ||| 145 668016 +a ||| of expenditure ||| 0.00212766 0.0188479 1.49697e-06 8.93271e-07 2.718 ||| 0-0 ||| 470 668016 +a ||| of explaining ||| 0.0151515 0.0188479 1.49697e-06 2.01134e-07 2.718 ||| 0-0 ||| 66 668016 +a ||| of expression ||| 0.000625 0.0188479 1.49697e-06 1.20384e-06 2.718 ||| 0-0 ||| 1600 668016 +a ||| of external ||| 0.0204082 0.0188479 1.49697e-06 5.53118e-07 2.718 ||| 0-0 ||| 49 668016 +a ||| of extra ||| 0.027027 0.0188479 1.49697e-06 7.33547e-07 2.718 ||| 0-0 ||| 37 668016 +a ||| of facilitating access for ||| 0.5 0.0683377 1.49697e-06 8.09706e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| of falling into ||| 0.0526316 0.107578 1.49697e-06 8.45372e-09 2.718 ||| 0-2 ||| 19 668016 +a ||| of fat ||| 0.047619 0.0188479 1.49697e-06 7.39463e-08 2.718 ||| 0-0 ||| 21 668016 +a ||| of favouring ||| 0.0909091 0.0188479 1.49697e-06 2.07049e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| of financial ||| 0.0060241 0.0188479 1.49697e-06 3.60858e-06 2.718 ||| 0-0 ||| 166 668016 +a ||| of finding myself ||| 1 0.0188479 1.49697e-06 2.45151e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| of finding ||| 0.00295858 0.0188479 1.49697e-06 1.57653e-06 2.718 ||| 0-0 ||| 338 668016 +a ||| of fish ||| 0.00196464 0.0188479 1.49697e-06 9.79048e-07 2.718 ||| 0-0 ||| 509 668016 +a ||| of flesh from ||| 1 0.0435582 1.49697e-06 2.38727e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| of flexibility over the scope of ||| 1 0.0188479 1.49697e-06 6.8242e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| of flowers to ||| 0.5 0.229811 1.49697e-06 7.61752e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| of followers of ||| 0.333333 0.0188479 1.49697e-06 1.1256e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| of forcing ||| 0.027027 0.335672 1.49697e-06 1.42434e-05 2.718 ||| 0-1 ||| 37 668016 +a ||| of free trade to reducing poverty and ||| 0.5 0.229811 1.49697e-06 9.73056e-22 2.718 ||| 0-3 ||| 2 668016 +a ||| of free trade to reducing poverty ||| 0.5 0.229811 1.49697e-06 7.76835e-20 2.718 ||| 0-3 ||| 2 668016 +a ||| of free trade to reducing ||| 0.5 0.229811 1.49697e-06 5.1446e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| of free trade to ||| 0.2 0.229811 1.49697e-06 1.93406e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| of freedom ||| 0.000850702 0.0188479 2.99394e-06 2.52305e-06 2.718 ||| 0-0 ||| 2351 668016 +a ||| of friendship and cooperation to ||| 0.5 0.0015873 1.49697e-06 1.20183e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| of friendship and cooperation ||| 0.166667 0.0015873 1.49697e-06 1.35252e-14 2.718 ||| 0-2 ||| 6 668016 +a ||| of friendship and ||| 0.0384615 0.0015873 1.49697e-06 1.46853e-10 2.718 ||| 0-2 ||| 26 668016 +a ||| of funds to ||| 0.015873 0.229811 1.49697e-06 1.45304e-06 2.718 ||| 0-2 ||| 63 668016 +a ||| of getting their ||| 0.5 0.0188479 1.49697e-06 3.98385e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| of getting ||| 0.00325733 0.0188479 1.49697e-06 3.43702e-06 2.718 ||| 0-0 ||| 307 668016 +a ||| of giving a ||| 0.0344828 0.136521 1.49697e-06 2.43045e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| of giving due value to ||| 1 0.0188479 1.49697e-06 1.00522e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| of giving due value ||| 1 0.0188479 1.49697e-06 1.13127e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| of giving due ||| 1 0.0188479 1.49697e-06 1.28846e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| of giving ||| 0.0138889 0.136521 8.98182e-06 5.48315e-05 2.718 ||| 0-1 ||| 432 668016 +a ||| of going over ||| 0.142857 0.0682544 1.49697e-06 1.08072e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| of going to ||| 0.030303 0.229811 1.49697e-06 1.62977e-05 2.718 ||| 0-2 ||| 33 668016 +a ||| of good intentions and wish ||| 0.5 0.0188479 1.49697e-06 6.34185e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| of good intentions and ||| 0.04 0.0188479 1.49697e-06 2.15197e-12 2.718 ||| 0-0 ||| 25 668016 +a ||| of good intentions ||| 0.00636943 0.0188479 1.49697e-06 1.71801e-10 2.718 ||| 0-0 ||| 157 668016 +a ||| of good ||| 0.0015456 0.0188479 2.99394e-06 1.53394e-05 2.718 ||| 0-0 ||| 1294 668016 +a ||| of growth ||| 0.00125786 0.0188479 1.49697e-06 1.42568e-06 2.718 ||| 0-0 ||| 795 668016 +a ||| of guilt ||| 0.0192308 0.0188479 1.49697e-06 1.27188e-07 2.718 ||| 0-0 ||| 52 668016 +a ||| of hand . ||| 0.0454545 0.0188479 1.49697e-06 3.55327e-08 2.718 ||| 0-0 ||| 22 668016 +a ||| of hand ||| 0.00729927 0.0188479 1.49697e-06 1.17308e-05 2.718 ||| 0-0 ||| 137 668016 +a ||| of having a positive effect on ||| 1 0.0782999 1.49697e-06 1.06259e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| of having gone to ||| 1 0.229811 1.49697e-06 4.56471e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| of having to hold in a balance ||| 1 0.0587624 1.49697e-06 4.63384e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| of having to hold in a ||| 1 0.0587624 1.49697e-06 8.58118e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| of having to hold in ||| 1 0.0587624 1.49697e-06 1.93593e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| of having ||| 0.00237718 0.0188479 4.49091e-06 1.13256e-05 2.718 ||| 0-0 ||| 1262 668016 +a ||| of health to ||| 0.25 0.229811 1.49697e-06 1.58254e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| of heavy goods ||| 0.142857 0.0188479 1.49697e-06 2.39988e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| of heavy ||| 0.0625 0.0188479 2.99394e-06 5.20582e-07 2.718 ||| 0-0 ||| 32 668016 +a ||| of help ||| 0.00806452 0.139412 1.49697e-06 0.000194547 2.718 ||| 0-0 0-1 ||| 124 668016 +a ||| of helping people ||| 0.1 0.0188479 1.49697e-06 9.84123e-10 2.718 ||| 0-0 ||| 10 668016 +a ||| of helping to ||| 0.0142857 0.229811 1.49697e-06 7.19855e-07 2.718 ||| 0-2 ||| 70 668016 +a ||| of helping ||| 0.0123457 0.0188479 4.49091e-06 1.11807e-06 2.718 ||| 0-0 ||| 243 668016 +a ||| of her urging ||| 0.333333 0.340127 1.49697e-06 3.60492e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| of high-profile ||| 0.142857 0.0188479 1.49697e-06 8.57777e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| of higher ||| 0.00943396 0.0188479 1.49697e-06 1.24525e-06 2.718 ||| 0-0 ||| 106 668016 +a ||| of his trip to ||| 0.5 0.229811 1.49697e-06 3.49082e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| of his work ||| 0.00826446 0.0188479 1.49697e-06 5.62632e-09 2.718 ||| 0-0 ||| 121 668016 +a ||| of his ||| 0.00123967 0.0188479 4.49091e-06 8.88834e-06 2.718 ||| 0-0 ||| 2420 668016 +a ||| of holding ||| 0.00704225 0.0188479 1.49697e-06 1.77767e-06 2.718 ||| 0-0 ||| 142 668016 +a ||| of honourable Members who ||| 0.166667 0.0188479 1.49697e-06 2.00866e-13 2.718 ||| 0-0 ||| 6 668016 +a ||| of honourable Members ||| 0.012987 0.0188479 1.49697e-06 2.2774e-10 2.718 ||| 0-0 ||| 77 668016 +a ||| of honourable ||| 0.166667 0.0188479 1.49697e-06 1.544e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| of hot air ||| 0.0434783 0.0188479 1.49697e-06 1.28752e-11 2.718 ||| 0-0 ||| 23 668016 +a ||| of hot ||| 0.0714286 0.0188479 1.49697e-06 2.3367e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| of how badly ||| 0.125 0.0188479 1.49697e-06 1.52653e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| of how ||| 0.000389257 0.0188479 1.49697e-06 1.06009e-05 2.718 ||| 0-0 ||| 2569 668016 +a ||| of human life ||| 0.00543478 0.0188479 1.49697e-06 5.52973e-10 2.718 ||| 0-0 ||| 184 668016 +a ||| of human rights ||| 0.000195465 0.0188479 1.49697e-06 7.30362e-10 2.718 ||| 0-0 ||| 5116 668016 +a ||| of human ||| 0.00526316 0.0188479 2.99394e-06 3.64999e-06 2.718 ||| 0-0 ||| 380 668016 +a ||| of identifying ||| 0.00980392 0.0188479 1.49697e-06 9.46512e-08 2.718 ||| 0-0 ||| 102 668016 +a ||| of illegal immigrants , intercepted at the ||| 1 0.204175 1.49697e-06 3.28303e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| of illegal immigrants , intercepted at ||| 1 0.204175 1.49697e-06 5.34767e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| of illegal ||| 0.0105263 0.0188479 1.49697e-06 9.58343e-07 2.718 ||| 0-0 ||| 95 668016 +a ||| of illegally ||| 0.166667 0.0188479 1.49697e-06 1.47893e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| of illicit drug smuggling ||| 0.166667 0.0188479 1.49697e-06 6.77643e-18 2.718 ||| 0-0 ||| 6 668016 +a ||| of illicit drug ||| 0.142857 0.0188479 1.49697e-06 1.35529e-12 2.718 ||| 0-0 ||| 7 668016 +a ||| of illicit ||| 0.1 0.0188479 1.49697e-06 8.57777e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| of important ||| 0.00381679 0.0188479 1.49697e-06 1.13463e-05 2.718 ||| 0-0 ||| 262 668016 +a ||| of imposing ||| 0.00613497 0.0188479 1.49697e-06 4.6734e-07 2.718 ||| 0-0 ||| 163 668016 +a ||| of improving ||| 0.00258065 0.0188479 2.99394e-06 6.38896e-07 2.718 ||| 0-0 ||| 775 668016 +a ||| of in ||| 0.0166667 0.0587624 2.99394e-06 0.00326633 2.718 ||| 0-1 ||| 120 668016 +a ||| of incitement to ||| 0.0714286 0.229811 1.49697e-06 1.33307e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| of industry might also be considered ||| 0.5 0.0188479 1.49697e-06 1.47714e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| of industry might also be ||| 0.5 0.0188479 1.49697e-06 1.3728e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| of industry might also ||| 0.5 0.0188479 1.49697e-06 7.57497e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| of industry might ||| 0.5 0.0188479 1.49697e-06 1.50041e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| of industry ||| 0.00361664 0.0188479 2.99394e-06 3.90732e-06 2.718 ||| 0-0 ||| 553 668016 +a ||| of inequality in ||| 0.0833333 0.0587624 1.49697e-06 7.18592e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| of input into ||| 0.5 0.107578 1.49697e-06 4.16081e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| of intent ||| 0.00429185 0.0188479 1.49697e-06 3.51984e-07 2.718 ||| 0-0 ||| 233 668016 +a ||| of interest in ||| 0.00909091 0.0587624 1.49697e-06 3.66808e-07 2.718 ||| 0-2 ||| 110 668016 +a ||| of interest to ||| 0.025974 0.229811 5.98788e-06 2.13862e-06 2.718 ||| 0-2 ||| 154 668016 +a ||| of inviting ||| 0.05 0.184896 1.49697e-06 5.02243e-06 2.718 ||| 0-0 0-1 ||| 20 668016 +a ||| of it , ||| 0.00251889 0.0188479 1.49697e-06 6.2728e-05 2.718 ||| 0-0 ||| 397 668016 +a ||| of it as associated with ||| 1 0.0571592 1.49697e-06 8.48213e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| of it in ||| 0.0246914 0.0587624 2.99394e-06 5.80857e-05 2.718 ||| 0-2 ||| 81 668016 +a ||| of it to ||| 0.0689655 0.229811 2.99394e-06 0.00033866 2.718 ||| 0-2 ||| 29 668016 +a ||| of it ||| 0.00677456 0.0188479 2.69455e-05 0.000526 2.718 ||| 0-0 ||| 2657 668016 +a ||| of its White Paper on a ||| 1 0.0782999 1.49697e-06 1.11588e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| of its White Paper on ||| 0.5 0.0782999 1.49697e-06 2.51745e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| of its ability ||| 0.047619 0.0188479 1.49697e-06 1.94268e-09 2.718 ||| 0-0 ||| 21 668016 +a ||| of its own ||| 0.00163399 0.0188479 1.49697e-06 7.14408e-08 2.718 ||| 0-0 ||| 612 668016 +a ||| of its responsibilities ||| 0.0232558 0.0188479 1.49697e-06 1.00294e-09 2.718 ||| 0-0 ||| 43 668016 +a ||| of its ||| 0.00121167 0.0188479 1.94606e-05 4.21405e-05 2.718 ||| 0-0 ||| 10729 668016 +a ||| of keeping ||| 0.00784314 0.0188479 2.99394e-06 1.73626e-06 2.718 ||| 0-0 ||| 255 668016 +a ||| of key areas such as ||| 0.2 0.0188479 1.49697e-06 1.03916e-14 2.718 ||| 0-0 ||| 5 668016 +a ||| of key areas such ||| 0.5 0.0188479 1.49697e-06 1.01835e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| of key areas ||| 0.0588235 0.0188479 1.49697e-06 4.92217e-10 2.718 ||| 0-0 ||| 17 668016 +a ||| of key ||| 0.00694444 0.0188479 1.49697e-06 2.15036e-06 2.718 ||| 0-0 ||| 144 668016 +a ||| of knowledge ||| 0.00181818 0.0188479 1.49697e-06 1.40498e-06 2.718 ||| 0-0 ||| 550 668016 +a ||| of labour ||| 0.00197239 0.0188479 1.49697e-06 1.27779e-06 2.718 ||| 0-0 ||| 507 668016 +a ||| of late ||| 0.0106383 0.0188479 1.49697e-06 9.37638e-07 2.718 ||| 0-0 ||| 94 668016 +a ||| of lawlessness from ||| 1 0.0435582 1.49697e-06 1.56542e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| of leading ||| 0.0229885 0.0188479 2.99394e-06 2.57629e-06 2.718 ||| 0-0 ||| 87 668016 +a ||| of legal / ||| 1 0.0188479 1.49697e-06 8.81676e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| of legal ||| 0.0045045 0.0188479 1.49697e-06 3.83337e-06 2.718 ||| 0-0 ||| 222 668016 +a ||| of legislation to ||| 0.09375 0.229811 4.49091e-06 1.52922e-06 2.718 ||| 0-2 ||| 32 668016 +a ||| of legislation ||| 0.000670691 0.0188479 1.49697e-06 2.37515e-06 2.718 ||| 0-0 ||| 1491 668016 +a ||| of legislative ||| 0.0172414 0.0188479 1.49697e-06 7.86788e-07 2.718 ||| 0-0 ||| 58 668016 +a ||| of legitimate armed ||| 0.5 0.0188479 1.49697e-06 2.849e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| of legitimate ||| 0.05 0.0188479 1.49697e-06 3.31279e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| of life at the ||| 0.5 0.204175 1.49697e-06 1.72094e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| of life at ||| 0.0625 0.204175 1.49697e-06 2.80321e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| of life ||| 0.000904977 0.0188479 2.99394e-06 4.48114e-06 2.718 ||| 0-0 ||| 2210 668016 +a ||| of living ||| 0.00127389 0.0188479 1.49697e-06 2.47868e-06 2.718 ||| 0-0 ||| 785 668016 +a ||| of loss ||| 0.0128205 0.0188479 1.49697e-06 1.24525e-06 2.718 ||| 0-0 ||| 78 668016 +a ||| of maintaining ||| 0.002457 0.0188479 1.49697e-06 5.32413e-07 2.718 ||| 0-0 ||| 407 668016 +a ||| of making ||| 0.00365965 0.0231942 5.98788e-06 1.34996e-05 2.718 ||| 0-0 0-1 ||| 1093 668016 +a ||| of man to allow ||| 0.25 0.229811 1.49697e-06 2.94296e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| of man to ||| 1 0.229811 1.49697e-06 1.21309e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| of many of ||| 0.003861 0.0188479 1.49697e-06 5.52028e-07 2.718 ||| 0-2 ||| 259 668016 +a ||| of many years ||| 0.027027 0.0188479 1.49697e-06 1.72826e-09 2.718 ||| 0-0 ||| 37 668016 +a ||| of many ||| 0.00104167 0.0188479 2.99394e-06 1.01543e-05 2.718 ||| 0-0 ||| 1920 668016 +a ||| of march . ||| 0.5 0.0188479 1.49697e-06 3.58373e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| of march ||| 0.5 0.0188479 1.49697e-06 1.18314e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| of measures designed to serve ||| 1 0.229811 1.49697e-06 2.10485e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| of measures designed to ||| 0.0294118 0.229811 1.49697e-06 3.07727e-10 2.718 ||| 0-3 ||| 34 668016 +a ||| of measures ||| 0.000493827 0.0188479 1.49697e-06 6.11979e-06 2.718 ||| 0-0 ||| 2025 668016 +a ||| of meeting ||| 0.00666667 0.0188479 2.99394e-06 3.71506e-06 2.718 ||| 0-0 ||| 300 668016 +a ||| of members in ||| 0.0833333 0.0587624 1.49697e-06 4.81783e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| of membership of ||| 0.0227273 0.0188479 1.49697e-06 3.93961e-08 2.718 ||| 0-0 ||| 44 668016 +a ||| of membership ||| 0.00408163 0.0188479 1.49697e-06 7.24673e-07 2.718 ||| 0-0 ||| 245 668016 +a ||| of military action ||| 0.0384615 0.0188479 1.49697e-06 2.15492e-10 2.718 ||| 0-0 ||| 26 668016 +a ||| of military ||| 0.0217391 0.0188479 1.49697e-06 7.12842e-07 2.718 ||| 0-0 ||| 46 668016 +a ||| of mind ||| 0.0142857 0.0188479 2.99394e-06 7.45082e-06 2.718 ||| 0-0 ||| 140 668016 +a ||| of mitigating traffic ||| 1 0.0188479 1.49697e-06 3.36012e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| of mitigating ||| 0.0434783 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-0 ||| 23 668016 +a ||| of money by ||| 0.1 0.0337966 1.49697e-06 7.30855e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| of money to ||| 0.012987 0.229811 1.49697e-06 3.11176e-06 2.718 ||| 0-2 ||| 77 668016 +a ||| of money ||| 0.000593472 0.0188479 1.49697e-06 4.83313e-06 2.718 ||| 0-0 ||| 1685 668016 +a ||| of more than a ||| 0.037037 0.0188479 1.49697e-06 9.14709e-10 2.718 ||| 0-0 ||| 27 668016 +a ||| of more than ||| 0.00207039 0.0188479 1.49697e-06 2.0636e-08 2.718 ||| 0-0 ||| 483 668016 +a ||| of more ||| 0.00218579 0.0188479 2.99394e-06 6.75484e-05 2.718 ||| 0-0 ||| 915 668016 +a ||| of much interest to ||| 0.5 0.229811 1.49697e-06 2.14653e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| of murdering ||| 0.0714286 0.126246 1.49697e-06 6.7439e-07 2.718 ||| 0-0 0-1 ||| 14 668016 +a ||| of my criticism ||| 0.125 0.0188479 1.49697e-06 3.84243e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| of my fellow MEPs to ||| 0.5 0.12433 1.49697e-06 7.72849e-15 2.718 ||| 0-0 0-4 ||| 2 668016 +a ||| of my speaking time to ||| 0.1 0.229811 1.49697e-06 2.30817e-12 2.718 ||| 0-4 ||| 10 668016 +a ||| of my ||| 0.000459207 0.0188479 4.49091e-06 1.90219e-05 2.718 ||| 0-0 ||| 6533 668016 +a ||| of nations to ||| 0.0555556 0.229811 1.49697e-06 2.95179e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| of naturalisation for ||| 1 0.0683377 1.49697e-06 1.40226e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| of necessity , ||| 0.0217391 0.0188479 1.49697e-06 5.85544e-08 2.718 ||| 0-0 ||| 46 668016 +a ||| of necessity ||| 0.00980392 0.0188479 1.49697e-06 4.91003e-07 2.718 ||| 0-0 ||| 102 668016 +a ||| of needs in relation to ||| 1 0.229811 1.49697e-06 1.96663e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| of new ||| 0.000716589 0.0188479 2.99394e-06 1.76791e-05 2.718 ||| 0-0 ||| 2791 668016 +a ||| of no help to ||| 0.333333 0.0188479 1.49697e-06 3.90146e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| of no help ||| 0.0909091 0.0188479 1.49697e-06 4.39066e-09 2.718 ||| 0-0 ||| 11 668016 +a ||| of no ||| 0.00526316 0.0188479 2.99394e-06 2.30239e-05 2.718 ||| 0-0 ||| 380 668016 +a ||| of offering ||| 0.01 0.0611849 1.49697e-06 5.23835e-06 2.718 ||| 0-0 0-1 ||| 100 668016 +a ||| of office for ||| 0.25 0.0683377 1.49697e-06 2.06133e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| of office ||| 0.00483092 0.0188479 1.49697e-06 3.04363e-06 2.718 ||| 0-0 ||| 207 668016 +a ||| of old European nations ||| 0.333333 0.0188479 1.49697e-06 1.18046e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| of old European ||| 0.5 0.0188479 1.49697e-06 7.61588e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| of old ||| 0.00990099 0.0188479 1.49697e-06 2.27754e-06 2.718 ||| 0-0 ||| 101 668016 +a ||| of one country against ||| 1 0.0188479 1.49697e-06 1.05866e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| of one country ||| 0.015625 0.0188479 1.49697e-06 4.43696e-08 2.718 ||| 0-0 ||| 64 668016 +a ||| of one ||| 0.00338792 0.0188479 8.98182e-06 0.000123283 2.718 ||| 0-0 ||| 1771 668016 +a ||| of open ||| 0.0140845 0.0188479 1.49697e-06 4.76805e-06 2.718 ||| 0-0 ||| 71 668016 +a ||| of opposing ||| 0.0333333 0.131809 1.49697e-06 6.31797e-06 2.718 ||| 0-0 0-1 ||| 30 668016 +a ||| of optimum ||| 0.2 0.0188479 1.49697e-06 6.50727e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| of order to ||| 0.0434783 0.229811 1.49697e-06 1.01427e-05 2.718 ||| 0-2 ||| 23 668016 +a ||| of other countries in ||| 0.0666667 0.0587624 1.49697e-06 1.60671e-09 2.718 ||| 0-3 ||| 15 668016 +a ||| of other ||| 0.000404204 0.0188479 1.49697e-06 3.83189e-05 2.718 ||| 0-0 ||| 2474 668016 +a ||| of others as well , ||| 0.5 0.0243476 1.49697e-06 8.76527e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| of others as well ||| 0.5 0.0243476 1.49697e-06 7.35004e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| of others as ||| 0.333333 0.0243476 1.49697e-06 4.63549e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| of our attention ||| 0.0181818 0.0188479 1.49697e-06 1.06612e-08 2.718 ||| 0-0 ||| 55 668016 +a ||| of our colleagues ||| 0.0045045 0.0098913 1.49697e-06 3.71285e-10 2.718 ||| 0-0 0-2 ||| 222 668016 +a ||| of our time ||| 0.00568182 0.0188479 1.49697e-06 6.69823e-08 2.718 ||| 0-0 ||| 176 668016 +a ||| of our ||| 0.000732265 0.0188479 2.39515e-05 4.08006e-05 2.718 ||| 0-0 ||| 21850 668016 +a ||| of ours ||| 0.00390625 0.0188479 1.49697e-06 9.25807e-07 2.718 ||| 0-0 ||| 256 668016 +a ||| of over ||| 0.00692841 0.0682544 4.49091e-06 0.000126282 2.718 ||| 0-1 ||| 433 668016 +a ||| of overcoming ||| 0.0104167 0.0188479 1.49697e-06 8.57777e-08 2.718 ||| 0-0 ||| 96 668016 +a ||| of parliament , ||| 0.0384615 0.0188479 1.49697e-06 8.50097e-08 2.718 ||| 0-0 ||| 26 668016 +a ||| of parliament to ||| 0.5 0.229811 1.49697e-06 4.58955e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| of parliament ||| 0.0138889 0.0188479 2.99394e-06 7.12842e-07 2.718 ||| 0-0 ||| 144 668016 +a ||| of participation ||| 0.00364964 0.0188479 1.49697e-06 7.12842e-07 2.718 ||| 0-0 ||| 274 668016 +a ||| of particular ||| 0.00180832 0.0188479 1.49697e-06 1.82026e-05 2.718 ||| 0-0 ||| 553 668016 +a ||| of penetrating world ||| 1 0.0188479 1.49697e-06 4.71659e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| of penetrating ||| 0.333333 0.0188479 1.49697e-06 2.07049e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| of people ||| 0.000558971 0.0188479 4.49091e-06 2.6035e-05 2.718 ||| 0-0 ||| 5367 668016 +a ||| of perhaps ||| 0.0714286 0.0188479 1.49697e-06 4.57579e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| of persuading ||| 0.0384615 0.180853 1.49697e-06 2.26867e-06 2.718 ||| 0-0 0-1 ||| 26 668016 +a ||| of persuasion for ||| 0.25 0.0683377 1.49697e-06 7.21163e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| of place in ||| 0.047619 0.0587624 1.49697e-06 4.91582e-06 2.718 ||| 0-2 ||| 21 668016 +a ||| of place to ||| 0.75 0.229811 4.49091e-06 2.86609e-05 2.718 ||| 0-2 ||| 4 668016 +a ||| of placing us ||| 0.333333 0.0188479 1.49697e-06 2.02898e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| of placing ||| 0.0185185 0.0188479 1.49697e-06 7.03968e-07 2.718 ||| 0-0 ||| 54 668016 +a ||| of plant protection agents ||| 0.0769231 0.0188479 1.49697e-06 1.6212e-16 2.718 ||| 0-0 ||| 13 668016 +a ||| of plant protection ||| 0.0666667 0.0188479 1.49697e-06 3.2424e-11 2.718 ||| 0-0 ||| 15 668016 +a ||| of plant ||| 0.047619 0.0188479 1.49697e-06 3.19448e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| of play ||| 0.00657895 0.0188479 1.49697e-06 7.63125e-06 2.718 ||| 0-0 ||| 152 668016 +a ||| of port services to ||| 0.333333 0.229811 1.49697e-06 2.24155e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| of possible interest to ||| 1 0.229811 1.49697e-06 1.71539e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| of power ||| 0.00111607 0.0188479 1.49697e-06 4.41607e-06 2.718 ||| 0-0 ||| 896 668016 +a ||| of praise ||| 0.0117647 0.0188479 1.49697e-06 4.14099e-07 2.718 ||| 0-0 ||| 85 668016 +a ||| of pressure on ||| 0.0416667 0.0782999 1.49697e-06 1.23946e-07 2.718 ||| 0-2 ||| 24 668016 +a ||| of primary ||| 0.0217391 0.0188479 1.49697e-06 4.2593e-07 2.718 ||| 0-0 ||| 46 668016 +a ||| of principles - , ||| 1 0.0188479 1.49697e-06 5.36216e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| of principles - ||| 0.25 0.0188479 1.49697e-06 4.49639e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| of principles ||| 0.00442478 0.0188479 1.49697e-06 1.19201e-06 2.718 ||| 0-0 ||| 226 668016 +a ||| of priorities ||| 0.00246914 0.0188479 1.49697e-06 5.53118e-07 2.718 ||| 0-0 ||| 405 668016 +a ||| of problems ||| 0.00143885 0.0188479 1.49697e-06 3.96943e-06 2.718 ||| 0-0 ||| 695 668016 +a ||| of proceedings following your speech ||| 1 0.0720432 1.49697e-06 2.24021e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| of proceedings following your ||| 1 0.0720432 1.49697e-06 4.97825e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| of proceedings following ||| 0.5 0.0720432 1.49697e-06 1.94539e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| of product liability to ||| 1 0.0188479 1.49697e-06 1.78976e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| of product liability ||| 0.25 0.0188479 1.49697e-06 2.01418e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| of product ||| 0.0121951 0.0188479 1.49697e-06 1.79837e-06 2.718 ||| 0-0 ||| 82 668016 +a ||| of products - ||| 0.125 0.0188479 1.49697e-06 1.16036e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| of products ||| 0.000962464 0.0188479 1.49697e-06 3.07616e-06 2.718 ||| 0-0 ||| 1039 668016 +a ||| of professionals ||| 0.0126582 0.0188479 1.49697e-06 1.06483e-07 2.718 ||| 0-0 ||| 79 668016 +a ||| of progress ||| 0.00136426 0.0188479 1.49697e-06 3.89549e-06 2.718 ||| 0-0 ||| 733 668016 +a ||| of promoting ||| 0.00245098 0.0188479 2.99394e-06 8.40029e-07 2.718 ||| 0-0 ||| 816 668016 +a ||| of property ||| 0.00869565 0.0188479 1.49697e-06 5.64949e-07 2.718 ||| 0-0 ||| 115 668016 +a ||| of proven ||| 0.0833333 0.0188479 1.49697e-06 4.14099e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| of publications in the ||| 1 0.0587624 1.49697e-06 4.41156e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| of publications in ||| 1 0.0587624 1.49697e-06 7.18592e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| of putting ||| 0.00423729 0.0341665 1.49697e-06 5.96598e-06 2.718 ||| 0-0 0-1 ||| 236 668016 +a ||| of quite a ||| 0.181818 0.0188479 2.99394e-06 5.11456e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| of quite ||| 0.153846 0.0188479 2.99394e-06 1.15386e-05 2.718 ||| 0-0 ||| 13 668016 +a ||| of racist parties in ||| 0.5 0.0587624 1.49697e-06 9.58993e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| of rating ||| 0.0833333 0.0188479 1.49697e-06 2.12965e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| of reasonably ||| 0.5 0.0188479 1.49697e-06 1.39019e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| of reassurance on ||| 1 0.0782999 1.49697e-06 1.44363e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| of receiving ||| 0.00763359 0.0188479 1.49697e-06 8.84397e-07 2.718 ||| 0-0 ||| 131 668016 +a ||| of redistribution ||| 0.0344828 0.0188479 1.49697e-06 4.14099e-08 2.718 ||| 0-0 ||| 29 668016 +a ||| of reference do ||| 0.5 0.0188479 1.49697e-06 8.66742e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| of reference ||| 0.00253807 0.0188479 1.49697e-06 2.52305e-06 2.718 ||| 0-0 ||| 394 668016 +a ||| of referring ||| 0.0322581 0.0188479 1.49697e-06 1.27779e-06 2.718 ||| 0-0 ||| 31 668016 +a ||| of reform should ||| 0.5 0.0188479 1.49697e-06 5.37356e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| of reform ||| 0.00187266 0.0188479 1.49697e-06 1.21272e-06 2.718 ||| 0-0 ||| 534 668016 +a ||| of regarding ||| 0.125 0.186429 1.49697e-06 0.000182951 2.718 ||| 0-1 ||| 8 668016 +a ||| of regions helps to ||| 1 0.229811 1.49697e-06 1.34952e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| of repression ||| 0.00636943 0.0188479 1.49697e-06 1.18314e-07 2.718 ||| 0-0 ||| 157 668016 +a ||| of rescuing ||| 0.0769231 0.168907 1.49697e-06 9.99753e-07 2.718 ||| 0-0 0-1 ||| 13 668016 +a ||| of resolving ||| 0.010582 0.0188479 2.99394e-06 2.54375e-07 2.718 ||| 0-0 ||| 189 668016 +a ||| of resources ||| 0.000757576 0.0188479 1.49697e-06 2.11782e-06 2.718 ||| 0-0 ||| 1320 668016 +a ||| of responsible proposals to ||| 1 0.229811 1.49697e-06 2.73771e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| of retirement age ||| 0.0526316 0.0188479 1.49697e-06 5.27533e-12 2.718 ||| 0-0 ||| 19 668016 +a ||| of retirement ||| 0.0212766 0.0188479 1.49697e-06 8.57777e-08 2.718 ||| 0-0 ||| 47 668016 +a ||| of reused ||| 1 0.0639694 1.49697e-06 1.62682e-07 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| of rising to ||| 0.142857 0.229811 1.49697e-06 2.39952e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| of road ||| 0.0107527 0.0188479 1.49697e-06 2.6384e-06 2.718 ||| 0-0 ||| 93 668016 +a ||| of rules - tell ||| 1 0.0188479 1.49697e-06 1.27314e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| of rules - ||| 0.2 0.0188479 1.49697e-06 1.29648e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| of rules ||| 0.00151286 0.0188479 1.49697e-06 3.43702e-06 2.718 ||| 0-0 ||| 661 668016 +a ||| of school ||| 0.0238095 0.0188479 1.49697e-06 6.18191e-07 2.718 ||| 0-0 ||| 42 668016 +a ||| of scope for ||| 0.0322581 0.0683377 1.49697e-06 1.99722e-07 2.718 ||| 0-2 ||| 31 668016 +a ||| of securing respect ||| 1 0.0188479 1.49697e-06 1.66344e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| of securing ||| 0.00632911 0.0188479 1.49697e-06 3.8452e-07 2.718 ||| 0-0 ||| 158 668016 +a ||| of security ||| 0.000717875 0.0188479 1.49697e-06 2.41656e-06 2.718 ||| 0-0 ||| 1393 668016 +a ||| of selection ||| 0.111111 0.0188479 1.49697e-06 1.71555e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| of sending ||| 0.00793651 0.0177863 1.49697e-06 6.47769e-07 2.718 ||| 0-0 0-1 ||| 126 668016 +a ||| of serious disaster ||| 0.25 0.0188479 1.49697e-06 8.58676e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| of serious ||| 0.00694444 0.0188479 2.99394e-06 3.40744e-06 2.718 ||| 0-0 ||| 288 668016 +a ||| of seriously becoming one ||| 0.25 0.0188479 1.49697e-06 5.29e-13 2.718 ||| 0-0 ||| 4 668016 +a ||| of seriously becoming ||| 0.25 0.0188479 1.49697e-06 1.26919e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| of seriously ||| 0.0909091 0.0188479 1.49697e-06 1.23342e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| of serving ||| 0.0243902 0.156373 1.49697e-06 5.90393e-06 2.718 ||| 0-1 ||| 41 668016 +a ||| of setting up an ||| 0.0294118 0.0188479 1.49697e-06 4.25952e-11 2.718 ||| 0-0 ||| 34 668016 +a ||| of setting up ||| 0.00411523 0.0188479 1.49697e-06 9.58336e-09 2.718 ||| 0-0 ||| 243 668016 +a ||| of setting ||| 0.00460829 0.0188479 1.49697e-06 2.80996e-06 2.718 ||| 0-0 ||| 217 668016 +a ||| of shifting ||| 0.0277778 0.0188479 1.49697e-06 8.57777e-08 2.718 ||| 0-0 ||| 36 668016 +a ||| of sight all too often out of ||| 1 0.0188479 1.49697e-06 1.19716e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| of sight all too often out ||| 1 0.0188479 1.49697e-06 2.20212e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| of sight all too often ||| 1 0.0188479 1.49697e-06 5.74905e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| of sight all too ||| 1 0.0188479 1.49697e-06 4.37523e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| of sight all ||| 1 0.0188479 1.49697e-06 3.21472e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| of sight ||| 0.047619 0.0188479 1.49697e-06 6.80306e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| of sitting squarely on ||| 1 0.0782999 1.49697e-06 4.58662e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| of small and ||| 0.00302115 0.0188479 2.99394e-06 4.74607e-08 2.718 ||| 0-0 ||| 662 668016 +a ||| of small ||| 0.00185529 0.0188479 2.99394e-06 3.78901e-06 2.718 ||| 0-0 ||| 1078 668016 +a ||| of society to ||| 0.0384615 0.229811 1.49697e-06 1.10264e-06 2.718 ||| 0-2 ||| 26 668016 +a ||| of some ||| 0.00174672 0.0188479 5.98788e-06 3.22199e-05 2.718 ||| 0-0 ||| 2290 668016 +a ||| of something ||| 0.00452489 0.0188479 1.49697e-06 1.63717e-05 2.718 ||| 0-0 ||| 221 668016 +a ||| of speaking to ||| 0.142857 0.229811 1.49697e-06 2.18623e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| of specific ||| 0.00591716 0.0188479 1.49697e-06 4.46931e-06 2.718 ||| 0-0 ||| 169 668016 +a ||| of speculation on this point , the ||| 0.5 0.0782999 1.49697e-06 2.13363e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| of speculation on this point , ||| 0.5 0.0782999 1.49697e-06 3.47544e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| of speculation on this point ||| 0.5 0.0782999 1.49697e-06 2.9143e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| of speculation on this ||| 0.5 0.0782999 1.49697e-06 3.33139e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| of speculation on ||| 0.1 0.0782999 1.49697e-06 5.15583e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| of speech for ||| 0.166667 0.0683377 1.49697e-06 9.01454e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| of stable ||| 0.0909091 0.0188479 1.49697e-06 3.93394e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| of staff for ||| 0.142857 0.0683377 1.49697e-06 8.07302e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| of staff ||| 0.00334448 0.0188479 1.49697e-06 1.19201e-06 2.718 ||| 0-0 ||| 299 668016 +a ||| of stocks on ||| 0.5 0.0782999 1.49697e-06 4.53713e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| of student ||| 0.166667 0.0188479 1.49697e-06 6.50727e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| of students from the Saint Francis ||| 1 0.0188479 1.49697e-06 9.77882e-24 2.718 ||| 0-0 ||| 1 668016 +a ||| of students from the Saint ||| 1 0.0188479 1.49697e-06 8.88984e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| of students from the ||| 0.25 0.0188479 1.49697e-06 2.22246e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| of students from ||| 0.0714286 0.0188479 1.49697e-06 3.62012e-10 2.718 ||| 0-0 ||| 14 668016 +a ||| of students ||| 0.00452489 0.0188479 1.49697e-06 2.24797e-07 2.718 ||| 0-0 ||| 221 668016 +a ||| of submitting ||| 0.016129 0.0188479 1.49697e-06 2.01134e-07 2.718 ||| 0-0 ||| 62 668016 +a ||| of success ||| 0.00516796 0.0188479 2.99394e-06 1.75696e-06 2.718 ||| 0-0 ||| 387 668016 +a ||| of such a ||| 0.00157978 0.0188479 1.49697e-06 2.71252e-06 2.718 ||| 0-0 ||| 633 668016 +a ||| of such an ||| 0.00598802 0.0188479 1.49697e-06 2.71993e-07 2.718 ||| 0-0 ||| 167 668016 +a ||| of such ||| 0.00276434 0.0188479 1.19758e-05 6.1195e-05 2.718 ||| 0-0 ||| 2894 668016 +a ||| of sugar ||| 0.00675676 0.0188479 1.49697e-06 2.78038e-07 2.718 ||| 0-0 ||| 148 668016 +a ||| of sums ||| 0.0588235 0.0188479 1.49697e-06 3.72689e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| of support for ||| 0.00280899 0.0683377 1.49697e-06 6.84905e-07 2.718 ||| 0-2 ||| 356 668016 +a ||| of support ||| 0.000804505 0.0188479 1.49697e-06 1.01129e-05 2.718 ||| 0-0 ||| 1243 668016 +a ||| of supporting what are ||| 1 0.190621 1.49697e-06 1.32678e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| of supporting what ||| 1 0.190621 1.49697e-06 8.74452e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| of supporting ||| 0.00923788 0.104734 5.98788e-06 3.39088e-05 2.718 ||| 0-0 0-1 ||| 433 668016 +a ||| of surfacing ||| 0.333333 0.0188479 1.49697e-06 2.07049e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| of taking ||| 0.00344234 0.01503 2.99394e-06 4.99581e-06 2.718 ||| 0-0 0-1 ||| 581 668016 +a ||| of targeting ||| 0.1 0.0980204 1.49697e-06 2.72714e-06 2.718 ||| 0-0 0-1 ||| 10 668016 +a ||| of telling you ||| 0.125 0.0188479 1.49697e-06 1.7572e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| of telling ||| 0.0625 0.0188479 1.49697e-06 5.44244e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| of tests ||| 0.015625 0.0188479 1.49697e-06 4.91003e-07 2.718 ||| 0-0 ||| 64 668016 +a ||| of thanks to ||| 0.0263158 0.229811 2.99394e-06 1.54255e-06 2.718 ||| 0-2 ||| 76 668016 +a ||| of that country ' ||| 0.25 0.0188479 1.49697e-06 6.15091e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| of that country ||| 0.00347222 0.0188479 1.49697e-06 1.79071e-07 2.718 ||| 0-0 ||| 288 668016 +a ||| of that fact ||| 0.0294118 0.0188479 1.49697e-06 1.4575e-06 2.718 ||| 0-0 ||| 34 668016 +a ||| of that process ||| 0.0163934 0.0188479 1.49697e-06 2.12706e-07 2.718 ||| 0-0 ||| 61 668016 +a ||| of that responsibility ||| 0.1 0.0188479 1.49697e-06 5.74679e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| of that ||| 0.00170329 0.0188479 1.49697e-05 0.000497558 2.718 ||| 0-0 ||| 5871 668016 +a ||| of the Austrian ||| 0.0666667 0.0188479 1.49697e-06 2.08826e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| of the Baltic ||| 0.0135135 0.0188479 1.49697e-06 2.6875e-08 2.718 ||| 0-0 ||| 74 668016 +a ||| of the Commission , ||| 0.000590319 0.0188479 2.99394e-06 1.26488e-07 2.718 ||| 0-0 ||| 3388 668016 +a ||| of the Commission . - ||| 0.000713521 0.0188479 2.99394e-06 1.21187e-11 2.718 ||| 0-0 ||| 2803 668016 +a ||| of the Commission . ||| 0.000465441 0.0188479 2.99394e-06 3.21272e-09 2.718 ||| 0-0 ||| 4297 668016 +a ||| of the Commission to ||| 0.0060241 0.12433 2.99394e-06 3.71549e-07 2.718 ||| 0-0 0-3 ||| 332 668016 +a ||| of the Commission ||| 0.000488213 0.0188479 1.04788e-05 1.06065e-06 2.718 ||| 0-0 ||| 14338 668016 +a ||| of the Committee on Industry , Research ||| 0.00469484 0.0188479 1.49697e-06 4.61279e-20 2.718 ||| 0-0 ||| 213 668016 +a ||| of the Committee on Industry , ||| 0.00271003 0.0188479 1.49697e-06 1.34877e-15 2.718 ||| 0-0 ||| 369 668016 +a ||| of the Committee on Industry ||| 0.00258398 0.0188479 1.49697e-06 1.131e-14 2.718 ||| 0-0 ||| 387 668016 +a ||| of the Committee on ||| 0.000120861 0.0188479 1.49697e-06 1.8541e-09 2.718 ||| 0-0 ||| 8274 668016 +a ||| of the Committee ||| 0.00010337 0.0188479 1.49697e-06 2.77103e-07 2.718 ||| 0-0 ||| 9674 668016 +a ||| of the Convention 's procedures or of ||| 0.333333 0.0188479 1.49697e-06 3.00847e-19 2.718 ||| 0-6 ||| 3 668016 +a ||| of the Council ||| 8.31255e-05 0.0188479 1.49697e-06 6.2793e-07 2.718 ||| 0-0 ||| 12030 668016 +a ||| of the Dalai Lama and the ||| 0.0909091 0.0188479 1.49697e-06 3.37926e-18 2.718 ||| 0-0 ||| 11 668016 +a ||| of the Dalai Lama and ||| 0.0526316 0.0188479 1.49697e-06 5.50441e-17 2.718 ||| 0-0 ||| 19 668016 +a ||| of the Dalai Lama ||| 0.012987 0.0188479 1.49697e-06 4.39442e-15 2.718 ||| 0-0 ||| 77 668016 +a ||| of the Dalai ||| 0.012987 0.0188479 1.49697e-06 1.99747e-09 2.718 ||| 0-0 ||| 77 668016 +a ||| of the EFD Group . - ( ||| 0.0454545 0.0188479 1.49697e-06 1.62723e-20 2.718 ||| 0-0 ||| 22 668016 +a ||| of the EFD Group . - ||| 0.00606061 0.0188479 1.49697e-06 1.6873e-17 2.718 ||| 0-0 ||| 165 668016 +a ||| of the EFD Group . ||| 0.00606061 0.0188479 1.49697e-06 4.47311e-15 2.718 ||| 0-0 ||| 165 668016 +a ||| of the EFD Group ||| 0.00581395 0.0188479 1.49697e-06 1.47676e-12 2.718 ||| 0-0 ||| 172 668016 +a ||| of the EFD ||| 0.25 0.0188479 1.49697e-06 4.53969e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| of the EU Member States have an ||| 1 0.0188479 1.49697e-06 1.17447e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| of the EU Member States have ||| 0.5 0.0188479 1.49697e-06 2.64241e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| of the EU Member States ||| 0.00420168 0.0188479 1.49697e-06 2.20941e-13 2.718 ||| 0-0 ||| 238 668016 +a ||| of the EU Member ||| 0.0136986 0.0188479 1.49697e-06 4.62995e-10 2.718 ||| 0-0 ||| 73 668016 +a ||| of the EU ||| 0.000309215 0.0188479 2.99394e-06 8.98496e-07 2.718 ||| 0-0 ||| 6468 668016 +a ||| of the Egyptian ||| 0.2 0.0188479 1.49697e-06 1.99747e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| of the European Parliament be able to ||| 1 0.229811 1.49697e-06 3.3954e-14 2.718 ||| 0-6 ||| 1 668016 +a ||| of the European Parliament ||| 0.000125849 0.0188479 1.49697e-06 3.48539e-09 2.718 ||| 0-0 ||| 7946 668016 +a ||| of the European Union 's citizens to ||| 0.5 0.229811 1.49697e-06 4.52344e-16 2.718 ||| 0-6 ||| 2 668016 +a ||| of the European Union , and furthermore ||| 0.5 0.0188479 1.49697e-06 2.33073e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| of the European Union , and ||| 0.00262467 0.0188479 1.49697e-06 5.05582e-12 2.718 ||| 0-0 ||| 381 668016 +a ||| of the European Union , ||| 0.000332889 0.0188479 1.49697e-06 4.03629e-10 2.718 ||| 0-0 ||| 3004 668016 +a ||| of the European Union and this applies ||| 1 0.0188479 1.49697e-06 2.29555e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| of the European Union and this ||| 0.1 0.0188479 1.49697e-06 2.73932e-13 2.718 ||| 0-0 ||| 10 668016 +a ||| of the European Union and ||| 0.000607533 0.0188479 1.49697e-06 4.23951e-11 2.718 ||| 0-0 ||| 1646 668016 +a ||| of the European Union ||| 0.000165902 0.0188479 4.49091e-06 3.3846e-09 2.718 ||| 0-0 ||| 18083 668016 +a ||| of the European ||| 0.00147667 0.0188479 7.48485e-06 6.07211e-06 2.718 ||| 0-0 ||| 3386 668016 +a ||| of the Geneva Convention ||| 0.00869565 0.0188479 1.49697e-06 2.76522e-13 2.718 ||| 0-0 ||| 115 668016 +a ||| of the Geneva ||| 0.166667 0.0188479 1.49697e-06 8.53462e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| of the Group of the European ||| 0.00378788 0.0188479 1.49697e-06 6.59243e-12 2.718 ||| 0-0 ||| 264 668016 +a ||| of the Group of the ||| 0.00116822 0.0188479 1.49697e-06 1.97148e-09 2.718 ||| 0-0 ||| 856 668016 +a ||| of the Group of ||| 0.00095057 0.0188479 1.49697e-06 3.21131e-08 2.718 ||| 0-0 ||| 1052 668016 +a ||| of the Group ||| 0.000688705 0.0188479 1.49697e-06 5.90705e-07 2.718 ||| 0-0 ||| 1452 668016 +a ||| of the House for ||| 0.0416667 0.0683377 1.49697e-06 3.07578e-08 2.718 ||| 0-3 ||| 24 668016 +a ||| of the Member States ||| 0.000166085 0.0188479 1.49697e-06 4.46526e-10 2.718 ||| 0-0 ||| 6021 668016 +a ||| of the Member ||| 0.00512821 0.0188479 1.49697e-06 9.35722e-07 2.718 ||| 0-0 ||| 195 668016 +a ||| of the Party of European ||| 0.0192308 0.0188479 1.49697e-06 4.97797e-11 2.718 ||| 0-0 ||| 52 668016 +a ||| of the Party of ||| 0.00224215 0.0188479 1.49697e-06 1.48867e-08 2.718 ||| 0-0 ||| 446 668016 +a ||| of the Party ||| 0.00209644 0.0188479 1.49697e-06 2.73834e-07 2.718 ||| 0-0 ||| 477 668016 +a ||| of the Rules of Procedure ||| 0.000820345 0.0188479 1.49697e-06 4.45845e-13 2.718 ||| 0-0 ||| 1219 668016 +a ||| of the Rules of ||| 0.00649351 0.0188479 1.49697e-06 6.99913e-09 2.718 ||| 0-0 ||| 154 668016 +a ||| of the Rules ||| 0.00389105 0.0188479 1.49697e-06 1.28746e-07 2.718 ||| 0-0 ||| 257 668016 +a ||| of the Treaty . ||| 0.00163132 0.0188479 1.49697e-06 4.70825e-10 2.718 ||| 0-0 ||| 613 668016 +a ||| of the Treaty to categories of ||| 0.5 0.229811 1.49697e-06 5.87588e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| of the Treaty to categories ||| 0.5 0.229811 1.49697e-06 1.08084e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| of the Treaty to ||| 0.030303 0.229811 1.49697e-06 1.00078e-07 2.718 ||| 0-3 ||| 33 668016 +a ||| of the Treaty ||| 0.000198728 0.0188479 1.49697e-06 1.55439e-07 2.718 ||| 0-0 ||| 5032 668016 +a ||| of the Union in ||| 0.00564972 0.0587624 1.49697e-06 1.11773e-07 2.718 ||| 0-3 ||| 177 668016 +a ||| of the Union ||| 0.000313676 0.0188479 2.99394e-06 1.01217e-06 2.718 ||| 0-0 ||| 6376 668016 +a ||| of the Volkskammer at that time ||| 0.333333 0.204175 1.49697e-06 1.2548e-15 2.718 ||| 0-3 ||| 3 668016 +a ||| of the Volkskammer at that ||| 0.333333 0.204175 1.49697e-06 7.64328e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| of the Volkskammer at ||| 0.333333 0.204175 1.49697e-06 4.54373e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| of the aforementioned aims to the ||| 1 0.229811 1.49697e-06 2.06196e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| of the aforementioned aims to ||| 1 0.229811 1.49697e-06 3.35869e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| of the agenda ||| 0.00420168 0.0188479 1.49697e-06 1.80317e-07 2.718 ||| 0-0 ||| 238 668016 +a ||| of the article ||| 0.030303 0.0188479 1.49697e-06 2.61486e-08 2.718 ||| 0-0 ||| 33 668016 +a ||| of the block on ||| 1 0.0782999 1.49697e-06 1.22812e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| of the budget ||| 0.000702247 0.0188479 1.49697e-06 2.24079e-07 2.718 ||| 0-0 ||| 1424 668016 +a ||| of the challenges faced by the Barents ||| 1 0.0188479 1.49697e-06 2.77121e-22 2.718 ||| 0-0 ||| 1 668016 +a ||| of the challenges faced by the ||| 0.333333 0.0188479 1.49697e-06 6.92803e-16 2.718 ||| 0-0 ||| 3 668016 +a ||| of the challenges faced by ||| 0.2 0.0188479 1.49697e-06 1.12849e-14 2.718 ||| 0-0 ||| 5 668016 +a ||| of the challenges faced ||| 0.333333 0.0188479 1.49697e-06 2.14947e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| of the challenges ||| 0.00526316 0.0188479 1.49697e-06 3.39569e-08 2.718 ||| 0-0 ||| 190 668016 +a ||| of the committee ||| 0.00115473 0.0188479 1.49697e-06 1.40549e-07 2.718 ||| 0-0 ||| 866 668016 +a ||| of the countries with which we are ||| 1 0.0571592 1.49697e-06 3.09557e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| of the countries with which we ||| 1 0.0571592 1.49697e-06 2.04023e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| of the countries with which ||| 0.1 0.0571592 1.49697e-06 1.79719e-10 2.718 ||| 0-3 ||| 10 668016 +a ||| of the countries with ||| 0.0222222 0.0571592 1.49697e-06 2.11569e-08 2.718 ||| 0-3 ||| 45 668016 +a ||| of the country ' ||| 0.2 0.0188479 1.49697e-06 2.24482e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| of the country before the ||| 1 0.0004654 1.49697e-06 4.60381e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| of the country before ||| 1 0.0004654 1.49697e-06 7.49907e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| of the country ||| 0.00194553 0.0188479 4.49091e-06 6.53534e-07 2.718 ||| 0-0 ||| 1542 668016 +a ||| of the courses relate to ||| 1 0.229811 1.49697e-06 3.33437e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| of the day , ||| 0.00273224 0.0188479 1.49697e-06 5.54806e-08 2.718 ||| 0-0 ||| 366 668016 +a ||| of the day it should ||| 1 0.0188479 1.49697e-06 3.66587e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| of the day it ||| 0.0625 0.0188479 1.49697e-06 8.27324e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| of the day this would lead to ||| 1 0.229811 1.49697e-06 2.18646e-15 2.718 ||| 0-6 ||| 1 668016 +a ||| of the day ||| 0.00640205 0.0188479 7.48485e-06 4.65228e-07 2.718 ||| 0-0 ||| 781 668016 +a ||| of the detailed ||| 0.0833333 0.0188479 1.49697e-06 4.57601e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| of the duties ||| 0.0384615 0.0188479 1.49697e-06 3.72255e-08 2.718 ||| 0-0 ||| 26 668016 +a ||| of the elections ||| 0.00338983 0.0188479 1.49697e-06 6.53716e-08 2.718 ||| 0-0 ||| 295 668016 +a ||| of the experience acquired ||| 0.1 0.0188479 1.49697e-06 1.80687e-12 2.718 ||| 0-0 ||| 10 668016 +a ||| of the experience ||| 0.00970874 0.0188479 1.49697e-06 1.25477e-07 2.718 ||| 0-0 ||| 103 668016 +a ||| of the fact that they should ||| 1 0.0188479 1.49697e-06 1.29411e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| of the fact that they ||| 0.0666667 0.0188479 1.49697e-06 2.92057e-10 2.718 ||| 0-0 ||| 15 668016 +a ||| of the fact that ||| 0.000559597 0.0188479 1.49697e-06 8.94783e-08 2.718 ||| 0-0 ||| 1787 668016 +a ||| of the fact ||| 0.00849618 0.0188479 2.99394e-05 5.31925e-06 2.718 ||| 0-0 ||| 2354 668016 +a ||| of the favours being done ||| 1 0.222874 1.49697e-06 6.00714e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| of the favours being ||| 1 0.222874 1.49697e-06 1.31735e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| of the favours ||| 1 0.222874 1.49697e-06 4.62912e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| of the forest in ||| 0.333333 0.0587624 1.49697e-06 2.08547e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| of the forthcoming ||| 0.00420168 0.0188479 1.49697e-06 8.04434e-08 2.718 ||| 0-0 ||| 238 668016 +a ||| of the historical examples . ||| 1 0.0188479 1.49697e-06 4.09167e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| of the historical examples ||| 1 0.0188479 1.49697e-06 1.35083e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| of the historical ||| 0.111111 0.0188479 1.49697e-06 7.80827e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| of the lever ||| 0.5 0.0188479 1.49697e-06 2.54223e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| of the lives ||| 0.0285714 0.0188479 1.49697e-06 9.35177e-08 2.718 ||| 0-0 ||| 35 668016 +a ||| of the main reasons why ||| 0.0238095 0.0188479 1.49697e-06 4.5118e-15 2.718 ||| 0-0 ||| 42 668016 +a ||| of the main reasons ||| 0.0102041 0.0188479 1.49697e-06 1.83034e-11 2.718 ||| 0-0 ||| 98 668016 +a ||| of the main ||| 0.00103734 0.0188479 1.49697e-06 1.81043e-07 2.718 ||| 0-0 ||| 964 668016 +a ||| of the member ||| 0.166667 0.0188479 1.49697e-06 3.02525e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| of the merits of ||| 0.0454545 0.0188479 1.49697e-06 9.27953e-10 2.718 ||| 0-3 ||| 22 668016 +a ||| of the minutes ||| 0.00490196 0.0188479 1.49697e-06 2.94172e-08 2.718 ||| 0-0 ||| 204 668016 +a ||| of the month in the discussion on ||| 1 0.0782999 1.49697e-06 1.86871e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| of the opinion of the Committee on ||| 0.00343643 0.0188479 2.99394e-06 1.51855e-15 2.718 ||| 0-0 ||| 582 668016 +a ||| of the opinion of the Committee ||| 0.00324149 0.0188479 2.99394e-06 2.26954e-13 2.718 ||| 0-0 ||| 617 668016 +a ||| of the opinion of the ||| 0.00452489 0.0188479 4.49091e-06 1.48725e-09 2.718 ||| 0-0 ||| 663 668016 +a ||| of the opinion of ||| 0.00615385 0.0188479 5.98788e-06 2.42255e-08 2.718 ||| 0-0 ||| 650 668016 +a ||| of the opinion ||| 0.00212465 0.0188479 4.49091e-06 4.45616e-07 2.718 ||| 0-0 ||| 1412 668016 +a ||| of the past ||| 0.00133511 0.0188479 1.49697e-06 2.32614e-07 2.718 ||| 0-0 ||| 749 668016 +a ||| of the people ||| 0.000418235 0.0188479 1.49697e-06 1.59834e-06 2.718 ||| 0-0 ||| 2391 668016 +a ||| of the person ||| 0.00892857 0.0188479 1.49697e-06 2.33885e-07 2.718 ||| 0-0 ||| 112 668016 +a ||| of the picture ||| 0.0416667 0.0188479 1.49697e-06 6.2103e-08 2.718 ||| 0-0 ||| 24 668016 +a ||| of the point ||| 0.0285714 0.0188479 1.49697e-06 1.58853e-06 2.718 ||| 0-0 ||| 35 668016 +a ||| of the poll ||| 0.2 0.0188479 1.49697e-06 3.26858e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| of the presence ||| 0.0116279 0.0188479 1.49697e-06 6.99113e-08 2.718 ||| 0-0 ||| 86 668016 +a ||| of the protocol on ||| 0.0434783 0.0782999 1.49697e-06 9.62238e-10 2.718 ||| 0-3 ||| 23 668016 +a ||| of the provisions on the ||| 0.0909091 0.0782999 1.49697e-06 6.12499e-10 2.718 ||| 0-3 ||| 11 668016 +a ||| of the provisions on ||| 0.0322581 0.0782999 1.49697e-06 9.97688e-09 2.718 ||| 0-3 ||| 31 668016 +a ||| of the public ||| 0.0015674 0.0188479 1.49697e-06 2.93446e-07 2.718 ||| 0-0 ||| 638 668016 +a ||| of the question to ||| 0.222222 0.229811 2.99394e-06 9.67224e-07 2.718 ||| 0-3 ||| 9 668016 +a ||| of the reasons for ||| 0.0075188 0.0683377 1.49697e-06 1.24335e-08 2.718 ||| 0-3 ||| 133 668016 +a ||| of the reform ||| 0.00255102 0.0188479 1.49697e-06 7.4451e-08 2.718 ||| 0-0 ||| 392 668016 +a ||| of the regime ||| 0.00495049 0.0188479 1.49697e-06 5.10262e-08 2.718 ||| 0-0 ||| 202 668016 +a ||| of the relevant ||| 0.012987 0.0188479 1.49697e-06 1.95388e-07 2.718 ||| 0-0 ||| 77 668016 +a ||| of the report that ||| 0.00909091 0.0188479 1.49697e-06 1.25208e-08 2.718 ||| 0-0 ||| 110 668016 +a ||| of the report ||| 0.00021725 0.0188479 1.49697e-06 7.44328e-07 2.718 ||| 0-0 ||| 4603 668016 +a ||| of the resolution ||| 0.000736377 0.0188479 1.49697e-06 1.58708e-07 2.718 ||| 0-0 ||| 1358 668016 +a ||| of the revenue generated ||| 0.333333 0.0188479 1.49697e-06 2.60833e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| of the revenue ||| 0.030303 0.0188479 1.49697e-06 1.96115e-08 2.718 ||| 0-0 ||| 33 668016 +a ||| of the right to vote in ||| 0.166667 0.0188479 1.49697e-06 3.50357e-13 2.718 ||| 0-0 ||| 6 668016 +a ||| of the right to vote ||| 0.0666667 0.0188479 1.49697e-06 1.63684e-11 2.718 ||| 0-0 ||| 15 668016 +a ||| of the right to ||| 0.00250627 0.0188479 1.49697e-06 1.04058e-07 2.718 ||| 0-0 ||| 399 668016 +a ||| of the right ||| 0.00161812 0.0188479 1.49697e-06 1.17106e-06 2.718 ||| 0-0 ||| 618 668016 +a ||| of the road ||| 0.00826446 0.0188479 1.49697e-06 1.61976e-07 2.718 ||| 0-0 ||| 121 668016 +a ||| of the rules , the risk of ||| 1 0.0188479 1.49697e-06 9.82598e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| of the rules , the risk ||| 1 0.0188479 1.49697e-06 1.80744e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| of the rules , the ||| 0.25 0.0188479 1.49697e-06 1.54482e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| of the rules , ||| 0.0227273 0.0188479 1.49697e-06 2.51633e-08 2.718 ||| 0-0 ||| 44 668016 +a ||| of the rules ||| 0.00149477 0.0188479 1.49697e-06 2.11005e-07 2.718 ||| 0-0 ||| 669 668016 +a ||| of the running ||| 0.111111 0.0188479 1.49697e-06 1.38551e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| of the same ||| 0.0013947 0.0188479 1.49697e-06 1.46124e-06 2.718 ||| 0-0 ||| 717 668016 +a ||| of the scheme was to compensate people ||| 1 0.122807 1.49697e-06 2.58091e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| of the scheme was to compensate ||| 1 0.122807 1.49697e-06 2.93219e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| of the situation ||| 0.00109709 0.0188479 2.99394e-06 9.35177e-07 2.718 ||| 0-0 ||| 1823 668016 +a ||| of the switch ||| 0.2 0.0188479 1.49697e-06 2.28801e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| of the table ||| 0.0666667 0.0188479 1.49697e-06 1.22935e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| of the tasks of the ||| 0.05 0.0188479 1.49697e-06 9.81801e-11 2.718 ||| 0-0 ||| 20 668016 +a ||| of the tasks of ||| 0.0454545 0.0188479 1.49697e-06 1.59924e-09 2.718 ||| 0-0 ||| 22 668016 +a ||| of the tasks ||| 0.00757576 0.0188479 1.49697e-06 2.94172e-08 2.718 ||| 0-0 ||| 132 668016 +a ||| of the term ||| 0.00546448 0.0188479 1.49697e-06 1.98657e-07 2.718 ||| 0-0 ||| 183 668016 +a ||| of the things ||| 0.00248756 0.0188479 1.49697e-06 7.46326e-07 2.718 ||| 0-0 ||| 402 668016 +a ||| of the vessel to a ||| 1 0.229811 1.49697e-06 3.36848e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| of the vessel to ||| 0.166667 0.229811 1.49697e-06 7.59936e-09 2.718 ||| 0-3 ||| 6 668016 +a ||| of the way in ||| 0.00395257 0.0587624 1.49697e-06 4.32253e-07 2.718 ||| 0-3 ||| 253 668016 +a ||| of the way ||| 0.00143678 0.0188479 1.49697e-06 3.91431e-06 2.718 ||| 0-0 ||| 696 668016 +a ||| of the wishes ||| 0.025641 0.0188479 1.49697e-06 9.60599e-08 2.718 ||| 0-0 ||| 39 668016 +a ||| of the workforce are ||| 0.142857 0.0188479 1.49697e-06 1.79086e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| of the workforce ||| 0.00694444 0.0188479 1.49697e-06 1.18032e-08 2.718 ||| 0-0 ||| 144 668016 +a ||| of the world , ||| 0.00151057 0.0188479 1.49697e-06 4.93305e-08 2.718 ||| 0-0 ||| 662 668016 +a ||| of the world to ||| 0.0151515 0.229811 1.49697e-06 2.66328e-07 2.718 ||| 0-3 ||| 66 668016 +a ||| of the world with ||| 0.0344828 0.0571592 1.49697e-06 1.2693e-08 2.718 ||| 0-3 ||| 29 668016 +a ||| of the world ||| 0.000282646 0.0188479 1.49697e-06 4.13657e-07 2.718 ||| 0-0 ||| 3538 668016 +a ||| of the year , in ||| 0.0909091 0.0587624 1.49697e-06 5.96406e-09 2.718 ||| 0-4 ||| 11 668016 +a ||| of the ||| 0.00085953 0.0188479 0.000610764 0.00181588 2.718 ||| 0-0 ||| 474678 668016 +a ||| of their accession to ||| 0.0555556 0.229811 1.49697e-06 8.10103e-10 2.718 ||| 0-3 ||| 18 668016 +a ||| of their being ||| 0.0322581 0.0188479 1.49697e-06 9.75667e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| of their concerns ||| 0.0625 0.127284 1.49697e-06 1.48617e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| of their legislation ||| 0.0555556 0.0188479 1.49697e-06 2.75304e-09 2.718 ||| 0-0 ||| 18 668016 +a ||| of their public finances ||| 0.142857 0.0188479 1.49697e-06 2.9918e-14 2.718 ||| 0-0 ||| 7 668016 +a ||| of their public ||| 0.5 0.0188479 1.49697e-06 5.54037e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| of their responsibilities ||| 0.0185185 0.0188479 1.49697e-06 8.1597e-10 2.718 ||| 0-0 ||| 54 668016 +a ||| of their right to ||| 0.015873 0.229811 1.49697e-06 1.42353e-08 2.718 ||| 0-3 ||| 63 668016 +a ||| of their very sensitivity ||| 1 0.0188479 1.49697e-06 5.60676e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| of their very ||| 0.25 0.0188479 1.49697e-06 1.19293e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| of their vessels ||| 0.0909091 0.0188479 1.49697e-06 4.93696e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| of their ||| 0.00119868 0.0188479 1.79636e-05 3.42844e-05 2.718 ||| 0-0 ||| 10011 668016 +a ||| of them , not even a ||| 1 0.0495435 1.49697e-06 5.13584e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| of them , not even ||| 1 0.0495435 1.49697e-06 1.15866e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| of them ? why not mention all ||| 1 0.0188479 1.49697e-06 5.24131e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| of them ? why not mention ||| 1 0.0188479 1.49697e-06 1.10918e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| of them ? why not ||| 1 0.0188479 1.49697e-06 1.14113e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| of them ? why ||| 1 0.0188479 1.49697e-06 3.3424e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| of them ? ||| 0.0625 0.0188479 1.49697e-06 1.35594e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| of them again ||| 0.2 0.0700825 1.49697e-06 3.38083e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| of them at once ||| 1 0.204175 1.49697e-06 2.03096e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| of them at ||| 0.047619 0.204175 1.49697e-06 4.96325e-06 2.718 ||| 0-2 ||| 21 668016 +a ||| of them encompassed ||| 0.5 0.0188479 1.49697e-06 3.17365e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| of them for ||| 0.0625 0.0435928 1.49697e-06 2.92361e-06 2.718 ||| 0-0 0-2 ||| 16 668016 +a ||| of them in the ||| 0.0810811 0.0587624 4.49091e-06 5.3789e-07 2.718 ||| 0-2 ||| 37 668016 +a ||| of them in ||| 0.0236686 0.0587624 5.98788e-06 8.76159e-06 2.718 ||| 0-2 ||| 169 668016 +a ||| of them off ||| 0.5 0.0893962 1.49697e-06 1.11542e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| of them out of ||| 0.25 0.0188479 1.49697e-06 1.65217e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| of them reside ||| 1 0.0188479 1.49697e-06 1.11078e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| of them to ||| 0.057971 0.229811 5.98788e-06 5.10831e-05 2.718 ||| 0-2 ||| 69 668016 +a ||| of them ||| 0.00447732 0.0188479 3.44303e-05 7.93414e-05 2.718 ||| 0-0 ||| 5137 668016 +a ||| of these NGOs ||| 0.125 0.0188479 1.49697e-06 1.31906e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| of these citizens ||| 0.0384615 0.0188479 1.49697e-06 3.34367e-09 2.718 ||| 0-0 ||| 26 668016 +a ||| of these countries ||| 0.0011655 0.0188479 1.49697e-06 1.16476e-08 2.718 ||| 0-0 ||| 858 668016 +a ||| of these fats legally ||| 1 0.0188479 1.49697e-06 7.55853e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| of these fats ||| 1 0.0188479 1.49697e-06 6.74869e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| of these packages ||| 0.333333 0.0188479 1.49697e-06 1.53379e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| of these rights ||| 0.008 0.0188479 1.49697e-06 6.13824e-09 2.718 ||| 0-0 ||| 125 668016 +a ||| of these technologies to ||| 0.5 0.229811 1.49697e-06 1.63928e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| of these things ||| 0.00813008 0.0188479 1.49697e-06 1.26078e-08 2.718 ||| 0-0 ||| 123 668016 +a ||| of these ||| 0.000790826 0.0188479 1.79636e-05 3.06759e-05 2.718 ||| 0-0 ||| 15174 668016 +a ||| of things ||| 0.00322061 0.0188479 2.99394e-06 1.21568e-05 2.718 ||| 0-0 ||| 621 668016 +a ||| of this House to ||| 0.0102041 0.229811 2.99394e-06 3.07747e-08 2.718 ||| 0-3 ||| 196 668016 +a ||| of this House ||| 0.000570288 0.0188479 2.99394e-06 4.77987e-08 2.718 ||| 0-0 ||| 3507 668016 +a ||| of this I will use to ||| 1 0.229811 1.49697e-06 3.66105e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| of this Parliament ||| 0.000486381 0.0188479 1.49697e-06 1.09702e-07 2.718 ||| 0-0 ||| 2056 668016 +a ||| of this action ||| 0.0208333 0.0188479 1.49697e-06 5.77751e-08 2.718 ||| 0-0 ||| 48 668016 +a ||| of this association that ||| 1 0.0188479 1.49697e-06 5.07957e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| of this association ||| 0.166667 0.0188479 1.49697e-06 3.01967e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| of this fact ||| 0.0142857 0.0188479 1.49697e-06 5.59843e-07 2.718 ||| 0-0 ||| 70 668016 +a ||| of this in ||| 0.00621118 0.0587624 1.49697e-06 2.1105e-05 2.718 ||| 0-2 ||| 161 668016 +a ||| of this is as ||| 0.5 0.0243476 1.49697e-06 9.65763e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| of this is ||| 0.00141643 0.0188479 1.49697e-06 5.98986e-06 2.718 ||| 0-0 ||| 706 668016 +a ||| of this kind of system is the ||| 1 0.0188479 1.49697e-06 2.72087e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| of this kind of system is ||| 1 0.0188479 1.49697e-06 4.43197e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| of this kind of system ||| 0.5 0.0188479 1.49697e-06 1.41411e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| of this kind of ||| 0.00869565 0.0188479 1.49697e-06 5.0703e-09 2.718 ||| 0-0 ||| 115 668016 +a ||| of this kind ||| 0.0015625 0.0188479 4.49091e-06 9.32658e-08 2.718 ||| 0-0 ||| 1920 668016 +a ||| of this measure ||| 0.00675676 0.0188479 1.49697e-06 1.43148e-08 2.718 ||| 0-0 ||| 148 668016 +a ||| of this on ||| 0.03125 0.0782999 1.49697e-06 1.33255e-05 2.718 ||| 0-2 ||| 32 668016 +a ||| of this product ||| 0.037037 0.0188479 1.49697e-06 1.162e-08 2.718 ||| 0-0 ||| 27 668016 +a ||| of this protection to ||| 0.5 0.229811 1.49697e-06 1.24895e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| of this strategy ||| 0.00552486 0.0188479 1.49697e-06 1.12187e-08 2.718 ||| 0-0 ||| 181 668016 +a ||| of this to ||| 0.0434783 0.229811 1.49697e-06 0.00012305 2.718 ||| 0-2 ||| 23 668016 +a ||| of this ||| 0.000768771 0.0188479 5.38909e-05 0.000191119 2.718 ||| 0-0 ||| 46828 668016 +a ||| of those actions ||| 0.0714286 0.0188479 1.49697e-06 1.49496e-09 2.718 ||| 0-0 ||| 14 668016 +a ||| of those elections , ||| 0.25 0.018252 1.49697e-06 2.34537e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| of those elections ||| 0.0666667 0.018252 1.49697e-06 1.96669e-09 2.718 ||| 0-1 ||| 15 668016 +a ||| of those interests ||| 0.1 0.0188479 1.49697e-06 2.93638e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| of those involved ||| 0.0125 0.0188479 1.49697e-06 7.40627e-09 2.718 ||| 0-0 ||| 80 668016 +a ||| of those languages closer to ||| 1 0.229811 1.49697e-06 5.28694e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| of those of ||| 0.0192308 0.0188479 1.49697e-06 1.16436e-06 2.718 ||| 0-2 ||| 52 668016 +a ||| of those rights to ||| 1 0.229811 1.49697e-06 2.7593e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| of those ||| 0.00421053 0.01855 4.19152e-05 2.97234e-05 2.718 ||| 0-0 0-1 ||| 6650 668016 +a ||| of thought , ||| 0.0106383 0.0188479 1.49697e-06 2.93125e-07 2.718 ||| 0-0 ||| 94 668016 +a ||| of thought ||| 0.003367 0.0188479 1.49697e-06 2.45797e-06 2.718 ||| 0-0 ||| 297 668016 +a ||| of time , to ||| 0.166667 0.229811 1.49697e-06 3.7284e-06 2.718 ||| 0-3 ||| 6 668016 +a ||| of time in ||| 0.0222222 0.0587624 1.49697e-06 5.36233e-06 2.718 ||| 0-2 ||| 45 668016 +a ||| of time to ||| 0.0519481 0.229811 5.98788e-06 3.12642e-05 2.718 ||| 0-2 ||| 77 668016 +a ||| of time ||| 0.00187529 0.0188479 5.98788e-06 4.8559e-05 2.718 ||| 0-0 ||| 2133 668016 +a ||| of tobacco ||| 0.004 0.0188479 1.49697e-06 6.59601e-07 2.718 ||| 0-0 ||| 250 668016 +a ||| of today ||| 0.0021978 0.0188479 1.49697e-06 1.33488e-05 2.718 ||| 0-0 ||| 455 668016 +a ||| of trade are putting ||| 1 0.049485 1.49697e-06 1.4491e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| of trade ||| 0.000963391 0.0188479 1.49697e-06 2.57629e-06 2.718 ||| 0-0 ||| 1038 668016 +a ||| of trains - has been ||| 1 0.0188479 1.49697e-06 4.21911e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| of trains - has ||| 1 0.0188479 1.49697e-06 1.26351e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| of trains - ||| 1 0.0188479 1.49697e-06 2.45461e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| of trains ||| 0.0222222 0.0188479 1.49697e-06 6.50727e-08 2.718 ||| 0-0 ||| 45 668016 +a ||| of transport to ||| 0.0416667 0.229811 1.49697e-06 1.95961e-06 2.718 ||| 0-2 ||| 24 668016 +a ||| of transport ||| 0.000522466 0.0188479 1.49697e-06 3.04363e-06 2.718 ||| 0-0 ||| 1914 668016 +a ||| of trials in ||| 0.2 0.0587624 1.49697e-06 1.53517e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| of trying to achieve ||| 0.2 0.229811 1.49697e-06 5.01294e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| of trying to ||| 0.00543478 0.229811 1.49697e-06 2.19385e-06 2.718 ||| 0-2 ||| 184 668016 +a ||| of trying ||| 0.0166667 0.0188479 1.49697e-06 3.40744e-06 2.718 ||| 0-0 ||| 60 668016 +a ||| of turning into ||| 0.0769231 0.107578 1.49697e-06 1.65112e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| of uncertainty has been ||| 0.25 0.0188479 1.49697e-06 2.94878e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| of uncertainty has ||| 0.25 0.0188479 1.49697e-06 8.83081e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| of uncertainty ||| 0.00460829 0.0188479 1.49697e-06 1.71555e-07 2.718 ||| 0-0 ||| 217 668016 +a ||| of understanding ||| 0.00307692 0.0188479 1.49697e-06 9.99753e-07 2.718 ||| 0-0 ||| 325 668016 +a ||| of undertakings in ||| 0.111111 0.0587624 1.49697e-06 4.47487e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| of unsafe , ||| 0.333333 0.0188479 1.49697e-06 3.88011e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| of unsafe ||| 0.111111 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| of up to ||| 0.008 0.229811 2.99394e-06 6.49489e-05 2.718 ||| 0-2 ||| 250 668016 +a ||| of up ||| 0.0217391 0.0191778 1.49697e-06 3.63106e-05 2.718 ||| 0-0 0-1 ||| 46 668016 +a ||| of urgency , for ||| 0.166667 0.0683377 1.49697e-06 6.18738e-09 2.718 ||| 0-3 ||| 6 668016 +a ||| of urgency , to ||| 0.027027 0.229811 1.49697e-06 5.88205e-08 2.718 ||| 0-3 ||| 37 668016 +a ||| of urgency , ||| 0.00414938 0.0188479 1.49697e-06 9.1359e-08 2.718 ||| 0-0 ||| 241 668016 +a ||| of urgency to ||| 0.030303 0.229811 1.49697e-06 4.93234e-07 2.718 ||| 0-2 ||| 33 668016 +a ||| of urgency ||| 0.00251572 0.0188479 2.99394e-06 7.66083e-07 2.718 ||| 0-0 ||| 795 668016 +a ||| of us from ||| 0.030303 0.0435582 1.49697e-06 1.12797e-06 2.718 ||| 0-2 ||| 33 668016 +a ||| of us here ||| 0.00469484 0.0188479 1.49697e-06 1.72872e-07 2.718 ||| 0-0 ||| 213 668016 +a ||| of us in ||| 0.00817439 0.0587624 4.49091e-06 9.4142e-06 2.718 ||| 0-2 ||| 367 668016 +a ||| of us must , to ||| 1 0.229811 1.49697e-06 1.0117e-08 2.718 ||| 0-4 ||| 1 668016 +a ||| of us to ||| 0.0504202 0.229811 8.98182e-06 5.4888e-05 2.718 ||| 0-2 ||| 119 668016 +a ||| of us who were ||| 0.0555556 0.0188479 1.49697e-06 1.34698e-10 2.718 ||| 0-0 ||| 18 668016 +a ||| of us who ||| 0.00224215 0.0188479 1.49697e-06 7.51915e-08 2.718 ||| 0-0 ||| 446 668016 +a ||| of us ||| 0.00436847 0.0188479 3.44303e-05 8.52512e-05 2.718 ||| 0-0 ||| 5265 668016 +a ||| of use to ||| 0.0277778 0.229811 1.49697e-06 9.25909e-06 2.718 ||| 0-2 ||| 36 668016 +a ||| of use ||| 0.00431034 0.0188479 1.49697e-06 1.43811e-05 2.718 ||| 0-0 ||| 232 668016 +a ||| of using ||| 0.00148368 0.0188479 1.49697e-06 2.29825e-06 2.718 ||| 0-0 ||| 674 668016 +a ||| of various ||| 0.00158228 0.0188479 1.49697e-06 4.56692e-06 2.718 ||| 0-0 ||| 632 668016 +a ||| of view , partly with ||| 1 0.0571592 1.49697e-06 3.30464e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| of view , ||| 0.00126743 0.0188479 1.49697e-06 3.18628e-06 2.718 ||| 0-0 ||| 789 668016 +a ||| of view of ||| 0.00406504 0.0188479 5.98788e-06 1.45251e-06 2.718 ||| 0-0 ||| 984 668016 +a ||| of view ||| 0.00220751 0.0188479 1.49697e-05 2.67183e-05 2.718 ||| 0-0 ||| 4530 668016 +a ||| of views than is currently the ||| 1 0.0242272 1.49697e-06 1.11591e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| of views than is currently ||| 1 0.0242272 1.49697e-06 1.81768e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| of views than is ||| 1 0.0242272 1.49697e-06 1.74107e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| of views than ||| 1 0.0242272 1.49697e-06 5.55524e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| of violence to ||| 0.0434783 0.229811 1.49697e-06 4.32294e-07 2.718 ||| 0-2 ||| 23 668016 +a ||| of vote to make ||| 0.333333 0.229811 1.49697e-06 5.20573e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| of vote to ||| 0.0285714 0.229811 1.49697e-06 2.99559e-06 2.718 ||| 0-2 ||| 35 668016 +a ||| of vote ||| 0.000675676 0.0188479 1.49697e-06 4.6527e-06 2.718 ||| 0-0 ||| 1480 668016 +a ||| of voting ||| 0.00416667 0.0188479 1.49697e-06 1.1506e-06 2.718 ||| 0-0 ||| 240 668016 +a ||| of wanted persons ||| 0.142857 0.0188479 1.49697e-06 8.33241e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| of wanted ||| 0.285714 0.0188479 2.99394e-06 1.61794e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| of wanting to ||| 0.0151515 0.229811 1.49697e-06 2.81848e-07 2.718 ||| 0-2 ||| 66 668016 +a ||| of war ||| 0.00124844 0.0188479 1.49697e-06 1.09736e-06 2.718 ||| 0-0 ||| 801 668016 +a ||| of waste ||| 0.00111235 0.0188479 1.49697e-06 2.06458e-06 2.718 ||| 0-0 ||| 899 668016 +a ||| of welcoming the members of ||| 1 0.0188479 1.49697e-06 5.82438e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| of welcoming ||| 0.0232558 0.0653513 1.49697e-06 3.15898e-06 2.718 ||| 0-0 0-1 ||| 43 668016 +a ||| of what has been done ||| 0.0434783 0.0188479 1.49697e-06 3.25288e-13 2.718 ||| 0-0 ||| 23 668016 +a ||| of what has been ||| 0.00617284 0.0188479 1.49697e-06 7.13351e-10 2.718 ||| 0-0 ||| 162 668016 +a ||| of what has ||| 0.00671141 0.0188479 1.49697e-06 2.13629e-07 2.718 ||| 0-0 ||| 149 668016 +a ||| of what is causing ||| 0.5 0.0188479 1.49697e-06 3.83708e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| of what is meant ||| 0.0454545 0.0188479 1.49697e-06 1.03406e-10 2.718 ||| 0-0 ||| 22 668016 +a ||| of what is required to satisfy demand ||| 1 0.116324 1.49697e-06 1.96238e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| of what is required to satisfy ||| 1 0.116324 1.49697e-06 3.66116e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| of what is ||| 0.00489596 0.0188479 5.98788e-06 1.30071e-06 2.718 ||| 0-0 ||| 817 668016 +a ||| of what we give ||| 0.25 0.0188479 1.49697e-06 2.8551e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| of what we ||| 0.00485437 0.0188479 1.49697e-06 4.71139e-07 2.718 ||| 0-0 ||| 206 668016 +a ||| of what ||| 0.00223797 0.0188479 1.79636e-05 4.15016e-05 2.718 ||| 0-0 ||| 5362 668016 +a ||| of whether you succeed , when ||| 1 0.0188479 1.49697e-06 5.69833e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| of whether you succeed , ||| 1 0.0188479 1.49697e-06 1.13989e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| of whether you succeed ||| 1 0.0188479 1.49697e-06 9.55848e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| of whether you ||| 0.142857 0.0188479 1.49697e-06 2.50879e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| of whether ||| 0.000726744 0.0188479 1.49697e-06 7.77027e-06 2.718 ||| 0-0 ||| 1376 668016 +a ||| of which are ||| 0.00246914 0.0188479 1.49697e-06 3.81226e-06 2.718 ||| 0-0 ||| 405 668016 +a ||| of which concerns ||| 0.0714286 0.0730661 1.49697e-06 5.92591e-07 2.718 ||| 0-0 0-2 ||| 14 668016 +a ||| of which is of ||| 0.25 0.0188479 1.49697e-06 4.28099e-07 2.718 ||| 0-3 ||| 4 668016 +a ||| of which is to ||| 0.0512821 0.229811 8.98182e-06 5.07003e-06 2.718 ||| 0-3 ||| 117 668016 +a ||| of which is ||| 0.00294985 0.0188479 2.99394e-06 7.87469e-06 2.718 ||| 0-0 ||| 678 668016 +a ||| of which one ||| 0.0666667 0.0188479 1.49697e-06 1.04724e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| of which shows that mechanisms do ||| 1 0.0188479 1.49697e-06 3.93943e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| of which shows that mechanisms ||| 1 0.0188479 1.49697e-06 1.14675e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| of which shows that ||| 1 0.0188479 1.49697e-06 1.68639e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| of which shows ||| 1 0.0188479 1.49697e-06 1.00252e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| of which the ||| 0.00283286 0.0188479 1.49697e-06 1.54252e-05 2.718 ||| 0-0 ||| 353 668016 +a ||| of which to ||| 0.111111 0.229811 1.49697e-06 0.000161769 2.718 ||| 0-2 ||| 9 668016 +a ||| of which were ||| 0.011236 0.0188479 1.49697e-06 4.50103e-07 2.718 ||| 0-0 ||| 89 668016 +a ||| of which would be ||| 0.0322581 0.0188479 1.49697e-06 2.67232e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| of which would ||| 0.05 0.0188479 1.49697e-06 1.47456e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| of which ||| 0.00451581 0.0188479 4.04182e-05 0.000251258 2.718 ||| 0-0 ||| 5979 668016 +a ||| of whom I am very fond and ||| 0.5 0.0188479 1.49697e-06 1.39651e-21 2.718 ||| 0-0 ||| 2 668016 +a ||| of whom I am very fond ||| 0.5 0.0188479 1.49697e-06 1.1149e-19 2.718 ||| 0-0 ||| 2 668016 +a ||| of whom I am very ||| 0.333333 0.0188479 1.49697e-06 6.19388e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| of whom I am ||| 0.1 0.0188479 1.49697e-06 1.78011e-11 2.718 ||| 0-0 ||| 10 668016 +a ||| of whom I ||| 0.125 0.0188479 1.49697e-06 1.39343e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| of whom will take to ||| 1 0.229811 1.49697e-06 1.76657e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| of whom ||| 0.00134409 0.0188479 1.49697e-06 1.96993e-06 2.718 ||| 0-0 ||| 744 668016 +a ||| of why ||| 0.00628931 0.0188479 1.49697e-06 7.2911e-06 2.718 ||| 0-0 ||| 159 668016 +a ||| of wishing to ||| 0.142857 0.229811 1.49697e-06 2.81848e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| of women achieve high-level positions ||| 1 0.0188479 1.49697e-06 9.77008e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| of women achieve high-level ||| 1 0.0188479 1.49697e-06 2.89056e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| of women achieve ||| 1 0.0188479 1.49697e-06 8.02932e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| of women ||| 0.000519886 0.0188479 2.99394e-06 3.51393e-06 2.718 ||| 0-0 ||| 3847 668016 +a ||| of women ’ ||| 0.333333 0.0188479 1.49697e-06 6.12161e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| of work , have ||| 1 0.0188479 1.49697e-06 2.67042e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| of work , ||| 0.00294118 0.0188479 1.49697e-06 2.23283e-06 2.718 ||| 0-0 ||| 340 668016 +a ||| of work to ||| 0.00680272 0.229811 1.49697e-06 1.20547e-05 2.718 ||| 0-2 ||| 147 668016 +a ||| of work ||| 0.00158416 0.0188479 5.98788e-06 1.87232e-05 2.718 ||| 0-0 ||| 2525 668016 +a ||| of working conditions ||| 0.0169492 0.0188479 1.49697e-06 6.72994e-10 2.718 ||| 0-0 ||| 59 668016 +a ||| of working people ||| 0.0107527 0.0188479 1.49697e-06 4.95706e-09 2.718 ||| 0-0 ||| 93 668016 +a ||| of working ||| 0.00501672 0.0188479 4.49091e-06 5.63175e-06 2.718 ||| 0-0 ||| 598 668016 +a ||| of world ||| 0.0113636 0.0188479 1.49697e-06 6.73798e-06 2.718 ||| 0-0 ||| 88 668016 +a ||| of xenophobia ||| 0.0138889 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-0 ||| 72 668016 +a ||| of years and at ||| 1 0.102881 1.49697e-06 6.0764e-10 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| of yet ||| 0.0526316 0.0188479 1.49697e-06 7.82351e-06 2.718 ||| 0-0 ||| 19 668016 +a ||| of you for ||| 0.0588235 0.0683377 4.49091e-06 6.46783e-06 2.718 ||| 0-2 ||| 51 668016 +a ||| of you to ||| 0.0638298 0.229811 4.49091e-06 6.14867e-05 2.718 ||| 0-2 ||| 47 668016 +a ||| of you ||| 0.00293399 0.0188479 8.98182e-06 9.55001e-05 2.718 ||| 0-0 ||| 2045 668016 +a ||| of your government , is ||| 1 0.0188479 1.49697e-06 2.26039e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| of your government , ||| 0.125 0.0188479 1.49697e-06 7.21222e-11 2.718 ||| 0-0 ||| 8 668016 +a ||| of your government ||| 0.0416667 0.0188479 1.49697e-06 6.04774e-10 2.718 ||| 0-0 ||| 24 668016 +a ||| of your time to ||| 0.25 0.229811 1.49697e-06 8.00051e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| of your ||| 0.000391083 0.0188479 1.49697e-06 7.56914e-06 2.718 ||| 0-0 ||| 2557 668016 +a ||| of yours ||| 0.0204082 0.0188479 1.49697e-06 2.24797e-07 2.718 ||| 0-0 ||| 49 668016 +a ||| of ||| 0.0200122 0.0188479 0.0427116 0.0295785 2.718 ||| 0-0 ||| 1.42573e+06 668016 +a ||| off , and ||| 0.0588235 0.0893962 1.49697e-06 1.14259e-06 2.718 ||| 0-0 ||| 17 668016 +a ||| off , ||| 0.0134228 0.0893962 2.99394e-06 9.12179e-05 2.718 ||| 0-0 ||| 149 668016 +a ||| off . ||| 0.00666667 0.0893962 1.49697e-06 2.31688e-06 2.718 ||| 0-0 ||| 150 668016 +a ||| off again ||| 0.5 0.0700825 2.99394e-06 9.43589e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| off against one another ||| 0.5 0.05146 1.49697e-06 1.06319e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| off against one ||| 0.333333 0.05146 1.49697e-06 4.40973e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| off against ||| 0.162162 0.05146 8.98182e-06 1.058e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| off and for ||| 1 0.0683377 1.49697e-06 1.87855e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| off as ||| 0.0208333 0.0243476 1.49697e-06 3.57037e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| off at ||| 0.125 0.146785 1.49697e-06 2.60337e-05 2.718 ||| 0-0 0-1 ||| 8 668016 +a ||| off by ||| 0.0408163 0.0337966 2.99394e-06 3.34859e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| off for ||| 0.0465116 0.0683377 2.99394e-06 1.49973e-05 2.718 ||| 0-1 ||| 43 668016 +a ||| off from one another ||| 1 0.0435582 1.49697e-06 2.94428e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| off from one ||| 0.5 0.0435582 1.49697e-06 1.22119e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| off from the ||| 0.0344828 0.0435582 1.49697e-06 1.79873e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| off from ||| 0.0327869 0.0435582 2.99394e-06 2.92991e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| off if there are several different kinds ||| 1 0.0893962 1.49697e-06 2.03653e-23 2.718 ||| 0-0 ||| 1 668016 +a ||| off if there are several different ||| 1 0.0893962 1.49697e-06 4.28744e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| off if there are several ||| 1 0.0893962 1.49697e-06 1.94706e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| off if there are ||| 1 0.0893962 1.49697e-06 2.97262e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| off if there ||| 1 0.0893962 1.49697e-06 1.95919e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| off if ||| 0.333333 0.0893962 1.49697e-06 6.3915e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| off in good ||| 0.5 0.0587624 1.49697e-06 1.26816e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| off in ||| 0.0652174 0.0587624 4.49091e-06 2.44536e-05 2.718 ||| 0-1 ||| 46 668016 +a ||| off its ||| 0.0384615 0.0893962 1.49697e-06 1.08975e-06 2.718 ||| 0-0 ||| 26 668016 +a ||| off of ||| 0.0833333 0.054122 1.49697e-06 2.26246e-05 2.718 ||| 0-0 0-1 ||| 12 668016 +a ||| off on the ||| 0.125 0.0782999 1.49697e-06 9.47876e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| off on to ||| 1 0.154056 2.99394e-06 5.40858e-06 2.718 ||| 0-1 0-2 ||| 2 668016 +a ||| off on ||| 0.04 0.0782999 1.49697e-06 1.54398e-05 2.718 ||| 0-1 ||| 25 668016 +a ||| off once ||| 0.166667 0.0893962 1.49697e-06 3.12997e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| off onto ||| 0.166667 0.207143 1.49697e-06 9.69474e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| off the bat ||| 1 0.0893962 1.49697e-06 5.16544e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| off the hook ||| 0.0454545 0.0893962 1.49697e-06 1.50267e-10 2.718 ||| 0-0 ||| 22 668016 +a ||| off the mark in ||| 0.5 0.0587624 1.49697e-06 8.15178e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| off the ||| 0.0122699 0.0893962 1.49697e-05 4.69586e-05 2.718 ||| 0-0 ||| 815 668016 +a ||| off to a ||| 0.03125 0.229811 1.49697e-06 6.31965e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| off to ||| 0.180723 0.229811 2.24546e-05 0.000142573 2.718 ||| 0-1 ||| 83 668016 +a ||| off ||| 0.0721016 0.0893962 0.000263467 0.0007649 2.718 ||| 0-0 ||| 2441 668016 +a ||| offended ||| 0.0153846 0.0183486 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 65 668016 +a ||| offenders ||| 0.00380228 0.0126263 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 263 668016 +a ||| offer its ||| 0.0169492 0.0034208 1.49697e-06 2.73542e-08 2.718 ||| 0-0 ||| 59 668016 +a ||| offer on ||| 0.0714286 0.0782999 1.49697e-06 4.33983e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| offer those people who really want to ||| 1 0.229811 1.49697e-06 5.10155e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| offer to ||| 0.00645161 0.229811 1.49697e-06 4.00745e-05 2.718 ||| 0-1 ||| 155 668016 +a ||| offer young ||| 1 0.0034208 1.49697e-06 1.22304e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| offer ||| 0.00234192 0.0034208 1.79636e-05 1.92e-05 2.718 ||| 0-0 ||| 5124 668016 +a ||| offered at fundamentally ||| 1 0.204175 1.49697e-06 1.43612e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| offered at ||| 0.0666667 0.204175 1.49697e-06 1.48054e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| offered for ||| 0.0833333 0.0683377 2.99394e-06 1.60291e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| offered to consumers ||| 0.0666667 0.229811 1.49697e-06 5.69906e-10 2.718 ||| 0-1 ||| 15 668016 +a ||| offered to ||| 0.0247934 0.229811 8.98182e-06 1.52381e-05 2.718 ||| 0-1 ||| 242 668016 +a ||| offered ||| 0.00579151 0.0308917 1.34727e-05 8.85e-05 2.718 ||| 0-0 ||| 1554 668016 +a ||| offering increased ||| 0.142857 0.103522 1.49697e-06 8.80187e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| offering my ||| 0.05 0.103522 1.49697e-06 1.13893e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| offering to provide us with ||| 1 0.229811 1.49697e-06 4.12501e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| offering to provide us ||| 1 0.229811 1.49697e-06 6.45087e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| offering to provide ||| 0.5 0.229811 1.49697e-06 2.23818e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| offering to ||| 0.0833333 0.229811 2.99394e-06 7.56651e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| offering ||| 0.00957702 0.103522 1.79636e-05 0.0001771 2.718 ||| 0-0 ||| 1253 668016 +a ||| office . so much for ||| 1 0.0683377 1.49697e-06 2.61642e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| office as ||| 0.0526316 0.0243476 2.99394e-06 9.0268e-07 2.718 ||| 0-1 ||| 38 668016 +a ||| office for ||| 0.0147059 0.0683377 1.49697e-06 3.79171e-06 2.718 ||| 0-1 ||| 68 668016 +a ||| office of ||| 0.00625 0.0188479 1.49697e-06 3.04363e-06 2.718 ||| 0-1 ||| 160 668016 +a ||| officially supported ||| 0.0526316 0.0120717 1.49697e-06 5.5185e-10 2.718 ||| 0-1 ||| 19 668016 +a ||| officially to ||| 0.166667 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| officials ||| 0.000542888 0.0013643 2.99394e-06 4.6e-06 2.718 ||| 0-0 ||| 3684 668016 +a ||| often , ||| 0.00218341 0.288159 1.49697e-06 0.000718402 2.718 ||| 0-0 ||| 458 668016 +a ||| often at ||| 0.0227273 0.204175 1.49697e-06 4.47225e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| often attends ||| 1 0.31579 1.49697e-06 2.87766e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| often bear the ||| 0.25 0.288159 1.49697e-06 5.53636e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| often bear ||| 0.142857 0.288159 1.49697e-06 9.01808e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| often drop ||| 1 0.288159 1.49697e-06 9.51808e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| often highlighted ||| 0.5 0.288159 1.49697e-06 1.21687e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| often in turmoil ||| 0.5 0.0587624 1.49697e-06 5.52639e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| often in ||| 0.00574713 0.0587624 1.49697e-06 7.89484e-06 2.718 ||| 0-1 ||| 174 668016 +a ||| often inspired by the United States ||| 1 0.0337966 1.49697e-06 1.93832e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| often inspired by the United ||| 1 0.0337966 1.49697e-06 4.06186e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| often inspired by the ||| 0.5 0.0337966 1.49697e-06 3.31851e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| often inspired by ||| 0.5 0.0337966 1.49697e-06 5.40547e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| often involved . ||| 1 0.288159 1.49697e-06 6.30981e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| often involved ||| 0.25 0.288159 1.49697e-06 2.08313e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| often left ||| 0.0454545 0.288159 1.49697e-06 1.13795e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| often shows towards ||| 0.5 0.155507 1.49697e-06 1.76821e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| often this ||| 0.0714286 0.288159 1.49697e-06 3.89241e-05 2.718 ||| 0-0 ||| 14 668016 +a ||| often to ||| 0.025641 0.229811 2.99394e-06 4.60296e-05 2.718 ||| 0-1 ||| 78 668016 +a ||| often told ||| 0.25 0.288159 1.49697e-06 3.57832e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| often ||| 0.0025413 0.288159 4.7903e-05 0.0060241 2.718 ||| 0-0 ||| 12592 668016 +a ||| oil will ||| 0.142857 0.0561595 1.49697e-06 4.91521e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| old , to ||| 0.2 0.229811 1.49697e-06 3.21668e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| old lady ||| 0.111111 0.0432692 1.49697e-06 6.314e-10 2.718 ||| 0-1 ||| 9 668016 +a ||| olive growers in ||| 1 0.0587624 1.49697e-06 1.46601e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| on ' ||| 0.00319489 0.0782999 1.49697e-06 0.000130305 2.718 ||| 0-0 ||| 313 668016 +a ||| on , although ||| 0.2 0.0782999 1.49697e-06 4.84973e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| on , and I quote , ||| 1 0.0782999 1.49697e-06 2.13195e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| on , and I quote , ‘ ||| 1 0.0782999 1.49697e-06 2.39417e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| on , and I quote ||| 1 0.0782999 1.49697e-06 1.78772e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on , and I ||| 0.2 0.0782999 1.49697e-06 4.00835e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| on , and ||| 0.00990099 0.0782999 1.49697e-06 5.66672e-05 2.718 ||| 0-0 ||| 101 668016 +a ||| on , in ||| 0.0714286 0.0685311 1.49697e-06 0.000271813 2.718 ||| 0-0 0-2 ||| 14 668016 +a ||| on , missing ||| 0.5 0.0782999 1.49697e-06 6.51456e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| on , now , to ||| 1 0.229811 1.49697e-06 6.86642e-08 2.718 ||| 0-4 ||| 1 668016 +a ||| on , to ||| 0.0588235 0.229811 1.49697e-06 0.000279517 2.718 ||| 0-2 ||| 17 668016 +a ||| on , ||| 0.0298643 0.0782999 4.94e-05 0.004524 2.718 ||| 0-0 ||| 1105 668016 +a ||| on - ||| 0.0322581 0.0782999 2.99394e-06 0.000143097 2.718 ||| 0-0 ||| 62 668016 +a ||| on . discrimination may ||| 1 0.0782999 1.49697e-06 1.08471e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| on . discrimination ||| 1 0.0782999 1.49697e-06 1.44783e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| on . ||| 0.002457 0.0782999 2.99394e-06 0.000114907 2.718 ||| 0-0 ||| 814 668016 +a ||| on 2 , ||| 0.5 0.0782999 1.49697e-06 1.66031e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| on 2 ||| 0.0021978 0.0782999 1.49697e-06 1.39224e-06 2.718 ||| 0-0 ||| 455 668016 +a ||| on 26 ||| 0.00280899 0.0782999 1.49697e-06 1.89678e-07 2.718 ||| 0-0 ||| 356 668016 +a ||| on 9 ||| 0.00252525 0.0782999 1.49697e-06 4.24879e-07 2.718 ||| 0-0 ||| 396 668016 +a ||| on : ||| 0.00478469 0.0782999 1.49697e-06 1.27767e-05 2.718 ||| 0-0 ||| 209 668016 +a ||| on Agriculture ||| 0.000549149 0.0782999 1.49697e-06 5.19718e-07 2.718 ||| 0-0 ||| 1821 668016 +a ||| on BSE were ||| 1 0.0782999 1.49697e-06 7.61128e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| on BSE ||| 0.0217391 0.0782999 2.99394e-06 4.24879e-07 2.718 ||| 0-0 ||| 92 668016 +a ||| on Britain ||| 0.166667 0.0782999 1.49697e-06 4.24879e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| on Budgets ||| 0.000389105 0.0782999 1.49697e-06 3.8315e-07 2.718 ||| 0-0 ||| 2570 668016 +a ||| on China ||| 0.00480769 0.0782999 1.49697e-06 9.97706e-07 2.718 ||| 0-0 ||| 208 668016 +a ||| on EU-Serbia relations ||| 1 0.0782999 1.49697e-06 8.23961e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| on EU-Serbia ||| 1 0.0782999 1.49697e-06 1.51742e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on Ethiopia , ||| 0.5 0.0782999 1.49697e-06 4.9764e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| on Ethiopia ||| 0.0588235 0.0782999 1.49697e-06 4.17292e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| on Europe ||| 0.00821918 0.0782999 4.49091e-06 1.91954e-05 2.718 ||| 0-0 ||| 365 668016 +a ||| on European ||| 0.00454545 0.0782999 1.49697e-06 0.000126853 2.718 ||| 0-0 ||| 220 668016 +a ||| on Fisheries ||| 0.000895255 0.0782999 1.49697e-06 2.46581e-07 2.718 ||| 0-0 ||| 1117 668016 +a ||| on Internal Market and Consumer Protection . ||| 1 0.0782999 1.49697e-06 4.62575e-24 2.718 ||| 0-0 ||| 1 668016 +a ||| on Internal Market and Consumer Protection ||| 0.0111111 0.0782999 1.49697e-06 1.52716e-21 2.718 ||| 0-0 ||| 90 668016 +a ||| on Internal Market and Consumer ||| 1 0.0782999 1.49697e-06 4.28976e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| on Internal Market and ||| 0.0106383 0.0782999 1.49697e-06 3.93556e-13 2.718 ||| 0-0 ||| 94 668016 +a ||| on Internal Market ||| 0.0102041 0.0782999 1.49697e-06 3.14194e-11 2.718 ||| 0-0 ||| 98 668016 +a ||| on Internal ||| 0.0103093 0.0782999 1.49697e-06 1.05082e-06 2.718 ||| 0-0 ||| 97 668016 +a ||| on Iran ||| 0.00714286 0.0782999 1.49697e-06 3.67975e-07 2.718 ||| 0-0 ||| 140 668016 +a ||| on Japan 's door ||| 1 0.0782999 1.49697e-06 1.40725e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| on Japan 's ||| 1 0.0782999 1.49697e-06 3.10652e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| on Japan ||| 0.047619 0.0782999 1.49697e-06 1.63123e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| on Mr Papoutsis ||| 1 0.0782999 1.49697e-06 9.90574e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| on Mr ||| 0.00699301 0.0782999 1.49697e-06 2.47644e-05 2.718 ||| 0-0 ||| 143 668016 +a ||| on Regional ||| 0.0526316 0.0782999 1.49697e-06 4.93163e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| on Women ||| 0.0147059 0.0782999 1.49697e-06 4.93163e-07 2.718 ||| 0-0 ||| 68 668016 +a ||| on a Europe-wide level , and at ||| 1 0.0782999 1.49697e-06 9.89679e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| on a Europe-wide level , and ||| 1 0.0782999 1.49697e-06 2.36347e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| on a Europe-wide level , ||| 1 0.0782999 1.49697e-06 1.88687e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| on a Europe-wide level ||| 0.25 0.0782999 1.49697e-06 1.58221e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| on a Europe-wide ||| 0.1 0.0782999 1.49697e-06 1.84968e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| on a Thursday ||| 0.0243902 0.0782999 1.49697e-06 6.05349e-09 2.718 ||| 0-0 ||| 41 668016 +a ||| on a basis of ||| 0.0212766 0.0782999 1.49697e-06 5.42819e-08 2.718 ||| 0-0 ||| 47 668016 +a ||| on a basis ||| 0.0289855 0.0782999 2.99394e-06 9.9849e-07 2.718 ||| 0-0 ||| 69 668016 +a ||| on a common ||| 0.0625 0.0782999 1.49697e-06 3.88432e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| on a course ||| 0.0714286 0.0782999 1.49697e-06 2.12158e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| on a day-to-day basis at the ||| 1 0.0782999 1.49697e-06 6.4171e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| on a day-to-day basis at ||| 1 0.0782999 1.49697e-06 1.04527e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| on a day-to-day basis ||| 0.0178571 0.0782999 1.49697e-06 2.49623e-12 2.718 ||| 0-0 ||| 56 668016 +a ||| on a day-to-day ||| 0.05 0.0782999 1.49697e-06 4.20381e-09 2.718 ||| 0-0 ||| 20 668016 +a ||| on a final note , ||| 0.0294118 0.0782999 1.49697e-06 1.59736e-12 2.718 ||| 0-0 ||| 34 668016 +a ||| on a final note ||| 0.0238095 0.0782999 1.49697e-06 1.33946e-11 2.718 ||| 0-0 ||| 42 668016 +a ||| on a final ||| 0.05 0.0782999 1.49697e-06 1.283e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| on a holding ||| 0.333333 0.0782999 1.49697e-06 1.0106e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| on a matter ||| 0.00833333 0.0782999 1.49697e-06 1.74458e-06 2.718 ||| 0-0 ||| 120 668016 +a ||| on a more ||| 0.010101 0.0782999 1.49697e-06 3.8401e-06 2.718 ||| 0-0 ||| 99 668016 +a ||| on a new beginning ||| 1 0.0782999 1.49697e-06 4.09055e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on a new ||| 0.00284091 0.0782999 1.49697e-06 1.00505e-06 2.718 ||| 0-0 ||| 352 668016 +a ||| on a number of ||| 0.00149925 0.0782999 1.49697e-06 4.52319e-08 2.718 ||| 0-0 ||| 667 668016 +a ||| on a number ||| 0.00132802 0.0782999 1.49697e-06 8.32019e-07 2.718 ||| 0-0 ||| 753 668016 +a ||| on a par with ||| 0.00854701 0.0782999 1.49697e-06 7.31171e-11 2.718 ||| 0-0 ||| 117 668016 +a ||| on a par ||| 0.0155039 0.0782999 2.99394e-06 1.14344e-08 2.718 ||| 0-0 ||| 129 668016 +a ||| on a particularly ||| 1 0.0782999 1.49697e-06 3.00152e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| on a plate ||| 0.0666667 0.0782999 1.49697e-06 4.20381e-09 2.718 ||| 0-0 ||| 15 668016 +a ||| on a programme ||| 0.025641 0.0782999 1.49697e-06 2.14226e-07 2.718 ||| 0-0 ||| 39 668016 +a ||| on a regular basis ||| 0.00534759 0.0782999 1.49697e-06 1.75734e-11 2.718 ||| 0-0 ||| 187 668016 +a ||| on a regular ||| 0.04 0.0782999 1.49697e-06 2.95949e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| on a representation ||| 1 0.0782999 1.49697e-06 2.00102e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on a shopping spree ||| 0.166667 0.0782999 1.49697e-06 3.6321e-15 2.718 ||| 0-0 ||| 6 668016 +a ||| on a shopping ||| 0.166667 0.0782999 1.49697e-06 9.08024e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| on a sound footing in the ||| 1 0.0587624 1.49697e-06 1.40361e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| on a sound footing in ||| 1 0.0587624 1.49697e-06 2.28631e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| on a sufficient scale ||| 1 0.0782999 1.49697e-06 4.79709e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| on a sufficient ||| 1 0.0782999 1.49697e-06 8.17222e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on a very ||| 0.016129 0.0782999 1.49697e-06 5.85087e-06 2.718 ||| 0-0 ||| 62 668016 +a ||| on a visit last month to ||| 1 0.154056 1.49697e-06 4.9336e-17 2.718 ||| 0-0 0-5 ||| 1 668016 +a ||| on a ||| 0.0367169 0.0782999 0.000794891 0.00168153 2.718 ||| 0-0 ||| 14462 668016 +a ||| on about ||| 0.0185185 0.065468 1.49697e-06 0.000191169 2.718 ||| 0-0 0-1 ||| 54 668016 +a ||| on accession ||| 0.0119048 0.0782999 1.49697e-06 1.39224e-06 2.718 ||| 0-0 ||| 84 668016 +a ||| on account of the fact ||| 0.0625 0.0782999 1.49697e-06 1.06628e-10 2.718 ||| 0-0 ||| 16 668016 +a ||| on account of the ||| 0.00398406 0.0782999 1.49697e-06 3.64004e-08 2.718 ||| 0-0 ||| 251 668016 +a ||| on account of ||| 0.0102564 0.0782999 8.98182e-06 5.9292e-07 2.718 ||| 0-0 ||| 585 668016 +a ||| on account ||| 0.0108025 0.0782999 1.04788e-05 1.09065e-05 2.718 ||| 0-0 ||| 648 668016 +a ||| on action ||| 0.0151515 0.0782999 1.49697e-06 1.14679e-05 2.718 ||| 0-0 ||| 66 668016 +a ||| on actions ||| 0.0333333 0.0782999 1.49697e-06 2.6479e-06 2.718 ||| 0-0 ||| 30 668016 +a ||| on actual ||| 0.0769231 0.0782999 1.49697e-06 5.48928e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| on ad ||| 0.5 0.0782999 1.49697e-06 9.02867e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| on after ||| 0.0769231 0.0782999 1.49697e-06 1.02805e-05 2.718 ||| 0-0 ||| 13 668016 +a ||| on ahead ||| 0.111111 0.0782999 1.49697e-06 4.13498e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| on all the ||| 0.00217391 0.0782999 1.49697e-06 1.10051e-05 2.718 ||| 0-0 ||| 460 668016 +a ||| on all ||| 0.00466299 0.0782999 1.64667e-05 0.000179261 2.718 ||| 0-0 ||| 2359 668016 +a ||| on allegations of ||| 1 0.0782999 1.49697e-06 1.11366e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on allegations ||| 0.5 0.0782999 1.49697e-06 2.04852e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| on also ||| 0.25 0.0782999 1.49697e-06 0.000191522 2.718 ||| 0-0 ||| 4 668016 +a ||| on an equal footing ; ||| 0.5 0.0782999 1.49697e-06 6.41638e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| on an equal footing in ||| 0.05 0.0782999 1.49697e-06 4.45907e-15 2.718 ||| 0-0 ||| 20 668016 +a ||| on an equal footing with the Council ||| 0.0227273 0.0782999 1.49697e-06 2.82801e-20 2.718 ||| 0-0 ||| 44 668016 +a ||| on an equal footing with the ||| 0.0113636 0.0782999 1.49697e-06 8.17817e-17 2.718 ||| 0-0 ||| 88 668016 +a ||| on an equal footing with ||| 0.00558659 0.0782999 1.49697e-06 1.33213e-15 2.718 ||| 0-0 ||| 179 668016 +a ||| on an equal footing ||| 0.00938967 0.0782999 5.98788e-06 2.08324e-13 2.718 ||| 0-0 ||| 426 668016 +a ||| on an equal ||| 0.0139373 0.0782999 5.98788e-06 9.64463e-09 2.718 ||| 0-0 ||| 287 668016 +a ||| on an even keel in ||| 1 0.0685311 1.49697e-06 2.4658e-15 2.718 ||| 0-0 0-4 ||| 1 668016 +a ||| on an ||| 0.0223404 0.0782999 9.43091e-05 0.000168612 2.718 ||| 0-0 ||| 2820 668016 +a ||| on and make full ||| 1 0.0782999 1.49697e-06 1.51528e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| on and make ||| 0.333333 0.0782999 1.49697e-06 8.25764e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| on and off ||| 0.0625 0.0782999 1.49697e-06 1.93397e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| on and so forth ||| 0.0833333 0.0782999 1.49697e-06 2.17859e-11 2.718 ||| 0-0 ||| 12 668016 +a ||| on and so ||| 0.166667 0.0782999 1.49697e-06 1.07851e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| on and ||| 0.0296736 0.0782999 1.49697e-05 0.000475178 2.718 ||| 0-0 ||| 337 668016 +a ||| on any ||| 0.00809717 0.0782999 5.98788e-06 5.73662e-05 2.718 ||| 0-0 ||| 494 668016 +a ||| on applying pressure until ||| 1 0.0782999 1.49697e-06 3.66763e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| on applying pressure ||| 1 0.0782999 1.49697e-06 7.54657e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on applying ||| 0.0196078 0.0782999 1.49697e-06 1.25567e-06 2.718 ||| 0-0 ||| 51 668016 +a ||| on are concerned ||| 1 0.0782999 1.49697e-06 9.25887e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| on are ||| 0.176471 0.0782999 4.49091e-06 0.000575585 2.718 ||| 0-0 ||| 17 668016 +a ||| on as ||| 0.0490196 0.0782999 7.48485e-06 0.00038711 2.718 ||| 0-0 ||| 102 668016 +a ||| on assessing ||| 0.0285714 0.0782999 1.49697e-06 1.63123e-07 2.718 ||| 0-0 ||| 35 668016 +a ||| on assuming ||| 0.125 0.0782999 1.49697e-06 3.56595e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| on at the ||| 0.0204082 0.141237 1.49697e-06 7.92662e-05 2.718 ||| 0-0 0-1 ||| 49 668016 +a ||| on at ||| 0.0718954 0.141237 1.64667e-05 0.00129115 2.718 ||| 0-0 0-1 ||| 153 668016 +a ||| on balance ||| 0.00884956 0.0782999 1.49697e-06 2.04852e-06 2.718 ||| 0-0 ||| 113 668016 +a ||| on basic ||| 0.0434783 0.0782999 1.49697e-06 2.04852e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| on basically sorting out ||| 1 0.0782999 1.49697e-06 9.20675e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| on basically sorting ||| 1 0.0782999 1.49697e-06 2.4036e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| on basically ||| 1 0.0782999 1.49697e-06 1.09255e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| on be ||| 0.1 0.0782999 1.49697e-06 0.000687503 2.718 ||| 0-0 ||| 10 668016 +a ||| on behalf of the EFD Group . ||| 0.00613497 0.0188479 1.49697e-06 9.53258e-21 2.718 ||| 0-2 ||| 163 668016 +a ||| on behalf of the EFD Group ||| 0.0060241 0.0188479 1.49697e-06 3.1471e-18 2.718 ||| 0-2 ||| 166 668016 +a ||| on behalf of the EFD ||| 1 0.0188479 1.49697e-06 9.67447e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| on behalf of the ||| 6.91467e-05 0.0188479 1.49697e-06 3.86979e-09 2.718 ||| 0-2 ||| 14462 668016 +a ||| on behalf of ||| 0.00170197 0.0782999 2.69455e-05 6.56852e-07 2.718 ||| 0-0 ||| 10576 668016 +a ||| on behalf ||| 0.00145021 0.0782999 4.04182e-05 1.20825e-05 2.718 ||| 0-0 ||| 18618 668016 +a ||| on being ||| 0.02 0.0782999 2.99394e-06 0.000107957 2.718 ||| 0-0 ||| 100 668016 +a ||| on board by ||| 0.0555556 0.0782999 1.49697e-06 2.65886e-08 2.718 ||| 0-0 ||| 18 668016 +a ||| on board in ||| 0.0681818 0.0587624 4.49091e-06 5.36686e-08 2.718 ||| 0-2 ||| 44 668016 +a ||| on board the ||| 0.00636943 0.0782999 1.49697e-06 3.10913e-07 2.718 ||| 0-0 ||| 157 668016 +a ||| on board to ensure ||| 0.5 0.0782999 1.49697e-06 2.01786e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| on board to ||| 0.111111 0.0782999 1.49697e-06 4.50014e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| on board with ||| 0.111111 0.0782999 1.49697e-06 3.23843e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| on board ||| 0.0184332 0.0782999 3.59273e-05 5.0644e-06 2.718 ||| 0-0 ||| 1302 668016 +a ||| on both sides ||| 0.00250627 0.0782999 2.99394e-06 2.30624e-09 2.718 ||| 0-0 ||| 798 668016 +a ||| on both these occasions ||| 1 0.0782999 1.49697e-06 1.73357e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| on both these ||| 0.0384615 0.0782999 1.49697e-06 6.51717e-08 2.718 ||| 0-0 ||| 26 668016 +a ||| on both ||| 0.0125294 0.0782999 2.39515e-05 6.28403e-05 2.718 ||| 0-0 ||| 1277 668016 +a ||| on brought about ||| 0.25 0.0782999 1.49697e-06 1.50226e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| on brought ||| 0.25 0.0782999 1.49697e-06 1.0622e-05 2.718 ||| 0-0 ||| 4 668016 +a ||| on by ||| 0.0280374 0.0782999 8.98182e-06 0.000199166 2.718 ||| 0-0 ||| 214 668016 +a ||| on clear ||| 0.125 0.0782999 1.49697e-06 1.26288e-05 2.718 ||| 0-0 ||| 8 668016 +a ||| on cohesion drawn up ||| 1 0.0782999 1.49697e-06 2.84965e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| on cohesion drawn ||| 1 0.0782999 1.49697e-06 8.35551e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on cohesion ||| 0.00900901 0.0782999 1.49697e-06 5.88002e-07 2.718 ||| 0-0 ||| 111 668016 +a ||| on comments that were received ||| 1 0.0782999 1.49697e-06 5.12135e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| on comments that were ||| 1 0.0782999 1.49697e-06 5.7158e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on comments that ||| 1 0.0782999 1.49697e-06 3.19069e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on comments ||| 0.5 0.0782999 1.49697e-06 1.89678e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| on common ||| 0.037037 0.0782999 1.49697e-06 8.76312e-06 2.718 ||| 0-0 ||| 27 668016 +a ||| on condition ||| 0.00295858 0.0782999 1.49697e-06 9.71151e-07 2.718 ||| 0-0 ||| 338 668016 +a ||| on course ||| 0.0125 0.0782999 1.49697e-06 4.78633e-05 2.718 ||| 0-0 ||| 80 668016 +a ||| on dealing ||| 0.0625 0.0782999 1.49697e-06 3.91875e-06 2.718 ||| 0-0 ||| 16 668016 +a ||| on demand ||| 0.046875 0.0782999 4.49091e-06 2.03335e-06 2.718 ||| 0-0 ||| 64 668016 +a ||| on differentiating ||| 0.25 0.0782999 1.49697e-06 1.51742e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| on dissenters ||| 0.142857 0.0782999 1.49697e-06 1.51742e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| on doubtful ||| 1 0.0782999 1.49697e-06 6.82841e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on draft ||| 0.0238095 0.0782999 1.49697e-06 1.99162e-06 2.718 ||| 0-0 ||| 42 668016 +a ||| on duty-free ||| 0.0909091 0.0782999 1.49697e-06 2.20026e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| on each and ||| 0.0769231 0.0782999 1.49697e-06 1.33382e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| on each ||| 0.00343643 0.0782999 1.49697e-06 1.06485e-05 2.718 ||| 0-0 ||| 291 668016 +a ||| on earth did ||| 1 0.0782999 1.49697e-06 2.48117e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| on earth that this could be done ||| 1 0.0782999 1.49697e-06 3.48921e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| on earth that this could be ||| 1 0.0782999 1.49697e-06 7.65177e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| on earth that this could ||| 1 0.0782999 1.49697e-06 4.22215e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| on earth that this ||| 1 0.0782999 1.49697e-06 5.9375e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on earth that ||| 1 0.0782999 1.49697e-06 9.18918e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| on earth ||| 0.0188679 0.0782999 5.98788e-06 5.46273e-07 2.718 ||| 0-0 ||| 212 668016 +a ||| on eco-tax ||| 1 0.0782999 1.49697e-06 2.65549e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on either an ||| 0.5 0.0782999 1.49697e-06 1.45985e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| on either ||| 0.025641 0.0782999 4.49091e-06 3.28446e-05 2.718 ||| 0-0 ||| 117 668016 +a ||| on end ||| 0.0517241 0.0782999 4.49091e-06 1.65058e-05 2.718 ||| 0-0 ||| 58 668016 +a ||| on ensuring ||| 0.020979 0.0782999 4.49091e-06 4.40812e-06 2.718 ||| 0-0 ||| 143 668016 +a ||| on environmental issues , ||| 0.0833333 0.0782999 1.49697e-06 3.10615e-11 2.718 ||| 0-0 ||| 12 668016 +a ||| on environmental issues ||| 0.0175439 0.0782999 1.49697e-06 2.60464e-10 2.718 ||| 0-0 ||| 57 668016 +a ||| on environmental ||| 0.0416667 0.0782999 1.49697e-06 1.03564e-06 2.718 ||| 0-0 ||| 24 668016 +a ||| on equal terms ||| 0.00704225 0.0782999 1.49697e-06 2.3817e-09 2.718 ||| 0-0 ||| 142 668016 +a ||| on equal ||| 0.00231481 0.0782999 1.49697e-06 2.16992e-06 2.718 ||| 0-0 ||| 432 668016 +a ||| on events , ||| 0.142857 0.0782999 1.49697e-06 3.28895e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| on events ||| 0.0227273 0.0782999 1.49697e-06 2.75792e-06 2.718 ||| 0-0 ||| 44 668016 +a ||| on every ||| 0.0034965 0.0782999 1.49697e-06 6.17212e-06 2.718 ||| 0-0 ||| 286 668016 +a ||| on everyone on ||| 1 0.0782999 1.49697e-06 1.70826e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| on existing ||| 0.03125 0.0782999 1.49697e-06 2.98933e-06 2.718 ||| 0-0 ||| 32 668016 +a ||| on expiry ||| 0.142857 0.0782999 1.49697e-06 2.65549e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| on file ||| 0.0714286 0.0782999 1.49697e-06 3.14865e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| on finding ||| 0.0163934 0.0782999 1.49697e-06 2.02197e-06 2.718 ||| 0-0 ||| 61 668016 +a ||| on fisheries ||| 0.00793651 0.0782999 1.49697e-06 9.97706e-07 2.718 ||| 0-0 ||| 126 668016 +a ||| on flights ||| 0.0263158 0.0782999 1.49697e-06 3.14865e-07 2.718 ||| 0-0 ||| 38 668016 +a ||| on foodstuffs . ||| 0.166667 0.0782999 1.49697e-06 4.941e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| on foodstuffs ||| 0.0285714 0.0782999 1.49697e-06 1.63123e-07 2.718 ||| 0-0 ||| 35 668016 +a ||| on for a ||| 0.0666667 0.0782999 1.49697e-06 1.29237e-05 2.718 ||| 0-0 ||| 15 668016 +a ||| on for ||| 0.0292683 0.0733188 8.98182e-06 0.00139787 2.718 ||| 0-0 0-1 ||| 205 668016 +a ||| on from a ||| 0.0833333 0.060929 1.49697e-06 1.2105e-05 2.718 ||| 0-0 0-1 ||| 12 668016 +a ||| on from ||| 0.0759162 0.060929 4.34121e-05 0.000273091 2.718 ||| 0-0 0-1 ||| 382 668016 +a ||| on further ||| 0.00917431 0.0782999 1.49697e-06 1.83343e-05 2.718 ||| 0-0 ||| 109 668016 +a ||| on gene ||| 0.333333 0.0782999 1.49697e-06 6.82841e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| on generating ||| 0.25 0.0782999 1.49697e-06 2.31407e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| on grounds of ||| 0.00408163 0.0782999 1.49697e-06 2.15926e-07 2.718 ||| 0-0 ||| 245 668016 +a ||| on grounds ||| 0.00373134 0.0782999 1.49697e-06 3.97186e-06 2.718 ||| 0-0 ||| 268 668016 +a ||| on having ||| 0.00689655 0.0782999 2.99394e-06 1.45255e-05 2.718 ||| 0-0 ||| 290 668016 +a ||| on her behalf in Parliament ||| 1 0.0782999 1.49697e-06 4.03926e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| on her behalf in ||| 1 0.0782999 1.49697e-06 7.03704e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on her behalf ||| 0.0384615 0.0782999 1.49697e-06 3.28765e-09 2.718 ||| 0-0 ||| 26 668016 +a ||| on her ||| 0.000816993 0.0782999 1.49697e-06 1.03223e-05 2.718 ||| 0-0 ||| 1224 668016 +a ||| on here ||| 0.0243902 0.0782999 1.49697e-06 7.69258e-05 2.718 ||| 0-0 ||| 41 668016 +a ||| on him at ||| 1 0.204175 1.49697e-06 7.30105e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| on him to ||| 0.0909091 0.229811 1.49697e-06 7.51444e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| on him ||| 0.0178571 0.0782999 1.49697e-06 1.21622e-05 2.718 ||| 0-0 ||| 56 668016 +a ||| on his behalf ||| 0.0119048 0.0782999 1.49697e-06 3.63079e-09 2.718 ||| 0-0 ||| 84 668016 +a ||| on his way ||| 0.0344828 0.0782999 1.49697e-06 2.45731e-08 2.718 ||| 0-0 ||| 29 668016 +a ||| on his ||| 0.00154679 0.0782999 5.98788e-06 1.13996e-05 2.718 ||| 0-0 ||| 2586 668016 +a ||| on hold ||| 0.0166667 0.0782999 1.49697e-06 6.60838e-06 2.718 ||| 0-0 ||| 60 668016 +a ||| on how to ||| 0.00383142 0.102737 2.99394e-06 6.11289e-08 2.718 ||| 0-0 0-1 0-2 ||| 522 668016 +a ||| on how ||| 0.000910332 0.0782999 2.99394e-06 1.35961e-05 2.718 ||| 0-0 ||| 2197 668016 +a ||| on illegal immigrants ||| 0.1 0.0782999 1.49697e-06 2.29844e-11 2.718 ||| 0-0 ||| 10 668016 +a ||| on illegal ||| 0.0909091 0.0782999 1.49697e-06 1.22911e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| on impact ||| 0.111111 0.0782999 1.49697e-06 3.12589e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| on imports of ||| 0.00980392 0.0485739 1.49697e-06 1.25673e-08 2.718 ||| 0-0 0-2 ||| 102 668016 +a ||| on in regard to ||| 1 0.154056 1.49697e-06 1.93677e-07 2.718 ||| 0-0 0-3 ||| 1 668016 +a ||| on in the ||| 0.00719424 0.0685311 1.49697e-06 0.000139928 2.718 ||| 0-0 0-1 ||| 139 668016 +a ||| on in this ||| 0.0277778 0.0587624 1.49697e-06 2.59756e-06 2.718 ||| 0-1 ||| 36 668016 +a ||| on in ||| 0.0284553 0.0685311 2.09576e-05 0.00227927 2.718 ||| 0-0 0-1 ||| 492 668016 +a ||| on into ||| 0.25 0.092939 4.49091e-06 0.000230432 2.718 ||| 0-0 0-1 ||| 12 668016 +a ||| on issues of ||| 0.00675676 0.0782999 1.49697e-06 5.18676e-07 2.718 ||| 0-0 ||| 148 668016 +a ||| on issues ||| 0.0046729 0.0782999 4.49091e-06 9.5408e-06 2.718 ||| 0-0 ||| 642 668016 +a ||| on it , ||| 0.00588235 0.0782999 1.49697e-06 8.04512e-05 2.718 ||| 0-0 ||| 170 668016 +a ||| on it by ||| 0.0434783 0.0782999 1.49697e-06 3.5418e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| on it once ||| 1 0.0782999 1.49697e-06 2.76053e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| on it so as ||| 1 0.0782999 1.49697e-06 1.56247e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on it so ||| 0.2 0.0782999 1.49697e-06 1.53118e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| on it with ||| 0.25 0.0782999 1.49697e-06 4.31383e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| on it ||| 0.0157319 0.0782999 3.44303e-05 0.000674616 2.718 ||| 0-0 ||| 1462 668016 +a ||| on its head ||| 0.0322581 0.0782999 1.49697e-06 3.90759e-09 2.718 ||| 0-0 ||| 31 668016 +a ||| on its own initiative ||| 0.0172414 0.0782999 1.49697e-06 5.73576e-12 2.718 ||| 0-0 ||| 58 668016 +a ||| on its own ||| 0.00631912 0.0782999 5.98788e-06 9.16256e-08 2.718 ||| 0-0 ||| 633 668016 +a ||| on its way by ||| 0.5 0.0782999 1.49697e-06 6.11654e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| on its way ||| 0.011236 0.0782999 1.49697e-06 1.16503e-07 2.718 ||| 0-0 ||| 89 668016 +a ||| on its ||| 0.00587372 0.0782999 2.39515e-05 5.40468e-05 2.718 ||| 0-0 ||| 2724 668016 +a ||| on just a ||| 0.0714286 0.0782999 1.49697e-06 2.12158e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| on just in case you ||| 0.333333 0.0782999 1.49697e-06 3.53899e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| on just in case ||| 0.333333 0.0782999 1.49697e-06 1.0961e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| on just in ||| 0.333333 0.0782999 1.49697e-06 1.02449e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| on just ||| 0.0441176 0.0782999 4.49091e-06 4.78633e-05 2.718 ||| 0-0 ||| 68 668016 +a ||| on labelling ||| 0.00763359 0.0782999 1.49697e-06 5.04543e-07 2.718 ||| 0-0 ||| 131 668016 +a ||| on long-term projects such ||| 1 0.0782999 1.49697e-06 9.90543e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| on long-term projects ||| 0.333333 0.0782999 1.49697e-06 4.78778e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| on long-term ||| 0.166667 0.0782999 1.49697e-06 9.71151e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| on making ||| 0.00581395 0.0782999 1.49697e-06 1.45938e-05 2.718 ||| 0-0 ||| 172 668016 +a ||| on many ||| 0.00107066 0.0782999 1.49697e-06 1.30233e-05 2.718 ||| 0-0 ||| 934 668016 +a ||| on measures ||| 0.00510204 0.0782999 1.49697e-06 7.84888e-06 2.718 ||| 0-0 ||| 196 668016 +a ||| on meekly ||| 0.25 0.0782999 1.49697e-06 2.65549e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| on meeting ||| 0.0232558 0.0782999 1.49697e-06 4.76471e-06 2.718 ||| 0-0 ||| 43 668016 +a ||| on more ||| 0.004329 0.0782999 1.49697e-06 8.66335e-05 2.718 ||| 0-0 ||| 231 668016 +a ||| on my fellow ||| 0.0212766 0.0782999 1.49697e-06 1.60772e-09 2.718 ||| 0-0 ||| 47 668016 +a ||| on my ||| 0.00117647 0.0782999 1.49697e-06 2.43964e-05 2.718 ||| 0-0 ||| 850 668016 +a ||| on negative restrictions ||| 0.333333 0.0782999 1.49697e-06 1.69549e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| on negative ||| 0.333333 0.0782999 1.49697e-06 8.87693e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| on not ||| 0.0263158 0.0782999 1.49697e-06 0.000129516 2.718 ||| 0-0 ||| 38 668016 +a ||| on notice ||| 0.2 0.0782999 1.49697e-06 1.46052e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| on numerous ||| 0.0140187 0.0782999 4.49091e-06 6.67667e-07 2.718 ||| 0-0 ||| 214 668016 +a ||| on occasion to ||| 0.125 0.229811 1.49697e-06 1.14615e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| on occasion ||| 0.015625 0.0782999 2.99394e-06 1.85505e-06 2.718 ||| 0-0 ||| 128 668016 +a ||| on occasions ||| 0.0113636 0.0782999 1.49697e-06 1.00909e-06 2.718 ||| 0-0 ||| 88 668016 +a ||| on of ||| 0.0555556 0.0782999 1.49697e-06 0.00206233 2.718 ||| 0-0 ||| 18 668016 +a ||| on offer ||| 0.00657895 0.0782999 1.49697e-06 4.33983e-06 2.718 ||| 0-0 ||| 152 668016 +a ||| on old ||| 0.166667 0.0782999 1.49697e-06 2.92104e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| on one point ||| 0.00578035 0.0782999 1.49697e-06 1.3832e-07 2.718 ||| 0-0 ||| 173 668016 +a ||| on one side and the Committee on ||| 1 0.0782999 1.49697e-06 2.72132e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| on one side and the Committee ||| 1 0.0782999 1.49697e-06 4.06714e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| on one side and the ||| 0.166667 0.0782999 1.49697e-06 2.66523e-11 2.718 ||| 0-0 ||| 6 668016 +a ||| on one side and ||| 0.0294118 0.0782999 1.49697e-06 4.34134e-10 2.718 ||| 0-0 ||| 34 668016 +a ||| on one side ||| 0.0116279 0.0782999 2.99394e-06 3.46589e-08 2.718 ||| 0-0 ||| 172 668016 +a ||| on one thing : ||| 0.0526316 0.0782999 1.49697e-06 1.94321e-11 2.718 ||| 0-0 ||| 19 668016 +a ||| on one thing ||| 0.0217391 0.0782999 1.49697e-06 5.76964e-08 2.718 ||| 0-0 ||| 46 668016 +a ||| on one ||| 0.00545951 0.0782999 8.98182e-06 0.000158116 2.718 ||| 0-0 ||| 1099 668016 +a ||| on opposite sides particularly on ||| 1 0.0782999 1.49697e-06 3.52515e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| on opposite sides particularly ||| 1 0.0782999 1.49697e-06 5.2685e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| on opposite sides ||| 0.0909091 0.0782999 1.49697e-06 2.95154e-11 2.718 ||| 0-0 ||| 11 668016 +a ||| on opposite ||| 0.166667 0.0782999 1.49697e-06 8.04235e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| on or ||| 0.0714286 0.0782999 4.49091e-06 4.33718e-05 2.718 ||| 0-0 ||| 42 668016 +a ||| on other MEPs ||| 1 0.0782999 1.49697e-06 8.64962e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| on other ||| 0.00262467 0.0782999 2.99394e-06 4.91456e-05 2.718 ||| 0-0 ||| 762 668016 +a ||| on our hands to bring ||| 0.5 0.0782999 1.49697e-06 1.45906e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| on our hands to ||| 0.5 0.0782999 1.49697e-06 4.687e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| on our hands ||| 0.0540541 0.0782999 2.99394e-06 5.2747e-09 2.718 ||| 0-0 ||| 37 668016 +a ||| on our instructions , ||| 1 0.0782999 1.49697e-06 1.99693e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on our instructions ||| 1 0.0782999 1.49697e-06 1.67451e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| on our lists of species ||| 1 0.0782999 1.49697e-06 3.62084e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| on our lists of ||| 1 0.0782999 1.49697e-06 2.44651e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on our lists ||| 0.5 0.0782999 1.49697e-06 4.50024e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| on our minds , out of ||| 1 0.0188479 1.49697e-06 5.97328e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| on our part ||| 0.00404858 0.0782999 1.49697e-06 6.23859e-08 2.718 ||| 0-0 ||| 247 668016 +a ||| on our vote , ||| 0.25 0.0782999 1.49697e-06 9.81615e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| on our vote ||| 0.2 0.0782999 1.49697e-06 8.23125e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| on our ||| 0.00333333 0.0782999 1.79636e-05 5.23284e-05 2.718 ||| 0-0 ||| 3600 668016 +a ||| on paying ||| 0.0833333 0.0782999 1.49697e-06 1.28222e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| on people in ||| 0.125 0.0782999 1.49697e-06 7.14716e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| on people ||| 0.00847458 0.0782999 2.99394e-06 3.33909e-05 2.718 ||| 0-0 ||| 236 668016 +a ||| on people ’ ||| 0.333333 0.0782999 1.49697e-06 5.81703e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| on pig ||| 1 0.0782999 1.49697e-06 1.63123e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| on points of ||| 0.0384615 0.0782999 1.49697e-06 2.67897e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| on points ||| 0.0217391 0.0782999 1.49697e-06 4.92783e-06 2.718 ||| 0-0 ||| 46 668016 +a ||| on policy , ||| 0.125 0.0782999 1.49697e-06 1.7811e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| on policy ||| 0.0163934 0.0782999 1.49697e-06 1.49352e-05 2.718 ||| 0-0 ||| 61 668016 +a ||| on practical grounds ||| 0.333333 0.0782999 1.49697e-06 1.74365e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| on practical ||| 0.0555556 0.0782999 1.49697e-06 1.66537e-06 2.718 ||| 0-0 ||| 18 668016 +a ||| on pre-accession technical cooperation ||| 1 0.0782999 1.49697e-06 8.09529e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| on pre-accession technical ||| 1 0.0782999 1.49697e-06 8.78968e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| on pre-accession ||| 0.333333 0.0782999 1.49697e-06 2.65549e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| on preparing ||| 0.0188679 0.0782999 1.49697e-06 5.61447e-07 2.718 ||| 0-0 ||| 53 668016 +a ||| on previous ||| 0.0140845 0.0782999 1.49697e-06 1.93851e-06 2.718 ||| 0-0 ||| 71 668016 +a ||| on principle to ||| 0.0555556 0.154056 1.49697e-06 2.03719e-06 2.718 ||| 0-0 0-2 ||| 18 668016 +a ||| on priorities ||| 0.0196078 0.0782999 1.49697e-06 7.09396e-07 2.718 ||| 0-0 ||| 51 668016 +a ||| on promoting ||| 0.00641026 0.0782999 2.99394e-06 1.07737e-06 2.718 ||| 0-0 ||| 312 668016 +a ||| on protesting ||| 0.5 0.0782999 1.49697e-06 5.31098e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| on pushing ||| 0.125 0.0782999 1.49697e-06 5.04543e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| on rather quickly to ||| 1 0.229811 1.49697e-06 3.25115e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| on record ||| 0.00398406 0.0782999 1.49697e-06 2.11681e-06 2.718 ||| 0-0 ||| 251 668016 +a ||| on required ||| 1 0.0782999 1.49697e-06 6.02038e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| on respect for the country 's integrity ||| 0.5 0.0782999 1.49697e-06 1.9106e-20 2.718 ||| 0-0 ||| 2 668016 +a ||| on respect for the country 's ||| 0.5 0.0782999 1.49697e-06 5.30722e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| on respect for the country ||| 0.5 0.0782999 1.49697e-06 2.78682e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| on respect for the ||| 0.0147059 0.0782999 1.49697e-06 7.74332e-09 2.718 ||| 0-0 ||| 68 668016 +a ||| on respect for ||| 0.00340136 0.0782999 1.49697e-06 1.2613e-07 2.718 ||| 0-0 ||| 294 668016 +a ||| on respect ||| 0.00321543 0.0782999 1.49697e-06 1.64109e-05 2.718 ||| 0-0 ||| 311 668016 +a ||| on revenue ||| 0.047619 0.0782999 1.49697e-06 4.09704e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| on rural development ||| 0.0105263 0.0782999 1.49697e-06 6.98925e-11 2.718 ||| 0-0 ||| 95 668016 +a ||| on rural ||| 0.0909091 0.0782999 1.49697e-06 4.24879e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| on safety ||| 0.00518135 0.0782999 1.49697e-06 1.92333e-06 2.718 ||| 0-0 ||| 193 668016 +a ||| on sale at ||| 1 0.204175 1.49697e-06 2.86941e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| on seamlessly ||| 0.0714286 0.0782999 1.49697e-06 2.65549e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| on should be promoted ||| 1 0.0782999 1.49697e-06 6.70192e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on should be ||| 1 0.0782999 1.49697e-06 3.04633e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| on should ||| 0.111111 0.0782999 1.49697e-06 0.000168093 2.718 ||| 0-0 ||| 9 668016 +a ||| on small ||| 0.0046729 0.0782999 1.49697e-06 4.85955e-06 2.718 ||| 0-0 ||| 214 668016 +a ||| on small- ||| 0.0666667 0.0782999 1.49697e-06 8.34583e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| on so ||| 0.025 0.0782999 1.49697e-06 8.61024e-05 2.718 ||| 0-0 ||| 40 668016 +a ||| on some of ||| 0.00961538 0.0782999 2.99394e-06 2.2465e-06 2.718 ||| 0-0 ||| 208 668016 +a ||| on some ||| 0.00465839 0.0782999 4.49091e-06 4.13232e-05 2.718 ||| 0-0 ||| 644 668016 +a ||| on specific ||| 0.0222222 0.0782999 1.49697e-06 5.73207e-06 2.718 ||| 0-0 ||| 45 668016 +a ||| on sprinkling a ||| 1 0.0782999 1.49697e-06 6.7261e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| on sprinkling ||| 1 0.0782999 1.49697e-06 1.51742e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on starting ||| 0.0666667 0.0782999 1.49697e-06 1.73366e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| on state ||| 0.125 0.0782999 1.49697e-06 9.58253e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| on stream ||| 0.0714286 0.0782999 2.99394e-06 1.51742e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| on studying ||| 0.25 0.0782999 1.49697e-06 1.36568e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| on such ||| 0.0114286 0.0782999 8.98182e-06 7.8485e-05 2.718 ||| 0-0 ||| 525 668016 +a ||| on suppliers and contractors from third ||| 1 0.0782999 1.49697e-06 8.02202e-23 2.718 ||| 0-0 ||| 1 668016 +a ||| on suppliers and contractors from ||| 1 0.0782999 1.49697e-06 1.71411e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| on suppliers and contractors ||| 0.5 0.0782999 1.49697e-06 1.0644e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| on suppliers and ||| 0.333333 0.0782999 1.49697e-06 1.52057e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| on suppliers ||| 0.166667 0.0782999 1.49697e-06 1.21394e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| on supporting ||| 0.00909091 0.13446 1.49697e-06 4.34894e-05 2.718 ||| 0-0 0-1 ||| 110 668016 +a ||| on sustainable development but ||| 0.2 0.0782999 1.49697e-06 5.97057e-14 2.718 ||| 0-0 ||| 5 668016 +a ||| on sustainable development ||| 0.00546448 0.0782999 1.49697e-06 8.73657e-11 2.718 ||| 0-0 ||| 183 668016 +a ||| on sustainable ||| 0.111111 0.0782999 1.49697e-06 5.31098e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| on sustaining ||| 0.142857 0.0782999 1.49697e-06 8.34583e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| on tackling ||| 0.0131579 0.0782999 1.49697e-06 7.7768e-07 2.718 ||| 0-0 ||| 76 668016 +a ||| on taking ||| 0.0135135 0.0782999 1.49697e-06 1.61226e-05 2.718 ||| 0-0 ||| 74 668016 +a ||| on that one ||| 0.25 0.0782999 2.99394e-06 2.65976e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| on that ||| 0.00504152 0.0782999 2.54485e-05 0.000638137 2.718 ||| 0-0 ||| 3372 668016 +a ||| on the Commission to ||| 0.000943396 0.154056 1.49697e-06 4.76526e-07 2.718 ||| 0-0 0-3 ||| 1060 668016 +a ||| on the EU terror ||| 1 0.0782999 1.49697e-06 4.60943e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| on the EU ||| 0.00408163 0.0782999 1.49697e-06 1.15236e-06 2.718 ||| 0-0 ||| 245 668016 +a ||| on the Internet ||| 0.00105374 0.0782999 1.49697e-06 4.02906e-08 2.718 ||| 0-0 ||| 949 668016 +a ||| on the Right ||| 0.0357143 0.0782999 1.49697e-06 5.82234e-09 2.718 ||| 0-0 ||| 28 668016 +a ||| on the agenda , ||| 0.00429185 0.0782999 1.49697e-06 2.75792e-08 2.718 ||| 0-0 ||| 233 668016 +a ||| on the agenda has been ||| 1 0.0782999 1.49697e-06 3.97508e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| on the agenda has ||| 1 0.0782999 1.49697e-06 1.19043e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| on the agenda ||| 0.00208594 0.0782999 7.48485e-06 2.31263e-07 2.718 ||| 0-0 ||| 2397 668016 +a ||| on the approach we might ||| 1 0.0782999 1.49697e-06 2.22542e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| on the approach we ||| 0.5 0.0782999 1.49697e-06 5.79538e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| on the approach ||| 0.0416667 0.0782999 1.49697e-06 5.10503e-07 2.718 ||| 0-0 ||| 24 668016 +a ||| on the automobile industry ||| 0.142857 0.0782999 1.49697e-06 4.30713e-13 2.718 ||| 0-0 ||| 7 668016 +a ||| on the automobile ||| 0.5 0.0782999 1.49697e-06 3.26051e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| on the back of ||| 0.0298507 0.0782999 2.99394e-06 8.5158e-08 2.718 ||| 0-0 ||| 67 668016 +a ||| on the back ||| 0.0140845 0.0782999 2.99394e-06 1.56644e-06 2.718 ||| 0-0 ||| 142 668016 +a ||| on the basis of publications in the ||| 1 0.0587624 1.49697e-06 1.07605e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| on the basis of publications in ||| 1 0.0587624 1.49697e-06 1.75276e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| on the basis of the ||| 0.000579039 0.0782999 1.49697e-06 4.61551e-09 2.718 ||| 0-0 ||| 1727 668016 +a ||| on the basis of ||| 0.00175963 0.0782999 1.49697e-05 7.51811e-08 2.718 ||| 0-0 ||| 5683 668016 +a ||| on the basis ||| 0.00169937 0.0782999 1.64667e-05 1.38292e-06 2.718 ||| 0-0 ||| 6473 668016 +a ||| on the black market ||| 0.0333333 0.0782999 1.49697e-06 7.36875e-12 2.718 ||| 0-0 ||| 30 668016 +a ||| on the black ||| 1 0.0782999 1.49697e-06 3.26051e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on the borders of ||| 0.0188679 0.0188479 1.49697e-06 5.24882e-10 2.718 ||| 0-3 ||| 53 668016 +a ||| on the contrary , it will only ||| 1 0.0782999 1.49697e-06 2.39709e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| on the contrary , it will ||| 0.142857 0.0782999 1.49697e-06 2.15352e-12 2.718 ||| 0-0 ||| 7 668016 +a ||| on the contrary , it ||| 0.0106383 0.0782999 1.49697e-06 2.48928e-10 2.718 ||| 0-0 ||| 94 668016 +a ||| on the contrary , ||| 0.000898473 0.0782999 2.99394e-06 1.39979e-08 2.718 ||| 0-0 ||| 2226 668016 +a ||| on the contrary ||| 0.00160772 0.0782999 5.98788e-06 1.17378e-07 2.718 ||| 0-0 ||| 2488 668016 +a ||| on the eve of ||| 0.0026738 0.0782999 1.49697e-06 2.27898e-10 2.718 ||| 0-0 ||| 374 668016 +a ||| on the eve ||| 0.00220751 0.0782999 1.49697e-06 4.19208e-09 2.718 ||| 0-0 ||| 453 668016 +a ||| on the face of ||| 0.0204082 0.0782999 1.49697e-06 2.11819e-08 2.718 ||| 0-0 ||| 49 668016 +a ||| on the face ||| 0.0338983 0.0782999 2.99394e-06 3.89631e-07 2.718 ||| 0-0 ||| 59 668016 +a ||| on the fact ||| 0.00426136 0.0782999 4.49091e-06 6.82215e-06 2.718 ||| 0-0 ||| 704 668016 +a ||| on the floor of ||| 0.0416667 0.0188479 1.49697e-06 5.16377e-10 2.718 ||| 0-3 ||| 24 668016 +a ||| on the floor ||| 0.0131579 0.0782999 1.49697e-06 9.89797e-08 2.718 ||| 0-0 ||| 76 668016 +a ||| on the grounds ||| 0.00437318 0.0782999 4.49091e-06 2.43839e-07 2.718 ||| 0-0 ||| 686 668016 +a ||| on the head ||| 0.0434783 0.0782999 1.49697e-06 1.68382e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| on the horizon ||| 0.0104167 0.0782999 1.49697e-06 5.82234e-09 2.718 ||| 0-0 ||| 96 668016 +a ||| on the horns of ||| 0.333333 0.0782999 1.49697e-06 8.86271e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| on the horns ||| 0.333333 0.0782999 1.49697e-06 1.63025e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| on the idea ||| 0.00469484 0.0782999 1.49697e-06 5.22147e-07 2.718 ||| 0-0 ||| 213 668016 +a ||| on the importance of the Moretti report ||| 1 0.0782999 1.49697e-06 2.8971e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| on the importance of the Moretti ||| 1 0.0782999 1.49697e-06 7.06783e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| on the importance of the ||| 0.0169492 0.0782999 1.49697e-06 1.00969e-09 2.718 ||| 0-0 ||| 59 668016 +a ||| on the importance of ||| 0.00322581 0.0782999 1.49697e-06 1.64467e-08 2.718 ||| 0-0 ||| 310 668016 +a ||| on the importance ||| 0.00268817 0.0782999 1.49697e-06 3.02529e-07 2.718 ||| 0-0 ||| 372 668016 +a ||| on the internal energy market , we ||| 1 0.0782999 1.49697e-06 2.93931e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| on the internal energy market , ||| 0.333333 0.0782999 1.49697e-06 2.58917e-16 2.718 ||| 0-0 ||| 3 668016 +a ||| on the internal energy market ||| 0.0833333 0.0782999 1.49697e-06 2.17113e-15 2.718 ||| 0-0 ||| 12 668016 +a ||| on the internal energy ||| 1 0.0782999 1.49697e-06 9.60676e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| on the internal ||| 0.2 0.0782999 1.49697e-06 1.08063e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| on the journey ||| 0.0666667 0.0782999 1.49697e-06 2.35222e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| on the labelling requirements ||| 1 0.0782999 1.49697e-06 1.50538e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| on the labelling ||| 0.0113636 0.0782999 1.49697e-06 3.09748e-08 2.718 ||| 0-0 ||| 88 668016 +a ||| on the latter ||| 0.025641 0.0782999 1.49697e-06 2.23811e-07 2.718 ||| 0-0 ||| 39 668016 +a ||| on the limit ||| 0.5 0.0782999 1.49697e-06 1.13186e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| on the line ||| 0.0128205 0.0782999 1.49697e-06 6.85638e-07 2.718 ||| 0-0 ||| 78 668016 +a ||| on the market , ||| 0.00606061 0.0782999 1.49697e-06 6.27684e-08 2.718 ||| 0-0 ||| 165 668016 +a ||| on the market ||| 0.000922509 0.0782999 1.49697e-06 5.26339e-07 2.718 ||| 0-0 ||| 1084 668016 +a ||| on the matter ||| 0.00213447 0.0782999 2.99394e-06 2.41627e-06 2.718 ||| 0-0 ||| 937 668016 +a ||| on the matters covered ||| 1 0.0782999 1.49697e-06 3.08491e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on the matters ||| 0.03125 0.0782999 1.49697e-06 4.30853e-07 2.718 ||| 0-0 ||| 32 668016 +a ||| on the members ||| 0.0769231 0.0782999 1.49697e-06 3.43518e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| on the minds of ||| 0.166667 0.0782999 1.49697e-06 6.06463e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| on the minds ||| 0.142857 0.0782999 1.49697e-06 1.11556e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| on the money ||| 0.0588235 0.0782999 1.49697e-06 3.80548e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| on the need to ||| 0.00146413 0.0782999 1.49697e-06 1.89748e-07 2.718 ||| 0-0 ||| 683 668016 +a ||| on the need ||| 0.00245902 0.0782999 4.49091e-06 2.1354e-06 2.718 ||| 0-0 ||| 1220 668016 +a ||| on the one hand , to ||| 0.0142857 0.229811 1.49697e-06 2.83661e-11 2.718 ||| 0-5 ||| 70 668016 +a ||| on the one hand , ||| 0.000892459 0.0782999 2.99394e-06 4.59106e-10 2.718 ||| 0-0 ||| 2241 668016 +a ||| on the one hand ||| 0.000540395 0.0782999 2.99394e-06 3.8498e-09 2.718 ||| 0-0 ||| 3701 668016 +a ||| on the one ||| 0.00151791 0.0782999 7.48485e-06 9.707e-06 2.718 ||| 0-0 ||| 3294 668016 +a ||| on the other hand , ||| 0.000508259 0.0782999 2.99394e-06 1.427e-10 2.718 ||| 0-0 ||| 3935 668016 +a ||| on the other hand ||| 0.00108131 0.0782999 7.48485e-06 1.1966e-09 2.718 ||| 0-0 ||| 4624 668016 +a ||| on the other side , ||| 0.0227273 0.0782999 1.49697e-06 7.88698e-11 2.718 ||| 0-0 ||| 44 668016 +a ||| on the other side ||| 0.003003 0.0782999 1.49697e-06 6.61356e-10 2.718 ||| 0-0 ||| 333 668016 +a ||| on the other ||| 0.00178571 0.0782999 1.64667e-05 3.01713e-06 2.718 ||| 0-0 ||| 6160 668016 +a ||| on the part of the European ||| 0.166667 0.0782999 1.49697e-06 3.09871e-11 2.718 ||| 0-0 ||| 6 668016 +a ||| on the part of the ||| 0.00144928 0.0782999 2.99394e-06 9.26677e-09 2.718 ||| 0-0 ||| 1380 668016 +a ||| on the part of ||| 0.00691857 0.0782999 1.94606e-05 1.50945e-07 2.718 ||| 0-0 ||| 1879 668016 +a ||| on the part ||| 0.010322 0.0782999 3.74243e-05 2.77656e-06 2.718 ||| 0-0 ||| 2422 668016 +a ||| on the path of ||| 0.0227273 0.0188479 1.49697e-06 4.62916e-10 2.718 ||| 0-3 ||| 44 668016 +a ||| on the payment ||| 0.0909091 0.0782999 1.49697e-06 5.86892e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| on the quality of olive oil , ||| 1 0.0782999 1.49697e-06 1.5847e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| on the quality of olive oil ||| 1 0.0782999 1.49697e-06 1.32883e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| on the quality of olive ||| 1 0.0782999 1.49697e-06 3.80755e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| on the quality of ||| 0.00303951 0.0782999 1.49697e-06 6.24188e-09 2.718 ||| 0-0 ||| 329 668016 +a ||| on the quality ||| 0.00246305 0.0782999 1.49697e-06 1.14816e-07 2.718 ||| 0-0 ||| 406 668016 +a ||| on the rampage ||| 0.5 0.0782999 1.49697e-06 2.56183e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| on the receiving ||| 0.0714286 0.0782999 1.49697e-06 6.96351e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| on the road to ||| 0.00367647 0.154056 1.49697e-06 7.2772e-08 2.718 ||| 0-0 0-3 ||| 272 668016 +a ||| on the same footing ||| 0.0192308 0.0782999 1.49697e-06 4.04804e-11 2.718 ||| 0-0 ||| 52 668016 +a ||| on the same information , ||| 1 0.0782999 1.49697e-06 3.69883e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on the same information ||| 1 0.0782999 1.49697e-06 3.10163e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| on the same level as ||| 0.0769231 0.0782999 1.49697e-06 1.63587e-11 2.718 ||| 0-0 ||| 13 668016 +a ||| on the same level ||| 0.0222222 0.0782999 1.49697e-06 1.6031e-09 2.718 ||| 0-0 ||| 45 668016 +a ||| on the same ||| 0.004561 0.0782999 5.98788e-06 1.87409e-06 2.718 ||| 0-0 ||| 877 668016 +a ||| on the serious ||| 0.0357143 0.0782999 1.49697e-06 2.68293e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| on the shoulders of ||| 0.030303 0.0782999 1.49697e-06 1.96246e-09 2.718 ||| 0-0 ||| 33 668016 +a ||| on the shoulders ||| 0.0232558 0.0782999 1.49697e-06 3.60985e-08 2.718 ||| 0-0 ||| 43 668016 +a ||| on the sidelines of ||| 0.0833333 0.0485739 1.49697e-06 2.47991e-10 2.718 ||| 0-0 0-3 ||| 12 668016 +a ||| on the situation of the ||| 0.015873 0.0782999 1.49697e-06 4.00301e-09 2.718 ||| 0-0 ||| 63 668016 +a ||| on the situation of ||| 0.00362319 0.0782999 1.49697e-06 6.52043e-08 2.718 ||| 0-0 ||| 276 668016 +a ||| on the situation ||| 0.000801282 0.0782999 1.49697e-06 1.1994e-06 2.718 ||| 0-0 ||| 1248 668016 +a ||| on the streets , and ||| 0.25 0.0782999 1.49697e-06 1.11325e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| on the streets , ||| 0.0434783 0.0782999 1.49697e-06 8.88757e-10 2.718 ||| 0-0 ||| 23 668016 +a ||| on the streets ||| 0.00444444 0.0782999 1.49697e-06 7.45259e-09 2.718 ||| 0-0 ||| 225 668016 +a ||| on the subject , ||| 0.00512821 0.0782999 1.49697e-06 1.49922e-07 2.718 ||| 0-0 ||| 195 668016 +a ||| on the subject of ||| 0.000742391 0.0782999 1.49697e-06 6.83442e-08 2.718 ||| 0-0 ||| 1347 668016 +a ||| on the subject ||| 0.00242817 0.0782999 8.98182e-06 1.25716e-06 2.718 ||| 0-0 ||| 2471 668016 +a ||| on the surface ||| 0.0357143 0.0782999 1.49697e-06 2.93446e-08 2.718 ||| 0-0 ||| 28 668016 +a ||| on the system ||| 0.0151515 0.0782999 1.49697e-06 6.4954e-07 2.718 ||| 0-0 ||| 66 668016 +a ||| on the table at ||| 0.047619 0.0782999 1.49697e-06 6.60223e-10 2.718 ||| 0-0 ||| 21 668016 +a ||| on the table for ||| 0.0238095 0.0683377 1.49697e-06 1.02473e-09 2.718 ||| 0-3 ||| 42 668016 +a ||| on the table ||| 0.00369004 0.0782999 7.48485e-06 1.57669e-07 2.718 ||| 0-0 ||| 1355 668016 +a ||| on the terrified ||| 0.333333 0.0782999 1.49697e-06 1.63025e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| on the textile sector ||| 0.2 0.0782999 1.49697e-06 1.85968e-12 2.718 ||| 0-0 ||| 5 668016 +a ||| on the textile ||| 0.333333 0.0782999 1.49697e-06 1.00144e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| on the threshold of ||| 0.0121951 0.0782999 1.49697e-06 1.45602e-09 2.718 ||| 0-0 ||| 82 668016 +a ||| on the threshold ||| 0.0102041 0.0782999 1.49697e-06 2.67827e-08 2.718 ||| 0-0 ||| 98 668016 +a ||| on the treatment ||| 0.0277778 0.0782999 1.49697e-06 1.40901e-07 2.718 ||| 0-0 ||| 36 668016 +a ||| on the verge of celebrating ||| 1 0.0782999 1.49697e-06 8.91336e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| on the verge of ||| 0.00740741 0.0782999 1.49697e-06 2.78542e-10 2.718 ||| 0-0 ||| 135 668016 +a ||| on the verge ||| 0.00806452 0.0782999 1.49697e-06 5.12366e-09 2.718 ||| 0-0 ||| 124 668016 +a ||| on the way to ||| 0.0177515 0.229811 4.49091e-06 3.10179e-07 2.718 ||| 0-3 ||| 169 668016 +a ||| on the way towards ||| 0.037037 0.155507 1.49697e-06 2.98631e-09 2.718 ||| 0-3 ||| 27 668016 +a ||| on the way ||| 0.00770218 0.0782999 8.98182e-06 5.02025e-06 2.718 ||| 0-0 ||| 779 668016 +a ||| on the whole ||| 0.004329 0.0782999 4.49091e-06 1.31748e-06 2.718 ||| 0-0 ||| 693 668016 +a ||| on the ||| 0.00726456 0.0782999 0.00155984 0.00232893 2.718 ||| 0-0 ||| 143436 668016 +a ||| on their heads ||| 0.125 0.0782999 1.49697e-06 1.27956e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| on their own ||| 0.00210526 0.0782999 1.49697e-06 7.45443e-08 2.718 ||| 0-0 ||| 475 668016 +a ||| on their way ||| 0.0135135 0.0782999 1.49697e-06 9.47842e-08 2.718 ||| 0-0 ||| 74 668016 +a ||| on their ||| 0.00351617 0.0782999 1.49697e-05 4.39712e-05 2.718 ||| 0-0 ||| 2844 668016 +a ||| on them that is ||| 1 0.0782999 1.49697e-06 5.36478e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on them that ||| 0.0769231 0.0782999 1.49697e-06 1.71174e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| on them to ||| 0.0833333 0.229811 4.49091e-06 6.28719e-06 2.718 ||| 0-2 ||| 36 668016 +a ||| on them when ||| 0.25 0.0782999 1.49697e-06 5.08691e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| on them ||| 0.0255102 0.0782999 2.99394e-05 0.000101758 2.718 ||| 0-0 ||| 784 668016 +a ||| on themselves ||| 0.0769231 0.0782999 2.99394e-06 1.63009e-05 2.718 ||| 0-0 ||| 26 668016 +a ||| on then ||| 0.2 0.0782999 1.49697e-06 6.10915e-05 2.718 ||| 0-0 ||| 5 668016 +a ||| on there ||| 0.0208333 0.0782999 1.49697e-06 0.000116284 2.718 ||| 0-0 ||| 48 668016 +a ||| on these grounds , ||| 0.0714286 0.0782999 1.49697e-06 4.91236e-10 2.718 ||| 0-0 ||| 14 668016 +a ||| on these grounds ||| 0.0333333 0.0782999 1.49697e-06 4.11921e-09 2.718 ||| 0-0 ||| 30 668016 +a ||| on these matters ||| 0.003663 0.0782999 1.49697e-06 7.27846e-09 2.718 ||| 0-0 ||| 273 668016 +a ||| on these ||| 0.00180701 0.0782999 7.48485e-06 3.9343e-05 2.718 ||| 0-0 ||| 2767 668016 +a ||| on they should be involved in ||| 1 0.0685311 1.49697e-06 2.06585e-13 2.718 ||| 0-0 0-5 ||| 1 668016 +a ||| on things ||| 0.016129 0.0782999 1.49697e-06 1.55915e-05 2.718 ||| 0-0 ||| 62 668016 +a ||| on this , ||| 0.0031348 0.0782999 2.99394e-06 2.92314e-05 2.718 ||| 0-0 ||| 638 668016 +a ||| on this . ||| 0.000914077 0.0782999 1.49697e-06 7.4246e-07 2.718 ||| 0-0 ||| 1094 668016 +a ||| on this and ||| 0.00456621 0.0782999 1.49697e-06 3.07031e-06 2.718 ||| 0-0 ||| 219 668016 +a ||| on this area ||| 0.0149254 0.0782999 1.49697e-06 1.01797e-07 2.718 ||| 0-0 ||| 67 668016 +a ||| on this earth . ||| 0.111111 0.0782999 1.49697e-06 1.06914e-11 2.718 ||| 0-0 ||| 9 668016 +a ||| on this earth ||| 0.030303 0.0782999 1.49697e-06 3.52969e-09 2.718 ||| 0-0 ||| 33 668016 +a ||| on this in bringing ||| 1 0.0782999 1.49697e-06 4.21303e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| on this in practice ||| 1 0.0782999 1.49697e-06 5.52993e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| on this in ||| 0.013986 0.0782999 2.99394e-06 5.24661e-06 2.718 ||| 0-0 ||| 143 668016 +a ||| on this issue . the Malta Conference ||| 1 0.0782999 1.49697e-06 2.58027e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| on this issue . the Malta ||| 1 0.0782999 1.49697e-06 1.37983e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| on this issue . the ||| 0.333333 0.0782999 1.49697e-06 3.44957e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| on this issue . ||| 0.000896861 0.0782999 1.49697e-06 5.61893e-10 2.718 ||| 0-0 ||| 1115 668016 +a ||| on this issue with the ||| 0.111111 0.0782999 1.49697e-06 7.28235e-11 2.718 ||| 0-0 ||| 9 668016 +a ||| on this issue with ||| 0.0454545 0.0782999 1.49697e-06 1.18621e-09 2.718 ||| 0-0 ||| 22 668016 +a ||| on this issue ||| 0.0014828 0.0782999 7.48485e-06 1.85505e-07 2.718 ||| 0-0 ||| 3372 668016 +a ||| on this matter , ||| 0.0025974 0.0782999 1.49697e-06 3.03275e-08 2.718 ||| 0-0 ||| 385 668016 +a ||| on this matter ||| 0.00330813 0.0782999 1.04788e-05 2.54309e-07 2.718 ||| 0-0 ||| 2116 668016 +a ||| on this now ||| 0.1 0.0782999 1.49697e-06 5.04917e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| on this point , the important thing ||| 0.5 0.0782999 1.49697e-06 2.19746e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| on this point , the important ||| 0.5 0.0782999 1.49697e-06 6.02208e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| on this point , the ||| 0.0238095 0.0782999 1.49697e-06 1.56989e-09 2.718 ||| 0-0 ||| 42 668016 +a ||| on this point , ||| 0.00198807 0.0782999 1.49697e-06 2.55716e-08 2.718 ||| 0-0 ||| 503 668016 +a ||| on this point ||| 0.000616903 0.0782999 1.49697e-06 2.14428e-07 2.718 ||| 0-0 ||| 1621 668016 +a ||| on this question ||| 0.00387597 0.0782999 1.49697e-06 2.02785e-07 2.718 ||| 0-0 ||| 258 668016 +a ||| on this subject , as well as ||| 1 0.0782999 1.49697e-06 2.60526e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| on this subject , as well ||| 1 0.0782999 1.49697e-06 2.55307e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| on this subject , as ||| 0.125 0.0782999 1.49697e-06 1.61016e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| on this subject , ||| 0.00220751 0.0782999 1.49697e-06 1.57791e-08 2.718 ||| 0-0 ||| 453 668016 +a ||| on this subject ||| 0.00112994 0.0782999 2.99394e-06 1.32314e-07 2.718 ||| 0-0 ||| 1770 668016 +a ||| on this to ||| 0.0666667 0.0782999 1.49697e-06 2.17807e-05 2.718 ||| 0-0 ||| 15 668016 +a ||| on this ||| 0.00247468 0.0782999 8.08364e-05 0.000245117 2.718 ||| 0-0 ||| 21821 668016 +a ||| on those ||| 0.00301508 0.0782999 4.49091e-06 2.74692e-05 2.718 ||| 0-0 ||| 995 668016 +a ||| on time ||| 0.00675676 0.0782999 4.49091e-06 6.22789e-05 2.718 ||| 0-0 ||| 444 668016 +a ||| on to Marrakesh ||| 1 0.229811 1.49697e-06 9.37547e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| on to a ||| 0.0606061 0.154056 2.99394e-06 0.000589041 2.718 ||| 0-0 0-1 ||| 33 668016 +a ||| on to be ||| 0.2 0.154056 1.49697e-06 0.000240833 2.718 ||| 0-0 0-1 ||| 5 668016 +a ||| on to deal with ||| 0.333333 0.0782999 1.49697e-06 9.15232e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| on to deal ||| 0.5 0.0782999 1.49697e-06 1.43128e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| on to do ||| 0.166667 0.154056 1.49697e-06 4.56514e-05 2.718 ||| 0-0 0-1 ||| 6 668016 +a ||| on to express ||| 0.111111 0.0782999 1.49697e-06 3.42145e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| on to its ||| 0.1 0.0782999 1.49697e-06 4.80251e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| on to learned professional ||| 1 0.0782999 1.49697e-06 8.84117e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| on to learned ||| 1 0.0782999 1.49697e-06 5.326e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on to make some comments on ||| 1 0.128804 1.49697e-06 4.77148e-14 2.718 ||| 0-0 0-1 0-5 ||| 1 668016 +a ||| on to make ||| 0.0769231 0.154056 1.49697e-06 2.30935e-05 2.718 ||| 0-0 0-1 ||| 13 668016 +a ||| on to produce a ||| 1 0.0782999 1.49697e-06 1.32234e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on to produce ||| 0.5 0.0782999 1.49697e-06 2.98324e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| on to socalled ' ||| 1 0.229811 1.49697e-06 3.22038e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| on to socalled ||| 1 0.229811 1.49697e-06 9.37547e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| on to something else ||| 0.5 0.0782999 1.49697e-06 2.20163e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| on to something ||| 0.5 0.0782999 1.49697e-06 1.86579e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| on to the field of ||| 1 0.229811 1.49697e-06 1.14289e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| on to the field ||| 1 0.229811 1.49697e-06 2.1023e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| on to the subject ||| 0.0769231 0.0782999 1.49697e-06 1.11709e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| on to the ||| 0.00757576 0.229811 5.98788e-06 0.000143894 2.718 ||| 0-1 ||| 528 668016 +a ||| on to ||| 0.356071 0.154056 0.000781418 0.0132889 2.718 ||| 0-0 0-1 ||| 1466 668016 +a ||| on tobacco products ||| 0.04 0.0782999 1.49697e-06 8.79802e-11 2.718 ||| 0-0 ||| 25 668016 +a ||| on tobacco ||| 0.01 0.0782999 1.49697e-06 8.45964e-07 2.718 ||| 0-0 ||| 100 668016 +a ||| on today ||| 0.00740741 0.0782999 1.49697e-06 1.71203e-05 2.718 ||| 0-0 ||| 135 668016 +a ||| on top of everything ||| 0.0625 0.0782999 1.49697e-06 1.31819e-11 2.718 ||| 0-0 ||| 16 668016 +a ||| on top of ||| 0.03125 0.0782999 1.64667e-05 1.42507e-07 2.718 ||| 0-0 ||| 352 668016 +a ||| on top ||| 0.0263158 0.0782999 1.64667e-05 2.62135e-06 2.718 ||| 0-0 ||| 418 668016 +a ||| on towards ||| 0.166667 0.116903 1.49697e-06 0.000127942 2.718 ||| 0-0 0-1 ||| 6 668016 +a ||| on track ||| 0.014218 0.0782999 4.49091e-06 1.50225e-06 2.718 ||| 0-0 ||| 211 668016 +a ||| on until the ||| 0.5 0.0525954 1.49697e-06 5.33559e-07 2.718 ||| 0-0 0-1 ||| 2 668016 +a ||| on until ||| 0.3 0.0525954 4.49091e-06 8.69105e-06 2.718 ||| 0-0 0-1 ||| 10 668016 +a ||| on unused ||| 1 0.0782999 1.49697e-06 6.82841e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on up ||| 0.5 0.0782999 1.49697e-06 0.000129379 2.718 ||| 0-0 ||| 2 668016 +a ||| on us , binding on the ||| 0.5 0.0782999 1.49697e-06 9.42672e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| on us , binding on ||| 0.5 0.0782999 1.49697e-06 1.5355e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| on us in ||| 0.0625 0.0685311 1.49697e-06 6.5693e-06 2.718 ||| 0-0 0-2 ||| 16 668016 +a ||| on us ||| 0.0229592 0.0782999 1.34727e-05 0.000109338 2.718 ||| 0-0 ||| 392 668016 +a ||| on using ||| 0.00925926 0.0782999 1.49697e-06 2.9476e-06 2.718 ||| 0-0 ||| 108 668016 +a ||| on very small farms ||| 1 0.0782999 1.49697e-06 1.58943e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| on very small ||| 1 0.0782999 1.49697e-06 1.69088e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on very ||| 0.0277778 0.0782999 1.49697e-06 0.000131997 2.718 ||| 0-0 ||| 36 668016 +a ||| on water ||| 0.00884956 0.0782999 1.49697e-06 2.15854e-06 2.718 ||| 0-0 ||| 113 668016 +a ||| on we decided on ||| 1 0.0782999 1.49697e-06 1.97096e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| on we decided ||| 1 0.0782999 1.49697e-06 2.94569e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| on we ||| 0.0833333 0.0782999 1.49697e-06 0.000430656 2.718 ||| 0-0 ||| 12 668016 +a ||| on what is expected ||| 0.1 0.0782999 1.49697e-06 8.89154e-11 2.718 ||| 0-0 ||| 10 668016 +a ||| on what is ||| 0.00687285 0.0782999 2.99394e-06 1.66821e-06 2.718 ||| 0-0 ||| 291 668016 +a ||| on what ||| 0.00109769 0.0782999 2.99394e-06 5.32274e-05 2.718 ||| 0-0 ||| 1822 668016 +a ||| on where ||| 0.0104167 0.0782999 1.49697e-06 1.14945e-05 2.718 ||| 0-0 ||| 96 668016 +a ||| on whether a ||| 0.0714286 0.0782999 1.49697e-06 4.41737e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| on whether ||| 0.00546448 0.0782999 4.49091e-06 9.96568e-06 2.718 ||| 0-0 ||| 549 668016 +a ||| on which he will be able ||| 1 0.0782999 1.49697e-06 3.68123e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| on which he will be ||| 1 0.0782999 1.49697e-06 4.40919e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on which he will ||| 1 0.0782999 1.49697e-06 2.43294e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| on which he ||| 0.1 0.0782999 1.49697e-06 2.81226e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| on which it is built ||| 1 0.0782999 1.49697e-06 8.92628e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| on which it is ||| 0.0208333 0.0782999 1.49697e-06 1.79603e-07 2.718 ||| 0-0 ||| 48 668016 +a ||| on which it will be ||| 0.166667 0.0782999 1.49697e-06 8.98471e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| on which it will ||| 0.166667 0.0782999 1.49697e-06 4.95765e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| on which it ||| 0.0350877 0.0782999 2.99394e-06 5.7306e-06 2.718 ||| 0-0 ||| 57 668016 +a ||| on which they have encountered ||| 1 0.0782999 1.49697e-06 5.03181e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| on which they have ||| 0.142857 0.0782999 1.49697e-06 1.25795e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| on which they ||| 0.0357143 0.0782999 1.49697e-06 1.05182e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| on which you can ||| 0.2 0.0782999 1.49697e-06 3.09458e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| on which you ||| 0.0222222 0.0782999 1.49697e-06 1.04044e-06 2.718 ||| 0-0 ||| 45 668016 +a ||| on which ||| 0.00453983 0.0782999 3.29333e-05 0.000322248 2.718 ||| 0-0 ||| 4846 668016 +a ||| on whom responsibilities can be imposed ||| 1 0.0782999 1.49697e-06 1.80861e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| on whom responsibilities can be ||| 1 0.0782999 1.49697e-06 3.24124e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| on whom responsibilities can ||| 1 0.0782999 1.49697e-06 1.78848e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| on whom responsibilities ||| 1 0.0782999 1.49697e-06 6.0131e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| on whom ||| 0.0212766 0.0782999 1.49697e-06 2.52651e-06 2.718 ||| 0-0 ||| 47 668016 +a ||| on with ||| 0.0836653 0.0677295 3.14364e-05 0.000633339 2.718 ||| 0-0 0-1 ||| 251 668016 +a ||| on women ||| 0.00355872 0.0782999 1.49697e-06 4.50675e-06 2.718 ||| 0-0 ||| 281 668016 +a ||| on yet another ||| 0.0833333 0.0782999 1.49697e-06 2.41919e-09 2.718 ||| 0-0 ||| 12 668016 +a ||| on yet ||| 0.2 0.0782999 1.49697e-06 1.0034e-05 2.718 ||| 0-0 ||| 5 668016 +a ||| on you to ||| 0.0425532 0.102882 2.99394e-06 9.7009e-07 2.718 ||| 0-0 0-1 0-2 ||| 47 668016 +a ||| on you ||| 0.0215054 0.0782999 5.98788e-06 0.000122483 2.718 ||| 0-0 ||| 186 668016 +a ||| on your side ||| 0.0151515 0.0782999 1.49697e-06 2.12793e-09 2.718 ||| 0-0 ||| 66 668016 +a ||| on your ||| 0.00211193 0.0782999 2.99394e-06 9.70772e-06 2.718 ||| 0-0 ||| 947 668016 +a ||| on ||| 0.0564397 0.0782999 0.0386772 0.0379356 2.718 ||| 0-0 ||| 457781 668016 +a ||| onboard ||| 0.0238095 0.362069 1.49697e-06 1.92e-05 2.718 ||| 0-0 ||| 42 668016 +a ||| once again , to ||| 0.0142857 0.229811 1.49697e-06 9.88568e-09 2.718 ||| 0-3 ||| 70 668016 +a ||| once again , ||| 0.000423729 0.0700825 1.49697e-06 1.13136e-07 2.718 ||| 0-1 ||| 2360 668016 +a ||| once again and ||| 0.0151515 0.0700825 1.49697e-06 1.18832e-08 2.718 ||| 0-1 ||| 66 668016 +a ||| once again back on track ||| 0.333333 0.0782999 1.49697e-06 2.39105e-16 2.718 ||| 0-3 ||| 3 668016 +a ||| once again back on ||| 0.333333 0.0782999 1.49697e-06 6.03799e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| once again both to ||| 1 0.229811 1.49697e-06 1.37316e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| once again confirming ||| 0.333333 0.0700825 1.49697e-06 1.04356e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| once again for ||| 0.00373134 0.0683377 1.49697e-06 8.71984e-09 2.718 ||| 0-2 ||| 268 668016 +a ||| once again going to ||| 0.1 0.0700825 1.49697e-06 7.21429e-11 2.718 ||| 0-1 ||| 10 668016 +a ||| once again going ||| 0.0909091 0.0700825 1.49697e-06 8.11888e-10 2.718 ||| 0-1 ||| 11 668016 +a ||| once again in ||| 0.00806452 0.0587624 1.49697e-06 1.42179e-08 2.718 ||| 0-2 ||| 124 668016 +a ||| once again on the fact ||| 0.25 0.0782999 1.49697e-06 1.6144e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| once again on the ||| 0.0243902 0.0782999 1.49697e-06 5.5112e-10 2.718 ||| 0-2 ||| 41 668016 +a ||| once again on ||| 0.010101 0.0782999 1.49697e-06 8.97709e-09 2.718 ||| 0-2 ||| 99 668016 +a ||| once again to ||| 0.0060241 0.229811 4.49091e-06 8.28955e-08 2.718 ||| 0-2 ||| 498 668016 +a ||| once again ||| 0.00291288 0.0700825 4.94e-05 9.48689e-07 2.718 ||| 0-1 ||| 11329 668016 +a ||| once and for all , ||| 0.00301205 0.0683377 1.49697e-06 1.06434e-10 2.718 ||| 0-2 ||| 332 668016 +a ||| once and for all ||| 0.00136705 0.0683377 2.99394e-06 8.92489e-10 2.718 ||| 0-2 ||| 1463 668016 +a ||| once and for ||| 0.00159872 0.0683377 2.99394e-06 1.88871e-07 2.718 ||| 0-2 ||| 1251 668016 +a ||| once attributed to ||| 0.333333 0.229811 1.49697e-06 9.31732e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| once been tested ||| 0.25 0.143456 1.49697e-06 1.708e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| once it is ||| 0.0125 0.0006453 1.49697e-06 3.80383e-09 2.718 ||| 0-1 ||| 80 668016 +a ||| once it mixed to ||| 1 0.229811 1.49697e-06 2.39616e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| once it ||| 0.00438596 0.0006453 1.49697e-06 1.21369e-07 2.718 ||| 0-1 ||| 228 668016 +a ||| once more by ||| 0.333333 0.0337966 1.49697e-06 7.68852e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| once more to ||| 0.0210526 0.229811 2.99394e-06 3.27353e-07 2.718 ||| 0-2 ||| 95 668016 +a ||| once ||| 0.000133298 0.0008161 1.49697e-06 2.01e-05 2.718 ||| 0-0 ||| 7502 668016 +a ||| one ' ||| 0.0126582 0.0001378 1.49697e-06 4.08753e-08 2.718 ||| 0-0 ||| 79 668016 +a ||| one , giving ||| 0.2 0.136521 1.49697e-06 5.01328e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| one , in ||| 0.0222222 0.0587624 1.49697e-06 2.98642e-05 2.718 ||| 0-2 ||| 45 668016 +a ||| one , to ||| 0.0869565 0.229811 2.99394e-06 0.000174119 2.718 ||| 0-2 ||| 23 668016 +a ||| one , ||| 0.000581395 0.0001378 1.49697e-06 1.41913e-06 2.718 ||| 0-0 ||| 1720 668016 +a ||| one - for ||| 1 0.0683377 1.49697e-06 5.79336e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| one and ||| 0.00344828 0.0015873 2.99394e-06 8.04216e-06 2.718 ||| 0-1 ||| 580 668016 +a ||| one at a ||| 0.5 0.204175 1.49697e-06 6.28804e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| one at the ||| 0.0588235 0.204175 1.49697e-06 8.70901e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| one at ||| 0.0898876 0.204175 1.19758e-05 0.00014186 2.718 ||| 0-1 ||| 89 668016 +a ||| one because ||| 0.0227273 0.0052046 1.49697e-06 1.34668e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| one by one , ||| 0.0322581 0.0337966 1.49697e-06 1.70451e-08 2.718 ||| 0-1 ||| 31 668016 +a ||| one by one ||| 0.0172414 0.0337966 2.99394e-06 1.4293e-07 2.718 ||| 0-1 ||| 116 668016 +a ||| one by ||| 0.0179641 0.0337966 4.49091e-06 3.42922e-05 2.718 ||| 0-1 ||| 167 668016 +a ||| one cannot fail to ||| 0.0625 0.229811 1.49697e-06 1.77633e-11 2.718 ||| 0-3 ||| 16 668016 +a ||| one day , ||| 0.00657895 0.0001378 1.49697e-06 3.63581e-10 2.718 ||| 0-0 ||| 152 668016 +a ||| one day go down ||| 0.5 0.0226513 1.49697e-06 2.27995e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| one day on hold ||| 1 0.0782999 1.49697e-06 7.0567e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| one day on ||| 1 0.0782999 1.49697e-06 4.05092e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| one day ||| 0.000979432 0.0001378 1.49697e-06 3.04878e-09 2.718 ||| 0-0 ||| 1021 668016 +a ||| one for the ||| 0.00925926 0.0683377 1.49697e-06 9.42883e-06 2.718 ||| 0-1 ||| 108 668016 +a ||| one for ||| 0.02 0.0683377 1.19758e-05 0.000153585 2.718 ||| 0-1 ||| 400 668016 +a ||| one hand , to ||| 0.0232558 0.229811 2.99394e-06 6.90555e-08 2.718 ||| 0-3 ||| 86 668016 +a ||| one has to ||| 0.00537634 0.229811 1.49697e-06 7.51564e-06 2.718 ||| 0-2 ||| 186 668016 +a ||| one in the sense ||| 1 0.0587624 1.49697e-06 2.7381e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| one in the ||| 0.00869565 0.0587624 1.49697e-06 1.5374e-05 2.718 ||| 0-1 ||| 115 668016 +a ||| one in which ||| 0.0136986 0.0587624 2.99394e-06 2.12725e-06 2.718 ||| 0-1 ||| 146 668016 +a ||| one in ||| 0.00585774 0.0587624 1.04788e-05 0.000250424 2.718 ||| 0-1 ||| 1195 668016 +a ||| one into ||| 0.2 0.107578 1.49697e-06 2.53177e-05 2.718 ||| 0-1 ||| 5 668016 +a ||| one is in ||| 0.0322581 0.0587624 1.49697e-06 7.84856e-06 2.718 ||| 0-2 ||| 31 668016 +a ||| one more thing to ||| 0.166667 0.229811 1.49697e-06 1.2167e-09 2.718 ||| 0-3 ||| 6 668016 +a ||| one national currency to another ||| 1 0.229811 1.49697e-06 1.69177e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| one national currency to ||| 1 0.229811 1.49697e-06 7.01689e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| one of the reasons for ||| 0.0102041 0.0683377 1.49697e-06 5.18227e-11 2.718 ||| 0-4 ||| 98 668016 +a ||| one of the things ||| 0.00454545 0.0188479 1.49697e-06 3.11069e-09 2.718 ||| 0-1 ||| 220 668016 +a ||| one of the ||| 0.000120286 0.0188479 2.99394e-06 7.56858e-06 2.718 ||| 0-1 ||| 16627 668016 +a ||| one of these ||| 0.0016 0.0188479 1.49697e-06 1.27857e-07 2.718 ||| 0-1 ||| 625 668016 +a ||| one of ||| 0.0012449 0.0188479 4.34121e-05 0.000123283 2.718 ||| 0-1 ||| 23295 668016 +a ||| one on which ||| 0.0212766 0.0782999 1.49697e-06 1.34313e-06 2.718 ||| 0-1 ||| 47 668016 +a ||| one on ||| 0.00268097 0.0782999 1.49697e-06 0.000158116 2.718 ||| 0-1 ||| 373 668016 +a ||| one opposes ||| 1 0.255282 1.49697e-06 5.51426e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| one or ||| 0.00184672 0.0008359 2.99394e-06 3.23437e-07 2.718 ||| 0-1 ||| 1083 668016 +a ||| one small stroke after another , ||| 1 0.0341027 1.49697e-06 5.53702e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| one small stroke after another ||| 1 0.0341027 1.49697e-06 4.64302e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| one small stroke after ||| 1 0.0341027 1.49697e-06 1.92577e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| one that involves ||| 0.166667 0.0345134 1.49697e-06 5.63692e-10 2.718 ||| 0-1 0-2 ||| 6 668016 +a ||| one thing and meaning another ||| 0.166667 0.0015873 1.49697e-06 2.16504e-17 2.718 ||| 0-2 ||| 6 668016 +a ||| one thing and meaning ||| 0.166667 0.0015873 1.49697e-06 8.97982e-14 2.718 ||| 0-2 ||| 6 668016 +a ||| one thing and ||| 0.0153846 0.0015873 1.49697e-06 2.93458e-09 2.718 ||| 0-2 ||| 65 668016 +a ||| one to also cover ||| 1 0.229811 1.49697e-06 5.75694e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| one to also ||| 1 0.229811 1.49697e-06 7.37124e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| one to bed ||| 1 0.229811 1.49697e-06 4.67218e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| one to ||| 0.0814607 0.229811 4.34121e-05 0.00146006 2.718 ||| 0-1 ||| 356 668016 +a ||| one were to ||| 0.1 0.229811 1.49697e-06 2.61555e-06 2.718 ||| 0-2 ||| 10 668016 +a ||| one with ||| 0.005 0.0571592 1.49697e-06 6.95852e-05 2.718 ||| 0-1 ||| 200 668016 +a ||| one ||| 0.00010302 0.0001378 1.19758e-05 1.19e-05 2.718 ||| 0-0 ||| 77655 668016 +a ||| one ’ s way to ||| 1 0.229811 1.49697e-06 1.04301e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| ones , on ||| 0.333333 0.0782999 1.49697e-06 9.99804e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| ones at ||| 0.0769231 0.204175 1.49697e-06 7.52182e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| ones for ||| 0.0769231 0.0683377 1.49697e-06 8.14352e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| ones in ||| 0.0277778 0.0587624 1.49697e-06 1.32782e-05 2.718 ||| 0-1 ||| 36 668016 +a ||| ones of ||| 0.2 0.0188479 1.49697e-06 6.53685e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| oneself to ||| 0.2 0.229811 1.49697e-06 2.9075e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| only 10 % of women achieve high-level ||| 1 0.0188479 1.49697e-06 2.96581e-27 2.718 ||| 0-3 ||| 1 668016 +a ||| only 10 % of women achieve ||| 1 0.0188479 1.49697e-06 8.23835e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| only 10 % of women ||| 1 0.0188479 1.49697e-06 3.6054e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| only 10 % of ||| 0.0192308 0.0188479 1.49697e-06 3.03485e-14 2.718 ||| 0-3 ||| 52 668016 +a ||| only about ||| 0.00389105 0.0526361 1.49697e-06 5.60924e-06 2.718 ||| 0-1 ||| 257 668016 +a ||| only addresses in ||| 1 0.0587624 1.49697e-06 3.34389e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| only after the ||| 0.0333333 0.0341027 1.49697e-06 5.73196e-08 2.718 ||| 0-1 ||| 30 668016 +a ||| only after ||| 0.00619195 0.0341027 2.99394e-06 9.33668e-07 2.718 ||| 0-1 ||| 323 668016 +a ||| only as strong ||| 0.1 0.0243476 1.49697e-06 8.29011e-10 2.718 ||| 0-1 ||| 10 668016 +a ||| only as ||| 0.00326797 0.0243476 1.49697e-06 9.76456e-06 2.718 ||| 0-1 ||| 306 668016 +a ||| only at a ||| 0.04 0.204175 1.49697e-06 1.67927e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| only at ||| 0.022293 0.204175 1.04788e-05 3.78848e-05 2.718 ||| 0-1 ||| 314 668016 +a ||| only be able to take part in ||| 1 0.0587624 1.49697e-06 1.7259e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| only be claimed for ||| 0.333333 0.0683377 1.49697e-06 1.47179e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| only be recommended for ||| 1 0.0683377 1.49697e-06 4.01398e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| only because of ||| 0.00628931 0.0052046 1.49697e-06 1.95516e-08 2.718 ||| 0-1 ||| 159 668016 +a ||| only because ||| 0.00178891 0.0052046 1.49697e-06 3.59643e-07 2.718 ||| 0-1 ||| 559 668016 +a ||| only by ||| 0.00277008 0.0337966 2.99394e-06 9.15803e-06 2.718 ||| 0-1 ||| 722 668016 +a ||| only cause to ||| 0.5 0.229811 1.49697e-06 7.04587e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| only compensating in dribs and ||| 1 0.0587624 1.49697e-06 4.69115e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| only compensating in dribs ||| 1 0.0587624 1.49697e-06 3.74516e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| only compensating in ||| 1 0.0587624 1.49697e-06 9.3629e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| only covers ||| 0.0149254 0.0266836 1.49697e-06 4.26317e-08 2.718 ||| 0-1 ||| 67 668016 +a ||| only depend on what is expected ||| 0.111111 0.0782999 1.49697e-06 1.82108e-18 2.718 ||| 0-2 ||| 9 668016 +a ||| only depend on what is ||| 0.111111 0.0782999 1.49697e-06 3.41666e-14 2.718 ||| 0-2 ||| 9 668016 +a ||| only depend on what ||| 0.111111 0.0782999 1.49697e-06 1.09015e-12 2.718 ||| 0-2 ||| 9 668016 +a ||| only depend on ||| 0.0666667 0.0782999 1.49697e-06 7.76961e-10 2.718 ||| 0-2 ||| 15 668016 +a ||| only encourage them to carry ||| 1 0.229811 1.49697e-06 7.38919e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| only encourage them to ||| 0.5 0.229811 1.49697e-06 4.0268e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| only ever makes love to children ||| 1 0.229811 1.49697e-06 7.04801e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| only ever makes love to ||| 1 0.229811 1.49697e-06 9.46041e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| only felt after ||| 1 0.0341027 1.49697e-06 5.34058e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| only for ||| 0.00135318 0.0683377 2.99394e-06 4.10161e-05 2.718 ||| 0-1 ||| 1478 668016 +a ||| only forwarded to ||| 0.5 0.229811 1.49697e-06 1.24775e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| only from ||| 0.00409836 0.0435582 1.49697e-06 8.01298e-06 2.718 ||| 0-1 ||| 244 668016 +a ||| only give ||| 0.037037 0.0241455 1.49697e-06 6.25896e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| only have to ask the people living ||| 0.5 0.229811 1.49697e-06 2.90361e-18 2.718 ||| 0-2 ||| 2 668016 +a ||| only have to ask the people ||| 0.5 0.229811 1.49697e-06 3.46493e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| only have to ask the ||| 0.5 0.229811 1.49697e-06 3.93653e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| only have to ask ||| 0.5 0.229811 1.49697e-06 6.41214e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| only have to ||| 0.0181818 0.229811 2.99394e-06 4.66337e-06 2.718 ||| 0-2 ||| 110 668016 +a ||| only in the ||| 0.00156986 0.0587624 1.49697e-06 4.10575e-06 2.718 ||| 0-1 ||| 637 668016 +a ||| only in ||| 0.00196618 0.0587624 7.48485e-06 6.68778e-05 2.718 ||| 0-1 ||| 2543 668016 +a ||| only interested in ||| 0.0909091 0.0587624 1.49697e-06 1.41781e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| only need to ||| 0.0238095 0.229811 1.49697e-06 3.57518e-07 2.718 ||| 0-2 ||| 42 668016 +a ||| only now coming ||| 0.5 0.00208 1.49697e-06 2.88295e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| only now ||| 0.00653595 0.00208 1.49697e-06 1.48376e-07 2.718 ||| 0-1 ||| 153 668016 +a ||| only on a ||| 0.0454545 0.0782999 1.49697e-06 1.87171e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| only on the ||| 0.00348432 0.0782999 1.49697e-06 2.59234e-06 2.718 ||| 0-1 ||| 287 668016 +a ||| only on ||| 0.00704225 0.0782999 8.98182e-06 4.22261e-05 2.718 ||| 0-1 ||| 852 668016 +a ||| only possible for people or businesses ||| 1 0.0683377 1.49697e-06 8.80655e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| only possible for people or ||| 1 0.0683377 1.49697e-06 3.31073e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| only possible for people ||| 1 0.0683377 1.49697e-06 2.89577e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| only possible for ||| 0.25 0.0683377 1.49697e-06 3.2899e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| only remain in place ||| 1 0.0587624 1.49697e-06 1.2209e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| only remain in ||| 1 0.0587624 1.49697e-06 8.11228e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| only serve to ||| 0.0144928 0.229811 1.49697e-06 2.66706e-08 2.718 ||| 0-2 ||| 69 668016 +a ||| only set up at ||| 1 0.204175 1.49697e-06 7.55081e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| only then on ||| 1 0.0782999 1.49697e-06 6.80009e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| only to be expected , given ||| 0.166667 0.229811 1.49697e-06 3.08263e-14 2.718 ||| 0-1 ||| 6 668016 +a ||| only to be expected , ||| 0.1 0.229811 1.49697e-06 4.49166e-11 2.718 ||| 0-1 ||| 10 668016 +a ||| only to be expected ||| 0.0238095 0.229811 1.49697e-06 3.76644e-10 2.718 ||| 0-1 ||| 42 668016 +a ||| only to be faced ||| 0.5 0.229811 1.49697e-06 4.47309e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| only to be ||| 0.0196078 0.229811 2.99394e-06 7.06649e-06 2.718 ||| 0-1 ||| 102 668016 +a ||| only to continue to ||| 0.5 0.229811 1.49697e-06 8.01747e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| only to give it back to them ||| 0.25 0.229811 1.49697e-06 6.73654e-16 2.718 ||| 0-1 ||| 4 668016 +a ||| only to give it back to ||| 0.25 0.229811 1.49697e-06 2.51138e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| only to give it back ||| 0.25 0.229811 1.49697e-06 2.82628e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| only to give it ||| 0.25 0.229811 1.49697e-06 4.20203e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| only to give ||| 0.0625 0.229811 1.49697e-06 2.36292e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| only to remember ||| 0.333333 0.229811 1.49697e-06 1.4583e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| only to ||| 0.0140909 0.229811 4.64061e-05 0.000389921 2.718 ||| 0-1 ||| 2200 668016 +a ||| only too aware of the historical examples ||| 1 0.0188479 1.49697e-06 2.84247e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| only too aware of the historical ||| 1 0.0188479 1.49697e-06 1.64305e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| only too aware of the ||| 0.142857 0.0188479 1.49697e-06 3.82104e-13 2.718 ||| 0-3 ||| 7 668016 +a ||| only too aware of ||| 0.111111 0.0188479 1.49697e-06 6.22402e-12 2.718 ||| 0-3 ||| 9 668016 +a ||| only when ||| 0.00207469 0.0055468 1.49697e-06 3.45395e-07 2.718 ||| 0-1 ||| 482 668016 +a ||| only with ||| 0.00392157 0.0571592 2.99394e-06 1.85833e-05 2.718 ||| 0-1 ||| 510 668016 +a ||| only ||| 0.000233068 0.0004289 2.54485e-05 2.92e-05 2.718 ||| 0-0 ||| 72940 668016 +a ||| onto society ||| 1 0.207143 1.49697e-06 1.37918e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| onto the market over ||| 1 0.207143 1.49697e-06 1.59132e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| onto the market ||| 0.0165289 0.207143 2.99394e-06 3.30492e-09 2.718 ||| 0-0 ||| 121 668016 +a ||| onto the street at ||| 0.142857 0.204175 1.49697e-06 5.90909e-13 2.718 ||| 0-3 ||| 7 668016 +a ||| onto the target of ||| 0.5 0.0188479 1.49697e-06 1.38653e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| onto the ||| 0.00552486 0.207143 2.99394e-06 1.46235e-05 2.718 ||| 0-0 ||| 362 668016 +a ||| onto their ||| 0.0714286 0.207143 1.49697e-06 2.76098e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| onto ||| 0.219745 0.207143 0.000206582 0.0002382 2.718 ||| 0-0 ||| 628 668016 +a ||| onwards ||| 0.0202312 0.260125 1.04788e-05 0.0001524 2.718 ||| 0-0 ||| 346 668016 +a ||| open a window for ||| 0.5 0.0683377 1.49697e-06 2.9489e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| open access for ||| 0.333333 0.0683377 1.49697e-06 5.10838e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| open door for ||| 0.125 0.0683377 1.49697e-06 2.69081e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| open for ||| 0.0191083 0.0683377 4.49091e-06 5.93998e-06 2.718 ||| 0-1 ||| 157 668016 +a ||| open the way for funding for ||| 0.5 0.0683377 1.49697e-06 3.22013e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| open the way for funding ||| 0.5 0.0683377 1.49697e-06 4.18977e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| open the way for ||| 0.0285714 0.0683377 1.49697e-06 7.86074e-10 2.718 ||| 0-3 ||| 35 668016 +a ||| open to accusations ||| 0.125 0.229811 1.49697e-06 1.24231e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| open to public scrutiny ||| 0.0909091 0.229811 1.49697e-06 1.37792e-13 2.718 ||| 0-1 ||| 11 668016 +a ||| open to public ||| 0.166667 0.229811 1.49697e-06 9.12533e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| open to ||| 0.0128023 0.229811 2.69455e-05 5.64686e-05 2.718 ||| 0-1 ||| 1406 668016 +a ||| open up ||| 0.00315126 0.0195077 4.49091e-06 1.97889e-07 2.718 ||| 0-1 ||| 952 668016 +a ||| open wide to ||| 1 0.229811 1.49697e-06 2.3378e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| open ||| 0.000106838 9.17e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 9360 668016 +a ||| opened for ||| 0.047619 0.0683377 1.49697e-06 9.54376e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| opened to ||| 0.0869565 0.229811 2.99394e-06 9.07281e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| opened up for ||| 0.05 0.0683377 1.49697e-06 3.2549e-09 2.718 ||| 0-2 ||| 20 668016 +a ||| opened up the opportunity to pass ||| 1 0.229811 1.49697e-06 1.95478e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| opened up the opportunity to ||| 1 0.229811 1.49697e-06 3.41744e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| opened up to ||| 0.0135135 0.229811 1.49697e-06 3.09428e-08 2.718 ||| 0-2 ||| 74 668016 +a ||| opening up to ||| 0.0225564 0.229811 4.49091e-06 3.35712e-08 2.718 ||| 0-2 ||| 133 668016 +a ||| openly and cynically ||| 0.333333 0.0017652 1.49697e-06 9.01865e-15 2.718 ||| 0-0 ||| 3 668016 +a ||| openly and ||| 0.00552486 0.0017652 1.49697e-06 2.25466e-08 2.718 ||| 0-0 ||| 181 668016 +a ||| openly confronted by ||| 0.333333 0.0337966 1.49697e-06 6.31543e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| openly in ||| 0.0357143 0.0587624 1.49697e-06 4.56627e-07 2.718 ||| 0-1 ||| 28 668016 +a ||| openly ||| 0.00189573 0.0017652 2.99394e-06 1.8e-06 2.718 ||| 0-0 ||| 1055 668016 +a ||| operate in ||| 0.00240964 0.0587624 1.49697e-06 2.92001e-06 2.718 ||| 0-1 ||| 415 668016 +a ||| operate via ||| 0.25 0.330861 1.49697e-06 6.72916e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| operating at a ||| 0.0769231 0.204175 1.49697e-06 6.78891e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| operating at ||| 0.02 0.204175 1.49697e-06 1.53159e-06 2.718 ||| 0-1 ||| 50 668016 +a ||| operating companies in the ||| 0.5 0.0587624 1.49697e-06 1.16522e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| operating companies in ||| 0.5 0.0587624 1.49697e-06 1.89801e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| operating in ||| 0.0015873 0.0587624 1.49697e-06 2.70371e-06 2.718 ||| 0-1 ||| 630 668016 +a ||| operating on ||| 0.0114943 0.0782999 1.49697e-06 1.7071e-06 2.718 ||| 0-1 ||| 87 668016 +a ||| operating to ||| 0.0769231 0.229811 1.49697e-06 1.57636e-05 2.718 ||| 0-1 ||| 13 668016 +a ||| operation Amber Fox in the Republic ||| 1 0.0587624 1.49697e-06 1.59509e-24 2.718 ||| 0-3 ||| 1 668016 +a ||| operation Amber Fox in the ||| 1 0.0587624 1.49697e-06 3.35808e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| operation Amber Fox in ||| 1 0.0587624 1.49697e-06 5.46991e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| operation of ||| 0.00112994 0.0188479 1.49697e-06 1.68302e-06 2.718 ||| 0-1 ||| 885 668016 +a ||| operation to ||| 0.0238095 0.229811 1.49697e-06 1.99322e-05 2.718 ||| 0-1 ||| 42 668016 +a ||| operational planning and in ||| 1 0.0587624 1.49697e-06 3.1933e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| operations in ||| 0.0078125 0.0587624 1.49697e-06 1.51408e-06 2.718 ||| 0-1 ||| 128 668016 +a ||| operations organized on ||| 1 0.0782999 1.49697e-06 7.93461e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| opinion , far from being ||| 1 0.0435582 1.49697e-06 4.09303e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| opinion , far from ||| 0.5 0.0435582 1.49697e-06 1.43827e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| opinion , to ||| 0.0454545 0.229811 2.99394e-06 1.02516e-05 2.718 ||| 0-2 ||| 44 668016 +a ||| opinion at ||| 0.0217391 0.204175 1.49697e-06 8.35229e-06 2.718 ||| 0-1 ||| 46 668016 +a ||| opinion of the Committee on Industry , ||| 0.0169492 0.0188479 1.49697e-06 3.30988e-19 2.718 ||| 0-1 ||| 59 668016 +a ||| opinion of the Committee on Industry ||| 0.0142857 0.0188479 1.49697e-06 2.77547e-18 2.718 ||| 0-1 ||| 70 668016 +a ||| opinion of the Committee on ||| 0.000954198 0.0188479 1.49697e-06 4.54995e-13 2.718 ||| 0-1 ||| 1048 668016 +a ||| opinion of the Committee ||| 0.000906618 0.0188479 1.49697e-06 6.8001e-11 2.718 ||| 0-1 ||| 1103 668016 +a ||| opinion of the ||| 0.000579374 0.0188479 1.49697e-06 4.45616e-07 2.718 ||| 0-1 ||| 1726 668016 +a ||| opinion of ||| 0.0026178 0.0188479 7.48485e-06 7.25856e-06 2.718 ||| 0-1 ||| 1910 668016 +a ||| opinion on ||| 0.000896861 0.0782999 1.49697e-06 9.3094e-06 2.718 ||| 0-1 ||| 1115 668016 +a ||| opinion until one is in ||| 0.333333 0.0587624 1.49697e-06 9.36054e-14 2.718 ||| 0-4 ||| 3 668016 +a ||| opinions are not always sought from ||| 0.5 0.0435582 1.49697e-06 4.57189e-20 2.718 ||| 0-5 ||| 2 668016 +a ||| opinions of ||| 0.00331126 0.0188479 1.49697e-06 6.50727e-07 2.718 ||| 0-1 ||| 302 668016 +a ||| opinions regarding ||| 0.333333 0.186429 1.49697e-06 7.40366e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| opponent of ||| 0.0285714 0.0272811 1.49697e-06 1.36061e-07 2.718 ||| 0-0 0-1 ||| 35 668016 +a ||| opponents ||| 0.00357995 0.0342466 4.49091e-06 3.19e-05 2.718 ||| 0-0 ||| 838 668016 +a ||| opportunities for ||| 0.00114548 0.0683377 2.99394e-06 1.26022e-06 2.718 ||| 0-1 ||| 1746 668016 +a ||| opportunities to ||| 0.00142045 0.229811 1.49697e-06 1.19803e-05 2.718 ||| 0-1 ||| 704 668016 +a ||| opportunities within ||| 0.0769231 0.0123496 1.49697e-06 1.70111e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| opportunity also to ||| 0.2 0.229811 1.49697e-06 3.18159e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| opportunity for ||| 0.000579039 0.0683377 1.49697e-06 6.62905e-06 2.718 ||| 0-1 ||| 1727 668016 +a ||| opportunity to ask ||| 0.0123457 0.229811 1.49697e-06 8.66515e-09 2.718 ||| 0-1 ||| 81 668016 +a ||| opportunity to do so ||| 0.0108696 0.229811 1.49697e-06 4.91367e-10 2.718 ||| 0-1 ||| 92 668016 +a ||| opportunity to do ||| 0.0204082 0.229811 1.49697e-06 2.1649e-07 2.718 ||| 0-1 ||| 49 668016 +a ||| opportunity to establish ||| 0.027027 0.229811 1.49697e-06 4.80837e-09 2.718 ||| 0-1 ||| 37 668016 +a ||| opportunity to honour ||| 1 0.229811 1.49697e-06 1.17846e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| opportunity to observe ||| 0.0454545 0.229811 1.49697e-06 1.20367e-09 2.718 ||| 0-1 ||| 22 668016 +a ||| opportunity to pass ||| 0.125 0.229811 1.49697e-06 3.6047e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| opportunity to use ||| 0.0181818 0.229811 1.49697e-06 3.064e-08 2.718 ||| 0-1 ||| 55 668016 +a ||| opportunity to ||| 0.00337458 0.229811 4.49091e-05 6.30193e-05 2.718 ||| 0-1 ||| 8890 668016 +a ||| oppose ||| 0.00623583 0.339711 1.64667e-05 0.0009885 2.718 ||| 0-0 ||| 1764 668016 +a ||| opposed in this House to ||| 0.5 0.0587624 1.49697e-06 1.80315e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| opposed in this House ||| 0.5 0.0587624 1.49697e-06 2.02925e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| opposed in this ||| 0.5 0.0587624 1.49697e-06 8.11374e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| opposed in ||| 0.0555556 0.0587624 1.49697e-06 1.25572e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| opposed to it because I am sure ||| 0.1 0.229811 1.49697e-06 6.73456e-20 2.718 ||| 0-1 ||| 10 668016 +a ||| opposed to it because I am ||| 0.1 0.229811 1.49697e-06 3.86599e-16 2.718 ||| 0-1 ||| 10 668016 +a ||| opposed to it because I ||| 0.1 0.229811 1.49697e-06 3.02622e-13 2.718 ||| 0-1 ||| 10 668016 +a ||| opposed to it because ||| 0.0833333 0.229811 1.49697e-06 4.27825e-11 2.718 ||| 0-1 ||| 12 668016 +a ||| opposed to it ||| 0.028169 0.064333 2.99394e-06 3.92359e-07 2.718 ||| 0-0 ||| 71 668016 +a ||| opposed to ||| 0.00563813 0.147072 1.64667e-05 8.69799e-05 2.718 ||| 0-0 0-1 ||| 1951 668016 +a ||| opposed ||| 0.00223214 0.064333 1.04788e-05 0.0002483 2.718 ||| 0-0 ||| 3136 668016 +a ||| opposes ||| 0.0123457 0.255282 4.49091e-06 0.0001323 2.718 ||| 0-0 ||| 243 668016 +a ||| opposing proposals ||| 0.5 0.24477 1.49697e-06 2.07619e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| opposing views ||| 0.0416667 0.24477 1.49697e-06 1.73657e-08 2.718 ||| 0-0 ||| 24 668016 +a ||| opposing ||| 0.0122699 0.24477 1.19758e-05 0.0002136 2.718 ||| 0-0 ||| 652 668016 +a ||| opposite of ||| 0.00823045 0.0188479 2.99394e-06 6.27064e-07 2.718 ||| 0-1 ||| 243 668016 +a ||| opposition , however , to ||| 1 0.229811 1.49697e-06 1.41272e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| opposition after ||| 0.5 0.0341027 1.49697e-06 2.14733e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| opposition from members ||| 1 0.0435582 1.49697e-06 2.71827e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| opposition from ||| 0.00591716 0.0435582 1.49697e-06 1.84289e-07 2.718 ||| 0-1 ||| 169 668016 +a ||| opposition to all ||| 0.1 0.229811 1.49697e-06 4.23761e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| opposition to ||| 0.00852878 0.229811 1.19758e-05 8.96772e-06 2.718 ||| 0-1 ||| 938 668016 +a ||| opposition ||| 0.000153917 0.0004279 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 6497 668016 +a ||| oppressed ||| 0.00826446 0.0413223 2.99394e-06 9.1e-06 2.718 ||| 0-0 ||| 242 668016 +a ||| oppressing ||| 0.0238095 0.3 1.49697e-06 1.92e-05 2.718 ||| 0-0 ||| 42 668016 +a ||| opt for ||| 0.00390625 0.0683377 1.49697e-06 3.83224e-07 2.718 ||| 0-1 ||| 256 668016 +a ||| opted for ||| 0.00429185 0.0683377 1.49697e-06 2.13721e-07 2.718 ||| 0-1 ||| 233 668016 +a ||| opted in ||| 0.1 0.0587624 1.49697e-06 3.48479e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| option at ||| 0.111111 0.204175 1.49697e-06 1.40907e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| or , to use ||| 0.0833333 0.229811 1.49697e-06 2.32216e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| or , to ||| 0.01 0.229811 1.49697e-06 4.77615e-05 2.718 ||| 0-2 ||| 100 668016 +a ||| or , ||| 0.000550055 0.0008359 1.49697e-06 9.25416e-06 2.718 ||| 0-0 ||| 1818 668016 +a ||| or - and ||| 0.0909091 0.0015873 1.49697e-06 8.32124e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| or any interference in ||| 0.333333 0.0587624 1.49697e-06 4.46669e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| or at least converted ||| 1 0.204175 1.49697e-06 4.10614e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| or at least ||| 0.00135685 0.204175 1.49697e-06 9.54917e-09 2.718 ||| 0-1 ||| 737 668016 +a ||| or at ||| 0.00102249 0.204175 1.49697e-06 3.89127e-05 2.718 ||| 0-1 ||| 978 668016 +a ||| or body to ||| 0.333333 0.229811 1.49697e-06 3.42828e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| or continue to detain ||| 0.25 0.229811 1.49697e-06 1.29746e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| or continue to ||| 0.0909091 0.229811 1.49697e-06 9.26757e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| or else ||| 0.00310559 0.0008359 1.49697e-06 9.1568e-09 2.718 ||| 0-0 ||| 322 668016 +a ||| or even the ||| 0.00578035 0.0495435 1.49697e-06 1.36974e-07 2.718 ||| 0-1 ||| 173 668016 +a ||| or even ||| 0.00203832 0.0495435 7.48485e-06 2.23115e-06 2.718 ||| 0-1 ||| 2453 668016 +a ||| or for ||| 0.00119048 0.0683377 1.49697e-06 4.21289e-05 2.718 ||| 0-1 ||| 840 668016 +a ||| or from a distance ||| 1 0.131537 1.49697e-06 1.23641e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| or her to ||| 0.333333 0.229811 2.99394e-06 1.08976e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| or in ||| 0.00131234 0.0587624 4.49091e-06 6.86923e-05 2.718 ||| 0-1 ||| 2286 668016 +a ||| or not there was ||| 0.333333 0.0005768 1.49697e-06 9.03735e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| or not there ||| 0.0166667 0.0005768 1.49697e-06 2.88457e-10 2.718 ||| 0-2 ||| 60 668016 +a ||| or not to ||| 0.00480769 0.229811 1.49697e-06 1.36735e-06 2.718 ||| 0-2 ||| 208 668016 +a ||| or not ||| 0.000547345 0.0008359 2.99394e-06 2.64934e-07 2.718 ||| 0-0 ||| 3654 668016 +a ||| or notified ||| 0.333333 0.105991 1.49697e-06 4.80186e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| or of ||| 0.00113766 0.0188479 1.49697e-06 3.38171e-05 2.718 ||| 0-1 ||| 879 668016 +a ||| or on the ||| 0.0045045 0.0393827 1.49697e-06 6.64672e-08 2.718 ||| 0-1 0-2 ||| 222 668016 +a ||| or on ||| 0.00158983 0.0782999 1.49697e-06 4.33718e-05 2.718 ||| 0-1 ||| 629 668016 +a ||| or only for ||| 1 0.0683377 1.49697e-06 4.68937e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| or other , reaches ||| 1 0.258232 1.49697e-06 2.40222e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| or other on ||| 1 0.0782999 1.49697e-06 5.61881e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| or other ||| 0.00081367 0.0008359 1.49697e-06 1.00531e-07 2.718 ||| 0-0 ||| 1229 668016 +a ||| or perhaps even ||| 0.0196078 0.0495435 1.49697e-06 3.45159e-10 2.718 ||| 0-2 ||| 51 668016 +a ||| or rather to ||| 0.0666667 0.229811 1.49697e-06 1.22633e-07 2.718 ||| 0-2 ||| 15 668016 +a ||| or that it ||| 0.0322581 0.0008359 1.49697e-06 2.32134e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| or that resulting in ||| 1 0.0587624 1.49697e-06 5.23448e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| or that there ||| 0.2 0.0008359 1.49697e-06 4.00131e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| or that ||| 0.00210526 0.0008359 2.99394e-06 1.30536e-06 2.718 ||| 0-0 ||| 950 668016 +a ||| or the governments - to disagree . ||| 1 0.229811 1.49697e-06 7.59012e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| or the governments - to disagree ||| 1 0.229811 1.49697e-06 2.50582e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| or the governments - to ||| 1 0.229811 1.49697e-06 3.17192e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| or the ||| 0.00015569 0.00065065 1.49697e-06 1.18922e-07 2.718 ||| 0-0 0-1 ||| 6423 668016 +a ||| or those in ||| 0.0909091 0.0587624 1.49697e-06 4.97401e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| or to bring ||| 0.2 0.229811 1.49697e-06 1.24676e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| or to reinforce the ||| 1 0.229811 1.49697e-06 9.83496e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| or to reinforce ||| 0.333333 0.229811 1.49697e-06 1.602e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| or to wish ||| 1 0.229811 1.49697e-06 1.18027e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| or to ||| 0.00369686 0.229811 1.19758e-05 0.0004005 2.718 ||| 0-1 ||| 2164 668016 +a ||| or travelling for ||| 1 0.0683377 1.49697e-06 3.7916e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| or ||| 0.000583183 0.0008359 0.000104788 7.76e-05 2.718 ||| 0-0 ||| 120031 668016 +a ||| oral amendment to ||| 0.00510204 0.229811 1.49697e-06 1.76282e-10 2.718 ||| 0-2 ||| 196 668016 +a ||| order as ||| 0.0344828 0.0243476 1.49697e-06 4.67218e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| order for it to be ||| 0.0769231 0.229811 1.49697e-06 4.6213e-10 2.718 ||| 0-3 ||| 13 668016 +a ||| order for it to ||| 0.0555556 0.229811 1.49697e-06 2.54998e-08 2.718 ||| 0-3 ||| 18 668016 +a ||| order for ||| 0.00793651 0.0683377 4.49091e-06 1.96255e-05 2.718 ||| 0-1 ||| 378 668016 +a ||| order from ||| 0.0769231 0.0435582 1.49697e-06 3.83408e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| order of ||| 0.00127226 0.0188479 1.49697e-06 1.57535e-05 2.718 ||| 0-1 ||| 786 668016 +a ||| order to accommodate ||| 0.0526316 0.229811 1.49697e-06 1.94033e-09 2.718 ||| 0-1 ||| 19 668016 +a ||| order to achieve ||| 0.00272851 0.229811 2.99394e-06 4.26314e-08 2.718 ||| 0-1 ||| 733 668016 +a ||| order to be able ||| 0.010989 0.229811 1.49697e-06 2.82296e-09 2.718 ||| 0-1 ||| 91 668016 +a ||| order to be ||| 0.00361011 0.229811 1.49697e-06 3.3812e-06 2.718 ||| 0-1 ||| 277 668016 +a ||| order to clear ||| 0.125 0.229811 1.49697e-06 6.21094e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| order to do this ||| 0.037037 0.229811 1.49697e-06 4.14128e-09 2.718 ||| 0-1 ||| 27 668016 +a ||| order to do ||| 0.0166667 0.229811 1.49697e-06 6.40926e-07 2.718 ||| 0-1 ||| 60 668016 +a ||| order to enter ||| 0.05 0.229811 1.49697e-06 9.19793e-09 2.718 ||| 0-1 ||| 20 668016 +a ||| order to help ||| 0.00483092 0.259976 1.49697e-06 3.11276e-07 2.718 ||| 0-2 ||| 207 668016 +a ||| order to include ||| 0.0344828 0.128968 1.49697e-06 4.93852e-08 2.718 ||| 0-1 0-2 ||| 29 668016 +a ||| order to keep ||| 0.012987 0.229811 1.49697e-06 2.90677e-08 2.718 ||| 0-1 ||| 77 668016 +a ||| order to meet ||| 0.00454545 0.229811 1.49697e-06 2.2687e-08 2.718 ||| 0-1 ||| 220 668016 +a ||| order to refute ||| 0.2 0.229811 1.49697e-06 3.35827e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| order to seize ||| 0.25 0.229811 1.49697e-06 1.21271e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| order to take in ||| 0.5 0.0587624 1.49697e-06 4.57797e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| order to take note ||| 0.25 0.229811 1.49697e-06 3.13595e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| order to take ||| 0.00531915 0.229811 1.49697e-06 3.00379e-07 2.718 ||| 0-1 ||| 188 668016 +a ||| order to then be transported ||| 1 0.229811 1.49697e-06 4.13827e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| order to then be ||| 1 0.229811 1.49697e-06 5.44509e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| order to then ||| 1 0.229811 1.49697e-06 3.00453e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| order to transform ||| 0.333333 0.229811 1.49697e-06 3.35827e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| order to ultimately create ||| 0.166667 0.229811 1.49697e-06 1.29198e-12 2.718 ||| 0-1 ||| 6 668016 +a ||| order to ultimately ||| 0.142857 0.229811 1.49697e-06 1.14741e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| order to ||| 0.00489566 0.229811 0.000119758 0.000186571 2.718 ||| 0-1 ||| 16341 668016 +a ||| ordered into ||| 0.142857 0.107578 1.49697e-06 2.85492e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| ordered to pay ||| 0.333333 0.229811 1.49697e-06 2.35767e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| ordered to ||| 0.125 0.229811 2.99394e-06 1.64642e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| ordered ||| 0.00328947 0.0055249 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 304 668016 +a ||| ordering ||| 0.0289855 0.12 2.99394e-06 8.2e-06 2.718 ||| 0-0 ||| 69 668016 +a ||| ordinary ||| 0.00490497 0.0911183 1.19758e-05 0.0001807 2.718 ||| 0-0 ||| 1631 668016 +a ||| organisation to ||| 0.0277778 0.229811 1.49697e-06 1.18402e-05 2.718 ||| 0-1 ||| 36 668016 +a ||| organisations that ||| 0.00595238 0.0008521 1.49697e-06 2.33483e-08 2.718 ||| 0-1 ||| 168 668016 +a ||| organisations ||| 0.000108613 0.0004911 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 9207 668016 +a ||| organise immediately their participation in ||| 1 0.0587624 1.49697e-06 6.91217e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| organised by ||| 0.00359712 0.0337966 1.49697e-06 2.13092e-07 2.718 ||| 0-1 ||| 278 668016 +a ||| organised on ||| 0.047619 0.0782999 2.99394e-06 9.82532e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| organised ||| 0.000361664 0.0002031 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2765 668016 +a ||| organising themselves in ||| 0.25 0.0587624 1.49697e-06 1.21342e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| organizations in ||| 0.037037 0.0587624 1.49697e-06 6.90949e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| organized on ||| 0.333333 0.0782999 1.49697e-06 3.14865e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| origin back to ||| 1 0.229811 1.49697e-06 6.03169e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| originating from combined waste collection ||| 0.111111 0.0435582 1.49697e-06 4.28496e-22 2.718 ||| 0-1 ||| 9 668016 +a ||| originating from combined waste ||| 0.111111 0.0435582 1.49697e-06 4.55846e-17 2.718 ||| 0-1 ||| 9 668016 +a ||| originating from combined ||| 0.111111 0.0435582 1.49697e-06 6.53075e-13 2.718 ||| 0-1 ||| 9 668016 +a ||| originating from ||| 0.00480769 0.0435582 1.49697e-06 2.59157e-08 2.718 ||| 0-1 ||| 208 668016 +a ||| ostensibly designed for ||| 1 0.0683377 1.49697e-06 6.33131e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| other , reaches ||| 1 0.258232 1.49697e-06 2.10112e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| other Member States to join it - ||| 0.5 0.229811 1.49697e-06 3.50331e-19 2.718 ||| 0-3 ||| 2 668016 +a ||| other Member States to join it ||| 0.5 0.229811 1.49697e-06 9.28744e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| other Member States to join ||| 0.2 0.229811 1.49697e-06 5.22259e-15 2.718 ||| 0-3 ||| 5 668016 +a ||| other Member States to ||| 0.0125 0.229811 1.49697e-06 1.11594e-10 2.718 ||| 0-3 ||| 80 668016 +a ||| other at ||| 0.111111 0.204175 4.49091e-06 4.40929e-05 2.718 ||| 0-1 ||| 27 668016 +a ||| other choice but to ||| 0.125 0.229811 1.49697e-06 1.38321e-11 2.718 ||| 0-3 ||| 8 668016 +a ||| other countries , to ||| 0.0714286 0.229811 1.49697e-06 2.05492e-08 2.718 ||| 0-3 ||| 14 668016 +a ||| other countries in ||| 0.00253165 0.0587624 1.49697e-06 2.95547e-08 2.718 ||| 0-2 ||| 395 668016 +a ||| other countries to benefit ||| 0.5 0.229811 1.49697e-06 2.26937e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| other countries to ||| 0.00763359 0.229811 1.49697e-06 1.72314e-07 2.718 ||| 0-2 ||| 131 668016 +a ||| other funds at ||| 0.5 0.204175 1.49697e-06 3.36429e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| other hand , to ||| 0.027027 0.229811 1.49697e-06 2.14639e-08 2.718 ||| 0-3 ||| 37 668016 +a ||| other in ||| 0.0172414 0.0587624 4.49091e-06 7.78369e-05 2.718 ||| 0-1 ||| 174 668016 +a ||| other on ||| 0.038961 0.0782999 4.49091e-06 4.91456e-05 2.718 ||| 0-1 ||| 77 668016 +a ||| other parts of ||| 0.00452489 0.0188479 1.49697e-06 2.23399e-09 2.718 ||| 0-2 ||| 221 668016 +a ||| other possibilities : that technically ||| 1 0.0007376 1.49697e-06 4.24083e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| other possibilities : that ||| 1 0.0007376 1.49697e-06 1.46236e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| other possibilities : ||| 1 0.0007376 1.49697e-06 8.69332e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| other priorities are to ||| 1 0.229811 1.49697e-06 1.28761e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| other problems affect ||| 1 0.330659 1.49697e-06 2.74693e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| other side , attacking ||| 1 0.243421 1.49697e-06 3.43054e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| other socialist and left-wing ||| 0.5 0.0015873 1.49697e-06 3.84949e-18 2.718 ||| 0-2 ||| 2 668016 +a ||| other socialist and ||| 0.5 0.0015873 1.49697e-06 3.49953e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| other than as ||| 0.0909091 0.0242272 1.49697e-06 1.6616e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| other than for ||| 0.166667 0.0683377 1.49697e-06 1.45837e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| other than suffering ||| 0.166667 0.0242272 1.49697e-06 7.21343e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| other than ||| 0.00318674 0.0242272 7.48485e-06 1.62831e-06 2.718 ||| 0-1 ||| 1569 668016 +a ||| other things , ||| 0.000691085 0.0001191 1.49697e-06 1.41898e-10 2.718 ||| 0-2 ||| 1447 668016 +a ||| other things to ||| 0.05 0.229811 2.99394e-06 1.86518e-07 2.718 ||| 0-2 ||| 40 668016 +a ||| other to keep a sharp eye open ||| 1 0.229811 1.49697e-06 3.82325e-22 2.718 ||| 0-1 ||| 1 668016 +a ||| other to keep a sharp eye ||| 1 0.229811 1.49697e-06 2.37174e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| other to keep a sharp ||| 1 0.229811 1.49697e-06 4.16826e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| other to keep a ||| 1 0.229811 1.49697e-06 3.13403e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| other to keep ||| 1 0.229811 1.49697e-06 7.07045e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| other to ||| 0.0547945 0.229811 5.98788e-06 0.000453816 2.718 ||| 0-1 ||| 73 668016 +a ||| other ways to deal with it ||| 1 0.229811 1.49697e-06 2.11229e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| other ways to deal with ||| 0.2 0.229811 1.49697e-06 1.1878e-13 2.718 ||| 0-2 ||| 5 668016 +a ||| other ways to deal ||| 0.25 0.229811 1.49697e-06 1.85753e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| other ways to ||| 0.0344828 0.229811 1.49697e-06 4.37478e-08 2.718 ||| 0-2 ||| 29 668016 +a ||| others as well , ||| 0.25 0.0243476 1.49697e-06 1.61233e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| others as well ||| 0.0625 0.0243476 1.49697e-06 1.35201e-09 2.718 ||| 0-1 ||| 16 668016 +a ||| others as ||| 0.0212766 0.0243476 1.49697e-06 8.52677e-07 2.718 ||| 0-1 ||| 47 668016 +a ||| others in the ' ||| 1 0.0587624 1.49697e-06 1.23151e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| others in the ||| 0.00892857 0.0587624 1.49697e-06 3.58529e-07 2.718 ||| 0-1 ||| 112 668016 +a ||| others in ||| 0.00288184 0.0587624 1.49697e-06 5.84002e-06 2.718 ||| 0-1 ||| 347 668016 +a ||| others must ||| 0.0285714 0.0053289 1.49697e-06 1.02937e-07 2.718 ||| 0-0 ||| 35 668016 +a ||| others out of ||| 0.333333 0.0188479 1.49697e-06 1.10125e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| others ||| 0.000401639 0.0053289 7.48485e-06 6.66e-05 2.718 ||| 0-0 ||| 12449 668016 +a ||| otherwise - involve ||| 0.5 0.170498 1.49697e-06 1.53169e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| otherwise we would have to ||| 0.125 0.229811 1.49697e-06 1.65798e-11 2.718 ||| 0-4 ||| 8 668016 +a ||| otherwise we ||| 0.00331126 0.0008079 1.49697e-06 2.69438e-08 2.718 ||| 0-1 ||| 302 668016 +a ||| otherwise ||| 0.000205423 8.17e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 4868 668016 +a ||| ought to be stated ||| 0.5 0.229811 1.49697e-06 3.31438e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| ought to be ||| 0.00395778 0.229811 4.49091e-06 5.32003e-07 2.718 ||| 0-1 ||| 758 668016 +a ||| ought to give ||| 0.1 0.229811 1.49697e-06 1.77893e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| ought to ||| 0.0113636 0.229811 2.54485e-05 2.93553e-05 2.718 ||| 0-1 ||| 1496 668016 +a ||| our European citizens , to ||| 1 0.229811 1.49697e-06 2.10033e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| our Ministerial meetings to be sufficiently well ||| 1 0.229811 1.49697e-06 6.28363e-24 2.718 ||| 0-3 ||| 1 668016 +a ||| our Ministerial meetings to be sufficiently ||| 1 0.229811 1.49697e-06 3.96294e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| our Ministerial meetings to be ||| 1 0.229811 1.49697e-06 2.11922e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| our Ministerial meetings to ||| 1 0.229811 1.49697e-06 1.16936e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| our agreement with ||| 0.0238095 0.0571592 1.49697e-06 4.24429e-09 2.718 ||| 0-2 ||| 42 668016 +a ||| our approval to ||| 0.0588235 0.229811 1.49697e-06 1.44479e-08 2.718 ||| 0-2 ||| 17 668016 +a ||| our assent to ||| 0.0714286 0.229811 1.49697e-06 3.81733e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| our attention on women ||| 1 0.0782999 1.49697e-06 1.6244e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| our attention on ||| 0.012987 0.0782999 1.49697e-06 1.36734e-08 2.718 ||| 0-2 ||| 77 668016 +a ||| our attention that ||| 0.2 0.0008521 1.49697e-06 2.4607e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| our back on ||| 0.0454545 0.0782999 1.49697e-06 3.51961e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| our benefit and let good ||| 0.25 0.0015873 1.49697e-06 7.42402e-17 2.718 ||| 0-2 ||| 4 668016 +a ||| our benefit and let ||| 0.25 0.0015873 1.49697e-06 1.43155e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| our benefit and ||| 0.0769231 0.0015873 1.49697e-06 3.50526e-10 2.718 ||| 0-2 ||| 13 668016 +a ||| our best , in doing so , ||| 0.5 0.0587624 1.49697e-06 1.36017e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| our best , in doing so ||| 0.5 0.0587624 1.49697e-06 1.14056e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| our best , in doing ||| 0.5 0.0587624 1.49697e-06 5.02514e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| our best , in ||| 0.25 0.0587624 1.49697e-06 1.36887e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| our blessing after the ||| 1 0.0341027 1.49697e-06 1.27859e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| our blessing after ||| 1 0.0341027 1.49697e-06 2.08267e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| our eyes on ||| 0.333333 0.0782999 1.49697e-06 3.05074e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| our fair share to ||| 0.5 0.229811 1.49697e-06 2.34281e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| our friend on ||| 0.5 0.0782999 1.49697e-06 6.01776e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| our function to ||| 0.5 0.229811 1.49697e-06 1.19835e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| our getting rid of ||| 0.5 0.0188479 1.49697e-06 1.1094e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| our grip on ||| 0.166667 0.0782999 1.49697e-06 8.68651e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| our group ||| 0.000304599 0.0003145 1.49697e-06 7.5867e-09 2.718 ||| 0-1 ||| 3283 668016 +a ||| our job to ||| 0.0196078 0.229811 1.49697e-06 3.77384e-08 2.718 ||| 0-2 ||| 51 668016 +a ||| our message to ||| 0.0294118 0.229811 1.49697e-06 2.32905e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| our methods and systems available as a ||| 1 0.0243476 1.49697e-06 3.55678e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| our methods and systems available as ||| 1 0.0243476 1.49697e-06 8.02416e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| our minds , out of ||| 1 0.0188479 1.49697e-06 8.92733e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| our minds away from ||| 1 0.0435582 1.49697e-06 1.51304e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| our minds to ||| 0.125 0.229811 1.49697e-06 2.31456e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| our neighbouring country to ||| 0.5 0.229811 1.49697e-06 1.06083e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| our opposition to ||| 0.0152672 0.229811 2.99394e-06 1.23701e-08 2.718 ||| 0-2 ||| 131 668016 +a ||| our own minds about ||| 0.333333 0.0526361 1.49697e-06 5.64472e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| our part in ||| 0.0235294 0.0587624 2.99394e-06 9.88069e-08 2.718 ||| 0-2 ||| 85 668016 +a ||| our request for ||| 0.0217391 0.0683377 1.49697e-06 3.89857e-09 2.718 ||| 0-2 ||| 46 668016 +a ||| our responsibility , to ||| 0.333333 0.229811 1.49697e-06 6.65564e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| our speeches as part of ||| 1 0.0188479 1.49697e-06 4.4673e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| our sympathy to ||| 0.0666667 0.229811 1.49697e-06 7.48969e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| our thoughts more to ||| 1 0.229811 1.49697e-06 1.07039e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| our very eyes , and ||| 0.25 0.0015873 1.49697e-06 6.43867e-14 2.718 ||| 0-4 ||| 4 668016 +a ||| our way through ||| 0.2 0.230708 1.49697e-06 2.36361e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| our ||| 2.64286e-05 7.44e-05 5.98788e-06 1e-05 2.718 ||| 0-0 ||| 151351 668016 +a ||| ourselves at the ||| 0.125 0.204175 1.49697e-06 6.64668e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| ourselves at ||| 0.166667 0.204175 4.49091e-06 1.08267e-05 2.718 ||| 0-1 ||| 18 668016 +a ||| ourselves down to ||| 0.333333 0.229811 1.49697e-06 7.77899e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| ourselves face ||| 0.333333 0.124218 1.49697e-06 3.22872e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| ourselves for the ||| 0.333333 0.0683377 1.49697e-06 7.19604e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| ourselves for ||| 0.1 0.0683377 1.49697e-06 1.17215e-05 2.718 ||| 0-1 ||| 10 668016 +a ||| ourselves in ||| 0.0404624 0.0587624 1.04788e-05 1.91122e-05 2.718 ||| 0-1 ||| 173 668016 +a ||| ourselves is to ||| 1 0.229811 1.49697e-06 3.49237e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| ourselves of ||| 0.105263 0.0188479 5.98788e-06 9.40892e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| ourselves on ||| 0.0204082 0.0782999 1.49697e-06 1.20673e-05 2.718 ||| 0-1 ||| 49 668016 +a ||| ourselves onto ||| 1 0.207143 1.49697e-06 7.57714e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| ourselves to make ||| 0.25 0.229811 1.49697e-06 1.93645e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| ourselves to pious ||| 1 0.229811 1.49697e-06 1.22574e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| ourselves to the Europe ||| 0.25 0.229811 1.49697e-06 3.46152e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| ourselves to the search ||| 0.5 0.229811 1.49697e-06 9.57732e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| ourselves to the ||| 0.142857 0.229811 2.99394e-06 6.84095e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| ourselves to ||| 0.135 0.229811 4.04182e-05 0.000111431 2.718 ||| 0-1 ||| 200 668016 +a ||| ourselves up for ||| 1 0.0683377 1.49697e-06 3.99762e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| ourselves with here in ||| 1 0.0587624 1.49697e-06 2.47824e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| ourselves with ||| 0.025974 0.0571592 2.99394e-06 5.31071e-06 2.718 ||| 0-1 ||| 77 668016 +a ||| ousted out ||| 0.5 0.0669777 1.49697e-06 4.5111e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| out ' ||| 0.0322581 0.0669777 1.49697e-06 1.40865e-05 2.718 ||| 0-0 ||| 31 668016 +a ||| out , the ||| 0.0208333 0.0669777 1.49697e-06 3.00245e-05 2.718 ||| 0-0 ||| 48 668016 +a ||| out , ||| 0.00569476 0.0669777 7.48485e-06 0.000489064 2.718 ||| 0-0 ||| 878 668016 +a ||| out - ||| 0.0131579 0.0669777 1.49697e-06 1.54694e-05 2.718 ||| 0-0 ||| 76 668016 +a ||| out a ||| 0.00542741 0.0669777 5.98788e-06 0.00018178 2.718 ||| 0-0 ||| 737 668016 +a ||| out about ||| 0.0163934 0.0669777 1.49697e-06 5.80004e-06 2.718 ||| 0-0 ||| 61 668016 +a ||| out across ||| 0.0666667 0.0490758 1.49697e-06 1.88456e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| out against ||| 0.00877193 0.05146 1.49697e-06 9.95712e-06 2.718 ||| 0-1 ||| 114 668016 +a ||| out all ||| 0.0142857 0.0669777 1.49697e-06 1.93789e-05 2.718 ||| 0-0 ||| 70 668016 +a ||| out an ||| 0.00483092 0.0669777 1.49697e-06 1.82277e-05 2.718 ||| 0-0 ||| 207 668016 +a ||| out and about ||| 0.333333 0.0015873 1.49697e-06 1.04527e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| out and ||| 0.00864553 0.0342825 4.49091e-06 7.91288e-06 2.718 ||| 0-0 0-1 ||| 347 668016 +a ||| out as a means ||| 0.25 0.0243476 1.49697e-06 9.4385e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| out as a ||| 0.037037 0.0243476 1.49697e-06 1.48943e-06 2.718 ||| 0-1 ||| 27 668016 +a ||| out as ||| 0.034188 0.0243476 5.98788e-06 3.36018e-05 2.718 ||| 0-1 ||| 117 668016 +a ||| out at last , some ||| 1 0.204175 1.49697e-06 3.69871e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| out at last , ||| 1 0.204175 1.49697e-06 3.3955e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| out at last ||| 0.333333 0.204175 1.49697e-06 2.84726e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| out at the ||| 0.0196078 0.204175 1.49697e-06 8.0036e-06 2.718 ||| 0-1 ||| 51 668016 +a ||| out at ||| 0.0756757 0.204175 2.09576e-05 0.000130369 2.718 ||| 0-1 ||| 185 668016 +a ||| out before ||| 0.0142857 0.0203282 1.49697e-06 2.03126e-06 2.718 ||| 0-1 ||| 70 668016 +a ||| out by a ||| 0.0555556 0.0337966 1.49697e-06 1.39691e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| out by ||| 0.0255517 0.0337966 3.29333e-05 3.15146e-05 2.718 ||| 0-1 ||| 861 668016 +a ||| out citizen education , to ||| 1 0.229811 1.49697e-06 9.35674e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| out clearly ||| 0.0208333 0.0669777 1.49697e-06 7.48432e-07 2.718 ||| 0-0 ||| 48 668016 +a ||| out entirely on ||| 0.5 0.0782999 1.49697e-06 9.61942e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| out extending ||| 1 0.0669777 1.49697e-06 8.40705e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| out for ||| 0.0628272 0.0683377 1.79636e-05 0.000141144 2.718 ||| 0-1 ||| 191 668016 +a ||| out from factories to ||| 1 0.229811 1.49697e-06 8.64331e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| out from ||| 0.0689655 0.0435582 8.98182e-06 2.75743e-05 2.718 ||| 0-1 ||| 87 668016 +a ||| out in 1980 ||| 1 0.0587624 1.49697e-06 1.61098e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| out in Albania ||| 0.2 0.0587624 1.49697e-06 1.91016e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| out in agreement ||| 0.5 0.0587624 1.49697e-06 4.24148e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| out in favour ||| 0.0175439 0.0017065 1.49697e-06 2.77119e-09 2.718 ||| 0-2 ||| 57 668016 +a ||| out in the cold ||| 0.0434783 0.0587624 1.49697e-06 1.6248e-10 2.718 ||| 0-1 ||| 23 668016 +a ||| out in the ||| 0.00873362 0.0587624 5.98788e-06 1.41287e-05 2.718 ||| 0-1 ||| 458 668016 +a ||| out in ||| 0.0442073 0.0587624 8.68243e-05 0.00023014 2.718 ||| 0-1 ||| 1312 668016 +a ||| out into ||| 0.0350877 0.107578 2.99394e-06 2.3267e-05 2.718 ||| 0-1 ||| 57 668016 +a ||| out its terrible ||| 1 0.0669777 1.49697e-06 8.64719e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| out its ||| 0.00512821 0.0669777 1.49697e-06 5.84269e-06 2.718 ||| 0-0 ||| 195 668016 +a ||| out loud ||| 0.0338983 0.0669777 2.99394e-06 4.26504e-08 2.718 ||| 0-0 ||| 59 668016 +a ||| out more for ||| 1 0.0683377 1.49697e-06 3.22332e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| out new ||| 0.0666667 0.0669777 1.49697e-06 2.45117e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| out of a ||| 0.005 0.0188479 1.49697e-06 5.022e-06 2.718 ||| 0-1 ||| 200 668016 +a ||| out of accord with ||| 1 0.0188479 1.49697e-06 9.92539e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| out of accord ||| 1 0.0188479 1.49697e-06 1.55218e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| out of business in ||| 0.333333 0.0587624 1.49697e-06 1.56267e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| out of control to ||| 0.333333 0.229811 1.49697e-06 5.59491e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| out of crass ||| 1 0.0188479 1.49697e-06 7.93082e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| out of genuine ||| 0.2 0.0669777 1.49697e-06 7.5356e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| out of hand ||| 0.0151515 0.0669777 1.49697e-06 8.84207e-08 2.718 ||| 0-0 ||| 66 668016 +a ||| out of place in ||| 0.047619 0.0587624 1.49697e-06 1.88296e-08 2.718 ||| 0-3 ||| 21 668016 +a ||| out of sight all too often out ||| 1 0.0188479 1.49697e-06 8.43498e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| out of sight all too often ||| 1 0.0188479 1.49697e-06 2.20212e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| out of sight all too ||| 1 0.0188479 1.49697e-06 1.67589e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| out of sight all ||| 1 0.0188479 1.49697e-06 1.23136e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| out of sight ||| 0.0588235 0.0188479 1.49697e-06 2.60584e-09 2.718 ||| 0-1 ||| 17 668016 +a ||| out of that responsibility ||| 1 0.0188479 1.49697e-06 2.20125e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| out of that ||| 0.0526316 0.0188479 1.49697e-06 1.90584e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| out of the country before the ||| 1 0.0004654 1.49697e-06 1.76345e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| out of the country before ||| 1 0.0004654 1.49697e-06 2.87244e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| out of the country ||| 0.0588235 0.0004654 1.49697e-06 1.14852e-10 2.718 ||| 0-2 ||| 17 668016 +a ||| out of the picture ||| 0.125 0.0188479 1.49697e-06 2.37879e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| out of the question to ||| 0.285714 0.229811 2.99394e-06 3.70485e-09 2.718 ||| 0-4 ||| 7 668016 +a ||| out of the ||| 0.00231125 0.0188479 4.49091e-06 6.95554e-06 2.718 ||| 0-1 ||| 1298 668016 +a ||| out of them to ||| 1 0.148395 1.49697e-06 2.09492e-07 2.718 ||| 0-0 0-3 ||| 1 668016 +a ||| out of ||| 0.0163828 0.0188479 0.00011377 0.000113297 2.718 ||| 0-1 ||| 4639 668016 +a ||| out on the ||| 0.0326087 0.0782999 4.49091e-06 8.92075e-06 2.718 ||| 0-1 ||| 92 668016 +a ||| out on them ||| 0.333333 0.0782999 2.99394e-06 3.89776e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| out on this earth . ||| 1 0.0782999 1.49697e-06 4.09524e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| out on this earth ||| 1 0.0782999 1.49697e-06 1.35201e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| out on this ||| 0.0714286 0.0782999 1.49697e-06 9.38896e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| out on ||| 0.0603448 0.0782999 3.14364e-05 0.000145309 2.718 ||| 0-1 ||| 348 668016 +a ||| out one ||| 0.0357143 0.0669777 1.49697e-06 1.7093e-05 2.718 ||| 0-0 ||| 28 668016 +a ||| out onto the street at ||| 0.142857 0.204175 1.49697e-06 2.26342e-15 2.718 ||| 0-4 ||| 7 668016 +a ||| out onto ||| 0.6 0.207143 8.98182e-06 9.12401e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| out over ||| 0.027027 0.0682544 1.49697e-06 8.89764e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| out safely at ||| 1 0.204175 1.49697e-06 1.08206e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| out some ||| 0.0192308 0.0669777 1.49697e-06 4.46722e-06 2.718 ||| 0-0 ||| 52 668016 +a ||| out that there were other possibilities : ||| 1 0.0007376 1.49697e-06 3.07583e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| out that ||| 0.00234742 0.0669777 2.99394e-06 6.89854e-05 2.718 ||| 0-0 ||| 852 668016 +a ||| out the ||| 0.000788022 0.0669777 1.49697e-06 0.000251768 2.718 ||| 0-0 ||| 1269 668016 +a ||| out there , ||| 0.0243902 0.0669777 1.49697e-06 1.49913e-06 2.718 ||| 0-0 ||| 41 668016 +a ||| out there - ||| 0.333333 0.0669777 1.49697e-06 4.74183e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| out there ||| 0.0294118 0.0669777 7.48485e-06 1.25708e-05 2.718 ||| 0-0 ||| 170 668016 +a ||| out through ||| 0.0277778 0.230708 1.49697e-06 3.04482e-05 2.718 ||| 0-1 ||| 36 668016 +a ||| out to achieve this ||| 0.5 0.229811 1.49697e-06 1.98107e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| out to achieve ||| 0.0909091 0.229811 1.49697e-06 3.066e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| out to defend ||| 0.111111 0.229811 1.49697e-06 2.80435e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| out to me ||| 0.0833333 0.229811 1.49697e-06 8.07895e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| out to one ||| 0.5 0.229811 1.49697e-06 5.5926e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| out to private ||| 1 0.229811 1.49697e-06 3.19347e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| out to you , to ||| 1 0.229811 1.49697e-06 4.59079e-08 2.718 ||| 0-4 ||| 1 668016 +a ||| out to ||| 0.213277 0.229811 0.000226042 0.0013418 2.718 ||| 0-1 ||| 708 668016 +a ||| out trials ||| 0.333333 0.0669777 1.49697e-06 1.92747e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| out until ||| 0.1 0.0268909 1.49697e-06 8.77545e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| out was ||| 0.1 0.0669777 1.49697e-06 1.28484e-05 2.718 ||| 0-0 ||| 10 668016 +a ||| out who the ||| 1 0.0669777 1.49697e-06 2.22059e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| out who ||| 0.0588235 0.0669777 1.49697e-06 3.61708e-06 2.718 ||| 0-0 ||| 17 668016 +a ||| out with ||| 0.04 0.0571592 1.34727e-05 6.39489e-05 2.718 ||| 0-1 ||| 225 668016 +a ||| out within ||| 0.0285714 0.0123496 1.49697e-06 1.90524e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| out ||| 0.0370942 0.0669777 0.000791897 0.004101 2.718 ||| 0-0 ||| 14261 668016 +a ||| outcome has to do with another matter ||| 1 0.229811 1.49697e-06 5.06309e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| outcome has to do with another ||| 1 0.229811 1.49697e-06 4.88009e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| outcome has to do with ||| 1 0.229811 1.49697e-06 2.02409e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| outcome has to do ||| 1 0.229811 1.49697e-06 3.16537e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| outcome has to ||| 1 0.229811 1.49697e-06 9.21424e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| outcome of ||| 0.000563698 0.0188479 1.49697e-06 1.51146e-06 2.718 ||| 0-1 ||| 1774 668016 +a ||| outlined in ||| 0.00649351 0.0587624 2.99394e-06 1.03943e-06 2.718 ||| 0-1 ||| 308 668016 +a ||| outrages ||| 0.0185185 0.0121951 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 54 668016 +a ||| outset , to ||| 0.0833333 0.229811 1.49697e-06 8.10437e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| outset to incite prejudice ||| 0.25 0.229811 1.49697e-06 3.80568e-17 2.718 ||| 0-1 ||| 4 668016 +a ||| outset to incite ||| 0.25 0.229811 1.49697e-06 9.51419e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| outset to ||| 0.0454545 0.229811 1.49697e-06 6.79585e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| outside Europe ||| 0.00229358 0.0021524 1.49697e-06 7.843e-09 2.718 ||| 0-0 ||| 436 668016 +a ||| outside the scope of ||| 0.00900901 0.0188479 1.49697e-06 7.22361e-12 2.718 ||| 0-3 ||| 111 668016 +a ||| outside ||| 0.000783622 0.0021524 1.19758e-05 1.55e-05 2.718 ||| 0-0 ||| 10209 668016 +a ||| outspoken ||| 0.0434783 0.0384615 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| outweigh the number of ||| 1 0.0188479 1.49697e-06 6.28947e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| outweigh ||| 0.00925926 0.0601852 1.49697e-06 1.19e-05 2.718 ||| 0-0 ||| 108 668016 +a ||| over , ||| 0.00448431 0.0682544 1.49697e-06 0.000277017 2.718 ||| 0-0 ||| 223 668016 +a ||| over 200 ||| 0.0138889 0.0682544 1.49697e-06 1.16145e-08 2.718 ||| 0-0 ||| 72 668016 +a ||| over a hundred ||| 0.037037 0.0682544 1.49697e-06 1.62684e-09 2.718 ||| 0-0 ||| 27 668016 +a ||| over a number of ||| 0.0172414 0.0682544 1.49697e-06 2.76967e-09 2.718 ||| 0-0 ||| 58 668016 +a ||| over a number ||| 0.0212766 0.0682544 1.49697e-06 5.09468e-08 2.718 ||| 0-0 ||| 47 668016 +a ||| over a period of ||| 0.00645161 0.0682544 1.49697e-06 9.76774e-10 2.718 ||| 0-0 ||| 155 668016 +a ||| over a period ||| 0.00561798 0.0682544 1.49697e-06 1.79673e-08 2.718 ||| 0-0 ||| 178 668016 +a ||| over a ||| 0.00683761 0.0682544 1.19758e-05 0.000102964 2.718 ||| 0-0 ||| 1170 668016 +a ||| over again ||| 0.00515464 0.0682544 1.49697e-06 1.34333e-06 2.718 ||| 0-0 ||| 194 668016 +a ||| over against ||| 0.03125 0.0598572 1.49697e-06 6.03838e-06 2.718 ||| 0-0 0-1 ||| 32 668016 +a ||| over all ||| 0.00581395 0.0682544 1.49697e-06 1.09766e-05 2.718 ||| 0-0 ||| 172 668016 +a ||| over and above ||| 0.00117096 0.0682544 1.49697e-06 3.7709e-09 2.718 ||| 0-0 ||| 854 668016 +a ||| over and over ||| 0.00970874 0.0682544 1.49697e-06 1.40099e-08 2.718 ||| 0-2 ||| 103 668016 +a ||| over and ||| 0.013624 0.0682544 7.48485e-06 2.90964e-05 2.718 ||| 0-0 ||| 367 668016 +a ||| over as ||| 0.0588235 0.0243476 1.49697e-06 4.22391e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| over by Josu ||| 1 0.0682544 1.49697e-06 4.87818e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| over by the Commission itself ||| 1 0.0682544 1.49697e-06 2.96807e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| over by the Commission ||| 0.5 0.0682544 1.49697e-06 4.37316e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| over by the ||| 0.05 0.0682544 1.49697e-06 7.48701e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| over by ||| 0.228261 0.0682544 3.14364e-05 1.21955e-05 2.718 ||| 0-0 ||| 92 668016 +a ||| over differences ||| 0.5 0.0682544 1.49697e-06 5.43559e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| over for ||| 0.105263 0.0683377 2.99394e-06 1.77426e-05 2.718 ||| 0-1 ||| 19 668016 +a ||| over from ||| 0.0102041 0.0559063 1.49697e-06 1.67221e-05 2.718 ||| 0-0 0-1 ||| 98 668016 +a ||| over greater ||| 1 0.0682544 1.49697e-06 3.05926e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| over hasty , ||| 1 0.0682544 1.49697e-06 1.93912e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| over hasty ||| 1 0.0682544 1.49697e-06 1.62603e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| over here . tempting ||| 1 0.0682544 1.49697e-06 1.99748e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| over here . ||| 0.0909091 0.0682544 1.49697e-06 1.42677e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| over here ||| 0.025641 0.0682544 1.49697e-06 4.71038e-06 2.718 ||| 0-0 ||| 39 668016 +a ||| over in ||| 0.0454545 0.0587624 4.49091e-06 2.89297e-05 2.718 ||| 0-1 ||| 66 668016 +a ||| over into ||| 0.0909091 0.0682544 2.99394e-06 2.38492e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| over it ||| 0.0166667 0.0682544 1.49697e-06 4.13086e-05 2.718 ||| 0-0 ||| 60 668016 +a ||| over itself to ||| 1 0.229811 1.49697e-06 1.14476e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| over many of ||| 0.2 0.0188479 1.49697e-06 4.88929e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| over others ||| 0.0344828 0.0682544 1.49697e-06 2.25786e-07 2.718 ||| 0-0 ||| 29 668016 +a ||| over that ||| 0.0125 0.0682544 1.49697e-06 3.90749e-05 2.718 ||| 0-0 ||| 80 668016 +a ||| over the counter ||| 0.0909091 0.0682544 1.49697e-06 2.62397e-09 2.718 ||| 0-0 ||| 11 668016 +a ||| over the course of ||| 0.00909091 0.0682544 1.49697e-06 9.78157e-09 2.718 ||| 0-0 ||| 110 668016 +a ||| over the course ||| 0.00793651 0.0682544 1.49697e-06 1.79927e-07 2.718 ||| 0-0 ||| 126 668016 +a ||| over the past few days ||| 0.0153846 0.0682544 1.49697e-06 2.03991e-16 2.718 ||| 0-0 ||| 65 668016 +a ||| over the past few ||| 0.00292398 0.0682544 1.49697e-06 3.20237e-12 2.718 ||| 0-0 ||| 342 668016 +a ||| over the past ||| 0.00214362 0.0682544 2.99394e-06 1.8268e-08 2.718 ||| 0-0 ||| 933 668016 +a ||| over the scope of ||| 0.5 0.0188479 1.49697e-06 8.71722e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| over the very ||| 0.333333 0.0682544 1.49697e-06 4.96201e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| over the ||| 0.0077668 0.0682544 0.000121255 0.000142607 2.718 ||| 0-0 ||| 10429 668016 +a ||| over there ||| 0.0127389 0.0682544 2.99394e-06 7.12039e-06 2.718 ||| 0-0 ||| 157 668016 +a ||| over this item , to the extent ||| 1 0.229811 1.49697e-06 5.7969e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| over this item , to the ||| 1 0.229811 1.49697e-06 3.01608e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| over this item , to ||| 1 0.229811 1.49697e-06 4.91284e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| over three and ||| 1 0.0682544 1.49697e-06 1.8418e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| over three ||| 0.00892857 0.0682544 1.49697e-06 1.4704e-07 2.718 ||| 0-0 ||| 112 668016 +a ||| over to our ||| 0.5 0.229811 1.49697e-06 2.32664e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| over to this amendment ||| 1 0.229811 1.49697e-06 6.94232e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| over to this ||| 1 0.229811 1.49697e-06 1.08985e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| over to ||| 0.247967 0.229811 9.13152e-05 0.00016867 2.718 ||| 0-1 ||| 246 668016 +a ||| over what ||| 0.0107527 0.0682544 1.49697e-06 3.25926e-06 2.718 ||| 0-0 ||| 93 668016 +a ||| over wholesale ||| 0.5 0.0682544 1.49697e-06 5.11038e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| over with ||| 0.333333 0.0571592 1.49697e-06 8.03869e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| over ||| 0.01957 0.0682544 0.000880218 0.0023229 2.718 ||| 0-0 ||| 30046 668016 +a ||| over-50s are often involved . ||| 1 0.288159 1.49697e-06 3.82948e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| over-50s are often involved ||| 1 0.288159 1.49697e-06 1.26427e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| over-50s are often ||| 1 0.288159 1.49697e-06 3.65607e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| overnight , into ||| 1 0.107578 1.49697e-06 2.6078e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| oversee ||| 0.00591716 0.0053191 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 169 668016 +a ||| overshadow ||| 0.0149254 0.0133333 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 67 668016 +a ||| overtake ||| 0.0277778 0.140351 1.49697e-06 7.3e-06 2.718 ||| 0-0 ||| 36 668016 +a ||| overthrow of ||| 0.0526316 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| overturned with the ||| 1 0.0571592 1.49697e-06 4.09977e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| overturned with ||| 1 0.0571592 1.49697e-06 6.67804e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| overweening urge ||| 1 0.345826 1.49697e-06 9.77e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| owe me ||| 0.5 0.0425532 1.49697e-06 2.6372e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| owe to ||| 0.0344828 0.229811 1.49697e-06 3.39793e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| owe ||| 0.00803213 0.0425532 2.99394e-06 4.38e-05 2.718 ||| 0-0 ||| 249 668016 +a ||| owed for ||| 0.166667 0.0683377 1.49697e-06 2.13721e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| owed to ||| 0.0833333 0.229811 4.49091e-06 2.03175e-06 2.718 ||| 0-1 ||| 36 668016 +a ||| owes Greece remain in abeyance and have ||| 1 0.0587624 1.49697e-06 1.99482e-26 2.718 ||| 0-3 ||| 1 668016 +a ||| owes Greece remain in abeyance and ||| 1 0.0587624 1.49697e-06 1.66794e-24 2.718 ||| 0-3 ||| 1 668016 +a ||| owes Greece remain in abeyance ||| 1 0.0587624 1.49697e-06 1.33159e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| owes Greece remain in ||| 1 0.0587624 1.49697e-06 1.21054e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| owing to the ||| 0.00374532 0.229811 1.49697e-06 2.94627e-07 2.718 ||| 0-1 ||| 267 668016 +a ||| owing to ||| 0.0116861 0.229811 1.04788e-05 4.79913e-06 2.718 ||| 0-1 ||| 599 668016 +a ||| own against ||| 0.111111 0.05146 1.49697e-06 4.40693e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| own ambitions of ||| 0.5 0.0188479 1.49697e-06 2.15621e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| own at ||| 0.166667 0.204175 1.49697e-06 5.77002e-05 2.718 ||| 0-1 ||| 6 668016 +a ||| own back on ||| 1 0.0782999 1.49697e-06 4.32564e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| own backs at ||| 1 0.204175 1.49697e-06 4.55832e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| own electorate . in terms ||| 0.5 0.0587624 1.49697e-06 6.09552e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| own electorate . in ||| 0.5 0.0587624 1.49697e-06 5.55349e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| own group to ||| 0.333333 0.229811 1.49697e-06 7.649e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| own growth and ||| 0.25 0.0015873 1.49697e-06 1.57666e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| own minds about ||| 0.5 0.0526361 1.49697e-06 4.09216e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| own nature in this ||| 1 0.0587624 1.49697e-06 9.30616e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| own nature in ||| 1 0.0587624 1.49697e-06 1.44027e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| own right to ||| 0.0909091 0.229811 1.49697e-06 3.82984e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| own to ||| 0.0357143 0.229811 1.49697e-06 0.000593866 2.718 ||| 0-1 ||| 28 668016 +a ||| own way of ||| 0.047619 0.0188479 1.49697e-06 1.08091e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| own will , to ||| 0.5 0.229811 1.49697e-06 6.1269e-07 2.718 ||| 0-3 ||| 2 668016 +a ||| owned by ||| 0.0169492 0.0337966 2.99394e-06 5.5947e-08 2.718 ||| 0-1 ||| 118 668016 +a ||| owners at ||| 0.5 0.204175 1.49697e-06 1.22527e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| p.m. to ||| 0.2 0.229811 1.49697e-06 2.13684e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| pace with ||| 0.0208333 0.0571592 4.49091e-06 3.23885e-07 2.718 ||| 0-1 ||| 144 668016 +a ||| package to ||| 0.0285714 0.229811 2.99394e-06 1.66393e-05 2.718 ||| 0-1 ||| 70 668016 +a ||| packaging around ||| 1 0.0931303 1.49697e-06 3.88935e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| packaging with the ||| 0.333333 0.0571592 1.49697e-06 4.40725e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| packaging with ||| 0.333333 0.0571592 1.49697e-06 7.17889e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| paid a visit to ||| 0.0909091 0.229811 1.49697e-06 6.16546e-11 2.718 ||| 0-3 ||| 11 668016 +a ||| paid as ||| 0.0588235 0.0243476 1.49697e-06 1.18077e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| paid back to ||| 0.111111 0.229811 1.49697e-06 3.17135e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| paid by ||| 0.011583 0.0337966 4.49091e-06 1.10742e-06 2.718 ||| 0-1 ||| 259 668016 +a ||| paid for doing so ||| 0.2 0.0683377 1.49697e-06 4.13255e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| paid for doing ||| 0.2 0.0683377 1.49697e-06 1.82075e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| paid for ||| 0.0135135 0.0683377 7.48485e-06 4.95981e-06 2.718 ||| 0-1 ||| 370 668016 +a ||| paid in ||| 0.00775194 0.0587624 1.49697e-06 8.0871e-06 2.718 ||| 0-1 ||| 129 668016 +a ||| paid out in ||| 0.047619 0.0587624 1.49697e-06 3.09768e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| paid out to ||| 0.0588235 0.229811 1.49697e-06 1.80606e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| paid sufficient attention in ||| 1 0.0587624 1.49697e-06 1.027e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| paid their ||| 0.0625 0.0004527 1.49697e-06 5.53206e-09 2.718 ||| 0-1 ||| 16 668016 +a ||| paid to ||| 0.0749543 0.229811 6.13758e-05 4.71506e-05 2.718 ||| 0-1 ||| 547 668016 +a ||| paid ||| 0.000560853 0.0009728 2.99394e-06 4.6e-06 2.718 ||| 0-0 ||| 3566 668016 +a ||| palms ||| 0.25 0.142857 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| panacea to ||| 0.0909091 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| pandering to ||| 0.0344828 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| paper from ||| 0.0666667 0.0435582 1.49697e-06 2.09485e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| paper on ||| 0.0192308 0.0782999 1.49697e-06 1.10393e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| paper to possibly ||| 0.5 0.229811 1.49697e-06 4.5872e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| paper to ||| 0.03125 0.229811 1.49697e-06 1.01938e-05 2.718 ||| 0-1 ||| 32 668016 +a ||| parents , ||| 0.00571429 0.0100042 1.49697e-06 2.61168e-06 2.718 ||| 0-0 ||| 175 668016 +a ||| parents to ||| 0.0149254 0.119908 1.49697e-06 7.67161e-06 2.718 ||| 0-0 0-1 ||| 67 668016 +a ||| parents ||| 0.00181378 0.0100042 4.49091e-06 2.19e-05 2.718 ||| 0-0 ||| 1654 668016 +a ||| parliament belonging to the ||| 0.333333 0.229811 1.49697e-06 1.39937e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| parliament belonging to ||| 0.333333 0.229811 1.49697e-06 2.27941e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| parliament to ||| 0.016129 0.229811 1.49697e-06 8.44227e-06 2.718 ||| 0-1 ||| 62 668016 +a ||| parliamentary party to ||| 1 0.229811 1.49697e-06 7.49968e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| parliaments to ||| 0.0204082 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| part , on ||| 0.0714286 0.0782999 1.49697e-06 5.39351e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| part about ||| 0.0588235 0.0526361 1.49697e-06 6.00785e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| part at ||| 0.0666667 0.204175 1.49697e-06 4.0577e-05 2.718 ||| 0-1 ||| 15 668016 +a ||| part back to ||| 1 0.229811 1.49697e-06 2.80898e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| part designed to ||| 1 0.229811 1.49697e-06 3.26169e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| part in bringing about ||| 0.2 0.0587624 1.49697e-06 8.13494e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| part in bringing ||| 0.166667 0.0587624 2.99394e-06 5.75192e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| part in building up ||| 1 0.0587624 1.49697e-06 1.42424e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| part in building ||| 0.2 0.0587624 1.49697e-06 4.17605e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| part in the ||| 0.00220751 0.0587624 1.49697e-06 4.39752e-06 2.718 ||| 0-1 ||| 453 668016 +a ||| part in this ||| 0.00495049 0.0587624 1.49697e-06 4.62832e-07 2.718 ||| 0-1 ||| 202 668016 +a ||| part in ||| 0.0261194 0.0587624 6.28727e-05 7.16304e-05 2.718 ||| 0-1 ||| 1608 668016 +a ||| part of all the islands in ||| 0.5 0.0587624 1.49697e-06 8.92451e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| part of the ||| 0.000452182 0.0188479 5.98788e-06 2.16489e-06 2.718 ||| 0-1 ||| 8846 668016 +a ||| part of ||| 0.00329284 0.0188479 6.73637e-05 3.52635e-05 2.718 ||| 0-1 ||| 13666 668016 +a ||| part thanks to ||| 0.25 0.229811 1.49697e-06 3.3828e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| part to good use in ||| 1 0.0587624 1.49697e-06 1.60488e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| part to help ||| 0.25 0.229811 1.49697e-06 7.9642e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| part to play in ||| 0.0222222 0.0587624 1.49697e-06 1.64216e-09 2.718 ||| 0-3 ||| 45 668016 +a ||| part to play ||| 0.00840336 0.229811 1.49697e-06 1.07748e-07 2.718 ||| 0-1 ||| 119 668016 +a ||| part to the ||| 0.0188679 0.229811 1.49697e-06 2.5639e-05 2.718 ||| 0-1 ||| 53 668016 +a ||| part to ||| 0.0221519 0.229811 1.04788e-05 0.00041763 2.718 ||| 0-1 ||| 316 668016 +a ||| part with ||| 0.0277778 0.0571592 1.49697e-06 1.99039e-05 2.718 ||| 0-1 ||| 36 668016 +a ||| part-sessions in Brussels ||| 0.333333 0.0587624 1.49697e-06 2.42253e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| part-sessions in ||| 0.0625 0.0587624 1.49697e-06 2.16297e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| part-time care assistant ||| 0.166667 0.246077 1.49697e-06 3.51586e-14 2.718 ||| 0-0 ||| 6 668016 +a ||| part-time care ||| 0.166667 0.246077 1.49697e-06 3.19624e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| part-time ||| 0.00479616 0.246077 2.99394e-06 0.0003149 2.718 ||| 0-0 ||| 417 668016 +a ||| participant in ||| 0.0526316 0.0587624 1.49697e-06 6.60907e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| participants about ||| 0.333333 0.0526361 1.49697e-06 3.98105e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| participate in ||| 0.00264375 0.0587624 5.98788e-06 1.44799e-06 2.718 ||| 0-1 ||| 1513 668016 +a ||| participate to ||| 0.142857 0.229811 1.49697e-06 8.44227e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| participated in ||| 0.00304878 0.0587624 1.49697e-06 2.16297e-07 2.718 ||| 0-1 ||| 328 668016 +a ||| participating in ||| 0.00132979 0.0587624 1.49697e-06 6.90949e-07 2.718 ||| 0-1 ||| 752 668016 +a ||| participation by the ||| 0.010101 0.0337966 1.49697e-06 1.21729e-08 2.718 ||| 0-1 ||| 99 668016 +a ||| participation by ||| 0.00296736 0.0337966 1.49697e-06 1.98283e-07 2.718 ||| 0-1 ||| 337 668016 +a ||| participation in ||| 0.00540958 0.0587624 1.04788e-05 1.44799e-06 2.718 ||| 0-1 ||| 1294 668016 +a ||| participation of ||| 0.000786163 0.0188479 1.49697e-06 7.12842e-07 2.718 ||| 0-1 ||| 1272 668016 +a ||| particular , as ||| 0.0104167 0.0243476 1.49697e-06 6.43801e-07 2.718 ||| 0-2 ||| 96 668016 +a ||| particular , helping ||| 1 0.302272 1.49697e-06 8.7348e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| particular , in the ||| 0.0108696 0.0587624 1.49697e-06 2.70702e-07 2.718 ||| 0-2 ||| 92 668016 +a ||| particular , in ||| 0.00913242 0.0587624 2.99394e-06 4.40942e-06 2.718 ||| 0-2 ||| 219 668016 +a ||| particular , to sing from ||| 1 0.0435582 1.49697e-06 1.50224e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| particular , to ||| 0.00220264 0.229811 1.49697e-06 2.57084e-05 2.718 ||| 0-2 ||| 454 668016 +a ||| particular , with ||| 0.00632911 0.0571592 1.49697e-06 1.22524e-06 2.718 ||| 0-2 ||| 158 668016 +a ||| particular importance to ||| 0.00571429 0.229811 1.49697e-06 2.80033e-08 2.718 ||| 0-2 ||| 175 668016 +a ||| particular thanks are due to ||| 0.25 0.229811 1.49697e-06 7.32294e-14 2.718 ||| 0-4 ||| 4 668016 +a ||| particular to ||| 0.00981595 0.229811 1.19758e-05 0.000215576 2.718 ||| 0-1 ||| 815 668016 +a ||| particular word of thanks to ||| 0.5 0.229811 1.49697e-06 9.66371e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| particularly by ||| 0.00377358 0.0337966 1.49697e-06 1.46861e-06 2.718 ||| 0-1 ||| 265 668016 +a ||| particularly necessary to emphasise ||| 0.166667 0.229811 1.49697e-06 2.71899e-13 2.718 ||| 0-2 ||| 6 668016 +a ||| particularly necessary to ||| 0.0666667 0.229811 1.49697e-06 1.60887e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| particularly on ||| 0.00177936 0.0782999 1.49697e-06 6.7715e-06 2.718 ||| 0-1 ||| 562 668016 +a ||| particularly through ||| 0.0047619 0.230708 1.49697e-06 1.41891e-06 2.718 ||| 0-1 ||| 210 668016 +a ||| particularly true as a ||| 1 0.0243476 1.49697e-06 1.12164e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| particularly true as ||| 0.333333 0.0243476 1.49697e-06 2.53045e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| particularly vulnerable to ||| 0.0243902 0.229811 1.49697e-06 6.31541e-10 2.718 ||| 0-2 ||| 41 668016 +a ||| particularly with regard to the role that ||| 1 0.229811 1.49697e-06 6.24167e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| particularly with regard to the role ||| 1 0.229811 1.49697e-06 3.71051e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| particularly with regard to the ||| 0.00719424 0.229811 1.49697e-06 1.6714e-11 2.718 ||| 0-3 ||| 139 668016 +a ||| particularly with regard to ||| 0.00236407 0.229811 1.49697e-06 2.72251e-10 2.718 ||| 0-3 ||| 423 668016 +a ||| particularly with ||| 0.00269906 0.0571592 2.99394e-06 2.98008e-06 2.718 ||| 0-1 ||| 741 668016 +a ||| particularly ||| 0.000106165 0.0001117 4.49091e-06 3.7e-06 2.718 ||| 0-0 ||| 28258 668016 +a ||| parties in the ||| 0.0075188 0.0587624 1.49697e-06 2.70741e-07 2.718 ||| 0-1 ||| 133 668016 +a ||| parties in ||| 0.01 0.0587624 4.49091e-06 4.41006e-06 2.718 ||| 0-1 ||| 300 668016 +a ||| parties of ||| 0.0172414 0.0188479 1.49697e-06 2.17106e-06 2.718 ||| 0-1 ||| 58 668016 +a ||| parties to ||| 0.00439883 0.229811 4.49091e-06 2.57121e-05 2.718 ||| 0-1 ||| 682 668016 +a ||| partly in order to ||| 0.0909091 0.229811 1.49697e-06 1.34979e-10 2.718 ||| 0-3 ||| 11 668016 +a ||| partly in view of ||| 0.111111 0.0587624 1.49697e-06 9.97259e-11 2.718 ||| 0-1 ||| 9 668016 +a ||| partly in view ||| 0.0909091 0.0587624 1.49697e-06 1.83441e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| partly in ||| 0.0125 0.0587624 1.49697e-06 2.03079e-06 2.718 ||| 0-1 ||| 80 668016 +a ||| partly on whether a ||| 1 0.0782999 1.49697e-06 1.49307e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| partly on whether ||| 0.333333 0.0782999 1.49697e-06 3.3684e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| partly on ||| 0.0327869 0.0782999 2.99394e-06 1.28222e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| partly with ||| 0.05 0.0571592 1.49697e-06 5.64294e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| partner for ||| 0.0294118 0.0683377 1.49697e-06 9.28582e-07 2.718 ||| 0-1 ||| 34 668016 +a ||| partner in ||| 0.00892857 0.0587624 1.49697e-06 1.51408e-06 2.718 ||| 0-1 ||| 112 668016 +a ||| partners at ||| 0.027027 0.204175 1.49697e-06 8.71306e-07 2.718 ||| 0-1 ||| 37 668016 +a ||| partners to get ||| 1 0.229811 1.49697e-06 3.92069e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| partners to ||| 0.00680272 0.229811 1.49697e-06 8.96772e-06 2.718 ||| 0-1 ||| 147 668016 +a ||| partners with ||| 0.030303 0.0571592 1.49697e-06 4.27395e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| parts for the ||| 0.2 0.0683377 1.49697e-06 1.31886e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| parts for ||| 0.0333333 0.0683377 1.49697e-06 2.14827e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| parts of the ||| 0.000577367 0.0188479 1.49697e-06 1.05866e-07 2.718 ||| 0-1 ||| 1732 668016 +a ||| parts of ||| 0.00306185 0.0188479 7.48485e-06 1.72443e-06 2.718 ||| 0-1 ||| 1633 668016 +a ||| party and ||| 0.00970874 0.0015873 1.49697e-06 1.31978e-07 2.718 ||| 0-1 ||| 103 668016 +a ||| party to ||| 0.0160772 0.229811 7.48485e-06 2.39606e-05 2.718 ||| 0-1 ||| 311 668016 +a ||| pass into ||| 0.03125 0.107578 1.49697e-06 3.4745e-07 2.718 ||| 0-1 ||| 32 668016 +a ||| pass on our ||| 0.047619 0.0782999 1.49697e-06 2.99318e-09 2.718 ||| 0-1 ||| 21 668016 +a ||| pass on this ||| 0.0344828 0.0782999 1.49697e-06 1.40207e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| pass on to ||| 0.0153846 0.229811 1.49697e-06 1.34069e-07 2.718 ||| 0-2 ||| 65 668016 +a ||| pass on ||| 0.00821918 0.0782999 4.49091e-06 2.16992e-06 2.718 ||| 0-1 ||| 365 668016 +a ||| pass them on to ||| 0.0588235 0.154056 1.49697e-06 2.03896e-09 2.718 ||| 0-2 0-3 ||| 17 668016 +a ||| pass through ||| 0.00819672 0.230708 1.49697e-06 4.54689e-07 2.718 ||| 0-1 ||| 122 668016 +a ||| pass you by ||| 0.333333 0.0337966 1.49697e-06 1.51947e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| passed around ||| 0.0909091 0.0931303 1.49697e-06 6.47622e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| passed because of ||| 0.25 0.0188479 1.49697e-06 6.95916e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| passed on , ||| 0.0909091 0.0782999 1.49697e-06 3.23918e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| passed on to ||| 0.0409836 0.154056 7.48485e-06 9.51485e-07 2.718 ||| 0-1 0-2 ||| 122 668016 +a ||| passed on ||| 0.028169 0.0782999 1.19758e-05 2.71619e-06 2.718 ||| 0-1 ||| 284 668016 +a ||| passed through ||| 0.0232558 0.230708 1.49697e-06 5.69156e-07 2.718 ||| 0-1 ||| 43 668016 +a ||| passed to ||| 0.05 0.229811 2.99394e-06 2.50816e-05 2.718 ||| 0-1 ||| 40 668016 +a ||| passing on ||| 0.00892857 0.0782999 1.49697e-06 9.71151e-07 2.718 ||| 0-1 ||| 112 668016 +a ||| passionate about ||| 0.0555556 0.0526361 1.49697e-06 1.61258e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| past to ||| 0.0142857 0.229811 1.49697e-06 4.48736e-05 2.718 ||| 0-1 ||| 70 668016 +a ||| path into ||| 0.5 0.107578 1.49697e-06 2.31431e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| path of ||| 0.00417537 0.0188479 2.99394e-06 1.12694e-06 2.718 ||| 0-1 ||| 479 668016 +a ||| path to achieving ||| 0.2 0.229811 1.49697e-06 8.83538e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| path to ||| 0.0022831 0.229811 1.49697e-06 1.33465e-05 2.718 ||| 0-1 ||| 438 668016 +a ||| path towards ||| 0.00431034 0.155507 1.49697e-06 1.28496e-07 2.718 ||| 0-1 ||| 232 668016 +a ||| patients on ||| 0.0714286 0.0782999 1.49697e-06 2.04852e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| patients ||| 0.000808081 0.0025755 2.99394e-06 1e-05 2.718 ||| 0-0 ||| 2475 668016 +a ||| pattern to ||| 0.0714286 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| pay close attention to ||| 0.0204082 0.229811 1.49697e-06 1.94386e-12 2.718 ||| 0-3 ||| 49 668016 +a ||| pay extra to watch ||| 1 0.229811 1.49697e-06 2.23928e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| pay extra to ||| 1 0.229811 1.49697e-06 1.24405e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| pay for basing ||| 0.125 0.0683377 1.49697e-06 2.26898e-11 2.718 ||| 0-1 ||| 8 668016 +a ||| pay for ||| 0.000896861 0.0683377 1.49697e-06 5.27671e-06 2.718 ||| 0-1 ||| 1115 668016 +a ||| pay lip-service to ||| 0.0384615 0.229811 1.49697e-06 1.45473e-10 2.718 ||| 0-2 ||| 26 668016 +a ||| pay most attention to ||| 0.333333 0.229811 1.49697e-06 5.66512e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| pay to ||| 0.0123457 0.229811 1.49697e-06 5.01632e-05 2.718 ||| 0-1 ||| 81 668016 +a ||| pay tribute to ||| 0.00694444 0.229811 2.99394e-06 9.73166e-10 2.718 ||| 0-2 ||| 288 668016 +a ||| payable on ||| 0.111111 0.0782999 1.49697e-06 6.82841e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| payers as ||| 1 0.0243476 1.49697e-06 1.22814e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| paying back to ||| 1 0.229811 1.49697e-06 7.96371e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| paying tribute to ||| 0.02 0.229811 1.49697e-06 2.297e-10 2.718 ||| 0-2 ||| 50 668016 +a ||| payment at all to ||| 1 0.229811 1.49697e-06 1.74673e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| payment to the ||| 0.166667 0.229811 1.49697e-06 5.41942e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| payment to ||| 0.0333333 0.229811 1.49697e-06 8.8276e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| payments from ||| 0.0175439 0.0435582 1.49697e-06 2.3828e-07 2.718 ||| 0-1 ||| 57 668016 +a ||| pays to ||| 0.0625 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| peace again ||| 0.333333 0.0700825 1.49697e-06 9.66773e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| peace of mind ||| 0.0363636 0.0188479 2.99394e-06 3.10699e-10 2.718 ||| 0-1 ||| 55 668016 +a ||| peace of ||| 0.0307692 0.0188479 2.99394e-06 1.23342e-06 2.718 ||| 0-1 ||| 65 668016 +a ||| peasant ||| 0.0416667 0.0638298 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 24 668016 +a ||| peeled in ||| 0.5 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| penalise but reward ||| 1 0.350775 1.49697e-06 4.51591e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| penalise but ||| 1 0.350775 1.49697e-06 1.12898e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| penalise ||| 0.00816326 0.350775 2.99394e-06 0.0001652 2.718 ||| 0-0 ||| 245 668016 +a ||| penalised ||| 0.00310559 0.101732 1.49697e-06 4.29e-05 2.718 ||| 0-0 ||| 322 668016 +a ||| penalising our ||| 0.333333 0.309434 1.49697e-06 1.03179e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| penalising ||| 0.0108108 0.309434 2.99394e-06 7.48e-05 2.718 ||| 0-0 ||| 185 668016 +a ||| penalty , and ||| 0.0625 0.0015873 1.49697e-06 3.22143e-09 2.718 ||| 0-2 ||| 16 668016 +a ||| penalty on ||| 0.285714 0.0782999 2.99394e-06 5.31098e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| pending ||| 0.00766284 0.0799136 1.19758e-05 6.75e-05 2.718 ||| 0-0 ||| 1044 668016 +a ||| penny for ||| 0.125 0.0683377 1.49697e-06 9.21213e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| pensioners in ||| 0.037037 0.0587624 1.49697e-06 2.4033e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| pensioners to concern ||| 0.5 0.229811 1.49697e-06 1.87061e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| pensioners to lead ||| 1 0.229811 1.49697e-06 2.69732e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| pensioners to ||| 0.222222 0.229811 2.99394e-06 1.40121e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| people ' ||| 0.00507614 0.0079526 1.49697e-06 2.25742e-06 2.718 ||| 0-0 ||| 197 668016 +a ||| people , ||| 0.00110834 0.0079526 5.98788e-06 7.83742e-05 2.718 ||| 0-0 ||| 3609 668016 +a ||| people - representing the ||| 1 0.194985 1.49697e-06 7.08932e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| people - representing ||| 1 0.194985 1.49697e-06 1.15477e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| people - ||| 0.00512821 0.0079526 1.49697e-06 2.47902e-06 2.718 ||| 0-0 ||| 195 668016 +a ||| people are heading ||| 0.5 0.0079526 1.49697e-06 3.26068e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| people are locked up in prison . ||| 1 0.0587624 1.49697e-06 7.68569e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| people are locked up in prison ||| 1 0.0587624 1.49697e-06 2.53737e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| people are locked up in ||| 1 0.0587624 1.49697e-06 2.07981e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| people are ||| 0.000956938 0.0079526 2.99394e-06 9.9715e-06 2.718 ||| 0-0 ||| 2090 668016 +a ||| people at all ||| 0.0714286 0.204175 1.49697e-06 1.41563e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| people at the ||| 0.025641 0.204175 2.99394e-06 1.83917e-06 2.718 ||| 0-1 ||| 78 668016 +a ||| people at ||| 0.0219298 0.204175 7.48485e-06 2.9958e-05 2.718 ||| 0-1 ||| 228 668016 +a ||| people back ||| 0.0172414 0.0536618 1.49697e-06 6.47563e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| people belonging to ||| 0.05 0.229811 1.49697e-06 8.32506e-09 2.718 ||| 0-2 ||| 20 668016 +a ||| people by ||| 0.0151515 0.0208746 1.49697e-06 5.40711e-06 2.718 ||| 0-0 0-1 ||| 66 668016 +a ||| people coming onto ||| 1 0.207143 1.49697e-06 4.07376e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| people from across ||| 0.5 0.046317 1.49697e-06 3.1175e-09 2.718 ||| 0-1 0-2 ||| 2 668016 +a ||| people from ||| 0.00286123 0.0435582 2.99394e-06 6.33638e-06 2.718 ||| 0-1 ||| 699 668016 +a ||| people have been killed ||| 0.0212766 0.102431 1.49697e-06 5.68053e-12 2.718 ||| 0-3 ||| 47 668016 +a ||| people have the skills they need to ||| 1 0.0079526 1.49697e-06 1.52703e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| people have the skills they need ||| 1 0.0079526 1.49697e-06 1.71851e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| people have the skills they ||| 1 0.0079526 1.49697e-06 1.87426e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| people have the skills ||| 0.333333 0.0079526 1.49697e-06 5.74221e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| people have the ||| 0.0192308 0.0079526 1.49697e-06 4.82538e-07 2.718 ||| 0-0 ||| 52 668016 +a ||| people have ||| 0.000744602 0.0079526 1.49697e-06 7.85998e-06 2.718 ||| 0-0 ||| 1343 668016 +a ||| people in a ||| 0.027027 0.0587624 2.99394e-06 2.34415e-06 2.718 ||| 0-1 ||| 74 668016 +a ||| people in my country , ||| 0.142857 0.0587624 1.49697e-06 1.45971e-12 2.718 ||| 0-1 ||| 7 668016 +a ||| people in my country ||| 0.04 0.0587624 1.49697e-06 1.22402e-11 2.718 ||| 0-1 ||| 25 668016 +a ||| people in my ||| 0.0147059 0.0587624 1.49697e-06 3.40101e-08 2.718 ||| 0-1 ||| 68 668016 +a ||| people in ||| 0.00279156 0.0587624 1.34727e-05 5.28846e-05 2.718 ||| 0-1 ||| 3224 668016 +a ||| people involved in ||| 0.0126582 0.0587624 1.49697e-06 1.82875e-08 2.718 ||| 0-2 ||| 79 668016 +a ||| people join them ||| 1 0.207917 1.49697e-06 3.22614e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| people join ||| 0.333333 0.207917 1.49697e-06 1.20271e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| people left ||| 0.166667 0.0079526 1.49697e-06 1.24145e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| people like that ||| 0.125 0.0079526 1.49697e-06 1.96329e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| people like ||| 0.00564972 0.0079526 1.49697e-06 1.16712e-06 2.718 ||| 0-0 ||| 177 668016 +a ||| people living ||| 0.00203666 0.0079526 1.49697e-06 5.50734e-08 2.718 ||| 0-0 ||| 491 668016 +a ||| people now ||| 0.025 0.0079526 1.49697e-06 1.35377e-06 2.718 ||| 0-0 ||| 40 668016 +a ||| people occasionally get a ||| 1 0.123664 1.49697e-06 1.26056e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| people occasionally get ||| 1 0.123664 1.49697e-06 2.84385e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| people occasionally ||| 1 0.123664 1.49697e-06 6.50468e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| people of Iraq ||| 0.0169492 0.0188479 1.49697e-06 3.28041e-10 2.718 ||| 0-1 ||| 59 668016 +a ||| people of retirement age ||| 0.125 0.0188479 1.49697e-06 4.64334e-15 2.718 ||| 0-1 ||| 8 668016 +a ||| people of retirement ||| 0.25 0.0188479 1.49697e-06 7.55015e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| people of ||| 0.00193004 0.0188479 1.19758e-05 2.6035e-05 2.718 ||| 0-1 ||| 4145 668016 +a ||| people off ||| 0.0454545 0.0893962 1.49697e-06 6.73265e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| people or those in ||| 0.25 0.0587624 1.49697e-06 4.37812e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| people over ||| 0.00970874 0.0682544 1.49697e-06 2.04462e-06 2.718 ||| 0-1 ||| 103 668016 +a ||| people possess ||| 0.25 0.0079526 1.49697e-06 5.19188e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| people say that ||| 0.0147059 0.0079526 1.49697e-06 1.05665e-08 2.718 ||| 0-0 ||| 68 668016 +a ||| people say ||| 0.00729927 0.0079526 1.49697e-06 6.28152e-07 2.718 ||| 0-0 ||| 137 668016 +a ||| people should be able to acquire ||| 1 0.229811 1.49697e-06 3.43159e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| people should be able to ||| 0.0909091 0.229811 1.49697e-06 2.06722e-11 2.718 ||| 0-4 ||| 11 668016 +a ||| people the world over ||| 0.25 0.0682544 1.49697e-06 2.85941e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| people to bring ||| 0.25 0.229811 1.49697e-06 9.59848e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| people to convert to ||| 1 0.229811 1.49697e-06 1.36991e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| people to join ||| 0.166667 0.229811 1.49697e-06 1.44301e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| people to ||| 0.0175651 0.229811 4.34121e-05 0.000308335 2.718 ||| 0-1 ||| 1651 668016 +a ||| people together ||| 0.0188679 0.0079526 1.49697e-06 3.94714e-07 2.718 ||| 0-0 ||| 53 668016 +a ||| people under the ||| 0.0833333 0.0384416 1.49697e-06 7.66462e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| people under ||| 0.030303 0.0384416 1.49697e-06 1.24848e-06 2.718 ||| 0-1 ||| 33 668016 +a ||| people wanting to ||| 0.05 0.229811 1.49697e-06 4.56336e-09 2.718 ||| 0-2 ||| 20 668016 +a ||| people were seen as subjects ||| 0.5 0.0243476 1.49697e-06 6.92981e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| people were seen as ||| 0.5 0.0243476 1.49697e-06 2.91169e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| people who are ||| 0.00147059 0.0079526 1.49697e-06 8.79486e-09 2.718 ||| 0-0 ||| 680 668016 +a ||| people who really want to invest in ||| 1 0.229811 1.49697e-06 1.23911e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| people who really want to invest ||| 1 0.229811 1.49697e-06 5.78903e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| people who really want to ||| 0.333333 0.229811 1.49697e-06 6.15854e-14 2.718 ||| 0-4 ||| 3 668016 +a ||| people who ||| 0.000415887 0.0079526 2.99394e-06 5.7965e-07 2.718 ||| 0-0 ||| 4809 668016 +a ||| people with ||| 0.000789266 0.0571592 1.49697e-06 1.4695e-05 2.718 ||| 0-1 ||| 1267 668016 +a ||| people ||| 0.00179399 0.0079526 0.000176642 0.0006572 2.718 ||| 0-0 ||| 65775 668016 +a ||| peoples in ||| 0.010989 0.0587624 1.49697e-06 8.41155e-07 2.718 ||| 0-1 ||| 91 668016 +a ||| per cent with ||| 0.333333 0.0571592 1.49697e-06 6.3605e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| per sub-area ||| 1 0.0102229 1.49697e-06 2.228e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| per tonne to ||| 0.142857 0.229811 1.49697e-06 2.17257e-11 2.718 ||| 0-2 ||| 7 668016 +a ||| per year for ||| 0.0384615 0.0683377 1.49697e-06 4.07118e-10 2.718 ||| 0-2 ||| 26 668016 +a ||| per ||| 0.00902643 0.0102229 4.19152e-05 5.57e-05 2.718 ||| 0-0 ||| 3102 668016 +a ||| perceive us to be ||| 0.166667 0.229811 1.49697e-06 8.59987e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| perceive us to ||| 0.166667 0.229811 1.49697e-06 4.7453e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| perceived as ||| 0.0078125 0.0243476 1.49697e-06 1.16673e-07 2.718 ||| 0-1 ||| 128 668016 +a ||| percent in ||| 0.166667 0.0587624 1.49697e-06 1.32181e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| percentage of ||| 0.00191205 0.0188479 1.49697e-06 4.37762e-07 2.718 ||| 0-1 ||| 523 668016 +a ||| perfect record on ||| 0.5 0.0782999 1.49697e-06 1.9898e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| perform in ||| 0.0526316 0.0587624 1.49697e-06 1.03943e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| performed by ||| 0.0108696 0.0337966 1.49697e-06 1.03666e-07 2.718 ||| 0-1 ||| 92 668016 +a ||| performing of ||| 0.0454545 0.0188479 1.49697e-06 2.3367e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| perhaps as the ||| 1 0.0243476 1.49697e-06 8.33142e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| perhaps as ||| 0.0285714 0.0243476 1.49697e-06 1.35709e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| perhaps at ||| 0.03125 0.204175 1.49697e-06 5.26528e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| perhaps directs our thoughts more to ||| 1 0.229811 1.49697e-06 6.62359e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| perhaps even ||| 0.0025974 0.0495435 1.49697e-06 3.01897e-07 2.718 ||| 0-1 ||| 385 668016 +a ||| perhaps in ||| 0.00531915 0.0587624 1.49697e-06 9.29476e-06 2.718 ||| 0-1 ||| 188 668016 +a ||| perhaps on occasions ||| 0.25 0.0782999 1.49697e-06 1.56106e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| perhaps on ||| 0.04 0.0782999 1.49697e-06 5.86864e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| perhaps specifically for the benefit of ||| 1 0.0188479 1.49697e-06 1.59518e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| perhaps the ||| 0.00111483 0.0004654 1.49697e-06 2.37078e-07 2.718 ||| 0-1 ||| 897 668016 +a ||| perhaps ||| 0.000172592 0.0003326 2.99394e-06 4.6e-06 2.718 ||| 0-0 ||| 11588 668016 +a ||| period 2006-2010 , amounts to ||| 0.333333 0.229811 1.49697e-06 1.76412e-16 2.718 ||| 0-4 ||| 3 668016 +a ||| period from 2003 to 2006 ||| 0.2 0.229811 1.49697e-06 1.06414e-17 2.718 ||| 0-3 ||| 5 668016 +a ||| period from 2003 to ||| 0.111111 0.229811 1.49697e-06 1.13206e-12 2.718 ||| 0-3 ||| 9 668016 +a ||| period in ||| 0.00462963 0.0587624 1.49697e-06 1.04844e-05 2.718 ||| 0-1 ||| 216 668016 +a ||| period of ||| 0.000880282 0.0188479 2.99394e-06 5.16145e-06 2.718 ||| 0-1 ||| 2272 668016 +a ||| period until ||| 0.0588235 0.0268909 1.49697e-06 3.9978e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| period which is beset with ||| 0.0769231 0.0571592 1.49697e-06 1.70634e-15 2.718 ||| 0-4 ||| 13 668016 +a ||| period with ||| 0.0909091 0.0571592 1.49697e-06 2.91329e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| periodically to ||| 0.25 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| permissible , to use ||| 0.5 0.229811 1.49697e-06 1.60457e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| permissible , to ||| 0.5 0.229811 1.49697e-06 3.30023e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| permissible to wonder about ||| 0.166667 0.0526361 1.49697e-06 4.20961e-14 2.718 ||| 0-3 ||| 6 668016 +a ||| permission for ||| 0.0227273 0.0683377 1.49697e-06 3.5743e-07 2.718 ||| 0-1 ||| 44 668016 +a ||| permission to take part ||| 1 0.229811 1.49697e-06 6.52212e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| permission to take ||| 0.125 0.229811 1.49697e-06 5.47066e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| permission to ||| 0.0212766 0.229811 4.49091e-06 3.39793e-06 2.718 ||| 0-1 ||| 141 668016 +a ||| permit the arrest of ||| 0.5 0.0188479 1.49697e-06 5.99548e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| permitted to call German ||| 1 0.229811 1.49697e-06 5.32268e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| permitted to call ||| 0.5 0.229811 1.49697e-06 2.20858e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| permitted to work ||| 0.0909091 0.229811 1.49697e-06 6.29744e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| permitted to ||| 0.0274725 0.229811 7.48485e-06 9.94857e-06 2.718 ||| 0-1 ||| 182 668016 +a ||| perpetrated at ||| 0.2 0.204175 1.49697e-06 5.37759e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| perpetrator of this action ||| 0.333333 0.0188479 1.49697e-06 8.08852e-14 2.718 ||| 0-1 ||| 3 668016 +a ||| perpetrator of this ||| 0.2 0.0188479 1.49697e-06 2.67566e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| perpetrator of ||| 0.0588235 0.0188479 1.49697e-06 4.14099e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| perpetrators of ||| 0.0138249 0.0242347 4.49091e-06 9.40497e-07 2.718 ||| 0-0 ||| 217 668016 +a ||| perpetrators will ||| 1 0.0242347 1.49697e-06 1.49666e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| perpetrators ||| 0.00704225 0.0242347 5.98788e-06 1.73e-05 2.718 ||| 0-0 ||| 568 668016 +a ||| persecute these people , it ||| 1 0.410256 1.49697e-06 8.47933e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| persecute these people , ||| 1 0.410256 1.49697e-06 4.76817e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| persecute these people ||| 1 0.410256 1.49697e-06 3.99831e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| persecute these ||| 1 0.410256 1.49697e-06 4.5425e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| persecute ||| 0.016129 0.410256 1.49697e-06 4.38e-05 2.718 ||| 0-0 ||| 62 668016 +a ||| persecuted ||| 0.00238095 0.0551181 1.49697e-06 2.56e-05 2.718 ||| 0-0 ||| 420 668016 +a ||| persevere in ||| 0.037037 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 27 668016 +a ||| persist in our ||| 0.1 0.0587624 1.49697e-06 5.05555e-10 2.718 ||| 0-1 ||| 10 668016 +a ||| persist in ||| 0.00763359 0.0587624 1.49697e-06 3.66503e-07 2.718 ||| 0-1 ||| 131 668016 +a ||| persisting in ||| 0.0769231 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| persists in ||| 0.0181818 0.0587624 1.49697e-06 1.74239e-07 2.718 ||| 0-1 ||| 55 668016 +a ||| person conducting ||| 0.111111 0.140069 1.49697e-06 1.43483e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| person in France ||| 1 0.0587624 1.49697e-06 1.77988e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| person in ||| 0.0070922 0.0587624 1.49697e-06 7.73863e-06 2.718 ||| 0-1 ||| 141 668016 +a ||| person standing in for them could be ||| 0.5 0.06355 1.49697e-06 5.2146e-19 2.718 ||| 0-2 0-3 ||| 2 668016 +a ||| person standing in for them could ||| 0.5 0.06355 1.49697e-06 2.87736e-17 2.718 ||| 0-2 0-3 ||| 2 668016 +a ||| person standing in for them ||| 0.5 0.06355 1.49697e-06 4.04634e-14 2.718 ||| 0-2 0-3 ||| 2 668016 +a ||| person standing in for ||| 0.5 0.06355 1.49697e-06 1.50848e-11 2.718 ||| 0-2 0-3 ||| 2 668016 +a ||| person to ||| 0.0326797 0.229811 7.48485e-06 4.51188e-05 2.718 ||| 0-1 ||| 153 668016 +a ||| person with ||| 0.0217391 0.0571592 1.49697e-06 2.15033e-06 2.718 ||| 0-1 ||| 46 668016 +a ||| personal assistants sacked ||| 0.5 0.206349 1.49697e-06 2.023e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| personal reference to our friend on ||| 1 0.0782999 1.49697e-06 1.93852e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| personally , ||| 0.00449438 0.0397531 5.98788e-06 1.75304e-05 2.718 ||| 0-0 ||| 890 668016 +a ||| personally . ||| 0.00970874 0.0397531 1.49697e-06 4.45263e-07 2.718 ||| 0-0 ||| 103 668016 +a ||| personally fully agree ||| 1 0.0397531 1.49697e-06 2.65217e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| personally fully ||| 1 0.0397531 1.49697e-06 1.66698e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| personally on that ||| 1 0.0782999 1.49697e-06 2.48235e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| personally on ||| 0.0833333 0.0782999 1.49697e-06 1.47569e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| personally participating in ||| 0.5 0.0587624 1.49697e-06 2.68779e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| personally responsible ||| 0.0588235 0.0397531 1.49697e-06 2.17413e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| personally will ||| 0.0666667 0.0397531 1.49697e-06 1.27173e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| personally ||| 0.00413749 0.0397531 1.94606e-05 0.000147 2.718 ||| 0-0 ||| 3142 668016 +a ||| persons applying to ||| 0.333333 0.229811 1.49697e-06 5.97142e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| perspective of ||| 0.00263158 0.0188479 1.49697e-06 9.58343e-07 2.718 ||| 0-1 ||| 380 668016 +a ||| perspective on events , ||| 0.166667 0.0782999 1.49697e-06 1.06562e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| perspective on events ||| 0.166667 0.0782999 1.49697e-06 8.93565e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| perspective on ||| 0.015873 0.0782999 1.49697e-06 1.22911e-06 2.718 ||| 0-1 ||| 63 668016 +a ||| persuade the ||| 0.00421941 0.211424 1.49697e-06 1.38991e-05 2.718 ||| 0-0 ||| 237 668016 +a ||| persuade ||| 0.00651042 0.211424 7.48485e-06 0.0002264 2.718 ||| 0-0 ||| 768 668016 +a ||| persuaded ||| 0.00508906 0.080292 2.99394e-06 3.01e-05 2.718 ||| 0-0 ||| 393 668016 +a ||| persuading ||| 0.00735294 0.342857 1.49697e-06 7.67e-05 2.718 ||| 0-0 ||| 136 668016 +a ||| persuasion for ||| 0.25 0.0683377 1.49697e-06 1.32655e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| pertain to ||| 0.0238095 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| pertaining to ||| 0.00966184 0.229811 2.99394e-06 2.13684e-06 2.718 ||| 0-1 ||| 207 668016 +a ||| perversely having ||| 1 0.005163 1.49697e-06 3.248e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| pesticides and nitrates which seriously affect water ||| 1 0.330659 1.49697e-06 2.87204e-28 2.718 ||| 0-5 ||| 1 668016 +a ||| pesticides and nitrates which seriously affect ||| 1 0.330659 1.49697e-06 5.04751e-24 2.718 ||| 0-5 ||| 1 668016 +a ||| phased out ||| 0.00574713 0.0669777 1.49697e-06 1.92747e-08 2.718 ||| 0-1 ||| 174 668016 +a ||| phenomenon is in ||| 0.5 0.0587624 1.49697e-06 2.97522e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| phrase should be added to the ||| 0.5 0.229811 1.49697e-06 1.63766e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| phrase should be added to ||| 1 0.229811 1.49697e-06 2.66755e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| physical and spiritual terrorism at the ||| 1 0.204175 1.49697e-06 1.04935e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| physical and spiritual terrorism at ||| 1 0.204175 1.49697e-06 1.70927e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| physical attacks on ||| 0.333333 0.0782999 1.49697e-06 4.2412e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| pick out ||| 0.0175439 0.0669777 1.49697e-06 8.11998e-08 2.718 ||| 0-1 ||| 57 668016 +a ||| picture of ||| 0.0113636 0.0188479 2.99394e-06 1.01158e-06 2.718 ||| 0-1 ||| 176 668016 +a ||| pictures for ||| 0.333333 0.0683377 1.49697e-06 9.21213e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| pie in ||| 0.1 0.0587624 1.49697e-06 1.32181e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| piece of advice to give them ||| 1 0.229811 1.49697e-06 5.33254e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| piece of advice to give ||| 0.333333 0.229811 1.49697e-06 1.98797e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| piece of advice to ||| 0.25 0.229811 1.49697e-06 3.28048e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| piece of work ||| 0.0052356 0.0188479 1.49697e-06 1.79181e-09 2.718 ||| 0-1 ||| 191 668016 +a ||| piece of ||| 0.00301659 0.0188479 2.99394e-06 2.83066e-06 2.718 ||| 0-1 ||| 663 668016 +a ||| pieces of ||| 0.00995025 0.0188479 2.99394e-06 6.71432e-07 2.718 ||| 0-1 ||| 201 668016 +a ||| piled on top of ||| 0.5 0.0188479 1.49697e-06 1.91458e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| pioneers in ||| 0.030303 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-1 ||| 33 668016 +a ||| pitch in ||| 1 0.0587624 1.49697e-06 1.74239e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| pitting ||| 0.09375 0.232143 4.49091e-06 1.19e-05 2.718 ||| 0-0 ||| 32 668016 +a ||| place - to be ||| 1 0.229811 1.49697e-06 3.60404e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| place - to ||| 1 0.229811 1.49697e-06 1.98867e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| place and to determine ||| 1 0.229811 1.49697e-06 1.59149e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| place and to ||| 0.0769231 0.229811 1.49697e-06 6.6037e-06 2.718 ||| 0-2 ||| 13 668016 +a ||| place as a ||| 0.05 0.0243476 1.49697e-06 5.8521e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| place as ||| 0.0070922 0.0243476 1.49697e-06 1.32025e-05 2.718 ||| 0-1 ||| 141 668016 +a ||| place at the ||| 0.00772201 0.204175 2.99394e-06 3.14469e-06 2.718 ||| 0-1 ||| 259 668016 +a ||| place at ||| 0.0180995 0.204175 1.79636e-05 5.12233e-05 2.718 ||| 0-1 ||| 663 668016 +a ||| place during ||| 0.00704225 0.0054313 1.49697e-06 1.40115e-07 2.718 ||| 0-1 ||| 142 668016 +a ||| place emphasis on ||| 0.0357143 0.0782999 1.49697e-06 2.91746e-09 2.718 ||| 0-2 ||| 28 668016 +a ||| place following ||| 0.0212766 0.0720432 1.49697e-06 1.48363e-06 2.718 ||| 0-1 ||| 47 668016 +a ||| place for ||| 0.00968992 0.0683377 7.48485e-06 5.5457e-05 2.718 ||| 0-1 ||| 516 668016 +a ||| place from ||| 0.03125 0.0435582 1.49697e-06 1.08342e-05 2.718 ||| 0-1 ||| 32 668016 +a ||| place in the ||| 0.00138889 0.0587624 1.49697e-06 5.5513e-06 2.718 ||| 0-1 ||| 720 668016 +a ||| place in ||| 0.00711877 0.0587624 2.84424e-05 9.04242e-05 2.718 ||| 0-1 ||| 2669 668016 +a ||| place itself in ||| 0.333333 0.0587624 1.49697e-06 6.13709e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| place of the ||| 0.00900901 0.0188479 1.49697e-06 2.7329e-06 2.718 ||| 0-1 ||| 111 668016 +a ||| place of ||| 0.0180879 0.0188479 2.09576e-05 4.45156e-05 2.718 ||| 0-1 ||| 774 668016 +a ||| place on the ||| 0.00684932 0.0782999 1.49697e-06 3.50505e-06 2.718 ||| 0-1 ||| 146 668016 +a ||| place on ||| 0.00236593 0.0782999 4.49091e-06 5.70931e-05 2.718 ||| 0-1 ||| 1268 668016 +a ||| place to play a kind of ||| 0.5 0.0188479 1.49697e-06 2.20753e-14 2.718 ||| 0-5 ||| 2 668016 +a ||| place to turn ||| 1 0.229811 1.49697e-06 1.18199e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| place to ||| 0.0288809 0.229811 2.39515e-05 0.000527204 2.718 ||| 0-1 ||| 554 668016 +a ||| place with ||| 0.0123457 0.0571592 2.99394e-06 2.51261e-05 2.718 ||| 0-1 ||| 162 668016 +a ||| placed at the feet of ||| 1 0.0188479 1.49697e-06 1.78023e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| placed before ||| 0.04 0.0203282 1.49697e-06 6.63936e-08 2.718 ||| 0-1 ||| 25 668016 +a ||| placed in ||| 0.0120968 0.0587624 4.49091e-06 7.52233e-06 2.718 ||| 0-1 ||| 248 668016 +a ||| placed on doubtful ||| 1 0.0782999 1.49697e-06 8.54917e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| placed on our lists of species ||| 1 0.0782999 1.49697e-06 4.53329e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| placed on our lists of ||| 1 0.0782999 1.49697e-06 3.06303e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| placed on our lists ||| 1 0.0782999 1.49697e-06 5.6343e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| placed on our ||| 0.142857 0.0782999 1.49697e-06 6.55151e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| placed on ||| 0.0326679 0.0782999 2.69455e-05 4.74954e-06 2.718 ||| 0-1 ||| 551 668016 +a ||| placed to ||| 0.00917431 0.229811 2.99394e-06 4.38578e-05 2.718 ||| 0-1 ||| 218 668016 +a ||| placed upon ||| 0.0909091 0.19056 2.99394e-06 2.46832e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| placement on ||| 0.333333 0.0782999 1.49697e-06 4.17292e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| places in ||| 0.00862069 0.0587624 1.49697e-06 3.17836e-06 2.718 ||| 0-1 ||| 116 668016 +a ||| places on ||| 0.0185185 0.0782999 1.49697e-06 2.00679e-06 2.718 ||| 0-1 ||| 54 668016 +a ||| places open to ||| 1 0.229811 1.49697e-06 2.98719e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| placing on ||| 0.0136986 0.0782999 1.49697e-06 9.02867e-07 2.718 ||| 0-1 ||| 73 668016 +a ||| placing strain upon the Stability Pact , ||| 1 0.19056 1.49697e-06 1.70868e-25 2.718 ||| 0-2 ||| 1 668016 +a ||| placing strain upon the Stability Pact ||| 1 0.19056 1.49697e-06 1.4328e-24 2.718 ||| 0-2 ||| 1 668016 +a ||| placing strain upon the Stability ||| 1 0.19056 1.49697e-06 9.48872e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| placing strain upon the ||| 1 0.19056 1.49697e-06 1.75717e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| placing strain upon ||| 1 0.19056 1.49697e-06 2.86222e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| placing them on ||| 0.166667 0.0782999 1.49697e-06 2.42185e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| placing them ||| 0.0714286 0.0490385 1.49697e-06 1.25e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| placing ||| 0.00953516 0.0490385 1.19758e-05 4.66e-05 2.718 ||| 0-0 ||| 839 668016 +a ||| plain to ||| 0.0444444 0.229811 2.99394e-06 5.18446e-06 2.718 ||| 0-1 ||| 45 668016 +a ||| plan for Ukraine , ||| 1 0.0683377 1.49697e-06 3.2444e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| plan for Ukraine ||| 1 0.0683377 1.49697e-06 2.72056e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| plan for ||| 0.002 0.0683377 1.49697e-06 2.69363e-06 2.718 ||| 0-1 ||| 500 668016 +a ||| plan in ||| 0.0119048 0.0587624 1.49697e-06 4.39203e-06 2.718 ||| 0-1 ||| 84 668016 +a ||| plan to ||| 0.0077821 0.229811 5.98788e-06 2.5607e-05 2.718 ||| 0-1 ||| 514 668016 +a ||| planned for ||| 0.00304878 0.0683377 1.49697e-06 1.26022e-06 2.718 ||| 0-1 ||| 328 668016 +a ||| planned to ||| 0.0166667 0.229811 2.99394e-06 1.19803e-05 2.718 ||| 0-1 ||| 120 668016 +a ||| planning and in ||| 0.111111 0.0587624 1.49697e-06 2.11477e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| planning to ||| 0.00529101 0.229811 1.49697e-06 9.84347e-06 2.718 ||| 0-1 ||| 189 668016 +a ||| plans for a ||| 0.0181818 0.0683377 1.49697e-06 6.87636e-08 2.718 ||| 0-1 ||| 55 668016 +a ||| plans for ||| 0.00195695 0.0683377 1.49697e-06 1.55132e-06 2.718 ||| 0-1 ||| 511 668016 +a ||| plans on ||| 0.0333333 0.0782999 1.49697e-06 1.59709e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| plans to alter ||| 1 0.229811 1.49697e-06 1.00284e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| plans to establish ||| 0.1 0.229811 1.49697e-06 1.12525e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| plans to hold ||| 0.333333 0.229811 1.49697e-06 2.56905e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| plans to introduce a ||| 0.2 0.229811 1.49697e-06 3.34042e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| plans to introduce ||| 0.0588235 0.229811 1.49697e-06 7.53607e-10 2.718 ||| 0-1 ||| 17 668016 +a ||| plans to privatise ||| 0.333333 0.229811 1.49697e-06 5.89908e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| plans to ||| 0.00807754 0.229811 7.48485e-06 1.47477e-05 2.718 ||| 0-1 ||| 619 668016 +a ||| platform on ||| 0.0666667 0.0782999 1.49697e-06 1.89678e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| platforms will also be ||| 0.25 0.0561595 1.49697e-06 2.31947e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| platforms will also ||| 0.25 0.0561595 1.49697e-06 1.27985e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| platforms will ||| 0.2 0.0561595 1.49697e-06 2.53507e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| play a kind of ||| 0.5 0.0188479 1.49697e-06 1.65072e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| play a role in ||| 0.00666667 0.0587624 1.49697e-06 1.52538e-10 2.718 ||| 0-3 ||| 150 668016 +a ||| play at ||| 0.0333333 0.204175 1.49697e-06 8.78113e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| play in ||| 0.0109091 0.0587624 1.34727e-05 1.55013e-05 2.718 ||| 0-1 ||| 825 668016 +a ||| play our part in ||| 0.0208333 0.0587624 1.49697e-06 2.54922e-11 2.718 ||| 0-3 ||| 48 668016 +a ||| played a part in bringing about ||| 0.25 0.0587624 1.49697e-06 1.7777e-17 2.718 ||| 0-3 ||| 4 668016 +a ||| played a part in bringing ||| 0.25 0.0587624 1.49697e-06 1.25694e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| played a part in ||| 0.0222222 0.0587624 1.49697e-06 1.56531e-10 2.718 ||| 0-3 ||| 45 668016 +a ||| played a role of ||| 1 0.0188479 1.49697e-06 1.43494e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| played a significant part in ||| 0.05 0.0587624 1.49697e-06 9.01619e-15 2.718 ||| 0-4 ||| 20 668016 +a ||| played along with ||| 1 0.0571592 1.49697e-06 1.43625e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| played by ||| 0.00257732 0.0337966 2.99394e-06 4.05616e-07 2.718 ||| 0-1 ||| 776 668016 +a ||| played off against ||| 0.0588235 0.05146 1.49697e-06 5.21592e-11 2.718 ||| 0-2 ||| 17 668016 +a ||| played out ||| 0.0217391 0.0669777 1.49697e-06 2.02179e-07 2.718 ||| 0-1 ||| 46 668016 +a ||| players , at ||| 0.5 0.204175 1.49697e-06 6.85951e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| playing at ||| 0.0666667 0.204175 1.49697e-06 2.24293e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| playing field for ||| 0.0163934 0.0683377 1.49697e-06 3.54777e-10 2.718 ||| 0-2 ||| 61 668016 +a ||| playing in ||| 0.03125 0.0587624 1.49697e-06 3.95944e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| playing into the hands of the ||| 0.1 0.107578 1.49697e-06 8.2675e-15 2.718 ||| 0-1 ||| 10 668016 +a ||| playing into the hands of ||| 0.047619 0.107578 1.49697e-06 1.34668e-13 2.718 ||| 0-1 ||| 21 668016 +a ||| playing into the hands ||| 0.0454545 0.107578 1.49697e-06 2.47715e-12 2.718 ||| 0-1 ||| 22 668016 +a ||| playing into the ||| 0.0454545 0.107578 1.49697e-06 2.45749e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| playing into ||| 0.0357143 0.107578 1.49697e-06 4.00296e-07 2.718 ||| 0-1 ||| 28 668016 +a ||| plays into ||| 0.0714286 0.107578 1.49697e-06 8.74699e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| plea was concern for ||| 1 0.0683377 1.49697e-06 1.2792e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| plead in ||| 0.166667 0.0587624 1.49697e-06 2.16297e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| pleading emphatically in ||| 1 0.0587624 1.49697e-06 8.97633e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| pleas to ||| 0.142857 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| please , for ||| 0.5 0.0683377 1.49697e-06 3.90658e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| please , to ||| 0.105263 0.229811 2.99394e-06 3.71381e-06 2.718 ||| 0-2 ||| 19 668016 +a ||| please bear in ||| 0.0454545 0.0587624 1.49697e-06 7.99598e-10 2.718 ||| 0-2 ||| 22 668016 +a ||| please see to it ||| 0.2 0.229811 1.49697e-06 3.90208e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| please see to ||| 0.25 0.229811 1.49697e-06 2.19425e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| pleased to be able to ||| 0.0125 0.229811 1.49697e-06 1.91689e-11 2.718 ||| 0-4 ||| 80 668016 +a ||| pleased to note ||| 0.0127389 0.229811 2.99394e-06 1.48846e-09 2.718 ||| 0-1 ||| 157 668016 +a ||| pleased to ||| 0.00421053 0.229811 5.98788e-06 1.42573e-05 2.718 ||| 0-1 ||| 950 668016 +a ||| pleased with ||| 0.00167504 0.0571592 1.49697e-06 6.79491e-07 2.718 ||| 0-1 ||| 597 668016 +a ||| pleases with ||| 0.25 0.0571592 1.49697e-06 3.00512e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| pleasure in ||| 0.0169492 0.0587624 1.49697e-06 1.36387e-06 2.718 ||| 0-1 ||| 59 668016 +a ||| pleasure of welcoming the members of ||| 1 0.0188479 1.49697e-06 1.32213e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| pleasure to ||| 0.00632911 0.229811 2.99394e-06 7.95185e-06 2.718 ||| 0-1 ||| 316 668016 +a ||| pledge to use ||| 0.2 0.229811 1.49697e-06 9.87836e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| pledge to ||| 0.0461538 0.229811 4.49091e-06 2.03175e-06 2.718 ||| 0-1 ||| 65 668016 +a ||| plight of , ||| 1 0.0188479 1.49697e-06 8.81844e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| plight of ||| 0.00772201 0.0188479 2.99394e-06 7.39463e-08 2.718 ||| 0-1 ||| 259 668016 +a ||| ploughed back into ||| 0.333333 0.107578 1.49697e-06 2.8599e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| plunge ||| 0.0217391 0.223214 1.49697e-06 2.28e-05 2.718 ||| 0-0 ||| 46 668016 +a ||| plunged into ||| 0.030303 0.133576 1.49697e-06 1.66436e-07 2.718 ||| 0-0 0-1 ||| 33 668016 +a ||| plunged ||| 0.0306122 0.159575 4.49091e-06 2.74e-05 2.718 ||| 0-0 ||| 98 668016 +a ||| plunging ||| 0.0169492 0.287671 1.49697e-06 1.92e-05 2.718 ||| 0-0 ||| 59 668016 +a ||| pockets of the ||| 0.030303 0.0188479 1.49697e-06 8.53462e-09 2.718 ||| 0-1 ||| 33 668016 +a ||| pockets of ||| 0.00740741 0.0188479 1.49697e-06 1.39019e-07 2.718 ||| 0-1 ||| 135 668016 +a ||| point , in ||| 0.0344828 0.0587624 1.49697e-06 6.26805e-06 2.718 ||| 0-2 ||| 29 668016 +a ||| point - at ||| 0.333333 0.204175 1.49697e-06 1.12311e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| point I turn to ||| 1 0.229811 1.49697e-06 4.85983e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| point about ||| 0.0119048 0.0526361 2.99394e-06 4.40838e-06 2.718 ||| 0-1 ||| 168 668016 +a ||| point as ||| 0.0178571 0.0243476 1.49697e-06 7.6741e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| point at ||| 0.0194175 0.204175 5.98788e-06 2.97742e-05 2.718 ||| 0-1 ||| 206 668016 +a ||| point for ||| 0.00613497 0.0683377 1.49697e-06 3.22351e-05 2.718 ||| 0-1 ||| 163 668016 +a ||| point he thought of ||| 1 0.0188479 1.49697e-06 1.87651e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| point here ||| 0.0172414 0.0182742 1.49697e-06 7.52153e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| point in the ||| 0.00420168 0.0587624 1.49697e-06 3.22676e-06 2.718 ||| 0-1 ||| 238 668016 +a ||| point in time ||| 0.00561798 0.0587624 1.49697e-06 8.6288e-08 2.718 ||| 0-1 ||| 178 668016 +a ||| point in ||| 0.0085197 0.0587624 1.19758e-05 5.25602e-05 2.718 ||| 0-1 ||| 939 668016 +a ||| point made by ||| 0.00763359 0.0337966 1.49697e-06 1.50771e-08 2.718 ||| 0-2 ||| 131 668016 +a ||| point of asking ||| 1 0.0188479 1.49697e-06 1.11781e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| point of order to ||| 0.0526316 0.229811 1.49697e-06 8.87286e-09 2.718 ||| 0-3 ||| 19 668016 +a ||| point of view , ||| 0.001287 0.0188479 1.49697e-06 2.78736e-09 2.718 ||| 0-1 ||| 777 668016 +a ||| point of view of ||| 0.000981354 0.0188479 1.49697e-06 1.27066e-09 2.718 ||| 0-3 ||| 1019 668016 +a ||| point of view ||| 0.000233209 0.0188479 1.49697e-06 2.33731e-08 2.718 ||| 0-1 ||| 4288 668016 +a ||| point of ||| 0.00199081 0.0188479 1.94606e-05 2.58753e-05 2.718 ||| 0-1 ||| 6530 668016 +a ||| point on ||| 0.0101781 0.0782999 5.98788e-06 3.31861e-05 2.718 ||| 0-1 ||| 393 668016 +a ||| point out , ||| 0.003861 0.0669777 1.49697e-06 4.27833e-07 2.718 ||| 0-1 ||| 259 668016 +a ||| point out to ||| 0.00809717 0.229811 2.99394e-06 1.1738e-06 2.718 ||| 0-2 ||| 247 668016 +a ||| point out ||| 0.000721501 0.0669777 5.98788e-06 3.58755e-06 2.718 ||| 0-1 ||| 5544 668016 +a ||| point to ||| 0.00671141 0.229811 5.98788e-06 0.000306444 2.718 ||| 0-1 ||| 596 668016 +a ||| point towards ||| 0.0416667 0.155507 1.49697e-06 2.95035e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| point where there is nothing left to ||| 1 0.229811 1.49697e-06 3.13588e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| point where we shall ||| 1 0.131911 1.49697e-06 7.26725e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| pointed at us ||| 1 0.204175 1.49697e-06 4.52226e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| pointed at ||| 0.25 0.204175 5.98788e-06 1.56903e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| pointed out - ||| 0.0217391 0.0669777 1.49697e-06 7.13139e-10 2.718 ||| 0-1 ||| 46 668016 +a ||| pointed out ||| 0.0011422 0.0669777 5.98788e-06 1.89056e-07 2.718 ||| 0-1 ||| 3502 668016 +a ||| pointing back at ||| 1 0.204175 1.49697e-06 5.19653e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| pointing out a ||| 0.142857 0.0669777 1.49697e-06 4.12641e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| pointing out ||| 0.0019802 0.0669777 1.49697e-06 9.30927e-08 2.718 ||| 0-1 ||| 505 668016 +a ||| points and moved in the direction ||| 0.5 0.0587624 1.49697e-06 1.72561e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| points and moved in the ||| 0.5 0.0587624 1.49697e-06 1.90255e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| points and moved in ||| 0.5 0.0587624 1.49697e-06 3.09903e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| points for ||| 0.0204082 0.0683377 1.49697e-06 4.78662e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| points out ||| 0.00347222 0.0669777 4.49091e-06 5.3272e-07 2.718 ||| 0-1 ||| 864 668016 +a ||| points to ||| 0.0112994 0.229811 5.98788e-06 4.55042e-05 2.718 ||| 0-1 ||| 354 668016 +a ||| poised to send out ||| 1 0.229811 1.49697e-06 1.90106e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| poised to send ||| 1 0.229811 1.49697e-06 4.96307e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| poised to ||| 0.107143 0.229811 4.49091e-06 7.70664e-07 2.718 ||| 0-1 ||| 28 668016 +a ||| poisoned ||| 0.0166667 0.021978 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 60 668016 +a ||| police to ||| 0.027027 0.229811 1.49697e-06 5.81501e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| policies in ||| 0.00434783 0.0587624 1.49697e-06 3.95944e-06 2.718 ||| 0-1 ||| 230 668016 +a ||| policies it wishes to implement ||| 0.333333 0.229811 1.49697e-06 1.21179e-15 2.718 ||| 0-3 ||| 3 668016 +a ||| policies it wishes to ||| 0.333333 0.229811 1.49697e-06 2.17167e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| policy , in ||| 0.0263158 0.0587624 1.49697e-06 2.82091e-06 2.718 ||| 0-2 ||| 38 668016 +a ||| policy , which , over three and ||| 1 0.0682544 1.49697e-06 8.75997e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| policy , which , over three ||| 1 0.0682544 1.49697e-06 6.99348e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| policy , which , over ||| 1 0.0682544 1.49697e-06 1.10482e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| policy also kick-starts innovation in ||| 1 0.0587624 1.49697e-06 5.49341e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| policy and an economic system that is ||| 1 0.0015873 1.49697e-06 6.02204e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| policy and an economic system that ||| 1 0.0015873 1.49697e-06 1.92145e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| policy and an economic system ||| 1 0.0015873 1.49697e-06 1.14225e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| policy and an economic ||| 1 0.0015873 1.49697e-06 4.09556e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| policy and an ||| 0.166667 0.0015873 1.49697e-06 3.37639e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| policy and ||| 0.00102459 0.0015873 1.49697e-06 7.59644e-07 2.718 ||| 0-1 ||| 976 668016 +a ||| policy at ||| 0.0103093 0.204175 1.49697e-06 1.33997e-05 2.718 ||| 0-1 ||| 97 668016 +a ||| policy closer to ||| 0.5 0.229811 1.49697e-06 2.93756e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| policy for ||| 0.00609756 0.0683377 4.49091e-06 1.45073e-05 2.718 ||| 0-1 ||| 492 668016 +a ||| policy in ||| 0.00149031 0.0587624 1.49697e-06 2.36545e-05 2.718 ||| 0-1 ||| 671 668016 +a ||| policy is to be ||| 0.05 0.229811 1.49697e-06 7.83338e-08 2.718 ||| 0-2 ||| 20 668016 +a ||| policy is to ||| 0.0178571 0.229811 1.49697e-06 4.32237e-06 2.718 ||| 0-2 ||| 56 668016 +a ||| policy of sitting squarely on ||| 1 0.0782999 1.49697e-06 1.80575e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| policy on ||| 0.000896861 0.0782999 1.49697e-06 1.49352e-05 2.718 ||| 0-1 ||| 1115 668016 +a ||| policy to be ||| 0.0169492 0.229811 1.49697e-06 2.4994e-06 2.718 ||| 0-1 ||| 59 668016 +a ||| policy to serve ||| 0.25 0.229811 1.49697e-06 9.4333e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| policy to take a back seat to ||| 1 0.229811 1.49697e-06 9.52926e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| policy to ||| 0.00690846 0.229811 5.98788e-06 0.000137914 2.718 ||| 0-1 ||| 579 668016 +a ||| political groups to ||| 0.0121951 0.229811 1.49697e-06 4.13941e-09 2.718 ||| 0-2 ||| 82 668016 +a ||| political identities and opening up to ||| 0.5 0.229811 1.49697e-06 1.3511e-19 2.718 ||| 0-5 ||| 2 668016 +a ||| political need for effort and dare ||| 1 0.188525 1.49697e-06 2.63407e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| political prisoners , to ||| 0.333333 0.229811 1.49697e-06 9.09737e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| political prisoners ||| 0.00121212 0.0065217 1.49697e-06 2.9274e-09 2.718 ||| 0-1 ||| 825 668016 +a ||| political will to be committed to ||| 0.5 0.229811 1.49697e-06 7.21294e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| political will to be committed ||| 0.5 0.229811 1.49697e-06 8.11736e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| political will to be ||| 0.5 0.229811 1.49697e-06 9.80357e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| political will to ||| 0.00255754 0.229811 1.49697e-06 5.40949e-07 2.718 ||| 0-2 ||| 391 668016 +a ||| polluted on ||| 1 0.0782999 1.49697e-06 6.82841e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| pollution caused by ||| 0.0126582 0.0337966 1.49697e-06 1.28527e-11 2.718 ||| 0-2 ||| 79 668016 +a ||| pollution into ||| 0.333333 0.107578 1.49697e-06 1.11767e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| pool of ||| 0.0243902 0.0188479 1.49697e-06 1.39019e-07 2.718 ||| 0-1 ||| 41 668016 +a ||| poorest beneficiaries in ||| 0.25 0.0587624 1.49697e-06 1.46121e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| poorly functioning systems believed to be unchangeable ||| 1 0.229811 1.49697e-06 9.95193e-29 2.718 ||| 0-4 ||| 1 668016 +a ||| poorly functioning systems believed to be ||| 1 0.229811 1.49697e-06 2.48798e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| poorly functioning systems believed to ||| 1 0.229811 1.49697e-06 1.37284e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| poppies to ||| 0.5 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| popular with ||| 0.0263158 0.0571592 1.49697e-06 1.80307e-07 2.718 ||| 0-1 ||| 38 668016 +a ||| port of call for ||| 0.142857 0.0683377 1.49697e-06 5.91474e-12 2.718 ||| 0-3 ||| 7 668016 +a ||| port services to ||| 0.111111 0.229811 1.49697e-06 4.12322e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| poses problems for ||| 0.166667 0.0683377 1.49697e-06 3.75825e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| poses questions for ||| 0.5 0.0683377 1.49697e-06 2.47843e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| posh body repair shop to have ||| 0.333333 0.229811 1.49697e-06 6.71345e-24 2.718 ||| 0-4 ||| 3 668016 +a ||| posh body repair shop to ||| 0.333333 0.229811 1.49697e-06 5.61334e-22 2.718 ||| 0-4 ||| 3 668016 +a ||| position , based on eco-tax ||| 1 0.0782999 1.49697e-06 2.44647e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| position , based on ||| 0.25 0.0782999 1.49697e-06 3.49496e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| position against ||| 0.0333333 0.05146 1.49697e-06 8.56015e-07 2.718 ||| 0-1 ||| 30 668016 +a ||| position at ||| 0.0133333 0.204175 1.49697e-06 1.12079e-05 2.718 ||| 0-1 ||| 75 668016 +a ||| position be helped ||| 0.5 0.1991 1.49697e-06 3.13194e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| position by ||| 0.03125 0.0337966 1.49697e-06 2.70932e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| position held by ||| 0.0833333 0.0337966 1.49697e-06 6.91146e-10 2.718 ||| 0-2 ||| 12 668016 +a ||| position in ||| 0.00363636 0.0587624 2.99394e-06 1.97852e-05 2.718 ||| 0-1 ||| 550 668016 +a ||| position instead of ||| 1 0.0188479 1.49697e-06 1.96655e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| position of having to hold in a ||| 1 0.0587624 1.49697e-06 2.82578e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| position of having to hold in ||| 1 0.0587624 1.49697e-06 6.37503e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| position of ||| 0.00297177 0.0188479 8.98182e-06 9.7402e-06 2.718 ||| 0-1 ||| 2019 668016 +a ||| position on ||| 0.00377715 0.0782999 5.98788e-06 1.24922e-05 2.718 ||| 0-1 ||| 1059 668016 +a ||| position taken by the rapporteur in her ||| 1 0.0587624 1.49697e-06 1.14351e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| position taken by the rapporteur in ||| 1 0.0587624 1.49697e-06 4.20255e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| position that exists at the moment to ||| 1 0.229811 1.49697e-06 5.02977e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| position to dialogue ||| 1 0.229811 1.49697e-06 4.52189e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| position to face ||| 0.0666667 0.229811 1.49697e-06 1.92988e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| position to move towards ||| 0.142857 0.155507 1.49697e-06 1.5089e-11 2.718 ||| 0-3 ||| 7 668016 +a ||| position to ||| 0.00758018 0.229811 1.94606e-05 0.000115354 2.718 ||| 0-1 ||| 1715 668016 +a ||| positions into ||| 0.5 0.107578 1.49697e-06 2.05311e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| positions of ||| 0.00226757 0.0188479 1.49697e-06 9.99753e-07 2.718 ||| 0-1 ||| 441 668016 +a ||| positions to ||| 0.030303 0.229811 1.49697e-06 1.18402e-05 2.718 ||| 0-1 ||| 33 668016 +a ||| positive effect in ||| 0.0555556 0.0587624 1.49697e-06 1.82396e-09 2.718 ||| 0-2 ||| 18 668016 +a ||| positive effect on ||| 0.00775194 0.0782999 1.49697e-06 1.15163e-09 2.718 ||| 0-2 ||| 129 668016 +a ||| positive outcome has to do with another ||| 1 0.229811 1.49697e-06 4.44088e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| positive outcome has to do with ||| 1 0.229811 1.49697e-06 1.84193e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| positive outcome has to do ||| 1 0.229811 1.49697e-06 2.88048e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| positive outcome has to ||| 1 0.229811 1.49697e-06 8.38496e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| positive promotion of ||| 1 0.0188479 1.49697e-06 6.48686e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| positive reaction to ||| 0.333333 0.229811 1.49697e-06 7.23618e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| positively to ||| 0.00552486 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-1 ||| 181 668016 +a ||| possession of ||| 0.00540541 0.0188479 1.49697e-06 4.2593e-07 2.718 ||| 0-1 ||| 185 668016 +a ||| possibilities : that technically ||| 1 0.0007376 1.49697e-06 3.27351e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| possibilities : that ||| 1 0.0007376 1.49697e-06 1.1288e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| possibilities : ||| 0.0344828 0.0007376 1.49697e-06 6.7104e-10 2.718 ||| 0-1 ||| 29 668016 +a ||| possibilities of ||| 0.00350877 0.0188479 1.49697e-06 4.2593e-07 2.718 ||| 0-1 ||| 285 668016 +a ||| possibility of accounting for ||| 1 0.0683377 1.49697e-06 1.61188e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| possibility of illicit drug smuggling ||| 0.166667 0.0188479 1.49697e-06 5.80063e-22 2.718 ||| 0-1 ||| 6 668016 +a ||| possibility of illicit drug ||| 0.166667 0.0188479 1.49697e-06 1.16013e-16 2.718 ||| 0-1 ||| 6 668016 +a ||| possibility of illicit ||| 0.166667 0.0188479 1.49697e-06 7.34257e-12 2.718 ||| 0-1 ||| 6 668016 +a ||| possibility of ||| 0.00130947 0.0188479 8.98182e-06 2.53192e-06 2.718 ||| 0-1 ||| 4582 668016 +a ||| possibility that ||| 0.00306748 0.0008521 1.49697e-06 5.84391e-08 2.718 ||| 0-1 ||| 326 668016 +a ||| possibility to ||| 0.00436681 0.229811 1.49697e-06 2.99858e-05 2.718 ||| 0-1 ||| 229 668016 +a ||| possible , although ||| 0.2 0.0921822 1.49697e-06 1.39081e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| possible , as well as for ||| 1 0.0683377 1.49697e-06 5.81959e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| possible , for ||| 0.025641 0.0683377 1.49697e-06 3.52471e-06 2.718 ||| 0-2 ||| 39 668016 +a ||| possible , to ||| 0.0194805 0.229811 4.49091e-06 3.35078e-05 2.718 ||| 0-2 ||| 154 668016 +a ||| possible again on ||| 1 0.0782999 1.49697e-06 1.75966e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| possible at ||| 0.0111111 0.204175 1.49697e-06 2.72998e-05 2.718 ||| 0-1 ||| 90 668016 +a ||| possible courses of ||| 0.0666667 0.0188479 1.49697e-06 2.72837e-10 2.718 ||| 0-2 ||| 15 668016 +a ||| possible for it to ||| 0.166667 0.229811 1.49697e-06 3.84029e-08 2.718 ||| 0-3 ||| 6 668016 +a ||| possible for people or businesses ||| 1 0.0683377 1.49697e-06 7.91173e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| possible for people or ||| 1 0.0683377 1.49697e-06 2.97434e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| possible for people ||| 0.0588235 0.0683377 1.49697e-06 2.60154e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| possible for such training to ||| 1 0.229811 1.49697e-06 1.57713e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| possible for ||| 0.0125786 0.0683377 2.39515e-05 2.95562e-05 2.718 ||| 0-1 ||| 1272 668016 +a ||| possible in ||| 0.0106157 0.0587624 7.48485e-06 4.81922e-05 2.718 ||| 0-1 ||| 471 668016 +a ||| possible interest to ||| 1 0.229811 1.49697e-06 3.15537e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| possible terms ||| 0.030303 0.0051213 1.49697e-06 9.52093e-08 2.718 ||| 0-1 ||| 33 668016 +a ||| possible through ||| 0.0208333 0.230708 1.49697e-06 6.37597e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| possible to bring ||| 0.0172414 0.229811 1.49697e-06 8.74681e-08 2.718 ||| 0-1 ||| 58 668016 +a ||| possible to draw on ||| 0.0769231 0.0782999 1.49697e-06 3.20129e-10 2.718 ||| 0-3 ||| 13 668016 +a ||| possible to envisage at ||| 1 0.229811 1.49697e-06 1.18833e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| possible to envisage ||| 0.125 0.229811 1.49697e-06 2.83787e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| possible to hold ||| 0.0263158 0.229811 1.49697e-06 4.89462e-08 2.718 ||| 0-1 ||| 38 668016 +a ||| possible to open up ||| 0.2 0.229811 1.49697e-06 1.54473e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| possible to open ||| 0.0625 0.229811 1.49697e-06 4.52935e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| possible to see ||| 0.047619 0.229811 1.49697e-06 1.97976e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| possible to submit ||| 0.0909091 0.229811 1.49697e-06 5.87242e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| possible to ||| 0.0102389 0.229811 6.73637e-05 0.000280977 2.718 ||| 0-1 ||| 4395 668016 +a ||| possible way to resolving ||| 0.5 0.229811 1.49697e-06 5.20879e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| possible way to ||| 0.05 0.229811 1.49697e-06 6.05674e-07 2.718 ||| 0-2 ||| 20 668016 +a ||| possible – in ||| 0.25 0.0587624 1.49697e-06 1.89395e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| possibly , to ||| 0.111111 0.229811 1.49697e-06 1.87988e-06 2.718 ||| 0-2 ||| 9 668016 +a ||| possibly in ||| 0.0204082 0.0587624 1.49697e-06 2.70371e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| possibly to ||| 0.0212766 0.229811 1.49697e-06 1.57636e-05 2.718 ||| 0-1 ||| 47 668016 +a ||| post office is ||| 0.142857 0.0373747 1.49697e-06 1.20615e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| post office ||| 0.010989 0.0373747 1.49697e-06 3.84846e-09 2.718 ||| 0-0 ||| 91 668016 +a ||| post to ||| 0.0769231 0.229811 1.49697e-06 8.58239e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| post ||| 0.00292683 0.0373747 4.49091e-06 3.74e-05 2.718 ||| 0-0 ||| 1025 668016 +a ||| post-conflict ||| 0.00884956 0.0059524 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 113 668016 +a ||| postponed , by ||| 1 0.0337966 1.49697e-06 5.98513e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| potential for ||| 0.00233372 0.0683377 2.99394e-06 1.8977e-06 2.718 ||| 0-1 ||| 857 668016 +a ||| potential prospects for ||| 0.25 0.0683377 1.49697e-06 2.3911e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| potential to bring us ||| 1 0.229811 1.49697e-06 1.61865e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| potential to bring ||| 0.25 0.229811 1.49697e-06 5.61602e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| potential to ||| 0.00251889 0.229811 1.49697e-06 1.80405e-05 2.718 ||| 0-1 ||| 397 668016 +a ||| potentially at ||| 0.0714286 0.204175 1.49697e-06 5.37759e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| pound to spend ||| 0.333333 0.229811 1.49697e-06 1.90424e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| pound to ||| 0.2 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| poured into ||| 0.047619 0.107578 1.49697e-06 1.09337e-08 2.718 ||| 0-1 ||| 21 668016 +a ||| pouring into ||| 0.0909091 0.107578 1.49697e-06 4.25201e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| poverty at ||| 0.0625 0.204175 1.49697e-06 5.13935e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| power in trying ||| 0.5 0.0587624 1.49697e-06 1.03338e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| power in ||| 0.00414938 0.0587624 2.99394e-06 8.97032e-06 2.718 ||| 0-1 ||| 482 668016 +a ||| power of good ||| 0.333333 0.0188479 1.49697e-06 2.29017e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| power of ||| 0.00413223 0.0188479 4.49091e-06 4.41607e-06 2.718 ||| 0-1 ||| 726 668016 +a ||| power over ||| 0.00757576 0.0682544 1.49697e-06 3.46809e-07 2.718 ||| 0-1 ||| 132 668016 +a ||| power to ||| 0.00659824 0.229811 1.34727e-05 5.23e-05 2.718 ||| 0-1 ||| 1364 668016 +a ||| powers of ||| 0.00259067 0.0188479 2.99394e-06 1.45822e-06 2.718 ||| 0-1 ||| 772 668016 +a ||| powers to ||| 0.00501253 0.229811 2.99394e-06 1.72699e-05 2.718 ||| 0-1 ||| 399 668016 +a ||| practical expression to ||| 0.0588235 0.229811 1.49697e-06 6.25894e-10 2.718 ||| 0-2 ||| 17 668016 +a ||| practically and effectively : people went to ||| 1 0.0007376 1.49697e-06 1.35344e-24 2.718 ||| 0-3 ||| 1 668016 +a ||| practically and effectively : people went ||| 1 0.0007376 1.49697e-06 1.52315e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| practically and effectively : people ||| 1 0.0007376 1.49697e-06 2.39113e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| practically and effectively : ||| 1 0.0007376 1.49697e-06 2.71657e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| practice of giving a ||| 0.5 0.136521 1.49697e-06 2.5617e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| practice of giving ||| 0.333333 0.136521 1.49697e-06 5.77924e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| practice of ||| 0.00181488 0.0188479 1.49697e-06 3.11757e-06 2.718 ||| 0-1 ||| 551 668016 +a ||| practice on a ||| 0.5 0.0782999 1.49697e-06 1.77233e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| practice on ||| 0.0217391 0.0782999 1.49697e-06 3.99841e-06 2.718 ||| 0-1 ||| 46 668016 +a ||| practice should be presented at ||| 0.5 0.204175 1.49697e-06 2.27001e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| practice to be ||| 0.0909091 0.229811 1.49697e-06 6.6913e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| practice to ||| 0.01 0.229811 1.49697e-06 3.69218e-05 2.718 ||| 0-1 ||| 100 668016 +a ||| practice ||| 0.000116117 8.65e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 8612 668016 +a ||| practices after ||| 0.333333 0.0341027 1.49697e-06 2.98613e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| practices in ||| 0.00680272 0.0587624 1.49697e-06 2.13894e-06 2.718 ||| 0-1 ||| 147 668016 +a ||| practices must naturally be stopped ||| 1 0.0700165 1.49697e-06 4.89824e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| practices on ||| 0.111111 0.0782999 1.49697e-06 1.35051e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| practised by ||| 0.0140845 0.0337966 1.49697e-06 7.98068e-08 2.718 ||| 0-1 ||| 71 668016 +a ||| practitioner of many years ||| 1 0.0188479 1.49697e-06 1.90109e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| practitioner of many ||| 1 0.0188479 1.49697e-06 1.11697e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| practitioner of ||| 0.25 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| praise for ||| 0.00714286 0.0683377 1.49697e-06 5.15879e-07 2.718 ||| 0-1 ||| 140 668016 +a ||| praises of ||| 0.0454545 0.0188479 1.49697e-06 9.46512e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| pray to ||| 0.333333 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| pre-eminent for the ||| 0.5 0.0683377 1.49697e-06 9.04878e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| pre-eminent for ||| 0.5 0.0683377 1.49697e-06 1.47394e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| precarious state to ||| 1 0.229811 1.49697e-06 9.73348e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| preceded by an independent ||| 1 0.102222 1.49697e-06 2.40118e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| preceded by an ||| 0.0714286 0.102222 1.49697e-06 9.80075e-10 2.718 ||| 0-0 ||| 14 668016 +a ||| preceded by ||| 0.0138889 0.102222 2.99394e-06 2.20504e-07 2.718 ||| 0-0 ||| 144 668016 +a ||| preceded ||| 0.00980392 0.102222 2.99394e-06 4.2e-05 2.718 ||| 0-0 ||| 204 668016 +a ||| precedence over ||| 0.00843882 0.0682544 2.99394e-06 1.16145e-08 2.718 ||| 0-1 ||| 237 668016 +a ||| precisely from ||| 0.0588235 0.0435582 1.49697e-06 7.09802e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| precisely in bringing ||| 1 0.0587624 1.49697e-06 4.75708e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| precisely in ||| 0.0110294 0.0587624 4.49091e-06 5.92413e-06 2.718 ||| 0-1 ||| 272 668016 +a ||| precisely the problem with the internal market ||| 0.111111 0.0571592 1.49697e-06 1.4632e-20 2.718 ||| 0-3 ||| 9 668016 +a ||| precisely the problem with the internal ||| 0.111111 0.0571592 1.49697e-06 6.47432e-17 2.718 ||| 0-3 ||| 9 668016 +a ||| precisely the problem with the ||| 0.111111 0.0571592 1.49697e-06 1.39533e-12 2.718 ||| 0-3 ||| 9 668016 +a ||| precisely the problem with ||| 0.0909091 0.0571592 1.49697e-06 2.27282e-11 2.718 ||| 0-3 ||| 11 668016 +a ||| precisely ||| 0.000744879 0.0008389 5.98788e-06 4.6e-06 2.718 ||| 0-0 ||| 5370 668016 +a ||| precluded at ||| 1 0.204175 1.49697e-06 2.38248e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| precondition for certain ||| 1 0.0683377 1.49697e-06 3.04553e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| precondition for ||| 0.00299401 0.0683377 1.49697e-06 1.06861e-07 2.718 ||| 0-1 ||| 334 668016 +a ||| predicament of ||| 0.111111 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| prefer in ||| 0.5 0.0587624 1.49697e-06 1.58017e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| prefer not to ||| 0.0526316 0.229811 1.49697e-06 3.14539e-08 2.718 ||| 0-2 ||| 19 668016 +a ||| prefer to call ||| 0.1 0.229811 1.49697e-06 2.04527e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| prefer to ignore ||| 0.166667 0.229811 1.49697e-06 7.64673e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| prefer to spell it out ||| 0.25 0.229811 1.49697e-06 5.39697e-15 2.718 ||| 0-1 ||| 4 668016 +a ||| prefer to spell it ||| 0.25 0.229811 1.49697e-06 1.40898e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| prefer to spell ||| 0.25 0.229811 1.49697e-06 7.92312e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| prefer to ||| 0.026178 0.229811 7.48485e-06 9.21293e-06 2.718 ||| 0-1 ||| 191 668016 +a ||| preferable to ||| 0.00609756 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-1 ||| 164 668016 +a ||| preference for ||| 0.0136986 0.0683377 1.49697e-06 2.80049e-07 2.718 ||| 0-1 ||| 73 668016 +a ||| preferences for the forced ||| 1 0.0684932 1.49697e-06 3.284e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| preferring instead to focus on the quality ||| 1 0.0782999 1.49697e-06 2.8698e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| preferring instead to focus on the ||| 1 0.0782999 1.49697e-06 5.82109e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| preferring instead to focus on ||| 1 0.0782999 1.49697e-06 9.48188e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| preliminary draft report to ||| 1 0.229811 1.49697e-06 6.78456e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| prelude to ||| 0.025 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 40 668016 +a ||| premature to draw up ||| 0.5 0.229811 1.49697e-06 3.53632e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| premature to draw ||| 0.166667 0.229811 1.49697e-06 1.03689e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| premature to ||| 0.0105263 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-1 ||| 95 668016 +a ||| premises for the purpose of housing equipment ||| 1 0.0683377 1.49697e-06 2.06089e-23 2.718 ||| 0-1 ||| 1 668016 +a ||| premises for the purpose of housing ||| 1 0.0683377 1.49697e-06 5.97361e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| premises for the purpose of ||| 1 0.0683377 1.49697e-06 1.19472e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| premises for the purpose ||| 1 0.0683377 1.49697e-06 2.19763e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| premises for the ||| 0.25 0.0683377 1.49697e-06 1.22159e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| premises for ||| 0.1 0.0683377 1.49697e-06 1.98982e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| prenatal ||| 0.0909091 0.0833333 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| preparations proceeded practically and effectively : people ||| 1 0.0007376 1.49697e-06 8.22548e-30 2.718 ||| 0-5 ||| 1 668016 +a ||| preparations proceeded practically and effectively : ||| 1 0.0007376 1.49697e-06 9.34501e-27 2.718 ||| 0-5 ||| 1 668016 +a ||| prepare for ||| 0.00168919 0.0683377 1.49697e-06 6.63273e-07 2.718 ||| 0-1 ||| 592 668016 +a ||| prepare themselves to ||| 0.2 0.229811 1.49697e-06 2.70944e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| prepare to ||| 0.0217391 0.229811 1.49697e-06 6.30543e-06 2.718 ||| 0-1 ||| 46 668016 +a ||| prepared - to ||| 0.5 0.229811 1.49697e-06 1.14563e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| prepared by ||| 0.0025974 0.0337966 1.49697e-06 7.13324e-07 2.718 ||| 0-1 ||| 385 668016 +a ||| prepared for terrorists and ||| 0.333333 0.0683377 1.49697e-06 1.60069e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| prepared for terrorists ||| 0.333333 0.0683377 1.49697e-06 1.27791e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| prepared for ||| 0.00700935 0.0683377 4.49091e-06 3.19476e-06 2.718 ||| 0-1 ||| 428 668016 +a ||| prepared in ||| 0.0103093 0.0587624 1.49697e-06 5.20915e-06 2.718 ||| 0-1 ||| 97 668016 +a ||| prepared to accept their responsibilities and ||| 1 0.229811 1.49697e-06 1.13657e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| prepared to accept their responsibilities ||| 0.5 0.229811 1.49697e-06 9.07377e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| prepared to accept their ||| 0.5 0.229811 1.49697e-06 3.81251e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| prepared to accept ||| 0.00809717 0.0005505 2.99394e-06 3.56064e-11 2.718 ||| 0-0 ||| 247 668016 +a ||| prepared to allow ||| 0.0277778 0.229811 1.49697e-06 7.36804e-09 2.718 ||| 0-1 ||| 36 668016 +a ||| prepared to cover ||| 0.333333 0.229811 1.49697e-06 2.37199e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| prepared to go through ||| 0.333333 0.229811 1.49697e-06 8.17541e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| prepared to go ||| 0.0204082 0.229811 1.49697e-06 1.7761e-08 2.718 ||| 0-1 ||| 49 668016 +a ||| prepared to provide for ||| 0.5 0.229811 1.49697e-06 6.90467e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| prepared to provide ||| 0.0188679 0.229811 1.49697e-06 8.98379e-09 2.718 ||| 0-1 ||| 53 668016 +a ||| prepared to stand ||| 0.0909091 0.229811 1.49697e-06 5.00517e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| prepared to undertake ||| 0.111111 0.229811 1.49697e-06 7.86613e-10 2.718 ||| 0-1 ||| 9 668016 +a ||| prepared to ||| 0.00933368 0.229811 5.38909e-05 3.03711e-05 2.718 ||| 0-1 ||| 3857 668016 +a ||| prepared ||| 0.000149858 0.0005505 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 6673 668016 +a ||| prepares for ||| 0.0454545 0.0683377 1.49697e-06 2.57939e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| preparing to ||| 0.00738007 0.229811 2.99394e-06 5.18446e-06 2.718 ||| 0-1 ||| 271 668016 +a ||| prerequisite for ||| 0.00189753 0.0683377 1.49697e-06 1.98982e-07 2.718 ||| 0-1 ||| 527 668016 +a ||| prescribe for ||| 1 0.0683377 1.49697e-06 5.15879e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| presence felt in ||| 0.0666667 0.0587624 1.49697e-06 1.32314e-10 2.718 ||| 0-2 ||| 15 668016 +a ||| presence in ||| 0.003663 0.0587624 1.49697e-06 2.31318e-06 2.718 ||| 0-1 ||| 273 668016 +a ||| presence of ||| 0.00467727 0.0188479 7.48485e-06 1.13877e-06 2.718 ||| 0-1 ||| 1069 668016 +a ||| present . on ||| 1 0.0782999 1.49697e-06 4.20559e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| present a united front against ||| 0.333333 0.05146 1.49697e-06 6.3563e-17 2.718 ||| 0-4 ||| 3 668016 +a ||| present despite ||| 0.333333 0.453792 1.49697e-06 2.34247e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| present for ||| 0.0186916 0.0683377 2.99394e-06 1.34866e-05 2.718 ||| 0-1 ||| 107 668016 +a ||| present in terms ||| 1 0.0587624 1.49697e-06 2.41364e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| present in ||| 0.00637755 0.0587624 7.48485e-06 2.19902e-05 2.718 ||| 0-1 ||| 784 668016 +a ||| present it to ||| 0.047619 0.229811 1.49697e-06 2.27999e-06 2.718 ||| 0-2 ||| 21 668016 +a ||| present to hear ||| 0.111111 0.229811 1.49697e-06 1.30134e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| present to ||| 0.0192308 0.229811 5.98788e-06 0.00012821 2.718 ||| 0-1 ||| 208 668016 +a ||| present us ||| 0.0217391 0.0071317 1.49697e-06 1.89076e-07 2.718 ||| 0-1 ||| 46 668016 +a ||| presentation by ||| 0.0196078 0.0337966 1.49697e-06 1.29995e-07 2.718 ||| 0-1 ||| 51 668016 +a ||| presentation of its White Paper on a ||| 1 0.0782999 1.49697e-06 1.76309e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| presentation of its White Paper on ||| 1 0.0782999 1.49697e-06 3.97757e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| presentation to ||| 0.047619 0.229811 1.49697e-06 5.53477e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| presentations and on those ||| 1 0.0782999 1.49697e-06 1.3763e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| presentations and on ||| 1 0.0782999 1.49697e-06 1.90071e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| presented as ||| 0.00568182 0.0243476 1.49697e-06 6.91265e-07 2.718 ||| 0-1 ||| 176 668016 +a ||| presented at ||| 0.0106383 0.204175 1.49697e-06 2.68199e-06 2.718 ||| 0-1 ||| 94 668016 +a ||| presented by ||| 0.000694444 0.0337966 1.49697e-06 6.48327e-07 2.718 ||| 0-1 ||| 1440 668016 +a ||| presented in ||| 0.00199601 0.0587624 1.49697e-06 4.7345e-06 2.718 ||| 0-1 ||| 501 668016 +a ||| presented to ||| 0.00326264 0.229811 2.99394e-06 2.76038e-05 2.718 ||| 0-1 ||| 613 668016 +a ||| presented us with ||| 0.0172414 0.0571592 1.49697e-06 3.79175e-09 2.718 ||| 0-2 ||| 58 668016 +a ||| presented with ||| 0.0194805 0.0571592 4.49091e-06 1.31557e-06 2.718 ||| 0-1 ||| 154 668016 +a ||| presenting ||| 0.000712251 0.0029104 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 1404 668016 +a ||| presently focusing its attention on ||| 0.333333 0.0782999 1.49697e-06 1.14109e-18 2.718 ||| 0-4 ||| 3 668016 +a ||| presently ||| 0.00323625 0.018622 1.49697e-06 9.1e-06 2.718 ||| 0-0 ||| 309 668016 +a ||| preserve of ||| 0.0131579 0.0188479 1.49697e-06 3.40153e-07 2.718 ||| 0-1 ||| 76 668016 +a ||| presided over by the Commission itself ||| 1 0.0682544 1.49697e-06 2.07765e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| presided over by the Commission ||| 1 0.0682544 1.49697e-06 3.06121e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| presided over by the ||| 0.1 0.0682544 1.49697e-06 5.24091e-13 2.718 ||| 0-1 ||| 10 668016 +a ||| presided over by ||| 0.0285714 0.0682544 1.49697e-06 8.53682e-12 2.718 ||| 0-1 ||| 35 668016 +a ||| presided over ||| 0.012987 0.0682544 1.49697e-06 1.62603e-09 2.718 ||| 0-1 ||| 77 668016 +a ||| presidents , on ||| 1 0.0782999 1.49697e-06 3.1668e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| press ahead with ||| 0.0227273 0.0571592 2.99394e-06 5.49569e-11 2.718 ||| 0-2 ||| 88 668016 +a ||| press charges against ||| 0.333333 0.05146 1.49697e-06 1.72711e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| press for ||| 0.00322581 0.0683377 1.49697e-06 1.11282e-06 2.718 ||| 0-1 ||| 310 668016 +a ||| pressed ahead with their ||| 0.5 0.0571592 1.49697e-06 1.05465e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| pressed ahead with ||| 0.142857 0.0571592 1.49697e-06 9.09883e-12 2.718 ||| 0-2 ||| 7 668016 +a ||| pressed for ||| 0.0153846 0.0683377 1.49697e-06 1.84243e-07 2.718 ||| 0-1 ||| 65 668016 +a ||| pressure , with ||| 0.5 0.0571592 1.49697e-06 1.19657e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| pressure being put on ||| 0.125 0.0782999 1.49697e-06 7.15392e-12 2.718 ||| 0-3 ||| 8 668016 +a ||| pressure for ||| 0.00649351 0.0683377 1.49697e-06 2.21459e-06 2.718 ||| 0-1 ||| 154 668016 +a ||| pressure from ||| 0.00110988 0.0435582 1.49697e-06 4.32648e-07 2.718 ||| 0-1 ||| 901 668016 +a ||| pressure on ||| 0.00851393 0.0782999 1.64667e-05 2.27993e-06 2.718 ||| 0-1 ||| 1292 668016 +a ||| pressure to achieve rapid ||| 0.125 0.229811 1.49697e-06 8.65915e-14 2.718 ||| 0-1 ||| 8 668016 +a ||| pressure to achieve ||| 0.0769231 0.229811 1.49697e-06 4.81064e-09 2.718 ||| 0-1 ||| 13 668016 +a ||| pressure to bear on ||| 0.0181818 0.0782999 1.49697e-06 3.03278e-11 2.718 ||| 0-3 ||| 55 668016 +a ||| pressure to ||| 0.0110193 0.229811 5.98788e-06 2.10531e-05 2.718 ||| 0-1 ||| 363 668016 +a ||| pressure ||| 0.00014039 0.0001346 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 7123 668016 +a ||| pressures ||| 0.00148148 0.0146667 1.49697e-06 1e-05 2.718 ||| 0-0 ||| 675 668016 +a ||| pressurised ||| 0.0204082 0.0909091 1.49697e-06 6.4e-06 2.718 ||| 0-0 ||| 49 668016 +a ||| presume to ||| 0.0833333 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| presumption to ||| 0.166667 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| pretend to ||| 0.02 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-1 ||| 50 668016 +a ||| pretext of ||| 0.00220751 0.0188479 1.49697e-06 1.47893e-07 2.718 ||| 0-1 ||| 453 668016 +a ||| pretext while ||| 0.333333 0.0377813 1.49697e-06 4.582e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| pretty well-known to ||| 0.333333 0.229811 1.49697e-06 3.15271e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| prevail at ||| 0.111111 0.204175 1.49697e-06 8.10043e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| prevail upon ||| 0.0588235 0.19056 1.49697e-06 4.69217e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| prevails in ||| 0.0151515 0.0587624 1.49697e-06 6.72924e-07 2.718 ||| 0-1 ||| 66 668016 +a ||| prevent us from ||| 0.00769231 0.0435582 1.49697e-06 1.06024e-09 2.718 ||| 0-2 ||| 130 668016 +a ||| prevented from going to ||| 0.333333 0.229811 1.49697e-06 1.09591e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| prevented from holding ||| 1 0.0435582 1.49697e-06 9.82111e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| prevented from ||| 0.00374532 0.0435582 1.49697e-06 1.63413e-07 2.718 ||| 0-1 ||| 267 668016 +a ||| previous decision to ||| 0.25 0.229811 1.49697e-06 2.81573e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| previously to ||| 0.0909091 0.229811 1.49697e-06 1.19803e-05 2.718 ||| 0-1 ||| 11 668016 +a ||| previously towards ||| 0.333333 0.155507 1.49697e-06 1.15343e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| prey on ||| 0.125 0.0782999 1.49697e-06 8.34583e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| prey to ||| 0.0175439 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 57 668016 +a ||| price at ||| 0.0769231 0.204175 1.49697e-06 1.73921e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| price increase in ||| 1 0.0587624 1.49697e-06 3.96672e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| price of ||| 0.000873362 0.0188479 1.49697e-06 1.51146e-06 2.718 ||| 0-1 ||| 1145 668016 +a ||| prices to ||| 0.0135135 0.229811 1.49697e-06 1.11046e-05 2.718 ||| 0-1 ||| 74 668016 +a ||| prices will , ||| 1 0.0561595 1.49697e-06 5.32417e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| prices will ||| 0.030303 0.0561595 1.49697e-06 4.46453e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| prima ||| 0.153846 0.05 2.99394e-06 1.8e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| primarily affects women ||| 0.2 0.380413 1.49697e-06 2.62318e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| primarily affects ||| 0.0833333 0.380413 1.49697e-06 2.20806e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| primarily require ||| 1 0.0006471 1.49697e-06 4.86e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| primarily with ||| 0.0142857 0.0571592 1.49697e-06 3.00512e-07 2.718 ||| 0-1 ||| 70 668016 +a ||| primary location should be within ||| 0.333333 0.0123496 1.49697e-06 6.61448e-18 2.718 ||| 0-4 ||| 3 668016 +a ||| primary ||| 0.000457247 0.0004509 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2187 668016 +a ||| principally ||| 0.00230415 0.0019685 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 434 668016 +a ||| principle , along with others , safeguards ||| 1 0.0571592 1.49697e-06 2.65468e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| principle , along with others , ||| 1 0.0571592 1.49697e-06 6.17368e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| principle , along with others ||| 1 0.0571592 1.49697e-06 5.17688e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| principle , along with ||| 1 0.0571592 1.49697e-06 5.32601e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| principle for ||| 0.0208333 0.0683377 1.49697e-06 5.64888e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| principle of external ||| 0.25 0.0188479 1.49697e-06 8.4793e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| principle of ||| 0.0001443 0.0188479 1.49697e-06 4.53438e-06 2.718 ||| 0-1 ||| 6930 668016 +a ||| principle to ||| 0.0114943 0.229811 2.99394e-06 5.37012e-05 2.718 ||| 0-1 ||| 174 668016 +a ||| principles of ||| 0.00044603 0.0188479 1.49697e-06 1.19201e-06 2.718 ||| 0-1 ||| 2242 668016 +a ||| prior hearing for ||| 0.5 0.0683377 1.49697e-06 1.78317e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| prior to ||| 0.00267142 0.229811 4.49091e-06 6.44555e-06 2.718 ||| 0-1 ||| 1123 668016 +a ||| priorities are to ||| 0.111111 0.229811 1.49697e-06 9.93909e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| priority , to combat ||| 1 0.229811 1.49697e-06 4.52224e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| priority , to ||| 0.285714 0.229811 2.99394e-06 2.33105e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| priority in ||| 0.00296736 0.0587624 1.49697e-06 3.3526e-06 2.718 ||| 0-1 ||| 337 668016 +a ||| priority on ||| 0.0227273 0.0782999 1.49697e-06 2.11681e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| priority over ||| 0.023622 0.0682544 4.49091e-06 1.29618e-07 2.718 ||| 0-1 ||| 127 668016 +a ||| priority remains to ||| 0.5 0.229811 1.49697e-06 1.74358e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| priority to ||| 0.0050813 0.229811 7.48485e-06 1.95468e-05 2.718 ||| 0-1 ||| 984 668016 +a ||| prisoners , to ||| 0.5 0.229811 1.49697e-06 5.09656e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| prisoners ||| 0.000473485 0.0065217 1.49697e-06 1.64e-05 2.718 ||| 0-0 ||| 2112 668016 +a ||| privileged place to ||| 0.333333 0.229811 1.49697e-06 2.10882e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| prize to ||| 0.230769 0.229811 4.49091e-06 2.9075e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| pro-Europe ||| 0.0333333 0.177778 1.49697e-06 7.3e-06 2.718 ||| 0-0 ||| 30 668016 +a ||| pro-European signs is that in ||| 1 0.0587624 1.49697e-06 1.96391e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| pro-active approach in tabling ||| 1 0.0587624 1.49697e-06 2.20204e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| pro-active approach in ||| 0.5 0.0587624 1.49697e-06 2.89742e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| probably due ||| 0.0909091 0.001519 1.49697e-06 8.1468e-10 2.718 ||| 0-1 ||| 11 668016 +a ||| probably get ||| 1 0.0029933 1.49697e-06 2.44404e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| probably has to ||| 1 0.229811 1.49697e-06 1.00617e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| probably owe me ||| 0.5 0.0425532 1.49697e-06 1.47156e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| probably owe ||| 0.5 0.0425532 1.49697e-06 2.44404e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| problem , and I ||| 0.0769231 0.0015873 1.49697e-06 3.66053e-10 2.718 ||| 0-2 ||| 13 668016 +a ||| problem , and ||| 0.00520833 0.0015873 1.49697e-06 5.17499e-08 2.718 ||| 0-2 ||| 192 668016 +a ||| problem as ||| 0.00793651 0.0243476 1.49697e-06 1.97291e-06 2.718 ||| 0-1 ||| 126 668016 +a ||| problem for ||| 0.00191205 0.0683377 1.49697e-06 8.28723e-06 2.718 ||| 0-1 ||| 523 668016 +a ||| problem in waters ||| 1 0.0587624 1.49697e-06 2.24308e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| problem in ||| 0.00272109 0.0587624 2.99394e-06 1.35126e-05 2.718 ||| 0-1 ||| 735 668016 +a ||| problem of ||| 0.00139147 0.0188479 8.98182e-06 6.6522e-06 2.718 ||| 0-1 ||| 4312 668016 +a ||| problem to ||| 0.00746269 0.229811 1.49697e-06 7.87828e-05 2.718 ||| 0-1 ||| 134 668016 +a ||| problem with the internal market , and ||| 0.111111 0.0571592 1.49697e-06 3.61077e-18 2.718 ||| 0-1 ||| 9 668016 +a ||| problem with the internal market , ||| 0.111111 0.0571592 1.49697e-06 2.88264e-16 2.718 ||| 0-1 ||| 9 668016 +a ||| problem with the internal market ||| 0.1 0.0571592 1.49697e-06 2.41721e-15 2.718 ||| 0-1 ||| 10 668016 +a ||| problem with the internal ||| 0.111111 0.0571592 1.49697e-06 1.06956e-11 2.718 ||| 0-1 ||| 9 668016 +a ||| problem with the ||| 0.00322581 0.0571592 1.49697e-06 2.3051e-07 2.718 ||| 0-1 ||| 310 668016 +a ||| problem with ||| 0.00205339 0.0571592 2.99394e-06 3.75473e-06 2.718 ||| 0-1 ||| 974 668016 +a ||| problems affect ||| 0.166667 0.330659 1.49697e-06 2.12036e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| problems affecting the running ||| 0.333333 0.268066 1.49697e-06 5.63997e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| problems affecting the ||| 0.037037 0.268066 1.49697e-06 7.39183e-09 2.718 ||| 0-1 ||| 27 668016 +a ||| problems affecting ||| 0.0135135 0.268066 1.49697e-06 1.20404e-07 2.718 ||| 0-1 ||| 74 668016 +a ||| problems for ||| 0.0071599 0.0683377 4.49091e-06 4.94507e-06 2.718 ||| 0-1 ||| 419 668016 +a ||| problems in ||| 0.00159236 0.0587624 2.99394e-06 8.06307e-06 2.718 ||| 0-1 ||| 1256 668016 +a ||| problems of ||| 0.000527983 0.0188479 1.49697e-06 3.96943e-06 2.718 ||| 0-1 ||| 1894 668016 +a ||| problems relating to ||| 0.00520833 0.229811 1.49697e-06 5.34509e-09 2.718 ||| 0-2 ||| 192 668016 +a ||| procedure against ||| 0.166667 0.05146 1.49697e-06 2.6099e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| procedure at ||| 0.025641 0.204175 1.49697e-06 3.41715e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| procedure regarding ||| 0.142857 0.186429 1.49697e-06 3.37876e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| procedure to ||| 0.0042735 0.229811 1.49697e-06 3.51703e-05 2.718 ||| 0-1 ||| 234 668016 +a ||| procedures or of ||| 0.333333 0.0188479 1.49697e-06 1.4609e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| procedures to ||| 0.00561798 0.229811 1.49697e-06 1.5133e-05 2.718 ||| 0-1 ||| 178 668016 +a ||| proceed on ||| 0.0163934 0.0782999 1.49697e-06 1.21394e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| proceed to ||| 0.0113208 0.229811 4.49091e-06 1.12097e-05 2.718 ||| 0-1 ||| 265 668016 +a ||| proceeded practically and effectively : people went ||| 1 0.0007376 1.49697e-06 6.09259e-29 2.718 ||| 0-4 ||| 1 668016 +a ||| proceeded practically and effectively : people ||| 1 0.0007376 1.49697e-06 9.56451e-25 2.718 ||| 0-4 ||| 1 668016 +a ||| proceeded practically and effectively : ||| 1 0.0007376 1.49697e-06 1.08663e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| proceedings following your speech ||| 1 0.0720432 1.49697e-06 4.12077e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| proceedings following your ||| 1 0.0720432 1.49697e-06 9.15726e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| proceedings following ||| 0.25 0.0720432 1.49697e-06 3.57845e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| proceedings of ||| 0.0163934 0.0188479 1.49697e-06 1.0737e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| proceedings to ||| 0.027027 0.229811 1.49697e-06 1.27159e-05 2.718 ||| 0-1 ||| 37 668016 +a ||| proceeds of ||| 0.0142857 0.0188479 1.49697e-06 1.18314e-07 2.718 ||| 0-1 ||| 70 668016 +a ||| proceeds to ||| 0.0909091 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| process , to ||| 0.0416667 0.229811 1.49697e-06 1.78589e-05 2.718 ||| 0-2 ||| 24 668016 +a ||| process by ||| 0.00877193 0.0337966 1.49697e-06 3.51726e-06 2.718 ||| 0-1 ||| 114 668016 +a ||| process even ||| 0.25 0.0495435 1.49697e-06 8.34266e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| process for ||| 0.00395257 0.0683377 1.49697e-06 1.57527e-05 2.718 ||| 0-1 ||| 253 668016 +a ||| process in relation ||| 0.5 0.0587624 1.49697e-06 6.24923e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| process in which ||| 0.02 0.0587624 1.49697e-06 2.18186e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| process in ||| 0.0135501 0.0587624 7.48485e-06 2.56853e-05 2.718 ||| 0-1 ||| 369 668016 +a ||| process of turning into ||| 0.333333 0.107578 1.49697e-06 7.05852e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| process of ||| 0.00129032 0.0188479 8.98182e-06 1.26448e-05 2.718 ||| 0-1 ||| 4650 668016 +a ||| process that will ||| 0.0666667 0.0561595 1.49697e-06 1.01279e-07 2.718 ||| 0-2 ||| 15 668016 +a ||| process to be ||| 0.0384615 0.229811 1.49697e-06 2.71398e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| process to ||| 0.0178571 0.229811 7.48485e-06 0.000149754 2.718 ||| 0-1 ||| 280 668016 +a ||| process with ||| 0.0151515 0.0571592 1.49697e-06 7.13716e-06 2.718 ||| 0-1 ||| 66 668016 +a ||| processes of ||| 0.00543478 0.0188479 1.49697e-06 4.79172e-07 2.718 ||| 0-1 ||| 184 668016 +a ||| produce an expert report on ||| 1 0.0782999 1.49697e-06 7.0341e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| produce any response to our request for ||| 1 0.0683377 1.49697e-06 4.63613e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| produce ||| 0.000212947 0.0001943 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 4696 668016 +a ||| produced a document which was agreed on ||| 1 0.0782999 1.49697e-06 1.23876e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| produced as ||| 0.0344828 0.0243476 1.49697e-06 9.2812e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| produced at ||| 0.0192308 0.204175 1.49697e-06 3.60095e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| produced by the new worldwide ||| 1 0.0337966 1.49697e-06 1.85257e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| produced by the new ||| 1 0.0337966 1.49697e-06 3.19409e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| produced by the ||| 0.00355872 0.0337966 1.49697e-06 5.34397e-08 2.718 ||| 0-1 ||| 281 668016 +a ||| produced by ||| 0.00332226 0.0337966 2.99394e-06 8.70469e-07 2.718 ||| 0-1 ||| 602 668016 +a ||| produced in ||| 0.0021645 0.0587624 1.49697e-06 6.35673e-06 2.718 ||| 0-1 ||| 462 668016 +a ||| producers to provide ||| 0.25 0.229811 1.49697e-06 2.01021e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| producers to ||| 0.0152672 0.229811 2.99394e-06 6.79585e-06 2.718 ||| 0-1 ||| 131 668016 +a ||| producers ||| 0.000181818 0.0016671 1.49697e-06 1.1e-05 2.718 ||| 0-0 ||| 5500 668016 +a ||| product , following ||| 0.333333 0.0720432 1.49697e-06 7.14773e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| product of ||| 0.00722022 0.0188479 2.99394e-06 1.79837e-06 2.718 ||| 0-1 ||| 277 668016 +a ||| product to help ||| 1 0.244893 1.49697e-06 1.40086e-07 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| product to ||| 0.0227273 0.229811 1.49697e-06 2.12983e-05 2.718 ||| 0-1 ||| 44 668016 +a ||| production at ||| 0.0227273 0.204175 1.49697e-06 2.84196e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| production unit to ||| 0.5 0.229811 1.49697e-06 3.48077e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| productivity in ||| 0.0178571 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-1 ||| 56 668016 +a ||| products at ||| 0.027027 0.204175 1.49697e-06 3.53968e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| products from ||| 0.00324675 0.0435582 1.49697e-06 7.48675e-07 2.718 ||| 0-1 ||| 308 668016 +a ||| products to be ||| 0.0172414 0.229811 1.49697e-06 6.60242e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| products to the tune ||| 0.5 0.229811 1.49697e-06 6.6874e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| products to the ||| 0.0285714 0.229811 1.49697e-06 2.23659e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| products to ||| 0.0102564 0.229811 2.99394e-06 3.64314e-05 2.718 ||| 0-1 ||| 195 668016 +a ||| products under ||| 0.0833333 0.0384416 1.49697e-06 1.47514e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| professional consultation suffers ||| 1 0.0004898 1.49697e-06 1.40436e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| professional consultation ||| 1 0.0004898 1.49697e-06 2.988e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| professions with serious ||| 1 0.0571592 1.49697e-06 2.69259e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| professions with ||| 0.111111 0.0571592 1.49697e-06 2.33731e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| programme to include ||| 0.142857 0.229811 1.49697e-06 5.9088e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| programme to ||| 0.00707547 0.229811 4.49091e-06 4.46284e-05 2.718 ||| 0-1 ||| 424 668016 +a ||| programmes are envisaged here to ||| 1 0.229811 1.49697e-06 8.31874e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| programmes in ||| 0.00413223 0.0587624 1.49697e-06 3.22042e-06 2.718 ||| 0-1 ||| 242 668016 +a ||| programmes of Palestinian organisations that ||| 1 0.0008521 1.49697e-06 8.84455e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| programmes to ||| 0.0041841 0.229811 1.49697e-06 1.87762e-05 2.718 ||| 0-1 ||| 239 668016 +a ||| progress being made in ||| 0.0416667 0.0587624 1.49697e-06 4.71716e-11 2.718 ||| 0-3 ||| 24 668016 +a ||| progress in ||| 0.000907441 0.0587624 2.99394e-06 7.91287e-06 2.718 ||| 0-1 ||| 2204 668016 +a ||| progress is speeding up in some matters ||| 1 0.0587624 1.49697e-06 2.38624e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| progress is speeding up in some ||| 1 0.0587624 1.49697e-06 1.28986e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| progress is speeding up in ||| 1 0.0587624 1.49697e-06 1.18412e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| progress of ||| 0.00151057 0.0188479 1.49697e-06 3.89549e-06 2.718 ||| 0-1 ||| 662 668016 +a ||| progress on ||| 0.00120482 0.0782999 1.49697e-06 4.99612e-06 2.718 ||| 0-1 ||| 830 668016 +a ||| progress towards ||| 0.00331675 0.155507 2.99394e-06 4.44171e-07 2.718 ||| 0-1 ||| 603 668016 +a ||| progressing at ||| 0.111111 0.204175 1.49697e-06 2.6888e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| prohibited from doing others ||| 1 0.0435582 1.49697e-06 1.02747e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| prohibited from doing ||| 1 0.0435582 1.49697e-06 1.05707e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| prohibited from ||| 0.0344828 0.0435582 1.49697e-06 2.87952e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| project at ||| 0.166667 0.204175 1.49697e-06 2.08297e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| project in ||| 0.0190476 0.0587624 2.99394e-06 3.67705e-06 2.718 ||| 0-1 ||| 105 668016 +a ||| promise on ||| 0.1 0.0782999 1.49697e-06 3.56595e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| promised to ||| 0.00434783 0.229811 1.49697e-06 3.15271e-06 2.718 ||| 0-1 ||| 230 668016 +a ||| promote the highest standards for ||| 1 0.0683377 1.49697e-06 2.332e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| promoted in ||| 0.0181818 0.0587624 1.49697e-06 1.32181e-06 2.718 ||| 0-1 ||| 55 668016 +a ||| promoted throughout ||| 0.333333 0.0592287 1.49697e-06 1.64054e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| promoted to ||| 0.111111 0.229811 1.49697e-06 7.70664e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| promotes ||| 0.0010846 0.0012107 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 922 668016 +a ||| promoting change to ||| 1 0.229811 1.49697e-06 1.21372e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| promoting the competitiveness of regions helps to ||| 1 0.229811 1.49697e-06 1.10587e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| promoting throughout ||| 0.5 0.0592287 1.49697e-06 2.11779e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| promotion of ||| 0.00111566 0.0188479 4.49091e-06 7.12842e-07 2.718 ||| 0-1 ||| 2689 668016 +a ||| prompt action to follow through ||| 1 0.229811 1.49697e-06 3.28145e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| prompt action to follow ||| 1 0.229811 1.49697e-06 7.12893e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| prompt action to ||| 0.0833333 0.229811 1.49697e-06 7.20094e-10 2.718 ||| 0-2 ||| 12 668016 +a ||| prompt ||| 0.00184502 0.0039947 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 542 668016 +a ||| prompted me to ||| 0.111111 0.159696 1.49697e-06 4.10357e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| prompted me ||| 0.0714286 0.159696 1.49697e-06 4.61811e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| prompted ||| 0.0325733 0.159696 1.49697e-05 7.67e-05 2.718 ||| 0-0 ||| 307 668016 +a ||| prompting outpourings from ||| 1 0.12766 1.49697e-06 7.08576e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| prompting outpourings ||| 1 0.12766 1.49697e-06 4.4e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| prompting ||| 0.0172414 0.12766 1.49697e-06 1.1e-05 2.718 ||| 0-0 ||| 58 668016 +a ||| promptly at ||| 0.111111 0.204175 1.49697e-06 1.97405e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| promptly in ||| 0.04 0.0587624 1.49697e-06 3.48479e-07 2.718 ||| 0-1 ||| 25 668016 +a ||| promptness in ||| 0.25 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| prompts me to ||| 0.0416667 0.229811 1.49697e-06 4.64017e-10 2.718 ||| 0-2 ||| 24 668016 +a ||| propensity to consume ||| 1 0.229811 1.49697e-06 3.50302e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| propensity to ||| 0.0909091 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| proper to ||| 0.0232558 0.229811 1.49697e-06 3.10017e-05 2.718 ||| 0-1 ||| 43 668016 +a ||| properly in ||| 0.011236 0.0587624 1.49697e-06 4.47615e-06 2.718 ||| 0-1 ||| 89 668016 +a ||| property of ||| 0.0166667 0.0188479 1.49697e-06 5.64949e-07 2.718 ||| 0-1 ||| 60 668016 +a ||| proportion of ||| 0.00193611 0.0188479 2.99394e-06 8.93271e-07 2.718 ||| 0-1 ||| 1033 668016 +a ||| proportion to ||| 0.00746269 0.229811 1.49697e-06 1.05791e-05 2.718 ||| 0-1 ||| 134 668016 +a ||| proposal , taking into consideration comments ||| 1 0.107578 1.49697e-06 3.31996e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| proposal , taking into consideration ||| 1 0.107578 1.49697e-06 6.63991e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| proposal , taking into ||| 0.5 0.107578 1.49697e-06 6.14807e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| proposal by ||| 0.00242718 0.0337966 1.49697e-06 1.64303e-06 2.718 ||| 0-1 ||| 412 668016 +a ||| proposal for a Council ||| 0.0277778 0.0683377 1.49697e-06 1.12792e-10 2.718 ||| 0-1 ||| 36 668016 +a ||| proposal for a ||| 0.000648228 0.0683377 4.49091e-06 3.26178e-07 2.718 ||| 0-1 ||| 4628 668016 +a ||| proposal for ||| 0.00106707 0.0683377 1.04788e-05 7.35865e-06 2.718 ||| 0-1 ||| 6560 668016 +a ||| proposal in the ||| 0.00613497 0.0587624 1.49697e-06 7.36608e-07 2.718 ||| 0-1 ||| 163 668016 +a ||| proposal in ||| 0.00372439 0.0587624 2.99394e-06 1.19985e-05 2.718 ||| 0-1 ||| 537 668016 +a ||| proposal on time ||| 0.25 0.0782999 1.49697e-06 1.24371e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| proposal on ||| 0.00103842 0.0782999 1.49697e-06 7.57574e-06 2.718 ||| 0-1 ||| 963 668016 +a ||| proposal to the ||| 0.00534759 0.229811 1.49697e-06 4.29468e-06 2.718 ||| 0-1 ||| 187 668016 +a ||| proposal to ||| 0.00198413 0.229811 7.48485e-06 6.99552e-05 2.718 ||| 0-1 ||| 2520 668016 +a ||| proposals at ||| 0.0294118 0.204175 1.49697e-06 3.30824e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| proposals for additional measures . ||| 1 0.0683377 1.49697e-06 1.18741e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| proposals for additional measures ||| 1 0.0683377 1.49697e-06 3.92015e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| proposals for additional ||| 1 0.0683377 1.49697e-06 1.89471e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| proposals for ||| 0.00103306 0.0683377 2.99394e-06 3.58167e-06 2.718 ||| 0-1 ||| 1936 668016 +a ||| proposals in the ||| 0.00393701 0.0587624 1.49697e-06 3.58529e-07 2.718 ||| 0-1 ||| 254 668016 +a ||| proposals in ||| 0.00190114 0.0587624 1.49697e-06 5.84002e-06 2.718 ||| 0-1 ||| 526 668016 +a ||| proposals on ||| 0.00114679 0.0782999 1.49697e-06 3.68734e-06 2.718 ||| 0-1 ||| 872 668016 +a ||| proposals to ||| 0.00211864 0.229811 2.99394e-06 3.40493e-05 2.718 ||| 0-1 ||| 944 668016 +a ||| propose to ||| 0.0102389 0.229811 4.49091e-06 1.18402e-05 2.718 ||| 0-1 ||| 293 668016 +a ||| proposed by ||| 0.000286533 0.0337966 1.49697e-06 9.18189e-07 2.718 ||| 0-1 ||| 3490 668016 +a ||| proposed for ||| 0.00369004 0.0683377 1.49697e-06 4.11229e-06 2.718 ||| 0-1 ||| 271 668016 +a ||| proposed to ||| 0.00222222 0.229811 1.49697e-06 3.90937e-05 2.718 ||| 0-1 ||| 450 668016 +a ||| proposes to attach to ||| 1 0.229811 1.49697e-06 3.26088e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| proposes to ||| 0.00298507 0.229811 1.49697e-06 3.39793e-06 2.718 ||| 0-1 ||| 335 668016 +a ||| proposing to sell ||| 1 0.229811 1.49697e-06 5.32809e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| proposing to ||| 0.00938967 0.229811 2.99394e-06 8.19706e-06 2.718 ||| 0-1 ||| 213 668016 +a ||| proscribed ||| 0.0555556 0.0526316 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| prosecute ||| 0.00420168 0.19802 1.49697e-06 5.48e-05 2.718 ||| 0-0 ||| 238 668016 +a ||| prosecution because ||| 0.0833333 0.0052046 1.49697e-06 1.74474e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| prosecutor to ||| 0.25 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| prospect of such an ||| 0.2 0.0188479 1.49697e-06 6.55504e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| prospect of such ||| 0.142857 0.0188479 1.49697e-06 1.4748e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| prospect of ||| 0.00247729 0.0188479 4.49091e-06 7.12842e-07 2.718 ||| 0-1 ||| 1211 668016 +a ||| prospects for ||| 0.00195695 0.0683377 1.49697e-06 4.64291e-07 2.718 ||| 0-1 ||| 511 668016 +a ||| prospects within ||| 0.25 0.0123496 1.49697e-06 6.26724e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| protect , in other words ||| 1 0.0587624 1.49697e-06 7.2375e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| protect , in other ||| 1 0.0587624 1.49697e-06 3.20243e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| protect , in ||| 0.5 0.0587624 1.49697e-06 2.47197e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| protect copyright and related rights in ||| 1 0.0587624 1.49697e-06 1.08897e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| protect ||| 0.00115039 0.0026951 1.64667e-05 1.92e-05 2.718 ||| 0-0 ||| 9562 668016 +a ||| protected internationally ||| 0.333333 0.158659 1.49697e-06 6.16896e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| protecting ||| 0.000285063 0.0011335 2.99394e-06 3.7e-06 2.718 ||| 0-0 ||| 7016 668016 +a ||| protection for ||| 0.00081367 0.0683377 1.49697e-06 3.74012e-06 2.718 ||| 0-1 ||| 1229 668016 +a ||| protection must fall to Member States at ||| 1 0.204175 1.49697e-06 1.11651e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| protection of ||| 0.000150761 0.0188479 1.49697e-06 3.00222e-06 2.718 ||| 0-1 ||| 6633 668016 +a ||| protection to ||| 0.0118577 0.229811 4.49091e-06 3.55556e-05 2.718 ||| 0-1 ||| 253 668016 +a ||| protects ||| 0.0045045 0.218966 2.99394e-06 0.0001159 2.718 ||| 0-0 ||| 444 668016 +a ||| protocol on ||| 0.00699301 0.0782999 1.49697e-06 2.88311e-07 2.718 ||| 0-1 ||| 143 668016 +a ||| proud industry to ||| 0.333333 0.229811 1.49697e-06 2.68394e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| prove possible to ||| 0.1 0.229811 1.49697e-06 1.48637e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| prove themselves on ||| 0.333333 0.0782999 1.49697e-06 8.62319e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| prove to be ||| 0.00790514 0.229811 2.99394e-06 3.35835e-07 2.718 ||| 0-1 ||| 253 668016 +a ||| prove to ||| 0.0253807 0.229811 7.48485e-06 1.8531e-05 2.718 ||| 0-1 ||| 197 668016 +a ||| proved possible to ||| 0.0357143 0.229811 1.49697e-06 1.16324e-08 2.718 ||| 0-2 ||| 28 668016 +a ||| proved to be ||| 0.00470588 0.229811 2.99394e-06 2.62827e-07 2.718 ||| 0-1 ||| 425 668016 +a ||| proved to ||| 0.00984252 0.229811 7.48485e-06 1.45025e-05 2.718 ||| 0-1 ||| 508 668016 +a ||| proven to be . ||| 0.5 0.229811 1.49697e-06 2.69214e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| proven to be ||| 0.00699301 0.229811 1.49697e-06 8.88787e-08 2.718 ||| 0-1 ||| 143 668016 +a ||| proven to ||| 0.010929 0.229811 2.99394e-06 4.90422e-06 2.718 ||| 0-1 ||| 183 668016 +a ||| provide a source of ||| 0.2 0.0188479 1.49697e-06 2.47042e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| provide an important boost for ||| 0.333333 0.0683377 1.49697e-06 3.21503e-16 2.718 ||| 0-4 ||| 3 668016 +a ||| provide an opportunity to honour ||| 1 0.229811 1.49697e-06 1.54937e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| provide an opportunity to ||| 0.025641 0.229811 1.49697e-06 8.28541e-11 2.718 ||| 0-3 ||| 39 668016 +a ||| provide an ||| 0.0019802 0.0015521 1.49697e-06 1.05339e-07 2.718 ||| 0-0 ||| 505 668016 +a ||| provide assistance to Member States during times ||| 1 0.229811 1.49697e-06 1.29564e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| provide assistance to Member States during ||| 1 0.229811 1.49697e-06 1.27649e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| provide assistance to Member States ||| 0.333333 0.229811 1.49697e-06 1.26636e-15 2.718 ||| 0-2 ||| 3 668016 +a ||| provide assistance to Member ||| 1 0.229811 1.49697e-06 2.65373e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| provide assistance to ||| 0.030303 0.229811 2.99394e-06 5.14987e-09 2.718 ||| 0-2 ||| 66 668016 +a ||| provide cancer ||| 1 0.0015521 1.49697e-06 2.2278e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| provide compensation for ||| 0.0384615 0.0683377 1.49697e-06 1.64587e-10 2.718 ||| 0-2 ||| 26 668016 +a ||| provide for consumers , ||| 1 0.0683377 1.49697e-06 4.86144e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| provide for consumers ||| 1 0.0683377 1.49697e-06 4.07652e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| provide for greater assistance ||| 0.5 0.0683377 1.49697e-06 7.13444e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| provide for greater ||| 0.125 0.0683377 1.49697e-06 1.4355e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| provide for ||| 0.00682594 0.0683377 8.98182e-06 1.08998e-05 2.718 ||| 0-1 ||| 879 668016 +a ||| provide high levels of ||| 0.5 0.0188479 1.49697e-06 1.72951e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| provide more funds for ||| 1 0.0683377 1.49697e-06 1.89925e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| provide on the ||| 0.142857 0.0782999 1.49697e-06 6.88899e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| provide on ||| 0.142857 0.0782999 2.99394e-06 1.12214e-05 2.718 ||| 0-1 ||| 14 668016 +a ||| provide some specific instances drawn from Spain ||| 1 0.0435582 1.49697e-06 9.27849e-27 2.718 ||| 0-5 ||| 1 668016 +a ||| provide some specific instances drawn from ||| 1 0.0435582 1.49697e-06 5.72746e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| provide to ||| 0.03125 0.229811 1.49697e-06 0.000103619 2.718 ||| 0-1 ||| 32 668016 +a ||| provide up to ||| 0.25 0.229811 1.49697e-06 3.53393e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| provide ||| 0.000700389 0.0015521 1.34727e-05 2.37e-05 2.718 ||| 0-0 ||| 12850 668016 +a ||| provided at ||| 0.0357143 0.204175 1.49697e-06 7.80091e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| provided by the European Union for ||| 0.5 0.0683377 1.49697e-06 5.07379e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| provided by the ||| 0.00130208 0.0337966 1.49697e-06 1.15769e-07 2.718 ||| 0-1 ||| 768 668016 +a ||| provided by ||| 0.00290065 0.0337966 5.98788e-06 1.88574e-06 2.718 ||| 0-1 ||| 1379 668016 +a ||| provided for in ||| 0.00118906 0.06355 1.49697e-06 5.07437e-07 2.718 ||| 0-1 0-2 ||| 841 668016 +a ||| provided for ||| 0.00498753 0.0683377 1.19758e-05 8.44568e-06 2.718 ||| 0-1 ||| 1604 668016 +a ||| provided they ||| 0.0119048 0.0016615 1.49697e-06 5.0592e-08 2.718 ||| 0-0 ||| 84 668016 +a ||| provided to Parliament on ||| 0.333333 0.0782999 1.49697e-06 4.43477e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| provided to ||| 0.0392157 0.229811 1.49697e-05 8.02891e-05 2.718 ||| 0-1 ||| 255 668016 +a ||| provided with a place ||| 0.333333 0.0571592 1.49697e-06 2.55268e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| provided with a ||| 0.0416667 0.0571592 1.49697e-06 1.69613e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| provided with ||| 0.00456621 0.0571592 1.49697e-06 3.82652e-06 2.718 ||| 0-1 ||| 219 668016 +a ||| provided you ||| 0.0909091 0.0016615 1.49697e-06 5.00449e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| provided ||| 0.0012692 0.0016615 1.49697e-05 1.55e-05 2.718 ||| 0-0 ||| 7879 668016 +a ||| providers to ||| 0.0344828 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| provides for referring ||| 0.125 0.0683377 1.49697e-06 1.13977e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| provides for ||| 0.000734214 0.0683377 1.49697e-06 2.63835e-06 2.718 ||| 0-1 ||| 1362 668016 +a ||| provides people with ||| 0.25 0.0571592 1.49697e-06 1.05216e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| provides to ||| 0.133333 0.229811 2.99394e-06 2.50816e-05 2.718 ||| 0-1 ||| 15 668016 +a ||| providing for ||| 0.00441501 0.0683377 2.99394e-06 3.38269e-06 2.718 ||| 0-1 ||| 453 668016 +a ||| providing information ||| 0.00520833 0.0170047 1.49697e-06 1.64673e-08 2.718 ||| 0-0 ||| 192 668016 +a ||| providing to assist ||| 1 0.229811 1.49697e-06 6.01349e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| providing to ||| 0.111111 0.229811 1.49697e-06 3.21577e-05 2.718 ||| 0-1 ||| 9 668016 +a ||| providing users with greater ||| 1 0.0571592 1.49697e-06 2.09919e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| providing users with ||| 1 0.0571592 1.49697e-06 1.59391e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| providing work for ||| 0.2 0.0683377 1.49697e-06 2.14124e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| providing ||| 0.0047654 0.0170047 3.89212e-05 9.95e-05 2.718 ||| 0-0 ||| 5456 668016 +a ||| province of ||| 0.00704225 0.0188479 1.49697e-06 1.18314e-07 2.718 ||| 0-1 ||| 142 668016 +a ||| proving to ||| 0.0128205 0.229811 1.49697e-06 4.27368e-06 2.718 ||| 0-1 ||| 78 668016 +a ||| proving wrong all those ||| 0.166667 0.018252 1.49697e-06 3.23263e-15 2.718 ||| 0-3 ||| 6 668016 +a ||| provision in ||| 0.0107527 0.0587624 1.49697e-06 7.1378e-06 2.718 ||| 0-1 ||| 93 668016 +a ||| provision of an ||| 0.05 0.0188479 1.49697e-06 1.56183e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| provision of ||| 0.00194301 0.0188479 4.49091e-06 3.51393e-06 2.718 ||| 0-1 ||| 1544 668016 +a ||| provision on ||| 0.0136986 0.0782999 1.49697e-06 4.50675e-06 2.718 ||| 0-1 ||| 73 668016 +a ||| provision to be made for ||| 0.25 0.229811 1.49697e-06 1.21426e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| provision to be made ||| 0.2 0.229811 1.49697e-06 1.5799e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| provision to be ||| 0.0909091 0.229811 1.49697e-06 7.542e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| provision to ||| 0.037037 0.229811 4.49091e-06 4.16158e-05 2.718 ||| 0-1 ||| 81 668016 +a ||| provisions on the ||| 0.00869565 0.0782999 1.49697e-06 1.8352e-07 2.718 ||| 0-1 ||| 115 668016 +a ||| provisions on ||| 0.00186916 0.0782999 1.49697e-06 2.98933e-06 2.718 ||| 0-1 ||| 535 668016 +a ||| provisions to ||| 0.0142857 0.229811 2.99394e-06 2.76038e-05 2.718 ||| 0-1 ||| 140 668016 +a ||| provoke ||| 0.011976 0.030303 2.99394e-06 6.4e-06 2.718 ||| 0-0 ||| 167 668016 +a ||| provoking circumstance ||| 0.25 0.113208 1.49697e-06 7.7e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| provoking ||| 0.0138889 0.113208 1.49697e-06 1.1e-05 2.718 ||| 0-0 ||| 72 668016 +a ||| proximity to ||| 0.0384615 0.229811 4.49091e-06 8.75754e-07 2.718 ||| 0-1 ||| 78 668016 +a ||| public in ||| 0.00487805 0.0587624 1.49697e-06 9.70933e-06 2.718 ||| 0-1 ||| 205 668016 +a ||| public interest ’ , in order to ||| 0.5 0.229811 1.49697e-06 1.50563e-17 2.718 ||| 0-6 ||| 2 668016 +a ||| public prosecutor to ||| 0.166667 0.229811 1.49697e-06 6.22696e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| public tend to perceive competition policy as ||| 1 0.229811 1.49697e-06 8.92419e-25 2.718 ||| 0-2 ||| 1 668016 +a ||| public tend to perceive competition policy ||| 1 0.229811 1.49697e-06 8.74543e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| public tend to perceive competition ||| 1 0.229811 1.49697e-06 2.22134e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| public tend to perceive ||| 1 0.229811 1.49697e-06 6.1194e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| public tend to ||| 1 0.229811 1.49697e-06 1.302e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| public to ||| 0.0135135 0.229811 2.99394e-06 5.66087e-05 2.718 ||| 0-1 ||| 148 668016 +a ||| publications in the ||| 1 0.0587624 1.49697e-06 8.11486e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| publications in ||| 0.142857 0.0587624 1.49697e-06 1.32181e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| publicly ||| 0.00357995 0.0147059 4.49091e-06 1.19e-05 2.718 ||| 0-0 ||| 838 668016 +a ||| published by Transparency ||| 0.5 0.0337966 1.49697e-06 7.33893e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| published by ||| 0.00495049 0.0337966 1.49697e-06 1.83473e-07 2.718 ||| 0-1 ||| 202 668016 +a ||| pull out all ||| 0.0322581 0.0669777 1.49697e-06 4.61217e-10 2.718 ||| 0-1 ||| 31 668016 +a ||| pull out ||| 0.0135135 0.0669777 1.49697e-06 9.76038e-08 2.718 ||| 0-1 ||| 74 668016 +a ||| pull themselves together and rise above ||| 1 0.0015873 1.49697e-06 1.92915e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| pull themselves together and rise ||| 1 0.0015873 1.49697e-06 1.48855e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| pull themselves together and ||| 0.333333 0.0015873 1.49697e-06 1.18515e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| pulled out one ||| 0.5 0.0669777 1.49697e-06 9.91392e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| pulled out ||| 0.0227273 0.0669777 1.49697e-06 2.37858e-08 2.718 ||| 0-1 ||| 44 668016 +a ||| pulled ||| 0.0185185 0.0057471 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 54 668016 +a ||| pulling out ||| 0.03125 0.0669777 1.49697e-06 3.40383e-08 2.718 ||| 0-1 ||| 32 668016 +a ||| punish acts ||| 0.5 0.308049 1.49697e-06 1.0333e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| punish ||| 0.0110193 0.308049 5.98788e-06 0.0001816 2.718 ||| 0-0 ||| 363 668016 +a ||| punished with ||| 0.0769231 0.0571592 1.49697e-06 1.0184e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| punishing ||| 0.00507614 0.320988 1.49697e-06 9.49e-05 2.718 ||| 0-0 ||| 197 668016 +a ||| pure sleight of hand . ||| 1 0.0188479 1.49697e-06 1.17969e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| pure sleight of hand ||| 1 0.0188479 1.49697e-06 3.89464e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| pure sleight of ||| 1 0.0188479 1.49697e-06 9.82006e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| purely and simply to ||| 0.166667 0.229811 1.49697e-06 2.49033e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| purely for ||| 0.03125 0.0683377 1.49697e-06 9.43322e-07 2.718 ||| 0-1 ||| 32 668016 +a ||| purport to ||| 0.0625 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| purpose at ||| 0.0909091 0.204175 1.49697e-06 6.12297e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| purpose being to ||| 0.2 0.229811 1.49697e-06 1.7934e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| purpose is to ||| 0.00653595 0.229811 1.49697e-06 1.97509e-06 2.718 ||| 0-2 ||| 153 668016 +a ||| purpose of the scheme was to compensate ||| 1 0.122807 1.49697e-06 5.27501e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| purpose of ||| 0.0026441 0.0188479 7.48485e-06 5.32117e-06 2.718 ||| 0-1 ||| 1891 668016 +a ||| purpose to ||| 0.0810811 0.229811 4.49091e-06 6.30193e-05 2.718 ||| 0-1 ||| 37 668016 +a ||| purpose will be to ||| 0.333333 0.229811 1.49697e-06 9.88046e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| purpose with ||| 0.111111 0.0571592 1.49697e-06 3.00345e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| purposes , to be ||| 0.5 0.229811 1.49697e-06 9.15317e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| purposes , to ||| 0.5 0.229811 1.49697e-06 5.05061e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| purposes are in ||| 1 0.0587624 1.49697e-06 1.10214e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| purposes for ||| 0.0222222 0.0683377 1.49697e-06 4.45498e-06 2.718 ||| 0-1 ||| 45 668016 +a ||| purposes of ||| 0.00596421 0.0188479 4.49091e-06 3.57604e-06 2.718 ||| 0-1 ||| 503 668016 +a ||| purse back to ||| 1 0.229811 1.49697e-06 7.53961e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| pursuant to ||| 0.00126103 0.229811 4.49091e-06 4.79913e-06 2.718 ||| 0-1 ||| 2379 668016 +a ||| pursue at ||| 0.2 0.204175 1.49697e-06 1.33419e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| pursued as ||| 0.125 0.0243476 1.49697e-06 3.21947e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| pursued at ||| 0.0384615 0.204175 1.49697e-06 1.2491e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| pursued by ||| 0.00858369 0.0337966 2.99394e-06 3.01949e-07 2.718 ||| 0-1 ||| 233 668016 +a ||| pursued for ||| 0.0714286 0.0683377 1.49697e-06 1.35234e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| pursued in ||| 0.0078125 0.0587624 1.49697e-06 2.20503e-06 2.718 ||| 0-1 ||| 128 668016 +a ||| pursued on the ||| 0.0909091 0.0782999 1.49697e-06 8.54719e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| pursued on ||| 0.1 0.0782999 1.49697e-06 1.39224e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| pursued with ||| 0.0232558 0.0571592 1.49697e-06 6.1271e-07 2.718 ||| 0-1 ||| 43 668016 +a ||| pursuing ||| 0.00088968 0.0135714 1.49697e-06 1.73e-05 2.718 ||| 0-0 ||| 1124 668016 +a ||| pursuit of ||| 0.00702988 0.0188479 5.98788e-06 7.33547e-07 2.718 ||| 0-1 ||| 569 668016 +a ||| push comes to ||| 0.285714 0.229811 2.99394e-06 3.8794e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| push for ||| 0.00458716 0.0683377 1.49697e-06 1.0207e-06 2.718 ||| 0-1 ||| 218 668016 +a ||| push through ||| 0.008 0.230708 1.49697e-06 2.2019e-07 2.718 ||| 0-1 ||| 125 668016 +a ||| push to ||| 0.0666667 0.229811 1.49697e-06 9.70335e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| pushed back and ||| 0.25 0.0015873 1.49697e-06 2.38792e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| pushed into ||| 0.0243902 0.107578 1.49697e-06 1.11767e-07 2.718 ||| 0-1 ||| 41 668016 +a ||| pushed onto ||| 0.25 0.207143 1.49697e-06 4.38288e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| pushed through at ||| 0.5 0.204175 1.49697e-06 2.88264e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| pushed ||| 0.0121581 0.0479651 5.98788e-06 3.01e-05 2.718 ||| 0-0 ||| 329 668016 +a ||| pushing a ||| 0.25 0.102314 1.49697e-06 3.39979e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| pushing aside ||| 0.333333 0.102314 1.49697e-06 5.40735e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| pushing them ||| 0.25 0.102314 1.49697e-06 2.0574e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| pushing through ||| 0.0232558 0.230708 1.49697e-06 1.05723e-07 2.718 ||| 0-1 ||| 43 668016 +a ||| pushing us into ||| 1 0.107578 1.49697e-06 2.32848e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| pushing us towards ||| 1 0.155507 1.49697e-06 1.29283e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| pushing ||| 0.0206186 0.102314 1.19758e-05 7.67e-05 2.718 ||| 0-0 ||| 388 668016 +a ||| put a ||| 0.00142653 0.0015876 1.49697e-06 1.82179e-06 2.718 ||| 0-0 ||| 701 668016 +a ||| put across successfully to ||| 0.5 0.229811 1.49697e-06 1.25622e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| put across to ||| 0.25 0.229811 1.49697e-06 3.96285e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| put all its ||| 0.0588235 0.0038996 1.49697e-06 8.68851e-10 2.718 ||| 0-1 ||| 17 668016 +a ||| put all ||| 0.010989 0.0038996 1.49697e-06 6.09848e-07 2.718 ||| 0-1 ||| 91 668016 +a ||| put an end to ||| 0.00286533 0.229811 4.49091e-06 7.4695e-10 2.718 ||| 0-3 ||| 1047 668016 +a ||| put at a ||| 0.0625 0.204175 1.49697e-06 1.66343e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| put at risk ||| 0.00591716 0.204175 1.49697e-06 4.39071e-09 2.718 ||| 0-1 ||| 169 668016 +a ||| put at ||| 0.0182648 0.204175 5.98788e-06 3.75274e-05 2.718 ||| 0-1 ||| 219 668016 +a ||| put before the national ||| 0.5 0.0203282 1.49697e-06 4.61268e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| put before the ||| 0.0175439 0.0203282 1.49697e-06 3.58963e-08 2.718 ||| 0-1 ||| 57 668016 +a ||| put before ||| 0.0137615 0.0203282 4.49091e-06 5.84709e-07 2.718 ||| 0-1 ||| 218 668016 +a ||| put both ||| 0.111111 0.0205477 1.49697e-06 7.22644e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| put by ||| 0.00558659 0.0337966 1.49697e-06 9.07164e-06 2.718 ||| 0-1 ||| 179 668016 +a ||| put down to the fact ||| 0.5 0.229811 1.49697e-06 4.849e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| put down to the ||| 0.2 0.229811 1.49697e-06 1.65534e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| put down to ||| 0.0588235 0.229811 1.49697e-06 2.69636e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| put extra things into ||| 1 0.107578 1.49697e-06 6.82665e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| put forward , for ||| 1 0.0683377 1.49697e-06 2.69588e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| put forward on ||| 0.0384615 0.0782999 1.49697e-06 2.3273e-08 2.718 ||| 0-2 ||| 26 668016 +a ||| put in a ||| 0.0208333 0.0587624 1.49697e-06 2.93645e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| put in by ||| 0.0555556 0.0462795 1.49697e-06 5.45047e-07 2.718 ||| 0-1 0-2 ||| 18 668016 +a ||| put in jeopardy ||| 0.0625 0.0587624 1.49697e-06 2.1199e-10 2.718 ||| 0-1 ||| 16 668016 +a ||| put in place appropriate legal ||| 1 0.0587624 1.49697e-06 1.73921e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| put in place appropriate ||| 1 0.0587624 1.49697e-06 1.34198e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| put in place at ||| 0.111111 0.204175 1.49697e-06 1.2089e-09 2.718 ||| 0-3 ||| 9 668016 +a ||| put in place ||| 0.008726 0.0587624 1.49697e-05 9.97017e-08 2.718 ||| 0-1 ||| 1146 668016 +a ||| put in ||| 0.0206349 0.0587624 3.89212e-05 6.6247e-05 2.718 ||| 0-1 ||| 1260 668016 +a ||| put into effect ||| 0.0107527 0.107578 2.99394e-06 2.23429e-09 2.718 ||| 0-1 ||| 186 668016 +a ||| put into practice ||| 0.00529101 0.107578 2.99394e-06 7.05919e-10 2.718 ||| 0-1 ||| 378 668016 +a ||| put into ||| 0.017425 0.107578 2.69455e-05 6.69752e-06 2.718 ||| 0-1 ||| 1033 668016 +a ||| put it in a ||| 0.0666667 0.0587624 1.49697e-06 5.22195e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| put it in ||| 0.0188679 0.0587624 2.99394e-06 1.17808e-06 2.718 ||| 0-2 ||| 106 668016 +a ||| put it on a ||| 0.142857 0.0782999 1.49697e-06 3.29709e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| put it on ||| 0.0178571 0.0782999 1.49697e-06 7.43832e-07 2.718 ||| 0-2 ||| 56 668016 +a ||| put it to ||| 0.0117647 0.229811 1.49697e-06 6.86863e-06 2.718 ||| 0-2 ||| 85 668016 +a ||| put off to a ||| 0.333333 0.229811 1.49697e-06 6.96805e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| put off to ||| 0.125 0.229811 1.49697e-06 1.57201e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| put off ||| 0.0145985 0.0893962 2.99394e-06 8.43379e-07 2.718 ||| 0-1 ||| 137 668016 +a ||| put on file ||| 0.5 0.0782999 1.49697e-06 3.47171e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| put on them ||| 0.25 0.0782999 1.49697e-06 1.12199e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| put on ||| 0.0341297 0.0782999 2.99394e-05 4.18278e-05 2.718 ||| 0-1 ||| 586 668016 +a ||| put out onto the street at ||| 0.142857 0.204175 1.49697e-06 2.49564e-18 2.718 ||| 0-5 ||| 7 668016 +a ||| put out to private ||| 1 0.229811 1.49697e-06 3.52112e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| put out to ||| 0.0769231 0.229811 2.99394e-06 1.47946e-06 2.718 ||| 0-2 ||| 26 668016 +a ||| put out ||| 0.0102041 0.0669777 1.49697e-06 4.52176e-06 2.718 ||| 0-1 ||| 98 668016 +a ||| put paid to ||| 0.0666667 0.229811 1.49697e-06 5.19882e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| put pressure on ||| 0.0023753 0.0782999 1.49697e-06 2.51385e-09 2.718 ||| 0-2 ||| 421 668016 +a ||| put the agenda to the ||| 1 0.229811 1.49697e-06 1.44554e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| put the agenda to ||| 1 0.229811 1.49697e-06 2.35461e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| put the matter to ||| 0.25 0.229811 1.49697e-06 2.46013e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| put themselves on ||| 0.166667 0.0782999 1.49697e-06 1.79734e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| put this to ||| 0.0714286 0.229811 1.49697e-06 2.49567e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| put through our ||| 0.5 0.230708 1.49697e-06 1.209e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| put through ||| 0.0384615 0.230708 1.49697e-06 8.76468e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| put to a ||| 0.0588235 0.229811 1.49697e-06 1.71205e-05 2.718 ||| 0-1 ||| 17 668016 +a ||| put to death in ||| 0.5 0.0587624 1.49697e-06 3.19642e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| put to one side and ||| 0.5 0.229811 1.49697e-06 4.42015e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| put to one side if we are ||| 1 0.229811 1.49697e-06 5.07895e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| put to one side if we ||| 1 0.229811 1.49697e-06 3.34742e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| put to one side if ||| 1 0.229811 1.49697e-06 2.94867e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| put to one side ||| 0.111111 0.229811 2.99394e-06 3.52881e-10 2.718 ||| 0-1 ||| 18 668016 +a ||| put to one ||| 0.0769231 0.229811 2.99394e-06 1.60986e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| put to the ||| 0.016129 0.229811 1.19758e-05 2.37121e-05 2.718 ||| 0-1 ||| 496 668016 +a ||| put to ||| 0.0368364 0.229811 5.0897e-05 0.000386243 2.718 ||| 0-1 ||| 923 668016 +a ||| put together ||| 0.00290698 0.0160315 1.49697e-06 2.98915e-07 2.718 ||| 0-1 ||| 344 668016 +a ||| put too fine a point on ||| 0.333333 0.0782999 1.49697e-06 7.1521e-17 2.718 ||| 0-5 ||| 3 668016 +a ||| put towards ||| 0.2 0.155507 1.49697e-06 3.71863e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| put up to ||| 0.333333 0.229811 1.49697e-06 1.31728e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| put up with ||| 0.0144928 0.0571592 2.99394e-06 6.27805e-08 2.718 ||| 0-2 ||| 138 668016 +a ||| put up ||| 0.0114286 0.0195077 2.99394e-06 1.35355e-06 2.718 ||| 0-1 ||| 175 668016 +a ||| put ||| 0.00139321 0.0015876 2.54485e-05 4.11e-05 2.718 ||| 0-0 ||| 12202 668016 +a ||| puts into ||| 0.037037 0.107578 1.49697e-06 2.01059e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| puts people ||| 0.125 0.0136986 1.49697e-06 1.68998e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| puts to ||| 0.125 0.229811 1.49697e-06 1.1595e-05 2.718 ||| 0-1 ||| 8 668016 +a ||| puts ||| 0.00384615 0.0136986 5.98788e-06 1.92e-05 2.718 ||| 0-0 ||| 1040 668016 +a ||| putting a ||| 0.0145985 0.049485 2.99394e-06 8.94051e-06 2.718 ||| 0-0 ||| 137 668016 +a ||| putting forward his theory , ||| 1 0.049485 1.49697e-06 3.05652e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| putting forward his theory ||| 1 0.049485 1.49697e-06 2.56301e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| putting forward his ||| 0.333333 0.049485 1.49697e-06 3.37239e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| putting forward ||| 0.00588235 0.049485 2.99394e-06 1.12226e-07 2.718 ||| 0-0 ||| 340 668016 +a ||| putting in place ||| 0.00485437 0.0587624 1.49697e-06 1.01185e-08 2.718 ||| 0-1 ||| 206 668016 +a ||| putting in ||| 0.0171429 0.0587624 4.49091e-06 6.72323e-06 2.718 ||| 0-1 ||| 175 668016 +a ||| putting its hands ||| 0.5 0.049485 1.49697e-06 2.89661e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| putting its ||| 0.05 0.049485 1.49697e-06 2.87362e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| putting new ones in ||| 0.166667 0.0587624 1.49697e-06 8.88083e-13 2.718 ||| 0-3 ||| 6 668016 +a ||| putting the ||| 0.00310559 0.049485 1.49697e-06 1.23827e-05 2.718 ||| 0-0 ||| 322 668016 +a ||| putting them out of business in ||| 0.5 0.0587624 1.49697e-06 4.6905e-16 2.718 ||| 0-5 ||| 2 668016 +a ||| putting to ||| 0.03125 0.229811 1.49697e-06 3.91987e-05 2.718 ||| 0-1 ||| 32 668016 +a ||| putting up ||| 0.0169492 0.049485 1.49697e-06 6.87898e-07 2.718 ||| 0-0 ||| 59 668016 +a ||| putting yourselves in ||| 1 0.0587624 1.49697e-06 7.53002e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| putting ||| 0.019253 0.049485 7.48485e-05 0.0002017 2.718 ||| 0-0 ||| 2597 668016 +a ||| qualified majority because we ||| 0.166667 0.0052046 1.49697e-06 2.0251e-15 2.718 ||| 0-2 ||| 6 668016 +a ||| qualified majority because ||| 0.125 0.0052046 1.49697e-06 1.78387e-13 2.718 ||| 0-2 ||| 8 668016 +a ||| qualify as ||| 0.0166667 0.0243476 1.49697e-06 5.08799e-08 2.718 ||| 0-1 ||| 60 668016 +a ||| qualify for the ||| 0.0555556 0.0683377 1.49697e-06 1.31207e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| qualify for ||| 0.00653595 0.0683377 1.49697e-06 2.13721e-07 2.718 ||| 0-1 ||| 153 668016 +a ||| qualify to ||| 1 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| quality depends on the ||| 0.5 0.0782999 1.49697e-06 1.73373e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| quality depends on ||| 0.5 0.0782999 1.49697e-06 2.82404e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| quality of life ||| 0.000737463 0.0188479 1.49697e-06 2.2092e-10 2.718 ||| 0-1 ||| 1356 668016 +a ||| quality of ||| 0.000198059 0.0188479 1.49697e-06 1.45822e-06 2.718 ||| 0-1 ||| 5049 668016 +a ||| quantities of ||| 0.00359712 0.0188479 1.49697e-06 4.2593e-07 2.718 ||| 0-1 ||| 278 668016 +a ||| quest for ||| 0.00343643 0.0683377 1.49697e-06 2.24776e-07 2.718 ||| 0-1 ||| 291 668016 +a ||| quest to ||| 0.0344828 0.229811 1.49697e-06 2.13684e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| question all ||| 0.2 0.0038996 1.49697e-06 4.5758e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| question are to ||| 1 0.229811 1.49697e-06 4.39712e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| question as ||| 0.00347222 0.0243476 1.49697e-06 7.25741e-06 2.718 ||| 0-1 ||| 288 668016 +a ||| question for the future , both for ||| 1 0.0683377 1.49697e-06 7.54695e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| question for the future , both ||| 1 0.0683377 1.49697e-06 9.81947e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| question for the future , ||| 1 0.0683377 1.49697e-06 5.92784e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| question for the future ||| 0.5 0.0683377 1.49697e-06 4.97074e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| question for the ||| 0.00840336 0.0683377 1.49697e-06 1.87151e-06 2.718 ||| 0-1 ||| 119 668016 +a ||| question for ||| 0.00970874 0.0683377 4.49091e-06 3.04848e-05 2.718 ||| 0-1 ||| 309 668016 +a ||| question from ||| 0.00729927 0.0435582 1.49697e-06 5.95557e-06 2.718 ||| 0-1 ||| 137 668016 +a ||| question in ||| 0.00664452 0.0587624 2.99394e-06 4.97063e-05 2.718 ||| 0-1 ||| 301 668016 +a ||| question is to ||| 0.030303 0.229811 1.49697e-06 9.08279e-06 2.718 ||| 0-2 ||| 33 668016 +a ||| question of bail arrangements and many others ||| 1 0.0188479 1.49697e-06 1.79603e-25 2.718 ||| 0-1 ||| 1 668016 +a ||| question of bail arrangements and many ||| 1 0.0188479 1.49697e-06 1.84776e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| question of bail arrangements and ||| 1 0.0188479 1.49697e-06 5.38236e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| question of bail arrangements ||| 1 0.0188479 1.49697e-06 4.29698e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| question of bail ||| 1 0.0188479 1.49697e-06 9.78812e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| question of giving ||| 0.0909091 0.0776844 1.49697e-06 2.46807e-08 2.718 ||| 0-1 0-2 ||| 11 668016 +a ||| question of setting up an ||| 0.25 0.0188479 1.49697e-06 3.5239e-14 2.718 ||| 0-1 ||| 4 668016 +a ||| question of setting up ||| 0.1 0.0188479 1.49697e-06 7.92831e-12 2.718 ||| 0-1 ||| 10 668016 +a ||| question of setting ||| 0.0714286 0.0188479 1.49697e-06 2.32468e-09 2.718 ||| 0-1 ||| 14 668016 +a ||| question of which ||| 0.0454545 0.0188479 1.49697e-06 2.07865e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| question of ||| 0.00249822 0.0188479 3.14364e-05 2.44703e-05 2.718 ||| 0-1 ||| 8406 668016 +a ||| question on ||| 0.00275482 0.0782999 1.49697e-06 3.13841e-05 2.718 ||| 0-1 ||| 363 668016 +a ||| question put by ||| 0.0166667 0.0337966 1.49697e-06 7.50497e-09 2.718 ||| 0-2 ||| 60 668016 +a ||| question to mention ||| 0.142857 0.229811 1.49697e-06 2.8169e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| question to which ||| 0.0384615 0.229811 1.49697e-06 2.46177e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| question to you ||| 0.00943396 0.229811 1.49697e-06 9.35692e-07 2.718 ||| 0-1 ||| 106 668016 +a ||| question to ||| 0.00869565 0.229811 1.04788e-05 0.000289805 2.718 ||| 0-1 ||| 805 668016 +a ||| questionable in terms of European ||| 1 0.0587624 1.49697e-06 3.83625e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| questionable in terms of ||| 0.5 0.0587624 1.49697e-06 1.14724e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| questionable in terms ||| 1 0.0587624 1.49697e-06 2.11029e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| questionable in ||| 0.111111 0.0587624 1.49697e-06 1.92264e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| questions about ||| 0.00319489 0.0526361 1.49697e-06 4.45978e-07 2.718 ||| 0-1 ||| 313 668016 +a ||| questions for ||| 0.008 0.0683377 1.49697e-06 3.26109e-06 2.718 ||| 0-1 ||| 125 668016 +a ||| questions of ||| 0.00144718 0.0188479 1.49697e-06 2.6177e-06 2.718 ||| 0-1 ||| 691 668016 +a ||| questions on ||| 0.00478469 0.0782999 1.49697e-06 3.3573e-06 2.718 ||| 0-1 ||| 209 668016 +a ||| questions to ||| 0.00466563 0.229811 4.49091e-06 3.10017e-05 2.718 ||| 0-1 ||| 643 668016 +a ||| queue up to ||| 0.25 0.229811 1.49697e-06 1.31417e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| quick to ||| 0.00900901 0.229811 1.49697e-06 4.27368e-06 2.718 ||| 0-1 ||| 111 668016 +a ||| quicker off ||| 0.333333 0.0893962 1.49697e-06 1.91225e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| quickly as possible ||| 0.000688705 0.0243476 1.49697e-06 3.18746e-10 2.718 ||| 0-1 ||| 1452 668016 +a ||| quickly as ||| 0.00299401 0.0243476 1.49697e-06 3.9739e-07 2.718 ||| 0-1 ||| 334 668016 +a ||| quickly into ||| 0.0714286 0.107578 1.49697e-06 2.75166e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| quickly to ||| 0.0127119 0.229811 4.49091e-06 1.58687e-05 2.718 ||| 0-1 ||| 236 668016 +a ||| quite a ||| 0.00181818 0.0003623 1.49697e-06 2.83685e-07 2.718 ||| 0-0 ||| 550 668016 +a ||| quite dear to ||| 0.5 0.229811 1.49697e-06 2.61007e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| quite meet ||| 0.5 0.0482171 1.49697e-06 1.53114e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| quite prepared to ||| 0.0217391 0.229811 1.49697e-06 1.18478e-08 2.718 ||| 0-2 ||| 46 668016 +a ||| quite remarkable attacks on ||| 0.333333 0.0782999 1.49697e-06 1.38516e-15 2.718 ||| 0-3 ||| 3 668016 +a ||| quite rightly continue to ||| 1 0.229811 1.49697e-06 1.67277e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| quite specific on ||| 0.5 0.0782999 1.49697e-06 2.23608e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| quite ||| 0.000383914 0.0003623 5.98788e-06 6.4e-06 2.718 ||| 0-0 ||| 10419 668016 +a ||| quotas to ||| 0.0136986 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-1 ||| 73 668016 +a ||| quotation ||| 0.00854701 0.0069444 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 117 668016 +a ||| quote again , " As for ||| 0.5 0.0683377 1.49697e-06 1.63717e-19 2.718 ||| 0-5 ||| 2 668016 +a ||| quotient for ||| 1 0.0683377 1.49697e-06 1.47394e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| quoting the ||| 0.0454545 0.167702 1.49697e-06 3.02662e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| quoting ||| 0.031746 0.167702 5.98788e-06 4.93e-05 2.718 ||| 0-0 ||| 126 668016 +a ||| race to ||| 0.00952381 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-1 ||| 105 668016 +a ||| racist parties in ||| 0.5 0.0587624 1.49697e-06 1.76402e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| radically in relation to ||| 1 0.229811 1.49697e-06 8.57407e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| radio - to ||| 1 0.229811 1.49697e-06 5.6819e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| raging in ||| 0.0416667 0.0587624 1.49697e-06 2.82388e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| raging through ||| 0.2 0.230708 1.49697e-06 3.73608e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| raise up ||| 1 0.0195077 1.49697e-06 8.08988e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| raise ||| 0.00157183 0.0013714 7.48485e-06 5.5e-06 2.718 ||| 0-0 ||| 3181 668016 +a ||| raised as ||| 0.030303 0.0243476 1.49697e-06 1.01058e-06 2.718 ||| 0-1 ||| 33 668016 +a ||| raised at the ||| 0.0217391 0.204175 1.49697e-06 2.4071e-07 2.718 ||| 0-1 ||| 46 668016 +a ||| raised at ||| 0.012987 0.204175 1.49697e-06 3.92088e-06 2.718 ||| 0-1 ||| 77 668016 +a ||| raised by ||| 0.000744602 0.0337966 1.49697e-06 9.47808e-07 2.718 ||| 0-1 ||| 1343 668016 +a ||| raised for the ||| 0.142857 0.0683377 1.49697e-06 2.60605e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| raised for ||| 0.0909091 0.0683377 2.99394e-06 4.24495e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| raised in relation ||| 0.2 0.0587624 1.49697e-06 1.684e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| raised in ||| 0.0057554 0.0587624 5.98788e-06 6.9215e-06 2.718 ||| 0-1 ||| 695 668016 +a ||| raised to ||| 0.0238095 0.229811 1.49697e-06 4.03547e-05 2.718 ||| 0-1 ||| 42 668016 +a ||| raising any objections to ||| 1 0.229811 1.49697e-06 8.77226e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| raising awareness in ||| 0.333333 0.0587624 1.49697e-06 4.13187e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| rallying cries for ||| 1 0.0683377 1.49697e-06 2.12247e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| rammed down the throats ||| 0.333333 0.0226513 1.49697e-06 4.21386e-17 2.718 ||| 0-1 ||| 3 668016 +a ||| rammed down the ||| 0.333333 0.0226513 1.49697e-06 8.96566e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| rammed down ||| 0.25 0.0226513 1.49697e-06 1.4604e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| range of emotions ||| 0.333333 0.0188479 1.49697e-06 8.12817e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| range of ||| 0.00221141 0.0188479 7.48485e-06 2.03204e-06 2.718 ||| 0-1 ||| 2261 668016 +a ||| rank of ||| 0.0344828 0.0188479 1.49697e-06 5.32413e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| raped ||| 0.0162602 0.116883 2.99394e-06 1.64e-05 2.718 ||| 0-0 ||| 123 668016 +a ||| rapid return to ||| 0.142857 0.229811 1.49697e-06 4.19942e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| rapists , for example , ||| 1 0.0683377 1.49697e-06 6.10201e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| rapists , for example ||| 1 0.0683377 1.49697e-06 5.11679e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| rapists , for ||| 1 0.0683377 1.49697e-06 1.75774e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| rapporteur , for his commitment ||| 1 0.0683377 1.49697e-06 5.32736e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| rapporteur , for his ||| 0.0909091 0.0683377 1.49697e-06 9.54725e-11 2.718 ||| 0-2 ||| 11 668016 +a ||| rapporteur , for ||| 0.00970874 0.0683377 1.49697e-06 3.17712e-07 2.718 ||| 0-2 ||| 103 668016 +a ||| rapporteur hits the nail ||| 0.5 0.203046 1.49697e-06 9.39657e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| rapporteur hits the ||| 0.5 0.203046 1.49697e-06 1.6201e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| rapporteur hits ||| 0.5 0.203046 1.49697e-06 2.63895e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| rapporteur in her report ||| 0.111111 0.0587624 1.49697e-06 4.84499e-13 2.718 ||| 0-1 ||| 9 668016 +a ||| rapporteur in her ||| 0.0384615 0.0587624 1.49697e-06 1.18199e-09 2.718 ||| 0-1 ||| 26 668016 +a ||| rapporteur in ||| 0.00277008 0.0587624 1.49697e-06 4.34396e-06 2.718 ||| 0-1 ||| 361 668016 +a ||| rapporteurs , ||| 0.00104932 0.0006602 1.49697e-06 3.21988e-07 2.718 ||| 0-0 ||| 953 668016 +a ||| rapporteurs to ||| 0.0322581 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| rapporteurs ||| 0.000423549 0.0006602 2.99394e-06 2.7e-06 2.718 ||| 0-0 ||| 4722 668016 +a ||| rare insight into ||| 1 0.107578 1.49697e-06 1.64006e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| rate down to ||| 1 0.229811 1.49697e-06 2.45524e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| rate for ||| 0.012987 0.0683377 1.49697e-06 3.69959e-06 2.718 ||| 0-1 ||| 77 668016 +a ||| rate markets to ||| 1 0.229811 1.49697e-06 9.88285e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| rate of growth ||| 0.0147059 0.0188479 1.49697e-06 1.43139e-10 2.718 ||| 0-1 ||| 68 668016 +a ||| rate of ||| 0.00207469 0.0188479 2.99394e-06 2.96968e-06 2.718 ||| 0-1 ||| 964 668016 +a ||| rate to ||| 0.03125 0.229811 1.49697e-06 3.51703e-05 2.718 ||| 0-1 ||| 32 668016 +a ||| rates for officials ||| 0.111111 0.0683377 1.49697e-06 1.9655e-11 2.718 ||| 0-1 ||| 9 668016 +a ||| rates for ||| 0.0526316 0.0683377 2.99394e-06 1.40393e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| rates to ||| 0.03125 0.229811 1.49697e-06 1.33465e-05 2.718 ||| 0-1 ||| 32 668016 +a ||| rather , favours ||| 0.5 0.222874 1.49697e-06 5.06474e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| rather , to ||| 0.0869565 0.229811 2.99394e-06 1.27915e-05 2.718 ||| 0-2 ||| 23 668016 +a ||| rather concerned ||| 0.111111 0.044342 1.49697e-06 2.44562e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| rather condemn ourselves to the Europe ||| 0.25 0.229811 1.49697e-06 1.2931e-17 2.718 ||| 0-3 ||| 4 668016 +a ||| rather condemn ourselves to the ||| 0.25 0.229811 1.49697e-06 2.55553e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| rather condemn ourselves to ||| 0.25 0.229811 1.49697e-06 4.16266e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| rather makes choice of loss ||| 0.25 0.0188479 1.49697e-06 2.88929e-18 2.718 ||| 0-3 ||| 4 668016 +a ||| rather makes choice of ||| 0.25 0.0188479 1.49697e-06 6.86293e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| rather more to allow ||| 1 0.229811 1.49697e-06 5.94261e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| rather more to ||| 0.25 0.229811 1.49697e-06 2.44955e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| rather quickly to ||| 1 0.229811 1.49697e-06 4.85898e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| rather reminiscent ||| 0.5 0.157025 1.49697e-06 1.06251e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| rather strongly condemn ||| 1 0.0017762 1.49697e-06 5.42678e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| rather than carrying on with ||| 1 0.0782999 1.49697e-06 1.37286e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| rather than carrying on ||| 1 0.0782999 1.49697e-06 2.14693e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| rather than for ||| 0.015625 0.0683377 1.49697e-06 3.44696e-09 2.718 ||| 0-2 ||| 64 668016 +a ||| rather than to ||| 0.00478469 0.229811 1.49697e-06 3.27686e-08 2.718 ||| 0-2 ||| 209 668016 +a ||| rather than ||| 0.00129668 0.0242272 1.49697e-05 3.84863e-07 2.718 ||| 0-1 ||| 7712 668016 +a ||| rather to ||| 0.0162602 0.229811 2.99394e-06 0.000107262 2.718 ||| 0-1 ||| 123 668016 +a ||| ratification at ||| 0.0909091 0.204175 1.49697e-06 1.70177e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| ratified , and for ||| 1 0.0683377 1.49697e-06 4.56859e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| ratio to ||| 0.0909091 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| rationality employed to spend ||| 0.333333 0.229811 1.49697e-06 1.21871e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| rationality employed to ||| 0.333333 0.229811 1.49697e-06 4.03547e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| rationing of ||| 0.2 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| re-establish ||| 0.00271003 0.0032573 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 369 668016 +a ||| re-tabled ||| 0.0217391 0.247525 1.49697e-06 2.28e-05 2.718 ||| 0-0 ||| 46 668016 +a ||| re-use of components ||| 1 0.0188479 1.49697e-06 1.0175e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| re-use of ||| 0.0294118 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-1 ||| 34 668016 +a ||| reach a favourable ||| 1 0.182593 1.49697e-06 1.26133e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| reach a ||| 0.00239808 0.182593 4.49091e-06 6.50171e-05 2.718 ||| 0-0 ||| 1251 668016 +a ||| reach of ||| 0.0144928 0.0188479 1.49697e-06 2.39586e-06 2.718 ||| 0-1 ||| 69 668016 +a ||| reach some ||| 0.04 0.182593 1.49697e-06 1.59779e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| reach the ||| 0.00176991 0.182593 1.49697e-06 9.00495e-05 2.718 ||| 0-0 ||| 565 668016 +a ||| reach total agreement on this subject , ||| 1 0.0782999 1.49697e-06 2.22128e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| reach total agreement on this subject ||| 1 0.0782999 1.49697e-06 1.86264e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| reach total agreement on this ||| 1 0.0782999 1.49697e-06 3.45061e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| reach total agreement on ||| 0.5 0.0782999 1.49697e-06 5.34034e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| reach us ||| 0.0454545 0.182593 1.49697e-06 4.22761e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| reach ||| 0.00768322 0.182593 5.83818e-05 0.0014668 2.718 ||| 0-0 ||| 5076 668016 +a ||| reached an historic turning point in ||| 1 0.14487 1.49697e-06 2.96745e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| reached an historic turning point ||| 0.5 0.14487 1.49697e-06 1.38637e-18 2.718 ||| 0-0 ||| 2 668016 +a ||| reached an historic turning ||| 1 0.14487 1.49697e-06 1.58478e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| reached an historic ||| 1 0.14487 1.49697e-06 3.16956e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| reached an ||| 0.0037594 0.14487 1.49697e-06 5.46476e-06 2.718 ||| 0-0 ||| 266 668016 +a ||| reached full legal ||| 1 0.14487 1.49697e-06 2.92395e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| reached full ||| 0.5 0.14487 1.49697e-06 2.25613e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| reached in ||| 0.00229358 0.0587624 1.49697e-06 6.48891e-06 2.718 ||| 0-1 ||| 436 668016 +a ||| reached its limit with ||| 1 0.0571592 1.49697e-06 1.24845e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| reached out to ||| 0.125 0.229811 1.49697e-06 1.44914e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| reached us ||| 0.0357143 0.14487 1.49697e-06 3.54366e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| reached when any solution to ||| 1 0.229811 1.49697e-06 1.94477e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| reached ||| 0.00660755 0.14487 5.68849e-05 0.0012295 2.718 ||| 0-0 ||| 5751 668016 +a ||| reaches ||| 0.0302198 0.258232 1.64667e-05 0.000136 2.718 ||| 0-0 ||| 364 668016 +a ||| reaching for ||| 0.5 0.126769 1.49697e-06 1.48978e-05 2.718 ||| 0-0 0-1 ||| 2 668016 +a ||| reaching ||| 0.0102857 0.185201 2.69455e-05 0.0004043 2.718 ||| 0-0 ||| 1750 668016 +a ||| react to ||| 0.00673401 0.229811 2.99394e-06 2.9075e-06 2.718 ||| 0-1 ||| 297 668016 +a ||| reacted to ||| 0.0142857 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 70 668016 +a ||| reaction to ||| 0.0212766 0.229811 8.98182e-06 7.95185e-06 2.718 ||| 0-1 ||| 282 668016 +a ||| read , in ||| 0.0588235 0.0587624 1.49697e-06 3.45359e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| read in ||| 0.00515464 0.0587624 1.49697e-06 2.89598e-06 2.718 ||| 0-1 ||| 194 668016 +a ||| read out on ||| 0.333333 0.0782999 1.49697e-06 7.00387e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| readiness to ||| 0.00389105 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-1 ||| 257 668016 +a ||| reads to ||| 1 0.229811 1.49697e-06 1.89163e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| ready at the ||| 0.25 0.204175 1.49697e-06 9.25646e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| ready at ||| 0.125 0.204175 1.49697e-06 1.50777e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| ready for adoption ||| 0.166667 0.0683377 1.49697e-06 7.52531e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| ready for presentation ||| 0.25 0.0683377 1.49697e-06 2.57917e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| ready for ||| 0.00813008 0.0683377 5.98788e-06 1.63239e-06 2.718 ||| 0-1 ||| 492 668016 +a ||| ready on ||| 0.0454545 0.0782999 1.49697e-06 1.68055e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| ready to continue to ||| 0.166667 0.229811 1.49697e-06 3.19085e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| ready to go down ||| 0.5 0.229811 1.49697e-06 6.33535e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| ready to go ||| 0.0434783 0.229811 1.49697e-06 9.07514e-09 2.718 ||| 0-1 ||| 23 668016 +a ||| ready to oppose ||| 0.333333 0.229811 1.49697e-06 8.37991e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| ready to take ||| 0.0119048 0.229811 1.49697e-06 2.49846e-08 2.718 ||| 0-1 ||| 84 668016 +a ||| ready to ||| 0.00585938 0.229811 1.79636e-05 1.55184e-05 2.718 ||| 0-1 ||| 2048 668016 +a ||| ready ||| 0.00030722 0.0005565 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 3255 668016 +a ||| reaffirmed to ||| 0.125 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| real chance of administering ||| 0.333333 0.0188479 1.49697e-06 6.31197e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| real chance of ||| 0.0294118 0.0188479 1.49697e-06 3.50665e-10 2.718 ||| 0-2 ||| 34 668016 +a ||| real gain in ||| 1 0.0587624 1.49697e-06 6.03133e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| realisation of ||| 0.00387597 0.0188479 1.49697e-06 1.18314e-07 2.718 ||| 0-1 ||| 258 668016 +a ||| realised in ||| 0.0333333 0.0587624 1.49697e-06 7.33006e-07 2.718 ||| 0-1 ||| 30 668016 +a ||| reality by ||| 0.0526316 0.0337966 1.49697e-06 5.5042e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| reality in line with ||| 0.5 0.0571592 1.49697e-06 7.03814e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| reality in ||| 0.00452489 0.0587624 1.49697e-06 4.01952e-06 2.718 ||| 0-1 ||| 221 668016 +a ||| reality of ||| 0.00167504 0.0188479 1.49697e-06 1.9788e-06 2.718 ||| 0-1 ||| 597 668016 +a ||| realize afterwards ||| 0.25 0.0599455 1.49697e-06 2.3316e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| realized in ||| 0.142857 0.0587624 1.49697e-06 1.74239e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| really - that I ||| 1 0.0013612 1.49697e-06 2.26958e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| really accused ||| 0.333333 0.100079 1.49697e-06 5.5706e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| really deal with ||| 0.25 0.0571592 1.49697e-06 3.43379e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| really does seem to ||| 0.25 0.229811 1.49697e-06 1.08782e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| really get down to ||| 0.2 0.229811 1.49697e-06 5.17898e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| really going on ||| 0.0769231 0.0782999 1.49697e-06 1.57262e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| really have to highlight just how difficulties ||| 1 0.229811 1.49697e-06 3.51795e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| really have to highlight just how ||| 1 0.229811 1.49697e-06 1.71607e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| really have to highlight just ||| 1 0.229811 1.49697e-06 4.78815e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| really have to highlight ||| 1 0.229811 1.49697e-06 3.795e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| really have to ||| 0.0465116 0.229811 2.99394e-06 2.02941e-06 2.718 ||| 0-2 ||| 43 668016 +a ||| really looking at is ||| 0.5 0.204175 1.49697e-06 5.46682e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| really looking at ||| 0.4 0.204175 2.99394e-06 1.7443e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| really looking forward to ||| 0.0625 0.229811 1.49697e-06 9.98893e-12 2.718 ||| 0-3 ||| 16 668016 +a ||| really meant by ||| 0.333333 0.0337966 1.49697e-06 3.16839e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| really needs to ||| 0.0416667 0.229811 1.49697e-06 3.36488e-08 2.718 ||| 0-2 ||| 24 668016 +a ||| really pushing ||| 1 0.102314 1.49697e-06 3.71535e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| really quite ||| 0.0285714 0.0003623 1.49697e-06 3.10016e-09 2.718 ||| 0-1 ||| 35 668016 +a ||| really to ||| 0.011236 0.229811 1.49697e-06 0.000169686 2.718 ||| 0-1 ||| 89 668016 +a ||| really too difficult to organise ||| 0.25 0.229811 1.49697e-06 2.98304e-16 2.718 ||| 0-3 ||| 4 668016 +a ||| really too difficult to ||| 0.25 0.229811 1.49697e-06 2.86831e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| really want to invest in European cinema ||| 1 0.229811 1.49697e-06 7.47209e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| really want to invest in European ||| 1 0.229811 1.49697e-06 5.33721e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| really want to invest in ||| 1 0.229811 1.49697e-06 1.5961e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| really want to invest ||| 1 0.229811 1.49697e-06 7.45686e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| really want to ||| 0.0210526 0.229811 2.99394e-06 7.93282e-08 2.718 ||| 0-2 ||| 95 668016 +a ||| realms of speculation on this point , ||| 0.5 0.0782999 1.49697e-06 1.25116e-20 2.718 ||| 0-3 ||| 2 668016 +a ||| realms of speculation on this point ||| 0.5 0.0782999 1.49697e-06 1.04915e-19 2.718 ||| 0-3 ||| 2 668016 +a ||| realms of speculation on this ||| 0.5 0.0782999 1.49697e-06 1.1993e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| realms of speculation on ||| 0.5 0.0782999 1.49697e-06 1.8561e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| reappear and cause ||| 1 0.0015873 1.49697e-06 2.44062e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| reappear and ||| 1 0.0015873 1.49697e-06 1.35065e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| rearing its head in ||| 1 0.0587624 1.49697e-06 1.98043e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| rearing ||| 0.00492611 0.0112994 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 203 668016 +a ||| reason I will be ||| 0.2 0.0561595 1.49697e-06 4.22288e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| reason I will ||| 0.1 0.0561595 1.49697e-06 2.33014e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| reason for ||| 0.00686892 0.0683377 1.79636e-05 8.61886e-06 2.718 ||| 0-1 ||| 1747 668016 +a ||| reason of ||| 0.0172414 0.0188479 1.49697e-06 6.91841e-06 2.718 ||| 0-1 ||| 58 668016 +a ||| reason relates to its legal basis . ||| 1 0.229811 1.49697e-06 7.64622e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| reason relates to its legal basis ||| 1 0.229811 1.49697e-06 2.52434e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| reason relates to its legal ||| 1 0.229811 1.49697e-06 4.25116e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| reason relates to its ||| 1 0.229811 1.49697e-06 3.28021e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| reason relates to ||| 0.125 0.229811 1.49697e-06 2.30239e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| reason to have done ||| 1 0.229811 1.49697e-06 4.46849e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| reason to have ||| 0.1 0.229811 1.49697e-06 9.79933e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| reason to require that ||| 1 0.229811 1.49697e-06 6.45038e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| reason to require ||| 0.142857 0.229811 1.49697e-06 3.83458e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| reason to ||| 0.00755034 0.229811 1.34727e-05 8.19355e-05 2.718 ||| 0-1 ||| 1192 668016 +a ||| reason we wanted to ||| 1 0.229811 1.49697e-06 5.08796e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| reasonable to do at ||| 1 0.229811 1.49697e-06 9.07034e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| reasonable to do ||| 1 0.229811 1.49697e-06 2.1661e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| reasonable to ||| 0.0129032 0.229811 2.99394e-06 6.30543e-06 2.718 ||| 0-1 ||| 155 668016 +a ||| reasons for getting involved ||| 0.5 0.0683377 1.49697e-06 1.49693e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| reasons for getting ||| 0.333333 0.0683377 1.49697e-06 4.3289e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| reasons for ||| 0.00283889 0.0683377 5.98788e-06 3.72538e-06 2.718 ||| 0-1 ||| 1409 668016 +a ||| reasons of correctness ||| 0.5 0.0188479 1.49697e-06 2.09327e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| reasons of ||| 0.00521739 0.0188479 4.49091e-06 2.99039e-06 2.718 ||| 0-1 ||| 575 668016 +a ||| reassurance on ||| 0.0833333 0.0782999 1.49697e-06 2.65549e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| reassure Mrs Torres ||| 1 0.284916 1.49697e-06 1.82997e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| reassure Mrs ||| 0.0555556 0.284916 1.49697e-06 2.61425e-08 2.718 ||| 0-0 ||| 18 668016 +a ||| reassure them ||| 0.0263158 0.284916 1.49697e-06 7.49194e-07 2.718 ||| 0-0 ||| 38 668016 +a ||| reassure ||| 0.0201613 0.284916 1.49697e-05 0.0002793 2.718 ||| 0-0 ||| 496 668016 +a ||| reassured because we never got a ||| 1 0.0052046 1.49697e-06 4.09805e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| reassured because we never got ||| 1 0.0052046 1.49697e-06 9.24529e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| reassured because we never ||| 1 0.0052046 1.49697e-06 8.45091e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| reassured because we ||| 1 0.0052046 1.49697e-06 1.46717e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| reassured because ||| 0.5 0.0052046 1.49697e-06 1.2924e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| reassured by the ||| 0.05 0.0337966 1.49697e-06 2.0204e-09 2.718 ||| 0-1 ||| 20 668016 +a ||| reassured by ||| 0.0357143 0.0337966 1.49697e-06 3.291e-08 2.718 ||| 0-1 ||| 28 668016 +a ||| rebate of ||| 0.166667 0.0188479 1.49697e-06 4.14099e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| rebellion to ||| 1 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| receive their reward ||| 1 0.181122 1.49697e-06 7.54101e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| receive to ||| 0.333333 0.229811 1.49697e-06 3.51703e-05 2.718 ||| 0-1 ||| 3 668016 +a ||| receive ||| 0.00165446 0.0020519 1.04788e-05 1e-05 2.718 ||| 0-0 ||| 4231 668016 +a ||| received aid to ||| 1 0.229811 1.49697e-06 4.09915e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| received an extension to his ||| 0.5 0.229811 1.49697e-06 7.08474e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| received an extension to ||| 0.5 0.229811 1.49697e-06 2.35765e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| received from ||| 0.00390625 0.0435582 1.49697e-06 6.45012e-07 2.718 ||| 0-1 ||| 256 668016 +a ||| recent attacks in ||| 0.0909091 0.0587624 1.49697e-06 3.79601e-11 2.718 ||| 0-2 ||| 11 668016 +a ||| recent flight ban of ||| 0.5 0.0188479 1.49697e-06 4.3722e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| recent months and years was ||| 0.333333 0.0015873 1.49697e-06 2.01514e-18 2.718 ||| 0-2 ||| 3 668016 +a ||| recent months and years ||| 0.0434783 0.0015873 1.49697e-06 6.43199e-16 2.718 ||| 0-2 ||| 23 668016 +a ||| recent months and ||| 0.0136986 0.0015873 1.49697e-06 3.77908e-12 2.718 ||| 0-2 ||| 73 668016 +a ||| recent recurrence of ||| 1 0.0188479 1.49697e-06 2.58753e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| recently . in ||| 1 0.0587624 1.49697e-06 1.23753e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| recently as 1992 that they were incompatible ||| 1 0.0243476 1.49697e-06 8.50757e-25 2.718 ||| 0-1 ||| 1 668016 +a ||| recently as 1992 that they were ||| 1 0.0243476 1.49697e-06 1.70151e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| recently as 1992 that they ||| 1 0.0243476 1.49697e-06 9.49823e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| recently as 1992 that ||| 1 0.0243476 1.49697e-06 2.91e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| recently as 1992 ||| 1 0.0243476 1.49697e-06 1.72992e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| recently as ||| 0.0229885 0.0243476 2.99394e-06 5.96523e-07 2.718 ||| 0-1 ||| 87 668016 +a ||| recently introduced for ||| 1 0.0683377 1.49697e-06 2.31777e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| recently on ||| 0.0243902 0.0782999 1.49697e-06 2.57962e-06 2.718 ||| 0-1 ||| 41 668016 +a ||| receptive to those who say : but ||| 1 0.229811 1.49697e-06 3.44526e-23 2.718 ||| 0-1 ||| 1 668016 +a ||| receptive to those who say : ||| 1 0.229811 1.49697e-06 5.04134e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| receptive to those who say ||| 1 0.229811 1.49697e-06 1.49684e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| receptive to those who ||| 1 0.229811 1.49697e-06 1.56606e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| receptive to those ||| 1 0.229811 1.49697e-06 1.77557e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| receptive to ||| 0.0111111 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 90 668016 +a ||| recipient in ||| 0.166667 0.0587624 1.49697e-06 2.58355e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| recognise the role of ||| 0.166667 0.0188479 1.49697e-06 7.82062e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| recognised just as much on ||| 1 0.0782999 1.49697e-06 1.18144e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| recognising and ||| 0.0416667 0.0015873 1.49697e-06 9.6475e-09 2.718 ||| 0-1 ||| 24 668016 +a ||| recognition of ||| 0.000574713 0.0188479 1.49697e-06 8.31156e-07 2.718 ||| 0-1 ||| 1740 668016 +a ||| recognition to ||| 0.0714286 0.229811 4.49091e-06 9.84347e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| recognize them in ||| 1 0.0587624 1.49697e-06 1.16039e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| recommend ||| 0.00105374 0.0038911 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 949 668016 +a ||| recommendations for certain ||| 0.25 0.0683377 1.49697e-06 1.01868e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| recommendations for ||| 0.00438596 0.0683377 1.49697e-06 3.5743e-07 2.718 ||| 0-1 ||| 228 668016 +a ||| recommendations of ||| 0.00390625 0.0188479 1.49697e-06 2.86911e-07 2.718 ||| 0-1 ||| 256 668016 +a ||| recommended for ||| 0.05 0.0683377 1.49697e-06 1.98982e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| record in ||| 0.0289855 0.0587624 2.99394e-06 3.3526e-06 2.718 ||| 0-1 ||| 69 668016 +a ||| record of reasonably ||| 0.5 0.0188479 1.49697e-06 7.75726e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| record of ||| 0.00462963 0.0188479 1.49697e-06 1.65048e-06 2.718 ||| 0-1 ||| 216 668016 +a ||| record on ||| 0.0227273 0.0782999 1.49697e-06 2.11681e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| record to record ||| 0.166667 0.229811 1.49697e-06 1.09071e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| record to ||| 0.05 0.229811 1.49697e-06 1.95468e-05 2.718 ||| 0-1 ||| 20 668016 +a ||| recorded in ||| 0.0104712 0.0587624 2.99394e-06 1.25572e-06 2.718 ||| 0-1 ||| 191 668016 +a ||| recourse against ||| 0.142857 0.05146 1.49697e-06 3.17139e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| recourse to ||| 0.00872093 0.229811 4.49091e-06 4.27368e-06 2.718 ||| 0-1 ||| 344 668016 +a ||| recruited ||| 0.0275229 0.108108 4.49091e-06 1.83e-05 2.718 ||| 0-0 ||| 109 668016 +a ||| recurrence of ||| 0.0204082 0.0188479 1.49697e-06 5.32413e-08 2.718 ||| 0-1 ||| 49 668016 +a ||| reduce consumption by even a single cigarette ||| 1 0.0337966 1.49697e-06 4.90024e-26 2.718 ||| 0-2 ||| 1 668016 +a ||| reduce consumption by even a single ||| 1 0.0337966 1.49697e-06 2.22738e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| reduce consumption by even a ||| 1 0.0337966 1.49697e-06 1.40352e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| reduce consumption by even ||| 1 0.0337966 1.49697e-06 3.16637e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| reduce consumption by ||| 0.25 0.0337966 1.49697e-06 5.20356e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| reduce incentives for ||| 0.25 0.0683377 1.49697e-06 9.12553e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| reduced by ||| 0.00555556 0.0337966 1.49697e-06 3.85047e-07 2.718 ||| 0-1 ||| 180 668016 +a ||| reduced to playing ||| 0.5 0.229811 1.49697e-06 1.08037e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| reduced to ||| 0.0057971 0.229811 2.99394e-06 1.63941e-05 2.718 ||| 0-1 ||| 345 668016 +a ||| reduction in the ||| 0.00132275 0.0587624 1.49697e-06 1.51231e-07 2.718 ||| 0-1 ||| 756 668016 +a ||| reduction in ||| 0.00136426 0.0587624 4.49091e-06 2.46338e-06 2.718 ||| 0-1 ||| 2199 668016 +a ||| reductions being recorded in ||| 0.166667 0.0587624 1.49697e-06 1.78677e-14 2.718 ||| 0-3 ||| 6 668016 +a ||| redundancies as ||| 0.0833333 0.0243476 1.49697e-06 1.22814e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| redundant , ||| 0.0357143 0.0502646 1.49697e-06 4.13814e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| redundant at ||| 1 0.204175 1.49697e-06 2.6888e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| redundant ||| 0.0252809 0.0502646 1.34727e-05 3.47e-05 2.718 ||| 0-0 ||| 356 668016 +a ||| refer , to the ||| 1 0.229811 1.49697e-06 2.00299e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| refer , to ||| 1 0.229811 1.49697e-06 3.26264e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| refer the matter to ||| 0.0333333 0.229811 1.49697e-06 1.74258e-09 2.718 ||| 0-3 ||| 30 668016 +a ||| refer to them ||| 0.0555556 0.229811 1.49697e-06 7.33866e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| refer to ||| 0.0113025 0.229811 3.14364e-05 2.73586e-05 2.718 ||| 0-1 ||| 1858 668016 +a ||| refer you to ||| 0.02 0.229811 1.49697e-06 8.83326e-08 2.718 ||| 0-2 ||| 50 668016 +a ||| reference is made to ||| 0.0153846 0.229811 1.49697e-06 1.96177e-09 2.718 ||| 0-3 ||| 65 668016 +a ||| reference to our friend on ||| 1 0.0782999 1.49697e-06 4.56123e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| reference to taxation ||| 1 0.229811 1.49697e-06 2.56974e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| reference to these ||| 0.0625 0.229811 1.49697e-06 3.09893e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| reference to ||| 0.00818666 0.229811 2.99394e-05 2.98807e-05 2.718 ||| 0-1 ||| 2443 668016 +a ||| reference value at ||| 1 0.204175 1.49697e-06 2.54903e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| references to ||| 0.0043573 0.229811 2.99394e-06 1.89163e-06 2.718 ||| 0-1 ||| 459 668016 +a ||| referendum takes place at ||| 1 0.204175 1.49697e-06 7.14749e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| referred back to those at ||| 1 0.204175 1.49697e-06 1.4096e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| referred back to ||| 0.011236 0.229811 2.99394e-06 2.25482e-08 2.718 ||| 0-2 ||| 178 668016 +a ||| referred to two key words ||| 0.333333 0.229811 1.49697e-06 1.3021e-16 2.718 ||| 0-1 ||| 3 668016 +a ||| referred to two key ||| 0.5 0.229811 1.49697e-06 5.7615e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| referred to two ||| 0.142857 0.229811 1.49697e-06 7.92504e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| referred to ||| 0.00787402 0.229811 3.14364e-05 3.35239e-05 2.718 ||| 0-1 ||| 2667 668016 +a ||| referring back to ||| 0.0384615 0.229811 1.49697e-06 1.01785e-08 2.718 ||| 0-2 ||| 26 668016 +a ||| referring to milk ||| 0.166667 0.229811 1.49697e-06 1.57384e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| referring to ||| 0.0199601 0.229811 2.99394e-05 1.5133e-05 2.718 ||| 0-1 ||| 1002 668016 +a ||| refers to defence ||| 0.333333 0.229811 1.49697e-06 1.71255e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| refers to ||| 0.00729262 0.229811 1.19758e-05 6.79585e-06 2.718 ||| 0-1 ||| 1097 668016 +a ||| reflect on ||| 0.00215517 0.0782999 1.49697e-06 1.2974e-06 2.718 ||| 0-1 ||| 464 668016 +a ||| reflect once again on the fact ||| 0.5 0.0782999 1.49697e-06 5.52123e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| reflect once again on the ||| 0.5 0.0782999 1.49697e-06 1.88483e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| reflect once again on ||| 0.333333 0.0782999 1.49697e-06 3.07017e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| reflect ||| 0.000374672 0.0003532 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2669 668016 +a ||| reflected across ||| 0.5 0.0490758 1.49697e-06 9.9384e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| reflected by the serious situation of their ||| 1 0.0188479 1.49697e-06 1.3243e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| reflected by the serious situation of ||| 1 0.0188479 1.49697e-06 1.14252e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| reflected in ||| 0.0019685 0.0587624 2.99394e-06 1.21367e-06 2.718 ||| 0-1 ||| 1016 668016 +a ||| reflection of ||| 0.00649351 0.0188479 1.49697e-06 4.05225e-07 2.718 ||| 0-1 ||| 154 668016 +a ||| reflection on ||| 0.00574713 0.0782999 1.49697e-06 5.19718e-07 2.718 ||| 0-1 ||| 174 668016 +a ||| reflects badly on ||| 0.142857 0.0782999 1.49697e-06 6.66453e-12 2.718 ||| 0-2 ||| 7 668016 +a ||| reflects ||| 0.000549149 0.0017857 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 1821 668016 +a ||| reform is to ||| 0.0714286 0.229811 1.49697e-06 4.50132e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| reform of ||| 0.000358166 0.0188479 1.49697e-06 1.21272e-06 2.718 ||| 0-1 ||| 2792 668016 +a ||| reform-oriented - was formed , ||| 0.333333 0.285714 1.49697e-06 4.92145e-17 2.718 ||| 0-0 ||| 3 668016 +a ||| reform-oriented - was formed ||| 0.333333 0.285714 1.49697e-06 4.12684e-16 2.718 ||| 0-0 ||| 3 668016 +a ||| reform-oriented - was ||| 0.333333 0.285714 1.49697e-06 2.12724e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| reform-oriented - ||| 0.333333 0.285714 1.49697e-06 6.78978e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| reform-oriented ||| 0.142857 0.285714 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| reformed on ||| 0.5 0.0782999 1.49697e-06 1.78297e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| refrain from misleading ||| 1 0.0435582 1.49697e-06 2.0639e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| refrain from transparent ||| 1 0.0435582 1.49697e-06 4.12779e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| refrain from ||| 0.00519481 0.0435582 2.99394e-06 4.39127e-08 2.718 ||| 0-1 ||| 385 668016 +a ||| refuge in ||| 0.0128205 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-1 ||| 78 668016 +a ||| refusal to ||| 0.00828729 0.229811 4.49091e-06 2.03175e-06 2.718 ||| 0-1 ||| 362 668016 +a ||| refuse to ||| 0.00417827 0.229811 4.49091e-06 3.64314e-06 2.718 ||| 0-1 ||| 718 668016 +a ||| refused , especially in ||| 1 0.0587624 1.49697e-06 6.84677e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| refused to give ||| 0.03125 0.229811 1.49697e-06 2.52616e-09 2.718 ||| 0-1 ||| 32 668016 +a ||| refused to ||| 0.0151844 0.229811 1.04788e-05 4.16859e-06 2.718 ||| 0-1 ||| 461 668016 +a ||| refused ||| 0.002693 0.0176039 4.49091e-06 3.29e-05 2.718 ||| 0-0 ||| 1114 668016 +a ||| refuses to ||| 0.00308642 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-1 ||| 324 668016 +a ||| refusing to sign up to ||| 0.5 0.229811 1.49697e-06 3.21408e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| refusing to try to identify ||| 0.125 0.229811 1.49697e-06 4.80988e-16 2.718 ||| 0-3 ||| 8 668016 +a ||| refusing to try to ||| 0.125 0.229811 1.49697e-06 2.78028e-11 2.718 ||| 0-3 ||| 8 668016 +a ||| refusing to ||| 0.00385356 0.229811 2.99394e-06 2.03175e-06 2.718 ||| 0-1 ||| 519 668016 +a ||| regard all ||| 0.166667 0.0038996 1.49697e-06 3.76606e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| regard to his political ||| 0.2 0.229811 1.49697e-06 1.27941e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| regard to his ||| 0.0526316 0.229811 1.49697e-06 7.16754e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| regard to participation in ||| 0.5 0.0587624 1.49697e-06 8.76084e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| regard to the role that the ||| 1 0.229811 1.49697e-06 3.35712e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| regard to the role that ||| 0.25 0.229811 1.49697e-06 5.46835e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| regard to the role ||| 0.0526316 0.229811 1.49697e-06 3.25079e-09 2.718 ||| 0-1 ||| 19 668016 +a ||| regard to the situation ||| 0.0217391 0.229811 1.49697e-06 7.54125e-09 2.718 ||| 0-1 ||| 46 668016 +a ||| regard to the ||| 0.000529007 0.229811 4.49091e-06 1.46432e-05 2.718 ||| 0-1 ||| 5671 668016 +a ||| regard to ||| 0.00983007 0.229811 0.000193109 0.00023852 2.718 ||| 0-1 ||| 13123 668016 +a ||| regarded as ||| 0.00114155 0.0243476 1.49697e-06 4.92132e-07 2.718 ||| 0-1 ||| 876 668016 +a ||| regarding a ||| 0.00561798 0.186429 1.49697e-06 0.00014917 2.718 ||| 0-0 ||| 178 668016 +a ||| regarding providing ||| 0.5 0.186429 1.49697e-06 3.08935e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| regarding the inclusion of ||| 0.0909091 0.186429 1.49697e-06 2.17895e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| regarding the inclusion ||| 0.0769231 0.186429 1.49697e-06 4.00808e-09 2.718 ||| 0-0 ||| 13 668016 +a ||| regarding the ||| 0.000361925 0.186429 2.99394e-06 0.000206602 2.718 ||| 0-0 ||| 5526 668016 +a ||| regarding ||| 0.00854701 0.186429 0.000160176 0.0033653 2.718 ||| 0-0 ||| 12519 668016 +a ||| regardless of their concerns ||| 0.5 0.127284 1.49697e-06 2.14008e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| regardless of ||| 0.000674764 0.0236147 1.49697e-06 1.72738e-06 2.718 ||| 0-0 0-1 ||| 1482 668016 +a ||| regardless ||| 0.00116212 0.0283814 2.99394e-06 5.84e-05 2.718 ||| 0-0 ||| 1721 668016 +a ||| regards access to ||| 0.0212766 0.229811 1.49697e-06 4.21763e-09 2.718 ||| 0-2 ||| 47 668016 +a ||| regards both what they create ||| 1 0.263434 1.49697e-06 3.83373e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| regards both what they ||| 1 0.263434 1.49697e-06 3.40473e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| regards both what ||| 1 0.263434 1.49697e-06 1.04312e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| regards both ||| 0.0169492 0.263434 1.49697e-06 7.43437e-06 2.718 ||| 0-0 ||| 59 668016 +a ||| regards classification ||| 1 0.263434 1.49697e-06 2.9172e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| regards existing ||| 0.2 0.263434 1.49697e-06 3.53654e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| regards expenditure relating to passenger cars , ||| 1 0.229811 1.49697e-06 1.96847e-24 2.718 ||| 0-3 ||| 1 668016 +a ||| regards expenditure relating to passenger cars ||| 1 0.229811 1.49697e-06 1.65064e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| regards expenditure relating to passenger ||| 1 0.229811 1.49697e-06 9.7671e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| regards expenditure relating to ||| 1 0.229811 1.49697e-06 1.68398e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| regards to Rules ||| 0.5 0.229811 1.49697e-06 3.47709e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| regards to ||| 0.0625 0.229811 4.49091e-06 4.90422e-05 2.718 ||| 0-1 ||| 48 668016 +a ||| regards ||| 0.00958023 0.263434 0.00011377 0.004488 2.718 ||| 0-0 ||| 7933 668016 +a ||| regime for ||| 0.027027 0.0683377 2.99394e-06 1.03544e-06 2.718 ||| 0-1 ||| 74 668016 +a ||| regime granted ||| 0.5 0.0210892 1.49697e-06 2.02601e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| regime to ||| 0.0188679 0.229811 1.49697e-06 9.84347e-06 2.718 ||| 0-1 ||| 53 668016 +a ||| region in ||| 0.00350877 0.0587624 1.49697e-06 5.88208e-06 2.718 ||| 0-1 ||| 285 668016 +a ||| region of 7 , ||| 0.5 0.0188479 1.49697e-06 3.10797e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| region of 7 ||| 0.5 0.0188479 1.49697e-06 2.60616e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| region of ||| 0.0035524 0.0188479 2.99394e-06 2.89574e-06 2.718 ||| 0-1 ||| 563 668016 +a ||| region to region , ||| 0.0769231 0.229811 1.49697e-06 4.0039e-10 2.718 ||| 0-1 ||| 13 668016 +a ||| region to region ||| 0.0357143 0.229811 1.49697e-06 3.35743e-09 2.718 ||| 0-1 ||| 28 668016 +a ||| region to ||| 0.00518135 0.229811 1.49697e-06 3.42945e-05 2.718 ||| 0-1 ||| 193 668016 +a ||| regions , to ||| 0.0454545 0.229811 1.49697e-06 3.44227e-06 2.718 ||| 0-2 ||| 22 668016 +a ||| regions affected ||| 0.0102041 0.0557198 1.49697e-06 2.83538e-08 2.718 ||| 0-1 ||| 98 668016 +a ||| regions helps to ||| 1 0.229811 1.49697e-06 2.48238e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| regions up to ||| 0.5 0.229811 1.49697e-06 9.84436e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| registering for ||| 0.666667 0.0683377 2.99394e-06 9.21213e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| regret at the ||| 0.0208333 0.204175 1.49697e-06 4.1372e-08 2.718 ||| 0-1 ||| 48 668016 +a ||| regret at ||| 0.0163934 0.204175 1.49697e-06 6.73901e-07 2.718 ||| 0-1 ||| 61 668016 +a ||| regular basis to ||| 0.166667 0.229811 1.49697e-06 3.66096e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| regular visits to ||| 0.166667 0.229811 1.49697e-06 3.08265e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| regulation concerns ||| 0.0833333 0.127284 1.49697e-06 1.64623e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| regulation to ||| 0.00294118 0.229811 1.49697e-06 2.44511e-05 2.718 ||| 0-1 ||| 340 668016 +a ||| regulation with ||| 0.0178571 0.0571592 1.49697e-06 1.16532e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| regulations at a ||| 0.25 0.204175 1.49697e-06 6.62296e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| regulations at ||| 0.0344828 0.204175 1.49697e-06 1.49415e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| regulations bring ||| 1 0.0161903 1.49697e-06 8.37612e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| regulations could fail to ||| 1 0.229811 1.49697e-06 5.90515e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| regulations to be ||| 0.0416667 0.229811 1.49697e-06 2.78698e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| regulations to ||| 0.0143885 0.229811 2.99394e-06 1.53782e-05 2.718 ||| 0-1 ||| 139 668016 +a ||| regulatory framework should continue to exist , ||| 0.25 0.229811 1.49697e-06 6.76576e-21 2.718 ||| 0-4 ||| 4 668016 +a ||| regulatory framework should continue to exist ||| 0.25 0.229811 1.49697e-06 5.67337e-20 2.718 ||| 0-4 ||| 4 668016 +a ||| regulatory framework should continue to ||| 0.25 0.229811 1.49697e-06 6.16001e-16 2.718 ||| 0-4 ||| 4 668016 +a ||| reign in ||| 0.133333 0.0587624 2.99394e-06 3.66503e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| reimbursement of ||| 0.00689655 0.0188479 1.49697e-06 5.32413e-08 2.718 ||| 0-1 ||| 145 668016 +a ||| rein to ||| 0.0625 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| reinstated ; ||| 0.25 0.0365854 1.49697e-06 1.694e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| reinstated ||| 0.0078125 0.0365854 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 128 668016 +a ||| reintroduction of ||| 0.00934579 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-1 ||| 107 668016 +a ||| rejected by ||| 0.002331 0.0337966 1.49697e-06 1.27526e-07 2.718 ||| 0-1 ||| 429 668016 +a ||| rejecting the report ||| 0.25 0.0036145 1.49697e-06 6.79441e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| rejecting the ||| 0.0030581 0.0036145 1.49697e-06 1.65758e-07 2.718 ||| 0-0 ||| 327 668016 +a ||| rejecting ||| 0.00223214 0.0036145 2.99394e-06 2.7e-06 2.718 ||| 0-0 ||| 896 668016 +a ||| rejection of ||| 0.00147059 0.0188479 1.49697e-06 2.54375e-07 2.718 ||| 0-1 ||| 680 668016 +a ||| rejoining the ||| 0.166667 0.131812 1.49697e-06 7.0495e-09 2.718 ||| 0-0 0-1 ||| 6 668016 +a ||| relate a number of ||| 1 0.0188479 1.49697e-06 1.60884e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| relate in ||| 0.0833333 0.0587624 1.49697e-06 1.49005e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| relate solely to ||| 0.0769231 0.229811 1.49697e-06 1.91125e-10 2.718 ||| 0-2 ||| 13 668016 +a ||| relate to ||| 0.00835946 0.229811 1.19758e-05 8.68748e-06 2.718 ||| 0-1 ||| 957 668016 +a ||| related in ||| 0.0714286 0.0587624 1.49697e-06 3.9354e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| related rights in ||| 0.0714286 0.0587624 1.49697e-06 7.87474e-10 2.718 ||| 0-2 ||| 14 668016 +a ||| related to the fact ||| 0.0238095 0.229811 1.49697e-06 4.12627e-09 2.718 ||| 0-1 ||| 42 668016 +a ||| related to the ||| 0.00120627 0.229811 1.49697e-06 1.40862e-06 2.718 ||| 0-1 ||| 829 668016 +a ||| related to ||| 0.00633198 0.229811 2.09576e-05 2.29448e-05 2.718 ||| 0-1 ||| 2211 668016 +a ||| relates only to ||| 0.0555556 0.229811 1.49697e-06 1.09568e-08 2.718 ||| 0-2 ||| 18 668016 +a ||| relates to its legal basis . ||| 1 0.229811 1.49697e-06 3.26901e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| relates to its legal basis ||| 1 0.229811 1.49697e-06 1.07924e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| relates to its legal ||| 1 0.229811 1.49697e-06 1.81751e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| relates to its ||| 0.5 0.229811 1.49697e-06 1.4024e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| relates to the ||| 0.00108225 0.229811 1.49697e-06 6.04309e-07 2.718 ||| 0-1 ||| 924 668016 +a ||| relates to ||| 0.00524659 0.229811 1.49697e-05 9.84347e-06 2.718 ||| 0-1 ||| 1906 668016 +a ||| relating it more closely to ||| 1 0.229811 1.49697e-06 1.43151e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| relating to passenger cars , generally speaking ||| 1 0.229811 1.49697e-06 2.21276e-24 2.718 ||| 0-1 ||| 1 668016 +a ||| relating to passenger cars , generally ||| 1 0.229811 1.49697e-06 1.92749e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| relating to passenger cars , ||| 0.5 0.229811 1.49697e-06 4.65578e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| relating to passenger cars ||| 0.5 0.229811 1.49697e-06 3.90407e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| relating to passenger ||| 0.5 0.229811 1.49697e-06 2.3101e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| relating to ||| 0.0030299 0.229811 3.44303e-05 3.98293e-05 2.718 ||| 0-1 ||| 7591 668016 +a ||| relation to Mr Swoboda 's report later ||| 1 0.229811 1.49697e-06 9.33768e-24 2.718 ||| 0-1 ||| 1 668016 +a ||| relation to Mr Swoboda 's report ||| 1 0.229811 1.49697e-06 1.08578e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| relation to Mr Swoboda 's ||| 1 0.229811 1.49697e-06 2.64888e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| relation to Mr Swoboda ||| 1 0.229811 1.49697e-06 1.39093e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| relation to Mr ||| 0.1 0.229811 1.49697e-06 5.56371e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| relation to the ||| 0.000332447 0.229811 1.49697e-06 5.23232e-06 2.718 ||| 0-1 ||| 3008 668016 +a ||| relation to these ||| 0.010101 0.229811 1.49697e-06 8.83904e-08 2.718 ||| 0-1 ||| 99 668016 +a ||| relation to ||| 0.00904428 0.229811 0.000100297 8.52284e-05 2.718 ||| 0-1 ||| 7408 668016 +a ||| relations with ||| 0.00229508 0.0571592 1.04788e-05 9.06544e-07 2.718 ||| 0-1 ||| 3050 668016 +a ||| relations within NATO , ||| 1 0.0123496 1.49697e-06 2.31907e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| relations within NATO ||| 1 0.0123496 1.49697e-06 1.94464e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| relations within ||| 0.0588235 0.0123496 1.49697e-06 2.70088e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| relationship between the two institutions must take ||| 1 0.0006394 1.49697e-06 1.60884e-24 2.718 ||| 0-1 ||| 1 668016 +a ||| relationship between the two institutions must ||| 1 0.0006394 1.49697e-06 9.99279e-22 2.718 ||| 0-1 ||| 1 668016 +a ||| relationship between the two institutions ||| 1 0.0006394 1.49697e-06 6.46531e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| relationship between the two ||| 0.0526316 0.0006394 1.49697e-06 1.23149e-14 2.718 ||| 0-1 ||| 19 668016 +a ||| relationship between the ||| 0.00209205 0.0006394 1.49697e-06 5.20934e-11 2.718 ||| 0-1 ||| 478 668016 +a ||| relationship between ||| 0.000896861 0.0006394 1.49697e-06 8.4854e-10 2.718 ||| 0-1 ||| 1115 668016 +a ||| relationship that will have to ||| 1 0.229811 1.49697e-06 1.62178e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| relationship ultimately putting ||| 1 0.049485 1.49697e-06 3.29961e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| relative promptness in ||| 1 0.0587624 1.49697e-06 2.16297e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| relatives in ||| 0.05 0.0587624 1.49697e-06 2.4033e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| release of ||| 0.00155039 0.0188479 1.49697e-06 6.71432e-07 2.718 ||| 0-1 ||| 645 668016 +a ||| release onto ||| 1 0.207143 1.49697e-06 5.40714e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| release to ||| 0.25 0.229811 1.49697e-06 7.95185e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| release ||| 0.000901307 0.0014138 2.99394e-06 2.7e-06 2.718 ||| 0-0 ||| 2219 668016 +a ||| released for ||| 0.0357143 0.0683377 1.49697e-06 7.14861e-07 2.718 ||| 0-1 ||| 28 668016 +a ||| released on to ||| 0.25 0.0782999 1.49697e-06 6.53952e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| released on ||| 0.0434783 0.0782999 1.49697e-06 7.35951e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| released to ||| 0.125 0.229811 2.99394e-06 6.79585e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| released ||| 0.000979432 0.0051737 1.49697e-06 6.4e-06 2.718 ||| 0-0 ||| 1021 668016 +a ||| releasing ||| 0.00502513 0.0046296 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 199 668016 +a ||| relegate ||| 0.0333333 0.0833333 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 30 668016 +a ||| relegated to ||| 0.0166667 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 60 668016 +a ||| relentless quest for ||| 0.25 0.0683377 1.49697e-06 1.57343e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| relevance on ||| 0.333333 0.0782999 1.49697e-06 2.31407e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| relevant information for ||| 0.142857 0.0683377 1.49697e-06 6.56191e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| relevant to ||| 0.00833333 0.229811 5.98788e-06 3.76925e-05 2.718 ||| 0-1 ||| 480 668016 +a ||| reliably traced back to ||| 0.2 0.229811 1.49697e-06 1.31943e-15 2.718 ||| 0-3 ||| 5 668016 +a ||| reliance on ||| 0.0361446 0.0782999 4.49091e-06 1.36568e-07 2.718 ||| 0-1 ||| 83 668016 +a ||| relief to ||| 0.0212766 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-1 ||| 47 668016 +a ||| relieve ||| 0.00492611 0.0081967 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 203 668016 +a ||| relinquishing ||| 0.0217391 0.236364 1.49697e-06 1.19e-05 2.718 ||| 0-0 ||| 46 668016 +a ||| reluctant to carry out its ||| 0.5 0.229811 1.49697e-06 1.12252e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| reluctant to carry out ||| 0.5 0.229811 1.49697e-06 7.87902e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| reluctant to carry ||| 0.5 0.229811 1.49697e-06 2.05697e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| reluctant to conclude ||| 1 0.229811 1.49697e-06 2.70153e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| reluctant to ||| 0.0103093 0.229811 2.99394e-06 1.12097e-06 2.718 ||| 0-1 ||| 194 668016 +a ||| reluctantly , in ||| 1 0.0587624 1.49697e-06 5.01558e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| reluctantly ||| 0.00952381 0.206751 1.49697e-06 4.47e-05 2.718 ||| 0-0 ||| 105 668016 +a ||| rely on us ||| 0.0526316 0.0782999 1.49697e-06 2.16489e-09 2.718 ||| 0-1 ||| 19 668016 +a ||| rely on ||| 0.00357569 0.0782999 4.49091e-06 7.51125e-07 2.718 ||| 0-1 ||| 839 668016 +a ||| relying on old ||| 1 0.0782999 1.49697e-06 1.57736e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| relying on ||| 0.00561798 0.0782999 1.49697e-06 2.04852e-07 2.718 ||| 0-1 ||| 178 668016 +a ||| remain deprived ||| 0.333333 0.0533769 1.49697e-06 5.42211e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| remain free to ||| 0.0909091 0.229811 1.49697e-06 4.95452e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| remain in abeyance and have not yet ||| 1 0.0587624 1.49697e-06 1.08452e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| remain in abeyance and have not ||| 1 0.0587624 1.49697e-06 4.10025e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| remain in abeyance and have ||| 1 0.0587624 1.49697e-06 1.20098e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| remain in abeyance and ||| 1 0.0587624 1.49697e-06 1.00418e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| remain in abeyance ||| 1 0.0587624 1.49697e-06 8.01681e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| remain in place ||| 0.0125 0.0587624 1.49697e-06 1.09685e-08 2.718 ||| 0-1 ||| 80 668016 +a ||| remain in ||| 0.00516351 0.0587624 4.49091e-06 7.28801e-06 2.718 ||| 0-1 ||| 581 668016 +a ||| remain indifferent to ||| 0.0196078 0.229811 1.49697e-06 1.06229e-10 2.718 ||| 0-2 ||| 51 668016 +a ||| remain on ||| 0.00740741 0.0782999 1.49697e-06 4.60159e-06 2.718 ||| 0-1 ||| 135 668016 +a ||| remain uppermost in our minds ||| 0.166667 0.0587624 1.49697e-06 3.3708e-19 2.718 ||| 0-2 ||| 6 668016 +a ||| remain uppermost in our ||| 0.166667 0.0587624 1.49697e-06 7.03715e-15 2.718 ||| 0-2 ||| 6 668016 +a ||| remain uppermost in ||| 0.166667 0.0587624 1.49697e-06 5.10161e-12 2.718 ||| 0-2 ||| 6 668016 +a ||| remained on ||| 0.111111 0.0782999 1.49697e-06 5.88002e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| remained opposed to ||| 1 0.147072 1.49697e-06 1.34819e-09 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| remains for ||| 0.012987 0.0683377 1.49697e-06 3.28689e-06 2.718 ||| 0-1 ||| 77 668016 +a ||| remains in question ||| 1 0.0587624 1.49697e-06 4.4338e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| remains in ||| 0.00649351 0.0587624 1.49697e-06 5.35936e-06 2.718 ||| 0-1 ||| 154 668016 +a ||| remains to be achieved ||| 1 0.229811 1.49697e-06 9.47394e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| remains to be ||| 0.0123457 0.229811 2.99394e-06 5.66284e-07 2.718 ||| 0-1 ||| 162 668016 +a ||| remains to ||| 0.0160643 0.229811 5.98788e-06 3.12469e-05 2.718 ||| 0-1 ||| 249 668016 +a ||| remains up to ||| 0.5 0.229811 1.49697e-06 1.06568e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| remarkable attacks on ||| 0.333333 0.0782999 1.49697e-06 3.55077e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| remarkable for ||| 0.125 0.0683377 1.49697e-06 2.65309e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| remarks on ||| 0.00636943 0.0782999 1.49697e-06 1.16083e-06 2.718 ||| 0-1 ||| 157 668016 +a ||| remember , by ||| 0.142857 0.0337966 1.49697e-06 3.66957e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| remember to ||| 0.047619 0.229811 1.49697e-06 1.31013e-05 2.718 ||| 0-1 ||| 21 668016 +a ||| remind users to ||| 0.333333 0.229811 1.49697e-06 1.12573e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| remind you ||| 0.000496278 0.0025101 1.49697e-06 3.84215e-08 2.718 ||| 0-0 ||| 2015 668016 +a ||| remind ||| 0.00394589 0.0025101 1.04788e-05 1.19e-05 2.718 ||| 0-0 ||| 1774 668016 +a ||| reminded of ||| 0.0204082 0.0188479 2.99394e-06 3.19448e-07 2.718 ||| 0-1 ||| 98 668016 +a ||| reminded once ||| 1 0.0717905 1.49697e-06 3.17539e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| reminded ||| 0.0123762 0.0717905 7.48485e-06 7.76e-05 2.718 ||| 0-0 ||| 404 668016 +a ||| reminder of ||| 0.0113636 0.0188479 1.49697e-06 1.06483e-07 2.718 ||| 0-1 ||| 88 668016 +a ||| reminding ||| 0.00609756 0.140039 1.49697e-06 6.48e-05 2.718 ||| 0-0 ||| 164 668016 +a ||| reminds me of ||| 0.0105263 0.0188479 1.49697e-06 4.4523e-11 2.718 ||| 0-2 ||| 95 668016 +a ||| reminds ||| 0.00568182 0.0654397 1.49697e-06 2.92e-05 2.718 ||| 0-0 ||| 176 668016 +a ||| reminiscent of ||| 0.0138889 0.0188479 1.49697e-06 7.39463e-08 2.718 ||| 0-1 ||| 72 668016 +a ||| reminiscent ||| 0.02 0.157025 1.49697e-06 3.47e-05 2.718 ||| 0-0 ||| 50 668016 +a ||| remote to ||| 0.166667 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| removed even ||| 1 0.0495435 1.49697e-06 8.8403e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| removed from ||| 0.013289 0.0435582 5.98788e-06 3.26106e-07 2.718 ||| 0-1 ||| 301 668016 +a ||| renders to ||| 0.333333 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| renounced to ||| 1 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| repaid , and ||| 1 0.0015873 1.49697e-06 3.22143e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| repair shop to have ||| 0.333333 0.229811 1.49697e-06 1.9607e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| repair shop to ||| 0.25 0.229811 1.49697e-06 1.63941e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| reparations which Germany owes Greece remain in ||| 1 0.0587624 1.49697e-06 1.86431e-29 2.718 ||| 0-6 ||| 1 668016 +a ||| repatriated to ||| 0.222222 0.15167 2.99394e-06 1.61139e-06 2.718 ||| 0-0 0-1 ||| 9 668016 +a ||| repeat occurrence of ||| 1 0.0188479 1.49697e-06 1.04353e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| repeat of ||| 0.00862069 0.0188479 1.49697e-06 7.45378e-07 2.718 ||| 0-1 ||| 116 668016 +a ||| repeat ||| 0.000532481 0.0005204 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 1878 668016 +a ||| repeated to ||| 0.166667 0.229811 1.49697e-06 6.93597e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| repeatedly pressed for ||| 0.5 0.0683377 1.49697e-06 3.31637e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| repeatedly slandered ||| 1 0.2 1.49697e-06 4.86e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| repeatedly voted in ||| 0.25 0.0587624 1.49697e-06 4.35838e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| repercussions of ||| 0.00934579 0.0188479 1.49697e-06 1.47893e-07 2.718 ||| 0-1 ||| 107 668016 +a ||| replace ||| 0.00217865 0.0073363 5.98788e-06 1.19e-05 2.718 ||| 0-0 ||| 1836 668016 +a ||| replaced by ||| 0.00322061 0.0337966 2.99394e-06 1.51386e-07 2.718 ||| 0-1 ||| 621 668016 +a ||| replacing ||| 0.00136986 0.0229555 1.49697e-06 1.46e-05 2.718 ||| 0-0 ||| 730 668016 +a ||| replicated in ||| 0.1 0.0587624 1.49697e-06 2.4033e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| reply to your question is this : ||| 1 0.229811 1.49697e-06 1.45674e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| reply to your question is this ||| 1 0.229811 1.49697e-06 4.32523e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| reply to your question is ||| 1 0.229811 1.49697e-06 6.69395e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| reply to your question ||| 0.047619 0.229811 1.49697e-06 2.13584e-12 2.718 ||| 0-1 ||| 21 668016 +a ||| reply to your ||| 0.0181818 0.229811 1.49697e-06 2.58169e-09 2.718 ||| 0-1 ||| 55 668016 +a ||| reply to ||| 0.0116279 0.229811 1.79636e-05 1.00887e-05 2.718 ||| 0-1 ||| 1032 668016 +a ||| report , to ||| 0.0104167 0.229811 1.49697e-06 1.71236e-05 2.718 ||| 0-2 ||| 96 668016 +a ||| report and ||| 0.000282725 0.0015873 1.49697e-06 7.90902e-07 2.718 ||| 0-1 ||| 3537 668016 +a ||| report at ||| 0.008 0.204175 1.49697e-06 1.39511e-05 2.718 ||| 0-1 ||| 125 668016 +a ||| report back to ||| 0.00671141 0.229811 1.49697e-06 9.65777e-08 2.718 ||| 0-2 ||| 149 668016 +a ||| report on cohesion drawn up ||| 1 0.0782999 1.49697e-06 1.16807e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| report on cohesion drawn ||| 1 0.0782999 1.49697e-06 3.42492e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| report on cohesion ||| 0.0238095 0.0782999 1.49697e-06 2.41022e-10 2.718 ||| 0-1 ||| 42 668016 +a ||| report on ||| 0.00109701 0.0782999 1.04788e-05 1.55498e-05 2.718 ||| 0-1 ||| 6381 668016 +a ||| report should in other respects ||| 1 0.0587624 1.49697e-06 2.85573e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| report should in other ||| 1 0.0587624 1.49697e-06 1.41373e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| report should in ||| 0.5 0.0587624 1.49697e-06 1.09126e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| report to ||| 0.00434028 0.229811 7.48485e-06 0.000143589 2.718 ||| 0-1 ||| 1152 668016 +a ||| reported in ||| 0.00952381 0.0587624 1.49697e-06 1.85655e-06 2.718 ||| 0-1 ||| 105 668016 +a ||| reported to be ||| 0.0769231 0.229811 1.49697e-06 1.96168e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| reported to ||| 0.028777 0.229811 5.98788e-06 1.08243e-05 2.718 ||| 0-1 ||| 139 668016 +a ||| reporting to ||| 0.0322581 0.229811 1.49697e-06 4.55392e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| reports seem to be designed to ||| 1 0.229811 1.49697e-06 2.00134e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| represent a line of ||| 1 0.0041537 1.49697e-06 1.29825e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| represent a line ||| 1 0.0041537 1.49697e-06 2.38806e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| represent a very ||| 0.333333 0.0041537 1.49697e-06 2.82244e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| represent a ||| 0.0025 0.0041537 2.99394e-06 8.11162e-07 2.718 ||| 0-0 ||| 800 668016 +a ||| represent the ||| 0.00164204 0.00230955 1.49697e-06 2.80448e-08 2.718 ||| 0-0 0-1 ||| 609 668016 +a ||| represent ||| 0.003 0.0041537 1.79636e-05 1.83e-05 2.718 ||| 0-0 ||| 4000 668016 +a ||| representation of ||| 0.00668896 0.0188479 2.99394e-06 3.51984e-07 2.718 ||| 0-1 ||| 299 668016 +a ||| representations to ||| 0.0169492 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-1 ||| 59 668016 +a ||| representative of the ||| 0.00118906 0.0188479 1.49697e-06 4.24915e-08 2.718 ||| 0-1 ||| 841 668016 +a ||| representative of ||| 0.00324324 0.0188479 4.49091e-06 6.92137e-07 2.718 ||| 0-1 ||| 925 668016 +a ||| representative present to hear ||| 0.5 0.229811 1.49697e-06 3.04512e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| representative present to ||| 0.5 0.229811 1.49697e-06 3.00012e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| representatives of ||| 0.00121507 0.0188479 4.49091e-06 9.58343e-07 2.718 ||| 0-1 ||| 2469 668016 +a ||| represented by ||| 0.00497512 0.0337966 4.49091e-06 2.90431e-07 2.718 ||| 0-1 ||| 603 668016 +a ||| representing a ||| 0.00961538 0.194985 1.49697e-06 1.54165e-05 2.718 ||| 0-0 ||| 104 668016 +a ||| representing the ||| 0.00209644 0.194985 1.49697e-06 2.13521e-05 2.718 ||| 0-0 ||| 477 668016 +a ||| representing ||| 0.0057398 0.194985 1.34727e-05 0.0003478 2.718 ||| 0-0 ||| 1568 668016 +a ||| represents a cause for ||| 0.5 0.0683377 1.49697e-06 1.09499e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| reprocessing at ||| 0.25 0.204175 1.49697e-06 3.74389e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| request for ||| 0.000857633 0.0683377 1.49697e-06 2.82628e-06 2.718 ||| 0-1 ||| 1166 668016 +a ||| request is that a meeting of ||| 1 0.0188479 1.49697e-06 6.65885e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| request needs to be made ||| 0.333333 0.229811 1.49697e-06 2.0227e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| request needs to be ||| 0.5 0.229811 1.49697e-06 9.65579e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| request needs to ||| 0.333333 0.229811 1.49697e-06 5.32795e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| request to a ||| 0.5 0.229811 1.49697e-06 1.19095e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| request to ||| 0.0113422 0.229811 8.98182e-06 2.68681e-05 2.718 ||| 0-1 ||| 529 668016 +a ||| request ||| 0.000140885 0.0001284 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 7098 668016 +a ||| requested by ||| 0.00262467 0.0337966 1.49697e-06 1.48095e-07 2.718 ||| 0-1 ||| 381 668016 +a ||| requested from ||| 0.0277778 0.0435582 1.49697e-06 1.29578e-07 2.718 ||| 0-1 ||| 36 668016 +a ||| require greater involvement of ||| 1 0.0188479 1.49697e-06 5.45103e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| require ourselves to ||| 1 0.229811 1.49697e-06 5.21497e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| require ||| 0.000495172 0.0006471 2.99394e-06 2.7e-06 2.718 ||| 0-0 ||| 4039 668016 +a ||| required by ||| 0.00234192 0.0337966 1.49697e-06 1.3057e-06 2.718 ||| 0-1 ||| 427 668016 +a ||| required for each ||| 0.25 0.0683377 1.49697e-06 1.64149e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| required for ||| 0.00338983 0.0683377 2.99394e-06 5.84786e-06 2.718 ||| 0-1 ||| 590 668016 +a ||| required from ||| 0.0238095 0.0435582 1.49697e-06 1.14245e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| required in ||| 0.0125523 0.0587624 4.49091e-06 9.53509e-06 2.718 ||| 0-1 ||| 239 668016 +a ||| required to be ||| 0.0277778 0.229811 1.49697e-06 1.0075e-06 2.718 ||| 0-1 ||| 36 668016 +a ||| required to follow ||| 0.25 0.229811 1.49697e-06 5.50369e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| required to get ||| 0.111111 0.229811 1.49697e-06 2.43052e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| required to have been ||| 1 0.229811 1.49697e-06 2.22017e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| required to have ||| 0.0588235 0.229811 1.49697e-06 6.6488e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| required to meet ||| 0.0333333 0.229811 1.49697e-06 6.76009e-09 2.718 ||| 0-1 ||| 30 668016 +a ||| required to provide information ||| 0.0714286 0.229811 1.49697e-06 2.72154e-12 2.718 ||| 0-1 ||| 14 668016 +a ||| required to provide ||| 0.0294118 0.229811 1.49697e-06 1.64444e-08 2.718 ||| 0-1 ||| 34 668016 +a ||| required to satisfy demand ||| 1 0.116324 1.49697e-06 8.2086e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| required to satisfy ||| 1 0.116324 1.49697e-06 1.53146e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| required to wear ||| 0.2 0.229811 1.49697e-06 2.22371e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| required to ||| 0.0168135 0.229811 3.14364e-05 5.55929e-05 2.718 ||| 0-1 ||| 1249 668016 +a ||| requirement for ||| 0.00382409 0.0683377 2.99394e-06 1.55132e-06 2.718 ||| 0-1 ||| 523 668016 +a ||| requirement of ||| 0.00546448 0.0188479 1.49697e-06 1.24525e-06 2.718 ||| 0-1 ||| 183 668016 +a ||| requirements are not being expected of ||| 1 0.0188479 1.49697e-06 1.12949e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| requirements for ||| 0.0039604 0.0683377 2.99394e-06 1.79084e-06 2.718 ||| 0-1 ||| 505 668016 +a ||| requirements in my explanatory statement , and ||| 1 0.0587624 1.49697e-06 1.50465e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| requirements in my explanatory statement , ||| 1 0.0587624 1.49697e-06 1.20123e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| requirements in my explanatory statement ||| 1 0.0587624 1.49697e-06 1.00728e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| requirements in my explanatory ||| 1 0.0587624 1.49697e-06 1.35206e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| requirements in my ||| 1 0.0587624 1.49697e-06 1.87786e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| requirements in ||| 0.00847458 0.0587624 1.49697e-06 2.92001e-06 2.718 ||| 0-1 ||| 118 668016 +a ||| requirements of ||| 0.0028169 0.0188479 2.99394e-06 1.43752e-06 2.718 ||| 0-1 ||| 710 668016 +a ||| requires of ||| 0.0434783 0.0188479 1.49697e-06 7.86788e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| requiring ||| 0.00187617 0.0084098 2.99394e-06 1e-05 2.718 ||| 0-0 ||| 1066 668016 +a ||| rescuing ||| 0.0133333 0.318966 1.49697e-06 3.38e-05 2.718 ||| 0-0 ||| 75 668016 +a ||| research - into ||| 0.333333 0.107578 1.49697e-06 1.24417e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| research in ||| 0.00211416 0.0587624 1.49697e-06 3.26248e-06 2.718 ||| 0-1 ||| 473 668016 +a ||| research into ||| 0.00104822 0.107578 1.49697e-06 3.29834e-07 2.718 ||| 0-1 ||| 954 668016 +a ||| resemblance to ||| 0.0909091 0.229811 2.99394e-06 2.45211e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| resemble ||| 0.0869565 0.272727 5.98788e-06 3.56e-05 2.718 ||| 0-0 ||| 46 668016 +a ||| resembles ||| 0.0208333 0.206897 1.49697e-06 2.74e-05 2.718 ||| 0-0 ||| 48 668016 +a ||| resembling ||| 0.0238095 0.348485 1.49697e-06 2.1e-05 2.718 ||| 0-0 ||| 42 668016 +a ||| reservations and will vote against the report ||| 1 0.05146 1.49697e-06 7.24779e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| reservations and will vote against the ||| 1 0.05146 1.49697e-06 1.76818e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| reservations and will vote against ||| 1 0.05146 1.49697e-06 2.88016e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| reserved for ||| 0.0213904 0.0683377 5.98788e-06 2.39515e-07 2.718 ||| 0-1 ||| 187 668016 +a ||| reserved ||| 0.0023753 0.005618 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 421 668016 +a ||| reserves at a ||| 1 0.204175 1.49697e-06 1.14657e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| reserves at ||| 0.166667 0.204175 1.49697e-06 2.58669e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| reside in ||| 0.0181818 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 55 668016 +a ||| resist reference ||| 1 0.282971 1.49697e-06 1.7205e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| resist ||| 0.0123203 0.282971 8.98182e-06 0.0002017 2.718 ||| 0-0 ||| 487 668016 +a ||| resistant to ||| 0.0133333 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 75 668016 +a ||| resisted ||| 0.0148148 0.223214 2.99394e-06 6.85e-05 2.718 ||| 0-0 ||| 135 668016 +a ||| resisting ||| 0.00657895 0.277566 1.49697e-06 6.66e-05 2.718 ||| 0-0 ||| 152 668016 +a ||| resolutely in ||| 0.0588235 0.0587624 1.49697e-06 1.92264e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| resolution concerning the ||| 0.0232558 0.22348 1.49697e-06 2.19455e-08 2.718 ||| 0-1 ||| 43 668016 +a ||| resolution concerning ||| 0.0144928 0.22348 1.49697e-06 3.57466e-07 2.718 ||| 0-1 ||| 69 668016 +a ||| resolution of ||| 0.00138313 0.0188479 1.49697e-06 2.58516e-06 2.718 ||| 0-1 ||| 723 668016 +a ||| resolution on ||| 0.00042517 0.0782999 1.49697e-06 3.31557e-06 2.718 ||| 0-1 ||| 2352 668016 +a ||| resolution to ||| 0.00271003 0.229811 1.49697e-06 3.06164e-05 2.718 ||| 0-1 ||| 369 668016 +a ||| resolve itself in ||| 0.5 0.0587624 1.49697e-06 1.05615e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| resolved at ||| 0.0192308 0.204175 1.49697e-06 8.81517e-07 2.718 ||| 0-1 ||| 52 668016 +a ||| resolved to ||| 0.0121951 0.229811 1.49697e-06 9.07281e-06 2.718 ||| 0-1 ||| 82 668016 +a ||| resolved without the involvement and cooperation of ||| 1 0.0188479 1.49697e-06 3.58524e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| resort to ||| 0.00824176 0.229811 4.49091e-06 5.42967e-06 2.718 ||| 0-1 ||| 364 668016 +a ||| resorting to ||| 0.00653595 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-1 ||| 153 668016 +a ||| resounding cry to ||| 0.333333 0.229811 1.49697e-06 3.76574e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| resources in ||| 0.00328947 0.0587624 1.49697e-06 4.30191e-06 2.718 ||| 0-1 ||| 304 668016 +a ||| resources out ||| 0.333333 0.0669777 1.49697e-06 2.93632e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| resources to ||| 0.00531915 0.229811 5.98788e-06 2.50816e-05 2.718 ||| 0-1 ||| 752 668016 +a ||| respect , in ||| 0.0434783 0.0587624 1.49697e-06 3.09963e-06 2.718 ||| 0-2 ||| 23 668016 +a ||| respect as ||| 0.0222222 0.0243476 1.49697e-06 3.79494e-06 2.718 ||| 0-1 ||| 45 668016 +a ||| respect for , ||| 0.0178571 0.0683377 1.49697e-06 1.901e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| respect for his ||| 0.0555556 0.0683377 1.49697e-06 4.79017e-09 2.718 ||| 0-1 ||| 18 668016 +a ||| respect for this ||| 0.0188679 0.0683377 1.49697e-06 1.02999e-07 2.718 ||| 0-1 ||| 53 668016 +a ||| respect for ||| 0.000953491 0.0683377 1.34727e-05 1.59407e-05 2.718 ||| 0-1 ||| 9439 668016 +a ||| respect from ||| 0.0322581 0.0435582 1.49697e-06 3.1142e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| respect of both ||| 0.166667 0.0205477 1.49697e-06 1.54136e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| respect of each of ||| 0.25 0.0188479 1.49697e-06 1.95261e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| respect of ||| 0.00255942 0.0188479 1.04788e-05 1.27957e-05 2.718 ||| 0-1 ||| 2735 668016 +a ||| respect to ||| 0.0102128 0.229811 1.79636e-05 0.00015154 2.718 ||| 0-1 ||| 1175 668016 +a ||| respect where he has shown ||| 0.25 0.0053255 1.49697e-06 4.98081e-17 2.718 ||| 0-1 ||| 4 668016 +a ||| respect where he has ||| 0.25 0.0053255 1.49697e-06 4.77089e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| respect where he ||| 0.25 0.0053255 1.49697e-06 9.26836e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| respect where ||| 0.142857 0.0053255 1.49697e-06 1.06203e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| respecting ||| 0.00220264 0.0028839 5.98788e-06 3.7e-06 2.718 ||| 0-0 ||| 1816 668016 +a ||| respectively , to ||| 0.333333 0.229811 1.49697e-06 5.72319e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| respectively allocated to ||| 0.5 0.229811 1.49697e-06 2.14041e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| respects to ||| 0.027027 0.229811 1.49697e-06 7.07609e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| respond closely to ||| 0.333333 0.229811 1.49697e-06 8.80448e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| respond to ||| 0.00246548 0.229811 7.48485e-06 9.94857e-06 2.718 ||| 0-1 ||| 2028 668016 +a ||| responded as well to ||| 1 0.229811 1.49697e-06 1.81373e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| responded to ||| 0.00343643 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-1 ||| 291 668016 +a ||| responding negatively to ||| 0.166667 0.229811 1.49697e-06 1.38719e-12 2.718 ||| 0-2 ||| 6 668016 +a ||| responding to ||| 0.00165563 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-1 ||| 604 668016 +a ||| responds to the ||| 0.00819672 0.229811 1.49697e-06 5.37641e-08 2.718 ||| 0-1 ||| 122 668016 +a ||| responds to ||| 0.0121951 0.229811 4.49091e-06 8.75754e-07 2.718 ||| 0-1 ||| 246 668016 +a ||| response in ||| 0.0108696 0.0587624 1.49697e-06 6.00825e-06 2.718 ||| 0-1 ||| 92 668016 +a ||| response to aggressive ||| 1 0.229811 1.49697e-06 8.75754e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| response to any infringements of ||| 1 0.0188479 1.49697e-06 1.86802e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| response to our request for ||| 1 0.0683377 1.49697e-06 3.4642e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| response to the ||| 0.000921659 0.229811 1.49697e-06 2.15056e-06 2.718 ||| 0-1 ||| 1085 668016 +a ||| response to what ||| 0.0222222 0.229811 1.49697e-06 4.91508e-08 2.718 ||| 0-1 ||| 45 668016 +a ||| response to ||| 0.0154309 0.229811 6.13758e-05 3.50302e-05 2.718 ||| 0-1 ||| 2657 668016 +a ||| responses to ||| 0.0240964 0.229811 5.98788e-06 2.66229e-06 2.718 ||| 0-1 ||| 166 668016 +a ||| responsibilities during the current revision of the ||| 1 0.0188479 1.49697e-06 5.06862e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| responsibilities during the current revision of ||| 1 0.0188479 1.49697e-06 8.25618e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| responsibilities in ||| 0.00357143 0.0587624 1.49697e-06 1.42996e-06 2.718 ||| 0-1 ||| 280 668016 +a ||| responsibility , to ||| 0.0526316 0.229811 1.49697e-06 4.82503e-06 2.718 ||| 0-2 ||| 19 668016 +a ||| responsibility and helps ||| 1 0.27467 1.49697e-06 5.77105e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| responsibility for ensuring ||| 0.0135135 0.0683377 1.49697e-06 4.94547e-10 2.718 ||| 0-1 ||| 74 668016 +a ||| responsibility for the ||| 0.00107411 0.0683377 1.49697e-06 2.61284e-07 2.718 ||| 0-1 ||| 931 668016 +a ||| responsibility for ||| 0.00162338 0.0683377 8.98182e-06 4.256e-06 2.718 ||| 0-1 ||| 3696 668016 +a ||| responsibility here to ||| 0.25 0.229811 1.49697e-06 8.20445e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| responsibility is for ||| 0.333333 0.0683377 1.49697e-06 1.33388e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| responsibility of ||| 0.00710136 0.0188479 1.64667e-05 3.41632e-06 2.718 ||| 0-1 ||| 1549 668016 +a ||| responsibility to ||| 0.00281426 0.229811 4.49091e-06 4.04598e-05 2.718 ||| 0-1 ||| 1066 668016 +a ||| responsible attitude on ||| 0.2 0.0782999 1.49697e-06 2.92877e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| responsible for because ||| 1 0.0683377 1.49697e-06 1.79083e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| responsible for fulfilling ||| 0.5 0.0683377 1.49697e-06 3.54243e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| responsible for it ||| 0.0185185 0.0683377 1.49697e-06 9.69165e-08 2.718 ||| 0-1 ||| 54 668016 +a ||| responsible for its implementation ||| 0.5 0.0683377 1.49697e-06 6.03299e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| responsible for its ||| 0.0227273 0.0683377 1.49697e-06 7.76446e-09 2.718 ||| 0-1 ||| 44 668016 +a ||| responsible for servicing ||| 1 0.0683377 1.49697e-06 3.81493e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| responsible for that damage ||| 0.333333 0.0683377 1.49697e-06 3.85956e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| responsible for that ||| 0.030303 0.0683377 1.49697e-06 9.16759e-08 2.718 ||| 0-1 ||| 33 668016 +a ||| responsible for the ||| 0.00138793 0.0683377 2.99394e-06 3.34579e-07 2.718 ||| 0-1 ||| 1441 668016 +a ||| responsible for ||| 0.00480451 0.0683377 4.34121e-05 5.44989e-06 2.718 ||| 0-1 ||| 6036 668016 +a ||| responsible proposals to ||| 1 0.229811 1.49697e-06 5.03589e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| rest of ||| 0.00500835 0.0188479 8.98182e-06 2.23613e-06 2.718 ||| 0-1 ||| 1198 668016 +a ||| rest on ||| 0.0117647 0.0782999 1.49697e-06 2.86793e-06 2.718 ||| 0-1 ||| 85 668016 +a ||| rest until they have thwarted ||| 0.333333 0.0268909 1.49697e-06 1.21701e-18 2.718 ||| 0-1 ||| 3 668016 +a ||| rest until they have ||| 0.25 0.0268909 1.49697e-06 6.76116e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| rest until they ||| 0.333333 0.0268909 1.49697e-06 5.65323e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| rest until ||| 0.0434783 0.0268909 1.49697e-06 1.732e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| restore to ||| 0.0625 0.229811 1.49697e-06 4.79913e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| restore trust in ||| 0.166667 0.0587624 1.49697e-06 1.57218e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| restored to ||| 0.016129 0.229811 1.49697e-06 6.06022e-06 2.718 ||| 0-1 ||| 62 668016 +a ||| restores dignity to ||| 0.5 0.229811 1.49697e-06 1.00887e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| restricted ' ||| 1 0.0006146 1.49697e-06 3.09141e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| restricted by ||| 0.0131579 0.0337966 1.49697e-06 1.29995e-07 2.718 ||| 0-1 ||| 76 668016 +a ||| restricted to ||| 0.0214286 0.229811 8.98182e-06 5.53477e-06 2.718 ||| 0-1 ||| 280 668016 +a ||| restricted ||| 0.000687285 0.0006146 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1455 668016 +a ||| restrictions as possible ||| 0.25 0.0243476 1.49697e-06 1.34394e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| restrictions as ||| 0.1 0.0243476 1.49697e-06 1.67553e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| restrictions on ||| 0.00115207 0.0782999 1.49697e-06 7.2457e-07 2.718 ||| 0-1 ||| 868 668016 +a ||| restrictions upon ||| 0.0666667 0.19056 1.49697e-06 3.76557e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| restricts ||| 0.0045045 0.0203252 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 222 668016 +a ||| resubmitted ||| 0.0322581 0.240506 1.49697e-06 1.73e-05 2.718 ||| 0-0 ||| 31 668016 +a ||| result as a ||| 0.2 0.0243476 1.49697e-06 2.04726e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| result as ||| 0.0526316 0.0243476 1.49697e-06 4.61867e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| result from ||| 0.00285714 0.0435582 1.49697e-06 3.79017e-06 2.718 ||| 0-1 ||| 350 668016 +a ||| result in a ||| 0.0037594 0.0587624 1.49697e-06 1.40218e-06 2.718 ||| 0-1 ||| 266 668016 +a ||| result in any real ||| 1 0.0587624 1.49697e-06 8.60571e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| result in any ||| 0.0625 0.0587624 1.49697e-06 4.78361e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| result in the ||| 0.00408163 0.0587624 1.49697e-06 1.94203e-06 2.718 ||| 0-1 ||| 245 668016 +a ||| result in us having to ||| 1 0.229811 1.49697e-06 4.35667e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| result in us ||| 0.0555556 0.0587624 1.49697e-06 9.11739e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| result in what ||| 1 0.0587624 1.49697e-06 4.43849e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| result in ||| 0.0107585 0.0587624 2.99394e-05 3.16334e-05 2.718 ||| 0-1 ||| 1859 668016 +a ||| result of having gone to ||| 1 0.229811 1.49697e-06 2.40332e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| result of our ||| 0.0125 0.0188479 1.49697e-06 2.14815e-08 2.718 ||| 0-1 ||| 80 668016 +a ||| result of the fact ||| 0.037037 0.0188479 1.49697e-06 2.80058e-09 2.718 ||| 0-1 ||| 27 668016 +a ||| result of the ||| 0.00105485 0.0188479 2.99394e-06 9.56059e-07 2.718 ||| 0-1 ||| 1896 668016 +a ||| result of using ||| 0.0909091 0.0188479 1.49697e-06 1.21003e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| result of which is ||| 0.166667 0.0188479 1.49697e-06 4.14602e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| result of which ||| 0.00636943 0.0188479 1.49697e-06 1.32287e-07 2.718 ||| 0-1 ||| 157 668016 +a ||| result of ||| 0.00807043 0.0188479 6.58667e-05 1.55731e-05 2.718 ||| 0-1 ||| 5452 668016 +a ||| result ||| 7.07714e-05 5.28e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 14130 668016 +a ||| resulted in obvious progress being made in ||| 1 0.0587624 1.49697e-06 1.07786e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| resulted in successive downturns ||| 0.333333 0.0587624 1.49697e-06 1.53811e-18 2.718 ||| 0-1 ||| 3 668016 +a ||| resulted in successive ||| 0.333333 0.0587624 1.49697e-06 3.84528e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| resulted in ||| 0.0084317 0.0587624 1.49697e-05 1.53811e-06 2.718 ||| 0-1 ||| 1186 668016 +a ||| resulting from ||| 0.00101626 0.0435582 1.49697e-06 3.26106e-07 2.718 ||| 0-1 ||| 984 668016 +a ||| resulting in ||| 0.00469484 0.0587624 4.49091e-06 2.72174e-06 2.718 ||| 0-1 ||| 639 668016 +a ||| results from the fact ||| 0.0588235 0.0435582 1.49697e-06 1.00202e-10 2.718 ||| 0-1 ||| 17 668016 +a ||| results from the ||| 0.00917431 0.0435582 1.49697e-06 3.42067e-08 2.718 ||| 0-1 ||| 109 668016 +a ||| results from ||| 0.00369004 0.0435582 1.49697e-06 5.57187e-07 2.718 ||| 0-1 ||| 271 668016 +a ||| results in ||| 0.00621118 0.0587624 7.48485e-06 4.65039e-06 2.718 ||| 0-1 ||| 805 668016 +a ||| results of ||| 0.000849257 0.0188479 2.99394e-06 2.28938e-06 2.718 ||| 0-1 ||| 2355 668016 +a ||| results to ||| 0.0140845 0.229811 1.49697e-06 2.71133e-05 2.718 ||| 0-1 ||| 71 668016 +a ||| results with ||| 0.0263158 0.0571592 1.49697e-06 1.2922e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| retailers in ||| 0.0714286 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| retained at ||| 0.0714286 0.204175 1.49697e-06 3.19933e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| retained by ||| 0.0625 0.0337966 1.49697e-06 7.73385e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| return of ||| 0.0019305 0.0188479 1.49697e-06 1.96993e-06 2.718 ||| 0-1 ||| 518 668016 +a ||| return on ||| 0.0196078 0.0782999 2.99394e-06 2.52651e-06 2.718 ||| 0-1 ||| 102 668016 +a ||| return the favour and ||| 1 0.0016469 1.49697e-06 2.66653e-13 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| return to Iran ||| 0.142857 0.229811 1.49697e-06 2.26302e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| return to ||| 0.00634371 0.229811 1.64667e-05 2.33301e-05 2.718 ||| 0-1 ||| 1734 668016 +a ||| returned and ||| 0.0625 0.0015873 1.49697e-06 2.56624e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| returned to ||| 0.0152439 0.229811 7.48485e-06 4.65901e-06 2.718 ||| 0-1 ||| 328 668016 +a ||| returned ||| 0.00372208 0.0073918 4.49091e-06 6.4e-06 2.718 ||| 0-0 ||| 806 668016 +a ||| returning to ||| 0.00569801 0.229811 2.99394e-06 2.13684e-06 2.718 ||| 0-1 ||| 351 668016 +a ||| returning ||| 0.00595238 0.0701149 5.98788e-06 5.57e-05 2.718 ||| 0-0 ||| 672 668016 +a ||| reverse , in ||| 0.111111 0.0587624 1.49697e-06 6.95017e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| revert back ||| 0.0769231 0.0536618 1.49697e-06 1.32426e-09 2.718 ||| 0-1 ||| 13 668016 +a ||| revert to ||| 0.0285714 0.229811 2.99394e-06 6.30543e-07 2.718 ||| 0-1 ||| 70 668016 +a ||| reverting to ||| 0.037037 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| review of ||| 0.00159872 0.0188479 2.99394e-06 1.11807e-06 2.718 ||| 0-1 ||| 1251 668016 +a ||| review will be ||| 0.1 0.0561595 1.49697e-06 9.64798e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| review will ||| 0.125 0.0561595 1.49697e-06 5.32364e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| reviewing certain ||| 1 0.039924 1.49697e-06 5.472e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| reviewing ||| 0.00282486 0.039924 2.99394e-06 1.92e-05 2.718 ||| 0-0 ||| 708 668016 +a ||| revision of the Treaty . ||| 0.0769231 0.0188479 1.49697e-06 5.41449e-15 2.718 ||| 0-1 ||| 13 668016 +a ||| revision of the Treaty ||| 0.0147059 0.0188479 1.49697e-06 1.78755e-12 2.718 ||| 0-1 ||| 68 668016 +a ||| revision of the ||| 0.000820345 0.0188479 1.49697e-06 2.08826e-08 2.718 ||| 0-1 ||| 1219 668016 +a ||| revision of ||| 0.000865052 0.0188479 1.49697e-06 3.40153e-07 2.718 ||| 0-1 ||| 1156 668016 +a ||| reward ||| 0.0122324 0.181122 5.98788e-06 6.48e-05 2.718 ||| 0-0 ||| 327 668016 +a ||| rewarded , as ||| 0.5 0.0243476 1.49697e-06 1.88307e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| rewarded , in ||| 0.5 0.0587624 1.49697e-06 1.28972e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| rewarded to ||| 1 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| rewarding ||| 0.00694444 0.208738 1.49697e-06 3.92e-05 2.718 ||| 0-0 ||| 144 668016 +a ||| rhetoric about ||| 0.04 0.0526361 1.49697e-06 1.81415e-08 2.718 ||| 0-1 ||| 25 668016 +a ||| rhetoric about ‘ ||| 1 0.0526361 1.49697e-06 2.03729e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| rid itself of ||| 0.0666667 0.0188479 1.49697e-06 4.69753e-10 2.718 ||| 0-2 ||| 15 668016 +a ||| rid of ||| 0.0124224 0.0188479 2.99394e-06 6.92137e-07 2.718 ||| 0-1 ||| 161 668016 +a ||| rid ourselves of ||| 0.03125 0.0188479 1.49697e-06 2.20169e-10 2.718 ||| 0-2 ||| 32 668016 +a ||| ride for some Member States , reflecting ||| 0.25 0.0683377 1.49697e-06 1.70676e-23 2.718 ||| 0-1 ||| 4 668016 +a ||| ride for some Member States , ||| 0.25 0.0683377 1.49697e-06 6.82702e-18 2.718 ||| 0-1 ||| 4 668016 +a ||| ride for some Member States ||| 0.25 0.0683377 1.49697e-06 5.72474e-17 2.718 ||| 0-1 ||| 4 668016 +a ||| ride for some Member ||| 0.25 0.0683377 1.49697e-06 1.19965e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| ride for some ||| 0.25 0.0683377 1.49697e-06 2.32807e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| ride for ||| 0.2 0.0683377 1.49697e-06 2.13721e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| right across ||| 0.00298507 0.0490758 1.49697e-06 3.17291e-07 2.718 ||| 0-1 ||| 335 668016 +a ||| right at the ||| 0.00564972 0.204175 1.49697e-06 1.34751e-06 2.718 ||| 0-1 ||| 177 668016 +a ||| right at ||| 0.0479452 0.204175 1.04788e-05 2.19494e-05 2.718 ||| 0-1 ||| 146 668016 +a ||| right back at the ||| 1 0.204175 1.49697e-06 9.06339e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| right back at ||| 1 0.204175 1.49697e-06 1.47632e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| right back to ||| 0.181818 0.229811 2.99394e-06 1.51947e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| right down ||| 0.027027 0.0226513 1.49697e-06 2.35453e-07 2.718 ||| 0-1 ||| 37 668016 +a ||| right for ||| 0.00285714 0.0683377 1.49697e-06 2.37636e-05 2.718 ||| 0-1 ||| 350 668016 +a ||| right hand is doing and in which ||| 1 0.0587624 1.49697e-06 1.88124e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| right hand is doing and in ||| 1 0.0587624 1.49697e-06 2.21463e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| right in ||| 0.00339559 0.0587624 2.99394e-06 3.87472e-05 2.718 ||| 0-1 ||| 589 668016 +a ||| right now to ||| 0.0909091 0.229811 1.49697e-06 4.65351e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| right of action to ||| 1 0.229811 1.49697e-06 3.71265e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| right of ||| 0.000321647 0.0188479 1.49697e-06 1.90752e-05 2.718 ||| 0-1 ||| 3109 668016 +a ||| right on ||| 0.016129 0.0782999 1.49697e-06 2.44647e-05 2.718 ||| 0-1 ||| 62 668016 +a ||| right that ||| 0.00107411 0.0008521 1.49697e-06 4.40273e-07 2.718 ||| 0-1 ||| 931 668016 +a ||| right there within ||| 1 0.0123496 1.49697e-06 9.83266e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| right through Europe , have them peeled ||| 1 0.230708 1.49697e-06 6.94675e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| right through Europe , have them ||| 1 0.230708 1.49697e-06 9.92393e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| right through Europe , have ||| 1 0.230708 1.49697e-06 3.69965e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| right through Europe , ||| 1 0.230708 1.49697e-06 3.0934e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| right through Europe ||| 1 0.230708 1.49697e-06 2.59395e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| right through ||| 0.016129 0.230708 1.49697e-06 5.12637e-06 2.718 ||| 0-1 ||| 62 668016 +a ||| right to go ||| 0.0384615 0.229811 1.49697e-06 1.32112e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| right to have ||| 0.00763359 0.229811 1.49697e-06 2.70183e-06 2.718 ||| 0-1 ||| 131 668016 +a ||| right to life of ||| 0.111111 0.0188479 1.49697e-06 2.5679e-10 2.718 ||| 0-3 ||| 9 668016 +a ||| right to pursue ||| 0.0769231 0.229811 1.49697e-06 8.85565e-09 2.718 ||| 0-1 ||| 13 668016 +a ||| right to put the agenda to the ||| 1 0.229811 1.49697e-06 8.28362e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| right to put the agenda to ||| 1 0.229811 1.49697e-06 1.3493e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| right to ||| 0.0046004 0.229811 7.63455e-05 0.00022591 2.718 ||| 0-1 ||| 11086 668016 +a ||| right up to ||| 0.0212766 0.229811 2.99394e-06 7.70464e-07 2.718 ||| 0-2 ||| 94 668016 +a ||| right ||| 2.89277e-05 2.71e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 34569 668016 +a ||| rightly at ||| 0.25 0.204175 1.49697e-06 1.80047e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| rightly continue to ||| 1 0.229811 1.49697e-06 4.28806e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| rights clause was included in the actual ||| 1 0.0587624 1.49697e-06 3.0477e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| rights clause was included in the ||| 1 0.0587624 1.49697e-06 2.10622e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| rights clause was included in ||| 1 0.0587624 1.49697e-06 3.43078e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| rights enjoyed by ||| 0.166667 0.0337966 1.49697e-06 3.78654e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| rights from ||| 0.0294118 0.0435582 1.49697e-06 1.44048e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| rights in an ||| 0.333333 0.0587624 1.49697e-06 5.34364e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| rights in developing ||| 0.125 0.0587624 1.49697e-06 6.52822e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| rights in ||| 0.00704225 0.0587624 4.49091e-06 1.20225e-05 2.718 ||| 0-1 ||| 426 668016 +a ||| rights just because ||| 1 0.0052046 1.49697e-06 8.15718e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| rights of entire ||| 1 0.0188479 1.49697e-06 4.68758e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| rights of ||| 0.00171695 0.0188479 1.04788e-05 5.91866e-06 2.718 ||| 0-1 ||| 4077 668016 +a ||| rights on ||| 0.0153846 0.0782999 1.49697e-06 7.59091e-06 2.718 ||| 0-1 ||| 65 668016 +a ||| rights over ||| 0.0833333 0.0682544 1.49697e-06 4.64812e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| rights to ||| 0.00907716 0.229811 8.98182e-06 7.00954e-05 2.718 ||| 0-1 ||| 661 668016 +a ||| rise even in the ||| 1 0.0587624 1.49697e-06 2.81909e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| rise even in ||| 1 0.0587624 1.49697e-06 4.59196e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| rise in ||| 0.00130378 0.0587624 1.49697e-06 7.54636e-06 2.718 ||| 0-1 ||| 767 668016 +a ||| rise of ||| 0.00649351 0.0188479 1.49697e-06 3.71506e-06 2.718 ||| 0-1 ||| 154 668016 +a ||| rise to higher ||| 0.5 0.229811 1.49697e-06 1.85231e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| rise to payments ||| 0.5 0.229811 1.49697e-06 1.45633e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| rise to problems ||| 0.142857 0.229811 1.49697e-06 5.90452e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| rise to requests ||| 0.333333 0.229811 1.49697e-06 5.71972e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| rise to ||| 0.0177332 0.229811 3.44303e-05 4.39979e-05 2.718 ||| 0-1 ||| 1297 668016 +a ||| rising to ||| 0.0447761 0.229811 4.49091e-06 4.4138e-06 2.718 ||| 0-1 ||| 67 668016 +a ||| risk for ||| 0.010989 0.0683377 1.49697e-06 4.31127e-06 2.718 ||| 0-1 ||| 91 668016 +a ||| risk of ||| 0.00100226 0.0188479 5.98788e-06 3.46068e-06 2.718 ||| 0-1 ||| 3991 668016 +a ||| risk to ||| 0.00271003 0.229811 1.49697e-06 4.09853e-05 2.718 ||| 0-1 ||| 369 668016 +a ||| risking penalising our ||| 1 0.309434 1.49697e-06 7.22254e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| risking penalising ||| 1 0.309434 1.49697e-06 5.236e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| risking ||| 0.00621118 0.00625 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 161 668016 +a ||| risks related to ||| 0.0588235 0.229811 1.49697e-06 3.80883e-10 2.718 ||| 0-2 ||| 17 668016 +a ||| river in ||| 0.111111 0.0587624 1.49697e-06 2.58355e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| riverbanks to ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| road of seriously becoming one ||| 0.25 0.0188479 1.49697e-06 4.71868e-17 2.718 ||| 0-1 ||| 4 668016 +a ||| road of seriously becoming ||| 0.25 0.0188479 1.49697e-06 1.13212e-14 2.718 ||| 0-1 ||| 4 668016 +a ||| road of seriously ||| 0.25 0.0188479 1.49697e-06 1.10021e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| road of ||| 0.0222222 0.0188479 4.49091e-06 2.6384e-06 2.718 ||| 0-1 ||| 135 668016 +a ||| road to ||| 0.00646831 0.229811 7.48485e-06 3.12469e-05 2.718 ||| 0-1 ||| 773 668016 +a ||| road towards ||| 0.0136054 0.155507 2.99394e-06 3.00836e-07 2.718 ||| 0-1 ||| 147 668016 +a ||| rob ||| 0.0178571 0.292683 1.49697e-06 2.19e-05 2.718 ||| 0-0 ||| 56 668016 +a ||| robbed ||| 0.0196078 0.123595 1.49697e-06 1e-05 2.718 ||| 0-0 ||| 51 668016 +a ||| rode to ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| role for ||| 0.00819672 0.0683377 2.99394e-06 8.18037e-06 2.718 ||| 0-1 ||| 244 668016 +a ||| role in a purposeful ||| 1 0.0587624 1.49697e-06 6.50355e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| role in a ||| 0.0526316 0.0587624 1.49697e-06 5.91231e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| role in ensuring ||| 0.0454545 0.0587624 1.49697e-06 1.54991e-09 2.718 ||| 0-1 ||| 22 668016 +a ||| role in monitoring ||| 0.0588235 0.0587624 1.49697e-06 5.0819e-10 2.718 ||| 0-1 ||| 17 668016 +a ||| role in which they are merely ||| 1 0.0587624 1.49697e-06 3.57434e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| role in which they are ||| 1 0.0587624 1.49697e-06 5.61122e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| role in which they ||| 1 0.0587624 1.49697e-06 3.69823e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| role in which ||| 0.333333 0.0587624 1.49697e-06 1.13304e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| role in ||| 0.0143136 0.0587624 3.29333e-05 1.33383e-05 2.718 ||| 0-1 ||| 1537 668016 +a ||| role is to ||| 0.016129 0.229811 1.49697e-06 2.4373e-06 2.718 ||| 0-2 ||| 62 668016 +a ||| role of the ||| 0.000494805 0.0188479 1.49697e-06 4.03125e-07 2.718 ||| 0-1 ||| 2021 668016 +a ||| role of ||| 0.00147348 0.0188479 8.98182e-06 6.56643e-06 2.718 ||| 0-1 ||| 4072 668016 +a ||| role to play in ||| 0.00609756 0.0587624 1.49697e-06 3.05786e-10 2.718 ||| 0-3 ||| 164 668016 +a ||| role to play ||| 0.00220264 0.229811 1.49697e-06 2.00639e-08 2.718 ||| 0-1 ||| 454 668016 +a ||| role to ||| 0.00387097 0.229811 4.49091e-06 7.7767e-05 2.718 ||| 0-1 ||| 775 668016 +a ||| roles in ||| 0.05 0.0587624 1.49697e-06 1.74239e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| rolled back on a ||| 0.25 0.0782999 1.49697e-06 4.86328e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| rolled back on ||| 0.25 0.0782999 1.49697e-06 1.09717e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| rolling with ||| 0.2 0.0571592 1.49697e-06 1.31891e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| room for manoeuvre ||| 0.00236967 0.0683377 1.49697e-06 9.37131e-12 2.718 ||| 0-1 ||| 422 668016 +a ||| room for some ||| 0.333333 0.0683377 1.49697e-06 1.5012e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| room for ||| 0.00235479 0.0683377 4.49091e-06 1.37813e-06 2.718 ||| 0-1 ||| 1274 668016 +a ||| room has to be ||| 0.5 0.229811 1.49697e-06 1.22219e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| room has to ||| 0.5 0.229811 1.49697e-06 6.74388e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| room to ||| 0.0172414 0.229811 2.99394e-06 1.31013e-05 2.718 ||| 0-1 ||| 116 668016 +a ||| rooms , has to be ||| 0.5 0.229811 1.49697e-06 1.13016e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| rooms , has to ||| 0.5 0.229811 1.49697e-06 6.23608e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| rooted in ||| 0.00904977 0.0587624 2.99394e-06 3.66503e-07 2.718 ||| 0-1 ||| 221 668016 +a ||| roots in ||| 0.0175439 0.0587624 1.49697e-06 8.65188e-07 2.718 ||| 0-1 ||| 57 668016 +a ||| roots to ||| 0.2 0.229811 1.49697e-06 5.04434e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| roots ||| 0.00574053 0.00906 7.48485e-06 7.3e-06 2.718 ||| 0-0 ||| 871 668016 +a ||| round of ||| 0.00163399 0.0188479 1.49697e-06 2.26867e-06 2.718 ||| 0-1 ||| 612 668016 +a ||| round to ||| 0.129032 0.229811 1.19758e-05 2.68681e-05 2.718 ||| 0-1 ||| 62 668016 +a ||| round ||| 0.00122951 0.0033069 4.49091e-06 9.1e-06 2.718 ||| 0-0 ||| 2440 668016 +a ||| route to ||| 0.024 0.229811 4.49091e-06 9.45814e-06 2.718 ||| 0-1 ||| 125 668016 +a ||| routed alongside ||| 0.5 0.155101 1.49697e-06 2.6131e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| routinely thought to put ||| 1 0.229811 1.49697e-06 4.49355e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| routinely thought to ||| 1 0.229811 1.49697e-06 4.07541e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| rubbing in ||| 1 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| rubbish , to put ||| 1 0.229811 1.49697e-06 1.84245e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| rubbish , to ||| 1 0.229811 1.49697e-06 1.671e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| rudely forced back onto ||| 0.047619 0.207143 1.49697e-06 4.51802e-18 2.718 ||| 0-3 ||| 21 668016 +a ||| rug from ||| 0.333333 0.0435582 1.49697e-06 7.91868e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| rug out from ||| 0.5 0.0435582 1.49697e-06 3.03317e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| ruin of ||| 0.04 0.0188479 1.49697e-06 8.57777e-08 2.718 ||| 0-1 ||| 25 668016 +a ||| rule against ||| 0.333333 0.05146 1.49697e-06 2.11339e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| rule concerning ||| 0.125 0.22348 1.49697e-06 3.32517e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| rule out extending ||| 1 0.0669777 1.49697e-06 6.83493e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| rule out ||| 0.0041841 0.0669777 1.49697e-06 3.33411e-07 2.718 ||| 0-1 ||| 239 668016 +a ||| rule to be ||| 0.125 0.229811 1.49697e-06 5.16131e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| rule to ||| 0.0357143 0.229811 1.49697e-06 2.84795e-05 2.718 ||| 0-1 ||| 28 668016 +a ||| rule was applied to ||| 0.5 0.229811 1.49697e-06 9.66321e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| rules , and I wish to conclude ||| 1 0.229811 1.49697e-06 3.05467e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| rules , and I wish to ||| 1 0.229811 1.49697e-06 1.2675e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| rules are to ||| 0.0769231 0.229811 1.49697e-06 6.17605e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| rules at the ||| 0.0833333 0.204175 1.49697e-06 2.42799e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| rules at ||| 0.0178571 0.204175 1.49697e-06 3.95491e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| rules for ||| 0.00244798 0.0683377 2.99394e-06 4.2818e-06 2.718 ||| 0-1 ||| 817 668016 +a ||| rules on the treatment ||| 0.333333 0.0782999 1.49697e-06 1.63726e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| rules on the ||| 0.0041841 0.0782999 1.49697e-06 2.70622e-07 2.718 ||| 0-1 ||| 239 668016 +a ||| rules on ||| 0.000777605 0.0782999 1.49697e-06 4.40812e-06 2.718 ||| 0-1 ||| 1286 668016 +a ||| rules to keep pace with ||| 0.5 0.0571592 1.49697e-06 5.21029e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| rules will then be bound to respect ||| 1 0.229811 1.49697e-06 2.28971e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| rules will then be bound to ||| 1 0.229811 1.49697e-06 5.2929e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| ruling by ||| 0.0666667 0.0337966 1.49697e-06 1.62905e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| ruling in ||| 0.037037 0.0587624 1.49697e-06 1.18963e-06 2.718 ||| 0-1 ||| 27 668016 +a ||| ruling on ||| 0.0163934 0.0782999 1.49697e-06 7.51125e-07 2.718 ||| 0-1 ||| 61 668016 +a ||| run by ||| 0.00947867 0.0337966 2.99394e-06 8.73761e-07 2.718 ||| 0-1 ||| 211 668016 +a ||| run cold in ||| 1 0.0587624 1.49697e-06 7.33788e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| run counter to ||| 0.00617284 0.229811 1.49697e-06 6.84517e-10 2.718 ||| 0-2 ||| 162 668016 +a ||| run from ||| 0.0238095 0.0435582 1.49697e-06 7.64513e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| run of ||| 0.333333 0.0188479 1.49697e-06 3.14124e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| run to ||| 0.0909091 0.229811 2.99394e-06 3.7202e-05 2.718 ||| 0-1 ||| 22 668016 +a ||| run ||| 0.0029703 0.0020741 8.98182e-06 6.4e-06 2.718 ||| 0-0 ||| 2020 668016 +a ||| run-up to ||| 0.0045045 0.229811 2.99394e-06 2.76738e-06 2.718 ||| 0-1 ||| 444 668016 +a ||| running at ||| 0.0344828 0.204175 1.49697e-06 2.5969e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| running for no purpose ||| 1 0.0683377 1.49697e-06 3.93712e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| running for no ||| 1 0.0683377 1.49697e-06 2.1885e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| running for ||| 0.115385 0.0683377 4.49091e-06 2.81154e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| running out ||| 0.00862069 0.0669777 1.49697e-06 3.12906e-07 2.718 ||| 0-1 ||| 116 668016 +a ||| running the ||| 0.00900901 0.0004654 1.49697e-06 1.1693e-07 2.718 ||| 0-1 ||| 111 668016 +a ||| rush in ||| 0.166667 0.0587624 1.49697e-06 3.48479e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| rush to the government 's ||| 1 0.229811 1.49697e-06 1.89795e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| rush to the government ||| 1 0.229811 1.49697e-06 9.96615e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| rush to the ||| 0.25 0.229811 1.49697e-06 1.24733e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| rush to ||| 0.025974 0.229811 2.99394e-06 2.03175e-06 2.718 ||| 0-1 ||| 77 668016 +a ||| rushed down to ||| 1 0.229811 1.49697e-06 5.38e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| rushed through at ||| 1 0.204175 1.49697e-06 3.44663e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| rushing headlong into ||| 0.166667 0.107578 1.49697e-06 1.20271e-14 2.718 ||| 0-2 ||| 6 668016 +a ||| s Achilles ' heel for ||| 1 0.0683377 1.49697e-06 6.74172e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| s attention to ||| 0.111111 0.229811 2.99394e-06 1.74125e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| s becoming a member of ||| 1 0.0188479 2.99394e-06 4.27565e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| s capacity to ||| 0.25 0.229811 1.49697e-06 4.87123e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| s continuing to ||| 0.25 0.229811 1.49697e-06 4.12488e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| s future membership ||| 0.2 0.104903 1.49697e-06 3.1083e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| s membership ||| 0.0227273 0.104903 1.49697e-06 1.17029e-06 2.718 ||| 0-1 ||| 44 668016 +a ||| s punishing ||| 1 0.320988 1.49697e-06 1.80528e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| s question to which ||| 1 0.229811 1.49697e-06 4.68303e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| s question to ||| 1 0.229811 1.49697e-06 5.51295e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| s responsibility to ||| 0.0833333 0.229811 1.49697e-06 7.69667e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| s signing up to ||| 1 0.229811 1.49697e-06 2.54541e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| s task to ||| 0.0769231 0.229811 1.49697e-06 8.39637e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| s turn to ||| 0.333333 0.229811 1.49697e-06 1.49402e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| s way to ||| 1 0.229811 1.49697e-06 1.43645e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| s worth of ||| 0.166667 0.0188479 1.49697e-06 4.06812e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| sacked ||| 0.0689655 0.206349 2.99394e-06 1.19e-05 2.718 ||| 0-0 ||| 29 668016 +a ||| sacrificed on an ||| 1 0.0782999 1.49697e-06 3.70947e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| sacrificed on ||| 0.0526316 0.0782999 2.99394e-06 8.34583e-08 2.718 ||| 0-1 ||| 38 668016 +a ||| safe to say that ||| 0.0666667 0.229811 1.49697e-06 1.82483e-10 2.718 ||| 0-1 ||| 15 668016 +a ||| safe to say ||| 0.05 0.229811 1.49697e-06 1.08481e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| safe to ||| 0.0175439 0.229811 1.49697e-06 1.13498e-05 2.718 ||| 0-1 ||| 57 668016 +a ||| safe ||| 0.000785546 0.0008571 4.49091e-06 2.7e-06 2.718 ||| 0-0 ||| 3819 668016 +a ||| safeguard ||| 0.000282406 0.00036 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 3541 668016 +a ||| safeguarding ||| 0.000546448 0.000757 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1830 668016 +a ||| safely at ||| 0.333333 0.204175 1.49697e-06 2.82494e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| safely to ||| 0.166667 0.229811 2.99394e-06 2.9075e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| safer sanitation for ||| 1 0.0683377 1.49697e-06 1.90507e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| safety for ||| 0.00465116 0.0683377 1.49697e-06 1.86822e-06 2.718 ||| 0-1 ||| 215 668016 +a ||| safety of ||| 0.000488043 0.0188479 1.49697e-06 1.49963e-06 2.718 ||| 0-1 ||| 2049 668016 +a ||| said , corresponds to an impact velocity ||| 1 0.229811 1.49697e-06 1.08237e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| said , corresponds to an impact ||| 1 0.229811 1.49697e-06 2.70592e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| said , corresponds to an ||| 1 0.229811 1.49697e-06 3.28388e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| said , corresponds to ||| 1 0.229811 1.49697e-06 7.3883e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| said , in ||| 0.0119048 0.0587624 1.49697e-06 2.94701e-06 2.718 ||| 0-2 ||| 84 668016 +a ||| said about ||| 0.00146628 0.0526361 1.49697e-06 2.07266e-06 2.718 ||| 0-1 ||| 682 668016 +a ||| said before : ||| 0.1 0.0203282 1.49697e-06 7.34603e-11 2.718 ||| 0-1 ||| 10 668016 +a ||| said before ||| 0.00277778 0.0203282 1.49697e-06 2.18112e-07 2.718 ||| 0-1 ||| 360 668016 +a ||| said by ||| 0.00321543 0.0337966 1.49697e-06 3.38397e-06 2.718 ||| 0-1 ||| 311 668016 +a ||| said earlier , this ||| 0.1 0.031057 1.49697e-06 4.94725e-11 2.718 ||| 0-1 ||| 10 668016 +a ||| said earlier , ||| 0.00371747 0.031057 1.49697e-06 7.65662e-09 2.718 ||| 0-1 ||| 269 668016 +a ||| said earlier ||| 0.0017331 0.031057 1.49697e-06 6.42039e-08 2.718 ||| 0-1 ||| 577 668016 +a ||| said in previous debates : ||| 1 0.0587624 1.49697e-06 7.35776e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| said in previous debates ||| 0.5 0.0587624 1.49697e-06 2.18461e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| said in previous ||| 0.25 0.0587624 1.49697e-06 1.26278e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| said in the debate - ||| 0.5 0.0587624 1.49697e-06 1.13252e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| said in the debate ||| 0.030303 0.0587624 1.49697e-06 3.00236e-10 2.718 ||| 0-1 ||| 33 668016 +a ||| said in the ||| 0.00578035 0.0587624 1.49697e-06 1.51711e-06 2.718 ||| 0-1 ||| 173 668016 +a ||| said in ||| 0.00308325 0.0587624 4.49091e-06 2.47119e-05 2.718 ||| 0-1 ||| 973 668016 +a ||| said of ||| 0.0106383 0.0188479 1.49697e-06 1.21656e-05 2.718 ||| 0-1 ||| 94 668016 +a ||| said on numerous ||| 0.125 0.0782999 1.49697e-06 2.74611e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| said on ||| 0.00381679 0.0782999 1.49697e-06 1.56029e-05 2.718 ||| 0-1 ||| 262 668016 +a ||| said relates to ||| 0.5 0.229811 1.49697e-06 4.04862e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| said to afford ||| 0.5 0.229811 1.49697e-06 4.04862e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| said to be a supporter ||| 1 0.229811 1.49697e-06 4.62962e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| said to be a ||| 0.111111 0.229811 1.49697e-06 1.1574e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| said to be ||| 0.00934579 0.229811 1.49697e-06 2.61113e-06 2.718 ||| 0-1 ||| 107 668016 +a ||| said to have ||| 0.0322581 0.229811 1.49697e-06 1.72316e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| said to ||| 0.014658 0.229811 1.34727e-05 0.000144079 2.718 ||| 0-1 ||| 614 668016 +a ||| said with ||| 0.0204082 0.0571592 1.49697e-06 6.86669e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| sailing at ||| 1 0.204175 1.49697e-06 1.70177e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| sake of ||| 0.00224467 0.0188479 2.99394e-06 2.96968e-06 2.718 ||| 0-1 ||| 891 668016 +a ||| sake stick to ||| 1 0.229811 1.49697e-06 7.1044e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| sale at ||| 0.2 0.204175 1.49697e-06 4.28846e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| sale price of ||| 0.25 0.0188479 1.49697e-06 1.90444e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| salute ||| 0.0265487 0.140187 4.49091e-06 4.11e-05 2.718 ||| 0-0 ||| 113 668016 +a ||| same applies to our relationship with developing ||| 1 0.229811 1.49697e-06 3.00953e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| same applies to our relationship with ||| 1 0.229811 1.49697e-06 5.54241e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| same applies to our relationship ||| 1 0.229811 1.49697e-06 8.66746e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| same applies to our ||| 0.142857 0.229811 1.49697e-06 3.25844e-11 2.718 ||| 0-2 ||| 7 668016 +a ||| same applies to ||| 0.00407332 0.229811 2.99394e-06 2.36222e-08 2.718 ||| 0-2 ||| 491 668016 +a ||| same as what happens to ||| 1 0.229811 1.49697e-06 2.4095e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| same as ||| 0.00296296 0.0243476 2.99394e-06 7.05915e-06 2.718 ||| 0-1 ||| 675 668016 +a ||| same commitment in tackling ||| 1 0.0587624 1.49697e-06 5.53057e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| same commitment in ||| 0.5 0.0587624 1.49697e-06 2.69784e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| same day to ||| 0.25 0.229811 1.49697e-06 7.22196e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| same degree of ||| 0.0243902 0.0188479 1.49697e-06 3.29655e-09 2.718 ||| 0-2 ||| 41 668016 +a ||| same degree to which these countries protect ||| 1 0.229811 1.49697e-06 4.50556e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| same degree to which these countries ||| 1 0.229811 1.49697e-06 1.30596e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| same degree to which these ||| 1 0.229811 1.49697e-06 3.43945e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| same degree to which ||| 1 0.229811 1.49697e-06 3.31641e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| same degree to ||| 1 0.229811 1.49697e-06 3.90414e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| same from ||| 0.05 0.0435582 1.49697e-06 5.79287e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| same goes for ||| 0.00649351 0.0683377 1.49697e-06 4.1068e-09 2.718 ||| 0-2 ||| 154 668016 +a ||| same goes to ||| 0.333333 0.229811 1.49697e-06 3.90414e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| same levels of ||| 0.0769231 0.0188479 1.49697e-06 3.15136e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| same lines as that ||| 1 0.0243476 1.49697e-06 1.08059e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| same lines as ||| 0.0277778 0.0243476 2.99394e-06 6.42383e-10 2.718 ||| 0-2 ||| 72 668016 +a ||| same manner as ||| 0.0588235 0.0243476 1.49697e-06 1.37653e-09 2.718 ||| 0-2 ||| 17 668016 +a ||| same of ||| 0.0416667 0.0188479 1.49697e-06 2.38018e-05 2.718 ||| 0-1 ||| 24 668016 +a ||| same order as ||| 0.25 0.0243476 1.49697e-06 3.7597e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| same regulations could fail to ||| 1 0.229811 1.49697e-06 4.75188e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| same right across ||| 1 0.0490758 1.49697e-06 2.55324e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| same sort of ||| 0.0181818 0.0188479 1.49697e-06 3.80353e-09 2.718 ||| 0-2 ||| 55 668016 +a ||| same status as ||| 0.025 0.0243476 1.49697e-06 7.1368e-10 2.718 ||| 0-2 ||| 40 668016 +a ||| same status in ||| 0.125 0.0587624 1.49697e-06 4.88802e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| same thing as ||| 0.0151515 0.0243476 1.49697e-06 2.57588e-09 2.718 ||| 0-2 ||| 66 668016 +a ||| same time , to ||| 0.00775194 0.229811 1.49697e-06 5.51881e-08 2.718 ||| 0-3 ||| 129 668016 +a ||| same time as ||| 0.00188324 0.0243476 1.49697e-06 1.1589e-08 2.718 ||| 0-2 ||| 531 668016 +a ||| same to ||| 0.0322581 0.229811 1.49697e-06 0.000281888 2.718 ||| 0-1 ||| 31 668016 +a ||| same way as active behaviour ||| 0.125 0.0243476 1.49697e-06 1.56988e-17 2.718 ||| 0-2 ||| 8 668016 +a ||| same way as active ||| 0.125 0.0243476 1.49697e-06 6.13233e-13 2.718 ||| 0-2 ||| 8 668016 +a ||| same way as ||| 0.00156006 0.0243476 1.49697e-06 1.52167e-08 2.718 ||| 0-2 ||| 641 668016 +a ||| sample of children who ||| 0.5 0.0188479 1.49697e-06 2.721e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| sample of children ||| 0.5 0.0188479 1.49697e-06 3.08504e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| sample of ||| 0.0454545 0.0188479 1.49697e-06 4.14099e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| sanctions imposed ||| 0.0204082 0.00271 1.49697e-06 1.1826e-10 2.718 ||| 0-1 ||| 49 668016 +a ||| sanctions on ||| 0.00653595 0.0782999 1.49697e-06 6.14557e-07 2.718 ||| 0-1 ||| 153 668016 +a ||| sand in ||| 0.25 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| sanitation for ||| 0.25 0.0683377 1.49697e-06 4.05334e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| sat up at ||| 0.166667 0.204175 1.49697e-06 6.2682e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| satisfaction of a ||| 0.25 0.0188479 1.49697e-06 1.5602e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| satisfaction of ||| 0.00943396 0.0188479 1.49697e-06 3.51984e-07 2.718 ||| 0-1 ||| 106 668016 +a ||| satisfactory and will go on applying pressure ||| 1 0.0782999 1.49697e-06 7.74742e-23 2.718 ||| 0-4 ||| 1 668016 +a ||| satisfactory and will go on applying ||| 1 0.0782999 1.49697e-06 1.28909e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| satisfactory and will go on ||| 1 0.0782999 1.49697e-06 3.89453e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| satisfactory for ||| 0.0384615 0.0683377 1.49697e-06 5.96946e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| satisfactory in ||| 0.0294118 0.0587624 1.49697e-06 9.73336e-07 2.718 ||| 0-1 ||| 34 668016 +a ||| satisfied with ||| 0.00123457 0.0571592 1.49697e-06 1.91994e-07 2.718 ||| 0-1 ||| 810 668016 +a ||| satisfy demand ||| 0.166667 0.116324 1.49697e-06 5.82096e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| satisfy ||| 0.00506971 0.116324 5.98788e-06 0.0001086 2.718 ||| 0-0 ||| 789 668016 +a ||| sauce for the ||| 0.0625 0.0683377 1.49697e-06 6.56037e-09 2.718 ||| 0-1 ||| 16 668016 +a ||| sauce for ||| 0.0588235 0.0683377 1.49697e-06 1.06861e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| save the face ||| 0.333333 0.124218 1.49697e-06 9.40921e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| savings towards ||| 0.25 0.155507 1.49697e-06 2.79926e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| saw at ||| 0.0833333 0.204175 1.49697e-06 1.8243e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| saw fit to ||| 0.0555556 0.229811 1.49697e-06 6.08348e-10 2.718 ||| 0-2 ||| 18 668016 +a ||| saw in the past ||| 0.333333 0.0587624 1.49697e-06 2.53263e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| saw in the ||| 0.05 0.0587624 1.49697e-06 1.97708e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| saw in ||| 0.0361446 0.0587624 4.49091e-06 3.22042e-06 2.718 ||| 0-1 ||| 83 668016 +a ||| say " yes " to ||| 0.2 0.229811 1.49697e-06 6.0079e-16 2.718 ||| 0-4 ||| 5 668016 +a ||| say a few words about ||| 0.00757576 0.0526361 1.49697e-06 8.45832e-15 2.718 ||| 0-4 ||| 132 668016 +a ||| say a special word of thanks to ||| 0.5 0.229811 1.49697e-06 5.69487e-19 2.718 ||| 0-6 ||| 2 668016 +a ||| say at this ||| 0.027027 0.204175 1.49697e-06 2.10196e-07 2.718 ||| 0-1 ||| 37 668016 +a ||| say at ||| 0.008 0.204175 1.49697e-06 3.2531e-05 2.718 ||| 0-1 ||| 125 668016 +a ||| say by ||| 0.047619 0.0337966 1.49697e-06 7.86384e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| say from ||| 0.0689655 0.0435582 2.99394e-06 6.88061e-06 2.718 ||| 0-1 ||| 29 668016 +a ||| say in ||| 0.0060423 0.0587624 5.98788e-06 5.74269e-05 2.718 ||| 0-1 ||| 662 668016 +a ||| say it to ||| 1 0.229811 1.49697e-06 5.95414e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| say on ||| 0.00309598 0.0782999 1.49697e-06 3.62588e-05 2.718 ||| 0-1 ||| 323 668016 +a ||| say so , to ||| 0.2 0.229811 1.49697e-06 9.06261e-08 2.718 ||| 0-3 ||| 5 668016 +a ||| say thank you to the ||| 0.333333 0.229811 1.49697e-06 7.02155e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| say thank you to ||| 0.0526316 0.229811 1.49697e-06 1.14373e-10 2.718 ||| 0-3 ||| 19 668016 +a ||| say that to ||| 0.0588235 0.229811 1.49697e-06 5.63218e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| say the following ||| 0.0188679 0.0720432 1.49697e-06 5.78451e-08 2.718 ||| 0-2 ||| 53 668016 +a ||| say they ||| 0.0107527 0.0007051 1.49697e-06 7.14938e-08 2.718 ||| 0-1 ||| 93 668016 +a ||| say this - to ||| 1 0.229811 1.49697e-06 8.16054e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| say this to you ||| 0.0714286 0.229811 1.49697e-06 6.98495e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| say this to ||| 0.0181818 0.229811 1.49697e-06 2.16339e-06 2.718 ||| 0-2 ||| 55 668016 +a ||| say to the ||| 0.00235294 0.229811 1.49697e-06 2.05551e-05 2.718 ||| 0-1 ||| 425 668016 +a ||| say to ||| 0.0155979 0.229811 2.69455e-05 0.000334818 2.718 ||| 0-1 ||| 1154 668016 +a ||| say yes to ||| 0.0208333 0.229811 1.49697e-06 1.07142e-08 2.718 ||| 0-2 ||| 48 668016 +a ||| say you want to ||| 0.333333 0.229811 1.49697e-06 5.0538e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| saying ' no ' to ||| 0.0526316 0.229811 1.49697e-06 5.70725e-13 2.718 ||| 0-4 ||| 19 668016 +a ||| saying , for example : if you ||| 1 0.0683377 1.49697e-06 2.062e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| saying , for example : if ||| 1 0.0683377 1.49697e-06 6.38648e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| saying , for example : ||| 1 0.0683377 1.49697e-06 7.64299e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| saying , for example ||| 1 0.0683377 1.49697e-06 2.2693e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| saying , for ||| 0.25 0.0683377 1.49697e-06 7.79559e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| saying it for ||| 0.333333 0.0683377 1.49697e-06 1.16247e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| saying to ||| 0.0196078 0.229811 2.99394e-06 6.21435e-05 2.718 ||| 0-1 ||| 102 668016 +a ||| says to ||| 0.0666667 0.229811 2.99394e-06 2.42058e-05 2.718 ||| 0-1 ||| 30 668016 +a ||| scale , ||| 0.00694444 0.0017403 1.49697e-06 5.48572e-07 2.718 ||| 0-0 ||| 144 668016 +a ||| scale as ||| 0.105263 0.0243476 2.99394e-06 5.1494e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| scale of ||| 0.00364299 0.0188479 2.99394e-06 1.73626e-06 2.718 ||| 0-1 ||| 549 668016 +a ||| scale ||| 0.000528821 0.0017403 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 1891 668016 +a ||| scams on ||| 1 0.0782999 1.49697e-06 1.51742e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| scene of ||| 0.0196078 0.0188479 2.99394e-06 3.8452e-07 2.718 ||| 0-1 ||| 102 668016 +a ||| scenes of ||| 0.030303 0.0188479 1.49697e-06 1.39019e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| schedule saying , for example : if ||| 1 0.0683377 1.49697e-06 2.29913e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| schedule saying , for example : ||| 1 0.0683377 1.49697e-06 2.75148e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| schedule saying , for example ||| 1 0.0683377 1.49697e-06 8.16947e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| schedule saying , for ||| 1 0.0683377 1.49697e-06 2.80641e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| scheduled to take place ||| 0.0454545 0.229811 1.49697e-06 1.43447e-11 2.718 ||| 0-1 ||| 22 668016 +a ||| scheduled to take ||| 0.04 0.229811 1.49697e-06 9.53136e-09 2.718 ||| 0-1 ||| 25 668016 +a ||| scheduled to ||| 0.0169492 0.229811 2.99394e-06 5.9201e-06 2.718 ||| 0-1 ||| 118 668016 +a ||| scheme at ||| 0.2 0.204175 1.49697e-06 1.20145e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| scheme into ||| 0.25 0.107578 1.49697e-06 2.14423e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| scheme of ||| 0.0116279 0.0188479 1.49697e-06 1.04412e-06 2.718 ||| 0-1 ||| 86 668016 +a ||| scheme to ||| 0.0114943 0.229811 1.49697e-06 1.23656e-05 2.718 ||| 0-1 ||| 87 668016 +a ||| scheme was to compensate people ||| 1 0.122807 1.49697e-06 7.73306e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| scheme was to compensate ||| 1 0.122807 1.49697e-06 8.78557e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| schemes for farmers and ||| 1 0.0683377 1.49697e-06 3.42256e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| schemes for farmers ||| 0.25 0.0683377 1.49697e-06 2.73239e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| schemes for ||| 0.0212766 0.0683377 1.49697e-06 6.78012e-07 2.718 ||| 0-1 ||| 47 668016 +a ||| schemes in place ||| 0.25 0.0587624 1.49697e-06 1.6638e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| schemes in ||| 0.0526316 0.0587624 1.49697e-06 1.10552e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| schemes involving the composting ||| 1 0.102511 1.49697e-06 2.62702e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| schemes involving the ||| 1 0.102511 1.49697e-06 6.56755e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| schemes involving ||| 0.5 0.102511 1.49697e-06 1.06978e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| scientists under ||| 1 0.0384416 1.49697e-06 5.6736e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| scope for ||| 0.00455581 0.0683377 5.98788e-06 3.6738e-06 2.718 ||| 0-1 ||| 878 668016 +a ||| scope of ||| 0.00222058 0.0188479 8.98182e-06 2.94898e-06 2.718 ||| 0-1 ||| 2702 668016 +a ||| scope to cover ||| 0.0666667 0.229811 1.49697e-06 2.72765e-09 2.718 ||| 0-1 ||| 15 668016 +a ||| scope to ||| 0.0309278 0.229811 8.98182e-06 3.49251e-05 2.718 ||| 0-1 ||| 194 668016 +a ||| screen by ||| 1 0.0337966 1.49697e-06 9.05025e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| screening off ||| 0.333333 0.0893962 1.49697e-06 3.59503e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| scrutinised closely ||| 0.333333 0.0807453 1.49697e-06 1.05315e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| scrutinised ||| 0.0105263 0.0807453 1.49697e-06 1.19e-05 2.718 ||| 0-0 ||| 95 668016 +a ||| scrutiny over ||| 0.05 0.0682544 1.49697e-06 3.50758e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| sea by means of ||| 0.5 0.0337966 1.49697e-06 8.47489e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| sea by means ||| 0.5 0.0337966 1.49697e-06 1.55892e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| sea by ||| 0.0909091 0.0337966 1.49697e-06 2.46002e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| sea of ||| 0.016129 0.0188479 1.49697e-06 8.84397e-07 2.718 ||| 0-1 ||| 62 668016 +a ||| seafarers at ||| 0.5 0.204175 1.49697e-06 4.76496e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| search at a ||| 1 0.204175 1.49697e-06 2.1121e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| search at ||| 1 0.204175 1.49697e-06 4.76496e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| search of ||| 0.00584795 0.0188479 1.49697e-06 4.14099e-07 2.718 ||| 0-1 ||| 171 668016 +a ||| seasonal remarks ||| 0.142857 0.0037736 1.49697e-06 2.754e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| seasonal ||| 0.00369004 0.0037736 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 271 668016 +a ||| seat at ||| 0.0555556 0.204175 1.49697e-06 5.51373e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| seat fitted to ||| 0.5 0.229811 1.49697e-06 5.33439e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| seat in ||| 0.025 0.0587624 2.99394e-06 9.73336e-07 2.718 ||| 0-1 ||| 80 668016 +a ||| seat to ||| 0.125 0.229811 1.49697e-06 5.67489e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| seated in ||| 0.0512821 0.0587624 2.99394e-06 2.16297e-07 2.718 ||| 0-1 ||| 39 668016 +a ||| seats in ||| 0.0261438 0.0587624 5.98788e-06 5.828e-07 2.718 ||| 0-1 ||| 153 668016 +a ||| second in ||| 0.030303 0.0587624 1.49697e-06 3.91137e-06 2.718 ||| 0-1 ||| 33 668016 +a ||| second nature to ||| 0.166667 0.229811 1.49697e-06 3.22458e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| second place to ||| 0.025 0.229811 1.49697e-06 3.4321e-08 2.718 ||| 0-2 ||| 40 668016 +a ||| second report on cohesion drawn up ||| 1 0.0782999 1.49697e-06 7.60413e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| second report on cohesion drawn ||| 1 0.0782999 1.49697e-06 2.22962e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| second report on cohesion ||| 0.0909091 0.0782999 1.49697e-06 1.56905e-14 2.718 ||| 0-2 ||| 11 668016 +a ||| second report on ||| 0.0212766 0.0782999 1.49697e-06 1.01229e-09 2.718 ||| 0-2 ||| 47 668016 +a ||| second subject of critical scrutiny ||| 0.5 0.0188479 1.49697e-06 3.95519e-19 2.718 ||| 0-2 ||| 2 668016 +a ||| second subject of critical ||| 0.5 0.0188479 1.49697e-06 2.61933e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| second subject of ||| 0.333333 0.0188479 1.49697e-06 1.03942e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| second to ||| 0.0208333 0.229811 1.49697e-06 2.28046e-05 2.718 ||| 0-1 ||| 48 668016 +a ||| second with ||| 0.125 0.0571592 1.49697e-06 1.08685e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| secondly , to ||| 0.00558659 0.229811 1.49697e-06 1.5039e-06 2.718 ||| 0-2 ||| 179 668016 +a ||| secondly because ||| 0.0163934 0.0052046 1.49697e-06 1.16316e-08 2.718 ||| 0-1 ||| 61 668016 +a ||| secondly in ||| 0.05 0.0587624 1.49697e-06 2.16297e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| secretly involved in ||| 0.5 0.0587624 1.49697e-06 8.31061e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| section covering ||| 0.0909091 0.0289544 1.49697e-06 1.03037e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| sections on ||| 0.030303 0.0782999 1.49697e-06 3.9453e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| sector at ||| 0.0625 0.204175 2.99394e-06 6.32037e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| sector is then ||| 0.333333 0.0252938 1.49697e-06 4.96159e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| sector to ||| 0.0187266 0.229811 7.48485e-06 6.5051e-05 2.718 ||| 0-1 ||| 267 668016 +a ||| sector will bring these prices ||| 1 0.0561595 1.49697e-06 2.67663e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| sector will bring these ||| 1 0.0561595 1.49697e-06 8.44362e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| sector will bring ||| 1 0.0561595 1.49697e-06 8.14156e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| sector will ||| 0.0238095 0.0561595 1.49697e-06 2.61534e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| sectors in ||| 0.00896861 0.0587624 2.99394e-06 3.09425e-06 2.718 ||| 0-1 ||| 223 668016 +a ||| sectors to ||| 0.016129 0.229811 1.49697e-06 1.80405e-05 2.718 ||| 0-1 ||| 62 668016 +a ||| secure acceptance for ||| 0.333333 0.0683377 1.49697e-06 2.26574e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| secure future in ||| 0.25 0.0587624 1.49697e-06 8.04279e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| security to ||| 0.00719424 0.229811 1.49697e-06 2.86196e-05 2.718 ||| 0-1 ||| 139 668016 +a ||| see , by ||| 0.2 0.0337966 1.49697e-06 6.91331e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| see , that ||| 0.0666667 0.0008521 1.49697e-06 5.73651e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| see at ||| 0.025 0.204175 1.49697e-06 2.39813e-05 2.718 ||| 0-1 ||| 40 668016 +a ||| see compliance with ||| 0.25 0.0571592 1.49697e-06 2.70557e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| see eye to ||| 0.0344828 0.229811 1.49697e-06 1.40442e-08 2.718 ||| 0-2 ||| 29 668016 +a ||| see firmly annexed to ||| 0.333333 0.229811 1.49697e-06 2.05258e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| see for the ||| 0.166667 0.0683377 1.49697e-06 1.59394e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| see for ||| 0.0224719 0.0683377 2.99394e-06 2.59635e-05 2.718 ||| 0-1 ||| 89 668016 +a ||| see how , at ||| 0.5 0.204175 1.49697e-06 1.02498e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| see in ||| 0.0123967 0.0587624 4.49091e-06 4.23341e-05 2.718 ||| 0-1 ||| 242 668016 +a ||| see into ||| 0.5 0.107578 1.49697e-06 4.27995e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| see on ||| 0.0285714 0.0782999 1.49697e-06 2.67294e-05 2.718 ||| 0-1 ||| 35 668016 +a ||| see that , in ||| 0.0666667 0.0587624 1.49697e-06 8.49246e-08 2.718 ||| 0-3 ||| 15 668016 +a ||| see to it that ||| 0.00990099 0.229811 2.99394e-06 7.38349e-08 2.718 ||| 0-1 ||| 202 668016 +a ||| see to it ||| 0.0163934 0.229811 4.49091e-06 4.38929e-06 2.718 ||| 0-1 ||| 183 668016 +a ||| see to ||| 0.0119522 0.229811 4.49091e-06 0.000246823 2.718 ||| 0-1 ||| 251 668016 +a ||| see why we feel like giving ||| 1 0.136521 1.49697e-06 5.97206e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| seed as ||| 1 0.0243476 1.49697e-06 4.3862e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| seeing on ||| 0.142857 0.0782999 1.49697e-06 2.02197e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| seeing things too much ||| 1 0.0117124 1.49697e-06 1.48782e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| seeing things too ||| 1 0.0117124 1.49697e-06 1.48233e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| seeing things ||| 0.0625 0.0117124 1.49697e-06 1.08915e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| seeing through ||| 0.0588235 0.230708 1.49697e-06 4.23687e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| seeing to it ||| 0.0833333 0.229811 1.49697e-06 3.32031e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| seeing to ||| 0.0454545 0.229811 1.49697e-06 1.86711e-05 2.718 ||| 0-1 ||| 22 668016 +a ||| seeing ||| 0.00164294 0.0117124 4.49091e-06 2.65e-05 2.718 ||| 0-0 ||| 1826 668016 +a ||| seek refuge in ||| 0.0625 0.0587624 1.49697e-06 1.04393e-11 2.718 ||| 0-2 ||| 16 668016 +a ||| seek to help ||| 0.333333 0.244893 1.49697e-06 1.60131e-07 2.718 ||| 0-1 0-2 ||| 3 668016 +a ||| seek to participate ||| 0.2 0.229811 1.49697e-06 5.86738e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| seek to ||| 0.00773196 0.229811 1.34727e-05 2.4346e-05 2.718 ||| 0-1 ||| 1164 668016 +a ||| seek treatment on the black market ||| 1 0.0782999 1.49697e-06 3.09837e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| seek treatment on the black ||| 1 0.0782999 1.49697e-06 1.37096e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| seek treatment on the ||| 1 0.0782999 1.49697e-06 9.79259e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| seek treatment on ||| 1 0.0782999 1.49697e-06 1.5951e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| seeker to be ||| 1 0.229811 1.49697e-06 6.98333e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| seeker to ||| 0.2 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| seeking only to ||| 0.2 0.229811 1.49697e-06 1.9769e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| seeking out ||| 0.0185185 0.0669777 1.49697e-06 2.07921e-07 2.718 ||| 0-1 ||| 54 668016 +a ||| seeking to achieve ||| 0.0285714 0.229811 1.49697e-06 4.05823e-09 2.718 ||| 0-1 ||| 35 668016 +a ||| seeking to ||| 0.00480769 0.229811 8.98182e-06 1.77603e-05 2.718 ||| 0-1 ||| 1248 668016 +a ||| seeks to achieve ||| 0.0217391 0.229811 1.49697e-06 2.07314e-09 2.718 ||| 0-1 ||| 46 668016 +a ||| seeks to help ||| 0.111111 0.244893 1.49697e-06 5.96746e-08 2.718 ||| 0-1 0-2 ||| 9 668016 +a ||| seeks to ||| 0.00310318 0.229811 5.98788e-06 9.07281e-06 2.718 ||| 0-1 ||| 1289 668016 +a ||| seem to be designed to ||| 1 0.229811 1.49697e-06 4.02684e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| seem to be ||| 0.00162866 0.229811 1.49697e-06 5.80251e-07 2.718 ||| 0-1 ||| 614 668016 +a ||| seem to capture ||| 0.5 0.229811 1.49697e-06 9.28509e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| seem to go ||| 0.25 0.229811 1.49697e-06 1.87239e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| seem to have ||| 0.00561798 0.229811 1.49697e-06 3.82924e-07 2.718 ||| 0-1 ||| 178 668016 +a ||| seem to me ||| 0.00775194 0.229811 1.49697e-06 1.92778e-08 2.718 ||| 0-1 ||| 129 668016 +a ||| seem to ||| 0.0121766 0.229811 2.39515e-05 3.20176e-05 2.718 ||| 0-1 ||| 1314 668016 +a ||| seemed to go totally ||| 1 0.229811 1.49697e-06 1.01773e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| seemed to go ||| 1 0.229811 1.49697e-06 2.35585e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| seemed to ||| 0.0047619 0.229811 1.49697e-06 4.02847e-06 2.718 ||| 0-1 ||| 210 668016 +a ||| seemingly in ||| 0.25 0.0587624 1.49697e-06 6.60907e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| seems to allow ||| 0.142857 0.229811 1.49697e-06 1.0215e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| seems to be , ' ||| 1 0.229811 1.49697e-06 3.12582e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| seems to be , ||| 0.333333 0.229811 1.49697e-06 9.10018e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| seems to be making ||| 0.0833333 0.229811 1.49697e-06 2.9356e-10 2.718 ||| 0-1 ||| 12 668016 +a ||| seems to be ||| 0.00265018 0.229811 4.49091e-06 7.63087e-07 2.718 ||| 0-1 ||| 1132 668016 +a ||| seems to me that ||| 0.00401606 0.229811 1.49697e-06 4.26464e-10 2.718 ||| 0-1 ||| 249 668016 +a ||| seems to me to be a ||| 0.0138889 0.229811 1.49697e-06 1.80966e-12 2.718 ||| 0-1 ||| 72 668016 +a ||| seems to me to be ||| 0.00303951 0.229811 1.49697e-06 4.08263e-11 2.718 ||| 0-1 ||| 329 668016 +a ||| seems to me to ||| 0.00518135 0.229811 1.49697e-06 2.25275e-09 2.718 ||| 0-1 ||| 193 668016 +a ||| seems to me ||| 0.00426743 0.229811 4.49091e-06 2.53522e-08 2.718 ||| 0-1 ||| 703 668016 +a ||| seems to ||| 0.0101609 0.229811 3.59273e-05 4.21063e-05 2.718 ||| 0-1 ||| 2362 668016 +a ||| seen alongside ||| 1 0.155101 1.49697e-06 7.85797e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| seen as all ||| 0.333333 0.0243476 1.49697e-06 8.72588e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| seen as highly negative . in ||| 1 0.0587624 1.49697e-06 5.53424e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| seen as subjects ||| 0.5 0.0243476 1.49697e-06 4.39488e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| seen as ||| 0.00430108 0.0243476 5.98788e-06 1.84659e-06 2.718 ||| 0-1 ||| 930 668016 +a ||| seen at work ||| 0.333333 0.204175 1.49697e-06 4.5351e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| seen at ||| 0.037037 0.204175 1.49697e-06 7.16445e-06 2.718 ||| 0-1 ||| 27 668016 +a ||| seen by ||| 0.00990099 0.0337966 1.49697e-06 1.73189e-06 2.718 ||| 0-1 ||| 101 668016 +a ||| seen from ||| 0.0104712 0.0435582 2.99394e-06 1.51535e-06 2.718 ||| 0-1 ||| 191 668016 +a ||| seen in the light of ||| 0.111111 0.0587624 1.49697e-06 7.33621e-12 2.718 ||| 0-1 ||| 9 668016 +a ||| seen in the light ||| 0.1 0.0587624 1.49697e-06 1.34946e-10 2.718 ||| 0-1 ||| 10 668016 +a ||| seen in the ||| 0.00362319 0.0587624 1.49697e-06 7.76445e-07 2.718 ||| 0-1 ||| 276 668016 +a ||| seen in ||| 0.00550964 0.0587624 5.98788e-06 1.26474e-05 2.718 ||| 0-1 ||| 726 668016 +a ||| seen most clearly from the ||| 1 0.0435582 1.49697e-06 7.33787e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| seen most clearly from ||| 1 0.0435582 1.49697e-06 1.19525e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| seen to ||| 0.019802 0.229811 5.98788e-06 7.37385e-05 2.718 ||| 0-1 ||| 202 668016 +a ||| seen within the ||| 0.125 0.0064075 1.49697e-06 1.60457e-10 2.718 ||| 0-1 0-2 ||| 8 668016 +a ||| seize upon ||| 0.0588235 0.19056 1.49697e-06 1.28148e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| seized upon ||| 0.0666667 0.19056 1.49697e-06 1.55749e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| selection by ||| 0.1 0.0337966 1.49697e-06 4.77195e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| sell to ||| 0.0555556 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| selling them to ||| 0.5 0.229811 1.49697e-06 6.10772e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| send a message to ||| 0.0344828 0.229811 1.49697e-06 4.81983e-11 2.718 ||| 0-3 ||| 29 668016 +a ||| send back to ||| 0.166667 0.229811 1.49697e-06 1.51735e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| send greetings to ||| 0.333333 0.229811 1.49697e-06 9.02377e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| send in ||| 0.0666667 0.0587624 1.49697e-06 3.86931e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| send out a ||| 0.00301205 0.0669777 1.49697e-06 1.17066e-08 2.718 ||| 0-1 ||| 332 668016 +a ||| send out ||| 0.00521739 0.0669777 4.49091e-06 2.64104e-07 2.718 ||| 0-1 ||| 575 668016 +a ||| send to ||| 0.0212766 0.229811 2.99394e-06 2.25594e-05 2.718 ||| 0-1 ||| 94 668016 +a ||| sending a ||| 0.00393701 0.0167247 1.49697e-06 9.70735e-07 2.718 ||| 0-0 ||| 254 668016 +a ||| sending of ||| 0.0208333 0.0177863 1.49697e-06 6.47769e-07 2.718 ||| 0-0 0-1 ||| 48 668016 +a ||| sending people back ||| 0.25 0.0167247 1.49697e-06 1.29653e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| sending people ||| 0.0909091 0.0167247 1.49697e-06 1.92764e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| sending them to ||| 0.125 0.229811 1.49697e-06 2.16119e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| sending ||| 0.00568643 0.0167247 1.04788e-05 2.19e-05 2.718 ||| 0-0 ||| 1231 668016 +a ||| sends ||| 0.00229885 0.0029851 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 435 668016 +a ||| sense , in ||| 0.0909091 0.0587624 1.49697e-06 1.27611e-06 2.718 ||| 0-2 ||| 11 668016 +a ||| sense of ||| 0.00131752 0.0188479 4.49091e-06 5.26793e-06 2.718 ||| 0-1 ||| 2277 668016 +a ||| sense simply to hope for ||| 0.333333 0.0683377 1.49697e-06 2.26636e-14 2.718 ||| 0-4 ||| 3 668016 +a ||| sense to ||| 0.00421053 0.229811 2.99394e-06 6.23887e-05 2.718 ||| 0-1 ||| 475 668016 +a ||| sensitive both to ||| 0.5 0.229811 1.49697e-06 1.12573e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| sensitive with ||| 0.142857 0.0571592 1.49697e-06 3.23885e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| sensitivity to movements ||| 0.111111 0.229811 1.49697e-06 2.00863e-11 2.718 ||| 0-1 ||| 9 668016 +a ||| sensitivity to ||| 0.010989 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 91 668016 +a ||| sent abroad , ||| 1 0.0151564 1.49697e-06 4.2463e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| sent abroad ||| 0.5 0.0151564 1.49697e-06 3.5607e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| sent an invite ||| 0.5 0.330028 1.49697e-06 1.70427e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| sent on a ||| 1 0.0782999 1.49697e-06 1.0106e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| sent on ||| 0.0714286 0.0782999 1.49697e-06 2.27993e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| sent out from factories to ||| 1 0.229811 1.49697e-06 5.19463e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| sent through ||| 0.142857 0.230708 1.49697e-06 4.77741e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| sent to Parliament ||| 0.0344828 0.229811 1.49697e-06 1.20845e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| sent to ||| 0.0311688 0.229811 1.79636e-05 2.10531e-05 2.718 ||| 0-1 ||| 385 668016 +a ||| sent ||| 0.00188413 0.0151564 5.98788e-06 4.29e-05 2.718 ||| 0-0 ||| 2123 668016 +a ||| sentenced as ||| 0.5 0.0243476 1.49697e-06 2.1931e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| sentenced ||| 0.00378072 0.027027 2.99394e-06 1.46e-05 2.718 ||| 0-0 ||| 529 668016 +a ||| sentences ||| 0.00125 0.0270588 1.49697e-06 2.1e-05 2.718 ||| 0-0 ||| 800 668016 +a ||| sentencing her to ||| 0.333333 0.229811 1.49697e-06 1.04849e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| sentiments to ||| 0.333333 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| separate funding is to be made ||| 0.5 0.229811 1.49697e-06 7.99754e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| separate funding is to be ||| 0.5 0.229811 1.49697e-06 3.81781e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| separate funding is to ||| 0.5 0.229811 1.49697e-06 2.10662e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| separating ||| 0.00425532 0.0045662 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 235 668016 +a ||| series of ||| 0.00111649 0.0188479 4.49091e-06 1.18018e-06 2.718 ||| 0-1 ||| 2687 668016 +a ||| serious clashes with ||| 1 0.0571592 1.49697e-06 4.23121e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| serious mistakes are made in ||| 0.333333 0.0587624 1.49697e-06 1.09996e-15 2.718 ||| 0-4 ||| 3 668016 +a ||| serious situation of their public finances ||| 1 0.0188479 1.49697e-06 1.77497e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| serious situation of their public ||| 1 0.0188479 1.49697e-06 3.28699e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| serious situation of their ||| 1 0.0188479 1.49697e-06 2.03403e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| serious situation of ||| 0.2 0.0188479 1.49697e-06 1.75483e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| serious threat to ||| 0.00662252 0.229811 1.49697e-06 1.58191e-09 2.718 ||| 0-2 ||| 151 668016 +a ||| serious work being carried out on them ||| 1 0.0782999 1.49697e-06 2.38372e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| serious work being carried out on ||| 1 0.0782999 1.49697e-06 8.88652e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| seriously affect water ||| 1 0.330659 1.49697e-06 3.74891e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| seriously affect ||| 0.03125 0.330659 1.49697e-06 6.5886e-08 2.718 ||| 0-1 ||| 32 668016 +a ||| seriously get to ||| 1 0.229811 1.49697e-06 6.38643e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| serve , ||| 0.05 0.122168 1.49697e-06 5.22455e-05 2.718 ||| 0-0 ||| 20 668016 +a ||| serve as an encouragement to ||| 1 0.229811 1.49697e-06 1.02154e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| serve as such in ||| 0.5 0.0587624 1.49697e-06 8.67623e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| serve to increase ||| 0.0625 0.229811 1.49697e-06 3.09571e-09 2.718 ||| 0-1 ||| 16 668016 +a ||| serve to offer the ||| 0.333333 0.229811 1.49697e-06 1.68281e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| serve to offer ||| 0.333333 0.229811 1.49697e-06 2.7411e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| serve to underpin ||| 0.2 0.229811 1.49697e-06 5.99016e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| serve to ||| 0.0238095 0.229811 1.34727e-05 2.39606e-05 2.718 ||| 0-1 ||| 378 668016 +a ||| serve ||| 0.0105718 0.122168 3.29333e-05 0.0004381 2.718 ||| 0-0 ||| 2081 668016 +a ||| served by ||| 0.0104167 0.0337966 1.49697e-06 1.86764e-07 2.718 ||| 0-1 ||| 96 668016 +a ||| served for ||| 1 0.0683377 1.49697e-06 8.36461e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| served up in ||| 0.25 0.0587624 1.49697e-06 4.65149e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| served ||| 0.0015083 0.0159046 1.49697e-06 1.46e-05 2.718 ||| 0-0 ||| 663 668016 +a ||| serves the ||| 0.00671141 0.12883 1.49697e-06 9.19035e-06 2.718 ||| 0-0 ||| 149 668016 +a ||| serves to ||| 0.00896861 0.229811 2.99394e-06 6.93597e-06 2.718 ||| 0-1 ||| 223 668016 +a ||| serves ||| 0.013245 0.12883 1.49697e-05 0.0001497 2.718 ||| 0-0 ||| 755 668016 +a ||| service at ||| 0.0416667 0.204175 1.49697e-06 2.27697e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| service of ||| 0.002331 0.0188479 1.49697e-06 1.9788e-06 2.718 ||| 0-1 ||| 429 668016 +a ||| service to ||| 0.0108108 0.229811 2.99394e-06 2.34352e-05 2.718 ||| 0-1 ||| 185 668016 +a ||| services - video on ||| 1 0.0782999 1.49697e-06 3.67258e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| services all ||| 0.5 0.0038996 1.49697e-06 4.89493e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| services at an ||| 0.25 0.204175 1.49697e-06 1.3388e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| services at ||| 0.0163934 0.204175 1.49697e-06 3.01213e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| services more to ||| 0.5 0.229811 1.49697e-06 7.07986e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| services to ||| 0.0100251 0.229811 5.98788e-06 3.10017e-05 2.718 ||| 0-1 ||| 399 668016 +a ||| serving ||| 0.013834 0.156373 1.04788e-05 0.0001086 2.718 ||| 0-0 ||| 506 668016 +a ||| session to ||| 0.0666667 0.229811 1.49697e-06 7.70664e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| set about ||| 0.0493827 0.0526361 5.98788e-06 2.94497e-06 2.718 ||| 0-1 ||| 81 668016 +a ||| set against ||| 0.0140845 0.05146 1.49697e-06 1.51915e-06 2.718 ||| 0-1 ||| 71 668016 +a ||| set aside as people ||| 0.25 0.0243476 1.49697e-06 3.18126e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| set aside as ||| 0.111111 0.0243476 1.49697e-06 3.61425e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| set aside in ||| 0.0384615 0.0587624 1.49697e-06 2.47541e-09 2.718 ||| 0-2 ||| 26 668016 +a ||| set aside ||| 0.00343643 0.047402 2.99394e-06 5.54596e-08 2.718 ||| 0-1 ||| 582 668016 +a ||| set at a ||| 0.047619 0.204175 1.49697e-06 8.81653e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| set at zero ||| 0.166667 0.204175 1.49697e-06 4.97257e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| set at ||| 0.0118577 0.204175 4.49091e-06 1.98903e-05 2.718 ||| 0-1 ||| 253 668016 +a ||| set foot in Spain on ||| 1 0.0782999 1.49697e-06 1.71428e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| set for its ||| 0.166667 0.0683377 1.49697e-06 3.06799e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| set for ||| 0.010989 0.0683377 5.98788e-06 2.15343e-05 2.718 ||| 0-1 ||| 364 668016 +a ||| set goals for ||| 0.333333 0.0683377 1.49697e-06 2.71332e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| set in ||| 0.00323625 0.0587624 2.99394e-06 3.51122e-05 2.718 ||| 0-1 ||| 618 668016 +a ||| set of measures designed to serve ||| 1 0.229811 1.49697e-06 1.23007e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| set of measures designed to ||| 0.166667 0.229811 1.49697e-06 1.79835e-13 2.718 ||| 0-4 ||| 6 668016 +a ||| set off for ||| 0.0588235 0.0683377 1.49697e-06 8.76445e-09 2.718 ||| 0-2 ||| 17 668016 +a ||| set out in ||| 0.00129955 0.0587624 2.99394e-06 1.34494e-07 2.718 ||| 0-2 ||| 1539 668016 +a ||| set out some ||| 0.0434783 0.0669777 1.49697e-06 2.61064e-09 2.718 ||| 0-1 ||| 23 668016 +a ||| set out to achieve this ||| 0.5 0.229811 1.49697e-06 1.15774e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| set out to achieve ||| 0.0555556 0.229811 1.49697e-06 1.79177e-10 2.718 ||| 0-2 ||| 18 668016 +a ||| set out to ||| 0.0394737 0.229811 4.49091e-06 7.84145e-07 2.718 ||| 0-2 ||| 76 668016 +a ||| set out ||| 0.000636132 0.0669777 2.99394e-06 2.39662e-06 2.718 ||| 0-1 ||| 3144 668016 +a ||| set to face shortly ||| 1 0.229811 1.49697e-06 4.17838e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| set to face ||| 0.5 0.229811 1.49697e-06 3.4249e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| set to wind up ||| 0.25 0.229811 1.49697e-06 1.50808e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| set to wind ||| 0.25 0.229811 1.49697e-06 4.42187e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| set to ||| 0.0313316 0.229811 1.79636e-05 0.000204716 2.718 ||| 0-1 ||| 383 668016 +a ||| set up at ||| 0.0681818 0.204175 4.49091e-06 6.78358e-08 2.718 ||| 0-2 ||| 44 668016 +a ||| set up for ||| 0.0151515 0.0683377 1.49697e-06 7.34426e-08 2.718 ||| 0-2 ||| 66 668016 +a ||| set up in ||| 0.00401606 0.0587624 1.49697e-06 1.1975e-07 2.718 ||| 0-2 ||| 249 668016 +a ||| set up to ||| 0.016 0.229811 2.99394e-06 6.98185e-07 2.718 ||| 0-2 ||| 125 668016 +a ||| set up ||| 0.000648649 0.0195077 4.49091e-06 7.17409e-07 2.718 ||| 0-1 ||| 4625 668016 +a ||| set-aside to ||| 0.25 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| setback within ||| 1 0.0123496 1.49697e-06 8.9532e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| sets and saw ||| 1 0.0015873 1.49697e-06 4.05411e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| sets and ||| 0.333333 0.0015873 1.49697e-06 7.56364e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| sets off ||| 0.0769231 0.0893962 1.49697e-06 2.99841e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| sets out to ||| 0.0212766 0.229811 1.49697e-06 5.25984e-08 2.718 ||| 0-2 ||| 47 668016 +a ||| setting a charge for ||| 1 0.0683377 1.49697e-06 7.82043e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| setting about ||| 0.166667 0.0526361 1.49697e-06 4.78734e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| setting ourselves is to ||| 1 0.229811 1.49697e-06 3.31775e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| setting out ||| 0.001321 0.0669777 1.49697e-06 3.89595e-07 2.718 ||| 0-1 ||| 757 668016 +a ||| setting those out ||| 0.166667 0.018252 1.49697e-06 3.65671e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| setting those ||| 0.166667 0.018252 1.49697e-06 9.54655e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| setting up ||| 0.0004095 0.0195077 1.49697e-06 1.16622e-07 2.718 ||| 0-1 ||| 2442 668016 +a ||| settled down ||| 0.2 0.0226513 1.49697e-06 6.06066e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| settled for ||| 0.0588235 0.0683377 1.49697e-06 6.11685e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| settled in ||| 0.0263158 0.0587624 1.49697e-06 9.97369e-07 2.718 ||| 0-1 ||| 38 668016 +a ||| settlement upon ||| 1 0.19056 1.49697e-06 1.63635e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| settlement will ||| 0.25 0.0561595 1.49697e-06 1.16895e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| settlements under ||| 0.25 0.0384416 1.49697e-06 2.55312e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| several of the ||| 0.00564972 0.0188479 1.49697e-06 1.1894e-07 2.718 ||| 0-1 ||| 177 668016 +a ||| several of ||| 0.00408998 0.0188479 2.99394e-06 1.93739e-06 2.718 ||| 0-1 ||| 489 668016 +a ||| several times on ||| 0.0714286 0.0782999 1.49697e-06 2.52205e-10 2.718 ||| 0-2 ||| 14 668016 +a ||| several ||| 0.000391389 0.0010368 5.98788e-06 9.1e-06 2.718 ||| 0-0 ||| 10220 668016 +a ||| severe ||| 0.00211416 0.0019493 4.49091e-06 2.7e-06 2.718 ||| 0-0 ||| 1419 668016 +a ||| sex killers and child rapists , for ||| 1 0.0683377 1.49697e-06 4.00825e-27 2.718 ||| 0-6 ||| 1 668016 +a ||| sex to ||| 0.2 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| shadow rapporteurs , ||| 0.00316456 0.0006602 1.49697e-06 4.41123e-12 2.718 ||| 0-1 ||| 316 668016 +a ||| shadow rapporteurs ||| 0.000867303 0.0006602 1.49697e-06 3.699e-11 2.718 ||| 0-1 ||| 1153 668016 +a ||| shake their heads in ||| 1 0.0587624 1.49697e-06 8.10629e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| shall add to ||| 0.5 0.229811 1.49697e-06 1.57009e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| shall address him and ||| 1 0.131911 1.49697e-06 7.40001e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| shall address him ||| 0.333333 0.131911 1.49697e-06 5.90776e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| shall address ||| 0.166667 0.131911 1.49697e-06 1.84272e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| shall all ||| 0.0833333 0.0679053 1.49697e-06 1.33579e-06 2.718 ||| 0-0 0-1 ||| 12 668016 +a ||| shall also continue to ||| 0.5 0.229811 1.49697e-06 2.2369e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| shall also try to ||| 0.25 0.229811 1.49697e-06 1.48869e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| shall apply ||| 0.0243902 0.131911 1.49697e-06 3.47533e-07 2.718 ||| 0-0 ||| 41 668016 +a ||| shall ask ||| 0.1 0.0082577 1.49697e-06 8.03502e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| shall be accepted ||| 1 0.131911 1.49697e-06 2.69177e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| shall be advancing ||| 1 0.131911 1.49697e-06 1.09422e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| shall be assisted ||| 0.5 0.0687623 1.49697e-06 3.16001e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| shall be convening ||| 0.25 0.131911 1.49697e-06 1.75074e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| shall be doing ||| 0.1 0.131911 1.49697e-06 1.60675e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| shall be inviting ||| 1 0.350943 1.49697e-06 1.68203e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| shall be regarding ||| 1 0.186429 1.49697e-06 3.33366e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| shall be ||| 0.0179104 0.131911 1.79636e-05 4.37686e-05 2.718 ||| 0-0 ||| 670 668016 +a ||| shall begin to give ||| 1 0.229811 1.49697e-06 6.84599e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| shall begin to ||| 1 0.229811 1.49697e-06 1.1297e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| shall certainly make ||| 1 0.131911 1.49697e-06 1.05134e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| shall certainly ||| 0.0344828 0.131911 1.49697e-06 6.04983e-07 2.718 ||| 0-0 ||| 29 668016 +a ||| shall consider in ||| 1 0.0587624 1.49697e-06 5.22502e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| shall duly inform ||| 0.5 0.130026 1.49697e-06 2.45695e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| shall find ||| 0.0434783 0.131911 1.49697e-06 8.03987e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| shall give up ||| 1 0.0241455 1.49697e-06 1.04823e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| shall give ||| 0.0714286 0.0241455 4.49091e-06 3.07353e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| shall have established ||| 0.5 0.131911 1.49697e-06 4.32395e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| shall have to ||| 0.0272727 0.229811 4.49091e-06 2.29e-06 2.718 ||| 0-2 ||| 110 668016 +a ||| shall have ||| 0.00754717 0.131911 2.99394e-06 2.88841e-05 2.718 ||| 0-0 ||| 265 668016 +a ||| shall in ||| 0.05 0.0587624 1.49697e-06 3.28411e-05 2.718 ||| 0-1 ||| 20 668016 +a ||| shall just come out and say it ||| 1 0.131911 1.49697e-06 2.11049e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| shall just come out and say ||| 1 0.131911 1.49697e-06 1.18679e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| shall just come out and ||| 1 0.131911 1.49697e-06 1.24167e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| shall just come out ||| 1 0.131911 1.49697e-06 9.9128e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| shall just come ||| 1 0.131911 1.49697e-06 2.58793e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| shall just mention the two that I ||| 1 0.131911 1.49697e-06 5.11466e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| shall just mention the two that ||| 1 0.131911 1.49697e-06 7.23074e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| shall just mention the two ||| 1 0.131911 1.49697e-06 4.29848e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| shall just mention the ||| 1 0.131911 1.49697e-06 1.81831e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| shall just mention ||| 0.333333 0.131911 1.49697e-06 2.96181e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| shall just ||| 0.0909091 0.131911 2.99394e-06 3.04713e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| shall moan and ||| 1 0.131911 1.49697e-06 1.21005e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| shall moan ||| 1 0.131911 1.49697e-06 9.6604e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| shall need to ||| 0.0769231 0.229811 1.49697e-06 1.75563e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| shall not have ||| 0.0909091 0.131911 1.49697e-06 9.86133e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| shall not ||| 0.0121951 0.131911 4.49091e-06 8.24539e-06 2.718 ||| 0-0 ||| 246 668016 +a ||| shall of ||| 0.142857 0.0188479 1.49697e-06 1.61676e-05 2.718 ||| 0-1 ||| 7 668016 +a ||| shall only cover ||| 1 0.131911 1.49697e-06 2.09952e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| shall only ||| 0.047619 0.131911 1.49697e-06 2.68825e-06 2.718 ||| 0-0 ||| 21 668016 +a ||| shall pass on to ||| 0.333333 0.229811 1.49697e-06 7.32823e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| shall read out on ||| 1 0.0782999 1.49697e-06 3.82832e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| shall refer to them ||| 0.333333 0.229811 1.49697e-06 4.01131e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| shall refer to ||| 0.0625 0.229811 1.49697e-06 1.49542e-08 2.718 ||| 0-2 ||| 16 668016 +a ||| shall reply to ||| 0.2 0.229811 1.49697e-06 5.51448e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| shall run ||| 0.142857 0.131911 1.49697e-06 2.56484e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| shall shortly ||| 0.1 0.131911 1.49697e-06 2.94642e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| shall string ||| 0.25 0.131911 1.49697e-06 3.38114e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| shall support it ||| 0.0833333 0.131911 1.49697e-06 1.4684e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| shall support ||| 0.0238095 0.131911 1.49697e-06 8.25723e-07 2.718 ||| 0-0 ||| 42 668016 +a ||| shall ultimately ||| 1 0.131911 1.49697e-06 1.48529e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| shall vote in ||| 0.0285714 0.0587624 1.49697e-06 5.1659e-09 2.718 ||| 0-2 ||| 35 668016 +a ||| shall ||| 0.0716087 0.131911 0.00021257 0.0024151 2.718 ||| 0-0 ||| 1983 668016 +a ||| shame on ||| 0.0131579 0.0782999 1.49697e-06 2.88311e-07 2.718 ||| 0-1 ||| 76 668016 +a ||| shame ||| 0.00111111 0.0010173 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 900 668016 +a ||| shape affairs at ||| 1 0.204175 1.49697e-06 2.52039e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| shape of ||| 0.00283286 0.0188479 1.49697e-06 1.7895e-06 2.718 ||| 0-1 ||| 353 668016 +a ||| shape ||| 0.000765697 0.000609 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1306 668016 +a ||| shaped by ||| 0.0273973 0.0337966 2.99394e-06 3.291e-08 2.718 ||| 0-1 ||| 73 668016 +a ||| share of ||| 0.00121507 0.0188479 1.49697e-06 2.76855e-06 2.718 ||| 0-1 ||| 823 668016 +a ||| share to ||| 0.136364 0.229811 4.49091e-06 3.27882e-05 2.718 ||| 0-1 ||| 22 668016 +a ||| share trades to ||| 0.2 0.229811 1.49697e-06 7.21341e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| shared by ||| 0.00194553 0.0337966 1.49697e-06 2.22142e-07 2.718 ||| 0-1 ||| 514 668016 +a ||| shared duty , of ||| 1 0.0188479 1.49697e-06 7.09532e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| shared on an equal footing with the ||| 1 0.0782999 1.49697e-06 2.20811e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| shared on an equal footing with ||| 1 0.0782999 1.49697e-06 3.59674e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| shared on an equal footing ||| 1 0.0782999 1.49697e-06 5.62475e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| shared on an equal ||| 1 0.0782999 1.49697e-06 2.60405e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| shared on an ||| 1 0.0782999 1.49697e-06 4.55253e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| shared on ||| 0.25 0.0782999 1.49697e-06 1.02426e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| sharing of ||| 0.00632911 0.0188479 2.99394e-06 3.51984e-07 2.718 ||| 0-1 ||| 316 668016 +a ||| sharp increase in ||| 0.0294118 0.0587624 1.49697e-06 1.03243e-10 2.718 ||| 0-2 ||| 34 668016 +a ||| she bestowed on ||| 1 0.0782999 1.49697e-06 1.18636e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| she feels is more appropriately directed towards ||| 1 0.155507 1.49697e-06 1.99165e-25 2.718 ||| 0-6 ||| 1 668016 +a ||| she has put into ||| 0.0204082 0.107578 1.49697e-06 9.80138e-12 2.718 ||| 0-3 ||| 49 668016 +a ||| she has shown for ||| 0.25 0.0683377 1.49697e-06 5.62981e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| she has to ||| 0.0454545 0.229811 1.49697e-06 5.12643e-07 2.718 ||| 0-2 ||| 22 668016 +a ||| she made to ||| 1 0.229811 1.49697e-06 2.08623e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| she take it back and put it ||| 1 0.0015873 1.49697e-06 2.0713e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| she take it back and put ||| 1 0.0015873 1.49697e-06 1.16475e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| she take it back and ||| 1 0.0015873 1.49697e-06 1.05637e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| she urged ||| 0.111111 0.319117 1.49697e-06 1.08716e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| she was on the way to ||| 1 0.0782999 1.49697e-06 3.97338e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| she was on the way ||| 1 0.0782999 1.49697e-06 4.4716e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| she was on the ||| 1 0.0782999 1.49697e-06 2.07441e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| she was on ||| 1 0.0782999 1.49697e-06 3.37897e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| sheep farming at ||| 1 0.204175 1.49697e-06 1.61192e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| shield for ||| 0.333333 0.0683377 1.49697e-06 9.21213e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| shield them off ||| 0.25 0.0893962 1.49697e-06 5.12942e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| shift from ||| 0.0149254 0.0435582 1.49697e-06 1.42536e-07 2.718 ||| 0-1 ||| 67 668016 +a ||| shift in ||| 0.0155039 0.0587624 2.99394e-06 1.18963e-06 2.718 ||| 0-1 ||| 129 668016 +a ||| shifted onto ||| 0.0833333 0.207143 1.49697e-06 1.02426e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| ship to be there ||| 0.5 0.229811 1.49697e-06 2.93846e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| ship to be ||| 0.25 0.229811 1.49697e-06 9.58621e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| ship to ||| 0.0714286 0.229811 1.49697e-06 5.28955e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| shipped out to ||| 1 0.229811 1.49697e-06 5.36718e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| shock at her first ||| 1 0.204175 1.49697e-06 4.48753e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| shock at her ||| 1 0.204175 1.49697e-06 8.33493e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| shock at ||| 0.111111 0.204175 1.49697e-06 3.06319e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| shocked very ||| 1 0.0018248 1.49697e-06 3.13155e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| shocked ||| 0.00343643 0.0018248 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 291 668016 +a ||| shocking for ||| 0.333333 0.0683377 1.49697e-06 1.73188e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| shocks to ||| 0.333333 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| shop from ||| 0.5 0.0435582 1.49697e-06 9.35844e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| shop policy , in ||| 1 0.0587624 1.49697e-06 3.66718e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| shop to have ||| 0.333333 0.229811 1.49697e-06 5.4464e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| shop to ||| 0.333333 0.229811 1.49697e-06 4.55392e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| shopping , which enables the customer to ||| 1 0.229811 1.49697e-06 6.5127e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| shopping around ||| 0.166667 0.0931303 1.49697e-06 4.8843e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| short distance to ||| 0.5 0.180674 1.49697e-06 7.48827e-09 2.718 ||| 0-1 0-2 ||| 2 668016 +a ||| short distance ||| 0.0588235 0.131537 1.49697e-06 2.13766e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| short of what is required to satisfy ||| 1 0.116324 1.49697e-06 5.16589e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| short of ||| 0.0094162 0.0188479 7.48485e-06 4.17353e-06 2.718 ||| 0-1 ||| 531 668016 +a ||| short shrift given to ||| 0.25 0.229811 1.49697e-06 2.37455e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| short term ||| 0.000929368 0.0023121 1.49697e-06 2.31404e-09 2.718 ||| 0-1 ||| 1076 668016 +a ||| short while ago ||| 0.025 0.0377813 1.49697e-06 1.42364e-11 2.718 ||| 0-1 ||| 40 668016 +a ||| short while ||| 0.0133333 0.0377813 1.49697e-06 1.29304e-07 2.718 ||| 0-1 ||| 75 668016 +a ||| short-term , ||| 0.0178571 0.295541 1.49697e-06 0.00011037 2.718 ||| 0-0 ||| 56 668016 +a ||| short-term ||| 0.00312256 0.295541 5.98788e-06 0.0009255 2.718 ||| 0-0 ||| 1281 668016 +a ||| shortage of ||| 0.00229885 0.0188479 1.49697e-06 2.54375e-07 2.718 ||| 0-1 ||| 435 668016 +a ||| shortcomings in ||| 0.0060423 0.0587624 2.99394e-06 6.48891e-07 2.718 ||| 0-1 ||| 331 668016 +a ||| shortcomings of ||| 0.00819672 0.0188479 1.49697e-06 3.19448e-07 2.718 ||| 0-1 ||| 122 668016 +a ||| shortcut to ||| 0.333333 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| shot dead ||| 0.0208333 0.101655 1.49697e-06 9.7216e-10 2.718 ||| 0-0 ||| 48 668016 +a ||| shot in ||| 0.0444444 0.0587624 2.99394e-06 6.72924e-07 2.718 ||| 0-1 ||| 45 668016 +a ||| shot ||| 0.0110497 0.101655 2.99394e-06 3.92e-05 2.718 ||| 0-0 ||| 181 668016 +a ||| should , in due course , ||| 0.25 0.0587624 1.49697e-06 1.32037e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| should , in due course ||| 0.25 0.0587624 1.49697e-06 1.10718e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| should , in due ||| 0.333333 0.0587624 1.49697e-06 8.77533e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| should , in the ||| 0.0555556 0.0587624 1.49697e-06 1.94911e-06 2.718 ||| 0-2 ||| 18 668016 +a ||| should , in ||| 0.0248447 0.0587624 5.98788e-06 3.17486e-05 2.718 ||| 0-2 ||| 161 668016 +a ||| should , on ||| 0.0454545 0.0782999 1.49697e-06 2.00458e-05 2.718 ||| 0-2 ||| 22 668016 +a ||| should again like to ||| 0.2 0.229811 1.49697e-06 1.5941e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| should also be pointed out ||| 0.0625 0.0669777 1.49697e-06 7.66463e-14 2.718 ||| 0-4 ||| 16 668016 +a ||| should also involve dialogue with other institutions ||| 1 0.0571592 1.49697e-06 4.90898e-23 2.718 ||| 0-4 ||| 1 668016 +a ||| should also involve dialogue with other ||| 1 0.0571592 1.49697e-06 9.35044e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| should also involve dialogue with ||| 1 0.0571592 1.49697e-06 7.21763e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| should also like to thank ||| 0.00934579 0.229811 1.49697e-06 1.47238e-12 2.718 ||| 0-3 ||| 107 668016 +a ||| should also like to ||| 0.00961538 0.229811 2.99394e-06 1.39166e-08 2.718 ||| 0-3 ||| 208 668016 +a ||| should and must also go for ||| 1 0.0683377 1.49697e-06 9.33267e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| should apply in ||| 0.027027 0.0587624 1.49697e-06 3.83099e-08 2.718 ||| 0-2 ||| 37 668016 +a ||| should apply to ||| 0.00645161 0.229811 1.49697e-06 2.2336e-07 2.718 ||| 0-2 ||| 155 668016 +a ||| should at ||| 0.0333333 0.204175 4.49091e-06 0.000150811 2.718 ||| 0-1 ||| 90 668016 +a ||| should be , at ||| 1 0.204175 1.49697e-06 3.25939e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| should be a means to ||| 0.333333 0.229811 1.49697e-06 7.90154e-10 2.718 ||| 0-4 ||| 3 668016 +a ||| should be able to acquire ||| 0.5 0.229811 1.49697e-06 3.89865e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| should be able to ||| 0.00156495 0.229811 1.49697e-06 2.34858e-08 2.718 ||| 0-3 ||| 639 668016 +a ||| should be about ||| 0.0333333 0.0526361 1.49697e-06 4.04669e-07 2.718 ||| 0-2 ||| 30 668016 +a ||| should be added to the ||| 0.0322581 0.229811 1.49697e-06 1.23132e-10 2.718 ||| 0-3 ||| 31 668016 +a ||| should be added to ||| 0.0232558 0.229811 1.49697e-06 2.00568e-09 2.718 ||| 0-3 ||| 43 668016 +a ||| should be allocated as ||| 0.25 0.0036337 1.49697e-06 7.4569e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| should be allocated ||| 0.0106383 0.0036337 1.49697e-06 7.30753e-10 2.718 ||| 0-2 ||| 94 668016 +a ||| should be appropriated to ||| 1 0.229811 1.49697e-06 7.03253e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| should be approved and monitored by ||| 1 0.0337966 1.49697e-06 4.61405e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| should be assured of ||| 0.25 0.0188479 1.49697e-06 2.39898e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| should be at ||| 0.0104167 0.204175 1.49697e-06 2.73313e-06 2.718 ||| 0-2 ||| 96 668016 +a ||| should be caused to ||| 1 0.229811 1.49697e-06 2.38825e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| should be considered as ||| 0.0185185 0.0243476 1.49697e-06 7.57984e-11 2.718 ||| 0-3 ||| 54 668016 +a ||| should be deferred until ||| 0.333333 0.0268909 1.49697e-06 4.04741e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| should be displayed in ||| 0.25 0.0587624 1.49697e-06 8.49161e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| should be drawn up in ||| 0.166667 0.0587624 1.49697e-06 2.33824e-12 2.718 ||| 0-4 ||| 6 668016 +a ||| should be enabled to ||| 0.111111 0.229811 1.49697e-06 4.24765e-10 2.718 ||| 0-3 ||| 9 668016 +a ||| should be endowed with ||| 1 0.0571592 1.49697e-06 2.94945e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| should be financially beneficial for ||| 1 0.0683377 1.49697e-06 1.5387e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| should be forced to employ that ||| 1 0.229811 1.49697e-06 2.26849e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| should be forced to employ ||| 1 0.229811 1.49697e-06 1.34856e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| should be forced to ||| 0.153846 0.229811 2.99394e-06 1.98317e-09 2.718 ||| 0-3 ||| 13 668016 +a ||| should be from now on ||| 1 0.0435582 1.49697e-06 7.96759e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| should be from now ||| 1 0.0435582 1.49697e-06 1.19079e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| should be from ||| 0.333333 0.0435582 1.49697e-06 5.78082e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| should be given to ||| 0.030303 0.229811 4.49091e-06 1.93057e-08 2.718 ||| 0-3 ||| 99 668016 +a ||| should be grabbing by ||| 1 0.0337966 1.49697e-06 7.26758e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| should be handed over to ||| 0.2 0.229811 1.49697e-06 4.1853e-13 2.718 ||| 0-4 ||| 5 668016 +a ||| should be implemented in its entirety . ||| 1 0.0587624 1.49697e-06 1.5173e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| should be implemented in its entirety ||| 1 0.0587624 1.49697e-06 5.00926e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| should be implemented in its ||| 1 0.0587624 1.49697e-06 6.03525e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| should be implemented in ||| 0.0416667 0.0587624 1.49697e-06 4.23616e-10 2.718 ||| 0-3 ||| 24 668016 +a ||| should be labelled ||| 0.03125 0.0003124 1.49697e-06 4.31012e-12 2.718 ||| 0-1 ||| 32 668016 +a ||| should be limited to ||| 0.0322581 0.229811 2.99394e-06 1.09426e-09 2.718 ||| 0-3 ||| 62 668016 +a ||| should be linked to ||| 0.0188679 0.229811 1.49697e-06 1.17303e-09 2.718 ||| 0-3 ||| 53 668016 +a ||| should be made available for ||| 0.142857 0.0683377 1.49697e-06 1.97177e-12 2.718 ||| 0-4 ||| 7 668016 +a ||| should be noted in ||| 0.166667 0.0587624 1.49697e-06 1.47638e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| should be offered to ||| 1 0.229811 1.49697e-06 1.22366e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| should be paid back to ||| 0.5 0.229811 1.49697e-06 2.54667e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| should be paid by ||| 0.2 0.0337966 1.49697e-06 8.89288e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| should be paid to ||| 0.0555556 0.229811 1.49697e-06 3.78631e-09 2.718 ||| 0-3 ||| 18 668016 +a ||| should be preceded by ||| 0.0526316 0.0337966 1.49697e-06 1.45352e-12 2.718 ||| 0-3 ||| 19 668016 +a ||| should be presented at ||| 0.333333 0.204175 1.49697e-06 2.15371e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| should be provided for ||| 0.181818 0.0683377 2.99394e-06 6.7821e-10 2.718 ||| 0-3 ||| 11 668016 +a ||| should be required to ||| 0.0333333 0.229811 1.49697e-06 4.46425e-09 2.718 ||| 0-3 ||| 30 668016 +a ||| should be resolved at ||| 0.125 0.204175 1.49697e-06 7.07881e-11 2.718 ||| 0-3 ||| 8 668016 +a ||| should be responsible for ||| 0.0232558 0.0683377 1.49697e-06 4.3764e-10 2.718 ||| 0-3 ||| 43 668016 +a ||| should be restricted to ||| 0.0454545 0.229811 1.49697e-06 4.44456e-10 2.718 ||| 0-3 ||| 22 668016 +a ||| should be so ||| 0.0357143 0.0007673 1.49697e-06 6.4483e-09 2.718 ||| 0-2 ||| 28 668016 +a ||| should be subject to ||| 0.00588235 0.229811 1.49697e-06 1.51846e-08 2.718 ||| 0-3 ||| 170 668016 +a ||| should be taken at ||| 0.03125 0.204175 1.49697e-06 2.49125e-09 2.718 ||| 0-3 ||| 32 668016 +a ||| should be taken over ||| 0.25 0.0682544 1.49697e-06 1.70027e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| should be taken up again ||| 1 0.0700825 1.49697e-06 5.78752e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| should be to ||| 0.00588235 0.229811 2.99394e-06 2.81301e-05 2.718 ||| 0-2 ||| 340 668016 +a ||| should be treated ||| 0.00966184 0.016092 2.99394e-06 3.58952e-09 2.718 ||| 0-2 ||| 207 668016 +a ||| should be upgraded to ||| 0.2 0.229811 1.49697e-06 8.15773e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| should be within ||| 0.111111 0.0123496 1.49697e-06 3.99425e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| should be ||| 0.000145688 0.0003124 5.98788e-06 5.98628e-07 2.718 ||| 0-1 ||| 27456 668016 +a ||| should call it ||| 0.5 0.0032909 1.49697e-06 3.74287e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| should call ||| 0.0135135 0.0032909 1.49697e-06 2.10473e-07 2.718 ||| 0-1 ||| 74 668016 +a ||| should come into ||| 0.0294118 0.107578 1.49697e-06 2.28591e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| should compare him to ||| 1 0.229811 1.49697e-06 3.03555e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| should congratulate him ||| 0.5 0.245244 1.49697e-06 4.7301e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| should congratulate ||| 0.133333 0.245244 2.99394e-06 1.47539e-05 2.718 ||| 0-1 ||| 15 668016 +a ||| should continue to exist , subject to ||| 0.25 0.229811 1.49697e-06 1.89222e-16 2.718 ||| 0-2 ||| 4 668016 +a ||| should continue to exist , subject ||| 0.25 0.229811 1.49697e-06 2.12949e-15 2.718 ||| 0-2 ||| 4 668016 +a ||| should continue to exist , ||| 0.2 0.229811 1.49697e-06 3.94496e-12 2.718 ||| 0-2 ||| 5 668016 +a ||| should continue to exist ||| 0.1 0.229811 1.49697e-06 3.30801e-11 2.718 ||| 0-2 ||| 10 668016 +a ||| should continue to ||| 0.00344828 0.229811 1.49697e-06 3.59176e-07 2.718 ||| 0-2 ||| 290 668016 +a ||| should cover ||| 0.00746269 0.0050378 1.49697e-06 7.26684e-08 2.718 ||| 0-1 ||| 134 668016 +a ||| should depend on ||| 0.047619 0.0782999 1.49697e-06 3.0929e-09 2.718 ||| 0-2 ||| 21 668016 +a ||| should do - of ||| 1 0.0188479 1.49697e-06 1.69834e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| should do more to support such schemes ||| 1 0.229811 1.49697e-06 1.58491e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| should do more to support such ||| 1 0.229811 1.49697e-06 8.61363e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| should do more to support ||| 0.125 0.229811 1.49697e-06 4.16339e-12 2.718 ||| 0-3 ||| 8 668016 +a ||| should do more to ||| 0.05 0.229811 1.49697e-06 1.21772e-08 2.718 ||| 0-3 ||| 20 668016 +a ||| should embark on ||| 0.111111 0.0782999 1.49697e-06 1.32793e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| should equip ourselves with ||| 0.333333 0.0571592 1.49697e-06 7.53016e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| should give ||| 0.0025974 0.0241455 1.49697e-06 2.49155e-06 2.718 ||| 0-1 ||| 385 668016 +a ||| should go to ||| 0.0181818 0.229811 1.49697e-06 9.07719e-07 2.718 ||| 0-2 ||| 55 668016 +a ||| should have to ||| 0.00990099 0.229811 1.49697e-06 1.85638e-05 2.718 ||| 0-2 ||| 101 668016 +a ||| should have ||| 0.000275482 4.59e-05 1.49697e-06 7.65427e-08 2.718 ||| 0-0 ||| 3630 668016 +a ||| should help us to ||| 0.0909091 0.259976 1.49697e-06 7.46399e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| should help us ||| 0.0285714 0.259976 1.49697e-06 8.39989e-08 2.718 ||| 0-1 ||| 35 668016 +a ||| should help ||| 0.00687285 0.259976 2.99394e-06 2.9144e-05 2.718 ||| 0-1 ||| 291 668016 +a ||| should in other respects ||| 1 0.0587624 1.49697e-06 6.96688e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| should in other ||| 0.5 0.0587624 1.49697e-06 3.44895e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| should in ||| 0.0277778 0.0587624 7.48485e-06 0.000266226 2.718 ||| 0-1 ||| 180 668016 +a ||| should include ||| 0.00663717 0.0281253 4.49091e-06 1.17289e-06 2.718 ||| 0-1 ||| 452 668016 +a ||| should instead offer ||| 0.25 0.0034208 1.49697e-06 1.71767e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| should it lead to ||| 0.25 0.229811 1.49697e-06 5.31355e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| should it stop us from ||| 1 0.0435582 1.49697e-06 1.12973e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| should lead to ||| 0.00564972 0.229811 1.49697e-06 2.98796e-07 2.718 ||| 0-2 ||| 177 668016 +a ||| should like by ||| 1 0.0337966 1.49697e-06 6.47423e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| should like to appeal to ||| 0.2 0.229811 1.49697e-06 7.39719e-12 2.718 ||| 0-2 ||| 5 668016 +a ||| should like to appeal ||| 0.166667 0.229811 1.49697e-06 8.32471e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| should like to ask the ||| 0.008 0.229811 1.49697e-06 2.32689e-11 2.718 ||| 0-2 ||| 125 668016 +a ||| should like to ask ||| 0.00406504 0.229811 1.49697e-06 3.79023e-10 2.718 ||| 0-2 ||| 246 668016 +a ||| should like to mention ||| 0.00847458 0.229811 1.49697e-06 2.67935e-10 2.718 ||| 0-2 ||| 118 668016 +a ||| should like to return to ||| 0.0714286 0.229811 1.49697e-06 1.6313e-11 2.718 ||| 0-4 ||| 14 668016 +a ||| should like to say the following ||| 0.111111 0.0720432 1.49697e-06 4.04468e-14 2.718 ||| 0-5 ||| 9 668016 +a ||| should like to take ||| 0.00900901 0.229811 1.49697e-06 4.43801e-09 2.718 ||| 0-2 ||| 111 668016 +a ||| should like to ||| 0.0188261 0.229811 7.63455e-05 2.75653e-06 2.718 ||| 0-2 ||| 2709 668016 +a ||| should look at ||| 0.0135135 0.204175 1.49697e-06 4.39614e-08 2.718 ||| 0-2 ||| 74 668016 +a ||| should make ||| 0.00151057 0.0033044 1.49697e-06 7.96694e-07 2.718 ||| 0-1 ||| 662 668016 +a ||| should mean that we ||| 0.2 0.0008079 1.49697e-06 8.71278e-12 2.718 ||| 0-3 ||| 5 668016 +a ||| should meet half the ||| 1 0.0482171 1.49697e-06 3.07499e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| should meet half ||| 1 0.0482171 1.49697e-06 5.0088e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| should meet ||| 0.00877193 0.0482171 1.49697e-06 1.73917e-06 2.718 ||| 0-1 ||| 114 668016 +a ||| should not apply to ||| 0.142857 0.229811 1.49697e-06 7.62572e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| should not be subjected to discrimination ||| 0.333333 0.229811 1.49697e-06 2.6138e-17 2.718 ||| 0-4 ||| 3 668016 +a ||| should not be subjected to ||| 0.111111 0.229811 1.49697e-06 2.07444e-12 2.718 ||| 0-4 ||| 9 668016 +a ||| should now all prepare themselves to ||| 1 0.229811 1.49697e-06 1.1686e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| should now like to make a ||| 0.333333 0.229811 1.49697e-06 4.37386e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| should now like to make ||| 0.166667 0.229811 1.49697e-06 9.86753e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| should now like to ||| 0.0263158 0.229811 1.49697e-06 5.67817e-09 2.718 ||| 0-3 ||| 38 668016 +a ||| should now ||| 0.00273973 4.59e-05 1.49697e-06 1.31834e-08 2.718 ||| 0-0 ||| 365 668016 +a ||| should of ||| 0.04 0.0188479 1.49697e-06 0.000131062 2.718 ||| 0-1 ||| 25 668016 +a ||| should on ||| 0.0769231 0.0782999 1.49697e-06 0.000168093 2.718 ||| 0-1 ||| 13 668016 +a ||| should promote the highest standards for ||| 1 0.0683377 1.49697e-06 1.03331e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| should prove to be ||| 0.0909091 0.229811 1.49697e-06 1.48808e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| should prove to ||| 0.125 0.229811 1.49697e-06 8.21107e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| should refrain from misleading ||| 1 0.0435582 1.49697e-06 9.14512e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| should refrain from transparent ||| 1 0.0435582 1.49697e-06 1.82902e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| should refrain from ||| 0.0625 0.0435582 2.99394e-06 1.94577e-10 2.718 ||| 0-2 ||| 32 668016 +a ||| should revert to ||| 0.142857 0.229811 1.49697e-06 2.79394e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| should send a message to ||| 0.333333 0.229811 1.49697e-06 2.13567e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| should sincerely like to ||| 1 0.229811 1.49697e-06 5.45793e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| should support it on ||| 0.5 0.0782999 1.49697e-06 1.02202e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| should take place of ||| 1 0.0188479 1.49697e-06 3.17571e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| should take some responsibility for ||| 1 0.0683377 1.49697e-06 3.30733e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| should take ||| 0.00069979 0.0012933 1.49697e-06 3.03523e-07 2.718 ||| 0-1 ||| 1429 668016 +a ||| should tell ||| 0.0322581 0.0029382 1.49697e-06 8.10873e-08 2.718 ||| 0-1 ||| 31 668016 +a ||| should therefore be differences in the ||| 0.5 0.0587624 1.49697e-06 5.7965e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| should therefore be differences in ||| 0.5 0.0587624 1.49697e-06 9.44181e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| should to ||| 0.142857 0.229811 1.49697e-06 0.00155219 2.718 ||| 0-1 ||| 7 668016 +a ||| should treat with ||| 0.5 0.0571592 1.49697e-06 1.228e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| should warn him ||| 1 0.153141 1.49697e-06 1.51718e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| should warn ||| 0.2 0.153141 1.49697e-06 4.73231e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| should without fail take care to ||| 0.5 0.229811 1.49697e-06 3.02707e-18 2.718 ||| 0-5 ||| 2 668016 +a ||| should ||| 6.86342e-05 4.59e-05 7.48485e-06 6.4e-06 2.718 ||| 0-0 ||| 72850 668016 +a ||| shoulder to shoulder ||| 0.031746 0.229811 2.99394e-06 1.3184e-10 2.718 ||| 0-1 ||| 63 668016 +a ||| shoulder to ||| 0.0597015 0.229811 5.98788e-06 6.79585e-06 2.718 ||| 0-1 ||| 67 668016 +a ||| shoulders for ||| 0.25 0.0683377 1.49697e-06 5.71152e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| shoulders of ||| 0.0222222 0.0188479 1.49697e-06 4.58467e-07 2.718 ||| 0-1 ||| 45 668016 +a ||| shouted at , ||| 0.5 0.204175 1.49697e-06 4.46477e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| shouted at ||| 0.2 0.204175 1.49697e-06 3.74389e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| shouting to ||| 0.5 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| show it to ||| 0.333333 0.229811 1.49697e-06 8.34128e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| show on ||| 0.125 0.0782999 1.49697e-06 5.07958e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| show respect for ||| 0.0166667 0.0683377 1.49697e-06 2.13445e-09 2.718 ||| 0-2 ||| 60 668016 +a ||| show solidarity with ||| 0.00961538 0.0571592 1.49697e-06 5.8793e-11 2.718 ||| 0-2 ||| 104 668016 +a ||| show the same commitment in tackling ||| 1 0.0587624 1.49697e-06 4.54633e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| show the same commitment in ||| 0.5 0.0587624 1.49697e-06 2.21772e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| show us ||| 0.00787402 0.0071317 1.49697e-06 6.91727e-08 2.718 ||| 0-1 ||| 127 668016 +a ||| shown at the ||| 0.166667 0.204175 1.49697e-06 2.18143e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| shown at ||| 0.111111 0.204175 1.49697e-06 3.5533e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| shown for ||| 0.08 0.0683377 5.98788e-06 3.84698e-06 2.718 ||| 0-1 ||| 50 668016 +a ||| shown in ||| 0.00271003 0.0587624 1.49697e-06 6.27261e-06 2.718 ||| 0-1 ||| 369 668016 +a ||| shown of ||| 0.333333 0.0188479 1.49697e-06 3.088e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| shown to be ||| 0.0133333 0.229811 1.49697e-06 6.62781e-07 2.718 ||| 0-1 ||| 75 668016 +a ||| shown to ||| 0.028436 0.229811 8.98182e-06 3.65715e-05 2.718 ||| 0-1 ||| 211 668016 +a ||| shown towards ||| 0.03125 0.155507 1.49697e-06 3.52099e-07 2.718 ||| 0-1 ||| 32 668016 +a ||| shows on ||| 1 0.0782999 1.49697e-06 1.51363e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| shows towards ||| 0.333333 0.155507 1.49697e-06 1.34567e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| shrift given to ||| 0.25 0.229811 1.49697e-06 1.68288e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| shrugging off the ||| 1 0.0893962 1.49697e-06 1.87834e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| shrugging off ||| 1 0.0893962 1.49697e-06 3.0596e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| shut on ||| 0.25 0.0782999 1.49697e-06 5.88002e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| shut to ||| 0.5 0.229811 1.49697e-06 5.42967e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| shut up ||| 0.0285714 0.0195077 1.49697e-06 1.90278e-08 2.718 ||| 0-1 ||| 35 668016 +a ||| side , attacking ||| 1 0.243421 1.49697e-06 2.64805e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| side by ||| 0.0280374 0.0337966 4.49091e-06 1.80347e-06 2.718 ||| 0-1 ||| 107 668016 +a ||| side during examination ||| 0.5 0.0054313 1.49697e-06 2.79583e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| side during ||| 0.2 0.0054313 1.49697e-06 2.04075e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| side of the ||| 0.00119332 0.0188479 1.49697e-06 3.9804e-07 2.718 ||| 0-1 ||| 838 668016 +a ||| side of ||| 0.00118765 0.0188479 1.49697e-06 6.48361e-06 2.718 ||| 0-1 ||| 842 668016 +a ||| side to the ||| 0.0769231 0.229811 1.49697e-06 4.71404e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| side to ||| 0.0465116 0.229811 5.98788e-06 7.67861e-05 2.718 ||| 0-1 ||| 86 668016 +a ||| side with that is ||| 0.333333 0.0571592 1.49697e-06 1.92935e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| side with that ||| 0.333333 0.0571592 1.49697e-06 6.15598e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| side with ||| 0.0105263 0.0571592 1.49697e-06 3.65957e-06 2.718 ||| 0-1 ||| 95 668016 +a ||| sides at ||| 0.1 0.204175 1.49697e-06 1.2491e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| siege on ||| 0.125 0.0782999 1.49697e-06 2.65549e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| sight of ||| 0.00995025 0.0188479 2.99394e-06 6.80306e-07 2.718 ||| 0-1 ||| 201 668016 +a ||| sign of a ||| 0.0178571 0.0188479 1.49697e-06 6.84389e-08 2.718 ||| 0-1 ||| 56 668016 +a ||| sign of ||| 0.00499376 0.0188479 5.98788e-06 1.544e-06 2.718 ||| 0-1 ||| 801 668016 +a ||| sign to ||| 0.0666667 0.229811 1.49697e-06 1.82857e-05 2.718 ||| 0-1 ||| 15 668016 +a ||| sign up for ||| 0.125 0.0683377 1.49697e-06 6.56007e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| sign up to ||| 0.0135135 0.229811 2.99394e-06 6.23635e-08 2.718 ||| 0-2 ||| 148 668016 +a ||| signal for ||| 0.025 0.0683377 1.49697e-06 8.76994e-07 2.718 ||| 0-1 ||| 40 668016 +a ||| signal to ||| 0.014652 0.229811 5.98788e-06 8.33718e-06 2.718 ||| 0-1 ||| 273 668016 +a ||| signals to ||| 0.0666667 0.229811 2.99394e-06 2.66229e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| signed it - with ||| 0.5 0.0571592 1.49697e-06 3.46051e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| signed up to ||| 0.00555556 0.229811 1.49697e-06 3.69163e-08 2.718 ||| 0-2 ||| 180 668016 +a ||| significance for ||| 0.00694444 0.0683377 1.49697e-06 7.55394e-07 2.718 ||| 0-1 ||| 144 668016 +a ||| significant contribution to the ||| 0.0138889 0.229811 1.49697e-06 1.11485e-10 2.718 ||| 0-2 ||| 72 668016 +a ||| significant contribution to ||| 0.00487805 0.229811 1.49697e-06 1.81596e-09 2.718 ||| 0-2 ||| 205 668016 +a ||| significant movement on ||| 0.25 0.0782999 1.49697e-06 9.59255e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| significant part in ||| 0.0277778 0.0587624 1.49697e-06 4.12591e-09 2.718 ||| 0-2 ||| 36 668016 +a ||| significant role in ||| 0.00746269 0.0587624 1.49697e-06 7.68287e-10 2.718 ||| 0-2 ||| 134 668016 +a ||| significant shortcomings in ||| 0.333333 0.0587624 1.49697e-06 3.73761e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| significantly ||| 0.000374111 0.0003292 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2673 668016 +a ||| signing up to ||| 0.0545455 0.229811 4.49091e-06 1.33807e-08 2.718 ||| 0-2 ||| 55 668016 +a ||| signs is that in ||| 1 0.0587624 1.49697e-06 4.90977e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| signs of ||| 0.00230947 0.0188479 1.49697e-06 4.58467e-07 2.718 ||| 0-1 ||| 433 668016 +a ||| silenced in ||| 0.333333 0.0587624 1.49697e-06 6.60907e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| silenced ||| 0.0185185 0.135135 1.49697e-06 9.1e-06 2.718 ||| 0-0 ||| 54 668016 +a ||| silent on ||| 0.02 0.0782999 1.49697e-06 3.26246e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| silent with ||| 0.166667 0.0571592 1.49697e-06 1.43578e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| silver medallists ||| 1 0.333333 1.49697e-06 7.2e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| similar requirements are not being expected of ||| 1 0.0188479 1.49697e-06 4.55185e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| similar to ||| 0.00374532 0.229811 4.49091e-06 1.41172e-05 2.718 ||| 0-1 ||| 801 668016 +a ||| similar way to another directive ||| 1 0.229811 1.49697e-06 8.18798e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| similar way to another ||| 1 0.229811 1.49697e-06 7.3369e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| similar way to ||| 0.0555556 0.229811 1.49697e-06 3.04309e-08 2.718 ||| 0-2 ||| 18 668016 +a ||| simple matter of ||| 0.125 0.0188479 1.49697e-06 1.32571e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| simpler for ||| 0.0833333 0.0683377 1.49697e-06 1.47394e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| simply by ||| 0.00900901 0.0337966 1.49697e-06 1.82404e-06 2.718 ||| 0-1 ||| 111 668016 +a ||| simply discarded for ||| 0.25 0.0683377 1.49697e-06 2.3691e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| simply gone up in ||| 1 0.0587624 1.49697e-06 2.84385e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| simply have to be resumed very ||| 0.333333 0.229811 1.49697e-06 3.57278e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| simply have to be resumed ||| 0.333333 0.229811 1.49697e-06 1.02681e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| simply have to be ||| 0.0769231 0.229811 1.49697e-06 1.68329e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| simply have to ||| 0.0222222 0.229811 1.49697e-06 9.2882e-07 2.718 ||| 0-2 ||| 45 668016 +a ||| simply left the country , in ||| 0.5 0.0587624 1.49697e-06 6.63e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| simply out in ||| 1 0.0587624 1.49697e-06 5.1022e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| simply playing at ||| 1 0.204175 1.49697e-06 4.97258e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| simply running for no purpose ||| 1 0.0683377 1.49697e-06 8.72859e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| simply running for no ||| 1 0.0683377 1.49697e-06 4.85191e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| simply running for ||| 1 0.0683377 1.49697e-06 6.23319e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| simply to be ||| 0.0434783 0.229811 1.49697e-06 1.40746e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| simply to hope for ||| 0.333333 0.0683377 1.49697e-06 1.27252e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| simply to ||| 0.0120724 0.229811 8.98182e-06 7.76619e-05 2.718 ||| 0-1 ||| 497 668016 +a ||| simply was not possible to ||| 0.333333 0.229811 1.49697e-06 6.66305e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| simply will ||| 0.0833333 0.0561595 1.49697e-06 3.12236e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| simultaneously ||| 0.00141243 0.0092688 1.49697e-06 8.2e-06 2.718 ||| 0-0 ||| 708 668016 +a ||| since 1984 , in ||| 1 0.0587624 1.49697e-06 6.80615e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| since in ||| 0.00719424 0.0587624 1.49697e-06 8.1532e-06 2.718 ||| 0-1 ||| 139 668016 +a ||| since it is ||| 0.00142248 0.0050746 1.49697e-06 8.75032e-08 2.718 ||| 0-0 ||| 703 668016 +a ||| since it ||| 0.000539957 0.0050746 1.49697e-06 2.79196e-06 2.718 ||| 0-0 ||| 1852 668016 +a ||| since proved to ||| 1 0.229811 1.49697e-06 1.96799e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| since we did ||| 0.333333 0.0050746 1.49697e-06 8.09526e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| since we do ||| 0.111111 0.0050746 1.49697e-06 6.12277e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| since we ||| 0.00301205 0.0050746 4.49091e-06 1.78231e-06 2.718 ||| 0-0 ||| 996 668016 +a ||| since ||| 0.00124094 0.0050746 5.53879e-05 0.000157 2.718 ||| 0-0 ||| 29816 668016 +a ||| sincere in ||| 0.0555556 0.0587624 1.49697e-06 4.74652e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| sincere thanks also to ||| 0.5 0.229811 1.49697e-06 1.13168e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| sincere thanks to ||| 0.00473934 0.229811 1.49697e-06 2.24158e-10 2.718 ||| 0-2 ||| 211 668016 +a ||| sincerely like to ||| 0.1 0.229811 1.49697e-06 1.23176e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| sincerest appreciation of ||| 0.5 0.0188479 1.49697e-06 4.22973e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| sincerest congratulations to ||| 0.25 0.229811 1.49697e-06 4.00745e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| sing from ||| 0.333333 0.0435582 2.99394e-06 2.30362e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| single concession from ||| 1 0.0435582 1.49697e-06 4.11282e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| single currency at ||| 0.5 0.204175 1.49697e-06 2.02013e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| single out ||| 0.00917431 0.0669777 1.49697e-06 6.50829e-07 2.718 ||| 0-1 ||| 109 668016 +a ||| sisters to ||| 1 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| sit around ||| 0.0333333 0.0931303 1.49697e-06 3.41901e-08 2.718 ||| 0-1 ||| 30 668016 +a ||| sit down at the same table ||| 0.333333 0.204175 1.49697e-06 3.00382e-18 2.718 ||| 0-2 ||| 3 668016 +a ||| sit down at the same ||| 0.333333 0.204175 1.49697e-06 4.43695e-14 2.718 ||| 0-2 ||| 3 668016 +a ||| sit down at the ||| 0.0625 0.204175 1.49697e-06 5.5138e-11 2.718 ||| 0-2 ||| 16 668016 +a ||| sit down at ||| 0.047619 0.204175 1.49697e-06 8.98132e-10 2.718 ||| 0-2 ||| 21 668016 +a ||| sit in judgment on ||| 0.5 0.0782999 1.49697e-06 4.75746e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| sit in ||| 0.0106383 0.0587624 1.49697e-06 2.27112e-06 2.718 ||| 0-1 ||| 94 668016 +a ||| sit up and ||| 0.0909091 0.0015873 1.49697e-06 2.48745e-10 2.718 ||| 0-2 ||| 11 668016 +a ||| sites to ||| 0.0769231 0.229811 1.49697e-06 5.42967e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| sitting around ||| 0.0666667 0.0931303 1.49697e-06 6.28627e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| sitting for ||| 0.0243902 0.0683377 1.49697e-06 2.56097e-06 2.718 ||| 0-1 ||| 41 668016 +a ||| sitting in judgement on ||| 0.333333 0.0782999 1.49697e-06 8.74719e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| sitting in judgment upon itself ||| 1 0.0587624 1.49697e-06 1.04197e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| sitting in judgment upon ||| 1 0.0587624 1.49697e-06 1.53525e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| sitting in judgment ||| 0.5 0.0587624 1.49697e-06 6.47239e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| sitting in on ||| 1 0.0782999 1.49697e-06 5.64335e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| sitting in ||| 0.00510204 0.0587624 1.49697e-06 4.17573e-06 2.718 ||| 0-1 ||| 196 668016 +a ||| sitting on ||| 0.00699301 0.0782999 1.49697e-06 2.63652e-06 2.718 ||| 0-1 ||| 143 668016 +a ||| sitting squarely on ||| 0.5 0.0782999 1.49697e-06 8.43688e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| sitting to ||| 0.0833333 0.229811 2.99394e-06 2.4346e-05 2.718 ||| 0-1 ||| 24 668016 +a ||| situated on ||| 0.0357143 0.0782999 1.49697e-06 3.26246e-07 2.718 ||| 0-1 ||| 28 668016 +a ||| situation for ||| 0.00471698 0.0683377 1.49697e-06 1.8977e-05 2.718 ||| 0-1 ||| 212 668016 +a ||| situation in which less value is ||| 1 0.0587624 1.49697e-06 1.23102e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| situation in which less value ||| 1 0.0587624 1.49697e-06 3.92783e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| situation in which less ||| 0.5 0.0587624 1.49697e-06 4.47361e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| situation in which ||| 0.00364078 0.0587624 4.49091e-06 2.62844e-07 2.718 ||| 0-1 ||| 824 668016 +a ||| situation in ||| 0.00257537 0.0587624 2.54485e-05 3.09425e-05 2.718 ||| 0-1 ||| 6601 668016 +a ||| situation of their public finances ||| 1 0.0188479 1.49697e-06 1.54078e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| situation of their public ||| 1 0.0188479 1.49697e-06 2.85329e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| situation of their ||| 0.111111 0.0188479 1.49697e-06 1.76565e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| situation of ||| 0.000778513 0.0188479 2.99394e-06 1.52329e-05 2.718 ||| 0-1 ||| 2569 668016 +a ||| situation on ||| 0.00408163 0.0782999 1.49697e-06 1.95368e-05 2.718 ||| 0-1 ||| 245 668016 +a ||| situation regarding ||| 0.0045045 0.186429 1.49697e-06 1.73313e-06 2.718 ||| 0-1 ||| 222 668016 +a ||| situation to ||| 0.00641026 0.229811 1.49697e-06 0.000180405 2.718 ||| 0-1 ||| 156 668016 +a ||| situation where there are grounds for ||| 1 0.0683377 1.49697e-06 2.79996e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| situation where we have to say either ||| 1 0.229811 1.49697e-06 6.14164e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| situation where we have to say ||| 1 0.229811 1.49697e-06 7.0936e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| situation where we have to ||| 0.2 0.229811 1.49697e-06 7.42164e-12 2.718 ||| 0-4 ||| 5 668016 +a ||| situation where ||| 0.00192493 0.0053255 2.99394e-06 1.26433e-07 2.718 ||| 0-1 ||| 1039 668016 +a ||| situations by ||| 0.25 0.0337966 1.49697e-06 2.81381e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| six months in ||| 0.0188679 0.0587624 1.49697e-06 4.18889e-11 2.718 ||| 0-2 ||| 53 668016 +a ||| size of ||| 0.00165289 0.0188479 1.49697e-06 1.10624e-06 2.718 ||| 0-1 ||| 605 668016 +a ||| size to ||| 0.0769231 0.229811 1.49697e-06 1.31013e-05 2.718 ||| 0-1 ||| 13 668016 +a ||| skinned to make stylish trimmings ||| 0.5 0.229811 1.49697e-06 6.81805e-23 2.718 ||| 0-1 ||| 2 668016 +a ||| skinned to make stylish ||| 0.5 0.229811 1.49697e-06 1.70451e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| skinned to make ||| 0.5 0.229811 1.49697e-06 4.26128e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| skinned to ||| 0.5 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| slandered ||| 0.166667 0.2 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| slap in ||| 0.02 0.0587624 1.49697e-06 1.08148e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| slapping everyone ||| 0.2 0.0278324 1.49697e-06 1.3436e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| slaughter of ||| 0.0232558 0.0188479 2.99394e-06 1.18314e-07 2.718 ||| 0-1 ||| 86 668016 +a ||| slaughtered fellow-Muslims ||| 0.166667 0.0151515 1.49697e-06 1.48e-12 2.718 ||| 0-0 ||| 6 668016 +a ||| slaughtered ||| 0.00896861 0.0151515 2.99394e-06 3.7e-06 2.718 ||| 0-0 ||| 223 668016 +a ||| sleep for the rest of the night ||| 0.5 0.0683377 1.49697e-06 2.76831e-20 2.718 ||| 0-1 ||| 2 668016 +a ||| sleep for the rest of the ||| 0.5 0.0683377 1.49697e-06 2.85393e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| sleep for the rest of ||| 0.5 0.0683377 1.49697e-06 4.64872e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| sleep for the rest ||| 0.5 0.0683377 1.49697e-06 8.5511e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| sleep for the ||| 0.5 0.0683377 1.49697e-06 1.1311e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| sleep for ||| 0.125 0.0683377 1.49697e-06 1.84243e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| sleight of hand . ||| 0.333333 0.0188479 1.49697e-06 1.42131e-14 2.718 ||| 0-1 ||| 3 668016 +a ||| sleight of hand ||| 0.0344828 0.0188479 1.49697e-06 4.69233e-12 2.718 ||| 0-1 ||| 29 668016 +a ||| sleight of ||| 0.0526316 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| slow in ||| 0.0192308 0.0587624 1.49697e-06 5.64775e-07 2.718 ||| 0-1 ||| 52 668016 +a ||| slowly but surely destroying ||| 1 0.0547945 1.49697e-06 5.99661e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| slowly but surely ||| 0.011236 0.0547945 1.49697e-06 2.0678e-12 2.718 ||| 0-0 ||| 89 668016 +a ||| slowly but ||| 0.0108696 0.0547945 1.49697e-06 3.24615e-08 2.718 ||| 0-0 ||| 92 668016 +a ||| slowly ||| 0.00311526 0.0547945 2.99394e-06 4.75e-05 2.718 ||| 0-0 ||| 642 668016 +a ||| small and medium-sized enterprises with ||| 0.0555556 0.0571592 1.49697e-06 4.99068e-18 2.718 ||| 0-4 ||| 18 668016 +a ||| small and ||| 0.00110051 0.0011681 8.98182e-06 2.29224e-07 2.718 ||| 0-0 ||| 5452 668016 +a ||| small countries which stand to benefit from ||| 0.5 0.229811 1.49697e-06 5.05885e-21 2.718 ||| 0-4 ||| 2 668016 +a ||| small countries which stand to benefit ||| 0.5 0.229811 1.49697e-06 3.14136e-18 2.718 ||| 0-4 ||| 2 668016 +a ||| small countries which stand to ||| 0.5 0.229811 1.49697e-06 2.38524e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| small on the ||| 0.5 0.0782999 1.49697e-06 2.98337e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| small on ||| 0.166667 0.0782999 1.49697e-06 4.85955e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| small part ||| 0.00900901 0.0011681 1.49697e-06 2.18173e-08 2.718 ||| 0-0 ||| 111 668016 +a ||| small sample of children who ||| 0.5 0.0188479 1.49697e-06 3.4856e-19 2.718 ||| 0-2 ||| 2 668016 +a ||| small sample of children ||| 0.5 0.0188479 1.49697e-06 3.95193e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| small sample of ||| 0.25 0.0188479 1.49697e-06 5.30461e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| small stroke after another , ||| 1 0.0341027 1.49697e-06 1.32846e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| small stroke after another ||| 1 0.0341027 1.49697e-06 1.11397e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| small stroke after ||| 1 0.0341027 1.49697e-06 4.62036e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| small way to ||| 0.0909091 0.229811 1.49697e-06 9.67296e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| small ||| 0.000567859 0.0011681 1.34727e-05 1.83e-05 2.718 ||| 0-0 ||| 15849 668016 +a ||| small-scale chocolate maker ||| 0.5 0.178771 1.49697e-06 4.7444e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| small-scale chocolate ||| 0.5 0.178771 1.49697e-06 1.1861e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| small-scale crime ||| 0.1 0.178771 1.49697e-06 8.60945e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| small-scale ||| 0.00976562 0.178771 7.48485e-06 0.0002045 2.718 ||| 0-0 ||| 512 668016 +a ||| smashing in ||| 1 0.0587624 1.49697e-06 6.60907e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| smoke in the same category as ||| 1 0.0587624 1.49697e-06 2.96889e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| smoke in the same category ||| 1 0.0587624 1.49697e-06 2.90942e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| smoke in the same ||| 1 0.0587624 1.49697e-06 1.72155e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| smoke in the ||| 0.333333 0.0587624 1.49697e-06 2.13937e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| smoke in ||| 0.0769231 0.0587624 1.49697e-06 3.48479e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| smooth transition to ||| 0.047619 0.229811 1.49697e-06 2.68436e-11 2.718 ||| 0-2 ||| 21 668016 +a ||| smoothed out ||| 0.1 0.0669777 1.49697e-06 1.6404e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| smuggling in ||| 0.2 0.0587624 1.49697e-06 3.00412e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| snapshot of exactly ||| 1 0.0188479 1.49697e-06 3.26665e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| snapshot of ||| 0.04 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-1 ||| 25 668016 +a ||| so , because ||| 0.0151515 0.0052046 1.49697e-06 8.74543e-08 2.718 ||| 0-2 ||| 66 668016 +a ||| so , can you tell me on ||| 1 0.0782999 1.49697e-06 5.8302e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| so , however , at ||| 1 0.204175 1.49697e-06 1.21695e-09 2.718 ||| 0-4 ||| 1 668016 +a ||| so , in ||| 0.00540541 0.0587624 1.49697e-06 1.62627e-05 2.718 ||| 0-2 ||| 185 668016 +a ||| so , or only for ||| 1 0.0683377 1.49697e-06 1.26928e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| so , the Council may decide to ||| 1 0.229811 1.49697e-06 9.66668e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| so , to ||| 0.046875 0.229811 4.49091e-06 9.4817e-05 2.718 ||| 0-2 ||| 64 668016 +a ||| so I am now giving ||| 1 0.136521 1.49697e-06 4.26117e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| so as a ||| 0.0714286 0.0243476 1.49697e-06 8.82558e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| so as to enable ||| 0.0114943 0.229811 1.49697e-06 7.99972e-10 2.718 ||| 0-2 ||| 87 668016 +a ||| so as to gain ||| 0.5 0.229811 1.49697e-06 4.52723e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| so as to make sure ||| 0.25 0.229811 1.49697e-06 2.4561e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| so as to make ||| 0.0128205 0.229811 1.49697e-06 1.40993e-08 2.718 ||| 0-2 ||| 78 668016 +a ||| so as to reduce the number ||| 0.333333 0.229811 1.49697e-06 9.38995e-15 2.718 ||| 0-2 ||| 3 668016 +a ||| so as to reduce the ||| 0.0666667 0.229811 1.49697e-06 1.89773e-11 2.718 ||| 0-2 ||| 15 668016 +a ||| so as to reduce ||| 0.030303 0.229811 1.49697e-06 3.09117e-10 2.718 ||| 0-2 ||| 33 668016 +a ||| so as to ||| 0.00831025 0.229811 3.14364e-05 8.11331e-06 2.718 ||| 0-2 ||| 2527 668016 +a ||| so as ||| 0.00242887 0.0243476 1.04788e-05 1.99107e-05 2.718 ||| 0-1 ||| 2882 668016 +a ||| so at a ||| 0.2 0.204175 1.49697e-06 3.42417e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| so at ||| 0.0412371 0.204175 5.98788e-06 7.72501e-05 2.718 ||| 0-1 ||| 97 668016 +a ||| so bold as to ||| 0.0769231 0.229811 1.49697e-06 4.38119e-11 2.718 ||| 0-3 ||| 13 668016 +a ||| so brought ||| 0.5 0.0182841 1.49697e-06 2.69413e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| so by ||| 0.0133333 0.0337966 1.49697e-06 1.8674e-05 2.718 ||| 0-1 ||| 75 668016 +a ||| so close to its ||| 1 0.229811 1.49697e-06 1.67987e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| so close to ||| 0.046875 0.229811 4.49091e-06 1.1791e-07 2.718 ||| 0-2 ||| 64 668016 +a ||| so difficult to ||| 0.0172414 0.229811 1.49697e-06 9.87489e-08 2.718 ||| 0-2 ||| 58 668016 +a ||| so even ||| 0.0434783 0.0251554 1.49697e-06 1.56705e-07 2.718 ||| 0-0 0-1 ||| 23 668016 +a ||| so far as to view ||| 1 0.229811 1.49697e-06 5.00334e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| so far as to ||| 0.152941 0.229811 1.94606e-05 5.53896e-09 2.718 ||| 0-3 ||| 85 668016 +a ||| so far as ||| 0.00455927 0.0243476 4.49091e-06 1.3593e-08 2.718 ||| 0-2 ||| 658 668016 +a ||| so far before ||| 0.5 0.0203282 2.99394e-06 8.21713e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| so for ||| 0.0133333 0.0683377 2.99394e-06 8.3635e-05 2.718 ||| 0-1 ||| 150 668016 +a ||| so from ||| 0.0344828 0.0435582 1.49697e-06 1.63391e-05 2.718 ||| 0-1 ||| 29 668016 +a ||| so greatly from one ||| 1 0.0435582 1.49697e-06 1.79107e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| so greatly from ||| 1 0.0435582 1.49697e-06 4.29719e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| so in a ||| 0.04 0.0587624 1.49697e-06 6.04468e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| so in view ||| 0.0909091 0.0587624 1.49697e-06 1.23182e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| so in ||| 0.0333988 0.0587624 2.54485e-05 0.000136369 2.718 ||| 0-1 ||| 509 668016 +a ||| so informed ||| 0.333333 0.027911 1.49697e-06 2.65101e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| so into one of ||| 1 0.107578 1.49697e-06 3.12395e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| so into one ||| 1 0.107578 1.49697e-06 5.74635e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| so into ||| 0.5 0.107578 1.49697e-06 1.37868e-05 2.718 ||| 0-1 ||| 2 668016 +a ||| so it is up to ||| 0.0666667 0.229811 1.49697e-06 1.51131e-09 2.718 ||| 0-4 ||| 15 668016 +a ||| so many ||| 0.000883002 0.0007673 2.99394e-06 2.7567e-08 2.718 ||| 0-0 ||| 2265 668016 +a ||| so much about ||| 0.0238095 0.0526361 1.49697e-06 1.148e-08 2.718 ||| 0-2 ||| 42 668016 +a ||| so much as ||| 0.102041 0.0243476 7.48485e-06 1.99844e-08 2.718 ||| 0-2 ||| 49 668016 +a ||| so much damage in ||| 0.5 0.0587624 1.49697e-06 5.76239e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| so much for ||| 0.00746269 0.0683377 1.49697e-06 8.39445e-08 2.718 ||| 0-2 ||| 134 668016 +a ||| so much to ||| 0.0206186 0.229811 2.99394e-06 7.98021e-07 2.718 ||| 0-2 ||| 97 668016 +a ||| so my reply to your question is ||| 1 0.229811 1.49697e-06 9.77078e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| so my reply to your question ||| 1 0.229811 1.49697e-06 3.11756e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| so my reply to your ||| 1 0.229811 1.49697e-06 3.76836e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| so my reply to ||| 0.5 0.229811 1.49697e-06 1.47259e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| so often , ||| 0.025641 0.288159 1.49697e-06 1.63056e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| so often ||| 0.00259067 0.288159 1.49697e-06 1.36729e-05 2.718 ||| 0-1 ||| 386 668016 +a ||| so on - ||| 0.0238095 0.0782999 1.49697e-06 3.24787e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| so on in this ||| 0.5 0.0587624 1.49697e-06 5.89568e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| so on in ||| 0.0909091 0.0587624 1.49697e-06 9.12447e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| so on ||| 0.00511771 0.0782999 7.48485e-06 8.61024e-05 2.718 ||| 0-1 ||| 977 668016 +a ||| so out loud ||| 0.5 0.0669777 1.49697e-06 9.68036e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| so out ||| 0.0833333 0.0669777 1.49697e-06 9.30804e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| so that it also covers ||| 0.333333 0.0137254 1.49697e-06 4.64475e-15 2.718 ||| 0-0 0-4 ||| 3 668016 +a ||| so that it exists ||| 1 0.0007673 1.49697e-06 1.34038e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| so that it now ||| 0.2 0.00208 1.49697e-06 9.05057e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| so that it reflects ||| 0.25 0.0017857 1.49697e-06 1.8332e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| so that it will be ||| 0.0416667 0.0561595 1.49697e-06 1.73297e-10 2.718 ||| 0-3 ||| 24 668016 +a ||| so that it will ||| 0.04 0.0561595 1.49697e-06 9.5623e-09 2.718 ||| 0-3 ||| 25 668016 +a ||| so that it ||| 0.0015674 0.0007673 1.49697e-06 2.40211e-08 2.718 ||| 0-0 ||| 638 668016 +a ||| so that legislation can go ||| 1 0.0008168 1.49697e-06 1.53832e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| so that legislation can ||| 1 0.0008168 1.49697e-06 2.6305e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| so that they can ||| 0.00110011 0.0007673 1.49697e-06 1.31135e-11 2.718 ||| 0-0 ||| 909 668016 +a ||| so that they have someone ||| 1 0.0328972 1.49697e-06 1.19681e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| so that they ||| 0.0031746 0.0007673 2.99394e-06 4.40893e-09 2.718 ||| 0-0 ||| 630 668016 +a ||| so that ||| 0.000323311 0.0007673 1.04788e-05 1.35077e-06 2.718 ||| 0-0 ||| 21651 668016 +a ||| so to speak , ||| 0.00495049 0.229811 1.49697e-06 1.28287e-08 2.718 ||| 0-1 ||| 202 668016 +a ||| so to speak ||| 0.00826446 0.229811 4.49091e-06 1.07574e-07 2.718 ||| 0-1 ||| 363 668016 +a ||| so to suit ||| 0.5 0.229811 1.49697e-06 8.0303e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| so to ||| 0.0333333 0.229811 1.49697e-05 0.00079508 2.718 ||| 0-1 ||| 300 668016 +a ||| so we ought to ||| 0.111111 0.229811 1.49697e-06 7.56377e-10 2.718 ||| 0-3 ||| 9 668016 +a ||| so will ||| 0.0117647 0.0284634 1.49697e-06 1.13092e-06 2.718 ||| 0-0 0-1 ||| 85 668016 +a ||| so wish to ||| 0.142857 0.229811 1.49697e-06 2.3431e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| so with ||| 0.00943396 0.0571592 1.49697e-06 3.78929e-05 2.718 ||| 0-1 ||| 106 668016 +a ||| so within an appropriate ||| 1 0.0123496 1.49697e-06 6.75401e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| so within an ||| 0.5 0.0123496 1.49697e-06 5.01784e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| so within ||| 0.0714286 0.0123496 1.49697e-06 1.12895e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| so wrongly deprived ||| 1 0.0533769 1.49697e-06 5.88442e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| so ||| 0.000892061 0.0007673 9.58061e-05 8.03e-05 2.718 ||| 0-0 ||| 71744 668016 +a ||| social partners to get ||| 1 0.229811 1.49697e-06 4.05007e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| social partners to ||| 0.0151515 0.229811 1.49697e-06 9.26366e-10 2.718 ||| 0-2 ||| 66 668016 +a ||| social partners with ||| 0.1 0.0571592 1.49697e-06 4.41499e-11 2.718 ||| 0-2 ||| 10 668016 +a ||| socialist and left-wing ||| 0.5 0.0015873 1.49697e-06 2.97143e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| socialist and ||| 0.0196078 0.0015873 1.49697e-06 2.7013e-09 2.718 ||| 0-1 ||| 51 668016 +a ||| society into ||| 0.0526316 0.107578 1.49697e-06 3.51702e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| society to ||| 0.00699301 0.229811 1.49697e-06 2.02825e-05 2.718 ||| 0-1 ||| 143 668016 +a ||| software in ||| 0.0769231 0.0587624 1.49697e-06 4.32594e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| soil in which ||| 0.5 0.0587624 1.49697e-06 3.67471e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| soil in ||| 0.0769231 0.0587624 1.49697e-06 4.32594e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| sold at ||| 0.05 0.204175 2.99394e-06 4.76496e-07 2.718 ||| 0-1 ||| 40 668016 +a ||| sold off to ||| 0.142857 0.229811 1.49697e-06 1.99602e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| soldiers in ||| 0.0344828 0.0587624 1.49697e-06 2.82388e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| solely at bringing about a ||| 1 0.204175 1.49697e-06 3.76936e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| solely at bringing about ||| 1 0.204175 1.49697e-06 8.50375e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| solely at bringing ||| 1 0.204175 1.49697e-06 6.01269e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| solely at ||| 0.0172414 0.204175 1.49697e-06 7.48779e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| solely on ||| 0.0025974 0.0782999 1.49697e-06 8.34583e-07 2.718 ||| 0-1 ||| 385 668016 +a ||| solely to ||| 0.012605 0.229811 4.49091e-06 7.70664e-06 2.718 ||| 0-1 ||| 238 668016 +a ||| solidarity with Africa , ||| 0.333333 0.0571592 1.49697e-06 1.7908e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| solidarity with Africa ||| 0.142857 0.0571592 1.49697e-06 1.50166e-11 2.718 ||| 0-1 ||| 7 668016 +a ||| solidarity with ||| 0.00210822 0.0571592 4.49091e-06 4.39081e-07 2.718 ||| 0-1 ||| 1423 668016 +a ||| solution , in other words ||| 0.5 0.0587624 1.49697e-06 1.42652e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| solution , in other ||| 0.5 0.0587624 1.49697e-06 6.31204e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| solution , in ||| 0.1 0.0587624 1.49697e-06 4.87228e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| solution to ||| 0.00274914 0.229811 5.98788e-06 2.38205e-05 2.718 ||| 0-1 ||| 1455 668016 +a ||| solutions proposed by ||| 0.0833333 0.0337966 1.49697e-06 1.75374e-11 2.718 ||| 0-2 ||| 12 668016 +a ||| solutions to ||| 0.00314465 0.229811 2.99394e-06 6.69076e-06 2.718 ||| 0-1 ||| 636 668016 +a ||| some degree reassured by the ||| 1 0.0337966 1.49697e-06 3.04814e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| some degree reassured by ||| 1 0.0337966 1.49697e-06 4.96507e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| some form of accommodation over ||| 1 0.0682544 1.49697e-06 1.81589e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| some impetus to the process of ||| 1 0.0188479 1.49697e-06 8.94159e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| some in ||| 0.00657895 0.0587624 1.49697e-06 6.54479e-05 2.718 ||| 0-1 ||| 152 668016 +a ||| some light on ||| 0.0263158 0.0782999 1.49697e-06 7.18198e-09 2.718 ||| 0-2 ||| 38 668016 +a ||| some of the revenue generated ||| 1 0.0188479 1.49697e-06 2.84125e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| some of the revenue ||| 0.2 0.0188479 1.49697e-06 2.13628e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| some of the ||| 0.000370233 0.0188479 2.99394e-06 1.97804e-06 2.718 ||| 0-1 ||| 5402 668016 +a ||| some of them ? why not mention ||| 1 0.0188479 1.49697e-06 1.20823e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| some of them ? why not ||| 1 0.0188479 1.49697e-06 1.24303e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| some of them ? why ||| 1 0.0188479 1.49697e-06 3.64088e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| some of them ? ||| 0.5 0.0188479 1.49697e-06 1.47703e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| some of them again ||| 1 0.0700825 1.49697e-06 3.68274e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| some of them encompassed ||| 0.5 0.0188479 1.49697e-06 3.45706e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| some of them out of ||| 0.5 0.0188479 1.49697e-06 1.79971e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| some of them ||| 0.00255102 0.0188479 2.99394e-06 8.64266e-08 2.718 ||| 0-1 ||| 784 668016 +a ||| some of ||| 0.00184227 0.0188479 3.14364e-05 3.22199e-05 2.718 ||| 0-1 ||| 11399 668016 +a ||| some promise on ||| 1 0.0782999 1.49697e-06 3.88439e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| some reference to ||| 0.0588235 0.229811 1.49697e-06 3.25491e-08 2.718 ||| 0-2 ||| 17 668016 +a ||| some remarks on ||| 0.0833333 0.0782999 1.49697e-06 1.26449e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| some responsibility for ||| 0.0357143 0.0683377 1.49697e-06 4.63606e-09 2.718 ||| 0-2 ||| 28 668016 +a ||| some scope for ||| 0.04 0.0683377 1.49697e-06 4.00187e-09 2.718 ||| 0-2 ||| 25 668016 +a ||| some sort of ||| 0.00204082 0.0188479 1.49697e-06 5.14873e-09 2.718 ||| 0-2 ||| 490 668016 +a ||| some specific instances drawn from Spain ||| 1 0.0435582 1.49697e-06 3.13674e-23 2.718 ||| 0-4 ||| 1 668016 +a ||| some specific instances drawn from ||| 1 0.0435582 1.49697e-06 1.93626e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| some thought to how ||| 0.333333 0.229811 1.49697e-06 1.13647e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| some thought to ||| 0.0833333 0.229811 2.99394e-06 3.17096e-08 2.718 ||| 0-2 ||| 24 668016 +a ||| some time after ||| 0.0588235 0.0003017 1.49697e-06 6.89596e-12 2.718 ||| 0-0 ||| 17 668016 +a ||| some time ||| 0.00137552 0.0003017 2.99394e-06 2.54464e-08 2.718 ||| 0-0 ||| 1454 668016 +a ||| some very serious clashes with ||| 1 0.0571592 1.49697e-06 1.60372e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| some way in ||| 0.0625 0.0587624 1.49697e-06 1.41079e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| some way to ||| 0.0222222 0.229811 2.99394e-06 8.22541e-07 2.718 ||| 0-2 ||| 90 668016 +a ||| some way towards ||| 0.0862069 0.155507 7.48485e-06 7.91919e-09 2.718 ||| 0-2 ||| 58 668016 +a ||| some ||| 0.000203278 0.0003017 1.64667e-05 1.55e-05 2.718 ||| 0-0 ||| 54113 668016 +a ||| someone in ||| 0.0208333 0.0587624 1.49697e-06 3.28651e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| someone is ||| 0.0128205 0.0328972 1.49697e-06 2.51669e-06 2.718 ||| 0-0 ||| 78 668016 +a ||| someone to ||| 0.0123457 0.229811 1.49697e-06 1.91615e-05 2.718 ||| 0-1 ||| 81 668016 +a ||| someone ||| 0.00369857 0.0328972 1.19758e-05 8.03e-05 2.718 ||| 0-0 ||| 2163 668016 +a ||| something about ||| 0.00337079 0.0526361 4.49091e-06 2.78925e-06 2.718 ||| 0-1 ||| 890 668016 +a ||| something at ||| 0.025641 0.204175 1.49697e-06 1.88386e-05 2.718 ||| 0-1 ||| 39 668016 +a ||| something for which ||| 0.0172414 0.0683377 1.49697e-06 1.73253e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| something for ||| 0.0105634 0.0683377 4.49091e-06 2.03956e-05 2.718 ||| 0-1 ||| 284 668016 +a ||| something from ||| 0.0266667 0.0435582 2.99394e-06 3.98454e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| something in ||| 0.00869565 0.0587624 2.99394e-06 3.32557e-05 2.718 ||| 0-1 ||| 230 668016 +a ||| something needs to ||| 0.04 0.229811 1.49697e-06 3.84488e-08 2.718 ||| 0-2 ||| 25 668016 +a ||| something of a ||| 0.00520833 0.0188479 1.49697e-06 7.25689e-07 2.718 ||| 0-1 ||| 192 668016 +a ||| something of ||| 0.011236 0.0188479 7.48485e-06 1.63717e-05 2.718 ||| 0-1 ||| 445 668016 +a ||| something on ||| 0.00518135 0.0782999 1.49697e-06 2.09974e-05 2.718 ||| 0-1 ||| 193 668016 +a ||| something that he laid much emphasis on ||| 1 0.0782999 1.49697e-06 1.72325e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| something that urgently needs to be put ||| 0.5 0.229811 1.49697e-06 2.04198e-19 2.718 ||| 0-4 ||| 2 668016 +a ||| something that urgently needs to be ||| 0.5 0.229811 1.49697e-06 1.85197e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| something that urgently needs to ||| 0.5 0.229811 1.49697e-06 1.0219e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| something that we want to do ||| 0.333333 0.229811 1.49697e-06 5.94644e-14 2.718 ||| 0-4 ||| 3 668016 +a ||| something that we want to ||| 0.25 0.229811 1.49697e-06 1.73098e-11 2.718 ||| 0-4 ||| 4 668016 +a ||| something that would come to ||| 1 0.229811 1.49697e-06 1.62566e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| something to be desired in certain ||| 1 0.0587624 1.49697e-06 2.36574e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| something to be desired in ||| 0.25 0.0587624 1.49697e-06 8.30085e-13 2.718 ||| 0-4 ||| 4 668016 +a ||| something to which ||| 0.0315789 0.229811 4.49091e-06 1.64703e-06 2.718 ||| 0-1 ||| 95 668016 +a ||| something to ||| 0.0157385 0.229811 1.94606e-05 0.000193892 2.718 ||| 0-1 ||| 826 668016 +a ||| something which starts out as a means ||| 0.25 0.0243476 1.49697e-06 4.17149e-20 2.718 ||| 0-4 ||| 4 668016 +a ||| something which starts out as a ||| 0.25 0.0243476 1.49697e-06 6.58275e-17 2.718 ||| 0-4 ||| 4 668016 +a ||| something which starts out as ||| 0.25 0.0243476 1.49697e-06 1.48508e-15 2.718 ||| 0-4 ||| 4 668016 +a ||| something with ||| 0.0140845 0.0571592 1.49697e-06 9.24074e-06 2.718 ||| 0-1 ||| 71 668016 +a ||| something ||| 0.000125117 9.83e-05 2.99394e-06 1.8e-06 2.718 ||| 0-0 ||| 15985 668016 +a ||| sometimes , of course , ||| 0.25 0.0188479 1.49697e-06 2.99869e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| sometimes , of course ||| 0.333333 0.0188479 1.49697e-06 2.51453e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| sometimes , of ||| 0.25 0.0188479 1.49697e-06 1.99297e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| sometimes at ||| 0.0384615 0.204175 1.49697e-06 1.923e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| sometimes because of ||| 0.5 0.329597 1.49697e-06 5.08231e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| sometimes because ||| 0.166667 0.329597 1.49697e-06 9.34867e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| sometimes come ||| 0.333333 0.329597 1.49697e-06 2.41626e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| sometimes confused ||| 0.5 0.329597 1.49697e-06 1.33715e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| sometimes coupled ||| 1 0.329597 1.49697e-06 2.5605e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| sometimes drawn into ||| 0.2 0.107578 1.49697e-06 4.87684e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| sometimes due to ||| 0.2 0.229811 1.49697e-06 5.47052e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| sometimes go ||| 0.142857 0.329597 1.49697e-06 1.66376e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| sometimes ||| 0.00182482 0.329597 1.64667e-05 0.002845 2.718 ||| 0-0 ||| 6028 668016 +a ||| somewhat by ||| 0.111111 0.017175 1.49697e-06 1.48095e-08 2.718 ||| 0-0 0-1 ||| 9 668016 +a ||| somewhat casual in ||| 0.125 0.0587624 1.49697e-06 1.40112e-12 2.718 ||| 0-2 ||| 8 668016 +a ||| somewhat late in the ||| 0.333333 0.0587624 1.49697e-06 6.81689e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| somewhat late in ||| 0.333333 0.0587624 1.49697e-06 1.11039e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| somewhat to include ||| 1 0.229811 1.49697e-06 2.70395e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| somewhat to ||| 0.1 0.229811 1.49697e-06 2.04226e-05 2.718 ||| 0-1 ||| 10 668016 +a ||| somewhat with ||| 0.166667 0.0571592 1.49697e-06 9.73324e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| somewhat ||| 0.000448229 0.0005534 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 2231 668016 +a ||| somewhere in ||| 0.0108696 0.0587624 1.49697e-06 1.23169e-06 2.718 ||| 0-1 ||| 92 668016 +a ||| soon as possible to ||| 0.0172414 0.229811 1.49697e-06 2.64069e-10 2.718 ||| 0-3 ||| 58 668016 +a ||| soon as ||| 0.00123993 0.0243476 2.99394e-06 8.07938e-07 2.718 ||| 0-1 ||| 1613 668016 +a ||| soon be deployed on ||| 1 0.0782999 1.49697e-06 8.42143e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| soon on a ||| 1 0.0782999 1.49697e-06 1.54869e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| soon on ||| 0.0769231 0.0782999 1.49697e-06 3.49387e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| soon to ||| 0.010989 0.229811 2.99394e-06 3.22628e-05 2.718 ||| 0-1 ||| 182 668016 +a ||| sorely missed by ||| 1 0.0337966 1.49697e-06 1.70145e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| sorrow and grief over ||| 0.5 0.0682544 1.49697e-06 3.96584e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| sorry to say ||| 0.0714286 0.229811 1.49697e-06 5.29013e-09 2.718 ||| 0-1 ||| 14 668016 +a ||| sorry to ||| 0.0243902 0.229811 1.49697e-06 5.53477e-06 2.718 ||| 0-1 ||| 41 668016 +a ||| sort of ||| 0.0039604 0.0188479 1.49697e-05 4.72664e-06 2.718 ||| 0-1 ||| 2525 668016 +a ||| sort themselves out with ||| 0.5 0.0571592 1.49697e-06 4.39112e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| sorting out its terrible ||| 1 0.0669777 1.49697e-06 1.90238e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| sorting out its ||| 0.333333 0.0669777 1.49697e-06 1.28539e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| sorting out ||| 0.0172414 0.0669777 1.49697e-06 9.0222e-09 2.718 ||| 0-1 ||| 58 668016 +a ||| sorts of ||| 0.00280112 0.0188479 1.49697e-06 4.58467e-07 2.718 ||| 0-1 ||| 357 668016 +a ||| sought after ||| 0.0769231 0.0341027 1.49697e-06 2.71771e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| sought from ||| 0.1 0.0435582 1.49697e-06 2.33241e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| sought to ||| 0.00176991 0.229811 1.49697e-06 1.13498e-05 2.718 ||| 0-1 ||| 565 668016 +a ||| sought-after location by ||| 0.5 0.0337966 1.49697e-06 3.78465e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| sound footing in the ||| 0.5 0.0587624 1.49697e-06 4.73259e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| sound footing in ||| 0.333333 0.0587624 1.49697e-06 7.70883e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| sound inventory of ||| 1 0.0188479 1.49697e-06 3.16253e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| sound of ||| 0.0384615 0.0188479 1.49697e-06 1.75696e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| sounds to me ||| 0.5 0.229811 1.49697e-06 9.06941e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| sounds to ||| 0.5 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| source of ||| 0.00279486 0.0188479 7.48485e-06 1.88415e-06 2.718 ||| 0-1 ||| 1789 668016 +a ||| source to ||| 0.111111 0.229811 1.49697e-06 2.23142e-05 2.718 ||| 0-1 ||| 9 668016 +a ||| space before the ||| 1 0.0203282 1.49697e-06 1.34782e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| space before ||| 1 0.0203282 1.49697e-06 2.19544e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| space to ||| 0.0175439 0.229811 1.49697e-06 1.45025e-05 2.718 ||| 0-1 ||| 57 668016 +a ||| spaces for long periods ||| 1 0.0683377 1.49697e-06 2.02944e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| spaces for long ||| 1 0.0683377 1.49697e-06 1.37124e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| spaces for ||| 0.2 0.0683377 1.49697e-06 4.05334e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| spade a ||| 0.0714286 0.0894309 2.99394e-06 1.33421e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| spade ||| 0.178862 0.0894309 3.29333e-05 3.01e-05 2.718 ||| 0-0 ||| 123 668016 +a ||| spaghetti with ||| 0.142857 0.0571592 1.49697e-06 6.67804e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| sparked off ||| 0.0243902 0.0893962 1.49697e-06 1.37682e-09 2.718 ||| 0-1 ||| 41 668016 +a ||| speak , to ||| 0.0833333 0.229811 1.49697e-06 5.65217e-06 2.718 ||| 0-2 ||| 12 668016 +a ||| speak as ||| 0.011236 0.0243476 1.49697e-06 1.18691e-06 2.718 ||| 0-1 ||| 89 668016 +a ||| speak at ||| 0.0178571 0.204175 1.49697e-06 4.60499e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| speak in favour of ||| 0.0142857 0.0188479 1.49697e-06 2.77111e-11 2.718 ||| 0-3 ||| 70 668016 +a ||| speak in ||| 0.00692841 0.0587624 4.49091e-06 8.12916e-06 2.718 ||| 0-1 ||| 433 668016 +a ||| speak not only about ||| 0.5 0.0526361 1.49697e-06 2.59107e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| speak of ||| 0.00706714 0.0188479 2.99394e-06 4.00197e-06 2.718 ||| 0-1 ||| 283 668016 +a ||| speak on her behalf in Parliament ||| 1 0.0782999 1.49697e-06 5.46512e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| speak on her behalf in ||| 1 0.0782999 1.49697e-06 9.52112e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| speak on her behalf ||| 1 0.0782999 1.49697e-06 4.44818e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| speak on her ||| 1 0.0782999 1.49697e-06 1.3966e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| speak on ||| 0.00559701 0.0782999 4.49091e-06 5.13269e-06 2.718 ||| 0-1 ||| 536 668016 +a ||| speak out in ||| 0.0333333 0.0587624 1.49697e-06 3.11379e-08 2.718 ||| 0-2 ||| 30 668016 +a ||| speak to ||| 0.00389105 0.229811 1.49697e-06 4.73958e-05 2.718 ||| 0-1 ||| 257 668016 +a ||| speak with ||| 0.00209644 0.0571592 1.49697e-06 2.25885e-06 2.718 ||| 0-1 ||| 477 668016 +a ||| speakers from ||| 0.0178571 0.0435582 1.49697e-06 1.45416e-07 2.718 ||| 0-1 ||| 56 668016 +a ||| speaking and in ||| 1 0.0587624 1.49697e-06 8.6397e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| speaking at a very ||| 1 0.204175 1.49697e-06 6.02624e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| speaking at a ||| 0.2 0.204175 1.49697e-06 1.73193e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| speaking at ||| 0.0434783 0.204175 1.49697e-06 3.90726e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| speaking in ||| 0.00699301 0.0587624 1.49697e-06 6.89747e-06 2.718 ||| 0-1 ||| 143 668016 +a ||| speaking of ||| 0.0134228 0.0188479 2.99394e-06 3.39561e-06 2.718 ||| 0-1 ||| 149 668016 +a ||| speaking out in ||| 0.0666667 0.0587624 1.49697e-06 2.64201e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| speaking time to ||| 0.0204082 0.229811 1.49697e-06 6.60203e-08 2.718 ||| 0-2 ||| 49 668016 +a ||| speaking to ||| 0.025641 0.229811 2.99394e-06 4.02146e-05 2.718 ||| 0-1 ||| 78 668016 +a ||| speaking with ||| 0.00653595 0.0571592 1.49697e-06 1.9166e-06 2.718 ||| 0-1 ||| 153 668016 +a ||| speaking ||| 0.000579542 0.0080815 2.99394e-06 4.56e-05 2.718 ||| 0-0 ||| 3451 668016 +a ||| speaks in ||| 0.037037 0.0587624 1.49697e-06 4.32594e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| special exception for ||| 0.5 0.0683377 1.49697e-06 5.89841e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| special links with ||| 0.2 0.0571592 1.49697e-06 1.70063e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| special thanks also going to ||| 1 0.229811 1.49697e-06 1.04941e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| special word of thanks to ||| 0.125 0.229811 1.49697e-06 1.34419e-14 2.718 ||| 0-4 ||| 8 668016 +a ||| specialists in the ||| 0.0625 0.0587624 1.49697e-06 8.11486e-09 2.718 ||| 0-1 ||| 16 668016 +a ||| specialists in ||| 0.0227273 0.0587624 1.49697e-06 1.32181e-07 2.718 ||| 0-1 ||| 44 668016 +a ||| specialists would therefore no longer be on ||| 1 0.0782999 1.49697e-06 1.08344e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| specially at ||| 0.5 0.204175 1.49697e-06 9.87027e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| specially into ||| 0.5 0.107578 1.49697e-06 1.76155e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| species of ||| 0.00680272 0.0188479 1.49697e-06 4.37762e-07 2.718 ||| 0-1 ||| 147 668016 +a ||| specific - to ||| 0.5 0.229811 1.49697e-06 1.99659e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| specific instances drawn from Spain ||| 1 0.0435582 1.49697e-06 2.8796e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| specific instances drawn from ||| 1 0.0435582 1.49697e-06 1.77753e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| specific on ||| 0.0588235 0.0782999 1.49697e-06 5.73207e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| specific question to you ||| 0.0909091 0.229811 1.49697e-06 1.41383e-10 2.718 ||| 0-2 ||| 11 668016 +a ||| specific question to ||| 0.047619 0.229811 1.49697e-06 4.37895e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| specific to ||| 0.0153061 0.229811 4.49091e-06 5.29306e-05 2.718 ||| 0-1 ||| 196 668016 +a ||| specifically at ||| 0.0131579 0.204175 1.49697e-06 1.90939e-06 2.718 ||| 0-1 ||| 76 668016 +a ||| specifically for the benefit of ||| 1 0.0188479 1.49697e-06 1.03114e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| specifically for ||| 0.00555556 0.0683377 1.49697e-06 2.0672e-06 2.718 ||| 0-1 ||| 180 668016 +a ||| specifically in ||| 0.00334448 0.0587624 1.49697e-06 3.37063e-06 2.718 ||| 0-1 ||| 299 668016 +a ||| specifically to ||| 0.0119048 0.229811 7.48485e-06 1.96519e-05 2.718 ||| 0-1 ||| 420 668016 +a ||| specifications , for ||| 0.5 0.0683377 1.49697e-06 1.40619e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| spectators were forced ||| 0.166667 0.0684932 1.49697e-06 3.49108e-13 2.718 ||| 0-2 ||| 6 668016 +a ||| speculation on this point , the important ||| 0.5 0.0782999 1.49697e-06 1.50552e-18 2.718 ||| 0-1 ||| 2 668016 +a ||| speculation on this point , the ||| 0.5 0.0782999 1.49697e-06 3.92472e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| speculation on this point , ||| 0.5 0.0782999 1.49697e-06 6.3929e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| speculation on this point ||| 0.333333 0.0782999 1.49697e-06 5.36071e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| speculation on this ||| 0.333333 0.0782999 1.49697e-06 6.12793e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| speculation on ||| 0.010101 0.0782999 1.49697e-06 9.4839e-08 2.718 ||| 0-1 ||| 99 668016 +a ||| speech for ||| 0.0588235 0.0683377 1.49697e-06 1.65818e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| speech in less ||| 1 0.0587624 1.49697e-06 4.60172e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| speech in ||| 0.00796813 0.0587624 2.99394e-06 2.70371e-06 2.718 ||| 0-1 ||| 251 668016 +a ||| speech that we in ||| 1 0.0587624 1.49697e-06 5.16311e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| speech to ||| 0.0124224 0.229811 2.99394e-06 1.57636e-05 2.718 ||| 0-1 ||| 161 668016 +a ||| speeches as part of ||| 1 0.0188479 1.49697e-06 3.23858e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| speed of ||| 0.00434783 0.0188479 1.49697e-06 5.85654e-07 2.718 ||| 0-1 ||| 230 668016 +a ||| speed with ||| 0.00416667 0.0571592 1.49697e-06 3.30563e-07 2.718 ||| 0-1 ||| 240 668016 +a ||| speeding up in some matters while it ||| 1 0.0587624 1.49697e-06 1.91632e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| speeding up in some matters while ||| 1 0.0587624 1.49697e-06 1.0776e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| speeding up in some matters ||| 1 0.0587624 1.49697e-06 5.78114e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| speeding up in some ||| 1 0.0587624 1.49697e-06 3.12494e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| speeding up in ||| 0.5 0.0587624 1.49697e-06 2.86876e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| spell out clearly ||| 0.142857 0.0669777 1.49697e-06 6.43652e-12 2.718 ||| 0-1 ||| 7 668016 +a ||| spell out ||| 0.0103093 0.0669777 1.49697e-06 3.52686e-08 2.718 ||| 0-1 ||| 97 668016 +a ||| spend on ||| 0.0120482 0.0782999 1.49697e-06 1.14566e-06 2.718 ||| 0-1 ||| 83 668016 +a ||| spending of ||| 0.012987 0.0188479 1.49697e-06 6.27064e-07 2.718 ||| 0-1 ||| 77 668016 +a ||| spending time on ||| 0.5 0.0782999 1.49697e-06 1.32031e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| spends time in ||| 1 0.0587624 1.49697e-06 1.38092e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| spent in ||| 0.00645161 0.0587624 1.49697e-06 3.85129e-06 2.718 ||| 0-1 ||| 155 668016 +a ||| spent on ||| 0.0156951 0.0782999 1.04788e-05 2.43167e-06 2.718 ||| 0-1 ||| 446 668016 +a ||| sphere of ||| 0.00165837 0.0188479 1.49697e-06 7.98619e-07 2.718 ||| 0-1 ||| 603 668016 +a ||| spheres of ||| 0.00549451 0.0188479 1.49697e-06 2.24797e-07 2.718 ||| 0-1 ||| 182 668016 +a ||| spiralling and ravaging ||| 1 0.0015873 1.49697e-06 2.97143e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| spiralling and ||| 0.333333 0.0015873 1.49697e-06 4.2449e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| spirit in ||| 0.00826446 0.0587624 1.49697e-06 3.52684e-06 2.718 ||| 0-1 ||| 121 668016 +a ||| spirit of ||| 0.00198413 0.0188479 5.98788e-06 1.73626e-06 2.718 ||| 0-1 ||| 2016 668016 +a ||| spiritual terrorism at the ||| 1 0.204175 1.49697e-06 9.74122e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| spiritual terrorism at ||| 1 0.204175 1.49697e-06 1.58673e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| spite of ||| 0.00116618 0.0188479 2.99394e-06 5.64949e-07 2.718 ||| 0-1 ||| 1715 668016 +a ||| spoke about ||| 0.00258398 0.0526361 1.49697e-06 1.32534e-07 2.718 ||| 0-1 ||| 387 668016 +a ||| spoke in ||| 0.0175439 0.0587624 2.99394e-06 1.58017e-06 2.718 ||| 0-1 ||| 114 668016 +a ||| spoke to ||| 0.00909091 0.229811 1.49697e-06 9.21293e-06 2.718 ||| 0-1 ||| 110 668016 +a ||| spoke up , ||| 0.166667 0.0195077 1.49697e-06 3.85024e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| spoke up ||| 0.0666667 0.0195077 1.49697e-06 3.22859e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| spoken about ||| 0.00304878 0.0526361 1.49697e-06 1.12376e-07 2.718 ||| 0-1 ||| 328 668016 +a ||| spoken on ||| 0.0185185 0.0782999 2.99394e-06 8.45964e-07 2.718 ||| 0-1 ||| 108 668016 +a ||| spoken out in favour ||| 0.0454545 0.0017065 1.49697e-06 6.17975e-14 2.718 ||| 0-3 ||| 22 668016 +a ||| spoken out in ||| 0.0434783 0.0587624 1.49697e-06 5.13212e-09 2.718 ||| 0-2 ||| 23 668016 +a ||| spoken to ||| 0.015625 0.229811 2.99394e-06 7.81173e-06 2.718 ||| 0-1 ||| 128 668016 +a ||| sport lies both in ||| 0.25 0.0587624 1.49697e-06 9.24254e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| spot of ||| 0.142857 0.0188479 1.49697e-06 4.05225e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| spread to ||| 0.0348837 0.229811 4.49091e-06 9.94857e-06 2.718 ||| 0-1 ||| 86 668016 +a ||| spring from ||| 0.133333 0.0435582 2.99394e-06 9.35844e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| spring into ||| 0.5 0.107578 1.49697e-06 7.89659e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| spy on ||| 0.0625 0.0782999 1.49697e-06 4.17292e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| squarely in the frame ||| 1 0.0587624 1.49697e-06 1.40461e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| squarely in the ||| 0.25 0.0587624 1.49697e-06 1.18034e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| squarely in ||| 0.333333 0.0587624 1.49697e-06 1.92264e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| squarely on ||| 0.142857 0.0782999 1.49697e-06 1.21394e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| squeeze on ||| 0.166667 0.0782999 1.49697e-06 8.34583e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| squeezed out ||| 0.0416667 0.0669777 1.49697e-06 1.31232e-08 2.718 ||| 0-1 ||| 24 668016 +a ||| stability of old European nations ||| 0.5 0.0188479 1.49697e-06 2.46716e-18 2.718 ||| 0-1 ||| 2 668016 +a ||| stability of old European ||| 0.5 0.0188479 1.49697e-06 1.59172e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| stability of old ||| 0.5 0.0188479 1.49697e-06 4.76007e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| stability of ||| 0.00156986 0.0188479 1.49697e-06 6.18191e-07 2.718 ||| 0-1 ||| 637 668016 +a ||| stability to ||| 0.00714286 0.229811 1.49697e-06 7.3213e-06 2.718 ||| 0-1 ||| 140 668016 +a ||| stable door after the ||| 0.0714286 0.0341027 1.49697e-06 3.10255e-14 2.718 ||| 0-2 ||| 14 668016 +a ||| stable door after ||| 0.0666667 0.0341027 1.49697e-06 5.05369e-13 2.718 ||| 0-2 ||| 15 668016 +a ||| staff are ||| 0.0166667 0.0002145 1.49697e-06 1.36554e-08 2.718 ||| 0-0 ||| 60 668016 +a ||| staff for ||| 0.0105263 0.0683377 1.49697e-06 1.48499e-06 2.718 ||| 0-1 ||| 95 668016 +a ||| staff of ||| 0.00537634 0.0188479 1.49697e-06 1.19201e-06 2.718 ||| 0-1 ||| 186 668016 +a ||| staff to ||| 0.00787402 0.229811 1.49697e-06 1.41172e-05 2.718 ||| 0-1 ||| 127 668016 +a ||| staff ||| 0.000197355 0.0002145 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 5067 668016 +a ||| stage against ||| 1 0.05146 1.49697e-06 3.89145e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| stage and ||| 0.0102041 0.0015873 1.49697e-06 2.88846e-07 2.718 ||| 0-1 ||| 98 668016 +a ||| stage applying to ||| 0.5 0.229811 1.49697e-06 1.73577e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| stage of ||| 0.0012987 0.0188479 1.49697e-06 4.4279e-06 2.718 ||| 0-1 ||| 770 668016 +a ||| stage where ||| 0.0120482 0.0053255 1.49697e-06 3.67514e-08 2.718 ||| 0-1 ||| 83 668016 +a ||| stamp it out in ||| 1 0.0587624 1.49697e-06 2.21002e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| stance against ||| 0.0869565 0.05146 2.99394e-06 6.83668e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| stance from ||| 0.25 0.0435582 1.49697e-06 1.89328e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| stance in this respect ||| 0.333333 0.0587624 1.49697e-06 4.41689e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| stance in this ||| 0.2 0.0587624 1.49697e-06 1.02101e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| stance in ||| 0.0434783 0.0587624 1.49697e-06 1.58017e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| stand against ||| 0.0210526 0.05146 2.99394e-06 4.28398e-07 2.718 ||| 0-1 ||| 95 668016 +a ||| stand alongside ||| 0.0526316 0.155101 1.49697e-06 6.15198e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| stand around ||| 0.25 0.0931303 1.49697e-06 1.49062e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| stand at ||| 0.02 0.204175 2.99394e-06 5.60903e-06 2.718 ||| 0-1 ||| 100 668016 +a ||| stand by and ||| 0.037037 0.0337966 2.99394e-06 1.69838e-08 2.718 ||| 0-1 ||| 54 668016 +a ||| stand by ||| 0.00623053 0.0337966 2.99394e-06 1.35589e-06 2.718 ||| 0-1 ||| 321 668016 +a ||| stand condemned of ||| 0.5 0.0188479 1.49697e-06 5.94693e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| stand for ||| 0.00423729 0.0683377 1.49697e-06 6.07263e-06 2.718 ||| 0-1 ||| 236 668016 +a ||| stand in the way of ||| 0.010101 0.0587624 1.49697e-06 7.12353e-11 2.718 ||| 0-1 ||| 99 668016 +a ||| stand in the way ||| 0.00653595 0.0587624 1.49697e-06 1.31034e-09 2.718 ||| 0-1 ||| 153 668016 +a ||| stand in the ||| 0.00568182 0.0587624 1.49697e-06 6.07877e-07 2.718 ||| 0-1 ||| 176 668016 +a ||| stand in ||| 0.0154321 0.0587624 7.48485e-06 9.9016e-06 2.718 ||| 0-1 ||| 324 668016 +a ||| stand shoulder to shoulder ||| 0.025641 0.229811 1.49697e-06 2.17272e-14 2.718 ||| 0-2 ||| 39 668016 +a ||| stand shoulder to ||| 0.025 0.229811 1.49697e-06 1.11996e-09 2.718 ||| 0-2 ||| 40 668016 +a ||| stand this measure in ||| 1 0.0587624 1.49697e-06 4.79197e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| stand to benefit from ||| 0.0357143 0.229811 1.49697e-06 1.22439e-11 2.718 ||| 0-1 ||| 28 668016 +a ||| stand to benefit ||| 0.0333333 0.229811 1.49697e-06 7.603e-09 2.718 ||| 0-1 ||| 30 668016 +a ||| stand to gain ||| 0.0232558 0.229811 1.49697e-06 3.22132e-09 2.718 ||| 0-1 ||| 43 668016 +a ||| stand to where you ||| 0.25 0.229811 1.49697e-06 5.64767e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| stand to where ||| 0.25 0.229811 1.49697e-06 1.74921e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| stand to ||| 0.0384615 0.229811 5.98788e-06 5.77297e-05 2.718 ||| 0-1 ||| 104 668016 +a ||| stand up for ||| 0.00414938 0.0683377 1.49697e-06 2.07107e-08 2.718 ||| 0-2 ||| 241 668016 +a ||| stand up to ||| 0.00826446 0.229811 1.49697e-06 1.96887e-07 2.718 ||| 0-2 ||| 121 668016 +a ||| standard in ||| 0.0188679 0.0587624 1.49697e-06 2.82989e-06 2.718 ||| 0-1 ||| 53 668016 +a ||| standard of living ||| 0.00181818 0.0188479 1.49697e-06 1.16746e-10 2.718 ||| 0-1 ||| 550 668016 +a ||| standard of their legislation ||| 1 0.0188479 1.49697e-06 1.29668e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| standard of their ||| 0.2 0.0188479 1.49697e-06 1.6148e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| standard of ||| 0.00253807 0.0188479 2.99394e-06 1.39315e-06 2.718 ||| 0-1 ||| 788 668016 +a ||| standard to ||| 0.0769231 0.229811 1.49697e-06 1.64992e-05 2.718 ||| 0-1 ||| 13 668016 +a ||| standardised according to ||| 1 0.229811 1.49697e-06 7.75042e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| standards at ||| 0.0285714 0.204175 1.49697e-06 2.48799e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| standards for ||| 0.003003 0.0683377 1.49697e-06 2.69363e-06 2.718 ||| 0-1 ||| 333 668016 +a ||| standards to ||| 0.00884956 0.229811 1.49697e-06 2.5607e-05 2.718 ||| 0-1 ||| 113 668016 +a ||| standing at ||| 0.025 0.204175 1.49697e-06 1.80047e-06 2.718 ||| 0-1 ||| 40 668016 +a ||| standing back ||| 0.333333 0.0536618 1.49697e-06 3.89185e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| standing by ||| 0.0540541 0.0337966 2.99394e-06 4.35235e-07 2.718 ||| 0-1 ||| 37 668016 +a ||| standing in for them could be ||| 0.5 0.06355 1.49697e-06 4.0486e-15 2.718 ||| 0-1 0-2 ||| 2 668016 +a ||| standing in for them could ||| 0.5 0.06355 1.49697e-06 2.23397e-13 2.718 ||| 0-1 0-2 ||| 2 668016 +a ||| standing in for them ||| 0.5 0.06355 1.49697e-06 3.14157e-10 2.718 ||| 0-1 0-2 ||| 2 668016 +a ||| standing in for ||| 0.0344828 0.06355 1.49697e-06 1.17118e-07 2.718 ||| 0-1 0-2 ||| 29 668016 +a ||| standing in the way ||| 0.02 0.0587624 1.49697e-06 4.20613e-10 2.718 ||| 0-1 ||| 50 668016 +a ||| standing in the ||| 0.0126582 0.0587624 1.49697e-06 1.95126e-07 2.718 ||| 0-1 ||| 79 668016 +a ||| standing in ||| 0.0145985 0.0587624 2.99394e-06 3.17836e-06 2.718 ||| 0-1 ||| 137 668016 +a ||| standing of ||| 0.0238095 0.0188479 1.49697e-06 1.5647e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| standing outside ||| 0.2 0.0021524 1.49697e-06 8.1995e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| standing shoulder to shoulder ||| 0.111111 0.229811 1.49697e-06 6.97431e-15 2.718 ||| 0-2 ||| 9 668016 +a ||| standing shoulder to ||| 0.166667 0.229811 1.49697e-06 3.59501e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| standing up at ||| 1 0.204175 1.49697e-06 6.14051e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| standing up in ||| 0.142857 0.0587624 1.49697e-06 1.08398e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| standing up ||| 0.00952381 0.0195077 1.49697e-06 6.494e-08 2.718 ||| 0-1 ||| 105 668016 +a ||| stands at ||| 0.00571429 0.204175 1.49697e-06 1.87535e-06 2.718 ||| 0-1 ||| 175 668016 +a ||| stands for many ||| 0.5 0.0683377 1.49697e-06 6.9702e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| stands for ||| 0.0169492 0.0683377 4.49091e-06 2.03035e-06 2.718 ||| 0-1 ||| 177 668016 +a ||| stands to reason ||| 0.0833333 0.229811 1.49697e-06 4.51465e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| stands to ||| 0.0566038 0.229811 4.49091e-06 1.93016e-05 2.718 ||| 0-1 ||| 53 668016 +a ||| standstill whilst we await ||| 1 0.0442295 1.49697e-06 8.95187e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| standstill whilst we ||| 1 0.0442295 1.49697e-06 2.08183e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| standstill whilst ||| 1 0.0442295 1.49697e-06 1.83384e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| stars to ||| 0.5 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| start all over ||| 0.166667 0.0682544 1.49697e-06 1.52465e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| start at ||| 0.0131579 0.204175 1.49697e-06 4.72752e-06 2.718 ||| 0-1 ||| 76 668016 +a ||| start behaving in ||| 0.5 0.0587624 1.49697e-06 3.58855e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| start by ||| 0.00164474 0.0337966 1.49697e-06 1.1428e-06 2.718 ||| 0-1 ||| 608 668016 +a ||| start the ||| 0.00546448 0.0006284 1.49697e-06 1.25665e-08 2.718 ||| 0-0 0-1 ||| 183 668016 +a ||| start to roll in ||| 1 0.229811 1.49697e-06 1.1977e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| start to roll ||| 0.333333 0.229811 1.49697e-06 5.59554e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| start to sound ||| 1 0.229811 1.49697e-06 2.89022e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| start to ||| 0.0108499 0.229811 8.98182e-06 4.86569e-05 2.718 ||| 0-1 ||| 553 668016 +a ||| start trying to ||| 0.25 0.229811 1.49697e-06 5.60527e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| start with ||| 0.00193798 0.0571592 1.49697e-06 2.31895e-06 2.718 ||| 0-1 ||| 516 668016 +a ||| start ||| 0.000221803 0.0007914 2.99394e-06 8.2e-06 2.718 ||| 0-0 ||| 9017 668016 +a ||| started , ||| 0.00952381 0.0556921 1.49697e-06 2.22052e-05 2.718 ||| 0-0 ||| 105 668016 +a ||| started fishing ||| 0.5 0.0556921 1.49697e-06 7.42938e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| started off ||| 0.0196078 0.0893962 1.49697e-06 3.44205e-08 2.718 ||| 0-1 ||| 51 668016 +a ||| started to be played ||| 0.5 0.229811 1.49697e-06 1.40841e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| started to be ||| 0.0714286 0.229811 1.49697e-06 2.85682e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| started to ||| 0.007109 0.229811 4.49091e-06 1.57636e-05 2.718 ||| 0-1 ||| 422 668016 +a ||| started ||| 0.00232108 0.0556921 8.98182e-06 0.0001862 2.718 ||| 0-0 ||| 2585 668016 +a ||| starting to claim ||| 0.5 0.229811 1.49697e-06 7.54014e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| starting to ||| 0.0148368 0.229811 7.48485e-06 1.60088e-05 2.718 ||| 0-1 ||| 337 668016 +a ||| starting with the ||| 0.00337838 0.0571592 1.49697e-06 4.68399e-08 2.718 ||| 0-1 ||| 296 668016 +a ||| starting with ||| 0.00633914 0.0571592 5.98788e-06 7.62966e-07 2.718 ||| 0-1 ||| 631 668016 +a ||| starting ||| 0.000566412 0.0071043 2.99394e-06 2.28e-05 2.718 ||| 0-0 ||| 3531 668016 +a ||| startled by ||| 0.25 0.0337966 1.49697e-06 5.75925e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| starts out as a means ||| 0.25 0.0243476 1.49697e-06 8.87219e-15 2.718 ||| 0-2 ||| 4 668016 +a ||| starts out as a ||| 0.25 0.0243476 1.49697e-06 1.40006e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| starts out as ||| 0.25 0.0243476 1.49697e-06 3.15857e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| starts to ||| 0.0172414 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-1 ||| 58 668016 +a ||| starts ||| 0.00200401 0.0086957 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 499 668016 +a ||| state at ||| 0.0666667 0.204175 1.49697e-06 8.59734e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| state by ||| 0.037037 0.0337966 1.49697e-06 2.07827e-06 2.718 ||| 0-1 ||| 27 668016 +a ||| state from ||| 0.047619 0.0435582 1.49697e-06 1.81842e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| state of economic and ||| 1 0.0188479 1.49697e-06 1.13522e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| state of economic ||| 1 0.0188479 1.49697e-06 9.06296e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| state of lawlessness from ||| 1 0.0435582 1.49697e-06 3.95426e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| state of ||| 0.00192086 0.0188479 7.48485e-06 7.47153e-06 2.718 ||| 0-1 ||| 2603 668016 +a ||| state their views as ||| 0.5 0.0243476 1.49697e-06 2.08816e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| state to lead ||| 0.333333 0.229811 1.49697e-06 1.70336e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| state to state , ||| 0.5 0.229811 1.49697e-06 2.66553e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| state to state ||| 0.0909091 0.229811 1.49697e-06 2.23516e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| state to ||| 0.0300752 0.229811 5.98788e-06 8.84862e-05 2.718 ||| 0-1 ||| 133 668016 +a ||| state under the ||| 0.0526316 0.0384416 1.49697e-06 2.19959e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| state under ||| 0.0454545 0.0384416 1.49697e-06 3.58288e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| stated at ||| 0.0384615 0.204175 1.49697e-06 2.12041e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| stated in ||| 0.00275862 0.0587624 2.99394e-06 3.74314e-06 2.718 ||| 0-1 ||| 725 668016 +a ||| stated on ||| 0.0166667 0.0782999 1.49697e-06 2.36339e-06 2.718 ||| 0-1 ||| 60 668016 +a ||| statement as to ||| 0.166667 0.229811 2.99394e-06 2.66309e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| statement by ||| 0.00227273 0.0337966 1.49697e-06 6.12949e-07 2.718 ||| 0-1 ||| 440 668016 +a ||| statement on ||| 0.00196464 0.0782999 1.49697e-06 2.8262e-06 2.718 ||| 0-1 ||| 509 668016 +a ||| statement pursuant to ||| 0.5 0.229811 1.49697e-06 3.57535e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| statement to ||| 0.00574713 0.229811 1.49697e-06 2.60975e-05 2.718 ||| 0-1 ||| 174 668016 +a ||| statements from ||| 0.0172414 0.0435582 1.49697e-06 2.30362e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| statements in the ||| 0.0322581 0.0587624 1.49697e-06 1.18034e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| statements in ||| 0.016129 0.0587624 1.49697e-06 1.92264e-06 2.718 ||| 0-1 ||| 62 668016 +a ||| status as ||| 0.00641026 0.0243476 1.49697e-06 8.8689e-07 2.718 ||| 0-1 ||| 156 668016 +a ||| status for the ||| 0.1 0.0683377 1.49697e-06 2.28708e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| status for ||| 0.0204082 0.0683377 1.49697e-06 3.72538e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| status in ||| 0.0126582 0.0587624 1.49697e-06 6.07434e-06 2.718 ||| 0-1 ||| 79 668016 +a ||| status of being ||| 0.5 0.0188479 1.49697e-06 8.51004e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| status of ||| 0.00348736 0.0188479 5.98788e-06 2.99039e-06 2.718 ||| 0-1 ||| 1147 668016 +a ||| status to ||| 0.0769231 0.229811 4.49091e-06 3.54155e-05 2.718 ||| 0-1 ||| 39 668016 +a ||| stay at ||| 0.0352941 0.204175 4.49091e-06 9.66605e-07 2.718 ||| 0-1 ||| 85 668016 +a ||| stay away from ||| 0.1 0.0435582 1.49697e-06 6.50342e-11 2.718 ||| 0-2 ||| 10 668016 +a ||| stay in ||| 0.00682594 0.0587624 2.99394e-06 1.70634e-06 2.718 ||| 0-1 ||| 293 668016 +a ||| stayed at an ||| 1 0.204175 1.49697e-06 6.05109e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| stayed at ||| 0.1 0.204175 1.49697e-06 1.36142e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| staying away from ||| 0.166667 0.0435582 1.49697e-06 1.90065e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| steadily be done away with ||| 0.5 0.0571592 1.49697e-06 2.1944e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| stem precisely from ||| 1 0.0435582 1.49697e-06 4.61371e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| stems from ||| 0.00558659 0.0435582 1.49697e-06 3.09548e-08 2.718 ||| 0-1 ||| 179 668016 +a ||| step , to ||| 0.166667 0.229811 1.49697e-06 6.16183e-06 2.718 ||| 0-2 ||| 6 668016 +a ||| step aside ||| 0.125 0.047402 1.49697e-06 1.39978e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| step at a ||| 0.0526316 0.204175 1.49697e-06 2.22525e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| step at ||| 0.1 0.204175 2.99394e-06 5.02022e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| step forward for ||| 0.00769231 0.0683377 1.49697e-06 3.02412e-09 2.718 ||| 0-2 ||| 130 668016 +a ||| step forward in ||| 0.00286533 0.0587624 1.49697e-06 4.93091e-09 2.718 ||| 0-2 ||| 349 668016 +a ||| step in the right direction , but ||| 0.0181818 0.0587624 1.49697e-06 2.59359e-18 2.718 ||| 0-1 ||| 55 668016 +a ||| step in the right direction , ||| 0.00465116 0.0587624 1.49697e-06 3.79512e-15 2.718 ||| 0-1 ||| 215 668016 +a ||| step in the right direction ||| 0.00117786 0.0587624 1.49697e-06 3.18237e-14 2.718 ||| 0-1 ||| 849 668016 +a ||| step in the right ||| 0.00520833 0.0587624 1.49697e-06 3.50867e-10 2.718 ||| 0-1 ||| 192 668016 +a ||| step in the ||| 0.00199601 0.0587624 2.99394e-06 5.44064e-07 2.718 ||| 0-1 ||| 1002 668016 +a ||| step in ||| 0.00329381 0.0587624 7.48485e-06 8.86217e-06 2.718 ||| 0-1 ||| 1518 668016 +a ||| step of ||| 0.0163934 0.0188479 1.49697e-06 4.36283e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| step on ||| 0.00854701 0.0782999 1.49697e-06 5.5955e-06 2.718 ||| 0-1 ||| 117 668016 +a ||| step to ||| 0.0107527 0.229811 1.49697e-06 5.16695e-05 2.718 ||| 0-1 ||| 93 668016 +a ||| step towards the ||| 0.00649351 0.155507 1.49697e-06 3.05399e-08 2.718 ||| 0-1 ||| 154 668016 +a ||| step towards ||| 0.00087108 0.155507 1.49697e-06 4.97459e-07 2.718 ||| 0-1 ||| 1148 668016 +a ||| step with ||| 0.00961538 0.0571592 1.49697e-06 2.46253e-06 2.718 ||| 0-1 ||| 104 668016 +a ||| step-by-step , to ||| 1 0.229811 1.49697e-06 5.84852e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| steps to combat trade ||| 1 0.229811 1.49697e-06 3.49232e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| steps to combat ||| 0.0833333 0.229811 1.49697e-06 4.00955e-10 2.718 ||| 0-1 ||| 12 668016 +a ||| steps to ensure that ||| 0.0212766 0.229811 1.49697e-06 1.55893e-10 2.718 ||| 0-1 ||| 47 668016 +a ||| steps to ensure ||| 0.0253165 0.229811 2.99394e-06 9.26744e-09 2.718 ||| 0-1 ||| 79 668016 +a ||| steps to see ||| 0.2 0.229811 1.49697e-06 1.45625e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| steps to ||| 0.0100865 0.229811 1.04788e-05 2.06678e-05 2.718 ||| 0-1 ||| 694 668016 +a ||| stereotypical ||| 0.0769231 0.04 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| stern drive ||| 0.5 0.0526723 1.49697e-06 2.484e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| stick at ||| 0.2 0.204175 1.49697e-06 6.87515e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| stick my neck out and ||| 0.5 0.0342825 1.49697e-06 4.42011e-19 2.718 ||| 0-3 0-4 ||| 2 668016 +a ||| stick to ||| 0.0104987 0.229811 5.98788e-06 7.07609e-06 2.718 ||| 0-1 ||| 381 668016 +a ||| stick with which ||| 0.5 0.0571592 1.49697e-06 2.86473e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| stick with ||| 0.0377358 0.0571592 2.99394e-06 3.37241e-07 2.718 ||| 0-1 ||| 53 668016 +a ||| sticking to ||| 0.0125 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-1 ||| 80 668016 +a ||| stigmatised ||| 0.03125 0.08 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 32 668016 +a ||| still a duty of ||| 1 0.0188479 1.49697e-06 7.35698e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| still and ||| 0.142857 0.0015873 1.49697e-06 1.4533e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| still ask ||| 0.142857 0.0082577 1.49697e-06 1.1072e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| still at the ||| 0.0333333 0.204175 1.49697e-06 1.57381e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| still at ||| 0.0410959 0.204175 4.49091e-06 2.56355e-05 2.718 ||| 0-1 ||| 73 668016 +a ||| still be a need for ||| 1 0.0683377 1.49697e-06 2.04426e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| still be relying on old ||| 1 0.0782999 1.49697e-06 2.15313e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| still be relying on ||| 1 0.0782999 1.49697e-06 2.79627e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| still being used to ||| 0.166667 0.229811 1.49697e-06 3.22117e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| still coming back to haunt us ||| 0.5 0.229811 1.49697e-06 1.39134e-19 2.718 ||| 0-3 ||| 2 668016 +a ||| still coming back to haunt ||| 0.5 0.229811 1.49697e-06 4.82736e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| still coming back to ||| 0.5 0.229811 1.49697e-06 3.44812e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| still equate to ||| 0.125 0.229811 1.49697e-06 1.84693e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| still faced ||| 0.111111 0.0494043 1.49697e-06 1.93874e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| still further to ||| 0.333333 0.229811 1.49697e-06 1.27517e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| still going on ||| 0.0384615 0.0782999 1.49697e-06 2.44529e-08 2.718 ||| 0-2 ||| 26 668016 +a ||| still have in ||| 0.5 0.0587624 1.49697e-06 5.4123e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| still have to ||| 0.0131579 0.229811 2.99394e-06 3.15556e-06 2.718 ||| 0-2 ||| 152 668016 +a ||| still high in FYROM ||| 0.111111 0.0587624 1.49697e-06 4.86464e-14 2.718 ||| 0-2 ||| 9 668016 +a ||| still high in ||| 0.1 0.0587624 1.49697e-06 6.75644e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| still in charge there . ||| 1 0.0587624 1.49697e-06 2.11768e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| still in charge there ||| 1 0.0587624 1.49697e-06 6.99136e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| still in charge ||| 0.333333 0.0587624 1.49697e-06 2.28081e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| still in ||| 0.00761421 0.0587624 4.49091e-06 4.52541e-05 2.718 ||| 0-1 ||| 394 668016 +a ||| still more to ||| 0.125 0.229811 1.49697e-06 6.02548e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| still not prepared to ||| 0.5 0.229811 1.49697e-06 7.80994e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| still often in turmoil ||| 0.5 0.0587624 1.49697e-06 4.16248e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| still often in ||| 0.5 0.0587624 1.49697e-06 5.94639e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| still remains to ||| 0.030303 0.229811 1.49697e-06 2.35352e-08 2.718 ||| 0-2 ||| 33 668016 +a ||| still subject to ||| 0.03125 0.229811 1.49697e-06 1.42425e-07 2.718 ||| 0-2 ||| 32 668016 +a ||| still to be ||| 0.00729927 0.229811 1.49697e-06 4.78168e-06 2.718 ||| 0-1 ||| 137 668016 +a ||| still to ||| 0.0132159 0.229811 4.49091e-06 0.000263847 2.718 ||| 0-1 ||| 227 668016 +a ||| still true in ||| 0.2 0.0587624 1.49697e-06 7.31307e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| still under ||| 0.016129 0.0384416 1.49697e-06 1.06834e-06 2.718 ||| 0-1 ||| 62 668016 +a ||| stimulating into new movement , ||| 0.333333 0.107578 1.49697e-06 4.75182e-17 2.718 ||| 0-1 ||| 3 668016 +a ||| stimulating into new movement ||| 0.333333 0.107578 1.49697e-06 3.98459e-16 2.718 ||| 0-1 ||| 3 668016 +a ||| stimulating into new ||| 0.333333 0.107578 1.49697e-06 9.07652e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| stimulating into ||| 0.333333 0.107578 1.49697e-06 1.51858e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| stirred up towards one another ||| 1 0.155507 1.49697e-06 4.62347e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| stirred up towards one ||| 1 0.155507 1.49697e-06 1.91766e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| stirred up towards ||| 1 0.155507 1.49697e-06 4.6009e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| stock and barrel , to ||| 1 0.229811 1.49697e-06 3.47975e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| stock and barrel to ||| 1 0.229811 1.49697e-06 2.91792e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| stock of ||| 0.0143541 0.0188479 4.49091e-06 7.86788e-07 2.718 ||| 0-1 ||| 209 668016 +a ||| stocks on ||| 0.142857 0.0782999 1.49697e-06 8.34583e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| stole from ||| 0.333333 0.0435582 1.49697e-06 2.87952e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| stoning of ||| 0.037037 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-1 ||| 27 668016 +a ||| stood in for me so ||| 0.5 0.0587624 1.49697e-06 9.78138e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| stood in for me ||| 0.5 0.0587624 1.49697e-06 4.30955e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| stood in for ||| 0.25 0.0587624 1.49697e-06 7.15753e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| stood in ||| 0.0333333 0.0587624 1.49697e-06 9.31279e-07 2.718 ||| 0-1 ||| 30 668016 +a ||| stood ||| 0.00280112 0.003517 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 357 668016 +a ||| stop and ||| 0.0227273 0.00173055 2.99394e-06 2.12245e-08 2.718 ||| 0-0 0-1 ||| 88 668016 +a ||| stop at reckoning up ||| 0.5 0.204175 1.49697e-06 1.44377e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| stop at reckoning ||| 0.5 0.204175 1.49697e-06 4.23332e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| stop at ||| 0.00980392 0.204175 2.99394e-06 2.35185e-06 2.718 ||| 0-1 ||| 204 668016 +a ||| stop it from ||| 0.142857 0.0221017 1.49697e-06 1.4754e-10 2.718 ||| 0-1 0-2 ||| 7 668016 +a ||| stop over ||| 1 0.0682544 1.49697e-06 1.60512e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| stop thinking of ||| 0.333333 0.0188479 1.49697e-06 1.51451e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| stop to ||| 0.00242131 0.229811 1.49697e-06 2.42058e-05 2.718 ||| 0-1 ||| 413 668016 +a ||| stop us from ||| 0.0434783 0.0435582 1.49697e-06 1.43371e-09 2.718 ||| 0-2 ||| 23 668016 +a ||| stop ||| 0.000353669 0.0018738 2.99394e-06 1.1e-05 2.718 ||| 0-0 ||| 5655 668016 +a ||| stopped him putting ||| 0.333333 0.0700165 1.49697e-06 2.78391e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| stopped him ||| 0.333333 0.0700165 1.49697e-06 2.48786e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| stopped seemed to go totally ||| 1 0.229811 1.49697e-06 2.19829e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| stopped seemed to go ||| 1 0.229811 1.49697e-06 5.08863e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| stopped seemed to ||| 1 0.229811 1.49697e-06 8.70149e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| stopped to ||| 0.0588235 0.229811 1.49697e-06 7.56651e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| stopped ||| 0.00765027 0.0700165 1.04788e-05 7.76e-05 2.718 ||| 0-0 ||| 915 668016 +a ||| store for ||| 0.0263158 0.0683377 1.49697e-06 5.56412e-07 2.718 ||| 0-1 ||| 38 668016 +a ||| stories of ||| 0.0416667 0.0188479 1.49697e-06 9.46512e-08 2.718 ||| 0-1 ||| 24 668016 +a ||| storm of serious ||| 1 0.0188479 1.49697e-06 1.22668e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| storm of ||| 0.0416667 0.0188479 1.49697e-06 1.06483e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| straddling ||| 0.0217391 0.09375 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 46 668016 +a ||| straight away to ||| 0.0526316 0.229811 1.49697e-06 4.16752e-09 2.718 ||| 0-2 ||| 19 668016 +a ||| straight away ||| 0.0021097 0.0377856 1.49697e-06 8.8077e-09 2.718 ||| 0-1 ||| 474 668016 +a ||| straight down to ||| 0.333333 0.229811 1.49697e-06 9.146e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| straight home to ||| 1 0.229811 1.49697e-06 1.32978e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| straight on ||| 0.2 0.0782999 1.49697e-06 1.41879e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| straight to ||| 0.0208333 0.229811 1.49697e-06 1.31013e-05 2.718 ||| 0-1 ||| 48 668016 +a ||| strain on ||| 0.031746 0.0782999 2.99394e-06 2.31407e-07 2.718 ||| 0-1 ||| 63 668016 +a ||| strain upon the Stability Pact , which ||| 1 0.19056 1.49697e-06 6.09854e-23 2.718 ||| 0-1 ||| 1 668016 +a ||| strain upon the Stability Pact , ||| 1 0.19056 1.49697e-06 7.17932e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| strain upon the Stability Pact ||| 1 0.19056 1.49697e-06 6.02016e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| strain upon the Stability ||| 1 0.19056 1.49697e-06 3.98686e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| strain upon the ||| 1 0.19056 1.49697e-06 7.38307e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| strain upon ||| 1 0.19056 1.49697e-06 1.20262e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| strains upon ||| 1 0.19056 1.49697e-06 3.5487e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| straw in ||| 0.166667 0.0587624 1.49697e-06 8.41155e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| stream in ||| 0.2 0.0587624 1.49697e-06 2.4033e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| street at ||| 0.125 0.204175 1.49697e-06 4.76496e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| strengthen and develop international law . ||| 1 0.0015873 1.49697e-06 9.4687e-23 2.718 ||| 0-1 ||| 1 668016 +a ||| strengthen and develop international law ||| 1 0.0015873 1.49697e-06 3.12602e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| strengthen and develop international ||| 1 0.0015873 1.49697e-06 1.77312e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| strengthen and develop ||| 0.0769231 0.0015873 1.49697e-06 2.29086e-12 2.718 ||| 0-1 ||| 13 668016 +a ||| strengthen and ||| 0.00485437 0.0015873 1.49697e-06 3.74323e-08 2.718 ||| 0-1 ||| 206 668016 +a ||| strengthens ||| 0.00177936 0.008726 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 562 668016 +a ||| stress and to ||| 1 0.229811 1.49697e-06 1.56207e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| stress given – to ||| 1 0.229811 1.49697e-06 3.36356e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| stress in the ||| 0.125 0.0587624 1.49697e-06 1.31313e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| stress in ||| 0.0416667 0.0587624 1.49697e-06 2.13894e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| stress on ||| 0.0178571 0.0782999 1.49697e-06 1.35051e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| stress to ||| 0.0322581 0.229811 1.49697e-06 1.24707e-05 2.718 ||| 0-1 ||| 31 668016 +a ||| stretched and ||| 0.5 0.0015873 1.49697e-06 4.2449e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| striking at ||| 0.0625 0.204175 1.49697e-06 4.28846e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| striking of ||| 0.25 0.0188479 1.49697e-06 3.72689e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| striking while ||| 0.333333 0.0377813 1.49697e-06 1.15466e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| strip to ||| 1 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| strive in ||| 0.125 0.0587624 1.49697e-06 5.64775e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| strive to ||| 0.00322581 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-1 ||| 310 668016 +a ||| strive towards ||| 0.0208333 0.155507 1.49697e-06 3.17024e-08 2.718 ||| 0-1 ||| 48 668016 +a ||| striving for ||| 0.0075188 0.0683377 1.49697e-06 2.5057e-07 2.718 ||| 0-1 ||| 133 668016 +a ||| striving to give to ||| 1 0.229811 1.49697e-06 1.28269e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| stroke after another , ||| 1 0.0341027 1.49697e-06 1.03705e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| stroke after another ||| 1 0.0341027 1.49697e-06 8.69609e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| stroke after ||| 1 0.0341027 1.49697e-06 3.60684e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| strong , vigorous democracy at the heart ||| 1 0.204175 1.49697e-06 2.48098e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| strong , vigorous democracy at the ||| 1 0.204175 1.49697e-06 3.07813e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| strong , vigorous democracy at ||| 1 0.204175 1.49697e-06 5.01392e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| strong resemblance to ||| 0.5 0.229811 1.49697e-06 2.08184e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| strong reservations and will vote against the ||| 1 0.05146 1.49697e-06 1.50119e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| strong reservations and will vote against ||| 1 0.05146 1.49697e-06 2.44526e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| stronger and stronger ||| 0.0833333 0.0015873 1.49697e-06 1.48049e-12 2.718 ||| 0-1 ||| 12 668016 +a ||| stronger and ||| 0.00403226 0.0015873 1.49697e-06 5.34471e-08 2.718 ||| 0-1 ||| 248 668016 +a ||| stronger in the ||| 0.0909091 0.0587624 1.49697e-06 1.02173e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| stronger in ||| 0.025641 0.0587624 1.49697e-06 1.66429e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| strongly about ||| 0.0172414 0.0526361 1.49697e-06 2.41382e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| strongly condemn ||| 0.0166667 0.0017762 1.49697e-06 1.7723e-10 2.718 ||| 0-1 ||| 60 668016 +a ||| strongly in ||| 0.0141844 0.0587624 2.99394e-06 2.87795e-06 2.718 ||| 0-1 ||| 141 668016 +a ||| strongly of ||| 0.333333 0.0188479 1.49697e-06 1.41681e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| strongly resemble ||| 1 0.272727 1.49697e-06 1.70524e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| strongly than ||| 0.0769231 0.0242272 1.49697e-06 6.02055e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| struck by ||| 0.012987 0.0337966 2.99394e-06 2.10624e-07 2.718 ||| 0-1 ||| 154 668016 +a ||| struck in ||| 0.0384615 0.0587624 1.49697e-06 1.53811e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| struck ||| 0.0027894 0.0361248 2.99394e-06 4.02e-05 2.718 ||| 0-0 ||| 717 668016 +a ||| structure as ||| 0.142857 0.0243476 1.49697e-06 2.62295e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| structure more towards ||| 1 0.155507 1.49697e-06 2.3029e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| structure of ||| 0.00376648 0.0188479 2.99394e-06 8.84397e-07 2.718 ||| 0-1 ||| 531 668016 +a ||| structure on ||| 0.333333 0.0782999 1.49697e-06 1.13427e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| structure to ||| 0.027027 0.229811 1.49697e-06 1.0474e-05 2.718 ||| 0-1 ||| 37 668016 +a ||| structures dating from ||| 1 0.0435582 1.49697e-06 2.06807e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| structures in ||| 0.0133333 0.0587624 1.49697e-06 1.29778e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| structures involve ||| 0.5 0.170498 1.49697e-06 1.47658e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| struggle to secure ||| 1 0.229811 1.49697e-06 2.41876e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| struggle to ||| 0.00632911 0.229811 1.49697e-06 4.79913e-06 2.718 ||| 0-1 ||| 158 668016 +a ||| struggling to ||| 0.00806452 0.229811 1.49697e-06 1.89163e-06 2.718 ||| 0-1 ||| 124 668016 +a ||| stuck in a ||| 0.0555556 0.0587624 1.49697e-06 2.68984e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| stuck in ||| 0.0172414 0.0587624 2.99394e-06 6.06833e-07 2.718 ||| 0-1 ||| 116 668016 +a ||| stuck to ||| 0.0555556 0.229811 1.49697e-06 3.53805e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| studied are to ||| 1 0.229811 1.49697e-06 1.70081e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| study is to determine whether ||| 1 0.229811 1.49697e-06 2.34936e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| study is to determine ||| 1 0.229811 1.49697e-06 8.94314e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| study is to ||| 0.25 0.229811 1.49697e-06 3.71085e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| study of ||| 0.00389105 0.0188479 1.49697e-06 9.99753e-07 2.718 ||| 0-1 ||| 257 668016 +a ||| study them , affect up to 24 ||| 1 0.330659 1.49697e-06 4.45232e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| study them , affect up to ||| 1 0.330659 1.49697e-06 5.17712e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| study them , affect up ||| 1 0.330659 1.49697e-06 5.82627e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| study them , affect ||| 1 0.330659 1.49697e-06 1.70833e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| study was not to be done , ||| 1 0.229811 1.49697e-06 1.24814e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| study was not to be done ||| 1 0.229811 1.49697e-06 1.04662e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| study was not to be ||| 1 0.229811 1.49697e-06 2.29521e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| study was not to ||| 1 0.229811 1.49697e-06 1.26647e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| stumbled on ||| 0.5 0.0782999 1.49697e-06 1.51742e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| stumbling on ||| 0.5 0.0782999 1.49697e-06 2.65549e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| subject , in particular , to ||| 1 0.229811 1.49697e-06 3.54233e-11 2.718 ||| 0-5 ||| 1 668016 +a ||| subject for discussion ||| 0.1 0.0683377 1.49697e-06 1.71857e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| subject for ||| 0.0175439 0.0683377 2.99394e-06 1.98908e-05 2.718 ||| 0-1 ||| 114 668016 +a ||| subject it to ||| 0.142857 0.229811 1.49697e-06 3.36268e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| subject of complaint to ||| 1 0.229811 1.49697e-06 8.53227e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| subject of critical scrutiny ||| 0.5 0.0188479 1.49697e-06 6.07556e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| subject of critical ||| 0.5 0.0188479 1.49697e-06 4.02355e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| subject of my ||| 0.0344828 0.0188479 1.49697e-06 1.0268e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| subject of the ||| 0.00153374 0.0188479 1.49697e-06 9.80211e-07 2.718 ||| 0-1 ||| 652 668016 +a ||| subject of ||| 0.0046608 0.0188479 2.69455e-05 1.59665e-05 2.718 ||| 0-1 ||| 3862 668016 +a ||| subject themselves to ||| 0.111111 0.229811 1.49697e-06 8.12532e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| subject to a ||| 0.00359712 0.229811 1.49697e-06 8.38169e-06 2.718 ||| 0-1 ||| 278 668016 +a ||| subject to devolved ||| 0.333333 0.229811 1.49697e-06 3.40367e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| subject to the revision ||| 0.333333 0.229811 1.49697e-06 1.33501e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| subject to the same ||| 0.00806452 0.229811 1.49697e-06 9.34156e-09 2.718 ||| 0-1 ||| 124 668016 +a ||| subject to the ||| 0.00510856 0.229811 5.98788e-06 1.16087e-05 2.718 ||| 0-1 ||| 783 668016 +a ||| subject to very ||| 0.1 0.229811 1.49697e-06 6.57948e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| subject to well ||| 1 0.229811 1.49697e-06 2.99826e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| subject to ||| 0.0190476 0.229811 0.000107782 0.000189093 2.718 ||| 0-1 ||| 3780 668016 +a ||| subject which is acknowledged to ||| 1 0.229811 1.49697e-06 5.63833e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| subject with their ideas ||| 1 0.0571592 1.49697e-06 3.68738e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| subject with their ||| 1 0.0571592 1.49697e-06 1.04458e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| subject with ||| 0.0204082 0.0571592 1.49697e-06 9.01201e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| subjected to discrimination ||| 0.0833333 0.229811 1.49697e-06 9.53381e-11 2.718 ||| 0-1 ||| 12 668016 +a ||| subjected to the noise of ||| 1 0.229811 1.49697e-06 3.4597e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| subjected to the noise ||| 1 0.229811 1.49697e-06 6.36395e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| subjected to the ||| 0.0196078 0.229811 1.49697e-06 4.64522e-07 2.718 ||| 0-1 ||| 51 668016 +a ||| subjected to ||| 0.0128824 0.229811 1.19758e-05 7.56651e-06 2.718 ||| 0-1 ||| 621 668016 +a ||| subjecting ||| 0.0113636 0.194805 1.49697e-06 2.74e-05 2.718 ||| 0-0 ||| 88 668016 +a ||| subjects to ||| 0.0333333 0.229811 1.49697e-06 8.33718e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| subjugation of ||| 0.0666667 0.0188479 1.49697e-06 3.25364e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| subjugation to ||| 0.1 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| submerged by ||| 0.333333 0.0337966 1.49697e-06 9.05025e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| submission of ||| 0.00492611 0.0188479 1.49697e-06 2.54375e-07 2.718 ||| 0-1 ||| 203 668016 +a ||| submission to ||| 0.04 0.229811 2.99394e-06 3.01259e-06 2.718 ||| 0-1 ||| 50 668016 +a ||| submit to ||| 0.0230769 0.229811 4.49091e-06 7.3213e-06 2.718 ||| 0-1 ||| 130 668016 +a ||| submitted for ||| 0.0145985 0.0683377 2.99394e-06 1.8977e-06 2.718 ||| 0-1 ||| 137 668016 +a ||| submitted to ||| 0.0111317 0.229811 8.98182e-06 1.80405e-05 2.718 ||| 0-1 ||| 539 668016 +a ||| submitting inadequate declarations to ||| 1 0.229811 1.49697e-06 3.23483e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| submitting to ||| 0.0322581 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| subordinated to ||| 0.0454545 0.229811 2.99394e-06 3.85332e-07 2.718 ||| 0-1 ||| 44 668016 +a ||| subscribe to ||| 0.00526316 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-1 ||| 190 668016 +a ||| subsequently be designed ||| 1 0.0608974 1.49697e-06 1.47343e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| subsequently be ||| 0.0526316 0.0608974 1.49697e-06 1.88659e-06 2.718 ||| 0-0 ||| 19 668016 +a ||| subsequently became known ||| 1 0.0608974 1.49697e-06 3.04874e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| subsequently became ||| 0.166667 0.0608974 1.49697e-06 2.76906e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| subsequently placed on ||| 0.5 0.0782999 1.49697e-06 8.02672e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| subsequently so ||| 0.333333 0.0608974 1.49697e-06 2.36276e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| subsequently told Mr ||| 1 0.0608974 1.49697e-06 4.03661e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| subsequently told ||| 1 0.0608974 1.49697e-06 6.18354e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| subsequently transferred to ||| 0.333333 0.229811 1.49697e-06 1.27874e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| subsequently ||| 0.00518519 0.0608974 1.04788e-05 0.0001041 2.718 ||| 0-0 ||| 1350 668016 +a ||| subsidies in question ||| 0.5 0.0587624 1.49697e-06 6.46181e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| subsidies in ||| 0.0408163 0.0587624 2.99394e-06 7.81072e-07 2.718 ||| 0-1 ||| 49 668016 +a ||| subsistence allowance rates for officials ||| 0.111111 0.0683377 1.49697e-06 1.98122e-22 2.718 ||| 0-3 ||| 9 668016 +a ||| subsistence allowance rates for ||| 0.111111 0.0683377 1.49697e-06 1.41516e-17 2.718 ||| 0-3 ||| 9 668016 +a ||| substances at ||| 0.125 0.204175 1.49697e-06 7.35165e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| substantial way to ||| 1 0.229811 1.49697e-06 2.25778e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| substitute for ||| 0.0075188 0.0683377 2.99394e-06 1.58449e-07 2.718 ||| 0-1 ||| 266 668016 +a ||| substituted without the ||| 1 0.0015466 1.49697e-06 1.00928e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| substituted without ||| 1 0.0015466 1.49697e-06 1.644e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| subsumed into ||| 0.142857 0.107578 1.49697e-06 4.25201e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| succeed in doing ||| 0.0588235 0.0587624 1.49697e-06 8.40344e-10 2.718 ||| 0-1 ||| 17 668016 +a ||| succeed in having ||| 0.111111 0.0587624 1.49697e-06 8.76513e-10 2.718 ||| 0-1 ||| 9 668016 +a ||| succeed in ||| 0.0105263 0.0587624 8.98182e-06 2.28914e-06 2.718 ||| 0-1 ||| 570 668016 +a ||| succeeded in smuggling ||| 0.25 0.0587624 1.49697e-06 5.61771e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| succeeded in ||| 0.00552995 0.0587624 8.98182e-06 1.12354e-06 2.718 ||| 0-1 ||| 1085 668016 +a ||| success in her ||| 0.2 0.0587624 1.49697e-06 9.71098e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| success in terms ||| 0.0555556 0.0587624 1.49697e-06 3.91723e-09 2.718 ||| 0-1 ||| 18 668016 +a ||| success in your next reincarnation ] ||| 1 0.0587624 1.49697e-06 1.41136e-24 2.718 ||| 0-1 ||| 1 668016 +a ||| success in your next reincarnation ||| 1 0.0587624 1.49697e-06 3.77368e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| success in your next ||| 0.5 0.0587624 1.49697e-06 9.4342e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| success in your ||| 0.0125 0.0587624 1.49697e-06 9.13282e-10 2.718 ||| 0-1 ||| 80 668016 +a ||| success in ||| 0.00327869 0.0587624 4.49091e-06 3.5689e-06 2.718 ||| 0-1 ||| 915 668016 +a ||| success of racist parties in ||| 0.5 0.0587624 1.49697e-06 5.69642e-18 2.718 ||| 0-4 ||| 2 668016 +a ||| success through ||| 0.333333 0.230708 1.49697e-06 4.72177e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| success with ||| 0.00877193 0.0571592 1.49697e-06 9.91689e-07 2.718 ||| 0-1 ||| 114 668016 +a ||| successful in ||| 0.00277778 0.0587624 1.49697e-06 3.31055e-06 2.718 ||| 0-1 ||| 360 668016 +a ||| successfully to ||| 0.025 0.229811 1.49697e-06 1.11046e-05 2.718 ||| 0-1 ||| 40 668016 +a ||| succession , to ||| 0.5 0.229811 1.49697e-06 1.5039e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| successor to ||| 0.0204082 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| succumb to ||| 0.0392157 0.229811 2.99394e-06 7.70664e-07 2.718 ||| 0-1 ||| 51 668016 +a ||| such - to draw ||| 1 0.229811 1.49697e-06 3.2368e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| such - to ||| 1 0.229811 1.49697e-06 2.73379e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| such a short distance ||| 1 0.131537 1.49697e-06 1.96036e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| such a system in the ||| 1 0.0587624 1.49697e-06 9.43415e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| such a system in ||| 0.2 0.0587624 1.49697e-06 1.53671e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| such a way as to meet ||| 0.25 0.0243476 1.49697e-06 1.87376e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| such a way as to ||| 0.0102041 0.229811 4.49091e-06 7.06633e-10 2.718 ||| 0-4 ||| 294 668016 +a ||| such a way as ||| 0.00413223 0.0243476 1.49697e-06 1.73413e-09 2.718 ||| 0-3 ||| 242 668016 +a ||| such animals to areas ||| 1 0.229811 1.49697e-06 6.75184e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| such animals to ||| 1 0.229811 1.49697e-06 2.94969e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| such as the directive on ||| 0.0625 0.0782999 1.49697e-06 5.48717e-12 2.718 ||| 0-4 ||| 16 668016 +a ||| such as the feed used , will ||| 1 0.0561595 1.49697e-06 1.74634e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| such as to ||| 0.0212766 0.229811 1.49697e-06 7.39553e-06 2.718 ||| 0-2 ||| 47 668016 +a ||| such as ||| 0.00100637 0.0243476 4.04182e-05 1.81492e-05 2.718 ||| 0-1 ||| 26829 668016 +a ||| such consideration should also involve dialogue with ||| 1 0.0571592 1.49697e-06 1.61272e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| such contempt towards ||| 1 0.155507 1.49697e-06 7.25668e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| such decision will depend on ||| 1 0.0782999 1.49697e-06 1.96521e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| such demands upon ||| 0.5 0.19056 1.49697e-06 1.57035e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| such in ||| 0.0222222 0.0587624 1.49697e-06 0.000124305 2.718 ||| 0-1 ||| 45 668016 +a ||| such matters are dealt with under the ||| 1 0.0571592 1.49697e-06 2.236e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| such matters are dealt with under ||| 0.5 0.0571592 1.49697e-06 3.64219e-18 2.718 ||| 0-4 ||| 2 668016 +a ||| such matters are dealt with ||| 1 0.0571592 1.49697e-06 1.0151e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| such measures now and in the ||| 1 0.0587624 1.49697e-06 4.07393e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| such measures now and in ||| 1 0.0587624 1.49697e-06 6.63595e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| such misleading terms on tobacco products ||| 1 0.0782999 1.49697e-06 9.39002e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| such misleading terms on tobacco ||| 1 0.0782999 1.49697e-06 9.02887e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| such misleading terms on ||| 1 0.0782999 1.49697e-06 4.04882e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| such moves of ||| 0.166667 0.0188479 1.49697e-06 9.48522e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| such people ||| 0.00840336 0.0079526 1.49697e-06 1.35968e-06 2.718 ||| 0-1 ||| 119 668016 +a ||| such practices must naturally be stopped ||| 1 0.0700165 1.49697e-06 1.0134e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| such thing as ||| 0.0133333 0.0243476 1.49697e-06 6.62265e-09 2.718 ||| 0-2 ||| 75 668016 +a ||| such to ||| 0.1 0.229811 2.99394e-06 0.000724739 2.718 ||| 0-1 ||| 20 668016 +a ||| such training to ||| 1 0.229811 1.49697e-06 2.55833e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| sudden concentration of ||| 1 0.0188479 1.49697e-06 1.11511e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| suddenly embark upon ||| 1 0.19056 1.49697e-06 2.07146e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| suffer as a result ||| 0.0181818 0.0243476 1.49697e-06 7.28825e-12 2.718 ||| 0-1 ||| 55 668016 +a ||| suffer as a ||| 0.0181818 0.0243476 1.49697e-06 1.38428e-08 2.718 ||| 0-1 ||| 55 668016 +a ||| suffer as ||| 0.0140845 0.0243476 1.49697e-06 3.12297e-07 2.718 ||| 0-1 ||| 71 668016 +a ||| suffer from ||| 0.00449438 0.0435582 2.99394e-06 2.56277e-07 2.718 ||| 0-1 ||| 445 668016 +a ||| suffered at ||| 0.0833333 0.204175 1.49697e-06 1.16401e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| suffered by ||| 0.00249377 0.0337966 1.49697e-06 2.81381e-07 2.718 ||| 0-1 ||| 401 668016 +a ||| suffered to an ||| 1 0.229811 1.49697e-06 5.32489e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| suffered to ||| 0.166667 0.229811 1.49697e-06 1.19803e-05 2.718 ||| 0-1 ||| 6 668016 +a ||| suffering amongst ||| 0.111111 0.0156749 1.49697e-06 2.18399e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| suffering for ||| 0.025 0.0683377 1.49697e-06 1.63239e-06 2.718 ||| 0-1 ||| 40 668016 +a ||| suffering from ||| 0.00325203 0.0435582 2.99394e-06 3.18907e-07 2.718 ||| 0-1 ||| 615 668016 +a ||| suffering on ||| 0.0333333 0.0782999 1.49697e-06 1.68055e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| suffice for ||| 0.0769231 0.0683377 1.49697e-06 1.47394e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| sufficient attention in ||| 0.5 0.0587624 1.49697e-06 7.62998e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| sufficient for ||| 0.0163934 0.0683377 2.99394e-06 1.79084e-06 2.718 ||| 0-1 ||| 122 668016 +a ||| sufficient to ||| 0.00773196 0.229811 4.49091e-06 1.70247e-05 2.718 ||| 0-1 ||| 388 668016 +a ||| suggested for ||| 0.0833333 0.0683377 1.49697e-06 7.296e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| suit ||| 0.0222841 0.134642 1.19758e-05 8.76e-05 2.718 ||| 0-0 ||| 359 668016 +a ||| suitable for ||| 0.00881057 0.0683377 2.99394e-06 9.02788e-07 2.718 ||| 0-1 ||| 227 668016 +a ||| suitable to ||| 0.04 0.229811 1.49697e-06 8.58239e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| suited to cover ||| 0.5 0.229811 1.49697e-06 2.27076e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| suited to ||| 0.00986842 0.229811 4.49091e-06 2.9075e-06 2.718 ||| 0-1 ||| 304 668016 +a ||| suits ||| 0.0423729 0.200565 7.48485e-06 6.48e-05 2.718 ||| 0-0 ||| 118 668016 +a ||| sum at ||| 0.2 0.204175 1.49697e-06 1.43289e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| sum spent in ||| 1 0.0587624 1.49697e-06 1.62139e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| sum used to provide ||| 1 0.229811 7.48485e-06 1.87146e-12 2.718 ||| 0-2 ||| 5 668016 +a ||| sum used to ||| 1 0.229811 7.48485e-06 6.32676e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| sum was sufficient for ||| 0.5 0.0683377 1.49697e-06 2.3621e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| summed up ||| 0.00934579 0.0195077 1.49697e-06 5.76972e-09 2.718 ||| 0-1 ||| 107 668016 +a ||| summit cannot be allowed to fail ||| 1 0.229811 1.49697e-06 4.00149e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| summit cannot be allowed to ||| 1 0.229811 1.49697e-06 7.41016e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| summits into ||| 1 0.107578 1.49697e-06 1.76155e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| sunk to ||| 0.2 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| superiors to ||| 1 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| superpower system fell apart when one ||| 0.5 0.0055468 1.49697e-06 3.65848e-25 2.718 ||| 0-4 ||| 2 668016 +a ||| superpower system fell apart when ||| 0.5 0.0055468 1.49697e-06 8.77754e-23 2.718 ||| 0-4 ||| 2 668016 +a ||| supplemented by ||| 0.00680272 0.0337966 1.49697e-06 4.11375e-08 2.718 ||| 0-1 ||| 147 668016 +a ||| supplied at ||| 0.125 0.204175 1.49697e-06 4.28846e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| supplied with ||| 0.0204082 0.0571592 1.49697e-06 2.10358e-07 2.718 ||| 0-1 ||| 49 668016 +a ||| supplies to ||| 0.0625 0.229811 2.99394e-06 7.18118e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| supply and ||| 0.00090009 0.0015873 1.49697e-06 9.93693e-08 2.718 ||| 0-1 ||| 1111 668016 +a ||| supply of ||| 0.00149701 0.0188479 1.49697e-06 1.52329e-06 2.718 ||| 0-1 ||| 668 668016 +a ||| supply to ||| 0.0169492 0.229811 1.49697e-06 1.80405e-05 2.718 ||| 0-1 ||| 59 668016 +a ||| supplying ||| 0.00223714 0.044289 1.49697e-06 1.73e-05 2.718 ||| 0-0 ||| 447 668016 +a ||| support , to ||| 0.05 0.0027239 1.49697e-06 1.5768e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| support , ||| 0.000679348 0.0027239 1.49697e-06 1.77451e-05 2.718 ||| 0-0 ||| 1472 668016 +a ||| support both ||| 0.0227273 0.0027239 1.49697e-06 2.46487e-07 2.718 ||| 0-0 ||| 44 668016 +a ||| support for anybody to carry out ||| 1 0.229811 1.49697e-06 5.11131e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| support for anybody to carry ||| 1 0.229811 1.49697e-06 1.33441e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| support for anybody to ||| 1 0.229811 1.49697e-06 7.27196e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| support for ||| 0.00148743 0.0683377 1.49697e-05 1.25985e-05 2.718 ||| 0-1 ||| 6723 668016 +a ||| support from Europe , ||| 0.2 0.0435582 1.49697e-06 1.4852e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| support from Europe ||| 0.0588235 0.0435582 1.49697e-06 1.2454e-09 2.718 ||| 0-1 ||| 17 668016 +a ||| support from ||| 0.00126582 0.0435582 1.49697e-06 2.46127e-06 2.718 ||| 0-1 ||| 790 668016 +a ||| support getting ||| 0.5 0.0027239 1.49697e-06 1.72906e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| support in ||| 0.00498753 0.0587624 5.98788e-06 2.05422e-05 2.718 ||| 0-1 ||| 802 668016 +a ||| support instead ||| 0.333333 0.0027239 1.49697e-06 3.00427e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| support it in ||| 0.0188679 0.0587624 1.49697e-06 3.65306e-07 2.718 ||| 0-2 ||| 53 668016 +a ||| support it on ||| 0.0909091 0.0782999 1.49697e-06 2.30651e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| support of ||| 0.00176118 0.0188479 7.48485e-06 1.01129e-05 2.718 ||| 0-1 ||| 2839 668016 +a ||| support schemes for farmers and ||| 0.333333 0.0683377 1.49697e-06 1.17017e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| support schemes for farmers ||| 0.0714286 0.0683377 1.49697e-06 9.34204e-15 2.718 ||| 0-2 ||| 14 668016 +a ||| support schemes for ||| 0.0526316 0.0683377 1.49697e-06 2.31812e-10 2.718 ||| 0-2 ||| 19 668016 +a ||| support to ||| 0.00490196 0.229811 1.04788e-05 0.000119768 2.718 ||| 0-1 ||| 1428 668016 +a ||| support with ||| 0.015625 0.0571592 1.49697e-06 5.70805e-06 2.718 ||| 0-1 ||| 64 668016 +a ||| support ||| 0.000947015 0.0027239 8.83212e-05 0.0001488 2.718 ||| 0-0 ||| 62301 668016 +a ||| supported by ||| 0.00274574 0.0337966 7.48485e-06 4.26184e-07 2.718 ||| 0-1 ||| 1821 668016 +a ||| supported in the ||| 0.0169492 0.0587624 1.49697e-06 1.91068e-07 2.718 ||| 0-1 ||| 59 668016 +a ||| supported in ||| 0.00526316 0.0587624 1.49697e-06 3.11227e-06 2.718 ||| 0-1 ||| 190 668016 +a ||| supported with a ||| 1 0.0571592 1.49697e-06 3.83332e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| supported with regard to ||| 1 0.229811 1.49697e-06 7.90063e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| supported with ||| 0.027027 0.0571592 1.49697e-06 8.64806e-07 2.718 ||| 0-1 ||| 37 668016 +a ||| supported ||| 0.001266 0.0120717 1.34727e-05 8.49e-05 2.718 ||| 0-0 ||| 7109 668016 +a ||| supporter of ||| 0.00613497 0.0188479 1.49697e-06 1.18314e-07 2.718 ||| 0-1 ||| 163 668016 +a ||| supporters of the Group of the European ||| 1 0.0188479 1.49697e-06 3.82361e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| supporters of the Group of the ||| 1 0.0188479 1.49697e-06 1.14346e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| supporters of the Group of ||| 1 0.0188479 1.49697e-06 1.86256e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| supporters of the Group ||| 1 0.0188479 1.49697e-06 3.42609e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| supporters of the ||| 0.00877193 0.0188479 1.49697e-06 1.05321e-08 2.718 ||| 0-1 ||| 114 668016 +a ||| supporters of ||| 0.00403226 0.0188479 1.49697e-06 1.71555e-07 2.718 ||| 0-1 ||| 248 668016 +a ||| supporters would ||| 0.5 0.0180587 1.49697e-06 8.5683e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| supporters ||| 0.00147493 0.0180587 1.49697e-06 1.46e-05 2.718 ||| 0-0 ||| 678 668016 +a ||| supporting 1 , ||| 0.333333 0.190621 1.49697e-06 8.70866e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| supporting 1 ||| 0.333333 0.190621 1.49697e-06 7.30257e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| supporting early demonstration ||| 0.285714 0.190621 2.99394e-06 8.07157e-13 2.718 ||| 0-0 ||| 7 668016 +a ||| supporting early ||| 1 0.190621 2.99394e-06 7.76113e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| supporting them as they ||| 1 0.0243476 1.49697e-06 2.45777e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| supporting them as ||| 1 0.0243476 1.49697e-06 7.52995e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| supporting what are ||| 1 0.190621 1.49697e-06 2.44055e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| supporting what ||| 0.142857 0.190621 1.49697e-06 1.60851e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| supporting ||| 0.00534858 0.190621 4.34121e-05 0.0011464 2.718 ||| 0-0 ||| 5422 668016 +a ||| supports ||| 0.000932618 0.0029626 5.98788e-06 1e-05 2.718 ||| 0-0 ||| 4289 668016 +a ||| supposed to be responsible ||| 1 0.229811 1.49697e-06 5.51158e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| supposed to be used ||| 1 0.229811 1.49697e-06 1.59869e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| supposed to be ||| 0.02 0.229811 7.48485e-06 3.72656e-07 2.718 ||| 0-1 ||| 250 668016 +a ||| supposed to have ||| 0.0232558 0.229811 1.49697e-06 2.45926e-07 2.718 ||| 0-1 ||| 43 668016 +a ||| supposed to result in ||| 0.5 0.229811 1.49697e-06 2.31731e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| supposed to result ||| 0.5 0.229811 1.49697e-06 1.08263e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| supposed to work ||| 0.0769231 0.229811 1.49697e-06 1.30162e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| supposed to ||| 0.023015 0.229811 2.99394e-05 2.05627e-05 2.718 ||| 0-1 ||| 869 668016 +a ||| sure is likely to generate more ||| 0.5 0.229811 1.49697e-06 4.00475e-18 2.718 ||| 0-3 ||| 2 668016 +a ||| sure is likely to generate ||| 0.5 0.229811 1.49697e-06 1.75362e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| sure is likely to ||| 0.5 0.229811 1.49697e-06 1.62372e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| sure that both ||| 0.0833333 0.0205477 1.49697e-06 1.92053e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| sure that it will ||| 0.0416667 0.0561595 1.49697e-06 7.33909e-10 2.718 ||| 0-3 ||| 24 668016 +a ||| sure to ||| 0.010989 0.229811 1.49697e-06 6.10225e-05 2.718 ||| 0-1 ||| 91 668016 +a ||| surely ||| 0.00086881 0.0079681 2.99394e-06 3.47e-05 2.718 ||| 0-0 ||| 2302 668016 +a ||| surface at ||| 0.333333 0.204175 1.49697e-06 4.28846e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| surprise to ||| 0.0232558 0.229811 2.99394e-06 2.66229e-06 2.718 ||| 0-1 ||| 86 668016 +a ||| surprising to see ||| 0.142857 0.229811 1.49697e-06 1.23411e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| surprising to ||| 0.0909091 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| surrounded by giants ||| 1 0.0337966 1.49697e-06 1.41513e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| surrounded by ||| 0.00645161 0.0337966 1.49697e-06 3.53783e-08 2.718 ||| 0-1 ||| 155 668016 +a ||| surrounding ||| 0.00241546 0.131602 4.49091e-06 0.0002729 2.718 ||| 0-0 ||| 1242 668016 +a ||| survival of ||| 0.00283286 0.0188479 1.49697e-06 1.9226e-07 2.718 ||| 0-1 ||| 353 668016 +a ||| survived ||| 0.00775194 0.152074 1.49697e-06 3.01e-05 2.718 ||| 0-0 ||| 129 668016 +a ||| susceptible to ||| 0.0172414 0.229811 2.99394e-06 2.45211e-07 2.718 ||| 0-1 ||| 116 668016 +a ||| suspended at ||| 0.00569801 0.204175 2.99394e-06 2.31441e-07 2.718 ||| 0-1 ||| 351 668016 +a ||| suspended ||| 0.000690131 0.0006223 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1449 668016 +a ||| suspicion on ||| 0.0714286 0.0782999 1.49697e-06 2.31407e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| sustaining ||| 0.00520833 0.0803571 1.49697e-06 1.64e-05 2.718 ||| 0-0 ||| 192 668016 +a ||| swept by ||| 0.2 0.0337966 1.49697e-06 7.98068e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| swift to ||| 0.166667 0.229811 1.49697e-06 1.89163e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| switch to ||| 0.0126582 0.229811 2.99394e-06 4.4138e-06 2.718 ||| 0-1 ||| 158 668016 +a ||| switched off ||| 0.0285714 0.0893962 1.49697e-06 3.0596e-09 2.718 ||| 0-1 ||| 35 668016 +a ||| switching to the ordinary procedure ||| 0.5 0.229811 1.49697e-06 9.93217e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| switching to the ordinary ||| 0.5 0.229811 1.49697e-06 9.8926e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| switching to the ||| 0.0909091 0.229811 1.49697e-06 5.37641e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| switching to ||| 0.0208333 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-1 ||| 48 668016 +a ||| sympathise with ||| 0.0107527 0.0571592 1.49697e-06 1.83646e-08 2.718 ||| 0-1 ||| 93 668016 +a ||| sympathising with ||| 0.25 0.0571592 1.49697e-06 6.67804e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| sympathy for ||| 0.00414938 0.0683377 1.49697e-06 5.71152e-07 2.718 ||| 0-1 ||| 241 668016 +a ||| sympathy to ||| 0.00769231 0.229811 1.49697e-06 5.42967e-06 2.718 ||| 0-1 ||| 130 668016 +a ||| system , at the ||| 1 0.204175 1.49697e-06 6.94969e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| system , at ||| 0.2 0.204175 1.49697e-06 1.13202e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| system after ||| 0.0526316 0.0341027 1.49697e-06 2.33941e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| system at ||| 0.027027 0.204175 1.49697e-06 9.49247e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| system fell apart when one ||| 0.5 0.0055468 1.49697e-06 3.32589e-19 2.718 ||| 0-3 ||| 2 668016 +a ||| system fell apart when ||| 0.5 0.0055468 1.49697e-06 7.97958e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| system for all ||| 0.0625 0.0683377 1.49697e-06 4.85632e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| system for ||| 0.00770416 0.0683377 7.48485e-06 1.0277e-05 2.718 ||| 0-1 ||| 649 668016 +a ||| system in the ||| 0.0357143 0.0587624 1.49697e-06 1.02874e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| system in ||| 0.00297619 0.0587624 1.49697e-06 1.6757e-05 2.718 ||| 0-1 ||| 336 668016 +a ||| system of the ||| 0.0243902 0.0188479 1.49697e-06 5.06448e-07 2.718 ||| 0-1 ||| 41 668016 +a ||| system of ||| 0.000724113 0.0188479 2.99394e-06 8.24944e-06 2.718 ||| 0-1 ||| 2762 668016 +a ||| system on ||| 0.0196078 0.0782999 1.49697e-06 1.05802e-05 2.718 ||| 0-1 ||| 51 668016 +a ||| system to enter ||| 0.166667 0.229811 1.49697e-06 4.81657e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| system to promote ||| 0.5 0.229811 1.49697e-06 6.26251e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| system to properly exchange intelligence ||| 0.5 0.229811 1.49697e-06 1.16938e-18 2.718 ||| 0-1 ||| 2 668016 +a ||| system to properly exchange ||| 0.5 0.229811 1.49697e-06 2.01617e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| system to properly ||| 0.5 0.229811 1.49697e-06 7.27858e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| system to ||| 0.0136519 0.229811 5.98788e-06 9.76991e-05 2.718 ||| 0-1 ||| 293 668016 +a ||| systems available as a ||| 1 0.0243476 1.49697e-06 6.49379e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| systems available as ||| 1 0.0243476 1.49697e-06 1.46501e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| systems believed to be unchangeable ||| 1 0.229811 1.49697e-06 1.49316e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| systems believed to be ||| 1 0.229811 1.49697e-06 3.73291e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| systems believed to ||| 1 0.229811 1.49697e-06 2.05977e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| systems for all ||| 1 0.0683377 1.49697e-06 9.1415e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| systems for ||| 0.00740741 0.0683377 1.49697e-06 1.93455e-06 2.718 ||| 0-1 ||| 135 668016 +a ||| systems in ||| 0.00625 0.0587624 1.49697e-06 3.15433e-06 2.718 ||| 0-1 ||| 160 668016 +a ||| systems to ||| 0.0285714 0.229811 4.49091e-06 1.83908e-05 2.718 ||| 0-1 ||| 105 668016 +a ||| table , as regards ||| 1 0.263434 1.49697e-06 3.69747e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| table discussion on the ||| 1 0.0782999 1.49697e-06 1.36226e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| table discussion on ||| 1 0.0782999 1.49697e-06 2.21896e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| table for ||| 0.0169492 0.0683377 1.49697e-06 2.49464e-06 2.718 ||| 0-1 ||| 59 668016 +a ||| table in ||| 0.0126582 0.0587624 1.49697e-06 4.06759e-06 2.718 ||| 0-1 ||| 79 668016 +a ||| table on 26 ||| 0.5 0.0782999 1.49697e-06 1.28412e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| table on ||| 0.1 0.0782999 1.49697e-06 2.56824e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| table to ||| 0.0384615 0.229811 1.49697e-06 2.37154e-05 2.718 ||| 0-1 ||| 26 668016 +a ||| tabled either on ||| 0.5 0.0782999 1.49697e-06 2.68341e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| tabled in order ||| 0.166667 0.0587624 1.49697e-06 2.6144e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| tabled in ||| 0.00254453 0.0587624 1.49697e-06 4.90874e-06 2.718 ||| 0-1 ||| 393 668016 +a ||| tabled on ||| 0.00724638 0.0782999 1.49697e-06 3.09934e-06 2.718 ||| 0-1 ||| 138 668016 +a ||| tabled to ||| 0.0104167 0.229811 1.49697e-06 2.86196e-05 2.718 ||| 0-1 ||| 96 668016 +a ||| tables with concrete indicators ||| 1 0.0571592 1.49697e-06 4.42083e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| tables with concrete ||| 1 0.0571592 1.49697e-06 9.40602e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| tables with ||| 1 0.0571592 1.49697e-06 3.00512e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| tackle it at the next Intergovernmental Conference ||| 1 0.204175 1.49697e-06 1.30278e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| tackle it at the next Intergovernmental ||| 1 0.204175 1.49697e-06 6.96672e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| tackle it at the next ||| 1 0.204175 1.49697e-06 1.39334e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| tackle it at the ||| 1 0.204175 1.49697e-06 1.34883e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| tackle it at ||| 0.333333 0.204175 1.49697e-06 2.19709e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| tackling ||| 0.000988631 0.0514233 2.99394e-06 0.0001022 2.718 ||| 0-0 ||| 2023 668016 +a ||| tact with which she also continuously underlines ||| 0.5 0.0571592 1.49697e-06 1.9704e-27 2.718 ||| 0-1 ||| 2 668016 +a ||| tact with which she also continuously ||| 0.5 0.0571592 1.49697e-06 8.95638e-22 2.718 ||| 0-1 ||| 2 668016 +a ||| tact with which she also ||| 0.5 0.0571592 1.49697e-06 2.23909e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| tact with which she ||| 0.5 0.0571592 1.49697e-06 4.43508e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| tact with which ||| 0.5 0.0571592 1.49697e-06 1.56e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| tact with ||| 0.5 0.0571592 1.49697e-06 1.83646e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| tag along to ||| 1 0.229811 1.49697e-06 8.55787e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| tagging along with ||| 1 0.0571592 1.49697e-06 1.16532e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| tailored to ||| 0.0130719 0.229811 2.99394e-06 7.70664e-07 2.718 ||| 0-1 ||| 153 668016 +a ||| take a back seat to ||| 1 0.229811 1.49697e-06 2.72393e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| take a look at ourselves here ||| 1 0.204175 1.49697e-06 4.5671e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| take a look at ourselves ||| 0.25 0.204175 1.49697e-06 2.25224e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| take a look at ||| 0.00757576 0.204175 1.49697e-06 7.0803e-10 2.718 ||| 0-3 ||| 132 668016 +a ||| take a ||| 0.0011236 0.0012933 4.49091e-06 3.03632e-06 2.718 ||| 0-0 ||| 2670 668016 +a ||| take account of ||| 0.000613874 0.0188479 1.49697e-06 1.36911e-08 2.718 ||| 0-2 ||| 1629 668016 +a ||| take action to ||| 0.003861 0.229811 1.49697e-06 1.70493e-07 2.718 ||| 0-2 ||| 259 668016 +a ||| take advantage of ||| 0.00149925 0.0188479 1.49697e-06 2.4144e-09 2.718 ||| 0-2 ||| 667 668016 +a ||| take an ||| 0.00314465 0.0012933 1.49697e-06 3.04462e-07 2.718 ||| 0-0 ||| 318 668016 +a ||| take any action to ||| 0.25 0.229811 1.49697e-06 2.57819e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| take as long as ||| 0.333333 0.0243476 1.49697e-06 4.87566e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| take as long ||| 0.5 0.0243476 1.49697e-06 4.778e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| take as ||| 0.0140845 0.0243476 1.49697e-06 1.41236e-05 2.718 ||| 0-1 ||| 71 668016 +a ||| take at the ||| 0.25 0.204175 1.49697e-06 3.36409e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| take at ||| 0.0322581 0.204175 1.49697e-06 5.4797e-05 2.718 ||| 0-1 ||| 31 668016 +a ||| take away from ||| 0.0666667 0.0435582 2.99394e-06 3.6868e-09 2.718 ||| 0-2 ||| 30 668016 +a ||| take care to ||| 0.0322581 0.229811 2.99394e-06 5.72445e-08 2.718 ||| 0-2 ||| 62 668016 +a ||| take charge of ||| 0.0232558 0.0188479 1.49697e-06 2.40012e-09 2.718 ||| 0-2 ||| 43 668016 +a ||| take evidence from ||| 0.5 0.0435582 1.49697e-06 6.38613e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| take for ||| 0.0120482 0.0683377 1.49697e-06 5.93261e-05 2.718 ||| 0-1 ||| 83 668016 +a ||| take home to ||| 0.5 0.229811 1.49697e-06 5.72445e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| take in a high number of ||| 1 0.0587624 1.49697e-06 1.72199e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| take in a high number ||| 1 0.0587624 1.49697e-06 3.16752e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| take in a high ||| 1 0.0587624 1.49697e-06 6.40163e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| take in a ||| 0.25 0.0587624 1.49697e-06 4.28776e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| take in ||| 0.028777 0.0587624 1.19758e-05 9.67328e-05 2.718 ||| 0-1 ||| 278 668016 +a ||| take into ||| 0.00174723 0.107578 4.49091e-06 9.77962e-06 2.718 ||| 0-1 ||| 1717 668016 +a ||| take it back and put it ||| 1 0.0015873 1.49697e-06 7.2856e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| take it back and put ||| 1 0.0015873 1.49697e-06 4.0969e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| take it back and ||| 1 0.0015873 1.49697e-06 3.71567e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| take it to ||| 0.0625 0.229811 1.49697e-06 1.00295e-05 2.718 ||| 0-2 ||| 16 668016 +a ||| take matters to ||| 0.5 0.229811 1.49697e-06 1.04337e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| take on in ||| 0.25 0.0685311 1.49697e-06 3.66962e-06 2.718 ||| 0-1 0-2 ||| 4 668016 +a ||| take on ||| 0.00899888 0.0782999 1.19758e-05 6.10763e-05 2.718 ||| 0-1 ||| 889 668016 +a ||| take out ||| 0.010101 0.0669777 1.49697e-06 6.60261e-06 2.718 ||| 0-1 ||| 99 668016 +a ||| take part in the ||| 0.00230415 0.0587624 1.49697e-06 7.08e-09 2.718 ||| 0-2 ||| 434 668016 +a ||| take part in ||| 0.00424809 0.0587624 7.48485e-06 1.15325e-07 2.718 ||| 0-2 ||| 1177 668016 +a ||| take part to ||| 1 0.229811 1.49697e-06 6.72384e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| take place at ||| 0.0070922 0.204175 1.49697e-06 8.24695e-08 2.718 ||| 0-2 ||| 141 668016 +a ||| take place following ||| 0.2 0.0720432 1.49697e-06 2.38864e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| take place in ||| 0.00539568 0.0587624 4.49091e-06 1.45583e-07 2.718 ||| 0-2 ||| 556 668016 +a ||| take place of ||| 0.666667 0.0188479 2.99394e-06 7.16702e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| take place to ||| 0.142857 0.229811 1.49697e-06 8.48798e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| take place ||| 0.000666889 0.0012933 2.99394e-06 1.03092e-07 2.718 ||| 0-0 ||| 2999 668016 +a ||| take prompt action to follow through ||| 1 0.229811 1.49697e-06 5.28313e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| take prompt action to follow ||| 1 0.229811 1.49697e-06 1.14776e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| take prompt action to ||| 0.125 0.229811 1.49697e-06 1.15935e-12 2.718 ||| 0-3 ||| 8 668016 +a ||| take some responsibility for ||| 0.5 0.0683377 1.49697e-06 7.46406e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| take stock of ||| 0.00819672 0.0188479 1.49697e-06 1.26673e-09 2.718 ||| 0-2 ||| 122 668016 +a ||| take that as ||| 0.0769231 0.0243476 1.49697e-06 2.37581e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| take the decision on ||| 0.142857 0.0782999 1.49697e-06 5.8981e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| take the liberty of ||| 0.0204082 0.0188479 1.49697e-06 2.9528e-11 2.718 ||| 0-3 ||| 49 668016 +a ||| take the ||| 0.000566251 0.0004654 2.99394e-06 2.46733e-06 2.718 ||| 0-1 ||| 3532 668016 +a ||| take these on ||| 0.5 0.0782999 1.49697e-06 6.33422e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| take this action - as I urge ||| 1 0.0243476 1.49697e-06 2.40699e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| take this action - as I ||| 1 0.0243476 1.49697e-06 7.36083e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| take this action - as ||| 1 0.0243476 1.49697e-06 1.04062e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| take this on ||| 0.0625 0.0782999 1.49697e-06 3.94639e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| take this opportunity to ||| 0.00449438 0.229811 2.99394e-06 6.5558e-10 2.718 ||| 0-3 ||| 445 668016 +a ||| take to avoid ||| 1 0.229811 1.49697e-06 1.99087e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| take to induce ||| 1 0.229811 1.49697e-06 2.65073e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| take to ||| 0.0278638 0.229811 1.34727e-05 0.000563986 2.718 ||| 0-1 ||| 323 668016 +a ||| take up ||| 0.00208117 0.0195077 2.99394e-06 1.97644e-06 2.718 ||| 0-1 ||| 961 668016 +a ||| take vis à vis ||| 0.333333 0.331035 1.49697e-06 2.62397e-18 2.718 ||| 0-2 ||| 3 668016 +a ||| take vis à ||| 0.333333 0.331035 1.49697e-06 4.3016e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| take with them as they leave for ||| 1 0.0683377 1.49697e-06 3.21986e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| take ||| 0.00124541 0.0012933 5.98788e-05 6.85e-05 2.718 ||| 0-0 ||| 32118 668016 +a ||| taken , even ||| 0.5 0.0495435 1.49697e-06 2.12129e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| taken against ||| 0.0149254 0.05146 2.99394e-06 2.36944e-06 2.718 ||| 0-1 ||| 134 668016 +a ||| taken apart ||| 0.5 0.0216794 1.49697e-06 5.90652e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| taken as early ||| 0.25 0.0470713 1.49697e-06 2.25836e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| taken as to ||| 0.5 0.229811 1.49697e-06 3.25826e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| taken at ||| 0.0163551 0.204175 1.04788e-05 3.10233e-05 2.718 ||| 0-1 ||| 428 668016 +a ||| taken away for ||| 1 0.0683377 1.49697e-06 1.06842e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| taken away from ||| 0.0483871 0.0435582 4.49091e-06 2.08728e-09 2.718 ||| 0-2 ||| 62 668016 +a ||| taken back ||| 0.08 0.0536618 2.99394e-06 6.70591e-07 2.718 ||| 0-1 ||| 25 668016 +a ||| taken by the rapporteur in her report ||| 0.5 0.0587624 1.49697e-06 1.4234e-19 2.718 ||| 0-4 ||| 2 668016 +a ||| taken by the rapporteur in her ||| 0.5 0.0587624 1.49697e-06 3.47256e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| taken by the rapporteur in ||| 0.25 0.0587624 1.49697e-06 1.27621e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| taken by the ||| 0.000736377 0.0337966 1.49697e-06 4.604e-07 2.718 ||| 0-1 ||| 1358 668016 +a ||| taken by ||| 0.00223514 0.0337966 7.48485e-06 7.49937e-06 2.718 ||| 0-1 ||| 2237 668016 +a ||| taken for ||| 0.00487805 0.0683377 1.49697e-06 3.35874e-05 2.718 ||| 0-1 ||| 205 668016 +a ||| taken in response to ||| 0.1 0.229811 1.49697e-06 6.83445e-10 2.718 ||| 0-3 ||| 10 668016 +a ||| taken in the ||| 0.00647249 0.0587624 2.99394e-06 3.36213e-06 2.718 ||| 0-1 ||| 309 668016 +a ||| taken in ||| 0.0101946 0.0587624 1.64667e-05 5.47652e-05 2.718 ||| 0-1 ||| 1079 668016 +a ||| taken into account ||| 0.00246305 0.107578 5.98788e-06 1.59181e-09 2.718 ||| 0-1 ||| 1624 668016 +a ||| taken into custody ||| 0.0526316 0.107578 1.49697e-06 3.2113e-11 2.718 ||| 0-1 ||| 19 668016 +a ||| taken into ||| 0.00578643 0.107578 1.64667e-05 5.53672e-06 2.718 ||| 0-1 ||| 1901 668016 +a ||| taken its seat in ||| 0.333333 0.0587624 1.49697e-06 1.26399e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| taken note of ||| 0.00396825 0.0188479 1.49697e-06 2.81471e-09 2.718 ||| 0-2 ||| 252 668016 +a ||| taken of ||| 0.0291667 0.0188479 1.04788e-05 2.69608e-05 2.718 ||| 0-1 ||| 240 668016 +a ||| taken off the ||| 0.0196078 0.0893962 1.49697e-06 4.28028e-08 2.718 ||| 0-1 ||| 51 668016 +a ||| taken off to ||| 1 0.229811 1.49697e-06 1.29955e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| taken off ||| 0.0306122 0.0893962 4.49091e-06 6.97206e-07 2.718 ||| 0-1 ||| 98 668016 +a ||| taken on in ||| 0.142857 0.0685311 1.49697e-06 2.07755e-06 2.718 ||| 0-1 0-2 ||| 7 668016 +a ||| taken on ||| 0.00965018 0.0782999 1.19758e-05 3.45783e-05 2.718 ||| 0-1 ||| 829 668016 +a ||| taken out of ||| 0.0243902 0.0188479 2.99394e-06 1.03271e-07 2.718 ||| 0-2 ||| 82 668016 +a ||| taken over by Josu ||| 1 0.0682544 1.49697e-06 4.44646e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| taken over by ||| 0.211111 0.0682544 2.84424e-05 1.11162e-08 2.718 ||| 0-1 ||| 90 668016 +a ||| taken over ||| 0.146825 0.0682544 5.53879e-05 2.11732e-06 2.718 ||| 0-1 ||| 252 668016 +a ||| taken regarding ||| 0.0357143 0.186429 1.49697e-06 3.06747e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| taken their seats in ||| 0.04 0.0587624 1.49697e-06 6.1574e-13 2.718 ||| 0-3 ||| 25 668016 +a ||| taken through ||| 0.0555556 0.230708 1.49697e-06 7.2456e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| taken to a ||| 0.166667 0.229811 1.49697e-06 1.41532e-05 2.718 ||| 0-1 ||| 6 668016 +a ||| taken to continue keeping ||| 1 0.229811 1.49697e-06 4.33711e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| taken to continue ||| 1 0.229811 1.49697e-06 7.3886e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| taken to ensure that ||| 0.0222222 0.229811 1.49697e-06 2.40842e-09 2.718 ||| 0-1 ||| 45 668016 +a ||| taken to ensure ||| 0.0327869 0.229811 2.99394e-06 1.43174e-07 2.718 ||| 0-1 ||| 61 668016 +a ||| taken to inform and safeguard the coastal ||| 1 0.229811 1.49697e-06 5.57614e-22 2.718 ||| 0-1 ||| 1 668016 +a ||| taken to inform and safeguard the ||| 1 0.229811 1.49697e-06 9.61403e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| taken to inform and safeguard ||| 1 0.229811 1.49697e-06 1.56601e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| taken to inform and ||| 0.5 0.229811 1.49697e-06 7.63908e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| taken to inform ||| 0.333333 0.229811 1.49697e-06 6.09863e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| taken to this ||| 0.0833333 0.229811 1.49697e-06 2.06312e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| taken to ||| 0.0200236 0.229811 2.54485e-05 0.0003193 2.718 ||| 0-1 ||| 849 668016 +a ||| taken under ||| 0.0149254 0.0384416 1.49697e-06 1.29287e-06 2.718 ||| 0-1 ||| 67 668016 +a ||| taken up again ||| 0.0714286 0.0700825 1.49697e-06 7.20714e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| taken up by ||| 0.00628931 0.0337966 1.49697e-06 2.55766e-08 2.718 ||| 0-2 ||| 159 668016 +a ||| taken up ||| 0.00426136 0.0195077 4.49091e-06 1.11896e-06 2.718 ||| 0-1 ||| 704 668016 +a ||| taken with ||| 0.021978 0.0571592 2.99394e-06 1.52176e-05 2.718 ||| 0-1 ||| 91 668016 +a ||| takes account of ||| 0.005 0.0188479 2.99394e-06 1.09869e-09 2.718 ||| 0-2 ||| 400 668016 +a ||| takes on ||| 0.00763359 0.0782999 1.49697e-06 4.90128e-06 2.718 ||| 0-1 ||| 131 668016 +a ||| takes place at ||| 0.0238095 0.204175 1.49697e-06 6.61805e-09 2.718 ||| 0-2 ||| 42 668016 +a ||| takes place in ||| 0.00636943 0.0587624 1.49697e-06 1.16828e-08 2.718 ||| 0-2 ||| 157 668016 +a ||| takes second place to ||| 0.5 0.229811 1.49697e-06 4.43427e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| takes that into account even ||| 1 0.107578 1.49697e-06 2.30953e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| takes that into account ||| 0.333333 0.107578 1.49697e-06 3.79546e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| takes that into ||| 0.333333 0.107578 1.49697e-06 1.32016e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| takes two to ||| 0.0714286 0.229811 1.49697e-06 1.06992e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| taking a hold on ||| 1 0.0782999 1.49697e-06 1.24492e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| taking account of ||| 0.00176991 0.0188479 1.49697e-06 3.61412e-09 2.718 ||| 0-2 ||| 565 668016 +a ||| taking an ||| 0.00819672 0.0112121 1.49697e-06 7.5071e-07 2.718 ||| 0-0 ||| 122 668016 +a ||| taking as ||| 0.0294118 0.0243476 1.49697e-06 3.72827e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| taking energetic steps to see ||| 0.5 0.229811 1.49697e-06 1.79483e-17 2.718 ||| 0-3 ||| 2 668016 +a ||| taking energetic steps to ||| 0.5 0.229811 1.49697e-06 2.54731e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| taking flight in ||| 1 0.0587624 1.49697e-06 2.01727e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| taking forward to ||| 1 0.229811 1.49697e-06 8.28358e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| taking his ||| 0.0714286 0.0112121 1.49697e-06 5.07545e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| taking hold ||| 0.0384615 0.0112121 1.49697e-06 2.94224e-08 2.718 ||| 0-0 ||| 26 668016 +a ||| taking in ||| 0.0235294 0.0587624 2.99394e-06 2.55351e-05 2.718 ||| 0-1 ||| 85 668016 +a ||| taking into account ||| 0.000837521 0.107578 1.49697e-06 7.42204e-10 2.718 ||| 0-1 ||| 1194 668016 +a ||| taking into consideration comments ||| 1 0.107578 1.49697e-06 1.39405e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| taking into consideration ||| 0.00956938 0.107578 2.99394e-06 2.7881e-10 2.718 ||| 0-1 ||| 209 668016 +a ||| taking into ||| 0.00761421 0.107578 1.34727e-05 2.58158e-06 2.718 ||| 0-1 ||| 1182 668016 +a ||| taking on of ||| 1 0.0782999 1.49697e-06 8.76491e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| taking on ||| 0.00327869 0.0782999 1.49697e-06 1.61226e-05 2.718 ||| 0-1 ||| 305 668016 +a ||| taking over ||| 0.0143885 0.0682544 2.99394e-06 9.87232e-07 2.718 ||| 0-1 ||| 139 668016 +a ||| taking part in ||| 0.00731707 0.0587624 4.49091e-06 3.04429e-08 2.718 ||| 0-2 ||| 410 668016 +a ||| taking part ||| 0.00554529 0.0112121 4.49091e-06 2.01363e-07 2.718 ||| 0-0 ||| 541 668016 +a ||| taking place at the ||| 0.030303 0.0112121 1.49697e-06 6.53463e-11 2.718 ||| 0-0 ||| 33 668016 +a ||| taking place at ||| 0.0103093 0.0112121 1.49697e-06 1.06441e-09 2.718 ||| 0-0 ||| 97 668016 +a ||| taking place ||| 0.00267953 0.0112121 7.48485e-06 2.54195e-07 2.718 ||| 0-0 ||| 1866 668016 +a ||| taking that as our ||| 1 0.0112121 1.49697e-06 3.99921e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| taking that as ||| 0.333333 0.0112121 1.49697e-06 2.89924e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| taking that ||| 0.0243902 0.0112121 1.49697e-06 2.84117e-06 2.718 ||| 0-0 ||| 41 668016 +a ||| taking the crown ||| 0.333333 0.0112121 1.49697e-06 1.1406e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| taking the decisions on ||| 0.25 0.0782999 1.49697e-06 7.55215e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| taking the floor to ||| 0.333333 0.229811 1.49697e-06 3.88446e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| taking the ||| 0.00223214 0.0112121 2.99394e-06 1.03691e-05 2.718 ||| 0-0 ||| 896 668016 +a ||| taking them to ||| 0.333333 0.229811 1.49697e-06 3.99351e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| taking this as a ||| 0.5 0.0112121 1.49697e-06 4.93629e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| taking this as ||| 0.333333 0.0112121 1.49697e-06 1.11364e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| taking this ||| 0.0046729 0.0112121 1.49697e-06 1.09133e-06 2.718 ||| 0-0 ||| 214 668016 +a ||| taking to ||| 0.0185185 0.229811 2.99394e-06 0.000148878 2.718 ||| 0-1 ||| 108 668016 +a ||| taking up ||| 0.010274 0.0112121 4.49091e-06 5.76033e-07 2.718 ||| 0-0 ||| 292 668016 +a ||| taking ||| 0.00575074 0.0112121 9.58061e-05 0.0001689 2.718 ||| 0-0 ||| 11129 668016 +a ||| talented ||| 0.012987 0.0168067 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 77 668016 +a ||| talents in ||| 0.111111 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| talk about ||| 0.00124069 0.0526361 4.49091e-06 4.04656e-07 2.718 ||| 0-1 ||| 2418 668016 +a ||| talk again of ||| 1 0.0700825 1.49697e-06 1.01208e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| talk again ||| 0.125 0.0700825 1.49697e-06 1.86168e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| talk in ||| 0.0121951 0.0587624 1.49697e-06 4.82462e-06 2.718 ||| 0-1 ||| 82 668016 +a ||| talk more on ||| 1 0.0782999 1.49697e-06 6.95667e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| talk on ||| 0.047619 0.0782999 1.49697e-06 3.04623e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| talked about ||| 0.00395257 0.0526361 4.49091e-06 5.24087e-08 2.718 ||| 0-1 ||| 759 668016 +a ||| talked to ||| 0.0140845 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-1 ||| 71 668016 +a ||| talking about , ||| 0.0119048 0.0526361 1.49697e-06 6.5745e-08 2.718 ||| 0-1 ||| 84 668016 +a ||| talking about ||| 0.00201664 0.0526361 1.19758e-05 5.51299e-07 2.718 ||| 0-1 ||| 3967 668016 +a ||| talking in terms of ||| 0.05 0.0587624 1.49697e-06 3.92212e-10 2.718 ||| 0-1 ||| 20 668016 +a ||| talking in terms ||| 0.0555556 0.0587624 1.49697e-06 7.21455e-09 2.718 ||| 0-1 ||| 18 668016 +a ||| talking in ||| 0.0465116 0.0587624 2.99394e-06 6.57303e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| talking of ||| 0.0105263 0.0188479 1.49697e-06 3.23589e-06 2.718 ||| 0-1 ||| 95 668016 +a ||| talking to ; ||| 1 0.229811 1.49697e-06 1.18035e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| talking to ||| 0.0100503 0.229811 2.99394e-06 3.8323e-05 2.718 ||| 0-1 ||| 199 668016 +a ||| talks about ||| 0.00235849 0.0526361 1.49697e-06 1.32534e-07 2.718 ||| 0-1 ||| 424 668016 +a ||| talks of ||| 0.010101 0.0188479 1.49697e-06 7.77915e-07 2.718 ||| 0-1 ||| 99 668016 +a ||| talks on ||| 0.00411523 0.0782999 1.49697e-06 9.97706e-07 2.718 ||| 0-1 ||| 243 668016 +a ||| tantamount to a cancellation ||| 0.5 0.229811 1.49697e-06 3.33839e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| tantamount to a ||| 0.0454545 0.229811 1.49697e-06 1.33536e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| tantamount to allowing ||| 0.5 0.229811 1.49697e-06 1.51835e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| tantamount to bowing to ||| 0.125 0.229811 1.49697e-06 1.07077e-13 2.718 ||| 0-3 ||| 8 668016 +a ||| tantamount to ||| 0.0227273 0.229811 5.98788e-06 3.01259e-06 2.718 ||| 0-1 ||| 176 668016 +a ||| target group for such ||| 0.5 0.0683377 1.49697e-06 3.71165e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| target group for ||| 0.2 0.0683377 1.49697e-06 1.79402e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| target group of ||| 0.25 0.0188479 1.49697e-06 1.44007e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| target of ||| 0.00430108 0.0188479 2.99394e-06 1.11807e-06 2.718 ||| 0-1 ||| 465 668016 +a ||| target to ||| 0.0277778 0.229811 1.49697e-06 1.32414e-05 2.718 ||| 0-1 ||| 36 668016 +a ||| targeted at ||| 0.00392157 0.204175 1.49697e-06 9.56395e-07 2.718 ||| 0-1 ||| 255 668016 +a ||| targeted measures ; - a ||| 0.25 0.0126767 1.49697e-06 2.52522e-16 2.718 ||| 0-0 ||| 4 668016 +a ||| targeted measures ; - ||| 0.25 0.0126767 1.49697e-06 5.69695e-15 2.718 ||| 0-0 ||| 4 668016 +a ||| targeted measures ; ||| 0.25 0.0126767 1.49697e-06 1.51029e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| targeted measures ||| 0.0185185 0.0126767 1.49697e-06 4.90353e-09 2.718 ||| 0-0 ||| 54 668016 +a ||| targeted on ||| 0.0769231 0.0782999 1.49697e-06 1.06599e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| targeted ||| 0.00193299 0.0126767 4.49091e-06 2.37e-05 2.718 ||| 0-0 ||| 1552 668016 +a ||| targeting ||| 0.013624 0.177193 7.48485e-06 9.22e-05 2.718 ||| 0-0 ||| 367 668016 +a ||| targets of ||| 0.0175439 0.0188479 2.99394e-06 7.03968e-07 2.718 ||| 0-1 ||| 114 668016 +a ||| task and disseminated a courageous idea : ||| 1 0.0007376 1.49697e-06 2.25117e-27 2.718 ||| 0-6 ||| 1 668016 +a ||| task for ||| 0.00446429 0.0683377 1.49697e-06 4.64291e-06 2.718 ||| 0-1 ||| 224 668016 +a ||| task is to force any truck to ||| 1 0.229811 1.49697e-06 2.21458e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| task of promoting ||| 0.0769231 0.0188479 1.49697e-06 1.05844e-10 2.718 ||| 0-1 ||| 13 668016 +a ||| task of ||| 0.00953137 0.0188479 1.79636e-05 3.72689e-06 2.718 ||| 0-1 ||| 1259 668016 +a ||| task to bring ||| 1 0.229811 1.49697e-06 1.37402e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| task to fulfil ||| 0.25 0.229811 1.49697e-06 1.12993e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| task to report , ||| 1 0.229811 1.49697e-06 2.15758e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| task to report ||| 1 0.229811 1.49697e-06 1.80922e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| task to ||| 0.0319149 0.229811 8.98182e-06 4.4138e-05 2.718 ||| 0-1 ||| 188 668016 +a ||| tasks from ||| 0.0714286 0.0435582 1.49697e-06 1.16621e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| tax burden on ||| 0.0138889 0.0782999 1.49697e-06 1.04458e-10 2.718 ||| 0-2 ||| 72 668016 +a ||| tax havens to ||| 0.333333 0.229811 1.49697e-06 4.8783e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| tax on ||| 0.00166667 0.0782999 1.49697e-06 2.40132e-06 2.718 ||| 0-1 ||| 600 668016 +a ||| taxation - at ||| 1 0.204175 1.49697e-06 1.10411e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| taxed at ||| 0.0666667 0.204175 1.49697e-06 2.38248e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| taxes on ||| 0.00367647 0.0782999 1.49697e-06 6.29731e-07 2.718 ||| 0-1 ||| 272 668016 +a ||| taxes to ||| 0.027027 0.229811 1.49697e-06 5.81501e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| taxpayers to ||| 0.0454545 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| teach in ||| 0.166667 0.131191 1.49697e-06 4.93277e-06 2.718 ||| 0-0 0-1 ||| 6 668016 +a ||| teach ||| 0.0144928 0.20362 4.49091e-06 8.21e-05 2.718 ||| 0-0 ||| 207 668016 +a ||| team for ||| 0.0222222 0.0683377 1.49697e-06 2.5057e-07 2.718 ||| 0-1 ||| 45 668016 +a ||| tear into the ||| 1 0.107578 1.49697e-06 1.19332e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| tear into ||| 1 0.107578 1.49697e-06 1.94378e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| tearing around , ||| 1 0.0931303 1.49697e-06 1.18652e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| tearing around ||| 1 0.0931303 1.49697e-06 9.9495e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| techniques to ||| 0.0714286 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| technologies to ||| 0.0192308 0.229811 1.49697e-06 2.9075e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| tell me on ||| 0.5 0.0782999 1.49697e-06 2.24299e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| tell of a Europe ||| 0.5 0.0188479 1.49697e-06 6.5147e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| tell of a ||| 0.333333 0.0188479 1.49697e-06 1.28749e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| tell of ||| 0.111111 0.0188479 1.49697e-06 2.90461e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| tell them to ||| 0.333333 0.229811 1.49697e-06 9.22735e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| tell ||| 0.00295082 0.0029382 1.34727e-05 1.83e-05 2.718 ||| 0-0 ||| 3050 668016 +a ||| telling off ||| 0.333333 0.143208 1.49697e-06 6.49979e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| telling people in other countries ||| 1 0.143208 1.49697e-06 1.48003e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| telling people in other ||| 1 0.143208 1.49697e-06 3.89788e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| telling people in ||| 1 0.143208 1.49697e-06 3.00879e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| telling people ||| 0.0526316 0.143208 1.49697e-06 1.40568e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| telling them ||| 0.0175439 0.143208 1.49697e-06 4.28379e-07 2.718 ||| 0-0 ||| 57 668016 +a ||| telling you in ||| 0.25 0.0587624 1.49697e-06 3.56939e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| telling you ||| 0.0149254 0.143208 1.49697e-06 5.15623e-07 2.718 ||| 0-0 ||| 67 668016 +a ||| telling ||| 0.0175747 0.143208 1.49697e-05 0.0001597 2.718 ||| 0-0 ||| 569 668016 +a ||| temperature in ||| 0.0714286 0.0587624 1.49697e-06 6.60907e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| temperature some ||| 0.333333 0.0100671 1.49697e-06 2.94111e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| temperature ||| 0.00501253 0.0100671 2.99394e-06 2.7e-06 2.718 ||| 0-0 ||| 399 668016 +a ||| temptation to ||| 0.00534759 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-1 ||| 187 668016 +a ||| tempting for ||| 0.2 0.0683377 1.49697e-06 5.15879e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| ten new Member States with ||| 0.333333 0.0571592 1.49697e-06 2.74822e-17 2.718 ||| 0-4 ||| 3 668016 +a ||| ten out of ||| 0.2 0.0669777 1.49697e-06 2.497e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| ten out ||| 0.166667 0.0669777 1.49697e-06 4.59312e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| ten to ||| 0.0238095 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| tend to have ||| 0.0454545 0.229811 1.49697e-06 9.63594e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| tend to perceive competition policy as essentially ||| 1 0.229811 1.49697e-06 1.05478e-25 2.718 ||| 0-1 ||| 1 668016 +a ||| tend to perceive competition policy as ||| 1 0.229811 1.49697e-06 5.52239e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| tend to perceive competition policy ||| 1 0.229811 1.49697e-06 5.41178e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| tend to perceive competition ||| 1 0.229811 1.49697e-06 1.37459e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| tend to perceive ||| 1 0.229811 1.49697e-06 3.78676e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| tend to take ||| 0.111111 0.229811 1.49697e-06 1.29717e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| tend to ||| 0.01373 0.229811 8.98182e-06 8.05694e-06 2.718 ||| 0-1 ||| 437 668016 +a ||| tended to ||| 0.04 0.229811 4.49091e-06 2.27696e-06 2.718 ||| 0-1 ||| 75 668016 +a ||| tendency to over-regulate ||| 1 0.229811 1.49697e-06 1.5133e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| tendency to ||| 0.0046729 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-1 ||| 214 668016 +a ||| tenders in ||| 0.333333 0.0587624 1.49697e-06 1.50206e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| tending to look ||| 0.5 0.229811 1.49697e-06 2.24648e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| tending to ||| 0.0857143 0.229811 4.49091e-06 7.70664e-07 2.718 ||| 0-1 ||| 35 668016 +a ||| tends to be ||| 0.015873 0.229811 1.49697e-06 3.87257e-08 2.718 ||| 0-1 ||| 63 668016 +a ||| tends to ||| 0.00803213 0.229811 2.99394e-06 2.13684e-06 2.718 ||| 0-1 ||| 249 668016 +a ||| tens of ||| 0.00138504 0.0188479 1.49697e-06 1.9226e-07 2.718 ||| 0-1 ||| 722 668016 +a ||| term - to ||| 0.2 0.229811 1.49697e-06 1.44558e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| term retailers in ||| 0.5 0.0587624 1.49697e-06 9.20224e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| term ||| 0.00093882 0.0023121 8.98182e-06 1.64e-05 2.718 ||| 0-0 ||| 6391 668016 +a ||| terms , to ||| 0.0769231 0.229811 1.49697e-06 4.58524e-05 2.718 ||| 0-2 ||| 13 668016 +a ||| terms , we are calling for ||| 0.5 0.0683377 1.49697e-06 5.47484e-14 2.718 ||| 0-5 ||| 2 668016 +a ||| terms in ||| 0.0142857 0.0587624 1.49697e-06 6.59466e-05 2.718 ||| 0-1 ||| 70 668016 +a ||| terms of Parliament 's institutional role ||| 1 0.0188479 1.49697e-06 9.37541e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| terms of Parliament 's institutional ||| 1 0.0188479 1.49697e-06 4.22316e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| terms of Parliament 's ||| 1 0.0188479 1.49697e-06 3.54887e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| terms of Parliament ||| 1 0.0188479 1.49697e-06 1.86351e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| terms of giving ||| 0.0714286 0.136521 1.49697e-06 6.01831e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| terms of redistribution ||| 1 0.0188479 1.49697e-06 4.54515e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| terms of the ||| 0.000877963 0.0188479 2.99394e-06 1.99311e-06 2.718 ||| 0-1 ||| 2278 668016 +a ||| terms of ||| 0.00130844 0.0188479 2.24546e-05 3.24654e-05 2.718 ||| 0-1 ||| 11464 668016 +a ||| terms on tobacco products ||| 1 0.0782999 1.49697e-06 9.65671e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| terms on tobacco ||| 1 0.0782999 1.49697e-06 9.2853e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| terms on ||| 0.027027 0.0782999 1.49697e-06 4.16381e-05 2.718 ||| 0-1 ||| 37 668016 +a ||| terms to ||| 0.097561 0.229811 5.98788e-06 0.000384491 2.718 ||| 0-1 ||| 41 668016 +a ||| terms under ||| 0.0588235 0.0384416 1.49697e-06 1.55684e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| terms will also prove ||| 1 0.0051213 1.49697e-06 2.74254e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| terms will also ||| 1 0.0051213 1.49697e-06 5.18439e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| terms will ||| 0.333333 0.0051213 1.49697e-06 1.0269e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| terms with ||| 0.0241935 0.0571592 4.49091e-06 1.83245e-05 2.718 ||| 0-1 ||| 124 668016 +a ||| terms ||| 0.000391389 0.0051213 1.04788e-05 0.0001187 2.718 ||| 0-0 ||| 17885 668016 +a ||| terrified ||| 0.0487805 0.103448 2.99394e-06 5.5e-06 2.718 ||| 0-0 ||| 41 668016 +a ||| territories are tantamount to a cancellation ||| 0.5 0.229811 1.49697e-06 2.93784e-20 2.718 ||| 0-3 ||| 2 668016 +a ||| territories are tantamount to a ||| 0.5 0.229811 1.49697e-06 1.17514e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| territories are tantamount to ||| 0.5 0.229811 1.49697e-06 2.65113e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| territory of ||| 0.00131926 0.0188479 1.49697e-06 9.13976e-07 2.718 ||| 0-1 ||| 758 668016 +a ||| terror to ||| 0.0769231 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| terrorising ||| 0.0526316 0.323529 1.49697e-06 1e-05 2.718 ||| 0-0 ||| 19 668016 +a ||| terrorism at the ||| 0.0909091 0.204175 1.49697e-06 5.41179e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| terrorism at ||| 0.0454545 0.204175 1.49697e-06 8.81517e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| terrorism to ||| 0.0163934 0.229811 1.49697e-06 9.07281e-06 2.718 ||| 0-1 ||| 61 668016 +a ||| tested at all ||| 1 0.204175 1.49697e-06 1.73697e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| tested at ||| 0.25 0.204175 1.49697e-06 3.67582e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| tested twice ||| 0.2 0.143456 1.49697e-06 9.5e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| tested ||| 0.00831947 0.143456 7.48485e-06 0.000125 2.718 ||| 0-0 ||| 601 668016 +a ||| testimony of ||| 0.05 0.0188479 1.49697e-06 8.57777e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| tests are carried out ||| 0.2 0.0669777 1.49697e-06 3.04397e-13 2.718 ||| 0-3 ||| 5 668016 +a ||| text of ||| 0.00122699 0.0188479 1.49697e-06 2.55558e-06 2.718 ||| 0-1 ||| 815 668016 +a ||| text on ||| 0.00456621 0.0782999 1.49697e-06 3.27764e-06 2.718 ||| 0-1 ||| 219 668016 +a ||| text with ||| 0.0204082 0.0571592 1.49697e-06 1.44246e-06 2.718 ||| 0-1 ||| 49 668016 +a ||| than ' ||| 0.0227273 0.0242272 1.49697e-06 4.31733e-06 2.718 ||| 0-0 ||| 44 668016 +a ||| than Mr Blair ||| 0.5 0.0242272 1.49697e-06 2.62561e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| than Mr ||| 0.0232558 0.0242272 1.49697e-06 8.20504e-07 2.718 ||| 0-0 ||| 43 668016 +a ||| than a ||| 0.000881057 0.0242272 2.99394e-06 5.57131e-05 2.718 ||| 0-0 ||| 2270 668016 +a ||| than as ||| 0.0104167 0.0242272 1.49697e-06 1.28259e-05 2.718 ||| 0-0 ||| 96 668016 +a ||| than at ||| 0.00568182 0.204175 1.49697e-06 1.03978e-05 2.718 ||| 0-1 ||| 176 668016 +a ||| than carrying on with ||| 1 0.0782999 1.49697e-06 4.48353e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| than carrying on ||| 1 0.0782999 1.49697e-06 7.01154e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| than for ||| 0.0120482 0.0683377 4.49091e-06 1.12572e-05 2.718 ||| 0-1 ||| 249 668016 +a ||| than happy to grant ||| 0.25 0.229811 1.49697e-06 2.13724e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| than happy to include ||| 1 0.229811 1.49697e-06 8.92651e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| than happy to ||| 0.0645161 0.229811 2.99394e-06 6.74208e-09 2.718 ||| 0-2 ||| 31 668016 +a ||| than in ||| 0.00152091 0.0587624 2.99394e-06 1.83552e-05 2.718 ||| 0-1 ||| 1315 668016 +a ||| than increases ||| 1 0.0242272 1.49697e-06 1.35745e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| than is currently the ||| 0.0384615 0.0242272 1.49697e-06 2.52479e-10 2.718 ||| 0-0 ||| 26 668016 +a ||| than is currently ||| 0.0322581 0.0242272 1.49697e-06 4.11259e-09 2.718 ||| 0-0 ||| 31 668016 +a ||| than is the case at present ||| 0.0833333 0.204175 1.49697e-06 7.83413e-15 2.718 ||| 0-4 ||| 12 668016 +a ||| than is the case at ||| 0.1 0.204175 1.49697e-06 2.14047e-11 2.718 ||| 0-4 ||| 10 668016 +a ||| than is ||| 0.00308642 0.0242272 1.49697e-06 3.93926e-05 2.718 ||| 0-0 ||| 324 668016 +a ||| than it did to ||| 1 0.229811 1.49697e-06 8.64391e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| than it does now to ||| 1 0.127019 1.49697e-06 1.13127e-11 2.718 ||| 0-0 0-4 ||| 1 668016 +a ||| than it does ||| 0.0217391 0.0242272 1.49697e-06 1.56775e-08 2.718 ||| 0-0 ||| 46 668016 +a ||| than it has had to ||| 0.25 0.229811 1.49697e-06 9.83249e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| than it is for ||| 0.0714286 0.0683377 1.49697e-06 6.27415e-09 2.718 ||| 0-3 ||| 14 668016 +a ||| than it is to ||| 0.1 0.229811 1.49697e-06 5.96455e-08 2.718 ||| 0-3 ||| 10 668016 +a ||| than it ||| 0.00131406 0.0242272 1.49697e-06 2.23517e-05 2.718 ||| 0-0 ||| 761 668016 +a ||| than just ||| 0.00145349 0.0242272 1.49697e-06 1.58583e-06 2.718 ||| 0-0 ||| 688 668016 +a ||| than not ||| 0.00970874 0.0242272 1.49697e-06 4.29118e-06 2.718 ||| 0-0 ||| 103 668016 +a ||| than offering ||| 0.0769231 0.103522 1.49697e-06 5.4104e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| than previously to ||| 0.5 0.229811 1.49697e-06 3.65999e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| than some ||| 0.0106383 0.0242272 1.49697e-06 1.36914e-06 2.718 ||| 0-0 ||| 94 668016 +a ||| than suffering ||| 0.166667 0.0242272 1.49697e-06 5.56807e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| than that . ||| 0.00793651 0.0242272 1.49697e-06 6.40424e-08 2.718 ||| 0-0 ||| 126 668016 +a ||| than that in ||| 0.0454545 0.0587624 1.49697e-06 3.08764e-07 2.718 ||| 0-2 ||| 22 668016 +a ||| than that of ||| 0.00657895 0.0188479 1.49697e-06 1.52004e-07 2.718 ||| 0-2 ||| 152 668016 +a ||| than that ||| 0.00247831 0.0242272 2.99394e-06 2.11431e-05 2.718 ||| 0-0 ||| 807 668016 +a ||| than the ||| 0.000215889 0.0004654 1.49697e-06 4.68179e-07 2.718 ||| 0-1 ||| 4632 668016 +a ||| than they are towards ||| 1 0.155507 1.49697e-06 5.10257e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| than those ||| 0.00124844 0.018252 1.49697e-06 3.06997e-07 2.718 ||| 0-1 ||| 801 668016 +a ||| than to fan the ||| 1 0.229811 1.49697e-06 9.19796e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| than to fan ||| 1 0.229811 1.49697e-06 1.49824e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| than to ||| 0.0118734 0.229811 1.34727e-05 0.000107017 2.718 ||| 0-1 ||| 758 668016 +a ||| than tot up ||| 1 0.0195077 1.49697e-06 1.50013e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| than usual is displayed in asking ||| 1 0.0587624 1.49697e-06 7.56686e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| than usual is displayed in ||| 1 0.0587624 1.49697e-06 1.75159e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| than was ||| 0.00653595 0.0242272 1.49697e-06 3.93787e-06 2.718 ||| 0-0 ||| 153 668016 +a ||| than we are at ||| 0.166667 0.204175 1.49697e-06 1.79097e-09 2.718 ||| 0-3 ||| 6 668016 +a ||| than we can chew ||| 0.333333 0.0242272 1.49697e-06 5.94152e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| than we can ||| 0.0178571 0.0242272 1.49697e-06 4.24394e-08 2.718 ||| 0-0 ||| 56 668016 +a ||| than we ||| 0.00151745 0.0242272 1.49697e-06 1.42687e-05 2.718 ||| 0-0 ||| 659 668016 +a ||| than what ||| 0.00387597 0.0242272 1.49697e-06 1.76356e-06 2.718 ||| 0-0 ||| 258 668016 +a ||| than will be ||| 0.5 0.0242272 1.49697e-06 1.97063e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| than will ||| 0.0714286 0.0242272 1.49697e-06 1.08737e-05 2.718 ||| 0-0 ||| 14 668016 +a ||| than ||| 0.00438158 0.0242272 0.000288915 0.0012569 2.718 ||| 0-0 ||| 44048 668016 +a ||| thank for ||| 0.00952381 0.0683377 1.49697e-06 3.89857e-06 2.718 ||| 0-1 ||| 105 668016 +a ||| thank heavens – to ||| 1 0.229811 1.49697e-06 5.82613e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| thank my ||| 0.00505051 0.0126162 1.49697e-06 3.75056e-07 2.718 ||| 0-0 ||| 198 668016 +a ||| thank them for ||| 0.0142857 0.0683377 1.49697e-06 1.04575e-08 2.718 ||| 0-2 ||| 70 668016 +a ||| thank you for your comment ||| 0.0555556 0.0683377 1.49697e-06 1.47204e-16 2.718 ||| 0-2 ||| 18 668016 +a ||| thank you for your ||| 0.000758725 0.0683377 1.49697e-06 3.22109e-12 2.718 ||| 0-2 ||| 1318 668016 +a ||| thank you for ||| 0.000340368 0.0683377 1.49697e-06 1.25873e-08 2.718 ||| 0-2 ||| 2938 668016 +a ||| thank you or ||| 1 0.00672605 1.49697e-06 1.46119e-10 2.718 ||| 0-0 0-2 ||| 1 668016 +a ||| thank you to the ||| 0.0172414 0.229811 1.49697e-06 7.34625e-09 2.718 ||| 0-2 ||| 58 668016 +a ||| thank you to ||| 0.0104167 0.229811 2.99394e-06 1.19662e-07 2.718 ||| 0-2 ||| 192 668016 +a ||| thank ||| 0.00274725 0.0126162 5.98788e-05 0.0005832 2.718 ||| 0-0 ||| 14560 668016 +a ||| thanked for ||| 0.0555556 0.0683377 1.49697e-06 5.15879e-08 2.718 ||| 0-1 ||| 18 668016 +a ||| thanked ||| 0.00892857 0.119777 1.49697e-06 3.92e-05 2.718 ||| 0-0 ||| 112 668016 +a ||| thanking ||| 0.00648415 0.180277 1.34727e-05 0.0007959 2.718 ||| 0-0 ||| 1388 668016 +a ||| thanks also going to ||| 1 0.229811 1.49697e-06 1.22594e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| thanks also to ||| 0.025 0.229811 1.49697e-06 1.43251e-07 2.718 ||| 0-2 ||| 40 668016 +a ||| thanks are due to ||| 0.0487805 0.229811 2.99394e-06 1.18995e-10 2.718 ||| 0-3 ||| 41 668016 +a ||| thanks are due too to ||| 1 0.229811 1.49697e-06 1.61952e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| thanks for ||| 0.00206612 0.0683377 1.49697e-06 2.98473e-06 2.718 ||| 0-1 ||| 484 668016 +a ||| thanks go to ||| 0.0357143 0.229811 4.49091e-06 1.65934e-08 2.718 ||| 0-2 ||| 84 668016 +a ||| thanks to the improved infrastructure ||| 1 0.229811 1.49697e-06 2.84706e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| thanks to the improved ||| 1 0.229811 1.49697e-06 3.95424e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| thanks to the ||| 0.00099453 0.229811 2.99394e-06 1.74196e-06 2.718 ||| 0-1 ||| 2011 668016 +a ||| thanks to their cooperation and with the ||| 1 0.0571592 1.49697e-06 9.86442e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| thanks to their cooperation and with ||| 1 0.0571592 1.49697e-06 1.6068e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| thanks to ||| 0.0113953 0.229811 6.73637e-05 2.83744e-05 2.718 ||| 0-1 ||| 3949 668016 +a ||| thanks ||| 0.000154607 0.0001166 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 6468 668016 +a ||| that 's for ||| 1 0.0683377 1.49697e-06 1.18044e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| that , I agree with you , ||| 1 0.0571592 1.49697e-06 1.45124e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| that , I agree with you ||| 0.333333 0.0571592 1.49697e-06 1.21693e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| that , I agree with ||| 0.333333 0.0571592 1.49697e-06 3.76909e-11 2.718 ||| 0-4 ||| 3 668016 +a ||| that , as it were , ||| 0.333333 0.0243476 1.49697e-06 6.68558e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| that , as it were ||| 0.333333 0.0243476 1.49697e-06 5.60614e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| that , as it ||| 0.05 0.0243476 1.49697e-06 3.12947e-07 2.718 ||| 0-2 ||| 20 668016 +a ||| that , as ||| 0.000490196 0.0243476 1.49697e-06 1.75979e-05 2.718 ||| 0-2 ||| 2040 668016 +a ||| that , by ||| 0.00253807 0.0337966 1.49697e-06 1.65048e-05 2.718 ||| 0-2 ||| 394 668016 +a ||| that , for ||| 0.00105152 0.0683377 1.49697e-06 7.39201e-05 2.718 ||| 0-2 ||| 951 668016 +a ||| that , if we are going to ||| 0.125 0.229811 1.49697e-06 8.6557e-14 2.718 ||| 0-6 ||| 8 668016 +a ||| that , in my view , ||| 0.0140845 0.0587624 1.49697e-06 8.34981e-12 2.718 ||| 0-2 ||| 71 668016 +a ||| that , in my view ||| 0.0119048 0.0587624 1.49697e-06 7.00166e-11 2.718 ||| 0-2 ||| 84 668016 +a ||| that , in my ||| 0.00462963 0.0587624 1.49697e-06 7.75121e-08 2.718 ||| 0-2 ||| 216 668016 +a ||| that , in ||| 0.0010442 0.0587624 8.98182e-06 0.000120529 2.718 ||| 0-2 ||| 5746 668016 +a ||| that , then , ||| 0.047619 0.0252938 1.49697e-06 2.03945e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| that , then ||| 0.0149254 0.0252938 1.49697e-06 1.71016e-06 2.718 ||| 0-2 ||| 67 668016 +a ||| that , to all outward appearances ||| 1 0.229811 1.49697e-06 8.03598e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| that , to all outward ||| 1 0.229811 1.49697e-06 3.65272e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| that , to all ||| 0.333333 0.229811 1.49697e-06 3.32065e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| that , to ||| 0.00355872 0.229811 1.49697e-06 0.000702724 2.718 ||| 0-2 ||| 281 668016 +a ||| that , when ||| 0.000974659 0.0055468 1.49697e-06 6.22479e-07 2.718 ||| 0-2 ||| 1026 668016 +a ||| that , will be in ||| 1 0.0587624 1.49697e-06 1.88971e-08 2.718 ||| 0-4 ||| 1 668016 +a ||| that , ||| 9.25755e-05 0.0008521 4.49091e-06 8.14152e-05 2.718 ||| 0-0 ||| 32406 668016 +a ||| that I agree with ||| 0.00512821 0.0571592 1.49697e-06 3.16054e-10 2.718 ||| 0-3 ||| 195 668016 +a ||| that I can ||| 0.00320513 0.0013612 1.49697e-06 3.6944e-08 2.718 ||| 0-1 ||| 312 668016 +a ||| that I caught up with ||| 1 0.0571592 1.49697e-06 1.87667e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| that I have at ||| 0.5 0.204175 1.49697e-06 4.84347e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| that I shall ||| 0.0149254 0.131911 1.49697e-06 2.87367e-07 2.718 ||| 0-2 ||| 67 668016 +a ||| that I voted in ||| 0.0144928 0.0587624 1.49697e-06 2.88108e-10 2.718 ||| 0-3 ||| 69 668016 +a ||| that I will ||| 0.00606061 0.0561595 1.49697e-06 1.67579e-06 2.718 ||| 0-2 ||| 165 668016 +a ||| that I ||| 0.000463679 0.0013612 4.49091e-06 1.24211e-05 2.718 ||| 0-1 ||| 6470 668016 +a ||| that a meeting of ||| 0.25 0.0188479 1.49697e-06 2.77006e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| that addresses ||| 0.02 0.0621866 1.49697e-06 9.52103e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| that affect ||| 0.00438596 0.165756 1.49697e-06 1.07867e-06 2.718 ||| 0-0 0-1 ||| 228 668016 +a ||| that after ||| 0.00149477 0.0341027 1.49697e-06 1.411e-05 2.718 ||| 0-1 ||| 669 668016 +a ||| that aim to ||| 0.0106383 0.229811 1.49697e-06 8.10237e-07 2.718 ||| 0-2 ||| 94 668016 +a ||| that also primarily affects women ||| 0.333333 0.380413 1.49697e-06 2.22775e-16 2.718 ||| 0-3 ||| 3 668016 +a ||| that also primarily affects ||| 0.333333 0.380413 1.49697e-06 1.87521e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| that amounts to ||| 0.025641 0.229811 1.49697e-06 3.56504e-07 2.718 ||| 0-2 ||| 39 668016 +a ||| that an end is put to ||| 0.5 0.229811 1.49697e-06 3.93798e-13 2.718 ||| 0-5 ||| 2 668016 +a ||| that an objective study is to determine ||| 1 0.229811 1.49697e-06 4.47328e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| that an objective study is to ||| 1 0.229811 1.49697e-06 1.85613e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| that appeal is ||| 1 0.0008521 1.49697e-06 6.46176e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| that appeal ||| 0.1 0.0008521 1.49697e-06 2.06175e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| that applies to ||| 0.00684932 0.229811 1.49697e-06 4.93803e-07 2.718 ||| 0-2 ||| 146 668016 +a ||| that applies ||| 0.0031746 0.0008521 1.49697e-06 5.72103e-08 2.718 ||| 0-0 ||| 315 668016 +a ||| that apply to ||| 0.0181818 0.229811 2.99394e-06 8.4795e-07 2.718 ||| 0-2 ||| 110 668016 +a ||| that are aimed at ||| 0.0384615 0.204175 1.49697e-06 6.03734e-10 2.718 ||| 0-3 ||| 26 668016 +a ||| that are associated ||| 0.0666667 0.0025594 1.49697e-06 1.63347e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| that are at issue , ||| 0.333333 0.204175 1.49697e-06 7.84003e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| that are at issue ||| 0.1 0.204175 1.49697e-06 6.57419e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| that are at stake ||| 0.047619 0.204175 1.49697e-06 2.62342e-10 2.718 ||| 0-2 ||| 21 668016 +a ||| that are at ||| 0.0254237 0.204175 4.49091e-06 8.68682e-06 2.718 ||| 0-2 ||| 118 668016 +a ||| that are having to ||| 0.5 0.229811 1.49697e-06 3.4234e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| that are in the ||| 0.0222222 0.0587624 1.49697e-06 9.41431e-07 2.718 ||| 0-2 ||| 45 668016 +a ||| that are in ||| 0.00478469 0.0587624 1.49697e-06 1.53348e-05 2.718 ||| 0-2 ||| 209 668016 +a ||| that are resistant to ||| 0.25 0.229811 1.49697e-06 6.2585e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| that are to be sent , ||| 1 0.229811 1.49697e-06 1.16131e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| that are to be sent ||| 1 0.229811 1.49697e-06 9.73811e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| that are to be ||| 0.010989 0.229811 1.49697e-06 1.62032e-06 2.718 ||| 0-2 ||| 91 668016 +a ||| that are to ||| 0.0291971 0.229811 5.98788e-06 8.94072e-05 2.718 ||| 0-2 ||| 137 668016 +a ||| that are up to ||| 0.5 0.229811 1.49697e-06 3.04923e-07 2.718 ||| 0-3 ||| 2 668016 +a ||| that are waiting in the ||| 1 0.0587624 1.49697e-06 2.50421e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| that are waiting in ||| 1 0.0587624 1.49697e-06 4.07906e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| that are ||| 0.000914316 0.0008521 1.04788e-05 1.03584e-05 2.718 ||| 0-0 ||| 7656 668016 +a ||| that as a ||| 0.0114943 0.0243476 4.49091e-06 6.54097e-06 2.718 ||| 0-1 ||| 261 668016 +a ||| that as ||| 0.00308166 0.0243476 5.98788e-06 0.000147566 2.718 ||| 0-1 ||| 1298 668016 +a ||| that at ||| 0.00532623 0.204175 1.19758e-05 0.00057253 2.718 ||| 0-1 ||| 1502 668016 +a ||| that being ||| 0.00420168 0.0010112 2.99394e-06 9.52103e-07 2.718 ||| 0-1 ||| 476 668016 +a ||| that bind ||| 0.0769231 0.277533 1.49697e-06 9.67242e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| that boil down to ||| 0.5 0.229811 1.49697e-06 4.52501e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| that both ||| 0.00222883 0.0205477 4.49091e-06 1.10249e-05 2.718 ||| 0-1 ||| 1346 668016 +a ||| that breaks out on this earth . ||| 1 0.0782999 1.49697e-06 3.71998e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| that breaks out on this earth ||| 1 0.0782999 1.49697e-06 1.22812e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| that breaks out on this ||| 1 0.0782999 1.49697e-06 8.52862e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| that breaks out on ||| 1 0.0782999 1.49697e-06 1.31993e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| that by ||| 0.00130378 0.0337966 1.49697e-06 0.0001384 2.718 ||| 0-1 ||| 767 668016 +a ||| that can be ||| 0.00109529 0.0008521 1.49697e-06 3.67995e-08 2.718 ||| 0-0 ||| 913 668016 +a ||| that can ||| 0.000452284 0.0008521 1.49697e-06 2.03055e-06 2.718 ||| 0-0 ||| 2211 668016 +a ||| that case , to ||| 0.5 0.229811 1.49697e-06 7.51845e-07 2.718 ||| 0-3 ||| 2 668016 +a ||| that caution ||| 0.2 0.0022198 1.49697e-06 3.02789e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| that concerned ||| 0.0833333 0.044342 1.49697e-06 1.34354e-05 2.718 ||| 0-1 ||| 12 668016 +a ||| that concerns me is ||| 0.0769231 0.127284 1.49697e-06 7.48662e-10 2.718 ||| 0-1 ||| 13 668016 +a ||| that concerns me ||| 0.03125 0.127284 1.49697e-06 2.38876e-08 2.718 ||| 0-1 ||| 32 668016 +a ||| that concerns ||| 0.00628931 0.127284 1.49697e-06 3.96737e-05 2.718 ||| 0-1 ||| 159 668016 +a ||| that country to ||| 0.0144928 0.229811 1.49697e-06 2.12076e-06 2.718 ||| 0-2 ||| 69 668016 +a ||| that decision to ||| 0.111111 0.229811 1.49697e-06 9.26911e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| that duty falls to ||| 1 0.229811 1.49697e-06 1.37407e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| that end in ||| 0.142857 0.0587624 1.49697e-06 4.39749e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| that end to ||| 1 0.229811 1.49697e-06 2.56388e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| that eventually ||| 0.0238095 0.0344828 1.49697e-06 1.15228e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| that everyone ||| 0.00108108 0.0278324 1.49697e-06 5.65038e-06 2.718 ||| 0-1 ||| 925 668016 +a ||| that exists at the moment to ||| 1 0.229811 1.49697e-06 1.52741e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| that extend to ||| 1 0.229811 1.49697e-06 2.54562e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| that fact to ||| 0.5 0.229811 1.49697e-06 1.72613e-05 2.718 ||| 0-2 ||| 2 668016 +a ||| that for ||| 0.00738007 0.0683377 1.19758e-05 0.000619851 2.718 ||| 0-1 ||| 1084 668016 +a ||| that from ||| 0.00647249 0.0435582 2.99394e-06 0.000121095 2.718 ||| 0-1 ||| 309 668016 +a ||| that given to ||| 0.0833333 0.133456 1.49697e-06 6.22851e-06 2.718 ||| 0-1 0-2 ||| 12 668016 +a ||| that had been applied to ||| 0.25 0.229811 1.49697e-06 2.13887e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| that had brought ||| 1 0.0182841 1.49697e-06 2.00411e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| that has already been let out of ||| 1 0.0008521 1.49697e-06 4.62152e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| that has already been let out ||| 1 0.0008521 1.49697e-06 8.50106e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| that has already been let ||| 1 0.0008521 1.49697e-06 2.21937e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| that has already been ||| 0.00465116 0.0008521 1.49697e-06 5.4343e-12 2.718 ||| 0-0 ||| 215 668016 +a ||| that has already ||| 0.00520833 0.0008521 1.49697e-06 1.62743e-09 2.718 ||| 0-0 ||| 192 668016 +a ||| that has applied for ||| 0.5 0.0683377 1.49697e-06 3.45551e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| that has as ||| 0.2 0.0243476 1.49697e-06 7.59595e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| that has come to ||| 0.0666667 0.229811 1.49697e-06 2.57612e-08 2.718 ||| 0-3 ||| 15 668016 +a ||| that has followed as a ||| 1 0.0243476 1.49697e-06 2.41075e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| that has followed as ||| 1 0.0243476 1.49697e-06 5.4387e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| that has led to this , as ||| 0.333333 0.0243476 1.49697e-06 4.77446e-15 2.718 ||| 0-6 ||| 3 668016 +a ||| that has received aid to ||| 1 0.229811 1.49697e-06 3.54942e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| that has to be made of ||| 1 0.0188479 1.49697e-06 8.63988e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| that has to be said after ||| 1 0.229811 1.49697e-06 6.12719e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| that has to be said ||| 0.0833333 0.229811 1.49697e-06 2.26096e-10 2.718 ||| 0-2 ||| 12 668016 +a ||| that has to be ||| 0.00985222 0.229811 2.99394e-06 5.4971e-07 2.718 ||| 0-2 ||| 203 668016 +a ||| that has to ||| 0.00879765 0.229811 4.49091e-06 3.03323e-05 2.718 ||| 0-2 ||| 341 668016 +a ||| that has ||| 0.000450552 0.0008521 2.99394e-06 3.5142e-06 2.718 ||| 0-0 ||| 4439 668016 +a ||| that have been achieved to ||| 1 0.229811 1.49697e-06 3.93706e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| that have been conveyed to ||| 1 0.229811 1.49697e-06 1.10605e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| that have been spoken to ||| 1 0.229811 1.49697e-06 5.24784e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| that have occurred in ||| 0.0217391 0.0587624 1.49697e-06 5.13722e-10 2.718 ||| 0-3 ||| 46 668016 +a ||| that have proved to be ||| 0.166667 0.229811 1.49697e-06 5.28763e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| that have proved to ||| 0.166667 0.229811 1.49697e-06 2.91765e-09 2.718 ||| 0-3 ||| 6 668016 +a ||| that have to be hurried ||| 1 0.229811 1.49697e-06 8.94044e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| that have to be taken on ||| 1 0.0782999 1.49697e-06 1.12026e-11 2.718 ||| 0-5 ||| 1 668016 +a ||| that have to be ||| 0.00813008 0.229811 1.49697e-06 1.27721e-06 2.718 ||| 0-2 ||| 123 668016 +a ||| that have to ||| 0.00956938 0.229811 2.99394e-06 7.04747e-05 2.718 ||| 0-2 ||| 209 668016 +a ||| that he laid much emphasis on ||| 1 0.0782999 1.49697e-06 3.11337e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| that he was going to make at ||| 1 0.204175 1.49697e-06 2.06868e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| that he will ||| 0.01 0.0561595 1.49697e-06 2.06752e-07 2.718 ||| 0-2 ||| 100 668016 +a ||| that help is at hand ||| 1 0.204175 1.49697e-06 1.35711e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| that help is at ||| 1 0.204175 1.49697e-06 3.42187e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| that hope , ||| 0.333333 0.0008521 1.49697e-06 1.42721e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| that hope to ||| 0.333333 0.229811 1.49697e-06 1.03298e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| that hope ||| 0.0217391 0.0008521 1.49697e-06 1.19677e-07 2.718 ||| 0-0 ||| 46 668016 +a ||| that humanitarian aid for Gaza must be ||| 1 0.0683377 1.49697e-06 6.8389e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| that humanitarian aid for Gaza must ||| 1 0.0683377 1.49697e-06 3.77362e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| that humanitarian aid for Gaza ||| 1 0.0683377 1.49697e-06 2.44153e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| that humanitarian aid for ||| 1 0.0683377 1.49697e-06 8.41906e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| that if we are going to ||| 0.2 0.229811 1.49697e-06 7.25817e-13 2.718 ||| 0-5 ||| 5 668016 +a ||| that if ||| 0.000804074 0.0014881 4.49091e-06 2.18008e-06 2.718 ||| 0-1 ||| 3731 668016 +a ||| that in the end ||| 0.0135135 0.0587624 1.49697e-06 2.6997e-08 2.718 ||| 0-1 ||| 74 668016 +a ||| that in the ||| 0.000780945 0.0587624 2.99394e-06 6.20477e-05 2.718 ||| 0-1 ||| 2561 668016 +a ||| that in which we treat ||| 1 0.0587624 1.49697e-06 1.61789e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| that in which we ||| 0.5 0.0587624 1.49697e-06 9.74635e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| that in which ||| 0.0416667 0.0587624 1.49697e-06 8.58535e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| that in ||| 0.00186974 0.0587624 2.69455e-05 0.00101068 2.718 ||| 0-1 ||| 9627 668016 +a ||| that includes ||| 0.00386847 0.0310078 2.99394e-06 2.027e-06 2.718 ||| 0-1 ||| 517 668016 +a ||| that into account even ||| 1 0.107578 1.49697e-06 1.78757e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| that into account ||| 0.027027 0.107578 1.49697e-06 2.93766e-08 2.718 ||| 0-1 ||| 37 668016 +a ||| that into ||| 0.0138889 0.107578 1.49697e-06 0.000102179 2.718 ||| 0-1 ||| 72 668016 +a ||| that involves ||| 0.0042735 0.0345134 1.49697e-06 1.35243e-07 2.718 ||| 0-0 0-1 ||| 234 668016 +a ||| that is , in ||| 0.00862069 0.0587624 1.49697e-06 3.7775e-06 2.718 ||| 0-3 ||| 116 668016 +a ||| that is , into ||| 0.2 0.107578 1.49697e-06 3.81903e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| that is , on ||| 0.0357143 0.0782999 1.49697e-06 2.38509e-06 2.718 ||| 0-3 ||| 28 668016 +a ||| that is , to ||| 0.00900901 0.229811 1.49697e-06 2.20242e-05 2.718 ||| 0-3 ||| 111 668016 +a ||| that is , ||| 0.000795862 0.0008521 2.99394e-06 2.55164e-06 2.718 ||| 0-0 ||| 2513 668016 +a ||| that is a question for the future ||| 1 0.0683377 1.49697e-06 1.16161e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| that is a question for the ||| 0.5 0.0683377 1.49697e-06 4.37352e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| that is a question for ||| 0.25 0.0683377 1.49697e-06 7.12395e-10 2.718 ||| 0-4 ||| 4 668016 +a ||| that is accessible to ||| 0.0666667 0.229811 1.49697e-06 2.40086e-09 2.718 ||| 0-3 ||| 15 668016 +a ||| that is at ||| 0.0224719 0.204175 5.98788e-06 1.79437e-05 2.718 ||| 0-2 ||| 178 668016 +a ||| that is by no means an easy ||| 1 0.0337966 1.49697e-06 3.59476e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| that is by no means an ||| 0.333333 0.0337966 1.49697e-06 9.50995e-15 2.718 ||| 0-2 ||| 3 668016 +a ||| that is by no means ||| 0.0714286 0.0337966 1.49697e-06 2.13962e-12 2.718 ||| 0-2 ||| 14 668016 +a ||| that is by no ||| 0.1 0.0337966 1.49697e-06 3.37639e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| that is by ||| 0.027027 0.0337966 1.49697e-06 4.3376e-06 2.718 ||| 0-2 ||| 37 668016 +a ||| that is for ||| 0.0117647 0.0683377 1.49697e-06 1.94268e-05 2.718 ||| 0-2 ||| 85 668016 +a ||| that is going to ||| 0.00757576 0.229811 1.49697e-06 1.58051e-07 2.718 ||| 0-3 ||| 132 668016 +a ||| that is in ||| 0.00578035 0.0587624 2.99394e-06 3.16759e-05 2.718 ||| 0-2 ||| 346 668016 +a ||| that is not to ||| 0.0102041 0.229811 1.49697e-06 6.30521e-07 2.718 ||| 0-3 ||| 98 668016 +a ||| that is the task of ||| 0.142857 0.0188479 1.49697e-06 1.20625e-10 2.718 ||| 0-4 ||| 7 668016 +a ||| that is to say , ||| 0.00368098 0.229811 4.49091e-06 2.10507e-08 2.718 ||| 0-2 ||| 815 668016 +a ||| that is to say ||| 0.00179856 0.229811 5.98788e-06 1.76519e-07 2.718 ||| 0-2 ||| 2224 668016 +a ||| that is to the ||| 0.0769231 0.229811 1.49697e-06 1.13379e-05 2.718 ||| 0-2 ||| 13 668016 +a ||| that is to ||| 0.0437757 0.229811 4.7903e-05 0.000184682 2.718 ||| 0-2 ||| 731 668016 +a ||| that is up to ||| 0.0434783 0.229811 1.49697e-06 6.29857e-07 2.718 ||| 0-3 ||| 23 668016 +a ||| that is what ||| 0.000348797 0.0002483 1.49697e-06 1.92431e-08 2.718 ||| 0-2 ||| 2867 668016 +a ||| that is where ||| 0.00455581 0.0053255 2.99394e-06 1.29429e-07 2.718 ||| 0-2 ||| 439 668016 +a ||| that is ||| 0.000133985 0.0008521 8.98182e-06 2.13966e-05 2.718 ||| 0-0 ||| 44781 668016 +a ||| that it can ||| 0.00104384 0.0008168 1.49697e-06 2.56664e-08 2.718 ||| 0-2 ||| 958 668016 +a ||| that it is on ||| 0.0243902 0.0782999 1.49697e-06 3.55663e-07 2.718 ||| 0-3 ||| 41 668016 +a ||| that it is with ||| 0.166667 0.0571592 1.49697e-06 1.56524e-07 2.718 ||| 0-3 ||| 6 668016 +a ||| that it now ||| 0.0333333 0.00208 1.49697e-06 3.98756e-08 2.718 ||| 0-2 ||| 30 668016 +a ||| that it reflects ||| 0.047619 0.0017857 1.49697e-06 8.07683e-10 2.718 ||| 0-2 ||| 21 668016 +a ||| that it should be implemented in its ||| 1 0.0587624 1.49697e-06 1.8054e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| that it should be implemented in ||| 1 0.0587624 1.49697e-06 1.26721e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| that it should play ||| 0.25 0.0008521 1.49697e-06 1.38791e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| that it should ||| 0.00126743 0.0008521 1.49697e-06 5.3795e-08 2.718 ||| 0-0 ||| 789 668016 +a ||| that it treats ||| 0.25 0.306122 1.49697e-06 2.45595e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| that it was another honourable Member of ||| 1 0.0188479 1.49697e-06 1.7978e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| that it went much further ||| 1 0.0003879 1.49697e-06 1.91258e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| that it will be ||| 0.00121359 0.0561595 1.49697e-06 7.63522e-08 2.718 ||| 0-2 ||| 824 668016 +a ||| that it will not take as long ||| 1 0.0243476 1.49697e-06 4.22159e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| that it will not take as ||| 1 0.0243476 1.49697e-06 1.24788e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| that it will ||| 0.00716479 0.0561595 1.04788e-05 4.21302e-06 2.718 ||| 0-2 ||| 977 668016 +a ||| that it would be wise to consider ||| 0.5 0.229811 1.49697e-06 1.15258e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| that it would be wise to ||| 0.142857 0.229811 1.49697e-06 7.2444e-14 2.718 ||| 0-5 ||| 7 668016 +a ||| that it would happen on ||| 1 0.0782999 1.49697e-06 7.23928e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| that it would ||| 0.00225734 0.00074265 1.49697e-06 1.15214e-09 2.718 ||| 0-0 0-2 ||| 443 668016 +a ||| that it ||| 0.000373916 0.0008521 7.48485e-06 1.21406e-05 2.718 ||| 0-0 ||| 13372 668016 +a ||| that join ||| 0.1 0.207917 1.49697e-06 2.2985e-05 2.718 ||| 0-1 ||| 10 668016 +a ||| that leads to ||| 0.00606061 0.229811 1.49697e-06 1.90921e-07 2.718 ||| 0-2 ||| 165 668016 +a ||| that legislation can go ||| 1 0.0008168 1.49697e-06 6.77762e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| that legislation can ||| 0.5 0.0008168 1.49697e-06 1.15896e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| that matter - to ||| 0.5 0.229811 1.49697e-06 2.30611e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| that may be , then a closer ||| 1 0.0252938 1.49697e-06 2.19229e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| that may be , then a ||| 1 0.0252938 1.49697e-06 1.02925e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| that may be , then ||| 0.5 0.0252938 1.49697e-06 2.322e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| that means encouraging ||| 0.25 0.0134702 1.49697e-06 4.08272e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| that might indicate ||| 1 0.00155 1.49697e-06 6.4023e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| that might ||| 0.00158983 0.00155 1.49697e-06 2.91014e-07 2.718 ||| 0-1 ||| 629 668016 +a ||| that much in the ||| 1 0.0587624 1.49697e-06 6.22773e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| that much in ||| 1 0.0587624 1.49697e-06 1.01442e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| that must be taken with ||| 1 0.0571592 1.49697e-06 7.17031e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| that must be ||| 0.00117925 0.0008521 1.49697e-06 1.91229e-08 2.718 ||| 0-0 ||| 848 668016 +a ||| that must ||| 0.0035057 0.0008521 5.98788e-06 1.05518e-06 2.718 ||| 0-0 ||| 1141 668016 +a ||| that need to be ||| 0.00790514 0.229811 2.99394e-06 9.79172e-08 2.718 ||| 0-2 ||| 253 668016 +a ||| that need to ||| 0.0163934 0.229811 5.98788e-06 5.40296e-06 2.718 ||| 0-2 ||| 244 668016 +a ||| that needs to be done ||| 0.0238095 0.229811 1.49697e-06 9.65661e-12 2.718 ||| 0-2 ||| 42 668016 +a ||| that needs to be ||| 0.00977199 0.229811 4.49091e-06 2.11768e-08 2.718 ||| 0-2 ||| 307 668016 +a ||| that needs to ||| 0.00993378 0.229811 4.49091e-06 1.16851e-06 2.718 ||| 0-2 ||| 302 668016 +a ||| that no ||| 0.000658328 0.0008521 1.49697e-06 5.31414e-07 2.718 ||| 0-0 ||| 1519 668016 +a ||| that now on ||| 1 0.0782999 1.49697e-06 1.3145e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| that of ||| 0.0116117 0.0188479 7.48485e-05 0.000497558 2.718 ||| 0-1 ||| 4306 668016 +a ||| that old ||| 0.0322581 0.0008521 1.49697e-06 5.25679e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| that on to ||| 0.285714 0.154056 2.99394e-06 0.000223541 2.718 ||| 0-1 0-2 ||| 7 668016 +a ||| that on ||| 0.002 0.0782999 2.99394e-06 0.000638137 2.718 ||| 0-1 ||| 1000 668016 +a ||| that opinions are not always sought from ||| 0.5 0.0435582 1.49697e-06 7.69064e-22 2.718 ||| 0-6 ||| 2 668016 +a ||| that oppose ||| 0.05 0.339711 1.49697e-06 1.66282e-05 2.718 ||| 0-1 ||| 20 668016 +a ||| that out ||| 0.00961538 0.0339149 1.49697e-06 2.79975e-06 2.718 ||| 0-0 0-1 ||| 104 668016 +a ||| that paid to ||| 0.125 0.229811 1.49697e-06 7.93148e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| that provided you ||| 1 0.0016615 1.49697e-06 8.41834e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| that provided ||| 0.0172414 0.0016615 1.49697e-06 2.60735e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| that public prosecutor to ||| 1 0.229811 1.49697e-06 1.04747e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| that purpose to ||| 0.5 0.229811 1.49697e-06 1.06008e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| that region ||| 0.00204918 0.0008521 1.49697e-06 6.68363e-08 2.718 ||| 0-0 ||| 488 668016 +a ||| that relate to ||| 0.0126582 0.229811 1.49697e-06 1.46137e-07 2.718 ||| 0-2 ||| 79 668016 +a ||| that relates to ||| 0.0196078 0.229811 1.49697e-06 1.65583e-07 2.718 ||| 0-2 ||| 51 668016 +a ||| that remains to be ||| 0.0526316 0.229811 1.49697e-06 9.52581e-09 2.718 ||| 0-2 ||| 19 668016 +a ||| that remains to ||| 0.04 0.229811 1.49697e-06 5.25623e-07 2.718 ||| 0-2 ||| 25 668016 +a ||| that resulting in ||| 0.5 0.0587624 1.49697e-06 4.5784e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| that results in ||| 0.03125 0.0587624 1.49697e-06 7.82269e-08 2.718 ||| 0-2 ||| 32 668016 +a ||| that said , in ||| 0.111111 0.0587624 1.49697e-06 4.95735e-08 2.718 ||| 0-3 ||| 9 668016 +a ||| that seek to ||| 0.0136986 0.229811 1.49697e-06 4.09538e-07 2.718 ||| 0-2 ||| 73 668016 +a ||| that seemed ||| 0.0666667 0.0008521 1.49697e-06 7.85105e-09 2.718 ||| 0-0 ||| 15 668016 +a ||| that should be ||| 0.0013369 0.0008521 1.49697e-06 5.48226e-08 2.718 ||| 0-0 ||| 748 668016 +a ||| that should ||| 0.000686342 0.0008521 1.49697e-06 3.02504e-06 2.718 ||| 0-0 ||| 1457 668016 +a ||| that sort of ||| 0.00699301 0.0188479 1.49697e-06 7.95097e-08 2.718 ||| 0-2 ||| 143 668016 +a ||| that speaks in ||| 1 0.0587624 1.49697e-06 7.27692e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| that state by ||| 0.5 0.0337966 1.49697e-06 3.49598e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| that state from ||| 1 0.0435582 1.49697e-06 3.05887e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| that stem precisely from ||| 1 0.0435582 1.49697e-06 7.761e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| that struck ||| 0.0232558 0.0361248 1.49697e-06 6.76228e-07 2.718 ||| 0-1 ||| 43 668016 +a ||| that supports ||| 0.0117647 0.00190735 1.49697e-06 6.827e-09 2.718 ||| 0-0 0-1 ||| 85 668016 +a ||| that taking ||| 0.0178571 0.0112121 1.49697e-06 2.84117e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| that targets ||| 0.0625 0.0008521 1.49697e-06 1.62483e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| that tests are carried out ||| 1 0.0669777 1.49697e-06 5.12045e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| that the referendum takes place at ||| 1 0.204175 1.49697e-06 7.38127e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| that the ||| 3.48877e-05 0.0008521 7.48485e-06 4.19122e-05 2.718 ||| 0-0 ||| 143317 668016 +a ||| that there has to ||| 0.0175439 0.229811 1.49697e-06 9.29777e-08 2.718 ||| 0-3 ||| 57 668016 +a ||| that there is ||| 0.000489876 0.0005768 4.49091e-06 3.89606e-08 2.718 ||| 0-1 ||| 6124 668016 +a ||| that there should ||| 0.00386847 0.0008521 2.99394e-06 9.27267e-09 2.718 ||| 0-0 ||| 517 668016 +a ||| that there were other possibilities : that ||| 1 0.0007376 1.49697e-06 1.35078e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| that there were other possibilities : ||| 1 0.0007376 1.49697e-06 8.03006e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| that there will at ||| 1 0.204175 1.49697e-06 1.51826e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| that there will ||| 0.00380228 0.0561595 1.49697e-06 7.26201e-07 2.718 ||| 0-2 ||| 263 668016 +a ||| that there ||| 0.000973141 0.0005768 7.48485e-06 1.24312e-06 2.718 ||| 0-1 ||| 5138 668016 +a ||| that these have been notified in ||| 1 0.105991 1.49697e-06 6.26338e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| that these have been notified ||| 1 0.105991 1.49697e-06 2.9262e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| that they are in ||| 0.0147059 0.0587624 1.49697e-06 5.00528e-08 2.718 ||| 0-3 ||| 68 668016 +a ||| that they are ||| 0.000357526 0.0007051 1.49697e-06 1.90911e-08 2.718 ||| 0-1 ||| 2797 668016 +a ||| that they bow their heads in ||| 0.5 0.0587624 1.49697e-06 2.44795e-19 2.718 ||| 0-5 ||| 2 668016 +a ||| that they have someone ||| 0.5 0.0328972 1.49697e-06 5.27299e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| that they make ||| 0.0212766 0.0033044 1.49697e-06 9.87205e-09 2.718 ||| 0-2 ||| 47 668016 +a ||| that they receive their reward ||| 1 0.181122 1.49697e-06 4.14045e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| that they shall ||| 0.5 0.0663815 1.49697e-06 5.38165e-09 2.718 ||| 0-0 0-2 ||| 2 668016 +a ||| that they want to ||| 0.0126582 0.229811 1.49697e-06 8.99169e-09 2.718 ||| 0-3 ||| 79 668016 +a ||| that they will ||| 0.0025641 0.0561595 1.49697e-06 7.73275e-07 2.718 ||| 0-2 ||| 390 668016 +a ||| that they ||| 0.000515375 0.0007051 4.49091e-06 1.25826e-06 2.718 ||| 0-1 ||| 5821 668016 +a ||| that this should be so ||| 0.166667 0.0007673 1.49697e-06 7.00872e-13 2.718 ||| 0-4 ||| 6 668016 +a ||| that those ||| 0.000543478 0.018252 1.49697e-06 1.6904e-05 2.718 ||| 0-1 ||| 1840 668016 +a ||| that to a ||| 0.0833333 0.229811 1.49697e-06 0.000261196 2.718 ||| 0-1 ||| 12 668016 +a ||| that to the ||| 0.016129 0.229811 1.49697e-06 0.000361759 2.718 ||| 0-1 ||| 62 668016 +a ||| that to ||| 0.0466149 0.229811 6.28727e-05 0.00589263 2.718 ||| 0-1 ||| 901 668016 +a ||| that took place in ||| 0.00641026 0.0587624 1.49697e-06 2.24359e-10 2.718 ||| 0-3 ||| 156 668016 +a ||| that up ||| 0.0151515 0.0008521 1.49697e-06 2.32835e-06 2.718 ||| 0-0 ||| 66 668016 +a ||| that urgently needs to be put in ||| 0.5 0.229811 1.49697e-06 7.8966e-18 2.718 ||| 0-3 ||| 2 668016 +a ||| that urgently needs to be put ||| 0.5 0.229811 1.49697e-06 3.68922e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| that urgently needs to be ||| 0.5 0.229811 1.49697e-06 3.34593e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| that urgently needs to ||| 0.5 0.229811 1.49697e-06 1.84624e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| that used to be ||| 0.0454545 0.229811 1.49697e-06 4.58136e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| that used to ||| 0.075 0.229811 4.49091e-06 2.52794e-06 2.718 ||| 0-2 ||| 40 668016 +a ||| that very clear . in addition , ||| 1 0.0587624 1.49697e-06 4.16963e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| that very clear . in addition ||| 1 0.0587624 1.49697e-06 3.49641e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| that very clear . in ||| 1 0.0587624 1.49697e-06 3.54605e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| that want to ||| 0.00787402 0.229811 1.49697e-06 2.75481e-06 2.718 ||| 0-2 ||| 127 668016 +a ||| that was , at ||| 1 0.204175 1.49697e-06 2.13911e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| that was granted at ||| 1 0.204175 1.49697e-06 1.45293e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| that was to ||| 0.04 0.229811 1.49697e-06 1.84616e-05 2.718 ||| 0-2 ||| 25 668016 +a ||| that way , be given ||| 0.5 0.0371011 1.49697e-06 8.2835e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| that we are able to ||| 0.00613497 0.229811 1.49697e-06 8.47404e-10 2.718 ||| 0-4 ||| 163 668016 +a ||| that we are going to tackle ||| 0.25 0.229811 1.49697e-06 3.15308e-14 2.718 ||| 0-4 ||| 4 668016 +a ||| that we are going to ||| 0.00301205 0.229811 1.49697e-06 8.68617e-10 2.718 ||| 0-4 ||| 332 668016 +a ||| that we are in ||| 0.00595238 0.0587624 2.99394e-06 1.74085e-07 2.718 ||| 0-3 ||| 336 668016 +a ||| that we are open to ||| 0.166667 0.229811 1.49697e-06 1.63614e-10 2.718 ||| 0-4 ||| 6 668016 +a ||| that we are talking about ||| 0.00346021 0.0526361 1.49697e-06 1.59736e-12 2.718 ||| 0-4 ||| 289 668016 +a ||| that we are witnessing ||| 0.0178571 0.114514 1.49697e-06 2.27449e-10 2.718 ||| 0-3 ||| 56 668016 +a ||| that we are ||| 0.000138985 0.0009806 1.49697e-06 6.32663e-08 2.718 ||| 0-2 ||| 7195 668016 +a ||| that we ask ||| 0.0222222 0.0082577 1.49697e-06 2.80717e-08 2.718 ||| 0-2 ||| 45 668016 +a ||| that we begin by ||| 0.5 0.0337966 1.49697e-06 9.26981e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| that we can begin to take ||| 1 0.229811 1.49697e-06 1.88997e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| that we can begin to ||| 0.0666667 0.229811 1.49697e-06 1.1739e-11 2.718 ||| 0-4 ||| 15 668016 +a ||| that we can ||| 0.0010018 0.0008079 7.48485e-06 2.26947e-08 2.718 ||| 0-1 ||| 4991 668016 +a ||| that we consider to ||| 0.111111 0.229811 1.49697e-06 1.0643e-08 2.718 ||| 0-3 ||| 9 668016 +a ||| that we continue to support those countries ||| 1 0.229811 1.49697e-06 1.45511e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| that we continue to support those ||| 1 0.229811 1.49697e-06 3.83225e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| that we continue to support ||| 0.0714286 0.229811 1.49697e-06 5.29244e-12 2.718 ||| 0-3 ||| 14 668016 +a ||| that we continue to ||| 0.00806452 0.229811 1.49697e-06 1.54795e-08 2.718 ||| 0-3 ||| 124 668016 +a ||| that we do of course mention to ||| 1 0.229811 1.49697e-06 1.53212e-15 2.718 ||| 0-6 ||| 1 668016 +a ||| that we have been able to ||| 0.0108696 0.229811 1.49697e-06 2.23046e-12 2.718 ||| 0-5 ||| 92 668016 +a ||| that we have provided ||| 0.0555556 0.0016615 1.49697e-06 3.54003e-11 2.718 ||| 0-3 ||| 18 668016 +a ||| that we have seen at work ||| 0.5 0.204175 1.49697e-06 1.03577e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| that we have seen at ||| 0.5 0.204175 1.49697e-06 1.63628e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| that we have ||| 0.000103423 0.0008521 1.49697e-06 9.2691e-08 2.718 ||| 0-0 ||| 9669 668016 +a ||| that we here in ||| 0.0384615 0.0587624 1.49697e-06 2.32661e-08 2.718 ||| 0-3 ||| 26 668016 +a ||| that we in ||| 0.00282885 0.0587624 2.99394e-06 1.14736e-05 2.718 ||| 0-2 ||| 707 668016 +a ||| that we made to ||| 0.142857 0.229811 1.49697e-06 1.40132e-07 2.718 ||| 0-3 ||| 7 668016 +a ||| that we manage to ||| 0.0666667 0.229811 1.49697e-06 2.98351e-09 2.718 ||| 0-3 ||| 15 668016 +a ||| that we need to review ||| 0.0526316 0.229811 1.49697e-06 2.3185e-12 2.718 ||| 0-3 ||| 19 668016 +a ||| that we need to ||| 0.00110193 0.229811 2.99394e-06 6.1336e-08 2.718 ||| 0-3 ||| 1815 668016 +a ||| that we ought to give ||| 1 0.229811 1.49697e-06 3.39711e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| that we ought to ||| 0.0123457 0.229811 1.49697e-06 5.6058e-09 2.718 ||| 0-3 ||| 81 668016 +a ||| that we owe to ||| 0.166667 0.229811 1.49697e-06 6.48881e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| that we see to it that ||| 0.25 0.229811 1.49697e-06 1.40998e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| that we see to it ||| 0.25 0.229811 1.49697e-06 8.38196e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| that we see to ||| 0.25 0.229811 1.49697e-06 4.71342e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| that we shall also continue to ||| 1 0.229811 1.49697e-06 4.27167e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| that we shall be ||| 0.0114943 0.0008521 1.49697e-06 7.67735e-11 2.718 ||| 0-0 ||| 87 668016 +a ||| that we shall not ||| 0.0454545 0.131911 1.49697e-06 1.57457e-09 2.718 ||| 0-2 ||| 22 668016 +a ||| that we shall ||| 0.0141844 0.131911 5.98788e-06 4.61197e-07 2.718 ||| 0-2 ||| 282 668016 +a ||| that we should ||| 0.000753201 0.00083 4.49091e-06 1.37216e-09 2.718 ||| 0-0 0-1 ||| 3983 668016 +a ||| that we still take the view ||| 1 0.0008079 1.49697e-06 5.1312e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| that we still take the ||| 1 0.0008079 1.49697e-06 5.6805e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| that we still take ||| 1 0.0008079 1.49697e-06 9.25287e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| that we still ||| 0.00862069 0.0008079 1.49697e-06 5.74713e-09 2.718 ||| 0-1 ||| 116 668016 +a ||| that we want to do ||| 0.0769231 0.229811 1.49697e-06 1.07433e-10 2.718 ||| 0-3 ||| 13 668016 +a ||| that we want to ||| 0.0021097 0.229811 1.49697e-06 3.12734e-08 2.718 ||| 0-3 ||| 474 668016 +a ||| that we wanted to ||| 0.0232558 0.229811 1.49697e-06 3.65915e-09 2.718 ||| 0-3 ||| 43 668016 +a ||| that we will be able to do ||| 0.333333 0.229811 1.49697e-06 3.00813e-14 2.718 ||| 0-5 ||| 3 668016 +a ||| that we will be able to ||| 0.00334448 0.229811 1.49697e-06 8.75652e-12 2.718 ||| 0-5 ||| 299 668016 +a ||| that we will be very firm : ||| 1 0.0007376 1.49697e-06 1.78166e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| that we will have ||| 0.00207469 0.0561595 1.49697e-06 3.21656e-08 2.718 ||| 0-2 ||| 482 668016 +a ||| that we will soon have ||| 0.0333333 0.0008079 1.49697e-06 7.2711e-14 2.718 ||| 0-1 ||| 30 668016 +a ||| that we will soon ||| 0.0526316 0.0008079 1.49697e-06 6.07962e-12 2.718 ||| 0-1 ||| 19 668016 +a ||| that we will ||| 0.00671141 0.0561595 1.04788e-05 2.68948e-06 2.718 ||| 0-2 ||| 1043 668016 +a ||| that we would ||| 0.00389105 0.0008079 1.49697e-06 4.47798e-08 2.718 ||| 0-1 ||| 257 668016 +a ||| that we ||| 0.00141463 0.0008079 4.34121e-05 7.63028e-06 2.718 ||| 0-1 ||| 20500 668016 +a ||| that were found to ||| 1 0.229811 1.49697e-06 2.30967e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| that were given to ||| 1 0.229811 1.49697e-06 7.24463e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| that will be ||| 0.000777001 0.0561595 1.49697e-06 4.2935e-06 2.718 ||| 0-1 ||| 1287 668016 +a ||| that will deal with ||| 0.0625 0.0571592 1.49697e-06 1.0316e-09 2.718 ||| 0-3 ||| 16 668016 +a ||| that will enable ||| 0.004 0.0561595 1.49697e-06 2.33594e-08 2.718 ||| 0-1 ||| 250 668016 +a ||| that will have to ||| 0.029703 0.229811 4.49091e-06 6.09691e-07 2.718 ||| 0-3 ||| 101 668016 +a ||| that will lead to ||| 0.00980392 0.229811 1.49697e-06 9.81333e-09 2.718 ||| 0-3 ||| 102 668016 +a ||| that will make ||| 0.00675676 0.0561595 1.49697e-06 4.11703e-07 2.718 ||| 0-1 ||| 148 668016 +a ||| that will result ||| 0.0181818 0.0561595 1.49697e-06 1.24733e-07 2.718 ||| 0-1 ||| 55 668016 +a ||| that will touch ||| 1 0.0561595 1.49697e-06 5.21203e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| that will ||| 0.00729927 0.0561595 2.84424e-05 0.00023691 2.718 ||| 0-1 ||| 2603 668016 +a ||| that wish to contribute ||| 0.333333 0.229811 1.49697e-06 6.75521e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| that wish to ||| 0.00909091 0.229811 1.49697e-06 1.73656e-06 2.718 ||| 0-2 ||| 110 668016 +a ||| that with ||| 0.00114286 0.0571592 1.49697e-06 0.000280838 2.718 ||| 0-1 ||| 875 668016 +a ||| that within ||| 0.0041841 0.0123496 1.49697e-06 8.36706e-06 2.718 ||| 0-1 ||| 239 668016 +a ||| that would , in ||| 0.1 0.0587624 1.49697e-06 7.07347e-07 2.718 ||| 0-3 ||| 10 668016 +a ||| that would be for the ||| 1 0.0683377 1.49697e-06 4.04732e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| that would be for ||| 1 0.0683377 1.49697e-06 6.5926e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| that would come about as a result ||| 1 0.0243476 1.49697e-06 2.42765e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| that would come about as a ||| 1 0.0243476 1.49697e-06 4.61091e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| that would come about as ||| 1 0.0243476 1.49697e-06 1.04023e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| that would come to ||| 1 0.229811 1.49697e-06 2.93706e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| that would encourage them to ||| 1 0.229811 1.49697e-06 3.57138e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| that would meet ||| 0.0909091 0.0482171 1.49697e-06 3.8748e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| that would set out to ||| 1 0.229811 1.49697e-06 7.74115e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| that would ||| 0.000597372 0.0006332 1.49697e-06 1.59637e-06 2.718 ||| 0-1 ||| 1674 668016 +a ||| that you are willing to ||| 0.0909091 0.229811 1.49697e-06 1.09117e-11 2.718 ||| 0-4 ||| 11 668016 +a ||| that you have made in ||| 0.166667 0.0587624 1.49697e-06 8.17541e-11 2.718 ||| 0-4 ||| 6 668016 +a ||| that you have to ||| 0.0465116 0.229811 2.99394e-06 2.27542e-07 2.718 ||| 0-3 ||| 43 668016 +a ||| that you referred to ||| 0.05 0.229811 1.49697e-06 1.82074e-09 2.718 ||| 0-3 ||| 20 668016 +a ||| that you will ||| 0.00325733 0.0561595 1.49697e-06 7.64913e-07 2.718 ||| 0-2 ||| 307 668016 +a ||| that you wish to ||| 0.0263158 0.229811 1.49697e-06 5.60683e-09 2.718 ||| 0-3 ||| 38 668016 +a ||| that you would ||| 0.0151515 0.0005352 1.49697e-06 7.20663e-09 2.718 ||| 0-1 ||| 66 668016 +a ||| that you ||| 0.00019972 0.0005352 1.49697e-06 1.22798e-06 2.718 ||| 0-1 ||| 5007 668016 +a ||| that ||| 0.000601856 0.0008521 0.000850279 0.0006827 2.718 ||| 0-0 ||| 943748 668016 +a ||| the Agency to ||| 0.015873 0.229811 1.49697e-06 2.79573e-07 2.718 ||| 0-2 ||| 63 668016 +a ||| the Baltic States ||| 0.00348432 0.0004654 1.49697e-06 1.08234e-11 2.718 ||| 0-0 ||| 287 668016 +a ||| the Baltic ||| 0.00204918 0.0004654 1.49697e-06 2.2681e-08 2.718 ||| 0-0 ||| 488 668016 +a ||| the Chairman of ||| 0.00315457 0.0188479 1.49697e-06 1.05321e-08 2.718 ||| 0-2 ||| 317 668016 +a ||| the Chamber , for their opinions regarding ||| 1 0.186429 1.49697e-06 1.26997e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| the Chamber today ||| 0.0588235 0.0004654 1.49697e-06 1.81895e-11 2.718 ||| 0-0 ||| 17 668016 +a ||| the Chamber ||| 0.000714286 0.0004654 1.49697e-06 4.03047e-08 2.718 ||| 0-0 ||| 1400 668016 +a ||| the Commission as ||| 0.00191939 0.0004654 1.49697e-06 9.1343e-09 2.718 ||| 0-0 ||| 521 668016 +a ||| the Commission going to ||| 0.0666667 0.229811 1.49697e-06 1.07501e-08 2.718 ||| 0-3 ||| 15 668016 +a ||| the Commission taken to inform and safeguard ||| 1 0.229811 1.49697e-06 5.61555e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| the Commission taken to inform and ||| 1 0.229811 1.49697e-06 2.73929e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| the Commission taken to inform ||| 1 0.229811 1.49697e-06 2.1869e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| the Commission taken to ||| 0.111111 0.229811 1.49697e-06 1.14498e-08 2.718 ||| 0-3 ||| 9 668016 +a ||| the Commission to be ||| 0.00421941 0.229811 1.49697e-06 2.2765e-07 2.718 ||| 0-2 ||| 237 668016 +a ||| the Commission to ||| 0.000317898 0.229811 4.49091e-06 1.25614e-05 2.718 ||| 0-2 ||| 9437 668016 +a ||| the Commission would like to ||| 0.00662252 0.229811 1.49697e-06 1.30918e-10 2.718 ||| 0-4 ||| 151 668016 +a ||| the Commission ||| 1.88488e-05 0.0004654 4.49091e-06 8.95133e-07 2.718 ||| 0-0 ||| 159161 668016 +a ||| the Commissioner suggested that we should look ||| 0.333333 0.0004654 1.49697e-06 6.60124e-22 2.718 ||| 0-0 ||| 3 668016 +a ||| the Commissioner suggested that we should ||| 0.333333 0.0004654 1.49697e-06 2.26458e-18 2.718 ||| 0-0 ||| 3 668016 +a ||| the Commissioner suggested that we ||| 0.333333 0.0004654 1.49697e-06 5.11076e-16 2.718 ||| 0-0 ||| 3 668016 +a ||| the Commissioner suggested that ||| 0.2 0.0004654 1.49697e-06 4.50196e-14 2.718 ||| 0-0 ||| 5 668016 +a ||| the Commissioner suggested ||| 0.142857 0.0004654 1.49697e-06 2.6763e-12 2.718 ||| 0-0 ||| 7 668016 +a ||| the Commissioner ||| 8.52878e-05 0.0004654 1.49697e-06 1.35166e-07 2.718 ||| 0-0 ||| 11725 668016 +a ||| the Committee on Fisheries ||| 0.000932836 0.0782999 1.49697e-06 2.31007e-12 2.718 ||| 0-2 ||| 1072 668016 +a ||| the Committee on ||| 4.0873e-05 0.0782999 1.49697e-06 3.55395e-07 2.718 ||| 0-2 ||| 24466 668016 +a ||| the Community wishes to ||| 0.333333 0.229811 1.49697e-06 1.84185e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| the Convention 's procedures or of ||| 0.333333 0.0188479 1.49697e-06 5.53393e-18 2.718 ||| 0-5 ||| 3 668016 +a ||| the Council may decide to ||| 0.5 0.229811 1.49697e-06 3.57136e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| the Council to reach ||| 0.0333333 0.229811 1.49697e-06 6.02369e-10 2.718 ||| 0-2 ||| 30 668016 +a ||| the Council to ||| 0.000505817 0.229811 1.49697e-06 7.43665e-06 2.718 ||| 0-2 ||| 1977 668016 +a ||| the Council will ||| 0.00236407 0.0561595 1.49697e-06 2.98987e-07 2.718 ||| 0-2 ||| 423 668016 +a ||| the Cuban ||| 0.0526316 0.0015528 1.49697e-06 5.52526e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| the EU to ||| 0.00203252 0.229811 4.49091e-06 1.0641e-05 2.718 ||| 0-2 ||| 1476 668016 +a ||| the EU was to ||| 0.2 0.229811 1.49697e-06 3.33382e-08 2.718 ||| 0-3 ||| 5 668016 +a ||| the Earl of ||| 0.047619 0.0188479 1.49697e-06 1.27111e-09 2.718 ||| 0-2 ||| 21 668016 +a ||| the European Parliament be able to ||| 0.25 0.229811 1.49697e-06 6.24568e-13 2.718 ||| 0-5 ||| 4 668016 +a ||| the European Parliament for ||| 0.00333333 0.0683377 1.49697e-06 4.34206e-09 2.718 ||| 0-3 ||| 300 668016 +a ||| the European Union 's citizens to ||| 0.5 0.229811 1.49697e-06 8.32065e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| the European Union and to join ||| 1 0.218864 1.49697e-06 6.86056e-13 2.718 ||| 0-4 0-5 ||| 1 668016 +a ||| the European Union for ||| 0.00196078 0.0683377 1.49697e-06 4.21648e-09 2.718 ||| 0-3 ||| 510 668016 +a ||| the European Union into ||| 0.0105263 0.107578 1.49697e-06 6.95067e-10 2.718 ||| 0-3 ||| 95 668016 +a ||| the European Union to ||| 0.000455166 0.229811 1.49697e-06 4.00842e-08 2.718 ||| 0-3 ||| 2197 668016 +a ||| the European ||| 0.000191883 0.0004654 2.99394e-06 5.12453e-06 2.718 ||| 0-0 ||| 10423 668016 +a ||| the Group of ||| 0.000390625 0.0188479 1.49697e-06 5.90705e-07 2.718 ||| 0-2 ||| 2560 668016 +a ||| the Head of State ||| 0.037037 0.0188479 1.49697e-06 3.92883e-13 2.718 ||| 0-2 ||| 27 668016 +a ||| the Head of ||| 0.0185185 0.0188479 1.49697e-06 3.26858e-09 2.718 ||| 0-2 ||| 54 668016 +a ||| the House at ||| 0.0185185 0.204175 1.49697e-06 5.22583e-07 2.718 ||| 0-2 ||| 54 668016 +a ||| the House for ||| 0.00578035 0.0683377 1.49697e-06 5.65775e-07 2.718 ||| 0-2 ||| 173 668016 +a ||| the House to ||| 0.0030722 0.229811 2.99394e-06 5.37856e-06 2.718 ||| 0-2 ||| 651 668016 +a ||| the Internal Market to ||| 0.142857 0.229811 1.49697e-06 1.78116e-11 2.718 ||| 0-3 ||| 7 668016 +a ||| the Irish to ||| 0.125 0.229811 1.49697e-06 5.50545e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| the Media , to ||| 1 0.229811 1.49697e-06 4.15473e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| the Member States conform to ||| 1 0.229811 1.49697e-06 7.40357e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| the Member States for ||| 0.00571429 0.0683377 1.49697e-06 5.56277e-10 2.718 ||| 0-3 ||| 175 668016 +a ||| the Member States with ||| 0.00454545 0.0571592 1.49697e-06 2.52034e-10 2.718 ||| 0-3 ||| 220 668016 +a ||| the Members of ||| 0.0020555 0.0188479 2.99394e-06 2.67842e-07 2.718 ||| 0-2 ||| 973 668016 +a ||| the Memorandum ||| 0.0212766 0.0004654 1.49697e-06 6.13e-10 2.718 ||| 0-0 ||| 47 668016 +a ||| the Minutes ||| 0.00164474 0.0004654 2.99394e-06 1.6551e-08 2.718 ||| 0-0 ||| 1216 668016 +a ||| the Ombudsman often attends ||| 1 0.31579 1.49697e-06 2.86197e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| the President of ||| 0.000397614 0.0188479 1.49697e-06 2.63302e-07 2.718 ||| 0-2 ||| 2515 668016 +a ||| the President-in-Office to ||| 0.016129 0.229811 1.49697e-06 1.12905e-06 2.718 ||| 0-2 ||| 62 668016 +a ||| the Recommendations on BSE ||| 0.25 0.0782999 1.49697e-06 3.65177e-14 2.718 ||| 0-2 ||| 4 668016 +a ||| the Recommendations on ||| 0.2 0.0782999 1.49697e-06 3.26051e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| the Representative of the Dalai Lama and ||| 0.333333 0.0188479 1.49697e-06 1.21653e-23 2.718 ||| 0-2 ||| 3 668016 +a ||| the Representative of the Dalai Lama ||| 0.333333 0.0188479 1.49697e-06 9.71214e-22 2.718 ||| 0-2 ||| 3 668016 +a ||| the Representative of the Dalai ||| 0.333333 0.0188479 1.49697e-06 4.41461e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| the Representative of the ||| 0.125 0.0188479 1.49697e-06 4.01328e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| the Representative of ||| 0.25 0.0188479 1.49697e-06 6.53716e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| the Republic of ||| 0.000639386 0.0188479 1.49697e-06 8.62542e-08 2.718 ||| 0-2 ||| 1564 668016 +a ||| the Rules of Procedure as to what ||| 1 0.0188479 1.49697e-06 1.04339e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| the Rules of Procedure as to ||| 1 0.0188479 1.49697e-06 7.4363e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| the Rules of Procedure as ||| 0.333333 0.0188479 1.49697e-06 8.36873e-14 2.718 ||| 0-2 ||| 3 668016 +a ||| the Rules of Procedure ||| 0.000974659 0.0188479 1.49697e-06 8.2011e-12 2.718 ||| 0-2 ||| 1026 668016 +a ||| the Rules of ||| 0.00330033 0.0188479 1.49697e-06 1.28746e-07 2.718 ||| 0-2 ||| 303 668016 +a ||| the Treaties ||| 0.000459559 0.0004654 1.49697e-06 1.21068e-08 2.718 ||| 0-0 ||| 2176 668016 +a ||| the Treaty , then at ||| 1 0.204175 1.49697e-06 3.43498e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| the Treaty to categories of ||| 0.5 0.229811 1.49697e-06 1.08084e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| the Treaty to categories ||| 0.5 0.229811 1.49697e-06 1.98815e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| the Treaty to ||| 0.0138889 0.229811 1.49697e-06 1.84088e-06 2.718 ||| 0-2 ||| 72 668016 +a ||| the UN blacklist , for example ||| 1 0.0683377 1.49697e-06 2.29236e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| the UN blacklist , for ||| 1 0.0683377 1.49697e-06 7.8748e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| the US for resettlement ||| 0.5 0.0683377 1.49697e-06 2.13008e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| the US for ||| 0.0625 0.0683377 1.49697e-06 9.6822e-08 2.718 ||| 0-2 ||| 16 668016 +a ||| the Union in ||| 0.00235849 0.0587624 1.49697e-06 2.05601e-06 2.718 ||| 0-2 ||| 424 668016 +a ||| the Union to join them ||| 0.5 0.229811 1.49697e-06 1.50483e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| the Union to join ||| 0.2 0.229811 1.49697e-06 5.61003e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| the Union to ||| 0.00298954 0.229811 2.99394e-06 1.19872e-05 2.718 ||| 0-2 ||| 669 668016 +a ||| the Unit for the Coordination of Fraud ||| 0.333333 0.0683377 1.49697e-06 3.80524e-24 2.718 ||| 0-2 ||| 3 668016 +a ||| the Unit for the Coordination of ||| 0.142857 0.0683377 1.49697e-06 9.51311e-18 2.718 ||| 0-2 ||| 7 668016 +a ||| the Unit for the Coordination ||| 0.2 0.0683377 1.49697e-06 1.74989e-16 2.718 ||| 0-2 ||| 5 668016 +a ||| the Unit for the ||| 0.2 0.0683377 1.49697e-06 9.72162e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| the Unit for ||| 0.142857 0.0683377 1.49697e-06 1.58354e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| the United States to ||| 0.00343643 0.229811 1.49697e-06 1.25613e-09 2.718 ||| 0-3 ||| 291 668016 +a ||| the Volkskammer at that time ||| 0.333333 0.204175 1.49697e-06 2.30814e-14 2.718 ||| 0-2 ||| 3 668016 +a ||| the Volkskammer at that ||| 0.333333 0.204175 1.49697e-06 1.40595e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| the Volkskammer at ||| 0.333333 0.204175 1.49697e-06 8.35798e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| the ability of ||| 0.00280112 0.0188479 1.49697e-06 8.37119e-08 2.718 ||| 0-2 ||| 357 668016 +a ||| the accent firmly on ||| 1 0.0782999 1.49697e-06 2.20084e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| the accession of ||| 0.000799361 0.0188479 1.49697e-06 6.66427e-08 2.718 ||| 0-2 ||| 1251 668016 +a ||| the achievement of the aforementioned aims to ||| 1 0.229811 1.49697e-06 4.96932e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| the achievement of ||| 0.00167224 0.0188479 1.49697e-06 4.37626e-08 2.718 ||| 0-2 ||| 598 668016 +a ||| the achievements have been here up until ||| 1 0.0268909 1.49697e-06 2.95229e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| the activities of ||| 0.0035461 0.0188479 4.49091e-06 1.44362e-07 2.718 ||| 0-2 ||| 846 668016 +a ||| the activities ||| 0.000674309 0.0004654 1.49697e-06 1.21834e-07 2.718 ||| 0-0 ||| 1483 668016 +a ||| the actual way in which we have ||| 1 0.0587624 1.49697e-06 1.32692e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| the actual way in which we ||| 1 0.0587624 1.49697e-06 1.10949e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| the actual way in which ||| 0.5 0.0587624 1.49697e-06 9.77323e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| the actual way in ||| 0.333333 0.0587624 1.49697e-06 1.15052e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| the addresses ||| 0.25 0.0621866 1.49697e-06 3.47478e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| the adoption of ||| 0.000668003 0.0188479 2.99394e-06 8.37119e-08 2.718 ||| 0-2 ||| 2994 668016 +a ||| the advice of ||| 0.00970874 0.0188479 1.49697e-06 3.26858e-08 2.718 ||| 0-2 ||| 103 668016 +a ||| the affected areas and to ||| 1 0.115699 1.49697e-06 6.32583e-13 2.718 ||| 0-3 0-4 ||| 1 668016 +a ||| the aforementioned aims to the ||| 1 0.229811 1.49697e-06 3.79287e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| the aforementioned aims to ||| 1 0.229811 1.49697e-06 6.17814e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| the afternoons , when not many people ||| 1 0.0055468 1.49697e-06 9.37474e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| the afternoons , when not many ||| 1 0.0055468 1.49697e-06 1.06507e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| the afternoons , when not ||| 1 0.0055468 1.49697e-06 3.10244e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| the afternoons , when ||| 1 0.0055468 1.49697e-06 9.08715e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| the agenda to the ||| 0.5 0.229811 1.49697e-06 1.31103e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| the agenda to ||| 0.0833333 0.229811 1.49697e-06 2.13551e-06 2.718 ||| 0-2 ||| 12 668016 +a ||| the aid awarded to ||| 1 0.229811 1.49697e-06 5.3645e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| the aid of ||| 0.0140845 0.0188479 2.99394e-06 2.37154e-07 2.718 ||| 0-2 ||| 142 668016 +a ||| the allusion to ||| 1 0.229811 1.49697e-06 1.5054e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| the amount of ||| 0.000966184 0.0188479 1.49697e-06 4.41803e-07 2.718 ||| 0-2 ||| 1035 668016 +a ||| the answers to ||| 0.0116279 0.229811 1.49697e-06 4.64522e-07 2.718 ||| 0-2 ||| 86 668016 +a ||| the appeal to ||| 0.0208333 0.229811 1.49697e-06 6.49471e-07 2.718 ||| 0-2 ||| 48 668016 +a ||| the appropriate person to ||| 0.5 0.229811 1.49697e-06 3.72832e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| the appropriate place ||| 0.0434783 0.0004654 1.49697e-06 3.10443e-10 2.718 ||| 0-0 ||| 23 668016 +a ||| the appropriate ||| 0.00206612 0.0004654 1.49697e-06 2.06274e-07 2.718 ||| 0-0 ||| 484 668016 +a ||| the approval of ||| 0.00168067 0.0188479 1.49697e-06 5.42947e-08 2.718 ||| 0-2 ||| 595 668016 +a ||| the area of ||| 0.000205931 0.0188479 1.49697e-06 7.54134e-07 2.718 ||| 0-2 ||| 4856 668016 +a ||| the area to ||| 0.0285714 0.229811 1.49697e-06 8.93129e-06 2.718 ||| 0-2 ||| 35 668016 +a ||| the arguments in ||| 0.0277778 0.0587624 1.49697e-06 8.88946e-08 2.718 ||| 0-2 ||| 36 668016 +a ||| the arrest of ||| 0.00558659 0.0188479 1.49697e-06 2.48775e-08 2.718 ||| 0-2 ||| 179 668016 +a ||| the as ||| 0.1 0.0243476 1.49697e-06 0.000538553 2.718 ||| 0-1 ||| 10 668016 +a ||| the assembled delegates to rise to this ||| 1 0.229811 1.49697e-06 2.36503e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| the assembled delegates to rise to ||| 1 0.229811 1.49697e-06 3.66024e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| the assembled delegates to rise ||| 1 0.229811 1.49697e-06 4.11919e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| the assembled delegates to ||| 1 0.229811 1.49697e-06 3.27961e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| the assistant ||| 0.25 0.037037 1.49697e-06 2.82402e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| the association of ||| 0.0169492 0.0188479 1.49697e-06 2.86909e-08 2.718 ||| 0-2 ||| 59 668016 +a ||| the asylum seeker to be ||| 1 0.229811 1.49697e-06 7.24535e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| the asylum seeker to ||| 1 0.229811 1.49697e-06 3.9979e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| the attempt to ||| 0.00460829 0.229811 1.49697e-06 1.79572e-06 2.718 ||| 0-2 ||| 217 668016 +a ||| the attempts to ||| 0.0104167 0.229811 1.49697e-06 6.81729e-07 2.718 ||| 0-2 ||| 96 668016 +a ||| the attention of the ||| 0.00242718 0.0188479 1.49697e-06 2.91297e-08 2.718 ||| 0-2 ||| 412 668016 +a ||| the attention of ||| 0.00494234 0.0188479 4.49091e-06 4.74489e-07 2.718 ||| 0-2 ||| 607 668016 +a ||| the back of ||| 0.0107527 0.0188479 1.49697e-06 1.22136e-06 2.718 ||| 0-2 ||| 93 668016 +a ||| the back ||| 0.00390625 0.0536618 1.49697e-06 4.51659e-05 2.718 ||| 0-1 ||| 256 668016 +a ||| the basis of publications in the ||| 1 0.0587624 1.49697e-06 1.60821e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| the basis of publications in ||| 0.5 0.0587624 1.49697e-06 2.61959e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| the basis of ||| 0.000666889 0.0188479 5.98788e-06 1.07827e-06 2.718 ||| 0-2 ||| 5998 668016 +a ||| the beginnings of the ||| 0.142857 0.0004654 1.49697e-06 2.04589e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| the beginnings of ||| 0.012987 0.0004654 1.49697e-06 3.33251e-10 2.718 ||| 0-0 ||| 77 668016 +a ||| the beginnings ||| 0.0114943 0.0004654 1.49697e-06 6.13e-09 2.718 ||| 0-0 ||| 87 668016 +a ||| the benefit of ||| 0.00580131 0.0257389 1.19758e-05 5.02272e-07 2.718 ||| 0-1 0-2 ||| 1379 668016 +a ||| the best for the future ||| 0.0769231 0.0683377 1.49697e-06 5.10879e-12 2.718 ||| 0-2 ||| 13 668016 +a ||| the best for the ||| 0.0344828 0.0683377 1.49697e-06 1.92349e-08 2.718 ||| 0-2 ||| 29 668016 +a ||| the best for ||| 0.0166667 0.0683377 1.49697e-06 3.13314e-07 2.718 ||| 0-2 ||| 60 668016 +a ||| the best to ||| 0.0666667 0.229811 1.49697e-06 2.97853e-06 2.718 ||| 0-2 ||| 15 668016 +a ||| the best way in ||| 0.0714286 0.0587624 1.49697e-06 1.10123e-09 2.718 ||| 0-3 ||| 14 668016 +a ||| the better for ||| 0.047619 0.0683377 1.49697e-06 3.84347e-07 2.718 ||| 0-2 ||| 21 668016 +a ||| the better of ||| 0.0434783 0.0188479 1.49697e-06 3.08518e-07 2.718 ||| 0-2 ||| 23 668016 +a ||| the bill has to be met ||| 1 0.229811 1.49697e-06 2.66206e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| the bill has to be ||| 1 0.229811 1.49697e-06 3.47074e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| the bill has to ||| 1 0.229811 1.49697e-06 1.91512e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| the blame on ||| 0.0294118 0.0782999 1.49697e-06 5.54286e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| the block on ||| 0.166667 0.0782999 1.49697e-06 2.25907e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| the boat of ||| 0.5 0.0188479 1.49697e-06 1.05321e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| the borders of ||| 0.00214592 0.0188479 1.49697e-06 7.84459e-08 2.718 ||| 0-2 ||| 466 668016 +a ||| the broad lines of ||| 0.0322581 0.0188479 1.49697e-06 5.10607e-12 2.718 ||| 0-3 ||| 31 668016 +a ||| the burden on ||| 0.00793651 0.0782999 1.49697e-06 1.01309e-07 2.718 ||| 0-2 ||| 126 668016 +a ||| the business of ||| 0.00680272 0.0188479 1.49697e-06 2.26803e-07 2.718 ||| 0-2 ||| 147 668016 +a ||| the capacity of ||| 0.00371747 0.0188479 1.49697e-06 1.32741e-07 2.718 ||| 0-2 ||| 269 668016 +a ||| the case , as ||| 0.0196078 0.0243476 1.49697e-06 6.87144e-08 2.718 ||| 0-3 ||| 51 668016 +a ||| the case , you see , that ||| 1 0.0008521 1.49697e-06 1.45079e-15 2.718 ||| 0-6 ||| 1 668016 +a ||| the case , ||| 0.000859845 0.0004654 1.49697e-06 1.95533e-07 2.718 ||| 0-0 ||| 1163 668016 +a ||| the case as a ||| 1 0.0243476 1.49697e-06 2.55405e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| the case as ||| 0.0434783 0.0243476 1.49697e-06 5.76198e-07 2.718 ||| 0-2 ||| 23 668016 +a ||| the case at present ||| 0.0181818 0.204175 1.49697e-06 8.18211e-10 2.718 ||| 0-2 ||| 55 668016 +a ||| the case at ||| 0.00892857 0.204175 1.49697e-06 2.23555e-06 2.718 ||| 0-2 ||| 112 668016 +a ||| the case before ||| 0.05 0.0203282 1.49697e-06 3.48317e-08 2.718 ||| 0-2 ||| 20 668016 +a ||| the case concerning ||| 0.142857 0.22348 1.49697e-06 2.68644e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| the case during ||| 0.0714286 0.0054313 1.49697e-06 6.1151e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| the case for ||| 0.00229358 0.0683377 1.49697e-06 2.42032e-06 2.718 ||| 0-2 ||| 436 668016 +a ||| the case in ||| 0.00330579 0.0587624 2.99394e-06 3.9464e-06 2.718 ||| 0-2 ||| 605 668016 +a ||| the case to ||| 0.0526316 0.229811 4.49091e-06 2.30089e-05 2.718 ||| 0-2 ||| 57 668016 +a ||| the case ||| 0.000249688 0.0004654 4.49091e-06 1.63962e-06 2.718 ||| 0-0 ||| 12015 668016 +a ||| the cases of ||| 0.00598802 0.0188479 1.49697e-06 2.32614e-07 2.718 ||| 0-2 ||| 167 668016 +a ||| the cause of ||| 0.00281294 0.0188479 2.99394e-06 3.28129e-07 2.718 ||| 0-2 ||| 711 668016 +a ||| the chairman of ||| 0.00196078 0.0188479 1.49697e-06 1.7614e-08 2.718 ||| 0-2 ||| 510 668016 +a ||| the chance to ||| 0.00148148 0.229811 1.49697e-06 1.41722e-06 2.718 ||| 0-2 ||| 675 668016 +a ||| the charge laid at ||| 1 0.204175 1.49697e-06 1.14788e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| the cheap ||| 0.0344828 0.0004654 1.49697e-06 1.44055e-08 2.718 ||| 0-0 ||| 29 668016 +a ||| the checking handed over to ||| 1 0.229811 1.49697e-06 2.17579e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| the citizens of ||| 0.000333333 0.0188479 1.49697e-06 1.97931e-07 2.718 ||| 0-2 ||| 3000 668016 +a ||| the citizens to ||| 0.0121951 0.229811 1.49697e-06 2.34412e-06 2.718 ||| 0-2 ||| 82 668016 +a ||| the claims of ||| 0.0357143 0.0188479 1.49697e-06 5.48395e-08 2.718 ||| 0-2 ||| 28 668016 +a ||| the coffers at ||| 1 0.204175 1.49697e-06 2.92529e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| the college ||| 0.0123457 0.0004654 1.49697e-06 5.517e-09 2.718 ||| 0-0 ||| 81 668016 +a ||| the competence of the ||| 0.00649351 0.0188479 2.99394e-06 2.68667e-09 2.718 ||| 0-2 ||| 308 668016 +a ||| the competence of ||| 0.00543478 0.0188479 2.99394e-06 4.37626e-08 2.718 ||| 0-2 ||| 368 668016 +a ||| the competitiveness of regions helps to ||| 1 0.229811 1.49697e-06 3.89392e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| the concept of human rights ||| 0.0277778 0.0188479 1.49697e-06 2.66339e-15 2.718 ||| 0-2 ||| 36 668016 +a ||| the concept of human ||| 0.5 0.0188479 1.49697e-06 1.33103e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| the concept of ||| 0.000606428 0.0188479 1.49697e-06 1.07863e-07 2.718 ||| 0-2 ||| 1649 668016 +a ||| the concern of ||| 0.0185185 0.0188479 4.49091e-06 2.4242e-07 2.718 ||| 0-2 ||| 162 668016 +a ||| the concerns of ||| 0.00172414 0.0730661 1.49697e-06 4.28275e-06 2.718 ||| 0-1 0-2 ||| 580 668016 +a ||| the condition of ||| 0.00847458 0.0188479 1.49697e-06 4.64865e-08 2.718 ||| 0-2 ||| 118 668016 +a ||| the conditions valid for the ||| 0.333333 0.0683377 1.49697e-06 2.80476e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| the conditions valid for ||| 0.333333 0.0683377 1.49697e-06 4.56862e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| the conduct of ||| 0.00401606 0.0188479 1.49697e-06 1.09134e-07 2.718 ||| 0-2 ||| 249 668016 +a ||| the congratulations to ||| 0.0344828 0.229811 1.49697e-06 2.23659e-07 2.718 ||| 0-2 ||| 29 668016 +a ||| the consensus of ||| 0.0227273 0.0188479 1.49697e-06 2.81461e-08 2.718 ||| 0-2 ||| 44 668016 +a ||| the consequence of ||| 0.00591716 0.0188479 1.49697e-06 6.41005e-08 2.718 ||| 0-2 ||| 169 668016 +a ||| the consequences of ||| 0.000542594 0.0188479 1.49697e-06 7.71748e-08 2.718 ||| 0-2 ||| 1843 668016 +a ||| the content of ||| 0.000982318 0.0188479 1.49697e-06 8.95228e-08 2.718 ||| 0-2 ||| 1018 668016 +a ||| the continent of ||| 0.0103093 0.0188479 1.49697e-06 2.08826e-08 2.718 ||| 0-2 ||| 97 668016 +a ||| the control is made even more ||| 0.333333 0.0495435 1.49697e-06 1.37775e-15 2.718 ||| 0-4 ||| 3 668016 +a ||| the control is made even ||| 0.333333 0.0495435 1.49697e-06 6.03297e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| the control of ||| 0.00178891 0.0188479 1.49697e-06 1.39278e-07 2.718 ||| 0-2 ||| 559 668016 +a ||| the cost of ||| 0.000568505 0.0188479 1.49697e-06 1.50355e-07 2.718 ||| 0-2 ||| 1759 668016 +a ||| the cost ||| 0.000409165 0.0004654 1.49697e-06 1.26891e-07 2.718 ||| 0-0 ||| 2444 668016 +a ||| the countries of ||| 0.000356506 0.0188479 1.49697e-06 6.89489e-07 2.718 ||| 0-2 ||| 2805 668016 +a ||| the countries with which we are ||| 0.25 0.0571592 1.49697e-06 5.69416e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| the countries with which we ||| 0.2 0.0571592 1.49697e-06 3.7529e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| the countries with which ||| 0.0185185 0.0571592 1.49697e-06 3.30585e-09 2.718 ||| 0-2 ||| 54 668016 +a ||| the countries with ||| 0.00442478 0.0571592 1.49697e-06 3.89171e-07 2.718 ||| 0-2 ||| 226 668016 +a ||| the country , in ||| 0.0833333 0.0587624 1.49697e-06 1.58313e-07 2.718 ||| 0-3 ||| 12 668016 +a ||| the country before the ||| 0.25 0.0004654 1.49697e-06 8.4685e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| the country before ||| 0.142857 0.0004654 1.49697e-06 1.37942e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| the country closer to ||| 0.2 0.229811 1.49697e-06 1.64859e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| the country to ||| 0.0116279 0.229811 2.99394e-06 7.73988e-06 2.718 ||| 0-2 ||| 172 668016 +a ||| the country ||| 0.000169262 0.0004654 1.49697e-06 5.51547e-07 2.718 ||| 0-0 ||| 5908 668016 +a ||| the courage to make reforms you can ||| 1 0.229811 1.49697e-06 4.78404e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| the courage to make reforms you ||| 1 0.229811 1.49697e-06 1.60846e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| the courage to make reforms ||| 1 0.229811 1.49697e-06 4.98176e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| the courage to make ||| 0.0357143 0.229811 1.49697e-06 3.21404e-10 2.718 ||| 0-2 ||| 28 668016 +a ||| the courage to persevere ||| 0.5 0.229811 1.49697e-06 1.29464e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| the courage to ||| 0.002574 0.229811 2.99394e-06 1.84949e-07 2.718 ||| 0-2 ||| 777 668016 +a ||| the course of which ||| 0.0434783 0.0188479 1.49697e-06 1.94619e-08 2.718 ||| 0-2 ||| 23 668016 +a ||| the course of ||| 0.00260078 0.0188479 5.98788e-06 2.29109e-06 2.718 ||| 0-2 ||| 1538 668016 +a ||| the courses relate to ||| 1 0.229811 1.49697e-06 6.13341e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| the court of the ||| 0.0344828 0.0188479 1.49697e-06 3.33325e-09 2.718 ||| 0-2 ||| 29 668016 +a ||| the court of ||| 0.05 0.0188479 2.99394e-06 5.42947e-08 2.718 ||| 0-2 ||| 40 668016 +a ||| the creation of ||| 0.000191461 0.0188479 1.49697e-06 8.42567e-08 2.718 ||| 0-2 ||| 5223 668016 +a ||| the credibility of ||| 0.00139665 0.0188479 1.49697e-06 1.30743e-08 2.718 ||| 0-2 ||| 716 668016 +a ||| the credit for ||| 0.0263158 0.0683377 1.49697e-06 8.1439e-08 2.718 ||| 0-2 ||| 38 668016 +a ||| the current 50 years to ||| 1 0.229811 1.49697e-06 8.44495e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| the current revision of the Treaty . ||| 1 0.0188479 1.49697e-06 5.47804e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| the current revision of the Treaty ||| 1 0.0188479 1.49697e-06 1.80853e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| the current revision of the ||| 0.125 0.0188479 1.49697e-06 2.11277e-13 2.718 ||| 0-3 ||| 8 668016 +a ||| the current revision of ||| 0.2 0.0188479 1.49697e-06 3.44145e-12 2.718 ||| 0-3 ||| 5 668016 +a ||| the customer to ||| 0.5 0.229811 1.49697e-06 6.88181e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| the damage done to ||| 0.047619 0.229811 1.49697e-06 4.12857e-10 2.718 ||| 0-3 ||| 21 668016 +a ||| the day before yesterday ||| 0.00787402 0.0203282 1.49697e-06 1.98513e-13 2.718 ||| 0-2 ||| 127 668016 +a ||| the day before ||| 0.00787402 0.0203282 1.49697e-06 8.34087e-09 2.718 ||| 0-2 ||| 127 668016 +a ||| the day on which ||| 0.05 0.0782999 2.99394e-06 5.0685e-09 2.718 ||| 0-2 ||| 40 668016 +a ||| the day on ||| 0.0465116 0.0782999 2.99394e-06 5.96673e-07 2.718 ||| 0-2 ||| 43 668016 +a ||| the day this would lead to ||| 1 0.229811 1.49697e-06 4.0219e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| the deadlock in ||| 0.037037 0.0587624 1.49697e-06 1.32789e-08 2.718 ||| 0-2 ||| 27 668016 +a ||| the debate on ||| 0.000664894 0.0782999 2.99394e-06 4.60896e-07 2.718 ||| 0-2 ||| 3008 668016 +a ||| the decision on ||| 0.0021645 0.0782999 1.49697e-06 3.66341e-07 2.718 ||| 0-2 ||| 462 668016 +a ||| the decision to ||| 0.00114025 0.229811 1.49697e-06 3.38284e-06 2.718 ||| 0-2 ||| 877 668016 +a ||| the decisions on ||| 0.00970874 0.0782999 1.49697e-06 1.77698e-07 2.718 ||| 0-2 ||| 103 668016 +a ||| the degree of ||| 0.00288184 0.0188479 1.49697e-06 2.51499e-07 2.718 ||| 0-2 ||| 347 668016 +a ||| the demand for ||| 0.00189394 0.0683377 1.49697e-06 1.21254e-07 2.718 ||| 0-2 ||| 528 668016 +a ||| the desire to ||| 0.00478469 0.229811 2.99394e-06 1.00646e-06 2.718 ||| 0-2 ||| 418 668016 +a ||| the development of ||| 0.000326691 0.0188479 2.99394e-06 2.98712e-07 2.718 ||| 0-2 ||| 6122 668016 +a ||| the different roles in ||| 1 0.0587624 1.49697e-06 2.35545e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| the direct tradition of ||| 1 0.0188479 1.49697e-06 4.20757e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| the direction in ||| 0.00662252 0.0587624 1.49697e-06 3.34554e-07 2.718 ||| 0-2 ||| 151 668016 +a ||| the direction of ||| 0.00371747 0.0188479 2.99394e-06 1.647e-07 2.718 ||| 0-2 ||| 538 668016 +a ||| the directive on ||| 0.000697837 0.0782999 1.49697e-06 2.59909e-07 2.718 ||| 0-2 ||| 1433 668016 +a ||| the discussion on ||| 0.00297619 0.0782999 1.49697e-06 2.0122e-07 2.718 ||| 0-2 ||| 336 668016 +a ||| the discussion ||| 0.000583431 0.0004654 1.49697e-06 1.32408e-07 2.718 ||| 0-0 ||| 1714 668016 +a ||| the dismantling of ||| 0.00609756 0.0188479 1.49697e-06 4.53969e-09 2.718 ||| 0-2 ||| 164 668016 +a ||| the division responsible for servicing ||| 1 0.0683377 1.49697e-06 2.10785e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| the division responsible for ||| 0.5 0.0683377 1.49697e-06 3.01121e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| the door for ||| 0.0333333 0.0683377 1.49697e-06 1.02477e-07 2.718 ||| 0-2 ||| 30 668016 +a ||| the door is shut on ||| 0.25 0.0782999 1.49697e-06 5.12509e-14 2.718 ||| 0-4 ||| 4 668016 +a ||| the door of ||| 0.0178571 0.0188479 1.49697e-06 8.22592e-08 2.718 ||| 0-2 ||| 56 668016 +a ||| the doors open to ||| 1 0.229811 1.49697e-06 4.12539e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| the draftspeople for ||| 1 0.0683377 1.49697e-06 9.04878e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| the driving force behind ||| 0.00763359 0.0923313 1.49697e-06 2.66449e-13 2.718 ||| 0-3 ||| 131 668016 +a ||| the duty of ||| 0.00369004 0.0188479 1.49697e-06 1.35283e-07 2.718 ||| 0-2 ||| 271 668016 +a ||| the ears of ||| 0.05 0.0188479 1.49697e-06 2.16089e-08 2.718 ||| 0-2 ||| 20 668016 +a ||| the earthquake in ||| 0.0153846 0.0587624 1.49697e-06 8.11486e-09 2.718 ||| 0-2 ||| 65 668016 +a ||| the edge over ||| 1 0.0682544 1.49697e-06 1.22642e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| the effect of ||| 0.0035461 0.0188479 2.99394e-06 6.05777e-07 2.718 ||| 0-2 ||| 564 668016 +a ||| the efficiency of the rules , the ||| 1 0.0188479 1.49697e-06 1.32775e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| the efficiency of the rules , ||| 1 0.0188479 1.49697e-06 2.16275e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| the efficiency of the rules ||| 1 0.0188479 1.49697e-06 1.81356e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| the efficiency of the ||| 0.00492611 0.0188479 1.49697e-06 1.56072e-09 2.718 ||| 0-2 ||| 203 668016 +a ||| the efficiency of ||| 0.00233645 0.0188479 1.49697e-06 2.54223e-08 2.718 ||| 0-2 ||| 428 668016 +a ||| the efforts to ||| 0.00389105 0.229811 1.49697e-06 2.61509e-06 2.718 ||| 0-2 ||| 257 668016 +a ||| the efforts which have been made on ||| 1 0.0782999 1.49697e-06 2.01253e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| the elections in 2009 and 2010 ; ||| 0.5 0.0587624 1.49697e-06 5.72746e-23 2.718 ||| 0-2 ||| 2 668016 +a ||| the elections in 2009 and 2010 ||| 0.5 0.0587624 1.49697e-06 1.85957e-19 2.718 ||| 0-2 ||| 2 668016 +a ||| the elections in 2009 and ||| 0.333333 0.0587624 1.49697e-06 2.16229e-14 2.718 ||| 0-2 ||| 3 668016 +a ||| the elections in 2009 ||| 0.0769231 0.0587624 1.49697e-06 1.72625e-12 2.718 ||| 0-2 ||| 13 668016 +a ||| the elections in ||| 0.00302115 0.0587624 1.49697e-06 1.32789e-07 2.718 ||| 0-2 ||| 331 668016 +a ||| the end , in ||| 0.333333 0.0587624 1.49697e-06 1.91392e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| the end in ||| 0.0909091 0.0587624 1.49697e-06 1.6049e-06 2.718 ||| 0-2 ||| 11 668016 +a ||| the end of the year , in ||| 0.0909091 0.0587624 1.49697e-06 1.59309e-13 2.718 ||| 0-6 ||| 11 668016 +a ||| the end of ||| 0.000302801 0.0188479 2.99394e-06 7.90088e-07 2.718 ||| 0-2 ||| 6605 668016 +a ||| the euro area with ||| 0.166667 0.0571592 1.49697e-06 2.49862e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| the event of ||| 0.00128783 0.0004155 2.99394e-06 6.00751e-09 2.718 ||| 0-1 ||| 1553 668016 +a ||| the event to ||| 0.25 0.229811 1.49697e-06 2.24519e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| the event ||| 0.0010005 0.0004155 2.99394e-06 1.10505e-07 2.718 ||| 0-1 ||| 1999 668016 +a ||| the events in ||| 0.00326797 0.0587624 1.49697e-06 2.68159e-07 2.718 ||| 0-2 ||| 306 668016 +a ||| the example of ||| 0.00181818 0.0188479 1.49697e-06 5.28602e-07 2.718 ||| 0-2 ||| 550 668016 +a ||| the extent of ||| 0.00184502 0.0188479 1.49697e-06 3.49012e-07 2.718 ||| 0-2 ||| 542 668016 +a ||| the extent to ||| 0.00182149 0.229811 1.49697e-06 4.13339e-06 2.718 ||| 0-2 ||| 549 668016 +a ||| the face of ||| 0.00273598 0.0188479 2.99394e-06 3.03796e-07 2.718 ||| 0-2 ||| 731 668016 +a ||| the face with ||| 0.5 0.124218 1.49697e-06 3.98458e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| the face ||| 0.00376884 0.124218 4.49091e-06 6.23127e-05 2.718 ||| 0-1 ||| 796 668016 +a ||| the fact , to ||| 0.5 0.229811 1.49697e-06 7.51263e-06 2.718 ||| 0-3 ||| 2 668016 +a ||| the fact that ||| 0.00018216 0.0008521 4.49091e-06 1.22773e-07 2.718 ||| 0-2 ||| 16469 668016 +a ||| the fact ||| 0.00039185 0.0004654 1.64667e-05 4.48915e-06 2.718 ||| 0-0 ||| 28072 668016 +a ||| the favour and ||| 1 0.0016469 1.49697e-06 4.0038e-09 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| the favours being done ||| 1 0.222874 1.49697e-06 1.10498e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| the favours being ||| 1 0.222874 1.49697e-06 2.42321e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| the favours ||| 0.5 0.222874 1.49697e-06 8.51504e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| the feed used , will ||| 1 0.0561595 1.49697e-06 8.27183e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| the feet of ||| 0.111111 0.0188479 1.49697e-06 3.39569e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| the field to ||| 0.0454545 0.229811 1.49697e-06 3.14197e-06 2.718 ||| 0-2 ||| 22 668016 +a ||| the fight against trafficking ||| 0.0138889 0.05146 1.49697e-06 1.0464e-13 2.718 ||| 0-2 ||| 72 668016 +a ||| the fight against ||| 0.000149009 0.05146 1.49697e-06 8.7933e-09 2.718 ||| 0-2 ||| 6711 668016 +a ||| the fight ||| 0.000147319 0.0004654 1.49697e-06 8.44408e-08 2.718 ||| 0-0 ||| 6788 668016 +a ||| the figures for funding in ||| 1 0.0683377 1.49697e-06 1.18977e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| the figures for funding ||| 1 0.0683377 1.49697e-06 5.55851e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| the figures for ||| 0.00990099 0.0683377 1.49697e-06 1.04287e-07 2.718 ||| 0-2 ||| 101 668016 +a ||| the final shot in ||| 0.5 0.0587624 1.49697e-06 3.15211e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| the finger at ||| 0.0285714 0.204175 2.99394e-06 3.67751e-08 2.718 ||| 0-2 ||| 70 668016 +a ||| the first ||| 4.94266e-05 0.0004654 1.49697e-06 8.25098e-07 2.718 ||| 0-0 ||| 20232 668016 +a ||| the fixing of ||| 0.0243902 0.0188479 1.49697e-06 6.53716e-09 2.718 ||| 0-2 ||| 41 668016 +a ||| the floor of ||| 0.0294118 0.0188479 1.49697e-06 7.71748e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| the floor to ||| 0.0045045 0.229811 4.49091e-06 9.1399e-07 2.718 ||| 0-2 ||| 666 668016 +a ||| the focus to be ||| 1 0.229811 1.49697e-06 3.01662e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| the focus to ||| 0.166667 0.229811 1.49697e-06 1.66454e-06 2.718 ||| 0-2 ||| 6 668016 +a ||| the following objectives ||| 0.047619 0.0720432 1.49697e-06 2.83234e-09 2.718 ||| 0-1 ||| 21 668016 +a ||| the following partners : ||| 1 0.0720432 1.49697e-06 5.21809e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| the following partners ||| 1 0.0720432 1.49697e-06 1.54931e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| the following points ||| 0.00534759 0.0720432 1.49697e-06 7.86155e-09 2.718 ||| 0-1 ||| 187 668016 +a ||| the following to ||| 0.125 0.150927 2.99394e-06 2.12003e-05 2.718 ||| 0-1 0-2 ||| 16 668016 +a ||| the following ways , and on a ||| 1 0.0782999 1.49697e-06 1.89979e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| the following ways , and on ||| 1 0.0782999 1.49697e-06 4.28598e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| the following ||| 0.00187116 0.0720432 1.04788e-05 6.052e-05 2.718 ||| 0-1 ||| 3741 668016 +a ||| the forced ||| 0.125 0.0684932 1.49697e-06 1.70915e-05 2.718 ||| 0-1 ||| 8 668016 +a ||| the foreseeable future , for ||| 0.333333 0.0683377 1.49697e-06 3.36769e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| the forest in ||| 0.25 0.0587624 1.49697e-06 3.83612e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| the form of ||| 0.000539665 0.0188479 1.49697e-06 8.26587e-07 2.718 ||| 0-2 ||| 1853 668016 +a ||| the foundations for ||| 0.00280899 0.0683377 1.49697e-06 2.12646e-08 2.718 ||| 0-2 ||| 356 668016 +a ||| the framework conditions for ||| 0.0277778 0.0683377 1.49697e-06 3.21966e-11 2.718 ||| 0-3 ||| 36 668016 +a ||| the framework of ||| 0.000292912 0.0188479 1.49697e-06 2.16271e-07 2.718 ||| 0-2 ||| 3414 668016 +a ||| the freedom to ||| 0.0023753 0.229811 1.49697e-06 1.83443e-06 2.718 ||| 0-2 ||| 421 668016 +a ||| the full implications of ||| 0.0769231 0.0188479 1.49697e-06 6.96416e-12 2.718 ||| 0-3 ||| 13 668016 +a ||| the funding levels reached ||| 1 0.14487 1.49697e-06 5.32665e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| the future . in the ||| 1 0.0587624 1.49697e-06 1.82178e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| the future . in ||| 1 0.0587624 1.49697e-06 2.96747e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| the future in the ||| 0.0384615 0.0587624 1.49697e-06 6.01446e-08 2.718 ||| 0-2 ||| 26 668016 +a ||| the future in ||| 0.00806452 0.0587624 1.49697e-06 9.79685e-07 2.718 ||| 0-2 ||| 124 668016 +a ||| the future of ||| 0.000517598 0.00965665 2.99394e-06 1.20394e-08 2.718 ||| 0-0 0-2 ||| 3864 668016 +a ||| the future too , for ||| 0.333333 0.0683377 1.49697e-06 9.75196e-11 2.718 ||| 0-4 ||| 3 668016 +a ||| the general run of ||| 1 0.0188479 1.49697e-06 3.37288e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| the governments - to disagree . ||| 1 0.229811 1.49697e-06 6.63878e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| the governments - to disagree ||| 1 0.229811 1.49697e-06 2.19174e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| the governments - to ||| 1 0.229811 1.49697e-06 2.77435e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| the governments of the ||| 0.00172414 0.0188479 1.49697e-06 3.81262e-09 2.718 ||| 0-2 ||| 580 668016 +a ||| the governments of ||| 0.00202224 0.0188479 2.99394e-06 6.2103e-08 2.718 ||| 0-2 ||| 989 668016 +a ||| the grass roots to ||| 0.5 0.229811 1.49697e-06 1.33163e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| the greatest desire to ||| 1 0.229811 1.49697e-06 1.85189e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| the green light to ||| 0.0138889 0.229811 1.49697e-06 6.20455e-11 2.718 ||| 0-3 ||| 72 668016 +a ||| the ground and in ||| 0.125 0.0587624 1.49697e-06 5.40572e-09 2.718 ||| 0-3 ||| 8 668016 +a ||| the ground in ||| 0.0106383 0.0587624 1.49697e-06 4.31563e-07 2.718 ||| 0-2 ||| 94 668016 +a ||| the ground out from ||| 1 0.0435582 1.49697e-06 1.98062e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| the groups are : the efficiency of ||| 1 0.0188479 1.49697e-06 5.2798e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| the guests of ||| 0.333333 0.0188479 1.49697e-06 7.80827e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| the guilty men , the ||| 1 0.0004654 1.49697e-06 1.01091e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| the guilty men , ||| 1 0.0004654 1.49697e-06 1.64665e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| the guilty men ||| 1 0.0004654 1.49697e-06 1.38078e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| the guilty ||| 0.0151515 0.0004654 1.49697e-06 3.2489e-08 2.718 ||| 0-0 ||| 66 668016 +a ||| the hand of ||| 0.0307692 0.0188479 2.99394e-06 7.20177e-07 2.718 ||| 0-2 ||| 65 668016 +a ||| the hands of ||| 0.00476758 0.0188479 5.98788e-06 1.8304e-07 2.718 ||| 0-2 ||| 839 668016 +a ||| the heart of ||| 0.000744048 0.0188479 1.49697e-06 1.4636e-07 2.718 ||| 0-2 ||| 1344 668016 +a ||| the help of ||| 0.0040404 0.139412 2.99394e-06 1.19436e-05 2.718 ||| 0-1 0-2 ||| 495 668016 +a ||| the higher the ||| 0.0333333 0.0004654 1.49697e-06 3.96089e-09 2.718 ||| 0-0 ||| 30 668016 +a ||| the higher ||| 0.00787402 0.0004654 1.49697e-06 6.45183e-08 2.718 ||| 0-0 ||| 127 668016 +a ||| the highest standards for ||| 0.25 0.0683377 1.49697e-06 3.63806e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| the honourable members ||| 0.04 0.00053 1.49697e-06 2.05098e-11 2.718 ||| 0-2 ||| 25 668016 +a ||| the hope that ||| 0.00160772 0.0008521 1.49697e-06 7.34721e-09 2.718 ||| 0-2 ||| 622 668016 +a ||| the house that within ||| 1 0.0123496 1.49697e-06 1.10953e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| the hungry to ||| 1 0.229811 1.49697e-06 1.5054e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| the idea of ||| 0.000940144 0.0188479 4.49091e-06 4.0712e-07 2.718 ||| 0-2 ||| 3191 668016 +a ||| the ideal solution , in other words ||| 1 0.0587624 1.49697e-06 8.23221e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| the ideal solution , in other ||| 1 0.0587624 1.49697e-06 3.64257e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| the ideal solution , in ||| 1 0.0587624 1.49697e-06 2.81171e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| the identity of ||| 0.0078125 0.0188479 1.49697e-06 3.66807e-08 2.718 ||| 0-2 ||| 128 668016 +a ||| the implementation of ||| 0.000201694 0.0188479 1.49697e-06 1.41094e-07 2.718 ||| 0-2 ||| 4958 668016 +a ||| the inclusion of ||| 0.000865801 0.0188479 1.49697e-06 3.5228e-08 2.718 ||| 0-2 ||| 1155 668016 +a ||| the increase in ||| 0.000981354 0.0587624 1.49697e-06 4.76564e-07 2.718 ||| 0-2 ||| 1019 668016 +a ||| the industry to ||| 0.00925926 0.229811 1.49697e-06 2.8409e-06 2.718 ||| 0-2 ||| 108 668016 +a ||| the initiatives in ||| 0.0909091 0.0587624 1.49697e-06 1.16928e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| the institution by ||| 1 0.0337966 1.49697e-06 1.37893e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| the institution of ||| 0.00675676 0.0188479 1.49697e-06 4.95735e-08 2.718 ||| 0-2 ||| 148 668016 +a ||| the insult to ||| 0.2 0.229811 1.49697e-06 8.60226e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| the intention to ||| 0.00641026 0.229811 1.49697e-06 1.21507e-06 2.718 ||| 0-2 ||| 156 668016 +a ||| the interest of ||| 0.00323102 0.0188479 2.99394e-06 2.03923e-07 2.718 ||| 0-2 ||| 619 668016 +a ||| the interests of all ||| 0.00429185 0.0188479 1.49697e-06 1.17642e-09 2.718 ||| 0-2 ||| 233 668016 +a ||| the interests of ||| 0.00182445 0.0188479 1.34727e-05 2.48957e-07 2.718 ||| 0-2 ||| 4933 668016 +a ||| the introduction of an exchange ||| 1 0.0188479 1.49697e-06 1.17373e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| the introduction of an ||| 0.00769231 0.0188479 1.49697e-06 4.23729e-10 2.718 ||| 0-2 ||| 130 668016 +a ||| the introduction of ||| 0.000329707 0.0188479 1.49697e-06 9.53336e-08 2.718 ||| 0-2 ||| 3033 668016 +a ||| the investigation into the ||| 0.0357143 0.107578 1.49697e-06 4.21245e-10 2.718 ||| 0-2 ||| 28 668016 +a ||| the investigation into ||| 0.025 0.107578 1.49697e-06 6.86158e-09 2.718 ||| 0-2 ||| 40 668016 +a ||| the involvement and cooperation of ||| 1 0.0188479 1.49697e-06 6.26363e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| the involvement of ||| 0.00113895 0.0188479 1.49697e-06 5.42947e-08 2.718 ||| 0-2 ||| 878 668016 +a ||| the involvement ||| 0.000932836 0.0004654 1.49697e-06 4.58217e-08 2.718 ||| 0-0 ||| 1072 668016 +a ||| the islands in ||| 0.125 0.0587624 1.49697e-06 2.91397e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| the issue in ||| 0.00666667 0.0587624 1.49697e-06 2.79151e-06 2.718 ||| 0-2 ||| 150 668016 +a ||| the issue of ||| 0.000751974 0.0188479 8.98182e-06 1.37426e-06 2.718 ||| 0-2 ||| 7979 668016 +a ||| the issue with ||| 0.0138889 0.0571592 1.49697e-06 7.75676e-07 2.718 ||| 0-2 ||| 72 668016 +a ||| the job of ||| 0.00497512 0.0188479 1.49697e-06 1.4182e-07 2.718 ||| 0-2 ||| 201 668016 +a ||| the knife in ||| 0.5 0.0587624 1.49697e-06 9.22143e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| the labels about ||| 1 0.0526361 1.49697e-06 1.79436e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| the lack of access to affordable essential ||| 1 0.229811 1.49697e-06 2.75092e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| the lack of access to affordable ||| 1 0.229811 1.49697e-06 3.05658e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| the lack of access to ||| 0.05 0.229811 1.49697e-06 1.22263e-11 2.718 ||| 0-4 ||| 20 668016 +a ||| the landfill or to reinforce the ||| 1 0.229811 1.49697e-06 1.75098e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| the landfill or to reinforce ||| 1 0.229811 1.49697e-06 2.85214e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| the landfill or to ||| 1 0.229811 1.49697e-06 7.13035e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| the last year in ||| 0.0666667 0.0587624 1.49697e-06 2.00913e-10 2.718 ||| 0-3 ||| 15 668016 +a ||| the latest in ||| 0.0232558 0.0587624 1.49697e-06 5.97549e-08 2.718 ||| 0-2 ||| 43 668016 +a ||| the latter , in ||| 0.125 0.0587624 1.49697e-06 4.22724e-08 2.718 ||| 0-3 ||| 8 668016 +a ||| the latter can replace ||| 1 0.0073363 1.49697e-06 2.08817e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| the latter to ||| 0.0333333 0.229811 1.49697e-06 2.06669e-06 2.718 ||| 0-2 ||| 30 668016 +a ||| the leadership of ||| 0.00446429 0.0188479 1.49697e-06 3.01436e-08 2.718 ||| 0-2 ||| 224 668016 +a ||| the legal instruments available to it ||| 1 0.229811 1.49697e-06 4.08348e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| the legal instruments available to ||| 0.333333 0.229811 1.49697e-06 2.29626e-14 2.718 ||| 0-4 ||| 3 668016 +a ||| the legislative process to ||| 0.0833333 0.229811 1.49697e-06 2.44551e-10 2.718 ||| 0-3 ||| 12 668016 +a ||| the letter of ||| 0.00657895 0.0188479 1.49697e-06 4.70312e-08 2.718 ||| 0-2 ||| 152 668016 +a ||| the level of ||| 0.000754432 0.0188479 2.99394e-06 1.5533e-06 2.718 ||| 0-2 ||| 2651 668016 +a ||| the lever in ||| 1 0.0587624 1.49697e-06 5.164e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| the liberty of ||| 0.00917431 0.0188479 1.49697e-06 1.83404e-08 2.718 ||| 0-2 ||| 109 668016 +a ||| the lie to ||| 0.0714286 0.229811 1.49697e-06 8.12913e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| the life of the Commission to ||| 0.5 0.229811 1.49697e-06 6.35147e-12 2.718 ||| 0-5 ||| 2 668016 +a ||| the light at ||| 0.25 0.204175 1.49697e-06 3.63154e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| the light of ||| 0.000910332 0.0188479 2.99394e-06 3.15599e-07 2.718 ||| 0-2 ||| 2197 668016 +a ||| the likes of ||| 0.0238095 0.0188479 1.49697e-06 2.16089e-08 2.718 ||| 0-2 ||| 42 668016 +a ||| the lines of ||| 0.00819672 0.0188479 2.99394e-06 1.65245e-07 2.718 ||| 0-2 ||| 244 668016 +a ||| the lives of ||| 0.00118624 0.0188479 1.49697e-06 9.35177e-08 2.718 ||| 0-2 ||| 843 668016 +a ||| the lives ||| 0.00101626 0.0004654 1.49697e-06 7.89237e-08 2.718 ||| 0-0 ||| 984 668016 +a ||| the main , to ||| 0.333333 0.229811 1.49697e-06 2.55696e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| the majority of ||| 0.000322269 0.0188479 1.49697e-06 7.31799e-08 2.718 ||| 0-2 ||| 3103 668016 +a ||| the man in the ||| 0.0227273 0.0587624 1.49697e-06 1.44247e-08 2.718 ||| 0-2 ||| 44 668016 +a ||| the man in ||| 0.0392157 0.0587624 2.99394e-06 2.34962e-07 2.718 ||| 0-2 ||| 51 668016 +a ||| the management of the ||| 0.00268817 0.0188479 1.49697e-06 4.89397e-09 2.718 ||| 0-2 ||| 372 668016 +a ||| the management of ||| 0.000739098 0.0188479 1.49697e-06 7.9717e-08 2.718 ||| 0-2 ||| 1353 668016 +a ||| the mandate from ||| 0.142857 0.0435582 1.49697e-06 9.85542e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| the manner in which they adopt ||| 1 0.0587624 1.49697e-06 2.07405e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| the manner in which they ||| 0.2 0.0587624 1.49697e-06 1.99428e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| the manner in which ||| 0.00531915 0.0587624 1.49697e-06 6.10993e-09 2.718 ||| 0-2 ||| 188 668016 +a ||| the manner in ||| 0.005 0.0587624 1.49697e-06 7.19272e-07 2.718 ||| 0-2 ||| 200 668016 +a ||| the margins of ||| 0.02 0.0188479 1.49697e-06 1.05321e-08 2.718 ||| 0-2 ||| 50 668016 +a ||| the mark in ||| 0.0625 0.0587624 1.49697e-06 2.0029e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| the market , to ||| 0.1 0.229811 1.49697e-06 5.79611e-07 2.718 ||| 0-3 ||| 10 668016 +a ||| the market in the ||| 0.0227273 0.0587624 1.49697e-06 5.11773e-08 2.718 ||| 0-2 ||| 44 668016 +a ||| the market in ||| 0.00284091 0.0587624 1.49697e-06 8.33617e-07 2.718 ||| 0-2 ||| 352 668016 +a ||| the market of ||| 0.0133333 0.0188479 1.49697e-06 4.10388e-07 2.718 ||| 0-2 ||| 75 668016 +a ||| the market on ||| 0.0588235 0.0782999 1.49697e-06 5.26339e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| the market that will touch ||| 1 0.0561595 1.49697e-06 7.23145e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| the market that will ||| 0.5 0.0561595 1.49697e-06 3.28702e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| the matter at ||| 0.0208333 0.204175 1.49697e-06 2.16785e-06 2.718 ||| 0-2 ||| 48 668016 +a ||| the matter before ||| 0.0285714 0.0203282 1.49697e-06 3.37769e-08 2.718 ||| 0-2 ||| 35 668016 +a ||| the matter of ||| 0.000984252 0.0188479 1.49697e-06 1.88397e-06 2.718 ||| 0-2 ||| 1016 668016 +a ||| the matter to ||| 0.0397351 0.229811 8.98182e-06 2.23121e-05 2.718 ||| 0-2 ||| 151 668016 +a ||| the meaning of ||| 0.00380228 0.0188479 1.49697e-06 5.55658e-08 2.718 ||| 0-2 ||| 263 668016 +a ||| the means for ||| 0.011236 0.0683377 1.49697e-06 1.43355e-06 2.718 ||| 0-2 ||| 89 668016 +a ||| the means to ||| 0.0015674 0.229811 1.49697e-06 1.36281e-05 2.718 ||| 0-2 ||| 638 668016 +a ||| the medium of ||| 0.142857 0.0762771 1.49697e-06 3.32082e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| the medium ||| 0.00182815 0.0762771 1.49697e-06 6.10848e-06 2.718 ||| 0-1 ||| 547 668016 +a ||| the members of ||| 0.00129534 0.0188479 2.99394e-06 2.67842e-07 2.718 ||| 0-2 ||| 1544 668016 +a ||| the mercy of ||| 0.00689655 0.0188479 1.49697e-06 6.53716e-09 2.718 ||| 0-2 ||| 145 668016 +a ||| the merits of ||| 0.00729927 0.0188479 1.49697e-06 1.70692e-08 2.718 ||| 0-2 ||| 137 668016 +a ||| the message across to ||| 0.166667 0.229811 1.49697e-06 1.06352e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| the mills of ||| 0.5 0.0188479 1.49697e-06 1.99747e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| the minds of ||| 0.00813008 0.0188479 1.49697e-06 8.69805e-08 2.718 ||| 0-2 ||| 123 668016 +a ||| the minister responsible for ||| 0.1 0.0683377 1.49697e-06 3.14504e-12 2.718 ||| 0-3 ||| 10 668016 +a ||| the moment , be to ||| 0.333333 0.229811 1.49697e-06 8.39873e-09 2.718 ||| 0-4 ||| 3 668016 +a ||| the moment to ||| 0.0147059 0.229811 1.49697e-06 3.88607e-06 2.718 ||| 0-2 ||| 68 668016 +a ||| the money on to ||| 1 0.154056 1.49697e-06 1.33307e-07 2.718 ||| 0-2 0-3 ||| 1 668016 +a ||| the month in the discussion on ||| 1 0.0782999 1.49697e-06 3.4374e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| the month on ||| 0.5 0.0782999 1.49697e-06 3.02762e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| the more reason to ||| 0.0384615 0.229811 1.49697e-06 1.14874e-08 2.718 ||| 0-3 ||| 26 668016 +a ||| the more so at ||| 0.333333 0.204175 1.49697e-06 1.08305e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| the more to ||| 0.333333 0.229811 1.49697e-06 4.91124e-05 2.718 ||| 0-2 ||| 3 668016 +a ||| the more ||| 0.000812018 0.0004654 2.99394e-06 3.49977e-06 2.718 ||| 0-0 ||| 2463 668016 +a ||| the most important issue for the Group ||| 1 0.0683377 1.49697e-06 5.66851e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| the most important issue for the ||| 0.166667 0.0683377 1.49697e-06 1.74255e-14 2.718 ||| 0-4 ||| 6 668016 +a ||| the most important issue for ||| 0.1 0.0683377 1.49697e-06 2.83841e-13 2.718 ||| 0-4 ||| 10 668016 +a ||| the most significant shortcomings in ||| 1 0.0587624 1.49697e-06 9.91721e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| the movement of ||| 0.00217865 0.0188479 1.49697e-06 7.9717e-08 2.718 ||| 0-2 ||| 459 668016 +a ||| the name of ||| 0.000803859 0.0188479 1.49697e-06 1.58708e-07 2.718 ||| 0-2 ||| 1244 668016 +a ||| the need for ||| 0.000573148 0.0683377 5.98788e-06 2.07421e-06 2.718 ||| 0-2 ||| 6979 668016 +a ||| the need to ||| 0.000532978 0.229811 5.98788e-06 1.97185e-05 2.718 ||| 0-2 ||| 7505 668016 +a ||| the needs of ||| 0.0019305 0.0188479 4.49091e-06 3.60088e-07 2.718 ||| 0-2 ||| 1554 668016 +a ||| the negative trend in ||| 0.25 0.0587624 1.49697e-06 1.45868e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| the negotiation of the ||| 0.016129 0.0188479 1.49697e-06 7.58064e-10 2.718 ||| 0-2 ||| 62 668016 +a ||| the negotiation of ||| 0.00617284 0.0188479 1.49697e-06 1.2348e-08 2.718 ||| 0-2 ||| 162 668016 +a ||| the next item is the ||| 0.000938967 0.0004654 1.49697e-06 1.15138e-14 2.718 ||| 0-0 ||| 1065 668016 +a ||| the next item is ||| 0.000253229 0.0004654 1.49697e-06 1.87546e-13 2.718 ||| 0-0 ||| 3949 668016 +a ||| the next item ||| 0.000608643 0.0004654 1.49697e-06 5.98401e-12 2.718 ||| 0-0 ||| 1643 668016 +a ||| the next ||| 0.000202214 0.0076353 5.98788e-06 1.11488e-05 2.718 ||| 0-1 ||| 19781 668016 +a ||| the number of ||| 0.00088476 0.0188479 5.98788e-06 8.98496e-07 2.718 ||| 0-2 ||| 4521 668016 +a ||| the numbers ||| 0.00289017 0.0004654 1.49697e-06 7.49393e-08 2.718 ||| 0-0 ||| 346 668016 +a ||| the objective being to ||| 0.0909091 0.229811 1.49697e-06 4.09433e-09 2.718 ||| 0-3 ||| 11 668016 +a ||| the objective of ||| 0.00129955 0.0188479 2.99394e-06 1.21482e-07 2.718 ||| 0-2 ||| 1539 668016 +a ||| the obligations of ||| 0.00763359 0.0188479 1.49697e-06 2.41512e-08 2.718 ||| 0-2 ||| 131 668016 +a ||| the offer of ||| 0.0227273 0.00965665 1.49697e-06 5.18564e-09 2.718 ||| 0-0 0-2 ||| 44 668016 +a ||| the one at ||| 0.0833333 0.204175 1.49697e-06 8.70901e-06 2.718 ||| 0-2 ||| 12 668016 +a ||| the one hand , to ||| 0.0131579 0.229811 1.49697e-06 4.23944e-09 2.718 ||| 0-4 ||| 76 668016 +a ||| the one hand ||| 0.000308166 0.0004654 1.49697e-06 2.53327e-09 2.718 ||| 0-0 ||| 3245 668016 +a ||| the one ||| 0.000198255 0.0004654 1.49697e-06 6.38746e-06 2.718 ||| 0-0 ||| 5044 668016 +a ||| the ones at ||| 0.5 0.204175 1.49697e-06 4.61778e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| the only ||| 0.000134626 0.0004654 1.49697e-06 1.70583e-06 2.718 ||| 0-0 ||| 7428 668016 +a ||| the opinion of the Committee on Industry ||| 0.0163934 0.0188479 1.49697e-06 1.70391e-19 2.718 ||| 0-2 ||| 61 668016 +a ||| the opinion of the Committee on ||| 0.00101112 0.0188479 1.49697e-06 2.7933e-14 2.718 ||| 0-2 ||| 989 668016 +a ||| the opinion of the Committee ||| 0.00094518 0.0188479 1.49697e-06 4.17471e-12 2.718 ||| 0-2 ||| 1058 668016 +a ||| the opinion of the ||| 0.000615006 0.0188479 1.49697e-06 2.73572e-08 2.718 ||| 0-2 ||| 1626 668016 +a ||| the opinion of ||| 0.00170551 0.0188479 4.49091e-06 4.45616e-07 2.718 ||| 0-2 ||| 1759 668016 +a ||| the opinions of ||| 0.00369004 0.0188479 1.49697e-06 3.99493e-08 2.718 ||| 0-2 ||| 271 668016 +a ||| the opportunity to do so ||| 0.0163934 0.229811 1.49697e-06 3.01659e-11 2.718 ||| 0-2 ||| 61 668016 +a ||| the opportunity to do ||| 0.0344828 0.229811 1.49697e-06 1.32907e-08 2.718 ||| 0-2 ||| 29 668016 +a ||| the opportunity to establish ||| 0.047619 0.229811 1.49697e-06 2.95194e-10 2.718 ||| 0-2 ||| 21 668016 +a ||| the opportunity to pass ||| 0.142857 0.229811 1.49697e-06 2.21299e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| the opportunity to ||| 0.00195791 0.229811 1.19758e-05 3.86887e-06 2.718 ||| 0-2 ||| 4086 668016 +a ||| the opposite of ||| 0.00492611 0.0188479 1.49697e-06 3.84966e-08 2.718 ||| 0-2 ||| 203 668016 +a ||| the opposition to ||| 0.0175439 0.229811 1.49697e-06 5.50545e-07 2.718 ||| 0-2 ||| 57 668016 +a ||| the other at ||| 0.111111 0.204175 1.49697e-06 2.70694e-06 2.718 ||| 0-2 ||| 9 668016 +a ||| the other hand , to ||| 0.0263158 0.229811 1.49697e-06 1.3177e-09 2.718 ||| 0-4 ||| 38 668016 +a ||| the other on ||| 0.0178571 0.0782999 1.49697e-06 3.01713e-06 2.718 ||| 0-2 ||| 56 668016 +a ||| the other side , attacking ||| 1 0.243421 1.49697e-06 2.10607e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| the outcome of ||| 0.000640205 0.0188479 1.49697e-06 9.27913e-08 2.718 ||| 0-2 ||| 1562 668016 +a ||| the over-50s are often involved . ||| 1 0.288159 1.49697e-06 2.35098e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| the over-50s are often involved ||| 1 0.288159 1.49697e-06 7.76158e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| the over-50s are often ||| 1 0.288159 1.49697e-06 2.24453e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| the part of ||| 0.00240038 0.0188479 7.48485e-06 2.16489e-06 2.718 ||| 0-2 ||| 2083 668016 +a ||| the participants secure ||| 1 0.0004654 1.49697e-06 6.1018e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| the participants ||| 0.00381679 0.0004654 1.49697e-06 1.21068e-08 2.718 ||| 0-0 ||| 262 668016 +a ||| the past to ||| 0.0181818 0.229811 1.49697e-06 2.75487e-06 2.718 ||| 0-2 ||| 55 668016 +a ||| the path of ||| 0.00255754 0.0188479 1.49697e-06 6.91849e-08 2.718 ||| 0-2 ||| 391 668016 +a ||| the patients ||| 0.00934579 0.0025755 1.49697e-06 6.13918e-07 2.718 ||| 0-1 ||| 107 668016 +a ||| the payment at all to ||| 1 0.229811 1.49697e-06 1.07235e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| the people in a ||| 0.0909091 0.0296724 1.49697e-06 1.37205e-09 2.718 ||| 0-2 0-3 ||| 11 668016 +a ||| the people in my country , ||| 1 0.0587624 1.49697e-06 8.96139e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| the people in my country ||| 0.5 0.0587624 1.49697e-06 7.5145e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| the people in my ||| 0.0588235 0.0587624 1.49697e-06 2.08794e-09 2.718 ||| 0-2 ||| 17 668016 +a ||| the people in ||| 0.00530973 0.0587624 4.49091e-06 3.24668e-06 2.718 ||| 0-2 ||| 565 668016 +a ||| the people of Iraq ||| 0.0196078 0.0188479 1.49697e-06 2.0139e-11 2.718 ||| 0-2 ||| 51 668016 +a ||| the people of ||| 0.0010644 0.0188479 5.98788e-06 1.59834e-06 2.718 ||| 0-2 ||| 3758 668016 +a ||| the people were seen as subjects ||| 0.5 0.0243476 1.49697e-06 4.25434e-18 2.718 ||| 0-4 ||| 2 668016 +a ||| the people were seen as ||| 0.5 0.0243476 1.49697e-06 1.78754e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| the people ||| 0.000426294 0.0079526 7.48485e-06 4.03467e-05 2.718 ||| 0-1 ||| 11729 668016 +a ||| the performing of ||| 0.0454545 0.0188479 1.49697e-06 1.43454e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| the period of ||| 0.00238663 0.0188479 1.49697e-06 3.16871e-07 2.718 ||| 0-2 ||| 419 668016 +a ||| the persons ||| 0.00641026 0.0004654 1.49697e-06 7.89237e-08 2.718 ||| 0-0 ||| 156 668016 +a ||| the pitch in ||| 1 0.0587624 1.49697e-06 1.06969e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| the place of the ||| 0.0192308 0.0188479 1.49697e-06 1.67777e-07 2.718 ||| 0-2 ||| 52 668016 +a ||| the place of ||| 0.032 0.0188479 1.19758e-05 2.7329e-06 2.718 ||| 0-2 ||| 250 668016 +a ||| the point about ||| 0.016129 0.0526361 1.49697e-06 2.70638e-07 2.718 ||| 0-2 ||| 62 668016 +a ||| the point of ||| 0.000618429 0.0188479 1.49697e-06 1.58853e-06 2.718 ||| 0-2 ||| 1617 668016 +a ||| the point ||| 0.000487329 0.0004654 2.99394e-06 1.34063e-06 2.718 ||| 0-0 ||| 4104 668016 +a ||| the political centre in such a ||| 0.333333 0.0004654 1.49697e-06 1.71826e-17 2.718 ||| 0-0 ||| 3 668016 +a ||| the political centre in such ||| 0.333333 0.0004654 1.49697e-06 3.87644e-16 2.718 ||| 0-0 ||| 3 668016 +a ||| the political centre in ||| 0.333333 0.0004654 1.49697e-06 1.87367e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| the political centre ||| 0.125 0.0004654 1.49697e-06 8.75364e-12 2.718 ||| 0-0 ||| 8 668016 +a ||| the political problem has not yet been ||| 1 0.0004654 1.49697e-06 9.54924e-22 2.718 ||| 0-0 ||| 1 668016 +a ||| the political problem has not yet ||| 1 0.0004654 1.49697e-06 2.85974e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| the political problem has not ||| 1 0.0004654 1.49697e-06 1.08119e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| the political problem has ||| 0.333333 0.0004654 1.49697e-06 3.16683e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| the political problem ||| 0.025 0.0004654 1.49697e-06 6.15217e-11 2.718 ||| 0-0 ||| 40 668016 +a ||| the political ||| 0.00277008 0.0004654 2.99394e-06 2.73551e-07 2.718 ||| 0-0 ||| 722 668016 +a ||| the poorest beneficiaries in ||| 0.25 0.0587624 1.49697e-06 8.97061e-14 2.718 ||| 0-3 ||| 4 668016 +a ||| the position of ||| 0.00180072 0.0188479 4.49091e-06 5.97968e-07 2.718 ||| 0-2 ||| 1666 668016 +a ||| the position taken by the rapporteur in ||| 1 0.0587624 1.49697e-06 2.58002e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| the positions of ||| 0.00406504 0.0188479 1.49697e-06 6.13767e-08 2.718 ||| 0-2 ||| 246 668016 +a ||| the positive outcome has to do with ||| 1 0.229811 1.49697e-06 1.13079e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| the positive outcome has to do ||| 1 0.229811 1.49697e-06 1.76838e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| the positive outcome has to ||| 1 0.229811 1.49697e-06 5.14768e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| the possibility of ||| 0.000701426 0.0188479 4.49091e-06 1.55439e-07 2.718 ||| 0-2 ||| 4277 668016 +a ||| the possibility to ||| 0.00558659 0.229811 1.49697e-06 1.84088e-06 2.718 ||| 0-2 ||| 179 668016 +a ||| the possible ||| 0.000786163 0.0004654 1.49697e-06 1.22922e-06 2.718 ||| 0-0 ||| 1272 668016 +a ||| the post to ||| 1 0.229811 1.49697e-06 5.26888e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| the potential prospects for ||| 0.25 0.0683377 1.49697e-06 1.46794e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| the power to ||| 0.00210526 0.229811 1.49697e-06 3.21079e-06 2.718 ||| 0-2 ||| 475 668016 +a ||| the practice of giving a ||| 0.5 0.136521 1.49697e-06 1.57267e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| the practice of giving ||| 0.333333 0.136521 1.49697e-06 3.54798e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| the preparations proceeded practically and effectively : ||| 1 0.0007376 1.49697e-06 5.73707e-28 2.718 ||| 0-6 ||| 1 668016 +a ||| the presence of ||| 0.00200803 0.0188479 2.99394e-06 6.99113e-08 2.718 ||| 0-2 ||| 996 668016 +a ||| the presentation by ||| 0.0196078 0.0337966 1.49697e-06 7.9806e-09 2.718 ||| 0-2 ||| 51 668016 +a ||| the principles of ||| 0.000528262 0.0188479 1.49697e-06 7.31799e-08 2.718 ||| 0-2 ||| 1893 668016 +a ||| the problem is ||| 0.000803213 0.0004654 1.49697e-06 1.0802e-08 2.718 ||| 0-0 ||| 1245 668016 +a ||| the problem of ||| 0.000309215 0.0188479 1.49697e-06 4.08391e-07 2.718 ||| 0-2 ||| 3234 668016 +a ||| the problem with the internal market , ||| 0.111111 0.0571592 1.49697e-06 1.76971e-17 2.718 ||| 0-2 ||| 9 668016 +a ||| the problem with the internal market ||| 0.111111 0.0571592 1.49697e-06 1.48397e-16 2.718 ||| 0-2 ||| 9 668016 +a ||| the problem with the internal ||| 0.111111 0.0571592 1.49697e-06 6.56625e-13 2.718 ||| 0-2 ||| 9 668016 +a ||| the problem with the ||| 0.0126582 0.0571592 1.49697e-06 1.41514e-08 2.718 ||| 0-2 ||| 79 668016 +a ||| the problem with ||| 0.00429185 0.0571592 1.49697e-06 2.3051e-07 2.718 ||| 0-2 ||| 233 668016 +a ||| the problem ||| 0.000104297 0.0004654 1.49697e-06 3.44659e-07 2.718 ||| 0-0 ||| 9588 668016 +a ||| the process by ||| 0.0212766 0.0337966 1.49697e-06 2.15931e-07 2.718 ||| 0-2 ||| 47 668016 +a ||| the process of ||| 0.00100942 0.0188479 4.49091e-06 7.76288e-07 2.718 ||| 0-2 ||| 2972 668016 +a ||| the process to ||| 0.0138889 0.229811 1.49697e-06 9.19366e-06 2.718 ||| 0-2 ||| 72 668016 +a ||| the processes of ||| 0.0113636 0.0188479 1.49697e-06 2.94172e-08 2.718 ||| 0-2 ||| 88 668016 +a ||| the product of ||| 0.00543478 0.0188479 1.49697e-06 1.10405e-07 2.718 ||| 0-2 ||| 184 668016 +a ||| the programme to ||| 0.0178571 0.229811 2.99394e-06 2.73982e-06 2.718 ||| 0-2 ||| 112 668016 +a ||| the programmes of Palestinian organisations that ||| 1 0.0008521 1.49697e-06 5.42983e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| the promotion of ||| 0.000473261 0.0188479 1.49697e-06 4.37626e-08 2.718 ||| 0-2 ||| 2113 668016 +a ||| the property of ||| 0.0238095 0.0188479 1.49697e-06 3.46833e-08 2.718 ||| 0-2 ||| 42 668016 +a ||| the prospect of ||| 0.00103306 0.0188479 1.49697e-06 4.37626e-08 2.718 ||| 0-2 ||| 968 668016 +a ||| the protocol on ||| 0.0126582 0.0782999 1.49697e-06 1.76999e-08 2.718 ||| 0-2 ||| 79 668016 +a ||| the provision on ||| 0.0263158 0.0782999 1.49697e-06 2.76677e-07 2.718 ||| 0-2 ||| 38 668016 +a ||| the provision ||| 0.000628931 0.0004654 1.49697e-06 1.82061e-07 2.718 ||| 0-0 ||| 1590 668016 +a ||| the provisions on the ||| 0.0204082 0.0782999 1.49697e-06 1.12666e-08 2.718 ||| 0-2 ||| 49 668016 +a ||| the provisions on ||| 0.00406504 0.0782999 1.49697e-06 1.8352e-07 2.718 ||| 0-2 ||| 246 668016 +a ||| the public in ||| 0.00714286 0.0587624 1.49697e-06 5.96073e-07 2.718 ||| 0-2 ||| 140 668016 +a ||| the public tend to perceive competition policy ||| 1 0.229811 1.49697e-06 5.36898e-24 2.718 ||| 0-3 ||| 1 668016 +a ||| the public tend to perceive competition ||| 1 0.229811 1.49697e-06 1.36372e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| the public tend to perceive ||| 1 0.229811 1.49697e-06 3.75681e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| the public tend to ||| 1 0.229811 1.49697e-06 7.99322e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| the purpose of ||| 0.000671592 0.0188479 1.49697e-06 3.26676e-07 2.718 ||| 0-2 ||| 1489 668016 +a ||| the purposes for ||| 0.0263158 0.0683377 1.49697e-06 2.73499e-07 2.718 ||| 0-2 ||| 38 668016 +a ||| the purposes of ||| 0.00276243 0.0188479 1.49697e-06 2.1954e-07 2.718 ||| 0-2 ||| 362 668016 +a ||| the pursuit of ||| 0.00307692 0.0188479 1.49697e-06 4.50338e-08 2.718 ||| 0-2 ||| 325 668016 +a ||| the question from ||| 0.0169492 0.0435582 1.49697e-06 3.65623e-07 2.718 ||| 0-2 ||| 59 668016 +a ||| the question in ||| 0.0232558 0.0587624 1.49697e-06 3.05156e-06 2.718 ||| 0-2 ||| 43 668016 +a ||| the question of bail arrangements and many ||| 1 0.0188479 1.49697e-06 1.13438e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| the question of bail arrangements and ||| 1 0.0188479 1.49697e-06 3.30433e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| the question of bail arrangements ||| 1 0.0188479 1.49697e-06 2.638e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| the question of bail ||| 1 0.0188479 1.49697e-06 6.0091e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| the question of ||| 0.000865801 0.0188479 7.48485e-06 1.50228e-06 2.718 ||| 0-2 ||| 5775 668016 +a ||| the question to ||| 0.0232558 0.229811 2.99394e-06 1.77916e-05 2.718 ||| 0-2 ||| 86 668016 +a ||| the question ||| 0.00017337 0.0004654 2.99394e-06 1.26784e-06 2.718 ||| 0-0 ||| 11536 668016 +a ||| the questions of ||| 0.00775194 0.0188479 1.49697e-06 1.60705e-07 2.718 ||| 0-2 ||| 129 668016 +a ||| the rank of ||| 0.0833333 0.0188479 1.49697e-06 3.26858e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| the rapporteur hits the nail ||| 0.5 0.203046 1.49697e-06 5.76873e-17 2.718 ||| 0-2 ||| 2 668016 +a ||| the rapporteur hits the ||| 0.5 0.203046 1.49697e-06 9.94608e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| the rapporteur hits ||| 0.5 0.203046 1.49697e-06 1.6201e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| the rapporteur in her report ||| 0.125 0.0587624 1.49697e-06 2.97443e-14 2.718 ||| 0-2 ||| 8 668016 +a ||| the rapporteur in her ||| 0.0277778 0.0587624 1.49697e-06 7.25647e-11 2.718 ||| 0-2 ||| 36 668016 +a ||| the rapporteur in ||| 0.003663 0.0587624 1.49697e-06 2.66684e-07 2.718 ||| 0-2 ||| 273 668016 +a ||| the rate of growth ||| 0.0344828 0.0188479 1.49697e-06 8.78754e-12 2.718 ||| 0-2 ||| 29 668016 +a ||| the rate of ||| 0.00222222 0.0188479 1.49697e-06 1.82314e-07 2.718 ||| 0-2 ||| 450 668016 +a ||| the reality ||| 0.0006035 0.0004654 1.49697e-06 1.02524e-07 2.718 ||| 0-0 ||| 1657 668016 +a ||| the realms of speculation on this point ||| 0.5 0.0782999 1.49697e-06 6.4409e-21 2.718 ||| 0-4 ||| 2 668016 +a ||| the realms of speculation on this ||| 0.5 0.0782999 1.49697e-06 7.36271e-18 2.718 ||| 0-4 ||| 2 668016 +a ||| the realms of speculation on ||| 0.5 0.0782999 1.49697e-06 1.13949e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| the reason for ||| 0.00402145 0.0683377 4.49091e-06 5.29128e-07 2.718 ||| 0-2 ||| 746 668016 +a ||| the reason we wanted to ||| 1 0.229811 1.49697e-06 3.12359e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| the reasons for ||| 0.00153374 0.0683377 1.49697e-06 2.28708e-07 2.718 ||| 0-2 ||| 652 668016 +a ||| the recipient in ||| 1 0.0587624 1.49697e-06 1.58609e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| the references to ||| 0.00917431 0.229811 1.49697e-06 1.1613e-07 2.718 ||| 0-2 ||| 109 668016 +a ||| the referendum takes place at ||| 1 0.204175 1.49697e-06 4.38797e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| the reform of ||| 0.000688705 0.0188479 1.49697e-06 7.4451e-08 2.718 ||| 0-2 ||| 1452 668016 +a ||| the reintroduction of ||| 0.0108696 0.0188479 1.49697e-06 1.99747e-09 2.718 ||| 0-2 ||| 92 668016 +a ||| the release of ||| 0.00179856 0.0188479 1.49697e-06 4.12204e-08 2.718 ||| 0-2 ||| 556 668016 +a ||| the release onto ||| 1 0.207143 1.49697e-06 3.31954e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| the removal ||| 0.00139082 0.0004654 1.49697e-06 1.44055e-08 2.718 ||| 0-0 ||| 719 668016 +a ||| the report and ||| 0.0014245 0.0015873 1.49697e-06 4.85549e-08 2.718 ||| 0-2 ||| 702 668016 +a ||| the report on ||| 0.000547345 0.0782999 1.49697e-06 9.5463e-07 2.718 ||| 0-2 ||| 1827 668016 +a ||| the report should in other respects ||| 1 0.0587624 1.49697e-06 1.75318e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| the report should in other ||| 1 0.0587624 1.49697e-06 8.67912e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| the report should in ||| 1 0.0587624 1.49697e-06 6.69943e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| the report to ||| 0.00363636 0.229811 1.49697e-06 8.81516e-06 2.718 ||| 0-2 ||| 275 668016 +a ||| the representative of ||| 0.00408163 0.0188479 1.49697e-06 4.24915e-08 2.718 ||| 0-2 ||| 245 668016 +a ||| the request to ||| 0.0133333 0.229811 2.99394e-06 1.64948e-06 2.718 ||| 0-2 ||| 150 668016 +a ||| the requirements in my explanatory statement , ||| 1 0.0587624 1.49697e-06 7.37458e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| the requirements in my explanatory statement ||| 1 0.0587624 1.49697e-06 6.18389e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| the requirements in my explanatory ||| 1 0.0587624 1.49697e-06 8.30053e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| the requirements in my ||| 1 0.0587624 1.49697e-06 1.15285e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| the requirements in ||| 0.03125 0.0587624 1.49697e-06 1.79265e-07 2.718 ||| 0-2 ||| 32 668016 +a ||| the respect of ||| 0.00568182 0.0188479 1.49697e-06 7.85549e-07 2.718 ||| 0-2 ||| 176 668016 +a ||| the responsibility of ||| 0.00348432 0.0188479 5.98788e-06 2.09734e-07 2.718 ||| 0-2 ||| 1148 668016 +a ||| the rest of ||| 0.00469043 0.0188479 7.48485e-06 1.3728e-07 2.718 ||| 0-2 ||| 1066 668016 +a ||| the result of the fact ||| 0.166667 0.0188479 1.49697e-06 1.71933e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| the result of the ||| 0.00152207 0.0188479 1.49697e-06 5.86942e-08 2.718 ||| 0-2 ||| 657 668016 +a ||| the result of ||| 0.00458505 0.0188479 1.49697e-05 9.56059e-07 2.718 ||| 0-2 ||| 2181 668016 +a ||| the return of ||| 0.00236407 0.0188479 1.49697e-06 1.20937e-07 2.718 ||| 0-2 ||| 423 668016 +a ||| the review of ||| 0.00208333 0.0188479 1.49697e-06 6.86402e-08 2.718 ||| 0-2 ||| 480 668016 +a ||| the right hand is doing and in ||| 1 0.0587624 1.49697e-06 1.3596e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| the right to have ||| 0.0138889 0.229811 1.49697e-06 1.6587e-07 2.718 ||| 0-2 ||| 72 668016 +a ||| the right to life of ||| 0.166667 0.0188479 1.49697e-06 1.57648e-11 2.718 ||| 0-4 ||| 6 668016 +a ||| the right to pursue ||| 0.142857 0.229811 1.49697e-06 5.43664e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| the right to put the agenda to ||| 1 0.229811 1.49697e-06 8.28362e-15 2.718 ||| 0-6 ||| 1 668016 +a ||| the right to ||| 0.00329056 0.229811 2.99394e-05 1.3869e-05 2.718 ||| 0-2 ||| 6078 668016 +a ||| the right ||| 0.00018546 0.0004654 2.99394e-06 9.88309e-07 2.718 ||| 0-0 ||| 10784 668016 +a ||| the rights of ||| 0.000533333 0.0188479 2.99394e-06 3.63357e-07 2.718 ||| 0-2 ||| 3750 668016 +a ||| the rights to ||| 0.0126582 0.229811 1.49697e-06 4.30328e-06 2.718 ||| 0-2 ||| 79 668016 +a ||| the risk of ||| 0.000430663 0.0188479 1.49697e-06 2.12458e-07 2.718 ||| 0-2 ||| 2322 668016 +a ||| the river in ||| 0.5 0.0587624 1.49697e-06 1.58609e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| the road of ||| 0.018018 0.0188479 2.99394e-06 1.61976e-07 2.718 ||| 0-2 ||| 111 668016 +a ||| the role of the ||| 0.000581734 0.0188479 1.49697e-06 2.47486e-08 2.718 ||| 0-2 ||| 1719 668016 +a ||| the role of ||| 0.0014881 0.0188479 7.48485e-06 4.03125e-07 2.718 ||| 0-2 ||| 3360 668016 +a ||| the rug out from ||| 0.5 0.0435582 1.49697e-06 1.86212e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| the rules on the treatment ||| 0.333333 0.0782999 1.49697e-06 1.00515e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| the rules on the ||| 0.00943396 0.0782999 1.49697e-06 1.6614e-08 2.718 ||| 0-2 ||| 106 668016 +a ||| the rules on ||| 0.0014881 0.0782999 1.49697e-06 2.70622e-07 2.718 ||| 0-2 ||| 672 668016 +a ||| the run-up to ||| 0.00225734 0.229811 1.49697e-06 1.69895e-07 2.718 ||| 0-2 ||| 443 668016 +a ||| the sacrificed on an ||| 1 0.0782999 1.49697e-06 2.27731e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| the sacrificed on ||| 1 0.0782999 1.49697e-06 5.12366e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| the same commitment in tackling ||| 1 0.0587624 1.49697e-06 3.39532e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| the same commitment in ||| 0.5 0.0587624 1.49697e-06 1.65625e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| the same degree of ||| 0.02 0.0188479 1.49697e-06 2.02381e-10 2.718 ||| 0-3 ||| 50 668016 +a ||| the same from ||| 0.0588235 0.0435582 1.49697e-06 3.55635e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| the same levels of ||| 0.0714286 0.0188479 1.49697e-06 1.93468e-10 2.718 ||| 0-3 ||| 14 668016 +a ||| the same of ||| 0.0454545 0.0188479 1.49697e-06 1.46124e-06 2.718 ||| 0-2 ||| 22 668016 +a ||| the same right across ||| 1 0.0490758 1.49697e-06 1.56748e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| the same sort of ||| 0.02 0.0188479 1.49697e-06 2.33506e-10 2.718 ||| 0-3 ||| 50 668016 +a ||| the same status in ||| 0.125 0.0587624 1.49697e-06 3.00084e-10 2.718 ||| 0-3 ||| 8 668016 +a ||| the same time , to ||| 0.0555556 0.229811 1.49697e-06 3.3881e-09 2.718 ||| 0-4 ||| 18 668016 +a ||| the same time as ||| 0.00657895 0.0243476 1.49697e-06 7.1147e-10 2.718 ||| 0-3 ||| 152 668016 +a ||| the same to ||| 0.037037 0.229811 1.49697e-06 1.73056e-05 2.718 ||| 0-2 ||| 27 668016 +a ||| the same ||| 4.61872e-05 0.0004654 1.49697e-06 1.2332e-06 2.718 ||| 0-0 ||| 21651 668016 +a ||| the satisfaction of a ||| 0.333333 0.0188479 1.49697e-06 9.57834e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| the satisfaction of ||| 0.0138889 0.0188479 1.49697e-06 2.16089e-08 2.718 ||| 0-2 ||| 72 668016 +a ||| the scale of ||| 0.0021692 0.0188479 1.49697e-06 1.06592e-07 2.718 ||| 0-2 ||| 461 668016 +a ||| the scheme was to compensate people ||| 1 0.122807 1.49697e-06 4.74747e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| the scheme was to compensate ||| 1 0.122807 1.49697e-06 5.39362e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| the scientists under ||| 1 0.0384416 1.49697e-06 3.48313e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| the scope of ||| 0.002792 0.0188479 8.98182e-06 1.81043e-07 2.718 ||| 0-2 ||| 2149 668016 +a ||| the second report on cohesion drawn up ||| 1 0.0782999 1.49697e-06 4.66831e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| the second report on cohesion drawn ||| 1 0.0782999 1.49697e-06 1.36881e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| the second report on cohesion ||| 0.1 0.0782999 1.49697e-06 9.6327e-16 2.718 ||| 0-3 ||| 10 668016 +a ||| the second report on ||| 0.0357143 0.0782999 1.49697e-06 6.21464e-11 2.718 ||| 0-3 ||| 28 668016 +a ||| the section covering ||| 0.111111 0.0289544 1.49697e-06 6.32563e-11 2.718 ||| 0-2 ||| 9 668016 +a ||| the sections on ||| 0.0526316 0.0782999 1.49697e-06 2.42209e-08 2.718 ||| 0-2 ||| 19 668016 +a ||| the sector to ||| 0.0232558 0.229811 1.49697e-06 3.9936e-06 2.718 ||| 0-2 ||| 43 668016 +a ||| the serious situation of their public finances ||| 1 0.0188479 1.49697e-06 1.08969e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| the serious situation of their public ||| 1 0.0188479 1.49697e-06 2.01794e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| the serious situation of their ||| 1 0.0188479 1.49697e-06 1.24873e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| the serious situation of ||| 0.2 0.0188479 1.49697e-06 1.07732e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| the service of ||| 0.0107527 0.0188479 1.49697e-06 1.21482e-07 2.718 ||| 0-2 ||| 93 668016 +a ||| the shadow rapporteurs , ||| 0.00284091 0.0006602 1.49697e-06 2.70813e-13 2.718 ||| 0-2 ||| 352 668016 +a ||| the shadow rapporteurs ||| 0.000890472 0.0006602 1.49697e-06 2.27088e-12 2.718 ||| 0-2 ||| 1123 668016 +a ||| the sharing of ||| 0.00546448 0.0188479 1.49697e-06 2.16089e-08 2.718 ||| 0-2 ||| 183 668016 +a ||| the side of the ||| 0.0123457 0.0188479 1.49697e-06 2.44364e-08 2.718 ||| 0-2 ||| 81 668016 +a ||| the side of ||| 0.00645161 0.0188479 1.49697e-06 3.9804e-07 2.718 ||| 0-2 ||| 155 668016 +a ||| the situation for ||| 0.00666667 0.0683377 1.49697e-06 1.16503e-06 2.718 ||| 0-2 ||| 150 668016 +a ||| the situation in ||| 0.000425441 0.0587624 2.99394e-06 1.89962e-06 2.718 ||| 0-2 ||| 4701 668016 +a ||| the situation on ||| 0.00458716 0.0782999 1.49697e-06 1.1994e-06 2.718 ||| 0-2 ||| 218 668016 +a ||| the situation ||| 5.78269e-05 0.0004654 1.49697e-06 7.89238e-07 2.718 ||| 0-0 ||| 17293 668016 +a ||| the small countries which stand to benefit ||| 0.5 0.229811 1.49697e-06 1.92854e-19 2.718 ||| 0-5 ||| 2 668016 +a ||| the small countries which stand to ||| 0.5 0.229811 1.49697e-06 1.46434e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| the social partners to get ||| 1 0.229811 1.49697e-06 2.48641e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| the social partners to ||| 0.0172414 0.229811 1.49697e-06 5.68713e-11 2.718 ||| 0-3 ||| 58 668016 +a ||| the social partners with ||| 0.2 0.0571592 1.49697e-06 2.71044e-12 2.718 ||| 0-3 ||| 5 668016 +a ||| the sort of ||| 0.00210084 0.0188479 1.49697e-06 2.90177e-07 2.718 ||| 0-2 ||| 476 668016 +a ||| the sound of ||| 0.0714286 0.0188479 1.49697e-06 1.07863e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| the spirit of ||| 0.00174216 0.0188479 2.99394e-06 1.06592e-07 2.718 ||| 0-2 ||| 1148 668016 +a ||| the stability of old European nations ||| 0.5 0.0188479 1.49697e-06 1.51464e-19 2.718 ||| 0-2 ||| 2 668016 +a ||| the stability of old European ||| 0.5 0.0188479 1.49697e-06 9.77185e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| the stability of old ||| 0.5 0.0188479 1.49697e-06 2.92229e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| the stability of ||| 0.00205339 0.0188479 1.49697e-06 3.79518e-08 2.718 ||| 0-2 ||| 487 668016 +a ||| the staff of ||| 0.00990099 0.0188479 1.49697e-06 7.31799e-08 2.718 ||| 0-2 ||| 101 668016 +a ||| the stage where ||| 0.027027 0.0053255 1.49697e-06 2.25623e-09 2.718 ||| 0-2 ||| 37 668016 +a ||| the standard of their legislation ||| 1 0.0188479 1.49697e-06 7.96056e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| the standard of their ||| 0.5 0.0188479 1.49697e-06 9.91353e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| the standard of ||| 0.0042735 0.0188479 1.49697e-06 8.55278e-08 2.718 ||| 0-2 ||| 234 668016 +a ||| the state at ||| 1 0.204175 1.49697e-06 5.27806e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| the status of being ||| 0.5 0.0188479 1.49697e-06 5.22447e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| the status of ||| 0.00220751 0.0188479 2.99394e-06 1.83585e-07 2.718 ||| 0-2 ||| 906 668016 +a ||| the step of ||| 0.111111 0.0188479 1.49697e-06 2.67842e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| the street at ||| 0.125 0.204175 1.49697e-06 2.92529e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| the striking of ||| 0.5 0.0188479 1.49697e-06 2.28801e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| the study was not to be done ||| 1 0.229811 1.49697e-06 6.42537e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| the study was not to be ||| 1 0.229811 1.49697e-06 1.40907e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| the study was not to ||| 1 0.229811 1.49697e-06 7.7751e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| the subject of complaint to ||| 1 0.229811 1.49697e-06 5.23811e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| the subject of my ||| 0.04 0.0188479 1.49697e-06 6.30373e-10 2.718 ||| 0-2 ||| 25 668016 +a ||| the subject of the ||| 0.00165017 0.0188479 1.49697e-06 6.01769e-08 2.718 ||| 0-2 ||| 606 668016 +a ||| the subject of ||| 0.0020284 0.0188479 1.04788e-05 9.80211e-07 2.718 ||| 0-2 ||| 3451 668016 +a ||| the submission of ||| 0.00636943 0.0188479 1.49697e-06 1.56165e-08 2.718 ||| 0-2 ||| 157 668016 +a ||| the success of racist parties in ||| 0.5 0.0587624 1.49697e-06 3.49713e-19 2.718 ||| 0-5 ||| 2 668016 +a ||| the summit cannot be allowed to fail ||| 1 0.229811 1.49697e-06 2.45659e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| the summit cannot be allowed to ||| 1 0.229811 1.49697e-06 4.54923e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| the support of ||| 0.000633714 0.0188479 1.49697e-06 6.20848e-07 2.718 ||| 0-2 ||| 1578 668016 +a ||| the survival of ||| 0.00323625 0.0188479 1.49697e-06 1.18032e-08 2.718 ||| 0-2 ||| 309 668016 +a ||| the system to properly exchange intelligence ||| 0.5 0.229811 1.49697e-06 7.17902e-20 2.718 ||| 0-2 ||| 2 668016 +a ||| the system to properly exchange ||| 0.5 0.229811 1.49697e-06 1.23776e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| the system to properly ||| 0.5 0.229811 1.49697e-06 4.46845e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| the system to ||| 0.0131579 0.229811 1.49697e-06 5.99792e-06 2.718 ||| 0-2 ||| 76 668016 +a ||| the table for ||| 0.0217391 0.0683377 1.49697e-06 1.53151e-07 2.718 ||| 0-2 ||| 46 668016 +a ||| the table in ||| 0.0192308 0.0587624 1.49697e-06 2.49716e-07 2.718 ||| 0-2 ||| 52 668016 +a ||| the table ||| 0.000620347 0.0004654 1.49697e-06 1.0375e-07 2.718 ||| 0-0 ||| 1612 668016 +a ||| the taking on of ||| 1 0.0782999 1.49697e-06 5.38093e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| the taking on ||| 1 0.0782999 1.49697e-06 9.89797e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| the target of ||| 0.00367647 0.0188479 1.49697e-06 6.86402e-08 2.718 ||| 0-2 ||| 272 668016 +a ||| the targets of ||| 0.0147059 0.0188479 1.49697e-06 4.32179e-08 2.718 ||| 0-2 ||| 68 668016 +a ||| the task of promoting ||| 0.0833333 0.0188479 1.49697e-06 6.49794e-12 2.718 ||| 0-2 ||| 12 668016 +a ||| the task of ||| 0.0047619 0.0188479 5.98788e-06 2.28801e-07 2.718 ||| 0-2 ||| 840 668016 +a ||| the term ||| 0.00104603 0.0023121 1.49697e-06 1.00683e-06 2.718 ||| 0-1 ||| 956 668016 +a ||| the text on ||| 0.00952381 0.0782999 1.49697e-06 2.0122e-07 2.718 ||| 0-2 ||| 105 668016 +a ||| the throats of ||| 0.428571 0.0188479 4.49091e-06 8.53462e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| the tide of ||| 0.0185185 0.0188479 1.49697e-06 1.05321e-08 2.718 ||| 0-2 ||| 54 668016 +a ||| the time at which ||| 0.047619 0.204175 1.49697e-06 2.91392e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| the time at ||| 0.0416667 0.204175 1.49697e-06 3.43032e-06 2.718 ||| 0-2 ||| 24 668016 +a ||| the time limits for ||| 0.047619 0.0683377 1.49697e-06 1.00274e-10 2.718 ||| 0-3 ||| 21 668016 +a ||| the time of ||| 0.00235571 0.0188479 2.99394e-06 2.98113e-06 2.718 ||| 0-2 ||| 849 668016 +a ||| the time to ||| 0.00516351 0.229811 4.49091e-06 3.53058e-05 2.718 ||| 0-2 ||| 581 668016 +a ||| the to ||| 0.0769231 0.229811 1.49697e-06 0.0215056 2.718 ||| 0-1 ||| 13 668016 +a ||| the topic of ||| 0.00456621 0.0004869 1.49697e-06 3.00375e-09 2.718 ||| 0-1 ||| 219 668016 +a ||| the topic ||| 0.00242131 0.0004869 1.49697e-06 5.52526e-08 2.718 ||| 0-1 ||| 413 668016 +a ||| the trade in ||| 0.00262467 0.0587624 1.49697e-06 3.21275e-07 2.718 ||| 0-2 ||| 381 668016 +a ||| the train once it is ||| 1 0.0006453 1.49697e-06 4.03996e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| the train once it ||| 1 0.0006453 1.49697e-06 1.28903e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| the treatment of ||| 0.00211864 0.0188479 1.49697e-06 1.09861e-07 2.718 ||| 0-2 ||| 472 668016 +a ||| the trend in ||| 0.0185185 0.0587624 1.49697e-06 6.23369e-08 2.718 ||| 0-2 ||| 54 668016 +a ||| the tune of ||| 0.00571429 0.0188479 1.49697e-06 5.42947e-08 2.718 ||| 0-2 ||| 175 668016 +a ||| the two countries of ||| 1 0.0188479 1.49697e-06 1.62995e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| the two superpower system fell apart when ||| 0.5 0.0055468 1.49697e-06 1.27389e-27 2.718 ||| 0-6 ||| 2 668016 +a ||| the underlying assumption for ||| 1 0.0683377 1.49697e-06 4.02128e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| the undertaking of ||| 0.0909091 0.0188479 1.49697e-06 5.42947e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| the urgency of adopting this ||| 1 0.0188479 1.49697e-06 1.48601e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| the urgency of adopting ||| 0.2 0.0188479 1.49697e-06 2.29983e-12 2.718 ||| 0-2 ||| 5 668016 +a ||| the urgency of ||| 0.00446429 0.0188479 1.49697e-06 4.70312e-08 2.718 ||| 0-2 ||| 224 668016 +a ||| the urging ||| 0.2 0.340127 1.49697e-06 1.49612e-05 2.718 ||| 0-1 ||| 5 668016 +a ||| the use of animals in ||| 0.125 0.0587624 1.49697e-06 3.96807e-12 2.718 ||| 0-4 ||| 8 668016 +a ||| the use of ||| 0.00045565 0.0188479 4.49091e-06 8.8288e-07 2.718 ||| 0-2 ||| 6584 668016 +a ||| the very ||| 0.000262123 0.0004654 1.49697e-06 5.33233e-06 2.718 ||| 0-0 ||| 3815 668016 +a ||| the vessel to a ||| 1 0.229811 1.49697e-06 6.19616e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| the vessel to ||| 0.166667 0.229811 1.49697e-06 1.39787e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| the view of ||| 0.00197239 0.0188479 1.49697e-06 1.64028e-06 2.718 ||| 0-2 ||| 507 668016 +a ||| the views of ||| 0.00525394 0.0188479 4.49091e-06 1.47631e-07 2.718 ||| 0-2 ||| 571 668016 +a ||| the voice of ||| 0.00359712 0.0188479 1.49697e-06 7.89907e-08 2.718 ||| 0-2 ||| 278 668016 +a ||| the vote for ||| 0.030303 0.0683377 1.49697e-06 3.55843e-07 2.718 ||| 0-2 ||| 33 668016 +a ||| the voting ||| 0.00297619 0.075849 1.49697e-06 4.71796e-05 2.718 ||| 0-1 ||| 336 668016 +a ||| the way , on the ||| 0.5 0.0782999 1.49697e-06 3.67546e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| the way , on ||| 0.25 0.0782999 1.49697e-06 5.98689e-07 2.718 ||| 0-3 ||| 4 668016 +a ||| the way , to ||| 0.125 0.229811 1.49697e-06 5.52836e-06 2.718 ||| 0-3 ||| 8 668016 +a ||| the way for funding for ||| 0.5 0.0683377 1.49697e-06 1.9976e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| the way for funding ||| 0.5 0.0683377 1.49697e-06 2.59912e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| the way for ||| 0.00200602 0.0683377 2.99394e-06 4.87639e-06 2.718 ||| 0-2 ||| 997 668016 +a ||| the way in which ||| 0.000377358 0.0587624 1.49697e-06 6.75413e-08 2.718 ||| 0-2 ||| 2650 668016 +a ||| the way in ||| 0.00102041 0.0587624 4.49091e-06 7.95109e-06 2.718 ||| 0-2 ||| 2940 668016 +a ||| the way of ||| 0.00655022 0.0188479 4.49091e-06 3.91431e-06 2.718 ||| 0-2 ||| 458 668016 +a ||| the way to put ||| 0.142857 0.229811 1.49697e-06 5.11139e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| the way to ||| 0.00396825 0.229811 5.98788e-06 4.63576e-05 2.718 ||| 0-2 ||| 1008 668016 +a ||| the way towards ||| 0.00961538 0.155507 1.49697e-06 4.46317e-07 2.718 ||| 0-2 ||| 104 668016 +a ||| the way we treat it in ||| 1 0.0587624 1.49697e-06 2.66458e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| the way ||| 7.73874e-05 0.0004654 1.49697e-06 3.30346e-06 2.718 ||| 0-0 ||| 12922 668016 +a ||| the welcome pro-European signs is that in ||| 1 0.0587624 1.49697e-06 1.32745e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| the while , ||| 0.333333 0.0377813 1.49697e-06 6.7092e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| the while ||| 0.0357143 0.0377813 1.49697e-06 5.62594e-05 2.718 ||| 0-1 ||| 28 668016 +a ||| the whole of ||| 0.0017311 0.0188479 4.49091e-06 1.02724e-06 2.718 ||| 0-2 ||| 1733 668016 +a ||| the whole with consensus ||| 1 0.0571592 1.49697e-06 8.98705e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| the whole with ||| 0.5 0.0571592 1.49697e-06 5.7981e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| the whole ||| 0.000228702 0.0004654 2.99394e-06 8.66935e-07 2.718 ||| 0-0 ||| 8745 668016 +a ||| the willingness to ||| 0.00884956 0.229811 1.49697e-06 2.79573e-07 2.718 ||| 0-2 ||| 113 668016 +a ||| the wishes of ||| 0.00251889 0.0188479 1.49697e-06 9.60599e-08 2.718 ||| 0-2 ||| 397 668016 +a ||| the word ||| 0.000652316 0.0004654 1.49697e-06 1.56008e-07 2.718 ||| 0-0 ||| 1533 668016 +a ||| the words of ||| 0.00363636 0.0188479 2.99394e-06 4.10388e-07 2.718 ||| 0-2 ||| 550 668016 +a ||| the work to ||| 0.0114943 0.229811 1.49697e-06 1.36131e-05 2.718 ||| 0-2 ||| 87 668016 +a ||| the working week to ||| 0.333333 0.229811 1.49697e-06 1.25297e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| the world for ||| 0.0196078 0.0683377 1.49697e-06 5.15328e-07 2.718 ||| 0-2 ||| 51 668016 +a ||| the world over ||| 0.00645161 0.0682544 1.49697e-06 3.24859e-08 2.718 ||| 0-2 ||| 155 668016 +a ||| the world to ||| 0.00740741 0.229811 1.49697e-06 4.89899e-06 2.718 ||| 0-2 ||| 135 668016 +a ||| the world with ||| 0.0153846 0.0571592 1.49697e-06 2.33482e-07 2.718 ||| 0-2 ||| 65 668016 +a ||| the world ||| 9.60246e-05 0.0004654 1.49697e-06 3.49104e-07 2.718 ||| 0-0 ||| 10414 668016 +a ||| the worst comes to ||| 0.111111 0.229811 1.49697e-06 1.29829e-10 2.718 ||| 0-3 ||| 9 668016 +a ||| the wrong signal to ||| 0.047619 0.229811 1.49697e-06 2.85604e-11 2.718 ||| 0-3 ||| 21 668016 +a ||| the year , in ||| 0.2 0.0587624 1.49697e-06 1.09706e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| the ||| 0.000257337 0.0004654 0.00130236 0.0015325 2.718 ||| 0-0 ||| 3.38078e+06 668016 +a ||| their access ||| 0.00746269 0.0201099 1.49697e-06 4.57033e-07 2.718 ||| 0-1 ||| 134 668016 +a ||| their accession to ||| 0.0212766 0.229811 1.49697e-06 1.49015e-08 2.718 ||| 0-2 ||| 47 668016 +a ||| their actions to ||| 0.111111 0.229811 1.49697e-06 2.83412e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| their attempts to ||| 0.0357143 0.229811 1.49697e-06 1.28713e-08 2.718 ||| 0-2 ||| 28 668016 +a ||| their being ||| 0.0111111 0.0004527 1.49697e-06 1.16962e-07 2.718 ||| 0-0 ||| 90 668016 +a ||| their bit in ||| 0.142857 0.0587624 1.49697e-06 5.51562e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| their captivity on a number of ||| 1 0.0782999 1.49697e-06 3.66998e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| their captivity on a number ||| 1 0.0782999 1.49697e-06 6.75075e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| their captivity on a ||| 1 0.0782999 1.49697e-06 1.36434e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| their captivity on ||| 1 0.0782999 1.49697e-06 3.07798e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| their concerns ||| 0.00348432 0.127284 1.49697e-06 2.73374e-06 2.718 ||| 0-1 ||| 287 668016 +a ||| their cooperation and with the help ||| 1 0.0571592 1.49697e-06 2.6136e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| their cooperation and with the ||| 1 0.0571592 1.49697e-06 1.37053e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| their cooperation and with ||| 1 0.0571592 1.49697e-06 2.23243e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| their current talks on ||| 1 0.0782999 1.49697e-06 1.90582e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| their economies and to ||| 0.5 0.229811 1.49697e-06 5.69626e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| their efforts to ||| 0.00611621 0.229811 2.99394e-06 4.93738e-08 2.718 ||| 0-2 ||| 327 668016 +a ||| their efforts towards ||| 0.0714286 0.155507 1.49697e-06 4.75356e-10 2.718 ||| 0-2 ||| 14 668016 +a ||| their faces by ||| 1 0.167846 1.49697e-06 1.44954e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| their faces ||| 0.05 0.167846 1.49697e-06 2.76098e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| their fingers at ||| 1 0.204175 1.49697e-06 1.14406e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| their hand to ||| 0.333333 0.229811 1.49697e-06 1.61033e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| their heads in ||| 0.125 0.0587624 2.99394e-06 2.02657e-09 2.718 ||| 0-2 ||| 16 668016 +a ||| their individual ||| 0.03125 0.0004527 1.49697e-06 5.81154e-09 2.718 ||| 0-0 ||| 32 668016 +a ||| their links to ||| 0.2 0.229811 1.49697e-06 4.83181e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| their lives in ||| 0.010989 0.0587624 1.49697e-06 3.58654e-09 2.718 ||| 0-2 ||| 91 668016 +a ||| their living by ||| 0.25 0.0337966 1.49697e-06 7.99158e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| their lot in ||| 0.5 0.0587624 1.49697e-06 8.9977e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| their main features , ||| 1 0.0004527 1.49697e-06 8.99146e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| their main features ||| 0.25 0.0004527 1.49697e-06 7.53971e-14 2.718 ||| 0-0 ||| 4 668016 +a ||| their main ||| 0.012987 0.0004527 1.49697e-06 4.09767e-09 2.718 ||| 0-0 ||| 77 668016 +a ||| their minds to ||| 0.2 0.229811 1.49697e-06 1.94491e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| their number down to ||| 0.5 0.229811 1.49697e-06 1.40252e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| their officials ||| 0.0454545 0.0013643 1.49697e-06 5.33186e-09 2.718 ||| 0-1 ||| 22 668016 +a ||| their opinions regarding ||| 1 0.186429 1.49697e-06 8.58158e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| their origin back to ||| 1 0.229811 1.49697e-06 6.99133e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| their own at ||| 0.5 0.204175 1.49697e-06 6.68803e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| their own group to ||| 1 0.229811 1.49697e-06 8.86595e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| their own people , ||| 0.0322581 0.0004527 1.49697e-06 7.31384e-12 2.718 ||| 0-0 ||| 31 668016 +a ||| their own people ||| 0.00735294 0.0004527 1.49697e-06 6.13295e-11 2.718 ||| 0-0 ||| 136 668016 +a ||| their own way of ||| 0.2 0.0188479 1.49697e-06 1.25289e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| their own ||| 0.00013776 0.0004527 1.49697e-06 6.96768e-08 2.718 ||| 0-0 ||| 7259 668016 +a ||| their parents ||| 0.00384615 0.0100042 1.49697e-06 2.53843e-08 2.718 ||| 0-1 ||| 260 668016 +a ||| their part in ||| 0.00970874 0.0587624 1.49697e-06 8.30267e-08 2.718 ||| 0-2 ||| 103 668016 +a ||| their part to play in ||| 0.25 0.0587624 1.49697e-06 1.90342e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| their participation in ||| 0.00793651 0.0587624 1.49697e-06 1.67836e-09 2.718 ||| 0-2 ||| 126 668016 +a ||| their place ||| 0.00465116 0.0004527 1.49697e-06 6.18555e-08 2.718 ||| 0-0 ||| 215 668016 +a ||| their position to face ||| 0.5 0.229811 1.49697e-06 2.23692e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| their position to ||| 0.0833333 0.229811 1.49697e-06 1.33707e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| their response to ||| 0.0909091 0.229811 1.49697e-06 4.06035e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| their reward ||| 1 0.181122 1.49697e-06 7.51097e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| their right to ||| 0.00400802 0.229811 2.99394e-06 2.61852e-07 2.718 ||| 0-2 ||| 499 668016 +a ||| their right ||| 0.00181488 0.0004527 1.49697e-06 2.65054e-08 2.718 ||| 0-0 ||| 551 668016 +a ||| their seats in ||| 0.0232558 0.0587624 1.49697e-06 6.75524e-10 2.718 ||| 0-2 ||| 43 668016 +a ||| their superiors to ||| 1 0.229811 1.49697e-06 2.84224e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| their use in ||| 0.0238095 0.0587624 1.49697e-06 3.38598e-08 2.718 ||| 0-2 ||| 42 668016 +a ||| their views as ||| 0.142857 0.0243476 1.49697e-06 8.26666e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| their way against ||| 0.5 0.05146 1.49697e-06 6.495e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| their way into ||| 0.0357143 0.107578 2.99394e-06 1.5177e-08 2.718 ||| 0-2 ||| 56 668016 +a ||| their way to ||| 0.0441176 0.229811 4.49091e-06 8.75248e-07 2.718 ||| 0-2 ||| 68 668016 +a ||| their weight around ||| 0.25 0.0931303 1.49697e-06 3.20812e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| their ||| 0.000277335 0.0004527 4.19152e-05 4.11e-05 2.718 ||| 0-0 ||| 100961 668016 +a ||| them , affect up to 24 % ||| 1 0.330659 1.49697e-06 7.49519e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| them , affect up to 24 ||| 1 0.330659 1.49697e-06 1.31726e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| them , affect up to ||| 1 0.330659 1.49697e-06 1.53169e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| them , affect up ||| 1 0.330659 1.49697e-06 1.72375e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| them , affect ||| 1 0.330659 1.49697e-06 5.05424e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| them , not even a ||| 1 0.0495435 1.49697e-06 9.44714e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| them , not even ||| 0.5 0.0495435 1.49697e-06 2.1313e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| them , on ||| 0.0833333 0.0782999 1.49697e-06 1.21352e-05 2.718 ||| 0-2 ||| 12 668016 +a ||| them , ||| 0.000755287 0.0045234 2.99394e-06 2.66654e-05 2.718 ||| 0-0 ||| 2648 668016 +a ||| them again ||| 0.0294118 0.0700825 1.49697e-06 6.21888e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| them against ||| 0.0769231 0.05146 1.49697e-06 6.9729e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| them all in ||| 0.0833333 0.0587624 1.49697e-06 7.6157e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| them and ||| 0.00178571 0.00305535 2.99394e-06 4.31436e-07 2.718 ||| 0-0 0-1 ||| 1120 668016 +a ||| them as they leave for ||| 1 0.0683377 1.49697e-06 3.12755e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| them as they ||| 0.166667 0.0243476 1.49697e-06 7.68055e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| them as to ||| 0.25 0.12708 1.49697e-06 8.24298e-06 2.718 ||| 0-1 0-2 ||| 4 668016 +a ||| them as ||| 0.0104895 0.0243476 4.49091e-06 2.35311e-05 2.718 ||| 0-1 ||| 286 668016 +a ||| them at last ||| 1 0.204175 1.49697e-06 1.99392e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| them at once ||| 0.5 0.204175 1.49697e-06 3.73586e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| them at ||| 0.0444444 0.204175 8.98182e-06 9.12966e-05 2.718 ||| 0-1 ||| 135 668016 +a ||| them back ||| 0.025641 0.0536618 1.49697e-06 1.97344e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| them by ||| 0.00645161 0.0337966 1.49697e-06 2.20694e-05 2.718 ||| 0-1 ||| 155 668016 +a ||| them fighting for a social , democratic ||| 1 0.0683377 1.49697e-06 4.40565e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| them fighting for a social , ||| 1 0.0683377 1.49697e-06 1.47346e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| them fighting for a social ||| 1 0.0683377 1.49697e-06 1.23556e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| them fighting for a ||| 1 0.0683377 1.49697e-06 1.19609e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| them fighting for ||| 1 0.0683377 1.49697e-06 2.6984e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| them for having freed ||| 0.142857 0.0683377 1.49697e-06 1.36248e-13 2.718 ||| 0-1 ||| 7 668016 +a ||| them for having ||| 0.1 0.0683377 1.49697e-06 3.78468e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| them for ||| 0.0224215 0.0683377 7.48485e-06 9.88424e-05 2.718 ||| 0-1 ||| 223 668016 +a ||| them from ||| 0.00591716 0.0435582 1.49697e-06 1.93101e-05 2.718 ||| 0-1 ||| 169 668016 +a ||| them having entered ||| 0.5 0.005163 1.49697e-06 6.96995e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| them having ||| 0.0666667 0.005163 1.49697e-06 2.17811e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| them in due ||| 1 0.0587624 1.49697e-06 4.45461e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| them in order to provide a ||| 0.5 0.0587624 1.49697e-06 1.00006e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| them in order to provide ||| 0.333333 0.0587624 1.49697e-06 2.25615e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| them in order to ||| 0.0357143 0.0587624 1.49697e-06 7.62729e-09 2.718 ||| 0-1 ||| 28 668016 +a ||| them in order ||| 0.027027 0.0587624 1.49697e-06 8.58366e-08 2.718 ||| 0-1 ||| 37 668016 +a ||| them in the ||| 0.0191388 0.0587624 5.98788e-06 9.89423e-06 2.718 ||| 0-1 ||| 209 668016 +a ||| them in their ||| 0.0285714 0.0587624 1.49697e-06 1.86807e-07 2.718 ||| 0-1 ||| 35 668016 +a ||| them in ||| 0.0243129 0.0587624 3.44303e-05 0.000161165 2.718 ||| 0-1 ||| 946 668016 +a ||| them into line with ||| 0.2 0.107578 1.49697e-06 3.06736e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| them into line ||| 0.142857 0.107578 1.49697e-06 4.79687e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| them into ||| 0.0642857 0.107578 1.34727e-05 1.62937e-05 2.718 ||| 0-1 ||| 140 668016 +a ||| them lies with ||| 0.333333 0.0571592 1.49697e-06 2.75415e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| them off ||| 0.0714286 0.0893962 5.98788e-06 2.05177e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| them on a par with ||| 0.333333 0.0782999 1.49697e-06 1.96129e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| them on a par ||| 0.333333 0.0782999 1.49697e-06 3.06716e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| them on a ||| 0.047619 0.0782999 1.49697e-06 4.51052e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| them on to ||| 0.4 0.154056 2.99394e-06 3.56461e-05 2.718 ||| 0-1 0-2 ||| 5 668016 +a ||| them on ||| 0.0193237 0.0782999 5.98788e-06 0.000101758 2.718 ||| 0-1 ||| 207 668016 +a ||| them onto ||| 0.333333 0.207143 1.49697e-06 6.38948e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| them out of business in ||| 0.5 0.0587624 1.49697e-06 4.19169e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| them out of ||| 0.0714286 0.0188479 1.49697e-06 3.03909e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| them out on ||| 0.333333 0.0782999 1.49697e-06 3.89776e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| them out ||| 0.0153846 0.0669777 1.49697e-06 1.10005e-05 2.718 ||| 0-1 ||| 65 668016 +a ||| them pay extra to watch ||| 1 0.229811 1.49697e-06 6.00666e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| them pay extra to ||| 1 0.229811 1.49697e-06 3.33703e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| them peeled in ||| 1 0.0587624 1.49697e-06 1.12816e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| them reside in ||| 1 0.0587624 1.49697e-06 2.25631e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| them rights over ||| 1 0.0682544 1.49697e-06 1.24681e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| them satisfactory and will go on applying ||| 1 0.0782999 1.49697e-06 3.45785e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| them satisfactory and will go on ||| 1 0.0782999 1.49697e-06 1.04467e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| them speak not only about ||| 1 0.0526361 1.49697e-06 6.95027e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| them that much in the ||| 1 0.0587624 1.49697e-06 1.67053e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| them that much in ||| 1 0.0587624 1.49697e-06 2.72109e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| them the ||| 0.00401606 0.0004654 1.49697e-06 4.11078e-06 2.718 ||| 0-1 ||| 249 668016 +a ||| them think of ||| 0.5 0.0188479 1.49697e-06 3.03481e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| them to a ||| 0.1 0.229811 1.49697e-06 4.16507e-05 2.718 ||| 0-1 ||| 10 668016 +a ||| them to arrange ||| 0.25 0.229811 1.49697e-06 9.49046e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| them to be thrown onto the ||| 1 0.229811 1.49697e-06 5.84972e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| them to be thrown onto ||| 1 0.229811 1.49697e-06 9.5285e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| them to be thrown ||| 1 0.229811 1.49697e-06 4.71708e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| them to be used ||| 0.0909091 0.229811 1.49697e-06 7.30551e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| them to be ||| 0.00993378 0.229811 4.49091e-06 1.70292e-05 2.718 ||| 0-1 ||| 302 668016 +a ||| them to break ||| 0.333333 0.229811 1.49697e-06 2.73438e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| them to carry out work ||| 1 0.229811 1.49697e-06 4.18071e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| them to carry out ||| 0.0588235 0.229811 1.49697e-06 6.60459e-10 2.718 ||| 0-1 ||| 17 668016 +a ||| them to carry ||| 0.142857 0.229811 2.99394e-06 1.72426e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| them to develop ||| 0.0714286 0.229811 1.49697e-06 5.75065e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| them to do our ||| 1 0.229811 1.49697e-06 4.45267e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| them to do ||| 0.0238095 0.229811 1.49697e-06 3.22798e-06 2.718 ||| 0-1 ||| 42 668016 +a ||| them to excess ||| 0.333333 0.229811 1.49697e-06 1.01482e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| them to give up ||| 0.333333 0.229811 1.49697e-06 1.94203e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| them to give ||| 0.142857 0.229811 1.49697e-06 5.69427e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| them to keep working past ||| 0.333333 0.229811 1.49697e-06 3.57067e-15 2.718 ||| 0-1 ||| 3 668016 +a ||| them to keep working ||| 0.333333 0.229811 1.49697e-06 2.7874e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| them to keep ||| 0.0769231 0.229811 1.49697e-06 1.46397e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| them to meet ||| 0.153846 0.229811 2.99394e-06 1.14261e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| them to pay ||| 0.333333 0.229811 1.49697e-06 1.34558e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| them to put in ||| 0.333333 0.0587624 1.49697e-06 1.57902e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| them to retain ||| 0.25 0.229811 1.49697e-06 1.45646e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| them to some over-worked ||| 1 0.229811 1.49697e-06 4.09424e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| them to some ||| 1 0.229811 1.49697e-06 1.02356e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| them to the fact ||| 0.5 0.229811 1.49697e-06 1.68982e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| them to the ||| 0.011236 0.229811 1.49697e-06 5.76867e-05 2.718 ||| 0-1 ||| 89 668016 +a ||| them to walk ||| 0.5 0.229811 1.49697e-06 6.38961e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| them to ||| 0.0682809 0.229811 0.000211073 0.000939649 2.718 ||| 0-1 ||| 2065 668016 +a ||| them towards ||| 0.142857 0.155507 1.49697e-06 9.04666e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| them up to ||| 0.0588235 0.229811 1.49697e-06 3.20467e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| them used to ||| 0.25 0.229811 1.49697e-06 4.03109e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| them were taken into custody ||| 1 0.107578 1.49697e-06 1.54311e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| them were taken into ||| 1 0.107578 1.49697e-06 2.66054e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| them with ||| 0.0351562 0.0571592 1.34727e-05 4.47829e-05 2.718 ||| 0-1 ||| 256 668016 +a ||| them would be fulfilled to anything approaching ||| 1 0.1653 1.49697e-06 5.04987e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| them ||| 0.00234663 0.0045234 9.43091e-05 0.0002236 2.718 ||| 0-0 ||| 26847 668016 +a ||| theme linked with ||| 0.5 0.0571592 1.49697e-06 4.52521e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| themselves amongst ||| 1 0.0156749 1.49697e-06 2.11842e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| themselves at ||| 0.0714286 0.204175 1.49697e-06 1.4625e-05 2.718 ||| 0-1 ||| 14 668016 +a ||| themselves by ||| 0.0714286 0.0337966 2.99394e-06 3.53536e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| themselves for ||| 0.0555556 0.0683377 1.49697e-06 1.58338e-05 2.718 ||| 0-1 ||| 18 668016 +a ||| themselves from ||| 0.105263 0.0435582 5.98788e-06 3.09332e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| themselves in a ||| 0.0714286 0.0587624 1.49697e-06 1.14438e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| themselves in ||| 0.0375 0.0587624 8.98182e-06 2.58175e-05 2.718 ||| 0-1 ||| 160 668016 +a ||| themselves liable to ||| 0.166667 0.229811 1.49697e-06 2.54387e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| themselves of student ||| 0.333333 0.0188479 1.49697e-06 2.79617e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| themselves of ||| 0.025641 0.0188479 1.49697e-06 1.27099e-05 2.718 ||| 0-1 ||| 39 668016 +a ||| themselves on ||| 0.0434783 0.0782999 2.99394e-06 1.63009e-05 2.718 ||| 0-1 ||| 46 668016 +a ||| themselves out with ||| 0.5 0.0571592 1.49697e-06 2.74788e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| themselves so ||| 0.25 0.0012719 1.49697e-06 3.72231e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| themselves to providing ||| 1 0.229811 1.49697e-06 1.38182e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| themselves to ||| 0.0697674 0.229811 2.69455e-05 0.000150525 2.718 ||| 0-1 ||| 258 668016 +a ||| themselves together and rise above ||| 1 0.0015873 1.49697e-06 8.10569e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| themselves together and rise ||| 1 0.0015873 1.49697e-06 6.25439e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| themselves together and ||| 1 0.0015873 1.49697e-06 4.97961e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| themselves trapped in ||| 0.5 0.0587624 1.49697e-06 1.0327e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| themselves with ||| 0.0384615 0.0571592 4.49091e-06 7.17388e-06 2.718 ||| 0-1 ||| 78 668016 +a ||| themselves ||| 0.000519301 0.0012719 4.49091e-06 1.64e-05 2.718 ||| 0-0 ||| 5777 668016 +a ||| then , at ||| 0.04 0.204175 1.49697e-06 6.53642e-06 2.718 ||| 0-2 ||| 25 668016 +a ||| then , can ||| 0.0588235 0.0252938 1.49697e-06 3.02381e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| then , in the ||| 0.0344828 0.0587624 1.49697e-06 7.08382e-07 2.718 ||| 0-2 ||| 29 668016 +a ||| then , in ||| 0.016129 0.0587624 2.99394e-06 1.15387e-05 2.718 ||| 0-2 ||| 124 668016 +a ||| then , is to ||| 0.0833333 0.229811 1.49697e-06 2.10846e-06 2.718 ||| 0-3 ||| 12 668016 +a ||| then , of course , ensure ||| 1 0.0252938 1.49697e-06 3.72888e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| then , of course , ||| 0.0149254 0.0252938 1.49697e-06 8.31597e-10 2.718 ||| 0-0 ||| 67 668016 +a ||| then , of course ||| 0.0153846 0.0252938 1.49697e-06 6.97328e-09 2.718 ||| 0-0 ||| 65 668016 +a ||| then , of ||| 0.0285714 0.0252938 1.49697e-06 5.5269e-06 2.718 ||| 0-0 ||| 35 668016 +a ||| then , to ||| 0.104478 0.229811 1.04788e-05 6.72746e-05 2.718 ||| 0-2 ||| 67 668016 +a ||| then , with ||| 0.0243902 0.0571592 1.49697e-06 3.20626e-06 2.718 ||| 0-2 ||| 41 668016 +a ||| then , ||| 0.000879765 0.0252938 4.49091e-06 0.000101665 2.718 ||| 0-0 ||| 3410 668016 +a ||| then I will consider ||| 1 0.0127888 1.49697e-06 1.93022e-13 2.718 ||| 0-0 0-3 ||| 1 668016 +a ||| then a closer ||| 1 0.0252938 1.49697e-06 8.04879e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| then a ||| 0.0078125 0.0252938 1.49697e-06 3.77877e-05 2.718 ||| 0-0 ||| 128 668016 +a ||| then absorbed into ||| 1 0.107578 1.49697e-06 2.15205e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| then altered it ||| 0.5 0.0252938 1.49697e-06 4.85126e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| then altered ||| 0.333333 0.0252938 1.49697e-06 2.728e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| then at ||| 0.0135135 0.204175 1.49697e-06 5.48106e-05 2.718 ||| 0-1 ||| 74 668016 +a ||| then be able to ||| 0.03125 0.229811 1.49697e-06 8.53568e-09 2.718 ||| 0-3 ||| 32 668016 +a ||| then be bound to respect ||| 0.5 0.229811 1.49697e-06 2.2777e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| then be bound to ||| 1 0.229811 1.49697e-06 5.26515e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| then be for the ||| 0.25 0.0683377 1.49697e-06 6.60225e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| then be for ||| 0.333333 0.0683377 1.49697e-06 1.07543e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| then beaten ||| 0.25 0.0252938 1.49697e-06 3.069e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| then blamed ||| 1 0.177083 1.49697e-06 7.50446e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| then by ||| 0.0175439 0.0337966 1.49697e-06 1.32496e-05 2.718 ||| 0-1 ||| 57 668016 +a ||| then comes trotting along ||| 1 0.0252938 1.49697e-06 4.16323e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| then comes trotting ||| 1 0.0252938 1.49697e-06 2.38581e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| then comes ||| 0.037037 0.0252938 1.49697e-06 3.4083e-07 2.718 ||| 0-0 ||| 27 668016 +a ||| then followed ||| 0.0769231 0.0252938 1.49697e-06 6.1039e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| then freely ||| 1 0.0252938 1.49697e-06 1.10825e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| then from that public prosecutor to ||| 1 0.229811 1.49697e-06 2.71651e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| then given by ||| 0.5 0.0252938 1.49697e-06 3.07168e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| then given ||| 0.1 0.0252938 1.49697e-06 5.85071e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| then in a ||| 0.111111 0.0587624 1.49697e-06 4.28883e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| then in the ||| 0.0363636 0.0587624 2.99394e-06 5.94008e-06 2.718 ||| 0-1 ||| 55 668016 +a ||| then in ||| 0.0350877 0.0587624 1.19758e-05 9.67569e-05 2.718 ||| 0-1 ||| 228 668016 +a ||| then it is clear ||| 0.0909091 0.0252938 1.49697e-06 1.58173e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| then it is ||| 0.00283286 0.0252938 1.49697e-06 4.75137e-07 2.718 ||| 0-0 ||| 353 668016 +a ||| then it must be made ||| 0.333333 0.0252938 1.49697e-06 8.89553e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| then it must be ||| 0.0333333 0.0252938 1.49697e-06 4.24648e-10 2.718 ||| 0-0 ||| 30 668016 +a ||| then it must ||| 0.0149254 0.0252938 1.49697e-06 2.34316e-08 2.718 ||| 0-0 ||| 67 668016 +a ||| then it ||| 0.00453515 0.0252938 2.99394e-06 1.51602e-05 2.718 ||| 0-0 ||| 441 668016 +a ||| then no ||| 0.047619 0.0252938 1.49697e-06 6.63586e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| then on ||| 0.0190476 0.0782999 2.99394e-06 6.10915e-05 2.718 ||| 0-1 ||| 105 668016 +a ||| then perhaps ||| 0.0105263 0.0252938 1.49697e-06 1.31882e-07 2.718 ||| 0-0 ||| 95 668016 +a ||| then pushed into ||| 1 0.107578 1.49697e-06 1.7999e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| then take for ||| 1 0.0683377 1.49697e-06 9.55387e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| then the concept of human rights ||| 1 0.0188479 1.49697e-06 4.28913e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| then the concept of human ||| 1 0.0188479 1.49697e-06 2.14349e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| then the concept of ||| 1 0.0188479 1.49697e-06 1.73703e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| then there is ||| 0.00180505 0.0252938 1.49697e-06 8.18996e-08 2.718 ||| 0-0 ||| 554 668016 +a ||| then there ||| 0.00266667 0.0252938 1.49697e-06 2.61317e-06 2.718 ||| 0-0 ||| 375 668016 +a ||| then to sink down ||| 1 0.229811 1.49697e-06 1.57526e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| then to sink ||| 1 0.229811 1.49697e-06 2.2565e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| then to ||| 0.0231023 0.229811 1.04788e-05 0.000564126 2.718 ||| 0-1 ||| 303 668016 +a ||| then try to ||| 0.0714286 0.229811 1.49697e-06 8.68754e-08 2.718 ||| 0-2 ||| 14 668016 +a ||| then until ||| 0.111111 0.0268909 1.49697e-06 3.68943e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| then we also have to drive home ||| 1 0.229811 1.49697e-06 1.1853e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| then we also have to drive ||| 1 0.229811 1.49697e-06 1.16778e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| then we also have to ||| 0.25 0.229811 1.49697e-06 3.86683e-10 2.718 ||| 0-4 ||| 4 668016 +a ||| then we had ||| 0.0416667 0.0252938 1.49697e-06 9.71364e-09 2.718 ||| 0-0 ||| 24 668016 +a ||| then we shall ||| 0.0192308 0.131911 1.49697e-06 4.41522e-08 2.718 ||| 0-2 ||| 52 668016 +a ||| then we ||| 0.00117233 0.0252938 1.49697e-06 9.67784e-06 2.718 ||| 0-0 ||| 853 668016 +a ||| then with ||| 0.0181818 0.0571592 1.49697e-06 2.68858e-05 2.718 ||| 0-1 ||| 55 668016 +a ||| then you ||| 0.00460829 0.0252938 1.49697e-06 2.75247e-06 2.718 ||| 0-0 ||| 217 668016 +a ||| then ||| 0.00412982 0.0252938 0.000137721 0.0008525 2.718 ||| 0-0 ||| 22277 668016 +a ||| there and ||| 0.00195312 0.0015873 1.49697e-06 5.9145e-06 2.718 ||| 0-1 ||| 512 668016 +a ||| there are , in effect , ||| 0.333333 0.0587624 1.49697e-06 1.32575e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| there are , in effect ||| 0.5 0.0587624 1.49697e-06 1.11169e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| there are , in ||| 0.0277778 0.0587624 1.49697e-06 3.33242e-07 2.718 ||| 0-3 ||| 36 668016 +a ||| there are , ||| 0.00206612 0.0005768 1.49697e-06 1.33716e-07 2.718 ||| 0-0 ||| 484 668016 +a ||| there are a ||| 0.000929368 0.0005768 1.49697e-06 4.97009e-08 2.718 ||| 0-0 ||| 1076 668016 +a ||| there are also some in ||| 0.25 0.0587624 1.49697e-06 1.53675e-11 2.718 ||| 0-4 ||| 4 668016 +a ||| there are figures to substantiate these claims ||| 1 0.229811 1.49697e-06 2.58761e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| there are figures to substantiate these ||| 1 0.229811 1.49697e-06 8.56825e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| there are figures to substantiate ||| 1 0.229811 1.49697e-06 8.26174e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| there are figures to ||| 0.5 0.229811 1.49697e-06 7.51067e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| there are grounds for ||| 0.0204082 0.0683377 1.49697e-06 1.79433e-10 2.718 ||| 0-3 ||| 49 668016 +a ||| there are over here . tempting ||| 1 0.0682544 1.49697e-06 9.29007e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| there are over here . ||| 1 0.0682544 1.49697e-06 6.63576e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| there are over here ||| 1 0.0682544 1.49697e-06 2.19074e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| there are over ||| 0.00869565 0.0682544 1.49697e-06 1.08035e-07 2.718 ||| 0-2 ||| 115 668016 +a ||| there are quite ||| 0.0344828 0.0005768 1.49697e-06 4.37405e-10 2.718 ||| 0-0 ||| 29 668016 +a ||| there are so ||| 0.0172414 0.00067205 1.49697e-06 9.00374e-11 2.718 ||| 0-0 0-2 ||| 58 668016 +a ||| there are to be ||| 0.0416667 0.229811 1.49697e-06 2.95261e-07 2.718 ||| 0-2 ||| 24 668016 +a ||| there are to ||| 0.0294118 0.229811 1.49697e-06 1.62921e-05 2.718 ||| 0-2 ||| 34 668016 +a ||| there are ||| 0.000693254 0.0005768 2.84424e-05 1.12126e-06 2.718 ||| 0-0 ||| 27407 668016 +a ||| there as ||| 0.00943396 0.0243476 1.49697e-06 2.689e-05 2.718 ||| 0-1 ||| 106 668016 +a ||| there at all ||| 0.2 0.204175 1.49697e-06 4.92995e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| there at ||| 0.0441176 0.204175 4.49091e-06 0.000104329 2.718 ||| 0-1 ||| 68 668016 +a ||| there can be ||| 0.00123916 0.0008168 1.49697e-06 4.76637e-09 2.718 ||| 0-1 ||| 807 668016 +a ||| there can ||| 0.00113636 0.0008168 1.49697e-06 2.63003e-07 2.718 ||| 0-1 ||| 880 668016 +a ||| there for ||| 0.0275229 0.0683377 8.98182e-06 0.000112952 2.718 ||| 0-1 ||| 218 668016 +a ||| there has been ||| 0.000333556 0.0005768 1.49697e-06 1.27023e-09 2.718 ||| 0-0 ||| 2998 668016 +a ||| there has to ||| 0.00357143 0.229811 1.49697e-06 5.52728e-06 2.718 ||| 0-2 ||| 280 668016 +a ||| there has ||| 0.000431965 0.0005768 1.49697e-06 3.804e-07 2.718 ||| 0-0 ||| 2315 668016 +a ||| there in front of them ||| 0.333333 0.0587624 1.49697e-06 2.16467e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| there in front of ||| 0.25 0.0587624 1.49697e-06 8.06989e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| there in front ||| 0.25 0.0587624 1.49697e-06 1.48442e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| there in ||| 0.0183486 0.0587624 5.98788e-06 0.000184171 2.718 ||| 0-1 ||| 218 668016 +a ||| there is a worrying increase in the ||| 1 0.0587624 1.49697e-06 2.27291e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| there is a worrying increase in ||| 1 0.0587624 1.49697e-06 3.70231e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| there is already in ||| 0.25 0.0587624 1.49697e-06 2.67307e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| there is it comes at ||| 1 0.204175 1.49697e-06 2.32472e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| there is nothing left to catch ||| 0.5 0.229811 1.49697e-06 2.0467e-17 2.718 ||| 0-4 ||| 2 668016 +a ||| there is nothing left to ||| 0.125 0.229811 1.49697e-06 1.18306e-12 2.718 ||| 0-4 ||| 8 668016 +a ||| there is now a ||| 0.00512821 0.0005768 1.49697e-06 2.11476e-10 2.718 ||| 0-0 ||| 195 668016 +a ||| there is now ||| 0.00214592 0.0005768 1.49697e-06 4.77095e-09 2.718 ||| 0-0 ||| 466 668016 +a ||| there is reason to ||| 0.015873 0.229811 1.49697e-06 7.87154e-09 2.718 ||| 0-3 ||| 63 668016 +a ||| there is some promise on ||| 1 0.0782999 1.49697e-06 3.73172e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| there is still ||| 0.000643501 0.0005768 1.49697e-06 1.74449e-09 2.718 ||| 0-0 ||| 1554 668016 +a ||| there is the ||| 0.000629723 0.0004654 1.49697e-06 1.47227e-07 2.718 ||| 0-2 ||| 1588 668016 +a ||| there is therefore reason to require that ||| 1 0.229811 1.49697e-06 5.18245e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| there is therefore reason to require ||| 1 0.229811 1.49697e-06 3.08083e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| there is therefore reason to ||| 1 0.229811 1.49697e-06 6.58297e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| there is to ||| 0.00462963 0.229811 1.49697e-06 3.36534e-05 2.718 ||| 0-2 ||| 216 668016 +a ||| there is ||| 0.000352221 0.0005768 2.39515e-05 2.31611e-06 2.718 ||| 0-0 ||| 45426 668016 +a ||| there on ||| 0.0289855 0.0782999 2.99394e-06 0.000116284 2.718 ||| 0-1 ||| 69 668016 +a ||| there over ||| 0.125 0.0682544 1.49697e-06 7.12039e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| there should be , at ||| 1 0.204175 1.49697e-06 9.991e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| there should not ||| 0.0106383 0.0005768 1.49697e-06 1.11795e-09 2.718 ||| 0-0 ||| 94 668016 +a ||| there should therefore be differences in the ||| 0.5 0.0587624 1.49697e-06 1.7768e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| there should therefore be differences in ||| 0.5 0.0587624 1.49697e-06 2.8942e-16 2.718 ||| 0-5 ||| 2 668016 +a ||| there should ||| 0.00140845 0.0005768 2.99394e-06 3.27451e-07 2.718 ||| 0-0 ||| 1420 668016 +a ||| there to be European ||| 1 0.229811 1.49697e-06 6.50723e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| there to be ||| 0.0074813 0.229811 4.49091e-06 1.946e-05 2.718 ||| 0-1 ||| 401 668016 +a ||| there to spend ||| 0.047619 0.229811 1.49697e-06 3.24281e-08 2.718 ||| 0-1 ||| 21 668016 +a ||| there to support ||| 0.05 0.229811 1.49697e-06 3.67125e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| there to ||| 0.0347682 0.229811 3.14364e-05 0.00107378 2.718 ||| 0-1 ||| 604 668016 +a ||| there was against ||| 1 0.05146 1.49697e-06 2.49645e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| there was ||| 0.000413736 0.0005768 2.99394e-06 2.31529e-07 2.718 ||| 0-0 ||| 4834 668016 +a ||| there were other possibilities : that technically ||| 1 0.0007376 1.49697e-06 2.32872e-25 2.718 ||| 0-4 ||| 1 668016 +a ||| there were other possibilities : that ||| 1 0.0007376 1.49697e-06 8.03006e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| there were other possibilities : ||| 1 0.0007376 1.49697e-06 4.77366e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| there were ||| 0.00108578 0.0005768 4.49091e-06 1.32384e-07 2.718 ||| 0-0 ||| 2763 668016 +a ||| there will also ||| 0.0181818 0.0561595 1.49697e-06 2.17952e-07 2.718 ||| 0-1 ||| 55 668016 +a ||| there will at ||| 1 0.204175 1.49697e-06 9.02569e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| there will be ||| 0.00062461 0.0561595 2.99394e-06 7.82379e-07 2.718 ||| 0-1 ||| 3202 668016 +a ||| there will ||| 0.00633484 0.0561595 1.04788e-05 4.31708e-05 2.718 ||| 0-1 ||| 1105 668016 +a ||| there with ||| 0.0153846 0.0571592 1.49697e-06 5.11755e-05 2.718 ||| 0-1 ||| 65 668016 +a ||| there within ||| 0.333333 0.0123496 1.49697e-06 1.52468e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| there ||| 0.00131192 0.0005768 8.08364e-05 7.39e-05 2.718 ||| 0-0 ||| 41161 668016 +a ||| thereafter , ||| 0.0243902 0.150877 1.49697e-06 4.67478e-06 2.718 ||| 0-0 ||| 41 668016 +a ||| thereafter ||| 0.0128755 0.150877 4.49091e-06 3.92e-05 2.718 ||| 0-0 ||| 233 668016 +a ||| thereby risking penalising our ||| 1 0.309434 1.49697e-06 3.17069e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| thereby risking penalising ||| 1 0.309434 1.49697e-06 2.2986e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| therefore , a case of ||| 0.333333 0.0188479 1.49697e-06 1.39899e-10 2.718 ||| 0-4 ||| 3 668016 +a ||| therefore , from ||| 0.0357143 0.0435582 1.49697e-06 7.17956e-07 2.718 ||| 0-2 ||| 28 668016 +a ||| therefore , in ||| 0.00543478 0.0587624 2.99394e-06 5.99219e-06 2.718 ||| 0-2 ||| 368 668016 +a ||| therefore , is to ||| 0.05 0.229811 1.49697e-06 1.09495e-06 2.718 ||| 0-3 ||| 20 668016 +a ||| therefore , on ||| 0.0142857 0.0782999 1.49697e-06 3.78342e-06 2.718 ||| 0-2 ||| 70 668016 +a ||| therefore , to ||| 0.00769231 0.229811 2.99394e-06 3.49365e-05 2.718 ||| 0-2 ||| 260 668016 +a ||| therefore about ||| 0.125 0.0526361 1.49697e-06 4.21437e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| therefore against ||| 0.111111 0.05146 1.49697e-06 2.17396e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| therefore at ||| 0.0384615 0.204175 1.49697e-06 2.84638e-05 2.718 ||| 0-1 ||| 26 668016 +a ||| therefore be differences in the ||| 0.5 0.0587624 1.49697e-06 1.30817e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| therefore be differences in ||| 0.5 0.0587624 1.49697e-06 2.13085e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| therefore for ||| 0.0222222 0.0683377 1.49697e-06 3.08164e-05 2.718 ||| 0-1 ||| 45 668016 +a ||| therefore give ||| 0.030303 0.0241455 1.49697e-06 4.70251e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| therefore happy to ||| 0.5 0.229811 1.49697e-06 1.84563e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| therefore have no doubt that ||| 1 0.0008521 1.49697e-06 4.85808e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| therefore like to ||| 0.0120482 0.229811 1.49697e-06 5.20263e-07 2.718 ||| 0-2 ||| 83 668016 +a ||| therefore no longer be on ||| 1 0.0782999 1.49697e-06 8.39152e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| therefore reason to require that ||| 1 0.229811 1.49697e-06 5.39446e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| therefore reason to require ||| 1 0.229811 1.49697e-06 3.20686e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| therefore reason to ||| 1 0.229811 1.49697e-06 6.85227e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| therefore take ||| 0.0169492 0.0012933 1.49697e-06 5.72865e-08 2.718 ||| 0-1 ||| 59 668016 +a ||| therefore the study was not to be ||| 1 0.229811 1.49697e-06 1.17841e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| therefore the study was not to ||| 1 0.229811 1.49697e-06 6.50231e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| therefore to ||| 0.0070922 0.229811 2.99394e-06 0.000292957 2.718 ||| 0-1 ||| 282 668016 +a ||| therefore treat ||| 0.25 0.271158 1.49697e-06 3.71735e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| therefore wish to ||| 0.047619 0.229811 1.49697e-06 8.63345e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| thereof ||| 0.00378788 0.0101351 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 264 668016 +a ||| these , in ||| 0.0454545 0.0587624 1.49697e-06 7.43095e-06 2.718 ||| 0-2 ||| 22 668016 +a ||| these German-speaking people or those in ||| 0.25 0.0587624 1.49697e-06 1.81622e-20 2.718 ||| 0-5 ||| 4 668016 +a ||| these actions will ||| 0.5 0.0561595 1.49697e-06 1.01951e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| these amendments include ||| 0.333333 0.0281253 1.49697e-06 2.09459e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| these appear to be ||| 1 0.229811 1.49697e-06 5.75442e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| these appear to ||| 0.5 0.229811 1.49697e-06 3.17522e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| these are areas in ||| 0.0344828 0.0587624 1.49697e-06 2.1641e-10 2.718 ||| 0-3 ||| 29 668016 +a ||| these are as ||| 0.25 0.0243476 1.49697e-06 1.38039e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| these are ||| 0.000146563 0.0009806 1.49697e-06 3.43591e-07 2.718 ||| 0-1 ||| 6823 668016 +a ||| these be to ||| 1 0.229811 1.49697e-06 6.58401e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| these conditions until ||| 1 0.0268909 1.49697e-06 2.83932e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| these countries to ||| 0.00389105 0.229811 1.49697e-06 1.37944e-07 2.718 ||| 0-2 ||| 257 668016 +a ||| these developments move towards a ||| 1 0.155507 1.49697e-06 7.08795e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| these developments move towards ||| 1 0.155507 1.49697e-06 1.59906e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| these efforts are put into ||| 1 0.107578 1.49697e-06 1.28154e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| these have been notified in ||| 1 0.105991 1.49697e-06 3.72341e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| these have been notified ||| 1 0.105991 1.49697e-06 1.73955e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| these have come from people at all ||| 0.111111 0.204175 1.49697e-06 2.40154e-18 2.718 ||| 0-5 ||| 9 668016 +a ||| these have come from people at ||| 0.111111 0.204175 1.49697e-06 5.0822e-16 2.718 ||| 0-5 ||| 9 668016 +a ||| these in ||| 0.0107527 0.0587624 1.49697e-06 6.23116e-05 2.718 ||| 0-1 ||| 93 668016 +a ||| these lines pull themselves together and rise ||| 1 0.0015873 1.49697e-06 1.40483e-25 2.718 ||| 0-5 ||| 1 668016 +a ||| these lines pull themselves together and ||| 1 0.0015873 1.49697e-06 1.1185e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| these measures to ||| 0.0196078 0.229811 1.49697e-06 7.51663e-08 2.718 ||| 0-2 ||| 51 668016 +a ||| these on ||| 0.0416667 0.0782999 1.49697e-06 3.9343e-05 2.718 ||| 0-1 ||| 24 668016 +a ||| these people , ||| 0.00699301 0.0079526 1.49697e-06 8.12819e-08 2.718 ||| 0-1 ||| 143 668016 +a ||| these people to ||| 0.0133333 0.229811 1.49697e-06 3.19775e-07 2.718 ||| 0-2 ||| 75 668016 +a ||| these people ||| 0.00113766 0.0079526 2.99394e-06 6.81582e-07 2.718 ||| 0-1 ||| 1758 668016 +a ||| these related in ||| 1 0.0587624 1.49697e-06 4.08141e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| these technologies to ||| 0.2 0.229811 1.49697e-06 3.01537e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| these things are ||| 0.00724638 0.0002685 1.49697e-06 1.59641e-10 2.718 ||| 0-0 ||| 138 668016 +a ||| these things ||| 0.00101523 0.0002685 1.49697e-06 1.05216e-08 2.718 ||| 0-0 ||| 985 668016 +a ||| these three countries to pre-empt such a ||| 1 0.229811 1.49697e-06 5.60533e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| these three countries to pre-empt such ||| 1 0.229811 1.49697e-06 1.26458e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| these three countries to pre-empt ||| 1 0.229811 1.49697e-06 6.11231e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| these three countries to ||| 0.166667 0.229811 1.49697e-06 8.73187e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| these to ||| 0.032967 0.229811 4.49091e-06 0.000363298 2.718 ||| 0-1 ||| 91 668016 +a ||| these were ||| 0.00245098 0.0002685 1.49697e-06 4.58598e-08 2.718 ||| 0-0 ||| 408 668016 +a ||| these women at the ||| 1 0.204175 1.49697e-06 2.57441e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| these women at ||| 1 0.204175 1.49697e-06 4.19342e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| these young people to ||| 1 0.229811 1.49697e-06 2.03696e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| these ||| 0.000152321 0.0002685 2.39515e-05 2.56e-05 2.718 ||| 0-0 ||| 105041 668016 +a ||| they accord to ||| 1 0.229811 1.49697e-06 1.56644e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| they also called on ||| 1 0.0782999 1.49697e-06 1.08647e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| they also related to ||| 0.5 0.229811 1.49697e-06 3.78098e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| they also run counter to ||| 0.5 0.229811 1.49697e-06 1.12799e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| they announced they were going to ||| 0.5 0.229811 1.49697e-06 1.19579e-16 2.718 ||| 0-5 ||| 2 668016 +a ||| they appear at ||| 0.5 0.204175 1.49697e-06 9.7094e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| they appear to be ||| 0.05 0.229811 1.49697e-06 1.81105e-09 2.718 ||| 0-2 ||| 20 668016 +a ||| they appear to ||| 0.0454545 0.229811 1.49697e-06 9.99318e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| they are affecting ||| 0.25 0.268066 1.49697e-06 4.44327e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| they are allocated to ||| 0.5 0.229811 1.49697e-06 7.73731e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| they are also due to ||| 1 0.229811 1.49697e-06 2.42083e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| they are being charged by the forces ||| 1 0.0337966 1.49697e-06 6.25114e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| they are being charged by the ||| 1 0.0337966 1.49697e-06 1.18169e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| they are being charged by ||| 1 0.0337966 1.49697e-06 1.92483e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| they are committed to their own ||| 1 0.229811 1.49697e-06 2.82262e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| they are committed to their ||| 0.5 0.229811 1.49697e-06 1.66497e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| they are committed to ||| 0.0588235 0.229811 1.49697e-06 1.43643e-09 2.718 ||| 0-3 ||| 17 668016 +a ||| they are doing at ||| 0.333333 0.204175 1.49697e-06 6.18769e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| they are essential to ||| 0.0769231 0.229811 1.49697e-06 1.56134e-09 2.718 ||| 0-3 ||| 13 668016 +a ||| they are for ||| 0.0192308 0.0683377 1.49697e-06 1.82487e-06 2.718 ||| 0-2 ||| 52 668016 +a ||| they are in ||| 0.00603622 0.0587624 4.49091e-06 2.97551e-06 2.718 ||| 0-2 ||| 497 668016 +a ||| they are kept by ||| 1 0.0337966 1.49697e-06 2.90516e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| they are leading to ||| 1 0.229811 1.49697e-06 1.51103e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| they are members of ||| 0.0833333 0.0188479 1.49697e-06 2.16063e-10 2.718 ||| 0-3 ||| 12 668016 +a ||| they are not in ||| 0.0227273 0.0587624 1.49697e-06 1.01587e-08 2.718 ||| 0-3 ||| 44 668016 +a ||| they are not waiting on ||| 1 0.0782999 1.49697e-06 1.70615e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| they are of ||| 0.0103093 0.0188479 1.49697e-06 1.46484e-06 2.718 ||| 0-2 ||| 97 668016 +a ||| they are preferable to ||| 1 0.229811 1.49697e-06 7.45974e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| they are prepared to accept their responsibilities ||| 1 0.229811 1.49697e-06 4.49366e-21 2.718 ||| 0-3 ||| 1 668016 +a ||| they are prepared to accept their ||| 1 0.229811 1.49697e-06 1.88809e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| they are prepared to accept ||| 0.25 0.229811 1.49697e-06 1.62893e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| they are prepared to ||| 0.0126582 0.229811 1.49697e-06 1.50409e-09 2.718 ||| 0-3 ||| 79 668016 +a ||| they are providing ||| 0.0588235 0.0088549 1.49697e-06 1.12924e-10 2.718 ||| 0-0 0-2 ||| 17 668016 +a ||| they are put into ||| 0.125 0.107578 1.49697e-06 3.31686e-10 2.718 ||| 0-3 ||| 8 668016 +a ||| they are taking ||| 0.0135135 0.0007051 1.49697e-06 4.8234e-10 2.718 ||| 0-0 ||| 74 668016 +a ||| they are to be for a ||| 1 0.0683377 1.49697e-06 1.30261e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| they are to be for ||| 1 0.0683377 1.49697e-06 2.93872e-09 2.718 ||| 0-4 ||| 1 668016 +a ||| they are to be ||| 0.01 0.229811 1.49697e-06 3.144e-07 2.718 ||| 0-2 ||| 100 668016 +a ||| they are to have ||| 0.0769231 0.229811 1.49697e-06 2.07481e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| they are to receive ||| 0.2 0.229811 1.49697e-06 1.74176e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| they are to ||| 0.0322581 0.229811 1.34727e-05 1.73482e-05 2.718 ||| 0-2 ||| 279 668016 +a ||| they are towards ||| 1 0.155507 1.49697e-06 1.67024e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| they are with ||| 0.1 0.0571592 1.49697e-06 8.26803e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| they are working in the interests ||| 1 0.0587624 1.49697e-06 4.76843e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| they are working in the ||| 0.5 0.0587624 1.49697e-06 3.47807e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| they are working in ||| 0.0833333 0.0587624 1.49697e-06 5.66537e-10 2.718 ||| 0-3 ||| 12 668016 +a ||| they are ||| 0.000472863 0.0007051 1.34727e-05 1.13492e-06 2.718 ||| 0-0 ||| 19033 668016 +a ||| they arrive at ||| 0.125 0.204175 1.49697e-06 2.24405e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| they arrived at ||| 0.333333 0.204175 1.49697e-06 1.84412e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| they both are giving up ||| 1 0.136521 1.49697e-06 2.8219e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| they both are giving ||| 1 0.136521 1.49697e-06 8.27415e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| they bother ||| 1 0.0059524 1.49697e-06 2.9376e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| they bow their heads in ||| 0.5 0.0587624 1.49697e-06 1.45524e-17 2.718 ||| 0-4 ||| 2 668016 +a ||| they bring to ||| 0.25 0.229811 1.49697e-06 3.55936e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| they call ||| 0.0151515 0.001998 1.49697e-06 3.553e-09 2.718 ||| 0-0 0-1 ||| 66 668016 +a ||| they can enter ||| 0.0833333 0.0005408 1.49697e-06 1.74746e-11 2.718 ||| 0-2 ||| 12 668016 +a ||| they can reach ||| 0.0909091 0.182593 1.49697e-06 1.42399e-08 2.718 ||| 0-2 ||| 11 668016 +a ||| they can to ||| 0.021978 0.229811 2.99394e-06 3.40077e-06 2.718 ||| 0-2 ||| 91 668016 +a ||| they comply with ||| 0.0163934 0.0571592 1.49697e-06 2.55026e-09 2.718 ||| 0-2 ||| 61 668016 +a ||| they criticise ||| 0.142857 0.126607 1.49697e-06 3.81235e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| they deal with demonstrate how much ||| 0.5 0.0571592 1.49697e-06 2.06416e-19 2.718 ||| 0-2 ||| 2 668016 +a ||| they deal with demonstrate how ||| 0.5 0.0571592 1.49697e-06 2.05655e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| they deal with demonstrate ||| 0.5 0.0571592 1.49697e-06 5.73814e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| they deal with ||| 0.00434783 0.0571592 1.49697e-06 2.31376e-08 2.718 ||| 0-2 ||| 230 668016 +a ||| they do at ||| 0.0714286 0.0007051 1.49697e-06 1.076e-09 2.718 ||| 0-0 ||| 14 668016 +a ||| they do by ||| 0.5 0.0337966 1.49697e-06 9.22535e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| they do on ||| 0.333333 0.0782999 1.49697e-06 4.25365e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| they do so , ||| 0.0909091 0.0007051 1.49697e-06 6.95521e-11 2.718 ||| 0-0 ||| 11 668016 +a ||| they do so ||| 0.0128205 0.0007051 1.49697e-06 5.83223e-10 2.718 ||| 0-0 ||| 78 668016 +a ||| they do to ||| 0.266667 0.229811 5.98788e-06 3.92787e-06 2.718 ||| 0-2 ||| 15 668016 +a ||| they do ||| 0.00256082 0.0007051 2.99394e-06 2.5696e-07 2.718 ||| 0-0 ||| 781 668016 +a ||| they drove out ||| 1 0.191667 1.49697e-06 2.62551e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| they drove ||| 0.5 0.191667 1.49697e-06 6.8544e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| they ended up with ||| 1 0.0571592 1.49697e-06 3.67978e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| they fail ||| 0.00917431 0.0007051 1.49697e-06 4.0392e-09 2.718 ||| 0-0 ||| 109 668016 +a ||| they forced ||| 0.333333 0.0684932 1.49697e-06 9.08698e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| they go back into the ||| 0.5 0.107578 1.49697e-06 4.78763e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| they go back into ||| 1 0.107578 1.49697e-06 7.79849e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| they had to shoulder in order to ||| 1 0.229811 1.49697e-06 2.25529e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| they had to shoulder in order ||| 1 0.229811 1.49697e-06 2.53807e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| they had to shoulder in ||| 1 0.229811 1.49697e-06 4.76544e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| they had to shoulder ||| 1 0.229811 1.49697e-06 2.22637e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| they had to ||| 0.0106383 0.229811 1.49697e-06 1.14761e-06 2.718 ||| 0-2 ||| 94 668016 +a ||| they happen to ||| 0.166667 0.229811 1.49697e-06 1.24286e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| they have anything to do with ||| 0.5 0.0571592 1.49697e-06 3.12139e-14 2.718 ||| 0-5 ||| 2 668016 +a ||| they have been compensated with ||| 1 0.0571592 1.49697e-06 4.78771e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| they have been to date , ||| 1 0.229811 1.49697e-06 5.56525e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| they have been to date ||| 0.166667 0.229811 1.49697e-06 4.6667e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| they have been to ||| 0.166667 0.229811 1.49697e-06 4.56624e-08 2.718 ||| 0-3 ||| 6 668016 +a ||| they have brought to bear ||| 0.2 0.229811 1.49697e-06 5.73187e-13 2.718 ||| 0-3 ||| 5 668016 +a ||| they have brought to ||| 0.125 0.229811 1.49697e-06 3.8289e-09 2.718 ||| 0-3 ||| 8 668016 +a ||| they have even started ||| 1 0.0495435 1.49697e-06 3.42811e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| they have even ||| 0.0625 0.0495435 1.49697e-06 7.61803e-08 2.718 ||| 0-2 ||| 16 668016 +a ||| they have had to ||| 0.037037 0.229811 1.49697e-06 1.37252e-08 2.718 ||| 0-3 ||| 27 668016 +a ||| they have made as rapporteurs to ||| 1 0.229811 1.49697e-06 2.30926e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| they have made to ||| 0.0357143 0.229811 1.49697e-06 2.86457e-08 2.718 ||| 0-3 ||| 28 668016 +a ||| they have someone ||| 0.333333 0.0328972 1.49697e-06 3.13465e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| they have the greatest desire to ||| 1 0.229811 1.49697e-06 7.2292e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| they have to ||| 0.00513479 0.229811 5.98788e-06 1.36746e-05 2.718 ||| 0-2 ||| 779 668016 +a ||| they have ||| 0.000328192 0.0007051 4.49091e-06 8.94593e-07 2.718 ||| 0-0 ||| 9141 668016 +a ||| they hire ||| 0.25 0.148515 1.49697e-06 4.47168e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| they in ||| 0.030303 0.0587624 1.49697e-06 0.000196109 2.718 ||| 0-1 ||| 33 668016 +a ||| they include ||| 0.00393701 0.0281253 1.49697e-06 8.63981e-07 2.718 ||| 0-1 ||| 254 668016 +a ||| they infect ||| 1 0.380952 1.49697e-06 4.76544e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| they judge to ||| 1 0.229811 1.49697e-06 1.4864e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| they just have to ||| 0.25 0.229811 1.49697e-06 1.72533e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| they know ||| 0.00290698 0.0007051 1.49697e-06 1.92984e-08 2.718 ||| 0-0 ||| 344 668016 +a ||| they leave for ||| 1 0.0683377 1.49697e-06 1.1426e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| they live in ||| 0.0151515 0.0587624 1.49697e-06 1.97678e-08 2.718 ||| 0-2 ||| 66 668016 +a ||| they made towards ||| 0.5 0.155507 1.49697e-06 2.30599e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| they make as to whether , and ||| 1 0.229811 1.49697e-06 7.95654e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| they make as to whether , ||| 1 0.229811 1.49697e-06 6.35207e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| they make as to whether ||| 1 0.229811 1.49697e-06 5.32647e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| they make as to ||| 1 0.229811 1.49697e-06 2.02759e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| they make ||| 0.00332226 0.0033044 1.49697e-06 5.86867e-07 2.718 ||| 0-1 ||| 301 668016 +a ||| they might be to ||| 1 0.229811 1.49697e-06 7.95703e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| they must adapt to ||| 1 0.229811 1.49697e-06 1.078e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| they must be able to ||| 0.0136986 0.229811 1.49697e-06 2.67394e-11 2.718 ||| 0-4 ||| 73 668016 +a ||| they must be prepared to ||| 0.142857 0.229811 1.49697e-06 2.77675e-12 2.718 ||| 0-4 ||| 7 668016 +a ||| they need to ||| 0.0018315 0.229811 1.49697e-06 1.04837e-06 2.718 ||| 0-2 ||| 546 668016 +a ||| they only have to ask the people ||| 0.5 0.229811 1.49697e-06 1.13095e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| they only have to ask the ||| 0.5 0.229811 1.49697e-06 1.28488e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| they only have to ask ||| 0.5 0.229811 1.49697e-06 2.09292e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| they only have to ||| 0.333333 0.229811 1.49697e-06 1.52213e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| they opposed to ||| 1 0.147072 1.49697e-06 2.83902e-07 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| they play such ||| 1 0.0007051 1.49697e-06 3.99265e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| they play ||| 0.00970874 0.0007051 1.49697e-06 1.92984e-08 2.718 ||| 0-0 ||| 103 668016 +a ||| they prey on ||| 0.333333 0.0782999 1.49697e-06 2.72408e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| they provide on ||| 1 0.0782999 1.49697e-06 3.66265e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| they really want to ||| 0.125 0.229811 1.49697e-06 2.58927e-10 2.718 ||| 0-3 ||| 8 668016 +a ||| they receive their reward ||| 1 0.181122 1.49697e-06 2.46139e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| they receive to ||| 0.5 0.229811 1.49697e-06 1.14796e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| they refer to ||| 0.0232558 0.229811 1.49697e-06 8.92983e-08 2.718 ||| 0-2 ||| 43 668016 +a ||| they referred to ||| 0.25 0.229811 1.49697e-06 1.09422e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| they refused to ||| 0.0769231 0.229811 1.49697e-06 1.36063e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| they represent ||| 0.0028169 0.0041537 1.49697e-06 5.97312e-08 2.718 ||| 0-1 ||| 355 668016 +a ||| they result in ||| 0.0714286 0.0587624 1.49697e-06 1.03252e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| they seem to capture ||| 0.5 0.229811 1.49697e-06 3.03065e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| they seem to ||| 0.0169492 0.229811 1.49697e-06 1.04505e-07 2.718 ||| 0-2 ||| 59 668016 +a ||| they should do - of ||| 1 0.0188479 1.49697e-06 5.5434e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| they should on ||| 1 0.0782999 1.49697e-06 5.48654e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| they take in a high number of ||| 1 0.0587624 1.49697e-06 5.62058e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| they take in a high number ||| 1 0.0587624 1.49697e-06 1.03388e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| they take in a high ||| 1 0.0587624 1.49697e-06 2.08949e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| they take in a ||| 1 0.0587624 1.49697e-06 1.39952e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| they take in ||| 0.5 0.0587624 1.49697e-06 3.15736e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| they then ||| 0.025641 0.0252938 1.49697e-06 2.78256e-06 2.718 ||| 0-1 ||| 39 668016 +a ||| they want by ||| 1 0.0337966 1.49697e-06 1.25545e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| they want to consume ||| 0.5 0.229811 1.49697e-06 1.33633e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| they want to have ||| 0.0384615 0.229811 1.49697e-06 6.3929e-09 2.718 ||| 0-2 ||| 26 668016 +a ||| they want to ||| 0.00600601 0.229811 5.98788e-06 5.34532e-07 2.718 ||| 0-2 ||| 666 668016 +a ||| they were going to ||| 0.0833333 0.229811 2.99394e-06 1.7529e-09 2.718 ||| 0-3 ||| 24 668016 +a ||| they were looking through ||| 0.5 0.230708 1.49697e-06 4.91752e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| they were silent on ||| 0.5 0.0782999 1.49697e-06 1.9076e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| they were tipped off once ||| 0.166667 0.0893962 1.49697e-06 7.32054e-19 2.718 ||| 0-3 ||| 6 668016 +a ||| they were tipped off ||| 0.166667 0.0893962 1.49697e-06 1.78899e-15 2.718 ||| 0-3 ||| 6 668016 +a ||| they were to rectify ||| 0.5 0.229811 1.49697e-06 6.55443e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| they were to ||| 0.0169492 0.229811 1.49697e-06 2.04826e-06 2.718 ||| 0-2 ||| 59 668016 +a ||| they were up to ||| 0.5 0.229811 1.49697e-06 6.98559e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| they will , in the ||| 0.5 0.0587624 1.49697e-06 1.24211e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| they will , in ||| 0.111111 0.0587624 1.49697e-06 2.02325e-07 2.718 ||| 0-3 ||| 9 668016 +a ||| they will also ||| 0.0131579 0.0561595 1.49697e-06 2.3208e-07 2.718 ||| 0-1 ||| 76 668016 +a ||| they will be able to do so ||| 0.166667 0.229811 1.49697e-06 1.16698e-15 2.718 ||| 0-4 ||| 6 668016 +a ||| they will be able to do ||| 0.111111 0.229811 1.49697e-06 5.14157e-13 2.718 ||| 0-4 ||| 9 668016 +a ||| they will be able to ||| 0.0192308 0.229811 2.99394e-06 1.49669e-10 2.718 ||| 0-4 ||| 104 668016 +a ||| they will in ||| 0.125 0.0587624 1.49697e-06 1.69658e-06 2.718 ||| 0-2 ||| 8 668016 +a ||| they will provide more funds for ||| 1 0.0683377 1.49697e-06 5.363e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| they will say ||| 0.0434783 0.0561595 1.49697e-06 4.39374e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| they will still become mad ||| 1 0.0561595 1.49697e-06 5.34172e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| they will still become ||| 1 0.0561595 1.49697e-06 9.89208e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| they will still ||| 0.0588235 0.0561595 1.49697e-06 3.4624e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| they will throw it all away ||| 1 0.0038996 1.49697e-06 2.03204e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| they will throw it all ||| 1 0.0038996 1.49697e-06 6.38804e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| they will to ||| 1 0.229811 1.49697e-06 9.89165e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| they will ||| 0.00492005 0.0561595 1.19758e-05 4.59692e-05 2.718 ||| 0-1 ||| 1626 668016 +a ||| they would undoubtedly have slowed the process ||| 1 0.0007051 1.49697e-06 3.57838e-24 2.718 ||| 0-0 ||| 1 668016 +a ||| they would undoubtedly have slowed the ||| 1 0.0007051 1.49697e-06 8.37047e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| they would undoubtedly have slowed ||| 1 0.0007051 1.49697e-06 1.36345e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| they would undoubtedly have ||| 1 0.0007051 1.49697e-06 1.94779e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| they would undoubtedly ||| 1 0.0007051 1.49697e-06 1.62861e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| they would ||| 0.0021692 0.0007051 1.49697e-06 4.38979e-07 2.718 ||| 0-0 ||| 461 668016 +a ||| they ||| 0.000835155 0.0007051 5.0897e-05 7.48e-05 2.718 ||| 0-0 ||| 40711 668016 +a ||| thin at ||| 0.5 0.204175 1.49697e-06 2.45055e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| thin of late ||| 0.333333 0.0188479 1.49697e-06 6.751e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| thin of ||| 0.333333 0.0188479 1.49697e-06 2.12965e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| thing and meaning another ||| 0.166667 0.0015873 1.49697e-06 5.19442e-15 2.718 ||| 0-1 ||| 6 668016 +a ||| thing and meaning ||| 0.166667 0.0015873 1.49697e-06 2.15447e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| thing and ||| 0.00900901 0.0015873 1.49697e-06 7.04075e-07 2.718 ||| 0-1 ||| 111 668016 +a ||| thing as ||| 0.027027 0.0243476 4.49091e-06 3.20105e-06 2.718 ||| 0-1 ||| 111 668016 +a ||| thing by ||| 0.333333 0.0337966 1.49697e-06 3.00221e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| thing for ||| 0.0352941 0.0683377 4.49091e-06 1.3446e-05 2.718 ||| 0-1 ||| 85 668016 +a ||| thing happened in ||| 1 0.0587624 1.49697e-06 1.3571e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| thing in the ||| 0.0666667 0.0587624 2.99394e-06 1.34596e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| thing in ||| 0.037037 0.0587624 7.48485e-06 2.19241e-05 2.718 ||| 0-1 ||| 135 668016 +a ||| thing is for Europe to ||| 0.5 0.229811 1.49697e-06 1.55799e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| thing is for ||| 0.0344828 0.0683377 1.49697e-06 4.21413e-07 2.718 ||| 0-2 ||| 29 668016 +a ||| thing of the past ||| 0.00980392 0.0188479 1.49697e-06 8.48808e-11 2.718 ||| 0-1 ||| 102 668016 +a ||| thing of the ||| 0.00877193 0.0188479 1.49697e-06 6.62614e-07 2.718 ||| 0-1 ||| 114 668016 +a ||| thing of ||| 0.0447761 0.0188479 4.49091e-06 1.07932e-05 2.718 ||| 0-1 ||| 67 668016 +a ||| thing to be just ||| 1 0.229811 1.49697e-06 2.9228e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| thing to be ||| 0.0833333 0.229811 1.49697e-06 2.31656e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| thing to you ||| 0.125 0.229811 1.49697e-06 4.12709e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| thing to ||| 0.0273973 0.229811 8.98182e-06 0.000127825 2.718 ||| 0-1 ||| 219 668016 +a ||| things , for ||| 0.04 0.0683377 1.49697e-06 1.80608e-06 2.718 ||| 0-2 ||| 25 668016 +a ||| things , ||| 0.000523834 0.0001191 1.49697e-06 1.09532e-07 2.718 ||| 0-1 ||| 1909 668016 +a ||| things appear behind ||| 1 0.0923313 1.49697e-06 2.76738e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| things are going to ||| 0.125 0.229811 1.49697e-06 1.86947e-09 2.718 ||| 0-3 ||| 8 668016 +a ||| things as ||| 0.00555556 0.0243476 1.49697e-06 3.60546e-06 2.718 ||| 0-1 ||| 180 668016 +a ||| things at ||| 0.0285714 0.204175 1.49697e-06 1.39885e-05 2.718 ||| 0-1 ||| 35 668016 +a ||| things easier for ||| 0.0526316 0.0683377 1.49697e-06 1.0571e-09 2.718 ||| 0-2 ||| 19 668016 +a ||| things for ||| 0.0120482 0.0683377 1.49697e-06 1.51447e-05 2.718 ||| 0-1 ||| 83 668016 +a ||| things happen to ||| 0.2 0.229811 1.49697e-06 1.565e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| things in ||| 0.00284091 0.0587624 1.49697e-06 2.46939e-05 2.718 ||| 0-1 ||| 352 668016 +a ||| things into ||| 0.030303 0.107578 1.49697e-06 2.49654e-06 2.718 ||| 0-1 ||| 33 668016 +a ||| things may in ||| 1 0.0587624 1.49697e-06 1.85007e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| things on the ||| 0.0454545 0.0782999 1.49697e-06 9.57192e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| things on ||| 0.0121951 0.0782999 1.49697e-06 1.55915e-05 2.718 ||| 0-1 ||| 82 668016 +a ||| things out ||| 0.0285714 0.0669777 1.49697e-06 1.68551e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| things stand at ||| 0.0178571 0.204175 1.49697e-06 2.30531e-09 2.718 ||| 0-2 ||| 56 668016 +a ||| things through . you ||| 1 0.230708 1.49697e-06 3.19512e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| things through . ||| 0.5 0.230708 1.49697e-06 9.89599e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| things through ||| 0.047619 0.230708 1.49697e-06 3.26708e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| things to ||| 0.0126984 0.229811 5.98788e-06 0.000143974 2.718 ||| 0-1 ||| 315 668016 +a ||| think , to ||| 0.1 0.229811 1.49697e-06 1.5979e-05 2.718 ||| 0-2 ||| 10 668016 +a ||| think about the ||| 0.00515464 0.0004654 1.49697e-06 8.29036e-10 2.718 ||| 0-2 ||| 194 668016 +a ||| think of it as associated with ||| 1 0.0571592 1.49697e-06 3.24442e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| think of ||| 0.00610687 0.0188479 5.98788e-06 1.13138e-05 2.718 ||| 0-1 ||| 655 668016 +a ||| think that I can ||| 1 0.0013612 1.49697e-06 1.41311e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| think that I ||| 0.0714286 0.0013612 1.49697e-06 4.75106e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| think that in ||| 0.0227273 0.0587624 1.49697e-06 3.86587e-07 2.718 ||| 0-2 ||| 44 668016 +a ||| think that on ||| 0.5 0.0782999 1.49697e-06 2.44088e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| think the rapporteur hits the nail ||| 0.5 0.203046 1.49697e-06 2.20654e-20 2.718 ||| 0-3 ||| 2 668016 +a ||| think the rapporteur hits the ||| 0.5 0.203046 1.49697e-06 3.80438e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| think the rapporteur hits ||| 0.5 0.203046 1.49697e-06 6.19688e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| thinking , ||| 0.00531915 0.0006359 1.49697e-06 3.21988e-07 2.718 ||| 0-0 ||| 188 668016 +a ||| thinking appears to me to ||| 0.5 0.229811 1.49697e-06 7.24931e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| thinking behind ||| 0.0120482 0.0923313 1.49697e-06 5.70866e-08 2.718 ||| 0-1 ||| 83 668016 +a ||| thinking of ||| 0.0229885 0.0188479 1.79636e-05 2.19177e-06 2.718 ||| 0-1 ||| 522 668016 +a ||| thinking ||| 0.000352983 0.0006359 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 2833 668016 +a ||| third-country nationals for ||| 0.0666667 0.0683377 1.49697e-06 1.93971e-12 2.718 ||| 0-2 ||| 15 668016 +a ||| this , as ||| 0.00784314 0.0243476 2.99394e-06 6.75959e-06 2.718 ||| 0-2 ||| 255 668016 +a ||| this , at ||| 0.0588235 0.204175 1.49697e-06 2.62261e-05 2.718 ||| 0-2 ||| 17 668016 +a ||| this , both in ||| 0.25 0.0587624 1.49697e-06 7.66905e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| this , in ||| 0.016 0.0587624 5.98788e-06 4.62967e-05 2.718 ||| 0-2 ||| 250 668016 +a ||| this , then , ||| 0.0208333 2.47e-05 1.49697e-06 2.72541e-10 2.718 ||| 0-0 ||| 48 668016 +a ||| this , then ||| 0.0113636 2.47e-05 1.49697e-06 2.28537e-09 2.718 ||| 0-0 ||| 88 668016 +a ||| this , ||| 0.000112397 2.47e-05 1.49697e-06 1.41913e-06 2.718 ||| 0-0 ||| 8897 668016 +a ||| this - to ||| 0.03125 0.229811 1.49697e-06 8.53792e-06 2.718 ||| 0-2 ||| 32 668016 +a ||| this House to ||| 0.00294985 0.229811 2.99394e-06 5.66086e-07 2.718 ||| 0-2 ||| 678 668016 +a ||| this I will use to ||| 1 0.229811 1.49697e-06 6.73433e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| this action - as I urge them ||| 1 0.0243476 1.49697e-06 4.01026e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| this action - as I urge ||| 1 0.0243476 1.49697e-06 1.49503e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| this action - as I ||| 1 0.0243476 1.49697e-06 4.57194e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| this action - as ||| 1 0.0243476 1.49697e-06 6.46348e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| this afternoon for ||| 0.25 0.0683377 1.49697e-06 2.3095e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| this applies to ||| 0.0041841 0.229811 1.49697e-06 1.89676e-07 2.718 ||| 0-2 ||| 239 668016 +a ||| this area to ||| 0.0123457 0.229811 1.49697e-06 9.40006e-07 2.718 ||| 0-2 ||| 81 668016 +a ||| this as ||| 0.000884956 0.0243476 1.49697e-06 5.6682e-05 2.718 ||| 0-1 ||| 1130 668016 +a ||| this at a ||| 0.0166667 0.204175 1.49697e-06 9.74797e-06 2.718 ||| 0-1 ||| 60 668016 +a ||| this at ||| 0.0202312 0.204175 1.04788e-05 0.000219916 2.718 ||| 0-1 ||| 346 668016 +a ||| this because , to be perfectly ||| 1 0.229811 1.49697e-06 6.12441e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| this because , to be ||| 1 0.229811 1.49697e-06 1.60746e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| this because , to ||| 1 0.229811 1.49697e-06 8.86976e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| this can be seen most clearly from ||| 1 0.0435582 1.49697e-06 4.16293e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| this challenge on ||| 0.5 0.0782999 1.49697e-06 1.0491e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| this debate so close to ||| 0.333333 0.229811 1.49697e-06 1.50773e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| this does not deter ||| 1 0.184332 1.49697e-06 5.64757e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| this experience at ||| 1 0.204175 1.49697e-06 1.51962e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| this from ||| 0.0194805 0.0435582 4.49091e-06 4.65143e-05 2.718 ||| 0-1 ||| 154 668016 +a ||| this generates for ||| 0.5 0.0683377 1.49697e-06 5.23804e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| this goes to show ||| 0.0555556 0.229811 1.49697e-06 4.19758e-11 2.718 ||| 0-2 ||| 18 668016 +a ||| this goes to ||| 0.0666667 0.229811 1.49697e-06 3.13486e-07 2.718 ||| 0-2 ||| 15 668016 +a ||| this has , in ||| 0.5 0.0587624 1.49697e-06 2.38312e-07 2.718 ||| 0-3 ||| 2 668016 +a ||| this has to be done ||| 0.03125 0.229811 1.49697e-06 9.62848e-11 2.718 ||| 0-2 ||| 32 668016 +a ||| this has to be ||| 0.00970874 0.229811 1.49697e-06 2.11151e-07 2.718 ||| 0-2 ||| 103 668016 +a ||| this has to ||| 0.00727273 0.229811 2.99394e-06 1.16511e-05 2.718 ||| 0-2 ||| 275 668016 +a ||| this in for ||| 1 0.0587624 1.49697e-06 2.98372e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| this in ||| 0.00636075 0.0587624 2.09576e-05 0.000388217 2.718 ||| 0-1 ||| 2201 668016 +a ||| this into ||| 0.00454545 0.107578 1.49697e-06 3.92485e-05 2.718 ||| 0-1 ||| 220 668016 +a ||| this involves ||| 0.00284091 0.0681747 1.49697e-06 1.28e-06 2.718 ||| 0-1 ||| 352 668016 +a ||| this is , when ||| 1 0.0055468 1.49697e-06 7.49373e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| this is a matter for ||| 0.011236 0.0683377 1.49697e-06 3.43167e-10 2.718 ||| 0-4 ||| 89 668016 +a ||| this is as ||| 0.0217391 0.0243476 1.49697e-06 1.77648e-06 2.718 ||| 0-2 ||| 46 668016 +a ||| this is at ||| 0.015873 0.204175 1.49697e-06 6.89242e-06 2.718 ||| 0-2 ||| 63 668016 +a ||| this is closely related to the fact ||| 1 0.229811 1.49697e-06 7.39506e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| this is closely related to the ||| 0.25 0.229811 1.49697e-06 2.52451e-14 2.718 ||| 0-4 ||| 4 668016 +a ||| this is closely related to ||| 0.2 0.229811 1.49697e-06 4.11214e-13 2.718 ||| 0-4 ||| 5 668016 +a ||| this is down to ||| 0.0769231 0.229811 1.49697e-06 4.95223e-08 2.718 ||| 0-3 ||| 13 668016 +a ||| this is in ||| 0.00533333 0.0587624 2.99394e-06 1.21671e-05 2.718 ||| 0-2 ||| 375 668016 +a ||| this is on ||| 0.0487805 0.0782999 2.99394e-06 7.68224e-06 2.718 ||| 0-2 ||| 41 668016 +a ||| this is something to ||| 0.0555556 0.229811 2.99394e-06 3.92645e-08 2.718 ||| 0-3 ||| 36 668016 +a ||| this is to ||| 0.00557103 0.229811 2.99394e-06 7.09387e-05 2.718 ||| 0-2 ||| 359 668016 +a ||| this is ||| 3.42636e-05 2.47e-05 2.99394e-06 3.72959e-07 2.718 ||| 0-0 ||| 58371 668016 +a ||| this item , to the extent ||| 1 0.229811 1.49697e-06 1.20393e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| this item , to the ||| 1 0.229811 1.49697e-06 6.26392e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| this item , to ||| 1 0.229811 1.49697e-06 1.02032e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| this juncture to ||| 0.166667 0.229811 1.49697e-06 2.19554e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| this kind of assessment would ||| 0.5 0.0188479 1.49697e-06 2.38097e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| this kind of assessment ||| 0.25 0.0188479 1.49697e-06 4.05706e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| this kind of ||| 0.000718907 0.0188479 1.49697e-06 9.32658e-08 2.718 ||| 0-2 ||| 1391 668016 +a ||| this marking to ||| 1 0.229811 1.49697e-06 1.62968e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| this matter even ||| 0.166667 0.0495435 1.49697e-06 1.30823e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| this matter to ||| 0.0078125 0.229811 1.49697e-06 2.34832e-06 2.718 ||| 0-2 ||| 128 668016 +a ||| this may be for ||| 0.333333 0.0683377 1.49697e-06 3.23275e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| this means cooperation on a basis ||| 1 0.0782999 1.49697e-06 3.76542e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| this means cooperation on a ||| 1 0.0782999 1.49697e-06 6.34123e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| this means cooperation on ||| 1 0.0782999 1.49697e-06 1.4306e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| this measure in ||| 0.0588235 0.0587624 1.49697e-06 2.90775e-08 2.718 ||| 0-2 ||| 17 668016 +a ||| this meeting for ||| 0.5 0.0683377 1.49697e-06 2.99045e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| this morning , there will be a ||| 1 2.47e-05 1.49697e-06 5.44162e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| this morning , there will be ||| 0.5 2.47e-05 1.49697e-06 1.22764e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| this morning , there will ||| 0.5 2.47e-05 1.49697e-06 6.77399e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| this morning , there ||| 0.142857 2.47e-05 1.49697e-06 7.83011e-14 2.718 ||| 0-0 ||| 7 668016 +a ||| this morning , ||| 0.00129199 2.47e-05 1.49697e-06 2.55444e-11 2.718 ||| 0-0 ||| 774 668016 +a ||| this morning ||| 0.000245278 2.47e-05 1.49697e-06 2.142e-10 2.718 ||| 0-0 ||| 4077 668016 +a ||| this must be done whilst meeting ||| 1 0.0442295 1.49697e-06 2.64019e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| this must be done whilst ||| 1 0.0442295 1.49697e-06 2.10206e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| this needs to ||| 0.00653595 0.229811 1.49697e-06 4.4884e-07 2.718 ||| 0-2 ||| 153 668016 +a ||| this on previous ||| 1 0.0782999 1.49697e-06 1.25255e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| this on the ||| 0.0138889 0.0782999 1.49697e-06 1.50482e-05 2.718 ||| 0-1 ||| 72 668016 +a ||| this on to ||| 0.3 0.154056 4.49091e-06 8.58649e-05 2.718 ||| 0-1 0-2 ||| 10 668016 +a ||| this on ||| 0.0260586 0.0782999 1.19758e-05 0.000245117 2.718 ||| 0-1 ||| 307 668016 +a ||| this opportunity to ||| 0.00172811 0.229811 4.49091e-06 4.07193e-07 2.718 ||| 0-2 ||| 1736 668016 +a ||| this out to ||| 0.0714286 0.229811 1.49697e-06 8.66988e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| this platform on ||| 1 0.0782999 1.49697e-06 1.22559e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| this point I turn to ||| 1 0.229811 1.49697e-06 3.14013e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| this point in time ||| 0.00862069 0.0587624 1.49697e-06 5.57541e-10 2.718 ||| 0-2 ||| 116 668016 +a ||| this point in ||| 0.0126582 0.0587624 2.99394e-06 3.39612e-07 2.718 ||| 0-2 ||| 158 668016 +a ||| this preliminary draft report to ||| 1 0.229811 1.49697e-06 4.38378e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| this protection to ||| 0.0666667 0.229811 1.49697e-06 2.29739e-07 2.718 ||| 0-2 ||| 15 668016 +a ||| this purpose with ||| 0.333333 0.0571592 1.49697e-06 1.94065e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| this put to ||| 1 0.229811 1.49697e-06 2.49567e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| this reminds me of ||| 0.0344828 0.0188479 1.49697e-06 2.87681e-13 2.718 ||| 0-3 ||| 29 668016 +a ||| this report to ||| 0.00330033 0.229811 1.49697e-06 9.27784e-07 2.718 ||| 0-2 ||| 303 668016 +a ||| this resolution to ||| 0.0142857 0.229811 1.49697e-06 1.97825e-07 2.718 ||| 0-2 ||| 70 668016 +a ||| this respect , in ||| 0.0588235 0.0587624 1.49697e-06 2.0028e-08 2.718 ||| 0-3 ||| 17 668016 +a ||| this rule was applied to ||| 0.5 0.229811 1.49697e-06 6.24379e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| this should be so ||| 0.142857 0.0007673 1.49697e-06 4.1665e-11 2.718 ||| 0-3 ||| 7 668016 +a ||| this should include ||| 0.0377358 0.0281253 2.99394e-06 7.57848e-09 2.718 ||| 0-2 ||| 53 668016 +a ||| this task to ||| 0.0588235 0.229811 1.49697e-06 2.85193e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| this to be ||| 0.0038835 0.229811 2.99394e-06 4.10201e-05 2.718 ||| 0-1 ||| 515 668016 +a ||| this to you ||| 0.047619 0.229811 1.49697e-06 7.30796e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| this to ||| 0.0308219 0.229811 6.73637e-05 0.00226344 2.718 ||| 0-1 ||| 1460 668016 +a ||| this up with ||| 0.0909091 0.0571592 1.49697e-06 3.67903e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| this very afternoon , to ||| 1 0.229811 1.49697e-06 9.1103e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| this was in ||| 0.0277778 0.0587624 1.49697e-06 1.21628e-06 2.718 ||| 0-2 ||| 36 668016 +a ||| this way , on ||| 0.2 0.0782999 1.49697e-06 6.30111e-08 2.718 ||| 0-3 ||| 5 668016 +a ||| this way being brought to bear upon ||| 0.5 0.19056 1.49697e-06 2.91054e-19 2.718 ||| 0-6 ||| 2 668016 +a ||| this will , I believe , reassure ||| 1 0.284916 1.49697e-06 4.88921e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| this will be discussed in relation to ||| 1 0.229811 1.49697e-06 9.7024e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| this will be true ||| 0.5 0.0561595 1.49697e-06 2.66509e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| this will be ||| 0.000682594 0.0561595 1.49697e-06 1.64919e-06 2.718 ||| 0-1 ||| 1465 668016 +a ||| this will serve as an encouragement to ||| 1 0.229811 1.49697e-06 5.7103e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| this will ||| 0.00146306 0.0561595 5.98788e-06 9.10004e-05 2.718 ||| 0-1 ||| 2734 668016 +a ||| this with a ||| 0.0243902 0.0571592 1.49697e-06 4.78159e-06 2.718 ||| 0-1 ||| 41 668016 +a ||| this with ||| 0.00959693 0.0571592 7.48485e-06 0.000107874 2.718 ||| 0-1 ||| 521 668016 +a ||| this would in ||| 0.0714286 0.0587624 1.49697e-06 2.27833e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| this would lead to ||| 0.016129 0.229811 1.49697e-06 2.55706e-09 2.718 ||| 0-3 ||| 62 668016 +a ||| this year to ||| 0.0108696 0.229811 1.49697e-06 5.64502e-07 2.718 ||| 0-2 ||| 92 668016 +a ||| this ||| 1.75021e-05 2.47e-05 1.34727e-05 1.19e-05 2.718 ||| 0-0 ||| 514225 668016 +a ||| thorn in ||| 0.0833333 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| thorough , careful look at ||| 1 0.204175 1.49697e-06 5.76816e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| thoroughly to ||| 0.166667 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| thoroughly ||| 0.00416667 0.0915663 5.98788e-06 0.0001041 2.718 ||| 0-0 ||| 960 668016 +a ||| those applied to ||| 0.0555556 0.229811 1.49697e-06 2.74707e-08 2.718 ||| 0-2 ||| 18 668016 +a ||| those are ||| 0.00302115 0.018252 2.99394e-06 1.5247e-05 2.718 ||| 0-0 ||| 662 668016 +a ||| those at ||| 0.0194175 0.204175 2.99394e-06 2.4645e-05 2.718 ||| 0-1 ||| 103 668016 +a ||| those belonging to ||| 0.0416667 0.229811 1.49697e-06 6.84864e-09 2.718 ||| 0-2 ||| 24 668016 +a ||| those concerning ||| 0.00609756 0.22348 1.49697e-06 2.96157e-06 2.718 ||| 0-1 ||| 164 668016 +a ||| those countries which want to ||| 0.166667 0.229811 1.49697e-06 3.82477e-13 2.718 ||| 0-4 ||| 6 668016 +a ||| those elections , ||| 0.0555556 0.018252 1.49697e-06 4.31421e-09 2.718 ||| 0-0 ||| 18 668016 +a ||| those elections ||| 0.0116279 0.018252 1.49697e-06 3.61764e-08 2.718 ||| 0-0 ||| 86 668016 +a ||| those engaged in ||| 0.016129 0.0587624 1.49697e-06 1.78374e-09 2.718 ||| 0-2 ||| 62 668016 +a ||| those for ||| 0.0114504 0.0683377 4.49091e-06 2.6682e-05 2.718 ||| 0-1 ||| 262 668016 +a ||| those forming part of ||| 0.25 0.018252 1.49697e-06 5.86173e-13 2.718 ||| 0-0 ||| 4 668016 +a ||| those forming part ||| 0.333333 0.018252 1.49697e-06 1.07824e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| those forming ||| 0.142857 0.018252 1.49697e-06 9.0441e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| those from ||| 0.00352113 0.0435582 1.49697e-06 5.21265e-06 2.718 ||| 0-1 ||| 284 668016 +a ||| those having to pay ||| 0.333333 0.229811 1.49697e-06 1.39081e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| those having to ||| 0.25 0.229811 1.49697e-06 9.71239e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| those here ||| 0.0555556 0.018252 1.49697e-06 2.03774e-06 2.718 ||| 0-0 ||| 18 668016 +a ||| those in need ||| 0.016129 0.0587624 1.49697e-06 3.98904e-08 2.718 ||| 0-1 ||| 62 668016 +a ||| those in ||| 0.00720367 0.0587624 1.64667e-05 4.35057e-05 2.718 ||| 0-1 ||| 1527 668016 +a ||| those intended ||| 0.0344828 0.018252 1.49697e-06 8.82302e-08 2.718 ||| 0-0 ||| 29 668016 +a ||| those into ||| 0.25 0.107578 1.49697e-06 4.3984e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| those laid down in ||| 0.0333333 0.0587624 1.49697e-06 3.31048e-12 2.718 ||| 0-3 ||| 30 668016 +a ||| those languages closer to ||| 1 0.229811 1.49697e-06 9.72507e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| those members of ||| 0.0294118 0.0188479 1.49697e-06 3.15912e-09 2.718 ||| 0-2 ||| 34 668016 +a ||| those misled ||| 0.2 0.229885 1.49697e-06 3.96807e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| those of us who were ||| 0.0555556 0.0188479 1.49697e-06 9.75349e-14 2.718 ||| 0-1 ||| 18 668016 +a ||| those of us who ||| 0.00286533 0.0188479 1.49697e-06 5.44462e-11 2.718 ||| 0-1 ||| 349 668016 +a ||| those of us ||| 0.00721154 0.018252 4.49091e-06 1.57456e-07 2.718 ||| 0-0 ||| 416 668016 +a ||| those of you ||| 0.00684932 0.018252 1.49697e-06 1.76385e-07 2.718 ||| 0-0 ||| 146 668016 +a ||| those of ||| 0.00960901 0.0188479 4.34121e-05 2.14178e-05 2.718 ||| 0-1 ||| 3018 668016 +a ||| those on ||| 0.0078329 0.0782999 4.49091e-06 2.74692e-05 2.718 ||| 0-1 ||| 383 668016 +a ||| those out ||| 0.125 0.018252 1.49697e-06 3.84917e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| those particular ||| 0.125 0.018252 1.49697e-06 6.18415e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| those people - representing the ||| 1 0.194985 1.49697e-06 5.13338e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| those people - representing ||| 1 0.194985 1.49697e-06 8.36166e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| those people who really want to invest ||| 1 0.229811 1.49697e-06 4.19184e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| those people who really want to ||| 0.5 0.229811 1.49697e-06 4.4594e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| those placed on ||| 0.5 0.0782999 1.49697e-06 3.43914e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| those points ||| 0.00826446 0.018252 1.49697e-06 1.30537e-07 2.718 ||| 0-0 ||| 121 668016 +a ||| those producing ||| 0.0833333 0.018252 1.49697e-06 3.36641e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| those provisions ||| 0.0135135 0.018252 1.49697e-06 7.91861e-08 2.718 ||| 0-0 ||| 74 668016 +a ||| those relating to ||| 0.00373134 0.229811 1.49697e-06 2.88404e-08 2.718 ||| 0-2 ||| 268 668016 +a ||| those responsible for ||| 0.00239234 0.0683377 1.49697e-06 3.94627e-09 2.718 ||| 0-2 ||| 418 668016 +a ||| those rights enjoyed by ||| 1 0.0337966 1.49697e-06 2.74184e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| those rights to ||| 0.25 0.229811 1.49697e-06 5.0756e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| those solutions ||| 0.0769231 0.018252 1.49697e-06 1.91936e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| those to ||| 0.0166667 0.124032 2.99394e-06 0.000352018 2.718 ||| 0-0 0-1 ||| 120 668016 +a ||| those voiced ||| 0.2 0.018252 1.49697e-06 9.0441e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| those we have seen in ||| 0.142857 0.0587624 1.49697e-06 1.24339e-12 2.718 ||| 0-4 ||| 7 668016 +a ||| those which ||| 0.00106496 0.018252 1.49697e-06 8.53622e-06 2.718 ||| 0-0 ||| 939 668016 +a ||| those who are under ||| 0.166667 0.0384416 1.49697e-06 1.37445e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| those who are ||| 0.000755287 0.018252 1.49697e-06 1.34479e-08 2.718 ||| 0-0 ||| 1324 668016 +a ||| those who benefit from ||| 0.1 0.018252 1.49697e-06 1.8798e-13 2.718 ||| 0-0 ||| 10 668016 +a ||| those who benefit ||| 0.2 0.018252 1.49697e-06 1.16729e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| those who doubt us ||| 1 0.018252 1.49697e-06 2.33486e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| those who doubt ||| 0.0909091 0.018252 1.49697e-06 8.10098e-11 2.718 ||| 0-0 ||| 11 668016 +a ||| those who have ||| 0.000588235 0.018252 1.49697e-06 1.06002e-08 2.718 ||| 0-0 ||| 1700 668016 +a ||| those who planned to ||| 0.333333 0.229811 1.49697e-06 7.6513e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| those who ||| 0.000359583 0.018252 7.48485e-06 8.86322e-07 2.718 ||| 0-0 ||| 13905 668016 +a ||| those with chips on ||| 1 0.0782999 1.49697e-06 1.22956e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| those with ||| 0.00353982 0.018252 2.99394e-06 6.42583e-06 2.718 ||| 0-0 ||| 565 668016 +a ||| those women who help their ||| 1 0.259976 1.49697e-06 5.78432e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| those women who help ||| 1 0.259976 1.49697e-06 4.99035e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| those ||| 0.00740041 0.018252 0.000645194 0.0010049 2.718 ||| 0-0 ||| 58240 668016 +a ||| though , as to ||| 0.333333 0.229811 1.49697e-06 1.05848e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| though , for ||| 0.1 0.0683377 2.99394e-06 1.09112e-06 2.718 ||| 0-2 ||| 20 668016 +a ||| though , has to do ||| 1 0.229811 1.49697e-06 1.83424e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| though , has to ||| 1 0.229811 1.49697e-06 5.33938e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| though , is ||| 0.00869565 0.0171304 1.49697e-06 7.26584e-07 2.718 ||| 0-0 ||| 115 668016 +a ||| though , let us congratulate ||| 1 0.245244 1.49697e-06 1.16056e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| though , look to ||| 1 0.229811 1.49697e-06 3.02366e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| though , to ||| 0.0625 0.229811 2.99394e-06 1.03728e-05 2.718 ||| 0-2 ||| 32 668016 +a ||| though , ||| 0.00167598 0.0171304 4.49091e-06 2.31831e-05 2.718 ||| 0-0 ||| 1790 668016 +a ||| though it ||| 0.00389105 0.0171304 1.49697e-06 3.45705e-06 2.718 ||| 0-0 ||| 257 668016 +a ||| though on a ||| 0.5 0.0782999 1.49697e-06 4.17523e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| though on ||| 0.166667 0.0782999 1.49697e-06 9.41941e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| though that may be , then a ||| 1 0.0252938 1.49697e-06 2.55562e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| though that may be , then ||| 1 0.0252938 1.49697e-06 5.76553e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| though there were ||| 0.166667 0.0171304 1.49697e-06 1.06749e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| though there ||| 0.0263158 0.0171304 1.49697e-06 5.95894e-07 2.718 ||| 0-0 ||| 38 668016 +a ||| though they ||| 0.00884956 0.0171304 1.49697e-06 6.34522e-07 2.718 ||| 0-0 ||| 113 668016 +a ||| though this ||| 0.00746269 0.0171304 1.49697e-06 1.2561e-06 2.718 ||| 0-0 ||| 134 668016 +a ||| though we shall be ||| 0.5 0.131911 1.49697e-06 1.23374e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| though we shall ||| 0.5 0.131911 1.49697e-06 6.80763e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| though ||| 0.00216245 0.0171304 2.39515e-05 0.0001944 2.718 ||| 0-0 ||| 7399 668016 +a ||| thought of ||| 0.0078125 0.0188479 1.49697e-06 2.45797e-06 2.718 ||| 0-1 ||| 128 668016 +a ||| thought through ||| 0.0140845 0.230708 1.49697e-06 6.6057e-07 2.718 ||| 0-1 ||| 71 668016 +a ||| thought to how ||| 0.5 0.229811 1.49697e-06 1.0433e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| thought to put ||| 1 0.229811 1.49697e-06 3.20968e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| thought to ||| 0.0454545 0.229811 1.19758e-05 2.91101e-05 2.718 ||| 0-1 ||| 176 668016 +a ||| thought up ||| 0.05 0.0195077 1.49697e-06 1.02014e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| thoughts more to ||| 1 0.229811 1.49697e-06 7.75984e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| thoughts to ||| 0.0588235 0.229811 1.49697e-06 3.39793e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| thousand miles ||| 0.25 0.0526316 1.49697e-06 1.8368e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| thousand to ||| 0.111111 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| threat , because , ladies and gentlemen ||| 1 0.0015873 1.49697e-06 1.45815e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| threat , because , ladies and ||| 1 0.0015873 1.49697e-06 2.1102e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| threat of ||| 0.00118483 0.0188479 1.49697e-06 1.15948e-06 2.718 ||| 0-1 ||| 844 668016 +a ||| threat to security ||| 0.0416667 0.229811 1.49697e-06 1.12189e-09 2.718 ||| 0-1 ||| 24 668016 +a ||| threat to ||| 0.00273038 0.229811 5.98788e-06 1.37318e-05 2.718 ||| 0-1 ||| 1465 668016 +a ||| threaten to prevent ||| 1 0.229811 1.49697e-06 6.44415e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| threaten to ||| 0.00990099 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-1 ||| 101 668016 +a ||| threatened because of ||| 0.333333 0.0120263 1.49697e-06 7.54988e-11 2.718 ||| 0-1 0-2 ||| 3 668016 +a ||| threatening as ||| 0.5 0.0243476 1.49697e-06 5.08799e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| threatening to engulf ||| 0.25 0.229811 1.49697e-06 1.42222e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| threatening to ||| 0.00458716 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-1 ||| 218 668016 +a ||| threatening ||| 0.0036855 0.0909091 4.49091e-06 9.22e-05 2.718 ||| 0-0 ||| 814 668016 +a ||| threatens assistance for ||| 0.166667 0.0683377 1.49697e-06 5.86039e-12 2.718 ||| 0-2 ||| 6 668016 +a ||| threatens to ||| 0.00512821 0.152472 1.49697e-06 2.26995e-05 2.718 ||| 0-0 0-1 ||| 195 668016 +a ||| threatens ||| 0.00153846 0.0751323 1.49697e-06 6.48e-05 2.718 ||| 0-0 ||| 650 668016 +a ||| threats against ||| 0.0222222 0.05146 1.49697e-06 1.68967e-08 2.718 ||| 0-1 ||| 45 668016 +a ||| three countries to pre-empt such a ||| 1 0.229811 1.49697e-06 5.40481e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| three countries to pre-empt such ||| 1 0.229811 1.49697e-06 1.21934e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| three countries to pre-empt ||| 1 0.229811 1.49697e-06 5.89365e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| three countries to ||| 0.0588235 0.229811 1.49697e-06 8.4195e-09 2.718 ||| 0-2 ||| 17 668016 +a ||| three days after ||| 0.0454545 0.0341027 1.49697e-06 3.38222e-12 2.718 ||| 0-2 ||| 22 668016 +a ||| threshold for ||| 0.0104167 0.0683377 1.49697e-06 4.23758e-07 2.718 ||| 0-1 ||| 96 668016 +a ||| thresholds to ||| 0.25 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| thrifty with ||| 0.25 0.0571592 1.49697e-06 6.67804e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| thriving democracy , for ||| 1 0.0683377 1.49697e-06 1.40663e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| throats of ||| 0.428571 0.0188479 4.49091e-06 1.39019e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| through , ||| 0.0163934 0.230708 4.49091e-06 0.000947968 2.718 ||| 0-0 ||| 183 668016 +a ||| through - will back ||| 1 0.230708 1.49697e-06 1.74475e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| through - will ||| 1 0.230708 1.49697e-06 2.59405e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| through - ||| 0.0833333 0.230708 1.49697e-06 2.99848e-05 2.718 ||| 0-0 ||| 12 668016 +a ||| through . you ||| 1 0.230708 1.49697e-06 7.77401e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| through . ||| 0.00438596 0.230708 1.49697e-06 2.40778e-05 2.718 ||| 0-0 ||| 228 668016 +a ||| through Europe , have them peeled ||| 1 0.230708 1.49697e-06 1.07718e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| through Europe , have them ||| 1 0.230708 1.49697e-06 1.53883e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| through Europe , have ||| 1 0.230708 1.49697e-06 5.73678e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| through Europe , ||| 0.111111 0.230708 1.49697e-06 4.79672e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| through Europe ||| 0.030303 0.230708 1.49697e-06 4.02224e-06 2.718 ||| 0-0 ||| 33 668016 +a ||| through Parliament ||| 0.0114943 0.230708 1.49697e-06 4.56278e-06 2.718 ||| 0-0 ||| 87 668016 +a ||| through a concession ||| 1 0.230708 1.49697e-06 1.26846e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| through a ||| 0.0026738 0.230708 5.98788e-06 0.00035235 2.718 ||| 0-0 ||| 1496 668016 +a ||| through also , at ||| 1 0.204175 1.49697e-06 9.43232e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| through an ||| 0.00291545 0.230708 1.49697e-06 3.53314e-05 2.718 ||| 0-0 ||| 343 668016 +a ||| through and ||| 0.0126582 0.230708 1.49697e-06 9.95696e-05 2.718 ||| 0-0 ||| 79 668016 +a ||| through at a ||| 0.333333 0.204175 1.49697e-06 6.9443e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| through at ||| 0.181818 0.204175 5.98788e-06 1.56665e-05 2.718 ||| 0-1 ||| 22 668016 +a ||| through ball here ||| 1 0.0182742 1.49697e-06 3.7202e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| through by ||| 0.0625 0.230708 1.49697e-06 4.17336e-05 2.718 ||| 0-0 ||| 16 668016 +a ||| through consultation ||| 0.0384615 0.230708 1.49697e-06 1.17647e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| through continued ||| 0.142857 0.230708 1.49697e-06 2.71859e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| through favourable treatment of ||| 0.333333 0.0188479 1.49697e-06 1.59799e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| through in ||| 0.021978 0.144735 2.99394e-06 0.000477602 2.718 ||| 0-0 0-1 ||| 91 668016 +a ||| through interpretation ||| 0.5 0.230708 1.49697e-06 1.25596e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| through into ||| 0.166667 0.169143 1.49697e-06 4.82852e-05 2.718 ||| 0-0 0-1 ||| 6 668016 +a ||| through its legislation and institutions , ||| 1 0.230708 1.49697e-06 7.13182e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| through its legislation and institutions ||| 1 0.230708 1.49697e-06 5.98033e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| through its legislation and ||| 1 0.230708 1.49697e-06 1.13911e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| through its legislation ||| 0.5 0.230708 1.49697e-06 9.09404e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| through its ||| 0.00293686 0.230708 2.99394e-06 1.13251e-05 2.718 ||| 0-0 ||| 681 668016 +a ||| through legal ||| 0.333333 0.230708 1.49697e-06 1.0302e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| through logically to ||| 1 0.229811 1.49697e-06 1.77368e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| through means ||| 1 0.230708 1.49697e-06 5.03734e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| through more ||| 0.030303 0.230708 1.49697e-06 1.81534e-05 2.718 ||| 0-0 ||| 33 668016 +a ||| through now ||| 0.2 0.230708 1.49697e-06 1.63744e-05 2.718 ||| 0-0 ||| 5 668016 +a ||| through on ||| 0.037037 0.0782999 1.49697e-06 1.74618e-05 2.718 ||| 0-1 ||| 27 668016 +a ||| through other ||| 0.0169492 0.230708 1.49697e-06 1.02981e-05 2.718 ||| 0-0 ||| 59 668016 +a ||| through our ||| 0.0026455 0.230708 1.49697e-06 1.0965e-05 2.718 ||| 0-0 ||| 378 668016 +a ||| through specialist ||| 1 0.230708 1.49697e-06 2.30524e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| through substantial support for ||| 1 0.230708 1.49697e-06 6.24556e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| through substantial support ||| 1 0.230708 1.49697e-06 8.12621e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| through substantial ||| 0.5 0.230708 1.49697e-06 2.37678e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| through supporting ||| 0.1 0.210664 1.49697e-06 9.11285e-06 2.718 ||| 0-0 0-1 ||| 10 668016 +a ||| through the House at ||| 1 0.204175 1.49697e-06 2.40545e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| through the MEDA I programme between ||| 1 0.230708 1.49697e-06 2.55229e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| through the MEDA I programme ||| 1 0.230708 1.49697e-06 9.67509e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| through the MEDA I ||| 1 0.230708 1.49697e-06 7.59426e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| through the MEDA ||| 1 0.230708 1.49697e-06 1.07362e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| through the launch of serious ||| 1 0.230708 1.49697e-06 6.05142e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| through the launch of ||| 0.5 0.230708 1.49697e-06 5.25297e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| through the launch ||| 0.333333 0.230708 1.49697e-06 9.66259e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| through the ||| 0.00137342 0.230708 1.34727e-05 0.00048801 2.718 ||| 0-0 ||| 6553 668016 +a ||| through them ||| 0.0153846 0.230708 1.49697e-06 2.13227e-05 2.718 ||| 0-0 ||| 65 668016 +a ||| through this ||| 0.00125471 0.230708 1.49697e-06 5.13623e-05 2.718 ||| 0-0 ||| 797 668016 +a ||| through to ||| 0.053719 0.229811 1.94606e-05 0.000161244 2.718 ||| 0-1 ||| 242 668016 +a ||| through voting , can ||| 0.166667 0.230708 1.49697e-06 1.0968e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| through voting , ||| 0.166667 0.230708 1.49697e-06 3.68759e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| through voting ||| 0.142857 0.230708 1.49697e-06 3.0922e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| through what ||| 0.0238095 0.230708 1.49697e-06 1.11534e-05 2.718 ||| 0-0 ||| 42 668016 +a ||| through which they would have ||| 1 0.230708 1.49697e-06 1.54695e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| through which they would ||| 1 0.230708 1.49697e-06 1.29346e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| through which they ||| 0.111111 0.230708 1.49697e-06 2.204e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| through which ||| 0.00542005 0.230708 2.99394e-06 6.75244e-05 2.718 ||| 0-0 ||| 369 668016 +a ||| through ||| 0.0108832 0.230708 0.000531424 0.0079491 2.718 ||| 0-0 ||| 32619 668016 +a ||| throughout life ||| 0.0384615 0.0592287 1.49697e-06 1.12974e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| throughout the period of ||| 0.0588235 0.0188479 1.49697e-06 1.26431e-11 2.718 ||| 0-3 ||| 17 668016 +a ||| throughout the ||| 0.000197316 0.0592287 1.49697e-06 4.57799e-05 2.718 ||| 0-0 ||| 5068 668016 +a ||| throughout ||| 0.00340772 0.0592287 4.64061e-05 0.0007457 2.718 ||| 0-0 ||| 9097 668016 +a ||| throw in their lot ||| 1 0.0587624 1.49697e-06 2.06947e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| throw in their ||| 1 0.0587624 1.49697e-06 1.60176e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| throw in ||| 0.25 0.0587624 2.99394e-06 1.3819e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| throw it all away ||| 1 0.0038996 1.49697e-06 7.19623e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| throw it all ||| 1 0.0038996 1.49697e-06 2.26225e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| throw their lot in ||| 1 0.0587624 1.49697e-06 2.06947e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| throwing sand in ||| 1 0.0587624 1.49697e-06 1.62223e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| throwing their weight around ||| 0.25 0.0931303 1.49697e-06 3.46477e-16 2.718 ||| 0-3 ||| 4 668016 +a ||| thrown at ||| 0.428571 0.204175 4.49091e-06 9.42781e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| thrown by ||| 0.5 0.0337966 1.49697e-06 2.27902e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| thrown in ||| 0.153846 0.0587624 2.99394e-06 1.66429e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| thrown into ||| 0.0273973 0.107578 2.99394e-06 1.68258e-07 2.718 ||| 0-1 ||| 73 668016 +a ||| thrown out into ||| 0.5 0.107578 1.49697e-06 6.44496e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| thrown out of the country before the ||| 1 0.0004654 1.49697e-06 4.88474e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| thrown out of the country before ||| 1 0.0004654 1.49697e-06 7.95667e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| thrown out of the country ||| 1 0.0004654 1.49697e-06 3.1814e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| thrown out of the ||| 0.0625 0.0004654 1.49697e-06 8.83966e-12 2.718 ||| 0-3 ||| 16 668016 +a ||| thus , at an ||| 1 0.0003011 1.49697e-06 1.22075e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| thus , at ||| 0.2 0.0003011 1.49697e-06 2.74652e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| thus , ||| 0.000671141 0.0003011 1.49697e-06 6.55901e-07 2.718 ||| 0-0 ||| 1490 668016 +a ||| thus also to ||| 0.166667 0.229811 1.49697e-06 3.01004e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| thus enabling it ||| 0.428571 0.0053457 4.49091e-06 4.14658e-11 2.718 ||| 0-1 ||| 7 668016 +a ||| thus enabling ||| 0.0416667 0.0053457 4.49091e-06 2.33174e-09 2.718 ||| 0-1 ||| 72 668016 +a ||| thus encompass the following partners : ||| 1 0.0720432 1.49697e-06 2.84198e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| thus encompass the following partners ||| 1 0.0720432 1.49697e-06 8.43818e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| thus encompass the following ||| 1 0.0720432 1.49697e-06 3.29616e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| thus reaches ||| 1 0.258232 1.49697e-06 2.31472e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| thus taking ||| 0.0909091 0.0112121 1.49697e-06 2.87468e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| thus to ||| 0.0124224 0.229811 2.99394e-06 5.96213e-05 2.718 ||| 0-1 ||| 161 668016 +a ||| thus want to ||| 0.5 0.229811 1.49697e-06 2.7873e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| thus ||| 0.000351659 0.0003011 4.49091e-06 5.5e-06 2.718 ||| 0-0 ||| 8531 668016 +a ||| tide of ||| 0.0235294 0.0188479 2.99394e-06 1.71555e-07 2.718 ||| 0-1 ||| 85 668016 +a ||| tie itself in ||| 1 0.0587624 1.49697e-06 1.3049e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| tie up ||| 0.04 0.011803 1.49697e-06 1.10484e-09 2.718 ||| 0-0 0-1 ||| 25 668016 +a ||| tied to ||| 0.0190476 0.229811 2.99394e-06 4.02847e-06 2.718 ||| 0-1 ||| 105 668016 +a ||| tied up in ||| 0.04 0.0587624 1.49697e-06 2.35648e-09 2.718 ||| 0-2 ||| 25 668016 +a ||| tighten our grip on ||| 1 0.0782999 1.49697e-06 3.12714e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| tighten them ||| 0.142857 0.0045234 1.49697e-06 8.0496e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| tighten up the rules on the treatment ||| 0.5 0.0782999 1.49697e-06 1.2341e-20 2.718 ||| 0-4 ||| 2 668016 +a ||| tighten up the rules on the ||| 0.5 0.0782999 1.49697e-06 2.03983e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| tighten up the rules on ||| 0.333333 0.0782999 1.49697e-06 3.32265e-15 2.718 ||| 0-4 ||| 3 668016 +a ||| tighten up the ||| 0.00909091 0.0195077 1.49697e-06 2.71312e-10 2.718 ||| 0-1 ||| 110 668016 +a ||| tighten up ||| 0.00454545 0.0195077 1.49697e-06 4.41936e-09 2.718 ||| 0-1 ||| 220 668016 +a ||| tighter at ||| 1 0.204175 1.49697e-06 2.31441e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| tightly , ||| 0.166667 0.008 1.49697e-06 1.07329e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| tightly ||| 0.0106383 0.008 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 94 668016 +a ||| time , in a couple ||| 0.166667 0.0587624 1.49697e-06 7.87319e-12 2.718 ||| 0-2 ||| 6 668016 +a ||| time , in a ||| 0.0714286 0.0587624 1.49697e-06 5.21403e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| time , in ||| 0.010582 0.0587624 2.99394e-06 1.1763e-05 2.718 ||| 0-2 ||| 189 668016 +a ||| time , to clone ||| 1 0.229811 1.49697e-06 2.74329e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| time , to ||| 0.0179372 0.229811 5.98788e-06 6.85822e-05 2.718 ||| 0-2 ||| 223 668016 +a ||| time , we need to decide ||| 0.25 0.229811 1.49697e-06 4.57589e-14 2.718 ||| 0-4 ||| 4 668016 +a ||| time , we need to ||| 0.0178571 0.229811 1.49697e-06 7.13867e-10 2.718 ||| 0-4 ||| 56 668016 +a ||| time , will ||| 0.0769231 0.0561595 1.49697e-06 2.75731e-06 2.718 ||| 0-2 ||| 13 668016 +a ||| time again , ||| 0.02 0.0700825 1.49697e-06 4.53897e-07 2.718 ||| 0-1 ||| 50 668016 +a ||| time again ||| 0.0106952 0.0700825 2.99394e-06 3.80612e-06 2.718 ||| 0-1 ||| 187 668016 +a ||| time also to ||| 0.5 0.229811 1.49697e-06 2.9034e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| time and again ||| 0.00593472 0.0700825 2.99394e-06 4.7675e-08 2.718 ||| 0-2 ||| 337 668016 +a ||| time and time again , ||| 0.0238095 0.0700825 1.49697e-06 9.33384e-12 2.718 ||| 0-3 ||| 42 668016 +a ||| time and time again ||| 0.00520833 0.0700825 1.49697e-06 7.82681e-11 2.718 ||| 0-3 ||| 192 668016 +a ||| time and ||| 0.0013947 0.0015873 4.49091e-06 3.16766e-06 2.718 ||| 0-1 ||| 2151 668016 +a ||| time as ||| 0.00145138 0.0243476 1.49697e-06 1.44016e-05 2.718 ||| 0-1 ||| 689 668016 +a ||| time at which ||| 0.0434783 0.204175 1.49697e-06 4.74644e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| time at ||| 0.0196078 0.204175 4.49091e-06 5.58759e-05 2.718 ||| 0-1 ||| 153 668016 +a ||| time behind ||| 1 0.0923313 1.49697e-06 1.26477e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| time comes for ||| 0.047619 0.0683377 1.49697e-06 2.41856e-08 2.718 ||| 0-2 ||| 21 668016 +a ||| time for us to ask : is ||| 1 0.0683377 1.49697e-06 2.24866e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| time for us to ask : ||| 1 0.0683377 1.49697e-06 7.1748e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| time for us to ask ||| 0.5 0.0683377 1.49697e-06 2.13029e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| time for us to ||| 0.0169492 0.0683377 1.49697e-06 1.5493e-08 2.718 ||| 0-1 ||| 59 668016 +a ||| time for us ||| 0.0135135 0.0683377 1.49697e-06 1.74356e-07 2.718 ||| 0-1 ||| 74 668016 +a ||| time for ||| 0.0037422 0.0683377 1.34727e-05 6.04942e-05 2.718 ||| 0-1 ||| 2405 668016 +a ||| time in explaining ||| 0.333333 0.0587624 1.49697e-06 6.70735e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| time in ||| 0.00646726 0.0587624 1.19758e-05 9.86374e-05 2.718 ||| 0-1 ||| 1237 668016 +a ||| time it will take to ||| 0.5 0.229811 1.49697e-06 1.42445e-10 2.718 ||| 0-4 ||| 2 668016 +a ||| time limits for ||| 0.0333333 0.0683377 1.49697e-06 1.63334e-09 2.718 ||| 0-2 ||| 30 668016 +a ||| time now , to come to ||| 0.5 0.229811 1.49697e-06 1.06614e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| time now , to come ||| 0.5 0.229811 1.49697e-06 1.19983e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| time now , to ||| 0.5 0.229811 1.49697e-06 1.41272e-07 2.718 ||| 0-3 ||| 2 668016 +a ||| time of ||| 0.00244978 0.0188479 7.48485e-06 4.8559e-05 2.718 ||| 0-1 ||| 2041 668016 +a ||| time on ||| 0.00363636 0.0782999 1.49697e-06 6.22789e-05 2.718 ||| 0-1 ||| 275 668016 +a ||| time out at ||| 1 0.204175 1.49697e-06 2.14027e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| time provides people with ||| 0.5 0.0571592 1.49697e-06 1.72734e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| time schedule saying , for example : ||| 1 0.0683377 1.49697e-06 4.5171e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| time schedule saying , for example ||| 1 0.0683377 1.49697e-06 1.34118e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| time schedule saying , for ||| 1 0.0683377 1.49697e-06 4.60729e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| time that we ||| 0.00806452 0.0008079 1.49697e-06 1.25266e-08 2.718 ||| 0-2 ||| 124 668016 +a ||| time they have had to ||| 1 0.229811 1.49697e-06 2.25327e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| time to appear ||| 0.0909091 0.229811 1.49697e-06 5.02629e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| time to be ||| 0.0135135 0.229811 1.49697e-06 1.04223e-05 2.718 ||| 0-1 ||| 74 668016 +a ||| time to come ||| 0.0105263 0.229811 1.49697e-06 4.88424e-07 2.718 ||| 0-1 ||| 95 668016 +a ||| time to dedicate ||| 0.5 0.229811 1.49697e-06 6.32599e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| time to reconstruct and help ||| 1 0.229811 1.49697e-06 9.61598e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| time to reconstruct and ||| 1 0.229811 1.49697e-06 5.04247e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| time to reconstruct ||| 1 0.229811 1.49697e-06 4.02563e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| time to stay until ||| 1 0.229811 1.49697e-06 7.93762e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| time to stay ||| 0.5 0.229811 1.49697e-06 1.63326e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| time to time but have been ||| 1 0.229811 1.49697e-06 2.57674e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| time to time but have ||| 1 0.229811 1.49697e-06 7.71665e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| time to time but ||| 1 0.229811 1.49697e-06 6.45215e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| time to time ||| 0.0144404 0.229811 5.98788e-06 9.44125e-07 2.718 ||| 0-1 ||| 277 668016 +a ||| time to ||| 0.00858469 0.229811 5.53879e-05 0.00057509 2.718 ||| 0-1 ||| 4310 668016 +a ||| time when ||| 0.000484379 0.0055468 2.99394e-06 5.0942e-07 2.718 ||| 0-1 ||| 4129 668016 +a ||| time you have granted me to ||| 1 0.229811 1.49697e-06 1.08303e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| times at ||| 0.047619 0.204175 1.49697e-06 3.45459e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| times on ||| 0.03125 0.0782999 1.49697e-06 3.85046e-06 2.718 ||| 0-1 ||| 32 668016 +a ||| times to ||| 0.0212766 0.229811 2.99394e-06 3.55556e-05 2.718 ||| 0-1 ||| 94 668016 +a ||| timescale to ||| 0.5 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| timetable through ||| 1 0.230708 1.49697e-06 6.27979e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| tinkering with ||| 0.0357143 0.0571592 1.49697e-06 1.83646e-08 2.718 ||| 0-1 ||| 28 668016 +a ||| tipped off once ||| 0.166667 0.0893962 1.49697e-06 1.25199e-13 2.718 ||| 0-1 ||| 6 668016 +a ||| tipped off ||| 0.166667 0.0893962 1.49697e-06 3.0596e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| tired ||| 0.00584795 0.0038911 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 171 668016 +a ||| to ' a ||| 0.166667 0.229811 1.49697e-06 5.33351e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| to ' green ||| 0.333333 0.229811 1.49697e-06 1.9974e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to ' ||| 0.0267686 0.229811 2.09576e-05 0.00120325 2.718 ||| 0-0 ||| 523 668016 +a ||| to " serious " , ||| 1 0.229811 1.49697e-06 2.69857e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to " serious " ||| 1 0.229811 1.49697e-06 2.26286e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to " serious ||| 1 0.229811 1.49697e-06 9.556e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to " ||| 0.0434783 0.229811 4.49091e-06 8.29514e-05 2.718 ||| 0-0 ||| 69 668016 +a ||| to ( ||| 0.142857 0.229811 1.49697e-06 0.000337831 2.718 ||| 0-0 ||| 7 668016 +a ||| to , I quote ' the ||| 1 0.229811 1.49697e-06 2.77915e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to , I quote ' ||| 0.333333 0.229811 1.49697e-06 4.5269e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to , I quote ||| 0.25 0.229811 1.49697e-06 1.31791e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to , I ||| 0.2 0.229811 1.49697e-06 0.000295496 2.718 ||| 0-0 ||| 5 668016 +a ||| to , amongst others ||| 1 0.229811 1.49697e-06 1.36028e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to , amongst ||| 0.2 0.229811 1.49697e-06 1.39947e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to , and will ||| 1 0.229811 1.49697e-06 4.52692e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| to , and ||| 0.00571429 0.229811 1.49697e-06 0.000523271 2.718 ||| 0-0 ||| 175 668016 +a ||| to , for ||| 0.027027 0.229811 1.49697e-06 0.000321071 2.718 ||| 0-0 ||| 37 668016 +a ||| to , including ||| 0.5 0.229811 1.49697e-06 4.36132e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to , namely , ||| 0.5 0.229811 1.49697e-06 7.96104e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to , namely ||| 0.0769231 0.229811 1.49697e-06 6.67566e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| to , or back to , ||| 1 0.229811 1.49697e-06 3.40414e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to , or back to ||| 1 0.229811 1.49697e-06 2.85451e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to , or back ||| 1 0.229811 1.49697e-06 3.21244e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to , or ||| 0.0243902 0.229811 1.49697e-06 4.77615e-05 2.718 ||| 0-0 ||| 41 668016 +a ||| to , that ||| 0.125 0.229811 1.49697e-06 0.000702724 2.718 ||| 0-0 ||| 8 668016 +a ||| to , we refer to ||| 1 0.229811 1.49697e-06 3.29117e-09 2.718 ||| 0-4 ||| 1 668016 +a ||| to , with ||| 0.25 0.0571592 1.49697e-06 0.000176914 2.718 ||| 0-2 ||| 4 668016 +a ||| to , ||| 0.123799 0.229811 0.000173649 0.0417751 2.718 ||| 0-0 ||| 937 668016 +a ||| to - reach ||| 1 0.229811 1.49697e-06 1.07031e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to - ||| 0.0793651 0.229811 7.48485e-06 0.00132137 2.718 ||| 0-0 ||| 63 668016 +a ||| to . I would therefore ||| 1 0.229811 1.49697e-06 3.68366e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to . I would ||| 1 0.229811 1.49697e-06 4.40471e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to . I ||| 0.5 0.229811 1.49697e-06 7.50543e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to . he is also entitled to ||| 1 0.229811 1.49697e-06 6.36646e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to . he is also entitled ||| 1 0.229811 1.49697e-06 7.16474e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to . he is also ||| 1 0.229811 1.49697e-06 1.46518e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to . he is ||| 1 0.229811 1.49697e-06 2.90216e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to . he ||| 1 0.229811 1.49697e-06 9.2599e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to . ||| 0.00457317 0.229811 4.49091e-06 0.00106106 2.718 ||| 0-0 ||| 656 668016 +a ||| to 1.8 ||| 0.2 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to 10.9 ||| 0.25 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to 11 are ||| 0.166667 0.229811 1.49697e-06 7.06898e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to 11 ||| 0.0142857 0.229811 1.49697e-06 4.65901e-06 2.718 ||| 0-0 ||| 70 668016 +a ||| to 1191 ||| 0.333333 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to 12 ||| 0.00581395 0.229811 1.49697e-06 4.90422e-06 2.718 ||| 0-0 ||| 172 668016 +a ||| to 1993 ||| 0.037037 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 27 668016 +a ||| to 2000 to ||| 1 0.229811 1.49697e-06 8.96462e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| to 2006 ||| 0.00662252 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-0 ||| 151 668016 +a ||| to 2007 at ||| 1 0.204175 1.49697e-06 4.77843e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| to 250 ||| 0.04 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| to 6 ||| 0.0106383 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-0 ||| 94 668016 +a ||| to : ||| 0.0136986 0.115275 1.49697e-06 1.63241e-05 2.718 ||| 0-0 0-1 ||| 73 668016 +a ||| to ; ||| 0.0909091 0.229811 1.49697e-06 0.000107893 2.718 ||| 0-0 ||| 11 668016 +a ||| to ACP ||| 0.2 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to Albania ||| 0.0117647 0.229811 1.49697e-06 2.9075e-06 2.718 ||| 0-0 ||| 85 668016 +a ||| to Amendment ||| 0.00222222 0.229811 1.49697e-06 9.56323e-06 2.718 ||| 0-0 ||| 450 668016 +a ||| to America ||| 0.031746 0.229811 2.99394e-06 9.70335e-06 2.718 ||| 0-0 ||| 63 668016 +a ||| to Article 32 of ||| 0.5 0.229811 1.49697e-06 1.62139e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to Article 32 ||| 0.2 0.229811 1.49697e-06 2.98247e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| to Article ||| 0.00126263 0.229811 1.49697e-06 6.93597e-06 2.718 ||| 0-0 ||| 792 668016 +a ||| to Britain ||| 0.02 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| to Cancún to ||| 0.333333 0.229811 1.49697e-06 4.90845e-08 2.718 ||| 0-0 0-2 ||| 3 668016 +a ||| to Commission ||| 0.0526316 0.229811 1.49697e-06 0.000204611 2.718 ||| 0-0 ||| 19 668016 +a ||| to Community-level ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to Council ||| 0.0166667 0.229811 1.49697e-06 0.000121134 2.718 ||| 0-0 ||| 60 668016 +a ||| to Credit ||| 1 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to Devil ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to Dublin - ||| 0.333333 0.229811 1.49697e-06 2.90702e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to Dublin ||| 0.0196078 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-0 ||| 51 668016 +a ||| to EC ||| 0.5 0.229811 2.99394e-06 6.55064e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to ECB ||| 0.5 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to ECHO ||| 0.0769231 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| to ECU ||| 0.0769231 0.229811 4.49091e-06 1.60088e-05 2.718 ||| 0-0 ||| 39 668016 +a ||| to EU documents , ||| 0.25 0.229811 1.49697e-06 5.20892e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to EU documents ||| 0.0625 0.229811 1.49697e-06 4.3679e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| to EU ||| 0.0258065 0.229811 5.98788e-06 0.000173329 2.718 ||| 0-0 ||| 155 668016 +a ||| to EUR ||| 0.0987654 0.229811 3.59273e-05 9.36706e-05 2.718 ||| 0-0 ||| 243 668016 +a ||| to Economic and ||| 0.333333 0.229811 1.49697e-06 1.35584e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to Economic ||| 0.333333 0.229811 1.49697e-06 1.08243e-05 2.718 ||| 0-0 ||| 3 668016 +a ||| to Ecu ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to Europe as a ||| 0.04 0.229811 1.49697e-06 8.01746e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| to Europe as ||| 0.0222222 0.229811 1.49697e-06 1.80876e-06 2.718 ||| 0-0 ||| 45 668016 +a ||| to Europe ||| 0.00526316 0.229811 1.49697e-05 0.000177253 2.718 ||| 0-0 ||| 1900 668016 +a ||| to Europe ’ ||| 0.142857 0.229811 4.49091e-06 3.08792e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| to European ||| 0.0339806 0.229811 1.04788e-05 0.00117137 2.718 ||| 0-0 ||| 206 668016 +a ||| to European-level ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to French farmers ||| 1 0.229811 1.49697e-06 5.27982e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to French ||| 0.2 0.229811 1.49697e-06 1.31013e-05 2.718 ||| 0-0 ||| 5 668016 +a ||| to GBP ||| 0.25 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to Georgian ||| 1 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to God ||| 0.0227273 0.229811 1.49697e-06 2.9075e-06 2.718 ||| 0-0 ||| 44 668016 +a ||| to HKSAR ||| 0.142857 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to Iceland ||| 0.0555556 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| to Ingushetia ; ||| 1 0.229811 1.49697e-06 4.31572e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to Ingushetia ||| 0.25 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to Iran ||| 0.00947867 0.229811 2.99394e-06 3.39793e-06 2.718 ||| 0-0 ||| 211 668016 +a ||| to Iran ’ s pursuit of ||| 1 0.229811 1.49697e-06 1.5182e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to Iran ’ s pursuit ||| 1 0.229811 1.49697e-06 2.79266e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to Iran ’ s ||| 1 0.229811 1.49697e-06 1.12607e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to Iran ’ ||| 1 0.229811 1.49697e-06 5.91953e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to Ireland ||| 0.00444444 0.229811 1.49697e-06 7.95185e-06 2.718 ||| 0-0 ||| 225 668016 +a ||| to Justice ||| 0.153846 0.229811 2.99394e-06 1.89163e-05 2.718 ||| 0-0 ||| 13 668016 +a ||| to Kosovo ||| 0.00471698 0.229811 1.49697e-06 8.58239e-06 2.718 ||| 0-0 ||| 212 668016 +a ||| to Luxembourg and get ||| 0.5 0.229811 1.49697e-06 1.59224e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to Luxembourg and ||| 0.166667 0.229811 1.49697e-06 3.64191e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to Luxembourg ||| 0.0153846 0.229811 1.49697e-06 2.9075e-06 2.718 ||| 0-0 ||| 65 668016 +a ||| to Marrakesh ||| 0.5 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to Member State ||| 0.0526316 0.229811 1.49697e-06 2.16974e-08 2.718 ||| 0-0 ||| 19 668016 +a ||| to Member States at national level , ||| 1 0.204175 1.49697e-06 9.74848e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| to Member States at national level ||| 1 0.204175 1.49697e-06 8.1745e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| to Member States at national ||| 1 0.204175 1.49697e-06 9.55635e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| to Member States at ||| 0.5 0.204175 1.49697e-06 7.43685e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| to Member States during times ||| 1 0.229811 1.49697e-06 8.81311e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to Member States during ||| 0.5 0.229811 1.49697e-06 8.68287e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to Member States ||| 0.00453858 0.229811 4.49091e-06 8.61396e-08 2.718 ||| 0-0 ||| 661 668016 +a ||| to Member ||| 0.142857 0.229811 8.98182e-06 0.00018051 2.718 ||| 0-0 ||| 42 668016 +a ||| to Members of ||| 0.0181818 0.0188479 1.49697e-06 3.87673e-07 2.718 ||| 0-2 ||| 55 668016 +a ||| to Members ||| 0.00738007 0.229811 2.99394e-06 5.16695e-05 2.718 ||| 0-0 ||| 271 668016 +a ||| to Mr Patten ' ||| 1 0.229811 1.49697e-06 8.6403e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to Mr Patten ||| 0.0344828 0.229811 1.49697e-06 2.51545e-10 2.718 ||| 0-0 ||| 29 668016 +a ||| to Mr Swoboda 's report later ||| 1 0.229811 1.49697e-06 3.83793e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| to Mr Swoboda 's report ||| 1 0.229811 1.49697e-06 4.46271e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to Mr Swoboda 's ||| 1 0.229811 1.49697e-06 1.08873e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to Mr Swoboda ||| 0.0333333 0.229811 1.49697e-06 5.71692e-10 2.718 ||| 0-0 ||| 30 668016 +a ||| to Mr ||| 0.00102564 0.229811 5.98788e-06 0.000228677 2.718 ||| 0-0 ||| 3900 668016 +a ||| to Mrs ||| 0.000648508 0.229811 1.49697e-06 3.27882e-05 2.718 ||| 0-0 ||| 1542 668016 +a ||| to No ||| 0.111111 0.229811 1.49697e-06 2.37154e-05 2.718 ||| 0-0 ||| 9 668016 +a ||| to North ||| 0.0277778 0.229811 1.49697e-06 7.3213e-06 2.718 ||| 0-0 ||| 36 668016 +a ||| to OLAF ' ||| 1 0.229811 1.49697e-06 9.14471e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to OLAF ||| 0.0138889 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-0 ||| 72 668016 +a ||| to Opportunities ||| 0.333333 0.229811 4.49091e-06 3.39793e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| to Palestine ||| 0.0105263 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-0 ||| 95 668016 +a ||| to Parliament 's opinion ||| 0.166667 0.229811 1.49697e-06 9.39695e-11 2.718 ||| 0-0 ||| 6 668016 +a ||| to Parliament 's ||| 0.0204082 0.229811 1.49697e-06 3.82924e-07 2.718 ||| 0-0 ||| 49 668016 +a ||| to Parliament on ||| 0.00892857 0.0782999 1.49697e-06 1.93489e-06 2.718 ||| 0-2 ||| 112 668016 +a ||| to Parliament ||| 0.00487805 0.229811 2.09576e-05 0.000201073 2.718 ||| 0-0 ||| 2870 668016 +a ||| to Parliament ’ ||| 0.0625 0.229811 1.49697e-06 3.50289e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| to Patient ||| 0.5 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to Polish ||| 0.25 0.229811 1.49697e-06 3.53805e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to Prevent ||| 0.0555556 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| to Pristina , ||| 0.5 0.229811 1.49697e-06 1.671e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to Pristina ||| 0.0909091 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| to Rules of ||| 0.5 0.229811 1.49697e-06 1.35021e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to Rules ||| 0.0588235 0.229811 2.99394e-06 2.48364e-05 2.718 ||| 0-0 ||| 34 668016 +a ||| to States ||| 0.0344828 0.229811 1.49697e-06 0.000167164 2.718 ||| 0-0 ||| 29 668016 +a ||| to Syria ||| 0.0151515 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-0 ||| 66 668016 +a ||| to Taiwan ||| 0.0227273 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-0 ||| 44 668016 +a ||| to Turkey ||| 0.00333333 0.229811 2.99394e-06 2.05627e-05 2.718 ||| 0-0 ||| 600 668016 +a ||| to Turkish ||| 0.166667 0.229811 1.49697e-06 1.0474e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| to US ||| 0.05 0.229811 1.49697e-06 1.49929e-05 2.718 ||| 0-0 ||| 20 668016 +a ||| to USD ||| 0.333333 0.229811 1.49697e-06 5.18446e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to United States ||| 0.333333 0.229811 1.49697e-06 2.04609e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to United ||| 0.111111 0.229811 1.49697e-06 4.28769e-05 2.718 ||| 0-0 ||| 9 668016 +a ||| to Western ||| 0.0666667 0.229811 1.49697e-06 4.55392e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| to a Member such ||| 1 0.229811 1.49697e-06 1.65538e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to a Member ||| 0.0384615 0.229811 1.49697e-06 8.00127e-06 2.718 ||| 0-0 ||| 26 668016 +a ||| to a backlash ||| 0.2 0.229811 1.49697e-06 1.08692e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to a cancellation ||| 0.25 0.229811 1.49697e-06 3.88185e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to a certain amount ||| 0.111111 0.229811 1.49697e-06 1.07668e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| to a certain extent ||| 0.00298507 0.229811 1.49697e-06 8.50544e-10 2.718 ||| 0-0 ||| 335 668016 +a ||| to a certain ||| 0.004914 0.229811 2.99394e-06 4.42531e-06 2.718 ||| 0-0 ||| 407 668016 +a ||| to a close in good ||| 1 0.0587624 1.49697e-06 1.82002e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| to a close in ||| 0.166667 0.0587624 1.49697e-06 3.50948e-08 2.718 ||| 0-3 ||| 6 668016 +a ||| to a close ||| 0.0228571 0.229811 5.98788e-06 2.30271e-06 2.718 ||| 0-0 ||| 175 668016 +a ||| to a conclusion ||| 0.0157068 0.229811 4.49091e-06 1.37417e-06 2.718 ||| 0-0 ||| 191 668016 +a ||| to a consensus and call ||| 1 0.229811 1.49697e-06 6.69256e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to a consensus and ||| 0.333333 0.229811 1.49697e-06 3.01467e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to a consensus ||| 0.0454545 0.229811 1.49697e-06 2.40675e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| to a cruel , ||| 1 0.229811 1.49697e-06 6.66617e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to a cruel ||| 0.5 0.229811 1.49697e-06 5.58986e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to a current ||| 1 0.229811 1.49697e-06 2.55892e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| to a decision on ||| 0.037037 0.0782999 1.49697e-06 2.35034e-08 2.718 ||| 0-3 ||| 27 668016 +a ||| to a democratic ||| 0.333333 0.229811 1.49697e-06 4.64269e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to a design error ||| 0.125 0.229811 1.49697e-06 1.15306e-12 2.718 ||| 0-0 ||| 8 668016 +a ||| to a design ||| 0.1 0.229811 1.49697e-06 1.22666e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| to a desire to back ||| 1 0.229811 1.49697e-06 4.34309e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to a desire to ||| 0.125 0.229811 1.49697e-06 6.45717e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to a desire ||| 0.166667 0.229811 1.49697e-06 7.26682e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to a facelift with ||| 1 0.0571592 1.49697e-06 2.63029e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| to a fair ||| 0.111111 0.229811 1.49697e-06 8.04319e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to a far ||| 0.0555556 0.229811 1.49697e-06 1.06006e-05 2.718 ||| 0-0 ||| 18 668016 +a ||| to a fine ||| 0.25 0.229811 1.49697e-06 5.03088e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to a frightening degree by ||| 1 0.229811 1.49697e-06 2.82264e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to a frightening degree ||| 1 0.229811 1.49697e-06 5.37636e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to a frightening ||| 0.5 0.229811 1.49697e-06 3.88185e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to a further ||| 0.0344828 0.229811 2.99394e-06 7.50439e-06 2.718 ||| 0-0 ||| 58 668016 +a ||| to a general ||| 0.5 0.229811 1.49697e-06 2.71574e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to a good ||| 0.0107527 0.229811 1.49697e-06 8.05251e-06 2.718 ||| 0-0 ||| 93 668016 +a ||| to a great extent ||| 0.0125786 0.229811 2.99394e-06 1.17286e-09 2.718 ||| 0-0 ||| 159 668016 +a ||| to a great ||| 0.00985222 0.229811 2.99394e-06 6.10227e-06 2.718 ||| 0-0 ||| 203 668016 +a ||| to a greater extent ||| 0.00787402 0.229811 1.49697e-06 3.93041e-10 2.718 ||| 0-0 ||| 127 668016 +a ||| to a greater ||| 0.00396825 0.229811 1.49697e-06 2.04496e-06 2.718 ||| 0-0 ||| 252 668016 +a ||| to a group of ||| 0.0666667 0.229811 2.99394e-06 1.08724e-07 2.718 ||| 0-0 ||| 30 668016 +a ||| to a group ||| 0.04 0.229811 2.99394e-06 1.99993e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| to a halt , ||| 0.0909091 0.229811 1.49697e-06 3.74046e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| to a halt due ||| 1 0.229811 1.49697e-06 8.66938e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to a halt ||| 0.029703 0.229811 4.49091e-06 3.13653e-07 2.718 ||| 0-0 ||| 101 668016 +a ||| to a head ||| 0.0243902 0.229811 1.49697e-06 1.12263e-06 2.718 ||| 0-0 ||| 41 668016 +a ||| to a heavy ||| 0.25 0.229811 1.49697e-06 2.73282e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to a height of ||| 0.2 0.229811 1.49697e-06 4.22066e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to a height ||| 0.166667 0.229811 1.49697e-06 7.7637e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to a higher court ||| 0.25 0.229811 1.49697e-06 1.95457e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| to a higher ||| 0.0322581 0.229811 1.49697e-06 6.53703e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| to a host of ||| 0.142857 0.229811 1.49697e-06 1.63762e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| to a host ||| 0.142857 0.229811 1.49697e-06 3.01232e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to a joint ||| 0.333333 0.229811 1.49697e-06 1.01083e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to a kind ||| 0.0322581 0.229811 1.49697e-06 7.57737e-06 2.718 ||| 0-0 ||| 31 668016 +a ||| to a large extent , to ||| 0.0714286 0.229811 1.49697e-06 4.8607e-12 2.718 ||| 0-5 ||| 14 668016 +a ||| to a large extent a feeling ||| 1 0.229811 1.49697e-06 7.38056e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to a large extent a ||| 0.125 0.229811 1.49697e-06 2.03321e-11 2.718 ||| 0-0 ||| 8 668016 +a ||| to a large extent ||| 0.00169492 0.229811 1.49697e-06 4.58697e-10 2.718 ||| 0-0 ||| 590 668016 +a ||| to a large ||| 0.0016 0.229811 1.49697e-06 2.38656e-06 2.718 ||| 0-0 ||| 625 668016 +a ||| to a larger ||| 0.0526316 0.229811 1.49697e-06 2.34464e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| to a later ||| 0.0714286 0.229811 1.49697e-06 1.33536e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| to a lesser extent by ||| 1 0.229811 1.49697e-06 5.64056e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to a lesser extent ||| 0.0149254 0.229811 1.49697e-06 1.07437e-11 2.718 ||| 0-0 ||| 67 668016 +a ||| to a lesser ||| 0.0135135 0.229811 1.49697e-06 5.58986e-08 2.718 ||| 0-0 ||| 74 668016 +a ||| to a level ||| 0.0172414 0.229811 1.49697e-06 1.32821e-05 2.718 ||| 0-0 ||| 58 668016 +a ||| to a long-term commitment ||| 1 0.229811 1.49697e-06 2.21806e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to a long-term ||| 0.25 0.229811 1.49697e-06 3.97501e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to a major ||| 0.030303 0.229811 1.49697e-06 1.50305e-06 2.718 ||| 0-0 ||| 33 668016 +a ||| to a maximum ||| 0.016129 0.229811 1.49697e-06 2.79493e-07 2.718 ||| 0-0 ||| 62 668016 +a ||| to a moment ago ||| 0.2 0.229811 1.49697e-06 3.08919e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| to a moment ||| 0.2 0.229811 1.49697e-06 2.8058e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to a natural ||| 1 0.229811 1.49697e-06 4.30109e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to a niche position ||| 0.5 0.229811 1.49697e-06 5.62449e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to a niche ||| 0.5 0.229811 1.49697e-06 1.70801e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to a number of ||| 0.00557103 0.229811 2.99394e-06 4.17676e-07 2.718 ||| 0-0 ||| 359 668016 +a ||| to a number ||| 0.0123457 0.229811 7.48485e-06 7.68296e-06 2.718 ||| 0-0 ||| 405 668016 +a ||| to a point ||| 0.025974 0.229811 2.99394e-06 1.35834e-05 2.718 ||| 0-0 ||| 77 668016 +a ||| to a position ||| 0.0263158 0.229811 1.49697e-06 5.11317e-06 2.718 ||| 0-0 ||| 38 668016 +a ||| to a positively hideous extent ||| 0.333333 0.229811 1.49697e-06 1.12212e-17 2.718 ||| 0-0 ||| 3 668016 +a ||| to a positively hideous ||| 0.333333 0.229811 1.49697e-06 5.8383e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| to a positively ||| 0.25 0.229811 1.49697e-06 1.45958e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to a rise in ||| 0.0344828 0.0587624 1.49697e-06 2.97229e-08 2.718 ||| 0-3 ||| 29 668016 +a ||| to a row of beans ||| 1 0.229811 1.49697e-06 6.38163e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to a row of ||| 1 0.229811 1.49697e-06 4.55831e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to a row ||| 1 0.229811 1.49697e-06 8.3848e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to a second ||| 0.02 0.229811 1.49697e-06 1.01083e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| to a secondary role ||| 1 0.229811 1.49697e-06 2.34402e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to a secondary ||| 0.142857 0.229811 1.49697e-06 1.05586e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to a sense ||| 0.1 0.229811 1.49697e-06 2.76543e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| to a set of measures designed to ||| 1 0.229811 1.49697e-06 7.0832e-16 2.718 ||| 0-6 ||| 1 668016 +a ||| to a shore ||| 1 0.229811 1.49697e-06 2.79493e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to a shortage in ||| 1 0.229811 1.49697e-06 2.85826e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to a shortage ||| 0.0714286 0.229811 1.49697e-06 1.33536e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| to a situation in which it ||| 1 0.229811 1.49697e-06 2.58562e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to a situation in which ||| 0.0181818 0.229811 1.49697e-06 1.45397e-09 2.718 ||| 0-0 ||| 55 668016 +a ||| to a situation in ||| 0.0229885 0.229811 2.99394e-06 1.71163e-07 2.718 ||| 0-0 ||| 87 668016 +a ||| to a situation ||| 0.0247525 0.229811 7.48485e-06 7.99661e-06 2.718 ||| 0-0 ||| 202 668016 +a ||| to a staggering ||| 0.333333 0.229811 1.49697e-06 1.70801e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to a stop ||| 0.142857 0.229811 1.49697e-06 1.07294e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| to a strict ||| 0.0909091 0.229811 1.49697e-06 2.29806e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| to a substantial ||| 0.0416667 0.229811 1.49697e-06 4.64269e-07 2.718 ||| 0-0 ||| 24 668016 +a ||| to a successful ||| 0.00628931 0.229811 1.49697e-06 8.5556e-07 2.718 ||| 0-0 ||| 159 668016 +a ||| to a sum of ||| 0.0555556 0.229811 1.49697e-06 3.55379e-08 2.718 ||| 0-0 ||| 18 668016 +a ||| to a sum ||| 0.05 0.229811 1.49697e-06 6.53703e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| to a temporary ||| 0.5 0.229811 1.49697e-06 2.40675e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to a text ||| 0.0333333 0.229811 1.49697e-06 1.34157e-06 2.718 ||| 0-0 ||| 30 668016 +a ||| to a tremendously ||| 1 0.229811 1.49697e-06 3.41603e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to a trial ||| 0.2 0.229811 1.49697e-06 1.95645e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to a useless scrap of ||| 1 0.229811 1.49697e-06 2.14241e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to a useless scrap ||| 1 0.229811 1.49697e-06 3.94085e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to a useless ||| 1 0.229811 1.49697e-06 7.29788e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to a village , we drove into ||| 1 0.229811 1.49697e-06 6.0431e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| to a village , we drove ||| 1 0.229811 1.49697e-06 5.88594e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to a village , we ||| 1 0.229811 1.49697e-06 8.40849e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to a village , ||| 1 0.229811 1.49697e-06 7.40686e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to a village ||| 1 0.229811 1.49697e-06 6.21096e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to a wide-ranging discussion of ||| 1 0.229811 1.49697e-06 3.13612e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to a wide-ranging discussion ||| 0.5 0.229811 1.49697e-06 5.76874e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to a wide-ranging ||| 0.2 0.229811 1.49697e-06 6.67678e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to a wider ||| 0.111111 0.229811 1.49697e-06 4.40978e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to a wretched ||| 1 0.229811 1.49697e-06 2.17384e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to a ||| 0.0465558 0.229811 0.00135775 0.0155274 2.718 ||| 0-0 ||| 19482 668016 +a ||| to abandon the people of the ||| 0.5 0.229811 1.49697e-06 4.99094e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to abandon the people of ||| 0.5 0.229811 1.49697e-06 8.12966e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to abandon the people ||| 0.5 0.229811 1.49697e-06 1.49541e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to abandon the ||| 0.0188679 0.229811 2.99394e-06 1.69895e-07 2.718 ||| 0-0 ||| 106 668016 +a ||| to abandon ||| 0.0142518 0.229811 8.98182e-06 2.76738e-06 2.718 ||| 0-0 ||| 421 668016 +a ||| to abide by ||| 0.011236 0.229811 2.99394e-06 1.32417e-08 2.718 ||| 0-0 ||| 178 668016 +a ||| to abide ||| 0.0107527 0.229811 1.49697e-06 2.52217e-06 2.718 ||| 0-0 ||| 93 668016 +a ||| to abolish ||| 0.00194175 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-0 ||| 515 668016 +a ||| to about ECU ||| 0.5 0.141224 1.49697e-06 8.06731e-08 2.718 ||| 0-0 0-1 ||| 2 668016 +a ||| to about ||| 0.0609756 0.141224 7.48485e-06 0.00176527 2.718 ||| 0-0 0-1 ||| 82 668016 +a ||| to absolutely ||| 0.25 0.229811 2.99394e-06 3.30334e-05 2.718 ||| 0-0 ||| 8 668016 +a ||| to absurdity ||| 0.2 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to accede to ||| 0.00869565 0.229811 1.49697e-06 1.12058e-07 2.718 ||| 0-2 ||| 115 668016 +a ||| to accede ||| 0.00581395 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 172 668016 +a ||| to accept that there is ||| 0.2 0.229811 1.49697e-06 6.13091e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| to accept that there ||| 0.333333 0.229811 1.49697e-06 1.95619e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to accept that ||| 0.00337838 0.229811 1.49697e-06 6.38172e-07 2.718 ||| 0-0 ||| 296 668016 +a ||| to accept their responsibilities and ||| 0.5 0.229811 1.49697e-06 1.31092e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| to accept their responsibilities ||| 0.1 0.229811 1.49697e-06 1.04657e-12 2.718 ||| 0-0 ||| 10 668016 +a ||| to accept their ||| 0.037037 0.229811 1.49697e-06 4.39735e-08 2.718 ||| 0-0 ||| 27 668016 +a ||| to accept ||| 0.00564794 0.229811 2.69455e-05 3.79377e-05 2.718 ||| 0-0 ||| 3187 668016 +a ||| to access to ||| 0.0174419 0.229811 4.49091e-06 1.05532e-05 2.718 ||| 0-0 0-2 ||| 172 668016 +a ||| to access ||| 0.00763359 0.229811 7.48485e-06 3.01259e-05 2.718 ||| 0-0 ||| 655 668016 +a ||| to accommodate ||| 0.025 0.229811 8.98182e-06 3.64314e-06 2.718 ||| 0-0 ||| 240 668016 +a ||| to accord it ||| 0.5 0.229811 1.49697e-06 8.53439e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to accord ||| 0.0555556 0.229811 4.49091e-06 4.79913e-06 2.718 ||| 0-0 ||| 54 668016 +a ||| to account , should the need ||| 1 0.229811 1.49697e-06 2.99564e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to account , should the ||| 1 0.229811 1.49697e-06 3.26714e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to account , should ||| 1 0.229811 1.49697e-06 5.32178e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to account , ||| 0.0833333 0.229811 1.49697e-06 1.20103e-05 2.718 ||| 0-0 ||| 12 668016 +a ||| to account . we should not ||| 1 0.229811 1.49697e-06 5.23891e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to account . we should ||| 1 0.229811 1.49697e-06 1.53449e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to account . we ||| 1 0.229811 1.49697e-06 3.46308e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to account . ||| 0.0243902 0.229811 1.49697e-06 3.05056e-07 2.718 ||| 0-0 ||| 41 668016 +a ||| to account on this ||| 0.333333 0.229811 1.49697e-06 4.35409e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to account on ||| 0.111111 0.229811 1.49697e-06 6.73862e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to account ||| 0.0344828 0.229811 1.49697e-05 0.000100712 2.718 ||| 0-0 ||| 290 668016 +a ||| to accusations ||| 0.0454545 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| to accuse ||| 0.027027 0.242992 1.49697e-06 2.65529e-05 2.718 ||| 0-0 0-1 ||| 37 668016 +a ||| to achieve a situation in which ||| 0.2 0.0587624 1.49697e-06 2.36558e-13 2.718 ||| 0-4 ||| 5 668016 +a ||| to achieve a situation in ||| 0.111111 0.0587624 1.49697e-06 2.78481e-11 2.718 ||| 0-4 ||| 9 668016 +a ||| to achieve all ||| 0.0384615 0.229811 1.49697e-06 3.7824e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| to achieve but less effective ||| 1 0.229811 1.49697e-06 6.09823e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to achieve but less ||| 1 0.229811 1.49697e-06 9.31028e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to achieve but ||| 0.333333 0.229811 1.49697e-06 5.4702e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to achieve not monetary union , but ||| 1 0.0003961 1.49697e-06 1.57432e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| to achieve rapid ||| 0.125 0.229811 1.49697e-06 1.44079e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| to achieve some ||| 0.04 0.229811 1.49697e-06 8.71918e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| to achieve something in ||| 0.142857 0.0587624 1.49697e-06 6.75226e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| to achieve something ||| 0.0243902 0.229811 1.49697e-06 4.43043e-08 2.718 ||| 0-0 ||| 41 668016 +a ||| to achieve the designated objective ||| 0.5 0.229811 1.49697e-06 3.09024e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| to achieve the designated ||| 0.5 0.229811 1.49697e-06 4.6192e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to achieve the ||| 0.000853242 0.229811 1.49697e-06 4.91404e-06 2.718 ||| 0-0 ||| 1172 668016 +a ||| to achieve this ||| 0.00108578 0.229811 1.49697e-06 5.17196e-07 2.718 ||| 0-0 ||| 921 668016 +a ||| to achieve those aims ||| 0.2 0.229811 1.49697e-06 2.3126e-12 2.718 ||| 0-0 ||| 5 668016 +a ||| to achieve those ||| 0.0212766 0.229811 1.49697e-06 5.79598e-08 2.718 ||| 0-0 ||| 47 668016 +a ||| to achieve today ||| 0.5 0.229811 1.49697e-06 3.61238e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to achieve ||| 0.00586432 0.229811 6.58667e-05 8.00439e-05 2.718 ||| 0-0 ||| 7503 668016 +a ||| to achieving ||| 0.00969697 0.229811 1.19758e-05 2.319e-05 2.718 ||| 0-0 ||| 825 668016 +a ||| to acknowledge it ||| 0.1 0.229811 1.49697e-06 9.6557e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| to acknowledge ||| 0.00549451 0.229811 5.98788e-06 5.42967e-06 2.718 ||| 0-0 ||| 728 668016 +a ||| to acquire an e-mail ||| 1 0.229811 1.49697e-06 2.84306e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to acquire an ||| 0.5 0.229811 1.49697e-06 2.5846e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to acquire ||| 0.012 0.229811 4.49091e-06 5.81501e-06 2.718 ||| 0-0 ||| 250 668016 +a ||| to act , ||| 0.00980392 0.229811 2.99394e-06 7.09759e-06 2.718 ||| 0-0 ||| 204 668016 +a ||| to act as an ||| 0.030303 0.229811 1.49697e-06 2.69939e-09 2.718 ||| 0-0 ||| 33 668016 +a ||| to act as shock ||| 1 0.229811 1.49697e-06 5.46595e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to act as ||| 0.0060241 0.229811 2.99394e-06 6.07328e-07 2.718 ||| 0-0 ||| 332 668016 +a ||| to act if ||| 0.0714286 0.229811 1.49697e-06 4.97318e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| to act in support of the Member ||| 1 0.229811 1.49697e-06 7.49069e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to act in support of the ||| 0.5 0.229811 1.49697e-06 1.45366e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to act in support of ||| 1 0.229811 1.49697e-06 2.36783e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to act in support ||| 0.5 0.229811 1.49697e-06 4.35552e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to act in ||| 0.00759494 0.229811 4.49091e-06 1.27392e-06 2.718 ||| 0-0 ||| 395 668016 +a ||| to act like ||| 0.111111 0.229811 1.49697e-06 1.05695e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to act persists ||| 0.25 0.229811 1.49697e-06 1.72597e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to act quickly ||| 0.00943396 0.229811 1.49697e-06 2.69609e-09 2.718 ||| 0-0 ||| 106 668016 +a ||| to act ||| 0.00761124 0.229811 3.89212e-05 5.95162e-05 2.718 ||| 0-0 ||| 3416 668016 +a ||| to acting ||| 0.0454545 0.229811 1.49697e-06 2.06678e-05 2.718 ||| 0-0 ||| 22 668016 +a ||| to action against ||| 0.142857 0.229811 1.49697e-06 2.52668e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| to action by ||| 0.111111 0.131804 1.49697e-06 8.71261e-07 2.718 ||| 0-0 0-2 ||| 9 668016 +a ||| to action ||| 0.0060241 0.229811 1.49697e-06 0.000105896 2.718 ||| 0-0 ||| 166 668016 +a ||| to active ||| 0.2 0.229811 2.99394e-06 1.41172e-05 2.718 ||| 0-0 ||| 10 668016 +a ||| to actual ||| 0.0434783 0.229811 1.49697e-06 5.06886e-05 2.718 ||| 0-0 ||| 23 668016 +a ||| to actually ||| 0.0304878 0.229811 7.48485e-06 0.000144605 2.718 ||| 0-0 ||| 164 668016 +a ||| to adapt their economies and to ||| 1 0.229811 1.49697e-06 3.08757e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| to adapt to ||| 0.00274725 0.229811 1.49697e-06 1.89876e-07 2.718 ||| 0-2 ||| 364 668016 +a ||| to add , at ||| 1 0.204175 1.49697e-06 2.95745e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| to add my own words ||| 1 0.229811 1.49697e-06 7.07766e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to add my own ||| 0.125 0.229811 1.49697e-06 3.13171e-11 2.718 ||| 0-0 ||| 8 668016 +a ||| to add my ||| 0.00641026 0.229811 1.49697e-06 1.84729e-08 2.718 ||| 0-0 ||| 156 668016 +a ||| to add something to ||| 0.0555556 0.229811 1.49697e-06 1.41277e-09 2.718 ||| 0-3 ||| 18 668016 +a ||| to add substance ||| 0.0909091 0.229811 1.49697e-06 8.4738e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| to add to ||| 0.00754717 0.229811 2.99394e-06 2.55243e-06 2.718 ||| 0-0 ||| 265 668016 +a ||| to add ||| 0.00419776 0.229811 1.34727e-05 2.87247e-05 2.718 ||| 0-0 ||| 2144 668016 +a ||| to address the issue of ||| 0.0105263 0.229811 1.49697e-06 6.75102e-11 2.718 ||| 0-0 ||| 95 668016 +a ||| to address the issue ||| 0.008 0.229811 1.49697e-06 1.24182e-09 2.718 ||| 0-0 ||| 125 668016 +a ||| to address the ||| 0.0015748 0.229811 2.99394e-06 1.64088e-06 2.718 ||| 0-0 ||| 1270 668016 +a ||| to address ||| 0.00347481 0.229811 2.09576e-05 2.6728e-05 2.718 ||| 0-0 ||| 4029 668016 +a ||| to addressing ||| 0.0247934 0.181519 4.49091e-06 0.000105511 2.718 ||| 0-0 0-1 ||| 121 668016 +a ||| to adhere to ||| 0.0206897 0.229811 4.49091e-06 3.14384e-07 2.718 ||| 0-0 ||| 145 668016 +a ||| to adhere ||| 0.013245 0.229811 2.99394e-06 3.53805e-06 2.718 ||| 0-0 ||| 151 668016 +a ||| to adjust ||| 0.00619195 0.229811 2.99394e-06 1.64642e-06 2.718 ||| 0-0 ||| 323 668016 +a ||| to admit ||| 0.00384615 0.229811 2.99394e-06 7.56651e-06 2.718 ||| 0-0 ||| 520 668016 +a ||| to adopt it ||| 0.0144928 0.229811 1.49697e-06 6.47866e-07 2.718 ||| 0-0 ||| 69 668016 +a ||| to adopt ||| 0.00553651 0.229811 3.14364e-05 3.64314e-05 2.718 ||| 0-0 ||| 3793 668016 +a ||| to adopting a decision of ||| 1 0.229811 1.49697e-06 6.49303e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to adopting a decision ||| 1 0.229811 1.49697e-06 1.19436e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to adopting a position ||| 0.25 0.229811 1.49697e-06 2.50034e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to adopting a ||| 0.0298507 0.229811 2.99394e-06 7.5929e-07 2.718 ||| 0-0 ||| 67 668016 +a ||| to adopting ||| 0.0135747 0.229811 4.49091e-06 1.71297e-05 2.718 ||| 0-0 ||| 221 668016 +a ||| to advancing ||| 0.0294118 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 34 668016 +a ||| to affect ||| 0.024 0.280235 4.49091e-06 0.000553477 2.718 ||| 0-0 0-1 ||| 125 668016 +a ||| to afford them ||| 0.0625 0.229811 1.49697e-06 2.64041e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| to afford ||| 0.030303 0.229811 4.49091e-06 9.84347e-06 2.718 ||| 0-0 ||| 99 668016 +a ||| to affordable essential medicines . we called ||| 1 0.229811 1.49697e-06 4.05094e-24 2.718 ||| 0-0 ||| 1 668016 +a ||| to affordable essential medicines . we ||| 1 0.229811 1.49697e-06 2.33081e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| to affordable essential medicines . ||| 0.5 0.229811 1.49697e-06 2.05316e-18 2.718 ||| 0-0 ||| 2 668016 +a ||| to affordable essential medicines ||| 0.5 0.229811 1.49697e-06 6.77834e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| to affordable essential ||| 1 0.229811 1.49697e-06 7.88179e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to affordable ||| 1 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to aggressive ||| 0.2 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to agree in the ||| 0.142857 0.0587624 1.49697e-06 5.21466e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| to agree in ||| 0.0666667 0.0587624 1.49697e-06 8.49407e-07 2.718 ||| 0-2 ||| 15 668016 +a ||| to agree to the ||| 0.0185185 0.229811 1.49697e-06 3.04033e-07 2.718 ||| 0-2 ||| 54 668016 +a ||| to agree to ||| 0.0131579 0.229811 5.98788e-06 4.95233e-06 2.718 ||| 0-0 ||| 304 668016 +a ||| to agree upon ||| 0.0416667 0.19056 1.49697e-06 2.78718e-08 2.718 ||| 0-2 ||| 24 668016 +a ||| to agree ||| 0.00548321 0.229811 1.19758e-05 5.5733e-05 2.718 ||| 0-0 ||| 1459 668016 +a ||| to aid ||| 0.012012 0.229811 5.98788e-06 4.57494e-05 2.718 ||| 0-0 ||| 333 668016 +a ||| to aim ||| 0.0229885 0.229811 2.99394e-06 4.81665e-05 2.718 ||| 0-0 ||| 87 668016 +a ||| to air ||| 0.0555556 0.229811 2.99394e-06 1.93016e-05 2.718 ||| 0-0 ||| 36 668016 +a ||| to alarm ||| 0.1 0.229811 1.49697e-06 1.89163e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| to alert ||| 0.0135135 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-0 ||| 74 668016 +a ||| to all acts of ||| 0.25 0.229811 1.49697e-06 5.12041e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to all acts ||| 0.25 0.229811 1.49697e-06 9.41874e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to all kinds of ||| 0.0227273 0.229811 1.49697e-06 4.2745e-09 2.718 ||| 0-0 ||| 44 668016 +a ||| to all kinds ||| 0.0222222 0.229811 1.49697e-06 7.86275e-08 2.718 ||| 0-0 ||| 45 668016 +a ||| to all of you in ||| 0.5 0.144287 1.49697e-06 1.74569e-08 2.718 ||| 0-0 0-4 ||| 2 668016 +a ||| to all of ||| 0.0175159 0.229811 1.64667e-05 8.99896e-05 2.718 ||| 0-0 ||| 628 668016 +a ||| to all outward appearances ||| 1 0.229811 1.49697e-06 4.00586e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to all outward ||| 0.5 0.229811 1.49697e-06 1.82085e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to all ||| 0.0120533 0.229811 0.000127242 0.00165532 2.718 ||| 0-0 ||| 7052 668016 +a ||| to allegations ||| 0.0909091 0.229811 1.49697e-06 1.89163e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| to alleviate ||| 0.00306748 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-0 ||| 326 668016 +a ||| to alleviating ||| 0.025641 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 39 668016 +a ||| to allocate to ||| 0.1 0.229811 1.49697e-06 1.33847e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| to allocate ||| 0.00344828 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-0 ||| 290 668016 +a ||| to allow democratic ||| 0.5 0.229811 1.49697e-06 2.541e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to allow development ||| 0.333333 0.229811 1.49697e-06 1.39797e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to allow ever more ||| 0.0833333 0.229811 1.49697e-06 3.64669e-11 2.718 ||| 0-0 ||| 12 668016 +a ||| to allow ever ||| 0.0833333 0.229811 1.49697e-06 1.59683e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| to allow it ||| 0.027027 0.229811 1.49697e-06 1.51127e-06 2.718 ||| 0-0 ||| 37 668016 +a ||| to allow these countries ||| 0.142857 0.229811 1.49697e-06 3.34653e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| to allow these ||| 0.037037 0.229811 1.49697e-06 8.8136e-08 2.718 ||| 0-0 ||| 27 668016 +a ||| to allow yourself ||| 1 0.229811 1.49697e-06 3.82424e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to allow ||| 0.0111663 0.229811 5.38909e-05 8.49832e-05 2.718 ||| 0-0 ||| 3224 668016 +a ||| to allowing ||| 0.0625 0.229811 2.99394e-06 1.76552e-05 2.718 ||| 0-0 ||| 32 668016 +a ||| to also cover ||| 0.142857 0.229811 1.49697e-06 1.38122e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to also discussing ||| 0.333333 0.229811 1.49697e-06 6.24292e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to also include ||| 0.0588235 0.229811 1.49697e-06 2.34154e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| to also involve all ||| 1 0.229811 1.49697e-06 4.12001e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to also involve ||| 1 0.229811 1.49697e-06 8.71887e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to also ||| 0.0388889 0.229811 1.04788e-05 0.00176853 2.718 ||| 0-0 ||| 180 668016 +a ||| to alter ||| 0.00515464 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-0 ||| 194 668016 +a ||| to always encumber ||| 0.166667 0.229811 1.49697e-06 2.41008e-11 2.718 ||| 0-0 ||| 6 668016 +a ||| to always ||| 0.111111 0.229811 4.49091e-06 6.02519e-05 2.718 ||| 0-0 ||| 27 668016 +a ||| to amend ||| 0.000960615 0.229811 1.49697e-06 2.13684e-06 2.718 ||| 0-0 ||| 1041 668016 +a ||| to among the ||| 0.5 0.229811 1.49697e-06 1.92691e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to among ||| 0.5 0.229811 1.49697e-06 3.1387e-05 2.718 ||| 0-0 ||| 2 668016 +a ||| to amount ||| 0.142857 0.229811 1.49697e-06 8.52284e-05 2.718 ||| 0-0 ||| 7 668016 +a ||| to an application ||| 0.333333 0.229811 1.49697e-06 9.46647e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to an end , ||| 0.0104167 0.229811 1.49697e-06 8.07884e-08 2.718 ||| 0-0 ||| 96 668016 +a ||| to an end at the ||| 0.5 0.204175 1.49697e-06 3.59063e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| to an end at ||| 0.5 0.204175 1.49697e-06 5.84871e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| to an end ||| 0.00883392 0.229811 7.48485e-06 6.77444e-07 2.718 ||| 0-0 ||| 566 668016 +a ||| to an expected EUR ||| 1 0.229811 1.49697e-06 2.21908e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to an expected ||| 0.5 0.229811 1.49697e-06 8.29873e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to an impact velocity ||| 1 0.229811 1.49697e-06 5.13182e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to an impact ||| 0.333333 0.229811 1.49697e-06 1.28296e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to an impressive ||| 0.5 0.229811 1.49697e-06 7.78493e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to an increasing ||| 0.0588235 0.229811 1.49697e-06 8.06519e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| to an independent ||| 0.333333 0.229811 1.49697e-06 3.81461e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to an ||| 0.021348 0.229811 0.00013323 0.00155699 2.718 ||| 0-0 ||| 4169 668016 +a ||| to analyse the differences at the ||| 1 0.229811 1.49697e-06 2.84607e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to analyse the differences at ||| 1 0.229811 1.49697e-06 4.63592e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to analyse the differences ||| 1 0.229811 1.49697e-06 1.10711e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to analyse the ||| 0.00520833 0.229811 1.49697e-06 4.73124e-08 2.718 ||| 0-0 ||| 192 668016 +a ||| to analyse ||| 0.00225734 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-0 ||| 443 668016 +a ||| to and dealing with ||| 1 0.229811 1.49697e-06 2.8984e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to and dealing ||| 1 0.229811 1.49697e-06 4.53264e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to and for ||| 1 0.149075 1.49697e-06 0.000161685 2.718 ||| 0-0 0-2 ||| 1 668016 +a ||| to and surrounding questions ||| 1 0.229811 1.49697e-06 5.86369e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to and surrounding ||| 1 0.229811 1.49697e-06 6.62564e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to and to ||| 0.2 0.229811 1.49697e-06 0.000389896 2.718 ||| 0-2 ||| 5 668016 +a ||| to and ||| 0.0164745 0.229811 1.49697e-05 0.00438784 2.718 ||| 0-0 ||| 607 668016 +a ||| to announce that ||| 0.010101 0.229811 1.49697e-06 2.12135e-08 2.718 ||| 0-0 ||| 99 668016 +a ||| to announce ||| 0.00411523 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 243 668016 +a ||| to another , ||| 0.00465116 0.229811 1.49697e-06 1.0072e-05 2.718 ||| 0-0 ||| 215 668016 +a ||| to another directive ||| 0.25 0.229811 1.49697e-06 9.42548e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to another ||| 0.00474576 0.229811 1.04788e-05 8.44577e-05 2.718 ||| 0-0 ||| 1475 668016 +a ||| to answer for ||| 0.0222222 0.229811 1.49697e-06 2.01654e-07 2.718 ||| 0-0 ||| 45 668016 +a ||| to answer ||| 0.00253165 0.229811 5.98788e-06 2.62376e-05 2.718 ||| 0-0 ||| 1580 668016 +a ||| to answering ||| 0.0526316 0.290581 1.49697e-06 6.23537e-05 2.718 ||| 0-0 0-1 ||| 19 668016 +a ||| to any infringements of ||| 1 0.0188479 1.49697e-06 1.86802e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| to any of ||| 0.056338 0.229811 5.98788e-06 2.8798e-05 2.718 ||| 0-0 ||| 71 668016 +a ||| to any solution . ||| 1 0.229811 1.49697e-06 1.09109e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to any solution ||| 0.25 0.229811 1.49697e-06 3.60214e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to any ||| 0.0241477 0.229811 5.0897e-05 0.000529726 2.718 ||| 0-0 ||| 1408 668016 +a ||| to anyone else ||| 0.0625 0.229811 1.49697e-06 1.97997e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| to anyone ||| 0.00724638 0.229811 2.99394e-06 1.67794e-05 2.718 ||| 0-0 ||| 276 668016 +a ||| to anything approaching their satisfaction ||| 1 0.1653 1.49697e-06 2.12304e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| to anything approaching their ||| 1 0.1653 1.49697e-06 1.78406e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| to anything approaching ||| 0.111111 0.1653 1.49697e-06 1.53918e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| to anything else , to ||| 1 0.229811 1.49697e-06 6.87258e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| to anything ||| 0.0153846 0.229811 1.49697e-06 5.49623e-05 2.718 ||| 0-0 ||| 65 668016 +a ||| to apologise ||| 0.00625 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 160 668016 +a ||| to appeal to ||| 0.0111111 0.229811 2.99394e-06 9.40041e-07 2.718 ||| 0-0 ||| 180 668016 +a ||| to appeal ||| 0.00877193 0.229811 4.49091e-06 1.05791e-05 2.718 ||| 0-0 ||| 342 668016 +a ||| to appear ||| 0.0264317 0.229811 8.98182e-06 3.06164e-05 2.718 ||| 0-0 ||| 227 668016 +a ||| to apply a ||| 0.0105263 0.229811 1.49697e-06 2.23439e-06 2.718 ||| 0-0 ||| 95 668016 +a ||| to apply also to ||| 0.333333 0.229811 1.49697e-06 2.26137e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| to apply for ||| 0.0060241 0.229811 1.49697e-06 3.87424e-07 2.718 ||| 0-0 ||| 166 668016 +a ||| to apply to them ||| 0.25 0.229811 1.49697e-06 1.2015e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to apply to ||| 0.0301205 0.229811 7.48485e-06 4.4792e-06 2.718 ||| 0-2 ||| 166 668016 +a ||| to apply ||| 0.00638686 0.229811 2.09576e-05 5.04084e-05 2.718 ||| 0-0 ||| 2192 668016 +a ||| to appoint ||| 0.00333333 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 300 668016 +a ||| to appointments ||| 0.5 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to appreciable ||| 0.2 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to appreciate them , ||| 1 0.229811 1.49697e-06 2.01704e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to appreciate them ||| 0.5 0.229811 1.49697e-06 1.69137e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to appreciate ||| 0.0116959 0.229811 2.99394e-06 6.30543e-06 2.718 ||| 0-0 ||| 171 668016 +a ||| to approach ||| 0.0171674 0.229811 5.98788e-06 7.67861e-05 2.718 ||| 0-0 ||| 233 668016 +a ||| to approve ||| 0.00111732 0.229811 1.49697e-06 7.81173e-06 2.718 ||| 0-0 ||| 895 668016 +a ||| to arbitrary ||| 0.166667 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| to are to be brought ||| 0.333333 0.229811 1.49697e-06 2.39656e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to are to be ||| 0.333333 0.229811 1.49697e-06 8.55914e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to are to ||| 0.333333 0.229811 1.49697e-06 0.000472283 2.718 ||| 0-0 ||| 3 668016 +a ||| to are ||| 0.16 0.229811 5.98788e-06 0.00531502 2.718 ||| 0-0 ||| 25 668016 +a ||| to areas in ||| 0.0769231 0.0587624 1.49697e-06 1.22206e-06 2.718 ||| 0-2 ||| 13 668016 +a ||| to areas ||| 0.0119048 0.229811 2.99394e-06 8.0184e-05 2.718 ||| 0-0 ||| 168 668016 +a ||| to argument , ||| 1 0.229811 1.49697e-06 1.35351e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| to argument ||| 0.333333 0.229811 1.49697e-06 1.13498e-05 2.718 ||| 0-0 ||| 3 668016 +a ||| to arise ||| 0.0136986 0.229811 1.49697e-06 1.52381e-05 2.718 ||| 0-0 ||| 73 668016 +a ||| to arm ||| 0.0333333 0.229811 1.49697e-06 5.67489e-06 2.718 ||| 0-0 ||| 30 668016 +a ||| to armchair ||| 0.25 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to arms ||| 0.037037 0.229811 1.49697e-06 9.70335e-06 2.718 ||| 0-0 ||| 27 668016 +a ||| to around ||| 0.01 0.229811 1.49697e-06 4.66602e-05 2.718 ||| 0-0 ||| 100 668016 +a ||| to arrange for ||| 0.027027 0.0683377 1.49697e-06 3.30703e-08 2.718 ||| 0-2 ||| 37 668016 +a ||| to arrange ||| 0.0175439 0.229811 2.99394e-06 3.53805e-06 2.718 ||| 0-0 ||| 114 668016 +a ||| to arrive at a ||| 0.00763359 0.229811 1.49697e-06 1.31339e-09 2.718 ||| 0-0 ||| 131 668016 +a ||| to arrive at ||| 0.0155642 0.229811 5.98788e-06 2.96304e-08 2.718 ||| 0-0 ||| 257 668016 +a ||| to arrive ||| 0.00961538 0.229811 4.49091e-06 7.07609e-06 2.718 ||| 0-0 ||| 312 668016 +a ||| to as having been ||| 0.5 0.229811 1.49697e-06 4.57043e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to as having ||| 0.5 0.229811 1.49697e-06 1.36872e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to as many as possible ||| 0.5 0.229811 1.49697e-06 1.00443e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to as many as ||| 0.375 0.229811 4.49091e-06 1.25225e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to as many ||| 0.0714286 0.229811 4.49091e-06 1.22717e-06 2.718 ||| 0-0 ||| 42 668016 +a ||| to as much as ||| 0.0833333 0.229811 1.49697e-06 3.66118e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| to as much ||| 0.111111 0.229811 1.49697e-06 3.58784e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| to as such ||| 0.166667 0.229811 1.49697e-06 7.39553e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| to as well ||| 0.25 0.229811 1.49697e-06 5.66791e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to as ||| 0.0782918 0.229811 3.29333e-05 0.00357462 2.718 ||| 0-0 ||| 281 668016 +a ||| to ascertain whether they are ||| 0.5 0.229811 1.49697e-06 2.14197e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| to ascertain whether they ||| 0.5 0.229811 1.49697e-06 1.41173e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to ascertain whether ||| 0.0208333 0.229811 1.49697e-06 4.32514e-10 2.718 ||| 0-0 ||| 48 668016 +a ||| to ascertain ||| 0.0100503 0.229811 2.99394e-06 1.64642e-06 2.718 ||| 0-0 ||| 199 668016 +a ||| to ascertaining ||| 0.125 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| to ask the House ||| 0.0454545 0.229811 1.49697e-06 7.39552e-10 2.718 ||| 0-0 ||| 22 668016 +a ||| to ask the people living ||| 0.5 0.229811 1.49697e-06 2.18113e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to ask the people ||| 0.2 0.229811 1.49697e-06 2.60277e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to ask the ||| 0.00198807 0.229811 4.49091e-06 2.95703e-06 2.718 ||| 0-0 ||| 1509 668016 +a ||| to ask to take ||| 0.125 0.229811 1.49697e-06 6.89078e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| to ask to ||| 0.037037 0.229811 1.49697e-06 4.27999e-06 2.718 ||| 0-2 ||| 27 668016 +a ||| to ask whether ||| 0.00465116 0.229811 1.49697e-06 1.26533e-08 2.718 ||| 0-0 ||| 215 668016 +a ||| to ask ||| 0.00489106 0.229811 3.29333e-05 4.81665e-05 2.718 ||| 0-0 ||| 4498 668016 +a ||| to assert ||| 0.00574713 0.229811 1.49697e-06 2.13684e-06 2.718 ||| 0-0 ||| 174 668016 +a ||| to assess ||| 0.00077821 0.229811 1.49697e-06 5.42967e-06 2.718 ||| 0-0 ||| 1285 668016 +a ||| to assist ||| 0.0136054 0.266064 2.09576e-05 0.000275302 2.718 ||| 0-0 0-1 ||| 1029 668016 +a ||| to associate myself with ||| 0.0454545 0.0571592 1.49697e-06 1.49944e-12 2.718 ||| 0-3 ||| 22 668016 +a ||| to assume total ||| 0.2 0.229811 1.49697e-06 1.19911e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to assume ||| 0.00970874 0.229811 7.48485e-06 1.27159e-05 2.718 ||| 0-0 ||| 515 668016 +a ||| to assurances ||| 0.166667 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| to assure ||| 0.00406504 0.229811 1.49697e-06 4.4138e-06 2.718 ||| 0-0 ||| 246 668016 +a ||| to at long last get back ||| 1 0.216993 1.49697e-06 2.59039e-16 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| to at long last get ||| 1 0.216993 1.49697e-06 3.8513e-13 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| to at long last ||| 1 0.216993 1.49697e-06 8.80902e-10 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| to at long ||| 1 0.216993 1.49697e-06 4.03343e-06 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| to at ||| 0.0507614 0.216993 1.49697e-05 0.0119227 2.718 ||| 0-0 0-1 ||| 197 668016 +a ||| to attach to ||| 0.25 0.229811 1.49697e-06 3.36173e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| to attach ||| 0.00900901 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-0 ||| 111 668016 +a ||| to attack ||| 0.017094 0.229811 5.98788e-06 1.03339e-05 2.718 ||| 0-0 ||| 234 668016 +a ||| to attain them ||| 0.25 0.229811 1.49697e-06 2.34912e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to attain ||| 0.00843882 0.229811 2.99394e-06 8.75754e-07 2.718 ||| 0-0 ||| 237 668016 +a ||| to attaining ||| 0.05 0.229811 2.99394e-06 8.75754e-07 2.718 ||| 0-0 ||| 40 668016 +a ||| to attend ||| 0.02 0.242698 1.49697e-05 0.000124392 2.718 ||| 0-0 0-1 ||| 500 668016 +a ||| to attract ||| 0.00662252 0.229811 2.99394e-06 2.38205e-06 2.718 ||| 0-0 ||| 302 668016 +a ||| to authorised ||| 0.5 0.229811 1.49697e-06 2.52217e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to avail themselves of student ||| 0.333333 0.0188479 1.49697e-06 1.24231e-17 2.718 ||| 0-3 ||| 3 668016 +a ||| to avail themselves of ||| 0.0357143 0.0188479 1.49697e-06 5.64689e-12 2.718 ||| 0-3 ||| 28 668016 +a ||| to avoid evasion ||| 0.5 0.229811 1.49697e-06 1.73119e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to avoid having ||| 0.030303 0.229811 1.49697e-06 4.73481e-09 2.718 ||| 0-0 ||| 33 668016 +a ||| to avoid massive ||| 0.25 0.229811 1.49697e-06 1.91668e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to avoid ||| 0.0017094 0.229811 8.98182e-06 1.23656e-05 2.718 ||| 0-0 ||| 3510 668016 +a ||| to awareness and ||| 0.5 0.229811 1.49697e-06 1.31197e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to awareness ||| 0.25 0.229811 1.49697e-06 1.0474e-05 2.718 ||| 0-0 ||| 4 668016 +a ||| to back ||| 0.0379147 0.229811 1.19758e-05 0.000235613 2.718 ||| 0-0 ||| 211 668016 +a ||| to ban , ||| 0.2 0.229811 1.49697e-06 1.60834e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to ban ||| 0.00158479 0.229811 1.49697e-06 1.34866e-05 2.718 ||| 0-0 ||| 631 668016 +a ||| to bar ||| 0.0625 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-0 ||| 16 668016 +a ||| to base ||| 0.00581395 0.229811 1.49697e-06 1.18402e-05 2.718 ||| 0-0 ||| 172 668016 +a ||| to basic ||| 0.166667 0.229811 2.99394e-06 1.89163e-05 2.718 ||| 0-0 ||| 12 668016 +a ||| to be , ' ||| 1 0.229811 1.49697e-06 2.60052e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| to be , ||| 0.0117647 0.229811 2.99394e-06 0.000757086 2.718 ||| 0-0 ||| 170 668016 +a ||| to be . ||| 0.00469484 0.229811 1.49697e-06 1.92295e-05 2.718 ||| 0-0 ||| 213 668016 +a ||| to be European ||| 0.0294118 0.229811 1.49697e-06 2.12287e-05 2.718 ||| 0-0 ||| 34 668016 +a ||| to be a focus of ||| 0.333333 0.229811 1.49697e-06 1.18407e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to be a focus ||| 0.333333 0.229811 1.49697e-06 2.17805e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to be a mechanical ||| 1 0.229811 1.49697e-06 3.09542e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to be a member of a ||| 0.166667 0.229811 1.49697e-06 1.12972e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| to be a member of ||| 0.0454545 0.229811 1.49697e-06 2.54867e-09 2.718 ||| 0-0 ||| 22 668016 +a ||| to be a member ||| 0.0294118 0.229811 1.49697e-06 4.68815e-08 2.718 ||| 0-0 ||| 34 668016 +a ||| to be a paperless parliament ||| 1 0.229811 1.49697e-06 2.71271e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to be a paperless ||| 1 0.229811 1.49697e-06 1.12561e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to be a supporter ||| 1 0.229811 1.49697e-06 1.12561e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to be a ||| 0.00726644 0.229811 3.14364e-05 0.000281401 2.718 ||| 0-0 ||| 2890 668016 +a ||| to be able by ||| 0.5 0.0337966 1.49697e-06 1.10618e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| to be able to enjoy ||| 0.0833333 0.229811 1.49697e-06 1.83211e-11 2.718 ||| 0-0 ||| 12 668016 +a ||| to be able to exploit ||| 0.25 0.229811 1.49697e-06 3.57944e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| to be able to hold their own ||| 0.333333 0.229811 1.49697e-06 1.61219e-16 2.718 ||| 0-0 ||| 3 668016 +a ||| to be able to hold their ||| 1 0.229811 1.49697e-06 9.50979e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to be able to hold ||| 0.0909091 0.229811 1.49697e-06 8.20446e-11 2.718 ||| 0-0 ||| 11 668016 +a ||| to be able to implement ||| 0.0416667 0.229811 1.49697e-06 2.62806e-11 2.718 ||| 0-0 ||| 24 668016 +a ||| to be able to respond ||| 0.0277778 0.229811 1.49697e-06 1.33758e-11 2.718 ||| 0-0 ||| 36 668016 +a ||| to be able to speak on her ||| 1 0.0782999 1.49697e-06 1.66852e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| to be able to speak on ||| 0.166667 0.0782999 1.49697e-06 6.132e-13 2.718 ||| 0-5 ||| 6 668016 +a ||| to be able to ||| 0.00889621 0.229811 4.04182e-05 4.70979e-07 2.718 ||| 0-3 ||| 3035 668016 +a ||| to be able ||| 0.0122324 0.229811 2.39515e-05 5.30035e-06 2.718 ||| 0-0 ||| 1308 668016 +a ||| to be absolutely rigorous , no calculation ||| 1 0.229811 1.49697e-06 1.19481e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| to be absolutely rigorous , no ||| 1 0.229811 1.49697e-06 2.38962e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to be absolutely rigorous , ||| 1 0.229811 1.49697e-06 3.06991e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to be absolutely rigorous ||| 1 0.229811 1.49697e-06 2.57425e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to be absolutely ||| 0.0119048 0.229811 1.49697e-06 5.98662e-07 2.718 ||| 0-0 ||| 84 668016 +a ||| to be accompanied ||| 0.037037 0.229811 1.49697e-06 1.28239e-07 2.718 ||| 0-0 ||| 27 668016 +a ||| to be achieved ||| 0.00898876 0.229811 5.98788e-06 1.0621e-06 2.718 ||| 0-0 ||| 445 668016 +a ||| to be acted ||| 0.333333 0.229811 1.49697e-06 1.23161e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to be added to ||| 0.0285714 0.229811 1.49697e-06 4.02214e-08 2.718 ||| 0-3 ||| 35 668016 +a ||| to be addressed by ||| 0.0526316 0.0337966 1.49697e-06 7.10163e-10 2.718 ||| 0-3 ||| 19 668016 +a ||| to be administered ||| 0.1 0.229811 1.49697e-06 3.17424e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| to be adopted , they ||| 1 0.229811 1.49697e-06 5.0411e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to be adopted , ||| 0.0277778 0.229811 1.49697e-06 1.54446e-07 2.718 ||| 0-0 ||| 36 668016 +a ||| to be adopted before ||| 0.0833333 0.229811 1.49697e-06 3.23902e-10 2.718 ||| 0-0 ||| 12 668016 +a ||| to be adopted ||| 0.00544959 0.229811 5.98788e-06 1.29509e-06 2.718 ||| 0-0 ||| 734 668016 +a ||| to be against ||| 0.0357143 0.229811 1.49697e-06 1.51475e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| to be aimed at ||| 0.0714286 0.204175 1.49697e-06 3.80926e-09 2.718 ||| 0-3 ||| 14 668016 +a ||| to be alerted ||| 0.25 0.229811 1.49697e-06 6.98333e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to be allocated ||| 0.0176991 0.229811 2.99394e-06 2.83142e-07 2.718 ||| 0-0 ||| 113 668016 +a ||| to be allowed to fish the stocks ||| 0.5 0.229811 1.49697e-06 4.08296e-18 2.718 ||| 0-0 ||| 2 668016 +a ||| to be allowed to fish the ||| 0.5 0.229811 1.49697e-06 1.85589e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to be allowed to fish ||| 0.5 0.229811 1.49697e-06 3.02303e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to be allowed to ||| 0.0206186 0.229811 2.99394e-06 9.13302e-08 2.718 ||| 0-0 ||| 97 668016 +a ||| to be allowed ||| 0.025641 0.229811 4.49091e-06 1.02782e-06 2.718 ||| 0-0 ||| 117 668016 +a ||| to be amended in ||| 0.0526316 0.229811 1.49697e-06 1.46757e-09 2.718 ||| 0-0 ||| 19 668016 +a ||| to be amended ||| 0.00884956 0.229811 1.49697e-06 6.85636e-08 2.718 ||| 0-0 ||| 113 668016 +a ||| to be an extension ||| 0.25 0.229811 1.49697e-06 4.76869e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to be an ||| 0.00629921 0.229811 5.98788e-06 2.82171e-05 2.718 ||| 0-0 ||| 635 668016 +a ||| to be any use ||| 0.166667 0.229811 1.49697e-06 4.6676e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to be any ||| 0.0350877 0.229811 2.99394e-06 9.60017e-06 2.718 ||| 0-0 ||| 57 668016 +a ||| to be applied , inter alia , ||| 1 0.229811 1.49697e-06 1.753e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| to be applied , inter alia ||| 1 0.229811 1.49697e-06 1.46996e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to be applied , inter ||| 1 0.229811 1.49697e-06 8.85518e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to be applied , ||| 0.0588235 0.229811 1.49697e-06 8.19924e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| to be applied to ||| 0.0144928 0.229811 1.49697e-06 6.10936e-08 2.718 ||| 0-3 ||| 69 668016 +a ||| to be applied ||| 0.004 0.229811 2.99394e-06 6.8754e-07 2.718 ||| 0-0 ||| 500 668016 +a ||| to be approved ||| 0.00645161 0.229811 1.49697e-06 2.90126e-07 2.718 ||| 0-0 ||| 155 668016 +a ||| to be arrested for ||| 1 0.229811 1.49697e-06 2.09808e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to be arrested ||| 0.0625 0.229811 1.49697e-06 2.72985e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| to be asked ||| 0.012987 0.229811 1.49697e-06 4.79945e-07 2.718 ||| 0-0 ||| 77 668016 +a ||| to be assigned ||| 0.0833333 0.229811 1.49697e-06 4.82485e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| to be associated with it , ||| 1 0.229811 1.49697e-06 4.43373e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to be associated with it ||| 0.666667 0.229811 2.99394e-06 3.71786e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to be associated with ||| 0.05 0.229811 2.99394e-06 2.09066e-09 2.718 ||| 0-0 ||| 40 668016 +a ||| to be associated ||| 0.0285714 0.229811 1.49697e-06 3.26947e-07 2.718 ||| 0-0 ||| 35 668016 +a ||| to be at ||| 0.00787402 0.204175 1.49697e-06 5.48095e-05 2.718 ||| 0-2 ||| 127 668016 +a ||| to be attached ||| 0.04 0.229811 1.49697e-06 2.03151e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| to be believed ||| 0.0645161 0.229811 2.99394e-06 7.1103e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| to be borne ||| 0.0227273 0.229811 2.99394e-06 2.03151e-07 2.718 ||| 0-0 ||| 88 668016 +a ||| to be bound by ||| 0.125 0.229811 1.49697e-06 1.7165e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| to be bound to ||| 0.5 0.229811 1.49697e-06 2.90519e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| to be bound ||| 0.1 0.229811 1.49697e-06 3.26947e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| to be broken up ||| 0.125 0.229811 1.49697e-06 6.4738e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| to be broken ||| 0.0526316 0.229811 1.49697e-06 1.8982e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| to be brought before ||| 0.1 0.229811 1.49697e-06 4.44571e-10 2.718 ||| 0-0 ||| 10 668016 +a ||| to be brought into line with ||| 0.125 0.0571592 1.49697e-06 2.27538e-15 2.718 ||| 0-5 ||| 8 668016 +a ||| to be brought into ||| 0.0322581 0.107578 1.49697e-06 2.73892e-09 2.718 ||| 0-3 ||| 31 668016 +a ||| to be brought to a ||| 0.111111 0.229811 1.49697e-06 7.00135e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| to be brought to bear on ||| 1 0.0782999 1.49697e-06 2.27536e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| to be brought to ||| 0.0181818 0.229811 1.49697e-06 1.57952e-07 2.718 ||| 0-0 ||| 55 668016 +a ||| to be brought ||| 0.0258065 0.229811 5.98788e-06 1.77757e-06 2.718 ||| 0-0 ||| 155 668016 +a ||| to be called ||| 0.0126582 0.229811 1.49697e-06 1.10337e-06 2.718 ||| 0-0 ||| 79 668016 +a ||| to be capable of being in ||| 1 0.144287 1.49697e-06 3.09808e-12 2.718 ||| 0-0 0-5 ||| 1 668016 +a ||| to be carried out . these effects ||| 0.5 0.229811 1.49697e-06 1.2224e-18 2.718 ||| 0-0 ||| 2 668016 +a ||| to be carried out . these ||| 0.5 0.229811 1.49697e-06 2.2512e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| to be carried out . ||| 0.0357143 0.229811 1.49697e-06 2.17067e-11 2.718 ||| 0-0 ||| 28 668016 +a ||| to be carried out by ||| 0.02 0.229811 1.49697e-06 3.76237e-11 2.718 ||| 0-0 ||| 50 668016 +a ||| to be carried out ||| 0.0104439 0.229811 5.98788e-06 7.16629e-09 2.718 ||| 0-0 ||| 383 668016 +a ||| to be carried ||| 0.019305 0.229811 7.48485e-06 1.8709e-06 2.718 ||| 0-0 ||| 259 668016 +a ||| to be certain ||| 0.02 0.229811 1.49697e-06 1.80932e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| to be certified , to ||| 1 0.229811 1.49697e-06 1.68183e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to be certified , ||| 0.5 0.229811 1.49697e-06 1.89272e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to be certified ||| 0.2 0.229811 1.49697e-06 1.58712e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to be changed by ||| 0.333333 0.229811 1.49697e-06 1.0899e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to be changed ||| 0.00719424 0.229811 1.49697e-06 2.07595e-07 2.718 ||| 0-0 ||| 139 668016 +a ||| to be charged for ||| 1 0.229811 1.49697e-06 8.09956e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to be charged ||| 0.0666667 0.229811 1.49697e-06 1.05385e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| to be chemically bloated ||| 0.333333 0.229811 1.49697e-06 1.77757e-15 2.718 ||| 0-0 ||| 3 668016 +a ||| to be chemically ||| 0.333333 0.229811 1.49697e-06 2.53939e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to be commended ||| 0.02 0.229811 1.49697e-06 8.88787e-09 2.718 ||| 0-0 ||| 50 668016 +a ||| to be committed to ||| 0.05 0.229811 1.49697e-06 4.67087e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| to be committed ||| 0.0294118 0.229811 1.49697e-06 5.25654e-07 2.718 ||| 0-0 ||| 34 668016 +a ||| to be complied with and ||| 1 0.229811 1.49697e-06 8.59354e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to be complied with ||| 0.0217391 0.229811 1.49697e-06 6.86062e-10 2.718 ||| 0-0 ||| 46 668016 +a ||| to be complied ||| 0.1 0.229811 1.49697e-06 1.07289e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| to be confusing ||| 0.333333 0.229811 1.49697e-06 1.58712e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to be congratulated ||| 0.00892857 0.229811 1.49697e-06 2.03151e-08 2.718 ||| 0-0 ||| 112 668016 +a ||| to be considered closed ||| 0.5 0.229811 1.49697e-06 3.95513e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to be considered ||| 0.0102389 0.229811 4.49091e-06 6.83097e-07 2.718 ||| 0-0 ||| 293 668016 +a ||| to be contained ||| 0.111111 0.229811 1.49697e-06 4.31697e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to be coordinated ||| 0.0196078 0.229811 1.49697e-06 4.31697e-08 2.718 ||| 0-0 ||| 51 668016 +a ||| to be created ||| 0.0178571 0.229811 4.49091e-06 6.6913e-07 2.718 ||| 0-0 ||| 168 668016 +a ||| to be dealt with by the ||| 0.0833333 0.229811 1.49697e-06 1.36994e-12 2.718 ||| 0-0 ||| 12 668016 +a ||| to be dealt with by ||| 0.0333333 0.229811 1.49697e-06 2.23147e-11 2.718 ||| 0-0 ||| 30 668016 +a ||| to be dealt with in ||| 0.025 0.115244 1.49697e-06 6.66735e-10 2.718 ||| 0-0 0-3 0-4 ||| 40 668016 +a ||| to be dealt with ||| 0.0123457 0.229811 5.98788e-06 4.25033e-09 2.718 ||| 0-0 ||| 324 668016 +a ||| to be dealt ||| 0.0328947 0.229811 7.48485e-06 6.64686e-07 2.718 ||| 0-0 ||| 152 668016 +a ||| to be deducted ||| 1 0.229811 1.49697e-06 2.03151e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to be defined , to ||| 0.5 0.229811 1.49697e-06 2.25366e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to be defined , ||| 0.0625 0.229811 1.49697e-06 2.53624e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| to be defined ||| 0.0106383 0.229811 1.49697e-06 2.12674e-07 2.718 ||| 0-0 ||| 94 668016 +a ||| to be delayed for ||| 1 0.0683377 1.49697e-06 5.57793e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| to be delivered to ||| 0.166667 0.229811 1.49697e-06 1.9462e-08 2.718 ||| 0-3 ||| 6 668016 +a ||| to be delivered ||| 0.04 0.229811 1.49697e-06 2.19023e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| to be dependent ||| 0.142857 0.229811 1.49697e-06 1.73314e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to be described as ||| 0.142857 0.229811 1.49697e-06 2.8893e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| to be described ||| 0.125 0.229811 1.49697e-06 2.83142e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| to be designed to ||| 0.25 0.229811 1.49697e-06 4.40573e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| to be desired in certain ||| 1 0.0587624 1.49697e-06 4.27415e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| to be desired in ||| 0.05 0.0587624 1.49697e-06 1.4997e-09 2.718 ||| 0-3 ||| 20 668016 +a ||| to be desired ||| 0.00362319 0.229811 1.49697e-06 9.84015e-08 2.718 ||| 0-0 ||| 276 668016 +a ||| to be determined ||| 0.0188679 0.229811 1.49697e-06 2.17118e-07 2.718 ||| 0-0 ||| 53 668016 +a ||| to be discussed at ||| 0.0294118 0.204175 1.49697e-06 2.8775e-09 2.718 ||| 0-3 ||| 34 668016 +a ||| to be discussed ||| 0.0035461 0.229811 1.49697e-06 3.33295e-07 2.718 ||| 0-0 ||| 282 668016 +a ||| to be disillusioned ||| 1 0.229811 1.49697e-06 6.98333e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to be distributed to ||| 0.25 0.229811 1.49697e-06 7.8976e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| to be donated by way ||| 1 0.229811 1.49697e-06 7.90311e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to be donated by ||| 1 0.229811 1.49697e-06 3.66632e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to be donated ||| 0.2 0.229811 1.49697e-06 6.98333e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to be done , in ||| 0.111111 0.144287 1.49697e-06 2.07424e-08 2.718 ||| 0-0 0-4 ||| 9 668016 +a ||| to be done , ||| 0.00409836 0.229811 1.49697e-06 3.45231e-07 2.718 ||| 0-0 ||| 244 668016 +a ||| to be done by ||| 0.0227273 0.229811 1.49697e-06 1.51986e-08 2.718 ||| 0-0 ||| 44 668016 +a ||| to be done now ||| 0.0909091 0.229811 1.49697e-06 5.96322e-09 2.718 ||| 0-0 ||| 11 668016 +a ||| to be done ||| 0.00444642 0.229811 1.49697e-05 2.89491e-06 2.718 ||| 0-0 ||| 2249 668016 +a ||| to be drafted ||| 0.0238095 0.229811 1.49697e-06 1.78392e-07 2.718 ||| 0-0 ||| 42 668016 +a ||| to be drawn up ||| 0.0176991 0.229811 2.99394e-06 3.07668e-09 2.718 ||| 0-0 ||| 113 668016 +a ||| to be drawn ||| 0.0175439 0.229811 2.99394e-06 9.02119e-07 2.718 ||| 0-0 ||| 114 668016 +a ||| to be effected ||| 0.166667 0.229811 1.49697e-06 2.72985e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to be eliminated . ||| 0.166667 0.229811 1.49697e-06 2.69214e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| to be eliminated ||| 0.0238095 0.229811 1.49697e-06 8.88787e-08 2.718 ||| 0-0 ||| 42 668016 +a ||| to be encouraged ||| 0.0172414 0.229811 1.49697e-06 1.14273e-07 2.718 ||| 0-0 ||| 58 668016 +a ||| to be endorsed ||| 0.0714286 0.229811 1.49697e-06 5.26924e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| to be enforced ||| 0.0196078 0.229811 1.49697e-06 7.30075e-08 2.718 ||| 0-0 ||| 51 668016 +a ||| to be ensured that ||| 0.166667 0.229811 1.49697e-06 1.5378e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to be ensured ||| 0.0322581 0.229811 1.49697e-06 9.14181e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| to be excluded ||| 0.0185185 0.229811 1.49697e-06 7.30075e-08 2.718 ||| 0-0 ||| 54 668016 +a ||| to be exerted in favour ||| 1 0.229811 1.49697e-06 5.23114e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to be exerted in ||| 1 0.229811 1.49697e-06 1.61704e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to be exerted ||| 0.0714286 0.229811 1.49697e-06 7.55469e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| to be expected , given ||| 0.111111 0.229811 1.49697e-06 2.76941e-11 2.718 ||| 0-0 ||| 9 668016 +a ||| to be expected , ||| 0.0333333 0.229811 1.49697e-06 4.03527e-08 2.718 ||| 0-0 ||| 30 668016 +a ||| to be expected ||| 0.00621118 0.229811 1.49697e-06 3.38374e-07 2.718 ||| 0-0 ||| 161 668016 +a ||| to be exported ||| 0.05 0.229811 1.49697e-06 1.58712e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| to be extended ||| 0.00591716 0.229811 1.49697e-06 2.3045e-07 2.718 ||| 0-0 ||| 169 668016 +a ||| to be faced ||| 0.0555556 0.229811 4.49091e-06 4.01859e-07 2.718 ||| 0-0 ||| 54 668016 +a ||| to be fired upon ||| 0.5 0.229811 1.49697e-06 6.4752e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to be fired ||| 0.25 0.229811 1.49697e-06 2.72985e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to be fitted ||| 0.0714286 0.229811 1.49697e-06 5.96757e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| to be fleshed ||| 0.166667 0.229811 1.49697e-06 1.58712e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to be followed ||| 0.00884956 0.229811 2.99394e-06 4.54551e-07 2.718 ||| 0-0 ||| 226 668016 +a ||| to be for a ||| 1 0.0683377 1.49697e-06 2.63028e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| to be for ||| 0.1 0.229811 2.99394e-06 4.87925e-05 2.718 ||| 0-0 ||| 20 668016 +a ||| to be found for ||| 0.111111 0.0683377 1.49697e-06 1.29835e-08 2.718 ||| 0-3 ||| 9 668016 +a ||| to be found to ||| 0.5 0.229811 1.49697e-06 1.23428e-07 2.718 ||| 0-3 ||| 2 668016 +a ||| to be fulfilled ||| 0.0192308 0.229811 1.49697e-06 7.30075e-08 2.718 ||| 0-0 ||| 52 668016 +a ||| to be funded ||| 0.012987 0.229811 1.49697e-06 5.71363e-08 2.718 ||| 0-0 ||| 77 668016 +a ||| to be gained ||| 0.0181818 0.229811 1.49697e-06 2.01247e-07 2.718 ||| 0-0 ||| 55 668016 +a ||| to be generous in ||| 0.142857 0.0587624 1.49697e-06 4.54748e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| to be getting on with ||| 0.5 0.229811 1.49697e-06 3.15627e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to be getting on ||| 1 0.229811 1.49697e-06 4.93591e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to be getting ||| 0.0666667 0.229811 1.49697e-06 7.37693e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| to be given a place ||| 0.2 0.229811 1.49697e-06 2.90654e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| to be given a ||| 0.0185185 0.229811 1.49697e-06 1.93126e-07 2.718 ||| 0-0 ||| 54 668016 +a ||| to be given free ||| 0.25 0.229811 1.49697e-06 5.08022e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to be given to ||| 0.0785714 0.229811 1.64667e-05 3.87152e-07 2.718 ||| 0-0 ||| 140 668016 +a ||| to be given ||| 0.0282738 0.229811 2.84424e-05 4.35696e-06 2.718 ||| 0-0 ||| 672 668016 +a ||| to be good ||| 0.02 0.229811 1.49697e-06 3.29232e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| to be governed ||| 0.0322581 0.229811 1.49697e-06 1.39667e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| to be grown ||| 0.111111 0.229811 1.49697e-06 1.05385e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to be guided by ||| 0.0322581 0.229811 1.49697e-06 3.83297e-10 2.718 ||| 0-0 ||| 31 668016 +a ||| to be guided ||| 0.025641 0.229811 1.49697e-06 7.30075e-08 2.718 ||| 0-0 ||| 39 668016 +a ||| to be had at ||| 1 0.204175 1.49697e-06 5.50123e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| to be held ||| 0.0111888 0.229811 1.19758e-05 1.6195e-06 2.718 ||| 0-0 ||| 715 668016 +a ||| to be helping ||| 0.333333 0.302272 1.49697e-06 1.91666e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| to be here , are ||| 1 0.229811 1.49697e-06 2.32934e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to be here , ||| 0.05 0.229811 1.49697e-06 1.53522e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| to be here ||| 0.00429185 0.229811 1.49697e-06 1.28734e-05 2.718 ||| 0-0 ||| 233 668016 +a ||| to be hoped ||| 0.00510204 0.229811 1.49697e-06 1.23161e-07 2.718 ||| 0-0 ||| 196 668016 +a ||| to be hurried ||| 1 0.229811 1.49697e-06 4.44394e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to be identified at a ||| 1 0.229811 1.49697e-06 4.53661e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to be identified at ||| 1 0.229811 1.49697e-06 1.02347e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to be identified with ||| 0.5 0.0571592 1.49697e-06 1.03508e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| to be identified ||| 0.0192308 0.229811 1.49697e-06 2.44417e-07 2.718 ||| 0-0 ||| 52 668016 +a ||| to be implemented about ||| 1 0.229811 1.49697e-06 7.88326e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to be implemented partly in order to ||| 1 0.229811 1.49697e-06 1.90847e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| to be implemented progressively ||| 1 0.229811 1.49697e-06 1.22627e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to be implemented under ||| 0.142857 0.229811 1.49697e-06 1.99994e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| to be implemented ||| 0.00759878 0.229811 7.48485e-06 5.57397e-07 2.718 ||| 0-0 ||| 658 668016 +a ||| to be important ||| 0.0106383 0.229811 1.49697e-06 2.43528e-06 2.718 ||| 0-0 ||| 94 668016 +a ||| to be imposed on ||| 0.0909091 0.0782999 4.49091e-06 3.40884e-09 2.718 ||| 0-3 ||| 33 668016 +a ||| to be imposed ||| 0.0103093 0.229811 1.49697e-06 3.54245e-07 2.718 ||| 0-0 ||| 97 668016 +a ||| to be in complete denial ||| 1 0.229811 1.49697e-06 2.14048e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to be in complete ||| 0.25 0.229811 1.49697e-06 9.72944e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to be in the ||| 0.010989 0.0587624 1.49697e-06 5.93996e-06 2.718 ||| 0-2 ||| 91 668016 +a ||| to be in violation ||| 0.5 0.0587624 1.49697e-06 1.04495e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| to be in ||| 0.0385321 0.144287 3.14364e-05 0.000381433 2.718 ||| 0-0 0-2 ||| 545 668016 +a ||| to be included ||| 0.00746269 0.229811 4.49091e-06 5.96122e-07 2.718 ||| 0-0 ||| 402 668016 +a ||| to be increased to ||| 0.125 0.229811 1.49697e-06 2.80365e-08 2.718 ||| 0-3 ||| 8 668016 +a ||| to be incurred ||| 0.666667 0.229811 2.99394e-06 5.96757e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to be instructed ||| 0.5 0.196787 1.49697e-06 7.19835e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| to be introduced at ||| 0.111111 0.204175 1.49697e-06 5.06988e-09 2.718 ||| 0-3 ||| 9 668016 +a ||| to be introduced ||| 0.0186916 0.229811 5.98788e-06 5.87234e-07 2.718 ||| 0-0 ||| 214 668016 +a ||| to be invested ||| 0.025641 0.229811 1.49697e-06 4.82485e-08 2.718 ||| 0-0 ||| 39 668016 +a ||| to be involved in ||| 0.00425532 0.229811 1.49697e-06 4.69894e-08 2.718 ||| 0-0 ||| 235 668016 +a ||| to be involved ||| 0.00516796 0.229811 2.99394e-06 2.1953e-06 2.718 ||| 0-0 ||| 387 668016 +a ||| to be issued to ||| 0.333333 0.229811 1.49697e-06 1.37658e-07 2.718 ||| 0-0 0-3 ||| 3 668016 +a ||| to be just ||| 0.0625 0.229811 2.99394e-06 8.00988e-06 2.718 ||| 0-0 ||| 32 668016 +a ||| to be keeping an ||| 1 0.229811 1.49697e-06 1.65634e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to be keeping ||| 1 0.229811 1.49697e-06 3.72656e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to be kept , as well as ||| 1 0.12708 1.49697e-06 7.66186e-15 2.718 ||| 0-0 0-6 ||| 1 668016 +a ||| to be kept ||| 0.04 0.229811 7.48485e-06 4.52647e-07 2.718 ||| 0-0 ||| 125 668016 +a ||| to be known ||| 0.03125 0.229811 1.49697e-06 6.98968e-07 2.718 ||| 0-0 ||| 32 668016 +a ||| to be laid down by ||| 0.166667 0.229811 1.49697e-06 2.53619e-12 2.718 ||| 0-0 ||| 6 668016 +a ||| to be laid down ||| 0.027027 0.229811 1.49697e-06 4.83074e-10 2.718 ||| 0-0 ||| 37 668016 +a ||| to be laid ||| 0.030303 0.229811 1.49697e-06 6.91984e-07 2.718 ||| 0-0 ||| 33 668016 +a ||| to be led to ||| 1 0.229811 1.49697e-06 5.17857e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to be led ||| 0.0769231 0.229811 2.99394e-06 5.82791e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| to be let ||| 0.0714286 0.229811 1.49697e-06 2.59272e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| to be linked to ||| 0.037037 0.229811 1.49697e-06 2.35236e-08 2.718 ||| 0-3 ||| 27 668016 +a ||| to be listed ||| 0.125 0.229811 1.49697e-06 6.85636e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to be made , ||| 0.0625 0.229811 4.49091e-06 1.58594e-06 2.718 ||| 0-0 ||| 48 668016 +a ||| to be made for ||| 0.0357143 0.229811 1.49697e-06 1.02211e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| to be made in the ||| 0.0285714 0.229811 1.49697e-06 1.74754e-08 2.718 ||| 0-0 ||| 35 668016 +a ||| to be made in ||| 0.00980392 0.229811 1.49697e-06 2.84654e-07 2.718 ||| 0-0 ||| 102 668016 +a ||| to be made of all ||| 1 0.229811 1.49697e-06 3.41635e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to be made of ||| 0.16129 0.229811 7.48485e-06 7.22976e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| to be made on ||| 0.027027 0.0782999 1.49697e-06 1.27972e-07 2.718 ||| 0-3 ||| 37 668016 +a ||| to be made only for ||| 1 0.099526 1.49697e-06 1.43092e-11 2.718 ||| 0-0 0-3 0-4 ||| 1 668016 +a ||| to be made the ||| 0.333333 0.229811 1.49697e-06 8.16437e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to be made to ||| 0.0722892 0.229811 8.98182e-06 1.18171e-06 2.718 ||| 0-3 ||| 83 668016 +a ||| to be made with ||| 0.1 0.0571592 1.49697e-06 5.63192e-08 2.718 ||| 0-3 ||| 10 668016 +a ||| to be made ||| 0.0206738 0.229811 4.04182e-05 1.32988e-05 2.718 ||| 0-0 ||| 1306 668016 +a ||| to be maintained ||| 0.008 0.229811 1.49697e-06 2.24101e-07 2.718 ||| 0-0 ||| 125 668016 +a ||| to be making ||| 0.0434783 0.229811 1.49697e-06 2.44226e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| to be members of ||| 0.1 0.229811 1.49697e-06 5.09065e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| to be members ||| 0.0454545 0.229811 1.49697e-06 9.36401e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| to be merely ||| 0.0526316 0.229811 1.49697e-06 4.04398e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| to be met in ||| 0.0666667 0.0587624 1.49697e-06 7.4211e-09 2.718 ||| 0-3 ||| 15 668016 +a ||| to be met ||| 0.0294118 0.229811 8.98182e-06 4.86928e-07 2.718 ||| 0-0 ||| 204 668016 +a ||| to be mixed ||| 0.25 0.229811 1.49697e-06 5.96757e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to be more demanding and more difficult ||| 1 0.229811 1.49697e-06 7.05666e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| to be more demanding and more ||| 1 0.229811 1.49697e-06 5.68169e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to be more demanding and ||| 0.5 0.229811 1.49697e-06 2.48793e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to be more demanding ||| 0.333333 0.229811 1.49697e-06 1.98623e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to be more involved in ||| 0.125 0.0587624 1.49697e-06 7.64077e-11 2.718 ||| 0-4 ||| 8 668016 +a ||| to be more on ||| 1 0.0782999 1.49697e-06 1.39512e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| to be more specific ||| 0.027027 0.229811 1.49697e-06 2.19065e-09 2.718 ||| 0-0 ||| 37 668016 +a ||| to be more ||| 0.00238379 0.229811 2.99394e-06 1.4498e-05 2.718 ||| 0-0 ||| 839 668016 +a ||| to be moving in the ||| 0.5 0.229811 1.49697e-06 4.95532e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to be moving in ||| 0.25 0.229811 1.49697e-06 8.07163e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to be moving ||| 0.0909091 0.229811 1.49697e-06 3.771e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| to be named ||| 0.125 0.229811 1.49697e-06 5.0153e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to be necessary so ||| 0.5 0.229811 1.49697e-06 3.70747e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to be necessary ||| 0.00970874 0.229811 1.49697e-06 1.63346e-06 2.718 ||| 0-0 ||| 103 668016 +a ||| to be negative ||| 0.0666667 0.229811 1.49697e-06 1.48554e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| to be no ||| 0.0153846 0.229811 1.49697e-06 4.94166e-06 2.718 ||| 0-0 ||| 65 668016 +a ||| to be nominated who is ||| 1 0.229811 1.49697e-06 6.31764e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to be nominated who ||| 1 0.229811 1.49697e-06 2.01577e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to be nominated ||| 0.1 0.229811 1.49697e-06 2.28545e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| to be nothing more ||| 0.142857 0.229811 1.49697e-06 2.69808e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| to be nothing ||| 0.0909091 0.229811 1.49697e-06 1.18145e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| to be observed ||| 0.0178571 0.229811 1.49697e-06 1.78392e-07 2.718 ||| 0-0 ||| 56 668016 +a ||| to be obstructive if there is ||| 1 0.229811 1.49697e-06 3.56741e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to be obstructive if there ||| 1 0.229811 1.49697e-06 1.13825e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to be obstructive if ||| 1 0.229811 1.49697e-06 3.71335e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to be obstructive ||| 0.5 0.229811 1.49697e-06 4.44394e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to be of the ||| 0.0344828 0.229811 1.49697e-06 2.11881e-05 2.718 ||| 0-0 ||| 29 668016 +a ||| to be of vital ||| 0.333333 0.229811 1.49697e-06 1.08025e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to be of ||| 0.0260417 0.229811 7.48485e-06 0.000345129 2.718 ||| 0-0 ||| 192 668016 +a ||| to be on ||| 0.00724638 0.0782999 1.49697e-06 6.10903e-05 2.718 ||| 0-2 ||| 138 668016 +a ||| to be opened to ||| 1 0.229811 1.49697e-06 1.46106e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| to be opened up to ||| 0.0714286 0.229811 1.49697e-06 4.98293e-11 2.718 ||| 0-4 ||| 14 668016 +a ||| to be overcome , ||| 0.05 0.229811 1.49697e-06 1.41575e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| to be overcome ||| 0.0126582 0.229811 1.49697e-06 1.18717e-07 2.718 ||| 0-0 ||| 79 668016 +a ||| to be paid by ||| 0.111111 0.229811 2.99394e-06 4.48624e-09 2.718 ||| 0-0 ||| 18 668016 +a ||| to be paid out ||| 0.0769231 0.229811 1.49697e-06 3.2731e-09 2.718 ||| 0-0 ||| 13 668016 +a ||| to be paid to ||| 0.129032 0.229811 5.98788e-06 7.59298e-08 2.718 ||| 0-3 ||| 31 668016 +a ||| to be paid ||| 0.0114943 0.229811 4.49091e-06 8.54506e-07 2.718 ||| 0-0 ||| 261 668016 +a ||| to be part of ||| 0.00714286 0.229811 1.49697e-06 4.11463e-07 2.718 ||| 0-0 ||| 140 668016 +a ||| to be part ||| 0.0117647 0.229811 2.99394e-06 7.56866e-06 2.718 ||| 0-0 ||| 170 668016 +a ||| to be passed ||| 0.0576923 0.229811 4.49091e-06 4.54551e-07 2.718 ||| 0-0 ||| 52 668016 +a ||| to be perfectly ||| 0.04 0.229811 1.49697e-06 2.41877e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| to be performed by ||| 0.1 0.229811 1.49697e-06 4.1996e-10 2.718 ||| 0-0 ||| 10 668016 +a ||| to be performed ||| 0.04 0.229811 1.49697e-06 7.99909e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| to be placed upon ||| 0.5 0.19056 1.49697e-06 3.9749e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| to be placed ||| 0.0487805 0.229811 5.98788e-06 7.9483e-07 2.718 ||| 0-0 ||| 82 668016 +a ||| to be played ||| 0.0227273 0.229811 1.49697e-06 3.1298e-07 2.718 ||| 0-0 ||| 44 668016 +a ||| to be playing ||| 0.2 0.229811 1.49697e-06 4.18365e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to be possible to ||| 0.0140845 0.229811 1.49697e-06 4.52476e-07 2.718 ||| 0-3 ||| 71 668016 +a ||| to be possible ||| 0.00568182 0.229811 1.49697e-06 5.09212e-06 2.718 ||| 0-0 ||| 176 668016 +a ||| to be postponed , by ||| 1 0.0337966 1.49697e-06 9.63826e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| to be postponed ||| 0.0128205 0.229811 1.49697e-06 3.87257e-08 2.718 ||| 0-0 ||| 78 668016 +a ||| to be precise , ||| 0.0133333 0.229811 1.49697e-06 2.53624e-08 2.718 ||| 0-0 ||| 75 668016 +a ||| to be precise - ||| 0.125 0.229811 1.49697e-06 8.02228e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| to be precise ||| 0.0194805 0.229811 4.49091e-06 2.12674e-07 2.718 ||| 0-0 ||| 154 668016 +a ||| to be prepared to ||| 0.016129 0.229811 1.49697e-06 4.89087e-08 2.718 ||| 0-3 ||| 62 668016 +a ||| to be processed ||| 0.0454545 0.229811 1.49697e-06 5.0153e-08 2.718 ||| 0-0 ||| 22 668016 +a ||| to be protected ||| 0.00952381 0.229811 2.99394e-06 1.51094e-07 2.718 ||| 0-0 ||| 210 668016 +a ||| to be proud of ||| 0.0175439 0.229811 1.49697e-06 2.00175e-09 2.718 ||| 0-0 ||| 57 668016 +a ||| to be proud ||| 0.0103093 0.229811 1.49697e-06 3.68212e-08 2.718 ||| 0-0 ||| 97 668016 +a ||| to be provided at ||| 0.5 0.204175 1.49697e-06 1.25623e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| to be provided for ||| 0.05 0.229811 1.49697e-06 1.11832e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| to be provided to ||| 0.111111 0.229811 2.99394e-06 1.29295e-07 2.718 ||| 0-3 ||| 18 668016 +a ||| to be provided ||| 0.0169492 0.229811 5.98788e-06 1.45507e-06 2.718 ||| 0-0 ||| 236 668016 +a ||| to be published by ||| 0.0833333 0.229811 1.49697e-06 7.43263e-10 2.718 ||| 0-0 ||| 12 668016 +a ||| to be published ||| 0.0105263 0.229811 1.49697e-06 1.41571e-07 2.718 ||| 0-0 ||| 95 668016 +a ||| to be pursued with ||| 0.285714 0.229811 2.99394e-06 1.48985e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| to be pursued ||| 0.0106383 0.229811 1.49697e-06 2.32989e-07 2.718 ||| 0-0 ||| 94 668016 +a ||| to be put in place ||| 0.0240964 0.229811 2.99394e-06 2.25491e-10 2.718 ||| 0-0 ||| 83 668016 +a ||| to be put in ||| 0.0412371 0.144287 5.98788e-06 4.20568e-07 2.718 ||| 0-0 0-3 ||| 97 668016 +a ||| to be put into ||| 0.0121951 0.107578 1.49697e-06 1.07855e-08 2.718 ||| 0-3 ||| 82 668016 +a ||| to be put to the ||| 0.0175439 0.229811 1.49697e-06 3.81853e-08 2.718 ||| 0-0 ||| 57 668016 +a ||| to be put to ||| 0.027027 0.229811 2.99394e-06 6.21993e-07 2.718 ||| 0-0 ||| 74 668016 +a ||| to be put ||| 0.0078534 0.229811 4.49091e-06 6.99984e-06 2.718 ||| 0-0 ||| 382 668016 +a ||| to be rated ' very good ' ||| 1 0.229811 1.49697e-06 2.43288e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| to be rated ' very good ||| 1 0.229811 1.49697e-06 7.08281e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to be rated ' very ||| 1 0.229811 1.49697e-06 1.36576e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to be rated ' ||| 1 0.229811 1.49697e-06 3.92515e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to be rated ||| 0.5 0.229811 1.49697e-06 1.14273e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to be rather ||| 0.0277778 0.229811 1.49697e-06 1.9439e-06 2.718 ||| 0-0 ||| 36 668016 +a ||| to be read by ||| 1 0.229811 1.49697e-06 1.60651e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to be read ||| 0.0666667 0.229811 1.49697e-06 3.05997e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| to be reassured about ||| 1 0.229811 1.49697e-06 3.59146e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to be reassured ||| 0.0434783 0.229811 1.49697e-06 2.53939e-08 2.718 ||| 0-0 ||| 23 668016 +a ||| to be receiving ||| 0.2 0.229811 1.49697e-06 1.8982e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to be reduced to ||| 0.0909091 0.229811 1.49697e-06 2.64006e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| to be reduced ||| 0.00606061 0.229811 1.49697e-06 2.97109e-07 2.718 ||| 0-0 ||| 165 668016 +a ||| to be referred to as ||| 0.25 0.229811 1.49697e-06 5.50892e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to be referred to ||| 0.0625 0.229811 1.49697e-06 5.39858e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| to be referred ||| 0.0434783 0.229811 1.49697e-06 6.0755e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| to be regarded as ||| 0.015625 0.229811 1.49697e-06 3.63429e-09 2.718 ||| 0-0 ||| 64 668016 +a ||| to be regarded ||| 0.0232558 0.229811 1.49697e-06 3.5615e-07 2.718 ||| 0-0 ||| 43 668016 +a ||| to be released to ||| 0.25 0.229811 1.49697e-06 1.09438e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| to be removed ||| 0.0235294 0.229811 2.99394e-06 2.87586e-07 2.718 ||| 0-0 ||| 85 668016 +a ||| to be reopened ||| 0.0526316 0.229811 1.49697e-06 1.58712e-08 2.718 ||| 0-0 ||| 19 668016 +a ||| to be represented ||| 0.010989 0.229811 1.49697e-06 2.24101e-07 2.718 ||| 0-0 ||| 91 668016 +a ||| to be required ||| 0.0769231 0.229811 4.49091e-06 1.0075e-06 2.718 ||| 0-0 ||| 39 668016 +a ||| to be resolved more ||| 1 0.229811 1.49697e-06 3.75499e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to be resolved ||| 0.00321543 0.229811 1.49697e-06 1.64426e-07 2.718 ||| 0-0 ||| 311 668016 +a ||| to be responsible ||| 0.00934579 0.229811 1.49697e-06 9.3894e-07 2.718 ||| 0-0 ||| 107 668016 +a ||| to be restricted ||| 0.030303 0.229811 1.49697e-06 1.00306e-07 2.718 ||| 0-0 ||| 33 668016 +a ||| to be resumed very ||| 0.333333 0.229811 1.49697e-06 1.34746e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to be resumed ||| 0.05 0.229811 1.49697e-06 3.87257e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| to be returned to ||| 0.0909091 0.229811 2.99394e-06 2.95776e-08 2.718 ||| 0-0 0-3 ||| 22 668016 +a ||| to be revised ||| 0.00900901 0.229811 1.49697e-06 5.71363e-08 2.718 ||| 0-0 ||| 111 668016 +a ||| to be safeguarded ||| 0.0277778 0.229811 1.49697e-06 5.45969e-08 2.718 ||| 0-0 ||| 36 668016 +a ||| to be said after ||| 1 0.229811 1.49697e-06 7.07616e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to be said of ||| 0.333333 0.229811 1.49697e-06 1.41951e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to be said ||| 0.00638978 0.229811 5.98788e-06 2.61113e-06 2.718 ||| 0-0 ||| 626 668016 +a ||| to be saved , ||| 0.5 0.229811 1.49697e-06 5.75385e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to be saved ||| 0.0357143 0.229811 1.49697e-06 4.82485e-08 2.718 ||| 0-0 ||| 28 668016 +a ||| to be scrapped ||| 0.05 0.229811 1.49697e-06 3.42818e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| to be seen as ||| 0.0126582 0.229811 1.49697e-06 1.36367e-08 2.718 ||| 0-0 ||| 79 668016 +a ||| to be seen how far ||| 0.333333 0.229811 1.49697e-06 3.26979e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| to be seen how ||| 0.111111 0.229811 1.49697e-06 4.7895e-10 2.718 ||| 0-0 ||| 9 668016 +a ||| to be seen ||| 0.00701754 0.229811 2.99394e-06 1.33636e-06 2.718 ||| 0-0 ||| 285 668016 +a ||| to be selective on improper grounds ||| 0.333333 0.229811 1.49697e-06 1.41872e-20 2.718 ||| 0-0 ||| 3 668016 +a ||| to be selective on improper ||| 0.333333 0.229811 1.49697e-06 1.35504e-16 2.718 ||| 0-0 ||| 3 668016 +a ||| to be selective on ||| 0.333333 0.229811 1.49697e-06 1.23185e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to be selective ||| 0.142857 0.229811 1.49697e-06 1.84106e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| to be sent , ||| 0.5 0.229811 1.49697e-06 4.55009e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to be sent to ||| 0.0666667 0.229811 1.49697e-06 3.39033e-08 2.718 ||| 0-3 ||| 15 668016 +a ||| to be sent ||| 0.0151515 0.229811 1.49697e-06 3.81544e-07 2.718 ||| 0-0 ||| 66 668016 +a ||| to be set aside ||| 0.0714286 0.229811 1.49697e-06 2.61559e-10 2.718 ||| 0-0 ||| 14 668016 +a ||| to be set off ||| 1 0.229811 1.49697e-06 1.50999e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to be set ||| 0.01875 0.229811 4.49091e-06 3.71005e-06 2.718 ||| 0-0 ||| 160 668016 +a ||| to be silenced ||| 0.5 0.229811 2.99394e-06 6.98333e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to be so good ||| 0.5 0.229811 1.49697e-06 7.47258e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to be so in ||| 0.333333 0.229811 2.99394e-06 3.08421e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to be so ||| 0.015873 0.229811 2.99394e-06 1.44091e-05 2.718 ||| 0-0 ||| 126 668016 +a ||| to be solved later ||| 0.5 0.229811 1.49697e-06 5.89647e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to be solved ||| 0.00862069 0.229811 1.49697e-06 6.85636e-08 2.718 ||| 0-0 ||| 116 668016 +a ||| to be some ||| 0.0175439 0.229811 1.49697e-06 6.9154e-06 2.718 ||| 0-0 ||| 57 668016 +a ||| to be sorry ||| 0.333333 0.229811 1.49697e-06 1.00306e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to be specific ||| 0.0142857 0.229811 1.49697e-06 9.59255e-07 2.718 ||| 0-0 ||| 70 668016 +a ||| to be spent ||| 0.00961538 0.229811 1.49697e-06 4.06938e-07 2.718 ||| 0-0 ||| 104 668016 +a ||| to be stated ||| 0.0384615 0.229811 1.49697e-06 3.9551e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| to be stayed and it authorised ||| 1 0.229811 1.49697e-06 4.07269e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to be stayed and it ||| 1 0.229811 1.49697e-06 5.65651e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to be stayed and ||| 1 0.229811 1.49697e-06 3.18082e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to be stayed ||| 1 0.229811 1.49697e-06 2.53939e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to be subject ||| 0.00833333 0.229811 1.49697e-06 3.42691e-06 2.718 ||| 0-0 ||| 120 668016 +a ||| to be submitted to ||| 0.05 0.229811 1.49697e-06 2.90519e-08 2.718 ||| 0-3 ||| 20 668016 +a ||| to be sufficiently well ||| 1 0.229811 1.49697e-06 1.88237e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to be sufficiently ||| 0.0454545 0.229811 1.49697e-06 1.18717e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| to be supporting ||| 0.0909091 0.190621 1.49697e-06 1.84613e-06 2.718 ||| 0-2 ||| 11 668016 +a ||| to be sure that we are ||| 0.5 0.229811 1.49697e-06 3.20429e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to be sure that we ||| 0.25 0.229811 1.49697e-06 2.11188e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to be sure that ||| 0.0126582 0.229811 1.49697e-06 1.86031e-08 2.718 ||| 0-0 ||| 79 668016 +a ||| to be sure ||| 0.00502513 0.229811 1.49697e-06 1.10591e-06 2.718 ||| 0-0 ||| 199 668016 +a ||| to be sustained ||| 0.0769231 0.229811 1.49697e-06 5.45969e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| to be tackled ||| 0.00675676 0.229811 1.49697e-06 1.00306e-07 2.718 ||| 0-0 ||| 148 668016 +a ||| to be taken , ||| 0.0178571 0.229811 1.49697e-06 6.90084e-07 2.718 ||| 0-0 ||| 56 668016 +a ||| to be taken at the ||| 0.142857 0.229811 1.49697e-06 1.48758e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| to be taken at ||| 0.0344828 0.229811 2.99394e-06 2.4231e-08 2.718 ||| 0-0 ||| 58 668016 +a ||| to be taken away from ||| 0.5 0.0435582 1.49697e-06 3.36129e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| to be taken away ||| 0.111111 0.229811 1.49697e-06 1.84073e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| to be taken in relation ||| 0.5 0.229811 1.49697e-06 3.01352e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to be taken in ||| 0.00826446 0.229811 1.49697e-06 1.2386e-07 2.718 ||| 0-0 ||| 121 668016 +a ||| to be taken into account ||| 0.00833333 0.229811 2.99394e-06 1.70808e-12 2.718 ||| 0-0 ||| 240 668016 +a ||| to be taken into ||| 0.00740741 0.229811 2.99394e-06 5.94114e-09 2.718 ||| 0-0 ||| 270 668016 +a ||| to be taken of ||| 0.0322581 0.0188479 1.49697e-06 4.34168e-08 2.718 ||| 0-3 ||| 31 668016 +a ||| to be taken on in ||| 0.5 0.0685311 1.49697e-06 3.34562e-09 2.718 ||| 0-3 0-4 ||| 2 668016 +a ||| to be taken on ||| 0.0322581 0.0782999 1.49697e-06 5.56838e-08 2.718 ||| 0-3 ||| 31 668016 +a ||| to be taken over ||| 0.111111 0.229811 1.49697e-06 2.78627e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| to be taken seriously ||| 0.0144928 0.229811 1.49697e-06 2.41303e-10 2.718 ||| 0-0 ||| 69 668016 +a ||| to be taken ||| 0.0130409 0.229811 3.29333e-05 5.78664e-06 2.718 ||| 0-0 ||| 1687 668016 +a ||| to be targeted on ||| 1 0.0782999 1.49697e-06 1.71664e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| to be targeted ||| 0.0434783 0.229811 1.49697e-06 1.78392e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| to be the case ||| 0.00704225 0.229811 1.49697e-06 4.16988e-07 2.718 ||| 0-0 ||| 142 668016 +a ||| to be the guiding ||| 1 0.229811 1.49697e-06 3.6636e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to be the only one to ||| 0.333333 0.229811 1.49697e-06 6.33409e-10 2.718 ||| 0-0 0-5 ||| 3 668016 +a ||| to be the targets of ||| 1 0.0188479 1.49697e-06 6.95967e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| to be the ||| 0.00317965 0.229811 5.98788e-06 0.000389745 2.718 ||| 0-0 ||| 1258 668016 +a ||| to be their goal ||| 1 0.229811 1.49697e-06 2.46511e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to be their ||| 0.0769231 0.229811 1.49697e-06 7.35852e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| to be there ||| 0.0169492 0.229811 1.49697e-06 1.946e-05 2.718 ||| 0-0 ||| 59 668016 +a ||| to be threatening ||| 0.2 0.16036 1.49697e-06 5.8533e-07 2.718 ||| 0-0 0-2 ||| 5 668016 +a ||| to be thrown in ||| 0.5 0.0587624 1.49697e-06 2.68011e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| to be thrown onto the ||| 1 0.229811 1.49697e-06 2.18078e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to be thrown onto ||| 1 0.229811 1.49697e-06 3.55223e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to be thrown ||| 0.0588235 0.229811 1.49697e-06 1.75853e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| to be to ||| 0.0227273 0.229811 1.49697e-06 0.000564115 2.718 ||| 0-0 ||| 44 668016 +a ||| to be told ||| 0.0111111 0.229811 1.49697e-06 3.771e-07 2.718 ||| 0-0 ||| 90 668016 +a ||| to be transferred to ||| 0.0588235 0.229811 1.49697e-06 1.21849e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| to be transferred ||| 0.0113636 0.229811 1.49697e-06 1.37127e-07 2.718 ||| 0-0 ||| 88 668016 +a ||| to be treated by means of ||| 1 0.0188479 1.49697e-06 8.60503e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| to be treated with ||| 0.0625 0.229811 1.49697e-06 2.20433e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| to be treated ||| 0.00480769 0.229811 1.49697e-06 3.44723e-07 2.718 ||| 0-0 ||| 208 668016 +a ||| to be true to ||| 0.25 0.229811 1.49697e-06 9.11609e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| to be turned against ||| 1 0.229811 1.49697e-06 8.49773e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to be turned upside down ||| 0.333333 0.229811 1.49697e-06 7.21022e-16 2.718 ||| 0-0 ||| 3 668016 +a ||| to be turned upside ||| 0.5 0.229811 1.49697e-06 1.03283e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to be turned ||| 0.117647 0.229811 2.99394e-06 3.5615e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| to be two of ||| 0.5 0.229811 1.49697e-06 8.15885e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to be two ||| 0.0666667 0.229811 1.49697e-06 1.50078e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| to be unchangeable ||| 0.333333 0.229811 1.49697e-06 2.53939e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to be under one ||| 1 0.229811 1.49697e-06 9.49402e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to be under ||| 0.0833333 0.229811 1.49697e-06 2.27783e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| to be undermined ||| 0.047619 0.229811 1.49697e-06 9.14181e-08 2.718 ||| 0-0 ||| 21 668016 +a ||| to be understood now , also , ||| 1 0.229811 1.49697e-06 2.19712e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to be understood now , also ||| 1 0.229811 1.49697e-06 1.84238e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to be understood now , ||| 1 0.229811 1.49697e-06 3.64928e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to be understood now ||| 1 0.229811 1.49697e-06 3.06007e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to be understood ||| 0.0227273 0.229811 1.49697e-06 1.48554e-07 2.718 ||| 0-0 ||| 44 668016 +a ||| to be undertaken by the whole of ||| 1 0.229811 1.49697e-06 2.98909e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to be undertaken by the whole ||| 1 0.229811 1.49697e-06 5.49829e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to be undertaken by the ||| 0.0769231 0.229811 1.49697e-06 9.71944e-11 2.718 ||| 0-0 ||| 13 668016 +a ||| to be undertaken by ||| 0.0454545 0.229811 1.49697e-06 1.58318e-09 2.718 ||| 0-0 ||| 22 668016 +a ||| to be undertaken sooner ||| 0.25 0.229811 1.49697e-06 1.4173e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| to be undertaken ||| 0.0150376 0.229811 2.99394e-06 3.01553e-07 2.718 ||| 0-0 ||| 133 668016 +a ||| to be up and ||| 0.111111 0.229811 1.49697e-06 2.71204e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to be up ||| 0.0384615 0.229811 1.49697e-06 2.16515e-05 2.718 ||| 0-0 ||| 26 668016 +a ||| to be used for the ||| 0.0625 0.229811 1.49697e-06 1.28505e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| to be used for ||| 0.029703 0.0683377 4.49091e-06 2.54567e-08 2.718 ||| 0-3 ||| 101 668016 +a ||| to be used ||| 0.00637755 0.229811 7.48485e-06 2.7235e-06 2.718 ||| 0-0 ||| 784 668016 +a ||| to be very ||| 0.00549451 0.229811 4.49091e-06 2.20895e-05 2.718 ||| 0-0 ||| 546 668016 +a ||| to be voted on ||| 0.0116279 0.229811 1.49697e-06 1.71185e-09 2.718 ||| 0-0 ||| 86 668016 +a ||| to be voted ||| 0.0333333 0.229811 2.99394e-06 2.55844e-07 2.718 ||| 0-0 ||| 60 668016 +a ||| to be willing to ||| 0.0434783 0.229811 1.49697e-06 2.13235e-08 2.718 ||| 0-3 ||| 23 668016 +a ||| to be with ||| 0.0238095 0.229811 1.49697e-06 4.05954e-05 2.718 ||| 0-0 ||| 42 668016 +a ||| to be withheld , through ||| 0.5 0.230708 1.49697e-06 2.74784e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| to be worked out ||| 0.0434783 0.229811 1.49697e-06 1.0578e-09 2.718 ||| 0-0 ||| 23 668016 +a ||| to be worked ||| 0.0416667 0.229811 1.49697e-06 2.76159e-07 2.718 ||| 0-0 ||| 24 668016 +a ||| to be written with a ||| 0.5 0.229811 1.49697e-06 8.99711e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to be written with ||| 0.25 0.229811 1.49697e-06 2.02977e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to be written ||| 0.05 0.229811 1.49697e-06 3.17424e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| to be ||| 0.0372351 0.229811 0.00319004 0.00634848 2.718 ||| 0-0 ||| 57231 668016 +a ||| to bear at least ||| 0.5 0.204175 1.49697e-06 1.11103e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| to bear at ||| 0.333333 0.204175 1.49697e-06 4.52741e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| to bear in ||| 0.00331126 0.229811 1.49697e-06 1.12246e-06 2.718 ||| 0-0 ||| 302 668016 +a ||| to bear must ||| 0.5 0.229811 1.49697e-06 8.10515e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to bear on the ||| 0.0196078 0.0782999 1.49697e-06 3.09797e-08 2.718 ||| 0-2 ||| 51 668016 +a ||| to bear on ||| 0.166667 0.0782999 2.09576e-05 5.04622e-07 2.718 ||| 0-2 ||| 84 668016 +a ||| to bear responsibility ||| 0.25 0.229811 1.49697e-06 6.05684e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to bear to ||| 0.0769231 0.229811 1.49697e-06 4.65974e-06 2.718 ||| 0-2 ||| 13 668016 +a ||| to bear upon ||| 0.25 0.229811 2.99394e-06 1.24388e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to bear witness ||| 0.0714286 0.229811 1.49697e-06 7.55138e-10 2.718 ||| 0-0 ||| 14 668016 +a ||| to bear ||| 0.0220884 0.229811 3.29333e-05 5.24401e-05 2.718 ||| 0-0 ||| 996 668016 +a ||| to because ||| 0.0666667 0.229811 1.49697e-06 0.000115109 2.718 ||| 0-0 ||| 15 668016 +a ||| to become a full ||| 0.2 0.229811 1.49697e-06 8.14039e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| to become a ||| 0.00365631 0.229811 2.99394e-06 4.43618e-06 2.718 ||| 0-0 ||| 547 668016 +a ||| to become familiar ||| 0.2 0.229811 1.49697e-06 1.55126e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to become involved in ||| 0.0235294 0.229811 2.99394e-06 7.40768e-10 2.718 ||| 0-0 ||| 85 668016 +a ||| to become involved ||| 0.00826446 0.229811 1.49697e-06 3.46081e-08 2.718 ||| 0-0 ||| 121 668016 +a ||| to become like us ||| 1 0.229811 1.49697e-06 5.12265e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to become like ||| 0.25 0.229811 1.49697e-06 1.77734e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to become more ||| 0.00534759 0.229811 1.49697e-06 2.28555e-07 2.718 ||| 0-0 ||| 187 668016 +a ||| to become much ||| 0.0769231 0.229811 1.49697e-06 1.00451e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| to become totally disillusioned ||| 1 0.229811 1.49697e-06 4.75586e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to become totally ||| 1 0.229811 1.49697e-06 4.32351e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to become very ||| 0.5 0.229811 1.49697e-06 3.48232e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to become ||| 0.0116162 0.229811 3.44303e-05 0.000100081 2.718 ||| 0-0 ||| 1980 668016 +a ||| to becoming ||| 0.0483871 0.229811 4.49091e-06 3.6046e-05 2.718 ||| 0-0 ||| 62 668016 +a ||| to bed ||| 0.0454545 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| to begin putting in place ||| 1 0.0587624 1.49697e-06 5.30474e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| to begin putting in ||| 1 0.0587624 1.49697e-06 3.52474e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| to begin ||| 0.00224618 0.229811 7.48485e-06 2.06678e-05 2.718 ||| 0-0 ||| 2226 668016 +a ||| to behave ||| 0.0075188 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-0 ||| 133 668016 +a ||| to being able to ||| 0.03125 0.229811 1.49697e-06 7.39569e-08 2.718 ||| 0-3 ||| 32 668016 +a ||| to being able ||| 0.0625 0.229811 1.49697e-06 8.32302e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| to being the ||| 0.142857 0.229811 1.49697e-06 6.12008e-05 2.718 ||| 0-0 ||| 7 668016 +a ||| to being voting ||| 1 0.229811 1.49697e-06 3.8779e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to being ||| 0.0782918 0.229811 3.29333e-05 0.000996888 2.718 ||| 0-0 ||| 281 668016 +a ||| to believe ||| 0.00547046 0.229811 7.48485e-06 0.000109049 2.718 ||| 0-0 ||| 914 668016 +a ||| to below ||| 0.0166667 0.229811 1.49697e-06 6.16531e-06 2.718 ||| 0-0 ||| 60 668016 +a ||| to benefit from ||| 0.00232019 0.229811 1.49697e-06 7.42954e-08 2.718 ||| 0-0 ||| 431 668016 +a ||| to benefit ||| 0.0144462 0.229811 1.34727e-05 4.61347e-05 2.718 ||| 0-0 ||| 623 668016 +a ||| to better ||| 0.00243902 0.229811 1.49697e-06 5.95162e-05 2.718 ||| 0-0 ||| 410 668016 +a ||| to bind ||| 0.0285714 0.253672 1.49697e-06 2.01423e-05 2.718 ||| 0-0 0-1 ||| 35 668016 +a ||| to blame here ||| 0.333333 0.229811 1.49697e-06 1.69061e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to blame ||| 0.00352113 0.229811 2.99394e-06 8.33718e-06 2.718 ||| 0-0 ||| 568 668016 +a ||| to blaze the trail ||| 0.2 0.229811 1.49697e-06 5.41942e-14 2.718 ||| 0-0 ||| 5 668016 +a ||| to blaze the ||| 0.2 0.229811 1.49697e-06 1.5054e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to blaze ||| 0.111111 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to blindly follow ||| 0.166667 0.23029 1.49697e-06 1.2346e-09 2.718 ||| 0-0 0-1 ||| 6 668016 +a ||| to blindly ||| 0.142857 0.23029 1.49697e-06 1.24707e-05 2.718 ||| 0-0 0-1 ||| 7 668016 +a ||| to board ||| 0.0416667 0.229811 1.49697e-06 4.67653e-05 2.718 ||| 0-0 ||| 24 668016 +a ||| to bodies concerned with ||| 1 0.229811 1.49697e-06 1.4377e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to bodies concerned ||| 1 0.229811 1.49697e-06 2.24835e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to bodies ||| 0.0384615 0.229811 1.49697e-06 1.3977e-05 2.718 ||| 0-0 ||| 26 668016 +a ||| to book ||| 0.0714286 0.229811 2.99394e-06 9.45814e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| to boost the ||| 0.00884956 0.229811 1.49697e-06 3.72048e-07 2.718 ||| 0-0 ||| 113 668016 +a ||| to boost ||| 0.00174216 0.229811 1.49697e-06 6.06022e-06 2.718 ||| 0-0 ||| 574 668016 +a ||| to borrow money ||| 0.05 0.229811 1.49697e-06 1.83166e-10 2.718 ||| 0-0 ||| 20 668016 +a ||| to borrow ||| 0.02 0.229811 2.99394e-06 1.12097e-06 2.718 ||| 0-0 ||| 100 668016 +a ||| to both of ||| 0.166667 0.229811 4.49091e-06 3.1546e-05 2.718 ||| 0-0 ||| 18 668016 +a ||| to both the ||| 0.00881057 0.229811 2.99394e-06 3.56241e-05 2.718 ||| 0-0 ||| 227 668016 +a ||| to both ||| 0.0590406 0.229811 9.58061e-05 0.000580275 2.718 ||| 0-0 ||| 1084 668016 +a ||| to bow ||| 0.0666667 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| to bowing to ||| 0.125 0.229811 1.49697e-06 1.24509e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| to box the ||| 1 0.229811 1.49697e-06 1.93551e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to box ||| 0.5 0.229811 1.49697e-06 3.15271e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to branch out into ||| 0.5 0.229811 1.49697e-06 9.36782e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to branch out ||| 0.5 0.229811 1.49697e-06 9.12421e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to branch ||| 0.5 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to brand ||| 0.1 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| to break and overturn ||| 1 0.0015873 1.49697e-06 5.48818e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| to break and ||| 1 0.0015873 1.49697e-06 4.98925e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| to break into ||| 0.142857 0.107578 1.49697e-06 1.57068e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| to break their ||| 0.142857 0.229811 1.49697e-06 1.18156e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| to break them down both ||| 0.5 0.229811 1.49697e-06 3.16204e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| to break them down ||| 0.333333 0.229811 1.49697e-06 1.90887e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to break them ||| 0.333333 0.229811 1.49697e-06 2.73438e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to break with ||| 0.0294118 0.0571592 1.49697e-06 4.31697e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| to break ||| 0.0134409 0.229811 7.48485e-06 1.01938e-05 2.718 ||| 0-0 ||| 372 668016 +a ||| to breaking ||| 0.0666667 0.229811 1.49697e-06 5.28955e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| to breed ||| 0.0526316 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| to bridge ||| 0.0070922 0.229811 1.49697e-06 1.89163e-06 2.718 ||| 0-0 ||| 141 668016 +a ||| to bring about a situation ||| 0.0714286 0.229811 1.49697e-06 3.52068e-12 2.718 ||| 0-0 ||| 14 668016 +a ||| to bring about a ||| 0.00328947 0.229811 1.49697e-06 6.83627e-09 2.718 ||| 0-0 ||| 304 668016 +a ||| to bring about considerable ||| 0.5 0.229811 1.49697e-06 6.94025e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to bring about ||| 0.00535714 0.229811 8.98182e-06 1.54228e-07 2.718 ||| 0-0 ||| 1120 668016 +a ||| to bring down ||| 0.0144928 0.229811 1.49697e-06 7.6127e-08 2.718 ||| 0-0 ||| 69 668016 +a ||| to bring her entire ||| 1 0.229811 1.49697e-06 2.35004e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to bring her ||| 0.5 0.229811 1.49697e-06 2.96722e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to bring in ||| 0.0174419 0.0587624 4.49091e-06 1.66198e-06 2.718 ||| 0-2 ||| 172 668016 +a ||| to bring influence ||| 1 0.229811 1.49697e-06 3.72947e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to bring it into line with ||| 0.0454545 0.143485 1.49697e-06 9.78592e-15 2.718 ||| 0-0 0-5 ||| 22 668016 +a ||| to bring them ||| 0.0140845 0.229811 1.49697e-06 2.92513e-07 2.718 ||| 0-0 ||| 71 668016 +a ||| to bring themselves into ||| 1 0.229811 1.49697e-06 4.81094e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to bring themselves ||| 0.333333 0.229811 1.49697e-06 4.68583e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to bring these into line with ||| 0.333333 0.229811 1.49697e-06 2.1859e-16 2.718 ||| 0-0 ||| 3 668016 +a ||| to bring these into line ||| 0.333333 0.229811 1.49697e-06 3.4184e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| to bring these into ||| 0.333333 0.229811 1.49697e-06 1.16114e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to bring these ||| 0.0294118 0.229811 1.49697e-06 1.13095e-07 2.718 ||| 0-0 ||| 34 668016 +a ||| to bring those ||| 0.03125 0.229811 1.49697e-06 7.89623e-08 2.718 ||| 0-0 ||| 32 668016 +a ||| to bring to ||| 0.00595238 0.229811 1.49697e-06 3.82e-05 2.718 ||| 0-0 0-2 ||| 168 668016 +a ||| to bring together ||| 0.00595238 0.229811 1.49697e-06 6.54948e-08 2.718 ||| 0-0 ||| 168 668016 +a ||| to bring up ||| 0.0107527 0.229811 1.49697e-06 3.71911e-07 2.718 ||| 0-0 ||| 93 668016 +a ||| to bring us ||| 0.04 0.229811 1.49697e-06 3.14301e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| to bring ||| 0.013571 0.229811 7.63455e-05 0.000109049 2.718 ||| 0-0 ||| 3758 668016 +a ||| to bringing about ||| 0.0645161 0.229811 2.99394e-06 3.97832e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| to bringing ||| 0.0314961 0.229811 5.98788e-06 2.81292e-05 2.718 ||| 0-0 ||| 127 668016 +a ||| to brush up ||| 0.2 0.229811 1.49697e-06 1.67259e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to brush ||| 0.125 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| to build up ||| 0.00492611 0.229811 1.49697e-06 4.73103e-08 2.718 ||| 0-0 ||| 203 668016 +a ||| to build ||| 0.00265252 0.229811 7.48485e-06 1.38719e-05 2.718 ||| 0-0 ||| 1885 668016 +a ||| to building ||| 0.00729927 0.229811 1.49697e-06 2.04226e-05 2.718 ||| 0-0 ||| 137 668016 +a ||| to bully ||| 0.142857 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to burden ||| 0.0238095 0.229811 1.49697e-06 1.52381e-05 2.718 ||| 0-0 ||| 42 668016 +a ||| to burgeoning ||| 1 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to buy goods , ||| 0.142857 0.229811 1.49697e-06 3.67834e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| to buy goods ||| 0.0625 0.229811 1.49697e-06 3.08444e-10 2.718 ||| 0-0 ||| 16 668016 +a ||| to buy ||| 0.003861 0.229811 2.99394e-06 6.69076e-06 2.718 ||| 0-0 ||| 518 668016 +a ||| to by a ||| 0.125 0.229811 1.49697e-06 8.15204e-05 2.718 ||| 0-0 ||| 8 668016 +a ||| to by one ||| 1 0.229811 1.49697e-06 7.66545e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| to by ||| 0.0730769 0.229811 2.84424e-05 0.00183912 2.718 ||| 0-0 ||| 260 668016 +a ||| to calculate ||| 0.00847458 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 118 668016 +a ||| to call - on ||| 1 0.0782999 1.49697e-06 2.8228e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| to call German ||| 1 0.229811 1.49697e-06 1.87418e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to call for ||| 0.00199203 0.229811 1.49697e-06 5.97693e-07 2.718 ||| 0-0 ||| 502 668016 +a ||| to call into ||| 0.0434783 0.229811 2.99394e-06 7.98433e-08 2.718 ||| 0-0 ||| 46 668016 +a ||| to call it an ||| 0.2 0.229811 1.49697e-06 6.14678e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to call it ||| 0.015873 0.229811 1.49697e-06 1.38295e-06 2.718 ||| 0-0 ||| 63 668016 +a ||| to call on you to ||| 0.0909091 0.102882 1.49697e-06 1.91365e-11 2.718 ||| 0-2 0-3 0-4 ||| 11 668016 +a ||| to call on ||| 0.00634249 0.0782999 4.49091e-06 7.48337e-07 2.718 ||| 0-2 ||| 473 668016 +a ||| to call up ||| 0.25 0.229811 1.49697e-06 2.65224e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to call upon ||| 0.0133333 0.229811 2.99394e-06 1.84463e-08 2.718 ||| 0-0 ||| 150 668016 +a ||| to call ||| 0.0117161 0.229811 2.54485e-05 7.7767e-05 2.718 ||| 0-0 ||| 1451 668016 +a ||| to calm down ||| 0.125 0.229811 1.49697e-06 8.80364e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| to calm ||| 0.0333333 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 30 668016 +a ||| to can be seen ||| 1 0.229811 1.49697e-06 3.97472e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to can be ||| 1 0.229811 1.49697e-06 1.88823e-05 2.718 ||| 0-0 ||| 1 668016 +a ||| to can ||| 0.25 0.229811 1.49697e-06 0.0010419 2.718 ||| 0-0 ||| 4 668016 +a ||| to capture ||| 0.025 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-0 ||| 40 668016 +a ||| to care ||| 0.00862069 0.229811 1.49697e-06 3.55556e-05 2.718 ||| 0-0 ||| 116 668016 +a ||| to cargo ||| 1 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| to carry off ||| 1 0.229811 1.49697e-06 2.61621e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to carry out a ||| 0.0030303 0.229811 1.49697e-06 1.09139e-08 2.718 ||| 0-0 ||| 330 668016 +a ||| to carry out an ||| 0.00671141 0.229811 1.49697e-06 1.09437e-09 2.718 ||| 0-0 ||| 149 668016 +a ||| to carry out its ||| 0.00925926 0.229811 1.49697e-06 3.50789e-10 2.718 ||| 0-0 ||| 108 668016 +a ||| to carry out the decommissioning work ||| 1 0.229811 1.49697e-06 3.4446e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to carry out the decommissioning ||| 1 0.229811 1.49697e-06 5.44171e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to carry out the ||| 0.00431034 0.229811 1.49697e-06 1.51159e-08 2.718 ||| 0-0 ||| 232 668016 +a ||| to carry out work ||| 0.333333 0.229811 1.49697e-06 1.55857e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to carry out ||| 0.00820934 0.229811 2.39515e-05 2.46219e-07 2.718 ||| 0-0 ||| 1949 668016 +a ||| to carry ||| 0.0278184 0.229811 5.68849e-05 6.42803e-05 2.718 ||| 0-0 ||| 1366 668016 +a ||| to carrying out ||| 0.0243902 0.229811 1.49697e-06 8.11786e-08 2.718 ||| 0-0 ||| 41 668016 +a ||| to carrying ||| 0.0555556 0.229811 1.49697e-06 2.11932e-05 2.718 ||| 0-0 ||| 18 668016 +a ||| to cast a ||| 0.111111 0.229811 1.49697e-06 5.24826e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to cast aside ||| 0.333333 0.229811 1.49697e-06 8.34734e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to cast doubt on ||| 0.1 0.229811 1.49697e-06 7.24096e-12 2.718 ||| 0-0 ||| 10 668016 +a ||| to cast doubt ||| 0.125 0.229811 1.49697e-06 1.08219e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| to cast ||| 0.0447761 0.229811 4.49091e-06 1.18402e-05 2.718 ||| 0-0 ||| 67 668016 +a ||| to catch ||| 0.0135135 0.229811 4.49091e-06 6.06022e-06 2.718 ||| 0-0 ||| 222 668016 +a ||| to categories of ||| 0.142857 0.229811 1.49697e-06 2.05673e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to categories ||| 0.0909091 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| to cater for ||| 0.0294118 0.229811 1.49697e-06 6.73078e-09 2.718 ||| 0-0 ||| 34 668016 +a ||| to cater ||| 0.0263158 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 38 668016 +a ||| to cause it to ||| 0.333333 0.229811 1.49697e-06 1.00025e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to cause it ||| 0.333333 0.229811 1.49697e-06 1.12567e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to cause their ||| 1 0.229811 1.49697e-06 7.33704e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to cause ||| 0.0182648 0.229811 5.98788e-06 6.32995e-05 2.718 ||| 0-0 ||| 219 668016 +a ||| to causing ||| 0.2 0.229811 1.49697e-06 1.03339e-05 2.718 ||| 0-0 ||| 5 668016 +a ||| to celebrate ||| 0.00529101 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-0 ||| 189 668016 +a ||| to censure , in ||| 0.25 0.0587624 1.49697e-06 2.03738e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| to centralise ||| 0.0333333 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 30 668016 +a ||| to certain people ||| 0.2 0.229811 1.49697e-06 8.78756e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to certain ||| 0.00974421 0.229811 1.19758e-05 9.9836e-05 2.718 ||| 0-0 ||| 821 668016 +a ||| to certified ||| 1 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to challenge ||| 0.0144231 0.229811 4.49091e-06 1.49929e-05 2.718 ||| 0-0 ||| 208 668016 +a ||| to change for the ||| 0.142857 0.229811 1.49697e-06 2.01649e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| to change for ||| 0.142857 0.229811 1.49697e-06 3.28462e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to change over ||| 0.0555556 0.229811 1.49697e-06 2.05778e-08 2.718 ||| 0-0 ||| 18 668016 +a ||| to change people ||| 0.25 0.229811 1.49697e-06 3.76169e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to change the nature ||| 0.142857 0.229811 1.49697e-06 3.7099e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| to change the system ||| 0.047619 0.229811 1.49697e-06 7.31747e-10 2.718 ||| 0-0 ||| 21 668016 +a ||| to change the ||| 0.002574 0.229811 2.99394e-06 2.62369e-06 2.718 ||| 0-0 ||| 777 668016 +a ||| to change ||| 0.00608596 0.229811 2.39515e-05 4.27368e-05 2.718 ||| 0-0 ||| 2629 668016 +a ||| to changes ||| 0.00729927 0.229811 1.49697e-06 1.79004e-05 2.718 ||| 0-0 ||| 137 668016 +a ||| to charge ||| 0.0103093 0.229811 1.49697e-06 1.76552e-05 2.718 ||| 0-0 ||| 97 668016 +a ||| to cheap ||| 0.166667 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| to check with ||| 0.142857 0.0571592 1.49697e-06 4.5395e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| to check ||| 0.00603318 0.229811 5.98788e-06 1.07192e-05 2.718 ||| 0-0 ||| 663 668016 +a ||| to children ||| 0.00760456 0.229811 2.99394e-06 2.60975e-05 2.718 ||| 0-0 ||| 263 668016 +a ||| to choose ||| 0.00340909 0.229811 4.49091e-06 1.11046e-05 2.718 ||| 0-0 ||| 880 668016 +a ||| to circulate ||| 0.0232558 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 43 668016 +a ||| to circumvent ||| 0.0222222 0.229811 2.99394e-06 4.90422e-07 2.718 ||| 0-0 ||| 90 668016 +a ||| to citizens ||| 0.00167224 0.229811 1.49697e-06 3.81829e-05 2.718 ||| 0-0 ||| 598 668016 +a ||| to civil ||| 0.0714286 0.229811 1.49697e-06 9.31802e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| to claim ||| 0.015674 0.229811 7.48485e-06 1.64992e-05 2.718 ||| 0-0 ||| 319 668016 +a ||| to clarify relates to ||| 1 0.229811 1.49697e-06 1.00587e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| to clarify the ||| 0.00257069 0.229811 1.49697e-06 2.47315e-07 2.718 ||| 0-0 ||| 389 668016 +a ||| to clarify ||| 0.00159744 0.229811 2.99394e-06 4.02847e-06 2.718 ||| 0-0 ||| 1252 668016 +a ||| to clean the affected areas and to ||| 1 0.115699 1.49697e-06 1.11296e-18 2.718 ||| 0-5 0-6 ||| 1 668016 +a ||| to clean ||| 0.0285714 0.229811 1.49697e-06 6.93597e-06 2.718 ||| 0-0 ||| 35 668016 +a ||| to clear ||| 0.0153846 0.229811 2.99394e-06 0.000116615 2.718 ||| 0-0 ||| 130 668016 +a ||| to clearly commit himself to a ||| 1 0.229811 1.49697e-06 4.44073e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| to clearly commit himself to ||| 1 0.229811 1.49697e-06 1.00184e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| to clearly defined ||| 1 0.229811 1.49697e-06 2.14166e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to clearly ||| 0.0149254 0.229811 1.49697e-06 6.393e-05 2.718 ||| 0-0 ||| 67 668016 +a ||| to clone ||| 0.0714286 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| to close ||| 0.00763359 0.229811 1.04788e-05 5.19497e-05 2.718 ||| 0-0 ||| 917 668016 +a ||| to closely ||| 0.0344828 0.229811 1.49697e-06 3.10017e-05 2.718 ||| 0-0 ||| 29 668016 +a ||| to closer ||| 0.0434783 0.229811 1.49697e-06 7.46142e-05 2.718 ||| 0-0 ||| 23 668016 +a ||| to coal ||| 0.0833333 0.229811 1.49697e-06 1.89163e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| to collect ||| 0.00362319 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-0 ||| 276 668016 +a ||| to combat it ||| 0.015873 0.229811 1.49697e-06 1.20852e-07 2.718 ||| 0-0 ||| 63 668016 +a ||| to combat trade ||| 0.5 0.229811 1.49697e-06 5.91919e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to combat ||| 0.000938967 0.229811 5.98788e-06 6.79585e-06 2.718 ||| 0-0 ||| 4260 668016 +a ||| to combine it ||| 0.25 0.229811 1.49697e-06 4.92129e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to combine underused ||| 0.0625 0.229811 1.49697e-06 1.10695e-12 2.718 ||| 0-0 ||| 16 668016 +a ||| to combine ||| 0.00765306 0.229811 4.49091e-06 2.76738e-06 2.718 ||| 0-0 ||| 392 668016 +a ||| to come , ||| 0.00636943 0.229811 1.49697e-06 3.54796e-05 2.718 ||| 0-0 ||| 157 668016 +a ||| to come about ||| 0.130435 0.229811 4.49091e-06 4.2077e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| to come and ||| 0.027972 0.229811 5.98788e-06 3.72659e-06 2.718 ||| 0-0 ||| 143 668016 +a ||| to come back to ||| 0.0042735 0.229811 1.49697e-06 1.77811e-08 2.718 ||| 0-3 ||| 234 668016 +a ||| to come back with ||| 0.047619 0.229811 1.49697e-06 1.27958e-09 2.718 ||| 0-0 ||| 21 668016 +a ||| to come back ||| 0.00694444 0.229811 2.99394e-06 2.00106e-07 2.718 ||| 0-0 ||| 288 668016 +a ||| to come forward and ||| 0.0909091 0.229811 1.49697e-06 2.07348e-09 2.718 ||| 0-0 ||| 11 668016 +a ||| to come forward ||| 0.00909091 0.229811 1.49697e-06 1.65535e-07 2.718 ||| 0-0 ||| 110 668016 +a ||| to come into effect ||| 0.03125 0.229811 1.49697e-06 1.019e-10 2.718 ||| 0-0 ||| 32 668016 +a ||| to come into force , ||| 0.142857 0.229811 1.49697e-06 6.19986e-12 2.718 ||| 0-0 ||| 7 668016 +a ||| to come into force ||| 0.010101 0.229811 1.49697e-06 5.19884e-11 2.718 ||| 0-0 ||| 99 668016 +a ||| to come into ||| 0.0167598 0.229811 4.49091e-06 3.05455e-07 2.718 ||| 0-0 ||| 179 668016 +a ||| to come out , ||| 0.25 0.229811 1.49697e-06 1.35901e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to come out and ||| 0.166667 0.229811 1.49697e-06 1.42743e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to come out ||| 0.0306122 0.229811 4.49091e-06 1.13959e-06 2.718 ||| 0-0 ||| 98 668016 +a ||| to come round ||| 0.153846 0.229811 2.99394e-06 2.28191e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| to come to such a ||| 0.25 0.229811 1.49697e-06 2.42436e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| to come to such ||| 0.333333 0.229811 1.49697e-06 5.46941e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| to come to terms with ||| 0.0208333 0.229811 1.49697e-06 1.85546e-10 2.718 ||| 0-0 ||| 48 668016 +a ||| to come to terms ||| 0.0294118 0.229811 1.49697e-06 2.90165e-08 2.718 ||| 0-0 ||| 34 668016 +a ||| to come to the ||| 0.0168067 0.229811 2.99394e-06 1.62297e-06 2.718 ||| 0-0 ||| 119 668016 +a ||| to come to their ||| 0.166667 0.229811 1.49697e-06 3.06423e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to come to ||| 0.0158228 0.229811 1.49697e-05 2.64363e-05 2.718 ||| 0-2 ||| 632 668016 +a ||| to come together to ||| 0.05 0.229811 1.49697e-06 1.58776e-08 2.718 ||| 0-3 ||| 20 668016 +a ||| to come up against ||| 0.125 0.229811 1.49697e-06 2.42098e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| to come up for discussion ||| 0.5 0.229811 1.49697e-06 6.73781e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to come up for ||| 0.333333 0.229811 1.49697e-06 7.79839e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to come up to ||| 0.222222 0.229811 2.99394e-06 9.0161e-08 2.718 ||| 0-3 ||| 9 668016 +a ||| to come up with ||| 0.00206186 0.0571592 1.49697e-06 4.297e-09 2.718 ||| 0-3 ||| 485 668016 +a ||| to come up ||| 0.00742574 0.229811 4.49091e-06 1.01466e-06 2.718 ||| 0-0 ||| 404 668016 +a ||| to come will ||| 0.166667 0.229811 1.49697e-06 2.57383e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| to come ||| 0.0272408 0.229811 9.28122e-05 0.000297511 2.718 ||| 0-0 ||| 2276 668016 +a ||| to comes ||| 1 0.229811 1.49697e-06 0.000140051 2.718 ||| 0-0 ||| 1 668016 +a ||| to comment on ||| 0.00409836 0.0782999 4.49091e-06 1.5405e-07 2.718 ||| 0-2 ||| 732 668016 +a ||| to comment ||| 0.00307692 0.229811 2.99394e-06 1.60088e-05 2.718 ||| 0-0 ||| 650 668016 +a ||| to commit a crime ||| 0.142857 0.229811 1.49697e-06 1.55581e-11 2.718 ||| 0-0 ||| 7 668016 +a ||| to commit a ||| 0.05 0.229811 1.49697e-06 3.69552e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| to commit ourselves ||| 0.0454545 0.229811 1.49697e-06 2.65206e-09 2.718 ||| 0-0 ||| 22 668016 +a ||| to commit to ||| 0.00869565 0.229811 1.49697e-06 2.92053e-06 2.718 ||| 0-0 0-2 ||| 115 668016 +a ||| to commit ||| 0.0271084 0.229811 1.34727e-05 8.33718e-06 2.718 ||| 0-0 ||| 332 668016 +a ||| to committee concerned ||| 0.5 0.229811 1.49697e-06 4.36145e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to committee ||| 0.00189394 0.229811 1.49697e-06 2.71133e-05 2.718 ||| 0-0 ||| 528 668016 +a ||| to companies ||| 0.00434783 0.229811 1.49697e-06 2.45912e-05 2.718 ||| 0-0 ||| 230 668016 +a ||| to comparisons ||| 0.2 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to compel anyone ||| 1 0.339844 1.49697e-06 3.37951e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| to compel ||| 0.027027 0.339844 1.49697e-06 7.05534e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| to compensate people ||| 0.333333 0.122807 1.49697e-06 6.99224e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| to compensate victims ||| 0.1 0.229811 1.49697e-06 3.58604e-11 2.718 ||| 0-0 ||| 10 668016 +a ||| to compensate ||| 0.0077821 0.229811 2.99394e-06 1.01587e-06 2.718 ||| 0-0 ||| 257 668016 +a ||| to compete on ||| 0.0147059 0.229811 1.49697e-06 1.85166e-08 2.718 ||| 0-0 ||| 68 668016 +a ||| to compete ||| 0.00511945 0.229811 4.49091e-06 2.76738e-06 2.718 ||| 0-0 ||| 586 668016 +a ||| to competition from ||| 0.0322581 0.229811 1.49697e-06 2.04778e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| to competition ||| 0.00181159 0.229811 1.49697e-06 1.27159e-05 2.718 ||| 0-0 ||| 552 668016 +a ||| to compile ||| 0.0140845 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 71 668016 +a ||| to complete ||| 0.00131926 0.229811 1.49697e-06 2.50816e-05 2.718 ||| 0-0 ||| 758 668016 +a ||| to completely ||| 0.03125 0.229811 1.49697e-06 3.56607e-05 2.718 ||| 0-0 ||| 32 668016 +a ||| to comply with normal forms ||| 1 0.229811 1.49697e-06 1.55227e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to comply with normal ||| 1 0.229811 1.49697e-06 1.74021e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to comply with ||| 0.0034904 0.229811 5.98788e-06 1.04832e-07 2.718 ||| 0-0 ||| 1146 668016 +a ||| to comply ||| 0.0163636 0.229811 1.34727e-05 1.63941e-05 2.718 ||| 0-0 ||| 550 668016 +a ||| to comprehensive ||| 0.166667 0.229811 1.49697e-06 8.8276e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| to compromise , ||| 0.02 0.229811 1.49697e-06 1.89241e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| to compromise ||| 0.00606061 0.229811 2.99394e-06 1.58687e-05 2.718 ||| 0-0 ||| 330 668016 +a ||| to conceal things ||| 0.5 0.229811 1.49697e-06 8.78241e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to conceal what are ||| 1 0.229811 1.49697e-06 4.54908e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to conceal what ||| 1 0.229811 1.49697e-06 2.9982e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to conceal ||| 0.0215827 0.229811 4.49091e-06 2.13684e-06 2.718 ||| 0-0 ||| 139 668016 +a ||| to concede ||| 0.0163934 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-0 ||| 61 668016 +a ||| to concentrate ||| 0.00276625 0.229811 2.99394e-06 5.42967e-06 2.718 ||| 0-0 ||| 723 668016 +a ||| to concern ||| 0.0163934 0.229811 1.49697e-06 4.67653e-05 2.718 ||| 0-0 ||| 61 668016 +a ||| to concerns as to ||| 1 0.229811 1.49697e-06 2.37908e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| to conclude ||| 0.00106952 0.229811 4.49091e-06 8.44227e-06 2.718 ||| 0-0 ||| 2805 668016 +a ||| to condemn ||| 0.00168634 0.229811 1.49697e-06 4.27368e-06 2.718 ||| 0-0 ||| 593 668016 +a ||| to condone ||| 0.142857 0.229811 2.99394e-06 4.90422e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| to conduct different ||| 0.0833333 0.229811 1.49697e-06 4.6359e-09 2.718 ||| 0-0 ||| 12 668016 +a ||| to conduct hearings of ||| 0.5 0.0188479 1.49697e-06 6.7923e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| to conduct ||| 0.00565771 0.229811 5.98788e-06 2.10531e-05 2.718 ||| 0-0 ||| 707 668016 +a ||| to confine it to ||| 1 0.229811 1.49697e-06 1.99275e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to confine it ||| 1 0.229811 1.49697e-06 2.24261e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to confine ||| 0.0555556 0.229811 2.99394e-06 1.26109e-06 2.718 ||| 0-0 ||| 36 668016 +a ||| to confirm the ||| 0.0108696 0.229811 1.49697e-06 3.95704e-07 2.718 ||| 0-0 ||| 92 668016 +a ||| to confirm ||| 0.00725953 0.229811 5.98788e-06 6.44555e-06 2.718 ||| 0-0 ||| 551 668016 +a ||| to conform to ||| 0.0217391 0.229811 1.49697e-06 4.3578e-08 2.718 ||| 0-2 ||| 46 668016 +a ||| to conform ||| 0.0172414 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 58 668016 +a ||| to confrontation ||| 0.2 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to confuse matters ||| 1 0.229811 1.49697e-06 1.87937e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to confuse ||| 0.0117647 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-0 ||| 85 668016 +a ||| to congratulate ||| 0.00366197 0.237528 1.94606e-05 0.0011664 2.718 ||| 0-0 0-1 ||| 3550 668016 +a ||| to consider ||| 0.00412698 0.229811 1.94606e-05 5.5733e-05 2.718 ||| 0-0 ||| 3150 668016 +a ||| to considerable ambiguity ||| 0.166667 0.229811 1.49697e-06 2.2069e-11 2.718 ||| 0-0 ||| 6 668016 +a ||| to considerable ||| 0.016129 0.229811 1.49697e-06 1.57636e-05 2.718 ||| 0-0 ||| 62 668016 +a ||| to considering ||| 0.03125 0.229811 2.99394e-06 1.05791e-05 2.718 ||| 0-0 ||| 64 668016 +a ||| to consist ||| 0.0625 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-0 ||| 16 668016 +a ||| to consolidate ||| 0.00182482 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-0 ||| 548 668016 +a ||| to consolidating ||| 0.015625 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-0 ||| 64 668016 +a ||| to consort with Schüssel as he is ||| 1 0.229811 1.49697e-06 2.75086e-22 2.718 ||| 0-0 ||| 1 668016 +a ||| to consort with Schüssel as he ||| 1 0.229811 1.49697e-06 8.77716e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| to consort with Schüssel as ||| 1 0.229811 1.49697e-06 1.00575e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to consort with Schüssel ||| 1 0.229811 1.49697e-06 9.85602e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to consort with ||| 1 0.229811 1.49697e-06 8.96001e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to consort ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to constructively ||| 0.5 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to consume ||| 0.04 0.229811 2.99394e-06 8.75754e-07 2.718 ||| 0-0 ||| 50 668016 +a ||| to consumers ||| 0.00135685 0.229811 1.49697e-06 1.31013e-05 2.718 ||| 0-0 ||| 737 668016 +a ||| to contact the rapporteurs and the groups ||| 1 0.229811 1.49697e-06 1.65192e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| to contact the rapporteurs and the ||| 1 0.229811 1.49697e-06 2.49535e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to contact the rapporteurs and ||| 1 0.229811 1.49697e-06 4.06464e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to contact the rapporteurs ||| 1 0.229811 1.49697e-06 3.24499e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to contact the ||| 0.0322581 0.229811 1.49697e-06 4.10758e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| to contact ||| 0.00961538 0.229811 1.49697e-06 6.69076e-06 2.718 ||| 0-0 ||| 104 668016 +a ||| to contacts not only with ||| 0.5 0.229811 1.49697e-06 5.53315e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| to contacts not only ||| 0.5 0.229811 1.49697e-06 8.65298e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to contacts not ||| 0.5 0.229811 1.49697e-06 7.77377e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to contacts ||| 0.166667 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| to contain ||| 0.00571429 0.229811 1.49697e-06 1.19803e-05 2.718 ||| 0-0 ||| 175 668016 +a ||| to continue giving support ||| 1 0.136521 1.49697e-06 7.09053e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| to continue giving ||| 0.125 0.136521 1.49697e-06 2.07386e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| to continue keeping ||| 0.5 0.229811 1.49697e-06 4.75821e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to continue serving ||| 0.5 0.229811 1.49697e-06 9.0787e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to continue to live ||| 0.166667 0.229811 1.49697e-06 7.26045e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| to continue to threaten ||| 1 0.229811 1.49697e-06 2.59302e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to continue to ||| 0.00664767 0.229811 1.04788e-05 7.20283e-06 2.718 ||| 0-2 ||| 1053 668016 +a ||| to continue ||| 0.0037714 0.229811 1.94606e-05 8.10598e-05 2.718 ||| 0-0 ||| 3447 668016 +a ||| to continuous ||| 0.1 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| to contribute to ||| 0.00274348 0.229811 2.99394e-06 4.77347e-06 2.718 ||| 0-0 0-2 ||| 729 668016 +a ||| to contribute towards ||| 0.0243902 0.229811 2.99394e-06 1.73059e-09 2.718 ||| 0-0 ||| 82 668016 +a ||| to contribute ||| 0.00505902 0.229811 8.98182e-06 1.36267e-05 2.718 ||| 0-0 ||| 1186 668016 +a ||| to control ||| 0.000919118 0.229811 1.49697e-06 2.68681e-05 2.718 ||| 0-0 ||| 1088 668016 +a ||| to conventional ||| 0.1 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| to convert to ||| 0.125 0.229811 1.49697e-06 1.55636e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| to convert ||| 0.00584795 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-0 ||| 171 668016 +a ||| to converting ||| 0.0909091 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| to convey to ||| 0.0181818 0.229811 1.49697e-06 2.92595e-07 2.718 ||| 0-2 ||| 55 668016 +a ||| to convey ||| 0.00294985 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-0 ||| 339 668016 +a ||| to conveying ||| 0.142857 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| to convince you ||| 0.0666667 0.229811 1.49697e-06 4.86338e-09 2.718 ||| 0-0 ||| 15 668016 +a ||| to convince ||| 0.00535714 0.279085 4.49091e-06 0.000189934 2.718 ||| 0-0 0-1 ||| 560 668016 +a ||| to cooperate ||| 0.00145879 0.229811 2.99394e-06 3.15271e-06 2.718 ||| 0-0 ||| 1371 668016 +a ||| to cooperating ||| 0.0357143 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| to coordinate ||| 0.00120627 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 829 668016 +a ||| to cope with ||| 0.00189036 0.229811 1.49697e-06 5.08481e-08 2.718 ||| 0-0 ||| 529 668016 +a ||| to cope ||| 0.0289017 0.229811 7.48485e-06 7.95185e-06 2.718 ||| 0-0 ||| 173 668016 +a ||| to corporate clients ||| 1 0.229811 1.49697e-06 1.23306e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to corporate ||| 0.142857 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| to correct ||| 0.00207469 0.229811 1.49697e-06 1.26109e-05 2.718 ||| 0-0 ||| 482 668016 +a ||| to counter the at ||| 0.125 0.229811 1.49697e-06 1.65697e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| to counter the ||| 0.00943396 0.229811 1.49697e-06 3.95704e-07 2.718 ||| 0-0 ||| 106 668016 +a ||| to counter ||| 0.00721154 0.229811 4.49091e-06 6.44555e-06 2.718 ||| 0-0 ||| 416 668016 +a ||| to country ||| 0.012987 0.229811 1.49697e-06 0.000126074 2.718 ||| 0-0 ||| 77 668016 +a ||| to court for ||| 0.0769231 0.0683377 1.49697e-06 9.79013e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| to court if ||| 0.333333 0.229811 1.49697e-06 8.75209e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to court ||| 0.00543478 0.229811 1.49697e-06 1.0474e-05 2.718 ||| 0-0 ||| 184 668016 +a ||| to cover a ||| 0.04 0.229811 1.49697e-06 1.21269e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| to cover the landfill or to reinforce ||| 1 0.229811 1.49697e-06 1.97933e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| to cover the landfill or to ||| 1 0.229811 1.49697e-06 4.94834e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| to cover ||| 0.0352324 0.229811 7.03576e-05 2.73586e-05 2.718 ||| 0-0 ||| 1334 668016 +a ||| to covertly ||| 0.333333 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to crashing ||| 0.2 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to cream a bit more ||| 1 0.229811 1.49697e-06 1.01103e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to cream a bit ||| 1 0.229811 1.49697e-06 4.42717e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to cream a ||| 1 0.229811 1.49697e-06 5.58986e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to cream ||| 0.166667 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| to create a lower standard ||| 1 0.229811 1.49697e-06 2.10813e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to create a lower ||| 1 0.229811 1.49697e-06 4.47587e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to create a ||| 0.000470146 0.229811 1.49697e-06 1.74839e-06 2.718 ||| 0-0 ||| 2127 668016 +a ||| to create very ||| 1 0.229811 1.49697e-06 1.37245e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to create ||| 0.00149775 0.229811 1.34727e-05 3.9444e-05 2.718 ||| 0-0 ||| 6009 668016 +a ||| to critical ||| 0.142857 0.229811 1.49697e-06 8.8276e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| to criticize ||| 0.0227273 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 44 668016 +a ||| to cry ||| 0.05 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| to cultural ||| 0.0625 0.229811 1.49697e-06 8.19706e-06 2.718 ||| 0-0 ||| 16 668016 +a ||| to curb ||| 0.00341297 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 293 668016 +a ||| to current ||| 0.0142857 0.229811 1.49697e-06 5.77297e-05 2.718 ||| 0-0 ||| 70 668016 +a ||| to curse ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to cut down ||| 0.0196078 0.229811 1.49697e-06 1.84876e-08 2.718 ||| 0-0 ||| 51 668016 +a ||| to cut off ||| 0.047619 0.229811 2.99394e-06 1.07785e-08 2.718 ||| 0-0 ||| 42 668016 +a ||| to cut ||| 0.0144928 0.229811 1.19758e-05 2.64828e-05 2.718 ||| 0-0 ||| 552 668016 +a ||| to damage ||| 0.0357143 0.229811 2.99394e-06 1.47477e-05 2.718 ||| 0-0 ||| 56 668016 +a ||| to danger ||| 0.0833333 0.229811 1.49697e-06 1.71297e-05 2.718 ||| 0-0 ||| 12 668016 +a ||| to dangers and ||| 0.333333 0.229811 1.49697e-06 3.33476e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to dangers ||| 0.111111 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| to date , ||| 0.0015528 0.229811 1.49697e-06 4.26942e-06 2.718 ||| 0-0 ||| 644 668016 +a ||| to date to ||| 0.0625 0.229811 1.49697e-06 3.1812e-06 2.718 ||| 0-0 ||| 16 668016 +a ||| to date ||| 0.00233973 0.229811 7.48485e-06 3.58008e-05 2.718 ||| 0-0 ||| 2137 668016 +a ||| to day , ||| 0.166667 0.229811 1.49697e-06 1.07028e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| to day ||| 0.025641 0.229811 1.49697e-06 8.97473e-05 2.718 ||| 0-0 ||| 39 668016 +a ||| to deal with it ||| 0.0075188 0.229811 1.49697e-06 1.69137e-08 2.718 ||| 0-0 ||| 133 668016 +a ||| to deal with suspicions ||| 0.5 0.229811 1.49697e-06 1.04622e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to deal with this ||| 0.00220751 0.0571592 1.49697e-06 4.06999e-09 2.718 ||| 0-2 ||| 453 668016 +a ||| to deal with ||| 0.00666844 0.229811 3.74243e-05 9.51106e-07 2.718 ||| 0-0 ||| 3749 668016 +a ||| to deal ||| 0.0272401 0.229811 5.68849e-05 0.000148738 2.718 ||| 0-0 ||| 1395 668016 +a ||| to dealing with ||| 0.0165289 0.229811 2.99394e-06 2.31392e-07 2.718 ||| 0-0 ||| 121 668016 +a ||| to dealing ||| 0.0454545 0.229811 4.49091e-06 3.61862e-05 2.718 ||| 0-0 ||| 66 668016 +a ||| to death in ||| 0.025641 0.0587624 1.49697e-06 2.89898e-07 2.718 ||| 0-2 ||| 39 668016 +a ||| to death with ||| 0.333333 0.229811 1.49697e-06 1.21632e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to death ||| 0.00630252 0.229811 4.49091e-06 1.90214e-05 2.718 ||| 0-0 ||| 476 668016 +a ||| to debate ||| 0.00252525 0.229811 2.99394e-06 6.93247e-05 2.718 ||| 0-0 ||| 792 668016 +a ||| to debates ||| 0.0434783 0.229811 1.49697e-06 6.06022e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| to decide to ||| 0.0153846 0.229811 1.49697e-06 1.99525e-06 2.718 ||| 0-0 ||| 65 668016 +a ||| to decide upon our times , places ||| 1 0.19056 1.49697e-06 9.91836e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| to decide upon our times , ||| 1 0.19056 1.49697e-06 1.87493e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| to decide upon our times ||| 1 0.19056 1.49697e-06 1.5722e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| to decide upon our ||| 1 0.19056 1.49697e-06 1.54897e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| to decide upon ||| 0.0384615 0.19056 1.49697e-06 1.12293e-08 2.718 ||| 0-2 ||| 26 668016 +a ||| to decide ||| 0.00324224 0.229811 1.04788e-05 2.24543e-05 2.718 ||| 0-0 ||| 2159 668016 +a ||| to deciding on ||| 0.2 0.154056 1.49697e-06 2.05978e-07 2.718 ||| 0-0 0-2 ||| 5 668016 +a ||| to decisions ||| 0.0108696 0.229811 1.49697e-06 2.6728e-05 2.718 ||| 0-0 ||| 92 668016 +a ||| to declare their departure ||| 0.5 0.229811 1.49697e-06 9.82279e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| to declare their ||| 0.0666667 0.229811 1.49697e-06 8.77035e-09 2.718 ||| 0-0 ||| 15 668016 +a ||| to declare ||| 0.00252525 0.229811 1.49697e-06 7.56651e-06 2.718 ||| 0-0 ||| 396 668016 +a ||| to dedicate ||| 0.0222222 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 45 668016 +a ||| to deduction at ||| 1 0.229811 1.49697e-06 1.0268e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to deduction ||| 0.5 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to defence ||| 0.0208333 0.229811 1.49697e-06 8.8276e-06 2.718 ||| 0-0 ||| 48 668016 +a ||| to defend a ||| 0.0322581 0.229811 1.49697e-06 3.24523e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| to defend all people clearly ||| 1 0.229811 1.49697e-06 5.55739e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to defend all people ||| 1 0.229811 1.49697e-06 3.04515e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to defend all ||| 0.25 0.229811 1.49697e-06 3.45961e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to defend ||| 0.00350263 0.229811 8.98182e-06 7.3213e-06 2.718 ||| 0-0 ||| 1713 668016 +a ||| to deliver an ||| 0.0294118 0.229811 1.49697e-06 5.77642e-08 2.718 ||| 0-0 ||| 34 668016 +a ||| to deliver on ||| 0.00869565 0.154056 1.49697e-06 4.93018e-07 2.718 ||| 0-0 0-2 ||| 115 668016 +a ||| to deliver ||| 0.00519751 0.229811 7.48485e-06 1.29962e-05 2.718 ||| 0-0 ||| 962 668016 +a ||| to delivering ||| 0.025 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-0 ||| 40 668016 +a ||| to demand ||| 0.00121359 0.229811 1.49697e-06 1.87762e-05 2.718 ||| 0-0 ||| 824 668016 +a ||| to demilitarise ||| 0.1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| to democratic legitimacy ||| 0.0833333 0.229811 1.49697e-06 7.96025e-11 2.718 ||| 0-0 ||| 12 668016 +a ||| to democratic ||| 0.0277778 0.229811 1.49697e-06 1.0474e-05 2.718 ||| 0-0 ||| 36 668016 +a ||| to demonstrate our wish to simplify regulatory ||| 1 0.229811 1.49697e-06 9.94138e-24 2.718 ||| 0-0 ||| 1 668016 +a ||| to demonstrate our wish to simplify ||| 1 0.229811 1.49697e-06 6.90374e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| to demonstrate our wish to ||| 1 0.229811 1.49697e-06 3.13806e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to demonstrate our wish ||| 1 0.229811 1.49697e-06 3.53154e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to demonstrate our ||| 0.0185185 0.229811 1.49697e-06 1.19835e-08 2.718 ||| 0-0 ||| 54 668016 +a ||| to demonstrate the fact ||| 0.166667 0.229811 1.49697e-06 1.56231e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to demonstrate the ||| 0.00952381 0.229811 1.49697e-06 5.3334e-07 2.718 ||| 0-0 ||| 105 668016 +a ||| to demonstrate ||| 0.00481696 0.229811 7.48485e-06 8.68748e-06 2.718 ||| 0-0 ||| 1038 668016 +a ||| to denounce ||| 0.00534759 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-0 ||| 187 668016 +a ||| to deny Portugal ||| 1 0.229811 1.49697e-06 1.99252e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to deny ||| 0.0037037 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-0 ||| 270 668016 +a ||| to depend on ||| 0.025 0.0782999 1.49697e-06 6.20244e-08 2.718 ||| 0-2 ||| 40 668016 +a ||| to deploy ||| 0.00675676 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-0 ||| 148 668016 +a ||| to describe ||| 0.0137931 0.229811 5.98788e-06 8.58239e-06 2.718 ||| 0-0 ||| 290 668016 +a ||| to design the ||| 0.1 0.229811 1.49697e-06 1.69895e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| to design ||| 0.00909091 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-0 ||| 110 668016 +a ||| to detain the ||| 0.25 0.229811 1.49697e-06 3.01079e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to detain ||| 0.0588235 0.229811 2.99394e-06 4.90422e-07 2.718 ||| 0-0 ||| 34 668016 +a ||| to detect ||| 0.0141844 0.229811 2.99394e-06 1.89163e-06 2.718 ||| 0-0 ||| 141 668016 +a ||| to determine the ||| 0.00393701 0.229811 1.49697e-06 5.18286e-07 2.718 ||| 0-0 ||| 254 668016 +a ||| to determine whether ||| 0.00943396 0.229811 1.49697e-06 2.21778e-09 2.718 ||| 0-0 ||| 106 668016 +a ||| to determine ||| 0.00605449 0.229811 8.98182e-06 8.44227e-06 2.718 ||| 0-0 ||| 991 668016 +a ||| to develop ||| 0.00344511 0.229811 2.24546e-05 2.14385e-05 2.718 ||| 0-0 ||| 4354 668016 +a ||| to developments in ||| 0.0175439 0.0587624 1.49697e-06 1.59631e-07 2.718 ||| 0-2 ||| 57 668016 +a ||| to devise ||| 0.00361011 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-0 ||| 277 668016 +a ||| to devolved ||| 0.333333 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to devote ourselves to ||| 0.333333 0.229811 1.49697e-06 9.60451e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| to devote time ||| 0.5 0.229811 1.49697e-06 5.57837e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to devote ||| 0.00763359 0.229811 2.99394e-06 3.39793e-06 2.718 ||| 0-0 ||| 262 668016 +a ||| to dialogue ||| 0.00746269 0.229811 1.49697e-06 1.37318e-05 2.718 ||| 0-0 ||| 134 668016 +a ||| to die ||| 0.00787402 0.229811 1.49697e-06 4.02847e-06 2.718 ||| 0-0 ||| 127 668016 +a ||| to difficult ||| 0.1 0.229811 1.49697e-06 4.35075e-05 2.718 ||| 0-0 ||| 10 668016 +a ||| to diminish ||| 0.0140845 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 71 668016 +a ||| to diploma ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to direct my ||| 0.25 0.229811 1.49697e-06 1.11063e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to direct ||| 0.00613497 0.229811 1.49697e-06 1.72699e-05 2.718 ||| 0-0 ||| 163 668016 +a ||| to disadvantaged social groups ||| 0.333333 0.229811 1.49697e-06 1.03008e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| to disadvantaged social ||| 1 0.229811 1.49697e-06 1.556e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to disadvantaged ||| 0.5 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to disagree . ||| 0.0769231 0.229811 1.49697e-06 8.3824e-09 2.718 ||| 0-0 ||| 13 668016 +a ||| to disagree ||| 0.0107527 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-0 ||| 93 668016 +a ||| to discharge ||| 0.0243902 0.229811 4.49091e-06 8.58239e-06 2.718 ||| 0-0 ||| 123 668016 +a ||| to discos any more ||| 1 0.229811 1.49697e-06 4.83894e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to discos any ||| 1 0.229811 1.49697e-06 2.1189e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to discos ||| 0.333333 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to discover ||| 0.00495049 0.229811 1.49697e-06 1.89163e-06 2.718 ||| 0-0 ||| 202 668016 +a ||| to discredit ||| 0.0212766 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-0 ||| 47 668016 +a ||| to discrimination ||| 0.00657895 0.229811 1.49697e-06 4.4138e-06 2.718 ||| 0-0 ||| 152 668016 +a ||| to discuss such ||| 0.1 0.229811 1.49697e-06 3.02216e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| to discuss them ||| 0.0192308 0.229811 1.49697e-06 3.91834e-08 2.718 ||| 0-0 ||| 52 668016 +a ||| to discuss ||| 0.00296648 0.229811 1.49697e-05 1.46076e-05 2.718 ||| 0-0 ||| 3371 668016 +a ||| to disease ||| 0.0666667 0.229811 1.49697e-06 1.03339e-05 2.718 ||| 0-0 ||| 15 668016 +a ||| to dismantle them , ||| 1 0.229811 1.49697e-06 3.24967e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to dismantle them ||| 0.25 0.229811 1.49697e-06 2.72498e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to dismantle ||| 0.00574713 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-0 ||| 174 668016 +a ||| to dismiss ||| 0.025974 0.229811 2.99394e-06 1.12097e-06 2.718 ||| 0-0 ||| 77 668016 +a ||| to display ||| 0.0106383 0.229811 1.49697e-06 3.53805e-06 2.718 ||| 0-0 ||| 94 668016 +a ||| to disputes ||| 0.111111 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| to distort ||| 0.0149254 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-0 ||| 67 668016 +a ||| to distorting ||| 0.25 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to diversity of agricultural output ||| 1 0.229811 1.49697e-06 2.87432e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to diversity of agricultural ||| 1 0.229811 1.49697e-06 7.1858e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to diversity of ||| 0.5 0.229811 1.49697e-06 1.84725e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to diversity ||| 0.0555556 0.229811 1.49697e-06 3.39793e-06 2.718 ||| 0-0 ||| 18 668016 +a ||| to divert us ||| 1 0.229811 1.49697e-06 7.06747e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to divert ||| 0.0204082 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 49 668016 +a ||| to do , finally , is to ||| 1 0.229811 1.49697e-06 5.60978e-12 2.718 ||| 0-6 ||| 1 668016 +a ||| to do , therefore , is ||| 0.333333 0.229811 1.49697e-06 4.48574e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to do , therefore , ||| 0.222222 0.229811 2.99394e-06 1.43126e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| to do , therefore ||| 0.222222 0.229811 2.99394e-06 1.20017e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to do , ||| 0.0100806 0.229811 7.48485e-06 0.00014351 2.718 ||| 0-0 ||| 496 668016 +a ||| to do all ||| 0.00485437 0.229811 1.49697e-06 5.6865e-06 2.718 ||| 0-0 ||| 206 668016 +a ||| to do any ||| 0.0909091 0.229811 1.49697e-06 1.81977e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| to do anything so far ||| 0.5 0.229811 1.49697e-06 2.92569e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to do anything so ||| 0.5 0.229811 1.49697e-06 4.28547e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to do anything ||| 0.0102041 0.229811 2.99394e-06 1.88812e-07 2.718 ||| 0-0 ||| 196 668016 +a ||| to do as ||| 0.00826446 0.229811 1.49697e-06 1.22799e-05 2.718 ||| 0-0 ||| 121 668016 +a ||| to do at this ||| 0.142857 0.204175 1.49697e-06 6.71305e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| to do at ||| 0.0681818 0.204175 4.49091e-06 1.03895e-05 2.718 ||| 0-2 ||| 44 668016 +a ||| to do in ||| 0.0146699 0.0587624 8.98182e-06 1.83405e-05 2.718 ||| 0-2 ||| 409 668016 +a ||| to do is to ||| 0.0181818 0.229811 2.99394e-06 3.35134e-06 2.718 ||| 0-3 ||| 110 668016 +a ||| to do is ||| 0.0166667 0.229811 8.98182e-06 3.77156e-05 2.718 ||| 0-0 ||| 360 668016 +a ||| to do it , ||| 0.0238095 0.229811 1.49697e-06 2.55207e-06 2.718 ||| 0-0 ||| 42 668016 +a ||| to do it ||| 0.00666667 0.229811 4.49091e-06 2.14001e-05 2.718 ||| 0-0 ||| 450 668016 +a ||| to do just that ||| 0.0363636 0.229811 2.99394e-06 2.55405e-08 2.718 ||| 0-0 ||| 55 668016 +a ||| to do just ||| 0.0425532 0.229811 2.99394e-06 1.51832e-06 2.718 ||| 0-0 ||| 47 668016 +a ||| to do justice to ||| 0.0434783 0.229811 2.99394e-06 4.26655e-09 2.718 ||| 0-0 ||| 46 668016 +a ||| to do justice ||| 0.0181818 0.229811 1.49697e-06 4.80153e-08 2.718 ||| 0-0 ||| 55 668016 +a ||| to do more ||| 0.00218341 0.229811 1.49697e-06 2.74818e-06 2.718 ||| 0-0 ||| 458 668016 +a ||| to do next , ||| 0.5 0.229811 1.49697e-06 1.48246e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to do next ||| 0.0526316 0.229811 1.49697e-06 1.2431e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| to do our ||| 0.00892857 0.229811 1.49697e-06 1.65996e-06 2.718 ||| 0-0 ||| 112 668016 +a ||| to do so , or only for ||| 1 0.0683377 1.49697e-06 3.87454e-15 2.718 ||| 0-6 ||| 1 668016 +a ||| to do so , without ||| 0.333333 0.229811 1.49697e-06 7.19852e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to do so , ||| 0.00385356 0.229811 2.99394e-06 3.25725e-07 2.718 ||| 0-0 ||| 519 668016 +a ||| to do so - ||| 0.0243902 0.229811 1.49697e-06 1.03029e-08 2.718 ||| 0-0 ||| 41 668016 +a ||| to do so . ||| 0.000847458 0.229811 1.49697e-06 8.27322e-09 2.718 ||| 0-0 ||| 1180 668016 +a ||| to do so for ||| 0.0454545 0.229811 1.49697e-06 2.09922e-08 2.718 ||| 0-0 ||| 22 668016 +a ||| to do so in the context of ||| 0.25 0.229811 1.49697e-06 2.61851e-14 2.718 ||| 0-0 ||| 4 668016 +a ||| to do so in the context ||| 0.25 0.229811 1.49697e-06 4.81663e-13 2.718 ||| 0-0 ||| 4 668016 +a ||| to do so in the ||| 0.0185185 0.229811 1.49697e-06 3.58914e-09 2.718 ||| 0-0 ||| 54 668016 +a ||| to do so in ||| 0.00549451 0.229811 1.49697e-06 5.84629e-08 2.718 ||| 0-0 ||| 182 668016 +a ||| to do so ||| 0.0106583 0.229811 5.0897e-05 2.73134e-06 2.718 ||| 0-0 ||| 3190 668016 +a ||| to do some ||| 0.027027 0.229811 1.49697e-06 1.31085e-06 2.718 ||| 0-0 ||| 37 668016 +a ||| to do something about ||| 0.00507614 0.0526361 1.49697e-06 8.51432e-10 2.718 ||| 0-3 ||| 197 668016 +a ||| to do something ||| 0.00168919 0.229811 1.49697e-06 6.66077e-07 2.718 ||| 0-0 ||| 592 668016 +a ||| to do that , it would give ||| 1 0.229811 1.49697e-06 1.52677e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to do that , it would ||| 1 0.229811 1.49697e-06 2.51942e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to do that , it ||| 0.5 0.229811 1.49697e-06 4.29299e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to do that , ||| 0.00598802 0.229811 1.49697e-06 2.41407e-06 2.718 ||| 0-0 ||| 167 668016 +a ||| to do that ||| 0.00410959 0.229811 4.49091e-06 2.0243e-05 2.718 ||| 0-0 ||| 730 668016 +a ||| to do the right thing ||| 0.0666667 0.229811 1.49697e-06 1.73853e-11 2.718 ||| 0-0 ||| 15 668016 +a ||| to do the right ||| 0.2 0.229811 1.49697e-06 4.76441e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to do the same ||| 0.00507614 0.229811 1.49697e-06 5.94499e-08 2.718 ||| 0-0 ||| 197 668016 +a ||| to do the ||| 0.00802139 0.229811 4.49091e-06 7.38783e-05 2.718 ||| 0-0 ||| 374 668016 +a ||| to do their work ||| 0.047619 0.229811 1.49697e-06 8.8294e-10 2.718 ||| 0-0 ||| 21 668016 +a ||| to do their ||| 0.0138889 0.229811 2.99394e-06 1.39485e-06 2.718 ||| 0-0 ||| 144 668016 +a ||| to do this , I am ||| 1 0.229811 1.49697e-06 8.37923e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to do this , I ||| 0.125 0.229811 1.49697e-06 6.55909e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| to do this , ||| 0.00406504 0.229811 1.49697e-06 9.27276e-07 2.718 ||| 0-0 ||| 246 668016 +a ||| to do this at ||| 0.0714286 0.204175 1.49697e-06 6.71305e-08 2.718 ||| 0-3 ||| 14 668016 +a ||| to do this in the ||| 0.0714286 0.229811 1.49697e-06 1.02176e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| to do this in ||| 0.0188679 0.229811 1.49697e-06 1.66433e-07 2.718 ||| 0-0 ||| 53 668016 +a ||| to do this very ||| 0.5 0.229811 1.49697e-06 2.70552e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to do this ||| 0.0100418 0.229811 1.79636e-05 7.77559e-06 2.718 ||| 0-0 ||| 1195 668016 +a ||| to do was ||| 0.0714286 0.229811 1.49697e-06 3.77022e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| to do what we can to ||| 0.0588235 0.229811 1.49697e-06 5.06596e-12 2.718 ||| 0-5 ||| 17 668016 +a ||| to do what ||| 0.003861 0.229811 1.49697e-06 1.68848e-06 2.718 ||| 0-0 ||| 259 668016 +a ||| to do with another matter on ||| 1 0.229811 1.49697e-06 1.28792e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to do with another matter ||| 1 0.229811 1.49697e-06 1.92486e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to do with another ||| 0.5 0.229811 1.49697e-06 1.85528e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to do with the destruction of ||| 0.333333 0.229811 1.49697e-06 2.67097e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| to do with the destruction ||| 0.333333 0.229811 1.49697e-06 4.91312e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| to do with the fact ||| 0.0434783 0.229811 7.48485e-06 1.38385e-09 2.718 ||| 0-0 ||| 115 668016 +a ||| to do with the ||| 0.00660793 0.229811 8.98182e-06 4.72415e-07 2.718 ||| 0-0 ||| 908 668016 +a ||| to do with what ||| 0.05 0.229811 1.49697e-06 1.0797e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| to do with ||| 0.0207331 0.229811 8.38303e-05 7.69508e-06 2.718 ||| 0-0 ||| 2701 668016 +a ||| to do ||| 0.0254738 0.229811 0.000496994 0.00120339 2.718 ||| 0-0 ||| 13033 668016 +a ||| to doing so ||| 0.047619 0.229811 1.49697e-06 2.91874e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| to doing ||| 0.0210526 0.229811 2.99394e-06 0.000128596 2.718 ||| 0-0 ||| 95 668016 +a ||| to domestically ||| 0.5 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to draft ||| 0.00480769 0.229811 2.99394e-06 1.83908e-05 2.718 ||| 0-0 ||| 416 668016 +a ||| to drafting ||| 0.0263158 0.229811 1.49697e-06 5.18446e-06 2.718 ||| 0-0 ||| 38 668016 +a ||| to drag ||| 0.0232558 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-0 ||| 43 668016 +a ||| to draw attention , in ||| 0.5 0.0587624 1.49697e-06 1.96975e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| to draw nearer ||| 0.333333 0.229811 1.49697e-06 1.78346e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to draw on ||| 0.0232558 0.229811 2.99394e-06 2.77514e-07 2.718 ||| 0-0 ||| 86 668016 +a ||| to draw the ||| 0.00286533 0.0004654 1.49697e-06 1.61231e-08 2.718 ||| 0-2 ||| 349 668016 +a ||| to draw these ||| 0.5 0.229811 1.49697e-06 4.30145e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to draw up ||| 0.00459137 0.229811 7.48485e-06 1.41453e-07 2.718 ||| 0-0 ||| 1089 668016 +a ||| to draw your attention to ||| 0.00154799 0.229811 1.49697e-06 2.46434e-13 2.718 ||| 0-4 ||| 646 668016 +a ||| to draw ||| 0.00357536 0.229811 1.94606e-05 4.14757e-05 2.718 ||| 0-0 ||| 3636 668016 +a ||| to drive forward ||| 0.0208333 0.229811 1.49697e-06 5.88622e-09 2.718 ||| 0-0 ||| 48 668016 +a ||| to drive home ||| 0.142857 0.229811 1.49697e-06 1.07378e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| to drive some of them out of ||| 0.5 0.0188479 1.49697e-06 4.82956e-17 2.718 ||| 0-6 ||| 2 668016 +a ||| to drive through ||| 0.111111 0.230708 1.49697e-06 2.13316e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| to drive ||| 0.0229885 0.229811 8.98182e-06 1.05791e-05 2.718 ||| 0-0 ||| 261 668016 +a ||| to drop in ||| 0.25 0.229811 1.49697e-06 1.18469e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to drop ||| 0.0131579 0.229811 1.49697e-06 5.53477e-06 2.718 ||| 0-0 ||| 76 668016 +a ||| to duly ||| 0.2 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to each other ||| 0.0117647 0.229811 2.99394e-06 1.27386e-07 2.718 ||| 0-0 ||| 170 668016 +a ||| to each ||| 0.0135338 0.229811 1.34727e-05 9.83297e-05 2.718 ||| 0-0 ||| 665 668016 +a ||| to earlier ||| 0.0246914 0.229811 2.99394e-06 2.44511e-05 2.718 ||| 0-0 ||| 81 668016 +a ||| to earn ||| 0.0102041 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-0 ||| 98 668016 +a ||| to earth to ||| 1 0.229811 1.49697e-06 4.48231e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| to ease ||| 0.014218 0.229811 4.49091e-06 3.64314e-06 2.718 ||| 0-0 ||| 211 668016 +a ||| to eat ||| 0.00571429 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-0 ||| 175 668016 +a ||| to echo ||| 0.00966184 0.229811 2.99394e-06 2.13684e-06 2.718 ||| 0-0 ||| 207 668016 +a ||| to economic and ||| 0.0232558 0.229811 1.49697e-06 5.32245e-07 2.718 ||| 0-0 ||| 43 668016 +a ||| to economic ruin ||| 1 0.229811 1.49697e-06 1.23226e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to economic ||| 0.0208333 0.229811 2.99394e-06 4.24916e-05 2.718 ||| 0-0 ||| 96 668016 +a ||| to edge ||| 0.333333 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to educate ||| 0.0111111 0.239479 1.49697e-06 2.33301e-05 2.718 ||| 0-0 0-1 ||| 90 668016 +a ||| to education ||| 0.0020202 0.229811 1.49697e-06 1.18402e-05 2.718 ||| 0-0 ||| 495 668016 +a ||| to effect a ||| 0.0833333 0.229811 1.49697e-06 5.17994e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| to effect ||| 0.0121951 0.229811 1.49697e-06 0.000116861 2.718 ||| 0-0 ||| 82 668016 +a ||| to effectively ||| 0.012987 0.229811 1.49697e-06 2.50816e-05 2.718 ||| 0-0 ||| 77 668016 +a ||| to either ||| 0.115942 0.229811 1.19758e-05 0.000303291 2.718 ||| 0-0 ||| 69 668016 +a ||| to elapse ||| 0.0769231 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| to elect ||| 0.043956 0.237468 5.98788e-06 2.81292e-05 2.718 ||| 0-0 0-1 ||| 91 668016 +a ||| to elevate them ||| 0.5 0.229811 1.49697e-06 3.7586e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to elevate ||| 0.0666667 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| to eliminate them ||| 0.0714286 0.229811 1.49697e-06 1.0806e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| to eliminate ||| 0.00424628 0.229811 5.98788e-06 4.02847e-06 2.718 ||| 0-0 ||| 942 668016 +a ||| to embark , is going ||| 1 0.229811 1.49697e-06 8.85179e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to embark , is ||| 1 0.229811 1.49697e-06 1.03433e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to embark , ||| 0.25 0.229811 1.49697e-06 3.30023e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to embark on ||| 0.0078125 0.0782999 1.49697e-06 2.663e-08 2.718 ||| 0-2 ||| 128 668016 +a ||| to embark ||| 0.00740741 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-0 ||| 135 668016 +a ||| to embellish ||| 0.166667 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to embrace ||| 0.0327869 0.229811 5.98788e-06 1.89163e-06 2.718 ||| 0-0 ||| 122 668016 +a ||| to emerge on ||| 0.5 0.0782999 1.49697e-06 1.01801e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| to emerge reflect , ||| 0.333333 0.229811 1.49697e-06 4.3147e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to emerge reflect ||| 0.333333 0.229811 1.49697e-06 3.61806e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to emerge ||| 0.00763359 0.229811 1.49697e-06 1.05791e-05 2.718 ||| 0-0 ||| 131 668016 +a ||| to emigrate ||| 0.05 0.229811 2.99394e-06 2.45211e-07 2.718 ||| 0-0 ||| 40 668016 +a ||| to emphasise ||| 0.000694686 0.229811 2.99394e-06 5.9201e-06 2.718 ||| 0-0 ||| 2879 668016 +a ||| to employ that ||| 1 0.229811 1.49697e-06 4.00699e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to employ ||| 0.0157068 0.236544 4.49091e-06 6.36148e-05 2.718 ||| 0-0 0-1 ||| 191 668016 +a ||| to enable them ||| 0.0162602 0.229811 2.99394e-06 9.26494e-08 2.718 ||| 0-0 ||| 123 668016 +a ||| to enable us to ||| 0.00442478 0.229811 1.49697e-06 8.84587e-09 2.718 ||| 0-0 ||| 226 668016 +a ||| to enable us ||| 0.00699301 0.229811 1.49697e-06 9.95504e-08 2.718 ||| 0-0 ||| 143 668016 +a ||| to enable ||| 0.00644841 0.229811 1.94606e-05 3.45397e-05 2.718 ||| 0-0 ||| 2016 668016 +a ||| to enabling ||| 0.0227273 0.229811 1.49697e-06 1.18402e-05 2.718 ||| 0-0 ||| 44 668016 +a ||| to encompass ||| 0.0655738 0.229811 5.98788e-06 1.12097e-06 2.718 ||| 0-0 ||| 61 668016 +a ||| to encourage ||| 0.00222152 0.229811 1.04788e-05 1.34866e-05 2.718 ||| 0-0 ||| 3151 668016 +a ||| to encouraging ||| 0.00840336 0.229811 1.49697e-06 8.33718e-06 2.718 ||| 0-0 ||| 119 668016 +a ||| to end up as ||| 0.111111 0.229811 1.49697e-06 5.30441e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| to end up ||| 0.0263158 0.229811 2.99394e-06 5.19816e-07 2.718 ||| 0-0 ||| 76 668016 +a ||| to end with ||| 0.0147059 0.143485 1.49697e-06 2.5446e-06 2.718 ||| 0-0 0-2 ||| 68 668016 +a ||| to end ||| 0.00193924 0.229811 4.49091e-06 0.000152416 2.718 ||| 0-0 ||| 1547 668016 +a ||| to ending ||| 0.0212766 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-0 ||| 47 668016 +a ||| to endorse ||| 0.0116279 0.229811 8.98182e-06 7.95185e-06 2.718 ||| 0-0 ||| 516 668016 +a ||| to endure , ||| 0.333333 0.229811 1.49697e-06 2.42296e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to endure ||| 0.0107527 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-0 ||| 93 668016 +a ||| to enforce , ||| 0.333333 0.229811 1.49697e-06 4.21929e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to enforce ||| 0.0037594 0.229811 2.99394e-06 3.53805e-06 2.718 ||| 0-0 ||| 532 668016 +a ||| to engage in a ||| 0.0131579 0.229811 1.49697e-06 1.61525e-08 2.718 ||| 0-0 ||| 76 668016 +a ||| to engage in on all ||| 0.5 0.229811 1.49697e-06 1.15216e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to engage in on ||| 0.5 0.229811 1.49697e-06 2.43823e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to engage in the ||| 0.0357143 0.229811 1.49697e-06 2.23714e-08 2.718 ||| 0-0 ||| 28 668016 +a ||| to engage in ||| 0.0196464 0.229811 1.49697e-05 3.64404e-07 2.718 ||| 0-0 ||| 509 668016 +a ||| to engage ||| 0.015873 0.229811 1.79636e-05 1.70247e-05 2.718 ||| 0-0 ||| 756 668016 +a ||| to engulf ||| 0.333333 0.229811 2.99394e-06 2.45211e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to enhance ||| 0.0032538 0.229811 4.49091e-06 3.92338e-06 2.718 ||| 0-0 ||| 922 668016 +a ||| to enjoy ||| 0.00909091 0.229811 5.98788e-06 1.36267e-05 2.718 ||| 0-0 ||| 440 668016 +a ||| to enlighten ||| 0.0526316 0.229811 2.99394e-06 4.90422e-07 2.718 ||| 0-0 ||| 38 668016 +a ||| to ensure , ||| 0.00787402 0.229811 1.49697e-06 1.8732e-05 2.718 ||| 0-0 ||| 127 668016 +a ||| to ensure mutual recognition ||| 0.0769231 0.229811 1.49697e-06 9.71039e-14 2.718 ||| 0-0 ||| 13 668016 +a ||| to ensure mutual ||| 0.125 0.229811 1.49697e-06 3.45566e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| to ensure that care is taken by ||| 0.5 0.229811 1.49697e-06 4.02235e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| to ensure that care is taken ||| 0.5 0.229811 1.49697e-06 7.66147e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| to ensure that care is ||| 0.5 0.229811 1.49697e-06 8.40534e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to ensure that care ||| 0.5 0.229811 1.49697e-06 2.68189e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to ensure that it complies in ||| 1 0.229811 1.49697e-06 1.40805e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to ensure that it complies ||| 0.5 0.229811 1.49697e-06 6.57829e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| to ensure that it ||| 0.00653595 0.229811 1.49697e-06 4.69878e-08 2.718 ||| 0-0 ||| 153 668016 +a ||| to ensure that water is ||| 1 0.229811 1.49697e-06 4.71196e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to ensure that water ||| 0.5 0.229811 1.49697e-06 1.50344e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to ensure that ||| 0.00154652 0.229811 2.69455e-05 2.64226e-06 2.718 ||| 0-0 ||| 11639 668016 +a ||| to ensure the latter ' ||| 1 0.229811 1.49697e-06 3.18314e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to ensure the latter ||| 1 0.229811 1.49697e-06 9.26705e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to ensure the ||| 0.000684463 0.229811 1.49697e-06 9.64313e-06 2.718 ||| 0-0 ||| 1461 668016 +a ||| to ensure this ||| 0.0235294 0.229811 2.99394e-06 1.01493e-06 2.718 ||| 0-0 ||| 85 668016 +a ||| to ensure ||| 0.00620163 0.229811 0.000181133 0.000157075 2.718 ||| 0-0 ||| 19511 668016 +a ||| to ensuring that ||| 0.00311526 0.229811 1.49697e-06 6.84724e-07 2.718 ||| 0-0 ||| 321 668016 +a ||| to ensuring ||| 0.0316206 0.229811 3.59273e-05 4.0705e-05 2.718 ||| 0-0 ||| 759 668016 +a ||| to enter into force ||| 0.00746269 0.229811 1.49697e-06 3.01781e-12 2.718 ||| 0-0 ||| 134 668016 +a ||| to enter into them ||| 0.5 0.229811 1.49697e-06 4.75616e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to enter into ||| 0.0134875 0.229811 1.04788e-05 1.7731e-08 2.718 ||| 0-0 ||| 519 668016 +a ||| to enter the European Union ||| 0.0285714 0.229811 1.49697e-06 1.97615e-12 2.718 ||| 0-0 ||| 35 668016 +a ||| to enter the European ||| 0.125 0.229811 1.49697e-06 3.5453e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| to enter the ||| 0.00352113 0.229811 1.49697e-06 1.06023e-06 2.718 ||| 0-0 ||| 284 668016 +a ||| to enter ||| 0.0234192 0.229811 2.99394e-05 1.72699e-05 2.718 ||| 0-0 ||| 854 668016 +a ||| to entirely ||| 0.25 0.229811 1.49697e-06 2.319e-05 2.718 ||| 0-0 ||| 4 668016 +a ||| to environment-friendly ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to environmental ||| 0.0535714 0.229811 4.49091e-06 9.56323e-06 2.718 ||| 0-0 ||| 56 668016 +a ||| to envisage at ||| 1 0.229811 1.49697e-06 1.48152e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to envisage ||| 0.0105263 0.229811 1.49697e-06 3.53805e-06 2.718 ||| 0-0 ||| 95 668016 +a ||| to equal opportunities ||| 0.0175439 0.229811 1.49697e-06 6.85274e-10 2.718 ||| 0-0 ||| 57 668016 +a ||| to equal ||| 0.00561798 0.229811 1.49697e-06 2.00373e-05 2.718 ||| 0-0 ||| 178 668016 +a ||| to equality ||| 0.00877193 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-0 ||| 114 668016 +a ||| to errors ||| 0.05 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| to escape ||| 0.00448431 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-0 ||| 223 668016 +a ||| to establish a requirement of ||| 1 0.229811 1.49697e-06 2.71154e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to establish a requirement ||| 0.25 0.229811 1.49697e-06 4.98776e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| to establish a ||| 0.00070922 0.229811 1.49697e-06 1.18474e-06 2.718 ||| 0-0 ||| 1410 668016 +a ||| to establish links once again ||| 1 0.229811 1.49697e-06 7.52666e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to establish links once ||| 1 0.229811 1.49697e-06 1.30152e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to establish links ||| 0.2 0.229811 1.49697e-06 3.18063e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| to establish the ||| 0.00234192 0.229811 1.49697e-06 1.64088e-06 2.718 ||| 0-0 ||| 427 668016 +a ||| to establish themselves ||| 0.0454545 0.229811 1.49697e-06 1.1485e-08 2.718 ||| 0-0 ||| 22 668016 +a ||| to establish ||| 0.00238302 0.229811 1.64667e-05 2.6728e-05 2.718 ||| 0-0 ||| 4616 668016 +a ||| to established ||| 0.166667 0.229811 1.49697e-06 5.24401e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| to establishing ||| 0.0135135 0.229811 5.98788e-06 1.63941e-05 2.718 ||| 0-0 ||| 296 668016 +a ||| to ethnic ||| 0.111111 0.229811 1.49697e-06 4.02847e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| to evade ||| 0.011236 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 89 668016 +a ||| to evaluate achievements ||| 1 0.229811 1.49697e-06 1.73049e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to evaluate them ||| 0.0625 0.229811 1.49697e-06 6.10772e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| to evaluate ||| 0.0048 0.229811 4.49091e-06 2.27696e-06 2.718 ||| 0-0 ||| 625 668016 +a ||| to even come to ||| 1 0.229811 1.49697e-06 1.60865e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| to even ||| 0.0379747 0.229811 4.49091e-06 0.000213159 2.718 ||| 0-0 ||| 79 668016 +a ||| to events in ||| 0.0555556 0.144287 1.49697e-06 1.53012e-06 2.718 ||| 0-0 0-2 ||| 18 668016 +a ||| to ever ||| 0.105263 0.229811 2.99394e-06 6.58217e-05 2.718 ||| 0-0 ||| 19 668016 +a ||| to every grouping in ||| 1 0.0587624 1.49697e-06 1.56353e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| to every regard ||| 1 0.229811 1.49697e-06 3.88073e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to every ||| 0.00558659 0.229811 2.99394e-06 5.69941e-05 2.718 ||| 0-0 ||| 358 668016 +a ||| to everyone ||| 0.00117371 0.229811 1.49697e-06 2.35753e-05 2.718 ||| 0-0 ||| 852 668016 +a ||| to everything ||| 0.00729927 0.229811 1.49697e-06 3.24029e-05 2.718 ||| 0-0 ||| 137 668016 +a ||| to evoke ||| 0.0666667 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| to evolve ||| 0.012987 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-0 ||| 77 668016 +a ||| to exactly ||| 0.0714286 0.229811 1.49697e-06 3.51703e-05 2.718 ||| 0-0 ||| 14 668016 +a ||| to examine ||| 0.0029985 0.229811 5.98788e-06 6.93597e-06 2.718 ||| 0-0 ||| 1334 668016 +a ||| to examining ||| 0.0294118 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-0 ||| 34 668016 +a ||| to exceed two hundred and ||| 1 0.229811 1.49697e-06 1.11446e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to exceed two hundred ||| 1 0.229811 1.49697e-06 8.89725e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to exceed two ||| 0.5 0.229811 1.49697e-06 5.63117e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to exceed ||| 0.0238095 0.229811 2.99394e-06 2.38205e-06 2.718 ||| 0-0 ||| 84 668016 +a ||| to excess ||| 0.0384615 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-0 ||| 26 668016 +a ||| to exchange ideas ||| 0.0909091 0.229811 1.49697e-06 3.42528e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| to exchange ||| 0.00308642 0.229811 1.49697e-06 9.70335e-06 2.718 ||| 0-0 ||| 324 668016 +a ||| to exclude ||| 0.00316456 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-0 ||| 316 668016 +a ||| to exclusive ||| 0.2 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to exclusively concentrating on ||| 1 0.229811 1.49697e-06 3.36673e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to exclusively concentrating ||| 1 0.229811 1.49697e-06 5.03173e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to exclusively ||| 0.666667 0.229811 2.99394e-06 4.65901e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to exempt them from ||| 1 0.229811 1.49697e-06 3.78303e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to exempt them ||| 0.5 0.229811 1.49697e-06 2.34912e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to exempt ||| 0.00961538 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 104 668016 +a ||| to exercise ||| 0.00539084 0.229811 5.98788e-06 2.16837e-05 2.718 ||| 0-0 ||| 742 668016 +a ||| to exert all possible ||| 0.333333 0.229811 1.49697e-06 1.38084e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to exert all ||| 0.111111 0.229811 1.49697e-06 1.72153e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| to exert ||| 0.00662252 0.229811 2.99394e-06 3.64314e-06 2.718 ||| 0-0 ||| 302 668016 +a ||| to exist , subject to ||| 0.25 0.229811 1.49697e-06 1.84547e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to exist , subject ||| 0.25 0.229811 1.49697e-06 2.07687e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to exist , ||| 0.015873 0.229811 1.49697e-06 3.84749e-06 2.718 ||| 0-0 ||| 63 668016 +a ||| to exist as a ||| 0.5 0.229811 1.49697e-06 1.4593e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to exist as ||| 0.142857 0.229811 1.49697e-06 3.29222e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to exist ||| 0.0138504 0.229811 7.48485e-06 3.22628e-05 2.718 ||| 0-0 ||| 361 668016 +a ||| to expand ||| 0.00249377 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 401 668016 +a ||| to expect ||| 0.0147679 0.229811 1.04788e-05 1.86711e-05 2.718 ||| 0-0 ||| 474 668016 +a ||| to experience ||| 0.00740741 0.229811 1.49697e-06 2.42058e-05 2.718 ||| 0-0 ||| 135 668016 +a ||| to explain ||| 0.00148478 0.229811 2.99394e-06 9.21293e-06 2.718 ||| 0-0 ||| 1347 668016 +a ||| to exploit the legal system to ||| 1 0.229811 1.49697e-06 5.24949e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to exploit the legal system ||| 1 0.229811 1.49697e-06 5.90772e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to exploit the legal ||| 1 0.229811 1.49697e-06 2.11822e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to exploit the ||| 0.00833333 0.229811 1.49697e-06 1.63443e-07 2.718 ||| 0-0 ||| 120 668016 +a ||| to exploit ||| 0.00465116 0.229811 2.99394e-06 2.66229e-06 2.718 ||| 0-0 ||| 430 668016 +a ||| to exploitative ||| 1 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to expose ||| 0.012987 0.209333 1.49697e-06 1.95118e-05 2.718 ||| 0-0 0-1 ||| 77 668016 +a ||| to express as their own ||| 1 0.229811 1.49697e-06 7.12957e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to express as their ||| 1 0.229811 1.49697e-06 4.20549e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to express as ||| 1 0.229811 1.49697e-06 3.62824e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to express more ||| 0.333333 0.229811 1.49697e-06 8.11984e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to express my appreciation to ||| 0.0333333 0.229811 1.49697e-06 1.04129e-13 2.718 ||| 0-0 0-4 ||| 30 668016 +a ||| to express my own ||| 0.111111 0.229811 1.49697e-06 3.87644e-11 2.718 ||| 0-0 ||| 9 668016 +a ||| to express my ||| 0.00173235 0.229811 5.98788e-06 2.28658e-08 2.718 ||| 0-0 ||| 2309 668016 +a ||| to express satisfaction ||| 0.0909091 0.229811 1.49697e-06 4.23112e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| to express solidarity ||| 0.0555556 0.229811 1.49697e-06 9.35113e-10 2.718 ||| 0-0 ||| 18 668016 +a ||| to express ||| 0.00353357 0.229811 2.54485e-05 3.55556e-05 2.718 ||| 0-0 ||| 4811 668016 +a ||| to extend my warm thanks ||| 0.0909091 0.229811 1.49697e-06 1.04843e-17 2.718 ||| 0-0 ||| 11 668016 +a ||| to extend my warm ||| 0.142857 0.229811 1.49697e-06 1.29436e-13 2.718 ||| 0-0 ||| 7 668016 +a ||| to extend my ||| 0.00666667 0.229811 1.49697e-06 9.73205e-09 2.718 ||| 0-0 ||| 150 668016 +a ||| to extend our sympathy to ||| 1 0.229811 1.49697e-06 2.87505e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| to extend ||| 0.00425985 0.229811 1.19758e-05 1.5133e-05 2.718 ||| 0-0 ||| 1878 668016 +a ||| to extending ||| 0.0136986 0.229811 1.49697e-06 7.18118e-06 2.718 ||| 0-0 ||| 73 668016 +a ||| to external ||| 0.0909091 0.229811 1.49697e-06 6.55064e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| to extradite ||| 0.0566038 0.229811 4.49091e-06 1.40121e-07 2.718 ||| 0-0 ||| 53 668016 +a ||| to extremely ||| 0.142857 0.229811 1.49697e-06 3.32787e-05 2.718 ||| 0-0 ||| 7 668016 +a ||| to eye in ||| 0.333333 0.0587624 1.49697e-06 3.03779e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| to eye ||| 0.0169492 0.229811 1.49697e-06 1.99322e-05 2.718 ||| 0-0 ||| 59 668016 +a ||| to face and thrown ||| 1 0.229811 1.49697e-06 2.03342e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to face and ||| 0.0769231 0.229811 1.49697e-06 7.34086e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| to face facts ||| 0.0625 0.229811 1.49697e-06 1.20141e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| to face shortly ||| 1 0.229811 1.49697e-06 7.14987e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to face squarely up ||| 0.5 0.229811 1.49697e-06 6.39597e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to face squarely ||| 0.5 0.229811 1.49697e-06 1.87537e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to face up ||| 0.00367647 0.229811 1.49697e-06 1.99874e-07 2.718 ||| 0-0 ||| 272 668016 +a ||| to face with a ||| 0.25 0.0571592 1.49697e-06 1.10012e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| to face with ||| 0.0740741 0.0906886 2.99394e-06 1.50575e-06 2.718 ||| 0-1 0-2 ||| 27 668016 +a ||| to face ||| 0.0128968 0.229811 1.94606e-05 5.86055e-05 2.718 ||| 0-0 ||| 1008 668016 +a ||| to facilitate ||| 0.0012012 0.229811 2.99394e-06 8.44227e-06 2.718 ||| 0-0 ||| 1665 668016 +a ||| to factor ||| 0.125 0.229811 1.49697e-06 1.70247e-05 2.718 ||| 0-0 ||| 8 668016 +a ||| to factual , ||| 1 0.229811 1.49697e-06 1.04438e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to factual ||| 1 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to fail ||| 0.0045045 0.229811 1.49697e-06 1.89163e-05 2.718 ||| 0-0 ||| 222 668016 +a ||| to failure ||| 0.00943396 0.229811 1.49697e-06 1.63941e-05 2.718 ||| 0-0 ||| 106 668016 +a ||| to fall by ||| 0.142857 0.229811 1.49697e-06 1.76004e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to fall in line with ||| 0.333333 0.0571592 1.49697e-06 8.94626e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| to fall ||| 0.00456621 0.229811 1.49697e-06 3.35239e-05 2.718 ||| 0-0 ||| 219 668016 +a ||| to families of ||| 0.142857 0.0188479 1.49697e-06 2.18148e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| to fan the ||| 0.125 0.229811 1.49697e-06 3.01079e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to fan ||| 0.0909091 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| to far ||| 0.0769231 0.229811 1.49697e-06 0.000239151 2.718 ||| 0-0 ||| 13 668016 +a ||| to fattening ||| 1 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to favour ||| 0.00947867 0.229811 2.99394e-06 0.000113323 2.718 ||| 0-0 ||| 211 668016 +a ||| to fear ||| 0.00606061 0.229811 1.49697e-06 7.70664e-06 2.718 ||| 0-0 ||| 165 668016 +a ||| to feast ||| 0.5 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to feed ||| 0.00913242 0.229811 2.99394e-06 6.55064e-06 2.718 ||| 0-0 ||| 219 668016 +a ||| to feel ||| 0.020202 0.229811 8.98182e-06 5.9236e-05 2.718 ||| 0-0 ||| 297 668016 +a ||| to ferries ||| 0.2 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to fewer powers ||| 0.5 0.229811 1.49697e-06 3.66121e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to fewer ||| 0.0769231 0.229811 2.99394e-06 7.42639e-06 2.718 ||| 0-0 ||| 26 668016 +a ||| to fifteen ||| 0.0277778 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-0 ||| 36 668016 +a ||| to fight against , ||| 1 0.229811 1.49697e-06 5.49212e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to fight against ||| 0.00404858 0.229811 1.49697e-06 4.60537e-09 2.718 ||| 0-0 ||| 247 668016 +a ||| to fight every ||| 0.333333 0.229811 1.49697e-06 3.14037e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to fight for ||| 0.00462963 0.0683377 1.49697e-06 1.80413e-07 2.718 ||| 0-2 ||| 216 668016 +a ||| to fight ||| 0.00236128 0.229811 5.98788e-06 1.93016e-05 2.718 ||| 0-0 ||| 1694 668016 +a ||| to fill it that ||| 1 0.229811 1.49697e-06 9.01193e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to fill it ||| 0.2 0.229811 1.49697e-06 5.35736e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to fill ||| 0.003861 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-0 ||| 259 668016 +a ||| to finally ||| 0.0245902 0.229811 4.49091e-06 4.12305e-05 2.718 ||| 0-0 ||| 122 668016 +a ||| to finance ||| 0.00169492 0.229811 2.99394e-06 6.55064e-06 2.718 ||| 0-0 ||| 1180 668016 +a ||| to financial ||| 0.0222222 0.229811 1.49697e-06 4.27368e-05 2.718 ||| 0-0 ||| 45 668016 +a ||| to financing ||| 0.0075188 0.115004 1.49697e-06 3.15271e-07 2.718 ||| 0-0 0-1 ||| 133 668016 +a ||| to find a few ||| 0.5 0.229811 1.49697e-06 9.06138e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to find a ||| 0.00120337 0.229811 2.99394e-06 5.16907e-06 2.718 ||| 0-0 ||| 1662 668016 +a ||| to find fish ||| 0.25 0.229811 1.49697e-06 3.85997e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to find its way ||| 0.0909091 0.229811 1.49697e-06 3.58136e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| to find its ||| 0.0344828 0.229811 1.49697e-06 1.66142e-07 2.718 ||| 0-0 ||| 29 668016 +a ||| to find one ||| 0.125 0.229811 1.49697e-06 4.86053e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| to find ourselves facing ||| 0.333333 0.229811 1.49697e-06 1.97718e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| to find ourselves ||| 0.037037 0.229811 1.49697e-06 3.70954e-08 2.718 ||| 0-0 ||| 27 668016 +a ||| to find out what is really happening ||| 0.5 0.229811 1.49697e-06 5.16662e-19 2.718 ||| 0-0 ||| 2 668016 +a ||| to find out what is really ||| 0.5 0.229811 1.49697e-06 9.51496e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| to find out what is ||| 0.0909091 0.229811 1.49697e-06 1.96428e-11 2.718 ||| 0-0 ||| 11 668016 +a ||| to find out what ||| 0.00934579 0.229811 1.49697e-06 6.26742e-10 2.718 ||| 0-0 ||| 107 668016 +a ||| to find out ||| 0.00410678 0.229811 2.99394e-06 4.46684e-07 2.718 ||| 0-0 ||| 487 668016 +a ||| to find solutions ||| 0.00444444 0.229811 1.49697e-06 2.22735e-09 2.718 ||| 0-0 ||| 225 668016 +a ||| to find that , ||| 0.2 0.229811 1.49697e-06 2.33937e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to find that ||| 0.026087 0.229811 4.49091e-06 1.96166e-06 2.718 ||| 0-0 ||| 115 668016 +a ||| to find the best model is ||| 1 0.229811 1.49697e-06 1.19644e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to find the best model ||| 0.5 0.229811 1.49697e-06 3.81748e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| to find the best ||| 0.0232558 0.229811 1.49697e-06 9.91553e-10 2.718 ||| 0-0 ||| 43 668016 +a ||| to find the ||| 0.00234192 0.229811 1.49697e-06 7.15923e-06 2.718 ||| 0-0 ||| 427 668016 +a ||| to find ||| 0.00709516 0.229811 5.0897e-05 0.000116615 2.718 ||| 0-0 ||| 4792 668016 +a ||| to finding a ||| 0.0102041 0.229811 1.49697e-06 8.2761e-07 2.718 ||| 0-0 ||| 98 668016 +a ||| to finding ||| 0.0151515 0.229811 5.98788e-06 1.86711e-05 2.718 ||| 0-0 ||| 264 668016 +a ||| to fire ||| 0.0416667 0.229811 1.49697e-06 6.30543e-06 2.718 ||| 0-0 ||| 24 668016 +a ||| to firmly request ||| 0.333333 0.229811 1.49697e-06 1.01562e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to firmly ||| 0.0588235 0.229811 1.49697e-06 1.32414e-05 2.718 ||| 0-0 ||| 17 668016 +a ||| to first ||| 0.0196078 0.229811 1.49697e-06 0.000188602 2.718 ||| 0-0 ||| 51 668016 +a ||| to fisheries ||| 0.0126582 0.229811 1.49697e-06 9.21293e-06 2.718 ||| 0-0 ||| 79 668016 +a ||| to fishing and ||| 0.1 0.229811 1.49697e-06 1.75075e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| to fishing with ||| 0.333333 0.229811 1.49697e-06 8.93761e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to fishing ||| 0.025974 0.229811 2.99394e-06 1.3977e-05 2.718 ||| 0-0 ||| 77 668016 +a ||| to fit ||| 0.0337079 0.229811 4.49091e-06 1.13498e-05 2.718 ||| 0-0 ||| 89 668016 +a ||| to flee ||| 0.0230769 0.229811 4.49091e-06 1.26109e-06 2.718 ||| 0-0 ||| 130 668016 +a ||| to fly into ||| 0.333333 0.229811 1.49697e-06 4.13603e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to fly ||| 0.00833333 0.229811 1.49697e-06 4.02847e-06 2.718 ||| 0-0 ||| 120 668016 +a ||| to focus on the quality of olive ||| 1 0.0782999 1.49697e-06 2.61869e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| to focus on the quality of ||| 0.5 0.0782999 1.49697e-06 4.29293e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| to focus on the quality ||| 0.333333 0.0782999 1.49697e-06 7.89665e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| to focus on the ||| 0.00362319 0.0782999 1.49697e-06 1.60175e-08 2.718 ||| 0-2 ||| 276 668016 +a ||| to focus on ||| 0.00403633 0.0782999 5.98788e-06 2.60907e-07 2.718 ||| 0-2 ||| 991 668016 +a ||| to focus ||| 0.00246457 0.229811 5.98788e-06 2.71133e-05 2.718 ||| 0-0 ||| 1623 668016 +a ||| to follow its ||| 0.125 0.229811 1.49697e-06 4.94084e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to follow suit and ||| 0.333333 0.229811 1.49697e-06 4.3874e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| to follow suit ||| 0.027027 0.229811 1.49697e-06 3.50267e-10 2.718 ||| 0-0 ||| 37 668016 +a ||| to follow that up ||| 0.5 0.0008521 1.49697e-06 2.04824e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| to follow that ||| 0.0555556 0.0008521 1.49697e-06 6.00569e-09 2.718 ||| 0-2 ||| 18 668016 +a ||| to follow through ||| 0.0416667 0.229811 1.49697e-06 1.59631e-08 2.718 ||| 0-0 ||| 24 668016 +a ||| to follow up by ||| 1 0.0337966 1.49697e-06 2.46842e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| to follow ||| 0.006691 0.229811 1.64667e-05 3.46799e-05 2.718 ||| 0-0 ||| 1644 668016 +a ||| to fool ||| 0.1 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| to foot ||| 0.0307692 0.229811 2.99394e-06 7.81173e-06 2.718 ||| 0-0 ||| 65 668016 +a ||| to football ||| 0.0833333 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| to for ||| 0.0740741 0.149075 2.99394e-06 0.0129081 2.718 ||| 0-0 0-1 ||| 27 668016 +a ||| to force any truck to ||| 1 0.229811 1.49697e-06 5.60798e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| to force her to ||| 1 0.229811 1.49697e-06 1.44154e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| to force of ||| 0.5 0.229811 1.49697e-06 3.24125e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to force through , at ||| 0.333333 0.229811 1.49697e-06 1.37045e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to force through , ||| 0.333333 0.229811 1.49697e-06 3.27279e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to force through ||| 0.0666667 0.229811 1.49697e-06 2.74437e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| to force us into ||| 0.5 0.229811 1.49697e-06 1.76429e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to force us ||| 0.0909091 0.229811 1.49697e-06 1.71841e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| to force ||| 0.00860215 0.229811 5.98788e-06 5.96213e-05 2.718 ||| 0-0 ||| 465 668016 +a ||| to forget ||| 0.0041841 0.229811 1.49697e-06 6.55064e-06 2.718 ||| 0-0 ||| 239 668016 +a ||| to form ||| 0.0154185 0.229811 1.04788e-05 0.000159457 2.718 ||| 0-0 ||| 454 668016 +a ||| to forms of ||| 0.0833333 0.229811 1.49697e-06 1.69871e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| to forms ||| 0.0909091 0.229811 1.49697e-06 3.12469e-05 2.718 ||| 0-0 ||| 11 668016 +a ||| to forward ||| 0.0352941 0.229811 4.49091e-06 0.000194908 2.718 ||| 0-0 ||| 85 668016 +a ||| to foster ||| 0.00401606 0.229811 2.99394e-06 2.76738e-06 2.718 ||| 0-0 ||| 498 668016 +a ||| to free themselves ||| 0.1 0.229811 1.49697e-06 1.75512e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| to free ||| 0.00683371 0.229811 4.49091e-06 4.08452e-05 2.718 ||| 0-0 ||| 439 668016 +a ||| to fruit ||| 0.166667 0.229811 1.49697e-06 4.79913e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| to fulfil ||| 0.00297324 0.229811 4.49091e-06 8.96772e-06 2.718 ||| 0-0 ||| 1009 668016 +a ||| to fulfilling ||| 0.0147059 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-0 ||| 68 668016 +a ||| to fulfilment ||| 0.125 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| to full ||| 0.00970874 0.229811 1.49697e-06 6.42803e-05 2.718 ||| 0-0 ||| 103 668016 +a ||| to function ||| 0.00488998 0.229811 2.99394e-06 8.68748e-06 2.718 ||| 0-0 ||| 409 668016 +a ||| to fund ||| 0.0058997 0.229811 5.98788e-06 1.33465e-05 2.718 ||| 0-0 ||| 678 668016 +a ||| to further developing ||| 0.111111 0.229811 1.49697e-06 9.19303e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| to further ||| 0.00744417 0.229811 8.98182e-06 0.000169301 2.718 ||| 0-0 ||| 806 668016 +a ||| to gain an understanding ||| 0.2 0.229811 1.49697e-06 2.93654e-12 2.718 ||| 0-0 ||| 5 668016 +a ||| to gain an ||| 0.047619 0.229811 1.49697e-06 8.68798e-08 2.718 ||| 0-0 ||| 21 668016 +a ||| to gain ground ||| 0.25 0.229811 1.49697e-06 2.28698e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to gain ||| 0.0175659 0.229811 2.09576e-05 1.95468e-05 2.718 ||| 0-0 ||| 797 668016 +a ||| to gather ||| 0.00699301 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-0 ||| 143 668016 +a ||| to gathering statistics ||| 1 0.229811 1.49697e-06 2.72395e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to gathering ||| 0.0833333 0.229811 1.49697e-06 2.52217e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| to generate more ||| 0.0769231 0.229811 1.49697e-06 8.63982e-09 2.718 ||| 0-0 ||| 13 668016 +a ||| to generate ||| 0.00657895 0.229811 2.99394e-06 3.78326e-06 2.718 ||| 0-0 ||| 304 668016 +a ||| to get an idea ||| 0.142857 0.229811 1.49697e-06 1.52616e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| to get an ||| 0.0128205 0.229811 1.49697e-06 6.80714e-07 2.718 ||| 0-0 ||| 78 668016 +a ||| to get away with ||| 0.0714286 0.229811 1.49697e-06 3.11525e-10 2.718 ||| 0-0 ||| 14 668016 +a ||| to get away ||| 0.0731707 0.229811 4.49091e-06 4.87176e-08 2.718 ||| 0-0 ||| 41 668016 +a ||| to get back ||| 0.0183486 0.229811 2.99394e-06 1.0301e-07 2.718 ||| 0-0 ||| 109 668016 +a ||| to get bogged down in ||| 0.166667 0.0587624 1.49697e-06 1.10803e-14 2.718 ||| 0-4 ||| 6 668016 +a ||| to get butter on ||| 1 0.0782999 1.49697e-06 2.65275e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| to get closer to ||| 0.047619 0.229811 1.49697e-06 2.89867e-09 2.718 ||| 0-3 ||| 21 668016 +a ||| to get down to ||| 0.0208333 0.229811 1.49697e-06 9.5003e-09 2.718 ||| 0-3 ||| 48 668016 +a ||| to get in on the back ||| 1 0.0587624 1.49697e-06 6.44887e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| to get in on the ||| 0.5 0.0587624 1.49697e-06 9.58798e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| to get in on ||| 0.5 0.0587624 1.49697e-06 1.56177e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| to get in the way of ||| 0.5 0.229811 1.49697e-06 2.3584e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to get in the way ||| 0.333333 0.229811 1.49697e-06 4.33816e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to get in the ||| 0.333333 0.229811 1.49697e-06 2.01251e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to get in ||| 0.08 0.229811 2.99394e-06 3.27814e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| to get into difficulty - ||| 1 0.107578 1.49697e-06 1.60225e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| to get into difficulty ||| 0.5 0.107578 1.49697e-06 4.24763e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| to get into ||| 0.0119048 0.107578 1.49697e-06 2.35979e-07 2.718 ||| 0-2 ||| 84 668016 +a ||| to get involved ||| 0.00588235 0.229811 1.49697e-06 5.29599e-08 2.718 ||| 0-0 ||| 170 668016 +a ||| to get it back into ||| 0.333333 0.107578 1.49697e-06 2.82254e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| to get lost in ||| 0.25 0.0587624 1.49697e-06 1.32812e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| to get more ||| 0.0222222 0.229811 1.49697e-06 3.49753e-07 2.718 ||| 0-0 ||| 45 668016 +a ||| to get on with the job ||| 0.0625 0.229811 1.49697e-06 3.14182e-14 2.718 ||| 0-0 ||| 16 668016 +a ||| to get on with the ||| 0.0384615 0.229811 1.49697e-06 4.02282e-10 2.718 ||| 0-0 ||| 26 668016 +a ||| to get on with ||| 0.0172414 0.229811 1.49697e-06 6.55269e-09 2.718 ||| 0-0 ||| 58 668016 +a ||| to get on ||| 0.010989 0.229811 1.49697e-06 1.02474e-06 2.718 ||| 0-0 ||| 91 668016 +a ||| to get people back to ||| 0.25 0.229811 1.49697e-06 8.05672e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| to get people back ||| 0.2 0.229811 1.49697e-06 9.06693e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| to get people ||| 0.0454545 0.229811 1.49697e-06 1.34804e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| to get rid ||| 0.00497512 0.229811 1.49697e-06 3.58375e-09 2.718 ||| 0-0 ||| 201 668016 +a ||| to get that done ||| 0.5 0.229811 1.49697e-06 1.17477e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to get that ||| 0.0294118 0.229811 1.49697e-06 2.57626e-06 2.718 ||| 0-0 ||| 34 668016 +a ||| to get them to champion ||| 0.5 0.229811 1.49697e-06 4.01547e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| to get them to ||| 0.0666667 0.229811 1.49697e-06 3.65042e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| to get them ||| 0.0227273 0.229811 1.49697e-06 4.10815e-07 2.718 ||| 0-0 ||| 44 668016 +a ||| to get there ||| 0.0217391 0.229811 1.49697e-06 4.69456e-07 2.718 ||| 0-0 ||| 46 668016 +a ||| to get to ||| 0.008 0.229811 2.99394e-06 1.36088e-05 2.718 ||| 0-0 ||| 250 668016 +a ||| to get together with ||| 0.111111 0.143485 1.49697e-06 1.53567e-09 2.718 ||| 0-0 0-3 ||| 9 668016 +a ||| to get used ||| 0.0294118 0.229811 1.49697e-06 6.57021e-08 2.718 ||| 0-0 ||| 34 668016 +a ||| to get wisdom ||| 1 0.229811 1.49697e-06 8.88281e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to get ||| 0.0147096 0.229811 8.68243e-05 0.000153152 2.718 ||| 0-0 ||| 3943 668016 +a ||| to getting around with ||| 0.5 0.229811 1.49697e-06 3.46704e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to getting around ||| 0.5 0.229811 1.49697e-06 5.42191e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to getting from ||| 1 0.229811 1.49697e-06 6.55514e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to getting ||| 0.0537634 0.229811 7.48485e-06 4.0705e-05 2.718 ||| 0-0 ||| 93 668016 +a ||| to give Member ||| 1 0.229811 1.49697e-06 1.09389e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to give a ||| 0.00310559 0.229811 2.99394e-06 9.4096e-06 2.718 ||| 0-0 ||| 644 668016 +a ||| to give account for ||| 1 0.229811 1.49697e-06 4.69068e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to give account ||| 0.2 0.229811 1.49697e-06 6.10313e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to give any ||| 0.0333333 0.229811 1.49697e-06 3.21014e-07 2.718 ||| 0-0 ||| 30 668016 +a ||| to give due ||| 0.0526316 0.229811 1.49697e-06 5.8675e-08 2.718 ||| 0-0 ||| 19 668016 +a ||| to give further ||| 0.0666667 0.229811 1.49697e-06 1.02596e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| to give in to ||| 0.0204082 0.0587624 1.49697e-06 2.87485e-07 2.718 ||| 0-2 ||| 49 668016 +a ||| to give in ||| 0.0196078 0.0587624 1.49697e-06 3.23533e-06 2.718 ||| 0-2 ||| 51 668016 +a ||| to give it back to them ||| 0.25 0.229811 1.49697e-06 6.05205e-13 2.718 ||| 0-0 ||| 4 668016 +a ||| to give it back to ||| 0.25 0.229811 1.49697e-06 2.25621e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to give it back ||| 0.25 0.229811 1.49697e-06 2.53911e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to give it shape ||| 0.25 0.229811 1.49697e-06 2.28392e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to give it ||| 0.0175439 0.229811 4.49091e-06 3.77507e-06 2.718 ||| 0-0 ||| 171 668016 +a ||| to give me ||| 0.0166667 0.229811 1.49697e-06 1.27815e-07 2.718 ||| 0-0 ||| 60 668016 +a ||| to give my ||| 0.00892857 0.229811 1.49697e-06 1.36519e-07 2.718 ||| 0-0 ||| 112 668016 +a ||| to give our ||| 0.00746269 0.229811 1.49697e-06 2.92823e-07 2.718 ||| 0-0 ||| 134 668016 +a ||| to give ourselves enough ||| 0.2 0.229811 1.49697e-06 1.11555e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| to give ourselves ||| 0.0344828 0.229811 1.49697e-06 6.75271e-08 2.718 ||| 0-0 ||| 29 668016 +a ||| to give people ||| 0.03125 0.229811 1.49697e-06 1.86851e-07 2.718 ||| 0-0 ||| 32 668016 +a ||| to give the ||| 0.00246002 0.229811 2.99394e-06 1.30324e-05 2.718 ||| 0-0 ||| 813 668016 +a ||| to give them ||| 0.00401606 0.229811 1.49697e-06 5.69427e-07 2.718 ||| 0-0 ||| 249 668016 +a ||| to give to ||| 0.0365854 0.229811 4.49091e-06 1.88631e-05 2.718 ||| 0-2 ||| 82 668016 +a ||| to give up ||| 0.0119048 0.229811 4.49091e-06 7.2399e-07 2.718 ||| 0-0 ||| 252 668016 +a ||| to give us ||| 0.00302115 0.229811 1.49697e-06 6.11841e-07 2.718 ||| 0-0 ||| 331 668016 +a ||| to give way ||| 0.0327869 0.229811 2.99394e-06 4.57597e-07 2.718 ||| 0-0 ||| 61 668016 +a ||| to give ||| 0.0117468 0.229811 0.000127242 0.000212283 2.718 ||| 0-0 ||| 7236 668016 +a ||| to giving ||| 0.0162602 0.183166 2.99394e-06 0.000353314 2.718 ||| 0-0 0-1 ||| 123 668016 +a ||| to glorify ||| 0.0909091 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| to go - but ||| 1 0.229811 1.49697e-06 5.2809e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to go - ||| 0.25 0.229811 1.49697e-06 7.72739e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to go about it ||| 0.0277778 0.229811 1.49697e-06 5.1523e-09 2.718 ||| 0-0 ||| 36 668016 +a ||| to go about their business ||| 0.142857 0.229811 1.49697e-06 4.19444e-14 2.718 ||| 0-0 ||| 7 668016 +a ||| to go about their ||| 0.166667 0.229811 1.49697e-06 3.35824e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| to go about ||| 0.0394737 0.229811 4.49091e-06 2.89728e-07 2.718 ||| 0-0 ||| 76 668016 +a ||| to go after ||| 1 0.229811 1.49697e-06 5.55161e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to go ahead and ||| 0.0555556 0.229811 1.49697e-06 2.79695e-10 2.718 ||| 0-0 ||| 18 668016 +a ||| to go ahead nevertheless ||| 0.25 0.229811 1.49697e-06 2.73981e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| to go ahead ||| 0.0134228 0.229811 2.99394e-06 2.23293e-08 2.718 ||| 0-0 ||| 149 668016 +a ||| to go all out ||| 1 0.229811 1.49697e-06 3.70794e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to go all ||| 0.5 0.229811 1.49697e-06 9.68028e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to go along with this ||| 0.0625 0.229811 1.49697e-06 1.47699e-12 2.718 ||| 0-0 ||| 16 668016 +a ||| to go along with ||| 0.025974 0.229811 2.99394e-06 2.28587e-10 2.718 ||| 0-0 ||| 77 668016 +a ||| to go along ||| 0.0416667 0.229811 4.49091e-06 3.57474e-08 2.718 ||| 0-0 ||| 72 668016 +a ||| to go and draw a picture of ||| 1 0.229811 1.49697e-06 2.50383e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to go and draw a picture ||| 1 0.229811 1.49697e-06 4.60567e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to go and draw a ||| 1 0.229811 1.49697e-06 1.34669e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to go and draw ||| 1 0.229811 1.49697e-06 3.03816e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to go and ||| 0.029703 0.229811 4.49091e-06 2.56601e-06 2.718 ||| 0-0 ||| 101 668016 +a ||| to go back to ||| 0.00684932 0.229811 1.49697e-06 1.22435e-08 2.718 ||| 0-3 ||| 146 668016 +a ||| to go back ||| 0.00436681 0.229811 1.49697e-06 1.37786e-07 2.718 ||| 0-0 ||| 229 668016 +a ||| to go beyond ||| 0.00357143 0.229811 1.49697e-06 1.53437e-08 2.718 ||| 0-0 ||| 280 668016 +a ||| to go by ||| 0.0416667 0.229811 1.49697e-06 1.07552e-06 2.718 ||| 0-0 ||| 24 668016 +a ||| to go down ||| 0.018018 0.229811 2.99394e-06 1.4301e-07 2.718 ||| 0-0 ||| 111 668016 +a ||| to go for ||| 0.0181818 0.0683377 1.49697e-06 1.91481e-06 2.718 ||| 0-2 ||| 55 668016 +a ||| to go forward with ||| 0.0588235 0.229811 1.49697e-06 7.28858e-10 2.718 ||| 0-0 ||| 17 668016 +a ||| to go forward ||| 0.0142857 0.229811 1.49697e-06 1.13982e-07 2.718 ||| 0-0 ||| 70 668016 +a ||| to go hand in hand ||| 0.0714286 0.0587624 1.49697e-06 4.91087e-13 2.718 ||| 0-3 ||| 14 668016 +a ||| to go hand in ||| 0.0526316 0.0587624 1.49697e-06 1.23824e-09 2.718 ||| 0-3 ||| 19 668016 +a ||| to go in ||| 0.00925926 0.229811 1.49697e-06 4.38485e-06 2.718 ||| 0-0 ||| 108 668016 +a ||| to go into ||| 0.0107527 0.107578 4.49091e-06 3.15647e-07 2.718 ||| 0-2 ||| 279 668016 +a ||| to go it ||| 0.0714286 0.229811 1.49697e-06 3.643e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| to go off ||| 0.0588235 0.229811 1.49697e-06 8.33765e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| to go on and ||| 0.333333 0.0782999 1.49697e-06 2.46923e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| to go on ||| 0.0110497 0.0782999 2.99394e-06 1.9713e-06 2.718 ||| 0-2 ||| 181 668016 +a ||| to go some way ||| 0.166667 0.229811 1.49697e-06 4.81022e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| to go some ||| 0.166667 0.229811 1.49697e-06 2.2315e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to go through ||| 0.0114286 0.229811 2.99394e-06 9.42954e-08 2.718 ||| 0-0 ||| 175 668016 +a ||| to go to ||| 0.0100402 0.229811 7.48485e-06 1.82032e-05 2.718 ||| 0-2 ||| 498 668016 +a ||| to go totally ||| 1 0.229811 1.49697e-06 8.8498e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to go unpunished . ||| 0.2 0.229811 1.49697e-06 2.48204e-12 2.718 ||| 0-0 ||| 5 668016 +a ||| to go unpunished ||| 0.111111 0.229811 1.49697e-06 8.19426e-10 2.718 ||| 0-0 ||| 9 668016 +a ||| to go ||| 0.0166419 0.229811 8.38303e-05 0.000204856 2.718 ||| 0-0 ||| 3365 668016 +a ||| to going down ||| 0.5 0.229811 1.49697e-06 2.09282e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to going ||| 0.0666667 0.229811 1.49697e-06 0.000299788 2.718 ||| 0-0 ||| 15 668016 +a ||| to good use in ||| 0.2 0.0587624 1.49697e-06 1.34615e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| to good ||| 0.015625 0.229811 4.49091e-06 0.000181666 2.718 ||| 0-0 ||| 192 668016 +a ||| to government ||| 0.0952381 0.229811 2.99394e-06 2.79891e-05 2.718 ||| 0-0 ||| 21 668016 +a ||| to grant the ||| 0.0120482 0.229811 1.49697e-06 6.81729e-07 2.718 ||| 0-0 ||| 83 668016 +a ||| to grant ||| 0.00609756 0.229811 8.98182e-06 1.11046e-05 2.718 ||| 0-0 ||| 984 668016 +a ||| to grapple ||| 0.05 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| to grasp the ||| 0.0222222 0.229811 1.49697e-06 1.69895e-07 2.718 ||| 0-0 ||| 45 668016 +a ||| to grasp ||| 0.0145985 0.229811 2.99394e-06 2.76738e-06 2.718 ||| 0-0 ||| 137 668016 +a ||| to grass and ||| 1 0.229811 1.49697e-06 1.88677e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to grass roots and ||| 0.5 0.229811 1.49697e-06 2.71695e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to grass roots ||| 0.333333 0.229811 1.49697e-06 2.16907e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to grass ||| 0.6 0.229811 4.49091e-06 1.5063e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to great ||| 0.0116279 0.229811 1.49697e-06 0.000137669 2.718 ||| 0-0 ||| 86 668016 +a ||| to greater ||| 0.00235294 0.229811 1.49697e-06 4.61347e-05 2.718 ||| 0-0 ||| 425 668016 +a ||| to grips with ||| 0.00684932 0.0571592 1.49697e-06 2.56645e-08 2.718 ||| 0-2 ||| 146 668016 +a ||| to ground with respect to ||| 1 0.229811 1.49697e-06 1.00744e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| to grow ||| 0.00218818 0.229811 1.49697e-06 8.58239e-06 2.718 ||| 0-0 ||| 457 668016 +a ||| to guarantee equal education rights to children ||| 1 0.229811 1.49697e-06 5.42764e-23 2.718 ||| 0-0 ||| 1 668016 +a ||| to guarantee equal education rights to ||| 1 0.229811 1.49697e-06 7.28542e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| to guarantee equal education rights ||| 1 0.229811 1.49697e-06 8.19893e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| to guarantee equal education ||| 1 0.229811 1.49697e-06 4.09742e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to guarantee equal ||| 0.02 0.229811 1.49697e-06 1.21225e-09 2.718 ||| 0-0 ||| 50 668016 +a ||| to guarantee ||| 0.00146028 0.229811 7.48485e-06 2.11932e-05 2.718 ||| 0-0 ||| 3424 668016 +a ||| to half ||| 0.0285714 0.229811 1.49697e-06 1.00887e-05 2.718 ||| 0-0 ||| 35 668016 +a ||| to hand ||| 0.0333333 0.229811 5.98788e-06 0.00013893 2.718 ||| 0-0 ||| 120 668016 +a ||| to handle ||| 0.00297619 0.229811 1.49697e-06 4.16859e-06 2.718 ||| 0-0 ||| 336 668016 +a ||| to happen , ||| 0.0112994 0.229811 2.99394e-06 4.54095e-06 2.718 ||| 0-0 ||| 177 668016 +a ||| to happen at the ||| 0.166667 0.229811 1.49697e-06 9.78873e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to happen at ||| 0.0666667 0.229811 1.49697e-06 1.59447e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| to happen over ||| 0.333333 0.229811 1.49697e-06 1.83345e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to happen ||| 0.00992282 0.229811 1.34727e-05 3.80778e-05 2.718 ||| 0-0 ||| 907 668016 +a ||| to harm ||| 0.025641 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-0 ||| 39 668016 +a ||| to harmonize ||| 0.00591716 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 169 668016 +a ||| to harvest them ||| 1 0.229811 1.49697e-06 4.04049e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to harvest ||| 0.111111 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| to haunt us ||| 0.0714286 0.229811 1.49697e-06 1.41349e-09 2.718 ||| 0-0 ||| 14 668016 +a ||| to haunt ||| 0.0833333 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| to have , ||| 0.0232558 0.229811 1.49697e-06 0.000499622 2.718 ||| 0-0 ||| 43 668016 +a ||| to have a better time of ||| 1 0.229811 1.49697e-06 2.81593e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to have a better time ||| 1 0.229811 1.49697e-06 5.17976e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to have a better ||| 0.0588235 0.229811 1.49697e-06 3.15512e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| to have a decision on ||| 0.5 0.0782999 1.49697e-06 2.81095e-10 2.718 ||| 0-4 ||| 2 668016 +a ||| to have a negative effect on ||| 0.25 0.0782999 1.49697e-06 1.39498e-14 2.718 ||| 0-5 ||| 4 668016 +a ||| to have a period of reflection and ||| 1 0.229811 1.49697e-06 3.02314e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to have a period of reflection ||| 0.333333 0.229811 1.49697e-06 2.41352e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| to have a period of ||| 0.142857 0.229811 1.49697e-06 1.76169e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| to have a period ||| 0.125 0.229811 1.49697e-06 3.24054e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to have a seat , as the ||| 1 0.229811 1.49697e-06 2.24756e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to have a seat , as ||| 1 0.229811 1.49697e-06 3.66101e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to have a seat , ||| 0.5 0.229811 1.49697e-06 3.58768e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to have a seat ||| 0.2 0.229811 1.49697e-06 3.00841e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to have a single currency but not ||| 1 0.229811 1.49697e-06 2.57171e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| to have a single currency but ||| 1 0.229811 1.49697e-06 7.53262e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to have a single currency ||| 0.333333 0.229811 1.49697e-06 1.10223e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| to have a single ||| 0.0384615 0.229811 1.49697e-06 2.94713e-08 2.718 ||| 0-0 ||| 26 668016 +a ||| to have a ||| 0.00666667 0.229811 2.54485e-05 0.000185705 2.718 ||| 0-0 ||| 2550 668016 +a ||| to have access to ||| 0.00543478 0.229811 1.49697e-06 3.20156e-08 2.718 ||| 0-3 ||| 184 668016 +a ||| to have all those ||| 0.5 0.229811 1.49697e-06 1.43352e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to have all ||| 0.0212766 0.229811 1.49697e-06 1.97972e-05 2.718 ||| 0-0 ||| 47 668016 +a ||| to have an impact on ||| 0.0416667 0.0782999 1.49697e-06 1.47652e-11 2.718 ||| 0-4 ||| 24 668016 +a ||| to have an overview so that we ||| 1 0.229811 1.49697e-06 4.35835e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to have an overview so that ||| 1 0.229811 1.49697e-06 3.83918e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to have an overview so ||| 1 0.229811 1.49697e-06 2.28229e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to have an overview ||| 0.142857 0.229811 1.49697e-06 1.00555e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| to have an ||| 0.00842105 0.229811 5.98788e-06 1.86212e-05 2.718 ||| 0-0 ||| 475 668016 +a ||| to have any impact on ||| 0.5 0.0782999 1.49697e-06 5.02348e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| to have anything ||| 0.25 0.229811 2.99394e-06 6.57338e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| to have been to seek to ||| 1 0.229811 1.49697e-06 7.67694e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| to have been ||| 0.0145455 0.229811 1.19758e-05 1.39897e-05 2.718 ||| 0-0 ||| 550 668016 +a ||| to have clearly ||| 0.25 0.229811 1.49697e-06 7.64591e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to have continued ||| 0.25 0.229811 1.49697e-06 1.43282e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to have done ||| 0.0465116 0.229811 2.99394e-06 1.91043e-06 2.718 ||| 0-0 ||| 43 668016 +a ||| to have great ||| 0.142857 0.229811 1.49697e-06 1.64649e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| to have had ||| 0.025641 0.229811 2.99394e-06 4.20504e-06 2.718 ||| 0-0 ||| 78 668016 +a ||| to have held ||| 0.142857 0.229811 1.49697e-06 1.06875e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| to have it checked ||| 0.333333 0.229811 1.49697e-06 5.66226e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to have it ||| 0.0240964 0.229811 2.99394e-06 7.45034e-05 2.718 ||| 0-0 ||| 83 668016 +a ||| to have links with the ||| 0.333333 0.229811 1.49697e-06 1.95718e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to have links with ||| 0.25 0.229811 1.49697e-06 3.18801e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to have links ||| 0.25 0.229811 1.49697e-06 4.98555e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to have on ||| 0.0285714 0.0782999 1.49697e-06 4.03152e-05 2.718 ||| 0-2 ||| 35 668016 +a ||| to have one ||| 0.0142857 0.229811 1.49697e-06 1.7462e-05 2.718 ||| 0-0 ||| 70 668016 +a ||| to have our ||| 0.0285714 0.229811 1.49697e-06 5.77905e-06 2.718 ||| 0-0 ||| 35 668016 +a ||| to have started to reduce these ||| 1 0.229811 1.49697e-06 6.61945e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to have started to reduce ||| 1 0.229811 1.49697e-06 6.38265e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to have started to ||| 1 0.229811 1.49697e-06 1.67524e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to have started ||| 0.166667 0.229811 1.49697e-06 1.88529e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to have the ||| 0.00096432 0.229811 1.49697e-06 0.000257203 2.718 ||| 0-0 ||| 1037 668016 +a ||| to have their families ||| 0.125 0.229811 1.49697e-06 4.03056e-11 2.718 ||| 0-0 ||| 8 668016 +a ||| to have their throats cut ||| 1 0.229811 1.49697e-06 1.72547e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to have their throats ||| 0.5 0.229811 1.49697e-06 2.28236e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to have their ||| 0.0314465 0.229811 7.48485e-06 4.85609e-06 2.718 ||| 0-0 ||| 159 668016 +a ||| to have these abortions , as ||| 1 0.229811 1.49697e-06 3.70124e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to have these abortions , ||| 1 0.229811 1.49697e-06 3.62711e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to have these abortions ||| 1 0.229811 1.49697e-06 3.04148e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to have these ||| 0.0238095 0.229811 1.49697e-06 4.34497e-06 2.718 ||| 0-0 ||| 42 668016 +a ||| to have things ||| 0.5 0.229811 1.49697e-06 1.7219e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to have to be ||| 0.0434783 0.229811 1.49697e-06 6.7467e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| to have to get everyone there ||| 1 0.229811 1.49697e-06 3.35762e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to have to get everyone ||| 1 0.229811 1.49697e-06 1.09536e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to have to get ||| 0.5 0.229811 1.49697e-06 1.62759e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to have to issue ||| 1 0.229811 1.49697e-06 2.81738e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to have to ||| 0.028169 0.229811 2.09576e-05 0.000372275 2.718 ||| 0-0 ||| 497 668016 +a ||| to have ||| 0.0265436 0.229811 0.000482024 0.00418954 2.718 ||| 0-0 ||| 12131 668016 +a ||| to having to wait until the ||| 1 0.229811 1.49697e-06 9.60142e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| to having to wait until ||| 1 0.229811 1.49697e-06 1.56396e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| to having to wait ||| 1 0.229811 1.49697e-06 3.21802e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| to having to ||| 0.25 0.229811 1.49697e-06 1.19186e-05 2.718 ||| 0-2 ||| 4 668016 +a ||| to having ||| 0.0545455 0.229811 1.34727e-05 0.00013413 2.718 ||| 0-0 ||| 165 668016 +a ||| to health and ||| 0.00512821 0.229811 1.49697e-06 3.6463e-07 2.718 ||| 0-0 ||| 195 668016 +a ||| to health when ||| 0.2 0.229811 1.49697e-06 1.45521e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to health ||| 0.00452489 0.229811 4.49091e-06 2.91101e-05 2.718 ||| 0-0 ||| 663 668016 +a ||| to hear , ||| 0.030303 0.229811 1.49697e-06 4.24017e-06 2.718 ||| 0-0 ||| 33 668016 +a ||| to hear a reaction ||| 0.5 0.229811 1.49697e-06 3.57759e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to hear a ||| 0.0188679 0.229811 1.49697e-06 1.57603e-06 2.718 ||| 0-0 ||| 53 668016 +a ||| to hear ||| 0.00491159 0.229811 1.49697e-05 3.55556e-05 2.718 ||| 0-0 ||| 2036 668016 +a ||| to hearing this ||| 1 0.229811 1.49697e-06 5.95284e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to hearing ||| 0.00909091 0.229811 1.49697e-06 9.21293e-06 2.718 ||| 0-0 ||| 110 668016 +a ||| to heart ||| 0.0105263 0.229811 1.49697e-06 2.82343e-05 2.718 ||| 0-0 ||| 95 668016 +a ||| to heavy ||| 0.181818 0.229811 2.99394e-06 6.16531e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| to hedge ||| 0.166667 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to heights ||| 1 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to help in a ||| 0.5 0.229811 1.49697e-06 6.33803e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to help in advising ||| 1 0.0587624 1.49697e-06 1.42536e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| to help in ||| 0.030303 0.229811 4.49091e-06 1.42987e-06 2.718 ||| 0-0 ||| 99 668016 +a ||| to help it to ||| 0.0625 0.239866 1.49697e-06 1.4353e-05 2.718 ||| 0-0 0-1 0-3 ||| 16 668016 +a ||| to help put ||| 0.1 0.229811 1.49697e-06 7.36565e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| to help them in ||| 0.0588235 0.0587624 1.49697e-06 2.73099e-09 2.718 ||| 0-3 ||| 17 668016 +a ||| to help them ||| 0.00273224 0.229811 1.49697e-06 1.79191e-07 2.718 ||| 0-0 ||| 366 668016 +a ||| to help to ||| 0.0125 0.259976 2.99394e-06 5.19329e-05 2.718 ||| 0-1 ||| 160 668016 +a ||| to help us to ||| 0.0263158 0.229811 1.49697e-06 1.71086e-08 2.718 ||| 0-3 ||| 38 668016 +a ||| to help various ||| 1 0.259976 1.49697e-06 9.02386e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| to help ||| 0.0130299 0.244893 0.000100297 0.00230404 2.718 ||| 0-0 0-1 ||| 5142 668016 +a ||| to helping people to ||| 0.2 0.229811 1.49697e-06 1.03565e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| to helping to ||| 0.0625 0.266042 1.49697e-06 3.70476e-05 2.718 ||| 0-1 0-2 ||| 16 668016 +a ||| to helping ||| 0.059322 0.266042 1.04788e-05 0.000416929 2.718 ||| 0-0 0-1 ||| 118 668016 +a ||| to her plan . ||| 1 0.229811 1.49697e-06 2.11051e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to her plan ||| 1 0.229811 1.49697e-06 6.96768e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to her ||| 0.00686499 0.229811 4.49091e-06 9.53171e-05 2.718 ||| 0-0 ||| 437 668016 +a ||| to herself ||| 0.333333 0.229811 1.49697e-06 7.81173e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to hide behind ||| 0.0238095 0.229811 1.49697e-06 2.82483e-10 2.718 ||| 0-0 ||| 42 668016 +a ||| to hide ||| 0.0111732 0.229811 2.99394e-06 3.15271e-06 2.718 ||| 0-0 ||| 179 668016 +a ||| to high ||| 0.016129 0.229811 1.49697e-06 5.23e-05 2.718 ||| 0-0 ||| 62 668016 +a ||| to higher ||| 0.0106383 0.229811 1.49697e-06 1.47477e-05 2.718 ||| 0-0 ||| 94 668016 +a ||| to highlight just how difficulties with planning ||| 1 0.229811 1.49697e-06 1.09113e-23 2.718 ||| 0-0 ||| 1 668016 +a ||| to highlight just how difficulties with ||| 1 0.229811 1.49697e-06 3.88301e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| to highlight just how difficulties ||| 1 0.229811 1.49697e-06 6.07242e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to highlight just how ||| 0.5 0.229811 1.49697e-06 2.96216e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to highlight just ||| 0.0714286 0.229811 1.49697e-06 8.26494e-09 2.718 ||| 0-0 ||| 14 668016 +a ||| to highlight ||| 0.0016942 0.229811 5.98788e-06 6.55064e-06 2.718 ||| 0-0 ||| 2361 668016 +a ||| to hill and ||| 0.5 0.229811 1.49697e-06 1.27247e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to hill ||| 0.5 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to him ||| 0.00603318 0.229811 5.98788e-06 0.000112307 2.718 ||| 0-0 ||| 663 668016 +a ||| to himself or herself ||| 1 0.229811 1.49697e-06 6.61798e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to himself or ||| 1 0.229811 1.49697e-06 2.9677e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to himself ||| 0.0555556 0.229811 1.49697e-06 2.59573e-05 2.718 ||| 0-0 ||| 18 668016 +a ||| to his name ||| 0.2 0.229811 1.49697e-06 9.20022e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to his or her ||| 0.0909091 0.229811 2.99394e-06 3.27473e-11 2.718 ||| 0-0 ||| 22 668016 +a ||| to his or ||| 0.142857 0.229811 2.99394e-06 1.2035e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| to his political ||| 0.111111 0.229811 1.49697e-06 1.87899e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| to his ||| 0.00875274 0.229811 1.19758e-05 0.000105266 2.718 ||| 0-0 ||| 914 668016 +a ||| to hit ||| 0.0882353 0.229811 4.49091e-06 1.09644e-05 2.718 ||| 0-0 ||| 34 668016 +a ||| to hitch up to ||| 1 0.229811 1.49697e-06 7.43114e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| to hold a ||| 0.00696864 0.229811 2.99394e-06 2.70487e-06 2.718 ||| 0-0 ||| 287 668016 +a ||| to hold in a balance ||| 1 0.0587624 1.49697e-06 2.2261e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| to hold in a ||| 1 0.0587624 1.49697e-06 4.1224e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| to hold in ||| 0.125 0.0587624 1.49697e-06 9.30023e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| to hold it against me ||| 0.125 0.229811 1.49697e-06 1.55898e-13 2.718 ||| 0-0 ||| 8 668016 +a ||| to hold it against ||| 0.125 0.229811 1.49697e-06 2.58923e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| to hold it ||| 0.05 0.229811 1.49697e-06 1.08518e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| to hold on to a ||| 1 0.229811 1.49697e-06 1.60818e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| to hold on to ||| 0.0416667 0.229811 1.49697e-06 3.6281e-08 2.718 ||| 0-3 ||| 24 668016 +a ||| to hold up ||| 0.0526316 0.229811 1.49697e-06 2.08117e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| to hold ||| 0.0201439 0.229811 4.19152e-05 6.10225e-05 2.718 ||| 0-0 ||| 1390 668016 +a ||| to holding ||| 0.0285714 0.229811 1.49697e-06 2.10531e-05 2.718 ||| 0-0 ||| 35 668016 +a ||| to home , ||| 0.047619 0.229811 1.49697e-06 4.24017e-06 2.718 ||| 0-0 ||| 21 668016 +a ||| to home ||| 0.0235294 0.229811 2.99394e-06 3.55556e-05 2.718 ||| 0-0 ||| 85 668016 +a ||| to honour ||| 0.00808625 0.229811 4.49091e-06 6.55064e-06 2.718 ||| 0-0 ||| 371 668016 +a ||| to hope for ||| 0.0285714 0.0683377 1.49697e-06 5.73983e-07 2.718 ||| 0-2 ||| 35 668016 +a ||| to hope that Parliament will express that ||| 1 0.229811 1.49697e-06 8.75816e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| to hope that Parliament will express ||| 1 0.229811 1.49697e-06 5.2065e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to hope that Parliament will ||| 1 0.229811 1.49697e-06 5.12955e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to hope that Parliament ||| 0.25 0.229811 1.49697e-06 5.9293e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to hope that ||| 0.00584795 0.229811 1.49697e-06 1.03298e-06 2.718 ||| 0-0 ||| 171 668016 +a ||| to hope ||| 0.00772201 0.229811 2.99394e-06 6.14079e-05 2.718 ||| 0-0 ||| 259 668016 +a ||| to host ||| 0.0240964 0.229811 2.99394e-06 6.79585e-06 2.718 ||| 0-0 ||| 83 668016 +a ||| to hot ||| 1 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| to how much ||| 0.0196078 0.229811 1.49697e-06 1.26013e-07 2.718 ||| 0-0 ||| 51 668016 +a ||| to how ||| 0.00240096 0.229811 2.99394e-06 0.000125548 2.718 ||| 0-0 ||| 833 668016 +a ||| to human ||| 0.00909091 0.229811 1.49697e-06 4.32272e-05 2.718 ||| 0-0 ||| 110 668016 +a ||| to hunt ||| 0.0526316 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-0 ||| 19 668016 +a ||| to ideas ||| 0.0454545 0.229811 1.49697e-06 1.23656e-05 2.718 ||| 0-0 ||| 22 668016 +a ||| to identify ||| 0.00364964 0.229811 5.98788e-06 6.06022e-06 2.718 ||| 0-0 ||| 1096 668016 +a ||| to ignore ||| 0.00573066 0.229811 2.99394e-06 2.9075e-06 2.718 ||| 0-0 ||| 349 668016 +a ||| to illustrate this - is ||| 1 0.229811 1.49697e-06 1.33794e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to illustrate this - ||| 1 0.229811 1.49697e-06 4.26896e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to illustrate this ||| 0.0277778 0.229811 1.49697e-06 1.13172e-08 2.718 ||| 0-0 ||| 36 668016 +a ||| to illustrate ||| 0.00558659 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-0 ||| 179 668016 +a ||| to imagine how a country ||| 1 0.229811 1.49697e-06 3.68525e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to imagine how a ||| 1 0.229811 1.49697e-06 1.02396e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to imagine how ||| 0.0625 0.229811 1.49697e-06 2.31008e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| to imagine ||| 0.00735294 0.229811 2.99394e-06 6.44555e-06 2.718 ||| 0-0 ||| 272 668016 +a ||| to immediate ||| 0.1 0.229811 1.49697e-06 9.07281e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| to implement once ||| 0.5 0.229811 1.49697e-06 7.99856e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to implement projects ||| 0.0588235 0.229811 1.49697e-06 9.63659e-10 2.718 ||| 0-0 ||| 17 668016 +a ||| to implement ||| 0.0019719 0.229811 1.19758e-05 1.95468e-05 2.718 ||| 0-0 ||| 4057 668016 +a ||| to import ||| 0.0166667 0.229811 4.49091e-06 2.03175e-06 2.718 ||| 0-0 ||| 180 668016 +a ||| to important ||| 0.037037 0.229811 1.49697e-06 0.000134376 2.718 ||| 0-0 ||| 27 668016 +a ||| to imports ||| 0.0107527 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-0 ||| 93 668016 +a ||| to impose differentiated ||| 1 0.229811 1.49697e-06 1.26003e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to impose ||| 0.0059322 0.229811 1.04788e-05 1.14549e-05 2.718 ||| 0-0 ||| 1180 668016 +a ||| to improve ||| 0.00142025 0.229811 1.49697e-05 1.52381e-05 2.718 ||| 0-0 ||| 7041 668016 +a ||| to improving ||| 0.00124533 0.229811 1.49697e-06 7.56651e-06 2.718 ||| 0-0 ||| 803 668016 +a ||| to in particular ||| 0.166667 0.229811 1.49697e-06 4.61429e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| to in the ||| 0.015544 0.144287 4.49091e-06 0.00129211 2.718 ||| 0-0 0-1 ||| 193 668016 +a ||| to in ||| 0.0654045 0.229811 5.68849e-05 0.00749803 2.718 ||| 0-0 ||| 581 668016 +a ||| to incite prejudice ||| 0.25 0.229811 1.49697e-06 1.96169e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| to incite ||| 0.0454545 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| to include a ||| 0.00555556 0.229811 1.49697e-06 2.05583e-06 2.718 ||| 0-0 ||| 180 668016 +a ||| to include policy ||| 0.166667 0.229811 1.49697e-06 1.82598e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to include the ||| 0.00215983 0.229811 1.49697e-06 2.84735e-06 2.718 ||| 0-0 ||| 463 668016 +a ||| to include ||| 0.0321945 0.229811 0.000146703 4.63799e-05 2.718 ||| 0-0 ||| 3044 668016 +a ||| to including ||| 0.025 0.229811 1.49697e-06 3.65715e-05 2.718 ||| 0-0 ||| 40 668016 +a ||| to incorporate EUR 120 million worth of ||| 1 0.0188479 1.49697e-06 5.40446e-26 2.718 ||| 0-6 ||| 1 668016 +a ||| to incorporate ||| 0.010582 0.229811 8.98182e-06 4.65901e-06 2.718 ||| 0-0 ||| 567 668016 +a ||| to increase global ||| 1 0.229811 1.49697e-06 2.06833e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to increase in ||| 0.037037 0.229811 1.49697e-06 9.68746e-07 2.718 ||| 0-0 ||| 27 668016 +a ||| to increase quality , ||| 0.2 0.229811 1.49697e-06 2.66089e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| to increase quality ||| 0.166667 0.229811 1.49697e-06 2.23127e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to increase them ||| 0.0909091 0.229811 1.49697e-06 1.21403e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| to increase to ||| 0.037037 0.229811 1.49697e-06 4.02163e-06 2.718 ||| 0-0 ||| 27 668016 +a ||| to increase ||| 0.00328084 0.229811 2.24546e-05 4.5259e-05 2.718 ||| 0-0 ||| 4572 668016 +a ||| to increased ||| 0.00307692 0.229811 1.49697e-06 1.741e-05 2.718 ||| 0-0 ||| 325 668016 +a ||| to increasing ||| 0.00254453 0.229811 1.49697e-06 1.81456e-05 2.718 ||| 0-0 ||| 393 668016 +a ||| to indicate ||| 0.00530504 0.229811 2.99394e-06 7.70664e-06 2.718 ||| 0-0 ||| 377 668016 +a ||| to individual ||| 0.00819672 0.229811 1.49697e-06 4.95326e-05 2.718 ||| 0-0 ||| 122 668016 +a ||| to individuals ' ||| 1 0.229811 1.49697e-06 3.89853e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to individuals ||| 0.00970874 0.229811 1.49697e-06 1.13498e-05 2.718 ||| 0-0 ||| 103 668016 +a ||| to induce Belarus to ||| 0.333333 0.229811 1.49697e-06 1.74094e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| to induce ||| 0.0307692 0.229811 2.99394e-06 1.64642e-06 2.718 ||| 0-0 ||| 65 668016 +a ||| to indulge in ||| 0.0294118 0.0587624 1.49697e-06 3.84395e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| to indulge ||| 0.04 0.229811 2.99394e-06 2.52217e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| to indulging in ||| 1 0.144287 1.49697e-06 9.89209e-08 2.718 ||| 0-0 0-2 ||| 1 668016 +a ||| to industrial ||| 0.0588235 0.229811 1.49697e-06 4.4138e-06 2.718 ||| 0-0 ||| 17 668016 +a ||| to inform and safeguard the coastal communities ||| 1 0.229811 1.49697e-06 8.13633e-24 2.718 ||| 0-0 ||| 1 668016 +a ||| to inform and safeguard the coastal ||| 1 0.229811 1.49697e-06 6.11754e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| to inform and safeguard the ||| 1 0.229811 1.49697e-06 1.05475e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to inform and safeguard ||| 1 0.229811 1.49697e-06 1.71806e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to inform and ||| 0.0169492 0.229811 1.49697e-06 8.38078e-08 2.718 ||| 0-0 ||| 59 668016 +a ||| to inform me of ||| 0.2 0.229811 1.49697e-06 2.19006e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| to inform me ||| 0.0714286 0.229811 1.49697e-06 4.02851e-09 2.718 ||| 0-0 ||| 14 668016 +a ||| to inform us ||| 0.0135135 0.229811 1.49697e-06 1.92841e-08 2.718 ||| 0-0 ||| 74 668016 +a ||| to inform ||| 0.00696864 0.229811 1.19758e-05 6.69076e-06 2.718 ||| 0-0 ||| 1148 668016 +a ||| to information and ||| 0.0045045 0.229811 1.49697e-06 7.26188e-07 2.718 ||| 0-0 ||| 222 668016 +a ||| to information through ||| 0.25 0.229811 1.49697e-06 2.66859e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to information ||| 0.00326797 0.229811 4.49091e-06 5.79749e-05 2.718 ||| 0-0 ||| 918 668016 +a ||| to insist , ||| 0.0555556 0.229811 1.49697e-06 8.85632e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| to insist on ||| 0.00319489 0.0782999 1.49697e-06 7.14628e-08 2.718 ||| 0-2 ||| 313 668016 +a ||| to insist ||| 0.00179533 0.229811 1.49697e-06 7.42639e-06 2.718 ||| 0-0 ||| 557 668016 +a ||| to inspect all ||| 0.142857 0.229811 1.49697e-06 1.82085e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| to inspect ||| 0.0111111 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 90 668016 +a ||| to inspire ||| 0.016129 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 62 668016 +a ||| to instances of ||| 0.333333 0.229811 1.49697e-06 2.19004e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to instances ||| 0.2 0.229811 1.49697e-06 4.02847e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to insurance ||| 0.0833333 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| to integrate ||| 0.00398936 0.229811 4.49091e-06 1.5063e-06 2.718 ||| 0-0 ||| 752 668016 +a ||| to interfere ||| 0.00454545 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 220 668016 +a ||| to internal ||| 0.117647 0.229811 2.99394e-06 1.6254e-05 2.718 ||| 0-0 ||| 17 668016 +a ||| to international ||| 0.00900901 0.229811 1.49697e-06 2.71133e-05 2.718 ||| 0-0 ||| 111 668016 +a ||| to interpret ||| 0.00510204 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-0 ||| 196 668016 +a ||| to intervention , and ||| 1 0.229811 1.49697e-06 1.3919e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to intervention , ||| 0.25 0.229811 1.49697e-06 1.11122e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to intervention ||| 0.0555556 0.229811 1.49697e-06 9.31802e-06 2.718 ||| 0-0 ||| 18 668016 +a ||| to introduce a ||| 0.00194175 0.229811 1.49697e-06 7.9345e-07 2.718 ||| 0-0 ||| 515 668016 +a ||| to introduce efficient ||| 1 0.229811 1.49697e-06 3.47268e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to introduce for ||| 0.333333 0.0683377 1.49697e-06 1.67316e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| to introduce ||| 0.00312134 0.229811 1.19758e-05 1.79004e-05 2.718 ||| 0-0 ||| 2563 668016 +a ||| to invest in European cinema the opportunity ||| 1 0.229811 1.49697e-06 3.64416e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| to invest in European cinema the ||| 1 0.229811 1.49697e-06 2.02566e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to invest in European cinema ||| 1 0.229811 1.49697e-06 3.29956e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to invest in European ||| 1 0.229811 1.49697e-06 2.35683e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to invest in ||| 0.00166945 0.229811 1.49697e-06 7.04815e-08 2.718 ||| 0-0 ||| 599 668016 +a ||| to invest ||| 0.000952381 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-0 ||| 1050 668016 +a ||| to invite Yasser Arafat and Shimon Peres ||| 1 0.330028 1.49697e-06 6.36261e-32 2.718 ||| 0-1 ||| 1 668016 +a ||| to invite Yasser Arafat and Shimon ||| 1 0.330028 1.49697e-06 1.59065e-25 2.718 ||| 0-1 ||| 1 668016 +a ||| to invite Yasser Arafat and ||| 1 0.330028 1.49697e-06 3.97663e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| to invite Yasser Arafat ||| 1 0.330028 1.49697e-06 3.17473e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| to invite Yasser ||| 1 0.330028 1.49697e-06 2.26766e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| to invite you to join me on ||| 1 0.229811 1.49697e-06 2.04643e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| to invite you to join me ||| 1 0.229811 1.49697e-06 3.05848e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| to invite you to join ||| 1 0.229811 1.49697e-06 5.07969e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| to invite you to ||| 0.05 0.229811 1.49697e-06 1.0854e-09 2.718 ||| 0-3 ||| 20 668016 +a ||| to invite ||| 0.029304 0.27992 1.19758e-05 0.000223492 2.718 ||| 0-0 0-1 ||| 273 668016 +a ||| to invoke ||| 0.0123457 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 81 668016 +a ||| to involve itself ||| 0.0714286 0.170498 1.49697e-06 4.12266e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| to involve long-distance ||| 0.333333 0.229811 1.49697e-06 2.41778e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to involve the ||| 0.0060241 0.170498 1.49697e-06 3.72915e-06 2.718 ||| 0-1 ||| 166 668016 +a ||| to involve ||| 0.0129241 0.200155 1.19758e-05 0.000239466 2.718 ||| 0-0 0-1 ||| 619 668016 +a ||| to irrational ||| 0.25 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to is ||| 0.171717 0.229811 2.54485e-05 0.0109788 2.718 ||| 0-0 ||| 99 668016 +a ||| to issue , then ||| 0.166667 0.229811 1.49697e-06 5.09134e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to issue , ||| 0.0909091 0.229811 1.49697e-06 3.16154e-05 2.718 ||| 0-0 ||| 11 668016 +a ||| to issue the ||| 0.05 0.229811 1.49697e-06 1.62755e-05 2.718 ||| 0-0 ||| 20 668016 +a ||| to issue ||| 0.0200893 0.229811 1.34727e-05 0.000265108 2.718 ||| 0-0 ||| 448 668016 +a ||| to issues of ||| 0.0461538 0.229811 4.49091e-06 4.78951e-06 2.718 ||| 0-0 ||| 65 668016 +a ||| to issues relating ||| 0.461538 0.229811 8.98182e-06 1.00171e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| to issues ||| 0.0487805 0.229811 1.49697e-05 8.81009e-05 2.718 ||| 0-0 ||| 205 668016 +a ||| to it , that ||| 0.125 0.229811 1.49697e-06 1.24967e-05 2.718 ||| 0-0 ||| 8 668016 +a ||| to it , ||| 0.00502513 0.229811 2.99394e-06 0.000742895 2.718 ||| 0-0 ||| 398 668016 +a ||| to it - ||| 0.0666667 0.229811 1.49697e-06 2.34982e-05 2.718 ||| 0-0 ||| 15 668016 +a ||| to it as ||| 0.037037 0.229811 1.49697e-06 6.35681e-05 2.718 ||| 0-0 ||| 27 668016 +a ||| to it at the ||| 0.285714 0.204175 2.99394e-06 3.30178e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| to it at ||| 0.0833333 0.204175 2.99394e-06 5.37822e-05 2.718 ||| 0-2 ||| 24 668016 +a ||| to it because I am sure ||| 0.1 0.229811 1.49697e-06 3.22228e-15 2.718 ||| 0-0 ||| 10 668016 +a ||| to it because I am ||| 0.1 0.229811 1.49697e-06 1.84976e-11 2.718 ||| 0-0 ||| 10 668016 +a ||| to it because I ||| 0.1 0.229811 1.49697e-06 1.44795e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| to it because ||| 0.0555556 0.229811 1.49697e-06 2.04701e-06 2.718 ||| 0-0 ||| 18 668016 +a ||| to it by means ||| 0.5 0.229811 1.49697e-06 2.07254e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to it by ||| 0.0138889 0.229811 1.49697e-06 3.27054e-05 2.718 ||| 0-0 ||| 72 668016 +a ||| to it in ||| 0.0169492 0.144287 2.99394e-06 0.000374283 2.718 ||| 0-0 0-2 ||| 118 668016 +a ||| to it that I ||| 0.5 0.229811 1.49697e-06 7.41231e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to it that ||| 0.0181818 0.229811 5.98788e-06 0.00010479 2.718 ||| 0-0 ||| 220 668016 +a ||| to it to ||| 0.0588235 0.229811 1.49697e-06 0.000553541 2.718 ||| 0-2 ||| 17 668016 +a ||| to it ||| 0.0252665 0.229811 9.58061e-05 0.00622948 2.718 ||| 0-0 ||| 2533 668016 +a ||| to item ||| 0.0416667 0.229811 1.49697e-06 1.32414e-05 2.718 ||| 0-0 ||| 24 668016 +a ||| to its credit , ||| 0.04 0.229811 1.49697e-06 2.14261e-09 2.718 ||| 0-0 ||| 25 668016 +a ||| to its credit ||| 0.0333333 0.229811 1.49697e-06 1.79667e-08 2.718 ||| 0-0 ||| 30 668016 +a ||| to its final ||| 1 0.229811 1.49697e-06 3.80794e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to its knees ||| 0.02 0.229811 1.49697e-06 1.79667e-09 2.718 ||| 0-0 ||| 50 668016 +a ||| to its legal basis . ||| 0.5 0.229811 1.49697e-06 1.16335e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to its legal basis ||| 0.2 0.229811 1.49697e-06 3.8407e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| to its legal ||| 0.5 0.229811 1.49697e-06 6.46801e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to its people ||| 0.0192308 0.229811 1.49697e-06 4.39286e-07 2.718 ||| 0-0 ||| 52 668016 +a ||| to its policy of sitting squarely on ||| 1 0.0782999 1.49697e-06 2.28602e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| to its relations ||| 0.0769231 0.229811 1.49697e-06 2.70998e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| to its ||| 0.00487945 0.229811 2.54485e-05 0.000499075 2.718 ||| 0-0 ||| 3484 668016 +a ||| to itself ||| 0.027027 0.229811 2.99394e-06 0.00023775 2.718 ||| 0-0 ||| 74 668016 +a ||| to join in ||| 0.0110497 0.218864 2.99394e-06 1.02453e-05 2.718 ||| 0-0 0-1 ||| 181 668016 +a ||| to join it - ||| 0.5 0.229811 1.49697e-06 1.09972e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to join it ||| 0.1 0.229811 2.99394e-06 2.9154e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| to join me in ||| 0.0833333 0.229811 1.49697e-06 2.11282e-10 2.718 ||| 0-0 ||| 12 668016 +a ||| to join me on ||| 1 0.229811 1.49697e-06 6.60462e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to join me ||| 0.111111 0.229811 2.99394e-06 9.8709e-09 2.718 ||| 0-0 ||| 18 668016 +a ||| to join them ||| 0.111111 0.229811 1.49697e-06 4.39756e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| to join trade ||| 0.25 0.229811 1.49697e-06 1.42793e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to join with us in ||| 0.111111 0.0587624 1.49697e-06 4.60492e-12 2.718 ||| 0-4 ||| 9 668016 +a ||| to join ||| 0.0164261 0.218864 4.94e-05 0.000478652 2.718 ||| 0-0 0-1 ||| 2009 668016 +a ||| to joining ||| 0.05 0.240715 2.99394e-06 0.000186395 2.718 ||| 0-0 0-1 ||| 40 668016 +a ||| to joint ||| 0.142857 0.229811 1.49697e-06 2.28046e-05 2.718 ||| 0-0 ||| 7 668016 +a ||| to judge by ||| 0.0175439 0.229811 1.49697e-06 2.39085e-08 2.718 ||| 0-0 ||| 57 668016 +a ||| to judge ||| 0.00920245 0.229811 4.49091e-06 4.55392e-06 2.718 ||| 0-0 ||| 326 668016 +a ||| to jump aside ||| 0.5 0.229811 1.49697e-06 1.16072e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to jump to ||| 0.166667 0.229811 1.49697e-06 1.46298e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| to jump ||| 0.037037 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-0 ||| 27 668016 +a ||| to just a ||| 0.166667 0.229811 4.49091e-06 1.95909e-05 2.718 ||| 0-0 ||| 18 668016 +a ||| to just ||| 0.140351 0.229811 3.59273e-05 0.000441976 2.718 ||| 0-0 ||| 171 668016 +a ||| to justice in ||| 0.025641 0.0587624 1.49697e-06 2.13019e-07 2.718 ||| 0-2 ||| 39 668016 +a ||| to justice on ||| 0.25 0.0782999 1.49697e-06 1.34498e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| to justice ||| 0.00898204 0.229811 8.98182e-06 1.3977e-05 2.718 ||| 0-0 ||| 668 668016 +a ||| to justify the ||| 0.00714286 0.229811 1.49697e-06 3.48391e-07 2.718 ||| 0-0 ||| 140 668016 +a ||| to justify ||| 0.00469484 0.229811 4.49091e-06 5.67489e-06 2.718 ||| 0-0 ||| 639 668016 +a ||| to keep Chapter ||| 1 0.229811 1.49697e-06 1.20069e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to keep Parliament ||| 0.0384615 0.229811 1.49697e-06 3.13272e-08 2.718 ||| 0-0 ||| 26 668016 +a ||| to keep a sharp eye open ||| 1 0.229811 1.49697e-06 2.95118e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| to keep a sharp eye ||| 0.333333 0.229811 1.49697e-06 1.83075e-15 2.718 ||| 0-0 ||| 3 668016 +a ||| to keep a sharp ||| 1 0.229811 1.49697e-06 3.21749e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to keep a ||| 0.0143885 0.229811 2.99394e-06 2.41917e-06 2.718 ||| 0-0 ||| 139 668016 +a ||| to keep as ||| 0.1 0.229811 1.49697e-06 5.56925e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| to keep exercising ||| 1 0.229811 1.49697e-06 5.29397e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to keep on ||| 0.0121951 0.0782999 1.49697e-06 5.25185e-07 2.718 ||| 0-2 ||| 82 668016 +a ||| to keep out ||| 0.047619 0.229811 1.49697e-06 2.09052e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| to keep pace with ||| 0.0434783 0.229811 2.99394e-06 6.77046e-12 2.718 ||| 0-0 ||| 46 668016 +a ||| to keep pace ||| 0.0192308 0.229811 1.49697e-06 1.05879e-09 2.718 ||| 0-0 ||| 52 668016 +a ||| to keep tagging along with ||| 1 0.0571592 1.49697e-06 1.61328e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| to keep to the ||| 0.0105263 0.229811 1.49697e-06 2.97726e-07 2.718 ||| 0-2 ||| 95 668016 +a ||| to keep to ||| 0.00588235 0.229811 1.49697e-06 4.84961e-06 2.718 ||| 0-2 ||| 170 668016 +a ||| to keep track ||| 0.0526316 0.229811 1.49697e-06 2.16125e-09 2.718 ||| 0-0 ||| 19 668016 +a ||| to keep up ||| 0.0152672 0.229811 2.99394e-06 1.86135e-07 2.718 ||| 0-0 ||| 131 668016 +a ||| to keep working past ||| 0.333333 0.229811 1.49697e-06 1.33115e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| to keep working ||| 0.047619 0.229811 1.49697e-06 1.03915e-08 2.718 ||| 0-0 ||| 21 668016 +a ||| to keep you ||| 0.0555556 0.229811 1.49697e-06 1.76213e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| to keep ||| 0.00901876 0.229811 3.74243e-05 5.4577e-05 2.718 ||| 0-0 ||| 2772 668016 +a ||| to keeping those ||| 0.5 0.229811 1.49697e-06 1.48895e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to keeping ||| 0.0384615 0.229811 4.49091e-06 2.05627e-05 2.718 ||| 0-0 ||| 78 668016 +a ||| to kill himself ||| 0.25 0.229811 1.49697e-06 1.11617e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to kill themselves even ||| 0.047619 0.229811 1.49697e-06 3.93855e-13 2.718 ||| 0-0 ||| 21 668016 +a ||| to kill themselves ||| 0.0454545 0.229811 1.49697e-06 6.47256e-10 2.718 ||| 0-0 ||| 22 668016 +a ||| to kill ||| 0.0121212 0.229811 2.99394e-06 1.5063e-06 2.718 ||| 0-0 ||| 165 668016 +a ||| to know all about ||| 0.333333 0.229811 1.49697e-06 6.04007e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to know all ||| 0.111111 0.229811 1.49697e-06 4.27071e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to know and love his or ||| 1 0.229811 1.49697e-06 2.9559e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| to know and love his ||| 1 0.229811 1.49697e-06 2.58541e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to know and love ||| 1 0.229811 1.49697e-06 8.60368e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to know and ||| 0.0322581 0.229811 1.49697e-06 1.13206e-06 2.718 ||| 0-0 ||| 31 668016 +a ||| to know her as a ||| 1 0.229811 1.49697e-06 1.11233e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to know her as ||| 1 0.229811 1.49697e-06 2.50945e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to know her ||| 1 0.229811 1.49697e-06 2.45918e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to know what will ||| 0.333333 0.229811 1.49697e-06 1.09705e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to know what ||| 0.00191205 0.229811 1.49697e-06 1.26809e-07 2.718 ||| 0-0 ||| 523 668016 +a ||| to know ||| 0.00373514 0.229811 1.64667e-05 9.03778e-05 2.718 ||| 0-0 ||| 2945 668016 +a ||| to known ||| 0.4 0.229811 2.99394e-06 3.85682e-05 2.718 ||| 0-0 ||| 5 668016 +a ||| to lack of ||| 0.0140845 0.229811 1.49697e-06 2.31573e-06 2.718 ||| 0-0 ||| 71 668016 +a ||| to lack ||| 0.0104167 0.229811 1.49697e-06 4.25967e-05 2.718 ||| 0-0 ||| 96 668016 +a ||| to land in ||| 0.2 0.0587624 1.49697e-06 2.05545e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| to large amounts ||| 0.25 0.229811 1.49697e-06 3.2574e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to large ||| 0.0116279 0.229811 1.49697e-06 5.38414e-05 2.718 ||| 0-0 ||| 86 668016 +a ||| to largely ||| 0.166667 0.229811 1.49697e-06 1.14549e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| to late ||| 0.111111 0.229811 1.49697e-06 1.11046e-05 2.718 ||| 0-0 ||| 9 668016 +a ||| to launching ||| 0.04 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| to lay down criteria for ||| 1 0.149075 1.49697e-06 1.14157e-14 2.718 ||| 0-0 0-4 ||| 1 668016 +a ||| to lay down ||| 0.00773196 0.229811 4.49091e-06 1.01242e-08 2.718 ||| 0-0 ||| 388 668016 +a ||| to lay into ||| 1 0.107578 1.49697e-06 2.23457e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| to lay ||| 0.0166667 0.229811 7.48485e-06 1.45025e-05 2.718 ||| 0-0 ||| 300 668016 +a ||| to lead to a ||| 0.0222222 0.229811 1.49697e-06 2.65599e-07 2.718 ||| 0-0 ||| 45 668016 +a ||| to lead to and ||| 1 0.229811 1.49697e-06 7.50549e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to lead to ||| 0.026738 0.229811 7.48485e-06 5.99198e-06 2.718 ||| 0-0 ||| 187 668016 +a ||| to lead ||| 0.0147541 0.229811 1.34727e-05 6.74331e-05 2.718 ||| 0-0 ||| 610 668016 +a ||| to leak ||| 0.142857 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to learn ||| 0.00570125 0.229811 7.48485e-06 1.22255e-05 2.718 ||| 0-0 ||| 877 668016 +a ||| to leave certain ||| 0.5 0.229811 1.49697e-06 9.48442e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to leave for ||| 0.05 0.0683377 1.49697e-06 3.11058e-07 2.718 ||| 0-2 ||| 20 668016 +a ||| to leave them ||| 0.0555556 0.229811 1.49697e-06 8.92667e-08 2.718 ||| 0-0 ||| 18 668016 +a ||| to leave ||| 0.00666112 0.229811 1.19758e-05 3.32787e-05 2.718 ||| 0-0 ||| 1201 668016 +a ||| to leaving those who ||| 1 0.229811 1.49697e-06 5.32459e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to leaving those ||| 1 0.229811 1.49697e-06 6.03695e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to leaving ||| 0.0588235 0.229811 1.49697e-06 8.33718e-06 2.718 ||| 0-0 ||| 17 668016 +a ||| to left one ||| 1 0.229811 1.49697e-06 2.75805e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to left ||| 0.333333 0.229811 1.49697e-06 6.6172e-05 2.718 ||| 0-0 ||| 3 668016 +a ||| to legal ||| 0.0125 0.229811 1.49697e-06 4.53991e-05 2.718 ||| 0-0 ||| 80 668016 +a ||| to less care being taken ||| 0.25 0.229811 1.49697e-06 1.56974e-14 2.718 ||| 0-0 ||| 4 668016 +a ||| to less care being ||| 0.25 0.229811 1.49697e-06 1.72215e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| to less care ||| 0.25 0.229811 1.49697e-06 6.05157e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to less ||| 0.00943396 0.229811 1.49697e-06 5.96213e-05 2.718 ||| 0-0 ||| 106 668016 +a ||| to let someone else use ||| 1 0.229811 1.49697e-06 4.48965e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to let someone else ||| 1 0.229811 1.49697e-06 9.23416e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to let someone ||| 1 0.229811 1.49697e-06 7.82556e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to let ||| 0.0178174 0.229811 1.19758e-05 0.000143063 2.718 ||| 0-0 ||| 449 668016 +a ||| to level down ||| 0.2 0.229811 1.49697e-06 2.09184e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to level ||| 0.0322581 0.229811 1.49697e-06 0.000299648 2.718 ||| 0-0 ||| 31 668016 +a ||| to levels ||| 0.0277778 0.229811 1.49697e-06 4.63799e-05 2.718 ||| 0-0 ||| 36 668016 +a ||| to liaise ||| 0.0555556 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| to lie exclusively at ||| 0.5 0.204175 1.49697e-06 1.52045e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| to life of ||| 0.0909091 0.0188479 1.49697e-06 3.98186e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| to lift ||| 0.00314465 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-0 ||| 318 668016 +a ||| to light by ||| 0.0666667 0.229811 1.49697e-06 3.19639e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| to light on ||| 0.2 0.0782999 1.49697e-06 5.85861e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| to light ||| 0.0253521 0.229811 1.34727e-05 6.08824e-05 2.718 ||| 0-0 ||| 355 668016 +a ||| to like to ||| 0.5 0.229811 1.49697e-06 5.52787e-05 2.718 ||| 0-2 ||| 2 668016 +a ||| to like ||| 0.181818 0.229811 2.99394e-06 0.000622101 2.718 ||| 0-0 ||| 11 668016 +a ||| to limit the ||| 0.00303951 0.229811 1.49697e-06 1.04517e-06 2.718 ||| 0-0 ||| 329 668016 +a ||| to limit ||| 0.00251889 0.229811 2.99394e-06 1.70247e-05 2.718 ||| 0-0 ||| 794 668016 +a ||| to line ||| 0.0606061 0.229811 2.99394e-06 0.000103129 2.718 ||| 0-0 ||| 33 668016 +a ||| to link ||| 0.00301205 0.229811 1.49697e-06 8.58239e-06 2.718 ||| 0-0 ||| 332 668016 +a ||| to little ||| 0.0666667 0.229811 1.49697e-06 5.67138e-05 2.718 ||| 0-0 ||| 15 668016 +a ||| to live as ||| 0.0434783 0.229811 1.49697e-06 3.60321e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| to live in ||| 0.00293255 0.0587624 1.49697e-06 5.38153e-07 2.718 ||| 0-2 ||| 341 668016 +a ||| to live side ||| 0.333333 0.229811 1.49697e-06 7.74004e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to live up to ||| 0.0145985 0.229811 2.99394e-06 1.07008e-08 2.718 ||| 0-0 ||| 137 668016 +a ||| to live up ||| 0.0136054 0.229811 2.99394e-06 1.20426e-07 2.718 ||| 0-0 ||| 147 668016 +a ||| to live with ||| 0.00645161 0.229811 1.49697e-06 2.25792e-07 2.718 ||| 0-0 ||| 155 668016 +a ||| to live ||| 0.00692042 0.229811 1.19758e-05 3.53104e-05 2.718 ||| 0-0 ||| 1156 668016 +a ||| to lively debate in ||| 1 0.0728267 1.49697e-06 1.70481e-14 2.718 ||| 0-0 0-1 0-2 0-3 ||| 1 668016 +a ||| to lobby ||| 0.027027 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-0 ||| 37 668016 +a ||| to locate ||| 0.0149254 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-0 ||| 67 668016 +a ||| to longer ||| 0.0666667 0.229811 1.49697e-06 6.56815e-05 2.718 ||| 0-0 ||| 15 668016 +a ||| to look after ||| 0.0130719 0.229811 2.99394e-06 2.76726e-08 2.718 ||| 0-0 ||| 153 668016 +a ||| to look at everything in economic terms ||| 1 0.204175 1.49697e-06 2.32391e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| to look at everything in economic ||| 1 0.204175 1.49697e-06 2.11726e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| to look at everything in ||| 1 0.204175 1.49697e-06 1.74548e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| to look at everything ||| 1 0.204175 1.49697e-06 8.15471e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| to look at it ||| 0.027027 0.204175 1.49697e-06 1.56775e-08 2.718 ||| 0-2 ||| 37 668016 +a ||| to look at ||| 0.00515796 0.204175 1.19758e-05 8.81591e-07 2.718 ||| 0-2 ||| 1551 668016 +a ||| to look back to ||| 0.25 0.229811 1.49697e-06 6.10288e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| to look into ||| 0.00306748 0.229811 1.49697e-06 1.04839e-07 2.718 ||| 0-0 ||| 326 668016 +a ||| to look like ||| 0.0322581 0.229811 1.49697e-06 1.81342e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| to look ||| 0.012987 0.229811 2.84424e-05 0.000102113 2.718 ||| 0-0 ||| 1463 668016 +a ||| to looking after ||| 0.166667 0.131957 1.49697e-06 3.10875e-08 2.718 ||| 0-0 0-2 ||| 6 668016 +a ||| to lose more ||| 0.5 0.229811 1.49697e-06 2.64795e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to lose out all ||| 1 0.229811 1.49697e-06 2.09871e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to lose out ||| 0.111111 0.229811 2.99394e-06 4.44134e-08 2.718 ||| 0-0 ||| 18 668016 +a ||| to lose ||| 0.0117925 0.229811 7.48485e-06 1.1595e-05 2.718 ||| 0-0 ||| 424 668016 +a ||| to low ||| 0.0526316 0.229811 1.49697e-06 1.26109e-05 2.718 ||| 0-0 ||| 19 668016 +a ||| to lower ||| 0.00425532 0.229811 1.49697e-06 8.96772e-06 2.718 ||| 0-0 ||| 235 668016 +a ||| to lure ||| 0.0555556 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| to mail ||| 0.25 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to maintain them now ||| 1 0.229811 1.49697e-06 8.84561e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to maintain them ||| 0.166667 0.229811 1.49697e-06 4.2942e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to maintain ||| 0.00270062 0.229811 1.04788e-05 1.60088e-05 2.718 ||| 0-0 ||| 2592 668016 +a ||| to maintaining ||| 0.00495049 0.229811 1.49697e-06 6.30543e-06 2.718 ||| 0-0 ||| 202 668016 +a ||| to maintenance ||| 0.0833333 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| to make , and that is ||| 0.333333 0.229811 1.49697e-06 4.79411e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to make , and that ||| 0.5 0.229811 1.49697e-06 1.52966e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to make , and ||| 0.0833333 0.229811 1.49697e-06 9.0934e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| to make , ||| 0.00934579 0.229811 1.49697e-06 7.25968e-05 2.718 ||| 0-0 ||| 107 668016 +a ||| to make a difference ||| 0.0333333 0.229811 1.49697e-06 7.09666e-10 2.718 ||| 0-0 ||| 30 668016 +a ||| to make a distinction between ||| 0.027027 0.229811 1.49697e-06 7.40298e-14 2.718 ||| 0-0 ||| 37 668016 +a ||| to make a distinction ||| 0.025 0.229811 1.49697e-06 2.80629e-10 2.718 ||| 0-0 ||| 40 668016 +a ||| to make a few comments ||| 0.00934579 0.229811 1.49697e-06 2.3651e-13 2.718 ||| 0-0 ||| 107 668016 +a ||| to make a few ||| 0.00292398 0.229811 1.49697e-06 4.73021e-09 2.718 ||| 0-0 ||| 342 668016 +a ||| to make a statement pursuant to ||| 0.5 0.229811 1.49697e-06 2.44722e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| to make a ||| 0.00452148 0.229811 1.79636e-05 2.69835e-05 2.718 ||| 0-0 ||| 2654 668016 +a ||| to make an ||| 0.00574713 0.229811 4.49091e-06 2.70573e-06 2.718 ||| 0-0 ||| 522 668016 +a ||| to make any choices here for ||| 1 0.229811 1.49697e-06 1.03298e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to make any choices here ||| 1 0.229811 1.49697e-06 1.34403e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to make any choices ||| 0.5 0.229811 1.49697e-06 6.62802e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to make any ||| 0.0110497 0.229811 2.99394e-06 9.20558e-07 2.718 ||| 0-0 ||| 181 668016 +a ||| to make at ||| 0.0714286 0.204175 1.49697e-06 5.25567e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| to make concrete ||| 0.5 0.229811 1.49697e-06 1.9054e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to make contact ||| 0.0333333 0.229811 1.49697e-06 1.16272e-08 2.718 ||| 0-0 ||| 30 668016 +a ||| to make do with ||| 0.0357143 0.0571592 1.49697e-06 8.85627e-09 2.718 ||| 0-3 ||| 28 668016 +a ||| to make even ||| 0.0833333 0.229811 1.49697e-06 3.70427e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| to make full ||| 0.0277778 0.229811 1.49697e-06 1.11706e-07 2.718 ||| 0-0 ||| 36 668016 +a ||| to make good ||| 0.0114943 0.229811 1.49697e-06 3.157e-07 2.718 ||| 0-0 ||| 87 668016 +a ||| to make him ||| 0.2 0.229811 1.49697e-06 1.95167e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to make himself ||| 0.5 0.229811 1.49697e-06 4.51087e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to make in ||| 0.038961 0.144287 4.49091e-06 3.65755e-05 2.718 ||| 0-0 0-2 ||| 77 668016 +a ||| to make is ||| 0.00719424 0.229811 1.49697e-06 1.9079e-05 2.718 ||| 0-0 ||| 139 668016 +a ||| to make it easier to ||| 0.027027 0.229811 1.49697e-06 6.71436e-11 2.718 ||| 0-4 ||| 37 668016 +a ||| to make it possible ||| 0.00574713 0.229811 1.49697e-06 8.68321e-09 2.718 ||| 0-0 ||| 174 668016 +a ||| to make it to ||| 0.2 0.229811 1.49697e-06 9.61943e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| to make it ||| 0.00133245 0.229811 2.99394e-06 1.08256e-05 2.718 ||| 0-0 ||| 1501 668016 +a ||| to make me the target ||| 0.5 0.229811 1.49697e-06 8.50575e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to make me the ||| 0.5 0.229811 1.49697e-06 2.2502e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to make me ||| 0.0833333 0.229811 1.49697e-06 3.66531e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| to make more and even ||| 1 0.229811 1.49697e-06 1.05962e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to make more and ||| 0.333333 0.229811 1.49697e-06 1.74137e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to make more ||| 0.011236 0.229811 1.49697e-06 1.39021e-06 2.718 ||| 0-0 ||| 89 668016 +a ||| to make new agreements about ||| 0.25 0.229811 1.49697e-06 1.90915e-14 2.718 ||| 0-0 ||| 4 668016 +a ||| to make new agreements ||| 0.2 0.229811 1.49697e-06 1.34989e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| to make new ||| 0.037037 0.229811 1.49697e-06 3.63852e-07 2.718 ||| 0-0 ||| 27 668016 +a ||| to make of ||| 0.0555556 0.229811 2.99394e-06 3.30943e-05 2.718 ||| 0-0 ||| 36 668016 +a ||| to make out ||| 0.125 0.229811 1.49697e-06 2.33177e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| to make people aware ||| 0.0833333 0.229811 1.49697e-06 7.44261e-11 2.718 ||| 0-0 ||| 12 668016 +a ||| to make people get the ||| 1 0.229811 1.49697e-06 1.43818e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to make people get ||| 1 0.229811 1.49697e-06 2.34263e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to make people ||| 0.0487805 0.229811 2.99394e-06 5.35825e-07 2.718 ||| 0-0 ||| 41 668016 +a ||| to make progress ||| 0.00296736 0.229811 2.99394e-06 8.01729e-08 2.718 ||| 0-0 ||| 674 668016 +a ||| to make rapid ||| 0.125 0.229811 1.49697e-06 1.09576e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to make reforms you can forget ||| 1 0.229811 1.49697e-06 1.69445e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| to make reforms you can ||| 1 0.229811 1.49697e-06 9.06121e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to make reforms you ||| 1 0.229811 1.49697e-06 3.0465e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to make reforms ||| 0.2 0.229811 1.49697e-06 9.43569e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to make room for some ||| 0.5 0.0683377 1.49697e-06 2.31812e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| to make room for ||| 0.0714286 0.0683377 1.49697e-06 2.12808e-10 2.718 ||| 0-3 ||| 14 668016 +a ||| to make some ||| 0.00436681 0.229811 1.49697e-06 6.63116e-07 2.718 ||| 0-0 ||| 229 668016 +a ||| to make special ||| 0.166667 0.229811 1.49697e-06 5.21094e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to make stylish trimmings ||| 0.5 0.229811 1.49697e-06 9.74007e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| to make stylish ||| 0.5 0.229811 1.49697e-06 2.43502e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to make sure ||| 0.00497822 0.229811 1.19758e-05 1.06045e-07 2.718 ||| 0-0 ||| 1607 668016 +a ||| to make the ||| 0.000511247 0.229811 1.49697e-06 3.73725e-05 2.718 ||| 0-0 ||| 1956 668016 +a ||| to make their own ||| 0.0188679 0.229811 1.49697e-06 1.19622e-09 2.718 ||| 0-0 ||| 53 668016 +a ||| to make their ||| 0.0117647 0.229811 2.99394e-06 7.05607e-07 2.718 ||| 0-0 ||| 170 668016 +a ||| to make them ||| 0.003861 0.229811 1.49697e-06 1.63292e-06 2.718 ||| 0-0 ||| 259 668016 +a ||| to make this an ||| 0.166667 0.229811 1.49697e-06 1.74828e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to make this money ||| 0.5 0.229811 1.49697e-06 6.42718e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to make this ||| 0.00519931 0.229811 4.49091e-06 3.9334e-06 2.718 ||| 0-0 ||| 577 668016 +a ||| to make those initiatives ||| 1 0.229811 1.49697e-06 1.39733e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to make those ||| 0.037037 0.229811 1.49697e-06 4.40799e-07 2.718 ||| 0-0 ||| 27 668016 +a ||| to make to ||| 0.123457 0.229811 1.49697e-05 5.40928e-05 2.718 ||| 0-2 ||| 81 668016 +a ||| to make two ||| 0.00414938 0.229811 1.49697e-06 1.43909e-07 2.718 ||| 0-0 ||| 241 668016 +a ||| to make up ||| 0.0075188 0.229811 1.49697e-06 2.07616e-06 2.718 ||| 0-0 ||| 133 668016 +a ||| to make very ||| 0.04 0.229811 1.49697e-06 2.11816e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| to make will ||| 0.25 0.229811 1.49697e-06 5.26645e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to make you ||| 0.0625 0.229811 1.49697e-06 1.96548e-06 2.718 ||| 0-0 ||| 16 668016 +a ||| to make ||| 0.0130919 0.229811 0.000371249 0.000608754 2.718 ||| 0-0 ||| 18943 668016 +a ||| to making a ||| 0.0277778 0.229811 1.49697e-06 5.97339e-06 2.718 ||| 0-0 ||| 36 668016 +a ||| to making it ||| 0.04 0.229811 1.49697e-06 2.39648e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| to making sure ||| 0.0526316 0.229811 1.49697e-06 2.34754e-08 2.718 ||| 0-0 ||| 19 668016 +a ||| to making them ||| 0.111111 0.229811 1.49697e-06 3.61483e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to making ||| 0.0148305 0.229811 1.04788e-05 0.000134761 2.718 ||| 0-0 ||| 472 668016 +a ||| to man ||| 0.0384615 0.229811 2.99394e-06 2.23142e-05 2.718 ||| 0-0 ||| 52 668016 +a ||| to manage in ||| 0.125 0.0587624 1.49697e-06 2.38111e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| to manage ||| 0.00350058 0.229811 4.49091e-06 1.56235e-05 2.718 ||| 0-0 ||| 857 668016 +a ||| to many of ||| 0.00641026 0.0188479 1.49697e-06 9.02293e-07 2.718 ||| 0-2 ||| 156 668016 +a ||| to many ||| 0.00137552 0.229811 1.49697e-06 0.000120259 2.718 ||| 0-0 ||| 727 668016 +a ||| to map out ||| 0.0434783 0.229811 1.49697e-06 9.66093e-09 2.718 ||| 0-0 ||| 23 668016 +a ||| to map ||| 0.0526316 0.229811 1.49697e-06 2.52217e-06 2.718 ||| 0-0 ||| 19 668016 +a ||| to mark ||| 0.00649351 0.229811 1.49697e-06 1.90214e-05 2.718 ||| 0-0 ||| 154 668016 +a ||| to marketable ||| 1 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to massive ||| 0.0769231 0.229811 1.49697e-06 5.42967e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| to match , ||| 0.25 0.229811 1.49697e-06 4.80414e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to match its ||| 0.1 0.229811 1.49697e-06 5.73936e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| to match ||| 0.0246914 0.229811 8.98182e-06 4.02847e-06 2.718 ||| 0-0 ||| 243 668016 +a ||| to matching ||| 0.333333 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to matters of ||| 0.0555556 0.229811 2.99394e-06 3.5231e-06 2.718 ||| 0-0 ||| 36 668016 +a ||| to matters ||| 0.0176991 0.229811 2.99394e-06 6.48058e-05 2.718 ||| 0-0 ||| 113 668016 +a ||| to mature ||| 0.05 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| to me , ||| 0.00306748 0.229811 1.49697e-06 2.51528e-05 2.718 ||| 0-0 ||| 326 668016 +a ||| to me - ||| 0.0588235 0.229811 1.49697e-06 7.95598e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| to me about ||| 0.0833333 0.229811 1.49697e-06 2.98299e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| to me and to ||| 0.05 0.229811 1.49697e-06 2.34756e-07 2.718 ||| 0-3 ||| 20 668016 +a ||| to me as a ||| 0.111111 0.229811 1.49697e-06 9.54014e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| to me as ||| 0.0181818 0.229811 1.49697e-06 2.15228e-06 2.718 ||| 0-0 ||| 55 668016 +a ||| to me in ||| 0.0882353 0.229811 4.49091e-06 4.51456e-06 2.718 ||| 0-0 ||| 34 668016 +a ||| to me that ||| 0.00775194 0.229811 2.99394e-06 3.54795e-06 2.718 ||| 0-0 ||| 258 668016 +a ||| to me to be a ||| 0.0555556 0.229811 1.49697e-06 1.50554e-08 2.718 ||| 0-0 ||| 18 668016 +a ||| to me to be ||| 0.0327869 0.229811 2.99394e-06 3.39653e-07 2.718 ||| 0-0 ||| 61 668016 +a ||| to me to ||| 0.027933 0.229811 7.48485e-06 1.87417e-05 2.718 ||| 0-0 ||| 179 668016 +a ||| to me ||| 0.0105327 0.229811 5.2394e-05 0.000210917 2.718 ||| 0-0 ||| 3323 668016 +a ||| to mean that ||| 0.0125 0.229811 1.49697e-06 1.51853e-06 2.718 ||| 0-0 ||| 80 668016 +a ||| to mean ||| 0.015625 0.229811 5.98788e-06 9.02727e-05 2.718 ||| 0-0 ||| 256 668016 +a ||| to means ||| 0.0714286 0.229811 1.49697e-06 0.000221986 2.718 ||| 0-0 ||| 14 668016 +a ||| to measure ||| 0.00793651 0.229811 2.99394e-06 2.62376e-05 2.718 ||| 0-0 ||| 252 668016 +a ||| to media ||| 0.0384615 0.229811 1.49697e-06 1.00887e-05 2.718 ||| 0-0 ||| 26 668016 +a ||| to medical consultants and ||| 1 0.229811 1.49697e-06 5.40582e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to medical consultants ||| 1 0.229811 1.49697e-06 4.31572e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to medical ||| 0.0666667 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| to meet , ||| 0.0384615 0.229811 1.49697e-06 5.07985e-06 2.718 ||| 0-0 ||| 26 668016 +a ||| to meet him in ||| 1 0.144287 1.49697e-06 8.20516e-10 2.718 ||| 0-0 0-3 ||| 1 668016 +a ||| to meet members ||| 0.25 0.229811 1.49697e-06 6.28301e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to meet the needs of ||| 0.0113636 0.0188479 1.49697e-06 3.89081e-12 2.718 ||| 0-4 ||| 88 668016 +a ||| to meet ||| 0.0116976 0.229811 6.13758e-05 4.25967e-05 2.718 ||| 0-0 ||| 3505 668016 +a ||| to meeting ||| 0.0115607 0.229811 2.99394e-06 4.39979e-05 2.718 ||| 0-0 ||| 173 668016 +a ||| to members of ||| 0.078125 0.229811 7.48485e-06 2.80896e-06 2.718 ||| 0-0 ||| 64 668016 +a ||| to members ||| 0.049505 0.229811 7.48485e-06 5.16695e-05 2.718 ||| 0-0 ||| 101 668016 +a ||| to mention a ||| 0.00666667 0.229811 1.49697e-06 1.50926e-06 2.718 ||| 0-0 ||| 150 668016 +a ||| to mention just two , ||| 1 0.229811 1.49697e-06 1.21112e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to mention just two ||| 0.05 0.229811 1.49697e-06 1.01557e-11 2.718 ||| 0-0 ||| 20 668016 +a ||| to mention just ||| 0.0128205 0.229811 1.49697e-06 4.296e-08 2.718 ||| 0-0 ||| 78 668016 +a ||| to mention ||| 0.00479233 0.229811 2.24546e-05 3.40493e-05 2.718 ||| 0-0 ||| 3130 668016 +a ||| to mere ||| 0.0243902 0.229811 1.49697e-06 7.42639e-06 2.718 ||| 0-0 ||| 41 668016 +a ||| to merely ||| 0.0434783 0.229811 1.49697e-06 2.23142e-05 2.718 ||| 0-0 ||| 23 668016 +a ||| to methods ||| 0.0454545 0.229811 1.49697e-06 1.11046e-05 2.718 ||| 0-0 ||| 22 668016 +a ||| to milk ||| 0.0357143 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| to millions ||| 0.0140845 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-0 ||| 71 668016 +a ||| to mind - ||| 0.333333 0.229811 1.49697e-06 3.32854e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to mind ||| 0.027027 0.229811 1.04788e-05 8.8241e-05 2.718 ||| 0-0 ||| 259 668016 +a ||| to mine ||| 0.0344828 0.229811 1.49697e-06 6.30543e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| to miss ||| 0.0138889 0.229811 1.49697e-06 2.9075e-06 2.718 ||| 0-0 ||| 72 668016 +a ||| to mitigate ||| 0.0118343 0.229811 2.99394e-06 7.70664e-07 2.718 ||| 0-0 ||| 169 668016 +a ||| to monitor a ||| 0.1 0.229811 1.49697e-06 2.34464e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| to monitor ||| 0.00274876 0.229811 7.48485e-06 5.28955e-06 2.718 ||| 0-0 ||| 1819 668016 +a ||| to more ||| 0.0182149 0.229811 1.49697e-05 0.000799984 2.718 ||| 0-0 ||| 549 668016 +a ||| to most ||| 0.00584795 0.229811 1.49697e-06 0.0001514 2.718 ||| 0-0 ||| 171 668016 +a ||| to mount a ||| 0.047619 0.229811 1.49697e-06 4.50295e-08 2.718 ||| 0-0 ||| 21 668016 +a ||| to mount ||| 0.0192308 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-0 ||| 52 668016 +a ||| to move away ||| 0.025 0.229811 1.49697e-06 1.70378e-08 2.718 ||| 0-0 ||| 40 668016 +a ||| to move closer to ||| 0.037037 0.229811 1.49697e-06 1.01374e-09 2.718 ||| 0-3 ||| 27 668016 +a ||| to move forward ||| 0.00200401 0.229811 1.49697e-06 2.98014e-08 2.718 ||| 0-0 ||| 499 668016 +a ||| to move into Africa ||| 1 0.107578 1.49697e-06 2.82246e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| to move into ||| 0.0571429 0.107578 2.99394e-06 8.2528e-08 2.718 ||| 0-2 ||| 35 668016 +a ||| to move on to ||| 0.0131579 0.0782999 1.49697e-06 4.57983e-08 2.718 ||| 0-2 ||| 76 668016 +a ||| to move on ||| 0.00625 0.0782999 1.49697e-06 5.15409e-07 2.718 ||| 0-2 ||| 160 668016 +a ||| to move towards ||| 0.00946372 0.229811 4.49091e-06 6.80226e-09 2.718 ||| 0-0 ||| 317 668016 +a ||| to move ||| 0.00720535 0.229811 2.09576e-05 5.35611e-05 2.718 ||| 0-0 ||| 1943 668016 +a ||| to movements ||| 0.04 0.229811 1.49697e-06 4.27368e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| to much ||| 0.0113636 0.229811 1.49697e-06 0.000351598 2.718 ||| 0-0 ||| 88 668016 +a ||| to mutual ||| 0.1 0.229811 1.49697e-06 7.70664e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| to my colleague , ||| 0.0116279 0.229811 1.49697e-06 1.48835e-09 2.718 ||| 0-0 ||| 86 668016 +a ||| to my colleague ||| 0.00480769 0.229811 1.49697e-06 1.24805e-08 2.718 ||| 0-0 ||| 208 668016 +a ||| to my fellow ||| 0.015748 0.229811 2.99394e-06 1.48459e-08 2.718 ||| 0-0 ||| 127 668016 +a ||| to my heart ||| 0.00934579 0.229811 1.49697e-06 1.81575e-08 2.718 ||| 0-0 ||| 107 668016 +a ||| to my question , which was the ||| 1 0.229811 1.49697e-06 3.63139e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to my question , which was ||| 1 0.229811 1.49697e-06 5.91511e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to my question , which ||| 0.333333 0.229811 1.49697e-06 1.888e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to my question , ||| 0.0555556 0.229811 1.49697e-06 2.22259e-08 2.718 ||| 0-0 ||| 18 668016 +a ||| to my question ||| 0.00617284 0.229811 1.49697e-06 1.86373e-07 2.718 ||| 0-0 ||| 162 668016 +a ||| to my understanding , ||| 0.5 0.229811 1.49697e-06 9.08056e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to my understanding ||| 0.125 0.229811 1.49697e-06 7.61443e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| to my ||| 0.00416419 0.229811 2.09576e-05 0.000225279 2.718 ||| 0-0 ||| 3362 668016 +a ||| to nail its colours ||| 1 0.229811 1.49697e-06 2.72096e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to nail its ||| 1 0.229811 1.49697e-06 2.89463e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to nail ||| 0.4 0.229811 2.99394e-06 2.03175e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to name just two ||| 0.166667 0.229811 1.49697e-06 9.13182e-12 2.718 ||| 0-0 ||| 6 668016 +a ||| to name just ||| 0.0243902 0.229811 1.49697e-06 3.86287e-08 2.718 ||| 0-0 ||| 41 668016 +a ||| to name ||| 0.0078125 0.229811 2.99394e-06 3.06164e-05 2.718 ||| 0-0 ||| 256 668016 +a ||| to nature ||| 0.0222222 0.229811 1.49697e-06 4.95326e-05 2.718 ||| 0-0 ||| 45 668016 +a ||| to navigation on ||| 1 0.0782999 1.49697e-06 8.42722e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| to needy ||| 1 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to negative ||| 0.0666667 0.229811 1.49697e-06 8.19706e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| to neglect ||| 0.0188679 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-0 ||| 53 668016 +a ||| to negotiate with ||| 0.00568182 0.0571592 1.49697e-06 1.2313e-08 2.718 ||| 0-2 ||| 176 668016 +a ||| to negotiate ||| 0.00190658 0.229811 2.99394e-06 2.9075e-06 2.718 ||| 0-0 ||| 1049 668016 +a ||| to neighbouring ||| 0.0344828 0.229811 1.49697e-06 2.13684e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| to new ||| 0.00508475 0.229811 4.49091e-06 0.000209375 2.718 ||| 0-0 ||| 590 668016 +a ||| to next ||| 0.111111 0.229811 1.49697e-06 3.61862e-05 2.718 ||| 0-0 ||| 9 668016 +a ||| to no fewer ||| 0.333333 0.229811 1.49697e-06 5.78071e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to no more than ||| 0.0526316 0.229811 1.49697e-06 1.90237e-10 2.718 ||| 0-0 ||| 19 668016 +a ||| to no more ||| 0.111111 0.229811 2.99394e-06 6.22707e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| to no ||| 0.0331126 0.229811 7.48485e-06 0.000272675 2.718 ||| 0-0 ||| 151 668016 +a ||| to noise ||| 0.0333333 0.229811 1.49697e-06 4.79913e-06 2.718 ||| 0-0 ||| 30 668016 +a ||| to non-EU ||| 0.166667 0.182983 1.49697e-06 3.80428e-05 2.718 ||| 0-0 0-1 ||| 6 668016 +a ||| to none other than ||| 1 0.229811 1.49697e-06 2.74509e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to none other ||| 1 0.229811 1.49697e-06 8.98555e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to none ||| 0.0454545 0.229811 1.49697e-06 6.93597e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| to normal - to ||| 0.5 0.229811 1.49697e-06 1.94909e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to normal - ||| 0.5 0.229811 1.49697e-06 2.19348e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to normal ||| 0.0140845 0.229811 1.49697e-06 5.81501e-06 2.718 ||| 0-0 ||| 71 668016 +a ||| to not ||| 0.0194175 0.229811 2.99394e-06 0.00119596 2.718 ||| 0-0 ||| 103 668016 +a ||| to note in ||| 0.0769231 0.229811 1.49697e-06 7.82794e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| to note ||| 0.00484262 0.229811 8.98182e-06 3.65715e-05 2.718 ||| 0-0 ||| 1239 668016 +a ||| to nothing but ||| 0.2 0.229811 1.49697e-06 4.45516e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to nothing more than ||| 0.142857 0.229811 2.99394e-06 4.54819e-11 2.718 ||| 0-0 ||| 14 668016 +a ||| to nothing more ||| 0.117647 0.229811 2.99394e-06 1.48877e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| to nothing worse ||| 1 0.229811 1.49697e-06 2.3208e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to nothing ||| 0.0394089 0.229811 1.19758e-05 6.51911e-05 2.718 ||| 0-0 ||| 203 668016 +a ||| to notice ||| 0.0149254 0.229811 1.49697e-06 1.34866e-05 2.718 ||| 0-0 ||| 67 668016 +a ||| to notify ||| 0.01 0.240733 1.49697e-06 2.43109e-05 2.718 ||| 0-0 0-1 ||| 100 668016 +a ||| to now to ||| 0.5 0.229811 1.49697e-06 6.41189e-05 2.718 ||| 0-2 ||| 2 668016 +a ||| to now ||| 0.00793651 0.229811 1.49697e-06 0.000721586 2.718 ||| 0-0 ||| 126 668016 +a ||| to number ||| 0.2 0.229811 1.49697e-06 0.000173329 2.718 ||| 0-0 ||| 5 668016 +a ||| to nurture ||| 0.03125 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 32 668016 +a ||| to obey ||| 0.0454545 0.229811 2.99394e-06 8.75754e-07 2.718 ||| 0-0 ||| 44 668016 +a ||| to object ||| 0.0289855 0.229811 2.99394e-06 5.04434e-06 2.718 ||| 0-0 ||| 69 668016 +a ||| to obliging ||| 0.333333 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to observe ||| 0.00479233 0.229811 4.49091e-06 6.69076e-06 2.718 ||| 0-0 ||| 626 668016 +a ||| to obtain a ||| 0.00408163 0.229811 1.49697e-06 9.33197e-07 2.718 ||| 0-0 ||| 245 668016 +a ||| to obtain it at ||| 1 0.204175 1.49697e-06 3.23231e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| to obtain legal ||| 1 0.229811 1.49697e-06 2.72849e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to obtain ||| 0.0077891 0.229811 1.94606e-05 2.10531e-05 2.718 ||| 0-0 ||| 1669 668016 +a ||| to obvious ||| 0.333333 0.229811 1.49697e-06 1.46076e-05 2.718 ||| 0-0 ||| 3 668016 +a ||| to occur , would ||| 1 0.229811 1.49697e-06 1.09344e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to occur , ||| 0.5 0.229811 2.99394e-06 1.86317e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to occur in ||| 0.1 0.0587624 1.49697e-06 2.38111e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| to occur ||| 0.0416667 0.229811 4.49091e-06 1.56235e-05 2.718 ||| 0-0 ||| 72 668016 +a ||| to odd ||| 1 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| to offer on ||| 0.5 0.0782999 1.49697e-06 3.8563e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| to offer the ||| 0.00943396 0.229811 1.49697e-06 2.46025e-06 2.718 ||| 0-0 ||| 106 668016 +a ||| to offer them good and ||| 1 0.229811 1.49697e-06 6.98286e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to offer them good ||| 1 0.229811 1.49697e-06 5.57473e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to offer them support ||| 0.5 0.229811 1.49697e-06 3.67528e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to offer them ||| 0.0327869 0.229811 2.99394e-06 1.07496e-07 2.718 ||| 0-0 ||| 61 668016 +a ||| to offer these ||| 0.111111 0.229811 1.49697e-06 4.15613e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| to offer us ||| 0.0625 0.229811 1.49697e-06 1.15503e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| to offer ||| 0.011208 0.229811 2.69455e-05 4.00745e-05 2.718 ||| 0-0 ||| 1606 668016 +a ||| to official ||| 0.030303 0.229811 1.49697e-06 1.36267e-05 2.718 ||| 0-0 ||| 33 668016 +a ||| to offload ||| 0.142857 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to on ||| 0.0606061 0.154056 2.99394e-06 0.0132889 2.718 ||| 0-0 0-1 ||| 33 668016 +a ||| to once again complement ||| 1 0.229811 1.49697e-06 2.40397e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to once again ||| 0.0212766 0.229811 1.49697e-06 8.28955e-08 2.718 ||| 0-0 ||| 47 668016 +a ||| to once ||| 0.166667 0.229811 1.49697e-06 0.000143343 2.718 ||| 0-0 ||| 6 668016 +a ||| to one ' ||| 0.5 0.229811 1.49697e-06 5.01515e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to one and a ||| 0.25 0.229811 1.49697e-06 8.10654e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to one and ||| 0.363636 0.229811 5.98788e-06 1.82885e-05 2.718 ||| 0-0 ||| 11 668016 +a ||| to one another ||| 0.0149254 0.229811 1.49697e-06 3.5202e-07 2.718 ||| 0-0 ||| 67 668016 +a ||| to one of ||| 0.0241379 0.229811 1.04788e-05 7.93745e-05 2.718 ||| 0-0 ||| 290 668016 +a ||| to one or ||| 0.0344828 0.229811 1.49697e-06 1.66928e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| to one side and ||| 0.0714286 0.229811 1.49697e-06 4.00885e-09 2.718 ||| 0-0 ||| 14 668016 +a ||| to one side if we are ||| 1 0.229811 1.49697e-06 4.60634e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to one side if we ||| 1 0.229811 1.49697e-06 3.03594e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to one side if ||| 1 0.229811 1.49697e-06 2.67429e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to one side ||| 0.015873 0.229811 2.99394e-06 3.20045e-07 2.718 ||| 0-0 ||| 126 668016 +a ||| to one which is ||| 0.25 0.229811 1.49697e-06 3.88711e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to one which ||| 0.125 0.229811 1.49697e-06 1.24026e-05 2.718 ||| 0-0 ||| 8 668016 +a ||| to one ||| 0.0250404 0.229811 4.64061e-05 0.00146006 2.718 ||| 0-0 ||| 1238 668016 +a ||| to one ’ s ||| 0.125 0.229811 1.49697e-06 4.83862e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| to one ’ ||| 0.25 0.229811 2.99394e-06 2.54357e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| to one-third ||| 0.142857 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to only ||| 0.0397351 0.229811 8.98182e-06 0.000389921 2.718 ||| 0-0 ||| 151 668016 +a ||| to open it ||| 0.333333 0.229811 1.49697e-06 1.00419e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to open up even more ||| 0.5 0.229811 1.49697e-06 2.67624e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to open up even ||| 0.5 0.229811 1.49697e-06 1.17189e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to open up ||| 0.00663717 0.229811 4.49091e-06 1.92586e-07 2.718 ||| 0-0 ||| 452 668016 +a ||| to open ||| 0.00675676 0.229811 8.98182e-06 5.64686e-05 2.718 ||| 0-0 ||| 888 668016 +a ||| to operate in ||| 0.00806452 0.0587624 1.49697e-06 2.59467e-07 2.718 ||| 0-2 ||| 124 668016 +a ||| to operate more smoothly ||| 1 0.229811 1.49697e-06 3.34361e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to operate more ||| 0.125 0.229811 1.49697e-06 3.88792e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to operate within ||| 0.0333333 0.229811 1.49697e-06 3.55986e-09 2.718 ||| 0-0 ||| 30 668016 +a ||| to operate ||| 0.00462963 0.229811 5.98788e-06 1.70247e-05 2.718 ||| 0-0 ||| 864 668016 +a ||| to oppose such openness ||| 1 0.284761 1.49697e-06 5.44467e-12 2.718 ||| 0-0 0-1 ||| 1 668016 +a ||| to oppose such ||| 0.2 0.284761 1.49697e-06 7.16404e-07 2.718 ||| 0-0 0-1 ||| 5 668016 +a ||| to oppose ||| 0.0100503 0.229811 5.98788e-06 1.89163e-06 2.718 ||| 0-0 ||| 398 668016 +a ||| to opt for ||| 0.008 0.0683377 1.49697e-06 3.40526e-08 2.718 ||| 0-2 ||| 125 668016 +a ||| to opt ||| 0.00666667 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-0 ||| 150 668016 +a ||| to or from ||| 0.166667 0.136685 1.49697e-06 2.88312e-06 2.718 ||| 0-0 0-2 ||| 6 668016 +a ||| to or not ||| 0.1 0.229811 1.49697e-06 1.36735e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| to or ||| 0.00806452 0.229811 1.49697e-06 0.0004005 2.718 ||| 0-0 ||| 124 668016 +a ||| to order and ||| 0.111111 0.229811 1.49697e-06 2.33697e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| to order ||| 0.0176991 0.229811 2.99394e-06 0.000186571 2.718 ||| 0-0 ||| 113 668016 +a ||| to orders ||| 0.25 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to organise ||| 0.002849 0.229811 2.99394e-06 3.64314e-06 2.718 ||| 0-0 ||| 702 668016 +a ||| to other , ||| 0.0833333 0.229811 1.49697e-06 5.41197e-05 2.718 ||| 0-0 ||| 12 668016 +a ||| to other ways ||| 0.5 0.229811 1.49697e-06 4.37478e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to other ||| 0.00669856 0.229811 2.09576e-05 0.000453816 2.718 ||| 0-0 ||| 2090 668016 +a ||| to our attention , ||| 0.2 0.229811 1.49697e-06 1.50573e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to our attention that ||| 0.166667 0.0008521 1.49697e-06 2.18654e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| to our attention ||| 0.0151515 0.229811 1.49697e-06 1.26262e-07 2.718 ||| 0-0 ||| 66 668016 +a ||| to our countries ||| 0.0294118 0.229811 1.49697e-06 1.83473e-07 2.718 ||| 0-0 ||| 34 668016 +a ||| to our fellow ||| 0.0357143 0.229811 1.49697e-06 3.18433e-08 2.718 ||| 0-0 ||| 28 668016 +a ||| to our friend on ||| 1 0.0782999 1.49697e-06 5.34728e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| to our relationship with developing countries . ||| 1 0.229811 1.49697e-06 5.13287e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| to our relationship with developing countries ||| 1 0.229811 1.49697e-06 1.69458e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| to our relationship with developing ||| 1 0.229811 1.49697e-06 4.46293e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to our relationship with ||| 0.1 0.229811 1.49697e-06 8.21903e-11 2.718 ||| 0-0 ||| 10 668016 +a ||| to our relationship ||| 0.0769231 0.229811 1.49697e-06 1.28533e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| to our request for ||| 0.0769231 0.0683377 1.49697e-06 3.4642e-10 2.718 ||| 0-3 ||| 13 668016 +a ||| to our taking ||| 0.333333 0.229811 1.49697e-06 2.05363e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to our ||| 0.00373972 0.229811 3.74243e-05 0.000483206 2.718 ||| 0-0 ||| 6685 668016 +a ||| to ourselves ||| 0.00826446 0.229811 1.49697e-06 0.000111431 2.718 ||| 0-0 ||| 121 668016 +a ||| to outsource ||| 0.0526316 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| to over ||| 0.030303 0.229811 7.48485e-06 0.00016867 2.718 ||| 0-0 ||| 165 668016 +a ||| to over-regulate ||| 0.25 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to overcome before ||| 0.5 0.229811 1.49697e-06 1.63832e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to overcome ||| 0.00322581 0.229811 5.98788e-06 6.55064e-06 2.718 ||| 0-0 ||| 1240 668016 +a ||| to overwhelm ||| 0.2 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to owing ||| 0.5 0.229811 1.49697e-06 4.79913e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to own and ||| 0.25 0.229811 1.49697e-06 7.43871e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to own ||| 0.0833333 0.229811 2.99394e-06 0.000593866 2.718 ||| 0-0 ||| 24 668016 +a ||| to pace the ||| 1 0.229811 1.49697e-06 4.1721e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to pace ||| 0.5 0.229811 1.49697e-06 6.79585e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to pack ||| 0.125 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| to paragraph 1 , you have removed ||| 1 0.229811 1.49697e-06 7.35468e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| to paragraph 1 , you have ||| 1 0.229811 1.49697e-06 1.62355e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to paragraph 1 , you ||| 1 0.229811 1.49697e-06 1.35751e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to paragraph 1 , ||| 0.2 0.229811 1.49697e-06 4.2045e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| to paragraph 1 ||| 0.0909091 0.229811 1.49697e-06 3.52565e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| to paragraph ||| 0.00274725 0.229811 1.49697e-06 5.53477e-06 2.718 ||| 0-0 ||| 364 668016 +a ||| to parliamentary involvement is ||| 0.5 0.229811 1.49697e-06 1.02748e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to parliamentary involvement ||| 0.5 0.229811 1.49697e-06 3.27837e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to parliamentary ||| 0.0909091 0.229811 1.49697e-06 1.09644e-05 2.718 ||| 0-0 ||| 11 668016 +a ||| to part with all ||| 1 0.229811 1.49697e-06 1.26193e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to part with ||| 0.2 0.229811 1.49697e-06 2.67053e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to part ||| 0.0740741 0.229811 2.99394e-06 0.00041763 2.718 ||| 0-0 ||| 27 668016 +a ||| to participate in democracy . when a ||| 1 0.229811 1.49697e-06 3.52936e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| to participate in democracy . when ||| 1 0.229811 1.49697e-06 7.96232e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| to participate in democracy . ||| 0.5 0.229811 1.49697e-06 1.59278e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| to participate in democracy ||| 0.5 0.229811 1.49697e-06 5.25844e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to participate in ||| 0.0030581 0.0587624 4.49091e-06 1.28666e-07 2.718 ||| 0-2 ||| 981 668016 +a ||| to participate to ||| 0.5 0.229811 1.49697e-06 7.50165e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| to participate ||| 0.00389358 0.229811 8.98182e-06 8.44227e-06 2.718 ||| 0-0 ||| 1541 668016 +a ||| to participation in ||| 0.04 0.0587624 1.49697e-06 1.28666e-07 2.718 ||| 0-2 ||| 25 668016 +a ||| to particular ||| 0.0625 0.229811 5.98788e-06 0.000215576 2.718 ||| 0-0 ||| 64 668016 +a ||| to partly ||| 0.166667 0.229811 1.49697e-06 1.18402e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| to pass ||| 0.0146751 0.229811 1.04788e-05 2.00373e-05 2.718 ||| 0-0 ||| 477 668016 +a ||| to passenger cars , generally speaking the ||| 1 0.229811 1.49697e-06 1.19477e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| to passenger cars , generally speaking ||| 1 0.229811 1.49697e-06 1.94614e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| to passenger cars , generally ||| 1 0.229811 1.49697e-06 1.69525e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to passenger cars , ||| 0.25 0.229811 1.49697e-06 4.0948e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| to passenger cars ||| 0.125 0.229811 1.49697e-06 3.43366e-11 2.718 ||| 0-0 ||| 8 668016 +a ||| to passenger ||| 0.111111 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| to patent ||| 0.0434783 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| to pay , ||| 0.0232558 0.229811 1.49697e-06 5.9822e-06 2.718 ||| 0-0 ||| 43 668016 +a ||| to pay attention to ||| 0.0107527 0.229811 1.49697e-06 1.16472e-09 2.718 ||| 0-0 ||| 93 668016 +a ||| to pay attention ||| 0.00917431 0.229811 1.49697e-06 1.31076e-08 2.718 ||| 0-0 ||| 109 668016 +a ||| to pay back sums ||| 0.5 0.229811 1.49697e-06 4.25121e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to pay back ||| 0.037037 0.229811 1.49697e-06 3.37398e-08 2.718 ||| 0-0 ||| 27 668016 +a ||| to pay homage to ||| 0.047619 0.229811 1.49697e-06 8.02334e-12 2.718 ||| 0-0 ||| 21 668016 +a ||| to pay homage ||| 0.0434783 0.229811 1.49697e-06 9.02937e-11 2.718 ||| 0-0 ||| 23 668016 +a ||| to pay it ||| 0.1 0.229811 1.49697e-06 8.92062e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| to pay out ||| 0.0243902 0.229811 1.49697e-06 1.92145e-07 2.718 ||| 0-0 ||| 41 668016 +a ||| to pay tribute ||| 0.00407332 0.229811 2.99394e-06 9.73166e-10 2.718 ||| 0-0 ||| 491 668016 +a ||| to pay ||| 0.00925583 0.229811 3.74243e-05 5.01632e-05 2.718 ||| 0-0 ||| 2701 668016 +a ||| to payments ||| 0.0277778 0.229811 1.49697e-06 1.1595e-05 2.718 ||| 0-0 ||| 36 668016 +a ||| to peaceful means and ||| 1 0.229811 1.49697e-06 1.69615e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to peaceful means ||| 0.333333 0.229811 1.49697e-06 1.35412e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to peaceful ||| 0.333333 0.229811 1.49697e-06 2.13684e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to peddle ||| 0.333333 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to pensioners to concern ||| 0.5 0.229811 1.49697e-06 1.66219e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| to pensioners to ||| 0.5 0.229811 1.49697e-06 1.24509e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| to people 's ||| 0.0357143 0.229811 1.49697e-06 5.87194e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| to people belonging to ||| 1 0.229811 1.49697e-06 7.3975e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| to people if they write ||| 0.333333 0.229811 1.49697e-06 8.15725e-15 2.718 ||| 0-0 ||| 3 668016 +a ||| to people if they ||| 0.333333 0.229811 1.49697e-06 8.40954e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to people if ||| 0.166667 0.229811 1.49697e-06 2.57645e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to people in ||| 0.0113636 0.144287 1.49697e-06 1.85256e-05 2.718 ||| 0-0 0-2 ||| 88 668016 +a ||| to people we know ||| 0.166667 0.229811 1.49697e-06 9.03082e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| to people we ||| 0.142857 0.229811 1.49697e-06 3.50032e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| to people ||| 0.00561798 0.229811 7.48485e-06 0.000308335 2.718 ||| 0-0 ||| 890 668016 +a ||| to people ’ s ||| 0.2 0.229811 1.49697e-06 1.02182e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to people ’ ||| 0.25 0.229811 1.49697e-06 5.37151e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to peoples ||| 0.0769231 0.229811 1.49697e-06 4.90422e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| to perceive competition policy as essentially an ||| 1 0.229811 1.49697e-06 2.03833e-23 2.718 ||| 0-0 ||| 1 668016 +a ||| to perceive competition policy as essentially ||| 1 0.229811 1.49697e-06 4.58599e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| to perceive competition policy as ||| 1 0.229811 1.49697e-06 2.40104e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to perceive competition policy ||| 1 0.229811 1.49697e-06 2.35295e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to perceive competition ||| 1 0.229811 1.49697e-06 5.9765e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to perceive ||| 0.0689655 0.229811 2.99394e-06 1.64642e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| to percentage ||| 0.5 0.229811 1.49697e-06 5.18446e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to perfect ourselves all ||| 0.166667 0.229811 1.49697e-06 4.94962e-12 2.718 ||| 0-0 ||| 6 668016 +a ||| to perfect ourselves ||| 0.166667 0.229811 1.49697e-06 1.04745e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to perfect ||| 0.030303 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-0 ||| 33 668016 +a ||| to perform them ||| 1 0.229811 1.49697e-06 1.62559e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to perform ||| 0.00564972 0.229811 2.99394e-06 6.06022e-06 2.718 ||| 0-0 ||| 354 668016 +a ||| to perhaps put these ||| 1 0.229811 1.49697e-06 6.19685e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to perhaps put ||| 0.5 0.229811 1.49697e-06 5.97517e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to perhaps ||| 0.0357143 0.229811 1.49697e-06 5.41917e-05 2.718 ||| 0-0 ||| 28 668016 +a ||| to permit ||| 0.00490196 0.229811 1.49697e-06 8.44227e-06 2.718 ||| 0-0 ||| 204 668016 +a ||| to permitting ||| 0.166667 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to persevere ||| 0.0204082 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 49 668016 +a ||| to personal ||| 0.0454545 0.229811 1.49697e-06 1.48878e-05 2.718 ||| 0-0 ||| 22 668016 +a ||| to persuade Russian ||| 1 0.229811 1.49697e-06 5.17501e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to persuade ||| 0.00410678 0.229811 2.99394e-06 2.76738e-06 2.718 ||| 0-0 ||| 487 668016 +a ||| to petition ||| 0.0117647 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 85 668016 +a ||| to phase it ||| 0.166667 0.229811 1.49697e-06 1.4577e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to phase that out ||| 1 0.229811 1.49697e-06 5.28165e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to phase that ||| 1 0.229811 1.49697e-06 1.37888e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to phase ||| 0.0444444 0.229811 2.99394e-06 8.19706e-06 2.718 ||| 0-0 ||| 45 668016 +a ||| to physical ||| 0.0833333 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| to pick out ||| 0.0217391 0.229811 1.49697e-06 2.65675e-08 2.718 ||| 0-0 ||| 46 668016 +a ||| to pick ||| 0.0188679 0.229811 2.99394e-06 6.93597e-06 2.718 ||| 0-0 ||| 106 668016 +a ||| to pious ||| 1 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to place an ||| 0.1 0.229811 1.49697e-06 2.34326e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| to place control in ||| 1 0.229811 1.49697e-06 8.65524e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to place control ||| 1 0.229811 1.49697e-06 4.04365e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to place on the ||| 0.166667 0.229811 1.49697e-06 2.16561e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to place on ||| 0.0344828 0.229811 1.49697e-06 3.52752e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| to place the matter in the hands ||| 1 0.229811 1.49697e-06 4.44788e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to place the matter in the ||| 1 0.229811 1.49697e-06 4.41258e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to place the matter in ||| 1 0.229811 1.49697e-06 7.18757e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to place the matter ||| 1 0.229811 1.49697e-06 3.35797e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to place the ||| 0.00934579 0.229811 1.49697e-06 3.2366e-05 2.718 ||| 0-0 ||| 107 668016 +a ||| to place ||| 0.0233813 0.229811 1.94606e-05 0.000527204 2.718 ||| 0-0 ||| 556 668016 +a ||| to plan ||| 0.00343643 0.229811 1.49697e-06 2.5607e-05 2.718 ||| 0-0 ||| 291 668016 +a ||| to play , ||| 0.0131579 0.229811 1.49697e-06 1.0778e-05 2.718 ||| 0-0 ||| 76 668016 +a ||| to play a kind of ||| 0.5 0.0188479 1.49697e-06 1.4668e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| to play down ||| 0.0357143 0.229811 1.49697e-06 6.30928e-08 2.718 ||| 0-0 ||| 28 668016 +a ||| to play in creating ||| 0.0909091 0.229811 1.49697e-06 1.12781e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| to play in ||| 0.0184805 0.0587624 1.34727e-05 1.37742e-06 2.718 ||| 0-2 ||| 487 668016 +a ||| to play off ||| 0.0909091 0.229811 1.49697e-06 3.67838e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| to play ||| 0.0114039 0.229811 4.34121e-05 9.03778e-05 2.718 ||| 0-0 ||| 2543 668016 +a ||| to playing ||| 0.0645161 0.229811 2.99394e-06 2.30849e-05 2.718 ||| 0-0 ||| 31 668016 +a ||| to please ||| 0.0106383 0.229811 1.49697e-06 3.11418e-05 2.718 ||| 0-0 ||| 94 668016 +a ||| to point out ||| 0.000670466 0.229811 2.99394e-06 1.1738e-06 2.718 ||| 0-0 ||| 2983 668016 +a ||| to point the ||| 0.0454545 0.229811 1.49697e-06 1.88131e-05 2.718 ||| 0-0 ||| 22 668016 +a ||| to point to ||| 0.011236 0.229811 1.49697e-06 2.723e-05 2.718 ||| 0-2 ||| 89 668016 +a ||| to point ||| 0.0106157 0.229811 7.48485e-06 0.000306444 2.718 ||| 0-0 ||| 471 668016 +a ||| to popular belief , is ||| 1 0.229811 1.49697e-06 3.76129e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to popular belief , ||| 0.25 0.229811 1.49697e-06 1.20012e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| to popular belief ||| 0.2 0.229811 1.49697e-06 1.00635e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| to popular ||| 0.25 0.229811 1.49697e-06 3.78326e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to populists with ||| 0.5 0.229811 1.49697e-06 8.96001e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to populists ||| 0.333333 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to possible ||| 0.0138889 0.229811 1.49697e-06 0.000280977 2.718 ||| 0-0 ||| 72 668016 +a ||| to possibly ||| 0.0909091 0.229811 1.49697e-06 1.57636e-05 2.718 ||| 0-0 ||| 11 668016 +a ||| to potential pollution of the sea by ||| 1 0.229811 1.49697e-06 1.73911e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| to potential pollution of the sea ||| 1 0.229811 1.49697e-06 3.31253e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to potential pollution of the ||| 1 0.229811 1.49697e-06 1.10787e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to potential pollution of ||| 1 0.229811 1.49697e-06 1.80459e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to potential pollution ||| 0.5 0.229811 1.49697e-06 3.31946e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to potential ||| 0.0416667 0.229811 1.49697e-06 1.80405e-05 2.718 ||| 0-0 ||| 24 668016 +a ||| to power ||| 0.0108696 0.229811 4.49091e-06 5.23e-05 2.718 ||| 0-0 ||| 276 668016 +a ||| to practise ecologically ||| 1 0.229811 1.49697e-06 2.99158e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to practise ||| 0.0300752 0.229811 5.98788e-06 2.13684e-06 2.718 ||| 0-0 ||| 133 668016 +a ||| to pray to ||| 1 0.229811 1.49697e-06 5.60289e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| to pre-empt such a ||| 1 0.229811 1.49697e-06 2.24872e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to pre-empt such ||| 1 0.229811 1.49697e-06 5.07317e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to pre-empt ||| 0.0232558 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 43 668016 +a ||| to precisely ||| 0.137931 0.229811 5.98788e-06 3.45397e-05 2.718 ||| 0-0 ||| 29 668016 +a ||| to preference ||| 0.25 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to premium ||| 0.333333 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to prepare all the ||| 0.333333 0.229811 1.49697e-06 1.82921e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to prepare all ||| 0.166667 0.229811 1.49697e-06 2.97957e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to prepare ||| 0.000814332 0.229811 1.49697e-06 6.30543e-06 2.718 ||| 0-0 ||| 1228 668016 +a ||| to present a united front against ||| 1 0.05146 1.49697e-06 5.64809e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| to present a ||| 0.00220264 0.229811 1.49697e-06 5.68303e-06 2.718 ||| 0-0 ||| 454 668016 +a ||| to present and future challenges ||| 1 0.229811 1.49697e-06 7.97631e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to present and future ||| 0.5 0.229811 1.49697e-06 4.2654e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to present and ||| 0.0666667 0.229811 1.49697e-06 1.60595e-06 2.718 ||| 0-0 ||| 15 668016 +a ||| to present itself ||| 0.125 0.229811 1.49697e-06 8.70164e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to present ourselves as ||| 0.5 0.229811 1.49697e-06 4.16173e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to present ourselves ||| 0.333333 0.229811 1.49697e-06 4.07837e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to present themselves ||| 0.0909091 0.229811 1.49697e-06 5.5092e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| to present ||| 0.00531401 0.229811 1.64667e-05 0.00012821 2.718 ||| 0-0 ||| 2070 668016 +a ||| to present-day standards ||| 1 0.229811 1.49697e-06 2.81678e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to present-day ||| 0.333333 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to preserve ||| 0.00222469 0.229811 2.99394e-06 4.02847e-06 2.718 ||| 0-0 ||| 899 668016 +a ||| to preserving ||| 0.0121951 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-0 ||| 82 668016 +a ||| to press charges against ||| 0.333333 0.05146 1.49697e-06 1.53468e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| to press ||| 0.00293255 0.229811 1.49697e-06 1.05791e-05 2.718 ||| 0-0 ||| 341 668016 +a ||| to pressure to ||| 0.2 0.229811 1.49697e-06 1.87074e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| to prevail ||| 0.0102041 0.229811 1.49697e-06 8.33718e-06 2.718 ||| 0-0 ||| 98 668016 +a ||| to prevent further deaths ||| 0.333333 0.229811 1.49697e-06 7.44009e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| to prevent further ||| 0.0149254 0.229811 1.49697e-06 8.65127e-09 2.718 ||| 0-0 ||| 67 668016 +a ||| to prevent it ||| 0.00892857 0.229811 1.49697e-06 3.18327e-07 2.718 ||| 0-0 ||| 112 668016 +a ||| to prevent the continuation ||| 0.5 0.229811 1.49697e-06 1.3407e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to prevent the ||| 0.00108578 0.229811 1.49697e-06 1.09894e-06 2.718 ||| 0-0 ||| 921 668016 +a ||| to prevent these groups ||| 1 0.229811 1.49697e-06 1.22897e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to prevent these ||| 0.030303 0.229811 2.99394e-06 1.85645e-08 2.718 ||| 0-0 ||| 66 668016 +a ||| to prevent ||| 0.00227125 0.229811 2.09576e-05 1.79004e-05 2.718 ||| 0-0 ||| 6164 668016 +a ||| to primary ||| 0.4 0.229811 5.98788e-06 5.04434e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| to prior approval ||| 0.2 0.229811 1.49697e-06 1.92722e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| to prior ||| 0.0833333 0.229811 1.49697e-06 6.44555e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| to private ||| 0.0416667 0.229811 1.49697e-06 8.33718e-06 2.718 ||| 0-0 ||| 24 668016 +a ||| to privatise ||| 0.0232558 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 43 668016 +a ||| to problems ||| 0.00803213 0.229811 2.99394e-06 4.70105e-05 2.718 ||| 0-0 ||| 249 668016 +a ||| to proceed on the ||| 0.0526316 0.229811 1.49697e-06 4.60462e-09 2.718 ||| 0-0 ||| 19 668016 +a ||| to proceed on ||| 0.0277778 0.229811 1.49697e-06 7.50038e-08 2.718 ||| 0-0 ||| 36 668016 +a ||| to proceed to other votes . I ||| 1 0.229811 1.49697e-06 1.00362e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| to proceed to other votes . ||| 1 0.229811 1.49697e-06 1.41884e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to proceed to other votes ||| 1 0.229811 1.49697e-06 4.68418e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to proceed to other ||| 1 0.229811 1.49697e-06 1.29041e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to proceed to ||| 0.0263158 0.229811 2.99394e-06 9.96069e-07 2.718 ||| 0-0 ||| 76 668016 +a ||| to proceed ||| 0.00477897 0.229811 5.98788e-06 1.12097e-05 2.718 ||| 0-0 ||| 837 668016 +a ||| to process ||| 0.0106383 0.229811 1.49697e-06 0.000149754 2.718 ||| 0-0 ||| 94 668016 +a ||| to proclaim ||| 0.0425532 0.229811 2.99394e-06 4.90422e-07 2.718 ||| 0-0 ||| 47 668016 +a ||| to produce an expert report on ||| 1 0.0782999 1.49697e-06 6.25037e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| to produce it ||| 0.0588235 0.229811 1.49697e-06 5.51309e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| to produce this ||| 0.0217391 0.229811 1.49697e-06 2.00314e-07 2.718 ||| 0-0 ||| 46 668016 +a ||| to produce ||| 0.00590446 0.229811 1.64667e-05 3.10017e-05 2.718 ||| 0-0 ||| 1863 668016 +a ||| to producers , ||| 0.0714286 0.229811 1.49697e-06 8.10437e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| to producers ||| 0.0196078 0.229811 2.99394e-06 6.79585e-06 2.718 ||| 0-0 ||| 102 668016 +a ||| to progress - to ||| 1 0.229811 1.49697e-06 1.54635e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to progress - ||| 1 0.229811 1.49697e-06 1.74025e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to progress in ||| 0.012987 0.0587624 1.49697e-06 7.03123e-07 2.718 ||| 0-2 ||| 77 668016 +a ||| to progress ||| 0.00299401 0.229811 1.49697e-06 4.61347e-05 2.718 ||| 0-0 ||| 334 668016 +a ||| to projects ||| 0.00645161 0.229811 1.49697e-06 1.72699e-05 2.718 ||| 0-0 ||| 155 668016 +a ||| to promote economic development ||| 0.0526316 0.229811 1.49697e-06 4.4805e-13 2.718 ||| 0-0 ||| 19 668016 +a ||| to promote economic ||| 0.2 0.229811 1.49697e-06 2.72371e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to promote ||| 0.00197478 0.229811 1.94606e-05 2.24543e-05 2.718 ||| 0-0 ||| 6583 668016 +a ||| to proper ||| 0.0434783 0.229811 1.49697e-06 3.10017e-05 2.718 ||| 0-0 ||| 23 668016 +a ||| to properly exchange intelligence ||| 0.5 0.229811 1.49697e-06 4.19282e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| to properly exchange ||| 0.5 0.229811 1.49697e-06 7.229e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to properly trained ||| 1 0.229811 1.49697e-06 1.87902e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to properly ||| 0.0416667 0.229811 2.99394e-06 2.60975e-05 2.718 ||| 0-0 ||| 48 668016 +a ||| to proposals of ||| 0.5 0.229811 1.49697e-06 1.85106e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to proposals ||| 0.0133333 0.229811 1.49697e-06 3.40493e-05 2.718 ||| 0-0 ||| 75 668016 +a ||| to propose ||| 0.00282885 0.229811 5.98788e-06 1.18402e-05 2.718 ||| 0-0 ||| 1414 668016 +a ||| to protect them ||| 0.00740741 0.229811 1.49697e-06 3.24179e-08 2.718 ||| 0-0 ||| 135 668016 +a ||| to protect ||| 0.00175859 0.229811 1.64667e-05 1.20854e-05 2.718 ||| 0-0 ||| 6255 668016 +a ||| to protection ||| 0.00775194 0.229811 1.49697e-06 3.55556e-05 2.718 ||| 0-0 ||| 129 668016 +a ||| to prove ||| 0.00345423 0.229811 2.99394e-06 1.8531e-05 2.718 ||| 0-0 ||| 579 668016 +a ||| to provide a source of ||| 0.25 0.0188479 1.49697e-06 2.19517e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| to provide a ||| 0.00321027 0.229811 2.99394e-06 4.593e-06 2.718 ||| 0-0 ||| 623 668016 +a ||| to provide an overview ||| 0.111111 0.229811 1.49697e-06 2.487e-12 2.718 ||| 0-0 ||| 9 668016 +a ||| to provide an ||| 0.0060241 0.229811 1.49697e-06 4.60556e-07 2.718 ||| 0-0 ||| 166 668016 +a ||| to provide assistance to Member States during ||| 1 0.229811 1.49697e-06 1.13427e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| to provide assistance to Member States ||| 0.5 0.229811 1.49697e-06 1.12526e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| to provide assistance to Member ||| 1 0.229811 1.49697e-06 2.35806e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| to provide assistance to ||| 0.0465116 0.229811 2.99394e-06 4.57609e-10 2.718 ||| 0-3 ||| 43 668016 +a ||| to provide for ||| 0.00787402 0.229811 2.99394e-06 7.96386e-07 2.718 ||| 0-0 ||| 254 668016 +a ||| to provide information ||| 0.00854701 0.229811 2.99394e-06 1.7149e-08 2.718 ||| 0-0 ||| 234 668016 +a ||| to provide on the ||| 0.5 0.0782999 1.49697e-06 6.12143e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| to provide on ||| 0.25 0.0782999 1.49697e-06 9.97109e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| to provide our ||| 0.047619 0.229811 1.49697e-06 1.42932e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| to provide the ||| 0.00175439 0.229811 1.49697e-06 6.36137e-06 2.718 ||| 0-0 ||| 570 668016 +a ||| to provide them ||| 0.0384615 0.229811 1.49697e-06 2.77948e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| to provide to ||| 0.166667 0.229811 1.49697e-06 9.20742e-06 2.718 ||| 0-2 ||| 6 668016 +a ||| to provide us with ||| 0.0273973 0.229811 2.99394e-06 1.90973e-09 2.718 ||| 0-0 ||| 73 668016 +a ||| to provide us ||| 0.0789474 0.229811 4.49091e-06 2.98651e-07 2.718 ||| 0-0 ||| 38 668016 +a ||| to provide ||| 0.00790195 0.229811 7.33515e-05 0.000103619 2.718 ||| 0-0 ||| 6201 668016 +a ||| to providing the desired assistance ||| 1 0.229811 1.49697e-06 1.52084e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to providing the desired ||| 1 0.229811 1.49697e-06 3.06004e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to providing the ||| 0.0384615 0.229811 1.49697e-06 1.97422e-06 2.718 ||| 0-0 ||| 26 668016 +a ||| to providing ||| 0.0233463 0.229811 8.98182e-06 3.21577e-05 2.718 ||| 0-0 ||| 257 668016 +a ||| to public legal ||| 1 0.229811 1.49697e-06 7.33649e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to public order , ||| 0.166667 0.229811 1.49697e-06 3.59551e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to public order ||| 0.0344828 0.229811 1.49697e-06 3.01498e-08 2.718 ||| 0-0 ||| 29 668016 +a ||| to public scrutiny ||| 0.05 0.229811 1.49697e-06 8.54792e-10 2.718 ||| 0-0 ||| 20 668016 +a ||| to public ||| 0.0196078 0.229811 4.49091e-06 5.66087e-05 2.718 ||| 0-0 ||| 153 668016 +a ||| to publish ||| 0.00268817 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 372 668016 +a ||| to pull our carriages ||| 1 0.229811 1.49697e-06 4.60012e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to pull our ||| 0.333333 0.229811 1.49697e-06 1.15003e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to pull ||| 0.030303 0.229811 4.49091e-06 8.33718e-06 2.718 ||| 0-0 ||| 99 668016 +a ||| to pump ||| 0.0416667 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 24 668016 +a ||| to punish ||| 0.0114286 0.26893 2.99394e-06 6.36148e-05 2.718 ||| 0-0 0-1 ||| 175 668016 +a ||| to purchase ||| 0.00662252 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-0 ||| 151 668016 +a ||| to pursue either ||| 1 0.229811 1.49697e-06 1.1889e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to pursue ||| 0.00493421 0.229811 8.98182e-06 1.37318e-05 2.718 ||| 0-0 ||| 1216 668016 +a ||| to push for ||| 0.011236 0.0683377 1.49697e-06 9.06979e-08 2.718 ||| 0-2 ||| 89 668016 +a ||| to push ||| 0.00531915 0.229811 2.99394e-06 9.70335e-06 2.718 ||| 0-0 ||| 376 668016 +a ||| to put a ||| 0.00702576 0.229811 4.49091e-06 1.71205e-05 2.718 ||| 0-0 ||| 427 668016 +a ||| to put an end to ||| 0.00165837 0.229811 1.49697e-06 6.63726e-11 2.718 ||| 0-0 ||| 603 668016 +a ||| to put an end ||| 0.00149254 0.229811 1.49697e-06 7.4695e-10 2.718 ||| 0-0 ||| 670 668016 +a ||| to put an ||| 0.00184162 0.229811 1.49697e-06 1.71673e-06 2.718 ||| 0-0 ||| 543 668016 +a ||| to put extra things ||| 0.5 0.229811 1.49697e-06 3.93689e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to put extra ||| 0.5 0.229811 1.49697e-06 9.57882e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to put forward a ||| 0.008 0.229811 1.49697e-06 9.52585e-09 2.718 ||| 0-0 ||| 125 668016 +a ||| to put forward against ||| 0.333333 0.229811 1.49697e-06 5.12764e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to put forward ||| 0.00578035 0.229811 4.49091e-06 2.14905e-07 2.718 ||| 0-0 ||| 519 668016 +a ||| to put his case ||| 0.2 0.229811 1.49697e-06 1.24179e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| to put his ||| 0.0588235 0.229811 1.49697e-06 1.16066e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| to put in place appropriate legal ||| 1 0.0587624 1.49697e-06 1.54543e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| to put in place appropriate ||| 1 0.0587624 1.49697e-06 1.19246e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| to put in place ||| 0.00326797 0.0587624 1.49697e-06 8.85931e-09 2.718 ||| 0-2 ||| 306 668016 +a ||| to put in ||| 0.0176991 0.229811 5.98788e-06 8.26733e-06 2.718 ||| 0-0 ||| 226 668016 +a ||| to put it a ||| 0.333333 0.229811 1.49697e-06 3.04457e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to put it in ||| 0.0166667 0.0587624 1.49697e-06 1.04682e-07 2.718 ||| 0-3 ||| 60 668016 +a ||| to put it on a ||| 0.5 0.0782999 1.49697e-06 2.92974e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| to put it on ||| 0.047619 0.0782999 1.49697e-06 6.60956e-08 2.718 ||| 0-3 ||| 21 668016 +a ||| to put it ||| 0.00347826 0.229811 2.99394e-06 6.86863e-06 2.718 ||| 0-0 ||| 575 668016 +a ||| to put off ||| 0.04 0.229811 1.49697e-06 1.57201e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| to put paid ||| 0.166667 0.229811 1.49697e-06 5.19882e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to put the agenda to the ||| 1 0.229811 1.49697e-06 1.28448e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| to put the agenda to ||| 1 0.229811 1.49697e-06 2.09227e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| to put the ||| 0.00277008 0.229811 1.49697e-06 2.37121e-05 2.718 ||| 0-0 ||| 361 668016 +a ||| to put their case ||| 0.142857 0.229811 1.49697e-06 4.78988e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| to put their ||| 0.0149254 0.229811 1.49697e-06 4.47694e-07 2.718 ||| 0-0 ||| 67 668016 +a ||| to put them in ||| 0.2 0.229811 1.49697e-06 2.21763e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to put them ||| 0.0192308 0.229811 1.49697e-06 1.03606e-06 2.718 ||| 0-0 ||| 52 668016 +a ||| to put themselves on ||| 0.25 0.0782999 1.49697e-06 1.59708e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| to put to ||| 0.043956 0.229811 5.98788e-06 3.43208e-05 2.718 ||| 0-2 ||| 91 668016 +a ||| to put too fine a point on ||| 0.142857 0.0782999 1.49697e-06 6.35523e-18 2.718 ||| 0-6 ||| 7 668016 +a ||| to put up with excessive ||| 0.166667 0.229811 1.49697e-06 1.06134e-13 2.718 ||| 0-0 ||| 6 668016 +a ||| to put up with ||| 0.011236 0.229811 1.49697e-06 8.42335e-09 2.718 ||| 0-0 ||| 89 668016 +a ||| to put up ||| 0.0666667 0.229811 7.48485e-06 1.31728e-06 2.718 ||| 0-0 ||| 75 668016 +a ||| to put ||| 0.0145574 0.229811 9.28122e-05 0.000386243 2.718 ||| 0-0 ||| 4259 668016 +a ||| to putting the ||| 0.0454545 0.229811 1.49697e-06 2.40648e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| to putting ||| 0.0365854 0.229811 4.49091e-06 3.91987e-05 2.718 ||| 0-0 ||| 82 668016 +a ||| to qualify to ||| 1 0.229811 1.49697e-06 1.80538e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| to qualify ||| 0.0138889 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-0 ||| 72 668016 +a ||| to question in ||| 0.25 0.0587624 1.49697e-06 4.41681e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| to question ||| 0.0154799 0.229811 7.48485e-06 0.000289805 2.718 ||| 0-0 ||| 323 668016 +a ||| to quit ||| 0.2 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to quite ||| 0.125 0.229811 2.99394e-06 0.000136653 2.718 ||| 0-0 ||| 16 668016 +a ||| to quote an ||| 0.0555556 0.229811 1.49697e-06 6.94416e-08 2.718 ||| 0-0 ||| 18 668016 +a ||| to quote ||| 0.0101781 0.229811 5.98788e-06 1.56235e-05 2.718 ||| 0-0 ||| 393 668016 +a ||| to raise a point ||| 0.015873 0.229811 1.49697e-06 8.95144e-10 2.718 ||| 0-0 ||| 63 668016 +a ||| to raise a ||| 0.00617284 0.229811 1.49697e-06 1.02326e-06 2.718 ||| 0-0 ||| 162 668016 +a ||| to raise awareness ||| 0.00757576 0.229811 1.49697e-06 6.90238e-10 2.718 ||| 0-0 ||| 132 668016 +a ||| to raise our ||| 0.05 0.229811 1.49697e-06 3.18433e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| to raise ||| 0.00565771 0.229811 1.79636e-05 2.30849e-05 2.718 ||| 0-0 ||| 2121 668016 +a ||| to raising awareness ||| 0.0666667 0.229811 1.49697e-06 2.40902e-10 2.718 ||| 0-0 ||| 15 668016 +a ||| to raising ||| 0.0113636 0.229811 1.49697e-06 8.05694e-06 2.718 ||| 0-0 ||| 88 668016 +a ||| to rally forces ||| 1 0.229811 1.49697e-06 4.07681e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to rally ||| 0.0454545 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| to ransom by ||| 0.166667 0.229811 1.49697e-06 4.5978e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to ransom ||| 0.0238095 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 42 668016 +a ||| to rapidly ||| 0.0454545 0.229811 1.49697e-06 4.16859e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| to rationalize ||| 0.0909091 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| to re-integrate ||| 0.25 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to reach a ||| 0.00118624 0.229811 1.49697e-06 1.25772e-06 2.718 ||| 0-0 ||| 843 668016 +a ||| to reach agreement ||| 0.00443459 0.229811 2.99394e-06 5.22941e-09 2.718 ||| 0-0 ||| 451 668016 +a ||| to reach ||| 0.0100402 0.206202 4.49091e-05 0.000513822 2.718 ||| 0-0 0-1 ||| 2988 668016 +a ||| to reaching ||| 0.0204082 0.207506 4.49091e-06 0.000141627 2.718 ||| 0-0 0-1 ||| 147 668016 +a ||| to react - ||| 1 0.229811 1.49697e-06 1.09674e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to react ||| 0.00187266 0.229811 1.49697e-06 2.9075e-06 2.718 ||| 0-0 ||| 534 668016 +a ||| to read ||| 0.00625978 0.229811 5.98788e-06 1.68845e-05 2.718 ||| 0-0 ||| 639 668016 +a ||| to reading ||| 0.0833333 0.229811 1.49697e-06 1.00887e-05 2.718 ||| 0-0 ||| 12 668016 +a ||| to real ||| 0.0151515 0.229811 1.49697e-06 6.30193e-05 2.718 ||| 0-0 ||| 66 668016 +a ||| to realisation ||| 0.2 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to realise ||| 0.0028463 0.229811 4.49091e-06 9.07281e-06 2.718 ||| 0-0 ||| 1054 668016 +a ||| to realising ||| 0.027027 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-0 ||| 37 668016 +a ||| to really get ||| 0.142857 0.229811 1.49697e-06 7.41868e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| to really look ||| 1 0.229811 1.49697e-06 4.94635e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to really ||| 0.0377358 0.229811 5.98788e-06 0.000169686 2.718 ||| 0-0 ||| 106 668016 +a ||| to rear ||| 0.333333 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to reason , ||| 0.25 0.229811 1.49697e-06 9.7712e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to reason ||| 0.102564 0.229811 5.98788e-06 8.19355e-05 2.718 ||| 0-0 ||| 39 668016 +a ||| to reassure ||| 0.00409836 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 244 668016 +a ||| to rebut ||| 0.166667 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to recall ||| 0.00229358 0.229811 1.49697e-06 5.9201e-06 2.718 ||| 0-0 ||| 436 668016 +a ||| to receive - ||| 0.5 0.229811 1.49697e-06 1.32666e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to receive ||| 0.0110701 0.229811 1.79636e-05 3.51703e-05 2.718 ||| 0-0 ||| 1084 668016 +a ||| to received an extension ||| 1 0.229811 1.49697e-06 2.35765e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to received an ||| 1 0.229811 1.49697e-06 1.39506e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to received ||| 1 0.229811 1.49697e-06 3.1387e-05 2.718 ||| 0-0 ||| 1 668016 +a ||| to receiving ||| 0.0175439 0.229811 1.49697e-06 1.0474e-05 2.718 ||| 0-0 ||| 57 668016 +a ||| to recognise ||| 0.000690131 0.229811 1.49697e-06 6.79585e-06 2.718 ||| 0-0 ||| 1449 668016 +a ||| to recognised ||| 0.333333 0.229811 1.49697e-06 8.44227e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to reconcile conflicting wishes ||| 1 0.229811 1.49697e-06 2.40161e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to reconcile conflicting ||| 1 0.229811 1.49697e-06 4.53991e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to reconcile ||| 0.00217865 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 459 668016 +a ||| to reconstruct and help ||| 1 0.229811 1.49697e-06 5.85733e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to reconstruct and ||| 0.333333 0.229811 1.49697e-06 3.07149e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to reconstruct ||| 0.0149254 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 67 668016 +a ||| to record ||| 0.00543478 0.229811 1.49697e-06 1.95468e-05 2.718 ||| 0-0 ||| 184 668016 +a ||| to recover ||| 0.00859599 0.229811 4.49091e-06 1.5063e-06 2.718 ||| 0-0 ||| 349 668016 +a ||| to rectify ||| 0.00598802 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-0 ||| 167 668016 +a ||| to reduce by 23 000 ||| 1 0.229811 1.49697e-06 2.34764e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to reduce by 23 ||| 1 0.229811 1.49697e-06 2.24225e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to reduce by ||| 0.0666667 0.229811 1.49697e-06 7.00704e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| to reduce the number ||| 0.00819672 0.229811 1.49697e-06 4.05422e-10 2.718 ||| 0-0 ||| 122 668016 +a ||| to reduce the ||| 0.000717875 0.229811 1.49697e-06 8.19365e-07 2.718 ||| 0-0 ||| 1393 668016 +a ||| to reduce their levels ||| 1 0.229811 1.49697e-06 2.04822e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to reduce their ||| 0.00757576 0.229811 1.49697e-06 1.54699e-08 2.718 ||| 0-0 ||| 132 668016 +a ||| to reduce ||| 0.00132129 0.229811 8.98182e-06 1.33465e-05 2.718 ||| 0-0 ||| 4541 668016 +a ||| to reduced standards ||| 0.5 0.229811 1.49697e-06 1.19841e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to reduced ||| 0.02 0.229811 1.49697e-06 1.63941e-05 2.718 ||| 0-0 ||| 50 668016 +a ||| to reducing poverty and encouraging growth ||| 0.5 0.229811 1.49697e-06 2.02178e-21 2.718 ||| 0-0 ||| 2 668016 +a ||| to reducing poverty and encouraging ||| 0.5 0.229811 1.49697e-06 4.19456e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| to reducing poverty and ||| 0.1 0.229811 1.49697e-06 1.76242e-12 2.718 ||| 0-0 ||| 10 668016 +a ||| to reducing poverty ||| 0.0526316 0.229811 1.49697e-06 1.40702e-10 2.718 ||| 0-0 ||| 19 668016 +a ||| to reducing ||| 0.0021692 0.229811 1.49697e-06 9.31802e-06 2.718 ||| 0-0 ||| 461 668016 +a ||| to refer the matter to ||| 0.0526316 0.229811 1.49697e-06 1.54842e-10 2.718 ||| 0-4 ||| 19 668016 +a ||| to refer to ||| 0.00966184 0.229811 8.98182e-06 2.43103e-06 2.718 ||| 0-2 ||| 621 668016 +a ||| to refer ||| 0.00567644 0.229811 8.98182e-06 2.73586e-05 2.718 ||| 0-0 ||| 1057 668016 +a ||| to reflect on ||| 0.0037037 0.0782999 1.49697e-06 1.15284e-07 2.718 ||| 0-2 ||| 270 668016 +a ||| to reflect ||| 0.00881612 0.229811 1.04788e-05 1.19803e-05 2.718 ||| 0-0 ||| 794 668016 +a ||| to refrain ||| 0.0175439 0.229811 1.49697e-06 2.13684e-06 2.718 ||| 0-0 ||| 57 668016 +a ||| to refuse or ||| 0.333333 0.229811 1.49697e-06 4.1652e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to refuse ||| 0.00395257 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-0 ||| 253 668016 +a ||| to refute the charges ||| 1 0.229811 1.49697e-06 8.51624e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to refute the ||| 0.0909091 0.229811 1.49697e-06 3.87102e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| to refute ||| 0.0810811 0.229811 4.49091e-06 6.30543e-07 2.718 ||| 0-0 ||| 37 668016 +a ||| to regard ||| 0.0126582 0.229811 2.99394e-06 0.00023852 2.718 ||| 0-0 ||| 158 668016 +a ||| to region , ||| 0.142857 0.229811 1.49697e-06 4.08978e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| to region ||| 0.0666667 0.229811 1.49697e-06 3.42945e-05 2.718 ||| 0-0 ||| 15 668016 +a ||| to regional policy ||| 0.0263158 0.229811 1.49697e-06 3.37889e-09 2.718 ||| 0-0 ||| 38 668016 +a ||| to regional ||| 0.0434783 0.229811 1.49697e-06 8.58239e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| to register ||| 0.00446429 0.229811 1.49697e-06 4.27368e-06 2.718 ||| 0-0 ||| 224 668016 +a ||| to regulate ||| 0.00117647 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-0 ||| 850 668016 +a ||| to regulation ||| 0.0181818 0.229811 1.49697e-06 2.44511e-05 2.718 ||| 0-0 ||| 55 668016 +a ||| to reimbursement of ||| 0.166667 0.0188479 1.49697e-06 4.73093e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| to rein ||| 0.04 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| to reinforce the ||| 0.00361011 0.229811 1.49697e-06 8.60226e-08 2.718 ||| 0-0 ||| 277 668016 +a ||| to reinforce ||| 0.0037594 0.229811 4.49091e-06 1.40121e-06 2.718 ||| 0-0 ||| 798 668016 +a ||| to reinstate ||| 0.00900901 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 111 668016 +a ||| to reintroduce ||| 0.0140845 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 71 668016 +a ||| to reinvent ||| 0.0294118 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 34 668016 +a ||| to reiterate ||| 0.00148588 0.229811 1.49697e-06 3.15271e-06 2.718 ||| 0-0 ||| 673 668016 +a ||| to reject ||| 0.004111 0.229811 5.98788e-06 5.67489e-06 2.718 ||| 0-0 ||| 973 668016 +a ||| to relate in ||| 0.5 0.0587624 1.49697e-06 1.32403e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| to relate to ||| 0.04 0.229811 1.49697e-06 7.71954e-07 2.718 ||| 0-2 ||| 25 668016 +a ||| to relations with ||| 0.0119048 0.0571592 1.49697e-06 8.05539e-08 2.718 ||| 0-2 ||| 84 668016 +a ||| to relatively ||| 0.333333 0.229811 1.49697e-06 5.18446e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to relax ||| 0.0142857 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 70 668016 +a ||| to release ||| 0.00263158 0.229811 1.49697e-06 7.95185e-06 2.718 ||| 0-0 ||| 380 668016 +a ||| to relieve ||| 0.0151515 0.229811 2.99394e-06 1.26109e-06 2.718 ||| 0-0 ||| 132 668016 +a ||| to relocate ||| 0.0206186 0.229811 2.99394e-06 7.70664e-07 2.718 ||| 0-0 ||| 97 668016 +a ||| to rely on ||| 0.005 0.0782999 1.49697e-06 6.67436e-08 2.718 ||| 0-2 ||| 200 668016 +a ||| to remain ||| 0.00887311 0.229811 1.49697e-05 4.24916e-05 2.718 ||| 0-0 ||| 1127 668016 +a ||| to remember ||| 0.00470035 0.229811 5.98788e-06 1.31013e-05 2.718 ||| 0-0 ||| 851 668016 +a ||| to remind fellow Members of the ||| 1 0.229811 1.49697e-06 3.51156e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to remind fellow Members of ||| 1 0.229811 1.49697e-06 5.71991e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to remind fellow Members ||| 1 0.229811 1.49697e-06 1.05215e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to remind fellow ||| 1 0.229811 1.49697e-06 7.13323e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to remind users ||| 1 0.229811 1.49697e-06 1.12573e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to remind you ||| 0.00117925 0.229811 1.49697e-06 3.49485e-08 2.718 ||| 0-0 ||| 848 668016 +a ||| to remind ||| 0.00514933 0.229811 7.48485e-06 1.08243e-05 2.718 ||| 0-0 ||| 971 668016 +a ||| to remove ||| 0.00351185 0.229811 5.98788e-06 6.69076e-06 2.718 ||| 0-0 ||| 1139 668016 +a ||| to render ||| 0.0178571 0.229811 2.99394e-06 3.15271e-06 2.718 ||| 0-0 ||| 112 668016 +a ||| to renounce ||| 0.011236 0.318031 1.49697e-06 4.15808e-05 2.718 ||| 0-0 0-1 ||| 89 668016 +a ||| to repay ||| 0.016129 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 62 668016 +a ||| to repeat ||| 0.00163934 0.229811 1.49697e-06 8.8276e-06 2.718 ||| 0-0 ||| 610 668016 +a ||| to repeatedly ||| 0.5 0.229811 1.49697e-06 6.30543e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to repel ||| 0.0769231 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| to replace ||| 0.0011534 0.229811 1.49697e-06 2.9075e-06 2.718 ||| 0-0 ||| 867 668016 +a ||| to reply to ||| 0.0058309 0.229811 2.99394e-06 8.96462e-07 2.718 ||| 0-0 ||| 343 668016 +a ||| to reply ||| 0.00186567 0.229811 1.49697e-06 1.00887e-05 2.718 ||| 0-0 ||| 536 668016 +a ||| to report , ||| 0.0526316 0.229811 1.49697e-06 1.71236e-05 2.718 ||| 0-0 ||| 19 668016 +a ||| to report crimes ||| 1 0.229811 1.49697e-06 4.07792e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to report ||| 0.00404313 0.229811 4.49091e-06 0.000143589 2.718 ||| 0-0 ||| 742 668016 +a ||| to reports to the ||| 1 0.229811 1.49697e-06 9.49744e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to reports to ||| 1 0.229811 1.49697e-06 1.54702e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| to reports ||| 0.0235294 0.229811 2.99394e-06 1.741e-05 2.718 ||| 0-0 ||| 85 668016 +a ||| to represent his ||| 0.5 0.229811 1.49697e-06 5.37907e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to represent ||| 0.005386 0.229811 4.49091e-06 1.79004e-05 2.718 ||| 0-0 ||| 557 668016 +a ||| to representation by ||| 1 0.229811 1.49697e-06 2.18855e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to representation ||| 0.0909091 0.229811 1.49697e-06 4.16859e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| to requests ||| 0.0196078 0.229811 1.49697e-06 4.55392e-06 2.718 ||| 0-0 ||| 51 668016 +a ||| to require television ||| 1 0.229811 1.49697e-06 1.1148e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to require that ||| 0.0322581 0.229811 1.49697e-06 2.75775e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| to require ||| 0.0135593 0.229811 5.98788e-06 1.63941e-05 2.718 ||| 0-0 ||| 295 668016 +a ||| to requiring ||| 0.2 0.229811 1.49697e-06 4.16859e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to rescue ||| 0.028777 0.229811 5.98788e-06 1.89163e-06 2.718 ||| 0-0 ||| 139 668016 +a ||| to resist ||| 0.0144928 0.256391 4.49091e-06 7.06558e-05 2.718 ||| 0-0 0-1 ||| 207 668016 +a ||| to resolve the disputes in the Aegean ||| 1 0.229811 1.49697e-06 2.31289e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| to resolve the disputes in the ||| 1 0.229811 1.49697e-06 5.78222e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to resolve the disputes in ||| 1 0.229811 1.49697e-06 9.41856e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to resolve the disputes ||| 1 0.229811 1.49697e-06 4.40027e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to resolve the ||| 0.00149701 0.229811 1.49697e-06 5.56996e-07 2.718 ||| 0-0 ||| 668 668016 +a ||| to resolve ||| 0.00106157 0.229811 2.99394e-06 9.07281e-06 2.718 ||| 0-0 ||| 1884 668016 +a ||| to resolving ||| 0.0141509 0.229811 4.49091e-06 3.01259e-06 2.718 ||| 0-0 ||| 212 668016 +a ||| to resort to one ||| 0.5 0.229811 1.49697e-06 2.01094e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to resort to ||| 0.0208333 0.229811 5.98788e-06 4.82471e-07 2.718 ||| 0-0 ||| 192 668016 +a ||| to resort ||| 0.02 0.229811 5.98788e-06 5.42967e-06 2.718 ||| 0-0 ||| 200 668016 +a ||| to respect for ||| 0.00938967 0.149075 2.99394e-06 5.58404e-06 2.718 ||| 0-0 0-2 ||| 213 668016 +a ||| to respect ||| 0.00359527 0.229811 1.04788e-05 0.00015154 2.718 ||| 0-0 ||| 1947 668016 +a ||| to respecting ||| 0.011236 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-0 ||| 89 668016 +a ||| to respond and tell us ||| 1 0.229811 1.49697e-06 3.527e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to respond and tell ||| 1 0.229811 1.49697e-06 1.22372e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to respond and ||| 0.0434783 0.229811 1.49697e-06 1.24615e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| to respond better to ||| 0.0454545 0.229811 1.49697e-06 1.50194e-10 2.718 ||| 0-0 ||| 22 668016 +a ||| to respond better ||| 0.0384615 0.229811 1.49697e-06 1.69026e-09 2.718 ||| 0-0 ||| 26 668016 +a ||| to respond to ||| 0.00195567 0.229811 4.49091e-06 8.84012e-07 2.718 ||| 0-2 ||| 1534 668016 +a ||| to respond ||| 0.00393546 0.229811 1.49697e-05 9.94857e-06 2.718 ||| 0-0 ||| 2541 668016 +a ||| to rest ||| 0.0277778 0.229811 2.99394e-06 2.64828e-05 2.718 ||| 0-0 ||| 72 668016 +a ||| to restore ||| 0.00157729 0.229811 2.99394e-06 4.79913e-06 2.718 ||| 0-0 ||| 1268 668016 +a ||| to restrict drugs ||| 0.5 0.229811 1.49697e-06 1.20497e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to restrict ||| 0.00211864 0.229811 1.49697e-06 4.4138e-06 2.718 ||| 0-0 ||| 472 668016 +a ||| to restrictions ||| 0.0163934 0.229811 1.49697e-06 6.69076e-06 2.718 ||| 0-0 ||| 61 668016 +a ||| to result from ||| 0.0714286 0.136685 1.49697e-06 1.3277e-06 2.718 ||| 0-0 0-2 ||| 14 668016 +a ||| to result in ||| 0.0232558 0.229811 2.99394e-06 3.94771e-06 2.718 ||| 0-0 ||| 86 668016 +a ||| to result ||| 0.0183486 0.229811 2.99394e-06 0.000184434 2.718 ||| 0-0 ||| 109 668016 +a ||| to results which are ||| 1 0.229811 1.49697e-06 3.49453e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to results which ||| 1 0.229811 1.49697e-06 2.30317e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to results ||| 0.0434783 0.229811 1.49697e-06 2.71133e-05 2.718 ||| 0-0 ||| 23 668016 +a ||| to resume ||| 0.00381679 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-0 ||| 262 668016 +a ||| to retain jobs ||| 0.333333 0.229811 1.49697e-06 2.81257e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to retain ||| 0.00682594 0.229811 5.98788e-06 5.42967e-06 2.718 ||| 0-0 ||| 586 668016 +a ||| to retire ||| 0.0238095 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 42 668016 +a ||| to retrospectively implement ||| 0.333333 0.229811 1.49697e-06 1.36828e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to retrospectively ||| 0.333333 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to return home ||| 0.016129 0.229811 1.49697e-06 2.368e-09 2.718 ||| 0-0 ||| 62 668016 +a ||| to return to the budgets of ||| 1 0.229811 1.49697e-06 5.95023e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to return to the budgets ||| 1 0.229811 1.49697e-06 1.09452e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to return to the ||| 0.003861 0.229811 1.49697e-06 1.27269e-07 2.718 ||| 0-0 ||| 259 668016 +a ||| to return to ||| 0.00546448 0.229811 5.98788e-06 2.07307e-06 2.718 ||| 0-0 ||| 732 668016 +a ||| to return ||| 0.00373483 0.229811 5.98788e-06 2.33301e-05 2.718 ||| 0-0 ||| 1071 668016 +a ||| to review its performance ||| 0.5 0.229811 1.49697e-06 4.28236e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to review its ||| 0.0169492 0.229811 1.49697e-06 1.8865e-08 2.718 ||| 0-0 ||| 59 668016 +a ||| to review ||| 0.00189394 0.229811 2.99394e-06 1.32414e-05 2.718 ||| 0-0 ||| 1056 668016 +a ||| to revoke the existing bans ||| 1 0.229811 1.49697e-06 4.27051e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| to revoke the existing ||| 1 0.229811 1.49697e-06 1.18625e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to revoke the ||| 0.0714286 0.229811 1.49697e-06 1.5054e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| to revoke ||| 0.030303 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 33 668016 +a ||| to rid ourselves of ||| 0.0833333 0.0188479 1.49697e-06 1.95638e-11 2.718 ||| 0-3 ||| 12 668016 +a ||| to rights ||| 0.0238095 0.229811 1.49697e-06 7.00954e-05 2.718 ||| 0-0 ||| 42 668016 +a ||| to rise above ||| 0.0555556 0.229811 1.49697e-06 5.70213e-09 2.718 ||| 0-0 ||| 18 668016 +a ||| to rise and ||| 0.0833333 0.115699 1.49697e-06 8.48939e-08 2.718 ||| 0-0 0-2 ||| 12 668016 +a ||| to rise to this ||| 0.125 0.229811 1.49697e-06 2.52613e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to rise to ||| 0.00869565 0.229811 1.49697e-06 3.90957e-06 2.718 ||| 0-0 ||| 115 668016 +a ||| to rise ||| 0.0147601 0.229811 5.98788e-06 4.39979e-05 2.718 ||| 0-0 ||| 271 668016 +a ||| to risk ||| 0.0178571 0.229811 2.99394e-06 4.09853e-05 2.718 ||| 0-0 ||| 112 668016 +a ||| to river ||| 1 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| to roll in ||| 1 0.229811 1.49697e-06 8.62274e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to roll ||| 0.0588235 0.229811 2.99394e-06 4.02847e-06 2.718 ||| 0-0 ||| 34 668016 +a ||| to rot ||| 0.2 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to roughly ||| 0.111111 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| to rule on that point ||| 1 0.229811 1.49697e-06 2.80414e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to rule on that ||| 1 0.229811 1.49697e-06 3.20546e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to rule on ||| 0.0196078 0.229811 1.49697e-06 1.90556e-07 2.718 ||| 0-0 ||| 51 668016 +a ||| to rule ||| 0.00813008 0.229811 1.49697e-06 2.84795e-05 2.718 ||| 0-0 ||| 123 668016 +a ||| to run ||| 0.0175953 0.229811 8.98182e-06 3.7202e-05 2.718 ||| 0-0 ||| 341 668016 +a ||| to rush straight ahead into ||| 1 0.229811 1.49697e-06 8.50378e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| to rush straight ahead ||| 1 0.229811 1.49697e-06 8.28263e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to rush straight ||| 1 0.229811 1.49697e-06 7.59874e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to rush ||| 0.030303 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-0 ||| 33 668016 +a ||| to sacrifice a ||| 0.166667 0.229811 1.49697e-06 1.70801e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to sacrifice ||| 0.00943396 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 106 668016 +a ||| to safeguard ||| 0.00145879 0.229811 2.99394e-06 7.18118e-06 2.718 ||| 0-0 ||| 1371 668016 +a ||| to safeguarding ||| 0.00729927 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-0 ||| 137 668016 +a ||| to safer sanitation for ||| 1 0.0683377 1.49697e-06 1.69281e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| to salute ||| 0.0243902 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 41 668016 +a ||| to satellite communications ||| 1 0.229811 1.49697e-06 7.69262e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to satellite ||| 0.166667 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| to satisfy demand ||| 0.25 0.116324 1.49697e-06 5.1724e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| to satisfy his or her ||| 1 0.229811 1.49697e-06 1.89934e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to satisfy his or ||| 1 0.229811 1.49697e-06 6.98031e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to satisfy his ||| 0.5 0.229811 1.49697e-06 6.10541e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to satisfy ||| 0.00550964 0.229811 2.99394e-06 2.03175e-06 2.718 ||| 0-0 ||| 363 668016 +a ||| to save ||| 0.00536193 0.229811 5.98788e-06 5.28955e-06 2.718 ||| 0-0 ||| 746 668016 +a ||| to say " ||| 0.0833333 0.229811 1.49697e-06 7.9285e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| to say , ||| 0.00577478 0.229811 1.79636e-05 3.99287e-05 2.718 ||| 0-0 ||| 2078 668016 +a ||| to say either that we want ||| 1 0.229811 1.49697e-06 2.58797e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to say either that we ||| 1 0.229811 1.49697e-06 5.53577e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to say either that ||| 1 0.229811 1.49697e-06 4.87634e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to say either ||| 0.5 0.229811 1.49697e-06 2.89886e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to say in favour ||| 0.5 0.229811 1.49697e-06 2.3184e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to say in ||| 0.0104167 0.229811 2.99394e-06 7.16662e-06 2.718 ||| 0-0 ||| 192 668016 +a ||| to say it to ||| 1 0.229811 1.49697e-06 5.29074e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| to say now ||| 0.0666667 0.229811 1.49697e-06 6.89692e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| to say something about ||| 0.00483092 0.229811 1.49697e-06 2.62101e-10 2.718 ||| 0-0 ||| 207 668016 +a ||| to say something ||| 0.0113314 0.229811 5.98788e-06 1.85322e-07 2.718 ||| 0-0 ||| 353 668016 +a ||| to say thank you to the ||| 0.0833333 0.229811 1.49697e-06 6.23922e-13 2.718 ||| 0-4 ||| 12 668016 +a ||| to say thank you to ||| 0.04 0.229811 1.49697e-06 1.0163e-11 2.718 ||| 0-4 ||| 25 668016 +a ||| to say that the ||| 0.000861326 0.229811 1.49697e-06 3.4577e-07 2.718 ||| 0-0 ||| 1161 668016 +a ||| to say that ||| 0.000996867 0.229811 1.04788e-05 5.63218e-06 2.718 ||| 0-0 ||| 7022 668016 +a ||| to say the following ||| 0.015625 0.0720432 1.49697e-06 5.14001e-09 2.718 ||| 0-3 ||| 64 668016 +a ||| to say the role ||| 0.5 0.229811 1.49697e-06 4.56323e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to say the ||| 0.00374532 0.229811 2.99394e-06 2.05551e-05 2.718 ||| 0-0 ||| 534 668016 +a ||| to say where there is ||| 1 0.229811 1.49697e-06 9.74628e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to say where there ||| 1 0.229811 1.49697e-06 3.10974e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to say where ||| 0.0454545 0.229811 1.49697e-06 1.0145e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| to say ||| 0.00570211 0.229811 0.0001482 0.000334818 2.718 ||| 0-0 ||| 17362 668016 +a ||| to saying ||| 0.0222222 0.229811 1.49697e-06 6.21435e-05 2.718 ||| 0-0 ||| 45 668016 +a ||| to seafarers at ||| 1 0.204175 1.49697e-06 4.23405e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| to search ||| 0.0285714 0.229811 1.49697e-06 4.90422e-06 2.718 ||| 0-0 ||| 35 668016 +a ||| to second place ||| 0.125 0.229811 1.49697e-06 3.4321e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to second ||| 0.0454545 0.229811 2.99394e-06 2.28046e-05 2.718 ||| 0-0 ||| 44 668016 +a ||| to secure at ||| 1 0.229811 1.49697e-06 7.39294e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to secure further action ||| 0.25 0.229811 1.49697e-06 2.57945e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| to secure further ||| 0.125 0.229811 1.49697e-06 8.53276e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| to secure the ||| 0.00342466 0.229811 1.49697e-06 1.08388e-06 2.718 ||| 0-0 ||| 292 668016 +a ||| to secure ||| 0.00662691 0.229811 1.49697e-05 1.76552e-05 2.718 ||| 0-0 ||| 1509 668016 +a ||| to securing ||| 0.0120482 0.229811 1.49697e-06 4.55392e-06 2.718 ||| 0-0 ||| 83 668016 +a ||| to security ||| 0.00377358 0.229811 1.49697e-06 2.86196e-05 2.718 ||| 0-0 ||| 265 668016 +a ||| to see , ||| 0.00943396 0.229811 1.49697e-06 2.94347e-05 2.718 ||| 0-0 ||| 106 668016 +a ||| to see and ||| 0.025641 0.229811 1.49697e-06 3.09167e-06 2.718 ||| 0-0 ||| 39 668016 +a ||| to see compliance with ||| 0.25 0.0571592 1.49697e-06 2.40412e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| to see firmly annexed to ||| 0.333333 0.229811 1.49697e-06 1.82388e-15 2.718 ||| 0-4 ||| 3 668016 +a ||| to see in ||| 0.0125 0.0587624 1.49697e-06 3.76173e-06 2.718 ||| 0-2 ||| 80 668016 +a ||| to see me ||| 0.0952381 0.229811 2.99394e-06 1.48612e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| to see more emphasis on ||| 0.2 0.229811 1.49697e-06 1.92724e-13 2.718 ||| 0-0 ||| 5 668016 +a ||| to see more emphasis ||| 0.2 0.229811 1.49697e-06 2.88035e-11 2.718 ||| 0-0 ||| 5 668016 +a ||| to see more ||| 0.010989 0.229811 1.49697e-06 5.63669e-07 2.718 ||| 0-0 ||| 91 668016 +a ||| to see that ||| 0.00154083 0.229811 2.99394e-06 4.15195e-06 2.718 ||| 0-0 ||| 1298 668016 +a ||| to see us aim ||| 1 0.229811 1.49697e-06 9.78164e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to see us ||| 0.0285714 0.229811 1.49697e-06 7.11392e-07 2.718 ||| 0-0 ||| 35 668016 +a ||| to see what it ||| 0.142857 0.229811 1.49697e-06 6.15862e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| to see what ||| 0.00533333 0.229811 2.99394e-06 3.46317e-07 2.718 ||| 0-0 ||| 375 668016 +a ||| to see ||| 0.0106003 0.229811 0.000128739 0.000246823 2.718 ||| 0-0 ||| 8113 668016 +a ||| to seeing ||| 0.0350877 0.229811 5.98788e-06 1.86711e-05 2.718 ||| 0-0 ||| 114 668016 +a ||| to seek prosecution ||| 0.25 0.229811 1.49697e-06 1.31468e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to seek to ||| 0.00724638 0.229811 1.49697e-06 2.16334e-06 2.718 ||| 0-2 ||| 138 668016 +a ||| to seek ||| 0.00540541 0.229811 8.98182e-06 2.4346e-05 2.718 ||| 0-0 ||| 1110 668016 +a ||| to seize ||| 0.00970874 0.229811 2.99394e-06 2.27696e-06 2.718 ||| 0-0 ||| 206 668016 +a ||| to sell ||| 0.00571429 0.229811 2.99394e-06 2.27696e-06 2.718 ||| 0-0 ||| 350 668016 +a ||| to send in ||| 0.111111 0.229811 1.49697e-06 4.82873e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to send information ||| 0.333333 0.229811 1.49697e-06 3.73358e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to send out ||| 0.0083682 0.229811 2.99394e-06 8.64116e-08 2.718 ||| 0-0 ||| 239 668016 +a ||| to send to ||| 0.025 0.229811 1.49697e-06 2.00459e-06 2.718 ||| 0-2 ||| 40 668016 +a ||| to send ||| 0.00662252 0.229811 1.19758e-05 2.25594e-05 2.718 ||| 0-0 ||| 1208 668016 +a ||| to sending ||| 0.0434783 0.229811 1.49697e-06 8.05694e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| to sentence them to ||| 1 0.229811 1.49697e-06 1.26078e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to sentence them ||| 1 0.229811 1.49697e-06 1.41887e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to sentence ||| 0.111111 0.229811 1.49697e-06 5.28955e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| to separate out ||| 0.333333 0.229811 1.49697e-06 4.83046e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to separate ||| 0.00543478 0.229811 1.49697e-06 1.26109e-05 2.718 ||| 0-0 ||| 184 668016 +a ||| to serious ||| 0.0130719 0.229811 2.99394e-06 4.03547e-05 2.718 ||| 0-0 ||| 153 668016 +a ||| to seriously get to ||| 1 0.229811 1.49697e-06 5.67487e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| to serve as a ||| 0.0126582 0.229811 1.49697e-06 1.08378e-08 2.718 ||| 0-0 ||| 79 668016 +a ||| to serve as ||| 0.0153846 0.229811 1.49697e-06 2.44504e-07 2.718 ||| 0-0 ||| 65 668016 +a ||| to serve ||| 0.0158172 0.229811 1.34727e-05 2.39606e-05 2.718 ||| 0-0 ||| 569 668016 +a ||| to service ||| 0.0208333 0.229811 1.49697e-06 2.34352e-05 2.718 ||| 0-0 ||| 48 668016 +a ||| to services ||| 0.00584795 0.229811 1.49697e-06 3.10017e-05 2.718 ||| 0-0 ||| 171 668016 +a ||| to set about ||| 0.0357143 0.229811 1.49697e-06 2.8953e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| to set for ||| 0.1 0.0683377 1.49697e-06 1.9135e-06 2.718 ||| 0-2 ||| 10 668016 +a ||| to set goals for ||| 1 0.0683377 1.49697e-06 2.411e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| to set it ||| 0.1 0.229811 1.49697e-06 3.64051e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| to set ourselves , ||| 1 0.229811 1.49697e-06 7.76589e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to set ourselves ||| 0.047619 0.229811 1.49697e-06 6.51202e-08 2.718 ||| 0-0 ||| 21 668016 +a ||| to set out ||| 0.00727273 0.229811 2.99394e-06 7.84145e-07 2.718 ||| 0-0 ||| 275 668016 +a ||| to set up the Daphne programme . ||| 1 0.229811 1.49697e-06 6.61621e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| to set up the Daphne programme ||| 1 0.229811 1.49697e-06 2.18429e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| to set up the Daphne ||| 1 0.229811 1.49697e-06 1.71451e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to set up the ||| 0.011236 0.229811 1.49697e-06 4.28628e-08 2.718 ||| 0-0 ||| 89 668016 +a ||| to set up ||| 0.00208044 0.229811 4.49091e-06 6.98185e-07 2.718 ||| 0-0 ||| 1442 668016 +a ||| to set ||| 0.011963 0.229811 3.29333e-05 0.000204716 2.718 ||| 0-0 ||| 1839 668016 +a ||| to setting ||| 0.0126582 0.229811 1.49697e-06 3.32787e-05 2.718 ||| 0-0 ||| 79 668016 +a ||| to settle ||| 0.00677966 0.229811 2.99394e-06 2.76738e-06 2.718 ||| 0-0 ||| 295 668016 +a ||| to settled ||| 0.5 0.229811 1.49697e-06 5.81501e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to shame in ||| 1 0.229811 1.49697e-06 5.6985e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to shame ||| 0.111111 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| to shape ||| 0.00711744 0.229811 2.99394e-06 2.11932e-05 2.718 ||| 0-0 ||| 281 668016 +a ||| to share ||| 0.00154321 0.229811 1.49697e-06 3.27882e-05 2.718 ||| 0-0 ||| 648 668016 +a ||| to shed ||| 0.0136986 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-0 ||| 73 668016 +a ||| to shift ||| 0.00581395 0.229811 1.49697e-06 6.93597e-06 2.718 ||| 0-0 ||| 172 668016 +a ||| to shoot at ||| 0.111111 0.229811 1.49697e-06 2.05359e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| to shoot ||| 0.0357143 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| to short-term ||| 0.0714286 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| to shoulder against ||| 1 0.229811 1.49697e-06 1.62149e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to shoulder in order to cope ||| 1 0.229811 1.49697e-06 1.56269e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to shoulder in order to ||| 0.5 0.229811 1.49697e-06 6.88411e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to shoulder in order ||| 1 0.229811 1.49697e-06 7.7473e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to shoulder in ||| 0.0769231 0.229811 1.49697e-06 1.45462e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| to shoulder their ||| 0.037037 0.229811 1.49697e-06 7.87707e-09 2.718 ||| 0-0 ||| 27 668016 +a ||| to shoulder with ||| 0.0222222 0.229811 1.49697e-06 4.34561e-08 2.718 ||| 0-0 ||| 45 668016 +a ||| to shoulder ||| 0.0271318 0.229811 1.04788e-05 6.79585e-06 2.718 ||| 0-0 ||| 258 668016 +a ||| to show for ||| 0.030303 0.229811 1.49697e-06 3.60501e-07 2.718 ||| 0-0 ||| 33 668016 +a ||| to show solidarity with ||| 0.0172414 0.0571592 1.49697e-06 5.22424e-12 2.718 ||| 0-3 ||| 58 668016 +a ||| to show some ||| 0.025 0.229811 1.49697e-06 5.1094e-08 2.718 ||| 0-0 ||| 40 668016 +a ||| to show up ||| 0.111111 0.229811 1.49697e-06 1.59971e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to show ||| 0.00427716 0.229811 1.49697e-05 4.69054e-05 2.718 ||| 0-0 ||| 2338 668016 +a ||| to shut ||| 0.0714286 0.229811 4.49091e-06 5.42967e-06 2.718 ||| 0-0 ||| 42 668016 +a ||| to sickening ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to sign up to ||| 0.0119048 0.229811 1.49697e-06 5.54151e-09 2.718 ||| 0-3 ||| 84 668016 +a ||| to sign up ||| 0.0186916 0.229811 2.99394e-06 6.23635e-08 2.718 ||| 0-0 ||| 107 668016 +a ||| to sign ||| 0.00873362 0.229811 8.98182e-06 1.82857e-05 2.718 ||| 0-0 ||| 687 668016 +a ||| to signal ||| 0.0163934 0.229811 1.49697e-06 8.33718e-06 2.718 ||| 0-0 ||| 61 668016 +a ||| to simply ||| 0.0117647 0.229811 1.49697e-06 7.76619e-05 2.718 ||| 0-0 ||| 85 668016 +a ||| to sing from ||| 0.25 0.0435582 1.49697e-06 2.04695e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| to single out ||| 0.00961538 0.229811 1.49697e-06 2.12943e-07 2.718 ||| 0-0 ||| 104 668016 +a ||| to single ||| 0.0588235 0.229811 4.49091e-06 5.55929e-05 2.718 ||| 0-0 ||| 51 668016 +a ||| to sink down ||| 0.5 0.229811 1.49697e-06 9.78182e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to sink ||| 0.05 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| to sit around ||| 0.1 0.229811 1.49697e-06 1.76375e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| to sit down ||| 0.04 0.229811 2.99394e-06 9.24382e-09 2.718 ||| 0-0 ||| 50 668016 +a ||| to sit the exam again ||| 1 0.229811 1.49697e-06 1.88043e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to sit the exam ||| 1 0.229811 1.49697e-06 3.25165e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to sit the ||| 0.5 0.229811 1.49697e-06 8.12913e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to sit up and ||| 0.25 0.0015873 1.49697e-06 2.2103e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| to sit ||| 0.0454545 0.229811 8.98182e-06 1.32414e-05 2.718 ||| 0-0 ||| 132 668016 +a ||| to situations ||| 0.0133333 0.229811 1.49697e-06 1.19803e-05 2.718 ||| 0-0 ||| 75 668016 +a ||| to size ||| 0.1 0.229811 1.49697e-06 1.31013e-05 2.718 ||| 0-0 ||| 10 668016 +a ||| to skate ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to slaughtered hens ||| 0.5 0.229811 1.49697e-06 9.80844e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to slaughtered ||| 0.5 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to slip through ||| 0.166667 0.229811 1.49697e-06 1.04808e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to slip ||| 0.0434783 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| to small ||| 0.0105541 0.229811 5.98788e-06 4.48736e-05 2.718 ||| 0-0 ||| 379 668016 +a ||| to smooth ||| 0.0454545 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| to so much and ||| 0.5 0.229811 1.49697e-06 9.99594e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to so much ||| 0.0833333 0.229811 1.49697e-06 7.98021e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| to so ||| 0.16 0.229811 5.98788e-06 0.00079508 2.718 ||| 0-0 ||| 25 668016 +a ||| to soaring ||| 0.0909091 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| to socalled ' ||| 1 0.229811 1.49697e-06 4.813e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to socalled ||| 0.5 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to solve , ||| 0.025641 0.229811 1.49697e-06 6.47514e-07 2.718 ||| 0-0 ||| 39 668016 +a ||| to solve various ||| 1 0.229811 1.49697e-06 8.38342e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to solve ||| 0.0024855 0.229811 4.49091e-06 5.42967e-06 2.718 ||| 0-0 ||| 1207 668016 +a ||| to some Members , ||| 0.2 0.229811 1.49697e-06 6.71208e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to some Members ||| 0.0625 0.229811 1.49697e-06 5.62836e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| to some degree reassured ||| 1 0.229811 1.49697e-06 2.11397e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to some degree ||| 0.00684932 0.229811 1.49697e-06 5.28493e-08 2.718 ||| 0-0 ||| 146 668016 +a ||| to some extent to hear ||| 1 0.229811 1.49697e-06 6.61465e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to some extent to ||| 0.0833333 0.229811 1.49697e-06 6.51689e-09 2.718 ||| 0-0 ||| 12 668016 +a ||| to some extent ||| 0.00638298 0.229811 8.98182e-06 7.33404e-08 2.718 ||| 0-0 ||| 940 668016 +a ||| to some of ||| 0.0208817 0.229811 1.34727e-05 2.07444e-05 2.718 ||| 0-0 ||| 431 668016 +a ||| to some over-worked ||| 1 0.229811 1.49697e-06 1.52633e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to some ||| 0.0152849 0.229811 4.94e-05 0.000381584 2.718 ||| 0-0 ||| 2159 668016 +a ||| to someone , ||| 0.125 0.229811 1.49697e-06 2.2851e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| to someone ||| 0.0588235 0.229811 4.49091e-06 1.91615e-05 2.718 ||| 0-0 ||| 51 668016 +a ||| to something of ||| 0.5 0.229811 1.49697e-06 1.05407e-05 2.718 ||| 0-0 ||| 2 668016 +a ||| to something ||| 0.0116959 0.229811 2.99394e-06 0.000193892 2.718 ||| 0-0 ||| 171 668016 +a ||| to somewhere ||| 0.125 0.229811 1.49697e-06 7.18118e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| to sort out just ||| 1 0.229811 1.49697e-06 2.70532e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to sort out ||| 0.0166667 0.229811 2.99394e-06 2.14419e-07 2.718 ||| 0-0 ||| 120 668016 +a ||| to sort ||| 0.0222222 0.229811 2.99394e-06 5.59782e-05 2.718 ||| 0-0 ||| 90 668016 +a ||| to sound ||| 0.0210526 0.229811 2.99394e-06 2.08079e-05 2.718 ||| 0-0 ||| 95 668016 +a ||| to sources of ||| 0.0454545 0.229811 1.49697e-06 6.72246e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| to sources ||| 0.04 0.229811 1.49697e-06 1.23656e-05 2.718 ||| 0-0 ||| 25 668016 +a ||| to south ||| 0.0416667 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-0 ||| 24 668016 +a ||| to spare ||| 0.0172414 0.229811 1.49697e-06 3.53805e-06 2.718 ||| 0-0 ||| 58 668016 +a ||| to speak , ||| 0.00268817 0.229811 1.49697e-06 5.65217e-06 2.718 ||| 0-0 ||| 372 668016 +a ||| to speak as the draftsman of ||| 1 0.229811 1.49697e-06 4.53582e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to speak as the draftsman ||| 1 0.229811 1.49697e-06 8.34342e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to speak as the ||| 0.333333 0.229811 1.49697e-06 2.96919e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to speak as ||| 0.025 0.229811 1.49697e-06 4.83646e-07 2.718 ||| 0-0 ||| 40 668016 +a ||| to speak for ||| 0.00900901 0.229811 1.49697e-06 3.6427e-07 2.718 ||| 0-0 ||| 111 668016 +a ||| to speak in favour of ||| 0.0285714 0.0188479 1.49697e-06 2.46236e-12 2.718 ||| 0-4 ||| 35 668016 +a ||| to speak in ||| 0.00722022 0.144287 2.99394e-06 2.84766e-06 2.718 ||| 0-0 0-2 ||| 277 668016 +a ||| to speak of ||| 0.00657895 0.229811 1.49697e-06 2.57663e-06 2.718 ||| 0-0 ||| 152 668016 +a ||| to speak on her behalf in Parliament ||| 1 0.0782999 1.49697e-06 4.85621e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| to speak on her behalf in ||| 1 0.0782999 1.49697e-06 8.46029e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| to speak on her behalf ||| 1 0.0782999 1.49697e-06 3.95258e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| to speak on her ||| 0.5 0.0782999 1.49697e-06 1.241e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| to speak on ||| 0.00520833 0.0782999 2.99394e-06 4.56081e-07 2.718 ||| 0-2 ||| 384 668016 +a ||| to speak to ||| 0.00571429 0.229811 1.49697e-06 4.21151e-06 2.718 ||| 0-2 ||| 175 668016 +a ||| to speak ||| 0.00379816 0.229811 2.09576e-05 4.73958e-05 2.718 ||| 0-0 ||| 3686 668016 +a ||| to special ||| 0.0666667 0.229811 1.49697e-06 2.99858e-05 2.718 ||| 0-0 ||| 15 668016 +a ||| to specific ||| 0.111111 0.229811 1.34727e-05 5.29306e-05 2.718 ||| 0-0 ||| 81 668016 +a ||| to specify ||| 0.00478469 0.229811 1.49697e-06 2.52217e-06 2.718 ||| 0-0 ||| 209 668016 +a ||| to speed with ||| 0.333333 0.229811 2.99394e-06 4.43521e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to speed ||| 0.0178571 0.229811 1.49697e-06 6.93597e-06 2.718 ||| 0-0 ||| 56 668016 +a ||| to spell it out ||| 0.1 0.229811 1.49697e-06 2.05208e-10 2.718 ||| 0-0 ||| 10 668016 +a ||| to spell it ||| 0.111111 0.229811 1.49697e-06 5.35736e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| to spell ||| 0.0357143 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| to spend less ||| 0.0909091 0.229811 1.49697e-06 1.80056e-09 2.718 ||| 0-0 ||| 11 668016 +a ||| to spend ||| 0.0101156 0.229811 1.04788e-05 1.05791e-05 2.718 ||| 0-0 ||| 692 668016 +a ||| to spiritual ||| 0.5 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to spread ||| 0.00421941 0.229811 1.49697e-06 9.94857e-06 2.718 ||| 0-0 ||| 237 668016 +a ||| to spy on ||| 0.2 0.229811 2.99394e-06 2.57825e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| to spy ||| 0.2 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to stable ||| 0.25 0.229811 1.49697e-06 4.65901e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to stage ||| 0.0833333 0.229811 1.49697e-06 5.24401e-05 2.718 ||| 0-0 ||| 12 668016 +a ||| to stamp it out in ||| 1 0.0587624 1.49697e-06 1.96378e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| to stand as a ||| 0.0909091 0.229811 1.49697e-06 2.61122e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| to stand as ||| 0.0416667 0.229811 1.49697e-06 5.89097e-07 2.718 ||| 0-0 ||| 24 668016 +a ||| to stand before ||| 0.166667 0.229811 1.49697e-06 1.44382e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to stand by ||| 0.0135135 0.229811 1.49697e-06 3.03087e-07 2.718 ||| 0-0 ||| 74 668016 +a ||| to stand for the ||| 0.125 0.229811 1.49697e-06 2.72391e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to stand for ||| 0.0243902 0.229811 1.49697e-06 4.43693e-07 2.718 ||| 0-0 ||| 41 668016 +a ||| to stand shoulder to shoulder ||| 0.0909091 0.229811 1.49697e-06 1.93064e-15 2.718 ||| 0-3 ||| 11 668016 +a ||| to stand shoulder to ||| 0.111111 0.229811 1.49697e-06 9.95173e-11 2.718 ||| 0-3 ||| 9 668016 +a ||| to stand up and ||| 0.0204082 0.229811 1.49697e-06 2.46619e-09 2.718 ||| 0-0 ||| 49 668016 +a ||| to stand up for ||| 0.0196078 0.229811 2.99394e-06 1.51322e-09 2.718 ||| 0-0 ||| 102 668016 +a ||| to stand up to ||| 0.0147059 0.229811 1.49697e-06 1.7495e-08 2.718 ||| 0-3 ||| 68 668016 +a ||| to stand up ||| 0.0264317 0.229811 8.98182e-06 1.96887e-07 2.718 ||| 0-0 ||| 227 668016 +a ||| to stand ||| 0.0292505 0.229811 2.39515e-05 5.77297e-05 2.718 ||| 0-0 ||| 547 668016 +a ||| to standard ||| 0.0294118 0.229811 1.49697e-06 1.64992e-05 2.718 ||| 0-0 ||| 34 668016 +a ||| to start , ||| 0.0285714 0.229811 1.49697e-06 5.80256e-06 2.718 ||| 0-0 ||| 35 668016 +a ||| to start by congratulating ||| 0.00632911 0.243268 1.49697e-06 1.51331e-10 2.718 ||| 0-0 0-3 ||| 158 668016 +a ||| to start straightening ||| 1 0.229811 1.49697e-06 1.94628e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to start to ||| 0.0147059 0.229811 1.49697e-06 4.32356e-06 2.718 ||| 0-2 ||| 68 668016 +a ||| to start with ||| 0.00343643 0.0571592 1.49697e-06 2.06058e-07 2.718 ||| 0-2 ||| 291 668016 +a ||| to start ||| 0.00431177 0.229811 1.94606e-05 4.86569e-05 2.718 ||| 0-0 ||| 3015 668016 +a ||| to state , ||| 0.03125 0.229811 1.49697e-06 1.05524e-05 2.718 ||| 0-0 ||| 32 668016 +a ||| to state that ||| 0.00239808 0.229811 1.49697e-06 1.48848e-06 2.718 ||| 0-0 ||| 417 668016 +a ||| to state their views as ||| 0.5 0.0243476 1.49697e-06 1.8555e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| to state ||| 0.00288739 0.229811 4.49091e-06 8.84862e-05 2.718 ||| 0-0 ||| 1039 668016 +a ||| to states ||| 0.0232558 0.229811 1.49697e-06 2.63427e-05 2.718 ||| 0-0 ||| 43 668016 +a ||| to stay until ||| 0.0909091 0.229811 1.49697e-06 4.835e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| to stay ||| 0.0059761 0.229811 4.49091e-06 9.94857e-06 2.718 ||| 0-0 ||| 502 668016 +a ||| to step down ||| 0.047619 0.229811 1.49697e-06 3.60705e-08 2.718 ||| 0-0 ||| 21 668016 +a ||| to step ||| 0.0238095 0.229811 5.98788e-06 5.16695e-05 2.718 ||| 0-0 ||| 168 668016 +a ||| to steps ||| 0.25 0.229811 1.49697e-06 2.06678e-05 2.718 ||| 0-0 ||| 4 668016 +a ||| to stick precisely to ||| 0.5 0.229811 1.49697e-06 6.19966e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to stick precisely ||| 0.333333 0.229811 1.49697e-06 6.97703e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to stick to ||| 0.0078125 0.229811 1.49697e-06 6.28769e-07 2.718 ||| 0-2 ||| 128 668016 +a ||| to stick ||| 0.0171429 0.229811 4.49091e-06 7.07609e-06 2.718 ||| 0-0 ||| 175 668016 +a ||| to still ||| 0.0384615 0.229811 1.49697e-06 0.000263847 2.718 ||| 0-0 ||| 26 668016 +a ||| to stimulate ||| 0.003663 0.229811 2.99394e-06 2.27696e-06 2.718 ||| 0-0 ||| 546 668016 +a ||| to stocks in ||| 0.5 0.229811 1.49697e-06 1.64957e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to stocks ||| 0.111111 0.229811 1.49697e-06 7.70664e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| to stop at ||| 0.0322581 0.204175 1.49697e-06 2.08981e-07 2.718 ||| 0-2 ||| 31 668016 +a ||| to stop ||| 0.00364964 0.229811 1.34727e-05 2.42058e-05 2.718 ||| 0-0 ||| 2466 668016 +a ||| to store ||| 0.0188679 0.229811 1.49697e-06 5.28955e-06 2.718 ||| 0-0 ||| 53 668016 +a ||| to strengthen and ||| 0.00884956 0.229811 1.49697e-06 8.51242e-08 2.718 ||| 0-0 ||| 113 668016 +a ||| to strengthen ||| 0.000540103 0.229811 2.99394e-06 6.79585e-06 2.718 ||| 0-0 ||| 3703 668016 +a ||| to strenuously oppose ||| 1 0.284761 1.49697e-06 1.38509e-10 2.718 ||| 0-0 0-2 ||| 1 668016 +a ||| to stress and to ||| 1 0.229811 1.49697e-06 1.38803e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| to stress that this is ||| 0.0454545 0.229811 1.49697e-06 4.24815e-11 2.718 ||| 0-0 ||| 22 668016 +a ||| to stress that this ||| 0.0142857 0.229811 1.49697e-06 1.35546e-09 2.718 ||| 0-0 ||| 70 668016 +a ||| to stress that ||| 0.000816327 0.229811 1.49697e-06 2.09778e-07 2.718 ||| 0-0 ||| 1225 668016 +a ||| to stress to ||| 0.0416667 0.229811 1.49697e-06 1.10813e-06 2.718 ||| 0-2 ||| 24 668016 +a ||| to stress ||| 0.000691802 0.229811 2.99394e-06 1.24707e-05 2.718 ||| 0-0 ||| 2891 668016 +a ||| to stretch ||| 0.1 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| to strict monitoring ||| 1 0.229811 1.49697e-06 1.97528e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to strict ||| 0.0208333 0.229811 1.49697e-06 5.18446e-06 2.718 ||| 0-0 ||| 48 668016 +a ||| to strike a balance in ||| 0.2 0.229811 1.49697e-06 5.74312e-13 2.718 ||| 0-0 ||| 5 668016 +a ||| to strike a balance ||| 0.00763359 0.229811 1.49697e-06 2.68313e-11 2.718 ||| 0-0 ||| 131 668016 +a ||| to strike a ||| 0.00462963 0.229811 1.49697e-06 4.96877e-07 2.718 ||| 0-0 ||| 216 668016 +a ||| to strike them down ||| 1 0.229811 1.49697e-06 2.0991e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to strike them ||| 1 0.229811 1.49697e-06 3.00688e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to strike ||| 0.00877193 0.229811 5.98788e-06 1.12097e-05 2.718 ||| 0-0 ||| 456 668016 +a ||| to striking a blow against ||| 1 0.140636 1.49697e-06 6.96754e-15 2.718 ||| 0-0 0-4 ||| 1 668016 +a ||| to striking ||| 0.0769231 0.229811 1.49697e-06 4.4138e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| to string ||| 1 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to strive , ||| 0.5 0.229811 1.49697e-06 3.92686e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to strive ||| 0.0217391 0.229811 2.99394e-06 3.29284e-06 2.718 ||| 0-0 ||| 92 668016 +a ||| to students of ||| 0.5 0.229811 1.49697e-06 1.44733e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to students ||| 0.012987 0.229811 1.49697e-06 2.66229e-06 2.718 ||| 0-0 ||| 77 668016 +a ||| to study ||| 0.00389864 0.229811 2.99394e-06 1.18402e-05 2.718 ||| 0-0 ||| 513 668016 +a ||| to subdue ||| 0.166667 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to subject themselves ||| 0.5 0.229811 1.49697e-06 8.12532e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to subject ||| 0.0210526 0.229811 2.99394e-06 0.000189093 2.718 ||| 0-0 ||| 95 668016 +a ||| to submit any constructive ||| 1 0.229811 1.49697e-06 1.07391e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to submit any ||| 0.111111 0.229811 1.49697e-06 1.10713e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| to submit ||| 0.00426985 0.229811 7.48485e-06 7.3213e-06 2.718 ||| 0-0 ||| 1171 668016 +a ||| to subscribe to ||| 0.0333333 0.229811 1.49697e-06 9.02688e-08 2.718 ||| 0-2 ||| 30 668016 +a ||| to subsidise ||| 0.010101 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 99 668016 +a ||| to substantially build up ||| 1 0.229811 1.49697e-06 4.5891e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to substantially build ||| 1 0.229811 1.49697e-06 1.34558e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to substantially ||| 0.0588235 0.229811 1.49697e-06 3.39793e-06 2.718 ||| 0-0 ||| 17 668016 +a ||| to substantiate these claims . ||| 1 0.229811 1.49697e-06 3.65563e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to substantiate these claims ||| 1 0.229811 1.49697e-06 1.20688e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to substantiate these ||| 0.5 0.229811 1.49697e-06 3.99628e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to substantiate ||| 0.0344828 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 29 668016 +a ||| to succeed in ||| 0.00769231 0.144287 1.49697e-06 8.01891e-07 2.718 ||| 0-0 0-2 ||| 130 668016 +a ||| to succeed ||| 0.00697674 0.229811 4.49091e-06 1.33465e-05 2.718 ||| 0-0 ||| 430 668016 +a ||| to successfully implement ||| 0.142857 0.229811 1.49697e-06 6.19634e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| to successfully ||| 0.0588235 0.229811 4.49091e-06 1.11046e-05 2.718 ||| 0-0 ||| 51 668016 +a ||| to succumb to ||| 0.047619 0.229811 1.49697e-06 6.84798e-08 2.718 ||| 0-0 ||| 21 668016 +a ||| to succumb ||| 0.125 0.229811 2.99394e-06 7.70664e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| to such a degree ||| 0.0454545 0.229811 1.49697e-06 4.44926e-09 2.718 ||| 0-0 ||| 22 668016 +a ||| to such a ||| 0.0166667 0.229811 4.49091e-06 3.21246e-05 2.718 ||| 0-0 ||| 180 668016 +a ||| to such an extent ||| 0.00645161 0.229811 1.49697e-06 6.19124e-10 2.718 ||| 0-0 ||| 155 668016 +a ||| to such an ||| 0.00645161 0.229811 1.49697e-06 3.22125e-06 2.718 ||| 0-0 ||| 155 668016 +a ||| to such and such ||| 0.25 0.229811 1.49697e-06 1.87815e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to such and ||| 0.25 0.229811 1.49697e-06 9.07801e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to such events as ||| 1 0.229811 1.49697e-06 5.37655e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to such events ||| 0.2 0.229811 1.49697e-06 5.26885e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to such ||| 0.04 0.229811 5.0897e-05 0.000724739 2.718 ||| 0-0 ||| 850 668016 +a ||| to suddenly ||| 0.0714286 0.229811 1.49697e-06 4.65901e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| to suffer ||| 0.00361011 0.229811 1.49697e-06 1.24707e-05 2.718 ||| 0-0 ||| 277 668016 +a ||| to suggest ||| 0.00552486 0.229811 4.49091e-06 1.55184e-05 2.718 ||| 0-0 ||| 543 668016 +a ||| to suggesting a ||| 1 0.229811 1.49697e-06 1.50616e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to suggesting ||| 0.333333 0.229811 1.49697e-06 3.39793e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to suit ||| 0.09375 0.229811 1.34727e-05 3.53805e-06 2.718 ||| 0-0 ||| 96 668016 +a ||| to sum ||| 0.0327869 0.229811 2.99394e-06 1.47477e-05 2.718 ||| 0-0 ||| 61 668016 +a ||| to sums ||| 0.333333 0.229811 1.49697e-06 4.4138e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to supervision ||| 0.0222222 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-0 ||| 45 668016 +a ||| to supplement ||| 0.00480769 0.229811 1.49697e-06 1.40121e-06 2.718 ||| 0-0 ||| 208 668016 +a ||| to supply half ||| 0.2 0.229811 1.49697e-06 5.19567e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| to supply ||| 0.0118694 0.229811 5.98788e-06 1.80405e-05 2.718 ||| 0-0 ||| 337 668016 +a ||| to support a ||| 0.00505051 0.229811 1.49697e-06 5.30882e-06 2.718 ||| 0-0 ||| 198 668016 +a ||| to support an ||| 0.0151515 0.229811 1.49697e-06 5.32333e-07 2.718 ||| 0-0 ||| 66 668016 +a ||| to support from ||| 0.111111 0.229811 1.49697e-06 1.92875e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to support such schemes . ||| 1 0.229811 1.49697e-06 1.38101e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to support such schemes ||| 1 0.229811 1.49697e-06 4.5593e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to support such ||| 0.0294118 0.229811 1.49697e-06 2.47788e-07 2.718 ||| 0-0 ||| 34 668016 +a ||| to support the need to ||| 1 0.229811 1.49697e-06 2.36165e-09 2.718 ||| 0-0 0-4 ||| 1 668016 +a ||| to support those countries ||| 0.125 0.229811 1.49697e-06 3.29291e-11 2.718 ||| 0-0 ||| 8 668016 +a ||| to support those ||| 0.0106383 0.229811 1.49697e-06 8.67241e-08 2.718 ||| 0-0 ||| 94 668016 +a ||| to support ||| 0.00421193 0.229811 5.68849e-05 0.000119768 2.718 ||| 0-0 ||| 9022 668016 +a ||| to supporting ||| 0.0138408 0.210216 5.98788e-06 0.000401586 2.718 ||| 0-0 0-1 ||| 289 668016 +a ||| to surface ||| 0.2 0.229811 1.49697e-06 4.4138e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to survive ||| 0.0070922 0.229811 2.99394e-06 2.03175e-06 2.718 ||| 0-0 ||| 282 668016 +a ||| to sustain ||| 0.00431034 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-0 ||| 232 668016 +a ||| to sustained ||| 0.2 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to swallow ||| 0.0555556 0.229811 2.99394e-06 1.12097e-06 2.718 ||| 0-0 ||| 36 668016 +a ||| to sweet ||| 1 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to switch to ||| 0.0217391 0.229811 1.49697e-06 3.92202e-07 2.718 ||| 0-0 ||| 46 668016 +a ||| to switch ||| 0.0230769 0.229811 4.49091e-06 4.4138e-06 2.718 ||| 0-0 ||| 130 668016 +a ||| to systematic ||| 0.25 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to table ||| 0.00168919 0.229811 1.49697e-06 2.37154e-05 2.718 ||| 0-0 ||| 592 668016 +a ||| to tackle it at the next Intergovernmental ||| 1 0.204175 1.49697e-06 6.1905e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| to tackle it at the next ||| 1 0.204175 1.49697e-06 1.2381e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| to tackle it at the ||| 0.5 0.204175 1.49697e-06 1.19855e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| to tackle it at ||| 0.2 0.204175 1.49697e-06 1.95229e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| to tackle ||| 0.00443548 0.229811 1.64667e-05 1.27159e-05 2.718 ||| 0-0 ||| 2480 668016 +a ||| to tackling climate change ||| 0.125 0.229811 1.49697e-06 2.39176e-14 2.718 ||| 0-0 ||| 8 668016 +a ||| to tackling climate ||| 1 0.229811 1.49697e-06 1.96046e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to tackling ||| 0.0119048 0.229811 2.99394e-06 7.18118e-06 2.718 ||| 0-0 ||| 168 668016 +a ||| to take , ||| 0.010101 0.229811 1.49697e-06 6.72579e-05 2.718 ||| 0-0 ||| 99 668016 +a ||| to take a back seat to ||| 1 0.229811 1.49697e-06 2.42044e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| to take a brief , ||| 1 0.229811 1.49697e-06 7.18484e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to take a brief ||| 0.5 0.229811 1.49697e-06 6.02479e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to take a closer ||| 0.0588235 0.229811 1.49697e-06 5.32481e-09 2.718 ||| 0-0 ||| 17 668016 +a ||| to take a new ||| 0.125 0.229811 1.49697e-06 1.4942e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to take a stand ||| 0.0151515 0.229811 1.49697e-06 4.11985e-09 2.718 ||| 0-0 ||| 66 668016 +a ||| to take a very ||| 0.0769231 0.229811 1.49697e-06 8.69844e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| to take a ||| 0.0084686 0.229811 1.79636e-05 2.49991e-05 2.718 ||| 0-0 ||| 1417 668016 +a ||| to take account of ||| 0.00645995 0.229811 7.48485e-06 8.8149e-09 2.718 ||| 0-0 ||| 774 668016 +a ||| to take account ||| 0.00866218 0.229811 1.34727e-05 1.62146e-07 2.718 ||| 0-0 ||| 1039 668016 +a ||| to take action , then ||| 1 0.229811 1.49697e-06 3.27428e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to take action , ||| 0.0140845 0.229811 1.49697e-06 2.03321e-08 2.718 ||| 0-0 ||| 71 668016 +a ||| to take action against the ||| 0.0526316 0.229811 1.49697e-06 2.49739e-12 2.718 ||| 0-0 ||| 19 668016 +a ||| to take action against ||| 0.0142857 0.229811 1.49697e-06 4.06796e-11 2.718 ||| 0-0 ||| 70 668016 +a ||| to take action ||| 0.00311526 0.229811 4.49091e-06 1.70493e-07 2.718 ||| 0-0 ||| 963 668016 +a ||| to take advantage of ||| 0.00320513 0.229811 1.49697e-06 1.55449e-09 2.718 ||| 0-0 ||| 312 668016 +a ||| to take advantage ||| 0.0107527 0.229811 5.98788e-06 2.85941e-08 2.718 ||| 0-0 ||| 372 668016 +a ||| to take any action to ||| 0.333333 0.229811 1.49697e-06 2.29094e-11 2.718 ||| 0-4 ||| 3 668016 +a ||| to take any ||| 0.00869565 0.229811 1.49697e-06 8.52859e-07 2.718 ||| 0-0 ||| 115 668016 +a ||| to take due ||| 0.0277778 0.229811 1.49697e-06 1.55886e-07 2.718 ||| 0-0 ||| 36 668016 +a ||| to take effect ; most ||| 1 0.229811 1.49697e-06 2.50455e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to take effect ; ||| 1 0.229811 1.49697e-06 5.79488e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to take effect ||| 0.0454545 0.229811 2.99394e-06 1.88146e-07 2.718 ||| 0-0 ||| 44 668016 +a ||| to take in the ||| 0.030303 0.229811 1.49697e-06 7.41111e-07 2.718 ||| 0-0 ||| 33 668016 +a ||| to take in ||| 0.0463576 0.144287 1.04788e-05 3.38857e-05 2.718 ||| 0-0 0-2 ||| 151 668016 +a ||| to take individual and ||| 1 0.229811 1.49697e-06 9.9891e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to take individual ||| 1 0.229811 1.49697e-06 7.97476e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to take into ||| 0.00143472 0.107578 1.49697e-06 8.69e-07 2.718 ||| 0-2 ||| 697 668016 +a ||| to take matters to ||| 0.5 0.229811 1.49697e-06 9.27123e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| to take note ||| 0.00675676 0.229811 1.49697e-06 5.88801e-08 2.718 ||| 0-0 ||| 148 668016 +a ||| to take notice ||| 0.0769231 0.229811 1.49697e-06 2.17134e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| to take on in ||| 0.25 0.0685311 1.49697e-06 3.26076e-07 2.718 ||| 0-2 0-3 ||| 4 668016 +a ||| to take on ||| 0.0114943 0.0782999 7.48485e-06 5.42713e-06 2.718 ||| 0-2 ||| 435 668016 +a ||| to take out ||| 0.016129 0.229811 1.49697e-06 2.16029e-06 2.718 ||| 0-0 ||| 62 668016 +a ||| to take over ||| 0.00671141 0.229811 1.49697e-06 2.71559e-07 2.718 ||| 0-0 ||| 149 668016 +a ||| to take part in ||| 0.00651466 0.144287 5.98788e-06 4.03985e-08 2.718 ||| 0-0 0-3 ||| 614 668016 +a ||| to take part ||| 0.00890585 0.229811 1.04788e-05 6.72384e-07 2.718 ||| 0-0 ||| 786 668016 +a ||| to take photographs ||| 0.25 0.229811 1.49697e-06 3.9479e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to take place at ||| 0.027027 0.204175 1.49697e-06 7.32809e-09 2.718 ||| 0-3 ||| 37 668016 +a ||| to take place ||| 0.0121951 0.229811 1.34727e-05 8.48798e-07 2.718 ||| 0-0 ||| 738 668016 +a ||| to take real ||| 0.125 0.229811 1.49697e-06 1.01461e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| to take responsibility for ||| 0.00909091 0.229811 1.49697e-06 5.00649e-10 2.718 ||| 0-0 ||| 110 668016 +a ||| to take responsibility ||| 0.00649351 0.229811 1.49697e-06 6.51403e-08 2.718 ||| 0-0 ||| 154 668016 +a ||| to take steps to ||| 0.00934579 0.229811 1.49697e-06 2.95677e-09 2.718 ||| 0-0 ||| 107 668016 +a ||| to take steps ||| 0.0117647 0.229811 2.99394e-06 3.32751e-08 2.718 ||| 0-0 ||| 170 668016 +a ||| to take stock of ||| 0.0105263 0.0188479 1.49697e-06 1.12559e-10 2.718 ||| 0-3 ||| 95 668016 +a ||| to take stock ||| 0.00609756 0.229811 1.49697e-06 1.5002e-08 2.718 ||| 0-0 ||| 164 668016 +a ||| to take the heat ||| 0.25 0.229811 1.49697e-06 1.38496e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to take the ||| 0.00421687 0.229811 1.04788e-05 3.46241e-05 2.718 ||| 0-0 ||| 1660 668016 +a ||| to take them ||| 0.0333333 0.229811 2.99394e-06 1.51283e-06 2.718 ||| 0-0 ||| 60 668016 +a ||| to take this opportunity ||| 0.00219058 0.229811 2.99394e-06 6.5558e-10 2.718 ||| 0-0 ||| 913 668016 +a ||| to take this ||| 0.00169205 0.229811 2.99394e-06 3.64414e-06 2.718 ||| 0-0 ||| 1182 668016 +a ||| to take to heart in the ||| 1 0.229811 1.49697e-06 5.30782e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to take to heart in ||| 1 0.229811 1.49697e-06 8.64581e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to take to heart ||| 0.2 0.229811 1.49697e-06 4.03925e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to take to ||| 0.0309278 0.229811 4.49091e-06 5.01147e-05 2.718 ||| 0-2 ||| 97 668016 +a ||| to take up ||| 0.0193424 0.229811 1.49697e-05 1.92347e-06 2.718 ||| 0-0 ||| 517 668016 +a ||| to take us back ||| 0.333333 0.229811 1.49697e-06 1.09332e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to take us ||| 0.030303 0.229811 1.49697e-06 1.62552e-06 2.718 ||| 0-0 ||| 33 668016 +a ||| to take whatever ||| 0.0833333 0.229811 1.49697e-06 3.10756e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| to take with them as they leave ||| 1 0.229811 1.49697e-06 3.06097e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to take with them as they ||| 1 0.229811 1.49697e-06 3.22208e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to take with them as ||| 1 0.229811 1.49697e-06 9.87156e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to take with them ||| 0.333333 0.229811 2.99394e-06 9.67382e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to take with ||| 0.0714286 0.229811 2.99394e-06 3.60641e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| to take ||| 0.0141596 0.229811 0.000333824 0.000563986 2.718 ||| 0-0 ||| 15749 668016 +a ||| to takes steps ||| 1 0.229811 1.49697e-06 2.67028e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to takes ||| 1 0.229811 1.49697e-06 4.5259e-05 2.718 ||| 0-0 ||| 1 668016 +a ||| to taking the ||| 0.0555556 0.229811 1.49697e-06 9.1399e-06 2.718 ||| 0-0 ||| 18 668016 +a ||| to taking ||| 0.016129 0.229811 4.49091e-06 0.000148878 2.718 ||| 0-0 ||| 186 668016 +a ||| to talk about ||| 0.000971817 0.229811 1.49697e-06 3.97832e-08 2.718 ||| 0-0 ||| 1029 668016 +a ||| to talk in ||| 0.027027 0.0587624 1.49697e-06 4.28707e-07 2.718 ||| 0-2 ||| 37 668016 +a ||| to talk on ||| 0.125 0.0782999 1.49697e-06 2.70682e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| to talk ||| 0.00401606 0.229811 5.98788e-06 2.81292e-05 2.718 ||| 0-0 ||| 996 668016 +a ||| to tar ||| 0.0666667 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| to target ||| 0.00694444 0.229811 1.49697e-06 1.32414e-05 2.718 ||| 0-0 ||| 144 668016 +a ||| to task ||| 0.111111 0.229811 7.48485e-06 4.4138e-05 2.718 ||| 0-0 ||| 45 668016 +a ||| to tax and ||| 0.2 0.229811 1.49697e-06 2.7775e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to tax ||| 0.013245 0.229811 2.99394e-06 2.21741e-05 2.718 ||| 0-0 ||| 151 668016 +a ||| to taxation ||| 0.0147059 0.229811 1.49697e-06 3.01259e-06 2.718 ||| 0-0 ||| 68 668016 +a ||| to teach and ||| 0.166667 0.229811 1.49697e-06 1.27247e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to teach in ||| 0.25 0.131191 1.49697e-06 4.38317e-07 2.718 ||| 0-1 0-2 ||| 4 668016 +a ||| to teach ||| 0.0196078 0.229811 2.99394e-06 1.01587e-06 2.718 ||| 0-0 ||| 102 668016 +a ||| to tell him ||| 0.0169492 0.229811 1.49697e-06 1.10285e-08 2.718 ||| 0-0 ||| 59 668016 +a ||| to tell me which ||| 0.5 0.229811 1.49697e-06 1.7594e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to tell me ||| 0.00970874 0.229811 1.49697e-06 2.0712e-08 2.718 ||| 0-0 ||| 103 668016 +a ||| to tell one ||| 0.333333 0.229811 1.49697e-06 1.43378e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to tell them ||| 0.0153846 0.229811 1.49697e-06 9.22735e-08 2.718 ||| 0-0 ||| 65 668016 +a ||| to tell ||| 0.00934579 0.229811 1.64667e-05 3.43996e-05 2.718 ||| 0-0 ||| 1177 668016 +a ||| to tempt ||| 0.2 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to term these on-going ||| 0.333333 0.229811 1.49697e-06 1.868e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| to term these ||| 0.333333 0.229811 1.49697e-06 3.97448e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to term ||| 0.125 0.229811 1.49697e-06 3.8323e-05 2.718 ||| 0-0 ||| 8 668016 +a ||| to terms with ||| 0.030303 0.229811 2.99394e-06 2.45863e-06 2.718 ||| 0-0 ||| 66 668016 +a ||| to terms ||| 0.0483871 0.229811 4.49091e-06 0.000384491 2.718 ||| 0-0 ||| 62 668016 +a ||| to terrorism ||| 0.00555556 0.229811 1.49697e-06 9.07281e-06 2.718 ||| 0-0 ||| 180 668016 +a ||| to thank for ||| 0.0338983 0.229811 2.99394e-06 2.84847e-07 2.718 ||| 0-0 ||| 59 668016 +a ||| to thank him ||| 0.00505051 0.229811 1.49697e-06 1.1882e-08 2.718 ||| 0-0 ||| 198 668016 +a ||| to thank three people ||| 1 0.229811 1.49697e-06 2.06497e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to thank three ||| 0.5 0.229811 1.49697e-06 2.34602e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to thank ||| 0.00458273 0.229811 8.53273e-05 3.70619e-05 2.718 ||| 0-0 ||| 12438 668016 +a ||| to that , some ||| 1 0.229811 1.49697e-06 7.65478e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to that , ||| 0.00543478 0.229811 1.49697e-06 0.000702724 2.718 ||| 0-0 ||| 184 668016 +a ||| to that effect ||| 0.00389105 0.229811 1.49697e-06 1.96578e-06 2.718 ||| 0-0 ||| 257 668016 +a ||| to that end , ||| 0.0045045 0.229811 1.49697e-06 3.05755e-07 2.718 ||| 0-0 ||| 222 668016 +a ||| to that end in ||| 0.25 0.0587624 1.49697e-06 3.90753e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| to that end ||| 0.00607287 0.229811 4.49091e-06 2.56388e-06 2.718 ||| 0-0 ||| 494 668016 +a ||| to that event ||| 0.333333 0.229811 1.49697e-06 6.15191e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to that fact ||| 0.125 0.229811 1.49697e-06 1.72613e-05 2.718 ||| 0-0 ||| 8 668016 +a ||| to that held in ||| 1 0.229811 1.49697e-06 3.21755e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to that held ||| 0.333333 0.229811 1.49697e-06 1.50321e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to that in which we treat ||| 1 0.0587624 1.49697e-06 1.43763e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| to that in which we ||| 1 0.0587624 1.49697e-06 8.66043e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| to that in which ||| 0.5 0.0587624 1.49697e-06 7.62879e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| to that in ||| 0.0340909 0.0587624 4.49091e-06 8.98075e-05 2.718 ||| 0-2 ||| 88 668016 +a ||| to that of others ||| 0.333333 0.229811 1.49697e-06 3.11377e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to that of ||| 0.03125 0.229811 1.64667e-05 0.000320347 2.718 ||| 0-0 ||| 352 668016 +a ||| to that point in ||| 0.166667 0.144287 1.49697e-06 3.09718e-07 2.718 ||| 0-0 0-3 ||| 6 668016 +a ||| to that which is ||| 0.125 0.229811 1.49697e-06 1.5688e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| to that which would be ||| 0.5 0.229811 1.49697e-06 5.3238e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to that which would ||| 0.5 0.229811 1.49697e-06 2.93761e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to that which ||| 0.0357143 0.229811 2.99394e-06 5.00556e-05 2.718 ||| 0-0 ||| 56 668016 +a ||| to that ||| 0.0159627 0.229811 9.73031e-05 0.00589263 2.718 ||| 0-0 ||| 4072 668016 +a ||| to the ' ||| 0.00729927 0.229811 1.49697e-06 7.38697e-05 2.718 ||| 0-0 ||| 137 668016 +a ||| to the Americans or the ||| 0.5 0.229811 1.49697e-06 1.4189e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to the Americans or ||| 0.333333 0.229811 1.49697e-06 2.31122e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to the Americans ||| 0.0113636 0.229811 1.49697e-06 2.02153e-07 2.718 ||| 0-0 ||| 88 668016 +a ||| to the City of ||| 0.166667 0.12433 1.49697e-06 2.73525e-09 2.718 ||| 0-0 0-3 ||| 6 668016 +a ||| to the City ||| 0.142857 0.229811 1.49697e-06 9.24743e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| to the Commission proposal - are aimed ||| 1 0.229811 1.49697e-06 9.97812e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| to the Commission proposal - are ||| 1 0.229811 1.49697e-06 1.4357e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to the Commission proposal - ||| 0.5 0.229811 1.49697e-06 9.46239e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to the Commission proposal ||| 0.00578035 0.229811 1.49697e-06 2.50852e-09 2.718 ||| 0-0 ||| 173 668016 +a ||| to the Commission ||| 0.000164555 0.229811 1.49697e-06 1.25614e-05 2.718 ||| 0-0 ||| 6077 668016 +a ||| to the Commissioner ||| 0.0010627 0.229811 1.49697e-06 1.8968e-06 2.718 ||| 0-0 ||| 941 668016 +a ||| to the Council and ||| 0.00110988 0.229811 1.49697e-06 9.31508e-08 2.718 ||| 0-0 ||| 901 668016 +a ||| to the Council ||| 0.000283447 0.229811 1.49697e-06 7.43665e-06 2.718 ||| 0-0 ||| 3528 668016 +a ||| to the EU ||| 0.00120265 0.229811 2.99394e-06 1.0641e-05 2.718 ||| 0-0 ||| 1663 668016 +a ||| to the Egyptians ||| 0.25 0.229811 1.49697e-06 1.5054e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to the Europe ||| 0.02 0.229811 1.49697e-06 1.08819e-05 2.718 ||| 0-0 ||| 50 668016 +a ||| to the European Parliament ||| 0.000574383 0.229811 1.49697e-06 4.12779e-08 2.718 ||| 0-0 ||| 1741 668016 +a ||| to the European ||| 0.00225225 0.229811 1.49697e-06 7.19127e-05 2.718 ||| 0-0 ||| 444 668016 +a ||| to the ICC ||| 0.0434783 0.229811 1.49697e-06 4.73124e-08 2.718 ||| 0-0 ||| 23 668016 +a ||| to the Order ||| 1 0.229811 1.49697e-06 1.07528e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to the President-in-Office to ||| 0.2 0.229811 1.49697e-06 1.00325e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| to the South also in terms of ||| 1 0.229811 1.49697e-06 2.99528e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to the South also in terms ||| 1 0.229811 1.49697e-06 5.50968e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to the South also in ||| 1 0.229811 1.49697e-06 5.01975e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to the South also ||| 1 0.229811 1.49697e-06 2.34519e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to the South ||| 0.04 0.229811 1.49697e-06 4.64522e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| to the Status ||| 0.0833333 0.229811 1.49697e-06 4.73124e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| to the USD ||| 1 0.229811 1.49697e-06 3.18284e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to the Union ||| 0.00181818 0.229811 1.49697e-06 1.19872e-05 2.718 ||| 0-0 ||| 550 668016 +a ||| to the adoption of ||| 0.00465116 0.229811 1.49697e-06 5.3897e-08 2.718 ||| 0-0 ||| 215 668016 +a ||| to the adoption ||| 0.0037594 0.229811 1.49697e-06 9.9141e-07 2.718 ||| 0-0 ||| 266 668016 +a ||| to the aid of ||| 0.0357143 0.0188479 1.49697e-06 2.1073e-08 2.718 ||| 0-3 ||| 28 668016 +a ||| to the ambitious ||| 0.1 0.229811 1.49697e-06 2.47315e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| to the appointment of ||| 0.04 0.229811 1.49697e-06 1.3445e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| to the appointment ||| 0.0263158 0.229811 1.49697e-06 2.47315e-07 2.718 ||| 0-0 ||| 38 668016 +a ||| to the area ||| 0.00436681 0.229811 1.49697e-06 8.93129e-06 2.718 ||| 0-0 ||| 229 668016 +a ||| to the attempts to ||| 0.333333 0.229811 1.49697e-06 6.05772e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| to the attention of ||| 0.008 0.229811 1.49697e-06 3.05494e-07 2.718 ||| 0-0 ||| 125 668016 +a ||| to the attention ||| 0.0175439 0.229811 4.49091e-06 5.61943e-06 2.718 ||| 0-0 ||| 171 668016 +a ||| to the ball ||| 1 0.229811 1.49697e-06 2.02153e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to the best of ||| 0.0363636 0.229811 2.99394e-06 1.61925e-07 2.718 ||| 0-0 ||| 55 668016 +a ||| to the best ||| 0.0131579 0.229811 2.99394e-06 2.97853e-06 2.718 ||| 0-0 ||| 152 668016 +a ||| to the better ||| 0.04 0.229811 1.49697e-06 3.65381e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| to the cause ||| 0.0138889 0.229811 1.49697e-06 3.88607e-06 2.718 ||| 0-0 ||| 72 668016 +a ||| to the citizens in a ||| 1 0.229811 1.49697e-06 2.22403e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to the citizens in ||| 0.0666667 0.229811 1.49697e-06 5.01746e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| to the citizens ||| 0.00116009 0.229811 1.49697e-06 2.34412e-06 2.718 ||| 0-0 ||| 862 668016 +a ||| to the claim ||| 0.2 0.229811 1.49697e-06 1.01292e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to the collapse ||| 0.025 0.229811 1.49697e-06 2.23659e-07 2.718 ||| 0-0 ||| 40 668016 +a ||| to the concerns ||| 0.00520833 0.229811 1.49697e-06 1.61077e-06 2.718 ||| 0-0 ||| 192 668016 +a ||| to the conclusion of ||| 0.0185185 0.12433 1.49697e-06 5.62953e-08 2.718 ||| 0-0 0-3 ||| 54 668016 +a ||| to the conflict shows the depth ||| 1 0.229811 1.49697e-06 3.16326e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to the conflict shows the ||| 1 0.229811 1.49697e-06 2.19671e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to the conflict shows ||| 1 0.229811 1.49697e-06 3.57817e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to the conflict ||| 0.0031746 0.229811 1.49697e-06 8.96785e-07 2.718 ||| 0-0 ||| 315 668016 +a ||| to the consensus of ||| 0.333333 0.0188479 1.49697e-06 2.50101e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| to the consequences of ||| 0.0135135 0.229811 1.49697e-06 4.96881e-08 2.718 ||| 0-0 ||| 74 668016 +a ||| to the consequences ||| 0.00884956 0.229811 1.49697e-06 9.1399e-07 2.718 ||| 0-0 ||| 113 668016 +a ||| to the contrary ||| 0.0106383 0.229811 1.49697e-06 1.08388e-06 2.718 ||| 0-0 ||| 94 668016 +a ||| to the contribution of ||| 0.0454545 0.229811 1.49697e-06 1.05222e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| to the contribution ||| 0.02 0.229811 1.49697e-06 1.93551e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| to the creation ||| 0.00197628 0.229811 1.49697e-06 9.97862e-07 2.718 ||| 0-0 ||| 506 668016 +a ||| to the de facto ||| 1 0.229811 1.49697e-06 6.91364e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to the de ||| 1 0.229811 1.49697e-06 7.35493e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to the death ||| 0.0227273 0.229811 1.49697e-06 1.16776e-06 2.718 ||| 0-0 ||| 44 668016 +a ||| to the debate ||| 0.00141643 0.229811 1.49697e-06 4.25597e-06 2.718 ||| 0-0 ||| 706 668016 +a ||| to the delegation ||| 0.0434783 0.229811 1.49697e-06 3.09681e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| to the demands ||| 0.00549451 0.229811 1.49697e-06 8.27967e-07 2.718 ||| 0-0 ||| 182 668016 +a ||| to the democratic will of ||| 0.5 0.229811 1.49697e-06 3.02421e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to the democratic will ||| 0.333333 0.229811 1.49697e-06 5.56288e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to the democratic ||| 0.25 0.229811 1.49697e-06 6.43019e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to the development of ||| 0.00126582 0.229811 1.49697e-06 1.92322e-07 2.718 ||| 0-0 ||| 790 668016 +a ||| to the development ||| 0.00112994 0.229811 1.49697e-06 3.53768e-06 2.718 ||| 0-0 ||| 885 668016 +a ||| to the early ||| 0.0344828 0.229811 1.49697e-06 1.45593e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| to the economy of a ||| 1 0.229811 1.49697e-06 2.70515e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to the economy of ||| 0.0555556 0.229811 1.49697e-06 6.10287e-08 2.718 ||| 0-0 ||| 18 668016 +a ||| to the economy ||| 0.00456621 0.229811 1.49697e-06 1.12259e-06 2.718 ||| 0-0 ||| 219 668016 +a ||| to the effect ||| 0.00945378 0.229811 1.34727e-05 7.17428e-06 2.718 ||| 0-0 ||| 952 668016 +a ||| to the end ||| 0.00271739 0.229811 1.49697e-06 9.35711e-06 2.718 ||| 0-0 ||| 368 668016 +a ||| to the establishment of ||| 0.00549451 0.229811 1.49697e-06 5.2611e-08 2.718 ||| 0-0 ||| 182 668016 +a ||| to the establishment ||| 0.00925926 0.229811 2.99394e-06 9.67754e-07 2.718 ||| 0-0 ||| 216 668016 +a ||| to the example of ||| 0.0666667 0.0188479 1.49697e-06 4.69706e-08 2.718 ||| 0-3 ||| 15 668016 +a ||| to the exclusion of ||| 0.02 0.229811 1.49697e-06 9.7038e-09 2.718 ||| 0-0 ||| 50 668016 +a ||| to the exclusion ||| 0.0166667 0.229811 1.49697e-06 1.78497e-07 2.718 ||| 0-0 ||| 60 668016 +a ||| to the expression ||| 0.1 0.229811 1.49697e-06 8.7528e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| to the extent contained ||| 1 0.229811 1.49697e-06 2.8107e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to the extent that ||| 0.00311526 0.229811 1.49697e-06 6.95302e-08 2.718 ||| 0-0 ||| 321 668016 +a ||| to the extent ||| 0.00948767 0.229811 7.48485e-06 4.13339e-06 2.718 ||| 0-0 ||| 527 668016 +a ||| to the fact that a ||| 0.0909091 0.229811 1.49697e-06 4.69721e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| to the fact that the ||| 0.00675676 0.229811 2.99394e-06 6.5057e-08 2.718 ||| 0-0 ||| 296 668016 +a ||| to the fact that we have had ||| 1 0.229811 1.49697e-06 1.44409e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to the fact that we have ||| 0.047619 0.229811 1.49697e-06 1.43877e-10 2.718 ||| 0-0 ||| 21 668016 +a ||| to the fact that we ||| 0.0384615 0.229811 1.49697e-06 1.20301e-08 2.718 ||| 0-0 ||| 26 668016 +a ||| to the fact that ||| 0.00543478 0.229811 1.19758e-05 1.0597e-06 2.718 ||| 0-0 ||| 1472 668016 +a ||| to the fact ||| 0.0820799 0.229811 0.000285921 6.29965e-05 2.718 ||| 0-0 ||| 2327 668016 +a ||| to the farmers who constitute ||| 1 0.229811 1.49697e-06 2.33909e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to the farmers who ||| 0.333333 0.229811 1.49697e-06 7.6441e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to the farmers ||| 0.0144928 0.229811 1.49697e-06 8.66678e-07 2.718 ||| 0-0 ||| 69 668016 +a ||| to the field of ||| 0.0208333 0.229811 1.49697e-06 1.7081e-07 2.718 ||| 0-0 ||| 48 668016 +a ||| to the field ||| 0.0204082 0.229811 1.49697e-06 3.14197e-06 2.718 ||| 0-0 ||| 49 668016 +a ||| to the figure for ||| 0.333333 0.229811 1.49697e-06 1.26113e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to the figure ||| 0.142857 0.229811 1.49697e-06 1.64088e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| to the final value of ||| 1 0.229811 1.49697e-06 7.83219e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to the final value ||| 1 0.229811 1.49697e-06 1.44069e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to the final ||| 0.0512821 0.229811 2.99394e-06 1.64088e-06 2.718 ||| 0-0 ||| 39 668016 +a ||| to the flag ||| 0.25 0.229811 1.49697e-06 1.46238e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to the following ||| 0.00909091 0.150927 1.49697e-06 2.12003e-05 2.718 ||| 0-0 0-2 ||| 110 668016 +a ||| to the fore ||| 0.00606061 0.229811 1.49697e-06 2.47315e-07 2.718 ||| 0-0 ||| 165 668016 +a ||| to the formation of ||| 0.0294118 0.229811 1.49697e-06 4.67653e-09 2.718 ||| 0-0 ||| 34 668016 +a ||| to the formation ||| 0.0238095 0.229811 1.49697e-06 8.60226e-08 2.718 ||| 0-0 ||| 42 668016 +a ||| to the framework of ||| 0.0555556 0.0188479 1.49697e-06 1.92175e-08 2.718 ||| 0-3 ||| 18 668016 +a ||| to the frequent ||| 0.333333 0.229811 1.49697e-06 9.24743e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to the general resources ||| 0.2 0.229811 1.49697e-06 2.69312e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| to the general ||| 0.0153846 0.229811 1.49697e-06 3.76134e-06 2.718 ||| 0-0 ||| 65 668016 +a ||| to the government 's ||| 0.5 0.229811 1.49697e-06 3.27233e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to the government ||| 0.00625 0.229811 1.49697e-06 1.7183e-06 2.718 ||| 0-0 ||| 160 668016 +a ||| to the ground ||| 0.0625 0.229811 4.49091e-06 2.51616e-06 2.718 ||| 0-0 ||| 48 668016 +a ||| to the heart ||| 0.00558659 0.229811 1.49697e-06 1.73336e-06 2.718 ||| 0-0 ||| 179 668016 +a ||| to the idea of ||| 0.00917431 0.229811 2.99394e-06 2.6212e-07 2.718 ||| 0-0 ||| 218 668016 +a ||| to the idea ||| 0.00950119 0.229811 5.98788e-06 4.82157e-06 2.718 ||| 0-0 ||| 421 668016 +a ||| to the improved infrastructure ||| 1 0.229811 1.49697e-06 3.51488e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to the improved ||| 0.1 0.229811 1.49697e-06 4.88178e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| to the industry ||| 0.0123457 0.229811 1.49697e-06 2.8409e-06 2.718 ||| 0-0 ||| 81 668016 +a ||| to the institutions ||| 0.00793651 0.229811 1.49697e-06 1.12905e-06 2.718 ||| 0-0 ||| 126 668016 +a ||| to the institutions ’ ||| 1 0.229811 1.49697e-06 1.96691e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to the interests of ||| 0.00490196 0.229811 1.49697e-06 1.60288e-07 2.718 ||| 0-0 ||| 204 668016 +a ||| to the interests ||| 0.00423729 0.229811 1.49697e-06 2.94842e-06 2.718 ||| 0-0 ||| 236 668016 +a ||| to the issues ||| 0.00549451 0.229811 1.49697e-06 5.40867e-06 2.718 ||| 0-0 ||| 182 668016 +a ||| to the large number ||| 0.111111 0.229811 1.49697e-06 1.63552e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| to the large ||| 0.0147059 0.229811 1.49697e-06 3.30542e-06 2.718 ||| 0-0 ||| 68 668016 +a ||| to the level of the ||| 0.027027 0.229811 1.49697e-06 6.13965e-08 2.718 ||| 0-0 ||| 37 668016 +a ||| to the level of ||| 0.0124224 0.229811 2.99394e-06 1.00008e-06 2.718 ||| 0-0 ||| 161 668016 +a ||| to the level ||| 0.0183486 0.229811 5.98788e-06 1.83959e-05 2.718 ||| 0-0 ||| 218 668016 +a ||| to the liberalization ||| 0.0833333 0.229811 1.49697e-06 4.73124e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| to the list ||| 0.00591716 0.229811 1.49697e-06 1.57206e-06 2.718 ||| 0-0 ||| 169 668016 +a ||| to the market ||| 0.00251889 0.229811 1.49697e-06 4.86028e-06 2.718 ||| 0-0 ||| 397 668016 +a ||| to the mills of ||| 0.5 0.0188479 1.49697e-06 1.77491e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| to the most ||| 0.0238095 0.229811 2.99394e-06 9.29474e-06 2.718 ||| 0-0 ||| 84 668016 +a ||| to the need ||| 0.00114679 0.229811 1.49697e-06 1.97185e-05 2.718 ||| 0-0 ||| 872 668016 +a ||| to the needs ||| 0.00199203 0.229811 1.49697e-06 4.26457e-06 2.718 ||| 0-0 ||| 502 668016 +a ||| to the next ||| 0.00194932 0.229811 1.49697e-06 2.22153e-06 2.718 ||| 0-0 ||| 513 668016 +a ||| to the noise of ||| 1 0.229811 1.49697e-06 1.60171e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to the noise ||| 0.333333 0.229811 1.49697e-06 2.94627e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to the obligation ||| 0.0333333 0.229811 1.49697e-06 4.40866e-07 2.718 ||| 0-0 ||| 30 668016 +a ||| to the ordinary procedure ||| 0.5 0.229811 1.49697e-06 3.97287e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to the ordinary ||| 0.111111 0.229811 1.49697e-06 3.95704e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to the other committee ||| 1 0.229811 1.49697e-06 2.15641e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to the other ||| 0.00158479 0.229811 1.49697e-06 2.78606e-05 2.718 ||| 0-0 ||| 631 668016 +a ||| to the people in a ||| 0.333333 0.0296724 1.49697e-06 1.21918e-10 2.718 ||| 0-3 0-4 ||| 3 668016 +a ||| to the people ||| 0.0016 0.229811 2.99394e-06 1.89293e-05 2.718 ||| 0-0 ||| 1250 668016 +a ||| to the phrase ||| 0.111111 0.229811 1.49697e-06 2.86025e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to the point of ||| 0.018018 0.229811 2.99394e-06 1.02276e-06 2.718 ||| 0-0 ||| 111 668016 +a ||| to the point where we ||| 0.0588235 0.229811 1.49697e-06 6.47124e-11 2.718 ||| 0-0 ||| 17 668016 +a ||| to the point where ||| 0.0106383 0.229811 1.49697e-06 5.70038e-09 2.718 ||| 0-0 ||| 94 668016 +a ||| to the point ||| 0.00780031 0.229811 7.48485e-06 1.88131e-05 2.718 ||| 0-0 ||| 641 668016 +a ||| to the positive moves ||| 1 0.229811 1.49697e-06 3.03337e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to the positive ||| 0.0909091 0.229811 1.49697e-06 1.95701e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| to the possibility of ||| 0.00571429 0.0188479 1.49697e-06 1.3812e-08 2.718 ||| 0-3 ||| 175 668016 +a ||| to the possible ||| 0.0125 0.229811 1.49697e-06 1.72497e-05 2.718 ||| 0-0 ||| 80 668016 +a ||| to the practice of ||| 0.0384615 0.229811 1.49697e-06 1.23227e-07 2.718 ||| 0-0 ||| 26 668016 +a ||| to the practice ||| 0.0238095 0.229811 1.49697e-06 2.2667e-06 2.718 ||| 0-0 ||| 42 668016 +a ||| to the preparation of this report ||| 0.142857 0.229811 1.49697e-06 3.77771e-14 2.718 ||| 0-0 ||| 7 668016 +a ||| to the preparation of this ||| 0.111111 0.229811 1.49697e-06 9.21617e-11 2.718 ||| 0-0 ||| 9 668016 +a ||| to the preparation of ||| 0.0263158 0.229811 1.49697e-06 1.42634e-08 2.718 ||| 0-0 ||| 38 668016 +a ||| to the preparation ||| 0.015873 0.229811 1.49697e-06 2.62369e-07 2.718 ||| 0-0 ||| 63 668016 +a ||| to the preparations ||| 0.0357143 0.229811 1.49697e-06 1.84949e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| to the present debate ||| 0.333333 0.229811 1.49697e-06 1.55768e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to the present ||| 0.00719424 0.229811 1.49697e-06 7.87107e-06 2.718 ||| 0-0 ||| 139 668016 +a ||| to the principle of ||| 0.00240964 0.229811 1.49697e-06 1.79228e-07 2.718 ||| 0-0 ||| 415 668016 +a ||| to the principle ||| 0.00610998 0.229811 4.49091e-06 3.29682e-06 2.718 ||| 0-0 ||| 491 668016 +a ||| to the problems of ||| 0.00645161 0.229811 1.49697e-06 1.56898e-07 2.718 ||| 0-0 ||| 155 668016 +a ||| to the problems ||| 0.00163934 0.229811 1.49697e-06 2.88606e-06 2.718 ||| 0-0 ||| 610 668016 +a ||| to the procedure of ||| 0.25 0.229811 1.49697e-06 1.17381e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to the procedure ||| 0.00917431 0.229811 1.49697e-06 2.15917e-06 2.718 ||| 0-0 ||| 109 668016 +a ||| to the process of ||| 0.0170455 0.229811 4.49091e-06 4.99804e-07 2.718 ||| 0-0 ||| 176 668016 +a ||| to the process ||| 0.00787402 0.229811 2.99394e-06 9.19366e-06 2.718 ||| 0-0 ||| 254 668016 +a ||| to the protection of ||| 0.00286533 0.229811 1.49697e-06 1.18667e-07 2.718 ||| 0-0 ||| 349 668016 +a ||| to the protection ||| 0.00224719 0.229811 1.49697e-06 2.18282e-06 2.718 ||| 0-0 ||| 445 668016 +a ||| to the public ||| 0.00120192 0.229811 1.49697e-06 3.47531e-06 2.718 ||| 0-0 ||| 832 668016 +a ||| to the pursuit of ||| 0.030303 0.229811 1.49697e-06 2.89945e-08 2.718 ||| 0-0 ||| 33 668016 +a ||| to the pursuit ||| 0.0285714 0.229811 1.49697e-06 5.3334e-07 2.718 ||| 0-0 ||| 35 668016 +a ||| to the question of the number of ||| 1 0.229811 1.49697e-06 1.59727e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to the question of the number ||| 1 0.229811 1.49697e-06 2.9381e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to the question of the ||| 0.00826446 0.229811 1.49697e-06 5.93796e-08 2.718 ||| 0-0 ||| 121 668016 +a ||| to the question of ||| 0.003367 0.229811 2.99394e-06 9.67224e-07 2.718 ||| 0-0 ||| 594 668016 +a ||| to the question ||| 0.00371402 0.229811 5.98788e-06 1.77916e-05 2.718 ||| 0-0 ||| 1077 668016 +a ||| to the rapporteur , that she will ||| 1 0.229811 1.49697e-06 7.67162e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to the rapporteur , that she ||| 1 0.229811 1.49697e-06 8.86769e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to the rapporteur , that ||| 1 0.229811 1.49697e-06 3.11913e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to the rapporteur , ||| 0.00178571 0.229811 1.49697e-06 1.85424e-07 2.718 ||| 0-0 ||| 560 668016 +a ||| to the rapporteur ||| 0.000763359 0.229811 1.49697e-06 1.55486e-06 2.718 ||| 0-0 ||| 1310 668016 +a ||| to the rejection of ||| 0.142857 0.229811 1.49697e-06 1.00545e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| to the rejection ||| 0.0714286 0.229811 1.49697e-06 1.84949e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| to the repugnant ||| 1 0.229811 1.49697e-06 1.5054e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to the responsible ||| 0.2 0.229811 1.49697e-06 3.18069e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to the rest of ||| 0.0208333 0.229811 2.99394e-06 8.83864e-08 2.718 ||| 0-0 ||| 96 668016 +a ||| to the rest ||| 0.00381679 0.229811 1.49697e-06 1.62583e-06 2.718 ||| 0-0 ||| 262 668016 +a ||| to the revision ||| 0.0196078 0.229811 1.49697e-06 2.47315e-07 2.718 ||| 0-0 ||| 51 668016 +a ||| to the right ||| 0.00429185 0.229811 1.49697e-06 1.3869e-05 2.718 ||| 0-0 ||| 233 668016 +a ||| to the role that the ||| 0.2 0.229811 1.49697e-06 4.93041e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to the role that ||| 0.0588235 0.229811 1.49697e-06 8.03106e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| to the role ||| 0.00404858 0.229811 1.49697e-06 4.77425e-06 2.718 ||| 0-0 ||| 247 668016 +a ||| to the same thing as ||| 1 0.229811 1.49697e-06 6.44389e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to the same thing ||| 0.0434783 0.229811 1.49697e-06 6.31481e-09 2.718 ||| 0-0 ||| 23 668016 +a ||| to the same ||| 0.00308166 0.229811 2.99394e-06 1.73056e-05 2.718 ||| 0-0 ||| 649 668016 +a ||| to the satellite sector . ||| 1 0.229811 1.49697e-06 4.35478e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to the satellite sector ||| 1 0.229811 1.49697e-06 1.4377e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to the satellite ||| 1 0.229811 1.49697e-06 7.74203e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to the satisfaction of a ||| 1 0.0188479 1.49697e-06 8.51114e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| to the satisfaction of ||| 0.03125 0.0188479 1.49697e-06 1.92013e-09 2.718 ||| 0-3 ||| 32 668016 +a ||| to the search ||| 0.0357143 0.229811 1.49697e-06 3.01079e-07 2.718 ||| 0-0 ||| 28 668016 +a ||| to the service operating ||| 1 0.229811 1.49697e-06 6.47427e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to the service ||| 0.030303 0.229811 1.49697e-06 1.43873e-06 2.718 ||| 0-0 ||| 33 668016 +a ||| to the situation in ||| 0.00403226 0.144287 1.49697e-06 6.65438e-07 2.718 ||| 0-0 0-3 ||| 248 668016 +a ||| to the situation ||| 0.00150376 0.229811 1.49697e-06 1.10754e-05 2.718 ||| 0-0 ||| 665 668016 +a ||| to the sort ||| 0.0833333 0.229811 1.49697e-06 3.4366e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| to the southernmost tip of Europe ||| 0.5 0.229811 1.49697e-06 4.25939e-19 2.718 ||| 0-0 ||| 2 668016 +a ||| to the southernmost tip of ||| 0.25 0.229811 1.49697e-06 8.41776e-16 2.718 ||| 0-0 ||| 4 668016 +a ||| to the southernmost tip ||| 0.25 0.229811 1.49697e-06 1.54841e-14 2.718 ||| 0-0 ||| 4 668016 +a ||| to the southernmost ||| 0.5 0.229811 1.49697e-06 8.60226e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to the stage ||| 0.0344828 0.229811 1.49697e-06 3.2194e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| to the state of ||| 0.0238095 0.229811 1.49697e-06 2.95323e-07 2.718 ||| 0-0 ||| 42 668016 +a ||| to the state ||| 0.0111111 0.229811 1.49697e-06 5.43233e-06 2.718 ||| 0-0 ||| 90 668016 +a ||| to the status ||| 0.010989 0.229811 1.49697e-06 2.17422e-06 2.718 ||| 0-0 ||| 91 668016 +a ||| to the structural funds ||| 0.0217391 0.229811 1.49697e-06 2.54337e-11 2.718 ||| 0-0 ||| 46 668016 +a ||| to the structural ||| 1 0.229811 1.49697e-06 3.33338e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to the table ||| 0.00970874 0.229811 1.49697e-06 1.45593e-06 2.718 ||| 0-0 ||| 103 668016 +a ||| to the tactic used ||| 1 0.229811 1.49697e-06 1.01485e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to the tactic ||| 0.5 0.229811 1.49697e-06 2.36562e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to the tactics used ||| 0.5 0.229811 1.49697e-06 5.62781e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to the tactics ||| 0.333333 0.229811 1.49697e-06 1.31184e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to the target ||| 0.0714286 0.229811 1.49697e-06 8.12913e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| to the task of ||| 0.0172414 0.0188479 1.49697e-06 2.03308e-08 2.718 ||| 0-3 ||| 58 668016 +a ||| to the task ||| 0.00621118 0.229811 1.49697e-06 2.70971e-06 2.718 ||| 0-0 ||| 161 668016 +a ||| to the taste ||| 0.333333 0.229811 1.49697e-06 6.88181e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to the taxation regime ||| 1 0.229811 1.49697e-06 5.19705e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to the taxation ||| 0.047619 0.229811 1.49697e-06 1.84949e-07 2.718 ||| 0-0 ||| 21 668016 +a ||| to the things ||| 0.0909091 0.229811 1.49697e-06 8.83882e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| to the time of ||| 0.0555556 0.229811 1.49697e-06 1.91937e-06 2.718 ||| 0-0 ||| 18 668016 +a ||| to the time when we will ||| 1 0.229811 1.49697e-06 1.73336e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to the time when we ||| 1 0.229811 1.49697e-06 2.00361e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to the time when ||| 0.0454545 0.229811 1.49697e-06 1.76494e-08 2.718 ||| 0-0 ||| 22 668016 +a ||| to the time ||| 0.0229885 0.229811 2.99394e-06 3.53058e-05 2.718 ||| 0-0 ||| 87 668016 +a ||| to the tribunal in ||| 0.5 0.229811 1.49697e-06 1.0127e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to the tribunal ||| 0.166667 0.229811 1.49697e-06 4.73124e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to the tune ||| 0.0207254 0.229811 5.98788e-06 6.43019e-07 2.718 ||| 0-0 ||| 193 668016 +a ||| to the value ||| 0.0178571 0.229811 1.49697e-06 1.8882e-06 2.718 ||| 0-0 ||| 56 668016 +a ||| to the view ||| 0.00900901 0.229811 1.49697e-06 1.9426e-05 2.718 ||| 0-0 ||| 111 668016 +a ||| to the views of ||| 0.0357143 0.0188479 1.49697e-06 1.31182e-08 2.718 ||| 0-3 ||| 28 668016 +a ||| to the voices of ||| 0.0833333 0.229811 1.49697e-06 1.13406e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| to the voices ||| 0.0666667 0.229811 1.49697e-06 2.08605e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| to the vote ||| 0.000834725 0.229811 1.49697e-06 3.38284e-06 2.718 ||| 0-0 ||| 1198 668016 +a ||| to the whole of the ||| 0.0140845 0.229811 1.49697e-06 4.06032e-08 2.718 ||| 0-0 ||| 71 668016 +a ||| to the whole of ||| 0.00699301 0.229811 1.49697e-06 6.61378e-07 2.718 ||| 0-0 ||| 143 668016 +a ||| to the whole ||| 0.00408998 0.229811 2.99394e-06 1.21657e-05 2.718 ||| 0-0 ||| 489 668016 +a ||| to the words of ||| 0.0588235 0.229811 1.49697e-06 2.64224e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| to the words ||| 0.0232558 0.229811 1.49697e-06 4.86028e-06 2.718 ||| 0-0 ||| 43 668016 +a ||| to the work of ||| 0.00414938 0.229811 1.49697e-06 7.40061e-07 2.718 ||| 0-0 ||| 241 668016 +a ||| to the work ||| 0.00203666 0.229811 1.49697e-06 1.36131e-05 2.718 ||| 0-0 ||| 491 668016 +a ||| to the world ||| 0.00289017 0.229811 1.49697e-06 4.89899e-06 2.718 ||| 0-0 ||| 346 668016 +a ||| to the ||| 0.0130059 0.229811 0.00332178 0.0215056 2.718 ||| 0-0 ||| 170615 668016 +a ||| to their cooperation and with the help ||| 1 0.0571592 1.49697e-06 2.3224e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| to their cooperation and with the ||| 1 0.0571592 1.49697e-06 1.21783e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| to their cooperation and with ||| 1 0.0571592 1.49697e-06 1.9837e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| to their existing transport facilities ||| 0.25 0.229811 1.49697e-06 5.10313e-17 2.718 ||| 0-0 ||| 4 668016 +a ||| to their existing transport ||| 0.25 0.229811 1.49697e-06 3.29234e-12 2.718 ||| 0-0 ||| 4 668016 +a ||| to their existing ||| 0.25 0.229811 1.49697e-06 3.19955e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to their own devices ||| 0.0526316 0.229811 2.99394e-06 5.43797e-12 2.718 ||| 0-0 ||| 38 668016 +a ||| to their own ||| 0.00961538 0.229811 4.49091e-06 6.8835e-07 2.718 ||| 0-0 ||| 312 668016 +a ||| to their receiving aid ||| 1 0.229811 1.49697e-06 1.58554e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to their receiving ||| 1 0.229811 1.49697e-06 1.21404e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to their responsibilities ||| 0.0232558 0.229811 1.49697e-06 9.66362e-09 2.718 ||| 0-0 ||| 43 668016 +a ||| to their small size ||| 1 0.229811 1.49697e-06 1.94529e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to their small ||| 1 0.229811 1.49697e-06 5.2013e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to their ||| 0.00369089 0.229811 2.39515e-05 0.000406035 2.718 ||| 0-0 ||| 4335 668016 +a ||| to them , ||| 0.00359712 0.229811 1.49697e-06 0.000112058 2.718 ||| 0-0 ||| 278 668016 +a ||| to them . the ||| 0.5 0.229811 1.49697e-06 1.74733e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to them . ||| 0.00181488 0.229811 1.49697e-06 2.8462e-06 2.718 ||| 0-0 ||| 551 668016 +a ||| to them also ||| 1 0.229811 1.49697e-06 4.74391e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| to them and ||| 0.00819672 0.229811 1.49697e-06 1.17699e-05 2.718 ||| 0-0 ||| 122 668016 +a ||| to them exercising ||| 1 0.229811 1.49697e-06 9.1146e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to them in order for ||| 1 0.229811 1.49697e-06 8.23295e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to them in order ||| 0.0526316 0.229811 1.49697e-06 1.0712e-08 2.718 ||| 0-0 ||| 19 668016 +a ||| to them in ||| 0.0229885 0.229811 2.99394e-06 2.01127e-05 2.718 ||| 0-0 ||| 87 668016 +a ||| to them on ||| 0.0909091 0.0782999 1.49697e-06 9.04207e-06 2.718 ||| 0-2 ||| 11 668016 +a ||| to them or ||| 0.0833333 0.229811 1.49697e-06 1.0743e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| to them the ||| 0.05 0.0004654 1.49697e-06 3.65276e-07 2.718 ||| 0-2 ||| 20 668016 +a ||| to them to ||| 0.05 0.229811 4.49091e-06 8.34955e-05 2.718 ||| 0-2 ||| 60 668016 +a ||| to them under ||| 0.142857 0.134127 1.49697e-06 1.3328e-06 2.718 ||| 0-0 0-2 ||| 7 668016 +a ||| to them ||| 0.0225922 0.229811 8.53273e-05 0.000939649 2.718 ||| 0-0 ||| 2523 668016 +a ||| to then be transported ||| 1 0.229811 1.49697e-06 7.76993e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to then be ||| 0.333333 0.229811 2.99394e-06 1.02236e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| to then ||| 0.105263 0.229811 5.98788e-06 0.000564126 2.718 ||| 0-0 ||| 38 668016 +a ||| to there having been ||| 1 0.229811 1.49697e-06 1.37291e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to there having ||| 1 0.229811 1.49697e-06 4.1115e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to there ||| 0.0666667 0.229811 1.49697e-06 0.00107378 2.718 ||| 0-0 ||| 15 668016 +a ||| to these German-speaking people or those in ||| 0.25 0.0587624 1.49697e-06 1.61386e-21 2.718 ||| 0-6 ||| 4 668016 +a ||| to these crops ||| 0.166667 0.229811 1.49697e-06 6.13973e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to these ||| 0.00454545 0.229811 2.39515e-05 0.000363298 2.718 ||| 0-0 ||| 3520 668016 +a ||| to things like ||| 0.111111 0.229811 1.49697e-06 2.55683e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to things ||| 0.0322581 0.229811 1.49697e-06 0.000143974 2.718 ||| 0-0 ||| 31 668016 +a ||| to think about the ||| 0.0117647 0.0004654 1.49697e-06 7.36667e-11 2.718 ||| 0-3 ||| 85 668016 +a ||| to think ||| 0.00452489 0.229811 8.98182e-06 0.00013399 2.718 ||| 0-0 ||| 1326 668016 +a ||| to third countries ||| 0.00161031 0.229811 1.49697e-06 6.22485e-09 2.718 ||| 0-0 ||| 621 668016 +a ||| to third country ||| 0.166667 0.229811 1.49697e-06 5.90024e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to third ||| 0.00530035 0.229811 4.49091e-06 1.63941e-05 2.718 ||| 0-0 ||| 566 668016 +a ||| to this , as is the ||| 1 0.229811 1.49697e-06 5.29976e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to this , as is ||| 1 0.229811 1.49697e-06 8.63269e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to this , as ||| 0.0869565 0.229811 2.99394e-06 2.75443e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| to this , but so are we ||| 0.166667 0.229811 1.49697e-06 7.21165e-14 2.718 ||| 0-0 ||| 6 668016 +a ||| to this , but so are ||| 0.166667 0.229811 1.49697e-06 6.35259e-12 2.718 ||| 0-0 ||| 6 668016 +a ||| to this , but so ||| 0.166667 0.229811 1.49697e-06 4.18685e-10 2.718 ||| 0-0 ||| 6 668016 +a ||| to this , but ||| 0.0232558 0.229811 1.49697e-06 1.84467e-07 2.718 ||| 0-0 ||| 43 668016 +a ||| to this , ||| 0.00561798 0.229811 4.49091e-06 0.000269926 2.718 ||| 0-0 ||| 534 668016 +a ||| to this I would like ||| 0.333333 0.229811 1.49697e-06 1.66864e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to this I would ||| 0.5 0.229811 1.49697e-06 9.39604e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to this I ||| 0.0625 0.229811 1.49697e-06 1.60104e-05 2.718 ||| 0-0 ||| 16 668016 +a ||| to this Parliament ||| 0.00208333 0.229811 1.49697e-06 1.29921e-06 2.718 ||| 0-0 ||| 480 668016 +a ||| to this amendment ||| 0.0333333 0.229811 1.49697e-06 1.44181e-07 2.718 ||| 0-0 ||| 30 668016 +a ||| to this analysis ||| 0.2 0.229811 1.49697e-06 7.65042e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to this at a ||| 0.2 0.229811 1.49697e-06 4.20117e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to this at ||| 0.0714286 0.229811 1.49697e-06 9.47792e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| to this challenge on ||| 1 0.0782999 1.49697e-06 9.32212e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| to this debate on ||| 0.05 0.154056 1.49697e-06 1.69927e-08 2.718 ||| 0-0 0-3 ||| 20 668016 +a ||| to this in ||| 0.0277778 0.144287 4.49091e-06 0.000135993 2.718 ||| 0-0 0-2 ||| 108 668016 +a ||| to this issue ||| 0.0015873 0.229811 1.49697e-06 1.71297e-06 2.718 ||| 0-0 ||| 630 668016 +a ||| to this legislative process ||| 1 0.229811 1.49697e-06 2.57387e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to this legislative ||| 1 0.229811 1.49697e-06 6.02075e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to this meeting ||| 0.111111 0.229811 1.49697e-06 2.84288e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to this point , ||| 0.0454545 0.229811 1.49697e-06 2.36131e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| to this point ||| 0.0169492 0.229811 2.99394e-06 1.98006e-06 2.718 ||| 0-0 ||| 118 668016 +a ||| to this policy , as ||| 1 0.229811 1.49697e-06 1.08442e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to this policy , ||| 0.0714286 0.229811 1.49697e-06 1.0627e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| to this policy ||| 0.0133333 0.229811 1.49697e-06 8.91116e-07 2.718 ||| 0-0 ||| 75 668016 +a ||| to this practice , were ||| 0.5 0.229811 1.49697e-06 5.09656e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to this practice , ||| 0.25 0.229811 1.49697e-06 2.84502e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to this practice ||| 0.0555556 0.229811 1.49697e-06 2.38566e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| to this problem ||| 0.00258398 0.229811 1.49697e-06 5.09047e-07 2.718 ||| 0-0 ||| 387 668016 +a ||| to this procedure ||| 0.0555556 0.229811 1.49697e-06 2.27249e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| to this process ||| 0.00675676 0.229811 1.49697e-06 9.6762e-07 2.718 ||| 0-0 ||| 148 668016 +a ||| to this question ||| 0.00327869 0.229811 1.49697e-06 1.87254e-06 2.718 ||| 0-0 ||| 305 668016 +a ||| to this resolution ||| 0.0114943 0.229811 1.49697e-06 1.97825e-07 2.718 ||| 0-0 ||| 87 668016 +a ||| to this sort of ||| 0.047619 0.229811 1.49697e-06 1.96633e-08 2.718 ||| 0-0 ||| 21 668016 +a ||| to this sort ||| 0.0454545 0.229811 1.49697e-06 3.61698e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| to this the fact ||| 0.142857 0.229811 1.49697e-06 4.07046e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| to this the ||| 0.137931 0.229811 5.98788e-06 0.000138957 2.718 ||| 0-0 ||| 29 668016 +a ||| to this vote and to ||| 1 0.229811 1.49697e-06 1.56224e-09 2.718 ||| 0-0 0-4 ||| 1 668016 +a ||| to this ||| 0.00434676 0.229811 0.000106285 0.00226344 2.718 ||| 0-0 ||| 16334 668016 +a ||| to those at ||| 0.111111 0.204175 1.49697e-06 2.18991e-06 2.718 ||| 0-2 ||| 9 668016 +a ||| to those challenges ||| 0.111111 0.229811 1.49697e-06 4.74332e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| to those countries ||| 0.00413223 0.229811 1.49697e-06 9.63122e-08 2.718 ||| 0-0 ||| 242 668016 +a ||| to those engaged ||| 0.333333 0.229811 1.49697e-06 1.03998e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| to those laid down in ||| 0.111111 0.0587624 1.49697e-06 2.94163e-13 2.718 ||| 0-4 ||| 9 668016 +a ||| to those measures ||| 0.1 0.229811 1.49697e-06 5.24809e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| to those of other ||| 0.0769231 0.229811 1.49697e-06 1.78644e-08 2.718 ||| 0-0 ||| 13 668016 +a ||| to those of ||| 0.00952381 0.229811 4.49091e-06 1.37896e-05 2.718 ||| 0-0 ||| 315 668016 +a ||| to those parts ||| 0.0666667 0.229811 1.49697e-06 1.4788e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| to those responsible for ||| 0.0714286 0.0683377 1.49697e-06 3.50658e-10 2.718 ||| 0-3 ||| 14 668016 +a ||| to those which are ||| 0.111111 0.229811 1.49697e-06 3.26924e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| to those which ||| 0.0178571 0.229811 1.49697e-06 2.15468e-06 2.718 ||| 0-0 ||| 56 668016 +a ||| to those who say : but what ||| 1 0.229811 1.49697e-06 6.90577e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| to those who say : but ||| 1 0.229811 1.49697e-06 4.92179e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to those who say : ||| 1 0.229811 1.49697e-06 7.20192e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to those who say ||| 0.05 0.229811 1.49697e-06 2.13834e-10 2.718 ||| 0-0 ||| 20 668016 +a ||| to those who ||| 0.000837521 0.229811 1.49697e-06 2.23722e-07 2.718 ||| 0-0 ||| 1194 668016 +a ||| to those ||| 0.00656455 0.229811 4.04182e-05 0.000253653 2.718 ||| 0-0 ||| 4113 668016 +a ||| to threaten to prevent ||| 1 0.229811 1.49697e-06 5.72615e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| to threaten to ||| 0.142857 0.229811 1.49697e-06 1.12058e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| to three guiding ||| 0.25 0.229811 1.49697e-06 2.08436e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| to three months - ||| 0.5 0.229811 1.49697e-06 3.37081e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to three months ||| 0.04 0.229811 1.49697e-06 8.93616e-10 2.718 ||| 0-0 ||| 25 668016 +a ||| to three years ||| 0.010101 0.229811 1.49697e-06 3.77403e-09 2.718 ||| 0-0 ||| 99 668016 +a ||| to three ||| 0.00854701 0.229811 5.98788e-06 2.21741e-05 2.718 ||| 0-0 ||| 468 668016 +a ||| to throw their lot ||| 1 0.229811 1.49697e-06 1.20657e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to throw their ||| 0.5 0.229811 1.49697e-06 9.3388e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to throw ||| 0.0300752 0.229811 5.98788e-06 8.05694e-06 2.718 ||| 0-0 ||| 133 668016 +a ||| to tie ||| 0.0227273 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-0 ||| 44 668016 +a ||| to tighten matters up ||| 0.5 0.229811 1.49697e-06 7.95673e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to tighten matters ||| 0.5 0.229811 1.49697e-06 2.33301e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to tighten ||| 0.00917431 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 109 668016 +a ||| to tightening up ||| 0.125 0.229811 1.49697e-06 2.98676e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| to tightening ||| 0.25 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to time but have been ||| 1 0.229811 1.49697e-06 1.56956e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to time but have ||| 1 0.229811 1.49697e-06 4.7004e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to time but ||| 1 0.229811 1.49697e-06 3.93017e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to time ||| 0.015625 0.229811 5.98788e-06 0.00057509 2.718 ||| 0-0 ||| 256 668016 +a ||| to timeframes which are ||| 1 0.229811 1.49697e-06 1.80596e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to timeframes which ||| 1 0.229811 1.49697e-06 1.19027e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to timeframes ||| 0.5 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| to timely ||| 1 0.229811 1.49697e-06 2.38205e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| to tinkering ||| 0.2 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| to to ||| 0.04 0.229811 1.49697e-06 0.122711 2.718 ||| 0-0 0-1 ||| 25 668016 +a ||| to tobacco ||| 0.0555556 0.229811 2.99394e-06 7.81173e-06 2.718 ||| 0-0 ||| 36 668016 +a ||| to today , ||| 0.0769231 0.229811 1.49697e-06 1.88531e-05 2.718 ||| 0-0 ||| 13 668016 +a ||| to today ||| 0.0462963 0.229811 7.48485e-06 0.000158091 2.718 ||| 0-0 ||| 108 668016 +a ||| to too ||| 0.2 0.229811 1.49697e-06 0.00047676 2.718 ||| 0-0 ||| 5 668016 +a ||| to top ||| 0.05 0.229811 1.49697e-06 2.42058e-05 2.718 ||| 0-0 ||| 20 668016 +a ||| to touch briefly on ||| 0.0714286 0.229811 1.49697e-06 7.42537e-13 2.718 ||| 0-0 ||| 14 668016 +a ||| to touch briefly ||| 0.1 0.229811 1.49697e-06 1.10976e-10 2.718 ||| 0-0 ||| 10 668016 +a ||| to touch ||| 0.0112994 0.229811 2.99394e-06 7.70664e-06 2.718 ||| 0-0 ||| 177 668016 +a ||| to tourism in ||| 0.111111 0.229811 1.49697e-06 1.34965e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to tourism ||| 0.0114943 0.229811 1.49697e-06 6.30543e-06 2.718 ||| 0-0 ||| 87 668016 +a ||| to town and country ||| 0.5 0.229811 1.49697e-06 1.98977e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to town and ||| 0.5 0.229811 1.49697e-06 5.52868e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to town ||| 0.25 0.229811 1.49697e-06 4.4138e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to track ||| 0.0153846 0.229811 1.49697e-06 1.38719e-05 2.718 ||| 0-0 ||| 65 668016 +a ||| to trade in ||| 0.0307692 0.229811 2.99394e-06 6.53078e-07 2.718 ||| 0-0 ||| 65 668016 +a ||| to trade them ||| 1 0.229811 1.49697e-06 8.18434e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to trade ||| 0.00653595 0.229811 5.98788e-06 3.05113e-05 2.718 ||| 0-0 ||| 612 668016 +a ||| to transfer ||| 0.00266667 0.229811 1.49697e-06 7.18118e-06 2.718 ||| 0-0 ||| 375 668016 +a ||| to transform ||| 0.00534759 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-0 ||| 187 668016 +a ||| to translate ||| 0.00529101 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-0 ||| 189 668016 +a ||| to transpose ||| 0.00529101 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-0 ||| 189 668016 +a ||| to travel by ||| 0.0666667 0.229811 1.49697e-06 6.95187e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| to travel in the ||| 0.125 0.229811 1.49697e-06 1.74e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to travel in ||| 0.0526316 0.229811 1.49697e-06 2.83426e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| to travel to Luxembourg and would therefore ||| 1 0.229811 1.49697e-06 6.00375e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| to travel to Luxembourg and would ||| 1 0.229811 1.49697e-06 7.17894e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to travel to Luxembourg and ||| 1 0.229811 1.49697e-06 1.22326e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to travel to Luxembourg ||| 1 0.229811 1.49697e-06 9.76584e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to travel to ||| 0.0131579 0.229811 2.99394e-06 1.17661e-06 2.718 ||| 0-0 ||| 152 668016 +a ||| to travel ||| 0.00492611 0.229811 4.49091e-06 1.32414e-05 2.718 ||| 0-0 ||| 609 668016 +a ||| to treat ||| 0.0255864 0.250485 1.79636e-05 0.000155709 2.718 ||| 0-0 0-1 ||| 469 668016 +a ||| to trial and serious ||| 0.5 0.229811 1.49697e-06 6.36904e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to trial and ||| 0.142857 0.229811 1.49697e-06 5.52868e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| to trial ||| 0.0555556 0.229811 4.49091e-06 4.4138e-06 2.718 ||| 0-0 ||| 54 668016 +a ||| to try and ||| 0.00508475 0.229811 4.49091e-06 6.75728e-07 2.718 ||| 0-0 ||| 590 668016 +a ||| to try to identify ||| 0.1 0.229811 1.49697e-06 8.2929e-11 2.718 ||| 0-2 ||| 10 668016 +a ||| to try to limit ||| 0.125 0.229811 1.49697e-06 2.32968e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| to try to ||| 0.00889193 0.229811 1.94606e-05 4.79358e-06 2.718 ||| 0-2 ||| 1462 668016 +a ||| to try ||| 0.014014 0.229811 2.09576e-05 5.39464e-05 2.718 ||| 0-0 ||| 999 668016 +a ||| to trying to ||| 0.025 0.229811 1.49697e-06 3.58585e-06 2.718 ||| 0-2 ||| 40 668016 +a ||| to trying ||| 0.1 0.229811 1.49697e-06 4.03547e-05 2.718 ||| 0-0 ||| 10 668016 +a ||| to turn European ||| 0.333333 0.229811 1.49697e-06 2.62622e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to turn a blind eye to ||| 0.05 0.229811 1.49697e-06 2.7282e-16 2.718 ||| 0-5 ||| 20 668016 +a ||| to turn for ||| 0.142857 0.0683377 1.49697e-06 7.34096e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| to turn him ||| 1 0.229811 1.49697e-06 2.51792e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to turn over a ||| 0.166667 0.229811 1.49697e-06 1.67622e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to turn over ||| 0.111111 0.229811 1.49697e-06 3.78159e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| to turn that article , ||| 1 0.229811 1.49697e-06 2.26873e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to turn that article ||| 1 0.229811 1.49697e-06 1.90242e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to turn that ||| 0.1 0.229811 1.49697e-06 1.32113e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| to turn to ||| 0.016129 0.229811 4.49091e-06 6.97871e-06 2.718 ||| 0-2 ||| 186 668016 +a ||| to turn up ||| 0.0344828 0.229811 1.49697e-06 2.67853e-07 2.718 ||| 0-0 ||| 29 668016 +a ||| to turn ||| 0.0155189 0.229811 2.39515e-05 7.85376e-05 2.718 ||| 0-0 ||| 1031 668016 +a ||| to twin ||| 1 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to two key words ||| 0.333333 0.229811 1.49697e-06 1.36061e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| to two key ||| 0.333333 0.229811 1.49697e-06 6.02038e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to two ||| 0.0046875 0.229811 4.49091e-06 8.28113e-05 2.718 ||| 0-0 ||| 640 668016 +a ||| to type by ||| 1 0.229811 1.49697e-06 2.15177e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to type ||| 0.285714 0.229811 2.99394e-06 4.09853e-05 2.718 ||| 0-0 ||| 7 668016 +a ||| to ultimately create ||| 0.125 0.229811 1.49697e-06 2.4258e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| to ultimately ||| 0.05 0.229811 1.49697e-06 2.15435e-05 2.718 ||| 0-0 ||| 20 668016 +a ||| to under ||| 0.0769231 0.229811 2.99394e-06 0.000125688 2.718 ||| 0-0 ||| 26 668016 +a ||| to undergo ||| 0.031746 0.228884 5.98788e-06 3.39092e-05 2.718 ||| 0-0 0-1 ||| 126 668016 +a ||| to undermine it ||| 0.0909091 0.229811 1.49697e-06 6.97702e-08 2.718 ||| 0-0 ||| 11 668016 +a ||| to undermine ||| 0.0025974 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-0 ||| 385 668016 +a ||| to underpin ||| 0.02 0.229811 2.99394e-06 8.75754e-07 2.718 ||| 0-0 ||| 100 668016 +a ||| to understand one another ||| 0.333333 0.229811 1.49697e-06 2.74927e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to understand one ||| 0.166667 0.229811 1.49697e-06 1.1403e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| to understand this ||| 0.047619 0.229811 2.99394e-06 1.76775e-07 2.718 ||| 0-0 ||| 42 668016 +a ||| to understand what is really going ||| 0.5 0.229811 1.49697e-06 4.98738e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| to understand what is really ||| 0.5 0.229811 1.49697e-06 5.82774e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to understand what is ||| 0.0625 0.229811 1.49697e-06 1.20308e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| to understand what ||| 0.0126582 0.229811 1.49697e-06 3.83868e-08 2.718 ||| 0-0 ||| 79 668016 +a ||| to understand ||| 0.00253165 0.229811 7.48485e-06 2.73586e-05 2.718 ||| 0-0 ||| 1975 668016 +a ||| to undertake ||| 0.00622084 0.229811 5.98788e-06 9.07281e-06 2.718 ||| 0-0 ||| 643 668016 +a ||| to undue ||| 0.25 0.229811 1.49697e-06 8.75754e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to up to ||| 0.210526 0.229811 5.98788e-06 0.000106159 2.718 ||| 0-2 ||| 19 668016 +a ||| to up ||| 0.0625 0.229811 1.49697e-06 0.0011947 2.718 ||| 0-0 ||| 16 668016 +a ||| to update in a ||| 1 0.229811 1.49697e-06 7.31184e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to update in ||| 1 0.229811 1.49697e-06 1.64957e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to update ||| 0.00395257 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-0 ||| 253 668016 +a ||| to uphold ||| 0.00554017 0.229811 2.99394e-06 3.64314e-06 2.718 ||| 0-0 ||| 361 668016 +a ||| to urge him nevertheless to ||| 1 0.229811 1.49697e-06 4.00401e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| to urge them ||| 0.125 0.229811 1.49697e-06 3.07265e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to urge ||| 0.00892857 0.229811 5.98788e-06 1.14549e-05 2.718 ||| 0-0 ||| 448 668016 +a ||| to us , ||| 0.00223714 0.229811 1.49697e-06 0.000120404 2.718 ||| 0-0 ||| 447 668016 +a ||| to us as ||| 0.0142857 0.229811 1.49697e-06 1.03028e-05 2.718 ||| 0-0 ||| 70 668016 +a ||| to us at ||| 0.105263 0.204175 2.99394e-06 8.71671e-06 2.718 ||| 0-2 ||| 19 668016 +a ||| to us being ||| 0.25 0.229811 1.49697e-06 2.87323e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to us by the ||| 0.0212766 0.229811 1.49697e-06 3.2542e-07 2.718 ||| 0-0 ||| 47 668016 +a ||| to us by ||| 0.00769231 0.229811 1.49697e-06 5.30071e-06 2.718 ||| 0-0 ||| 130 668016 +a ||| to us in ||| 0.0632911 0.144287 1.49697e-05 6.06617e-05 2.718 ||| 0-0 0-2 ||| 158 668016 +a ||| to us only a ||| 1 0.229811 1.49697e-06 4.98146e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to us only ||| 0.333333 0.229811 1.49697e-06 1.12383e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| to us to be ||| 0.0625 0.229811 1.49697e-06 1.62589e-06 2.718 ||| 0-2 ||| 16 668016 +a ||| to us to ||| 0.00440529 0.229811 1.49697e-06 8.97147e-05 2.718 ||| 0-2 ||| 227 668016 +a ||| to us which ||| 0.2 0.229811 1.49697e-06 8.57648e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| to us ||| 0.0146015 0.229811 0.000107782 0.00100964 2.718 ||| 0-0 ||| 4931 668016 +a ||| to use across the board is ||| 1 0.229811 1.49697e-06 4.48859e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to use across the board ||| 1 0.229811 1.49697e-06 1.43217e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to use across the ||| 1 0.229811 1.49697e-06 1.07279e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to use across ||| 1 0.229811 1.49697e-06 1.74745e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to use but is also ||| 0.333333 0.229811 1.49697e-06 1.84169e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| to use but is ||| 0.333333 0.229811 1.49697e-06 3.64793e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| to use but ||| 0.333333 0.229811 1.49697e-06 1.16394e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to use by ||| 0.5 0.0337966 1.49697e-06 3.55452e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| to use its new power of ||| 1 0.229811 1.49697e-06 1.17716e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to use its new power ||| 1 0.229811 1.49697e-06 2.16533e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to use its new ||| 1 0.229811 1.49697e-06 1.45032e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to use its resources to ||| 0.333333 0.229811 1.49697e-06 1.5438e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| to use its ||| 0.0107527 0.229811 1.49697e-06 2.4265e-07 2.718 ||| 0-0 ||| 93 668016 +a ||| to use my ||| 0.0181818 0.229811 1.49697e-06 1.09531e-07 2.718 ||| 0-0 ||| 55 668016 +a ||| to use of ||| 0.25 0.229811 1.49697e-06 9.25909e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to use specific ||| 0.166667 0.229811 1.49697e-06 2.57348e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to use the market economy ||| 1 0.229811 1.49697e-06 1.23352e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to use the market ||| 1 0.229811 1.49697e-06 2.36307e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to use the profits ||| 1 0.229811 1.49697e-06 1.05606e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| to use the words ||| 0.111111 0.229811 1.49697e-06 2.36307e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| to use the ||| 0.00485437 0.229811 7.48485e-06 1.0456e-05 2.718 ||| 0-0 ||| 1030 668016 +a ||| to use this speech to dwell ||| 0.5 0.229811 1.49697e-06 1.1001e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| to use this speech to ||| 0.111111 0.229811 1.49697e-06 4.40042e-12 2.718 ||| 0-0 ||| 9 668016 +a ||| to use this speech ||| 0.125 0.229811 1.49697e-06 4.95218e-11 2.718 ||| 0-0 ||| 8 668016 +a ||| to use this ||| 0.00303951 0.229811 1.49697e-06 1.10048e-06 2.718 ||| 0-0 ||| 329 668016 +a ||| to use ||| 0.00923012 0.229811 6.58667e-05 0.000170317 2.718 ||| 0-0 ||| 4767 668016 +a ||| to users ||| 0.0123457 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-0 ||| 81 668016 +a ||| to usual or established ||| 1 0.229811 1.49697e-06 1.03722e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to usual or ||| 1 0.229811 1.49697e-06 6.92865e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to usual ||| 1 0.229811 1.49697e-06 6.06022e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| to utter ||| 0.05 0.229811 1.49697e-06 2.13684e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| to value ||| 0.0357143 0.229811 1.49697e-06 3.07565e-05 2.718 ||| 0-0 ||| 28 668016 +a ||| to various ||| 0.00806452 0.229811 2.99394e-06 5.40866e-05 2.718 ||| 0-0 ||| 248 668016 +a ||| to verbal ||| 1 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to verify all the information . ||| 1 0.229811 1.49697e-06 1.47736e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to verify all the information ||| 1 0.229811 1.49697e-06 4.87739e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to verify all the ||| 0.333333 0.229811 1.49697e-06 2.94706e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to verify all ||| 0.25 0.229811 1.49697e-06 4.80041e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| to verify ||| 0.00413223 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-0 ||| 242 668016 +a ||| to very thorough ||| 1 0.229811 1.49697e-06 2.14522e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to very worthy ||| 1 0.229811 1.49697e-06 2.41337e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to very ||| 0.097561 0.229811 1.19758e-05 0.00121887 2.718 ||| 0-0 ||| 82 668016 +a ||| to view and ||| 0.5 0.229811 1.49697e-06 3.96354e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to view ||| 0.050505 0.229811 7.48485e-06 0.000316427 2.718 ||| 0-0 ||| 99 668016 +a ||| to visit ||| 0.0126316 0.229811 8.98182e-06 1.03339e-05 2.718 ||| 0-0 ||| 475 668016 +a ||| to voice more ||| 0.5 0.229811 1.49697e-06 3.47993e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to voice ||| 0.00571429 0.229811 1.49697e-06 1.52381e-05 2.718 ||| 0-0 ||| 175 668016 +a ||| to vote for ||| 0.00152672 0.149075 1.49697e-06 2.03044e-06 2.718 ||| 0-0 0-2 ||| 655 668016 +a ||| to vote in favour of ||| 0.0019305 0.229811 1.49697e-06 2.07425e-11 2.718 ||| 0-0 ||| 518 668016 +a ||| to vote in favour ||| 0.0013369 0.229811 1.49697e-06 3.81549e-10 2.718 ||| 0-0 ||| 748 668016 +a ||| to vote in ||| 0.00439078 0.229811 5.98788e-06 1.17944e-06 2.718 ||| 0-0 ||| 911 668016 +a ||| to vote ||| 0.00185381 0.229811 1.04788e-05 5.51024e-05 2.718 ||| 0-0 ||| 3776 668016 +a ||| to voters ||| 0.047619 0.229811 1.49697e-06 2.03175e-06 2.718 ||| 0-0 ||| 21 668016 +a ||| to wait until the ||| 0.025 0.229811 1.49697e-06 2.82197e-11 2.718 ||| 0-0 ||| 40 668016 +a ||| to wait until ||| 0.0052356 0.229811 1.49697e-06 4.59666e-10 2.718 ||| 0-0 ||| 191 668016 +a ||| to wait ||| 0.00152207 0.229811 1.49697e-06 9.45814e-06 2.718 ||| 0-0 ||| 657 668016 +a ||| to waiting ||| 0.5 0.229811 2.99394e-06 9.31802e-06 2.718 ||| 0-0 ||| 4 668016 +a ||| to walk free ||| 0.5 0.229811 1.49697e-06 2.77747e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to walk on ||| 0.166667 0.229811 1.49697e-06 1.59383e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to walk ||| 0.0454545 0.229811 4.49091e-06 2.38205e-06 2.718 ||| 0-0 ||| 66 668016 +a ||| to warm it ||| 1 0.229811 1.49697e-06 8.28521e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to warm ||| 0.142857 0.229811 1.49697e-06 4.65901e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| to warmly thank ||| 0.0181818 0.229811 1.49697e-06 1.16004e-09 2.718 ||| 0-0 ||| 55 668016 +a ||| to warmly ||| 0.010101 0.229811 1.49697e-06 1.09644e-05 2.718 ||| 0-0 ||| 99 668016 +a ||| to warn against ||| 0.0140845 0.229811 1.49697e-06 4.1791e-10 2.718 ||| 0-0 ||| 71 668016 +a ||| to warn ||| 0.0142857 0.229811 2.99394e-06 1.75151e-06 2.718 ||| 0-0 ||| 140 668016 +a ||| to waste no ||| 0.166667 0.229811 1.49697e-06 1.90327e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| to waste ||| 0.00636943 0.229811 1.49697e-06 2.44511e-05 2.718 ||| 0-0 ||| 157 668016 +a ||| to watch ||| 0.010989 0.229811 2.99394e-06 6.30543e-06 2.718 ||| 0-0 ||| 182 668016 +a ||| to water ||| 0.00606061 0.229811 1.49697e-06 1.99322e-05 2.718 ||| 0-0 ||| 165 668016 +a ||| to ways of committing ||| 1 0.229811 1.49697e-06 1.4503e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to ways of ||| 0.0588235 0.229811 1.49697e-06 1.83582e-06 2.718 ||| 0-0 ||| 17 668016 +a ||| to ways ||| 0.0434783 0.229811 1.49697e-06 3.37691e-05 2.718 ||| 0-0 ||| 23 668016 +a ||| to wean ||| 0.111111 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| to wear a ||| 0.0588235 0.229811 1.49697e-06 6.21096e-08 2.718 ||| 0-0 ||| 17 668016 +a ||| to wear the ||| 0.0714286 0.229811 1.49697e-06 8.60226e-08 2.718 ||| 0-0 ||| 14 668016 +a ||| to wear ||| 0.0361446 0.229811 4.49091e-06 1.40121e-06 2.718 ||| 0-0 ||| 83 668016 +a ||| to welcome ||| 0.00183374 0.229811 4.49091e-06 3.85682e-05 2.718 ||| 0-0 ||| 1636 668016 +a ||| to well ||| 0.2 0.229811 2.99394e-06 0.000555438 2.718 ||| 0-0 ||| 10 668016 +a ||| to were carried ||| 1 0.229811 1.49697e-06 1.84933e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to were to ||| 1 0.229811 1.49697e-06 5.57612e-05 2.718 ||| 0-2 ||| 1 668016 +a ||| to were ||| 0.333333 0.229811 1.49697e-06 0.00062753 2.718 ||| 0-0 ||| 3 668016 +a ||| to what I was doing at ||| 1 0.216993 1.49697e-06 1.36095e-13 2.718 ||| 0-0 0-5 ||| 1 668016 +a ||| to what are ||| 0.037037 0.229811 1.49697e-06 7.45751e-06 2.718 ||| 0-0 ||| 27 668016 +a ||| to what happens in ||| 0.142857 0.144287 1.49697e-06 1.763e-09 2.718 ||| 0-0 0-3 ||| 7 668016 +a ||| to what has been described as ||| 1 0.229811 2.99394e-06 3.84496e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| to what has been described ||| 1 0.229811 2.99394e-06 3.76794e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| to what has been ||| 0.019802 0.229811 2.99394e-06 8.4483e-09 2.718 ||| 0-0 ||| 101 668016 +a ||| to what has ||| 0.0227273 0.229811 2.99394e-06 2.53004e-06 2.718 ||| 0-0 ||| 88 668016 +a ||| to what he said about ||| 1 0.229811 1.49697e-06 2.49515e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| to what he said ||| 0.142857 0.229811 1.49697e-06 1.76423e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| to what he ||| 0.0454545 0.229811 1.49697e-06 4.28939e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| to what is considered ||| 0.5 0.229811 1.49697e-06 1.65751e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to what is now ||| 0.2 0.229811 1.49697e-06 3.17315e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| to what is ||| 0.0407524 0.229811 1.94606e-05 1.54044e-05 2.718 ||| 0-0 ||| 319 668016 +a ||| to what might be a ||| 0.333333 0.229811 1.49697e-06 1.51616e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| to what might be ||| 0.0909091 0.229811 1.49697e-06 3.4205e-09 2.718 ||| 0-0 ||| 11 668016 +a ||| to what might ||| 0.0526316 0.229811 1.49697e-06 1.88739e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| to what remains ||| 0.111111 0.229811 1.49697e-06 4.38425e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| to what they had been ||| 1 0.229811 1.49697e-06 5.37684e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to what they had ||| 1 0.229811 1.49697e-06 1.61022e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to what they ||| 0.0322581 0.229811 1.49697e-06 1.60428e-06 2.718 ||| 0-0 ||| 31 668016 +a ||| to what was ||| 0.01 0.229811 1.49697e-06 1.5399e-06 2.718 ||| 0-0 ||| 100 668016 +a ||| to what ||| 0.0113443 0.229811 5.98788e-05 0.000491508 2.718 ||| 0-0 ||| 3526 668016 +a ||| to where you ||| 0.25 0.229811 1.49697e-06 3.42699e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| to where ||| 0.00952381 0.229811 2.99394e-06 0.000106141 2.718 ||| 0-0 ||| 210 668016 +a ||| to whether , and to ||| 1 0.229811 1.49697e-06 1.22147e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| to whether , and ||| 1 0.229811 1.49697e-06 1.37463e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| to whether , ||| 0.0714286 0.229811 1.49697e-06 1.09743e-05 2.718 ||| 0-0 ||| 14 668016 +a ||| to whether it ||| 0.0454545 0.229811 1.49697e-06 1.63649e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| to whether or not ||| 0.0333333 0.229811 1.49697e-06 3.59202e-10 2.718 ||| 0-0 ||| 30 668016 +a ||| to whether or ||| 0.0294118 0.229811 1.49697e-06 1.05211e-07 2.718 ||| 0-0 ||| 34 668016 +a ||| to whether we ||| 0.0434783 0.229811 1.49697e-06 1.04469e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| to whether ||| 0.00922131 0.229811 1.34727e-05 9.20242e-05 2.718 ||| 0-0 ||| 976 668016 +a ||| to which Europe ||| 0.0526316 0.229811 1.49697e-06 1.50569e-06 2.718 ||| 0-0 ||| 19 668016 +a ||| to which I am most open ||| 1 0.229811 1.49697e-06 1.8734e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to which I am most ||| 1 0.229811 1.49697e-06 1.16216e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to which I am referring ||| 0.125 0.229811 1.49697e-06 1.16162e-12 2.718 ||| 0-0 ||| 8 668016 +a ||| to which I am ||| 0.05 0.229811 2.99394e-06 2.68894e-08 2.718 ||| 0-0 ||| 40 668016 +a ||| to which I would respond only ||| 0.5 0.229811 1.49697e-06 3.90494e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| to which I would respond ||| 0.5 0.229811 1.49697e-06 3.50816e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| to which I would ||| 0.0909091 0.229811 1.49697e-06 1.23527e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| to which I ||| 0.00986842 0.229811 4.49091e-06 2.10484e-05 2.718 ||| 0-0 ||| 304 668016 +a ||| to which it is ||| 0.0238095 0.229811 1.49697e-06 1.65848e-06 2.718 ||| 0-0 ||| 42 668016 +a ||| to which it ||| 0.0105263 0.229811 1.49697e-06 5.2917e-05 2.718 ||| 0-0 ||| 95 668016 +a ||| to which the Commission has drawn our ||| 1 0.229811 1.49697e-06 1.07662e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| to which the Commission has drawn ||| 1 0.229811 1.49697e-06 7.805e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to which the Commission has ||| 0.111111 0.229811 1.49697e-06 5.49261e-10 2.718 ||| 0-0 ||| 9 668016 +a ||| to which the Commission ||| 0.015625 0.229811 1.49697e-06 1.06704e-07 2.718 ||| 0-0 ||| 64 668016 +a ||| to which the ||| 0.0011976 0.229811 1.49697e-06 0.000182682 2.718 ||| 0-0 ||| 835 668016 +a ||| to which these countries protect ||| 1 0.229811 1.49697e-06 4.04264e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to which these countries ||| 0.2 0.229811 1.49697e-06 1.17178e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| to which these ||| 0.04 0.229811 1.49697e-06 3.08607e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| to which ||| 0.0116129 0.229811 0.000107782 0.00297567 2.718 ||| 0-0 ||| 6200 668016 +a ||| to whichever of ||| 0.5 0.229811 1.49697e-06 9.5219e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| to whichever ||| 0.5 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-0 ||| 2 668016 +a ||| to who is ||| 0.0294118 0.229811 1.49697e-06 9.68333e-06 2.718 ||| 0-0 ||| 34 668016 +a ||| to who should ||| 0.0909091 0.229811 1.49697e-06 1.36903e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| to who ||| 0.021978 0.229811 2.99394e-06 0.000308966 2.718 ||| 0-0 ||| 91 668016 +a ||| to whom , moreover , ||| 0.5 0.229811 1.49697e-06 3.59332e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| to whom , moreover ||| 0.5 0.229811 1.49697e-06 3.01315e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| to whom , ||| 0.117647 0.229811 2.99394e-06 2.78222e-06 2.718 ||| 0-0 ||| 17 668016 +a ||| to whom we ||| 0.0217391 0.229811 1.49697e-06 2.6485e-07 2.718 ||| 0-0 ||| 46 668016 +a ||| to whom ||| 0.00518135 0.229811 4.49091e-06 2.33301e-05 2.718 ||| 0-0 ||| 579 668016 +a ||| to why ||| 0.00512821 0.229811 1.49697e-06 8.63493e-05 2.718 ||| 0-0 ||| 195 668016 +a ||| to wide ||| 0.125 0.229811 1.49697e-06 1.45025e-05 2.718 ||| 0-0 ||| 8 668016 +a ||| to win ||| 0.00308642 0.229811 1.49697e-06 5.67489e-06 2.718 ||| 0-0 ||| 324 668016 +a ||| to wind up this ||| 0.0588235 0.229811 1.49697e-06 1.6674e-10 2.718 ||| 0-0 ||| 17 668016 +a ||| to wind up ||| 0.0220588 0.229811 4.49091e-06 2.58056e-08 2.718 ||| 0-0 ||| 136 668016 +a ||| to wind ||| 0.0588235 0.229811 4.49091e-06 7.56651e-06 2.718 ||| 0-0 ||| 51 668016 +a ||| to wish you ||| 0.0169492 0.229811 1.49697e-06 3.33311e-07 2.718 ||| 0-0 ||| 59 668016 +a ||| to wish ||| 0.0430108 0.229811 1.19758e-05 0.000103234 2.718 ||| 0-0 ||| 186 668016 +a ||| to with ||| 0.0333333 0.143485 1.49697e-06 0.00584832 2.718 ||| 0-0 0-1 ||| 30 668016 +a ||| to withdraw ||| 0.00393701 0.229811 4.49091e-06 3.29284e-06 2.718 ||| 0-0 ||| 762 668016 +a ||| to within ||| 0.157895 0.12108 4.49091e-06 0.00017424 2.718 ||| 0-0 0-1 ||| 19 668016 +a ||| to withstand ||| 0.00909091 0.229811 1.49697e-06 1.26109e-06 2.718 ||| 0-0 ||| 110 668016 +a ||| to witness this reality and its ||| 1 0.229811 1.49697e-06 3.89126e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| to witness this reality and ||| 1 0.229811 1.49697e-06 2.73128e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| to witness this reality ||| 1 0.229811 1.49697e-06 2.18051e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to witness this ||| 0.125 0.229811 1.49697e-06 3.25935e-08 2.718 ||| 0-0 ||| 8 668016 +a ||| to witness ||| 0.0137931 0.229811 2.99394e-06 5.04434e-06 2.718 ||| 0-0 ||| 145 668016 +a ||| to wonder about ||| 0.0666667 0.0526361 1.49697e-06 5.32862e-09 2.718 ||| 0-2 ||| 15 668016 +a ||| to wonder ||| 0.0190476 0.229811 2.99394e-06 4.16859e-06 2.718 ||| 0-0 ||| 105 668016 +a ||| to work in ||| 0.00242718 0.144287 1.49697e-06 1.33227e-05 2.718 ||| 0-0 0-2 ||| 412 668016 +a ||| to work on ||| 0.00188679 0.0782999 1.49697e-06 2.13377e-06 2.718 ||| 0-2 ||| 530 668016 +a ||| to work out ||| 0.00625 0.229811 1.49697e-06 8.49356e-07 2.718 ||| 0-0 ||| 160 668016 +a ||| to work to ||| 0.00625 0.229811 1.49697e-06 1.97035e-05 2.718 ||| 0-0 ||| 160 668016 +a ||| to work towards making ||| 0.25 0.229811 1.49697e-06 1.08336e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| to work towards ||| 0.002457 0.229811 1.49697e-06 2.81611e-08 2.718 ||| 0-0 ||| 407 668016 +a ||| to work with in ||| 1 0.144287 1.49697e-06 8.51923e-08 2.718 ||| 0-0 0-3 ||| 1 668016 +a ||| to work with us to ||| 0.0909091 0.229811 1.49697e-06 3.6314e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| to work with us ||| 0.0277778 0.229811 1.49697e-06 4.08674e-09 2.718 ||| 0-0 ||| 36 668016 +a ||| to work with ||| 0.00164474 0.229811 1.49697e-06 1.41792e-06 2.718 ||| 0-0 ||| 608 668016 +a ||| to work ||| 0.00508379 0.229811 4.04182e-05 0.000221741 2.718 ||| 0-0 ||| 5311 668016 +a ||| to working ||| 0.003367 0.229811 1.49697e-06 6.66974e-05 2.718 ||| 0-0 ||| 297 668016 +a ||| to world wide ||| 1 0.229811 1.49697e-06 3.30367e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to world ||| 0.166667 0.229811 1.49697e-06 7.97987e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| to worsen as ||| 0.166667 0.229811 1.49697e-06 2.50223e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| to worsen ||| 0.0322581 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| to write ||| 0.00921659 0.229811 2.99394e-06 3.39793e-06 2.718 ||| 0-0 ||| 217 668016 +a ||| to writing ||| 0.0909091 0.229811 1.49697e-06 7.65059e-05 2.718 ||| 0-0 ||| 11 668016 +a ||| to yesterday ||| 0.0526316 0.229811 1.49697e-06 8.33718e-06 2.718 ||| 0-0 ||| 19 668016 +a ||| to yield any ||| 0.5 0.229811 1.49697e-06 4.18484e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| to yield ||| 0.0238095 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-0 ||| 42 668016 +a ||| to you , to ||| 0.0909091 0.229811 1.49697e-06 1.19851e-05 2.718 ||| 0-3 ||| 11 668016 +a ||| to you , ||| 0.00495049 0.229811 4.49091e-06 0.000134879 2.718 ||| 0-0 ||| 606 668016 +a ||| to you and to ||| 0.0357143 0.229811 2.99394e-06 1.25886e-06 2.718 ||| 0-3 ||| 56 668016 +a ||| to you and ||| 0.00543478 0.229811 1.49697e-06 1.4167e-05 2.718 ||| 0-0 ||| 184 668016 +a ||| to you as regards who ||| 1 0.229811 1.49697e-06 1.42513e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| to you as regards ||| 1 0.229811 1.49697e-06 1.61579e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| to you as ||| 0.016129 0.229811 1.49697e-06 1.15414e-05 2.718 ||| 0-0 ||| 62 668016 +a ||| to you at ||| 0.0909091 0.204175 1.49697e-06 9.76464e-06 2.718 ||| 0-2 ||| 11 668016 +a ||| to you both ||| 0.125 0.229811 1.49697e-06 1.87353e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| to you in ||| 0.011236 0.144287 1.49697e-06 6.79544e-05 2.718 ||| 0-0 0-2 ||| 89 668016 +a ||| to you is ||| 0.0246914 0.229811 2.99394e-06 3.54474e-05 2.718 ||| 0-0 ||| 81 668016 +a ||| to you on ||| 0.0172414 0.0782999 1.49697e-06 1.08836e-05 2.718 ||| 0-2 ||| 58 668016 +a ||| to you once again ||| 0.125 0.229811 1.49697e-06 2.67645e-10 2.718 ||| 0-0 ||| 8 668016 +a ||| to you once ||| 0.333333 0.229811 1.49697e-06 4.62813e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| to you to ensure ||| 0.25 0.229811 1.49697e-06 4.50643e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| to you to ||| 0.0102041 0.229811 1.49697e-06 0.0001005 2.718 ||| 0-0 ||| 98 668016 +a ||| to you ||| 0.0246141 0.229811 8.83212e-05 0.00113102 2.718 ||| 0-0 ||| 2397 668016 +a ||| to young people ||| 0.00458716 0.229811 1.49697e-06 1.9641e-08 2.718 ||| 0-0 ||| 218 668016 +a ||| to young ||| 0.117647 0.229811 2.99394e-06 2.23142e-05 2.718 ||| 0-0 ||| 17 668016 +a ||| to your comments on ||| 0.166667 0.0782999 1.49697e-06 4.31305e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| to your question is this : ||| 1 0.229811 1.49697e-06 5.05811e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| to your question is this ||| 1 0.229811 1.49697e-06 1.50181e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| to your question is ||| 0.0625 0.229811 1.49697e-06 2.32429e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| to your question ||| 0.00714286 0.229811 1.49697e-06 7.4161e-08 2.718 ||| 0-0 ||| 140 668016 +a ||| to your ||| 0.000655738 0.229811 1.49697e-06 8.96422e-05 2.718 ||| 0-0 ||| 1525 668016 +a ||| to yourself ||| 0.0333333 0.229811 1.49697e-06 1.57636e-05 2.718 ||| 0-0 ||| 30 668016 +a ||| to ||| 0.303984 0.229811 0.509603 0.350302 2.718 ||| 0-0 ||| 1.11987e+06 668016 +a ||| to – of all places ||| 1 0.0188479 1.49697e-06 2.58203e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| to – of all places – those ||| 1 0.0188479 1.49697e-06 7.3477e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| to – of all places – ||| 1 0.0188479 1.49697e-06 1.01474e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| to – of all ||| 1 0.0188479 1.49697e-06 4.88095e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| to – of ||| 1 0.0188479 1.49697e-06 1.03292e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| to ‘ ||| 0.0230769 0.229811 4.49091e-06 3.93389e-05 2.718 ||| 0-0 ||| 130 668016 +a ||| tobacco industry in opposition to ||| 1 0.229811 1.49697e-06 5.65451e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| today , it is more to ||| 1 0.229811 1.49697e-06 2.39964e-11 2.718 ||| 0-5 ||| 1 668016 +a ||| today at ||| 0.04 0.204175 1.64667e-05 1.53602e-05 2.718 ||| 0-1 ||| 275 668016 +a ||| today for ||| 0.00769231 0.0683377 1.49697e-06 1.66297e-05 2.718 ||| 0-1 ||| 130 668016 +a ||| today in ||| 0.00257069 0.0587624 2.99394e-06 2.71152e-05 2.718 ||| 0-1 ||| 778 668016 +a ||| today is what we ||| 0.166667 0.0008079 1.49697e-06 9.00205e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| today like to ||| 1 0.229811 1.49697e-06 2.80754e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| today on the way to ||| 1 0.229811 1.49697e-06 1.39984e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| today on the ||| 0.00806452 0.0782999 1.49697e-06 1.05105e-06 2.718 ||| 0-1 ||| 124 668016 +a ||| today on ||| 0.00692042 0.0782999 2.99394e-06 1.71203e-05 2.718 ||| 0-1 ||| 289 668016 +a ||| today to get ||| 0.5 0.229811 1.49697e-06 6.91174e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| today to ||| 0.0124481 0.229811 8.98182e-06 0.000158091 2.718 ||| 0-1 ||| 482 668016 +a ||| today with the fight against trafficking ||| 1 0.05146 1.49697e-06 3.01975e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| today with the fight against ||| 1 0.05146 1.49697e-06 2.5376e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| today ||| 2.17061e-05 8.99e-05 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 46070 668016 +a ||| together , ||| 0.000733138 0.0160315 1.49697e-06 3.23299e-05 2.718 ||| 0-0 ||| 1364 668016 +a ||| together again ||| 0.037037 0.0700825 1.49697e-06 1.39243e-06 2.718 ||| 0-1 ||| 27 668016 +a ||| together and join ||| 1 0.207917 1.49697e-06 1.02795e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| together and rise above ||| 1 0.0015873 1.49697e-06 1.88636e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| together and rise ||| 1 0.0015873 1.49697e-06 1.45553e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| together and ||| 0.00180832 0.0015873 1.49697e-06 1.15886e-06 2.718 ||| 0-1 ||| 553 668016 +a ||| together as ||| 0.0126582 0.0243476 1.49697e-06 5.2687e-06 2.718 ||| 0-1 ||| 79 668016 +a ||| together at ||| 0.0298507 0.204175 2.99394e-06 2.04417e-05 2.718 ||| 0-1 ||| 67 668016 +a ||| together by the ||| 0.0833333 0.0337966 1.49697e-06 3.03364e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| together by ||| 0.0294118 0.0337966 1.49697e-06 4.94144e-06 2.718 ||| 0-1 ||| 34 668016 +a ||| together in such a ||| 0.25 0.0587624 1.49697e-06 3.30925e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| together in such ||| 0.1 0.0587624 1.49697e-06 7.46574e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| together in terms ||| 0.25 0.0587624 1.49697e-06 3.96075e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| together in ||| 0.0116667 0.0587624 1.04788e-05 3.60855e-05 2.718 ||| 0-1 ||| 600 668016 +a ||| together on ||| 0.00722022 0.0782999 2.99394e-06 2.27841e-05 2.718 ||| 0-1 ||| 277 668016 +a ||| together to address ||| 0.0625 0.229811 1.49697e-06 1.60528e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| together to prevail ||| 0.25 0.229811 1.49697e-06 5.00731e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| together to ||| 0.00953679 0.229811 1.04788e-05 0.000210391 2.718 ||| 0-1 ||| 734 668016 +a ||| together very closely on this . ||| 1 0.0782999 1.49697e-06 1.37315e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| together very closely on this ||| 1 0.0782999 1.49697e-06 4.53335e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| together very closely on ||| 1 0.0782999 1.49697e-06 7.01605e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| together with a clear ||| 0.5 0.0571592 1.49697e-06 1.4796e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| together with a ||| 0.0045045 0.0571592 1.49697e-06 4.44458e-07 2.718 ||| 0-1 ||| 222 668016 +a ||| together with you ||| 0.025 0.0571592 1.49697e-06 3.23744e-08 2.718 ||| 0-1 ||| 40 668016 +a ||| together with ||| 0.00427267 0.0571592 3.29333e-05 1.00271e-05 2.718 ||| 0-1 ||| 5149 668016 +a ||| together ||| 0.00243531 0.0160315 4.7903e-05 0.0002711 2.718 ||| 0-0 ||| 13140 668016 +a ||| told about ||| 0.04 0.0526361 1.49697e-06 2.99334e-07 2.718 ||| 0-1 ||| 25 668016 +a ||| told by ||| 0.0208333 0.0337966 1.49697e-06 4.88714e-07 2.718 ||| 0-1 ||| 48 668016 +a ||| told in ||| 0.047619 0.0587624 1.49697e-06 3.5689e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| told to ||| 0.03125 0.229811 1.49697e-06 2.08079e-05 2.718 ||| 0-1 ||| 32 668016 +a ||| told us , which will ||| 1 0.0561595 1.49697e-06 2.44256e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| told us ||| 0.00176991 0.0071317 1.49697e-06 3.0686e-08 2.718 ||| 0-1 ||| 565 668016 +a ||| told ||| 0.00038625 0.0026509 1.49697e-06 1.19e-05 2.718 ||| 0-0 ||| 2589 668016 +a ||| toll on the ||| 0.2 0.0782999 1.49697e-06 1.16447e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| toll on ||| 0.0588235 0.0782999 1.49697e-06 1.89678e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| tomorrow at ||| 0.00328299 0.204175 7.48485e-06 8.10043e-07 2.718 ||| 0-1 ||| 1523 668016 +a ||| tomorrow ||| 9.42507e-05 0.0001083 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 10610 668016 +a ||| tone after ||| 0.5 0.0341027 1.49697e-06 6.62652e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| tonne to ||| 0.166667 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| tonnes in 1991 to ||| 0.5 0.229811 1.49697e-06 6.51279e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| tonnes to ||| 0.363636 0.229811 1.19758e-05 7.07609e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| too , am in ||| 0.125 0.0587624 1.49697e-06 1.24578e-08 2.718 ||| 0-3 ||| 8 668016 +a ||| too , for ||| 0.0125 0.0683377 1.49697e-06 5.98072e-06 2.718 ||| 0-2 ||| 80 668016 +a ||| too , to ||| 0.0543478 0.229811 7.48485e-06 5.68559e-05 2.718 ||| 0-2 ||| 92 668016 +a ||| too as ||| 0.0833333 0.0243476 1.49697e-06 1.19392e-05 2.718 ||| 0-1 ||| 12 668016 +a ||| too aware of the historical examples . ||| 1 0.0188479 1.49697e-06 7.73501e-23 2.718 ||| 0-2 ||| 1 668016 +a ||| too aware of the historical examples ||| 1 0.0188479 1.49697e-06 2.55365e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| too aware of the historical ||| 1 0.0188479 1.49697e-06 1.4761e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| too aware of the ||| 0.25 0.0188479 1.49697e-06 3.43279e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| too aware of ||| 0.0909091 0.0188479 1.49697e-06 5.59161e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| too can and ||| 1 0.0015873 1.49697e-06 7.81066e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| too difficult to organise ||| 0.25 0.229811 1.49697e-06 6.15822e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| too difficult to ||| 0.05 0.229811 1.49697e-06 5.92137e-08 2.718 ||| 0-2 ||| 20 668016 +a ||| too eager to ||| 0.0909091 0.229811 1.49697e-06 1.90704e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| too far and ||| 0.0384615 0.0015873 2.99394e-06 1.7928e-09 2.718 ||| 0-2 ||| 52 668016 +a ||| too fine a point on ||| 0.25 0.0782999 1.49697e-06 6.48658e-14 2.718 ||| 0-4 ||| 4 668016 +a ||| too happy to hide behind ||| 1 0.229811 1.49697e-06 2.4221e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| too happy to hide ||| 1 0.229811 1.49697e-06 2.70323e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| too happy to ||| 0.0833333 0.229811 1.49697e-06 3.00359e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| too late we will ||| 1 0.0561595 1.49697e-06 6.89792e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| too much invested to quit ||| 1 0.229811 1.49697e-06 2.54575e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| too much invested to ||| 1 0.229811 1.49697e-06 3.63679e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| too much of a ||| 0.0357143 0.0188479 1.49697e-06 1.791e-09 2.718 ||| 0-2 ||| 28 668016 +a ||| too much of ||| 0.00787402 0.0188479 1.49697e-06 4.04053e-08 2.718 ||| 0-2 ||| 127 668016 +a ||| too much on the ||| 0.0243902 0.0782999 1.49697e-06 3.18141e-09 2.718 ||| 0-2 ||| 41 668016 +a ||| too much on ||| 0.00925926 0.0782999 1.49697e-06 5.18214e-08 2.718 ||| 0-2 ||| 108 668016 +a ||| too must allow for ||| 1 0.0683377 1.49697e-06 1.88047e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| too to ||| 0.0555556 0.229811 5.98788e-06 0.00047676 2.718 ||| 0-1 ||| 72 668016 +a ||| too will ||| 0.0196078 0.0561595 1.49697e-06 1.91679e-05 2.718 ||| 0-1 ||| 51 668016 +a ||| too would like to ||| 0.00374532 0.229811 1.49697e-06 4.9689e-09 2.718 ||| 0-3 ||| 267 668016 +a ||| took away ||| 0.0434783 0.0377856 1.49697e-06 3.47363e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| took for ||| 0.0666667 0.0683377 1.49697e-06 5.43515e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| took place in ||| 0.00378072 0.0587624 2.99394e-06 1.33376e-08 2.718 ||| 0-2 ||| 529 668016 +a ||| took the side of the ||| 0.2 0.0188479 1.49697e-06 3.60437e-12 2.718 ||| 0-3 ||| 5 668016 +a ||| took the side of ||| 0.142857 0.0188479 1.49697e-06 5.87109e-11 2.718 ||| 0-3 ||| 7 668016 +a ||| took to ||| 0.030303 0.229811 2.99394e-06 5.16695e-05 2.718 ||| 0-1 ||| 66 668016 +a ||| tool for ||| 0.00309598 0.0683377 1.49697e-06 4.23758e-07 2.718 ||| 0-1 ||| 323 668016 +a ||| tool in ||| 0.0181818 0.0587624 1.49697e-06 6.90949e-07 2.718 ||| 0-1 ||| 55 668016 +a ||| tool to be used for the ||| 0.5 0.229811 1.49697e-06 1.47781e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| tool to be used for ||| 0.25 0.229811 1.49697e-06 2.40718e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| tool to be used ||| 0.166667 0.229811 1.49697e-06 3.13202e-11 2.718 ||| 0-1 ||| 6 668016 +a ||| tool to be ||| 0.142857 0.229811 1.49697e-06 7.30075e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| tool to ||| 0.00657895 0.229811 1.49697e-06 4.02847e-06 2.718 ||| 0-1 ||| 152 668016 +a ||| top of ||| 0.00907441 0.0188479 7.48485e-06 2.04387e-06 2.718 ||| 0-1 ||| 551 668016 +a ||| top off ||| 1 0.0893962 1.49697e-06 5.28546e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| topic is high on the agenda ||| 1 0.0782999 1.49697e-06 2.02359e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| topic is high on the ||| 1 0.0782999 1.49697e-06 2.03785e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| topic is high on ||| 1 0.0782999 1.49697e-06 3.31942e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| topic of ||| 0.00325733 0.0004869 1.49697e-06 4.89276e-08 2.718 ||| 0-0 ||| 307 668016 +a ||| topic ||| 0.000479157 0.0004869 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 2087 668016 +a ||| topics on ||| 0.0344828 0.0782999 1.49697e-06 2.20026e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| tot up ||| 0.2 0.0195077 1.49697e-06 4.9104e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| total agreement on this subject , as ||| 1 0.0782999 1.49697e-06 2.79838e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| total agreement on this subject , ||| 1 0.0782999 1.49697e-06 2.74233e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| total agreement on this subject ||| 1 0.0782999 1.49697e-06 2.29955e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| total agreement on this ||| 1 0.0782999 1.49697e-06 4.26001e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| total agreement on ||| 0.2 0.0782999 1.49697e-06 6.59301e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| total amount in ||| 0.333333 0.0587624 1.49697e-06 1.37848e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| total for ||| 0.0384615 0.0683377 1.49697e-06 3.47481e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| total of ||| 0.00327869 0.0188479 2.99394e-06 2.78925e-06 2.718 ||| 0-1 ||| 610 668016 +a ||| totally to ||| 0.125 0.229811 1.49697e-06 1.5133e-05 2.718 ||| 0-1 ||| 8 668016 +a ||| totals one ||| 1 0.153846 1.49697e-06 4.5848e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| totals ||| 0.0238095 0.153846 1.49697e-06 1.1e-05 2.718 ||| 0-0 ||| 42 668016 +a ||| touch on ||| 0.0060241 0.0782999 1.49697e-06 8.34583e-07 2.718 ||| 0-1 ||| 166 668016 +a ||| touch upon ||| 0.00970874 0.19056 1.49697e-06 4.3373e-08 2.718 ||| 0-1 ||| 103 668016 +a ||| touches a raw nerve ||| 0.333333 0.0741627 1.49697e-06 2.01962e-17 2.718 ||| 0-0 ||| 3 668016 +a ||| touches a raw ||| 0.333333 0.0741627 1.49697e-06 1.44258e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| touches a ||| 0.142857 0.0741627 1.49697e-06 1.25442e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| touches and ||| 1 0.0741627 1.49697e-06 3.54483e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| touches on ||| 0.0104167 0.0762313 1.49697e-06 1.07358e-06 2.718 ||| 0-0 0-1 ||| 96 668016 +a ||| touches to ||| 0.047619 0.229811 1.49697e-06 1.89163e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| touches upon traditional relations within NATO , ||| 1 0.0123496 1.49697e-06 2.88134e-28 2.718 ||| 0-4 ||| 1 668016 +a ||| touches upon traditional relations within NATO ||| 1 0.0123496 1.49697e-06 2.41612e-27 2.718 ||| 0-4 ||| 1 668016 +a ||| touches upon traditional relations within ||| 1 0.0123496 1.49697e-06 3.35572e-22 2.718 ||| 0-4 ||| 1 668016 +a ||| touches upon ||| 0.0227273 0.19056 1.49697e-06 1.06461e-08 2.718 ||| 0-1 ||| 44 668016 +a ||| touches ||| 0.0123457 0.0741627 4.49091e-06 2.83e-05 2.718 ||| 0-0 ||| 243 668016 +a ||| tour of ||| 0.037037 0.02473 1.49697e-06 1.62682e-07 2.718 ||| 0-0 0-1 ||| 27 668016 +a ||| tour ||| 0.0075188 0.0306122 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 133 668016 +a ||| tourism does to ||| 1 0.229811 1.49697e-06 4.42263e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| toward taking ||| 0.5 0.159609 1.49697e-06 1.89975e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| toward ||| 0.0591133 0.159609 1.79636e-05 4.47e-05 2.718 ||| 0-0 ||| 203 668016 +a ||| towards , ||| 0.142857 0.155507 4.49091e-06 0.000402198 2.718 ||| 0-0 ||| 21 668016 +a ||| towards a system of ||| 0.0666667 0.155507 1.49697e-06 2.26663e-09 2.718 ||| 0-0 ||| 15 668016 +a ||| towards a system ||| 0.0322581 0.155507 1.49697e-06 4.16937e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| towards a ||| 0.00351229 0.155507 1.04788e-05 0.000149493 2.718 ||| 0-0 ||| 1993 668016 +a ||| towards achieving ||| 0.00288184 0.155507 1.49697e-06 2.23266e-07 2.718 ||| 0-0 ||| 347 668016 +a ||| towards and ||| 0.166667 0.155507 1.49697e-06 4.22449e-05 2.718 ||| 0-0 ||| 6 668016 +a ||| towards boosting ||| 0.333333 0.155507 1.49697e-06 1.21414e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| towards dealing with ||| 0.25 0.155507 1.49697e-06 2.22778e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| towards dealing ||| 0.25 0.155507 1.49697e-06 3.4839e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| towards encouraging ||| 0.111111 0.155507 1.49697e-06 8.02679e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| towards ensuring ||| 0.0116279 0.155507 1.49697e-06 3.91896e-07 2.718 ||| 0-0 ||| 86 668016 +a ||| towards golden ||| 1 0.155507 1.49697e-06 6.07068e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| towards just ||| 1 0.155507 1.49697e-06 4.25521e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| towards making ||| 0.0153846 0.155507 1.49697e-06 1.29744e-06 2.718 ||| 0-0 ||| 65 668016 +a ||| towards me ||| 0.0454545 0.155507 1.49697e-06 2.03064e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| towards meeting ||| 0.0344828 0.155507 4.49091e-06 4.23599e-07 2.718 ||| 0-0 ||| 87 668016 +a ||| towards more amicable ||| 0.5 0.155507 1.49697e-06 8.47221e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| towards more modest ||| 0.333333 0.155507 1.49697e-06 3.0808e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| towards more ||| 0.0266667 0.155507 2.99394e-06 7.70201e-06 2.718 ||| 0-0 ||| 75 668016 +a ||| towards obtaining ||| 0.0666667 0.155507 1.49697e-06 4.99145e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| towards one another ||| 0.25 0.155507 1.49697e-06 3.38914e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| towards one ||| 0.037037 0.155507 1.49697e-06 1.4057e-05 2.718 ||| 0-0 ||| 27 668016 +a ||| towards shared responsibility and solidarity ||| 1 0.155507 1.49697e-06 3.46478e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| towards shared responsibility and ||| 1 0.155507 1.49697e-06 1.31741e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| towards shared responsibility ||| 1 0.155507 1.49697e-06 1.05175e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| towards shared ||| 1 0.155507 1.49697e-06 9.10602e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| towards the elections in 2009 and 2010 ||| 0.5 0.0587624 1.49697e-06 2.36165e-23 2.718 ||| 0-3 ||| 2 668016 +a ||| towards the elections in 2009 and ||| 0.5 0.0587624 1.49697e-06 2.7461e-18 2.718 ||| 0-3 ||| 2 668016 +a ||| towards the elections in 2009 ||| 0.5 0.0587624 1.49697e-06 2.19234e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| towards the elections in ||| 0.5 0.0587624 1.49697e-06 1.68642e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| towards the ||| 0.00343151 0.155507 1.79636e-05 0.00020705 2.718 ||| 0-0 ||| 3497 668016 +a ||| towards this ||| 0.00248756 0.155507 1.49697e-06 2.17917e-05 2.718 ||| 0-0 ||| 402 668016 +a ||| towards which the ||| 0.142857 0.155507 1.49697e-06 1.75881e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| towards which ||| 0.0434783 0.155507 2.99394e-06 2.86489e-05 2.718 ||| 0-0 ||| 46 668016 +a ||| towards ||| 0.0742561 0.155507 0.00210324 0.0033726 2.718 ||| 0-0 ||| 18921 668016 +a ||| town and ||| 0.010101 0.0015873 1.49697e-06 2.43117e-08 2.718 ||| 0-1 ||| 99 668016 +a ||| trace their origin back to ||| 1 0.229811 1.49697e-06 3.77532e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| traced back to ||| 0.0714286 0.229811 2.99394e-06 9.42451e-10 2.718 ||| 0-2 ||| 28 668016 +a ||| track record of reasonably ||| 0.5 0.0188479 1.49697e-06 3.07187e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| track record of ||| 0.037037 0.0188479 1.49697e-06 6.5359e-11 2.718 ||| 0-2 ||| 27 668016 +a ||| trade across ||| 0.0384615 0.0490758 1.49697e-06 4.28532e-08 2.718 ||| 0-1 ||| 26 668016 +a ||| trade are putting ||| 1 0.049485 1.49697e-06 2.66555e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| trade in ||| 0.00147601 0.0587624 2.99394e-06 5.23319e-06 2.718 ||| 0-1 ||| 1355 668016 +a ||| trade matters in ||| 0.25 0.0587624 1.49697e-06 9.68139e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| trade to reducing poverty and encouraging growth ||| 0.5 0.229811 1.49697e-06 1.76097e-25 2.718 ||| 0-1 ||| 2 668016 +a ||| trade to reducing poverty and encouraging ||| 0.5 0.229811 1.49697e-06 3.65346e-21 2.718 ||| 0-1 ||| 2 668016 +a ||| trade to reducing poverty and ||| 0.5 0.229811 1.49697e-06 1.53507e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| trade to reducing poverty ||| 0.5 0.229811 1.49697e-06 1.22552e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| trade to reducing ||| 0.5 0.229811 1.49697e-06 8.116e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| trade to ||| 0.0105263 0.229811 1.49697e-06 3.05113e-05 2.718 ||| 0-1 ||| 95 668016 +a ||| traders wishing to sell ||| 0.333333 0.229811 1.49697e-06 2.29153e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| traders wishing to ||| 0.333333 0.229811 1.49697e-06 3.52544e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| trades to ||| 0.166667 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| trading in ||| 0.00657895 0.0587624 1.49697e-06 8.2313e-07 2.718 ||| 0-1 ||| 152 668016 +a ||| tradition of ||| 0.00308642 0.0188479 1.49697e-06 1.39019e-07 2.718 ||| 0-1 ||| 324 668016 +a ||| traditional relations within NATO , ||| 1 0.0123496 1.49697e-06 2.2495e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| traditional relations within NATO ||| 1 0.0123496 1.49697e-06 1.8863e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| traditional relations within ||| 1 0.0123496 1.49697e-06 2.61986e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| traditions is crucial to preserving ||| 1 0.229811 1.49697e-06 1.47992e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| traditions is crucial to ||| 1 0.229811 1.49697e-06 2.55159e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| traditions of ||| 0.008 0.0188479 1.49697e-06 1.80429e-07 2.718 ||| 0-1 ||| 125 668016 +a ||| traffic participants about ||| 1 0.0526361 1.49697e-06 1.13062e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| train as ||| 0.125 0.0243476 1.49697e-06 1.51763e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| train once it is ||| 1 0.0006453 1.49697e-06 6.58062e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| train once it ||| 1 0.0006453 1.49697e-06 2.09968e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| trained ||| 0.00211864 0.0016 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 472 668016 +a ||| training to ||| 0.021978 0.229811 2.99394e-06 1.23656e-05 2.718 ||| 0-1 ||| 91 668016 +a ||| trans-European networks via ||| 1 0.330861 1.49697e-06 6.75685e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| transfer of ||| 0.000798722 0.0188479 1.49697e-06 6.06359e-07 2.718 ||| 0-1 ||| 1252 668016 +a ||| transfer them to ||| 0.166667 0.229811 1.49697e-06 1.92628e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| transferred to the European Parliament ||| 0.333333 0.229811 1.49697e-06 8.91603e-13 2.718 ||| 0-1 ||| 3 668016 +a ||| transferred to the European ||| 1 0.229811 1.49697e-06 1.55331e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| transferred to the ||| 0.00757576 0.229811 1.49697e-06 4.64522e-07 2.718 ||| 0-1 ||| 132 668016 +a ||| transferred to ||| 0.043956 0.229811 1.79636e-05 7.56651e-06 2.718 ||| 0-1 ||| 273 668016 +a ||| transferred ||| 0.00697674 0.006816 8.98182e-06 6.4e-06 2.718 ||| 0-0 ||| 860 668016 +a ||| transformed into ||| 0.00819672 0.107578 1.49697e-06 2.18675e-08 2.718 ||| 0-1 ||| 122 668016 +a ||| transition to ||| 0.00201207 0.229811 1.49697e-06 3.39793e-06 2.718 ||| 0-1 ||| 497 668016 +a ||| translate them into ||| 0.0714286 0.107578 1.49697e-06 7.65804e-11 2.718 ||| 0-2 ||| 14 668016 +a ||| translated into ||| 0.00597015 0.107578 2.99394e-06 5.2239e-08 2.718 ||| 0-1 ||| 335 668016 +a ||| translation into French of the term ' ||| 1 0.107578 1.49697e-06 1.65253e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| translation into French of the term ||| 1 0.107578 1.49697e-06 4.811e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| translation into French of the ||| 1 0.107578 1.49697e-06 4.39762e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| translation into French of ||| 1 0.107578 1.49697e-06 7.1632e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| translation into French ||| 1 0.107578 1.49697e-06 1.31764e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| translation into ||| 0.0294118 0.107578 1.49697e-06 3.52309e-08 2.718 ||| 0-1 ||| 34 668016 +a ||| transnational dimension ||| 0.05 0.0023952 1.49697e-06 5.706e-11 2.718 ||| 0-0 ||| 20 668016 +a ||| transnational ||| 0.00115473 0.0023952 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 866 668016 +a ||| transport in ||| 0.00609756 0.0587624 1.49697e-06 6.18249e-06 2.718 ||| 0-1 ||| 164 668016 +a ||| transport of ||| 0.00148368 0.0188479 1.49697e-06 3.04363e-06 2.718 ||| 0-1 ||| 674 668016 +a ||| transport sector at ||| 1 0.204175 1.49697e-06 6.50366e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| transport to ||| 0.02 0.229811 2.99394e-06 3.6046e-05 2.718 ||| 0-1 ||| 100 668016 +a ||| transport with ||| 0.05 0.0571592 1.49697e-06 1.71793e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| transported to ||| 0.037037 0.127295 1.49697e-06 4.48386e-06 2.718 ||| 0-0 0-1 ||| 27 668016 +a ||| transported ||| 0.00375235 0.0247788 2.99394e-06 1.28e-05 2.718 ||| 0-0 ||| 533 668016 +a ||| transposed into ||| 0.00689655 0.107578 1.49697e-06 1.51858e-08 2.718 ||| 0-1 ||| 145 668016 +a ||| trapped in ||| 0.0344828 0.0587624 2.99394e-06 2.4033e-07 2.718 ||| 0-1 ||| 58 668016 +a ||| travel , but ||| 0.142857 0.0003961 1.49697e-06 2.592e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| travel expenses on ||| 0.166667 0.0782999 1.49697e-06 8.317e-12 2.718 ||| 0-2 ||| 6 668016 +a ||| travel to ||| 0.0110803 0.229811 5.98788e-06 1.32414e-05 2.718 ||| 0-1 ||| 361 668016 +a ||| travelling for ||| 0.1 0.0683377 1.49697e-06 3.31636e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| travelling to ||| 0.00662252 0.229811 1.49697e-06 3.15271e-06 2.718 ||| 0-1 ||| 151 668016 +a ||| tread on ||| 0.166667 0.0782999 1.49697e-06 1.51742e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| treat , ||| 0.125 0.271158 1.49697e-06 5.30087e-05 2.718 ||| 0-0 ||| 8 668016 +a ||| treat Mandela and the apartheid regime equally ||| 1 0.271158 1.49697e-06 1.8772e-28 2.718 ||| 0-0 ||| 1 668016 +a ||| treat Mandela and the apartheid regime ||| 1 0.271158 1.49697e-06 5.3788e-24 2.718 ||| 0-0 ||| 1 668016 +a ||| treat Mandela and the apartheid ||| 1 0.271158 1.49697e-06 1.91416e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| treat Mandela and the ||| 1 0.271158 1.49697e-06 1.36726e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| treat Mandela and ||| 1 0.271158 1.49697e-06 2.22711e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| treat Mandela ||| 1 0.271158 1.49697e-06 1.778e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| treat a ||| 0.0666667 0.271158 1.49697e-06 1.97028e-05 2.718 ||| 0-0 ||| 15 668016 +a ||| treat it in ||| 0.5 0.0587624 1.49697e-06 1.77364e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| treat them like children ||| 0.5 0.271158 1.49697e-06 1.5775e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| treat them like ||| 0.111111 0.271158 1.49697e-06 2.11745e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| treat them ||| 0.016129 0.271158 1.49697e-06 1.19233e-06 2.718 ||| 0-0 ||| 62 668016 +a ||| treat with ||| 0.0769231 0.0571592 1.49697e-06 2.77139e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| treat ||| 0.0236305 0.271158 3.29333e-05 0.0004445 2.718 ||| 0-0 ||| 931 668016 +a ||| treated as ||| 0.002457 0.0243476 1.49697e-06 4.76341e-07 2.718 ||| 0-1 ||| 407 668016 +a ||| treated by means of ||| 0.5 0.0188479 1.49697e-06 5.34352e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| treated in the same way ||| 0.0192308 0.0587624 1.49697e-06 3.47424e-13 2.718 ||| 0-1 ||| 52 668016 +a ||| treated in the same ||| 0.0181818 0.0587624 1.49697e-06 1.61173e-10 2.718 ||| 0-1 ||| 55 668016 +a ||| treated in the ||| 0.0153846 0.0587624 1.49697e-06 2.0029e-07 2.718 ||| 0-1 ||| 65 668016 +a ||| treated in ||| 0.0097561 0.0587624 2.99394e-06 3.26248e-06 2.718 ||| 0-1 ||| 205 668016 +a ||| treated several ||| 0.5 0.016092 1.49697e-06 2.92785e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| treated with ||| 0.00534759 0.0571592 1.49697e-06 9.06544e-07 2.718 ||| 0-1 ||| 187 668016 +a ||| treated ||| 0.00317029 0.016092 1.04788e-05 4.47e-05 2.718 ||| 0-0 ||| 2208 668016 +a ||| treating them like ||| 0.0909091 0.173442 1.49697e-06 5.56397e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| treating them ||| 0.025641 0.173442 1.49697e-06 3.13304e-07 2.718 ||| 0-0 ||| 39 668016 +a ||| treating ||| 0.0207039 0.173442 1.49697e-05 0.0001168 2.718 ||| 0-0 ||| 483 668016 +a ||| treatment of ||| 0.00528634 0.0188479 8.98182e-06 1.7895e-06 2.718 ||| 0-1 ||| 1135 668016 +a ||| treatment on the black market ||| 1 0.0782999 1.49697e-06 4.45809e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| treatment on the black ||| 1 0.0782999 1.49697e-06 1.97261e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| treatment on the ||| 0.0666667 0.0782999 1.49697e-06 1.40901e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| treatment on ||| 0.0454545 0.0782999 1.49697e-06 2.2951e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| treatment to ||| 0.015625 0.229811 1.49697e-06 2.11932e-05 2.718 ||| 0-1 ||| 64 668016 +a ||| treats them ||| 0.1 0.306122 1.49697e-06 2.20225e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| treats ||| 0.0248447 0.306122 5.98788e-06 8.21e-05 2.718 ||| 0-0 ||| 161 668016 +a ||| tremendous ||| 0.0013245 0.0010081 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 755 668016 +a ||| trend in the ||| 0.0384615 0.0587624 1.49697e-06 6.23369e-08 2.718 ||| 0-1 ||| 26 668016 +a ||| trend in ||| 0.040404 0.0587624 5.98788e-06 1.01539e-06 2.718 ||| 0-1 ||| 99 668016 +a ||| trial is conducted ||| 1 0.154068 1.49697e-06 1.54287e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| trials in ||| 0.0454545 0.0587624 1.49697e-06 2.82388e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| trials of ||| 0.0434783 0.0188479 1.49697e-06 1.39019e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| trials on ||| 0.125 0.0782999 1.49697e-06 1.78297e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| tribute to ||| 0.00973574 0.229811 1.04788e-05 6.79585e-06 2.718 ||| 0-1 ||| 719 668016 +a ||| trick on ||| 0.166667 0.0782999 1.49697e-06 6.82841e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| trick to ||| 0.142857 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| tried in ||| 0.0208333 0.0587624 1.49697e-06 2.39729e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| tried to find ||| 0.0232558 0.229811 1.49697e-06 4.65295e-09 2.718 ||| 0-1 ||| 43 668016 +a ||| tried to make to ||| 1 0.229811 1.49697e-06 2.1583e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| tried to obtain legal ||| 1 0.229811 1.49697e-06 1.08867e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| tried to obtain ||| 0.125 0.229811 1.49697e-06 8.4002e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| tried to play ||| 0.125 0.229811 1.49697e-06 3.60607e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| tried to reach ||| 0.05 0.182593 1.49697e-06 5.20045e-09 2.718 ||| 0-2 ||| 20 668016 +a ||| tried to ||| 0.00500939 0.229811 1.19758e-05 1.3977e-05 2.718 ||| 0-1 ||| 1597 668016 +a ||| tries to apply to ||| 1 0.229811 1.49697e-06 1.43334e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| triggered , by ||| 0.333333 0.0337966 1.49697e-06 4.21902e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| triggered to ||| 0.5 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| trip to ||| 0.0379747 0.229811 4.49091e-06 2.13684e-06 2.718 ||| 0-1 ||| 79 668016 +a ||| trotting out ||| 0.2 0.0669777 1.49697e-06 2.8707e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| trouble in ||| 0.03125 0.0587624 1.49697e-06 7.99097e-07 2.718 ||| 0-1 ||| 32 668016 +a ||| trouble telling you ||| 0.0666667 0.143208 1.49697e-06 6.85779e-12 2.718 ||| 0-1 ||| 15 668016 +a ||| trouble telling ||| 0.0666667 0.143208 1.49697e-06 2.12401e-09 2.718 ||| 0-1 ||| 15 668016 +a ||| truck to ||| 1 0.229811 1.49697e-06 2.45211e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| true as a ||| 1 0.0243476 1.49697e-06 6.28371e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| true as ||| 0.0625 0.0243476 1.49697e-06 1.41762e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| true for ||| 0.0047619 0.0683377 1.49697e-06 5.95472e-06 2.718 ||| 0-1 ||| 210 668016 +a ||| true in ||| 0.00540541 0.0587624 1.49697e-06 9.70933e-06 2.718 ||| 0-1 ||| 185 668016 +a ||| true of ||| 0.0080429 0.0188479 4.49091e-06 4.77989e-06 2.718 ||| 0-1 ||| 373 668016 +a ||| true representation of ||| 0.333333 0.0188479 1.49697e-06 5.68806e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| true to say ||| 0.0135135 0.229811 2.99394e-06 5.41066e-08 2.718 ||| 0-1 ||| 148 668016 +a ||| true to ||| 0.0192308 0.229811 5.98788e-06 5.66087e-05 2.718 ||| 0-1 ||| 208 668016 +a ||| truly to ||| 0.125 0.229811 1.49697e-06 2.10531e-05 2.718 ||| 0-1 ||| 8 668016 +a ||| trumpeted of an ||| 0.333333 0.0188479 1.49697e-06 9.20273e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| trumpeted of ||| 0.333333 0.0188479 1.49697e-06 2.07049e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| trust in each other ||| 0.0625 0.0587624 1.49697e-06 4.17312e-13 2.718 ||| 0-1 ||| 16 668016 +a ||| trust in each ||| 0.0833333 0.0587624 1.49697e-06 3.22125e-10 2.718 ||| 0-1 ||| 12 668016 +a ||| trust in ||| 0.00444444 0.0587624 2.99394e-06 1.14758e-06 2.718 ||| 0-1 ||| 450 668016 +a ||| trusts to ||| 0.5 0.229811 2.99394e-06 4.90422e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| truth , to ||| 0.125 0.229811 1.49697e-06 1.02349e-06 2.718 ||| 0-2 ||| 8 668016 +a ||| truth of ||| 0.0138889 0.0188479 1.49697e-06 7.24673e-07 2.718 ||| 0-1 ||| 72 668016 +a ||| try and obtain ||| 1 0.0015873 1.49697e-06 1.78583e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| try and ||| 0.00531915 0.0015873 4.49091e-06 2.97143e-07 2.718 ||| 0-1 ||| 564 668016 +a ||| try as ||| 0.142857 0.0243476 1.49697e-06 1.35095e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| try now to ||| 0.333333 0.229811 1.49697e-06 1.11124e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| try putting ||| 0.333333 0.049485 1.49697e-06 3.10618e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| try to accommodate ||| 0.125 0.229811 1.49697e-06 5.61043e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| try to act ||| 0.125 0.229811 1.49697e-06 9.1655e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| try to change people ||| 0.5 0.229811 1.49697e-06 5.79301e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| try to change ||| 0.0344828 0.229811 1.49697e-06 6.58147e-09 2.718 ||| 0-1 ||| 29 668016 +a ||| try to force her to ||| 1 0.229811 1.49697e-06 2.21998e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| try to help put ||| 1 0.229811 1.49697e-06 1.13431e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| try to help ||| 0.0232558 0.229811 1.49697e-06 1.02876e-08 2.718 ||| 0-1 ||| 43 668016 +a ||| try to identify ||| 0.0714286 0.229811 1.49697e-06 9.33274e-10 2.718 ||| 0-1 ||| 14 668016 +a ||| try to make ||| 0.0188679 0.229811 2.99394e-06 9.37481e-08 2.718 ||| 0-1 ||| 106 668016 +a ||| try to reach ||| 0.0222222 0.206202 1.49697e-06 7.91286e-08 2.718 ||| 0-1 0-2 ||| 45 668016 +a ||| try to ||| 0.0125371 0.229811 5.68849e-05 5.39464e-05 2.718 ||| 0-1 ||| 3031 668016 +a ||| trying to achieve something ||| 0.5 0.229811 1.49697e-06 5.10386e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| trying to achieve ||| 0.015625 0.229811 2.99394e-06 9.22106e-09 2.718 ||| 0-1 ||| 128 668016 +a ||| trying to bring ||| 0.025 0.229811 1.49697e-06 1.25624e-08 2.718 ||| 0-1 ||| 40 668016 +a ||| trying to conceal things ||| 0.5 0.229811 1.49697e-06 1.01173e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| trying to conceal ||| 0.1 0.229811 1.49697e-06 2.46164e-10 2.718 ||| 0-1 ||| 10 668016 +a ||| trying to control ||| 0.0555556 0.229811 1.49697e-06 3.09521e-09 2.718 ||| 0-1 ||| 18 668016 +a ||| trying to do , ||| 0.0666667 0.229811 1.49697e-06 1.65324e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| trying to do was ||| 0.333333 0.229811 1.49697e-06 4.3433e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| trying to do ||| 0.00865801 0.229811 2.99394e-06 1.38631e-07 2.718 ||| 0-1 ||| 231 668016 +a ||| trying to engage in ||| 1 0.0587624 1.49697e-06 2.98906e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| trying to force us into ||| 1 0.229811 1.49697e-06 2.03246e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| trying to force us ||| 1 0.229811 1.49697e-06 1.9796e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| trying to force ||| 0.0625 0.229811 1.49697e-06 6.86838e-09 2.718 ||| 0-1 ||| 16 668016 +a ||| trying to offload ||| 0.333333 0.229811 1.49697e-06 1.61419e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| trying to reach ||| 0.0106383 0.206202 1.49697e-06 5.91923e-08 2.718 ||| 0-1 0-2 ||| 94 668016 +a ||| trying to return home ||| 0.25 0.229811 1.49697e-06 2.72794e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| trying to return ||| 0.166667 0.229811 1.49697e-06 2.68763e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| trying to ||| 0.00851743 0.229811 4.7903e-05 4.03547e-05 2.718 ||| 0-1 ||| 3757 668016 +a ||| tuna ||| 0.00101937 0.0009124 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 981 668016 +a ||| tune of ||| 0.00510204 0.0188479 1.49697e-06 8.84397e-07 2.718 ||| 0-1 ||| 196 668016 +a ||| tune with ||| 0.0133333 0.0571592 1.49697e-06 4.99183e-07 2.718 ||| 0-1 ||| 75 668016 +a ||| tunnels with ||| 0.333333 0.0571592 1.49697e-06 4.17378e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| turn , in an ||| 1 0.0587624 1.49697e-06 7.14006e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| turn , in ||| 0.125 0.0587624 1.49697e-06 1.60642e-06 2.718 ||| 0-2 ||| 8 668016 +a ||| turn , to ||| 0.105263 0.229811 2.99394e-06 9.36598e-06 2.718 ||| 0-2 ||| 19 668016 +a ||| turn a blind eye to ||| 0.017094 0.229811 2.99394e-06 3.07028e-15 2.718 ||| 0-4 ||| 117 668016 +a ||| turn again ||| 1 0.0700825 1.49697e-06 5.19785e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| turn away from ||| 0.04 0.0435582 1.49697e-06 5.13404e-10 2.718 ||| 0-2 ||| 25 668016 +a ||| turn dependent on the ||| 1 0.0782999 1.49697e-06 1.42546e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| turn dependent on ||| 1 0.0782999 1.49697e-06 2.32191e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| turn for the ||| 0.04 0.0683377 1.49697e-06 5.07184e-07 2.718 ||| 0-1 ||| 25 668016 +a ||| turn for ||| 0.0789474 0.0683377 4.49091e-06 8.26143e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| turn gave way to what ||| 1 0.229811 1.49697e-06 1.98345e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| turn gave way to ||| 1 0.229811 1.49697e-06 1.41362e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| turn in ||| 0.0263158 0.0587624 1.49697e-06 1.34705e-05 2.718 ||| 0-1 ||| 38 668016 +a ||| turn our minds away from ||| 1 0.0435582 1.49697e-06 3.39223e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| turn out to ||| 0.0291262 0.229811 4.49091e-06 3.0083e-07 2.718 ||| 0-2 ||| 103 668016 +a ||| turn over ||| 0.142857 0.0682544 1.49697e-06 5.20794e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| turn round to ||| 0.5 0.229811 1.49697e-06 6.02384e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| turn to the ||| 0.00369004 0.229811 1.49697e-06 4.82157e-06 2.718 ||| 0-1 ||| 271 668016 +a ||| turn to ||| 0.0200669 0.229811 1.79636e-05 7.85376e-05 2.718 ||| 0-1 ||| 598 668016 +a ||| turn up at ||| 0.5 0.204175 1.49697e-06 2.60246e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| turn up in ||| 0.111111 0.0587624 1.49697e-06 4.59411e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| turn will always ||| 0.5 0.0561595 1.49697e-06 5.43101e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| turn will ||| 0.027027 0.0561595 1.49697e-06 3.15757e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| turn ||| 0.000250627 0.0047729 1.49697e-06 3.01e-05 2.718 ||| 0-0 ||| 3990 668016 +a ||| turned into a ||| 0.00819672 0.107578 1.49697e-06 1.51048e-08 2.718 ||| 0-1 ||| 122 668016 +a ||| turned into ||| 0.0107527 0.107578 4.49091e-06 3.40768e-07 2.718 ||| 0-1 ||| 279 668016 +a ||| turned on ||| 0.0833333 0.0782999 2.99394e-06 2.12819e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| turned out onto ||| 0.666667 0.207143 2.99394e-06 5.11857e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| turned out to ||| 0.00724638 0.229811 1.49697e-06 7.52747e-08 2.718 ||| 0-2 ||| 138 668016 +a ||| turned to ||| 0.0307692 0.229811 2.99394e-06 1.96519e-05 2.718 ||| 0-1 ||| 65 668016 +a ||| turned up in ||| 0.142857 0.0587624 1.49697e-06 1.14955e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| turning into a ||| 0.0133333 0.107578 1.49697e-06 1.34624e-08 2.718 ||| 0-1 ||| 75 668016 +a ||| turning into ||| 0.02 0.107578 4.49091e-06 3.03715e-07 2.718 ||| 0-1 ||| 150 668016 +a ||| turning out ||| 0.0588235 0.0669777 1.49697e-06 2.0505e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| turning the knife in ||| 0.5 0.0587624 1.49697e-06 4.61072e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| turning them ||| 0.0666667 0.0045234 1.49697e-06 1.118e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| turning to ||| 0.00792393 0.229811 7.48485e-06 1.75151e-05 2.718 ||| 0-1 ||| 631 668016 +a ||| turning ||| 0.000504286 0.0004202 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1983 668016 +a ||| turns into ||| 0.0333333 0.107578 1.49697e-06 1.22701e-07 2.718 ||| 0-1 ||| 30 668016 +a ||| turns out to ||| 0.0344828 0.229811 1.49697e-06 2.71043e-08 2.718 ||| 0-2 ||| 29 668016 +a ||| turns this into ||| 0.5 0.107578 1.49697e-06 7.92819e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| twice as ||| 0.00729927 0.0243476 1.49697e-06 6.66702e-08 2.718 ||| 0-1 ||| 137 668016 +a ||| two concerns ||| 0.0263158 0.127284 1.49697e-06 5.57549e-07 2.718 ||| 0-1 ||| 38 668016 +a ||| two countries of ||| 0.142857 0.0188479 1.49697e-06 2.655e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| two in ||| 0.0263158 0.0587624 1.49697e-06 1.42035e-05 2.718 ||| 0-1 ||| 38 668016 +a ||| two measures to ||| 1 0.229811 1.49697e-06 1.71337e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| two of ||| 0.00132275 0.0188479 1.49697e-06 6.99236e-06 2.718 ||| 0-1 ||| 756 668016 +a ||| two on ||| 0.0769231 0.0782999 1.49697e-06 8.96798e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| two people - ||| 0.5 0.0079526 1.49697e-06 5.86041e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| two people ||| 0.00862069 0.0079526 1.49697e-06 1.55362e-07 2.718 ||| 0-1 ||| 116 668016 +a ||| two peoples in ||| 0.5 0.0587624 1.49697e-06 1.98849e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| two superpower system fell apart when one ||| 0.5 0.0055468 1.49697e-06 8.64864e-29 2.718 ||| 0-5 ||| 2 668016 +a ||| two superpower system fell apart when ||| 0.5 0.0055468 1.49697e-06 2.07501e-26 2.718 ||| 0-5 ||| 2 668016 +a ||| two to learn ||| 0.5 0.229811 1.49697e-06 2.89011e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| two to ||| 0.0124224 0.229811 2.99394e-06 8.28113e-05 2.718 ||| 0-1 ||| 161 668016 +a ||| type of ||| 0.00188798 0.0188479 8.98182e-06 3.46068e-06 2.718 ||| 0-1 ||| 3178 668016 +a ||| types of ||| 0.00107239 0.0188479 2.99394e-06 1.36357e-06 2.718 ||| 0-1 ||| 1865 668016 +a ||| tyres ||| 0.00398406 0.0172414 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 251 668016 +a ||| ultimately apply ||| 0.166667 0.0196689 1.49697e-06 1.82609e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| ultimately be ||| 0.016129 0.0196689 1.49697e-06 2.2998e-06 2.718 ||| 0-0 ||| 62 668016 +a ||| ultimately deprive ||| 0.333333 0.334034 1.49697e-06 8.92365e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| ultimately of ||| 0.125 0.0188479 1.49697e-06 1.81908e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| ultimately putting ||| 1 0.049485 1.49697e-06 1.24046e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| ultimately to ||| 0.0166667 0.229811 1.49697e-06 2.15435e-05 2.718 ||| 0-1 ||| 60 668016 +a ||| ultimately ||| 0.00256575 0.0196689 1.19758e-05 0.0001269 2.718 ||| 0-0 ||| 3118 668016 +a ||| unable in ||| 0.5 0.0587624 1.49697e-06 1.64025e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| unable to operate ||| 0.166667 0.229811 1.49697e-06 4.64773e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| unable to rise ||| 1 0.229811 1.49697e-06 1.20114e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| unable to ||| 0.00535619 0.229811 1.49697e-05 9.56323e-06 2.718 ||| 0-1 ||| 1867 668016 +a ||| unavailable to ||| 0.142857 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| unbridled pursuit of ||| 0.333333 0.0188479 1.49697e-06 1.32038e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| uncertainty in the region and ||| 1 0.0587624 1.49697e-06 2.62348e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| uncertainty in the region ||| 1 0.0587624 1.49697e-06 2.09445e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| uncertainty in the ||| 0.030303 0.0587624 1.49697e-06 2.13937e-08 2.718 ||| 0-1 ||| 33 668016 +a ||| uncertainty in ||| 0.0144928 0.0587624 1.49697e-06 3.48479e-07 2.718 ||| 0-1 ||| 69 668016 +a ||| unclear because the boundaries of ||| 1 0.0052046 1.49697e-06 3.66315e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| unclear because the boundaries ||| 1 0.0052046 1.49697e-06 6.73818e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| unclear because the ||| 0.5 0.0052046 1.49697e-06 8.52935e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| unclear because ||| 0.333333 0.0052046 1.49697e-06 1.38933e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| uncover ||| 0.0178571 0.0547945 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 56 668016 +a ||| under arrest ||| 0.0333333 0.0384416 1.49697e-06 1.94321e-08 2.718 ||| 0-0 ||| 30 668016 +a ||| under certain ||| 0.00490196 0.0384416 1.49697e-06 4.04244e-07 2.718 ||| 0-0 ||| 204 668016 +a ||| under consideration ||| 0.00342466 0.0384416 1.49697e-06 1.53187e-07 2.718 ||| 0-0 ||| 292 668016 +a ||| under discussion here ||| 0.027027 0.0384416 1.49697e-06 2.48506e-10 2.718 ||| 0-0 ||| 37 668016 +a ||| under discussion ||| 0.00099108 0.0384416 1.49697e-06 1.2255e-07 2.718 ||| 0-0 ||| 1009 668016 +a ||| under international ||| 0.0833333 0.0384416 1.49697e-06 1.09784e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| under lock and key for good ||| 0.5 0.0683377 1.49697e-06 2.24776e-20 2.718 ||| 0-4 ||| 2 668016 +a ||| under lock and key for ||| 0.5 0.0683377 1.49697e-06 4.33429e-17 2.718 ||| 0-4 ||| 2 668016 +a ||| under obligation ||| 0.0322581 0.0384416 1.49697e-06 2.90772e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| under one and ||| 0.333333 0.0015873 1.49697e-06 2.88553e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| under pressure ||| 0.00241546 0.0384416 1.49697e-06 8.52458e-08 2.718 ||| 0-0 ||| 414 668016 +a ||| under serious ||| 0.0909091 0.0384416 1.49697e-06 1.634e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| under submission to ||| 0.333333 0.229811 1.49697e-06 1.08092e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| under the control of ||| 0.00980392 0.0188479 1.49697e-06 4.99729e-11 2.718 ||| 0-3 ||| 102 668016 +a ||| under the general ||| 0.2 0.0384416 1.49697e-06 1.523e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| under the law of ||| 1 0.0384416 1.49697e-06 8.34589e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| under the law ||| 0.0377358 0.0384416 2.99394e-06 1.53519e-08 2.718 ||| 0-0 ||| 53 668016 +a ||| under the urging ||| 0.5 0.340127 1.49697e-06 5.36807e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| under the ||| 0.00122728 0.0384416 2.39515e-05 8.70781e-05 2.718 ||| 0-0 ||| 13037 668016 +a ||| under threat , because , ladies and ||| 1 0.0015873 1.49697e-06 7.5714e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| under threat ||| 0.00257732 0.0384416 1.49697e-06 5.56013e-08 2.718 ||| 0-0 ||| 388 668016 +a ||| under way ||| 0.00512821 0.0384416 8.98182e-06 3.0575e-06 2.718 ||| 0-0 ||| 1170 668016 +a ||| under which action may be taken to ||| 1 0.229811 1.49697e-06 3.99446e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| under which we ||| 0.0909091 0.0384416 1.49697e-06 1.36781e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| under which ||| 0.00130208 0.0384416 1.49697e-06 1.20487e-05 2.718 ||| 0-0 ||| 768 668016 +a ||| under ||| 0.00881808 0.0384416 0.000449091 0.0014184 2.718 ||| 0-0 ||| 34021 668016 +a ||| undergo a ||| 0.0204082 0.227957 1.49697e-06 4.29074e-06 2.718 ||| 0-0 ||| 49 668016 +a ||| undergo ||| 0.0313589 0.227957 1.34727e-05 9.68e-05 2.718 ||| 0-0 ||| 287 668016 +a ||| underlined in ||| 0.0188679 0.0587624 1.49697e-06 2.16297e-07 2.718 ||| 0-1 ||| 53 668016 +a ||| underlying assumption for ||| 0.333333 0.0683377 1.49697e-06 6.55019e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| understand , though ||| 0.125 0.0171304 1.49697e-06 1.8106e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| understand from ||| 0.0322581 0.0435582 1.49697e-06 5.62226e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| understand what is really going on ||| 0.333333 0.0782999 1.49697e-06 5.40104e-17 2.718 ||| 0-5 ||| 3 668016 +a ||| understand why , over ||| 1 0.0682544 1.49697e-06 5.33303e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| understand why progress is speeding up in ||| 1 0.0587624 1.49697e-06 2.27962e-23 2.718 ||| 0-6 ||| 1 668016 +a ||| understanding for ||| 0.0113636 0.0683377 1.49697e-06 1.24548e-06 2.718 ||| 0-1 ||| 88 668016 +a ||| understanding of what ||| 0.030303 0.0188479 1.49697e-06 1.40275e-09 2.718 ||| 0-1 ||| 33 668016 +a ||| understanding of ||| 0.00258732 0.0188479 2.99394e-06 9.99753e-07 2.718 ||| 0-1 ||| 773 668016 +a ||| undertake to do ||| 0.1 0.229811 1.49697e-06 3.11678e-08 2.718 ||| 0-1 ||| 10 668016 +a ||| undertake to judge ||| 0.5 0.229811 1.49697e-06 1.17947e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| undertake to ||| 0.0209205 0.229811 7.48485e-06 9.07281e-06 2.718 ||| 0-1 ||| 239 668016 +a ||| undertake ||| 0.0018018 0.0083494 2.99394e-06 1.19e-05 2.718 ||| 0-0 ||| 1110 668016 +a ||| undertaken at the ||| 0.125 0.204175 1.49697e-06 9.9251e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| undertaken at ||| 0.0333333 0.204175 1.49697e-06 1.61668e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| undertaken by ||| 0.00455581 0.0337966 2.99394e-06 3.90806e-07 2.718 ||| 0-1 ||| 439 668016 +a ||| undertaken in ||| 0.00510204 0.0587624 1.49697e-06 2.85392e-06 2.718 ||| 0-1 ||| 196 668016 +a ||| undertaken to look ||| 0.5 0.229811 1.49697e-06 4.85036e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| undertaken to ||| 0.010274 0.229811 4.49091e-06 1.66393e-05 2.718 ||| 0-1 ||| 292 668016 +a ||| undertaken ||| 0.000505306 0.008107 1.49697e-06 1.83e-05 2.718 ||| 0-0 ||| 1979 668016 +a ||| undertaking of ||| 0.0416667 0.0188479 1.49697e-06 8.84397e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| undertaking schemes involving the composting ||| 1 0.102511 1.49697e-06 7.85479e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| undertaking schemes involving the ||| 1 0.102511 1.49697e-06 1.9637e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| undertaking schemes involving ||| 1 0.102511 1.49697e-06 3.19863e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| undertaking that you will ||| 1 0.0561595 1.49697e-06 2.28709e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| undertaking to ||| 0.0273973 0.229811 5.98788e-06 1.0474e-05 2.718 ||| 0-1 ||| 146 668016 +a ||| undertakings in ||| 0.0163934 0.0587624 1.49697e-06 8.2313e-07 2.718 ||| 0-1 ||| 61 668016 +a ||| undertakings to ||| 0.0166667 0.229811 1.49697e-06 4.79913e-06 2.718 ||| 0-1 ||| 60 668016 +a ||| underway on ||| 0.166667 0.0782999 1.49697e-06 5.31098e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| underway with ||| 0.111111 0.0571592 1.49697e-06 2.33731e-07 2.718 ||| 0-1 ||| 9 668016 +a ||| unduly at ||| 1 0.204175 1.49697e-06 8.50885e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| unemployed at the ||| 1 0.204175 1.49697e-06 8.98483e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| unemployed at ||| 0.5 0.204175 1.49697e-06 1.46352e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| unemployment in the EU , we ||| 1 0.0587624 1.49697e-06 4.54637e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| unemployment in the EU , ||| 0.2 0.0587624 1.49697e-06 4.00481e-12 2.718 ||| 0-1 ||| 5 668016 +a ||| unemployment in the EU ||| 0.0416667 0.0587624 1.49697e-06 3.35819e-11 2.718 ||| 0-1 ||| 24 668016 +a ||| unemployment in the ||| 0.00598802 0.0587624 1.49697e-06 6.78697e-08 2.718 ||| 0-1 ||| 167 668016 +a ||| unemployment in ||| 0.00239808 0.0587624 1.49697e-06 1.10552e-06 2.718 ||| 0-1 ||| 417 668016 +a ||| unfair criticism to be ||| 0.333333 0.229811 1.49697e-06 1.01309e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| unfair criticism to ||| 0.333333 0.229811 1.49697e-06 5.59011e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| unfair practices after ||| 0.333333 0.0341027 1.49697e-06 2.35904e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| unfair practices ||| 0.0114943 0.0008478 1.49697e-06 6.408e-11 2.718 ||| 0-0 ||| 87 668016 +a ||| unfair ||| 0.000423729 0.0008478 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 2360 668016 +a ||| unfairly in ||| 0.333333 0.0587624 1.49697e-06 1.92264e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| unhindered for ||| 0.333333 0.0683377 1.49697e-06 2.57939e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| unify ||| 0.00813008 0.0169492 1.49697e-06 1.8e-06 2.718 ||| 0-0 ||| 123 668016 +a ||| unilaterally decided to change ||| 0.25 0.229811 1.49697e-06 9.35423e-15 2.718 ||| 0-2 ||| 4 668016 +a ||| unilaterally decided to ||| 0.125 0.229811 1.49697e-06 7.6674e-11 2.718 ||| 0-2 ||| 8 668016 +a ||| union , but economic and ||| 1 0.0003961 1.49697e-06 2.3963e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| union , but economic ||| 1 0.0003961 1.49697e-06 1.91307e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| union , but ||| 0.2 0.0003961 1.49697e-06 1.57714e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| union-to-union ||| 1 1 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| uniquely among ||| 0.2 0.0134501 1.49697e-06 1.496e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| unit to ||| 0.0909091 0.229811 1.49697e-06 4.16859e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| unite ||| 0.00385356 0.0936508 2.99394e-06 5.39e-05 2.718 ||| 0-0 ||| 519 668016 +a ||| united front against ||| 0.142857 0.05146 1.49697e-06 3.91802e-12 2.718 ||| 0-2 ||| 7 668016 +a ||| united in ||| 0.00569801 0.0587624 2.99394e-06 1.12354e-06 2.718 ||| 0-1 ||| 351 668016 +a ||| uniting ||| 0.00540541 0.17757 1.49697e-06 3.47e-05 2.718 ||| 0-0 ||| 185 668016 +a ||| universally ||| 0.003861 0.0102041 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 259 668016 +a ||| unkind to ||| 0.333333 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| unless it ||| 0.00515464 0.219585 1.49697e-06 2.26754e-05 2.718 ||| 0-0 ||| 194 668016 +a ||| unless ||| 0.00631458 0.219585 3.29333e-05 0.0012751 2.718 ||| 0-0 ||| 3484 668016 +a ||| unlike ||| 0.00138313 0.321608 4.49091e-06 0.000701 2.718 ||| 0-0 ||| 2169 668016 +a ||| unnecessary for ||| 0.0666667 0.0683377 1.49697e-06 3.7217e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| unsuitable in ||| 0.333333 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| until a ||| 0.0108696 0.0268909 1.49697e-06 1.0155e-05 2.718 ||| 0-0 ||| 92 668016 +a ||| until after the ||| 0.0136986 0.0268909 1.49697e-06 3.81158e-09 2.718 ||| 0-0 ||| 73 668016 +a ||| until after ||| 0.00480769 0.0268909 1.49697e-06 6.20861e-08 2.718 ||| 0-0 ||| 208 668016 +a ||| until half past three in ||| 1 0.0268909 1.49697e-06 1.14518e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| until half past three ||| 1 0.0268909 1.49697e-06 5.3502e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| until half past ||| 1 0.0268909 1.49697e-06 8.45214e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| until half ||| 0.333333 0.0268909 1.49697e-06 6.59808e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| until one is in ||| 0.333333 0.0587624 1.49697e-06 3.8144e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| until some of them encompassed ||| 0.5 0.0188479 1.49697e-06 1.68013e-18 2.718 ||| 0-2 ||| 2 668016 +a ||| until some of them ||| 0.5 0.0188479 1.49697e-06 4.20033e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| until some of ||| 0.5 0.0188479 1.49697e-06 1.56589e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| until they arrive at ||| 1 0.204175 1.49697e-06 1.09061e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| until they have thwarted ||| 0.333333 0.0268909 1.49697e-06 1.6098e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| until they have ||| 0.025641 0.0268909 1.49697e-06 8.94333e-09 2.718 ||| 0-0 ||| 39 668016 +a ||| until they ||| 0.00546448 0.0268909 1.49697e-06 7.47782e-07 2.718 ||| 0-0 ||| 183 668016 +a ||| until this essential step is taken ||| 0.333333 0.0268909 1.49697e-06 5.6138e-19 2.718 ||| 0-0 ||| 3 668016 +a ||| until this essential step is ||| 0.333333 0.0268909 1.49697e-06 6.15886e-16 2.718 ||| 0-0 ||| 3 668016 +a ||| until this essential step ||| 0.333333 0.0268909 1.49697e-06 1.96511e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| until this essential ||| 0.333333 0.0268909 1.49697e-06 1.33228e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| until this ||| 0.00854701 0.0268909 1.49697e-06 1.48031e-06 2.718 ||| 0-0 ||| 117 668016 +a ||| until today ||| 0.0149254 0.0268909 1.49697e-06 1.03393e-07 2.718 ||| 0-0 ||| 67 668016 +a ||| until we are ||| 0.037037 0.0268909 1.49697e-06 3.94613e-08 2.718 ||| 0-0 ||| 27 668016 +a ||| until we have ||| 0.00502513 0.0268909 1.49697e-06 3.11052e-08 2.718 ||| 0-0 ||| 199 668016 +a ||| until we ||| 0.00453515 0.0268909 2.99394e-06 2.60081e-06 2.718 ||| 0-0 ||| 441 668016 +a ||| until ||| 0.00848576 0.0268909 0.000134727 0.0002291 2.718 ||| 0-0 ||| 10606 668016 +a ||| unto ||| 0.181818 0.147059 2.99394e-06 9.1e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| unusually in my case , I ||| 1 0.0587624 1.49697e-06 6.277e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| unusually in my case , ||| 1 0.0587624 1.49697e-06 8.87396e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| unusually in my case ||| 1 0.0587624 1.49697e-06 7.44119e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| unusually in my ||| 1 0.0587624 1.49697e-06 6.95503e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| unusually in ||| 1 0.0587624 1.49697e-06 1.08148e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| unusually ||| 0.00793651 0.0228571 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 126 668016 +a ||| unwilling to ||| 0.0121212 0.229811 2.99394e-06 1.01587e-06 2.718 ||| 0-1 ||| 165 668016 +a ||| unwillingness to ||| 0.00819672 0.229811 1.49697e-06 3.85332e-07 2.718 ||| 0-1 ||| 122 668016 +a ||| up ' as ||| 1 0.0195077 1.49697e-06 4.30287e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| up ' ||| 0.0769231 0.0195077 1.49697e-06 4.21668e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| up , ||| 0.00357143 0.0195077 2.99394e-06 0.000146397 2.718 ||| 0-0 ||| 560 668016 +a ||| up . I would like to encourage ||| 1 0.229811 1.49697e-06 1.02711e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| up . I would like to ||| 1 0.229811 1.49697e-06 2.66781e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| up a number of the ||| 0.5 0.0188479 1.49697e-06 1.35828e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| up a number of ||| 0.1 0.0188479 1.49697e-06 2.21249e-09 2.718 ||| 0-3 ||| 10 668016 +a ||| up a time schedule saying , for ||| 1 0.0683377 1.49697e-06 6.96498e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| up a ||| 0.00297619 0.0195077 2.99394e-06 5.44144e-05 2.718 ||| 0-0 ||| 672 668016 +a ||| up about ||| 0.0333333 0.0526361 1.49697e-06 1.71865e-05 2.718 ||| 0-1 ||| 30 668016 +a ||| up after ||| 0.047619 0.0341027 1.49697e-06 2.86073e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| up again as ||| 0.5 0.0243476 1.49697e-06 1.73017e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| up again ||| 0.0104167 0.0700825 1.49697e-06 7.9069e-06 2.718 ||| 0-1 ||| 96 668016 +a ||| up against ||| 0.0722892 0.05146 1.79636e-05 8.86559e-06 2.718 ||| 0-1 ||| 166 668016 +a ||| up all ||| 0.0185185 0.0195077 1.49697e-06 5.8009e-06 2.718 ||| 0-0 ||| 54 668016 +a ||| up and down ||| 0.125 0.0195077 2.99394e-06 1.07345e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| up and ||| 0.0203443 0.0105475 1.94606e-05 2.36865e-06 2.718 ||| 0-0 0-1 ||| 639 668016 +a ||| up as ||| 0.00546448 0.0243476 1.49697e-06 2.99183e-05 2.718 ||| 0-1 ||| 183 668016 +a ||| up at the moment ||| 1 0.204175 1.49697e-06 1.28771e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| up at the ||| 0.0243902 0.204175 1.49697e-06 7.12622e-06 2.718 ||| 0-1 ||| 41 668016 +a ||| up at ||| 0.135135 0.204175 2.24546e-05 0.000116078 2.718 ||| 0-1 ||| 111 668016 +a ||| up back in ||| 1 0.0587624 1.49697e-06 1.37823e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| up back ||| 0.333333 0.0536618 1.49697e-06 2.5091e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| up by ||| 0.0232143 0.0337966 1.94606e-05 2.80599e-05 2.718 ||| 0-1 ||| 560 668016 +a ||| up for adoption to ||| 0.2 0.229811 1.49697e-06 4.23296e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| up for ||| 0.0840787 0.0683377 7.03576e-05 0.000125672 2.718 ||| 0-1 ||| 559 668016 +a ||| up having ||| 0.111111 0.0195077 1.49697e-06 4.70048e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| up in a ||| 0.0192308 0.0587624 1.49697e-06 9.08286e-06 2.718 ||| 0-1 ||| 52 668016 +a ||| up in accordance with an ||| 1 0.0571592 1.49697e-06 4.30647e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| up in accordance with ||| 0.25 0.0571592 1.49697e-06 9.68901e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| up in hell ||| 1 0.0587624 1.49697e-06 9.63083e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| up in little backrooms ||| 0.5 0.0587624 1.49697e-06 1.32701e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| up in little ||| 0.5 0.0587624 1.49697e-06 3.31752e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| up in prison . that is ||| 1 0.0587624 1.49697e-06 3.99215e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| up in prison . that ||| 1 0.0587624 1.49697e-06 1.27377e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| up in prison . ||| 0.5 0.0587624 1.49697e-06 7.57225e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| up in prison ||| 0.25 0.0587624 1.49697e-06 2.49992e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| up in some matters while it is ||| 1 0.0587624 1.49697e-06 4.28998e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| up in some matters while it ||| 1 0.0587624 1.49697e-06 1.3688e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| up in some matters while ||| 1 0.0587624 1.49697e-06 7.69717e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| up in some matters ||| 1 0.0587624 1.49697e-06 4.12938e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| up in some ||| 0.5 0.0587624 1.49697e-06 2.2321e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| up in the middle ||| 0.5 0.0587624 1.49697e-06 2.57887e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| up in the ||| 0.0134529 0.0587624 4.49091e-06 1.25799e-05 2.718 ||| 0-1 ||| 223 668016 +a ||| up in this context are very ||| 1 0.0587624 1.49697e-06 9.38048e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| up in this context are ||| 1 0.0587624 1.49697e-06 2.69593e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| up in this context ||| 0.5 0.0587624 1.49697e-06 1.77683e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| up in this ||| 0.0263158 0.0587624 1.49697e-06 1.32401e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| up in ||| 0.068836 0.0587624 8.23334e-05 0.000204911 2.718 ||| 0-1 ||| 799 668016 +a ||| up its time ||| 1 0.0195077 1.49697e-06 2.87127e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| up its ||| 0.00934579 0.0195077 1.49697e-06 1.74896e-06 2.718 ||| 0-0 ||| 107 668016 +a ||| up large groups of ||| 0.5 0.0188479 1.49697e-06 1.02642e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| up negotiations with ||| 0.5 0.0571592 1.49697e-06 3.1544e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| up now ||| 0.2 0.0195077 1.49697e-06 2.52873e-06 2.718 ||| 0-0 ||| 5 668016 +a ||| up occasionally ||| 0.166667 0.0195077 1.49697e-06 3.56004e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| up of security ||| 1 0.0188479 1.49697e-06 8.24169e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| up of ||| 0.00923077 0.0188479 4.49091e-06 0.000100877 2.718 ||| 0-1 ||| 325 668016 +a ||| up office as ||| 0.333333 0.0243476 1.49697e-06 3.07859e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| up on a ||| 0.0810811 0.0782999 4.49091e-06 5.73484e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| up on the basis of ||| 0.0555556 0.0188479 1.49697e-06 2.46057e-11 2.718 ||| 0-4 ||| 18 668016 +a ||| up on the ||| 0.00840336 0.0782999 1.49697e-06 7.94283e-06 2.718 ||| 0-1 ||| 119 668016 +a ||| up on to ||| 0.333333 0.0782999 1.49697e-06 1.14964e-05 2.718 ||| 0-1 ||| 3 668016 +a ||| up on ||| 0.0922619 0.0782999 4.64061e-05 0.000129379 2.718 ||| 0-1 ||| 336 668016 +a ||| up once again ||| 0.0833333 0.0700825 1.49697e-06 3.2355e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| up once ||| 0.25 0.0195077 1.49697e-06 5.02334e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| up our ||| 0.00943396 0.0195077 1.49697e-06 1.69335e-06 2.718 ||| 0-0 ||| 106 668016 +a ||| up pushing ||| 1 0.102314 1.49697e-06 2.61585e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| up rejecting ||| 1 0.0036145 1.49697e-06 9.20835e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| up scope for ||| 0.2 0.0683377 1.49697e-06 1.25295e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| up tables with concrete indicators ||| 1 0.0571592 1.49697e-06 1.50772e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| up tables with concrete ||| 1 0.0571592 1.49697e-06 3.20792e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| up tables with ||| 1 0.0571592 1.49697e-06 1.0249e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| up the agenda ||| 0.0769231 0.0195077 1.49697e-06 7.4837e-09 2.718 ||| 0-0 ||| 13 668016 +a ||| up the opportunity to pass ||| 1 0.229811 1.49697e-06 7.54741e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| up the opportunity to ||| 0.166667 0.229811 1.49697e-06 1.31948e-08 2.718 ||| 0-3 ||| 6 668016 +a ||| up the rules on the treatment ||| 0.5 0.0782999 1.49697e-06 3.42805e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| up the rules on the ||| 0.5 0.0782999 1.49697e-06 5.6662e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| up the rules on ||| 0.166667 0.0782999 1.49697e-06 9.22957e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| up the ||| 0.00216294 0.0195077 4.49091e-06 7.53646e-05 2.718 ||| 0-0 ||| 1387 668016 +a ||| up their ||| 0.00694444 0.0195077 1.49697e-06 1.42291e-06 2.718 ||| 0-0 ||| 144 668016 +a ||| up there , ||| 0.0714286 0.0195077 1.49697e-06 4.48751e-07 2.718 ||| 0-0 ||| 14 668016 +a ||| up there in ||| 0.0769231 0.0587624 1.49697e-06 6.28115e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| up there ||| 0.02 0.0195077 1.49697e-06 3.76296e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| up to EUR ||| 0.0526316 0.229811 1.49697e-06 3.19464e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| up to a level ||| 0.0909091 0.229811 1.49697e-06 4.52987e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| up to a ||| 0.00584795 0.229811 1.49697e-06 5.29562e-05 2.718 ||| 0-1 ||| 171 668016 +a ||| up to all of ||| 0.25 0.0188479 1.49697e-06 4.23575e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| up to close ||| 0.333333 0.229811 1.49697e-06 1.77175e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| up to do ||| 0.142857 0.229811 1.49697e-06 4.10417e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| up to in ||| 0.2 0.144287 1.49697e-06 7.17808e-05 2.718 ||| 0-1 0-2 ||| 5 668016 +a ||| up to move ||| 1 0.229811 1.49697e-06 1.8267e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| up to now to ||| 0.2 0.229811 1.49697e-06 2.18677e-07 2.718 ||| 0-3 ||| 5 668016 +a ||| up to only ||| 0.5 0.229811 1.49697e-06 1.32982e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| up to speed with ||| 0.25 0.0571592 1.49697e-06 1.00177e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| up to the ||| 0.00666173 0.229811 1.34727e-05 7.3345e-05 2.718 ||| 0-1 ||| 1351 668016 +a ||| up to them ||| 0.0232558 0.229811 1.49697e-06 3.20467e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| up to ||| 0.0781025 0.229811 0.000648188 0.0011947 2.718 ||| 0-1 ||| 5544 668016 +a ||| up towards one another ||| 1 0.155507 1.49697e-06 1.15587e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| up towards one ||| 1 0.155507 1.49697e-06 4.79414e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| up towards ||| 0.333333 0.155507 1.49697e-06 1.15023e-05 2.718 ||| 0-1 ||| 3 668016 +a ||| up until ||| 0.0037037 0.0268909 2.99394e-06 7.81346e-07 2.718 ||| 0-1 ||| 540 668016 +a ||| up when I ||| 1 0.0055468 1.49697e-06 7.48573e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| up when ||| 0.0588235 0.0055468 1.49697e-06 1.05828e-06 2.718 ||| 0-1 ||| 17 668016 +a ||| up with a Member ||| 0.5 0.0571592 1.49697e-06 1.30054e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| up with a Member ’ ||| 0.5 0.0571592 1.49697e-06 2.26567e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| up with a ||| 0.00414938 0.0571592 1.49697e-06 2.52385e-06 2.718 ||| 0-1 ||| 241 668016 +a ||| up with some sobering ||| 0.333333 0.0571592 1.49697e-06 4.34163e-14 2.718 ||| 0-1 ||| 3 668016 +a ||| up with some ||| 0.037037 0.0571592 1.49697e-06 6.20233e-08 2.718 ||| 0-1 ||| 27 668016 +a ||| up with the fact ||| 0.5 0.0571592 1.49697e-06 1.02396e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| up with the ||| 0.00423729 0.0571592 1.49697e-06 3.49557e-06 2.718 ||| 0-1 ||| 236 668016 +a ||| up with what is presumed to ||| 1 0.0571592 1.49697e-06 2.44737e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| up with what is presumed ||| 1 0.0571592 1.49697e-06 2.75425e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| up with what is ||| 0.5 0.0571592 1.49697e-06 2.50386e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| up with what ||| 0.2 0.0571592 1.49697e-06 7.98906e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| up with ||| 0.0955734 0.0571592 0.000142212 5.69386e-05 2.718 ||| 0-1 ||| 994 668016 +a ||| up ||| 0.0276041 0.0195077 0.00042963 0.0012276 2.718 ||| 0-0 ||| 10397 668016 +a ||| upgraded to ||| 0.1 0.229811 1.49697e-06 1.01587e-06 2.718 ||| 0-1 ||| 10 668016 +a ||| upon ) to defend all people clearly ||| 1 0.229811 1.49697e-06 1.89467e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| upon ) to defend all people ||| 1 0.229811 1.49697e-06 1.03817e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| upon ) to defend all ||| 1 0.229811 1.49697e-06 1.17948e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| upon ) to defend ||| 1 0.229811 1.49697e-06 2.49603e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| upon ) to ||| 1 0.229811 1.49697e-06 1.19427e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| upon , ||| 0.0434783 0.19056 2.99394e-06 0.000235111 2.718 ||| 0-0 ||| 46 668016 +a ||| upon a number ||| 0.25 0.19056 1.49697e-06 4.32397e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| upon a ||| 0.0205479 0.19056 4.49091e-06 8.73883e-05 2.718 ||| 0-0 ||| 146 668016 +a ||| upon and ( ||| 1 0.19056 1.49697e-06 2.38157e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| upon and ||| 0.05 0.19056 1.49697e-06 2.46948e-05 2.718 ||| 0-0 ||| 20 668016 +a ||| upon at ||| 0.1 0.197367 1.49697e-06 6.71008e-05 2.718 ||| 0-0 0-1 ||| 10 668016 +a ||| upon both sides ||| 1 0.19056 1.49697e-06 1.19854e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| upon both ||| 0.111111 0.19056 1.49697e-06 3.26579e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| upon by ||| 0.03125 0.19056 1.49697e-06 1.03506e-05 2.718 ||| 0-0 ||| 32 668016 +a ||| upon each country ||| 0.333333 0.19056 1.49697e-06 1.99169e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| upon each ||| 0.111111 0.19056 1.49697e-06 5.534e-07 2.718 ||| 0-0 ||| 9 668016 +a ||| upon employing ||| 0.5 0.19056 1.49697e-06 6.3088e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| upon getting ||| 0.333333 0.19056 1.49697e-06 2.29088e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| upon him to ||| 1 0.229811 1.49697e-06 2.66391e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| upon in the ||| 0.142857 0.0587624 1.49697e-06 8.74929e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| upon in ||| 0.0357143 0.0587624 1.49697e-06 1.42516e-05 2.718 ||| 0-1 ||| 28 668016 +a ||| upon itself to ||| 0.166667 0.229811 1.49697e-06 5.63942e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| upon itself ||| 0.0357143 0.19056 1.49697e-06 1.33806e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| upon just ||| 1 0.19056 1.49697e-06 2.48744e-06 2.718 ||| 0-0 ||| 1 668016 +a ||| upon on ||| 0.333333 0.19056 1.49697e-06 1.31913e-05 2.718 ||| 0-0 ||| 3 668016 +a ||| upon our times , places and methods ||| 1 0.19056 1.49697e-06 6.91437e-22 2.718 ||| 0-0 ||| 1 668016 +a ||| upon our times , places and ||| 1 0.19056 1.49697e-06 2.18119e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| upon our times , places ||| 1 0.19056 1.49697e-06 1.74134e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| upon our times , ||| 1 0.19056 1.49697e-06 3.29176e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| upon our times ||| 1 0.19056 1.49697e-06 2.76028e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| upon our ||| 0.0196078 0.19056 1.49697e-06 2.71949e-06 2.718 ||| 0-0 ||| 51 668016 +a ||| upon the Stability Pact , which was ||| 1 0.19056 1.49697e-06 3.13225e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| upon the Stability Pact , which ||| 1 0.19056 1.49697e-06 9.99761e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| upon the Stability Pact , ||| 0.5 0.19056 1.49697e-06 1.17694e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| upon the Stability Pact ||| 0.5 0.19056 1.49697e-06 9.86911e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| upon the Stability ||| 0.333333 0.19056 1.49697e-06 6.53583e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| upon the fact ||| 0.0769231 0.19056 1.49697e-06 3.54545e-07 2.718 ||| 0-0 ||| 13 668016 +a ||| upon the idea of ||| 0.5 0.19056 1.49697e-06 1.47521e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| upon the idea ||| 0.333333 0.19056 1.49697e-06 2.71358e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| upon the very ||| 0.5 0.19056 1.49697e-06 4.21138e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| upon the ||| 0.0101833 0.19056 1.49697e-05 0.000121034 2.718 ||| 0-0 ||| 982 668016 +a ||| upon them ||| 0.0289855 0.19056 2.99394e-06 5.28835e-06 2.718 ||| 0-0 ||| 69 668016 +a ||| upon themselves to ||| 0.0833333 0.229811 1.49697e-06 3.57044e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| upon themselves ||| 0.037037 0.19056 1.49697e-06 8.47154e-07 2.718 ||| 0-0 ||| 27 668016 +a ||| upon to push forward ||| 0.2 0.210186 1.49697e-06 1.0644e-11 2.718 ||| 0-0 0-1 ||| 5 668016 +a ||| upon to push ||| 0.2 0.210186 1.49697e-06 1.91302e-08 2.718 ||| 0-0 0-1 ||| 5 668016 +a ||| upon to think ||| 1 0.19056 1.49697e-06 6.70079e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| upon to ||| 0.137097 0.210186 2.54485e-05 0.00069062 2.718 ||| 0-0 0-1 ||| 124 668016 +a ||| upon traditional relations within NATO , ||| 1 0.0123496 1.49697e-06 5.33581e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| upon traditional relations within NATO ||| 1 0.0123496 1.49697e-06 4.47429e-22 2.718 ||| 0-3 ||| 1 668016 +a ||| upon traditional relations within ||| 1 0.0123496 1.49697e-06 6.2143e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| upon us ||| 0.050505 0.19056 7.48485e-06 5.68226e-06 2.718 ||| 0-0 ||| 99 668016 +a ||| upon ||| 0.195035 0.19056 0.00114069 0.0019715 2.718 ||| 0-0 ||| 3907 668016 +a ||| uppermost in our minds ||| 0.0588235 0.0587624 1.49697e-06 2.77889e-15 2.718 ||| 0-1 ||| 17 668016 +a ||| uppermost in our ||| 0.0666667 0.0587624 1.49697e-06 5.80145e-11 2.718 ||| 0-1 ||| 15 668016 +a ||| uppermost in ||| 0.0357143 0.0587624 1.49697e-06 4.20577e-08 2.718 ||| 0-1 ||| 28 668016 +a ||| upstream , namely to ||| 1 0.229811 1.49697e-06 1.66892e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| upsurge in ||| 0.0178571 0.0587624 1.49697e-06 1.08148e-07 2.718 ||| 0-1 ||| 56 668016 +a ||| upwards to ||| 0.333333 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| urge everyone ||| 0.0344828 0.345826 1.49697e-06 1.6438e-07 2.718 ||| 0-0 ||| 29 668016 +a ||| urge him nevertheless to ||| 1 0.229811 1.49697e-06 4.50607e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| urge on ||| 0.2 0.212063 1.49697e-06 9.26577e-05 2.718 ||| 0-0 0-1 ||| 5 668016 +a ||| urge them to ||| 0.0232558 0.229811 1.49697e-06 3.07265e-08 2.718 ||| 0-2 ||| 43 668016 +a ||| urge to ||| 0.027027 0.287819 1.49697e-06 0.000855612 2.718 ||| 0-0 0-1 ||| 37 668016 +a ||| urge your governments to ||| 0.25 0.287819 1.49697e-06 7.48812e-12 2.718 ||| 0-0 0-3 ||| 4 668016 +a ||| urge ||| 0.0140501 0.345826 3.44303e-05 0.0024425 2.718 ||| 0-0 ||| 1637 668016 +a ||| urged Mr ||| 0.25 0.319117 1.49697e-06 2.49631e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| urged to do ||| 0.25 0.229811 1.49697e-06 9.14577e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| urged to ||| 0.0740741 0.274464 5.98788e-06 0.000133955 2.718 ||| 0-0 0-1 ||| 54 668016 +a ||| urged with ||| 0.25 0.0571592 1.49697e-06 1.26883e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| urged ||| 0.0197044 0.319117 1.79636e-05 0.0003824 2.718 ||| 0-0 ||| 609 668016 +a ||| urgency , for ||| 0.1 0.0683377 1.49697e-06 1.13814e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| urgency , to ||| 0.0243902 0.229811 1.49697e-06 1.08198e-06 2.718 ||| 0-2 ||| 41 668016 +a ||| urgency of adopting this ||| 1 0.0188479 1.49697e-06 2.42054e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| urgency of adopting ||| 0.2 0.0188479 1.49697e-06 3.74615e-11 2.718 ||| 0-1 ||| 5 668016 +a ||| urgency of ||| 0.00409836 0.0188479 1.49697e-06 7.66083e-07 2.718 ||| 0-1 ||| 244 668016 +a ||| urgency to ||| 0.0136986 0.229811 1.49697e-06 9.07281e-06 2.718 ||| 0-1 ||| 73 668016 +a ||| urgent , and have allowed itself to ||| 1 0.229811 1.49697e-06 2.12488e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| urgent in ||| 0.0416667 0.0587624 1.49697e-06 1.85655e-06 2.718 ||| 0-1 ||| 24 668016 +a ||| urgently necessary to ||| 0.0333333 0.229811 1.49697e-06 1.4241e-09 2.718 ||| 0-2 ||| 30 668016 +a ||| urgently needs to be put in place ||| 0.5 0.229811 1.49697e-06 7.06495e-19 2.718 ||| 0-2 ||| 2 668016 +a ||| urgently needs to be put in ||| 0.5 0.229811 1.49697e-06 4.69432e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| urgently needs to be put ||| 0.5 0.229811 1.49697e-06 2.19315e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| urgently needs to be ||| 0.0384615 0.229811 1.49697e-06 1.98907e-11 2.718 ||| 0-2 ||| 26 668016 +a ||| urgently needs to ||| 0.0232558 0.229811 1.49697e-06 1.09754e-09 2.718 ||| 0-2 ||| 43 668016 +a ||| urges us to accept ||| 1 0.229811 1.49697e-06 1.53082e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| urges us to ||| 0.125 0.229811 1.49697e-06 1.41349e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| urges ||| 0.0101266 0.403683 5.98788e-06 0.0002601 2.718 ||| 0-0 ||| 395 668016 +a ||| urging it to ||| 0.166667 0.284969 1.49697e-06 1.51813e-06 2.718 ||| 0-0 0-2 ||| 6 668016 +a ||| urging ||| 0.0197531 0.340127 1.19758e-05 0.0002437 2.718 ||| 0-0 ||| 405 668016 +a ||| us , binding on the ||| 0.5 0.0782999 1.49697e-06 1.40887e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| us , binding on ||| 0.5 0.0782999 1.49697e-06 2.29488e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| us , on the other hand ||| 1 0.0782999 1.49697e-06 4.11289e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| us , on the other ||| 1 0.0782999 1.49697e-06 1.03704e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| us , on the ||| 0.0909091 0.0782999 1.49697e-06 8.00492e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| us , on ||| 0.0384615 0.0782999 1.49697e-06 1.30391e-05 2.718 ||| 0-2 ||| 26 668016 +a ||| us , which will ||| 1 0.0561595 1.49697e-06 4.11206e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| us - ||| 0.00505051 0.0071317 1.49697e-06 1.94867e-06 2.718 ||| 0-0 ||| 198 668016 +a ||| us . ||| 0.000344828 0.0071317 1.49697e-06 1.56478e-06 2.718 ||| 0-0 ||| 2900 668016 +a ||| us a greater insight into ||| 1 0.107578 1.49697e-06 5.51895e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| us a ||| 0.00242718 0.0071317 1.49697e-06 2.28987e-05 2.718 ||| 0-0 ||| 412 668016 +a ||| us again ||| 0.0555556 0.0700825 1.49697e-06 6.68209e-06 2.718 ||| 0-1 ||| 18 668016 +a ||| us agree to ||| 0.5 0.229811 1.49697e-06 1.60634e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| us all hope ||| 0.142857 0.0071317 1.49697e-06 4.27932e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| us all ||| 0.00102669 0.0071317 1.49697e-06 2.44114e-06 2.718 ||| 0-0 ||| 974 668016 +a ||| us also congratulate ||| 1 0.245244 1.49697e-06 4.84507e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| us an insight into ||| 1 0.107578 1.49697e-06 4.202e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| us and ||| 0.002002 0.0071317 2.99394e-06 6.47088e-06 2.718 ||| 0-0 ||| 999 668016 +a ||| us at least ||| 0.0384615 0.204175 1.49697e-06 2.4073e-08 2.718 ||| 0-1 ||| 26 668016 +a ||| us at the ||| 0.0243902 0.204175 1.49697e-06 6.02234e-06 2.718 ||| 0-1 ||| 41 668016 +a ||| us at ||| 0.0496454 0.204175 1.04788e-05 9.80968e-05 2.718 ||| 0-1 ||| 141 668016 +a ||| us bear in mind ||| 0.333333 0.0587624 1.49697e-06 6.53013e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| us bear in ||| 0.5 0.0587624 1.49697e-06 2.59235e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| us bring ||| 0.5 0.0161903 1.49697e-06 5.49924e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| us by all means ||| 1 0.0337966 1.49697e-06 7.10091e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| us by all ||| 1 0.0337966 1.49697e-06 1.12055e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| us by ||| 0.012766 0.0337966 4.49091e-06 2.37133e-05 2.718 ||| 0-1 ||| 235 668016 +a ||| us come to ||| 1 0.229811 1.49697e-06 8.57487e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| us congratulate ||| 0.5 0.245244 1.49697e-06 9.59686e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| us for ||| 0.00497512 0.0683377 1.49697e-06 0.000106205 2.718 ||| 0-1 ||| 201 668016 +a ||| us from being ||| 0.333333 0.0435582 1.49697e-06 5.90457e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| us from ||| 0.03125 0.0435582 7.48485e-06 2.07484e-05 2.718 ||| 0-1 ||| 160 668016 +a ||| us giving up ||| 1 0.136521 1.49697e-06 9.91428e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| us giving ||| 0.166667 0.136521 1.49697e-06 2.90699e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| us having to ||| 0.0833333 0.229811 1.49697e-06 3.86591e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| us here on ||| 1 0.0782999 1.49697e-06 2.21716e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| us here ||| 0.0021978 0.0182742 1.49697e-06 2.47812e-06 2.718 ||| 0-1 ||| 455 668016 +a ||| us in all ||| 0.0833333 0.0587624 1.49697e-06 8.18296e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| us in the ||| 0.0043573 0.0587624 2.99394e-06 1.06312e-05 2.718 ||| 0-1 ||| 459 668016 +a ||| us in ||| 0.0188434 0.0587624 4.34121e-05 0.00017317 2.718 ||| 0-1 ||| 1539 668016 +a ||| us into ||| 0.108696 0.107578 7.48485e-06 1.75073e-05 2.718 ||| 0-1 ||| 46 668016 +a ||| us is ||| 0.00189394 0.0071317 1.49697e-06 1.61908e-05 2.718 ||| 0-0 ||| 528 668016 +a ||| us just ||| 0.0454545 0.0071317 1.49697e-06 6.51794e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| us make it happen ||| 0.333333 0.0071317 1.49697e-06 1.73538e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| us make it ||| 0.142857 0.0071317 1.49697e-06 1.59648e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| us make ||| 0.030303 0.0071317 1.49697e-06 8.97747e-07 2.718 ||| 0-0 ||| 33 668016 +a ||| us must , to ||| 1 0.229811 1.49697e-06 1.86097e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| us not to ||| 0.0151515 0.229811 1.49697e-06 3.44701e-06 2.718 ||| 0-2 ||| 66 668016 +a ||| us now to ||| 0.0714286 0.229811 1.49697e-06 2.07976e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| us of ||| 0.00892857 0.0188479 1.49697e-06 8.52512e-05 2.718 ||| 0-1 ||| 112 668016 +a ||| us on ||| 0.0152091 0.0782999 5.98788e-06 0.000109338 2.718 ||| 0-1 ||| 263 668016 +a ||| us once again ||| 0.0714286 0.0700825 1.49697e-06 2.73431e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| us remember ||| 0.0294118 0.0071317 1.49697e-06 1.93208e-08 2.718 ||| 0-0 ||| 34 668016 +a ||| us say from ||| 1 0.0435582 1.49697e-06 1.98313e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| us see ||| 0.0322581 0.0071317 1.49697e-06 3.63996e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| us so ||| 0.03125 0.0071317 1.49697e-06 1.17253e-06 2.718 ||| 0-0 ||| 32 668016 +a ||| us still more to ||| 1 0.229811 1.49697e-06 1.73666e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| us support ||| 0.0666667 0.0027239 1.49697e-06 4.28871e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| us that taking ||| 1 0.0112121 1.49697e-06 8.18882e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| us the ||| 0.00342466 0.0071317 1.49697e-06 3.1715e-05 2.718 ||| 0-0 ||| 292 668016 +a ||| us to accept ||| 0.04 0.229811 1.49697e-06 1.09344e-07 2.718 ||| 0-1 ||| 25 668016 +a ||| us to achieve ||| 0.0166667 0.229811 1.49697e-06 2.30703e-07 2.718 ||| 0-1 ||| 60 668016 +a ||| us to ask ||| 0.1 0.229811 1.49697e-06 1.38825e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| us to be supporting ||| 0.5 0.190621 1.49697e-06 5.3209e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| us to be ||| 0.0197044 0.229811 5.98788e-06 1.82976e-05 2.718 ||| 0-1 ||| 203 668016 +a ||| us to do ||| 0.008 0.229811 1.49697e-06 3.46841e-06 2.718 ||| 0-1 ||| 125 668016 +a ||| us to draw on ||| 0.5 0.229811 1.49697e-06 7.99851e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| us to draw ||| 0.0666667 0.229811 1.49697e-06 1.19541e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| us to ensure ||| 0.0119048 0.229811 1.49697e-06 4.52722e-07 2.718 ||| 0-1 ||| 84 668016 +a ||| us to get closer to ||| 0.333333 0.229811 1.49697e-06 8.35456e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| us to get ||| 0.0277778 0.229811 1.49697e-06 4.41414e-07 2.718 ||| 0-1 ||| 36 668016 +a ||| us to improve ||| 0.0588235 0.229811 1.49697e-06 4.39193e-08 2.718 ||| 0-1 ||| 17 668016 +a ||| us to meet ||| 0.0588235 0.229811 1.49697e-06 1.22772e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| us to take a very ||| 1 0.229811 1.49697e-06 2.50706e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| us to take a ||| 0.05 0.229811 1.49697e-06 7.20524e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| us to take ||| 0.00625 0.229811 1.49697e-06 1.62552e-06 2.718 ||| 0-1 ||| 160 668016 +a ||| us to work ||| 0.025 0.229811 1.49697e-06 6.39102e-07 2.718 ||| 0-1 ||| 40 668016 +a ||| us to ||| 0.0464512 0.229811 0.000241012 0.00100964 2.718 ||| 0-1 ||| 3466 668016 +a ||| us towards ||| 0.0714286 0.155507 1.49697e-06 9.72051e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| us up ||| 0.0434783 0.0195077 1.49697e-06 3.53819e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| us who sit ||| 0.111111 0.0005736 1.49697e-06 4.27073e-12 2.718 ||| 0-1 ||| 9 668016 +a ||| us who ||| 0.00186916 0.0005736 1.49697e-06 1.12982e-07 2.718 ||| 0-1 ||| 535 668016 +a ||| us will be ||| 0.0294118 0.0561595 1.49697e-06 7.35645e-07 2.718 ||| 0-1 ||| 34 668016 +a ||| us will gradually lead ||| 1 0.11393 1.49697e-06 1.16109e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| us will gradually ||| 1 0.11393 1.49697e-06 6.03165e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| us will ||| 0.0125 0.0561595 1.49697e-06 4.0592e-05 2.718 ||| 0-1 ||| 80 668016 +a ||| us with ||| 0.0192771 0.0571592 1.19758e-05 4.81186e-05 2.718 ||| 0-1 ||| 415 668016 +a ||| us ||| 0.00165863 0.0071317 0.00011377 0.0005166 2.718 ||| 0-0 ||| 45821 668016 +a ||| use all of ||| 0.0769231 0.0188479 1.49697e-06 6.79563e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| use by ||| 0.00826446 0.0337966 1.49697e-06 4.00021e-06 2.718 ||| 0-1 ||| 121 668016 +a ||| use fodder crops from ||| 1 0.0435582 1.49697e-06 8.28113e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| use for ||| 0.00649351 0.0683377 1.49697e-06 1.79157e-05 2.718 ||| 0-1 ||| 154 668016 +a ||| use in ||| 0.0102669 0.0587624 7.48485e-06 2.92121e-05 2.718 ||| 0-1 ||| 487 668016 +a ||| use its resources to ||| 0.2 0.229811 1.49697e-06 1.73737e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| use of animals in ||| 0.0833333 0.0587624 1.49697e-06 6.46352e-11 2.718 ||| 0-3 ||| 12 668016 +a ||| use of ||| 0.00104265 0.0188479 1.64667e-05 1.43811e-05 2.718 ||| 0-1 ||| 10550 668016 +a ||| use the legal instruments available to it ||| 1 0.229811 1.49697e-06 1.98539e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| use the legal instruments available to ||| 1 0.229811 1.49697e-06 1.11644e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| use the term ||| 0.0185185 0.0023121 1.49697e-06 4.89519e-10 2.718 ||| 0-2 ||| 54 668016 +a ||| use to assist ||| 1 0.266064 1.49697e-06 1.33852e-07 2.718 ||| 0-1 0-2 ||| 1 668016 +a ||| use to remind users ||| 1 0.229811 1.49697e-06 5.4733e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| use to remind ||| 1 0.229811 1.49697e-06 5.26278e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| use to us in ||| 0.166667 0.0587624 1.49697e-06 7.48143e-09 2.718 ||| 0-3 ||| 6 668016 +a ||| use to ||| 0.0235988 0.229811 1.19758e-05 0.000170317 2.718 ||| 0-1 ||| 339 668016 +a ||| use ||| 3.33622e-05 3.22e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 29974 668016 +a ||| used , for ||| 0.0625 0.0683377 1.49697e-06 1.88518e-06 2.718 ||| 0-2 ||| 16 668016 +a ||| used , will ||| 1 0.0561595 1.49697e-06 7.20526e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| used against ||| 0.0169492 0.05146 1.49697e-06 1.11519e-06 2.718 ||| 0-1 ||| 59 668016 +a ||| used as a ||| 0.00273973 0.0243476 1.49697e-06 1.66814e-07 2.718 ||| 0-1 ||| 365 668016 +a ||| used as ||| 0.00144092 0.0243476 1.49697e-06 3.76336e-06 2.718 ||| 0-1 ||| 694 668016 +a ||| used by ||| 0.00223964 0.0337966 2.99394e-06 3.5296e-06 2.718 ||| 0-1 ||| 893 668016 +a ||| used for this ||| 0.0277778 0.0683377 1.49697e-06 1.02142e-07 2.718 ||| 0-1 ||| 36 668016 +a ||| used for ||| 0.00791139 0.0683377 1.49697e-05 1.5808e-05 2.718 ||| 0-1 ||| 1264 668016 +a ||| used in order to ||| 0.0833333 0.229811 1.49697e-06 1.71319e-09 2.718 ||| 0-3 ||| 12 668016 +a ||| used in ||| 0.00472534 0.0587624 1.19758e-05 2.57754e-05 2.718 ||| 0-1 ||| 1693 668016 +a ||| used on ||| 0.0123457 0.0782999 1.49697e-06 1.62744e-05 2.718 ||| 0-1 ||| 81 668016 +a ||| used to achieve ||| 0.0344828 0.229811 1.49697e-06 3.43388e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| used to attack ||| 0.25 0.229811 1.49697e-06 4.43324e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| used to be ||| 0.00534759 0.229811 1.49697e-06 2.7235e-06 2.718 ||| 0-1 ||| 187 668016 +a ||| used to eliminate ||| 0.142857 0.229811 1.49697e-06 1.72821e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| used to function ||| 0.5 0.229811 1.49697e-06 3.72693e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| used to getting ||| 0.5 0.229811 1.49697e-06 1.74625e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| used to guarantee ||| 0.333333 0.229811 1.49697e-06 9.0919e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| used to justify the ||| 0.25 0.229811 1.49697e-06 1.4946e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| used to justify ||| 0.037037 0.229811 1.49697e-06 2.43453e-09 2.718 ||| 0-1 ||| 27 668016 +a ||| used to produce it ||| 0.333333 0.229811 1.49697e-06 2.36512e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| used to produce ||| 0.0238095 0.229811 1.49697e-06 1.32997e-08 2.718 ||| 0-1 ||| 42 668016 +a ||| used to provide ||| 0.217391 0.229811 7.48485e-06 4.44526e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| used to run ||| 0.125 0.229811 1.49697e-06 1.59597e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| used to set up ||| 1 0.229811 1.49697e-06 2.99521e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| used to set ||| 0.166667 0.229811 1.49697e-06 8.78233e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| used to top ||| 1 0.229811 1.49697e-06 1.03843e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| used to treat ||| 0.0909091 0.250485 1.49697e-06 6.67992e-08 2.718 ||| 0-1 0-2 ||| 11 668016 +a ||| used to ||| 0.0238095 0.229811 8.53273e-05 0.000150279 2.718 ||| 0-1 ||| 2394 668016 +a ||| used up in ||| 0.333333 0.0587624 1.49697e-06 8.7907e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| useful addition to ||| 0.142857 0.229811 1.49697e-06 1.09491e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| useful at ||| 0.0625 0.204175 1.49697e-06 1.07892e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| useful for ||| 0.00346021 0.0683377 1.49697e-06 1.1681e-06 2.718 ||| 0-1 ||| 289 668016 +a ||| useful part of ||| 0.5 0.0188479 1.49697e-06 1.11785e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| useful purpose to ||| 0.333333 0.229811 1.49697e-06 1.99771e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| useful to ||| 0.00448431 0.229811 2.99394e-06 1.11046e-05 2.718 ||| 0-1 ||| 446 668016 +a ||| usefulness to ||| 0.181818 0.229811 2.99394e-06 6.30543e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| user to be ||| 1 0.229811 1.49697e-06 2.03151e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| user to ||| 0.2 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| user-friendly and ||| 0.0322581 0.0015873 1.49697e-06 3.4731e-09 2.718 ||| 0-1 ||| 31 668016 +a ||| users to ||| 0.0185185 0.229811 1.49697e-06 3.64314e-06 2.718 ||| 0-1 ||| 54 668016 +a ||| users with greater ||| 1 0.0571592 1.49697e-06 2.28669e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| users with ||| 0.047619 0.0571592 1.49697e-06 1.73629e-07 2.718 ||| 0-1 ||| 21 668016 +a ||| uses accords with ||| 0.5 0.0571592 1.49697e-06 9.83007e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| uses to ||| 0.0625 0.229811 1.49697e-06 6.44555e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| using ||| 0.00144976 0.0106396 1.94606e-05 7.67e-05 2.718 ||| 0-0 ||| 8967 668016 +a ||| usual is displayed in asking ||| 1 0.0587624 1.49697e-06 2.47688e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| usual is displayed in ||| 1 0.0587624 1.49697e-06 5.73352e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| usually have a legal basis for various ||| 1 0.0683377 1.49697e-06 3.5977e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| usually have a legal basis for ||| 1 0.0683377 1.49697e-06 2.33011e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| vague notions of ||| 0.5 0.0188479 1.49697e-06 2.60291e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| valid for the ||| 0.05 0.0683377 1.49697e-06 3.82311e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| valid for ||| 0.00787402 0.0683377 1.49697e-06 6.2274e-07 2.718 ||| 0-1 ||| 127 668016 +a ||| validity of ||| 0.00421941 0.0188479 1.49697e-06 8.57777e-08 2.718 ||| 0-1 ||| 237 668016 +a ||| value at ||| 0.047619 0.204175 1.49697e-06 2.98831e-06 2.718 ||| 0-1 ||| 21 668016 +a ||| value conditional upon ||| 1 0.19056 1.49697e-06 1.55788e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| value for ||| 0.00342466 0.0683377 1.49697e-06 3.2353e-06 2.718 ||| 0-1 ||| 292 668016 +a ||| value of EUR ||| 0.142857 0.0188479 1.49697e-06 6.94436e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| value of ||| 0.00191571 0.0188479 2.99394e-06 2.59699e-06 2.718 ||| 0-1 ||| 1044 668016 +a ||| values to ||| 0.0208333 0.229811 1.49697e-06 1.1595e-05 2.718 ||| 0-1 ||| 48 668016 +a ||| varieties of ||| 0.037037 0.0188479 1.49697e-06 7.39463e-08 2.718 ||| 0-1 ||| 27 668016 +a ||| variety group to ||| 1 0.229811 1.49697e-06 1.03773e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| variety of ||| 0.00249066 0.0188479 2.99394e-06 6.80306e-07 2.718 ||| 0-1 ||| 803 668016 +a ||| various bodies to ||| 0.2 0.229811 1.49697e-06 2.15805e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| various compromises based on ||| 0.5 0.0782999 1.49697e-06 7.42021e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| various pieces of ||| 0.1 0.0188479 1.49697e-06 1.03669e-10 2.718 ||| 0-2 ||| 10 668016 +a ||| vehicles on ||| 0.0322581 0.0782999 1.49697e-06 6.98015e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| vehicles over ||| 0.333333 0.0682544 1.49697e-06 4.27414e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| verge of collapse ||| 0.0588235 0.0188479 1.49697e-06 6.76756e-13 2.718 ||| 0-1 ||| 17 668016 +a ||| verge of ||| 0.00632911 0.0188479 1.49697e-06 6.50727e-08 2.718 ||| 0-1 ||| 158 668016 +a ||| verified on ||| 1 0.0782999 1.49697e-06 9.4839e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| veritable trials of ||| 0.333333 0.0188479 1.49697e-06 1.94627e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| verse for ||| 1 0.0683377 1.49697e-06 1.47394e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| version of ||| 0.00531915 0.0188479 1.49697e-06 1.09736e-06 2.718 ||| 0-1 ||| 188 668016 +a ||| versus ||| 0.00543478 0.208333 1.49697e-06 5.48e-05 2.718 ||| 0-0 ||| 184 668016 +a ||| very afternoon , to ||| 1 0.229811 1.49697e-06 1.40996e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| very best wishes to ||| 0.5 0.229811 1.49697e-06 8.93027e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| very carefully to what ||| 0.0344828 0.229811 1.49697e-06 6.70399e-11 2.718 ||| 0-2 ||| 29 668016 +a ||| very carefully to ||| 0.00694444 0.229811 1.49697e-06 4.77799e-08 2.718 ||| 0-2 ||| 144 668016 +a ||| very clear . in addition , ||| 1 0.0587624 1.49697e-06 2.47874e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| very clear . in addition ||| 1 0.0587624 1.49697e-06 2.07852e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| very clear . in ||| 1 0.0587624 1.49697e-06 2.10804e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| very clear encouragement to ||| 1 0.229811 1.49697e-06 3.81417e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| very clear in ||| 0.011236 0.0587624 1.49697e-06 6.95951e-08 2.718 ||| 0-2 ||| 89 668016 +a ||| very clearly in ||| 0.0125 0.0587624 1.49697e-06 3.81529e-08 2.718 ||| 0-2 ||| 80 668016 +a ||| very close to ||| 0.00409836 0.229811 1.49697e-06 1.80759e-07 2.718 ||| 0-2 ||| 244 668016 +a ||| very closely on this . ||| 0.5 0.0782999 1.49697e-06 2.2863e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| very closely on this ||| 0.166667 0.0782999 1.49697e-06 7.54803e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| very closely on ||| 0.0666667 0.0782999 1.49697e-06 1.16817e-08 2.718 ||| 0-2 ||| 15 668016 +a ||| very difficult to solve , ||| 0.166667 0.229811 1.49697e-06 2.79826e-13 2.718 ||| 0-2 ||| 6 668016 +a ||| very difficult to solve ||| 0.111111 0.229811 1.49697e-06 2.34646e-12 2.718 ||| 0-2 ||| 9 668016 +a ||| very difficult to ||| 0.00367647 0.229811 2.99394e-06 1.51384e-07 2.718 ||| 0-2 ||| 544 668016 +a ||| very eyes , and ||| 0.25 0.0015873 1.49697e-06 4.66773e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| very far off ||| 0.25 0.0893962 1.49697e-06 1.81699e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| very few countries in ||| 0.25 0.0587624 1.49697e-06 1.39151e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| very firm : ||| 1 0.0007376 1.49697e-06 5.95071e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| very grateful to ||| 0.00540541 0.229811 1.49697e-06 2.76684e-08 2.718 ||| 0-2 ||| 185 668016 +a ||| very great harm ||| 1 0.110821 1.49697e-06 2.12227e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| very happy to ||| 0.00606061 0.229811 1.49697e-06 7.67891e-08 2.718 ||| 0-2 ||| 165 668016 +a ||| very hard to ||| 0.00485437 0.229811 1.49697e-06 1.28104e-07 2.718 ||| 0-2 ||| 206 668016 +a ||| very important that we continue to support ||| 0.5 0.229811 1.49697e-06 7.06401e-18 2.718 ||| 0-5 ||| 2 668016 +a ||| very important that we continue to ||| 0.111111 0.229811 1.49697e-06 2.0661e-14 2.718 ||| 0-5 ||| 9 668016 +a ||| very keen on ||| 0.0285714 0.0782999 1.49697e-06 3.47152e-09 2.718 ||| 0-2 ||| 35 668016 +a ||| very much at heart ||| 0.166667 0.204175 1.49697e-06 9.58047e-12 2.718 ||| 0-2 ||| 6 668016 +a ||| very much at ||| 0.0322581 0.204175 1.49697e-06 1.18864e-07 2.718 ||| 0-2 ||| 31 668016 +a ||| very much destabilises ||| 1 0.047619 1.49697e-06 3.14314e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| very much for their views ||| 0.5 0.0683377 1.49697e-06 1.2127e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| very much for their ||| 0.05 0.0683377 1.49697e-06 1.49163e-10 2.718 ||| 0-2 ||| 20 668016 +a ||| very much for ||| 0.0225989 0.0683377 5.98788e-06 1.28689e-07 2.718 ||| 0-2 ||| 177 668016 +a ||| very much in the interests of ||| 0.0909091 0.0188479 1.49697e-06 1.86101e-14 2.718 ||| 0-5 ||| 11 668016 +a ||| very much in ||| 0.0135135 0.0587624 8.98182e-06 2.09831e-07 2.718 ||| 0-2 ||| 444 668016 +a ||| very much like to ||| 0.025 0.229811 1.49697e-06 2.17261e-09 2.718 ||| 0-3 ||| 40 668016 +a ||| very much starting to ||| 1 0.229811 1.49697e-06 5.59087e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| very much sympathy for ||| 1 0.0683377 1.49697e-06 1.99468e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| very much to getting ||| 1 0.229811 1.49697e-06 1.42157e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| very much to ||| 0.0197368 0.229811 4.49091e-06 1.22338e-06 2.718 ||| 0-2 ||| 152 668016 +a ||| very much under way ||| 0.5 0.0384416 1.49697e-06 1.06779e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| very much under ||| 0.0833333 0.0384416 1.49697e-06 4.95358e-09 2.718 ||| 0-2 ||| 12 668016 +a ||| very much urge ||| 0.166667 0.345826 1.49697e-06 8.53012e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| very quick to ||| 0.0384615 0.229811 1.49697e-06 1.48703e-08 2.718 ||| 0-2 ||| 26 668016 +a ||| very ready to continue to ||| 1 0.229811 1.49697e-06 1.11026e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| very same regulations could fail to ||| 1 0.229811 1.49697e-06 1.65342e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| very serious clashes with ||| 1 0.0571592 1.49697e-06 1.47225e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| very short term ||| 0.0208333 0.0023121 1.49697e-06 8.0517e-12 2.718 ||| 0-2 ||| 48 668016 +a ||| very stretched and ||| 1 0.0015873 1.49697e-06 1.47701e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| very thing for ||| 1 0.0683377 1.49697e-06 4.67854e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| very thorough , careful look at ||| 1 0.204175 1.49697e-06 2.00703e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| very time when ||| 0.016129 0.0055468 1.49697e-06 1.77253e-09 2.718 ||| 0-2 ||| 62 668016 +a ||| very warmly at ||| 0.5 0.204175 1.49697e-06 3.70674e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| vessel to a ||| 0.5 0.229811 1.49697e-06 1.00928e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| vessel to ||| 0.0625 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| vessels to ||| 0.0169492 0.229811 1.49697e-06 5.04434e-06 2.718 ||| 0-1 ||| 59 668016 +a ||| vessels ||| 0.000385356 0.0016031 1.49697e-06 4.6e-06 2.718 ||| 0-0 ||| 2595 668016 +a ||| vested in ||| 0.0434783 0.0587624 2.99394e-06 3.66503e-07 2.718 ||| 0-1 ||| 46 668016 +a ||| via ' ||| 0.125 0.330861 1.49697e-06 4.75596e-06 2.718 ||| 0-0 ||| 8 668016 +a ||| via ||| 0.00507737 0.330861 3.14364e-05 0.0013846 2.718 ||| 0-0 ||| 4136 668016 +a ||| victim of ||| 0.00265252 0.0188479 1.49697e-06 5.32413e-07 2.718 ||| 0-1 ||| 377 668016 +a ||| victim to ||| 0.00444444 0.229811 1.49697e-06 6.30543e-06 2.718 ||| 0-1 ||| 225 668016 +a ||| victims to ||| 0.016129 0.229811 1.49697e-06 1.23656e-05 2.718 ||| 0-1 ||| 62 668016 +a ||| video on ||| 0.0238095 0.0782999 1.49697e-06 1.10013e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| view , partly with ||| 1 0.0571592 1.49697e-06 6.07874e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| view , to ||| 0.0166667 0.229811 1.49697e-06 3.77355e-05 2.718 ||| 0-2 ||| 60 668016 +a ||| view of the ||| 0.00029274 0.0188479 1.49697e-06 1.64028e-06 2.718 ||| 0-1 ||| 3416 668016 +a ||| view of ||| 0.0032344 0.0188479 2.54485e-05 2.67183e-05 2.718 ||| 0-1 ||| 5256 668016 +a ||| view to adopting a decision of ||| 1 0.229811 1.49697e-06 5.86516e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| view to adopting a decision ||| 1 0.229811 1.49697e-06 1.07887e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| view to adopting a ||| 0.2 0.229811 1.49697e-06 6.85866e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| view to adopting ||| 0.111111 0.229811 1.49697e-06 1.54733e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| view to converting ||| 1 0.229811 1.49697e-06 6.9614e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| view to having ||| 0.166667 0.229811 1.49697e-06 1.2116e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| view to securing ||| 0.0909091 0.229811 1.49697e-06 4.11356e-09 2.718 ||| 0-1 ||| 11 668016 +a ||| view to the better ||| 1 0.229811 1.49697e-06 3.30049e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| view to the ||| 0.0153846 0.229811 2.99394e-06 1.9426e-05 2.718 ||| 0-1 ||| 130 668016 +a ||| view to their receiving aid ||| 1 0.229811 1.49697e-06 1.43222e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| view to their receiving ||| 1 0.229811 1.49697e-06 1.09665e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| view to their ||| 0.333333 0.229811 1.49697e-06 3.66771e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| view to ||| 0.0169323 0.229811 5.0897e-05 0.000316427 2.718 ||| 0-1 ||| 2008 668016 +a ||| view would be to ||| 1 0.229811 1.49697e-06 3.36545e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| viewed apart ||| 0.333333 0.0216794 1.49697e-06 1.56168e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| viewed as ||| 0.00666667 0.0243476 1.49697e-06 2.11415e-07 2.718 ||| 0-1 ||| 150 668016 +a ||| viewed in ||| 0.0588235 0.0587624 4.49091e-06 1.44799e-06 2.718 ||| 0-1 ||| 51 668016 +a ||| views akin to ||| 0.5 0.229811 1.49697e-06 1.13918e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| views as those ||| 1 0.018252 1.49697e-06 8.33683e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| views as ||| 0.0243902 0.0243476 1.49697e-06 7.13196e-07 2.718 ||| 0-1 ||| 41 668016 +a ||| views of ||| 0.00784929 0.0188479 7.48485e-06 2.40473e-06 2.718 ||| 0-1 ||| 637 668016 +a ||| views on ||| 0.00134953 0.0782999 1.49697e-06 3.08416e-06 2.718 ||| 0-1 ||| 741 668016 +a ||| views than is currently the ||| 1 0.0242272 1.49697e-06 2.05266e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| views than is currently ||| 1 0.0242272 1.49697e-06 3.34354e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| views than is ||| 1 0.0242272 1.49697e-06 3.20262e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| views than ||| 0.5 0.0242272 1.49697e-06 1.02186e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| vigilant with regard to ||| 0.0434783 0.229811 1.49697e-06 5.49079e-12 2.718 ||| 0-3 ||| 23 668016 +a ||| vigorous democracy at the heart of the ||| 1 0.204175 1.49697e-06 8.17826e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| vigorous democracy at the heart of ||| 1 0.204175 1.49697e-06 1.33214e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| vigorous democracy at the heart ||| 1 0.204175 1.49697e-06 2.45041e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| vigorous democracy at the ||| 1 0.204175 1.49697e-06 3.04021e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| vigorous democracy at ||| 1 0.204175 1.49697e-06 4.95215e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| vigour to ||| 0.142857 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| violated and people are locked up in ||| 1 0.0587624 1.49697e-06 1.69335e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| violated on ||| 0.1 0.0782999 1.49697e-06 2.46581e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| violates ||| 0.0030581 0.0092593 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 327 668016 +a ||| violation of ||| 0.000823723 0.0188479 1.49697e-06 3.19448e-07 2.718 ||| 0-1 ||| 1214 668016 +a ||| violations of ||| 0.00193798 0.0188479 2.99394e-06 4.14099e-07 2.718 ||| 0-1 ||| 1032 668016 +a ||| violence against ||| 0.000673854 0.05146 1.49697e-06 5.90086e-08 2.718 ||| 0-1 ||| 1484 668016 +a ||| violence in pursuit ||| 0.5 0.0587624 1.49697e-06 3.3824e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| violence in ||| 0.00257732 0.0587624 1.49697e-06 1.36387e-06 2.718 ||| 0-1 ||| 388 668016 +a ||| violence on the ||| 0.03125 0.0782999 1.49697e-06 5.28668e-08 2.718 ||| 0-1 ||| 32 668016 +a ||| violence on ||| 0.012987 0.0782999 1.49697e-06 8.61138e-07 2.718 ||| 0-1 ||| 77 668016 +a ||| violence to ||| 0.0106383 0.229811 1.49697e-06 7.95185e-06 2.718 ||| 0-1 ||| 94 668016 +a ||| vis à vis ||| 0.0555556 0.331035 1.49697e-06 1.6298e-15 2.718 ||| 0-1 ||| 18 668016 +a ||| vis à ||| 0.0909091 0.331035 1.49697e-06 2.6718e-10 2.718 ||| 0-1 ||| 11 668016 +a ||| vis-à-vis the Albanians ||| 1 0.243488 1.49697e-06 3.49307e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| vis-à-vis the ||| 0.00414938 0.243488 1.49697e-06 1.20451e-05 2.718 ||| 0-0 ||| 241 668016 +a ||| vis-à-vis ||| 0.0259259 0.243488 2.09576e-05 0.0001962 2.718 ||| 0-0 ||| 540 668016 +a ||| visible to ||| 0.0652174 0.229811 4.49091e-06 5.18446e-06 2.718 ||| 0-1 ||| 46 668016 +a ||| visit as ||| 0.333333 0.0243476 1.49697e-06 2.58786e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| visit by ||| 0.011236 0.0337966 1.49697e-06 2.42711e-07 2.718 ||| 0-1 ||| 89 668016 +a ||| visit from ||| 0.0555556 0.0435582 1.49697e-06 2.12365e-07 2.718 ||| 0-1 ||| 18 668016 +a ||| visit to ||| 0.00792079 0.229811 5.98788e-06 1.03339e-05 2.718 ||| 0-1 ||| 505 668016 +a ||| visit ||| 0.000793336 0.001548 2.99394e-06 3.7e-06 2.718 ||| 0-0 ||| 2521 668016 +a ||| visited Lyon with ||| 0.25 0.0571592 1.49697e-06 9.23239e-14 2.718 ||| 0-2 ||| 4 668016 +a ||| visited the ||| 0.00574713 0.0117057 1.49697e-06 7.85815e-07 2.718 ||| 0-0 ||| 174 668016 +a ||| visited upon ||| 0.25 0.19056 1.49697e-06 1.55749e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| visited ||| 0.00384246 0.0117057 5.98788e-06 1.28e-05 2.718 ||| 0-0 ||| 1041 668016 +a ||| visiting rights or ||| 1 0.178388 1.49697e-06 2.17107e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| visiting rights ||| 0.142857 0.178388 1.49697e-06 1.89895e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| visiting ||| 0.0123711 0.178388 8.98182e-06 9.49e-05 2.718 ||| 0-0 ||| 485 668016 +a ||| visits to ||| 0.00917431 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-1 ||| 109 668016 +a ||| visits ||| 0.0015873 0.0077121 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 630 668016 +a ||| voice my opposition to ||| 0.5 0.229811 1.49697e-06 2.50871e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| voice of ||| 0.00657895 0.0188479 2.99394e-06 1.28666e-06 2.718 ||| 0-1 ||| 304 668016 +a ||| voice to those of other ||| 0.5 0.229811 1.49697e-06 7.77103e-13 2.718 ||| 0-1 ||| 2 668016 +a ||| voice to those of ||| 0.0666667 0.229811 1.49697e-06 5.99848e-10 2.718 ||| 0-1 ||| 15 668016 +a ||| voice to those ||| 0.0238095 0.229811 1.49697e-06 1.10339e-08 2.718 ||| 0-1 ||| 42 668016 +a ||| voice to ||| 0.0176211 0.229811 5.98788e-06 1.52381e-05 2.718 ||| 0-1 ||| 227 668016 +a ||| voice will ||| 0.142857 0.0561595 1.49697e-06 6.12641e-07 2.718 ||| 0-1 ||| 7 668016 +a ||| voices of ||| 0.00980392 0.0188479 1.49697e-06 2.86911e-07 2.718 ||| 0-1 ||| 102 668016 +a ||| voluntarily to ||| 0.0909091 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| voluntary approach to establishing ||| 0.142857 0.229811 1.49697e-06 4.77947e-14 2.718 ||| 0-2 ||| 7 668016 +a ||| voluntary approach to ||| 0.1 0.229811 1.49697e-06 1.02126e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| volunteering makes to ||| 0.5 0.229811 1.49697e-06 6.54679e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| vote against the report ||| 0.00497512 0.05146 1.49697e-06 1.02898e-11 2.718 ||| 0-1 ||| 201 668016 +a ||| vote against the ||| 0.00179533 0.05146 1.49697e-06 2.51032e-08 2.718 ||| 0-1 ||| 557 668016 +a ||| vote against ||| 0.000424989 0.05146 1.49697e-06 4.08901e-07 2.718 ||| 0-1 ||| 2353 668016 +a ||| vote for the ||| 0.00297619 0.0683377 1.49697e-06 3.55843e-07 2.718 ||| 0-1 ||| 336 668016 +a ||| vote for ||| 0.0027972 0.0683377 5.98788e-06 5.79627e-06 2.718 ||| 0-1 ||| 1430 668016 +a ||| vote in favour of it ||| 0.0108696 0.0587624 1.49697e-06 2.95578e-12 2.718 ||| 0-1 ||| 92 668016 +a ||| vote in favour of it – ||| 0.333333 0.0587624 1.49697e-06 1.16162e-15 2.718 ||| 0-1 ||| 3 668016 +a ||| vote in favour of ||| 0.000813008 0.0587624 1.49697e-06 1.66212e-10 2.718 ||| 0-1 ||| 1230 668016 +a ||| vote in favour ||| 0.000507099 0.0587624 1.49697e-06 3.05739e-09 2.718 ||| 0-1 ||| 1972 668016 +a ||| vote in ||| 0.00368016 0.0587624 1.64667e-05 9.45098e-06 2.718 ||| 0-1 ||| 2989 668016 +a ||| vote on ||| 0.000761035 0.0782999 4.49091e-06 5.96727e-06 2.718 ||| 0-1 ||| 3942 668016 +a ||| vote to make ||| 0.25 0.229811 1.49697e-06 9.5757e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| vote to ||| 0.0101351 0.229811 4.49091e-06 5.51024e-05 2.718 ||| 0-1 ||| 296 668016 +a ||| voted for the ||| 0.000937207 0.0683377 1.49697e-06 9.11665e-08 2.718 ||| 0-1 ||| 1067 668016 +a ||| voted for ||| 0.000359971 0.0683377 1.49697e-06 1.48499e-06 2.718 ||| 0-1 ||| 2778 668016 +a ||| voted in ||| 0.000474308 0.0587624 4.49091e-06 2.42132e-06 2.718 ||| 0-1 ||| 6325 668016 +a ||| voted ||| 0.000239163 0.0374018 5.98788e-06 0.0009082 2.718 ||| 0-0 ||| 16725 668016 +a ||| voter ||| 0.0232558 0.0175439 2.99394e-06 2.7e-06 2.718 ||| 0-0 ||| 86 668016 +a ||| votes to ||| 0.0078125 0.229811 1.49697e-06 1.27159e-05 2.718 ||| 0-1 ||| 128 668016 +a ||| voting for ||| 0.00179856 0.0683377 1.49697e-06 1.43341e-06 2.718 ||| 0-1 ||| 556 668016 +a ||| voting in the Council , of course ||| 1 0.0587624 1.49697e-06 4.0586e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| voting in the Council , of ||| 1 0.0587624 1.49697e-06 3.21677e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| voting in the Council , ||| 0.142857 0.0587624 1.49697e-06 5.91709e-12 2.718 ||| 0-1 ||| 7 668016 +a ||| voting in the Council ||| 0.04 0.0587624 1.49697e-06 4.96173e-11 2.718 ||| 0-1 ||| 25 668016 +a ||| voting in the ||| 0.0163934 0.0587624 1.49697e-06 1.43485e-07 2.718 ||| 0-1 ||| 61 668016 +a ||| voting in ||| 0.00425532 0.0587624 4.49091e-06 2.33721e-06 2.718 ||| 0-1 ||| 705 668016 +a ||| voting time , which now begins ||| 1 0.075849 1.49697e-06 2.26413e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| voting time , which now ||| 1 0.075849 1.49697e-06 2.63271e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| voting time , which ||| 0.111111 0.075849 1.49697e-06 1.27807e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| voting time , ||| 0.0163934 0.075849 1.49697e-06 1.50457e-07 2.718 ||| 0-0 ||| 61 668016 +a ||| voting time ||| 0.00114679 0.075849 1.49697e-06 1.26165e-06 2.718 ||| 0-0 ||| 872 668016 +a ||| voting ||| 0.00101176 0.075849 1.19758e-05 0.0007685 2.718 ||| 0-0 ||| 7907 668016 +a ||| vulnerable to ||| 0.00389105 0.229811 1.49697e-06 3.53805e-06 2.718 ||| 0-1 ||| 257 668016 +a ||| waged in ||| 0.0526316 0.0587624 1.49697e-06 4.74652e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| waging on ||| 0.333333 0.0782999 1.49697e-06 1.51742e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| waging ||| 0.0106383 0.0046083 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 94 668016 +a ||| wait for ||| 0.00140845 0.0683377 1.49697e-06 9.94909e-07 2.718 ||| 0-1 ||| 710 668016 +a ||| wait to ||| 0.0149254 0.229811 1.49697e-06 9.45814e-06 2.718 ||| 0-1 ||| 67 668016 +a ||| wait ||| 0.000653168 0.0004292 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1531 668016 +a ||| waiting at ||| 0.1 0.204175 1.49697e-06 9.05342e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| waiting for ||| 0.0017094 0.0683377 2.99394e-06 9.8017e-07 2.718 ||| 0-1 ||| 1170 668016 +a ||| waiting in the ||| 0.0714286 0.0587624 1.49697e-06 9.8116e-08 2.718 ||| 0-1 ||| 14 668016 +a ||| waiting in ||| 0.0222222 0.0587624 1.49697e-06 1.59819e-06 2.718 ||| 0-1 ||| 45 668016 +a ||| waiting on ||| 0.0714286 0.0782999 1.49697e-06 1.00909e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| waiting to happen ||| 0.0416667 0.229811 1.49697e-06 1.01287e-09 2.718 ||| 0-1 ||| 24 668016 +a ||| waiting to ||| 0.00784314 0.229811 2.99394e-06 9.31802e-06 2.718 ||| 0-1 ||| 255 668016 +a ||| walk free while ||| 1 0.0377813 1.49697e-06 7.26595e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| walk in ||| 0.0833333 0.0587624 1.49697e-06 4.08561e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| walk up to ||| 0.5 0.229811 1.49697e-06 8.12398e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| want by ||| 1 0.0337966 2.99394e-06 3.84636e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| want done to ||| 0.25 0.229811 1.49697e-06 7.46773e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| want nothing to do with ||| 0.125 0.0571592 1.49697e-06 4.43383e-13 2.718 ||| 0-4 ||| 8 668016 +a ||| want of ||| 0.0196078 0.0188479 1.49697e-06 1.38279e-05 2.718 ||| 0-1 ||| 51 668016 +a ||| want to achieve all ||| 1 0.229811 1.49697e-06 1.76827e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| want to achieve ||| 0.0106383 0.229811 1.49697e-06 3.74205e-08 2.718 ||| 0-1 ||| 94 668016 +a ||| want to acquire an e-mail ||| 1 0.229811 1.49697e-06 1.32913e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| want to acquire an ||| 1 0.229811 1.49697e-06 1.2083e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| want to acquire ||| 0.25 0.229811 1.49697e-06 2.71852e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| want to adopt ||| 0.0285714 0.229811 1.49697e-06 1.70317e-08 2.718 ||| 0-1 ||| 35 668016 +a ||| want to be very ||| 0.333333 0.229811 1.49697e-06 1.03269e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| want to be ||| 0.00321543 0.229811 1.49697e-06 2.96791e-06 2.718 ||| 0-1 ||| 311 668016 +a ||| want to check with ||| 1 0.0571592 1.49697e-06 2.12222e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| want to come back to ||| 0.5 0.229811 1.49697e-06 8.31265e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| want to congratulate ||| 0.015873 0.237528 1.49697e-06 5.45292e-07 2.718 ||| 0-1 0-2 ||| 63 668016 +a ||| want to consume ||| 0.166667 0.229811 1.49697e-06 4.09415e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| want to do ||| 0.0113636 0.229811 2.99394e-06 5.62585e-07 2.718 ||| 0-1 ||| 176 668016 +a ||| want to go ||| 0.0131579 0.229811 1.49697e-06 9.57704e-08 2.718 ||| 0-1 ||| 76 668016 +a ||| want to have ||| 0.00628931 0.229811 1.49697e-06 1.95861e-06 2.718 ||| 0-1 ||| 159 668016 +a ||| want to help ||| 0.0192308 0.229811 1.49697e-06 3.12302e-08 2.718 ||| 0-1 ||| 52 668016 +a ||| want to import ||| 0.333333 0.229811 1.49697e-06 9.49843e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| want to invest in European cinema the ||| 1 0.229811 1.49697e-06 9.46996e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| want to invest in European cinema ||| 1 0.229811 1.49697e-06 1.54255e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| want to invest in European ||| 1 0.229811 1.49697e-06 1.10182e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| want to invest in ||| 0.0769231 0.229811 1.49697e-06 3.29501e-11 2.718 ||| 0-1 ||| 13 668016 +a ||| want to invest ||| 0.0588235 0.229811 1.49697e-06 1.5394e-09 2.718 ||| 0-1 ||| 17 668016 +a ||| want to make to ||| 0.25 0.229811 1.49697e-06 2.52884e-08 2.718 ||| 0-3 ||| 4 668016 +a ||| want to make ||| 0.00716846 0.229811 2.99394e-06 2.84593e-07 2.718 ||| 0-1 ||| 279 668016 +a ||| want to present ||| 0.2 0.229811 1.49697e-06 5.99384e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| want to say thank you to the ||| 1 0.229811 1.49697e-06 2.91684e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| want to say thank you to ||| 0.5 0.229811 1.49697e-06 4.75118e-15 2.718 ||| 0-5 ||| 2 668016 +a ||| want to stop ||| 0.0454545 0.229811 1.49697e-06 1.13162e-08 2.718 ||| 0-1 ||| 22 668016 +a ||| want to thank ||| 0.027972 0.229811 5.98788e-06 1.73264e-08 2.718 ||| 0-1 ||| 143 668016 +a ||| want to use ||| 0.0131579 0.229811 1.49697e-06 7.9623e-08 2.718 ||| 0-1 ||| 76 668016 +a ||| want to work ||| 0.0140845 0.229811 1.49697e-06 1.03664e-07 2.718 ||| 0-1 ||| 71 668016 +a ||| want to ||| 0.0109875 0.229811 0.000116764 0.000163766 2.718 ||| 0-1 ||| 7099 668016 +a ||| wanted by ||| 0.0434783 0.0337966 1.49697e-06 4.50044e-07 2.718 ||| 0-1 ||| 23 668016 +a ||| wanted in ||| 0.0454545 0.0587624 1.49697e-06 3.28651e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| wanted to carry ||| 0.5 0.229811 1.49697e-06 3.51613e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| wanted to demonstrate the fact ||| 1 0.229811 1.49697e-06 8.54585e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| wanted to demonstrate the ||| 1 0.229811 1.49697e-06 2.91737e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| wanted to demonstrate ||| 0.2 0.229811 1.49697e-06 4.75205e-10 2.718 ||| 0-1 ||| 5 668016 +a ||| wanted to say ||| 0.00763359 0.229811 1.49697e-06 1.83146e-08 2.718 ||| 0-1 ||| 131 668016 +a ||| wanted to see ||| 0.015873 0.229811 1.49697e-06 1.35012e-08 2.718 ||| 0-1 ||| 63 668016 +a ||| wanted to ||| 0.00651659 0.229811 1.64667e-05 1.91615e-05 2.718 ||| 0-1 ||| 1688 668016 +a ||| wanting to be ||| 0.0769231 0.229811 1.49697e-06 9.39575e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| wanting to change ||| 0.333333 0.229811 1.49697e-06 6.32505e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| wanting to ||| 0.013363 0.229811 8.98182e-06 5.18446e-06 2.718 ||| 0-1 ||| 449 668016 +a ||| wants to assess ||| 1 0.229811 1.49697e-06 2.69855e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| wants to do ||| 0.0192308 0.229811 1.49697e-06 5.98085e-08 2.718 ||| 0-1 ||| 52 668016 +a ||| wants to pack ||| 0.5 0.229811 1.49697e-06 5.5712e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| wants to ||| 0.00338266 0.229811 1.19758e-05 1.741e-05 2.718 ||| 0-1 ||| 2365 668016 +a ||| war are by now placing strain upon ||| 1 0.19056 1.49697e-06 1.74242e-24 2.718 ||| 0-6 ||| 1 668016 +a ||| war at the ||| 0.5 0.204175 1.49697e-06 7.75202e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| war at ||| 0.0909091 0.204175 1.49697e-06 1.26271e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| war on ||| 0.00522193 0.0782999 2.99394e-06 1.40741e-06 2.718 ||| 0-1 ||| 383 668016 +a ||| warm welcome to ||| 0.0375 0.229811 4.49091e-06 5.12957e-10 2.718 ||| 0-2 ||| 80 668016 +a ||| warm ||| 0.00165563 0.0008157 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 604 668016 +a ||| warmly at ||| 0.25 0.204175 1.49697e-06 1.06531e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| warmly for ||| 0.025974 0.0683377 2.99394e-06 1.15336e-06 2.718 ||| 0-1 ||| 77 668016 +a ||| warmth , for ||| 1 0.0683377 1.49697e-06 1.75774e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| warn him ||| 0.142857 0.153141 1.49697e-06 3.42401e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| warn ||| 0.0144509 0.153141 7.48485e-06 0.0001068 2.718 ||| 0-0 ||| 346 668016 +a ||| warned about at the ||| 1 0.204175 1.49697e-06 8.57e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| warned about at ||| 1 0.204175 1.49697e-06 1.39595e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| warned ||| 0.00793651 0.110916 4.49091e-06 5.75e-05 2.718 ||| 0-0 ||| 378 668016 +a ||| warning about ||| 0.03125 0.0526361 1.49697e-06 7.05502e-08 2.718 ||| 0-1 ||| 32 668016 +a ||| warning of ||| 0.0238095 0.0188479 1.49697e-06 4.14099e-07 2.718 ||| 0-1 ||| 42 668016 +a ||| warning to ||| 0.00934579 0.229811 1.49697e-06 4.90422e-06 2.718 ||| 0-1 ||| 107 668016 +a ||| warnings to neighbouring ||| 0.25 0.229811 1.49697e-06 1.00431e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| warnings to ||| 0.0666667 0.229811 1.49697e-06 1.64642e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| was , at ||| 0.0526316 0.204175 1.49697e-06 1.27165e-05 2.718 ||| 0-2 ||| 19 668016 +a ||| was a risk of ||| 0.2 0.0188479 1.49697e-06 4.80595e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| was able to ||| 0.00791557 0.229811 4.49091e-06 9.16299e-07 2.718 ||| 0-2 ||| 379 668016 +a ||| was accompanied by ||| 0.0285714 0.0337966 1.49697e-06 5.20691e-10 2.718 ||| 0-2 ||| 35 668016 +a ||| was added to ||| 0.2 0.229811 1.49697e-06 7.82514e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| was against ||| 0.025 0.05146 2.99394e-06 8.14423e-06 2.718 ||| 0-1 ||| 80 668016 +a ||| was agreed on and ||| 0.333333 0.0782999 1.49697e-06 1.1627e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| was agreed on ||| 0.047619 0.0782999 1.49697e-06 9.28236e-09 2.718 ||| 0-2 ||| 21 668016 +a ||| was another honourable Member of this ||| 1 0.0188479 1.49697e-06 3.88321e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| was another honourable Member of ||| 1 0.0188479 1.49697e-06 6.00986e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| was applied to ||| 0.125 0.229811 1.49697e-06 1.18859e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| was at the ||| 0.00869565 0.204175 1.49697e-06 6.54639e-06 2.718 ||| 0-1 ||| 115 668016 +a ||| was at ||| 0.031746 0.204175 1.19758e-05 0.000106633 2.718 ||| 0-1 ||| 252 668016 +a ||| was available following ||| 1 0.0720432 1.49697e-06 9.82455e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| was because ||| 0.0152672 0.0052046 2.99394e-06 1.01227e-06 2.718 ||| 0-1 ||| 131 668016 +a ||| was being sold at ||| 1 0.204175 1.49697e-06 4.24838e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| was brought down to ||| 1 0.229811 1.49697e-06 2.14525e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| was brought to ||| 0.027027 0.229811 1.49697e-06 3.07299e-07 2.718 ||| 0-2 ||| 37 668016 +a ||| was by ||| 0.0178571 0.0337966 1.49697e-06 2.57768e-05 2.718 ||| 0-1 ||| 56 668016 +a ||| was clear to ||| 0.142857 0.229811 1.49697e-06 3.65356e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| was coming up ||| 0.2 0.0195077 1.49697e-06 7.47292e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| was concern for ||| 1 0.0683377 1.49697e-06 1.54121e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| was condemned in such a ||| 1 0.0587624 1.49697e-06 2.10603e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| was condemned in such ||| 1 0.0587624 1.49697e-06 4.75125e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| was condemned in ||| 0.5 0.0587624 1.49697e-06 2.29651e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| was directed towards ||| 0.111111 0.155507 1.49697e-06 3.30727e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| was evident from ||| 0.125 0.0435582 1.49697e-06 4.21757e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| was for ||| 0.0167364 0.0683377 5.98788e-06 0.000115446 2.718 ||| 0-1 ||| 239 668016 +a ||| was forced on ||| 0.5 0.0782999 1.49697e-06 8.37908e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| was found to ||| 0.0588235 0.229811 1.49697e-06 2.40132e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| was given a ||| 0.0217391 0.0371011 1.49697e-06 1.46788e-07 2.718 ||| 0-1 ||| 46 668016 +a ||| was given ||| 0.00220751 0.0371011 1.49697e-06 3.31158e-06 2.718 ||| 0-1 ||| 453 668016 +a ||| was going to be aimed at ||| 1 0.204175 1.49697e-06 1.02135e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| was going to make at ||| 1 0.204175 1.49697e-06 1.40916e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| was going to say the role ||| 1 0.229811 1.49697e-06 1.2235e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| was going to say the ||| 1 0.229811 1.49697e-06 5.51128e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| was going to say ||| 0.0833333 0.229811 1.49697e-06 8.97722e-10 2.718 ||| 0-2 ||| 12 668016 +a ||| was going to ||| 0.00492611 0.229811 1.49697e-06 9.39236e-07 2.718 ||| 0-2 ||| 203 668016 +a ||| was good reason for ||| 1 0.0683377 1.49697e-06 1.40037e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| was granted at ||| 1 0.204175 1.49697e-06 8.63727e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| was guilty at ||| 1 0.204175 1.49697e-06 2.26062e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| was having trouble telling you ||| 0.0666667 0.143208 1.49697e-06 8.22678e-18 2.718 ||| 0-3 ||| 15 668016 +a ||| was having trouble telling ||| 0.0666667 0.143208 1.49697e-06 2.54802e-15 2.718 ||| 0-3 ||| 15 668016 +a ||| was in Genoa , my ||| 0.25 0.0587624 1.49697e-06 1.01056e-14 2.718 ||| 0-1 ||| 4 668016 +a ||| was in Genoa , ||| 0.25 0.0587624 1.49697e-06 1.57138e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| was in Genoa ||| 0.25 0.0587624 1.49697e-06 1.31767e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| was in ||| 0.00969163 0.0587624 1.64667e-05 0.000188238 2.718 ||| 0-1 ||| 1135 668016 +a ||| was included in the actual body of ||| 1 0.0587624 1.49697e-06 7.30698e-19 2.718 ||| 0-2 ||| 1 668016 +a ||| was included in the actual body ||| 1 0.0587624 1.49697e-06 1.34408e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| was included in the actual ||| 1 0.0587624 1.49697e-06 1.57019e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| was included in the ||| 0.0212766 0.0587624 1.49697e-06 1.08514e-09 2.718 ||| 0-2 ||| 47 668016 +a ||| was included in ||| 0.016129 0.0587624 1.49697e-06 1.76756e-08 2.718 ||| 0-2 ||| 62 668016 +a ||| was inspired by ||| 0.0625 0.0337966 1.49697e-06 1.28884e-10 2.718 ||| 0-2 ||| 16 668016 +a ||| was interrupted by ||| 0.0909091 0.0594796 1.49697e-06 2.40149e-10 2.718 ||| 0-1 ||| 11 668016 +a ||| was interrupted ||| 0.0357143 0.0594796 1.49697e-06 4.57418e-08 2.718 ||| 0-1 ||| 28 668016 +a ||| was involved in ||| 0.0136986 0.0587624 1.49697e-06 6.50929e-08 2.718 ||| 0-2 ||| 73 668016 +a ||| was it so in view ||| 0.5 0.0587624 1.49697e-06 6.86308e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| was it so in ||| 0.5 0.0587624 1.49697e-06 7.59778e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| was laid at ||| 1 0.204175 1.49697e-06 1.1623e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| was made at ||| 0.04 0.204175 1.49697e-06 2.23375e-07 2.718 ||| 0-2 ||| 25 668016 +a ||| was made much tighter at ||| 1 0.204175 1.49697e-06 1.52457e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| was made to ||| 0.0322581 0.229811 1.49697e-06 2.29903e-06 2.718 ||| 0-2 ||| 31 668016 +a ||| was meant to be a paperless parliament ||| 1 0.229811 1.49697e-06 6.75664e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| was meant to be a paperless ||| 1 0.229811 1.49697e-06 2.80359e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| was meant to be a ||| 0.2 0.229811 1.49697e-06 7.00897e-11 2.718 ||| 0-2 ||| 5 668016 +a ||| was meant to be ||| 0.0454545 0.229811 1.49697e-06 1.58124e-09 2.718 ||| 0-2 ||| 22 668016 +a ||| was meant to ||| 0.0384615 0.229811 2.99394e-06 8.72508e-08 2.718 ||| 0-2 ||| 52 668016 +a ||| was merely to emphasise ||| 1 0.229811 1.49697e-06 1.18149e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| was merely to ||| 1 0.229811 1.49697e-06 6.99104e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| was not going to attend ||| 1 0.229811 1.49697e-06 7.27909e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| was not going to ||| 0.0625 0.229811 1.49697e-06 3.20665e-09 2.718 ||| 0-3 ||| 16 668016 +a ||| was not possible to ||| 0.0769231 0.229811 1.49697e-06 3.00543e-09 2.718 ||| 0-3 ||| 13 668016 +a ||| was not prepared to ||| 0.0294118 0.229811 1.49697e-06 3.24861e-10 2.718 ||| 0-3 ||| 34 668016 +a ||| was not to be done , ||| 1 0.229811 1.49697e-06 3.69272e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| was not to be done ||| 1 0.229811 1.49697e-06 3.0965e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| was not to be ||| 0.0833333 0.229811 1.49697e-06 6.79057e-08 2.718 ||| 0-2 ||| 12 668016 +a ||| was not to ||| 0.0196078 0.229811 1.49697e-06 3.74696e-06 2.718 ||| 0-2 ||| 51 668016 +a ||| was obliged to ||| 0.0294118 0.229811 1.49697e-06 4.18146e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| was of ||| 0.0136986 0.0188479 2.99394e-06 9.26694e-05 2.718 ||| 0-1 ||| 146 668016 +a ||| was on the way to ||| 0.5 0.0782999 1.49697e-06 1.3976e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| was on the way ||| 0.333333 0.0782999 1.49697e-06 1.57284e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| was on the ||| 0.00704225 0.0782999 1.49697e-06 7.29655e-06 2.718 ||| 0-1 ||| 142 668016 +a ||| was on ||| 0.013289 0.0782999 5.98788e-06 0.000118852 2.718 ||| 0-1 ||| 301 668016 +a ||| was out ||| 0.0294118 0.0669777 1.49697e-06 1.28484e-05 2.718 ||| 0-1 ||| 34 668016 +a ||| was passed to ||| 0.333333 0.229811 1.49697e-06 7.85806e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| was plunged into ||| 0.5 0.133576 1.49697e-06 5.21443e-10 2.718 ||| 0-1 0-2 ||| 2 668016 +a ||| was possible for ||| 0.2 0.0683377 1.49697e-06 9.25995e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| was possible through ||| 0.111111 0.230708 1.49697e-06 1.99759e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| was present for ||| 0.333333 0.0683377 1.49697e-06 4.22534e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| was put to ||| 0.0263158 0.229811 1.49697e-06 1.2101e-06 2.718 ||| 0-2 ||| 38 668016 +a ||| was raised for the ||| 1 0.0683377 1.49697e-06 8.16475e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| was raised for ||| 1 0.0683377 1.49697e-06 1.32994e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| was reached ||| 0.00240964 0.14487 1.49697e-06 3.85202e-06 2.718 ||| 0-1 ||| 415 668016 +a ||| was rejected by ||| 0.008 0.0337966 1.49697e-06 3.9954e-10 2.718 ||| 0-2 ||| 125 668016 +a ||| was required to ||| 0.25 0.229811 2.99394e-06 1.74172e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| was rushed through at ||| 1 0.204175 1.49697e-06 1.07983e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| was said by ||| 0.0108696 0.0337966 1.49697e-06 1.0602e-08 2.718 ||| 0-2 ||| 92 668016 +a ||| was said in the debate - ||| 1 0.0587624 1.49697e-06 3.54819e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| was said in the debate ||| 0.0769231 0.0587624 1.49697e-06 9.4064e-13 2.718 ||| 0-2 ||| 13 668016 +a ||| was said in the ||| 0.04 0.0587624 1.49697e-06 4.75311e-09 2.718 ||| 0-2 ||| 25 668016 +a ||| was said in ||| 0.0175439 0.0587624 1.49697e-06 7.74225e-08 2.718 ||| 0-2 ||| 57 668016 +a ||| was scheduled to ||| 0.0769231 0.229811 1.49697e-06 1.85477e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| was seen by ||| 0.166667 0.0337966 1.49697e-06 5.42601e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| was sent to ||| 0.025 0.229811 1.49697e-06 6.59594e-08 2.718 ||| 0-2 ||| 40 668016 +a ||| was sent ||| 0.00884956 0.0151564 1.49697e-06 1.34406e-07 2.718 ||| 0-1 ||| 113 668016 +a ||| was silenced in ||| 0.333333 0.0587624 1.49697e-06 2.07062e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| was subsequently so ||| 0.333333 0.0608974 1.49697e-06 7.40252e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| was subsequently ||| 0.0263158 0.0608974 1.49697e-06 3.26145e-07 2.718 ||| 0-1 ||| 38 668016 +a ||| was sufficient for ||| 0.166667 0.0683377 1.49697e-06 5.61069e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| was talking about ||| 0.02 0.0526361 1.49697e-06 1.72722e-09 2.718 ||| 0-2 ||| 50 668016 +a ||| was tantamount to ||| 0.0555556 0.229811 1.49697e-06 9.43846e-09 2.718 ||| 0-2 ||| 18 668016 +a ||| was telling ||| 0.0833333 0.143208 1.49697e-06 5.0034e-07 2.718 ||| 0-1 ||| 12 668016 +a ||| was their ||| 0.037037 0.0004527 1.49697e-06 1.28766e-07 2.718 ||| 0-1 ||| 27 668016 +a ||| was then given by ||| 0.5 0.0252938 1.49697e-06 9.62357e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| was then given ||| 0.333333 0.0252938 1.49697e-06 1.83303e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| was then ||| 0.00970874 0.0252938 2.99394e-06 2.67088e-06 2.718 ||| 0-1 ||| 206 668016 +a ||| was to be ||| 0.00543478 0.229811 1.49697e-06 1.98898e-05 2.718 ||| 0-1 ||| 184 668016 +a ||| was to compensate people ||| 1 0.122807 1.49697e-06 2.19067e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| was to compensate ||| 0.1 0.122807 1.49697e-06 2.48883e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| was to take place ||| 0.111111 0.229811 1.49697e-06 2.65929e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| was to take ||| 0.04 0.229811 1.49697e-06 1.76697e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| was to ||| 0.0125313 0.229811 2.99394e-05 0.00109749 2.718 ||| 0-1 ||| 1596 668016 +a ||| was very difficult to solve , ||| 0.166667 0.229811 1.49697e-06 8.76694e-16 2.718 ||| 0-3 ||| 6 668016 +a ||| was very difficult to solve ||| 0.142857 0.229811 1.49697e-06 7.35144e-15 2.718 ||| 0-3 ||| 7 668016 +a ||| was very difficult to ||| 0.0833333 0.229811 1.49697e-06 4.74287e-10 2.718 ||| 0-3 ||| 12 668016 +a ||| was willing to kill himself ||| 1 0.229811 1.49697e-06 1.32185e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| was willing to kill ||| 1 0.229811 1.49697e-06 1.78387e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| was willing to ||| 0.0208333 0.229811 1.49697e-06 4.14853e-08 2.718 ||| 0-2 ||| 48 668016 +a ||| was with a ||| 0.333333 0.0571592 1.49697e-06 2.31849e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| was with ||| 0.0175439 0.0571592 2.99394e-06 5.23057e-05 2.718 ||| 0-1 ||| 114 668016 +a ||| was won by ||| 0.0833333 0.0337966 1.49697e-06 5.74822e-10 2.718 ||| 0-2 ||| 12 668016 +a ||| wash up on ||| 0.5 0.0782999 1.49697e-06 4.65766e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| washed up on to ||| 0.333333 0.0782999 1.49697e-06 2.52921e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| washed up on ||| 0.125 0.0782999 1.49697e-06 2.84635e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| waste for ||| 0.025 0.0683377 1.49697e-06 2.57203e-06 2.718 ||| 0-1 ||| 40 668016 +a ||| waste in ||| 0.00961538 0.0587624 1.49697e-06 4.19376e-06 2.718 ||| 0-1 ||| 104 668016 +a ||| waste should be paid by ||| 1 0.0337966 1.49697e-06 6.20723e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| waste to ||| 0.0227273 0.229811 2.99394e-06 2.44511e-05 2.718 ||| 0-1 ||| 88 668016 +a ||| wastes to ||| 1 0.229811 1.49697e-06 1.40121e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| watching on meekly ||| 0.25 0.0782999 1.49697e-06 2.86793e-13 2.718 ||| 0-1 ||| 4 668016 +a ||| watching on ||| 0.0769231 0.0782999 1.49697e-06 4.09704e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| water , so to speak ||| 1 0.229811 1.49697e-06 7.29955e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| water , so to ||| 1 0.229811 1.49697e-06 5.39509e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| water system to ||| 0.5 0.229811 1.49697e-06 5.55908e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| wave to ||| 0.5 0.229811 1.49697e-06 3.29284e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| way , be given ||| 0.333333 0.0371011 1.49697e-06 4.92432e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| way , on the ||| 0.0769231 0.0782999 1.49697e-06 5.98689e-07 2.718 ||| 0-2 ||| 13 668016 +a ||| way , on ||| 0.125 0.0782999 2.99394e-06 9.75193e-06 2.718 ||| 0-2 ||| 16 668016 +a ||| way , to ||| 0.0238095 0.229811 1.49697e-06 9.00504e-05 2.718 ||| 0-2 ||| 42 668016 +a ||| way affect ||| 0.142857 0.330659 1.49697e-06 3.40585e-06 2.718 ||| 0-1 ||| 7 668016 +a ||| way against ||| 0.0625 0.05146 1.49697e-06 5.60348e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| way ahead of ||| 0.142857 0.0188479 1.49697e-06 6.94978e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| way as active behaviour ||| 0.125 0.0243476 1.49697e-06 1.95088e-14 2.718 ||| 0-1 ||| 8 668016 +a ||| way as active ||| 0.125 0.0243476 1.49697e-06 7.62064e-10 2.718 ||| 0-1 ||| 8 668016 +a ||| way as to meet ||| 1 0.0243476 1.49697e-06 2.04323e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| way as to ||| 0.019802 0.229811 5.98788e-06 7.70545e-06 2.718 ||| 0-2 ||| 202 668016 +a ||| way as ||| 0.00367197 0.0243476 4.49091e-06 1.89098e-05 2.718 ||| 0-1 ||| 817 668016 +a ||| way at ||| 0.0175439 0.204175 1.49697e-06 7.33667e-05 2.718 ||| 0-1 ||| 57 668016 +a ||| way behind ||| 0.0166667 0.0923313 1.49697e-06 1.66067e-06 2.718 ||| 0-1 ||| 60 668016 +a ||| way being brought to bear upon ||| 0.5 0.19056 1.49697e-06 4.5045e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| way by ||| 0.0102041 0.0337966 1.49697e-06 1.77352e-05 2.718 ||| 0-1 ||| 98 668016 +a ||| way for , ||| 0.5 0.0683377 1.49697e-06 9.47248e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| way for funding for ||| 0.5 0.0683377 1.49697e-06 3.25386e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| way for funding ||| 0.5 0.0683377 1.49697e-06 4.23365e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| way for ||| 0.00750188 0.0683377 1.49697e-05 7.94306e-05 2.718 ||| 0-1 ||| 1333 668016 +a ||| way forward if we are to ||| 0.333333 0.229811 1.49697e-06 6.04704e-14 2.718 ||| 0-5 ||| 3 668016 +a ||| way from ||| 0.00735294 0.0435582 1.49697e-06 1.55177e-05 2.718 ||| 0-1 ||| 136 668016 +a ||| way in which they are to ||| 0.5 0.0587624 1.49697e-06 4.84139e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| way in which they are ||| 0.0294118 0.0587624 1.49697e-06 5.44844e-11 2.718 ||| 0-1 ||| 34 668016 +a ||| way in which they ||| 0.0153846 0.0587624 1.49697e-06 3.59095e-09 2.718 ||| 0-1 ||| 65 668016 +a ||| way in which we have ||| 0.037037 0.0587624 1.49697e-06 1.49371e-10 2.718 ||| 0-1 ||| 27 668016 +a ||| way in which we ||| 0.00662252 0.0587624 1.49697e-06 1.24894e-08 2.718 ||| 0-1 ||| 151 668016 +a ||| way in which ||| 0.00384123 0.0587624 1.79636e-05 1.10017e-06 2.718 ||| 0-1 ||| 3124 668016 +a ||| way in ||| 0.00711563 0.0587624 4.19152e-05 0.000129514 2.718 ||| 0-1 ||| 3935 668016 +a ||| way into the ||| 0.010989 0.107578 1.49697e-06 8.0385e-07 2.718 ||| 0-1 ||| 91 668016 +a ||| way into ||| 0.0705128 0.107578 1.64667e-05 1.30938e-05 2.718 ||| 0-1 ||| 156 668016 +a ||| way of an ||| 0.0222222 0.0188479 1.49697e-06 2.83391e-07 2.718 ||| 0-1 ||| 45 668016 +a ||| way of giving ||| 0.1 0.136521 1.49697e-06 1.18195e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| way of ||| 0.00720139 0.0188479 4.34121e-05 6.37594e-05 2.718 ||| 0-1 ||| 4027 668016 +a ||| way on earth that this could be ||| 1 0.0782999 1.49697e-06 1.64941e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| way on earth that this could ||| 1 0.0782999 1.49697e-06 9.10127e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| way on earth that this ||| 1 0.0782999 1.49697e-06 1.27989e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| way on earth that ||| 1 0.0782999 1.49697e-06 1.98082e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| way on earth ||| 1 0.0782999 1.49697e-06 1.17755e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| way on ||| 0.0186916 0.0782999 2.99394e-06 8.1774e-05 2.718 ||| 0-1 ||| 107 668016 +a ||| way out by ||| 0.5 0.0337966 1.49697e-06 6.79329e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| way suitable for ||| 1 0.0683377 1.49697e-06 1.94605e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| way that ||| 0.000608273 0.0008521 1.49697e-06 1.47163e-06 2.718 ||| 0-1 ||| 1644 668016 +a ||| way through to ||| 0.5 0.229811 1.49697e-06 3.47577e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| way through ||| 0.00724638 0.230708 1.49697e-06 1.71351e-05 2.718 ||| 0-1 ||| 138 668016 +a ||| way to a ||| 0.0102041 0.229811 1.49697e-06 3.34709e-05 2.718 ||| 0-1 ||| 98 668016 +a ||| way to another directive ||| 1 0.229811 1.49697e-06 2.03176e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| way to another ||| 0.25 0.229811 1.49697e-06 1.82057e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| way to come to such a ||| 1 0.229811 1.49697e-06 5.22595e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| way to come to such ||| 1 0.229811 1.49697e-06 1.17899e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| way to come to ||| 1 0.229811 1.49697e-06 5.69861e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| way to do it , ||| 0.5 0.229811 1.49697e-06 5.50124e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| way to do it ||| 0.0416667 0.229811 1.49697e-06 4.61302e-08 2.718 ||| 0-1 ||| 24 668016 +a ||| way to do ||| 0.0212766 0.229811 1.49697e-06 2.59403e-06 2.718 ||| 0-1 ||| 47 668016 +a ||| way to helping people to ||| 0.25 0.229811 1.49697e-06 2.23245e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| way to increase global ||| 1 0.229811 1.49697e-06 4.4585e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| way to increase ||| 0.0434783 0.229811 1.49697e-06 9.75602e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| way to keep ||| 0.0526316 0.229811 1.49697e-06 1.17646e-07 2.718 ||| 0-1 ||| 19 668016 +a ||| way to make ||| 0.0153846 0.229811 1.49697e-06 1.31223e-06 2.718 ||| 0-1 ||| 65 668016 +a ||| way to offer these ||| 1 0.229811 1.49697e-06 8.95895e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| way to offer ||| 0.111111 0.229811 1.49697e-06 8.63846e-08 2.718 ||| 0-1 ||| 9 668016 +a ||| way to put ||| 0.125 0.229811 1.49697e-06 8.32584e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| way to resolving ||| 0.111111 0.229811 1.49697e-06 6.49395e-09 2.718 ||| 0-1 ||| 9 668016 +a ||| way to treat ||| 0.047619 0.250485 1.49697e-06 3.35646e-07 2.718 ||| 0-1 0-2 ||| 21 668016 +a ||| way to what ||| 0.5 0.229811 1.49697e-06 1.0595e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| way to ||| 0.0209268 0.229811 0.000125745 0.00075511 2.718 ||| 0-1 ||| 4014 668016 +a ||| way toward taking ||| 0.5 0.159609 1.49697e-06 4.0951e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| way toward ||| 0.142857 0.159609 1.49697e-06 9.63553e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| way towards ||| 0.0541516 0.155507 2.24546e-05 7.26998e-06 2.718 ||| 0-1 ||| 277 668016 +a ||| way we treat it in ||| 1 0.0587624 1.49697e-06 4.34028e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| way with ||| 0.0350877 0.0571592 5.98788e-06 3.5988e-05 2.718 ||| 0-1 ||| 114 668016 +a ||| ways , and on a ||| 1 0.0782999 1.49697e-06 2.42139e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| ways , and on ||| 1 0.0782999 1.49697e-06 5.46271e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| ways , result in ||| 0.5 0.0587624 1.49697e-06 3.63663e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| ways , to ||| 0.2 0.229811 1.49697e-06 4.02712e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| ways for ||| 0.0322581 0.0683377 1.49697e-06 3.5522e-06 2.718 ||| 0-1 ||| 31 668016 +a ||| ways in which ||| 0.00222717 0.0587624 1.49697e-06 4.92003e-08 2.718 ||| 0-1 ||| 449 668016 +a ||| ways in ||| 0.00175747 0.0587624 1.49697e-06 5.79195e-06 2.718 ||| 0-1 ||| 569 668016 +a ||| ways of approaching ||| 0.111111 0.0188479 1.49697e-06 1.14055e-11 2.718 ||| 0-1 ||| 9 668016 +a ||| ways of penetrating world ||| 1 0.0188479 1.49697e-06 4.54679e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| ways of penetrating ||| 1 0.0188479 1.49697e-06 1.99596e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| ways of ||| 0.00195695 0.0188479 4.49091e-06 2.85137e-06 2.718 ||| 0-1 ||| 1533 668016 +a ||| ways out of ||| 0.0769231 0.0188479 1.49697e-06 1.09219e-08 2.718 ||| 0-2 ||| 13 668016 +a ||| ways that would encourage them to ||| 1 0.229811 1.49697e-06 3.44281e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| ways to deal with it ||| 1 0.229811 1.49697e-06 1.63048e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| ways to deal with ||| 0.111111 0.229811 1.49697e-06 9.16866e-11 2.718 ||| 0-1 ||| 9 668016 +a ||| ways to deal ||| 1 0.229811 1.49697e-06 1.43383e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| ways to make ||| 0.0333333 0.229811 1.49697e-06 5.86839e-08 2.718 ||| 0-1 ||| 30 668016 +a ||| ways to ||| 0.0033557 0.229811 2.99394e-06 3.37691e-05 2.718 ||| 0-1 ||| 596 668016 +a ||| we , from ||| 0.5 0.0435582 1.49697e-06 9.74584e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| we , ||| 0.000463177 0.0008079 1.49697e-06 5.40939e-05 2.718 ||| 0-0 ||| 2159 668016 +a ||| we accused ||| 1 0.100079 1.49697e-06 1.30551e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| we all care for ||| 1 0.0683377 1.49697e-06 2.00636e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| we all know that , ||| 0.0227273 0.0008079 1.49697e-06 1.10936e-12 2.718 ||| 0-0 ||| 44 668016 +a ||| we all know that ||| 0.000863558 0.0008079 1.49697e-06 9.30248e-12 2.718 ||| 0-0 ||| 1158 668016 +a ||| we all know ||| 0.000428082 0.0008079 1.49697e-06 5.53008e-10 2.718 ||| 0-0 ||| 2336 668016 +a ||| we all ||| 0.00034118 0.0008079 1.49697e-06 2.14344e-06 2.718 ||| 0-0 ||| 2931 668016 +a ||| we allow ||| 0.0046729 0.0008079 1.49697e-06 1.10043e-07 2.718 ||| 0-0 ||| 214 668016 +a ||| we also have to drive home ||| 1 0.229811 1.49697e-06 7.36027e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| we also have to drive ||| 1 0.229811 1.49697e-06 7.2515e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| we also have to ||| 0.00207039 0.229811 1.49697e-06 2.40116e-07 2.718 ||| 0-3 ||| 483 668016 +a ||| we also wish to see compliance with ||| 1 0.0571592 1.49697e-06 4.06062e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| we apply to ||| 0.0869565 0.229811 2.99394e-06 5.72251e-07 2.718 ||| 0-2 ||| 23 668016 +a ||| we are , in ||| 0.0222222 0.0587624 1.49697e-06 1.23416e-06 2.718 ||| 0-3 ||| 45 668016 +a ||| we are , ||| 0.00173913 0.0009806 1.49697e-06 4.48519e-07 2.718 ||| 0-1 ||| 575 668016 +a ||| we are able to ||| 0.0026455 0.229811 1.49697e-06 5.0376e-08 2.718 ||| 0-3 ||| 378 668016 +a ||| we are accepting ||| 0.0625 0.0023166 1.49697e-06 4.65062e-10 2.718 ||| 0-2 ||| 16 668016 +a ||| we are admitting ||| 0.166667 0.142222 1.49697e-06 5.02956e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| we are aiming to ||| 0.0434783 0.229811 1.49697e-06 8.68863e-10 2.718 ||| 0-3 ||| 23 668016 +a ||| we are also ||| 0.000763942 0.0009806 1.49697e-06 1.89879e-08 2.718 ||| 0-1 ||| 1309 668016 +a ||| we are at ||| 0.00753769 0.204175 4.49091e-06 5.86243e-06 2.718 ||| 0-2 ||| 398 668016 +a ||| we are beginning to ||| 0.0149254 0.229811 1.49697e-06 2.45574e-09 2.718 ||| 0-3 ||| 67 668016 +a ||| we are being urged to ||| 0.2 0.274464 1.49697e-06 6.56615e-11 2.718 ||| 0-3 0-4 ||| 5 668016 +a ||| we are called on ||| 0.111111 0.0782999 1.49697e-06 1.13565e-09 2.718 ||| 0-3 ||| 9 668016 +a ||| we are calling for ||| 0.00623053 0.0683377 2.99394e-06 4.18265e-10 2.718 ||| 0-3 ||| 321 668016 +a ||| we are clear about ||| 0.142857 0.0526361 1.49697e-06 2.88955e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| we are concerned , a partner ||| 1 0.044342 1.49697e-06 1.83258e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| we are concerned , a ||| 0.166667 0.044342 1.49697e-06 7.27214e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| we are concerned , ||| 0.00617284 0.044342 1.49697e-06 1.64061e-08 2.718 ||| 0-2 ||| 162 668016 +a ||| we are concerned at ||| 0.0357143 0.204175 1.49697e-06 9.4303e-09 2.718 ||| 0-3 ||| 28 668016 +a ||| we are concerned ||| 0.00187617 0.044342 1.49697e-06 1.37572e-07 2.718 ||| 0-2 ||| 533 668016 +a ||| we are drafting decisions on behalf ||| 1 0.0782999 1.49697e-06 2.35012e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| we are drafting decisions on ||| 1 0.0782999 1.49697e-06 7.3787e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| we are due to ||| 0.0909091 0.229811 2.99394e-06 1.66773e-08 2.718 ||| 0-3 ||| 22 668016 +a ||| we are facing ||| 0.00131579 0.171799 1.49697e-06 2.39438e-07 2.718 ||| 0-2 ||| 760 668016 +a ||| we are forced to reduce ||| 0.2 0.229811 1.49697e-06 1.6207e-13 2.718 ||| 0-3 ||| 5 668016 +a ||| we are forced to ||| 0.0144928 0.229811 1.49697e-06 4.25381e-09 2.718 ||| 0-3 ||| 69 668016 +a ||| we are fortunate in being able ||| 0.2 0.0587624 1.49697e-06 1.15566e-16 2.718 ||| 0-3 ||| 5 668016 +a ||| we are fortunate in being ||| 0.2 0.0587624 1.49697e-06 1.38419e-13 2.718 ||| 0-3 ||| 5 668016 +a ||| we are fortunate in ||| 0.0833333 0.0587624 1.49697e-06 4.86399e-11 2.718 ||| 0-3 ||| 12 668016 +a ||| we are giving ||| 0.00497512 0.136521 1.49697e-06 1.73726e-07 2.718 ||| 0-2 ||| 201 668016 +a ||| we are going to be absolutely rigorous ||| 1 0.229811 1.49697e-06 3.79463e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| we are going to be absolutely ||| 1 0.229811 1.49697e-06 8.82471e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| we are going to be ||| 0.0140845 0.229811 1.49697e-06 9.35812e-10 2.718 ||| 0-3 ||| 71 668016 +a ||| we are going to do in ||| 0.5 0.229811 1.49697e-06 3.79692e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| we are going to do ||| 0.0119048 0.229811 1.49697e-06 1.77389e-10 2.718 ||| 0-3 ||| 84 668016 +a ||| we are going to have to ||| 0.0175439 0.229811 2.99394e-06 5.4876e-11 2.718 ||| 0-3 ||| 114 668016 +a ||| we are going to have ||| 0.00823045 0.229811 2.99394e-06 6.17568e-10 2.718 ||| 0-3 ||| 243 668016 +a ||| we are going to tackle ||| 0.0769231 0.229811 1.49697e-06 1.87442e-12 2.718 ||| 0-3 ||| 13 668016 +a ||| we are going to ||| 0.00529723 0.229811 1.34727e-05 5.1637e-08 2.718 ||| 0-3 ||| 1699 668016 +a ||| we are going ||| 0.000539665 0.0011228 1.49697e-06 3.3071e-09 2.718 ||| 0-2 ||| 1853 668016 +a ||| we are having ||| 0.0031348 0.005163 1.49697e-06 1.39863e-08 2.718 ||| 0-2 ||| 319 668016 +a ||| we are helping ||| 0.0151515 0.302272 1.49697e-06 2.05006e-07 2.718 ||| 0-2 ||| 66 668016 +a ||| we are in ||| 0.00313808 0.0587624 8.98182e-06 1.03489e-05 2.718 ||| 0-2 ||| 1912 668016 +a ||| we are keen to ||| 0.0175439 0.229811 1.49697e-06 1.58688e-09 2.718 ||| 0-3 ||| 57 668016 +a ||| we are making , for example ||| 1 0.0683377 1.49697e-06 8.4763e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| we are making , for ||| 1 0.0683377 1.49697e-06 2.91182e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| we are not here just to ||| 0.2 0.229811 1.49697e-06 5.27043e-13 2.718 ||| 0-5 ||| 5 668016 +a ||| we are of ||| 0.0377358 0.0188479 5.98788e-06 5.09475e-06 2.718 ||| 0-2 ||| 106 668016 +a ||| we are on ||| 0.00691244 0.0782999 4.49091e-06 6.53422e-06 2.718 ||| 0-2 ||| 434 668016 +a ||| we are only too aware of the ||| 0.25 0.0188479 1.49697e-06 6.58154e-17 2.718 ||| 0-5 ||| 4 668016 +a ||| we are only too aware of ||| 0.166667 0.0188479 1.49697e-06 1.07206e-15 2.718 ||| 0-5 ||| 6 668016 +a ||| we are open to ||| 0.0285714 0.229811 1.49697e-06 9.72644e-09 2.718 ||| 0-3 ||| 35 668016 +a ||| we are putting ||| 0.010101 0.049485 1.49697e-06 3.47418e-08 2.718 ||| 0-2 ||| 99 668016 +a ||| we are referring to ||| 0.0285714 0.229811 1.49697e-06 2.60659e-09 2.718 ||| 0-3 ||| 35 668016 +a ||| we are slowly but surely destroying ||| 1 0.0547945 1.49697e-06 1.03289e-21 2.718 ||| 0-2 ||| 1 668016 +a ||| we are slowly but surely ||| 0.5 0.0547945 1.49697e-06 3.56168e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| we are slowly but ||| 0.5 0.0547945 1.49697e-06 5.59133e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| we are slowly ||| 0.25 0.0547945 1.49697e-06 8.18164e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| we are starting to ||| 0.0217391 0.229811 1.49697e-06 2.75743e-09 2.718 ||| 0-3 ||| 46 668016 +a ||| we are talking about ||| 0.000455373 0.0526361 1.49697e-06 9.49586e-11 2.718 ||| 0-3 ||| 2196 668016 +a ||| we are therefore dealing with ||| 0.25 0.0008079 1.49697e-06 3.80194e-15 2.718 ||| 0-0 ||| 4 668016 +a ||| we are therefore dealing ||| 0.5 0.0008079 1.49697e-06 5.94564e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| we are therefore ||| 0.00180832 0.0008079 1.49697e-06 5.7557e-09 2.718 ||| 0-0 ||| 553 668016 +a ||| we are thinking of ||| 0.04 0.0188479 1.49697e-06 3.77521e-10 2.718 ||| 0-3 ||| 25 668016 +a ||| we are to be ||| 0.00680272 0.229811 1.49697e-06 1.09349e-06 2.718 ||| 0-2 ||| 147 668016 +a ||| we are to have ||| 0.00512821 0.229811 1.49697e-06 7.21627e-07 2.718 ||| 0-2 ||| 195 668016 +a ||| we are to hit ||| 0.5 0.229811 1.49697e-06 1.88857e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| we are to maintain ||| 0.0434783 0.229811 1.49697e-06 2.75743e-09 2.718 ||| 0-2 ||| 23 668016 +a ||| we are to press ||| 0.333333 0.229811 1.49697e-06 1.8222e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| we are to ||| 0.0130058 0.229811 4.04182e-05 6.03377e-05 2.718 ||| 0-2 ||| 2076 668016 +a ||| we are turning to ||| 0.25 0.229811 1.49697e-06 3.01689e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| we are using ||| 0.00769231 0.0106396 1.49697e-06 1.32112e-08 2.718 ||| 0-2 ||| 130 668016 +a ||| we are when it is done ||| 1 0.0055468 1.49697e-06 1.35837e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| we are when it is ||| 1 0.0055468 1.49697e-06 2.97888e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| we are when it ||| 0.333333 0.0055468 1.49697e-06 9.5047e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| we are when ||| 0.25 0.0055468 1.49697e-06 5.34476e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| we are witnessing ||| 0.00265252 0.114514 1.49697e-06 1.35212e-08 2.718 ||| 0-2 ||| 377 668016 +a ||| we are ||| 0.000379863 0.0009806 2.84424e-05 3.76102e-06 2.718 ||| 0-1 ||| 50018 668016 +a ||| we as ||| 0.00625 0.0243476 4.49091e-06 9.95869e-05 2.718 ||| 0-1 ||| 480 668016 +a ||| we ask of ||| 0.0833333 0.0135528 1.49697e-06 4.93602e-08 2.718 ||| 0-1 0-2 ||| 12 668016 +a ||| we ask ||| 0.0025974 0.0082577 2.99394e-06 1.66879e-06 2.718 ||| 0-1 ||| 770 668016 +a ||| we at any ||| 0.333333 0.204175 1.49697e-06 5.84284e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| we at ||| 0.0111111 0.204175 1.49697e-06 0.00038638 2.718 ||| 0-1 ||| 90 668016 +a ||| we attach particular importance to ||| 0.0909091 0.229811 1.49697e-06 3.43334e-15 2.718 ||| 0-4 ||| 11 668016 +a ||| we begin by ||| 0.111111 0.0337966 1.49697e-06 5.51066e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| we believe , ||| 0.00492611 0.0008079 1.49697e-06 1.68394e-08 2.718 ||| 0-0 ||| 203 668016 +a ||| we believe ||| 0.000187864 0.0008079 1.49697e-06 1.41206e-07 2.718 ||| 0-0 ||| 5323 668016 +a ||| we brought together ||| 1 0.0182841 1.49697e-06 8.09319e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| we brought ||| 0.0263158 0.0182841 1.49697e-06 1.34752e-06 2.718 ||| 0-1 ||| 38 668016 +a ||| we call ||| 0.000877963 0.0032909 1.49697e-06 5.39234e-07 2.718 ||| 0-1 ||| 1139 668016 +a ||| we can achieve ||| 0.00211864 0.0008079 1.49697e-06 3.08279e-10 2.718 ||| 0-0 ||| 472 668016 +a ||| we can adjust to ||| 0.5 0.229811 1.49697e-06 5.55915e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| we can also see into ||| 1 0.107578 1.49697e-06 7.29589e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| we can beat ||| 0.666667 0.178082 2.99394e-06 1.20204e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| we can begin to take ||| 1 0.229811 1.49697e-06 1.12354e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| we can begin to ||| 0.0333333 0.229811 1.49697e-06 6.97851e-10 2.718 ||| 0-3 ||| 30 668016 +a ||| we can draw from ||| 0.1 0.0435582 1.49697e-06 2.87793e-11 2.718 ||| 0-3 ||| 10 668016 +a ||| we can engage in ||| 0.166667 0.0587624 1.49697e-06 9.85945e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| we can get back to ||| 0.125 0.229811 1.49697e-06 3.47815e-12 2.718 ||| 0-4 ||| 8 668016 +a ||| we can help ||| 0.00416667 0.259976 1.49697e-06 2.22083e-07 2.718 ||| 0-2 ||| 240 668016 +a ||| we can on ||| 0.0833333 0.0782999 1.49697e-06 1.2809e-06 2.718 ||| 0-2 ||| 12 668016 +a ||| we can reach a ||| 0.0188679 0.182593 1.49697e-06 2.19531e-09 2.718 ||| 0-2 ||| 53 668016 +a ||| we can reach ||| 0.00689655 0.182593 1.49697e-06 4.95267e-08 2.718 ||| 0-2 ||| 145 668016 +a ||| we can really deal with ||| 1 0.0571592 1.49697e-06 1.15942e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| we can restore trust in ||| 0.333333 0.0587624 1.49697e-06 5.30848e-16 2.718 ||| 0-4 ||| 3 668016 +a ||| we can see how , at ||| 1 0.204175 1.49697e-06 3.46087e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| we can to ||| 0.0131868 0.229811 8.98182e-06 1.1828e-05 2.718 ||| 0-2 ||| 455 668016 +a ||| we can vote for ||| 0.0588235 0.0683377 1.49697e-06 1.95712e-10 2.718 ||| 0-3 ||| 17 668016 +a ||| we can ||| 0.000383142 0.0008079 1.19758e-05 1.34914e-06 2.718 ||| 0-0 ||| 20880 668016 +a ||| we cannot afford to rest ||| 0.1 0.229811 1.49697e-06 1.90334e-15 2.718 ||| 0-3 ||| 10 668016 +a ||| we cannot afford to ||| 0.00546448 0.229811 1.49697e-06 2.51764e-11 2.718 ||| 0-3 ||| 183 668016 +a ||| we carry on ||| 0.0243902 0.0782999 1.49697e-06 7.90254e-08 2.718 ||| 0-2 ||| 41 668016 +a ||| we come to ||| 0.00343643 0.229811 1.49697e-06 3.37744e-06 2.718 ||| 0-2 ||| 291 668016 +a ||| we congratulate ||| 0.00826446 0.245244 1.49697e-06 3.77998e-05 2.718 ||| 0-1 ||| 121 668016 +a ||| we consider to ||| 0.0147059 0.229811 1.49697e-06 6.32698e-07 2.718 ||| 0-2 ||| 68 668016 +a ||| we continue in ||| 0.111111 0.0587624 1.49697e-06 1.57832e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| we continue to support those countries ||| 1 0.229811 1.49697e-06 8.65023e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| we continue to support those ||| 1 0.229811 1.49697e-06 2.27817e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| we continue to support ||| 0.0454545 0.229811 1.49697e-06 3.14622e-10 2.718 ||| 0-2 ||| 22 668016 +a ||| we continue to ||| 0.00454545 0.229811 2.99394e-06 9.20215e-07 2.718 ||| 0-2 ||| 440 668016 +a ||| we contribute to the ||| 0.333333 0.229811 1.49697e-06 9.49699e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| we contribute to ||| 0.0625 0.229811 1.49697e-06 1.54695e-07 2.718 ||| 0-2 ||| 16 668016 +a ||| we convey to the ||| 0.5 0.229811 1.49697e-06 2.2949e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| we convey to ||| 0.2 0.229811 1.49697e-06 3.73813e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| we could get not ||| 1 0.0029933 1.49697e-06 1.20716e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| we could get ||| 0.025 0.0029933 1.49697e-06 3.53581e-10 2.718 ||| 0-2 ||| 40 668016 +a ||| we could succeed in doing ||| 1 0.0587624 1.49697e-06 6.78378e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| we could succeed in ||| 0.2 0.0587624 1.49697e-06 1.84794e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| we could to ||| 0.142857 0.229811 1.49697e-06 2.82785e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| we cut ||| 0.047619 0.0008079 1.49697e-06 3.42922e-08 2.718 ||| 0-0 ||| 21 668016 +a ||| we do for fun ||| 1 0.0683377 1.49697e-06 5.74815e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| we do for ||| 0.0952381 0.0683377 2.99394e-06 1.43704e-06 2.718 ||| 0-2 ||| 21 668016 +a ||| we do not end up with ||| 0.05 0.0571592 1.49697e-06 3.29853e-15 2.718 ||| 0-5 ||| 20 668016 +a ||| we do of course mention to ||| 1 0.229811 1.49697e-06 9.10803e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| we do of ||| 0.142857 0.0188479 1.49697e-06 1.15352e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| we do to ||| 0.037037 0.229811 1.49697e-06 1.36613e-05 2.718 ||| 0-2 ||| 27 668016 +a ||| we do ||| 0.000657895 0.0008079 2.99394e-06 1.55825e-06 2.718 ||| 0-0 ||| 3040 668016 +a ||| we drag ourselves down to ||| 0.333333 0.229811 1.49697e-06 5.12195e-15 2.718 ||| 0-4 ||| 3 668016 +a ||| we employ ||| 0.0454545 0.243276 1.49697e-06 2.06158e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| we fail to ||| 0.00429185 0.229811 1.49697e-06 2.14743e-07 2.718 ||| 0-2 ||| 233 668016 +a ||| we feel like giving ||| 1 0.136521 1.49697e-06 3.43847e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| we find at ||| 0.5 0.204175 1.49697e-06 1.28626e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| we from ||| 0.1 0.0435582 1.49697e-06 8.17229e-05 2.718 ||| 0-1 ||| 10 668016 +a ||| we gave ||| 0.0121951 0.0419355 2.99394e-06 1.61657e-06 2.718 ||| 0-1 ||| 164 668016 +a ||| we get ||| 0.00160256 0.0029933 1.49697e-06 4.97231e-07 2.718 ||| 0-1 ||| 624 668016 +a ||| we give to ||| 0.0212766 0.229811 1.49697e-06 2.4099e-06 2.718 ||| 0-2 ||| 47 668016 +a ||| we give ||| 0.00433839 0.0124767 2.99394e-06 2.55059e-07 2.718 ||| 0-0 0-1 ||| 461 668016 +a ||| we go about it ||| 0.111111 0.0526361 1.49697e-06 5.94938e-10 2.718 ||| 0-2 ||| 9 668016 +a ||| we go about ||| 0.0294118 0.0526361 1.49697e-06 3.3455e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| we go against ||| 0.333333 0.05146 1.49697e-06 1.72576e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| we go to ||| 0.0208333 0.229811 1.49697e-06 2.32559e-06 2.718 ||| 0-2 ||| 48 668016 +a ||| we grant ||| 0.0153846 0.0478224 1.49697e-06 1.16021e-06 2.718 ||| 0-1 ||| 65 668016 +a ||| we had access to ||| 0.5 0.229811 1.49697e-06 3.43264e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| we had carried out ||| 0.5 0.0669777 1.49697e-06 1.37708e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| we had ||| 0.000496771 0.0008079 2.99394e-06 4.55278e-07 2.718 ||| 0-0 ||| 4026 668016 +a ||| we have Euro-ACP citizenship ||| 1 1 1.49697e-06 6.10971e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| we have Euro-ACP ||| 1 1 1.49697e-06 1.22194e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| we have absolutely no objection to Amendment ||| 1 0.229811 1.49697e-06 4.09822e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| we have absolutely no objection to ||| 1 0.229811 1.49697e-06 1.50118e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| we have also been able to set ||| 1 0.229811 1.49697e-06 3.91208e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| we have also been able to ||| 0.0909091 0.229811 1.49697e-06 6.69419e-13 2.718 ||| 0-5 ||| 11 668016 +a ||| we have also been hearing from many ||| 0.166667 0.0435582 1.49697e-06 1.48768e-19 2.718 ||| 0-5 ||| 6 668016 +a ||| we have also been hearing from ||| 0.166667 0.0435582 1.49697e-06 4.33348e-16 2.718 ||| 0-5 ||| 6 668016 +a ||| we have at ||| 0.0327869 0.204175 8.98182e-06 4.62103e-06 2.718 ||| 0-2 ||| 183 668016 +a ||| we have been able to ||| 0.00363636 0.229811 1.49697e-06 1.32595e-10 2.718 ||| 0-4 ||| 275 668016 +a ||| we have enjoyed with ||| 0.111111 0.0571592 1.49697e-06 5.21344e-11 2.718 ||| 0-3 ||| 9 668016 +a ||| we have for ||| 0.00970874 0.0683377 1.49697e-06 5.00297e-06 2.718 ||| 0-2 ||| 103 668016 +a ||| we have had with ||| 0.0169492 0.0571592 1.49697e-06 2.2751e-09 2.718 ||| 0-3 ||| 59 668016 +a ||| we have ignored ||| 0.05 0.0008079 1.49697e-06 5.64196e-11 2.718 ||| 0-0 ||| 20 668016 +a ||| we have in this ||| 0.0285714 0.0587624 1.49697e-06 5.27087e-08 2.718 ||| 0-2 ||| 35 668016 +a ||| we have in ||| 0.00546448 0.0587624 4.49091e-06 8.15748e-06 2.718 ||| 0-2 ||| 549 668016 +a ||| we have learned to look at everything ||| 1 0.204175 1.49697e-06 1.74934e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| we have learned to look at ||| 1 0.204175 1.49697e-06 1.89118e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| we have made to ||| 0.0294118 0.229811 1.49697e-06 9.96305e-08 2.718 ||| 0-3 ||| 34 668016 +a ||| we have of ||| 0.0144928 0.0188479 1.49697e-06 4.01591e-06 2.718 ||| 0-2 ||| 69 668016 +a ||| we have only to remember ||| 0.5 0.229811 1.49697e-06 1.97996e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| we have only to ||| 0.0666667 0.229811 1.49697e-06 5.294e-08 2.718 ||| 0-3 ||| 15 668016 +a ||| we have over ||| 0.0344828 0.0682544 1.49697e-06 3.15383e-07 2.718 ||| 0-2 ||| 29 668016 +a ||| we have provided ||| 0.0108696 0.0016615 1.49697e-06 2.10445e-09 2.718 ||| 0-2 ||| 92 668016 +a ||| we have seen at work ||| 0.333333 0.204175 1.49697e-06 6.15736e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| we have seen at ||| 0.142857 0.204175 1.49697e-06 9.72726e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| we have seen in ||| 0.0047619 0.0587624 1.49697e-06 1.71715e-09 2.718 ||| 0-3 ||| 210 668016 +a ||| we have to do ||| 0.004662 0.229811 2.99394e-06 1.63386e-07 2.718 ||| 0-2 ||| 429 668016 +a ||| we have to let ||| 0.142857 0.229811 1.49697e-06 1.94239e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| we have to say either that we ||| 1 0.229811 1.49697e-06 7.51598e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| we have to say either that ||| 1 0.229811 1.49697e-06 6.62067e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| we have to say either ||| 1 0.229811 1.49697e-06 3.93581e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| we have to say ||| 0.00694444 0.229811 1.49697e-06 4.54587e-08 2.718 ||| 0-2 ||| 144 668016 +a ||| we have to ||| 0.00234532 0.229811 3.14364e-05 4.75609e-05 2.718 ||| 0-2 ||| 8954 668016 +a ||| we have used in ||| 0.166667 0.0587624 1.49697e-06 3.49956e-09 2.718 ||| 0-3 ||| 6 668016 +a ||| we have with ||| 0.00719424 0.0571592 1.49697e-06 2.26671e-06 2.718 ||| 0-2 ||| 139 668016 +a ||| we have ||| 0.000200639 0.0008079 2.09576e-05 5.42497e-06 2.718 ||| 0-0 ||| 69777 668016 +a ||| we here in ||| 0.0144928 0.0587624 1.49697e-06 1.38311e-06 2.718 ||| 0-2 ||| 69 668016 +a ||| we hope will ||| 0.0111111 0.0561595 1.49697e-06 2.80274e-08 2.718 ||| 0-2 ||| 90 668016 +a ||| we in the European Union ||| 0.00343643 0.0587624 1.49697e-06 7.80481e-11 2.718 ||| 0-1 ||| 291 668016 +a ||| we in the European ||| 0.0588235 0.0587624 1.49697e-06 1.40022e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| we in the ||| 0.00176678 0.0587624 4.49091e-06 4.18738e-05 2.718 ||| 0-1 ||| 1698 668016 +a ||| we in ||| 0.00478774 0.0587624 2.24546e-05 0.000682075 2.718 ||| 0-1 ||| 3133 668016 +a ||| we intend to ||| 0.00189394 0.229811 1.49697e-06 3.17741e-07 2.718 ||| 0-2 ||| 528 668016 +a ||| we invite ||| 0.0172414 0.330028 1.49697e-06 7.24277e-06 2.718 ||| 0-1 ||| 58 668016 +a ||| we listened in ||| 0.5 0.0587624 1.49697e-06 4.63811e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| we look at ||| 0.00153139 0.204175 1.49697e-06 1.1263e-07 2.718 ||| 0-2 ||| 653 668016 +a ||| we look forward to ||| 0.00271003 0.229811 1.49697e-06 6.44988e-10 2.718 ||| 0-3 ||| 369 668016 +a ||| we look set to ||| 1 0.229811 1.49697e-06 6.77446e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| we made to ||| 0.05 0.229811 1.49697e-06 8.33045e-06 2.718 ||| 0-2 ||| 20 668016 +a ||| we make of ||| 0.1 0.0188479 1.49697e-06 5.83525e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| we make ||| 0.00462963 0.0033044 4.49091e-06 2.04114e-06 2.718 ||| 0-1 ||| 648 668016 +a ||| we manage to ||| 0.00952381 0.229811 1.49697e-06 1.77362e-07 2.718 ||| 0-2 ||| 105 668016 +a ||| we mean ||| 0.00421941 0.0201991 1.49697e-06 2.16602e-06 2.718 ||| 0-1 ||| 237 668016 +a ||| we merely fall back on the ||| 0.5 0.0782999 1.49697e-06 1.08405e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| we merely fall back on ||| 0.5 0.0782999 1.49697e-06 1.76579e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| we met , as far as ||| 1 0.0243476 1.49697e-06 6.34586e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| we met , as far ||| 1 0.0243476 1.49697e-06 6.21875e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| we met , as ||| 1 0.0243476 1.49697e-06 9.10905e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| we might refer to ||| 0.333333 0.229811 1.49697e-06 1.19264e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| we might take in ||| 1 0.0587624 1.49697e-06 4.21686e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| we might ||| 0.00101833 0.00155 1.49697e-06 1.96395e-07 2.718 ||| 0-1 ||| 982 668016 +a ||| we moved on rather quickly to ||| 1 0.229811 1.49697e-06 1.16998e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| we must also ||| 0.000397772 0.0008079 1.49697e-06 3.53949e-09 2.718 ||| 0-0 ||| 2514 668016 +a ||| we must be able to ||| 0.00540541 0.229811 1.49697e-06 9.30005e-11 2.718 ||| 0-4 ||| 185 668016 +a ||| we must continue to back ||| 0.25 0.229811 1.49697e-06 9.56628e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| we must continue to ||| 0.00276243 0.229811 1.49697e-06 1.42228e-09 2.718 ||| 0-3 ||| 362 668016 +a ||| we must do this to ||| 0.25 0.229811 1.49697e-06 1.36431e-10 2.718 ||| 0-4 ||| 4 668016 +a ||| we must not have ||| 0.0344828 0.0008079 1.49697e-06 2.86266e-11 2.718 ||| 0-0 ||| 29 668016 +a ||| we must not ||| 0.000253421 0.0008079 1.49697e-06 2.39357e-09 2.718 ||| 0-0 ||| 3946 668016 +a ||| we must to ||| 0.333333 0.229811 1.49697e-06 6.14643e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| we must try to change people ||| 0.5 0.229811 1.49697e-06 1.01645e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| we must try to change ||| 0.5 0.229811 1.49697e-06 1.15479e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| we must try to ||| 0.0052356 0.229811 1.49697e-06 9.46551e-10 2.718 ||| 0-3 ||| 191 668016 +a ||| we must work towards ||| 0.0222222 0.155507 1.49697e-06 3.74584e-11 2.718 ||| 0-3 ||| 45 668016 +a ||| we must ||| 0.000149548 0.0008079 8.98182e-06 7.01084e-07 2.718 ||| 0-0 ||| 40121 668016 +a ||| we need , at ||| 1 0.204175 1.49697e-06 4.22486e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| we need to decide ||| 0.0454545 0.229811 1.49697e-06 2.33725e-10 2.718 ||| 0-2 ||| 22 668016 +a ||| we need to do ||| 0.00429185 0.229811 2.99394e-06 1.2526e-08 2.718 ||| 0-2 ||| 466 668016 +a ||| we need to get used ||| 0.5 0.229811 1.49697e-06 6.83889e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| we need to get ||| 0.011236 0.229811 1.49697e-06 1.59415e-09 2.718 ||| 0-2 ||| 89 668016 +a ||| we need to improve ||| 0.00826446 0.229811 1.49697e-06 1.58612e-10 2.718 ||| 0-2 ||| 121 668016 +a ||| we need to review ||| 0.0185185 0.229811 1.49697e-06 1.37829e-10 2.718 ||| 0-2 ||| 54 668016 +a ||| we need to ||| 0.00153518 0.229811 2.69455e-05 3.64626e-06 2.718 ||| 0-2 ||| 11725 668016 +a ||| we need ||| 3.70535e-05 0.0008079 1.49697e-06 4.15906e-07 2.718 ||| 0-0 ||| 26988 668016 +a ||| we now see that , in ||| 1 0.0587624 1.49697e-06 1.98593e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| we of ||| 0.0384615 0.0188479 1.49697e-06 0.000335784 2.718 ||| 0-1 ||| 26 668016 +a ||| we offer ||| 0.00884956 0.0034208 1.49697e-06 2.17964e-07 2.718 ||| 0-1 ||| 113 668016 +a ||| we on ||| 0.0277778 0.0782999 2.99394e-06 0.000430656 2.718 ||| 0-1 ||| 72 668016 +a ||| we only have to ||| 0.0178571 0.229811 1.49697e-06 5.294e-08 2.718 ||| 0-3 ||| 56 668016 +a ||| we oppose ||| 0.00454545 0.339711 1.49697e-06 1.12217e-05 2.718 ||| 0-1 ||| 220 668016 +a ||| we ought to give ||| 0.333333 0.229811 1.49697e-06 2.01949e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| we ought to ||| 0.00977995 0.229811 5.98788e-06 3.3325e-07 2.718 ||| 0-2 ||| 409 668016 +a ||| we owe to ||| 0.0333333 0.229811 1.49697e-06 3.85743e-08 2.718 ||| 0-2 ||| 30 668016 +a ||| we pay most attention to ||| 0.5 0.229811 1.49697e-06 6.43122e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| we placed on ||| 0.5 0.0782999 1.49697e-06 5.39182e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| we point to ||| 0.2 0.229811 1.49697e-06 3.47884e-06 2.718 ||| 0-2 ||| 5 668016 +a ||| we protect ||| 0.0140845 0.0026951 1.49697e-06 2.17964e-07 2.718 ||| 0-1 ||| 71 668016 +a ||| we put before ||| 0.333333 0.0203282 1.49697e-06 6.63779e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| we rather condemn ourselves to the Europe ||| 0.25 0.229811 1.49697e-06 1.46796e-19 2.718 ||| 0-4 ||| 4 668016 +a ||| we rather condemn ourselves to the ||| 0.25 0.229811 1.49697e-06 2.90112e-16 2.718 ||| 0-4 ||| 4 668016 +a ||| we rather condemn ourselves to ||| 0.25 0.229811 1.49697e-06 4.72558e-15 2.718 ||| 0-4 ||| 4 668016 +a ||| we reach a ||| 0.0277778 0.182593 1.49697e-06 7.38093e-07 2.718 ||| 0-1 ||| 36 668016 +a ||| we reach ||| 0.0105263 0.182593 2.99394e-06 1.66516e-05 2.718 ||| 0-1 ||| 190 668016 +a ||| we reached ||| 0.00446429 0.14487 1.49697e-06 1.39577e-05 2.718 ||| 0-1 ||| 224 668016 +a ||| we read , in ||| 1 0.0587624 1.49697e-06 3.92062e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| we refer to ||| 0.0106383 0.229811 1.49697e-06 3.10583e-07 2.718 ||| 0-2 ||| 94 668016 +a ||| we regard all ||| 1 0.0038996 1.49697e-06 4.27534e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| we saw in ||| 0.0126582 0.0587624 1.49697e-06 3.65592e-08 2.718 ||| 0-2 ||| 79 668016 +a ||| we saw ||| 0.00130719 0.0008079 1.49697e-06 2.4313e-08 2.718 ||| 0-0 ||| 765 668016 +a ||| we say in ||| 0.00847458 0.0587624 1.49697e-06 6.51927e-07 2.718 ||| 0-2 ||| 118 668016 +a ||| we see for the ||| 0.25 0.0683377 1.49697e-06 1.80949e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| we see for ||| 0.2 0.0683377 1.49697e-06 2.94745e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| we see in ||| 0.0136986 0.0587624 1.49697e-06 4.8059e-07 2.718 ||| 0-2 ||| 73 668016 +a ||| we see to it that ||| 0.25 0.229811 1.49697e-06 8.38196e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| we see to it ||| 0.25 0.229811 1.49697e-06 4.98286e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| we see to ||| 0.25 0.229811 1.49697e-06 2.802e-06 2.718 ||| 0-2 ||| 4 668016 +a ||| we see ||| 0.00093633 0.0008079 2.99394e-06 3.19607e-07 2.718 ||| 0-0 ||| 2136 668016 +a ||| we shall also continue to ||| 0.5 0.229811 1.49697e-06 2.53939e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| we shall be doing ||| 0.0454545 0.131911 1.49697e-06 1.82403e-10 2.718 ||| 0-1 ||| 22 668016 +a ||| we shall be regarding ||| 1 0.186429 1.49697e-06 3.78447e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| we shall be ||| 0.00487013 0.131911 4.49091e-06 4.96874e-07 2.718 ||| 0-1 ||| 616 668016 +a ||| we shall consider in ||| 0.5 0.0587624 1.49697e-06 5.9316e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| we shall find ||| 0.0263158 0.131911 1.49697e-06 9.1271e-09 2.718 ||| 0-1 ||| 38 668016 +a ||| we shall have established ||| 0.333333 0.131911 1.49697e-06 4.90868e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| we shall have to ||| 0.0028169 0.229811 1.49697e-06 2.59968e-08 2.718 ||| 0-3 ||| 355 668016 +a ||| we shall have ||| 0.00124069 0.131911 1.49697e-06 3.27901e-07 2.718 ||| 0-1 ||| 806 668016 +a ||| we shall in ||| 0.0555556 0.0587624 1.49697e-06 3.72822e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| we shall not have ||| 0.0357143 0.131911 1.49697e-06 1.11949e-09 2.718 ||| 0-1 ||| 28 668016 +a ||| we shall not ||| 0.010989 0.131911 2.99394e-06 9.36042e-08 2.718 ||| 0-1 ||| 182 668016 +a ||| we shall vote in ||| 0.0212766 0.0587624 1.49697e-06 5.86449e-11 2.718 ||| 0-3 ||| 47 668016 +a ||| we shall ||| 0.0186955 0.131911 6.73637e-05 2.74169e-05 2.718 ||| 0-1 ||| 2407 668016 +a ||| we should be grabbing by ||| 1 0.0337966 1.49697e-06 8.25038e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| we should be ||| 0.000508647 0.0008079 1.49697e-06 3.64252e-08 2.718 ||| 0-0 ||| 1966 668016 +a ||| we should call it ||| 0.333333 0.0032909 1.49697e-06 4.24902e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| we should call ||| 0.0153846 0.0032909 1.49697e-06 2.38935e-09 2.718 ||| 0-2 ||| 65 668016 +a ||| we should honour ||| 0.1 0.0008079 1.49697e-06 3.75852e-11 2.718 ||| 0-0 ||| 10 668016 +a ||| we should instead offer ||| 0.25 0.0034208 1.49697e-06 1.94995e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| we should like to ||| 0.00632911 0.229811 1.49697e-06 3.12929e-08 2.718 ||| 0-3 ||| 158 668016 +a ||| we should look at ||| 0.00892857 0.204175 1.49697e-06 4.99063e-10 2.718 ||| 0-3 ||| 112 668016 +a ||| we should make ||| 0.00346021 0.0033044 1.49697e-06 9.04431e-09 2.718 ||| 0-2 ||| 289 668016 +a ||| we should not ||| 0.000529521 0.0008079 2.99394e-06 6.86201e-09 2.718 ||| 0-0 ||| 3777 668016 +a ||| we should refer to ||| 0.125 0.0008079 1.49697e-06 1.39484e-11 2.718 ||| 0-0 ||| 8 668016 +a ||| we should refer ||| 0.0588235 0.0008079 1.49697e-06 1.56973e-10 2.718 ||| 0-0 ||| 17 668016 +a ||| we should tell ||| 0.04 0.0029382 1.49697e-06 9.20527e-10 2.718 ||| 0-2 ||| 25 668016 +a ||| we should ||| 0.000307355 0.0008079 1.04788e-05 2.0099e-06 2.718 ||| 0-0 ||| 22775 668016 +a ||| we stand for ||| 0.025 0.0683377 1.49697e-06 6.89383e-08 2.718 ||| 0-2 ||| 40 668016 +a ||| we start trying to ||| 0.5 0.229811 1.49697e-06 6.36328e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| we still take the view ||| 0.333333 0.0008079 1.49697e-06 3.05036e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| we still take the ||| 0.333333 0.0008079 1.49697e-06 3.37691e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| we still take ||| 0.2 0.0008079 1.49697e-06 5.50059e-10 2.718 ||| 0-0 ||| 5 668016 +a ||| we still ||| 0.00113895 0.0008079 1.49697e-06 3.41652e-07 2.718 ||| 0-0 ||| 878 668016 +a ||| we strive in ||| 0.5 0.0587624 1.49697e-06 6.4115e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| we take to ||| 0.0588235 0.229811 1.49697e-06 6.40253e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| we take vis à vis ||| 0.333333 0.331035 1.49697e-06 2.97881e-20 2.718 ||| 0-3 ||| 3 668016 +a ||| we take vis à ||| 0.333333 0.331035 1.49697e-06 4.8833e-15 2.718 ||| 0-3 ||| 3 668016 +a ||| we talk about ||| 0.00127065 0.0526361 1.49697e-06 4.59377e-09 2.718 ||| 0-2 ||| 787 668016 +a ||| we talked about ||| 0.0119048 0.0526361 1.49697e-06 5.9496e-10 2.718 ||| 0-2 ||| 84 668016 +a ||| we thank for ||| 0.166667 0.0683377 1.49697e-06 4.42578e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| we thank ||| 0.00840336 0.00671205 1.49697e-06 2.6454e-07 2.718 ||| 0-0 0-1 ||| 119 668016 +a ||| we to carry ||| 0.5 0.229811 1.49697e-06 7.2973e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| we to take ||| 0.5 0.229811 1.49697e-06 6.40253e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| we to ||| 0.03 0.229811 4.49091e-06 0.00397673 2.718 ||| 0-1 ||| 100 668016 +a ||| we treat Mandela and the apartheid regime ||| 1 0.271158 1.49697e-06 6.10618e-26 2.718 ||| 0-1 ||| 1 668016 +a ||| we treat Mandela and the apartheid ||| 1 0.271158 1.49697e-06 2.17302e-21 2.718 ||| 0-1 ||| 1 668016 +a ||| we treat Mandela and the ||| 1 0.271158 1.49697e-06 1.55215e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| we treat Mandela and ||| 1 0.271158 1.49697e-06 2.52828e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| we treat Mandela ||| 1 0.271158 1.49697e-06 2.01844e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| we treat it in ||| 1 0.0587624 1.49697e-06 2.01349e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| we treat ||| 0.00961538 0.271158 1.49697e-06 5.0461e-06 2.718 ||| 0-1 ||| 104 668016 +a ||| we try now to ||| 0.5 0.229811 1.49697e-06 1.26152e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| we turn our minds away from ||| 1 0.0435582 1.49697e-06 3.85096e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| we usually have a legal basis for ||| 1 0.0683377 1.49697e-06 2.64522e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| we want to do ||| 0.00609756 0.229811 1.49697e-06 6.38664e-09 2.718 ||| 0-2 ||| 164 668016 +a ||| we want to go ||| 0.0178571 0.229811 1.49697e-06 1.08721e-09 2.718 ||| 0-2 ||| 56 668016 +a ||| we want to stop ||| 0.0769231 0.229811 1.49697e-06 1.28465e-10 2.718 ||| 0-2 ||| 13 668016 +a ||| we want to use ||| 0.0178571 0.229811 1.49697e-06 9.03905e-10 2.718 ||| 0-2 ||| 56 668016 +a ||| we want to ||| 0.00209074 0.229811 1.49697e-05 1.85912e-06 2.718 ||| 0-2 ||| 4783 668016 +a ||| we want ||| 0.00029274 0.0008079 2.99394e-06 2.12058e-07 2.718 ||| 0-0 ||| 6832 668016 +a ||| we wanted to ||| 0.00584795 0.229811 2.99394e-06 2.17527e-07 2.718 ||| 0-2 ||| 342 668016 +a ||| we were able to ||| 0.00304878 0.229811 1.49697e-06 5.94775e-09 2.718 ||| 0-3 ||| 328 668016 +a ||| we were to ask ||| 0.1 0.229811 1.49697e-06 9.79538e-10 2.718 ||| 0-2 ||| 10 668016 +a ||| we were to neglect ||| 0.5 0.229811 1.49697e-06 4.13187e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| we were to reason ||| 1 0.229811 1.49697e-06 1.66628e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| we were to ||| 0.027027 0.229811 1.04788e-05 7.12391e-06 2.718 ||| 0-2 ||| 259 668016 +a ||| we were ||| 0.000842933 0.0008079 4.49091e-06 8.12579e-07 2.718 ||| 0-0 ||| 3559 668016 +a ||| we who are supposed to be responsible ||| 1 0.229811 1.49697e-06 8.3732e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| we who are supposed to be ||| 1 0.229811 1.49697e-06 5.66139e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| we who are supposed to ||| 1 0.229811 1.49697e-06 3.12389e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| we will , in the ||| 0.0909091 0.0587624 1.49697e-06 4.3201e-08 2.718 ||| 0-3 ||| 11 668016 +a ||| we will , in ||| 0.0612245 0.0587624 4.49091e-06 7.03694e-07 2.718 ||| 0-3 ||| 49 668016 +a ||| we will , ||| 0.00636943 0.0561595 1.49697e-06 1.90667e-05 2.718 ||| 0-1 ||| 157 668016 +a ||| we will also , in the ||| 1 0.0587624 1.49697e-06 2.18105e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| we will also , in ||| 1 0.0587624 1.49697e-06 3.55267e-09 2.718 ||| 0-4 ||| 1 668016 +a ||| we will also contribute to ||| 0.5 0.229811 1.49697e-06 6.75652e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| we will at ||| 0.0588235 0.204175 1.49697e-06 3.34265e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| we will be able to do this ||| 0.2 0.229811 1.49697e-06 1.15546e-14 2.718 ||| 0-4 ||| 5 668016 +a ||| we will be able to do ||| 0.05 0.229811 1.49697e-06 1.78825e-12 2.718 ||| 0-4 ||| 20 668016 +a ||| we will be able to require television ||| 1 0.229811 1.49697e-06 1.65661e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| we will be able to require ||| 1 0.229811 1.49697e-06 2.43619e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| we will be able to ||| 0.00240096 0.229811 2.99394e-06 5.20552e-10 2.718 ||| 0-4 ||| 833 668016 +a ||| we will be able ||| 0.000764526 0.0561595 1.49697e-06 2.41915e-09 2.718 ||| 0-1 ||| 1308 668016 +a ||| we will be very firm : ||| 1 0.0007376 1.49697e-06 1.05915e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| we will be ||| 0.00225098 0.0561595 5.98788e-06 2.89753e-06 2.718 ||| 0-1 ||| 1777 668016 +a ||| we will certainly ||| 0.00892857 0.0561595 1.49697e-06 4.00505e-08 2.718 ||| 0-1 ||| 112 668016 +a ||| we will get our ||| 0.5 0.0561595 1.49697e-06 9.64209e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| we will get ||| 0.00584795 0.0561595 1.49697e-06 6.99006e-08 2.718 ||| 0-1 ||| 171 668016 +a ||| we will give ||| 0.0120482 0.0561595 1.49697e-06 9.68887e-08 2.718 ||| 0-1 ||| 83 668016 +a ||| we will have been duped , ||| 0.5 0.0561595 1.49697e-06 1.06603e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| we will have been duped ||| 0.5 0.0561595 1.49697e-06 8.93912e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| we will have been ||| 0.2 0.0561595 1.49697e-06 6.38509e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| we will have had ||| 0.125 0.0561595 1.49697e-06 1.91924e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| we will have to ||| 0.0016488 0.229811 2.99394e-06 4.11459e-07 2.718 ||| 0-3 ||| 1213 668016 +a ||| we will have ||| 0.00133378 0.0561595 5.98788e-06 1.91216e-06 2.718 ||| 0-1 ||| 2999 668016 +a ||| we will keep our eyes on ||| 1 0.0782999 1.49697e-06 4.66803e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| we will make ||| 0.00485437 0.0561595 1.49697e-06 2.77844e-07 2.718 ||| 0-1 ||| 206 668016 +a ||| we will now ||| 0.0105263 0.0561595 1.49697e-06 3.29342e-07 2.718 ||| 0-1 ||| 95 668016 +a ||| we will soon have ||| 0.0138889 0.0008079 1.49697e-06 4.32248e-12 2.718 ||| 0-0 ||| 72 668016 +a ||| we will soon ||| 0.0172414 0.0008079 1.49697e-06 3.61417e-10 2.718 ||| 0-0 ||| 58 668016 +a ||| we will take it to ||| 1 0.229811 1.49697e-06 9.85004e-10 2.718 ||| 0-4 ||| 1 668016 +a ||| we will ||| 0.0073454 0.0561595 6.43697e-05 0.000159882 2.718 ||| 0-1 ||| 5854 668016 +a ||| we wish to analyse the differences at ||| 1 0.229811 1.49697e-06 1.55096e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| we wish to analyse the differences ||| 1 0.229811 1.49697e-06 3.70386e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| we wish to analyse the ||| 1 0.229811 1.49697e-06 1.58285e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| we wish to analyse ||| 1 0.229811 1.49697e-06 2.57827e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| we wish to ||| 0.00291545 0.229811 4.49091e-06 1.17194e-06 2.718 ||| 0-2 ||| 1029 668016 +a ||| we wish ||| 0.00112486 0.0008079 1.49697e-06 1.33676e-07 2.718 ||| 0-0 ||| 889 668016 +a ||| we worked together very closely on this ||| 1 0.0782999 1.49697e-06 2.23868e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| we worked together very closely on ||| 1 0.0782999 1.49697e-06 3.4647e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| we would ask it to introduce ||| 0.5 0.229811 1.49697e-06 2.91609e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| we would ask it to ||| 0.25 0.229811 1.49697e-06 5.70664e-11 2.718 ||| 0-4 ||| 4 668016 +a ||| we would have to ||| 0.00657895 0.229811 1.49697e-06 2.79121e-07 2.718 ||| 0-3 ||| 152 668016 +a ||| we would like to ||| 0.00768386 0.229811 1.04788e-05 4.14464e-08 2.718 ||| 0-3 ||| 911 668016 +a ||| we would ||| 0.00130662 0.0008079 4.49091e-06 2.66204e-06 2.718 ||| 0-0 ||| 2296 668016 +a ||| we ||| 0.00125948 0.0008079 0.000302388 0.0004536 2.718 ||| 0-0 ||| 160384 668016 +a ||| weaken ||| 0.00172712 0.027417 1.49697e-06 1.73e-05 2.718 ||| 0-0 ||| 579 668016 +a ||| weakness to be ||| 1 0.229811 1.49697e-06 3.87257e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| weakness to ||| 0.5 0.229811 1.49697e-06 2.13684e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| weapon to ||| 0.0909091 0.229811 1.49697e-06 1.12097e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| weapons to ||| 0.0106383 0.229811 1.49697e-06 7.3213e-06 2.718 ||| 0-1 ||| 94 668016 +a ||| wearily following ||| 0.5 0.0720432 1.49697e-06 3.9432e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| wearing thin of late ||| 0.333333 0.0188479 1.49697e-06 5.13076e-17 2.718 ||| 0-2 ||| 3 668016 +a ||| wearing thin of ||| 0.333333 0.0188479 1.49697e-06 1.61854e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| week at ||| 0.0178571 0.204175 1.49697e-06 1.04148e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| week to ||| 0.021978 0.229811 2.99394e-06 1.07192e-05 2.718 ||| 0-1 ||| 91 668016 +a ||| weeks and months at a time , ||| 1 0.0015873 1.49697e-06 3.05171e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| weeks and months at a time ||| 1 0.0015873 1.49697e-06 2.55899e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| weeks and months at a ||| 1 0.0015873 1.49697e-06 1.55874e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| weeks and months at ||| 1 0.0015873 1.49697e-06 3.51656e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| weeks and months ||| 0.00440529 0.0015873 1.49697e-06 8.39796e-13 2.718 ||| 0-1 ||| 227 668016 +a ||| weeks and ||| 0.00275482 0.0015873 1.49697e-06 2.08386e-08 2.718 ||| 0-1 ||| 363 668016 +a ||| weight around ||| 0.125 0.0931303 1.49697e-06 2.76777e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| weight behind diplomatic initiatives ||| 1 0.0923313 1.49697e-06 3.51233e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| weight behind diplomatic ||| 1 0.0923313 1.49697e-06 1.10799e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| weight behind ||| 0.0357143 0.0923313 1.49697e-06 2.35742e-08 2.718 ||| 0-1 ||| 28 668016 +a ||| weight in ||| 0.0125 0.0587624 1.49697e-06 1.83852e-06 2.718 ||| 0-1 ||| 80 668016 +a ||| weight on the ||| 0.125 0.0782999 1.49697e-06 7.12654e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| weight on ||| 0.0833333 0.0782999 1.49697e-06 1.16083e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| weight to ||| 0.00746269 0.229811 1.49697e-06 1.07192e-05 2.718 ||| 0-1 ||| 134 668016 +a ||| welcome pro-European signs is that in ||| 1 0.0587624 1.49697e-06 2.16226e-20 2.718 ||| 0-5 ||| 1 668016 +a ||| welcome to strike ||| 1 0.229811 1.49697e-06 1.23418e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| welcome to talk ||| 0.166667 0.229811 1.49697e-06 3.09703e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| welcome to ||| 0.0272953 0.229811 1.64667e-05 3.85682e-05 2.718 ||| 0-1 ||| 403 668016 +a ||| welcoming the members of ||| 0.333333 0.0188479 1.49697e-06 1.07137e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| welcoming ||| 0.00138504 0.111855 1.49697e-06 0.0001068 2.718 ||| 0-0 ||| 722 668016 +a ||| welfare for ||| 0.0625 0.0683377 1.49697e-06 4.90085e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| well , for making ||| 1 0.0683377 1.49697e-06 2.68047e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| well , for ||| 0.08 0.0683377 2.99394e-06 6.96769e-06 2.718 ||| 0-2 ||| 25 668016 +a ||| well : in ||| 0.5 0.0587624 1.49697e-06 3.20859e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| well advised to ||| 0.025 0.229811 1.49697e-06 5.99873e-09 2.718 ||| 0-2 ||| 40 668016 +a ||| well along the way to ||| 1 0.229811 1.49697e-06 1.28265e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| well as countries in ||| 1 0.0587624 1.49697e-06 3.69122e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| well as for ||| 0.0201342 0.0683377 4.49091e-06 5.96212e-07 2.718 ||| 0-2 ||| 149 668016 +a ||| well as on ||| 0.0208333 0.0782999 2.99394e-06 6.13802e-07 2.718 ||| 0-2 ||| 96 668016 +a ||| well as sympathising with ||| 1 0.0571592 1.49697e-06 1.08051e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| well as the ||| 0.000959693 0.0124065 1.49697e-06 2.13163e-08 2.718 ||| 0-1 0-2 ||| 1042 668016 +a ||| well as to ||| 0.0459184 0.229811 1.34727e-05 5.66791e-06 2.718 ||| 0-2 ||| 196 668016 +a ||| well as within it ||| 0.333333 0.0123496 1.49697e-06 1.43119e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| well as within ||| 0.0769231 0.0123496 1.49697e-06 8.04798e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| well as ||| 0.00702277 0.0243476 4.94e-05 1.39095e-05 2.718 ||| 0-1 ||| 4699 668016 +a ||| well be all the same to ||| 1 0.229811 1.49697e-06 2.34988e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| well be forced out ||| 1 0.0684932 1.49697e-06 3.06432e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| well be forced ||| 1 0.0684932 1.49697e-06 8.00001e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| well be in place ||| 1 0.0587624 1.49697e-06 2.5984e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| well be in ||| 0.0588235 0.0587624 1.49697e-06 1.72651e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| well be reasons for ||| 1 0.0683377 1.49697e-06 1.07051e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| well by ||| 0.03125 0.0337966 1.49697e-06 1.30455e-05 2.718 ||| 0-1 ||| 32 668016 +a ||| well come back to ||| 0.5 0.229811 1.49697e-06 3.17288e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| well disposed towards ||| 0.0625 0.155507 2.99394e-06 3.47594e-11 2.718 ||| 0-2 ||| 32 668016 +a ||| well in ||| 0.00234192 0.0587624 1.49697e-06 9.52668e-05 2.718 ||| 0-1 ||| 427 668016 +a ||| well into ||| 0.0232558 0.107578 1.49697e-06 9.63141e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| well on the ||| 0.015873 0.0782999 1.49697e-06 3.69276e-06 2.718 ||| 0-1 ||| 63 668016 +a ||| well on ||| 0.0265487 0.0782999 4.49091e-06 6.01507e-05 2.718 ||| 0-1 ||| 113 668016 +a ||| well start at ||| 1 0.204175 1.49697e-06 7.49595e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| well tell of a Europe ||| 0.5 0.0188479 1.49697e-06 1.03297e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| well tell of a ||| 0.5 0.0188479 1.49697e-06 2.04145e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| well tell of ||| 0.5 0.0188479 1.49697e-06 4.60555e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| well than ||| 0.2 0.0242272 1.49697e-06 1.99294e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| well that used to ||| 1 0.229811 1.49697e-06 4.0083e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| well to bring ||| 0.2 0.229811 1.49697e-06 1.72908e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| well to follow its ||| 1 0.229811 1.49697e-06 7.83419e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| well to follow ||| 0.0909091 0.229811 1.49697e-06 5.49884e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| well to ||| 0.0363636 0.229811 2.09576e-05 0.000555438 2.718 ||| 0-1 ||| 385 668016 +a ||| well underway with ||| 0.25 0.0571592 1.49697e-06 3.70605e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| well within ||| 0.0833333 0.0123496 2.99394e-06 7.88677e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| well-established ||| 0.00970874 0.005848 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 103 668016 +a ||| well-known to ||| 0.0526316 0.229811 1.49697e-06 1.75151e-06 2.718 ||| 0-1 ||| 19 668016 +a ||| went into a little more ||| 1 0.107578 1.49697e-06 6.3413e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| went into a little ||| 1 0.107578 1.49697e-06 2.77676e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| went into a ||| 0.2 0.107578 1.49697e-06 1.71511e-08 2.718 ||| 0-1 ||| 5 668016 +a ||| went into ||| 0.027027 0.107578 2.99394e-06 3.86933e-07 2.718 ||| 0-1 ||| 74 668016 +a ||| went much further ||| 0.25 0.0003879 1.49697e-06 6.39357e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| went on for a ||| 0.333333 0.0782999 1.49697e-06 8.2324e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| went on for ||| 0.125 0.0782999 1.49697e-06 1.85725e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| went on to ||| 0.037037 0.0782999 2.99394e-06 2.14726e-07 2.718 ||| 0-1 ||| 54 668016 +a ||| went on ||| 0.0441176 0.0782999 8.98182e-06 2.4165e-06 2.718 ||| 0-1 ||| 136 668016 +a ||| went to ||| 0.00980392 0.229811 4.49091e-06 2.23142e-05 2.718 ||| 0-1 ||| 306 668016 +a ||| were , into ||| 0.5 0.107578 1.49697e-06 1.29767e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| were , of ||| 0.0833333 0.0188479 1.49697e-06 6.31894e-06 2.718 ||| 0-2 ||| 12 668016 +a ||| were , on ||| 0.0588235 0.0782999 1.49697e-06 8.10429e-06 2.718 ||| 0-2 ||| 17 668016 +a ||| were , to ||| 0.151515 0.229811 7.48485e-06 7.48359e-05 2.718 ||| 0-2 ||| 33 668016 +a ||| were able , in the past , ||| 1 0.0587624 1.49697e-06 1.00505e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| were able , in the past ||| 1 0.0587624 1.49697e-06 8.42772e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| were able , in the ||| 1 0.0587624 1.49697e-06 6.57902e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| were able , in ||| 0.5 0.0587624 1.49697e-06 1.07164e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| were able to receive ||| 0.5 0.229811 1.49697e-06 5.26021e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| were able to ||| 0.0101781 0.229811 5.98788e-06 5.23925e-07 2.718 ||| 0-2 ||| 393 668016 +a ||| were also consulted ||| 1 0.128026 1.49697e-06 1.96437e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| were also entitled to ||| 1 0.229811 1.49697e-06 1.54923e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| were always out ||| 0.166667 0.0669777 1.49697e-06 1.2636e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| were approaching ||| 0.5 0.1653 1.49697e-06 1.97771e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| were arrested ||| 0.00632911 0.0414938 1.49697e-06 6.53861e-08 2.718 ||| 0-1 ||| 158 668016 +a ||| were as recently as ||| 0.5 0.0243476 1.49697e-06 1.09045e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| were as ||| 0.04 0.0243476 2.99394e-06 1.57149e-05 2.718 ||| 0-1 ||| 50 668016 +a ||| were asked ||| 0.00943396 0.0895701 1.49697e-06 1.47164e-06 2.718 ||| 0-1 ||| 106 668016 +a ||| were at that time ||| 0.2 0.204175 1.49697e-06 1.68378e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| were at that ||| 0.25 0.204175 1.49697e-06 1.02563e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| were at ||| 0.00704225 0.204175 1.49697e-06 6.0971e-05 2.718 ||| 0-1 ||| 142 668016 +a ||| were attempting to stamp it out in ||| 1 0.0587624 1.49697e-06 5.20652e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| were brought ||| 0.016129 0.0182841 1.49697e-06 2.12639e-07 2.718 ||| 0-1 ||| 62 668016 +a ||| were concerned ||| 0.016129 0.044342 2.99394e-06 1.43079e-06 2.718 ||| 0-1 ||| 124 668016 +a ||| were consulted ||| 0.0344828 0.128026 1.49697e-06 3.89092e-07 2.718 ||| 0-1 ||| 29 668016 +a ||| were dealt with at ||| 0.333333 0.204175 1.49697e-06 4.08203e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| were denied a say by ||| 0.5 0.0337966 1.49697e-06 9.4289e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| were entitled to reimbursement of ||| 0.5 0.0188479 1.49697e-06 4.14427e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| were eventually blocked ||| 1 0.0344828 1.49697e-06 1.05531e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| were eventually ||| 0.1 0.0344828 1.49697e-06 1.22711e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| were expelled ||| 0.0434783 0.0515464 1.49697e-06 2.45422e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| were exported to ||| 0.25 0.229811 1.49697e-06 1.56883e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| were followed by ||| 0.111111 0.0337966 1.49697e-06 1.05529e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| were forced ||| 0.0181818 0.0684932 2.99394e-06 4.98726e-07 2.718 ||| 0-1 ||| 110 668016 +a ||| were found to ||| 0.0434783 0.229811 1.49697e-06 1.37304e-07 2.718 ||| 0-2 ||| 23 668016 +a ||| were given to ||| 0.111111 0.229811 2.99394e-06 4.30674e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| were given ||| 0.00344828 0.0371011 1.49697e-06 1.89351e-06 2.718 ||| 0-1 ||| 290 668016 +a ||| were going to ||| 0.0392157 0.229811 5.98788e-06 5.3704e-07 2.718 ||| 0-2 ||| 102 668016 +a ||| were hired ||| 0.125 0.0895522 1.49697e-06 9.8527e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| were in danger of escalating ||| 0.5 0.0587624 1.49697e-06 4.0058e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| were in danger of ||| 0.166667 0.0587624 1.49697e-06 2.86128e-10 2.718 ||| 0-1 ||| 6 668016 +a ||| were in danger ||| 0.125 0.0587624 1.49697e-06 5.26319e-09 2.718 ||| 0-1 ||| 8 668016 +a ||| were in ||| 0.0122592 0.0587624 1.04788e-05 0.000107632 2.718 ||| 0-1 ||| 571 668016 +a ||| were involved in ||| 0.00925926 0.0587624 1.49697e-06 3.72191e-08 2.718 ||| 0-2 ||| 108 668016 +a ||| were issued to ||| 0.5 0.229811 1.49697e-06 3.88441e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| were it not for ||| 0.0181818 0.0683377 1.49697e-06 4.00773e-09 2.718 ||| 0-3 ||| 55 668016 +a ||| were itself to ||| 1 0.229811 1.49697e-06 4.25905e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| were looking through ||| 0.5 0.230708 1.49697e-06 1.50659e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| were made to ||| 0.0344828 0.229811 1.49697e-06 1.31455e-06 2.718 ||| 0-2 ||| 29 668016 +a ||| were not happy with ||| 0.166667 0.0571592 1.49697e-06 6.43278e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| were occurring at ||| 1 0.204175 1.49697e-06 1.18284e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| were on ||| 0.0128205 0.0782999 1.49697e-06 6.79578e-05 2.718 ||| 0-1 ||| 78 668016 +a ||| were other possibilities : that technically ||| 1 0.0007376 1.49697e-06 7.59703e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| were other possibilities : that ||| 1 0.0007376 1.49697e-06 2.61966e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| were other possibilities : ||| 1 0.0007376 1.49697e-06 1.55732e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| were parties to ||| 0.5 0.229811 1.49697e-06 4.60607e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| were prepared by ||| 0.2 0.0337966 1.49697e-06 1.27785e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| were referred to ||| 0.0555556 0.229811 1.49697e-06 6.00546e-08 2.718 ||| 0-2 ||| 18 668016 +a ||| were required to ||| 0.03125 0.229811 1.49697e-06 9.95891e-08 2.718 ||| 0-2 ||| 32 668016 +a ||| were rudely forced back onto ||| 0.047619 0.207143 1.49697e-06 8.09357e-21 2.718 ||| 0-4 ||| 21 668016 +a ||| were seen as subjects ||| 0.5 0.0243476 1.49697e-06 7.873e-14 2.718 ||| 0-2 ||| 2 668016 +a ||| were seen as ||| 0.1 0.0243476 1.49697e-06 3.30798e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| were sent out from factories to ||| 1 0.229811 1.49697e-06 9.30566e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| were silent on ||| 0.5 0.0782999 1.49697e-06 5.84437e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| were sometimes drawn into ||| 0.2 0.107578 1.49697e-06 8.73638e-14 2.718 ||| 0-3 ||| 5 668016 +a ||| were still to ||| 0.333333 0.229811 1.49697e-06 4.72656e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| were subjected to ||| 0.030303 0.229811 1.49697e-06 1.35547e-08 2.718 ||| 0-2 ||| 33 668016 +a ||| were taken into custody ||| 0.166667 0.107578 1.49697e-06 5.75272e-14 2.718 ||| 0-2 ||| 6 668016 +a ||| were taken into ||| 0.03125 0.107578 1.49697e-06 9.91849e-09 2.718 ||| 0-2 ||| 32 668016 +a ||| were thrown at ||| 1 0.204175 1.49697e-06 1.6889e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| were tipped off once ||| 0.166667 0.0893962 1.49697e-06 2.24281e-16 2.718 ||| 0-2 ||| 6 668016 +a ||| were tipped off ||| 0.166667 0.0893962 1.49697e-06 5.48097e-13 2.718 ||| 0-2 ||| 6 668016 +a ||| were to ask ||| 0.0769231 0.229811 1.49697e-06 8.62854e-08 2.718 ||| 0-1 ||| 13 668016 +a ||| were to be considered closed ||| 0.5 0.229811 1.49697e-06 7.08522e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| were to be considered ||| 0.25 0.229811 1.49697e-06 1.2237e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| were to be mixed ||| 1 0.229811 1.49697e-06 1.06903e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| were to be ||| 0.011236 0.229811 5.98788e-06 1.13727e-05 2.718 ||| 0-1 ||| 356 668016 +a ||| were to create a lower standard ||| 1 0.229811 1.49697e-06 3.77651e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| were to create a lower ||| 1 0.229811 1.49697e-06 8.01807e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| were to create a ||| 0.5 0.229811 1.49697e-06 3.13206e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| were to create ||| 0.125 0.229811 1.49697e-06 7.06599e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| were to do that ||| 0.333333 0.229811 1.49697e-06 3.62632e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| were to do ||| 0.0357143 0.229811 1.49697e-06 2.15575e-06 2.718 ||| 0-1 ||| 28 668016 +a ||| were to fall in line with ||| 1 0.0571592 1.49697e-06 1.60263e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| were to find ourselves facing ||| 1 0.229811 1.49697e-06 3.54193e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| were to find ourselves ||| 0.5 0.229811 1.49697e-06 6.64526e-11 2.718 ||| 0-1 ||| 2 668016 +a ||| were to find ||| 0.166667 0.229811 1.49697e-06 2.08905e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| were to focus on ||| 0.25 0.0782999 1.49697e-06 4.67388e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| were to give way ||| 0.25 0.229811 1.49697e-06 8.19739e-10 2.718 ||| 0-1 ||| 4 668016 +a ||| were to give ||| 0.125 0.229811 2.99394e-06 3.80283e-07 2.718 ||| 0-1 ||| 16 668016 +a ||| were to go ||| 0.030303 0.229811 1.49697e-06 3.6698e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| were to make ||| 0.04 0.229811 1.49697e-06 1.09052e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| were to neglect ||| 0.333333 0.229811 1.49697e-06 3.63968e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| were to obey ||| 1 0.229811 1.49697e-06 1.56883e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| were to reason ||| 1 0.229811 1.49697e-06 1.46779e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| were to rectify ||| 0.5 0.229811 1.49697e-06 2.0081e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| were to ||| 0.0504202 0.229811 8.98182e-05 0.00062753 2.718 ||| 0-1 ||| 1190 668016 +a ||| were trying to do was ||| 0.25 0.229811 1.49697e-06 7.78058e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| were trying to do ||| 0.2 0.229811 1.49697e-06 2.48343e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| were trying to ||| 0.0294118 0.229811 1.49697e-06 7.22915e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| were up to ||| 0.166667 0.229811 2.99394e-06 2.14019e-06 2.718 ||| 0-2 ||| 12 668016 +a ||| were urged to ||| 0.166667 0.274464 1.49697e-06 2.39968e-07 2.718 ||| 0-1 0-2 ||| 6 668016 +a ||| were voted ||| 0.0277778 0.0374018 1.49697e-06 1.62695e-06 2.718 ||| 0-1 ||| 36 668016 +a ||| were we to take ||| 1 0.229811 1.49697e-06 1.14695e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| were we to ||| 0.0526316 0.229811 1.49697e-06 7.12391e-06 2.718 ||| 0-2 ||| 19 668016 +a ||| what I would like to ||| 0.0138889 0.229811 1.49697e-06 3.62348e-11 2.718 ||| 0-4 ||| 72 668016 +a ||| what amount to ||| 1 0.229811 1.49697e-06 1.19584e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| what amounts to a facelift with ||| 1 0.0571592 1.49697e-06 2.23279e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| what are at ||| 0.25 0.204175 1.49697e-06 7.24573e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| what at ||| 0.0833333 0.102211 1.49697e-06 1.24229e-06 2.718 ||| 0-0 0-1 ||| 12 668016 +a ||| what came out of ||| 0.0666667 0.0188479 1.49697e-06 2.00299e-11 2.718 ||| 0-3 ||| 15 668016 +a ||| what followed on ||| 1 0.0782999 1.49697e-06 3.81108e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| what goes on ||| 0.0140845 0.0782999 1.49697e-06 7.372e-09 2.718 ||| 0-2 ||| 71 668016 +a ||| what happened to ||| 0.00952381 0.229811 1.49697e-06 3.04244e-08 2.718 ||| 0-2 ||| 105 668016 +a ||| what happens to ||| 0.00909091 0.229811 1.49697e-06 2.9343e-08 2.718 ||| 0-2 ||| 110 668016 +a ||| what has been ||| 0.000809062 0.0002483 1.49697e-06 6.27381e-10 2.718 ||| 0-0 ||| 1236 668016 +a ||| what has to be called ||| 1 0.229811 1.49697e-06 7.96901e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| what has to be ||| 0.0192308 0.229811 1.49697e-06 4.58516e-08 2.718 ||| 0-2 ||| 52 668016 +a ||| what has to ||| 0.0151515 0.229811 1.49697e-06 2.53004e-06 2.718 ||| 0-2 ||| 66 668016 +a ||| what has ||| 0.000595238 0.0002483 1.49697e-06 1.87884e-07 2.718 ||| 0-0 ||| 1680 668016 +a ||| what if we were to ask ||| 0.5 0.229811 1.49697e-06 1.14844e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| what if we were to ||| 1 0.229811 1.49697e-06 8.35229e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| what in ||| 0.0125 0.0587624 1.49697e-06 8.43018e-05 2.718 ||| 0-1 ||| 80 668016 +a ||| what is at issue ||| 0.010989 0.204175 1.49697e-06 1.1327e-09 2.718 ||| 0-2 ||| 91 668016 +a ||| what is at ||| 0.00506329 0.204175 2.99394e-06 1.4967e-06 2.718 ||| 0-2 ||| 395 668016 +a ||| what is expected of ||| 0.027027 0.0188479 1.49697e-06 6.93276e-11 2.718 ||| 0-3 ||| 37 668016 +a ||| what is going on ||| 0.00251256 0.0782999 1.49697e-06 1.42765e-09 2.718 ||| 0-3 ||| 398 668016 +a ||| what is happening in ||| 0.00169492 0.0587624 1.49697e-06 1.43467e-10 2.718 ||| 0-3 ||| 590 668016 +a ||| what is in ||| 0.00588235 0.0587624 1.49697e-06 2.64211e-06 2.718 ||| 0-2 ||| 170 668016 +a ||| what is really going on ||| 0.0588235 0.0782999 1.49697e-06 6.91554e-13 2.718 ||| 0-4 ||| 17 668016 +a ||| what is required to satisfy demand ||| 1 0.116324 1.49697e-06 3.60971e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| what is required to satisfy ||| 1 0.116324 1.49697e-06 6.73453e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| what is to be done ||| 0.0123457 0.229811 1.49697e-06 1.27303e-10 2.718 ||| 0-2 ||| 81 668016 +a ||| what is to be ||| 0.00961538 0.229811 1.49697e-06 2.79173e-07 2.718 ||| 0-2 ||| 104 668016 +a ||| what is to ||| 0.00719424 0.229811 1.49697e-06 1.54044e-05 2.718 ||| 0-2 ||| 139 668016 +a ||| what is ||| 8.47386e-05 0.0002483 1.49697e-06 1.14395e-06 2.718 ||| 0-0 ||| 11801 668016 +a ||| what issues are up for ||| 1 0.0683377 1.49697e-06 6.72864e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| what measures has the Commission taken to ||| 1 0.229811 1.49697e-06 1.71097e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| what members of ||| 0.333333 0.0002483 1.49697e-06 2.92682e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| what members ||| 0.333333 0.0002483 1.49697e-06 5.38375e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| what point he thought of ||| 1 0.0188479 1.49697e-06 2.63293e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| what programmes are envisaged here to ||| 1 0.229811 1.49697e-06 1.1672e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| what they want to consume ||| 1 0.229811 1.49697e-06 1.87501e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| what they want to ||| 0.0322581 0.229811 1.49697e-06 7.50002e-10 2.718 ||| 0-3 ||| 31 668016 +a ||| what they were up to ||| 0.5 0.229811 1.49697e-06 9.80148e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| what to do ||| 0.00389105 0.229811 1.49697e-06 1.68848e-06 2.718 ||| 0-1 ||| 257 668016 +a ||| what to ||| 0.0103093 0.229811 2.99394e-06 0.000491508 2.718 ||| 0-1 ||| 194 668016 +a ||| what was said in the debate - ||| 1 0.0587624 1.49697e-06 4.97846e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| what was said in the debate ||| 0.5 0.0587624 1.49697e-06 1.31981e-15 2.718 ||| 0-3 ||| 2 668016 +a ||| what was said in the ||| 0.0625 0.0587624 1.49697e-06 6.66908e-12 2.718 ||| 0-3 ||| 16 668016 +a ||| what was said in ||| 0.0227273 0.0587624 1.49697e-06 1.08631e-10 2.718 ||| 0-3 ||| 44 668016 +a ||| what was ||| 0.00142959 0.0002483 2.99394e-06 1.14354e-07 2.718 ||| 0-0 ||| 1399 668016 +a ||| what we can to ||| 0.0196078 0.229811 1.49697e-06 1.65958e-08 2.718 ||| 0-3 ||| 51 668016 +a ||| what we gave ||| 0.333333 0.0419355 1.49697e-06 2.26821e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| what we have in this ||| 0.25 0.0587624 1.49697e-06 7.39556e-11 2.718 ||| 0-3 ||| 4 668016 +a ||| what we have in ||| 0.02 0.0587624 1.49697e-06 1.14458e-08 2.718 ||| 0-3 ||| 50 668016 +a ||| what we have to do ||| 0.00609756 0.229811 1.49697e-06 2.29247e-10 2.718 ||| 0-3 ||| 164 668016 +a ||| what we have to ||| 0.00371747 0.229811 1.49697e-06 6.67327e-08 2.718 ||| 0-3 ||| 269 668016 +a ||| what we mean ||| 0.0123457 0.0201991 1.49697e-06 3.03914e-09 2.718 ||| 0-2 ||| 81 668016 +a ||| what we need to do ||| 0.00666667 0.229811 1.49697e-06 1.75752e-11 2.718 ||| 0-3 ||| 150 668016 +a ||| what we need to ||| 0.00495049 0.229811 1.49697e-06 5.11607e-09 2.718 ||| 0-3 ||| 202 668016 +a ||| what we stand for ||| 0.1 0.0683377 1.49697e-06 9.67274e-11 2.718 ||| 0-3 ||| 10 668016 +a ||| what we ||| 0.000565611 0.0008079 2.99394e-06 6.36446e-07 2.718 ||| 0-1 ||| 3536 668016 +a ||| what will ||| 0.00199203 0.0002483 1.49697e-06 3.15769e-07 2.718 ||| 0-0 ||| 502 668016 +a ||| what ||| 0.00027772 0.0002483 3.59273e-05 3.65e-05 2.718 ||| 0-0 ||| 86418 668016 +a ||| whatever he pleases with ||| 0.333333 0.0571592 1.49697e-06 1.44503e-15 2.718 ||| 0-3 ||| 3 668016 +a ||| whatever in ||| 0.111111 0.0587624 1.49697e-06 3.31055e-06 2.718 ||| 0-1 ||| 9 668016 +a ||| whatever to ||| 0.15 0.229811 4.49091e-06 1.93016e-05 2.718 ||| 0-1 ||| 20 668016 +a ||| whatever ||| 0.00195695 0.0099471 8.98182e-06 5.66e-05 2.718 ||| 0-0 ||| 3066 668016 +a ||| whatever – ||| 1 0.0099471 1.49697e-06 2.22438e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| whatsoever , for ||| 0.333333 0.0683377 1.49697e-06 2.45205e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| whatsoever for ||| 0.0222222 0.0683377 1.49697e-06 2.05615e-06 2.718 ||| 0-1 ||| 45 668016 +a ||| whatsoever to ||| 0.0408163 0.229811 5.98788e-06 1.95468e-05 2.718 ||| 0-1 ||| 98 668016 +a ||| whatsoever with ||| 0.05 0.0571592 1.49697e-06 9.31587e-07 2.718 ||| 0-1 ||| 20 668016 +a ||| wheeled out ||| 0.2 0.0669777 1.49697e-06 4.5111e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| when ' need to ||| 0.25 0.229811 1.49697e-06 5.5152e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| when ( at ||| 1 0.204175 1.49697e-06 1.64086e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| when , at ||| 0.0208333 0.204175 1.49697e-06 2.02903e-06 2.718 ||| 0-2 ||| 48 668016 +a ||| when , ||| 0.00105485 0.0055468 1.49697e-06 3.70047e-05 2.718 ||| 0-0 ||| 948 668016 +a ||| when I see the extent to ||| 1 0.0055468 1.49697e-06 1.62151e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| when I see the extent ||| 1 0.0055468 1.49697e-06 1.82483e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| when I see the ||| 0.0714286 0.0055468 1.49697e-06 9.49444e-11 2.718 ||| 0-0 ||| 14 668016 +a ||| when I see ||| 0.0133333 0.0055468 1.49697e-06 1.54653e-09 2.718 ||| 0-0 ||| 75 668016 +a ||| when I ||| 0.00408163 0.0055468 7.48485e-06 2.19491e-06 2.718 ||| 0-0 ||| 1225 668016 +a ||| when Parliament votes ||| 0.2 0.0055468 1.49697e-06 6.46547e-12 2.718 ||| 0-0 ||| 5 668016 +a ||| when Parliament ||| 0.00561798 0.0055468 1.49697e-06 1.78112e-07 2.718 ||| 0-0 ||| 178 668016 +a ||| when a ||| 0.00246914 0.0055468 2.99394e-06 1.37543e-05 2.718 ||| 0-0 ||| 810 668016 +a ||| when any solution to ||| 1 0.229811 1.49697e-06 1.80071e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| when at the ||| 0.0416667 0.0055468 1.49697e-06 7.97694e-08 2.718 ||| 0-0 ||| 24 668016 +a ||| when at ||| 0.0416667 0.0055468 1.49697e-06 1.29935e-06 2.718 ||| 0-0 ||| 24 668016 +a ||| when converted ||| 0.1 0.0055468 1.49697e-06 1.33429e-09 2.718 ||| 0-0 ||| 10 668016 +a ||| when counting towards ||| 0.25 0.0055468 1.49697e-06 3.11324e-13 2.718 ||| 0-0 ||| 4 668016 +a ||| when counting ||| 0.25 0.0055468 1.49697e-06 2.45137e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| when dealing with ||| 0.00409836 0.0571592 1.49697e-06 8.62129e-10 2.718 ||| 0-2 ||| 244 668016 +a ||| when drawing ||| 0.04 0.0055468 1.49697e-06 1.54219e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| when he met ||| 0.111111 0.0055468 1.49697e-06 2.07703e-11 2.718 ||| 0-0 ||| 9 668016 +a ||| when he ||| 0.0053286 0.0055468 4.49091e-06 2.70799e-07 2.718 ||| 0-0 ||| 563 668016 +a ||| when it comes to ensuring ||| 0.05 0.229811 1.49697e-06 1.44672e-13 2.718 ||| 0-3 ||| 20 668016 +a ||| when it comes to ||| 0.00398313 0.229811 2.54485e-05 1.24502e-09 2.718 ||| 0-3 ||| 4268 668016 +a ||| when it comes ||| 0.00107273 0.0055468 7.48485e-06 2.20615e-09 2.718 ||| 0-0 ||| 4661 668016 +a ||| when it has to ||| 0.05 0.0055468 1.49697e-06 2.52398e-09 2.718 ||| 0-0 ||| 20 668016 +a ||| when it has ||| 0.0190476 0.0055468 2.99394e-06 2.84046e-08 2.718 ||| 0-0 ||| 105 668016 +a ||| when it is acting ||| 0.125 0.0055468 1.49697e-06 1.02037e-11 2.718 ||| 0-0 ||| 8 668016 +a ||| when it is done ||| 0.333333 0.0055468 1.49697e-06 7.88625e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| when it is ||| 0.00208551 0.0055468 2.99394e-06 1.72944e-07 2.718 ||| 0-0 ||| 959 668016 +a ||| when it will ||| 0.04 0.0055468 1.49697e-06 4.77384e-08 2.718 ||| 0-0 ||| 25 668016 +a ||| when it ||| 0.00313207 0.0055468 2.69455e-05 5.51813e-06 2.718 ||| 0-0 ||| 5747 668016 +a ||| when necessary ||| 0.00813008 0.0055468 1.49697e-06 7.98402e-08 2.718 ||| 0-0 ||| 123 668016 +a ||| when not many people are watching ||| 1 0.0055468 1.49697e-06 5.24566e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| when not many people are ||| 1 0.0055468 1.49697e-06 4.85709e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| when not many people ||| 1 0.0055468 1.49697e-06 3.2012e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| when not many ||| 1 0.0055468 1.49697e-06 3.6369e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| when not ||| 0.0357143 0.0055468 1.49697e-06 1.0594e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| when one looks at ||| 0.0555556 0.0055468 1.49697e-06 1.42433e-13 2.718 ||| 0-0 ||| 18 668016 +a ||| when one looks ||| 0.0714286 0.0055468 1.49697e-06 3.40146e-11 2.718 ||| 0-0 ||| 14 668016 +a ||| when one ||| 0.00510204 0.0055468 2.99394e-06 1.29333e-06 2.718 ||| 0-0 ||| 392 668016 +a ||| when paying ||| 0.5 0.0055468 1.49697e-06 1.04881e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| when people discuss the past , ||| 1 0.0055468 1.49697e-06 1.06815e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| when people discuss the past ||| 1 0.0055468 1.49697e-06 8.95692e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| when people discuss the ||| 0.5 0.0055468 1.49697e-06 6.99213e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| when people discuss ||| 0.25 0.0055468 1.49697e-06 1.13894e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| when people ||| 0.00374532 0.0055468 1.49697e-06 2.73126e-07 2.718 ||| 0-0 ||| 267 668016 +a ||| when seen alongside ||| 1 0.155101 1.49697e-06 3.9282e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| when taking ||| 0.0108696 0.0055468 1.49697e-06 1.31877e-07 2.718 ||| 0-0 ||| 92 668016 +a ||| when the way in which ||| 0.333333 0.0587624 1.49697e-06 3.37639e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| when the way in ||| 0.25 0.0587624 1.49697e-06 3.97475e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| when the ||| 0.000305904 0.0055468 2.99394e-06 1.90499e-05 2.718 ||| 0-0 ||| 6538 668016 +a ||| when they ||| 0.00145666 0.0055468 2.99394e-06 1.01282e-06 2.718 ||| 0-0 ||| 1373 668016 +a ||| when to approach ||| 1 0.229811 1.49697e-06 3.83854e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| when to ||| 0.0196078 0.229811 1.49697e-06 0.000175116 2.718 ||| 0-1 ||| 51 668016 +a ||| when viewed in ||| 0.125 0.0587624 1.49697e-06 7.23849e-10 2.718 ||| 0-2 ||| 8 668016 +a ||| when we come to ||| 0.00574713 0.229811 1.49697e-06 1.68838e-09 2.718 ||| 0-3 ||| 174 668016 +a ||| when we have considered examples ||| 0.5 0.0055468 1.49697e-06 7.84238e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| when we have considered ||| 0.2 0.0055468 1.49697e-06 4.53317e-12 2.718 ||| 0-0 ||| 5 668016 +a ||| when we have ||| 0.00384615 0.0055468 2.99394e-06 4.21298e-08 2.718 ||| 0-0 ||| 520 668016 +a ||| when we ||| 0.00246238 0.0055468 1.34727e-05 3.52262e-06 2.718 ||| 0-0 ||| 3655 668016 +a ||| when will we have these ||| 0.5 0.0055468 1.49697e-06 3.77995e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| when will we have ||| 0.0416667 0.0055468 1.49697e-06 3.64473e-10 2.718 ||| 0-0 ||| 24 668016 +a ||| when will we ||| 0.016129 0.0055468 1.49697e-06 3.04749e-08 2.718 ||| 0-0 ||| 62 668016 +a ||| when will ||| 0.00325733 0.0055468 1.49697e-06 2.68447e-06 2.718 ||| 0-0 ||| 307 668016 +a ||| when you go to ||| 0.111111 0.117679 1.49697e-06 2.05239e-10 2.718 ||| 0-0 0-3 ||| 9 668016 +a ||| when you return ||| 0.333333 0.0055468 1.49697e-06 6.67242e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| when you take ||| 0.0625 0.0055468 1.49697e-06 1.613e-09 2.718 ||| 0-0 ||| 16 668016 +a ||| when you visited the ||| 0.5 0.0117057 1.49697e-06 1.26833e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| when you visited ||| 0.166667 0.0117057 1.49697e-06 2.06595e-11 2.718 ||| 0-2 ||| 6 668016 +a ||| when you ||| 0.00183655 0.0055468 2.99394e-06 1.00187e-06 2.718 ||| 0-0 ||| 1089 668016 +a ||| when ||| 0.00331778 0.0055468 0.000353285 0.0003103 2.718 ||| 0-0 ||| 71132 668016 +a ||| whenever they have to ||| 0.166667 0.229811 1.49697e-06 8.34154e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| where , ||| 0.00127226 0.0053255 1.49697e-06 2.9277e-05 2.718 ||| 0-0 ||| 786 668016 +a ||| where he has shown ||| 0.25 0.0053255 1.49697e-06 1.15137e-13 2.718 ||| 0-0 ||| 4 668016 +a ||| where he has ||| 0.1 0.0053255 2.99394e-06 1.10284e-09 2.718 ||| 0-0 ||| 20 668016 +a ||| where he ||| 0.0144928 0.0053255 2.99394e-06 2.14248e-07 2.718 ||| 0-0 ||| 138 668016 +a ||| where his and my line ||| 0.5 0.0053255 1.49697e-06 1.74953e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| where his and my ||| 0.5 0.0053255 1.49697e-06 5.94269e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| where his and ||| 0.5 0.0053255 1.49697e-06 9.2407e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| where his ||| 0.05 0.0053255 1.49697e-06 7.37728e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| where it was meant to ||| 1 0.229811 1.49697e-06 4.70135e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| where possible , to ||| 0.111111 0.229811 1.49697e-06 1.01529e-08 2.718 ||| 0-3 ||| 9 668016 +a ||| where serious mistakes are made in ||| 0.333333 0.0587624 1.49697e-06 3.33287e-19 2.718 ||| 0-5 ||| 3 668016 +a ||| where the people were seen as subjects ||| 0.5 0.0243476 1.49697e-06 1.28906e-21 2.718 ||| 0-5 ||| 2 668016 +a ||| where the people were seen as ||| 0.5 0.0243476 1.49697e-06 5.41623e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| where there are grounds for ||| 0.25 0.0683377 1.49697e-06 5.43682e-14 2.718 ||| 0-4 ||| 4 668016 +a ||| where there is nothing left to catch ||| 1 0.229811 1.49697e-06 6.2015e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| where there is nothing left to ||| 1 0.229811 1.49697e-06 3.58468e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| where there is ||| 0.00220751 0.0053255 2.99394e-06 2.35852e-08 2.718 ||| 0-0 ||| 906 668016 +a ||| where there ||| 0.00286533 0.0053255 2.99394e-06 7.52531e-07 2.718 ||| 0-0 ||| 698 668016 +a ||| where they are ||| 0.00277008 0.0053255 1.49697e-06 1.21581e-08 2.718 ||| 0-0 ||| 361 668016 +a ||| where they refer to ||| 1 0.229811 1.49697e-06 2.70574e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| where they ||| 0.00119332 0.0053255 1.49697e-06 8.01312e-07 2.718 ||| 0-0 ||| 838 668016 +a ||| where to turn for ||| 0.142857 0.0683377 1.49697e-06 2.22431e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| where we are ||| 0.00286533 0.0053255 1.49697e-06 4.22862e-08 2.718 ||| 0-0 ||| 349 668016 +a ||| where we have to say either that ||| 1 0.229811 1.49697e-06 2.00606e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| where we have to say either ||| 1 0.229811 1.49697e-06 1.19255e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| where we have to say ||| 1 0.229811 1.49697e-06 1.3774e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| where we have to ||| 0.0151515 0.229811 1.49697e-06 1.44109e-08 2.718 ||| 0-3 ||| 66 668016 +a ||| where we shall ||| 1 0.131911 1.49697e-06 8.30733e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| where we ||| 0.000636943 0.0053255 1.49697e-06 2.78699e-06 2.718 ||| 0-0 ||| 1570 668016 +a ||| where you ||| 0.00518135 0.0053255 1.49697e-06 7.92646e-07 2.718 ||| 0-0 ||| 193 668016 +a ||| where young ||| 0.5 0.0035558 1.49697e-06 3.80525e-09 2.718 ||| 0-0 0-1 ||| 2 668016 +a ||| where ||| 0.00235606 0.0053255 0.000143709 0.0002455 2.718 ||| 0-0 ||| 40746 668016 +a ||| whereas generating ||| 1 0.0066309 1.49697e-06 1.1712e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| whereas pensioners ||| 0.25 0.0066309 1.49697e-06 7.68e-11 2.718 ||| 0-0 ||| 4 668016 +a ||| whereas ||| 0.00270392 0.0066309 8.98182e-06 1.92e-05 2.718 ||| 0-0 ||| 2219 668016 +a ||| whereupon we start trying to ||| 1 0.229811 1.49697e-06 1.14539e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| whether by ||| 0.0185185 0.0337966 1.49697e-06 2.16136e-06 2.718 ||| 0-1 ||| 54 668016 +a ||| whether in relation to ||| 0.05 0.229811 1.49697e-06 4.79236e-10 2.718 ||| 0-3 ||| 20 668016 +a ||| whether it be in the ||| 0.0833333 3.91e-05 1.49697e-06 3.8115e-13 2.718 ||| 0-0 ||| 12 668016 +a ||| whether it be in ||| 0.0222222 3.91e-05 1.49697e-06 6.20848e-12 2.718 ||| 0-0 ||| 45 668016 +a ||| whether it be ||| 0.00387597 3.91e-05 1.49697e-06 2.90055e-10 2.718 ||| 0-0 ||| 258 668016 +a ||| whether it is correct ||| 0.1 0.0006453 1.49697e-06 8.7912e-14 2.718 ||| 0-1 ||| 10 668016 +a ||| whether it is ||| 0.00100301 0.0006453 1.49697e-06 2.442e-09 2.718 ||| 0-1 ||| 997 668016 +a ||| whether it will act to ensure ||| 1 0.229811 1.49697e-06 1.07857e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| whether it will act to ||| 1 0.229811 1.49697e-06 2.40537e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| whether it ||| 0.00234742 3.91e-05 2.99394e-06 1.60049e-08 2.718 ||| 0-0 ||| 852 668016 +a ||| whether on ||| 0.0178571 0.0782999 1.49697e-06 9.96568e-06 2.718 ||| 0-1 ||| 56 668016 +a ||| whether these be to ||| 1 0.229811 1.49697e-06 1.72962e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| whether they will throw it all away ||| 1 0.0038996 1.49697e-06 5.33816e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| whether they will throw it all ||| 1 0.0038996 1.49697e-06 1.67814e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| whether to ||| 0.00258398 0.229811 1.49697e-06 9.20242e-05 2.718 ||| 0-1 ||| 387 668016 +a ||| whether ||| 4.0563e-05 3.91e-05 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 24653 668016 +a ||| which , I believe , has to ||| 1 0.229811 1.49697e-06 4.79674e-13 2.718 ||| 0-6 ||| 1 668016 +a ||| which , for ||| 0.00333333 0.0683377 1.49697e-06 3.73283e-05 2.718 ||| 0-2 ||| 300 668016 +a ||| which , in ||| 0.00108108 0.0587624 2.99394e-06 6.08648e-05 2.718 ||| 0-2 ||| 1850 668016 +a ||| which , over three and ||| 1 0.0682544 1.49697e-06 1.86579e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| which , over three ||| 1 0.0682544 1.49697e-06 1.48954e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| which , over ||| 0.0322581 0.0682544 1.49697e-06 2.35315e-06 2.718 ||| 0-2 ||| 31 668016 +a ||| which Germany owes Greece remain in abeyance ||| 1 0.0587624 1.49697e-06 2.92964e-29 2.718 ||| 0-5 ||| 1 668016 +a ||| which Germany owes Greece remain in ||| 1 0.0587624 1.49697e-06 2.66331e-23 2.718 ||| 0-5 ||| 1 668016 +a ||| which I ||| 0.000161108 0.0013612 1.49697e-06 6.27241e-06 2.718 ||| 0-1 ||| 6207 668016 +a ||| which Mr De Magistris gave to ||| 1 0.229811 1.49697e-06 2.5952e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| which according to ||| 0.04 0.229811 1.49697e-06 2.63347e-07 2.718 ||| 0-2 ||| 25 668016 +a ||| which action may be taken to ||| 1 0.229811 1.49697e-06 1.11328e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| which affects ||| 0.00377358 0.380413 1.49697e-06 1.04203e-05 2.718 ||| 0-1 ||| 265 668016 +a ||| which apply not just to ||| 1 0.229811 1.49697e-06 1.8445e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| which apply to ||| 0.0138889 0.229811 1.49697e-06 4.28199e-07 2.718 ||| 0-2 ||| 72 668016 +a ||| which are , in my ||| 0.25 0.0587624 1.49697e-06 5.93892e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| which are , in ||| 0.0232558 0.0587624 1.49697e-06 9.23484e-07 2.718 ||| 0-3 ||| 43 668016 +a ||| which are already in use ||| 0.0526316 0.0587624 1.49697e-06 1.74359e-12 2.718 ||| 0-3 ||| 19 668016 +a ||| which are already in ||| 0.0172414 0.0587624 1.49697e-06 3.58615e-09 2.718 ||| 0-3 ||| 58 668016 +a ||| which are as ||| 0.0192308 0.0243476 1.49697e-06 1.13064e-06 2.718 ||| 0-2 ||| 52 668016 +a ||| which are at ||| 0.0166667 0.204175 2.99394e-06 4.38669e-06 2.718 ||| 0-2 ||| 120 668016 +a ||| which are going to ||| 0.0185185 0.229811 1.49697e-06 3.86385e-08 2.718 ||| 0-3 ||| 54 668016 +a ||| which are in ||| 0.00387597 0.0587624 1.49697e-06 7.74379e-06 2.718 ||| 0-2 ||| 258 668016 +a ||| which are required in ||| 0.333333 0.0587624 1.49697e-06 1.22894e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| which are suited to ||| 0.333333 0.229811 1.49697e-06 3.74737e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| which are to ||| 0.0129032 0.229811 2.99394e-06 4.5149e-05 2.718 ||| 0-2 ||| 155 668016 +a ||| which are ||| 0.000379075 0.0009806 5.98788e-06 2.81426e-06 2.718 ||| 0-1 ||| 10552 668016 +a ||| which at ||| 0.012766 0.204175 4.49091e-06 0.000289117 2.718 ||| 0-1 ||| 235 668016 +a ||| which attempts to ||| 0.0181818 0.229811 1.49697e-06 9.43288e-08 2.718 ||| 0-2 ||| 55 668016 +a ||| which bring about ||| 0.111111 0.0526361 1.49697e-06 1.33258e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| which brings the ||| 0.142857 0.0083969 1.49697e-06 1.04821e-08 2.718 ||| 0-1 ||| 7 668016 +a ||| which brings ||| 0.008 0.0083969 1.49697e-06 1.70741e-07 2.718 ||| 0-1 ||| 125 668016 +a ||| which broke out in ||| 0.1 0.0587624 1.49697e-06 1.8963e-11 2.718 ||| 0-3 ||| 10 668016 +a ||| which can , on ||| 1 0.0782999 1.49697e-06 1.14301e-07 2.718 ||| 0-3 ||| 1 668016 +a ||| which can be taken in the ||| 0.333333 0.0587624 1.49697e-06 1.53947e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| which can be taken in ||| 0.166667 0.0587624 1.49697e-06 2.50761e-11 2.718 ||| 0-4 ||| 6 668016 +a ||| which can cope with ||| 0.25 0.0571592 1.49697e-06 9.57508e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| which centres on ||| 0.333333 0.0782999 1.49697e-06 3.93142e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| which concerns ||| 0.00229358 0.127284 1.49697e-06 2.00345e-05 2.718 ||| 0-1 ||| 436 668016 +a ||| which contributes to ||| 0.0212766 0.229811 1.49697e-06 1.27954e-08 2.718 ||| 0-2 ||| 47 668016 +a ||| which could help to set out ||| 1 0.229811 1.49697e-06 9.03277e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| which could help to set ||| 1 0.229811 1.49697e-06 2.35818e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| which could help to ||| 0.0769231 0.229811 1.49697e-06 4.03521e-10 2.718 ||| 0-3 ||| 13 668016 +a ||| which cover ||| 0.0114943 0.0050378 1.49697e-06 1.39311e-07 2.718 ||| 0-1 ||| 87 668016 +a ||| which creates a burden on ||| 0.5 0.0782999 1.49697e-06 1.18678e-14 2.718 ||| 0-4 ||| 2 668016 +a ||| which delivers ||| 0.0714286 0.0057803 1.49697e-06 7.64514e-09 2.718 ||| 0-1 ||| 14 668016 +a ||| which depend upon ||| 0.5 0.19056 1.49697e-06 3.08147e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| which does not form part of ||| 0.2 0.0188479 1.49697e-06 3.26522e-16 2.718 ||| 0-5 ||| 5 668016 +a ||| which does not just meet with the ||| 1 0.0571592 1.49697e-06 3.1987e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| which does not just meet with ||| 1 0.0571592 1.49697e-06 5.21031e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| which enables the customer to ||| 1 0.229811 1.49697e-06 1.01133e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| which end up in the ||| 0.333333 0.0587624 1.49697e-06 4.64952e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| which end up in ||| 0.25 0.0587624 1.49697e-06 7.57353e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| which exist at the moment in ||| 1 0.204175 1.49697e-06 6.32276e-15 2.718 ||| 0-2 ||| 1 668016 +a ||| which exist at the moment ||| 0.5 0.204175 1.49697e-06 2.95394e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| which exist at the ||| 0.5 0.204175 1.49697e-06 1.63472e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| which exist at ||| 0.4 0.204175 2.99394e-06 2.66277e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| which exist in ||| 0.0119048 0.0587624 1.49697e-06 4.70057e-08 2.718 ||| 0-2 ||| 84 668016 +a ||| which fails to ||| 0.0285714 0.229811 1.49697e-06 4.49326e-08 2.718 ||| 0-2 ||| 35 668016 +a ||| which for ||| 0.0114286 0.0683377 2.99394e-06 0.000313013 2.718 ||| 0-1 ||| 175 668016 +a ||| which give information on ||| 0.333333 0.0782999 1.49697e-06 3.23192e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| which give ||| 0.00819672 0.0241455 1.49697e-06 4.77651e-06 2.718 ||| 0-1 ||| 122 668016 +a ||| which gives them ||| 0.04 0.0245059 1.49697e-06 2.57937e-09 2.718 ||| 0-1 ||| 25 668016 +a ||| which gives ||| 0.00502513 0.0245059 2.99394e-06 9.61589e-07 2.718 ||| 0-1 ||| 398 668016 +a ||| which goes hand in ||| 0.05 0.0587624 1.49697e-06 2.80345e-11 2.718 ||| 0-3 ||| 20 668016 +a ||| which has backing across the board ||| 1 0.0490758 1.49697e-06 2.97977e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| which has backing across the ||| 1 0.0490758 1.49697e-06 2.23204e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| which has backing across ||| 1 0.0490758 1.49697e-06 3.63573e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| which has been made towards ||| 0.25 0.155507 1.49697e-06 1.03155e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| which has been reduced by ||| 1 0.0337966 1.49697e-06 5.62206e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| which has been taken over ||| 0.0769231 0.0682544 5.98788e-06 3.0915e-13 2.718 ||| 0-4 ||| 52 668016 +a ||| which has since ||| 0.0555556 0.0050746 1.49697e-06 6.86497e-09 2.718 ||| 0-2 ||| 18 668016 +a ||| which has to be ||| 0.00980392 0.229811 1.49697e-06 2.77593e-07 2.718 ||| 0-2 ||| 102 668016 +a ||| which has to do with ||| 0.015873 0.0571592 1.49697e-06 2.22839e-10 2.718 ||| 0-4 ||| 63 668016 +a ||| which has to ||| 0.00763359 0.229811 2.99394e-06 1.53173e-05 2.718 ||| 0-2 ||| 262 668016 +a ||| which have affected ||| 0.0454545 0.0557198 1.49697e-06 3.49584e-08 2.718 ||| 0-2 ||| 22 668016 +a ||| which have been carried out to ||| 0.5 0.229811 1.49697e-06 1.34145e-13 2.718 ||| 0-5 ||| 2 668016 +a ||| which have been made on your side ||| 1 0.0782999 1.49697e-06 1.5122e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| which have been made on your ||| 1 0.0782999 1.49697e-06 6.89873e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| which have been made on ||| 0.142857 0.0782999 1.49697e-06 2.69587e-11 2.718 ||| 0-4 ||| 7 668016 +a ||| which have continued to hit ||| 0.166667 0.229811 1.49697e-06 3.8096e-14 2.718 ||| 0-3 ||| 6 668016 +a ||| which have continued to ||| 0.1 0.229811 1.49697e-06 1.21712e-09 2.718 ||| 0-3 ||| 10 668016 +a ||| which have to do ||| 0.05 0.229811 1.49697e-06 1.22257e-07 2.718 ||| 0-2 ||| 20 668016 +a ||| which have to ||| 0.00628931 0.229811 1.49697e-06 3.55884e-05 2.718 ||| 0-2 ||| 159 668016 +a ||| which have ||| 0.000222074 9.85e-05 1.49697e-06 3.06171e-07 2.718 ||| 0-0 ||| 4503 668016 +a ||| which he has used to ||| 0.5 0.229811 1.49697e-06 5.73461e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| which helps ||| 0.0117647 0.27467 1.49697e-06 3.3885e-06 2.718 ||| 0-1 ||| 85 668016 +a ||| which in ||| 0.0059727 0.0587624 1.04788e-05 0.000510377 2.718 ||| 0-1 ||| 1172 668016 +a ||| which include confronting ||| 1 0.138947 1.49697e-06 6.7706e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| which interferes with ||| 0.1 0.0571592 1.49697e-06 9.92727e-11 2.718 ||| 0-2 ||| 10 668016 +a ||| which involve ||| 0.00793651 0.170498 1.49697e-06 5.80691e-06 2.718 ||| 0-1 ||| 126 668016 +a ||| which is , as you know , ||| 0.0714286 0.0243476 1.49697e-06 2.76678e-14 2.718 ||| 0-3 ||| 14 668016 +a ||| which is , as you know ||| 0.0666667 0.0243476 1.49697e-06 2.32006e-13 2.718 ||| 0-3 ||| 15 668016 +a ||| which is , as you ||| 0.0769231 0.0243476 1.49697e-06 8.99247e-10 2.718 ||| 0-3 ||| 13 668016 +a ||| which is , as ||| 0.0192308 0.0243476 1.49697e-06 2.78517e-07 2.718 ||| 0-3 ||| 52 668016 +a ||| which is acknowledged to ||| 1 0.229811 1.49697e-06 1.04452e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| which is affecting ||| 0.025641 0.268066 1.49697e-06 2.38862e-07 2.718 ||| 0-2 ||| 39 668016 +a ||| which is aimed at placing ||| 1 0.204175 1.49697e-06 1.49882e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| which is aimed at ||| 0.00877193 0.204175 1.49697e-06 6.29757e-10 2.718 ||| 0-3 ||| 114 668016 +a ||| which is at a ||| 0.142857 0.204175 1.49697e-06 4.01647e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| which is at one and ||| 1 0.204175 1.49697e-06 4.73069e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| which is at one ||| 0.333333 0.204175 1.49697e-06 3.77673e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| which is at ||| 0.025641 0.204175 5.98788e-06 9.06125e-06 2.718 ||| 0-2 ||| 156 668016 +a ||| which is beset with ||| 0.0769231 0.0571592 1.49697e-06 9.77842e-12 2.718 ||| 0-3 ||| 13 668016 +a ||| which is causing ||| 0.0222222 0.0028474 1.49697e-06 1.22466e-09 2.718 ||| 0-2 ||| 45 668016 +a ||| which is geared to ||| 0.111111 0.229811 1.49697e-06 1.21239e-09 2.718 ||| 0-3 ||| 9 668016 +a ||| which is given ||| 0.0526316 0.0371011 1.49697e-06 2.81405e-07 2.718 ||| 0-2 ||| 19 668016 +a ||| which is going to ||| 0.00892857 0.229811 1.49697e-06 7.98126e-08 2.718 ||| 0-3 ||| 112 668016 +a ||| which is granted to ||| 0.333333 0.229811 1.49697e-06 7.55413e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| which is illegal and pure sleight of ||| 1 0.0188479 1.49697e-06 1.06102e-23 2.718 ||| 0-6 ||| 1 668016 +a ||| which is in ||| 0.00659341 0.0587624 4.49091e-06 1.59958e-05 2.718 ||| 0-2 ||| 455 668016 +a ||| which is intended to provide ||| 0.333333 0.229811 1.49697e-06 2.4221e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| which is intended to ||| 0.00649351 0.229811 1.49697e-06 8.1883e-09 2.718 ||| 0-3 ||| 154 668016 +a ||| which is made up of ||| 0.0344828 0.0188479 1.49697e-06 5.62592e-11 2.718 ||| 0-4 ||| 29 668016 +a ||| which is of a ||| 0.0555556 0.0188479 1.49697e-06 3.49052e-07 2.718 ||| 0-2 ||| 18 668016 +a ||| which is of ||| 0.0060241 0.0188479 2.99394e-06 7.87469e-06 2.718 ||| 0-2 ||| 332 668016 +a ||| which is on the ||| 0.0188679 0.0782999 1.49697e-06 6.20033e-07 2.718 ||| 0-2 ||| 53 668016 +a ||| which is on ||| 0.0120482 0.0782999 1.49697e-06 1.00996e-05 2.718 ||| 0-2 ||| 83 668016 +a ||| which is something that urgently needs to ||| 0.5 0.229811 1.49697e-06 2.7206e-18 2.718 ||| 0-6 ||| 2 668016 +a ||| which is taking place at the ||| 0.25 0.0112121 1.49697e-06 1.73972e-14 2.718 ||| 0-2 ||| 4 668016 +a ||| which is taking place at ||| 0.1 0.0112121 1.49697e-06 2.83379e-13 2.718 ||| 0-2 ||| 10 668016 +a ||| which is taking place ||| 0.0147059 0.0112121 1.49697e-06 6.76742e-11 2.718 ||| 0-2 ||| 68 668016 +a ||| which is taking ||| 0.0136986 0.0112121 1.49697e-06 4.49663e-08 2.718 ||| 0-2 ||| 73 668016 +a ||| which is to say ||| 0.0163043 0.229811 4.49091e-06 8.91387e-08 2.718 ||| 0-2 ||| 184 668016 +a ||| which is to ||| 0.0220751 0.229811 2.99394e-05 9.32608e-05 2.718 ||| 0-2 ||| 906 668016 +a ||| which is up to ||| 0.333333 0.229811 1.49697e-06 3.18066e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| which is ||| 7.22831e-05 9.85e-05 2.99394e-06 8.02332e-07 2.718 ||| 0-0 ||| 27669 668016 +a ||| which lay at the ||| 1 0.204175 1.49697e-06 7.34826e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| which lay at ||| 1 0.204175 1.49697e-06 1.19694e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| which leads to a certain amount ||| 1 0.229811 1.49697e-06 2.96329e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| which leads to a certain ||| 1 0.229811 1.49697e-06 1.21796e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| which leads to a ||| 0.030303 0.229811 1.49697e-06 4.27353e-09 2.718 ||| 0-2 ||| 33 668016 +a ||| which leads to ||| 0.0105263 0.229811 2.99394e-06 9.64118e-08 2.718 ||| 0-2 ||| 190 668016 +a ||| which led to ||| 0.003861 0.229811 1.49697e-06 2.73167e-07 2.718 ||| 0-2 ||| 259 668016 +a ||| which may have to be ||| 1 0.229811 1.49697e-06 4.83208e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| which may have to ||| 0.333333 0.229811 1.49697e-06 2.66629e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| which met people ||| 1 0.0005715 1.49697e-06 2.01878e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| which met ||| 0.0208333 0.0005715 1.49697e-06 2.29354e-08 2.718 ||| 0-1 ||| 48 668016 +a ||| which need ||| 0.00384615 9.85e-05 1.49697e-06 2.34726e-08 2.718 ||| 0-0 ||| 260 668016 +a ||| which needs to be ||| 0.00568182 0.229811 1.49697e-06 1.06939e-08 2.718 ||| 0-2 ||| 176 668016 +a ||| which needs to ||| 0.00896861 0.229811 2.99394e-06 5.90076e-07 2.718 ||| 0-2 ||| 223 668016 +a ||| which on ||| 0.0175439 0.0782999 1.49697e-06 0.000322248 2.718 ||| 0-1 ||| 57 668016 +a ||| which only covers ||| 0.0714286 0.0266836 1.49697e-06 3.62139e-10 2.718 ||| 0-2 ||| 14 668016 +a ||| which outrages ||| 0.25 0.0121951 1.49697e-06 7.64514e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| which played along with ||| 1 0.0571592 1.49697e-06 1.22004e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| which point out ||| 0.166667 0.0669777 1.49697e-06 3.04748e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| which prevail at ||| 1 0.204175 1.49697e-06 6.88099e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| which product to ||| 0.5 0.229811 1.49697e-06 1.80921e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| which provide ||| 0.00558659 0.0015521 1.49697e-06 2.01322e-07 2.718 ||| 0-1 ||| 179 668016 +a ||| which relate to ||| 0.00666667 0.229811 1.49697e-06 7.37967e-08 2.718 ||| 0-2 ||| 150 668016 +a ||| which seeks to ||| 0.00266667 0.229811 1.49697e-06 7.70699e-08 2.718 ||| 0-2 ||| 375 668016 +a ||| which seems to be ||| 0.0121951 0.229811 1.49697e-06 6.48212e-09 2.718 ||| 0-2 ||| 82 668016 +a ||| which seems to ||| 0.00900901 0.229811 1.49697e-06 3.57676e-07 2.718 ||| 0-2 ||| 111 668016 +a ||| which seriously affect water ||| 1 0.330659 1.49697e-06 3.18455e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| which seriously affect ||| 0.333333 0.330659 1.49697e-06 5.59675e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| which should promote the highest standards for ||| 1 0.0683377 1.49697e-06 8.77754e-21 2.718 ||| 0-6 ||| 1 668016 +a ||| which stand to benefit from ||| 0.5 0.229811 1.49697e-06 1.04007e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| which stand to benefit ||| 0.142857 0.229811 1.49697e-06 6.45845e-11 2.718 ||| 0-2 ||| 7 668016 +a ||| which stand to ||| 0.1 0.229811 1.49697e-06 4.90391e-07 2.718 ||| 0-2 ||| 10 668016 +a ||| which starts out as a means ||| 0.25 0.0243476 1.49697e-06 7.53657e-17 2.718 ||| 0-3 ||| 4 668016 +a ||| which starts out as a ||| 0.25 0.0243476 1.49697e-06 1.1893e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| which starts out as ||| 0.25 0.0243476 1.49697e-06 2.68308e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| which take into ||| 0.0294118 0.107578 1.49697e-06 8.3074e-08 2.718 ||| 0-2 ||| 34 668016 +a ||| which takes account of ||| 0.00862069 0.0188479 1.49697e-06 9.33296e-12 2.718 ||| 0-3 ||| 116 668016 +a ||| which there was against ||| 1 0.05146 1.49697e-06 2.12064e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| which they arrived at ||| 1 0.204175 1.49697e-06 1.56651e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| which they have to ||| 0.0227273 0.229811 1.49697e-06 1.16161e-07 2.718 ||| 0-3 ||| 44 668016 +a ||| which they must be prepared to ||| 1 0.229811 1.49697e-06 2.35873e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| which to measure ||| 0.333333 0.229811 1.49697e-06 2.22878e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| which to satisfy his or her ||| 1 0.229811 1.49697e-06 1.61342e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| which to satisfy his or ||| 1 0.229811 1.49697e-06 5.9295e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| which to satisfy his ||| 1 0.229811 1.49697e-06 5.1863e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| which to satisfy ||| 0.5 0.229811 1.49697e-06 1.72589e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| which to ||| 0.0180018 0.229811 2.99394e-05 0.00297567 2.718 ||| 0-1 ||| 1111 668016 +a ||| which took place in ||| 0.00454545 0.0587624 1.49697e-06 1.13297e-10 2.718 ||| 0-3 ||| 220 668016 +a ||| which touches upon traditional relations within NATO ||| 1 0.0123496 1.49697e-06 2.0524e-29 2.718 ||| 0-5 ||| 1 668016 +a ||| which touches upon traditional relations within ||| 1 0.0123496 1.49697e-06 2.85055e-24 2.718 ||| 0-5 ||| 1 668016 +a ||| which turns this into ||| 1 0.107578 1.49697e-06 6.73468e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| which want to ||| 0.0181818 0.229811 1.49697e-06 1.39113e-06 2.718 ||| 0-2 ||| 55 668016 +a ||| which was agreed on and ||| 0.333333 0.0782999 1.49697e-06 9.87666e-13 2.718 ||| 0-3 ||| 3 668016 +a ||| which was agreed on ||| 0.166667 0.0782999 1.49697e-06 7.88499e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| which was available following ||| 1 0.0720432 1.49697e-06 8.34557e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| which was condemned in such a ||| 1 0.0587624 1.49697e-06 1.78899e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| which was condemned in such ||| 1 0.0587624 1.49697e-06 4.036e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| which was condemned in ||| 1 0.0587624 1.49697e-06 1.95079e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| which was ||| 0.000223414 9.85e-05 1.49697e-06 8.02048e-08 2.718 ||| 0-0 ||| 4476 668016 +a ||| which we are being urged to ||| 1 0.274464 1.49697e-06 5.57769e-13 2.718 ||| 0-4 0-5 ||| 1 668016 +a ||| which we have at ||| 0.0909091 0.204175 1.49697e-06 3.92538e-08 2.718 ||| 0-3 ||| 11 668016 +a ||| which we have enjoyed with ||| 0.333333 0.0571592 1.49697e-06 4.42861e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| which we met , as far as ||| 1 0.0243476 1.49697e-06 5.39055e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| which we met , as far ||| 1 0.0243476 1.49697e-06 5.28258e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| which we met , as ||| 1 0.0243476 1.49697e-06 7.73777e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| which we were able to ||| 0.03125 0.229811 1.49697e-06 5.05238e-11 2.718 ||| 0-4 ||| 32 668016 +a ||| which we wish to ||| 0.0181818 0.229811 1.49697e-06 9.95518e-09 2.718 ||| 0-3 ||| 55 668016 +a ||| which went into a little more ||| 1 0.107578 1.49697e-06 5.38668e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| which went into a little ||| 1 0.107578 1.49697e-06 2.35875e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| which went into a ||| 1 0.107578 1.49697e-06 1.45692e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| which went into ||| 0.333333 0.107578 1.49697e-06 3.28684e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| which were as ||| 0.5 0.0243476 2.99394e-06 1.33492e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| which were asked ||| 0.25 0.0895701 1.49697e-06 1.2501e-08 2.718 ||| 0-2 ||| 4 668016 +a ||| which were dealt with at ||| 1 0.204175 1.49697e-06 3.46753e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| which were exported to ||| 1 0.229811 1.49697e-06 1.33265e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| which were in danger of escalating ||| 0.5 0.0587624 1.49697e-06 3.40276e-18 2.718 ||| 0-2 ||| 2 668016 +a ||| which were in danger of ||| 0.5 0.0587624 1.49697e-06 2.43055e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| which were in danger ||| 0.5 0.0587624 1.49697e-06 4.47087e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| which were in ||| 0.0714286 0.0587624 2.99394e-06 9.14289e-07 2.718 ||| 0-2 ||| 28 668016 +a ||| which were parties to ||| 1 0.229811 1.49697e-06 3.91267e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| which will be available at ||| 0.5 0.204175 1.49697e-06 1.44192e-11 2.718 ||| 0-4 ||| 2 668016 +a ||| which will be covered ||| 0.142857 0.0561595 1.49697e-06 1.55239e-10 2.718 ||| 0-1 ||| 7 668016 +a ||| which will be ||| 0.00203528 0.0561595 4.49091e-06 2.16814e-06 2.718 ||| 0-1 ||| 1474 668016 +a ||| which will fall hardest on ||| 0.5 0.0782999 1.49697e-06 7.73706e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| which will follow ||| 0.05 0.0561595 1.49697e-06 1.18439e-08 2.718 ||| 0-1 ||| 20 668016 +a ||| which will go towards ||| 1 0.155507 1.49697e-06 1.44941e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| which will help ||| 0.00337838 0.259976 1.49697e-06 4.83356e-07 2.718 ||| 0-2 ||| 296 668016 +a ||| which will in ||| 0.0178571 0.0587624 1.49697e-06 4.41537e-06 2.718 ||| 0-2 ||| 56 668016 +a ||| which will mean ||| 0.00943396 0.0561595 1.49697e-06 3.083e-08 2.718 ||| 0-1 ||| 106 668016 +a ||| which will take place ||| 0.00458716 0.0012933 1.49697e-06 7.57611e-12 2.718 ||| 0-2 ||| 218 668016 +a ||| which will take ||| 0.00387597 0.0012933 1.49697e-06 5.03396e-09 2.718 ||| 0-2 ||| 258 668016 +a ||| which will ||| 0.00494001 0.0561595 3.14364e-05 0.000119635 2.718 ||| 0-1 ||| 4251 668016 +a ||| which would also help us ||| 1 0.259976 1.49697e-06 4.7712e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| which would also help ||| 0.333333 0.259976 1.49697e-06 1.6554e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| which would be detrimental to ||| 0.142857 0.229811 1.49697e-06 1.83562e-12 2.718 ||| 0-4 ||| 7 668016 +a ||| which would open the way for funding ||| 0.5 0.0683377 1.49697e-06 2.0887e-18 2.718 ||| 0-5 ||| 2 668016 +a ||| which would open the way for ||| 0.333333 0.0683377 1.49697e-06 3.91876e-14 2.718 ||| 0-5 ||| 3 668016 +a ||| which would ||| 0.00043573 0.0006332 1.49697e-06 8.06138e-07 2.718 ||| 0-1 ||| 2295 668016 +a ||| which you need to ||| 0.1 0.229811 1.49697e-06 8.80916e-09 2.718 ||| 0-3 ||| 10 668016 +a ||| which ||| 7.12827e-05 9.85e-05 3.44303e-05 2.56e-05 2.718 ||| 0-0 ||| 322659 668016 +a ||| while , at ||| 0.0888889 0.204175 5.98788e-06 7.56575e-07 2.718 ||| 0-2 ||| 45 668016 +a ||| while , ||| 0.00351494 0.0377813 2.99394e-06 0.000109285 2.718 ||| 0-0 ||| 569 668016 +a ||| while Europe has ||| 0.25 0.0377813 1.49697e-06 2.38689e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| while Europe ||| 0.0163934 0.0377813 1.49697e-06 4.63698e-07 2.718 ||| 0-0 ||| 61 668016 +a ||| while I am on the ||| 0.0625 0.0377813 1.49697e-06 3.40159e-12 2.718 ||| 0-0 ||| 16 668016 +a ||| while I am on ||| 0.166667 0.0782999 7.48485e-06 6.38981e-11 2.718 ||| 0-3 ||| 30 668016 +a ||| while I am ||| 0.00952381 0.0377813 1.49697e-06 8.28095e-09 2.718 ||| 0-0 ||| 105 668016 +a ||| while I have been ||| 0.111111 0.0377813 1.49697e-06 2.58872e-10 2.718 ||| 0-0 ||| 9 668016 +a ||| while I have ||| 0.0196078 0.0377813 1.49697e-06 7.75253e-08 2.718 ||| 0-0 ||| 51 668016 +a ||| while I ||| 0.00817439 0.0377813 4.49091e-06 6.48216e-06 2.718 ||| 0-0 ||| 367 668016 +a ||| while US ||| 0.333333 0.0377813 1.49697e-06 3.92219e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| while achieving ||| 0.0833333 0.0377813 1.49697e-06 6.06657e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| while ago ||| 0.0116279 0.0377813 1.49697e-06 1.00896e-07 2.718 ||| 0-0 ||| 86 668016 +a ||| while also ||| 0.00547945 0.0377813 2.99394e-06 4.62654e-06 2.718 ||| 0-0 ||| 365 668016 +a ||| while at the same time ||| 0.00143472 0.204175 1.49697e-06 5.14535e-13 2.718 ||| 0-1 ||| 697 668016 +a ||| while at the same ||| 0.00277008 0.204175 1.49697e-06 3.13416e-10 2.718 ||| 0-1 ||| 361 668016 +a ||| while at the ||| 0.00464037 0.204175 2.99394e-06 3.89482e-07 2.718 ||| 0-1 ||| 431 668016 +a ||| while at ||| 0.0833333 0.120978 2.39515e-05 3.119e-05 2.718 ||| 0-0 0-1 ||| 192 668016 +a ||| while being kept in the ||| 1 0.0587624 1.49697e-06 1.39508e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| while being kept in ||| 1 0.0587624 1.49697e-06 2.27242e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| while clearly ||| 0.25 0.0377813 1.49697e-06 1.67243e-07 2.718 ||| 0-0 ||| 4 668016 +a ||| while he ||| 0.0416667 0.0377813 1.49697e-06 7.99742e-07 2.718 ||| 0-0 ||| 24 668016 +a ||| while in ||| 0.003367 0.0587624 1.49697e-06 1.11994e-05 2.718 ||| 0-1 ||| 297 668016 +a ||| while leaving ||| 0.0769231 0.0377813 5.98788e-06 2.18103e-08 2.718 ||| 0-0 ||| 52 668016 +a ||| while making ||| 0.031746 0.0377813 2.99394e-06 3.52539e-07 2.718 ||| 0-0 ||| 63 668016 +a ||| while on ||| 0.00763359 0.0580406 1.49697e-06 3.47642e-05 2.718 ||| 0-0 0-1 ||| 131 668016 +a ||| while we are on ||| 0.0625 0.0782999 2.99394e-06 1.21798e-09 2.718 ||| 0-3 ||| 32 668016 +a ||| while we have ||| 0.0123457 0.0377813 1.49697e-06 1.24421e-07 2.718 ||| 0-0 ||| 81 668016 +a ||| while we ||| 0.00704225 0.0377813 5.98788e-06 1.04032e-05 2.718 ||| 0-0 ||| 568 668016 +a ||| while ||| 0.00657512 0.0377813 0.000169158 0.0009164 2.718 ||| 0-0 ||| 17186 668016 +a ||| whilst also ||| 0.03125 0.0442295 4.49091e-06 1.28588e-06 2.718 ||| 0-0 ||| 96 668016 +a ||| whilst at ||| 0.0784314 0.204175 5.98788e-06 1.80047e-06 2.718 ||| 0-1 ||| 51 668016 +a ||| whilst following ||| 1 0.0720432 1.49697e-06 5.21488e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| whilst meeting ||| 0.25 0.0442295 1.49697e-06 3.19903e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| whilst on ||| 0.0384615 0.0782999 1.49697e-06 2.00679e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| whilst the ||| 0.00204499 0.0442295 1.49697e-06 1.56365e-05 2.718 ||| 0-0 ||| 489 668016 +a ||| whilst we are on ||| 0.25 0.0782999 1.49697e-06 3.4566e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| whilst we await ||| 0.111111 0.0442295 1.49697e-06 1.24332e-11 2.718 ||| 0-0 ||| 9 668016 +a ||| whilst we ||| 0.00877193 0.0442295 1.49697e-06 2.89143e-06 2.718 ||| 0-0 ||| 114 668016 +a ||| whilst ||| 0.00582383 0.0442295 3.59273e-05 0.0002547 2.718 ||| 0-0 ||| 4121 668016 +a ||| who , in ||| 0.00308642 0.0587624 1.49697e-06 6.31964e-06 2.718 ||| 0-2 ||| 324 668016 +a ||| who are brought to book ||| 1 0.229811 1.49697e-06 3.54401e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| who are brought to ||| 0.333333 0.229811 1.49697e-06 1.3126e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| who are in ||| 0.00332226 0.0587624 1.49697e-06 8.04043e-07 2.718 ||| 0-2 ||| 301 668016 +a ||| who are not entitled to ||| 0.2 0.229811 1.49697e-06 7.82634e-13 2.718 ||| 0-4 ||| 5 668016 +a ||| who are recruited ||| 0.166667 0.108108 1.49697e-06 2.44896e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| who are supposed to be responsible ||| 1 0.229811 1.49697e-06 7.37577e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| who are supposed to be ||| 0.142857 0.229811 1.49697e-06 4.987e-12 2.718 ||| 0-3 ||| 7 668016 +a ||| who are supposed to ||| 0.05 0.229811 1.49697e-06 2.75177e-10 2.718 ||| 0-3 ||| 20 668016 +a ||| who are taking advantage ||| 0.25 0.0005736 1.49697e-06 1.28158e-14 2.718 ||| 0-0 ||| 4 668016 +a ||| who are taking ||| 0.0588235 0.0005736 1.49697e-06 2.52777e-10 2.718 ||| 0-0 ||| 17 668016 +a ||| who are the ||| 0.004 0.0005736 1.49697e-06 3.6514e-08 2.718 ||| 0-0 ||| 250 668016 +a ||| who are under ||| 0.1 0.0384416 1.49697e-06 1.89815e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| who are ||| 0.000800512 0.0005736 7.48485e-06 5.9477e-07 2.718 ||| 0-0 ||| 6246 668016 +a ||| who benefit from ||| 0.0263158 0.0435582 1.49697e-06 8.36208e-10 2.718 ||| 0-2 ||| 38 668016 +a ||| who can ||| 0.00149701 0.0005736 1.49697e-06 1.16593e-07 2.718 ||| 0-0 ||| 668 668016 +a ||| who do ||| 0.00543478 0.0005736 1.49697e-06 1.34664e-07 2.718 ||| 0-0 ||| 184 668016 +a ||| who falls into ||| 1 0.107578 1.49697e-06 1.67691e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| who falsified the vote for ||| 1 0.0683377 1.49697e-06 2.19698e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| who find themselves trapped in ||| 0.25 0.0587624 1.49697e-06 3.03219e-17 2.718 ||| 0-4 ||| 4 668016 +a ||| who has asked to ||| 0.25 0.229811 1.49697e-06 1.20234e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| who has to swallow ||| 1 0.229811 1.49697e-06 5.08929e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| who has to ||| 0.0294118 0.229811 1.49697e-06 1.5904e-06 2.718 ||| 0-2 ||| 34 668016 +a ||| who have not reached full legal ||| 1 0.14487 1.49697e-06 1.05302e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| who have not reached full ||| 1 0.14487 1.49697e-06 8.12519e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| who have not reached ||| 0.333333 0.14487 1.49697e-06 4.42789e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| who have started legal ||| 1 0.0005736 1.49697e-06 2.73418e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| who have started ||| 0.125 0.0005736 1.49697e-06 2.10971e-11 2.718 ||| 0-0 ||| 8 668016 +a ||| who have ||| 0.000154536 0.0005736 1.49697e-06 4.68824e-07 2.718 ||| 0-0 ||| 6471 668016 +a ||| who help their ||| 1 0.259976 1.49697e-06 6.72415e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| who help ||| 0.0666667 0.259976 1.49697e-06 5.80118e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| who is going to ||| 0.00869565 0.229811 1.49697e-06 8.287e-09 2.718 ||| 0-3 ||| 115 668016 +a ||| who is in ||| 0.00689655 0.0587624 1.49697e-06 1.66085e-06 2.718 ||| 0-2 ||| 145 668016 +a ||| who is seated in ||| 0.166667 0.0587624 1.49697e-06 5.97907e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| who is ||| 0.000706964 0.0005736 2.99394e-06 1.22857e-06 2.718 ||| 0-0 ||| 2829 668016 +a ||| who live ||| 0.00159236 0.0005736 1.49697e-06 3.95136e-09 2.718 ||| 0-0 ||| 628 668016 +a ||| who lost out in ||| 1 0.0587624 1.49697e-06 1.15498e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| who oppose ||| 0.0104167 0.339711 1.49697e-06 8.71857e-07 2.718 ||| 0-1 ||| 96 668016 +a ||| who planned to ||| 0.333333 0.229811 1.49697e-06 1.05666e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| who raped ||| 1 0.116883 1.49697e-06 1.44648e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| who really want to invest in European ||| 1 0.229811 1.49697e-06 4.70742e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| who really want to invest in ||| 1 0.229811 1.49697e-06 1.40776e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| who really want to invest ||| 1 0.229811 1.49697e-06 6.57695e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| who really want to ||| 0.166667 0.229811 1.49697e-06 6.99675e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| who sit in ||| 0.0909091 0.0587624 1.49697e-06 2.00313e-09 2.718 ||| 0-2 ||| 11 668016 +a ||| who sit ||| 0.02 0.0005736 1.49697e-06 1.48176e-09 2.718 ||| 0-0 ||| 50 668016 +a ||| who study them , affect up to ||| 1 0.330659 1.49697e-06 4.56622e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| who study them , affect up ||| 1 0.330659 1.49697e-06 5.13877e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| who study them , affect ||| 1 0.330659 1.49697e-06 1.50675e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| who suffer as a result ||| 0.0714286 0.0005736 1.49697e-06 3.32337e-16 2.718 ||| 0-0 ||| 14 668016 +a ||| who suffer as a ||| 0.125 0.0005736 1.49697e-06 6.31219e-13 2.718 ||| 0-0 ||| 8 668016 +a ||| who suffer as ||| 0.0833333 0.0005736 1.49697e-06 1.42404e-11 2.718 ||| 0-0 ||| 12 668016 +a ||| who suffer from ||| 0.0142857 0.0435582 1.49697e-06 2.26037e-10 2.718 ||| 0-2 ||| 70 668016 +a ||| who suffer ||| 0.00617284 0.0005736 1.49697e-06 1.39552e-09 2.718 ||| 0-0 ||| 162 668016 +a ||| who then try to ||| 1 0.229811 1.49697e-06 7.66241e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| who want to make ||| 0.0416667 0.229811 1.49697e-06 2.51011e-10 2.718 ||| 0-2 ||| 24 668016 +a ||| who want to ||| 0.00333333 0.229811 2.99394e-06 1.44442e-07 2.718 ||| 0-2 ||| 600 668016 +a ||| who were in ||| 0.0222222 0.0587624 1.49697e-06 9.49312e-08 2.718 ||| 0-2 ||| 45 668016 +a ||| who were ||| 0.0031746 0.0005736 4.49091e-06 7.02229e-08 2.718 ||| 0-0 ||| 945 668016 +a ||| who will be ||| 0.00668896 0.0005736 2.99394e-06 6.14597e-09 2.718 ||| 0-0 ||| 299 668016 +a ||| who will guard ||| 1 0.0561595 1.49697e-06 1.20492e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| who will have to ||| 0.0151515 0.229811 1.49697e-06 3.19677e-08 2.718 ||| 0-3 ||| 66 668016 +a ||| who will provide ||| 0.0833333 0.0561595 1.49697e-06 3.67438e-09 2.718 ||| 0-1 ||| 12 668016 +a ||| who will speak on ||| 0.0588235 0.0782999 1.49697e-06 3.91642e-11 2.718 ||| 0-3 ||| 17 668016 +a ||| who will ||| 0.0117994 0.0561595 1.19758e-05 1.24218e-05 2.718 ||| 0-1 ||| 678 668016 +a ||| who ||| 0.000467283 0.0005736 4.7903e-05 3.92e-05 2.718 ||| 0-0 ||| 68481 668016 +a ||| whoever is guilty of ||| 0.5 0.0188479 1.49697e-06 7.86115e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| whole host of ||| 0.031746 0.0188479 2.99394e-06 3.24612e-10 2.718 ||| 0-2 ||| 63 668016 +a ||| whole in ||| 0.0175439 0.0587624 1.49697e-06 3.39887e-05 2.718 ||| 0-1 ||| 57 668016 +a ||| whole of ||| 0.00342633 0.0188479 1.04788e-05 1.67326e-05 2.718 ||| 0-1 ||| 2043 668016 +a ||| whole series of ||| 0.00729927 0.0188479 1.49697e-06 6.67629e-10 2.718 ||| 0-2 ||| 137 668016 +a ||| whole with consensus ||| 1 0.0571592 1.49697e-06 1.46388e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| whole with ||| 0.0714286 0.0571592 1.49697e-06 9.44442e-06 2.718 ||| 0-1 ||| 14 668016 +a ||| wholeheartedly into ||| 0.125 0.107578 1.49697e-06 4.61647e-08 2.718 ||| 0-1 ||| 8 668016 +a ||| whom , in ||| 0.111111 0.0587624 1.49697e-06 4.77197e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| whom will take to ||| 1 0.229811 1.49697e-06 3.24952e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| whose role is to ||| 0.111111 0.229811 1.49697e-06 1.92059e-10 2.718 ||| 0-3 ||| 9 668016 +a ||| why , over ||| 0.166667 0.0682544 1.49697e-06 6.82846e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| why I am in ||| 0.1 0.0587624 1.49697e-06 1.33832e-10 2.718 ||| 0-3 ||| 10 668016 +a ||| why it should not apply to ||| 1 0.229811 1.49697e-06 3.34278e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| why progress is speeding up in some ||| 1 0.0587624 1.49697e-06 3.1795e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| why progress is speeding up in ||| 1 0.0587624 1.49697e-06 2.91884e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| why this has to be done ||| 1 0.229811 1.49697e-06 2.37342e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| why this has to be ||| 1 0.229811 1.49697e-06 5.20487e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| why this has to ||| 0.2 0.229811 1.49697e-06 2.87198e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| why we attach particular importance to ||| 1 0.229811 1.49697e-06 8.46317e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| why we feel like giving ||| 1 0.136521 1.49697e-06 8.47582e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| why we should not ||| 0.037037 0.0008079 1.49697e-06 1.69148e-12 2.718 ||| 0-1 ||| 27 668016 +a ||| why we should ||| 0.00694444 0.0008079 1.49697e-06 4.95441e-10 2.718 ||| 0-1 ||| 144 668016 +a ||| why we ||| 0.00088574 0.0008079 1.49697e-06 1.11812e-07 2.718 ||| 0-1 ||| 1129 668016 +a ||| wide boys acting in ||| 0.5 0.0451613 1.49697e-06 6.69218e-16 2.718 ||| 0-1 ||| 2 668016 +a ||| wide boys acting ||| 0.5 0.0451613 1.49697e-06 3.12653e-14 2.718 ||| 0-1 ||| 2 668016 +a ||| wide boys ||| 0.5 0.0451613 1.49697e-06 5.2992e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| wide definition of ||| 0.125 0.0188479 1.49697e-06 3.34302e-11 2.718 ||| 0-2 ||| 8 668016 +a ||| wide open to ||| 0.0526316 0.229811 1.49697e-06 2.3378e-09 2.718 ||| 0-2 ||| 19 668016 +a ||| wide to ||| 0.0909091 0.229811 2.99394e-06 1.45025e-05 2.718 ||| 0-1 ||| 22 668016 +a ||| widely promoted throughout ||| 0.5 0.0592287 1.49697e-06 4.5443e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| widely to ||| 0.0909091 0.229811 1.49697e-06 9.70335e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| widespread in ||| 0.0232558 0.0587624 1.49697e-06 1.33984e-06 2.718 ||| 0-1 ||| 43 668016 +a ||| widespread recourse to ||| 1 0.229811 1.49697e-06 9.53031e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| will , I believe , reassure Mrs ||| 1 0.284916 1.49697e-06 7.08252e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| will , I believe , reassure ||| 1 0.284916 1.49697e-06 7.56679e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| will , at ||| 0.0178571 0.204175 1.49697e-06 3.51142e-05 2.718 ||| 0-2 ||| 56 668016 +a ||| will , for ||| 0.0181818 0.0683377 1.49697e-06 3.80165e-05 2.718 ||| 0-2 ||| 55 668016 +a ||| will , in the ||| 0.0246914 0.0587624 2.99394e-06 3.80549e-06 2.718 ||| 0-2 ||| 81 668016 +a ||| will , in ||| 0.0321101 0.0587624 2.09576e-05 6.19869e-05 2.718 ||| 0-2 ||| 436 668016 +a ||| will , to be ||| 1 0.229811 1.49697e-06 6.5497e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| will , to ||| 0.125 0.229811 4.49091e-06 0.000361405 2.718 ||| 0-2 ||| 24 668016 +a ||| will , ||| 0.00500278 0.0561595 1.34727e-05 0.00167955 2.718 ||| 0-0 ||| 1799 668016 +a ||| will account for ||| 0.0740741 0.0683377 2.99394e-06 9.16503e-08 2.718 ||| 0-2 ||| 27 668016 +a ||| will achieve ||| 0.0041841 0.0561595 1.49697e-06 3.21813e-06 2.718 ||| 0-0 ||| 239 668016 +a ||| will act to ensure ||| 0.5 0.229811 1.49697e-06 2.30875e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| will act to ||| 0.166667 0.229811 1.49697e-06 5.14887e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| will actually be retained by ||| 1 0.0337966 1.49697e-06 5.00541e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| will affect the actions of ||| 1 0.330659 1.49697e-06 3.18428e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| will affect the actions ||| 1 0.330659 1.49697e-06 5.85732e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| will affect the ||| 0.0166667 0.330659 1.49697e-06 8.39158e-07 2.718 ||| 0-1 ||| 60 668016 +a ||| will affect ||| 0.019305 0.330659 7.48485e-06 1.36689e-05 2.718 ||| 0-1 ||| 259 668016 +a ||| will after all ||| 0.166667 0.0341027 1.49697e-06 3.42905e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| will after ||| 0.166667 0.0341027 1.49697e-06 7.25663e-06 2.718 ||| 0-1 ||| 6 668016 +a ||| will agree ||| 0.00274725 0.0561595 1.49697e-06 2.24072e-06 2.718 ||| 0-0 ||| 364 668016 +a ||| will allow us to draw on ||| 1 0.229811 1.49697e-06 1.67871e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| will allow us to draw ||| 0.5 0.229811 1.49697e-06 2.50891e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| will allow us to ||| 0.00331126 0.229811 1.49697e-06 2.11901e-09 2.718 ||| 0-3 ||| 302 668016 +a ||| will allow ||| 0.00122324 0.0561595 2.99394e-06 3.41671e-06 2.718 ||| 0-0 ||| 1635 668016 +a ||| will also , in the ||| 0.333333 0.0587624 1.49697e-06 1.92124e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| will also , in ||| 0.125 0.0587624 1.49697e-06 3.12947e-07 2.718 ||| 0-3 ||| 8 668016 +a ||| will also accept ||| 0.0833333 0.0561595 1.49697e-06 7.70045e-09 2.718 ||| 0-0 ||| 12 668016 +a ||| will also be strengthening the ||| 1 0.0561595 1.49697e-06 1.02842e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| will also be strengthening ||| 1 0.0561595 1.49697e-06 1.67517e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| will also be ||| 0.00277521 0.0561595 4.49091e-06 1.28859e-06 2.718 ||| 0-0 ||| 1081 668016 +a ||| will also contribute to ||| 0.0185185 0.229811 1.49697e-06 5.95167e-10 2.718 ||| 0-3 ||| 54 668016 +a ||| will also force European countries to reduce ||| 1 0.229811 1.49697e-06 1.2597e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| will also force European countries to ||| 1 0.229811 1.49697e-06 3.3063e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| will also have to be ||| 0.0227273 0.229811 1.49697e-06 3.3162e-09 2.718 ||| 0-3 ||| 44 668016 +a ||| will also have to ||| 0.00763359 0.229811 1.49697e-06 1.82984e-07 2.718 ||| 0-3 ||| 131 668016 +a ||| will also ||| 0.00676895 0.0561595 2.24546e-05 7.1103e-05 2.718 ||| 0-0 ||| 2216 668016 +a ||| will always ||| 0.0131579 0.0561595 2.99394e-06 2.4224e-06 2.718 ||| 0-0 ||| 152 668016 +a ||| will answer them by ||| 0.5 0.0561595 1.49697e-06 1.48556e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| will answer them ||| 0.25 0.0561595 1.49697e-06 2.82958e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| will answer ||| 0.0140845 0.0561595 1.49697e-06 1.05487e-06 2.718 ||| 0-0 ||| 71 668016 +a ||| will approach ||| 0.05 0.0561595 1.49697e-06 3.08715e-06 2.718 ||| 0-0 ||| 20 668016 +a ||| will arrest these ||| 1 0.0561595 1.49697e-06 2.00105e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| will arrest ||| 1 0.0561595 1.49697e-06 1.92947e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| will at ||| 0.0217391 0.204175 5.98788e-06 0.000294447 2.718 ||| 0-1 ||| 184 668016 +a ||| will avoid ||| 0.015873 0.0561595 1.49697e-06 4.97155e-07 2.718 ||| 0-0 ||| 63 668016 +a ||| will be EUR ||| 0.5 0.0561595 1.49697e-06 6.82505e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| will be a ||| 0.000966184 0.0561595 2.99394e-06 1.13136e-05 2.718 ||| 0-0 ||| 2070 668016 +a ||| will be able to do so ||| 0.0555556 0.229811 1.49697e-06 3.57531e-13 2.718 ||| 0-3 ||| 18 668016 +a ||| will be able to do this very ||| 1 0.229811 1.49697e-06 3.54151e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| will be able to do this ||| 0.2 0.229811 1.49697e-06 1.01782e-12 2.718 ||| 0-3 ||| 5 668016 +a ||| will be able to do ||| 0.0434783 0.229811 2.99394e-06 1.57523e-10 2.718 ||| 0-3 ||| 46 668016 +a ||| will be able to require television ||| 1 0.229811 1.49697e-06 1.45927e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| will be able to require ||| 1 0.229811 1.49697e-06 2.14598e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| will be able to ||| 0.00595829 0.229811 1.79636e-05 4.58544e-08 2.718 ||| 0-3 ||| 2014 668016 +a ||| will be able ||| 0.000547645 0.0561595 1.49697e-06 2.13098e-07 2.718 ||| 0-0 ||| 1826 668016 +a ||| will be added to ||| 0.047619 0.229811 1.49697e-06 3.91594e-09 2.718 ||| 0-3 ||| 21 668016 +a ||| will be affected ||| 0.00934579 0.0557198 1.49697e-06 5.39497e-08 2.718 ||| 0-2 ||| 107 668016 +a ||| will be allowed to be ||| 1 0.229811 1.49697e-06 1.61146e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| will be allowed to ||| 0.0285714 0.229811 1.49697e-06 8.89187e-09 2.718 ||| 0-3 ||| 35 668016 +a ||| will be apportioned to ||| 1 0.229811 1.49697e-06 6.04142e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| will be asked ||| 0.0232558 0.0895701 1.49697e-06 1.28799e-07 2.718 ||| 0-2 ||| 43 668016 +a ||| will be at a ||| 0.142857 0.204175 1.49697e-06 2.36533e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| will be at ||| 0.0150376 0.204175 2.99394e-06 5.33623e-06 2.718 ||| 0-2 ||| 133 668016 +a ||| will be attached to ||| 0.2 0.229811 1.49697e-06 1.7575e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| will be available at ||| 0.125 0.204175 1.49697e-06 1.69746e-09 2.718 ||| 0-3 ||| 8 668016 +a ||| will be available for ||| 0.037037 0.0683377 1.49697e-06 1.83775e-09 2.718 ||| 0-3 ||| 27 668016 +a ||| will be available to ||| 0.0322581 0.229811 1.49697e-06 1.74707e-08 2.718 ||| 0-3 ||| 31 668016 +a ||| will be back ||| 0.0588235 0.0536618 1.49697e-06 1.15347e-07 2.718 ||| 0-2 ||| 17 668016 +a ||| will be better off if there are ||| 1 0.0893962 1.49697e-06 7.91838e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| will be better off if there ||| 1 0.0893962 1.49697e-06 5.21883e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| will be better off if ||| 0.5 0.0893962 1.49697e-06 1.70255e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| will be better off ||| 0.142857 0.0893962 1.49697e-06 2.03752e-11 2.718 ||| 0-3 ||| 7 668016 +a ||| will be broadened to ||| 0.333333 0.229811 1.49697e-06 2.19688e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| will be brought ||| 0.015873 0.0561595 1.49697e-06 7.14665e-08 2.718 ||| 0-0 ||| 63 668016 +a ||| will be called upon to ||| 0.0454545 0.210186 1.49697e-06 1.88188e-11 2.718 ||| 0-3 0-4 ||| 22 668016 +a ||| will be committed by ||| 1 0.0337966 1.49697e-06 1.06808e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| will be covered ||| 0.0128205 0.0561595 1.49697e-06 1.8275e-08 2.718 ||| 0-0 ||| 78 668016 +a ||| will be debated at ||| 0.2 0.204175 1.49697e-06 4.42907e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| will be discussed in relation to Mr ||| 1 0.229811 1.49697e-06 9.80241e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| will be discussed in relation to ||| 1 0.229811 1.49697e-06 1.50159e-14 2.718 ||| 0-5 ||| 1 668016 +a ||| will be discussing ||| 0.0140845 0.0561595 1.49697e-06 9.00988e-09 2.718 ||| 0-0 ||| 71 668016 +a ||| will be endowed with ||| 0.333333 0.0561595 1.49697e-06 3.59066e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| will be endowed ||| 0.333333 0.0561595 1.49697e-06 5.61522e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| will be extended to ||| 0.0333333 0.229811 1.49697e-06 1.99367e-09 2.718 ||| 0-3 ||| 30 668016 +a ||| will be feeding ||| 0.25 0.117534 1.49697e-06 8.73292e-09 2.718 ||| 0-2 ||| 4 668016 +a ||| will be for ||| 0.0294118 0.0683377 2.99394e-06 5.77729e-06 2.718 ||| 0-2 ||| 68 668016 +a ||| will be given to ||| 0.0526316 0.229811 2.99394e-06 3.7693e-08 2.718 ||| 0-3 ||| 38 668016 +a ||| will be happy to keep you ||| 1 0.229811 1.49697e-06 1.74053e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| will be happy to keep ||| 0.5 0.229811 1.49697e-06 5.39081e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| will be happy to ||| 0.0175439 0.229811 1.49697e-06 3.46008e-09 2.718 ||| 0-3 ||| 57 668016 +a ||| will be held to ||| 0.142857 0.229811 1.49697e-06 1.40106e-08 2.718 ||| 0-3 ||| 7 668016 +a ||| will be impressed by a ||| 1 0.0561595 1.49697e-06 1.90072e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| will be impressed by ||| 0.5 0.0561595 1.49697e-06 4.28807e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| will be impressed ||| 0.5 0.0561595 1.49697e-06 8.1676e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| will be in danger of ||| 0.25 0.0188479 1.49697e-06 4.85394e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| will be in ||| 0.0122807 0.0587624 1.04788e-05 9.42002e-06 2.718 ||| 0-2 ||| 570 668016 +a ||| will be insufficient to carry out the ||| 1 0.229811 1.49697e-06 1.37456e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| will be insufficient to carry out ||| 1 0.229811 1.49697e-06 2.239e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| will be insufficient to carry ||| 1 0.229811 1.49697e-06 5.84535e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| will be insufficient to ||| 0.333333 0.229811 1.49697e-06 3.18547e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| will be invited ||| 0.0204082 0.245853 1.49697e-06 5.93901e-08 2.718 ||| 0-2 ||| 49 668016 +a ||| will be laid down in ||| 0.25 0.0587624 1.49697e-06 7.16797e-13 2.718 ||| 0-4 ||| 4 668016 +a ||| will be made available for ||| 0.111111 0.0683377 1.49697e-06 3.84973e-12 2.718 ||| 0-4 ||| 9 668016 +a ||| will be made ||| 0.004662 0.0561595 2.99394e-06 5.34671e-07 2.718 ||| 0-0 ||| 429 668016 +a ||| will be mainly ||| 0.166667 0.0561595 1.49697e-06 1.19451e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| will be motivated ||| 0.5 0.0561595 1.49697e-06 2.93523e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| will be necessary ||| 0.00462963 0.0561595 1.49697e-06 6.56726e-08 2.718 ||| 0-0 ||| 216 668016 +a ||| will be obliged to ||| 0.0144928 0.229811 1.49697e-06 2.09253e-09 2.718 ||| 0-3 ||| 69 668016 +a ||| will be of interest to ||| 0.2 0.229811 1.49697e-06 3.35303e-10 2.718 ||| 0-4 ||| 5 668016 +a ||| will be of ||| 0.00319489 0.0561595 1.49697e-06 1.38757e-05 2.718 ||| 0-0 ||| 313 668016 +a ||| will be on ||| 0.0149254 0.0782999 4.49091e-06 5.94773e-06 2.718 ||| 0-2 ||| 201 668016 +a ||| will be one of ||| 0.00458716 0.0188479 1.49697e-06 1.93289e-08 2.718 ||| 0-3 ||| 218 668016 +a ||| will be only ||| 0.0555556 0.0561595 1.49697e-06 2.84105e-07 2.718 ||| 0-0 ||| 18 668016 +a ||| will be opened to ||| 1 0.229811 1.49697e-06 1.42248e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| will be passed on to ||| 0.0454545 0.0782999 1.49697e-06 3.78409e-11 2.718 ||| 0-3 ||| 22 668016 +a ||| will be passed on ||| 0.0416667 0.0782999 1.49697e-06 4.25857e-10 2.718 ||| 0-3 ||| 24 668016 +a ||| will be placed at the feet of ||| 1 0.0188479 1.49697e-06 2.79114e-18 2.718 ||| 0-6 ||| 1 668016 +a ||| will be placed on ||| 0.0769231 0.0782999 1.49697e-06 7.44655e-10 2.718 ||| 0-3 ||| 13 668016 +a ||| will be placed under ||| 0.125 0.0473005 1.49697e-06 4.5326e-11 2.718 ||| 0-0 0-3 ||| 8 668016 +a ||| will be pointed at ||| 1 0.204175 1.49697e-06 2.46e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| will be possible for ||| 0.0952381 0.0683377 2.99394e-06 4.63396e-09 2.718 ||| 0-3 ||| 21 668016 +a ||| will be possible to bring ||| 0.5 0.229811 1.49697e-06 1.37137e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| will be possible to ||| 0.00847458 0.229811 1.49697e-06 4.40529e-08 2.718 ||| 0-3 ||| 118 668016 +a ||| will be possible ||| 0.00341297 0.0561595 1.49697e-06 2.04726e-07 2.718 ||| 0-0 ||| 293 668016 +a ||| will be pursued by ||| 0.2 0.0337966 1.49697e-06 4.73411e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| will be put off to a ||| 1 0.229811 1.49697e-06 1.09248e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| will be put off to ||| 1 0.229811 1.49697e-06 2.46467e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| will be put out onto the street ||| 1 0.0561595 1.49697e-06 1.87153e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| will be put out onto the ||| 1 0.0561595 1.49697e-06 1.33681e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| will be put out onto ||| 1 0.0561595 1.49697e-06 2.1775e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| will be put out ||| 1 0.0561595 1.49697e-06 1.07797e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| will be put ||| 0.00389105 0.0561595 1.49697e-06 2.81425e-07 2.718 ||| 0-0 ||| 257 668016 +a ||| will be reached ||| 0.0128205 0.14487 1.49697e-06 1.92767e-07 2.718 ||| 0-2 ||| 78 668016 +a ||| will be regulated ||| 0.0714286 0.0561595 1.49697e-06 2.5779e-09 2.718 ||| 0-0 ||| 14 668016 +a ||| will be replacing ||| 1 0.0229555 1.49697e-06 2.28906e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| will be required for ||| 0.111111 0.0683377 1.49697e-06 9.16855e-10 2.718 ||| 0-3 ||| 9 668016 +a ||| will be required to ||| 0.0140845 0.229811 1.49697e-06 8.71612e-09 2.718 ||| 0-3 ||| 71 668016 +a ||| will be sorely missed by ||| 0.25 0.0337966 1.49697e-06 2.66761e-17 2.718 ||| 0-4 ||| 4 668016 +a ||| will be stopped to ||| 1 0.229811 1.49697e-06 1.18631e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| will be subject to the revision ||| 0.333333 0.229811 1.49697e-06 2.09309e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| will be subject to the ||| 0.03125 0.229811 1.49697e-06 1.82008e-09 2.718 ||| 0-3 ||| 32 668016 +a ||| will be subject to ||| 0.00729927 0.229811 1.49697e-06 2.96469e-08 2.718 ||| 0-3 ||| 137 668016 +a ||| will be taken out of ||| 0.2 0.0188479 1.49697e-06 1.61913e-11 2.718 ||| 0-4 ||| 5 668016 +a ||| will be taken regarding ||| 0.25 0.186429 1.49697e-06 4.80933e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| will be taken ||| 0.000923361 0.0561595 1.49697e-06 2.32649e-07 2.718 ||| 0-0 ||| 1083 668016 +a ||| will be to set ||| 0.5 0.229811 1.49697e-06 3.20964e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| will be to ||| 0.0201005 0.229811 1.19758e-05 5.4922e-05 2.718 ||| 0-2 ||| 398 668016 +a ||| will be true ||| 0.0526316 0.0561595 1.49697e-06 4.12464e-08 2.718 ||| 0-0 ||| 19 668016 +a ||| will be up to ||| 0.09375 0.229811 4.49091e-06 1.87311e-07 2.718 ||| 0-3 ||| 32 668016 +a ||| will be used to ||| 0.00826446 0.229811 1.49697e-06 2.35615e-08 2.718 ||| 0-3 ||| 121 668016 +a ||| will be very firm : ||| 1 0.0007376 1.49697e-06 9.32981e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| will be ||| 0.00400923 0.0561595 0.0001976 0.000255237 2.718 ||| 0-0 ||| 32924 668016 +a ||| will bear fruit ||| 0.0243902 0.0561595 1.49697e-06 2.88841e-11 2.718 ||| 0-0 ||| 41 668016 +a ||| will bear ||| 0.00606061 0.0561595 1.49697e-06 2.10833e-06 2.718 ||| 0-0 ||| 165 668016 +a ||| will become a ||| 0.00833333 0.0561595 2.99394e-06 1.78354e-07 2.718 ||| 0-0 ||| 240 668016 +a ||| will become much more secure as the ||| 1 0.0561595 1.49697e-06 2.91205e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| will become much more secure as ||| 1 0.0561595 1.49697e-06 4.74338e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| will become much more secure ||| 1 0.0561595 1.49697e-06 4.64837e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| will become much more ||| 0.166667 0.0561595 1.49697e-06 9.22295e-12 2.718 ||| 0-0 ||| 6 668016 +a ||| will become much ||| 0.0714286 0.0561595 1.49697e-06 4.0386e-09 2.718 ||| 0-0 ||| 14 668016 +a ||| will become ||| 0.00495868 0.0561595 8.98182e-06 4.02371e-06 2.718 ||| 0-0 ||| 1210 668016 +a ||| will benefit from ||| 0.00485437 0.0435582 1.49697e-06 8.20205e-09 2.718 ||| 0-2 ||| 206 668016 +a ||| will benefit ||| 0.00340136 0.0326298 2.99394e-06 2.39292e-06 2.718 ||| 0-1 ||| 588 668016 +a ||| will bring about ||| 0.00724638 0.0526361 1.49697e-06 1.35714e-08 2.718 ||| 0-2 ||| 138 668016 +a ||| will bring these prices ||| 1 0.0561595 1.49697e-06 1.44137e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| will bring these ||| 0.5 0.0561595 1.49697e-06 4.54691e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| will bring to pass ||| 1 0.229811 1.49697e-06 5.39627e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| will bring to ||| 0.0645161 0.229811 2.99394e-06 9.43404e-07 2.718 ||| 0-2 ||| 31 668016 +a ||| will bring with ||| 0.125 0.0571592 1.49697e-06 4.49619e-08 2.718 ||| 0-2 ||| 8 668016 +a ||| will bring ||| 0.00252525 0.0561595 2.99394e-06 4.38426e-06 2.718 ||| 0-0 ||| 792 668016 +a ||| will care for ||| 0.333333 0.0683377 1.49697e-06 3.23565e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| will cause ||| 0.00438596 0.0561595 1.49697e-06 2.54492e-06 2.718 ||| 0-0 ||| 228 668016 +a ||| will certainly be the ||| 0.125 0.0561595 1.49697e-06 3.92521e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| will certainly be ||| 0.0041841 0.0561595 1.49697e-06 6.3937e-08 2.718 ||| 0-0 ||| 239 668016 +a ||| will certainly show the same commitment in ||| 1 0.0587624 1.49697e-06 4.80608e-20 2.718 ||| 0-6 ||| 1 668016 +a ||| will certainly ||| 0.00469484 0.0561595 4.49091e-06 3.52797e-06 2.718 ||| 0-0 ||| 639 668016 +a ||| will cite ||| 0.25 0.0283688 1.49697e-06 9.51632e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| will come across on this ||| 1 0.0782999 1.49697e-06 1.84781e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| will come across on ||| 1 0.0782999 1.49697e-06 2.85977e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| will come as ||| 0.0833333 0.0243476 2.99394e-06 6.44549e-08 2.718 ||| 0-2 ||| 24 668016 +a ||| will come out ||| 0.0294118 0.0561595 1.49697e-06 4.58165e-08 2.718 ||| 0-0 ||| 34 668016 +a ||| will come to the fore ||| 0.5 0.229811 1.49697e-06 1.81714e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| will come to the ||| 0.0833333 0.229811 1.49697e-06 1.58012e-07 2.718 ||| 0-2 ||| 12 668016 +a ||| will come to ||| 0.00526316 0.229811 1.49697e-06 2.57383e-06 2.718 ||| 0-2 ||| 190 668016 +a ||| will come together ||| 0.125 0.0561595 1.49697e-06 7.18395e-09 2.718 ||| 0-0 ||| 8 668016 +a ||| will come ||| 0.00387097 0.0561595 4.49091e-06 1.19613e-05 2.718 ||| 0-0 ||| 775 668016 +a ||| will concern ||| 0.0384615 0.0561595 1.49697e-06 1.88017e-06 2.718 ||| 0-0 ||| 26 668016 +a ||| will consider ||| 0.003861 0.0561595 1.49697e-06 2.24072e-06 2.718 ||| 0-0 ||| 259 668016 +a ||| will continue to be maintained ||| 1 0.229811 1.49697e-06 4.48626e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| will continue to be postponed , by ||| 1 0.0337966 1.49697e-06 1.92947e-17 2.718 ||| 0-6 ||| 1 668016 +a ||| will continue to be ||| 0.0037594 0.229811 2.99394e-06 1.27089e-08 2.718 ||| 0-2 ||| 532 668016 +a ||| will continue to do so ||| 0.00628931 0.229811 1.49697e-06 5.46783e-12 2.718 ||| 0-2 ||| 159 668016 +a ||| will continue to do ||| 0.0117647 0.229811 1.49697e-06 2.40905e-09 2.718 ||| 0-2 ||| 85 668016 +a ||| will continue to say it to ||| 1 0.229811 1.49697e-06 1.05915e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| will continue to ||| 0.00229095 0.229811 5.98788e-06 7.01264e-07 2.718 ||| 0-2 ||| 1746 668016 +a ||| will contribute ||| 0.00133869 0.0561595 1.49697e-06 5.47856e-07 2.718 ||| 0-0 ||| 747 668016 +a ||| will cover ||| 0.00520833 0.0561595 1.49697e-06 1.09994e-06 2.718 ||| 0-0 ||| 192 668016 +a ||| will cross the ||| 0.166667 0.0561595 1.49697e-06 1.12401e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| will cross ||| 0.1 0.0561595 1.49697e-06 1.83088e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| will cut ||| 0.0357143 0.0561595 1.49697e-06 1.06473e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| will deal with ||| 0.0168539 0.0571592 4.49091e-06 6.13261e-08 2.718 ||| 0-2 ||| 178 668016 +a ||| will decide on ||| 0.0163934 0.0782999 1.49697e-06 2.10369e-08 2.718 ||| 0-2 ||| 61 668016 +a ||| will defend ||| 0.0126582 0.0561595 1.49697e-06 2.94349e-07 2.718 ||| 0-0 ||| 79 668016 +a ||| will depend on ||| 0.00265957 0.0782999 1.49697e-06 6.03867e-09 2.718 ||| 0-2 ||| 376 668016 +a ||| will die in harness ||| 0.5 0.0561595 1.49697e-06 6.24011e-15 2.718 ||| 0-0 ||| 2 668016 +a ||| will die in ||| 0.166667 0.0561595 1.49697e-06 3.46673e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| will die ||| 0.0136986 0.0561595 1.49697e-06 1.61963e-07 2.718 ||| 0-0 ||| 73 668016 +a ||| will discriminate against ||| 0.142857 0.0298013 1.49697e-06 1.69262e-11 2.718 ||| 0-1 ||| 7 668016 +a ||| will discriminate ||| 0.333333 0.0298013 1.49697e-06 7.09398e-08 2.718 ||| 0-1 ||| 3 668016 +a ||| will dispute ||| 0.2 0.0561595 1.49697e-06 2.38015e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| will do away with ||| 0.0833333 0.0571592 1.49697e-06 1.57832e-10 2.718 ||| 0-3 ||| 12 668016 +a ||| will do for ||| 0.111111 0.0683377 1.49697e-06 1.09512e-06 2.718 ||| 0-2 ||| 9 668016 +a ||| will do is to ||| 0.333333 0.229811 1.49697e-06 3.26285e-07 2.718 ||| 0-3 ||| 3 668016 +a ||| will enable us to ||| 0.00609756 0.229811 4.49091e-06 8.61231e-10 2.718 ||| 0-3 ||| 492 668016 +a ||| will enable ||| 0.0014652 0.0561595 2.99394e-06 1.38865e-06 2.718 ||| 0-0 ||| 1365 668016 +a ||| will end up in ||| 0.04 0.0587624 1.49697e-06 7.71314e-10 2.718 ||| 0-3 ||| 25 668016 +a ||| will end ||| 0.00420168 0.0561595 1.49697e-06 6.12782e-06 2.718 ||| 0-0 ||| 238 668016 +a ||| will end – to ||| 0.5 0.229811 1.49697e-06 5.18203e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| will ensure that ||| 0.00147059 0.0561595 1.49697e-06 1.06231e-07 2.718 ||| 0-0 ||| 680 668016 +a ||| will ensure ||| 0.0016142 0.0561595 2.99394e-06 6.31513e-06 2.718 ||| 0-0 ||| 1239 668016 +a ||| will eventually apply to ||| 0.5 0.229811 1.49697e-06 1.20798e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| will eventually be paid out in ||| 1 0.0587624 1.49697e-06 1.34531e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| will excuse ||| 0.0588235 0.0561595 1.49697e-06 2.5914e-07 2.718 ||| 0-0 ||| 17 668016 +a ||| will expire in ||| 0.111111 0.0587624 1.49697e-06 2.07914e-09 2.718 ||| 0-2 ||| 9 668016 +a ||| will facilitate ||| 0.00269542 0.0561595 1.49697e-06 3.39417e-07 2.718 ||| 0-0 ||| 371 668016 +a ||| will fall hardest on ||| 0.5 0.0782999 1.49697e-06 9.10821e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| will fall to ||| 0.0285714 0.229811 1.49697e-06 2.90022e-07 2.718 ||| 0-2 ||| 35 668016 +a ||| will find them fighting for a social ||| 1 0.0683377 1.49697e-06 3.55839e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| will find them fighting for a ||| 1 0.0683377 1.49697e-06 3.44471e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| will find them fighting for ||| 1 0.0683377 1.49697e-06 7.77134e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| will find ||| 0.00214133 0.0561595 1.49697e-06 4.68846e-06 2.718 ||| 0-0 ||| 467 668016 +a ||| will follow ||| 0.00406504 0.0561595 2.99394e-06 1.39429e-06 2.718 ||| 0-0 ||| 492 668016 +a ||| will forgive me for saying so , ||| 1 0.0683377 1.49697e-06 6.26717e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| will forgive me for saying so ||| 1 0.0683377 1.49697e-06 5.25528e-19 2.718 ||| 0-3 ||| 1 668016 +a ||| will forgive me for saying ||| 0.333333 0.0683377 1.49697e-06 2.31541e-16 2.718 ||| 0-3 ||| 3 668016 +a ||| will forgive me for ||| 0.0666667 0.0683377 1.49697e-06 1.30519e-12 2.718 ||| 0-3 ||| 15 668016 +a ||| will fully ||| 0.0357143 0.0561595 1.49697e-06 1.59709e-06 2.718 ||| 0-0 ||| 28 668016 +a ||| will get our ||| 0.166667 0.0561595 1.49697e-06 8.49351e-09 2.718 ||| 0-0 ||| 6 668016 +a ||| will get ||| 0.00273973 0.0561595 1.49697e-06 6.15739e-06 2.718 ||| 0-0 ||| 365 668016 +a ||| will give more power to ||| 1 0.229811 1.49697e-06 6.26167e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| will give priority to ||| 0.05 0.229811 1.49697e-06 1.02477e-10 2.718 ||| 0-3 ||| 20 668016 +a ||| will give ||| 0.004 0.0241455 7.48485e-06 4.86457e-06 2.718 ||| 0-1 ||| 1250 668016 +a ||| will go on applying pressure until ||| 1 0.0782999 1.49697e-06 1.85554e-20 2.718 ||| 0-2 ||| 1 668016 +a ||| will go on applying pressure ||| 1 0.0782999 1.49697e-06 3.81798e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| will go on applying ||| 1 0.0782999 1.49697e-06 6.3527e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| will go on ||| 0.0185185 0.0782999 1.49697e-06 1.91925e-07 2.718 ||| 0-2 ||| 54 668016 +a ||| will go through ||| 0.0357143 0.230708 1.49697e-06 4.02163e-08 2.718 ||| 0-2 ||| 28 668016 +a ||| will go to ||| 0.0120482 0.229811 1.49697e-06 1.77225e-06 2.718 ||| 0-2 ||| 83 668016 +a ||| will go towards ||| 0.222222 0.155507 2.99394e-06 1.70627e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| will go ||| 0.00196078 0.0561595 1.49697e-06 8.23615e-06 2.718 ||| 0-0 ||| 510 668016 +a ||| will gradually lead ||| 1 0.11393 1.49697e-06 4.0285e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| will gradually ||| 0.0434783 0.11393 1.49697e-06 2.09273e-06 2.718 ||| 0-1 ||| 23 668016 +a ||| will guard ||| 0.2 0.0561595 1.49697e-06 1.36612e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| will have a fundamental ||| 0.5 0.0561595 1.49697e-06 3.68082e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| will have a ||| 0.000959693 0.0561595 1.49697e-06 7.46616e-06 2.718 ||| 0-0 ||| 1042 668016 +a ||| will have an immediate ||| 1 0.0561595 1.49697e-06 1.93902e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| will have an ||| 0.00552486 0.0561595 1.49697e-06 7.48657e-07 2.718 ||| 0-0 ||| 181 668016 +a ||| will have been duped , ||| 0.5 0.0561595 1.49697e-06 9.39046e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| will have been duped ||| 0.5 0.0561595 1.49697e-06 7.87429e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| will have been ||| 0.00480769 0.0561595 1.49697e-06 5.62449e-07 2.718 ||| 0-0 ||| 208 668016 +a ||| will have different ||| 0.25 0.0561595 1.49697e-06 3.70901e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| will have had ||| 0.04 0.0561595 1.49697e-06 1.69061e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| will have helped to shape ||| 1 0.229811 1.49697e-06 4.34173e-14 2.718 ||| 0-3 ||| 1 668016 +a ||| will have helped to ||| 0.25 0.229811 1.49697e-06 7.17642e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| will have in ||| 0.030303 0.0587624 1.49697e-06 6.21653e-06 2.718 ||| 0-2 ||| 33 668016 +a ||| will have on ||| 0.00746269 0.0782999 1.49697e-06 3.92507e-06 2.718 ||| 0-2 ||| 134 668016 +a ||| will have the possibility to ||| 0.2 0.229811 1.49697e-06 1.9047e-10 2.718 ||| 0-4 ||| 5 668016 +a ||| will have to be adopted ||| 0.0769231 0.229811 1.49697e-06 1.33999e-10 2.718 ||| 0-2 ||| 13 668016 +a ||| will have to be drafted ||| 0.5 0.229811 1.49697e-06 1.84576e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| will have to be increased to ||| 1 0.229811 1.49697e-06 2.90084e-12 2.718 ||| 0-5 ||| 1 668016 +a ||| will have to be met ||| 0.0769231 0.229811 1.49697e-06 5.03808e-11 2.718 ||| 0-2 ||| 13 668016 +a ||| will have to be ||| 0.00680272 0.229811 1.04788e-05 6.56856e-07 2.718 ||| 0-2 ||| 1029 668016 +a ||| will have to find ||| 0.037037 0.229811 1.49697e-06 1.20658e-08 2.718 ||| 0-2 ||| 27 668016 +a ||| will have to move ||| 0.2 0.229811 1.49697e-06 5.54179e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| will have to respect ||| 0.142857 0.229811 1.49697e-06 1.56794e-08 2.718 ||| 0-2 ||| 7 668016 +a ||| will have to ||| 0.00935639 0.229811 4.94e-05 3.62445e-05 2.718 ||| 0-2 ||| 3527 668016 +a ||| will have ||| 0.00344998 0.0561595 4.19152e-05 0.000168438 2.718 ||| 0-0 ||| 8116 668016 +a ||| will help to ||| 0.00136799 0.229811 1.49697e-06 5.77922e-07 2.718 ||| 0-2 ||| 731 668016 +a ||| will help us improve ||| 0.5 0.259976 1.49697e-06 7.13407e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| will help us to ||| 0.00680272 0.229811 1.49697e-06 1.66569e-09 2.718 ||| 0-3 ||| 147 668016 +a ||| will help us ||| 0.00600601 0.259976 2.99394e-06 1.64002e-07 2.718 ||| 0-1 ||| 333 668016 +a ||| will help ||| 0.00394218 0.259976 1.34727e-05 5.69015e-05 2.718 ||| 0-1 ||| 2283 668016 +a ||| will hold up ||| 0.333333 0.0561595 1.49697e-06 8.36725e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| will hold ||| 0.00735294 0.0561595 1.49697e-06 2.45338e-06 2.718 ||| 0-0 ||| 136 668016 +a ||| will in fact be ||| 0.0263158 0.0587624 1.49697e-06 2.75941e-08 2.718 ||| 0-1 ||| 38 668016 +a ||| will in fact ||| 0.0131579 0.0587624 1.49697e-06 1.52261e-06 2.718 ||| 0-1 ||| 76 668016 +a ||| will in the ||| 0.0481928 0.0587624 5.98788e-06 3.19106e-05 2.718 ||| 0-1 ||| 83 668016 +a ||| will in ||| 0.035316 0.0587624 2.84424e-05 0.000519786 2.718 ||| 0-1 ||| 538 668016 +a ||| will include ||| 0.0028169 0.0281253 1.49697e-06 2.28997e-06 2.718 ||| 0-1 ||| 355 668016 +a ||| will indeed be so ||| 1 0.0561595 1.49697e-06 4.39061e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| will indeed be ||| 0.0208333 0.0561595 1.49697e-06 1.93444e-07 2.718 ||| 0-0 ||| 48 668016 +a ||| will indeed ||| 0.0217391 0.0561595 2.99394e-06 1.0674e-05 2.718 ||| 0-0 ||| 92 668016 +a ||| will inevitably ||| 0.0102041 0.0561595 1.49697e-06 1.36612e-07 2.718 ||| 0-0 ||| 98 668016 +a ||| will involve ||| 0.00396825 0.170498 1.49697e-06 5.91396e-06 2.718 ||| 0-1 ||| 252 668016 +a ||| will it follow ||| 1 0.0561595 1.49697e-06 2.47949e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| will it help ||| 0.5 0.259976 1.49697e-06 1.01189e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| will it satisfy ||| 1 0.116324 1.49697e-06 1.67077e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| will it take to induce ||| 1 0.229811 1.49697e-06 4.07805e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| will it take to ||| 0.0384615 0.229811 1.49697e-06 8.67669e-08 2.718 ||| 0-3 ||| 26 668016 +a ||| will it ||| 0.0022831 0.0561595 1.49697e-06 0.000250453 2.718 ||| 0-0 ||| 438 668016 +a ||| will its progress towards ||| 1 0.155507 1.49697e-06 5.47457e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| will keep before ||| 1 0.0203282 1.49697e-06 7.14769e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| will keep myself free in ||| 1 0.0587624 1.49697e-06 1.46832e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| will keep our eyes on ||| 1 0.0782999 1.49697e-06 4.11197e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| will kill ||| 0.0909091 0.191759 1.49697e-06 9.55092e-07 2.718 ||| 0-1 ||| 11 668016 +a ||| will lead to ||| 0.00381316 0.229811 5.98788e-06 5.83377e-07 2.718 ||| 0-2 ||| 1049 668016 +a ||| will love this ||| 0.25 0.0561595 1.49697e-06 6.91603e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| will love ||| 0.166667 0.0561595 1.49697e-06 1.07036e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| will make a ||| 0.00342466 0.0561595 1.49697e-06 1.08486e-06 2.718 ||| 0-0 ||| 292 668016 +a ||| will make even lunch difficult ||| 1 0.0495435 1.49697e-06 9.10975e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| will make even lunch ||| 1 0.0495435 1.49697e-06 7.33474e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| will make even ||| 0.333333 0.0495435 1.49697e-06 2.9339e-08 2.718 ||| 0-2 ||| 3 668016 +a ||| will make the ||| 0.00452489 0.0561595 1.49697e-06 1.50254e-06 2.718 ||| 0-0 ||| 221 668016 +a ||| will make to ||| 0.0714286 0.229811 1.49697e-06 5.26645e-06 2.718 ||| 0-2 ||| 14 668016 +a ||| will make ||| 0.00407213 0.0561595 1.04788e-05 2.44747e-05 2.718 ||| 0-0 ||| 1719 668016 +a ||| will manage to survive ||| 0.5 0.229811 1.49697e-06 7.83937e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| will manage to ||| 0.015625 0.229811 1.49697e-06 1.35162e-07 2.718 ||| 0-2 ||| 64 668016 +a ||| will mean that ||| 0.00310559 0.0561595 1.49697e-06 6.10518e-08 2.718 ||| 0-0 ||| 322 668016 +a ||| will mean was learned ||| 1 0.0561595 1.49697e-06 1.79659e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| will mean was ||| 1 0.0561595 1.49697e-06 1.13708e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| will mean ||| 0.00382166 0.0561595 4.49091e-06 3.62937e-06 2.718 ||| 0-0 ||| 785 668016 +a ||| will meet its ||| 0.333333 0.0482171 1.49697e-06 4.83771e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| will meet ||| 0.00320513 0.0482171 1.49697e-06 3.3956e-06 2.718 ||| 0-1 ||| 312 668016 +a ||| will migrate to ||| 0.125 0.229811 1.49697e-06 2.12137e-09 2.718 ||| 0-2 ||| 8 668016 +a ||| will miss you ||| 0.0833333 0.0561595 1.49697e-06 3.77418e-10 2.718 ||| 0-0 ||| 12 668016 +a ||| will miss ||| 0.04 0.0561595 1.49697e-06 1.16895e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| will need to be ||| 0.00647249 0.229811 2.99394e-06 5.0358e-08 2.718 ||| 0-2 ||| 309 668016 +a ||| will need to ||| 0.0101892 0.229811 1.04788e-05 2.77869e-06 2.718 ||| 0-2 ||| 687 668016 +a ||| will never ||| 0.00588235 0.0561595 2.99394e-06 8.11221e-07 2.718 ||| 0-0 ||| 340 668016 +a ||| will no longer be ||| 0.00392157 0.0561595 1.49697e-06 3.72519e-11 2.718 ||| 0-0 ||| 255 668016 +a ||| will no longer ||| 0.00259067 0.0561595 1.49697e-06 2.05552e-09 2.718 ||| 0-0 ||| 386 668016 +a ||| will no ||| 0.0060241 0.0561595 2.99394e-06 1.09628e-05 2.718 ||| 0-0 ||| 332 668016 +a ||| will not be affected in any way ||| 0.333333 0.0587624 1.49697e-06 6.982e-18 2.718 ||| 0-4 ||| 3 668016 +a ||| will not be affected in any ||| 1 0.0587624 1.49697e-06 3.23901e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| will not be affected in ||| 0.25 0.0587624 1.49697e-06 2.14192e-12 2.718 ||| 0-4 ||| 4 668016 +a ||| will not be ||| 0.000304229 0.0561595 1.49697e-06 8.71406e-07 2.718 ||| 0-0 ||| 3287 668016 +a ||| will not let ||| 0.133333 0.0561595 2.99394e-06 1.96372e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| will not name them ||| 1 0.0561595 1.49697e-06 1.12727e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| will not name ||| 1 0.0561595 1.49697e-06 4.20247e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| will not take as long as ||| 1 0.0243476 1.49697e-06 1.44008e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| will not take as long ||| 1 0.0243476 1.49697e-06 1.41123e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| will not take as ||| 0.333333 0.0243476 1.49697e-06 4.17154e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| will not use ||| 0.0666667 0.0561595 1.49697e-06 2.3378e-08 2.718 ||| 0-0 ||| 15 668016 +a ||| will not ||| 0.00123001 0.0561595 1.19758e-05 4.80832e-05 2.718 ||| 0-0 ||| 6504 668016 +a ||| will now pass through ||| 1 0.230708 1.49697e-06 8.10283e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| will now ||| 0.014 0.0561595 1.04788e-05 2.9011e-05 2.718 ||| 0-0 ||| 500 668016 +a ||| will of the ||| 0.0019685 0.0188479 1.49697e-06 1.57095e-05 2.718 ||| 0-1 ||| 508 668016 +a ||| will of ||| 0.00143266 0.0188479 1.49697e-06 0.00025589 2.718 ||| 0-1 ||| 698 668016 +a ||| will on ||| 0.0263158 0.0782999 2.99394e-06 0.000328188 2.718 ||| 0-1 ||| 76 668016 +a ||| will once again ||| 0.010101 0.0561595 1.49697e-06 3.33277e-09 2.718 ||| 0-0 ||| 99 668016 +a ||| will once ||| 0.0588235 0.0561595 1.49697e-06 5.76305e-06 2.718 ||| 0-0 ||| 17 668016 +a ||| will only confuse ||| 1 0.0561595 1.49697e-06 4.5462e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| will only encourage them to carry ||| 1 0.229811 1.49697e-06 6.39253e-17 2.718 ||| 0-4 ||| 1 668016 +a ||| will only encourage them to ||| 1 0.229811 1.49697e-06 3.48367e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| will only happen if we ||| 0.166667 0.0561595 1.49697e-06 1.61645e-14 2.718 ||| 0-0 ||| 6 668016 +a ||| will only happen if ||| 0.0454545 0.0561595 1.49697e-06 1.4239e-12 2.718 ||| 0-0 ||| 22 668016 +a ||| will only happen ||| 0.0344828 0.0561595 1.49697e-06 1.70404e-09 2.718 ||| 0-0 ||| 29 668016 +a ||| will only remain in place ||| 1 0.0587624 1.49697e-06 1.05622e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| will only remain in ||| 1 0.0587624 1.49697e-06 7.0181e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| will only ||| 0.00332226 0.0561595 4.49091e-06 1.56766e-05 2.718 ||| 0-0 ||| 903 668016 +a ||| will oppose ||| 0.0208333 0.339711 1.49697e-06 8.55171e-06 2.718 ||| 0-1 ||| 48 668016 +a ||| will pass into ||| 0.0526316 0.107578 1.49697e-06 3.00586e-09 2.718 ||| 0-2 ||| 19 668016 +a ||| will pay ||| 0.00888889 0.0561595 2.99394e-06 2.01679e-06 2.718 ||| 0-0 ||| 225 668016 +a ||| will permanently shake ||| 0.5 0.0561595 1.49697e-06 5.29547e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| will permanently ||| 0.125 0.0561595 1.49697e-06 1.32387e-07 2.718 ||| 0-0 ||| 8 668016 +a ||| will prevent us from ||| 0.0833333 0.0435582 1.49697e-06 9.17237e-12 2.718 ||| 0-3 ||| 12 668016 +a ||| will probably ||| 0.00232019 0.0561595 1.49697e-06 7.8587e-07 2.718 ||| 0-0 ||| 431 668016 +a ||| will produce ||| 0.00374532 0.0561595 1.49697e-06 1.24641e-06 2.718 ||| 0-0 ||| 267 668016 +a ||| will promote ||| 0.00362319 0.0561595 1.49697e-06 9.02765e-07 2.718 ||| 0-0 ||| 276 668016 +a ||| will protect ||| 0.00757576 0.0026951 1.49697e-06 1.66103e-07 2.718 ||| 0-1 ||| 132 668016 +a ||| will prove to ||| 0.0153846 0.229811 1.49697e-06 1.60315e-07 2.718 ||| 0-2 ||| 65 668016 +a ||| will prove ||| 0.00367647 0.0561595 1.49697e-06 7.45028e-07 2.718 ||| 0-0 ||| 272 668016 +a ||| will provide a ||| 0.00393701 0.0561595 1.49697e-06 1.84659e-07 2.718 ||| 0-0 ||| 254 668016 +a ||| will provide more funds for ||| 1 0.0683377 1.49697e-06 1.64308e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| will provide ||| 0.00369822 0.0561595 7.48485e-06 4.16596e-06 2.718 ||| 0-0 ||| 1352 668016 +a ||| will put a ||| 0.030303 0.0015876 1.49697e-06 1.57607e-08 2.718 ||| 0-1 ||| 33 668016 +a ||| will put this right ||| 1 0.0561595 1.49697e-06 6.47074e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| will put this ||| 0.0625 0.0561595 1.49697e-06 1.00337e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| will put ||| 0.00934579 0.0561595 4.49091e-06 1.55287e-05 2.718 ||| 0-0 ||| 321 668016 +a ||| will raise ||| 0.0108696 0.0561595 1.49697e-06 9.28116e-07 2.718 ||| 0-0 ||| 92 668016 +a ||| will rally ||| 0.25 0.0561595 1.49697e-06 3.09841e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| will re-state ||| 0.25 0.0561595 1.49697e-06 5.63348e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| will really ||| 0.0140845 0.0561595 1.49697e-06 6.82214e-06 2.718 ||| 0-0 ||| 71 668016 +a ||| will reassure them ||| 0.5 0.284916 1.49697e-06 6.48143e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| will reassure ||| 0.166667 0.284916 2.99394e-06 2.41628e-06 2.718 ||| 0-1 ||| 12 668016 +a ||| will receive ||| 0.00413223 0.0561595 2.99394e-06 1.414e-06 2.718 ||| 0-0 ||| 484 668016 +a ||| will refer ||| 0.0128205 0.0561595 1.49697e-06 1.09994e-06 2.718 ||| 0-0 ||| 78 668016 +a ||| will remain ||| 0.0010101 0.0561595 1.49697e-06 1.70835e-06 2.718 ||| 0-0 ||| 990 668016 +a ||| will require greater involvement of ||| 0.5 0.0188479 1.49697e-06 4.7158e-17 2.718 ||| 0-4 ||| 2 668016 +a ||| will require some ||| 0.0666667 0.0561595 1.49697e-06 7.17976e-10 2.718 ||| 0-0 ||| 15 668016 +a ||| will require ||| 0.00128535 0.0561595 1.49697e-06 6.59117e-07 2.718 ||| 0-0 ||| 778 668016 +a ||| will respond to ||| 0.0147059 0.229811 1.49697e-06 8.6067e-08 2.718 ||| 0-2 ||| 68 668016 +a ||| will result in ||| 0.00338409 0.0587624 2.99394e-06 2.73667e-07 2.718 ||| 0-2 ||| 591 668016 +a ||| will result ||| 0.00167504 0.0561595 1.49697e-06 7.41507e-06 2.718 ||| 0-0 ||| 597 668016 +a ||| will revert back ||| 0.25 0.0536618 1.49697e-06 1.14564e-11 2.718 ||| 0-2 ||| 4 668016 +a ||| will rush in ||| 1 0.0587624 1.49697e-06 3.01476e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| will say ||| 0.00344828 0.0561595 1.49697e-06 1.34612e-05 2.718 ||| 0-0 ||| 290 668016 +a ||| will see ||| 0.00149254 0.0561595 1.49697e-06 9.92338e-06 2.718 ||| 0-0 ||| 670 668016 +a ||| will seek to participate ||| 0.25 0.229811 1.49697e-06 5.07598e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| will seek to ||| 0.027027 0.229811 2.99394e-06 2.10622e-07 2.718 ||| 0-2 ||| 74 668016 +a ||| will send ||| 0.00510204 0.0561595 1.49697e-06 9.0699e-07 2.718 ||| 0-0 ||| 196 668016 +a ||| will serve as an encouragement to ||| 0.5 0.229811 1.49697e-06 8.83756e-17 2.718 ||| 0-5 ||| 2 668016 +a ||| will serve to offer the ||| 0.333333 0.229811 1.49697e-06 1.45583e-12 2.718 ||| 0-2 ||| 3 668016 +a ||| will serve to offer ||| 0.333333 0.229811 1.49697e-06 2.37138e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| will serve to ||| 0.0111111 0.229811 1.49697e-06 2.07288e-07 2.718 ||| 0-2 ||| 90 668016 +a ||| will serve ||| 0.00809717 0.122168 2.99394e-06 3.79009e-06 2.718 ||| 0-1 ||| 247 668016 +a ||| will sort out ||| 0.25 0.0561595 1.49697e-06 8.6206e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| will sort ||| 0.166667 0.0561595 1.49697e-06 2.25058e-06 2.718 ||| 0-0 ||| 6 668016 +a ||| will speak of ||| 0.5 0.0188479 1.49697e-06 3.46219e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| will speak on ||| 0.0416667 0.0782999 1.49697e-06 4.44039e-08 2.718 ||| 0-2 ||| 24 668016 +a ||| will stand in ||| 0.1 0.0587624 1.49697e-06 8.56607e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| will stand this measure in ||| 1 0.0587624 1.49697e-06 4.14562e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| will still become mad ||| 1 0.0561595 1.49697e-06 1.63656e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| will still become ||| 0.5 0.0561595 1.49697e-06 3.03066e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| will still ||| 0.011811 0.0561595 4.49091e-06 1.06078e-05 2.718 ||| 0-0 ||| 254 668016 +a ||| will suffer ||| 0.00564972 0.0561595 1.49697e-06 5.0138e-07 2.718 ||| 0-0 ||| 177 668016 +a ||| will support ||| 0.000937207 0.0561595 1.49697e-06 4.81522e-06 2.718 ||| 0-0 ||| 1067 668016 +a ||| will table ||| 0.0169492 0.0561595 1.49697e-06 9.53466e-07 2.718 ||| 0-0 ||| 59 668016 +a ||| will take a ||| 0.00892857 0.0561595 1.49697e-06 1.00508e-06 2.718 ||| 0-0 ||| 112 668016 +a ||| will take it to ||| 0.2 0.229811 1.49697e-06 8.67669e-08 2.718 ||| 0-3 ||| 5 668016 +a ||| will take on ||| 0.0169492 0.0782999 1.49697e-06 5.28383e-07 2.718 ||| 0-2 ||| 59 668016 +a ||| will take place in ||| 0.00323625 0.0587624 1.49697e-06 1.25947e-09 2.718 ||| 0-3 ||| 309 668016 +a ||| will take place ||| 0.00019984 0.0012933 1.49697e-06 8.91874e-10 2.718 ||| 0-1 ||| 5004 668016 +a ||| will take this action - as I ||| 1 0.0243476 1.49697e-06 6.368e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| will take this action - as ||| 1 0.0243476 1.49697e-06 9.00261e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| will take to ||| 0.08 0.229811 2.99394e-06 4.87915e-06 2.718 ||| 0-2 ||| 25 668016 +a ||| will take ||| 0.000797194 0.0561595 7.48485e-06 2.26748e-05 2.718 ||| 0-0 ||| 6272 668016 +a ||| will then be bound to respect ||| 1 0.229811 1.49697e-06 1.97049e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| will then be bound to ||| 1 0.229811 1.49697e-06 4.55499e-12 2.718 ||| 0-4 ||| 1 668016 +a ||| will therefore ||| 0.00371747 0.0561595 2.99394e-06 1.17782e-05 2.718 ||| 0-0 ||| 538 668016 +a ||| will think ||| 0.02 0.0561595 1.49697e-06 5.38702e-06 2.718 ||| 0-0 ||| 50 668016 +a ||| will this ||| 0.0078125 0.0561595 1.49697e-06 9.10004e-05 2.718 ||| 0-0 ||| 128 668016 +a ||| will throw it all away ||| 1 0.0038996 1.49697e-06 6.2256e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| will throw it all ||| 1 0.0038996 1.49697e-06 1.95712e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| will thus ||| 0.00917431 0.0561595 1.49697e-06 2.39705e-06 2.718 ||| 0-0 ||| 109 668016 +a ||| will to be committed to ||| 0.5 0.229811 1.49697e-06 4.04086e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| will to be committed ||| 0.5 0.229811 1.49697e-06 4.54754e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| will to be ||| 0.166667 0.229811 1.49697e-06 5.4922e-05 2.718 ||| 0-1 ||| 6 668016 +a ||| will to ||| 0.00943396 0.229811 7.48485e-06 0.00303053 2.718 ||| 0-1 ||| 530 668016 +a ||| will touch ||| 0.166667 0.0561595 1.49697e-06 3.09841e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| will trap ||| 1 0.0561595 1.49697e-06 8.16855e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| will treat ||| 0.0666667 0.271158 1.49697e-06 3.84546e-06 2.718 ||| 0-1 ||| 15 668016 +a ||| will try ||| 0.00990099 0.0561595 1.49697e-06 2.16889e-06 2.718 ||| 0-0 ||| 101 668016 +a ||| will turn to ||| 0.0714286 0.229811 1.49697e-06 6.79445e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| will undoubtedly ||| 0.00641026 0.0561595 1.49697e-06 5.22505e-07 2.718 ||| 0-0 ||| 156 668016 +a ||| will use to ||| 0.142857 0.229811 1.49697e-06 1.47344e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| will visit ||| 0.03125 0.0561595 1.49697e-06 4.15469e-07 2.718 ||| 0-0 ||| 32 668016 +a ||| will vote against the report ||| 0.1 0.05146 1.49697e-06 8.90191e-14 2.718 ||| 0-2 ||| 10 668016 +a ||| will vote against the ||| 0.0232558 0.05146 1.49697e-06 2.17173e-10 2.718 ||| 0-2 ||| 43 668016 +a ||| will vote against ||| 0.00389105 0.05146 1.49697e-06 3.53749e-09 2.718 ||| 0-2 ||| 257 668016 +a ||| will wait to see ||| 1 0.0561595 1.49697e-06 2.38079e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| will wait to ||| 0.5 0.0561595 1.49697e-06 3.37892e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| will wait ||| 0.0625 0.0561595 1.49697e-06 3.8026e-07 2.718 ||| 0-0 ||| 16 668016 +a ||| will want to make to ||| 0.5 0.229811 1.49697e-06 2.18775e-10 2.718 ||| 0-4 ||| 2 668016 +a ||| will want to ||| 0.00847458 0.229811 1.49697e-06 1.41677e-06 2.718 ||| 0-2 ||| 118 668016 +a ||| will we ||| 0.00332226 0.0561595 1.49697e-06 0.000159882 2.718 ||| 0-0 ||| 301 668016 +a ||| will ||| 0.0223337 0.0561595 0.00204636 0.0140837 2.718 ||| 0-0 ||| 61208 668016 +a ||| willing to invite you to join me ||| 1 0.229811 1.49697e-06 1.15611e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| willing to invite you to join ||| 1 0.229811 1.49697e-06 1.92012e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| willing to invite you to ||| 1 0.229811 1.49697e-06 4.10282e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| willing to kill himself ||| 1 0.229811 1.49697e-06 4.21911e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| willing to kill ||| 1 0.229811 1.49697e-06 5.6938e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| willing to pursue ||| 0.1 0.229811 1.49697e-06 5.19063e-10 2.718 ||| 0-1 ||| 10 668016 +a ||| willing to rally forces ||| 1 0.229811 1.49697e-06 1.54103e-15 2.718 ||| 0-1 ||| 1 668016 +a ||| willing to rally ||| 1 0.229811 1.49697e-06 2.91311e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| willing to risk ||| 0.2 0.229811 1.49697e-06 1.54924e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| willing to show solidarity with ||| 1 0.0571592 1.49697e-06 1.97476e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| willing to ||| 0.00800915 0.229811 2.09576e-05 1.32414e-05 2.718 ||| 0-1 ||| 1748 668016 +a ||| willing ||| 0.000501002 0.0023256 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 1996 668016 +a ||| willingness of the ||| 0.0138889 0.0188479 1.49697e-06 2.36064e-08 2.718 ||| 0-1 ||| 72 668016 +a ||| willingness of ||| 0.00704225 0.0188479 1.49697e-06 3.8452e-07 2.718 ||| 0-1 ||| 142 668016 +a ||| willingness to ||| 0.00262238 0.229811 4.49091e-06 4.55392e-06 2.718 ||| 0-1 ||| 1144 668016 +a ||| win them back ||| 0.125 0.0536618 1.49697e-06 3.19698e-11 2.718 ||| 0-2 ||| 8 668016 +a ||| wind in the ||| 0.25 0.0587624 1.49697e-06 7.96732e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| wind in ||| 0.333333 0.0587624 1.49697e-06 1.29778e-06 2.718 ||| 0-1 ||| 3 668016 +a ||| wind up ||| 0.00684932 0.0195077 1.49697e-06 2.65162e-08 2.718 ||| 0-1 ||| 146 668016 +a ||| window for ||| 0.125 0.0683377 1.49697e-06 4.12703e-07 2.718 ||| 0-1 ||| 8 668016 +a ||| windows to ||| 0.5 0.229811 1.49697e-06 4.90422e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| wines and ||| 0.0163934 0.0015873 1.49697e-06 9.6475e-09 2.718 ||| 0-1 ||| 61 668016 +a ||| wipe out ||| 0.010101 0.0669777 1.49697e-06 7.3818e-09 2.718 ||| 0-1 ||| 99 668016 +a ||| wise to consider ||| 0.5 0.229811 1.49697e-06 3.62264e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| wise to ||| 0.00961538 0.229811 1.49697e-06 2.27696e-06 2.718 ||| 0-1 ||| 104 668016 +a ||| wisely to ||| 0.25 0.229811 1.49697e-06 6.30543e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| wish , by ||| 0.5 0.0337966 1.49697e-06 2.8915e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| wish for ||| 0.00598802 0.0683377 1.49697e-06 1.08593e-05 2.718 ||| 0-1 ||| 167 668016 +a ||| wish her all the best for the ||| 0.25 0.0683377 1.49697e-06 7.28849e-18 2.718 ||| 0-5 ||| 4 668016 +a ||| wish her all the best for ||| 0.25 0.0683377 1.49697e-06 1.18721e-16 2.718 ||| 0-5 ||| 4 668016 +a ||| wish not to ||| 0.25 0.229811 1.49697e-06 3.52451e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| wish of ||| 0.00840336 0.0188479 1.49697e-06 8.71678e-06 2.718 ||| 0-1 ||| 119 668016 +a ||| wish to achieve ||| 0.0344828 0.229811 1.49697e-06 2.35889e-08 2.718 ||| 0-1 ||| 29 668016 +a ||| wish to analyse the differences at the ||| 1 0.229811 1.49697e-06 8.38737e-20 2.718 ||| 0-1 ||| 1 668016 +a ||| wish to analyse the differences at ||| 1 0.229811 1.49697e-06 1.3662e-18 2.718 ||| 0-1 ||| 1 668016 +a ||| wish to analyse the differences ||| 1 0.229811 1.49697e-06 3.26266e-16 2.718 ||| 0-1 ||| 1 668016 +a ||| wish to analyse the ||| 1 0.229811 1.49697e-06 1.3943e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| wish to analyse ||| 0.5 0.229811 1.49697e-06 2.27115e-10 2.718 ||| 0-1 ||| 2 668016 +a ||| wish to be seen as ||| 0.333333 0.229811 1.49697e-06 4.01874e-12 2.718 ||| 0-1 ||| 3 668016 +a ||| wish to be seen ||| 1 0.229811 1.49697e-06 3.93824e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| wish to be ||| 0.00952381 0.229811 1.49697e-06 1.8709e-06 2.718 ||| 0-1 ||| 105 668016 +a ||| wish to clarify relates to ||| 1 0.229811 1.49697e-06 2.96431e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| wish to conclude ||| 0.05 0.229811 1.49697e-06 2.48794e-09 2.718 ||| 0-1 ||| 20 668016 +a ||| wish to contribute ||| 0.05 0.229811 1.49697e-06 4.0158e-09 2.718 ||| 0-1 ||| 20 668016 +a ||| wish to express my ||| 0.0169492 0.229811 1.49697e-06 6.73856e-12 2.718 ||| 0-1 ||| 59 668016 +a ||| wish to express ||| 0.00847458 0.229811 1.49697e-06 1.04782e-08 2.718 ||| 0-1 ||| 118 668016 +a ||| wish to extend ||| 0.0625 0.229811 1.49697e-06 4.4597e-09 2.718 ||| 0-1 ||| 16 668016 +a ||| wish to give ||| 0.0277778 0.229811 1.49697e-06 6.25597e-08 2.718 ||| 0-1 ||| 36 668016 +a ||| wish to introduce for ||| 0.5 0.0683377 1.49697e-06 4.93081e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| wish to make this an ||| 1 0.229811 1.49697e-06 5.15218e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| wish to make this ||| 0.166667 0.229811 1.49697e-06 1.15917e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| wish to make ||| 0.0137931 0.229811 2.99394e-06 1.794e-07 2.718 ||| 0-1 ||| 145 668016 +a ||| wish to pass ||| 0.5 0.229811 1.49697e-06 5.90498e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| wish to see compliance with ||| 0.333333 0.0571592 1.49697e-06 7.08496e-15 2.718 ||| 0-4 ||| 3 668016 +a ||| wish to see ||| 0.0045045 0.229811 1.49697e-06 7.27386e-08 2.718 ||| 0-1 ||| 222 668016 +a ||| wish to thank ||| 0.0163934 0.229811 5.98788e-06 1.09221e-08 2.718 ||| 0-1 ||| 244 668016 +a ||| wish to ||| 0.0128325 0.229811 8.23334e-05 0.000103234 2.718 ||| 0-1 ||| 4286 668016 +a ||| wish you every success in your next ||| 1 0.0587624 1.49697e-06 1.4605e-23 2.718 ||| 0-4 ||| 1 668016 +a ||| wish you every success in your ||| 0.142857 0.0587624 1.49697e-06 1.41384e-19 2.718 ||| 0-4 ||| 7 668016 +a ||| wish you every success in ||| 0.0526316 0.0587624 1.49697e-06 5.52497e-16 2.718 ||| 0-4 ||| 19 668016 +a ||| wished to ||| 0.00550964 0.229811 2.99394e-06 5.53477e-06 2.718 ||| 0-1 ||| 363 668016 +a ||| wishes of ||| 0.00473934 0.0188479 2.99394e-06 1.5647e-06 2.718 ||| 0-1 ||| 422 668016 +a ||| wishes to implement ||| 0.333333 0.229811 1.49697e-06 1.03403e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| wishes to ||| 0.00544135 0.229811 1.34727e-05 1.8531e-05 2.718 ||| 0-1 ||| 1654 668016 +a ||| wishing to carry ||| 0.333333 0.229811 1.49697e-06 9.51349e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| wishing to sell ||| 0.25 0.229811 1.49697e-06 3.3699e-11 2.718 ||| 0-1 ||| 4 668016 +a ||| wishing to ||| 0.00905797 0.229811 7.48485e-06 5.18446e-06 2.718 ||| 0-1 ||| 552 668016 +a ||| with , in more recent times , ||| 1 0.0587624 1.49697e-06 6.15527e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| with , in more recent times ||| 1 0.0587624 1.49697e-06 5.16145e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| with , in more recent ||| 1 0.0587624 1.49697e-06 5.08517e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| with , in more ||| 1 0.0587624 1.49697e-06 1.04633e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| with , in ||| 0.111111 0.0587624 1.49697e-06 4.58174e-05 2.718 ||| 0-2 ||| 9 668016 +a ||| with , ||| 0.0249169 0.0571592 2.24546e-05 0.00199097 2.718 ||| 0-0 ||| 602 668016 +a ||| with Africa , ||| 0.0322581 0.0571592 1.49697e-06 6.80911e-08 2.718 ||| 0-0 ||| 31 668016 +a ||| with Africa ||| 0.00649351 0.0571592 1.49697e-06 5.70972e-07 2.718 ||| 0-0 ||| 154 668016 +a ||| with Directives 96 / ||| 0.5 0.0571592 1.49697e-06 1.35164e-17 2.718 ||| 0-0 ||| 2 668016 +a ||| with Directives 96 ||| 0.5 0.0571592 1.49697e-06 5.87668e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| with Directives ||| 0.25 0.0571592 1.49697e-06 1.83646e-08 2.718 ||| 0-0 ||| 4 668016 +a ||| with European voluntary service activities ||| 0.333333 0.0571592 1.49697e-06 3.949e-18 2.718 ||| 0-0 ||| 3 668016 +a ||| with European voluntary service ||| 0.333333 0.0571592 1.49697e-06 4.9673e-14 2.718 ||| 0-0 ||| 3 668016 +a ||| with European voluntary ||| 0.333333 0.0571592 1.49697e-06 7.42496e-10 2.718 ||| 0-0 ||| 3 668016 +a ||| with European ||| 0.0149254 0.0571592 1.49697e-06 5.58267e-05 2.718 ||| 0-0 ||| 67 668016 +a ||| with FRONTEX ||| 0.2 0.0571592 1.49697e-06 6.67804e-09 2.718 ||| 0-0 ||| 5 668016 +a ||| with Gaddafi ||| 0.142857 0.0571592 1.49697e-06 6.67804e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| with Germany ||| 0.027027 0.0571592 1.49697e-06 4.32403e-07 2.718 ||| 0-0 ||| 37 668016 +a ||| with Mr or ||| 0.142857 0.0571592 1.49697e-06 1.24603e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| with Mr ||| 0.000549149 0.0571592 1.49697e-06 1.08986e-05 2.718 ||| 0-0 ||| 1821 668016 +a ||| with Parliament ||| 0.000614251 0.0571592 1.49697e-06 9.58299e-06 2.718 ||| 0-0 ||| 1628 668016 +a ||| with a Member ||| 0.0909091 0.0571592 1.49697e-06 3.81334e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| with a Member ’ ||| 0.5 0.0571592 1.49697e-06 6.64322e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| with a clear ||| 0.00909091 0.0571592 1.49697e-06 2.46354e-07 2.718 ||| 0-0 ||| 110 668016 +a ||| with a comprehensive smoking ||| 1 0.0571592 1.49697e-06 7.45944e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| with a comprehensive ||| 0.166667 0.0571592 1.49697e-06 1.86486e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| with a considerable head ||| 1 0.0571592 1.49697e-06 2.40767e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| with a considerable ||| 0.166667 0.0571592 1.49697e-06 3.33011e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| with a few ||| 0.00473934 0.0571592 1.49697e-06 1.29726e-07 2.718 ||| 0-0 ||| 211 668016 +a ||| with a focus ||| 0.0454545 0.0571592 1.49697e-06 5.72778e-08 2.718 ||| 0-0 ||| 22 668016 +a ||| with a guarantee ||| 0.0416667 0.0571592 1.49697e-06 4.47714e-08 2.718 ||| 0-0 ||| 24 668016 +a ||| with a knife - ||| 1 0.0571592 1.49697e-06 6.97861e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| with a knife ||| 0.333333 0.0571592 1.49697e-06 1.85006e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| with a mixture ||| 0.0555556 0.0571592 1.49697e-06 1.03603e-09 2.718 ||| 0-0 ||| 18 668016 +a ||| with a place ||| 0.142857 0.0571592 1.49697e-06 1.11374e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| with a referral of ||| 1 0.0571592 1.49697e-06 1.28738e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| with a referral ||| 1 0.0571592 1.49697e-06 2.36808e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| with a sense ||| 0.0114943 0.0571592 1.49697e-06 1.31798e-07 2.718 ||| 0-0 ||| 87 668016 +a ||| with a view to converting ||| 0.5 0.229811 1.49697e-06 1.97315e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| with a view to the ||| 0.00254453 0.229811 1.49697e-06 5.50615e-09 2.718 ||| 0-3 ||| 393 668016 +a ||| with a view to ||| 0.00203134 0.229811 1.04788e-05 8.96886e-08 2.718 ||| 0-3 ||| 3446 668016 +a ||| with a view ||| 0.0034904 0.0571592 1.79636e-05 6.68463e-07 2.718 ||| 0-0 ||| 3438 668016 +a ||| with a ||| 0.0138509 0.0571592 0.000341309 0.000740024 2.718 ||| 0-0 ||| 16461 668016 +a ||| with access ||| 0.00970874 0.0571592 1.49697e-06 1.43578e-06 2.718 ||| 0-0 ||| 103 668016 +a ||| with actions by supporting ||| 1 0.0571592 1.49697e-06 1.95777e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| with actions by ||| 0.5 0.0571592 1.49697e-06 6.11804e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| with actions ||| 0.0408163 0.0571592 2.99394e-06 1.16532e-06 2.718 ||| 0-0 ||| 49 668016 +a ||| with all I learnt ||| 1 0.0571592 1.49697e-06 5.63616e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| with all I ||| 1 0.0571592 1.49697e-06 5.58036e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| with all of ||| 0.00543478 0.0571592 1.49697e-06 4.28883e-06 2.718 ||| 0-0 ||| 184 668016 +a ||| with all the ||| 0.000718391 0.0571592 1.49697e-06 4.84326e-06 2.718 ||| 0-0 ||| 1392 668016 +a ||| with all those acres which will remain ||| 1 0.0571592 1.49697e-06 2.03688e-22 2.718 ||| 0-0 ||| 1 668016 +a ||| with all those acres which will ||| 1 0.0571592 1.49697e-06 1.67921e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| with all those acres which ||| 1 0.0571592 1.49697e-06 1.94102e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| with all those acres ||| 1 0.0571592 1.49697e-06 2.285e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| with all those ||| 0.00598802 0.0571592 1.49697e-06 5.7125e-08 2.718 ||| 0-0 ||| 167 668016 +a ||| with all ||| 0.00262544 0.0571592 1.34727e-05 7.8891e-05 2.718 ||| 0-0 ||| 3428 668016 +a ||| with an ||| 0.00369822 0.0571592 1.49697e-05 7.42047e-05 2.718 ||| 0-0 ||| 2704 668016 +a ||| with another ||| 0.00497512 0.0571592 1.49697e-06 4.02519e-06 2.718 ||| 0-0 ||| 201 668016 +a ||| with any ||| 0.0042735 0.0571592 2.99394e-06 2.52463e-05 2.718 ||| 0-0 ||| 468 668016 +a ||| with anything like ||| 1 0.0571592 1.49697e-06 4.6519e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| with anything which ||| 0.5 0.0571592 1.49697e-06 2.22513e-08 2.718 ||| 0-0 ||| 2 668016 +a ||| with anything ||| 0.08 0.0571592 2.99394e-06 2.61946e-06 2.718 ||| 0-0 ||| 25 668016 +a ||| with as a matter of ||| 0.25 0.0188479 1.49697e-06 8.87595e-11 2.718 ||| 0-4 ||| 4 668016 +a ||| with as ||| 0.0218978 0.0571592 4.49091e-06 0.000170363 2.718 ||| 0-0 ||| 137 668016 +a ||| with at a stroke ||| 1 0.204175 1.49697e-06 4.14823e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| with at a ||| 0.333333 0.130667 2.99394e-06 2.5187e-05 2.718 ||| 0-0 0-1 ||| 6 668016 +a ||| with at all ||| 0.25 0.130667 1.49697e-06 2.68509e-06 2.718 ||| 0-0 0-1 ||| 4 668016 +a ||| with at the ||| 0.0833333 0.0571592 1.49697e-06 4.29184e-06 2.718 ||| 0-0 ||| 12 668016 +a ||| with at ||| 0.137097 0.130667 2.54485e-05 0.000568224 2.718 ||| 0-0 0-1 ||| 124 668016 +a ||| with being ||| 0.037037 0.0571592 1.49697e-06 4.75109e-05 2.718 ||| 0-0 ||| 27 668016 +a ||| with bombastic ||| 0.333333 0.0571592 1.49697e-06 6.67804e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| with both hands ||| 0.0833333 0.0571592 1.49697e-06 2.78767e-09 2.718 ||| 0-0 ||| 12 668016 +a ||| with both ||| 0.0102564 0.0571592 5.98788e-06 2.76554e-05 2.718 ||| 0-0 ||| 390 668016 +a ||| with by a ||| 0.0909091 0.0571592 1.49697e-06 3.8852e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| with by ||| 0.0266667 0.0571592 5.98788e-06 8.76509e-05 2.718 ||| 0-0 ||| 150 668016 +a ||| with capital at ||| 1 0.204175 1.49697e-06 5.63686e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| with carrying out ||| 0.0909091 0.0571592 1.49697e-06 3.86891e-09 2.718 ||| 0-0 ||| 11 668016 +a ||| with carrying ||| 0.111111 0.0571592 1.49697e-06 1.01005e-06 2.718 ||| 0-0 ||| 9 668016 +a ||| with cases ||| 0.0454545 0.0571592 1.49697e-06 2.13864e-06 2.718 ||| 0-0 ||| 22 668016 +a ||| with celebrating ||| 0.333333 0.0571592 1.49697e-06 5.34243e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| with chips on ||| 1 0.0782999 1.49697e-06 1.69805e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| with concrete indicators ||| 1 0.0571592 1.49697e-06 2.45602e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| with concrete ||| 0.0666667 0.0571592 1.49697e-06 5.22557e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| with consensus ||| 0.0833333 0.0571592 1.49697e-06 2.58774e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| with considerable bias , to ||| 1 0.229811 1.49697e-06 3.00522e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| with contradictions ||| 0.333333 0.0571592 1.49697e-06 3.00512e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| with criminal ||| 0.0833333 0.0571592 1.49697e-06 6.96186e-07 2.718 ||| 0-0 ||| 12 668016 +a ||| with current ||| 0.0238095 0.0571592 1.49697e-06 2.75135e-06 2.718 ||| 0-0 ||| 42 668016 +a ||| with delayed ||| 1 0.0571592 1.49697e-06 1.56934e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| with demonstrate how much ||| 0.5 0.0571592 1.49697e-06 1.4894e-13 2.718 ||| 0-0 ||| 2 668016 +a ||| with demonstrate how ||| 0.5 0.0571592 1.49697e-06 1.48391e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| with demonstrate ||| 0.5 0.0571592 1.49697e-06 4.14038e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| with disabilities ||| 0.00129032 0.0571592 1.49697e-06 4.17378e-08 2.718 ||| 0-0 ||| 775 668016 +a ||| with discussions lasting until half past three ||| 1 0.0268909 1.49697e-06 1.43054e-28 2.718 ||| 0-3 ||| 1 668016 +a ||| with discussions lasting until half past ||| 1 0.0268909 1.49697e-06 2.25993e-24 2.718 ||| 0-3 ||| 1 668016 +a ||| with discussions lasting until half ||| 1 0.0268909 1.49697e-06 1.76419e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| with discussions lasting until ||| 1 0.0268909 1.49697e-06 6.12567e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| with distribution ||| 0.142857 0.0571592 1.49697e-06 3.4225e-07 2.718 ||| 0-0 ||| 7 668016 +a ||| with due moderation - ||| 0.5 0.0571592 1.49697e-06 3.82942e-14 2.718 ||| 0-0 ||| 2 668016 +a ||| with due moderation ||| 0.5 0.0571592 1.49697e-06 1.0152e-11 2.718 ||| 0-0 ||| 2 668016 +a ||| with due ||| 0.00529101 0.0571592 1.49697e-06 4.61453e-06 2.718 ||| 0-0 ||| 189 668016 +a ||| with each other at ||| 0.2 0.204175 1.49697e-06 7.91439e-11 2.718 ||| 0-3 ||| 5 668016 +a ||| with each other in ||| 0.0714286 0.0587624 1.49697e-06 1.39712e-10 2.718 ||| 0-3 ||| 14 668016 +a ||| with each other ||| 0.0060241 0.0571592 2.99394e-06 6.07112e-09 2.718 ||| 0-0 ||| 332 668016 +a ||| with each ||| 0.00379507 0.0571592 2.99394e-06 4.68631e-06 2.718 ||| 0-0 ||| 527 668016 +a ||| with eagerness ||| 0.333333 0.0571592 1.49697e-06 6.67804e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| with efforts to ||| 0.0714286 0.229811 1.49697e-06 2.72384e-07 2.718 ||| 0-2 ||| 14 668016 +a ||| with empowerment ||| 1 0.0571592 1.49697e-06 2.33731e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| with enlargement looming , ||| 1 0.0571592 1.49697e-06 1.74369e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| with enlargement looming ||| 1 0.0571592 1.49697e-06 1.46216e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| with enlargement ||| 0.003861 0.0571592 1.49697e-06 5.04192e-07 2.718 ||| 0-0 ||| 259 668016 +a ||| with ever ||| 0.0294118 0.0571592 1.49697e-06 3.13701e-06 2.718 ||| 0-0 ||| 34 668016 +a ||| with every ||| 0.0106383 0.0571592 2.99394e-06 2.71629e-06 2.718 ||| 0-0 ||| 188 668016 +a ||| with extremes of ||| 0.333333 0.0188479 1.49697e-06 7.56559e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| with first and ||| 1 0.0571592 1.49697e-06 1.12591e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| with first ||| 0.1 0.0571592 1.49697e-06 8.98864e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| with fuel ||| 0.166667 0.0571592 1.49697e-06 3.12198e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| with further ||| 0.0123457 0.0571592 1.49697e-06 8.06874e-06 2.718 ||| 0-0 ||| 81 668016 +a ||| with glee ||| 0.0384615 0.0571592 1.49697e-06 2.33731e-08 2.718 ||| 0-0 ||| 26 668016 +a ||| with grants ||| 0.166667 0.0490956 1.49697e-06 3.32514e-07 2.718 ||| 0-1 ||| 6 668016 +a ||| with gratitude ||| 0.0526316 0.0571592 1.49697e-06 1.31891e-07 2.718 ||| 0-0 ||| 19 668016 +a ||| with great pleasure that ||| 0.0434783 0.0571592 1.49697e-06 2.50539e-12 2.718 ||| 0-0 ||| 23 668016 +a ||| with great pleasure ||| 0.0384615 0.0571592 2.99394e-06 1.48939e-10 2.718 ||| 0-0 ||| 52 668016 +a ||| with great ||| 0.00232558 0.0571592 4.49091e-06 6.56117e-06 2.718 ||| 0-0 ||| 1290 668016 +a ||| with greater ||| 0.0027027 0.0571592 1.49697e-06 2.19874e-06 2.718 ||| 0-0 ||| 370 668016 +a ||| with growing attempts made by ||| 1 0.0454779 1.49697e-06 3.44787e-16 2.718 ||| 0-0 0-4 ||| 1 668016 +a ||| with guaranteed ||| 0.1 0.0571592 1.49697e-06 5.89337e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| with heavy ||| 0.0454545 0.0571592 1.49697e-06 2.93834e-07 2.718 ||| 0-0 ||| 22 668016 +a ||| with her to ||| 0.25 0.229811 1.49697e-06 6.09505e-07 2.718 ||| 0-2 ||| 4 668016 +a ||| with here in ||| 0.142857 0.0587624 1.49697e-06 7.79076e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| with here is the ||| 0.333333 0.0571592 1.49697e-06 6.51386e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| with here is ||| 0.0526316 0.0571592 1.49697e-06 1.06103e-06 2.718 ||| 0-0 ||| 19 668016 +a ||| with here ||| 0.05 0.0571592 2.99394e-06 3.38543e-05 2.718 ||| 0-0 ||| 40 668016 +a ||| with him ||| 0.00389105 0.0571592 4.49091e-06 5.35245e-06 2.718 ||| 0-0 ||| 771 668016 +a ||| with hopes and ||| 1 0.0571592 1.49697e-06 2.11212e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| with hopes ||| 0.2 0.0571592 1.49697e-06 1.68621e-07 2.718 ||| 0-0 ||| 5 668016 +a ||| with immediate effect ||| 0.015625 0.0571592 1.49697e-06 1.4425e-10 2.718 ||| 0-0 ||| 64 668016 +a ||| with immediate ||| 0.0666667 0.0571592 1.49697e-06 4.32403e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| with in the ||| 0.0136986 0.0587624 1.49697e-06 2.35866e-05 2.718 ||| 0-1 ||| 73 668016 +a ||| with in ||| 0.0378788 0.0587624 1.49697e-05 0.000384198 2.718 ||| 0-1 ||| 264 668016 +a ||| with information ||| 0.00581395 0.0571592 1.49697e-06 2.76304e-06 2.718 ||| 0-0 ||| 172 668016 +a ||| with is ||| 0.0377358 0.0571592 2.99394e-06 0.000523243 2.718 ||| 0-0 ||| 53 668016 +a ||| with it , to ||| 0.166667 0.229811 1.49697e-06 4.75044e-06 2.718 ||| 0-3 ||| 6 668016 +a ||| with it again , to correct ||| 0.333333 0.229811 1.49697e-06 9.88985e-14 2.718 ||| 0-4 ||| 3 668016 +a ||| with it again , to ||| 0.333333 0.229811 1.49697e-06 2.74718e-09 2.718 ||| 0-4 ||| 3 668016 +a ||| with it by ||| 0.333333 0.0571592 1.49697e-06 1.55871e-06 2.718 ||| 0-0 ||| 3 668016 +a ||| with it into ||| 1 0.107578 1.49697e-06 6.90737e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| with it its ||| 0.5 0.0571592 1.49697e-06 4.22982e-07 2.718 ||| 0-0 ||| 2 668016 +a ||| with it over ||| 0.333333 0.0571592 1.49697e-06 1.42954e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| with it ||| 0.0140845 0.0571592 2.99394e-05 0.000296892 2.718 ||| 0-0 ||| 1420 668016 +a ||| with its ||| 0.000307125 0.0571592 1.49697e-06 2.37855e-05 2.718 ||| 0-0 ||| 3256 668016 +a ||| with just getting ||| 1 0.0571592 1.49697e-06 2.44766e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| with just ||| 0.0141844 0.0571592 2.99394e-06 2.10642e-05 2.718 ||| 0-0 ||| 141 668016 +a ||| with knowledge , ||| 0.2 0.0571592 1.49697e-06 9.4571e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| with knowledge ||| 0.0434783 0.0571592 1.49697e-06 7.93017e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| with lack of vision ||| 1 0.0571592 1.49697e-06 1.34646e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| with lack of ||| 0.0909091 0.0571592 1.49697e-06 1.10366e-07 2.718 ||| 0-0 ||| 11 668016 +a ||| with lack ||| 0.1 0.0571592 1.49697e-06 2.03012e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| with little success ||| 0.0833333 0.0571592 1.49697e-06 1.60554e-10 2.718 ||| 0-0 ||| 12 668016 +a ||| with little ||| 0.00740741 0.0571592 1.49697e-06 2.70294e-06 2.718 ||| 0-0 ||| 135 668016 +a ||| with matters concerning ||| 0.333333 0.22348 1.49697e-06 4.8384e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| with me in ||| 0.0192308 0.0587624 1.49697e-06 2.31325e-07 2.718 ||| 0-2 ||| 52 668016 +a ||| with me ||| 0.00380228 0.0571592 4.49091e-06 1.00521e-05 2.718 ||| 0-0 ||| 789 668016 +a ||| with money ||| 0.0135135 0.0571592 1.49697e-06 2.72798e-06 2.718 ||| 0-0 ||| 74 668016 +a ||| with more information ||| 0.0714286 0.0571592 1.49697e-06 6.30995e-09 2.718 ||| 0-0 ||| 14 668016 +a ||| with more ||| 0.00294118 0.0571592 2.99394e-06 3.81266e-05 2.718 ||| 0-0 ||| 680 668016 +a ||| with my ||| 0.00084674 0.0571592 1.49697e-06 1.07366e-05 2.718 ||| 0-0 ||| 1181 668016 +a ||| with new , ||| 0.1 0.0571592 1.49697e-06 1.19e-06 2.718 ||| 0-0 ||| 10 668016 +a ||| with new ||| 0.00514139 0.0571592 2.99394e-06 9.97866e-06 2.718 ||| 0-0 ||| 389 668016 +a ||| with no going ||| 1 0.0571592 1.49697e-06 1.11215e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| with no interest ||| 0.25 0.0571592 1.49697e-06 1.45939e-09 2.718 ||| 0-0 ||| 4 668016 +a ||| with no regard ||| 0.0416667 0.0571592 1.49697e-06 8.84861e-09 2.718 ||| 0-0 ||| 24 668016 +a ||| with no ||| 0.00377644 0.0571592 7.48485e-06 1.29955e-05 2.718 ||| 0-0 ||| 1324 668016 +a ||| with nuclear ||| 0.1 0.0571592 1.49697e-06 6.49439e-07 2.718 ||| 0-0 ||| 10 668016 +a ||| with offences ||| 0.166667 0.0571592 1.49697e-06 1.56934e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| with on a ||| 0.166667 0.0677295 1.49697e-06 2.80732e-05 2.718 ||| 0-0 0-1 ||| 6 668016 +a ||| with on the ||| 0.142857 0.0677295 1.49697e-06 3.88818e-05 2.718 ||| 0-0 0-1 ||| 7 668016 +a ||| with on ||| 0.0540541 0.0677295 2.99394e-06 0.000633339 2.718 ||| 0-0 0-1 ||| 37 668016 +a ||| with one another ||| 0.00606061 0.0571592 1.49697e-06 1.6777e-08 2.718 ||| 0-0 ||| 165 668016 +a ||| with one hand and ||| 0.0344828 0.0571592 1.49697e-06 3.45683e-10 2.718 ||| 0-0 ||| 29 668016 +a ||| with one hand ||| 0.025974 0.0571592 2.99394e-06 2.75975e-08 2.718 ||| 0-0 ||| 77 668016 +a ||| with one ||| 0.00259572 0.0571592 5.98788e-06 6.95852e-05 2.718 ||| 0-0 ||| 1541 668016 +a ||| with only a ||| 0.0434783 0.0571592 1.49697e-06 8.2372e-07 2.718 ||| 0-0 ||| 23 668016 +a ||| with only ||| 0.00452489 0.0571592 1.49697e-06 1.85833e-05 2.718 ||| 0-0 ||| 221 668016 +a ||| with open arms ||| 0.0227273 0.0571592 1.49697e-06 7.45476e-11 2.718 ||| 0-0 ||| 44 668016 +a ||| with open ||| 0.03125 0.0571592 1.49697e-06 2.69125e-06 2.718 ||| 0-0 ||| 32 668016 +a ||| with other funds at ||| 0.5 0.204175 1.49697e-06 2.15129e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| with other institutions ||| 0.0181818 0.0571592 1.49697e-06 1.1355e-09 2.718 ||| 0-0 ||| 55 668016 +a ||| with other ||| 0.00133274 0.0571592 4.49091e-06 2.16285e-05 2.718 ||| 0-0 ||| 2251 668016 +a ||| with others , safeguards ||| 1 0.0571592 1.49697e-06 8.32145e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| with others , ||| 0.0123457 0.0571592 1.49697e-06 1.93522e-07 2.718 ||| 0-0 ||| 81 668016 +a ||| with others ||| 0.00358423 0.0571592 1.49697e-06 1.62276e-06 2.718 ||| 0-0 ||| 279 668016 +a ||| with our approach ||| 0.111111 0.0571592 1.49697e-06 5.04801e-09 2.718 ||| 0-0 ||| 9 668016 +a ||| with our initiatives vis a vis ||| 1 0.0571592 1.49697e-06 1.20408e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| with our initiatives vis a ||| 1 0.0571592 1.49697e-06 1.9739e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| with our initiatives vis ||| 1 0.0571592 1.49697e-06 4.45316e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| with our initiatives ||| 1 0.0571592 1.49697e-06 7.30026e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| with our ||| 0.000612745 0.0571592 2.99394e-06 2.30292e-05 2.718 ||| 0-0 ||| 3264 668016 +a ||| with overall ||| 0.0769231 0.0571592 1.49697e-06 1.0568e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| with painful experiences ||| 0.25 0.0571592 1.49697e-06 3.58945e-13 2.718 ||| 0-0 ||| 4 668016 +a ||| with painful ||| 0.1 0.0571592 1.49697e-06 7.17889e-08 2.718 ||| 0-0 ||| 10 668016 +a ||| with people ||| 0.00411523 0.0571592 1.49697e-06 1.4695e-05 2.718 ||| 0-0 ||| 243 668016 +a ||| with priority to ||| 0.5 0.229811 1.49697e-06 1.24992e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| with professional ||| 0.166667 0.0571592 1.49697e-06 2.77139e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| with providing ||| 0.0333333 0.0571592 1.49697e-06 1.53261e-06 2.718 ||| 0-0 ||| 30 668016 +a ||| with quite ||| 0.153846 0.0571592 2.99394e-06 6.51276e-06 2.718 ||| 0-0 ||| 13 668016 +a ||| with rather ||| 0.0714286 0.0571592 1.49697e-06 5.11204e-06 2.718 ||| 0-0 ||| 14 668016 +a ||| with real ||| 0.0175439 0.0571592 1.49697e-06 3.00345e-06 2.718 ||| 0-0 ||| 57 668016 +a ||| with reference to ||| 0.00510204 0.229811 2.99394e-06 1.91072e-07 2.718 ||| 0-2 ||| 392 668016 +a ||| with reference ||| 0.00227273 0.0571592 1.49697e-06 1.42409e-06 2.718 ||| 0-0 ||| 440 668016 +a ||| with regard to his political ||| 0.2 0.229811 1.49697e-06 8.18116e-14 2.718 ||| 0-2 ||| 5 668016 +a ||| with regard to his ||| 0.05 0.229811 1.49697e-06 4.58328e-10 2.718 ||| 0-2 ||| 20 668016 +a ||| with regard to participation in ||| 0.333333 0.0587624 1.49697e-06 5.60212e-13 2.718 ||| 0-4 ||| 3 668016 +a ||| with regard to the role that the ||| 1 0.229811 1.49697e-06 2.14671e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| with regard to the role that ||| 0.25 0.229811 1.49697e-06 3.49673e-13 2.718 ||| 0-2 ||| 4 668016 +a ||| with regard to the role ||| 0.0526316 0.229811 1.49697e-06 2.07872e-11 2.718 ||| 0-2 ||| 19 668016 +a ||| with regard to the ||| 0.000325468 0.0571592 2.99394e-06 6.20126e-08 2.718 ||| 0-0 ||| 6145 668016 +a ||| with regard to ||| 0.00532183 0.229811 0.000110776 1.52522e-06 2.718 ||| 0-2 ||| 13905 668016 +a ||| with regard ||| 0.00177797 0.0571592 3.74243e-05 1.13677e-05 2.718 ||| 0-0 ||| 14061 668016 +a ||| with regarding ||| 0.5 0.186429 1.49697e-06 2.15194e-05 2.718 ||| 0-1 ||| 2 668016 +a ||| with regret ||| 0.010989 0.0571592 1.49697e-06 3.30563e-07 2.718 ||| 0-0 ||| 91 668016 +a ||| with respect to ||| 0.007034 0.229811 8.98182e-06 9.69026e-07 2.718 ||| 0-2 ||| 853 668016 +a ||| with serious ||| 0.0104167 0.0571592 1.49697e-06 1.92328e-06 2.718 ||| 0-0 ||| 96 668016 +a ||| with several thousand banks participating ||| 1 0.0571592 1.49697e-06 2.12678e-21 2.718 ||| 0-0 ||| 1 668016 +a ||| with several thousand banks ||| 1 0.0571592 1.49697e-06 1.84938e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| with several thousand ||| 0.111111 0.0571592 1.49697e-06 1.22475e-11 2.718 ||| 0-0 ||| 9 668016 +a ||| with several ||| 0.00671141 0.0571592 1.49697e-06 1.09353e-06 2.718 ||| 0-0 ||| 149 668016 +a ||| with similar ||| 0.0666667 0.0571592 1.49697e-06 6.72813e-07 2.718 ||| 0-0 ||| 15 668016 +a ||| with so-called ||| 0.04 0.0571592 1.49697e-06 6.24397e-07 2.718 ||| 0-0 ||| 25 668016 +a ||| with some energy ||| 1 0.0571592 1.49697e-06 1.61673e-09 2.718 ||| 0-0 ||| 1 668016 +a ||| with some sobering ||| 0.333333 0.0571592 1.49697e-06 1.27302e-11 2.718 ||| 0-0 ||| 3 668016 +a ||| with some ||| 0.00559105 0.0571592 1.04788e-05 1.8186e-05 2.718 ||| 0-0 ||| 1252 668016 +a ||| with sorrow ||| 0.2 0.0571592 1.49697e-06 4.84158e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| with special needs ||| 0.0222222 0.0571592 1.49697e-06 2.83391e-10 2.718 ||| 0-0 ||| 45 668016 +a ||| with special ||| 0.00970874 0.0571592 1.49697e-06 1.4291e-06 2.718 ||| 0-0 ||| 103 668016 +a ||| with standards ||| 0.0344828 0.0571592 1.49697e-06 1.22041e-06 2.718 ||| 0-0 ||| 29 668016 +a ||| with stress on ||| 1 0.0782999 1.49697e-06 8.63582e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| with such a ||| 0.00699301 0.0571592 1.49697e-06 1.53103e-06 2.718 ||| 0-0 ||| 143 668016 +a ||| with such ||| 0.00172117 0.0571592 1.49697e-06 3.45405e-05 2.718 ||| 0-0 ||| 581 668016 +a ||| with suspicion ||| 0.05 0.0571592 1.49697e-06 1.0184e-07 2.718 ||| 0-0 ||| 20 668016 +a ||| with that is ||| 0.142857 0.0571592 1.49697e-06 8.80178e-06 2.718 ||| 0-0 ||| 7 668016 +a ||| with that of ||| 0.0233918 0.0571592 5.98788e-06 1.52675e-05 2.718 ||| 0-0 ||| 171 668016 +a ||| with that sort ||| 0.333333 0.0571592 1.49697e-06 4.4878e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| with that which is ||| 0.333333 0.0571592 1.49697e-06 7.47676e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| with that which ||| 0.0909091 0.0571592 1.49697e-06 2.38561e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| with that ||| 0.00708447 0.0571592 1.94606e-05 0.000280838 2.718 ||| 0-0 ||| 1835 668016 +a ||| with the Community ||| 0.0222222 0.0571592 1.49697e-06 1.65938e-07 2.718 ||| 0-0 ||| 45 668016 +a ||| with the aid of ||| 0.00961538 0.0571592 1.49697e-06 7.27703e-09 2.718 ||| 0-0 ||| 104 668016 +a ||| with the aid ||| 0.00769231 0.0571592 1.49697e-06 1.33857e-07 2.718 ||| 0-0 ||| 130 668016 +a ||| with the aim ||| 0.000860585 0.0571592 1.49697e-06 1.4093e-07 2.718 ||| 0-0 ||| 1162 668016 +a ||| with the approval ||| 0.00793651 0.0571592 1.49697e-06 3.06458e-08 2.718 ||| 0-0 ||| 126 668016 +a ||| with the authority ||| 0.05 0.0571592 1.49697e-06 4.356e-08 2.718 ||| 0-0 ||| 20 668016 +a ||| with the benefit of hindsight , ||| 0.166667 0.0571592 1.49697e-06 6.1259e-16 2.718 ||| 0-0 ||| 6 668016 +a ||| with the benefit of hindsight ||| 0.1 0.0571592 1.49697e-06 5.13682e-15 2.718 ||| 0-0 ||| 10 668016 +a ||| with the benefit of ||| 0.0357143 0.0571592 1.49697e-06 7.33832e-09 2.718 ||| 0-0 ||| 28 668016 +a ||| with the benefit ||| 0.0322581 0.0571592 1.49697e-06 1.34985e-07 2.718 ||| 0-0 ||| 31 668016 +a ||| with the best ||| 0.00632911 0.0571592 1.49697e-06 1.41955e-07 2.718 ||| 0-0 ||| 158 668016 +a ||| with the broad lines of ||| 0.166667 0.0188479 1.49697e-06 3.26507e-14 2.718 ||| 0-4 ||| 6 668016 +a ||| with the conclusions ||| 0.00735294 0.0571592 1.49697e-06 2.58285e-08 2.718 ||| 0-0 ||| 136 668016 +a ||| with the express ||| 0.333333 0.0571592 1.49697e-06 1.04032e-07 2.718 ||| 0-0 ||| 3 668016 +a ||| with the fact that ||| 0.00696864 0.0008521 2.99394e-06 7.85074e-10 2.718 ||| 0-3 ||| 287 668016 +a ||| with the fact ||| 0.00606061 0.0571592 4.49091e-06 3.00236e-06 2.718 ||| 0-0 ||| 495 668016 +a ||| with the fight against trafficking ||| 0.5 0.05146 1.49697e-06 6.69122e-16 2.718 ||| 0-3 ||| 2 668016 +a ||| with the fight against ||| 0.0185185 0.05146 1.49697e-06 5.62287e-11 2.718 ||| 0-3 ||| 54 668016 +a ||| with the help ||| 0.00389105 0.0571592 2.99394e-06 1.95456e-07 2.718 ||| 0-0 ||| 514 668016 +a ||| with the input of ||| 0.25 0.0571592 1.49697e-06 7.02071e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| with the input ||| 0.142857 0.0571592 1.49697e-06 1.29143e-08 2.718 ||| 0-0 ||| 7 668016 +a ||| with the insights ||| 0.5 0.0571592 1.49697e-06 4.09977e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| with the intention of ||| 0.00917431 0.0571592 1.49697e-06 3.14818e-09 2.718 ||| 0-0 ||| 109 668016 +a ||| with the intention ||| 0.00724638 0.0571592 1.49697e-06 5.79092e-08 2.718 ||| 0-0 ||| 138 668016 +a ||| with the internal market , and it ||| 0.111111 0.0571592 1.49697e-06 2.85509e-16 2.718 ||| 0-0 ||| 9 668016 +a ||| with the internal market , and ||| 0.1 0.0571592 1.49697e-06 1.6055e-14 2.718 ||| 0-0 ||| 10 668016 +a ||| with the internal market , ||| 0.0434783 0.0571592 1.49697e-06 1.28174e-12 2.718 ||| 0-0 ||| 23 668016 +a ||| with the internal market ||| 0.0149254 0.0571592 1.49697e-06 1.0748e-11 2.718 ||| 0-0 ||| 67 668016 +a ||| with the internal ||| 0.0833333 0.0571592 1.49697e-06 4.75573e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| with the job of ||| 0.1 0.0380035 1.49697e-06 2.3677e-09 2.718 ||| 0-0 0-3 ||| 10 668016 +a ||| with the necessary ||| 0.0133333 0.0571592 1.49697e-06 2.63718e-07 2.718 ||| 0-0 ||| 75 668016 +a ||| with the need to ||| 0.00571429 0.229811 1.49697e-06 1.2609e-07 2.718 ||| 0-3 ||| 175 668016 +a ||| with the object of ||| 0.0588235 0.0571592 1.49697e-06 8.02367e-10 2.718 ||| 0-0 ||| 17 668016 +a ||| with the object ||| 0.0625 0.0571592 1.49697e-06 1.47592e-08 2.718 ||| 0-0 ||| 16 668016 +a ||| with the objective of ||| 0.00584795 0.0188479 1.49697e-06 7.76818e-10 2.718 ||| 0-3 ||| 171 668016 +a ||| with the objective ||| 0.00526316 0.0571592 1.49697e-06 6.85686e-08 2.718 ||| 0-0 ||| 190 668016 +a ||| with the problem ||| 0.00840336 0.0571592 1.49697e-06 2.3051e-07 2.718 ||| 0-0 ||| 119 668016 +a ||| with the rest of the ||| 0.00571429 0.0571592 1.49697e-06 2.58609e-10 2.718 ||| 0-0 ||| 175 668016 +a ||| with the rest of ||| 0.00833333 0.0571592 1.49697e-06 4.21243e-09 2.718 ||| 0-0 ||| 120 668016 +a ||| with the rest ||| 0.00398406 0.0571592 1.49697e-06 7.74856e-08 2.718 ||| 0-0 ||| 251 668016 +a ||| with the right ||| 0.00862069 0.0571592 1.49697e-06 6.60985e-07 2.718 ||| 0-0 ||| 116 668016 +a ||| with the same brush - ||| 1 0.0571592 1.49697e-06 4.35557e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| with the same brush ||| 0.0454545 0.0571592 1.49697e-06 1.15468e-12 2.718 ||| 0-0 ||| 22 668016 +a ||| with the same degree of ||| 0.333333 0.0188479 1.49697e-06 1.29413e-12 2.718 ||| 0-4 ||| 3 668016 +a ||| with the same ||| 0.00175439 0.0571592 1.49697e-06 8.24771e-07 2.718 ||| 0-0 ||| 570 668016 +a ||| with the shipyards ||| 0.5 0.0571592 1.49697e-06 1.8449e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| with the situation ||| 0.00487805 0.0571592 1.49697e-06 5.27845e-07 2.718 ||| 0-0 ||| 205 668016 +a ||| with the special features ||| 1 0.0571592 1.49697e-06 1.61433e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| with the special ||| 0.2 0.0571592 1.49697e-06 8.77351e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| with the thrust ||| 0.0333333 0.0571592 1.49697e-06 1.33242e-08 2.718 ||| 0-0 ||| 30 668016 +a ||| with the utmost speed ||| 0.333333 0.0571592 1.49697e-06 2.47585e-13 2.718 ||| 0-0 ||| 3 668016 +a ||| with the utmost ||| 0.00625 0.0571592 1.49697e-06 1.25043e-08 2.718 ||| 0-0 ||| 160 668016 +a ||| with the various speakers that the governments ||| 1 0.0571592 1.49697e-06 1.12902e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| with the various speakers that the ||| 1 0.0571592 1.49697e-06 3.30123e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| with the various speakers that ||| 1 0.0571592 1.49697e-06 5.37731e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| with the various speakers ||| 0.5 0.0571592 1.49697e-06 3.19667e-12 2.718 ||| 0-0 ||| 2 668016 +a ||| with the various ||| 0.00588235 0.0571592 1.49697e-06 1.58251e-07 2.718 ||| 0-0 ||| 170 668016 +a ||| with the voters ||| 0.142857 0.0571592 1.49697e-06 5.94466e-09 2.718 ||| 0-0 ||| 7 668016 +a ||| with the ||| 0.0033223 0.0571592 0.000407176 0.00102494 2.718 ||| 0-0 ||| 81871 668016 +a ||| with their backs to the ||| 1 0.0571592 1.49697e-06 8.33959e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| with their backs to ||| 1 0.0571592 1.49697e-06 1.35842e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| with their backs ||| 0.5 0.0571592 1.49697e-06 1.52875e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| with their ideas ||| 0.5 0.0571592 1.49697e-06 6.83101e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| with their presence ||| 0.142857 0.0571592 1.49697e-06 7.45025e-10 2.718 ||| 0-0 ||| 7 668016 +a ||| with their ||| 0.00290557 0.0571592 8.98182e-06 1.93513e-05 2.718 ||| 0-0 ||| 2065 668016 +a ||| with them as they leave for ||| 1 0.0683377 1.49697e-06 1.99991e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| with them into ||| 0.333333 0.107578 1.49697e-06 1.0419e-07 2.718 ||| 0-2 ||| 3 668016 +a ||| with them over the ||| 0.333333 0.0571592 1.49697e-06 1.32379e-09 2.718 ||| 0-0 ||| 3 668016 +a ||| with them over ||| 0.2 0.0571592 1.49697e-06 2.1563e-08 2.718 ||| 0-0 ||| 5 668016 +a ||| with them to ||| 0.0571429 0.229811 2.99394e-06 6.00859e-06 2.718 ||| 0-2 ||| 35 668016 +a ||| with them ||| 0.00892857 0.0571592 1.94606e-05 4.47829e-05 2.718 ||| 0-0 ||| 1456 668016 +a ||| with these countries ||| 0.00395257 0.0571592 1.49697e-06 6.57431e-09 2.718 ||| 0-0 ||| 253 668016 +a ||| with these ||| 0.00121729 0.0571592 2.99394e-06 1.73145e-05 2.718 ||| 0-0 ||| 1643 668016 +a ||| with this in mind , let ||| 1 0.0571592 1.49697e-06 2.83276e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| with this in mind , ||| 0.00308642 0.0571592 1.49697e-06 6.93624e-11 2.718 ||| 0-0 ||| 324 668016 +a ||| with this in mind ||| 0.00212766 0.0571592 1.49697e-06 5.81633e-10 2.718 ||| 0-0 ||| 470 668016 +a ||| with this in ||| 0.00497512 0.0571592 2.99394e-06 2.30898e-06 2.718 ||| 0-0 ||| 402 668016 +a ||| with this task ||| 0.166667 0.0571592 1.49697e-06 1.35921e-08 2.718 ||| 0-0 ||| 6 668016 +a ||| with this ||| 0.00135931 0.0571592 1.34727e-05 0.000107874 2.718 ||| 0-0 ||| 6621 668016 +a ||| with those of ||| 0.00854701 0.0380035 2.99394e-06 3.57572e-07 2.718 ||| 0-0 0-2 ||| 234 668016 +a ||| with those who ||| 0.00233645 0.0571592 1.49697e-06 1.06624e-08 2.718 ||| 0-0 ||| 428 668016 +a ||| with those ||| 0.000641026 0.0571592 1.49697e-06 1.20889e-05 2.718 ||| 0-0 ||| 1560 668016 +a ||| with today ||| 0.0208333 0.0571592 1.49697e-06 7.5345e-06 2.718 ||| 0-0 ||| 48 668016 +a ||| with traditionally ||| 0.333333 0.0571592 1.49697e-06 6.67804e-08 2.718 ||| 0-0 ||| 3 668016 +a ||| with under the cooperation procedure this will ||| 1 0.0571592 1.49697e-06 1.90085e-19 2.718 ||| 0-0 ||| 1 668016 +a ||| with under the cooperation procedure this ||| 1 0.0571592 1.49697e-06 2.19721e-17 2.718 ||| 0-0 ||| 1 668016 +a ||| with under the cooperation procedure ||| 1 0.0571592 1.49697e-06 3.40052e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| with under the cooperation ||| 1 0.0571592 1.49697e-06 3.38697e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| with under the ||| 0.166667 0.0571592 1.49697e-06 3.67749e-07 2.718 ||| 0-0 ||| 6 668016 +a ||| with under ||| 0.0434783 0.0571592 1.49697e-06 5.9902e-06 2.718 ||| 0-0 ||| 23 668016 +a ||| with us , ||| 0.00425532 0.0571592 1.49697e-06 5.73837e-06 2.718 ||| 0-0 ||| 235 668016 +a ||| with us in ||| 0.00598802 0.0587624 1.49697e-06 1.10733e-06 2.718 ||| 0-2 ||| 167 668016 +a ||| with us into ||| 1 0.107578 1.49697e-06 1.11951e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| with us on ||| 0.012987 0.0782999 1.49697e-06 6.99162e-07 2.718 ||| 0-2 ||| 77 668016 +a ||| with us to ||| 0.0163934 0.229811 1.49697e-06 6.45614e-06 2.718 ||| 0-2 ||| 61 668016 +a ||| with us ||| 0.00987383 0.0571592 2.69455e-05 4.81186e-05 2.718 ||| 0-0 ||| 1823 668016 +a ||| with various ||| 0.00653595 0.0571592 1.49697e-06 2.57772e-06 2.718 ||| 0-0 ||| 153 668016 +a ||| with very ||| 0.0168539 0.0571592 4.49091e-06 5.80906e-05 2.718 ||| 0-0 ||| 178 668016 +a ||| with vis-à-vis ||| 1 0.243488 1.49697e-06 1.2546e-06 2.718 ||| 0-1 ||| 1 668016 +a ||| with weapons know-how ||| 1 0.0571592 1.49697e-06 1.63996e-12 2.718 ||| 0-0 ||| 1 668016 +a ||| with weapons ||| 0.0243902 0.0571592 1.49697e-06 3.48928e-07 2.718 ||| 0-0 ||| 41 668016 +a ||| with what is presumed to ||| 1 0.0571592 1.49697e-06 7.17599e-14 2.718 ||| 0-0 ||| 1 668016 +a ||| with what is presumed ||| 1 0.0571592 1.49697e-06 8.07578e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| with what is ||| 0.0134228 0.0571592 2.99394e-06 7.34162e-07 2.718 ||| 0-0 ||| 149 668016 +a ||| with what was said in the debate ||| 1 0.0587624 1.49697e-06 8.43953e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| with what was said in the ||| 1 0.0587624 1.49697e-06 4.26454e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| with what was said in ||| 0.25 0.0587624 1.49697e-06 6.94644e-13 2.718 ||| 0-4 ||| 4 668016 +a ||| with what were ||| 1 0.0571592 1.49697e-06 4.19634e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| with what ||| 0.00435594 0.0571592 1.04788e-05 2.34249e-05 2.718 ||| 0-0 ||| 1607 668016 +a ||| with which she also continuously underlines ||| 0.5 0.0571592 1.49697e-06 1.79128e-21 2.718 ||| 0-0 ||| 2 668016 +a ||| with which she also continuously ||| 0.5 0.0571592 1.49697e-06 8.14216e-16 2.718 ||| 0-0 ||| 2 668016 +a ||| with which she also ||| 0.5 0.0571592 1.49697e-06 2.03554e-10 2.718 ||| 0-0 ||| 2 668016 +a ||| with which she ||| 0.0833333 0.0571592 1.49697e-06 4.03189e-08 2.718 ||| 0-0 ||| 12 668016 +a ||| with which we are ||| 0.0102041 0.0571592 1.49697e-06 2.44275e-08 2.718 ||| 0-0 ||| 98 668016 +a ||| with which we ||| 0.00380228 0.0571592 1.49697e-06 1.60996e-06 2.718 ||| 0-0 ||| 263 668016 +a ||| with which ||| 0.00423315 0.0571592 1.94606e-05 0.000141818 2.718 ||| 0-0 ||| 3071 668016 +a ||| with yet ||| 0.0909091 0.0571592 1.49697e-06 4.41585e-06 2.718 ||| 0-0 ||| 11 668016 +a ||| with you , on behalf of ||| 0.5 0.0782999 1.49697e-06 1.61725e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| with you , on behalf ||| 0.5 0.0782999 1.49697e-06 2.97486e-11 2.718 ||| 0-3 ||| 2 668016 +a ||| with you , on ||| 0.333333 0.0782999 1.49697e-06 9.34021e-08 2.718 ||| 0-3 ||| 3 668016 +a ||| with you , ||| 0.0057971 0.0571592 2.99394e-06 6.42824e-06 2.718 ||| 0-0 ||| 345 668016 +a ||| with you at the ||| 0.2 0.204175 1.49697e-06 4.31395e-08 2.718 ||| 0-2 ||| 5 668016 +a ||| with you at ||| 0.0909091 0.204175 1.49697e-06 7.02692e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| with you in ||| 0.017094 0.0579608 2.99394e-06 3.23866e-06 2.718 ||| 0-0 0-2 ||| 117 668016 +a ||| with you to ||| 0.0178571 0.229811 1.49697e-06 7.2323e-06 2.718 ||| 0-2 ||| 56 668016 +a ||| with you ||| 0.0032543 0.0571592 1.04788e-05 5.39035e-05 2.718 ||| 0-0 ||| 2151 668016 +a ||| with your ||| 0.00379867 0.0571592 5.98788e-06 4.27228e-06 2.718 ||| 0-0 ||| 1053 668016 +a ||| with ||| 0.0440554 0.0571592 0.0182541 0.0166951 2.718 ||| 0-0 ||| 276788 668016 +a ||| withdrawing ||| 0.00204918 0.0025189 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 488 668016 +a ||| withheld , through ||| 0.5 0.230708 1.49697e-06 1.70634e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| withheld from ||| 0.166667 0.0435582 1.49697e-06 1.29578e-08 2.718 ||| 0-1 ||| 6 668016 +a ||| within 1.8 ||| 0.25 0.0123496 1.49697e-06 3.4818e-10 2.718 ||| 0-0 ||| 4 668016 +a ||| within Europe ||| 0.00162338 0.0123496 1.49697e-06 2.51684e-07 2.718 ||| 0-0 ||| 616 668016 +a ||| within NATO , ||| 0.0909091 0.0123496 1.49697e-06 4.27084e-10 2.718 ||| 0-0 ||| 11 668016 +a ||| within NATO ||| 0.0181818 0.0123496 1.49697e-06 3.58128e-09 2.718 ||| 0-0 ||| 55 668016 +a ||| within a few minutes to ||| 1 0.229811 1.49697e-06 9.2204e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| within a period of 12 to ||| 1 0.0123496 1.49697e-06 2.60192e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| within a period of 12 ||| 1 0.0123496 1.49697e-06 2.92818e-15 2.718 ||| 0-0 ||| 1 668016 +a ||| within a period of ||| 0.0243902 0.0123496 1.49697e-06 2.09155e-10 2.718 ||| 0-0 ||| 41 668016 +a ||| within a period ||| 0.0227273 0.0123496 1.49697e-06 3.84732e-09 2.718 ||| 0-0 ||| 44 668016 +a ||| within a ||| 0.00312175 0.0123496 8.98182e-06 2.20477e-05 2.718 ||| 0-0 ||| 1922 668016 +a ||| within about ||| 0.285714 0.0324928 2.99394e-06 2.50655e-06 2.718 ||| 0-0 0-1 ||| 7 668016 +a ||| within an appropriate ||| 1 0.0123496 1.49697e-06 2.97573e-10 2.718 ||| 0-0 ||| 1 668016 +a ||| within an ||| 0.00645161 0.0123496 1.49697e-06 2.21079e-06 2.718 ||| 0-0 ||| 155 668016 +a ||| within arm ||| 0.5 0.0123496 1.49697e-06 8.05788e-09 2.718 ||| 0-0 ||| 2 668016 +a ||| within arm ’ ||| 1 0.0123496 1.49697e-06 1.40376e-11 2.718 ||| 0-0 ||| 1 668016 +a ||| within it ||| 0.0162162 0.0123496 4.49091e-06 8.84536e-06 2.718 ||| 0-0 ||| 185 668016 +a ||| within limits ||| 0.111111 0.0123496 1.49697e-06 1.34298e-08 2.718 ||| 0-0 ||| 9 668016 +a ||| within my acquaintance who have been known ||| 1 0.0123496 1.49697e-06 1.36458e-24 2.718 ||| 0-0 ||| 1 668016 +a ||| within my acquaintance who have been ||| 1 0.0123496 1.49697e-06 1.2394e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| within my acquaintance who have ||| 1 0.0123496 1.49697e-06 3.71167e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| within my acquaintance who ||| 1 0.0123496 1.49697e-06 3.10346e-16 2.718 ||| 0-0 ||| 1 668016 +a ||| within my acquaintance ||| 1 0.0123496 1.49697e-06 3.51866e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| within my ||| 0.00854701 0.0123496 1.49697e-06 3.19878e-07 2.718 ||| 0-0 ||| 117 668016 +a ||| within our grasp ||| 0.0434783 0.0123496 1.49697e-06 5.4203e-12 2.718 ||| 0-0 ||| 23 668016 +a ||| within our reach , ||| 0.111111 0.0123496 1.49697e-06 6.6276e-12 2.718 ||| 0-0 ||| 9 668016 +a ||| within our reach ||| 0.027027 0.0123496 1.49697e-06 5.55752e-11 2.718 ||| 0-0 ||| 37 668016 +a ||| within our ||| 0.00441826 0.0123496 4.49091e-06 6.86114e-07 2.718 ||| 0-0 ||| 679 668016 +a ||| within reach ||| 0.012987 0.182593 1.49697e-06 3.06708e-07 2.718 ||| 0-1 ||| 77 668016 +a ||| within the EU ||| 0.000576369 0.0123496 1.49697e-06 1.51094e-08 2.718 ||| 0-0 ||| 1735 668016 +a ||| within the competence of the ||| 0.0127389 0.0123496 2.99394e-06 2.45615e-12 2.718 ||| 0-0 ||| 157 668016 +a ||| within the competence of ||| 0.0154639 0.0123496 4.49091e-06 4.00078e-11 2.718 ||| 0-0 ||| 194 668016 +a ||| within the competence ||| 0.00938967 0.0123496 2.99394e-06 7.35924e-10 2.718 ||| 0-0 ||| 213 668016 +a ||| within the scope of ||| 0.00209644 0.0188479 1.49697e-06 3.78561e-11 2.718 ||| 0-3 ||| 477 668016 +a ||| within the ||| 0.000846627 0.0123496 2.84424e-05 3.05363e-05 2.718 ||| 0-0 ||| 22442 668016 +a ||| within which ||| 0.00298507 0.0123496 1.49697e-06 4.22521e-06 2.718 ||| 0-0 ||| 335 668016 +a ||| within ||| 0.00738099 0.0123496 0.000402685 0.0004974 2.718 ||| 0-0 ||| 36445 668016 +a ||| without a doubt that humanitarian aid for ||| 1 0.0683377 1.49697e-06 7.53804e-22 2.718 ||| 0-6 ||| 1 668016 +a ||| without being ||| 0.00240385 0.0015466 1.49697e-06 1.16962e-07 2.718 ||| 0-0 ||| 416 668016 +a ||| without charge ||| 0.016129 0.0015466 1.49697e-06 2.07144e-09 2.718 ||| 0-0 ||| 62 668016 +a ||| without delay , in ||| 0.1 0.0587624 1.49697e-06 4.95633e-11 2.718 ||| 0-3 ||| 10 668016 +a ||| without delay , ||| 0.008 0.0015466 1.49697e-06 1.53413e-10 2.718 ||| 0-0 ||| 125 668016 +a ||| without delay ||| 0.00221484 0.0015466 2.99394e-06 1.28643e-09 2.718 ||| 0-0 ||| 903 668016 +a ||| without embarking on ||| 1 0.0782999 1.49697e-06 3.60502e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| without equal on the ||| 1 0.0782999 1.49697e-06 2.94405e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| without equal on ||| 1 0.0782999 1.49697e-06 4.79552e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| without fail for ||| 0.5 0.0683377 1.49697e-06 4.3975e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| without fail take care to ||| 0.5 0.229811 1.49697e-06 6.83156e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| without further ||| 0.00653595 0.0015466 1.49697e-06 1.98636e-08 2.718 ||| 0-0 ||| 153 668016 +a ||| without good ||| 0.0277778 0.0015466 1.49697e-06 2.13145e-08 2.718 ||| 0-0 ||| 36 668016 +a ||| without interest for ||| 1 0.0683377 1.49697e-06 9.14517e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| without making a ||| 0.0588235 0.0275406 1.49697e-06 4.4709e-09 2.718 ||| 0-1 ||| 17 668016 +a ||| without making ||| 0.00653595 0.0275406 1.49697e-06 1.00864e-07 2.718 ||| 0-1 ||| 153 668016 +a ||| without the involvement and cooperation of ||| 1 0.0188479 1.49697e-06 1.38426e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| without the ||| 0.00097371 0.0015466 2.99394e-06 2.5232e-06 2.718 ||| 0-0 ||| 2054 668016 +a ||| without trace ||| 0.0416667 0.0015466 1.49697e-06 2.2194e-10 2.718 ||| 0-0 ||| 24 668016 +a ||| without ||| 0.000893744 0.0015466 4.04182e-05 4.11e-05 2.718 ||| 0-0 ||| 30210 668016 +a ||| witness of ||| 0.333333 0.0188479 1.49697e-06 4.2593e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| witness to a ||| 0.0384615 0.229811 1.49697e-06 2.23595e-07 2.718 ||| 0-1 ||| 26 668016 +a ||| witness to the ||| 0.0204082 0.229811 1.49697e-06 3.09681e-07 2.718 ||| 0-1 ||| 49 668016 +a ||| witness to ||| 0.0131579 0.229811 2.99394e-06 5.04434e-06 2.718 ||| 0-1 ||| 152 668016 +a ||| witnessed scenes of ||| 0.5 0.0188479 1.49697e-06 2.15479e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| witnessing ||| 0.00956023 0.114514 7.48485e-06 7.85e-05 2.718 ||| 0-0 ||| 523 668016 +a ||| woman , has just been deported ||| 1 0.0994152 1.49697e-06 6.93503e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| woman on ||| 0.0666667 0.0782999 1.49697e-06 6.56286e-07 2.718 ||| 0-1 ||| 15 668016 +a ||| women , are particularly vulnerable to ||| 1 0.229811 1.49697e-06 1.35755e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| women at the ||| 0.0714286 0.204175 1.49697e-06 2.48232e-07 2.718 ||| 0-1 ||| 14 668016 +a ||| women at ||| 0.00884956 0.204175 1.49697e-06 4.04341e-06 2.718 ||| 0-1 ||| 113 668016 +a ||| women from ethnic minorities , ||| 0.5 0.0435582 1.49697e-06 1.47782e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| women from ethnic minorities ||| 0.333333 0.0435582 1.49697e-06 1.23921e-16 2.718 ||| 0-1 ||| 3 668016 +a ||| women from ethnic ||| 1 0.0435582 1.49697e-06 9.835e-12 2.718 ||| 0-1 ||| 1 668016 +a ||| women from ||| 0.0047619 0.0435582 1.49697e-06 8.55217e-07 2.718 ||| 0-1 ||| 210 668016 +a ||| women in ||| 0.000781555 0.0587624 2.99394e-06 7.1378e-06 2.718 ||| 0-1 ||| 2559 668016 +a ||| women to ||| 0.00203666 0.229811 1.49697e-06 4.16158e-05 2.718 ||| 0-1 ||| 491 668016 +a ||| women who help their ||| 1 0.259976 1.49697e-06 7.98829e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| women who help ||| 1 0.259976 1.49697e-06 6.8918e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| women who ||| 0.0012987 0.0005736 1.49697e-06 4.65696e-09 2.718 ||| 0-1 ||| 770 668016 +a ||| won by ||| 0.03125 0.0337966 1.49697e-06 1.83473e-07 2.718 ||| 0-1 ||| 32 668016 +a ||| won from ||| 0.25 0.0435582 1.49697e-06 1.60533e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| won on the ||| 0.25 0.0782999 1.49697e-06 5.19352e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| won on ||| 0.0454545 0.0782999 1.49697e-06 8.45964e-07 2.718 ||| 0-1 ||| 22 668016 +a ||| wonder about ||| 0.016129 0.0526361 1.49697e-06 5.99677e-08 2.718 ||| 0-1 ||| 62 668016 +a ||| word about the ||| 0.00840336 0.0526361 1.49697e-06 3.1494e-08 2.718 ||| 0-1 ||| 119 668016 +a ||| word about ||| 0.00847458 0.0526361 2.99394e-06 5.13001e-07 2.718 ||| 0-1 ||| 236 668016 +a ||| word for word into ||| 1 0.107578 1.49697e-06 4.8381e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| word into ||| 0.5 0.107578 1.49697e-06 6.18364e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| word of thanks to ||| 0.0571429 0.229811 2.99394e-06 1.57031e-10 2.718 ||| 0-3 ||| 35 668016 +a ||| word of ||| 0.0103627 0.0188479 2.99394e-06 3.01109e-06 2.718 ||| 0-1 ||| 193 668016 +a ||| worded in ||| 0.027027 0.0587624 1.49697e-06 2.16297e-07 2.718 ||| 0-1 ||| 37 668016 +a ||| wording of the provisions on the ||| 0.5 0.0782999 1.49697e-06 8.57498e-15 2.718 ||| 0-4 ||| 2 668016 +a ||| wording of the provisions on ||| 0.5 0.0782999 1.49697e-06 1.39676e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| wording of ||| 0.00294985 0.0188479 1.49697e-06 4.14099e-07 2.718 ||| 0-1 ||| 339 668016 +a ||| words about ||| 0.00219298 0.0526361 1.49697e-06 1.13888e-06 2.718 ||| 0-1 ||| 456 668016 +a ||| words in talking ||| 0.333333 0.0587624 1.49697e-06 1.4855e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| words in ||| 0.0144928 0.0587624 2.99394e-06 1.35786e-05 2.718 ||| 0-1 ||| 138 668016 +a ||| words into ||| 0.00515464 0.107578 1.49697e-06 1.37279e-06 2.718 ||| 0-1 ||| 194 668016 +a ||| words of ||| 0.00490798 0.0188479 5.98788e-06 6.68474e-06 2.718 ||| 0-1 ||| 815 668016 +a ||| words on ||| 0.00273224 0.0782999 1.49697e-06 8.57345e-06 2.718 ||| 0-1 ||| 366 668016 +a ||| words to ||| 0.0112045 0.229811 5.98788e-06 7.91682e-05 2.718 ||| 0-1 ||| 357 668016 +a ||| work against ||| 0.0104167 0.05146 1.49697e-06 1.64548e-06 2.718 ||| 0-1 ||| 96 668016 +a ||| work as a ||| 0.015873 0.0243476 1.49697e-06 2.46138e-07 2.718 ||| 0-1 ||| 63 668016 +a ||| work as ||| 0.00643777 0.0243476 4.49091e-06 5.55293e-06 2.718 ||| 0-1 ||| 466 668016 +a ||| work at a ||| 0.0588235 0.204175 1.49697e-06 9.54973e-07 2.718 ||| 0-1 ||| 17 668016 +a ||| work at ||| 0.00925926 0.204175 2.99394e-06 2.15444e-05 2.718 ||| 0-1 ||| 216 668016 +a ||| work being carried out on them ||| 1 0.0782999 1.49697e-06 2.0692e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| work being carried out on ||| 1 0.0782999 1.49697e-06 7.71399e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| work for ||| 0.00346821 0.0683377 4.49091e-06 2.33251e-05 2.718 ||| 0-1 ||| 865 668016 +a ||| work in accordance with ||| 0.166667 0.0571592 1.49697e-06 1.79831e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| work in hand ||| 0.0909091 0.0587624 1.49697e-06 1.50836e-08 2.718 ||| 0-1 ||| 11 668016 +a ||| work in ||| 0.00302115 0.0587624 1.34727e-05 3.80322e-05 2.718 ||| 0-1 ||| 2979 668016 +a ||| work of the ||| 0.000469704 0.0188479 1.49697e-06 1.14945e-06 2.718 ||| 0-1 ||| 2129 668016 +a ||| work of ||| 0.000932836 0.0188479 4.49091e-06 1.87232e-05 2.718 ||| 0-1 ||| 3216 668016 +a ||| work on these ||| 0.012987 0.0782999 1.49697e-06 2.49041e-08 2.718 ||| 0-1 ||| 77 668016 +a ||| work on this ||| 0.00145985 0.0782999 1.49697e-06 1.55159e-07 2.718 ||| 0-1 ||| 685 668016 +a ||| work on ||| 0.00278121 0.0782999 1.34727e-05 2.40132e-05 2.718 ||| 0-1 ||| 3236 668016 +a ||| work to save ||| 1 0.229811 1.49697e-06 3.34829e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| work to ||| 0.00308642 0.229811 5.98788e-06 0.000221741 2.718 ||| 0-1 ||| 1296 668016 +a ||| work together to prevail ||| 0.25 0.229811 1.49697e-06 3.16963e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| work together to ||| 0.00239808 0.229811 1.49697e-06 1.33178e-07 2.718 ||| 0-2 ||| 417 668016 +a ||| work towards ||| 0.00248447 0.155507 2.99394e-06 2.13486e-06 2.718 ||| 0-1 ||| 805 668016 +a ||| work will be required to ||| 0.5 0.229811 1.49697e-06 5.5173e-12 2.718 ||| 0-4 ||| 2 668016 +a ||| work will need to be ||| 0.142857 0.229811 1.49697e-06 3.18766e-11 2.718 ||| 0-3 ||| 7 668016 +a ||| work will need to ||| 0.125 0.229811 1.49697e-06 1.75891e-09 2.718 ||| 0-3 ||| 8 668016 +a ||| work with professional ||| 1 0.0571592 1.49697e-06 1.75429e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| work with ||| 0.000713776 0.0571592 1.49697e-06 1.0568e-05 2.718 ||| 0-1 ||| 1401 668016 +a ||| work ’ to ||| 1 0.229811 1.49697e-06 3.86295e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| worked in ||| 0.00571429 0.0587624 1.49697e-06 2.61359e-06 2.718 ||| 0-1 ||| 175 668016 +a ||| worked on ||| 0.00294985 0.0782999 1.49697e-06 1.6502e-06 2.718 ||| 0-1 ||| 339 668016 +a ||| worked out at last , some ||| 1 0.204175 1.49697e-06 1.60894e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| worked out at last , ||| 1 0.204175 1.49697e-06 1.47704e-13 2.718 ||| 0-2 ||| 1 668016 +a ||| worked out at last ||| 1 0.204175 1.49697e-06 1.23856e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| worked out at ||| 0.1 0.204175 1.49697e-06 5.67106e-09 2.718 ||| 0-2 ||| 10 668016 +a ||| worked out on the ||| 0.5 0.0782999 1.49697e-06 3.88053e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| worked out on ||| 0.2 0.0782999 1.49697e-06 6.32092e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| worked through at a ||| 1 0.204175 1.49697e-06 3.02077e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| worked through at ||| 1 0.204175 1.49697e-06 6.81493e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| worked to the ||| 0.0769231 0.229811 1.49697e-06 9.35496e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| worked to ||| 0.00934579 0.229811 1.49697e-06 1.52381e-05 2.718 ||| 0-1 ||| 107 668016 +a ||| worked together very closely on this . ||| 1 0.0782999 1.49697e-06 5.97321e-21 2.718 ||| 0-4 ||| 1 668016 +a ||| worked together very closely on this ||| 1 0.0782999 1.49697e-06 1.97201e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| worked together very closely on ||| 1 0.0782999 1.49697e-06 3.05198e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| worked up ||| 0.133333 0.0195077 2.99394e-06 5.34006e-08 2.718 ||| 0-1 ||| 15 668016 +a ||| workers and ||| 0.000727273 0.00205525 1.49697e-06 9.16513e-08 2.718 ||| 0-0 0-1 ||| 1375 668016 +a ||| workers are to have a better time ||| 1 0.229811 1.49697e-06 5.34419e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| workers are to have a better ||| 1 0.229811 1.49697e-06 3.25528e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| workers are to have a ||| 1 0.229811 1.49697e-06 1.916e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| workers are to have ||| 0.5 0.229811 1.49697e-06 4.32253e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| workers are to ||| 0.125 0.229811 1.49697e-06 3.61421e-07 2.718 ||| 0-2 ||| 8 668016 +a ||| workers into the ||| 0.0434783 0.107578 1.49697e-06 2.5358e-08 2.718 ||| 0-1 ||| 23 668016 +a ||| workers into ||| 0.0606061 0.107578 2.99394e-06 4.13052e-07 2.718 ||| 0-1 ||| 33 668016 +a ||| workers to allow ||| 1 0.229811 1.49697e-06 5.77886e-09 2.718 ||| 0-1 ||| 1 668016 +a ||| workers to ||| 0.00383142 0.229811 1.49697e-06 2.38205e-05 2.718 ||| 0-1 ||| 261 668016 +a ||| workers ||| 0.000282865 0.0025232 5.98788e-06 4.75e-05 2.718 ||| 0-0 ||| 14141 668016 +a ||| working against ||| 0.0263158 0.05146 1.49697e-06 4.94945e-07 2.718 ||| 0-1 ||| 38 668016 +a ||| working for ||| 0.00379507 0.0683377 2.99394e-06 7.01595e-06 2.718 ||| 0-1 ||| 527 668016 +a ||| working group to ||| 0.0232558 0.229811 1.49697e-06 8.59063e-09 2.718 ||| 0-2 ||| 43 668016 +a ||| working in the Union to join them ||| 1 0.229811 1.49697e-06 6.13283e-18 2.718 ||| 0-4 ||| 1 668016 +a ||| working in the Union to join ||| 1 0.229811 1.49697e-06 2.28632e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| working in the Union to ||| 1 0.229811 1.49697e-06 4.8853e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| working in the interests ||| 0.333333 0.0587624 1.49697e-06 9.62859e-11 2.718 ||| 0-1 ||| 3 668016 +a ||| working in the ||| 0.00214592 0.0587624 1.49697e-06 7.02304e-07 2.718 ||| 0-1 ||| 466 668016 +a ||| working in ||| 0.00146413 0.0587624 2.99394e-06 1.14397e-05 2.718 ||| 0-1 ||| 1366 668016 +a ||| working on the basis of ||| 0.037037 0.0782999 1.49697e-06 1.43145e-11 2.718 ||| 0-1 ||| 27 668016 +a ||| working on the basis ||| 0.0263158 0.0782999 1.49697e-06 2.63308e-10 2.718 ||| 0-1 ||| 38 668016 +a ||| working on the ||| 0.00328947 0.0782999 1.49697e-06 4.43429e-07 2.718 ||| 0-1 ||| 304 668016 +a ||| working on ||| 0.00340832 0.0782999 7.48485e-06 7.22294e-06 2.718 ||| 0-1 ||| 1467 668016 +a ||| working through ||| 0.016129 0.230708 1.49697e-06 1.51351e-06 2.718 ||| 0-1 ||| 62 668016 +a ||| working to prevent further deaths ||| 0.5 0.229811 1.49697e-06 1.41659e-17 2.718 ||| 0-1 ||| 2 668016 +a ||| working to prevent further ||| 0.5 0.229811 1.49697e-06 1.6472e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| working to prevent ||| 0.142857 0.229811 1.49697e-06 3.40824e-09 2.718 ||| 0-1 ||| 7 668016 +a ||| working to ||| 0.00251889 0.229811 1.49697e-06 6.66974e-05 2.718 ||| 0-1 ||| 397 668016 +a ||| working towards ||| 0.00258398 0.155507 1.49697e-06 6.42143e-07 2.718 ||| 0-1 ||| 387 668016 +a ||| working week to ||| 0.142857 0.229811 1.49697e-06 2.04094e-09 2.718 ||| 0-2 ||| 7 668016 +a ||| working with standards ||| 0.333333 0.0571592 1.49697e-06 2.32366e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| working with ||| 0.00105932 0.0571592 1.49697e-06 3.17875e-06 2.718 ||| 0-1 ||| 944 668016 +a ||| workplace to ||| 0.0625 0.229811 1.49697e-06 1.5063e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| works to ||| 0.015873 0.229811 1.49697e-06 1.45025e-05 2.718 ||| 0-1 ||| 63 668016 +a ||| workshops ||| 0.00729927 0.0064516 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 137 668016 +a ||| world , to ||| 0.0232558 0.229811 1.49697e-06 9.51637e-06 2.718 ||| 0-2 ||| 43 668016 +a ||| world for ||| 0.0119048 0.0683377 1.49697e-06 8.39409e-06 2.718 ||| 0-1 ||| 84 668016 +a ||| world over ||| 0.0227273 0.0682544 1.49697e-06 5.29157e-07 2.718 ||| 0-1 ||| 44 668016 +a ||| world to ||| 0.003861 0.229811 1.49697e-06 7.97987e-05 2.718 ||| 0-1 ||| 259 668016 +a ||| world with ||| 0.00854701 0.0571592 1.49697e-06 3.80314e-06 2.718 ||| 0-1 ||| 117 668016 +a ||| world-wide audiovisual ||| 0.111111 0.0543478 1.49697e-06 5.48e-11 2.718 ||| 0-0 ||| 9 668016 +a ||| world-wide ||| 0.00374532 0.0543478 1.49697e-06 1.37e-05 2.718 ||| 0-0 ||| 267 668016 +a ||| worlds , will ||| 0.25 0.0561595 1.49697e-06 6.71819e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| worldwide , ||| 0.00395257 0.0735559 1.49697e-06 4.00577e-05 2.718 ||| 0-0 ||| 253 668016 +a ||| worldwide free trade , immigration and absurd ||| 1 0.0735559 1.49697e-06 3.84222e-25 2.718 ||| 0-0 ||| 1 668016 +a ||| worldwide free trade , immigration and ||| 1 0.0735559 1.49697e-06 6.62452e-20 2.718 ||| 0-0 ||| 1 668016 +a ||| worldwide free trade , immigration ||| 1 0.0735559 1.49697e-06 5.28866e-18 2.718 ||| 0-0 ||| 1 668016 +a ||| worldwide free trade , ||| 1 0.0735559 1.49697e-06 4.0682e-13 2.718 ||| 0-0 ||| 1 668016 +a ||| worldwide free trade ||| 0.333333 0.0735559 1.49697e-06 3.41135e-12 2.718 ||| 0-0 ||| 3 668016 +a ||| worldwide free ||| 1 0.0735559 1.49697e-06 3.91659e-08 2.718 ||| 0-0 ||| 1 668016 +a ||| worldwide network of ||| 0.25 0.0188479 1.49697e-06 4.25457e-12 2.718 ||| 0-2 ||| 4 668016 +a ||| worldwide ||| 0.00237417 0.0735559 7.48485e-06 0.0003359 2.718 ||| 0-0 ||| 2106 668016 +a ||| worries ||| 0.00261097 0.0311891 1.49697e-06 1.46e-05 2.718 ||| 0-0 ||| 383 668016 +a ||| worrying about this ||| 0.333333 0.0526361 1.49697e-06 3.64682e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| worrying about ||| 0.016129 0.0526361 1.49697e-06 5.64402e-08 2.718 ||| 0-1 ||| 62 668016 +a ||| worrying for them ||| 0.5 0.0683377 1.49697e-06 1.10704e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| worrying for ||| 0.0294118 0.0683377 1.49697e-06 4.12703e-07 2.718 ||| 0-1 ||| 34 668016 +a ||| worrying increase in the number of ||| 0.333333 0.0587624 1.49697e-06 1.43575e-16 2.718 ||| 0-2 ||| 3 668016 +a ||| worrying increase in the number ||| 0.333333 0.0587624 1.49697e-06 2.641e-15 2.718 ||| 0-2 ||| 3 668016 +a ||| worrying increase in the ||| 0.166667 0.0587624 1.49697e-06 5.33751e-12 2.718 ||| 0-2 ||| 6 668016 +a ||| worrying increase in ||| 0.0588235 0.0587624 1.49697e-06 8.69418e-11 2.718 ||| 0-2 ||| 17 668016 +a ||| worrying to see ||| 0.166667 0.229811 1.49697e-06 2.76441e-09 2.718 ||| 0-1 ||| 6 668016 +a ||| worrying to ||| 0.0625 0.229811 1.49697e-06 3.92338e-06 2.718 ||| 0-1 ||| 16 668016 +a ||| worrying when it comes to ||| 1 0.229811 1.49697e-06 1.39443e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| worse off ||| 0.0108696 0.0893962 1.49697e-06 2.72304e-08 2.718 ||| 0-1 ||| 92 668016 +a ||| worst comes to ||| 0.2 0.229811 1.49697e-06 2.11476e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| worth EUR ||| 0.0212766 0.0097655 1.49697e-06 1.10185e-08 2.718 ||| 0-1 ||| 47 668016 +a ||| worth about ||| 0.2 0.0526361 1.49697e-06 3.64341e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| worth hoping in ||| 0.5 0.0587624 1.49697e-06 4.99556e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| worth mentioning , in ||| 1 0.0587624 1.49697e-06 3.00462e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| worth of ||| 0.0173913 0.0188479 2.99394e-06 2.13853e-06 2.718 ||| 0-1 ||| 115 668016 +a ||| worthwhile contribution to their ||| 0.5 0.229811 1.49697e-06 3.54468e-13 2.718 ||| 0-2 ||| 2 668016 +a ||| worthwhile contribution to ||| 0.142857 0.229811 2.99394e-06 3.05813e-10 2.718 ||| 0-2 ||| 14 668016 +a ||| worthy of praise ||| 0.0526316 0.0188479 1.49697e-06 8.19916e-12 2.718 ||| 0-1 ||| 19 668016 +a ||| worthy of ||| 0.00569801 0.0188479 5.98788e-06 5.85654e-07 2.718 ||| 0-1 ||| 702 668016 +a ||| would , in ||| 0.0239234 0.0587624 7.48485e-06 4.20499e-05 2.718 ||| 0-2 ||| 209 668016 +a ||| would affect ||| 0.0111111 0.330659 1.49697e-06 9.27255e-06 2.718 ||| 0-1 ||| 90 668016 +a ||| would again ||| 0.0208333 0.0700825 1.49697e-06 1.3606e-05 2.718 ||| 0-1 ||| 48 668016 +a ||| would already have to be known ||| 0.5 0.229811 1.49697e-06 2.27194e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| would already have to be ||| 0.333333 0.229811 1.49697e-06 2.06353e-10 2.718 ||| 0-3 ||| 3 668016 +a ||| would already have to ||| 0.5 0.229811 1.49697e-06 1.13863e-08 2.718 ||| 0-3 ||| 2 668016 +a ||| would also help us ||| 0.25 0.259976 1.49697e-06 5.61674e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| would also help ||| 0.0208333 0.259976 1.49697e-06 1.94877e-07 2.718 ||| 0-2 ||| 48 668016 +a ||| would also like to extend ||| 0.125 0.229811 1.49697e-06 7.96264e-13 2.718 ||| 0-3 ||| 8 668016 +a ||| would also like to thank ||| 0.0144928 0.229811 4.49091e-06 1.95011e-12 2.718 ||| 0-3 ||| 207 668016 +a ||| would also like to ||| 0.0161616 0.229811 1.19758e-05 1.8432e-08 2.718 ||| 0-3 ||| 495 668016 +a ||| would also ||| 0.000536769 0.0006332 1.49697e-06 4.79112e-07 2.718 ||| 0-0 ||| 1863 668016 +a ||| would always argue in ||| 0.25 0.0587624 1.49697e-06 1.33426e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| would amount to ||| 0.0123457 0.229811 1.49697e-06 5.0018e-07 2.718 ||| 0-2 ||| 81 668016 +a ||| would answer ||| 0.1 0.0026107 1.49697e-06 1.23243e-07 2.718 ||| 0-1 ||| 10 668016 +a ||| would appeal for a ||| 0.333333 0.0683377 1.49697e-06 2.89484e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| would appeal for ||| 0.0769231 0.0683377 1.49697e-06 6.53083e-09 2.718 ||| 0-2 ||| 13 668016 +a ||| would appear to be some ||| 1 0.229811 1.49697e-06 3.54708e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| would appear to be ||| 0.00757576 0.229811 1.49697e-06 3.25629e-09 2.718 ||| 0-2 ||| 132 668016 +a ||| would appear to ||| 0.00980392 0.229811 1.49697e-06 1.79678e-07 2.718 ||| 0-2 ||| 102 668016 +a ||| would apply if ||| 0.25 0.0014881 1.49697e-06 1.09448e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| would apply to ||| 0.0172414 0.229811 1.49697e-06 2.95832e-07 2.718 ||| 0-2 ||| 58 668016 +a ||| would argue with me ||| 1 0.0571592 1.49697e-06 1.29784e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| would argue with ||| 0.2 0.0571592 1.49697e-06 2.15553e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| would ask it to introduce ||| 0.5 0.229811 1.49697e-06 2.56872e-13 2.718 ||| 0-3 ||| 2 668016 +a ||| would ask it to ||| 0.125 0.229811 1.49697e-06 5.02686e-09 2.718 ||| 0-3 ||| 8 668016 +a ||| would ask you to ||| 0.00249377 0.229811 1.49697e-06 9.12671e-10 2.718 ||| 0-3 ||| 401 668016 +a ||| would ask ||| 0.00605327 0.0082577 7.48485e-06 8.62699e-07 2.718 ||| 0-1 ||| 826 668016 +a ||| would be a sign of ||| 0.125 0.0188479 1.49697e-06 7.27902e-12 2.718 ||| 0-4 ||| 8 668016 +a ||| would be at ||| 0.016129 0.204175 1.49697e-06 3.61993e-06 2.718 ||| 0-2 ||| 62 668016 +a ||| would be concluded at ||| 1 0.204175 1.49697e-06 1.2887e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| would be desirable to ||| 0.166667 0.229811 1.49697e-06 4.69442e-10 2.718 ||| 0-3 ||| 6 668016 +a ||| would be detrimental to ||| 0.037037 0.229811 1.49697e-06 2.16093e-10 2.718 ||| 0-3 ||| 27 668016 +a ||| would be due to ||| 0.166667 0.229811 1.49697e-06 1.02979e-08 2.718 ||| 0-3 ||| 6 668016 +a ||| would be for the ||| 0.0217391 0.0683377 1.49697e-06 2.40602e-07 2.718 ||| 0-2 ||| 46 668016 +a ||| would be for ||| 0.00869565 0.0683377 1.49697e-06 3.91913e-06 2.718 ||| 0-2 ||| 115 668016 +a ||| would be forced ||| 0.025641 0.0684932 1.49697e-06 2.961e-08 2.718 ||| 0-2 ||| 39 668016 +a ||| would be fulfilled to anything approaching their ||| 1 0.1653 1.49697e-06 2.18212e-21 2.718 ||| 0-5 ||| 1 668016 +a ||| would be fulfilled to anything approaching ||| 1 0.1653 1.49697e-06 1.8826e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| would be given an increase in ||| 0.2 0.0587624 1.49697e-06 2.51847e-15 2.718 ||| 0-5 ||| 5 668016 +a ||| would be imposed on ||| 0.2 0.0782999 1.49697e-06 2.25139e-10 2.718 ||| 0-3 ||| 5 668016 +a ||| would be in ||| 0.0170213 0.0587624 5.98788e-06 6.39025e-06 2.718 ||| 0-2 ||| 235 668016 +a ||| would be incorporated after ||| 0.5 0.0341027 1.49697e-06 1.8021e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| would be kind enough to ||| 0.125 0.229811 1.49697e-06 3.0036e-12 2.718 ||| 0-4 ||| 8 668016 +a ||| would be misled ||| 1 0.229885 1.49697e-06 5.82841e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| would be necessary in ||| 0.333333 0.0587624 1.49697e-06 1.64421e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| would be needed across ||| 1 0.0490758 1.49697e-06 7.00673e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| would be obliged to ||| 0.0689655 0.229811 2.99394e-06 1.4195e-09 2.718 ||| 0-3 ||| 29 668016 +a ||| would be offering ||| 0.5 0.103522 1.49697e-06 1.8836e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| would be paid to ||| 0.5 0.229811 1.49697e-06 5.01484e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| would be referred to ||| 1 0.229811 1.49697e-06 3.56553e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| would be required to ||| 0.037037 0.229811 1.49697e-06 5.91274e-09 2.718 ||| 0-3 ||| 27 668016 +a ||| would be responsible for fulfilling ||| 1 0.0683377 1.49697e-06 3.76765e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| would be responsible for ||| 0.027027 0.0683377 1.49697e-06 5.79639e-10 2.718 ||| 0-3 ||| 37 668016 +a ||| would be subject to ||| 0.0227273 0.229811 1.49697e-06 2.01115e-08 2.718 ||| 0-3 ||| 44 668016 +a ||| would be supporting ||| 0.5 0.190621 1.49697e-06 1.21929e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| would be taken , even ||| 1 0.0495435 1.49697e-06 2.25616e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| would be to ||| 0.00922509 0.229811 7.48485e-06 3.72573e-05 2.718 ||| 0-2 ||| 542 668016 +a ||| would be unable to ||| 0.0357143 0.229811 1.49697e-06 1.01713e-09 2.718 ||| 0-3 ||| 28 668016 +a ||| would be wise to consider ||| 0.5 0.229811 1.49697e-06 3.85297e-14 2.718 ||| 0-3 ||| 2 668016 +a ||| would be wise to ||| 0.0625 0.229811 1.49697e-06 2.42173e-10 2.718 ||| 0-3 ||| 16 668016 +a ||| would be ||| 7.15205e-05 0.0003124 1.49697e-06 7.92861e-07 2.718 ||| 0-1 ||| 13982 668016 +a ||| would bring to ||| 0.111111 0.229811 1.49697e-06 6.39975e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| would call for ||| 0.030303 0.0683377 1.49697e-06 4.80081e-08 2.718 ||| 0-2 ||| 33 668016 +a ||| would call thoroughly ||| 0.1 0.0915663 1.49697e-06 1.35627e-10 2.718 ||| 0-2 ||| 10 668016 +a ||| would call ||| 0.00497512 0.0032909 1.49697e-06 2.78763e-07 2.718 ||| 0-1 ||| 201 668016 +a ||| would come about as a result of ||| 1 0.0243476 1.49697e-06 7.84566e-17 2.718 ||| 0-3 ||| 1 668016 +a ||| would come about as a result ||| 1 0.0243476 1.49697e-06 1.44317e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| would come about as a ||| 1 0.0243476 1.49697e-06 2.74107e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| would come about as ||| 1 0.0243476 1.49697e-06 6.18391e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| would come to ||| 0.0357143 0.229811 1.49697e-06 1.746e-06 2.718 ||| 0-2 ||| 28 668016 +a ||| would contribute to ||| 0.0111111 0.229811 1.49697e-06 7.99712e-08 2.718 ||| 0-2 ||| 90 668016 +a ||| would contribute ||| 0.00714286 0.0001732 1.49697e-06 5.28183e-09 2.718 ||| 0-1 ||| 140 668016 +a ||| would convince both ||| 0.5 0.328358 1.49697e-06 5.271e-09 2.718 ||| 0-1 ||| 2 668016 +a ||| would convince ||| 0.25 0.328358 1.49697e-06 3.18201e-06 2.718 ||| 0-1 ||| 4 668016 +a ||| would cover ||| 0.0350877 0.0050378 2.99394e-06 9.62467e-08 2.718 ||| 0-1 ||| 57 668016 +a ||| would deprive ||| 0.03125 0.334034 1.49697e-06 8.51548e-07 2.718 ||| 0-1 ||| 32 668016 +a ||| would do to ||| 0.142857 0.229811 1.49697e-06 7.06234e-06 2.718 ||| 0-2 ||| 7 668016 +a ||| would do well to follow its ||| 1 0.229811 1.49697e-06 1.57943e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| would do well to follow ||| 0.125 0.229811 1.49697e-06 1.10861e-12 2.718 ||| 0-3 ||| 8 668016 +a ||| would do well to ||| 0.0265487 0.229811 4.49091e-06 1.1198e-08 2.718 ||| 0-3 ||| 113 668016 +a ||| would encourage them to ||| 0.25 0.229811 1.49697e-06 2.12309e-10 2.718 ||| 0-3 ||| 4 668016 +a ||| would favour ||| 0.0243902 0.0017065 1.49697e-06 1.98362e-07 2.718 ||| 0-1 ||| 41 668016 +a ||| would find themselves in ||| 0.166667 0.0587624 1.49697e-06 5.04393e-11 2.718 ||| 0-3 ||| 6 668016 +a ||| would firstly like to ||| 0.0172414 0.229811 1.49697e-06 1.84006e-10 2.718 ||| 0-3 ||| 58 668016 +a ||| would for ||| 0.0909091 0.0683377 1.49697e-06 0.000216253 2.718 ||| 0-1 ||| 11 668016 +a ||| would force us to ||| 0.2 0.229811 1.49697e-06 1.00848e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| would give tax ||| 0.333333 0.0241455 1.49697e-06 2.08888e-10 2.718 ||| 0-1 ||| 3 668016 +a ||| would give ||| 0.00892857 0.0241455 5.98788e-06 3.29997e-06 2.718 ||| 0-1 ||| 448 668016 +a ||| would go along with ||| 0.0833333 0.0571592 1.49697e-06 9.99847e-12 2.718 ||| 0-3 ||| 12 668016 +a ||| would go on to ||| 0.1 0.0782999 1.49697e-06 1.15689e-08 2.718 ||| 0-2 ||| 10 668016 +a ||| would go on ||| 0.0909091 0.0782999 1.49697e-06 1.30196e-07 2.718 ||| 0-2 ||| 11 668016 +a ||| would grind to a ||| 0.25 0.229811 1.49697e-06 3.9184e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| would grind to ||| 0.166667 0.229811 1.49697e-06 8.84e-09 2.718 ||| 0-2 ||| 6 668016 +a ||| would happen on ||| 1 0.0782999 1.49697e-06 2.42002e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| would have been possible for ||| 0.111111 0.0683377 1.49697e-06 6.92718e-12 2.718 ||| 0-4 ||| 9 668016 +a ||| would have it , in ||| 1 0.0587624 1.49697e-06 8.94333e-09 2.718 ||| 0-4 ||| 1 668016 +a ||| would have led to ||| 0.03125 0.229811 1.49697e-06 2.2571e-09 2.718 ||| 0-3 ||| 32 668016 +a ||| would have to be applied , inter ||| 1 0.229811 1.49697e-06 6.21532e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| would have to be applied , ||| 1 0.229811 1.49697e-06 5.75492e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| would have to be applied ||| 0.333333 0.229811 1.49697e-06 4.82574e-11 2.718 ||| 0-2 ||| 3 668016 +a ||| would have to be reopened ||| 1 0.229811 1.49697e-06 1.11398e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| would have to be ||| 0.0126582 0.229811 4.49091e-06 4.4559e-07 2.718 ||| 0-2 ||| 237 668016 +a ||| would have to reflect ||| 0.333333 0.229811 1.49697e-06 8.4088e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| would have to revoke the existing bans ||| 1 0.229811 1.49697e-06 2.9974e-22 2.718 ||| 0-2 ||| 1 668016 +a ||| would have to revoke the existing ||| 1 0.229811 1.49697e-06 8.32612e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| would have to revoke the ||| 1 0.229811 1.49697e-06 1.05661e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| would have to revoke ||| 1 0.229811 1.49697e-06 1.7211e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| would have to ||| 0.0154083 0.229811 1.49697e-05 2.45871e-05 2.718 ||| 0-2 ||| 649 668016 +a ||| would have ||| 0.000168947 0.0006332 1.49697e-06 1.13499e-06 2.718 ||| 0-0 ||| 5919 668016 +a ||| would help develop ||| 0.333333 0.259976 1.49697e-06 2.36233e-09 2.718 ||| 0-1 ||| 3 668016 +a ||| would help ||| 0.00838574 0.259976 5.98788e-06 3.86002e-05 2.718 ||| 0-1 ||| 477 668016 +a ||| would hold responsible for that damage ||| 0.333333 0.0683377 1.49697e-06 3.94573e-18 2.718 ||| 0-3 ||| 3 668016 +a ||| would hold responsible for that ||| 0.333333 0.0683377 1.49697e-06 9.37228e-14 2.718 ||| 0-3 ||| 3 668016 +a ||| would hold responsible for ||| 0.333333 0.0683377 1.49697e-06 5.57158e-12 2.718 ||| 0-3 ||| 3 668016 +a ||| would in fact be ||| 0.047619 0.0587624 1.49697e-06 1.87189e-08 2.718 ||| 0-1 ||| 21 668016 +a ||| would in fact ||| 0.0188679 0.0587624 1.49697e-06 1.03289e-06 2.718 ||| 0-1 ||| 53 668016 +a ||| would in themselves ||| 0.5 0.0587624 1.49697e-06 1.51515e-07 2.718 ||| 0-1 ||| 2 668016 +a ||| would in ||| 0.0696517 0.0587624 2.09576e-05 0.000352606 2.718 ||| 0-1 ||| 201 668016 +a ||| would indeed bring itself to ||| 0.5 0.229811 1.49697e-06 3.29195e-13 2.718 ||| 0-4 ||| 2 668016 +a ||| would inform ||| 0.05 0.130026 1.49697e-06 2.44255e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| would just like to ||| 0.00884956 0.229811 1.49697e-06 4.60637e-09 2.718 ||| 0-3 ||| 113 668016 +a ||| would lead to ||| 0.00206612 0.229811 1.49697e-06 3.95744e-07 2.718 ||| 0-2 ||| 484 668016 +a ||| would like , in ||| 0.111111 0.0587624 2.99394e-06 7.46765e-08 2.718 ||| 0-3 ||| 18 668016 +a ||| would like both to ||| 1 0.229811 1.49697e-06 6.04775e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| would like it to be ||| 0.0243902 0.229811 1.49697e-06 1.17663e-09 2.718 ||| 0-3 ||| 41 668016 +a ||| would like it to ||| 0.0185185 0.229811 1.49697e-06 6.49251e-08 2.718 ||| 0-3 ||| 54 668016 +a ||| would like to ask ||| 0.00167224 0.229811 1.49697e-06 5.02002e-10 2.718 ||| 0-2 ||| 598 668016 +a ||| would like to be ||| 0.0105263 0.229811 1.49697e-06 6.61653e-08 2.718 ||| 0-2 ||| 95 668016 +a ||| would like to congratulate ||| 0.00166389 0.237528 1.49697e-06 1.21565e-08 2.718 ||| 0-2 0-3 ||| 601 668016 +a ||| would like to discuss ||| 0.0227273 0.229811 1.49697e-06 1.52243e-10 2.718 ||| 0-2 ||| 44 668016 +a ||| would like to draw ||| 0.00210084 0.229811 1.49697e-06 4.32269e-10 2.718 ||| 0-2 ||| 476 668016 +a ||| would like to encourage ||| 0.0238095 0.229811 1.49697e-06 1.4056e-10 2.718 ||| 0-2 ||| 42 668016 +a ||| would like to follow up by ||| 1 0.0337966 1.49697e-06 2.57264e-15 2.718 ||| 0-5 ||| 1 668016 +a ||| would like to go on and ||| 1 0.0782999 1.49697e-06 2.57348e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| would like to go on ||| 1 0.0782999 1.49697e-06 2.05453e-11 2.718 ||| 0-4 ||| 1 668016 +a ||| would like to make a ||| 0.00813008 0.229811 1.49697e-06 2.81228e-10 2.718 ||| 0-2 ||| 123 668016 +a ||| would like to make ||| 0.00362976 0.229811 2.99394e-06 6.34457e-09 2.718 ||| 0-2 ||| 551 668016 +a ||| would like to mention ||| 0.00284091 0.229811 1.49697e-06 3.5487e-10 2.718 ||| 0-2 ||| 352 668016 +a ||| would like to note in ||| 1 0.229811 1.49697e-06 8.15846e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| would like to note ||| 0.037037 0.229811 1.49697e-06 3.81156e-10 2.718 ||| 0-2 ||| 27 668016 +a ||| would like to offer them good and ||| 1 0.229811 1.49697e-06 7.27769e-18 2.718 ||| 0-2 ||| 1 668016 +a ||| would like to offer them good ||| 1 0.229811 1.49697e-06 5.81011e-16 2.718 ||| 0-2 ||| 1 668016 +a ||| would like to offer them ||| 1 0.229811 1.49697e-06 1.12035e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| would like to offer ||| 0.0196078 0.229811 1.49697e-06 4.17665e-10 2.718 ||| 0-2 ||| 51 668016 +a ||| would like to refer to ||| 0.0298507 0.229811 2.99394e-06 2.53368e-11 2.718 ||| 0-2 ||| 67 668016 +a ||| would like to refer ||| 0.021978 0.229811 2.99394e-06 2.85137e-10 2.718 ||| 0-2 ||| 91 668016 +a ||| would like to remind you ||| 0.00628931 0.229811 1.49697e-06 3.64241e-13 2.718 ||| 0-2 ||| 159 668016 +a ||| would like to remind ||| 0.00833333 0.229811 1.49697e-06 1.12813e-10 2.718 ||| 0-2 ||| 120 668016 +a ||| would like to say ||| 0.00102775 0.229811 1.49697e-06 3.48955e-09 2.718 ||| 0-2 ||| 973 668016 +a ||| would like to see more emphasis on ||| 0.5 0.229811 1.49697e-06 2.00861e-18 2.718 ||| 0-2 ||| 2 668016 +a ||| would like to see more emphasis ||| 0.5 0.229811 1.49697e-06 3.00196e-16 2.718 ||| 0-2 ||| 2 668016 +a ||| would like to see more ||| 0.0434783 0.229811 1.49697e-06 5.87468e-12 2.718 ||| 0-2 ||| 23 668016 +a ||| would like to see ||| 0.00115875 0.229811 1.49697e-06 2.57244e-09 2.718 ||| 0-2 ||| 863 668016 +a ||| would like to stress that this is ||| 0.2 0.229811 1.49697e-06 4.42752e-16 2.718 ||| 0-2 ||| 5 668016 +a ||| would like to stress that this ||| 0.0769231 0.229811 1.49697e-06 1.41269e-14 2.718 ||| 0-2 ||| 13 668016 +a ||| would like to stress that ||| 0.00456621 0.229811 1.49697e-06 2.18635e-12 2.718 ||| 0-2 ||| 219 668016 +a ||| would like to stress ||| 0.0022779 0.229811 1.49697e-06 1.29973e-10 2.718 ||| 0-2 ||| 439 668016 +a ||| would like to take this opportunity ||| 0.0110497 0.229811 2.99394e-06 6.8326e-15 2.718 ||| 0-2 ||| 181 668016 +a ||| would like to take this ||| 0.0112994 0.229811 2.99394e-06 3.798e-11 2.718 ||| 0-2 ||| 177 668016 +a ||| would like to take ||| 0.0144928 0.229811 5.98788e-06 5.87798e-09 2.718 ||| 0-2 ||| 276 668016 +a ||| would like to thank three people ||| 1 0.229811 1.49697e-06 2.15215e-17 2.718 ||| 0-2 ||| 1 668016 +a ||| would like to thank three ||| 1 0.229811 1.49697e-06 2.44507e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| would like to thank ||| 0.00176471 0.229811 4.49091e-06 3.86268e-10 2.718 ||| 0-2 ||| 1700 668016 +a ||| would like to turn ||| 0.0555556 0.229811 1.49697e-06 8.18537e-10 2.718 ||| 0-2 ||| 18 668016 +a ||| would like to ||| 0.0155109 0.229811 0.000178139 3.65092e-06 2.718 ||| 0-2 ||| 7672 668016 +a ||| would mean that the ||| 0.0169492 0.0201991 1.49697e-06 1.15637e-09 2.718 ||| 0-1 ||| 59 668016 +a ||| would mean that ||| 0.00600601 0.0201991 2.99394e-06 1.8836e-08 2.718 ||| 0-1 ||| 333 668016 +a ||| would mean ||| 0.00218102 0.0201991 2.99394e-06 1.11975e-06 2.718 ||| 0-1 ||| 917 668016 +a ||| would meet ||| 0.0217391 0.0482171 1.49697e-06 2.30346e-06 2.718 ||| 0-1 ||| 46 668016 +a ||| would no longer be open to ||| 1 0.229811 1.49697e-06 8.76558e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| would normally be carried out by a ||| 1 0.0337966 1.49697e-06 5.21033e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| would normally be carried out by ||| 1 0.0337966 1.49697e-06 1.17546e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| would not be in ||| 0.0181818 0.0587624 1.49697e-06 2.18169e-08 2.718 ||| 0-3 ||| 55 668016 +a ||| would not hesitate to ||| 0.166667 0.229811 1.49697e-06 9.82626e-12 2.718 ||| 0-3 ||| 6 668016 +a ||| would open the way for funding for ||| 0.5 0.0683377 1.49697e-06 1.8898e-18 2.718 ||| 0-4 ||| 2 668016 +a ||| would open the way for funding ||| 0.5 0.0683377 1.49697e-06 2.45885e-16 2.718 ||| 0-4 ||| 2 668016 +a ||| would open the way for ||| 0.125 0.0683377 1.49697e-06 4.61323e-12 2.718 ||| 0-4 ||| 8 668016 +a ||| would over ||| 1 0.0682544 1.49697e-06 1.36324e-05 2.718 ||| 0-1 ||| 1 668016 +a ||| would point out to ||| 0.0625 0.229811 1.49697e-06 6.88869e-09 2.718 ||| 0-3 ||| 16 668016 +a ||| would point out ||| 0.00350877 0.0669777 1.49697e-06 2.10543e-08 2.718 ||| 0-2 ||| 285 668016 +a ||| would prefer in ||| 0.333333 0.0587624 1.49697e-06 9.27354e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| would put ||| 0.00653595 0.0015876 1.49697e-06 2.41204e-07 2.718 ||| 0-1 ||| 153 668016 +a ||| would refer to ||| 0.0243902 0.229811 1.49697e-06 1.60559e-07 2.718 ||| 0-2 ||| 41 668016 +a ||| would remain deprived ||| 1 0.0533769 1.49697e-06 3.18207e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| would remind ||| 0.00490196 0.0025101 1.49697e-06 6.98375e-08 2.718 ||| 0-1 ||| 204 668016 +a ||| would resolve itself in ||| 0.5 0.0587624 1.49697e-06 6.19823e-12 2.718 ||| 0-3 ||| 2 668016 +a ||| would say to the ||| 0.0208333 0.229811 1.49697e-06 1.20632e-07 2.718 ||| 0-2 ||| 48 668016 +a ||| would say to ||| 0.0387597 0.229811 7.48485e-06 1.96495e-06 2.718 ||| 0-2 ||| 129 668016 +a ||| would seem to ||| 0.0104167 0.229811 1.49697e-06 1.87901e-07 2.718 ||| 0-2 ||| 96 668016 +a ||| would send in ||| 1 0.0587624 1.49697e-06 2.27078e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| would send out ||| 0.0333333 0.0669777 1.49697e-06 1.54995e-09 2.718 ||| 0-2 ||| 30 668016 +a ||| would set out to ||| 1 0.229811 1.49697e-06 4.60191e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| would take to avoid ||| 1 0.229811 1.49697e-06 1.16838e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| would take to ||| 0.333333 0.229811 1.49697e-06 3.30986e-06 2.718 ||| 0-2 ||| 3 668016 +a ||| would thank ||| 0.0666667 0.0126162 2.99394e-06 3.42263e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| would then be for the ||| 0.5 0.0683377 1.49697e-06 3.87466e-10 2.718 ||| 0-3 ||| 2 668016 +a ||| would then be for ||| 0.333333 0.0683377 1.49697e-06 6.31136e-09 2.718 ||| 0-3 ||| 3 668016 +a ||| would therefore like to ||| 0.0147059 0.229811 1.49697e-06 3.05327e-09 2.718 ||| 0-3 ||| 68 668016 +a ||| would therefore no longer be on ||| 1 0.0782999 1.49697e-06 4.92473e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| would to ||| 0.181818 0.229811 2.99394e-06 0.00205581 2.718 ||| 0-1 ||| 11 668016 +a ||| would try to ||| 0.05 0.229811 1.49697e-06 3.16596e-07 2.718 ||| 0-2 ||| 20 668016 +a ||| would turn ||| 0.0175439 0.0047729 1.49697e-06 1.76648e-07 2.718 ||| 0-1 ||| 57 668016 +a ||| would unify ||| 0.25 0.0169492 1.49697e-06 1.05637e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| would urge everyone ||| 0.111111 0.345826 1.49697e-06 9.64698e-10 2.718 ||| 0-1 ||| 9 668016 +a ||| would urge ||| 0.00625 0.345826 1.49697e-06 1.43343e-05 2.718 ||| 0-1 ||| 160 668016 +a ||| would use for ||| 1 0.0683377 1.49697e-06 1.05142e-07 2.718 ||| 0-2 ||| 1 668016 +a ||| would we rather condemn ourselves to the ||| 0.25 0.229811 1.49697e-06 1.70258e-18 2.718 ||| 0-5 ||| 4 668016 +a ||| would we rather condemn ourselves to ||| 0.25 0.229811 1.49697e-06 2.7733e-17 2.718 ||| 0-5 ||| 4 668016 +a ||| would ||| 0.000700249 0.0006332 2.39515e-05 9.49e-05 2.718 ||| 0-0 ||| 22849 668016 +a ||| would-be ||| 0.0188679 0.057971 1.49697e-06 3.7e-06 2.718 ||| 0-0 ||| 53 668016 +a ||| wounded ||| 0.00584795 0.015625 1.49697e-06 2.7e-06 2.718 ||| 0-0 ||| 171 668016 +a ||| writing , to ||| 0.5 0.229811 1.49697e-06 9.12368e-06 2.718 ||| 0-2 ||| 2 668016 +a ||| writing of ||| 0.0909091 0.0188479 1.49697e-06 6.45994e-06 2.718 ||| 0-1 ||| 11 668016 +a ||| writing to ||| 0.0338983 0.229811 2.99394e-06 7.65059e-05 2.718 ||| 0-1 ||| 59 668016 +a ||| written down ||| 0.04 0.0226513 1.49697e-06 1.8255e-08 2.718 ||| 0-1 ||| 25 668016 +a ||| written in stone ||| 0.142857 0.0587624 1.49697e-06 4.20577e-11 2.718 ||| 0-1 ||| 7 668016 +a ||| written in ||| 0.00518135 0.0587624 1.49697e-06 3.00412e-06 2.718 ||| 0-1 ||| 193 668016 +a ||| written to ||| 0.00740741 0.229811 1.49697e-06 1.75151e-05 2.718 ||| 0-1 ||| 135 668016 +a ||| wrong all those ||| 0.166667 0.018252 1.49697e-06 2.64969e-10 2.718 ||| 0-2 ||| 6 668016 +a ||| wrong here ||| 0.0625 0.0182742 1.49697e-06 4.79768e-08 2.718 ||| 0-1 ||| 16 668016 +a ||| wrong on ||| 0.0454545 0.0782999 1.49697e-06 2.11681e-06 2.718 ||| 0-1 ||| 22 668016 +a ||| wrong point in the ||| 1 0.0587624 1.49697e-06 1.80053e-10 2.718 ||| 0-2 ||| 1 668016 +a ||| wrong point in ||| 1 0.0587624 1.49697e-06 2.93286e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| wrong signal to ||| 0.0434783 0.229811 1.49697e-06 4.65215e-10 2.718 ||| 0-2 ||| 23 668016 +a ||| wrong to punish ||| 0.5 0.308049 1.49697e-06 9.00425e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| wrong to ||| 0.00668896 0.229811 2.99394e-06 1.95468e-05 2.718 ||| 0-1 ||| 299 668016 +a ||| wrongly deprived ||| 1 0.0533769 1.49697e-06 2.5926e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| wrung out of ||| 1 0.0188479 1.49697e-06 7.93082e-11 2.718 ||| 0-2 ||| 1 668016 +a ||| yardstick of ||| 0.0333333 0.0188479 1.49697e-06 9.46512e-08 2.718 ||| 0-1 ||| 30 668016 +a ||| year , in ||| 0.00884956 0.0587624 1.49697e-06 1.78698e-06 2.718 ||| 0-2 ||| 113 668016 +a ||| year and allocated it to ||| 1 0.229811 1.49697e-06 8.67945e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| year begun to ||| 1 0.229811 1.49697e-06 1.1008e-09 2.718 ||| 0-2 ||| 1 668016 +a ||| year for ||| 0.00813008 0.0683377 2.99394e-06 9.19002e-06 2.718 ||| 0-1 ||| 246 668016 +a ||| year in ||| 0.00145349 0.0587624 1.49697e-06 1.49846e-05 2.718 ||| 0-1 ||| 688 668016 +a ||| year of ||| 0.0017331 0.0188479 1.49697e-06 7.37688e-06 2.718 ||| 0-1 ||| 577 668016 +a ||| year to ||| 0.007109 0.229811 4.49091e-06 8.73652e-05 2.718 ||| 0-1 ||| 422 668016 +a ||| years 2005 to ||| 0.25 0.229811 1.49697e-06 7.51229e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| years ; not to eliminate ||| 0.333333 0.229811 1.49697e-06 7.20985e-16 2.718 ||| 0-3 ||| 3 668016 +a ||| years ; not to ||| 0.333333 0.229811 1.49697e-06 6.26944e-11 2.718 ||| 0-3 ||| 3 668016 +a ||| years ECHO has financed humanitarian aid to ||| 1 0.229811 1.49697e-06 4.43523e-27 2.718 ||| 0-6 ||| 1 668016 +a ||| years after the ||| 0.00210526 0.0004654 1.49697e-06 7.06853e-11 2.718 ||| 0-2 ||| 475 668016 +a ||| years ahead , educate the people ||| 1 0.249147 1.49697e-06 7.9621e-18 2.718 ||| 0-3 ||| 1 668016 +a ||| years ahead , educate the ||| 1 0.249147 1.49697e-06 9.04578e-15 2.718 ||| 0-3 ||| 1 668016 +a ||| years ahead , educate ||| 1 0.249147 1.49697e-06 1.47345e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| years and at ||| 0.2 0.102881 1.49697e-06 1.11773e-08 2.718 ||| 0-1 0-2 ||| 5 668016 +a ||| years and ||| 0.000823045 0.0015873 1.49697e-06 3.28401e-07 2.718 ||| 0-1 ||| 1215 668016 +a ||| years be extended to ||| 1 0.229811 1.49697e-06 3.92226e-11 2.718 ||| 0-3 ||| 1 668016 +a ||| years to ||| 0.00678295 0.229811 1.04788e-05 5.96213e-05 2.718 ||| 0-1 ||| 1032 668016 +a ||| years we have learned to look at ||| 1 0.204175 1.49697e-06 3.21878e-19 2.718 ||| 0-6 ||| 1 668016 +a ||| yes " to ||| 0.0714286 0.229811 1.49697e-06 2.65445e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| yes , to ||| 0.166667 0.229811 1.49697e-06 1.3368e-06 2.718 ||| 0-2 ||| 6 668016 +a ||| yes to ||| 0.00881057 0.229811 2.99394e-06 1.12097e-05 2.718 ||| 0-1 ||| 227 668016 +a ||| yet , at ||| 0.0833333 0.204175 1.49697e-06 1.07357e-06 2.718 ||| 0-2 ||| 12 668016 +a ||| yet , in ||| 0.0169492 0.0587624 1.49697e-06 1.89517e-06 2.718 ||| 0-2 ||| 59 668016 +a ||| yet , ||| 0.000984252 0.0130882 1.49697e-06 3.25446e-05 2.718 ||| 0-0 ||| 1016 668016 +a ||| yet again in ||| 0.0714286 0.0587624 1.49697e-06 9.19024e-09 2.718 ||| 0-2 ||| 14 668016 +a ||| yet again to ||| 0.0869565 0.229811 2.99394e-06 5.35823e-08 2.718 ||| 0-2 ||| 23 668016 +a ||| yet another ||| 0.00241255 0.0130882 2.99394e-06 6.57962e-08 2.718 ||| 0-0 ||| 829 668016 +a ||| yet at ||| 0.0571429 0.204175 2.99394e-06 9.00236e-06 2.718 ||| 0-1 ||| 35 668016 +a ||| yet come ||| 0.037037 0.0130882 1.49697e-06 2.31774e-07 2.718 ||| 0-0 ||| 27 668016 +a ||| yet in ||| 0.0194805 0.0587624 4.49091e-06 1.58918e-05 2.718 ||| 0-1 ||| 154 668016 +a ||| yet more ||| 0.00490196 0.0130882 1.49697e-06 6.23222e-07 2.718 ||| 0-0 ||| 204 668016 +a ||| yet that is precisely ||| 0.125 0.0130882 1.49697e-06 1.41861e-11 2.718 ||| 0-0 ||| 8 668016 +a ||| yet that is ||| 0.03125 0.0130882 1.49697e-06 1.43875e-07 2.718 ||| 0-0 ||| 32 668016 +a ||| yet that ||| 0.0169492 0.0130882 1.49697e-06 4.59061e-06 2.718 ||| 0-0 ||| 59 668016 +a ||| yet the positive outcome has to do ||| 1 0.229811 1.49697e-06 4.67737e-19 2.718 ||| 0-5 ||| 1 668016 +a ||| yet the positive outcome has to ||| 1 0.229811 1.49697e-06 1.36156e-16 2.718 ||| 0-5 ||| 1 668016 +a ||| yet these appear to be ||| 1 0.229811 1.49697e-06 1.52205e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| yet these appear to ||| 1 0.229811 1.49697e-06 8.39846e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| yet this is to ||| 1 0.229811 1.49697e-06 1.87633e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| yet to ||| 0.011236 0.229811 8.98182e-06 9.26548e-05 2.718 ||| 0-1 ||| 534 668016 +a ||| yet ||| 0.00153266 0.0130882 3.59273e-05 0.0002729 2.718 ||| 0-0 ||| 15659 668016 +a ||| yield to ||| 0.027027 0.229811 1.49697e-06 2.76738e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| yielded to ||| 0.0416667 0.229811 1.49697e-06 7.70664e-07 2.718 ||| 0-1 ||| 24 668016 +a ||| yoke of ||| 0.0175439 0.0188479 1.49697e-06 1.18314e-08 2.718 ||| 0-1 ||| 57 668016 +a ||| you ' to ||| 1 0.229811 1.49697e-06 3.88494e-06 2.718 ||| 0-2 ||| 1 668016 +a ||| you , however , to ||| 1 0.229811 1.49697e-06 1.78173e-08 2.718 ||| 0-4 ||| 1 668016 +a ||| you , in ||| 0.0120482 0.0587624 1.49697e-06 2.3134e-05 2.718 ||| 0-2 ||| 83 668016 +a ||| you , ladies and gentlemen , to ||| 0.0833333 0.229811 1.49697e-06 8.31155e-16 2.718 ||| 0-6 ||| 12 668016 +a ||| you , on behalf of ||| 0.0555556 0.0782999 1.49697e-06 2.52913e-10 2.718 ||| 0-2 ||| 18 668016 +a ||| you , on behalf ||| 0.0555556 0.0782999 1.49697e-06 4.65221e-09 2.718 ||| 0-2 ||| 18 668016 +a ||| you , on ||| 0.0294118 0.0782999 1.49697e-06 1.46066e-05 2.718 ||| 0-2 ||| 34 668016 +a ||| you , to ||| 0.0243902 0.229811 1.49697e-06 0.000134879 2.718 ||| 0-2 ||| 41 668016 +a ||| you , ||| 0.000500375 0.0005352 2.99394e-06 8.70559e-06 2.718 ||| 0-0 ||| 3997 668016 +a ||| you add to ||| 0.5 0.229811 1.49697e-06 9.27435e-08 2.718 ||| 0-2 ||| 2 668016 +a ||| you all to ||| 0.0227273 0.229811 1.49697e-06 5.34452e-06 2.718 ||| 0-2 ||| 44 668016 +a ||| you and I , to ||| 1 0.229811 1.49697e-06 1.19506e-08 2.718 ||| 0-4 ||| 1 668016 +a ||| you and to ||| 0.0294118 0.229811 2.99394e-06 1.4167e-05 2.718 ||| 0-2 ||| 68 668016 +a ||| you and ||| 0.000653168 0.0015873 1.49697e-06 6.22978e-06 2.718 ||| 0-1 ||| 1531 668016 +a ||| you are giving to ||| 0.2 0.229811 1.49697e-06 2.70451e-09 2.718 ||| 0-3 ||| 5 668016 +a ||| you are in possession ||| 0.5 0.0587624 1.49697e-06 4.23839e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| you are in ||| 0.00694444 0.0587624 1.49697e-06 2.94333e-06 2.718 ||| 0-2 ||| 144 668016 +a ||| you are talking to ; ||| 1 0.229811 1.49697e-06 5.7823e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| you are talking to ||| 0.25 0.229811 1.49697e-06 1.87737e-09 2.718 ||| 0-3 ||| 4 668016 +a ||| you are treating ||| 0.333333 0.173442 1.49697e-06 5.72181e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| you are willing to ||| 0.0555556 0.229811 1.49697e-06 6.48671e-10 2.718 ||| 0-3 ||| 18 668016 +a ||| you ask ||| 0.00636943 0.0082577 1.49697e-06 4.74619e-07 2.718 ||| 0-1 ||| 157 668016 +a ||| you at the ||| 0.0333333 0.204175 1.49697e-06 6.74635e-06 2.718 ||| 0-1 ||| 30 668016 +a ||| you at ||| 0.0769231 0.204175 7.48485e-06 0.00010989 2.718 ||| 0-1 ||| 65 668016 +a ||| you believe , to ||| 1 0.229811 1.49697e-06 4.19879e-08 2.718 ||| 0-3 ||| 1 668016 +a ||| you by ||| 0.0192308 0.0337966 1.49697e-06 2.65641e-05 2.718 ||| 0-1 ||| 52 668016 +a ||| you called upon ||| 0.5 0.19056 1.49697e-06 1.1063e-09 2.718 ||| 0-2 ||| 2 668016 +a ||| you can go ||| 0.0833333 0.0021766 1.49697e-06 3.41871e-10 2.718 ||| 0-2 ||| 12 668016 +a ||| you can to ||| 0.1 0.229811 2.99394e-06 3.36399e-06 2.718 ||| 0-2 ||| 20 668016 +a ||| you do all you can to ||| 1 0.229811 1.49697e-06 1.76313e-13 2.718 ||| 0-5 ||| 1 668016 +a ||| you every success in your next reincarnation ||| 1 0.0587624 1.49697e-06 1.98235e-26 2.718 ||| 0-3 ||| 1 668016 +a ||| you every success in your next ||| 1 0.0587624 1.49697e-06 4.95587e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| you every success in your ||| 0.333333 0.0587624 1.49697e-06 4.79756e-16 2.718 ||| 0-3 ||| 3 668016 +a ||| you every success in ||| 0.25 0.0587624 1.49697e-06 1.87478e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| you feed him for ||| 0.0526316 0.0683377 1.49697e-06 7.13268e-13 2.718 ||| 0-3 ||| 19 668016 +a ||| you for your comment ||| 0.25 0.0683377 1.49697e-06 1.39134e-12 2.718 ||| 0-1 ||| 4 668016 +a ||| you for your ||| 0.0107527 0.0683377 1.49697e-06 3.04451e-08 2.718 ||| 0-1 ||| 93 668016 +a ||| you for ||| 0.0165289 0.0683377 8.98182e-06 0.000118973 2.718 ||| 0-1 ||| 363 668016 +a ||| you gave to ||| 0.111111 0.229811 1.49697e-06 9.44401e-08 2.718 ||| 0-2 ||| 9 668016 +a ||| you get away ||| 0.25 0.0377856 1.49697e-06 3.32429e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| you give to ||| 0.2 0.229811 1.49697e-06 6.85397e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| you had to say ||| 0.0434783 0.229811 1.49697e-06 1.08503e-09 2.718 ||| 0-2 ||| 23 668016 +a ||| you had to ||| 0.0142857 0.229811 1.49697e-06 1.1352e-06 2.718 ||| 0-2 ||| 70 668016 +a ||| you have granted me to ||| 1 0.229811 1.49697e-06 6.59701e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| you have in ||| 0.0181818 0.0587624 1.49697e-06 2.32006e-06 2.718 ||| 0-2 ||| 55 668016 +a ||| you have made in ||| 0.0952381 0.0587624 2.99394e-06 4.86007e-09 2.718 ||| 0-3 ||| 21 668016 +a ||| you have the courage to make reforms ||| 1 0.229811 1.49697e-06 1.92369e-19 2.718 ||| 0-4 ||| 1 668016 +a ||| you have the courage to make ||| 1 0.229811 1.49697e-06 1.24109e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| you have the courage to ||| 0.142857 0.229811 1.49697e-06 7.14172e-12 2.718 ||| 0-4 ||| 7 668016 +a ||| you have the right to ||| 0.0833333 0.229811 2.99394e-06 5.35546e-10 2.718 ||| 0-4 ||| 24 668016 +a ||| you have to ||| 0.00378788 0.229811 2.99394e-06 1.35268e-05 2.718 ||| 0-2 ||| 528 668016 +a ||| you have with ||| 0.111111 0.0571592 1.49697e-06 6.44675e-07 2.718 ||| 0-2 ||| 9 668016 +a ||| you have ||| 0.000112982 0.0005352 1.49697e-06 8.73065e-07 2.718 ||| 0-0 ||| 8851 668016 +a ||| you in the strongest possible terms ||| 1 0.0587624 1.49697e-06 7.54903e-17 2.718 ||| 0-1 ||| 1 668016 +a ||| you in the strongest possible ||| 1 0.0587624 1.49697e-06 6.87776e-14 2.718 ||| 0-1 ||| 1 668016 +a ||| you in the strongest ||| 1 0.0587624 1.49697e-06 8.57469e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| you in the ||| 0.00746269 0.0587624 1.49697e-06 1.19093e-05 2.718 ||| 0-1 ||| 134 668016 +a ||| you in ||| 0.0214425 0.0587624 1.64667e-05 0.000193988 2.718 ||| 0-1 ||| 513 668016 +a ||| you know , to ||| 0.0714286 0.229811 1.49697e-06 3.47989e-08 2.718 ||| 0-3 ||| 14 668016 +a ||| you like - to ||| 0.5 0.229811 1.49697e-06 7.57655e-09 2.718 ||| 0-3 ||| 2 668016 +a ||| you meant by ||| 0.2 0.0337966 1.49697e-06 2.11185e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| you might disagree with ||| 0.25 0.0571592 1.49697e-06 1.63522e-13 2.718 ||| 0-3 ||| 4 668016 +a ||| you need to ||| 0.00990099 0.229811 2.99394e-06 1.03703e-06 2.718 ||| 0-2 ||| 202 668016 +a ||| you need ||| 0.00223714 0.0005352 1.49697e-06 6.69337e-08 2.718 ||| 0-0 ||| 447 668016 +a ||| you of it ||| 0.5 0.0188479 1.49697e-06 1.6983e-06 2.718 ||| 0-1 ||| 2 668016 +a ||| you of ||| 0.0319149 0.0188479 4.49091e-06 9.55001e-05 2.718 ||| 0-1 ||| 94 668016 +a ||| you off ||| 0.037037 0.0893962 1.49697e-06 2.46963e-06 2.718 ||| 0-1 ||| 27 668016 +a ||| you on ||| 0.015015 0.0782999 7.48485e-06 0.000122483 2.718 ||| 0-1 ||| 333 668016 +a ||| you referred to two key words ||| 0.5 0.229811 1.49697e-06 4.20409e-19 2.718 ||| 0-2 ||| 2 668016 +a ||| you referred to two key ||| 0.5 0.229811 1.49697e-06 1.86022e-15 2.718 ||| 0-2 ||| 2 668016 +a ||| you referred to two ||| 0.5 0.229811 1.49697e-06 2.55876e-11 2.718 ||| 0-2 ||| 2 668016 +a ||| you referred to ||| 0.0135135 0.229811 2.99394e-06 1.08238e-07 2.718 ||| 0-2 ||| 148 668016 +a ||| you represent ||| 0.00909091 0.0041537 1.49697e-06 5.90852e-08 2.718 ||| 0-1 ||| 110 668016 +a ||| you return to ||| 0.166667 0.229811 1.49697e-06 7.53259e-08 2.718 ||| 0-2 ||| 6 668016 +a ||| you said , corresponds to an impact ||| 1 0.229811 1.49697e-06 8.73659e-20 2.718 ||| 0-4 ||| 1 668016 +a ||| you said , corresponds to an ||| 1 0.229811 1.49697e-06 1.06027e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| you said , corresponds to ||| 1 0.229811 1.49697e-06 2.38546e-13 2.718 ||| 0-4 ||| 1 668016 +a ||| you said ||| 0.000647668 0.0005352 1.49697e-06 3.00249e-08 2.718 ||| 0-0 ||| 1544 668016 +a ||| you say you want to ||| 0.166667 0.229811 1.49697e-06 1.63172e-12 2.718 ||| 0-4 ||| 6 668016 +a ||| you see , that ||| 0.142857 0.0008521 1.49697e-06 1.85215e-10 2.718 ||| 0-3 ||| 7 668016 +a ||| you submit to ||| 1 0.229811 1.49697e-06 2.36383e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| you talked about ||| 0.0142857 0.0526361 1.49697e-06 1.69212e-10 2.718 ||| 0-2 ||| 70 668016 +a ||| you tell me on ||| 1 0.0782999 1.49697e-06 7.24194e-12 2.718 ||| 0-3 ||| 1 668016 +a ||| you to approach ||| 1 0.229811 1.49697e-06 2.47919e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| you to bear in ||| 0.1 0.229811 1.49697e-06 3.62407e-09 2.718 ||| 0-1 ||| 10 668016 +a ||| you to bear ||| 0.0769231 0.229811 1.49697e-06 1.69314e-07 2.718 ||| 0-1 ||| 13 668016 +a ||| you to consider ||| 0.0322581 0.229811 1.49697e-06 1.79945e-07 2.718 ||| 0-1 ||| 31 668016 +a ||| you to join me on ||| 1 0.229811 1.49697e-06 2.13243e-13 2.718 ||| 0-1 ||| 1 668016 +a ||| you to join me ||| 1 0.229811 1.49697e-06 3.18702e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| you to join ||| 0.5 0.229811 1.49697e-06 5.29317e-08 2.718 ||| 0-1 ||| 2 668016 +a ||| you to produce ||| 0.333333 0.229811 1.49697e-06 1.00095e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| you to the ||| 0.025641 0.229811 1.49697e-06 6.94353e-05 2.718 ||| 0-1 ||| 39 668016 +a ||| you to ||| 0.0376539 0.229811 7.78424e-05 0.00113102 2.718 ||| 0-1 ||| 1381 668016 +a ||| you today to ||| 0.166667 0.229811 1.49697e-06 5.10429e-07 2.718 ||| 0-2 ||| 6 668016 +a ||| you treat ||| 0.0769231 0.271158 1.49697e-06 1.43516e-06 2.718 ||| 0-1 ||| 13 668016 +a ||| you visited the ||| 0.25 0.0117057 1.49697e-06 2.53716e-09 2.718 ||| 0-1 ||| 4 668016 +a ||| you visited ||| 0.0833333 0.0117057 1.49697e-06 4.13274e-08 2.718 ||| 0-1 ||| 12 668016 +a ||| you want to help ||| 0.2 0.229811 1.49697e-06 1.00833e-10 2.718 ||| 0-2 ||| 5 668016 +a ||| you want to ||| 0.00594059 0.229811 4.49091e-06 5.28751e-07 2.718 ||| 0-2 ||| 505 668016 +a ||| you were to do that ||| 0.25 0.229811 1.49697e-06 1.17083e-10 2.718 ||| 0-2 ||| 4 668016 +a ||| you were to do ||| 0.2 0.229811 1.49697e-06 6.96029e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| you were to ||| 0.0571429 0.229811 2.99394e-06 2.02611e-06 2.718 ||| 0-2 ||| 35 668016 +a ||| you will come across on this ||| 1 0.0782999 1.49697e-06 5.96604e-16 2.718 ||| 0-4 ||| 1 668016 +a ||| you will come across on ||| 1 0.0782999 1.49697e-06 9.23335e-14 2.718 ||| 0-4 ||| 1 668016 +a ||| you will find them fighting for a ||| 1 0.0683377 1.49697e-06 1.11219e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| you will find them fighting for ||| 1 0.0683377 1.49697e-06 2.50913e-17 2.718 ||| 0-5 ||| 1 668016 +a ||| you will find ||| 0.00502513 0.0561595 1.49697e-06 1.51376e-08 2.718 ||| 0-1 ||| 199 668016 +a ||| you will have to ||| 0.0075188 0.229811 1.49697e-06 1.17023e-07 2.718 ||| 0-3 ||| 133 668016 +a ||| you will have ||| 0.00394477 0.0561595 2.99394e-06 5.43837e-07 2.718 ||| 0-1 ||| 507 668016 +a ||| you will ||| 0.00315126 0.0561595 8.98182e-06 4.5472e-05 2.718 ||| 0-1 ||| 1904 668016 +a ||| you wish to ||| 0.00526316 0.229811 1.49697e-06 3.33311e-07 2.718 ||| 0-2 ||| 190 668016 +a ||| you with any ||| 1 0.0571592 1.49697e-06 8.15128e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| you with ||| 0.0103093 0.0571592 1.49697e-06 5.39035e-05 2.718 ||| 0-1 ||| 97 668016 +a ||| you would be kind enough to ||| 0.2 0.229811 1.49697e-06 9.69771e-15 2.718 ||| 0-5 ||| 5 668016 +a ||| you would do well to ||| 0.2 0.229811 1.49697e-06 3.61551e-11 2.718 ||| 0-4 ||| 5 668016 +a ||| you would ||| 0.00226244 0.0005352 1.49697e-06 4.28415e-07 2.718 ||| 0-0 ||| 442 668016 +a ||| you ||| 0.000214773 0.0005352 1.94606e-05 7.3e-05 2.718 ||| 0-0 ||| 60529 668016 +a ||| young people the world over ||| 1 0.0682544 1.49697e-06 1.82144e-15 2.718 ||| 0-4 ||| 1 668016 +a ||| young people to join ||| 0.333333 0.229811 1.49697e-06 9.19197e-13 2.718 ||| 0-2 ||| 3 668016 +a ||| young people to ||| 0.00623053 0.229811 2.99394e-06 1.9641e-08 2.718 ||| 0-2 ||| 321 668016 +a ||| young people ||| 0.000291248 0.0017861 2.99394e-06 1.36431e-08 2.718 ||| 0-0 ||| 6867 668016 +a ||| young ||| 0.00266596 0.0017861 1.49697e-05 1.55e-05 2.718 ||| 0-0 ||| 3751 668016 +a ||| your address to ||| 0.2 0.229811 1.49697e-06 6.8397e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| your attention to ||| 0.00131579 0.229811 1.49697e-06 2.34235e-08 2.718 ||| 0-2 ||| 760 668016 +a ||| your comments on ||| 0.0147059 0.0782999 1.49697e-06 4.85386e-10 2.718 ||| 0-2 ||| 68 668016 +a ||| your comments to the ||| 0.142857 0.229811 1.49697e-06 2.75165e-10 2.718 ||| 0-2 ||| 7 668016 +a ||| your comments to ||| 0.0625 0.229811 1.49697e-06 4.48211e-09 2.718 ||| 0-2 ||| 16 668016 +a ||| your introduction to ||| 0.333333 0.229811 1.49697e-06 4.70621e-09 2.718 ||| 0-2 ||| 3 668016 +a ||| your questions to ||| 0.2 0.229811 1.49697e-06 7.93333e-09 2.718 ||| 0-2 ||| 5 668016 +a ||| your speech to ||| 0.047619 0.229811 1.49697e-06 4.0339e-09 2.718 ||| 0-2 ||| 21 668016 +a ||| your success in terms ||| 0.5 0.0587624 1.49697e-06 1.00242e-12 2.718 ||| 0-2 ||| 2 668016 +a ||| your success in ||| 0.0588235 0.0587624 1.49697e-06 9.13282e-10 2.718 ||| 0-2 ||| 17 668016 +a ||| your time to ||| 0.142857 0.229811 1.49697e-06 1.47166e-07 2.718 ||| 0-2 ||| 7 668016 +a ||| yours ||| 0.00315457 0.0123457 1.49697e-06 5.5e-06 2.718 ||| 0-0 ||| 317 668016 +a ||| yourself at odds ||| 1 0.204175 1.49697e-06 1.37843e-11 2.718 ||| 0-1 ||| 1 668016 +a ||| yourself at ||| 0.2 0.204175 1.49697e-06 1.53159e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| yourself in ||| 0.08 0.0587624 2.99394e-06 2.70371e-06 2.718 ||| 0-1 ||| 25 668016 +a ||| yourself into ||| 0.2 0.107578 1.49697e-06 2.73344e-07 2.718 ||| 0-1 ||| 5 668016 +a ||| yourself to ||| 0.0666667 0.229811 2.99394e-06 1.57636e-05 2.718 ||| 0-1 ||| 30 668016 +a ||| yourself with ||| 0.333333 0.0571592 1.49697e-06 7.5128e-07 2.718 ||| 0-1 ||| 3 668016 +a ||| yourselves in ||| 0.25 0.0587624 1.49697e-06 6.72924e-07 2.718 ||| 0-1 ||| 4 668016 +a ||| yourselves of ||| 1 0.0188479 1.49697e-06 3.31279e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| yourselves to ||| 0.2 0.229811 5.98788e-06 3.92338e-06 2.718 ||| 0-1 ||| 20 668016 +a ||| zeal than usual is displayed in asking ||| 1 0.0587624 1.49697e-06 8.32355e-27 2.718 ||| 0-5 ||| 1 668016 +a ||| zeal than usual is displayed in ||| 1 0.0587624 1.49697e-06 1.92675e-22 2.718 ||| 0-5 ||| 1 668016 +a ||| zone to ||| 0.125 0.229811 1.49697e-06 5.04434e-06 2.718 ||| 0-1 ||| 8 668016 +a ||| à vis ||| 0.214286 0.331035 4.49091e-06 2.6718e-10 2.718 ||| 0-0 ||| 14 668016 +a ||| à ||| 0.430556 0.331035 4.64061e-05 4.38e-05 2.718 ||| 0-0 ||| 72 668016 +a ||| á ||| 1 1 1.49697e-06 9e-07 2.718 ||| 0-0 ||| 1 668016 +a ||| ​ by ||| 1 0.0337966 1.49697e-06 2.38598e-08 2.718 ||| 0-1 ||| 1 668016 +a ||| ​ ​ by ||| 1 0.0337966 1.49697e-06 6.91933e-14 2.718 ||| 0-2 ||| 1 668016 +a ||| – I stress given – to ||| 1 0.229811 1.49697e-06 9.3503e-18 2.718 ||| 0-5 ||| 1 668016 +a ||| – at ||| 0.00819672 0.204175 1.49697e-06 1.33759e-05 2.718 ||| 0-1 ||| 122 668016 +a ||| – by which I ||| 0.0666667 0.0337966 1.49697e-06 1.94284e-10 2.718 ||| 0-1 ||| 15 668016 +a ||| – by which ||| 0.0526316 0.0337966 1.49697e-06 2.74665e-08 2.718 ||| 0-1 ||| 19 668016 +a ||| – by ||| 0.00943396 0.0337966 1.49697e-06 3.23341e-06 2.718 ||| 0-1 ||| 106 668016 +a ||| – gets more ||| 0.5 0.0038948 1.49697e-06 3.32073e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| – gets ||| 0.2 0.0038948 1.49697e-06 1.4541e-09 2.718 ||| 0-1 ||| 5 668016 +a ||| – in ||| 0.00431655 0.0587624 4.49091e-06 2.36124e-05 2.718 ||| 0-1 ||| 695 668016 +a ||| – into ||| 0.0384615 0.107578 1.49697e-06 2.3872e-06 2.718 ||| 0-1 ||| 26 668016 +a ||| – like to ||| 0.5 0.229811 1.49697e-06 2.44486e-07 2.718 ||| 0-2 ||| 2 668016 +a ||| – of all places ||| 0.5 0.0188479 1.49697e-06 2.90578e-12 2.718 ||| 0-1 ||| 2 668016 +a ||| – of all places – those ||| 1 0.0188479 1.49697e-06 8.26902e-19 2.718 ||| 0-1 ||| 1 668016 +a ||| – of all places – ||| 0.5 0.0188479 1.49697e-06 1.14197e-15 2.718 ||| 0-1 ||| 2 668016 +a ||| – of all ||| 0.25 0.0188479 1.49697e-06 5.49297e-08 2.718 ||| 0-1 ||| 4 668016 +a ||| – of ||| 0.00425532 0.0188479 1.49697e-06 1.16244e-05 2.718 ||| 0-1 ||| 235 668016 +a ||| – out ||| 0.2 0.0669777 1.49697e-06 1.61169e-06 2.718 ||| 0-1 ||| 5 668016 +a ||| – shouting to ||| 0.5 0.229811 1.49697e-06 1.92736e-10 2.718 ||| 0-2 ||| 2 668016 +a ||| – to be achieved ||| 1 0.229811 1.49697e-06 4.17406e-10 2.718 ||| 0-1 ||| 1 668016 +a ||| – to be ||| 0.027027 0.229811 1.49697e-06 2.49495e-06 2.718 ||| 0-1 ||| 37 668016 +a ||| – to ||| 0.0184397 0.229811 1.94606e-05 0.000137669 2.718 ||| 0-1 ||| 705 668016 +a ||| – with ||| 0.00873362 0.0571592 2.99394e-06 6.56117e-06 2.718 ||| 0-1 ||| 229 668016 +a ||| – ||| 9.85966e-05 9.19e-05 4.49091e-06 2.7e-06 2.718 ||| 0-0 ||| 30427 668016 +a ||| ‘ [ never again ] ||| 1 0.0700825 1.49697e-06 1.97987e-20 2.718 ||| 0-3 ||| 1 668016 +a ||| ‘ [ never again ] ’ . ||| 1 0.0700825 1.49697e-06 1.04474e-25 2.718 ||| 0-3 ||| 1 668016 +a ||| ‘ [ never again ] ’ ||| 1 0.0700825 1.49697e-06 3.44913e-23 2.718 ||| 0-3 ||| 1 668016 +a ||| ‘ [ never again ||| 1 0.0700825 1.49697e-06 5.29377e-16 2.718 ||| 0-3 ||| 1 668016 +a ||| ’ , in order to ||| 0.25 0.229811 1.49697e-06 8.29654e-10 2.718 ||| 0-4 ||| 4 668016 +a ||| ’ Conference to help ||| 1 0.229811 1.49697e-06 2.17624e-12 2.718 ||| 0-2 ||| 1 668016 +a ||| ’ Conference to ||| 1 0.229811 1.49697e-06 1.14119e-08 2.718 ||| 0-2 ||| 1 668016 +a ||| ’ at ||| 0.0909091 0.204175 1.49697e-06 5.92931e-05 2.718 ||| 0-1 ||| 11 668016 +a ||| ’ attention to ||| 0.2 0.229811 1.49697e-06 1.59461e-07 2.718 ||| 0-2 ||| 5 668016 +a ||| ’ by ||| 0.0294118 0.0337966 1.49697e-06 1.43331e-05 2.718 ||| 0-1 ||| 34 668016 +a ||| ’ embarrassment at having ||| 0.333333 0.204175 1.49697e-06 4.99473e-14 2.718 ||| 0-2 ||| 3 668016 +a ||| ’ embarrassment at ||| 0.333333 0.204175 1.49697e-06 1.30445e-10 2.718 ||| 0-2 ||| 3 668016 +a ||| ’ for ||| 0.02 0.0683377 1.49697e-06 6.41938e-05 2.718 ||| 0-1 ||| 50 668016 +a ||| ’ help ||| 0.5 0.259976 1.49697e-06 1.14583e-05 2.718 ||| 0-1 ||| 2 668016 +a ||| ’ joining ||| 1 0.251619 1.49697e-06 9.26971e-07 2.718 ||| 0-1 ||| 1 668016 +a ||| ’ s future membership ||| 1 0.104903 1.49697e-06 5.41498e-13 2.718 ||| 0-3 ||| 1 668016 +a ||| ’ s membership ||| 0.0384615 0.104903 1.49697e-06 2.03877e-09 2.718 ||| 0-2 ||| 26 668016 +a ||| ’ s turn to ||| 1 0.229811 1.49697e-06 2.60273e-10 2.718 ||| 0-3 ||| 1 668016 +a ||| ’ s way to ||| 1 0.229811 1.49697e-06 2.50243e-09 2.718 ||| 0-3 ||| 1 668016 +a ||| ’ s worth of ||| 0.25 0.0188479 1.49697e-06 7.08707e-12 2.718 ||| 0-3 ||| 4 668016 +a ||| ’ to ||| 0.0436681 0.229811 1.49697e-05 0.00061026 2.718 ||| 0-1 ||| 229 668016 +a ||| ’ to ‘ ||| 0.0769231 0.229811 1.49697e-06 6.85322e-08 2.718 ||| 0-1 ||| 13 668016 +ambos lados del Atlántico ||| across the Atlantic ||| 0.00645161 8.75233e-10 0.00961538 0.00184691 2.718 ||| 1-0 2-1 2-2 3-2 ||| 155 104 +ambos lados del Atlántico ||| and the other side of the ocean ||| 1 1.3791e-09 0.00961538 2.00981e-11 2.718 ||| 0-1 0-2 0-3 1-3 2-4 2-5 3-6 ||| 1 104 +ambos lados del Atlántico ||| both sides of the Atlantic Ocean ||| 0.5 0.000336744 0.0192308 0.000257369 2.718 ||| 0-0 1-1 2-2 2-3 3-4 3-5 ||| 4 104 +ambos lados del Atlántico ||| both sides of the Atlantic and ||| 0.111111 0.000651268 0.00961538 0.000516879 2.718 ||| 0-0 1-1 2-2 2-3 3-4 ||| 9 104 +ambos lados del Atlántico ||| both sides of the Atlantic to ||| 0.333333 0.000651268 0.0192308 0.00366672 2.718 ||| 0-0 1-1 2-2 2-3 3-4 ||| 6 104 +ambos lados del Atlántico ||| both sides of the Atlantic ||| 0.586957 0.000651268 0.778846 0.0412648 2.718 ||| 0-0 1-1 2-2 2-3 3-4 ||| 138 104 +ambos lados del Atlántico ||| each side of the Atlantic ||| 0.333333 1.04095e-06 0.00961538 4.83221e-05 2.718 ||| 0-0 1-1 2-2 2-3 3-4 ||| 3 104 +ambos lados del Atlántico ||| either side of the Atlantic ||| 0.263158 2.31086e-06 0.0480769 5.16931e-05 2.718 ||| 0-0 1-1 2-2 2-3 3-4 ||| 19 104 +ambos lados del Atlántico ||| opposite sides of the Atlantic ||| 1 7.23386e-06 0.0192308 3.82114e-05 2.718 ||| 0-0 1-1 2-2 2-3 3-4 ||| 2 104 +ambos lados del Atlántico ||| the different sides of the Atlantic ||| 1 8.41457e-07 0.00961538 2.43354e-06 2.718 ||| 0-0 0-1 1-2 2-3 2-4 3-5 ||| 1 104 +ambos lados del Atlántico ||| the other side of the ocean ||| 0.2 1.3791e-09 0.00961538 1.60452e-09 2.718 ||| 0-0 0-1 0-2 1-2 2-3 2-4 3-5 ||| 5 104 +ambos lados del Atlántico ||| the two shores of the Atlantic ||| 0.333333 8.35298e-06 0.00961538 8.21735e-06 2.718 ||| 0-0 0-1 1-2 2-3 2-4 3-5 ||| 3 104 +ambos lados del Atlántico ||| the two sides of the Atlantic ||| 0.375 5.7598e-05 0.0288462 0.000726415 2.718 ||| 0-0 0-1 1-2 2-3 2-4 3-5 ||| 8 104 +ambos lados del Atlántico ||| the way in which the 1995 ||| 1 5.32256e-14 0.00961538 4.5052e-12 2.718 ||| 0-0 1-1 2-2 3-5 ||| 1 104 +ambos lados del Atlántico ||| two sides of the Atlantic ||| 0.125 0.000114192 0.00961538 0.00760342 2.718 ||| 0-0 1-1 2-2 2-3 3-4 ||| 8 104 +ambos lados del ||| all sides of ||| 0.0131579 1.58423e-06 0.00609756 0.000661928 2.718 ||| 0-0 1-1 2-2 ||| 76 164 +ambos lados del ||| and the other side of the ||| 1 1.03893e-07 0.00609756 6.44479e-09 2.718 ||| 0-1 0-2 0-3 1-3 2-4 2-5 ||| 1 164 +ambos lados del ||| both shores of the ||| 0.166667 0.000151993 0.0182927 0.000495648 2.718 ||| 0-0 1-1 2-2 2-3 ||| 18 164 +ambos lados del ||| both sides in the ||| 0.04 0.000470903 0.00609756 0.00400543 2.718 ||| 0-0 1-1 2-2 2-3 ||| 25 164 +ambos lados del ||| both sides of the ||| 0.375367 0.00104807 0.780488 0.0438154 2.718 ||| 0-0 1-1 2-2 2-3 ||| 341 164 +ambos lados del ||| both sides of this ||| 0.05 0.00134272 0.00609756 0.000815133 2.718 ||| 0-0 1-1 2-2 ||| 20 164 +ambos lados del ||| both sides of ||| 0.00862069 0.00134272 0.0121951 0.126154 2.718 ||| 0-0 1-1 2-2 ||| 232 164 +ambos lados del ||| both sides ||| 0.000442087 9.09167e-05 0.00609756 0.427663 2.718 ||| 0-0 1-1 ||| 2262 164 +ambos lados del ||| each side of the ||| 0.125 1.67518e-06 0.00609756 5.13089e-05 2.718 ||| 0-0 1-1 2-2 2-3 ||| 8 164 +ambos lados del ||| either side of the ||| 0.186047 3.7188e-06 0.0487805 5.48883e-05 2.718 ||| 0-0 1-1 2-2 2-3 ||| 43 164 +ambos lados del ||| opposite sides of the ||| 0.333333 1.16412e-05 0.0121951 4.05733e-05 2.718 ||| 0-0 1-1 2-2 2-3 ||| 6 164 +ambos lados del ||| the different sides of the ||| 0.5 1.35413e-06 0.00609756 2.58396e-06 2.718 ||| 0-0 0-1 1-2 2-3 2-4 ||| 2 164 +ambos lados del ||| the other side of the ||| 0.0110497 1.03893e-07 0.0121951 5.14517e-07 2.718 ||| 0-0 0-1 0-2 1-2 2-3 2-4 ||| 181 164 +ambos lados del ||| the shores of the ||| 0.0294118 2.34409e-07 0.00609756 7.89366e-05 2.718 ||| 0-0 1-1 2-2 2-3 ||| 34 164 +ambos lados del ||| the two shores of the ||| 0.0434783 1.34422e-05 0.00609756 8.72526e-06 2.718 ||| 0-0 0-1 1-2 2-3 2-4 ||| 23 164 +ambos lados del ||| the two sides of the ||| 0.0952381 9.26908e-05 0.0243902 0.000771315 2.718 ||| 0-0 0-1 1-2 2-3 2-4 ||| 42 164 +ambos lados del ||| the way in which the ||| 0.00222717 1.10864e-10 0.00609756 4.334e-09 2.718 ||| 0-0 1-1 2-2 ||| 449 164 +ambos lados del ||| the way in which ||| 0.000377358 1.10864e-10 0.00609756 7.05958e-08 2.718 ||| 0-0 1-1 2-2 ||| 2650 164 +ambos lados del ||| the way in ||| 0.000340136 1.10864e-10 0.00609756 8.31067e-06 2.718 ||| 0-0 1-1 2-2 ||| 2940 164 +ambos lados del ||| this and the other side of the ||| 1 1.03893e-07 0.00609756 4.16424e-11 2.718 ||| 0-2 0-3 0-4 1-4 2-5 2-6 ||| 1 164 +ambos lados del ||| to both sides in the ||| 0.5 0.000470903 0.00609756 0.000355915 2.718 ||| 0-1 1-2 2-3 2-4 ||| 2 164 +ambos lados del ||| two sides of the ||| 0.00787402 0.000183765 0.00609756 0.00807339 2.718 ||| 0-0 1-1 2-2 2-3 ||| 127 164 +ambos lados ||| Both Banks of ||| 0.333333 3.35714e-07 0.00228833 7.04775e-12 2.718 ||| 0-0 ||| 3 437 +ambos lados ||| Both Banks ||| 0.5 3.35714e-07 0.00228833 1.2964e-10 2.718 ||| 0-0 ||| 2 437 +ambos lados ||| Both ||| 0.111111 3.35714e-07 0.00228833 0.0001852 2.718 ||| 0-0 ||| 9 437 +ambos lados ||| across ||| 0.000151355 1.5805e-08 0.00228833 0.0112903 2.718 ||| 1-0 ||| 6607 437 +ambos lados ||| all sides , ||| 0.015873 0.0001868 0.00228833 0.000134252 2.718 ||| 0-0 0-1 1-1 ||| 63 437 +ambos lados ||| all sides ||| 0.00891266 1.21281e-05 0.0114416 0.00224393 2.718 ||| 0-0 1-1 ||| 561 437 +ambos lados ||| and the other side ||| 0.142857 1.01896e-06 0.00228833 6.29047e-08 2.718 ||| 0-1 0-2 0-3 1-3 ||| 7 437 +ambos lados ||| both camps ||| 0.0625 0.000179001 0.00228833 0.00193512 2.718 ||| 0-0 1-1 ||| 16 437 +ambos lados ||| both directions ||| 0.0222222 0.000743763 0.00228833 0.00290268 2.718 ||| 0-0 1-1 ||| 45 437 +ambos lados ||| both ends ||| 0.0769231 0.000296239 0.00228833 0.00290268 2.718 ||| 0-0 1-1 ||| 13 437 +ambos lados ||| both parties ||| 0.0011655 7.11181e-06 0.00228833 0.000967561 2.718 ||| 0-0 1-1 ||| 858 437 +ambos lados ||| both shores ||| 0.125 0.00149072 0.00686499 0.0048378 2.718 ||| 0-0 1-1 ||| 24 437 +ambos lados ||| both side all the time ||| 1 0.000644476 0.00228833 1.79716e-08 2.718 ||| 0-0 1-1 ||| 1 437 +ambos lados ||| both side all the ||| 1 0.000644476 0.00228833 1.09469e-05 2.718 ||| 0-0 1-1 ||| 1 437 +ambos lados ||| both side all ||| 1 0.000644476 0.00228833 0.000178313 2.718 ||| 0-0 1-1 ||| 1 437 +ambos lados ||| both side ||| 1 0.000644476 0.00228833 0.0377349 2.718 ||| 0-0 1-1 ||| 1 437 +ambos lados ||| both sides , ||| 0.0121457 0.0102792 0.00686499 0.0510008 2.718 ||| 0-0 1-1 ||| 247 437 +ambos lados ||| both sides can be ||| 0.5 0.0102792 0.00228833 2.30523e-05 2.718 ||| 0-0 1-1 ||| 2 437 +ambos lados ||| both sides can ||| 0.0714286 0.0102792 0.00228833 0.001272 2.718 ||| 0-0 1-1 ||| 14 437 +ambos lados ||| both sides of it ||| 0.5 0.0102792 0.00228833 0.00041345 2.718 ||| 0-0 1-1 ||| 2 437 +ambos lados ||| both sides of ||| 0.00431034 0.0102792 0.00228833 0.0232495 2.718 ||| 0-0 1-1 ||| 232 437 +ambos lados ||| both sides that ||| 0.0454545 0.0102792 0.00228833 0.00719397 2.718 ||| 0-0 1-1 ||| 22 437 +ambos lados ||| both sides there ||| 1 0.0102792 0.00228833 0.00131091 2.718 ||| 0-0 1-1 ||| 1 437 +ambos lados ||| both sides to succeed ||| 1 0.00515619 0.00228833 6.12924e-05 2.718 ||| 0-0 1-1 1-3 ||| 1 437 +ambos lados ||| both sides to ||| 0.0143885 0.0102792 0.00457666 0.0380013 2.718 ||| 0-0 1-1 ||| 139 437 +ambos lados ||| both sides with an ||| 1 0.0102792 0.00228833 1.21549e-05 2.718 ||| 0-0 1-1 ||| 1 437 +ambos lados ||| both sides with ||| 0.333333 0.0102792 0.00228833 0.00273469 2.718 ||| 0-0 1-1 ||| 3 437 +ambos lados ||| both sides ||| 0.148983 0.0102792 0.771167 0.427663 2.718 ||| 0-0 1-1 ||| 2262 437 +ambos lados ||| both ways ||| 0.0172414 1.68291e-05 0.00228833 0.000967561 2.718 ||| 0-0 1-1 ||| 58 437 +ambos lados ||| each side ||| 0.0298507 1.64298e-05 0.00457666 0.000500804 2.718 ||| 0-0 1-1 ||| 67 437 +ambos lados ||| either side ||| 0.172932 3.64733e-05 0.0526316 0.00053574 2.718 ||| 0-0 1-1 ||| 133 437 +ambos lados ||| front ||| 0.000958773 1.2653e-08 0.00228833 0.0016129 2.718 ||| 1-0 ||| 1043 437 +ambos lados ||| is that both sides ||| 0.25 0.0102792 0.00228833 0.000225467 2.718 ||| 0-2 1-3 ||| 4 437 +ambos lados ||| on both sides ||| 0.00250627 0.0102792 0.00457666 0.00286149 2.718 ||| 0-1 1-2 ||| 798 437 +ambos lados ||| one side ||| 0.00338983 2.21029e-07 0.00457666 3.49427e-05 2.718 ||| 0-0 1-1 ||| 590 437 +ambos lados ||| opposite sides ||| 0.375 0.000114175 0.00686499 0.000396018 2.718 ||| 0-0 1-1 ||| 8 437 +ambos lados ||| reciprocal ||| 0.00246305 1.0618e-05 0.00228833 0.0009916 2.718 ||| 0-0 1-0 ||| 406 437 +ambos lados ||| that both sides ||| 0.00970874 0.0102792 0.00228833 0.00719397 2.718 ||| 0-1 1-2 ||| 103 437 +ambos lados ||| the borders ||| 0.00101937 1.59302e-08 0.00228833 0.000154093 2.718 ||| 0-0 1-1 ||| 981 437 +ambos lados ||| the different sides ||| 0.111111 1.32811e-05 0.00228833 2.52209e-05 2.718 ||| 0-0 0-1 1-2 ||| 9 437 +ambos lados ||| the other side ||| 0.0043956 1.01896e-06 0.00457666 5.02197e-06 2.718 ||| 0-0 0-1 0-2 1-2 ||| 455 437 +ambos lados ||| the shores ||| 0.0149254 2.29904e-06 0.00228833 0.000770465 2.718 ||| 0-0 1-1 ||| 67 437 +ambos lados ||| the two camps ||| 0.0833333 1.58308e-05 0.00228833 3.40654e-05 2.718 ||| 0-0 0-1 1-2 ||| 12 437 +ambos lados ||| the two extremes ||| 0.125 4.93997e-05 0.00228833 1.70327e-05 2.718 ||| 0-0 0-1 1-2 ||| 8 437 +ambos lados ||| the two shores ||| 0.0416667 0.000131839 0.00228833 8.51635e-05 2.718 ||| 0-0 0-1 1-2 ||| 24 437 +ambos lados ||| the two sides ||| 0.0267857 0.000909093 0.020595 0.00752847 2.718 ||| 0-0 0-1 1-2 ||| 336 437 +ambos lados ||| the two together ||| 0.0625 8.85638e-07 0.00228833 3.40654e-05 2.718 ||| 0-0 0-1 1-2 ||| 16 437 +ambos lados ||| the way ||| 7.73874e-05 6.0489e-09 0.00228833 0.000308186 2.718 ||| 0-0 1-1 ||| 12922 437 +ambos lados ||| this and the other side ||| 1 1.01896e-06 0.00228833 4.06453e-10 2.718 ||| 0-2 0-3 0-4 1-4 ||| 1 437 +ambos lados ||| to both sides ||| 0.00787402 0.0102792 0.00228833 0.0380013 2.718 ||| 0-1 1-2 ||| 127 437 +ambos lados ||| total ||| 0.000170126 4.48136e-09 0.00228833 0.0016129 2.718 ||| 1-0 ||| 5878 437 +ambos lados ||| two sides of the argument ||| 1 0.00180233 0.00228833 8.52114e-09 2.718 ||| 0-0 1-1 ||| 1 437 +ambos lados ||| two sides of the ||| 0.00787402 0.00180233 0.00228833 0.000262998 2.718 ||| 0-0 1-1 ||| 127 437 +ambos lados ||| two sides of ||| 0.00540541 0.00180233 0.00228833 0.00428393 2.718 ||| 0-0 1-1 ||| 185 437 +ambos lados ||| two sides ||| 0.00502513 0.00180233 0.00457666 0.0788008 2.718 ||| 0-0 1-1 ||| 398 437 +ambos ||| 's disadvantage ||| 0.142857 0.0010764 0.000225378 3.52695e-07 2.718 ||| 0-1 ||| 7 4437 +ambos ||| ) repealed both ||| 1 0.0927224 0.000225378 1.552e-09 2.718 ||| 0-2 ||| 1 4437 +ambos ||| , both presidents confirmed ||| 0.2 0.0927224 0.000225378 9.71507e-13 2.718 ||| 0-1 ||| 5 4437 +ambos ||| , both presidents ||| 0.2 0.0927224 0.000225378 5.00777e-08 2.718 ||| 0-1 ||| 5 4437 +ambos ||| , both these ||| 0.0714286 0.0479815 0.000225378 0.00447702 2.718 ||| 0-1 0-2 ||| 14 4437 +ambos ||| , both ||| 0.00128111 0.0927224 0.00157764 0.0715396 2.718 ||| 0-1 ||| 5464 4437 +ambos ||| , but both ||| 0.0384615 0.0927224 0.000225378 4.88901e-05 2.718 ||| 0-2 ||| 26 4437 +ambos ||| , should both ||| 0.5 0.0927224 0.000225378 0.000316992 2.718 ||| 0-2 ||| 2 4437 +ambos ||| , that the ||| 0.000245158 0.000143 0.000225378 0.000191654 2.718 ||| 0-2 ||| 4079 4437 +ambos ||| , these two ||| 0.0206186 0.00974915 0.000450755 0.000824932 2.718 ||| 0-1 0-2 ||| 97 4437 +ambos ||| / 97 ) repealed both ||| 1 0.0927224 0.000225378 2.17745e-18 2.718 ||| 0-4 ||| 1 4437 +ambos ||| 97 ) repealed both ||| 1 0.0927224 0.000225378 9.46718e-15 2.718 ||| 0-3 ||| 1 4437 +ambos ||| Amending ||| 0.0227273 0.0090909 0.000225378 0.0001852 2.718 ||| 0-0 ||| 44 4437 +ambos ||| Both Banks of ||| 0.333333 0.0714286 0.000225378 7.04775e-12 2.718 ||| 0-0 ||| 3 4437 +ambos ||| Both Banks ||| 0.5 0.0714286 0.000225378 1.2964e-10 2.718 ||| 0-0 ||| 2 4437 +ambos ||| Both ||| 0.111111 0.0714286 0.000225378 0.0001852 2.718 ||| 0-0 ||| 9 4437 +ambos ||| Commission and the Council ||| 0.000337724 8.13e-05 0.000225378 2.58837e-10 2.718 ||| 0-2 0-3 ||| 2961 4437 +ambos ||| ESC and the ||| 0.5 0.000143 0.000225378 8.37689e-10 2.718 ||| 0-2 ||| 2 4437 +ambos ||| EU-US ||| 0.0027248 0.0010256 0.000225378 0.0001852 2.718 ||| 0-0 ||| 367 4437 +ambos ||| Mauritania ||| 0.0025974 0.0026596 0.000225378 0.0001852 2.718 ||| 0-0 ||| 385 4437 +ambos ||| Mexico and the European Union ||| 0.0909091 0.000417767 0.000225378 1.22121e-13 2.718 ||| 0-0 0-1 0-2 ||| 11 4437 +ambos ||| Mexico and the European ||| 1 0.000417767 0.000225378 2.19091e-10 2.718 ||| 0-0 0-1 0-2 ||| 1 4437 +ambos ||| Mexico and the ||| 0.047619 0.000417767 0.000225378 6.55195e-08 2.718 ||| 0-0 0-1 0-2 ||| 21 4437 +ambos ||| Parliament and the Commission ||| 0.000906618 5.46333e-05 0.000225378 3.76082e-11 2.718 ||| 0-1 0-2 0-3 ||| 1103 4437 +ambos ||| Romania and ||| 0.00102775 0.0004663 0.000225378 2.74244e-06 2.718 ||| 0-0 0-1 ||| 973 4437 +ambos ||| Romania ||| 0.00062383 0.0009176 0.000676133 0.0007406 2.718 ||| 0-0 ||| 4809 4437 +ambos ||| Romania ’ s ||| 0.0178571 0.0009176 0.000225378 2.45435e-09 2.718 ||| 0-0 ||| 56 4437 +ambos ||| Romania ’ ||| 0.0169492 0.0009176 0.000225378 1.2902e-06 2.718 ||| 0-0 ||| 59 4437 +ambos ||| States ||| 2.46457e-05 7.7e-06 0.000225378 0.0001852 2.718 ||| 0-0 ||| 40575 4437 +ambos ||| United States ||| 7.7815e-05 7.7e-06 0.000225378 2.26685e-08 2.718 ||| 0-1 ||| 12851 4437 +ambos ||| again , ||| 0.000481232 5.52e-05 0.000225378 4.416e-05 2.718 ||| 0-0 ||| 2078 4437 +ambos ||| again ||| 0.000142949 5.52e-05 0.000450755 0.0003703 2.718 ||| 0-0 ||| 13991 4437 +ambos ||| agreed ||| 0.00010784 9.54e-05 0.000225378 0.0001852 2.718 ||| 0-0 ||| 9273 4437 +ambos ||| all of us , certain ||| 1 0.0001386 0.000225378 1.77827e-11 2.718 ||| 0-2 ||| 1 4437 +ambos ||| all of us , ||| 0.00319489 0.0001386 0.000225378 6.23954e-08 2.718 ||| 0-2 ||| 313 4437 +ambos ||| all of us ||| 0.00055371 0.0001386 0.000225378 5.23211e-07 2.718 ||| 0-2 ||| 1806 4437 +ambos ||| all the ||| 3.26915e-05 0.0001262 0.000225378 0.000300715 2.718 ||| 0-0 0-1 ||| 30589 4437 +ambos ||| all ||| 8.50485e-05 0.0001094 0.00292991 0.0031476 2.718 ||| 0-0 ||| 152854 4437 +ambos ||| allow them both ||| 1 0.0927224 0.000225378 3.90378e-07 2.718 ||| 0-2 ||| 1 4437 +ambos ||| always have to say these two in ||| 0.5 0.0032406 0.000225378 5.53238e-17 2.718 ||| 0-4 ||| 2 4437 +ambos ||| always have to say these two ||| 0.5 0.0032406 0.000225378 2.58468e-15 2.718 ||| 0-4 ||| 2 4437 +ambos ||| always have to say these ||| 0.5 0.0032406 0.000225378 1.09335e-11 2.718 ||| 0-4 ||| 2 4437 +ambos ||| and I might well ||| 1 1.5e-05 0.000225378 1.59482e-11 2.718 ||| 0-0 ||| 1 4437 +ambos ||| and I might ||| 0.0909091 1.5e-05 0.000225378 1.00582e-08 2.718 ||| 0-0 ||| 11 4437 +ambos ||| and I ||| 7.44048e-05 1.5e-05 0.000225378 2.61932e-05 2.718 ||| 0-0 ||| 13440 4437 +ambos ||| and beer ||| 0.0555556 0.00166865 0.000225378 6.85796e-07 2.718 ||| 0-0 0-1 ||| 18 4437 +ambos ||| and both ||| 0.0123967 0.0463687 0.000676133 0.00222139 2.718 ||| 0-0 0-1 ||| 242 4437 +ambos ||| and everyone else 's disadvantage ||| 1 0.0010764 0.000225378 3.50837e-17 2.718 ||| 0-4 ||| 1 4437 +ambos ||| and the Commission ||| 0.000123077 5.46333e-05 0.000225378 6.55195e-08 2.718 ||| 0-0 0-1 0-2 ||| 8125 4437 +ambos ||| and the Council to ||| 0.00163132 0.000143 0.000225378 3.67711e-08 2.718 ||| 0-1 ||| 613 4437 +ambos ||| and the Council ||| 0.00045683 5.92e-05 0.000676133 1.31004e-07 2.718 ||| 0-0 0-1 0-2 ||| 6567 4437 +ambos ||| and the ||| 1.47658e-05 0.000143 0.000450755 0.0011967 2.718 ||| 0-1 ||| 135448 4437 +ambos ||| and ||| 4.57334e-06 1.5e-05 0.00157764 0.003703 2.718 ||| 0-0 ||| 1.53061e+06 4437 +ambos ||| another , in fact ||| 0.5 0.0001012 0.000225378 2.76884e-09 2.718 ||| 0-0 ||| 2 4437 +ambos ||| another , in ||| 0.0714286 0.0001012 0.000225378 9.45223e-07 2.718 ||| 0-0 ||| 14 4437 +ambos ||| another , ||| 0.00114155 0.0001012 0.000225378 4.416e-05 2.718 ||| 0-0 ||| 876 4437 +ambos ||| another ||| 0.000103348 0.0001012 0.000450755 0.0003703 2.718 ||| 0-0 ||| 19352 4437 +ambos ||| any ||| 2.2144e-05 1.87e-05 0.000225378 0.0001852 2.718 ||| 0-0 ||| 45159 4437 +ambos ||| are both the ||| 0.166667 0.0464327 0.000225378 0.00086958 2.718 ||| 0-1 0-2 ||| 6 4437 +ambos ||| are both ||| 0.025 0.0927224 0.00157764 0.00910193 2.718 ||| 0-1 ||| 280 4437 +ambos ||| are two ||| 0.00331675 0.0162577 0.000450755 0.00167712 2.718 ||| 0-1 ||| 603 4437 +ambos ||| as male ||| 0.333333 0.0039683 0.000225378 3.77869e-06 2.718 ||| 0-1 ||| 3 4437 +ambos ||| at these two ||| 0.2 0.00974915 0.000225378 2.89659e-05 2.718 ||| 0-1 0-2 ||| 5 4437 +ambos ||| be concluded between these two ||| 0.5 0.00974915 0.000225378 1.17732e-12 2.718 ||| 0-3 0-4 ||| 2 4437 +ambos ||| be discussing both ||| 1 0.0927224 0.000225378 3.83772e-07 2.718 ||| 0-2 ||| 1 4437 +ambos ||| be settled between the two ||| 1 0.00820035 0.000225378 8.38082e-13 2.718 ||| 0-3 0-4 ||| 1 4437 +ambos ||| belongs to all of us , certain ||| 1 0.0001386 0.000225378 2.38601e-17 2.718 ||| 0-4 ||| 1 4437 +ambos ||| belongs to all of us , ||| 0.2 0.0001386 0.000225378 8.37196e-14 2.718 ||| 0-4 ||| 5 4437 +ambos ||| belongs to all of us ||| 0.111111 0.0001386 0.000225378 7.02023e-13 2.718 ||| 0-4 ||| 9 4437 +ambos ||| beneficial ||| 0.00139567 0.0013624 0.000450755 0.0003703 2.718 ||| 0-0 ||| 1433 4437 +ambos ||| between the two ||| 0.00177305 0.00820035 0.000450755 2.7858e-06 2.718 ||| 0-1 0-2 ||| 1128 4437 +ambos ||| between these two ||| 0.00458716 0.00974915 0.000225378 1.82481e-06 2.718 ||| 0-1 0-2 ||| 218 4437 +ambos ||| both , ||| 0.0337079 0.0927224 0.000676133 0.0715396 2.718 ||| 0-0 ||| 89 4437 +ambos ||| both Commission ||| 0.1 0.0927224 0.000225378 0.000350395 2.718 ||| 0-0 ||| 10 4437 +ambos ||| both Members involved ||| 0.5 0.0463782 0.000225378 3.84182e-08 2.718 ||| 0-0 0-1 ||| 2 4437 +ambos ||| both Members ||| 0.0588235 0.0463782 0.000225378 0.000111099 2.718 ||| 0-0 0-1 ||| 17 4437 +ambos ||| both Mr Solana ||| 0.125 0.0927224 0.000225378 8.61536e-10 2.718 ||| 0-0 ||| 8 4437 +ambos ||| both Mr ||| 0.00666667 0.0927224 0.000225378 0.000391607 2.718 ||| 0-0 ||| 150 4437 +ambos ||| both aspects ||| 0.025641 0.0927224 0.000225378 4.22922e-05 2.718 ||| 0-0 ||| 39 4437 +ambos ||| both be ||| 0.0416667 0.0927224 0.000225378 0.0108717 2.718 ||| 0-0 ||| 24 4437 +ambos ||| both believed ||| 0.5 0.0927224 0.000225378 6.71876e-06 2.718 ||| 0-0 ||| 2 4437 +ambos ||| both business and ||| 0.0769231 0.0927224 0.000225378 9.38517e-07 2.718 ||| 0-0 ||| 13 4437 +ambos ||| both business ||| 0.125 0.0927224 0.000225378 7.49261e-05 2.718 ||| 0-0 ||| 8 4437 +ambos ||| both cases they ||| 1 0.0465207 0.000225378 1.45012e-06 2.718 ||| 0-0 0-1 ||| 1 4437 +ambos ||| both cases ||| 0.0220264 0.0465207 0.00112689 0.000444278 2.718 ||| 0-0 0-1 ||| 227 4437 +ambos ||| both directly ||| 0.0434783 0.0927224 0.000225378 2.26758e-05 2.718 ||| 0-0 ||| 23 4437 +ambos ||| both for ||| 0.000993049 0.0927224 0.000225378 0.00461057 2.718 ||| 0-0 ||| 1007 4437 +ambos ||| both gentlemen ||| 0.0909091 0.0927224 0.000225378 4.14523e-05 2.718 ||| 0-0 ||| 11 4437 +ambos ||| both giving ||| 1 0.0927224 0.000225378 9.45425e-05 2.718 ||| 0-0 ||| 1 4437 +ambos ||| both groups ||| 0.0625 0.0465021 0.000450755 0.000444278 2.718 ||| 0-0 0-1 ||| 32 4437 +ambos ||| both have the ||| 0.5 0.0464327 0.000225378 0.000685442 2.718 ||| 0-0 0-2 ||| 2 4437 +ambos ||| both his ||| 0.0714286 0.0927224 0.000225378 0.000180267 2.718 ||| 0-0 ||| 14 4437 +ambos ||| both in ||| 0.000398406 0.0927224 0.000225378 0.0128403 2.718 ||| 0-0 ||| 2510 4437 +ambos ||| both individuals ||| 0.0714286 0.0464897 0.000225378 0.000111099 2.718 ||| 0-0 0-1 ||| 14 4437 +ambos ||| both men ||| 0.0823529 0.0475479 0.00157764 0.00199925 2.718 ||| 0-0 0-1 ||| 85 4437 +ambos ||| both mothers ||| 0.25 0.0927224 0.000225378 1.31976e-06 2.718 ||| 0-0 ||| 4 4437 +ambos ||| both now ||| 0.0131579 0.0927224 0.000225378 0.00123571 2.718 ||| 0-0 ||| 76 4437 +ambos ||| both of the draft ||| 0.5 0.0464099 0.000225378 3.70795e-07 2.718 ||| 0-0 0-3 ||| 2 4437 +ambos ||| both of the ||| 0.0432432 0.0464327 0.00180302 0.00311572 2.718 ||| 0-0 0-2 ||| 185 4437 +ambos ||| both of them are ||| 0.111111 0.0927224 0.000225378 1.3273e-06 2.718 ||| 0-0 ||| 9 4437 +ambos ||| both of them ||| 0.291139 0.0469704 0.00518368 0.000398523 2.718 ||| 0-0 0-2 ||| 79 4437 +ambos ||| both of these ||| 0.26455 0.0479815 0.0112689 0.00204091 2.718 ||| 0-0 0-2 ||| 189 4437 +ambos ||| both of those ||| 0.147059 0.046585 0.00112689 0.000163032 2.718 ||| 0-0 0-2 ||| 34 4437 +ambos ||| both of us ||| 0.28 0.0464305 0.00157764 6.64216e-05 2.718 ||| 0-0 0-2 ||| 25 4437 +ambos ||| both of which are ||| 0.115385 0.0927224 0.000676133 4.20328e-06 2.718 ||| 0-0 ||| 26 4437 +ambos ||| both of which involve ||| 1 0.0927224 0.000225378 1.36575e-08 2.718 ||| 0-0 ||| 1 4437 +ambos ||| both of which ||| 0.0839695 0.0927224 0.00247915 0.000277029 2.718 ||| 0-0 ||| 131 4437 +ambos ||| both of you ||| 0.214286 0.0927224 0.000676133 0.000105296 2.718 ||| 0-0 ||| 14 4437 +ambos ||| both of ||| 0.100407 0.0927224 0.0166779 0.0326124 2.718 ||| 0-0 ||| 737 4437 +ambos ||| both on the ||| 0.00502513 0.0927224 0.000225378 0.000246418 2.718 ||| 0-0 ||| 199 4437 +ambos ||| both on ||| 0.00215517 0.0927224 0.000225378 0.00401386 2.718 ||| 0-0 ||| 464 4437 +ambos ||| both our ||| 0.0479452 0.0463984 0.00157764 0.00122179 2.718 ||| 0-0 0-1 ||| 146 4437 +ambos ||| both parents ||| 0.012987 0.0927224 0.000225378 2.57952e-06 2.718 ||| 0-0 ||| 77 4437 +ambos ||| both parties , ||| 0.01 0.0464763 0.000225378 3.97402e-05 2.718 ||| 0-0 0-1 ||| 100 4437 +ambos ||| both parties ||| 0.002331 0.0464763 0.000450755 0.000333238 2.718 ||| 0-0 0-1 ||| 858 4437 +ambos ||| both places ||| 0.2 0.0927224 0.000225378 3.17341e-05 2.718 ||| 0-0 ||| 5 4437 +ambos ||| both policies with a view ||| 0.5 0.0927224 0.000225378 1.01217e-11 2.718 ||| 0-0 ||| 2 4437 +ambos ||| both policies with a ||| 0.5 0.0927224 0.000225378 1.12052e-08 2.718 ||| 0-0 ||| 2 4437 +ambos ||| both policies with ||| 0.5 0.0927224 0.000225378 2.52792e-07 2.718 ||| 0-0 ||| 2 4437 +ambos ||| both policies ||| 0.1 0.0927224 0.000225378 3.95327e-05 2.718 ||| 0-0 ||| 10 4437 +ambos ||| both presidents confirmed ||| 0.2 0.0927224 0.000225378 8.14649e-12 2.718 ||| 0-0 ||| 5 4437 +ambos ||| both presidents ||| 0.166667 0.0927224 0.000225378 4.19922e-07 2.718 ||| 0-0 ||| 6 4437 +ambos ||| both pursue ||| 0.5 0.0927224 0.000225378 2.35156e-05 2.718 ||| 0-0 ||| 2 4437 +ambos ||| both reports ||| 0.00454545 0.0464471 0.000225378 0.000222139 2.718 ||| 0-0 0-1 ||| 220 4437 +ambos ||| both sides ||| 0.00353669 0.0479915 0.00180302 0.00144393 2.718 ||| 0-0 0-1 ||| 2262 4437 +ambos ||| both states ||| 0.037037 0.0927224 0.000225378 4.51116e-05 2.718 ||| 0-0 ||| 27 4437 +ambos ||| both the Council ||| 0.00401606 0.0464327 0.000225378 1.98185e-05 2.718 ||| 0-0 0-1 ||| 249 4437 +ambos ||| both the Israeli and Palestinian ||| 1 0.0464327 0.000225378 7.37269e-14 2.718 ||| 0-0 0-1 ||| 1 4437 +ambos ||| both the Israeli and ||| 0.2 0.0464327 0.000225378 5.6713e-09 2.718 ||| 0-0 0-1 ||| 5 4437 +ambos ||| both the Israeli ||| 0.333333 0.0464327 0.000225378 4.52766e-07 2.718 ||| 0-0 0-1 ||| 3 4437 +ambos ||| both the future ||| 0.5 0.0464327 0.000225378 1.52221e-05 2.718 ||| 0-0 0-1 ||| 2 4437 +ambos ||| both the ||| 0.00995871 0.0464327 0.00924048 0.0573121 2.718 ||| 0-0 0-1 ||| 4117 4437 +ambos ||| both their ||| 0.0350877 0.0463964 0.000450755 0.000777516 2.718 ||| 0-0 0-1 ||| 57 4437 +ambos ||| both these countries ||| 0.025 0.0479815 0.000225378 1.42546e-05 2.718 ||| 0-0 0-1 ||| 40 4437 +ambos ||| both these ||| 0.241379 0.0479815 0.022087 0.0375416 2.718 ||| 0-0 0-1 ||| 406 4437 +ambos ||| both those ||| 0.0472441 0.046585 0.00135227 0.0029989 2.718 ||| 0-0 0-1 ||| 127 4437 +ambos ||| both to ||| 0.00238663 0.0927224 0.000450755 0.053305 2.718 ||| 0-0 ||| 838 4437 +ambos ||| both types of trans-fatty acid ||| 1 0.0467664 0.000225378 1.93222e-18 2.718 ||| 0-0 0-1 ||| 1 4437 +ambos ||| both types of trans-fatty ||| 1 0.0467664 0.000225378 4.83054e-12 2.718 ||| 0-0 0-1 ||| 1 4437 +ambos ||| both types of ||| 0.1 0.0467664 0.000450755 1.20764e-05 2.718 ||| 0-0 0-1 ||| 20 4437 +ambos ||| both types ||| 0.0952381 0.0467664 0.000450755 0.000222139 2.718 ||| 0-0 0-1 ||| 21 4437 +ambos ||| both you ||| 0.0363636 0.046398 0.000450755 0.00122179 2.718 ||| 0-0 0-1 ||| 55 4437 +ambos ||| both ||| 0.0889573 0.0927224 0.625648 0.599889 2.718 ||| 0-0 ||| 31206 4437 +ambos ||| bring these two ||| 0.5 0.00974915 0.000225378 2.15339e-06 2.718 ||| 0-1 0-2 ||| 2 4437 +ambos ||| bringing the two ||| 0.111111 0.00820035 0.000225378 8.47991e-07 2.718 ||| 0-1 0-2 ||| 9 4437 +ambos ||| but both ||| 0.0217391 0.0927224 0.000225378 0.000409964 2.718 ||| 0-1 ||| 46 4437 +ambos ||| but these two ||| 0.142857 0.00974915 0.000225378 4.72735e-06 2.718 ||| 0-1 0-2 ||| 7 4437 +ambos ||| by both the ||| 0.00609756 0.0464327 0.000225378 0.000300894 2.718 ||| 0-1 0-2 ||| 164 4437 +ambos ||| by both ||| 0.00854701 0.0927224 0.00112689 0.00314948 2.718 ||| 0-1 ||| 585 4437 +ambos ||| by the ||| 1.42745e-05 0.000143 0.000225378 0.000501584 2.718 ||| 0-1 ||| 70055 4437 +ambos ||| can be settled between the two ||| 1 0.00820035 0.000225378 2.49271e-15 2.718 ||| 0-4 0-5 ||| 1 4437 +ambos ||| careful drafting of both ||| 1 0.0927224 0.000225378 1.33698e-11 2.718 ||| 0-3 ||| 1 4437 +ambos ||| case of both ||| 0.111111 0.0927224 0.000225378 3.4892e-05 2.718 ||| 0-2 ||| 9 4437 +ambos ||| chasm separating the two ||| 0.5 0.00820035 0.000225378 1.68965e-15 2.718 ||| 0-2 0-3 ||| 2 4437 +ambos ||| claimed by both ||| 1 0.0927224 0.000225378 6.23596e-08 2.718 ||| 0-2 ||| 1 4437 +ambos ||| common ||| 3.11507e-05 6.2e-05 0.000225378 0.0003703 2.718 ||| 0-0 ||| 32102 4437 +ambos ||| concluded between these two ||| 0.333333 0.00974915 0.000225378 6.49632e-11 2.718 ||| 0-2 0-3 ||| 3 4437 +ambos ||| consultation ||| 0.000187935 0.0002449 0.000225378 0.0001852 2.718 ||| 0-0 ||| 5321 4437 +ambos ||| disadvantage ||| 0.00134048 0.0010764 0.000225378 0.0001852 2.718 ||| 0-0 ||| 746 4437 +ambos ||| discussing both ||| 0.166667 0.0927224 0.000225378 2.11761e-05 2.718 ||| 0-1 ||| 6 4437 +ambos ||| drafting of both ||| 1 0.0927224 0.000225378 4.82663e-07 2.718 ||| 0-2 ||| 1 4437 +ambos ||| each of the ||| 0.00246002 0.0012534 0.000450755 4.13506e-05 2.718 ||| 0-0 0-2 ||| 813 4437 +ambos ||| each of them ||| 0.0152672 0.00179115 0.000450755 5.28905e-06 2.718 ||| 0-0 0-2 ||| 131 4437 +ambos ||| each of these ||| 0.00858369 0.0028022 0.000450755 2.70862e-05 2.718 ||| 0-0 0-2 ||| 233 4437 +ambos ||| each other ||| 0.00169875 0.0012412 0.000676133 1.3267e-05 2.718 ||| 0-0 0-1 ||| 1766 4437 +ambos ||| each party ||| 0.0142857 0.00128105 0.000225378 1.47447e-06 2.718 ||| 0-0 0-1 ||| 70 4437 +ambos ||| each ||| 0.00195865 0.0023638 0.00608519 0.0079615 2.718 ||| 0-0 ||| 13785 4437 +ambos ||| either ||| 0.00891886 0.0052475 0.00924048 0.0085169 2.718 ||| 0-0 ||| 4597 4437 +ambos ||| else 's disadvantage ||| 1 0.0010764 0.000225378 4.1618e-11 2.718 ||| 0-2 ||| 1 4437 +ambos ||| ensure ||| 3.44436e-05 3.24e-05 0.000225378 0.0001852 2.718 ||| 0-0 ||| 29033 4437 +ambos ||| everyone else 's disadvantage ||| 1 0.0010764 0.000225378 2.80089e-15 2.718 ||| 0-3 ||| 1 4437 +ambos ||| fact that both ||| 0.0188679 0.0927224 0.000225378 2.95598e-05 2.718 ||| 0-2 ||| 53 4437 +ambos ||| fact that these two ||| 0.125 0.00974915 0.000225378 3.40858e-07 2.718 ||| 0-2 0-3 ||| 8 4437 +ambos ||| female as male ||| 0.5 0.0039683 0.000225378 6.95279e-11 2.718 ||| 0-2 ||| 2 4437 +ambos ||| for both these ||| 0.153846 0.0479815 0.000450755 0.000288534 2.718 ||| 0-1 0-2 ||| 13 4437 +ambos ||| for both ||| 0.000796178 0.0927224 0.000225378 0.00461057 2.718 ||| 0-1 ||| 1256 4437 +ambos ||| for these ||| 0.000303398 0.0032406 0.000225378 0.000480979 2.718 ||| 0-1 ||| 3296 4437 +ambos ||| for which both Commission ||| 1 0.0927224 0.000225378 2.28762e-08 2.718 ||| 0-2 ||| 1 4437 +ambos ||| for which both ||| 0.333333 0.0927224 0.000225378 3.91649e-05 2.718 ||| 0-2 ||| 3 4437 +ambos ||| frequent ||| 0.00141844 0.0013175 0.000225378 0.0001852 2.718 ||| 0-0 ||| 705 4437 +ambos ||| groups ||| 7.57289e-05 0.0002818 0.000225378 0.0007406 2.718 ||| 0-0 ||| 13205 4437 +ambos ||| have both ||| 0.020979 0.0927224 0.000676133 0.00717455 2.718 ||| 0-1 ||| 143 4437 +ambos ||| have to say these two in ||| 0.5 0.0032406 0.000225378 3.2165e-13 2.718 ||| 0-3 ||| 2 4437 +ambos ||| have to say these two ||| 0.5 0.0032406 0.000225378 1.50272e-11 2.718 ||| 0-3 ||| 2 4437 +ambos ||| have to say these ||| 0.5 0.0032406 0.000225378 6.35669e-08 2.718 ||| 0-3 ||| 2 4437 +ambos ||| he and ||| 0.00540541 2.16e-05 0.000225378 6.85796e-07 2.718 ||| 0-0 0-1 ||| 185 4437 +ambos ||| here and ||| 0.000674309 1.5e-05 0.000225378 7.50894e-06 2.718 ||| 0-1 ||| 1483 4437 +ambos ||| in both cases they ||| 1 0.0465207 0.000225378 3.10391e-08 2.718 ||| 0-1 0-2 ||| 1 4437 +ambos ||| in both cases ||| 0.00438596 0.0465207 0.000225378 9.50954e-06 2.718 ||| 0-1 0-2 ||| 228 4437 +ambos ||| in both ||| 0.000606428 0.0927224 0.000225378 0.0128403 2.718 ||| 0-1 ||| 1649 4437 +ambos ||| in favour ||| 5.18995e-05 9e-07 0.000225378 5.99122e-08 2.718 ||| 0-0 ||| 19268 4437 +ambos ||| in ||| 9.03359e-07 9e-07 0.000225378 0.0001852 2.718 ||| 0-0 ||| 1.10698e+06 4437 +ambos ||| indeed for both ||| 1 0.0927224 0.000225378 3.49435e-06 2.718 ||| 0-2 ||| 1 4437 +ambos ||| intermediary ||| 0.00645161 0.005814 0.000225378 0.0001852 2.718 ||| 0-0 ||| 155 4437 +ambos ||| is another ||| 0.000740741 0.0001012 0.000225378 1.16056e-05 2.718 ||| 0-1 ||| 1350 4437 +ambos ||| is both ||| 0.00173913 0.0927224 0.000225378 0.0188012 2.718 ||| 0-1 ||| 575 4437 +ambos ||| is claimed by both ||| 1 0.0927224 0.000225378 1.95442e-09 2.718 ||| 0-3 ||| 1 4437 +ambos ||| is that both ||| 0.0227273 0.0927224 0.000225378 0.000316266 2.718 ||| 0-2 ||| 44 4437 +ambos ||| is vital for these ||| 1 0.0032406 0.000225378 4.71829e-10 2.718 ||| 0-3 ||| 1 4437 +ambos ||| is what ||| 0.000211193 1.86e-05 0.000225378 1.741e-05 2.718 ||| 0-1 ||| 4735 4437 +ambos ||| it and the Council ||| 0.166667 5.92e-05 0.000225378 2.32966e-09 2.718 ||| 0-1 0-2 0-3 ||| 6 4437 +ambos ||| it is vital for these ||| 0.5 0.0032406 0.000225378 8.39063e-12 2.718 ||| 0-4 ||| 2 4437 +ambos ||| its own and everyone else 's disadvantage ||| 1 0.0010764 0.000225378 8.47374e-23 2.718 ||| 0-6 ||| 1 4437 +ambos ||| jointly faced by ||| 1 0.0016384 0.000225378 1.8461e-10 2.718 ||| 0-0 ||| 1 4437 +ambos ||| jointly faced ||| 1 0.0016384 0.000225378 3.51631e-08 2.718 ||| 0-0 ||| 1 4437 +ambos ||| jointly ||| 0.00121507 0.0016384 0.000450755 0.0005555 2.718 ||| 0-0 ||| 1646 4437 +ambos ||| judging these ||| 1 0.0032406 0.000225378 2.69098e-07 2.718 ||| 0-1 ||| 1 4437 +ambos ||| male ||| 0.00515464 0.0039683 0.000450755 0.0003703 2.718 ||| 0-0 ||| 388 4437 +ambos ||| many female as male ||| 0.5 0.0039683 0.000225378 2.38689e-14 2.718 ||| 0-3 ||| 2 4437 +ambos ||| money that belongs to all of us ||| 1 0.0001386 0.000225378 1.92962e-18 2.718 ||| 0-6 ||| 1 4437 +ambos ||| mutual ||| 0.00258816 0.0023499 0.00180302 0.0020367 2.718 ||| 0-0 ||| 3091 4437 +ambos ||| mutually beneficial ||| 0.00684932 0.0013624 0.000225378 2.40695e-09 2.718 ||| 0-1 ||| 146 4437 +ambos ||| nature ||| 0.000142878 0.0001354 0.000225378 0.0001852 2.718 ||| 0-0 ||| 6999 4437 +ambos ||| needs both to ||| 0.25 0.0927224 0.000225378 1.05704e-05 2.718 ||| 0-1 ||| 4 4437 +ambos ||| needs both ||| 0.0769231 0.0927224 0.000225378 0.000118958 2.718 ||| 0-1 ||| 13 4437 +ambos ||| neither ||| 0.00115075 0.0019268 0.00090151 0.0016664 2.718 ||| 0-0 ||| 3476 4437 +ambos ||| of both ||| 0.00374131 0.0927224 0.00157764 0.0326124 2.718 ||| 0-1 ||| 1871 4437 +ambos ||| of the two ||| 0.00112233 0.00820035 0.000225378 0.0005741 2.718 ||| 0-1 0-2 ||| 891 4437 +ambos ||| of their reports ||| 0.0454545 7.04e-05 0.000225378 3.50192e-09 2.718 ||| 0-1 ||| 22 4437 +ambos ||| of their ||| 9.98901e-05 7.04e-05 0.000225378 7.04612e-05 2.718 ||| 0-1 ||| 10011 4437 +ambos ||| of them ||| 0.000194666 0.0012185 0.000225378 0.000664328 2.718 ||| 0-1 ||| 5137 4437 +ambos ||| of us , certain ||| 1 0.0001386 0.000225378 3.76321e-09 2.718 ||| 0-1 ||| 1 4437 +ambos ||| of us , ||| 0.00165563 0.0001386 0.000225378 1.32043e-05 2.718 ||| 0-1 ||| 604 4437 +ambos ||| of us ||| 0.000189934 0.0001386 0.000225378 0.000110723 2.718 ||| 0-1 ||| 5265 4437 +ambos ||| on both ||| 0.00313234 0.0463631 0.00090151 0.000222139 2.718 ||| 0-0 0-1 ||| 1277 4437 +ambos ||| one , that the ||| 0.2 0.000143 0.000225378 7.98815e-07 2.718 ||| 0-3 ||| 5 4437 +ambos ||| one another , in fact ||| 0.5 0.0001012 0.000225378 1.15405e-11 2.718 ||| 0-1 ||| 2 4437 +ambos ||| one another , in ||| 0.5 0.0001012 0.000225378 3.93969e-09 2.718 ||| 0-1 ||| 2 4437 +ambos ||| one another , ||| 0.00952381 0.0001012 0.000225378 1.84059e-07 2.718 ||| 0-1 ||| 105 4437 +ambos ||| one another ||| 0.00170068 0.0001012 0.000225378 1.54341e-06 2.718 ||| 0-1 ||| 588 4437 +ambos ||| one ||| 3.86324e-05 3.18e-05 0.000676133 0.0005555 2.718 ||| 0-0 ||| 77655 4437 +ambos ||| opposite ||| 0.00201884 0.0010299 0.000676133 0.0005555 2.718 ||| 0-0 ||| 1486 4437 +ambos ||| our mutual ||| 0.0333333 0.0023499 0.000225378 2.80942e-06 2.718 ||| 0-1 ||| 30 4437 +ambos ||| our two ||| 0.0106101 0.00816605 0.00090151 0.000225127 2.718 ||| 0-0 0-1 ||| 377 4437 +ambos ||| own and everyone else 's disadvantage ||| 1 0.0010764 0.000225378 5.94774e-20 2.718 ||| 0-5 ||| 1 4437 +ambos ||| pair of them ||| 0.333333 0.0012185 0.000225378 1.66082e-09 2.718 ||| 0-2 ||| 3 4437 +ambos ||| picturesque fight ||| 1 0.2 0.000225378 1.02045e-08 2.718 ||| 0-0 ||| 1 4437 +ambos ||| picturesque ||| 0.2 0.2 0.000225378 0.0001852 2.718 ||| 0-0 ||| 5 4437 +ambos ||| reaching ||| 0.000571429 0.0004181 0.000225378 0.0001852 2.718 ||| 0-0 ||| 1750 4437 +ambos ||| regard to both of these ||| 1 0.0479815 0.000450755 1.23483e-07 2.718 ||| 0-2 0-4 ||| 2 4437 +ambos ||| repealed both ||| 1 0.0927224 0.000225378 1.0798e-06 2.718 ||| 0-1 ||| 1 4437 +ambos ||| respect these ||| 0.0222222 0.0032406 0.000225378 2.70725e-05 2.718 ||| 0-1 ||| 45 4437 +ambos ||| respective ||| 0.000862813 0.0007728 0.000225378 0.0001852 2.718 ||| 0-0 ||| 1159 4437 +ambos ||| say these two in ||| 0.5 0.0032406 0.000225378 3.02665e-10 2.718 ||| 0-1 ||| 2 4437 +ambos ||| say these two ||| 0.5 0.0032406 0.000225378 1.41402e-08 2.718 ||| 0-1 ||| 2 4437 +ambos ||| say these ||| 0.0555556 0.0032406 0.000225378 5.98149e-05 2.718 ||| 0-1 ||| 18 4437 +ambos ||| separating the two ||| 0.0833333 0.00820035 0.000225378 4.22412e-09 2.718 ||| 0-1 0-2 ||| 12 4437 +ambos ||| settled between the two ||| 1 0.00820035 0.000225378 4.62444e-11 2.718 ||| 0-2 0-3 ||| 1 4437 +ambos ||| several ||| 9.78474e-05 0.0001037 0.000225378 0.0001852 2.718 ||| 0-0 ||| 10220 4437 +ambos ||| shall always have to say these two ||| 0.5 0.0032406 0.000225378 1.41279e-18 2.718 ||| 0-5 ||| 2 4437 +ambos ||| shall always have to say these ||| 0.5 0.0032406 0.000225378 5.97625e-15 2.718 ||| 0-5 ||| 2 4437 +ambos ||| should both be ||| 0.125 0.0927224 0.000225378 4.81726e-05 2.718 ||| 0-1 ||| 8 4437 +ambos ||| should both ||| 0.0714286 0.0927224 0.000450755 0.00265811 2.718 ||| 0-1 ||| 28 4437 +ambos ||| targets and ||| 0.00529101 0.00011155 0.000225378 6.85796e-07 2.718 ||| 0-0 0-1 ||| 189 4437 +ambos ||| that belongs to all of us , ||| 1 0.0001386 0.000225378 1.4083e-15 2.718 ||| 0-5 ||| 1 4437 +ambos ||| that belongs to all of us ||| 0.5 0.0001386 0.000225378 1.18092e-14 2.718 ||| 0-5 ||| 2 4437 +ambos ||| that both ||| 0.00148588 0.0927224 0.000450755 0.0100911 2.718 ||| 0-1 ||| 1346 4437 +ambos ||| that is what ||| 0.000348797 1.86e-05 0.000225378 2.92864e-07 2.718 ||| 0-2 ||| 2867 4437 +ambos ||| that the ||| 6.97754e-06 0.000143 0.000225378 0.0016071 2.718 ||| 0-1 ||| 143317 4437 +ambos ||| that these two ||| 0.00495049 0.00974915 0.000225378 0.000116362 2.718 ||| 0-1 0-2 ||| 202 4437 +ambos ||| that these ||| 0.000156814 0.0032406 0.000225378 0.00105271 2.718 ||| 0-1 ||| 6377 4437 +ambos ||| the African and European ||| 1 0.00022015 0.000225378 7.41104e-10 2.718 ||| 0-0 0-1 ||| 1 4437 +ambos ||| the African and ||| 0.166667 0.00022015 0.000225378 2.21629e-07 2.718 ||| 0-0 0-1 ||| 6 4437 +ambos ||| the African ||| 0.015873 0.00022015 0.000225378 1.76936e-05 2.718 ||| 0-0 0-1 ||| 63 4437 +ambos ||| the Council to ||| 0.000505817 0.000143 0.000225378 2.93561e-06 2.718 ||| 0-0 ||| 1977 4437 +ambos ||| the Council ||| 5.70874e-05 0.000143 0.000676133 3.3037e-05 2.718 ||| 0-0 ||| 52551 4437 +ambos ||| the EU and the US ||| 0.00680272 7.54e-05 0.000225378 5.82344e-13 2.718 ||| 0-0 0-1 ||| 147 4437 +ambos ||| the EU and the ||| 0.000796178 7.54e-05 0.000225378 1.36062e-08 2.718 ||| 0-0 0-1 ||| 1256 4437 +ambos ||| the EU and ||| 0.000188608 7.54e-05 0.000225378 2.21629e-07 2.718 ||| 0-0 0-1 ||| 5302 4437 +ambos ||| the EU ||| 1.9937e-05 7.54e-05 0.000225378 1.76936e-05 2.718 ||| 0-0 0-1 ||| 50158 4437 +ambos ||| the careful drafting of both ||| 1 0.0927224 0.000225378 8.20794e-13 2.718 ||| 0-4 ||| 1 4437 +ambos ||| the case of both ||| 0.2 0.0927224 0.000225378 2.14208e-06 2.718 ||| 0-3 ||| 5 4437 +ambos ||| the countries ||| 0.000117786 7.71e-05 0.000225378 1.76936e-05 2.718 ||| 0-0 0-1 ||| 8490 4437 +ambos ||| the different ||| 0.000649984 0.0001198 0.000450755 3.53777e-05 2.718 ||| 0-0 0-1 ||| 3077 4437 +ambos ||| the other ||| 0.000124906 0.000143 0.000450755 0.000123769 2.718 ||| 0-0 ||| 16012 4437 +ambos ||| the pair of them ||| 0.333333 0.0012185 0.000225378 1.01961e-10 2.718 ||| 0-3 ||| 3 4437 +ambos ||| the spouses ||| 0.0227273 0.000143 0.000225378 1.05092e-07 2.718 ||| 0-0 ||| 44 4437 +ambos ||| the turn of the ||| 0.0222222 0.000143 0.000225378 7.1488e-08 2.718 ||| 0-0 ||| 45 4437 +ambos ||| the turn of ||| 0.0126582 0.000143 0.000225378 1.16445e-06 2.718 ||| 0-0 ||| 79 4437 +ambos ||| the turn ||| 0.00847458 0.000143 0.000225378 2.14196e-05 2.718 ||| 0-0 ||| 118 4437 +ambos ||| the two bodies ||| 0.0625 0.00820035 0.000225378 4.21356e-07 2.718 ||| 0-0 0-1 ||| 16 4437 +ambos ||| the two men finally to ||| 1 0.0162577 0.000225378 3.01629e-12 2.718 ||| 0-1 ||| 1 4437 +ambos ||| the two men finally ||| 1 0.0162577 0.000225378 3.3945e-11 2.718 ||| 0-1 ||| 1 4437 +ambos ||| the two men ||| 0.125 0.0162577 0.000225378 2.88403e-07 2.718 ||| 0-1 ||| 8 4437 +ambos ||| the two of them ||| 0.166667 0.00820035 0.000225378 1.53996e-06 2.718 ||| 0-0 0-1 ||| 6 4437 +ambos ||| the two of ||| 0.206897 0.00820035 0.00135227 0.0005741 2.718 ||| 0-0 0-1 ||| 29 4437 +ambos ||| the two reports ||| 0.00392157 0.0082148 0.000225378 2.51284e-06 2.718 ||| 0-1 0-2 ||| 255 4437 +ambos ||| the two ||| 0.0585544 0.00820035 0.086545 0.0105603 2.718 ||| 0-0 0-1 ||| 6558 4437 +ambos ||| the vice-president and ||| 0.333333 0.000143 0.000225378 4.78679e-10 2.718 ||| 0-0 ||| 3 4437 +ambos ||| the vice-president ||| 0.0434783 0.000143 0.000225378 3.82152e-08 2.718 ||| 0-0 ||| 23 4437 +ambos ||| the ||| 1.21274e-05 0.000143 0.00924048 0.0955379 2.718 ||| 0-0 ||| 3.38078e+06 4437 +ambos ||| their mutual ||| 0.166667 0.00121015 0.000225378 2.63977e-06 2.718 ||| 0-0 0-1 ||| 6 4437 +ambos ||| their reports ||| 0.00396825 7.04e-05 0.000225378 6.44162e-08 2.718 ||| 0-0 ||| 252 4437 +ambos ||| their two ||| 0.0555556 0.00816405 0.000225378 0.000143265 2.718 ||| 0-0 0-1 ||| 18 4437 +ambos ||| their ||| 2.97144e-05 7.04e-05 0.000676133 0.0012961 2.718 ||| 0-0 ||| 100961 4437 +ambos ||| them both ||| 0.204082 0.0469704 0.00225378 0.00733064 2.718 ||| 0-0 0-1 ||| 49 4437 +ambos ||| them ||| 0.000744962 0.0012185 0.00450755 0.01222 2.718 ||| 0-0 ||| 26847 4437 +ambos ||| these both ||| 0.166667 0.0479815 0.000225378 0.0375416 2.718 ||| 0-0 0-1 ||| 6 4437 +ambos ||| these elements ||| 0.00471698 0.00172885 0.000225378 1.159e-05 2.718 ||| 0-0 0-1 ||| 212 4437 +ambos ||| these factors ||| 0.00813008 0.0019159 0.000450755 2.31737e-05 2.718 ||| 0-0 0-1 ||| 246 4437 +ambos ||| these interest ||| 0.142857 0.0032406 0.000225378 7.02785e-06 2.718 ||| 0-0 ||| 7 4437 +ambos ||| these together ||| 0.0714286 0.0032406 0.000225378 3.75861e-05 2.718 ||| 0-0 ||| 14 4437 +ambos ||| these two in ||| 0.5 0.0032406 0.000225378 3.16661e-07 2.718 ||| 0-0 ||| 2 4437 +ambos ||| these two systems ||| 0.0833333 0.00974915 0.000225378 3.63163e-07 2.718 ||| 0-0 0-1 ||| 12 4437 +ambos ||| these two tariffs ||| 1 0.00974915 0.000225378 2.21357e-08 2.718 ||| 0-0 0-1 ||| 1 4437 +ambos ||| these two ||| 0.0404564 0.00974915 0.0263692 0.0069174 2.718 ||| 0-0 0-1 ||| 2892 4437 +ambos ||| these ||| 0.000409364 0.0032406 0.00969123 0.062581 2.718 ||| 0-0 ||| 105041 4437 +ambos ||| they are both ||| 0.0606061 0.0467352 0.00090151 0.000146615 2.718 ||| 0-0 0-2 ||| 66 4437 +ambos ||| they are ||| 5.25403e-05 0.0007481 0.000225378 0.000244403 2.718 ||| 0-0 ||| 19033 4437 +ambos ||| they both ||| 0.321839 0.0467352 0.00631057 0.00966307 2.718 ||| 0-0 0-1 ||| 87 4437 +ambos ||| they each ||| 0.666667 0.00155595 0.000450755 0.000128245 2.718 ||| 0-0 0-1 ||| 3 4437 +ambos ||| they have ||| 0.000109397 0.0007481 0.000225378 0.00019265 2.718 ||| 0-0 ||| 9141 4437 +ambos ||| they should both be ||| 0.166667 0.0927224 0.000225378 1.57235e-07 2.718 ||| 0-2 ||| 6 4437 +ambos ||| they should both ||| 0.166667 0.0927224 0.000225378 8.67606e-06 2.718 ||| 0-2 ||| 6 4437 +ambos ||| they would ||| 0.0021692 0.0007481 0.000225378 9.45336e-05 2.718 ||| 0-0 ||| 461 4437 +ambos ||| they ||| 0.000687775 0.0007481 0.00631057 0.0161081 2.718 ||| 0-0 ||| 40711 4437 +ambos ||| those at the top and bottom ||| 1 0.00077935 0.000225378 2.06004e-16 2.718 ||| 0-0 0-5 ||| 1 4437 +ambos ||| those two ||| 0.0207715 0.00835265 0.00157764 0.000552576 2.718 ||| 0-0 0-1 ||| 337 4437 +ambos ||| those ||| 0.000120192 0.0004476 0.00157764 0.0049991 2.718 ||| 0-0 ||| 58240 4437 +ambos ||| thus ||| 0.00011722 5.02e-05 0.000225378 0.0001852 2.718 ||| 0-0 ||| 8531 4437 +ambos ||| to all of us , certain ||| 1 0.0001386 0.000225378 1.58014e-12 2.718 ||| 0-3 ||| 1 4437 +ambos ||| to all of us , ||| 0.0357143 0.0001386 0.000225378 5.54434e-09 2.718 ||| 0-3 ||| 28 4437 +ambos ||| to all of us ||| 0.00431034 0.0001386 0.000225378 4.64916e-08 2.718 ||| 0-3 ||| 232 4437 +ambos ||| to both of these ||| 0.4 0.0479815 0.000450755 0.000181352 2.718 ||| 0-1 0-3 ||| 5 4437 +ambos ||| to both these ||| 0.037037 0.0479815 0.000225378 0.00333588 2.718 ||| 0-1 0-2 ||| 27 4437 +ambos ||| to both ||| 0.00276753 0.0927224 0.000676133 0.053305 2.718 ||| 0-1 ||| 1084 4437 +ambos ||| to say these two in ||| 0.5 0.0032406 0.000225378 2.68943e-11 2.718 ||| 0-2 ||| 2 4437 +ambos ||| to say these two ||| 0.5 0.0032406 0.000225378 1.25648e-09 2.718 ||| 0-2 ||| 2 4437 +ambos ||| to say these ||| 0.333333 0.0032406 0.000225378 5.31505e-06 2.718 ||| 0-2 ||| 3 4437 +ambos ||| to them both ||| 0.5 0.0469704 0.000225378 0.000651388 2.718 ||| 0-1 0-2 ||| 2 4437 +ambos ||| to what either ||| 1 0.00263305 0.000225378 4.204e-07 2.718 ||| 0-1 0-2 ||| 1 4437 +ambos ||| together ||| 0.00022831 0.0003239 0.000676133 0.0011109 2.718 ||| 0-0 ||| 13140 4437 +ambos ||| two men finally to ||| 1 0.0162577 0.000225378 4.91318e-11 2.718 ||| 0-0 ||| 1 4437 +ambos ||| two men finally ||| 1 0.0162577 0.000225378 5.52924e-10 2.718 ||| 0-0 ||| 1 4437 +ambos ||| two men ||| 0.0416667 0.0162577 0.000225378 4.69774e-06 2.718 ||| 0-0 ||| 24 4437 +ambos ||| two nuclear ||| 0.333333 0.0162577 0.000225378 4.29982e-06 2.718 ||| 0-0 ||| 3 4437 +ambos ||| two reports ||| 0.00172414 0.0082148 0.000225378 4.09311e-05 2.718 ||| 0-0 0-1 ||| 580 4437 +ambos ||| two requests ||| 0.025 0.0162577 0.000225378 1.43696e-06 2.718 ||| 0-0 ||| 40 4437 +ambos ||| two ||| 0.00202286 0.0162577 0.0173541 0.110535 2.718 ||| 0-0 ||| 38065 4437 +ambos ||| us , certain ||| 1 0.0001386 0.000225378 6.92225e-08 2.718 ||| 0-0 ||| 1 4437 +ambos ||| us , ||| 0.000296824 0.0001386 0.000225378 0.000242886 2.718 ||| 0-0 ||| 3369 4437 +ambos ||| us ||| 0.00010912 0.0001386 0.00112689 0.0020367 2.718 ||| 0-0 ||| 45821 4437 +ambos ||| vital for these ||| 0.2 0.0032406 0.000225378 1.50546e-08 2.718 ||| 0-2 ||| 5 4437 +ambos ||| way they ||| 0.00387597 0.0003952 0.000225378 5.96483e-06 2.718 ||| 0-0 0-1 ||| 258 4437 +ambos ||| way ||| 2.64313e-05 4.23e-05 0.000225378 0.0003703 2.718 ||| 0-0 ||| 37834 4437 +ambos ||| we are both ||| 0.0204082 0.0927224 0.000225378 0.000103328 2.718 ||| 0-2 ||| 49 4437 +ambos ||| we both ||| 0.05 0.0463685 0.000676133 0.000999655 2.718 ||| 0-0 0-1 ||| 60 4437 +ambos ||| we will both ||| 0.5 0.0927224 0.000225378 5.89157e-05 2.718 ||| 0-2 ||| 2 4437 +ambos ||| we ||| 3.74102e-05 1.46e-05 0.00135227 0.0016664 2.718 ||| 0-0 ||| 160384 4437 +ambos ||| were both ||| 0.0606061 0.0927224 0.000450755 0.00107464 2.718 ||| 0-1 ||| 33 4437 +ambos ||| what either ||| 0.333333 0.00263305 0.000225378 4.73114e-06 2.718 ||| 0-0 0-1 ||| 3 4437 +ambos ||| what these ||| 0.0111111 0.0016296 0.000225378 3.47637e-05 2.718 ||| 0-0 0-1 ||| 90 4437 +ambos ||| what ||| 1.15717e-05 1.86e-05 0.000225378 0.0005555 2.718 ||| 0-0 ||| 86418 4437 +ambos ||| which are both an ||| 0.5 0.0463665 0.000225378 2.2473e-08 2.718 ||| 0-0 0-2 ||| 2 4437 +ambos ||| which are both the ||| 1 0.0464327 0.000225378 7.38673e-06 2.718 ||| 0-2 0-3 ||| 1 4437 +ambos ||| which are both ||| 0.129032 0.0927224 0.00090151 7.73173e-05 2.718 ||| 0-2 ||| 31 4437 +ambos ||| which both Commission ||| 1 0.0927224 0.000225378 2.97647e-06 2.718 ||| 0-1 ||| 1 4437 +ambos ||| which both ||| 0.00497512 0.0927224 0.000225378 0.00509582 2.718 ||| 0-1 ||| 201 4437 +ambos ||| which it ||| 0.000548847 1.06e-05 0.000225378 9.87857e-06 2.718 ||| 0-0 ||| 1822 4437 +ambos ||| which were both ||| 0.1 0.0927224 0.000225378 9.12865e-06 2.718 ||| 0-2 ||| 10 4437 +ambos ||| which ||| 6.19849e-06 1.06e-05 0.000450755 0.0005555 2.718 ||| 0-0 ||| 322659 4437 +ambos ||| why these ||| 0.0142857 0.0032406 0.000225378 1.54262e-05 2.718 ||| 0-1 ||| 70 4437 +ambos ||| will both ||| 0.117647 0.0927224 0.000450755 0.00518976 2.718 ||| 0-1 ||| 17 4437 +ambos ||| wine and beer ||| 0.0625 0.00166865 0.000225378 1.15899e-11 2.718 ||| 0-1 0-2 ||| 16 4437 +ambos ||| would both ||| 0.0434783 0.0927224 0.000225378 0.00352057 2.718 ||| 0-1 ||| 23 4437 +ambos ||| you both ||| 0.217391 0.046398 0.00112689 0.00122179 2.718 ||| 0-0 0-1 ||| 23 4437 +ambos ||| you can both ||| 0.333333 0.046398 0.000225378 3.63398e-06 2.718 ||| 0-0 0-2 ||| 3 4437 +ambos ||| young ||| 0.000266596 0.0002101 0.000225378 0.0003703 2.718 ||| 0-0 ||| 3751 4437 +del Atlántico ||| ' s Atlantic coast ||| 1 0.0613349 0.00217865 2.01411e-10 2.718 ||| 0-0 0-1 1-2 ||| 1 459 +del Atlántico ||| ' s Atlantic ||| 1 0.0613349 0.00217865 4.68397e-05 2.718 ||| 0-0 0-1 1-2 ||| 1 459 +del Atlántico ||| 's Atlantic ||| 0.5 0.105521 0.00217865 0.0378419 2.718 ||| 0-0 1-1 ||| 2 459 +del Atlántico ||| Atlantic Fisheries ||| 0.1 0.000793589 0.00217865 3.67297e-06 2.718 ||| 1-0 0-1 ||| 10 459 +del Atlántico ||| Atlantic ||| 0.0734797 0.0652086 0.189542 0.470994 2.718 ||| 0-0 1-0 ||| 1184 459 +del Atlántico ||| Exercise Atlantic ||| 1 0.621399 0.00217865 1.22432e-06 2.718 ||| 0-0 1-1 ||| 1 459 +del Atlántico ||| North East Atlantic ||| 0.25 0.196789 0.00217865 5.91039e-08 2.718 ||| 0-0 1-2 ||| 4 459 +del Atlántico ||| both the Atlantic ||| 1 0.0455451 0.00217865 0.000541838 2.718 ||| 0-1 1-2 ||| 1 459 +del Atlántico ||| fleets in the Atlantic have ||| 1 0.028467 0.00217865 4.95818e-10 2.718 ||| 0-1 0-2 1-3 ||| 1 459 +del Atlántico ||| fleets in the Atlantic ||| 1 0.028467 0.00217865 4.14571e-08 2.718 ||| 0-1 0-2 1-3 ||| 1 459 +del Atlántico ||| from the Atlantic ||| 0.176471 0.0510871 0.00653595 0.00708926 2.718 ||| 0-0 0-1 1-2 ||| 17 459 +del Atlántico ||| in the Atlantic have ||| 1 0.028467 0.00217865 0.000105493 2.718 ||| 0-0 0-1 1-2 ||| 1 459 +del Atlántico ||| in the Atlantic ||| 0.0823529 0.028467 0.0152505 0.00882065 2.718 ||| 0-0 0-1 1-2 ||| 85 459 +del Atlántico ||| in which the 1995 ||| 1 8.79922e-06 0.00217865 1.46184e-08 2.718 ||| 0-0 1-3 ||| 1 459 +del Atlántico ||| of Atlantic ||| 0.5 0.0731894 0.0043573 0.138937 2.718 ||| 0-0 0-1 1-1 ||| 4 459 +del Atlántico ||| of the Atlantic , we ||| 1 0.0633576 0.00217865 0.000130628 2.718 ||| 0-0 0-1 1-2 ||| 1 459 +del Atlántico ||| of the Atlantic , ||| 0.0925926 0.0633576 0.0108932 0.0115068 2.718 ||| 0-0 0-1 1-2 ||| 54 459 +del Atlántico ||| of the Atlantic Ocean ||| 0.3 0.0327597 0.00653595 0.000601803 2.718 ||| 0-0 0-1 1-2 1-3 ||| 10 459 +del Atlántico ||| of the Atlantic about ||| 1 0.0633576 0.00217865 0.000136465 2.718 ||| 0-0 0-1 1-2 ||| 1 459 +del Atlántico ||| of the Atlantic and ||| 0.0526316 0.0633576 0.00217865 0.00120861 2.718 ||| 0-0 0-1 1-2 ||| 19 459 +del Atlántico ||| of the Atlantic come together ||| 1 0.0633576 0.00217865 4.92181e-08 2.718 ||| 0-0 0-1 1-2 ||| 1 459 +del Atlántico ||| of the Atlantic come ||| 1 0.0633576 0.00217865 8.19482e-05 2.718 ||| 0-0 0-1 1-2 ||| 1 459 +del Atlántico ||| of the Atlantic that ||| 0.333333 0.0633576 0.00217865 0.0016231 2.718 ||| 0-0 0-1 1-2 ||| 3 459 +del Atlántico ||| of the Atlantic to ||| 0.333333 0.0633576 0.00653595 0.00857385 2.718 ||| 0-0 0-1 1-2 ||| 9 459 +del Atlántico ||| of the Atlantic we ||| 1 0.0633576 0.00217865 0.00109537 2.718 ||| 0-0 0-1 1-2 ||| 1 459 +del Atlántico ||| of the Atlantic ||| 0.857143 0.0633576 0.522876 0.0964891 2.718 ||| 0-0 0-1 1-2 ||| 280 459 +del Atlántico ||| of the ocean ||| 0.0526316 0.00135344 0.00217865 0.0003195 2.718 ||| 0-0 0-1 1-2 ||| 19 459 +del Atlántico ||| of the pond ||| 0.333333 0.00299882 0.00217865 0.0001065 2.718 ||| 0-0 0-1 1-2 ||| 3 459 +del Atlántico ||| on the Atlantic ||| 0.05 0.0271432 0.00217865 0.00320801 2.718 ||| 0-0 0-1 1-2 ||| 20 459 +del Atlántico ||| overseas ||| 0.0034904 4.62268e-05 0.0043573 0.0031185 2.718 ||| 1-0 ||| 573 459 +del Atlántico ||| the Atlantic from ||| 1 0.0553768 0.00217865 0.000263435 2.718 ||| 0-0 0-1 1-1 ||| 1 459 +del Atlántico ||| the Atlantic reveals ||| 1 0.0553768 0.00217865 8.83353e-07 2.718 ||| 0-0 0-1 1-1 ||| 1 459 +del Atlántico ||| the Atlantic ||| 0.250859 0.0553768 0.159041 0.163584 2.718 ||| 0-0 0-1 1-1 ||| 291 459 +del Atlántico ||| the ocean ||| 0.00900901 0.000972932 0.00217865 0.0010831 2.718 ||| 0-0 1-1 ||| 111 459 +del Atlántico ||| the ||| 2.9579e-07 1.90565e-07 0.00217865 0.347316 2.718 ||| 0-0 ||| 3.38078e+06 459 +del Atlántico ||| transatlantic ||| 0.00464846 5.44621e-05 0.0174292 0.010395 2.718 ||| 1-0 ||| 1721 459 +del Atlántico ||| within the Atlantic ||| 1 0.0250114 0.00217865 0.000136629 2.718 ||| 0-0 0-1 1-2 ||| 1 459 +del ||| # x02BC ; s ||| 0.0980392 0.16804 1.33395e-05 4.73236e-15 2.718 ||| 0-3 ||| 51 374827 +del ||| % , with ||| 0.0769231 0.0901615 2.6679e-06 4.57933e-06 2.718 ||| 0-0 ||| 13 374827 +del ||| % , ||| 0.00125313 0.0901615 2.6679e-06 0.000716136 2.718 ||| 0-0 ||| 798 374827 +del ||| % is earmarked ||| 1 0.0901615 2.6679e-06 1.95735e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| % is ||| 0.0153846 0.0901615 2.6679e-06 0.000188206 2.718 ||| 0-0 ||| 65 374827 +del ||| % of these requests are granted access ||| 1 0.0901615 2.6679e-06 4.65202e-22 2.718 ||| 0-0 ||| 1 374827 +del ||| % of these requests are granted ||| 1 0.0901615 2.6679e-06 5.40933e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| % of these requests are ||| 1 0.0901615 2.6679e-06 6.67819e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| % of these requests ||| 1 0.0901615 2.6679e-06 4.40145e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| % of these ||| 0.0769231 0.0901615 2.6679e-06 3.38573e-07 2.718 ||| 0-0 ||| 13 374827 +del ||| % of ||| 0.000849257 0.0901615 5.33579e-06 0.000326461 2.718 ||| 0-0 ||| 2355 374827 +del ||| % ||| 0.00245339 0.0901615 6.66974e-05 0.0060051 2.718 ||| 0-0 ||| 10190 374827 +del ||| [ Forum of ||| 1 0.130625 2.6679e-06 1.87434e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| & # x02BC ; s ||| 0.102041 0.16804 1.33395e-05 2.14376e-19 2.718 ||| 0-4 ||| 49 374827 +del ||| & ||| 0.00183486 0.0039474 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 545 374827 +del ||| ' [ Forum of ||| 1 0.130625 2.6679e-06 6.43816e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| ' ' ||| 0.0526316 0.0293692 2.6679e-06 1.63092e-05 2.718 ||| 0-0 ||| 19 374827 +del ||| ' , nor , ||| 1 0.0293692 2.6679e-06 3.59913e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| ' , nor ||| 0.25 0.0293692 2.6679e-06 3.01802e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| ' , ||| 0.000610998 0.0293692 8.00369e-06 0.000566233 2.718 ||| 0-0 ||| 4910 374827 +del ||| ' - ||| 0.00202429 0.0293692 2.6679e-06 1.79103e-05 2.718 ||| 0-0 ||| 494 374827 +del ||| ' Hürriyet ' ||| 1 0.0293692 2.6679e-06 6.5237e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| ' Hürriyet ||| 1 0.0293692 2.6679e-06 1.89924e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| ' Paços do ||| 1 0.5 2.6679e-06 1.53399e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| ' Paços ||| 1 0.5 2.6679e-06 4.46537e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| ' activities ' ||| 1 0.0293692 2.6679e-06 1.29659e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| ' are we ||| 1 0.0293692 2.6679e-06 8.17837e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| ' are ||| 0.00813008 0.0293692 2.6679e-06 7.20415e-05 2.718 ||| 0-0 ||| 123 374827 +del ||| ' attempts ||| 0.0714286 0.0293692 2.6679e-06 1.50515e-07 2.718 ||| 0-0 ||| 14 374827 +del ||| ' being ||| 0.05 0.0293692 2.6679e-06 1.35121e-05 2.718 ||| 0-0 ||| 20 374827 +del ||| ' budgets this year ||| 0.25 0.0293692 2.6679e-06 6.58023e-14 2.718 ||| 0-0 ||| 4 374827 +del ||| ' budgets this ||| 0.25 0.0293692 2.6679e-06 2.63843e-10 2.718 ||| 0-0 ||| 4 374827 +del ||| ' budgets ||| 0.0149254 0.0293692 2.6679e-06 4.08337e-08 2.718 ||| 0-0 ||| 67 374827 +del ||| ' culture of conflict to a culture ||| 1 0.130625 2.6679e-06 6.52432e-20 2.718 ||| 0-2 ||| 1 374827 +del ||| ' culture of conflict to a ||| 1 0.130625 2.6679e-06 3.29511e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| ' culture of conflict to ||| 1 0.130625 2.6679e-06 7.43385e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| ' culture of conflict ||| 1 0.130625 2.6679e-06 8.36596e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| ' culture of ||| 0.111111 0.130625 2.6679e-06 2.00623e-08 2.718 ||| 0-2 ||| 9 374827 +del ||| ' for ||| 0.0027027 0.0216173 2.6679e-06 5.1082e-05 2.718 ||| 0-0 0-1 ||| 370 374827 +del ||| ' from ||| 0.00892857 0.0911315 2.6679e-06 7.44453e-05 2.718 ||| 0-1 ||| 112 374827 +del ||| ' index ||| 1 0.0293692 2.6679e-06 6.64734e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| ' is a broader term than ' ||| 1 0.0303522 2.6679e-06 7.94347e-20 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| ' it ||| 0.0204082 0.0293692 2.6679e-06 8.44364e-05 2.718 ||| 0-0 ||| 49 374827 +del ||| ' lending ||| 0.5 0.0293692 2.6679e-06 3.22871e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| ' of the ||| 0.00534759 0.10196 2.6679e-06 0.000351916 2.718 ||| 0-1 0-2 ||| 187 374827 +del ||| ' of ||| 0.00400802 0.079997 5.33579e-06 0.00140062 2.718 ||| 0-0 0-1 ||| 499 374827 +del ||| ' opting-out ' ||| 1 0.0293692 2.6679e-06 6.5237e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| ' policy ||| 0.0192308 0.0293692 2.6679e-06 1.86933e-06 2.718 ||| 0-0 ||| 52 374827 +del ||| ' pull ' ||| 0.25 0.0293692 2.6679e-06 3.8816e-10 2.718 ||| 0-2 ||| 4 374827 +del ||| ' recent ||| 0.2 0.0293692 2.6679e-06 2.30758e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| ' rights ||| 0.0013587 0.0293692 2.6679e-06 9.50095e-07 2.718 ||| 0-0 ||| 736 374827 +del ||| ' s , ||| 0.0555556 0.0987045 2.6679e-06 5.93112e-06 2.718 ||| 0-0 0-1 ||| 18 374827 +del ||| ' s Council , ||| 0.5 0.16804 2.6679e-06 1.48373e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| ' s Council ||| 0.25 0.16804 2.6679e-06 1.24417e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| ' s Prime ||| 0.333333 0.0987045 2.6679e-06 7.50997e-10 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| ' s Union ||| 0.25 0.0987045 2.6679e-06 2.77222e-08 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| ' s adviser , ||| 0.5 0.0446429 2.6679e-06 5.14295e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| ' s adviser ||| 0.25 0.0446429 2.6679e-06 4.31258e-11 2.718 ||| 0-2 ||| 4 374827 +del ||| ' s and ||| 0.02 0.0987045 2.6679e-06 6.22975e-07 2.718 ||| 0-0 0-1 ||| 50 374827 +del ||| ' s bid ||| 1 0.16804 2.6679e-06 9.57056e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| ' s corresponding ||| 1 0.0987045 2.6679e-06 1.07427e-09 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| ' s degree ||| 1 0.16804 2.6679e-06 4.98317e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| ' s demands ||| 0.333333 0.16804 2.6679e-06 1.38521e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| ' s discharge ||| 0.0625 0.0293692 2.6679e-06 2.21292e-10 2.718 ||| 0-0 ||| 16 374827 +del ||| ' s draft ||| 0.030303 0.0987045 2.6679e-06 2.61108e-09 2.718 ||| 0-0 0-1 ||| 33 374827 +del ||| ' s exhaustive ||| 1 0.0987045 2.6679e-06 5.47084e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| ' s finances ||| 0.142857 0.16804 2.6679e-06 1.9429e-10 2.718 ||| 0-1 ||| 7 374827 +del ||| ' s financial ||| 0.0212766 0.16804 2.6679e-06 4.3895e-09 2.718 ||| 0-1 ||| 47 374827 +del ||| ' s genuine ||| 0.333333 0.16804 2.6679e-06 1.21611e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| ' s higher ||| 1 0.0987045 2.6679e-06 2.09384e-09 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| ' s intervention ||| 0.0625 0.16804 2.6679e-06 9.57056e-10 2.718 ||| 0-1 ||| 16 374827 +del ||| ' s joint ||| 0.5 0.0987045 2.6679e-06 3.23774e-09 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| ' s more ||| 1 0.0987045 2.6679e-06 1.1358e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| ' s most ||| 0.0555556 0.0987045 2.6679e-06 2.14954e-08 2.718 ||| 0-0 0-1 ||| 18 374827 +del ||| ' s negotiations to reach ||| 0.5 0.16804 2.6679e-06 1.43466e-14 2.718 ||| 0-1 ||| 2 374827 +del ||| ' s negotiations to ||| 0.5 0.16804 2.6679e-06 1.77118e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| ' s negotiations ||| 0.333333 0.16804 2.6679e-06 1.99327e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| ' s own ||| 0.0169492 0.0987045 5.33579e-06 8.43156e-08 2.718 ||| 0-0 0-1 ||| 118 374827 +del ||| ' s payment ||| 1 0.0987045 2.6679e-06 1.25332e-09 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| ' s personal ||| 0.166667 0.0987045 2.6679e-06 2.11373e-09 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| ' s perspective ||| 0.25 0.16804 2.6679e-06 1.16574e-09 2.718 ||| 0-1 ||| 4 374827 +del ||| ' s position ||| 0.0121212 0.0987045 5.33579e-06 1.63777e-08 2.718 ||| 0-0 0-1 ||| 165 374827 +del ||| ' s presence ||| 0.0833333 0.16804 2.6679e-06 1.38521e-09 2.718 ||| 0-1 ||| 12 374827 +del ||| ' s problems ||| 0.0714286 0.16804 2.6679e-06 4.82846e-09 2.718 ||| 0-1 ||| 14 374827 +del ||| ' s proposal ||| 0.00297619 0.0987045 2.6679e-06 9.93206e-09 2.718 ||| 0-0 0-1 ||| 336 374827 +del ||| ' s report ||| 0.00230947 0.0987045 2.6679e-06 2.03863e-08 2.718 ||| 0-0 0-1 ||| 433 374827 +del ||| ' s request ||| 0.0357143 0.16804 2.6679e-06 2.75963e-09 2.718 ||| 0-1 ||| 28 374827 +del ||| ' s role through ||| 1 0.16804 2.6679e-06 3.67663e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| ' s role ||| 0.0128205 0.16804 2.6679e-06 7.98746e-09 2.718 ||| 0-1 ||| 78 374827 +del ||| ' s room ||| 0.333333 0.16804 2.6679e-06 1.34564e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| ' s speech on ||| 1 0.0140673 2.6679e-06 2.88379e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| ' s status ||| 0.166667 0.0987045 2.6679e-06 5.0282e-09 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| ' s success ||| 0.1 0.16804 2.6679e-06 2.13719e-09 2.718 ||| 0-1 ||| 10 374827 +del ||| ' s traditional ||| 0.333333 0.0987045 2.6679e-06 4.82429e-10 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| ' s way of ||| 0.2 0.109345 2.6679e-06 3.1625e-08 2.718 ||| 0-0 0-1 0-3 ||| 5 374827 +del ||| ' s words ||| 0.0344828 0.0987045 2.6679e-06 1.12401e-08 2.718 ||| 0-0 0-1 ||| 29 374827 +del ||| ' s work ||| 0.016 0.0987045 5.33579e-06 3.14822e-08 2.718 ||| 0-0 0-1 ||| 125 374827 +del ||| ' s ||| 0.179448 0.0987045 0.00314012 4.97349e-05 2.718 ||| 0-0 0-1 ||| 6559 374827 +del ||| ' the most ||| 0.333333 0.0732944 2.6679e-06 5.15612e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| ' the ||| 0.00104058 0.0732944 2.6679e-06 0.001193 2.718 ||| 0-1 ||| 961 374827 +del ||| ' time , the ||| 0.25 0.0732944 2.6679e-06 2.33565e-07 2.718 ||| 0-3 ||| 4 374827 +del ||| ' time , ||| 0.00909091 0.0293692 2.6679e-06 9.29585e-07 2.718 ||| 0-0 ||| 110 374827 +del ||| ' time ||| 0.00699301 0.0293692 8.00369e-06 7.79496e-06 2.718 ||| 0-0 ||| 429 374827 +del ||| ' to a ||| 0.025 0.0293692 2.6679e-06 1.87014e-05 2.718 ||| 0-0 ||| 40 374827 +del ||| ' to the ||| 0.00854701 0.0513318 5.33579e-06 0.000146535 2.718 ||| 0-0 0-2 ||| 234 374827 +del ||| ' to ||| 0.000965251 0.0293692 2.6679e-06 0.000421908 2.718 ||| 0-0 ||| 1036 374827 +del ||| ' very ||| 0.0714286 0.0293692 2.6679e-06 1.6521e-05 2.718 ||| 0-0 ||| 14 374827 +del ||| ' with ||| 0.00452489 0.0169487 2.6679e-06 9.03658e-06 2.718 ||| 0-0 0-1 ||| 221 374827 +del ||| ' yes ' ||| 0.00146413 0.0293692 2.6679e-06 5.21896e-10 2.718 ||| 0-0 ||| 683 374827 +del ||| ' yes ||| 0.00151515 0.0293692 2.6679e-06 1.51939e-07 2.718 ||| 0-0 ||| 660 374827 +del ||| ' ||| 0.00836588 0.0293692 0.00201159 0.0047481 2.718 ||| 0-0 ||| 90128 374827 +del ||| 's ' Red ||| 1 0.169811 2.6679e-06 1.93224e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| 's ' ||| 0.0454545 0.169811 1.06716e-05 0.000138017 2.718 ||| 0-0 ||| 88 374827 +del ||| 's , we are ||| 1 0.169811 2.6679e-06 8.25357e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| 's , we ||| 1 0.169811 2.6679e-06 5.43975e-05 2.718 ||| 0-0 ||| 1 374827 +del ||| 's , ||| 0.0652174 0.169811 1.60074e-05 0.00479176 2.718 ||| 0-0 ||| 92 374827 +del ||| 's - standpoint ||| 1 0.169811 2.6679e-06 1.47019e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| 's - ||| 0.0333333 0.169811 2.6679e-06 0.000151566 2.718 ||| 0-0 ||| 30 374827 +del ||| 's Community ||| 0.5 0.169811 2.6679e-06 6.50529e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| 's European ||| 0.017094 0.0883136 5.33579e-06 0.000123388 2.718 ||| 0-0 0-1 ||| 117 374827 +del ||| 's Jobs ||| 1 0.169811 2.6679e-06 1.60724e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| 's Member State ||| 0.166667 0.169811 2.6679e-06 2.48877e-09 2.718 ||| 0-0 ||| 6 374827 +del ||| 's Member ||| 0.00724638 0.169811 2.6679e-06 2.07052e-05 2.718 ||| 0-0 ||| 138 374827 +del ||| 's New ||| 0.0833333 0.169811 2.6679e-06 4.78153e-07 2.718 ||| 0-0 ||| 12 374827 +del ||| 's Party / European Democrats ||| 0.5 0.169811 2.6679e-06 4.96309e-16 2.718 ||| 0-0 ||| 2 374827 +del ||| 's Party / European ||| 0.5 0.169811 2.6679e-06 4.66017e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| 's Party / ||| 1 0.169811 2.6679e-06 1.39363e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| 's Party ||| 0.0454545 0.169811 5.33579e-06 6.05928e-06 2.718 ||| 0-0 ||| 44 374827 +del ||| 's Scientific ||| 0.285714 0.169811 5.33579e-06 1.8885e-07 2.718 ||| 0-0 ||| 7 374827 +del ||| 's Study ||| 0.25 0.169811 2.6679e-06 2.81266e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| 's World ||| 0.25 0.135647 2.6679e-06 4.04782e-05 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| 's actions ||| 0.00526316 0.169811 2.6679e-06 2.80463e-06 2.718 ||| 0-0 ||| 190 374827 +del ||| 's actual ||| 0.2 0.169811 2.6679e-06 5.81418e-06 2.718 ||| 0-0 ||| 5 374827 +del ||| 's address ||| 0.125 0.169811 2.6679e-06 3.0658e-06 2.718 ||| 0-0 ||| 8 374827 +del ||| 's adoption of ||| 0.0666667 0.169811 2.6679e-06 1.00701e-07 2.718 ||| 0-0 ||| 15 374827 +del ||| 's adoption ||| 0.0166667 0.169811 2.6679e-06 1.85234e-06 2.718 ||| 0-0 ||| 60 374827 +del ||| 's agricultural ||| 0.00892857 0.169811 2.6679e-06 1.56304e-06 2.718 ||| 0-0 ||| 112 374827 +del ||| 's also being ||| 0.25 0.169811 2.6679e-06 5.77291e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| 's also ||| 0.2 0.169811 2.6679e-06 0.000202857 2.718 ||| 0-0 ||| 5 374827 +del ||| 's annual ||| 0.00793651 0.0853363 2.6679e-06 2.12959e-07 2.718 ||| 0-0 0-1 ||| 126 374827 +del ||| 's approach to the ||| 0.166667 0.121553 2.6679e-06 2.71821e-07 2.718 ||| 0-0 0-3 ||| 6 374827 +del ||| 's approach ||| 0.00384615 0.169811 2.6679e-06 8.80765e-06 2.718 ||| 0-0 ||| 260 374827 +del ||| 's are ||| 0.333333 0.169811 2.6679e-06 0.000609653 2.718 ||| 0-0 ||| 3 374827 +del ||| 's areas of ||| 0.0526316 0.150218 2.6679e-06 2.7131e-06 2.718 ||| 0-0 0-2 ||| 19 374827 +del ||| 's argument ||| 0.0526316 0.169811 5.33579e-06 1.30186e-06 2.718 ||| 0-0 ||| 38 374827 +del ||| 's arrangements ||| 0.333333 0.169811 2.6679e-06 1.76394e-06 2.718 ||| 0-0 ||| 3 374827 +del ||| 's assessment of the ||| 0.111111 0.10196 2.6679e-06 8.48736e-09 2.718 ||| 0-2 0-3 ||| 9 374827 +del ||| 's association ||| 0.0833333 0.169811 2.6679e-06 6.34858e-07 2.718 ||| 0-0 ||| 12 374827 +del ||| 's attempt ||| 0.0222222 0.169811 2.6679e-06 3.35511e-06 2.718 ||| 0-0 ||| 45 374827 +del ||| 's attitude of ||| 1 0.130625 2.6679e-06 2.93244e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| 's being ||| 0.0652174 0.169811 8.00369e-06 0.000114347 2.718 ||| 0-0 ||| 46 374827 +del ||| 's best ||| 0.0625 0.169811 5.33579e-06 5.56505e-06 2.718 ||| 0-0 ||| 32 374827 +del ||| 's call for the ||| 0.111111 0.0732944 2.6679e-06 1.12855e-09 2.718 ||| 0-3 ||| 9 374827 +del ||| 's chair of ||| 0.5 0.150218 2.6679e-06 5.92639e-08 2.718 ||| 0-0 0-2 ||| 2 374827 +del ||| 's claim ||| 0.047619 0.169811 2.6679e-06 1.89252e-06 2.718 ||| 0-0 ||| 21 374827 +del ||| 's commitment ||| 0.00363636 0.169811 2.6679e-06 2.24209e-06 2.718 ||| 0-0 ||| 275 374827 +del ||| 's concerns and ||| 0.166667 0.169811 2.6679e-06 3.76973e-08 2.718 ||| 0-0 ||| 6 374827 +del ||| 's concerns ||| 0.00440529 0.169811 2.6679e-06 3.00955e-06 2.718 ||| 0-0 ||| 227 374827 +del ||| 's conclusion ||| 0.0285714 0.169811 2.6679e-06 3.55601e-06 2.718 ||| 0-0 ||| 35 374827 +del ||| 's conclusions ||| 0.00746269 0.169811 2.6679e-06 1.01256e-06 2.718 ||| 0-0 ||| 134 374827 +del ||| 's consent ||| 0.0188679 0.169811 2.6679e-06 3.33501e-07 2.718 ||| 0-0 ||| 53 374827 +del ||| 's current view of the ||| 1 0.10196 2.6679e-06 2.90451e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| 's damning ||| 0.5 0.169811 2.6679e-06 2.81266e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| 's death sentence will be ||| 1 0.169811 2.6679e-06 5.16536e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| 's death sentence will ||| 1 0.169811 2.6679e-06 2.85018e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| 's death sentence ||| 0.5 0.169811 2.6679e-06 3.29455e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| 's death ||| 0.0196078 0.169811 2.6679e-06 2.18182e-06 2.718 ||| 0-0 ||| 51 374827 +del ||| 's decision ||| 0.00165837 0.169811 2.6679e-06 6.32046e-06 2.718 ||| 0-0 ||| 603 374827 +del ||| 's declaration of ||| 0.166667 0.150218 2.6679e-06 2.08609e-07 2.718 ||| 0-0 0-2 ||| 6 374827 +del ||| 's declarations of affection ||| 0.25 0.130625 2.6679e-06 7.62884e-15 2.718 ||| 0-2 ||| 4 374827 +del ||| 's declarations of ||| 0.166667 0.130625 2.6679e-06 5.44917e-09 2.718 ||| 0-2 ||| 6 374827 +del ||| 's detailed ||| 0.0909091 0.169811 2.6679e-06 1.01256e-06 2.718 ||| 0-0 ||| 11 374827 +del ||| 's draft ||| 0.0052356 0.0929395 2.6679e-06 8.7072e-06 2.718 ||| 0-0 0-1 ||| 191 374827 +del ||| 's excellent ||| 0.00429185 0.169811 2.6679e-06 1.50277e-06 2.718 ||| 0-0 ||| 233 374827 +del ||| 's existing ||| 0.04 0.169811 2.6679e-06 3.16625e-06 2.718 ||| 0-0 ||| 25 374827 +del ||| 's express wish ||| 0.5 0.169811 2.6679e-06 1.20189e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| 's express ||| 1 0.169811 2.6679e-06 4.07836e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| 's eye a ||| 1 0.169811 2.6679e-06 1.01342e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| 's eye ||| 0.0714286 0.169811 2.6679e-06 2.28629e-06 2.718 ||| 0-0 ||| 14 374827 +del ||| 's fishing ||| 0.0285714 0.169811 2.6679e-06 1.60322e-06 2.718 ||| 0-0 ||| 35 374827 +del ||| 's from ||| 1 0.130471 2.6679e-06 0.000870849 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| 's full ||| 0.0196078 0.169811 2.6679e-06 7.3732e-06 2.718 ||| 0-0 ||| 51 374827 +del ||| 's funding ||| 0.0714286 0.169811 2.6679e-06 2.14164e-06 2.718 ||| 0-0 ||| 14 374827 +del ||| 's future ||| 0.00244499 0.169811 2.6679e-06 1.0672e-05 2.718 ||| 0-0 ||| 409 374827 +del ||| 's general ||| 0.016129 0.169811 2.6679e-06 7.02764e-06 2.718 ||| 0-0 ||| 62 374827 +del ||| 's generalised ||| 0.25 0.169811 2.6679e-06 1.00452e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| 's genuinely ||| 1 0.169811 2.6679e-06 1.37419e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| 's home ||| 0.0625 0.169811 2.6679e-06 4.07836e-06 2.718 ||| 0-0 ||| 16 374827 +del ||| 's homes ||| 0.047619 0.169811 2.6679e-06 4.05827e-07 2.718 ||| 0-0 ||| 21 374827 +del ||| 's honest and well-intentioned ||| 1 0.169811 2.6679e-06 3.55834e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| 's honest and ||| 1 0.169811 2.6679e-06 5.08335e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| 's honest ||| 0.333333 0.169811 2.6679e-06 4.05827e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| 's image of Europe ||| 1 0.169811 2.6679e-06 1.47005e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| 's image of ||| 0.166667 0.169811 2.6679e-06 2.90524e-08 2.718 ||| 0-0 ||| 6 374827 +del ||| 's image ||| 0.0105263 0.169811 2.6679e-06 5.34406e-07 2.718 ||| 0-0 ||| 95 374827 +del ||| 's income ||| 0.0526316 0.169811 2.6679e-06 8.8398e-07 2.718 ||| 0-0 ||| 19 374827 +del ||| 's infrastructure ||| 0.0588235 0.169811 2.6679e-06 2.89302e-07 2.718 ||| 0-0 ||| 17 374827 +del ||| 's insight ||| 0.2 0.169811 2.6679e-06 2.16977e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| 's institutions ||| 0.00434783 0.169811 2.6679e-06 2.1095e-06 2.718 ||| 0-0 ||| 230 374827 +del ||| 's interest ||| 0.00444444 0.169811 2.6679e-06 4.51232e-06 2.718 ||| 0-0 ||| 225 374827 +del ||| 's key ||| 0.0350877 0.169811 5.33579e-06 2.92115e-06 2.718 ||| 0-0 ||| 57 374827 +del ||| 's land ||| 0.05 0.169811 2.6679e-06 1.54696e-06 2.718 ||| 0-0 ||| 20 374827 +del ||| 's lead ||| 0.04 0.169811 2.6679e-06 7.73482e-06 2.718 ||| 0-0 ||| 25 374827 +del ||| 's legislative ||| 0.0166667 0.169811 2.6679e-06 1.06881e-06 2.718 ||| 0-0 ||| 60 374827 +del ||| 's level of ||| 0.0769231 0.150218 2.6679e-06 1.01389e-05 2.718 ||| 0-0 0-2 ||| 13 374827 +del ||| 's long-term future ||| 0.5 0.169811 2.6679e-06 2.73204e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| 's long-term ||| 0.0277778 0.169811 2.6679e-06 1.02863e-06 2.718 ||| 0-0 ||| 36 374827 +del ||| 's many satisfied constituents all I would ||| 1 0.169811 2.6679e-06 9.95763e-23 2.718 ||| 0-0 ||| 1 374827 +del ||| 's many satisfied constituents all I ||| 1 0.169811 2.6679e-06 1.69674e-20 2.718 ||| 0-0 ||| 1 374827 +del ||| 's many satisfied constituents all ||| 1 0.169811 2.6679e-06 2.39872e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| 's many satisfied constituents ||| 1 0.169811 2.6679e-06 5.07623e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| 's many satisfied ||| 1 0.169811 2.6679e-06 1.58632e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| 's many ||| 0.0666667 0.169811 2.6679e-06 1.37941e-05 2.718 ||| 0-0 ||| 15 374827 +del ||| 's minds ||| 0.0263158 0.169811 2.6679e-06 1.92467e-06 2.718 ||| 0-0 ||| 38 374827 +del ||| 's more ||| 0.0416667 0.169811 2.6679e-06 9.17611e-05 2.718 ||| 0-0 ||| 24 374827 +del ||| 's most important ||| 0.00934579 0.169811 2.6679e-06 6.66167e-09 2.718 ||| 0-0 ||| 107 374827 +del ||| 's most ||| 0.0192308 0.169811 2.6679e-06 1.73662e-05 2.718 ||| 0-0 ||| 52 374827 +del ||| 's needs ||| 0.010989 0.169811 2.6679e-06 7.96787e-06 2.718 ||| 0-0 ||| 91 374827 +del ||| 's new ||| 0.00436681 0.169811 2.6679e-06 2.40161e-05 2.718 ||| 0-0 ||| 229 374827 +del ||| 's notice ||| 0.0588235 0.169811 2.6679e-06 1.54696e-06 2.718 ||| 0-0 ||| 17 374827 +del ||| 's number ||| 0.0833333 0.169811 2.6679e-06 1.98815e-05 2.718 ||| 0-0 ||| 12 374827 +del ||| 's of ||| 0.25 0.150218 2.6679e-06 0.0118528 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| 's office ||| 0.0217391 0.169811 2.6679e-06 4.13461e-06 2.718 ||| 0-0 ||| 46 374827 +del ||| 's own ||| 0.0335196 0.169811 4.80222e-05 6.81187e-05 2.718 ||| 0-0 ||| 537 374827 +del ||| 's particular ||| 0.142857 0.169811 2.6679e-06 2.47273e-05 2.718 ||| 0-0 ||| 7 374827 +del ||| 's pet ||| 0.333333 0.169811 2.6679e-06 8.8398e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| 's plan ||| 0.0128205 0.169811 2.6679e-06 2.93722e-06 2.718 ||| 0-0 ||| 78 374827 +del ||| 's point of ||| 0.0298507 0.150218 5.33579e-06 1.03688e-05 2.718 ||| 0-0 0-2 ||| 67 374827 +del ||| 's policy ||| 0.00221729 0.169811 2.6679e-06 1.58192e-05 2.718 ||| 0-0 ||| 451 374827 +del ||| 's position . ||| 0.1 0.169811 2.6679e-06 4.00784e-08 2.718 ||| 0-0 ||| 10 374827 +del ||| 's position that the ||| 1 0.0732944 2.6679e-06 3.66388e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| 's position ||| 0.00291333 0.169811 1.06716e-05 1.32316e-05 2.718 ||| 0-0 ||| 1373 374827 +del ||| 's possible ||| 0.0555556 0.169811 2.6679e-06 3.22291e-05 2.718 ||| 0-0 ||| 18 374827 +del ||| 's principal ||| 0.0769231 0.169811 2.6679e-06 2.33049e-07 2.718 ||| 0-0 ||| 13 374827 +del ||| 's procurement ||| 0.25 0.169811 2.6679e-06 2.00904e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| 's programme ||| 0.00684932 0.169811 2.6679e-06 5.11905e-06 2.718 ||| 0-0 ||| 146 374827 +del ||| 's proposal ||| 0.000289185 0.169811 2.6679e-06 8.02413e-06 2.718 ||| 0-0 ||| 3458 374827 +del ||| 's proposals ||| 0.000909091 0.169811 2.6679e-06 3.90558e-06 2.718 ||| 0-0 ||| 1100 374827 +del ||| 's proposed ||| 0.0348837 0.169811 8.00369e-06 4.48419e-06 2.718 ||| 0-0 ||| 86 374827 +del ||| 's question ||| 0.00138313 0.169811 2.6679e-06 3.32417e-05 2.718 ||| 0-0 ||| 723 374827 +del ||| 's radical ||| 0.25 0.169811 2.6679e-06 2.61176e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| 's reasoning ||| 0.0769231 0.169811 2.6679e-06 2.45103e-07 2.718 ||| 0-0 ||| 13 374827 +del ||| 's register , ||| 0.5 0.169811 2.6679e-06 5.84595e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| 's register ||| 0.333333 0.169811 2.6679e-06 4.90207e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| 's rejection ||| 0.0384615 0.169811 2.6679e-06 3.45556e-07 2.718 ||| 0-0 ||| 26 374827 +del ||| 's relating to the ||| 1 0.0732944 2.6679e-06 6.68253e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| 's remaining ||| 0.125 0.169811 2.6679e-06 1.31392e-06 2.718 ||| 0-0 ||| 8 374827 +del ||| 's remarkable ||| 0.142857 0.169811 2.6679e-06 2.89302e-07 2.718 ||| 0-0 ||| 7 374827 +del ||| 's remarks ||| 0.00684932 0.169811 2.6679e-06 1.22954e-06 2.718 ||| 0-0 ||| 146 374827 +del ||| 's remit ||| 0.02 0.169811 2.6679e-06 6.67003e-07 2.718 ||| 0-0 ||| 50 374827 +del ||| 's report ||| 0.000750892 0.169811 1.06716e-05 1.64702e-05 2.718 ||| 0-0 ||| 5327 374827 +del ||| 's request show ||| 1 0.169811 2.6679e-06 4.12663e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| 's request ||| 0.00361011 0.169811 2.6679e-06 3.08188e-06 2.718 ||| 0-0 ||| 277 374827 +del ||| 's requests at ||| 1 0.169811 2.6679e-06 2.1873e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| 's requests ||| 0.0172414 0.169811 2.6679e-06 5.22352e-07 2.718 ||| 0-0 ||| 58 374827 +del ||| 's rights ||| 0.00112233 0.169811 2.6679e-06 8.0402e-06 2.718 ||| 0-0 ||| 891 374827 +del ||| 's sake - ||| 1 0.169811 2.6679e-06 1.52173e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| 's sake ||| 0.016129 0.169811 2.6679e-06 4.03416e-06 2.718 ||| 0-0 ||| 62 374827 +del ||| 's single ||| 0.111111 0.169811 2.6679e-06 6.37671e-06 2.718 ||| 0-0 ||| 9 374827 +del ||| 's sitting ||| 0.00383142 0.169811 2.6679e-06 2.79257e-06 2.718 ||| 0-0 ||| 261 374827 +del ||| 's situation ||| 0.0116279 0.169811 2.6679e-06 2.06932e-05 2.718 ||| 0-0 ||| 86 374827 +del ||| 's speech - ||| 0.5 0.169811 2.6679e-06 6.82049e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| 's speech ||| 0.0075188 0.169811 5.33579e-06 1.80814e-06 2.718 ||| 0-0 ||| 266 374827 +del ||| 's stirring speech ||| 1 0.169811 2.6679e-06 3.97791e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| 's stirring ||| 1 0.169811 2.6679e-06 8.8398e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| 's strengths ||| 0.111111 0.169811 2.6679e-06 5.62533e-08 2.718 ||| 0-0 ||| 9 374827 +del ||| 's structural ||| 0.0277778 0.169811 2.6679e-06 6.22804e-07 2.718 ||| 0-0 ||| 36 374827 +del ||| 's the ||| 0.0833333 0.121553 2.6679e-06 0.0139555 2.718 ||| 0-0 0-1 ||| 12 374827 +del ||| 's thirst ||| 0.125 0.169811 2.6679e-06 2.81266e-08 2.718 ||| 0-0 ||| 8 374827 +del ||| 's to ||| 0.111111 0.169811 2.6679e-06 0.0035704 2.718 ||| 0-0 ||| 9 374827 +del ||| 's tourism ||| 0.25 0.169811 2.6679e-06 7.23256e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| 's very sensible ||| 1 0.169811 2.6679e-06 2.06918e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| 's very ||| 0.1 0.169811 1.60074e-05 0.000139809 2.718 ||| 0-0 ||| 60 374827 +del ||| 's view ||| 0.00323625 0.169811 5.33579e-06 3.62954e-05 2.718 ||| 0-0 ||| 618 374827 +del ||| 's views ||| 0.00396825 0.169811 2.6679e-06 3.26671e-06 2.718 ||| 0-0 ||| 252 374827 +del ||| 's vision ||| 0.0243902 0.169811 2.6679e-06 4.90207e-07 2.718 ||| 0-0 ||| 41 374827 +del ||| 's was ||| 0.2 0.169811 2.6679e-06 0.000125887 2.718 ||| 0-0 ||| 5 374827 +del ||| 's website ||| 0.0238095 0.169811 2.6679e-06 1.28579e-07 2.718 ||| 0-0 ||| 42 374827 +del ||| 's work ||| 0.00148588 0.169811 2.6679e-06 2.54345e-05 2.718 ||| 0-0 ||| 673 374827 +del ||| 's ||| 0.184013 0.169811 0.0233388 0.0401809 2.718 ||| 0-0 ||| 47540 374827 +del ||| " Labour ||| 0.2 0.207385 2.6679e-06 1.27517e-07 2.718 ||| 0-1 ||| 5 374827 +del ||| " Promotion of ||| 0.5 0.130625 2.6679e-06 9.77936e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| " ||| 0.000128568 0.0003488 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 7778 374827 +del ||| ( 20021 ) 745 - C5-0159 / ||| 1 1 2.6679e-06 2.50138e-31 2.718 ||| 0-1 ||| 1 374827 +del ||| ( 20021 ) 745 - C5-0159 ||| 1 1 2.6679e-06 1.08755e-27 2.718 ||| 0-1 ||| 1 374827 +del ||| ( 20021 ) 745 - ||| 1 1 2.6679e-06 2.71889e-21 2.718 ||| 0-1 ||| 1 374827 +del ||| ( 20021 ) 745 ||| 1 1 2.6679e-06 7.20789e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| ( 20021 ) ||| 1 1 2.6679e-06 1.80197e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| ( 20021 ||| 1 1 2.6679e-06 1.25372e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| ( 3 ) of the ||| 0.027027 0.10196 2.6679e-06 3.26631e-12 2.718 ||| 0-3 0-4 ||| 37 374827 +del ||| ( 96 ) 0086 ||| 0.5 0.0056759 2.6679e-06 7.81519e-19 2.718 ||| 0-2 ||| 2 374827 +del ||| ( 96 ) 0303 ||| 0.5 1 2.6679e-06 5.76631e-18 2.718 ||| 0-3 ||| 2 374827 +del ||| ( 96 ) ||| 0.0125 0.0056759 2.6679e-06 1.9538e-12 2.718 ||| 0-2 ||| 80 374827 +del ||| ( 98 ) 0092 - C4-0134 / ||| 1 1 2.6679e-06 4.75261e-30 2.718 ||| 0-5 ||| 1 374827 +del ||| ( 98 ) 0092 - C4-0134 ||| 1 1 2.6679e-06 2.06635e-26 2.718 ||| 0-5 ||| 1 374827 +del ||| ( A6-0145 / 2005 ) ||| 0.5 1 2.6679e-06 5.22211e-21 2.718 ||| 0-1 ||| 2 374827 +del ||| ( A6-0145 / 2005 ||| 0.5 1 2.6679e-06 3.63328e-18 2.718 ||| 0-1 ||| 2 374827 +del ||| ( A6-0145 / ||| 0.5 1 2.6679e-06 2.88356e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| ( A6-0145 ||| 0.5 1 2.6679e-06 1.25372e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| ( AGLIA ) ||| 1 0.0056759 2.6679e-06 2.44225e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| ( ATM ) ||| 0.2 0.0566038 2.6679e-06 5.40592e-12 2.718 ||| 0-1 ||| 5 374827 +del ||| ( ATM ||| 0.2 0.0566038 2.6679e-06 3.76116e-09 2.718 ||| 0-1 ||| 5 374827 +del ||| ( BUD ) ) ||| 0.05 0.0056759 2.6679e-06 6.14292e-16 2.718 ||| 0-2 ||| 20 374827 +del ||| ( BUD ) ||| 0.0285714 0.0056759 2.6679e-06 4.27393e-13 2.718 ||| 0-2 ||| 35 374827 +del ||| ( CDM ) ||| 0.142857 0.126866 2.6679e-06 3.09107e-11 2.718 ||| 0-1 ||| 7 374827 +del ||| ( CDM ||| 0.166667 0.126866 2.6679e-06 2.15061e-08 2.718 ||| 0-1 ||| 6 374827 +del ||| ( COM ( 20021 ) 745 - ||| 1 1 2.6679e-06 2.64832e-29 2.718 ||| 0-3 ||| 1 374827 +del ||| ( COM ( 20021 ) 745 ||| 1 1 2.6679e-06 7.0208e-27 2.718 ||| 0-3 ||| 1 374827 +del ||| ( COM ( 20021 ) ||| 1 1 2.6679e-06 1.7552e-20 2.718 ||| 0-3 ||| 1 374827 +del ||| ( COM ( 20021 ||| 1 1 2.6679e-06 1.22118e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| ( COM ( 96 ) 0086 ||| 0.5 0.0056759 2.6679e-06 7.61234e-27 2.718 ||| 0-4 ||| 2 374827 +del ||| ( COM ( 96 ) 0303 ||| 0.5 1 2.6679e-06 5.61664e-26 2.718 ||| 0-5 ||| 2 374827 +del ||| ( COM ( 96 ) ||| 0.0123457 0.0056759 2.6679e-06 1.90308e-20 2.718 ||| 0-4 ||| 81 374827 +del ||| ( CSS ) ||| 0.5 0.5 2.6679e-06 1.80197e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| ( CSS ||| 0.5 0.5 2.6679e-06 1.25372e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| ( EC ) ||| 0.00124069 0.0068643 2.6679e-06 4.00592e-11 2.718 ||| 0-1 ||| 806 374827 +del ||| ( EC ||| 0.00362757 0.0068643 8.00369e-06 2.78712e-08 2.718 ||| 0-1 ||| 827 374827 +del ||| ( EP ) ||| 1 0.17619 2.6679e-06 3.3683e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| ( EP ||| 1 0.17619 2.6679e-06 2.34349e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| ( El ) The might of ||| 0.333333 0.130625 2.6679e-06 1.22941e-19 2.718 ||| 0-5 ||| 3 374827 +del ||| ( El ) This is the ||| 0.333333 0.0732944 2.6679e-06 2.25421e-18 2.718 ||| 0-5 ||| 3 374827 +del ||| ( IPE ) ||| 1 0.0056759 2.6679e-06 2.44225e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| ( NL ) ||| 0.000462749 0.0002898 2.6679e-06 2.1356e-12 2.718 ||| 0-0 ||| 2161 374827 +del ||| ( NL ||| 0.000464253 0.0002898 2.6679e-06 1.48584e-09 2.718 ||| 0-0 ||| 2154 374827 +del ||| ( PT ) This European ||| 0.5 0.0068161 2.6679e-06 3.39514e-18 2.718 ||| 0-4 ||| 2 374827 +del ||| ( PT ) ||| 0.000421763 0.0056759 2.6679e-06 5.8675e-11 2.718 ||| 0-2 ||| 2371 374827 +del ||| ( UEMOA ) ||| 1 0.0056759 2.6679e-06 2.44225e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| ( UNSC ||| 1 0.16 2.6679e-06 5.11132e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| ( VAT ||| 0.1 0.0002898 2.6679e-06 2.7224e-10 2.718 ||| 0-0 ||| 10 374827 +del ||| ( a ) ||| 0.00609756 0.0056759 2.6679e-06 2.70636e-08 2.718 ||| 0-2 ||| 164 374827 +del ||| ( fr ) ||| 0.000432339 0.0056759 2.6679e-06 1.66683e-11 2.718 ||| 0-2 ||| 2313 374827 +del ||| ( i.e. of the ||| 1 0.10196 2.6679e-06 5.7999e-09 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| ( s ) of the ||| 1 0.0755849 2.6679e-06 2.2285e-11 2.718 ||| 0-0 0-1 0-2 0-3 0-4 ||| 1 374827 +del ||| ( the ||| 0.00031407 0.0002898 2.6679e-06 2.01365e-06 2.718 ||| 0-0 ||| 3184 374827 +del ||| ( ||| 0.000107434 0.0002898 2.40111e-05 3.28e-05 2.718 ||| 0-0 ||| 83772 374827 +del ||| ) ( a ) ||| 0.0140845 0.0056759 2.6679e-06 3.88986e-11 2.718 ||| 0-0 ||| 71 374827 +del ||| ) ( a ||| 0.0169492 0.0056759 2.6679e-06 2.70636e-08 2.718 ||| 0-0 ||| 59 374827 +del ||| ) ( ||| 0.00106157 0.0056759 2.6679e-06 6.10562e-07 2.718 ||| 0-0 ||| 942 374827 +del ||| ) ) ||| 0.000794913 0.0056759 2.6679e-06 9.09955e-07 2.718 ||| 0-0 ||| 1258 374827 +del ||| ) , by ||| 0.0555556 0.0259171 5.33579e-06 1.22082e-06 2.718 ||| 0-0 0-2 ||| 36 374827 +del ||| ) , on the ||| 0.0714286 0.0436809 2.6679e-06 5.83856e-07 2.718 ||| 0-2 0-3 ||| 14 374827 +del ||| ) , ||| 0.00276014 0.0056759 2.6679e-05 7.55002e-05 2.718 ||| 0-0 ||| 3623 374827 +del ||| ) 0086 ||| 0.5 0.0056759 2.6679e-06 2.5324e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| ) 0092 - C4-0134 / 98 ) ||| 1 1 2.6679e-06 7.08309e-30 2.718 ||| 0-3 ||| 1 374827 +del ||| ) 0092 - C4-0134 / 98 ||| 1 1 2.6679e-06 4.92805e-27 2.718 ||| 0-3 ||| 1 374827 +del ||| ) 0092 - C4-0134 / ||| 1 1 2.6679e-06 6.48428e-22 2.718 ||| 0-3 ||| 1 374827 +del ||| ) 0092 - C4-0134 ||| 1 1 2.6679e-06 2.81925e-18 2.718 ||| 0-3 ||| 1 374827 +del ||| ) 0303 ||| 0.5 1 2.6679e-06 1.86849e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| ) The might of ||| 0.333333 0.130625 2.6679e-06 7.08221e-12 2.718 ||| 0-3 ||| 3 374827 +del ||| ) This European ||| 0.5 0.0068161 2.6679e-06 3.66334e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| ) This is the ||| 0.142857 0.0732944 2.6679e-06 1.29857e-10 2.718 ||| 0-3 ||| 7 374827 +del ||| ) are ||| 0.00729927 0.0056759 2.6679e-06 9.60584e-06 2.718 ||| 0-0 ||| 137 374827 +del ||| ) by ||| 0.011225 0.0259171 6.13616e-05 1.02371e-05 2.718 ||| 0-0 0-1 ||| 2049 374827 +del ||| ) disappear to , beyond the ||| 0.5 0.0732944 2.6679e-06 3.13007e-15 2.718 ||| 0-5 ||| 2 374827 +del ||| ) is ||| 0.00223714 0.0056759 2.6679e-06 1.98421e-05 2.718 ||| 0-0 ||| 447 374827 +del ||| ) of the Rules of ||| 0.0377358 0.130625 5.33579e-06 1.00327e-10 2.718 ||| 0-4 ||| 53 374827 +del ||| ) of the Rules ||| 0.0208333 0.130625 2.6679e-06 1.84546e-09 2.718 ||| 0-1 ||| 48 374827 +del ||| ) of the treaty , as amended ||| 1 0.130625 2.6679e-06 8.99707e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| ) of the treaty , as ||| 1 0.130625 2.6679e-06 8.33062e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| ) of the treaty , ||| 1 0.130625 2.6679e-06 8.16375e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| ) of the treaty ||| 0.142857 0.130625 2.6679e-06 6.84564e-10 2.718 ||| 0-1 ||| 7 374827 +del ||| ) of the ||| 0.311248 0.10196 0.000538915 0.000147256 2.718 ||| 0-1 0-2 ||| 649 374827 +del ||| ) of ||| 0.120553 0.130625 0.000162742 0.000423983 2.718 ||| 0-1 ||| 506 374827 +del ||| ) provides ||| 0.125 0.0056759 2.6679e-06 4.533e-08 2.718 ||| 0-0 ||| 8 374827 +del ||| ) to ||| 0.00671141 0.0056759 5.33579e-06 5.62561e-05 2.718 ||| 0-0 ||| 298 374827 +del ||| ) ||| 0.00349843 0.0056759 0.000747011 0.0006331 2.718 ||| 0-0 ||| 80036 374827 +del ||| + ||| 0.0035461 0.0058548 8.00369e-06 6.6e-06 2.718 ||| 0-0 ||| 846 374827 +del ||| , 000 of the ||| 1 0.10196 2.6679e-06 1.27923e-06 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| , Act One , Scene One ||| 1 0.0040595 2.6679e-06 4.60191e-25 2.718 ||| 0-1 ||| 1 374827 +del ||| , Act One , Scene ||| 1 0.0040595 2.6679e-06 1.4381e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| , Act One , ||| 1 0.0040595 2.6679e-06 3.59524e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| , Act One ||| 1 0.0040595 2.6679e-06 3.01476e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| , Act ||| 0.333333 0.0040595 2.6679e-06 9.42112e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| , Common Security and Defence Policy ||| 0.00571429 0.0199221 5.33579e-06 1.63215e-20 2.718 ||| 0-2 ||| 350 374827 +del ||| , Common Security and Defence ||| 0.047619 0.0199221 5.33579e-06 1.68611e-16 2.718 ||| 0-2 ||| 42 374827 +del ||| , Common Security and ||| 0.00526316 0.0199221 5.33579e-06 5.58314e-12 2.718 ||| 0-2 ||| 380 374827 +del ||| , Common Security ||| 0.00530504 0.0199221 5.33579e-06 4.45728e-10 2.718 ||| 0-2 ||| 377 374827 +del ||| , Council and Commission ||| 0.015873 0.0707819 2.6679e-06 8.26034e-09 2.718 ||| 0-1 ||| 63 374827 +del ||| , Council and ||| 0.00429185 0.0707819 2.6679e-06 1.4142e-05 2.718 ||| 0-1 ||| 233 374827 +del ||| , Council ||| 0.00465116 0.0707819 2.6679e-06 0.00112902 2.718 ||| 0-1 ||| 215 374827 +del ||| , Education and the ||| 0.0384615 0.0732944 2.6679e-06 1.55124e-08 2.718 ||| 0-3 ||| 26 374827 +del ||| , European ||| 0.00258398 0.0068161 2.6679e-06 0.000366207 2.718 ||| 0-1 ||| 387 374827 +del ||| , Human Rights , Common Security and ||| 0.00552486 0.0199221 5.33579e-06 2.23293e-21 2.718 ||| 0-5 ||| 362 374827 +del ||| , Human Rights , Common Security ||| 0.00552486 0.0199221 5.33579e-06 1.78265e-19 2.718 ||| 0-5 ||| 362 374827 +del ||| , I call upon ||| 0.0147059 0.0034407 2.6679e-06 9.58811e-12 2.718 ||| 0-3 ||| 68 374827 +del ||| , Lebanon , ||| 0.047619 0.0553445 2.6679e-06 1.90571e-06 2.718 ||| 0-1 ||| 21 374827 +del ||| , Lebanon ||| 0.0136986 0.0553445 2.6679e-06 1.59801e-05 2.718 ||| 0-1 ||| 73 374827 +del ||| , Mr Napolitano , you sent ||| 1 0.0202703 2.6679e-06 1.42318e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| , Mr Napolitano , you ||| 1 0.0202703 2.6679e-06 2.36802e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| , Mr Napolitano , ||| 0.05 0.0202703 2.6679e-06 7.33429e-11 2.718 ||| 0-2 ||| 20 374827 +del ||| , Mr Napolitano ||| 0.0344828 0.0202703 2.6679e-06 6.15011e-10 2.718 ||| 0-2 ||| 29 374827 +del ||| , Mr President-in-Office of the ||| 0.000780031 0.10196 2.6679e-06 4.18736e-10 2.718 ||| 0-3 0-4 ||| 1282 374827 +del ||| , Mr President-in-office of the ||| 0.2 0.10196 2.6679e-06 3.19037e-12 2.718 ||| 0-3 0-4 ||| 5 374827 +del ||| , Mr ||| 3.42231e-05 0.0039553 2.6679e-06 0.000144262 2.718 ||| 0-1 ||| 29220 374827 +del ||| , President-in-Office of the ||| 0.00212766 0.10196 2.6679e-06 6.41446e-07 2.718 ||| 0-2 0-3 ||| 470 374827 +del ||| , Public Health and Consumer Protection ||| 0.00518135 0.0024582 5.33579e-06 1.22344e-20 2.718 ||| 0-5 ||| 386 374827 +del ||| , South ||| 0.027027 0.189467 2.6679e-06 0.000147077 2.718 ||| 0-1 ||| 37 374827 +del ||| , Taiwan and South Africa ||| 1 0.189467 2.6679e-06 2.52022e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| , Taiwan and South ||| 0.2 0.189467 2.6679e-06 7.36908e-12 2.718 ||| 0-3 ||| 5 374827 +del ||| , Youth , Education and the ||| 0.0434783 0.0732944 2.6679e-06 5.3278e-14 2.718 ||| 0-5 ||| 23 374827 +del ||| , a Member of ||| 0.0333333 0.130625 2.6679e-06 8.03513e-07 2.718 ||| 0-3 ||| 30 374827 +del ||| , a car body shop that only ||| 1 0.120879 2.6679e-06 6.04676e-20 2.718 ||| 0-2 ||| 1 374827 +del ||| , a car body shop that ||| 1 0.120879 2.6679e-06 5.43236e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| , a car body shop ||| 1 0.120879 2.6679e-06 3.2294e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| , a car body ||| 1 0.120879 2.6679e-06 2.48415e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| , a car ||| 0.111111 0.120879 2.6679e-06 2.90205e-06 2.718 ||| 0-2 ||| 9 374827 +del ||| , a negative impact on ||| 0.5 0.0140673 2.6679e-06 9.99617e-14 2.718 ||| 0-4 ||| 2 374827 +del ||| , a number of ||| 0.00303951 0.130625 2.6679e-06 7.71547e-07 2.718 ||| 0-3 ||| 329 374827 +del ||| , a public television corporation ||| 0.5 0.0805687 2.6679e-06 1.29535e-16 2.718 ||| 0-4 ||| 2 374827 +del ||| , a universal ||| 0.333333 0.0040559 2.6679e-06 6.23755e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| , a ||| 4.33595e-05 0.0008087 2.6679e-06 0.000100711 2.718 ||| 0-1 ||| 23063 374827 +del ||| , about responsibility ||| 0.166667 0.0101916 2.6679e-06 1.934e-08 2.718 ||| 0-1 ||| 6 374827 +del ||| , about to embark ||| 1 0.0101916 2.6679e-06 1.17543e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| , about to ||| 0.25 0.0101916 2.6679e-06 1.48789e-05 2.718 ||| 0-1 ||| 4 374827 +del ||| , about ||| 0.00108755 0.0101916 5.33579e-06 0.000167446 2.718 ||| 0-1 ||| 1839 374827 +del ||| , against the ||| 0.00458716 0.0732944 2.6679e-06 9.88258e-06 2.718 ||| 0-2 ||| 218 374827 +del ||| , alas , does the ||| 1 0.0732944 2.6679e-06 2.49444e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| , all granted by the ||| 1 0.0597263 2.6679e-06 2.56347e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| , all of ||| 0.00159236 0.130625 2.6679e-06 0.000166232 2.718 ||| 0-2 ||| 628 374827 +del ||| , all over the ||| 0.142857 0.0732944 2.6679e-06 9.42399e-08 2.718 ||| 0-3 ||| 7 374827 +del ||| , all the ||| 0.000990099 0.0732944 2.6679e-06 0.000195722 2.718 ||| 0-2 ||| 1010 374827 +del ||| , also tabled by ||| 0.333333 0.0238123 2.6679e-06 1.53818e-10 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| , among others , of ||| 0.111111 0.130625 2.6679e-06 3.65364e-11 2.718 ||| 0-4 ||| 9 374827 +del ||| , and , of course , the ||| 0.0454545 0.130625 2.6679e-06 4.85403e-10 2.718 ||| 0-3 ||| 22 374827 +del ||| , and , of course , ||| 0.0075188 0.130625 2.6679e-06 7.90664e-09 2.718 ||| 0-3 ||| 133 374827 +del ||| , and , of course ||| 0.00793651 0.130625 2.6679e-06 6.63005e-08 2.718 ||| 0-3 ||| 126 374827 +del ||| , and , of ||| 0.0263158 0.130625 2.6679e-06 5.25485e-05 2.718 ||| 0-3 ||| 38 374827 +del ||| , and I quote from ||| 0.166667 0.0911315 2.6679e-06 1.02135e-11 2.718 ||| 0-4 ||| 6 374827 +del ||| , and also in ||| 0.00492611 0.0183279 2.6679e-06 2.03366e-07 2.718 ||| 0-3 ||| 203 374827 +del ||| , and especially , the ||| 0.142857 0.0732944 2.6679e-06 4.96821e-09 2.718 ||| 0-4 ||| 7 374827 +del ||| , and in fact is ||| 1 0.0183279 2.6679e-06 3.69816e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| , and in fact ||| 0.00840336 0.0183279 2.6679e-06 1.17997e-07 2.718 ||| 0-2 ||| 119 374827 +del ||| , and in the ||| 0.00150376 0.0458111 2.6679e-06 1.39905e-05 2.718 ||| 0-2 0-3 ||| 665 374827 +del ||| , and in ||| 0.000427991 0.0183279 5.33579e-06 4.02817e-05 2.718 ||| 0-2 ||| 4673 374827 +del ||| , and indeed for finding such a ||| 1 0.0138653 2.6679e-06 5.95343e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| , and indeed for finding such ||| 1 0.0138653 2.6679e-06 1.34311e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| , and indeed for finding ||| 1 0.0138653 2.6679e-06 6.49189e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| , and indeed for ||| 0.0454545 0.0138653 2.6679e-06 1.21799e-08 2.718 ||| 0-3 ||| 22 374827 +del ||| , and it is precisely the ||| 0.25 0.0732944 2.6679e-06 2.85108e-11 2.718 ||| 0-5 ||| 4 374827 +del ||| , and on support for ||| 0.333333 0.0140673 2.6679e-06 3.84969e-11 2.718 ||| 0-2 ||| 3 374827 +del ||| , and on support ||| 0.25 0.0140673 2.6679e-06 5.00889e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| , and on ||| 0.000750188 0.0140673 2.6679e-06 1.46502e-05 2.718 ||| 0-2 ||| 1333 374827 +del ||| , and the fact ||| 0.0027027 0.0732944 2.6679e-06 1.51975e-06 2.718 ||| 0-2 ||| 370 374827 +del ||| , and the next step is now ||| 1 0.0732944 2.6679e-06 5.10342e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| , and the next step is ||| 1 0.0732944 2.6679e-06 2.47751e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| , and the next step ||| 0.5 0.0732944 2.6679e-06 7.90499e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| , and the next ||| 0.0344828 0.0732944 2.6679e-06 5.35932e-08 2.718 ||| 0-2 ||| 29 374827 +del ||| , and the ||| 0.000137922 0.0732944 5.33579e-06 0.000518811 2.718 ||| 0-2 ||| 14501 374827 +del ||| , and this holds for the ||| 1 0.0435798 2.6679e-06 1.02424e-12 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| , are of ||| 0.0120482 0.130625 2.6679e-06 0.000533751 2.718 ||| 0-2 ||| 83 374827 +del ||| , arise from the ||| 0.166667 0.082213 2.6679e-06 3.90492e-08 2.718 ||| 0-2 0-3 ||| 6 374827 +del ||| , as a matter of urgency , ||| 0.00806452 0.130625 2.6679e-06 5.09898e-14 2.718 ||| 0-4 ||| 124 374827 +del ||| , as a matter of urgency ||| 0.00694444 0.130625 2.6679e-06 4.27571e-13 2.718 ||| 0-4 ||| 144 374827 +del ||| , as a matter of ||| 0.00930233 0.130625 5.33579e-06 1.65085e-08 2.718 ||| 0-4 ||| 215 374827 +del ||| , as a ||| 0.000259202 0.0008087 2.6679e-06 1.02769e-06 2.718 ||| 0-2 ||| 3858 374827 +del ||| , as amended by the ||| 0.0588235 0.0732944 2.6679e-06 2.39651e-11 2.718 ||| 0-4 ||| 17 374827 +del ||| , as far as the ||| 0.00598802 0.0732944 2.6679e-06 2.94445e-09 2.718 ||| 0-4 ||| 167 374827 +del ||| , as for example when the ||| 0.333333 0.0732944 2.6679e-06 4.72712e-13 2.718 ||| 0-5 ||| 3 374827 +del ||| , as in ||| 0.000848896 0.0183279 2.6679e-06 3.2816e-05 2.718 ||| 0-2 ||| 1178 374827 +del ||| , as matter of course , ||| 1 0.130625 2.6679e-06 5.60381e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| , as matter of course ||| 1 0.130625 2.6679e-06 4.69903e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| , as matter of ||| 0.5 0.130625 2.6679e-06 3.72436e-07 2.718 ||| 0-3 ||| 2 374827 +del ||| , as the European ||| 0.0833333 0.0400553 2.6679e-06 1.29789e-06 2.718 ||| 0-2 0-3 ||| 12 374827 +del ||| , as the ||| 0.000286287 0.0732944 2.6679e-06 0.000422656 2.718 ||| 0-2 ||| 3493 374827 +del ||| , as ||| 5.95743e-05 0.0004965 1.06716e-05 3.06962e-05 2.718 ||| 0-1 ||| 67143 374827 +del ||| , at the same ||| 0.000492854 0.0732944 2.6679e-06 1.39566e-07 2.718 ||| 0-2 ||| 2029 374827 +del ||| , at the ||| 0.000550257 0.0732944 8.00369e-06 0.000173438 2.718 ||| 0-2 ||| 5452 374827 +del ||| , at ||| 9.06125e-05 0.0010184 2.6679e-06 2.91339e-05 2.718 ||| 0-1 ||| 11036 374827 +del ||| , be it in the ||| 0.0322581 0.0458111 2.6679e-06 3.59965e-07 2.718 ||| 0-3 0-4 ||| 31 374827 +del ||| , beyond the ||| 0.00925926 0.0732944 2.6679e-06 3.10229e-06 2.718 ||| 0-2 ||| 108 374827 +del ||| , both by the ||| 0.0192308 0.0597263 2.6679e-06 1.10942e-06 2.718 ||| 0-2 0-3 ||| 52 374827 +del ||| , both from the ||| 0.0147059 0.082213 2.6679e-06 1.48701e-06 2.718 ||| 0-2 0-3 ||| 68 374827 +del ||| , both in the ||| 0.00268817 0.0458111 2.6679e-06 1.85018e-06 2.718 ||| 0-2 0-3 ||| 372 374827 +del ||| , both of the ||| 0.0555556 0.10196 2.6679e-06 2.02391e-05 2.718 ||| 0-2 0-3 ||| 18 374827 +del ||| , both of which ||| 0.0102041 0.130625 2.6679e-06 4.95006e-07 2.718 ||| 0-2 ||| 98 374827 +del ||| , both of ||| 0.0179641 0.130625 8.00369e-06 5.8273e-05 2.718 ||| 0-2 ||| 167 374827 +del ||| , both the ||| 0.00290698 0.0732944 2.6679e-06 6.86106e-05 2.718 ||| 0-2 ||| 344 374827 +del ||| , both those in the ||| 1 0.0458111 2.6679e-06 1.33972e-09 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| , but as a result of ||| 0.0714286 0.130625 2.6679e-06 5.72524e-12 2.718 ||| 0-5 ||| 14 374827 +del ||| , by means of ||| 0.00179211 0.130625 2.6679e-06 1.17038e-07 2.718 ||| 0-3 ||| 558 374827 +del ||| , by means ||| 0.00153846 0.0461582 2.6679e-06 1.22198e-06 2.718 ||| 0-1 ||| 650 374827 +del ||| , by the ||| 0.00936968 0.0597263 2.93469e-05 0.000669738 2.718 ||| 0-1 0-2 ||| 1174 374827 +del ||| , by ||| 0.00334808 0.0461582 7.47011e-05 0.00192832 2.718 ||| 0-1 ||| 8363 374827 +del ||| , bypassed the ||| 0.333333 0.0732944 2.6679e-06 4.55609e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| , come under ||| 0.142857 0.014966 2.6679e-06 8.04795e-08 2.718 ||| 0-2 ||| 7 374827 +del ||| , commonly termed ' ||| 1 0.0293692 2.6679e-06 2.75189e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| , compared with the ||| 0.0136986 0.0732944 2.6679e-06 9.90554e-09 2.718 ||| 0-3 ||| 73 374827 +del ||| , contained in ||| 0.0322581 0.014266 2.6679e-06 1.18344e-07 2.718 ||| 0-1 0-2 ||| 31 374827 +del ||| , controlling the ||| 0.166667 0.0732944 2.6679e-06 1.78102e-07 2.718 ||| 0-2 ||| 6 374827 +del ||| , dated ||| 0.117647 0.111801 5.33579e-06 5.64075e-06 2.718 ||| 0-1 ||| 17 374827 +del ||| , decided through conciliation ||| 1 0.0028056 2.6679e-06 3.4543e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| , despite the ||| 0.00056338 0.0732944 2.6679e-06 2.48928e-06 2.718 ||| 0-2 ||| 1775 374827 +del ||| , discussed in the ||| 0.25 0.0458111 2.6679e-06 5.86384e-08 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| , does the ||| 0.00666667 0.0732944 2.6679e-06 2.90513e-05 2.718 ||| 0-2 ||| 150 374827 +del ||| , driving us ||| 1 0.0169492 2.6679e-06 2.03136e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| , driving ||| 0.0333333 0.0169492 2.6679e-06 7.04795e-06 2.718 ||| 0-1 ||| 30 374827 +del ||| , during the ||| 0.000976562 0.0371797 2.6679e-06 1.08932e-06 2.718 ||| 0-1 0-2 ||| 1024 374827 +del ||| , either using the ||| 1 0.0732944 2.6679e-06 2.78637e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| , enshrined in the ||| 0.0666667 0.0458111 2.6679e-06 1.65305e-08 2.718 ||| 0-2 0-3 ||| 15 374827 +del ||| , especially on ||| 0.00308642 0.0140673 2.6679e-06 9.39181e-08 2.718 ||| 0-2 ||| 324 374827 +del ||| , even just now , ||| 1 0.0056007 2.6679e-06 5.85411e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| , even just now ||| 1 0.0056007 2.6679e-06 4.90891e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| , even just ||| 0.142857 0.0056007 2.6679e-06 2.38308e-08 2.718 ||| 0-2 ||| 7 374827 +del ||| , even with a ||| 0.0909091 0.0045281 2.6679e-06 6.12177e-09 2.718 ||| 0-2 ||| 11 374827 +del ||| , even with ||| 0.00578035 0.0045281 2.6679e-06 1.38109e-07 2.718 ||| 0-2 ||| 173 374827 +del ||| , evidence of a ||| 1 0.130625 2.6679e-06 8.5918e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| , evidence of ||| 0.0909091 0.130625 2.6679e-06 1.93833e-06 2.718 ||| 0-2 ||| 11 374827 +del ||| , far under ||| 1 0.014966 2.6679e-06 6.46925e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| , firstly from the ||| 1 0.082213 2.6679e-06 4.52432e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| , following the ||| 0.00095057 0.0368807 2.6679e-06 3.81055e-07 2.718 ||| 0-1 0-2 ||| 1052 374827 +del ||| , for example , to ||| 0.00263852 0.0138653 2.6679e-06 3.95766e-09 2.718 ||| 0-1 ||| 379 374827 +del ||| , for example , ||| 0.00032 0.0138653 8.00369e-06 4.4539e-08 2.718 ||| 0-1 ||| 9375 374827 +del ||| , for example ||| 0.000210187 0.0138653 8.00369e-06 3.73478e-07 2.718 ||| 0-1 ||| 14273 374827 +del ||| , for in it ||| 0.25 0.0138653 2.6679e-06 4.88358e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| , for in ||| 0.0188679 0.0138653 2.6679e-06 2.74618e-05 2.718 ||| 0-1 ||| 53 374827 +del ||| , for the benefit ||| 0.00757576 0.0138653 2.6679e-06 1.03734e-08 2.718 ||| 0-1 ||| 132 374827 +del ||| , for the first time , not ||| 0.5 0.0138653 2.6679e-06 2.83455e-14 2.718 ||| 0-1 ||| 2 374827 +del ||| , for the first time , ||| 0.00340136 0.0138653 2.6679e-06 8.30248e-12 2.718 ||| 0-1 ||| 294 374827 +del ||| , for the first time ||| 0.00213675 0.0138653 2.6679e-06 6.96197e-11 2.718 ||| 0-1 ||| 468 374827 +del ||| , for the first ||| 0.00235849 0.0138653 2.6679e-06 4.24071e-08 2.718 ||| 0-1 ||| 424 374827 +del ||| , for the ||| 0.0024 0.0435798 3.20148e-05 0.000445603 2.718 ||| 0-1 0-2 ||| 5000 374827 +del ||| , for which ||| 0.000823045 0.0138653 2.6679e-06 1.08985e-05 2.718 ||| 0-1 ||| 1215 374827 +del ||| , for ||| 0.00062239 0.0138653 6.40295e-05 0.00128299 2.718 ||| 0-1 ||| 38561 374827 +del ||| , from a ||| 0.00273973 0.0911315 2.6679e-06 0.000114566 2.718 ||| 0-1 ||| 365 374827 +del ||| , from both the ||| 0.142857 0.082213 2.6679e-06 1.48701e-06 2.718 ||| 0-1 0-3 ||| 7 374827 +del ||| , from the ||| 0.0125087 0.082213 4.80222e-05 0.000897683 2.718 ||| 0-1 0-2 ||| 1439 374827 +del ||| , from time ||| 0.03125 0.0911315 2.6679e-06 4.24319e-06 2.718 ||| 0-1 ||| 32 374827 +del ||| , from ||| 0.00461569 0.0911315 6.13616e-05 0.00258463 2.718 ||| 0-1 ||| 4983 374827 +del ||| , furthermore , the ||| 0.030303 0.0732944 2.6679e-06 2.27707e-07 2.718 ||| 0-3 ||| 33 374827 +del ||| , here in the ||| 0.0117647 0.0458111 2.6679e-06 2.2649e-06 2.718 ||| 0-2 0-3 ||| 85 374827 +del ||| , however , a universal ||| 1 0.0040559 2.6679e-06 8.23971e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| , however , of the ||| 0.0625 0.10196 2.6679e-06 1.61398e-06 2.718 ||| 0-3 0-4 ||| 16 374827 +del ||| , however , the ||| 0.0025641 0.0732944 2.6679e-06 5.47139e-06 2.718 ||| 0-3 ||| 390 374827 +del ||| , i.e. the ||| 0.00423729 0.0732944 2.6679e-06 2.4313e-06 2.718 ||| 0-2 ||| 236 374827 +del ||| , in actual fact , the ||| 0.0434783 0.0732944 2.6679e-06 4.48139e-11 2.718 ||| 0-5 ||| 23 374827 +del ||| , in actual fact , ||| 0.00458716 0.0183279 2.6679e-06 1.62557e-10 2.718 ||| 0-1 ||| 218 374827 +del ||| , in actual fact ||| 0.00456621 0.0183279 2.6679e-06 1.36311e-09 2.718 ||| 0-1 ||| 219 374827 +del ||| , in actual ||| 0.0227273 0.0183279 2.6679e-06 4.65336e-07 2.718 ||| 0-1 ||| 44 374827 +del ||| , in fact - ||| 0.05 0.0183279 2.6679e-06 3.55341e-08 2.718 ||| 0-1 ||| 20 374827 +del ||| , in fact I am certain , ||| 1 0.0183279 2.6679e-06 2.8932e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| , in fact I am certain ||| 0.333333 0.0183279 2.6679e-06 2.42607e-14 2.718 ||| 0-1 ||| 3 374827 +del ||| , in fact I am ||| 0.166667 0.0183279 2.6679e-06 8.51251e-11 2.718 ||| 0-1 ||| 6 374827 +del ||| , in fact I ||| 0.125 0.0183279 2.6679e-06 6.66341e-08 2.718 ||| 0-1 ||| 8 374827 +del ||| , in fact ||| 0.000713012 0.0183279 5.33579e-06 9.42025e-06 2.718 ||| 0-1 ||| 2805 374827 +del ||| , in full text format , ||| 1 0.0183279 2.6679e-06 2.61452e-17 2.718 ||| 0-1 ||| 1 374827 +del ||| , in full text format ||| 1 0.0183279 2.6679e-06 2.19238e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| , in full text ||| 1 0.0183279 2.6679e-06 5.09857e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| , in full ||| 0.0163934 0.0183279 2.6679e-06 5.90112e-07 2.718 ||| 0-1 ||| 61 374827 +del ||| , in other words , on the ||| 0.2 0.0436809 2.6679e-06 3.03588e-13 2.718 ||| 0-5 0-6 ||| 5 374827 +del ||| , in particular , by ||| 0.0140845 0.0461582 2.6679e-06 3.02913e-09 2.718 ||| 0-4 ||| 71 374827 +del ||| , in particular , of the ||| 0.0138889 0.10196 2.6679e-06 1.91928e-08 2.718 ||| 0-4 0-5 ||| 72 374827 +del ||| , in the current promotion ||| 1 0.0183279 2.6679e-06 7.84121e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| , in the current ||| 0.0227273 0.0183279 2.6679e-06 3.25361e-08 2.718 ||| 0-1 ||| 44 374827 +del ||| , in the ||| 0.00171629 0.0458111 6.13616e-05 0.00111692 2.718 ||| 0-1 0-2 ||| 13401 374827 +del ||| , in this ||| 0.000661157 0.0183279 5.33579e-06 2.0779e-05 2.718 ||| 0-1 ||| 3025 374827 +del ||| , in ||| 0.0004046 0.0183279 8.80406e-05 0.00321587 2.718 ||| 0-1 ||| 81562 374827 +del ||| , including the ||| 0.000280899 0.0732944 2.6679e-06 4.32415e-06 2.718 ||| 0-2 ||| 3560 374827 +del ||| , indeed , the ||| 0.00793651 0.0732944 2.6679e-06 3.74358e-06 2.718 ||| 0-3 ||| 126 374827 +del ||| , indeed by the ||| 1 0.0597263 2.6679e-06 5.07594e-07 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| , initially , the ||| 1 0.0732944 2.6679e-06 4.79123e-08 2.718 ||| 0-3 ||| 1 374827 +del ||| , instead , the ||| 0.125 0.0732944 2.6679e-06 9.97268e-07 2.718 ||| 0-3 ||| 8 374827 +del ||| , irrespective of ||| 0.00165563 0.130625 2.6679e-06 2.91981e-07 2.718 ||| 0-2 ||| 604 374827 +del ||| , is of ||| 0.00561798 0.130625 2.6679e-06 0.00110253 2.718 ||| 0-2 ||| 178 374827 +del ||| , is required of them if they ||| 0.333333 0.130625 2.6679e-06 1.28009e-15 2.718 ||| 0-3 ||| 3 374827 +del ||| , is required of them if ||| 0.333333 0.130625 2.6679e-06 3.92183e-13 2.718 ||| 0-3 ||| 3 374827 +del ||| , is required of them ||| 0.333333 0.130625 2.6679e-06 4.69344e-10 2.718 ||| 0-3 ||| 3 374827 +del ||| , is required of ||| 0.333333 0.130625 2.6679e-06 1.74972e-07 2.718 ||| 0-3 ||| 3 374827 +del ||| , is the loss ||| 1 0.0732944 2.6679e-06 5.46508e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| , is the ||| 0.000626959 0.0732944 2.6679e-06 0.00129812 2.718 ||| 0-2 ||| 1595 374827 +del ||| , its unwillingness to cooperate ||| 0.5 0.0035806 2.6679e-06 5.1258e-17 2.718 ||| 0-1 ||| 2 374827 +del ||| , its unwillingness to ||| 0.333333 0.0035806 2.6679e-06 5.69533e-12 2.718 ||| 0-1 ||| 3 374827 +del ||| , its unwillingness ||| 0.333333 0.0035806 2.6679e-06 6.40946e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| , its ||| 0.000479157 0.0035806 2.6679e-06 5.82678e-05 2.718 ||| 0-1 ||| 2087 374827 +del ||| , led by the ||| 0.0196078 0.0597263 2.6679e-06 6.14819e-08 2.718 ||| 0-2 0-3 ||| 51 374827 +del ||| , like that of the rapporteur , ||| 1 0.10196 2.6679e-06 3.14703e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| , like that of the rapporteur ||| 1 0.10196 2.6679e-06 2.63891e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| , like that of the ||| 0.0666667 0.10196 2.6679e-06 3.64995e-07 2.718 ||| 0-3 0-4 ||| 15 374827 +del ||| , like the ||| 0.00214362 0.0732944 5.33579e-06 7.35561e-05 2.718 ||| 0-2 ||| 933 374827 +del ||| , likewise ||| 0.0188679 0.0712531 2.6679e-06 1.81744e-05 2.718 ||| 0-1 ||| 53 374827 +del ||| , looking into the possibility of ||| 1 0.130625 2.6679e-06 2.00812e-14 2.718 ||| 0-5 ||| 1 374827 +del ||| , lost members of ||| 0.25 0.130625 2.6679e-06 2.95244e-10 2.718 ||| 0-3 ||| 4 374827 +del ||| , make up the ||| 0.142857 0.0732944 2.6679e-06 2.45481e-07 2.718 ||| 0-3 ||| 7 374827 +del ||| , monitoring , ||| 0.0277778 0.0005024 2.6679e-06 7.53749e-08 2.718 ||| 0-1 ||| 36 374827 +del ||| , monitoring ||| 0.00444444 0.0005024 2.6679e-06 6.3205e-07 2.718 ||| 0-1 ||| 225 374827 +del ||| , moreover , of the ||| 0.25 0.10196 2.6679e-06 1.57799e-07 2.718 ||| 0-3 0-4 ||| 4 374827 +del ||| , namely from the ||| 0.111111 0.082213 2.6679e-06 1.4345e-07 2.718 ||| 0-2 0-3 ||| 9 374827 +del ||| , namely the ||| 0.000609013 0.0732944 2.6679e-06 6.61876e-06 2.718 ||| 0-2 ||| 1642 374827 +del ||| , namely ||| 0.000106655 0.0002517 2.6679e-06 4.65093e-07 2.718 ||| 0-1 ||| 9376 374827 +del ||| , not from their ||| 1 0.0911315 2.6679e-06 1.02281e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| , not from ||| 0.0285714 0.0911315 2.6679e-06 8.82419e-06 2.718 ||| 0-2 ||| 35 374827 +del ||| , not just holiday tourism ||| 1 0.0676417 2.6679e-06 5.49246e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| , not least , of the ||| 1 0.10196 2.6679e-06 1.22075e-09 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| , not only of the ||| 0.0294118 0.10196 2.6679e-06 4.64313e-08 2.718 ||| 0-3 0-4 ||| 34 374827 +del ||| , of a ||| 0.0075 0.130625 8.00369e-06 0.00155931 2.718 ||| 0-1 ||| 400 374827 +del ||| , of any ||| 0.0357143 0.130625 2.6679e-06 5.31968e-05 2.718 ||| 0-1 ||| 28 374827 +del ||| , of course , have to ||| 0.0526316 0.130625 2.6679e-06 5.62509e-09 2.718 ||| 0-1 ||| 19 374827 +del ||| , of course , have ||| 0.00970874 0.130625 2.6679e-06 6.33041e-08 2.718 ||| 0-1 ||| 103 374827 +del ||| , of course , the only group ||| 1 0.130625 2.6679e-06 4.65874e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| , of course , the only ||| 0.142857 0.130625 2.6679e-06 3.61703e-10 2.718 ||| 0-1 ||| 7 374827 +del ||| , of course , the ||| 0.0015674 0.130625 2.6679e-06 3.24951e-07 2.718 ||| 0-1 ||| 638 374827 +del ||| , of course , when ||| 0.0526316 0.130625 2.6679e-06 2.64601e-09 2.718 ||| 0-1 ||| 19 374827 +del ||| , of course , ||| 0.00107369 0.130625 2.93469e-05 5.29307e-06 2.718 ||| 0-1 ||| 10245 374827 +del ||| , of course ||| 0.00156164 0.130625 4.53543e-05 4.43846e-05 2.718 ||| 0-1 ||| 10886 374827 +del ||| , of extension , ||| 1 0.130625 2.6679e-06 7.08987e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| , of extension ||| 1 0.130625 2.6679e-06 5.94515e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| , of its ||| 0.0119048 0.0671027 2.6679e-06 1.71882e-05 2.718 ||| 0-1 0-2 ||| 84 374827 +del ||| , of the European ||| 0.333333 0.10196 2.6679e-06 4.08558e-05 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| , of the ||| 0.0372362 0.10196 0.000240111 0.012218 2.718 ||| 0-1 0-2 ||| 2417 374827 +del ||| , of this ||| 0.0105263 0.130625 2.6679e-06 0.000227302 2.718 ||| 0-1 ||| 95 374827 +del ||| , of ||| 0.00855352 0.130625 0.000269458 0.0351784 2.718 ||| 0-1 ||| 11808 374827 +del ||| , on behalf of my group ||| 0.00308642 0.130625 2.6679e-06 6.20971e-15 2.718 ||| 0-3 ||| 324 374827 +del ||| , on behalf of my ||| 0.00211864 0.130625 2.6679e-06 4.8212e-11 2.718 ||| 0-3 ||| 472 374827 +del ||| , on behalf of ||| 0.000633981 0.130625 8.00369e-06 7.49681e-08 2.718 ||| 0-3 ||| 4732 374827 +del ||| , on the basis ||| 0.000993049 0.0436809 2.6679e-06 2.41212e-07 2.718 ||| 0-1 0-2 ||| 1007 374827 +del ||| , on the other , the ||| 0.0138889 0.0732944 2.6679e-06 2.62854e-09 2.718 ||| 0-5 ||| 72 374827 +del ||| , on the other hand ||| 0.000944287 0.0732944 2.6679e-06 1.42391e-10 2.718 ||| 0-2 ||| 1059 374827 +del ||| , on the other ||| 0.000688705 0.0732944 2.6679e-06 3.59028e-07 2.718 ||| 0-2 ||| 1452 374827 +del ||| , on the ||| 0.00113058 0.0436809 3.20148e-05 0.000406217 2.718 ||| 0-1 0-2 ||| 10614 374827 +del ||| , on ||| 0.000232019 0.0140673 1.86753e-05 0.00116959 2.718 ||| 0-1 ||| 30170 374827 +del ||| , one for ||| 0.0151515 0.0138653 2.6679e-06 5.3475e-06 2.718 ||| 0-2 ||| 66 374827 +del ||| , one of the ||| 0.00164339 0.10196 5.33579e-06 5.09247e-05 2.718 ||| 0-2 0-3 ||| 1217 374827 +del ||| , out of the atrocities ||| 1 0.10196 2.6679e-06 8.42398e-11 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| , out of the ||| 0.03125 0.10196 2.6679e-06 4.67999e-05 2.718 ||| 0-2 0-3 ||| 32 374827 +del ||| , out of ||| 0.00793651 0.130625 5.33579e-06 0.000134747 2.718 ||| 0-2 ||| 252 374827 +del ||| , prior to the introduction ||| 0.5 0.0732944 2.6679e-06 3.55529e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| , prior to the ||| 0.0196078 0.0732944 2.6679e-06 6.77198e-08 2.718 ||| 0-3 ||| 51 374827 +del ||| , putting up with the ||| 1 0.0732944 2.6679e-06 1.01078e-10 2.718 ||| 0-4 ||| 1 374827 +del ||| , rather , to ||| 0.0769231 0.0006066 2.6679e-06 5.7939e-09 2.718 ||| 0-3 ||| 13 374827 +del ||| , regarding the ||| 0.003861 0.0378354 2.6679e-06 2.55555e-06 2.718 ||| 0-1 0-2 ||| 259 374827 +del ||| , root and branch , ||| 0.333333 0.0022247 2.6679e-06 3.1495e-15 2.718 ||| 0-1 ||| 3 374827 +del ||| , root and branch ||| 0.333333 0.0022247 2.6679e-06 2.64099e-14 2.718 ||| 0-1 ||| 3 374827 +del ||| , root and ||| 0.333333 0.0022247 2.6679e-06 3.88381e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| , root ||| 0.333333 0.0022247 2.6679e-06 3.10062e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| , rules for refugees , in ||| 1 0.0183279 2.6679e-06 3.83603e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| , safeguarding the legal principle of fair ||| 1 0.0732944 2.6679e-06 1.15867e-20 2.718 ||| 0-2 ||| 1 374827 +del ||| , safeguarding the legal principle of ||| 1 0.0732944 2.6679e-06 2.23681e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| , safeguarding the legal principle ||| 1 0.0732944 2.6679e-06 4.1145e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| , safeguarding the legal ||| 1 0.0732944 2.6679e-06 2.68395e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| , safeguarding the ||| 0.037037 0.0732944 2.6679e-06 2.07095e-07 2.718 ||| 0-2 ||| 27 374827 +del ||| , shall we say , of the ||| 1 0.10196 2.6679e-06 8.64165e-12 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| , so that redressed ||| 1 0.0465116 2.6679e-06 1.18382e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| , stock and ||| 0.25 0.0118681 2.6679e-06 5.30289e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| , stock ||| 0.0666667 0.0118681 2.6679e-06 4.23354e-06 2.718 ||| 0-1 ||| 15 374827 +del ||| , straight after the European ||| 0.5 0.0400553 2.6679e-06 1.28912e-12 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| , suggest that the ||| 0.333333 0.0732944 2.6679e-06 3.08653e-08 2.718 ||| 0-3 ||| 3 374827 +del ||| , tabled by the ||| 0.0363636 0.0597263 5.33579e-06 5.47176e-08 2.718 ||| 0-2 0-3 ||| 55 374827 +del ||| , tabled by ||| 0.0387097 0.0238123 1.60074e-05 3.04675e-08 2.718 ||| 0-1 0-2 ||| 155 374827 +del ||| , thanks to the ||| 0.00229358 0.0732944 2.6679e-06 2.98114e-07 2.718 ||| 0-3 ||| 436 374827 +del ||| , that a motion for a ||| 1 0.0138653 2.6679e-06 3.20572e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| , that a motion for ||| 1 0.0138653 2.6679e-06 7.23217e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| , that exists in the ||| 1 0.0458111 2.6679e-06 1.04839e-09 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| , that of the ||| 0.00609756 0.10196 2.6679e-06 0.000205527 2.718 ||| 0-2 0-3 ||| 164 374827 +del ||| , that of ||| 0.0037037 0.130625 5.33579e-06 0.000591757 2.718 ||| 0-2 ||| 540 374827 +del ||| , the Council ||| 0.000190913 0.0732944 2.6679e-06 1.43227e-05 2.718 ||| 0-1 ||| 5238 374827 +del ||| , the European Commission must allow ||| 0.333333 0.0732944 2.6679e-06 3.03339e-14 2.718 ||| 0-1 ||| 3 374827 +del ||| , the European Commission must ||| 0.0192308 0.0732944 2.6679e-06 1.25037e-10 2.718 ||| 0-1 ||| 52 374827 +del ||| , the European Commission ||| 0.00094162 0.0732944 2.6679e-06 8.08985e-08 2.718 ||| 0-1 ||| 1062 374827 +del ||| , the European ||| 0.00744879 0.0400553 1.06716e-05 0.00012719 2.718 ||| 0-1 0-2 ||| 537 374827 +del ||| , the Netherlands has turned its back ||| 1 0.0732944 2.6679e-06 1.77652e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| , the Netherlands has turned its ||| 1 0.0732944 2.6679e-06 2.64128e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| , the Netherlands has turned ||| 1 0.0732944 2.6679e-06 1.85392e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| , the Netherlands has ||| 0.0833333 0.0732944 2.6679e-06 3.30467e-09 2.718 ||| 0-1 ||| 12 374827 +del ||| , the Netherlands ||| 0.00277008 0.0732944 2.6679e-06 6.41995e-07 2.718 ||| 0-1 ||| 361 374827 +del ||| , the Spanish ||| 0.0588235 0.0732944 2.6679e-06 9.23645e-07 2.718 ||| 0-1 ||| 17 374827 +del ||| , the aim ||| 0.00239234 0.0732944 2.6679e-06 5.69512e-06 2.718 ||| 0-1 ||| 418 374827 +del ||| , the businesses ||| 0.2 0.0732944 2.6679e-06 1.10175e-06 2.718 ||| 0-1 ||| 5 374827 +del ||| , the duly ||| 0.333333 0.0732944 2.6679e-06 4.47326e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| , the end - ||| 1 0.0732944 2.6679e-06 6.79786e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| , the end ||| 0.0123457 0.0732944 2.6679e-06 1.80214e-05 2.718 ||| 0-1 ||| 81 374827 +del ||| , the exception ||| 0.142857 0.0732944 2.6679e-06 7.74536e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| , the first of ||| 0.00649351 0.130625 2.6679e-06 1.16276e-06 2.718 ||| 0-3 ||| 154 374827 +del ||| , the government ' s inability to ||| 1 0.0028084 2.6679e-06 6.9646e-19 2.718 ||| 0-2 ||| 1 374827 +del ||| , the government ' s inability ||| 1 0.0028084 2.6679e-06 7.83789e-18 2.718 ||| 0-2 ||| 1 374827 +del ||| , the government ' s ||| 1 0.0028084 2.6679e-06 2.44934e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| , the government ' ||| 1 0.0028084 2.6679e-06 1.28757e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| , the government ||| 0.0041841 0.0028084 2.6679e-06 3.74849e-07 2.718 ||| 0-2 ||| 239 374827 +del ||| , the legal basis since last ||| 1 0.0732944 2.6679e-06 9.44665e-17 2.718 ||| 0-1 ||| 1 374827 +del ||| , the legal basis since ||| 1 0.0732944 2.6679e-06 4.32539e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| , the legal basis ||| 0.030303 0.0732944 2.6679e-06 3.18746e-09 2.718 ||| 0-1 ||| 33 374827 +del ||| , the legal ||| 0.125 0.0732944 2.6679e-06 5.36791e-06 2.718 ||| 0-1 ||| 8 374827 +del ||| , the logic of this would ||| 1 0.130625 2.6679e-06 5.89641e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| , the logic of this ||| 1 0.130625 2.6679e-06 1.00472e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| , the logic of ||| 0.25 0.130625 2.6679e-06 1.55496e-08 2.718 ||| 0-3 ||| 4 374827 +del ||| , the main thrust of ||| 0.2 0.130625 2.6679e-06 2.79914e-12 2.718 ||| 0-4 ||| 5 374827 +del ||| , the market ||| 0.0105263 0.0732944 2.6679e-06 9.3607e-06 2.718 ||| 0-1 ||| 95 374827 +del ||| , the notorious ||| 0.142857 0.0732944 2.6679e-06 1.20115e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| , the one plus ten ||| 1 0.0732944 2.6679e-06 1.39213e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| , the one plus ||| 1 0.0732944 2.6679e-06 1.24297e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| , the one ||| 0.00746269 0.0732944 2.6679e-06 0.000172635 2.718 ||| 0-1 ||| 134 374827 +del ||| , the outcome of ||| 0.0144928 0.130625 2.6679e-06 1.10359e-07 2.718 ||| 0-3 ||| 69 374827 +del ||| , the planned ||| 0.166667 0.0732944 2.6679e-06 1.41653e-06 2.718 ||| 0-1 ||| 6 374827 +del ||| , the purpose of which is to ||| 0.0526316 0.0732944 2.6679e-06 9.58291e-12 2.718 ||| 0-1 ||| 19 374827 +del ||| , the purpose of which is ||| 0.0555556 0.0732944 2.6679e-06 1.07845e-10 2.718 ||| 0-1 ||| 18 374827 +del ||| , the purpose of which ||| 0.0344828 0.0732944 2.6679e-06 3.44101e-09 2.718 ||| 0-1 ||| 29 374827 +del ||| , the purpose of ||| 0.00909091 0.0732944 2.6679e-06 4.05082e-07 2.718 ||| 0-1 ||| 110 374827 +del ||| , the purpose ||| 0.00649351 0.0732944 2.6679e-06 7.45129e-06 2.718 ||| 0-1 ||| 154 374827 +del ||| , the reconstruction of the ||| 0.142857 0.10196 2.6679e-06 3.75043e-09 2.718 ||| 0-3 0-4 ||| 7 374827 +del ||| , the regulation ||| 0.00480769 0.0732944 2.6679e-06 2.89105e-06 2.718 ||| 0-1 ||| 208 374827 +del ||| , the report of the employment task ||| 1 0.0732944 2.6679e-06 3.49124e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| , the report of the employment ||| 1 0.0732944 2.6679e-06 2.77082e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| , the report of the ||| 0.0526316 0.0732944 2.6679e-06 5.6663e-08 2.718 ||| 0-1 ||| 19 374827 +del ||| , the report of ||| 0.0384615 0.0732944 2.6679e-06 9.22974e-07 2.718 ||| 0-1 ||| 26 374827 +del ||| , the report ||| 0.000466418 0.0732944 2.6679e-06 1.69777e-05 2.718 ||| 0-1 ||| 2144 374827 +del ||| , the temporary ||| 1 0.0732944 2.6679e-06 6.41995e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| , the year ||| 0.0153846 0.0732944 2.6679e-06 1.03299e-05 2.718 ||| 0-1 ||| 65 374827 +del ||| , the ||| 0.00157024 0.0732944 0.000704325 0.041419 2.718 ||| 0-1 ||| 168127 374827 +del ||| , then , of the ||| 0.111111 0.10196 2.6679e-06 2.34644e-06 2.718 ||| 0-3 0-4 ||| 9 374827 +del ||| , then the ||| 0.00148588 0.0732944 2.6679e-06 6.67012e-05 2.718 ||| 0-2 ||| 673 374827 +del ||| , therefore , in the ||| 0.0555556 0.0458111 2.6679e-06 1.11394e-07 2.718 ||| 0-3 0-4 ||| 18 374827 +del ||| , therefore , the ||| 0.00571429 0.0732944 2.6679e-06 4.13083e-06 2.718 ||| 0-3 ||| 175 374827 +del ||| , they are the indigenous people of ||| 0.25 0.0732944 2.6679e-06 4.2206e-16 2.718 ||| 0-3 ||| 4 374827 +del ||| , they are the indigenous people ||| 0.25 0.0732944 2.6679e-06 7.7636e-15 2.718 ||| 0-3 ||| 4 374827 +del ||| , they are the indigenous ||| 0.25 0.0732944 2.6679e-06 8.82026e-12 2.718 ||| 0-3 ||| 4 374827 +del ||| , they are the ||| 0.0149254 0.0732944 2.6679e-06 2.05122e-06 2.718 ||| 0-3 ||| 67 374827 +del ||| , this ||| 0.000155055 0.0033154 8.00369e-06 0.000273797 2.718 ||| 0-1 ||| 19348 374827 +del ||| , though , of the ||| 0.333333 0.10196 2.6679e-06 3.61787e-07 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| , through its ||| 0.00490196 0.0035806 2.6679e-06 2.68207e-08 2.718 ||| 0-2 ||| 204 374827 +del ||| , throughout the ||| 0.00769231 0.0375534 2.6679e-06 1.35854e-06 2.718 ||| 0-1 0-2 ||| 130 374827 +del ||| , to be covered before the ||| 1 0.0732944 2.6679e-06 1.19441e-12 2.718 ||| 0-5 ||| 1 374827 +del ||| , to be held on ||| 0.0666667 0.008389 2.6679e-06 5.44323e-11 2.718 ||| 0-3 0-4 ||| 15 374827 +del ||| , to see the ||| 0.0416667 0.0732944 2.6679e-06 2.59322e-06 2.718 ||| 0-3 ||| 24 374827 +del ||| , to the ||| 0.00178094 0.0732944 1.60074e-05 0.00368042 2.718 ||| 0-2 ||| 3369 374827 +del ||| , to ||| 2.7717e-05 0.0006066 2.6679e-06 0.000158668 2.718 ||| 0-1 ||| 36079 374827 +del ||| , too , of a ||| 0.5 0.130625 2.6679e-06 2.53085e-07 2.718 ||| 0-3 ||| 2 374827 +del ||| , too , of the ||| 0.153846 0.10196 5.33579e-06 1.98305e-06 2.718 ||| 0-3 0-4 ||| 13 374827 +del ||| , too , of ||| 0.142857 0.130625 5.33579e-06 5.70965e-06 2.718 ||| 0-3 ||| 14 374827 +del ||| , under the ||| 0.00242718 0.0441302 8.00369e-06 3.29116e-05 2.718 ||| 0-1 0-2 ||| 1236 374827 +del ||| , under ||| 0.000705965 0.014966 5.33579e-06 9.47598e-05 2.718 ||| 0-1 ||| 2833 374827 +del ||| , we have dot sex ||| 0.5 0.0635335 2.6679e-06 6.21101e-16 2.718 ||| 0-4 ||| 2 374827 +del ||| , we have indeed made the ||| 1 0.0732944 2.6679e-06 8.92817e-12 2.718 ||| 0-5 ||| 1 374827 +del ||| , we in ||| 0.00184502 0.0183279 2.6679e-06 3.65075e-05 2.718 ||| 0-2 ||| 542 374827 +del ||| , we would like the ||| 0.0588235 0.0732944 2.6679e-06 4.90054e-09 2.718 ||| 0-4 ||| 17 374827 +del ||| , were under the ||| 1 0.0732944 2.6679e-06 2.66223e-08 2.718 ||| 0-3 ||| 1 374827 +del ||| , whatever the ||| 0.0046729 0.0732944 2.6679e-06 2.28219e-06 2.718 ||| 0-2 ||| 214 374827 +del ||| , when one considers the ||| 0.333333 0.0732944 2.6679e-06 1.30313e-12 2.718 ||| 0-4 ||| 3 374827 +del ||| , when the ||| 0.00078125 0.0732944 2.6679e-06 2.07054e-05 2.718 ||| 0-2 ||| 1280 374827 +del ||| , whereas the Council ||| 0.1 0.0707819 2.6679e-06 1.32387e-09 2.718 ||| 0-3 ||| 10 374827 +del ||| , which - as the rapporteur ||| 0.5 0.0732944 2.6679e-06 9.79156e-13 2.718 ||| 0-4 ||| 2 374827 +del ||| , which - as the ||| 0.5 0.0732944 2.6679e-06 1.3543e-08 2.718 ||| 0-4 ||| 2 374827 +del ||| , which belongs to the acquis communautaire ||| 1 0.0732944 2.6679e-06 1.65229e-21 2.718 ||| 0-4 ||| 1 374827 +del ||| , which belongs to the acquis ||| 1 0.0732944 2.6679e-06 2.36041e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| , which belongs to the ||| 0.285714 0.0732944 5.33579e-06 4.72082e-10 2.718 ||| 0-4 ||| 7 374827 +del ||| , which is exclusive to the ||| 1 0.0732944 2.6679e-06 6.36895e-12 2.718 ||| 0-5 ||| 1 374827 +del ||| , which is here as part of ||| 1 0.130625 2.6679e-06 2.31044e-13 2.718 ||| 0-6 ||| 1 374827 +del ||| , which is the very ||| 0.125 0.0732944 2.6679e-06 3.83684e-08 2.718 ||| 0-3 ||| 8 374827 +del ||| , which is the ||| 0.000678426 0.0732944 2.6679e-06 1.1027e-05 2.718 ||| 0-3 ||| 1474 374827 +del ||| , which the ||| 0.00100705 0.0732944 2.6679e-06 0.000351838 2.718 ||| 0-2 ||| 993 374827 +del ||| , while on the ||| 0.0166667 0.0140673 2.6679e-06 1.33841e-08 2.718 ||| 0-2 ||| 60 374827 +del ||| , while on ||| 0.0111111 0.0140673 2.6679e-06 2.18012e-07 2.718 ||| 0-2 ||| 90 374827 +del ||| , whilst the Council ||| 0.333333 0.0732944 2.6679e-06 7.57671e-10 2.718 ||| 0-2 ||| 3 374827 +del ||| , whilst the ||| 0.00454545 0.0732944 2.6679e-06 2.19107e-06 2.718 ||| 0-2 ||| 220 374827 +del ||| , who belong to the ||| 1 0.0732944 2.6679e-06 9.34886e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| , whose numbers have understandably increased as ||| 1 0.0190026 2.6679e-06 3.45217e-23 2.718 ||| 0-5 ||| 1 374827 +del ||| , whose numbers have understandably increased ||| 1 0.0190026 2.6679e-06 3.38302e-21 2.718 ||| 0-5 ||| 1 374827 +del ||| , will give to the ||| 1 0.0732944 2.6679e-06 1.92951e-08 2.718 ||| 0-4 ||| 1 374827 +del ||| , with a view to the adoption ||| 0.333333 0.0732944 2.6679e-06 4.34404e-14 2.718 ||| 0-5 ||| 3 374827 +del ||| , with a view to the ||| 0.0135135 0.0732944 2.6679e-06 9.42308e-10 2.718 ||| 0-5 ||| 74 374827 +del ||| , with the ||| 0.000476417 0.0732944 8.00369e-06 0.000264854 2.718 ||| 0-2 ||| 6297 374827 +del ||| , with ||| 0.000235101 0.0045281 1.60074e-05 0.000226966 2.718 ||| 0-1 ||| 25521 374827 +del ||| , within ||| 0.000467071 0.0072058 2.6679e-06 4.98127e-05 2.718 ||| 0-1 ||| 2141 374827 +del ||| , without evidence , of ||| 0.166667 0.130625 2.6679e-06 5.10853e-11 2.718 ||| 0-4 ||| 6 374827 +del ||| , witness the report 's ||| 1 0.169811 2.6679e-06 1.73638e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| - ( PT ) This European ||| 0.5 0.0068161 2.6679e-06 1.28068e-20 2.718 ||| 0-5 ||| 2 374827 +del ||| - ( PT ) ||| 0.000919118 0.0056759 2.6679e-06 2.21328e-13 2.718 ||| 0-3 ||| 1088 374827 +del ||| - 2009 / 2008 ( BUD ) ||| 1 0.0056759 2.6679e-06 1.14725e-28 2.718 ||| 0-6 ||| 1 374827 +del ||| - C4-0134 / 98 ) ||| 1 1 2.6679e-06 1.23201e-20 2.718 ||| 0-1 ||| 1 374827 +del ||| - C4-0134 / 98 ||| 1 1 2.6679e-06 8.57172e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| - C4-0134 / ||| 1 1 2.6679e-06 1.12786e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| - C4-0134 ||| 1 1 2.6679e-06 4.90373e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| - and this too is ||| 0.5 0.0033154 2.6679e-06 4.62719e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| - and this too ||| 0.2 0.0033154 2.6679e-06 1.4764e-10 2.718 ||| 0-2 ||| 5 374827 +del ||| - and this ||| 0.00172861 0.0033154 5.33579e-06 1.08479e-07 2.718 ||| 0-2 ||| 1157 374827 +del ||| - as a matter of ||| 0.25 0.130625 2.6679e-06 5.22175e-10 2.718 ||| 0-4 ||| 4 374827 +del ||| - as the rapporteur ||| 0.142857 0.0732944 2.6679e-06 9.6657e-10 2.718 ||| 0-2 ||| 7 374827 +del ||| - as the ||| 0.00934579 0.0732944 2.6679e-06 1.33689e-05 2.718 ||| 0-2 ||| 107 374827 +del ||| - at the ||| 0.012987 0.0732944 2.6679e-06 5.48595e-06 2.718 ||| 0-2 ||| 77 374827 +del ||| - be carried out in the ||| 1 0.0458111 2.6679e-06 7.22741e-13 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| - because the ||| 0.0322581 0.0732944 2.6679e-06 4.30502e-07 2.718 ||| 0-2 ||| 31 374827 +del ||| - by the ||| 0.0769231 0.0597263 8.00369e-06 2.11842e-05 2.718 ||| 0-1 0-2 ||| 39 374827 +del ||| - by which I ||| 0.04 0.0461582 2.6679e-06 3.66493e-09 2.718 ||| 0-1 ||| 25 374827 +del ||| - by which ||| 0.0285714 0.0461582 2.6679e-06 5.18121e-07 2.718 ||| 0-1 ||| 35 374827 +del ||| - by ||| 0.0106007 0.0461582 8.00369e-06 6.09941e-05 2.718 ||| 0-1 ||| 283 374827 +del ||| - came from ||| 1 0.0911315 2.6679e-06 1.03009e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| - from the cells ||| 0.5 0.0732944 2.6679e-06 9.07214e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| - from the ||| 0.02 0.082213 5.33579e-06 2.83943e-05 2.718 ||| 0-1 0-2 ||| 100 374827 +del ||| - in the poorest ||| 0.5 0.0458111 2.6679e-06 2.685e-10 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| - in the ||| 0.00857143 0.0458111 8.00369e-06 3.53289e-05 2.718 ||| 0-1 0-2 ||| 350 374827 +del ||| - it was indeed the case that ||| 1 0.0732944 2.6679e-06 9.95636e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| - it was indeed the case ||| 1 0.0732944 2.6679e-06 5.91879e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| - it was indeed the ||| 1 0.0732944 2.6679e-06 5.5321e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| - necessary from every point of ||| 1 0.0911315 2.6679e-06 1.62762e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| - necessary from every point ||| 1 0.0911315 2.6679e-06 2.99393e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| - necessary from every ||| 1 0.0911315 2.6679e-06 3.42242e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| - necessary from ||| 1 0.0911315 2.6679e-06 2.10352e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| - of the ||| 0.0692308 0.10196 2.40111e-05 0.000386463 2.718 ||| 0-1 0-2 ||| 130 374827 +del ||| - of ||| 0.0175781 0.130625 2.40111e-05 0.00111271 2.718 ||| 0-1 ||| 512 374827 +del ||| - on the ||| 0.00534759 0.0436809 2.6679e-06 1.28489e-05 2.718 ||| 0-1 0-2 ||| 187 374827 +del ||| - on ||| 0.00190114 0.0140673 2.6679e-06 3.69949e-05 2.718 ||| 0-1 ||| 526 374827 +del ||| - one held by ||| 1 0.0244345 2.6679e-06 7.34706e-12 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| - policing the ||| 0.142857 0.0732944 2.6679e-06 2.3582e-09 2.718 ||| 0-2 ||| 7 374827 +del ||| - so to speak - of ||| 1 0.130625 2.6679e-06 1.14533e-13 2.718 ||| 0-5 ||| 1 374827 +del ||| - that this ||| 0.0222222 0.0033154 2.6679e-06 1.45681e-07 2.718 ||| 0-2 ||| 45 374827 +del ||| - that we in ||| 0.2 0.0183279 2.6679e-06 1.94248e-08 2.718 ||| 0-3 ||| 5 374827 +del ||| - the front door ||| 1 0.0732944 2.6679e-06 4.78345e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| - the front ||| 1 0.0732944 2.6679e-06 1.05595e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| - the ||| 0.00220529 0.0732944 2.93469e-05 0.00131011 2.718 ||| 0-1 ||| 4988 374827 +del ||| - thinking of ||| 0.25 0.130625 2.6679e-06 8.24522e-08 2.718 ||| 0-2 ||| 4 374827 +del ||| - those of ||| 0.111111 0.130625 5.33579e-06 8.05717e-07 2.718 ||| 0-2 ||| 18 374827 +del ||| - to ||| 0.000581395 0.0006066 2.6679e-06 5.01878e-06 2.718 ||| 0-1 ||| 1720 374827 +del ||| - within the ||| 0.0294118 0.0402501 2.6679e-06 5.47233e-07 2.718 ||| 0-1 0-2 ||| 34 374827 +del ||| -from ||| 1 1 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| . - ( PT ) This European ||| 0.5 0.0068161 2.6679e-06 3.87918e-23 2.718 ||| 0-6 ||| 2 374827 +del ||| . I also concur with the Commission ||| 1 0.0732944 2.6679e-06 4.06931e-19 2.718 ||| 0-5 ||| 1 374827 +del ||| . I also concur with the ||| 1 0.0732944 2.6679e-06 6.96681e-16 2.718 ||| 0-5 ||| 1 374827 +del ||| . as a European institution , the ||| 1 0.0732944 2.6679e-06 5.18035e-15 2.718 ||| 0-6 ||| 1 374827 +del ||| . as for ||| 0.0769231 0.0138653 2.6679e-06 3.32533e-07 2.718 ||| 0-2 ||| 13 374827 +del ||| . he was attacked by the advocates ||| 0.5 0.0597263 2.6679e-06 2.04275e-21 2.718 ||| 0-4 0-5 ||| 2 374827 +del ||| . he was attacked by the ||| 0.5 0.0597263 2.6679e-06 3.34878e-16 2.718 ||| 0-4 0-5 ||| 2 374827 +del ||| . however , a number of ||| 1 0.130625 2.6679e-06 2.58871e-12 2.718 ||| 0-5 ||| 1 374827 +del ||| . in ||| 0.000752445 0.0183279 2.6679e-06 8.16812e-05 2.718 ||| 0-1 ||| 1329 374827 +del ||| . is the ||| 0.2 0.0732944 2.6679e-06 3.29715e-05 2.718 ||| 0-2 ||| 5 374827 +del ||| . it is this ||| 0.166667 0.0033154 2.6679e-06 3.87593e-09 2.718 ||| 0-3 ||| 6 374827 +del ||| . likewise ||| 0.25 0.0712531 2.6679e-06 4.6162e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| . so Parliament is being asked to ||| 1 0.0181517 2.6679e-06 1.89089e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| . so Parliament is being asked ||| 1 0.0181517 2.6679e-06 2.12798e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| . so Parliament is being ||| 1 0.0181517 2.6679e-06 2.81479e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| . so Parliament is ||| 1 0.0181517 2.6679e-06 9.89104e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| . so Parliament ||| 1 0.0181517 2.6679e-06 3.15593e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| . some actions will build on ||| 0.5 0.0140673 2.6679e-06 7.73806e-19 2.718 ||| 0-5 ||| 2 374827 +del ||| . the Commission has decided the enlargement ||| 1 0.0732944 2.6679e-06 4.01126e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| . the Commission has decided the ||| 1 0.0732944 2.6679e-06 1.32823e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| . the Commission has decided ||| 1 0.0732944 2.6679e-06 2.16353e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| . the Commission has ||| 0.0434783 0.0732944 2.6679e-06 3.16306e-09 2.718 ||| 0-1 ||| 23 374827 +del ||| . the Commission ||| 0.005 0.0732944 2.6679e-06 6.14485e-07 2.718 ||| 0-1 ||| 200 374827 +del ||| . the Ombudsman ||| 1 0.0732944 2.6679e-06 1.70427e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| . the causes of hunger and underdevelopment ||| 1 0.130625 2.6679e-06 2.5626e-23 2.718 ||| 0-3 ||| 1 374827 +del ||| . the causes of hunger and ||| 1 0.130625 2.6679e-06 6.40651e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| . the causes of hunger ||| 1 0.130625 2.6679e-06 5.11461e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| . the causes of ||| 1 0.130625 2.6679e-06 1.42073e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| . the employees sit tight in their ||| 0.5 0.0732944 2.6679e-06 1.27054e-22 2.718 ||| 0-1 ||| 2 374827 +del ||| . the employees sit tight in ||| 0.5 0.0732944 2.6679e-06 1.09615e-19 2.718 ||| 0-1 ||| 2 374827 +del ||| . the employees sit tight ||| 0.5 0.0732944 2.6679e-06 5.12111e-18 2.718 ||| 0-1 ||| 2 374827 +del ||| . the employees sit ||| 0.5 0.0732944 2.6679e-06 5.44799e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| . the employees ||| 0.5 0.0732944 2.6679e-06 1.44127e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| . the ||| 0.00327976 0.0732944 2.6679e-05 0.00105202 2.718 ||| 0-1 ||| 3049 374827 +del ||| . they resemble a victory statement of ||| 1 0.130625 2.6679e-06 1.39647e-22 2.718 ||| 0-6 ||| 1 374827 +del ||| . whether it is efficient is another ||| 1 1.43e-05 2.6679e-06 7.61949e-22 2.718 ||| 0-0 ||| 1 374827 +del ||| . whether it is efficient is ||| 1 1.43e-05 2.6679e-06 3.1603e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| . whether it is efficient ||| 1 1.43e-05 2.6679e-06 1.00836e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| . whether it is ||| 0.5 1.43e-05 2.6679e-06 5.19772e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| . whether it ||| 0.5 1.43e-05 2.6679e-06 1.65843e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| . whether ||| 0.125 1.43e-05 2.6679e-06 9.32585e-09 2.718 ||| 0-0 ||| 8 374827 +del ||| . ||| 1.12256e-05 1.43e-05 5.86937e-05 3.55e-05 2.718 ||| 0-0 ||| 1.9598e+06 374827 +del ||| ... the ||| 0.0208333 0.0732944 2.6679e-06 1.22602e-05 2.718 ||| 0-1 ||| 48 374827 +del ||| ... ||| 0.000347464 0.0003378 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 2878 374827 +del ||| / 05 ||| 0.047619 0.0015037 2.6679e-06 3.493e-11 2.718 ||| 0-0 ||| 21 374827 +del ||| / 2008 ( BUD ) ) ||| 1 0.0056759 2.6679e-06 3.36264e-24 2.718 ||| 0-4 ||| 1 374827 +del ||| / 2008 ( BUD ) ||| 1 0.0056759 2.6679e-06 2.33955e-21 2.718 ||| 0-4 ||| 1 374827 +del ||| / 2009 - , ||| 0.0222222 0.0015037 2.6679e-06 2.91812e-13 2.718 ||| 0-0 ||| 45 374827 +del ||| / 2009 - ||| 0.00917431 0.0015037 2.6679e-06 2.44696e-12 2.718 ||| 0-0 ||| 109 374827 +del ||| / 2009 ||| 0.00330033 0.0015037 2.6679e-06 6.487e-10 2.718 ||| 0-0 ||| 303 374827 +del ||| / 98 by ||| 0.0555556 0.0461582 2.6679e-06 2.82648e-11 2.718 ||| 0-2 ||| 18 374827 +del ||| / 98 of the ||| 0.5 0.10196 2.6679e-06 1.79088e-10 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| / ||| 0.000930587 0.0015037 5.86937e-05 4.99e-05 2.718 ||| 0-0 ||| 23641 374827 +del ||| 000 of the ||| 0.125 0.10196 5.33579e-06 1.07268e-05 2.718 ||| 0-1 0-2 ||| 16 374827 +del ||| 0092 - C4-0134 / 98 ) ||| 1 1 2.6679e-06 4.92805e-27 2.718 ||| 0-2 ||| 1 374827 +del ||| 0092 - C4-0134 / 98 ||| 1 1 2.6679e-06 3.42869e-24 2.718 ||| 0-2 ||| 1 374827 +del ||| 0092 - C4-0134 / ||| 1 1 2.6679e-06 4.51143e-19 2.718 ||| 0-2 ||| 1 374827 +del ||| 0092 - C4-0134 ||| 1 1 2.6679e-06 1.96149e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| 0303 ||| 0.5 1 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| 1 January 2003 , ||| 0.0588235 0.0319508 2.6679e-06 4.34878e-14 2.718 ||| 0-1 ||| 17 374827 +del ||| 1 January 2003 ||| 0.0181818 0.0319508 2.6679e-06 3.64663e-13 2.718 ||| 0-1 ||| 55 374827 +del ||| 1 January ||| 0.000577367 0.0319508 2.6679e-06 3.17099e-08 2.718 ||| 0-1 ||| 1732 374827 +del ||| 1 ||| 8.00448e-05 0.000321 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 12493 374827 +del ||| 10 by ||| 0.0185185 0.023149 2.6679e-06 2.10207e-08 2.718 ||| 0-0 0-1 ||| 54 374827 +del ||| 133 of the ||| 0.0714286 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-1 0-2 ||| 14 374827 +del ||| 19th ||| 0.00729927 0.0824176 2.6679e-06 1.97e-05 2.718 ||| 0-0 ||| 137 374827 +del ||| 1a ||| 0.0116279 0.0366972 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 86 374827 +del ||| 2 of the ||| 0.00465116 0.10196 2.6679e-06 3.76003e-06 2.718 ||| 0-1 0-2 ||| 215 374827 +del ||| 2 rule to the Cohesion Fund ||| 1 0.0314359 2.6679e-06 1.22612e-20 2.718 ||| 0-4 ||| 1 374827 +del ||| 2 rule to the Cohesion ||| 1 0.0314359 2.6679e-06 7.91044e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| 2 ||| 0.000230176 0.0003611 5.33579e-06 3.9e-06 2.718 ||| 0-0 ||| 8689 374827 +del ||| 20 % , with ||| 0.25 0.0901615 2.6679e-06 4.94568e-11 2.718 ||| 0-1 ||| 4 374827 +del ||| 20 % , ||| 0.00793651 0.0901615 2.6679e-06 7.73427e-09 2.718 ||| 0-1 ||| 126 374827 +del ||| 20 % is earmarked ||| 1 0.0901615 2.6679e-06 2.11393e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| 20 % is ||| 0.0526316 0.0901615 2.6679e-06 2.03263e-09 2.718 ||| 0-1 ||| 19 374827 +del ||| 20 % ||| 0.000831947 0.0901615 5.33579e-06 6.48551e-08 2.718 ||| 0-1 ||| 2404 374827 +del ||| 2000 decision taken in Berlin ||| 1 0.0084343 2.6679e-06 9.16267e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| 2000 decision taken in ||| 1 0.0084343 2.6679e-06 2.86333e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| 2000 decision taken ||| 1 0.0084343 2.6679e-06 1.33773e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| 2000 decision ||| 1 0.0084343 2.6679e-06 1.46761e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| 2000 ||| 0.0003438 0.0084343 8.00369e-06 9.33e-05 2.718 ||| 0-0 ||| 8726 374827 +del ||| 20021 ) 745 - C5-0159 / 2002 ||| 1 1 2.6679e-06 4.20181e-33 2.718 ||| 0-0 ||| 1 374827 +del ||| 20021 ) 745 - C5-0159 / ||| 1 1 2.6679e-06 2.59371e-28 2.718 ||| 0-0 ||| 1 374827 +del ||| 20021 ) 745 - C5-0159 ||| 1 1 2.6679e-06 1.1277e-24 2.718 ||| 0-0 ||| 1 374827 +del ||| 20021 ) 745 - ||| 1 1 2.6679e-06 2.81925e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| 20021 ) 745 ||| 1 1 2.6679e-06 7.47396e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| 20021 ) ||| 1 1 2.6679e-06 1.86849e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| 20021 ||| 1 1 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| 2005 , whereas the Council ||| 1 0.0707819 2.6679e-06 1.66808e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| 2008 ( BUD ) ) ||| 1 0.0056759 2.6679e-06 1.46202e-20 2.718 ||| 0-3 ||| 1 374827 +del ||| 2008 ( BUD ) ||| 1 0.0056759 2.6679e-06 1.0172e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| 2009 / 2008 ( BUD ) ) ||| 1 0.0056759 2.6679e-06 4.37143e-29 2.718 ||| 0-5 ||| 1 374827 +del ||| 2009 / 2008 ( BUD ) ||| 1 0.0056759 2.6679e-06 3.04142e-26 2.718 ||| 0-5 ||| 1 374827 +del ||| 2013 in ||| 0.0625 0.0183279 2.6679e-06 3.7753e-08 2.718 ||| 0-1 ||| 16 374827 +del ||| 20th-century ||| 0.0714286 0.266667 2.6679e-06 1.05e-05 2.718 ||| 0-0 ||| 14 374827 +del ||| 24 November is ||| 1 0.0137696 2.6679e-06 3.57671e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| 24 November ||| 0.0133333 0.0137696 2.6679e-06 1.14122e-09 2.718 ||| 0-1 ||| 75 374827 +del ||| 276 of the ||| 0.125 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| 3 ) of the ||| 0.1 0.10196 5.33579e-06 3.38689e-09 2.718 ||| 0-2 0-3 ||| 20 374827 +del ||| 31 ||| 0.000544366 0.0147783 2.6679e-06 3.15e-05 2.718 ||| 0-0 ||| 1837 374827 +del ||| 40 ||| 0.000304321 0.0003272 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 3286 374827 +del ||| 50 years of the ||| 0.047619 0.10196 2.6679e-06 2.44125e-10 2.718 ||| 0-2 0-3 ||| 21 374827 +del ||| 56 ||| 0.00301205 0.0030864 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 332 374827 +del ||| 70 / 157 / ||| 0.25 0.000668 2.6679e-06 2.7508e-20 2.718 ||| 0-0 ||| 4 374827 +del ||| 70 / 157 ||| 0.25 0.000668 2.6679e-06 1.196e-16 2.718 ||| 0-0 ||| 4 374827 +del ||| 70 / ||| 0.02 0.000668 2.6679e-06 2.99e-10 2.718 ||| 0-0 ||| 50 374827 +del ||| 70 ||| 0.000626174 0.000668 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1597 374827 +del ||| 8 / 98 of the ||| 0.5 0.10196 2.6679e-06 2.25651e-15 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| 85 % of these requests are granted ||| 1 0.0901615 2.6679e-06 5.95026e-24 2.718 ||| 0-1 ||| 1 374827 +del ||| 85 % of these requests are ||| 1 0.0901615 2.6679e-06 7.346e-20 2.718 ||| 0-1 ||| 1 374827 +del ||| 85 % of these requests ||| 1 0.0901615 2.6679e-06 4.84159e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| 85 % of these ||| 1 0.0901615 2.6679e-06 3.7243e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| 85 % of ||| 0.00847458 0.0901615 2.6679e-06 3.59107e-10 2.718 ||| 0-1 ||| 118 374827 +del ||| 85 % ||| 0.00448431 0.0901615 2.6679e-06 6.60561e-09 2.718 ||| 0-1 ||| 223 374827 +del ||| 9 / ||| 0.0243902 0.0015037 2.6679e-06 5.5888e-10 2.718 ||| 0-1 ||| 41 374827 +del ||| 96 ) 0086 ||| 0.5 0.0056759 2.6679e-06 8.10368e-16 2.718 ||| 0-1 ||| 2 374827 +del ||| 96 ) 0303 ||| 0.5 1 2.6679e-06 5.97917e-15 2.718 ||| 0-2 ||| 2 374827 +del ||| 96 ) ||| 0.00148368 0.0056759 2.6679e-06 2.02592e-09 2.718 ||| 0-1 ||| 674 374827 +del ||| 98 ) 0092 - C4-0134 / 98 ||| 1 1 2.6679e-06 3.74532e-32 2.718 ||| 0-4 ||| 1 374827 +del ||| 98 ) 0092 - C4-0134 / ||| 1 1 2.6679e-06 4.92805e-27 2.718 ||| 0-4 ||| 1 374827 +del ||| 98 ) 0092 - C4-0134 ||| 1 1 2.6679e-06 2.14263e-23 2.718 ||| 0-4 ||| 1 374827 +del ||| 98 by ||| 0.05 0.0461582 2.6679e-06 1.2289e-07 2.718 ||| 0-1 ||| 20 374827 +del ||| 98 of the ||| 0.166667 0.10196 2.6679e-06 7.78644e-07 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| : from ||| 0.00694444 0.0911315 2.6679e-06 7.29953e-06 2.718 ||| 0-1 ||| 144 374827 +del ||| : the increase ||| 0.142857 0.0732944 2.6679e-06 1.51133e-08 2.718 ||| 0-1 ||| 7 374827 +del ||| : the ||| 0.000120366 0.0732944 2.6679e-06 0.000116976 2.718 ||| 0-1 ||| 8308 374827 +del ||| ; I certainly got a lot of ||| 1 0.130625 2.6679e-06 1.00863e-19 2.718 ||| 0-6 ||| 1 374827 +del ||| ; fighters who ||| 1 0.0084034 2.6679e-06 7.06306e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| ; fighters ||| 1 0.0084034 2.6679e-06 8.008e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| ; it depends on the ||| 0.333333 0.0732944 2.6679e-06 1.922e-13 2.718 ||| 0-4 ||| 3 374827 +del ||| ; s ||| 0.109375 0.16804 1.86753e-05 3.22621e-06 2.718 ||| 0-1 ||| 64 374827 +del ||| = s ||| 0.222222 0.16804 5.33579e-06 3.03766e-08 2.718 ||| 0-1 ||| 9 374827 +del ||| ? ' ' ||| 0.5 0.0293692 2.6679e-06 2.78725e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| ? ' ||| 0.00224719 0.0293692 2.6679e-06 8.1145e-07 2.718 ||| 0-1 ||| 445 374827 +del ||| ? in-office of the ||| 0.2 0.10196 2.6679e-06 7.0037e-12 2.718 ||| 0-2 0-3 ||| 5 374827 +del ||| ? of the ||| 1 0.10196 2.6679e-06 1.75092e-05 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| A ||| 0.00506329 0.0097614 1.06716e-05 1.18e-05 2.718 ||| 0-0 ||| 790 374827 +del ||| A6-0145 / 2005 ) ||| 0.5 1 2.6679e-06 5.41488e-18 2.718 ||| 0-0 ||| 2 374827 +del ||| A6-0145 / 2005 ||| 0.5 1 2.6679e-06 3.7674e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| A6-0145 / ||| 0.5 1 2.6679e-06 2.99e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| A6-0145 ||| 0.5 1 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| AGLIA ) ||| 1 0.0056759 2.6679e-06 2.5324e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| ATM ) ||| 0.2 0.0566038 2.6679e-06 5.60547e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| ATM ||| 0.03125 0.0566038 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 32 374827 +del ||| Act , ||| 0.0105263 0.0040595 2.6679e-06 9.42112e-07 2.718 ||| 0-0 ||| 95 374827 +del ||| Act One , Scene One ||| 1 0.0040595 2.6679e-06 3.85889e-24 2.718 ||| 0-0 ||| 1 374827 +del ||| Act One , Scene ||| 1 0.0040595 2.6679e-06 1.2059e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| Act One , ||| 1 0.0040595 2.6679e-06 3.01476e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| Act One ||| 1 0.0040595 2.6679e-06 2.528e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| Act of ||| 0.0149254 0.130625 2.6679e-06 2.24189e-06 2.718 ||| 0-1 ||| 67 374827 +del ||| Act ||| 0.00258176 0.0040595 8.00369e-06 7.9e-06 2.718 ||| 0-0 ||| 1162 374827 +del ||| Activity Four of the ||| 0.25 0.10196 2.6679e-06 1.63925e-14 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| Administration ||| 0.00187266 0.012766 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 534 374827 +del ||| Adventures of ||| 0.5 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-1 ||| 2 374827 +del ||| Affairs and the Internal Market . - ||| 1 0.0732944 2.6679e-06 3.67225e-21 2.718 ||| 0-2 ||| 1 374827 +del ||| Affairs and the Internal Market . ||| 0.25 0.0732944 2.6679e-06 9.73528e-19 2.718 ||| 0-2 ||| 4 374827 +del ||| Affairs and the Internal Market ||| 0.25 0.0732944 2.6679e-06 3.21403e-16 2.718 ||| 0-2 ||| 4 374827 +del ||| Affairs and the Internal ||| 0.2 0.0732944 2.6679e-06 1.07492e-11 2.718 ||| 0-2 ||| 5 374827 +del ||| Affairs and the ||| 0.0666667 0.0732944 2.6679e-06 3.8806e-07 2.718 ||| 0-2 ||| 15 374827 +del ||| Affairs of the ||| 0.5 0.10196 2.6679e-06 9.13882e-06 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| Agenda 2000 ||| 0.000565291 0.0084343 2.6679e-06 4.3851e-10 2.718 ||| 0-1 ||| 1769 374827 +del ||| Agreement ||| 0.000268348 0.0014278 5.33579e-06 1.05e-05 2.718 ||| 0-0 ||| 7453 374827 +del ||| Agricultural Organization 's ||| 1 0.169811 2.6679e-06 5.42442e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| Agriculture Organisation ( ||| 0.333333 0.178113 2.6679e-06 1.0846e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| Agriculture Organisation ||| 0.0526316 0.178113 2.6679e-06 1.12463e-08 2.718 ||| 0-1 ||| 19 374827 +del ||| Ahtisaari , ||| 0.0357143 0.0060976 2.6679e-06 1.55031e-07 2.718 ||| 0-0 ||| 28 374827 +del ||| Ahtisaari ||| 0.00653595 0.0060976 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 153 374827 +del ||| Aid Effectiveness ||| 0.0208333 0.0053763 2.6679e-06 1.04e-12 2.718 ||| 0-0 ||| 48 374827 +del ||| Aid ||| 0.00396825 0.0053763 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 252 374827 +del ||| Air ||| 0.00833333 0.0737179 5.33579e-06 3.02e-05 2.718 ||| 0-0 ||| 240 374827 +del ||| Aircraft - in the ||| 1 0.0732944 2.6679e-06 1.12169e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| Amendment in the ||| 1 0.0183279 2.6679e-06 4.51956e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| Amendment in ||| 1 0.0183279 2.6679e-06 7.36183e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| America 's ||| 0.0714286 0.169811 8.00369e-06 1.11301e-06 2.718 ||| 0-1 ||| 42 374827 +del ||| American one ||| 0.0909091 0.0006752 2.6679e-06 1.62552e-08 2.718 ||| 0-0 ||| 11 374827 +del ||| American promise to ease the ||| 1 0.0732944 2.6679e-06 7.72366e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| American ||| 0.000251699 0.0006752 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 3973 374827 +del ||| Amsterdam ||| 0.000189502 0.0029802 2.6679e-06 1.44e-05 2.718 ||| 0-0 ||| 5277 374827 +del ||| Analysis and ||| 0.25 0.0384615 2.6679e-06 1.62837e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| Analysis ||| 0.037037 0.0384615 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 27 374827 +del ||| Annual ||| 0.0019685 0.0020284 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 508 374827 +del ||| Arctic ||| 0.00212993 0.13215 5.33579e-06 0.000176 2.718 ||| 0-0 ||| 939 374827 +del ||| Arrangement ||| 0.0909091 0.0322581 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 11 374827 +del ||| Art. ||| 0.142857 0.214286 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 7 374827 +del ||| Article 300 ||| 0.0212766 0.11229 2.6679e-06 1.5e-08 2.718 ||| 0-0 ||| 47 374827 +del ||| Article 8 ||| 0.00364964 0.11229 2.6679e-06 3.25861e-08 2.718 ||| 0-0 ||| 274 374827 +del ||| Article ||| 0.000628931 0.11229 1.60074e-05 0.0025862 2.718 ||| 0-0 ||| 9540 374827 +del ||| Asian ||| 0.000937207 0.0043478 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 1067 374827 +del ||| Assembly , the ||| 0.1 0.0732944 2.6679e-06 3.72771e-07 2.718 ||| 0-2 ||| 10 374827 +del ||| Assessment ||| 0.0291262 0.0782609 8.00369e-06 2.36e-05 2.718 ||| 0-0 ||| 103 374827 +del ||| Association ||| 0.000460617 0.003595 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 2171 374827 +del ||| Atlantic drift ||| 0.25 0.104938 2.6679e-06 8.643e-10 2.718 ||| 0-0 ||| 4 374827 +del ||| Atlantic marine living ||| 0.166667 0.104938 2.6679e-06 6.06377e-14 2.718 ||| 0-0 ||| 6 374827 +del ||| Atlantic marine ||| 0.166667 0.104938 2.6679e-06 7.236e-10 2.718 ||| 0-0 ||| 6 374827 +del ||| Atlantic ||| 0.00337838 0.104938 1.06716e-05 0.000201 2.718 ||| 0-0 ||| 1184 374827 +del ||| Automotive ||| 0.037037 0.162162 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 27 374827 +del ||| BUD ) ) ||| 0.05 0.0056759 2.6679e-06 6.36968e-13 2.718 ||| 0-1 ||| 20 374827 +del ||| BUD ) ||| 0.0285714 0.0056759 2.6679e-06 4.4317e-10 2.718 ||| 0-1 ||| 35 374827 +del ||| Baltic Sea ||| 0.000788022 0.0704057 2.6679e-06 6.82e-09 2.718 ||| 0-0 ||| 1269 374827 +del ||| Baltic ||| 0.00153374 0.0704057 1.06716e-05 0.00031 2.718 ||| 0-0 ||| 2608 374827 +del ||| Bank on the ||| 0.111111 0.0140673 2.6679e-06 1.66782e-08 2.718 ||| 0-1 ||| 9 374827 +del ||| Bank on ||| 0.0833333 0.0140673 2.6679e-06 2.71668e-07 2.718 ||| 0-1 ||| 12 374827 +del ||| Based Budgeting ||| 0.2 0.0769231 2.6679e-06 1.04e-12 2.718 ||| 0-1 ||| 5 374827 +del ||| Basin ||| 0.0121951 0.0681818 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 82 374827 +del ||| Bay of Biscay - ||| 1 0.130625 2.6679e-06 1.60231e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| Bay of Biscay ||| 0.0147059 0.130625 2.6679e-06 4.24779e-13 2.718 ||| 0-1 ||| 68 374827 +del ||| Bay of ||| 0.0212766 0.130625 5.33579e-06 1.06195e-06 2.718 ||| 0-1 ||| 94 374827 +del ||| Belgian Minister for Foreign Affairs ||| 0.333333 0.0131775 2.6679e-06 6.40364e-21 2.718 ||| 0-1 ||| 3 374827 +del ||| Belgian Minister for Foreign ||| 0.5 0.0131775 2.6679e-06 7.17897e-17 2.718 ||| 0-1 ||| 2 374827 +del ||| Belgian Minister for ||| 0.166667 0.0131775 2.6679e-06 5.8844e-12 2.718 ||| 0-1 ||| 6 374827 +del ||| Belgian Minister ||| 0.0769231 0.0131775 2.6679e-06 7.6563e-10 2.718 ||| 0-1 ||| 13 374827 +del ||| Belgian ||| 0.000878349 0.0014866 5.33579e-06 3.9e-06 2.718 ||| 0-0 ||| 2277 374827 +del ||| Belgium ' ||| 0.2 0.0293692 2.6679e-06 3.08626e-08 2.718 ||| 0-1 ||| 5 374827 +del ||| Bloc ||| 0.111111 0.394737 5.33579e-06 1.97e-05 2.718 ||| 0-0 ||| 18 374827 +del ||| Boletín Oficial del ||| 1 0.607143 2.6679e-06 3.216e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| British Cabinet ||| 0.2 0.109375 2.6679e-06 2.714e-10 2.718 ||| 0-1 ||| 5 374827 +del ||| British Government 's ||| 0.025 0.169811 2.6679e-06 5.71332e-11 2.718 ||| 0-2 ||| 40 374827 +del ||| British government 's attitude of ||| 1 0.130625 2.6679e-06 6.91191e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| British ||| 0.00119994 0.0056117 2.13432e-05 4.6e-05 2.718 ||| 0-0 ||| 6667 374827 +del ||| Brother ||| 0.0357143 0.043956 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 28 374827 +del ||| Budgeting ||| 0.0625 0.0769231 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 16 374827 +del ||| Bureau 's ||| 0.125 0.169811 2.6679e-06 4.33954e-07 2.718 ||| 0-1 ||| 8 374827 +del ||| C4-0134 / 98 ) ||| 1 1 2.6679e-06 3.26612e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| C4-0134 / 98 ||| 1 1 2.6679e-06 2.2724e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| C4-0134 / ||| 1 1 2.6679e-06 2.99e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| C4-0134 ||| 1 1 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| CDM ) ||| 0.166667 0.126866 2.6679e-06 3.20518e-08 2.718 ||| 0-0 ||| 6 374827 +del ||| CDM ||| 0.0181818 0.126866 2.6679e-06 2.23e-05 2.718 ||| 0-0 ||| 55 374827 +del ||| COM ( 20021 ) 745 - C5-0159 ||| 1 1 2.6679e-06 1.09843e-32 2.718 ||| 0-2 ||| 1 374827 +del ||| COM ( 20021 ) 745 - ||| 1 1 2.6679e-06 2.74608e-26 2.718 ||| 0-2 ||| 1 374827 +del ||| COM ( 20021 ) 745 ||| 1 1 2.6679e-06 7.27997e-24 2.718 ||| 0-2 ||| 1 374827 +del ||| COM ( 20021 ) ||| 1 1 2.6679e-06 1.81999e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| COM ( 20021 ||| 1 1 2.6679e-06 1.26626e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| COM ( 96 ) 0086 ||| 0.5 0.0056759 2.6679e-06 7.89334e-24 2.718 ||| 0-3 ||| 2 374827 +del ||| COM ( 96 ) 0303 ||| 0.5 1 2.6679e-06 5.82397e-23 2.718 ||| 0-4 ||| 2 374827 +del ||| COM ( 96 ) ||| 0.0136986 0.0056759 2.6679e-06 1.97334e-17 2.718 ||| 0-3 ||| 73 374827 +del ||| COM ( 98 ) 0092 - C4-0134 ||| 1 1 2.6679e-06 2.08702e-31 2.718 ||| 0-6 ||| 1 374827 +del ||| CSS ) ||| 0.5 0.5 2.6679e-06 1.86849e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| CSS ||| 0.25 0.5 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 4 374827 +del ||| Cabinet ||| 0.0188679 0.109375 2.6679e-06 9.2e-06 2.718 ||| 0-0 ||| 53 374827 +del ||| Caesar the things which are ||| 0.333333 0.0732944 2.6679e-06 1.28786e-14 2.718 ||| 0-1 ||| 3 374827 +del ||| Caesar the things which ||| 0.5 0.0732944 2.6679e-06 8.48804e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| Caesar the things ||| 0.5 0.0732944 2.6679e-06 9.99228e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| Caesar the ||| 1 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| Caribbean ||| 0.00154321 0.163717 2.6679e-06 0.0001458 2.718 ||| 0-0 ||| 648 374827 +del ||| Carol by the ||| 1 0.0461582 2.6679e-06 6.94885e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| Carol by ||| 1 0.0461582 2.6679e-06 1.13189e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| Central Asian ||| 0.00518135 0.0043478 2.6679e-06 1.1819e-10 2.718 ||| 0-1 ||| 193 374827 +del ||| Central Bank on the ||| 0.125 0.0140673 2.6679e-06 3.71923e-13 2.718 ||| 0-2 ||| 8 374827 +del ||| Central Bank on ||| 0.0909091 0.0140673 2.6679e-06 6.05819e-12 2.718 ||| 0-2 ||| 11 374827 +del ||| Central European ||| 0.00420168 0.0068161 2.6679e-06 6.84788e-08 2.718 ||| 0-1 ||| 238 374827 +del ||| Central and Eastern European ||| 0.00187617 0.125 2.6679e-06 6.14601e-13 2.718 ||| 0-2 ||| 533 374827 +del ||| Central and Eastern ||| 0.000884173 0.125 2.6679e-06 1.83798e-10 2.718 ||| 0-2 ||| 1131 374827 +del ||| Central and ||| 0.000912409 0.0003669 2.6679e-06 3.25673e-08 2.718 ||| 0-0 ||| 1096 374827 +del ||| Central ||| 0.000396668 0.0003669 5.33579e-06 2.6e-06 2.718 ||| 0-0 ||| 5042 374827 +del ||| Chairman of the ||| 0.00465839 0.10196 8.00369e-06 5.94228e-07 2.718 ||| 0-1 0-2 ||| 644 374827 +del ||| Chief ||| 0.00892857 0.105769 2.6679e-06 2.89e-05 2.718 ||| 0-0 ||| 112 374827 +del ||| China raises the question of the ||| 1 0.10196 2.6679e-06 1.38222e-15 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| Christian registrar ||| 0.125 0.0714286 2.6679e-06 4.069e-11 2.718 ||| 0-1 ||| 8 374827 +del ||| Citizens ' ||| 0.00170358 0.0293692 2.6679e-06 1.43393e-07 2.718 ||| 0-1 ||| 587 374827 +del ||| Cohesion Fund ||| 0.00137552 0.0314359 2.6679e-06 7.533e-10 2.718 ||| 0-0 ||| 727 374827 +del ||| Cohesion ||| 0.000708215 0.0314359 2.6679e-06 4.86e-05 2.718 ||| 0-0 ||| 1412 374827 +del ||| Collins ||| 0.00378788 0.0235294 2.6679e-06 1.05e-05 2.718 ||| 0-0 ||| 264 374827 +del ||| Come in ||| 1 0.0183279 2.6679e-06 1.07866e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| Commission 's call for the ||| 1 0.0732944 2.6679e-06 6.59183e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| Commission 's position that the ||| 1 0.0732944 2.6679e-06 2.14007e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| Commission 's ||| 0.00390625 0.169811 1.60074e-05 2.34697e-05 2.718 ||| 0-1 ||| 1536 374827 +del ||| Commission and good dialogue with the ||| 1 0.0732944 2.6679e-06 3.30328e-16 2.718 ||| 0-5 ||| 1 374827 +del ||| Commission aware of the ||| 0.0833333 0.130625 2.6679e-06 1.46927e-09 2.718 ||| 0-2 ||| 12 374827 +del ||| Commission aware of ||| 0.0625 0.130625 2.6679e-06 2.39326e-08 2.718 ||| 0-2 ||| 16 374827 +del ||| Commission for the ||| 0.00347222 0.0435798 2.6679e-06 2.18253e-06 2.718 ||| 0-1 0-2 ||| 288 374827 +del ||| Commission ’ s statement , I wish ||| 0.5 0.106997 2.6679e-06 1.1506e-19 2.718 ||| 0-1 ||| 2 374827 +del ||| Commission ’ s statement , I ||| 0.5 0.106997 2.6679e-06 3.90432e-16 2.718 ||| 0-1 ||| 2 374827 +del ||| Commission ’ s statement , ||| 0.5 0.106997 2.6679e-06 5.51964e-14 2.718 ||| 0-1 ||| 2 374827 +del ||| Commission ’ s statement ||| 0.333333 0.106997 2.6679e-06 4.62845e-13 2.718 ||| 0-1 ||| 3 374827 +del ||| Commission ’ s ||| 0.00320513 0.106997 2.6679e-06 6.21268e-09 2.718 ||| 0-1 ||| 312 374827 +del ||| Commission ’ ||| 0.00170648 0.106997 2.6679e-06 3.26588e-06 2.718 ||| 0-1 ||| 586 374827 +del ||| Commissioner ' ||| 0.0196078 0.0293692 2.6679e-06 4.18782e-07 2.718 ||| 0-1 ||| 51 374827 +del ||| Committee of ||| 0.00162734 0.130625 5.33579e-06 4.50148e-05 2.718 ||| 0-1 ||| 1229 374827 +del ||| Committee on Legal Affairs and the Internal ||| 0.00214592 0.0732944 2.6679e-06 1.10852e-22 2.718 ||| 0-5 ||| 466 374827 +del ||| Committee on Legal Affairs and the ||| 0.00198413 0.0732944 2.6679e-06 4.00189e-18 2.718 ||| 0-5 ||| 504 374827 +del ||| Committee on ||| 8.0457e-05 0.0140673 5.33579e-06 1.49662e-06 2.718 ||| 0-1 ||| 24858 374827 +del ||| Common Security and Defence Policy ||| 0.00449438 0.0199221 5.33579e-06 1.36863e-19 2.718 ||| 0-1 ||| 445 374827 +del ||| Common Security and Defence ||| 0.0666667 0.0199221 5.33579e-06 1.41387e-15 2.718 ||| 0-1 ||| 30 374827 +del ||| Common Security and ||| 0.00484262 0.0199221 5.33579e-06 4.68169e-11 2.718 ||| 0-1 ||| 413 374827 +del ||| Common Security ||| 0.00492611 0.0199221 5.33579e-06 3.73761e-09 2.718 ||| 0-1 ||| 406 374827 +del ||| Community 's ||| 0.00340136 0.169811 2.6679e-06 6.50529e-06 2.718 ||| 0-1 ||| 294 374827 +del ||| Community and European ||| 0.333333 0.0068161 2.6679e-06 6.22741e-09 2.718 ||| 0-2 ||| 3 374827 +del ||| Community at international level in the context ||| 1 0.0183279 2.6679e-06 9.97212e-21 2.718 ||| 0-4 ||| 1 374827 +del ||| Community at international level in the ||| 1 0.0183279 2.6679e-06 7.43079e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| Community at international level in ||| 1 0.0183279 2.6679e-06 1.21039e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| Community ||| 9.03859e-05 0.0002094 8.00369e-06 7.9e-06 2.718 ||| 0-0 ||| 33191 374827 +del ||| Conclusions ||| 0.00724638 0.0070922 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 138 374827 +del ||| Conditions of Employment of ||| 0.0666667 0.130625 2.6679e-06 3.66917e-13 2.718 ||| 0-3 ||| 15 374827 +del ||| Conference of ||| 0.000560224 0.130625 2.6679e-06 5.51623e-06 2.718 ||| 0-1 ||| 1785 374827 +del ||| Conference on ||| 0.00900901 0.0140673 2.6679e-06 1.834e-07 2.718 ||| 0-1 ||| 111 374827 +del ||| Congress ||| 0.000990099 0.021 2.6679e-06 2.76e-05 2.718 ||| 0-0 ||| 1010 374827 +del ||| Conservative ||| 0.00291971 0.0249344 5.33579e-06 2.5e-05 2.718 ||| 0-0 ||| 685 374827 +del ||| Consumer Protection ||| 0.00188147 0.0024582 5.33579e-06 7.194e-10 2.718 ||| 0-1 ||| 1063 374827 +del ||| Consumer ||| 0.00311526 0.323294 8.00369e-06 0.0018047 2.718 ||| 0-0 ||| 963 374827 +del ||| Cooperation in ||| 0.00574713 0.0183279 2.6679e-06 4.74609e-07 2.718 ||| 0-1 ||| 174 374827 +del ||| Council ' ||| 0.00244499 0.0707819 2.6679e-06 3.25192e-05 2.718 ||| 0-0 ||| 409 374827 +del ||| Council 's ||| 0.00277008 0.169811 8.00369e-06 1.38946e-05 2.718 ||| 0-1 ||| 1083 374827 +del ||| Council , but as a result of ||| 1 0.130625 2.6679e-06 1.97979e-15 2.718 ||| 0-6 ||| 1 374827 +del ||| Council , ||| 0.000195293 0.0707819 5.33579e-06 0.00112902 2.718 ||| 0-0 ||| 10241 374827 +del ||| Council . ||| 0.000181258 0.0707819 2.6679e-06 2.86765e-05 2.718 ||| 0-0 ||| 5517 374827 +del ||| Council Directive 93 / 6 / EEC ||| 1 0.0707819 2.6679e-06 2.02133e-30 2.718 ||| 0-0 ||| 1 374827 +del ||| Council Directive 93 / 6 / ||| 1 0.0707819 2.6679e-06 2.8074e-25 2.718 ||| 0-0 ||| 1 374827 +del ||| Council Directive 93 / 6 ||| 1 0.0707819 2.6679e-06 1.22061e-21 2.718 ||| 0-0 ||| 1 374827 +del ||| Council Directive 93 / ||| 0.5 0.0707819 2.6679e-06 1.17366e-16 2.718 ||| 0-0 ||| 2 374827 +del ||| Council Directive 93 ||| 0.5 0.0707819 2.6679e-06 5.10287e-13 2.718 ||| 0-0 ||| 2 374827 +del ||| Council Directive ||| 0.00373134 0.0707819 2.6679e-06 7.28982e-07 2.718 ||| 0-0 ||| 268 374827 +del ||| Council Regulation ||| 0.00318471 0.0289405 2.6679e-06 8.03985e-08 2.718 ||| 0-1 ||| 314 374827 +del ||| Council and Commission ||| 0.000987167 0.0707819 2.6679e-06 6.92663e-08 2.718 ||| 0-0 ||| 1013 374827 +del ||| Council and the ||| 0.000235516 0.0732944 2.6679e-06 1.50438e-06 2.718 ||| 0-2 ||| 4246 374827 +del ||| Council and ||| 8.53606e-05 0.0707819 2.6679e-06 0.000118586 2.718 ||| 0-0 ||| 11715 374827 +del ||| Council common ||| 0.00395257 0.0707819 2.6679e-06 2.18695e-06 2.718 ||| 0-0 ||| 253 374827 +del ||| Council for the ||| 0.00763359 0.0526472 2.6679e-06 3.53752e-05 2.718 ||| 0-0 0-1 0-2 ||| 131 374827 +del ||| Council for ||| 0.00275482 0.0423236 5.33579e-06 0.000101853 2.718 ||| 0-0 0-1 ||| 726 374827 +del ||| Council from the ||| 0.166667 0.082213 2.6679e-06 2.60299e-06 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| Council has ||| 0.000443459 0.0707819 2.6679e-06 4.87329e-05 2.718 ||| 0-0 ||| 2255 374827 +del ||| Council is made ||| 1 0.0707819 2.6679e-06 6.2156e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| Council is ||| 0.000567537 0.0707819 2.6679e-06 0.000296716 2.718 ||| 0-0 ||| 1762 374827 +del ||| Council managed ||| 0.0909091 0.0707819 2.6679e-06 5.31116e-07 2.718 ||| 0-0 ||| 11 374827 +del ||| Council on ||| 0.003663 0.0707819 1.60074e-05 6.33457e-05 2.718 ||| 0-0 ||| 1638 374827 +del ||| Council takes ||| 0.0149254 0.0707819 2.6679e-06 1.22318e-06 2.718 ||| 0-0 ||| 67 374827 +del ||| Council to be a zero entry , ||| 0.5 0.0707819 2.6679e-06 3.70716e-18 2.718 ||| 0-0 ||| 2 374827 +del ||| Council to be a zero entry ||| 0.5 0.0707819 2.6679e-06 3.10861e-17 2.718 ||| 0-0 ||| 2 374827 +del ||| Council to be a zero ||| 0.5 0.0707819 2.6679e-06 1.68946e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| Council to be a ||| 0.142857 0.0707819 2.6679e-06 6.75784e-07 2.718 ||| 0-0 ||| 7 374827 +del ||| Council to be ||| 0.0126582 0.0707819 2.6679e-06 1.52458e-05 2.718 ||| 0-0 ||| 79 374827 +del ||| Council to provide ||| 0.0526316 0.0707819 2.6679e-06 2.48841e-07 2.718 ||| 0-0 ||| 19 374827 +del ||| Council to ||| 0.000713521 0.0707819 5.33579e-06 0.000841247 2.718 ||| 0-0 ||| 2803 374827 +del ||| Council ||| 0.000584878 0.0707819 0.00016541 0.0094673 2.718 ||| 0-0 ||| 106005 374827 +del ||| Court 's ||| 0.016129 0.169811 2.6679e-06 1.88047e-06 2.718 ||| 0-1 ||| 62 374827 +del ||| Court of ||| 0.000313578 0.130625 5.33579e-06 1.38053e-05 2.718 ||| 0-1 ||| 6378 374827 +del ||| Criminal Law ||| 0.0909091 0.0130039 2.6679e-06 9.956e-11 2.718 ||| 0-1 ||| 11 374827 +del ||| Crémant de ||| 0.5 0.111111 2.6679e-06 4.446e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| Crémant ||| 0.25 0.111111 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 4 374827 +del ||| Day ||| 0.00105597 0.0248307 2.6679e-06 4.33e-05 2.718 ||| 0-0 ||| 947 374827 +del ||| December 2000 - ||| 0.333333 0.0152245 2.6679e-06 2.25421e-11 2.718 ||| 0-0 ||| 3 374827 +del ||| December 2000 ||| 0.00540541 0.0152245 2.6679e-06 5.976e-09 2.718 ||| 0-0 ||| 185 374827 +del ||| December ||| 0.000231481 0.0152245 5.33579e-06 0.0002075 2.718 ||| 0-0 ||| 8640 374827 +del ||| Decision ||| 0.0218978 0.184748 4.00185e-05 0.0003087 2.718 ||| 0-0 ||| 685 374827 +del ||| Del ||| 0.0555556 0.0666667 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 18 374827 +del ||| Democratic People 's ||| 0.0344828 0.169811 2.6679e-06 4.67007e-11 2.718 ||| 0-2 ||| 29 374827 +del ||| Democratic ||| 0.00330396 0.0111972 8.00369e-06 1.71e-05 2.718 ||| 0-0 ||| 908 374827 +del ||| Democrats and of the ||| 0.333333 0.10196 2.6679e-06 1.36673e-07 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| Democrats and the Group of the ||| 0.0909091 0.0732944 2.6679e-06 5.03024e-13 2.718 ||| 0-2 ||| 11 374827 +del ||| Democrats and the Group of ||| 0.0909091 0.0732944 2.6679e-06 8.19367e-12 2.718 ||| 0-2 ||| 11 374827 +del ||| Democrats and the Group ||| 0.0833333 0.0732944 2.6679e-06 1.50719e-10 2.718 ||| 0-2 ||| 12 374827 +del ||| Democrats and the ||| 0.0217391 0.0732944 2.6679e-06 4.63322e-07 2.718 ||| 0-2 ||| 46 374827 +del ||| Democrats in the ||| 0.00796813 0.0183279 5.33579e-06 1.76312e-07 2.718 ||| 0-1 ||| 251 374827 +del ||| Democrats in ||| 0.00682594 0.0183279 5.33579e-06 2.87192e-06 2.718 ||| 0-1 ||| 293 374827 +del ||| Desert ||| 0.125 0.125 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 8 374827 +del ||| Development ' s ||| 0.5 0.0987045 2.6679e-06 2.18336e-09 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| Development and Energy , the ||| 1 0.0732944 2.6679e-06 5.42064e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| Development ||| 0.000499417 0.001574 8.00369e-06 1.58e-05 2.718 ||| 0-0 ||| 6007 374827 +del ||| Dutch Labour Party ||| 0.0384615 0.207385 2.6679e-06 1.34802e-12 2.718 ||| 0-1 ||| 26 374827 +del ||| Dutch Labour ||| 0.0434783 0.207385 2.6679e-06 8.9391e-09 2.718 ||| 0-1 ||| 23 374827 +del ||| EAGGF ||| 0.00787402 0.221344 2.6679e-06 7.36e-05 2.718 ||| 0-0 ||| 127 374827 +del ||| EC ) ||| 0.00115207 0.0068643 2.6679e-06 4.1538e-08 2.718 ||| 0-0 ||| 868 374827 +del ||| EC and ||| 0.00617284 0.0068643 2.6679e-06 3.61999e-07 2.718 ||| 0-0 ||| 162 374827 +del ||| EC of ||| 0.04 0.130625 2.6679e-06 5.51623e-06 2.718 ||| 0-1 ||| 25 374827 +del ||| EC ||| 0.00290276 0.0068643 2.6679e-05 2.89e-05 2.718 ||| 0-0 ||| 3445 374827 +del ||| ECB ||| 0.00056243 0.071028 2.6679e-06 0.0001996 2.718 ||| 0-0 ||| 1778 374827 +del ||| EDF ||| 0.00340715 0.113182 5.33579e-06 0.0001116 2.718 ||| 0-0 ||| 587 374827 +del ||| EIB ||| 0.00157356 0.108681 5.33579e-06 0.0002088 2.718 ||| 0-0 ||| 1271 374827 +del ||| ELDR ||| 0.00784929 0.0803419 1.33395e-05 6.17e-05 2.718 ||| 0-0 ||| 637 374827 +del ||| EP 's ||| 0.0714286 0.169811 2.6679e-06 2.00904e-07 2.718 ||| 0-1 ||| 14 374827 +del ||| EP ) ||| 0.5 0.17619 2.6679e-06 3.49264e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| EP ||| 0.00559701 0.17619 8.00369e-06 0.000243 2.718 ||| 0-0 ||| 536 374827 +del ||| EPP shadow ||| 0.333333 0.229452 2.6679e-06 2.4112e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| EPP ||| 0.00566572 0.229452 5.33579e-06 0.000176 2.718 ||| 0-0 ||| 353 374827 +del ||| EU 's ||| 0.00204186 0.169811 1.06716e-05 1.98815e-05 2.718 ||| 0-1 ||| 1959 374827 +del ||| EU , as for example when the ||| 0.333333 0.0732944 2.6679e-06 2.33898e-16 2.718 ||| 0-6 ||| 3 374827 +del ||| EU by a so-called strategic partnership ||| 1 0.0461582 2.6679e-06 2.69305e-21 2.718 ||| 0-1 ||| 1 374827 +del ||| EU by a so-called strategic ||| 1 0.0461582 2.6679e-06 1.24678e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| EU by a so-called ||| 1 0.0461582 2.6679e-06 1.32636e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| EU by a ||| 0.333333 0.0461582 2.6679e-06 3.54643e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| EU by ||| 0.01 0.0461582 2.6679e-06 8.00082e-06 2.718 ||| 0-1 ||| 100 374827 +del ||| EU ’ s ||| 0.00663717 0.106997 8.00369e-06 5.26286e-09 2.718 ||| 0-1 ||| 452 374827 +del ||| EU ’ ||| 0.000951475 0.106997 2.6679e-06 2.76658e-06 2.718 ||| 0-1 ||| 1051 374827 +del ||| East ||| 0.000938438 0.0024659 1.33395e-05 1.97e-05 2.718 ||| 0-0 ||| 5328 374827 +del ||| Eastern Europe , ||| 0.00480769 0.125 2.6679e-06 3.97056e-08 2.718 ||| 0-0 ||| 208 374827 +del ||| Eastern Europe ||| 0.00111857 0.125 2.6679e-06 3.32948e-07 2.718 ||| 0-0 ||| 894 374827 +del ||| Eastern European ||| 0.00265252 0.125 2.6679e-06 2.20029e-06 2.718 ||| 0-0 ||| 377 374827 +del ||| Eastern ||| 0.00545396 0.125 4.53543e-05 0.000658 2.718 ||| 0-0 ||| 3117 374827 +del ||| Ecofin ||| 0.00121212 0.0889595 2.6679e-06 0.0001471 2.718 ||| 0-0 ||| 825 374827 +del ||| Education and the ||| 0.0277778 0.0732944 2.6679e-06 1.30078e-07 2.718 ||| 0-2 ||| 36 374827 +del ||| Education in ||| 0.0769231 0.0183279 2.6679e-06 8.06295e-07 2.718 ||| 0-1 ||| 13 374827 +del ||| Egypt , Lebanon , ||| 0.333333 0.0553445 2.6679e-06 1.23871e-11 2.718 ||| 0-2 ||| 3 374827 +del ||| Egypt , Lebanon ||| 0.166667 0.0553445 2.6679e-06 1.03871e-10 2.718 ||| 0-2 ||| 6 374827 +del ||| El ) The might of ||| 0.333333 0.130625 2.6679e-06 1.2748e-16 2.718 ||| 0-4 ||| 3 374827 +del ||| El ) This is the ||| 0.333333 0.0732944 2.6679e-06 2.33742e-15 2.718 ||| 0-4 ||| 3 374827 +del ||| Eldoret , in the ||| 1 0.0732944 2.6679e-06 3.54622e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| Elles ||| 0.00347222 0.0124611 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 288 374827 +del ||| Emperor 's ||| 0.25 0.169811 2.6679e-06 1.60724e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| Employment of ||| 0.125 0.130625 2.6679e-06 3.06785e-06 2.718 ||| 0-1 ||| 8 374827 +del ||| Energy , the ||| 0.0625 0.0732944 2.6679e-06 9.85773e-07 2.718 ||| 0-2 ||| 16 374827 +del ||| Energy ||| 0.00138504 0.0032374 1.06716e-05 1.18e-05 2.718 ||| 0-0 ||| 2888 374827 +del ||| Enterprise Guarantee ||| 0.2 0.0333333 2.6679e-06 4.72e-12 2.718 ||| 0-1 ||| 5 374827 +del ||| Environment of the ||| 1 0.10196 2.6679e-06 2.02857e-06 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| Environmental Matters ||| 0.0666667 0.0794913 2.6679e-06 9.198e-11 2.718 ||| 0-0 ||| 15 374827 +del ||| Environmental ||| 0.0116618 0.0794913 1.06716e-05 6.57e-05 2.718 ||| 0-0 ||| 343 374827 +del ||| Ernst ||| 0.047619 0.0263158 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 21 374827 +del ||| Europartenariat ||| 0.166667 0.4 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 6 374827 +del ||| Europe 's homes ||| 0.111111 0.169811 2.6679e-06 2.05349e-10 2.718 ||| 0-1 ||| 9 374827 +del ||| Europe 's ||| 0.0011383 0.169811 5.33579e-06 2.03315e-05 2.718 ||| 0-1 ||| 1757 374827 +del ||| Europe of ||| 0.00111441 0.130625 8.00369e-06 0.000149263 2.718 ||| 0-1 ||| 2692 374827 +del ||| Europe the ||| 0.00446429 0.0732944 2.6679e-06 0.000175742 2.718 ||| 0-1 ||| 224 374827 +del ||| European Central Bank on the ||| 0.1 0.0140673 2.6679e-06 1.24367e-15 2.718 ||| 0-3 ||| 10 374827 +del ||| European Central Bank on ||| 0.0588235 0.0140673 2.6679e-06 2.0258e-14 2.718 ||| 0-3 ||| 17 374827 +del ||| European Central ||| 0.000482393 0.0068161 2.6679e-06 6.84788e-08 2.718 ||| 0-0 ||| 2073 374827 +del ||| European Commission 's call for the ||| 1 0.0732944 2.6679e-06 2.20424e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| European Community ||| 0.000366569 0.0068161 2.6679e-06 4.97163e-07 2.718 ||| 0-0 ||| 2728 374827 +del ||| European Council ||| 0.00018018 0.0707819 5.33579e-06 3.16577e-05 2.718 ||| 0-1 ||| 11100 374827 +del ||| European Democrats and of the ||| 0.166667 0.10196 2.6679e-06 4.57022e-10 2.718 ||| 0-3 0-4 ||| 6 374827 +del ||| European Democrats and the Group of the ||| 0.0625 0.0732944 2.6679e-06 1.68206e-15 2.718 ||| 0-3 ||| 16 374827 +del ||| European Democrats and the Group of ||| 0.0769231 0.0732944 2.6679e-06 2.73988e-14 2.718 ||| 0-3 ||| 13 374827 +del ||| European Democrats and the Group ||| 0.030303 0.0732944 2.6679e-06 5.03988e-13 2.718 ||| 0-3 ||| 33 374827 +del ||| European Democrats and the ||| 0.0117647 0.0732944 2.6679e-06 1.5493e-09 2.718 ||| 0-3 ||| 85 374827 +del ||| European Labour ||| 0.2 0.207385 2.6679e-06 1.80069e-06 2.718 ||| 0-1 ||| 5 374827 +del ||| European Ombudsman 's ||| 0.0181818 0.169811 2.6679e-06 2.17665e-09 2.718 ||| 0-2 ||| 55 374827 +del ||| European Parliament , Council and Commission ||| 1 0.0707819 2.6679e-06 1.58549e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| European Parliament , Council and ||| 0.0222222 0.0707819 2.6679e-06 2.71441e-11 2.718 ||| 0-3 ||| 45 374827 +del ||| European Parliament , Council ||| 0.0294118 0.0707819 2.6679e-06 2.16704e-09 2.718 ||| 0-3 ||| 34 374827 +del ||| European Parliament delegation to the Conciliation Committee ||| 0.5 0.0732944 2.6679e-06 3.77487e-22 2.718 ||| 0-4 ||| 2 374827 +del ||| European Parliament delegation to the Conciliation ||| 0.5 0.0732944 2.6679e-06 2.4737e-18 2.718 ||| 0-4 ||| 2 374827 +del ||| European Parliament delegation to the ||| 0.0344828 0.0732944 2.6679e-06 8.53001e-13 2.718 ||| 0-4 ||| 29 374827 +del ||| European Parliament delegation ||| 0.00617284 0.0181517 2.6679e-06 2.21042e-10 2.718 ||| 0-1 ||| 162 374827 +del ||| European Parliament part ||| 0.5 0.0181517 2.6679e-06 1.83005e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| European Parliament ||| 9.72857e-05 0.0181517 1.06716e-05 1.53502e-05 2.718 ||| 0-1 ||| 41116 374827 +del ||| European Sky ||| 0.333333 0.0417755 2.6679e-06 7.02219e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| European Union ' s ||| 0.00310559 0.16804 2.6679e-06 6.70619e-11 2.718 ||| 0-3 ||| 322 374827 +del ||| European Union 's ||| 0.000921659 0.169811 2.6679e-06 7.48928e-08 2.718 ||| 0-2 ||| 1085 374827 +del ||| European Union . ||| 7.10126e-05 0.0068161 2.6679e-06 5.18463e-09 2.718 ||| 0-0 ||| 14082 374827 +del ||| European Union of ||| 0.0030581 0.130625 2.6679e-06 5.4982e-07 2.718 ||| 0-2 ||| 327 374827 +del ||| European Union ||| 3.88383e-05 0.0068161 1.06716e-05 1.71166e-06 2.718 ||| 0-0 ||| 102991 374827 +del ||| European institution , the Council ||| 0.333333 0.0732944 2.6679e-06 1.3075e-12 2.718 ||| 0-3 ||| 3 374827 +del ||| European institution , the ||| 0.166667 0.0732944 2.6679e-06 3.78108e-09 2.718 ||| 0-3 ||| 6 374827 +del ||| European one ||| 0.016129 0.0068161 2.6679e-06 1.27991e-05 2.718 ||| 0-0 ||| 62 374827 +del ||| European ||| 0.00866601 0.0068161 0.00395382 0.0030708 2.718 ||| 0-0 ||| 171013 374827 +del ||| Executive of the ||| 1 0.10196 2.6679e-06 8.81097e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| Executive ||| 0.0258303 0.0673077 1.86753e-05 5.52e-05 2.718 ||| 0-0 ||| 271 374827 +del ||| Exercise ||| 1 1 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| Experimental Reactor ||| 0.4 0.111111 5.33579e-06 3.64e-12 2.718 ||| 0-0 ||| 5 374827 +del ||| Experimental ||| 0.333333 0.111111 5.33579e-06 2.6e-06 2.718 ||| 0-0 ||| 6 374827 +del ||| Fassa ||| 0.025641 0.0847458 2.6679e-06 6.6e-06 2.718 ||| 0-0 ||| 39 374827 +del ||| Finland , with a view to the ||| 1 0.0732944 2.6679e-06 4.05192e-15 2.718 ||| 0-6 ||| 1 374827 +del ||| Fisheries ||| 0.000327118 0.0012771 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 3057 374827 +del ||| Flemish People ' s Union ||| 1 0.0987045 2.6679e-06 2.92913e-18 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| Flemish People ' s ||| 1 0.0987045 2.6679e-06 5.25499e-15 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| Force ||| 0.0121212 0.0108108 5.33579e-06 5.3e-06 2.718 ||| 0-0 ||| 165 374827 +del ||| Forum of ||| 0.0714286 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-1 ||| 14 374827 +del ||| Forum ||| 0.00235849 0.0268886 5.33579e-06 2.76e-05 2.718 ||| 0-0 ||| 848 374827 +del ||| Four of the ||| 0.25 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| France 's ||| 0.0416667 0.169811 2.6679e-06 9.24161e-07 2.718 ||| 0-1 ||| 24 374827 +del ||| French version of the ||| 0.166667 0.10196 2.6679e-06 1.42158e-10 2.718 ||| 0-2 0-3 ||| 6 374827 +del ||| Friday ' s ||| 1 0.0987045 2.6679e-06 1.59152e-10 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| Friday ||| 0.00734619 0.0601983 2.13432e-05 0.0001116 2.718 ||| 0-0 ||| 1089 374827 +del ||| Fund ||| 0.000732601 0.0214765 1.06716e-05 0.0002732 2.718 ||| 0-0 ||| 5460 374827 +del ||| Funds and the Cohesion ||| 1 0.0732944 2.6679e-06 2.27789e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| Funds and the ||| 0.125 0.0732944 2.6679e-06 1.62707e-07 2.718 ||| 0-2 ||| 8 374827 +del ||| G20 ||| 0.00552486 0.326183 1.33395e-05 0.0005792 2.718 ||| 0-0 ||| 905 374827 +del ||| G8 ||| 0.00329489 0.349948 5.33579e-06 0.0004426 2.718 ||| 0-0 ||| 607 374827 +del ||| GATT agreements , ||| 0.142857 0.30192 2.6679e-06 1.00521e-09 2.718 ||| 0-0 ||| 7 374827 +del ||| GATT agreements ||| 0.0344828 0.30192 2.6679e-06 8.42912e-09 2.718 ||| 0-0 ||| 29 374827 +del ||| GATT ||| 0.00352113 0.30192 2.6679e-06 0.0002272 2.718 ||| 0-0 ||| 284 374827 +del ||| GDP , ||| 0.00423729 0.0497941 2.6679e-06 2.08338e-05 2.718 ||| 0-0 ||| 236 374827 +del ||| GDP ||| 0.000455996 0.0497941 2.6679e-06 0.0001747 2.718 ||| 0-0 ||| 2193 374827 +del ||| GNP ||| 0.00229358 0.0339559 2.6679e-06 2.63e-05 2.718 ||| 0-0 ||| 436 374827 +del ||| GNSS ( ||| 0.166667 0.17284 2.6679e-06 3.54899e-08 2.718 ||| 0-0 ||| 6 374827 +del ||| GNSS ||| 0.00943396 0.17284 2.6679e-06 3.68e-05 2.718 ||| 0-0 ||| 106 374827 +del ||| GSP + ||| 0.00609756 0.114734 2.6679e-06 3.12e-10 2.718 ||| 0-0 ||| 164 374827 +del ||| GSP ||| 0.00380228 0.114734 5.33579e-06 0.0001248 2.718 ||| 0-0 ||| 526 374827 +del ||| Gallery and with them is the winner ||| 1 0.0732944 2.6679e-06 1.83355e-20 2.718 ||| 0-5 ||| 1 374827 +del ||| Gallery and with them is the ||| 1 0.0732944 2.6679e-06 1.6371e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| German Presidency ||| 0.0012285 0.0016546 2.6679e-06 5.2185e-10 2.718 ||| 0-0 ||| 814 374827 +del ||| German ||| 0.000904486 0.0016546 1.33395e-05 1.05e-05 2.718 ||| 0-0 ||| 5528 374827 +del ||| Germany 's ||| 0.09375 0.169811 8.00369e-06 1.04069e-06 2.718 ||| 0-1 ||| 32 374827 +del ||| Germany ’ s ||| 0.117647 0.137519 5.33579e-06 1.51689e-09 2.718 ||| 0-1 0-2 ||| 17 374827 +del ||| Global ||| 0.00178253 0.0036563 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 561 374827 +del ||| Goal ||| 0.0392157 0.325926 5.33579e-06 5.78e-05 2.718 ||| 0-0 ||| 51 374827 +del ||| Goals ||| 0.00747198 0.488251 1.60074e-05 0.0009825 2.718 ||| 0-0 ||| 803 374827 +del ||| Governing ||| 0.0203046 0.110825 1.06716e-05 5.65e-05 2.718 ||| 0-0 ||| 197 374827 +del ||| Government 's ||| 0.00320513 0.169811 2.6679e-06 1.93672e-06 2.718 ||| 0-1 ||| 312 374827 +del ||| Government of the ||| 0.004 0.10196 2.6679e-06 4.93824e-06 2.718 ||| 0-1 0-2 ||| 250 374827 +del ||| Government ||| 6.38692e-05 0.0002343 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 15657 374827 +del ||| Governments ||| 0.00522193 0.0144578 5.33579e-06 7.9e-06 2.718 ||| 0-0 ||| 383 374827 +del ||| Graefe ||| 0.00323625 0.0029762 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 309 374827 +del ||| Green , ||| 0.0114943 0.0023128 2.6679e-06 2.03926e-06 2.718 ||| 0-0 ||| 87 374827 +del ||| Green ||| 0.00258799 0.0023128 1.33395e-05 1.71e-05 2.718 ||| 0-0 ||| 1932 374827 +del ||| Group , of the ||| 1 0.10196 2.6679e-06 3.97452e-06 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| Group here in the ||| 0.5 0.0458111 2.6679e-06 6.17813e-09 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| Group of the ||| 0.000686106 0.130625 5.33579e-06 5.89108e-06 2.718 ||| 0-1 ||| 2915 374827 +del ||| Group of ||| 0.000502765 0.130625 5.33579e-06 9.59588e-05 2.718 ||| 0-1 ||| 3978 374827 +del ||| Guarantee ||| 0.00448431 0.0333333 2.6679e-06 1.18e-05 2.718 ||| 0-0 ||| 223 374827 +del ||| H5N1 ||| 0.0625 0.0555556 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 16 374827 +del ||| HADEP ||| 0.0181818 0.145454 2.6679e-06 2.1e-05 2.718 ||| 0-0 ||| 55 374827 +del ||| Health and Consumer Protection ||| 0.00404858 0.0024582 5.33579e-06 9.59686e-16 2.718 ||| 0-3 ||| 494 374827 +del ||| Heights ||| 0.121212 0.457143 1.06716e-05 4.2e-05 2.718 ||| 0-0 ||| 33 374827 +del ||| Hoc ||| 0.0909091 0.0384615 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 11 374827 +del ||| Hospital ||| 0.0243902 0.0714286 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 41 374827 +del ||| House of Cards is up to them ||| 0.5 0.130625 2.6679e-06 1.31573e-18 2.718 ||| 0-1 ||| 2 374827 +del ||| House of Cards is up to ||| 0.5 0.130625 2.6679e-06 4.90504e-16 2.718 ||| 0-1 ||| 2 374827 +del ||| House of Cards is up ||| 0.5 0.130625 2.6679e-06 5.52007e-15 2.718 ||| 0-1 ||| 2 374827 +del ||| House of Cards is ||| 0.5 0.130625 2.6679e-06 1.61855e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| House of Cards ||| 0.5 0.130625 2.6679e-06 5.16431e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| House of ||| 0.00190476 0.130625 2.6679e-06 7.37759e-05 2.718 ||| 0-1 ||| 525 374827 +del ||| House the ||| 0.00793651 0.0732944 2.6679e-06 8.68637e-05 2.718 ||| 0-1 ||| 126 374827 +del ||| House welcome the ||| 0.25 0.0732944 2.6679e-06 9.56369e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| Human Rights , Common Security and Defence ||| 0.0714286 0.0199221 5.33579e-06 5.65467e-25 2.718 ||| 0-4 ||| 28 374827 +del ||| Human Rights , Common Security and ||| 0.00552486 0.0199221 5.33579e-06 1.87241e-20 2.718 ||| 0-4 ||| 362 374827 +del ||| Human Rights , Common Security ||| 0.00555556 0.0199221 5.33579e-06 1.49483e-18 2.718 ||| 0-4 ||| 360 374827 +del ||| Human Rights Council ||| 0.00167785 0.0707819 2.6679e-06 3.17503e-11 2.718 ||| 0-2 ||| 596 374827 +del ||| Hungarian Parliamentary ||| 1 0.0745687 2.6679e-06 1.1968e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| Hungary has promulgated the ||| 1 0.0732944 2.6679e-06 2.28839e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| Hänsch ||| 0.0052356 0.030303 2.6679e-06 1.05e-05 2.718 ||| 0-0 ||| 191 374827 +del ||| I also applaud the timing ||| 0.0833333 0.0732944 2.6679e-06 1.36434e-16 2.718 ||| 0-3 ||| 12 374827 +del ||| I also applaud the ||| 0.0416667 0.0732944 2.6679e-06 2.72868e-11 2.718 ||| 0-3 ||| 24 374827 +del ||| I also concur with the Commission ' ||| 1 0.0732944 2.6679e-06 4.61462e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| I also concur with the Commission ||| 1 0.0732944 2.6679e-06 1.34345e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| I also concur with the ||| 0.2 0.0732944 2.6679e-06 2.30004e-13 2.718 ||| 0-4 ||| 5 374827 +del ||| I am in favour of the ||| 0.00584795 0.10196 2.6679e-06 6.41062e-12 2.718 ||| 0-4 0-5 ||| 171 374827 +del ||| I am of the ||| 0.0142857 0.130625 5.33579e-06 1.63646e-07 2.718 ||| 0-2 ||| 140 374827 +del ||| I am of ||| 0.00529101 0.130625 2.6679e-06 2.66561e-06 2.718 ||| 0-2 ||| 189 374827 +del ||| I believe , in fact I am ||| 0.5 0.0183279 2.6679e-06 1.87444e-16 2.718 ||| 0-3 ||| 2 374827 +del ||| I believe , in fact I ||| 1 0.0183279 2.6679e-06 1.46727e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| I believe , in fact ||| 0.0769231 0.0183279 2.6679e-06 2.07432e-11 2.718 ||| 0-3 ||| 13 374827 +del ||| I believe , in ||| 0.0238095 0.0183279 2.6679e-06 7.08128e-09 2.718 ||| 0-3 ||| 42 374827 +del ||| I call upon ||| 0.00316456 0.0034407 2.6679e-06 8.04002e-11 2.718 ||| 0-2 ||| 316 374827 +del ||| I certainly got a lot of fun ||| 1 0.130625 2.6679e-06 1.3099e-21 2.718 ||| 0-5 ||| 1 374827 +del ||| I certainly got a lot of ||| 1 0.130625 2.6679e-06 3.27476e-16 2.718 ||| 0-5 ||| 1 374827 +del ||| I commend the Council 's ||| 1 0.0732944 2.6679e-06 9.38361e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| I commend the Council ||| 1 0.0732944 2.6679e-06 4.92733e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| I commend the ||| 0.00719424 0.0732944 2.6679e-06 1.42491e-08 2.718 ||| 0-2 ||| 139 374827 +del ||| I gave the ||| 0.04 0.0732944 2.6679e-06 2.05138e-07 2.718 ||| 0-2 ||| 25 374827 +del ||| I had expected the ||| 0.333333 0.0732944 2.6679e-06 1.31429e-10 2.718 ||| 0-3 ||| 3 374827 +del ||| I have a seat in the ||| 1 0.0732944 2.6679e-06 4.51606e-13 2.718 ||| 0-5 ||| 1 374827 +del ||| I have in ||| 0.00571429 0.0183279 2.6679e-06 2.28129e-06 2.718 ||| 0-2 ||| 175 374827 +del ||| I have received from the ||| 0.05 0.082213 2.6679e-06 5.70576e-11 2.718 ||| 0-3 0-4 ||| 20 374827 +del ||| I quote from ||| 0.047619 0.0911315 2.6679e-06 6.83742e-09 2.718 ||| 0-2 ||| 21 374827 +del ||| I received from the ||| 0.0833333 0.082213 2.6679e-06 4.77079e-09 2.718 ||| 0-2 0-3 ||| 12 374827 +del ||| I received is from the ||| 1 0.082213 2.6679e-06 1.49522e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| I saw in ||| 0.0833333 0.0183279 2.6679e-06 1.0224e-08 2.718 ||| 0-2 ||| 12 374827 +del ||| I see taking place in the ||| 1 0.0458111 2.6679e-06 2.98573e-14 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| I sit on the ||| 0.166667 0.0436809 2.6679e-06 9.10771e-10 2.718 ||| 0-2 0-3 ||| 6 374827 +del ||| I support the ||| 0.000566893 0.0732944 2.6679e-06 8.39959e-07 2.718 ||| 0-2 ||| 1764 374827 +del ||| I take it from the draft ||| 1 0.082213 2.6679e-06 8.00345e-14 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| I take it from the ||| 1 0.082213 2.6679e-06 1.52447e-09 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| I take the ||| 0.00549451 0.0732944 2.6679e-06 3.95535e-06 2.718 ||| 0-2 ||| 182 374827 +del ||| I want the Commissioner ||| 0.25 0.0732944 2.6679e-06 1.013e-10 2.718 ||| 0-2 ||| 4 374827 +del ||| I want the ||| 0.0126582 0.0732944 2.6679e-06 1.14853e-06 2.718 ||| 0-2 ||| 79 374827 +del ||| I was going to deliver ||| 0.333333 0.0006066 2.6679e-06 9.36172e-16 2.718 ||| 0-3 ||| 3 374827 +del ||| I was going to ||| 0.0149254 0.0006066 2.6679e-06 2.52338e-11 2.718 ||| 0-3 ||| 67 374827 +del ||| I would ask the ||| 0.00152207 0.0732944 2.6679e-06 1.98246e-09 2.718 ||| 0-3 ||| 657 374827 +del ||| I would like to highlight . the ||| 1 0.0732944 2.6679e-06 1.28872e-16 2.718 ||| 0-6 ||| 1 374827 +del ||| IAEA ||| 0.00485437 0.184931 2.6679e-06 7.09e-05 2.718 ||| 0-0 ||| 206 374827 +del ||| II ||| 0.000779727 0.0022953 5.33579e-06 7.9e-06 2.718 ||| 0-0 ||| 2565 374827 +del ||| III of the ||| 0.0333333 0.10196 2.6679e-06 2.25397e-07 2.718 ||| 0-1 0-2 ||| 30 374827 +del ||| ILO 's ||| 0.0769231 0.169811 2.6679e-06 8.8398e-08 2.718 ||| 0-1 ||| 13 374827 +del ||| IMF ||| 0.00112613 0.105461 2.6679e-06 0.0001471 2.718 ||| 0-0 ||| 888 374827 +del ||| IPE ) ||| 1 0.0056759 2.6679e-06 2.5324e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| Implementation ||| 0.00917431 0.0666667 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 109 374827 +del ||| India , Taiwan and South Africa ||| 1 0.189467 2.6679e-06 2.09179e-21 2.718 ||| 0-4 ||| 1 374827 +del ||| India , Taiwan and South ||| 0.25 0.189467 2.6679e-06 6.11633e-17 2.718 ||| 0-4 ||| 4 374827 +del ||| Indian ||| 0.010355 0.0182648 1.86753e-05 1.58e-05 2.718 ||| 0-0 ||| 676 374827 +del ||| Influenza ||| 0.5 0.2 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| Institute of ||| 0.04 0.130625 2.6679e-06 1.26844e-06 2.718 ||| 0-1 ||| 25 374827 +del ||| Instrument ||| 0.00207469 0.0153846 2.6679e-06 9.2e-06 2.718 ||| 0-0 ||| 482 374827 +del ||| Intergroup ||| 0.00990099 0.0201342 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 101 374827 +del ||| Interior ||| 0.00408163 0.160714 2.6679e-06 5.91e-05 2.718 ||| 0-0 ||| 245 374827 +del ||| International Labour ||| 0.00346021 0.207385 2.6679e-06 1.68551e-08 2.718 ||| 0-1 ||| 289 374827 +del ||| International ||| 0.000710606 0.0011579 1.06716e-05 7.9e-06 2.718 ||| 0-0 ||| 5629 374827 +del ||| Iraqi ||| 0.000789889 0.0052219 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 1266 374827 +del ||| Israel ' s ||| 0.166667 0.0293692 2.6679e-06 2.14969e-10 2.718 ||| 0-1 ||| 6 374827 +del ||| Israel ' ||| 0.0222222 0.0293692 2.6679e-06 1.13005e-07 2.718 ||| 0-1 ||| 45 374827 +del ||| Jacmel - and we followed ||| 0.333333 1 2.6679e-06 4.99266e-17 2.718 ||| 0-0 ||| 3 374827 +del ||| Jacmel - and we ||| 0.333333 1 2.6679e-06 6.97299e-13 2.718 ||| 0-0 ||| 3 374827 +del ||| Jacmel - and ||| 0.333333 1 2.6679e-06 6.14236e-11 2.718 ||| 0-0 ||| 3 374827 +del ||| Jacmel - ||| 0.333333 1 2.6679e-06 4.90373e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| Jacmel ||| 0.333333 1 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 3 374827 +del ||| January 2003 , ||| 0.0277778 0.0319508 2.6679e-06 6.82697e-10 2.718 ||| 0-0 ||| 36 374827 +del ||| January 2003 ||| 0.00934579 0.0319508 2.6679e-06 5.7247e-09 2.718 ||| 0-0 ||| 107 374827 +del ||| January of ||| 0.00970874 0.130625 2.6679e-06 2.0059e-06 2.718 ||| 0-1 ||| 103 374827 +del ||| January ||| 0.000918906 0.0319508 1.06716e-05 0.0004978 2.718 ||| 0-0 ||| 4353 374827 +del ||| K ||| 0.0163934 0.0140845 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 61 374827 +del ||| KLA ||| 0.00740741 0.104712 2.6679e-06 2.63e-05 2.718 ||| 0-0 ||| 135 374827 +del ||| Khrushchev 's ||| 1 0.169811 2.6679e-06 1.60724e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| Kinnock , ||| 0.00518135 0.0021231 2.6679e-06 3.10062e-07 2.718 ||| 0-0 ||| 193 374827 +del ||| Kinnock ||| 0.00110619 0.0021231 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 904 374827 +del ||| Kok report , the report of the ||| 1 0.0732944 2.6679e-06 9.29047e-18 2.718 ||| 0-3 ||| 1 374827 +del ||| Kok report , the report of ||| 1 0.0732944 2.6679e-06 1.51331e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| Kok report , the report ||| 1 0.0732944 2.6679e-06 2.78366e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| Kok report , the ||| 0.333333 0.0732944 2.6679e-06 6.79107e-12 2.718 ||| 0-3 ||| 3 374827 +del ||| Kosovo ' ||| 0.047619 0.0293692 2.6679e-06 1.16328e-07 2.718 ||| 0-1 ||| 21 374827 +del ||| Kurdish ||| 0.00102145 0.0021459 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 979 374827 +del ||| L ||| 0.0142857 0.0128205 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 70 374827 +del ||| Labour Party ||| 0.00425532 0.207385 2.6679e-06 8.12058e-08 2.718 ||| 0-0 ||| 235 374827 +del ||| Labour ||| 0.00696594 0.207385 2.40111e-05 0.0005385 2.718 ||| 0-0 ||| 1292 374827 +del ||| Lamy ’ ||| 0.5 0.106997 2.6679e-06 6.15043e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| Land Cover ||| 1 0.028169 2.6679e-06 2.12e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| Land ||| 0.0185185 0.028169 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 54 374827 +del ||| Law ||| 0.00132626 0.0130039 2.6679e-06 1.31e-05 2.718 ||| 0-0 ||| 754 374827 +del ||| Lebanon , ||| 0.00398406 0.0553445 2.6679e-06 1.59801e-05 2.718 ||| 0-0 ||| 251 374827 +del ||| Lebanon ||| 0.00082713 0.0553445 2.6679e-06 0.000134 2.718 ||| 0-0 ||| 1209 374827 +del ||| Legal Affairs and the Internal Market . ||| 0.0119048 0.0732944 2.6679e-06 9.83264e-24 2.718 ||| 0-3 ||| 84 374827 +del ||| Legal Affairs and the Internal Market ||| 0.00188679 0.0732944 2.6679e-06 3.24617e-21 2.718 ||| 0-3 ||| 530 374827 +del ||| Legal Affairs and the Internal ||| 0.00218818 0.0732944 2.6679e-06 1.08567e-16 2.718 ||| 0-3 ||| 457 374827 +del ||| Legal Affairs and the ||| 0.00201613 0.0732944 2.6679e-06 3.9194e-12 2.718 ||| 0-3 ||| 496 374827 +del ||| Light Sport Aircraft - in the ||| 1 0.0732944 2.6679e-06 2.60232e-23 2.718 ||| 0-5 ||| 1 374827 +del ||| Lulling 's ||| 0.142857 0.169811 2.6679e-06 5.62533e-08 2.718 ||| 0-1 ||| 7 374827 +del ||| MEPs from the ||| 0.016129 0.082213 2.6679e-06 1.32483e-07 2.718 ||| 0-1 0-2 ||| 62 374827 +del ||| MEPs ||| 0.000256805 0.0229863 2.6679e-06 0.0003179 2.718 ||| 0-0 ||| 3894 374827 +del ||| Madam President-in-Office ||| 0.00196464 0.0605072 2.6679e-06 3.87333e-08 2.718 ||| 0-1 ||| 509 374827 +del ||| Market ||| 0.0104877 0.0477256 5.33579e-05 0.0001681 2.718 ||| 0-0 ||| 1907 374827 +del ||| May ||| 0.000223514 0.019239 2.6679e-06 0.0002351 2.718 ||| 0-0 ||| 4474 374827 +del ||| Measures ||| 0.0149254 0.230769 2.6679e-06 3.94e-05 2.718 ||| 0-0 ||| 67 374827 +del ||| Mediterranean region ||| 0.00314465 0.0917108 2.6679e-06 6.68657e-08 2.718 ||| 0-0 ||| 318 374827 +del ||| Mediterranean ||| 0.000981547 0.0917108 1.33395e-05 0.000683 2.718 ||| 0-0 ||| 5094 374827 +del ||| Medium-Sized Enterprise Guarantee ||| 0.2 0.0333333 2.6679e-06 3.304e-18 2.718 ||| 0-2 ||| 5 374827 +del ||| Member 's home ||| 1 0.169811 2.6679e-06 2.10158e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| Member 's ||| 0.0333333 0.169811 2.6679e-06 2.07052e-05 2.718 ||| 0-1 ||| 30 374827 +del ||| Member States ; it depends on the ||| 1 0.0732944 2.6679e-06 4.72622e-20 2.718 ||| 0-6 ||| 1 374827 +del ||| Member States and the Community . Parliament ||| 1 0.0732944 2.6679e-06 3.01129e-19 2.718 ||| 0-3 ||| 1 374827 +del ||| Member States and the Community . ||| 0.1 0.0732944 2.6679e-06 5.24614e-16 2.718 ||| 0-3 ||| 10 374827 +del ||| Member States and the Community ||| 0.0294118 0.0732944 2.6679e-06 1.73197e-13 2.718 ||| 0-3 ||| 34 374827 +del ||| Member States and the ||| 0.000616523 0.0732944 2.6679e-06 1.06978e-09 2.718 ||| 0-3 ||| 1622 374827 +del ||| Member from ||| 0.0188679 0.0911315 2.6679e-06 1.11682e-05 2.718 ||| 0-1 ||| 53 374827 +del ||| Member of the ||| 0.00480769 0.10196 5.33579e-06 5.27941e-05 2.718 ||| 0-1 0-2 ||| 416 374827 +del ||| Member of this ||| 0.00314465 0.0669701 2.6679e-06 3.48991e-07 2.718 ||| 0-1 0-2 ||| 318 374827 +del ||| Member of ||| 0.00263158 0.130625 5.33579e-06 0.000152006 2.718 ||| 0-1 ||| 760 374827 +del ||| Members from the ||| 0.0137931 0.082213 5.33579e-06 1.1103e-06 2.718 ||| 0-1 0-2 ||| 145 374827 +del ||| Members of my ||| 0.0909091 0.130625 2.6679e-06 2.79815e-08 2.718 ||| 0-1 ||| 11 374827 +del ||| Members of the Commission , ||| 0.0277778 0.10196 2.6679e-06 1.05264e-09 2.718 ||| 0-1 0-2 ||| 36 374827 +del ||| Members of the Commission ||| 0.00775194 0.10196 2.6679e-06 8.82682e-09 2.718 ||| 0-1 0-2 ||| 129 374827 +del ||| Members of the ||| 0.00321027 0.10196 1.60074e-05 1.51118e-05 2.718 ||| 0-1 0-2 ||| 1869 374827 +del ||| Members of ||| 0.00118378 0.130625 1.06716e-05 4.35104e-05 2.718 ||| 0-1 ||| 3379 374827 +del ||| Men 's ||| 0.125 0.169811 2.6679e-06 1.28579e-07 2.718 ||| 0-1 ||| 8 374827 +del ||| Millennium ||| 0.00237389 0.176857 1.06716e-05 0.0003533 2.718 ||| 0-0 ||| 1685 374827 +del ||| Minister , ||| 0.00070373 0.0131775 2.6679e-06 1.94266e-05 2.718 ||| 0-0 ||| 1421 374827 +del ||| Minister for Foreign Affairs ||| 0.00469484 0.0131775 2.6679e-06 1.36248e-15 2.718 ||| 0-0 ||| 213 374827 +del ||| Minister for Foreign ||| 0.25 0.0131775 2.6679e-06 1.52744e-11 2.718 ||| 0-0 ||| 4 374827 +del ||| Minister for ||| 0.00147059 0.0131775 2.6679e-06 1.252e-06 2.718 ||| 0-0 ||| 680 374827 +del ||| Minister ||| 0.00112473 0.0131775 2.6679e-05 0.0001629 2.718 ||| 0-0 ||| 8891 374827 +del ||| Minister ’ s ||| 0.125 0.16804 2.6679e-06 6.82474e-10 2.718 ||| 0-2 ||| 8 374827 +del ||| Minutes from ||| 0.1 0.0911315 2.6679e-06 2.34071e-07 2.718 ||| 0-1 ||| 10 374827 +del ||| Monetary ||| 0.00151745 0.0006256 5.33579e-06 2.6e-06 2.718 ||| 0-0 ||| 1318 374827 +del ||| Monitoring ||| 0.00492611 0.0435644 2.6679e-06 2.89e-05 2.718 ||| 0-0 ||| 203 374827 +del ||| Monti 's ||| 0.25 0.169811 2.6679e-06 7.23256e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| MosiekUrbahn 's ||| 1 0.169811 2.6679e-06 1.60724e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| Mount ||| 0.037037 0.195652 2.6679e-06 1.18e-05 2.718 ||| 0-0 ||| 27 374827 +del ||| Mountains ||| 0.04 0.0166667 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 25 374827 +del ||| Mr Barnier , ||| 0.0107527 0.0039553 2.6679e-06 2.59672e-10 2.718 ||| 0-0 ||| 93 374827 +del ||| Mr Barnier ||| 0.00340136 0.0039553 2.6679e-06 2.17746e-09 2.718 ||| 0-0 ||| 294 374827 +del ||| Mr Kinnock , ||| 0.0119048 0.0021231 2.6679e-06 2.02409e-10 2.718 ||| 0-1 ||| 84 374827 +del ||| Mr Kinnock ||| 0.00320513 0.0021231 2.6679e-06 1.69728e-09 2.718 ||| 0-1 ||| 312 374827 +del ||| Mr Monti 's ||| 0.0909091 0.169811 2.6679e-06 4.72142e-11 2.718 ||| 0-2 ||| 11 374827 +del ||| Mr Napolitano , you sent ||| 1 0.0202703 2.6679e-06 1.1934e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| Mr Napolitano , you ||| 0.5 0.0202703 2.6679e-06 1.98569e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| Mr Napolitano , ||| 0.0188679 0.0202703 2.6679e-06 6.15011e-10 2.718 ||| 0-1 ||| 53 374827 +del ||| Mr Napolitano ||| 0.00699301 0.0202703 2.6679e-06 5.15712e-09 2.718 ||| 0-1 ||| 143 374827 +del ||| Mr President , that a motion for ||| 1 0.0138653 2.6679e-06 6.84569e-18 2.718 ||| 0-6 ||| 1 374827 +del ||| Mr President-in-Office of the ||| 0.00116077 0.10196 5.33579e-06 3.51127e-09 2.718 ||| 0-2 0-3 ||| 1723 374827 +del ||| Mr President-in-office of the ||| 0.125 0.10196 2.6679e-06 2.67526e-11 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| Mr ||| 7.35823e-05 0.0039553 3.46827e-05 0.0012097 2.718 ||| 0-0 ||| 176673 374827 +del ||| Mr. ||| 0.0034965 0.0030581 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 286 374827 +del ||| Mrs MosiekUrbahn 's ||| 1 0.169811 2.6679e-06 1.50437e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| Munich ||| 0.0034965 0.0088496 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 286 374827 +del ||| Munich-based episcopal welfare ||| 1 0.0452308 2.6679e-06 3.0896e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| Museum ||| 0.0208333 0.0377358 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 48 374827 +del ||| NL ) ||| 0.000464468 0.0056759 2.6679e-06 2.86794e-08 2.718 ||| 0-1 ||| 2153 374827 +del ||| Nacional del ||| 0.5 0.607143 2.6679e-06 1.407e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| Napolitano , you sent ||| 1 0.0202703 2.6679e-06 1.82812e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| Napolitano , you ||| 0.5 0.0202703 2.6679e-06 3.0418e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| Napolitano , ||| 0.0135135 0.0202703 2.6679e-06 9.42112e-07 2.718 ||| 0-0 ||| 74 374827 +del ||| Napolitano ||| 0.00425532 0.0202703 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 235 374827 +del ||| National Socialist ||| 0.142857 0.0254183 2.6679e-06 1.6089e-09 2.718 ||| 0-1 ||| 7 374827 +del ||| National ||| 0.000643501 0.0033898 2.6679e-06 6.6e-06 2.718 ||| 0-0 ||| 1554 374827 +del ||| Nations Human Rights Council ||| 0.333333 0.0707819 2.6679e-06 1.20016e-15 2.718 ||| 0-3 ||| 3 374827 +del ||| New European Labour ||| 0.25 0.207385 2.6679e-06 2.14282e-11 2.718 ||| 0-2 ||| 4 374827 +del ||| Nice Council . ||| 0.2 0.0707819 2.6679e-06 8.31617e-11 2.718 ||| 0-1 ||| 5 374827 +del ||| Nice Council ||| 0.0333333 0.0707819 2.6679e-06 2.74552e-08 2.718 ||| 0-1 ||| 30 374827 +del ||| Nikiforos ||| 0.0714286 0.0625 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 14 374827 +del ||| No 8 / 98 of the ||| 0.5 0.10196 2.6679e-06 1.52766e-19 2.718 ||| 0-4 0-5 ||| 2 374827 +del ||| Noble Peace ||| 0.5 0.0023474 2.6679e-06 1.04e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| North East ||| 0.125 0.316686 2.6679e-06 6.27571e-08 2.718 ||| 0-0 ||| 8 374827 +del ||| North Sea such ||| 1 0.254666 2.6679e-06 6.12235e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| North Sea ||| 0.0025974 0.254666 2.6679e-06 2.95923e-08 2.718 ||| 0-1 ||| 385 374827 +del ||| North ||| 0.00272016 0.316686 2.13432e-05 0.0020989 2.718 ||| 0-0 ||| 2941 374827 +del ||| North-East ||| 0.0153846 0.2 2.6679e-06 3.81e-05 2.718 ||| 0-0 ||| 65 374827 +del ||| North-Western ||| 0.05 0.259259 2.6679e-06 9.2e-06 2.718 ||| 0-0 ||| 20 374827 +del ||| Northern Europe ||| 0.0285714 0.386413 2.6679e-06 9.45056e-07 2.718 ||| 0-0 ||| 35 374827 +del ||| Northern ||| 0.000525762 0.386413 2.6679e-06 0.0018677 2.718 ||| 0-0 ||| 1902 374827 +del ||| November is ||| 0.1 0.0137696 2.6679e-06 4.15896e-06 2.718 ||| 0-0 ||| 10 374827 +del ||| November ||| 0.00060012 0.0137696 8.00369e-06 0.0001327 2.718 ||| 0-0 ||| 4999 374827 +del ||| Objective ||| 0.000919963 0.184224 2.6679e-06 0.0004663 2.718 ||| 0-0 ||| 1087 374827 +del ||| Office of the ||| 0.0206186 0.10196 5.33579e-06 1.47532e-06 2.718 ||| 0-1 0-2 ||| 97 374827 +del ||| Officer of the ||| 1 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| Officer of ||| 0.333333 0.130625 2.6679e-06 4.1298e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| Offices ’ ||| 0.25 0.106997 2.6679e-06 6.15043e-09 2.718 ||| 0-1 ||| 4 374827 +del ||| Oficial del ||| 1 0.607143 2.6679e-06 8.04e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| Ombudsman 's ||| 0.00359712 0.169811 2.6679e-06 6.50931e-07 2.718 ||| 0-1 ||| 278 374827 +del ||| Ombudsman ||| 0.00103252 0.331294 5.33579e-06 0.0038405 2.718 ||| 0-0 ||| 1937 374827 +del ||| Organisation ( ||| 0.0416667 0.178113 2.6679e-06 7.91676e-07 2.718 ||| 0-0 ||| 24 374827 +del ||| Organisation ||| 0.00495751 0.178113 1.86753e-05 0.0008209 2.718 ||| 0-0 ||| 1412 374827 +del ||| Organization 's ||| 0.111111 0.169811 2.6679e-06 2.16977e-07 2.718 ||| 0-1 ||| 9 374827 +del ||| PCA ( ||| 0.5 0.0002898 2.6679e-06 2.296e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| PNR ) ||| 0.0208333 0.0951062 2.6679e-06 1.94467e-07 2.718 ||| 0-0 ||| 48 374827 +del ||| PNR ||| 0.00387597 0.0951062 5.33579e-06 0.0001353 2.718 ||| 0-0 ||| 516 374827 +del ||| PPE ||| 0.00229358 0.233491 5.33579e-06 0.0005201 2.718 ||| 0-0 ||| 872 374827 +del ||| PPE-DE Group ||| 0.000653168 0.384426 2.6679e-06 5.9904e-07 2.718 ||| 0-0 ||| 1531 374827 +del ||| PPE-DE ||| 0.00187266 0.384426 5.33579e-06 0.0018415 2.718 ||| 0-0 ||| 1068 374827 +del ||| PSE ||| 0.00859599 0.374756 1.60074e-05 0.0012635 2.718 ||| 0-0 ||| 698 374827 +del ||| PT ) This European ||| 0.5 0.0068161 2.6679e-06 3.52047e-15 2.718 ||| 0-3 ||| 2 374827 +del ||| PT ) ||| 0.000424448 0.0056759 2.6679e-06 6.08409e-08 2.718 ||| 0-1 ||| 2356 374827 +del ||| PVC ||| 0.00338983 0.0897756 2.6679e-06 4.73e-05 2.718 ||| 0-0 ||| 295 374827 +del ||| Pact was ||| 0.0454545 0.0129618 2.6679e-06 2.4688e-07 2.718 ||| 0-0 ||| 22 374827 +del ||| Pact ||| 0.000957396 0.0129618 5.33579e-06 7.88e-05 2.718 ||| 0-0 ||| 2089 374827 +del ||| Pakistan 's ||| 0.0227273 0.169811 2.6679e-06 2.33049e-07 2.718 ||| 0-1 ||| 44 374827 +del ||| Panama ||| 0.025 0.0263158 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 40 374827 +del ||| Pandora 's ||| 0.142857 0.169811 2.6679e-06 4.4199e-08 2.718 ||| 0-1 ||| 7 374827 +del ||| Panel for ||| 1 0.047619 2.6679e-06 1.21434e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| Panel ||| 0.00729927 0.047619 2.6679e-06 1.58e-05 2.718 ||| 0-0 ||| 137 374827 +del ||| Parliament ' s ||| 0.00265957 0.0718536 2.6679e-06 2.28308e-07 2.718 ||| 0-0 0-1 0-2 ||| 376 374827 +del ||| Parliament 's ||| 0.00251889 0.169811 2.13432e-05 2.30638e-05 2.718 ||| 0-1 ||| 3176 374827 +del ||| Parliament , Council and Commission ||| 0.0909091 0.0707819 2.6679e-06 4.74143e-12 2.718 ||| 0-2 ||| 11 374827 +del ||| Parliament , Council and ||| 0.00833333 0.0707819 2.6679e-06 8.1175e-09 2.718 ||| 0-2 ||| 120 374827 +del ||| Parliament , Council ||| 0.012987 0.0707819 2.6679e-06 6.48057e-07 2.718 ||| 0-2 ||| 77 374827 +del ||| Parliament are ||| 0.00257069 0.0181517 2.6679e-06 6.96503e-05 2.718 ||| 0-0 ||| 389 374827 +del ||| Parliament delegation to the Conciliation Committee ||| 0.5 0.0732944 2.6679e-06 1.12888e-19 2.718 ||| 0-3 ||| 2 374827 +del ||| Parliament delegation to the Conciliation ||| 0.5 0.0732944 2.6679e-06 7.39766e-16 2.718 ||| 0-3 ||| 2 374827 +del ||| Parliament delegation to the ||| 0.111111 0.0732944 2.6679e-06 2.55092e-10 2.718 ||| 0-3 ||| 9 374827 +del ||| Parliament delegation ||| 0.0192308 0.0181517 2.6679e-06 6.61032e-08 2.718 ||| 0-0 ||| 52 374827 +del ||| Parliament is being asked to ||| 0.0909091 0.0181517 2.6679e-06 2.75041e-12 2.718 ||| 0-0 ||| 11 374827 +del ||| Parliament is being asked ||| 0.2 0.0181517 2.6679e-06 3.09528e-11 2.718 ||| 0-0 ||| 5 374827 +del ||| Parliament is being ||| 0.0588235 0.0181517 2.6679e-06 4.09429e-07 2.718 ||| 0-0 ||| 17 374827 +del ||| Parliament is ||| 0.00048216 0.0181517 2.6679e-06 0.000143871 2.718 ||| 0-0 ||| 2074 374827 +del ||| Parliament part ||| 0.5 0.0181517 2.6679e-06 5.47279e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| Parliament ||| 0.000143104 0.0181517 3.20148e-05 0.0045905 2.718 ||| 0-0 ||| 83855 374827 +del ||| Parliament ’ s ||| 0.00179533 0.16804 2.6679e-06 1.04743e-08 2.718 ||| 0-2 ||| 557 374827 +del ||| Parliamentary ||| 0.00679012 0.0745687 2.93469e-05 0.000176 2.718 ||| 0-0 ||| 1620 374827 +del ||| Party in the ||| 0.5 0.0458111 2.6679e-06 1.41237e-06 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| Party of European ||| 0.0172414 0.130625 2.6679e-06 1.48749e-07 2.718 ||| 0-1 ||| 58 374827 +del ||| Party of ||| 0.00210084 0.130625 2.6679e-06 4.44838e-05 2.718 ||| 0-1 ||| 476 374827 +del ||| Paços do ||| 1 0.5 2.6679e-06 4.46589e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| Paços ||| 1 0.5 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| Peace ||| 0.00110011 0.0023474 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 909 374827 +del ||| People ' s Union ||| 1 0.0987045 2.6679e-06 1.6273e-12 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| People ' s ||| 0.0121951 0.0987045 2.6679e-06 2.91944e-09 2.718 ||| 0-1 0-2 ||| 82 374827 +del ||| People 's Party / European Democrats ||| 0.5 0.169811 2.6679e-06 2.91333e-20 2.718 ||| 0-1 ||| 2 374827 +del ||| People 's Party / European ||| 0.5 0.169811 2.6679e-06 2.73552e-16 2.718 ||| 0-1 ||| 2 374827 +del ||| People 's Party / ||| 1 0.169811 2.6679e-06 8.18063e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| People 's Party ||| 0.00434783 0.169811 2.6679e-06 3.5568e-10 2.718 ||| 0-1 ||| 230 374827 +del ||| People 's ||| 0.00212766 0.169811 1.06716e-05 2.35862e-06 2.718 ||| 0-1 ||| 1880 374827 +del ||| People of ||| 0.333333 0.130625 2.6679e-06 1.73156e-05 2.718 ||| 0-1 ||| 3 374827 +del ||| People ’ s Party in the ||| 1 0.0458111 2.6679e-06 2.74751e-16 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| People ’ s ||| 0.03125 0.16804 2.6679e-06 1.07116e-09 2.718 ||| 0-2 ||| 32 374827 +del ||| Popular ||| 0.0163934 0.0535714 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 61 374827 +del ||| Presidency of the ||| 0.0014771 0.10196 2.6679e-06 5.09192e-06 2.718 ||| 0-1 0-2 ||| 677 374827 +del ||| President , that a motion for a ||| 1 0.0138653 2.6679e-06 4.64829e-16 2.718 ||| 0-5 ||| 1 374827 +del ||| President , that a motion for ||| 1 0.0138653 2.6679e-06 1.04867e-14 2.718 ||| 0-5 ||| 1 374827 +del ||| President of the Ukraine ||| 0.5 0.130625 2.6679e-06 2.65216e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| President of the ||| 0.000155958 0.130625 2.6679e-06 2.62591e-06 2.718 ||| 0-1 ||| 6412 374827 +del ||| President of ||| 0.000177179 0.130625 2.6679e-06 4.27729e-05 2.718 ||| 0-1 ||| 5644 374827 +del ||| President-in-Office of the Council . - ||| 0.00168919 0.130625 2.6679e-06 3.75645e-15 2.718 ||| 0-1 ||| 592 374827 +del ||| President-in-Office of the Council . ||| 0.0021254 0.130625 5.33579e-06 9.95852e-13 2.718 ||| 0-1 ||| 941 374827 +del ||| President-in-Office of the Council ||| 0.000592885 0.130625 8.00369e-06 3.28772e-10 2.718 ||| 0-1 ||| 5060 374827 +del ||| President-in-Office of the ||| 0.00140168 0.130625 1.86753e-05 9.50759e-07 2.718 ||| 0-1 ||| 4994 374827 +del ||| President-in-Office of ||| 0.0216216 0.130625 1.06716e-05 1.54867e-05 2.718 ||| 0-1 ||| 185 374827 +del ||| President-in-Office ||| 0.000230974 0.0605072 5.33579e-06 0.0020713 2.718 ||| 0-0 ||| 8659 374827 +del ||| President-in-office of the ||| 0.0555556 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-1 0-2 ||| 18 374827 +del ||| Presidents ' attempts ||| 0.25 0.0293692 2.6679e-06 6.02059e-13 2.718 ||| 0-1 ||| 4 374827 +del ||| Presidents ' ||| 0.0714286 0.0293692 2.6679e-06 1.89924e-08 2.718 ||| 0-1 ||| 14 374827 +del ||| Prestige ||| 0.0030581 0.246914 2.6679e-06 0.0001576 2.718 ||| 0-0 ||| 327 374827 +del ||| Pride ||| 0.0588235 0.290323 2.6679e-06 2.36e-05 2.718 ||| 0-0 ||| 17 374827 +del ||| Prime Minister ||| 0.000262123 0.0131775 2.6679e-06 2.45979e-09 2.718 ||| 0-1 ||| 3815 374827 +del ||| Prime ||| 0.000516929 0.0043068 5.33579e-06 2.76e-05 2.718 ||| 0-0 ||| 3869 374827 +del ||| Prize laureate ||| 0.2 0.0929451 2.6679e-06 1.962e-10 2.718 ||| 0-0 ||| 5 374827 +del ||| Prize ||| 0.136752 0.0929451 4.26864e-05 0.000109 2.718 ||| 0-0 ||| 117 374827 +del ||| Program ||| 0.105263 0.0454545 5.33579e-06 2.6e-06 2.718 ||| 0-0 ||| 19 374827 +del ||| Programme ||| 0.000218723 0.0008242 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 4572 374827 +del ||| Progress ||| 0.00865801 0.0289256 5.33579e-06 9.2e-06 2.718 ||| 0-0 ||| 231 374827 +del ||| Promotion of ||| 0.0666667 0.130625 2.6679e-06 4.1298e-07 2.718 ||| 0-1 ||| 15 374827 +del ||| Protection ||| 0.00219298 0.0024582 8.00369e-06 6.6e-06 2.718 ||| 0-0 ||| 1368 374827 +del ||| Protocol ||| 0.000312793 0.0042393 2.6679e-06 1.18e-05 2.718 ||| 0-0 ||| 3197 374827 +del ||| Public 's ||| 1 0.169811 2.6679e-06 4.29534e-06 2.718 ||| 0-1 ||| 1 374827 +del ||| Public Health and Consumer Protection ||| 0.00457666 0.0024582 5.33579e-06 1.0259e-19 2.718 ||| 0-4 ||| 437 374827 +del ||| PvdA [ Dutch ||| 1 0.277778 2.6679e-06 3.86747e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| PvdA [ ||| 1 0.277778 2.6679e-06 2.3298e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| PvdA ||| 0.142857 0.277778 2.6679e-06 6.6e-06 2.718 ||| 0-0 ||| 7 374827 +del ||| Quartet ||| 0.00210084 0.0678161 2.6679e-06 7.75e-05 2.718 ||| 0-0 ||| 476 374827 +del ||| Question ||| 0.000635324 0.0112191 2.6679e-06 3.94e-05 2.718 ||| 0-0 ||| 1574 374827 +del ||| Reform ||| 0.00381194 0.0182992 8.00369e-06 2.23e-05 2.718 ||| 0-0 ||| 787 374827 +del ||| Region ||| 0.00309598 0.0172414 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 323 374827 +del ||| Regulation ( EC ) No 258 / ||| 0.5 0.0289405 2.6679e-06 3.75358e-29 2.718 ||| 0-0 ||| 2 374827 +del ||| Regulation ( EC ) No 258 ||| 0.25 0.0289405 2.6679e-06 1.63199e-25 2.718 ||| 0-0 ||| 4 374827 +del ||| Regulation ( EC ) No ||| 0.00150602 0.0289405 2.6679e-06 4.07998e-19 2.718 ||| 0-0 ||| 664 374827 +del ||| Regulation ( EC ) ||| 0.00136054 0.0289405 2.6679e-06 6.02656e-15 2.718 ||| 0-0 ||| 735 374827 +del ||| Regulation ( EC ||| 0.00132802 0.0289405 2.6679e-06 4.19297e-12 2.718 ||| 0-0 ||| 753 374827 +del ||| Regulation ( ||| 0.00109409 0.0289405 2.6679e-06 2.24223e-07 2.718 ||| 0-0 ||| 914 374827 +del ||| Regulation amending Regulation ( EC ) No ||| 1 0.011965 2.6679e-06 3.08348e-29 2.718 ||| 0-1 ||| 1 374827 +del ||| Regulation amending Regulation ( EC ) ||| 1 0.011965 2.6679e-06 4.55462e-25 2.718 ||| 0-1 ||| 1 374827 +del ||| Regulation amending Regulation ( EC ||| 0.5 0.011965 2.6679e-06 3.16887e-22 2.718 ||| 0-1 ||| 2 374827 +del ||| Regulation amending Regulation ( ||| 0.5 0.011965 2.6679e-06 1.69458e-17 2.718 ||| 0-1 ||| 2 374827 +del ||| Regulation amending Regulation ||| 0.25 0.011965 2.6679e-06 1.75714e-14 2.718 ||| 0-1 ||| 4 374827 +del ||| Regulation amending ||| 0.5 0.011965 2.6679e-06 7.7407e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| Regulation ||| 0.00243765 0.0289405 3.46827e-05 0.0002325 2.718 ||| 0-0 ||| 5333 374827 +del ||| Regulations can be ||| 1 0.0681458 2.6679e-06 3.04552e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| Regulations can ||| 1 0.0681458 2.6679e-06 1.68048e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| Regulations ||| 0.00592885 0.0681458 8.00369e-06 5.65e-05 2.718 ||| 0-0 ||| 506 374827 +del ||| Report ||| 0.000614251 0.0024228 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 1628 374827 +del ||| Requirements ||| 0.00877193 0.12 2.6679e-06 1.58e-05 2.718 ||| 0-0 ||| 114 374827 +del ||| Research ||| 0.000350754 0.0004219 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 2851 374827 +del ||| Resolution ||| 0.00148588 0.121839 2.6679e-06 0.0002088 2.718 ||| 0-0 ||| 673 374827 +del ||| Resolutions ||| 0.0128205 0.0294118 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 78 374827 +del ||| Review 's ||| 1 0.123022 2.6679e-06 1.79609e-06 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| Review ||| 0.00564972 0.0762332 2.6679e-06 4.47e-05 2.718 ||| 0-0 ||| 177 374827 +del ||| Rhine ||| 0.00884956 0.108108 2.6679e-06 2.1e-05 2.718 ||| 0-0 ||| 113 374827 +del ||| Ribeiro e Castro ||| 0.00900901 0.0269058 2.6679e-06 5.5616e-17 2.718 ||| 0-0 ||| 111 374827 +del ||| Ribeiro e ||| 0.00961538 0.0269058 2.6679e-06 2.528e-11 2.718 ||| 0-0 ||| 104 374827 +del ||| Ribeiro ||| 0.028169 0.0269058 5.33579e-06 7.9e-06 2.718 ||| 0-0 ||| 71 374827 +del ||| Rights , Common Security and Defence Policy ||| 0.0666667 0.0199221 5.33579e-06 1.34489e-24 2.718 ||| 0-3 ||| 30 374827 +del ||| Rights , Common Security and Defence ||| 0.0714286 0.0199221 5.33579e-06 1.38935e-20 2.718 ||| 0-3 ||| 28 374827 +del ||| Rights , Common Security and ||| 0.0645161 0.0199221 5.33579e-06 4.60051e-16 2.718 ||| 0-3 ||| 31 374827 +del ||| Rights , Common Security ||| 0.0740741 0.0199221 5.33579e-06 3.6728e-14 2.718 ||| 0-3 ||| 27 374827 +del ||| Rights Council ||| 0.00224215 0.0707819 2.6679e-06 7.80106e-07 2.718 ||| 0-1 ||| 446 374827 +del ||| Rule ||| 0.000754148 0.334285 5.33579e-06 0.0036908 2.718 ||| 0-0 ||| 2652 374827 +del ||| Rules of Procedure ||| 0.000558659 0.130625 2.6679e-06 1.33225e-09 2.718 ||| 0-1 ||| 1790 374827 +del ||| Rules of ||| 0.019685 0.130625 2.6679e-05 2.09145e-05 2.718 ||| 0-1 ||| 508 374827 +del ||| Rural Development ' s ||| 0.5 0.0987045 2.6679e-06 4.8689e-14 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| Rural Development ||| 0.0013089 0.001574 5.33579e-06 3.5234e-10 2.718 ||| 0-1 ||| 1528 374827 +del ||| Schengen is entirely based ||| 0.25 0.0217227 2.6679e-06 5.5002e-14 2.718 ||| 0-0 ||| 4 374827 +del ||| Schengen is entirely ||| 0.25 0.0217227 2.6679e-06 2.3445e-10 2.718 ||| 0-0 ||| 4 374827 +del ||| Schengen is ||| 0.0123457 0.0217227 2.6679e-06 3.54154e-06 2.718 ||| 0-0 ||| 81 374827 +del ||| Schengen ||| 0.00058997 0.0217227 8.00369e-06 0.000113 2.718 ||| 0-0 ||| 5085 374827 +del ||| Sea Panel ||| 1 0.254666 2.6679e-06 9.9113e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| Sea such ||| 1 0.254666 2.6679e-06 2.92936e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| Sea ||| 0.00130039 0.254666 1.06716e-05 0.0014159 2.718 ||| 0-0 ||| 3076 374827 +del ||| Section is transferred ||| 1 0.005698 2.6679e-06 1.76012e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| Section is ||| 1 0.005698 2.6679e-06 8.14869e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| Section ||| 0.0034965 0.005698 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 286 374827 +del ||| Security Committee ||| 0.025641 0.0199221 2.6679e-06 1.74422e-08 2.718 ||| 0-0 ||| 39 374827 +del ||| Security Court ||| 0.0434783 0.0199221 2.6679e-06 5.34924e-09 2.718 ||| 0-0 ||| 23 374827 +del ||| Security and Cooperation in ||| 0.00694444 0.0183279 2.6679e-06 2.82383e-13 2.718 ||| 0-3 ||| 144 374827 +del ||| Security and Defence Policy ||| 0.0045045 0.0199221 5.33579e-06 4.1854e-15 2.718 ||| 0-0 ||| 444 374827 +del ||| Security and Defence ||| 0.0111732 0.0199221 5.33579e-06 4.32377e-11 2.718 ||| 0-0 ||| 179 374827 +del ||| Security and ||| 0.00201005 0.0199221 5.33579e-06 1.43171e-06 2.718 ||| 0-0 ||| 995 374827 +del ||| Security ||| 0.000846535 0.0199221 1.86753e-05 0.0001143 2.718 ||| 0-0 ||| 8269 374827 +del ||| Senate ||| 0.00280899 0.0560472 2.6679e-06 2.5e-05 2.718 ||| 0-0 ||| 356 374827 +del ||| September 1996 ||| 0.0217391 0.0337569 2.6679e-06 3.59459e-09 2.718 ||| 0-0 ||| 46 374827 +del ||| September 2007 ||| 0.0131579 0.0337569 2.6679e-06 5.62322e-09 2.718 ||| 0-0 ||| 76 374827 +del ||| September ||| 0.000430571 0.0337569 5.33579e-06 0.0003559 2.718 ||| 0-0 ||| 4645 374827 +del ||| Serbian ||| 0.001287 0.0014045 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 777 374827 +del ||| Service 's rejection ||| 1 0.169811 2.6679e-06 2.24611e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| Service 's ||| 0.166667 0.169811 2.6679e-06 2.61176e-07 2.718 ||| 0-1 ||| 6 374827 +del ||| Sharon 's ||| 0.1 0.169811 2.6679e-06 4.4199e-08 2.718 ||| 0-1 ||| 10 374827 +del ||| Single European Sky ||| 0.00549451 0.0417755 2.6679e-06 5.54753e-13 2.718 ||| 0-2 ||| 182 374827 +del ||| Sir ||| 0.00239808 0.0042918 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 417 374827 +del ||| Sky ||| 0.0172414 0.0417755 5.33579e-06 2.1e-05 2.718 ||| 0-0 ||| 116 374827 +del ||| Slovenia is ||| 0.0153846 0.0008953 2.6679e-06 4.07434e-08 2.718 ||| 0-0 ||| 65 374827 +del ||| Slovenia ||| 0.000815661 0.0008953 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1226 374827 +del ||| Socialist Movement ||| 0.333333 0.0254183 2.6679e-06 2.2836e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| Socialist ||| 0.00136472 0.0254183 1.06716e-05 0.0001038 2.718 ||| 0-0 ||| 2931 374827 +del ||| Socialists and Democrats in the ||| 0.00877193 0.0183279 5.33579e-06 3.66606e-14 2.718 ||| 0-3 ||| 228 374827 +del ||| Socialists and Democrats in ||| 0.00896861 0.0183279 5.33579e-06 5.97158e-13 2.718 ||| 0-3 ||| 223 374827 +del ||| Socialists in ||| 0.0357143 0.0183279 2.6679e-06 4.47642e-07 2.718 ||| 0-1 ||| 28 374827 +del ||| South Africa ||| 0.000798722 0.189467 2.6679e-06 4.21789e-08 2.718 ||| 0-0 ||| 1252 374827 +del ||| South Sudanese ||| 0.1 0.189467 2.6679e-06 2.71326e-09 2.718 ||| 0-0 ||| 10 374827 +del ||| South ||| 0.116149 0.189467 0.000717664 0.0012333 2.718 ||| 0-0 ||| 2316 374827 +del ||| Southern ||| 0.0125 0.249016 2.40111e-05 0.0003323 2.718 ||| 0-0 ||| 720 374827 +del ||| Spain are very conscious of ||| 1 0.130625 2.6679e-06 2.09398e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| Spanish ||| 0.000646273 0.0016529 8.00369e-06 9.2e-06 2.718 ||| 0-0 ||| 4642 374827 +del ||| Speaker of the ||| 0.0338983 0.10196 5.33579e-06 2.25397e-07 2.718 ||| 0-1 0-2 ||| 59 374827 +del ||| Special Envoy ||| 0.008 0.0054274 2.6679e-06 7.42e-12 2.718 ||| 0-0 ||| 125 374827 +del ||| Special ||| 0.00223214 0.0054274 5.33579e-06 5.3e-06 2.718 ||| 0-0 ||| 896 374827 +del ||| Sport Aircraft - in the ||| 1 0.0732944 2.6679e-06 6.5058e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| State ||| 0.000270307 0.0031606 5.33579e-06 0.0001156 2.718 ||| 0-0 ||| 7399 374827 +del ||| States ; it depends on the ||| 1 0.0732944 2.6679e-06 9.17178e-17 2.718 ||| 0-5 ||| 1 374827 +del ||| States and the Community . Parliament ||| 1 0.0732944 2.6679e-06 5.84375e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| States and the Community . ||| 1 0.0732944 2.6679e-06 1.01808e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| States and the Community ||| 0.5 0.0732944 2.6679e-06 3.36109e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| States and the ||| 0.0175439 0.0732944 2.6679e-06 2.07603e-06 2.718 ||| 0-2 ||| 57 374827 +del ||| Statute for Members of the ||| 0.0222222 0.10196 2.6679e-06 8.82702e-13 2.718 ||| 0-3 0-4 ||| 45 374827 +del ||| Summit on ||| 0.0666667 0.0140673 5.33579e-06 9.90558e-08 2.718 ||| 0-1 ||| 30 374827 +del ||| Sweden ' s ||| 0.0625 0.16804 2.6679e-06 6.22446e-10 2.718 ||| 0-2 ||| 16 374827 +del ||| Sweden ) ||| 0.0666667 0.0056759 2.6679e-06 1.09526e-08 2.718 ||| 0-1 ||| 15 374827 +del ||| Switzerland 's association ||| 0.333333 0.169811 2.6679e-06 2.28549e-12 2.718 ||| 0-1 ||| 3 374827 +del ||| Switzerland 's ||| 0.25 0.169811 2.6679e-06 1.44651e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| Syria 's ||| 0.0714286 0.169811 2.6679e-06 1.16525e-07 2.718 ||| 0-1 ||| 14 374827 +del ||| System ||| 0.00363636 0.0163317 5.33579e-06 3.41e-05 2.718 ||| 0-0 ||| 550 374827 +del ||| TEU ) ||| 0.0625 0.210526 2.6679e-06 2.27093e-08 2.718 ||| 0-0 ||| 16 374827 +del ||| TEU ||| 0.0208333 0.210526 2.6679e-06 1.58e-05 2.718 ||| 0-0 ||| 48 374827 +del ||| Taiwan and South Africa ||| 1 0.189467 2.6679e-06 2.11331e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| Taiwan and South ||| 0.166667 0.189467 2.6679e-06 6.17928e-11 2.718 ||| 0-2 ||| 6 374827 +del ||| Task Force ||| 0.0123457 0.0108108 2.6679e-06 3.71e-12 2.718 ||| 0-1 ||| 81 374827 +del ||| Tax ||| 0.00917431 0.0757576 2.6679e-06 1.97e-05 2.718 ||| 0-0 ||| 109 374827 +del ||| Technological Development and Energy , the ||| 0.2 0.0732944 2.6679e-06 3.68603e-18 2.718 ||| 0-5 ||| 5 374827 +del ||| Territory ||| 0.0909091 0.0869565 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 11 374827 +del ||| Terrorism every six months and the Action ||| 1 0.0732944 2.6679e-06 3.10894e-27 2.718 ||| 0-5 ||| 1 374827 +del ||| Terrorism every six months and the ||| 1 0.0732944 2.6679e-06 3.45438e-22 2.718 ||| 0-5 ||| 1 374827 +del ||| Teverson ||| 0.0121951 0.01 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 82 374827 +del ||| Text as a ||| 0.333333 0.375 2.6679e-06 1.76404e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| Text as ||| 0.333333 0.375 2.6679e-06 3.97972e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| Text ||| 0.25 0.375 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 4 374827 +del ||| The might of ||| 0.333333 0.130625 2.6679e-06 4.92744e-09 2.718 ||| 0-2 ||| 3 374827 +del ||| Theatre of the ||| 1 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| This European ||| 0.5 0.0068161 2.6679e-06 2.54876e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| This is the ||| 0.0625 0.0732944 2.6679e-06 9.03477e-08 2.718 ||| 0-2 ||| 16 374827 +del ||| Thursday , ||| 0.00512821 0.017774 5.33579e-06 6.58286e-06 2.718 ||| 0-0 ||| 390 374827 +del ||| Thursday ||| 0.00111545 0.017774 5.33579e-06 5.52e-05 2.718 ||| 0-0 ||| 1793 374827 +del ||| Time ||| 0.000666223 0.0303283 2.6679e-06 0.0001432 2.718 ||| 0-0 ||| 1501 374827 +del ||| Title ||| 0.00454545 0.113065 2.6679e-06 5.91e-05 2.718 ||| 0-0 ||| 220 374827 +del ||| Tracking ||| 0.0666667 0.282609 2.6679e-06 1.71e-05 2.718 ||| 0-0 ||| 15 374827 +del ||| Traffic ||| 0.0434783 0.3125 5.33579e-06 3.28e-05 2.718 ||| 0-0 ||| 46 374827 +del ||| Trust ||| 0.0208333 0.0789474 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 48 374827 +del ||| Turkey of the ||| 0.2 0.10196 5.33579e-06 6.014e-06 2.718 ||| 0-1 0-2 ||| 10 374827 +del ||| UEMOA ) ||| 1 0.0056759 2.6679e-06 2.5324e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| UK ||| 0.00112486 0.120581 1.33395e-05 0.0013528 2.718 ||| 0-0 ||| 4445 374827 +del ||| UNO ) ||| 0.5 0.0056759 2.6679e-06 4.4317e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| UNSC ||| 0.333333 0.16 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 3 374827 +del ||| US Congress ||| 0.00591716 0.021 2.6679e-06 1.18128e-09 2.718 ||| 0-1 ||| 169 374827 +del ||| US steel ||| 0.333333 0.160067 2.6679e-06 1.06829e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| USA 's ||| 0.0344828 0.169811 2.6679e-06 5.06279e-07 2.718 ||| 0-1 ||| 29 374827 +del ||| Ukraine , as in ||| 1 0.0183279 2.6679e-06 3.31442e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| Union ' s ||| 0.00617284 0.0987045 5.33579e-06 2.77222e-08 2.718 ||| 0-1 0-2 ||| 324 374827 +del ||| Union 's institutions ||| 0.142857 0.169811 2.6679e-06 1.17583e-09 2.718 ||| 0-1 ||| 7 374827 +del ||| Union 's ||| 0.00482315 0.169811 8.00369e-06 2.23968e-05 2.718 ||| 0-1 ||| 622 374827 +del ||| Union , namely from the ||| 1 0.082213 2.6679e-06 7.99589e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| Union flag ||| 0.111111 0.0163934 2.6679e-06 1.02562e-08 2.718 ||| 0-1 ||| 9 374827 +del ||| Union for a ||| 0.0192308 0.0138653 2.6679e-06 2.6581e-07 2.718 ||| 0-1 ||| 52 374827 +del ||| Union for ||| 0.000969932 0.0138653 2.6679e-06 5.99673e-06 2.718 ||| 0-1 ||| 1031 374827 +del ||| Union of the ||| 0.0123457 0.10196 2.6679e-06 5.71074e-05 2.718 ||| 0-1 0-2 ||| 81 374827 +del ||| Union of ||| 0.00199203 0.130625 2.6679e-06 0.000164425 2.718 ||| 0-1 ||| 502 374827 +del ||| Union ’ s ||| 0.00167504 0.106997 2.6679e-06 5.92869e-09 2.718 ||| 0-1 ||| 597 374827 +del ||| Union ’ ||| 0.00505051 0.106997 2.6679e-06 3.11659e-06 2.718 ||| 0-1 ||| 198 374827 +del ||| United Nations Human Rights Council ||| 0.25 0.0707819 2.6679e-06 1.469e-19 2.718 ||| 0-4 ||| 4 374827 +del ||| Use of ||| 0.0588235 0.130625 2.6679e-06 8.55458e-07 2.718 ||| 0-1 ||| 17 374827 +del ||| VAT ||| 0.00176523 0.195562 1.06716e-05 0.000926 2.718 ||| 0-0 ||| 2266 374827 +del ||| Wednesday , ||| 0.00438596 0.0202655 2.6679e-06 4.5436e-06 2.718 ||| 0-0 ||| 228 374827 +del ||| Wednesday ||| 0.000942507 0.0202655 2.6679e-06 3.81e-05 2.718 ||| 0-0 ||| 1061 374827 +del ||| Werner ||| 0.0344828 0.0444444 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 29 374827 +del ||| Western ||| 0.000677736 0.0012658 5.33579e-06 5.3e-06 2.718 ||| 0-0 ||| 2951 374827 +del ||| Workers ’ Union ||| 0.5 0.106997 2.6679e-06 1.68296e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| Workers ’ ||| 0.0833333 0.106997 2.6679e-06 3.0193e-08 2.718 ||| 0-1 ||| 12 374827 +del ||| World War ||| 0.00136426 0.101482 2.6679e-06 5.43996e-09 2.718 ||| 0-0 ||| 733 374827 +del ||| World misery ||| 1 0.101482 2.6679e-06 1.81332e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| World ||| 0.0128268 0.101482 0.000138731 0.0010074 2.718 ||| 0-0 ||| 4054 374827 +del ||| Youth , Education and the ||| 0.0416667 0.0732944 2.6679e-06 4.46758e-13 2.718 ||| 0-4 ||| 24 374827 +del ||| a ' culture of conflict to a ||| 1 0.130625 2.6679e-06 1.46058e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| a ' culture of conflict to ||| 1 0.130625 2.6679e-06 3.29511e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| a ' culture of conflict ||| 1 0.130625 2.6679e-06 3.70828e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| a ' culture of ||| 1 0.130625 2.6679e-06 8.89276e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| a ) of the ||| 0.333333 0.10196 2.6679e-06 6.52723e-06 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| a ) ||| 0.0107527 0.0056759 5.33579e-06 2.80627e-05 2.718 ||| 0-1 ||| 186 374827 +del ||| a Council Regulation ||| 0.00666667 0.0289405 2.6679e-06 3.56373e-09 2.718 ||| 0-2 ||| 150 374827 +del ||| a Council ||| 0.000705716 0.0707819 2.6679e-06 0.000419646 2.718 ||| 0-1 ||| 1417 374827 +del ||| a European institution , the Council ||| 1 0.0732944 2.6679e-06 5.79559e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| a European institution , the ||| 0.5 0.0732944 2.6679e-06 1.67599e-10 2.718 ||| 0-4 ||| 2 374827 +del ||| a European one ||| 0.03125 0.0068161 2.6679e-06 5.6733e-07 2.718 ||| 0-1 ||| 32 374827 +del ||| a European ||| 0.063233 0.0068161 0.000330819 0.000136116 2.718 ||| 0-1 ||| 1961 374827 +del ||| a Member of this ||| 0.00392157 0.0669701 2.6679e-06 1.54693e-08 2.718 ||| 0-2 0-3 ||| 255 374827 +del ||| a Member of ||| 0.00341297 0.130625 5.33579e-06 6.73779e-06 2.718 ||| 0-2 ||| 586 374827 +del ||| a South ||| 0.25 0.189467 2.6679e-06 5.4667e-05 2.718 ||| 0-1 ||| 4 374827 +del ||| a Statute for Members of the ||| 0.111111 0.10196 2.6679e-06 3.91265e-14 2.718 ||| 0-4 0-5 ||| 9 374827 +del ||| a broader term than ' ||| 1 0.0303522 2.6679e-06 7.37873e-16 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| a car body shop that only uses ||| 1 0.120879 2.6679e-06 9.32965e-24 2.718 ||| 0-1 ||| 1 374827 +del ||| a car body shop that only ||| 1 0.120879 2.6679e-06 5.07046e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| a car body shop that ||| 1 0.120879 2.6679e-06 4.55526e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| a car body shop ||| 1 0.120879 2.6679e-06 2.70798e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| a car body ||| 1 0.120879 2.6679e-06 2.08306e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| a car ||| 0.00448431 0.120879 2.6679e-06 2.43349e-05 2.718 ||| 0-1 ||| 223 374827 +del ||| a case of ||| 0.00229885 0.130625 2.6679e-06 1.39894e-05 2.718 ||| 0-2 ||| 435 374827 +del ||| a ceiling on ||| 0.0227273 0.0140673 2.6679e-06 3.60822e-09 2.718 ||| 0-2 ||| 44 374827 +del ||| a centre of the ||| 0.5 0.10196 2.6679e-06 1.45322e-07 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| a certain amount of ||| 0.0037594 0.130625 2.6679e-06 9.0666e-10 2.718 ||| 0-3 ||| 266 374827 +del ||| a certain ||| 0.000364166 0.0008087 2.6679e-06 2.40682e-07 2.718 ||| 0-0 ||| 2746 374827 +del ||| a certificate ||| 0.0125 0.0206186 2.6679e-06 3.50174e-07 2.718 ||| 0-1 ||| 80 374827 +del ||| a chain of ||| 0.0555556 0.130625 2.6679e-06 1.35985e-07 2.718 ||| 0-2 ||| 18 374827 +del ||| a clampdown on ||| 0.142857 0.0140673 2.6679e-06 1.7389e-10 2.718 ||| 0-2 ||| 7 374827 +del ||| a close , the ||| 0.5 0.0732944 2.6679e-06 2.72269e-07 2.718 ||| 0-3 ||| 2 374827 +del ||| a comprehensible ||| 0.2 0.0008087 2.6679e-06 2.7024e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| a concession by the ||| 0.5 0.0597263 2.6679e-06 8.96166e-10 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| a condition of ||| 0.0114943 0.130625 2.6679e-06 3.34732e-07 2.718 ||| 0-2 ||| 87 374827 +del ||| a consequence of the ||| 0.00628931 0.10196 2.6679e-06 1.60308e-07 2.718 ||| 0-2 0-3 ||| 159 374827 +del ||| a country ||| 0.000410593 0.0008087 5.33579e-06 3.03936e-07 2.718 ||| 0-0 ||| 4871 374827 +del ||| a cut-down ||| 0.333333 0.5 2.6679e-06 5.76235e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| a dead horse ||| 0.0909091 0.015528 2.6679e-06 7.25525e-12 2.718 ||| 0-2 ||| 11 374827 +del ||| a decision of the ||| 0.0144928 0.10196 5.33579e-06 7.14349e-07 2.718 ||| 0-2 0-3 ||| 138 374827 +del ||| a defeat of ||| 0.5 0.130625 5.33579e-06 2.8766e-08 2.718 ||| 0-2 ||| 4 374827 +del ||| a degree of elegant nuance from both ||| 1 0.130625 2.6679e-06 7.72951e-25 2.718 ||| 0-2 ||| 1 374827 +del ||| a degree of elegant nuance from ||| 1 0.130625 2.6679e-06 4.66617e-22 2.718 ||| 0-2 ||| 1 374827 +del ||| a degree of elegant nuance ||| 1 0.130625 2.6679e-06 2.89752e-19 2.718 ||| 0-2 ||| 1 374827 +del ||| a degree of elegant ||| 1 0.130625 2.6679e-06 7.24381e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| a degree of ||| 0.002 0.130625 2.6679e-06 1.81095e-06 2.718 ||| 0-2 ||| 500 374827 +del ||| a dialogue ||| 0.00110619 0.0198851 2.6679e-06 1.83376e-05 2.718 ||| 0-1 ||| 904 374827 +del ||| a failure of the ||| 0.0333333 0.10196 2.6679e-06 2.12534e-07 2.718 ||| 0-2 0-3 ||| 30 374827 +del ||| a free ||| 0.0025974 0.0008087 2.6679e-06 9.84687e-08 2.718 ||| 0-0 ||| 385 374827 +del ||| a general ||| 0.00246305 0.0008087 2.6679e-06 1.47703e-07 2.718 ||| 0-0 ||| 406 374827 +del ||| a global ||| 0.00215983 0.0018831 2.6679e-06 1.45389e-06 2.718 ||| 0-1 ||| 463 374827 +del ||| a good deal of ||| 0.0078125 0.130625 2.6679e-06 2.87919e-09 2.718 ||| 0-3 ||| 128 374827 +del ||| a gradual shift away from ||| 1 0.0911315 2.6679e-06 5.6877e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| a great deal of good to come ||| 1 0.130625 2.6679e-06 8.53927e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| a great deal of good to ||| 0.5 0.130625 2.6679e-06 1.00545e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| a great deal of good ||| 0.047619 0.130625 2.6679e-06 1.13152e-12 2.718 ||| 0-3 ||| 21 374827 +del ||| a great deal of ||| 0.000921659 0.130625 5.33579e-06 2.18187e-09 2.718 ||| 0-3 ||| 2170 374827 +del ||| a growing number of ||| 0.0108696 0.130625 2.6679e-06 2.44556e-10 2.718 ||| 0-3 ||| 92 374827 +del ||| a high level of ||| 0.000962464 0.130625 2.6679e-06 1.66988e-09 2.718 ||| 0-3 ||| 1039 374827 +del ||| a high regard for ||| 0.25 0.0138653 2.6679e-06 4.84783e-11 2.718 ||| 0-3 ||| 4 374827 +del ||| a joint ||| 0.00347222 0.0008087 2.6679e-06 5.49769e-08 2.718 ||| 0-0 ||| 288 374827 +del ||| a kind of foreign body in ||| 1 0.0183279 2.6679e-06 7.41049e-17 2.718 ||| 0-5 ||| 1 374827 +del ||| a lack ||| 0.000451671 0.0008087 2.6679e-06 1.02691e-07 2.718 ||| 0-0 ||| 2214 374827 +del ||| a leaf out of the ||| 0.166667 0.10196 2.6679e-06 5.56642e-11 2.718 ||| 0-3 0-4 ||| 6 374827 +del ||| a legal basis for a European expulsion ||| 1 0.0138653 2.6679e-06 5.98345e-21 2.718 ||| 0-3 ||| 1 374827 +del ||| a legal basis for a European ||| 1 0.0138653 2.6679e-06 5.4395e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| a legal basis for a ||| 0.0714286 0.0138653 2.6679e-06 1.62669e-12 2.718 ||| 0-3 ||| 14 374827 +del ||| a legal basis for ||| 0.00431034 0.0138653 2.6679e-06 3.66986e-11 2.718 ||| 0-3 ||| 232 374827 +del ||| a long ||| 0.000263852 0.0008087 2.6679e-06 2.85694e-07 2.718 ||| 0-0 ||| 3790 374827 +del ||| a loss of ||| 0.00378788 0.130625 2.6679e-06 5.50477e-07 2.718 ||| 0-2 ||| 264 374827 +del ||| a lot of fun ||| 0.333333 0.130625 2.6679e-06 6.7574e-12 2.718 ||| 0-2 ||| 3 374827 +del ||| a lot of people ||| 0.00636943 0.130625 2.6679e-06 1.48697e-09 2.718 ||| 0-2 ||| 157 374827 +del ||| a lot of ||| 0.00150716 0.130625 1.06716e-05 1.68935e-06 2.718 ||| 0-2 ||| 2654 374827 +del ||| a mandate from ||| 0.0243902 0.0911315 2.6679e-06 2.14232e-08 2.718 ||| 0-2 ||| 41 374827 +del ||| a market ||| 0.00156495 0.0273989 2.6679e-06 6.59612e-05 2.718 ||| 0-1 ||| 639 374827 +del ||| a matter for the authorities ||| 0.166667 0.0435798 2.6679e-06 1.14444e-11 2.718 ||| 0-2 0-3 ||| 6 374827 +del ||| a matter for the ||| 0.00852878 0.0435798 1.06716e-05 1.71837e-07 2.718 ||| 0-2 0-3 ||| 469 374827 +del ||| a matter for ||| 0.00108932 0.0138653 2.6679e-06 4.94757e-07 2.718 ||| 0-2 ||| 918 374827 +del ||| a matter of urgency , ||| 0.00465116 0.130625 2.6679e-06 4.19006e-11 2.718 ||| 0-2 ||| 215 374827 +del ||| a matter of urgency ||| 0.00147929 0.130625 2.6679e-06 3.51354e-10 2.718 ||| 0-2 ||| 676 374827 +del ||| a matter of ||| 0.00448833 0.130625 4.00185e-05 1.35658e-05 2.718 ||| 0-2 ||| 3342 374827 +del ||| a member of the ||| 0.00347464 0.10196 1.33395e-05 7.56583e-07 2.718 ||| 0-2 0-3 ||| 1439 374827 +del ||| a member of ||| 0.00143472 0.130625 5.33579e-06 2.17837e-06 2.718 ||| 0-2 ||| 1394 374827 +del ||| a motion for a ||| 0.00490196 0.0138653 2.6679e-06 1.59802e-09 2.718 ||| 0-2 ||| 204 374827 +del ||| a motion for ||| 0.00383142 0.0138653 2.6679e-06 3.60517e-08 2.718 ||| 0-2 ||| 261 374827 +del ||| a move further away from the ||| 1 0.082213 2.6679e-06 7.84318e-15 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| a negative impact on the protection of ||| 1 0.0140673 2.6679e-06 2.83953e-19 2.718 ||| 0-3 ||| 1 374827 +del ||| a negative impact on the protection ||| 1 0.0140673 2.6679e-06 5.22317e-18 2.718 ||| 0-3 ||| 1 374827 +del ||| a negative impact on the ||| 0.0105263 0.0140673 2.6679e-06 5.14598e-14 2.718 ||| 0-3 ||| 95 374827 +del ||| a negative impact on ||| 0.00843882 0.0140673 5.33579e-06 8.3822e-13 2.718 ||| 0-3 ||| 237 374827 +del ||| a new ||| 7.12352e-05 0.0008087 2.6679e-06 5.04758e-07 2.718 ||| 0-0 ||| 14038 374827 +del ||| a number of amendments to ||| 0.016129 0.130625 2.6679e-06 4.38641e-11 2.718 ||| 0-2 ||| 62 374827 +del ||| a number of amendments ||| 0.00186567 0.130625 2.6679e-06 4.93641e-10 2.718 ||| 0-2 ||| 536 374827 +del ||| a number of ||| 0.000355366 0.130625 1.06716e-05 6.46974e-06 2.718 ||| 0-2 ||| 11256 374827 +del ||| a of the Maastricht ||| 0.5 0.10196 2.6679e-06 1.81653e-08 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| a of the ||| 0.5 0.10196 2.6679e-06 0.00454132 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| a par with the ||| 0.0322581 0.0732944 2.6679e-06 6.69417e-10 2.718 ||| 0-3 ||| 31 374827 +del ||| a person of ||| 0.047619 0.130625 2.6679e-06 1.68412e-06 2.718 ||| 0-2 ||| 21 374827 +del ||| a pig carcass ||| 0.25 0.0565111 2.6679e-06 3.3466e-12 2.718 ||| 0-1 ||| 4 374827 +del ||| a pig ||| 0.0833333 0.0565111 2.6679e-06 1.33864e-06 2.718 ||| 0-1 ||| 12 374827 +del ||| a point of ||| 0.00330251 0.130625 1.33395e-05 1.14384e-05 2.718 ||| 0-2 ||| 1514 374827 +del ||| a policy to ensure the security of ||| 1 0.130625 2.6679e-06 1.02877e-15 2.718 ||| 0-6 ||| 1 374827 +del ||| a positive verdict from ||| 1 0.0911315 2.6679e-06 4.3711e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| a priori of ||| 0.5 0.130625 2.6679e-06 1.83057e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| a pro-active stance in the fight ||| 1 0.0732944 2.6679e-06 1.05055e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| a pro-active stance in the ||| 1 0.0732944 2.6679e-06 1.90662e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| a proportion from ||| 1 0.0911315 2.6679e-06 2.90126e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| a proposal tabled by the ||| 0.2 0.0597263 2.6679e-06 4.06149e-12 2.718 ||| 0-3 0-4 ||| 5 374827 +del ||| a proposed directive next year ||| 0.0769231 0.0281625 2.6679e-06 1.32741e-16 2.718 ||| 0-3 ||| 13 374827 +del ||| a proposed directive next ||| 0.0769231 0.0281625 2.6679e-06 5.32239e-13 2.718 ||| 0-3 ||| 13 374827 +del ||| a public television corporation ||| 0.5 0.0805687 2.6679e-06 1.0862e-15 2.718 ||| 0-3 ||| 2 374827 +del ||| a question of the ||| 0.0201342 0.10196 8.00369e-06 3.75703e-06 2.718 ||| 0-2 0-3 ||| 149 374827 +del ||| a question of ||| 0.00269784 0.130625 1.60074e-05 1.08173e-05 2.718 ||| 0-2 ||| 2224 374827 +del ||| a radical review of the ||| 0.5 0.10196 2.6679e-06 1.1158e-12 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| a railways ||| 1 0.0008087 2.6679e-06 4.5603e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| a range of ||| 0.00134589 0.130625 2.6679e-06 8.98285e-07 2.718 ||| 0-2 ||| 743 374827 +del ||| a real chance of ||| 0.0416667 0.130625 2.6679e-06 1.55015e-10 2.718 ||| 0-3 ||| 24 374827 +del ||| a reduction in the ||| 0.00235294 0.0458111 2.6679e-06 1.70211e-08 2.718 ||| 0-2 0-3 ||| 425 374827 +del ||| a region not considered by the rapporteur ||| 1 0.0597263 2.6679e-06 6.47285e-19 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| a region not considered by the ||| 1 0.0597263 2.6679e-06 8.95276e-15 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| a reluctance ||| 0.0526316 0.0008087 2.6679e-06 2.44905e-09 2.718 ||| 0-0 ||| 19 374827 +del ||| a representative of the ||| 0.00353357 0.10196 2.6679e-06 1.06267e-07 2.718 ||| 0-2 0-3 ||| 283 374827 +del ||| a response to the ||| 0.005 0.0732944 2.6679e-06 1.36798e-07 2.718 ||| 0-3 ||| 200 374827 +del ||| a result of cigarette ||| 1 0.130625 2.6679e-06 1.51453e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| a result of his or her beliefs ||| 1 0.130625 2.6679e-06 1.6089e-21 2.718 ||| 0-2 ||| 1 374827 +del ||| a result of his or her ||| 1 0.130625 2.6679e-06 6.4356e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| a result of his or ||| 1 0.130625 2.6679e-06 2.36516e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| a result of his ||| 0.0666667 0.130625 2.6679e-06 2.06871e-09 2.718 ||| 0-2 ||| 15 374827 +del ||| a result of the ||| 0.0032175 0.10196 1.33395e-05 2.391e-06 2.718 ||| 0-2 0-3 ||| 1554 374827 +del ||| a result of ||| 0.00274657 0.130625 2.93469e-05 6.88423e-06 2.718 ||| 0-2 ||| 4005 374827 +del ||| a result ||| 0.000293643 0.0008087 5.33579e-06 4.44629e-07 2.718 ||| 0-0 ||| 6811 374827 +del ||| a revision of ||| 0.00429185 0.130625 2.6679e-06 1.50368e-07 2.718 ||| 0-2 ||| 233 374827 +del ||| a risk of causing job ||| 1 0.130625 2.6679e-06 3.52465e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| a risk of causing ||| 1 0.130625 2.6679e-06 4.513e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| a risk of ||| 0.00224215 0.130625 2.6679e-06 1.52983e-06 2.718 ||| 0-2 ||| 446 374827 +del ||| a seat in the ||| 0.0666667 0.0732944 2.6679e-06 5.33828e-09 2.718 ||| 0-3 ||| 15 374827 +del ||| a sector ||| 0.0015748 0.0250353 2.6679e-06 3.3067e-05 2.718 ||| 0-1 ||| 635 374827 +del ||| a sequence of ||| 0.111111 0.130625 2.6679e-06 2.8766e-08 2.718 ||| 0-2 ||| 9 374827 +del ||| a set of ||| 0.0013624 0.130625 2.6679e-06 7.6413e-06 2.718 ||| 0-2 ||| 734 374827 +del ||| a share of ||| 0.0121951 0.130625 2.6679e-06 1.22386e-06 2.718 ||| 0-2 ||| 82 374827 +del ||| a sign of ||| 0.00224215 0.130625 2.6679e-06 6.82539e-07 2.718 ||| 0-2 ||| 446 374827 +del ||| a small number of ||| 0.00531915 0.130625 2.6679e-06 8.28774e-10 2.718 ||| 0-3 ||| 188 374827 +del ||| a sort of ||| 0.00194553 0.130625 2.6679e-06 2.08946e-06 2.718 ||| 0-2 ||| 514 374827 +del ||| a spirit of ||| 0.00206612 0.130625 2.6679e-06 7.6753e-07 2.718 ||| 0-2 ||| 484 374827 +del ||| a stable system of ||| 0.333333 0.130625 2.6679e-06 4.85017e-11 2.718 ||| 0-3 ||| 3 374827 +del ||| a stand with ||| 0.333333 0.0045281 2.6679e-06 1.39027e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| a step in the ||| 0.00133869 0.0458111 2.6679e-06 6.12345e-08 2.718 ||| 0-2 0-3 ||| 747 374827 +del ||| a strategy for reduced ||| 0.5 0.0069628 2.6679e-06 2.90131e-14 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| a strategy for ||| 0.00248139 0.0069628 2.6679e-06 6.19937e-10 2.718 ||| 0-1 0-2 ||| 403 374827 +del ||| a subject of ||| 0.00806452 0.130625 2.6679e-06 7.05814e-06 2.718 ||| 0-2 ||| 124 374827 +del ||| a substantial degree from the ||| 1 0.0732944 2.6679e-06 1.02668e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| a substantial sum of ||| 0.25 0.130625 2.6679e-06 1.64593e-11 2.718 ||| 0-3 ||| 4 374827 +del ||| a substantial ||| 0.00275482 0.0014577 2.6679e-06 3.50174e-07 2.718 ||| 0-1 ||| 363 374827 +del ||| a sum of EUR 1 ||| 0.5 0.130625 2.6679e-06 9.37649e-15 2.718 ||| 0-2 ||| 2 374827 +del ||| a sum of EUR ||| 0.0909091 0.130625 2.6679e-06 1.47198e-10 2.718 ||| 0-2 ||| 11 374827 +del ||| a sum of ||| 0.00645161 0.130625 2.6679e-06 5.50477e-07 2.718 ||| 0-2 ||| 155 374827 +del ||| a target in any one country ||| 1 0.0014582 2.6679e-06 1.42044e-17 2.718 ||| 0-1 ||| 1 374827 +del ||| a target in any one ||| 1 0.0014582 2.6679e-06 3.94678e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| a target in any ||| 1 0.0014582 2.6679e-06 9.46923e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| a target in ||| 0.166667 0.0014582 2.6679e-06 6.26189e-09 2.718 ||| 0-1 ||| 6 374827 +del ||| a target ||| 0.00413223 0.0014582 2.6679e-06 2.9255e-07 2.718 ||| 0-1 ||| 242 374827 +del ||| a total of ||| 0.00176367 0.130625 2.6679e-06 1.23302e-06 2.718 ||| 0-2 ||| 567 374827 +del ||| a trading volume of ||| 0.333333 0.130625 2.6679e-06 2.57953e-12 2.718 ||| 0-3 ||| 3 374827 +del ||| a universal ||| 0.0192308 0.0040559 2.6679e-06 5.23044e-07 2.718 ||| 0-1 ||| 52 374827 +del ||| a variety of ||| 0.002 0.130625 2.6679e-06 3.00736e-07 2.718 ||| 0-2 ||| 500 374827 +del ||| a vehicle ||| 0.00617284 0.0375059 2.6679e-06 4.65864e-06 2.718 ||| 0-1 ||| 162 374827 +del ||| a very ||| 0.000217533 0.0008087 2.6679e-06 2.93844e-06 2.718 ||| 0-0 ||| 4597 374827 +del ||| a victory statement of ||| 1 0.130625 2.6679e-06 5.64991e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| a view to providing the ||| 0.25 0.0732944 2.6679e-06 1.13437e-10 2.718 ||| 0-4 ||| 4 374827 +del ||| a view to the adoption of a ||| 0.0204082 0.0732944 2.6679e-06 1.37271e-13 2.718 ||| 0-3 ||| 49 374827 +del ||| a view to the adoption of ||| 0.0181818 0.0732944 2.6679e-06 3.09687e-12 2.718 ||| 0-3 ||| 55 374827 +del ||| a view to the adoption ||| 0.0172414 0.0732944 2.6679e-06 5.69655e-11 2.718 ||| 0-3 ||| 58 374827 +del ||| a view to the ||| 0.00268817 0.0732944 2.6679e-06 1.23569e-06 2.718 ||| 0-3 ||| 372 374827 +del ||| a vivid recollection of ||| 1 0.130625 2.6679e-06 2.01362e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| a wall of ||| 0.0243902 0.130625 2.6679e-06 9.41434e-08 2.718 ||| 0-2 ||| 41 374827 +del ||| a way of reviving ||| 1 0.130625 2.6679e-06 3.1004e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| a way of ||| 0.00115207 0.130625 2.6679e-06 2.81855e-05 2.718 ||| 0-2 ||| 868 374827 +del ||| a well-known ||| 0.0217391 0.0008087 2.6679e-06 4.2225e-09 2.718 ||| 0-0 ||| 46 374827 +del ||| a word about it , because ||| 0.5 0.0101916 2.6679e-06 4.41525e-15 2.718 ||| 0-2 ||| 2 374827 +del ||| a word about it , ||| 0.333333 0.0101916 2.6679e-06 1.34366e-11 2.718 ||| 0-2 ||| 3 374827 +del ||| a word about it ||| 0.125 0.0101916 2.6679e-06 1.12671e-10 2.718 ||| 0-2 ||| 8 374827 +del ||| a word about ||| 0.00452489 0.0101916 2.6679e-06 6.33581e-09 2.718 ||| 0-2 ||| 221 374827 +del ||| a world ||| 0.00135685 0.004098 2.6679e-06 7.16305e-06 2.718 ||| 0-1 ||| 737 374827 +del ||| a young girl 's ||| 1 0.169811 2.6679e-06 1.58834e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| a ||| 0.000795856 0.0008087 0.00149402 0.0008445 2.718 ||| 0-0 ||| 703645 374827 +del ||| abandonment of the ||| 0.0185185 0.10196 2.6679e-06 2.56133e-07 2.718 ||| 0-1 0-2 ||| 54 374827 +del ||| abide by the ||| 0.00502513 0.0597263 2.6679e-06 4.04354e-08 2.718 ||| 0-1 0-2 ||| 199 374827 +del ||| able to ||| 0.000103627 0.0006066 2.6679e-06 1.11083e-06 2.718 ||| 0-1 ||| 9650 374827 +del ||| about , ||| 0.00803213 0.0101916 5.33579e-06 0.000167446 2.718 ||| 0-0 ||| 249 374827 +del ||| about a possible increase ||| 0.333333 0.0101916 2.6679e-06 6.44979e-12 2.718 ||| 0-0 ||| 3 374827 +del ||| about a possible ||| 0.0434783 0.0101916 2.6679e-06 4.9921e-08 2.718 ||| 0-0 ||| 23 374827 +del ||| about a ||| 0.00470114 0.0101916 1.86753e-05 6.22379e-05 2.718 ||| 0-0 ||| 1489 374827 +del ||| about an ||| 0.00363636 0.0101916 2.6679e-06 6.2408e-06 2.718 ||| 0-0 ||| 275 374827 +del ||| about as the ||| 0.2 0.0732944 2.6679e-06 5.01249e-06 2.718 ||| 0-2 ||| 5 374827 +del ||| about at random ||| 1 0.0101916 2.6679e-06 1.05832e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| about at ||| 0.0357143 0.0101916 2.6679e-06 5.87953e-06 2.718 ||| 0-0 ||| 28 374827 +del ||| about by the ||| 0.0769231 0.0597263 8.00369e-06 7.94275e-06 2.718 ||| 0-1 0-2 ||| 39 374827 +del ||| about by ||| 0.0272727 0.0461582 8.00369e-06 2.28689e-05 2.718 ||| 0-1 ||| 110 374827 +del ||| about her current situation because of the ||| 0.333333 0.10196 2.6679e-06 1.09958e-18 2.718 ||| 0-5 0-6 ||| 3 374827 +del ||| about how ||| 0.00194175 0.0101916 5.33579e-06 5.03229e-07 2.718 ||| 0-0 ||| 1030 374827 +del ||| about in the ||| 0.047619 0.0458111 2.6679e-06 1.32461e-05 2.718 ||| 0-1 0-2 ||| 21 374827 +del ||| about it , because ||| 0.125 0.0101916 2.6679e-06 9.78478e-10 2.718 ||| 0-0 ||| 8 374827 +del ||| about it , ||| 0.00555556 0.0101916 2.6679e-06 2.97772e-06 2.718 ||| 0-0 ||| 180 374827 +del ||| about it ||| 0.00083612 0.0101916 2.6679e-06 2.49694e-05 2.718 ||| 0-0 ||| 1196 374827 +del ||| about me ||| 0.03125 0.0101916 2.6679e-06 8.45409e-07 2.718 ||| 0-0 ||| 32 374827 +del ||| about playing senior ||| 0.333333 0.0101916 2.6679e-06 1.12887e-12 2.718 ||| 0-0 ||| 3 374827 +del ||| about playing ||| 0.2 0.0101916 2.6679e-06 9.25302e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| about responsibility ||| 0.0588235 0.0101916 2.6679e-06 1.62174e-07 2.718 ||| 0-0 ||| 17 374827 +del ||| about something to do with the ||| 1 0.0389112 2.6679e-06 1.57954e-13 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| about that ||| 0.00115607 0.0101916 2.6679e-06 2.36192e-05 2.718 ||| 0-0 ||| 865 374827 +del ||| about the European ||| 0.0416667 0.0732944 2.6679e-06 1.64255e-06 2.718 ||| 0-1 ||| 24 374827 +del ||| about the case of the ||| 1 0.10196 2.6679e-06 9.51744e-09 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| about the fact ||| 0.00226757 0.0732944 2.6679e-06 1.4389e-06 2.718 ||| 0-1 ||| 441 374827 +del ||| about the keeping of animals ||| 1 0.130625 2.6679e-06 6.11907e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| about the keeping of ||| 1 0.130625 2.6679e-06 1.50346e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| about the mobility of ||| 0.2 0.130625 2.6679e-06 1.28063e-10 2.718 ||| 0-3 ||| 5 374827 +del ||| about the name ||| 0.111111 0.0732944 2.6679e-06 4.29316e-08 2.718 ||| 0-1 ||| 9 374827 +del ||| about the possibility ||| 0.0107527 0.0732944 2.6679e-06 4.20475e-08 2.718 ||| 0-1 ||| 93 374827 +del ||| about the ||| 0.0118263 0.041743 0.000536247 0.000487666 2.718 ||| 0-0 0-1 ||| 16996 374827 +del ||| about these ||| 0.00257069 0.0101916 2.6679e-06 1.45619e-06 2.718 ||| 0-0 ||| 389 374827 +del ||| about things for which , ||| 1 0.0138653 2.6679e-06 6.33504e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| about things for which ||| 1 0.0138653 2.6679e-06 5.31219e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| about things for ||| 1 0.0138653 2.6679e-06 6.25361e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| about this ||| 0.0015456 0.0101916 1.33395e-05 9.07245e-06 2.718 ||| 0-0 ||| 3235 374827 +del ||| about to be ||| 0.0128205 0.0101916 2.6679e-06 2.26112e-06 2.718 ||| 0-0 ||| 78 374827 +del ||| about to embark ||| 0.1 0.0101916 2.6679e-06 9.8565e-10 2.718 ||| 0-0 ||| 10 374827 +del ||| about to ||| 0.0021164 0.0101916 5.33579e-06 0.000124766 2.718 ||| 0-0 ||| 945 374827 +del ||| about transactions in the ||| 1 0.0458111 2.6679e-06 1.43058e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| about what ||| 0.000909918 0.0101916 2.6679e-06 1.97009e-06 2.718 ||| 0-0 ||| 1099 374827 +del ||| about which ||| 0.00184162 0.0101916 2.6679e-06 1.19273e-05 2.718 ||| 0-0 ||| 543 374827 +del ||| about ||| 0.00445754 0.0101916 0.000637627 0.0014041 2.718 ||| 0-0 ||| 53617 374827 +del ||| above all between ||| 0.142857 0.0028314 2.6679e-06 1.24687e-10 2.718 ||| 0-2 ||| 7 374827 +del ||| above all scientists from the ||| 1 0.082213 2.6679e-06 1.84396e-14 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| abroad by ||| 0.0384615 0.0461582 2.6679e-06 1.34209e-07 2.718 ||| 0-1 ||| 26 374827 +del ||| abroad ||| 0.00166945 0.0094803 5.33579e-06 3.55e-05 2.718 ||| 0-0 ||| 1198 374827 +del ||| absence of a ||| 0.00322581 0.130625 2.6679e-06 3.38655e-07 2.718 ||| 0-1 ||| 310 374827 +del ||| absence of ||| 0.00122775 0.130625 5.33579e-06 7.64012e-06 2.718 ||| 0-1 ||| 1629 374827 +del ||| absolutely sure , of the ||| 1 0.10196 2.6679e-06 2.00706e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| abuse of ||| 0.00168634 0.130625 2.6679e-06 5.19174e-06 2.718 ||| 0-1 ||| 593 374827 +del ||| acceptance in essence of ||| 1 0.130625 2.6679e-06 9.70591e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| acceptance of ||| 0.00184162 0.130625 2.6679e-06 3.59882e-06 2.718 ||| 0-1 ||| 543 374827 +del ||| accepted by the target ||| 1 0.0597263 2.6679e-06 1.30556e-11 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| accepted by the ||| 0.00549451 0.0597263 5.33579e-06 3.45386e-07 2.718 ||| 0-1 0-2 ||| 364 374827 +del ||| accepts this ||| 0.0243902 0.0033154 2.6679e-06 8.26524e-09 2.718 ||| 0-1 ||| 41 374827 +del ||| accident in the ||| 0.027027 0.0183279 2.6679e-06 2.26806e-08 2.718 ||| 0-1 ||| 37 374827 +del ||| accident in ||| 0.00819672 0.0183279 2.6679e-06 3.6944e-07 2.718 ||| 0-1 ||| 122 374827 +del ||| accidents in the ||| 0.0222222 0.0458111 2.6679e-06 9.45952e-08 2.718 ||| 0-1 0-2 ||| 45 374827 +del ||| accompanying the ||| 0.0151515 0.0732944 2.6679e-06 2.11863e-06 2.718 ||| 0-1 ||| 66 374827 +del ||| accordance with the ||| 0.000869943 0.0389112 5.33579e-06 5.25504e-08 2.718 ||| 0-1 0-2 ||| 2299 374827 +del ||| according to a ||| 0.003003 0.0008087 2.6679e-06 6.64111e-09 2.718 ||| 0-2 ||| 333 374827 +del ||| according to the ||| 0.000840101 0.0732944 8.00369e-06 2.73127e-06 2.718 ||| 0-2 ||| 3571 374827 +del ||| according to which the budget has to ||| 1 0.0732944 2.6679e-06 1.30954e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| according to which the budget has ||| 1 0.0732944 2.6679e-06 1.47374e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| according to which the budget ||| 1 0.0732944 2.6679e-06 2.86301e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| according to which the ||| 0.0075188 0.0732944 2.6679e-06 2.32011e-08 2.718 ||| 0-3 ||| 133 374827 +del ||| accordingly ||| 0.000993049 0.0046461 5.33579e-06 2.23e-05 2.718 ||| 0-0 ||| 2014 374827 +del ||| account by the tsarist ||| 1 0.0732944 2.6679e-06 2.09696e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| account by the ||| 0.0333333 0.0732944 2.6679e-06 5.2424e-07 2.718 ||| 0-2 ||| 30 374827 +del ||| account for the bulk of this ||| 0.333333 0.0732944 2.6679e-06 2.12966e-15 2.718 ||| 0-2 ||| 3 374827 +del ||| account for the bulk of ||| 0.333333 0.0732944 2.6679e-06 3.29598e-13 2.718 ||| 0-2 ||| 3 374827 +del ||| account for the bulk ||| 0.333333 0.0732944 2.6679e-06 6.0628e-12 2.718 ||| 0-2 ||| 3 374827 +del ||| account for the ||| 0.0133333 0.0732944 2.6679e-06 7.67442e-07 2.718 ||| 0-2 ||| 75 374827 +del ||| account for ||| 0.00296736 0.0138653 5.33579e-06 3.09304e-06 2.718 ||| 0-1 ||| 674 374827 +del ||| account of itself ||| 0.333333 0.130625 2.6679e-06 5.75594e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| account of the Court of Auditors ' ||| 1 0.130625 2.6679e-06 5.91512e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| account of the Court of Auditors ||| 1 0.130625 2.6679e-06 1.72206e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| account of the Court of ||| 1 0.130625 2.6679e-06 1.32467e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| account of the Court ||| 1 0.130625 2.6679e-06 2.43666e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| account of the need ||| 0.0204082 0.10196 2.6679e-06 2.70075e-08 2.718 ||| 0-1 0-2 ||| 49 374827 +del ||| account of the ||| 0.00367985 0.10196 2.13432e-05 2.94553e-05 2.718 ||| 0-1 0-2 ||| 2174 374827 +del ||| account of ||| 0.00282819 0.130625 3.20148e-05 8.48083e-05 2.718 ||| 0-1 ||| 4243 374827 +del ||| account the ||| 0.00118835 0.0732944 5.33579e-06 9.98533e-05 2.718 ||| 0-1 ||| 1683 374827 +del ||| accountable to the ||| 0.0142857 0.0732944 2.6679e-06 1.88257e-07 2.718 ||| 0-2 ||| 70 374827 +del ||| accounts for ||| 0.00173913 0.0138653 2.6679e-06 3.32435e-07 2.718 ||| 0-1 ||| 575 374827 +del ||| accrue to the ||| 0.25 0.0732944 2.6679e-06 4.32066e-08 2.718 ||| 0-2 ||| 4 374827 +del ||| accurately reflect the ||| 0.0769231 0.0732944 2.6679e-06 7.2457e-11 2.718 ||| 0-2 ||| 13 374827 +del ||| accusations of ||| 0.00884956 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-1 ||| 113 374827 +del ||| accused of the ||| 0.166667 0.10196 2.6679e-06 1.29091e-06 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| accusing me of ||| 0.166667 0.130625 2.6679e-06 3.90744e-10 2.718 ||| 0-2 ||| 6 374827 +del ||| achieve a ||| 0.000612745 0.0008087 2.6679e-06 1.92968e-07 2.718 ||| 0-1 ||| 1632 374827 +del ||| achieve adequate levels of ||| 0.5 0.130625 2.6679e-06 2.21323e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| achieve the ||| 0.00155682 0.0732944 8.00369e-06 7.93617e-05 2.718 ||| 0-1 ||| 1927 374827 +del ||| achieved by the ||| 0.0135135 0.0597263 5.33579e-06 9.39561e-07 2.718 ||| 0-1 0-2 ||| 148 374827 +del ||| achieved in the ||| 0.00401606 0.0458111 2.6679e-06 1.56691e-06 2.718 ||| 0-1 0-2 ||| 249 374827 +del ||| achieved ||| 0.000120584 9.69e-05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 8293 374827 +del ||| achievement of ||| 0.00122699 0.130625 2.6679e-06 7.10915e-06 2.718 ||| 0-1 ||| 815 374827 +del ||| achieving the ||| 0.0018797 0.0367374 5.33579e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 1064 374827 +del ||| acidity of the ||| 0.5 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| acquired by ||| 0.0153846 0.0461582 2.6679e-06 2.32845e-07 2.718 ||| 0-1 ||| 65 374827 +del ||| acquis ||| 0.00070922 0.0219454 2.6679e-06 4.86e-05 2.718 ||| 0-0 ||| 1410 374827 +del ||| across the whole ||| 0.00534759 0.0732944 2.6679e-06 2.01585e-08 2.718 ||| 0-1 ||| 187 374827 +del ||| across the ||| 0.00802222 0.0732944 6.93653e-05 3.56346e-05 2.718 ||| 0-1 ||| 3241 374827 +del ||| act by the ||| 0.2 0.0461582 2.6679e-06 1.68659e-07 2.718 ||| 0-1 ||| 5 374827 +del ||| act by ||| 0.047619 0.0461582 2.6679e-06 2.74725e-06 2.718 ||| 0-1 ||| 21 374827 +del ||| acted more rapidly than in the ||| 1 0.0409858 2.6679e-06 1.15505e-17 2.718 ||| 0-3 0-4 0-5 ||| 1 374827 +del ||| action before the ||| 0.0526316 0.0732944 2.6679e-06 2.62589e-08 2.718 ||| 0-2 ||| 19 374827 +del ||| action by the ||| 0.00420168 0.0597263 2.6679e-06 1.69772e-06 2.718 ||| 0-1 0-2 ||| 238 374827 +del ||| action in the field of ||| 0.04 0.130625 5.33579e-06 1.712e-11 2.718 ||| 0-4 ||| 50 374827 +del ||| action of the ||| 0.00598802 0.10196 2.6679e-06 3.09716e-05 2.718 ||| 0-1 0-2 ||| 167 374827 +del ||| action the ||| 0.03125 0.0732944 2.6679e-06 0.000104994 2.718 ||| 0-1 ||| 32 374827 +del ||| action to that end in order to ||| 1 0.0183279 2.6679e-06 2.50908e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| action to that end in order ||| 1 0.0183279 2.6679e-06 2.82368e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| action to that end in ||| 1 0.0183279 2.6679e-06 5.3017e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| action under Title ||| 0.166667 0.113065 2.6679e-06 6.4103e-12 2.718 ||| 0-2 ||| 6 374827 +del ||| actions of the ||| 0.00285714 0.10196 2.6679e-06 7.15123e-06 2.718 ||| 0-1 0-2 ||| 350 374827 +del ||| actions on various ||| 1 0.0140673 2.6679e-06 1.05697e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| actions on ||| 0.00990099 0.0140673 2.6679e-06 6.84564e-07 2.718 ||| 0-1 ||| 101 374827 +del ||| actions will build on ||| 0.5 0.0140673 2.6679e-06 2.34523e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| active in ||| 0.00175747 0.0183279 2.6679e-06 1.08675e-06 2.718 ||| 0-1 ||| 569 374827 +del ||| activists from showing ||| 1 0.0911315 2.6679e-06 1.47334e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| activists from ||| 0.0909091 0.0911315 2.6679e-06 4.7681e-08 2.718 ||| 0-1 ||| 11 374827 +del ||| activities ' ||| 0.142857 0.0293692 2.6679e-06 3.77474e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| activities of the ||| 0.00365631 0.10196 5.33579e-06 8.14502e-06 2.718 ||| 0-1 0-2 ||| 547 374827 +del ||| activities ranging from ||| 1 0.0911315 2.6679e-06 1.55072e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| activity in the ||| 0.0192308 0.0458111 2.6679e-06 5.0201e-07 2.718 ||| 0-1 0-2 ||| 52 374827 +del ||| activity of the Delors Commission ||| 0.5 0.0732944 2.6679e-06 4.13796e-16 2.718 ||| 0-2 ||| 2 374827 +del ||| activity of the Delors ||| 0.5 0.0732944 2.6679e-06 7.08433e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| activity of the ||| 0.008 0.0732944 2.6679e-06 1.01205e-06 2.718 ||| 0-2 ||| 125 374827 +del ||| activity of ||| 0.00423729 0.130625 2.6679e-06 1.58112e-05 2.718 ||| 0-1 ||| 236 374827 +del ||| acts of ||| 0.00121803 0.130625 2.6679e-06 1.67847e-05 2.718 ||| 0-1 ||| 821 374827 +del ||| acts on ||| 0.0416667 0.0140673 2.6679e-06 5.58047e-07 2.718 ||| 0-1 ||| 24 374827 +del ||| actual Rules of ||| 1 0.130625 2.6679e-06 3.02632e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| actual fact , the ||| 0.015625 0.0732944 2.6679e-06 1.75563e-08 2.718 ||| 0-3 ||| 64 374827 +del ||| actually come from ||| 0.166667 0.0911315 2.6679e-06 7.59843e-09 2.718 ||| 0-2 ||| 6 374827 +del ||| ad ||| 0.00394477 0.0029326 5.33579e-06 2.6e-06 2.718 ||| 0-0 ||| 507 374827 +del ||| add the ||| 0.00826446 0.0732944 2.6679e-06 2.84799e-05 2.718 ||| 0-1 ||| 121 374827 +del ||| add to the ||| 0.00490196 0.0732944 2.6679e-06 2.53067e-06 2.718 ||| 0-2 ||| 204 374827 +del ||| added tax ( VAT ||| 0.5 0.0002898 2.6679e-06 1.2287e-18 2.718 ||| 0-2 ||| 2 374827 +del ||| added tax ( ||| 1 0.0002898 2.6679e-06 1.48036e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| added to the end of paragraph 25 ||| 1 0.0732944 2.6679e-06 7.73031e-21 2.718 ||| 0-2 ||| 1 374827 +del ||| added to the end of paragraph ||| 1 0.0732944 2.6679e-06 8.22374e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| added to the end of ||| 1 0.0732944 2.6679e-06 5.2049e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| added to the end ||| 0.5 0.0732944 2.6679e-06 9.57416e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| added to the ||| 0.00387597 0.0732944 2.6679e-06 2.20045e-06 2.718 ||| 0-2 ||| 258 374827 +del ||| added ||| 0.000528402 0.0004489 5.33579e-06 2.6e-06 2.718 ||| 0-0 ||| 3785 374827 +del ||| adding every possible item ||| 1 0.229263 2.6679e-06 8.72524e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| addition , the European ||| 1 0.0400553 2.6679e-06 1.25409e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| addition of a ||| 0.027027 0.130625 2.6679e-06 1.28924e-06 2.718 ||| 0-1 ||| 37 374827 +del ||| addition of ||| 0.00724638 0.130625 5.33579e-06 2.90856e-05 2.718 ||| 0-1 ||| 276 374827 +del ||| address the ||| 0.00177096 0.0732944 8.00369e-06 2.65002e-05 2.718 ||| 0-1 ||| 1694 374827 +del ||| addressed by the ||| 0.0103093 0.0597263 2.6679e-06 3.01019e-07 2.718 ||| 0-1 0-2 ||| 97 374827 +del ||| addressed in the ||| 0.00606061 0.0458111 2.6679e-06 5.0201e-07 2.718 ||| 0-1 0-2 ||| 165 374827 +del ||| addressed the ||| 0.00520833 0.0732944 2.6679e-06 1.86161e-05 2.718 ||| 0-1 ||| 192 374827 +del ||| addressing the ||| 0.00153374 0.0732944 2.6679e-06 6.25168e-06 2.718 ||| 0-1 ||| 652 374827 +del ||| adequate levels of ||| 0.0769231 0.130625 2.6679e-06 9.68591e-10 2.718 ||| 0-2 ||| 13 374827 +del ||| adequate ||| 0.000296824 0.0002235 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 3369 374827 +del ||| adherence to ||| 0.00458716 0.0290698 2.6679e-06 1.16404e-06 2.718 ||| 0-0 ||| 218 374827 +del ||| adherence ||| 0.0031348 0.0290698 2.6679e-06 1.31e-05 2.718 ||| 0-0 ||| 319 374827 +del ||| adjourned ||| 0.0031746 0.0032415 5.33579e-06 2.6e-06 2.718 ||| 0-0 ||| 630 374827 +del ||| administrative documents ||| 0.0909091 0.0009954 2.6679e-06 1.6195e-10 2.718 ||| 0-1 ||| 11 374827 +del ||| administrative provisions of the ||| 0.5 0.10196 2.6679e-06 1.65503e-10 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| adopt the ||| 0.0029098 0.0732944 8.00369e-06 3.61208e-05 2.718 ||| 0-1 ||| 1031 374827 +del ||| adopted by the ||| 0.0112994 0.0597263 5.86937e-05 1.14567e-06 2.718 ||| 0-1 0-2 ||| 1947 374827 +del ||| adopted by this ||| 0.00900901 0.0461582 2.6679e-06 2.13138e-08 2.718 ||| 0-1 ||| 111 374827 +del ||| adopted by ||| 0.00341403 0.0461582 2.93469e-05 3.29864e-06 2.718 ||| 0-1 ||| 3222 374827 +del ||| adopted in the ||| 0.00742574 0.0458111 8.00369e-06 1.91063e-06 2.718 ||| 0-1 0-2 ||| 404 374827 +del ||| adopted in ||| 0.000575705 0.00930715 2.6679e-06 2.13035e-07 2.718 ||| 0-0 0-1 ||| 1737 374827 +del ||| adopted on ||| 0.00242718 0.0140673 2.6679e-06 2.00073e-06 2.718 ||| 0-1 ||| 412 374827 +del ||| adopting a Council Regulation ||| 0.5 0.0289405 2.6679e-06 1.74266e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| adopting a ||| 0.00152672 0.0008087 2.6679e-06 4.12961e-08 2.718 ||| 0-1 ||| 655 374827 +del ||| adoption by the ||| 0.00729927 0.0597263 2.6679e-06 2.58899e-07 2.718 ||| 0-1 0-2 ||| 137 374827 +del ||| adoption of the ||| 0.000581395 0.10196 2.6679e-06 4.72309e-06 2.718 ||| 0-1 0-2 ||| 1720 374827 +del ||| adoption of ||| 0.00114712 0.130625 1.06716e-05 1.35988e-05 2.718 ||| 0-1 ||| 3487 374827 +del ||| advantage of the resulting ||| 1 0.10196 2.6679e-06 2.35305e-10 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| advantage of the ||| 0.00738007 0.10196 5.33579e-06 5.19437e-06 2.718 ||| 0-1 0-2 ||| 271 374827 +del ||| advice of ||| 0.00793651 0.130625 2.6679e-06 5.30974e-06 2.718 ||| 0-1 ||| 126 374827 +del ||| adviser , ||| 0.125 0.0446429 2.6679e-06 7.87081e-07 2.718 ||| 0-0 ||| 8 374827 +del ||| adviser ||| 0.00934579 0.0446429 2.6679e-06 6.6e-06 2.718 ||| 0-0 ||| 107 374827 +del ||| advocated in the ||| 0.0227273 0.0458111 2.6679e-06 7.77366e-08 2.718 ||| 0-1 0-2 ||| 44 374827 +del ||| affairs in connection with the ||| 1 0.0732944 2.6679e-06 8.87917e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| affairs in ||| 0.0138889 0.0183279 2.6679e-06 3.30069e-06 2.718 ||| 0-1 ||| 72 374827 +del ||| affect the ||| 0.00160772 0.0732944 2.6679e-06 8.12719e-06 2.718 ||| 0-1 ||| 622 374827 +del ||| affected by a ||| 0.0144928 0.0461582 2.6679e-06 4.77348e-08 2.718 ||| 0-1 ||| 69 374827 +del ||| affected by the ||| 0.00125945 0.0597263 2.6679e-06 3.74027e-07 2.718 ||| 0-1 0-2 ||| 794 374827 +del ||| affected by ||| 0.000479386 0.0461582 2.6679e-06 1.07691e-06 2.718 ||| 0-1 ||| 2086 374827 +del ||| affects the ||| 0.00343643 0.0732944 2.6679e-06 5.76544e-06 2.718 ||| 0-1 ||| 291 374827 +del ||| affiliated to the ||| 0.25 0.0732944 2.6679e-06 2.16033e-08 2.718 ||| 0-2 ||| 4 374827 +del ||| afford to subordinate all kinds of ||| 1 0.130625 2.6679e-06 4.13311e-19 2.718 ||| 0-5 ||| 1 374827 +del ||| afforded by the ||| 0.0175439 0.0597263 2.6679e-06 8.08708e-08 2.718 ||| 0-1 0-2 ||| 57 374827 +del ||| afforded by ||| 0.00813008 0.0461582 2.6679e-06 2.32845e-07 2.718 ||| 0-1 ||| 123 374827 +del ||| afforded to ||| 0.0151515 0.0006066 2.6679e-06 1.91592e-08 2.718 ||| 0-1 ||| 66 374827 +del ||| afraid to ||| 0.00793651 0.0006066 2.6679e-06 3.06015e-08 2.718 ||| 0-1 ||| 126 374827 +del ||| after all a person of ||| 1 0.130625 2.6679e-06 2.15666e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| after the European ||| 0.333333 0.0400553 2.6679e-06 2.89032e-07 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| after the era of budgetary plenty ||| 1 0.130625 2.6679e-06 7.92932e-21 2.718 ||| 0-3 ||| 1 374827 +del ||| after the era of budgetary ||| 1 0.130625 2.6679e-06 7.34196e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| after the era of ||| 1 0.130625 2.6679e-06 3.33725e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| after the other ||| 0.02 0.0732944 2.6679e-06 1.21936e-07 2.718 ||| 0-1 ||| 50 374827 +del ||| after the ||| 0.00083949 0.0732944 1.33395e-05 9.41226e-05 2.718 ||| 0-1 ||| 5956 374827 +del ||| after ||| 5.80333e-05 0.0001855 5.33579e-06 6.6e-06 2.718 ||| 0-0 ||| 34463 374827 +del ||| afternoon how much ||| 1 0.0004308 2.6679e-06 4.67644e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| afternoon how ||| 1 0.0004308 2.6679e-06 4.6592e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| afternoon the ||| 0.0588235 0.0732944 2.6679e-06 3.36896e-06 2.718 ||| 0-1 ||| 17 374827 +del ||| afternoon ||| 0.00047081 0.0004308 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 2124 374827 +del ||| again , of ||| 0.125 0.130625 2.6679e-06 2.03437e-05 2.718 ||| 0-2 ||| 8 374827 +del ||| again of the ||| 0.125 0.10196 2.6679e-06 5.92486e-05 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| again take account of ||| 1 0.130625 2.6679e-06 7.89619e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| again the ||| 0.0060241 0.0732944 2.6679e-06 0.000200853 2.718 ||| 0-1 ||| 166 374827 +del ||| against the whole ||| 0.0208333 0.0732944 2.6679e-06 4.68793e-08 2.718 ||| 0-1 ||| 48 374827 +del ||| against the ||| 0.00207019 0.0732944 5.60258e-05 8.28695e-05 2.718 ||| 0-1 ||| 10144 374827 +del ||| against ||| 0.000598158 0.0025296 8.00369e-05 0.0001839 2.718 ||| 0-0 ||| 50154 374827 +del ||| age of easily ||| 1 0.130625 2.6679e-06 7.31107e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| age of ||| 0.0017452 0.130625 2.6679e-06 1.81416e-05 2.718 ||| 0-1 ||| 573 374827 +del ||| agenda for ||| 0.00120192 0.0138653 2.6679e-06 1.06831e-06 2.718 ||| 0-1 ||| 832 374827 +del ||| agenda of the ||| 0.00213675 0.10196 2.6679e-06 1.01736e-05 2.718 ||| 0-1 0-2 ||| 468 374827 +del ||| agenda ||| 0.0010175 0.230707 2.6679e-05 0.0052617 2.718 ||| 0-0 ||| 9828 374827 +del ||| ages of the extreme ||| 1 0.10196 2.6679e-06 1.28189e-11 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| ages of the ||| 1 0.10196 2.6679e-06 6.96681e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| ago by ||| 0.1 0.0461582 2.6679e-06 1.78029e-06 2.718 ||| 0-1 ||| 10 374827 +del ||| agreed by the ||| 0.00436681 0.0597263 2.6679e-06 4.38612e-07 2.718 ||| 0-1 0-2 ||| 229 374827 +del ||| agreement from the ||| 0.0285714 0.082213 2.6679e-06 1.38731e-06 2.718 ||| 0-1 0-2 ||| 35 374827 +del ||| agreement from ||| 0.015625 0.0911315 2.6679e-06 3.99437e-06 2.718 ||| 0-1 ||| 64 374827 +del ||| ahead with the new ||| 0.5 0.0732944 2.6679e-06 1.44691e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| ahead with the ||| 0.0111111 0.0732944 2.6679e-06 2.42079e-07 2.718 ||| 0-2 ||| 90 374827 +del ||| aide-mémoire of ||| 0.5 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-1 ||| 2 374827 +del ||| aim of my ||| 0.0588235 0.130625 2.6679e-06 2.60845e-08 2.718 ||| 0-1 ||| 17 374827 +del ||| aim of the ||| 0.00282486 0.10196 5.33579e-06 1.40873e-05 2.718 ||| 0-1 0-2 ||| 708 374827 +del ||| aim of ||| 0.00154607 0.130625 1.33395e-05 4.05605e-05 2.718 ||| 0-1 ||| 3234 374827 +del ||| aimed at ensuring optimum results from work ||| 1 0.0911315 2.6679e-06 7.89998e-26 2.718 ||| 0-5 ||| 1 374827 +del ||| aimed at ensuring optimum results from ||| 1 0.0911315 2.6679e-06 1.24802e-22 2.718 ||| 0-5 ||| 1 374827 +del ||| aims of the ||| 0.00576369 0.10196 5.33579e-06 4.08788e-06 2.718 ||| 0-1 0-2 ||| 347 374827 +del ||| aims of ||| 0.003663 0.130625 5.33579e-06 1.17699e-05 2.718 ||| 0-1 ||| 546 374827 +del ||| air crew . ||| 0.5 0.113605 2.6679e-06 6.99626e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| air crew ||| 0.333333 0.113605 2.6679e-06 2.30976e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| air transport ||| 0.0015748 0.113605 5.33579e-06 1.32041e-07 2.718 ||| 0-0 ||| 1270 374827 +del ||| air ||| 0.00241228 0.113605 2.93469e-05 0.0012832 2.718 ||| 0-0 ||| 4560 374827 +del ||| aircraft ||| 0.00108992 0.003861 5.33579e-06 1.05e-05 2.718 ||| 0-0 ||| 1835 374827 +del ||| alas , does the ||| 1 0.0732944 2.6679e-06 2.09169e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| alcohol ||| 0.000628141 0.0722944 2.6679e-06 0.0002193 2.718 ||| 0-0 ||| 1592 374827 +del ||| alien ||| 0.00645161 0.0068027 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 155 374827 +del ||| all , of this ||| 1 0.130625 2.6679e-06 1.07409e-06 2.718 ||| 0-2 ||| 1 374827 +del ||| all , of ||| 0.00806452 0.130625 2.6679e-06 0.000166232 2.718 ||| 0-2 ||| 124 374827 +del ||| all , the ||| 0.000822368 0.0732944 2.6679e-06 0.000195722 2.718 ||| 0-2 ||| 1216 374827 +del ||| all a person of ||| 1 0.130625 2.6679e-06 7.95814e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| all about the ||| 0.0196078 0.041743 2.6679e-06 2.30442e-06 2.718 ||| 0-1 0-2 ||| 51 374827 +del ||| all about ||| 0.00452489 0.0101916 5.33579e-06 6.63493e-06 2.718 ||| 0-1 ||| 442 374827 +del ||| all aware that the ultimate responsibility rests ||| 0.333333 0.0732944 2.6679e-06 1.19585e-23 2.718 ||| 0-3 ||| 3 374827 +del ||| all aware that the ultimate responsibility ||| 0.333333 0.0732944 2.6679e-06 4.78342e-18 2.718 ||| 0-3 ||| 3 374827 +del ||| all aware that the ultimate ||| 0.333333 0.0732944 2.6679e-06 4.14149e-14 2.718 ||| 0-3 ||| 3 374827 +del ||| all aware that the ||| 0.1 0.0732944 2.6679e-06 3.83471e-09 2.718 ||| 0-3 ||| 10 374827 +del ||| all between ||| 0.0769231 0.0028314 2.6679e-06 9.62091e-07 2.718 ||| 0-1 ||| 13 374827 +del ||| all due respect for the ||| 0.0666667 0.0435798 2.6679e-06 2.11123e-12 2.718 ||| 0-3 0-4 ||| 15 374827 +del ||| all forms of ||| 0.00125628 0.130625 2.6679e-06 1.24338e-07 2.718 ||| 0-2 ||| 796 374827 +del ||| all from ||| 0.0178571 0.0911315 2.6679e-06 0.000102415 2.718 ||| 0-1 ||| 56 374827 +del ||| all governments have grasped the fact that ||| 0.5 0.0732944 2.6679e-06 5.95411e-20 2.718 ||| 0-4 ||| 2 374827 +del ||| all governments have grasped the fact ||| 0.5 0.0732944 2.6679e-06 3.53956e-18 2.718 ||| 0-4 ||| 2 374827 +del ||| all governments have grasped the ||| 0.5 0.0732944 2.6679e-06 1.20833e-15 2.718 ||| 0-4 ||| 2 374827 +del ||| all granted by the ||| 1 0.0597263 2.6679e-06 2.14958e-09 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| all in all ||| 0.00248756 0.0183279 2.6679e-06 6.02144e-07 2.718 ||| 0-1 ||| 402 374827 +del ||| all in the ||| 0.0144928 0.0458111 8.00369e-06 4.42574e-05 2.718 ||| 0-1 0-2 ||| 207 374827 +del ||| all in ||| 0.00181159 0.0183279 5.33579e-06 0.000127427 2.718 ||| 0-1 ||| 1104 374827 +del ||| all just how ||| 1 0.0056007 2.6679e-06 5.56173e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| all just ||| 0.0666667 0.0056007 2.6679e-06 1.55182e-06 2.718 ||| 0-1 ||| 15 374827 +del ||| all kinds of ||| 0.00184502 0.130625 2.6679e-06 6.62114e-08 2.718 ||| 0-2 ||| 542 374827 +del ||| all of the ||| 0.00137931 0.10196 8.00369e-06 0.000484132 2.718 ||| 0-1 0-2 ||| 2175 374827 +del ||| all of this ||| 0.00203046 0.130625 5.33579e-06 9.0067e-06 2.718 ||| 0-1 ||| 985 374827 +del ||| all of those either ||| 1 0.130625 2.6679e-06 8.73887e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| all of those ||| 0.00381679 0.130625 2.6679e-06 1.00934e-06 2.718 ||| 0-1 ||| 262 374827 +del ||| all of ||| 0.00142201 0.130625 3.46827e-05 0.00139392 2.718 ||| 0-1 ||| 9142 374827 +del ||| all on the ||| 0.0104167 0.0436809 2.6679e-06 1.60961e-05 2.718 ||| 0-1 0-2 ||| 96 374827 +del ||| all over the ||| 0.0161812 0.0732944 2.6679e-05 7.90241e-07 2.718 ||| 0-2 ||| 618 374827 +del ||| all proportion by the press ||| 0.333333 0.0732944 2.6679e-06 7.85859e-15 2.718 ||| 0-3 ||| 3 374827 +del ||| all proportion by the ||| 0.333333 0.0732944 2.6679e-06 2.60218e-10 2.718 ||| 0-3 ||| 3 374827 +del ||| all scientists from the ||| 1 0.082213 2.6679e-06 1.42281e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| all the Member States , or nearly ||| 1 0.0732944 2.6679e-06 9.13414e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| all the Member States , or ||| 0.5 0.0732944 2.6679e-06 5.50249e-14 2.718 ||| 0-1 ||| 2 374827 +del ||| all the Member States , ||| 0.00395257 0.0732944 2.6679e-06 4.81282e-11 2.718 ||| 0-1 ||| 253 374827 +del ||| all the Member States ||| 0.000503525 0.0732944 2.6679e-06 4.03574e-10 2.718 ||| 0-1 ||| 1986 374827 +del ||| all the Member ||| 0.0357143 0.0732944 2.6679e-06 8.45713e-07 2.718 ||| 0-1 ||| 28 374827 +del ||| all the members of the institutions involved ||| 1 0.10196 2.6679e-06 7.95885e-17 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| all the members of the institutions ||| 1 0.10196 2.6679e-06 2.30158e-13 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| all the members of the ||| 0.00398406 0.10196 2.6679e-06 4.38396e-09 2.718 ||| 0-3 0-4 ||| 251 374827 +del ||| all the other players in the ||| 1 0.0458111 2.6679e-06 5.94868e-14 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| all the ||| 0.00101344 0.0732944 8.27048e-05 0.00164121 2.718 ||| 0-1 ||| 30589 374827 +del ||| all this ||| 0.000352113 0.0033154 2.6679e-06 1.0849e-05 2.718 ||| 0-1 ||| 2840 374827 +del ||| all too aware of this ||| 0.5 0.0669701 2.6679e-06 6.04996e-13 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| alleged by ||| 0.166667 0.0461582 2.6679e-06 2.61951e-07 2.718 ||| 0-1 ||| 6 374827 +del ||| allotted ||| 0.00421941 0.0087912 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 237 374827 +del ||| allow discussion of the ||| 1 0.10196 2.6679e-06 2.14748e-09 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| allow the ||| 0.00380228 0.0732944 1.06716e-05 8.42588e-05 2.718 ||| 0-1 ||| 1052 374827 +del ||| allow this ||| 0.00699301 0.0033154 2.6679e-06 5.56985e-07 2.718 ||| 0-1 ||| 143 374827 +del ||| allowed to be hidden in a ||| 1 0.0183279 2.6679e-06 2.2438e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| allowed to be hidden in ||| 1 0.0183279 2.6679e-06 5.06206e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| allowing the ||| 0.00227273 0.0732944 2.6679e-06 1.75047e-05 2.718 ||| 0-1 ||| 440 374827 +del ||| ally of the ||| 0.0625 0.10196 2.6679e-06 1.84416e-07 2.718 ||| 0-1 0-2 ||| 16 374827 +del ||| almost the ||| 0.0116279 0.0732944 2.6679e-06 2.86188e-05 2.718 ||| 0-1 ||| 86 374827 +del ||| almost unnoticed in ||| 0.333333 0.0183279 2.6679e-06 3.99966e-12 2.718 ||| 0-2 ||| 3 374827 +del ||| alone ||| 0.00138449 0.0013302 1.86753e-05 1.18e-05 2.718 ||| 0-0 ||| 5056 374827 +del ||| along the banks beside the ||| 1 0.0732944 2.6679e-06 1.40458e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| along the ||| 0.00666667 0.0732944 2.40111e-05 6.06066e-05 2.718 ||| 0-1 ||| 1350 374827 +del ||| along with this ||| 0.0120482 0.0033154 2.6679e-06 2.56186e-09 2.718 ||| 0-2 ||| 83 374827 +del ||| along with ||| 0.000322789 0.0045281 2.6679e-06 3.32108e-07 2.718 ||| 0-1 ||| 3098 374827 +del ||| alongside the ||| 0.00162338 0.0732944 2.6679e-06 6.49481e-06 2.718 ||| 0-1 ||| 616 374827 +del ||| already take account of the ||| 1 0.10196 2.6679e-06 2.19616e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| already taken of the ||| 1 0.130625 2.6679e-06 7.64438e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| already taken of ||| 1 0.130625 2.6679e-06 1.24518e-07 2.718 ||| 0-2 ||| 1 374827 +del ||| already the case today that ||| 1 0.0732944 2.6679e-06 1.3064e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| already the case today ||| 0.5 0.0732944 2.6679e-06 7.76619e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| already the case ||| 0.030303 0.0732944 2.6679e-06 1.72085e-07 2.718 ||| 0-1 ||| 33 374827 +del ||| already the ||| 0.0104167 0.0732944 2.6679e-06 0.000160842 2.718 ||| 0-1 ||| 96 374827 +del ||| also , and especially , the ||| 0.2 0.0732944 2.6679e-06 2.50825e-11 2.718 ||| 0-5 ||| 5 374827 +del ||| also European ||| 0.0555556 0.0068161 2.6679e-06 1.55032e-05 2.718 ||| 0-1 ||| 18 374827 +del ||| also about the ||| 0.018018 0.041743 5.33579e-06 2.46203e-06 2.718 ||| 0-1 0-2 ||| 111 374827 +del ||| also about ||| 0.00248756 0.0101916 2.6679e-06 7.08874e-06 2.718 ||| 0-1 ||| 402 374827 +del ||| also addressed the ||| 0.1 0.0732944 2.6679e-06 9.39854e-08 2.718 ||| 0-2 ||| 10 374827 +del ||| also applaud the timing ||| 0.0833333 0.0732944 2.6679e-06 1.9288e-14 2.718 ||| 0-2 ||| 12 374827 +del ||| also applaud the ||| 0.0666667 0.0732944 2.6679e-06 3.85761e-09 2.718 ||| 0-2 ||| 15 374827 +del ||| also applies to the ||| 0.00483092 0.0732944 2.6679e-06 1.30568e-08 2.718 ||| 0-3 ||| 207 374827 +del ||| also as the ||| 0.05 0.0732944 2.6679e-06 1.7893e-05 2.718 ||| 0-2 ||| 20 374827 +del ||| also by the ||| 0.0041841 0.0597263 2.6679e-06 2.83531e-05 2.718 ||| 0-1 0-2 ||| 239 374827 +del ||| also come in for ||| 0.0625 0.0160966 2.6679e-06 1.24395e-09 2.718 ||| 0-2 0-3 ||| 16 374827 +del ||| also concur with the Commission ' s ||| 1 0.0732944 2.6679e-06 1.24102e-19 2.718 ||| 0-3 ||| 1 374827 +del ||| also concur with the Commission ' ||| 1 0.0732944 2.6679e-06 6.52381e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| also concur with the Commission ||| 1 0.0732944 2.6679e-06 1.89927e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| also concur with the ||| 0.5 0.0732944 2.6679e-06 3.25162e-11 2.718 ||| 0-3 ||| 2 374827 +del ||| also done - that we in ||| 1 0.0183279 2.6679e-06 4.47191e-14 2.718 ||| 0-5 ||| 1 374827 +del ||| also enabling the ||| 1 0.0732944 2.6679e-06 5.92669e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| also for the ||| 0.00431655 0.0435798 8.00369e-06 1.88644e-05 2.718 ||| 0-1 0-2 ||| 695 374827 +del ||| also for ||| 0.000514403 0.0138653 2.6679e-06 5.43149e-05 2.718 ||| 0-1 ||| 1944 374827 +del ||| also from the ||| 0.016129 0.082213 5.33579e-06 3.80031e-05 2.718 ||| 0-1 0-2 ||| 124 374827 +del ||| also in other products ( medical equipment ||| 0.5 0.0183279 2.6679e-06 6.83532e-24 2.718 ||| 0-1 ||| 2 374827 +del ||| also in other products ( medical ||| 0.5 0.0183279 2.6679e-06 1.98125e-19 2.718 ||| 0-1 ||| 2 374827 +del ||| also in other products ( ||| 0.5 0.0183279 2.6679e-06 1.76898e-14 2.718 ||| 0-1 ||| 2 374827 +del ||| also in other products ||| 0.5 0.0183279 2.6679e-06 1.83428e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| also in other ||| 0.00990099 0.0183279 2.6679e-06 1.76373e-07 2.718 ||| 0-1 ||| 101 374827 +del ||| also in the ||| 0.00128866 0.0183279 2.6679e-06 8.35804e-06 2.718 ||| 0-1 ||| 776 374827 +del ||| also in ||| 0.00184027 0.0183279 1.33395e-05 0.000136143 2.718 ||| 0-1 ||| 2717 374827 +del ||| also includes the ||| 0.0116279 0.0732944 2.6679e-06 5.10256e-08 2.718 ||| 0-2 ||| 86 374827 +del ||| also note the European ||| 1 0.0400553 2.6679e-06 5.62144e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| also of the ||| 0.0129534 0.10196 1.33395e-05 0.000517245 2.718 ||| 0-1 0-2 ||| 386 374827 +del ||| also of their advisors , the ||| 1 0.130625 2.6679e-06 5.0552e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| also of their advisors , ||| 1 0.130625 2.6679e-06 8.23433e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| also of their advisors ||| 1 0.130625 2.6679e-06 6.90482e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| also of their ||| 0.0714286 0.130625 2.6679e-06 1.72621e-06 2.718 ||| 0-1 ||| 14 374827 +del ||| also of this ||| 0.125 0.0669701 2.6679e-06 3.4192e-06 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| also of ||| 0.00169348 0.130625 5.33579e-06 0.00148926 2.718 ||| 0-1 ||| 1181 374827 +del ||| also put the ||| 0.1 0.0732944 2.6679e-06 1.93336e-06 2.718 ||| 0-2 ||| 10 374827 +del ||| also receive imports from China ||| 1 0.0911315 2.6679e-06 3.23595e-18 2.718 ||| 0-3 ||| 1 374827 +del ||| also receive imports from ||| 1 0.0911315 2.6679e-06 1.2304e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| also tabled by ||| 0.25 0.0238123 2.6679e-06 1.28983e-09 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| also take account of ||| 0.0208333 0.130625 2.6679e-06 6.89343e-10 2.718 ||| 0-3 ||| 48 374827 +del ||| also taking account of the ||| 0.166667 0.10196 2.6679e-06 6.32009e-11 2.718 ||| 0-3 0-4 ||| 6 374827 +del ||| also the ||| 0.00260688 0.0732944 2.6679e-05 0.00175346 2.718 ||| 0-1 ||| 3836 374827 +del ||| also this ||| 0.0277778 0.0033154 2.6679e-06 1.15911e-05 2.718 ||| 0-1 ||| 36 374827 +del ||| also to take on ||| 0.5 0.0140673 2.6679e-06 7.08358e-09 2.718 ||| 0-3 ||| 2 374827 +del ||| also visited the Gaza Strip . ||| 1 0.0732944 2.6679e-06 8.51761e-23 2.718 ||| 0-2 ||| 1 374827 +del ||| also visited the Gaza Strip ||| 1 0.0732944 2.6679e-06 2.81202e-20 2.718 ||| 0-2 ||| 1 374827 +del ||| also visited the Gaza ||| 1 0.0732944 2.6679e-06 4.01717e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| also visited the ||| 0.125 0.0732944 2.6679e-06 1.38523e-08 2.718 ||| 0-2 ||| 8 374827 +del ||| also welcomed by the ||| 0.333333 0.0597263 2.6679e-06 6.74803e-10 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| alternating between ||| 1 0.05 2.6679e-06 3.4294e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| alternating ||| 0.1 0.05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 10 374827 +del ||| although the ||| 0.000998502 0.0732944 5.33579e-06 3.72323e-05 2.718 ||| 0-1 ||| 2003 374827 +del ||| altogether . that ||| 1 0.0352113 2.6679e-06 2.00753e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| altogether . ||| 0.00813008 0.0352113 2.6679e-06 1.19343e-07 2.718 ||| 0-0 ||| 123 374827 +del ||| altogether ||| 0.00392157 0.0352113 5.33579e-06 3.94e-05 2.718 ||| 0-0 ||| 510 374827 +del ||| am absolutely sure , of the ||| 1 0.10196 2.6679e-06 2.56402e-13 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| am in favour of the ||| 0.037037 0.10196 2.6679e-06 9.06286e-10 2.718 ||| 0-3 0-4 ||| 27 374827 +del ||| am in favour of ||| 0.00485437 0.130625 2.6679e-06 2.6094e-09 2.718 ||| 0-3 ||| 206 374827 +del ||| am of the ||| 0.0384615 0.130625 5.33579e-06 2.31351e-05 2.718 ||| 0-1 ||| 52 374827 +del ||| am of ||| 0.0181818 0.130625 2.6679e-06 0.000376844 2.718 ||| 0-1 ||| 55 374827 +del ||| am referring to the ||| 0.0185185 0.0732944 2.6679e-06 1.7032e-09 2.718 ||| 0-3 ||| 54 374827 +del ||| amended by the ||| 0.0126582 0.0732944 2.6679e-06 1.96932e-08 2.718 ||| 0-2 ||| 79 374827 +del ||| amending Council Directive 93 / 6 / ||| 1 0.0707819 2.6679e-06 1.51599e-30 2.718 ||| 0-1 ||| 1 374827 +del ||| amending Council Directive 93 / 6 ||| 1 0.0707819 2.6679e-06 6.59128e-27 2.718 ||| 0-1 ||| 1 374827 +del ||| amending Council Directive 93 / ||| 1 0.0707819 2.6679e-06 6.33777e-22 2.718 ||| 0-1 ||| 1 374827 +del ||| amending Council Directive 93 ||| 1 0.0707819 2.6679e-06 2.75555e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| amending Council Directive ||| 0.0769231 0.0707819 2.6679e-06 3.9365e-12 2.718 ||| 0-1 ||| 13 374827 +del ||| amending Council ||| 0.0263158 0.0707819 2.6679e-06 5.11234e-08 2.718 ||| 0-1 ||| 38 374827 +del ||| amending Regulation ( EC ) No 1626 ||| 1 0.011965 2.6679e-06 5.43344e-31 2.718 ||| 0-0 ||| 1 374827 +del ||| amending Regulation ( EC ) No ||| 0.0217391 0.011965 2.6679e-06 1.35836e-24 2.718 ||| 0-0 ||| 46 374827 +del ||| amending Regulation ( EC ) ||| 0.00806452 0.011965 2.6679e-06 2.00644e-20 2.718 ||| 0-0 ||| 124 374827 +del ||| amending Regulation ( EC ||| 0.00609756 0.011965 2.6679e-06 1.39598e-17 2.718 ||| 0-0 ||| 164 374827 +del ||| amending Regulation ( ||| 0.00438596 0.011965 2.6679e-06 7.46513e-13 2.718 ||| 0-0 ||| 228 374827 +del ||| amending Regulation ||| 0.00338983 0.011965 2.6679e-06 7.7407e-10 2.718 ||| 0-0 ||| 295 374827 +del ||| amending ||| 0.000791139 0.011965 5.33579e-06 3.41e-05 2.718 ||| 0-0 ||| 2528 374827 +del ||| amendment of the ||| 0.00292398 0.10196 2.6679e-06 6.52626e-06 2.718 ||| 0-1 0-2 ||| 342 374827 +del ||| amendment tabled by the ||| 0.00990099 0.0597263 2.6679e-06 2.92274e-11 2.718 ||| 0-2 0-3 ||| 101 374827 +del ||| amendments to Article 8 ||| 0.5 0.11229 2.6679e-06 2.2093e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| amendments to Article ||| 0.0588235 0.11229 2.6679e-06 1.75341e-08 2.718 ||| 0-2 ||| 17 374827 +del ||| amnesty granted by ||| 0.5 0.0461582 2.6679e-06 2.35756e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| among others , of ||| 0.111111 0.130625 2.6679e-06 3.06373e-10 2.718 ||| 0-3 ||| 9 374827 +del ||| among the ||| 0.00113058 0.0732944 1.06716e-05 3.11195e-05 2.718 ||| 0-1 ||| 3538 374827 +del ||| among us , ||| 0.0285714 9.03e-05 2.6679e-06 4.46831e-10 2.718 ||| 0-0 ||| 35 374827 +del ||| among us ||| 0.00471698 9.03e-05 2.6679e-06 3.74686e-09 2.718 ||| 0-0 ||| 212 374827 +del ||| among ||| 9.42774e-05 9.03e-05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 10607 374827 +del ||| amongst the ||| 0.00448934 0.0732944 1.06716e-05 1.16351e-05 2.718 ||| 0-1 ||| 891 374827 +del ||| amount of fibres released per ||| 0.5 0.130625 2.6679e-06 6.78486e-20 2.718 ||| 0-1 ||| 2 374827 +del ||| amount of fibres released ||| 0.5 0.130625 2.6679e-06 1.53157e-15 2.718 ||| 0-1 ||| 2 374827 +del ||| amount of fibres ||| 0.5 0.130625 2.6679e-06 7.8947e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| amount of money spent on this ||| 1 0.130625 2.6679e-06 3.2499e-17 2.718 ||| 0-1 ||| 1 374827 +del ||| amount of money spent on ||| 0.0833333 0.130625 2.6679e-06 5.02972e-15 2.718 ||| 0-1 ||| 12 374827 +del ||| amount of money spent ||| 0.111111 0.130625 2.6679e-06 7.51714e-13 2.718 ||| 0-1 ||| 9 374827 +del ||| amount of money ||| 0.00711744 0.130625 5.33579e-06 1.17272e-08 2.718 ||| 0-1 ||| 281 374827 +del ||| amount of ||| 0.0056872 0.130625 3.20148e-05 7.177e-05 2.718 ||| 0-1 ||| 2110 374827 +del ||| amounting to ||| 0.00315457 0.0046948 2.6679e-06 3.46547e-07 2.718 ||| 0-0 ||| 317 374827 +del ||| amounting ||| 0.0060423 0.0046948 5.33579e-06 3.9e-06 2.718 ||| 0-0 ||| 331 374827 +del ||| amounts of ||| 0.00462963 0.130625 5.33579e-06 1.78466e-05 2.718 ||| 0-1 ||| 432 374827 +del ||| an IMF ||| 0.333333 0.105461 2.6679e-06 6.53815e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| an abuse of ||| 0.02 0.130625 2.6679e-06 2.30757e-08 2.718 ||| 0-2 ||| 50 374827 +del ||| an account of the ||| 0.05 0.10196 2.6679e-06 1.3092e-07 2.718 ||| 0-2 0-3 ||| 20 374827 +del ||| an account of ||| 0.0204082 0.130625 2.6679e-06 3.76948e-07 2.718 ||| 0-2 ||| 49 374827 +del ||| an action before the ||| 0.1 0.0732944 2.6679e-06 1.16713e-10 2.718 ||| 0-3 ||| 10 374827 +del ||| an amendment tabled by the ||| 0.0588235 0.0597263 2.6679e-06 1.29907e-13 2.718 ||| 0-3 0-4 ||| 17 374827 +del ||| an amendment that ||| 0.00787402 0.0008398 2.6679e-06 1.92769e-10 2.718 ||| 0-0 ||| 127 374827 +del ||| an amendment ||| 0.000441501 0.0008398 2.6679e-06 1.14596e-08 2.718 ||| 0-0 ||| 2265 374827 +del ||| an amnesty granted by ||| 1 0.0461582 2.6679e-06 1.04786e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| an area in ||| 0.00175439 0.0183279 2.6679e-06 4.97768e-08 2.718 ||| 0-2 ||| 570 374827 +del ||| an area of ||| 0.00106724 0.130625 2.6679e-06 5.44509e-07 2.718 ||| 0-2 ||| 937 374827 +del ||| an aspect of ||| 0.0169492 0.130625 2.6679e-06 9.24341e-08 2.718 ||| 0-2 ||| 59 374827 +del ||| an end to the ||| 0.0026455 0.0732944 2.6679e-06 5.96834e-08 2.718 ||| 0-3 ||| 378 374827 +del ||| an end ||| 0.00108342 0.0008398 5.33579e-06 7.82745e-08 2.718 ||| 0-0 ||| 1846 374827 +del ||| an evaluation of the ||| 0.00763359 0.10196 2.6679e-06 6.73953e-09 2.718 ||| 0-2 0-3 ||| 131 374827 +del ||| an evaluation of ||| 0.00613497 0.130625 2.6679e-06 1.94046e-08 2.718 ||| 0-2 ||| 163 374827 +del ||| an example from ||| 0.025641 0.0911315 2.6679e-06 2.80419e-08 2.718 ||| 0-2 ||| 39 374827 +del ||| an example of the ||| 0.00877193 0.10196 2.6679e-06 1.32559e-07 2.718 ||| 0-2 0-3 ||| 114 374827 +del ||| an increase in ||| 0.00055371 0.0183279 2.6679e-06 1.54856e-08 2.718 ||| 0-2 ||| 1806 374827 +del ||| an indication of ||| 0.0113636 0.130625 5.33579e-06 2.83202e-08 2.718 ||| 0-2 ||| 176 374827 +del ||| an indication ||| 0.00287356 0.0008398 2.6679e-06 3.88584e-09 2.718 ||| 0-0 ||| 348 374827 +del ||| an infringement of the ||| 0.0263158 0.10196 2.6679e-06 2.95993e-09 2.718 ||| 0-2 0-3 ||| 38 374827 +del ||| an infringement of ||| 0.00900901 0.130625 2.6679e-06 8.52229e-09 2.718 ||| 0-2 ||| 111 374827 +del ||| an interest in the European ||| 1 0.0458111 2.6679e-06 1.56323e-11 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| an interest in the ||| 0.0196078 0.0458111 2.6679e-06 4.67487e-09 2.718 ||| 0-2 0-3 ||| 51 374827 +del ||| an official of the ||| 0.125 0.10196 2.6679e-06 1.7714e-08 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| an open ||| 0.00641026 0.0008398 2.6679e-06 2.89999e-08 2.718 ||| 0-0 ||| 156 374827 +del ||| an opportunity ||| 0.000316656 0.0008398 2.6679e-06 3.2364e-08 2.718 ||| 0-0 ||| 3158 374827 +del ||| an understanding of ||| 0.0107527 0.130625 2.6679e-06 4.43159e-08 2.718 ||| 0-2 ||| 93 374827 +del ||| an ||| 0.000741123 0.0008398 0.000298805 0.0001799 2.718 ||| 0-0 ||| 151122 374827 +del ||| analysed in ||| 0.0181818 0.0183279 2.6679e-06 9.7079e-08 2.718 ||| 0-1 ||| 55 374827 +del ||| analysis of ||| 0.00118343 0.130625 2.6679e-06 9.97051e-06 2.718 ||| 0-1 ||| 845 374827 +del ||| and , of course , the only ||| 0.5 0.130625 2.6679e-06 4.53066e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| and , of course , the ||| 0.0042735 0.130625 2.6679e-06 4.07031e-09 2.718 ||| 0-2 ||| 234 374827 +del ||| and , of course , ||| 0.000616143 0.130625 2.6679e-06 6.63005e-08 2.718 ||| 0-2 ||| 1623 374827 +del ||| and , of course ||| 0.00138793 0.130625 5.33579e-06 5.55957e-07 2.718 ||| 0-2 ||| 1441 374827 +del ||| and , of ||| 0.00584795 0.130625 5.33579e-06 0.000440641 2.718 ||| 0-2 ||| 342 374827 +del ||| and / ||| 0.0037037 0.0015037 2.6679e-06 6.25042e-07 2.718 ||| 0-1 ||| 270 374827 +del ||| and Agriculture Organisation ( ||| 0.142857 0.178113 2.6679e-06 1.35855e-13 2.718 ||| 0-2 ||| 7 374827 +del ||| and Agriculture Organisation ||| 0.0454545 0.178113 2.6679e-06 1.4087e-10 2.718 ||| 0-2 ||| 22 374827 +del ||| and Consumer Protection ||| 0.00201005 0.0024582 5.33579e-06 9.01113e-12 2.718 ||| 0-2 ||| 995 374827 +del ||| and Cooperation in ||| 0.0111111 0.0183279 2.6679e-06 5.9449e-09 2.718 ||| 0-2 ||| 90 374827 +del ||| and Council ||| 0.000862813 0.0707819 2.6679e-06 0.000118586 2.718 ||| 0-1 ||| 1159 374827 +del ||| and Democrats in the ||| 0.00843882 0.0183279 5.33579e-06 2.20847e-09 2.718 ||| 0-2 ||| 237 374827 +del ||| and Democrats in ||| 0.00784314 0.0183279 5.33579e-06 3.59734e-08 2.718 ||| 0-2 ||| 255 374827 +del ||| and Eastern European ||| 0.0384615 0.125 2.6679e-06 2.75606e-08 2.718 ||| 0-1 ||| 26 374827 +del ||| and Eastern ||| 0.000856898 0.125 2.6679e-06 8.24204e-06 2.718 ||| 0-1 ||| 1167 374827 +del ||| and Energy , the ||| 0.0625 0.0732944 2.6679e-06 1.23477e-08 2.718 ||| 0-3 ||| 16 374827 +del ||| and European Democrats and the Group of ||| 0.5 0.0732944 2.6679e-06 3.43195e-16 2.718 ||| 0-4 ||| 2 374827 +del ||| and European Democrats and the Group ||| 0.0833333 0.0732944 2.6679e-06 6.31291e-15 2.718 ||| 0-4 ||| 12 374827 +del ||| and European Democrats and the ||| 0.0185185 0.0732944 2.6679e-06 1.94064e-11 2.718 ||| 0-4 ||| 54 374827 +del ||| and European ||| 0.000573723 0.0068161 2.6679e-06 3.84645e-05 2.718 ||| 0-1 ||| 1743 374827 +del ||| and I commend the Council 's ||| 1 0.0732944 2.6679e-06 1.17538e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| and I commend the Council ||| 1 0.0732944 2.6679e-06 6.17193e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| and I commend the ||| 0.0714286 0.0732944 2.6679e-06 1.78483e-10 2.718 ||| 0-3 ||| 14 374827 +del ||| and I quote from ||| 0.111111 0.0911315 2.6679e-06 8.56448e-11 2.718 ||| 0-3 ||| 9 374827 +del ||| and Israel ' s ||| 1 0.0293692 2.6679e-06 2.69268e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| and Israel ' ||| 1 0.0293692 2.6679e-06 1.41549e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| and Jacmel - and we followed ||| 0.333333 1 2.6679e-06 6.25376e-19 2.718 ||| 0-1 ||| 3 374827 +del ||| and Jacmel - and we ||| 0.333333 1 2.6679e-06 8.7343e-15 2.718 ||| 0-1 ||| 3 374827 +del ||| and Jacmel - and ||| 0.333333 1 2.6679e-06 7.69386e-13 2.718 ||| 0-1 ||| 3 374827 +del ||| and Jacmel - ||| 0.333333 1 2.6679e-06 6.14236e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| and Jacmel ||| 0.333333 1 2.6679e-06 1.62837e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| and Medium-Sized Enterprise Guarantee ||| 0.2 0.0333333 2.6679e-06 4.13856e-20 2.718 ||| 0-3 ||| 5 374827 +del ||| and Regulation ( EC ) No 258 ||| 1 0.0289405 2.6679e-06 2.04422e-27 2.718 ||| 0-1 ||| 1 374827 +del ||| and Regulation ( EC ) No ||| 0.0909091 0.0289405 2.6679e-06 5.11054e-21 2.718 ||| 0-1 ||| 11 374827 +del ||| and Regulation ( EC ) ||| 0.0909091 0.0289405 2.6679e-06 7.5488e-17 2.718 ||| 0-1 ||| 11 374827 +del ||| and Regulation ( EC ||| 0.0909091 0.0289405 2.6679e-06 5.25207e-14 2.718 ||| 0-1 ||| 11 374827 +del ||| and Regulation ( ||| 0.0588235 0.0289405 2.6679e-06 2.80859e-09 2.718 ||| 0-1 ||| 17 374827 +del ||| and Regulation ||| 0.027027 0.0289405 2.6679e-06 2.91227e-06 2.718 ||| 0-1 ||| 37 374827 +del ||| and Rural Development ' s ||| 0.5 0.0987045 2.6679e-06 6.09874e-16 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| and Rural Development ||| 0.00153846 0.001574 5.33579e-06 4.41338e-12 2.718 ||| 0-2 ||| 1300 374827 +del ||| and Security Committee ||| 0.04 0.0199221 2.6679e-06 2.18479e-10 2.718 ||| 0-1 ||| 25 374827 +del ||| and Security ||| 0.00355872 0.0199221 2.6679e-06 1.43171e-06 2.718 ||| 0-1 ||| 281 374827 +del ||| and South Africa ||| 0.00917431 0.189467 2.6679e-06 5.28328e-10 2.718 ||| 0-1 ||| 109 374827 +del ||| and South ||| 0.00454545 0.189467 2.6679e-06 1.54482e-05 2.718 ||| 0-1 ||| 220 374827 +del ||| and VAT ||| 0.0227273 0.195562 2.6679e-06 1.1599e-05 2.718 ||| 0-1 ||| 44 374827 +del ||| and a ||| 6.98422e-05 0.0008087 2.6679e-06 1.05781e-05 2.718 ||| 0-1 ||| 14318 374827 +del ||| and also in ||| 0.00152672 0.0183279 2.6679e-06 1.70531e-06 2.718 ||| 0-2 ||| 655 374827 +del ||| and amending ||| 0.00512821 0.011965 2.6679e-06 4.27133e-07 2.718 ||| 0-1 ||| 195 374827 +del ||| and around the ||| 0.0140845 0.0418629 2.6679e-06 6.34295e-07 2.718 ||| 0-1 0-2 ||| 71 374827 +del ||| and assessment ||| 0.00826446 0.0204279 2.6679e-06 2.08932e-06 2.718 ||| 0-1 ||| 121 374827 +del ||| and bought up by ||| 1 0.0461582 2.6679e-06 3.24661e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| and by whom ||| 0.0243902 0.0461582 2.6679e-06 1.34893e-08 2.718 ||| 0-1 ||| 41 374827 +del ||| and by women ||| 0.5 0.0461582 2.6679e-06 2.40619e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| and by ||| 0.00118659 0.0461582 1.06716e-05 0.000202541 2.718 ||| 0-1 ||| 3371 374827 +del ||| and call of ||| 0.4 0.130625 5.33579e-06 8.20281e-07 2.718 ||| 0-2 ||| 5 374827 +del ||| and cooperation by way of ||| 1 0.130625 2.6679e-06 3.85128e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| and eastern Europe ||| 0.0217391 0.147645 2.6679e-06 2.89715e-09 2.718 ||| 0-1 ||| 46 374827 +del ||| and eastern ||| 0.00166945 0.147645 2.6679e-06 5.72559e-06 2.718 ||| 0-1 ||| 599 374827 +del ||| and enforcement ||| 0.00318471 0.0131178 2.6679e-06 7.07713e-07 2.718 ||| 0-1 ||| 314 374827 +del ||| and especially , the ||| 0.125 0.0732944 2.6679e-06 4.16605e-08 2.718 ||| 0-3 ||| 8 374827 +del ||| and experience gained from ||| 1 0.0911315 2.6679e-06 5.94661e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| and for ||| 8.95335e-05 0.0138653 2.6679e-06 0.000134759 2.718 ||| 0-1 ||| 11169 374827 +del ||| and from the ||| 0.00171821 0.082213 2.6679e-06 9.4288e-05 2.718 ||| 0-1 0-2 ||| 582 374827 +del ||| and given the ||| 0.00719424 0.0732944 2.6679e-06 2.98571e-06 2.718 ||| 0-2 ||| 139 374827 +del ||| and good dialogue with the ||| 1 0.0732944 2.6679e-06 5.65534e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| and heard for themselves the ||| 1 0.0732944 2.6679e-06 1.13791e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| and in fact is ||| 0.5 0.0183279 2.6679e-06 3.10106e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| and in fact ||| 0.00588235 0.0183279 2.6679e-06 9.89454e-07 2.718 ||| 0-1 ||| 170 374827 +del ||| and in the ||| 0.000437733 0.0458111 5.33579e-06 0.000117316 2.718 ||| 0-1 0-2 ||| 4569 374827 +del ||| and in ||| 0.000164033 0.0183279 8.00369e-06 0.000337778 2.718 ||| 0-1 ||| 18289 374827 +del ||| and indeed for finding such a ||| 1 0.0138653 2.6679e-06 4.9922e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| and indeed for finding such ||| 1 0.0138653 2.6679e-06 1.12625e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| and indeed for finding ||| 1 0.0138653 2.6679e-06 5.44372e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| and indeed for ||| 0.02 0.0138653 2.6679e-06 1.02134e-07 2.718 ||| 0-2 ||| 50 374827 +del ||| and industry ||| 0.00228833 0.0019808 2.6679e-06 5.42371e-07 2.718 ||| 0-1 ||| 437 374827 +del ||| and information system ||| 0.142857 0.0006888 2.6679e-06 5.45209e-11 2.718 ||| 0-2 ||| 7 374827 +del ||| and it is one from ||| 1 0.0911315 2.6679e-06 6.30643e-10 2.718 ||| 0-4 ||| 1 374827 +del ||| and it is precisely the ||| 0.111111 0.0732944 2.6679e-06 2.39075e-10 2.718 ||| 0-4 ||| 9 374827 +del ||| and its ||| 0.000241167 0.0035806 5.33579e-06 6.12015e-06 2.718 ||| 0-1 ||| 8293 374827 +del ||| and make the ||| 0.00645161 0.0732944 2.6679e-06 7.5602e-06 2.718 ||| 0-2 ||| 155 374827 +del ||| and not so much because of ||| 1 0.130625 2.6679e-06 9.44334e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| and of the ||| 0.00112108 0.10196 1.06716e-05 0.00128332 2.718 ||| 0-1 0-2 ||| 3568 374827 +del ||| and of ||| 0.000122956 0.130625 2.6679e-06 0.00369496 2.718 ||| 0-1 ||| 8133 374827 +del ||| and on support for ||| 0.125 0.0140673 2.6679e-06 3.22812e-10 2.718 ||| 0-1 ||| 8 374827 +del ||| and on support ||| 0.0714286 0.0140673 2.6679e-06 4.20017e-08 2.718 ||| 0-1 ||| 14 374827 +del ||| and on the roads negative effects ||| 0.5 0.0732944 2.6679e-06 4.40136e-19 2.718 ||| 0-2 ||| 2 374827 +del ||| and on the roads negative ||| 0.5 0.0732944 2.6679e-06 8.10564e-15 2.718 ||| 0-2 ||| 2 374827 +del ||| and on the roads ||| 0.2 0.0732944 2.6679e-06 3.46395e-10 2.718 ||| 0-2 ||| 5 374827 +del ||| and on the ||| 0.000419463 0.0732944 2.6679e-06 2.91088e-05 2.718 ||| 0-2 ||| 2384 374827 +del ||| and on ||| 0.000300707 0.0140673 5.33579e-06 0.000122848 2.718 ||| 0-1 ||| 6651 374827 +del ||| and one in ||| 0.00970874 0.0183279 2.6679e-06 1.40786e-06 2.718 ||| 0-2 ||| 103 374827 +del ||| and one of ||| 0.00246914 0.130625 2.6679e-06 1.54006e-05 2.718 ||| 0-2 ||| 405 374827 +del ||| and one on ||| 0.016129 0.0140673 2.6679e-06 5.12029e-07 2.718 ||| 0-2 ||| 62 374827 +del ||| and outs of ||| 0.25 0.130625 2.6679e-06 5.17294e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| and parcel of that ||| 0.5 0.130625 2.6679e-06 3.79146e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| and parcel of the ||| 0.047619 0.10196 2.6679e-06 7.82824e-09 2.718 ||| 0-2 0-3 ||| 21 374827 +del ||| and parcel of ||| 0.030303 0.130625 5.33579e-06 2.25392e-08 2.718 ||| 0-2 ||| 66 374827 +del ||| and people of Cuba ||| 0.5 0.130625 2.6679e-06 1.30092e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| and people of ||| 0.0169492 0.130625 2.6679e-06 3.2523e-06 2.718 ||| 0-2 ||| 59 374827 +del ||| and perceived trustworthiness of a ||| 1 0.130625 2.6679e-06 8.7132e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| and perceived trustworthiness of ||| 1 0.130625 2.6679e-06 1.96572e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| and pioneering and the ||| 1 0.0732944 2.6679e-06 1.19885e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| and reducing them from ||| 0.5 0.0911315 2.6679e-06 1.93703e-11 2.718 ||| 0-3 ||| 2 374827 +del ||| and reductions ||| 0.0322581 0.0036364 2.6679e-06 9.89546e-08 2.718 ||| 0-1 ||| 31 374827 +del ||| and relations of social ||| 1 0.130625 2.6679e-06 2.07257e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| and relations of ||| 0.5 0.130625 2.6679e-06 2.00636e-07 2.718 ||| 0-2 ||| 2 374827 +del ||| and reporting on ||| 0.1 0.0140673 2.6679e-06 1.59702e-09 2.718 ||| 0-2 ||| 10 374827 +del ||| and requirements set out in the ||| 1 0.0458111 2.6679e-06 1.27628e-14 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| and resolve of the ||| 1 0.10196 2.6679e-06 3.32379e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| and saving ||| 0.030303 0.0009276 2.6679e-06 1.62837e-08 2.718 ||| 0-1 ||| 33 374827 +del ||| and send out the ||| 0.25 0.0732944 2.6679e-06 1.07316e-09 2.718 ||| 0-3 ||| 4 374827 +del ||| and significance which the ||| 1 0.0732944 2.6679e-06 7.57583e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| and sins of the ||| 1 0.10196 2.6679e-06 8.98322e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| and solicitors from the ||| 1 0.082213 2.6679e-06 3.77152e-11 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| and square a ||| 1 0.0054201 2.6679e-06 1.44357e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| and square ||| 0.333333 0.0054201 2.6679e-06 3.25673e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| and steel ||| 0.00555556 0.160067 2.6679e-06 3.12646e-06 2.718 ||| 0-1 ||| 180 374827 +del ||| and sufferers of the ||| 1 0.10196 2.6679e-06 8.98322e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| and that can only win or ||| 1 0.0009217 2.6679e-06 1.03681e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| and that can only win ||| 1 0.0009217 2.6679e-06 9.06856e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| and that of the ||| 0.00347222 0.10196 2.6679e-06 2.15875e-05 2.718 ||| 0-2 0-3 ||| 288 374827 +del ||| and the Action Plan ||| 0.125 0.0732944 2.6679e-06 7.04772e-14 2.718 ||| 0-1 ||| 8 374827 +del ||| and the Action ||| 1 0.0732944 2.6679e-06 3.9154e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| and the Cohesion ||| 1 0.0732944 2.6679e-06 6.09062e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| and the Commission ||| 0.000123077 0.0732944 2.6679e-06 2.54109e-06 2.718 ||| 0-1 ||| 8125 374827 +del ||| and the Committee of ||| 0.00909091 0.130625 2.6679e-06 3.46158e-08 2.718 ||| 0-3 ||| 110 374827 +del ||| and the Community . Parliament ||| 1 0.0732944 2.6679e-06 1.22459e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| and the Community . ||| 0.0555556 0.0732944 2.6679e-06 2.13344e-09 2.718 ||| 0-1 ||| 18 374827 +del ||| and the Community ||| 0.00943396 0.0732944 2.6679e-06 7.04337e-07 2.718 ||| 0-1 ||| 106 374827 +del ||| and the Council to provide ||| 0.142857 0.0707819 2.6679e-06 1.91356e-10 2.718 ||| 0-2 ||| 7 374827 +del ||| and the Council to ||| 0.00163132 0.0707819 2.6679e-06 6.46909e-07 2.718 ||| 0-2 ||| 613 374827 +del ||| and the Council ||| 0.000304553 0.0707819 5.33579e-06 7.28024e-06 2.718 ||| 0-2 ||| 6567 374827 +del ||| and the Group of the ||| 0.0060241 0.0732944 2.6679e-06 4.72323e-09 2.718 ||| 0-1 ||| 166 374827 +del ||| and the Group of ||| 0.00531915 0.0732944 2.6679e-06 7.69359e-08 2.718 ||| 0-1 ||| 188 374827 +del ||| and the Group ||| 0.00446429 0.0732944 2.6679e-06 1.4152e-06 2.718 ||| 0-1 ||| 224 374827 +del ||| and the Internal Market , ||| 0.00628931 0.0732944 2.6679e-06 4.29695e-13 2.718 ||| 0-1 ||| 159 374827 +del ||| and the Internal Market . - ||| 0.5 0.0732944 2.6679e-06 4.11687e-17 2.718 ||| 0-1 ||| 2 374827 +del ||| and the Internal Market . ||| 0.0131579 0.0732944 2.6679e-06 1.0914e-14 2.718 ||| 0-1 ||| 76 374827 +del ||| and the Internal Market ||| 0.00582524 0.0732944 8.00369e-06 3.60317e-12 2.718 ||| 0-1 ||| 515 374827 +del ||| and the Internal ||| 0.00616016 0.0732944 8.00369e-06 1.20507e-07 2.718 ||| 0-1 ||| 487 374827 +del ||| and the Media ||| 0.00515464 0.0732944 2.6679e-06 7.04772e-08 2.718 ||| 0-1 ||| 194 374827 +del ||| and the fact ||| 0.000757576 0.0732944 2.6679e-06 1.27438e-05 2.718 ||| 0-1 ||| 1320 374827 +del ||| and the identity ||| 0.0833333 0.0732944 2.6679e-06 8.78789e-08 2.718 ||| 0-1 ||| 12 374827 +del ||| and the materials from which ||| 1 0.0911315 2.6679e-06 1.98204e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| and the materials from ||| 1 0.0911315 2.6679e-06 2.3333e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| and the next step is now up ||| 1 0.0732944 2.6679e-06 1.4595e-17 2.718 ||| 0-1 ||| 1 374827 +del ||| and the next step is now ||| 1 0.0732944 2.6679e-06 4.27943e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| and the next step is ||| 1 0.0732944 2.6679e-06 2.0775e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| and the next step ||| 0.285714 0.0732944 5.33579e-06 6.62866e-11 2.718 ||| 0-1 ||| 7 374827 +del ||| and the next ||| 0.0153846 0.0732944 5.33579e-06 4.49401e-07 2.718 ||| 0-1 ||| 130 374827 +del ||| and the reform of the financial management ||| 1 0.0732944 2.6679e-06 3.18833e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| and the reform of the financial ||| 1 0.0732944 2.6679e-06 7.26271e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| and the reform of the ||| 0.0196078 0.0732944 2.6679e-06 5.95304e-10 2.718 ||| 0-1 ||| 51 374827 +del ||| and the reform of ||| 0.0192308 0.0732944 2.6679e-06 9.69681e-09 2.718 ||| 0-1 ||| 52 374827 +del ||| and the reform ||| 0.012987 0.0732944 2.6679e-06 1.78368e-07 2.718 ||| 0-1 ||| 77 374827 +del ||| and the second-hand trade ||| 1 0.0732944 2.6679e-06 1.51569e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| and the second-hand ||| 1 0.0732944 2.6679e-06 1.74018e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| and the way in which it is ||| 0.0909091 0.0732944 2.6679e-06 9.50329e-13 2.718 ||| 0-1 ||| 11 374827 +del ||| and the way in which it ||| 0.1 0.0732944 2.6679e-06 3.03221e-11 2.718 ||| 0-1 ||| 10 374827 +del ||| and the way in which ||| 0.00480769 0.0732944 2.6679e-06 1.7051e-09 2.718 ||| 0-1 ||| 208 374827 +del ||| and the way in ||| 0.00452489 0.0732944 2.6679e-06 2.00727e-07 2.718 ||| 0-1 ||| 221 374827 +del ||| and the way ||| 0.00163666 0.0732944 2.6679e-06 9.37781e-06 2.718 ||| 0-1 ||| 611 374827 +del ||| and the world ||| 0.00319489 0.0732944 2.6679e-06 9.91031e-07 2.718 ||| 0-1 ||| 313 374827 +del ||| and the ||| 0.000516803 0.0732944 0.000186753 0.00435044 2.718 ||| 0-1 ||| 135448 374827 +del ||| and third phase of ||| 0.5 0.130625 2.6679e-06 4.04642e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| and this holds for the ||| 1 0.0435798 2.6679e-06 8.58867e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| and this too is ||| 0.0833333 0.0033154 2.6679e-06 1.22669e-09 2.718 ||| 0-1 ||| 12 374827 +del ||| and this too ||| 0.05 0.0033154 2.6679e-06 3.91399e-08 2.718 ||| 0-1 ||| 20 374827 +del ||| and this ||| 0.000219058 0.0033154 5.33579e-06 2.87582e-05 2.718 ||| 0-1 ||| 9130 374827 +del ||| and thus reflects the ||| 1 0.0732944 2.6679e-06 9.03343e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| and to ||| 3.74883e-05 0.0006066 2.6679e-06 1.66657e-05 2.718 ||| 0-1 ||| 26675 374827 +del ||| and traditional feature of the ||| 0.5 0.10196 2.6679e-06 3.36101e-13 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| and values of our civilization , which ||| 1 0.130625 2.6679e-06 1.19631e-19 2.718 ||| 0-2 ||| 1 374827 +del ||| and values of our civilization , ||| 1 0.130625 2.6679e-06 1.40832e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| and values of our civilization ||| 1 0.130625 2.6679e-06 1.18093e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| and values of our ||| 0.25 0.130625 2.6679e-06 1.68705e-10 2.718 ||| 0-2 ||| 4 374827 +del ||| and values of ||| 0.027027 0.130625 2.6679e-06 1.22303e-07 2.718 ||| 0-2 ||| 37 374827 +del ||| and we fully support the direction they ||| 1 0.0732944 2.6679e-06 5.66875e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| and we fully support the direction ||| 1 0.0732944 2.6679e-06 1.73675e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| and we fully support the ||| 0.2 0.0732944 2.6679e-06 1.91483e-12 2.718 ||| 0-4 ||| 5 374827 +del ||| and wild salmon , ||| 1 0.160156 2.6679e-06 1.09398e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| and wild salmon ||| 1 0.160156 2.6679e-06 9.17347e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| and with them is the winner ||| 1 0.0732944 2.6679e-06 2.61936e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| and with them is the ||| 1 0.0732944 2.6679e-06 2.33872e-09 2.718 ||| 0-4 ||| 1 374827 +del ||| and ||| 9.80001e-06 1.43e-05 4.00185e-05 2.5e-05 2.718 ||| 0-0 ||| 1.53061e+06 374827 +del ||| angry the ||| 1 0.0732944 2.6679e-06 1.00722e-06 2.718 ||| 0-1 ||| 1 374827 +del ||| animal ||| 0.000311624 0.0089031 2.6679e-06 9.85e-05 2.718 ||| 0-0 ||| 3209 374827 +del ||| animals ' ||| 0.0344828 0.0293692 2.6679e-06 1.93248e-07 2.718 ||| 0-1 ||| 29 374827 +del ||| annexed to the ||| 0.00689655 0.0732944 2.6679e-06 6.78961e-08 2.718 ||| 0-2 ||| 145 374827 +del ||| announced by the ||| 0.00719424 0.0597263 2.6679e-06 1.17375e-07 2.718 ||| 0-1 0-2 ||| 139 374827 +del ||| annual ||| 0.000196348 0.0008615 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 5093 374827 +del ||| another is ||| 0.00740741 5.06e-05 2.6679e-06 4.07434e-08 2.718 ||| 0-0 ||| 135 374827 +del ||| another of the ||| 0.0147059 0.10196 2.6679e-06 2.47014e-05 2.718 ||| 0-1 0-2 ||| 68 374827 +del ||| another of ||| 0.00636943 0.130625 2.6679e-06 7.1121e-05 2.718 ||| 0-1 ||| 157 374827 +del ||| another ||| 5.16742e-05 5.06e-05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 19352 374827 +del ||| answered by reference to the ||| 1 0.0732944 2.6679e-06 1.09186e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| answers , with the ||| 1 0.0389112 2.6679e-06 1.7027e-09 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| any further than the ||| 0.2 0.0313352 2.6679e-06 1.04955e-10 2.718 ||| 0-2 ||| 5 374827 +del ||| any further than ||| 0.0416667 0.0313352 2.6679e-06 1.7096e-09 2.718 ||| 0-2 ||| 24 374827 +del ||| any number of ||| 0.0294118 0.130625 2.6679e-06 2.20719e-07 2.718 ||| 0-2 ||| 34 374827 +del ||| any of the ||| 0.00166667 0.10196 2.6679e-06 0.00015493 2.718 ||| 0-1 0-2 ||| 600 374827 +del ||| any of ||| 0.000826446 0.130625 2.6679e-06 0.000446077 2.718 ||| 0-1 ||| 1210 374827 +del ||| any part of the ||| 0.0188679 0.10196 2.6679e-06 1.84707e-07 2.718 ||| 0-2 0-3 ||| 53 374827 +del ||| any point in the future ||| 1 0.0458111 2.6679e-06 3.29074e-12 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| any point in the ||| 0.125 0.0458111 2.6679e-06 1.23898e-08 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| any question of ||| 0.0243902 0.130625 2.6679e-06 3.6904e-07 2.718 ||| 0-2 ||| 41 374827 +del ||| any rate ||| 0.00154321 0.0046344 2.6679e-06 5.36831e-08 2.718 ||| 0-1 ||| 648 374827 +del ||| any ||| 2.2144e-05 1.87e-05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 45159 374827 +del ||| anyone representing the ||| 0.5 0.0732944 2.6679e-06 1.79673e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| anything about the keeping of animals ||| 1 0.130625 2.6679e-06 9.60081e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| anything about the keeping of ||| 1 0.130625 2.6679e-06 2.35892e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| anything other than ||| 0.00917431 0.0313352 2.6679e-06 4.75475e-10 2.718 ||| 0-2 ||| 109 374827 +del ||| anywhere else in the ||| 0.0857143 0.0458111 8.00369e-06 3.33762e-11 2.718 ||| 0-2 0-3 ||| 35 374827 +del ||| anywhere in the ||| 0.0242718 0.0458111 1.33395e-05 2.82849e-07 2.718 ||| 0-1 0-2 ||| 206 374827 +del ||| anywhere in ||| 0.00380228 0.0183279 2.6679e-06 8.14385e-07 2.718 ||| 0-1 ||| 263 374827 +del ||| anywhere under the ||| 1 0.0732944 2.6679e-06 3.76343e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| apart from the ||| 0.00128866 0.0732944 2.6679e-06 3.48455e-08 2.718 ||| 0-2 ||| 776 374827 +del ||| apart from ||| 0.000481696 0.0911315 2.6679e-06 1.35024e-06 2.718 ||| 0-1 ||| 2076 374827 +del ||| apartheid ||| 0.00961538 0.0811808 5.33579e-06 2.89e-05 2.718 ||| 0-0 ||| 208 374827 +del ||| apparatus of the ||| 0.111111 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-1 0-2 ||| 9 374827 +del ||| apparent that the ||| 0.0149254 0.0732944 2.6679e-06 2.0799e-07 2.718 ||| 0-2 ||| 67 374827 +del ||| appeal is also the ||| 1 0.0732944 2.6679e-06 1.65965e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| appeal to the ||| 0.0021645 0.0732944 2.6679e-06 9.32028e-07 2.718 ||| 0-2 ||| 462 374827 +del ||| appear in the ||| 0.00735294 0.0458111 2.6679e-06 8.18576e-07 2.718 ||| 0-1 0-2 ||| 136 374827 +del ||| appearance of the ||| 0.0416667 0.10196 2.6679e-06 1.14747e-06 2.718 ||| 0-1 0-2 ||| 24 374827 +del ||| appears , a Member of ||| 1 0.130625 2.6679e-06 4.19434e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| appears on the ||| 0.0416667 0.0732944 2.6679e-06 1.21307e-07 2.718 ||| 0-2 ||| 24 374827 +del ||| appears to come from all sides of ||| 1 0.0911315 2.6679e-06 8.04949e-19 2.718 ||| 0-3 ||| 1 374827 +del ||| appears to come from all sides ||| 1 0.0911315 2.6679e-06 1.48067e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| appears to come from all ||| 1 0.0911315 2.6679e-06 4.03451e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| appears to come from ||| 0.5 0.0911315 2.6679e-06 8.53792e-11 2.718 ||| 0-3 ||| 2 374827 +del ||| applaud the timing ||| 0.0833333 0.0732944 2.6679e-06 3.82047e-12 2.718 ||| 0-1 ||| 12 374827 +del ||| applaud the ||| 0.00574713 0.0732944 2.6679e-06 7.64095e-07 2.718 ||| 0-1 ||| 174 374827 +del ||| applicable in the ||| 0.0240964 0.0183279 5.33579e-06 3.98979e-08 2.718 ||| 0-1 ||| 83 374827 +del ||| applicable in ||| 0.00512821 0.0183279 2.6679e-06 6.4989e-07 2.718 ||| 0-1 ||| 195 374827 +del ||| application for criminal proceedings ||| 0.5 0.0138653 2.6679e-06 9.90134e-16 2.718 ||| 0-1 ||| 2 374827 +del ||| application for criminal ||| 0.5 0.0138653 2.6679e-06 2.72764e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| application for ||| 0.00398406 0.0138653 2.6679e-06 6.54111e-07 2.718 ||| 0-1 ||| 251 374827 +del ||| application of the ||| 0.00167224 0.10196 8.00369e-06 6.22915e-06 2.718 ||| 0-1 0-2 ||| 1794 374827 +del ||| application of ||| 0.00121102 0.130625 1.06716e-05 1.79351e-05 2.718 ||| 0-1 ||| 3303 374827 +del ||| applied by the ||| 0.01 0.0597263 2.6679e-06 6.08216e-07 2.718 ||| 0-1 0-2 ||| 100 374827 +del ||| applied in the ||| 0.00518135 0.0458111 2.6679e-06 1.01432e-06 2.718 ||| 0-1 0-2 ||| 193 374827 +del ||| applies both to the ||| 0.047619 0.0732944 2.6679e-06 4.28408e-09 2.718 ||| 0-3 ||| 21 374827 +del ||| applies to the ||| 0.00175747 0.0732944 2.6679e-06 2.58622e-06 2.718 ||| 0-2 ||| 569 374827 +del ||| apply at the ||| 0.2 0.0732944 2.6679e-06 2.09281e-07 2.718 ||| 0-2 ||| 5 374827 +del ||| apply the ||| 0.00280899 0.0732944 8.00369e-06 4.99787e-05 2.718 ||| 0-1 ||| 1068 374827 +del ||| apply to the ||| 0.00275482 0.0732944 2.6679e-06 4.44102e-06 2.718 ||| 0-2 ||| 363 374827 +del ||| applying the ||| 0.0013587 0.0732944 2.6679e-06 1.14962e-05 2.718 ||| 0-1 ||| 736 374827 +del ||| appointment of ||| 0.0015949 0.130625 2.6679e-06 3.39233e-06 2.718 ||| 0-1 ||| 627 374827 +del ||| appreciation of the ||| 0.00657895 0.10196 2.6679e-06 1.33189e-06 2.718 ||| 0-1 0-2 ||| 152 374827 +del ||| approach of the ||| 0.00645161 0.10196 2.6679e-06 2.24577e-05 2.718 ||| 0-1 0-2 ||| 155 374827 +del ||| approach the ||| 0.00436681 0.0732944 2.6679e-06 7.61316e-05 2.718 ||| 0-1 ||| 229 374827 +del ||| approaching the ||| 0.010101 0.0732944 2.6679e-06 1.38926e-06 2.718 ||| 0-1 ||| 99 374827 +del ||| appropriate that the ||| 0.0222222 0.0732944 2.6679e-06 7.86388e-07 2.718 ||| 0-2 ||| 45 374827 +del ||| appropriate to this ||| 0.0833333 0.0033154 2.6679e-06 2.74597e-08 2.718 ||| 0-2 ||| 12 374827 +del ||| appropriated by ||| 0.0666667 0.0461582 2.6679e-06 4.04245e-08 2.718 ||| 0-1 ||| 15 374827 +del ||| appropriations from ||| 0.027027 0.0911315 2.6679e-06 3.20763e-07 2.718 ||| 0-1 ||| 37 374827 +del ||| appropriations which the Council ||| 0.333333 0.0707819 2.6679e-06 7.30703e-11 2.718 ||| 0-3 ||| 3 374827 +del ||| approval of the ||| 0.00191755 0.10196 5.33579e-06 3.06335e-06 2.718 ||| 0-1 0-2 ||| 1043 374827 +del ||| approval of ||| 0.000919118 0.130625 2.6679e-06 8.82007e-06 2.718 ||| 0-1 ||| 1088 374827 +del ||| approve of , is ||| 1 0.130625 2.6679e-06 2.45864e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| approve of , ||| 0.166667 0.130625 2.6679e-06 7.84478e-07 2.718 ||| 0-1 ||| 6 374827 +del ||| approve of ||| 0.0046729 0.130625 2.6679e-06 6.57818e-06 2.718 ||| 0-1 ||| 214 374827 +del ||| approve the ||| 0.00175439 0.0732944 2.6679e-06 7.74514e-06 2.718 ||| 0-1 ||| 570 374827 +del ||| approved by ||| 0.000820345 0.0461582 2.6679e-06 7.3896e-07 2.718 ||| 0-1 ||| 1219 374827 +del ||| approximately ||| 0.000517331 0.001928 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 1933 374827 +del ||| ardently defend the ||| 0.25 0.0732944 2.6679e-06 2.90356e-12 2.718 ||| 0-2 ||| 4 374827 +del ||| are , namely the ||| 1 0.0732944 2.6679e-06 1.00425e-07 2.718 ||| 0-3 ||| 1 374827 +del ||| are all in ||| 0.02 0.0183279 2.6679e-06 1.93341e-06 2.718 ||| 0-2 ||| 50 374827 +del ||| are all too aware of this ||| 1 0.0669701 2.6679e-06 9.17942e-15 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| are by ||| 0.00740741 0.0461582 2.6679e-06 0.00024534 2.718 ||| 0-1 ||| 135 374827 +del ||| are concerned here with ||| 0.0357143 0.0045281 2.6679e-06 9.41934e-11 2.718 ||| 0-3 ||| 28 374827 +del ||| are currently measured in all the Member ||| 1 0.0732944 2.6679e-06 3.41223e-19 2.718 ||| 0-5 ||| 1 374827 +del ||| are currently measured in all the ||| 1 0.0732944 2.6679e-06 6.62184e-16 2.718 ||| 0-5 ||| 1 374827 +del ||| are determinants of ||| 1 0.130625 5.33579e-06 4.9233e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| are disappearing from the ||| 0.25 0.0732944 2.6679e-06 3.39454e-11 2.718 ||| 0-3 ||| 4 374827 +del ||| are expressed by the ||| 0.5 0.0597263 2.6679e-06 8.28244e-09 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| are for the ||| 0.015625 0.0732944 2.6679e-06 4.05015e-05 2.718 ||| 0-2 ||| 64 374827 +del ||| are from the ||| 0.027027 0.082213 2.6679e-06 0.000114212 2.718 ||| 0-1 0-2 ||| 37 374827 +del ||| are getting from the ||| 0.25 0.082213 2.6679e-06 1.32714e-08 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| are going on ||| 0.0172414 0.0140673 2.6679e-06 1.27348e-07 2.718 ||| 0-2 ||| 58 374827 +del ||| are going to win the ||| 1 0.0732944 2.6679e-06 6.49191e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| are happening ||| 0.0119048 0.0007937 2.6679e-06 5.91735e-08 2.718 ||| 0-1 ||| 84 374827 +del ||| are in a ||| 0.00371747 0.0183279 5.33579e-06 1.8136e-05 2.718 ||| 0-1 ||| 538 374827 +del ||| are in favour of ||| 0.00251889 0.0183279 2.6679e-06 7.19567e-09 2.718 ||| 0-1 ||| 397 374827 +del ||| are in favour ||| 0.00223214 0.0183279 2.6679e-06 1.32361e-07 2.718 ||| 0-1 ||| 448 374827 +del ||| are in the ||| 0.00902062 0.0458111 1.86753e-05 0.000142105 2.718 ||| 0-1 0-2 ||| 776 374827 +del ||| are in ||| 0.00178293 0.0183279 2.13432e-05 0.000409153 2.718 ||| 0-1 ||| 4487 374827 +del ||| are inside the ||| 0.125 0.0732944 2.6679e-06 6.42906e-08 2.718 ||| 0-2 ||| 8 374827 +del ||| are involved in ||| 0.00295858 0.0183279 2.6679e-06 1.41485e-07 2.718 ||| 0-2 ||| 338 374827 +del ||| are justified , in ||| 1 0.0183279 2.6679e-06 9.31955e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| are lax about ||| 1 0.0156863 2.6679e-06 1.13731e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| are lax ||| 0.2 0.0156863 2.6679e-06 8.04153e-08 2.718 ||| 0-1 ||| 5 374827 +del ||| are laying down in the ||| 1 0.0458111 2.6679e-06 2.07336e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| are many different types of ||| 1 0.130625 2.6679e-06 1.55975e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| are members of the ||| 0.00990099 0.10196 2.6679e-06 2.29287e-07 2.718 ||| 0-2 0-3 ||| 101 374827 +del ||| are met for a ||| 1 0.0138653 2.6679e-06 5.54961e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| are met for ||| 1 0.0138653 2.6679e-06 1.252e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| are new and pioneering and the ||| 1 0.0732944 2.6679e-06 1.0872e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| are not allowed to be hidden in ||| 1 0.0183279 2.6679e-06 2.6222e-18 2.718 ||| 0-6 ||| 1 374827 +del ||| are not nationals of ||| 0.111111 0.130625 2.6679e-06 1.71142e-10 2.718 ||| 0-3 ||| 9 374827 +del ||| are not sufficiently serviced ||| 0.25 0.0526316 2.6679e-06 1.25929e-15 2.718 ||| 0-3 ||| 4 374827 +del ||| are not worthy of the ||| 0.25 0.10196 2.6679e-06 1.05082e-10 2.718 ||| 0-3 0-4 ||| 4 374827 +del ||| are of the ||| 0.0131579 0.130625 5.33579e-06 0.000274773 2.718 ||| 0-1 ||| 152 374827 +del ||| are of ||| 0.00576784 0.130625 2.13432e-05 0.00447573 2.718 ||| 0-1 ||| 1387 374827 +del ||| are on the ||| 0.00877193 0.0436809 1.33395e-05 5.16828e-05 2.718 ||| 0-1 0-2 ||| 570 374827 +del ||| are organised in the ||| 0.2 0.0458111 2.6679e-06 3.68053e-09 2.718 ||| 0-2 0-3 ||| 5 374827 +del ||| are pushed out of the ||| 1 0.10196 2.6679e-06 1.09559e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| are required in the ||| 0.25 0.0458111 2.6679e-06 2.25521e-08 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| are responsible for the ||| 0.00729927 0.0138653 2.6679e-06 1.48214e-09 2.718 ||| 0-2 ||| 137 374827 +del ||| are responsible for ||| 0.00172117 0.0138653 2.6679e-06 2.41423e-08 2.718 ||| 0-2 ||| 581 374827 +del ||| are seeing in the areas of the ||| 1 0.10196 2.6679e-06 2.49216e-14 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| are set to ||| 0.0212766 0.0006066 2.6679e-06 1.17974e-08 2.718 ||| 0-2 ||| 47 374827 +del ||| are similar to those in ||| 0.5 0.0183279 2.6679e-06 1.06093e-12 2.718 ||| 0-4 ||| 2 374827 +del ||| are so lax ||| 0.25 0.0156863 2.6679e-06 1.82519e-10 2.718 ||| 0-2 ||| 4 374827 +del ||| are taken out of the ||| 1 0.10196 2.6679e-06 5.42736e-09 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| are taking place in ||| 0.0140845 0.0183279 2.6679e-06 2.61705e-10 2.718 ||| 0-3 ||| 71 374827 +del ||| are talking about ||| 0.00208768 0.0101916 2.6679e-06 2.33066e-09 2.718 ||| 0-2 ||| 479 374827 +del ||| are the indigenous people of ||| 0.25 0.0732944 2.6679e-06 1.0843e-12 2.718 ||| 0-1 ||| 4 374827 +del ||| are the indigenous people ||| 0.25 0.0732944 2.6679e-06 1.99451e-11 2.718 ||| 0-1 ||| 4 374827 +del ||| are the indigenous ||| 0.25 0.0732944 2.6679e-06 2.26598e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| are the real prisoners of ||| 1 0.130625 2.6679e-06 6.03066e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| are the ||| 0.000905563 0.0732944 1.86753e-05 0.00526972 2.718 ||| 0-1 ||| 7730 374827 +del ||| are they making use of the ||| 1 0.10196 2.6679e-06 9.4902e-13 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| are threatened by ||| 0.0217391 0.0461582 2.6679e-06 1.93818e-09 2.718 ||| 0-2 ||| 46 374827 +del ||| are to have any ||| 0.05 0.0006066 2.6679e-06 3.65099e-10 2.718 ||| 0-1 ||| 20 374827 +del ||| are to have ||| 0.00854701 0.0006066 2.6679e-06 2.41436e-07 2.718 ||| 0-1 ||| 117 374827 +del ||| are to ||| 0.000615574 0.0006066 5.33579e-06 2.01873e-05 2.718 ||| 0-1 ||| 3249 374827 +del ||| are universal ||| 0.0151515 0.0040559 2.6679e-06 1.79038e-07 2.718 ||| 0-1 ||| 66 374827 +del ||| are very conscious of ||| 0.25 0.130625 2.6679e-06 1.29258e-10 2.718 ||| 0-3 ||| 4 374827 +del ||| are victims of ||| 0.00469484 0.130625 2.6679e-06 1.57993e-07 2.718 ||| 0-2 ||| 213 374827 +del ||| are viewed in respect of ||| 1 0.130625 2.6679e-06 9.98785e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| are you going to wait for ||| 0.1 0.0138653 2.6679e-06 1.08211e-15 2.718 ||| 0-5 ||| 10 374827 +del ||| are you on the ||| 0.5 0.0436809 2.6679e-06 1.66868e-07 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| area in ||| 0.000940734 0.0183279 2.6679e-06 1.11991e-05 2.718 ||| 0-1 ||| 1063 374827 +del ||| area of the ||| 0.00453515 0.10196 5.33579e-06 4.25488e-05 2.718 ||| 0-1 0-2 ||| 441 374827 +del ||| area of ||| 0.00145117 0.130625 2.6679e-05 0.000122507 2.718 ||| 0-1 ||| 6891 374827 +del ||| area with the ||| 0.0526316 0.0732944 2.6679e-06 9.22344e-07 2.718 ||| 0-2 ||| 19 374827 +del ||| area ||| 3.39271e-05 3.47e-05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 29475 374827 +del ||| areas of the ||| 0.00440529 0.10196 5.33579e-06 2.34515e-05 2.718 ||| 0-1 0-2 ||| 454 374827 +del ||| arise from the ||| 0.0126582 0.082213 2.6679e-06 3.27444e-07 2.718 ||| 0-1 0-2 ||| 79 374827 +del ||| arisen in the drafting of ||| 1 0.130625 2.6679e-06 8.49062e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| arises out of ||| 0.0833333 0.130625 2.6679e-06 2.31632e-08 2.718 ||| 0-2 ||| 12 374827 +del ||| arising from ||| 0.00239808 0.0911315 5.33579e-06 6.3069e-07 2.718 ||| 0-1 ||| 834 374827 +del ||| arms of the ||| 0.0107527 0.10196 2.6679e-06 2.83795e-06 2.718 ||| 0-1 0-2 ||| 93 374827 +del ||| arms ||| 0.000298151 0.0026339 2.6679e-06 1.58e-05 2.718 ||| 0-0 ||| 3354 374827 +del ||| army ||| 0.000619963 0.0254072 2.6679e-06 5.12e-05 2.718 ||| 0-0 ||| 1613 374827 +del ||| around the small ||| 1 0.0732944 2.6679e-06 5.92622e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| around the ||| 0.0394299 0.0418629 0.000221435 5.06386e-05 2.718 ||| 0-0 0-1 ||| 2105 374827 +del ||| around ||| 0.000988421 0.0104314 1.86753e-05 0.0001458 2.718 ||| 0-0 ||| 7082 374827 +del ||| arrangement , either using the ||| 1 0.0732944 2.6679e-06 4.01237e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| arrangement ||| 0.00214133 0.0042553 5.33579e-06 5.3e-06 2.718 ||| 0-0 ||| 934 374827 +del ||| arranging the ||| 0.1 0.0732944 2.6679e-06 1.63238e-06 2.718 ||| 0-1 ||| 10 374827 +del ||| arrest of ||| 0.0042735 0.130625 2.6679e-06 4.0413e-06 2.718 ||| 0-1 ||| 234 374827 +del ||| arrived at by the ||| 0.037037 0.0597263 2.6679e-06 3.90375e-10 2.718 ||| 0-2 0-3 ||| 27 374827 +del ||| art careful , ||| 0.5 0.0534351 2.6679e-06 1.51954e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| art careful ||| 0.5 0.0534351 2.6679e-06 1.2742e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| art ||| 0.0038835 0.0534351 5.33579e-06 4.6e-05 2.718 ||| 0-0 ||| 515 374827 +del ||| article ||| 0.000754717 0.029537 5.33579e-06 0.0001458 2.718 ||| 0-0 ||| 2650 374827 +del ||| as I am of the ||| 0.25 0.10196 2.6679e-06 9.44731e-09 2.718 ||| 0-3 0-4 ||| 4 374827 +del ||| as a European institution , the Council ||| 1 0.0732944 2.6679e-06 5.91405e-16 2.718 ||| 0-5 ||| 1 374827 +del ||| as a European institution , the ||| 1 0.0732944 2.6679e-06 1.71025e-12 2.718 ||| 0-5 ||| 1 374827 +del ||| as a matter of urgency , ||| 0.00502513 0.130625 2.6679e-06 4.27571e-13 2.718 ||| 0-3 ||| 199 374827 +del ||| as a matter of urgency ||| 0.0017762 0.130625 2.6679e-06 3.58536e-12 2.718 ||| 0-3 ||| 563 374827 +del ||| as a matter of ||| 0.00525762 0.130625 1.33395e-05 1.38431e-07 2.718 ||| 0-3 ||| 951 374827 +del ||| as a member of the ||| 0.00149925 0.130625 2.6679e-06 1.36468e-09 2.718 ||| 0-3 ||| 667 374827 +del ||| as a member of ||| 0.00163934 0.130625 2.6679e-06 2.2229e-08 2.718 ||| 0-3 ||| 610 374827 +del ||| as a point of ||| 0.0178571 0.130625 2.6679e-06 1.16722e-07 2.718 ||| 0-3 ||| 56 374827 +del ||| as a proportion from ||| 1 0.0911315 2.6679e-06 2.96056e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| as a result of his or her ||| 1 0.130625 2.6679e-06 6.56714e-18 2.718 ||| 0-3 ||| 1 374827 +del ||| as a result of his or ||| 1 0.130625 2.6679e-06 2.4135e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| as a result of his ||| 0.0555556 0.130625 2.6679e-06 2.111e-11 2.718 ||| 0-3 ||| 18 374827 +del ||| as a result of the ||| 0.00193174 0.10196 8.00369e-06 2.43988e-08 2.718 ||| 0-3 0-4 ||| 1553 374827 +del ||| as a result of ||| 0.000739827 0.130625 8.00369e-06 7.02495e-08 2.718 ||| 0-3 ||| 4055 374827 +del ||| as a result ||| 0.000145921 0.0008087 2.6679e-06 4.53717e-09 2.718 ||| 0-1 ||| 6853 374827 +del ||| as a ||| 0.000436173 0.0008087 4.00185e-05 8.61762e-06 2.718 ||| 0-1 ||| 34390 374827 +del ||| as amended by the ||| 0.0277778 0.0732944 2.6679e-06 2.00957e-10 2.718 ||| 0-3 ||| 36 374827 +del ||| as an ||| 0.000350508 0.0008398 5.33579e-06 1.83577e-06 2.718 ||| 0-1 ||| 5706 374827 +del ||| as at ||| 0.00436681 0.0010184 2.6679e-06 2.49293e-06 2.718 ||| 0-1 ||| 229 374827 +del ||| as by the ||| 0.0178571 0.0597263 2.6679e-06 5.73082e-05 2.718 ||| 0-1 0-2 ||| 56 374827 +del ||| as contained in the ||| 0.0416667 0.0458111 2.6679e-06 6.49896e-09 2.718 ||| 0-2 0-3 ||| 24 374827 +del ||| as early ||| 0.00623053 0.0065475 5.33579e-06 4.95934e-07 2.718 ||| 0-1 ||| 321 374827 +del ||| as far as the ||| 0.00195886 0.0732944 1.06716e-05 2.46905e-08 2.718 ||| 0-3 ||| 2042 374827 +del ||| as far ||| 0.000471698 0.0004965 5.33579e-06 1.75727e-07 2.718 ||| 0-0 ||| 4240 374827 +del ||| as for example when the ||| 0.333333 0.0732944 2.6679e-06 3.96388e-12 2.718 ||| 0-4 ||| 3 374827 +del ||| as for the ||| 0.00409556 0.0435798 1.60074e-05 3.81294e-05 2.718 ||| 0-1 0-2 ||| 1465 374827 +del ||| as for ||| 0.00188466 0.0138653 1.33395e-05 0.000109783 2.718 ||| 0-1 ||| 2653 374827 +del ||| as from the ||| 0.015625 0.082213 2.6679e-06 7.68131e-05 2.718 ||| 0-1 0-2 ||| 64 374827 +del ||| as from ||| 0.00234192 0.045814 2.6679e-06 5.57868e-06 2.718 ||| 0-0 0-1 ||| 427 374827 +del ||| as if it were lord of the ||| 1 0.10196 2.6679e-06 3.8962e-17 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| as in ||| 0.0019802 0.0183279 1.33395e-05 0.000275176 2.718 ||| 0-1 ||| 2525 374827 +del ||| as it does for ||| 0.111111 0.0138653 2.6679e-06 1.36934e-09 2.718 ||| 0-3 ||| 9 374827 +del ||| as it is , of ||| 0.333333 0.130625 2.6679e-06 2.00073e-07 2.718 ||| 0-4 ||| 3 374827 +del ||| as long as the ||| 0.0037037 0.0732944 2.6679e-06 1.22349e-08 2.718 ||| 0-3 ||| 270 374827 +del ||| as many ||| 0.000705219 0.0004965 2.6679e-06 8.83654e-08 2.718 ||| 0-0 ||| 1418 374827 +del ||| as matter of course , ||| 1 0.130625 2.6679e-06 4.69903e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| as matter of course ||| 1 0.130625 2.6679e-06 3.94033e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| as matter of ||| 0.5 0.130625 2.6679e-06 3.12303e-06 2.718 ||| 0-2 ||| 2 374827 +del ||| as much ||| 0.00146413 0.0004965 8.00369e-06 2.58352e-07 2.718 ||| 0-0 ||| 2049 374827 +del ||| as never before , ||| 0.142857 0.0004965 2.6679e-06 4.42202e-13 2.718 ||| 0-0 ||| 7 374827 +del ||| as never before ||| 0.0294118 0.0004965 2.6679e-06 3.70804e-12 2.718 ||| 0-0 ||| 34 374827 +del ||| as never ||| 0.0333333 0.0004965 2.6679e-06 1.48262e-08 2.718 ||| 0-0 ||| 30 374827 +del ||| as on the ||| 0.00699301 0.0732944 2.6679e-06 2.37139e-05 2.718 ||| 0-2 ||| 143 374827 +del ||| as opposed to the ||| 0.0131579 0.0732944 2.6679e-06 6.58197e-09 2.718 ||| 0-3 ||| 76 374827 +del ||| as part of our 10th EP / ||| 1 0.130625 2.6679e-06 2.27712e-24 2.718 ||| 0-2 ||| 1 374827 +del ||| as part of our 10th EP ||| 1 0.130625 2.6679e-06 9.90051e-21 2.718 ||| 0-2 ||| 1 374827 +del ||| as part of our 10th ||| 1 0.130625 2.6679e-06 1.9801e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| as part of our ||| 0.00900901 0.130625 2.6679e-06 4.95025e-09 2.718 ||| 0-2 ||| 111 374827 +del ||| as part of ||| 0.00144718 0.130625 8.00369e-06 3.5887e-06 2.718 ||| 0-2 ||| 2073 374827 +del ||| as possible in the ||| 0.0178571 0.0458111 2.6679e-06 7.66591e-08 2.718 ||| 0-2 0-3 ||| 56 374827 +del ||| as proposed by the ||| 0.00392157 0.0597263 2.6679e-06 6.39559e-09 2.718 ||| 0-2 0-3 ||| 255 374827 +del ||| as reflected in the ||| 0.0285714 0.0458111 2.6679e-06 1.93057e-09 2.718 ||| 0-2 0-3 ||| 35 374827 +del ||| as regards the fee ||| 0.5 0.0732944 2.6679e-06 3.37403e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| as regards the undoubtably ||| 1 0.0732944 2.6679e-06 1.98472e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| as regards the ||| 0.00222627 0.0732944 2.93469e-05 4.96181e-07 2.718 ||| 0-2 ||| 4941 374827 +del ||| as regards ||| 8.32224e-05 0.0004965 2.6679e-06 3.6036e-08 2.718 ||| 0-0 ||| 12016 374827 +del ||| as requested by ||| 0.0103093 0.0461582 2.6679e-06 2.97006e-09 2.718 ||| 0-2 ||| 97 374827 +del ||| as safety and the materials from which ||| 1 0.0911315 2.6679e-06 1.02544e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| as safety and the materials from ||| 1 0.0911315 2.6679e-06 1.20716e-16 2.718 ||| 0-5 ||| 1 374827 +del ||| as set out by the ||| 0.0434783 0.0597263 2.6679e-06 1.28284e-10 2.718 ||| 0-3 0-4 ||| 23 374827 +del ||| as set out in ||| 0.00431034 0.0183279 2.6679e-06 6.15977e-10 2.718 ||| 0-3 ||| 232 374827 +del ||| as shows it in a ||| 1 0.0183279 2.6679e-06 8.65466e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| as shows it in ||| 1 0.0183279 2.6679e-06 1.95251e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| as soon as the ||| 0.00555556 0.0732944 2.6679e-06 3.33088e-09 2.718 ||| 0-3 ||| 180 374827 +del ||| as such , in ||| 0.111111 0.0183279 2.6679e-06 6.78931e-08 2.718 ||| 0-3 ||| 9 374827 +del ||| as such of ||| 1 0.130625 2.6679e-06 6.2277e-06 2.718 ||| 0-2 ||| 1 374827 +del ||| as that of the ||| 0.0196078 0.10196 2.6679e-06 1.75865e-05 2.718 ||| 0-2 0-3 ||| 51 374827 +del ||| as the European ||| 0.015873 0.0400553 2.6679e-06 1.08834e-05 2.718 ||| 0-1 0-2 ||| 63 374827 +del ||| as the adoption of the ||| 0.142857 0.10196 2.6679e-06 2.95886e-09 2.718 ||| 0-3 0-4 ||| 7 374827 +del ||| as the beneficiaries ||| 0.333333 0.0732944 2.6679e-06 1.13413e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| as the contest ||| 1 0.0732944 2.6679e-06 1.77207e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| as the guiding ||| 1 0.0732944 2.6679e-06 3.3315e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| as the majority of ||| 0.0416667 0.130625 2.6679e-06 7.44738e-09 2.718 ||| 0-3 ||| 24 374827 +del ||| as the one by ||| 0.333333 0.0597263 2.6679e-06 2.38861e-07 2.718 ||| 0-1 0-3 ||| 3 374827 +del ||| as the outcomes of the ||| 1 0.10196 2.6679e-06 1.41204e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| as the rapporteur ||| 0.00266667 0.0732944 2.6679e-06 2.56242e-07 2.718 ||| 0-1 ||| 375 374827 +del ||| as the result of the ||| 0.0555556 0.10196 2.6679e-06 3.37926e-08 2.718 ||| 0-3 0-4 ||| 18 374827 +del ||| as the successor ||| 0.2 0.0732944 2.6679e-06 1.41766e-08 2.718 ||| 0-1 ||| 5 374827 +del ||| as the ||| 0.00528011 0.0732944 0.00026679 0.00354415 2.718 ||| 0-1 ||| 18939 374827 +del ||| as they are of the ||| 1 0.130625 2.6679e-06 9.15191e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| as they are of ||| 0.333333 0.130625 2.6679e-06 1.49074e-07 2.718 ||| 0-3 ||| 3 374827 +del ||| as they ||| 0.000401606 0.0004965 2.6679e-06 8.40154e-07 2.718 ||| 0-0 ||| 2490 374827 +del ||| as this ||| 0.000513611 0.0033154 2.6679e-06 2.34283e-05 2.718 ||| 0-1 ||| 1947 374827 +del ||| as those of the ||| 0.0322581 0.10196 2.6679e-06 7.57027e-07 2.718 ||| 0-2 0-3 ||| 31 374827 +del ||| as those of ||| 0.0224719 0.130625 5.33579e-06 2.17965e-06 2.718 ||| 0-2 ||| 89 374827 +del ||| as to how ||| 0.00158228 0.0015352 2.6679e-06 9.28506e-08 2.718 ||| 0-2 ||| 632 374827 +del ||| as to its ||| 0.0227273 0.0035806 2.6679e-06 4.43035e-07 2.718 ||| 0-2 ||| 44 374827 +del ||| as to our ||| 0.0333333 0.001535 2.6679e-06 2.70391e-07 2.718 ||| 0-2 ||| 30 374827 +del ||| as to the ||| 0.00995475 0.0732944 2.93469e-05 0.000314927 2.718 ||| 0-2 ||| 1105 374827 +del ||| as to ||| 0.000164447 0.0004965 2.6679e-06 2.28721e-05 2.718 ||| 0-0 ||| 6081 374827 +del ||| as we copy the ||| 0.5 0.0732944 2.6679e-06 3.90272e-10 2.718 ||| 0-3 ||| 2 374827 +del ||| as we have the ||| 0.166667 0.0732944 2.6679e-06 4.81194e-07 2.718 ||| 0-3 ||| 6 374827 +del ||| as well as for the ||| 0.00680272 0.0435798 2.6679e-06 6.16937e-10 2.718 ||| 0-3 0-4 ||| 147 374827 +del ||| as well as the ||| 0.00101729 0.0732944 8.00369e-06 5.73447e-08 2.718 ||| 0-3 ||| 2949 374827 +del ||| as well ||| 0.000277412 0.0004965 1.06716e-05 4.08133e-07 2.718 ||| 0-0 ||| 14419 374827 +del ||| as ||| 0.000408804 0.0004965 0.000285465 0.0002574 2.718 ||| 0-0 ||| 261739 374827 +del ||| asbestos ||| 0.00302115 0.0796646 2.6679e-06 4.99e-05 2.718 ||| 0-0 ||| 331 374827 +del ||| aside for the ||| 0.04 0.0435798 2.6679e-06 2.63428e-07 2.718 ||| 0-1 0-2 ||| 25 374827 +del ||| aside for ||| 0.00980392 0.0138653 2.6679e-06 7.58467e-07 2.718 ||| 0-1 ||| 102 374827 +del ||| aside the ||| 0.00543478 0.0732944 2.6679e-06 2.44858e-05 2.718 ||| 0-1 ||| 184 374827 +del ||| ask of ||| 0.0322581 0.130625 2.6679e-06 4.05605e-05 2.718 ||| 0-1 ||| 31 374827 +del ||| ask the ||| 0.00105597 0.0732944 5.33579e-06 4.77559e-05 2.718 ||| 0-1 ||| 1894 374827 +del ||| ask what the ||| 0.0769231 0.0732944 2.6679e-06 6.70063e-08 2.718 ||| 0-2 ||| 13 374827 +del ||| asked by ||| 0.00909091 0.0461582 2.6679e-06 1.22244e-06 2.718 ||| 0-1 ||| 110 374827 +del ||| asked for ||| 0.000938967 0.0138653 2.6679e-06 8.13335e-07 2.718 ||| 0-1 ||| 1065 374827 +del ||| aspect 's relating to the ||| 1 0.0732944 2.6679e-06 4.71118e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| aspect of the ||| 0.0030303 0.10196 2.6679e-06 7.22295e-06 2.718 ||| 0-1 0-2 ||| 330 374827 +del ||| aspect of ||| 0.00201005 0.130625 5.33579e-06 2.07965e-05 2.718 ||| 0-1 ||| 995 374827 +del ||| aspects he includes in his ||| 1 0.0183279 2.6679e-06 1.45082e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| aspects he includes in ||| 1 0.0183279 2.6679e-06 4.82803e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| aspects of ||| 0.00102987 0.130625 5.33579e-06 2.07965e-05 2.718 ||| 0-1 ||| 1942 374827 +del ||| aspirations of the ||| 0.015873 0.10196 2.6679e-06 3.68831e-07 2.718 ||| 0-1 0-2 ||| 63 374827 +del ||| assent . so Parliament is being asked ||| 1 0.0181517 2.6679e-06 1.68111e-21 2.718 ||| 0-3 ||| 1 374827 +del ||| assent . so Parliament is being ||| 1 0.0181517 2.6679e-06 2.22369e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| assent . so Parliament is ||| 1 0.0181517 2.6679e-06 7.81392e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| assent . so Parliament ||| 1 0.0181517 2.6679e-06 2.49319e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| assertions of the ||| 0.333333 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| assess the ||| 0.00110375 0.0732944 2.6679e-06 5.38339e-06 2.718 ||| 0-1 ||| 906 374827 +del ||| assessing the ||| 0.00182482 0.0732944 2.6679e-06 1.49346e-06 2.718 ||| 0-1 ||| 548 374827 +del ||| assessment by ||| 0.0263158 0.0461582 2.6679e-06 7.03386e-07 2.718 ||| 0-1 ||| 38 374827 +del ||| assessment of the ||| 0.00131234 0.10196 2.6679e-06 4.45671e-06 2.718 ||| 0-1 0-2 ||| 762 374827 +del ||| assessment of ||| 0.000809717 0.130625 2.6679e-06 1.28319e-05 2.718 ||| 0-1 ||| 1235 374827 +del ||| assessment ||| 0.000614251 0.0204279 1.33395e-05 0.0001668 2.718 ||| 0-0 ||| 8140 374827 +del ||| assessments are to ||| 0.5 0.0335718 2.6679e-06 1.07992e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| assessments are ||| 0.0526316 0.0335718 2.6679e-06 1.21533e-06 2.718 ||| 0-0 ||| 19 374827 +del ||| assessments they make as ||| 0.5 0.0335718 2.6679e-06 4.63628e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| assessments they make ||| 0.5 0.0335718 2.6679e-06 4.54342e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| assessments they ||| 0.5 0.0335718 2.6679e-06 2.61446e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| assessments ||| 0.0023175 0.0335718 1.06716e-05 8.01e-05 2.718 ||| 0-0 ||| 1726 374827 +del ||| assets the ||| 0.333333 0.0732944 2.6679e-06 3.88994e-06 2.718 ||| 0-1 ||| 3 374827 +del ||| assist in the ||| 0.0135135 0.0732944 2.6679e-06 1.39018e-07 2.718 ||| 0-2 ||| 74 374827 +del ||| assistance in the ||| 0.0107527 0.0458111 2.6679e-06 4.65483e-07 2.718 ||| 0-1 0-2 ||| 93 374827 +del ||| assistance provided by the ||| 0.0714286 0.0597263 2.6679e-06 6.39735e-11 2.718 ||| 0-2 0-3 ||| 14 374827 +del ||| assisted by the ||| 0.027027 0.0597263 2.6679e-06 2.02177e-08 2.718 ||| 0-1 0-2 ||| 37 374827 +del ||| associate of the ||| 0.25 0.10196 2.6679e-06 6.65945e-07 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| associated with the ||| 0.00519031 0.0732944 8.00369e-06 1.14377e-07 2.718 ||| 0-2 ||| 578 374827 +del ||| associated with ||| 0.00108519 0.0045281 5.33579e-06 9.80148e-08 2.718 ||| 0-1 ||| 1843 374827 +del ||| assumed by ||| 0.0263158 0.0461582 2.6679e-06 2.10207e-07 2.718 ||| 0-1 ||| 38 374827 +del ||| assumed responsibility for ||| 0.05 0.0138653 2.6679e-06 1.61537e-11 2.718 ||| 0-2 ||| 20 374827 +del ||| assumed ||| 0.0017094 0.0130719 2.6679e-06 1.31e-05 2.718 ||| 0-0 ||| 585 374827 +del ||| assurance from the ||| 0.0434783 0.0911315 2.6679e-06 1.34386e-08 2.718 ||| 0-1 ||| 23 374827 +del ||| assurance from ||| 0.0333333 0.0911315 2.6679e-06 2.18899e-07 2.718 ||| 0-1 ||| 30 374827 +del ||| assured the ||| 0.08 0.0732944 5.33579e-06 3.50789e-06 2.718 ||| 0-1 ||| 25 374827 +del ||| at a ||| 0.000353815 0.0010184 8.00369e-06 1.08288e-05 2.718 ||| 0-0 ||| 8479 374827 +del ||| at all about the ||| 0.0666667 0.041743 2.6679e-06 9.64952e-09 2.718 ||| 0-2 0-3 ||| 15 374827 +del ||| at all from ||| 0.0588235 0.0911315 2.6679e-06 4.28851e-07 2.718 ||| 0-2 ||| 17 374827 +del ||| at all in the ||| 0.0465116 0.0458111 5.33579e-06 1.85324e-07 2.718 ||| 0-2 0-3 ||| 43 374827 +del ||| at all just how ||| 1 0.0056007 2.6679e-06 2.32892e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| at all just ||| 1 0.0056007 2.6679e-06 6.4981e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| at all on the ||| 0.0666667 0.0436809 2.6679e-06 6.74009e-08 2.718 ||| 0-2 0-3 ||| 15 374827 +del ||| at any point in the future ||| 1 0.0458111 2.6679e-06 1.37796e-14 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| at any point in the ||| 0.25 0.0458111 2.6679e-06 5.18812e-11 2.718 ||| 0-3 0-4 ||| 4 374827 +del ||| at between ||| 0.0434783 0.0028314 2.6679e-06 8.52555e-07 2.718 ||| 0-1 ||| 23 374827 +del ||| at both the ||| 0.0322581 0.0732944 2.6679e-06 2.40913e-06 2.718 ||| 0-2 ||| 31 374827 +del ||| at by the ||| 0.0909091 0.0597263 2.6679e-06 2.35166e-05 2.718 ||| 0-1 0-2 ||| 11 374827 +del ||| at ensuring optimum results from work in ||| 1 0.0911315 2.6679e-06 2.43302e-23 2.718 ||| 0-4 ||| 1 374827 +del ||| at ensuring optimum results from work ||| 1 0.0911315 2.6679e-06 1.13669e-21 2.718 ||| 0-4 ||| 1 374827 +del ||| at ensuring optimum results from ||| 1 0.0911315 2.6679e-06 1.79571e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| at face value the ||| 0.5 0.0732944 2.6679e-06 2.13629e-11 2.718 ||| 0-3 ||| 2 374827 +del ||| at giving ||| 0.047619 0.0004942 2.6679e-06 2.21932e-08 2.718 ||| 0-1 ||| 21 374827 +del ||| at in the ||| 0.1 0.0458111 5.33579e-06 3.92186e-05 2.718 ||| 0-1 0-2 ||| 20 374827 +del ||| at international level in the context of ||| 1 0.0183279 2.6679e-06 3.34851e-18 2.718 ||| 0-3 ||| 1 374827 +del ||| at international level in the context ||| 1 0.0183279 2.6679e-06 6.15943e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| at international level in the ||| 0.5 0.0183279 2.6679e-06 4.58974e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| at international level in ||| 0.1 0.0183279 2.6679e-06 7.47614e-12 2.718 ||| 0-3 ||| 10 374827 +del ||| at issue for ||| 0.333333 0.0138653 2.6679e-06 3.40936e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| at its ||| 0.00136333 0.0035806 5.33579e-06 2.04596e-06 2.718 ||| 0-1 ||| 1467 374827 +del ||| at last ||| 0.000519751 0.0214237 2.6679e-06 4.12501e-06 2.718 ||| 0-1 ||| 1924 374827 +del ||| at least , ||| 0.0018315 0.0010184 2.6679e-06 7.14946e-09 2.718 ||| 0-0 ||| 546 374827 +del ||| at least equally important ||| 0.166667 0.023448 2.6679e-06 5.43578e-14 2.718 ||| 0-2 ||| 6 374827 +del ||| at least equally ||| 0.0909091 0.023448 2.6679e-06 1.41704e-10 2.718 ||| 0-2 ||| 11 374827 +del ||| at least in the ||| 0.00628931 0.0458111 2.6679e-06 9.62424e-09 2.718 ||| 0-2 0-3 ||| 159 374827 +del ||| at least the ||| 0.00310559 0.0732944 2.6679e-06 3.56898e-07 2.718 ||| 0-2 ||| 322 374827 +del ||| at least ||| 8.56384e-05 0.0010184 2.6679e-06 5.99512e-08 2.718 ||| 0-0 ||| 11677 374827 +del ||| at our meeting ||| 0.0322581 0.0010184 2.6679e-06 4.23256e-11 2.718 ||| 0-0 ||| 31 374827 +del ||| at our ||| 0.00114286 0.0010184 2.6679e-06 3.36987e-07 2.718 ||| 0-0 ||| 875 374827 +del ||| at present , the ||| 0.00561798 0.0732944 2.6679e-06 6.34783e-08 2.718 ||| 0-3 ||| 178 374827 +del ||| at present of the ||| 1 0.10196 2.6679e-06 1.57018e-07 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| at risk ||| 0.000666667 0.0010184 2.6679e-06 2.85831e-08 2.718 ||| 0-0 ||| 1500 374827 +del ||| at stake in the ||| 0.0294118 0.0732944 2.6679e-06 9.40115e-10 2.718 ||| 0-3 ||| 34 374827 +del ||| at the Court of ||| 0.0238095 0.130625 2.6679e-06 3.54896e-09 2.718 ||| 0-3 ||| 42 374827 +del ||| at the European ||| 0.0537634 0.0732944 1.33395e-05 4.8632e-06 2.718 ||| 0-1 ||| 93 374827 +del ||| at the disposal of the ||| 0.0196078 0.10196 2.6679e-06 2.21765e-09 2.718 ||| 0-3 0-4 ||| 51 374827 +del ||| at the earliest ||| 0.00653595 0.0732944 2.6679e-06 4.21762e-09 2.718 ||| 0-1 ||| 153 374827 +del ||| at the end ||| 0.000221533 0.0732944 2.6679e-06 6.32788e-07 2.718 ||| 0-1 ||| 4514 374827 +del ||| at the expense ||| 0.000988142 0.0732944 2.6679e-06 2.82144e-08 2.718 ||| 0-1 ||| 1012 374827 +del ||| at the hands of men ||| 0.25 0.130625 2.6679e-06 3.24867e-13 2.718 ||| 0-3 ||| 4 374827 +del ||| at the hands of ||| 0.0107527 0.130625 2.6679e-06 7.64392e-09 2.718 ||| 0-3 ||| 93 374827 +del ||| at the head of the ||| 0.0196078 0.10196 2.6679e-06 1.90423e-09 2.718 ||| 0-3 0-4 ||| 51 374827 +del ||| at the head of ||| 0.0166667 0.0732944 2.6679e-06 5.71635e-09 2.718 ||| 0-1 ||| 60 374827 +del ||| at the head ||| 0.0104167 0.0732944 2.6679e-06 1.0515e-07 2.718 ||| 0-1 ||| 96 374827 +del ||| at the heart of the ||| 0.00221239 0.10196 2.6679e-06 2.12283e-09 2.718 ||| 0-3 0-4 ||| 452 374827 +del ||| at the level ||| 0.0015748 0.0732944 2.6679e-06 1.24405e-06 2.718 ||| 0-1 ||| 635 374827 +del ||| at the meeting of ||| 0.00714286 0.130625 2.6679e-06 9.52456e-09 2.718 ||| 0-3 ||| 140 374827 +del ||| at the moment ||| 0.00023855 0.0732944 2.6679e-06 2.62801e-07 2.718 ||| 0-1 ||| 4192 374827 +del ||| at the next ||| 0.00200803 0.0732944 2.6679e-06 1.50234e-07 2.718 ||| 0-1 ||| 498 374827 +del ||| at the request of the ||| 0.00546448 0.10196 2.6679e-06 2.02011e-09 2.718 ||| 0-3 0-4 ||| 183 374827 +del ||| at the same time be ||| 0.05 0.0732944 2.6679e-06 3.48197e-11 2.718 ||| 0-1 ||| 20 374827 +del ||| at the same time ||| 0.000235516 0.0732944 8.00369e-06 1.92131e-09 2.718 ||| 0-1 ||| 12738 374827 +del ||| at the same ||| 0.0003803 0.0732944 1.06716e-05 1.17032e-06 2.718 ||| 0-1 ||| 10518 374827 +del ||| at the service of ||| 0.00564972 0.130625 2.6679e-06 5.0732e-09 2.718 ||| 0-3 ||| 177 374827 +del ||| at the table - ||| 0.25 0.0732944 2.6679e-06 3.71399e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| at the table ||| 0.0217391 0.0732944 2.6679e-06 9.84595e-08 2.718 ||| 0-1 ||| 46 374827 +del ||| at the time the ||| 0.0238095 0.0732944 2.6679e-06 1.46579e-07 2.718 ||| 0-3 ||| 42 374827 +del ||| at the ||| 0.00535313 0.0732944 0.000744343 0.00145435 2.718 ||| 0-1 ||| 52119 374827 +del ||| at this point ||| 0.000788022 0.0033154 2.6679e-06 8.4102e-09 2.718 ||| 0-1 ||| 1269 374827 +del ||| at this ||| 0.000623928 0.0033154 1.06716e-05 9.61385e-06 2.718 ||| 0-1 ||| 6411 374827 +del ||| at which the ||| 0.0107527 0.0732944 2.6679e-06 1.23541e-05 2.718 ||| 0-2 ||| 93 374827 +del ||| at with the ||| 0.333333 0.0732944 2.6679e-06 9.29984e-06 2.718 ||| 0-2 ||| 3 374827 +del ||| at ||| 0.000685703 0.0010184 0.000261454 0.0002443 2.718 ||| 0-0 ||| 142919 374827 +del ||| attaching to the ||| 0.25 0.0732944 2.6679e-06 1.54309e-07 2.718 ||| 0-2 ||| 4 374827 +del ||| attacked by the advocates ||| 0.5 0.0597263 2.6679e-06 2.46656e-13 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| attacked by the ||| 0.0625 0.0597263 2.6679e-06 4.04354e-08 2.718 ||| 0-1 0-2 ||| 16 374827 +del ||| attacks suffered by the ||| 0.333333 0.0597263 2.6679e-06 2.49689e-12 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| attempt by the ||| 0.0138889 0.0461582 2.6679e-06 8.28899e-08 2.718 ||| 0-1 ||| 72 374827 +del ||| attempt by ||| 0.00740741 0.0461582 2.6679e-06 1.35018e-06 2.718 ||| 0-1 ||| 135 374827 +del ||| attempt to create a set of ||| 1 0.130625 2.6679e-06 6.38396e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| attempt to maintain the ||| 0.25 0.0732944 2.6679e-06 1.17767e-10 2.718 ||| 0-3 ||| 4 374827 +del ||| attempt to rely on ||| 1 0.0140673 2.6679e-06 1.44081e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| attention from ||| 0.00719424 0.0911315 2.6679e-06 5.66321e-06 2.718 ||| 0-1 ||| 139 374827 +del ||| attention of the ||| 0.00244499 0.10196 2.6679e-06 2.6771e-05 2.718 ||| 0-1 0-2 ||| 409 374827 +del ||| attention to the ||| 0.00030525 0.0732944 2.6679e-06 8.0642e-06 2.718 ||| 0-2 ||| 3276 374827 +del ||| attention to this year ’ s ||| 1 0.106997 2.6679e-06 3.97971e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| attention to this year ’ ||| 1 0.106997 2.6679e-06 2.09205e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| attitude of the ||| 0.00819672 0.10196 5.33579e-06 5.34805e-06 2.718 ||| 0-1 0-2 ||| 244 374827 +del ||| attitude of ||| 0.00239234 0.130625 2.6679e-06 1.53982e-05 2.718 ||| 0-1 ||| 418 374827 +del ||| attitude towards the ||| 0.0243902 0.0732944 2.6679e-06 2.3025e-09 2.718 ||| 0-2 ||| 41 374827 +del ||| audit by the ||| 0.125 0.0597263 2.6679e-06 3.65042e-08 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| auspices of the ||| 0.00367647 0.10196 2.6679e-06 3.68831e-07 2.718 ||| 0-1 0-2 ||| 272 374827 +del ||| auspices of ||| 0.00338983 0.130625 2.6679e-06 1.06195e-06 2.718 ||| 0-1 ||| 295 374827 +del ||| authorities for ||| 0.047619 0.0138653 2.6679e-06 7.16509e-07 2.718 ||| 0-1 ||| 21 374827 +del ||| avail yourself of ||| 0.333333 0.130625 2.6679e-06 6.63717e-11 2.718 ||| 0-2 ||| 3 374827 +del ||| availability of ||| 0.00176056 0.130625 2.6679e-06 2.0059e-06 2.718 ||| 0-1 ||| 568 374827 +del ||| available for ||| 0.00226501 0.0138653 5.33579e-06 3.42225e-06 2.718 ||| 0-1 ||| 883 374827 +del ||| available in the ||| 0.00621118 0.0458111 2.6679e-06 2.97928e-06 2.718 ||| 0-1 0-2 ||| 161 374827 +del ||| available under the ||| 0.0192308 0.0732944 2.6679e-06 3.96406e-08 2.718 ||| 0-2 ||| 52 374827 +del ||| aviation of ||| 0.5 0.130625 2.6679e-06 2.0059e-06 2.718 ||| 0-1 ||| 2 374827 +del ||| awarded in connection with the ||| 1 0.0732944 2.6679e-06 1.38556e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| aware of its ||| 0.0136986 0.130625 2.6679e-06 5.83749e-08 2.718 ||| 0-1 ||| 73 374827 +del ||| aware of the ||| 0.00310697 0.10196 1.86753e-05 1.42307e-05 2.718 ||| 0-1 0-2 ||| 2253 374827 +del ||| aware of their responsibilities ||| 0.0416667 0.130625 2.6679e-06 1.13032e-12 2.718 ||| 0-1 ||| 24 374827 +del ||| aware of their ||| 0.008 0.130625 2.6679e-06 4.74924e-08 2.718 ||| 0-1 ||| 125 374827 +del ||| aware of this ||| 0.00215517 0.0669701 2.6679e-06 9.4071e-08 2.718 ||| 0-1 0-2 ||| 464 374827 +del ||| aware of ||| 0.00154281 0.130625 1.60074e-05 4.09735e-05 2.718 ||| 0-1 ||| 3889 374827 +del ||| aware that the ultimate responsibility rests ||| 0.333333 0.0732944 2.6679e-06 2.5307e-21 2.718 ||| 0-2 ||| 3 374827 +del ||| aware that the ultimate responsibility ||| 0.333333 0.0732944 2.6679e-06 1.01228e-15 2.718 ||| 0-2 ||| 3 374827 +del ||| aware that the ultimate ||| 0.333333 0.0732944 2.6679e-06 8.76431e-12 2.718 ||| 0-2 ||| 3 374827 +del ||| aware that the ||| 0.00189036 0.0732944 2.6679e-06 8.1151e-07 2.718 ||| 0-2 ||| 529 374827 +del ||| awareness of the ||| 0.00247525 0.10196 2.6679e-06 3.06335e-06 2.718 ||| 0-1 0-2 ||| 404 374827 +del ||| away from state ||| 1 0.0911315 2.6679e-06 1.74149e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| away from the ||| 0.0566038 0.082213 4.80222e-05 2.39448e-06 2.718 ||| 0-1 0-2 ||| 318 374827 +del ||| away from ||| 0.00870511 0.0911315 2.13432e-05 6.89424e-06 2.718 ||| 0-1 ||| 919 374827 +del ||| away the ||| 0.0136986 0.0732944 2.6679e-06 0.000110481 2.718 ||| 0-1 ||| 73 374827 +del ||| away with the ||| 0.0114943 0.0732944 2.6679e-06 7.06472e-07 2.718 ||| 0-2 ||| 87 374827 +del ||| away ||| 0.000614628 0.0017575 2.6679e-06 1.58e-05 2.718 ||| 0-0 ||| 1627 374827 +del ||| b ||| 0.00746269 0.0033557 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 134 374827 +del ||| baby-boom ||| 0.2 0.5 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 5 374827 +del ||| back by the ||| 0.0769231 0.0597263 2.6679e-06 3.77734e-06 2.718 ||| 0-1 0-2 ||| 13 374827 +del ||| back even of the ||| 1 0.10196 2.6679e-06 4.19317e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| back for ||| 0.0217391 0.0138653 2.6679e-06 7.2361e-06 2.718 ||| 0-1 ||| 46 374827 +del ||| back from ||| 0.025641 0.0911315 5.33579e-06 1.45774e-05 2.718 ||| 0-1 ||| 78 374827 +del ||| back into the ||| 0.015625 0.0732944 5.33579e-06 2.39842e-07 2.718 ||| 0-2 ||| 128 374827 +del ||| back of the ||| 0.0625 0.130625 8.00369e-06 1.21806e-05 2.718 ||| 0-1 ||| 48 374827 +del ||| back of ||| 0.0258621 0.130625 8.00369e-06 0.000198407 2.718 ||| 0-1 ||| 116 374827 +del ||| back the ||| 0.00456621 0.0732944 2.6679e-06 0.000233605 2.718 ||| 0-1 ||| 219 374827 +del ||| back to the ||| 0.00513699 0.0732944 8.00369e-06 2.07577e-05 2.718 ||| 0-2 ||| 584 374827 +del ||| backing of the ||| 0.0128205 0.10196 2.6679e-06 1.73146e-06 2.718 ||| 0-1 0-2 ||| 78 374827 +del ||| backing of ||| 0.00657895 0.130625 2.6679e-06 4.98525e-06 2.718 ||| 0-1 ||| 152 374827 +del ||| balance from the ||| 0.333333 0.082213 2.6679e-06 4.06482e-07 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| balance of ||| 0.0027137 0.130625 5.33579e-06 1.59292e-05 2.718 ||| 0-1 ||| 737 374827 +del ||| ban on ||| 0.00126342 0.0140673 5.33579e-06 3.77589e-07 2.718 ||| 0-1 ||| 1583 374827 +del ||| banana plantations ||| 0.166667 0.180809 2.6679e-06 2.5466e-10 2.718 ||| 0-0 ||| 6 374827 +del ||| banana ||| 0.00258732 0.180809 5.33579e-06 0.0003638 2.718 ||| 0-0 ||| 773 374827 +del ||| banking ||| 0.00123686 0.0062069 5.33579e-06 1.18e-05 2.718 ||| 0-0 ||| 1617 374827 +del ||| banks beside the ||| 1 0.0732944 2.6679e-06 1.31112e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| bans on ||| 0.00970874 0.0140673 2.6679e-06 3.5307e-08 2.718 ||| 0-1 ||| 103 374827 +del ||| based on the ||| 0.00030003 0.0732944 2.6679e-06 5.45185e-07 2.718 ||| 0-2 ||| 3333 374827 +del ||| based on ||| 0.000313283 0.007102 1.06716e-05 2.54995e-08 2.718 ||| 0-0 0-1 ||| 12768 374827 +del ||| based upon ||| 0.00398406 0.0034407 2.6679e-06 1.20115e-08 2.718 ||| 0-1 ||| 251 374827 +del ||| basin ||| 0.0125 0.0659722 8.00369e-06 2.5e-05 2.718 ||| 0-0 ||| 240 374827 +del ||| basis for a European expulsion law ||| 1 0.0138653 2.6679e-06 1.8363e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| basis for a European expulsion ||| 1 0.0138653 2.6679e-06 1.04157e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| basis for a European ||| 1 0.0138653 2.6679e-06 9.46886e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| basis for a ||| 0.00396825 0.0138653 2.6679e-06 2.83168e-07 2.718 ||| 0-1 ||| 252 374827 +del ||| basis for ||| 0.000352734 0.0138653 2.6679e-06 6.38834e-06 2.718 ||| 0-1 ||| 2835 374827 +del ||| basis of a ||| 0.00284495 0.130625 5.33579e-06 7.76421e-06 2.718 ||| 0-1 ||| 703 374827 +del ||| basis of the ||| 0.00383877 0.10196 2.13432e-05 6.08367e-05 2.718 ||| 0-1 0-2 ||| 2084 374827 +del ||| basis of ||| 0.00228931 0.130625 4.26864e-05 0.000175162 2.718 ||| 0-1 ||| 6989 374827 +del ||| basis on ||| 0.00292398 0.0140673 2.6679e-06 5.82369e-06 2.718 ||| 0-1 ||| 342 374827 +del ||| battle on ||| 0.142857 0.0140673 2.6679e-06 1.41228e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| be a failure of the ||| 1 0.10196 2.6679e-06 3.85173e-09 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| be a matter for the authorities ||| 0.166667 0.0435798 2.6679e-06 2.07405e-13 2.718 ||| 0-3 0-4 ||| 6 374827 +del ||| be a matter for the ||| 0.04 0.0435798 2.6679e-06 3.11419e-09 2.718 ||| 0-3 0-4 ||| 25 374827 +del ||| be a ||| 9.5338e-05 0.0008087 2.6679e-06 1.53048e-05 2.718 ||| 0-1 ||| 10489 374827 +del ||| be able to ||| 0.000188147 0.0006066 2.6679e-06 2.01315e-08 2.718 ||| 0-2 ||| 5315 374827 +del ||| be added to the end of paragraph ||| 1 0.0732944 2.6679e-06 1.49038e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| be added to the end of ||| 1 0.0732944 2.6679e-06 9.43278e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| be added to the end ||| 0.5 0.0732944 2.6679e-06 1.73512e-11 2.718 ||| 0-3 ||| 2 374827 +del ||| be added to the ||| 0.0123457 0.0732944 2.6679e-06 3.98785e-08 2.718 ||| 0-3 ||| 81 374827 +del ||| be adjourned ||| 0.0285714 0.0032415 2.6679e-06 4.71195e-08 2.718 ||| 0-1 ||| 35 374827 +del ||| be brought under the ||| 0.25 0.0441302 2.6679e-06 1.40042e-09 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| be carried out in the ||| 0.0357143 0.0458111 2.6679e-06 1.91602e-10 2.718 ||| 0-3 0-4 ||| 28 374827 +del ||| be carried out with ||| 0.037037 0.0045281 2.6679e-06 3.89347e-11 2.718 ||| 0-3 ||| 27 374827 +del ||| be channelled by ||| 0.5 0.0461582 2.6679e-06 1.26009e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| be committed for ||| 0.5 0.0138653 2.6679e-06 1.61438e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| be conducted by the ||| 0.0833333 0.0597263 2.6679e-06 6.15761e-09 2.718 ||| 0-2 0-3 ||| 12 374827 +del ||| be covered before the ||| 1 0.0732944 2.6679e-06 1.12714e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| be covered by the ||| 0.0120482 0.0597263 2.6679e-06 7.28735e-09 2.718 ||| 0-2 0-3 ||| 83 374827 +del ||| be covered in ||| 0.0434783 0.00958625 2.6679e-06 1.90597e-09 2.718 ||| 0-1 0-2 ||| 23 374827 +del ||| be dealt with in ||| 0.00892857 0.0183279 2.6679e-06 3.27193e-10 2.718 ||| 0-3 ||| 112 374827 +del ||| be done by ||| 0.00862069 0.0461582 2.6679e-06 1.33628e-07 2.718 ||| 0-2 ||| 116 374827 +del ||| be drawn from the ||| 0.04 0.082213 2.6679e-06 1.93852e-08 2.718 ||| 0-2 0-3 ||| 25 374827 +del ||| be drawn from this ||| 0.0555556 0.0911315 2.6679e-06 3.60638e-10 2.718 ||| 0-2 ||| 18 374827 +del ||| be drawn from ||| 0.0128205 0.0911315 2.6679e-06 5.58142e-08 2.718 ||| 0-2 ||| 78 374827 +del ||| be driven out of the ||| 0.2 0.10196 2.6679e-06 2.09807e-10 2.718 ||| 0-3 0-4 ||| 5 374827 +del ||| be easy prey for populist ||| 1 0.0324324 2.6679e-06 4.57533e-20 2.718 ||| 0-2 ||| 1 374827 +del ||| be easy prey for ||| 1 0.0324324 2.6679e-06 4.15939e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| be easy prey ||| 1 0.0324324 2.6679e-06 5.41186e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| be entered in the ||| 0.0833333 0.0458111 2.6679e-06 5.43157e-09 2.718 ||| 0-2 0-3 ||| 12 374827 +del ||| be established for the ||| 0.5 0.0435798 2.6679e-06 1.01373e-08 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| be established for ||| 0.0833333 0.0138653 2.6679e-06 2.91875e-08 2.718 ||| 0-2 ||| 12 374827 +del ||| be established the ||| 1 0.0732944 2.6679e-06 9.42267e-07 2.718 ||| 0-2 ||| 1 374827 +del ||| be excluded from the ||| 0.012987 0.082213 2.6679e-06 1.56882e-09 2.718 ||| 0-2 0-3 ||| 77 374827 +del ||| be followed by ||| 0.00621118 0.0461582 2.6679e-06 2.09819e-08 2.718 ||| 0-2 ||| 161 374827 +del ||| be found anywhere in the ||| 0.5 0.0458111 2.6679e-06 1.12158e-12 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| be found in the ||| 0.00900901 0.0458111 2.6679e-06 3.71383e-08 2.718 ||| 0-2 0-3 ||| 111 374827 +del ||| be found in ||| 0.0033557 0.0183279 2.6679e-06 1.0693e-07 2.718 ||| 0-2 ||| 298 374827 +del ||| be found to the ||| 0.333333 0.0732944 2.6679e-06 1.22376e-07 2.718 ||| 0-3 ||| 3 374827 +del ||| be given the ||| 0.00420168 0.0732944 2.6679e-06 4.31983e-06 2.718 ||| 0-2 ||| 238 374827 +del ||| be given to the ||| 0.0344828 0.0732944 1.06716e-05 3.83852e-07 2.718 ||| 0-3 ||| 116 374827 +del ||| be granted for the ||| 0.5 0.0435798 2.6679e-06 5.4851e-09 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| be grateful for ||| 0.0243902 0.0138653 2.6679e-06 4.4259e-09 2.718 ||| 0-2 ||| 41 374827 +del ||| be held back for ||| 1 0.0138653 2.6679e-06 3.34536e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| be held in ||| 0.00333333 0.0183279 2.6679e-06 1.2467e-07 2.718 ||| 0-2 ||| 300 374827 +del ||| be held on ||| 0.0421053 0.008389 1.06716e-05 5.1367e-09 2.718 ||| 0-1 0-2 ||| 95 374827 +del ||| be helped by ||| 0.166667 0.0461582 2.6679e-06 5.80226e-09 2.718 ||| 0-2 ||| 6 374827 +del ||| be hidden in a ||| 1 0.0183279 2.6679e-06 1.5597e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| be hidden in ||| 1 0.0183279 2.6679e-06 3.51871e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| be imposed on ||| 0.0149254 0.0140673 2.6679e-06 9.91791e-09 2.718 ||| 0-2 ||| 67 374827 +del ||| be in a position ||| 0.00454545 0.0183279 2.6679e-06 7.13344e-09 2.718 ||| 0-1 ||| 220 374827 +del ||| be in a ||| 0.00310559 0.0183279 2.6679e-06 2.16624e-05 2.718 ||| 0-1 ||| 322 374827 +del ||| be in connection with ||| 0.5 0.0183279 2.6679e-06 4.76883e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| be in connection ||| 0.5 0.0183279 2.6679e-06 7.4577e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| be in place by ||| 0.25 0.0461582 2.6679e-06 9.44004e-09 2.718 ||| 0-3 ||| 4 374827 +del ||| be in place ||| 0.0104167 0.0183279 2.6679e-06 7.35508e-07 2.718 ||| 0-1 ||| 96 374827 +del ||| be in the ||| 0.00255754 0.0458111 2.6679e-06 0.000169736 2.718 ||| 0-1 0-2 ||| 391 374827 +del ||| be in ||| 0.00290698 0.0183279 1.60074e-05 0.000488709 2.718 ||| 0-1 ||| 2064 374827 +del ||| be intensified to ||| 0.125 0.0065502 2.6679e-06 6.28044e-09 2.718 ||| 0-1 ||| 8 374827 +del ||| be intensified ||| 0.0181818 0.0065502 2.6679e-06 7.06793e-08 2.718 ||| 0-1 ||| 55 374827 +del ||| be introduced according to the ||| 1 0.0732944 2.6679e-06 4.57862e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| be it in the ||| 0.0263158 0.0458111 2.6679e-06 3.01846e-06 2.718 ||| 0-2 0-3 ||| 38 374827 +del ||| be judged by ||| 0.0238095 0.0461582 2.6679e-06 3.16487e-09 2.718 ||| 0-2 ||| 42 374827 +del ||| be judged without taking into account the ||| 1 0.0732944 2.6679e-06 1.88468e-21 2.718 ||| 0-6 ||| 1 374827 +del ||| be lifted for ||| 1 0.0138653 2.6679e-06 2.59315e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| be lifted ||| 0.00520833 0.0072727 2.6679e-06 9.60514e-08 2.718 ||| 0-1 ||| 192 374827 +del ||| be made between forms of ||| 1 0.130625 2.6679e-06 2.63518e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| be made compulsory ||| 0.0384615 0.0008807 2.6679e-06 9.8706e-11 2.718 ||| 0-2 ||| 26 374827 +del ||| be made from ||| 0.0357143 0.0911315 2.6679e-06 8.22798e-07 2.718 ||| 0-2 ||| 28 374827 +del ||| be made in the ||| 0.0142857 0.0458111 2.6679e-06 3.55564e-07 2.718 ||| 0-2 0-3 ||| 70 374827 +del ||| be made of the ||| 0.0540541 0.10196 5.33579e-06 3.88952e-06 2.718 ||| 0-2 0-3 ||| 37 374827 +del ||| be made of ||| 0.037037 0.130625 8.00369e-06 1.11988e-05 2.718 ||| 0-2 ||| 81 374827 +del ||| be made on the ||| 0.0465116 0.0436809 5.33579e-06 1.29316e-07 2.718 ||| 0-2 0-3 ||| 43 374827 +del ||| be made to the ||| 0.0851064 0.0732944 1.06716e-05 1.17163e-06 2.718 ||| 0-3 ||| 47 374827 +del ||| be made to ||| 0.00389105 0.0006066 2.6679e-06 5.05109e-08 2.718 ||| 0-2 ||| 257 374827 +del ||| be next ||| 0.125 0.0281625 2.6679e-06 1.74723e-05 2.718 ||| 0-1 ||| 8 374827 +del ||| be no question of a ||| 0.166667 0.130625 2.6679e-06 1.52599e-10 2.718 ||| 0-3 ||| 6 374827 +del ||| be no question of ||| 0.0277778 0.130625 2.6679e-06 3.44266e-09 2.718 ||| 0-3 ||| 36 374827 +del ||| be of the ||| 0.0175439 0.10196 2.6679e-06 0.00185675 2.718 ||| 0-1 0-2 ||| 57 374827 +del ||| be of ||| 0.00814111 0.130625 1.60074e-05 0.00534599 2.718 ||| 0-1 ||| 737 374827 +del ||| be on the ||| 0.00749064 0.0436809 5.33579e-06 6.1732e-05 2.718 ||| 0-1 0-2 ||| 267 374827 +del ||| be on ||| 0.0037594 0.0140673 5.33579e-06 0.00017774 2.718 ||| 0-1 ||| 532 374827 +del ||| be paid to the ||| 0.047619 0.0732944 2.6679e-06 7.52826e-08 2.718 ||| 0-3 ||| 21 374827 +del ||| be placed at the head of the ||| 0.333333 0.10196 2.6679e-06 4.32066e-15 2.718 ||| 0-5 0-6 ||| 3 374827 +del ||| be played by the ||| 0.0454545 0.0597263 2.6679e-06 5.01769e-09 2.718 ||| 0-2 0-3 ||| 22 374827 +del ||| be possible for the ||| 0.0181818 0.0435798 2.6679e-06 5.43161e-08 2.718 ||| 0-2 0-3 ||| 55 374827 +del ||| be possible for ||| 0.00452489 0.0138653 2.6679e-06 1.56388e-07 2.718 ||| 0-2 ||| 221 374827 +del ||| be produced by ||| 0.047619 0.0461582 2.6679e-06 3.1004e-08 2.718 ||| 0-2 ||| 21 374827 +del ||| be provided with the ||| 0.0833333 0.0732944 2.6679e-06 9.22515e-09 2.718 ||| 0-3 ||| 12 374827 +del ||| be put on ||| 0.00847458 0.0140673 2.6679e-06 1.95977e-07 2.718 ||| 0-2 ||| 118 374827 +del ||| be raised from ||| 0.0769231 0.0911315 2.6679e-06 4.52484e-08 2.718 ||| 0-2 ||| 13 374827 +del ||| be regarded by ||| 0.1 0.0461582 2.6679e-06 1.64397e-08 2.718 ||| 0-2 ||| 10 374827 +del ||| be reinstated ||| 0.0238095 0.0121951 2.6679e-06 4.71195e-08 2.718 ||| 0-1 ||| 42 374827 +del ||| be removed from the ||| 0.0217391 0.082213 2.6679e-06 6.17979e-09 2.718 ||| 0-2 0-3 ||| 46 374827 +del ||| be replaced by ||| 0.003861 0.0461582 2.6679e-06 5.392e-09 2.718 ||| 0-2 ||| 259 374827 +del ||| be requested by ||| 0.111111 0.0461582 2.6679e-06 5.27479e-09 2.718 ||| 0-2 ||| 9 374827 +del ||| be responsible for the ||| 0.025641 0.0435798 2.6679e-06 1.00154e-08 2.718 ||| 0-2 0-3 ||| 39 374827 +del ||| be set aside for the ||| 0.25 0.0435798 2.6679e-06 2.78997e-12 2.718 ||| 0-3 0-4 ||| 4 374827 +del ||| be shown by the ||| 1 0.0597263 2.6679e-06 1.06257e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| be taken from the ||| 0.166667 0.082213 5.33579e-06 1.24346e-07 2.718 ||| 0-2 0-3 ||| 12 374827 +del ||| be that ten years from now , ||| 1 0.0911315 2.6679e-06 3.09398e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| be that ten years from now ||| 1 0.0911315 2.6679e-06 2.59443e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| be that ten years from ||| 1 0.0911315 2.6679e-06 1.25949e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| be the European ||| 0.0769231 0.0732944 2.6679e-06 2.10477e-05 2.718 ||| 0-1 ||| 13 374827 +del ||| be the interests of ||| 0.2 0.130625 2.6679e-06 4.49962e-08 2.718 ||| 0-3 ||| 5 374827 +del ||| be the subject of a ||| 0.0192308 0.130625 2.6679e-06 7.85287e-09 2.718 ||| 0-3 ||| 52 374827 +del ||| be the subject of ||| 0.00558659 0.130625 2.6679e-06 1.77162e-07 2.718 ||| 0-3 ||| 179 374827 +del ||| be the way ||| 0.0151515 0.0732944 2.6679e-06 1.35681e-05 2.718 ||| 0-1 ||| 66 374827 +del ||| be the ||| 0.00334784 0.0732944 5.33579e-05 0.00629437 2.718 ||| 0-1 ||| 5974 374827 +del ||| be transformed from the ||| 1 0.082213 2.6679e-06 4.91109e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| be unaware of ||| 0.0833333 0.130625 2.6679e-06 1.71072e-08 2.718 ||| 0-2 ||| 12 374827 +del ||| be up to the ||| 0.0163934 0.0732944 2.6679e-06 1.90751e-06 2.718 ||| 0-3 ||| 61 374827 +del ||| be using a ||| 0.166667 0.0008087 2.6679e-06 1.18918e-09 2.718 ||| 0-2 ||| 6 374827 +del ||| be voting against the ||| 0.0769231 0.0732944 2.6679e-06 5.84214e-11 2.718 ||| 0-3 ||| 13 374827 +del ||| be working ||| 0.00869565 0.0101757 2.6679e-06 4.52348e-06 2.718 ||| 0-1 ||| 115 374827 +del ||| be worthy of ||| 0.0434783 0.130625 2.6679e-06 1.05851e-07 2.718 ||| 0-2 ||| 23 374827 +del ||| bear in mind ||| 0.000912409 0.0183279 2.6679e-06 1.01689e-09 2.718 ||| 0-1 ||| 1096 374827 +del ||| bear in ||| 0.00108814 0.0183279 2.6679e-06 4.03687e-06 2.718 ||| 0-1 ||| 919 374827 +del ||| bear on the ||| 0.0169492 0.0436809 2.6679e-06 5.09923e-07 2.718 ||| 0-1 0-2 ||| 59 374827 +del ||| bear the ||| 0.00245098 0.0732944 2.6679e-06 5.19932e-05 2.718 ||| 0-1 ||| 408 374827 +del ||| bearing in mind ||| 0.000807102 0.0183279 2.6679e-06 3.0296e-10 2.718 ||| 0-1 ||| 1239 374827 +del ||| bearing in ||| 0.000976562 0.0183279 2.6679e-06 1.2027e-06 2.718 ||| 0-1 ||| 1024 374827 +del ||| bearing the actual responsibility ||| 0.5 0.0732944 2.6679e-06 2.58887e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| bearing the actual ||| 0.5 0.0732944 2.6679e-06 2.24144e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| bearing the stamp of ||| 0.333333 0.0732944 2.6679e-06 4.54741e-12 2.718 ||| 0-1 ||| 3 374827 +del ||| bearing the stamp ||| 0.333333 0.0732944 2.6679e-06 8.36475e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| bearing the ||| 0.0175439 0.0732944 5.33579e-06 1.54903e-05 2.718 ||| 0-1 ||| 114 374827 +del ||| bears the ||| 0.00925926 0.0732944 2.6679e-06 6.39061e-06 2.718 ||| 0-1 ||| 108 374827 +del ||| because in ||| 0.00128535 0.0183279 2.6679e-06 8.86116e-06 2.718 ||| 0-1 ||| 778 374827 +del ||| because of Israel ||| 1 0.130625 2.6679e-06 2.30699e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| because of it or damage ||| 1 0.130625 2.6679e-06 8.29699e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| because of it or ||| 1 0.130625 2.6679e-06 1.97078e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| because of it ||| 0.0322581 0.130625 2.6679e-06 1.72377e-06 2.718 ||| 0-1 ||| 31 374827 +del ||| because of the attitude ||| 0.111111 0.10196 2.6679e-06 1.75737e-09 2.718 ||| 0-1 0-2 ||| 9 374827 +del ||| because of the ||| 0.0017673 0.10196 1.60074e-05 3.36661e-05 2.718 ||| 0-1 0-2 ||| 3395 374827 +del ||| because of ||| 0.00067595 0.130625 1.33395e-05 9.69322e-05 2.718 ||| 0-1 ||| 7397 374827 +del ||| because the ||| 0.000128883 0.0732944 2.6679e-06 0.000114128 2.718 ||| 0-1 ||| 7759 374827 +del ||| become the ||| 0.00116414 0.0732944 2.6679e-06 9.92281e-05 2.718 ||| 0-1 ||| 859 374827 +del ||| been accepted by the ||| 0.0208333 0.0732944 2.6679e-06 3.74464e-10 2.718 ||| 0-3 ||| 48 374827 +del ||| been an ||| 0.00156006 0.0008398 2.6679e-06 6.00722e-07 2.718 ||| 0-1 ||| 641 374827 +del ||| been appropriated by ||| 0.125 0.0461582 2.6679e-06 1.34985e-10 2.718 ||| 0-2 ||| 8 374827 +del ||| been at the ||| 0.00917431 0.0732944 2.6679e-06 4.85637e-06 2.718 ||| 0-2 ||| 109 374827 +del ||| been brought on ||| 1 0.0140673 2.6679e-06 9.16978e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| been dealing with ||| 0.025 0.0045281 2.6679e-06 6.56489e-10 2.718 ||| 0-2 ||| 40 374827 +del ||| been disrupted ||| 0.5 0.0067114 2.6679e-06 4.34096e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| been done to ||| 0.0625 0.0006066 2.6679e-06 2.02592e-09 2.718 ||| 0-2 ||| 16 374827 +del ||| been for ||| 0.0075188 0.0138653 2.6679e-06 3.59244e-05 2.718 ||| 0-1 ||| 133 374827 +del ||| been giving to the ||| 0.5 0.0732944 2.6679e-06 1.62413e-08 2.718 ||| 0-3 ||| 2 374827 +del ||| been in ||| 0.00439078 0.0183279 1.06716e-05 9.00462e-05 2.718 ||| 0-1 ||| 911 374827 +del ||| been included in the ||| 0.0135135 0.0458111 2.6679e-06 2.93667e-09 2.718 ||| 0-2 0-3 ||| 74 374827 +del ||| been made of ||| 0.105263 0.130625 5.33579e-06 2.06341e-06 2.718 ||| 0-2 ||| 19 374827 +del ||| been made over the ||| 0.5 0.0399057 2.6679e-06 7.75483e-10 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| been made to the ||| 0.0769231 0.0732944 2.6679e-06 2.15877e-07 2.718 ||| 0-3 ||| 13 374827 +del ||| been making for many years , by ||| 1 0.0461582 2.6679e-06 1.1124e-18 2.718 ||| 0-6 ||| 1 374827 +del ||| been occupied ||| 0.0434783 0.0012005 2.6679e-06 4.34096e-09 2.718 ||| 0-1 ||| 23 374827 +del ||| been part of the ||| 0.0227273 0.10196 2.6679e-06 4.07865e-07 2.718 ||| 0-2 0-3 ||| 44 374827 +del ||| been presented by ||| 0.0625 0.0461582 2.6679e-06 4.25474e-09 2.718 ||| 0-2 ||| 16 374827 +del ||| been prevented from attending ||| 1 0.0911315 2.6679e-06 1.41283e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| been prevented from ||| 0.111111 0.0911315 2.6679e-06 1.64283e-09 2.718 ||| 0-2 ||| 9 374827 +del ||| been proposed by the ||| 0.0555556 0.0597263 2.6679e-06 2.09284e-09 2.718 ||| 0-2 0-3 ||| 18 374827 +del ||| been put by ||| 0.5 0.0461582 2.6679e-06 5.9534e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| been taken of the ||| 0.2 0.10196 2.6679e-06 3.11835e-07 2.718 ||| 0-2 0-3 ||| 5 374827 +del ||| been taken on ||| 0.04 0.0140673 2.6679e-06 2.98509e-08 2.718 ||| 0-2 ||| 25 374827 +del ||| been the subject of ||| 0.00510204 0.130625 2.6679e-06 3.26427e-08 2.718 ||| 0-3 ||| 196 374827 +del ||| been the ||| 0.00243161 0.0732944 1.06716e-05 0.00115976 2.718 ||| 0-1 ||| 1645 374827 +del ||| been to have the ||| 0.5 0.0732944 2.6679e-06 1.2325e-06 2.718 ||| 0-3 ||| 2 374827 +del ||| been unfair on ||| 1 0.0140673 2.6679e-06 2.58719e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| been warning about the possibility ||| 0.5 0.0732944 2.6679e-06 1.96567e-15 2.718 ||| 0-3 ||| 2 374827 +del ||| been warning about the ||| 0.5 0.0732944 2.6679e-06 2.29634e-11 2.718 ||| 0-3 ||| 2 374827 +del ||| been working ||| 0.00309598 0.0101757 2.6679e-06 8.33464e-07 2.718 ||| 0-1 ||| 323 374827 +del ||| before it escapes from it ||| 1 0.0911315 2.6679e-06 2.39985e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| before it escapes from ||| 1 0.0911315 2.6679e-06 1.34951e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| before the ||| 0.001473 0.0732944 2.40111e-05 8.68637e-05 2.718 ||| 0-1 ||| 6110 374827 +del ||| begin in the ||| 0.0588235 0.0458111 2.6679e-06 5.52586e-07 2.718 ||| 0-1 0-2 ||| 17 374827 +del ||| behalf of all ||| 0.00411523 0.130625 2.6679e-06 4.43965e-07 2.718 ||| 0-1 ||| 243 374827 +del ||| behalf of at least ||| 1 0.0658216 2.6679e-06 5.63259e-12 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| behalf of at ||| 1 0.0658216 2.6679e-06 2.29527e-08 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| behalf of my group ||| 0.00100503 0.130625 2.6679e-06 7.78224e-12 2.718 ||| 0-1 ||| 995 374827 +del ||| behalf of my ||| 0.000691563 0.130625 2.6679e-06 6.04211e-08 2.718 ||| 0-1 ||| 1446 374827 +del ||| behalf of the GUE / NGL Group ||| 0.00172712 0.130625 2.6679e-06 5.07556e-22 2.718 ||| 0-1 ||| 579 374827 +del ||| behalf of the GUE / NGL ||| 0.0384615 0.130625 2.6679e-06 1.56027e-18 2.718 ||| 0-1 ||| 26 374827 +del ||| behalf of the GUE / ||| 0.00170648 0.130625 2.6679e-06 4.29827e-14 2.718 ||| 0-1 ||| 586 374827 +del ||| behalf of the GUE ||| 0.00170358 0.130625 2.6679e-06 1.86881e-10 2.718 ||| 0-1 ||| 587 374827 +del ||| behalf of the ||| 0.00100423 0.10196 3.73506e-05 3.26313e-05 2.718 ||| 0-1 0-2 ||| 13941 374827 +del ||| behalf of ||| 0.00158243 0.130625 4.26864e-05 9.39529e-05 2.718 ||| 0-1 ||| 10111 374827 +del ||| behaviour in the ||| 0.047619 0.0458111 2.6679e-06 2.39766e-07 2.718 ||| 0-1 0-2 ||| 21 374827 +del ||| behind by ||| 0.0526316 0.0461582 2.6679e-06 1.44881e-06 2.718 ||| 0-1 ||| 19 374827 +del ||| behind it ||| 0.00460829 0.0073296 2.6679e-06 1.56492e-06 2.718 ||| 0-0 ||| 217 374827 +del ||| behind the economic recovery of ||| 1 0.130625 2.6679e-06 2.61777e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| behind the ||| 0.00833965 0.0732944 2.93469e-05 3.11195e-05 2.718 ||| 0-1 ||| 1319 374827 +del ||| behind ||| 0.000795071 0.0073296 1.06716e-05 8.8e-05 2.718 ||| 0-0 ||| 5031 374827 +del ||| being , of ||| 0.2 0.130625 2.6679e-06 0.000100111 2.718 ||| 0-2 ||| 5 374827 +del ||| being a ||| 0.00303644 0.0008087 8.00369e-06 2.40328e-06 2.718 ||| 0-1 ||| 988 374827 +del ||| being asked for ||| 0.111111 0.0138653 2.6679e-06 2.31459e-09 2.718 ||| 0-2 ||| 9 374827 +del ||| being conducted by the ||| 0.166667 0.0597263 2.6679e-06 9.66916e-10 2.718 ||| 0-2 0-3 ||| 6 374827 +del ||| being covered in concrete ||| 1 0.0183279 2.6679e-06 1.71983e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| being covered in ||| 0.25 0.0183279 2.6679e-06 5.49465e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| being cut off from the ||| 0.333333 0.082213 2.6679e-06 6.59126e-13 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| being discussed in ||| 0.0175439 0.0183279 2.6679e-06 4.0289e-09 2.718 ||| 0-2 ||| 57 374827 +del ||| being disproved ||| 1 0.0526316 2.6679e-06 3.69954e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| being driven by ||| 0.125 0.0461582 2.6679e-06 1.35747e-09 2.718 ||| 0-2 ||| 8 374827 +del ||| being granted refugee ||| 1 0.0171548 2.6679e-06 1.24245e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| being made by ||| 0.00735294 0.0461582 2.6679e-06 9.63944e-08 2.718 ||| 0-2 ||| 136 374827 +del ||| being made within the ||| 0.5 0.0402501 2.6679e-06 8.6484e-10 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| being of a ||| 0.2 0.130625 2.6679e-06 3.72102e-05 2.718 ||| 0-1 ||| 5 374827 +del ||| being of paramount ||| 0.2 0.130625 2.6679e-06 4.86892e-09 2.718 ||| 0-1 ||| 5 374827 +del ||| being of ||| 0.0238095 0.130625 5.33579e-06 0.00083947 2.718 ||| 0-1 ||| 84 374827 +del ||| being played ||| 0.025641 0.0003475 2.6679e-06 3.69954e-09 2.718 ||| 0-1 ||| 39 374827 +del ||| being responsible for ||| 0.027027 0.0138653 2.6679e-06 4.52814e-09 2.718 ||| 0-2 ||| 37 374827 +del ||| being set in motion , for ||| 0.5 0.0138653 2.6679e-06 3.45275e-15 2.718 ||| 0-5 ||| 2 374827 +del ||| being spent ||| 0.00854701 0.001194 2.6679e-06 1.50827e-08 2.718 ||| 0-1 ||| 117 374827 +del ||| being suffocated by ||| 0.333333 0.0461582 2.6679e-06 1.84064e-11 2.718 ||| 0-2 ||| 3 374827 +del ||| being taken of the ||| 0.166667 0.10196 2.6679e-06 2.65758e-07 2.718 ||| 0-2 0-3 ||| 6 374827 +del ||| being the ||| 0.00335946 0.0732944 8.00369e-06 0.000988391 2.718 ||| 0-1 ||| 893 374827 +del ||| being treated just like ||| 1 0.0056007 2.6679e-06 9.0121e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| being treated just ||| 0.5 0.0056007 2.6679e-06 5.07466e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| being worked on ||| 0.142857 0.0140673 2.6679e-06 1.21409e-09 2.718 ||| 0-2 ||| 7 374827 +del ||| beings in ||| 0.25 0.0183279 2.6679e-06 6.68767e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| beings ’ ||| 1 0.106997 2.6679e-06 1.38664e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| belief in ||| 0.00588235 0.0183279 2.6679e-06 7.17306e-07 2.718 ||| 0-1 ||| 170 374827 +del ||| believe , in fact I am certain ||| 1 0.0183279 2.6679e-06 7.55234e-18 2.718 ||| 0-2 ||| 1 374827 +del ||| believe , in fact I am ||| 1 0.0183279 2.6679e-06 2.64994e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| believe , in fact I ||| 1 0.0183279 2.6679e-06 2.07432e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| believe , in fact ||| 0.5 0.0183279 2.6679e-06 2.93252e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| believe , in ||| 0.0769231 0.0183279 2.6679e-06 1.0011e-06 2.718 ||| 0-2 ||| 13 374827 +del ||| belittle the ||| 0.1 0.0732944 2.6679e-06 3.82047e-07 2.718 ||| 0-1 ||| 10 374827 +del ||| belong to the ||| 0.00289855 0.0732944 2.6679e-06 8.88821e-07 2.718 ||| 0-2 ||| 345 374827 +del ||| belonging to the ||| 0.0159744 0.0732944 1.33395e-05 8.3327e-07 2.718 ||| 0-2 ||| 313 374827 +del ||| belonging ||| 0.00134589 0.0013193 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 743 374827 +del ||| belongs to the acquis communautaire ||| 1 0.0732944 2.6679e-06 1.63105e-18 2.718 ||| 0-2 ||| 1 374827 +del ||| belongs to the acquis ||| 1 0.0732944 2.6679e-06 2.33007e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| belongs to the ||| 0.0137931 0.0732944 5.33579e-06 4.66014e-07 2.718 ||| 0-2 ||| 145 374827 +del ||| below the ||| 0.00545703 0.0732944 1.06716e-05 6.11276e-06 2.718 ||| 0-1 ||| 733 374827 +del ||| below ||| 0.00105319 0.0277778 5.33579e-06 0.0001011 2.718 ||| 0-0 ||| 1899 374827 +del ||| belts ||| 0.00632911 0.0144928 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 158 374827 +del ||| beneficiary of the ||| 0.0666667 0.10196 2.6679e-06 3.2785e-07 2.718 ||| 0-1 0-2 ||| 15 374827 +del ||| benefit from the same level ||| 0.333333 0.0911315 2.6679e-06 1.20621e-13 2.718 ||| 0-1 ||| 3 374827 +del ||| benefit from the same ||| 0.030303 0.0911315 2.6679e-06 1.41011e-10 2.718 ||| 0-1 ||| 33 374827 +del ||| benefit from the ||| 0.00153846 0.0911315 2.6679e-06 1.75234e-07 2.718 ||| 0-1 ||| 650 374827 +del ||| benefit from ||| 0.00139276 0.0911315 8.00369e-06 2.85436e-06 2.718 ||| 0-1 ||| 2154 374827 +del ||| benefit of plenty of ||| 0.25 0.130625 2.6679e-06 2.28098e-11 2.718 ||| 0-1 ||| 4 374827 +del ||| benefit of plenty ||| 0.25 0.130625 2.6679e-06 4.19576e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| benefit of the ||| 0.0108696 0.10196 1.33395e-05 1.34931e-05 2.718 ||| 0-1 0-2 ||| 460 374827 +del ||| benefit of ||| 0.00126024 0.130625 5.33579e-06 3.88496e-05 2.718 ||| 0-1 ||| 1587 374827 +del ||| benefiting from the ||| 0.0107527 0.0911315 2.6679e-06 3.85861e-09 2.718 ||| 0-1 ||| 93 374827 +del ||| benefiting from ||| 0.00411523 0.0911315 2.6679e-06 6.28523e-08 2.718 ||| 0-1 ||| 243 374827 +del ||| benefits of the ||| 0.00389105 0.10196 2.6679e-06 4.05714e-06 2.718 ||| 0-1 0-2 ||| 257 374827 +del ||| beside the ||| 0.0384615 0.0732944 2.6679e-06 8.6829e-07 2.718 ||| 0-1 ||| 26 374827 +del ||| best part of the ||| 0.2 0.10196 2.6679e-06 1.6917e-08 2.718 ||| 0-2 0-3 ||| 5 374827 +del ||| best practice in the ||| 0.0277778 0.0458111 2.6679e-06 1.36722e-10 2.718 ||| 0-2 0-3 ||| 36 374827 +del ||| bestowed on him by the ||| 1 0.0597263 2.6679e-06 1.32518e-14 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| better labelling ||| 0.027027 0.0220019 2.6679e-06 2.03031e-08 2.718 ||| 0-1 ||| 37 374827 +del ||| better off , ||| 0.111111 0.0046938 2.6679e-06 1.17111e-09 2.718 ||| 0-1 ||| 9 374827 +del ||| better off ||| 0.00961538 0.0046938 2.6679e-06 9.82022e-09 2.718 ||| 0-1 ||| 104 374827 +del ||| between Germany and ||| 0.0185185 0.0028314 2.6679e-06 6.60521e-11 2.718 ||| 0-0 ||| 54 374827 +del ||| between Germany ||| 0.015625 0.0028314 2.6679e-06 5.27324e-09 2.718 ||| 0-0 ||| 64 374827 +del ||| between forms of ||| 0.333333 0.130625 2.6679e-06 6.94129e-09 2.718 ||| 0-2 ||| 3 374827 +del ||| between one person and ||| 0.5 0.0028314 2.6679e-06 1.36908e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| between one person ||| 0.5 0.0028314 2.6679e-06 1.093e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| between one ||| 0.00694444 0.0028314 2.6679e-06 8.48605e-07 2.718 ||| 0-0 ||| 144 374827 +del ||| between ourselves and the ||| 0.047619 0.0732944 2.6679e-06 3.65066e-10 2.718 ||| 0-3 ||| 21 374827 +del ||| between parts of the ||| 1 0.0028314 2.6679e-06 3.96158e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| between parts of ||| 1 0.0028314 2.6679e-06 6.45294e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| between parts ||| 0.2 0.0028314 2.6679e-06 1.18699e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| between projects financed by the ||| 1 0.0461582 2.6679e-06 9.81184e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| between projects financed by ||| 1 0.0461582 2.6679e-06 1.59823e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| between the European ||| 0.00884956 0.0276473 2.6679e-06 2.17147e-07 2.718 ||| 0-0 0-1 0-2 ||| 113 374827 +del ||| between the two parties ||| 0.0105263 0.0028314 2.6679e-06 2.16886e-13 2.718 ||| 0-0 ||| 95 374827 +del ||| between the two ||| 0.000886525 0.0028314 2.6679e-06 2.95485e-09 2.718 ||| 0-0 ||| 1128 374827 +del ||| between the ||| 0.00343658 0.0380629 0.000200092 7.07135e-05 2.718 ||| 0-0 0-1 ||| 21824 374827 +del ||| between ||| 0.00111335 0.0028314 0.000170745 0.0002036 2.718 ||| 0-0 ||| 57484 374827 +del ||| beyond lower ||| 0.25 0.0032951 2.6679e-06 9.7536e-10 2.718 ||| 0-0 ||| 4 374827 +del ||| beyond the ||| 0.00259403 0.0732944 1.06716e-05 2.6014e-05 2.718 ||| 0-1 ||| 1542 374827 +del ||| beyond ||| 0.000290065 0.0032951 5.33579e-06 3.81e-05 2.718 ||| 0-0 ||| 6895 374827 +del ||| bias in the ||| 0.25 0.0458111 2.6679e-06 2.34146e-08 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| big vision of ||| 1 0.130625 2.6679e-06 1.69505e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| biocidal products of this kind ||| 1 0.130625 2.6679e-06 3.86937e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| biocidal products of this ||| 1 0.130625 2.6679e-06 7.92904e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| biocidal products of ||| 1 0.130625 2.6679e-06 1.22714e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| black ’ ||| 0.2 0.106997 2.6679e-06 7.82782e-08 2.718 ||| 0-1 ||| 5 374827 +del ||| blame for the ||| 0.00892857 0.0732944 2.6679e-06 6.35309e-08 2.718 ||| 0-2 ||| 112 374827 +del ||| bleeding disease of ||| 1 0.130625 2.6679e-06 6.09145e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| bloc ||| 0.00662252 0.0145773 5.33579e-06 6.6e-06 2.718 ||| 0-0 ||| 302 374827 +del ||| block of ||| 0.0357143 0.130625 2.6679e-06 2.86136e-06 2.718 ||| 0-1 ||| 28 374827 +del ||| block ’ ||| 1 0.106997 2.6679e-06 5.42356e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| bluefin tuna ||| 0.00380228 0.0909091 2.6679e-06 1.3248e-10 2.718 ||| 0-0 ||| 263 374827 +del ||| bluefin ||| 0.00515464 0.0909091 2.6679e-06 3.68e-05 2.718 ||| 0-0 ||| 194 374827 +del ||| board all of ||| 0.25 0.130625 2.6679e-06 1.86089e-07 2.718 ||| 0-2 ||| 4 374827 +del ||| body in ||| 0.0212766 0.0183279 2.6679e-06 2.30832e-06 2.718 ||| 0-1 ||| 47 374827 +del ||| body of the ||| 0.015873 0.10196 2.6679e-06 8.76999e-06 2.718 ||| 0-1 0-2 ||| 63 374827 +del ||| body of ||| 0.00760456 0.130625 5.33579e-06 2.52508e-05 2.718 ||| 0-1 ||| 263 374827 +del ||| bomb of displaced ||| 0.5 0.130625 2.6679e-06 8.96756e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| bomb of ||| 0.142857 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| book ||| 0.00146628 0.0593849 2.6679e-06 7.36e-05 2.718 ||| 0-0 ||| 682 374827 +del ||| boom in ||| 0.0344828 0.0183279 2.6679e-06 4.85395e-08 2.718 ||| 0-1 ||| 29 374827 +del ||| boosting ||| 0.00170648 0.0244361 2.6679e-06 1.71e-05 2.718 ||| 0-0 ||| 586 374827 +del ||| bordering on the ||| 0.0465116 0.0436809 5.33579e-06 1.46471e-08 2.718 ||| 0-1 0-2 ||| 43 374827 +del ||| born after the era of budgetary plenty ||| 1 0.130625 2.6679e-06 7.69144e-26 2.718 ||| 0-4 ||| 1 374827 +del ||| born after the era of budgetary ||| 1 0.130625 2.6679e-06 7.1217e-21 2.718 ||| 0-4 ||| 1 374827 +del ||| born after the era of ||| 1 0.130625 2.6679e-06 3.23714e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| both by the ||| 0.0125 0.0597263 5.33579e-06 9.30295e-06 2.718 ||| 0-1 0-2 ||| 160 374827 +del ||| both by ||| 0.00295858 0.0461582 2.6679e-06 2.67853e-05 2.718 ||| 0-1 ||| 338 374827 +del ||| both from the ||| 0.0258065 0.082213 1.06716e-05 1.24692e-05 2.718 ||| 0-1 0-2 ||| 155 374827 +del ||| both from ||| 0.00803213 0.0911315 5.33579e-06 3.59017e-05 2.718 ||| 0-1 ||| 249 374827 +del ||| both in the ||| 0.00377358 0.0458111 8.00369e-06 1.55145e-05 2.718 ||| 0-1 0-2 ||| 795 374827 +del ||| both in ||| 0.000796813 0.0183279 5.33579e-06 4.46698e-05 2.718 ||| 0-1 ||| 2510 374827 +del ||| both of the ||| 0.0378378 0.10196 1.86753e-05 0.000169714 2.718 ||| 0-1 0-2 ||| 185 374827 +del ||| both of which ||| 0.00763359 0.130625 2.6679e-06 4.15083e-06 2.718 ||| 0-1 ||| 131 374827 +del ||| both of ||| 0.00814111 0.130625 1.60074e-05 0.000488643 2.718 ||| 0-1 ||| 737 374827 +del ||| both out of the ||| 1 0.10196 2.6679e-06 6.50071e-07 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| both that ||| 0.0263158 2.51e-05 2.6679e-06 4.78728e-08 2.718 ||| 0-1 ||| 38 374827 +del ||| both the ||| 0.00680107 0.0732944 7.47011e-05 0.000575329 2.718 ||| 0-1 ||| 4117 374827 +del ||| both those in the ||| 0.5 0.0458111 2.6679e-06 1.12341e-08 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| both to the ||| 0.00680272 0.0732944 5.33579e-06 5.11227e-05 2.718 ||| 0-2 ||| 294 374827 +del ||| bottom of the ||| 0.0123457 0.10196 5.33579e-06 1.47532e-06 2.718 ||| 0-1 0-2 ||| 162 374827 +del ||| bought up by ||| 0.0588235 0.0461582 2.6679e-06 2.59191e-10 2.718 ||| 0-2 ||| 17 374827 +del ||| boundaries of the ||| 0.0227273 0.10196 2.6679e-06 8.0938e-07 2.718 ||| 0-1 0-2 ||| 44 374827 +del ||| branches of the popular ||| 0.5 0.130625 2.6679e-06 6.25871e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| branches of the ||| 0.0126582 0.130625 2.6679e-06 5.7951e-08 2.718 ||| 0-1 ||| 79 374827 +del ||| branches of ||| 0.00787402 0.130625 2.6679e-06 9.43954e-07 2.718 ||| 0-1 ||| 127 374827 +del ||| break for the ||| 1 0.0435798 2.6679e-06 1.08734e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| breakdown of the ||| 0.0172414 0.10196 2.6679e-06 4.40548e-07 2.718 ||| 0-1 0-2 ||| 58 374827 +del ||| breaking the process down into ||| 1 0.0732944 2.6679e-06 1.60694e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| breaking the process down ||| 1 0.0732944 2.6679e-06 1.56515e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| breaking the process ||| 1 0.0732944 2.6679e-06 2.24201e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| breaking the ||| 0.00704225 0.0732944 2.6679e-06 5.24447e-06 2.718 ||| 0-1 ||| 142 374827 +del ||| breast ||| 0.00244499 0.0042463 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 409 374827 +del ||| bring about ||| 0.00216685 0.0101916 1.06716e-05 4.37096e-07 2.718 ||| 0-1 ||| 1846 374827 +del ||| bring action under Title ||| 0.2 0.113065 2.6679e-06 1.99553e-15 2.718 ||| 0-3 ||| 5 374827 +del ||| bring for this sector are obvious ||| 1 0.0250353 2.6679e-06 7.29671e-18 2.718 ||| 0-3 ||| 1 374827 +del ||| bring for this sector are ||| 1 0.0250353 2.6679e-06 1.74981e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| bring for this sector ||| 1 0.0250353 2.6679e-06 1.15326e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| bring many of the ||| 0.25 0.10196 2.6679e-06 1.09491e-08 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| bring the ||| 0.00132626 0.0732944 2.6679e-06 0.000108119 2.718 ||| 0-1 ||| 754 374827 +del ||| bring this ||| 0.00390625 0.0033154 2.6679e-06 7.14714e-07 2.718 ||| 0-1 ||| 256 374827 +del ||| bringing an action before the ||| 1 0.0732944 2.6679e-06 9.37205e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| broader term than ' ||| 1 0.0303522 2.6679e-06 1.66466e-14 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| brominated flame ||| 0.025 0.0262009 2.6679e-06 1.975e-11 2.718 ||| 0-1 ||| 40 374827 +del ||| brought about in the ||| 0.166667 0.0458111 2.6679e-06 3.70892e-09 2.718 ||| 0-2 0-3 ||| 6 374827 +del ||| brought about ||| 0.00206612 0.0101916 2.6679e-06 3.93148e-07 2.718 ||| 0-1 ||| 484 374827 +del ||| brought by the ||| 0.08 0.0597263 1.06716e-05 1.57249e-06 2.718 ||| 0-1 0-2 ||| 50 374827 +del ||| brought by ||| 0.011236 0.0461582 2.6679e-06 4.52754e-06 2.718 ||| 0-1 ||| 89 374827 +del ||| brought in by the ||| 0.0526316 0.0732944 2.6679e-06 1.09284e-08 2.718 ||| 0-3 ||| 19 374827 +del ||| brought on ||| 0.047619 0.0140673 2.6679e-06 2.7461e-06 2.718 ||| 0-1 ||| 21 374827 +del ||| brought together in ||| 0.05 0.0183279 2.6679e-06 4.53489e-09 2.718 ||| 0-2 ||| 20 374827 +del ||| brought under the ||| 0.1 0.0441302 2.6679e-06 7.72736e-08 2.718 ||| 0-1 0-2 ||| 10 374827 +del ||| budget for ||| 0.000714286 0.0138653 2.6679e-06 1.32759e-06 2.718 ||| 0-1 ||| 1400 374827 +del ||| budget of the ||| 0.00431034 0.10196 5.33579e-06 1.26427e-05 2.718 ||| 0-1 0-2 ||| 464 374827 +del ||| budget of ||| 0.00144928 0.130625 2.6679e-06 3.64012e-05 2.718 ||| 0-1 ||| 690 374827 +del ||| budget ||| 0.000132512 0.0009765 1.06716e-05 3.15e-05 2.718 ||| 0-0 ||| 30186 374827 +del ||| budgetary ||| 0.000498318 0.0017806 1.06716e-05 1.71e-05 2.718 ||| 0-0 ||| 8027 374827 +del ||| build on ||| 0.00247525 0.0140673 2.6679e-06 3.88377e-07 2.718 ||| 0-1 ||| 404 374827 +del ||| build up banana plantations ||| 1 0.180809 2.6679e-06 3.43933e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| build up banana ||| 1 0.180809 2.6679e-06 4.91333e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| building - the front door ||| 1 0.0732944 2.6679e-06 2.78875e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| building - the front ||| 1 0.0732944 2.6679e-06 6.15618e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| building - the ||| 1 0.0732944 2.6679e-06 7.63794e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| building block ’ ||| 1 0.106997 2.6679e-06 3.16194e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| building the ||| 0.00421941 0.0370559 2.6679e-06 1.84077e-06 2.718 ||| 0-0 0-1 ||| 237 374827 +del ||| building ||| 0.000367175 0.0008173 5.33579e-06 5.3e-06 2.718 ||| 0-0 ||| 5447 374827 +del ||| burden away from ||| 0.166667 0.0911315 2.6679e-06 2.999e-10 2.718 ||| 0-2 ||| 6 374827 +del ||| burden of ||| 0.00241838 0.130625 5.33579e-06 1.28319e-05 2.718 ||| 0-1 ||| 827 374827 +del ||| burden on ||| 0.00284091 0.0140673 2.6679e-06 4.26626e-07 2.718 ||| 0-1 ||| 352 374827 +del ||| business activities ranging from ||| 1 0.0911315 2.6679e-06 1.93685e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| business of ||| 0.00480769 0.130625 2.6679e-06 3.68437e-05 2.718 ||| 0-1 ||| 208 374827 +del ||| business on the ||| 0.0769231 0.0436809 2.6679e-06 4.25447e-07 2.718 ||| 0-1 0-2 ||| 13 374827 +del ||| business with the ||| 0.0714286 0.0732944 2.6679e-06 2.77392e-07 2.718 ||| 0-2 ||| 14 374827 +del ||| but above all between ||| 0.5 0.0028314 2.6679e-06 8.52111e-14 2.718 ||| 0-3 ||| 2 374827 +del ||| but as a result of ||| 0.0588235 0.130625 2.6679e-06 4.80085e-11 2.718 ||| 0-4 ||| 17 374827 +del ||| but the ||| 0.000479042 0.0732944 1.06716e-05 0.000237356 2.718 ||| 0-1 ||| 8350 374827 +del ||| but would have a negative impact on ||| 1 0.0140673 2.6679e-06 4.02067e-20 2.718 ||| 0-6 ||| 1 374827 +del ||| butter of ||| 0.333333 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| buying out the ||| 0.142857 0.0732944 2.6679e-06 5.32143e-09 2.718 ||| 0-2 ||| 7 374827 +del ||| by Albert ||| 0.5 0.0461582 2.6679e-06 6.46792e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| by Alexander ||| 0.05 0.0461582 2.6679e-06 2.26377e-08 2.718 ||| 0-0 ||| 20 374827 +del ||| by Amnesty International ||| 0.0175439 0.0461582 2.6679e-06 2.02446e-13 2.718 ||| 0-0 ||| 57 374827 +del ||| by Amnesty ||| 0.0163934 0.0461582 2.6679e-06 6.46792e-09 2.718 ||| 0-0 ||| 61 374827 +del ||| by Bill ||| 0.0909091 0.0257673 2.6679e-06 2.10207e-08 2.718 ||| 0-0 0-1 ||| 11 374827 +del ||| by Dominique F. C. ||| 1 0.0461582 2.6679e-06 4.9803e-21 2.718 ||| 0-0 ||| 1 374827 +del ||| by Dominique F. ||| 1 0.0461582 2.6679e-06 7.11471e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| by Dominique ||| 0.428571 0.0461582 8.00369e-06 1.77868e-08 2.718 ||| 0-0 ||| 7 374827 +del ||| by EU ||| 0.0114943 0.0461582 2.6679e-06 8.00082e-06 2.718 ||| 0-0 ||| 87 374827 +del ||| by Europe ||| 0.00420168 0.0461582 2.6679e-06 8.18192e-06 2.718 ||| 0-0 ||| 238 374827 +del ||| by Fernando ||| 0.25 0.0318511 2.6679e-06 2.10207e-08 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| by Friedrich-Wilhelm ||| 0.333333 0.0730791 2.6679e-06 2.10207e-08 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| by Germany 's ||| 0.333333 0.169811 2.6679e-06 5.4637e-09 2.718 ||| 0-2 ||| 3 374827 +del ||| by Gilles ||| 0.166667 0.0461582 2.6679e-06 6.46792e-09 2.718 ||| 0-0 ||| 6 374827 +del ||| by Giorgos ||| 0.5 0.0461582 2.6679e-06 6.46792e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| by Harald ||| 1 0.0461582 2.6679e-06 6.46792e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| by Jean ||| 0.0588235 0.0461582 2.6679e-06 2.91056e-08 2.718 ||| 0-0 ||| 17 374827 +del ||| by John Walls ||| 0.333333 0.0461582 2.6679e-06 1.58464e-14 2.718 ||| 0-0 ||| 3 374827 +del ||| by John ||| 0.025 0.0461582 2.6679e-06 2.26377e-08 2.718 ||| 0-0 ||| 40 374827 +del ||| by Juan ||| 0.2 0.0461582 2.6679e-06 6.46792e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| by Luis ||| 0.0909091 0.0461582 2.6679e-06 1.13189e-08 2.718 ||| 0-0 ||| 11 374827 +del ||| by Manuel ||| 0.0714286 0.0461582 2.6679e-06 1.13189e-08 2.718 ||| 0-0 ||| 14 374827 +del ||| by Mr ||| 0.000239464 0.0461582 5.33579e-06 1.05556e-05 2.718 ||| 0-0 ||| 8352 374827 +del ||| by Mrs Ainardi ||| 0.0454545 0.0461582 2.6679e-06 6.05397e-13 2.718 ||| 0-0 ||| 22 374827 +del ||| by Mrs Flautre and ||| 0.5 0.0461582 2.6679e-06 7.58315e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| by Mrs Flautre ||| 0.0555556 0.0461582 2.6679e-06 6.05397e-13 2.718 ||| 0-0 ||| 18 374827 +del ||| by Mrs ||| 0.000872093 0.0461582 8.00369e-06 1.51349e-06 2.718 ||| 0-0 ||| 3440 374827 +del ||| by Peter ||| 0.1 0.0461582 2.6679e-06 2.26377e-08 2.718 ||| 0-0 ||| 10 374827 +del ||| by Roberto ||| 0.5 0.0461582 2.6679e-06 6.46792e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| by Salvador ||| 0.2 0.0461582 2.6679e-06 1.13189e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| by South ||| 0.5 0.117813 5.33579e-06 1.99422e-05 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| by Timothy ||| 0.5 0.0819027 2.6679e-06 4.20415e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| by Union ||| 0.5 0.0461582 2.6679e-06 9.01305e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| by Yves ||| 0.5 0.0461582 2.6679e-06 6.46792e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| by a militant and ||| 1 0.0461582 2.6679e-06 6.28446e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| by a militant ||| 1 0.0461582 2.6679e-06 5.01718e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| by a qualified ||| 0.142857 0.0461582 2.6679e-06 9.81933e-09 2.718 ||| 0-0 ||| 7 374827 +del ||| by a so-called strategic partnership ||| 1 0.0461582 2.6679e-06 5.4427e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| by a so-called strategic ||| 1 0.0461582 2.6679e-06 2.51977e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| by a so-called ||| 0.333333 0.0461582 2.6679e-06 2.68061e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| by a ||| 0.00324492 0.0461582 6.13616e-05 0.000716739 2.718 ||| 0-0 ||| 7088 374827 +del ||| by all ||| 0.000524659 0.0461582 2.6679e-06 7.64088e-05 2.718 ||| 0-0 ||| 1906 374827 +del ||| by an , ||| 1 0.0461582 2.6679e-06 8.57082e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| by an ||| 0.00317209 0.0461582 1.06716e-05 7.18699e-05 2.718 ||| 0-0 ||| 1261 374827 +del ||| by any ||| 0.00225225 0.0461582 2.6679e-06 2.4452e-05 2.718 ||| 0-0 ||| 444 374827 +del ||| by as ||| 0.0322581 0.0461582 2.6679e-06 0.000165003 2.718 ||| 0-0 ||| 31 374827 +del ||| by between ||| 0.0357143 0.0244948 2.6679e-06 3.29217e-06 2.718 ||| 0-0 0-1 ||| 28 374827 +del ||| by both the European ||| 0.5 0.0420896 2.6679e-06 2.85675e-08 2.718 ||| 0-0 0-2 0-3 ||| 2 374827 +del ||| by both the ||| 0.0182927 0.0597263 8.00369e-06 9.30295e-06 2.718 ||| 0-0 0-2 ||| 164 374827 +del ||| by both ||| 0.00683761 0.0461582 1.06716e-05 2.67853e-05 2.718 ||| 0-0 ||| 585 374827 +del ||| by citing ||| 0.0666667 0.0461582 2.6679e-06 2.91056e-08 2.718 ||| 0-0 ||| 15 374827 +del ||| by citizens ||| 0.00564972 0.0461582 2.6679e-06 1.76251e-06 2.718 ||| 0-0 ||| 177 374827 +del ||| by criticising ||| 0.0833333 0.0461582 2.6679e-06 2.26377e-08 2.718 ||| 0-0 ||| 12 374827 +del ||| by depriving a ||| 1 0.0461582 2.6679e-06 1.00344e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| by depriving ||| 0.2 0.0461582 2.6679e-06 2.26377e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| by driving home the ||| 1 0.0461582 2.6679e-06 3.3351e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| by driving home ||| 1 0.0461582 2.6679e-06 5.43249e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| by driving ||| 0.0833333 0.0461582 2.6679e-06 5.3522e-07 2.718 ||| 0-0 ||| 12 374827 +del ||| by each of ||| 0.0243902 0.0461582 2.6679e-06 2.46751e-07 2.718 ||| 0-0 ||| 41 374827 +del ||| by each ||| 0.0045045 0.0461582 2.6679e-06 4.53886e-06 2.718 ||| 0-0 ||| 222 374827 +del ||| by equipment used outdoors ||| 1 0.0461582 2.6679e-06 9.57284e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| by equipment used ||| 0.5 0.0461582 2.6679e-06 2.39321e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| by equipment ||| 0.2 0.0461582 2.6679e-06 5.57858e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| by far more ||| 0.333333 0.0461582 2.6679e-06 2.521e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| by far ||| 0.00285714 0.0461582 2.6679e-06 1.10391e-05 2.718 ||| 0-0 ||| 350 374827 +del ||| by farming to the ||| 1 0.0732944 2.6679e-06 2.39801e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| by getting ||| 0.0333333 0.0461582 2.6679e-06 1.87893e-06 2.718 ||| 0-0 ||| 30 374827 +del ||| by growth ||| 0.111111 0.0461582 2.6679e-06 7.79384e-07 2.718 ||| 0-0 ||| 9 374827 +del ||| by having ||| 0.0046729 0.0461582 2.6679e-06 6.19142e-06 2.718 ||| 0-0 ||| 214 374827 +del ||| by his ||| 0.00413223 0.0238391 2.6679e-06 9.76656e-07 2.718 ||| 0-0 0-1 ||| 242 374827 +del ||| by how ||| 0.0178571 0.0238467 2.6679e-06 1.65579e-06 2.718 ||| 0-0 0-1 ||| 56 374827 +del ||| by in any way ||| 1 0.0322431 2.6679e-06 1.42136e-09 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| by in any ||| 1 0.0322431 2.6679e-06 6.59382e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| by in ||| 0.05 0.0322431 2.6679e-06 0.000436041 2.718 ||| 0-0 0-1 ||| 20 374827 +del ||| by it ||| 0.00456621 0.0461582 2.6679e-06 0.000287551 2.718 ||| 0-0 ||| 219 374827 +del ||| by its ||| 0.00187091 0.0248694 5.33579e-06 7.90056e-06 2.718 ||| 0-0 0-1 ||| 1069 374827 +del ||| by large corporations ||| 0.5 0.0461582 2.6679e-06 4.47354e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| by large ||| 0.0105263 0.0461582 2.6679e-06 2.4853e-06 2.718 ||| 0-0 ||| 95 374827 +del ||| by looking at tea ||| 0.5 0.0461582 2.6679e-06 5.01456e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| by looking at ||| 0.03125 0.0461582 2.6679e-06 7.16366e-09 2.718 ||| 0-0 ||| 32 374827 +del ||| by looking ||| 0.0212766 0.0461582 2.6679e-06 1.71076e-06 2.718 ||| 0-0 ||| 47 374827 +del ||| by making it ||| 0.0128205 0.0461582 2.6679e-06 1.10621e-07 2.718 ||| 0-0 ||| 78 374827 +del ||| by making ||| 0.00129366 0.0461582 2.6679e-06 6.22052e-06 2.718 ||| 0-0 ||| 773 374827 +del ||| by means of a ||| 0.00162866 0.130625 2.6679e-06 4.35019e-08 2.718 ||| 0-2 ||| 614 374827 +del ||| by means of the ||| 0.00215517 0.10196 2.6679e-06 3.4086e-07 2.718 ||| 0-2 0-3 ||| 464 374827 +del ||| by means of ||| 0.000948467 0.130625 8.00369e-06 9.81413e-07 2.718 ||| 0-2 ||| 3163 374827 +del ||| by means ||| 0.000519751 0.0461582 5.33579e-06 1.02468e-05 2.718 ||| 0-0 ||| 3848 374827 +del ||| by more ||| 0.0052356 0.0461582 2.6679e-06 3.6927e-05 2.718 ||| 0-0 ||| 191 374827 +del ||| by my colleague , ||| 0.0113636 0.0461582 5.33579e-06 6.87018e-11 2.718 ||| 0-0 ||| 176 374827 +del ||| by my colleague ||| 0.00487805 0.0461582 5.33579e-06 5.76093e-10 2.718 ||| 0-0 ||| 410 374827 +del ||| by my fellow Member , ||| 0.04 0.0461582 5.33579e-06 4.21118e-14 2.718 ||| 0-0 ||| 50 374827 +del ||| by my fellow Member ||| 0.0366972 0.0461582 1.06716e-05 3.53125e-13 2.718 ||| 0-0 ||| 109 374827 +del ||| by my fellow ||| 0.0641026 0.0461582 1.33395e-05 6.85281e-10 2.718 ||| 0-0 ||| 78 374827 +del ||| by my honourable friend ||| 0.05 0.0461582 2.6679e-06 6.2424e-15 2.718 ||| 0-0 ||| 20 374827 +del ||| by my honourable ||| 0.05 0.0461582 2.6679e-06 5.42817e-10 2.718 ||| 0-0 ||| 20 374827 +del ||| by my vote in favour of the ||| 1 0.10196 2.6679e-06 3.76773e-16 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| by my ||| 0.00577201 0.0461582 2.13432e-05 1.03988e-05 2.718 ||| 0-0 ||| 1386 374827 +del ||| by no means ||| 0.00205339 0.0461582 2.6679e-06 7.97611e-09 2.718 ||| 0-0 ||| 487 374827 +del ||| by no ||| 0.00526316 0.0461582 5.33579e-06 1.25866e-05 2.718 ||| 0-0 ||| 380 374827 +del ||| by obtaining ||| 0.0526316 0.0461582 2.6679e-06 2.39313e-07 2.718 ||| 0-0 ||| 19 374827 +del ||| by of ||| 0.333333 0.0883915 2.6679e-06 0.00476986 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| by opening ||| 0.0111111 0.0461582 2.6679e-06 4.54371e-07 2.718 ||| 0-0 ||| 90 374827 +del ||| by others - ||| 0.2 0.0461582 2.6679e-06 5.92863e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| by others ||| 0.00549451 0.0461582 2.6679e-06 1.5717e-06 2.718 ||| 0-0 ||| 182 374827 +del ||| by our colleague , ||| 0.107143 0.0461582 8.00369e-06 1.4736e-10 2.718 ||| 0-0 ||| 28 374827 +del ||| by our colleague ||| 0.0196078 0.0461582 8.00369e-06 1.23568e-09 2.718 ||| 0-0 ||| 153 374827 +del ||| by our esteemed colleague ||| 0.2 0.0461582 2.6679e-06 2.71849e-15 2.718 ||| 0-0 ||| 5 374827 +del ||| by our esteemed ||| 0.111111 0.0461582 2.6679e-06 4.90702e-11 2.718 ||| 0-0 ||| 9 374827 +del ||| by our ||| 0.0101822 0.0461582 5.06901e-05 2.23046e-05 2.718 ||| 0-0 ||| 1866 374827 +del ||| by putting ||| 0.00595238 0.0461582 2.6679e-06 1.8094e-06 2.718 ||| 0-0 ||| 168 374827 +del ||| by rapporteur ||| 0.0833333 0.0461582 2.6679e-06 1.16908e-06 2.718 ||| 0-0 ||| 12 374827 +del ||| by reducing the number of ||| 0.0666667 0.0732944 2.6679e-06 1.30471e-12 2.718 ||| 0-2 ||| 15 374827 +del ||| by reducing the number ||| 0.0588235 0.0732944 2.6679e-06 2.39996e-11 2.718 ||| 0-2 ||| 17 374827 +del ||| by reducing the ||| 0.0145985 0.0597263 5.33579e-06 1.49386e-07 2.718 ||| 0-0 0-2 ||| 137 374827 +del ||| by reference to the ||| 0.0555556 0.0732944 2.6679e-06 1.3821e-08 2.718 ||| 0-3 ||| 18 374827 +del ||| by reference ||| 0.012987 0.0461582 2.6679e-06 1.37928e-06 2.718 ||| 0-0 ||| 77 374827 +del ||| by saying ||| 0.00125707 0.0461582 5.33579e-06 2.86852e-06 2.718 ||| 0-0 ||| 1591 374827 +del ||| by sea ||| 0.00578035 0.0461582 2.6679e-06 4.83477e-07 2.718 ||| 0-0 ||| 173 374827 +del ||| by short ||| 0.333333 0.0461582 2.6679e-06 2.28156e-06 2.718 ||| 0-0 ||| 3 374827 +del ||| by striving to ||| 1 0.0461582 2.6679e-06 9.77037e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| by striving ||| 0.2 0.0461582 2.6679e-06 1.09955e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| by thanking ||| 0.000775194 0.0461582 2.6679e-06 9.86358e-08 2.718 ||| 0-0 ||| 1290 374827 +del ||| by that ||| 0.0169851 0.0461582 2.13432e-05 0.000272002 2.718 ||| 0-0 ||| 471 374827 +del ||| by the Afghan ||| 1 0.0597263 2.6679e-06 1.01088e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| by the Aznar ||| 1 0.0461582 2.6679e-06 1.78685e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| by the Barcelona ||| 1 0.0597263 2.6679e-06 2.24641e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| by the British ||| 0.0416667 0.0416881 2.6679e-06 2.58337e-07 2.718 ||| 0-0 0-1 0-2 ||| 24 374827 +del ||| by the Burmese ||| 1 0.0597263 2.6679e-06 2.63953e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| by the Commission of the ||| 0.0344828 0.0597263 2.6679e-06 1.09481e-08 2.718 ||| 0-0 0-1 ||| 29 374827 +del ||| by the Commission of ||| 0.0153846 0.0597263 2.6679e-06 1.78331e-07 2.718 ||| 0-0 0-1 ||| 65 374827 +del ||| by the Commission ||| 0.000142816 0.0597263 2.6679e-06 3.28032e-06 2.718 ||| 0-0 0-1 ||| 7002 374827 +del ||| by the Committee on ||| 0.000451264 0.0461582 2.6679e-06 1.01359e-09 2.718 ||| 0-0 ||| 2216 374827 +del ||| by the Committee ||| 0.000384763 0.0461582 2.6679e-06 1.51485e-07 2.718 ||| 0-0 ||| 2599 374827 +del ||| by the Council ||| 0.000268673 0.0634115 2.6679e-06 5.31686e-05 2.718 ||| 0-0 0-1 0-2 ||| 3722 374827 +del ||| by the Dutch ||| 0.105263 0.0597263 5.33579e-06 9.3226e-08 2.718 ||| 0-0 0-1 ||| 19 374827 +del ||| by the EU ||| 0.000909091 0.0597263 2.6679e-06 2.77881e-06 2.718 ||| 0-0 0-1 ||| 1100 374827 +del ||| by the European Union 's ||| 0.166667 0.0964213 2.6679e-06 4.206e-10 2.718 ||| 0-0 0-1 0-4 ||| 6 374827 +del ||| by the European University ||| 1 0.0597263 2.6679e-06 2.62912e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| by the European ||| 0.167421 0.0597263 0.000197424 1.87794e-05 2.718 ||| 0-0 0-1 ||| 442 374827 +del ||| by the Malta ||| 1 0.0597263 2.6679e-06 2.24641e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| by the President-in-Office ||| 0.00613497 0.0597263 2.6679e-06 2.94841e-07 2.718 ||| 0-0 0-1 ||| 163 374827 +del ||| by the Riksdag ||| 0.5 0.0597263 2.6679e-06 3.93122e-09 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| by the Security ||| 0.2 0.0597263 2.6679e-06 2.66761e-07 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| by the UN ||| 0.00561798 0.0461582 2.6679e-06 4.13953e-08 2.718 ||| 0-0 ||| 178 374827 +del ||| by the advocates ||| 0.5 0.0597263 2.6679e-06 3.42578e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| by the arrest of ||| 0.25 0.130625 2.6679e-06 1.30256e-09 2.718 ||| 0-3 ||| 4 374827 +del ||| by the challenge posed by ||| 1 0.0461582 2.6679e-06 2.89981e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| by the concepts ||| 0.5 0.0597263 2.6679e-06 3.8189e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| by the criminal investigation ||| 1 0.0597263 2.6679e-06 4.30907e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| by the criminal ||| 0.5 0.0597263 2.6679e-06 2.34188e-07 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| by the employment ||| 0.2 0.0597263 2.6679e-06 2.74624e-07 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| by the end ||| 0.000729927 0.0461582 2.6679e-06 4.31921e-07 2.718 ||| 0-0 ||| 1370 374827 +del ||| by the forces of ||| 0.0416667 0.0833591 2.6679e-06 8.76366e-08 2.718 ||| 0-0 0-1 0-3 ||| 24 374827 +del ||| by the honourable Member ||| 0.00473934 0.0597263 2.6679e-06 1.51064e-10 2.718 ||| 0-0 0-1 ||| 211 374827 +del ||| by the honourable ||| 0.04 0.0597263 2.6679e-06 2.93157e-07 2.718 ||| 0-0 0-1 ||| 25 374827 +del ||| by the more ||| 0.125 0.0597263 2.6679e-06 1.28253e-05 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| by the obvious ||| 0.333333 0.0732944 2.6679e-06 7.60376e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| by the port ||| 0.166667 0.0752242 2.6679e-06 1.63763e-06 2.718 ||| 0-0 0-1 0-2 ||| 6 374827 +del ||| by the press ||| 0.0263158 0.0732944 2.6679e-06 5.5068e-08 2.718 ||| 0-1 ||| 38 374827 +del ||| by the previous ||| 0.0126582 0.0398621 2.6679e-06 7.30084e-09 2.718 ||| 0-0 0-1 0-2 ||| 79 374827 +del ||| by the public sector ||| 0.0357143 0.0461582 2.6679e-06 2.97898e-11 2.718 ||| 0-0 ||| 28 374827 +del ||| by the public ||| 0.00813008 0.0461582 2.6679e-06 1.60419e-07 2.718 ||| 0-0 ||| 123 374827 +del ||| by the rapporteur , ||| 0.00408163 0.0597263 5.33579e-06 4.8422e-08 2.718 ||| 0-0 0-1 ||| 490 374827 +del ||| by the rapporteur ||| 0.00235849 0.0597263 8.00369e-06 4.06039e-07 2.718 ||| 0-0 0-1 ||| 1272 374827 +del ||| by the real ||| 0.125 0.0597263 2.6679e-06 1.01032e-06 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| by the summer ||| 0.0294118 0.0461582 2.6679e-06 7.84228e-09 2.718 ||| 0-0 ||| 34 374827 +del ||| by the target ||| 0.5 0.0597263 2.6679e-06 2.12286e-07 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| by the trade ||| 0.142857 0.0466089 2.6679e-06 3.77678e-06 2.718 ||| 0-0 0-1 0-2 ||| 7 374827 +del ||| by the tsarist ||| 1 0.0732944 2.6679e-06 7.29377e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| by the underlying ||| 0.2 0.0597263 2.6679e-06 9.88421e-08 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| by the whole ||| 0.0285714 0.0597263 5.33579e-06 3.17699e-06 2.718 ||| 0-0 0-1 ||| 70 374827 +del ||| by the working ||| 0.5 0.0432094 2.6679e-06 1.40176e-06 2.718 ||| 0-0 0-1 0-2 ||| 2 374827 +del ||| by the ||| 0.0613232 0.0597263 0.0114613 0.00561603 2.718 ||| 0-0 0-1 ||| 70055 374827 +del ||| by this Member State , ||| 1 0.0247368 2.6679e-06 2.74219e-13 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| by this Member State ||| 1 0.0247368 2.6679e-06 2.29944e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| by this Member ||| 0.333333 0.0247368 2.6679e-06 1.91301e-08 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| by this ||| 0.004858 0.0247368 3.46827e-05 3.71242e-05 2.718 ||| 0-0 0-1 ||| 2676 374827 +del ||| by those ||| 0.00159744 0.0461582 2.6679e-06 1.17086e-05 2.718 ||| 0-0 ||| 626 374827 +del ||| by throwing off the ||| 0.333333 0.0732944 2.6679e-06 8.01512e-12 2.718 ||| 0-3 ||| 3 374827 +del ||| by unjust ||| 1 0.0461582 2.6679e-06 2.91056e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| by us ||| 0.008 0.0461582 5.33579e-06 4.66046e-05 2.718 ||| 0-0 ||| 250 374827 +del ||| by using ||| 0.00170358 0.0461582 2.6679e-06 1.25639e-06 2.718 ||| 0-0 ||| 587 374827 +del ||| by virtue of ||| 0.00374532 0.130625 2.6679e-06 3.40715e-08 2.718 ||| 0-2 ||| 267 374827 +del ||| by way of the ||| 0.0196078 0.0833591 2.6679e-06 3.57107e-06 2.718 ||| 0-0 0-2 0-3 ||| 51 374827 +del ||| by way of ||| 0.00445434 0.130625 1.06716e-05 3.33838e-06 2.718 ||| 0-2 ||| 898 374827 +del ||| by whether or not ||| 0.333333 0.0461582 2.6679e-06 1.65806e-11 2.718 ||| 0-0 ||| 3 374827 +del ||| by whether or ||| 0.333333 0.0461582 2.6679e-06 4.85652e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| by whether ||| 0.0526316 0.0461582 2.6679e-06 4.24781e-06 2.718 ||| 0-0 ||| 19 374827 +del ||| by which I ||| 0.00403226 0.0461582 2.6679e-06 9.71588e-07 2.718 ||| 0-0 ||| 248 374827 +del ||| by which the ||| 0.0243902 0.0597263 5.33579e-06 4.77059e-05 2.718 ||| 0-0 0-2 ||| 82 374827 +del ||| by which ||| 0.00560538 0.0461582 1.33395e-05 0.000137356 2.718 ||| 0-0 ||| 892 374827 +del ||| by whichever ||| 0.125 0.0461582 2.6679e-06 8.0849e-08 2.718 ||| 0-0 ||| 8 374827 +del ||| by whom ||| 0.0108696 0.0461582 2.6679e-06 1.07691e-06 2.718 ||| 0-0 ||| 92 374827 +del ||| by withdrawing their driving ||| 1 0.0169492 2.6679e-06 7.91223e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| by without mention of the slaughter ||| 1 0.10196 2.6679e-06 4.6218e-17 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| by without mention of the ||| 1 0.10196 2.6679e-06 1.15545e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| by women ||| 0.00353357 0.0461582 2.6679e-06 1.92097e-06 2.718 ||| 0-0 ||| 283 374827 +del ||| by your ||| 0.003003 0.0461582 2.6679e-06 4.13785e-06 2.718 ||| 0-0 ||| 333 374827 +del ||| by ||| 0.0310698 0.0461582 0.0171946 0.0161698 2.718 ||| 0-0 ||| 207436 374827 +del ||| bypassed the ||| 0.166667 0.0732944 2.6679e-06 3.82047e-07 2.718 ||| 0-1 ||| 6 374827 +del ||| cadmium from ||| 0.111111 0.0349206 2.6679e-06 2.31898e-08 2.718 ||| 0-0 ||| 9 374827 +del ||| cadmium ||| 0.00456621 0.0349206 2.6679e-06 1.44e-05 2.718 ||| 0-0 ||| 219 374827 +del ||| calculated in terms of ||| 0.5 0.0183279 2.6679e-06 1.85045e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| calculated in terms ||| 0.5 0.0183279 2.6679e-06 3.40381e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| calculated in ||| 0.0454545 0.0183279 2.6679e-06 3.10114e-07 2.718 ||| 0-1 ||| 22 374827 +del ||| call for the ||| 0.00190114 0.0732944 2.6679e-06 5.92599e-07 2.718 ||| 0-2 ||| 526 374827 +del ||| call for ||| 0.00029994 0.0138653 2.6679e-06 2.38836e-06 2.718 ||| 0-1 ||| 3334 374827 +del ||| call from ||| 0.0285714 0.0911315 2.6679e-06 4.81145e-06 2.718 ||| 0-1 ||| 35 374827 +del ||| call it the ||| 0.0714286 0.0732944 2.6679e-06 1.37116e-06 2.718 ||| 0-2 ||| 14 374827 +del ||| call of ||| 0.0625 0.130625 5.33579e-06 6.54868e-05 2.718 ||| 0-1 ||| 32 374827 +del ||| call the ||| 0.00840336 0.0732944 5.33579e-06 7.71041e-05 2.718 ||| 0-1 ||| 238 374827 +del ||| call upon ||| 0.00149254 0.0034407 2.6679e-06 1.13664e-08 2.718 ||| 0-1 ||| 670 374827 +del ||| called on Turkish migrants in Germany ||| 1 0.0140673 2.6679e-06 1.41271e-22 2.718 ||| 0-1 ||| 1 374827 +del ||| called on Turkish migrants in ||| 1 0.0140673 2.6679e-06 5.45449e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| called on Turkish migrants ||| 1 0.0140673 2.6679e-06 2.54829e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| called on Turkish ||| 1 0.0140673 2.6679e-06 5.09659e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| called on the ||| 0.00332226 0.0732944 2.6679e-06 4.03892e-07 2.718 ||| 0-2 ||| 301 374827 +del ||| called on ||| 0.00164745 0.0140673 2.6679e-06 1.70454e-06 2.718 ||| 0-1 ||| 607 374827 +del ||| called the ||| 0.00310559 0.0732944 2.6679e-06 6.03635e-05 2.718 ||| 0-1 ||| 322 374827 +del ||| called upon ||| 0.00242718 0.0034407 2.6679e-06 8.89856e-09 2.718 ||| 0-1 ||| 412 374827 +del ||| calling for a ||| 0.00251256 0.0138653 2.6679e-06 3.1426e-08 2.718 ||| 0-1 ||| 398 374827 +del ||| calling for ||| 0.000425351 0.0138653 2.6679e-06 7.08979e-07 2.718 ||| 0-1 ||| 2351 374827 +del ||| calling on the ||| 0.0025 0.0436809 2.6679e-06 2.24475e-07 2.718 ||| 0-1 0-2 ||| 400 374827 +del ||| came from ||| 0.0171674 0.0911315 1.06716e-05 2.73082e-06 2.718 ||| 0-1 ||| 233 374827 +del ||| came into being ||| 0.011236 0.000485 2.6679e-06 1.41277e-11 2.718 ||| 0-1 ||| 89 374827 +del ||| came into ||| 0.00208768 0.000485 2.6679e-06 4.9644e-09 2.718 ||| 0-1 ||| 479 374827 +del ||| came out of the ||| 0.0540541 0.10196 5.33579e-06 4.9447e-08 2.718 ||| 0-2 0-3 ||| 37 374827 +del ||| camp in ||| 0.0833333 0.0183279 2.6679e-06 2.53484e-07 2.718 ||| 0-1 ||| 12 374827 +del ||| campaign for a ' ||| 1 0.0138653 2.6679e-06 5.06147e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| campaign for a ||| 0.0416667 0.0138653 2.6679e-06 1.47354e-08 2.718 ||| 0-1 ||| 24 374827 +del ||| campaign for ||| 0.00446429 0.0138653 2.6679e-06 3.32435e-07 2.718 ||| 0-1 ||| 224 374827 +del ||| can also the ||| 1 0.0732944 2.6679e-06 5.21531e-06 2.718 ||| 0-2 ||| 1 374827 +del ||| can be established for ||| 0.333333 0.0138653 2.6679e-06 8.68124e-11 2.718 ||| 0-3 ||| 3 374827 +del ||| can escape from ||| 0.142857 0.0911315 2.6679e-06 4.89916e-10 2.718 ||| 0-2 ||| 7 374827 +del ||| can forget the ||| 0.1 0.0732944 2.6679e-06 1.93175e-08 2.718 ||| 0-2 ||| 10 374827 +del ||| can from the ||| 0.333333 0.082213 2.6679e-06 2.23889e-05 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| can only urge the Federal Institute ||| 0.5 0.0732944 2.6679e-06 1.68149e-21 2.718 ||| 0-3 ||| 2 374827 +del ||| can only urge the Federal ||| 0.5 0.0732944 2.6679e-06 3.91043e-16 2.718 ||| 0-3 ||| 2 374827 +del ||| can only urge the ||| 0.333333 0.0732944 2.6679e-06 3.76003e-11 2.718 ||| 0-3 ||| 3 374827 +del ||| can only win or ||| 1 0.0009217 2.6679e-06 4.92065e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| can only win ||| 1 0.0009217 2.6679e-06 4.3039e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| can play the ||| 0.1 0.0732944 2.6679e-06 2.6652e-07 2.718 ||| 0-2 ||| 10 374827 +del ||| can see from the ||| 0.0833333 0.082213 5.33579e-06 1.57752e-08 2.718 ||| 0-2 0-3 ||| 24 374827 +del ||| can state both out of the ||| 1 0.10196 2.6679e-06 4.88404e-13 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| can still travel by sea ||| 1 0.0461582 2.6679e-06 4.09414e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| can still travel by ||| 1 0.0461582 2.6679e-06 1.36928e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| can take action to that end in ||| 1 0.0183279 2.6679e-06 2.53878e-17 2.718 ||| 0-6 ||| 1 374827 +del ||| can the two aims ||| 0.0666667 0.0732944 2.6679e-06 9.74383e-12 2.718 ||| 0-1 ||| 15 374827 +del ||| can the two ||| 0.0666667 0.0732944 2.6679e-06 2.44206e-07 2.718 ||| 0-1 ||| 15 374827 +del ||| can the ||| 0.00152439 0.0732944 2.6679e-06 0.00103302 2.718 ||| 0-1 ||| 656 374827 +del ||| can to enable the ||| 0.333333 0.0732944 2.6679e-06 9.05073e-09 2.718 ||| 0-3 ||| 3 374827 +del ||| can we ensure that the ||| 0.0769231 0.0732944 2.6679e-06 8.84558e-11 2.718 ||| 0-4 ||| 13 374827 +del ||| cancer is ||| 0.0163934 0.057717 2.6679e-06 5.55678e-06 2.718 ||| 0-0 ||| 61 374827 +del ||| cancer ||| 0.000550661 0.057717 2.6679e-06 0.0001773 2.718 ||| 0-0 ||| 1816 374827 +del ||| cancers ||| 0.010101 0.0134228 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 99 374827 +del ||| cannot afford to subordinate all kinds of ||| 1 0.130625 2.6679e-06 9.31189e-23 2.718 ||| 0-6 ||| 1 374827 +del ||| capacity of ||| 0.00276243 0.130625 2.6679e-06 2.15634e-05 2.718 ||| 0-1 ||| 362 374827 +del ||| capita income of the ||| 0.2 0.10196 2.6679e-06 8.11429e-12 2.718 ||| 0-2 0-3 ||| 5 374827 +del ||| capital from the ||| 0.166667 0.082213 2.6679e-06 1.94961e-07 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| capitalism ||| 0.00184843 0.0339734 2.6679e-06 3.02e-05 2.718 ||| 0-0 ||| 541 374827 +del ||| capitalist forces ||| 0.0588235 0.0159574 2.6679e-06 6.2422e-10 2.718 ||| 0-0 ||| 17 374827 +del ||| capitalist ||| 0.00167224 0.0159574 2.6679e-06 1.18e-05 2.718 ||| 0-0 ||| 598 374827 +del ||| car body shop that only uses ||| 1 0.120879 2.6679e-06 2.10479e-22 2.718 ||| 0-0 ||| 1 374827 +del ||| car body shop that only ||| 1 0.120879 2.6679e-06 1.14391e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| car body shop that ||| 1 0.120879 2.6679e-06 1.02768e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| car body shop ||| 1 0.120879 2.6679e-06 6.10927e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| car body ||| 1 0.120879 2.6679e-06 4.69944e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| car is ||| 0.0384615 0.120879 2.6679e-06 1.72063e-05 2.718 ||| 0-0 ||| 26 374827 +del ||| car ||| 0.00261292 0.120879 1.86753e-05 0.000549 2.718 ||| 0-0 ||| 2679 374827 +del ||| cardiac ||| 0.125 0.125 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 8 374827 +del ||| care of in the ||| 0.5 0.0740824 2.6679e-06 2.80423e-07 2.718 ||| 0-1 0-2 0-3 ||| 2 374827 +del ||| care of the ||| 0.00934579 0.10196 2.6679e-06 1.0399e-05 2.718 ||| 0-1 0-2 ||| 107 374827 +del ||| carriage of ||| 0.0149254 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-1 ||| 67 374827 +del ||| carried out against the ||| 0.2 0.037912 2.6679e-06 7.20992e-11 2.718 ||| 0-2 0-3 ||| 5 374827 +del ||| carried out by the ||| 0.00775194 0.0597263 1.33395e-05 6.33948e-09 2.718 ||| 0-2 0-3 ||| 645 374827 +del ||| carried out by ||| 0.00226929 0.0461582 8.00369e-06 1.82528e-08 2.718 ||| 0-2 ||| 1322 374827 +del ||| carried out in April ||| 0.25 0.0183279 2.6679e-06 7.61005e-14 2.718 ||| 0-2 ||| 4 374827 +del ||| carried out in the ||| 0.010582 0.0458111 5.33579e-06 1.05724e-08 2.718 ||| 0-2 0-3 ||| 189 374827 +del ||| carried out in ||| 0.00142857 0.0183279 2.6679e-06 3.04402e-08 2.718 ||| 0-2 ||| 700 374827 +del ||| carried out of the ||| 0.166667 0.10196 2.6679e-06 1.15651e-07 2.718 ||| 0-2 0-3 ||| 6 374827 +del ||| carried out with ||| 0.011236 0.0045281 2.6679e-06 2.14837e-09 2.718 ||| 0-2 ||| 89 374827 +del ||| carried out ||| 0.000188288 0.0001342 2.6679e-06 3.47746e-09 2.718 ||| 0-1 ||| 5311 374827 +del ||| carrier ||| 0.00884956 0.0630915 5.33579e-06 2.63e-05 2.718 ||| 0-0 ||| 226 374827 +del ||| carries out the ||| 0.0416667 0.0732944 2.6679e-06 1.05098e-08 2.718 ||| 0-2 ||| 24 374827 +del ||| carry the same weight ||| 0.166667 0.0732944 2.6679e-06 1.56934e-12 2.718 ||| 0-1 ||| 6 374827 +del ||| carry the same ||| 0.142857 0.0732944 2.6679e-06 5.12855e-08 2.718 ||| 0-1 ||| 7 374827 +del ||| carry the ||| 0.00746269 0.0732944 2.6679e-06 6.37324e-05 2.718 ||| 0-1 ||| 134 374827 +del ||| cars in the ||| 0.0714286 0.0732944 2.6679e-06 1.25637e-07 2.718 ||| 0-2 ||| 14 374827 +del ||| case , the ||| 0.00176367 0.0732944 2.6679e-06 4.43142e-05 2.718 ||| 0-2 ||| 567 374827 +del ||| case also of ||| 1 0.130625 2.6679e-06 1.59336e-06 2.718 ||| 0-2 ||| 1 374827 +del ||| case between the ||| 0.25 0.0732944 2.6679e-06 9.80263e-08 2.718 ||| 0-2 ||| 4 374827 +del ||| case between ||| 0.0769231 0.0028314 2.6679e-06 2.17832e-07 2.718 ||| 0-1 ||| 13 374827 +del ||| case of such ||| 0.142857 0.130625 2.6679e-06 6.52955e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| case of the new ||| 0.0909091 0.10196 2.6679e-06 6.55166e-08 2.718 ||| 0-1 0-2 ||| 11 374827 +del ||| case of the ||| 0.0101946 0.10196 2.93469e-05 0.000109615 2.718 ||| 0-1 0-2 ||| 1079 374827 +del ||| case of ||| 0.00393842 0.130625 5.86937e-05 0.000315605 2.718 ||| 0-1 ||| 5586 374827 +del ||| cases involved the European ||| 1 0.0400553 2.6679e-06 4.72444e-11 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| cases of ||| 0.00121212 0.130625 5.33579e-06 3.77876e-05 2.718 ||| 0-1 ||| 1650 374827 +del ||| catch-the-eye ’ ||| 0.5 0.106997 2.6679e-06 6.15043e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| cause being the ||| 0.25 0.0732944 2.6679e-06 1.78602e-07 2.718 ||| 0-2 ||| 4 374827 +del ||| cause for ||| 0.00247831 0.0138653 5.33579e-06 1.94404e-06 2.718 ||| 0-1 ||| 807 374827 +del ||| cause of the ||| 0.003861 0.10196 2.6679e-06 1.85133e-05 2.718 ||| 0-1 0-2 ||| 259 374827 +del ||| cause of ||| 0.00438596 0.130625 1.33395e-05 5.33039e-05 2.718 ||| 0-1 ||| 1140 374827 +del ||| cause the ||| 0.00819672 0.0732944 2.6679e-06 6.276e-05 2.718 ||| 0-1 ||| 122 374827 +del ||| caused by the ||| 0.00412655 0.0597263 8.00369e-06 4.76801e-07 2.718 ||| 0-1 0-2 ||| 727 374827 +del ||| caused by ||| 0.00163599 0.0461582 1.06716e-05 1.37282e-06 2.718 ||| 0-1 ||| 2445 374827 +del ||| caused the ||| 0.00796813 0.0732944 5.33579e-06 2.94871e-05 2.718 ||| 0-1 ||| 251 374827 +del ||| causes of hunger and underdevelopment are many ||| 1 0.130625 2.6679e-06 7.17808e-25 2.718 ||| 0-1 ||| 1 374827 +del ||| causes of hunger and underdevelopment are ||| 1 0.130625 2.6679e-06 2.09091e-21 2.718 ||| 0-1 ||| 1 374827 +del ||| causes of hunger and underdevelopment ||| 1 0.130625 2.6679e-06 1.37807e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| causes of hunger and ||| 1 0.130625 2.6679e-06 3.44518e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| causes of hunger ||| 1 0.130625 2.6679e-06 2.75044e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| causes of ||| 0.0012285 0.130625 2.6679e-06 7.64012e-06 2.718 ||| 0-1 ||| 814 374827 +del ||| causes these gross distortions of ||| 1 0.130625 2.6679e-06 2.82792e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| causing the ||| 0.00877193 0.0732944 2.6679e-06 1.02458e-05 2.718 ||| 0-1 ||| 114 374827 +del ||| cease to apply the ||| 1 0.0732944 2.6679e-06 4.61866e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| ceiling on ||| 0.0215054 0.0140673 5.33579e-06 8.14023e-08 2.718 ||| 0-1 ||| 93 374827 +del ||| cent of ||| 0.00283286 0.130625 2.6679e-06 2.53688e-06 2.718 ||| 0-1 ||| 353 374827 +del ||| cent ||| 0.00262123 0.0083595 5.33579e-06 1.05e-05 2.718 ||| 0-0 ||| 763 374827 +del ||| central and eastern Europe ||| 0.00197628 0.147645 2.6679e-06 7.90921e-14 2.718 ||| 0-2 ||| 506 374827 +del ||| central and eastern ||| 0.00182482 0.147645 2.6679e-06 1.56309e-10 2.718 ||| 0-2 ||| 548 374827 +del ||| centre of the ||| 0.00462963 0.10196 2.6679e-06 3.2785e-06 2.718 ||| 0-1 0-2 ||| 216 374827 +del ||| centre of ||| 0.00437318 0.130625 8.00369e-06 9.43954e-06 2.718 ||| 0-1 ||| 686 374827 +del ||| century of the ||| 0.2 0.10196 2.6679e-06 1.40361e-06 2.718 ||| 0-1 0-2 ||| 5 374827 +del ||| certain amount of ||| 0.00995025 0.130625 5.33579e-06 2.04544e-08 2.718 ||| 0-2 ||| 201 374827 +del ||| certain length of ||| 0.142857 0.130625 2.6679e-06 3.23673e-09 2.718 ||| 0-2 ||| 7 374827 +del ||| certain means of livelihood ||| 0.25 0.130625 2.6679e-06 2.66379e-13 2.718 ||| 0-2 ||| 4 374827 +del ||| certain means of ||| 0.142857 0.130625 2.6679e-06 5.32757e-08 2.718 ||| 0-2 ||| 7 374827 +del ||| certainly got a lot of fun ||| 1 0.130625 2.6679e-06 1.85185e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| certainly got a lot of ||| 1 0.130625 2.6679e-06 4.62961e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| certainly pursue the ||| 1 0.0732944 2.6679e-06 3.4105e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| certificate ||| 0.00337838 0.0206186 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 296 374827 +del ||| chain of ||| 0.00775194 0.130625 2.6679e-06 3.06785e-06 2.718 ||| 0-1 ||| 129 374827 +del ||| chaired the ||| 0.0227273 0.0732944 2.6679e-06 1.11141e-06 2.718 ||| 0-1 ||| 44 374827 +del ||| challenge of ||| 0.00141044 0.0653981 2.6679e-06 3.83481e-07 2.718 ||| 0-0 0-1 ||| 709 374827 +del ||| challenge posed by ||| 0.0277778 0.0461582 2.6679e-06 8.99688e-12 2.718 ||| 0-2 ||| 36 374827 +del ||| champions of ||| 0.0153846 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-1 ||| 65 374827 +del ||| chance of making ||| 0.0555556 0.130625 2.6679e-06 7.47839e-09 2.718 ||| 0-1 ||| 18 374827 +del ||| chance of ||| 0.00184332 0.130625 5.33579e-06 1.94395e-05 2.718 ||| 0-1 ||| 1085 374827 +del ||| change its policy towards ||| 0.333333 0.0035806 2.6679e-06 2.98045e-15 2.718 ||| 0-1 ||| 3 374827 +del ||| change its policy ||| 0.05 0.0035806 2.6679e-06 2.34681e-11 2.718 ||| 0-1 ||| 20 374827 +del ||| change its ||| 0.0041841 0.0035806 2.6679e-06 5.96092e-08 2.718 ||| 0-1 ||| 239 374827 +del ||| change out of ||| 1 0.130625 2.6679e-06 1.37849e-07 2.718 ||| 0-2 ||| 1 374827 +del ||| change that will see the ||| 1 0.0732944 2.6679e-06 4.34481e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| change ||| 4.73171e-05 5.13e-05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 21134 374827 +del ||| changed from a ||| 0.25 0.0911315 2.6679e-06 3.14143e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| changed from ||| 0.0285714 0.0911315 2.6679e-06 7.08714e-07 2.718 ||| 0-1 ||| 35 374827 +del ||| changed in the ||| 0.0238095 0.0458111 2.6679e-06 3.06264e-07 2.718 ||| 0-1 0-2 ||| 42 374827 +del ||| changing from a ||| 0.25 0.0911315 2.6679e-06 1.31613e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| changing from ||| 0.0454545 0.0911315 2.6679e-06 2.96923e-07 2.718 ||| 0-1 ||| 22 374827 +del ||| changing over to ||| 0.0769231 0.006517 2.6679e-06 3.8858e-10 2.718 ||| 0-1 ||| 13 374827 +del ||| changing over ||| 0.0625 0.006517 2.6679e-06 4.37304e-09 2.718 ||| 0-1 ||| 16 374827 +del ||| changing rooms ||| 0.25 0.0004095 2.6679e-06 3.77e-12 2.718 ||| 0-0 ||| 4 374827 +del ||| changing ||| 0.000347584 0.0004095 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 2877 374827 +del ||| channelled by ||| 0.333333 0.0461582 2.6679e-06 6.95301e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| characteristic of ||| 0.00877193 0.130625 2.6679e-06 9.43954e-07 2.718 ||| 0-1 ||| 114 374827 +del ||| characteristics of ||| 0.00518135 0.130625 2.6679e-06 2.77286e-06 2.718 ||| 0-1 ||| 193 374827 +del ||| charging for the ||| 0.0666667 0.0435798 2.6679e-06 1.34516e-08 2.718 ||| 0-1 0-2 ||| 15 374827 +del ||| check the ||| 0.00564972 0.0732944 2.6679e-06 1.06279e-05 2.718 ||| 0-1 ||| 177 374827 +del ||| checks are justified , in ||| 1 0.0183279 2.6679e-06 1.17426e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| chest ||| 0.047619 0.0333333 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 21 374827 +del ||| chief public ||| 1 0.0064703 2.6679e-06 2.53195e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| child of ||| 0.037037 0.130625 2.6679e-06 9.76402e-06 2.718 ||| 0-1 ||| 27 374827 +del ||| child ||| 0.000304507 0.0080906 2.6679e-06 5.25e-05 2.718 ||| 0-0 ||| 3284 374827 +del ||| children 's ||| 0.00985222 0.169811 5.33579e-06 2.99348e-06 2.718 ||| 0-1 ||| 203 374827 +del ||| choice of ||| 0.00240674 0.130625 5.33579e-06 1.31564e-05 2.718 ||| 0-1 ||| 831 374827 +del ||| chosen by ||| 0.00819672 0.0461582 2.6679e-06 3.89692e-07 2.718 ||| 0-1 ||| 122 374827 +del ||| circle of stars ||| 0.333333 0.130625 5.33579e-06 2.0649e-12 2.718 ||| 0-1 ||| 6 374827 +del ||| circle of ||| 0.0215054 0.130625 5.33579e-06 1.47493e-06 2.718 ||| 0-1 ||| 93 374827 +del ||| citizens ' ||| 0.000668003 0.0293692 2.6679e-06 5.17543e-07 2.718 ||| 0-1 ||| 1497 374827 +del ||| citizens of ||| 0.000246245 0.130625 2.6679e-06 3.21534e-05 2.718 ||| 0-1 ||| 4061 374827 +del ||| citizens throughout the ||| 0.0322581 0.0732944 2.6679e-06 1.51051e-09 2.718 ||| 0-2 ||| 31 374827 +del ||| city 's ||| 0.142857 0.169811 2.6679e-06 8.23708e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| city in the ||| 0.0666667 0.0458111 2.6679e-06 1.92e-07 2.718 ||| 0-1 0-2 ||| 15 374827 +del ||| city of the ||| 0.333333 0.10196 2.6679e-06 2.10029e-06 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| claims about ||| 0.0526316 0.0101916 2.6679e-06 4.24038e-08 2.718 ||| 0-1 ||| 19 374827 +del ||| clampdown on ||| 0.0833333 0.0140673 2.6679e-06 3.923e-09 2.718 ||| 0-1 ||| 12 374827 +del ||| classed as ||| 0.0144928 0.0004965 2.6679e-06 8.2368e-10 2.718 ||| 0-1 ||| 69 374827 +del ||| classification with regard ||| 0.5 0.0045281 2.6679e-06 8.42328e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| classification with ||| 0.5 0.0045281 2.6679e-06 1.23708e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| clear from the ||| 0.00507614 0.0732944 2.6679e-06 1.86197e-07 2.718 ||| 0-2 ||| 197 374827 +del ||| clear from ||| 0.00274725 0.0911315 2.6679e-06 7.21501e-06 2.718 ||| 0-1 ||| 364 374827 +del ||| clear in the ||| 0.0168067 0.0458111 5.33579e-06 3.11789e-06 2.718 ||| 0-1 0-2 ||| 119 374827 +del ||| clear of ||| 0.037037 0.130625 2.6679e-06 9.82007e-05 2.718 ||| 0-1 ||| 27 374827 +del ||| clergy ||| 0.0149254 0.0810811 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 67 374827 +del ||| climate ||| 0.000536625 0.0384905 1.06716e-05 0.0008734 2.718 ||| 0-0 ||| 7454 374827 +del ||| close , the ||| 0.166667 0.0732944 2.6679e-06 6.14244e-06 2.718 ||| 0-2 ||| 6 374827 +del ||| close dialogue with Parliament ||| 0.333333 0.0198851 2.6679e-06 2.25188e-13 2.718 ||| 0-1 ||| 3 374827 +del ||| close dialogue with ||| 0.0526316 0.0198851 2.6679e-06 3.92314e-10 2.718 ||| 0-1 ||| 19 374827 +del ||| close dialogue ||| 0.03125 0.0198851 2.6679e-06 6.13517e-08 2.718 ||| 0-1 ||| 32 374827 +del ||| close down the ||| 0.0243902 0.0732944 2.6679e-06 3.5957e-08 2.718 ||| 0-2 ||| 41 374827 +del ||| close to the ||| 0.00262467 0.0732944 2.6679e-06 4.57681e-06 2.718 ||| 0-2 ||| 381 374827 +del ||| closed from ||| 0.5 0.0911315 2.6679e-06 1.25488e-06 2.718 ||| 0-1 ||| 2 374827 +del ||| closed on the ||| 1 0.0140673 2.6679e-06 3.48616e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| closed on ||| 0.0588235 0.0140673 2.6679e-06 5.67854e-07 2.718 ||| 0-1 ||| 17 374827 +del ||| closely involved with the ||| 0.142857 0.0732944 2.6679e-06 6.79672e-11 2.718 ||| 0-3 ||| 7 374827 +del ||| closer to one ||| 0.1 0.0006066 2.6679e-06 1.1812e-09 2.718 ||| 0-1 ||| 10 374827 +del ||| closer to ||| 0.000944287 0.0006066 2.6679e-06 2.83397e-07 2.718 ||| 0-1 ||| 1059 374827 +del ||| clothing ||| 0.00100402 0.0063694 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 996 374827 +del ||| co-operation in connection with ||| 1 0.0183279 2.6679e-06 5.78904e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| co-operation in connection ||| 1 0.0183279 2.6679e-06 9.05316e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| co-operation in ||| 0.0263158 0.0183279 2.6679e-06 5.93261e-08 2.718 ||| 0-1 ||| 38 374827 +del ||| cod ||| 0.00218579 0.127621 5.33579e-06 0.0001839 2.718 ||| 0-0 ||| 915 374827 +del ||| codes of civil procedure ||| 0.5 0.130625 2.6679e-06 3.38754e-15 2.718 ||| 0-1 ||| 2 374827 +del ||| codes of civil ||| 0.333333 0.130625 2.6679e-06 3.37404e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| codes of ||| 0.00321543 0.130625 2.6679e-06 1.26844e-06 2.718 ||| 0-1 ||| 311 374827 +del ||| coffers of ||| 0.0344828 0.130625 2.6679e-06 4.1298e-07 2.718 ||| 0-1 ||| 29 374827 +del ||| cohesion of the ||| 0.0166667 0.10196 2.6679e-06 1.58802e-06 2.718 ||| 0-1 0-2 ||| 60 374827 +del ||| cohesion ||| 0.00012647 7.54e-05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 7907 374827 +del ||| coined by ||| 0.0714286 0.0387041 2.6679e-06 2.10207e-08 2.718 ||| 0-0 0-1 ||| 14 374827 +del ||| collaborating in ||| 0.0909091 0.0183279 2.6679e-06 1.88765e-08 2.718 ||| 0-1 ||| 11 374827 +del ||| collapse of ||| 0.00241546 0.130625 2.6679e-06 3.06785e-06 2.718 ||| 0-1 ||| 414 374827 +del ||| collapse ||| 0.000864304 0.0026247 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 1157 374827 +del ||| combating the ||| 0.00212766 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-1 ||| 470 374827 +del ||| come along the ||| 0.5 0.0732944 2.6679e-06 5.14732e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| come as a ||| 0.0222222 0.0008087 2.6679e-06 7.31894e-09 2.718 ||| 0-2 ||| 45 374827 +del ||| come from all sides of the ||| 1 0.0911315 2.6679e-06 1.06539e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| come from all sides of ||| 1 0.0911315 2.6679e-06 1.7354e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| come from all sides ||| 1 0.0911315 2.6679e-06 3.19219e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| come from all ||| 0.125 0.0911315 2.6679e-06 8.69807e-08 2.718 ||| 0-1 ||| 8 374827 +del ||| come from the ||| 0.0316456 0.082213 2.6679e-05 6.39306e-06 2.718 ||| 0-1 0-2 ||| 316 374827 +del ||| come from ||| 0.00338983 0.0911315 1.33395e-05 1.8407e-05 2.718 ||| 0-1 ||| 1475 374827 +del ||| come in for ||| 0.0344828 0.0160966 2.6679e-06 2.46395e-07 2.718 ||| 0-1 0-2 ||| 29 374827 +del ||| come in the ||| 0.03125 0.0458111 2.6679e-06 7.95442e-06 2.718 ||| 0-1 0-2 ||| 32 374827 +del ||| come in ||| 0.00497512 0.0183279 2.6679e-06 2.29026e-05 2.718 ||| 0-1 ||| 201 374827 +del ||| come of ||| 0.015873 0.130625 2.6679e-06 0.000250531 2.718 ||| 0-1 ||| 63 374827 +del ||| come out in favour ||| 0.0384615 0.0183279 2.6679e-06 2.83794e-11 2.718 ||| 0-2 ||| 26 374827 +del ||| come out in ||| 0.027027 0.0183279 2.6679e-06 8.7726e-08 2.718 ||| 0-2 ||| 37 374827 +del ||| come out into the ||| 0.125 0.0732944 2.6679e-06 1.16004e-09 2.718 ||| 0-3 ||| 8 374827 +del ||| come out of the ||| 0.0470588 0.10196 1.06716e-05 3.33296e-07 2.718 ||| 0-2 0-3 ||| 85 374827 +del ||| come out with ||| 0.047619 0.0045281 2.6679e-06 6.19141e-09 2.718 ||| 0-2 ||| 21 374827 +del ||| come to ||| 0.000349406 0.0006066 2.6679e-06 1.12999e-06 2.718 ||| 0-1 ||| 2862 374827 +del ||| come under the ||| 0.0131579 0.0732944 5.33579e-06 1.05837e-07 2.718 ||| 0-2 ||| 152 374827 +del ||| come under ||| 0.00308642 0.014966 2.6679e-06 6.74854e-07 2.718 ||| 0-1 ||| 324 374827 +del ||| come up to the ||| 0.0714286 0.0732944 2.6679e-06 8.93925e-08 2.718 ||| 0-3 ||| 14 374827 +del ||| come up ||| 0.00104603 0.0020886 2.6679e-06 1.60603e-07 2.718 ||| 0-1 ||| 956 374827 +del ||| come within the ||| 0.0172414 0.0402501 2.6679e-06 1.23211e-07 2.718 ||| 0-1 0-2 ||| 58 374827 +del ||| comes from the ||| 0.0114943 0.082213 5.33579e-06 3.00947e-06 2.718 ||| 0-1 0-2 ||| 174 374827 +del ||| comes from ||| 0.00309119 0.0911315 5.33579e-06 8.66495e-06 2.718 ||| 0-1 ||| 647 374827 +del ||| comes to the ||| 0.00128866 0.0732944 2.6679e-06 1.23386e-05 2.718 ||| 0-2 ||| 776 374827 +del ||| comes to ||| 0.000264061 0.0006066 2.6679e-06 5.31934e-07 2.718 ||| 0-1 ||| 3787 374827 +del ||| coming from the ||| 0.0164835 0.082213 8.00369e-06 1.46258e-06 2.718 ||| 0-1 0-2 ||| 182 374827 +del ||| coming from ||| 0.0014881 0.0911315 2.6679e-06 4.2111e-06 2.718 ||| 0-1 ||| 672 374827 +del ||| coming out of the ||| 0.030303 0.10196 2.6679e-06 7.62504e-08 2.718 ||| 0-2 0-3 ||| 33 374827 +del ||| coming under the ||| 0.047619 0.0441302 2.6679e-06 5.36224e-08 2.718 ||| 0-1 0-2 ||| 21 374827 +del ||| commencing ||| 0.00869565 0.025641 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 115 374827 +del ||| commend the Council 's ||| 1 0.0732944 2.6679e-06 1.32659e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| commend the Council ||| 0.111111 0.0732944 2.6679e-06 6.9659e-10 2.718 ||| 0-1 ||| 9 374827 +del ||| commend the ||| 0.00558659 0.0732944 2.6679e-06 2.01443e-06 2.718 ||| 0-1 ||| 179 374827 +del ||| comment - on ||| 0.5 0.0140673 2.6679e-06 1.69067e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| comments made during the ||| 0.5 0.0732944 2.6679e-06 3.66689e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| comments regarding the ||| 0.0588235 0.0732944 2.6679e-06 1.07494e-09 2.718 ||| 0-2 ||| 17 374827 +del ||| comments to the ||| 0.0294118 0.0732944 2.6679e-06 1.54309e-06 2.718 ||| 0-2 ||| 34 374827 +del ||| commissioned by the ||| 0.015873 0.0597263 2.6679e-06 7.86244e-09 2.718 ||| 0-1 0-2 ||| 63 374827 +del ||| commit acts of ||| 0.0714286 0.130625 2.6679e-06 3.99475e-10 2.718 ||| 0-2 ||| 14 374827 +del ||| commit to the ||| 0.05 0.0732944 2.6679e-06 7.34512e-07 2.718 ||| 0-2 ||| 20 374827 +del ||| committed for ||| 0.047619 0.0138653 2.6679e-06 8.90796e-07 2.718 ||| 0-1 ||| 21 374827 +del ||| committed on ||| 0.027027 0.0140673 2.6679e-06 8.12061e-07 2.718 ||| 0-1 ||| 37 374827 +del ||| committed subsidiary parties to the ||| 1 0.0732944 2.6679e-06 2.62589e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| committed to the ||| 0.00593472 0.0732944 5.33579e-06 2.55536e-06 2.718 ||| 0-2 ||| 337 374827 +del ||| committee 's ||| 0.00900901 0.169811 2.6679e-06 3.11e-06 2.718 ||| 0-1 ||| 111 374827 +del ||| committee in ||| 0.00714286 0.0183279 2.6679e-06 2.0872e-06 2.718 ||| 0-1 ||| 140 374827 +del ||| commodity ||| 0.0019685 0.0058997 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 508 374827 +del ||| common organisation of the ||| 0.00337838 0.10196 2.6679e-06 7.99934e-10 2.718 ||| 0-2 0-3 ||| 296 374827 +del ||| common position adopted by the ||| 0.0153846 0.0461582 2.6679e-06 1.54045e-14 2.718 ||| 0-3 ||| 65 374827 +del ||| common position adopted by ||| 0.0227273 0.0461582 2.6679e-06 2.50922e-13 2.718 ||| 0-3 ||| 44 374827 +del ||| commonly termed ' ||| 0.5 0.0293692 2.6679e-06 2.30758e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| communism of the ||| 1 0.0759731 2.6679e-06 1.20895e-06 2.718 ||| 0-0 0-1 0-2 ||| 1 374827 +del ||| companies from another ||| 0.333333 0.0911315 2.6679e-06 3.66824e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| companies from ||| 0.00793651 0.0911315 2.6679e-06 1.52146e-06 2.718 ||| 0-1 ||| 126 374827 +del ||| companies in the ||| 0.0101523 0.0458111 5.33579e-06 6.57483e-07 2.718 ||| 0-1 0-2 ||| 197 374827 +del ||| compared with the ||| 0.00197628 0.0732944 2.6679e-06 8.30621e-08 2.718 ||| 0-2 ||| 506 374827 +del ||| compensation on ||| 0.0714286 0.0140673 2.6679e-06 1.48093e-07 2.718 ||| 0-1 ||| 14 374827 +del ||| competence of the ||| 0.00225225 0.10196 2.6679e-06 2.46912e-06 2.718 ||| 0-1 0-2 ||| 444 374827 +del ||| competence of ||| 0.00185185 0.130625 2.6679e-06 7.10915e-06 2.718 ||| 0-1 ||| 540 374827 +del ||| competitiveness of ||| 0.000654879 0.130625 2.6679e-06 1.38643e-06 2.718 ||| 0-1 ||| 1527 374827 +del ||| compilation of the ||| 0.111111 0.10196 2.6679e-06 7.17172e-08 2.718 ||| 0-1 0-2 ||| 9 374827 +del ||| compiled by the ||| 0.0454545 0.0597263 2.6679e-06 3.42578e-08 2.718 ||| 0-1 0-2 ||| 22 374827 +del ||| complete a ||| 0.0263158 0.0008087 2.6679e-06 6.04662e-08 2.718 ||| 0-1 ||| 38 374827 +del ||| complete conformity with ||| 1 0.0045281 2.6679e-06 4.36061e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| completely fails to address the ||| 0.333333 0.0732944 2.6679e-06 3.61969e-15 2.718 ||| 0-4 ||| 3 374827 +del ||| completely implemented ||| 0.2 0.0018429 2.6679e-06 1.50138e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| completely out of order ||| 0.2 0.130625 2.6679e-06 6.12624e-11 2.718 ||| 0-2 ||| 5 374827 +del ||| completely out of ||| 0.0185185 0.130625 2.6679e-06 1.15025e-07 2.718 ||| 0-2 ||| 54 374827 +del ||| completely ||| 0.000601142 0.0018429 1.06716e-05 1.71e-05 2.718 ||| 0-0 ||| 6654 374827 +del ||| completing the ||| 0.00295858 0.0375033 2.6679e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 338 374827 +del ||| completion of the ||| 0.00355872 0.10196 5.33579e-06 1.47532e-06 2.718 ||| 0-1 0-2 ||| 562 374827 +del ||| complex of ||| 0.0434783 0.130625 2.6679e-06 6.37169e-06 2.718 ||| 0-1 ||| 23 374827 +del ||| compliance with ||| 0.000446828 0.0123414 2.6679e-06 2.15062e-07 2.718 ||| 0-0 0-1 ||| 2238 374827 +del ||| compliance ||| 0.00070028 0.0201547 2.6679e-06 0.000113 2.718 ||| 0-0 ||| 1428 374827 +del ||| comply with the ||| 0.000839631 0.0732944 2.6679e-06 1.03939e-07 2.718 ||| 0-2 ||| 1191 374827 +del ||| comply with ||| 0.000728332 0.0045281 5.33579e-06 8.90698e-08 2.718 ||| 0-1 ||| 2746 374827 +del ||| component of the ||| 0.0222222 0.130625 2.6679e-06 2.73456e-07 2.718 ||| 0-1 ||| 45 374827 +del ||| component of ||| 0.00900901 0.130625 2.6679e-06 4.45428e-06 2.718 ||| 0-1 ||| 111 374827 +del ||| components of the ||| 0.0169492 0.10196 2.6679e-06 8.81097e-07 2.718 ||| 0-1 0-2 ||| 59 374827 +del ||| composting of ||| 0.5 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-1 ||| 2 374827 +del ||| comprise a range of ||| 1 0.130625 2.6679e-06 3.86262e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| comprising the ||| 0.030303 0.0732944 2.6679e-06 1.38926e-06 2.718 ||| 0-1 ||| 33 374827 +del ||| compulsory ||| 0.000474158 0.0008807 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 2109 374827 +del ||| concept of the ||| 0.00442478 0.10196 2.6679e-06 6.08572e-06 2.718 ||| 0-1 0-2 ||| 226 374827 +del ||| concept of ||| 0.00127551 0.130625 8.00369e-06 1.75221e-05 2.718 ||| 0-1 ||| 2352 374827 +del ||| concern of the ||| 0.00675676 0.10196 2.6679e-06 1.36775e-05 2.718 ||| 0-1 0-2 ||| 148 374827 +del ||| concern the successor ||| 0.25 0.0732944 2.6679e-06 1.85467e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| concern the ||| 0.00403226 0.0732944 5.33579e-06 4.63667e-05 2.718 ||| 0-1 ||| 496 374827 +del ||| concerned , under the ||| 0.5 0.0441302 2.6679e-06 5.29416e-08 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| concerned by ||| 0.00440529 0.0461582 2.6679e-06 2.60107e-05 2.718 ||| 0-1 ||| 227 374827 +del ||| concerned here with ||| 0.0144928 0.0045281 2.6679e-06 6.20808e-09 2.718 ||| 0-2 ||| 69 374827 +del ||| concerned in the ||| 0.0192308 0.0458111 2.6679e-06 1.50659e-05 2.718 ||| 0-1 0-2 ||| 52 374827 +del ||| concerned on ||| 0.030303 0.0140673 2.6679e-06 1.57763e-05 2.718 ||| 0-1 ||| 33 374827 +del ||| concerned the ||| 0.00406504 0.0732944 2.6679e-06 0.000558692 2.718 ||| 0-1 ||| 246 374827 +del ||| concerned with ||| 0.00100908 0.0045281 2.6679e-06 3.06149e-06 2.718 ||| 0-1 ||| 991 374827 +del ||| concerning a ||| 0.00408163 0.0042392 2.6679e-06 4.94676e-06 2.718 ||| 0-0 ||| 245 374827 +del ||| concerning the ||| 0.00582751 0.0387668 9.33764e-05 3.87604e-05 2.718 ||| 0-0 0-1 ||| 6006 374827 +del ||| concerning this ||| 0.00487805 0.0037773 2.6679e-06 2.56222e-07 2.718 ||| 0-0 0-1 ||| 205 374827 +del ||| concerning utility ||| 1 0.0362694 2.6679e-06 5.658e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| concerning what ||| 0.0178571 0.0042392 2.6679e-06 1.56586e-07 2.718 ||| 0-0 ||| 56 374827 +del ||| concerning ||| 0.0019002 0.0042392 7.20332e-05 0.0001116 2.718 ||| 0-0 ||| 14209 374827 +del ||| concerns of the ||| 0.00340136 0.10196 2.6679e-06 7.67374e-06 2.718 ||| 0-1 0-2 ||| 294 374827 +del ||| concert halls in the ||| 1 0.0732944 2.6679e-06 9.36699e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| concession by the ||| 0.25 0.0597263 2.6679e-06 2.02177e-08 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| conciliation ||| 0.000258065 0.0028056 2.6679e-06 9.2e-06 2.718 ||| 0-0 ||| 3875 374827 +del ||| conclusion of the ||| 0.00380952 0.10196 5.33579e-06 9.0671e-06 2.718 ||| 0-1 0-2 ||| 525 374827 +del ||| conclusion of ||| 0.00106724 0.130625 2.6679e-06 2.61062e-05 2.718 ||| 0-1 ||| 937 374827 +del ||| conclusions of ||| 0.00141443 0.130625 2.6679e-06 7.43363e-06 2.718 ||| 0-1 ||| 707 374827 +del ||| concur with the Commission ' s proposal ||| 1 0.0732944 2.6679e-06 4.90894e-21 2.718 ||| 0-2 ||| 1 374827 +del ||| concur with the Commission ' s ||| 1 0.0732944 2.6679e-06 2.45816e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| concur with the Commission ' ||| 1 0.0732944 2.6679e-06 1.2922e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| concur with the Commission ||| 1 0.0732944 2.6679e-06 3.76198e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| concur with the ||| 0.00943396 0.0732944 2.6679e-06 6.44064e-09 2.718 ||| 0-2 ||| 106 374827 +del ||| condition of the ||| 0.0208333 0.10196 2.6679e-06 2.6228e-06 2.718 ||| 0-1 0-2 ||| 48 374827 +del ||| condition of ||| 0.00409836 0.130625 2.6679e-06 7.55163e-06 2.718 ||| 0-1 ||| 244 374827 +del ||| condition suffered by the ||| 1 0.0597263 2.6679e-06 4.91694e-12 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| conditions of this ||| 0.0526316 0.130625 2.6679e-06 2.27769e-07 2.718 ||| 0-1 ||| 19 374827 +del ||| conditions of ||| 0.00189934 0.130625 5.33579e-06 3.52508e-05 2.718 ||| 0-1 ||| 1053 374827 +del ||| conditions on the ||| 0.0294118 0.0436809 2.6679e-06 4.07053e-07 2.718 ||| 0-1 0-2 ||| 34 374827 +del ||| conduct of the ||| 0.00719424 0.10196 2.6679e-06 6.15743e-06 2.718 ||| 0-1 0-2 ||| 139 374827 +del ||| conducted at the ||| 0.0909091 0.0732944 2.6679e-06 8.79882e-08 2.718 ||| 0-2 ||| 11 374827 +del ||| conducted by the ||| 0.0182927 0.0597263 8.00369e-06 3.3977e-07 2.718 ||| 0-1 0-2 ||| 164 374827 +del ||| conducted by ||| 0.00406504 0.0461582 2.6679e-06 9.78273e-07 2.718 ||| 0-1 ||| 246 374827 +del ||| confidence in ||| 0.000524934 0.0183279 2.6679e-06 8.33262e-07 2.718 ||| 0-1 ||| 1905 374827 +del ||| confirmed by the ||| 0.00606061 0.0597263 2.6679e-06 1.08951e-07 2.718 ||| 0-1 0-2 ||| 165 374827 +del ||| conflict in the ||| 0.00510204 0.0732944 2.6679e-06 3.10003e-07 2.718 ||| 0-2 ||| 196 374827 +del ||| conflict with those of the ||| 0.5 0.130625 2.6679e-06 3.49665e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| conflict with those of ||| 0.166667 0.130625 2.6679e-06 5.69563e-11 2.718 ||| 0-3 ||| 6 374827 +del ||| conflict zone ||| 0.0833333 0.0023866 2.6679e-06 2.7522e-10 2.718 ||| 0-1 ||| 12 374827 +del ||| conformity with the ||| 0.00980392 0.0732944 2.6679e-06 7.10691e-09 2.718 ||| 0-2 ||| 102 374827 +del ||| conformity with ||| 0.00657895 0.0045281 2.6679e-06 6.09024e-09 2.718 ||| 0-1 ||| 152 374827 +del ||| connection with the ||| 0.00254777 0.0389112 1.06716e-05 1.0087e-07 2.718 ||| 0-1 0-2 ||| 1570 374827 +del ||| conscious of ||| 0.0041841 0.130625 2.6679e-06 2.44838e-06 2.718 ||| 0-1 ||| 239 374827 +del ||| consequence of the ||| 0.0180723 0.10196 8.00369e-06 3.6166e-06 2.718 ||| 0-1 0-2 ||| 166 374827 +del ||| consequence of ||| 0.00416667 0.130625 5.33579e-06 1.0413e-05 2.718 ||| 0-1 ||| 480 374827 +del ||| consequences of drug use ||| 0.5 0.130625 2.6679e-06 9.63078e-14 2.718 ||| 0-1 ||| 2 374827 +del ||| consequences of drug ||| 0.5 0.130625 2.6679e-06 1.98083e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| consequences of ||| 0.000464037 0.130625 2.6679e-06 1.25369e-05 2.718 ||| 0-1 ||| 2155 374827 +del ||| conservation of ||| 0.00245098 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-1 ||| 408 374827 +del ||| conservative ||| 0.00241546 0.0069767 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 414 374827 +del ||| consideration of ||| 0.00209205 0.130625 2.6679e-06 3.18584e-05 2.718 ||| 0-1 ||| 478 374827 +del ||| considerations of ||| 0.00862069 0.130625 2.6679e-06 7.75812e-06 2.718 ||| 0-1 ||| 116 374827 +del ||| considered by the rapporteur ||| 1 0.0597263 2.6679e-06 4.36898e-11 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| considered by the ||| 0.0113636 0.0597263 2.6679e-06 6.04285e-07 2.718 ||| 0-1 0-2 ||| 88 374827 +del ||| considered the ||| 0.00649351 0.0732944 2.6679e-06 3.73712e-05 2.718 ||| 0-1 ||| 154 374827 +del ||| considering the ||| 0.00276243 0.0367827 5.33579e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 724 374827 +del ||| considers the ||| 0.00510204 0.0732944 2.6679e-06 5.24447e-06 2.718 ||| 0-1 ||| 196 374827 +del ||| consisted of ||| 0.0128205 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-1 ||| 78 374827 +del ||| consistency between projects financed by the ||| 1 0.0461582 2.6679e-06 6.37769e-22 2.718 ||| 0-4 ||| 1 374827 +del ||| consistency between projects financed by ||| 1 0.0461582 2.6679e-06 1.03885e-20 2.718 ||| 0-4 ||| 1 374827 +del ||| consisting of the ||| 0.0357143 0.130625 2.6679e-06 1.95585e-07 2.718 ||| 0-1 ||| 28 374827 +del ||| consisting of ||| 0.0083682 0.130625 5.33579e-06 3.18584e-06 2.718 ||| 0-1 ||| 239 374827 +del ||| constructed explanatory statement by ||| 0.5 0.0461582 2.6679e-06 3.46939e-17 2.718 ||| 0-3 ||| 2 374827 +del ||| construction of a stable system of ||| 0.5 0.130625 2.6679e-06 4.45611e-17 2.718 ||| 0-5 ||| 2 374827 +del ||| construction of the ||| 0.00684932 0.10196 5.33579e-06 1.73146e-06 2.718 ||| 0-1 0-2 ||| 292 374827 +del ||| consult the European ||| 0.25 0.0400553 2.6679e-06 4.58611e-09 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| consumer can ||| 0.025 0.0973581 2.6679e-06 6.76624e-06 2.718 ||| 0-0 ||| 40 374827 +del ||| consumer ||| 0.000727484 0.0973581 1.33395e-05 0.0022749 2.718 ||| 0-0 ||| 6873 374827 +del ||| consumption ||| 0.000756811 0.030112 8.00369e-06 0.0001694 2.718 ||| 0-0 ||| 3964 374827 +del ||| contained in the ||| 0.0183121 0.0458111 6.13616e-05 6.36878e-07 2.718 ||| 0-1 0-2 ||| 1256 374827 +del ||| contained in ||| 0.00771456 0.014266 4.26864e-05 9.92364e-07 2.718 ||| 0-0 0-1 ||| 2074 374827 +del ||| contained ||| 0.000433651 0.0102041 2.6679e-06 3.68e-05 2.718 ||| 0-0 ||| 2306 374827 +del ||| contamination that comes from the ||| 1 0.082213 2.6679e-06 2.9362e-13 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| content of the agreement ||| 0.0416667 0.10196 2.6679e-06 9.30888e-10 2.718 ||| 0-1 0-2 ||| 24 374827 +del ||| content of the ||| 0.0023175 0.10196 5.33579e-06 5.05094e-06 2.718 ||| 0-1 0-2 ||| 863 374827 +del ||| content of ||| 0.00075643 0.130625 2.6679e-06 1.45428e-05 2.718 ||| 0-1 ||| 1322 374827 +del ||| contents of ||| 0.00444444 0.130625 2.6679e-06 3.18584e-06 2.718 ||| 0-1 ||| 225 374827 +del ||| context of the demand ||| 1 0.10196 2.6679e-06 7.36958e-10 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| context of the ||| 0.00143609 0.10196 8.00369e-06 1.37492e-05 2.718 ||| 0-1 0-2 ||| 2089 374827 +del ||| context of ||| 0.000695088 0.130625 8.00369e-06 3.95871e-05 2.718 ||| 0-1 ||| 4316 374827 +del ||| continue nevertheless to attempt to maintain the ||| 0.5 0.0732944 2.6679e-06 2.97119e-19 2.718 ||| 0-6 ||| 2 374827 +del ||| continued close dialogue with Parliament ||| 1 0.0198851 2.6679e-06 7.70143e-18 2.718 ||| 0-2 ||| 1 374827 +del ||| continued close dialogue with ||| 0.5 0.0198851 2.6679e-06 1.34171e-14 2.718 ||| 0-2 ||| 2 374827 +del ||| continued close dialogue ||| 0.5 0.0198851 2.6679e-06 2.09823e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| continuing the ||| 0.00497512 0.0732944 2.6679e-06 2.14988e-05 2.718 ||| 0-1 ||| 201 374827 +del ||| continuing to ||| 0.00151976 0.005614 2.6679e-06 2.79903e-06 2.718 ||| 0-0 ||| 658 374827 +del ||| continuing ||| 0.0010327 0.005614 8.00369e-06 3.15e-05 2.718 ||| 0-0 ||| 2905 374827 +del ||| continuous period of ||| 0.5 0.130625 2.6679e-06 2.41932e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| continuously getting on ||| 0.25 0.0140673 2.6679e-06 4.55853e-12 2.718 ||| 0-2 ||| 4 374827 +del ||| contracts for ||| 0.0172414 0.0138653 2.6679e-06 2.63581e-07 2.718 ||| 0-1 ||| 58 374827 +del ||| contractual ||| 0.00213675 0.0118812 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 468 374827 +del ||| contrary to the ||| 0.00133156 0.0732944 2.6679e-06 1.55544e-06 2.718 ||| 0-2 ||| 751 374827 +del ||| contributed to the debate for ||| 0.333333 0.0732944 2.6679e-06 4.41244e-13 2.718 ||| 0-2 ||| 3 374827 +del ||| contributed to the debate ||| 0.0232558 0.0732944 2.6679e-06 5.74111e-11 2.718 ||| 0-2 ||| 43 374827 +del ||| contributed to the ||| 0.00276243 0.0732944 2.6679e-06 2.90101e-07 2.718 ||| 0-2 ||| 362 374827 +del ||| control ||| 0.00016538 0.0007854 8.00369e-06 1.31e-05 2.718 ||| 0-0 ||| 18140 374827 +del ||| controllers ||| 0.00884956 0.0528634 2.6679e-06 1.58e-05 2.718 ||| 0-0 ||| 113 374827 +del ||| controlling the ||| 0.00442478 0.0732944 2.6679e-06 1.49346e-06 2.718 ||| 0-1 ||| 226 374827 +del ||| controlling ||| 0.000910747 0.0081301 2.6679e-06 1.05e-05 2.718 ||| 0-0 ||| 1098 374827 +del ||| controls the ||| 0.0192308 0.0732944 2.6679e-06 4.23725e-06 2.718 ||| 0-1 ||| 52 374827 +del ||| cooperation by way of ||| 1 0.130625 2.6679e-06 3.07465e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| cooperation in the past few ||| 0.5 0.0183279 2.6679e-06 3.42392e-15 2.718 ||| 0-1 ||| 2 374827 +del ||| cooperation in the past ||| 0.5 0.0183279 2.6679e-06 1.95318e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| cooperation in the ||| 0.00107759 0.0183279 2.6679e-06 1.52473e-07 2.718 ||| 0-1 ||| 928 374827 +del ||| cooperation in ||| 0.00042123 0.0183279 2.6679e-06 2.48361e-06 2.718 ||| 0-1 ||| 2374 374827 +del ||| copy the ||| 0.0416667 0.0732944 2.6679e-06 3.36896e-06 2.718 ||| 0-1 ||| 24 374827 +del ||| core of ||| 0.00315457 0.130625 2.6679e-06 4.45428e-06 2.718 ||| 0-1 ||| 317 374827 +del ||| corporation ||| 0.015748 0.0805687 5.33579e-06 2.23e-05 2.718 ||| 0-0 ||| 127 374827 +del ||| cost is possibly greater than the expense ||| 0.5 0.0523148 2.6679e-06 2.42402e-22 2.718 ||| 0-4 0-5 ||| 2 374827 +del ||| cost is possibly greater than the ||| 0.5 0.0523148 2.6679e-06 1.2495e-17 2.718 ||| 0-4 0-5 ||| 2 374827 +del ||| cost of this ||| 0.016129 0.0669701 2.6679e-06 5.60769e-08 2.718 ||| 0-1 0-2 ||| 62 374827 +del ||| cost of ||| 0.00143609 0.130625 8.00369e-06 2.44248e-05 2.718 ||| 0-1 ||| 2089 374827 +del ||| costs of ||| 0.000898473 0.130625 2.6679e-06 2.21829e-05 2.718 ||| 0-1 ||| 1113 374827 +del ||| cotton ||| 0.0021978 0.113419 2.6679e-06 9.33e-05 2.718 ||| 0-0 ||| 455 374827 +del ||| could quote the ||| 1 0.0732944 2.6679e-06 1.10151e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| could the ||| 0.00434783 0.0732944 2.6679e-06 0.000246976 2.718 ||| 0-1 ||| 230 374827 +del ||| could view it in the ||| 1 0.0458111 2.6679e-06 1.06984e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| council ||| 0.00210084 0.0242915 2.6679e-06 1.58e-05 2.718 ||| 0-0 ||| 476 374827 +del ||| count of abortive European ||| 0.333333 0.130625 2.6679e-06 1.07715e-14 2.718 ||| 0-1 ||| 3 374827 +del ||| count of abortive ||| 0.333333 0.130625 2.6679e-06 3.22124e-12 2.718 ||| 0-1 ||| 3 374827 +del ||| count of ||| 0.0909091 0.130625 2.6679e-06 8.0531e-06 2.718 ||| 0-1 ||| 11 374827 +del ||| counter to the ||| 0.00423729 0.0732944 2.6679e-06 5.67858e-07 2.718 ||| 0-2 ||| 236 374827 +del ||| countries ' ||| 0.00269542 0.0293692 2.6679e-06 1.80285e-06 2.718 ||| 0-1 ||| 371 374827 +del ||| countries at both the ||| 1 0.0732944 2.6679e-06 9.14747e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| countries from the ||| 0.0357143 0.082213 2.6679e-06 2.85817e-06 2.718 ||| 0-1 0-2 ||| 28 374827 +del ||| countries in the ||| 0.000749064 0.0458111 2.6679e-06 3.55622e-06 2.718 ||| 0-1 0-2 ||| 1335 374827 +del ||| countries of the euro ||| 0.166667 0.130625 2.6679e-06 4.03636e-10 2.718 ||| 0-1 ||| 6 374827 +del ||| countries of the ||| 0.00179533 0.10196 1.06716e-05 3.89015e-05 2.718 ||| 0-1 0-2 ||| 2228 374827 +del ||| countries of ||| 0.000742574 0.130625 8.00369e-06 0.000112006 2.718 ||| 0-1 ||| 4040 374827 +del ||| countries which form the ||| 0.166667 0.0732944 2.6679e-06 5.0993e-10 2.718 ||| 0-3 ||| 6 374827 +del ||| country ' s ||| 0.0196078 0.0293692 2.6679e-06 3.25073e-09 2.718 ||| 0-1 ||| 51 374827 +del ||| country ' ||| 0.00990099 0.0293692 2.6679e-06 1.70884e-06 2.718 ||| 0-1 ||| 101 374827 +del ||| country 's ||| 0.0057971 0.169811 5.33579e-06 1.44611e-05 2.718 ||| 0-1 ||| 345 374827 +del ||| country , the ||| 0.00323625 0.0732944 2.6679e-06 1.49067e-05 2.718 ||| 0-2 ||| 309 374827 +del ||| country from its determination ||| 0.5 0.0911315 2.6679e-06 1.32244e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| country from its ||| 0.166667 0.0911315 2.6679e-06 1.11129e-08 2.718 ||| 0-1 ||| 6 374827 +del ||| country from ||| 0.00909091 0.0911315 2.6679e-06 7.80018e-06 2.718 ||| 0-1 ||| 110 374827 +del ||| country in the ||| 0.0113314 0.0458111 1.06716e-05 3.37077e-06 2.718 ||| 0-1 0-2 ||| 353 374827 +del ||| country of ||| 0.000590667 0.130625 2.6679e-06 0.000106165 2.718 ||| 0-1 ||| 1693 374827 +del ||| country over the ||| 0.0769231 0.0732944 2.6679e-06 6.0187e-08 2.718 ||| 0-2 ||| 13 374827 +del ||| country to hold the ||| 0.0217391 0.0732944 2.6679e-06 1.93487e-09 2.718 ||| 0-3 ||| 46 374827 +del ||| country was found guilty of ||| 1 0.130625 2.6679e-06 1.54286e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| course of its ||| 0.0277778 0.130625 2.6679e-06 5.30249e-07 2.718 ||| 0-1 ||| 36 374827 +del ||| course of the ||| 0.0108865 0.10196 1.86753e-05 0.000129265 2.718 ||| 0-1 0-2 ||| 643 374827 +del ||| course of ||| 0.00522739 0.130625 2.6679e-05 0.000372183 2.718 ||| 0-1 ||| 1913 374827 +del ||| course the existing rural ||| 0.333333 0.0113162 2.6679e-06 6.73237e-13 2.718 ||| 0-3 ||| 3 374827 +del ||| course the ||| 0.00657895 0.0732944 2.6679e-06 0.000438208 2.718 ||| 0-1 ||| 152 374827 +del ||| course we need the ||| 1 0.0732944 2.6679e-06 4.56128e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| court of appeal is also the ||| 1 0.0732944 2.6679e-06 2.69773e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| court of ||| 0.00675676 0.130625 2.6679e-06 8.82007e-06 2.718 ||| 0-1 ||| 148 374827 +del ||| court with the ||| 0.333333 0.0732944 2.6679e-06 6.64052e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| covenant of Noble Peace ||| 0.5 0.0023474 2.6679e-06 3.9577e-20 2.718 ||| 0-3 ||| 2 374827 +del ||| coverage from ||| 0.25 0.0911315 2.6679e-06 1.79888e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| coverage of ||| 0.0121951 0.130625 2.6679e-06 2.44838e-06 2.718 ||| 0-1 ||| 82 374827 +del ||| covered before the ||| 1 0.0732944 2.6679e-06 6.21944e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| covered by the Barcelona ||| 1 0.0597263 2.6679e-06 1.60843e-12 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| covered by the ||| 0.0119565 0.0597263 2.93469e-05 4.02108e-07 2.718 ||| 0-1 0-2 ||| 920 374827 +del ||| covered by ||| 0.00449186 0.0461582 2.13432e-05 1.15776e-06 2.718 ||| 0-1 ||| 1781 374827 +del ||| covered in concrete ||| 1 0.0183279 2.6679e-06 6.04339e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| covered in the ||| 0.0204082 0.0458111 5.33579e-06 6.70595e-07 2.718 ||| 0-1 0-2 ||| 98 374827 +del ||| covered in ||| 0.00749064 0.00958625 5.33579e-06 1.05169e-07 2.718 ||| 0-0 0-1 ||| 267 374827 +del ||| covering the ||| 0.00673401 0.0369153 5.33579e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 297 374827 +del ||| crack of the ||| 0.333333 0.10196 2.6679e-06 4.8153e-07 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| crash ||| 0.00574713 0.0052632 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 174 374827 +del ||| create a set of ||| 0.5 0.130625 2.6679e-06 8.60411e-10 2.718 ||| 0-3 ||| 2 374827 +del ||| created by the ||| 0.00879765 0.0597263 8.00369e-06 5.91929e-07 2.718 ||| 0-1 0-2 ||| 341 374827 +del ||| created by ||| 0.00147059 0.0461582 2.6679e-06 1.7043e-06 2.718 ||| 0-1 ||| 680 374827 +del ||| creates the very conditions ||| 0.125 0.0732944 2.6679e-06 2.75831e-12 2.718 ||| 0-1 ||| 8 374827 +del ||| creates the very ||| 0.125 0.0732944 2.6679e-06 2.30821e-08 2.718 ||| 0-1 ||| 8 374827 +del ||| creates the ||| 0.00714286 0.0732944 2.6679e-06 6.63373e-06 2.718 ||| 0-1 ||| 140 374827 +del ||| creation of a ||| 0.000419111 0.130625 2.6679e-06 6.06702e-07 2.718 ||| 0-1 ||| 2386 374827 +del ||| creation of the ||| 0.00134589 0.10196 2.6679e-06 4.75382e-06 2.718 ||| 0-1 0-2 ||| 743 374827 +del ||| creation of ||| 0.000759878 0.130625 1.06716e-05 1.36873e-05 2.718 ||| 0-1 ||| 5264 374827 +del ||| credibility and perceived trustworthiness of a ||| 1 0.130625 2.6679e-06 6.27351e-21 2.718 ||| 0-4 ||| 1 374827 +del ||| credibility and perceived trustworthiness of ||| 1 0.130625 2.6679e-06 1.41532e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| criminal law ||| 0.000925069 0.0013984 2.6679e-06 1.7514e-09 2.718 ||| 0-1 ||| 1081 374827 +del ||| criminal ||| 0.000387522 0.0009416 5.33579e-06 6.6e-06 2.718 ||| 0-0 ||| 5161 374827 +del ||| criticising the ||| 0.00884956 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-1 ||| 113 374827 +del ||| crucial than ever ||| 0.125 0.0313352 2.6679e-06 1.67463e-11 2.718 ||| 0-1 ||| 8 374827 +del ||| crucial than ||| 0.0909091 0.0313352 2.6679e-06 8.91235e-08 2.718 ||| 0-1 ||| 11 374827 +del ||| crux of the ||| 0.00689655 0.10196 2.6679e-06 4.40548e-07 2.718 ||| 0-1 0-2 ||| 145 374827 +del ||| crux of ||| 0.00694444 0.130625 2.6679e-06 1.26844e-06 2.718 ||| 0-1 ||| 144 374827 +del ||| culinary metaphor ||| 0.0357143 0.015625 2.6679e-06 9.1e-13 2.718 ||| 0-1 ||| 28 374827 +del ||| cultivated in the ||| 0.25 0.0458111 2.6679e-06 5.4322e-08 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| cultural ||| 0.000117869 0.0003871 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 8484 374827 +del ||| culture of conflict to a culture ||| 1 0.130625 2.6679e-06 1.89942e-17 2.718 ||| 0-1 ||| 1 374827 +del ||| culture of conflict to a ||| 0.5 0.130625 2.6679e-06 9.59303e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| culture of conflict to ||| 0.5 0.130625 2.6679e-06 2.16421e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| culture of conflict ||| 0.5 0.130625 2.6679e-06 2.43558e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| culture of ||| 0.00144509 0.130625 2.6679e-06 5.84071e-06 2.718 ||| 0-1 ||| 692 374827 +del ||| currency will bring for this sector are ||| 1 0.0250353 2.6679e-06 5.6616e-20 2.718 ||| 0-5 ||| 1 374827 +del ||| currency will bring for this sector ||| 1 0.0250353 2.6679e-06 3.73144e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| current Spanish ||| 0.25 0.0016529 2.6679e-06 1.51616e-09 2.718 ||| 0-1 ||| 4 374827 +del ||| current availability of ||| 0.5 0.130625 2.6679e-06 3.30573e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| current situation because of the ||| 0.333333 0.10196 2.6679e-06 2.85731e-12 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| current view of the ||| 0.5 0.10196 2.6679e-06 1.52516e-08 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| current ||| 0.000207029 0.0003924 1.06716e-05 9.2e-06 2.718 ||| 0-0 ||| 19321 374827 +del ||| currently covered by ||| 0.125 0.0461582 2.6679e-06 1.2087e-10 2.718 ||| 0-2 ||| 8 374827 +del ||| currently measured in all the Member States ||| 1 0.0732944 2.6679e-06 1.07319e-20 2.718 ||| 0-4 ||| 1 374827 +del ||| currently measured in all the Member ||| 1 0.0732944 2.6679e-06 2.24893e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| currently measured in all the ||| 1 0.0732944 2.6679e-06 4.36431e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| currently provided under the ||| 0.5 0.0732944 2.6679e-06 2.98189e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| cut back the ||| 0.0666667 0.0732944 2.6679e-06 1.76605e-08 2.718 ||| 0-2 ||| 15 374827 +del ||| cut of the ||| 0.333333 0.10196 2.6679e-06 7.74546e-06 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| cut off from the ||| 0.0208333 0.082213 2.6679e-06 2.31613e-10 2.718 ||| 0-2 0-3 ||| 48 374827 +del ||| cut off from ||| 0.0142857 0.0911315 2.6679e-06 6.66867e-10 2.718 ||| 0-2 ||| 70 374827 +del ||| cut through the ||| 0.1 0.0732944 2.6679e-06 1.20861e-08 2.718 ||| 0-2 ||| 10 374827 +del ||| cut-down ||| 0.333333 0.5 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 3 374827 +del ||| cuts down on the ||| 0.25 0.0436809 2.6679e-06 2.73463e-11 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| cuts in ||| 0.00505051 0.0183279 5.33579e-06 3.10114e-07 2.718 ||| 0-1 ||| 396 374827 +del ||| d ' ||| 0.0384615 0.0293692 2.6679e-06 3.60856e-08 2.718 ||| 0-1 ||| 26 374827 +del ||| dairy sector ||| 0.0052356 0.0250353 2.6679e-06 3.73e-09 2.718 ||| 0-1 ||| 191 374827 +del ||| dangers faced by ||| 0.2 0.0461582 2.6679e-06 7.77897e-12 2.718 ||| 0-2 ||| 5 374827 +del ||| date in ||| 0.0125 0.0183279 5.33579e-06 2.75597e-06 2.718 ||| 0-1 ||| 160 374827 +del ||| date of the ||| 0.0111111 0.10196 2.6679e-06 1.04707e-05 2.718 ||| 0-1 0-2 ||| 90 374827 +del ||| dated ||| 0.130081 0.111801 4.26864e-05 4.73e-05 2.718 ||| 0-0 ||| 123 374827 +del ||| dating back to the ||| 0.142857 0.0732944 2.6679e-06 2.76077e-10 2.718 ||| 0-3 ||| 7 374827 +del ||| dating from 1972 , ||| 0.5 0.0911315 2.6679e-06 1.37502e-14 2.718 ||| 0-1 ||| 2 374827 +del ||| dating from 1972 ||| 0.5 0.0911315 2.6679e-06 1.15301e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| dating from ||| 0.107692 0.0911315 1.86753e-05 2.88254e-07 2.718 ||| 0-1 ||| 65 374827 +del ||| dawn on ||| 0.142857 0.0140673 2.6679e-06 2.15765e-08 2.718 ||| 0-1 ||| 7 374827 +del ||| day of the ||| 0.00826446 0.10196 2.6679e-06 2.62485e-05 2.718 ||| 0-1 0-2 ||| 121 374827 +del ||| day tackle the ||| 1 0.0732944 2.6679e-06 3.23006e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| days before the ||| 0.0142857 0.0732944 2.6679e-06 5.53322e-09 2.718 ||| 0-2 ||| 70 374827 +del ||| days of the ||| 0.0212766 0.10196 5.33579e-06 6.52626e-06 2.718 ||| 0-1 0-2 ||| 94 374827 +del ||| days of ||| 0.00598802 0.130625 5.33579e-06 1.87906e-05 2.718 ||| 0-1 ||| 334 374827 +del ||| dead horse ||| 0.0833333 0.015528 2.6679e-06 1.6368e-10 2.718 ||| 0-1 ||| 12 374827 +del ||| dead of ||| 0.0666667 0.130625 2.6679e-06 7.31564e-06 2.718 ||| 0-1 ||| 15 374827 +del ||| deadline for ||| 0.00217865 0.0138653 2.6679e-06 1.04356e-07 2.718 ||| 0-1 ||| 459 374827 +del ||| deal of good to come ||| 1 0.130625 2.6679e-06 4.90198e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| deal of good to ||| 1 0.130625 2.6679e-06 5.77179e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| deal of good ||| 0.0714286 0.130625 2.6679e-06 6.49551e-08 2.718 ||| 0-1 ||| 14 374827 +del ||| deal of ||| 0.00844391 0.130625 1.86753e-05 0.000125251 2.718 ||| 0-1 ||| 829 374827 +del ||| deal with the issue ||| 0.0103093 0.0389112 2.6679e-06 2.12408e-10 2.718 ||| 0-1 0-2 ||| 97 374827 +del ||| deal with the ||| 0.00109951 0.0389112 5.33579e-06 2.80665e-07 2.718 ||| 0-1 0-2 ||| 1819 374827 +del ||| deal with ||| 0.000160565 0.0045281 2.6679e-06 8.08099e-07 2.718 ||| 0-1 ||| 6228 374827 +del ||| dealing with ||| 0.000450958 0.0025183 5.33579e-06 7.42248e-09 2.718 ||| 0-0 0-1 ||| 4435 374827 +del ||| dealing ||| 0.000856531 0.0005085 5.33579e-06 3.9e-06 2.718 ||| 0-0 ||| 2335 374827 +del ||| dealt with in the ||| 0.00558659 0.0458111 2.6679e-06 6.27048e-09 2.718 ||| 0-2 0-3 ||| 179 374827 +del ||| dealt with in ||| 0.00200803 0.0183279 2.6679e-06 1.80541e-08 2.718 ||| 0-2 ||| 498 374827 +del ||| dealt with ||| 0.000339789 0.0045281 2.6679e-06 1.99265e-07 2.718 ||| 0-1 ||| 2943 374827 +del ||| dear to the ||| 0.0322581 0.0732944 2.6679e-06 5.89461e-07 2.718 ||| 0-2 ||| 31 374827 +del ||| death of ||| 0.00214592 0.130625 2.6679e-06 1.60177e-05 2.718 ||| 0-1 ||| 466 374827 +del ||| debate about ||| 0.00165017 0.0101916 2.6679e-06 2.77871e-07 2.718 ||| 0-1 ||| 606 374827 +del ||| debate of the ||| 0.027027 0.10196 2.6679e-06 2.02755e-05 2.718 ||| 0-1 0-2 ||| 37 374827 +del ||| debate on the ||| 0.000380373 0.0732944 2.6679e-06 4.59898e-07 2.718 ||| 0-2 ||| 2629 374827 +del ||| debate on ||| 0.000338009 0.0140673 5.33579e-06 1.9409e-06 2.718 ||| 0-1 ||| 5917 374827 +del ||| debates between the ||| 0.166667 0.0028314 2.6679e-06 2.16239e-10 2.718 ||| 0-1 ||| 6 374827 +del ||| debates between ||| 0.0909091 0.0028314 2.6679e-06 3.52228e-09 2.718 ||| 0-1 ||| 11 374827 +del ||| debts of ||| 0.0196078 0.130625 2.6679e-06 1.38643e-06 2.718 ||| 0-1 ||| 51 374827 +del ||| decent ||| 0.00091659 0.0008123 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1091 374827 +del ||| decided through conciliation ||| 1 0.0028056 2.6679e-06 2.89658e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| decision by ||| 0.00342466 0.0461582 2.6679e-06 2.54351e-06 2.718 ||| 0-1 ||| 292 374827 +del ||| decision of the Committee on Budgets taken ||| 0.333333 0.130625 2.6679e-06 2.67771e-20 2.718 ||| 0-1 ||| 3 374827 +del ||| decision of the Committee on Budgets ||| 0.333333 0.130625 2.6679e-06 2.93769e-17 2.718 ||| 0-1 ||| 3 374827 +del ||| decision of the Committee on ||| 0.0714286 0.130625 2.6679e-06 2.90861e-12 2.718 ||| 0-1 ||| 14 374827 +del ||| decision of the Committee ||| 0.0666667 0.130625 2.6679e-06 4.34705e-10 2.718 ||| 0-1 ||| 15 374827 +del ||| decision of the ||| 0.00700525 0.10196 1.06716e-05 1.61159e-05 2.718 ||| 0-1 0-2 ||| 571 374827 +del ||| decision of ||| 0.00440529 0.130625 5.33579e-06 4.64012e-05 2.718 ||| 0-1 ||| 454 374827 +del ||| decisions have been taken on ||| 0.166667 0.0140673 2.6679e-06 2.72399e-14 2.718 ||| 0-4 ||| 6 374827 +del ||| decisive role of the ||| 0.142857 0.0732944 2.6679e-06 5.11386e-11 2.718 ||| 0-3 ||| 7 374827 +del ||| deck ||| 0.05 0.0588235 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 20 374827 +del ||| declaration of 1998 ||| 1 0.130625 2.6679e-06 4.88024e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| declaration of the ||| 0.0144928 0.10196 2.6679e-06 1.80317e-06 2.718 ||| 0-1 0-2 ||| 69 374827 +del ||| declaration of ||| 0.00206186 0.130625 2.6679e-06 5.19174e-06 2.718 ||| 0-1 ||| 485 374827 +del ||| declarations of affection ||| 0.25 0.130625 2.6679e-06 4.0059e-12 2.718 ||| 0-1 ||| 4 374827 +del ||| declarations of ||| 0.00682594 0.130625 5.33579e-06 2.86136e-06 2.718 ||| 0-1 ||| 293 374827 +del ||| declare such income ||| 1 0.005614 2.6679e-06 1.40768e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| declare their acceptance of ||| 1 0.130625 2.6679e-06 9.01022e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| decline ||| 0.000869565 0.0043178 2.6679e-06 6.6e-06 2.718 ||| 0-0 ||| 1150 374827 +del ||| decrease ||| 0.00166945 0.0015924 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 599 374827 +del ||| decrees of the ||| 0.2 0.10196 2.6679e-06 1.47532e-06 2.718 ||| 0-1 0-2 ||| 5 374827 +del ||| deep within the ||| 0.5 0.0732944 2.6679e-06 1.33628e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| defeat of ||| 0.0384615 0.130625 5.33579e-06 6.48968e-07 2.718 ||| 0-1 ||| 52 374827 +del ||| defence of the ||| 0.00318471 0.130625 2.6679e-06 4.56364e-07 2.718 ||| 0-1 ||| 314 374827 +del ||| defence of ||| 0.00084317 0.130625 2.6679e-06 7.43363e-06 2.718 ||| 0-1 ||| 1186 374827 +del ||| defend the ||| 0.00288184 0.0732944 5.33579e-06 7.2589e-06 2.718 ||| 0-1 ||| 694 374827 +del ||| defenders of ||| 0.00606061 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-1 ||| 165 374827 +del ||| deficit ||| 0.000386698 0.0124596 2.6679e-06 3.55e-05 2.718 ||| 0-0 ||| 2586 374827 +del ||| definitely the ||| 0.0263158 0.0732944 2.6679e-06 1.7991e-05 2.718 ||| 0-1 ||| 38 374827 +del ||| definition of alleged ||| 1 0.130625 2.6679e-06 1.3046e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| definition of ||| 0.00115407 0.130625 5.33579e-06 8.0531e-06 2.718 ||| 0-1 ||| 1733 374827 +del ||| degree from the ||| 0.25 0.0732944 2.6679e-06 7.74655e-08 2.718 ||| 0-2 ||| 4 374827 +del ||| degree of elegant nuance from both gentlemen ||| 1 0.130625 2.6679e-06 1.20496e-27 2.718 ||| 0-1 ||| 1 374827 +del ||| degree of elegant nuance from both ||| 1 0.130625 2.6679e-06 1.7438e-23 2.718 ||| 0-1 ||| 1 374827 +del ||| degree of elegant nuance from ||| 1 0.130625 2.6679e-06 1.0527e-20 2.718 ||| 0-1 ||| 1 374827 +del ||| degree of elegant nuance ||| 1 0.130625 2.6679e-06 6.53688e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| degree of elegant ||| 1 0.130625 2.6679e-06 1.63422e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| degree of essential ||| 0.166667 0.130625 2.6679e-06 3.67699e-09 2.718 ||| 0-1 ||| 6 374827 +del ||| degree of ||| 0.00301386 0.130625 1.33395e-05 4.08555e-05 2.718 ||| 0-1 ||| 1659 374827 +del ||| del ||| 0.818182 0.607143 0.000192089 0.000201 2.718 ||| 0-0 ||| 88 374827 +del ||| delay extending the ||| 1 0.0732944 2.6679e-06 2.22855e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| delays in ||| 0.00249377 0.0183279 2.6679e-06 1.83372e-07 2.718 ||| 0-1 ||| 401 374827 +del ||| delegation to the Conciliation Committee ||| 0.0714286 0.0732944 2.6679e-06 1.9667e-16 2.718 ||| 0-2 ||| 14 374827 +del ||| delegation to the Conciliation ||| 0.142857 0.0732944 2.6679e-06 1.28879e-12 2.718 ||| 0-2 ||| 7 374827 +del ||| delegation to the ||| 0.0149254 0.0732944 2.6679e-06 4.44411e-07 2.718 ||| 0-2 ||| 67 374827 +del ||| deliver on ||| 0.00540541 0.0140673 2.6679e-06 3.63858e-07 2.718 ||| 0-1 ||| 185 374827 +del ||| delivered by the ||| 0.0655738 0.0597263 1.06716e-05 1.93753e-07 2.718 ||| 0-1 0-2 ||| 61 374827 +del ||| delivered by ||| 0.0173913 0.0461582 5.33579e-06 5.57858e-07 2.718 ||| 0-1 ||| 115 374827 +del ||| demand of ||| 0.0078125 0.130625 2.6679e-06 1.58112e-05 2.718 ||| 0-1 ||| 128 374827 +del ||| demands the ||| 0.025 0.0732944 2.6679e-06 1.33717e-05 2.718 ||| 0-1 ||| 40 374827 +del ||| democratically ||| 0.000888889 0.0018282 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 1125 374827 +del ||| demonstrated by ||| 0.00266667 0.0461582 2.6679e-06 4.36585e-07 2.718 ||| 0-1 ||| 375 374827 +del ||| demonstrating compliance ||| 0.5 0.0201547 2.6679e-06 1.3447e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| demonstrating the ||| 0.0106383 0.0732944 2.6679e-06 4.13306e-06 2.718 ||| 0-1 ||| 94 374827 +del ||| denied the ||| 0.00961538 0.0732944 2.6679e-06 5.24447e-06 2.718 ||| 0-1 ||| 104 374827 +del ||| denounced the ||| 0.027027 0.0732944 2.6679e-06 8.6829e-07 2.718 ||| 0-1 ||| 37 374827 +del ||| deny the ||| 0.00641026 0.0732944 2.6679e-06 2.74379e-06 2.718 ||| 0-1 ||| 156 374827 +del ||| department stores such ||| 0.333333 0.0104439 2.6679e-06 1.20617e-14 2.718 ||| 0-0 ||| 3 374827 +del ||| department stores ||| 0.0909091 0.0104439 2.6679e-06 5.83e-12 2.718 ||| 0-0 ||| 11 374827 +del ||| department ||| 0.00495049 0.0104439 5.33579e-06 5.3e-06 2.718 ||| 0-0 ||| 404 374827 +del ||| departments on ||| 0.2 0.00766335 2.6679e-06 1.27498e-08 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| departure from the negotiating ||| 1 0.0732944 2.6679e-06 9.70975e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| departure from the ||| 0.0232558 0.0732944 2.6679e-06 6.26435e-09 2.718 ||| 0-2 ||| 43 374827 +del ||| depend on ||| 0.00113636 0.0140673 2.6679e-06 1.80458e-07 2.718 ||| 0-1 ||| 880 374827 +del ||| dependant ||| 0.0625 0.0416667 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 16 374827 +del ||| dependence of ||| 0.0238095 0.130625 2.6679e-06 1.17994e-06 2.718 ||| 0-1 ||| 42 374827 +del ||| depends on the ||| 0.00293255 0.0732944 2.6679e-06 3.50907e-08 2.718 ||| 0-2 ||| 341 374827 +del ||| deprived of corresponding ||| 0.5 0.130625 2.6679e-06 3.44071e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| deprived of ||| 0.00308642 0.130625 2.6679e-06 1.59292e-06 2.718 ||| 0-1 ||| 324 374827 +del ||| derived from ||| 0.00289017 0.0911315 2.6679e-06 1.95059e-07 2.718 ||| 0-1 ||| 346 374827 +del ||| derived the new position ||| 0.333333 0.0732944 2.6679e-06 6.15236e-13 2.718 ||| 0-1 ||| 3 374827 +del ||| derived the new ||| 0.333333 0.0732944 2.6679e-06 1.86832e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| derived the ||| 0.2 0.0732944 2.6679e-06 3.12584e-06 2.718 ||| 0-1 ||| 5 374827 +del ||| deriving from the ||| 0.0204082 0.082213 2.6679e-06 1.88186e-08 2.718 ||| 0-1 0-2 ||| 49 374827 +del ||| described by ||| 0.00581395 0.0461582 2.6679e-06 7.21173e-07 2.718 ||| 0-1 ||| 172 374827 +del ||| deserted from the ||| 1 0.0732944 2.6679e-06 3.91522e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| deserve the ||| 0.0119048 0.0732944 2.6679e-06 6.11276e-06 2.718 ||| 0-1 ||| 84 374827 +del ||| deserves from ||| 0.25 0.0911315 2.6679e-06 4.2046e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| designed to cut back the ||| 1 0.0732944 2.6679e-06 1.22561e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| designs for the ||| 1 0.0435798 2.6679e-06 6.72581e-09 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| desired that the ||| 1 0.0732944 2.6679e-06 9.05573e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| despite the fact that the president of ||| 1 0.130625 2.6679e-06 2.60108e-17 2.718 ||| 0-6 ||| 1 374827 +del ||| despite the ||| 0.00138773 0.0732944 1.33395e-05 2.08737e-05 2.718 ||| 0-1 ||| 3603 374827 +del ||| destined for the ||| 0.0196078 0.0435798 2.6679e-06 2.42877e-08 2.718 ||| 0-1 0-2 ||| 51 374827 +del ||| destroy the ||| 0.00358423 0.0732944 2.6679e-06 3.12584e-06 2.718 ||| 0-1 ||| 279 374827 +del ||| destruction wrought by the ||| 0.333333 0.0597263 2.6679e-06 8.17694e-14 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| detailed report ||| 0.00847458 2.93e-05 2.6679e-06 9.828e-11 2.718 ||| 0-1 ||| 118 374827 +del ||| detailed study of ||| 0.0357143 0.130625 2.6679e-06 2.51257e-10 2.718 ||| 0-2 ||| 28 374827 +del ||| details of the ||| 0.0030581 0.10196 2.6679e-06 2.83795e-06 2.718 ||| 0-1 0-2 ||| 327 374827 +del ||| details of ||| 0.00470958 0.130625 8.00369e-06 8.1711e-06 2.718 ||| 0-1 ||| 637 374827 +del ||| deterioration ||| 0.00138313 0.0014556 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 723 374827 +del ||| determinants of ||| 0.4 0.130625 5.33579e-06 3.24484e-07 2.718 ||| 0-1 ||| 5 374827 +del ||| determine the ||| 0.00209644 0.0732944 2.6679e-06 8.37031e-06 2.718 ||| 0-1 ||| 477 374827 +del ||| determine whether cadmium from ||| 1 0.0349206 2.6679e-06 1.46816e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| determine whether cadmium ||| 1 0.0349206 2.6679e-06 9.11674e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| determined by the ||| 0.00714286 0.0597263 2.6679e-06 1.92068e-07 2.718 ||| 0-1 0-2 ||| 140 374827 +del ||| detriment of the ||| 0.00334448 0.10196 2.6679e-06 9.93795e-07 2.718 ||| 0-1 0-2 ||| 299 374827 +del ||| detriment of ||| 0.00131234 0.130625 2.6679e-06 2.86136e-06 2.718 ||| 0-1 ||| 762 374827 +del ||| development of the ||| 0.000886918 0.10196 5.33579e-06 1.68535e-05 2.718 ||| 0-1 0-2 ||| 2255 374827 +del ||| development of ||| 0.000115567 0.130625 2.6679e-06 4.85251e-05 2.718 ||| 0-1 ||| 8653 374827 +del ||| development towards making the ||| 0.5 0.0732944 2.6679e-06 2.79136e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| development ||| 5.75495e-05 0.000439 8.00369e-06 2.23e-05 2.718 ||| 0-0 ||| 52129 374827 +del ||| developments in ||| 0.000775194 0.0183279 2.6679e-06 8.06295e-07 2.718 ||| 0-1 ||| 1290 374827 +del ||| devise a ||| 0.00645161 0.0008087 2.6679e-06 3.96915e-09 2.718 ||| 0-1 ||| 155 374827 +del ||| devised by ||| 0.0217391 0.024416 2.6679e-06 2.10207e-08 2.718 ||| 0-0 0-1 ||| 46 374827 +del ||| devoted the necessary ||| 0.5 0.0732944 2.6679e-06 1.83197e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| devoted the ||| 0.166667 0.0732944 2.6679e-06 7.11997e-06 2.718 ||| 0-1 ||| 6 374827 +del ||| dialogue with Parliament ||| 0.0185185 0.0198851 2.6679e-06 1.51846e-09 2.718 ||| 0-0 ||| 54 374827 +del ||| dialogue with the ||| 0.00170358 0.0732944 2.6679e-06 8.70597e-08 2.718 ||| 0-2 ||| 587 374827 +del ||| dialogue with ||| 0.000649351 0.0198851 2.6679e-06 2.6454e-06 2.718 ||| 0-0 ||| 1540 374827 +del ||| dialogue ||| 0.000313873 0.0198851 1.06716e-05 0.0004137 2.718 ||| 0-0 ||| 12744 374827 +del ||| did in the ||| 0.0133333 0.0183279 2.6679e-06 7.51935e-07 2.718 ||| 0-1 ||| 75 374827 +del ||| did in ||| 0.00416667 0.0183279 2.6679e-06 1.22481e-05 2.718 ||| 0-1 ||| 240 374827 +del ||| did not reflect the ||| 0.0666667 0.0732944 2.6679e-06 1.84193e-11 2.718 ||| 0-3 ||| 15 374827 +del ||| die from ||| 0.0185185 0.0911315 2.6679e-06 2.49242e-07 2.718 ||| 0-1 ||| 54 374827 +del ||| died in the ||| 0.0208333 0.0458111 2.6679e-06 8.42927e-08 2.718 ||| 0-1 0-2 ||| 48 374827 +del ||| differ from ||| 0.00558659 0.0911315 2.6679e-06 1.17035e-07 2.718 ||| 0-1 ||| 179 374827 +del ||| differences of ||| 0.0027027 0.130625 2.6679e-06 6.90266e-06 2.718 ||| 0-1 ||| 370 374827 +del ||| different from the ||| 0.00408163 0.082213 2.6679e-06 1.65754e-06 2.718 ||| 0-1 0-2 ||| 245 374827 +del ||| different from ||| 0.00125 0.0911315 2.6679e-06 4.77244e-06 2.718 ||| 0-1 ||| 800 374827 +del ||| different structures in ||| 0.333333 0.0183279 2.6679e-06 1.28261e-10 2.718 ||| 0-2 ||| 3 374827 +del ||| different to the ||| 0.025641 0.0732944 2.6679e-06 6.79578e-06 2.718 ||| 0-2 ||| 39 374827 +del ||| different types of ||| 0.00404858 0.130625 2.6679e-06 2.99446e-09 2.718 ||| 0-2 ||| 247 374827 +del ||| difficult for ||| 0.0014881 0.0138653 2.6679e-06 1.33619e-06 2.718 ||| 0-1 ||| 672 374827 +del ||| difficult period in ||| 0.0909091 0.0183279 2.6679e-06 5.8444e-10 2.718 ||| 0-2 ||| 11 374827 +del ||| diktat from the ||| 0.333333 0.082213 2.6679e-06 3.01098e-09 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| dimension of the ||| 0.02 0.10196 2.6679e-06 3.24776e-06 2.718 ||| 0-1 0-2 ||| 50 374827 +del ||| dimensions of ||| 0.0125 0.130625 2.6679e-06 1.59292e-06 2.718 ||| 0-1 ||| 80 374827 +del ||| diminishing the ||| 0.030303 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-1 ||| 33 374827 +del ||| direction from ||| 0.125 0.0911315 2.6679e-06 1.96576e-06 2.718 ||| 0-1 ||| 8 374827 +del ||| direction of the ||| 0.00787402 0.10196 2.6679e-06 9.2925e-06 2.718 ||| 0-1 0-2 ||| 127 374827 +del ||| direction of ||| 0.00462963 0.130625 8.00369e-06 2.67552e-05 2.718 ||| 0-1 ||| 648 374827 +del ||| directive next year ||| 0.0714286 0.0281625 2.6679e-06 2.68338e-11 2.718 ||| 0-1 ||| 14 374827 +del ||| directive next ||| 0.0769231 0.0281625 2.6679e-06 1.07594e-07 2.718 ||| 0-1 ||| 13 374827 +del ||| directives dating from 1972 , ||| 0.5 0.0911315 2.6679e-06 1.98003e-19 2.718 ||| 0-2 ||| 2 374827 +del ||| directives dating from 1972 ||| 0.5 0.0911315 2.6679e-06 1.66034e-18 2.718 ||| 0-2 ||| 2 374827 +del ||| directives dating from ||| 0.333333 0.0911315 2.6679e-06 4.15085e-12 2.718 ||| 0-2 ||| 3 374827 +del ||| directives of the ||| 0.0666667 0.10196 2.6679e-06 1.47532e-06 2.718 ||| 0-1 0-2 ||| 15 374827 +del ||| director to ||| 0.5 0.0081744 2.6679e-06 3.46547e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| director ||| 0.00277008 0.0081744 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 361 374827 +del ||| disadvantage of the ||| 0.037037 0.10196 2.6679e-06 1.10649e-06 2.718 ||| 0-1 0-2 ||| 27 374827 +del ||| disagree with ||| 0.00122399 0.0045281 2.6679e-06 1.50353e-08 2.718 ||| 0-1 ||| 817 374827 +del ||| disappear to , beyond the ||| 0.5 0.0732944 2.6679e-06 2.17774e-12 2.718 ||| 0-4 ||| 2 374827 +del ||| disappearing from the ||| 0.0909091 0.0732944 2.6679e-06 2.23727e-09 2.718 ||| 0-2 ||| 11 374827 +del ||| disaster in the ||| 0.0277778 0.0458111 2.6679e-06 2.3602e-07 2.718 ||| 0-1 0-2 ||| 36 374827 +del ||| disaster ||| 0.000236239 0.0005247 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 4233 374827 +del ||| discontinued work of the ||| 0.5 0.10196 2.6679e-06 1.62132e-10 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| discredited once and for ||| 1 0.0138653 2.6679e-06 7.72005e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| discuss the ||| 0.000911577 0.0732944 2.6679e-06 1.44831e-05 2.718 ||| 0-1 ||| 1097 374827 +del ||| discussed in the ||| 0.00763359 0.0458111 5.33579e-06 4.91707e-07 2.718 ||| 0-1 0-2 ||| 262 374827 +del ||| discussed in ||| 0.00158479 0.0183279 2.6679e-06 1.41574e-06 2.718 ||| 0-1 ||| 631 374827 +del ||| discussed the ||| 0.00295858 0.0732944 2.6679e-06 1.82341e-05 2.718 ||| 0-1 ||| 338 374827 +del ||| discussing the type ||| 0.5 0.0732944 2.6679e-06 1.43445e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| discussing the ||| 0.0012837 0.0732944 2.6679e-06 1.22602e-05 2.718 ||| 0-1 ||| 779 374827 +del ||| discussion of the ||| 0.00331126 0.10196 2.6679e-06 8.85195e-06 2.718 ||| 0-1 0-2 ||| 302 374827 +del ||| discussion over ||| 0.0909091 0.0033148 2.6679e-06 4.1496e-10 2.718 ||| 0-0 0-1 ||| 11 374827 +del ||| disease of ||| 0.0434783 0.130625 2.6679e-06 8.70207e-06 2.718 ||| 0-1 ||| 23 374827 +del ||| disintegration of the ||| 0.0322581 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-1 0-2 ||| 31 374827 +del ||| display of ||| 0.0114943 0.130625 2.6679e-06 2.97935e-06 2.718 ||| 0-1 ||| 87 374827 +del ||| displayed by ||| 0.016129 0.0249413 2.6679e-06 4.20415e-08 2.718 ||| 0-0 0-1 ||| 62 374827 +del ||| disposal of the ||| 0.0126582 0.10196 2.6679e-06 8.62655e-06 2.718 ||| 0-1 0-2 ||| 79 374827 +del ||| disposal of this sort of ||| 0.5 0.130625 2.6679e-06 1.39421e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| disposal of this sort ||| 0.5 0.130625 2.6679e-06 2.56458e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| disposal of this ||| 0.1 0.130625 2.6679e-06 1.60487e-07 2.718 ||| 0-1 ||| 10 374827 +del ||| disposal of ||| 0.00357143 0.130625 2.6679e-06 2.48378e-05 2.718 ||| 0-1 ||| 280 374827 +del ||| disproportionate number of ||| 0.0625 0.130625 2.6679e-06 3.64897e-10 2.718 ||| 0-2 ||| 16 374827 +del ||| disproved ||| 0.125 0.0526316 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 8 374827 +del ||| disputes in the ||| 0.125 0.0458111 2.6679e-06 7.39903e-08 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| disregard of the ||| 0.0909091 0.130625 5.33579e-06 1.75664e-07 2.718 ||| 0-1 ||| 22 374827 +del ||| disregard of ||| 0.0232558 0.130625 2.6679e-06 2.86136e-06 2.718 ||| 0-1 ||| 43 374827 +del ||| disrupted ||| 0.0113636 0.0067114 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 88 374827 +del ||| distinct from the ||| 0.0294118 0.082213 2.6679e-06 5.72086e-08 2.718 ||| 0-1 0-2 ||| 34 374827 +del ||| distinct signs of doing ||| 1 0.130625 2.6679e-06 1.27565e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| distinct signs of ||| 1 0.130625 2.6679e-06 3.47493e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| distortions of ||| 0.00352113 0.130625 2.6679e-06 1.26844e-06 2.718 ||| 0-1 ||| 284 374827 +del ||| distributed between ||| 0.0833333 0.0028314 2.6679e-06 2.8504e-09 2.718 ||| 0-1 ||| 12 374827 +del ||| distribution of ||| 0.000909091 0.130625 2.6679e-06 6.0472e-06 2.718 ||| 0-1 ||| 1100 374827 +del ||| district ||| 0.00473934 0.0246914 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 211 374827 +del ||| divide the ||| 0.0163934 0.0732944 2.6679e-06 2.01443e-06 2.718 ||| 0-1 ||| 61 374827 +del ||| division of ||| 0.00182815 0.130625 2.6679e-06 2.65487e-06 2.718 ||| 0-1 ||| 547 374827 +del ||| divisions over ||| 0.142857 0.006517 2.6679e-06 5.7456e-10 2.718 ||| 0-1 ||| 7 374827 +del ||| do away with the ||| 0.0116279 0.0732944 2.6679e-06 2.42694e-09 2.718 ||| 0-3 ||| 86 374827 +del ||| do from a ||| 0.0526316 0.0911315 2.6679e-06 3.30023e-06 2.718 ||| 0-1 ||| 19 374827 +del ||| do from ||| 0.027027 0.0911315 2.6679e-06 7.44539e-05 2.718 ||| 0-1 ||| 37 374827 +del ||| do here in ||| 0.0625 0.0183279 2.6679e-06 1.87851e-07 2.718 ||| 0-2 ||| 16 374827 +del ||| do in accordance with ||| 0.5 0.0183279 2.6679e-06 4.70935e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| do in accordance ||| 0.5 0.0183279 2.6679e-06 7.3647e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| do in fact ||| 0.015625 0.0183279 2.6679e-06 2.71364e-07 2.718 ||| 0-1 ||| 64 374827 +del ||| do in ||| 0.0026738 0.0183279 5.33579e-06 9.26377e-05 2.718 ||| 0-1 ||| 748 374827 +del ||| do more than ||| 0.0114943 0.0313352 2.6679e-06 1.83515e-08 2.718 ||| 0-2 ||| 87 374827 +del ||| do the very ||| 0.2 0.0732944 2.6679e-06 4.15151e-06 2.718 ||| 0-1 ||| 5 374827 +del ||| do the ||| 0.00106838 0.0732944 2.6679e-06 0.00119313 2.718 ||| 0-1 ||| 936 374827 +del ||| do with the ||| 0.00533618 0.0389112 1.33395e-05 2.27077e-06 2.718 ||| 0-1 0-2 ||| 937 374827 +del ||| do with ||| 0.00174948 0.0045281 1.33395e-05 6.53806e-06 2.718 ||| 0-1 ||| 2858 374827 +del ||| documents for the ||| 0.166667 0.0435798 2.6679e-06 9.41614e-08 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| documents ||| 0.000184877 0.0009954 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 5409 374827 +del ||| does for ||| 0.0333333 0.0138653 2.6679e-06 7.54594e-06 2.718 ||| 0-1 ||| 30 374827 +del ||| does in ||| 0.00990099 0.0183279 2.6679e-06 1.89142e-05 2.718 ||| 0-1 ||| 101 374827 +del ||| does the Commissioner think ||| 0.0714286 0.0732944 2.6679e-06 8.21846e-12 2.718 ||| 0-1 ||| 14 374827 +del ||| does the Commissioner ||| 0.0128205 0.0732944 2.6679e-06 2.14862e-08 2.718 ||| 0-1 ||| 78 374827 +del ||| does the creation of ||| 1 0.130625 2.6679e-06 5.89379e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| does the ||| 0.00385356 0.0732944 1.60074e-05 0.000243607 2.718 ||| 0-1 ||| 1557 374827 +del ||| dollar ||| 0.003663 0.0764331 5.33579e-06 6.3e-05 2.718 ||| 0-0 ||| 546 374827 +del ||| dominates the ||| 0.0555556 0.0732944 2.6679e-06 3.82047e-07 2.718 ||| 0-1 ||| 18 374827 +del ||| done - that we in ||| 1 0.0183279 2.6679e-06 8.85772e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| done by ||| 0.00488401 0.0461582 1.06716e-05 7.37343e-06 2.718 ||| 0-1 ||| 819 374827 +del ||| done her work in the ||| 1 0.0458111 2.6679e-06 7.35605e-13 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| done in the ||| 0.00245098 0.0183279 2.6679e-06 7.54915e-07 2.718 ||| 0-1 ||| 408 374827 +del ||| done in ||| 0.000688705 0.0183279 2.6679e-06 1.22967e-05 2.718 ||| 0-1 ||| 1452 374827 +del ||| done on the ||| 0.00862069 0.0436809 2.6679e-06 1.55327e-06 2.718 ||| 0-1 0-2 ||| 116 374827 +del ||| done to ||| 0.00156006 0.0006066 2.6679e-06 6.06708e-07 2.718 ||| 0-1 ||| 641 374827 +del ||| door of ||| 0.0151515 0.130625 2.6679e-06 1.33628e-05 2.718 ||| 0-1 ||| 66 374827 +del ||| doorstep . the employees sit tight in ||| 0.5 0.0732944 2.6679e-06 1.97307e-25 2.718 ||| 0-2 ||| 2 374827 +del ||| doorstep . the employees sit tight ||| 0.5 0.0732944 2.6679e-06 9.218e-24 2.718 ||| 0-2 ||| 2 374827 +del ||| doorstep . the employees sit ||| 0.5 0.0732944 2.6679e-06 9.80638e-19 2.718 ||| 0-2 ||| 2 374827 +del ||| doorstep . the employees ||| 0.5 0.0732944 2.6679e-06 2.59428e-14 2.718 ||| 0-2 ||| 2 374827 +del ||| doorstep . the ||| 0.5 0.0732944 2.6679e-06 1.89364e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| dot sex ||| 0.5 0.0635335 2.6679e-06 3.836e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| doubt that the ||| 0.00318471 0.0732944 2.6679e-06 5.33996e-07 2.718 ||| 0-2 ||| 314 374827 +del ||| dovetails from ||| 1 0.0911315 2.6679e-06 8.66928e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| down by the European ||| 0.5 0.0597263 2.6679e-06 1.31099e-08 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| down by the ||| 0.0634921 0.0597263 1.06716e-05 3.92055e-06 2.718 ||| 0-1 0-2 ||| 63 374827 +del ||| down by ||| 0.0251572 0.0461582 1.06716e-05 1.12881e-05 2.718 ||| 0-1 ||| 159 374827 +del ||| down from on ||| 0.4 0.0525994 5.33579e-06 1.48388e-07 2.718 ||| 0-1 0-2 ||| 5 374827 +del ||| down from the current ||| 1 0.082213 2.6679e-06 8.66009e-10 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| down from the ||| 0.0588235 0.082213 2.6679e-06 5.25491e-06 2.718 ||| 0-1 0-2 ||| 17 374827 +del ||| down in history as ||| 0.142857 0.0183279 2.6679e-06 6.91561e-12 2.718 ||| 0-1 ||| 7 374827 +del ||| down in history ||| 0.1 0.0183279 2.6679e-06 6.77709e-10 2.718 ||| 0-1 ||| 10 374827 +del ||| down in the ||| 0.116438 0.0458111 4.53543e-05 6.5383e-06 2.718 ||| 0-1 0-2 ||| 146 374827 +del ||| down in ||| 0.0140845 0.0183279 1.06716e-05 1.88252e-05 2.718 ||| 0-1 ||| 284 374827 +del ||| down on the ||| 0.0444444 0.0436809 5.33579e-06 2.37794e-06 2.718 ||| 0-1 0-2 ||| 45 374827 +del ||| down the education ||| 1 0.0732944 2.6679e-06 8.19519e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| down the rule ||| 0.25 0.0732944 2.6679e-06 1.97121e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| down the ||| 0.010101 0.0732944 1.60074e-05 0.000242461 2.718 ||| 0-1 ||| 594 374827 +del ||| down ||| 0.000980072 0.0006795 8.00369e-06 1.58e-05 2.718 ||| 0-0 ||| 3061 374827 +del ||| draft ||| 0.000141955 0.0160678 5.33579e-06 0.0002167 2.718 ||| 0-0 ||| 14089 374827 +del ||| drafted by the ||| 0.0253165 0.0597263 5.33579e-06 1.5781e-07 2.718 ||| 0-1 0-2 ||| 79 374827 +del ||| drafted by ||| 0.0364372 0.024629 2.40111e-05 1.06721e-07 2.718 ||| 0-0 0-1 ||| 247 374827 +del ||| drafting of an ||| 0.0909091 0.130625 2.6679e-06 1.94046e-08 2.718 ||| 0-1 ||| 11 374827 +del ||| drafting of ||| 0.00520833 0.130625 5.33579e-06 4.36579e-06 2.718 ||| 0-1 ||| 384 374827 +del ||| draftsman of the ||| 0.00144928 0.130625 2.6679e-06 5.08882e-07 2.718 ||| 0-1 ||| 690 374827 +del ||| draftsman of ||| 0.00135501 0.130625 2.6679e-06 8.28909e-06 2.718 ||| 0-1 ||| 738 374827 +del ||| draw from the ||| 0.037037 0.082213 2.6679e-06 8.91249e-07 2.718 ||| 0-1 0-2 ||| 27 374827 +del ||| draw on ||| 0.00564972 0.0140673 2.6679e-06 1.16121e-06 2.718 ||| 0-1 ||| 177 374827 +del ||| drawing up of ||| 0.00621118 0.130625 2.6679e-06 5.00006e-08 2.718 ||| 0-2 ||| 161 374827 +del ||| drawn by the ||| 0.0625 0.0597263 2.6679e-06 7.98037e-07 2.718 ||| 0-1 0-2 ||| 16 374827 +del ||| drawn from the ||| 0.0350877 0.082213 5.33579e-06 1.06965e-06 2.718 ||| 0-1 0-2 ||| 57 374827 +del ||| drawn from this ||| 0.0232558 0.0911315 2.6679e-06 1.98996e-08 2.718 ||| 0-1 ||| 43 374827 +del ||| drawn from ||| 0.00478469 0.0911315 2.6679e-06 3.07976e-06 2.718 ||| 0-1 ||| 209 374827 +del ||| drawn the ||| 0.0217391 0.0732944 2.6679e-06 4.93536e-05 2.718 ||| 0-1 ||| 46 374827 +del ||| drawn up by the ||| 0.0151515 0.0597263 1.33395e-05 2.72171e-09 2.718 ||| 0-2 0-3 ||| 330 374827 +del ||| drawn up by ||| 0.018315 0.0461582 2.6679e-05 7.8364e-09 2.718 ||| 0-2 ||| 546 374827 +del ||| drawn up the ||| 0.0666667 0.0732944 2.6679e-06 1.6832e-07 2.718 ||| 0-2 ||| 15 374827 +del ||| dreadful events of ||| 0.333333 0.130625 2.6679e-06 1.07227e-10 2.718 ||| 0-2 ||| 3 374827 +del ||| drive for ||| 0.0169492 0.0138653 2.6679e-06 3.24904e-07 2.718 ||| 0-1 ||| 59 374827 +del ||| drive the ||| 0.0163934 0.0732944 2.6679e-06 1.04889e-05 2.718 ||| 0-1 ||| 61 374827 +del ||| drive to ||| 0.016129 0.0007746 2.6679e-06 1.15516e-07 2.718 ||| 0-0 ||| 62 374827 +del ||| drive ||| 0.00104167 0.0007746 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 960 374827 +del ||| driven by ||| 0.00395257 0.0461582 2.6679e-06 4.77009e-07 2.718 ||| 0-1 ||| 253 374827 +del ||| driven out of the ||| 0.0555556 0.10196 2.6679e-06 1.15769e-08 2.718 ||| 0-2 0-3 ||| 18 374827 +del ||| driver is well over the limit ||| 0.111111 0.0732944 2.6679e-06 2.90802e-18 2.718 ||| 0-4 ||| 9 374827 +del ||| driver is well over the ||| 0.111111 0.0732944 2.6679e-06 5.98358e-14 2.718 ||| 0-4 ||| 9 374827 +del ||| driving us ||| 0.2 0.0169492 2.6679e-06 1.70338e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| driving ||| 0.0035 0.0169492 1.86753e-05 5.91e-05 2.718 ||| 0-0 ||| 2000 374827 +del ||| drop from ||| 0.142857 0.0911315 2.6679e-06 3.42437e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| drops below ||| 0.2 0.0277778 2.6679e-06 1.4154e-10 2.718 ||| 0-1 ||| 5 374827 +del ||| drug ||| 0.00285714 0.011746 8.00369e-06 4.86e-05 2.718 ||| 0-0 ||| 1050 374827 +del ||| du beurre et l ||| 0.25 0.232877 2.6679e-06 4.61164e-23 2.718 ||| 0-0 ||| 4 374827 +del ||| du beurre et ||| 0.25 0.232877 2.6679e-06 9.812e-18 2.718 ||| 0-0 ||| 4 374827 +del ||| du beurre ||| 0.25 0.232877 2.6679e-06 8.92e-12 2.718 ||| 0-0 ||| 4 374827 +del ||| du ||| 0.125 0.232877 1.33395e-05 2.23e-05 2.718 ||| 0-0 ||| 40 374827 +del ||| duckling ’ of the ||| 1 0.130625 2.6679e-06 1.26196e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| duckling ’ of ||| 1 0.130625 2.6679e-06 2.05558e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| due respect for the ||| 0.0227273 0.0435798 2.6679e-06 4.46783e-10 2.718 ||| 0-2 0-3 ||| 44 374827 +del ||| due to take place ||| 0.0075188 0.0002848 2.6679e-06 8.39701e-13 2.718 ||| 0-0 ||| 133 374827 +del ||| due to take ||| 0.0123457 0.0002848 2.6679e-06 5.57941e-10 2.718 ||| 0-0 ||| 81 374827 +del ||| due to the ||| 0.00131637 0.0732944 8.00369e-06 8.53022e-06 2.718 ||| 0-2 ||| 2279 374827 +del ||| due to ||| 0.000177999 0.0002848 2.6679e-06 3.46547e-07 2.718 ||| 0-0 ||| 5618 374827 +del ||| due ||| 0.000119332 0.0002848 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 8380 374827 +del ||| during 2009 ||| 0.04 0.001065 2.6679e-06 3.419e-10 2.718 ||| 0-0 ||| 25 374827 +del ||| during its Presidency of the ||| 0.166667 0.10196 2.6679e-06 7.31249e-13 2.718 ||| 0-3 0-4 ||| 6 374827 +del ||| during the parliamentary ||| 0.142857 0.0732944 2.6679e-06 1.0958e-09 2.718 ||| 0-1 ||| 7 374827 +del ||| during the work of the ||| 0.0833333 0.10196 2.6679e-06 4.01328e-10 2.718 ||| 0-3 0-4 ||| 12 374827 +del ||| during the ||| 0.00179549 0.0732944 5.60258e-05 3.50094e-05 2.718 ||| 0-1 ||| 11696 374827 +del ||| during this ||| 0.00133156 0.0033154 5.33579e-06 2.31427e-07 2.718 ||| 0-1 ||| 1502 374827 +del ||| during ||| 0.000180668 0.001065 1.06716e-05 2.63e-05 2.718 ||| 0-0 ||| 22140 374827 +del ||| duty of ||| 0.00223214 0.130625 2.6679e-06 2.19764e-05 2.718 ||| 0-1 ||| 448 374827 +del ||| duty on ||| 0.0133333 0.0140673 2.6679e-06 7.30659e-07 2.718 ||| 0-1 ||| 75 374827 +del ||| each of the national ||| 0.5 0.130625 2.6679e-06 6.53216e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| each of the ||| 0.00123001 0.130625 2.6679e-06 5.08339e-06 2.718 ||| 0-1 ||| 813 374827 +del ||| each of ||| 0.00114811 0.130625 5.33579e-06 8.28024e-05 2.718 ||| 0-1 ||| 1742 374827 +del ||| each type of ||| 0.0277778 0.130625 2.6679e-06 9.68788e-09 2.718 ||| 0-2 ||| 36 374827 +del ||| earlier by ||| 0.0243902 0.0231699 2.6679e-06 2.10207e-08 2.718 ||| 0-0 0-1 ||| 41 374827 +del ||| early as the ||| 0.027027 0.0732944 2.6679e-06 2.39939e-07 2.718 ||| 0-2 ||| 37 374827 +del ||| early on ||| 0.00970874 0.0140673 2.6679e-06 6.63968e-07 2.718 ||| 0-1 ||| 103 374827 +del ||| early stages ||| 0.00909091 0.0065475 2.6679e-06 7.3386e-10 2.718 ||| 0-0 ||| 110 374827 +del ||| early start on ||| 0.333333 0.0140673 2.6679e-06 9.22251e-11 2.718 ||| 0-2 ||| 3 374827 +del ||| early ||| 0.00185787 0.0065475 2.13432e-05 4.86e-05 2.718 ||| 0-0 ||| 4306 374827 +del ||| earned by that ||| 0.666667 0.0461582 5.33579e-06 2.33922e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| earned by ||| 0.0571429 0.0461582 5.33579e-06 1.3906e-07 2.718 ||| 0-1 ||| 35 374827 +del ||| earnings back into the ||| 1 0.0732944 2.6679e-06 4.31715e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| earth ' s ||| 0.2 0.16804 2.6679e-06 5.18105e-10 2.718 ||| 0-2 ||| 5 374827 +del ||| ease the ' ||| 0.5 0.0513318 2.6679e-06 1.71505e-08 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| ease the pain ||| 0.2 0.0732944 2.6679e-06 1.80604e-11 2.718 ||| 0-1 ||| 5 374827 +del ||| ease the ||| 0.0121212 0.0732944 5.33579e-06 3.61208e-06 2.718 ||| 0-1 ||| 165 374827 +del ||| easier for the ||| 0.0217391 0.0435798 2.6679e-06 2.60812e-07 2.718 ||| 0-1 0-2 ||| 46 374827 +del ||| easier to ||| 0.00171527 0.0006066 2.6679e-06 9.28689e-08 2.718 ||| 0-1 ||| 583 374827 +del ||| eastern Europe ||| 0.00769231 0.147645 5.33579e-06 2.31293e-07 2.718 ||| 0-0 ||| 260 374827 +del ||| eastern and ||| 0.00813008 0.147645 2.6679e-06 5.72559e-06 2.718 ||| 0-0 ||| 123 374827 +del ||| eastern electricity ||| 0.333333 0.147645 2.6679e-06 4.61671e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| eastern ||| 0.00316122 0.147645 1.60074e-05 0.0004571 2.718 ||| 0-0 ||| 1898 374827 +del ||| easy prey for populist ||| 1 0.0324324 2.6679e-06 2.52461e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| easy prey for ||| 0.05 0.0324324 2.6679e-06 2.2951e-12 2.718 ||| 0-1 ||| 20 374827 +del ||| easy prey ||| 0.0416667 0.0324324 2.6679e-06 2.9862e-10 2.718 ||| 0-1 ||| 24 374827 +del ||| economic recovery of ||| 0.04 0.130625 2.6679e-06 4.75897e-10 2.718 ||| 0-2 ||| 25 374827 +del ||| economic sphere ||| 0.025 0.0003042 2.6679e-06 4.968e-10 2.718 ||| 0-0 ||| 40 374827 +del ||| economic ||| 0.000119608 0.0003042 1.60074e-05 1.84e-05 2.718 ||| 0-0 ||| 50164 374827 +del ||| economy because of it or damage ||| 1 0.130625 2.6679e-06 4.33103e-18 2.718 ||| 0-2 ||| 1 374827 +del ||| economy because of it or ||| 1 0.130625 2.6679e-06 1.02875e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| economy because of it ||| 1 0.130625 2.6679e-06 8.99806e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| economy because of ||| 0.25 0.130625 2.6679e-06 5.05986e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| economy in the ||| 0.075 0.0458111 1.60074e-05 4.88898e-07 2.718 ||| 0-1 0-2 ||| 80 374827 +del ||| edge of a ||| 0.1 0.130625 2.6679e-06 1.12449e-07 2.718 ||| 0-1 ||| 10 374827 +del ||| edge of ||| 0.010989 0.130625 2.6679e-06 2.53688e-06 2.718 ||| 0-1 ||| 91 374827 +del ||| edition of ||| 0.04 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-1 ||| 25 374827 +del ||| effect from the ||| 0.0666667 0.0732944 2.6679e-06 1.86588e-07 2.718 ||| 0-2 ||| 15 374827 +del ||| effect from ||| 0.00729927 0.0911315 2.6679e-06 7.23018e-06 2.718 ||| 0-1 ||| 137 374827 +del ||| effect of ||| 0.00406504 0.130625 8.00369e-06 9.84072e-05 2.718 ||| 0-1 ||| 738 374827 +del ||| effect on the ||| 0.00507614 0.0436809 2.6679e-06 1.13634e-06 2.718 ||| 0-1 0-2 ||| 197 374827 +del ||| effect on ||| 0.00161812 0.0140673 2.6679e-06 3.27178e-06 2.718 ||| 0-1 ||| 618 374827 +del ||| effect upon the ||| 0.0909091 0.0732944 2.6679e-06 2.74831e-08 2.718 ||| 0-2 ||| 11 374827 +del ||| effective traffic surveillance ||| 1 0.10034 2.6679e-06 1.0796e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| effective traffic ||| 0.5 0.10034 2.6679e-06 4.31842e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| effects - of the ||| 1 0.10196 2.6679e-06 2.0985e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| effects of the ||| 0.00295858 0.10196 5.33579e-06 5.5632e-06 2.718 ||| 0-1 0-2 ||| 676 374827 +del ||| effects of ||| 0.00150075 0.130625 8.00369e-06 1.60177e-05 2.718 ||| 0-1 ||| 1999 374827 +del ||| effort by ||| 0.0163934 0.0461582 2.6679e-06 1.43103e-06 2.718 ||| 0-1 ||| 61 374827 +del ||| effort with regard to ||| 0.5 0.0045281 2.6679e-06 1.01908e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| effort with regard ||| 0.25 0.0045281 2.6679e-06 1.14686e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| effort with ||| 0.0434783 0.0045281 2.6679e-06 1.68433e-07 2.718 ||| 0-1 ||| 23 374827 +del ||| efforts of ||| 0.00103093 0.130625 2.6679e-06 3.58702e-05 2.718 ||| 0-1 ||| 970 374827 +del ||| efforts to rid the ||| 1 0.0732944 2.6679e-06 8.78156e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| egalitarian ideas of ||| 1 0.130625 2.6679e-06 4.1652e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| eight months , the European Commission must ||| 0.333333 0.0732944 2.6679e-06 2.36832e-20 2.718 ||| 0-3 ||| 3 374827 +del ||| eight months , the European Commission ||| 0.333333 0.0732944 2.6679e-06 1.5323e-17 2.718 ||| 0-3 ||| 3 374827 +del ||| eight months , the European ||| 0.333333 0.0732944 2.6679e-06 2.62335e-14 2.718 ||| 0-3 ||| 3 374827 +del ||| eight months , the ||| 0.25 0.0732944 2.6679e-06 7.84518e-12 2.718 ||| 0-3 ||| 4 374827 +del ||| either , of ||| 0.5 0.130625 2.6679e-06 3.04575e-05 2.718 ||| 0-2 ||| 2 374827 +del ||| either by the ||| 0.0204082 0.0597263 2.6679e-06 4.86236e-06 2.718 ||| 0-1 0-2 ||| 49 374827 +del ||| either from the ||| 0.0588235 0.082213 5.33579e-06 6.51726e-06 2.718 ||| 0-1 0-2 ||| 34 374827 +del ||| either of the ||| 0.0483871 0.10196 8.00369e-06 8.87039e-05 2.718 ||| 0-1 0-2 ||| 62 374827 +del ||| either side of the ||| 0.0232558 0.10196 2.6679e-06 1.94439e-08 2.718 ||| 0-2 0-3 ||| 43 374827 +del ||| either the ||| 0.00259067 0.0732944 2.6679e-06 0.000300706 2.718 ||| 0-1 ||| 386 374827 +del ||| either using the ||| 1 0.0732944 2.6679e-06 2.33649e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| election of the ||| 0.00746269 0.10196 2.6679e-06 2.43838e-06 2.718 ||| 0-1 0-2 ||| 134 374827 +del ||| elections held on ||| 0.142857 0.0140673 2.6679e-06 9.00682e-11 2.718 ||| 0-2 ||| 7 374827 +del ||| electronic money in the ||| 0.5 0.0183279 2.6679e-06 2.54281e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| electronic money in ||| 0.333333 0.0183279 2.6679e-06 4.14193e-11 2.718 ||| 0-2 ||| 3 374827 +del ||| element of the ||| 0.0185185 0.10196 5.33579e-06 4.45671e-06 2.718 ||| 0-1 0-2 ||| 108 374827 +del ||| element of ||| 0.00209644 0.130625 2.6679e-06 1.28319e-05 2.718 ||| 0-1 ||| 477 374827 +del ||| element out of the ||| 1 0.10196 2.6679e-06 1.7071e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| elements of EU policy ||| 0.5 0.130625 2.6679e-06 2.04572e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| elements of EU ||| 0.5 0.130625 2.6679e-06 5.19613e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| elements of the ||| 0.00347222 0.10196 2.6679e-06 3.64733e-06 2.718 ||| 0-1 0-2 ||| 288 374827 +del ||| elements of ||| 0.00324149 0.130625 5.33579e-06 1.05015e-05 2.718 ||| 0-1 ||| 617 374827 +del ||| eliminated by ||| 0.0714286 0.0461582 2.6679e-06 2.26377e-07 2.718 ||| 0-1 ||| 14 374827 +del ||| else in the ||| 0.111111 0.0458111 1.33395e-05 1.10517e-06 2.718 ||| 0-1 0-2 ||| 45 374827 +del ||| emanating from the ||| 0.0243902 0.082213 2.6679e-06 1.65604e-08 2.718 ||| 0-1 0-2 ||| 41 374827 +del ||| embrace the ||| 0.0196078 0.0732944 2.6679e-06 1.87551e-06 2.718 ||| 0-1 ||| 51 374827 +del ||| emerge from the meeting of the ||| 0.5 0.10196 2.6679e-06 3.84208e-14 2.718 ||| 0-4 0-5 ||| 2 374827 +del ||| emerge from the ||| 0.00680272 0.082213 2.6679e-06 2.27329e-07 2.718 ||| 0-1 0-2 ||| 147 374827 +del ||| emerged from the ||| 0.00980392 0.082213 2.6679e-06 1.81411e-07 2.718 ||| 0-1 0-2 ||| 102 374827 +del ||| emergence of a ||| 0.00694444 0.130625 2.6679e-06 9.93736e-08 2.718 ||| 0-1 ||| 144 374827 +del ||| emergence of ||| 0.00458716 0.130625 5.33579e-06 2.24189e-06 2.718 ||| 0-1 ||| 436 374827 +del ||| emission by equipment used outdoors ||| 1 0.0461582 2.6679e-06 2.39321e-22 2.718 ||| 0-1 ||| 1 374827 +del ||| emission by equipment used ||| 1 0.0461582 2.6679e-06 5.98303e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| emission by equipment ||| 1 0.0461582 2.6679e-06 1.39465e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| emission by ||| 1 0.0461582 2.6679e-06 4.04245e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| emissions on ||| 0.111111 0.0140673 2.6679e-06 1.6967e-07 2.718 ||| 0-1 ||| 9 374827 +del ||| emphasis on ||| 0.000655308 0.0140673 2.6679e-06 5.01163e-07 2.718 ||| 0-1 ||| 1526 374827 +del ||| employed by the ||| 0.015873 0.0732944 2.6679e-06 5.25151e-08 2.718 ||| 0-2 ||| 63 374827 +del ||| employee representatives should benefit from the same ||| 1 0.0911315 2.6679e-06 5.06104e-23 2.718 ||| 0-4 ||| 1 374827 +del ||| employee representatives should benefit from the ||| 1 0.0911315 2.6679e-06 6.28935e-20 2.718 ||| 0-4 ||| 1 374827 +del ||| employee representatives should benefit from ||| 1 0.0911315 2.6679e-06 1.02446e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| employment of the ||| 0.0344828 0.0856471 2.6679e-06 0.000170226 2.718 ||| 0-0 0-1 0-2 ||| 29 374827 +del ||| employment ||| 0.000245592 0.053022 1.33395e-05 0.0016615 2.718 ||| 0-0 ||| 20359 374827 +del ||| en ||| 0.00510204 0.0026455 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 196 374827 +del ||| enable the ||| 0.00459418 0.0732944 8.00369e-06 3.42453e-05 2.718 ||| 0-1 ||| 653 374827 +del ||| enables the ||| 0.00819672 0.0732944 2.6679e-06 6.00856e-06 2.718 ||| 0-1 ||| 122 374827 +del ||| enables these individuals to ||| 1 0.0006066 2.6679e-06 7.7344e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| enabling the ||| 0.00826446 0.0732944 5.33579e-06 1.17393e-05 2.718 ||| 0-1 ||| 242 374827 +del ||| enacted by the Riksdag ||| 0.5 0.0597263 2.6679e-06 1.96561e-14 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| enacted by the ||| 0.0666667 0.0597263 2.6679e-06 2.80801e-08 2.718 ||| 0-1 0-2 ||| 15 374827 +del ||| encountered in ||| 0.0119048 0.0183279 2.6679e-06 1.07866e-07 2.718 ||| 0-1 ||| 84 374827 +del ||| encourage the ||| 0.000892857 0.0732944 2.6679e-06 1.33717e-05 2.718 ||| 0-1 ||| 1120 374827 +del ||| encouraged by the ||| 0.00980392 0.0597263 2.6679e-06 1.01088e-07 2.718 ||| 0-1 0-2 ||| 102 374827 +del ||| encouraging ||| 0.000257202 0.0003207 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 3888 374827 +del ||| end , the ||| 0.00421941 0.0732944 2.6679e-06 1.80214e-05 2.718 ||| 0-2 ||| 237 374827 +del ||| end in order to ||| 0.333333 0.0183279 2.6679e-06 5.55278e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| end in order ||| 0.333333 0.0183279 2.6679e-06 6.24904e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| end in ||| 0.00218818 0.0183279 2.6679e-06 1.17331e-05 2.718 ||| 0-1 ||| 457 374827 +del ||| end of the ||| 0.00393959 0.10196 3.20148e-05 4.45774e-05 2.718 ||| 0-1 0-2 ||| 3046 374827 +del ||| end of ||| 0.00164745 0.130625 2.13432e-05 0.000128348 2.718 ||| 0-1 ||| 4856 374827 +del ||| end the ||| 0.00209644 0.0732944 2.6679e-06 0.000151117 2.718 ||| 0-1 ||| 477 374827 +del ||| end to the ||| 0.00240096 0.0732944 5.33579e-06 1.3428e-05 2.718 ||| 0-2 ||| 833 374827 +del ||| endorsed the ||| 0.00534759 0.0732944 2.6679e-06 2.88272e-06 2.718 ||| 0-1 ||| 187 374827 +del ||| endorsement of the ||| 0.0153846 0.10196 2.6679e-06 2.97114e-07 2.718 ||| 0-1 0-2 ||| 65 374827 +del ||| endorsing the decision of the Committee on ||| 1 0.130625 2.6679e-06 5.71407e-19 2.718 ||| 0-3 ||| 1 374827 +del ||| endorsing the decision of the Committee ||| 1 0.130625 2.6679e-06 8.53994e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| endorsing the decision of the ||| 1 0.130625 2.6679e-06 5.59629e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| endorsing the decision of ||| 1 0.130625 2.6679e-06 9.11569e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| ends on the ||| 0.5 0.0732944 2.6679e-06 5.4379e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| energy consumption ||| 0.0021097 0.030112 2.6679e-06 1.50597e-08 2.718 ||| 0-1 ||| 474 374827 +del ||| energy technology ||| 0.0163934 0.0007167 2.6679e-06 6.39e-10 2.718 ||| 0-0 ||| 61 374827 +del ||| energy ||| 9.99633e-05 0.0007167 8.00369e-06 3.55e-05 2.718 ||| 0-0 ||| 30011 374827 +del ||| enforcement ||| 0.000874508 0.0131178 5.33579e-06 5.65e-05 2.718 ||| 0-0 ||| 2287 374827 +del ||| engage in ||| 0.00117647 0.0183279 2.6679e-06 1.31057e-06 2.718 ||| 0-1 ||| 850 374827 +del ||| engaged in by the ||| 0.166667 0.0459268 2.6679e-06 6.20921e-09 2.718 ||| 0-1 0-2 0-3 ||| 6 374827 +del ||| engaging in ||| 0.00446429 0.01017 2.6679e-06 3.50563e-08 2.718 ||| 0-0 0-1 ||| 224 374827 +del ||| enhancing the standing ||| 1 0.0732944 2.6679e-06 1.32286e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| enhancing the ||| 0.00373134 0.0732944 2.6679e-06 2.50067e-06 2.718 ||| 0-1 ||| 268 374827 +del ||| enjoining ||| 0.166667 0.25 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 6 374827 +del ||| enjoy the ||| 0.00309598 0.0732944 2.6679e-06 1.35106e-05 2.718 ||| 0-1 ||| 323 374827 +del ||| enjoyed by the ||| 0.0217391 0.0597263 2.6679e-06 1.29169e-07 2.718 ||| 0-1 0-2 ||| 46 374827 +del ||| enjoyed by ||| 0.00458716 0.0461582 2.6679e-06 3.71905e-07 2.718 ||| 0-1 ||| 218 374827 +del ||| enough to ||| 0.000932836 0.0006066 2.6679e-06 2.19799e-07 2.718 ||| 0-1 ||| 1072 374827 +del ||| enrichment and ||| 0.0588235 0.0163934 2.6679e-06 6.63873e-08 2.718 ||| 0-0 ||| 17 374827 +del ||| enrichment ||| 0.00290698 0.0163934 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 344 374827 +del ||| enshrined in the ||| 0.00574713 0.0458111 8.00369e-06 1.38615e-07 2.718 ||| 0-1 0-2 ||| 522 374827 +del ||| enshrined ||| 0.00105152 0.0009355 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 951 374827 +del ||| ensued as a result of the ||| 1 0.10196 2.6679e-06 9.7595e-15 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| ensure that both the ||| 0.333333 0.0732944 2.6679e-06 4.33959e-09 2.718 ||| 0-3 ||| 3 374827 +del ||| ensure that the ||| 0.00112931 0.0732944 1.06716e-05 2.61974e-06 2.718 ||| 0-2 ||| 3542 374827 +del ||| ensure the security of ||| 0.0243902 0.130625 2.6679e-06 6.63435e-10 2.718 ||| 0-3 ||| 41 374827 +del ||| ensure the ||| 0.000486618 0.0732944 2.6679e-06 0.000155736 2.718 ||| 0-1 ||| 2055 374827 +del ||| ensures the ||| 0.0123457 0.0372121 2.6679e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 81 374827 +del ||| ensuring optimum results from work in the ||| 1 0.0911315 2.6679e-06 3.56707e-22 2.718 ||| 0-3 ||| 1 374827 +del ||| ensuring optimum results from work in ||| 1 0.0911315 2.6679e-06 5.81034e-21 2.718 ||| 0-3 ||| 1 374827 +del ||| ensuring optimum results from work ||| 1 0.0911315 2.6679e-06 2.71454e-19 2.718 ||| 0-3 ||| 1 374827 +del ||| ensuring optimum results from ||| 1 0.0911315 2.6679e-06 4.28838e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| ensuring sustainable ||| 0.333333 0.0084468 2.6679e-06 1.49549e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| ensuring that the ||| 0.00286944 0.0732944 5.33579e-06 6.78888e-07 2.718 ||| 0-2 ||| 697 374827 +del ||| ensuring the ||| 0.00119474 0.0732944 2.6679e-06 4.03581e-05 2.718 ||| 0-1 ||| 837 374827 +del ||| enter a ||| 0.0172414 0.0008087 2.6679e-06 4.16338e-08 2.718 ||| 0-1 ||| 58 374827 +del ||| entered in the ||| 0.0163934 0.0458111 2.6679e-06 2.99707e-07 2.718 ||| 0-1 0-2 ||| 61 374827 +del ||| entered the market , ||| 1 0.0732944 2.6679e-06 2.99543e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| entered the market ||| 0.333333 0.0732944 2.6679e-06 2.51179e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| entered the ||| 0.0136054 0.0732944 5.33579e-06 1.11141e-05 2.718 ||| 0-1 ||| 147 374827 +del ||| entertainment and ||| 0.0434783 0.13245 2.6679e-06 3.29431e-07 2.718 ||| 0-0 ||| 23 374827 +del ||| entertainment ||| 0.00694444 0.13245 2.6679e-06 2.63e-05 2.718 ||| 0-0 ||| 144 374827 +del ||| entire swathes of the ||| 0.2 0.10196 2.6679e-06 3.24571e-12 2.718 ||| 0-2 0-3 ||| 5 374827 +del ||| entire ||| 0.00143421 0.0241721 2.13432e-05 0.0001668 2.718 ||| 0-0 ||| 5578 374827 +del ||| entirely unfounded - ||| 1 0.050432 2.6679e-06 3.60662e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| entirely unfounded ||| 0.25 0.050432 2.6679e-06 9.5613e-10 2.718 ||| 0-0 ||| 4 374827 +del ||| entirely upon ||| 0.333333 0.050432 2.6679e-06 7.82048e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| entirely ||| 0.00173611 0.050432 2.13432e-05 0.0003297 2.718 ||| 0-0 ||| 4608 374827 +del ||| entries at the disposal of the ||| 1 0.10196 2.6679e-06 3.99176e-15 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| entrusted to the ||| 0.0277778 0.0732944 2.6679e-06 1.78999e-07 2.718 ||| 0-2 ||| 36 374827 +del ||| environmental and an ||| 0.333333 0.0684734 2.6679e-06 1.1824e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| environmental and ||| 0.000698812 0.0684734 2.6679e-06 2.66025e-05 2.718 ||| 0-0 ||| 1431 374827 +del ||| environmental ||| 0.000645203 0.0684734 2.6679e-05 0.0021238 2.718 ||| 0-0 ||| 15499 374827 +del ||| environmentalists ||| 0.0128205 0.0965909 2.6679e-06 2.23e-05 2.718 ||| 0-0 ||| 78 374827 +del ||| environmentally ||| 0.00121803 0.004954 2.6679e-06 2.76e-05 2.718 ||| 0-0 ||| 821 374827 +del ||| envisage the ||| 0.0232558 0.0732944 2.6679e-06 3.50789e-06 2.718 ||| 0-1 ||| 43 374827 +del ||| episcopal welfare ||| 1 0.0452308 2.6679e-06 7.724e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| equal to the ||| 0.00471698 0.0732944 2.6679e-06 1.7653e-06 2.718 ||| 0-2 ||| 212 374827 +del ||| equal to ||| 0.00242718 0.0006066 2.6679e-06 7.61046e-08 2.718 ||| 0-1 ||| 412 374827 +del ||| equally important ||| 0.00205761 0.023448 2.6679e-06 5.28984e-08 2.718 ||| 0-0 ||| 486 374827 +del ||| equally ||| 0.00166991 0.023448 1.60074e-05 0.0001379 2.718 ||| 0-0 ||| 3593 374827 +del ||| equation of ||| 0.0833333 0.130625 2.6679e-06 8.55458e-07 2.718 ||| 0-1 ||| 12 374827 +del ||| equivalent of the ||| 0.0285714 0.10196 2.6679e-06 2.10029e-06 2.718 ||| 0-1 0-2 ||| 35 374827 +del ||| equivalent of ||| 0.00666667 0.130625 2.6679e-06 6.0472e-06 2.718 ||| 0-1 ||| 150 374827 +del ||| era of budgetary plenty ||| 1 0.130625 2.6679e-06 4.76602e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| era of budgetary ||| 1 0.130625 2.6679e-06 4.41298e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| era of ||| 0.00383142 0.130625 2.6679e-06 2.0059e-06 2.718 ||| 0-1 ||| 261 374827 +del ||| error rates appear ||| 0.5 0.0015987 2.6679e-06 8.65784e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| error rates ||| 0.037037 0.0015987 2.6679e-06 9.906e-11 2.718 ||| 0-0 ||| 27 374827 +del ||| error ||| 0.00141643 0.0015987 5.33579e-06 2.6e-06 2.718 ||| 0-0 ||| 1412 374827 +del ||| escape from ||| 0.00714286 0.0911315 2.6679e-06 1.64716e-07 2.718 ||| 0-1 ||| 140 374827 +del ||| escapes from it ||| 1 0.0911315 2.6679e-06 5.39586e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| escapes from ||| 0.166667 0.0911315 2.6679e-06 3.03425e-08 2.718 ||| 0-1 ||| 6 374827 +del ||| escaping from ||| 0.030303 0.0911315 2.6679e-06 2.38405e-08 2.718 ||| 0-1 ||| 33 374827 +del ||| especially , the ||| 0.0133333 0.0732944 2.6679e-06 3.32595e-06 2.718 ||| 0-2 ||| 75 374827 +del ||| especially on ||| 0.00219298 0.0140673 2.6679e-06 7.87542e-07 2.718 ||| 0-1 ||| 456 374827 +del ||| especially the ||| 0.000729395 0.0732944 2.6679e-06 2.78895e-05 2.718 ||| 0-1 ||| 1371 374827 +del ||| espoused by ||| 0.0588235 0.0461582 2.6679e-06 1.13189e-08 2.718 ||| 0-1 ||| 17 374827 +del ||| essence of ||| 0.00615385 0.130625 5.33579e-06 3.71682e-06 2.718 ||| 0-1 ||| 325 374827 +del ||| essential elements of EU policy ||| 0.5 0.130625 2.6679e-06 1.84115e-16 2.718 ||| 0-2 ||| 2 374827 +del ||| essential elements of EU ||| 0.5 0.130625 2.6679e-06 4.67652e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| essential elements of ||| 0.016129 0.130625 2.6679e-06 9.45134e-10 2.718 ||| 0-2 ||| 62 374827 +del ||| essential for the ||| 0.00218341 0.0732944 2.6679e-06 2.40243e-07 2.718 ||| 0-2 ||| 458 374827 +del ||| essential to look upon ||| 1 0.0034407 2.6679e-06 1.19357e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| essentially within the ||| 0.333333 0.0732944 2.6679e-06 1.38711e-09 2.718 ||| 0-2 ||| 3 374827 +del ||| establish the ||| 0.00171821 0.0367202 2.6679e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 582 374827 +del ||| established by the ||| 0.0131579 0.0597263 1.33395e-05 8.40719e-07 2.718 ||| 0-1 0-2 ||| 380 374827 +del ||| established for the ||| 0.037037 0.0435798 2.6679e-06 5.59363e-07 2.718 ||| 0-1 0-2 ||| 27 374827 +del ||| established for ||| 0.00980392 0.0138653 2.6679e-06 1.61053e-06 2.718 ||| 0-1 ||| 102 374827 +del ||| established the ||| 0.00495049 0.0732944 2.6679e-06 5.19932e-05 2.718 ||| 0-1 ||| 202 374827 +del ||| establishing the ||| 0.00176835 0.0367359 5.33579e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 1131 374827 +del ||| establishment of the ||| 0.00163934 0.10196 2.6679e-06 4.61039e-06 2.718 ||| 0-1 0-2 ||| 610 374827 +del ||| establishment of ||| 0.000348553 0.130625 2.6679e-06 1.32743e-05 2.718 ||| 0-1 ||| 2869 374827 +del ||| establishments in the ||| 0.2 0.0458111 2.6679e-06 1.03024e-08 2.718 ||| 0-1 0-2 ||| 5 374827 +del ||| estimated ||| 0.000938967 0.0006978 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1065 374827 +del ||| estimates of our ||| 1 0.130625 2.6679e-06 2.03451e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| estimates of ||| 0.00917431 0.130625 2.6679e-06 1.47493e-06 2.718 ||| 0-1 ||| 109 374827 +del ||| euro 's ||| 0.0454545 0.180422 2.6679e-06 0.000127506 2.718 ||| 0-0 0-1 ||| 22 374827 +del ||| euro and the ||| 0.00621118 0.0732944 2.6679e-06 2.55371e-07 2.718 ||| 0-2 ||| 161 374827 +del ||| euro barometer ||| 1 0.191033 2.6679e-06 2.22131e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| euro to ||| 0.0107527 0.191033 2.6679e-06 0.000281974 2.718 ||| 0-0 ||| 93 374827 +del ||| euro ||| 0.00080024 0.191033 2.13432e-05 0.0031733 2.718 ||| 0-0 ||| 9997 374827 +del ||| evaluation of the ||| 0.00207469 0.10196 2.6679e-06 1.51631e-06 2.718 ||| 0-1 0-2 ||| 482 374827 +del ||| evaluation of ||| 0.00128041 0.130625 2.6679e-06 4.36579e-06 2.718 ||| 0-1 ||| 781 374827 +del ||| even address the ||| 0.333333 0.0732944 2.6679e-06 1.61254e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| even in the ||| 0.0017762 0.0458111 2.6679e-06 5.69912e-06 2.718 ||| 0-1 0-2 ||| 563 374827 +del ||| even just now , ||| 1 0.0056007 2.6679e-06 4.90891e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| even just now ||| 1 0.0056007 2.6679e-06 4.11633e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| even just ||| 0.027027 0.0056007 2.6679e-06 1.99831e-07 2.718 ||| 0-1 ||| 37 374827 +del ||| even more under the ||| 0.5 0.0732944 2.6679e-06 1.73172e-10 2.718 ||| 0-3 ||| 2 374827 +del ||| even of the ||| 0.075 0.10196 8.00369e-06 6.23427e-05 2.718 ||| 0-1 0-2 ||| 40 374827 +del ||| even the ||| 0.00163577 0.0732944 8.00369e-06 0.000211342 2.718 ||| 0-1 ||| 1834 374827 +del ||| even though the ||| 0.00146199 0.0732944 2.6679e-06 5.24761e-08 2.718 ||| 0-2 ||| 684 374827 +del ||| even with a ||| 0.0322581 0.0045281 2.6679e-06 5.13336e-08 2.718 ||| 0-1 ||| 31 374827 +del ||| even with ||| 0.00227273 0.0045281 2.6679e-06 1.1581e-06 2.718 ||| 0-1 ||| 440 374827 +del ||| event for a ||| 1 0.0138653 2.6679e-06 4.97857e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| event for ||| 0.047619 0.0138653 2.6679e-06 1.12318e-06 2.718 ||| 0-1 ||| 21 374827 +del ||| event of a ||| 0.00315457 0.130625 2.6679e-06 1.36508e-06 2.718 ||| 0-1 ||| 317 374827 +del ||| event of any ||| 0.037037 0.130625 2.6679e-06 4.65704e-08 2.718 ||| 0-1 ||| 27 374827 +del ||| event of delays will include an obligation ||| 1 0.130625 2.6679e-06 2.1856e-23 2.718 ||| 0-1 ||| 1 374827 +del ||| event of delays will include an ||| 1 0.130625 2.6679e-06 1.06615e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| event of delays will include ||| 1 0.130625 2.6679e-06 2.39869e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| event of delays will ||| 1 0.130625 2.6679e-06 1.8117e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| event of delays ||| 0.0454545 0.130625 2.6679e-06 2.09416e-10 2.718 ||| 0-1 ||| 22 374827 +del ||| event of the ||| 0.0454545 0.10196 8.00369e-06 1.06961e-05 2.718 ||| 0-1 0-2 ||| 66 374827 +del ||| event of ||| 0.00210416 0.130625 1.06716e-05 3.07965e-05 2.718 ||| 0-1 ||| 1901 374827 +del ||| events of ||| 0.00160256 0.130625 2.6679e-06 2.14454e-05 2.718 ||| 0-1 ||| 624 374827 +del ||| ever new forms of ||| 1 0.130625 2.6679e-06 2.95512e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| ever-present people from the ||| 0.5 0.0911315 2.6679e-06 4.68462e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| ever-present people from ||| 0.5 0.0911315 2.6679e-06 7.6307e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| every one of us ||| 0.00826446 0.130625 2.6679e-06 5.76554e-10 2.718 ||| 0-2 ||| 121 374827 +del ||| every one of ||| 0.00299401 0.130625 2.6679e-06 2.0004e-07 2.718 ||| 0-2 ||| 334 374827 +del ||| every possible item ||| 1 0.229263 2.6679e-06 6.05919e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| every six months and the Action Plan ||| 1 0.0732944 2.6679e-06 7.99442e-27 2.718 ||| 0-4 ||| 1 374827 +del ||| every six months and the Action ||| 1 0.0732944 2.6679e-06 4.44135e-21 2.718 ||| 0-4 ||| 1 374827 +del ||| every six months and the ||| 1 0.0732944 2.6679e-06 4.93483e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| everyone that the ||| 0.027027 0.0732944 2.6679e-06 3.93194e-07 2.718 ||| 0-2 ||| 37 374827 +del ||| everything the European ||| 1 0.0400553 2.6679e-06 9.86547e-08 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| everything to be in place by ||| 0.5 0.0461582 2.6679e-06 7.75913e-14 2.718 ||| 0-5 ||| 2 374827 +del ||| evidence , of ||| 0.166667 0.130625 2.6679e-06 1.93833e-06 2.718 ||| 0-2 ||| 6 374827 +del ||| evidence from ||| 0.0212766 0.0911315 2.6679e-06 1.19419e-06 2.718 ||| 0-1 ||| 47 374827 +del ||| evidence of a ||| 0.0222222 0.130625 2.6679e-06 7.20458e-07 2.718 ||| 0-1 ||| 45 374827 +del ||| evidence of ||| 0.00122399 0.130625 2.6679e-06 1.62537e-05 2.718 ||| 0-1 ||| 817 374827 +del ||| evil genius of stagnant ||| 0.5 0.130625 2.6679e-06 1.99646e-18 2.718 ||| 0-2 ||| 2 374827 +del ||| evil genius of ||| 0.5 0.130625 2.6679e-06 4.99115e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| ex ||| 0.0106383 0.0040984 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 94 374827 +del ||| exactly the same way as ||| 0.0384615 0.0732944 2.6679e-06 6.17231e-13 2.718 ||| 0-1 ||| 26 374827 +del ||| exactly the same way ||| 0.0169492 0.0732944 2.6679e-06 6.04868e-11 2.718 ||| 0-1 ||| 59 374827 +del ||| exactly the same ||| 0.00207039 0.0732944 2.6679e-06 2.80603e-08 2.718 ||| 0-1 ||| 483 374827 +del ||| exactly the ||| 0.0031746 0.0732944 8.00369e-06 3.48705e-05 2.718 ||| 0-1 ||| 945 374827 +del ||| examined the ||| 0.00746269 0.0732944 2.6679e-06 6.11276e-06 2.718 ||| 0-1 ||| 134 374827 +del ||| example , a car body shop that ||| 1 0.120879 2.6679e-06 1.58136e-20 2.718 ||| 0-3 ||| 1 374827 +del ||| example , a car body shop ||| 1 0.120879 2.6679e-06 9.40078e-19 2.718 ||| 0-3 ||| 1 374827 +del ||| example , a car body ||| 1 0.120879 2.6679e-06 7.23137e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| example , a car ||| 1 0.120879 2.6679e-06 8.44786e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| example , from the ||| 0.0625 0.082213 2.6679e-06 2.61316e-07 2.718 ||| 0-2 0-3 ||| 16 374827 +del ||| example , of ||| 0.00392157 0.130625 2.6679e-06 1.02404e-05 2.718 ||| 0-2 ||| 255 374827 +del ||| example , the Netherlands has turned its ||| 1 0.0732944 2.6679e-06 7.68877e-20 2.718 ||| 0-2 ||| 1 374827 +del ||| example , the Netherlands has turned ||| 1 0.0732944 2.6679e-06 5.39676e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| example , the Netherlands has ||| 0.5 0.0732944 2.6679e-06 9.61989e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| example , the Netherlands ||| 0.2 0.0732944 2.6679e-06 1.86885e-10 2.718 ||| 0-2 ||| 5 374827 +del ||| example , the ||| 0.000596659 0.0732944 2.6679e-06 1.20571e-05 2.718 ||| 0-2 ||| 1676 374827 +del ||| example from ||| 0.0106383 0.0911315 2.6679e-06 6.30907e-06 2.718 ||| 0-1 ||| 94 374827 +del ||| example given the ||| 1 0.0732944 2.6679e-06 6.93874e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| example in the ||| 0.00333333 0.0458111 2.6679e-06 2.7264e-06 2.718 ||| 0-1 0-2 ||| 300 374827 +del ||| example of the ||| 0.00158228 0.10196 2.6679e-06 2.98241e-05 2.718 ||| 0-1 0-2 ||| 632 374827 +del ||| example of ||| 0.000674309 0.130625 5.33579e-06 8.58703e-05 2.718 ||| 0-1 ||| 2966 374827 +del ||| example when the ||| 0.166667 0.0732944 2.6679e-06 5.05417e-08 2.718 ||| 0-2 ||| 6 374827 +del ||| examples of ||| 0.00104384 0.130625 2.6679e-06 5.10325e-06 2.718 ||| 0-1 ||| 958 374827 +del ||| exceeded ||| 0.00178253 0.0031847 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 561 374827 +del ||| exceptional nature of the ||| 0.0714286 0.10196 2.6679e-06 8.83699e-11 2.718 ||| 0-2 0-3 ||| 14 374827 +del ||| excess of ||| 0.00408163 0.130625 2.6679e-06 3.18584e-06 2.718 ||| 0-1 ||| 245 374827 +del ||| exchange of ||| 0.000501756 0.130625 2.6679e-06 8.1711e-06 2.718 ||| 0-1 ||| 1993 374827 +del ||| excluded from the ||| 0.00911854 0.082213 8.00369e-06 8.65656e-08 2.718 ||| 0-1 0-2 ||| 329 374827 +del ||| exclusive to the ||| 0.1 0.0732944 2.6679e-06 2.00602e-07 2.718 ||| 0-2 ||| 10 374827 +del ||| excuse the ||| 0.0454545 0.0732944 2.6679e-06 6.39061e-06 2.718 ||| 0-1 ||| 22 374827 +del ||| executive of the ||| 0.0833333 0.10196 2.6679e-06 1.10649e-06 2.718 ||| 0-1 0-2 ||| 12 374827 +del ||| exemption ||| 0.000825764 0.0017123 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 1211 374827 +del ||| exercise of the ||| 0.0263158 0.130625 5.33579e-06 1.12099e-06 2.718 ||| 0-1 ||| 76 374827 +del ||| exercise of ||| 0.00222222 0.130625 2.6679e-06 1.82596e-05 2.718 ||| 0-1 ||| 450 374827 +del ||| exercised by ||| 0.00909091 0.0461582 2.6679e-06 2.50632e-07 2.718 ||| 0-1 ||| 110 374827 +del ||| exercised the ||| 0.125 0.0732944 2.6679e-06 5.38339e-06 2.718 ||| 0-1 ||| 8 374827 +del ||| exerted by the ||| 0.0731707 0.0597263 8.00369e-06 6.68307e-08 2.718 ||| 0-1 0-2 ||| 41 374827 +del ||| exhaust those of their ||| 0.5 0.130625 2.6679e-06 5.44682e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| exhaust those of ||| 0.5 0.130625 2.6679e-06 4.69918e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| exist in the ||| 0.00543478 0.0732944 2.6679e-06 6.84683e-07 2.718 ||| 0-2 ||| 184 374827 +del ||| exist throughout the world ||| 0.5 0.0732944 2.6679e-06 2.90744e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| exist throughout the ||| 0.142857 0.0732944 2.6679e-06 1.27631e-09 2.718 ||| 0-2 ||| 7 374827 +del ||| exist within the ||| 0.025641 0.0732944 2.6679e-06 6.68865e-09 2.718 ||| 0-2 ||| 39 374827 +del ||| existence of the ||| 0.00411523 0.10196 2.6679e-06 7.07951e-06 2.718 ||| 0-1 0-2 ||| 243 374827 +del ||| existence of ||| 0.000752445 0.130625 2.6679e-06 2.03835e-05 2.718 ||| 0-1 ||| 1329 374827 +del ||| existing in the ||| 0.0227273 0.0732944 2.6679e-06 5.85809e-07 2.718 ||| 0-2 ||| 44 374827 +del ||| existing rural ||| 0.333333 0.0113162 2.6679e-06 8.69164e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| exists as to the ||| 1 0.0732944 2.6679e-06 1.75729e-08 2.718 ||| 0-3 ||| 1 374827 +del ||| exists between ||| 0.0075188 0.0028314 2.6679e-06 1.13609e-08 2.718 ||| 0-1 ||| 133 374827 +del ||| exists for the ||| 0.0714286 0.0435798 2.6679e-06 2.085e-07 2.718 ||| 0-1 0-2 ||| 14 374827 +del ||| exists in the ||| 0.0206186 0.0458111 5.33579e-06 5.22615e-07 2.718 ||| 0-1 0-2 ||| 97 374827 +del ||| expected the ||| 0.0357143 0.0732944 2.6679e-06 1.85119e-05 2.718 ||| 0-1 ||| 28 374827 +del ||| expects a great deal of good to ||| 1 0.130625 2.6679e-06 3.61961e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| expects a great deal of good ||| 1 0.130625 2.6679e-06 4.07347e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| expects a great deal of ||| 1 0.130625 2.6679e-06 7.85475e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| expenditure ||| 0.000521014 0.0188437 8.00369e-06 0.0001734 2.718 ||| 0-0 ||| 5758 374827 +del ||| expense of ||| 0.00326797 0.130625 5.33579e-06 5.72272e-06 2.718 ||| 0-1 ||| 612 374827 +del ||| expenses of ||| 0.0454545 0.130625 2.6679e-06 1.71092e-06 2.718 ||| 0-1 ||| 22 374827 +del ||| experience gained from ||| 0.0263158 0.0911315 2.6679e-06 4.74745e-11 2.718 ||| 0-2 ||| 38 374827 +del ||| experienced in gaining ||| 1 0.0183279 2.6679e-06 7.59778e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| experienced in ||| 0.00598802 0.0183279 2.6679e-06 6.60677e-07 2.718 ||| 0-1 ||| 167 374827 +del ||| experts from the ||| 0.0106383 0.082213 2.6679e-06 1.18934e-07 2.718 ||| 0-1 0-2 ||| 94 374827 +del ||| explain the ||| 0.00296736 0.0732944 2.6679e-06 9.13441e-06 2.718 ||| 0-1 ||| 337 374827 +del ||| explanation of ||| 0.00125945 0.130625 2.6679e-06 5.72272e-06 2.718 ||| 0-1 ||| 794 374827 +del ||| explanatory statement by ||| 0.5 0.0461582 2.6679e-06 8.67348e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| explanatory statement in the ||| 0.125 0.0458111 2.6679e-06 5.02385e-12 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| exploitation of that ||| 0.25 0.130625 2.6679e-06 4.6644e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| exploitation of ||| 0.00263852 0.130625 5.33579e-06 2.77286e-06 2.718 ||| 0-1 ||| 758 374827 +del ||| explosion of ||| 0.0172414 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-1 ||| 58 374827 +del ||| expressed by the ||| 0.0107759 0.0597263 1.33395e-05 5.45878e-07 2.718 ||| 0-1 0-2 ||| 464 374827 +del ||| expressed by ||| 0.00895037 0.0461582 2.93469e-05 1.5717e-06 2.718 ||| 0-1 ||| 1229 374827 +del ||| expressed in the ||| 0.00221729 0.0458111 2.6679e-06 9.10361e-07 2.718 ||| 0-1 0-2 ||| 451 374827 +del ||| expressed in ||| 0.00194553 0.0183279 5.33579e-06 2.62113e-06 2.718 ||| 0-1 ||| 1028 374827 +del ||| extend the ' ||| 1 0.0513318 2.6679e-06 7.12407e-08 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| extending the ||| 0.000910747 0.0732944 2.6679e-06 7.11997e-06 2.718 ||| 0-1 ||| 1098 374827 +del ||| extension of the ||| 0.00142653 0.10196 2.6679e-06 1.73146e-06 2.718 ||| 0-1 0-2 ||| 701 374827 +del ||| extent , bypassed the ||| 0.5 0.0732944 2.6679e-06 8.75681e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| extent could the ||| 0.142857 0.0732944 2.6679e-06 4.74688e-08 2.718 ||| 0-2 ||| 7 374827 +del ||| extent of the ||| 0.00261097 0.10196 2.6679e-06 1.96915e-05 2.718 ||| 0-1 0-2 ||| 383 374827 +del ||| extent on the ||| 0.0263158 0.0732944 2.6679e-06 4.46652e-07 2.718 ||| 0-2 ||| 38 374827 +del ||| extent to which the ||| 0.00952381 0.0732944 2.6679e-06 5.0387e-08 2.718 ||| 0-3 ||| 105 374827 +del ||| external ||| 0.000129299 0.0001406 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 7734 374827 +del ||| extinction of ||| 0.0285714 0.130625 2.6679e-06 2.0649e-07 2.718 ||| 0-1 ||| 35 374827 +del ||| extract from the ||| 0.166667 0.082213 2.6679e-06 2.18296e-08 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| extracted from the ||| 0.0322581 0.082213 2.6679e-06 1.35494e-08 2.718 ||| 0-1 0-2 ||| 31 374827 +del ||| eye to eye with ||| 0.0833333 0.0045281 2.6679e-06 5.47528e-13 2.718 ||| 0-3 ||| 12 374827 +del ||| eye with ||| 0.0357143 0.0045281 2.6679e-06 1.08292e-07 2.718 ||| 0-1 ||| 28 374827 +del ||| eyes of the Russian ||| 0.5 0.130625 2.6679e-06 1.97434e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| eyes of the ||| 0.004329 0.130625 2.6679e-06 1.05579e-06 2.718 ||| 0-1 ||| 231 374827 +del ||| eyes of ||| 0.00241546 0.130625 2.6679e-06 1.71977e-05 2.718 ||| 0-1 ||| 414 374827 +del ||| eyes opened to the ||| 1 0.0732944 2.6679e-06 4.66005e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| f ||| 0.111111 0.136364 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 9 374827 +del ||| face of it ||| 0.03125 0.130625 2.6679e-06 8.7762e-07 2.718 ||| 0-1 ||| 32 374827 +del ||| face of the ||| 0.00560224 0.130625 5.33579e-06 3.02975e-06 2.718 ||| 0-1 ||| 357 374827 +del ||| face of ||| 0.00274223 0.130625 8.00369e-06 4.93511e-05 2.718 ||| 0-1 ||| 1094 374827 +del ||| face value the ||| 0.5 0.0732944 2.6679e-06 5.1017e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| faced by ||| 0.00149925 0.0461582 2.6679e-06 1.02355e-06 2.718 ||| 0-1 ||| 667 374827 +del ||| facilitate the ||| 0.0011325 0.0732944 2.6679e-06 8.37031e-06 2.718 ||| 0-1 ||| 883 374827 +del ||| facing the ||| 0.00135135 0.0732944 2.6679e-06 1.85119e-05 2.718 ||| 0-1 ||| 740 374827 +del ||| facing their ||| 0.142857 0.0012173 2.6679e-06 8.46937e-09 2.718 ||| 0-1 ||| 7 374827 +del ||| fact , the ||| 0.0025413 0.0732944 5.33579e-06 0.000121329 2.718 ||| 0-2 ||| 787 374827 +del ||| fact exist throughout the world ||| 0.5 0.0732944 2.6679e-06 8.51676e-16 2.718 ||| 0-3 ||| 2 374827 +del ||| fact exist throughout the ||| 0.5 0.0732944 2.6679e-06 3.7387e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| fact of the ||| 0.0307692 0.10196 5.33579e-06 0.000300116 2.718 ||| 0-1 0-2 ||| 65 374827 +del ||| fact of ||| 0.00406504 0.130625 2.6679e-06 0.000864101 2.718 ||| 0-1 ||| 246 374827 +del ||| fact that I sit on the ||| 1 0.0436809 2.6679e-06 4.48787e-14 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| fact that the president of ||| 1 0.130625 2.6679e-06 7.04968e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| fact that the ||| 0.0033195 0.0732944 4.26864e-05 1.71142e-05 2.718 ||| 0-2 ||| 4820 374827 +del ||| fact the ||| 0.00869565 0.0732944 8.00369e-06 0.00101739 2.718 ||| 0-1 ||| 345 374827 +del ||| factor , of ||| 0.5 0.130625 2.6679e-06 1.70967e-06 2.718 ||| 0-2 ||| 2 374827 +del ||| factor in the ||| 0.0175439 0.0458111 2.6679e-06 4.55181e-07 2.718 ||| 0-1 0-2 ||| 57 374827 +del ||| fails to address the ||| 0.0434783 0.0732944 2.6679e-06 3.55569e-11 2.718 ||| 0-3 ||| 23 374827 +del ||| failure of the ||| 0.00845666 0.10196 1.06716e-05 4.79481e-06 2.718 ||| 0-1 0-2 ||| 473 374827 +del ||| failure of ||| 0.00129366 0.130625 2.6679e-06 1.38053e-05 2.718 ||| 0-1 ||| 773 374827 +del ||| failure to act by the ||| 1 0.0461582 2.6679e-06 7.01377e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| failure to act by ||| 0.333333 0.0461582 2.6679e-06 1.14246e-11 2.718 ||| 0-3 ||| 3 374827 +del ||| failure to show respect for the ||| 1 0.0435798 2.6679e-06 9.00083e-16 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| fair crack of the ||| 0.5 0.10196 2.6679e-06 2.49432e-11 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| faith for ||| 0.333333 0.0138653 2.6679e-06 1.59224e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| fall from the ||| 0.142857 0.0911315 2.6679e-06 1.27334e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| fall from ||| 0.0555556 0.0911315 2.6679e-06 2.07413e-06 2.718 ||| 0-1 ||| 18 374827 +del ||| fall in ||| 0.00257732 0.0183279 2.6679e-06 2.58068e-06 2.718 ||| 0-1 ||| 388 374827 +del ||| fall short of what is required ||| 0.333333 0.130625 2.6679e-06 2.77984e-17 2.718 ||| 0-2 ||| 3 374827 +del ||| fall short of what is ||| 0.25 0.130625 2.6679e-06 1.75163e-13 2.718 ||| 0-2 ||| 4 374827 +del ||| fall short of what ||| 0.1 0.130625 2.6679e-06 5.58892e-12 2.718 ||| 0-2 ||| 10 374827 +del ||| fall short of ||| 0.0169492 0.130625 2.6679e-06 3.98327e-09 2.718 ||| 0-2 ||| 59 374827 +del ||| fall to the ||| 0.030303 0.0732944 2.6679e-06 2.95348e-06 2.718 ||| 0-2 ||| 33 374827 +del ||| fall within the ||| 0.00735294 0.0072058 5.33579e-06 2.45407e-09 2.718 ||| 0-1 ||| 272 374827 +del ||| fall within ||| 0.00239234 0.0072058 2.6679e-06 3.99739e-08 2.718 ||| 0-1 ||| 418 374827 +del ||| fall ||| 0.000375516 0.0007229 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 2663 374827 +del ||| fallen from the ||| 0.25 0.082213 2.6679e-06 1.13664e-07 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| falling levels of ||| 0.5 0.130625 2.6679e-06 9.99836e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| falls essentially within the ||| 1 0.0732944 2.6679e-06 4.34166e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| falls to the ||| 0.0123457 0.0732944 2.6679e-06 9.65976e-07 2.718 ||| 0-2 ||| 81 374827 +del ||| falsification of the ||| 0.0909091 0.10196 2.6679e-06 1.12698e-07 2.718 ||| 0-1 0-2 ||| 11 374827 +del ||| famous person is ||| 1 0.0013245 2.6679e-06 5.24775e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| famous person ||| 1 0.0013245 2.6679e-06 1.6744e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| famous ||| 0.00134589 0.0013245 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 743 374827 +del ||| far as the ||| 0.00681818 0.0732944 1.60074e-05 2.41959e-06 2.718 ||| 0-2 ||| 880 374827 +del ||| far from the ||| 0.00862069 0.082213 2.6679e-06 5.13899e-06 2.718 ||| 0-1 0-2 ||| 116 374827 +del ||| far from ||| 0.000642261 0.0911315 2.6679e-06 1.47963e-05 2.718 ||| 0-1 ||| 1557 374827 +del ||| far more than ||| 0.00909091 0.0313352 2.6679e-06 3.647e-09 2.718 ||| 0-2 ||| 110 374827 +del ||| far removed from the ||| 0.0149254 0.082213 2.6679e-06 2.32796e-10 2.718 ||| 0-2 0-3 ||| 67 374827 +del ||| far the ||| 0.00344828 0.0732944 2.6679e-06 0.000237112 2.718 ||| 0-1 ||| 290 374827 +del ||| far under ||| 0.25 0.014966 2.6679e-06 5.42473e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| farmers to go over ||| 0.5 0.006517 2.6679e-06 6.68456e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| farming to the ||| 0.333333 0.0732944 2.6679e-06 4.56755e-07 2.718 ||| 0-2 ||| 3 374827 +del ||| fast track of the ||| 1 0.10196 2.6679e-06 7.46514e-11 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| fate of the ||| 0.00505051 0.10196 2.6679e-06 8.81097e-07 2.718 ||| 0-1 0-2 ||| 198 374827 +del ||| fault of the ||| 0.0215054 0.130625 5.33579e-06 2.86133e-07 2.718 ||| 0-1 ||| 93 374827 +del ||| fault of ||| 0.0100503 0.130625 5.33579e-06 4.66077e-06 2.718 ||| 0-1 ||| 199 374827 +del ||| favour in order for the ||| 1 0.0732944 2.6679e-06 9.84438e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| favour of including ||| 0.0277778 0.130625 2.6679e-06 9.96266e-09 2.718 ||| 0-1 ||| 36 374827 +del ||| favour of nuclear ||| 0.5 0.130625 2.6679e-06 3.71214e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| favour of setting ||| 0.125 0.130625 2.6679e-06 9.06564e-09 2.718 ||| 0-1 ||| 8 374827 +del ||| favour of the ||| 0.00053918 0.10196 8.00369e-06 3.31436e-05 2.718 ||| 0-1 0-2 ||| 5564 374827 +del ||| favour of ||| 0.00165666 0.130625 6.40295e-05 9.54278e-05 2.718 ||| 0-1 ||| 14487 374827 +del ||| favoured by ||| 0.0392157 0.0461582 5.33579e-06 8.73169e-08 2.718 ||| 0-1 ||| 51 374827 +del ||| feature in the ||| 0.0188679 0.0458111 2.6679e-06 2.52878e-07 2.718 ||| 0-1 0-2 ||| 53 374827 +del ||| feature of the ||| 0.03125 0.10196 5.33579e-06 2.76623e-06 2.718 ||| 0-1 0-2 ||| 64 374827 +del ||| feature of ||| 0.0078125 0.130625 2.6679e-06 7.96461e-06 2.718 ||| 0-1 ||| 128 374827 +del ||| features of the ||| 0.015873 0.10196 2.6679e-06 1.88514e-06 2.718 ||| 0-1 0-2 ||| 63 374827 +del ||| fed to ||| 0.027027 0.0006066 2.6679e-06 1.10432e-08 2.718 ||| 0-1 ||| 37 374827 +del ||| feel of ||| 0.142857 0.130625 2.6679e-06 4.9882e-05 2.718 ||| 0-1 ||| 7 374827 +del ||| feel so strongly about as the ||| 1 0.0732944 2.6679e-06 9.21512e-17 2.718 ||| 0-5 ||| 1 374827 +del ||| feel the need ||| 0.0344828 0.0732944 2.6679e-06 5.38505e-08 2.718 ||| 0-1 ||| 29 374827 +del ||| feel the ||| 0.010582 0.0732944 5.33579e-06 5.87311e-05 2.718 ||| 0-1 ||| 189 374827 +del ||| feeling ||| 0.000474834 0.0005618 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 2106 374827 +del ||| feelings of ||| 0.00487805 0.130625 2.6679e-06 2.77286e-06 2.718 ||| 0-1 ||| 205 374827 +del ||| felt by the ||| 0.0625 0.0597263 5.33579e-06 3.21237e-07 2.718 ||| 0-1 0-2 ||| 32 374827 +del ||| female ||| 0.003386 0.0047651 8.00369e-06 9.2e-06 2.718 ||| 0-0 ||| 886 374827 +del ||| feverish activity of the Delors Commission ||| 0.5 0.0732944 2.6679e-06 2.89657e-22 2.718 ||| 0-3 ||| 2 374827 +del ||| feverish activity of the Delors ||| 0.5 0.0732944 2.6679e-06 4.95903e-19 2.718 ||| 0-3 ||| 2 374827 +del ||| feverish activity of the ||| 0.5 0.0732944 2.6679e-06 7.08433e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| field of the ||| 0.00568182 0.10196 2.6679e-06 1.49684e-05 2.718 ||| 0-1 0-2 ||| 176 374827 +del ||| field of ||| 0.00360866 0.130625 4.80222e-05 4.30974e-05 2.718 ||| 0-1 ||| 4988 374827 +del ||| field ||| 0.00029337 0.0002803 8.00369e-06 3.9e-06 2.718 ||| 0-0 ||| 10226 374827 +del ||| fields covered by the ||| 0.2 0.0597263 2.6679e-06 1.49182e-11 2.718 ||| 0-2 0-3 ||| 5 374827 +del ||| fields covered by ||| 0.111111 0.0461582 2.6679e-06 4.29528e-11 2.718 ||| 0-2 ||| 9 374827 +del ||| fight against ||| 0.000133743 0.0025296 2.6679e-06 1.01329e-08 2.718 ||| 0-1 ||| 7477 374827 +del ||| fighters who ||| 1 0.0084034 2.6679e-06 2.2932e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| fighters ||| 0.00581395 0.0084034 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 172 374827 +del ||| figure in the ||| 0.0384615 0.0183279 2.6679e-06 1.26316e-07 2.718 ||| 0-1 ||| 26 374827 +del ||| figure in ||| 0.0117647 0.0183279 2.6679e-06 2.05754e-06 2.718 ||| 0-1 ||| 85 374827 +del ||| figure of ||| 0.0103806 0.130625 8.00369e-06 2.25074e-05 2.718 ||| 0-1 ||| 289 374827 +del ||| figures from the ||| 0.030303 0.082213 2.6679e-06 3.47015e-07 2.718 ||| 0-1 0-2 ||| 33 374827 +del ||| filed in ||| 0.1 0.0183279 2.6679e-06 7.82026e-08 2.718 ||| 0-1 ||| 10 374827 +del ||| filing the data ||| 1 0.0732944 2.6679e-06 1.10134e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| filing the ||| 1 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| filter down ||| 0.5 0.0086957 2.6679e-06 9.0753e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| filter ||| 0.0138889 0.0086957 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 72 374827 +del ||| final decisive role of the ||| 1 0.0732944 2.6679e-06 3.90187e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| final details of ||| 1 0.130625 2.6679e-06 6.23455e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| final shape of the ||| 0.125 0.130625 2.6679e-06 8.3597e-11 2.718 ||| 0-2 ||| 8 374827 +del ||| final shape of ||| 0.125 0.130625 2.6679e-06 1.3617e-09 2.718 ||| 0-2 ||| 8 374827 +del ||| final solution for ||| 0.5 0.0138653 2.6679e-06 5.58189e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| financed by the ||| 0.0045045 0.0461582 2.6679e-06 7.54447e-09 2.718 ||| 0-1 ||| 222 374827 +del ||| financed by ||| 0.00269542 0.0461582 2.6679e-06 1.2289e-07 2.718 ||| 0-1 ||| 371 374827 +del ||| financial market ||| 0.00165289 0.0273989 2.6679e-06 1.81548e-07 2.718 ||| 0-1 ||| 605 374827 +del ||| financial threshold ||| 0.5 0.0043197 2.6679e-06 9.638e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| financing the ||| 0.00340136 0.0732944 2.6679e-06 5.00135e-06 2.718 ||| 0-1 ||| 294 374827 +del ||| find a legal basis for a European ||| 1 0.0138653 2.6679e-06 1.81081e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| find a legal basis for a ||| 1 0.0138653 2.6679e-06 5.41527e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| find a legal basis for ||| 0.25 0.0138653 2.6679e-06 1.2217e-14 2.718 ||| 0-4 ||| 4 374827 +del ||| find the ||| 0.00111359 0.0732944 2.6679e-06 0.000115621 2.718 ||| 0-1 ||| 898 374827 +del ||| finding of the ||| 0.142857 0.10196 2.6679e-06 5.46075e-06 2.718 ||| 0-1 0-2 ||| 7 374827 +del ||| finger of blame ||| 0.1 0.130625 2.6679e-06 1.23564e-10 2.718 ||| 0-1 ||| 10 374827 +del ||| finger of ||| 0.166667 0.130625 2.6679e-06 5.19174e-06 2.718 ||| 0-1 ||| 6 374827 +del ||| firm in the ||| 0.05 0.0458111 2.6679e-06 3.43727e-07 2.718 ||| 0-1 0-2 ||| 20 374827 +del ||| first Kok report , the report of ||| 1 0.0732944 2.6679e-06 8.14765e-20 2.718 ||| 0-4 ||| 1 374827 +del ||| first Kok report , the report ||| 1 0.0732944 2.6679e-06 1.49872e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| first Kok report , the ||| 1 0.0732944 2.6679e-06 3.65631e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| first commit acts of ||| 0.5 0.130625 2.6679e-06 2.15077e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| first of ||| 0.000762002 0.130625 8.00369e-06 0.00015882 2.718 ||| 0-1 ||| 3937 374827 +del ||| first phase of the ||| 0.0217391 0.10196 2.6679e-06 1.29076e-09 2.718 ||| 0-2 0-3 ||| 46 374827 +del ||| first point of ||| 0.0344828 0.130625 2.6679e-06 1.38936e-07 2.718 ||| 0-2 ||| 29 374827 +del ||| first principle of the ||| 0.5 0.10196 2.6679e-06 8.45614e-09 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| first took up ||| 0.5 0.0020886 2.6679e-06 1.50172e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| firstly from the ||| 1 0.082213 2.6679e-06 3.79383e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| fisheries ||| 0.000201288 0.0004196 5.33579e-06 3.9e-06 2.718 ||| 0-0 ||| 9936 374827 +del ||| fix of ||| 1 0.130625 2.6679e-06 1.26844e-06 2.718 ||| 0-1 ||| 1 374827 +del ||| fixed locations ||| 0.333333 0.0045045 2.6679e-06 2.376e-11 2.718 ||| 0-0 ||| 3 374827 +del ||| fixed ||| 0.00202224 0.0045045 5.33579e-06 6.6e-06 2.718 ||| 0-0 ||| 989 374827 +del ||| flag ||| 0.00109529 0.0163934 2.6679e-06 1.84e-05 2.718 ||| 0-0 ||| 913 374827 +del ||| flame ||| 0.00925926 0.0262009 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 108 374827 +del ||| flames of ||| 0.0243902 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-1 ||| 41 374827 +del ||| flee the ||| 0.0434783 0.0732944 2.6679e-06 1.25034e-06 2.718 ||| 0-1 ||| 23 374827 +del ||| fleet ' s ||| 0.5 0.0987045 2.6679e-06 4.47614e-10 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| fleets in the ||| 0.0769231 0.0458111 2.6679e-06 4.40195e-08 2.718 ||| 0-1 0-2 ||| 13 374827 +del ||| flexible regime of ||| 1 0.130625 2.6679e-06 1.16047e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| flood ||| 0.00533333 0.0065531 5.33579e-06 6.6e-06 2.718 ||| 0-0 ||| 375 374827 +del ||| flow of venture ||| 1 0.130625 2.6679e-06 5.52213e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| flow of ||| 0.00201613 0.130625 2.6679e-06 5.30974e-06 2.718 ||| 0-1 ||| 496 374827 +del ||| flows of ||| 0.00925926 0.130625 2.6679e-06 3.06785e-06 2.718 ||| 0-1 ||| 108 374827 +del ||| fluctuations ||| 0.00315457 0.0075472 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 317 374827 +del ||| focus of attention ||| 0.0181818 0.130625 2.6679e-06 5.96597e-09 2.718 ||| 0-1 ||| 55 374827 +del ||| focus of ||| 0.00511509 0.130625 5.33579e-06 2.28319e-05 2.718 ||| 0-1 ||| 391 374827 +del ||| focus on ||| 0.000375657 0.0140673 2.6679e-06 7.591e-07 2.718 ||| 0-1 ||| 2662 374827 +del ||| focused debates between the ||| 1 0.0028314 2.6679e-06 4.82213e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| focused debates between ||| 1 0.0028314 2.6679e-06 7.85468e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| foetal alcohol ||| 0.142857 0.134328 2.6679e-06 1.6992e-10 2.718 ||| 0-0 ||| 7 374827 +del ||| foetal ||| 0.04 0.134328 2.6679e-06 1.18e-05 2.718 ||| 0-0 ||| 25 374827 +del ||| follow-up of the ||| 0.0192308 0.10196 2.6679e-06 1.47532e-06 2.718 ||| 0-1 0-2 ||| 52 374827 +del ||| followed by ||| 0.00230947 0.0461582 5.33579e-06 1.15776e-06 2.718 ||| 0-1 ||| 866 374827 +del ||| following text should be added to the ||| 1 0.0732944 2.6679e-06 1.95113e-18 2.718 ||| 0-6 ||| 1 374827 +del ||| following the ||| 0.00110914 0.0732944 1.33395e-05 4.4387e-05 2.718 ||| 0-1 ||| 4508 374827 +del ||| following ||| 6.259e-05 0.0004669 2.6679e-06 9.2e-06 2.718 ||| 0-0 ||| 15977 374827 +del ||| follows that a number of amendments to ||| 1 0.130625 2.6679e-06 3.9033e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| follows that a number of amendments ||| 1 0.130625 2.6679e-06 4.39273e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| follows that a number of ||| 1 0.130625 2.6679e-06 5.75718e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| follows the ||| 0.00625 0.0732944 2.6679e-06 1.8373e-05 2.718 ||| 0-1 ||| 160 374827 +del ||| football ||| 0.000919963 0.0289948 2.6679e-06 5.91e-05 2.718 ||| 0-0 ||| 1087 374827 +del ||| for , the ||| 0.08 0.0435798 5.33579e-06 0.000445603 2.718 ||| 0-0 0-2 ||| 25 374827 +del ||| for , ||| 0.00673401 0.0138653 1.60074e-05 0.00128299 2.718 ||| 0-0 ||| 891 374827 +del ||| for 2000 ||| 0.00900901 0.0138653 2.6679e-06 3.09842e-07 2.718 ||| 0-0 ||| 111 374827 +del ||| for Darfur ||| 0.0666667 0.0138653 2.6679e-06 1.50618e-08 2.718 ||| 0-0 ||| 15 374827 +del ||| for Europe ||| 0.000232288 0.0138653 2.6679e-06 5.44375e-06 2.718 ||| 0-0 ||| 4305 374827 +del ||| for European ||| 0.00558659 0.0138653 2.6679e-06 3.5975e-05 2.718 ||| 0-0 ||| 179 374827 +del ||| for Member States ||| 0.00121359 0.0138653 2.6679e-06 2.6455e-09 2.718 ||| 0-0 ||| 824 374827 +del ||| for Member ||| 0.0294118 0.0138653 2.6679e-06 5.5438e-06 2.718 ||| 0-0 ||| 34 374827 +del ||| for Members of the ||| 0.0102041 0.10196 2.6679e-06 1.16145e-07 2.718 ||| 0-2 0-3 ||| 98 374827 +del ||| for Monitoring ||| 1 0.0287149 1.06716e-05 3.10918e-07 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| for Parliament ||| 0.000728332 0.0138653 2.6679e-06 6.17532e-06 2.718 ||| 0-0 ||| 1373 374827 +del ||| for South ||| 0.1 0.101666 8.00369e-06 1.32683e-05 2.718 ||| 0-0 0-1 ||| 30 374827 +del ||| for a ' ||| 0.0144928 0.0138653 2.6679e-06 1.63802e-06 2.718 ||| 0-0 ||| 69 374827 +del ||| for a Europe of ||| 0.0041841 0.0138653 2.6679e-06 1.3118e-08 2.718 ||| 0-0 ||| 239 374827 +del ||| for a Europe ||| 0.00311526 0.0138653 2.6679e-06 2.41299e-07 2.718 ||| 0-0 ||| 321 374827 +del ||| for a European expulsion law ||| 1 0.0138653 2.6679e-06 3.09245e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| for a European expulsion ||| 1 0.0138653 2.6679e-06 1.75408e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| for a European ||| 0.0131579 0.0138653 2.6679e-06 1.59462e-06 2.718 ||| 0-0 ||| 76 374827 +del ||| for a case not to continue , ||| 1 0.0138653 2.6679e-06 4.2713e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| for a case not to continue ||| 1 0.0138653 2.6679e-06 3.58166e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| for a case not to ||| 1 0.0138653 2.6679e-06 1.54782e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| for a case not ||| 1 0.0138653 2.6679e-06 1.7419e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| for a case ||| 0.2 0.0138653 2.6679e-06 5.10208e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| for a clear division of ||| 0.5 0.0722451 2.6679e-06 4.21465e-13 2.718 ||| 0-0 0-4 ||| 2 374827 +del ||| for a company ||| 0.05 0.0138653 2.6679e-06 1.80259e-08 2.718 ||| 0-0 ||| 20 374827 +del ||| for a decision of the ||| 0.0138889 0.10196 2.6679e-06 5.49027e-09 2.718 ||| 0-3 0-4 ||| 72 374827 +del ||| for a discussion of ||| 0.5 0.0138653 2.6679e-06 2.2399e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| for a discussion ||| 0.04 0.0138653 2.6679e-06 4.1202e-08 2.718 ||| 0-0 ||| 25 374827 +del ||| for a long time into the ||| 1 0.0435798 2.6679e-06 9.44427e-14 2.718 ||| 0-0 0-5 ||| 1 374827 +del ||| for a particular ||| 0.037037 0.0138653 2.6679e-06 2.93469e-07 2.718 ||| 0-0 ||| 27 374827 +del ||| for a permanent ||| 0.333333 0.0138653 2.6679e-06 9.63287e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| for a ride ||| 0.0357143 0.0138653 2.6679e-06 2.76587e-09 2.718 ||| 0-0 ||| 28 374827 +del ||| for a very high proportion ||| 1 0.0138653 2.6679e-06 7.48149e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| for a very high ||| 0.5 0.0138653 2.6679e-06 2.47731e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| for a very ||| 0.0121951 0.0138653 2.6679e-06 1.65929e-06 2.718 ||| 0-0 ||| 82 374827 +del ||| for a ||| 0.00395387 0.0138653 0.000288133 0.000476875 2.718 ||| 0-0 ||| 27315 374827 +del ||| for achieving ||| 0.00161031 0.0138653 2.6679e-06 7.12206e-07 2.718 ||| 0-0 ||| 621 374827 +del ||| for addressing the ||| 0.037037 0.0435798 2.6679e-06 6.72581e-08 2.718 ||| 0-0 0-2 ||| 27 374827 +del ||| for all consumers ||| 0.0344828 0.0138653 2.6679e-06 1.90133e-09 2.718 ||| 0-0 ||| 29 374827 +del ||| for all of those either ||| 1 0.130625 2.6679e-06 6.71643e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| for all of those ||| 0.0526316 0.130625 2.6679e-06 7.75749e-09 2.718 ||| 0-2 ||| 19 374827 +del ||| for all of ||| 0.00127226 0.130625 2.6679e-06 1.07133e-05 2.718 ||| 0-2 ||| 786 374827 +del ||| for all the ||| 0.00152905 0.0435798 5.33579e-06 1.76568e-05 2.718 ||| 0-0 0-2 ||| 1308 374827 +del ||| for all ||| 0.000221976 0.0138653 5.33579e-06 5.08377e-05 2.718 ||| 0-0 ||| 9010 374827 +del ||| for an ||| 0.0031348 0.0138653 2.93469e-05 4.78179e-05 2.718 ||| 0-0 ||| 3509 374827 +del ||| for and ||| 0.00260417 0.0138653 2.6679e-06 0.000134759 2.718 ||| 0-0 ||| 384 374827 +del ||| for any ||| 0.000957854 0.0138653 2.6679e-06 1.62689e-05 2.718 ||| 0-0 ||| 1044 374827 +del ||| for anything other than ||| 0.142857 0.0313352 2.6679e-06 3.65436e-12 2.718 ||| 0-3 ||| 7 374827 +del ||| for approximately ||| 0.025 0.0138653 2.6679e-06 1.01129e-07 2.718 ||| 0-0 ||| 40 374827 +del ||| for asking ||| 0.0232558 0.0138653 2.6679e-06 4.64763e-07 2.718 ||| 0-0 ||| 43 374827 +del ||| for assent . so Parliament is being ||| 1 0.0181517 2.6679e-06 1.70906e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| for assent . so Parliament is ||| 1 0.0181517 2.6679e-06 6.00555e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| for assent . so Parliament ||| 1 0.0181517 2.6679e-06 1.91619e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| for both his ||| 0.25 0.0138653 2.6679e-06 5.3553e-09 2.718 ||| 0-0 ||| 4 374827 +del ||| for both ||| 0.00159236 0.0138653 5.33579e-06 1.78213e-05 2.718 ||| 0-0 ||| 1256 374827 +del ||| for by ||| 0.0135135 0.0300118 1.06716e-05 0.000173961 2.718 ||| 0-0 0-1 ||| 296 374827 +del ||| for central ||| 0.333333 0.0138653 2.6679e-06 2.93704e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| for children 's ||| 0.5 0.169811 2.6679e-06 2.3007e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| for consideration by a ||| 1 0.0300118 2.6679e-06 8.32785e-10 2.718 ||| 0-0 0-2 ||| 1 374827 +del ||| for consideration by ||| 0.0666667 0.0300118 2.6679e-06 1.87878e-08 2.718 ||| 0-0 0-2 ||| 15 374827 +del ||| for consumer ||| 0.05 0.0556117 2.6679e-06 2.44743e-05 2.718 ||| 0-0 0-1 ||| 20 374827 +del ||| for cost ||| 0.5 0.0138653 2.6679e-06 8.90796e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| for criminal proceedings ||| 0.142857 0.0138653 2.6679e-06 1.62851e-11 2.718 ||| 0-0 ||| 7 374827 +del ||| for criminal ||| 0.0357143 0.0138653 2.6679e-06 4.48625e-07 2.718 ||| 0-0 ||| 28 374827 +del ||| for decent ||| 0.5 0.0138653 2.6679e-06 1.11887e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| for developing ||| 0.00208333 0.0138653 2.6679e-06 5.84181e-07 2.718 ||| 0-0 ||| 480 374827 +del ||| for each ||| 0.000938967 0.0138653 2.6679e-06 3.01988e-06 2.718 ||| 0-0 ||| 1065 374827 +del ||| for example , the Netherlands has turned ||| 1 0.0732944 2.6679e-06 4.14779e-19 2.718 ||| 0-3 ||| 1 374827 +del ||| for example , the Netherlands has ||| 0.5 0.0732944 2.6679e-06 7.39356e-15 2.718 ||| 0-3 ||| 2 374827 +del ||| for example , the Netherlands ||| 0.2 0.0732944 2.6679e-06 1.43634e-12 2.718 ||| 0-3 ||| 5 374827 +del ||| for example , the ||| 0.000609385 0.0732944 2.6679e-06 9.26671e-08 2.718 ||| 0-3 ||| 1641 374827 +del ||| for example , to ||| 0.00248756 0.0138653 2.6679e-06 3.31866e-08 2.718 ||| 0-0 ||| 402 374827 +del ||| for example , ||| 0.000288247 0.0138653 1.06716e-05 3.73478e-07 2.718 ||| 0-0 ||| 13877 374827 +del ||| for example when the ||| 0.166667 0.0732944 2.6679e-06 3.88448e-10 2.718 ||| 0-3 ||| 6 374827 +del ||| for example ||| 0.000196011 0.0138653 1.06716e-05 3.13177e-06 2.718 ||| 0-0 ||| 20407 374827 +del ||| for financial ||| 0.025 0.0138653 2.6679e-06 1.31252e-06 2.718 ||| 0-0 ||| 40 374827 +del ||| for finding such a ||| 0.5 0.0138653 2.6679e-06 5.25861e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| for finding such ||| 0.5 0.0138653 2.6679e-06 1.18635e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| for finding ||| 0.0121951 0.0138653 2.6679e-06 5.73423e-07 2.718 ||| 0-0 ||| 82 374827 +del ||| for from the ||| 0.125 0.0594304 2.6679e-06 8.09833e-05 2.718 ||| 0-0 0-1 0-2 ||| 8 374827 +del ||| for fundamental rights protection , ||| 1 0.0138653 2.6679e-06 1.28465e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| for fundamental rights protection ||| 1 0.0138653 2.6679e-06 1.07723e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| for fundamental rights ||| 0.00436681 0.0138653 2.6679e-06 1.06131e-10 2.718 ||| 0-0 ||| 229 374827 +del ||| for fundamental ||| 0.030303 0.0138653 2.6679e-06 5.30389e-07 2.718 ||| 0-0 ||| 33 374827 +del ||| for further ||| 0.00138122 0.0138653 2.6679e-06 5.19953e-06 2.718 ||| 0-0 ||| 724 374827 +del ||| for future ||| 0.00233645 0.0138653 2.6679e-06 2.85743e-06 2.718 ||| 0-0 ||| 428 374827 +del ||| for granted that ||| 0.0169492 0.0138653 2.6679e-06 1.46589e-08 2.718 ||| 0-0 ||| 59 374827 +del ||| for granted ||| 0.00294985 0.0138653 2.6679e-06 8.7143e-07 2.718 ||| 0-0 ||| 339 374827 +del ||| for growth and employment ||| 0.004329 0.0138653 2.6679e-06 3.17623e-13 2.718 ||| 0-0 ||| 231 374827 +del ||| for growth and ||| 0.00185529 0.0138653 2.6679e-06 6.49537e-09 2.718 ||| 0-0 ||| 539 374827 +del ||| for growth ||| 0.0012285 0.0138653 2.6679e-06 5.18555e-07 2.718 ||| 0-0 ||| 814 374827 +del ||| for his kind ||| 0.0357143 0.0138653 2.6679e-06 1.57765e-09 2.718 ||| 0-0 ||| 28 374827 +del ||| for his response ||| 0.016129 0.0138653 2.6679e-06 3.2329e-10 2.718 ||| 0-0 ||| 62 374827 +del ||| for his ||| 0.000872791 0.0138653 1.06716e-05 3.2329e-06 2.718 ||| 0-0 ||| 4583 374827 +del ||| for in it ||| 0.25 0.0138653 2.6679e-06 4.09508e-06 2.718 ||| 0-0 ||| 4 374827 +del ||| for in the ||| 0.0359712 0.0351625 1.33395e-05 0.000100762 2.718 ||| 0-0 0-1 0-2 ||| 139 374827 +del ||| for in ||| 0.00290698 0.0138653 2.6679e-06 0.000230278 2.718 ||| 0-0 ||| 344 374827 +del ||| for increasing ||| 0.00310559 0.0138653 2.6679e-06 5.57285e-07 2.718 ||| 0-0 ||| 322 374827 +del ||| for is ||| 0.0178571 0.0138653 2.6679e-06 0.00033718 2.718 ||| 0-0 ||| 56 374827 +del ||| for it - ||| 0.05 0.0138653 2.6679e-06 7.21674e-07 2.718 ||| 0-0 ||| 20 374827 +del ||| for it in the ||| 0.0344828 0.0458111 2.6679e-06 1.28009e-06 2.718 ||| 0-2 0-3 ||| 29 374827 +del ||| for it ||| 0.00241158 0.0138653 1.60074e-05 0.000191319 2.718 ||| 0-0 ||| 2488 374827 +del ||| for its ||| 0.00236718 0.00872295 2.40111e-05 5.25655e-06 2.718 ||| 0-0 0-1 ||| 3802 374827 +del ||| for making ||| 0.00199203 0.0138653 2.6679e-06 4.13876e-06 2.718 ||| 0-0 ||| 502 374827 +del ||| for many years , by ||| 1 0.0461582 2.6679e-06 8.65958e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| for me ||| 0.000998502 0.0138653 5.33579e-06 6.47763e-06 2.718 ||| 0-0 ||| 2003 374827 +del ||| for more ||| 0.000785546 0.0138653 2.6679e-06 2.4569e-05 2.718 ||| 0-0 ||| 1273 374827 +del ||| for not ||| 0.00177936 0.0138653 2.6679e-06 3.67303e-05 2.718 ||| 0-0 ||| 562 374827 +del ||| for one ||| 0.000899281 0.0138653 2.6679e-06 4.4841e-05 2.718 ||| 0-0 ||| 1112 374827 +del ||| for our ||| 0.00169779 0.0138653 2.13432e-05 1.48401e-05 2.718 ||| 0-0 ||| 4712 374827 +del ||| for over ||| 0.00152439 0.0101911 2.6679e-06 3.43408e-06 2.718 ||| 0-0 0-1 ||| 656 374827 +del ||| for people ||| 0.000706714 0.0138653 2.6679e-06 9.46954e-06 2.718 ||| 0-0 ||| 1415 374827 +del ||| for pumping ||| 0.5 0.0138653 2.6679e-06 7.53088e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| for raising ||| 0.00606061 0.0138653 2.6679e-06 2.47443e-07 2.718 ||| 0-0 ||| 165 374827 +del ||| for refugees , in ||| 1 0.0183279 2.6679e-06 2.76822e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| for short , which ||| 1 0.0138653 2.6679e-06 1.53778e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| for short , ||| 0.2 0.0138653 2.6679e-06 1.8103e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| for short ||| 0.0357143 0.0138653 2.6679e-06 1.51801e-06 2.718 ||| 0-0 ||| 28 374827 +del ||| for software ||| 0.0769231 0.0230906 2.6679e-06 5.08872e-07 2.718 ||| 0-0 0-1 ||| 13 374827 +del ||| for such an ||| 0.0147059 0.0138653 2.6679e-06 9.89304e-08 2.718 ||| 0-0 ||| 68 374827 +del ||| for such ||| 0.00179372 0.0138653 5.33579e-06 2.22581e-05 2.718 ||| 0-0 ||| 1115 374827 +del ||| for sugar into line ||| 1 0.16522 2.6679e-06 1.39431e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| for sugar into ||| 1 0.16522 2.6679e-06 4.73612e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| for sugar ||| 0.0149254 0.16522 2.6679e-06 4.61296e-06 2.718 ||| 0-1 ||| 67 374827 +del ||| for targeted ||| 0.5 0.0138653 2.6679e-06 3.02311e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| for that of the ||| 0.25 0.0725948 5.33579e-06 1.85413e-05 2.718 ||| 0-0 0-2 0-3 ||| 8 374827 +del ||| for that ||| 0.00107643 0.0138653 1.33395e-05 0.000180974 2.718 ||| 0-0 ||| 4645 374827 +del ||| for the ' ||| 0.0120482 0.038843 2.6679e-06 1.77416e-05 2.718 ||| 0-0 0-1 0-2 ||| 83 374827 +del ||| for the Committee on ||| 0.00223214 0.0435798 2.6679e-06 3.8152e-09 2.718 ||| 0-0 0-1 ||| 448 374827 +del ||| for the Committee ||| 0.00199601 0.0435798 2.6679e-06 5.70199e-07 2.718 ||| 0-0 0-1 ||| 501 374827 +del ||| for the European ||| 0.0326087 0.0435798 2.40111e-05 1.24947e-05 2.718 ||| 0-0 0-1 ||| 276 374827 +del ||| for the Iraqi ||| 0.5 0.0435798 2.6679e-06 1.86828e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| for the Northern ||| 0.5 0.157858 2.6679e-06 6.97878e-06 2.718 ||| 0-0 0-1 0-2 ||| 2 374827 +del ||| for the additional incorporation of ||| 1 0.0138653 2.6679e-06 4.7486e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| for the additional incorporation ||| 1 0.0138653 2.6679e-06 8.73482e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| for the additional ||| 0.25 0.0138653 2.6679e-06 3.49393e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| for the aid ||| 0.05 0.0435798 2.6679e-06 4.87995e-07 2.718 ||| 0-0 0-1 ||| 20 374827 +del ||| for the army ||| 0.0714286 0.0375223 2.6679e-06 1.91312e-07 2.718 ||| 0-0 0-1 0-2 ||| 14 374827 +del ||| for the authorities ||| 0.0142857 0.0435798 2.6679e-06 2.48855e-07 2.718 ||| 0-0 0-1 ||| 70 374827 +del ||| for the benefit ||| 0.00106496 0.0138653 2.6679e-06 8.69849e-08 2.718 ||| 0-0 ||| 939 374827 +del ||| for the bulk of this ||| 0.333333 0.0732944 2.6679e-06 7.40752e-12 2.718 ||| 0-1 ||| 3 374827 +del ||| for the bulk of ||| 0.166667 0.0732944 2.6679e-06 1.14643e-09 2.718 ||| 0-1 ||| 6 374827 +del ||| for the bulk ||| 0.142857 0.0732944 2.6679e-06 2.1088e-08 2.718 ||| 0-1 ||| 7 374827 +del ||| for the country ||| 0.00680272 0.0435798 2.6679e-06 1.34479e-06 2.718 ||| 0-0 0-1 ||| 147 374827 +del ||| for the course ||| 0.0588235 0.0435798 2.6679e-06 4.71442e-06 2.718 ||| 0-0 0-1 ||| 17 374827 +del ||| for the decision ||| 0.0169492 0.0138653 2.6679e-06 1.03893e-07 2.718 ||| 0-0 ||| 59 374827 +del ||| for the drafting of the ||| 0.111111 0.0727697 2.6679e-06 5.66577e-09 2.718 ||| 0-0 0-1 0-3 0-4 ||| 9 374827 +del ||| for the drug ||| 1 0.0435798 2.6679e-06 5.90377e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| for the entire ||| 0.00284091 0.0732944 2.6679e-06 2.11414e-07 2.718 ||| 0-1 ||| 352 374827 +del ||| for the first time , not only ||| 0.333333 0.0138653 2.6679e-06 2.64571e-16 2.718 ||| 0-0 ||| 3 374827 +del ||| for the first time , not ||| 0.5 0.0138653 2.6679e-06 2.37689e-13 2.718 ||| 0-0 ||| 2 374827 +del ||| for the first time , ||| 0.00160772 0.0138653 2.6679e-06 6.96197e-11 2.718 ||| 0-0 ||| 622 374827 +del ||| for the first time ||| 0.000467727 0.0138653 2.6679e-06 5.8379e-10 2.718 ||| 0-0 ||| 2138 374827 +del ||| for the first ||| 0.000483325 0.0138653 2.6679e-06 3.55601e-07 2.718 ||| 0-0 ||| 2069 374827 +del ||| for the good of ||| 0.00621118 0.0722451 2.6679e-06 1.0104e-07 2.718 ||| 0-0 0-3 ||| 161 374827 +del ||| for the goose and sauce ||| 1 0.0732944 2.6679e-06 1.74537e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| for the goose and ||| 0.111111 0.0732944 2.6679e-06 6.01852e-11 2.718 ||| 0-1 ||| 9 374827 +del ||| for the goose ||| 0.0769231 0.0732944 2.6679e-06 4.80486e-09 2.718 ||| 0-1 ||| 13 374827 +del ||| for the granting of ||| 0.015625 0.0725948 2.6679e-06 2.82171e-08 2.718 ||| 0-0 0-1 0-3 ||| 64 374827 +del ||| for the huge ||| 0.030303 0.0435798 2.6679e-06 1.95049e-07 2.718 ||| 0-0 0-1 ||| 33 374827 +del ||| for the new ||| 0.0011325 0.0435798 2.6679e-06 2.23334e-06 2.718 ||| 0-0 0-1 ||| 883 374827 +del ||| for the oil ||| 0.25 0.0740833 2.6679e-06 5.18261e-06 2.718 ||| 0-0 0-1 0-2 ||| 4 374827 +del ||| for the one ||| 0.1 0.0435798 2.6679e-06 1.5574e-05 2.718 ||| 0-0 0-1 ||| 10 374827 +del ||| for the sake of ||| 0.000884956 0.130625 2.6679e-06 1.39742e-08 2.718 ||| 0-3 ||| 1130 374827 +del ||| for the section ||| 0.166667 0.0435798 2.6679e-06 7.80942e-08 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| for the shortest period of time ||| 1 0.130625 2.6679e-06 2.79114e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| for the shortest period of ||| 1 0.130625 2.6679e-06 1.70015e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| for the single currency at ||| 1 0.0435798 2.6679e-06 9.28678e-14 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| for the single currency ||| 0.02 0.0435798 2.6679e-06 2.21779e-11 2.718 ||| 0-0 0-1 ||| 50 374827 +del ||| for the single ||| 0.5 0.0435798 2.6679e-06 5.92992e-07 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| for the systematic ||| 0.5 0.0435798 2.6679e-06 1.86828e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| for the various branches ||| 1 0.0435798 2.6679e-06 1.84616e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| for the various ||| 0.00452489 0.0435798 2.6679e-06 5.76925e-07 2.718 ||| 0-0 0-1 ||| 221 374827 +del ||| for the very ||| 0.00714286 0.0435798 2.6679e-06 1.30014e-05 2.718 ||| 0-0 0-1 ||| 140 374827 +del ||| for the welfare ||| 0.0172414 0.0732944 2.6679e-06 3.55026e-08 2.718 ||| 0-1 ||| 58 374827 +del ||| for the whole ||| 0.00112867 0.0435798 2.6679e-06 2.11377e-06 2.718 ||| 0-0 0-1 ||| 886 374827 +del ||| for the ||| 0.0299604 0.0435798 0.00898548 0.00373656 2.718 ||| 0-0 0-1 ||| 112415 374827 +del ||| for their ||| 0.000941176 0.0138653 1.60074e-05 1.24701e-05 2.718 ||| 0-0 ||| 6375 374827 +del ||| for them ||| 0.000902527 0.0138653 5.33579e-06 2.88583e-05 2.718 ||| 0-0 ||| 2216 374827 +del ||| for themselves the ||| 0.0769231 0.0732944 2.6679e-06 1.14703e-06 2.718 ||| 0-2 ||| 13 374827 +del ||| for themselves ||| 0.00145773 0.0138653 2.6679e-06 4.62288e-06 2.718 ||| 0-0 ||| 686 374827 +del ||| for there ||| 0.00460829 0.0138653 2.6679e-06 3.29777e-05 2.718 ||| 0-0 ||| 217 374827 +del ||| for this issue ||| 0.0119048 0.00859035 2.6679e-06 1.86931e-08 2.718 ||| 0-0 0-1 ||| 84 374827 +del ||| for this present ||| 0.333333 0.0138653 2.6679e-06 2.54422e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| for this sector are obvious ||| 1 0.0250353 2.6679e-06 2.34395e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| for this sector are ||| 0.333333 0.0250353 2.6679e-06 5.62098e-10 2.718 ||| 0-2 ||| 3 374827 +del ||| for this sector ||| 0.00724638 0.0250353 2.6679e-06 3.70466e-08 2.718 ||| 0-2 ||| 138 374827 +del ||| for this ||| 0.00220076 0.00859035 9.60443e-05 2.47002e-05 2.718 ||| 0-0 0-1 ||| 16358 374827 +del ||| for those in ||| 0.0196078 0.0160966 2.6679e-06 2.10073e-07 2.718 ||| 0-0 0-2 ||| 51 374827 +del ||| for those with ||| 0.027027 0.0138653 2.6679e-06 4.98142e-08 2.718 ||| 0-0 ||| 37 374827 +del ||| for those ||| 0.00100301 0.0138653 8.00369e-06 7.79016e-06 2.718 ||| 0-0 ||| 2991 374827 +del ||| for under ||| 0.0434783 0.0144157 2.6679e-06 8.54862e-06 2.718 ||| 0-0 0-1 ||| 23 374827 +del ||| for unity among the ||| 0.5 0.0435798 2.6679e-06 1.94182e-12 2.718 ||| 0-0 0-3 ||| 2 374827 +del ||| for up to ||| 0.0142857 0.0138653 2.6679e-06 3.26034e-06 2.718 ||| 0-0 ||| 70 374827 +del ||| for up ||| 0.0263158 0.0138653 2.6679e-06 3.66915e-05 2.718 ||| 0-0 ||| 38 374827 +del ||| for us in the ||| 0.0105263 0.0458111 2.6679e-06 2.0747e-07 2.718 ||| 0-2 0-3 ||| 95 374827 +del ||| for us to ||| 0.000755858 0.0138653 2.6679e-06 2.7553e-06 2.718 ||| 0-0 ||| 1323 374827 +del ||| for us ||| 0.000609508 0.0138653 8.00369e-06 3.10079e-05 2.718 ||| 0-0 ||| 4922 374827 +del ||| for what he had to ||| 1 0.0138653 2.6679e-06 1.1749e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| for what he had ||| 1 0.0138653 2.6679e-06 1.32222e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| for what he saw as ||| 1 0.0138653 2.6679e-06 7.20532e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| for what he saw ||| 1 0.0138653 2.6679e-06 7.061e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| for what he ||| 0.0588235 0.0138653 5.33579e-06 1.31735e-08 2.718 ||| 0-0 ||| 34 374827 +del ||| for what is ||| 0.00680272 0.0138653 2.6679e-06 4.73097e-07 2.718 ||| 0-0 ||| 147 374827 +del ||| for what ||| 0.00243309 0.0138653 8.00369e-06 1.50951e-05 2.718 ||| 0-0 ||| 1233 374827 +del ||| for which , ||| 0.0172414 0.0138653 2.6679e-06 1.08985e-05 2.718 ||| 0-0 ||| 58 374827 +del ||| for which ||| 0.00153139 0.0138653 1.33395e-05 9.13883e-05 2.718 ||| 0-0 ||| 3265 374827 +del ||| for years ||| 0.000686813 0.0138653 2.6679e-06 1.83108e-06 2.718 ||| 0-0 ||| 1456 374827 +del ||| for you , and , of course ||| 1 0.130625 2.6679e-06 1.64523e-12 2.718 ||| 0-5 ||| 1 374827 +del ||| for you , and , of ||| 1 0.130625 2.6679e-06 1.30398e-09 2.718 ||| 0-5 ||| 1 374827 +del ||| for you ||| 0.00130378 0.0138653 2.6679e-06 3.47356e-05 2.718 ||| 0-0 ||| 767 374827 +del ||| for ||| 0.005961 0.0138653 0.00865733 0.0107584 2.718 ||| 0-0 ||| 544372 374827 +del ||| force , the ||| 0.0185185 0.0732944 2.6679e-06 7.04952e-06 2.718 ||| 0-2 ||| 54 374827 +del ||| force behind it ||| 0.25 0.0073296 2.6679e-06 2.6635e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| force behind ||| 0.047619 0.0073296 2.6679e-06 1.49776e-08 2.718 ||| 0-1 ||| 21 374827 +del ||| force of the ||| 0.00193611 0.10196 5.33579e-06 1.74375e-05 2.718 ||| 0-1 0-2 ||| 1033 374827 +del ||| force of ||| 0.0015873 0.130625 2.6679e-06 5.02065e-05 2.718 ||| 0-1 ||| 630 374827 +del ||| force that the ||| 0.142857 0.0732944 2.6679e-06 9.94378e-07 2.718 ||| 0-2 ||| 7 374827 +del ||| force ’ s ||| 1 0.137519 2.6679e-06 9.96814e-09 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| forces behind the ||| 0.25 0.0732944 2.6679e-06 1.64622e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| forces in ||| 0.00657895 0.0183279 2.6679e-06 1.42652e-06 2.718 ||| 0-1 ||| 152 374827 +del ||| forces of the ||| 0.0204082 0.0698659 2.6679e-06 5.37879e-06 2.718 ||| 0-0 0-1 0-2 ||| 49 374827 +del ||| forces of ||| 0.00384615 0.130625 2.6679e-06 1.56047e-05 2.718 ||| 0-1 ||| 260 374827 +del ||| forces ||| 0.000786782 0.0056786 1.33395e-05 5.25e-05 2.718 ||| 0-0 ||| 6355 374827 +del ||| fore over the ||| 1 0.0732944 2.6679e-06 1.92317e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| forefront of ||| 0.00325733 0.130625 2.6679e-06 2.77286e-06 2.718 ||| 0-1 ||| 307 374827 +del ||| foreign body in ||| 1 0.0183279 2.6679e-06 6.30172e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| forever in ||| 0.2 0.0183279 2.6679e-06 1.75282e-07 2.718 ||| 0-1 ||| 5 374827 +del ||| forget the ||| 0.0020202 0.0732944 2.6679e-06 6.49481e-06 2.718 ||| 0-1 ||| 495 374827 +del ||| fori shall ||| 0.5 0.375 2.6679e-06 2.13174e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| fori ||| 0.2 0.375 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 5 374827 +del ||| form a ||| 0.00204918 0.0008087 2.6679e-06 3.84416e-07 2.718 ||| 0-1 ||| 488 374827 +del ||| form of a ||| 0.00201613 0.130625 2.6679e-06 5.95195e-06 2.718 ||| 0-1 ||| 496 374827 +del ||| form of dialogue ||| 0.0909091 0.130625 2.6679e-06 5.26367e-09 2.718 ||| 0-1 ||| 11 374827 +del ||| form of the levy they have paid ||| 1 0.130625 2.6679e-06 2.64218e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| form of the levy they have ||| 1 0.130625 2.6679e-06 1.96299e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| form of the levy they ||| 1 0.130625 2.6679e-06 1.64132e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| form of the levy ||| 1 0.130625 2.6679e-06 5.02855e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| form of the ||| 0.0128205 0.130625 8.00369e-06 8.24353e-06 2.718 ||| 0-1 ||| 234 374827 +del ||| form of ||| 0.00397439 0.130625 4.80222e-05 0.000134277 2.718 ||| 0-1 ||| 4529 374827 +del ||| form the ||| 0.00359066 0.0732944 5.33579e-06 0.000158098 2.718 ||| 0-1 ||| 557 374827 +del ||| formal position of the ||| 0.5 0.10196 2.6679e-06 5.70169e-10 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| former Chairman of the ||| 0.125 0.10196 2.6679e-06 2.69185e-11 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| forming part of the ||| 0.030303 0.10196 2.6679e-06 1.0993e-09 2.718 ||| 0-2 0-3 ||| 33 374827 +del ||| forms of ||| 0.00219378 0.130625 1.60074e-05 2.63127e-05 2.718 ||| 0-1 ||| 2735 374827 +del ||| forms part of the ||| 0.00414938 0.10196 2.6679e-06 1.08953e-08 2.718 ||| 0-2 0-3 ||| 241 374827 +del ||| formulation of the ||| 0.02 0.10196 2.6679e-06 2.97114e-07 2.718 ||| 0-1 0-2 ||| 50 374827 +del ||| forthcoming from the ||| 0.0769231 0.082213 2.6679e-06 3.33466e-07 2.718 ||| 0-1 0-2 ||| 13 374827 +del ||| forward by the ||| 0.0462963 0.0597263 1.33395e-05 3.12476e-06 2.718 ||| 0-1 0-2 ||| 108 374827 +del ||| forward by ||| 0.0414508 0.0461582 2.13432e-05 8.99688e-06 2.718 ||| 0-1 ||| 193 374827 +del ||| forward for the ||| 0.0121951 0.0732944 2.6679e-06 1.48523e-06 2.718 ||| 0-2 ||| 82 374827 +del ||| forward from the ||| 0.0833333 0.082213 2.6679e-06 4.18827e-06 2.718 ||| 0-1 0-2 ||| 12 374827 +del ||| forward from ||| 0.0869565 0.0911315 5.33579e-06 1.2059e-05 2.718 ||| 0-1 ||| 23 374827 +del ||| forward in the ||| 0.0110497 0.0458111 5.33579e-06 5.21116e-06 2.718 ||| 0-1 0-2 ||| 181 374827 +del ||| forward in this ||| 0.0133333 0.0108217 2.6679e-06 3.44479e-08 2.718 ||| 0-1 0-2 ||| 75 374827 +del ||| forward in ||| 0.00321027 0.0183279 5.33579e-06 1.50041e-05 2.718 ||| 0-1 ||| 623 374827 +del ||| forward into the ||| 0.166667 0.0732944 2.6679e-06 1.98406e-07 2.718 ||| 0-2 ||| 6 374827 +del ||| forward the ||| 0.00531915 0.0732944 2.6679e-06 0.000193247 2.718 ||| 0-1 ||| 188 374827 +del ||| forward to continued close dialogue with Parliament ||| 1 0.0198851 2.6679e-06 3.80764e-22 2.718 ||| 0-4 ||| 1 374827 +del ||| forward to continued close dialogue with ||| 1 0.0198851 2.6679e-06 6.63352e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| forward to continued close dialogue ||| 1 0.0198851 2.6679e-06 1.03738e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| found anywhere in the ||| 0.333333 0.0458111 2.6679e-06 6.18873e-11 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| found for the ||| 0.0526316 0.0435798 2.6679e-06 8.1756e-07 2.718 ||| 0-1 0-2 ||| 19 374827 +del ||| found guilty of ||| 0.0238095 0.130625 2.6679e-06 1.36831e-09 2.718 ||| 0-2 ||| 42 374827 +del ||| found in the ||| 0.0113636 0.0458111 8.00369e-06 2.04925e-06 2.718 ||| 0-1 0-2 ||| 264 374827 +del ||| found in ||| 0.00421348 0.0183279 8.00369e-06 5.90025e-06 2.718 ||| 0-1 ||| 712 374827 +del ||| found myself thinking of ||| 0.25 0.130625 2.6679e-06 7.43698e-13 2.718 ||| 0-3 ||| 4 374827 +del ||| found to the ||| 0.0588235 0.0732944 2.6679e-06 6.75257e-06 2.718 ||| 0-2 ||| 17 374827 +del ||| foundation ||| 0.000890472 0.0008475 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1123 374827 +del ||| founded on ||| 0.00184843 0.0140673 2.6679e-06 1.80458e-07 2.718 ||| 0-1 ||| 541 374827 +del ||| fr ) ||| 0.000437828 0.0056759 2.6679e-06 1.72836e-08 2.718 ||| 0-1 ||| 2284 374827 +del ||| framework for ||| 0.00097561 0.0138653 2.6679e-06 1.28133e-06 2.718 ||| 0-1 ||| 1025 374827 +del ||| framework of the ||| 0.000412201 0.10196 2.6679e-06 1.22022e-05 2.718 ||| 0-1 0-2 ||| 2426 374827 +del ||| framework of ||| 0.000262192 0.130625 2.6679e-06 3.51328e-05 2.718 ||| 0-1 ||| 3814 374827 +del ||| framework programme ||| 0.000903342 0.0004156 2.6679e-06 1.40538e-09 2.718 ||| 0-1 ||| 1107 374827 +del ||| fraud ||| 0.000227273 0.0191881 2.6679e-06 0.0001589 2.718 ||| 0-0 ||| 4400 374827 +del ||| free of customs ||| 0.2 0.130625 2.6679e-06 3.47393e-10 2.718 ||| 0-1 ||| 5 374827 +del ||| free of ||| 0.00761421 0.130625 8.00369e-06 3.43953e-05 2.718 ||| 0-1 ||| 394 374827 +del ||| free ourselves from the ||| 0.25 0.0732944 2.6679e-06 2.07453e-11 2.718 ||| 0-3 ||| 4 374827 +del ||| free ||| 6.29842e-05 7.55e-05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 15877 374827 +del ||| free-standing ||| 0.0909091 0.05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 11 374827 +del ||| freedom of ||| 0.000145012 0.130625 2.6679e-06 2.51623e-05 2.718 ||| 0-1 ||| 6896 374827 +del ||| freedoms of ||| 0.00735294 0.130625 2.6679e-06 1.17994e-06 2.718 ||| 0-1 ||| 136 374827 +del ||| freezes of ||| 1 0.130625 2.6679e-06 2.0649e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| freight ||| 0.00343938 0.0500928 1.06716e-05 0.0001419 2.718 ||| 0-0 ||| 1163 374827 +del ||| from , ||| 0.0198676 0.0911315 8.00369e-06 0.00258463 2.718 ||| 0-0 ||| 151 374827 +del ||| from 1972 , ||| 0.5 0.0911315 2.6679e-06 1.03385e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| from 1972 ||| 0.25 0.0911315 2.6679e-06 8.66928e-09 2.718 ||| 0-0 ||| 4 374827 +del ||| from China ||| 0.00347222 0.0911315 2.6679e-06 5.70005e-07 2.718 ||| 0-0 ||| 288 374827 +del ||| from ERDF ||| 1 0.121653 2.6679e-06 1.59515e-06 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from Europe ||| 0.0019685 0.0911315 2.6679e-06 1.09666e-05 2.718 ||| 0-0 ||| 508 374827 +del ||| from North ||| 0.0138889 0.0911315 2.6679e-06 4.5297e-07 2.718 ||| 0-0 ||| 72 374827 +del ||| from a more ||| 0.2 0.0911315 2.6679e-06 2.19391e-06 2.718 ||| 0-0 ||| 5 374827 +del ||| from a ||| 0.00791717 0.0911315 0.000104048 0.000960682 2.718 ||| 0-0 ||| 4926 374827 +del ||| from about ||| 0.0666667 0.0506615 2.6679e-06 3.04313e-05 2.718 ||| 0-0 0-1 ||| 15 374827 +del ||| from above ||| 0.0106383 0.0911315 2.6679e-06 2.80885e-06 2.718 ||| 0-0 ||| 94 374827 +del ||| from across the ||| 0.0196078 0.082213 2.6679e-06 7.72316e-07 2.718 ||| 0-0 0-2 ||| 51 374827 +del ||| from all over the ||| 0.0240964 0.056981 5.33579e-06 1.1354e-08 2.718 ||| 0-0 0-2 0-3 ||| 83 374827 +del ||| from all parts of the ||| 0.0909091 0.0983502 2.6679e-06 6.11724e-10 2.718 ||| 0-0 0-3 0-4 ||| 11 374827 +del ||| from all sides of the ||| 0.0555556 0.0911315 2.6679e-06 1.25444e-11 2.718 ||| 0-0 ||| 18 374827 +del ||| from all sides of ||| 0.037037 0.0911315 2.6679e-06 2.04333e-10 2.718 ||| 0-0 ||| 27 374827 +del ||| from all sides ||| 0.0107527 0.0911315 2.6679e-06 3.75861e-09 2.718 ||| 0-0 ||| 93 374827 +del ||| from all ||| 0.000844595 0.0911315 2.6679e-06 0.000102415 2.718 ||| 0-0 ||| 1184 374827 +del ||| from among these questions and ||| 1 0.0911315 2.6679e-06 2.23256e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| from among these questions ||| 1 0.0911315 2.6679e-06 1.78236e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| from among these ||| 1 0.0911315 2.6679e-06 2.01396e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| from among ||| 0.027027 0.0911315 2.6679e-06 1.94192e-06 2.718 ||| 0-0 ||| 37 374827 +del ||| from an ||| 0.00714286 0.0911315 2.40111e-05 9.63309e-05 2.718 ||| 0-0 ||| 1260 374827 +del ||| from another ||| 0.00520833 0.0911315 2.6679e-06 5.22541e-06 2.718 ||| 0-0 ||| 192 374827 +del ||| from any outside ||| 1 0.0911315 2.6679e-06 1.30769e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| from any ||| 0.00520833 0.0911315 5.33579e-06 3.27742e-05 2.718 ||| 0-0 ||| 384 374827 +del ||| from anywhere in the ||| 0.111111 0.0609179 2.6679e-06 6.13024e-09 2.718 ||| 0-0 0-2 0-3 ||| 9 374827 +del ||| from attending ||| 0.0769231 0.0911315 2.6679e-06 1.8639e-07 2.718 ||| 0-0 ||| 13 374827 +del ||| from behind closed doors ||| 0.25 0.0911315 2.6679e-06 1.338e-15 2.718 ||| 0-0 ||| 4 374827 +del ||| from behind closed ||| 1 0.0911315 2.6679e-06 1.12437e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| from behind ||| 0.0526316 0.0911315 2.6679e-06 1.94192e-06 2.718 ||| 0-0 ||| 19 374827 +del ||| from being a ||| 0.0144928 0.0911315 2.6679e-06 2.73391e-06 2.718 ||| 0-0 ||| 69 374827 +del ||| from being granted refugee ||| 1 0.0171548 2.6679e-06 2.00084e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| from being proclaimed ||| 1 0.0911315 2.6679e-06 3.5773e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| from being recorded ||| 1 0.0911315 2.6679e-06 1.28906e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| from being the ||| 0.0526316 0.082213 2.6679e-06 2.14216e-05 2.718 ||| 0-0 0-2 ||| 19 374827 +del ||| from being ||| 0.0123288 0.0911315 2.40111e-05 6.16776e-05 2.718 ||| 0-0 ||| 730 374827 +del ||| from both the ||| 0.0729167 0.082213 1.86753e-05 1.24692e-05 2.718 ||| 0-0 0-2 ||| 96 374827 +del ||| from both ||| 0.0115207 0.0911315 1.33395e-05 3.59017e-05 2.718 ||| 0-0 ||| 434 374827 +del ||| from commercial activities ||| 1 0.0911315 2.6679e-06 3.29097e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| from commercial ||| 0.333333 0.0911315 2.6679e-06 4.13958e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| from costs ||| 0.5 0.0911315 2.6679e-06 1.62982e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| from damaging ||| 0.166667 0.0911315 2.6679e-06 1.95059e-07 2.718 ||| 0-0 ||| 6 374827 +del ||| from doing so ||| 0.0222222 0.0911315 2.6679e-06 1.80583e-08 2.718 ||| 0-0 ||| 45 374827 +del ||| from doing ||| 0.0181818 0.0911315 2.6679e-06 7.95623e-06 2.718 ||| 0-0 ||| 55 374827 +del ||| from each other ||| 0.0181818 0.0911315 2.6679e-06 7.88139e-09 2.718 ||| 0-0 ||| 55 374827 +del ||| from each ||| 0.0111111 0.0911315 5.33579e-06 6.08367e-06 2.718 ||| 0-0 ||| 180 374827 +del ||| from either the ||| 0.166667 0.082213 5.33579e-06 6.51726e-06 2.718 ||| 0-0 0-2 ||| 12 374827 +del ||| from either ||| 0.0277778 0.0456228 2.6679e-06 2.81752e-08 2.718 ||| 0-0 0-1 ||| 36 374827 +del ||| from elsewhere ||| 0.025974 0.0911315 5.33579e-06 8.04076e-07 2.718 ||| 0-0 ||| 77 374827 +del ||| from entering ||| 0.0125 0.0911315 2.6679e-06 3.35935e-07 2.718 ||| 0-0 ||| 80 374827 +del ||| from every point of ||| 0.0714286 0.0911315 2.6679e-06 1.67699e-10 2.718 ||| 0-0 ||| 14 374827 +del ||| from every point ||| 0.0714286 0.0911315 2.6679e-06 3.08475e-09 2.718 ||| 0-0 ||| 14 374827 +del ||| from every ||| 0.00666667 0.0911315 2.6679e-06 3.52623e-06 2.718 ||| 0-0 ||| 150 374827 +del ||| from everything , ||| 1 0.0911315 2.6679e-06 2.39078e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| from everything ||| 0.0555556 0.0911315 2.6679e-06 2.00477e-06 2.718 ||| 0-0 ||| 18 374827 +del ||| from factory ||| 1 0.0911315 2.6679e-06 7.80235e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| from falling by the ||| 1 0.0701947 2.6679e-06 3.11596e-09 2.718 ||| 0-0 0-2 0-3 ||| 1 374827 +del ||| from for ||| 1 0.0524984 2.6679e-06 0.000233169 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from holding ||| 0.0714286 0.0911315 2.6679e-06 1.30256e-06 2.718 ||| 0-0 ||| 14 374827 +del ||| from in the ||| 0.125 0.0609179 2.6679e-06 0.000202988 2.718 ||| 0-0 0-1 0-2 ||| 8 374827 +del ||| from in ||| 0.0625 0.0911315 2.6679e-06 0.000463904 2.718 ||| 0-0 ||| 16 374827 +del ||| from it , ||| 0.012987 0.0911315 2.6679e-06 4.5963e-05 2.718 ||| 0-0 ||| 77 374827 +del ||| from it ||| 0.0117647 0.0911315 1.60074e-05 0.000385419 2.718 ||| 0-0 ||| 510 374827 +del ||| from its determination ||| 0.5 0.0911315 2.6679e-06 3.67446e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| from its ||| 0.0138037 0.0473561 2.40111e-05 1.05895e-05 2.718 ||| 0-0 0-1 ||| 652 374827 +del ||| from just that ||| 1 0.0911315 2.6679e-06 4.59988e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| from just ||| 0.0357143 0.0911315 2.6679e-06 2.73451e-05 2.718 ||| 0-0 ||| 28 374827 +del ||| from me , ||| 0.037037 0.0911315 2.6679e-06 1.55621e-06 2.718 ||| 0-0 ||| 27 374827 +del ||| from me ||| 0.0185185 0.0911315 5.33579e-06 1.30494e-05 2.718 ||| 0-0 ||| 108 374827 +del ||| from middle ||| 0.5 0.0911315 2.6679e-06 4.44301e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| from my colleague , ||| 0.0714286 0.0911315 2.6679e-06 9.20846e-11 2.718 ||| 0-0 ||| 14 374827 +del ||| from my colleague ||| 0.0263158 0.0911315 2.6679e-06 7.72167e-10 2.718 ||| 0-0 ||| 38 374827 +del ||| from my ||| 0.0020141 0.0911315 5.33579e-06 1.3938e-05 2.718 ||| 0-0 ||| 993 374827 +del ||| from northern ||| 0.0175439 0.133066 2.6679e-06 9.76378e-06 2.718 ||| 0-0 0-1 ||| 57 374827 +del ||| from now , ||| 0.0909091 0.0911315 5.33579e-06 5.32408e-06 2.718 ||| 0-0 ||| 22 374827 +del ||| from now ||| 0.00436681 0.0911315 8.00369e-06 4.46446e-05 2.718 ||| 0-0 ||| 687 374827 +del ||| from on ||| 0.0714286 0.0525994 5.33579e-06 0.00021256 2.718 ||| 0-0 0-1 ||| 28 374827 +del ||| from one ' s ||| 1 0.0987045 2.6679e-06 3.33828e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| from one another ||| 0.0465116 0.0911315 5.33579e-06 2.17795e-08 2.718 ||| 0-0 ||| 43 374827 +del ||| from one ||| 0.00298954 0.0911315 1.06716e-05 9.03339e-05 2.718 ||| 0-0 ||| 1338 374827 +del ||| from our ||| 0.00436999 0.0463332 1.60074e-05 6.46295e-06 2.718 ||| 0-0 0-1 ||| 1373 374827 +del ||| from ourselves here in the ||| 1 0.0911315 2.6679e-06 1.83708e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| from ourselves here in ||| 1 0.0911315 2.6679e-06 2.99238e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| from ourselves here ||| 1 0.0911315 2.6679e-06 1.39801e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| from ourselves ||| 0.125 0.0911315 2.6679e-06 6.89424e-06 2.718 ||| 0-0 ||| 8 374827 +del ||| from polluting ||| 0.5 0.0911315 2.6679e-06 4.7681e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| from power ||| 0.0625 0.0911315 2.6679e-06 3.23581e-06 2.718 ||| 0-0 ||| 16 374827 +del ||| from running the ||| 0.25 0.082213 2.6679e-06 5.74344e-07 2.718 ||| 0-0 0-2 ||| 4 374827 +del ||| from sailing anywhere ||| 1 0.0911315 2.6679e-06 3.27265e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| from sailing ||| 0.333333 0.0911315 2.6679e-06 1.08366e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| from showing ||| 0.2 0.0911315 2.6679e-06 6.69702e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| from state ||| 0.166667 0.0911315 2.6679e-06 5.47465e-06 2.718 ||| 0-0 ||| 6 374827 +del ||| from stirring up ||| 1 0.0911315 2.6679e-06 1.62616e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| from stirring ||| 1 0.0911315 2.6679e-06 4.7681e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| from taxes ||| 0.0555556 0.0911315 2.6679e-06 3.59775e-07 2.718 ||| 0-0 ||| 18 374827 +del ||| from that court ||| 1 0.0911315 2.6679e-06 1.09009e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| from that taken ||| 1 0.0911315 2.6679e-06 3.32313e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| from that to ||| 0.5 0.0911315 2.6679e-06 3.23957e-05 2.718 ||| 0-0 ||| 2 374827 +del ||| from that we have ||| 0.333333 0.0911315 2.6679e-06 4.94992e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| from that we ||| 0.142857 0.0911315 2.6679e-06 4.1388e-06 2.718 ||| 0-0 ||| 7 374827 +del ||| from that which ||| 0.0526316 0.0911315 2.6679e-06 3.09694e-06 2.718 ||| 0-0 ||| 19 374827 +del ||| from that ||| 0.0327144 0.0911315 9.87122e-05 0.000364578 2.718 ||| 0-0 ||| 1131 374827 +del ||| from the [ ||| 1 0.082213 2.6679e-06 2.65719e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from the ' ||| 0.0625 0.082213 5.33579e-06 2.5856e-05 2.718 ||| 0-0 0-1 ||| 32 374827 +del ||| from the 2010 ||| 1 0.082213 2.6679e-06 6.4736e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from the Austrian Freedom ||| 0.5 0.082213 2.6679e-06 2.16414e-13 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| from the Austrian ||| 0.2 0.082213 2.6679e-06 8.65656e-08 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| from the European ||| 0.311594 0.082213 0.00011472 2.5171e-05 2.718 ||| 0-0 0-1 ||| 138 374827 +del ||| from the Generalised ||| 1 0.082213 2.6679e-06 2.2206e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from the Greek ||| 0.5 0.082213 2.6679e-06 1.08395e-07 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| from the Group of the Party of ||| 0.037037 0.082213 2.6679e-06 6.69987e-14 2.718 ||| 0-0 0-1 ||| 27 374827 +del ||| from the Group of the Party ||| 0.0384615 0.082213 2.6679e-06 1.23241e-12 2.718 ||| 0-0 0-1 ||| 26 374827 +del ||| from the Group of the ||| 0.0122699 0.0911315 5.33579e-06 1.44457e-09 2.718 ||| 0-0 ||| 163 374827 +del ||| from the Group of ||| 0.00877193 0.0911315 5.33579e-06 2.35304e-08 2.718 ||| 0-0 ||| 228 374827 +del ||| from the Group ||| 0.0106007 0.082213 8.00369e-06 2.44868e-06 2.718 ||| 0-0 0-1 ||| 283 374827 +del ||| from the House ||| 0.0192308 0.082213 2.6679e-06 1.88261e-06 2.718 ||| 0-0 0-1 ||| 52 374827 +del ||| from the Moderate ||| 1 0.10719 2.6679e-06 1.08395e-07 2.718 ||| 0-0 0-1 0-2 ||| 1 374827 +del ||| from the POP 3 ||| 1 0.082213 2.6679e-06 1.21192e-13 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from the POP ||| 1 0.082213 2.6679e-06 5.26921e-09 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from the UK ||| 0.0133333 0.0911315 2.6679e-06 2.30186e-08 2.718 ||| 0-0 ||| 75 374827 +del ||| from the UN ||| 0.0212766 0.0911315 2.6679e-06 5.54842e-08 2.718 ||| 0-0 ||| 47 374827 +del ||| from the Union for a ||| 0.5 0.082213 2.6679e-06 1.4294e-09 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| from the Union for ||| 0.333333 0.082213 2.6679e-06 3.22476e-08 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| from the Union ||| 0.00558659 0.082213 2.6679e-06 4.1958e-06 2.718 ||| 0-0 0-1 ||| 179 374827 +del ||| from the United States ||| 0.00322581 0.082213 2.6679e-06 4.39673e-10 2.718 ||| 0-0 0-1 ||| 310 374827 +del ||| from the United ||| 0.0104167 0.082213 2.6679e-06 9.21359e-07 2.718 ||| 0-0 0-1 ||| 96 374827 +del ||| from the adjustable contribution ||| 1 0.082213 2.6679e-06 2.70988e-13 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from the adjustable ||| 1 0.082213 2.6679e-06 3.01098e-09 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from the agenda for ||| 0.25 0.0911315 2.6679e-06 1.01547e-09 2.718 ||| 0-0 ||| 4 374827 +del ||| from the agenda ||| 0.0105263 0.0911315 2.6679e-06 1.32124e-07 2.718 ||| 0-0 ||| 95 374827 +del ||| from the agricultural ||| 0.666667 0.082213 5.33579e-06 2.92818e-07 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| from the cells ||| 0.333333 0.0732944 2.6679e-06 2.40506e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| from the centres of ||| 0.125 0.0983502 2.6679e-06 2.70899e-08 2.718 ||| 0-0 0-1 0-3 ||| 8 374827 +del ||| from the consequences ||| 0.030303 0.0911315 2.6679e-06 5.65487e-08 2.718 ||| 0-0 ||| 33 374827 +del ||| from the country 's ||| 1 0.111412 2.6679e-06 1.08855e-07 2.718 ||| 0-0 0-1 0-3 ||| 1 374827 +del ||| from the current ||| 0.0133333 0.082213 2.6679e-06 1.24052e-06 2.718 ||| 0-0 0-1 ||| 75 374827 +del ||| from the distant ||| 0.333333 0.082213 2.6679e-06 2.70988e-08 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| from the draft ||| 0.0285714 0.082213 2.6679e-06 3.95191e-07 2.718 ||| 0-0 0-1 ||| 35 374827 +del ||| from the elected ||| 1 0.082213 2.6679e-06 1.67862e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from the establishment ||| 0.0769231 0.082213 2.6679e-06 3.38735e-07 2.718 ||| 0-0 0-1 ||| 13 374827 +del ||| from the eyes ||| 0.25 0.082213 2.6679e-06 4.3885e-07 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| from the fact that the proposed ||| 1 0.082213 2.6679e-06 2.54128e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from the fact that the ||| 0.02 0.082213 2.6679e-06 2.27714e-08 2.718 ||| 0-0 0-1 ||| 50 374827 +del ||| from the fact that ||| 0.00421941 0.082213 2.6679e-06 3.70919e-07 2.718 ||| 0-0 0-1 ||| 237 374827 +del ||| from the fact ||| 0.00287356 0.082213 2.6679e-06 2.20501e-05 2.718 ||| 0-0 0-1 ||| 348 374827 +del ||| from the financial ||| 0.333333 0.082213 2.6679e-06 9.18348e-07 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| from the first generation ||| 0.5 0.0911315 2.6679e-06 1.26081e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| from the first ||| 0.00393701 0.0911315 2.6679e-06 7.16372e-07 2.718 ||| 0-0 ||| 254 374827 +del ||| from the hip ||| 0.25 0.082213 2.6679e-06 3.01098e-09 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| from the land ||| 0.0555556 0.0732944 2.6679e-06 2.15337e-08 2.718 ||| 0-1 ||| 18 374827 +del ||| from the level of ||| 0.0714286 0.130625 2.6679e-06 2.49468e-08 2.718 ||| 0-3 ||| 14 374827 +del ||| from the main ||| 0.0555556 0.082213 2.6679e-06 7.50486e-07 2.718 ||| 0-0 0-1 ||| 18 374827 +del ||| from the meeting of the ||| 0.111111 0.10196 2.6679e-06 1.27221e-09 2.718 ||| 0-3 0-4 ||| 9 374827 +del ||| from the name ||| 0.5 0.082213 2.6679e-06 6.57899e-07 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| from the national ||| 0.0714286 0.082213 2.6679e-06 9.67277e-07 2.718 ||| 0-0 0-1 ||| 14 374827 +del ||| from the negotiating ||| 1 0.0732944 2.6679e-06 8.66942e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| from the negotiations ||| 0.025 0.082213 2.6679e-06 4.1702e-07 2.718 ||| 0-0 0-1 ||| 40 374827 +del ||| from the new ||| 0.00274725 0.082213 2.6679e-06 4.49915e-06 2.718 ||| 0-0 0-1 ||| 364 374827 +del ||| from the odd few ||| 0.166667 0.082213 2.6679e-06 8.97302e-12 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| from the odd ||| 0.166667 0.082213 2.6679e-06 5.11866e-08 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| from the official ||| 1 0.082213 2.6679e-06 2.92818e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from the one ||| 0.0217391 0.082213 2.6679e-06 3.13744e-05 2.718 ||| 0-0 0-1 ||| 46 374827 +del ||| from the past , from the ||| 0.5 0.082213 2.6679e-06 8.65605e-10 2.718 ||| 0-0 0-1 0-4 0-5 ||| 2 374827 +del ||| from the path ||| 0.0714286 0.0732944 2.6679e-06 2.131e-08 2.718 ||| 0-1 ||| 14 374827 +del ||| from the point of view of ||| 0.00101937 0.0983502 2.6679e-06 9.53895e-11 2.718 ||| 0-0 0-1 0-5 ||| 981 374827 +del ||| from the point of view ||| 0.00097561 0.082213 2.6679e-06 3.2337e-10 2.718 ||| 0-0 0-1 ||| 1025 374827 +del ||| from the point of ||| 0.00102354 0.082213 2.6679e-06 3.57987e-07 2.718 ||| 0-0 0-1 ||| 977 374827 +del ||| from the point ||| 0.000966184 0.082213 2.6679e-06 6.58501e-06 2.718 ||| 0-0 0-1 ||| 1035 374827 +del ||| from the present ||| 0.0285714 0.082213 2.6679e-06 2.75504e-06 2.718 ||| 0-0 0-1 ||| 35 374827 +del ||| from the proposed ||| 0.0714286 0.082213 2.6679e-06 8.40063e-07 2.718 ||| 0-0 0-1 ||| 14 374827 +del ||| from the recent ||| 0.0285714 0.082213 2.6679e-06 3.65834e-07 2.718 ||| 0-0 0-1 ||| 35 374827 +del ||| from the relevant ||| 0.166667 0.082213 2.6679e-06 8.09953e-07 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| from the review ||| 0.25 0.082213 2.6679e-06 2.84537e-07 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| from the rule of ||| 0.125 0.0911315 2.6679e-06 5.88079e-09 2.718 ||| 0-0 ||| 8 374827 +del ||| from the rule ||| 0.0909091 0.0911315 2.6679e-06 1.08174e-07 2.718 ||| 0-0 ||| 11 374827 +del ||| from the same level ||| 0.5 0.0911315 2.6679e-06 9.15876e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| from the same ||| 0.00714286 0.0911315 2.6679e-06 1.0707e-06 2.718 ||| 0-0 ||| 140 374827 +del ||| from the single undertaking ||| 0.5 0.082213 2.6679e-06 3.57187e-11 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| from the single ||| 0.0666667 0.082213 2.6679e-06 1.19461e-06 2.718 ||| 0-0 0-1 ||| 15 374827 +del ||| from the so ||| 1 0.0732944 2.6679e-06 1.26948e-06 2.718 ||| 0-1 ||| 1 374827 +del ||| from the standing ||| 0.5 0.0911315 2.6679e-06 7.03865e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| from the start of the ||| 0.04 0.0920863 2.6679e-06 1.07121e-07 2.718 ||| 0-0 0-1 0-3 0-4 ||| 25 374827 +del ||| from the stepping stone ||| 1 0.082213 2.6679e-06 9.90612e-13 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from the stepping ||| 1 0.082213 2.6679e-06 7.0758e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| from the then ||| 0.5 0.082213 2.6679e-06 1.21222e-05 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| from the tone ||| 0.25 0.082213 2.6679e-06 5.94668e-08 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| from the usual ||| 0.166667 0.082213 2.6679e-06 1.30225e-07 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| from the way ||| 0.0222222 0.082213 2.6679e-06 1.62262e-05 2.718 ||| 0-0 0-1 ||| 45 374827 +del ||| from the whole of the ||| 0.1 0.082213 2.6679e-06 1.4212e-08 2.718 ||| 0-0 0-1 ||| 10 374827 +del ||| from the whole of ||| 0.05 0.082213 2.6679e-06 2.31497e-07 2.718 ||| 0-0 0-1 ||| 20 374827 +del ||| from the whole ||| 0.0392157 0.082213 5.33579e-06 4.25828e-06 2.718 ||| 0-0 0-1 ||| 51 374827 +del ||| from the ||| 0.181323 0.082213 0.0201613 0.00752744 2.718 ||| 0-0 0-1 ||| 41677 374827 +del ||| from their ||| 0.00512821 0.0911315 1.33395e-05 2.51214e-05 2.718 ||| 0-0 ||| 975 374827 +del ||| from this ||| 0.0133091 0.0472235 0.000117387 4.97595e-05 2.718 ||| 0-0 0-1 ||| 3306 374827 +del ||| from those of the ||| 0.047619 0.0983502 2.6679e-06 1.60785e-06 2.718 ||| 0-0 0-2 0-3 ||| 21 374827 +del ||| from time ||| 0.00395257 0.0911315 2.6679e-06 3.55809e-05 2.718 ||| 0-0 ||| 253 374827 +del ||| from under Commission ||| 1 0.0911315 2.6679e-06 4.54216e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| from under the ||| 0.0714286 0.0530488 2.6679e-06 1.05726e-06 2.718 ||| 0-0 0-1 ||| 14 374827 +del ||| from under ||| 0.0740741 0.0911315 5.33579e-06 7.77634e-06 2.718 ||| 0-0 ||| 27 374827 +del ||| from us than they have ||| 1 0.0911315 2.6679e-06 7.44959e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| from us than they ||| 1 0.0911315 2.6679e-06 6.22886e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| from us than ||| 0.333333 0.0911315 2.6679e-06 1.90835e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| from us ||| 0.0030303 0.0911315 2.6679e-06 6.24665e-05 2.718 ||| 0-0 ||| 330 374827 +del ||| from what it is ||| 0.25 0.0911315 2.6679e-06 1.69487e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| from what it ||| 0.142857 0.0911315 2.6679e-06 5.40781e-07 2.718 ||| 0-0 ||| 7 374827 +del ||| from what my colleague , ||| 0.333333 0.0911315 2.6679e-06 1.29204e-13 2.718 ||| 0-0 ||| 3 374827 +del ||| from what my colleague ||| 0.333333 0.0911315 2.6679e-06 1.08343e-12 2.718 ||| 0-0 ||| 3 374827 +del ||| from what my ||| 0.166667 0.0911315 2.6679e-06 1.95565e-08 2.718 ||| 0-0 ||| 6 374827 +del ||| from what ||| 0.00511945 0.0911315 8.00369e-06 3.04097e-05 2.718 ||| 0-0 ||| 586 374827 +del ||| from which it ||| 0.0263158 0.0911315 2.6679e-06 3.27398e-06 2.718 ||| 0-0 ||| 38 374827 +del ||| from which ||| 0.00211193 0.0911315 5.33579e-06 0.000184105 2.718 ||| 0-0 ||| 947 374827 +del ||| from whom ||| 0.0149254 0.0911315 2.6679e-06 1.44344e-06 2.718 ||| 0-0 ||| 67 374827 +del ||| from within ||| 0.0224719 0.0491687 1.06716e-05 9.0529e-06 2.718 ||| 0-0 0-1 ||| 178 374827 +del ||| from work in the Councils . ||| 1 0.0911315 2.6679e-06 1.7474e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| from work in the Councils ||| 1 0.0911315 2.6679e-06 5.76889e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| from work in the ||| 0.333333 0.0911315 2.6679e-06 1.80278e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| from work in ||| 0.25 0.0911315 2.6679e-06 2.93651e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| from work ||| 0.0263158 0.0911315 2.6679e-06 1.37191e-05 2.718 ||| 0-0 ||| 38 374827 +del ||| from you , ||| 0.0147059 0.0911315 2.6679e-06 8.345e-06 2.718 ||| 0-0 ||| 68 374827 +del ||| from you in the ||| 0.5 0.0609179 2.6679e-06 6.55388e-07 2.718 ||| 0-0 0-2 0-3 ||| 2 374827 +del ||| from you ||| 0.00320513 0.0911315 2.6679e-06 6.99763e-05 2.718 ||| 0-0 ||| 312 374827 +del ||| from your ||| 0.00343643 0.0911315 2.6679e-06 5.54617e-06 2.718 ||| 0-0 ||| 291 374827 +del ||| from ||| 0.0359768 0.0911315 0.010813 0.0216732 2.718 ||| 0-0 ||| 112656 374827 +del ||| front of me - ||| 0.25 0.130625 2.6679e-06 5.39992e-11 2.718 ||| 0-1 ||| 4 374827 +del ||| front of me ||| 0.0222222 0.130625 2.6679e-06 1.43154e-08 2.718 ||| 0-1 ||| 45 374827 +del ||| front of ||| 0.00813008 0.130625 5.33579e-06 2.37758e-05 2.718 ||| 0-1 ||| 246 374827 +del ||| front passenger ||| 0.1 0.0131844 2.6679e-06 6.2465e-09 2.718 ||| 0-1 ||| 10 374827 +del ||| front-of-pack ||| 0.333333 0.142857 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 3 374827 +del ||| frontier of our ||| 1 0.130625 2.6679e-06 1.62761e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| frontier of ||| 0.0833333 0.130625 2.6679e-06 1.17994e-06 2.718 ||| 0-1 ||| 12 374827 +del ||| fuel ||| 0.00202102 0.0856903 1.33395e-05 0.0004019 2.718 ||| 0-0 ||| 2474 374827 +del ||| fulfil its ||| 0.00348432 0.0035806 2.6679e-06 1.25082e-08 2.718 ||| 0-1 ||| 287 374827 +del ||| fulfilled within ||| 0.2 0.0072058 2.6679e-06 4.80355e-09 2.718 ||| 0-1 ||| 5 374827 +del ||| full ||| 0.00023254 0.0013777 8.00369e-06 2.63e-05 2.718 ||| 0-0 ||| 12901 374827 +del ||| fully aware of the ||| 0.00440529 0.10196 2.6679e-06 1.61377e-09 2.718 ||| 0-2 0-3 ||| 227 374827 +del ||| fully reflects the ||| 0.0434783 0.0732944 2.6679e-06 4.80504e-10 2.718 ||| 0-2 ||| 23 374827 +del ||| fully support the direction they ||| 1 0.0732944 2.6679e-06 3.98652e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| fully support the direction ||| 1 0.0732944 2.6679e-06 1.22136e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| fully support the ||| 0.00483092 0.0732944 2.6679e-06 1.34659e-08 2.718 ||| 0-2 ||| 207 374827 +del ||| function of the ||| 0.0105263 0.10196 2.6679e-06 2.54084e-06 2.718 ||| 0-1 0-2 ||| 95 374827 +del ||| function of ||| 0.00485437 0.130625 2.6679e-06 7.31564e-06 2.718 ||| 0-1 ||| 206 374827 +del ||| functionary of the ||| 1 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| functioning of ||| 0.00126422 0.130625 2.6679e-06 4.57228e-06 2.718 ||| 0-1 ||| 791 374827 +del ||| functioning ||| 0.000320924 0.002181 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 3116 374827 +del ||| fundamental objective of ||| 0.0232558 0.130625 2.6679e-06 9.72912e-10 2.718 ||| 0-2 ||| 43 374827 +del ||| fundamentalism ||| 0.00183824 0.0390921 2.6679e-06 4.07e-05 2.718 ||| 0-0 ||| 544 374827 +del ||| funding from the ||| 0.00961538 0.082213 2.6679e-06 4.01213e-07 2.718 ||| 0-1 0-2 ||| 104 374827 +del ||| funds for the ||| 0.00813008 0.0732944 2.6679e-06 2.03673e-07 2.718 ||| 0-2 ||| 123 374827 +del ||| funds of the ||| 0.0588235 0.10196 2.6679e-06 7.81717e-06 2.718 ||| 0-1 0-2 ||| 17 374827 +del ||| funds should be entered in the ||| 1 0.0458111 2.6679e-06 1.83633e-15 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| further away from the ||| 0.0625 0.082213 2.6679e-06 1.15725e-09 2.718 ||| 0-2 0-3 ||| 16 374827 +del ||| further development of the ||| 0.00826446 0.10196 2.6679e-06 8.14532e-09 2.718 ||| 0-2 0-3 ||| 121 374827 +del ||| further down the education ||| 1 0.0732944 2.6679e-06 3.96073e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| further down the ||| 0.0285714 0.0732944 2.6679e-06 1.17181e-07 2.718 ||| 0-2 ||| 35 374827 +del ||| further than the ||| 0.0119048 0.0313352 5.33579e-06 6.94056e-08 2.718 ||| 0-1 ||| 168 374827 +del ||| further than ||| 0.00176056 0.0313352 2.6679e-06 1.13054e-06 2.718 ||| 0-1 ||| 568 374827 +del ||| furthermore , the ||| 0.000774593 0.0732944 2.6679e-06 1.90942e-06 2.718 ||| 0-2 ||| 1291 374827 +del ||| furthermore , ||| 0.000279877 0.0015004 5.33579e-06 2.50435e-06 2.718 ||| 0-0 ||| 7146 374827 +del ||| furthermore ||| 0.00037874 0.0015004 8.00369e-06 2.1e-05 2.718 ||| 0-0 ||| 7921 374827 +del ||| future of ||| 0.000235128 0.130625 2.6679e-06 7.83481e-05 2.718 ||| 0-1 ||| 4253 374827 +del ||| future users of ||| 0.166667 0.130625 2.6679e-06 8.14821e-10 2.718 ||| 0-2 ||| 6 374827 +del ||| gain from ||| 0.00483092 0.0911315 2.6679e-06 1.20936e-06 2.718 ||| 0-1 ||| 207 374827 +del ||| gained by ||| 0.0175439 0.0461582 2.6679e-06 5.12583e-07 2.718 ||| 0-1 ||| 57 374827 +del ||| gained from ||| 0.00662252 0.0911315 2.6679e-06 6.8704e-07 2.718 ||| 0-1 ||| 151 374827 +del ||| gained the ||| 0.015625 0.0732944 2.6679e-06 1.10099e-05 2.718 ||| 0-1 ||| 64 374827 +del ||| gas with regard to ||| 0.333333 0.0956522 2.6679e-06 3.74509e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| gas with regard ||| 0.333333 0.0956522 2.6679e-06 4.21469e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| gas with ||| 0.25 0.0956522 2.6679e-06 6.18988e-06 2.718 ||| 0-0 ||| 4 374827 +del ||| gas ||| 0.00261952 0.0956522 3.20148e-05 0.000968 2.718 ||| 0-0 ||| 4581 374827 +del ||| gave an indication of ||| 1 0.130625 2.6679e-06 2.36474e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| gave the ||| 0.00384615 0.0732944 2.6679e-06 2.90009e-05 2.718 ||| 0-1 ||| 260 374827 +del ||| gave up these ||| 1 0.0020886 2.6679e-06 1.63757e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| gave up ||| 0.0384615 0.0020886 2.6679e-06 1.57898e-08 2.718 ||| 0-1 ||| 26 374827 +del ||| gay pride ||| 0.0666667 0.0205761 2.6679e-06 1.65e-11 2.718 ||| 0-0 ||| 15 374827 +del ||| gay ||| 0.00704225 0.0205761 2.6679e-06 6.6e-06 2.718 ||| 0-0 ||| 142 374827 +del ||| generated by the ||| 0.0103093 0.0597263 2.6679e-06 7.46932e-08 2.718 ||| 0-1 0-2 ||| 97 374827 +del ||| generated by ||| 0.00334448 0.0461582 2.6679e-06 2.15058e-07 2.718 ||| 0-1 ||| 299 374827 +del ||| generous ||| 0.00107411 0.0020243 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 931 374827 +del ||| genius of stagnant ||| 0.5 0.130625 2.6679e-06 2.1239e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| genius of ||| 0.0833333 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-1 ||| 12 374827 +del ||| gentlemen of the ||| 0.0212766 0.10196 2.6679e-06 7.07951e-06 2.718 ||| 0-1 0-2 ||| 47 374827 +del ||| gentlemen of ||| 0.0357143 0.130625 2.6679e-06 2.03835e-05 2.718 ||| 0-1 ||| 28 374827 +del ||| get a ||| 0.00149925 0.0008087 2.6679e-06 3.69215e-07 2.718 ||| 0-1 ||| 667 374827 +del ||| get the ||| 0.0010101 0.0732944 2.6679e-06 0.000151846 2.718 ||| 0-1 ||| 990 374827 +del ||| get this settled ||| 1 0.0033154 2.6679e-06 1.66625e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| get this ||| 0.00458716 0.0033154 2.6679e-06 1.00377e-06 2.718 ||| 0-1 ||| 218 374827 +del ||| get through its bad ||| 1 0.0035806 2.6679e-06 4.49356e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| get through its ||| 1 0.0035806 2.6679e-06 9.83274e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| get through ||| 0.00694444 0.0017749 2.6679e-06 3.84736e-08 2.718 ||| 0-1 ||| 144 374827 +del ||| getting from the ||| 0.25 0.082213 2.6679e-06 8.74689e-07 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| getting into the ||| 0.0454545 0.0732944 2.6679e-06 4.14357e-08 2.718 ||| 0-2 ||| 22 374827 +del ||| getting on ||| 0.030303 0.0140673 2.6679e-06 1.13963e-06 2.718 ||| 0-1 ||| 33 374827 +del ||| getting to the ||| 0.025 0.0732944 2.6679e-06 3.58615e-06 2.718 ||| 0-2 ||| 40 374827 +del ||| gigantic ||| 0.00990099 0.0076923 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 101 374827 +del ||| girl 's ||| 1 0.169811 2.6679e-06 5.62533e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| girl living in the ||| 1 0.0458111 2.6679e-06 1.0988e-12 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| give notice of ||| 0.0909091 0.130625 2.6679e-06 6.88231e-09 2.718 ||| 0-2 ||| 11 374827 +del ||| give overall ||| 1 0.0063805 2.6679e-06 3.50268e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| give rise to strong ||| 0.333333 0.0002194 2.6679e-06 5.94321e-15 2.718 ||| 0-1 ||| 3 374827 +del ||| give rise to ||| 0.00224215 0.0002194 2.6679e-06 7.00025e-11 2.718 ||| 0-1 ||| 446 374827 +del ||| give rise ||| 0.00228833 0.0002194 2.6679e-06 7.878e-10 2.718 ||| 0-1 ||| 437 374827 +del ||| give the floor to ||| 0.00440529 0.0732944 2.6679e-06 7.94847e-10 2.718 ||| 0-1 ||| 227 374827 +del ||| give the floor ||| 0.00341297 0.0732944 2.6679e-06 8.94512e-09 2.718 ||| 0-1 ||| 293 374827 +del ||| give the ||| 0.00240529 0.0732944 1.06716e-05 0.000210473 2.718 ||| 0-1 ||| 1663 374827 +del ||| give to the ||| 0.0123457 0.0732944 2.6679e-06 1.87023e-05 2.718 ||| 0-2 ||| 81 374827 +del ||| give to ||| 0.00458716 0.0006066 2.6679e-06 8.06283e-07 2.718 ||| 0-1 ||| 218 374827 +del ||| given an indication ||| 0.5 0.0008398 2.6679e-06 2.66685e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| given an ||| 0.00606061 0.0008398 2.6679e-06 1.23465e-07 2.718 ||| 0-1 ||| 165 374827 +del ||| given by the Malta ||| 1 0.0597263 2.6679e-06 1.54171e-11 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| given by the ||| 0.0343915 0.0597263 3.46827e-05 3.85428e-06 2.718 ||| 0-1 0-2 ||| 378 374827 +del ||| given by ||| 0.0114007 0.0461582 1.86753e-05 1.10973e-05 2.718 ||| 0-1 ||| 614 374827 +del ||| given in the ||| 0.0258621 0.0458111 8.00369e-06 6.42779e-06 2.718 ||| 0-1 0-2 ||| 116 374827 +del ||| given that the ||| 0.00123609 0.0732944 2.6679e-06 4.00964e-06 2.718 ||| 0-2 ||| 809 374827 +del ||| given the media situation ||| 1 0.0732944 2.6679e-06 3.5354e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| given the media ||| 1 0.0732944 2.6679e-06 6.86485e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| given the option of ||| 0.0714286 0.0732944 2.6679e-06 5.36476e-10 2.718 ||| 0-1 ||| 14 374827 +del ||| given the option ||| 0.0625 0.0732944 2.6679e-06 9.86822e-09 2.718 ||| 0-1 ||| 16 374827 +del ||| given the ||| 0.00138614 0.0732944 1.86753e-05 0.000238363 2.718 ||| 0-1 ||| 5050 374827 +del ||| given to the ||| 0.00948509 0.0732944 1.86753e-05 2.11805e-05 2.718 ||| 0-2 ||| 738 374827 +del ||| given to ||| 0.000480307 0.0006066 2.6679e-06 9.13122e-07 2.718 ||| 0-1 ||| 2082 374827 +del ||| gives for the ||| 1 0.0435798 2.6679e-06 2.95936e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| gives less return on the ||| 0.333333 0.0436809 2.6679e-06 3.05803e-15 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| giving the European ||| 0.125 0.0400553 2.6679e-06 1.68086e-07 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| giving the ||| 0.00439239 0.0732944 8.00369e-06 5.4737e-05 2.718 ||| 0-1 ||| 683 374827 +del ||| giving to the ||| 0.0434783 0.0732944 2.6679e-06 4.86383e-06 2.718 ||| 0-2 ||| 23 374827 +del ||| giving ||| 0.000854701 0.0004942 1.06716e-05 5.3e-06 2.718 ||| 0-0 ||| 4680 374827 +del ||| global ||| 0.000214255 0.0018831 8.00369e-06 3.28e-05 2.718 ||| 0-0 ||| 14002 374827 +del ||| go about the ||| 0.25 0.0732944 2.6679e-06 2.87259e-07 2.718 ||| 0-2 ||| 4 374827 +del ||| go about ||| 0.00769231 0.0101916 2.6679e-06 8.21118e-07 2.718 ||| 0-1 ||| 130 374827 +del ||| go for the decision ||| 1 0.0138653 2.6679e-06 6.07567e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| go for the ||| 0.04 0.0138653 2.6679e-06 3.86247e-07 2.718 ||| 0-1 ||| 25 374827 +del ||| go for ||| 0.00606061 0.0138653 2.6679e-06 6.29151e-06 2.718 ||| 0-1 ||| 165 374827 +del ||| go hand in hand ||| 0.00383142 0.0183279 2.6679e-06 2.48048e-12 2.718 ||| 0-2 ||| 261 374827 +del ||| go hand in ||| 0.00765306 0.0183279 8.00369e-06 6.25436e-09 2.718 ||| 0-2 ||| 392 374827 +del ||| go in the ||| 0.0136986 0.0732944 2.6679e-06 4.34747e-06 2.718 ||| 0-2 ||| 73 374827 +del ||| go of ||| 0.1 0.130625 2.6679e-06 0.000172508 2.718 ||| 0-1 ||| 10 374827 +del ||| go on ||| 0.00125 0.0140673 2.6679e-06 5.73543e-06 2.718 ||| 0-1 ||| 800 374827 +del ||| go over ||| 0.0107527 0.006517 2.6679e-06 1.86668e-07 2.718 ||| 0-1 ||| 93 374827 +del ||| go up ||| 0.0243902 0.0020886 2.6679e-06 1.10586e-07 2.718 ||| 0-1 ||| 41 374827 +del ||| goal of a ||| 0.0151515 0.130625 2.6679e-06 4.38028e-07 2.718 ||| 0-1 ||| 66 374827 +del ||| goal of ||| 0.00140449 0.130625 2.6679e-06 9.88201e-06 2.718 ||| 0-1 ||| 712 374827 +del ||| goes against the ||| 0.00628931 0.0732944 2.6679e-06 1.14774e-08 2.718 ||| 0-2 ||| 159 374827 +del ||| goes down in history as ||| 0.333333 0.0183279 2.6679e-06 9.57812e-16 2.718 ||| 0-2 ||| 3 374827 +del ||| goes down in history ||| 0.333333 0.0183279 2.6679e-06 9.38627e-14 2.718 ||| 0-2 ||| 3 374827 +del ||| goes down in ||| 0.333333 0.0183279 2.6679e-06 2.6073e-09 2.718 ||| 0-2 ||| 3 374827 +del ||| goes hand in hand with a rise ||| 0.25 0.0183279 2.6679e-06 2.09137e-20 2.718 ||| 0-2 ||| 4 374827 +del ||| goes hand in hand with a ||| 0.0833333 0.0183279 2.6679e-06 1.6651e-16 2.718 ||| 0-2 ||| 12 374827 +del ||| goes hand in hand with ||| 0.00757576 0.0183279 2.6679e-06 3.75651e-15 2.718 ||| 0-2 ||| 132 374827 +del ||| goes hand in hand ||| 0.0181818 0.0183279 2.6679e-06 5.8746e-13 2.718 ||| 0-2 ||| 55 374827 +del ||| goes hand in ||| 0.0133333 0.0183279 2.6679e-06 1.48124e-09 2.718 ||| 0-2 ||| 75 374827 +del ||| goes the ||| 0.1 0.0732944 2.6679e-06 4.81032e-05 2.718 ||| 0-1 ||| 10 374827 +del ||| going from ||| 0.0238095 0.0911315 2.6679e-06 1.85479e-05 2.718 ||| 0-1 ||| 42 374827 +del ||| going on at a ||| 1 0.0140673 2.6679e-06 1.55787e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| going on at ||| 0.047619 0.0140673 2.6679e-06 3.51459e-08 2.718 ||| 0-1 ||| 21 374827 +del ||| going on in ||| 0.00512821 0.0161976 2.6679e-06 2.26336e-07 2.718 ||| 0-1 0-2 ||| 195 374827 +del ||| going on ||| 0.00392542 0.0140673 1.06716e-05 8.39326e-06 2.718 ||| 0-1 ||| 1019 374827 +del ||| going to deliver ||| 0.111111 0.0006066 2.6679e-06 4.22436e-11 2.718 ||| 0-1 ||| 9 374827 +del ||| going to wait for ||| 0.0833333 0.0138653 2.6679e-06 2.20893e-11 2.718 ||| 0-3 ||| 12 374827 +del ||| going to win the ||| 0.5 0.0732944 2.6679e-06 4.27868e-10 2.718 ||| 0-3 ||| 2 374827 +del ||| going to ||| 0.00128866 0.0006066 1.06716e-05 1.13864e-06 2.718 ||| 0-1 ||| 3104 374827 +del ||| good 's ||| 0.5 0.169811 2.6679e-06 2.08378e-05 2.718 ||| 0-1 ||| 2 374827 +del ||| good attempt to create a set of ||| 1 0.130625 2.6679e-06 3.31072e-18 2.718 ||| 0-6 ||| 1 374827 +del ||| good deal of ||| 0.0104167 0.130625 2.6679e-06 6.49551e-08 2.718 ||| 0-2 ||| 96 374827 +del ||| good dialogue with the ||| 0.333333 0.0732944 2.6679e-06 4.51492e-11 2.718 ||| 0-3 ||| 3 374827 +del ||| good filing the data ||| 1 0.0732944 2.6679e-06 5.71154e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| good filing the ||| 1 0.0732944 2.6679e-06 1.26083e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| good news for all consumers ||| 1 0.0138653 2.6679e-06 3.57929e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| good news for all ||| 0.0833333 0.0138653 2.6679e-06 9.5703e-13 2.718 ||| 0-2 ||| 12 374827 +del ||| good news for ||| 0.00526316 0.0138653 2.6679e-06 2.02529e-10 2.718 ||| 0-2 ||| 190 374827 +del ||| good of the ||| 0.0131579 0.10196 2.6679e-06 5.31322e-05 2.718 ||| 0-1 0-2 ||| 76 374827 +del ||| good the harm it has done , ||| 1 0.0732944 2.6679e-06 9.68339e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| good the harm it has done ||| 1 0.0732944 2.6679e-06 8.11992e-17 2.718 ||| 0-1 ||| 1 374827 +del ||| good the harm it has ||| 1 0.0732944 2.6679e-06 1.78068e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| good the harm it ||| 1 0.0732944 2.6679e-06 3.45932e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| good the harm ||| 1 0.0732944 2.6679e-06 1.94527e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| good the ||| 0.0227273 0.0732944 2.6679e-06 0.000180118 2.718 ||| 0-1 ||| 44 374827 +del ||| goods of ||| 0.0588235 0.130625 2.6679e-06 1.35988e-05 2.718 ||| 0-1 ||| 17 374827 +del ||| got a lot of fun ||| 1 0.130625 2.6679e-06 7.3926e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| got a lot of ||| 1 0.130625 2.6679e-06 1.84815e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| got out of hand ||| 0.0909091 0.130625 2.6679e-06 4.90247e-11 2.718 ||| 0-2 ||| 11 374827 +del ||| got out of ||| 0.0526316 0.130625 2.6679e-06 1.23612e-07 2.718 ||| 0-2 ||| 19 374827 +del ||| got the ||| 0.00657895 0.0732944 2.6679e-06 3.79963e-05 2.718 ||| 0-1 ||| 152 374827 +del ||| got wind of the ||| 0.5 0.130625 2.6679e-06 4.27939e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| got wind of ||| 0.5 0.130625 2.6679e-06 6.97063e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| govern the ||| 0.00757576 0.0732944 2.6679e-06 3.12584e-06 2.718 ||| 0-1 ||| 132 374827 +del ||| governed by ||| 0.00175747 0.0461582 2.6679e-06 3.55736e-07 2.718 ||| 0-1 ||| 569 374827 +del ||| governing international ||| 0.5 0.0012753 2.6679e-06 1.1819e-10 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| governing the ||| 0.00517063 0.0732944 1.33395e-05 6.73793e-06 2.718 ||| 0-1 ||| 967 374827 +del ||| governing ||| 0.000321647 0.0019773 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 3109 374827 +del ||| government ' s inability to prevent ||| 1 0.0028084 2.6679e-06 4.86107e-21 2.718 ||| 0-0 ||| 1 374827 +del ||| government ' s inability to ||| 1 0.0028084 2.6679e-06 9.51285e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| government ' s inability ||| 1 0.0028084 2.6679e-06 1.07057e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| government ' s ||| 0.1 0.0028084 2.6679e-06 3.34552e-10 2.718 ||| 0-0 ||| 10 374827 +del ||| government ' ||| 0.0227273 0.0028084 2.6679e-06 1.75867e-07 2.718 ||| 0-0 ||| 44 374827 +del ||| government 's attitude of ||| 1 0.130625 2.6679e-06 2.34302e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| government and people of Cuba ||| 0.5 0.130625 2.6679e-06 1.03944e-15 2.718 ||| 0-3 ||| 2 374827 +del ||| government and people of ||| 0.125 0.130625 2.6679e-06 2.59859e-10 2.718 ||| 0-3 ||| 8 374827 +del ||| government of the ||| 0.00452489 0.10196 2.6679e-06 8.186e-06 2.718 ||| 0-1 0-2 ||| 221 374827 +del ||| government of ||| 0.00229621 0.130625 5.33579e-06 2.35693e-05 2.718 ||| 0-1 ||| 871 374827 +del ||| government subsidy ||| 0.2 0.0028084 2.6679e-06 3.328e-10 2.718 ||| 0-0 ||| 5 374827 +del ||| government ||| 0.000493675 0.0028084 2.13432e-05 5.12e-05 2.718 ||| 0-0 ||| 16205 374827 +del ||| governments have grasped the fact that this ||| 1 0.0732944 2.6679e-06 8.14151e-20 2.718 ||| 0-3 ||| 1 374827 +del ||| governments have grasped the fact that ||| 0.5 0.0732944 2.6679e-06 1.26002e-17 2.718 ||| 0-3 ||| 2 374827 +del ||| governments have grasped the fact ||| 0.5 0.0732944 2.6679e-06 7.4905e-16 2.718 ||| 0-3 ||| 2 374827 +del ||| governments have grasped the ||| 0.5 0.0732944 2.6679e-06 2.5571e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| governor who is a ||| 1 0.0119048 2.6679e-06 1.59288e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| governor who is ||| 1 0.0119048 2.6679e-06 3.59357e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| governor who ||| 1 0.0119048 2.6679e-06 1.1466e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| governor ||| 0.0117647 0.0119048 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 85 374827 +del ||| gradual shift away from ||| 1 0.0911315 2.6679e-06 1.28316e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| gradual ||| 0.000891266 0.0017905 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 1122 374827 +del ||| grant of the ||| 1 0.10196 2.6679e-06 3.24776e-06 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| granted by the ||| 0.0138889 0.0597263 5.33579e-06 4.54898e-07 2.718 ||| 0-1 0-2 ||| 144 374827 +del ||| granted by ||| 0.00454545 0.0461582 2.6679e-06 1.30975e-06 2.718 ||| 0-1 ||| 220 374827 +del ||| granted for the ||| 0.047619 0.0435798 2.6679e-06 3.02662e-07 2.718 ||| 0-1 0-2 ||| 21 374827 +del ||| granted for ||| 0.0108696 0.0138653 2.6679e-06 8.7143e-07 2.718 ||| 0-1 ||| 92 374827 +del ||| granted refugee ||| 1 0.0171548 2.6679e-06 4.3659e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| granted to ||| 0.00210526 0.0006066 2.6679e-06 1.07771e-07 2.718 ||| 0-1 ||| 475 374827 +del ||| granted under the ||| 0.0714286 0.0732944 2.6679e-06 1.0094e-08 2.718 ||| 0-2 ||| 14 374827 +del ||| grasped the fact that this enlargement that ||| 1 0.0732944 2.6679e-06 1.01118e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| grasped the fact that this enlargement ||| 1 0.0732944 2.6679e-06 6.01121e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| grasped the fact that this ||| 1 0.0732944 2.6679e-06 1.99047e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| grasped the fact that ||| 0.5 0.0732944 2.6679e-06 3.08055e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| grasped the fact ||| 0.5 0.0732944 2.6679e-06 1.83131e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| grasped the ||| 0.0294118 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-1 ||| 34 374827 +del ||| grassroots of the ||| 1 0.10196 2.6679e-06 3.2785e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| grateful for the ||| 0.00537634 0.0435798 2.6679e-06 8.482e-08 2.718 ||| 0-1 0-2 ||| 186 374827 +del ||| grateful for ||| 0.0025 0.0138653 2.6679e-06 2.44216e-07 2.718 ||| 0-1 ||| 400 374827 +del ||| great deal of good to come ||| 1 0.130625 2.6679e-06 1.92648e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| great deal of good to ||| 1 0.130625 2.6679e-06 2.26831e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| great deal of good ||| 0.1 0.130625 2.6679e-06 2.55273e-11 2.718 ||| 0-2 ||| 10 374827 +del ||| great deal of ||| 0.00286123 0.130625 1.06716e-05 4.92236e-08 2.718 ||| 0-2 ||| 1398 374827 +del ||| great extent on the ||| 0.333333 0.0732944 2.6679e-06 1.75534e-10 2.718 ||| 0-3 ||| 3 374827 +del ||| great importance to the ||| 0.00657895 0.0732944 2.6679e-06 1.57552e-09 2.718 ||| 0-3 ||| 152 374827 +del ||| greater than the expense ||| 0.5 0.0523148 2.6679e-06 2.07577e-12 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| greater than the ||| 0.00847458 0.0523148 2.6679e-06 1.06998e-07 2.718 ||| 0-1 0-2 ||| 118 374827 +del ||| greater volume of ||| 0.166667 0.130625 2.6679e-06 5.59434e-10 2.718 ||| 0-2 ||| 6 374827 +del ||| greatest scourge of humanity ||| 0.25 0.130625 2.6679e-06 5.558e-17 2.718 ||| 0-2 ||| 4 374827 +del ||| greatest scourge of ||| 0.25 0.130625 2.6679e-06 1.73687e-11 2.718 ||| 0-2 ||| 4 374827 +del ||| green ||| 0.000533903 0.000969 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 1873 374827 +del ||| greenhouse gas ||| 0.00392157 0.0956522 2.6679e-06 3.0976e-09 2.718 ||| 0-1 ||| 255 374827 +del ||| grip of a typhoon ||| 0.25 0.130625 2.6679e-06 2.38758e-13 2.718 ||| 0-1 ||| 4 374827 +del ||| grip of a ||| 0.1 0.130625 2.6679e-06 2.17053e-07 2.718 ||| 0-1 ||| 10 374827 +del ||| grip of ||| 0.0338983 0.130625 5.33579e-06 4.89676e-06 2.718 ||| 0-1 ||| 59 374827 +del ||| gross distortions of ||| 0.5 0.130625 2.6679e-06 1.0528e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| ground , of ||| 0.125 0.130625 2.6679e-06 4.11587e-06 2.718 ||| 0-2 ||| 8 374827 +del ||| ground of ||| 0.0384615 0.130625 2.6679e-06 3.45133e-05 2.718 ||| 0-1 ||| 26 374827 +del ||| ground on ||| 0.0344828 0.0140673 2.6679e-06 1.14748e-06 2.718 ||| 0-1 ||| 29 374827 +del ||| ground water ||| 0.0185185 0.0856775 2.6679e-06 1.22628e-07 2.718 ||| 0-1 ||| 54 374827 +del ||| ground-level ||| 0.142857 0.25 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 7 374827 +del ||| grounds for ||| 0.00337268 0.0138653 5.33579e-06 1.1264e-06 2.718 ||| 0-1 ||| 593 374827 +del ||| grounds of ||| 0.0030349 0.130625 5.33579e-06 3.0885e-05 2.718 ||| 0-1 ||| 659 374827 +del ||| group 's ||| 0.0131579 0.169811 2.6679e-06 5.1753e-06 2.718 ||| 0-1 ||| 76 374827 +del ||| group in the ||| 0.0196078 0.0458111 2.6679e-06 1.20632e-06 2.718 ||| 0-1 0-2 ||| 51 374827 +del ||| group of ||| 0.00137552 0.130625 5.33579e-06 3.79941e-05 2.718 ||| 0-1 ||| 1454 374827 +del ||| groupings to the ||| 1 0.0732944 2.6679e-06 5.55513e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| growing number of ||| 0.00595238 0.130625 2.6679e-06 5.51724e-09 2.718 ||| 0-2 ||| 168 374827 +del ||| grown by ||| 0.0357143 0.0461582 2.6679e-06 2.68419e-07 2.718 ||| 0-1 ||| 28 374827 +del ||| growth ||| 0.000322248 0.0069093 1.33395e-05 0.0001524 2.718 ||| 0-0 ||| 15516 374827 +del ||| guarantee of the ||| 0.0128205 0.10196 2.6679e-06 6.19841e-06 2.718 ||| 0-1 0-2 ||| 78 374827 +del ||| guarantee of ||| 0.0015083 0.130625 2.6679e-06 1.78466e-05 2.718 ||| 0-1 ||| 663 374827 +del ||| guaranteed from ||| 0.25 0.0911315 2.6679e-06 7.65064e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| guarantees for fundamental rights protection , ||| 1 0.0138653 2.6679e-06 2.59498e-20 2.718 ||| 0-1 ||| 1 374827 +del ||| guarantees for fundamental rights protection ||| 1 0.0138653 2.6679e-06 2.176e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| guarantees for fundamental rights ||| 0.333333 0.0138653 2.6679e-06 2.14384e-15 2.718 ||| 0-1 ||| 3 374827 +del ||| guarantees for fundamental ||| 1 0.0138653 2.6679e-06 1.07139e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| guarantees for ||| 0.00485437 0.0138653 2.6679e-06 2.1732e-07 2.718 ||| 0-1 ||| 206 374827 +del ||| guiding this ||| 0.111111 0.0033154 2.6679e-06 2.15815e-08 2.718 ||| 0-1 ||| 9 374827 +del ||| guilty of ||| 0.00595238 0.130625 5.33579e-06 6.25369e-06 2.718 ||| 0-1 ||| 336 374827 +del ||| guise of ||| 0.00671141 0.130625 2.6679e-06 9.43954e-07 2.718 ||| 0-1 ||| 149 374827 +del ||| had as ||| 0.0333333 0.0004965 2.6679e-06 2.58352e-07 2.718 ||| 0-1 ||| 30 374827 +del ||| had assumed responsibility for ||| 0.5 0.0138653 2.6679e-06 1.62135e-14 2.718 ||| 0-3 ||| 2 374827 +del ||| had been put by ||| 1 0.0461582 2.6679e-06 5.97543e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| had come out in favour ||| 1 0.0183279 2.6679e-06 2.84844e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| had come out in ||| 1 0.0183279 2.6679e-06 8.80506e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| had done her work in the ||| 1 0.0458111 2.6679e-06 7.38327e-16 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| had drawn up the ||| 1 0.0732944 2.6679e-06 1.68943e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| had expected the ||| 0.25 0.0732944 2.6679e-06 1.85804e-08 2.718 ||| 0-2 ||| 4 374827 +del ||| had in the ||| 0.020202 0.0458111 5.33579e-06 9.40051e-06 2.718 ||| 0-1 0-2 ||| 99 374827 +del ||| had in ||| 0.00319489 0.0183279 2.6679e-06 2.70662e-05 2.718 ||| 0-1 ||| 313 374827 +del ||| had made in ||| 0.166667 0.0183279 2.6679e-06 5.66982e-08 2.718 ||| 0-2 ||| 6 374827 +del ||| had occurred in the ||| 0.333333 0.0458111 2.6679e-06 3.99522e-10 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| had on ||| 0.00757576 0.0140673 2.6679e-06 9.84379e-06 2.718 ||| 0-1 ||| 132 374827 +del ||| had the ||| 0.0015528 0.0732944 8.00369e-06 0.000348601 2.718 ||| 0-1 ||| 1932 374827 +del ||| had their hands in the ||| 0.5 0.0458111 2.6679e-06 1.09833e-12 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| had to say ||| 0.00769231 0.0006066 2.6679e-06 1.2764e-09 2.718 ||| 0-1 ||| 130 374827 +del ||| had to ||| 0.000320616 0.0006066 2.6679e-06 1.33542e-06 2.718 ||| 0-1 ||| 3119 374827 +del ||| had with the ||| 0.016129 0.0732944 2.6679e-06 2.22913e-06 2.718 ||| 0-2 ||| 62 374827 +del ||| had with ||| 0.00534759 0.0045281 2.6679e-06 1.91024e-06 2.718 ||| 0-1 ||| 187 374827 +del ||| had ||| 4.32208e-05 2.63e-05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 23137 374827 +del ||| half of the ||| 0.00104712 0.10196 2.6679e-06 2.95065e-06 2.718 ||| 0-1 0-2 ||| 955 374827 +del ||| hall of the ||| 1 0.10196 2.6679e-06 2.25397e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| halls in the ||| 1 0.0732944 2.6679e-06 5.20388e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| halt the ||| 0.00543478 0.0732944 2.6679e-06 7.01578e-06 2.718 ||| 0-1 ||| 184 374827 +del ||| hand , the ||| 0.00121065 0.0732944 2.6679e-06 1.64268e-05 2.718 ||| 0-2 ||| 826 374827 +del ||| hand in hand with a rise in ||| 0.25 0.0183279 2.6679e-06 3.23211e-18 2.718 ||| 0-1 ||| 4 374827 +del ||| hand in hand with a rise ||| 0.25 0.0183279 2.6679e-06 1.51001e-16 2.718 ||| 0-1 ||| 4 374827 +del ||| hand in hand with a ||| 0.0175439 0.0183279 2.6679e-06 1.20224e-12 2.718 ||| 0-1 ||| 57 374827 +del ||| hand in hand with ||| 0.00176678 0.0183279 2.6679e-06 2.71228e-11 2.718 ||| 0-1 ||| 566 374827 +del ||| hand in hand ||| 0.00749064 0.0183279 5.33579e-06 4.24159e-09 2.718 ||| 0-1 ||| 267 374827 +del ||| hand in ||| 0.00824742 0.0183279 1.06716e-05 1.06949e-05 2.718 ||| 0-1 ||| 485 374827 +del ||| hand of ||| 0.0102041 0.130625 2.6679e-06 0.000116991 2.718 ||| 0-1 ||| 98 374827 +del ||| hand the ||| 0.00735294 0.0732944 2.6679e-06 0.000137745 2.718 ||| 0-1 ||| 136 374827 +del ||| hand to the ||| 0.0344828 0.0732944 2.6679e-06 1.22398e-05 2.718 ||| 0-2 ||| 29 374827 +del ||| hand we have the ||| 0.0833333 0.0732944 2.6679e-06 1.87019e-08 2.718 ||| 0-3 ||| 12 374827 +del ||| handed down by the European ||| 0.5 0.0597263 2.6679e-06 4.05097e-13 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| handed down by the ||| 0.0952381 0.0597263 5.33579e-06 1.21145e-10 2.718 ||| 0-2 0-3 ||| 21 374827 +del ||| handful of ||| 0.00628931 0.130625 2.6679e-06 8.55458e-07 2.718 ||| 0-1 ||| 159 374827 +del ||| handled by ||| 0.0149254 0.0461582 2.6679e-06 3.31481e-07 2.718 ||| 0-1 ||| 67 374827 +del ||| handling of ||| 0.00277778 0.130625 2.6679e-06 3.83481e-06 2.718 ||| 0-1 ||| 360 374827 +del ||| hands in the ||| 0.181818 0.0458111 5.33579e-06 9.44078e-07 2.718 ||| 0-1 0-2 ||| 11 374827 +del ||| hands of men ||| 0.166667 0.130625 2.6679e-06 1.26372e-09 2.718 ||| 0-1 ||| 6 374827 +del ||| hands of the ||| 0.00963391 0.10196 1.33395e-05 1.03273e-05 2.718 ||| 0-1 0-2 ||| 519 374827 +del ||| hands of ||| 0.000933707 0.130625 2.6679e-06 2.97345e-05 2.718 ||| 0-1 ||| 1071 374827 +del ||| hands on the ||| 0.0555556 0.0732944 2.6679e-06 2.34248e-07 2.718 ||| 0-2 ||| 18 374827 +del ||| happen - that this ||| 1 0.0033154 2.6679e-06 1.58355e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| happen over the ||| 0.333333 0.0732944 2.6679e-06 1.81782e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| happen to be the interests of ||| 0.5 0.130625 2.6679e-06 4.34614e-13 2.718 ||| 0-5 ||| 2 374827 +del ||| happened with the ||| 0.0116279 0.0389112 2.6679e-06 4.09166e-08 2.718 ||| 0-1 0-2 ||| 86 374827 +del ||| happening ||| 0.000830565 0.0007937 5.33579e-06 3.9e-06 2.718 ||| 0-0 ||| 2408 374827 +del ||| happiness by looking at tea ||| 0.5 0.0461582 2.6679e-06 3.51019e-21 2.718 ||| 0-1 ||| 2 374827 +del ||| happiness by looking at ||| 0.5 0.0461582 2.6679e-06 5.01456e-15 2.718 ||| 0-1 ||| 2 374827 +del ||| happiness by looking ||| 0.5 0.0461582 2.6679e-06 1.19754e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| happiness by ||| 0.5 0.0461582 2.6679e-06 1.13189e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| hard for ||| 0.00657895 0.0138653 2.6679e-06 1.13071e-06 2.718 ||| 0-1 ||| 152 374827 +del ||| hard of ||| 0.111111 0.130625 2.6679e-06 3.1003e-05 2.718 ||| 0-1 ||| 9 374827 +del ||| hard on the heels ||| 0.166667 0.0140673 2.6679e-06 2.72107e-13 2.718 ||| 0-1 ||| 6 374827 +del ||| hard on the ||| 0.0344828 0.0140673 2.6679e-06 6.32807e-08 2.718 ||| 0-1 ||| 29 374827 +del ||| hard on ||| 0.00609756 0.0140673 2.6679e-06 1.03077e-06 2.718 ||| 0-1 ||| 164 374827 +del ||| hardware ||| 0.011236 0.0642202 2.6679e-06 9.2e-06 2.718 ||| 0-0 ||| 89 374827 +del ||| hardworking ||| 0.0277778 0.02 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 36 374827 +del ||| harmonize the ||| 0.015873 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-1 ||| 63 374827 +del ||| harps on ||| 1 0.0140673 2.6679e-06 3.923e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| has a ||| 0.000185494 0.0008087 2.6679e-06 4.34706e-06 2.718 ||| 0-1 ||| 5391 374827 +del ||| has acted more rapidly than in the ||| 1 0.0409858 2.6679e-06 5.94564e-20 2.718 ||| 0-4 0-5 0-6 ||| 1 374827 +del ||| has also done - that we in ||| 1 0.0183279 2.6679e-06 2.30192e-16 2.718 ||| 0-6 ||| 1 374827 +del ||| has an ||| 0.000980392 0.0008398 2.6679e-06 9.26035e-07 2.718 ||| 0-1 ||| 1020 374827 +del ||| has been accepted by the ||| 0.0625 0.0732944 2.6679e-06 1.92755e-12 2.718 ||| 0-4 ||| 16 374827 +del ||| has been dealing with ||| 0.0555556 0.0045281 2.6679e-06 3.37928e-12 2.718 ||| 0-3 ||| 18 374827 +del ||| has been done to ||| 0.012987 0.0006066 2.6679e-06 1.04284e-11 2.718 ||| 0-3 ||| 77 374827 +del ||| has been in ||| 0.004662 0.0183279 5.33579e-06 4.63513e-07 2.718 ||| 0-2 ||| 429 374827 +del ||| has been included in the ||| 0.027027 0.0458111 2.6679e-06 1.51165e-11 2.718 ||| 0-3 0-4 ||| 37 374827 +del ||| has been made of ||| 0.0526316 0.130625 2.6679e-06 1.06214e-08 2.718 ||| 0-3 ||| 19 374827 +del ||| has been made over the ||| 0.25 0.0399057 2.6679e-06 3.9918e-12 2.718 ||| 0-3 0-4 ||| 4 374827 +del ||| has been presented by ||| 0.0625 0.0461582 2.6679e-06 2.19013e-11 2.718 ||| 0-3 ||| 16 374827 +del ||| has been prevented from attending ||| 0.333333 0.0911315 2.6679e-06 7.27254e-17 2.718 ||| 0-3 ||| 3 374827 +del ||| has been prevented from ||| 0.125 0.0911315 2.6679e-06 8.45644e-12 2.718 ||| 0-3 ||| 8 374827 +del ||| has been proposed by the ||| 0.0526316 0.0597263 2.6679e-06 1.07729e-11 2.718 ||| 0-3 0-4 ||| 19 374827 +del ||| has been the ||| 0.00218102 0.0732944 5.33579e-06 5.96985e-06 2.718 ||| 0-2 ||| 917 374827 +del ||| has been unfair on ||| 1 0.0140673 2.6679e-06 1.33175e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| has come from the ||| 0.0588235 0.0732944 2.6679e-06 2.44521e-09 2.718 ||| 0-3 ||| 17 374827 +del ||| has come out of the ||| 0.0833333 0.10196 2.6679e-06 1.71564e-09 2.718 ||| 0-3 0-4 ||| 12 374827 +del ||| has come out with ||| 0.2 0.0045281 2.6679e-06 3.18703e-11 2.718 ||| 0-3 ||| 5 374827 +del ||| has drawn the ||| 0.0833333 0.0732944 2.6679e-06 2.54048e-07 2.718 ||| 0-2 ||| 12 374827 +del ||| has for ||| 0.00657895 0.0138653 2.6679e-06 5.53789e-05 2.718 ||| 0-1 ||| 152 374827 +del ||| has given an indication ||| 1 0.0008398 2.6679e-06 1.37276e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| has given an ||| 0.04 0.0008398 2.6679e-06 6.35538e-10 2.718 ||| 0-2 ||| 25 374827 +del ||| has got out of hand ||| 0.2 0.130625 2.6679e-06 2.52355e-13 2.718 ||| 0-3 ||| 5 374827 +del ||| has got out of ||| 0.166667 0.130625 2.6679e-06 6.36295e-10 2.718 ||| 0-3 ||| 6 374827 +del ||| has hit the ||| 0.0243902 0.0732944 2.6679e-06 5.59584e-08 2.718 ||| 0-2 ||| 41 374827 +del ||| has just given ||| 0.0208333 0.0056007 2.6679e-06 1.16015e-09 2.718 ||| 0-1 ||| 48 374827 +del ||| has just said ||| 0.00184843 0.0056007 2.6679e-06 6.95278e-10 2.718 ||| 0-1 ||| 541 374827 +del ||| has just ||| 0.000527148 0.0056007 5.33579e-06 1.69044e-06 2.718 ||| 0-1 ||| 3794 374827 +del ||| has left the ||| 0.0178571 0.0732944 2.6679e-06 3.37717e-07 2.718 ||| 0-2 ||| 56 374827 +del ||| has merely come out of the ||| 1 0.10196 2.6679e-06 1.09286e-13 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| has now put on the table ||| 1 0.0436809 2.6679e-06 2.69608e-15 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| has now put on the ||| 1 0.0436809 2.6679e-06 3.98239e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| has obliged the ||| 0.5 0.0732944 2.6679e-06 6.81155e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| has of the ||| 0.666667 0.10196 5.33579e-06 0.000527377 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| has originated in the ||| 1 0.0458111 2.6679e-06 1.06064e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| has promulgated the ||| 1 0.0732944 2.6679e-06 7.15123e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| has recently called on Turkish migrants in ||| 1 0.0140673 2.6679e-06 1.90924e-24 2.718 ||| 0-3 ||| 1 374827 +del ||| has recently called on Turkish migrants ||| 1 0.0140673 2.6679e-06 8.91979e-23 2.718 ||| 0-3 ||| 1 374827 +del ||| has recently called on Turkish ||| 1 0.0140673 2.6679e-06 1.78396e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| has recently called on ||| 1 0.0140673 2.6679e-06 5.96641e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| has the consequence of ||| 1 0.130625 2.6679e-06 3.29065e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| has the ||| 0.00251678 0.0732944 2.40111e-05 0.00178781 2.718 ||| 0-1 ||| 3576 374827 +del ||| has to do with the ||| 0.00568182 0.0732944 2.6679e-06 3.48971e-09 2.718 ||| 0-4 ||| 176 374827 +del ||| has to ||| 0.00016559 0.0006066 2.6679e-06 6.84875e-06 2.718 ||| 0-1 ||| 6039 374827 +del ||| has written in his ||| 0.5 0.00992395 2.6679e-06 4.19205e-13 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| haulage ||| 0.00442478 0.158333 2.6679e-06 7.49e-05 2.718 ||| 0-0 ||| 226 374827 +del ||| have , of course ||| 0.0144928 0.130625 2.6679e-06 5.30831e-07 2.718 ||| 0-2 ||| 69 374827 +del ||| have , of ||| 0.025 0.130625 2.6679e-06 0.000420727 2.718 ||| 0-2 ||| 40 374827 +del ||| have a negative impact on the protection ||| 1 0.0140673 2.6679e-06 6.24681e-20 2.718 ||| 0-4 ||| 1 374827 +del ||| have a negative impact on the ||| 0.0222222 0.0140673 2.6679e-06 6.15449e-16 2.718 ||| 0-4 ||| 45 374827 +del ||| have a negative impact on ||| 0.0104167 0.0140673 2.6679e-06 1.00249e-14 2.718 ||| 0-4 ||| 96 374827 +del ||| have a seat in the ||| 0.25 0.0732944 2.6679e-06 6.38447e-11 2.718 ||| 0-4 ||| 4 374827 +del ||| have a ||| 0.000249232 0.0008087 8.00369e-06 1.01001e-05 2.718 ||| 0-1 ||| 12037 374827 +del ||| have an ||| 0.000458716 0.0008398 2.6679e-06 2.15157e-06 2.718 ||| 0-1 ||| 2180 374827 +del ||| have at the ||| 0.0243902 0.0732944 2.6679e-06 1.73937e-05 2.718 ||| 0-2 ||| 41 374827 +del ||| have been an ||| 0.015873 0.0008398 2.6679e-06 7.18452e-09 2.718 ||| 0-2 ||| 63 374827 +del ||| have been appropriated by ||| 0.0625 0.0461582 2.6679e-06 1.6144e-12 2.718 ||| 0-3 ||| 16 374827 +del ||| have been brought on ||| 0.25 0.0140673 2.6679e-06 1.09669e-10 2.718 ||| 0-3 ||| 4 374827 +del ||| have been disrupted ||| 0.333333 0.0067114 2.6679e-06 5.1917e-11 2.718 ||| 0-2 ||| 3 374827 +del ||| have been for ||| 0.03125 0.0138653 2.6679e-06 4.29649e-07 2.718 ||| 0-2 ||| 32 374827 +del ||| have been in ||| 0.00330033 0.0183279 2.6679e-06 1.07693e-06 2.718 ||| 0-2 ||| 303 374827 +del ||| have been made to the ||| 0.0526316 0.0732944 2.6679e-06 2.58185e-09 2.718 ||| 0-4 ||| 19 374827 +del ||| have been occupied ||| 0.142857 0.0012005 2.6679e-06 5.1917e-11 2.718 ||| 0-2 ||| 7 374827 +del ||| have been taken on ||| 0.0555556 0.0140673 2.6679e-06 3.57011e-10 2.718 ||| 0-3 ||| 18 374827 +del ||| have caused the ||| 0.0909091 0.0732944 5.33579e-06 3.5266e-07 2.718 ||| 0-2 ||| 22 374827 +del ||| have changed in the ||| 0.333333 0.0458111 2.6679e-06 3.66285e-09 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| have come along the ||| 1 0.0732944 2.6679e-06 6.15609e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| have come out of the ||| 0.333333 0.10196 2.6679e-06 3.98616e-09 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| have contributed to the debate for ||| 0.333333 0.0732944 2.6679e-06 5.27719e-15 2.718 ||| 0-3 ||| 3 374827 +del ||| have contributed to the debate ||| 0.037037 0.0732944 2.6679e-06 6.86625e-13 2.718 ||| 0-3 ||| 27 374827 +del ||| have contributed to the ||| 0.00869565 0.0732944 2.6679e-06 3.46956e-09 2.718 ||| 0-3 ||| 115 374827 +del ||| have dot sex ||| 0.5 0.0635335 2.6679e-06 4.58778e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| have ensued as a result of the ||| 1 0.10196 2.6679e-06 1.16722e-16 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| have fallen from the ||| 0.5 0.082213 2.6679e-06 1.3594e-09 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| have from the ||| 0.0434783 0.082213 2.6679e-06 9.00267e-05 2.718 ||| 0-1 0-2 ||| 23 374827 +del ||| have gained the ||| 0.0625 0.0732944 2.6679e-06 1.31676e-07 2.718 ||| 0-2 ||| 16 374827 +del ||| have got wind of the ||| 0.5 0.130625 2.6679e-06 5.11807e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| have got wind of ||| 0.333333 0.130625 2.6679e-06 8.33673e-12 2.718 ||| 0-3 ||| 3 374827 +del ||| have grasped the fact that this enlargement ||| 1 0.0732944 2.6679e-06 7.18928e-20 2.718 ||| 0-2 ||| 1 374827 +del ||| have grasped the fact that this ||| 1 0.0732944 2.6679e-06 2.38056e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| have grasped the fact that ||| 0.5 0.0732944 2.6679e-06 3.68428e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| have grasped the fact ||| 0.5 0.0732944 2.6679e-06 2.19021e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| have grasped the ||| 0.125 0.0732944 2.6679e-06 7.47689e-09 2.718 ||| 0-2 ||| 8 374827 +del ||| have grown by ||| 0.0909091 0.0461582 2.6679e-06 3.21023e-09 2.718 ||| 0-2 ||| 11 374827 +del ||| have had in the ||| 0.0434783 0.0458111 2.6679e-06 1.12428e-07 2.718 ||| 0-2 0-3 ||| 23 374827 +del ||| have had with the ||| 0.0625 0.0732944 2.6679e-06 2.66599e-08 2.718 ||| 0-3 ||| 16 374827 +del ||| have heard the ||| 0.0277778 0.0732944 2.6679e-06 3.28983e-07 2.718 ||| 0-2 ||| 36 374827 +del ||| have held the ||| 0.142857 0.0732944 2.6679e-06 1.05964e-06 2.718 ||| 0-2 ||| 7 374827 +del ||| have in the ||| 0.00534759 0.0458111 2.6679e-06 0.000112014 2.718 ||| 0-1 0-2 ||| 187 374827 +del ||| have in ||| 0.00194175 0.0183279 5.33579e-06 0.000322513 2.718 ||| 0-1 ||| 1030 374827 +del ||| have increased ||| 0.0027027 0.0190026 2.6679e-06 3.34635e-06 2.718 ||| 0-1 ||| 370 374827 +del ||| have indeed made the ||| 1 0.0732944 2.6679e-06 6.59482e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| have just ||| 0.000578704 0.0056007 2.6679e-06 3.9276e-06 2.718 ||| 0-1 ||| 1728 374827 +del ||| have lost count of abortive European ||| 0.333333 0.130625 2.6679e-06 7.33015e-21 2.718 ||| 0-3 ||| 3 374827 +del ||| have lost count of abortive ||| 0.333333 0.130625 2.6679e-06 2.1921e-18 2.718 ||| 0-3 ||| 3 374827 +del ||| have lost count of ||| 0.2 0.130625 2.6679e-06 5.48024e-12 2.718 ||| 0-3 ||| 5 374827 +del ||| have observed the ||| 0.333333 0.0732944 2.6679e-06 1.16723e-07 2.718 ||| 0-2 ||| 3 374827 +del ||| have produced by the ||| 1 0.0597263 2.6679e-06 7.10622e-09 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| have put into your ||| 1 0.0017627 2.6679e-06 1.03167e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| have reached into the ||| 1 0.0732944 2.6679e-06 4.60591e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| have received from the ||| 0.037037 0.082213 2.6679e-06 8.0664e-09 2.718 ||| 0-2 0-3 ||| 27 374827 +del ||| have received the ||| 0.025 0.0732944 2.6679e-06 3.72183e-07 2.718 ||| 0-2 ||| 40 374827 +del ||| have recourse to the ||| 0.0454545 0.0732944 2.6679e-06 4.50304e-09 2.718 ||| 0-3 ||| 22 374827 +del ||| have seen the ||| 0.0106383 0.0732944 2.6679e-06 8.74381e-07 2.718 ||| 0-2 ||| 94 374827 +del ||| have suffered the effects of ||| 0.2 0.130625 2.6679e-06 4.02217e-13 2.718 ||| 0-4 ||| 5 374827 +del ||| have taken over ||| 0.0357143 0.006517 2.6679e-06 3.47971e-09 2.718 ||| 0-2 ||| 28 374827 +del ||| have the previous ||| 0.5 0.0732944 2.6679e-06 2.12261e-07 2.718 ||| 0-1 ||| 2 374827 +del ||| have the ||| 0.0042953 0.0732944 8.53727e-05 0.00415383 2.718 ||| 0-1 ||| 7450 374827 +del ||| have this ||| 0.00166945 0.0033154 2.6679e-06 2.74585e-05 2.718 ||| 0-1 ||| 599 374827 +del ||| have to say ||| 0.00208333 0.0006066 2.6679e-06 1.52092e-08 2.718 ||| 0-1 ||| 480 374827 +del ||| have to tackle the ||| 0.222222 0.0732944 5.33579e-06 1.33984e-08 2.718 ||| 0-3 ||| 9 374827 +del ||| have to ||| 0.00027604 0.0006066 8.00369e-06 1.59125e-05 2.718 ||| 0-1 ||| 10868 374827 +del ||| have understandably increased as a result ||| 1 0.0190026 2.6679e-06 1.75322e-18 2.718 ||| 0-2 ||| 1 374827 +del ||| have understandably increased as a ||| 1 0.0190026 2.6679e-06 3.32996e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| have understandably increased as ||| 1 0.0190026 2.6679e-06 7.51245e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| have understandably increased ||| 1 0.0190026 2.6679e-06 7.36197e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| have voted for it - ||| 1 0.0138653 2.6679e-06 3.47832e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| have voted for it ||| 0.2 0.0138653 2.6679e-06 9.22118e-11 2.718 ||| 0-2 ||| 5 374827 +del ||| have voted for ||| 0.015625 0.0138653 2.6679e-06 5.18533e-09 2.718 ||| 0-2 ||| 64 374827 +del ||| have with the ||| 0.0212766 0.0389112 2.6679e-06 7.90556e-06 2.718 ||| 0-1 0-2 ||| 47 374827 +del ||| haven of the ||| 1 0.10196 2.6679e-06 3.2785e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| having the ||| 0.00733945 0.0732944 1.06716e-05 0.000132987 2.718 ||| 0-1 ||| 545 374827 +del ||| he had as ||| 1 0.0004965 2.6679e-06 2.25464e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| he includes in his ||| 1 0.0183279 2.6679e-06 2.05791e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| he includes in ||| 1 0.0183279 2.6679e-06 6.84827e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| he stepped from the ||| 0.333333 0.082213 2.6679e-06 6.17505e-11 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| he was attacked by the advocates ||| 0.5 0.0597263 2.6679e-06 6.74399e-19 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| he was attacked by the ||| 0.5 0.0597263 2.6679e-06 1.10557e-13 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| head of that ||| 0.333333 0.130625 2.6679e-06 3.58762e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| head of the ||| 0.0116618 0.130625 1.06716e-05 1.30933e-06 2.718 ||| 0-1 ||| 343 374827 +del ||| head of ||| 0.00689655 0.130625 1.06716e-05 2.13275e-05 2.718 ||| 0-1 ||| 580 374827 +del ||| headed by ||| 0.00436681 0.0461582 2.6679e-06 1.27741e-07 2.718 ||| 0-1 ||| 229 374827 +del ||| heading of ||| 0.00729927 0.130625 2.6679e-06 9.64603e-06 2.718 ||| 0-1 ||| 137 374827 +del ||| health of ||| 0.00100908 0.130625 2.6679e-06 2.45133e-05 2.718 ||| 0-1 ||| 991 374827 +del ||| hear from the ||| 0.0163934 0.082213 2.6679e-06 7.64036e-07 2.718 ||| 0-1 0-2 ||| 61 374827 +del ||| hear of a ||| 0.5 0.130625 2.6679e-06 1.32716e-06 2.718 ||| 0-1 ||| 2 374827 +del ||| hear of ||| 0.0217391 0.130625 2.6679e-06 2.9941e-05 2.718 ||| 0-1 ||| 46 374827 +del ||| hear the ||| 0.00655738 0.0732944 5.33579e-06 3.52526e-05 2.718 ||| 0-1 ||| 305 374827 +del ||| heard for themselves the ||| 1 0.0732944 2.6679e-06 9.08445e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| heard of ||| 0.00917431 0.130625 2.6679e-06 2.33629e-05 2.718 ||| 0-1 ||| 109 374827 +del ||| heard the political ||| 0.333333 0.0732944 2.6679e-06 4.91007e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| heard the ||| 0.00887574 0.0732944 8.00369e-06 2.75074e-05 2.718 ||| 0-1 ||| 338 374827 +del ||| heart condition suffered by the ||| 1 0.0597263 2.6679e-06 3.96306e-16 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| heart of the ||| 0.00520156 0.130625 1.06716e-05 1.45964e-06 2.718 ||| 0-1 ||| 769 374827 +del ||| heart of ||| 0.00254777 0.130625 1.06716e-05 2.37758e-05 2.718 ||| 0-1 ||| 1570 374827 +del ||| hectare , for the ||| 1 0.0435798 2.6679e-06 4.90163e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| heed of ||| 0.0645161 0.130625 5.33579e-06 1.26844e-06 2.718 ||| 0-1 ||| 31 374827 +del ||| heed to the ||| 0.0344828 0.0732944 2.6679e-06 1.32706e-07 2.718 ||| 0-2 ||| 29 374827 +del ||| heels of another ||| 1 0.130625 2.6679e-06 3.0582e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| heels of ||| 0.0625 0.130625 2.6679e-06 1.26844e-06 2.718 ||| 0-1 ||| 16 374827 +del ||| held all the ||| 1 0.0732944 2.6679e-06 4.18672e-07 2.718 ||| 0-2 ||| 1 374827 +del ||| held back for ||| 1 0.0138653 2.6679e-06 1.84593e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| held by the ||| 0.0497238 0.0597263 2.40111e-05 1.43265e-06 2.718 ||| 0-1 0-2 ||| 181 374827 +del ||| held by ||| 0.0253807 0.0461582 2.6679e-05 4.12492e-06 2.718 ||| 0-1 ||| 394 374827 +del ||| held in the ||| 0.0192308 0.0458111 8.00369e-06 2.38923e-06 2.718 ||| 0-1 0-2 ||| 156 374827 +del ||| held in ||| 0.00140056 0.0105193 5.33579e-06 7.79329e-07 2.718 ||| 0-0 0-1 ||| 1428 374827 +del ||| held on ||| 0.0335196 0.008389 3.20148e-05 2.83437e-07 2.718 ||| 0-0 0-1 ||| 358 374827 +del ||| held responsible for any ||| 0.5 0.0138653 2.6679e-06 6.13812e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| held responsible for the ||| 0.0666667 0.0435798 2.6679e-06 1.40978e-10 2.718 ||| 0-2 0-3 ||| 15 374827 +del ||| held responsible for ||| 0.0196078 0.0138653 2.6679e-06 4.05907e-10 2.718 ||| 0-2 ||| 51 374827 +del ||| held the ||| 0.0263158 0.0380025 5.33579e-06 1.00374e-05 2.718 ||| 0-0 0-1 ||| 76 374827 +del ||| held ||| 0.000188715 0.0027107 2.6679e-06 2.89e-05 2.718 ||| 0-0 ||| 5299 374827 +del ||| hell with the ||| 0.5 0.0389112 2.6679e-06 3.10675e-09 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| help support the ||| 0.2 0.0732944 2.6679e-06 2.26451e-08 2.718 ||| 0-2 ||| 5 374827 +del ||| help the ||| 0.00232019 0.0732944 8.00369e-06 6.62331e-05 2.718 ||| 0-1 ||| 1293 374827 +del ||| helped by ||| 0.0125 0.0461582 2.6679e-06 3.20162e-07 2.718 ||| 0-1 ||| 80 374827 +del ||| helping hand to the ||| 0.142857 0.0732944 2.6679e-06 4.62665e-10 2.718 ||| 0-3 ||| 7 374827 +del ||| hence the ||| 0.00165017 0.0732944 2.6679e-06 8.99548e-06 2.718 ||| 0-1 ||| 606 374827 +del ||| her car ||| 0.0909091 0.120879 2.6679e-06 1.49383e-07 2.718 ||| 0-1 ||| 11 374827 +del ||| her current situation because of the ||| 0.333333 0.10196 2.6679e-06 7.77474e-16 2.718 ||| 0-4 0-5 ||| 3 374827 +del ||| her of the ||| 0.166667 0.10196 2.6679e-06 2.78775e-05 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| her report of the ||| 0.5 0.10196 2.6679e-06 1.1427e-08 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| her work in the ||| 0.111111 0.0458111 2.6679e-06 1.61317e-09 2.718 ||| 0-2 0-3 ||| 9 374827 +del ||| here as part of our 10th EP ||| 1 0.130625 2.6679e-06 2.00763e-23 2.718 ||| 0-3 ||| 1 374827 +del ||| here as part of our 10th ||| 1 0.130625 2.6679e-06 4.01525e-18 2.718 ||| 0-3 ||| 1 374827 +del ||| here as part of our ||| 1 0.130625 2.6679e-06 1.00381e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| here as part of ||| 0.333333 0.130625 2.6679e-06 7.27717e-09 2.718 ||| 0-3 ||| 3 374827 +del ||| here by the ||| 0.0512821 0.0597263 5.33579e-06 1.13882e-05 2.718 ||| 0-1 0-2 ||| 39 374827 +del ||| here by ||| 0.0134228 0.0461582 5.33579e-06 3.27891e-05 2.718 ||| 0-1 ||| 149 374827 +del ||| here for the ||| 0.0344828 0.0435798 8.00369e-06 7.577e-06 2.718 ||| 0-1 0-2 ||| 87 374827 +del ||| here from the ||| 0.1875 0.082213 8.00369e-06 1.52642e-05 2.718 ||| 0-1 0-2 ||| 16 374827 +del ||| here from ||| 0.0208333 0.0911315 2.6679e-06 4.39489e-05 2.718 ||| 0-1 ||| 48 374827 +del ||| here in the European ||| 0.0333333 0.0458111 2.6679e-06 6.35076e-08 2.718 ||| 0-1 0-2 ||| 30 374827 +del ||| here in the ||| 0.0176991 0.0458111 4.80222e-05 1.89921e-05 2.718 ||| 0-1 0-2 ||| 1017 374827 +del ||| here in ||| 0.00544662 0.0183279 5.33579e-05 5.46825e-05 2.718 ||| 0-1 ||| 3672 374827 +del ||| here is the ||| 0.00534759 0.0732944 2.6679e-06 2.20731e-05 2.718 ||| 0-2 ||| 187 374827 +del ||| here of the ||| 0.0232558 0.10196 2.6679e-06 0.000207754 2.718 ||| 0-1 0-2 ||| 43 374827 +del ||| here of ||| 0.00724638 0.130625 2.6679e-06 0.000598172 2.718 ||| 0-1 ||| 138 374827 +del ||| here to a ||| 0.166667 0.0008087 2.6679e-06 1.52168e-07 2.718 ||| 0-2 ||| 6 374827 +del ||| here with ||| 0.00271739 0.0045281 2.6679e-06 3.85931e-06 2.718 ||| 0-1 ||| 368 374827 +del ||| here ||| 9.30175e-05 0.0001552 8.00369e-06 1.05e-05 2.718 ||| 0-0 ||| 32252 374827 +del ||| hidden in a ||| 0.2 0.0183279 2.6679e-06 8.60621e-09 2.718 ||| 0-1 ||| 5 374827 +del ||| hidden in ||| 0.027027 0.0183279 2.6679e-06 1.94158e-07 2.718 ||| 0-1 ||| 37 374827 +del ||| high degree of ||| 0.00401606 0.130625 2.6679e-06 6.09972e-09 2.718 ||| 0-2 ||| 249 374827 +del ||| high level of ||| 0.000786163 0.130625 2.6679e-06 3.7673e-08 2.718 ||| 0-2 ||| 1272 374827 +del ||| high regard for ||| 0.0769231 0.0138653 2.6679e-06 1.09368e-09 2.718 ||| 0-2 ||| 13 374827 +del ||| higher than at ||| 0.125 0.0313352 2.6679e-06 4.12376e-10 2.718 ||| 0-1 ||| 8 374827 +del ||| higher than ||| 0.00163934 0.0313352 2.6679e-06 9.84803e-08 2.718 ||| 0-1 ||| 610 374827 +del ||| highlight . the ||| 1 0.0732944 2.6679e-06 1.96728e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| highlighted by ||| 0.00387597 0.0461582 2.6679e-06 3.2663e-07 2.718 ||| 0-1 ||| 258 374827 +del ||| highlighting the ||| 0.00294985 0.0372645 2.6679e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 339 374827 +del ||| highlights the ||| 0.00138889 0.0732944 2.6679e-06 2.36175e-06 2.718 ||| 0-1 ||| 720 374827 +del ||| him ) ||| 1 0.0056759 2.6679e-06 2.02972e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| him by the ||| 0.0909091 0.0597263 2.6679e-06 1.8005e-06 2.718 ||| 0-1 0-2 ||| 11 374827 +del ||| him for ||| 0.00746269 0.0138653 2.6679e-06 3.44914e-06 2.718 ||| 0-1 ||| 134 374827 +del ||| him the ||| 0.0294118 0.0732944 2.6679e-06 0.000111349 2.718 ||| 0-1 ||| 34 374827 +del ||| himself from ||| 0.166667 0.0911315 2.6679e-06 1.60598e-06 2.718 ||| 0-1 ||| 6 374827 +del ||| his amendments to Article 8 ||| 1 0.11229 2.6679e-06 6.63895e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| his amendments to Article ||| 1 0.11229 2.6679e-06 5.26901e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| his or ||| 0.00543478 0.00152 2.6679e-06 6.90553e-08 2.718 ||| 0-0 ||| 184 374827 +del ||| his proposals ||| 0.00510204 0.00152 2.6679e-06 5.87088e-09 2.718 ||| 0-0 ||| 196 374827 +del ||| his staff ||| 0.00757576 0.0499678 2.6679e-06 9.1953e-08 2.718 ||| 0-1 ||| 132 374827 +del ||| his ||| 0.000584245 0.00152 4.80222e-05 6.04e-05 2.718 ||| 0-0 ||| 30809 374827 +del ||| history of ||| 0.000790514 0.130625 2.6679e-06 1.06195e-05 2.718 ||| 0-1 ||| 1265 374827 +del ||| hit the ||| 0.00595238 0.0732944 2.6679e-06 1.0871e-05 2.718 ||| 0-1 ||| 168 374827 +del ||| hits below the ||| 1 0.0732944 2.6679e-06 2.20059e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| hold a ||| 0.00204082 0.0008087 2.6679e-06 1.47112e-07 2.718 ||| 0-1 ||| 490 374827 +del ||| hold for the ||| 0.25 0.0435798 2.6679e-06 6.50909e-07 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| hold of ||| 0.0204082 0.130625 2.6679e-06 5.13865e-05 2.718 ||| 0-1 ||| 49 374827 +del ||| hold the ||| 0.00560224 0.0732944 5.33579e-06 6.05024e-05 2.718 ||| 0-1 ||| 357 374827 +del ||| holder of the ||| 0.0227273 0.10196 2.6679e-06 4.8153e-07 2.718 ||| 0-1 0-2 ||| 44 374827 +del ||| holds for the ||| 0.125 0.0435798 2.6679e-06 1.06118e-07 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| holiday tourism ||| 1 0.0676417 2.6679e-06 1.0692e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| home about , ||| 0.333333 0.0101916 2.6679e-06 1.69957e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| home about ||| 0.142857 0.0101916 2.6679e-06 1.42516e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| home of the ||| 0.04 0.10196 2.6679e-06 1.0399e-05 2.718 ||| 0-1 0-2 ||| 25 374827 +del ||| homelessness at ||| 1 0.0010184 2.6679e-06 9.772e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| honourable Member 's home ||| 1 0.169811 2.6679e-06 1.09702e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| honourable Member 's ||| 0.0126582 0.169811 2.6679e-06 1.08081e-09 2.718 ||| 0-2 ||| 79 374827 +del ||| hope for the ||| 0.00699301 0.0435798 2.6679e-06 6.55019e-07 2.718 ||| 0-1 0-2 ||| 143 374827 +del ||| hope that the Council will find an ||| 0.5 0.0732944 2.6679e-06 4.53348e-18 2.718 ||| 0-2 ||| 2 374827 +del ||| hope that the Council will find ||| 0.333333 0.0732944 2.6679e-06 1.01997e-15 2.718 ||| 0-2 ||| 3 374827 +del ||| hope that the Council will ||| 0.0769231 0.0732944 2.6679e-06 3.0639e-12 2.718 ||| 0-2 ||| 13 374827 +del ||| hope that the Council ||| 0.0142857 0.0732944 2.6679e-06 3.54159e-10 2.718 ||| 0-2 ||| 70 374827 +del ||| hope that the ||| 0.00112108 0.0732944 2.6679e-06 1.02417e-06 2.718 ||| 0-2 ||| 892 374827 +del ||| horse ||| 0.00743494 0.015528 5.33579e-06 6.6e-06 2.718 ||| 0-0 ||| 269 374827 +del ||| hostage to the ||| 0.0625 0.0732944 2.6679e-06 2.3455e-07 2.718 ||| 0-2 ||| 16 374827 +del ||| hot on the heels ||| 0.166667 0.0436809 2.6679e-06 1.15712e-13 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| hot on the ||| 0.142857 0.0436809 2.6679e-06 2.69098e-08 2.718 ||| 0-1 0-2 ||| 7 374827 +del ||| hours of the ||| 0.037037 0.10196 2.6679e-06 2.21299e-06 2.718 ||| 0-1 0-2 ||| 27 374827 +del ||| housing ||| 0.00203252 0.0026247 8.00369e-06 6.6e-06 2.718 ||| 0-0 ||| 1476 374827 +del ||| how can we ensure that the ||| 0.1 0.0732944 2.6679e-06 3.17025e-14 2.718 ||| 0-5 ||| 10 374827 +del ||| how does the Commissioner think ||| 1 0.0732944 2.6679e-06 2.9455e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| how does the Commissioner ||| 0.125 0.0732944 2.6679e-06 7.70064e-12 2.718 ||| 0-2 ||| 8 374827 +del ||| how does the ||| 0.00526316 0.0732944 2.6679e-06 8.73089e-08 2.718 ||| 0-2 ||| 190 374827 +del ||| how the country ||| 0.5 0.0732944 2.6679e-06 4.47996e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| how the ||| 0.00457516 0.0732944 1.86753e-05 0.000124478 2.718 ||| 0-1 ||| 1530 374827 +del ||| how they are ||| 0.00649351 0.0015352 2.6679e-06 5.07123e-09 2.718 ||| 0-0 ||| 154 374827 +del ||| how they ||| 0.002 0.0015352 2.6679e-06 3.34234e-07 2.718 ||| 0-0 ||| 500 374827 +del ||| how we go about ||| 0.0588235 0.0101916 2.6679e-06 3.34085e-12 2.718 ||| 0-3 ||| 17 374827 +del ||| how we ||| 0.000679348 0.0015352 2.6679e-06 1.16248e-06 2.718 ||| 0-0 ||| 1472 374827 +del ||| how well the ||| 0.153846 0.0732944 5.33579e-06 1.97372e-07 2.718 ||| 0-2 ||| 13 374827 +del ||| how work is ||| 1 0.0015352 2.6679e-06 2.03151e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| how work ||| 0.5 0.0015352 2.6679e-06 6.48192e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| how ||| 0.000558425 0.0015352 5.33579e-05 0.0001024 2.718 ||| 0-0 ||| 35815 374827 +del ||| however , a number of ||| 0.0454545 0.130625 2.6679e-06 8.54643e-10 2.718 ||| 0-4 ||| 22 374827 +del ||| however , a universal ||| 1 0.0040559 2.6679e-06 6.90933e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| however , of the ||| 0.0666667 0.10196 2.6679e-06 1.35339e-05 2.718 ||| 0-2 0-3 ||| 15 374827 +del ||| however , the ||| 0.000218818 0.0732944 2.6679e-06 4.58799e-05 2.718 ||| 0-2 ||| 4570 374827 +del ||| human beings ’ ||| 0.2 0.106997 2.6679e-06 1.71112e-11 2.718 ||| 0-2 ||| 5 374827 +del ||| human ||| 7.84991e-05 4.78e-05 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 12739 374827 +del ||| i.e. from ||| 0.0588235 0.0911315 2.6679e-06 1.27222e-06 2.718 ||| 0-1 ||| 17 374827 +del ||| i.e. of the ||| 0.5 0.10196 2.6679e-06 6.014e-06 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| i.e. the ||| 0.00324675 0.0732944 2.6679e-06 2.03874e-05 2.718 ||| 0-1 ||| 308 374827 +del ||| idea of qualified majority ||| 0.25 0.130625 2.6679e-06 3.65142e-14 2.718 ||| 0-1 ||| 4 374827 +del ||| idea of qualified ||| 0.25 0.130625 2.6679e-06 9.0606e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| idea of the ||| 0.00289017 0.10196 2.6679e-06 2.297e-05 2.718 ||| 0-1 0-2 ||| 346 374827 +del ||| idea of ||| 0.00245098 0.130625 2.40111e-05 6.61357e-05 2.718 ||| 0-1 ||| 3672 374827 +del ||| ideals of the ||| 0.0588235 0.10196 2.6679e-06 4.8153e-07 2.718 ||| 0-1 0-2 ||| 17 374827 +del ||| ideas of the ||| 0.0196078 0.10196 2.6679e-06 3.6166e-06 2.718 ||| 0-1 0-2 ||| 51 374827 +del ||| ideas of ||| 0.00662252 0.130625 2.6679e-06 1.0413e-05 2.718 ||| 0-1 ||| 151 374827 +del ||| identity of the ||| 0.0125 0.10196 2.6679e-06 2.06955e-06 2.718 ||| 0-1 0-2 ||| 80 374827 +del ||| identity of ||| 0.0103093 0.130625 5.33579e-06 5.95871e-06 2.718 ||| 0-1 ||| 194 374827 +del ||| if it were lord of the ||| 1 0.10196 2.6679e-06 3.81816e-15 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| if it were needed - of the ||| 1 0.10196 2.6679e-06 1.37749e-15 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| if the ||| 0.000659631 0.0732944 1.86753e-05 0.000290217 2.718 ||| 0-1 ||| 10612 374827 +del ||| ignored in this ||| 0.125 0.0183279 2.6679e-06 1.8121e-09 2.718 ||| 0-1 ||| 8 374827 +del ||| ignored in ||| 0.0196078 0.0183279 2.6679e-06 2.80451e-07 2.718 ||| 0-1 ||| 51 374827 +del ||| illustrates the extent to which ||| 0.25 0.0732944 2.6679e-06 2.51935e-13 2.718 ||| 0-1 ||| 4 374827 +del ||| illustrates the extent to ||| 0.333333 0.0732944 2.6679e-06 2.96582e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| illustrates the extent ||| 0.25 0.0732944 2.6679e-06 3.3377e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| illustrates the ||| 0.00653595 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-1 ||| 153 374827 +del ||| immediate protection of the ||| 1 0.10196 2.6679e-06 2.69334e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| impact of phasing out tobacco subsidies . ||| 1 0.130625 2.6679e-06 2.61619e-25 2.718 ||| 0-1 ||| 1 374827 +del ||| impact of phasing out tobacco subsidies ||| 1 0.130625 2.6679e-06 8.63714e-23 2.718 ||| 0-1 ||| 1 374827 +del ||| impact of phasing out tobacco ||| 1 0.130625 2.6679e-06 6.64396e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| impact of phasing out ||| 1 0.130625 2.6679e-06 2.97935e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| impact of phasing ||| 1 0.130625 2.6679e-06 7.77818e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| impact of the ||| 0.00154799 0.10196 2.6679e-06 8.44214e-06 2.718 ||| 0-1 0-2 ||| 646 374827 +del ||| impact of ||| 0.00153139 0.130625 8.00369e-06 2.43068e-05 2.718 ||| 0-1 ||| 1959 374827 +del ||| impact on the protection of jobs in ||| 1 0.0140673 2.6679e-06 3.03535e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| impact on the protection of jobs ||| 1 0.0140673 2.6679e-06 1.41809e-17 2.718 ||| 0-1 ||| 1 374827 +del ||| impact on the protection of ||| 1 0.0140673 2.6679e-06 2.73762e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| impact on the protection ||| 1 0.0140673 2.6679e-06 5.03572e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| impact on the ||| 0.00321027 0.0140673 5.33579e-06 4.9613e-08 2.718 ||| 0-1 ||| 623 374827 +del ||| impact on ||| 0.00177936 0.0140673 8.00369e-06 8.08138e-07 2.718 ||| 0-1 ||| 1686 374827 +del ||| implement the ||| 0.00168634 0.0732944 8.00369e-06 1.93802e-05 2.718 ||| 0-1 ||| 1779 374827 +del ||| implementation of the ||| 0.00124585 0.10196 1.60074e-05 7.96061e-06 2.718 ||| 0-1 0-2 ||| 4816 374827 +del ||| implementation of ||| 0.000286328 0.130625 5.33579e-06 2.29204e-05 2.718 ||| 0-1 ||| 6985 374827 +del ||| implementing the ||| 0.00168161 0.0732944 8.00369e-06 1.00027e-05 2.718 ||| 0-1 ||| 1784 374827 +del ||| implements the ||| 0.0169492 0.0392788 2.6679e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 59 374827 +del ||| implications of ||| 0.00547945 0.130625 5.33579e-06 6.1652e-06 2.718 ||| 0-1 ||| 365 374827 +del ||| implied by a ||| 0.333333 0.0461582 2.6679e-06 7.88413e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| implied by ||| 0.047619 0.0461582 2.6679e-06 1.77868e-08 2.718 ||| 0-1 ||| 21 374827 +del ||| implies ||| 0.00121951 0.0011905 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 820 374827 +del ||| import of fuel ||| 1 0.108158 2.6679e-06 6.87617e-10 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| importance of , ||| 0.0909091 0.130625 2.6679e-06 4.56968e-06 2.718 ||| 0-1 ||| 11 374827 +del ||| importance of prevention ||| 0.0454545 0.130625 2.6679e-06 5.36461e-10 2.718 ||| 0-1 ||| 22 374827 +del ||| importance of ||| 0.00043122 0.130625 8.00369e-06 3.83186e-05 2.718 ||| 0-1 ||| 6957 374827 +del ||| importance to the ||| 0.00196078 0.0732944 2.6679e-06 4.00896e-06 2.718 ||| 0-2 ||| 510 374827 +del ||| imports from China ||| 0.037037 0.0911315 2.6679e-06 6.38406e-12 2.718 ||| 0-1 ||| 27 374827 +del ||| imports from ||| 0.003003 0.0911315 2.6679e-06 2.4274e-07 2.718 ||| 0-1 ||| 333 374827 +del ||| imposed by the ||| 0.00576369 0.0597263 5.33579e-06 3.13374e-07 2.718 ||| 0-1 0-2 ||| 347 374827 +del ||| imposed on the ||| 0.00595238 0.0436809 2.6679e-06 1.90072e-07 2.718 ||| 0-1 0-2 ||| 168 374827 +del ||| imposed on ||| 0.00149031 0.0140673 2.6679e-06 5.47259e-07 2.718 ||| 0-1 ||| 671 374827 +del ||| impossible for ||| 0.00310559 0.0138653 2.6679e-06 5.7665e-07 2.718 ||| 0-1 ||| 322 374827 +del ||| improve the ||| 0.000227635 0.0732944 2.6679e-06 1.51082e-05 2.718 ||| 0-1 ||| 4393 374827 +del ||| improved ||| 0.000191095 0.0043783 2.6679e-06 3.28e-05 2.718 ||| 0-0 ||| 5233 374827 +del ||| improvement of the ||| 0.00294118 0.130625 2.6679e-06 3.78493e-07 2.718 ||| 0-1 ||| 340 374827 +del ||| improvement of ||| 0.00121065 0.130625 2.6679e-06 6.1652e-06 2.718 ||| 0-1 ||| 826 374827 +del ||| imputed , of ||| 0.333333 0.130625 2.6679e-06 1.40714e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| in ' ||| 0.0031746 0.0238486 2.6679e-06 0.000128039 2.718 ||| 0-0 0-1 ||| 315 374827 +del ||| in , this ||| 0.25 0.0108217 2.6679e-06 7.38332e-06 2.718 ||| 0-0 0-2 ||| 4 374827 +del ||| in 1993 , ||| 0.00787402 0.0183279 2.6679e-06 8.03967e-09 2.718 ||| 0-0 ||| 127 374827 +del ||| in 1993 ||| 0.00261097 0.0183279 2.6679e-06 6.7416e-08 2.718 ||| 0-0 ||| 383 374827 +del ||| in America ||| 0.0047619 0.0183279 2.6679e-06 7.46969e-07 2.718 ||| 0-0 ||| 210 374827 +del ||| in Annex ||| 0.00497512 0.0403733 2.6679e-06 3.40046e-06 2.718 ||| 0-0 0-1 ||| 201 374827 +del ||| in April ||| 0.00100705 0.0183279 2.6679e-06 6.7416e-08 2.718 ||| 0-0 ||| 993 374827 +del ||| in Brussels ||| 0.00032 0.0183279 2.6679e-06 3.02024e-07 2.718 ||| 0-0 ||| 3125 374827 +del ||| in COREPER ||| 0.0526316 0.0503727 2.6679e-06 5.31238e-07 2.718 ||| 0-0 0-1 ||| 19 374827 +del ||| in Camp ||| 0.0555556 0.0153752 2.6679e-06 7.01126e-08 2.718 ||| 0-0 0-1 ||| 18 374827 +del ||| in Europe 's ||| 0.030303 0.0940696 2.6679e-06 5.48268e-07 2.718 ||| 0-0 0-2 ||| 33 374827 +del ||| in Europe ||| 0.000149596 0.0183279 8.00369e-06 1.3645e-05 2.718 ||| 0-0 ||| 20054 374827 +del ||| in France , you see these idiotic ||| 1 0.0183279 2.6679e-06 6.98035e-23 2.718 ||| 0-0 ||| 1 374827 +del ||| in France , you see these ||| 1 0.0183279 2.6679e-06 1.74509e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| in France , you see ||| 1 0.0183279 2.6679e-06 1.68266e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| in France , you ||| 1 0.0183279 2.6679e-06 2.38811e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| in France , ||| 0.00149701 0.0183279 2.6679e-06 7.3965e-08 2.718 ||| 0-0 ||| 668 374827 +del ||| in France ||| 0.000475964 0.0183279 2.6679e-06 6.20227e-07 2.718 ||| 0-0 ||| 2101 374827 +del ||| in Great ||| 0.00581395 0.0183279 2.6679e-06 1.26742e-07 2.718 ||| 0-0 ||| 172 374827 +del ||| in Hungary ||| 0.00189036 0.0183279 2.6679e-06 8.62925e-08 2.718 ||| 0-0 ||| 529 374827 +del ||| in January of ||| 0.0172414 0.130625 2.6679e-06 4.29353e-08 2.718 ||| 0-2 ||| 58 374827 +del ||| in June ||| 0.000486855 0.0183279 2.6679e-06 2.31911e-07 2.718 ||| 0-0 ||| 2054 374827 +del ||| in Lithuania ||| 0.00306748 0.0183279 2.6679e-06 8.62925e-08 2.718 ||| 0-0 ||| 326 374827 +del ||| in May ||| 0.000819672 0.0187835 2.6679e-06 6.3398e-06 2.718 ||| 0-0 0-1 ||| 1220 374827 +del ||| in Mrs MosiekUrbahn 's ||| 1 0.169811 2.6679e-06 3.22003e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| in North ||| 0.00220264 0.167507 2.6679e-06 5.65998e-05 2.718 ||| 0-0 0-1 ||| 454 374827 +del ||| in North-East ||| 0.0666667 0.2 2.6679e-06 8.15511e-07 2.718 ||| 0-1 ||| 15 374827 +del ||| in Northern Europe ||| 0.047619 0.386413 2.6679e-06 2.02285e-08 2.718 ||| 0-1 ||| 21 374827 +del ||| in Northern ||| 0.00632911 0.386413 2.6679e-06 3.99772e-05 2.718 ||| 0-1 ||| 158 374827 +del ||| in Parliament ||| 0.000209688 0.0182398 2.6679e-06 0.000123789 2.718 ||| 0-0 0-1 ||| 4769 374827 +del ||| in Romania 's ||| 0.142857 0.0940696 2.6679e-06 1.09437e-08 2.718 ||| 0-0 0-2 ||| 7 374827 +del ||| in South ||| 0.0645161 0.103898 1.60074e-05 3.32577e-05 2.718 ||| 0-0 0-1 ||| 93 374827 +del ||| in Tibetan ||| 0.1 0.0244311 2.6679e-06 5.66294e-07 2.718 ||| 0-0 0-1 ||| 10 374827 +del ||| in Turkey ||| 0.000616523 0.0183279 2.6679e-06 1.58293e-06 2.718 ||| 0-0 ||| 1622 374827 +del ||| in Ukraine , as in ||| 1 0.0183279 2.6679e-06 7.09435e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| in a bid ||| 0.00487805 0.0183279 2.6679e-06 3.17952e-08 2.718 ||| 0-0 ||| 205 374827 +del ||| in a position to ||| 0.000781861 0.0183279 2.6679e-06 3.49759e-08 2.718 ||| 0-0 ||| 1279 374827 +del ||| in a position ||| 0.00178253 0.0183279 8.00369e-06 3.93615e-07 2.718 ||| 0-0 ||| 1683 374827 +del ||| in a round hole ||| 1 0.0183279 2.6679e-06 3.30048e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| in a round ||| 0.5 0.0183279 2.6679e-06 9.16801e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| in a way which would ||| 0.111111 0.0183279 2.6679e-06 1.2845e-10 2.718 ||| 0-0 ||| 9 374827 +del ||| in a way which ||| 0.00416667 0.0183279 2.6679e-06 2.18872e-08 2.718 ||| 0-0 ||| 240 374827 +del ||| in a way ||| 0.000775795 0.0183279 2.6679e-06 2.5766e-06 2.718 ||| 0-0 ||| 1289 374827 +del ||| in a ||| 0.00181035 0.0183279 0.000154738 0.00119531 2.718 ||| 0-0 ||| 32038 374827 +del ||| in accordance with the ||| 0.000384615 0.0458111 2.6679e-06 4.76125e-09 2.718 ||| 0-0 0-3 ||| 2600 374827 +del ||| in accordance with ||| 0.000371195 0.0183279 5.33579e-06 1.37087e-08 2.718 ||| 0-0 ||| 5388 374827 +del ||| in accordance ||| 0.00111657 0.0183279 1.33395e-05 2.14383e-06 2.718 ||| 0-0 ||| 4478 374827 +del ||| in achieving this ||| 0.0104167 0.0183279 2.6679e-06 1.15347e-08 2.718 ||| 0-0 ||| 96 374827 +del ||| in achieving ||| 0.00142653 0.0183279 2.6679e-06 1.78518e-06 2.718 ||| 0-0 ||| 701 374827 +del ||| in action the ||| 1 0.0732944 2.6679e-06 2.24733e-06 2.718 ||| 0-2 ||| 1 374827 +del ||| in actual fact , a large section ||| 1 0.0183279 2.6679e-06 1.94092e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| in actual fact , a large ||| 1 0.0183279 2.6679e-06 9.2867e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| in actual fact , a ||| 0.142857 0.0183279 2.6679e-06 6.04209e-11 2.718 ||| 0-0 ||| 7 374827 +del ||| in actual fact , the ||| 0.0163934 0.0732944 2.6679e-06 3.75783e-10 2.718 ||| 0-4 ||| 61 374827 +del ||| in actual fact , ||| 0.00431034 0.0183279 5.33579e-06 1.36311e-09 2.718 ||| 0-0 ||| 464 374827 +del ||| in actual fact ||| 0.00237248 0.0183279 5.33579e-06 1.14302e-08 2.718 ||| 0-0 ||| 843 374827 +del ||| in actual ||| 0.0104712 0.0183279 5.33579e-06 3.90204e-06 2.718 ||| 0-0 ||| 191 374827 +del ||| in addition , the European ||| 1 0.0400553 2.6679e-06 2.68432e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| in addition ||| 0.000125565 0.0183279 2.6679e-06 2.65889e-06 2.718 ||| 0-0 ||| 7964 374827 +del ||| in addressing ||| 0.00448431 0.0093658 2.6679e-06 3.50563e-08 2.718 ||| 0-0 0-1 ||| 223 374827 +del ||| in advance with ||| 0.166667 0.0183279 2.6679e-06 6.08701e-09 2.718 ||| 0-0 ||| 6 374827 +del ||| in advance ||| 0.00098912 0.0183279 2.6679e-06 9.51914e-07 2.718 ||| 0-0 ||| 1011 374827 +del ||| in air transport 's ||| 1 0.0659663 2.6679e-06 6.78096e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| in air transport ||| 0.0144928 0.0659663 2.6679e-06 3.56068e-09 2.718 ||| 0-0 0-1 ||| 69 374827 +del ||| in air ||| 0.0384615 0.0659663 2.6679e-06 3.46033e-05 2.718 ||| 0-0 0-1 ||| 26 374827 +del ||| in all of ||| 0.00275482 0.0744764 2.6679e-06 3.75891e-05 2.718 ||| 0-0 0-2 ||| 363 374827 +del ||| in all the Member States , or ||| 1 0.0732944 2.6679e-06 1.17778e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| in all the Member States , ||| 0.0133333 0.0732944 2.6679e-06 1.03016e-12 2.718 ||| 0-2 ||| 75 374827 +del ||| in all the Member States ||| 0.00203252 0.0732944 2.6679e-06 8.63831e-12 2.718 ||| 0-2 ||| 492 374827 +del ||| in all the Member ||| 0.0909091 0.0732944 2.6679e-06 1.81021e-08 2.718 ||| 0-2 ||| 11 374827 +del ||| in all the ||| 0.00193299 0.0732944 8.00369e-06 3.51292e-05 2.718 ||| 0-2 ||| 1552 374827 +del ||| in all ||| 0.000214087 0.0183279 5.33579e-06 0.000127427 2.718 ||| 0-0 ||| 9342 374827 +del ||| in an ||| 0.0013089 0.0183279 1.86753e-05 0.000119858 2.718 ||| 0-0 ||| 5348 374827 +del ||| in and taking ||| 1 0.0183279 2.6679e-06 1.43556e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| in and ||| 0.00622407 0.0183279 8.00369e-06 0.000337778 2.718 ||| 0-0 ||| 482 374827 +del ||| in any ||| 0.000283006 0.0183279 5.33579e-06 4.07786e-05 2.718 ||| 0-0 ||| 7067 374827 +del ||| in biocidal products of this kind ||| 1 0.130625 2.6679e-06 8.2822e-19 2.718 ||| 0-3 ||| 1 374827 +del ||| in biocidal products of this ||| 1 0.130625 2.6679e-06 1.69717e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| in biocidal products of ||| 1 0.130625 2.6679e-06 2.62663e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| in both the ||| 0.015015 0.0458111 1.33395e-05 1.55145e-05 2.718 ||| 0-0 0-2 ||| 333 374827 +del ||| in both ||| 0.000606428 0.0183279 2.6679e-06 4.46698e-05 2.718 ||| 0-0 ||| 1649 374827 +del ||| in by the ||| 0.0289855 0.0459268 5.33579e-06 0.000151444 2.718 ||| 0-0 0-1 0-2 ||| 69 374827 +del ||| in by ||| 0.0136986 0.0322431 5.33579e-06 0.000436041 2.718 ||| 0-0 0-1 ||| 146 374827 +del ||| in carrying out his ||| 0.1 0.0183279 2.6679e-06 1.87788e-12 2.718 ||| 0-0 ||| 10 374827 +del ||| in carrying out ||| 0.00507614 0.0183279 2.6679e-06 6.24917e-09 2.718 ||| 0-0 ||| 197 374827 +del ||| in carrying ||| 0.0075188 0.0183279 2.6679e-06 1.63147e-06 2.718 ||| 0-0 ||| 133 374827 +del ||| in case ||| 0.00169205 0.0183279 2.6679e-06 2.88514e-05 2.718 ||| 0-0 ||| 591 374827 +del ||| in charge of ||| 0.00346021 0.0744764 2.6679e-06 4.00917e-07 2.718 ||| 0-0 0-2 ||| 289 374827 +del ||| in complete conformity with ||| 0.5 0.0045281 2.6679e-06 9.33367e-15 2.718 ||| 0-3 ||| 2 374827 +del ||| in concrete ||| 0.0217391 0.0183279 2.6679e-06 8.44048e-07 2.718 ||| 0-0 ||| 46 374827 +del ||| in connection with the ||| 0.00383436 0.0458111 1.33395e-05 9.13921e-09 2.718 ||| 0-0 0-3 ||| 1304 374827 +del ||| in connection with ||| 0.00072648 0.0183279 5.33579e-06 2.63138e-08 2.718 ||| 0-0 ||| 2753 374827 +del ||| in connection ||| 0.0010985 0.0183279 8.00369e-06 4.11507e-06 2.718 ||| 0-0 ||| 2731 374827 +del ||| in consumer ||| 0.111111 0.057843 2.6679e-06 6.13459e-05 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| in contact ||| 0.00440529 0.0183279 2.6679e-06 5.15058e-07 2.718 ||| 0-0 ||| 227 374827 +del ||| in corporation ||| 1 0.0494483 2.6679e-06 6.01351e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| in countries at both the ||| 1 0.0732944 2.6679e-06 1.95797e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| in court with the ||| 1 0.0732944 2.6679e-06 1.42137e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| in cow ' s ||| 1 0.0183279 2.6679e-06 5.10992e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| in cow ' ||| 1 0.0183279 2.6679e-06 2.68618e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| in cow ||| 1 0.0183279 2.6679e-06 7.82026e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| in decisions ||| 0.0111111 0.0183279 2.6679e-06 2.05754e-06 2.718 ||| 0-0 ||| 90 374827 +del ||| in detail , ||| 0.00862069 0.0183279 2.6679e-06 1.64331e-07 2.718 ||| 0-0 ||| 116 374827 +del ||| in detail ||| 0.00103734 0.0183279 2.6679e-06 1.37798e-06 2.718 ||| 0-0 ||| 964 374827 +del ||| in displays ||| 1 0.0183279 2.6679e-06 6.7416e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| in doing so ||| 0.0021978 0.0183279 2.6679e-06 2.24686e-08 2.718 ||| 0-0 ||| 455 374827 +del ||| in doing ||| 0.00314465 0.0183279 2.6679e-06 9.89937e-06 2.718 ||| 0-0 ||| 318 374827 +del ||| in due time ||| 0.012987 0.0183279 2.6679e-06 1.22364e-08 2.718 ||| 0-0 ||| 77 374827 +del ||| in due ||| 0.00520833 0.0183279 2.6679e-06 7.45351e-06 2.718 ||| 0-0 ||| 192 374827 +del ||| in early ||| 0.00245098 0.0183279 2.6679e-06 1.82563e-06 2.718 ||| 0-0 ||| 408 374827 +del ||| in effect , ||| 0.0033557 0.0183279 2.6679e-06 1.07281e-06 2.718 ||| 0-0 ||| 298 374827 +del ||| in effect ||| 0.00329489 0.0183279 5.33579e-06 8.99599e-06 2.718 ||| 0-0 ||| 607 374827 +del ||| in effective ||| 0.111111 0.00919485 2.6679e-06 3.50563e-08 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| in employing ||| 0.125 0.0183279 2.6679e-06 8.62925e-08 2.718 ||| 0-0 ||| 8 374827 +del ||| in employment ||| 0.00238095 0.0356749 2.6679e-06 4.48047e-05 2.718 ||| 0-0 0-1 ||| 420 374827 +del ||| in essence of ||| 1 0.130625 2.6679e-06 7.95566e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| in exactly the ||| 0.0125 0.0458111 2.6679e-06 9.40332e-07 2.718 ||| 0-0 0-2 ||| 80 374827 +del ||| in excess of ||| 0.00719424 0.130625 2.6679e-06 6.81914e-08 2.718 ||| 0-2 ||| 139 374827 +del ||| in exchange for ||| 0.00502513 0.0183279 2.6679e-06 5.74098e-09 2.718 ||| 0-0 ||| 199 374827 +del ||| in exchange ||| 0.00381679 0.0183279 2.6679e-06 7.46969e-07 2.718 ||| 0-0 ||| 262 374827 +del ||| in existence , ||| 0.0454545 0.0183279 2.6679e-06 2.22217e-07 2.718 ||| 0-0 ||| 22 374827 +del ||| in existence ||| 0.00421941 0.0183279 2.6679e-06 1.86338e-06 2.718 ||| 0-0 ||| 237 374827 +del ||| in expenditure ||| 0.00917431 0.0188437 2.6679e-06 3.71154e-06 2.718 ||| 0-1 ||| 109 374827 +del ||| in fact , the ||| 0.00131579 0.0732944 2.6679e-06 2.59698e-06 2.718 ||| 0-3 ||| 760 374827 +del ||| in fact , ||| 0.000162232 0.0183279 2.6679e-06 9.42025e-06 2.718 ||| 0-0 ||| 6164 374827 +del ||| in fact - ||| 0.0222222 0.0183279 2.6679e-06 2.97968e-07 2.718 ||| 0-0 ||| 45 374827 +del ||| in fact I am certain , ||| 1 0.0183279 2.6679e-06 2.42607e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| in fact I am certain ||| 0.333333 0.0183279 2.6679e-06 2.03436e-13 2.718 ||| 0-0 ||| 3 374827 +del ||| in fact I am ||| 0.0625 0.0183279 2.6679e-06 7.13809e-10 2.718 ||| 0-0 ||| 16 374827 +del ||| in fact I ||| 0.0151515 0.0183279 2.6679e-06 5.58755e-07 2.718 ||| 0-0 ||| 66 374827 +del ||| in fact exist throughout the world ||| 0.5 0.0732944 2.6679e-06 1.82297e-17 2.718 ||| 0-4 ||| 2 374827 +del ||| in fact exist throughout the ||| 0.5 0.0732944 2.6679e-06 8.00251e-14 2.718 ||| 0-4 ||| 2 374827 +del ||| in fact is ||| 0.0192308 0.0183279 2.6679e-06 2.47572e-06 2.718 ||| 0-0 ||| 52 374827 +del ||| in fact ||| 0.000682439 0.0183279 2.40111e-05 7.89927e-05 2.718 ||| 0-0 ||| 13188 374827 +del ||| in favour in order for the ||| 1 0.0732944 2.6679e-06 2.10714e-13 2.718 ||| 0-5 ||| 1 374827 +del ||| in favour of including ||| 0.0322581 0.130625 2.6679e-06 2.13246e-10 2.718 ||| 0-2 ||| 31 374827 +del ||| in favour of the ||| 0.000901551 0.10196 1.33395e-05 7.09422e-07 2.718 ||| 0-2 0-3 ||| 5546 374827 +del ||| in favour of ||| 0.000886525 0.130625 3.46827e-05 2.04258e-06 2.718 ||| 0-2 ||| 14664 374827 +del ||| in favour ||| 0.000207598 0.0183279 1.06716e-05 8.72363e-06 2.718 ||| 0-0 ||| 19268 374827 +del ||| in for ||| 0.00531915 0.0160966 2.6679e-06 0.000290115 2.718 ||| 0-0 0-1 ||| 188 374827 +del ||| in from the ||| 0.105263 0.082213 5.33579e-06 0.000161121 2.718 ||| 0-1 0-2 ||| 19 374827 +del ||| in from ||| 0.1 0.0547297 1.33395e-05 0.000584448 2.718 ||| 0-0 0-1 ||| 50 374827 +del ||| in front ||| 0.00178571 0.0183279 2.6679e-06 2.17349e-06 2.718 ||| 0-0 ||| 560 374827 +del ||| in full text format , ||| 1 0.0183279 2.6679e-06 2.19238e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| in full text format ||| 1 0.0183279 2.6679e-06 1.83841e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| in full text ||| 1 0.0183279 2.6679e-06 4.27536e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| in full ||| 0.00191022 0.0183279 5.33579e-06 4.94833e-06 2.718 ||| 0-0 ||| 1047 374827 +del ||| in future ||| 0.000197433 0.0183279 2.6679e-06 7.16228e-06 2.718 ||| 0-0 ||| 5065 374827 +del ||| in gaining ||| 0.0217391 0.0183279 2.6679e-06 3.10114e-07 2.718 ||| 0-0 ||| 46 374827 +del ||| in general ||| 0.000254065 0.0183279 2.6679e-06 4.71642e-06 2.718 ||| 0-0 ||| 3936 374827 +del ||| in good condition ||| 0.04 0.0183279 2.6679e-06 3.5801e-10 2.718 ||| 0-0 ||| 25 374827 +del ||| in good ||| 0.00376648 0.0183279 5.33579e-06 1.39848e-05 2.718 ||| 0-0 ||| 531 374827 +del ||| in gross ||| 0.2 0.0120257 5.33579e-06 2.48091e-07 2.718 ||| 0-0 0-1 ||| 10 374827 +del ||| in hand with a rise in ||| 0.25 0.0183279 2.6679e-06 8.14955e-15 2.718 ||| 0-0 ||| 4 374827 +del ||| in hand with a rise ||| 0.25 0.0183279 2.6679e-06 3.8074e-13 2.718 ||| 0-0 ||| 4 374827 +del ||| in hand with a ||| 0.037037 0.0183279 2.6679e-06 3.03137e-09 2.718 ||| 0-0 ||| 27 374827 +del ||| in hand with ||| 0.00471698 0.0183279 2.6679e-06 6.83884e-08 2.718 ||| 0-0 ||| 212 374827 +del ||| in hand ||| 0.00474684 0.0183279 8.00369e-06 1.06949e-05 2.718 ||| 0-0 ||| 632 374827 +del ||| in her report of the ||| 1 0.10196 2.6679e-06 2.44589e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| in her ||| 0.00264784 0.0183279 8.00369e-06 7.33756e-06 2.718 ||| 0-0 ||| 1133 374827 +del ||| in his appeal ||| 0.2 0.0183279 2.6679e-06 2.44723e-10 2.718 ||| 0-0 ||| 5 374827 +del ||| in his own ||| 0.00689655 0.00992395 2.6679e-06 2.76125e-09 2.718 ||| 0-0 0-1 ||| 145 374827 +del ||| in his ||| 0.00210139 0.00992395 2.13432e-05 1.62877e-06 2.718 ||| 0-0 0-1 ||| 3807 374827 +del ||| in history as ||| 0.025 0.0183279 2.6679e-06 9.90633e-09 2.718 ||| 0-0 ||| 40 374827 +del ||| in history ||| 0.00289017 0.0183279 2.6679e-06 9.7079e-07 2.718 ||| 0-0 ||| 346 374827 +del ||| in individual countries ||| 0.0169492 0.0183279 2.6679e-06 1.44781e-09 2.718 ||| 0-0 ||| 59 374827 +del ||| in individual ||| 0.00448431 0.0183279 2.6679e-06 3.81305e-06 2.718 ||| 0-0 ||| 223 374827 +del ||| in international ||| 0.0185185 0.0183279 2.6679e-06 2.0872e-06 2.718 ||| 0-0 ||| 54 374827 +del ||| in isolation ||| 0.00436681 0.0183279 2.6679e-06 1.75282e-07 2.718 ||| 0-0 ||| 229 374827 +del ||| in it ||| 0.00154083 0.0183279 5.33579e-06 0.000479549 2.718 ||| 0-0 ||| 1298 374827 +del ||| in its emissions ||| 0.5 0.0183279 2.6679e-06 6.64649e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| in its ||| 0.00162338 0.0109543 4.53543e-05 1.31758e-05 2.718 ||| 0-0 0-1 ||| 10472 374827 +del ||| in just the ||| 0.103448 0.0458111 8.00369e-06 1.18169e-05 2.718 ||| 0-0 0-2 ||| 29 374827 +del ||| in light of the ||| 0.00498753 0.0740824 5.33579e-06 4.80173e-07 2.718 ||| 0-0 0-2 0-3 ||| 401 374827 +del ||| in line ||| 0.00036075 0.0183279 2.6679e-06 7.93891e-06 2.718 ||| 0-0 ||| 2772 374827 +del ||| in lower case ||| 0.333333 0.0183279 2.6679e-06 7.38595e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| in lower ||| 0.0285714 0.0183279 2.6679e-06 6.9034e-07 2.718 ||| 0-0 ||| 35 374827 +del ||| in many ||| 0.00019478 0.0183279 2.6679e-06 9.25757e-06 2.718 ||| 0-0 ||| 5134 374827 +del ||| in mind , the Irish ||| 1 0.0183279 2.6679e-06 1.27314e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| in mind , the ||| 0.0277778 0.0183279 5.33579e-06 4.97321e-08 2.718 ||| 0-0 ||| 72 374827 +del ||| in mind , ||| 0.00156006 0.0183279 2.6679e-06 8.10078e-07 2.718 ||| 0-0 ||| 641 374827 +del ||| in mind the ||| 0.0028169 0.0458111 5.33579e-06 2.35926e-06 2.718 ||| 0-0 0-2 ||| 710 374827 +del ||| in mind ||| 0.0010627 0.0183279 1.33395e-05 6.79284e-06 2.718 ||| 0-0 ||| 4705 374827 +del ||| in motion , for ||| 0.5 0.0138653 2.6679e-06 2.07611e-09 2.718 ||| 0-3 ||| 2 374827 +del ||| in much the ||| 0.2 0.0458111 5.33579e-06 9.40051e-06 2.718 ||| 0-0 0-2 ||| 10 374827 +del ||| in north-west ||| 0.0263158 0.0183279 2.6679e-06 1.07866e-08 2.718 ||| 0-0 ||| 38 374827 +del ||| in number , ||| 0.0769231 0.0183279 2.6679e-06 1.59121e-06 2.718 ||| 0-0 ||| 13 374827 +del ||| in number ||| 0.0126582 0.0183279 2.6679e-06 1.3343e-05 2.718 ||| 0-0 ||| 79 374827 +del ||| in oil ||| 0.03125 0.0767091 2.6679e-06 3.74024e-05 2.718 ||| 0-0 0-1 ||| 32 374827 +del ||| in on the ||| 0.0416667 0.0732944 2.6679e-06 4.97417e-05 2.718 ||| 0-2 ||| 24 374827 +del ||| in or connected to the ||| 1 0.0458111 2.6679e-06 1.92201e-11 2.718 ||| 0-0 0-4 ||| 1 374827 +del ||| in order after ||| 1 0.0183279 2.6679e-06 3.89218e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| in order for the ||| 0.00549451 0.0732944 2.6679e-06 3.04309e-08 2.718 ||| 0-3 ||| 182 374827 +del ||| in order to identify ||| 0.0120482 0.0183279 2.6679e-06 2.20784e-11 2.718 ||| 0-0 ||| 83 374827 +del ||| in order to ||| 8.50702e-05 0.0183279 5.33579e-06 1.27621e-06 2.718 ||| 0-0 ||| 23510 374827 +del ||| in order ||| 0.000339121 0.0183279 1.33395e-05 1.43623e-05 2.718 ||| 0-0 ||| 14744 374827 +del ||| in other parts of the ||| 0.00414938 0.0740824 2.6679e-06 2.08667e-10 2.718 ||| 0-0 0-3 0-4 ||| 241 374827 +del ||| in other products ( medical equipment , ||| 0.5 0.0183279 2.6679e-06 1.61459e-22 2.718 ||| 0-0 ||| 2 374827 +del ||| in other products ( medical equipment ||| 0.5 0.0183279 2.6679e-06 1.3539e-21 2.718 ||| 0-0 ||| 2 374827 +del ||| in other products ( medical ||| 0.5 0.0183279 2.6679e-06 3.92436e-17 2.718 ||| 0-0 ||| 2 374827 +del ||| in other products ( ||| 0.5 0.0183279 2.6679e-06 3.50389e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| in other products ||| 0.0625 0.0183279 2.6679e-06 3.63324e-09 2.718 ||| 0-0 ||| 16 374827 +del ||| in other words , on the ||| 0.0666667 0.0436809 2.6679e-06 2.54571e-12 2.718 ||| 0-4 0-5 ||| 15 374827 +del ||| in other ||| 0.000250658 0.0183279 5.33579e-06 3.4935e-05 2.718 ||| 0-0 ||| 7979 374827 +del ||| in our legal ||| 1 0.00993145 2.6679e-06 1.04216e-09 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| in our view would ||| 0.5 0.0183279 2.6679e-06 1.97191e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| in our view ||| 0.000776398 0.0183279 2.6679e-06 3.36005e-08 2.718 ||| 0-0 ||| 1288 374827 +del ||| in our ||| 0.000666272 0.00993145 2.40111e-05 8.04138e-06 2.718 ||| 0-0 0-1 ||| 13508 374827 +del ||| in over a ||| 0.0769231 0.0124225 2.6679e-06 3.81542e-07 2.718 ||| 0-0 0-1 ||| 13 374827 +del ||| in over ||| 0.00980392 0.0124225 2.6679e-06 8.60767e-06 2.718 ||| 0-0 0-1 ||| 102 374827 +del ||| in particular , by ||| 0.0120482 0.0461582 2.6679e-06 2.54005e-08 2.718 ||| 0-3 ||| 83 374827 +del ||| in particular , of the ||| 0.012987 0.10196 2.6679e-06 1.6094e-07 2.718 ||| 0-3 0-4 ||| 77 374827 +del ||| in particular , ||| 0.00010989 0.0183279 2.6679e-06 1.97905e-06 2.718 ||| 0-0 ||| 9100 374827 +del ||| in particular ||| 0.000116487 0.0183279 8.00369e-06 1.65951e-05 2.718 ||| 0-0 ||| 25754 374827 +del ||| in people 's ||| 0.0526316 0.0940696 2.6679e-06 9.53727e-07 2.718 ||| 0-0 0-2 ||| 19 374827 +del ||| in person ||| 0.00680272 0.0183279 2.6679e-06 3.47327e-06 2.718 ||| 0-0 ||| 147 374827 +del ||| in place by ||| 0.0133333 0.0461582 2.6679e-06 5.2089e-07 2.718 ||| 0-2 ||| 75 374827 +del ||| in place in the ||| 0.02 0.0458111 2.6679e-06 3.0171e-07 2.718 ||| 0-2 0-3 ||| 50 374827 +del ||| in place the ||| 0.0240964 0.0458111 5.33579e-06 1.40956e-05 2.718 ||| 0-0 0-2 ||| 83 374827 +del ||| in place ||| 0.00225098 0.0183279 2.13432e-05 4.05844e-05 2.718 ||| 0-0 ||| 3554 374827 +del ||| in point ||| 0.00287356 0.0183279 2.6679e-06 2.35902e-05 2.718 ||| 0-0 ||| 348 374827 +del ||| in possession of the ||| 0.0769231 0.10196 2.6679e-06 3.15786e-08 2.718 ||| 0-2 0-3 ||| 13 374827 +del ||| in possession ||| 0.010989 0.0183279 2.6679e-06 3.88316e-07 2.718 ||| 0-0 ||| 91 374827 +del ||| in precisely the ||| 0.0344828 0.0458111 2.6679e-06 9.23473e-07 2.718 ||| 0-0 0-2 ||| 29 374827 +del ||| in preference to a ||| 1 0.0183279 2.6679e-06 8.07218e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| in preference to ||| 0.0434783 0.0183279 2.6679e-06 1.8211e-08 2.718 ||| 0-0 ||| 23 374827 +del ||| in preference ||| 0.0434783 0.0183279 2.6679e-06 2.04945e-07 2.718 ||| 0-0 ||| 23 374827 +del ||| in principle of ||| 0.0769231 0.0744764 2.6679e-06 1.21946e-06 2.718 ||| 0-0 0-2 ||| 13 374827 +del ||| in question being the ||| 0.5 0.0458111 2.6679e-06 2.20503e-08 2.718 ||| 0-0 0-3 ||| 2 374827 +del ||| in question ||| 0.00083091 0.0183279 5.33579e-06 2.23093e-05 2.718 ||| 0-0 ||| 2407 374827 +del ||| in rates of ||| 0.1 0.0744764 2.6679e-06 3.03074e-07 2.718 ||| 0-0 0-2 ||| 10 374827 +del ||| in regard to the ||| 0.0078125 0.0732944 2.6679e-06 4.49791e-07 2.718 ||| 0-3 ||| 128 374827 +del ||| in relation thereto ||| 1 0.0183279 2.6679e-06 9.1853e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| in relation to an ||| 0.047619 0.0183279 2.6679e-06 2.59122e-09 2.718 ||| 0-0 ||| 21 374827 +del ||| in relation to the ||| 0.00314136 0.0732944 2.40111e-05 1.6072e-07 2.718 ||| 0-3 ||| 2865 374827 +del ||| in relation to ||| 0.000550964 0.0183279 1.06716e-05 5.82992e-07 2.718 ||| 0-0 ||| 7260 374827 +del ||| in relation ||| 0.0017744 0.0183279 1.86753e-05 6.56093e-06 2.718 ||| 0-0 ||| 3945 374827 +del ||| in respect of an ||| 0.125 0.0744764 2.6679e-06 1.52951e-08 2.718 ||| 0-0 0-2 ||| 8 374827 +del ||| in respect of the ||| 0.00390117 0.10196 8.00369e-06 9.48674e-07 2.718 ||| 0-2 0-3 ||| 769 374827 +del ||| in respect of ||| 0.00444006 0.0744764 2.40111e-05 3.4412e-06 2.718 ||| 0-0 0-2 ||| 2027 374827 +del ||| in respect ||| 0.00209644 0.0183279 1.33395e-05 1.16657e-05 2.718 ||| 0-0 ||| 2385 374827 +del ||| in return ||| 0.00224215 0.0183279 2.6679e-06 1.79596e-06 2.718 ||| 0-0 ||| 446 374827 +del ||| in scope in ||| 0.25 0.0183279 2.6679e-06 5.75471e-08 2.718 ||| 0-2 ||| 4 374827 +del ||| in short ||| 0.00156863 0.0183279 5.33579e-06 3.80496e-06 2.718 ||| 0-0 ||| 1275 374827 +del ||| in spite of the ||| 0.0013245 0.10196 2.6679e-06 4.18855e-08 2.718 ||| 0-2 0-3 ||| 755 374827 +del ||| in such a way as ||| 0.00416667 0.0183279 2.6679e-06 5.4397e-11 2.718 ||| 0-0 ||| 240 374827 +del ||| in such a way ||| 0.00278293 0.0183279 8.00369e-06 5.33074e-09 2.718 ||| 0-0 ||| 1078 374827 +del ||| in such a ||| 0.00570885 0.0183279 1.60074e-05 2.47297e-06 2.718 ||| 0-0 ||| 1051 374827 +del ||| in such away ||| 1 0.0183279 2.6679e-06 1.7747e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| in such ||| 0.00352665 0.0183279 2.40111e-05 5.57908e-05 2.718 ||| 0-0 ||| 2552 374827 +del ||| in support of ||| 0.00273224 0.0744764 5.33579e-06 2.71971e-06 2.718 ||| 0-0 0-2 ||| 732 374827 +del ||| in swap practices ||| 0.333333 0.0183279 2.6679e-06 3.84002e-13 2.718 ||| 0-0 ||| 3 374827 +del ||| in swap ||| 0.333333 0.0183279 2.6679e-06 1.07866e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| in terms of the ||| 0.00312337 0.10196 1.60074e-05 2.40699e-06 2.718 ||| 0-2 0-3 ||| 1921 374827 +del ||| in terms of their ||| 0.0046729 0.130625 2.6679e-06 8.03287e-09 2.718 ||| 0-2 ||| 214 374827 +del ||| in terms of ||| 0.00196727 0.0744764 5.86937e-05 8.73108e-06 2.718 ||| 0-0 0-2 ||| 11183 374827 +del ||| in terms ||| 0.000567031 0.0183279 1.86753e-05 2.95983e-05 2.718 ||| 0-0 ||| 12345 374827 +del ||| in terrible jeopardy ||| 1 0.0183279 2.6679e-06 1.27713e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| in terrible ||| 0.333333 0.0183279 2.6679e-06 3.99103e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| in that of the ||| 0.1 0.0740824 5.33579e-06 4.64746e-05 2.718 ||| 0-0 0-2 0-3 ||| 20 374827 +del ||| in that particular ||| 0.04 0.0183279 2.6679e-06 2.79157e-07 2.718 ||| 0-0 ||| 25 374827 +del ||| in that ||| 0.00567748 0.0183279 0.000138731 0.000453618 2.718 ||| 0-0 ||| 9159 374827 +del ||| in the ' ||| 0.00775194 0.0183279 2.6679e-06 5.68653e-06 2.718 ||| 0-0 ||| 129 374827 +del ||| in the , ||| 0.0588235 0.0458111 2.6679e-06 0.00111692 2.718 ||| 0-0 0-1 ||| 17 374827 +del ||| in the Association ||| 0.25 0.0458111 2.6679e-06 8.05464e-08 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| in the Basic ||| 0.25 0.0458111 2.6679e-06 1.68585e-08 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| in the Chamber , ||| 0.00735294 0.0458111 2.6679e-06 2.93751e-08 2.718 ||| 0-0 0-1 ||| 136 374827 +del ||| in the Chamber ||| 0.00126904 0.0458111 2.6679e-06 2.46322e-07 2.718 ||| 0-0 0-1 ||| 788 374827 +del ||| in the Commission ' s ||| 0.0714286 0.0183279 2.6679e-06 6.3185e-12 2.718 ||| 0-0 ||| 14 374827 +del ||| in the Commission ' ||| 0.0357143 0.0183279 2.6679e-06 3.3215e-09 2.718 ||| 0-0 ||| 28 374827 +del ||| in the Commission ||| 0.0005005 0.0183279 2.6679e-06 9.66987e-07 2.718 ||| 0-0 ||| 1998 374827 +del ||| in the Council ||| 0.000590667 0.0541347 5.33579e-06 8.86694e-05 2.718 ||| 0-0 0-1 0-2 ||| 3386 374827 +del ||| in the Danish ||| 0.333333 0.0458111 2.6679e-06 6.36878e-08 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| in the EC ||| 0.0625 0.0458111 2.6679e-06 1.75142e-07 2.718 ||| 0-0 0-1 ||| 16 374827 +del ||| in the EU area ||| 0.047619 0.0458111 2.6679e-06 1.92459e-09 2.718 ||| 0-0 0-1 ||| 21 374827 +del ||| in the EU ||| 0.000528541 0.0458111 8.00369e-06 4.63423e-06 2.718 ||| 0-0 0-1 ||| 5676 374827 +del ||| in the European Union ||| 9.89218e-05 0.0458111 2.6679e-06 1.74569e-08 2.718 ||| 0-0 0-1 ||| 10109 374827 +del ||| in the European ||| 0.0227848 0.0458111 4.80222e-05 3.13185e-05 2.718 ||| 0-0 0-1 ||| 790 374827 +del ||| in the Irish Box ||| 0.1 0.0458111 2.6679e-06 3.35672e-13 2.718 ||| 0-0 0-1 ||| 10 374827 +del ||| in the Irish ||| 0.0769231 0.0458111 2.6679e-06 2.39766e-07 2.718 ||| 0-0 0-1 ||| 13 374827 +del ||| in the Labour ||| 1 0.0996691 2.6679e-06 5.04351e-06 2.718 ||| 0-0 0-1 0-2 ||| 1 374827 +del ||| in the Mediterranean ||| 0.00152905 0.061111 2.6679e-06 6.39688e-06 2.718 ||| 0-0 0-1 0-2 ||| 654 374827 +del ||| in the North ||| 0.0252101 0.136103 8.00369e-06 1.9658e-05 2.718 ||| 0-0 0-1 0-2 ||| 119 374827 +del ||| in the Northern ||| 0.0769231 0.159345 2.6679e-06 1.74926e-05 2.718 ||| 0-0 0-1 0-2 ||| 13 374827 +del ||| in the South ||| 0.0338983 0.0936965 1.60074e-05 1.15509e-05 2.718 ||| 0-0 0-1 0-2 ||| 177 374827 +del ||| in the South-East ||| 0.125 0.0776984 2.6679e-06 8.98186e-07 2.718 ||| 0-0 0-1 0-2 ||| 8 374827 +del ||| in the Southern ||| 0.16 0.113546 1.06716e-05 3.11227e-06 2.718 ||| 0-0 0-1 0-2 ||| 25 374827 +del ||| in the Union ||| 0.00057971 0.0458111 2.6679e-06 5.22053e-06 2.718 ||| 0-0 0-1 ||| 1725 374827 +del ||| in the United ||| 0.000962464 0.0458111 2.6679e-06 1.14638e-06 2.718 ||| 0-0 0-1 ||| 1039 374827 +del ||| in the adoption of ||| 0.0144928 0.130625 2.6679e-06 1.78697e-08 2.718 ||| 0-3 ||| 69 374827 +del ||| in the aftermath to ||| 0.333333 0.0183279 2.6679e-06 3.23634e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| in the aftermath ||| 0.00917431 0.0183279 2.6679e-06 3.64213e-09 2.718 ||| 0-0 ||| 109 374827 +del ||| in the agriculture ||| 0.0909091 0.0458111 2.6679e-06 1.34868e-07 2.718 ||| 0-0 0-1 ||| 11 374827 +del ||| in the amount of ||| 0.0196078 0.0740824 2.6679e-06 6.72187e-07 2.718 ||| 0-0 0-1 0-3 ||| 51 374827 +del ||| in the amount ||| 0.0140845 0.0732944 2.6679e-06 1.80872e-06 2.718 ||| 0-1 ||| 71 374827 +del ||| in the area ||| 0.000403877 0.0458111 5.33579e-06 3.88964e-06 2.718 ||| 0-0 0-1 ||| 4952 374827 +del ||| in the areas of the ||| 0.0196078 0.10196 2.6679e-06 3.08167e-08 2.718 ||| 0-3 0-4 ||| 51 374827 +del ||| in the audiovisual ||| 0.333333 0.0183279 2.6679e-06 6.62206e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| in the case in point ||| 0.04 0.0458111 2.6679e-06 1.87631e-10 2.718 ||| 0-0 0-1 ||| 25 374827 +del ||| in the case in ||| 0.0434783 0.0458111 2.6679e-06 2.14484e-07 2.718 ||| 0-0 0-1 ||| 23 374827 +del ||| in the case of the ||| 0.00258065 0.0738854 5.33579e-06 1.02663e-06 2.718 ||| 0-0 0-1 0-3 0-4 ||| 775 374827 +del ||| in the case of ||| 0.000267237 0.0740824 2.6679e-06 2.95591e-06 2.718 ||| 0-0 0-1 0-3 ||| 3742 374827 +del ||| in the case ||| 0.000686028 0.0458111 8.00369e-06 1.00205e-05 2.718 ||| 0-0 0-1 ||| 4373 374827 +del ||| in the context of economic and monetary ||| 1 0.0183279 2.6679e-06 2.64259e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| in the context of economic and ||| 1 0.0183279 2.6679e-06 1.83513e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| in the context of economic ||| 0.5 0.0183279 2.6679e-06 1.46507e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| in the context of the ||| 0.000567537 0.0458111 2.6679e-06 4.1949e-09 2.718 ||| 0-0 0-1 ||| 1762 374827 +del ||| in the context of ||| 0.000584283 0.0183279 5.33579e-06 1.20781e-08 2.718 ||| 0-0 ||| 3423 374827 +del ||| in the context ||| 0.000486027 0.0183279 5.33579e-06 2.2217e-07 2.718 ||| 0-0 ||| 4115 374827 +del ||| in the conversion rate between the ||| 0.5 0.0458111 2.6679e-06 7.15755e-17 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| in the conversion rate between ||| 0.5 0.0458111 2.6679e-06 1.16588e-15 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| in the conversion rate ||| 0.5 0.0458111 2.6679e-06 4.41956e-12 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| in the conversion ||| 0.2 0.0458111 2.6679e-06 4.40195e-08 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| in the country ||| 0.000632511 0.0732944 2.6679e-06 2.67554e-06 2.718 ||| 0-1 ||| 1581 374827 +del ||| in the current promotion ||| 1 0.0183279 2.6679e-06 6.57518e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| in the current ||| 0.00172117 0.0183279 2.6679e-06 2.72829e-07 2.718 ||| 0-0 ||| 581 374827 +del ||| in the day ||| 0.0212766 0.0183279 2.6679e-06 4.24143e-07 2.718 ||| 0-0 ||| 47 374827 +del ||| in the decision-making ||| 0.0135135 0.0458111 2.6679e-06 1.51727e-07 2.718 ||| 0-0 0-1 ||| 74 374827 +del ||| in the desert ||| 0.0434783 0.0458111 2.6679e-06 1.68585e-08 2.718 ||| 0-0 0-1 ||| 23 374827 +del ||| in the drafting of ||| 0.0133333 0.130625 2.6679e-06 5.73691e-09 2.718 ||| 0-3 ||| 75 374827 +del ||| in the end ||| 0.000665336 0.0458111 2.6679e-06 4.07508e-06 2.718 ||| 0-0 0-1 ||| 1503 374827 +del ||| in the euro-area ||| 0.333333 0.111447 2.6679e-06 3.072e-07 2.718 ||| 0-0 0-1 0-2 ||| 3 374827 +del ||| in the event ||| 0.000565291 0.0458111 2.6679e-06 9.77795e-07 2.718 ||| 0-0 0-1 ||| 1769 374827 +del ||| in the eyes ||| 0.00232558 0.0183279 2.6679e-06 9.65166e-08 2.718 ||| 0-0 ||| 430 374827 +del ||| in the face of the ||| 0.00357143 0.130625 2.6679e-06 3.98128e-09 2.718 ||| 0-3 ||| 280 374827 +del ||| in the face of ||| 0.00109409 0.130625 2.6679e-06 6.48503e-08 2.718 ||| 0-3 ||| 914 374827 +del ||| in the field of the ||| 0.00549451 0.0738854 2.6679e-06 1.40192e-07 2.718 ||| 0-0 0-1 0-3 0-4 ||| 182 374827 +del ||| in the field of ||| 0.000808081 0.130625 1.06716e-05 5.66326e-08 2.718 ||| 0-3 ||| 4950 374827 +del ||| in the field ||| 0.000393236 0.0183279 5.33579e-06 2.41871e-07 2.718 ||| 0-0 ||| 5086 374827 +del ||| in the fields covered by ||| 0.25 0.0461582 2.6679e-06 5.64426e-14 2.718 ||| 0-4 ||| 4 374827 +del ||| in the fight ||| 0.000537057 0.0732944 2.6679e-06 4.0962e-07 2.718 ||| 0-1 ||| 1862 374827 +del ||| in the first place ||| 0.00285714 0.0458111 5.33579e-06 7.58908e-09 2.718 ||| 0-0 0-1 ||| 700 374827 +del ||| in the first ||| 0.000993049 0.0458111 5.33579e-06 5.04258e-06 2.718 ||| 0-0 0-1 ||| 2014 374827 +del ||| in the fisheries partnership ||| 1 0.0732944 2.6679e-06 4.22318e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| in the fisheries ||| 0.0909091 0.0458111 5.33579e-06 2.46322e-07 2.718 ||| 0-0 0-1 ||| 22 374827 +del ||| in the focus of our ||| 1 0.0740824 2.6679e-06 2.94971e-10 2.718 ||| 0-0 0-1 0-3 ||| 1 374827 +del ||| in the focus of ||| 0.125 0.0740824 2.6679e-06 2.1384e-07 2.718 ||| 0-0 0-1 0-3 ||| 8 374827 +del ||| in the follow-up ||| 0.025 0.0458111 2.6679e-06 1.34868e-07 2.718 ||| 0-0 0-1 ||| 40 374827 +del ||| in the form of ||| 0.001287 0.0740824 5.33579e-06 1.25762e-06 2.718 ||| 0-0 0-1 0-3 ||| 1554 374827 +del ||| in the fundamental ||| 0.166667 0.0183279 2.6679e-06 8.16169e-08 2.718 ||| 0-0 ||| 6 374827 +del ||| in the future ||| 0.000142714 0.0458111 2.6679e-06 2.48757e-06 2.718 ||| 0-0 0-1 ||| 7007 374827 +del ||| in the gambling ||| 1 0.0458111 5.33579e-06 2.7161e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| in the gender ||| 0.5 0.0458111 2.6679e-06 5.71317e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| in the guarantee ||| 0.166667 0.0183279 2.6679e-06 1.00159e-07 2.718 ||| 0-0 ||| 6 374827 +del ||| in the hearing ||| 0.037037 0.0458111 2.6679e-06 2.46322e-07 2.718 ||| 0-0 0-1 ||| 27 374827 +del ||| in the history of the ||| 0.0041841 0.0738854 2.6679e-06 3.45442e-08 2.718 ||| 0-0 0-1 0-3 0-4 ||| 239 374827 +del ||| in the idea ||| 0.0243902 0.0183279 2.6679e-06 3.71167e-07 2.718 ||| 0-0 ||| 41 374827 +del ||| in the improved ||| 1 0.0732944 2.6679e-06 1.68755e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| in the interest of the ||| 0.0134228 0.10196 5.33579e-06 1.51189e-08 2.718 ||| 0-3 0-4 ||| 149 374827 +del ||| in the interests of its own future ||| 1 0.0183279 2.6679e-06 7.91553e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| in the interests of its own ||| 0.5 0.0183279 2.6679e-06 2.98025e-14 2.718 ||| 0-0 ||| 2 374827 +del ||| in the interests of its ||| 0.0666667 0.0183279 2.6679e-06 1.75795e-11 2.718 ||| 0-0 ||| 15 374827 +del ||| in the interests of the ||| 0.00389864 0.0738854 5.33579e-06 1.31556e-07 2.718 ||| 0-0 0-1 0-3 0-4 ||| 513 374827 +del ||| in the interests of ||| 0.00108932 0.0183279 5.33579e-06 1.23391e-08 2.718 ||| 0-0 ||| 1836 374827 +del ||| in the interests ||| 0.0021966 0.0732944 1.06716e-05 1.01922e-06 2.718 ||| 0-1 ||| 1821 374827 +del ||| in the iron ||| 0.5 0.0371884 2.6679e-06 8.61659e-08 2.718 ||| 0-0 0-1 0-2 ||| 2 374827 +del ||| in the last war ||| 0.0714286 0.0458111 2.6679e-06 7.58882e-11 2.718 ||| 0-0 0-1 ||| 14 374827 +del ||| in the last ||| 0.000744048 0.0458111 2.6679e-06 2.0455e-06 2.718 ||| 0-0 0-1 ||| 1344 374827 +del ||| in the level of ||| 0.015873 0.0740824 5.33579e-06 2.36329e-06 2.718 ||| 0-0 0-1 0-3 ||| 126 374827 +del ||| in the level ||| 0.00719424 0.0458111 2.6679e-06 8.01155e-06 2.718 ||| 0-0 0-1 ||| 139 374827 +del ||| in the life of the ||| 0.0222222 0.0738854 2.6679e-06 1.45374e-07 2.718 ||| 0-0 0-1 0-3 0-4 ||| 45 374827 +del ||| in the light ||| 0.000392927 0.0732944 2.6679e-06 1.29205e-06 2.718 ||| 0-1 ||| 2545 374827 +del ||| in the market went ||| 1 0.0183279 2.6679e-06 2.38331e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| in the market ||| 0.00181159 0.0183279 2.6679e-06 3.74147e-07 2.718 ||| 0-0 ||| 552 374827 +del ||| in the matter of ||| 0.00546448 0.0740824 2.6679e-06 2.8664e-06 2.718 ||| 0-0 0-1 0-3 ||| 183 374827 +del ||| in the most ||| 0.00645161 0.0458111 2.6679e-06 4.04792e-06 2.718 ||| 0-0 0-1 ||| 155 374827 +del ||| in the nature of ||| 0.0142857 0.0740824 2.6679e-06 3.90659e-07 2.718 ||| 0-0 0-1 0-3 ||| 70 374827 +del ||| in the negotiations on the ||| 0.0178571 0.0458111 2.6679e-06 2.13137e-10 2.718 ||| 0-0 0-1 ||| 56 374827 +del ||| in the negotiations on ||| 0.00806452 0.0458111 2.6679e-06 3.47175e-09 2.718 ||| 0-0 0-1 ||| 124 374827 +del ||| in the negotiations ||| 0.00114286 0.0458111 2.6679e-06 5.18868e-07 2.718 ||| 0-0 0-1 ||| 875 374827 +del ||| in the news ||| 0.0322581 0.0732944 2.6679e-06 2.69859e-07 2.718 ||| 0-1 ||| 31 374827 +del ||| in the next ||| 0.000862813 0.0399283 2.6679e-06 9.02962e-06 2.718 ||| 0-0 0-1 0-2 ||| 1159 374827 +del ||| in the number of ||| 0.00153374 0.0740824 2.6679e-06 1.36703e-06 2.718 ||| 0-0 0-1 0-3 ||| 652 374827 +del ||| in the opinion of ||| 0.0052356 0.0183279 2.6679e-06 2.20861e-08 2.718 ||| 0-0 ||| 191 374827 +del ||| in the opinion ||| 0.00308642 0.0183279 2.6679e-06 4.06264e-07 2.718 ||| 0-0 ||| 324 374827 +del ||| in the order of a further ||| 1 0.0740824 2.6679e-06 3.15227e-11 2.718 ||| 0-0 0-1 0-3 ||| 1 374827 +del ||| in the order of a ||| 0.5 0.0740824 2.6679e-06 6.52238e-08 2.718 ||| 0-0 0-1 0-3 ||| 2 374827 +del ||| in the order of ||| 0.028169 0.0740824 5.33579e-06 1.47146e-06 2.718 ||| 0-0 0-1 0-3 ||| 71 374827 +del ||| in the other ||| 0.00239234 0.0458111 2.6679e-06 1.21335e-05 2.718 ||| 0-0 0-1 ||| 418 374827 +del ||| in the overall ||| 0.0638298 0.0458111 8.00369e-06 5.92859e-07 2.718 ||| 0-0 0-1 ||| 47 374827 +del ||| in the particular ||| 0.1 0.0458111 2.6679e-06 5.76375e-06 2.718 ||| 0-0 0-1 ||| 10 374827 +del ||| in the past few ||| 0.00970874 0.0183279 2.6679e-06 3.71761e-11 2.718 ||| 0-0 ||| 103 374827 +del ||| in the past ||| 0.000520833 0.0183279 5.33579e-06 2.12072e-07 2.718 ||| 0-0 ||| 3840 374827 +del ||| in the percentages ||| 0.5 0.0458111 2.6679e-06 1.31122e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| in the permitted ||| 1 0.0458111 2.6679e-06 2.6599e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| in the poorest ||| 0.5 0.0458111 2.6679e-06 7.11805e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| in the present ||| 0.00283286 0.0458111 2.6679e-06 3.4279e-06 2.718 ||| 0-0 0-1 ||| 353 374827 +del ||| in the price of a ||| 0.666667 0.0183279 5.33579e-06 2.03855e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| in the price of ||| 0.0133929 0.0183279 8.00369e-06 4.59902e-09 2.718 ||| 0-0 ||| 224 374827 +del ||| in the price ||| 0.00840336 0.0183279 5.33579e-06 8.45969e-08 2.718 ||| 0-0 ||| 238 374827 +del ||| in the process of ||| 0.000922509 0.130625 2.6679e-06 1.65711e-07 2.718 ||| 0-3 ||| 1084 374827 +del ||| in the process ||| 0.00115075 0.0458111 5.33579e-06 4.0039e-06 2.718 ||| 0-0 0-1 ||| 1738 374827 +del ||| in the proper ||| 0.037037 0.0183279 2.6679e-06 1.46513e-07 2.718 ||| 0-0 ||| 27 374827 +del ||| in the provision of ||| 0.016129 0.0740824 2.6679e-06 3.2822e-07 2.718 ||| 0-0 0-1 0-3 ||| 62 374827 +del ||| in the quality of the ||| 0.0322581 0.10196 2.6679e-06 6.63724e-09 2.718 ||| 0-3 0-4 ||| 31 374827 +del ||| in the range ||| 0.05 0.0458111 2.6679e-06 6.43434e-07 2.718 ||| 0-0 0-1 ||| 20 374827 +del ||| in the realm ||| 0.01 0.0732944 2.6679e-06 5.0552e-08 2.718 ||| 0-1 ||| 100 374827 +del ||| in the recycling ||| 0.166667 0.0183279 2.6679e-06 5.95986e-09 2.718 ||| 0-0 ||| 6 374827 +del ||| in the respective ||| 0.0294118 0.0458111 2.6679e-06 2.99707e-07 2.718 ||| 0-0 0-1 ||| 34 374827 +del ||| in the right places gets ||| 0.166667 0.0458111 2.6679e-06 9.55359e-15 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| in the right places ||| 0.0833333 0.0458111 2.6679e-06 3.19518e-10 2.718 ||| 0-0 0-1 ||| 12 374827 +del ||| in the right ||| 0.00156006 0.0458111 2.6679e-06 6.04004e-06 2.718 ||| 0-0 0-1 ||| 641 374827 +del ||| in the road transport ||| 1 0.0458111 2.6679e-06 8.59662e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| in the road ||| 0.0294118 0.0458111 2.6679e-06 8.35434e-07 2.718 ||| 0-0 0-1 ||| 34 374827 +del ||| in the run up ||| 0.0172414 0.0458111 2.6679e-06 3.39227e-09 2.718 ||| 0-0 0-1 ||| 58 374827 +del ||| in the run ||| 0.0196078 0.0458111 2.6679e-06 9.94654e-07 2.718 ||| 0-0 0-1 ||| 51 374827 +del ||| in the same way ||| 0.00171233 0.0458111 5.33579e-06 1.62461e-08 2.718 ||| 0-0 0-1 ||| 1168 374827 +del ||| in the same ||| 0.000803859 0.0458111 5.33579e-06 7.5367e-06 2.718 ||| 0-0 0-1 ||| 2488 374827 +del ||| in the shape of the ||| 0.0208333 0.0183279 2.6679e-06 3.3428e-10 2.718 ||| 0-0 ||| 48 374827 +del ||| in the shape of ||| 0.00568182 0.0183279 2.6679e-06 5.44503e-09 2.718 ||| 0-0 ||| 176 374827 +del ||| in the shape ||| 0.00471698 0.0183279 2.6679e-06 1.00159e-07 2.718 ||| 0-0 ||| 212 374827 +del ||| in the text of the ||| 0.00769231 0.0738854 2.6679e-06 8.29061e-08 2.718 ||| 0-0 0-1 0-3 0-4 ||| 130 374827 +del ||| in the time ||| 0.00641026 0.0458111 2.6679e-06 1.53759e-05 2.718 ||| 0-0 0-1 ||| 156 374827 +del ||| in the tobacco ||| 0.5 0.0874879 2.6679e-06 9.81635e-06 2.718 ||| 0-0 0-1 0-2 ||| 2 374827 +del ||| in the tuna ||| 1 0.0458111 2.6679e-06 3.37171e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| in the value of the ||| 0.181818 0.0738854 5.33579e-06 8.42495e-08 2.718 ||| 0-0 0-1 0-3 0-4 ||| 11 374827 +del ||| in the verbatim report of ||| 0.111111 0.130625 2.6679e-06 2.86e-13 2.718 ||| 0-4 ||| 9 374827 +del ||| in the very far ||| 1 0.0458111 2.6679e-06 2.22482e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| in the very ||| 0.00826446 0.0458111 5.33579e-06 3.25885e-05 2.718 ||| 0-0 0-1 ||| 242 374827 +del ||| in the view of the ||| 0.0120482 0.0738854 2.6679e-06 8.66772e-07 2.718 ||| 0-0 0-1 0-3 0-4 ||| 83 374827 +del ||| in the volume of ||| 0.0208333 0.0740824 2.6679e-06 3.97842e-08 2.718 ||| 0-0 0-1 0-3 ||| 48 374827 +del ||| in the voluntary sector in the United ||| 0.333333 0.0732944 2.6679e-06 2.95318e-18 2.718 ||| 0-1 ||| 3 374827 +del ||| in the voluntary sector in the ||| 0.333333 0.0732944 2.6679e-06 2.41273e-14 2.718 ||| 0-1 ||| 3 374827 +del ||| in the voluntary sector in ||| 0.25 0.0732944 2.6679e-06 3.93005e-13 2.718 ||| 0-1 ||| 4 374827 +del ||| in the voluntary sector ||| 0.166667 0.0732944 2.6679e-06 1.83609e-11 2.718 ||| 0-1 ||| 6 374827 +del ||| in the voluntary ||| 0.25 0.0732944 2.6679e-06 9.88738e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| in the way ||| 0.000564334 0.0183279 2.6679e-06 3.56863e-06 2.718 ||| 0-0 ||| 1772 374827 +del ||| in the weakness ||| 1 0.0183279 2.6679e-06 1.00986e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| in the whole ||| 0.0091954 0.0458111 1.06716e-05 5.29827e-06 2.718 ||| 0-0 0-1 ||| 435 374827 +del ||| in the world of ||| 0.00546448 0.0744764 2.6679e-06 1.11247e-07 2.718 ||| 0-0 0-3 ||| 183 374827 +del ||| in the world ||| 0.000202102 0.0183279 2.6679e-06 3.77127e-07 2.718 ||| 0-0 ||| 4948 374827 +del ||| in the ||| 0.0429923 0.0458111 0.0329832 0.00936586 2.718 ||| 0-0 0-1 ||| 287563 374827 +del ||| in their ||| 0.000925314 0.0183279 1.86753e-05 3.12568e-05 2.718 ||| 0-0 ||| 7565 374827 +del ||| in them of the ||| 1 0.0740824 2.6679e-06 7.41091e-06 2.718 ||| 0-0 0-2 0-3 ||| 1 374827 +del ||| in these ||| 0.000174246 0.0183279 2.6679e-06 2.79669e-05 2.718 ||| 0-0 ||| 5739 374827 +del ||| in this House welcome the ||| 0.25 0.0732944 2.6679e-06 1.32269e-12 2.718 ||| 0-4 ||| 4 374827 +del ||| in this area ||| 0.000140193 0.0183279 2.6679e-06 7.23622e-08 2.718 ||| 0-0 ||| 7133 374827 +del ||| in this direction ||| 0.000997009 0.0183279 2.6679e-06 1.58036e-08 2.718 ||| 0-0 ||| 1003 374827 +del ||| in this line of ||| 0.166667 0.0744764 2.6679e-06 1.51317e-08 2.718 ||| 0-0 0-3 ||| 6 374827 +del ||| in this matter ||| 0.000717875 0.0183279 2.6679e-06 1.80775e-07 2.718 ||| 0-0 ||| 1393 374827 +del ||| in this regard , too ||| 0.0588235 0.0108217 2.6679e-06 6.84215e-12 2.718 ||| 0-0 0-1 ||| 17 374827 +del ||| in this regard , ||| 0.00120627 0.0183279 5.33579e-06 1.41484e-08 2.718 ||| 0-0 ||| 1658 374827 +del ||| in this regard ||| 0.000750563 0.0183279 8.00369e-06 1.1864e-07 2.718 ||| 0-0 ||| 3997 374827 +del ||| in this respect ||| 0.00038994 0.0183279 5.33579e-06 7.53765e-08 2.718 ||| 0-0 ||| 5129 374827 +del ||| in this ||| 0.00295054 0.0183279 0.000509568 0.000174241 2.718 ||| 0-0 ||| 64734 374827 +del ||| in those ||| 0.000441891 0.0183279 2.6679e-06 1.95264e-05 2.718 ||| 0-0 ||| 2263 374827 +del ||| in time ||| 0.000853242 0.0183279 2.6679e-06 4.42707e-05 2.718 ||| 0-0 ||| 1172 374827 +del ||| in to ||| 0.0031348 0.0183279 2.6679e-06 0.00239619 2.718 ||| 0-0 ||| 319 374827 +del ||| in tobacco ||| 0.0967742 0.0945847 8.00369e-06 2.82635e-05 2.718 ||| 0-0 0-1 ||| 31 374827 +del ||| in type from the ||| 1 0.0732944 2.6679e-06 1.40071e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| in unarmed or ||| 1 0.0183279 2.6679e-06 3.39138e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| in unarmed ||| 1 0.0183279 2.6679e-06 2.9663e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| in us ||| 0.00900901 0.0183279 2.6679e-06 7.77226e-05 2.718 ||| 0-0 ||| 111 374827 +del ||| in view of the ||| 0.000384911 0.10196 2.6679e-06 1.9809e-06 2.718 ||| 0-2 0-3 ||| 2598 374827 +del ||| in violations of ||| 0.111111 0.0744764 2.6679e-06 1.11366e-07 2.718 ||| 0-0 0-2 ||| 9 374827 +del ||| in whatever ||| 0.0217391 0.0183279 5.33579e-06 1.48585e-06 2.718 ||| 0-0 ||| 92 374827 +del ||| in which the ||| 0.0112156 0.0732944 8.27048e-05 6.31499e-05 2.718 ||| 0-2 ||| 2764 374827 +del ||| in which their ||| 0.0217391 0.0012173 2.6679e-06 2.88916e-08 2.718 ||| 0-2 ||| 46 374827 +del ||| in which you are held in this ||| 1 0.0183279 2.6679e-06 3.95912e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| in which you are held in ||| 1 0.0183279 2.6679e-06 6.12734e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| in which you are held ||| 0.5 0.0183279 2.6679e-06 2.86264e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| in which you are ||| 0.1 0.0183279 5.33579e-06 1.12216e-08 2.718 ||| 0-0 ||| 20 374827 +del ||| in which you mean ||| 0.5 0.0183279 2.6679e-06 1.90593e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| in which you ||| 0.0212766 0.0183279 8.00369e-06 7.39594e-07 2.718 ||| 0-0 ||| 141 374827 +del ||| in which ||| 0.0017146 0.0183279 8.27048e-05 0.000229069 2.718 ||| 0-0 ||| 18080 374827 +del ||| in your question ||| 0.0188679 0.0183279 2.6679e-06 5.70895e-09 2.718 ||| 0-0 ||| 53 374827 +del ||| in your ||| 0.00108264 0.0183279 8.00369e-06 6.9007e-06 2.718 ||| 0-0 ||| 2771 374827 +del ||| in ||| 0.00511391 0.0183279 0.015103 0.0269664 2.718 ||| 0-0 ||| 1.10698e+06 374827 +del ||| in-office of the ||| 0.2 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-1 0-2 ||| 5 374827 +del ||| incidents of ||| 0.0128205 0.130625 2.6679e-06 2.65487e-06 2.718 ||| 0-1 ||| 78 374827 +del ||| inclined towards ||| 0.0909091 0.001978 2.6679e-06 6.4168e-10 2.718 ||| 0-1 ||| 11 374827 +del ||| included in the ||| 0.00235988 0.0458111 1.06716e-05 8.79454e-07 2.718 ||| 0-1 0-2 ||| 1695 374827 +del ||| included in this ||| 0.00540541 0.00937675 2.6679e-06 6.79539e-10 2.718 ||| 0-0 0-1 ||| 185 374827 +del ||| included in ||| 0.00112782 0.00937675 8.00369e-06 1.05169e-07 2.718 ||| 0-0 0-1 ||| 2660 374827 +del ||| included on the ||| 0.0114943 0.0732944 2.6679e-06 2.18213e-07 2.718 ||| 0-2 ||| 87 374827 +del ||| includes in his ||| 1 0.0183279 2.6679e-06 2.35809e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| includes in ||| 0.0555556 0.0183279 2.6679e-06 7.84722e-07 2.718 ||| 0-1 ||| 18 374827 +del ||| includes the ||| 0.00159236 0.0732944 2.6679e-06 1.01069e-05 2.718 ||| 0-1 ||| 628 374827 +del ||| including the ||| 0.000460829 0.0732944 5.33579e-06 3.62598e-05 2.718 ||| 0-1 ||| 4340 374827 +del ||| inclusion of those of ||| 1 0.130625 2.6679e-06 1.22237e-09 2.718 ||| 0-1 0-3 ||| 1 374827 +del ||| inclusive of the ||| 1 0.10196 2.6679e-06 6.96681e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| income from ||| 0.00666667 0.0911315 2.6679e-06 4.7681e-07 2.718 ||| 0-1 ||| 150 374827 +del ||| income of the ||| 0.0384615 0.10196 2.6679e-06 2.25397e-06 2.718 ||| 0-1 0-2 ||| 26 374827 +del ||| income ||| 0.00094162 0.005614 1.06716e-05 3.15e-05 2.718 ||| 0-0 ||| 4248 374827 +del ||| incoming ||| 0.0177936 0.0344828 1.33395e-05 1.31e-05 2.718 ||| 0-0 ||| 281 374827 +del ||| incorporated into the ||| 0.00322581 0.0732944 2.6679e-06 7.2031e-09 2.718 ||| 0-2 ||| 310 374827 +del ||| incorporating the ||| 0.00862069 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-1 ||| 116 374827 +del ||| increase from ||| 0.0185185 0.0911315 2.6679e-06 2.80018e-06 2.718 ||| 0-1 ||| 54 374827 +del ||| increase in ||| 0.00075188 0.0183279 8.00369e-06 3.48406e-06 2.718 ||| 0-1 ||| 3990 374827 +del ||| increase the ||| 0.000385356 0.0732944 2.6679e-06 4.48732e-05 2.718 ||| 0-1 ||| 2595 374827 +del ||| increase ||| 0.00011744 0.0004247 5.33579e-06 9.2e-06 2.718 ||| 0-0 ||| 17030 374827 +del ||| increased as a result ||| 0.2 0.0190026 2.6679e-06 6.66331e-11 2.718 ||| 0-0 ||| 5 374827 +del ||| increased as a ||| 0.1 0.0190026 2.6679e-06 1.26559e-07 2.718 ||| 0-0 ||| 10 374827 +del ||| increased as ||| 0.0588235 0.0190026 2.6679e-06 2.85519e-06 2.718 ||| 0-0 ||| 17 374827 +del ||| increased from the level of ||| 1 0.130625 2.6679e-06 1.23985e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| increased public ||| 0.5 0.0190026 2.6679e-06 4.52157e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| increased ||| 0.00113353 0.0190026 2.6679e-05 0.0002798 2.718 ||| 0-0 ||| 8822 374827 +del ||| increases ||| 0.000447828 0.0018425 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 2233 374827 +del ||| incumbent upon this ||| 1 0.00337805 2.6679e-06 1.85729e-12 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| indeed , the ||| 0.00125628 0.0732944 2.6679e-06 3.13915e-05 2.718 ||| 0-2 ||| 796 374827 +del ||| indeed by the ||| 0.181818 0.0597263 5.33579e-06 4.25639e-06 2.718 ||| 0-1 0-2 ||| 11 374827 +del ||| indeed for finding such a ||| 1 0.0138653 2.6679e-06 3.9855e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| indeed for finding such ||| 1 0.0138653 2.6679e-06 8.99138e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| indeed for finding ||| 1 0.0138653 2.6679e-06 4.34597e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| indeed for ||| 0.00980392 0.0138653 2.6679e-06 8.15379e-06 2.718 ||| 0-1 ||| 102 374827 +del ||| indeed from ||| 0.0588235 0.0911315 2.6679e-06 1.64261e-05 2.718 ||| 0-1 ||| 17 374827 +del ||| indeed in the interest of the ||| 1 0.10196 2.6679e-06 1.14586e-11 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| indeed made the ||| 1 0.0732944 2.6679e-06 5.51416e-07 2.718 ||| 0-2 ||| 1 374827 +del ||| indeed of the ||| 0.0526316 0.10196 5.33579e-06 7.76492e-05 2.718 ||| 0-1 0-2 ||| 38 374827 +del ||| indeed on the ||| 0.0769231 0.0436809 2.6679e-06 2.58163e-06 2.718 ||| 0-1 0-2 ||| 13 374827 +del ||| indeed the case that ||| 0.0344828 0.0732944 2.6679e-06 4.73748e-09 2.718 ||| 0-1 ||| 29 374827 +del ||| indeed the case ||| 0.0151515 0.0732944 2.6679e-06 2.8163e-07 2.718 ||| 0-1 ||| 66 374827 +del ||| indeed the port ||| 1 0.0897572 2.6679e-06 7.67581e-08 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| indeed the ||| 0.0109204 0.0732944 1.86753e-05 0.000263231 2.718 ||| 0-1 ||| 641 374827 +del ||| indicate the ||| 0.00645161 0.0732944 2.6679e-06 7.64095e-06 2.718 ||| 0-1 ||| 155 374827 +del ||| indicates the ||| 0.00934579 0.0732944 2.6679e-06 3.36896e-06 2.718 ||| 0-1 ||| 107 374827 +del ||| indication from the ||| 0.25 0.082213 2.6679e-06 1.62593e-07 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| indication of ||| 0.00497512 0.130625 5.33579e-06 6.37169e-06 2.718 ||| 0-1 ||| 402 374827 +del ||| indifferent to the ||| 0.0125 0.0732944 2.6679e-06 7.71546e-08 2.718 ||| 0-2 ||| 80 374827 +del ||| indispensable if the ||| 0.333333 0.0732944 2.6679e-06 9.28695e-10 2.718 ||| 0-2 ||| 3 374827 +del ||| individuality of the ||| 0.25 0.10196 2.6679e-06 7.17172e-08 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| individuals to ||| 0.00869565 0.0006066 2.6679e-06 4.31082e-08 2.718 ||| 0-1 ||| 115 374827 +del ||| indulging in displays ||| 1 0.0183279 2.6679e-06 3.16855e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| indulging in ||| 0.04 0.0183279 5.33579e-06 1.26742e-07 2.718 ||| 0-1 ||| 50 374827 +del ||| industry , the temporary ||| 1 0.0732944 2.6679e-06 8.48076e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| industry , the ||| 0.00833333 0.0732944 2.6679e-06 5.47146e-06 2.718 ||| 0-2 ||| 120 374827 +del ||| industry and can ||| 0.5 0.0019808 2.6679e-06 1.61318e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| industry and ||| 0.000560224 0.0019808 2.6679e-06 5.42371e-07 2.718 ||| 0-0 ||| 1785 374827 +del ||| industry of ||| 0.025 0.130625 2.6679e-06 3.89676e-05 2.718 ||| 0-1 ||| 40 374827 +del ||| industry ||| 0.000139691 0.0019808 8.00369e-06 4.33e-05 2.718 ||| 0-0 ||| 21476 374827 +del ||| inequalities and relations of social ||| 1 0.130625 2.6679e-06 6.01046e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| inequalities and relations of ||| 1 0.130625 2.6679e-06 5.81845e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| inflicted by the ||| 0.25 0.0597263 2.6679e-06 3.8189e-08 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| infliction of ||| 0.5 0.130625 2.6679e-06 2.0649e-07 2.718 ||| 0-1 ||| 2 374827 +del ||| influence of ||| 0.00257732 0.130625 2.6679e-06 1.00885e-05 2.718 ||| 0-1 ||| 388 374827 +del ||| influence on ||| 0.00299401 0.0140673 2.6679e-06 3.35416e-07 2.718 ||| 0-1 ||| 334 374827 +del ||| influence over the ||| 0.0185185 0.0732944 2.6679e-06 5.71935e-09 2.718 ||| 0-2 ||| 54 374827 +del ||| information in the ||| 0.00961538 0.0458111 2.6679e-06 1.55005e-06 2.718 ||| 0-1 0-2 ||| 104 374827 +del ||| information received from ||| 0.0357143 0.0911315 2.6679e-06 3.21388e-10 2.718 ||| 0-2 ||| 28 374827 +del ||| information system ||| 0.00411523 0.0006888 2.6679e-06 4.35265e-09 2.718 ||| 0-1 ||| 243 374827 +del ||| infringement of the ||| 0.00862069 0.10196 2.6679e-06 6.65945e-07 2.718 ||| 0-1 0-2 ||| 116 374827 +del ||| infringement of ||| 0.00306748 0.130625 2.6679e-06 1.91741e-06 2.718 ||| 0-1 ||| 326 374827 +del ||| inherent in the ||| 0.00970874 0.0458111 2.6679e-06 1.14263e-07 2.718 ||| 0-1 0-2 ||| 103 374827 +del ||| inherent in ||| 0.00393701 0.0183279 2.6679e-06 3.2899e-07 2.718 ||| 0-1 ||| 254 374827 +del ||| inherited from the ||| 0.0285714 0.082213 2.6679e-06 2.40878e-08 2.718 ||| 0-1 0-2 ||| 35 374827 +del ||| initially , the ||| 0.05 0.0732944 2.6679e-06 4.01765e-07 2.718 ||| 0-2 ||| 20 374827 +del ||| initiative ||| 7.61093e-05 0.000172 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 13139 374827 +del ||| inland ||| 0.0022831 0.0100825 2.6679e-06 1.44e-05 2.718 ||| 0-0 ||| 438 374827 +del ||| inquiry overseen by ||| 0.25 0.0461582 2.6679e-06 5.31986e-14 2.718 ||| 0-2 ||| 4 374827 +del ||| inside the ||| 0.00782779 0.0732944 1.06716e-05 4.23725e-06 2.718 ||| 0-1 ||| 511 374827 +del ||| inspection demonstrating compliance ||| 0.5 0.0201547 2.6679e-06 1.06231e-14 2.718 ||| 0-2 ||| 2 374827 +del ||| installation of ||| 0.00862069 0.130625 2.6679e-06 8.55458e-07 2.718 ||| 0-1 ||| 116 374827 +del ||| instead , the ||| 0.00398406 0.0732944 2.6679e-06 8.3625e-06 2.718 ||| 0-2 ||| 251 374827 +del ||| instead of having ||| 0.0151515 0.130625 2.6679e-06 2.28046e-08 2.718 ||| 0-1 ||| 66 374827 +del ||| instead of solving ||| 0.125 0.130625 2.6679e-06 1.48894e-10 2.718 ||| 0-1 ||| 8 374827 +del ||| instead of ||| 0.000716161 0.130625 8.00369e-06 5.95576e-05 2.718 ||| 0-1 ||| 4189 374827 +del ||| instigation of the ||| 0.0434783 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-1 0-2 ||| 23 374827 +del ||| institution , the Council ||| 0.333333 0.0732944 2.6679e-06 3.9101e-10 2.718 ||| 0-2 ||| 3 374827 +del ||| institution , the ||| 0.03125 0.0732944 2.6679e-06 1.13074e-06 2.718 ||| 0-2 ||| 32 374827 +del ||| institution of ||| 0.00512821 0.130625 2.6679e-06 8.0531e-06 2.718 ||| 0-1 ||| 195 374827 +del ||| institutions ' budgets this year ||| 0.25 0.0293692 2.6679e-06 3.45462e-18 2.718 ||| 0-1 ||| 4 374827 +del ||| institutions ' budgets this ||| 0.25 0.0293692 2.6679e-06 1.38517e-14 2.718 ||| 0-1 ||| 4 374827 +del ||| institutions ' budgets ||| 0.2 0.0293692 2.6679e-06 2.14377e-12 2.718 ||| 0-1 ||| 5 374827 +del ||| institutions ' ||| 0.00917431 0.0293692 2.6679e-06 2.49275e-07 2.718 ||| 0-1 ||| 109 374827 +del ||| integration from ||| 0.25 0.0911315 2.6679e-06 4.29129e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| integration of ||| 0.000642261 0.130625 2.6679e-06 5.84071e-06 2.718 ||| 0-1 ||| 1557 374827 +del ||| intensified to ||| 0.5 0.0065502 2.6679e-06 3.46547e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| intensified ||| 0.00308642 0.0065502 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 324 374827 +del ||| intention of the ||| 0.00666667 0.130625 2.6679e-06 1.0232e-06 2.718 ||| 0-1 ||| 150 374827 +del ||| intention of ||| 0.00129366 0.130625 2.6679e-06 1.66667e-05 2.718 ||| 0-1 ||| 773 374827 +del ||| interest and VAT ||| 0.25 0.195562 2.6679e-06 1.30257e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| interest in the European ||| 1 0.0458111 2.6679e-06 3.51707e-09 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| interest in the ||| 0.00327869 0.0458111 2.6679e-06 1.05179e-06 2.718 ||| 0-1 0-2 ||| 305 374827 +del ||| interest of the ||| 0.0151515 0.10196 1.06716e-05 1.15055e-05 2.718 ||| 0-1 0-2 ||| 264 374827 +del ||| interest of ||| 0.00138889 0.130625 2.6679e-06 3.31269e-05 2.718 ||| 0-1 ||| 720 374827 +del ||| interested in ||| 0.000905797 0.0183279 2.6679e-06 5.71688e-07 2.718 ||| 0-1 ||| 1104 374827 +del ||| interests of the ||| 0.00226629 0.10196 1.06716e-05 1.40463e-05 2.718 ||| 0-1 0-2 ||| 1765 374827 +del ||| interests of ||| 0.000822707 0.130625 1.06716e-05 4.04425e-05 2.718 ||| 0-1 ||| 4862 374827 +del ||| internal market ||| 0.000118329 0.0273989 2.6679e-06 6.90478e-08 2.718 ||| 0-1 ||| 8451 374827 +del ||| internal ||| 0.000265146 0.0004236 1.06716e-05 7.9e-06 2.718 ||| 0-0 ||| 15086 374827 +del ||| international experts ||| 0.0263158 0.0005733 2.6679e-06 3.5234e-10 2.718 ||| 0-0 ||| 38 374827 +del ||| international level in the context of economic ||| 1 0.0183279 2.6679e-06 9.69992e-20 2.718 ||| 0-2 ||| 1 374827 +del ||| international level in the context of ||| 1 0.0183279 2.6679e-06 7.99664e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| international level in the context ||| 1 0.0183279 2.6679e-06 1.47094e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| international level in the ||| 0.5 0.0183279 2.6679e-06 1.09608e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| international level in ||| 0.0833333 0.0183279 2.6679e-06 1.78539e-09 2.718 ||| 0-2 ||| 12 374827 +del ||| international ||| 0.000154741 0.0005733 1.33395e-05 2.23e-05 2.718 ||| 0-0 ||| 32312 374827 +del ||| interpretation of the ||| 0.00760456 0.130625 5.33579e-06 2.86133e-07 2.718 ||| 0-1 ||| 263 374827 +del ||| interpretation of ||| 0.00218341 0.130625 2.6679e-06 4.66077e-06 2.718 ||| 0-1 ||| 458 374827 +del ||| interprets the ||| 0.0416667 0.0442229 2.6679e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 24 374827 +del ||| intervention of ||| 0.00653595 0.130625 2.6679e-06 7.84661e-06 2.718 ||| 0-1 ||| 153 374827 +del ||| into account the ||| 0.00119904 0.0732944 5.33579e-06 1.02519e-07 2.718 ||| 0-2 ||| 1668 374827 +del ||| into being , ||| 0.025 0.000485 2.6679e-06 1.33714e-08 2.718 ||| 0-0 ||| 40 374827 +del ||| into being of a ||| 1 0.130625 2.6679e-06 3.82037e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| into being of ||| 0.5 0.130625 2.6679e-06 8.61884e-07 2.718 ||| 0-2 ||| 2 374827 +del ||| into being ||| 0.0178571 0.000485 1.06716e-05 1.12125e-07 2.718 ||| 0-0 ||| 224 374827 +del ||| into force of the ||| 0.00102775 0.10196 2.6679e-06 1.79031e-08 2.718 ||| 0-2 0-3 ||| 973 374827 +del ||| into line with that of the ||| 0.25 0.130625 2.6679e-06 5.88798e-13 2.718 ||| 0-4 ||| 4 374827 +del ||| into line with that of ||| 0.125 0.130625 2.6679e-06 9.59082e-12 2.718 ||| 0-4 ||| 8 374827 +del ||| into line with ||| 0.00308642 0.0045281 2.6679e-06 5.75262e-10 2.718 ||| 0-2 ||| 324 374827 +del ||| into line ||| 0.00260417 0.000485 2.6679e-06 1.15994e-08 2.718 ||| 0-0 ||| 384 374827 +del ||| into the arms of the ||| 0.142857 0.10196 2.6679e-06 1.78879e-10 2.718 ||| 0-3 0-4 ||| 7 374827 +del ||| into the possibility of ||| 0.1 0.130625 2.6679e-06 1.59158e-09 2.718 ||| 0-3 ||| 10 374827 +del ||| into the production ||| 0.142857 0.0732944 2.6679e-06 2.97752e-08 2.718 ||| 0-1 ||| 7 374827 +del ||| into the soil ||| 0.142857 0.160199 2.6679e-06 2.66558e-08 2.718 ||| 0-2 ||| 7 374827 +del ||| into the southern ||| 0.5 0.211819 2.6679e-06 5.28199e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| into the ||| 0.00378904 0.0732944 9.87122e-05 0.000356589 2.718 ||| 0-1 ||| 9765 374827 +del ||| into your ||| 0.0285714 0.0017627 2.6679e-06 7.82345e-08 2.718 ||| 0-1 ||| 35 374827 +del ||| into ||| 0.000312054 0.000485 3.73506e-05 3.94e-05 2.718 ||| 0-0 ||| 44864 374827 +del ||| introduced according to the ||| 1 0.0732944 2.6679e-06 2.52643e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| introduced by the ||| 0.00369004 0.0597263 2.6679e-06 5.19482e-07 2.718 ||| 0-1 0-2 ||| 271 374827 +del ||| introduced into the soil ||| 1 0.160199 2.6679e-06 2.46566e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| introducing the ' ||| 1 0.0732944 2.6679e-06 3.73407e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| introducing the ||| 0.00332226 0.0732944 2.6679e-06 1.0871e-05 2.718 ||| 0-1 ||| 301 374827 +del ||| introduction of the ||| 0.00241352 0.10196 8.00369e-06 5.37879e-06 2.718 ||| 0-1 0-2 ||| 1243 374827 +del ||| introduction of ||| 0.000953592 0.130625 8.00369e-06 1.54867e-05 2.718 ||| 0-1 ||| 3146 374827 +del ||| invention of ||| 0.05 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-1 ||| 20 374827 +del ||| investments concern the successor ||| 0.25 0.0732944 2.6679e-06 1.20553e-15 2.718 ||| 0-2 ||| 4 374827 +del ||| investments concern the ||| 0.25 0.0732944 2.6679e-06 3.01383e-10 2.718 ||| 0-2 ||| 4 374827 +del ||| invited for ||| 0.0909091 0.0138653 2.6679e-06 6.99296e-08 2.718 ||| 0-1 ||| 11 374827 +del ||| involved in the ||| 0.00734754 0.0458111 2.6679e-05 3.23871e-06 2.718 ||| 0-1 0-2 ||| 1361 374827 +del ||| involved in ||| 0.00159744 0.0183279 1.86753e-05 9.32498e-06 2.718 ||| 0-1 ||| 4382 374827 +del ||| involved the European ||| 1 0.0400553 2.6679e-06 3.68809e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| involved with the ||| 0.0196078 0.0732944 2.6679e-06 7.67991e-07 2.718 ||| 0-2 ||| 51 374827 +del ||| involves a ||| 0.00456621 0.0008087 2.6679e-06 2.58417e-08 2.718 ||| 0-1 ||| 219 374827 +del ||| involves the ||| 0.00325733 0.0732944 2.6679e-06 1.06279e-05 2.718 ||| 0-1 ||| 307 374827 +del ||| involving the ||| 0.0164474 0.0732944 4.00185e-05 1.0871e-05 2.718 ||| 0-1 ||| 912 374827 +del ||| involving ||| 0.00268384 0.0041841 2.6679e-05 3.41e-05 2.718 ||| 0-0 ||| 3726 374827 +del ||| ironic to think of ||| 1 0.130625 2.6679e-06 7.01823e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| irreparable , is the loss ||| 1 0.0732944 2.6679e-06 3.82555e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| irreparable , is the ||| 1 0.0732944 2.6679e-06 9.08683e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| irrespective of the ||| 0.00341297 0.10196 2.6679e-06 8.50361e-07 2.718 ||| 0-1 0-2 ||| 293 374827 +del ||| irrespective of ||| 0.000986193 0.130625 2.6679e-06 2.44838e-06 2.718 ||| 0-1 ||| 1014 374827 +del ||| irrevocably committed to the ||| 0.5 0.0732944 2.6679e-06 2.8109e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| is , by the ||| 0.142857 0.0597263 2.6679e-06 2.09903e-05 2.718 ||| 0-2 0-3 ||| 7 374827 +del ||| is , for the ||| 0.0416667 0.0138653 2.6679e-06 2.46858e-06 2.718 ||| 0-2 ||| 24 374827 +del ||| is , for ||| 0.00806452 0.0138653 2.6679e-06 4.02103e-05 2.718 ||| 0-2 ||| 124 374827 +del ||| is , in actual fact , the ||| 0.25 0.0732944 2.6679e-06 1.40452e-12 2.718 ||| 0-6 ||| 4 374827 +del ||| is , of ||| 0.00536193 0.130625 5.33579e-06 0.00110253 2.718 ||| 0-2 ||| 373 374827 +del ||| is , the ||| 0.00483092 0.0732944 2.6679e-06 0.00129812 2.718 ||| 0-2 ||| 207 374827 +del ||| is a broader term than ' ||| 1 0.0303522 2.6679e-06 2.31258e-17 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| is a matter for the ||| 0.00641026 0.0435798 2.6679e-06 5.38556e-09 2.718 ||| 0-3 0-4 ||| 156 374827 +del ||| is a matter of ||| 0.00198807 0.130625 2.6679e-06 4.25167e-07 2.718 ||| 0-3 ||| 503 374827 +del ||| is a risk of causing job ||| 1 0.130625 2.6679e-06 1.10466e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| is a risk of causing ||| 1 0.130625 2.6679e-06 1.41442e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| is a risk of ||| 0.0243902 0.130625 2.6679e-06 4.79465e-08 2.718 ||| 0-3 ||| 41 374827 +del ||| is a substantial ||| 0.05 0.0014577 2.6679e-06 1.09748e-08 2.718 ||| 0-2 ||| 20 374827 +del ||| is a ||| 0.000113755 0.0008087 1.33395e-05 2.64676e-05 2.718 ||| 0-1 ||| 43954 374827 +del ||| is about the ||| 0.00613497 0.0732944 5.33579e-06 1.5395e-05 2.718 ||| 0-2 ||| 326 374827 +del ||| is about ||| 0.00174825 0.0101916 1.06716e-05 4.4006e-05 2.718 ||| 0-1 ||| 2288 374827 +del ||| is adopting a ||| 0.0588235 0.0008087 2.6679e-06 1.29426e-09 2.718 ||| 0-2 ||| 17 374827 +del ||| is affiliated to the ||| 0.5 0.0732944 2.6679e-06 6.77071e-10 2.718 ||| 0-3 ||| 2 374827 +del ||| is after all a person of ||| 1 0.130625 2.6679e-06 6.7592e-14 2.718 ||| 0-5 ||| 1 374827 +del ||| is all about ||| 0.00403226 0.0101916 2.6679e-06 2.07946e-07 2.718 ||| 0-2 ||| 248 374827 +del ||| is all the ||| 0.00278552 0.0732944 2.6679e-06 5.14372e-05 2.718 ||| 0-2 ||| 359 374827 +del ||| is already the case today that ||| 1 0.0732944 2.6679e-06 4.09439e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| is already the case today ||| 0.5 0.0732944 2.6679e-06 2.43401e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| is already the case ||| 0.0232558 0.0732944 2.6679e-06 5.39333e-09 2.718 ||| 0-2 ||| 43 374827 +del ||| is already the ||| 0.0144928 0.0732944 2.6679e-06 5.04096e-06 2.718 ||| 0-2 ||| 69 374827 +del ||| is also about the ||| 0.037037 0.0732944 2.6679e-06 7.77233e-08 2.718 ||| 0-3 ||| 27 374827 +del ||| is also the ||| 0.00305344 0.0732944 5.33579e-06 5.49553e-05 2.718 ||| 0-2 ||| 655 374827 +del ||| is an ||| 0.000231535 0.0008398 8.00369e-06 5.63826e-06 2.718 ||| 0-1 ||| 12957 374827 +del ||| is annexed to the ||| 0.142857 0.0732944 2.6679e-06 2.12794e-09 2.718 ||| 0-3 ||| 7 374827 +del ||| is appropriate that the ||| 0.2 0.0732944 2.6679e-06 2.46463e-08 2.718 ||| 0-3 ||| 5 374827 +del ||| is as ||| 0.000903342 0.0004965 2.6679e-06 8.0672e-06 2.718 ||| 0-1 ||| 1107 374827 +del ||| is at least equally important ||| 1 0.023448 2.6679e-06 1.70363e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| is at least equally ||| 1 0.023448 2.6679e-06 4.44117e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| is at the ||| 0.0019305 0.0732944 2.6679e-06 4.55809e-05 2.718 ||| 0-2 ||| 518 374827 +del ||| is at ||| 0.0004329 0.0010184 2.6679e-06 7.65663e-06 2.718 ||| 0-1 ||| 2310 374827 +del ||| is because of Israel ||| 1 0.130625 2.6679e-06 7.23035e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| is because of ||| 0.00806452 0.130625 2.6679e-06 3.03796e-06 2.718 ||| 0-2 ||| 124 374827 +del ||| is being made within the ||| 1 0.0402501 2.6679e-06 2.7105e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| is being played ||| 0.0416667 0.0003475 2.6679e-06 1.15948e-10 2.718 ||| 0-2 ||| 24 374827 +del ||| is by ||| 0.00179856 0.0461582 2.6679e-06 0.000506779 2.718 ||| 0-1 ||| 556 374827 +del ||| is called upon ||| 0.0166667 0.0034407 2.6679e-06 2.78891e-10 2.718 ||| 0-2 ||| 60 374827 +del ||| is classed as ||| 0.166667 0.0004965 2.6679e-06 2.5815e-11 2.718 ||| 0-2 ||| 6 374827 +del ||| is clear from the ||| 0.0227273 0.0732944 2.6679e-06 5.83561e-09 2.718 ||| 0-3 ||| 44 374827 +del ||| is committed to the ||| 0.0192308 0.0732944 2.6679e-06 8.00878e-08 2.718 ||| 0-3 ||| 52 374827 +del ||| is concerned , under the ||| 1 0.0441302 2.6679e-06 1.65925e-09 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| is continuing ||| 0.00257069 0.005614 2.6679e-06 9.87245e-07 2.718 ||| 0-1 ||| 389 374827 +del ||| is driving ||| 0.0294118 0.0169492 2.6679e-06 1.85226e-06 2.718 ||| 0-1 ||| 34 374827 +del ||| is endorsing the decision of the Committee ||| 1 0.130625 2.6679e-06 2.67651e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| is endorsing the decision of the ||| 1 0.130625 2.6679e-06 1.75394e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| is endorsing the decision of ||| 1 0.130625 2.6679e-06 2.85696e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| is essential for the ||| 0.00699301 0.0732944 2.6679e-06 7.52948e-09 2.718 ||| 0-3 ||| 143 374827 +del ||| is essential to look upon ||| 1 0.0034407 2.6679e-06 3.74079e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| is exclusive to the ||| 0.5 0.0732944 2.6679e-06 6.28709e-09 2.718 ||| 0-3 ||| 2 374827 +del ||| is filed in ||| 0.5 0.0183279 2.6679e-06 2.45095e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| is for ||| 0.00123865 0.0138653 8.00369e-06 0.00033718 2.718 ||| 0-1 ||| 2422 374827 +del ||| is from the ||| 0.0566038 0.082213 8.00369e-06 0.000235918 2.718 ||| 0-1 0-2 ||| 53 374827 +del ||| is from ||| 0.0301205 0.0911315 1.33395e-05 0.000679262 2.718 ||| 0-1 ||| 166 374827 +del ||| is given to the ||| 0.03125 0.0732944 2.6679e-06 6.6382e-07 2.718 ||| 0-3 ||| 32 374827 +del ||| is giving the ||| 0.0416667 0.0732944 2.6679e-06 1.71552e-06 2.718 ||| 0-2 ||| 24 374827 +del ||| is going on at a ||| 1 0.0140673 2.6679e-06 4.88254e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| is going on at ||| 0.0909091 0.0140673 2.6679e-06 1.10151e-09 2.718 ||| 0-2 ||| 11 374827 +del ||| is going on in ||| 0.00645161 0.0161976 2.6679e-06 7.09362e-09 2.718 ||| 0-2 0-3 ||| 155 374827 +del ||| is going on ||| 0.00189394 0.0140673 2.6679e-06 2.63054e-07 2.718 ||| 0-2 ||| 528 374827 +del ||| is going to ||| 0.00093633 0.0006066 5.33579e-06 3.56863e-08 2.718 ||| 0-2 ||| 2136 374827 +del ||| is good news for all consumers ||| 1 0.0138653 2.6679e-06 1.12179e-18 2.718 ||| 0-3 ||| 1 374827 +del ||| is good news for all ||| 0.333333 0.0138653 2.6679e-06 2.99944e-14 2.718 ||| 0-3 ||| 3 374827 +del ||| is good news for ||| 0.0196078 0.0138653 2.6679e-06 6.34748e-12 2.718 ||| 0-3 ||| 51 374827 +del ||| is having the ||| 0.0588235 0.0732944 2.6679e-06 4.16797e-06 2.718 ||| 0-2 ||| 17 374827 +del ||| is held by ||| 0.0588235 0.0461582 2.6679e-06 1.29279e-07 2.718 ||| 0-2 ||| 17 374827 +del ||| is held in the ||| 0.25 0.0458111 2.6679e-06 7.48811e-08 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| is held responsible for the ||| 0.333333 0.0435798 2.6679e-06 4.4184e-12 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| is here as part of our 10th ||| 1 0.130625 2.6679e-06 1.25842e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| is here as part of our ||| 1 0.130625 2.6679e-06 3.14606e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| is here as part of ||| 1 0.130625 2.6679e-06 2.28074e-10 2.718 ||| 0-4 ||| 1 374827 +del ||| is in , this ||| 1 0.0108217 2.6679e-06 2.31401e-07 2.718 ||| 0-1 0-3 ||| 1 374827 +del ||| is in complete conformity with ||| 1 0.0045281 2.6679e-06 2.92528e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| is in order ||| 0.0151515 0.0183279 2.6679e-06 4.5013e-07 2.718 ||| 0-1 ||| 66 374827 +del ||| is in the ||| 0.00417827 0.0458111 1.60074e-05 0.000293536 2.718 ||| 0-1 0-2 ||| 1436 374827 +del ||| is in this ||| 0.00393701 0.0108217 2.6679e-06 1.9404e-06 2.718 ||| 0-1 0-2 ||| 254 374827 +del ||| is in ||| 0.00189189 0.0183279 3.73506e-05 0.000845157 2.718 ||| 0-1 ||| 7400 374827 +del ||| is included in the ||| 0.0078125 0.0458111 2.6679e-06 2.75631e-08 2.718 ||| 0-2 0-3 ||| 128 374827 +del ||| is indulging in ||| 0.5 0.0183279 2.6679e-06 3.97224e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| is irreparable , is the loss ||| 1 0.0732944 2.6679e-06 1.19897e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| is irreparable , is the ||| 1 0.0732944 2.6679e-06 2.84791e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| is laid down in the ||| 0.0188679 0.0732944 2.6679e-06 1.77292e-11 2.718 ||| 0-4 ||| 53 374827 +del ||| is leading the people of ||| 0.5 0.0732944 2.6679e-06 4.5368e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| is leading the people ||| 0.5 0.0732944 2.6679e-06 8.34523e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| is leading the ||| 0.025 0.0732944 2.6679e-06 9.48106e-07 2.718 ||| 0-2 ||| 40 374827 +del ||| is made in the ||| 0.0909091 0.0458111 2.6679e-06 6.149e-07 2.718 ||| 0-2 0-3 ||| 11 374827 +del ||| is made of the ||| 0.142857 0.10196 2.6679e-06 6.72639e-06 2.718 ||| 0-2 0-3 ||| 7 374827 +del ||| is made very clear in the ||| 0.5 0.0458111 2.6679e-06 7.12254e-13 2.718 ||| 0-4 0-5 ||| 2 374827 +del ||| is more about ||| 0.0625 0.0101916 2.6679e-06 1.00497e-07 2.718 ||| 0-2 ||| 16 374827 +del ||| is necessary in ||| 0.0136986 0.0183279 2.6679e-06 2.17459e-07 2.718 ||| 0-2 ||| 73 374827 +del ||| is nevertheless part of the ||| 1 0.10196 2.6679e-06 4.69714e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| is no different from the ||| 0.142857 0.082213 2.6679e-06 4.04373e-11 2.718 ||| 0-3 0-4 ||| 7 374827 +del ||| is no doubt that the ||| 0.0166667 0.0732944 2.6679e-06 1.30273e-11 2.718 ||| 0-4 ||| 60 374827 +del ||| is not entirely unfounded - ||| 1 0.050432 2.6679e-06 3.85914e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| is not entirely unfounded ||| 0.5 0.050432 2.6679e-06 1.02307e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| is not entirely ||| 0.00869565 0.050432 2.6679e-06 3.52784e-08 2.718 ||| 0-2 ||| 115 374827 +del ||| is not the first time ||| 0.0151515 0.0732944 2.6679e-06 3.28484e-11 2.718 ||| 0-2 ||| 66 374827 +del ||| is not the first ||| 0.0107527 0.0732944 2.6679e-06 2.00088e-08 2.718 ||| 0-2 ||| 93 374827 +del ||| is not the ||| 0.000755572 0.0732944 5.33579e-06 3.71634e-05 2.718 ||| 0-2 ||| 2647 374827 +del ||| is now the ||| 0.00485437 0.0732944 2.6679e-06 2.24225e-05 2.718 ||| 0-2 ||| 206 374827 +del ||| is of sufficient ||| 1 0.130625 2.6679e-06 4.49315e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| is of the order of ||| 0.333333 0.10196 2.6679e-06 9.2972e-08 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| is of the order ||| 0.5 0.10196 2.6679e-06 1.71018e-06 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| is of the ||| 0.0192837 0.10196 1.86753e-05 0.00321099 2.718 ||| 0-1 0-2 ||| 363 374827 +del ||| is of ||| 0.00314564 0.130625 2.6679e-05 0.00924517 2.718 ||| 0-1 ||| 3179 374827 +del ||| is on the ||| 0.00592417 0.0436809 1.33395e-05 0.000106757 2.718 ||| 0-1 0-2 ||| 844 374827 +del ||| is on ||| 0.000596303 0.0140673 2.6679e-06 0.000307378 2.718 ||| 0-1 ||| 1677 374827 +del ||| is one from ||| 0.5 0.0911315 2.6679e-06 2.83116e-06 2.718 ||| 0-2 ||| 2 374827 +del ||| is one of a ||| 0.0263158 0.130625 2.6679e-06 1.70804e-06 2.718 ||| 0-2 ||| 38 374827 +del ||| is one of ||| 0.00040404 0.130625 5.33579e-06 3.85339e-05 2.718 ||| 0-2 ||| 4950 374827 +del ||| is opened to ||| 1 0.0006066 2.6679e-06 1.08001e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| is out of step ||| 0.166667 0.130625 2.6679e-06 5.22337e-09 2.718 ||| 0-2 ||| 6 374827 +del ||| is out of ||| 0.0142857 0.130625 5.33579e-06 3.54127e-05 2.718 ||| 0-2 ||| 140 374827 +del ||| is part of the ||| 0.00204918 0.130625 2.6679e-06 6.76666e-07 2.718 ||| 0-2 ||| 488 374827 +del ||| is part of ||| 0.00120627 0.130625 2.6679e-06 1.10221e-05 2.718 ||| 0-2 ||| 829 374827 +del ||| is possibly greater than the expense ||| 0.5 0.0523148 2.6679e-06 2.92756e-18 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| is possibly greater than the ||| 0.5 0.0523148 2.6679e-06 1.50905e-13 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| is precisely the ||| 0.00352113 0.0732944 2.6679e-06 1.07329e-06 2.718 ||| 0-2 ||| 284 374827 +del ||| is presented by the ||| 0.125 0.0461582 2.6679e-06 2.45163e-09 2.718 ||| 0-2 ||| 8 374827 +del ||| is presented by ||| 0.0833333 0.0461582 2.6679e-06 3.99342e-08 2.718 ||| 0-2 ||| 12 374827 +del ||| is pressing in ||| 0.5 0.0183279 2.6679e-06 1.15786e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| is reaching up out of the ||| 1 0.10196 2.6679e-06 1.13257e-12 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| is really the ||| 0.0153846 0.0732944 2.6679e-06 5.27282e-06 2.718 ||| 0-2 ||| 65 374827 +del ||| is removed from the ||| 0.125 0.082213 2.6679e-06 1.06871e-08 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| is removed from ||| 0.1 0.0911315 2.6679e-06 3.07706e-08 2.718 ||| 0-2 ||| 10 374827 +del ||| is represented per ||| 0.5 0.0098877 2.6679e-06 8.57414e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| is required of them if they are ||| 0.333333 0.130625 2.6679e-06 1.62865e-16 2.718 ||| 0-2 ||| 3 374827 +del ||| is required of them if they ||| 0.333333 0.130625 2.6679e-06 1.07341e-14 2.718 ||| 0-2 ||| 3 374827 +del ||| is required of them if ||| 0.333333 0.130625 2.6679e-06 3.28862e-12 2.718 ||| 0-2 ||| 3 374827 +del ||| is required of them ||| 0.166667 0.130625 2.6679e-06 3.93564e-09 2.718 ||| 0-2 ||| 6 374827 +del ||| is required of ||| 0.0434783 0.130625 2.6679e-06 1.46721e-06 2.718 ||| 0-2 ||| 23 374827 +del ||| is set for the ||| 1 0.0435798 2.6679e-06 6.84379e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| is shown by the ||| 0.027027 0.0732944 2.6679e-06 5.96632e-09 2.718 ||| 0-3 ||| 37 374827 +del ||| is somewhat ironic to think of ||| 1 0.130625 2.6679e-06 1.28236e-17 2.718 ||| 0-5 ||| 1 374827 +del ||| is still the business ||| 1 0.0732944 2.6679e-06 1.02403e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| is still the ||| 0.00480769 0.0732944 2.6679e-06 8.19878e-06 2.718 ||| 0-2 ||| 208 374827 +del ||| is substantial ||| 0.04 0.0014577 2.6679e-06 2.47595e-07 2.718 ||| 0-1 ||| 25 374827 +del ||| is taken of ||| 0.0238095 0.130625 2.6679e-06 8.42697e-06 2.718 ||| 0-2 ||| 42 374827 +del ||| is thanks to the ||| 0.0238095 0.0732944 2.6679e-06 7.83468e-08 2.718 ||| 0-3 ||| 42 374827 +del ||| is that , for the first time ||| 0.166667 0.0138653 2.6679e-06 3.6704e-14 2.718 ||| 0-3 ||| 6 374827 +del ||| is that , for the first ||| 0.125 0.0138653 2.6679e-06 2.23573e-11 2.718 ||| 0-3 ||| 8 374827 +del ||| is that , for the ||| 0.0588235 0.0138653 2.6679e-06 4.15255e-08 2.718 ||| 0-3 ||| 17 374827 +del ||| is that , for ||| 0.027027 0.0138653 2.6679e-06 6.76402e-07 2.718 ||| 0-3 ||| 37 374827 +del ||| is that it should cut through the ||| 1 0.0732944 2.6679e-06 5.02089e-16 2.718 ||| 0-6 ||| 1 374827 +del ||| is that of the ||| 0.00649351 0.10196 2.6679e-06 5.40141e-05 2.718 ||| 0-2 0-3 ||| 154 374827 +del ||| is that the ||| 0.000784724 0.0732944 8.00369e-06 0.000183107 2.718 ||| 0-2 ||| 3823 374827 +del ||| is the Commission aware of the ||| 0.05 0.130625 2.6679e-06 2.827e-12 2.718 ||| 0-4 ||| 20 374827 +del ||| is the Commission aware of ||| 0.0222222 0.130625 2.6679e-06 4.60484e-11 2.718 ||| 0-4 ||| 45 374827 +del ||| is the case also of ||| 1 0.130625 2.6679e-06 3.06577e-09 2.718 ||| 0-4 ||| 1 374827 +del ||| is the case that , in ||| 0.333333 0.0732944 2.6679e-06 5.00069e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| is the case that , ||| 0.166667 0.0732944 2.6679e-06 2.33628e-08 2.718 ||| 0-1 ||| 6 374827 +del ||| is the case that ||| 0.0222222 0.0732944 2.6679e-06 1.95907e-07 2.718 ||| 0-1 ||| 45 374827 +del ||| is the case ||| 0.00160514 0.0732944 5.33579e-06 1.16461e-05 2.718 ||| 0-1 ||| 1246 374827 +del ||| is the conviction ||| 0.0833333 0.0732944 2.6679e-06 8.2728e-08 2.718 ||| 0-1 ||| 12 374827 +del ||| is the discretion ||| 1 0.0732944 2.6679e-06 5.44263e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| is the existence of ||| 0.0454545 0.130625 2.6679e-06 3.92196e-08 2.718 ||| 0-3 ||| 22 374827 +del ||| is the fault of the ||| 0.142857 0.10196 2.6679e-06 3.11463e-09 2.718 ||| 0-3 0-4 ||| 7 374827 +del ||| is the issue of withdrawal ||| 1 0.0732944 2.6679e-06 4.34413e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| is the issue of ||| 0.00471698 0.0732944 2.6679e-06 4.47849e-07 2.718 ||| 0-1 ||| 212 374827 +del ||| is the issue ||| 0.00314465 0.0732944 2.6679e-06 8.23796e-06 2.718 ||| 0-1 ||| 318 374827 +del ||| is the least ||| 0.0149254 0.0732944 2.6679e-06 2.67124e-06 2.718 ||| 0-1 ||| 67 374827 +del ||| is the loss ||| 0.0666667 0.0732944 2.6679e-06 4.58269e-07 2.718 ||| 0-1 ||| 15 374827 +del ||| is the need to ||| 0.00581395 0.0732944 2.6679e-06 8.86867e-07 2.718 ||| 0-1 ||| 172 374827 +del ||| is the need ||| 0.00322581 0.0732944 2.6679e-06 9.98069e-06 2.718 ||| 0-1 ||| 310 374827 +del ||| is the one ||| 0.00502513 0.0732944 2.6679e-06 4.53698e-05 2.718 ||| 0-1 ||| 199 374827 +del ||| is the strong emphasis ||| 0.2 0.0732944 2.6679e-06 4.72245e-11 2.718 ||| 0-1 ||| 5 374827 +del ||| is the strong ||| 0.0909091 0.0732944 2.6679e-06 9.24159e-07 2.718 ||| 0-1 ||| 11 374827 +del ||| is the subject ||| 0.00401606 0.0732944 2.6679e-06 5.87586e-06 2.718 ||| 0-1 ||| 249 374827 +del ||| is the very ||| 0.00694444 0.0732944 2.6679e-06 3.78753e-05 2.718 ||| 0-1 ||| 144 374827 +del ||| is the winner ||| 0.142857 0.0732944 2.6679e-06 1.21915e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| is the ||| 0.00207339 0.0732944 0.000221435 0.0108853 2.718 ||| 0-1 ||| 40031 374827 +del ||| is this ||| 0.000452284 0.0033154 2.6679e-06 7.1956e-05 2.718 ||| 0-1 ||| 2211 374827 +del ||| is time the truth finally dawned on ||| 1 0.0732944 2.6679e-06 2.41359e-22 2.718 ||| 0-2 ||| 1 374827 +del ||| is time the truth finally dawned ||| 1 0.0732944 2.6679e-06 3.60722e-20 2.718 ||| 0-2 ||| 1 374827 +del ||| is time the truth finally ||| 1 0.0732944 2.6679e-06 5.15318e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| is time the truth ||| 1 0.0732944 2.6679e-06 4.37823e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| is time the ||| 0.142857 0.0732944 2.6679e-06 1.78703e-05 2.718 ||| 0-2 ||| 7 374827 +del ||| is to say our neighbours to the ||| 1 0.0732944 2.6679e-06 5.6658e-16 2.718 ||| 0-6 ||| 1 374827 +del ||| is to say the ||| 0.016129 0.0732944 2.6679e-06 9.24492e-07 2.718 ||| 0-3 ||| 62 374827 +del ||| is to turn the ||| 0.25 0.0732944 2.6679e-06 2.16856e-07 2.718 ||| 0-3 ||| 4 374827 +del ||| is to ||| 0.000128066 0.0006066 5.33579e-06 4.16993e-05 2.718 ||| 0-1 ||| 15617 374827 +del ||| is true that the ||| 0.0208333 0.0732944 2.6679e-06 2.95902e-08 2.718 ||| 0-3 ||| 48 374827 +del ||| is up ||| 0.00217865 0.0020886 2.6679e-06 5.9266e-06 2.718 ||| 0-1 ||| 459 374827 +del ||| is very much in the interests ||| 0.333333 0.0732944 2.6679e-06 1.11558e-13 2.718 ||| 0-4 ||| 3 374827 +del ||| is very much in the ||| 0.0555556 0.0732944 2.6679e-06 8.13701e-10 2.718 ||| 0-4 ||| 18 374827 +del ||| is well over the limit ||| 0.111111 0.0732944 2.6679e-06 4.03892e-13 2.718 ||| 0-3 ||| 9 374827 +del ||| is well over the ||| 0.111111 0.0732944 2.6679e-06 8.31053e-09 2.718 ||| 0-3 ||| 9 374827 +del ||| is with regard to the ||| 0.111111 0.0732944 2.6679e-06 4.2114e-09 2.718 ||| 0-4 ||| 9 374827 +del ||| is women 's ||| 1 0.169811 2.6679e-06 1.49606e-07 2.718 ||| 0-2 ||| 1 374827 +del ||| isolation from the ||| 0.0322581 0.0732944 2.6679e-06 3.63556e-09 2.718 ||| 0-2 ||| 31 374827 +del ||| issue a ||| 0.00420168 0.0008087 2.6679e-06 6.39118e-07 2.718 ||| 0-1 ||| 238 374827 +del ||| issue for the ||| 0.00943396 0.0435798 2.6679e-06 2.82783e-06 2.718 ||| 0-1 0-2 ||| 106 374827 +del ||| issue for ||| 0.00581395 0.0138653 5.33579e-06 8.14196e-06 2.718 ||| 0-1 ||| 344 374827 +del ||| issue from the ||| 0.04 0.0911315 2.6679e-06 1.00697e-06 2.718 ||| 0-1 ||| 25 374827 +del ||| issue from ||| 0.0138889 0.0911315 2.6679e-06 1.64023e-05 2.718 ||| 0-1 ||| 72 374827 +del ||| issue of the ||| 0.00881834 0.10196 4.00185e-05 7.75365e-05 2.718 ||| 0-1 0-2 ||| 1701 374827 +del ||| issue of withdrawal from ||| 1 0.0911315 2.6679e-06 8.64943e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| issue of ||| 0.00379157 0.130625 9.33764e-05 0.000223245 2.718 ||| 0-1 ||| 9231 374827 +del ||| issued by the ||| 0.037234 0.0597263 1.86753e-05 3.47632e-07 2.718 ||| 0-1 0-2 ||| 188 374827 +del ||| issued by ||| 0.00284091 0.0238024 2.6679e-06 6.30622e-08 2.718 ||| 0-0 0-1 ||| 352 374827 +del ||| issued on ||| 0.0188679 0.0140673 2.6679e-06 6.07084e-07 2.718 ||| 0-1 ||| 53 374827 +del ||| issued once the ||| 1 0.0732944 2.6679e-06 8.79733e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| issues addressed in the ||| 0.166667 0.0458111 2.6679e-06 1.26255e-10 2.718 ||| 0-2 0-3 ||| 6 374827 +del ||| issues covered by ||| 0.0666667 0.0461582 2.6679e-06 2.91176e-10 2.718 ||| 0-2 ||| 15 374827 +del ||| issues from ||| 0.0322581 0.0911315 2.6679e-06 5.45081e-06 2.718 ||| 0-1 ||| 31 374827 +del ||| issues of N ||| 0.2 0.130625 2.6679e-06 5.19322e-11 2.718 ||| 0-1 ||| 5 374827 +del ||| issues of protection of ||| 1 0.130625 2.6679e-06 4.0937e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| issues of the ||| 0.00884956 0.10196 2.6679e-06 2.5767e-05 2.718 ||| 0-1 0-2 ||| 113 374827 +del ||| issues of ||| 0.00201884 0.130625 8.00369e-06 7.41889e-05 2.718 ||| 0-1 ||| 1486 374827 +del ||| issuing the ||| 0.0238095 0.0732944 2.6679e-06 4.75823e-06 2.718 ||| 0-1 ||| 42 374827 +del ||| it also includes the ||| 0.0833333 0.0732944 2.6679e-06 9.07399e-10 2.718 ||| 0-3 ||| 12 374827 +del ||| it appears , a Member of ||| 1 0.130625 2.6679e-06 7.45887e-13 2.718 ||| 0-5 ||| 1 374827 +del ||| it appears on the ||| 0.2 0.0732944 2.6679e-06 2.15723e-09 2.718 ||| 0-3 ||| 5 374827 +del ||| it as a ||| 0.00413223 0.0008087 2.6679e-06 1.53249e-07 2.718 ||| 0-2 ||| 242 374827 +del ||| it as ||| 0.00122699 0.0004965 2.6679e-06 4.5774e-06 2.718 ||| 0-1 ||| 815 374827 +del ||| it be in connection with ||| 1 0.0183279 2.6679e-06 8.4805e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| it be in connection ||| 1 0.0183279 2.6679e-06 1.32622e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| it be in ||| 0.0217391 0.0183279 2.6679e-06 8.69082e-06 2.718 ||| 0-2 ||| 46 374827 +del ||| it be possible for the ||| 0.333333 0.0435798 2.6679e-06 9.65914e-10 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| it by the ||| 0.0240964 0.0597263 5.33579e-06 9.98709e-05 2.718 ||| 0-1 0-2 ||| 83 374827 +del ||| it carried out in April ||| 1 0.0183279 2.6679e-06 1.35331e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| it carried out in ||| 1 0.0183279 2.6679e-06 5.41324e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| it comes to the ||| 0.00134589 0.0732944 2.6679e-06 2.19419e-07 2.718 ||| 0-3 ||| 743 374827 +del ||| it completely ||| 0.0434783 0.0018429 2.6679e-06 3.04093e-07 2.718 ||| 0-1 ||| 23 374827 +del ||| it cuts down on the ||| 0.25 0.0436809 2.6679e-06 4.86304e-13 2.718 ||| 0-3 0-4 ||| 4 374827 +del ||| it depends on the ||| 0.0384615 0.0732944 2.6679e-06 6.24026e-10 2.718 ||| 0-3 ||| 26 374827 +del ||| it deserves from ||| 0.25 0.0911315 2.6679e-06 7.47713e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| it does for ||| 0.0555556 0.0138653 2.6679e-06 1.34191e-07 2.718 ||| 0-2 ||| 18 374827 +del ||| it easier for the ||| 0.0833333 0.0435798 2.6679e-06 4.63807e-09 2.718 ||| 0-2 0-3 ||| 12 374827 +del ||| it easier to ||| 0.0136986 0.0006066 2.6679e-06 1.65151e-09 2.718 ||| 0-2 ||| 73 374827 +del ||| it escapes from it ||| 1 0.0911315 2.6679e-06 9.59557e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| it escapes from ||| 1 0.0911315 2.6679e-06 5.39586e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| it examined the ||| 0.25 0.0732944 2.6679e-06 1.08704e-07 2.718 ||| 0-2 ||| 4 374827 +del ||| it follows that a number of amendments ||| 1 0.130625 2.6679e-06 7.81168e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| it follows that a number of ||| 1 0.130625 2.6679e-06 1.02381e-13 2.718 ||| 0-5 ||| 1 374827 +del ||| it for ||| 0.00485437 0.0138653 5.33579e-06 0.000191319 2.718 ||| 0-1 ||| 412 374827 +del ||| it from the draft ||| 1 0.082213 2.6679e-06 7.02776e-09 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| it from the ||| 0.115385 0.082213 2.40111e-05 0.000133862 2.718 ||| 0-1 0-2 ||| 78 374827 +del ||| it from ||| 0.0174825 0.0911315 1.33395e-05 0.000385419 2.718 ||| 0-1 ||| 286 374827 +del ||| it has been the ||| 0.015873 0.0732944 2.6679e-06 1.06163e-07 2.718 ||| 0-3 ||| 63 374827 +del ||| it has to ||| 0.000755858 0.0006066 2.6679e-06 1.21793e-07 2.718 ||| 0-2 ||| 1323 374827 +del ||| it if the ||| 0.0169492 0.0732944 2.6679e-06 5.16099e-06 2.718 ||| 0-2 ||| 59 374827 +del ||| it in a ||| 0.00990099 0.0183279 2.6679e-06 2.12564e-05 2.718 ||| 0-1 ||| 101 374827 +del ||| it in its ||| 0.03125 0.0109543 2.6679e-06 2.34308e-07 2.718 ||| 0-1 0-2 ||| 32 374827 +del ||| it in the ||| 0.00977995 0.0458111 1.06716e-05 0.000166555 2.718 ||| 0-1 0-2 ||| 409 374827 +del ||| it in ||| 0.00190597 0.0183279 8.00369e-06 0.000479549 2.718 ||| 0-1 ||| 1574 374827 +del ||| it is , of ||| 0.0116279 0.130625 2.6679e-06 1.96065e-05 2.718 ||| 0-3 ||| 86 374827 +del ||| it is a matter of ||| 0.00205339 0.130625 2.6679e-06 7.56083e-09 2.718 ||| 0-4 ||| 487 374827 +del ||| it is a ||| 8.2672e-05 0.0008087 2.6679e-06 4.70678e-07 2.718 ||| 0-2 ||| 12096 374827 +del ||| it is about the ||| 0.00704225 0.0732944 2.6679e-06 2.73773e-07 2.718 ||| 0-3 ||| 142 374827 +del ||| it is about ||| 0.00107411 0.0101916 2.6679e-06 7.82568e-07 2.718 ||| 0-2 ||| 931 374827 +del ||| it is all about ||| 0.0103093 0.0101916 2.6679e-06 3.69795e-09 2.718 ||| 0-3 ||| 97 374827 +del ||| it is already the case today that ||| 1 0.0732944 2.6679e-06 7.28114e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| it is already the case today ||| 1 0.0732944 2.6679e-06 4.32845e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| it is already the case ||| 1 0.0732944 2.6679e-06 9.59106e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| it is already the ||| 0.142857 0.0732944 2.6679e-06 8.96445e-08 2.718 ||| 0-3 ||| 7 374827 +del ||| it is an ||| 0.000373413 0.0008398 2.6679e-06 1.00266e-07 2.718 ||| 0-2 ||| 2678 374827 +del ||| it is clear from the ||| 0.0357143 0.0732944 2.6679e-06 1.03776e-10 2.718 ||| 0-4 ||| 28 374827 +del ||| it is from ||| 0.0217391 0.0911315 2.6679e-06 1.20795e-05 2.718 ||| 0-2 ||| 46 374827 +del ||| it is in the ||| 0.00452489 0.0458111 5.33579e-06 5.22001e-06 2.718 ||| 0-2 0-3 ||| 442 374827 +del ||| it is in ||| 0.000541418 0.0183279 2.6679e-06 1.50296e-05 2.718 ||| 0-2 ||| 1847 374827 +del ||| it is irreparable , is the loss ||| 1 0.0732944 2.6679e-06 2.13215e-17 2.718 ||| 0-5 ||| 1 374827 +del ||| it is irreparable , is the ||| 1 0.0732944 2.6679e-06 5.0645e-13 2.718 ||| 0-5 ||| 1 374827 +del ||| it is made very clear in the ||| 1 0.0458111 2.6679e-06 1.26662e-14 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| it is nevertheless part of the ||| 1 0.10196 2.6679e-06 8.35301e-12 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| it is no different from the ||| 1 0.082213 2.6679e-06 7.19104e-13 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| it is now the ||| 0.0212766 0.0732944 2.6679e-06 3.98745e-07 2.718 ||| 0-3 ||| 47 374827 +del ||| it is one from ||| 0.5 0.0911315 2.6679e-06 5.03472e-08 2.718 ||| 0-3 ||| 2 374827 +del ||| it is out of step ||| 0.333333 0.130625 2.6679e-06 9.28883e-11 2.718 ||| 0-3 ||| 3 374827 +del ||| it is out of ||| 0.03125 0.130625 2.6679e-06 6.29751e-07 2.718 ||| 0-3 ||| 32 374827 +del ||| it is precisely the ||| 0.00813008 0.0732944 2.6679e-06 1.90865e-08 2.718 ||| 0-3 ||| 123 374827 +del ||| it is somewhat ironic to think of ||| 1 0.130625 2.6679e-06 2.28045e-19 2.718 ||| 0-6 ||| 1 374827 +del ||| it is the case that , in ||| 0.2 0.0732944 2.6679e-06 8.89283e-12 2.718 ||| 0-2 ||| 5 374827 +del ||| it is the case that , ||| 0.0625 0.0732944 2.6679e-06 4.15465e-10 2.718 ||| 0-2 ||| 16 374827 +del ||| it is the case that ||| 0.0105263 0.0732944 2.6679e-06 3.48385e-09 2.718 ||| 0-2 ||| 95 374827 +del ||| it is the case ||| 0.00617284 0.0732944 2.6679e-06 2.07106e-07 2.718 ||| 0-2 ||| 162 374827 +del ||| it is the discretion ||| 1 0.0732944 2.6679e-06 9.67874e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| it is the existence of ||| 1 0.130625 2.6679e-06 6.9745e-10 2.718 ||| 0-4 ||| 1 374827 +del ||| it is the fault of the ||| 0.0909091 0.10196 2.6679e-06 5.53881e-11 2.718 ||| 0-4 0-5 ||| 11 374827 +del ||| it is the ||| 0.000980777 0.0732944 1.33395e-05 0.000193575 2.718 ||| 0-2 ||| 5098 374827 +del ||| it is this ||| 0.00247525 0.0033154 2.6679e-06 1.27961e-06 2.718 ||| 0-2 ||| 404 374827 +del ||| it is to ||| 0.000700771 0.0006066 2.6679e-06 7.41548e-07 2.718 ||| 0-2 ||| 1427 374827 +del ||| it is true that the ||| 0.0018622 0.0732944 2.6679e-06 5.26208e-10 2.718 ||| 0-4 ||| 537 374827 +del ||| it not ? ' ' ||| 1 0.0293692 2.6679e-06 1.69224e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| it not ? ' ||| 0.5 0.0293692 2.6679e-06 4.92661e-11 2.718 ||| 0-3 ||| 2 374827 +del ||| it of the ||| 0.105263 0.10196 5.33579e-06 0.00182194 2.718 ||| 0-1 0-2 ||| 19 374827 +del ||| it of ||| 0.0133333 0.130625 2.6679e-06 0.00524579 2.718 ||| 0-1 ||| 75 374827 +del ||| it on ||| 0.003003 0.0140673 2.6679e-06 0.000174409 2.718 ||| 0-1 ||| 333 374827 +del ||| it out of the ||| 0.25 0.10196 2.6679e-06 6.97878e-06 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| it should cut through the ||| 1 0.0732944 2.6679e-06 9.52355e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| it should seek the ||| 0.333333 0.0732944 2.6679e-06 1.90205e-09 2.718 ||| 0-3 ||| 3 374827 +del ||| it that - of ||| 1 0.130625 2.6679e-06 3.3286e-07 2.718 ||| 0-3 ||| 1 374827 +del ||| it the number of ||| 0.5 0.130625 2.6679e-06 1.59349e-07 2.718 ||| 0-3 ||| 2 374827 +del ||| it the ||| 0.00779221 0.0732944 8.00369e-06 0.00617639 2.718 ||| 0-1 ||| 385 374827 +del ||| it to its ||| 0.125 0.0035806 2.6679e-06 7.72077e-07 2.718 ||| 0-2 ||| 8 374827 +del ||| it up from the ||| 1 0.082213 2.6679e-06 4.56537e-07 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| it was affected by a ||| 1 0.0461582 2.6679e-06 2.65954e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| it was affected by ||| 0.5 0.0461582 2.6679e-06 5.99997e-11 2.718 ||| 0-3 ||| 2 374827 +del ||| it was also welcomed by the ||| 1 0.0597263 2.6679e-06 3.75965e-14 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| it was indeed the case that ||| 1 0.0732944 2.6679e-06 2.63947e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| it was indeed the case ||| 1 0.0732944 2.6679e-06 1.5691e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| it was indeed the ||| 0.333333 0.0732944 2.6679e-06 1.46658e-08 2.718 ||| 0-3 ||| 3 374827 +del ||| it was of ||| 0.0588235 0.130625 2.6679e-06 1.6435e-05 2.718 ||| 0-2 ||| 17 374827 +del ||| it was the Spanish ||| 1 0.0016529 2.6679e-06 3.1468e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| it were , for the ||| 0.25 0.0435798 2.6679e-06 1.41955e-08 2.718 ||| 0-3 0-4 ||| 4 374827 +del ||| it were lord of the ||| 1 0.10196 2.6679e-06 4.56936e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| it were needed - of the ||| 1 0.10196 2.6679e-06 1.64851e-12 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| it were up to ||| 0.0833333 0.0020886 2.6679e-06 5.35293e-10 2.718 ||| 0-2 ||| 12 374827 +del ||| it were up ||| 0.0666667 0.0020886 2.6679e-06 6.02413e-09 2.718 ||| 0-2 ||| 15 374827 +del ||| it would be a ||| 0.00111359 0.0008087 2.6679e-06 1.59727e-09 2.718 ||| 0-3 ||| 898 374827 +del ||| it would be in the ||| 0.0666667 0.0458111 2.6679e-06 1.77144e-08 2.718 ||| 0-3 0-4 ||| 15 374827 +del ||| it would operate in a ||| 1 0.0183279 2.6679e-06 6.06272e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| it would operate in ||| 1 0.0183279 2.6679e-06 1.36776e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| it would raise libraries ||| 1 0.0042553 2.6679e-06 1.78818e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| item for the ||| 1 0.105474 2.6679e-06 1.73489e-05 2.718 ||| 0-0 0-1 0-2 ||| 1 374827 +del ||| item on ||| 0.00518135 0.229263 2.6679e-06 3.10663e-05 2.718 ||| 0-0 ||| 193 374827 +del ||| item ||| 0.00149745 0.229263 1.33395e-05 0.004643 2.718 ||| 0-0 ||| 3339 374827 +del ||| its Presidency of the ||| 0.111111 0.10196 2.6679e-06 7.25446e-09 2.718 ||| 0-2 0-3 ||| 9 374827 +del ||| its answer ||| 0.0147059 0.0035806 2.6679e-06 3.65961e-08 2.718 ||| 0-0 ||| 68 374827 +del ||| its attention ||| 0.00763359 0.0035806 2.6679e-06 1.27671e-07 2.718 ||| 0-0 ||| 131 374827 +del ||| its bad ||| 0.142857 0.0035806 2.6679e-06 2.2329e-08 2.718 ||| 0-0 ||| 7 374827 +del ||| its being ||| 0.00943396 0.0035806 2.6679e-06 1.39046e-06 2.718 ||| 0-0 ||| 106 374827 +del ||| its best will ||| 1 0.0035806 2.6679e-06 5.85436e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| its best ||| 0.00483092 0.0035806 2.6679e-06 6.76711e-08 2.718 ||| 0-0 ||| 207 374827 +del ||| its feet ||| 0.0120482 0.0035806 2.6679e-06 9.13682e-09 2.718 ||| 0-0 ||| 83 374827 +del ||| its full ||| 0.00297619 0.0035806 2.6679e-06 8.96581e-08 2.718 ||| 0-0 ||| 336 374827 +del ||| its guises ||| 0.142857 0.0035806 2.6679e-06 1.9544e-10 2.718 ||| 0-0 ||| 7 374827 +del ||| its hegemony ||| 0.142857 0.0035806 2.6679e-06 5.3746e-10 2.718 ||| 0-0 ||| 7 374827 +del ||| its initial ||| 0.0333333 0.0035806 2.6679e-06 1.28502e-08 2.718 ||| 0-0 ||| 30 374827 +del ||| its meeting of ||| 0.00675676 0.130625 2.6679e-06 5.27854e-08 2.718 ||| 0-2 ||| 148 374827 +del ||| its meeting on ||| 0.00934579 0.0140673 2.6679e-06 1.75498e-09 2.718 ||| 0-2 ||| 107 374827 +del ||| its mind ||| 0.0238095 0.0035806 2.6679e-06 1.23078e-07 2.718 ||| 0-0 ||| 42 374827 +del ||| its own ||| 0.00034089 0.0035806 5.33579e-06 8.28324e-07 2.718 ||| 0-0 ||| 5867 374827 +del ||| its particular ||| 0.0357143 0.0035806 2.6679e-06 3.00684e-07 2.718 ||| 0-0 ||| 28 374827 +del ||| its policy towards ||| 0.0357143 0.0035806 2.6679e-06 2.443e-11 2.718 ||| 0-0 ||| 28 374827 +del ||| its policy ||| 0.00212766 0.0035806 2.6679e-06 1.92362e-07 2.718 ||| 0-0 ||| 470 374827 +del ||| its progress ||| 0.0119048 0.0035806 2.6679e-06 6.43486e-08 2.718 ||| 0-0 ||| 84 374827 +del ||| its regulations ||| 0.0416667 0.0035806 2.6679e-06 2.14495e-08 2.718 ||| 0-0 ||| 24 374827 +del ||| its success will depend ||| 0.2 0.0035806 2.6679e-06 4.61992e-15 2.718 ||| 0-0 ||| 5 374827 +del ||| its success will ||| 0.166667 0.0035806 2.6679e-06 2.51082e-10 2.718 ||| 0-0 ||| 6 374827 +del ||| its success ||| 0.00478469 0.0035806 2.6679e-06 2.90228e-08 2.718 ||| 0-0 ||| 209 374827 +del ||| its tracks ||| 0.0454545 0.0035806 2.6679e-06 2.83388e-09 2.718 ||| 0-0 ||| 22 374827 +del ||| its true ||| 0.0117647 0.0035806 2.6679e-06 7.89578e-08 2.718 ||| 0-0 ||| 85 374827 +del ||| its unwillingness to cooperate ||| 0.5 0.0035806 2.6679e-06 4.2982e-16 2.718 ||| 0-0 ||| 2 374827 +del ||| its unwillingness to ||| 0.0588235 0.0035806 2.6679e-06 4.77577e-11 2.718 ||| 0-0 ||| 17 374827 +del ||| its unwillingness ||| 0.0625 0.0035806 2.6679e-06 5.3746e-10 2.718 ||| 0-0 ||| 16 374827 +del ||| its views ||| 0.00460829 0.0035806 2.6679e-06 3.97232e-08 2.718 ||| 0-0 ||| 217 374827 +del ||| its ||| 0.00146799 0.0035806 0.000410856 0.0004886 2.718 ||| 0-0 ||| 104905 374827 +del ||| itself of the ||| 0.125 0.10196 2.6679e-06 6.95349e-05 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| itself on the ||| 0.05 0.0436809 2.6679e-06 2.31186e-06 2.718 ||| 0-1 0-2 ||| 20 374827 +del ||| itself with scores of ||| 1 0.130625 2.6679e-06 1.79231e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| itself with this ||| 0.166667 0.0033154 2.6679e-06 9.96408e-09 2.718 ||| 0-2 ||| 6 374827 +del ||| job of persuading them of the ||| 1 0.10196 2.6679e-06 2.56705e-15 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| job of the ||| 0.0103093 0.10196 2.6679e-06 8.00159e-06 2.718 ||| 0-1 0-2 ||| 97 374827 +del ||| job of ||| 0.0028169 0.130625 2.6679e-06 2.30384e-05 2.718 ||| 0-1 ||| 355 374827 +del ||| joint text approved by ||| 0.0125 0.0461582 2.6679e-06 4.15638e-15 2.718 ||| 0-3 ||| 80 374827 +del ||| judged by ||| 0.0119048 0.0461582 2.6679e-06 1.74634e-07 2.718 ||| 0-1 ||| 84 374827 +del ||| judged without taking into account the ||| 1 0.0732944 2.6679e-06 1.03995e-19 2.718 ||| 0-5 ||| 1 374827 +del ||| judgement of the ||| 0.0416667 0.10196 2.6679e-06 1.58802e-06 2.718 ||| 0-1 0-2 ||| 24 374827 +del ||| jurisdiction of the ||| 0.00571429 0.10196 2.6679e-06 8.50361e-07 2.718 ||| 0-1 0-2 ||| 175 374827 +del ||| just a matter of ||| 0.0105263 0.130625 2.6679e-06 1.7116e-08 2.718 ||| 0-3 ||| 95 374827 +del ||| just a ||| 0.000454959 0.0056007 2.6679e-06 1.45566e-05 2.718 ||| 0-0 ||| 2198 374827 +del ||| just an ||| 0.003125 0.0056007 2.6679e-06 1.45964e-06 2.718 ||| 0-0 ||| 320 374827 +del ||| just as the ||| 0.00409836 0.0732944 2.6679e-06 4.47165e-06 2.718 ||| 0-2 ||| 244 374827 +del ||| just because ||| 0.00171233 0.0056007 2.6679e-06 1.07912e-07 2.718 ||| 0-0 ||| 584 374827 +del ||| just been part of the ||| 1 0.10196 2.6679e-06 5.14604e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| just given ||| 0.0357143 0.0056007 2.6679e-06 2.25381e-07 2.718 ||| 0-0 ||| 28 374827 +del ||| just holiday tourism ||| 1 0.0676417 2.6679e-06 1.34901e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| just hope that the Council will find ||| 0.5 0.0732944 2.6679e-06 1.2869e-18 2.718 ||| 0-3 ||| 2 374827 +del ||| just hope that the Council will ||| 0.5 0.0732944 2.6679e-06 3.86573e-15 2.718 ||| 0-3 ||| 2 374827 +del ||| just hope that the Council ||| 0.5 0.0732944 2.6679e-06 4.46843e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| just hope that the ||| 0.5 0.0732944 2.6679e-06 1.2922e-09 2.718 ||| 0-3 ||| 2 374827 +del ||| just how great ||| 0.25 0.0056007 2.6679e-06 4.62555e-11 2.718 ||| 0-0 ||| 4 374827 +del ||| just how ||| 0.00519481 0.0056007 5.33579e-06 1.17699e-07 2.718 ||| 0-0 ||| 385 374827 +del ||| just like the ||| 0.00598802 0.0732944 2.6679e-06 7.78214e-07 2.718 ||| 0-2 ||| 167 374827 +del ||| just like ||| 0.000881057 0.0056007 2.6679e-06 5.83206e-07 2.718 ||| 0-0 ||| 1135 374827 +del ||| just now , ||| 0.00561798 0.0056007 2.6679e-06 8.06724e-08 2.718 ||| 0-0 ||| 178 374827 +del ||| just now ||| 0.00113766 0.0056007 2.6679e-06 6.76471e-07 2.718 ||| 0-0 ||| 879 374827 +del ||| just of ||| 0.00724638 0.130625 2.6679e-06 0.000372183 2.718 ||| 0-1 ||| 138 374827 +del ||| just said ||| 0.00384615 0.0056007 2.6679e-06 1.35071e-07 2.718 ||| 0-0 ||| 260 374827 +del ||| just the ||| 0.00184502 0.0732944 5.33579e-06 0.000438208 2.718 ||| 0-1 ||| 1084 374827 +del ||| just ||| 0.000971682 0.0056007 7.47011e-05 0.0003284 2.718 ||| 0-0 ||| 28816 374827 +del ||| justified , in ||| 0.166667 0.0183279 2.6679e-06 6.14231e-08 2.718 ||| 0-2 ||| 6 374827 +del ||| justify withholding the ||| 0.166667 0.0732944 2.6679e-06 1.63169e-11 2.718 ||| 0-2 ||| 6 374827 +del ||| keep a ||| 0.00404858 0.0004699 2.6679e-06 1.09785e-09 2.718 ||| 0-0 0-1 ||| 247 374827 +del ||| keep the ||| 0.00304878 0.0732944 5.33579e-06 5.41118e-05 2.718 ||| 0-1 ||| 656 374827 +del ||| keeper ||| 0.166667 0.176471 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 6 374827 +del ||| keeping of animals ||| 0.333333 0.130625 2.6679e-06 7.04747e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| keeping of ||| 0.0454545 0.130625 2.6679e-06 1.73156e-05 2.718 ||| 0-1 ||| 22 374827 +del ||| keeping with the ||| 0.00304878 0.0389112 2.6679e-06 3.88014e-08 2.718 ||| 0-1 0-2 ||| 328 374827 +del ||| kept by us ||| 1 0.0461582 2.6679e-06 3.32291e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| kept by ||| 0.0322581 0.0461582 2.6679e-06 1.15291e-06 2.718 ||| 0-1 ||| 31 374827 +del ||| kept out of the ||| 0.1 0.10196 2.6679e-06 2.79807e-08 2.718 ||| 0-2 0-3 ||| 10 374827 +del ||| kept under ||| 0.0192308 0.014966 2.6679e-06 5.6655e-08 2.718 ||| 0-1 ||| 52 374827 +del ||| keys to a ||| 0.25 0.0479042 2.6679e-06 4.13565e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| keys to ||| 0.00862069 0.0479042 2.6679e-06 9.33011e-07 2.718 ||| 0-0 ||| 116 374827 +del ||| keys ||| 0.00666667 0.0479042 2.6679e-06 1.05e-05 2.718 ||| 0-0 ||| 150 374827 +del ||| kids , we have dot sex ||| 0.5 0.0635335 2.6679e-06 6.83211e-22 2.718 ||| 0-5 ||| 2 374827 +del ||| killing of ||| 0.00740741 0.130625 2.6679e-06 2.65487e-06 2.718 ||| 0-1 ||| 135 374827 +del ||| kind of compromise ||| 0.0909091 0.130625 2.6679e-06 6.52107e-09 2.718 ||| 0-1 ||| 11 374827 +del ||| kind of foreign body in ||| 1 0.0183279 2.6679e-06 1.67182e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| kind of the ||| 0.333333 0.10196 2.6679e-06 4.99971e-05 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| kind of ||| 0.00322451 0.130625 4.26864e-05 0.000143953 2.718 ||| 0-1 ||| 4962 374827 +del ||| kinds of ||| 0.00358423 0.130625 1.06716e-05 1.40118e-05 2.718 ||| 0-1 ||| 1116 374827 +del ||| king 's ||| 0.333333 0.169811 2.6679e-06 2.81266e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| knitted beacons ||| 0.166667 0.25 2.6679e-06 5.2e-13 2.718 ||| 0-0 ||| 6 374827 +del ||| knitted ||| 0.166667 0.25 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 6 374827 +del ||| know more by way of ||| 1 0.130625 2.6679e-06 1.96696e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| know of ||| 0.0102041 0.130625 2.6679e-06 7.61063e-05 2.718 ||| 0-1 ||| 98 374827 +del ||| know that from the ||| 0.333333 0.082213 2.6679e-06 3.26689e-08 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| know the ||| 0.00409836 0.0732944 5.33579e-06 8.96075e-05 2.718 ||| 0-1 ||| 488 374827 +del ||| knowledge of its ||| 0.0714286 0.130625 2.6679e-06 1.99626e-08 2.718 ||| 0-1 ||| 14 374827 +del ||| knowledge of ||| 0.00277008 0.130625 5.33579e-06 1.40118e-05 2.718 ||| 0-1 ||| 722 374827 +del ||| known as the ||| 0.00410678 0.0732944 5.33579e-06 3.90211e-07 2.718 ||| 0-2 ||| 487 374827 +del ||| labelling ||| 0.000515198 0.0220019 5.33579e-06 0.0001195 2.718 ||| 0-0 ||| 3882 374827 +del ||| labour market in the ||| 0.0322581 0.0445599 2.6679e-06 1.7397e-10 2.718 ||| 0-0 ||| 31 374827 +del ||| labour market in ||| 0.0114943 0.0445599 2.6679e-06 2.83376e-09 2.718 ||| 0-0 ||| 87 374827 +del ||| labour market policy ||| 0.00704225 0.0445599 2.6679e-06 5.21223e-11 2.718 ||| 0-0 ||| 142 374827 +del ||| labour market ||| 0.000459982 0.0445599 5.33579e-06 1.32391e-07 2.718 ||| 0-0 ||| 4348 374827 +del ||| labour party ) ||| 1 0.0445599 2.6679e-06 5.75908e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| labour party ||| 1 0.0445599 2.6679e-06 4.00687e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| labour ||| 0.000742184 0.0445599 2.13432e-05 0.0005858 2.718 ||| 0-0 ||| 10779 374827 +del ||| lack of a ||| 0.0025641 0.130625 2.6679e-06 1.58998e-06 2.718 ||| 0-1 ||| 390 374827 +del ||| lack of flexibility ||| 0.0188679 0.130625 2.6679e-06 5.16531e-10 2.718 ||| 0-1 ||| 53 374827 +del ||| lack of knowledge of ||| 0.0434783 0.130625 2.6679e-06 9.26274e-11 2.718 ||| 0-1 ||| 23 374827 +del ||| lack of knowledge ||| 0.0153846 0.130625 2.6679e-06 1.70384e-09 2.718 ||| 0-1 ||| 65 374827 +del ||| lack of vigour ||| 1 0.130625 2.6679e-06 1.6859e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| lack of ||| 0.000815566 0.130625 1.86753e-05 3.58702e-05 2.718 ||| 0-1 ||| 8583 374827 +del ||| laid down by the ||| 0.00621118 0.0597263 5.33579e-06 4.2734e-10 2.718 ||| 0-2 0-3 ||| 322 374827 +del ||| laid down by ||| 0.0040568 0.0461582 5.33579e-06 1.23041e-09 2.718 ||| 0-2 ||| 493 374827 +del ||| laid down in the ||| 0.0147727 0.0458111 3.46827e-05 7.12675e-10 2.718 ||| 0-2 0-3 ||| 880 374827 +del ||| laid down in ||| 0.00200401 0.0183279 8.00369e-06 2.05195e-09 2.718 ||| 0-2 ||| 1497 374827 +del ||| laid in the ||| 0.125 0.0458111 2.6679e-06 1.02088e-06 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| land of yodelling ||| 0.5 0.130625 2.6679e-06 4.54278e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| land of ||| 0.00909091 0.130625 2.6679e-06 1.13569e-05 2.718 ||| 0-1 ||| 110 374827 +del ||| land ||| 0.00119868 0.0305732 1.06716e-05 0.0001576 2.718 ||| 0-0 ||| 3337 374827 +del ||| landscape ||| 0.00238095 0.0380313 2.6679e-06 2.23e-05 2.718 ||| 0-0 ||| 420 374827 +del ||| language of the ||| 0.00877193 0.10196 2.6679e-06 4.79481e-06 2.718 ||| 0-1 0-2 ||| 114 374827 +del ||| language ||| 0.000191534 0.0010718 2.6679e-06 6.6e-06 2.718 ||| 0-0 ||| 5221 374827 +del ||| large amount of ||| 0.01 0.130625 2.6679e-06 1.1031e-08 2.718 ||| 0-2 ||| 100 374827 +del ||| large amounts of ||| 0.00746269 0.130625 2.6679e-06 2.74303e-09 2.718 ||| 0-2 ||| 134 374827 +del ||| large department stores such ||| 0.333333 0.0104439 2.6679e-06 1.85388e-18 2.718 ||| 0-1 ||| 3 374827 +del ||| large department stores ||| 0.333333 0.0104439 2.6679e-06 8.96071e-16 2.718 ||| 0-1 ||| 3 374827 +del ||| large department ||| 0.333333 0.0104439 2.6679e-06 8.1461e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| large number of ||| 0.000721501 0.130625 2.6679e-06 2.24339e-08 2.718 ||| 0-2 ||| 1386 374827 +del ||| last but ||| 0.00223214 0.0214237 2.6679e-06 6.73217e-07 2.718 ||| 0-0 ||| 448 374827 +del ||| last for ||| 0.0149254 0.0214237 2.6679e-06 7.57118e-06 2.718 ||| 0-0 ||| 67 374827 +del ||| last sentence of ||| 0.0416667 0.130625 2.6679e-06 9.72815e-10 2.718 ||| 0-2 ||| 24 374827 +del ||| last we shall be using a ||| 1 0.0008087 2.6679e-06 1.61159e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| last ||| 0.00197597 0.0214237 0.000130727 0.0009851 2.718 ||| 0-0 ||| 24798 374827 +del ||| latter ' s ||| 0.125 0.16804 2.6679e-06 3.45763e-09 2.718 ||| 0-2 ||| 8 374827 +del ||| launch of the ||| 0.00392157 0.10196 2.6679e-06 2.02857e-06 2.718 ||| 0-1 0-2 ||| 255 374827 +del ||| launch the ||| 0.00787402 0.0732944 2.6679e-06 6.87685e-06 2.718 ||| 0-1 ||| 127 374827 +del ||| launching of an ||| 0.25 0.130625 2.6679e-06 8.91563e-09 2.718 ||| 0-1 ||| 4 374827 +del ||| launching of ||| 0.0133333 0.130625 2.6679e-06 2.0059e-06 2.718 ||| 0-1 ||| 75 374827 +del ||| law and ||| 0.000385802 0.0013984 2.6679e-06 5.26088e-07 2.718 ||| 0-0 ||| 2592 374827 +del ||| law is ||| 0.00263158 0.0013984 2.6679e-06 1.31633e-06 2.718 ||| 0-0 ||| 380 374827 +del ||| law of the ||| 0.0134529 0.10196 8.00369e-06 1.80625e-05 2.718 ||| 0-1 0-2 ||| 223 374827 +del ||| law of ||| 0.00833333 0.130625 8.00369e-06 5.20059e-05 2.718 ||| 0-1 ||| 360 374827 +del ||| law ||| 0.00036707 0.0013984 2.93469e-05 4.2e-05 2.718 ||| 0-0 ||| 29967 374827 +del ||| lax about ||| 0.142857 0.0156863 2.6679e-06 7.49579e-09 2.718 ||| 0-0 ||| 7 374827 +del ||| lax ||| 0.00990099 0.0156863 5.33579e-06 5.3e-06 2.718 ||| 0-0 ||| 202 374827 +del ||| laying down in the ||| 0.5 0.0458111 2.6679e-06 1.36651e-10 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| lead set by the ||| 0.333333 0.0597263 2.6679e-06 6.31786e-10 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| lead to the ||| 0.00194175 0.0732944 2.6679e-06 5.94091e-06 2.718 ||| 0-2 ||| 515 374827 +del ||| leader of the ||| 0.00274725 0.10196 2.6679e-06 1.21919e-06 2.718 ||| 0-1 0-2 ||| 364 374827 +del ||| leader of ||| 0.00260417 0.130625 2.6679e-06 3.51033e-06 2.718 ||| 0-1 ||| 384 374827 +del ||| leaders of the ||| 0.0025641 0.130625 2.6679e-06 3.00621e-07 2.718 ||| 0-1 ||| 390 374827 +del ||| leaders of ||| 0.00167224 0.130625 2.6679e-06 4.89676e-06 2.718 ||| 0-1 ||| 598 374827 +del ||| leading role in ||| 0.00253165 0.0183279 2.6679e-06 5.21428e-10 2.718 ||| 0-2 ||| 395 374827 +del ||| leading the people of ||| 0.5 0.0732944 2.6679e-06 1.44756e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| leading the people ||| 0.5 0.0732944 2.6679e-06 2.66271e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| leading the ||| 0.00518135 0.0732944 2.6679e-06 3.02512e-05 2.718 ||| 0-1 ||| 193 374827 +del ||| leaf out of the ||| 0.166667 0.10196 2.6679e-06 1.2558e-09 2.718 ||| 0-2 0-3 ||| 6 374827 +del ||| learn about the ||| 0.047619 0.0732944 2.6679e-06 1.71432e-08 2.718 ||| 0-2 ||| 21 374827 +del ||| learn of the ||| 0.0454545 0.10196 2.6679e-06 3.57561e-06 2.718 ||| 0-1 0-2 ||| 22 374827 +del ||| learn the necessary ||| 0.5 0.0732944 2.6679e-06 3.11882e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| learn the ||| 0.00671141 0.0732944 2.6679e-06 1.21213e-05 2.718 ||| 0-1 ||| 149 374827 +del ||| learned from ||| 0.00438596 0.0911315 2.6679e-06 3.42437e-07 2.718 ||| 0-1 ||| 228 374827 +del ||| least , of the ||| 0.125 0.10196 2.6679e-06 2.9983e-06 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| least equally important ||| 0.142857 0.023448 2.6679e-06 1.29813e-11 2.718 ||| 0-1 ||| 7 374827 +del ||| least equally ||| 0.0769231 0.023448 2.6679e-06 3.38407e-08 2.718 ||| 0-1 ||| 13 374827 +del ||| least in the ||| 0.00303951 0.0458111 2.6679e-06 2.29838e-06 2.718 ||| 0-1 0-2 ||| 329 374827 +del ||| least the ||| 0.00393701 0.0732944 5.33579e-06 8.52313e-05 2.718 ||| 0-1 ||| 508 374827 +del ||| leave the ||| 0.0033389 0.0732944 5.33579e-06 3.2995e-05 2.718 ||| 0-1 ||| 599 374827 +del ||| leaving the ||| 0.00321543 0.0732944 2.6679e-06 8.26612e-06 2.718 ||| 0-1 ||| 311 374827 +del ||| led by the ||| 0.0181818 0.0597263 8.00369e-06 5.15551e-07 2.718 ||| 0-1 0-2 ||| 165 374827 +del ||| led by ||| 0.00692521 0.0461582 1.33395e-05 1.48439e-06 2.718 ||| 0-1 ||| 722 374827 +del ||| left feeling ||| 1 0.0005618 2.6679e-06 2.4557e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| left for the ||| 0.0434783 0.0435798 2.6679e-06 7.05837e-07 2.718 ||| 0-1 0-2 ||| 23 374827 +del ||| left of the ||| 0.0322581 0.10196 2.6679e-06 1.93534e-05 2.718 ||| 0-1 0-2 ||| 31 374827 +del ||| left of ||| 0.0140845 0.130625 2.6679e-06 5.57228e-05 2.718 ||| 0-1 ||| 71 374827 +del ||| left over of the ||| 0.5 0.10196 2.6679e-06 9.31866e-09 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| left the ||| 0.0034965 0.0732944 2.6679e-06 6.5608e-05 2.718 ||| 0-1 ||| 286 374827 +del ||| legal basis for a European expulsion law ||| 1 0.0138653 2.6679e-06 2.37984e-23 2.718 ||| 0-2 ||| 1 374827 +del ||| legal basis for a European expulsion ||| 1 0.0138653 2.6679e-06 1.34988e-19 2.718 ||| 0-2 ||| 1 374827 +del ||| legal basis for a European ||| 1 0.0138653 2.6679e-06 1.22716e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| legal basis for a ||| 0.0384615 0.0138653 2.6679e-06 3.66986e-11 2.718 ||| 0-2 ||| 26 374827 +del ||| legal basis for ||| 0.00160256 0.0138653 2.6679e-06 8.27929e-10 2.718 ||| 0-2 ||| 624 374827 +del ||| legislation in the ||| 0.00568182 0.0458111 2.6679e-06 7.52078e-07 2.718 ||| 0-1 0-2 ||| 176 374827 +del ||| legislation of the ||| 0.01 0.130625 2.6679e-06 1.45421e-06 2.718 ||| 0-1 ||| 100 374827 +del ||| legislation of ||| 0.0111111 0.130625 5.33579e-06 2.36873e-05 2.718 ||| 0-1 ||| 180 374827 +del ||| legitimacy of the ||| 0.00591716 0.10196 2.6679e-06 7.78644e-07 2.718 ||| 0-1 0-2 ||| 169 374827 +del ||| length of ||| 0.00331126 0.130625 2.6679e-06 1.13569e-05 2.718 ||| 0-1 ||| 302 374827 +del ||| less about the ||| 0.0588235 0.0732944 2.6679e-06 8.36037e-08 2.718 ||| 0-2 ||| 17 374827 +del ||| less in ||| 0.00869565 0.0183279 2.6679e-06 4.58968e-06 2.718 ||| 0-1 ||| 115 374827 +del ||| less return on the ||| 0.333333 0.0436809 2.6679e-06 3.86115e-11 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| less than ||| 0.000353107 0.0313352 2.6679e-06 3.98132e-07 2.718 ||| 0-1 ||| 2832 374827 +del ||| less willing to ||| 0.0666667 0.0006066 2.6679e-06 8.55985e-12 2.718 ||| 0-2 ||| 15 374827 +del ||| let its ||| 0.166667 0.0035806 2.6679e-06 1.99544e-07 2.718 ||| 0-1 ||| 6 374827 +del ||| letter of ||| 0.00290698 0.130625 2.6679e-06 7.64012e-06 2.718 ||| 0-1 ||| 344 374827 +del ||| level , of ||| 0.1 0.130625 2.6679e-06 3.00916e-05 2.718 ||| 0-2 ||| 10 374827 +del ||| level for ||| 0.0144928 0.0138653 2.6679e-06 9.20274e-06 2.718 ||| 0-1 ||| 69 374827 +del ||| level in the context of economic and ||| 1 0.0183279 2.6679e-06 1.56977e-17 2.718 ||| 0-1 ||| 1 374827 +del ||| level in the context of economic ||| 1 0.0183279 2.6679e-06 1.25322e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| level in the context of ||| 1 0.0183279 2.6679e-06 1.03316e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| level in the context ||| 0.5 0.0183279 2.6679e-06 1.90044e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| level in the ||| 0.0185185 0.0183279 2.6679e-06 1.41613e-06 2.718 ||| 0-1 ||| 54 374827 +del ||| level in this ||| 0.0909091 0.0108217 2.6679e-06 5.29597e-08 2.718 ||| 0-1 0-2 ||| 11 374827 +del ||| level in ||| 0.00534759 0.0183279 2.6679e-06 2.30671e-05 2.718 ||| 0-1 ||| 187 374827 +del ||| level of the ||| 0.0157303 0.10196 1.86753e-05 8.76384e-05 2.718 ||| 0-1 0-2 ||| 445 374827 +del ||| level of this ||| 0.142857 0.0669701 2.6679e-06 5.79326e-07 2.718 ||| 0-1 0-2 ||| 7 374827 +del ||| level of ||| 0.00393314 0.130625 6.40295e-05 0.000252331 2.718 ||| 0-1 ||| 6102 374827 +del ||| level within ||| 0.0555556 0.0072058 2.6679e-06 3.57301e-07 2.718 ||| 0-1 ||| 18 374827 +del ||| levels of ||| 0.00299103 0.130625 1.60074e-05 3.90561e-05 2.718 ||| 0-1 ||| 2006 374827 +del ||| levy of ||| 0.125 0.130625 2.6679e-06 1.79941e-06 2.718 ||| 0-1 ||| 8 374827 +del ||| liberal ||| 0.000739098 0.0039746 2.6679e-06 6.6e-06 2.718 ||| 0-0 ||| 1353 374827 +del ||| liberalisation of ||| 0.000884173 0.130625 2.6679e-06 1.79941e-06 2.718 ||| 0-1 ||| 1131 374827 +del ||| libraries ||| 0.00333333 0.0042553 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 300 374827 +del ||| lie to the ||| 0.0769231 0.0732944 2.6679e-06 1.16658e-06 2.718 ||| 0-2 ||| 13 374827 +del ||| lies behind the ||| 0.03125 0.0732944 2.6679e-06 1.91385e-09 2.718 ||| 0-2 ||| 32 374827 +del ||| lies in ||| 0.00118203 0.0183279 2.6679e-06 1.65843e-06 2.718 ||| 0-1 ||| 846 374827 +del ||| life 's ||| 0.037037 0.169811 2.6679e-06 6.08741e-06 2.718 ||| 0-1 ||| 27 374827 +del ||| life of their own ||| 0.25 0.130625 2.6679e-06 8.78174e-11 2.718 ||| 0-1 ||| 4 374827 +del ||| life of their ||| 0.0714286 0.130625 2.6679e-06 5.18005e-08 2.718 ||| 0-1 ||| 14 374827 +del ||| life of ||| 0.00289436 0.130625 5.33579e-06 4.46903e-05 2.718 ||| 0-1 ||| 691 374827 +del ||| lift restrictions on ||| 0.2 0.0140673 2.6679e-06 1.42366e-12 2.718 ||| 0-2 ||| 5 374827 +del ||| lifted for ||| 1 0.0138653 2.6679e-06 1.43087e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| lifted the ||| 0.0625 0.0732944 2.6679e-06 4.6193e-06 2.718 ||| 0-1 ||| 16 374827 +del ||| lifted ||| 0.00223714 0.0072727 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 447 374827 +del ||| light by the ||| 0.05 0.0597263 2.6679e-06 9.76065e-07 2.718 ||| 0-1 0-2 ||| 20 374827 +del ||| light from the ||| 0.25 0.082213 2.6679e-06 1.30827e-06 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| light of the ||| 0.00169875 0.10196 8.00369e-06 1.78064e-05 2.718 ||| 0-1 0-2 ||| 1766 374827 +del ||| light of ||| 0.000314961 0.130625 2.6679e-06 5.12685e-05 2.718 ||| 0-1 ||| 3175 374827 +del ||| light on the ||| 0.00724638 0.0436809 2.6679e-06 5.92015e-07 2.718 ||| 0-1 0-2 ||| 138 374827 +del ||| like in the ||| 0.0238095 0.0458111 2.6679e-06 1.66328e-05 2.718 ||| 0-1 0-2 ||| 42 374827 +del ||| like in ||| 0.0070922 0.0183279 2.6679e-06 4.78896e-05 2.718 ||| 0-1 ||| 141 374827 +del ||| like that of the rapporteur , ||| 1 0.10196 2.6679e-06 2.63891e-11 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| like that of the rapporteur ||| 0.5 0.10196 2.6679e-06 2.21284e-10 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| like that of the ||| 0.027027 0.10196 2.6679e-06 3.06063e-06 2.718 ||| 0-2 0-3 ||| 37 374827 +del ||| like the ||| 0.00283822 0.0732944 2.40111e-05 0.000616798 2.718 ||| 0-1 ||| 3171 374827 +del ||| like this of ||| 1 0.130625 2.6679e-06 3.3849e-06 2.718 ||| 0-2 ||| 1 374827 +del ||| like to highlight . the ||| 1 0.0732944 2.6679e-06 3.10443e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| like to mention the ||| 0.0294118 0.0732944 2.6679e-06 5.3273e-09 2.718 ||| 0-3 ||| 34 374827 +del ||| likely impact of ||| 0.2 0.130625 2.6679e-06 2.06365e-09 2.718 ||| 0-2 ||| 5 374827 +del ||| likewise , the ||| 0.016129 0.0732944 2.6679e-06 5.79867e-07 2.718 ||| 0-2 ||| 62 374827 +del ||| likewise ||| 0.0030303 0.0712531 8.00369e-06 0.0001524 2.718 ||| 0-0 ||| 990 374827 +del ||| limit of the ||| 0.0833333 0.10196 2.6679e-06 4.97922e-06 2.718 ||| 0-1 0-2 ||| 12 374827 +del ||| limit of ||| 0.00571429 0.130625 2.6679e-06 1.43363e-05 2.718 ||| 0-1 ||| 175 374827 +del ||| limit on the number ||| 0.111111 0.0140673 2.6679e-06 1.44789e-11 2.718 ||| 0-1 ||| 9 374827 +del ||| limit on the ||| 0.0344828 0.0140673 2.6679e-06 2.92621e-08 2.718 ||| 0-1 ||| 29 374827 +del ||| limit on ||| 0.0114943 0.0140673 2.6679e-06 4.76645e-07 2.718 ||| 0-1 ||| 87 374827 +del ||| limited in scope in ||| 0.25 0.0183279 2.6679e-06 2.23858e-12 2.718 ||| 0-3 ||| 4 374827 +del ||| limits of the ||| 0.0103093 0.10196 2.6679e-06 2.76623e-06 2.718 ||| 0-1 0-2 ||| 97 374827 +del ||| limits of their ||| 0.1 0.0659211 2.6679e-06 1.26558e-09 2.718 ||| 0-1 0-2 ||| 10 374827 +del ||| line of the ||| 0.0416667 0.130625 2.6679e-06 5.33149e-06 2.718 ||| 0-1 ||| 24 374827 +del ||| line of ||| 0.00498753 0.130625 5.33579e-06 8.68437e-05 2.718 ||| 0-1 ||| 401 374827 +del ||| line with that of the ||| 0.0769231 0.130625 2.6679e-06 5.73486e-10 2.718 ||| 0-3 ||| 13 374827 +del ||| line with that of ||| 0.0833333 0.130625 2.6679e-06 9.34141e-09 2.718 ||| 0-3 ||| 12 374827 +del ||| line with ||| 0.00091631 0.0045281 8.00369e-06 5.60302e-07 2.718 ||| 0-1 ||| 3274 374827 +del ||| liner ||| 0.0232558 0.0967742 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 43 374827 +del ||| lines by the ||| 1 0.0597263 2.6679e-06 5.11058e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| lines of the ||| 0.0103093 0.10196 2.6679e-06 9.32323e-06 2.718 ||| 0-1 0-2 ||| 97 374827 +del ||| lines of those ||| 0.0666667 0.130625 2.6679e-06 1.94375e-08 2.718 ||| 0-1 ||| 15 374827 +del ||| lines of ||| 0.00628931 0.130625 8.00369e-06 2.68437e-05 2.718 ||| 0-1 ||| 477 374827 +del ||| lines proposed by ||| 0.111111 0.0461582 2.6679e-06 1.64214e-10 2.718 ||| 0-2 ||| 9 374827 +del ||| linked to changing over to ||| 0.5 0.006517 2.6679e-06 1.43984e-15 2.718 ||| 0-3 ||| 2 374827 +del ||| linked to changing over ||| 0.5 0.006517 2.6679e-06 1.62038e-14 2.718 ||| 0-3 ||| 2 374827 +del ||| linked to the ||| 0.00308325 0.0732944 8.00369e-06 1.28694e-06 2.718 ||| 0-2 ||| 973 374827 +del ||| linked with the ||| 0.0136986 0.0732944 2.6679e-06 9.2612e-08 2.718 ||| 0-2 ||| 73 374827 +del ||| list of the ||| 0.00763359 0.130625 2.6679e-06 1.32382e-06 2.718 ||| 0-1 ||| 131 374827 +del ||| list of ||| 0.00156986 0.130625 1.06716e-05 2.15634e-05 2.718 ||| 0-1 ||| 2548 374827 +del ||| listened to the many contributions ||| 0.5 0.0732944 2.6679e-06 1.63542e-15 2.718 ||| 0-2 ||| 2 374827 +del ||| listened to the many ||| 0.166667 0.0732944 2.6679e-06 7.20452e-11 2.718 ||| 0-2 ||| 6 374827 +del ||| listened to the ||| 0.00606061 0.0732944 2.6679e-06 2.09861e-07 2.718 ||| 0-2 ||| 165 374827 +del ||| little heed of ||| 1 0.130625 2.6679e-06 2.0536e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| little heed to the ||| 1 0.0732944 2.6679e-06 2.14851e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| live in the ||| 0.0134529 0.0458111 8.00369e-06 9.44078e-07 2.718 ||| 0-1 0-2 ||| 223 374827 +del ||| lives of the ||| 0.00769231 0.10196 2.6679e-06 5.27634e-06 2.718 ||| 0-1 0-2 ||| 130 374827 +del ||| lives of ||| 0.00115473 0.130625 2.6679e-06 1.51918e-05 2.718 ||| 0-1 ||| 866 374827 +del ||| living close to the ||| 0.2 0.0732944 2.6679e-06 3.83537e-10 2.718 ||| 0-3 ||| 5 374827 +del ||| living from the ||| 0.166667 0.082213 5.33579e-06 6.308e-07 2.718 ||| 0-1 0-2 ||| 12 374827 +del ||| living in the ||| 0.00194175 0.0458111 2.6679e-06 7.84859e-07 2.718 ||| 0-1 0-2 ||| 515 374827 +del ||| lobby your ||| 1 0.0041958 2.6679e-06 9.9801e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| lobby ||| 0.00116959 0.0041958 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 855 374827 +del ||| logic of this would ||| 1 0.130625 2.6679e-06 8.05382e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| logic of this ||| 0.0625 0.130625 2.6679e-06 1.37233e-08 2.718 ||| 0-1 ||| 16 374827 +del ||| logic of ||| 0.00374532 0.130625 2.6679e-06 2.1239e-06 2.718 ||| 0-1 ||| 267 374827 +del ||| long as the ||| 0.015873 0.0732944 5.33579e-06 1.19899e-06 2.718 ||| 0-2 ||| 126 374827 +del ||| long as we copy the ||| 0.5 0.0732944 2.6679e-06 1.32029e-13 2.718 ||| 0-4 ||| 2 374827 +del ||| look at the European ||| 0.5 0.0400553 2.6679e-06 1.30184e-09 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| look at the ||| 0.00121951 0.0732944 5.33579e-06 4.23943e-07 2.718 ||| 0-2 ||| 1640 374827 +del ||| look beyond the ||| 0.0294118 0.0732944 2.6679e-06 7.58307e-09 2.718 ||| 0-2 ||| 34 374827 +del ||| look forward to continued close dialogue with ||| 1 0.0198851 2.6679e-06 1.93367e-22 2.718 ||| 0-5 ||| 1 374827 +del ||| look forward to continued close dialogue ||| 1 0.0198851 2.6679e-06 3.02396e-20 2.718 ||| 0-5 ||| 1 374827 +del ||| look of shock ||| 0.5 0.130625 2.6679e-06 7.73894e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| look of ||| 0.25 0.130625 2.6679e-06 8.59883e-05 2.718 ||| 0-1 ||| 4 374827 +del ||| look to the ||| 0.00377358 0.0732944 2.6679e-06 8.99623e-06 2.718 ||| 0-2 ||| 265 374827 +del ||| look upon ||| 0.0285714 0.0034407 2.6679e-06 1.49248e-08 2.718 ||| 0-1 ||| 35 374827 +del ||| looked on ||| 0.0285714 0.0140673 2.6679e-06 4.55068e-07 2.718 ||| 0-1 ||| 35 374827 +del ||| looking into the possibility of ||| 0.0714286 0.130625 2.6679e-06 1.68389e-13 2.718 ||| 0-4 ||| 14 374827 +del ||| loose on them ||| 0.333333 0.0140673 2.6679e-06 1.52584e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| loose on ||| 0.2 0.0140673 2.6679e-06 5.68835e-08 2.718 ||| 0-1 ||| 5 374827 +del ||| lord of the ||| 1 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| los ||| 1 0.5 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| loss in the ||| 0.25 0.0458111 2.6679e-06 3.94303e-07 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| loss of the ||| 0.0273973 0.10196 5.33579e-06 4.31328e-06 2.718 ||| 0-1 0-2 ||| 73 374827 +del ||| loss of ||| 0.0010582 0.130625 5.33579e-06 1.24189e-05 2.718 ||| 0-1 ||| 1890 374827 +del ||| lost count of abortive European ||| 0.333333 0.130625 2.6679e-06 6.12899e-19 2.718 ||| 0-2 ||| 3 374827 +del ||| lost count of abortive ||| 0.333333 0.130625 2.6679e-06 1.83289e-16 2.718 ||| 0-2 ||| 3 374827 +del ||| lost count of ||| 0.166667 0.130625 2.6679e-06 4.58222e-10 2.718 ||| 0-2 ||| 6 374827 +del ||| lost members of ||| 0.25 0.130625 2.6679e-06 2.47574e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| lot of fun ||| 1 0.130625 2.6679e-06 1.52449e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| lot of people ||| 0.00961538 0.130625 2.6679e-06 3.35463e-08 2.718 ||| 0-1 ||| 104 374827 +del ||| lot of ||| 0.0032591 0.130625 1.60074e-05 3.81121e-05 2.718 ||| 0-1 ||| 1841 374827 +del ||| m-commerce - ||| 1 0.333333 2.6679e-06 4.90373e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| m-commerce ||| 0.5 0.333333 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| made a point of ||| 0.047619 0.130625 2.6679e-06 2.39612e-08 2.718 ||| 0-3 ||| 21 374827 +del ||| made about the ||| 0.0222222 0.041743 2.6679e-06 1.02156e-06 2.718 ||| 0-1 0-2 ||| 45 374827 +del ||| made between forms of ||| 1 0.130625 2.6679e-06 1.45406e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| made by a ||| 0.0136986 0.0461582 2.6679e-06 1.50143e-06 2.718 ||| 0-1 ||| 73 374827 +del ||| made by my fellow ||| 0.0714286 0.0461582 2.6679e-06 1.43553e-12 2.718 ||| 0-1 ||| 14 374827 +del ||| made by my ||| 0.0117647 0.0461582 2.6679e-06 2.17834e-08 2.718 ||| 0-1 ||| 85 374827 +del ||| made by the Dutch ||| 0.5 0.0597263 2.6679e-06 1.9529e-10 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| made by the European ||| 0.2 0.0597263 2.6679e-06 3.93392e-08 2.718 ||| 0-1 0-2 ||| 5 374827 +del ||| made by the ||| 0.0486034 0.0597263 0.000232107 1.17645e-05 2.718 ||| 0-1 0-2 ||| 1790 374827 +del ||| made by ||| 0.0208963 0.0461582 0.000221435 3.38725e-05 2.718 ||| 0-1 ||| 3972 374827 +del ||| made compulsory ||| 0.0232558 0.0008807 2.6679e-06 5.44648e-09 2.718 ||| 0-1 ||| 43 374827 +del ||| made during the ||| 0.0120482 0.0732944 2.6679e-06 7.33378e-08 2.718 ||| 0-2 ||| 83 374827 +del ||| made for the ||| 0.0298507 0.0435798 5.33579e-06 7.82735e-06 2.718 ||| 0-1 0-2 ||| 67 374827 +del ||| made for ||| 0.00275482 0.0138653 2.6679e-06 2.25367e-05 2.718 ||| 0-1 ||| 363 374827 +del ||| made from ||| 0.00947867 0.0911315 5.33579e-06 4.5401e-05 2.718 ||| 0-1 ||| 211 374827 +del ||| made in the ||| 0.0223048 0.0458111 4.80222e-05 1.96196e-05 2.718 ||| 0-1 0-2 ||| 807 374827 +del ||| made in this ||| 0.00371747 0.0108217 2.6679e-06 1.29694e-07 2.718 ||| 0-1 0-2 ||| 269 374827 +del ||| made in ||| 0.00229621 0.0183279 1.60074e-05 5.64892e-05 2.718 ||| 0-1 ||| 2613 374827 +del ||| made of its ||| 0.5 0.0671027 2.6679e-06 3.01923e-07 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| made of the ||| 0.04375 0.10196 1.86753e-05 0.000214619 2.718 ||| 0-1 0-2 ||| 160 374827 +del ||| made of them sometimes ||| 0.25 0.130625 2.6679e-06 9.36516e-11 2.718 ||| 0-1 ||| 4 374827 +del ||| made of them ||| 0.0357143 0.130625 2.6679e-06 1.65755e-06 2.718 ||| 0-1 ||| 28 374827 +del ||| made of ||| 0.023913 0.130625 2.93469e-05 0.000617936 2.718 ||| 0-1 ||| 460 374827 +del ||| made on the ||| 0.0153846 0.0436809 8.00369e-06 7.13552e-06 2.718 ||| 0-1 0-2 ||| 195 374827 +del ||| made on this ||| 0.02 0.00869135 2.6679e-06 4.71687e-08 2.718 ||| 0-1 0-2 ||| 50 374827 +del ||| made on ||| 0.00616333 0.0140673 1.06716e-05 2.05448e-05 2.718 ||| 0-1 ||| 649 374827 +del ||| made over the ||| 0.0285714 0.0399057 2.6679e-06 2.32236e-07 2.718 ||| 0-1 0-2 ||| 35 374827 +del ||| made the point ||| 0.0123457 0.0732944 2.6679e-06 6.36467e-07 2.718 ||| 0-1 ||| 81 374827 +del ||| made the ||| 0.00418994 0.0732944 8.00369e-06 0.000727557 2.718 ||| 0-1 ||| 716 374827 +del ||| made to parameters for ||| 1 0.0138653 2.6679e-06 1.30167e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| made to the ||| 0.0172043 0.0732944 2.13432e-05 6.46494e-05 2.718 ||| 0-2 ||| 465 374827 +del ||| made to ||| 0.000614251 0.0006066 2.6679e-06 2.78713e-06 2.718 ||| 0-1 ||| 1628 374827 +del ||| made today by the ||| 0.0714286 0.0597263 2.6679e-06 5.3093e-09 2.718 ||| 0-2 0-3 ||| 14 374827 +del ||| made very clear in the ||| 0.25 0.0458111 2.6679e-06 2.27259e-11 2.718 ||| 0-3 0-4 ||| 4 374827 +del ||| made within the ||| 0.0217391 0.0402501 2.6679e-06 3.03901e-07 2.718 ||| 0-1 0-2 ||| 46 374827 +del ||| madness of the ||| 0.2 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-1 0-2 ||| 5 374827 +del ||| main themes of the ||| 0.1 0.10196 2.6679e-06 3.67725e-11 2.718 ||| 0-2 0-3 ||| 10 374827 +del ||| main thrust of ||| 0.0123457 0.130625 2.6679e-06 3.82331e-10 2.718 ||| 0-2 ||| 81 374827 +del ||| mainly of ||| 0.0120482 0.130625 2.6679e-06 1.38053e-05 2.718 ||| 0-1 ||| 83 374827 +del ||| mainly to the ||| 0.0121951 0.0732944 2.6679e-06 1.44433e-06 2.718 ||| 0-2 ||| 82 374827 +del ||| maintain the limited progress made ||| 1 0.0732944 2.6679e-06 1.70341e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| maintain the limited progress ||| 1 0.0732944 2.6679e-06 8.1316e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| maintain the limited ||| 1 0.0732944 2.6679e-06 6.17434e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| maintain the ||| 0.00194553 0.0732944 5.33579e-06 1.58723e-05 2.718 ||| 0-1 ||| 1028 374827 +del ||| maintained by the ||| 0.0625 0.0597263 2.6679e-06 1.98246e-07 2.718 ||| 0-1 0-2 ||| 16 374827 +del ||| maintaining the ||| 0.0015748 0.0368286 2.6679e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 635 374827 +del ||| maintenance for ||| 0.333333 0.0138653 2.6679e-06 8.49914e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| major accidents in the ||| 0.5 0.0458111 2.6679e-06 9.15681e-12 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| major change that will see the ||| 1 0.0732944 2.6679e-06 4.20577e-16 2.718 ||| 0-5 ||| 1 374827 +del ||| majority of my group ||| 0.0108696 0.130625 2.6679e-06 9.84691e-13 2.718 ||| 0-1 ||| 92 374827 +del ||| majority of my ||| 0.00704225 0.130625 2.6679e-06 7.64512e-09 2.718 ||| 0-1 ||| 142 374827 +del ||| majority of ||| 0.000421674 0.130625 5.33579e-06 1.18879e-05 2.718 ||| 0-1 ||| 4743 374827 +del ||| make a ||| 0.000251699 0.0008087 2.6679e-06 1.46757e-06 2.718 ||| 0-1 ||| 3973 374827 +del ||| make from ||| 0.25 0.0911315 2.6679e-06 3.76637e-05 2.718 ||| 0-1 ||| 4 374827 +del ||| make good the harm it has done ||| 1 0.0732944 2.6679e-06 1.41108e-19 2.718 ||| 0-2 ||| 1 374827 +del ||| make good the harm it has ||| 1 0.0732944 2.6679e-06 3.09447e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| make good the harm it ||| 1 0.0732944 2.6679e-06 6.01161e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| make good the harm ||| 1 0.0732944 2.6679e-06 3.3805e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| make good the ||| 0.0333333 0.0732944 2.6679e-06 3.13009e-07 2.718 ||| 0-2 ||| 30 374827 +del ||| make me the target of ||| 0.25 0.130625 2.6679e-06 7.16261e-13 2.718 ||| 0-4 ||| 4 374827 +del ||| make the Growth and ||| 0.5 0.0732944 2.6679e-06 6.27497e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| make the Growth ||| 0.5 0.0732944 2.6679e-06 5.00959e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| make the agreement ||| 0.2 0.0732944 2.6679e-06 1.11237e-07 2.718 ||| 0-1 ||| 5 374827 +del ||| make the organization ||| 1 0.0732944 2.6679e-06 7.60492e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| make the ||| 0.0039801 0.0732944 3.20148e-05 0.000603565 2.718 ||| 0-1 ||| 3015 374827 +del ||| make them by putting ||| 1 0.0461582 2.6679e-06 8.43448e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| make them by ||| 1 0.0461582 2.6679e-06 7.53751e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| make up the ||| 0.0197044 0.0732944 1.06716e-05 2.05846e-06 2.718 ||| 0-2 ||| 203 374827 +del ||| make use of ||| 0.00140252 0.130625 2.6679e-06 2.49239e-07 2.718 ||| 0-2 ||| 713 374827 +del ||| makes of the ||| 0.5 0.10196 2.6679e-06 1.74068e-05 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| making concerning ||| 1 0.0042392 2.6679e-06 4.29325e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| making for many years , by ||| 1 0.0461582 2.6679e-06 3.33134e-16 2.718 ||| 0-5 ||| 1 374827 +del ||| making it easier for the ||| 0.166667 0.0435798 2.6679e-06 1.78427e-12 2.718 ||| 0-3 0-4 ||| 6 374827 +del ||| making of ||| 0.03125 0.130625 5.33579e-06 0.000113481 2.718 ||| 0-1 ||| 64 374827 +del ||| making the ||| 0.00173762 0.0732944 5.33579e-06 0.000133612 2.718 ||| 0-1 ||| 1151 374827 +del ||| making up a ||| 0.2 0.0008087 2.6679e-06 1.108e-09 2.718 ||| 0-2 ||| 5 374827 +del ||| making up that ||| 0.2 0.0020886 2.6679e-06 1.22372e-09 2.718 ||| 0-1 ||| 5 374827 +del ||| making up the ||| 0.0277778 0.0732944 2.6679e-06 4.55685e-07 2.718 ||| 0-2 ||| 36 374827 +del ||| making up ||| 0.01 0.0020886 2.6679e-06 7.27468e-08 2.718 ||| 0-1 ||| 100 374827 +del ||| making use of the ||| 0.0147059 0.10196 2.6679e-06 1.91629e-08 2.718 ||| 0-2 0-3 ||| 68 374827 +del ||| man - the ||| 0.125 0.0732944 2.6679e-06 8.3454e-08 2.718 ||| 0-2 ||| 8 374827 +del ||| man of the ||| 0.0625 0.10196 2.6679e-06 6.52626e-06 2.718 ||| 0-1 0-2 ||| 16 374827 +del ||| manage the ||| 0.00649351 0.0732944 5.33579e-06 1.54903e-05 2.718 ||| 0-1 ||| 308 374827 +del ||| management of the ||| 0.00160772 0.10196 2.6679e-06 4.49769e-06 2.718 ||| 0-1 0-2 ||| 622 374827 +del ||| management of ||| 0.000917011 0.130625 5.33579e-06 1.29499e-05 2.718 ||| 0-1 ||| 2181 374827 +del ||| management ||| 5.4057e-05 0.0004792 2.6679e-06 6.6e-06 2.718 ||| 0-0 ||| 18499 374827 +del ||| managing the ||| 0.00332226 0.0732944 2.6679e-06 3.26477e-06 2.718 ||| 0-1 ||| 301 374827 +del ||| mandate from ||| 0.0125 0.0911315 2.6679e-06 4.83312e-07 2.718 ||| 0-1 ||| 80 374827 +del ||| manipulate the ||| 0.030303 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-1 ||| 33 374827 +del ||| manner in which ||| 0.00873362 0.00927215 5.33579e-06 2.97789e-10 2.718 ||| 0-0 0-1 ||| 229 374827 +del ||| manner in ||| 0.00746269 0.00927215 5.33579e-06 3.50563e-08 2.718 ||| 0-0 0-1 ||| 268 374827 +del ||| manner of ||| 0.00884956 0.130625 5.33579e-06 5.75222e-05 2.718 ||| 0-1 ||| 226 374827 +del ||| manning the ||| 0.111111 0.0732944 2.6679e-06 3.82047e-07 2.718 ||| 0-1 ||| 9 374827 +del ||| mantle of ||| 0.0555556 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-1 ||| 18 374827 +del ||| many different types of ||| 0.0714286 0.130625 2.6679e-06 1.028e-12 2.718 ||| 0-3 ||| 14 374827 +del ||| many of the ||| 0.000419639 0.10196 2.6679e-06 3.51722e-05 2.718 ||| 0-1 0-2 ||| 2383 374827 +del ||| many speeches on ||| 0.5 0.0140673 2.6679e-06 3.03022e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| many years , by ||| 1 0.0461582 2.6679e-06 1.12671e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| maps in the ||| 1 0.0458111 2.6679e-06 2.06049e-08 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| marine ||| 0.00221239 0.0198903 8.00369e-06 3.81e-05 2.718 ||| 0-0 ||| 1356 374827 +del ||| maritime transport ||| 0.0013624 0.0249706 2.6679e-06 1.14836e-08 2.718 ||| 0-0 ||| 734 374827 +del ||| maritime ||| 0.000796495 0.0249706 5.33579e-06 0.0001116 2.718 ||| 0-0 ||| 2511 374827 +del ||| mark the end of ||| 0.0526316 0.130625 2.6679e-06 4.27858e-10 2.718 ||| 0-3 ||| 19 374827 +del ||| mark the ||| 0.00662252 0.0732944 2.6679e-06 1.88592e-05 2.718 ||| 0-1 ||| 151 374827 +del ||| market , and it is precisely the ||| 1 0.0732944 2.6679e-06 6.44345e-15 2.718 ||| 0-6 ||| 1 374827 +del ||| market , ||| 0.00106213 0.0273989 5.33579e-06 0.000177463 2.718 ||| 0-0 ||| 1883 374827 +del ||| market . ||| 0.000633312 0.0273989 2.6679e-06 4.50745e-06 2.718 ||| 0-0 ||| 1579 374827 +del ||| market in the ||| 0.00934579 0.0458111 2.6679e-06 2.11668e-06 2.718 ||| 0-1 0-2 ||| 107 374827 +del ||| market in ||| 0.00123457 0.0183279 2.6679e-06 6.09441e-06 2.718 ||| 0-1 ||| 810 374827 +del ||| market is causing ||| 0.5 0.0273989 2.6679e-06 1.37584e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| market is ||| 0.00271739 0.0273989 2.6679e-06 4.66387e-05 2.718 ||| 0-0 ||| 368 374827 +del ||| market of ||| 0.00613497 0.130625 2.6679e-06 6.66667e-05 2.718 ||| 0-1 ||| 163 374827 +del ||| market ||| 0.000537013 0.0273989 6.93653e-05 0.0014881 2.718 ||| 0-0 ||| 48416 374827 +del ||| market-based ||| 0.00689655 0.0084034 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 145 374827 +del ||| markets will be lifted for ||| 1 0.0138653 2.6679e-06 6.30391e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| marriage between ||| 0.04 0.063745 2.6679e-06 1.10796e-08 2.718 ||| 0-0 ||| 25 374827 +del ||| marriage ||| 0.00268097 0.063745 2.6679e-06 4.2e-05 2.718 ||| 0-0 ||| 373 374827 +del ||| marriages ||| 0.005 0.0055249 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 200 374827 +del ||| master ' s degree ||| 1 0.16804 2.6679e-06 1.99327e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| master ' s ||| 0.111111 0.16804 2.6679e-06 1.43918e-10 2.718 ||| 0-2 ||| 9 374827 +del ||| materials from which ||| 0.333333 0.0911315 2.6679e-06 2.57747e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| materials from ||| 0.0714286 0.0911315 2.6679e-06 3.03425e-07 2.718 ||| 0-1 ||| 14 374827 +del ||| matter for the authorities ||| 0.166667 0.0435798 2.6679e-06 2.58187e-10 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| matter for the ||| 0.00845666 0.0435798 1.06716e-05 3.87668e-06 2.718 ||| 0-1 0-2 ||| 473 374827 +del ||| matter for ||| 0.00103306 0.0138653 2.6679e-06 1.11618e-05 2.718 ||| 0-1 ||| 968 374827 +del ||| matter from ||| 0.037037 0.0911315 2.6679e-06 2.24859e-05 2.718 ||| 0-1 ||| 27 374827 +del ||| matter of course , ||| 0.0416667 0.130625 2.6679e-06 4.6049e-08 2.718 ||| 0-1 ||| 24 374827 +del ||| matter of course ||| 0.011236 0.130625 2.6679e-06 3.8614e-07 2.718 ||| 0-1 ||| 89 374827 +del ||| matter of sweetening ||| 1 0.130625 5.33579e-06 2.14233e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| matter of the ||| 0.00777202 0.10196 8.00369e-06 0.000106295 2.718 ||| 0-1 0-2 ||| 386 374827 +del ||| matter of urgency , ||| 0.00746269 0.130625 2.6679e-06 9.45288e-10 2.718 ||| 0-1 ||| 134 374827 +del ||| matter of urgency ||| 0.00424628 0.130625 5.33579e-06 7.92663e-09 2.718 ||| 0-1 ||| 471 374827 +del ||| matter of ||| 0.00733496 0.130625 8.00369e-05 0.000306047 2.718 ||| 0-1 ||| 4090 374827 +del ||| matter on ||| 0.00775194 0.0140673 2.6679e-06 1.01753e-05 2.718 ||| 0-1 ||| 129 374827 +del ||| matter out of the ||| 1 0.10196 2.6679e-06 4.07153e-07 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| matter what the ||| 0.142857 0.0732944 2.6679e-06 5.05593e-07 2.718 ||| 0-2 ||| 7 374827 +del ||| matters of ||| 0.000985222 0.130625 2.6679e-06 5.45723e-05 2.718 ||| 0-1 ||| 1015 374827 +del ||| maximum premium per hectare , for the ||| 1 0.0435798 2.6679e-06 2.54056e-24 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| may be the ||| 0.00584795 0.0732944 2.6679e-06 4.71574e-06 2.718 ||| 0-2 ||| 171 374827 +del ||| may possibly result from the ||| 0.5 0.082213 2.6679e-06 1.33615e-13 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| may well be a failure of the ||| 1 0.10196 2.6679e-06 4.57559e-15 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| may well be that ten years from ||| 1 0.0911315 2.6679e-06 1.49619e-20 2.718 ||| 0-6 ||| 1 374827 +del ||| me of the ||| 0.0909091 0.10196 2.6679e-06 6.1687e-05 2.718 ||| 0-1 0-2 ||| 11 374827 +del ||| me of ||| 0.015625 0.130625 2.6679e-06 0.000177611 2.718 ||| 0-1 ||| 64 374827 +del ||| me the target of ||| 0.25 0.130625 2.6679e-06 4.12165e-10 2.718 ||| 0-3 ||| 4 374827 +del ||| meaning of ||| 0.00606061 0.130625 5.33579e-06 9.02656e-06 2.718 ||| 0-1 ||| 330 374827 +del ||| means of a ||| 0.00488998 0.130625 5.33579e-06 8.28592e-06 2.718 ||| 0-1 ||| 409 374827 +del ||| means of livelihood ||| 0.0769231 0.130625 2.6679e-06 9.34662e-10 2.718 ||| 0-1 ||| 13 374827 +del ||| means of repression - ||| 0.5 0.130625 2.6679e-06 2.82051e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| means of repression ||| 0.333333 0.130625 2.6679e-06 7.47729e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| means of the ||| 0.0078534 0.10196 8.00369e-06 6.49245e-05 2.718 ||| 0-1 0-2 ||| 382 374827 +del ||| means of ||| 0.00325468 0.130625 4.26864e-05 0.000186932 2.718 ||| 0-1 ||| 4916 374827 +del ||| means that the ||| 0.000915751 0.0732944 2.6679e-06 3.70233e-06 2.718 ||| 0-2 ||| 1092 374827 +del ||| means to demand more ||| 1 0.0006066 2.6679e-06 1.03205e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| means to demand ||| 1 0.0006066 2.6679e-06 4.51922e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| means to ||| 0.000967118 0.0006066 2.6679e-06 8.43138e-07 2.718 ||| 0-1 ||| 1034 374827 +del ||| measure of the ||| 0.0196078 0.0732944 2.6679e-06 1.41422e-06 2.718 ||| 0-2 ||| 51 374827 +del ||| measure on ||| 0.0185185 0.00713165 2.6679e-06 1.27498e-08 2.718 ||| 0-0 0-1 ||| 54 374827 +del ||| measure tabled by the ||| 0.333333 0.0597263 2.6679e-06 3.43663e-11 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| measure the ||| 0.00735294 0.0732944 2.6679e-06 2.6014e-05 2.718 ||| 0-1 ||| 136 374827 +del ||| measured in all the Member States , ||| 1 0.0732944 2.6679e-06 1.22589e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| measured in all the Member States ||| 1 0.0732944 2.6679e-06 1.02796e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| measured in all the Member ||| 1 0.0732944 2.6679e-06 2.15415e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| measured in all the ||| 1 0.0732944 2.6679e-06 4.18037e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| measures aimed at ensuring optimum results from ||| 1 0.0911315 2.6679e-06 2.58216e-26 2.718 ||| 0-6 ||| 1 374827 +del ||| meeting , the ||| 0.027027 0.0732944 2.6679e-06 5.20223e-06 2.718 ||| 0-2 ||| 37 374827 +del ||| meeting in the ||| 0.015873 0.0458111 2.6679e-06 1.17635e-06 2.718 ||| 0-1 0-2 ||| 63 374827 +del ||| meeting of the ||| 0.00506073 0.130625 1.33395e-05 2.27458e-06 2.718 ||| 0-1 ||| 988 374827 +del ||| meeting of ||| 0.00532387 0.130625 1.60074e-05 3.70502e-05 2.718 ||| 0-1 ||| 1127 374827 +del ||| meeting on ||| 0.00920245 0.0140673 8.00369e-06 1.23182e-06 2.718 ||| 0-1 ||| 326 374827 +del ||| meeting the ||| 0.00120773 0.0732944 2.6679e-06 4.36229e-05 2.718 ||| 0-1 ||| 828 374827 +del ||| meeting with ||| 0.00224215 0.0040434 2.6679e-06 1.02582e-07 2.718 ||| 0-0 0-1 ||| 446 374827 +del ||| meeting ||| 0.000399648 0.0035587 1.33395e-05 5.39e-05 2.718 ||| 0-0 ||| 12511 374827 +del ||| member of the Commission ||| 0.000472813 0.130625 2.6679e-06 1.76227e-09 2.718 ||| 0-1 ||| 2115 374827 +del ||| member of the ||| 0.00243784 0.10196 2.6679e-05 1.70687e-05 2.718 ||| 0-1 0-2 ||| 4102 374827 +del ||| member of ||| 0.00123579 0.130625 1.33395e-05 4.91446e-05 2.718 ||| 0-1 ||| 4046 374827 +del ||| members ' ||| 0.0227273 0.0293692 2.6679e-06 7.00345e-07 2.718 ||| 0-1 ||| 44 374827 +del ||| members of the institutions involved ||| 1 0.10196 2.6679e-06 2.74348e-13 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| members of the institutions ||| 0.2 0.10196 2.6679e-06 7.93371e-10 2.718 ||| 0-1 0-2 ||| 5 374827 +del ||| members of the ||| 0.00198413 0.10196 2.13432e-05 1.51118e-05 2.718 ||| 0-1 0-2 ||| 4032 374827 +del ||| members of ||| 0.00045106 0.130625 5.33579e-06 4.35104e-05 2.718 ||| 0-1 ||| 4434 374827 +del ||| memory of the ||| 0.00877193 0.10196 2.6679e-06 1.17821e-06 2.718 ||| 0-1 0-2 ||| 114 374827 +del ||| memory of ||| 0.00393701 0.130625 2.6679e-06 3.39233e-06 2.718 ||| 0-1 ||| 254 374827 +del ||| mention a region not considered by the ||| 1 0.0597263 2.6679e-06 8.70208e-19 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| mention my approval of the ||| 1 0.10196 2.6679e-06 1.91488e-13 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| mention of the slaughter ||| 1 0.10196 2.6679e-06 3.98338e-11 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| mention of the ||| 0.0135135 0.10196 5.33579e-06 9.95844e-06 2.718 ||| 0-1 0-2 ||| 148 374827 +del ||| mention the ||| 0.0010582 0.0732944 2.6679e-06 3.37591e-05 2.718 ||| 0-1 ||| 945 374827 +del ||| mentioned in the ||| 0.00173913 0.0458111 2.6679e-06 8.28878e-07 2.718 ||| 0-1 0-2 ||| 575 374827 +del ||| mentioned the ||| 0.00139276 0.0732944 2.6679e-06 3.07374e-05 2.718 ||| 0-1 ||| 718 374827 +del ||| mercury ||| 0.00115473 0.0292634 2.6679e-06 3.81e-05 2.718 ||| 0-0 ||| 866 374827 +del ||| mercy of ||| 0.0350877 0.130625 5.33579e-06 1.06195e-06 2.718 ||| 0-1 ||| 57 374827 +del ||| merely come out of the ||| 1 0.10196 2.6679e-06 2.1231e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| merit the term ||| 0.2 0.0732944 2.6679e-06 2.0518e-10 2.718 ||| 0-1 ||| 5 374827 +del ||| merit the ||| 0.037037 0.0732944 2.6679e-06 1.87551e-06 2.718 ||| 0-1 ||| 27 374827 +del ||| mesh size is not so ||| 1 0.0131579 2.6679e-06 2.36159e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| mesh size is not ||| 1 0.0131579 2.6679e-06 1.04048e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| mesh size is ||| 1 0.0131579 2.6679e-06 3.04761e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| mesh size ||| 0.0232558 0.0131579 2.6679e-06 9.724e-11 2.718 ||| 0-0 ||| 43 374827 +del ||| mesh ||| 0.0135135 0.0131579 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 74 374827 +del ||| met for a ||| 0.5 0.0138653 2.6679e-06 3.65763e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| met for ||| 0.05 0.0138653 2.6679e-06 8.25169e-07 2.718 ||| 0-1 ||| 20 374827 +del ||| metaphor ||| 0.0123457 0.015625 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 81 374827 +del ||| meted out by ||| 0.0833333 0.0461582 2.6679e-06 3.59233e-10 2.718 ||| 0-2 ||| 12 374827 +del ||| method of the ||| 0.0526316 0.10196 2.6679e-06 4.31328e-06 2.718 ||| 0-1 0-2 ||| 19 374827 +del ||| method of ||| 0.00275482 0.130625 5.33579e-06 1.24189e-05 2.718 ||| 0-1 ||| 726 374827 +del ||| midst of ||| 0.00480769 0.130625 2.6679e-06 2.77286e-06 2.718 ||| 0-1 ||| 208 374827 +del ||| might of ||| 0.0833333 0.130625 2.6679e-06 0.000113274 2.718 ||| 0-1 ||| 12 374827 +del ||| migration into the southern ||| 1 0.211819 2.6679e-06 1.90152e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| milk , the ||| 0.0769231 0.0732944 2.6679e-06 4.30758e-07 2.718 ||| 0-2 ||| 13 374827 +del ||| million for the ||| 0.0357143 0.0732944 2.6679e-06 1.94063e-07 2.718 ||| 0-2 ||| 28 374827 +del ||| million of which out ||| 1 0.130625 2.6679e-06 6.97786e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| million of which ||| 0.0714286 0.130625 2.6679e-06 1.8217e-07 2.718 ||| 0-1 ||| 14 374827 +del ||| million of ||| 0.00534759 0.130625 2.6679e-06 2.14454e-05 2.718 ||| 0-1 ||| 187 374827 +del ||| mind the ||| 0.00251256 0.0732944 5.33579e-06 8.74889e-05 2.718 ||| 0-1 ||| 796 374827 +del ||| minds of ||| 0.00564972 0.130625 2.6679e-06 1.41298e-05 2.718 ||| 0-1 ||| 177 374827 +del ||| minister of the ||| 0.0769231 0.10196 2.6679e-06 9.63059e-07 2.718 ||| 0-1 0-2 ||| 13 374827 +del ||| minister ||| 0.00120555 0.0157959 5.33579e-06 3.41e-05 2.718 ||| 0-0 ||| 1659 374827 +del ||| miss the ||| 0.0131579 0.0732944 2.6679e-06 2.88272e-06 2.718 ||| 0-1 ||| 76 374827 +del ||| missing pieces of the ||| 0.5 0.10196 2.6679e-06 3.34899e-11 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| mitigation of ||| 0.05 0.129533 2.6679e-06 1.08555e-05 2.718 ||| 0-0 0-1 ||| 20 374827 +del ||| mobilised from the ||| 0.5 0.082213 2.6679e-06 1.05384e-08 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| mobility of ||| 0.00171233 0.130625 2.6679e-06 1.47493e-06 2.718 ||| 0-1 ||| 584 374827 +del ||| model for the ||| 0.010989 0.0435798 2.6679e-06 1.43858e-07 2.718 ||| 0-1 0-2 ||| 91 374827 +del ||| model of the ||| 0.0224719 0.10196 5.33579e-06 3.94445e-06 2.718 ||| 0-1 0-2 ||| 89 374827 +del ||| moment - because the ||| 1 0.0732944 2.6679e-06 7.77917e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| moment in the ||| 0.0571429 0.0458111 5.33579e-06 1.69241e-06 2.718 ||| 0-1 0-2 ||| 35 374827 +del ||| monetary fluctuations ||| 0.0555556 0.0075472 2.6679e-06 7.632e-11 2.718 ||| 0-1 ||| 18 374827 +del ||| money in the ||| 0.00840336 0.0183279 2.6679e-06 2.70511e-07 2.718 ||| 0-1 ||| 119 374827 +del ||| money in ||| 0.00290698 0.0183279 2.6679e-06 4.40631e-06 2.718 ||| 0-1 ||| 344 374827 +del ||| monitor the ||| 0.00122549 0.0732944 2.6679e-06 5.24447e-06 2.718 ||| 0-1 ||| 816 374827 +del ||| monitoring , ||| 0.00241546 0.0005024 2.6679e-06 6.3205e-07 2.718 ||| 0-0 ||| 414 374827 +del ||| monitoring by the ||| 0.0238095 0.0732944 2.6679e-06 6.94732e-08 2.718 ||| 0-2 ||| 42 374827 +del ||| monitoring centre ||| 0.00862069 0.0005024 2.6679e-06 1.696e-10 2.718 ||| 0-0 ||| 116 374827 +del ||| monitoring the ||| 0.00136612 0.0732944 2.6679e-06 1.32327e-05 2.718 ||| 0-1 ||| 732 374827 +del ||| monitoring to ||| 0.0285714 0.0006066 2.6679e-06 5.0692e-08 2.718 ||| 0-1 ||| 35 374827 +del ||| monitoring ||| 0.000196541 0.0005024 5.33579e-06 5.3e-06 2.718 ||| 0-0 ||| 10176 374827 +del ||| monopolies of ||| 0.1 0.130625 2.6679e-06 4.1298e-07 2.718 ||| 0-1 ||| 10 374827 +del ||| months , the European Commission must allow ||| 0.333333 0.0732944 2.6679e-06 1.22246e-18 2.718 ||| 0-2 ||| 3 374827 +del ||| months , the European Commission must ||| 0.333333 0.0732944 2.6679e-06 5.03898e-15 2.718 ||| 0-2 ||| 3 374827 +del ||| months , the European Commission ||| 0.25 0.0732944 2.6679e-06 3.26021e-12 2.718 ||| 0-2 ||| 4 374827 +del ||| months , the European ||| 0.333333 0.0732944 2.6679e-06 5.5816e-09 2.718 ||| 0-2 ||| 3 374827 +del ||| months , the ||| 0.00862069 0.0732944 2.6679e-06 1.66919e-06 2.718 ||| 0-2 ||| 116 374827 +del ||| months and the Action Plan ||| 1 0.0732944 2.6679e-06 2.84023e-18 2.718 ||| 0-2 ||| 1 374827 +del ||| months and the Action ||| 1 0.0732944 2.6679e-06 1.57791e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| months and the ||| 0.0357143 0.0732944 2.6679e-06 1.75323e-07 2.718 ||| 0-2 ||| 28 374827 +del ||| months of ||| 0.00187617 0.130625 2.6679e-06 1.18879e-05 2.718 ||| 0-1 ||| 533 374827 +del ||| mooted by ||| 0.166667 0.0461582 2.6679e-06 2.26377e-08 2.718 ||| 0-1 ||| 6 374827 +del ||| more 's the ||| 1 0.121553 2.6679e-06 3.18701e-05 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| more about ||| 0.00242131 0.0101916 2.6679e-06 3.20654e-06 2.718 ||| 0-1 ||| 413 374827 +del ||| more at all on the ||| 1 0.0436809 2.6679e-06 1.53924e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| more aware of the ||| 0.0149254 0.10196 2.6679e-06 3.24987e-08 2.718 ||| 0-2 0-3 ||| 67 374827 +del ||| more by way of ||| 0.333333 0.130625 2.6679e-06 7.62387e-09 2.718 ||| 0-3 ||| 3 374827 +del ||| more crucial than ever ||| 0.0909091 0.0313352 2.6679e-06 3.82435e-14 2.718 ||| 0-2 ||| 11 374827 +del ||| more crucial than ||| 0.0833333 0.0313352 2.6679e-06 2.03531e-10 2.718 ||| 0-2 ||| 12 374827 +del ||| more democratically ||| 0.0357143 0.0018282 2.6679e-06 5.93762e-09 2.718 ||| 0-1 ||| 28 374827 +del ||| more flexible regime of ||| 1 0.130625 2.6679e-06 2.65017e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| more for ||| 0.00278552 0.0138653 2.6679e-06 2.4569e-05 2.718 ||| 0-1 ||| 359 374827 +del ||| more from the ||| 0.0192308 0.0732944 2.6679e-06 1.27731e-06 2.718 ||| 0-2 ||| 52 374827 +del ||| more of the ||| 0.00510204 0.10196 2.6679e-06 0.000233972 2.718 ||| 0-1 0-2 ||| 196 374827 +del ||| more particularly on ||| 0.0769231 0.0140673 2.6679e-06 3.99793e-09 2.718 ||| 0-2 ||| 13 374827 +del ||| more rapidly than in the ||| 0.5 0.0409858 2.6679e-06 5.95389e-13 2.718 ||| 0-2 0-3 0-4 ||| 2 374827 +del ||| more talk about ||| 0.111111 0.0101916 2.6679e-06 2.57485e-10 2.718 ||| 0-2 ||| 9 374827 +del ||| more than enough ||| 0.0133333 0.0313352 2.6679e-06 8.82504e-10 2.718 ||| 0-1 ||| 75 374827 +del ||| more than it does ||| 0.2 0.0313352 2.6679e-06 6.66319e-11 2.718 ||| 0-1 ||| 5 374827 +del ||| more than it ||| 0.0138889 0.0313352 2.6679e-06 9.49984e-08 2.718 ||| 0-1 ||| 72 374827 +del ||| more than one ||| 0.00202429 0.0313352 2.6679e-06 2.22656e-08 2.718 ||| 0-1 ||| 494 374827 +del ||| more than ||| 0.000629376 0.0313352 2.13432e-05 5.34203e-06 2.718 ||| 0-1 ||| 12711 374827 +del ||| more to do with ||| 0.0128205 0.0045281 2.6679e-06 1.32674e-09 2.718 ||| 0-3 ||| 78 374827 +del ||| more under the ||| 0.142857 0.0732944 2.6679e-06 2.84588e-07 2.718 ||| 0-2 ||| 7 374827 +del ||| moreover , of the ||| 0.166667 0.10196 2.6679e-06 1.32321e-06 2.718 ||| 0-2 0-3 ||| 6 374827 +del ||| most from ||| 0.0285714 0.0911315 2.6679e-06 9.36716e-06 2.718 ||| 0-1 ||| 35 374827 +del ||| most of the ||| 0.000457038 0.10196 2.6679e-06 4.42802e-05 2.718 ||| 0-1 0-2 ||| 2188 374827 +del ||| most of ||| 0.000426621 0.130625 5.33579e-06 0.000127493 2.718 ||| 0-1 ||| 4688 374827 +del ||| most pressing issues addressed in the ||| 1 0.0458111 2.6679e-06 7.47576e-19 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| motion , for ||| 0.2 0.0138653 2.6679e-06 9.6994e-08 2.718 ||| 0-2 ||| 5 374827 +del ||| motion by the European ||| 1 0.0597263 2.6679e-06 1.41973e-09 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| motion by the ||| 0.05 0.0597263 2.6679e-06 4.24572e-07 2.718 ||| 0-1 0-2 ||| 20 374827 +del ||| motion for a ||| 0.000340599 0.0138653 2.6679e-06 3.60517e-08 2.718 ||| 0-1 ||| 2936 374827 +del ||| motion for ||| 0.000309885 0.0138653 2.6679e-06 8.13335e-07 2.718 ||| 0-1 ||| 3227 374827 +del ||| move from ||| 0.00319489 0.0911315 2.6679e-06 3.31383e-06 2.718 ||| 0-1 ||| 313 374827 +del ||| move further away from the ||| 0.333333 0.082213 2.6679e-06 1.76944e-13 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| moveable ||| 0.2 0.0909091 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 5 374827 +del ||| moved from the ||| 0.117647 0.082213 5.33579e-06 2.3862e-07 2.718 ||| 0-1 0-2 ||| 17 374827 +del ||| movement in the ||| 0.0103093 0.0458111 2.6679e-06 4.11161e-07 2.718 ||| 0-1 0-2 ||| 97 374827 +del ||| movement on the ||| 0.0322581 0.0436809 2.6679e-06 1.49537e-07 2.718 ||| 0-1 0-2 ||| 31 374827 +del ||| much approve of , is ||| 1 0.130625 2.6679e-06 2.46774e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| much approve of , ||| 1 0.130625 2.6679e-06 7.87381e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| much approve of ||| 0.333333 0.130625 2.6679e-06 6.60252e-09 2.718 ||| 0-2 ||| 3 374827 +del ||| much as ||| 0.0010917 0.0004965 2.6679e-06 2.58352e-07 2.718 ||| 0-1 ||| 916 374827 +del ||| much because of ||| 0.5 0.130625 2.6679e-06 9.72909e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| much in the interests ||| 0.1 0.0732944 2.6679e-06 1.02299e-09 2.718 ||| 0-2 ||| 10 374827 +del ||| much in the ||| 0.0105263 0.0732944 2.6679e-06 7.46163e-06 2.718 ||| 0-2 ||| 95 374827 +del ||| much in ||| 0.00276243 0.0183279 2.6679e-06 2.70662e-05 2.718 ||| 0-1 ||| 362 374827 +del ||| much of ||| 0.000855432 0.130625 2.6679e-06 0.000296077 2.718 ||| 0-1 ||| 1169 374827 +del ||| much the ||| 0.0121457 0.0732944 8.00369e-06 0.000348601 2.718 ||| 0-1 ||| 247 374827 +del ||| much to say on the ||| 0.25 0.0436809 2.6679e-06 2.9037e-10 2.718 ||| 0-3 0-4 ||| 4 374827 +del ||| multiple uses of ||| 1 0.130625 2.6679e-06 9.76992e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| multiplication of ||| 0.0217391 0.130625 2.6679e-06 2.0649e-07 2.718 ||| 0-1 ||| 46 374827 +del ||| must be a matter for the authorities ||| 0.166667 0.0435798 2.6679e-06 3.20565e-16 2.718 ||| 0-4 0-5 ||| 6 374827 +del ||| must be a matter for the ||| 0.142857 0.0435798 2.6679e-06 4.81329e-12 2.718 ||| 0-4 0-5 ||| 7 374827 +del ||| must be found to the ||| 0.5 0.0732944 2.6679e-06 1.89145e-10 2.718 ||| 0-4 ||| 2 374827 +del ||| must be introduced according to the ||| 1 0.0732944 2.6679e-06 7.07672e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| must the ||| 0.0138889 0.0732944 2.6679e-06 0.000536811 2.718 ||| 0-1 ||| 72 374827 +del ||| mutual dependence of ||| 0.2 0.130625 2.6679e-06 2.59587e-11 2.718 ||| 0-2 ||| 5 374827 +del ||| mutual ||| 0.0016176 0.0044862 1.33395e-05 2.76e-05 2.718 ||| 0-0 ||| 3091 374827 +del ||| my approval of the ||| 0.142857 0.10196 2.6679e-06 1.97004e-09 2.718 ||| 0-2 0-3 ||| 7 374827 +del ||| my comments to the ||| 0.1 0.0732944 2.6679e-06 9.92363e-10 2.718 ||| 0-3 ||| 10 374827 +del ||| my country , the ||| 0.0078125 0.0732944 2.6679e-06 9.58651e-09 2.718 ||| 0-3 ||| 128 374827 +del ||| my reason for ||| 0.027027 0.0138653 2.6679e-06 1.61829e-09 2.718 ||| 0-2 ||| 37 374827 +del ||| my vote in favour of the ||| 0.03125 0.10196 2.6679e-06 7.17649e-14 2.718 ||| 0-4 0-5 ||| 32 374827 +del ||| my way through the ||| 0.5 0.0732944 2.6679e-06 2.21622e-10 2.718 ||| 0-3 ||| 2 374827 +del ||| myself on the ||| 0.2 0.0436809 2.6679e-06 5.2968e-07 2.718 ||| 0-1 0-2 ||| 5 374827 +del ||| myself thinking of ||| 0.25 0.130625 2.6679e-06 3.39899e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| name of the ||| 0.00631579 0.10196 8.00369e-06 8.9544e-06 2.718 ||| 0-1 0-2 ||| 475 374827 +del ||| name of ||| 0.000747943 0.130625 2.6679e-06 2.57817e-05 2.718 ||| 0-1 ||| 1337 374827 +del ||| namely by ||| 0.0178571 0.0461582 2.6679e-06 2.58393e-06 2.718 ||| 0-1 ||| 56 374827 +del ||| namely from the ||| 0.166667 0.082213 2.6679e-06 1.20289e-06 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| namely the ||| 0.00158061 0.0732944 8.00369e-06 5.55011e-05 2.718 ||| 0-1 ||| 1898 374827 +del ||| namely ||| 9.71534e-05 0.0002517 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 10293 374827 +del ||| nationalised industries are ||| 1 0.0333333 2.6679e-06 6.39074e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| nationalised industries ||| 0.5 0.0333333 2.6679e-06 4.212e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| nationalised ||| 0.0238095 0.0333333 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 42 374827 +del ||| nationals of ||| 0.00346021 0.130625 2.6679e-06 3.30384e-06 2.718 ||| 0-1 ||| 289 374827 +del ||| natural thing in the world ||| 0.5 0.0183279 2.6679e-06 3.81189e-15 2.718 ||| 0-2 ||| 2 374827 +del ||| natural thing in the ||| 0.5 0.0183279 2.6679e-06 1.67335e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| natural thing in ||| 1 0.0183279 2.6679e-06 2.72569e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| naturally one of the ||| 0.25 0.10196 2.6679e-06 2.70307e-08 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| nature from the ||| 0.2 0.082213 2.6679e-06 1.06438e-06 2.718 ||| 0-1 0-2 ||| 5 374827 +del ||| nature of the ||| 0.0180995 0.10196 3.20148e-05 1.44869e-05 2.718 ||| 0-1 0-2 ||| 663 374827 +del ||| nature of ||| 0.00414594 0.130625 1.33395e-05 4.17109e-05 2.718 ||| 0-1 ||| 1206 374827 +del ||| necessary for us ||| 0.0163934 0.0138653 2.6679e-06 7.97832e-09 2.718 ||| 0-1 ||| 61 374827 +del ||| necessary for ||| 0.000643501 0.0138653 2.6679e-06 2.76814e-06 2.718 ||| 0-1 ||| 1554 374827 +del ||| necessary from every point of ||| 1 0.0911315 2.6679e-06 4.3149e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| necessary from every point ||| 1 0.0911315 2.6679e-06 7.93705e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| necessary from every ||| 1 0.0911315 2.6679e-06 9.07299e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| necessary from ||| 0.0344828 0.0911315 2.6679e-06 5.57651e-06 2.718 ||| 0-1 ||| 29 374827 +del ||| necessary in ||| 0.00276243 0.0183279 2.6679e-06 6.93845e-06 2.718 ||| 0-1 ||| 362 374827 +del ||| necessary to be in a position ||| 1 0.0183279 2.6679e-06 1.63093e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| necessary to be in a ||| 1 0.0183279 2.6679e-06 4.95273e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| necessary to be in ||| 1 0.0183279 2.6679e-06 1.11735e-08 2.718 ||| 0-3 ||| 1 374827 +del ||| need for ||| 0.000109963 0.0138653 2.6679e-06 9.86438e-06 2.718 ||| 0-1 ||| 9094 374827 +del ||| need of review ||| 0.5 0.130625 2.6679e-06 1.02238e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| need of ||| 0.00236967 0.130625 2.6679e-06 0.000270472 2.718 ||| 0-1 ||| 422 374827 +del ||| need the ||| 0.00578035 0.0732944 5.33579e-06 0.000318454 2.718 ||| 0-1 ||| 346 374827 +del ||| need to help support the ||| 1 0.0732944 2.6679e-06 1.84499e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| needed - of the ||| 1 0.10196 2.6679e-06 5.17475e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| needs of the ||| 0.0012837 0.10196 2.6679e-06 2.03165e-05 2.718 ||| 0-1 0-2 ||| 779 374827 +del ||| negative impact on the protection of jobs ||| 1 0.0140673 2.6679e-06 3.31833e-22 2.718 ||| 0-2 ||| 1 374827 +del ||| negative impact on the protection of ||| 1 0.0140673 2.6679e-06 6.40603e-18 2.718 ||| 0-2 ||| 1 374827 +del ||| negative impact on the protection ||| 0.5 0.0140673 2.6679e-06 1.17836e-16 2.718 ||| 0-2 ||| 2 374827 +del ||| negative impact on the ||| 0.00819672 0.0140673 2.6679e-06 1.16095e-12 2.718 ||| 0-2 ||| 122 374827 +del ||| negative impact on ||| 0.00653595 0.0140673 5.33579e-06 1.89104e-11 2.718 ||| 0-2 ||| 306 374827 +del ||| negative return of ||| 1 0.130625 2.6679e-06 4.59717e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| negotiating my way through the ||| 0.5 0.0732944 2.6679e-06 3.43514e-15 2.718 ||| 0-4 ||| 2 374827 +del ||| neighbourhood of ||| 0.05 0.130625 2.6679e-06 1.38643e-06 2.718 ||| 0-1 ||| 20 374827 +del ||| neighbours in the South ||| 0.333333 0.0183279 2.6679e-06 1.78796e-13 2.718 ||| 0-1 ||| 3 374827 +del ||| neighbours in the ||| 0.0204082 0.0183279 2.6679e-06 8.27758e-09 2.718 ||| 0-1 ||| 49 374827 +del ||| neighbours in ||| 0.0128205 0.0183279 2.6679e-06 1.34832e-07 2.718 ||| 0-1 ||| 78 374827 +del ||| neighbours to the ||| 0.03125 0.0732944 2.6679e-06 1.54309e-07 2.718 ||| 0-2 ||| 32 374827 +del ||| never-ending trail of destruction , ||| 0.5 0.130625 2.6679e-06 9.21956e-19 2.718 ||| 0-2 ||| 2 374827 +del ||| never-ending trail of destruction ||| 0.5 0.130625 2.6679e-06 7.73098e-18 2.718 ||| 0-2 ||| 2 374827 +del ||| never-ending trail of ||| 0.5 0.130625 2.6679e-06 7.43363e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| nevertheless part of the ||| 1 0.10196 2.6679e-06 1.49871e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| nevertheless to attempt to maintain the ||| 0.5 0.0732944 2.6679e-06 1.28401e-15 2.718 ||| 0-5 ||| 2 374827 +del ||| new British Government 's ||| 1 0.169811 2.6679e-06 3.41485e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| new and pioneering and the ||| 1 0.0732944 2.6679e-06 7.16553e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| new draft ||| 0.00454545 0.0160678 2.6679e-06 1.29522e-07 2.718 ||| 0-1 ||| 220 374827 +del ||| new forms of ||| 0.00273224 0.130625 2.6679e-06 1.57271e-08 2.718 ||| 0-2 ||| 366 374827 +del ||| new means of ||| 0.0166667 0.130625 2.6679e-06 1.11729e-07 2.718 ||| 0-2 ||| 60 374827 +del ||| news concerning this ||| 1 0.0037773 2.6679e-06 9.30087e-12 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| news for all consumers ||| 1 0.0138653 2.6679e-06 6.90183e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| news for all ||| 0.125 0.0138653 2.6679e-06 1.84541e-09 2.718 ||| 0-1 ||| 8 374827 +del ||| news for ||| 0.00617284 0.0138653 2.6679e-06 3.9053e-07 2.718 ||| 0-1 ||| 162 374827 +del ||| news with ||| 0.166667 0.0045281 2.6679e-06 6.90862e-08 2.718 ||| 0-1 ||| 6 374827 +del ||| next budgets , ||| 0.5 0.0281625 2.6679e-06 9.88772e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| next budgets ||| 0.333333 0.0281625 2.6679e-06 8.29126e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| next door ||| 0.0238095 0.0281625 2.6679e-06 4.36737e-08 2.718 ||| 0-0 ||| 42 374827 +del ||| next eight months , the European Commission ||| 0.333333 0.0732944 2.6679e-06 1.58286e-21 2.718 ||| 0-4 ||| 3 374827 +del ||| next eight months , the European ||| 0.333333 0.0732944 2.6679e-06 2.70992e-18 2.718 ||| 0-4 ||| 3 374827 +del ||| next eight months , the ||| 0.333333 0.0732944 2.6679e-06 8.10407e-16 2.718 ||| 0-4 ||| 3 374827 +del ||| next five years ||| 0.00292398 0.0281625 2.6679e-06 3.24898e-12 2.718 ||| 0-0 ||| 342 374827 +del ||| next five ||| 0.003003 0.0281625 2.6679e-06 1.90892e-08 2.718 ||| 0-0 ||| 333 374827 +del ||| next to a ||| 0.0714286 0.0281625 2.6679e-06 3.79731e-06 2.718 ||| 0-0 ||| 14 374827 +del ||| next to ||| 0.00595238 0.0281625 2.6679e-06 8.56682e-05 2.718 ||| 0-0 ||| 168 374827 +del ||| next year ||| 0.000669568 0.0281625 5.33579e-06 2.40447e-07 2.718 ||| 0-0 ||| 2987 374827 +del ||| next ||| 0.00129086 0.0281625 6.66974e-05 0.0009641 2.718 ||| 0-0 ||| 19367 374827 +del ||| nice of the ||| 0.2 0.10196 2.6679e-06 1.14747e-06 2.718 ||| 0-1 0-2 ||| 5 374827 +del ||| night 's ||| 0.0526316 0.169811 2.6679e-06 3.89755e-07 2.718 ||| 0-1 ||| 19 374827 +del ||| no different from the ||| 0.166667 0.082213 2.6679e-06 1.29023e-09 2.718 ||| 0-2 0-3 ||| 6 374827 +del ||| no doubt that the ||| 0.00675676 0.0732944 2.6679e-06 4.15663e-10 2.718 ||| 0-3 ||| 148 374827 +del ||| no question of a ||| 0.0909091 0.130625 2.6679e-06 8.42021e-09 2.718 ||| 0-2 ||| 11 374827 +del ||| no question of ||| 0.00990099 0.130625 2.6679e-06 1.89962e-07 2.718 ||| 0-2 ||| 101 374827 +del ||| no regard for ||| 0.0714286 0.0138653 2.6679e-06 5.70209e-09 2.718 ||| 0-2 ||| 14 374827 +del ||| no way reflects the clear electoral will ||| 0.5 0.0732944 2.6679e-06 1.24904e-22 2.718 ||| 0-3 ||| 2 374827 +del ||| no way reflects the clear electoral ||| 0.5 0.0732944 2.6679e-06 1.44377e-20 2.718 ||| 0-3 ||| 2 374827 +del ||| no way reflects the clear ||| 0.5 0.0732944 2.6679e-06 2.36684e-15 2.718 ||| 0-3 ||| 2 374827 +del ||| no way reflects the ||| 0.5 0.0732944 2.6679e-06 7.10977e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| nor of the ||| 0.0322581 0.10196 2.6679e-06 5.46075e-06 2.718 ||| 0-1 0-2 ||| 31 374827 +del ||| northern ||| 0.00121951 0.175 5.33579e-06 0.0004505 2.718 ||| 0-0 ||| 1640 374827 +del ||| nose outside ||| 1 0.0148139 2.6679e-06 9.3757e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| not ? ' ' ||| 1 0.0293692 2.6679e-06 9.51595e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| not ? ' ||| 0.25 0.0293692 2.6679e-06 2.77037e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| not accurately reflect the ||| 1 0.0732944 2.6679e-06 2.47376e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| not allowed to be hidden in a ||| 1 0.0183279 2.6679e-06 7.66056e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| not allowed to be hidden in ||| 1 0.0183279 2.6679e-06 1.72824e-16 2.718 ||| 0-5 ||| 1 374827 +del ||| not be on ||| 0.0833333 0.0140673 2.6679e-06 6.06823e-07 2.718 ||| 0-2 ||| 12 374827 +del ||| not come within the ||| 0.25 0.0402501 2.6679e-06 4.20655e-10 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| not considered by the rapporteur ||| 1 0.0597263 2.6679e-06 1.49161e-13 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| not considered by the ||| 1 0.0597263 2.6679e-06 2.06309e-09 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| not entirely unfounded - ||| 1 0.050432 2.6679e-06 1.23134e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| not entirely unfounded ||| 1 0.050432 2.6679e-06 3.26432e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| not entirely ||| 0.01 0.050432 2.6679e-06 1.12563e-06 2.718 ||| 0-1 ||| 100 374827 +del ||| not far from ||| 0.04 0.0911315 2.6679e-06 5.0516e-08 2.718 ||| 0-2 ||| 25 374827 +del ||| not from their ||| 1 0.0911315 2.6679e-06 8.5767e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| not from ||| 0.008 0.0911315 2.6679e-06 7.39945e-05 2.718 ||| 0-1 ||| 125 374827 +del ||| not have the ||| 0.0134228 0.0732944 5.33579e-06 1.41816e-05 2.718 ||| 0-2 ||| 149 374827 +del ||| not how we go about ||| 0.111111 0.0101916 2.6679e-06 1.1406e-14 2.718 ||| 0-4 ||| 9 374827 +del ||| not just holiday tourism ||| 1 0.0676417 2.6679e-06 4.60565e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| not just of ||| 0.00729927 0.130625 2.6679e-06 1.27067e-06 2.718 ||| 0-2 ||| 137 374827 +del ||| not least , of the ||| 0.5 0.10196 2.6679e-06 1.02365e-08 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| not nationals of ||| 1 0.130625 2.6679e-06 1.12796e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| not only for ||| 0.000856898 0.0138653 2.6679e-06 4.08844e-08 2.718 ||| 0-2 ||| 1167 374827 +del ||| not only of the ||| 0.0075188 0.10196 2.6679e-06 3.89346e-07 2.718 ||| 0-2 0-3 ||| 133 374827 +del ||| not only the UK ||| 0.333333 0.0969375 2.6679e-06 1.78554e-09 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| not only the ||| 0.0011274 0.0732944 2.6679e-06 1.31988e-06 2.718 ||| 0-2 ||| 887 374827 +del ||| not reflect the ||| 0.0769231 0.0732944 2.6679e-06 4.05534e-08 2.718 ||| 0-2 ||| 13 374827 +del ||| not sign up to the ||| 1 0.0732944 2.6679e-06 1.8758e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| not so much because of ||| 0.1 0.130625 2.6679e-06 7.53905e-13 2.718 ||| 0-4 ||| 10 374827 +del ||| not suffer from ||| 0.125 0.0911315 2.6679e-06 2.6342e-09 2.718 ||| 0-2 ||| 8 374827 +del ||| not sufficiently serviced ||| 0.25 0.0526316 2.6679e-06 8.29968e-14 2.718 ||| 0-2 ||| 4 374827 +del ||| not the first time ||| 0.0833333 0.0732944 2.6679e-06 1.04809e-09 2.718 ||| 0-1 ||| 12 374827 +del ||| not the first ||| 0.0285714 0.0732944 2.6679e-06 6.38419e-07 2.718 ||| 0-1 ||| 35 374827 +del ||| not the ||| 0.00226978 0.0732944 1.86753e-05 0.00118577 2.718 ||| 0-1 ||| 3084 374827 +del ||| not worthy of the ||| 0.25 0.10196 2.6679e-06 6.92575e-09 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| note first of ||| 1 0.130625 2.6679e-06 1.65808e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| note our approval of ||| 1 0.130625 2.6679e-06 1.27017e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| note sounded by ||| 1 0.0461582 2.6679e-06 6.75251e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| note the European ||| 1 0.0400553 2.6679e-06 1.11347e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| note the ||| 0.00492611 0.0732944 2.6679e-06 3.62598e-05 2.718 ||| 0-1 ||| 203 374827 +del ||| notice of ||| 0.00584795 0.130625 2.6679e-06 1.13569e-05 2.718 ||| 0-1 ||| 171 374827 +del ||| notion of ||| 0.00182482 0.130625 2.6679e-06 7.31564e-06 2.718 ||| 0-1 ||| 548 374827 +del ||| now accounts for ||| 0.0833333 0.0138653 2.6679e-06 6.84782e-10 2.718 ||| 0-2 ||| 12 374827 +del ||| now at last ||| 0.0357143 0.0214237 2.6679e-06 8.4971e-09 2.718 ||| 0-2 ||| 28 374827 +del ||| now being disproved ||| 1 0.0526316 2.6679e-06 7.62068e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| now in ||| 0.00113766 0.0183279 2.6679e-06 5.55481e-05 2.718 ||| 0-1 ||| 879 374827 +del ||| now make good the harm it has ||| 1 0.0732944 2.6679e-06 6.37431e-19 2.718 ||| 0-3 ||| 1 374827 +del ||| now make good the harm it ||| 1 0.0732944 2.6679e-06 1.23833e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| now make good the harm ||| 1 0.0732944 2.6679e-06 6.96349e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| now make good the ||| 1 0.0732944 2.6679e-06 6.44767e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| now put on the table ||| 1 0.0436809 2.6679e-06 5.23764e-13 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| now put on the ||| 0.5 0.0436809 2.6679e-06 7.73654e-09 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| now that the ||| 0.00230947 0.0732944 2.6679e-06 1.20348e-05 2.718 ||| 0-2 ||| 433 374827 +del ||| now the ||| 0.00104603 0.0732944 2.6679e-06 0.000715436 2.718 ||| 0-1 ||| 956 374827 +del ||| now yield ||| 1 0.0021598 2.6679e-06 2.67787e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| nuclear power plants in the ||| 0.03125 0.0458111 2.6679e-06 9.57347e-16 2.718 ||| 0-3 0-4 ||| 32 374827 +del ||| number , in the ||| 1 0.0458111 2.6679e-06 5.52653e-07 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| number of amendments to ||| 0.0153846 0.130625 2.6679e-06 9.89583e-10 2.718 ||| 0-1 ||| 65 374827 +del ||| number of amendments ||| 0.0015015 0.130625 2.6679e-06 1.11367e-08 2.718 ||| 0-1 ||| 666 374827 +del ||| number of asylum seekers ||| 0.0454545 0.130625 2.6679e-06 9.86682e-15 2.718 ||| 0-1 ||| 22 374827 +del ||| number of asylum ||| 0.5 0.130625 2.6679e-06 2.4667e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| number of ||| 0.00129152 0.130625 6.66974e-05 0.000145959 2.718 ||| 0-1 ||| 19357 374827 +del ||| numbers have understandably increased as a result ||| 1 0.0190026 2.6679e-06 8.57325e-23 2.718 ||| 0-3 ||| 1 374827 +del ||| numbers have understandably increased as a ||| 1 0.0190026 2.6679e-06 1.62835e-19 2.718 ||| 0-3 ||| 1 374827 +del ||| numbers have understandably increased as ||| 1 0.0190026 2.6679e-06 3.67359e-18 2.718 ||| 0-3 ||| 1 374827 +del ||| numbers have understandably increased ||| 1 0.0190026 2.6679e-06 3.60001e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| nurtured the ||| 0.142857 0.0732944 2.6679e-06 7.64095e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| nut ||| 0.0114943 0.0434783 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 87 374827 +del ||| nutrients introduced into the soil ||| 1 0.160199 2.6679e-06 9.86264e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| o f ||| 1 0.136364 2.6679e-06 1.106e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| objective of ||| 0.000915751 0.130625 5.33579e-06 1.97345e-05 2.718 ||| 0-1 ||| 2184 374827 +del ||| objectives of the ||| 0.00102041 0.10196 2.6679e-06 4.79481e-06 2.718 ||| 0-1 0-2 ||| 980 374827 +del ||| objectives of ||| 0.00065189 0.0653861 2.6679e-06 7.66962e-07 2.718 ||| 0-0 0-1 ||| 1534 374827 +del ||| objectives ||| 6.83434e-05 0.0001474 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 14632 374827 +del ||| obligations of the ||| 0.0119048 0.10196 2.6679e-06 1.36263e-06 2.718 ||| 0-1 0-2 ||| 84 374827 +del ||| obliged the ||| 0.0625 0.0732944 2.6679e-06 1.32327e-05 2.718 ||| 0-1 ||| 16 374827 +del ||| observation of ||| 0.0142857 0.130625 2.6679e-06 2.97935e-06 2.718 ||| 0-1 ||| 70 374827 +del ||| observe the ||| 0.00342466 0.0732944 2.6679e-06 6.63373e-06 2.718 ||| 0-1 ||| 292 374827 +del ||| observed the ||| 0.0408163 0.0732944 5.33579e-06 9.75957e-06 2.718 ||| 0-1 ||| 49 374827 +del ||| obtain the ||| 0.00967742 0.0732944 8.00369e-06 2.08737e-05 2.718 ||| 0-1 ||| 310 374827 +del ||| obtaining in the ||| 0.111111 0.0458111 2.6679e-06 1.38615e-07 2.718 ||| 0-1 0-2 ||| 9 374827 +del ||| obvious from the ||| 0.0526316 0.082213 2.6679e-06 3.13894e-07 2.718 ||| 0-1 0-2 ||| 19 374827 +del ||| occasion of the ||| 0.0046729 0.130625 2.6679e-06 8.85564e-07 2.718 ||| 0-1 ||| 214 374827 +del ||| occasion of ||| 0.00411523 0.130625 2.6679e-06 1.44248e-05 2.718 ||| 0-1 ||| 243 374827 +del ||| occupied ||| 0.00119332 0.0012005 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 838 374827 +del ||| occupy the ||| 0.0263158 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-1 ||| 38 374827 +del ||| occupying the ||| 0.0357143 0.0732944 2.6679e-06 1.00722e-06 2.718 ||| 0-1 ||| 28 374827 +del ||| occurred about ||| 1 0.0101916 2.6679e-06 5.96743e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| occurred in the ||| 0.0113636 0.0458111 2.6679e-06 3.98049e-07 2.718 ||| 0-1 0-2 ||| 88 374827 +del ||| occurring in the ||| 0.025 0.0458111 2.6679e-06 1.81698e-07 2.718 ||| 0-1 0-2 ||| 40 374827 +del ||| oestrus ||| 0.5 1 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| of [ ||| 0.2 0.130625 2.6679e-06 1.0413e-05 2.718 ||| 0-0 ||| 5 374827 +del ||| of ' The ||| 0.25 0.079997 2.6679e-06 6.0927e-08 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of ' opting out ' ||| 0.5 0.130625 5.33579e-06 5.33253e-14 2.718 ||| 0-0 ||| 4 374827 +del ||| of ' opting out ||| 0.5 0.130625 5.33579e-06 1.55245e-11 2.718 ||| 0-0 ||| 4 374827 +del ||| of ' opting ||| 0.666667 0.130625 5.33579e-06 4.05298e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| of ' ||| 0.0108303 0.079997 4.80222e-05 0.00140062 2.718 ||| 0-0 0-1 ||| 1662 374827 +del ||| of " ||| 0.00913242 0.130625 5.33579e-06 6.98526e-05 2.718 ||| 0-0 ||| 219 374827 +del ||| of , at ||| 0.333333 0.130625 2.6679e-06 0.000147306 2.718 ||| 0-0 ||| 3 374827 +del ||| of , for example , the ||| 0.0625 0.10196 2.6679e-06 3.25988e-09 2.718 ||| 0-0 0-5 ||| 16 374827 +del ||| of , is ||| 0.1 0.130625 2.6679e-06 0.00110253 2.718 ||| 0-0 ||| 10 374827 +del ||| of , the ||| 0.113924 0.130625 2.40111e-05 0.00215967 2.718 ||| 0-0 ||| 79 374827 +del ||| of , ||| 0.0440678 0.130625 0.000104048 0.0351784 2.718 ||| 0-0 ||| 885 374827 +del ||| of - ||| 0.0425532 0.130625 5.33579e-06 0.00111271 2.718 ||| 0-0 ||| 47 374827 +del ||| of 1 , ||| 0.166667 0.130625 2.6679e-06 2.24086e-06 2.718 ||| 0-0 ||| 6 374827 +del ||| of 1 ||| 0.00224215 0.130625 2.6679e-06 1.87906e-05 2.718 ||| 0-0 ||| 446 374827 +del ||| of 100 % was recorded , despite ||| 0.5 0.130625 2.6679e-06 1.07917e-22 2.718 ||| 0-0 ||| 2 374827 +del ||| of 100 % was recorded , ||| 0.5 0.130625 2.6679e-06 1.79563e-18 2.718 ||| 0-0 ||| 2 374827 +del ||| of 100 % was recorded ||| 0.5 0.130625 2.6679e-06 1.50571e-17 2.718 ||| 0-0 ||| 2 374827 +del ||| of 100 % was ||| 0.5 0.130625 2.6679e-06 7.20433e-13 2.718 ||| 0-0 ||| 2 374827 +del ||| of 100 % ||| 0.0333333 0.130625 2.6679e-06 2.2995e-10 2.718 ||| 0-0 ||| 30 374827 +del ||| of 100 ||| 0.0106383 0.130625 2.6679e-06 4.0413e-06 2.718 ||| 0-0 ||| 94 374827 +del ||| of 19 and ||| 0.0625 0.130625 2.6679e-06 1.18239e-08 2.718 ||| 0-0 ||| 16 374827 +del ||| of 19 ||| 0.00714286 0.130625 2.6679e-06 9.43954e-07 2.718 ||| 0-0 ||| 140 374827 +del ||| of 1998 ||| 0.00529101 0.130625 2.6679e-06 2.77286e-06 2.718 ||| 0-0 ||| 189 374827 +del ||| of 20 ||| 0.00255754 0.130625 2.6679e-06 3.18584e-06 2.718 ||| 0-0 ||| 391 374827 +del ||| of 30 ||| 0.00355872 0.130625 2.6679e-06 3.92331e-06 2.718 ||| 0-0 ||| 281 374827 +del ||| of 50 years ||| 0.0357143 0.130625 2.6679e-06 7.02891e-10 2.718 ||| 0-0 ||| 28 374827 +del ||| of 50 ||| 0.00568182 0.130625 2.6679e-06 4.1298e-06 2.718 ||| 0-0 ||| 176 374827 +del ||| of Agenda ||| 0.00330033 0.130625 2.6679e-06 1.38643e-06 2.718 ||| 0-0 ||| 303 374827 +del ||| of Albania 's ||| 0.5 0.150218 2.6679e-06 9.83781e-08 2.718 ||| 0-0 0-2 ||| 2 374827 +del ||| of Amendment ||| 0.00111732 0.130625 2.6679e-06 8.0531e-06 2.718 ||| 0-0 ||| 895 374827 +del ||| of America 's ||| 0.25 0.169811 2.6679e-06 6.05077e-08 2.718 ||| 0-2 ||| 4 374827 +del ||| of America ||| 0.00138313 0.130625 2.6679e-06 8.1711e-06 2.718 ||| 0-0 ||| 723 374827 +del ||| of Appeal ||| 0.0222222 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-0 ||| 45 374827 +del ||| of Article 12 , the second paragraph ||| 0.5 0.121457 2.6679e-06 8.04294e-20 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of Article 12 , the second ||| 1 0.121457 2.6679e-06 5.09047e-15 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of Article 12 , the ||| 0.5 0.121457 2.6679e-06 7.81946e-11 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of Article 12 , ||| 0.125 0.121457 2.6679e-06 1.2737e-09 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of Article 12 ||| 0.0454545 0.121457 2.6679e-06 1.06805e-08 2.718 ||| 0-0 0-1 ||| 22 374827 +del ||| of Article ||| 0.00237906 0.121457 8.00369e-06 0.000762892 2.718 ||| 0-0 0-1 ||| 1261 374827 +del ||| of Austria ||| 0.00458716 0.130625 2.6679e-06 3.06785e-06 2.718 ||| 0-0 ||| 218 374827 +del ||| of Biscay - ||| 1 0.130625 2.6679e-06 4.45086e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of Biscay ||| 0.0153846 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 65 374827 +del ||| of Brussels ||| 0.00456621 0.130625 2.6679e-06 3.30384e-06 2.718 ||| 0-0 ||| 219 374827 +del ||| of Cards is up to them ||| 0.5 0.130625 2.6679e-06 5.2608e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| of Cards is up to ||| 0.5 0.130625 2.6679e-06 1.96123e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| of Cards is up ||| 0.5 0.130625 2.6679e-06 2.20715e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| of Cards is ||| 0.5 0.130625 2.6679e-06 6.47162e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| of Cards ||| 0.5 0.130625 2.6679e-06 2.0649e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| of China raises the question of the ||| 1 0.10196 2.6679e-06 7.51428e-17 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| of Commission ||| 0.0151515 0.130625 2.6679e-06 0.000172301 2.718 ||| 0-0 ||| 66 374827 +del ||| of Council ||| 0.0173913 0.130625 5.33579e-06 0.000102006 2.718 ||| 0-0 ||| 115 374827 +del ||| of Cuba ||| 0.00704225 0.130625 2.6679e-06 1.17994e-06 2.718 ||| 0-0 ||| 142 374827 +del ||| of Côte d ||| 0.0192308 0.130625 2.6679e-06 5.60472e-12 2.718 ||| 0-0 ||| 52 374827 +del ||| of Côte ||| 0.0196078 0.130625 2.6679e-06 7.37464e-07 2.718 ||| 0-0 ||| 51 374827 +del ||| of Denmark 's ||| 0.333333 0.150218 2.6679e-06 9.3637e-08 2.718 ||| 0-0 0-2 ||| 3 374827 +del ||| of EMU ||| 0.00245098 0.130625 2.6679e-06 2.53688e-06 2.718 ||| 0-0 ||| 408 374827 +del ||| of EU farming and ||| 1 0.130625 2.6679e-06 2.70583e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of EU farming ||| 1 0.130625 2.6679e-06 2.16019e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of EU policy ||| 0.00833333 0.130625 2.6679e-06 5.7464e-08 2.718 ||| 0-0 ||| 120 374827 +del ||| of EU ||| 0.00670391 0.130625 1.60074e-05 0.000145959 2.718 ||| 0-0 ||| 895 374827 +del ||| of EUR 1 ||| 0.0555556 0.130625 2.6679e-06 5.0246e-09 2.718 ||| 0-0 ||| 18 374827 +del ||| of EUR ||| 0.00204499 0.130625 2.6679e-06 7.88791e-05 2.718 ||| 0-0 ||| 489 374827 +del ||| of East ||| 0.0416667 0.130625 2.6679e-06 8.82007e-06 2.718 ||| 0-0 ||| 24 374827 +del ||| of Eastern and Central Europe ||| 0.0384615 0.130625 2.6679e-06 3.58561e-16 2.718 ||| 0-0 ||| 26 374827 +del ||| of Eastern and Central ||| 0.2 0.130625 2.6679e-06 7.08619e-13 2.718 ||| 0-0 ||| 5 374827 +del ||| of Eastern and ||| 0.2 0.130625 2.6679e-06 3.17766e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| of Eastern ||| 0.0222222 0.130625 2.6679e-06 2.53688e-06 2.718 ||| 0-0 ||| 45 374827 +del ||| of Employment of ||| 0.0625 0.130625 2.6679e-06 1.66781e-07 2.718 ||| 0-2 ||| 16 374827 +del ||| of England ||| 0.003861 0.130625 2.6679e-06 7.37464e-07 2.718 ||| 0-0 ||| 259 374827 +del ||| of Europe 's ||| 0.025641 0.130625 8.00369e-06 2.84256e-07 2.718 ||| 0-0 ||| 117 374827 +del ||| of Europe for ||| 0.0138889 0.130625 2.6679e-06 1.14719e-06 2.718 ||| 0-0 ||| 72 374827 +del ||| of Europe will not come along with ||| 1 0.130625 2.6679e-06 4.17799e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| of Europe will not come along ||| 1 0.130625 2.6679e-06 6.53372e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| of Europe will not come ||| 1 0.130625 2.6679e-06 3.74425e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of Europe will not ||| 0.111111 0.130625 2.6679e-06 4.40863e-09 2.718 ||| 0-0 ||| 9 374827 +del ||| of Europe will ||| 0.0172414 0.130625 2.6679e-06 1.2913e-06 2.718 ||| 0-0 ||| 58 374827 +del ||| of Europe ||| 0.000719217 0.130625 2.6679e-05 0.000149263 2.718 ||| 0-0 ||| 13904 374827 +del ||| of European agriculture model do we want ||| 1 0.130625 2.6679e-06 9.97028e-21 2.718 ||| 0-0 ||| 1 374827 +del ||| of European agriculture model do we ||| 1 0.130625 2.6679e-06 2.13268e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| of European agriculture model do ||| 1 0.130625 2.6679e-06 1.87863e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| of European agriculture model ||| 1 0.130625 2.6679e-06 5.46861e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of European agriculture ||| 0.00729927 0.130625 2.6679e-06 1.42042e-08 2.718 ||| 0-0 ||| 137 374827 +del ||| of European countries ||| 0.00632911 0.130625 2.6679e-06 3.74537e-07 2.718 ||| 0-0 ||| 158 374827 +del ||| of European ||| 0.0192953 0.0687205 6.13616e-05 0.000905841 2.718 ||| 0-0 0-1 ||| 1192 374827 +del ||| of Gross Domestic Product ( ||| 1 0.130625 2.6679e-06 1.75242e-22 2.718 ||| 0-0 ||| 1 374827 +del ||| of Gross Domestic Product ||| 0.125 0.130625 2.6679e-06 1.81711e-19 2.718 ||| 0-0 ||| 8 374827 +del ||| of Gross Domestic ||| 0.166667 0.130625 2.6679e-06 1.29794e-13 2.718 ||| 0-0 ||| 6 374827 +del ||| of Gross ||| 0.166667 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-0 ||| 6 374827 +del ||| of Human Rights ||| 0.00107991 0.130625 2.6679e-06 9.89287e-10 2.718 ||| 0-0 ||| 926 374827 +del ||| of Human ||| 0.0294118 0.130625 2.6679e-06 1.20059e-05 2.718 ||| 0-0 ||| 34 374827 +del ||| of Ireland ||| 0.00119617 0.130625 2.6679e-06 6.69617e-06 2.718 ||| 0-0 ||| 836 374827 +del ||| of Islam ||| 0.00990099 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-0 ||| 101 374827 +del ||| of Israel ||| 0.00125156 0.130625 2.6679e-06 7.02065e-06 2.718 ||| 0-0 ||| 799 374827 +del ||| of Jean ||| 0.0444444 0.130625 5.33579e-06 5.30974e-07 2.718 ||| 0-0 ||| 45 374827 +del ||| of Justice had been ||| 0.5 0.130625 2.6679e-06 5.33876e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| of Justice had ||| 0.0714286 0.130625 2.6679e-06 1.59882e-08 2.718 ||| 0-0 ||| 14 374827 +del ||| of Justice ||| 0.000786163 0.130625 8.00369e-06 1.59292e-05 2.718 ||| 0-0 ||| 3816 374827 +del ||| of Lampedusa : about the ||| 1 0.10196 2.6679e-06 5.36823e-14 2.718 ||| 0-0 0-4 ||| 1 374827 +del ||| of Lifelong Learning ||| 0.125 0.130625 2.6679e-06 1.53982e-12 2.718 ||| 0-0 ||| 8 374827 +del ||| of Lifelong ||| 0.166667 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-0 ||| 6 374827 +del ||| of Marine ||| 1 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of Member States ||| 0.000342231 0.130625 2.6679e-06 7.25373e-08 2.718 ||| 0-0 ||| 2922 374827 +del ||| of Member ||| 0.00763359 0.130625 2.6679e-06 0.000152006 2.718 ||| 0-0 ||| 131 374827 +del ||| of Members of the ||| 0.00719424 0.0653294 2.6679e-06 1.27987e-09 2.718 ||| 0-0 0-1 ||| 139 374827 +del ||| of Members of ||| 0.00438596 0.0653294 2.6679e-06 2.08476e-08 2.718 ||| 0-0 0-1 ||| 228 374827 +del ||| of Members ||| 0.00180343 0.130625 5.33579e-06 4.35104e-05 2.718 ||| 0-0 ||| 1109 374827 +del ||| of Ministers ||| 0.000428266 0.130625 2.6679e-06 6.90266e-06 2.718 ||| 0-0 ||| 2335 374827 +del ||| of Mount ||| 0.333333 0.163139 2.6679e-06 3.48083e-06 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of Mr Blokland 's ||| 1 0.150218 2.6679e-06 3.095e-12 2.718 ||| 0-0 0-3 ||| 1 374827 +del ||| of Mr Fatuzzo ||| 0.142857 0.130625 2.6679e-06 4.81416e-10 2.718 ||| 0-0 ||| 7 374827 +del ||| of Mr and ||| 0.25 0.130625 2.6679e-06 2.41207e-06 2.718 ||| 0-0 ||| 4 374827 +del ||| of Mr ||| 0.00137174 0.130625 8.00369e-06 0.000192567 2.718 ||| 0-0 ||| 2187 374827 +del ||| of N ||| 0.2 0.130625 2.6679e-06 2.0649e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| of Noble Peace ||| 0.5 0.0023474 2.6679e-06 5.65386e-14 2.718 ||| 0-2 ||| 2 374827 +del ||| of North ||| 0.0120482 0.223656 2.6679e-06 0.000619145 2.718 ||| 0-0 0-1 ||| 83 374827 +del ||| of Objective ||| 0.0166667 0.157425 2.6679e-06 0.000137552 2.718 ||| 0-0 0-1 ||| 60 374827 +del ||| of Pakistan 's ||| 0.5 0.169811 2.6679e-06 1.26695e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| of Parliament 's Rules of ||| 0.5 0.130625 5.33579e-06 6.744e-12 2.718 ||| 0-0 0-4 ||| 4 374827 +del ||| of Parliament 's ||| 0.0357143 0.150218 1.60074e-05 6.8035e-06 2.718 ||| 0-0 0-2 ||| 168 374827 +del ||| of Parliament and ||| 0.00136986 0.0743883 2.6679e-06 1.69617e-05 2.718 ||| 0-0 0-1 ||| 730 374827 +del ||| of Parliament have ||| 0.0294118 0.130625 2.6679e-06 2.02505e-06 2.718 ||| 0-0 ||| 34 374827 +del ||| of Parliament ||| 0.00134745 0.130625 1.86753e-05 0.000169322 2.718 ||| 0-0 ||| 5195 374827 +del ||| of Procedure - should be strengthened , ||| 1 0.130625 2.6679e-06 7.80596e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| of Procedure - should be strengthened ||| 1 0.130625 2.6679e-06 6.54562e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| of Procedure - should be ||| 1 0.130625 2.6679e-06 5.69184e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of Procedure - should ||| 1 0.130625 2.6679e-06 3.14069e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of Procedure - ||| 0.25 0.130625 2.6679e-06 7.08799e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| of Procedure of the ||| 0.142857 0.130625 2.6679e-06 6.27136e-08 2.718 ||| 0-0 ||| 7 374827 +del ||| of Procedure of ||| 0.125 0.130625 2.6679e-06 1.02153e-06 2.718 ||| 0-0 ||| 8 374827 +del ||| of Procedure ||| 0.0115385 0.130625 2.40111e-05 1.87906e-05 2.718 ||| 0-0 ||| 780 374827 +del ||| of Scotland 's ||| 1 0.130625 2.6679e-06 2.64032e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of Scotland ||| 0.00505051 0.130625 2.6679e-06 1.38643e-06 2.718 ||| 0-0 ||| 198 374827 +del ||| of Socialists and Democrats in the ||| 0.00862069 0.0183279 5.33579e-06 1.99302e-15 2.718 ||| 0-4 ||| 232 374827 +del ||| of Socialists and Democrats in ||| 0.00869565 0.0183279 5.33579e-06 3.24639e-14 2.718 ||| 0-4 ||| 230 374827 +del ||| of South ||| 0.047619 0.160046 8.00369e-06 0.000363806 2.718 ||| 0-0 0-1 ||| 63 374827 +del ||| of State , ||| 0.00943396 0.130625 2.6679e-06 4.22844e-06 2.718 ||| 0-0 ||| 106 374827 +del ||| of State and Government in the ||| 0.2 0.0740824 2.6679e-06 2.00497e-13 2.718 ||| 0-0 0-4 0-5 ||| 5 374827 +del ||| of State ||| 0.000441501 0.130625 2.6679e-06 3.54573e-05 2.718 ||| 0-0 ||| 2265 374827 +del ||| of Syria 's ||| 1 0.130625 2.6679e-06 1.62913e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of Syria ||| 0.0185185 0.130625 2.6679e-06 8.55458e-07 2.718 ||| 0-0 ||| 54 374827 +del ||| of Thursday , ||| 0.0512821 0.017774 5.33579e-06 3.57871e-07 2.718 ||| 0-1 ||| 39 374827 +del ||| of Thursday ||| 0.0326087 0.017774 8.00369e-06 3.00089e-06 2.718 ||| 0-1 ||| 92 374827 +del ||| of Total ||| 0.333333 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| of Tuesday ||| 0.1 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-0 ||| 10 374827 +del ||| of US ||| 0.03125 0.130625 2.6679e-06 1.26254e-05 2.718 ||| 0-0 ||| 32 374827 +del ||| of Wathelet ||| 1 0.0891219 2.6679e-06 1.9469e-06 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of a European ||| 0.0601504 0.130625 2.13432e-05 4.37231e-05 2.718 ||| 0-0 ||| 133 374827 +del ||| of a State ||| 0.025 0.130625 2.6679e-06 1.57167e-06 2.718 ||| 0-0 ||| 40 374827 +del ||| of a basic ||| 1 0.130625 2.6679e-06 7.06075e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of a child ||| 0.0163934 0.130625 2.6679e-06 4.32798e-07 2.718 ||| 0-0 ||| 61 374827 +del ||| of a clash ||| 0.0833333 0.130625 2.6679e-06 6.14547e-08 2.718 ||| 0-0 ||| 12 374827 +del ||| of a commodity ||| 0.333333 0.130625 2.6679e-06 8.49905e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| of a desire ||| 0.037037 0.130625 2.6679e-06 6.11932e-07 2.718 ||| 0-0 ||| 27 374827 +del ||| of a driving ||| 0.333333 0.130625 2.6679e-06 4.32798e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| of a fair ||| 0.0909091 0.130625 2.6679e-06 6.77309e-07 2.718 ||| 0-0 ||| 11 374827 +del ||| of a free ||| 0.030303 0.130625 2.6679e-06 1.5246e-06 2.718 ||| 0-0 ||| 33 374827 +del ||| of a further ||| 0.0166667 0.130625 2.6679e-06 6.31937e-06 2.718 ||| 0-0 ||| 60 374827 +del ||| of a genuine ||| 0.005 0.130625 2.6679e-06 4.41951e-07 2.718 ||| 0-0 ||| 200 374827 +del ||| of a given ||| 0.0344828 0.130625 2.6679e-06 8.97369e-06 2.718 ||| 0-0 ||| 29 374827 +del ||| of a great deal more ||| 0.5 0.130625 2.6679e-06 4.98275e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| of a great deal ||| 0.0277778 0.130625 2.6679e-06 2.18187e-09 2.718 ||| 0-0 ||| 36 374827 +del ||| of a great ||| 0.00787402 0.130625 2.6679e-06 5.13866e-06 2.718 ||| 0-0 ||| 127 374827 +del ||| of a lesser ||| 0.333333 0.130625 2.6679e-06 4.70717e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| of a majority ||| 0.0188679 0.130625 2.6679e-06 5.26941e-07 2.718 ||| 0-0 ||| 53 374827 +del ||| of a new ||| 0.000716846 0.130625 2.6679e-06 7.81521e-06 2.718 ||| 0-0 ||| 1395 374827 +del ||| of a once ||| 1 0.130625 2.6679e-06 5.35048e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| of a particular ||| 0.0175439 0.130625 2.6679e-06 8.04664e-06 2.718 ||| 0-0 ||| 57 374827 +del ||| of a per ||| 0.25 0.130625 2.6679e-06 5.79243e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| of a postponement , ||| 0.5 0.130625 2.6679e-06 5.61352e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| of a postponement ||| 0.333333 0.130625 2.6679e-06 4.70717e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| of a proper ||| 0.0454545 0.130625 2.6679e-06 1.15718e-06 2.718 ||| 0-0 ||| 22 374827 +del ||| of a proposal ||| 0.00909091 0.130625 2.6679e-06 2.61117e-06 2.718 ||| 0-0 ||| 110 374827 +del ||| of a realistic ||| 0.5 0.130625 2.6679e-06 7.58377e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| of a request ||| 0.0416667 0.130625 2.6679e-06 1.00289e-06 2.718 ||| 0-0 ||| 24 374827 +del ||| of a season ||| 0.25 0.130625 2.6679e-06 2.8766e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| of a society based ||| 0.166667 0.130625 2.6679e-06 1.77609e-10 2.718 ||| 0-0 ||| 6 374827 +del ||| of a society ||| 0.010989 0.130625 2.6679e-06 7.5707e-07 2.718 ||| 0-0 ||| 91 374827 +del ||| of a special ||| 0.0555556 0.130625 2.6679e-06 1.11926e-06 2.718 ||| 0-0 ||| 18 374827 +del ||| of a stable system of ||| 0.5 0.130625 2.6679e-06 2.63675e-12 2.718 ||| 0-4 ||| 2 374827 +del ||| of a strong ||| 0.027027 0.130625 2.6679e-06 1.11011e-06 2.718 ||| 0-0 ||| 37 374827 +del ||| of a sufficiently high standard ||| 1 0.130625 2.6679e-06 1.71941e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| of a sufficiently high ||| 1 0.130625 2.6679e-06 3.65055e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of a sufficiently ||| 0.333333 0.130625 2.6679e-06 2.44511e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| of a system based on the ||| 1 0.0726622 2.6679e-06 2.91418e-12 2.718 ||| 0-0 0-4 0-5 ||| 1 374827 +del ||| of a treaty ||| 0.0277778 0.130625 2.6679e-06 3.43885e-07 2.718 ||| 0-0 ||| 36 374827 +del ||| of a typhoon ||| 0.25 0.130625 2.6679e-06 1.4383e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| of a ||| 0.0224164 0.130625 0.00255318 0.0130755 2.718 ||| 0-0 ||| 42692 374827 +del ||| of abortion ||| 0.0116279 0.130625 2.6679e-06 7.37464e-07 2.718 ||| 0-0 ||| 86 374827 +del ||| of abortive European ||| 0.333333 0.130625 2.6679e-06 3.94561e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| of abortive ||| 0.25 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| of about ||| 0.028169 0.0704082 1.06716e-05 0.000414189 2.718 ||| 0-0 0-1 ||| 142 374827 +del ||| of absence ||| 0.0909091 0.130625 2.6679e-06 7.64012e-06 2.718 ||| 0-0 ||| 11 374827 +del ||| of access to ||| 0.00149701 0.0693623 2.6679e-06 5.98941e-06 2.718 ||| 0-0 0-1 ||| 668 374827 +del ||| of access ||| 0.00107643 0.0693623 2.6679e-06 6.74042e-05 2.718 ||| 0-0 0-1 ||| 929 374827 +del ||| of achieving a ||| 0.00719424 0.130625 2.6679e-06 8.65596e-07 2.718 ||| 0-0 ||| 139 374827 +del ||| of achieving the ||| 0.00657895 0.10196 2.6679e-06 6.7824e-06 2.718 ||| 0-0 0-2 ||| 152 374827 +del ||| of achieving ||| 0.00332594 0.130625 8.00369e-06 1.9528e-05 2.718 ||| 0-0 ||| 902 374827 +del ||| of acting ||| 0.00694444 0.130625 2.6679e-06 1.74041e-05 2.718 ||| 0-0 ||| 144 374827 +del ||| of action ||| 0.000543774 0.130625 2.6679e-06 8.91741e-05 2.718 ||| 0-0 ||| 1839 374827 +del ||| of activities of the ||| 0.0833333 0.10196 2.6679e-06 4.42796e-07 2.718 ||| 0-2 0-3 ||| 12 374827 +del ||| of actually ||| 0.0344828 0.130625 2.6679e-06 0.00012177 2.718 ||| 0-0 ||| 29 374827 +del ||| of additional ||| 0.00757576 0.130625 2.6679e-06 1.56047e-05 2.718 ||| 0-0 ||| 132 374827 +del ||| of addressing ||| 0.00537634 0.130625 2.6679e-06 5.30974e-06 2.718 ||| 0-0 ||| 186 374827 +del ||| of adequate ||| 0.0333333 0.130625 2.6679e-06 7.31564e-06 2.718 ||| 0-0 ||| 30 374827 +del ||| of adopting the ||| 0.0105263 0.130625 2.6679e-06 8.85564e-07 2.718 ||| 0-0 ||| 95 374827 +del ||| of adopting ||| 0.0025 0.130625 2.6679e-06 1.44248e-05 2.718 ||| 0-0 ||| 400 374827 +del ||| of affairs in connection with the ||| 1 0.0732944 2.6679e-06 4.82707e-14 2.718 ||| 0-5 ||| 1 374827 +del ||| of affairs in ||| 0.0243902 0.0183279 2.6679e-06 1.79439e-07 2.718 ||| 0-2 ||| 41 374827 +del ||| of affairs ||| 0.0105042 0.130625 1.33395e-05 3.61062e-05 2.718 ||| 0-0 ||| 476 374827 +del ||| of affection ||| 0.1 0.130625 2.6679e-06 4.1298e-07 2.718 ||| 0-0 ||| 10 374827 +del ||| of agreements made available to ||| 1 0.130625 2.6679e-06 6.48005e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of agreements made available ||| 1 0.130625 2.6679e-06 7.29257e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of agreements made ||| 0.25 0.130625 2.6679e-06 2.29254e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| of agreements ||| 0.00278552 0.130625 2.6679e-06 1.0944e-05 2.718 ||| 0-0 ||| 359 374827 +del ||| of agricultural markets and specific ||| 1 0.130625 2.6679e-06 6.10281e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| of agricultural markets and ||| 0.0625 0.130625 2.6679e-06 4.03892e-12 2.718 ||| 0-0 ||| 16 374827 +del ||| of agricultural markets ||| 0.02 0.130625 2.6679e-06 3.22446e-10 2.718 ||| 0-0 ||| 50 374827 +del ||| of agricultural ||| 0.00819672 0.130625 2.6679e-06 1.14749e-05 2.718 ||| 0-0 ||| 122 374827 +del ||| of aid ||| 0.000745156 0.130625 2.6679e-06 3.85251e-05 2.718 ||| 0-0 ||| 1342 374827 +del ||| of air traffic are tasks ||| 1 0.130625 2.6679e-06 1.13461e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| of air traffic are ||| 0.333333 0.130625 2.6679e-06 7.0038e-12 2.718 ||| 0-0 ||| 3 374827 +del ||| of air traffic ||| 0.0123457 0.130625 2.6679e-06 4.61605e-10 2.718 ||| 0-0 ||| 81 374827 +del ||| of air ||| 0.0333333 0.130625 8.00369e-06 1.62537e-05 2.718 ||| 0-0 ||| 90 374827 +del ||| of airline companies ||| 0.0714286 0.130625 2.6679e-06 1.40814e-10 2.718 ||| 0-0 ||| 14 374827 +del ||| of airline ||| 0.142857 0.130625 2.6679e-06 2.0059e-06 2.718 ||| 0-0 ||| 7 374827 +del ||| of alcohol ||| 0.00363636 0.10146 2.6679e-06 6.46903e-05 2.718 ||| 0-0 0-1 ||| 275 374827 +del ||| of all , all ||| 0.25 0.130625 2.6679e-06 7.85513e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| of all , ||| 0.00575264 0.130625 1.60074e-05 0.000166232 2.718 ||| 0-0 ||| 1043 374827 +del ||| of all about the ||| 0.2 0.130625 2.6679e-06 1.21029e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| of all about ||| 0.0833333 0.130625 2.6679e-06 1.97143e-06 2.718 ||| 0-0 ||| 12 374827 +del ||| of all global ||| 1 0.130625 2.6679e-06 6.37023e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of all in the ||| 0.0666667 0.0458111 2.6679e-06 2.40601e-06 2.718 ||| 0-2 0-3 ||| 15 374827 +del ||| of all like ||| 0.0070922 0.130625 2.6679e-06 2.47547e-06 2.718 ||| 0-0 ||| 141 374827 +del ||| of all people in the ||| 0.333333 0.130625 2.6679e-06 1.61226e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| of all people in ||| 0.25 0.130625 2.6679e-06 2.62619e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| of all people ||| 0.0119048 0.130625 2.6679e-06 1.22693e-06 2.718 ||| 0-0 ||| 84 374827 +del ||| of all the ||| 0.00406354 0.10196 2.93469e-05 0.000484132 2.718 ||| 0-0 0-2 ||| 2707 374827 +del ||| of all there ||| 0.0714286 0.130625 2.6679e-06 4.2728e-06 2.718 ||| 0-0 ||| 14 374827 +del ||| of all this ||| 0.00823045 0.130625 5.33579e-06 9.0067e-06 2.718 ||| 0-0 ||| 243 374827 +del ||| of all ||| 0.00508616 0.130625 0.000178749 0.00139392 2.718 ||| 0-0 ||| 13173 374827 +del ||| of alleged ||| 0.0232558 0.130625 2.6679e-06 4.77877e-06 2.718 ||| 0-0 ||| 43 374827 +del ||| of allowing the ||| 0.025 0.10196 2.6679e-06 5.16364e-06 2.718 ||| 0-0 0-2 ||| 40 374827 +del ||| of allowing ||| 0.00483092 0.130625 2.6679e-06 1.48673e-05 2.718 ||| 0-0 ||| 207 374827 +del ||| of alternative ||| 0.0196078 0.130625 2.6679e-06 7.22714e-06 2.718 ||| 0-0 ||| 51 374827 +del ||| of amendments to ||| 0.00662252 0.130625 2.6679e-06 1.99997e-06 2.718 ||| 0-0 ||| 151 374827 +del ||| of amendments ||| 0.000676133 0.130625 2.6679e-06 2.25074e-05 2.718 ||| 0-0 ||| 1479 374827 +del ||| of an appointed ||| 1 0.130625 2.6679e-06 1.46846e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of an estimated ||| 0.0909091 0.130625 2.6679e-06 1.88802e-08 2.718 ||| 0-0 ||| 11 374827 +del ||| of an invitation to ||| 0.142857 0.130625 2.6679e-06 7.57276e-10 2.718 ||| 0-0 ||| 7 374827 +del ||| of an invitation ||| 0.125 0.130625 2.6679e-06 8.52229e-09 2.718 ||| 0-0 ||| 8 374827 +del ||| of an ||| 0.0191778 0.130625 0.000426864 0.00131112 2.718 ||| 0-0 ||| 8343 374827 +del ||| of analysing the ||| 0.0833333 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-2 ||| 12 374827 +del ||| of anarchic ||| 1 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of and in ||| 0.2 0.0744764 2.6679e-06 9.96397e-05 2.718 ||| 0-0 0-2 ||| 5 374827 +del ||| of and with ||| 0.5 0.130625 2.6679e-06 2.36274e-05 2.718 ||| 0-0 ||| 2 374827 +del ||| of and ||| 0.002079 0.130625 2.6679e-06 0.00369496 2.718 ||| 0-0 ||| 481 374827 +del ||| of animals ||| 0.000934579 0.130625 2.6679e-06 1.20059e-05 2.718 ||| 0-0 ||| 1070 374827 +del ||| of another ||| 0.00199203 0.130625 2.6679e-06 7.1121e-05 2.718 ||| 0-0 ||| 502 374827 +del ||| of any heritage ||| 1 0.130625 2.6679e-06 4.19312e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of any of ||| 0.0178571 0.130625 2.6679e-06 2.42505e-05 2.718 ||| 0-0 ||| 56 374827 +del ||| of any other ||| 0.010989 0.130625 2.6679e-06 5.77893e-07 2.718 ||| 0-0 ||| 91 374827 +del ||| of any part of the ||| 0.5 0.10196 2.6679e-06 1.00414e-08 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| of any such policy from the ||| 1 0.0983502 2.6679e-06 2.73503e-12 2.718 ||| 0-0 0-4 0-5 ||| 1 374827 +del ||| of any type ||| 0.0555556 0.130625 2.6679e-06 5.2191e-08 2.718 ||| 0-0 ||| 18 374827 +del ||| of any ||| 0.00716146 0.130625 5.86937e-05 0.000446077 2.718 ||| 0-0 ||| 3072 374827 +del ||| of appeal is also the ||| 1 0.0732944 2.6679e-06 9.02252e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| of application of the ||| 0.00862069 0.111515 2.6679e-06 1.83751e-06 2.718 ||| 0-0 0-2 0-3 ||| 116 374827 +del ||| of application ||| 0.00461894 0.130625 5.33579e-06 1.79351e-05 2.718 ||| 0-0 ||| 433 374827 +del ||| of approaching ||| 0.030303 0.130625 2.6679e-06 1.17994e-06 2.718 ||| 0-0 ||| 33 374827 +del ||| of appropriate ||| 0.0238095 0.130625 2.6679e-06 3.9705e-05 2.718 ||| 0-0 ||| 42 374827 +del ||| of around ||| 0.0254777 0.0705281 2.13432e-05 4.30089e-05 2.718 ||| 0-0 0-1 ||| 314 374827 +del ||| of as many ||| 0.0227273 0.130625 2.6679e-06 1.03338e-06 2.718 ||| 0-0 ||| 44 374827 +del ||| of as much as ||| 0.0769231 0.130625 2.6679e-06 3.08304e-08 2.718 ||| 0-0 ||| 13 374827 +del ||| of as much ||| 0.153846 0.130625 5.33579e-06 3.02129e-06 2.718 ||| 0-0 ||| 13 374827 +del ||| of as ||| 0.045977 0.130625 1.06716e-05 0.00301015 2.718 ||| 0-0 ||| 87 374827 +del ||| of aspects , ||| 0.0714286 0.130625 2.6679e-06 2.48008e-06 2.718 ||| 0-0 ||| 14 374827 +del ||| of aspects ||| 0.00833333 0.130625 2.6679e-06 2.07965e-05 2.718 ||| 0-0 ||| 120 374827 +del ||| of asylum seekers ||| 0.00383142 0.130625 2.6679e-06 1.9941e-11 2.718 ||| 0-0 ||| 261 374827 +del ||| of asylum ||| 0.0017762 0.130625 2.6679e-06 4.98525e-06 2.718 ||| 0-0 ||| 563 374827 +del ||| of at least ||| 0.00766284 0.130625 5.33579e-06 3.03124e-07 2.718 ||| 0-0 ||| 261 374827 +del ||| of at ||| 0.00816326 0.130625 5.33579e-06 0.00123522 2.718 ||| 0-0 ||| 245 374827 +del ||| of attack ||| 0.037037 0.130625 5.33579e-06 8.70207e-06 2.718 ||| 0-0 ||| 54 374827 +del ||| of attention ||| 0.00328947 0.130625 2.6679e-06 7.70797e-05 2.718 ||| 0-0 ||| 304 374827 +del ||| of average ||| 0.181818 0.130625 5.33579e-06 7.31564e-06 2.718 ||| 0-0 ||| 11 374827 +del ||| of awareness among ||| 0.142857 0.130625 2.6679e-06 7.90278e-10 2.718 ||| 0-0 ||| 7 374827 +del ||| of awareness ||| 0.010101 0.130625 2.6679e-06 8.82007e-06 2.718 ||| 0-0 ||| 99 374827 +del ||| of being wrecked ||| 1 0.130625 2.6679e-06 1.17526e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of being ||| 0.00390407 0.130625 1.86753e-05 0.00083947 2.718 ||| 0-0 ||| 1793 374827 +del ||| of benchmarks in this ||| 1 0.130625 2.6679e-06 1.6319e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of benchmarks in ||| 0.5 0.130625 2.6679e-06 2.52561e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| of benchmarks ||| 0.0555556 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 18 374827 +del ||| of between ||| 0.06 0.0667281 2.40111e-05 6.0059e-05 2.718 ||| 0-0 0-1 ||| 150 374827 +del ||| of big brother ||| 0.5 0.130625 2.6679e-06 4.44602e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| of big ||| 0.0178571 0.130625 5.33579e-06 1.38938e-05 2.718 ||| 0-0 ||| 112 374827 +del ||| of biocides ||| 0.0625 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-0 ||| 16 374827 +del ||| of blame ||| 0.0384615 0.130625 2.6679e-06 7.02065e-06 2.718 ||| 0-0 ||| 26 374827 +del ||| of bluefin ||| 0.5 0.110767 2.6679e-06 1.08555e-05 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of both that ||| 1 0.130625 2.6679e-06 8.21977e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| of both the ||| 0.111359 0.10196 0.000133395 0.000169714 2.718 ||| 0-0 0-2 ||| 449 374827 +del ||| of both ||| 0.0251203 0.130625 0.000125391 0.000488643 2.718 ||| 0-0 ||| 1871 374827 +del ||| of breast ||| 0.0666667 0.130625 2.6679e-06 9.43954e-07 2.718 ||| 0-0 ||| 15 374827 +del ||| of bringing about ||| 0.0172414 0.130625 2.6679e-06 3.3501e-08 2.718 ||| 0-0 ||| 58 374827 +del ||| of bringing ||| 0.00273973 0.130625 2.6679e-06 2.36873e-05 2.718 ||| 0-0 ||| 365 374827 +del ||| of budgetary plenty ||| 1 0.130625 2.6679e-06 7.00886e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of budgetary ||| 0.0188679 0.130625 2.6679e-06 6.48968e-06 2.718 ||| 0-0 ||| 53 374827 +del ||| of building a ||| 0.0142857 0.130625 2.6679e-06 7.623e-07 2.718 ||| 0-0 ||| 70 374827 +del ||| of building the ||| 0.037037 0.0682455 2.6679e-06 5.43002e-07 2.718 ||| 0-0 0-1 0-2 ||| 27 374827 +del ||| of building ||| 0.002849 0.130625 2.6679e-06 1.71977e-05 2.718 ||| 0-0 ||| 351 374827 +del ||| of bull bar ||| 0.5 0.130625 2.6679e-06 2.13864e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| of bull ||| 1 0.130625 2.6679e-06 7.37464e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of bureaucracy ||| 0.00568182 0.130625 2.6679e-06 1.91741e-06 2.718 ||| 0-0 ||| 176 374827 +del ||| of business , ||| 0.00952381 0.130625 2.6679e-06 4.39378e-06 2.718 ||| 0-0 ||| 105 374827 +del ||| of business managers during the pilot project ||| 1 0.130625 2.6679e-06 7.67447e-26 2.718 ||| 0-0 ||| 1 374827 +del ||| of business managers during the pilot ||| 1 0.130625 2.6679e-06 1.254e-21 2.718 ||| 0-0 ||| 1 374827 +del ||| of business managers during the ||| 1 0.130625 2.6679e-06 2.508e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| of business managers during ||| 1 0.130625 2.6679e-06 4.08523e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| of business managers ||| 1 0.130625 2.6679e-06 4.05281e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of business ||| 0.00601685 0.130625 1.33395e-05 3.68437e-05 2.718 ||| 0-0 ||| 831 374827 +del ||| of by the ||| 0.153846 0.0833591 5.33579e-06 0.00165665 2.718 ||| 0-0 0-1 0-2 ||| 13 374827 +del ||| of by ||| 0.0204082 0.0883915 2.6679e-06 0.00476986 2.718 ||| 0-0 0-1 ||| 49 374827 +del ||| of call ||| 0.0769231 0.130625 2.6679e-06 6.54868e-05 2.718 ||| 0-0 ||| 13 374827 +del ||| of capital ||| 0.00131579 0.130625 2.6679e-06 7.64012e-06 2.718 ||| 0-0 ||| 760 374827 +del ||| of capping ||| 0.125 0.130625 2.6679e-06 2.0649e-07 2.718 ||| 0-0 ||| 8 374827 +del ||| of carrying out ||| 0.0075188 0.130625 2.6679e-06 6.83597e-08 2.718 ||| 0-0 ||| 133 374827 +del ||| of carrying ||| 0.00980392 0.130625 2.6679e-06 1.78466e-05 2.718 ||| 0-0 ||| 102 374827 +del ||| of cases , the ||| 0.05 0.130625 2.6679e-06 2.76653e-07 2.718 ||| 0-0 ||| 20 374827 +del ||| of cases , ||| 0.00819672 0.130625 2.6679e-06 4.50635e-06 2.718 ||| 0-0 ||| 122 374827 +del ||| of cases ||| 0.0030581 0.130625 5.33579e-06 3.77876e-05 2.718 ||| 0-0 ||| 654 374827 +del ||| of cash ||| 0.0188679 0.130625 2.6679e-06 1.59292e-06 2.718 ||| 0-0 ||| 53 374827 +del ||| of causing job ||| 1 0.130625 2.6679e-06 6.79632e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of causing ||| 0.0142857 0.130625 2.6679e-06 8.70207e-06 2.718 ||| 0-0 ||| 70 374827 +del ||| of central Europe ||| 0.0333333 0.130625 2.6679e-06 4.07487e-09 2.718 ||| 0-0 ||| 30 374827 +del ||| of central concern ||| 0.142857 0.130625 2.6679e-06 1.07509e-09 2.718 ||| 0-0 ||| 7 374827 +del ||| of central ||| 0.028169 0.130625 5.33579e-06 8.0531e-06 2.718 ||| 0-0 ||| 71 374827 +del ||| of certain ||| 0.000471921 0.130625 2.6679e-06 8.40709e-05 2.718 ||| 0-0 ||| 2119 374827 +del ||| of certainty ||| 0.0181818 0.130625 2.6679e-06 3.30384e-06 2.718 ||| 0-0 ||| 55 374827 +del ||| of change ||| 0.00280899 0.130625 2.6679e-06 3.59882e-05 2.718 ||| 0-0 ||| 356 374827 +del ||| of changing ||| 0.00448431 0.130625 2.6679e-06 4.0413e-06 2.718 ||| 0-0 ||| 223 374827 +del ||| of child ||| 0.0222222 0.130625 5.33579e-06 9.76402e-06 2.718 ||| 0-0 ||| 90 374827 +del ||| of cigarette ||| 0.0625 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-0 ||| 16 374827 +del ||| of civil procedure ||| 0.25 0.130625 2.6679e-06 7.878e-10 2.718 ||| 0-0 ||| 4 374827 +del ||| of civil ||| 0.0190476 0.130625 5.33579e-06 7.84661e-06 2.718 ||| 0-0 ||| 105 374827 +del ||| of clear ||| 0.0128205 0.130625 2.6679e-06 9.82007e-05 2.718 ||| 0-0 ||| 78 374827 +del ||| of climate ||| 0.0117647 0.130625 2.6679e-06 8.0531e-06 2.718 ||| 0-0 ||| 85 374827 +del ||| of closed areas are essential principles ||| 0.5 0.130625 2.6679e-06 2.15147e-19 2.718 ||| 0-0 ||| 2 374827 +del ||| of closed areas are essential ||| 0.5 0.130625 2.6679e-06 5.33864e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| of closed areas are ||| 0.5 0.130625 2.6679e-06 5.93182e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| of closed areas ||| 0.2 0.130625 2.6679e-06 3.90953e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| of closed ||| 0.2 0.130625 2.6679e-06 1.70797e-05 2.718 ||| 0-0 ||| 5 374827 +del ||| of coastal ||| 0.125 0.130625 2.6679e-06 1.71092e-06 2.718 ||| 0-0 ||| 8 374827 +del ||| of collapse ||| 0.0123457 0.130625 2.6679e-06 3.06785e-06 2.718 ||| 0-0 ||| 81 374827 +del ||| of combating ||| 0.0014771 0.130625 2.6679e-06 1.47493e-06 2.718 ||| 0-0 ||| 677 374827 +del ||| of commercial ||| 0.0263158 0.130625 2.6679e-06 5.63422e-06 2.718 ||| 0-0 ||| 38 374827 +del ||| of commitments and payments ||| 0.125 0.130625 2.6679e-06 2.4216e-12 2.718 ||| 0-0 ||| 8 374827 +del ||| of commitments and ||| 0.0625 0.130625 2.6679e-06 7.31602e-08 2.718 ||| 0-0 ||| 16 374827 +del ||| of commitments ||| 0.00735294 0.130625 2.6679e-06 5.84071e-06 2.718 ||| 0-0 ||| 136 374827 +del ||| of committee ||| 0.0294118 0.0653472 2.6679e-06 3.83481e-07 2.718 ||| 0-0 0-1 ||| 34 374827 +del ||| of common interest ||| 0.00478469 0.130625 2.6679e-06 7.65231e-09 2.718 ||| 0-0 ||| 209 374827 +del ||| of common ||| 0.0192308 0.130625 8.00369e-06 6.81417e-05 2.718 ||| 0-0 ||| 156 374827 +del ||| of completely ||| 0.0714286 0.130625 2.6679e-06 3.00295e-05 2.718 ||| 0-0 ||| 14 374827 +del ||| of compliance with the rules ||| 0.142857 0.130625 2.6679e-06 3.09494e-13 2.718 ||| 0-0 ||| 7 374827 +del ||| of compliance with the ||| 0.0135135 0.130625 2.6679e-06 2.66346e-09 2.718 ||| 0-0 ||| 74 374827 +del ||| of compliance with ||| 0.00819672 0.130625 2.6679e-06 4.33845e-08 2.718 ||| 0-0 ||| 122 374827 +del ||| of compliance ||| 0.00990099 0.130625 2.6679e-06 6.78467e-06 2.718 ||| 0-0 ||| 101 374827 +del ||| of compromise ||| 0.004 0.130625 2.6679e-06 1.33628e-05 2.718 ||| 0-0 ||| 250 374827 +del ||| of concentration ||| 0.0142857 0.130625 2.6679e-06 1.71092e-06 2.718 ||| 0-0 ||| 70 374827 +del ||| of confidence ||| 0.00130719 0.130625 2.6679e-06 9.11505e-06 2.718 ||| 0-0 ||| 765 374827 +del ||| of conflict to a culture ||| 1 0.130625 2.6679e-06 9.59303e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of conflict to a ||| 0.5 0.130625 2.6679e-06 4.84497e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| of conflict to ||| 0.166667 0.130625 2.6679e-06 1.09304e-06 2.718 ||| 0-0 ||| 6 374827 +del ||| of conflict ||| 0.00456621 0.130625 5.33579e-06 1.23009e-05 2.718 ||| 0-0 ||| 438 374827 +del ||| of considerable ||| 0.00657895 0.130625 2.6679e-06 1.32743e-05 2.718 ||| 0-0 ||| 152 374827 +del ||| of consideration ||| 0.00813008 0.130625 2.6679e-06 3.18584e-05 2.718 ||| 0-0 ||| 123 374827 +del ||| of construction of ||| 0.125 0.130625 2.6679e-06 2.71018e-07 2.718 ||| 0-0 ||| 8 374827 +del ||| of construction ||| 0.027027 0.130625 2.6679e-06 4.98525e-06 2.718 ||| 0-0 ||| 37 374827 +del ||| of contract ||| 0.0103093 0.130625 2.6679e-06 4.66077e-06 2.718 ||| 0-0 ||| 97 374827 +del ||| of corresponding ||| 0.142857 0.130625 2.6679e-06 6.37169e-06 2.718 ||| 0-0 ||| 7 374827 +del ||| of costs covered by the ||| 1 0.130625 2.6679e-06 5.11929e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of costs covered by ||| 1 0.130625 2.6679e-06 8.33871e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of costs covered ||| 1 0.130625 2.6679e-06 1.5883e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of costs ||| 0.00414938 0.130625 2.6679e-06 2.21829e-05 2.718 ||| 0-0 ||| 241 374827 +del ||| of countries on the ||| 0.5 0.130625 2.6679e-06 4.6009e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| of countries on ||| 0.0714286 0.130625 2.6679e-06 7.49432e-07 2.718 ||| 0-0 ||| 14 374827 +del ||| of countries ||| 0.000614251 0.130625 2.6679e-06 0.000112006 2.718 ||| 0-0 ||| 1628 374827 +del ||| of country of ||| 0.03125 0.130625 2.6679e-06 3.13172e-05 2.718 ||| 0-0 0-2 ||| 32 374827 +del ||| of course , have to ||| 0.0454545 0.130625 2.6679e-06 4.71687e-08 2.718 ||| 0-0 ||| 22 374827 +del ||| of course , have ||| 0.00952381 0.130625 2.6679e-06 5.30831e-07 2.718 ||| 0-0 ||| 105 374827 +del ||| of course , the only group which ||| 1 0.130625 2.6679e-06 3.31845e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| of course , the only group ||| 1 0.130625 2.6679e-06 3.90654e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of course , the only ||| 0.142857 0.130625 2.6679e-06 3.03303e-09 2.718 ||| 0-0 ||| 7 374827 +del ||| of course , the ||| 0.000853242 0.130625 2.6679e-06 2.72485e-06 2.718 ||| 0-0 ||| 1172 374827 +del ||| of course , when ||| 0.0227273 0.130625 2.6679e-06 2.21879e-08 2.718 ||| 0-0 ||| 44 374827 +del ||| of course , ||| 0.00122959 0.130625 4.80222e-05 4.43846e-05 2.718 ||| 0-0 ||| 14639 374827 +del ||| of course not the ||| 0.333333 0.130625 2.6679e-06 7.80088e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| of course not ||| 0.00735294 0.130625 2.6679e-06 1.27067e-06 2.718 ||| 0-0 ||| 136 374827 +del ||| of course the ||| 0.00171527 0.0732944 2.6679e-06 2.38228e-05 2.718 ||| 0-2 ||| 583 374827 +del ||| of course ||| 0.00156934 0.130625 0.00011472 0.000372183 2.718 ||| 0-0 ||| 27400 374827 +del ||| of creating a ||| 0.00420168 0.130625 5.33579e-06 7.623e-07 2.718 ||| 0-0 ||| 476 374827 +del ||| of creating ||| 0.0015873 0.130625 5.33579e-06 1.71977e-05 2.718 ||| 0-0 ||| 1260 374827 +del ||| of credit ||| 0.00588235 0.130625 2.6679e-06 1.06195e-05 2.718 ||| 0-0 ||| 170 374827 +del ||| of criminal ||| 0.00952381 0.130625 2.6679e-06 1.23009e-05 2.718 ||| 0-0 ||| 105 374827 +del ||| of crisis ||| 0.00134048 0.130625 2.6679e-06 2.13275e-05 2.718 ||| 0-0 ||| 746 374827 +del ||| of cropping up ||| 1 0.130625 2.6679e-06 1.10665e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of cropping ||| 1 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of current ||| 0.012987 0.130625 5.33579e-06 4.86136e-05 2.718 ||| 0-0 ||| 154 374827 +del ||| of customs ||| 0.0178571 0.130625 2.6679e-06 2.97935e-06 2.718 ||| 0-0 ||| 56 374827 +del ||| of cuts ||| 0.0217391 0.130625 2.6679e-06 3.39233e-06 2.718 ||| 0-0 ||| 46 374827 +del ||| of cutting ||| 0.00934579 0.130625 2.6679e-06 4.36579e-06 2.718 ||| 0-0 ||| 107 374827 +del ||| of daily ||| 0.111111 0.130625 5.33579e-06 6.69617e-06 2.718 ||| 0-0 ||| 18 374827 +del ||| of dead ||| 0.0263158 0.130625 2.6679e-06 7.31564e-06 2.718 ||| 0-0 ||| 38 374827 +del ||| of dealing with the ||| 0.0253165 0.10196 5.33579e-06 6.76756e-08 2.718 ||| 0-0 0-3 ||| 79 374827 +del ||| of dealing with them ||| 0.0909091 0.130625 2.6679e-06 5.22674e-10 2.718 ||| 0-0 ||| 11 374827 +del ||| of dealing with ||| 0.00350877 0.130625 2.6679e-06 1.94853e-07 2.718 ||| 0-0 ||| 285 374827 +del ||| of dealing ||| 0.0314961 0.130625 1.06716e-05 3.0472e-05 2.718 ||| 0-0 ||| 127 374827 +del ||| of decision on the part ||| 1 0.130625 2.6679e-06 2.27237e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of decision on the ||| 0.25 0.130625 2.6679e-06 1.90603e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| of decision on ||| 0.1 0.130625 2.6679e-06 3.10471e-07 2.718 ||| 0-0 ||| 10 374827 +del ||| of decision ||| 0.00529101 0.130625 2.6679e-06 4.64012e-05 2.718 ||| 0-0 ||| 189 374827 +del ||| of defending the ||| 0.0217391 0.10196 2.6679e-06 5.53247e-07 2.718 ||| 0-0 0-2 ||| 46 374827 +del ||| of deforestation that ||| 0.333333 0.130625 2.6679e-06 1.98485e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| of deforestation ||| 0.0217391 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 46 374827 +del ||| of delays will include an obligation to ||| 1 0.130625 2.6679e-06 1.86023e-20 2.718 ||| 0-0 ||| 1 374827 +del ||| of delays will include an obligation ||| 1 0.130625 2.6679e-06 2.09349e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| of delays will include an ||| 1 0.130625 2.6679e-06 1.02121e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| of delays will include ||| 1 0.130625 2.6679e-06 2.2976e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of delays will ||| 1 0.130625 2.6679e-06 1.73535e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of delays ||| 0.0204082 0.130625 5.33579e-06 2.0059e-06 2.718 ||| 0-0 ||| 98 374827 +del ||| of democracy , it must ||| 0.5 0.130625 2.6679e-06 2.81369e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| of democracy , it ||| 0.333333 0.130625 2.6679e-06 1.82045e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| of democracy , ||| 0.00140647 0.130625 2.6679e-06 1.02369e-06 2.718 ||| 0-0 ||| 711 374827 +del ||| of democracy ||| 0.000344471 0.130625 2.6679e-06 8.58408e-06 2.718 ||| 0-0 ||| 2903 374827 +del ||| of democratic ||| 0.00793651 0.130625 2.6679e-06 8.82007e-06 2.718 ||| 0-0 ||| 126 374827 +del ||| of departure is a ||| 0.333333 0.130625 2.6679e-06 4.58976e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| of departure is ||| 0.0526316 0.130625 2.6679e-06 1.03546e-07 2.718 ||| 0-0 ||| 19 374827 +del ||| of departure ||| 0.00483092 0.130625 2.6679e-06 3.30384e-06 2.718 ||| 0-0 ||| 207 374827 +del ||| of dependence on ||| 0.0909091 0.0723461 2.6679e-06 1.15723e-08 2.718 ||| 0-0 0-2 ||| 11 374827 +del ||| of designations of ||| 0.0909091 0.130625 2.6679e-06 1.12256e-08 2.718 ||| 0-0 ||| 11 374827 +del ||| of designations ||| 0.0909091 0.130625 2.6679e-06 2.0649e-07 2.718 ||| 0-0 ||| 11 374827 +del ||| of desirable ||| 0.333333 0.130625 2.6679e-06 3.71682e-06 2.718 ||| 0-0 ||| 3 374827 +del ||| of destruction , ||| 0.1 0.130625 2.6679e-06 3.65855e-07 2.718 ||| 0-0 ||| 10 374827 +del ||| of destruction ||| 0.0153846 0.130625 2.6679e-06 3.06785e-06 2.718 ||| 0-0 ||| 65 374827 +del ||| of dialogue ||| 0.00190114 0.130625 2.6679e-06 1.15634e-05 2.718 ||| 0-0 ||| 526 374827 +del ||| of direct ||| 0.0121951 0.130625 2.6679e-06 1.45428e-05 2.718 ||| 0-0 ||| 82 374827 +del ||| of discouraging ||| 0.0909091 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-0 ||| 11 374827 +del ||| of displaced ||| 0.0625 0.130625 2.6679e-06 2.24189e-06 2.718 ||| 0-0 ||| 16 374827 +del ||| of disregard of the ||| 0.5 0.130625 2.6679e-06 9.5498e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| of disregard of ||| 0.5 0.130625 2.6679e-06 1.55555e-07 2.718 ||| 0-2 ||| 2 374827 +del ||| of distinguished ||| 0.2 0.130625 2.6679e-06 1.71092e-06 2.718 ||| 0-0 ||| 5 374827 +del ||| of division ||| 0.0169492 0.130625 2.6679e-06 2.65487e-06 2.718 ||| 0-0 ||| 59 374827 +del ||| of doing business on an ||| 1 0.130625 2.6679e-06 4.02236e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of doing business on ||| 1 0.130625 2.6679e-06 9.04979e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of doing business ||| 0.0322581 0.130625 2.6679e-06 1.35253e-08 2.718 ||| 0-0 ||| 31 374827 +del ||| of doing that ||| 0.0277778 0.130625 2.6679e-06 1.8216e-06 2.718 ||| 0-0 ||| 36 374827 +del ||| of doing things ||| 0.0163934 0.130625 2.6679e-06 4.45069e-08 2.718 ||| 0-0 ||| 61 374827 +del ||| of doing ||| 0.0149254 0.130625 1.33395e-05 0.000108289 2.718 ||| 0-0 ||| 335 374827 +del ||| of domestic regional ||| 1 0.130625 2.6679e-06 1.0118e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of domestic ||| 0.025641 0.130625 2.6679e-06 4.1298e-06 2.718 ||| 0-0 ||| 39 374827 +del ||| of drug use ||| 0.03125 0.130625 2.6679e-06 2.26607e-09 2.718 ||| 0-0 ||| 32 374827 +del ||| of drug ||| 0.0294118 0.130625 2.6679e-06 4.66077e-06 2.718 ||| 0-0 ||| 34 374827 +del ||| of drugs ||| 0.0045977 0.130625 5.33579e-06 8.0531e-06 2.718 ||| 0-0 ||| 435 374827 +del ||| of due ||| 0.2 0.0654548 2.6679e-06 1.15044e-06 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| of duty of ||| 0.5 0.130625 2.6679e-06 6.48273e-06 2.718 ||| 0-0 0-2 ||| 2 374827 +del ||| of duty-free ||| 0.0126582 0.130625 2.6679e-06 1.71092e-06 2.718 ||| 0-0 ||| 79 374827 +del ||| of each individual ||| 0.0105263 0.130625 2.6679e-06 1.17083e-08 2.718 ||| 0-0 ||| 95 374827 +del ||| of each ||| 0.00170843 0.130625 8.00369e-06 8.28024e-05 2.718 ||| 0-0 ||| 1756 374827 +del ||| of easily ||| 0.5 0.130625 2.6679e-06 1.18879e-05 2.718 ||| 0-0 ||| 2 374827 +del ||| of education and ||| 0.0021645 0.130625 2.6679e-06 1.2489e-07 2.718 ||| 0-0 ||| 462 374827 +del ||| of education ||| 0.000843882 0.130625 2.6679e-06 9.97051e-06 2.718 ||| 0-0 ||| 1185 374827 +del ||| of either the ||| 0.166667 0.10196 1.60074e-05 8.87039e-05 2.718 ||| 0-0 0-2 ||| 36 374827 +del ||| of either ||| 0.0251572 0.130625 1.06716e-05 0.000255398 2.718 ||| 0-0 ||| 159 374827 +del ||| of electricity ||| 0.00387597 0.130625 2.6679e-06 2.97935e-06 2.718 ||| 0-0 ||| 258 374827 +del ||| of electronic money ||| 0.0285714 0.130625 2.6679e-06 4.53086e-10 2.718 ||| 0-0 ||| 35 374827 +del ||| of electronic ||| 0.0238095 0.130625 2.6679e-06 2.77286e-06 2.718 ||| 0-0 ||| 42 374827 +del ||| of elegant nuance from both gentlemen , ||| 1 0.130625 2.6679e-06 1.03753e-24 2.718 ||| 0-0 ||| 1 374827 +del ||| of elegant nuance from both gentlemen ||| 1 0.130625 2.6679e-06 8.70009e-24 2.718 ||| 0-0 ||| 1 374827 +del ||| of elegant nuance from both ||| 1 0.130625 2.6679e-06 1.25906e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| of elegant nuance from ||| 1 0.130625 2.6679e-06 7.60071e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| of elegant nuance ||| 1 0.130625 2.6679e-06 4.71977e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| of elegant ||| 1 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of emissions ||| 0.00421941 0.0653535 2.6679e-06 3.83481e-07 2.718 ||| 0-0 0-1 ||| 237 374827 +del ||| of employment , ||| 0.00239808 0.130625 2.6679e-06 1.72022e-06 2.718 ||| 0-0 ||| 417 374827 +del ||| of employment ||| 0.00056243 0.130625 2.6679e-06 1.44248e-05 2.718 ||| 0-0 ||| 1778 374827 +del ||| of encouragement has ||| 1 0.130625 2.6679e-06 1.42733e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of encouragement ||| 0.0151515 0.130625 2.6679e-06 2.77286e-06 2.718 ||| 0-0 ||| 66 374827 +del ||| of encouraging the ||| 0.0322581 0.10196 2.6679e-06 2.43838e-06 2.718 ||| 0-0 0-2 ||| 31 374827 +del ||| of energy in the ||| 0.0322581 0.0740824 2.6679e-06 2.45612e-07 2.718 ||| 0-0 0-2 0-3 ||| 31 374827 +del ||| of energy ||| 0.000959693 0.130625 5.33579e-06 2.62242e-05 2.718 ||| 0-0 ||| 2084 374827 +del ||| of enhancing the ||| 0.0333333 0.130625 2.6679e-06 1.3039e-07 2.718 ||| 0-0 ||| 30 374827 +del ||| of enhancing ||| 0.00892857 0.130625 2.6679e-06 2.1239e-06 2.718 ||| 0-0 ||| 112 374827 +del ||| of ensuring ||| 0.000971817 0.130625 2.6679e-06 3.42773e-05 2.718 ||| 0-0 ||| 1029 374827 +del ||| of entering into a ||| 0.142857 0.130625 2.6679e-06 2.08081e-10 2.718 ||| 0-0 ||| 7 374827 +del ||| of entering into ||| 0.0625 0.130625 2.6679e-06 4.69435e-09 2.718 ||| 0-0 ||| 16 374827 +del ||| of entering ||| 0.0540541 0.130625 5.33579e-06 4.57228e-06 2.718 ||| 0-0 ||| 37 374827 +del ||| of entries ||| 0.333333 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| of equal treatment for women in ||| 1 0.130625 2.6679e-06 1.99506e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| of equal treatment for women ||| 0.333333 0.130625 2.6679e-06 9.32077e-16 2.718 ||| 0-0 ||| 3 374827 +del ||| of equal treatment for ||| 0.0192308 0.130625 2.6679e-06 7.84577e-12 2.718 ||| 0-0 ||| 52 374827 +del ||| of equal treatment ||| 0.0035461 0.130625 2.6679e-06 1.02083e-09 2.718 ||| 0-0 ||| 282 374827 +del ||| of equal ||| 0.000869565 0.130625 2.6679e-06 1.68732e-05 2.718 ||| 0-0 ||| 1150 374827 +del ||| of essential ||| 0.025 0.130625 2.6679e-06 2.65487e-05 2.718 ||| 0-0 ||| 40 374827 +del ||| of establishing a ||| 0.00473934 0.130625 2.6679e-06 6.11932e-07 2.718 ||| 0-0 ||| 211 374827 +del ||| of establishing ||| 0.00288184 0.130625 5.33579e-06 1.38053e-05 2.718 ||| 0-0 ||| 694 374827 +del ||| of even a single ||| 0.2 0.130625 2.6679e-06 1.26268e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| of even a ||| 0.111111 0.130625 2.6679e-06 7.95642e-06 2.718 ||| 0-0 ||| 9 374827 +del ||| of even the ||| 0.142857 0.130625 2.6679e-06 1.10197e-05 2.718 ||| 0-0 ||| 7 374827 +del ||| of even ||| 0.027027 0.130625 5.33579e-06 0.000179499 2.718 ||| 0-0 ||| 74 374827 +del ||| of ever ||| 0.0232558 0.130625 2.6679e-06 5.54278e-05 2.718 ||| 0-0 ||| 43 374827 +del ||| of every ||| 0.00124378 0.130625 2.6679e-06 4.79941e-05 2.718 ||| 0-0 ||| 804 374827 +del ||| of excessive ||| 0.0116279 0.130625 2.6679e-06 3.71682e-06 2.718 ||| 0-0 ||| 86 374827 +del ||| of excise duty on ||| 0.037037 0.0723461 2.6679e-06 1.16388e-12 2.718 ||| 0-0 0-3 ||| 27 374827 +del ||| of expensive ||| 0.0769231 0.130625 2.6679e-06 3.39233e-06 2.718 ||| 0-0 ||| 13 374827 +del ||| of expertise ||| 0.00917431 0.130625 2.6679e-06 2.0059e-06 2.718 ||| 0-0 ||| 109 374827 +del ||| of extension , ||| 0.5 0.130625 2.6679e-06 5.94515e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| of extension ||| 0.0769231 0.130625 2.6679e-06 4.98525e-06 2.718 ||| 0-0 ||| 13 374827 +del ||| of fact , never got down to ||| 0.5 0.130625 2.6679e-06 4.02805e-17 2.718 ||| 0-0 ||| 2 374827 +del ||| of fact , never got down ||| 0.5 0.130625 2.6679e-06 4.53312e-16 2.718 ||| 0-0 ||| 2 374827 +del ||| of fact , never got ||| 0.5 0.130625 2.6679e-06 6.49351e-13 2.718 ||| 0-0 ||| 2 374827 +del ||| of fact , never ||| 0.5 0.130625 2.6679e-06 5.93557e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| of fact , ||| 0.008 0.130625 2.6679e-06 0.000103048 2.718 ||| 0-0 ||| 125 374827 +del ||| of fact ||| 0.00507614 0.130625 2.6679e-06 0.000864101 2.718 ||| 0-0 ||| 197 374827 +del ||| of fibres released per ||| 0.5 0.130625 2.6679e-06 2.78868e-16 2.718 ||| 0-0 ||| 2 374827 +del ||| of fibres released ||| 0.5 0.130625 2.6679e-06 6.29499e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| of fibres ||| 0.142857 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-0 ||| 7 374827 +del ||| of fighting ||| 0.00421941 0.130625 2.6679e-06 8.0531e-06 2.718 ||| 0-0 ||| 237 374827 +del ||| of filthy ||| 1 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of financial regulation to create a much ||| 1 0.130625 2.6679e-06 1.11818e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| of financial regulation to create a ||| 1 0.130625 2.6679e-06 1.11406e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| of financial regulation to create ||| 1 0.130625 2.6679e-06 2.51334e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| of financial regulation to ||| 1 0.130625 2.6679e-06 2.2321e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of financial regulation ||| 0.047619 0.130625 2.6679e-06 2.51198e-09 2.718 ||| 0-0 ||| 21 374827 +del ||| of financial ||| 0.0120482 0.130625 5.33579e-06 3.59882e-05 2.718 ||| 0-0 ||| 166 374827 +del ||| of finding a ||| 0.00877193 0.0655202 2.6679e-06 1.69981e-08 2.718 ||| 0-0 0-1 ||| 114 374827 +del ||| of finding ||| 0.00295858 0.0655202 2.6679e-06 3.83481e-07 2.718 ||| 0-0 0-1 ||| 338 374827 +del ||| of five current ||| 0.333333 0.130625 2.6679e-06 9.62549e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| of five ||| 0.00292398 0.130625 2.6679e-06 5.84071e-06 2.718 ||| 0-0 ||| 342 374827 +del ||| of flexibility ||| 0.00194932 0.130625 2.6679e-06 4.24779e-06 2.718 ||| 0-0 ||| 513 374827 +del ||| of follow-up ||| 0.0333333 0.0656683 2.6679e-06 3.83481e-07 2.718 ||| 0-0 0-1 ||| 30 374827 +del ||| of food ||| 0.00125628 0.130625 2.6679e-06 1.59292e-05 2.718 ||| 0-0 ||| 796 374827 +del ||| of force of the ||| 0.5 0.111515 2.6679e-06 5.14382e-06 2.718 ||| 0-0 0-2 0-3 ||| 2 374827 +del ||| of foreign body in ||| 1 0.0183279 2.6679e-06 3.42587e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| of forging a ||| 0.2 0.130625 2.6679e-06 3.26887e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| of forging ||| 0.0434783 0.130625 2.6679e-06 7.37464e-07 2.718 ||| 0-0 ||| 23 374827 +del ||| of former ||| 0.00662252 0.130625 2.6679e-06 1.33628e-05 2.718 ||| 0-0 ||| 151 374827 +del ||| of freedom ||| 0.000425351 0.130625 2.6679e-06 2.51623e-05 2.718 ||| 0-0 ||| 2351 374827 +del ||| of fuel ||| 0.00581395 0.108158 2.6679e-06 0.000118555 2.718 ||| 0-0 0-1 ||| 172 374827 +del ||| of fun ||| 0.2 0.130625 2.6679e-06 1.17994e-06 2.718 ||| 0-0 ||| 5 374827 +del ||| of functioning ||| 0.0263158 0.130625 2.6679e-06 4.57228e-06 2.718 ||| 0-0 ||| 38 374827 +del ||| of funds for the ||| 0.0384615 0.0732944 2.6679e-06 1.10725e-08 2.718 ||| 0-3 ||| 26 374827 +del ||| of further ||| 0.00273973 0.130625 2.6679e-06 0.000142566 2.718 ||| 0-0 ||| 365 374827 +del ||| of gas ||| 0.00403226 0.113139 2.6679e-06 0.000285546 2.718 ||| 0-0 0-1 ||| 248 374827 +del ||| of getting round the ||| 0.333333 0.130625 2.6679e-06 1.61403e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| of getting round ||| 0.111111 0.130625 2.6679e-06 2.62907e-09 2.718 ||| 0-0 ||| 9 374827 +del ||| of getting ||| 0.00651466 0.130625 5.33579e-06 3.42773e-05 2.718 ||| 0-0 ||| 307 374827 +del ||| of giving it a ||| 0.333333 0.130625 2.6679e-06 3.66457e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| of giving it ||| 0.1 0.130625 2.6679e-06 8.26736e-07 2.718 ||| 0-0 ||| 10 374827 +del ||| of giving up the ||| 1 0.130625 2.6679e-06 9.73386e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of giving up ||| 0.0909091 0.130625 2.6679e-06 1.58553e-07 2.718 ||| 0-0 ||| 11 374827 +del ||| of giving ||| 0.00694444 0.130625 8.00369e-06 4.64897e-05 2.718 ||| 0-0 ||| 432 374827 +del ||| of global ||| 0.0240964 0.130625 5.33579e-06 1.34808e-05 2.718 ||| 0-0 ||| 83 374827 +del ||| of going ||| 0.00775194 0.130625 2.6679e-06 0.000252449 2.718 ||| 0-0 ||| 129 374827 +del ||| of good housekeeping ||| 0.333333 0.130625 2.6679e-06 1.68277e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| of good to come ||| 1 0.130625 2.6679e-06 1.15449e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of good to ||| 1 0.130625 2.6679e-06 1.35935e-05 2.718 ||| 0-0 ||| 1 374827 +del ||| of good ||| 0.00231839 0.130625 8.00369e-06 0.000152979 2.718 ||| 0-0 ||| 1294 374827 +del ||| of goods ||| 0.00071736 0.130625 2.6679e-06 1.35988e-05 2.718 ||| 0-0 ||| 1394 374827 +del ||| of government by the ||| 1 0.0632214 2.6679e-06 8.48203e-08 2.718 ||| 0-0 0-1 0-2 0-3 ||| 1 374827 +del ||| of grassroots ||| 0.333333 0.130625 2.6679e-06 9.43954e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| of gravity for ||| 0.2 0.0722451 2.6679e-06 4.443e-09 2.718 ||| 0-0 0-2 ||| 5 374827 +del ||| of greater ||| 0.00215054 0.130625 2.6679e-06 3.88496e-05 2.718 ||| 0-0 ||| 465 374827 +del ||| of gross ||| 0.025641 0.130625 2.6679e-06 2.44838e-06 2.718 ||| 0-0 ||| 39 374827 +del ||| of growth in ||| 0.0151515 0.130625 2.6679e-06 3.04336e-07 2.718 ||| 0-0 ||| 66 374827 +del ||| of growth ||| 0.00125786 0.130625 2.6679e-06 1.42183e-05 2.718 ||| 0-0 ||| 795 374827 +del ||| of guard ||| 0.333333 0.130625 2.6679e-06 2.86136e-06 2.718 ||| 0-0 ||| 3 374827 +del ||| of hand ||| 0.0291971 0.130625 1.06716e-05 0.000116991 2.718 ||| 0-0 ||| 137 374827 +del ||| of hard ||| 0.0133333 0.130625 2.6679e-06 3.1003e-05 2.718 ||| 0-0 ||| 75 374827 +del ||| of having a ||| 0.0109091 0.130625 8.00369e-06 5.0066e-06 2.718 ||| 0-0 ||| 275 374827 +del ||| of having such ||| 0.142857 0.130625 2.6679e-06 2.33682e-07 2.718 ||| 0-0 ||| 7 374827 +del ||| of having the ||| 0.0147059 0.130625 2.6679e-06 6.9342e-06 2.718 ||| 0-0 ||| 68 374827 +del ||| of having to agree the ||| 1 0.10196 2.6679e-06 5.54598e-10 2.718 ||| 0-0 0-4 ||| 1 374827 +del ||| of having to pay ||| 0.2 0.130625 2.6679e-06 1.43723e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| of having to ||| 0.0078125 0.130625 2.6679e-06 1.00365e-05 2.718 ||| 0-0 ||| 128 374827 +del ||| of having ||| 0.00713154 0.130625 2.40111e-05 0.00011295 2.718 ||| 0-0 ||| 1262 374827 +del ||| of headscarves ||| 0.333333 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| of health ||| 0.00111607 0.130625 2.6679e-06 2.45133e-05 2.718 ||| 0-0 ||| 896 374827 +del ||| of helplessness of the ||| 1 0.111515 2.6679e-06 1.20889e-08 2.718 ||| 0-0 0-2 0-3 ||| 1 374827 +del ||| of her ||| 0.00938967 0.130625 1.60074e-05 8.02656e-05 2.718 ||| 0-0 ||| 639 374827 +del ||| of higher education ||| 0.00653595 0.130625 2.6679e-06 4.19758e-10 2.718 ||| 0-0 ||| 153 374827 +del ||| of higher ||| 0.00943396 0.130625 2.6679e-06 1.24189e-05 2.718 ||| 0-0 ||| 106 374827 +del ||| of him and that is ||| 1 0.130625 2.6679e-06 6.24532e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of him and that ||| 1 0.130625 2.6679e-06 1.99269e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of him and ||| 0.142857 0.130625 2.6679e-06 1.1846e-06 2.718 ||| 0-0 ||| 7 374827 +del ||| of him as a ||| 0.5 0.130625 2.6679e-06 4.27768e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| of him as ||| 0.333333 0.130625 2.6679e-06 9.65054e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| of him ||| 0.0337079 0.130625 8.00369e-06 9.45724e-05 2.718 ||| 0-0 ||| 89 374827 +del ||| of his Curriculum ||| 1 0.130625 2.6679e-06 3.54573e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of his or her beliefs ||| 1 0.130625 2.6679e-06 6.89404e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| of his or her ||| 0.0172414 0.130625 2.6679e-06 2.75762e-11 2.718 ||| 0-0 ||| 58 374827 +del ||| of his or ||| 0.0344828 0.130625 2.6679e-06 1.01346e-07 2.718 ||| 0-0 ||| 29 374827 +del ||| of his own ||| 0.0120482 0.130625 2.6679e-06 1.50277e-07 2.718 ||| 0-0 ||| 83 374827 +del ||| of his ||| 0.00950413 0.130625 6.13616e-05 8.86431e-05 2.718 ||| 0-0 ||| 2420 374827 +del ||| of honourable ||| 0.166667 0.130625 2.6679e-06 1.53982e-05 2.718 ||| 0-0 ||| 6 374827 +del ||| of how much ||| 0.0353982 0.130625 1.06716e-05 1.06114e-07 2.718 ||| 0-0 ||| 113 374827 +del ||| of how this ||| 0.0222222 0.0669701 2.6679e-06 2.42729e-07 2.718 ||| 0-0 0-2 ||| 45 374827 +del ||| of how to ||| 0.00862069 0.130625 5.33579e-06 9.39434e-06 2.718 ||| 0-0 ||| 232 374827 +del ||| of how we ||| 0.0143885 0.130625 5.33579e-06 1.2002e-06 2.718 ||| 0-0 ||| 139 374827 +del ||| of how ||| 0.00856364 0.06608 5.86937e-05 3.02065e-05 2.718 ||| 0-0 0-1 ||| 2569 374827 +del ||| of human health ; it also ||| 1 0.130625 2.6679e-06 8.36466e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| of human health ; it ||| 1 0.130625 2.6679e-06 1.65683e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| of human health ; ||| 1 0.130625 2.6679e-06 9.31682e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of human health ||| 0.00689655 0.130625 2.6679e-06 3.02494e-09 2.718 ||| 0-0 ||| 145 374827 +del ||| of human ||| 0.00526316 0.130625 5.33579e-06 3.64012e-05 2.718 ||| 0-0 ||| 380 374827 +del ||| of humanity ||| 0.00364964 0.130625 2.6679e-06 9.43954e-07 2.718 ||| 0-0 ||| 274 374827 +del ||| of hunger and underdevelopment are many and ||| 1 0.130625 2.6679e-06 3.4715e-22 2.718 ||| 0-0 ||| 1 374827 +del ||| of hunger and underdevelopment are many ||| 1 0.130625 2.6679e-06 2.77146e-20 2.718 ||| 0-0 ||| 1 374827 +del ||| of hunger and underdevelopment are ||| 1 0.130625 2.6679e-06 8.073e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| of hunger and underdevelopment ||| 1 0.130625 2.6679e-06 5.32074e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| of hunger and ||| 0.0217391 0.130625 2.6679e-06 1.33019e-08 2.718 ||| 0-0 ||| 46 374827 +del ||| of hunger ||| 0.00724638 0.130625 2.6679e-06 1.06195e-06 2.718 ||| 0-0 ||| 138 374827 +del ||| of imported Chinese arms ||| 1 0.130625 2.6679e-06 3.88944e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| of imported Chinese ||| 1 0.130625 2.6679e-06 1.40413e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of imported ||| 0.2 0.130625 2.6679e-06 1.17994e-06 2.718 ||| 0-0 ||| 5 374827 +del ||| of in the ||| 0.0344828 0.0740824 2.6679e-06 0.00276279 2.718 ||| 0-0 0-1 0-2 ||| 29 374827 +del ||| of in ||| 0.0166667 0.130625 5.33579e-06 0.00631402 2.718 ||| 0-0 ||| 120 374827 +del ||| of including ||| 0.00436681 0.130625 2.6679e-06 3.07965e-05 2.718 ||| 0-0 ||| 229 374827 +del ||| of increase , ||| 0.142857 0.130625 2.6679e-06 4.54505e-06 2.718 ||| 0-0 ||| 7 374827 +del ||| of increase ||| 0.0113636 0.130625 2.6679e-06 3.81121e-05 2.718 ||| 0-0 ||| 88 374827 +del ||| of increased ||| 0.0026455 0.0748137 2.6679e-06 8.25369e-05 2.718 ||| 0-0 0-1 ||| 378 374827 +del ||| of individual traders ||| 1 0.130625 2.6679e-06 2.83634e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of individual ||| 0.00155039 0.130625 2.6679e-06 4.17109e-05 2.718 ||| 0-0 ||| 645 374827 +del ||| of industrial ||| 0.0204082 0.130625 2.6679e-06 3.71682e-06 2.718 ||| 0-0 ||| 49 374827 +del ||| of information , ||| 0.00481928 0.130625 5.33579e-06 5.82203e-06 2.718 ||| 0-0 ||| 415 374827 +del ||| of information ||| 0.00123039 0.130625 1.06716e-05 4.88201e-05 2.718 ||| 0-0 ||| 3251 374827 +del ||| of inhabited ||| 1 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of intent , ||| 0.0285714 0.130625 2.6679e-06 4.18623e-07 2.718 ||| 0-0 ||| 35 374827 +del ||| of intent from ||| 0.2 0.110878 2.6679e-06 7.608e-08 2.718 ||| 0-0 0-2 ||| 5 374827 +del ||| of intent ||| 0.00429185 0.130625 2.6679e-06 3.51033e-06 2.718 ||| 0-0 ||| 233 374827 +del ||| of interest ||| 0.00192123 0.130625 5.33579e-06 3.31269e-05 2.718 ||| 0-0 ||| 1041 374827 +del ||| of international ||| 0.00961538 0.130625 8.00369e-06 2.28319e-05 2.718 ||| 0-0 ||| 312 374827 +del ||| of intervention , ||| 0.027027 0.130625 2.6679e-06 9.35746e-07 2.718 ||| 0-0 ||| 37 374827 +del ||| of intervention ||| 0.0045045 0.130625 2.6679e-06 7.84661e-06 2.718 ||| 0-0 ||| 222 374827 +del ||| of introducing ||| 0.0018622 0.130625 2.6679e-06 9.23305e-06 2.718 ||| 0-0 ||| 537 374827 +del ||| of iron , all ||| 1 0.130625 2.6679e-06 1.4296e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of iron , ||| 0.333333 0.130625 2.6679e-06 3.02534e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| of iron ||| 0.142857 0.130625 2.6679e-06 2.53688e-06 2.718 ||| 0-0 ||| 7 374827 +del ||| of island ||| 0.111111 0.130625 2.6679e-06 2.97935e-06 2.718 ||| 0-0 ||| 9 374827 +del ||| of it . indeed , ||| 1 0.130625 2.6679e-06 1.43614e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of it . indeed ||| 1 0.130625 2.6679e-06 1.20426e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of it . ||| 0.000928505 0.130625 2.6679e-06 1.58895e-05 2.718 ||| 0-0 ||| 1077 374827 +del ||| of it being a ||| 0.2 0.130625 2.6679e-06 6.61716e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| of it being ||| 0.0192308 0.130625 2.6679e-06 1.49285e-05 2.718 ||| 0-0 ||| 52 374827 +del ||| of it in terms of ||| 0.5 0.130625 2.6679e-06 6.69994e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| of it in terms ||| 0.5 0.130625 2.6679e-06 1.23242e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| of it in ||| 0.0123457 0.130625 2.6679e-06 0.000112283 2.718 ||| 0-0 ||| 81 374827 +del ||| of it or damage ||| 1 0.130625 2.6679e-06 2.52495e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of it or ||| 0.111111 0.130625 2.6679e-06 5.99751e-06 2.718 ||| 0-0 ||| 9 374827 +del ||| of it ||| 0.0112909 0.130625 8.00369e-05 0.00524579 2.718 ||| 0-0 ||| 2657 374827 +del ||| of its content does ||| 0.333333 0.0671027 2.6679e-06 4.98387e-12 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of its content ||| 0.0210526 0.130625 5.33579e-06 2.07191e-08 2.718 ||| 0-0 ||| 95 374827 +del ||| of its management ||| 0.0526316 0.130625 2.6679e-06 1.84497e-08 2.718 ||| 0-0 ||| 19 374827 +del ||| of its national ||| 0.25 0.130625 2.6679e-06 5.40042e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| of its own ||| 0.00326797 0.130625 5.33579e-06 7.12477e-07 2.718 ||| 0-0 ||| 612 374827 +del ||| of its relevant ||| 0.5 0.0671027 2.6679e-06 1.55084e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of its ||| 0.0132352 0.0671027 0.000378841 0.00014413 2.718 ||| 0-0 0-1 ||| 10729 374827 +del ||| of itself ||| 0.0192308 0.130625 5.33579e-06 0.000200207 2.718 ||| 0-0 ||| 104 374827 +del ||| of just ||| 0.00440529 0.130625 2.6679e-06 0.000372183 2.718 ||| 0-0 ||| 227 374827 +del ||| of knowledge of ||| 0.0333333 0.130625 2.6679e-06 7.61738e-07 2.718 ||| 0-0 ||| 30 374827 +del ||| of knowledge ||| 0.00181818 0.130625 2.6679e-06 1.40118e-05 2.718 ||| 0-0 ||| 550 374827 +del ||| of l ||| 1 0.130625 2.6679e-06 1.38643e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| of land ||| 0.00363636 0.130625 2.6679e-06 1.13569e-05 2.718 ||| 0-0 ||| 275 374827 +del ||| of language ||| 0.00680272 0.130625 2.6679e-06 1.38053e-05 2.718 ||| 0-0 ||| 147 374827 +del ||| of law and ||| 0.000815661 0.130625 2.6679e-06 6.51421e-07 2.718 ||| 0-0 ||| 1226 374827 +del ||| of law ||| 0.000227687 0.130625 2.6679e-06 5.20059e-05 2.718 ||| 0-0 ||| 4392 374827 +del ||| of laws on ||| 0.142857 0.0723461 2.6679e-06 6.36475e-08 2.718 ||| 0-0 0-2 ||| 7 374827 +del ||| of legislation ||| 0.000670691 0.130625 2.6679e-06 2.36873e-05 2.718 ||| 0-0 ||| 1491 374827 +del ||| of life for the ||| 0.04 0.130625 2.6679e-06 2.10866e-08 2.718 ||| 0-0 ||| 25 374827 +del ||| of life for ||| 0.00862069 0.130625 2.6679e-06 3.43476e-07 2.718 ||| 0-0 ||| 116 374827 +del ||| of life ||| 0.000904977 0.130625 5.33579e-06 4.46903e-05 2.718 ||| 0-0 ||| 2210 374827 +del ||| of light on the ||| 1 0.10196 2.6679e-06 1.19142e-07 2.718 ||| 0-0 0-3 ||| 1 374827 +del ||| of livelihood ||| 0.04 0.130625 2.6679e-06 1.47493e-06 2.718 ||| 0-0 ||| 25 374827 +del ||| of living with ||| 0.25 0.0675765 2.6679e-06 4.70467e-08 2.718 ||| 0-0 0-2 ||| 4 374827 +del ||| of local authorities that ||| 1 0.130625 2.6679e-06 1.68874e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of local authorities ||| 0.011236 0.130625 2.6679e-06 1.00391e-09 2.718 ||| 0-0 ||| 89 374827 +del ||| of local ||| 0.0105263 0.130625 2.6679e-06 1.50738e-05 2.718 ||| 0-0 ||| 95 374827 +del ||| of long ||| 0.0172414 0.130625 2.6679e-06 9.97936e-05 2.718 ||| 0-0 ||| 58 374827 +del ||| of looking at ||| 0.0125 0.130625 2.6679e-06 1.30687e-07 2.718 ||| 0-0 ||| 80 374827 +del ||| of looking ||| 0.0227273 0.130625 5.33579e-06 3.12095e-05 2.718 ||| 0-0 ||| 88 374827 +del ||| of luck ||| 0.012987 0.130625 2.6679e-06 2.86136e-06 2.718 ||| 0-0 ||| 77 374827 +del ||| of maintaining the ||| 0.0106383 0.130625 2.6679e-06 3.25974e-07 2.718 ||| 0-0 ||| 94 374827 +del ||| of maintaining ||| 0.002457 0.130625 2.6679e-06 5.30974e-06 2.718 ||| 0-0 ||| 407 374827 +del ||| of major shifts in production to ||| 1 0.130625 2.6679e-06 4.98836e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| of major shifts in production ||| 1 0.130625 2.6679e-06 5.61384e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| of major shifts in ||| 1 0.130625 2.6679e-06 6.72317e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of major shifts ||| 1 0.130625 2.6679e-06 3.14101e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of major ||| 0.00195695 0.130625 2.6679e-06 2.85546e-05 2.718 ||| 0-0 ||| 511 374827 +del ||| of making ||| 0.00274474 0.130625 8.00369e-06 0.000113481 2.718 ||| 0-0 ||| 1093 374827 +del ||| of many languages , ||| 0.5 0.130625 2.6679e-06 2.17381e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| of many languages ||| 0.333333 0.130625 2.6679e-06 1.82283e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| of many ||| 0.000520833 0.130625 2.6679e-06 0.000101269 2.718 ||| 0-0 ||| 1920 374827 +del ||| of me - ||| 0.2 0.130625 2.6679e-06 6.69966e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| of me ||| 0.0125786 0.130625 5.33579e-06 0.000177611 2.718 ||| 0-0 ||| 159 374827 +del ||| of measures ||| 0.000493827 0.130625 2.6679e-06 6.10325e-05 2.718 ||| 0-0 ||| 2025 374827 +del ||| of media ||| 0.0106383 0.130625 2.6679e-06 8.49558e-06 2.718 ||| 0-0 ||| 94 374827 +del ||| of men and women from the French ||| 0.333333 0.130625 2.6679e-06 6.89812e-20 2.718 ||| 0-0 ||| 3 374827 +del ||| of men and women from the ||| 0.333333 0.130625 2.6679e-06 1.84442e-15 2.718 ||| 0-0 ||| 3 374827 +del ||| of men and women from ||| 0.333333 0.130625 2.6679e-06 3.00434e-14 2.718 ||| 0-0 ||| 3 374827 +del ||| of men and women ||| 0.0034965 0.130625 2.6679e-06 1.86558e-11 2.718 ||| 0-0 ||| 286 374827 +del ||| of men and ||| 0.00346021 0.130625 2.6679e-06 1.57036e-07 2.718 ||| 0-0 ||| 289 374827 +del ||| of men ||| 0.00375235 0.130625 5.33579e-06 1.25369e-05 2.718 ||| 0-0 ||| 533 374827 +del ||| of merely ||| 0.0434783 0.130625 2.6679e-06 1.87906e-05 2.718 ||| 0-0 ||| 23 374827 +del ||| of mind with ||| 0.5 0.130625 2.6679e-06 4.75155e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| of mind ||| 0.0142857 0.130625 5.33579e-06 7.43068e-05 2.718 ||| 0-0 ||| 140 374827 +del ||| of mine ||| 0.0121212 0.130625 5.33579e-06 5.30974e-06 2.718 ||| 0-0 ||| 165 374827 +del ||| of money , ||| 0.00645161 0.130625 2.6679e-06 5.74815e-06 2.718 ||| 0-0 ||| 155 374827 +del ||| of money spent on this ||| 1 0.130625 2.6679e-06 1.33576e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of money spent on ||| 0.0769231 0.130625 2.6679e-06 2.06729e-11 2.718 ||| 0-0 ||| 13 374827 +del ||| of money spent ||| 0.0625 0.130625 2.6679e-06 3.08966e-09 2.718 ||| 0-0 ||| 16 374827 +del ||| of money ||| 0.00237389 0.130625 1.06716e-05 4.82006e-05 2.718 ||| 0-0 ||| 1685 374827 +del ||| of monitoring the ||| 0.0142857 0.0732944 2.6679e-06 7.19384e-07 2.718 ||| 0-2 ||| 70 374827 +del ||| of more specific ||| 0.2 0.130625 2.6679e-06 1.0179e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| of more than ||| 0.00621118 0.08098 8.00369e-06 1.57582e-06 2.718 ||| 0-0 0-2 ||| 483 374827 +del ||| of more ||| 0.00327869 0.130625 8.00369e-06 0.000673658 2.718 ||| 0-0 ||| 915 374827 +del ||| of motions from the ||| 1 0.130625 2.6679e-06 1.6915e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of motions from ||| 0.5 0.130625 2.6679e-06 2.75526e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| of motions ||| 0.0125 0.130625 2.6679e-06 1.71092e-06 2.718 ||| 0-0 ||| 80 374827 +del ||| of multilateral ||| 0.0909091 0.130625 2.6679e-06 1.06195e-06 2.718 ||| 0-0 ||| 11 374827 +del ||| of multilateralism ||| 0.0196078 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 51 374827 +del ||| of mutual recognition through the use of ||| 0.5 0.130625 2.6679e-06 1.36209e-19 2.718 ||| 0-0 ||| 2 374827 +del ||| of mutual recognition through the use ||| 0.5 0.130625 2.6679e-06 2.50551e-18 2.718 ||| 0-0 ||| 2 374827 +del ||| of mutual recognition through the ||| 0.25 0.130625 2.6679e-06 5.15325e-15 2.718 ||| 0-0 ||| 4 374827 +del ||| of mutual recognition through ||| 0.333333 0.130625 2.6679e-06 8.39403e-14 2.718 ||| 0-0 ||| 3 374827 +del ||| of mutual recognition ||| 0.00332226 0.130625 2.6679e-06 1.8236e-10 2.718 ||| 0-0 ||| 301 374827 +del ||| of mutual ||| 0.00862069 0.130625 2.6679e-06 6.48968e-06 2.718 ||| 0-0 ||| 116 374827 +del ||| of my colleague , ||| 0.0377358 0.130625 1.60074e-05 1.25333e-09 2.718 ||| 0-0 ||| 159 374827 +del ||| of my colleague ||| 0.020649 0.130625 1.86753e-05 1.05097e-08 2.718 ||| 0-0 ||| 339 374827 +del ||| of my fellow Member , ||| 0.0555556 0.130625 2.6679e-06 7.68246e-13 2.718 ||| 0-0 ||| 18 374827 +del ||| of my fellow Member ||| 0.0444444 0.130625 5.33579e-06 6.44206e-12 2.718 ||| 0-0 ||| 45 374827 +del ||| of my fellow ||| 0.0123967 0.130625 8.00369e-06 1.25016e-08 2.718 ||| 0-0 ||| 242 374827 +del ||| of my group ||| 0.00123001 0.130625 5.33579e-06 2.4434e-08 2.718 ||| 0-0 ||| 1626 374827 +del ||| of my political ||| 0.333333 0.130625 2.6679e-06 3.38624e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| of my speech ||| 0.00581395 0.130625 2.6679e-06 8.53673e-09 2.718 ||| 0-0 ||| 172 374827 +del ||| of my ||| 0.00459207 0.130625 8.00369e-05 0.000189705 2.718 ||| 0-0 ||| 6533 374827 +del ||| of national rebates ||| 0.25 0.130625 2.6679e-06 4.16962e-11 2.718 ||| 0-0 ||| 4 374827 +del ||| of national ||| 0.00946372 0.130625 8.00369e-06 3.79056e-05 2.718 ||| 0-0 ||| 317 374827 +del ||| of natural ||| 0.0140845 0.130625 2.6679e-06 8.1711e-06 2.718 ||| 0-0 ||| 71 374827 +del ||| of never ||| 0.333333 0.130625 2.6679e-06 1.69912e-05 2.718 ||| 0-0 ||| 3 374827 +del ||| of new means ||| 0.125 0.130625 2.6679e-06 1.11729e-07 2.718 ||| 0-0 ||| 8 374827 +del ||| of new members , ||| 0.25 0.130625 2.6679e-06 3.10135e-09 2.718 ||| 0-0 ||| 4 374827 +del ||| of new members ||| 0.0416667 0.130625 2.6679e-06 2.60061e-08 2.718 ||| 0-0 ||| 24 374827 +del ||| of new ||| 0.00179147 0.130625 1.33395e-05 0.000176313 2.718 ||| 0-0 ||| 2791 374827 +del ||| of next week ||| 0.037037 0.130625 2.6679e-06 9.32443e-10 2.718 ||| 0-0 ||| 27 374827 +del ||| of next ||| 0.0153846 0.130625 8.00369e-06 3.0472e-05 2.718 ||| 0-0 ||| 195 374827 +del ||| of nomination of the ||| 1 0.130625 2.6679e-06 3.93806e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of nomination of ||| 1 0.130625 2.6679e-06 6.41464e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of nomination ||| 0.2 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| of non-agricultural market ||| 1 0.130625 2.6679e-06 1.2e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of non-agricultural ||| 1 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of none other ||| 0.5 0.130625 2.6679e-06 7.56664e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| of none ||| 0.0769231 0.130625 2.6679e-06 5.84071e-06 2.718 ||| 0-0 ||| 13 374827 +del ||| of northern ||| 0.0169492 0.152812 5.33579e-06 0.000132891 2.718 ||| 0-0 0-1 ||| 118 374827 +del ||| of not only ||| 0.0571429 0.130625 5.33579e-06 1.12101e-06 2.718 ||| 0-0 ||| 35 374827 +del ||| of not ||| 0.00378072 0.130625 5.33579e-06 0.00100711 2.718 ||| 0-0 ||| 529 374827 +del ||| of nuclear ||| 0.0172414 0.130625 5.33579e-06 1.14749e-05 2.718 ||| 0-0 ||| 116 374827 +del ||| of numerous factors ||| 0.333333 0.130625 2.6679e-06 1.55233e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| of numerous ||| 0.00649351 0.130625 2.6679e-06 5.19174e-06 2.718 ||| 0-0 ||| 154 374827 +del ||| of objects kept ||| 0.333333 0.130625 2.6679e-06 5.25812e-11 2.718 ||| 0-0 ||| 3 374827 +del ||| of objects ||| 0.111111 0.130625 2.6679e-06 7.37464e-07 2.718 ||| 0-0 ||| 9 374827 +del ||| of odds and ends ||| 1 0.130625 2.6679e-06 7.78158e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of odds and ||| 1 0.130625 2.6679e-06 3.32546e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of odds ||| 1 0.130625 2.6679e-06 2.65487e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| of of ||| 0.333333 0.130625 2.6679e-06 0.0870164 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of office ||| 0.0241546 0.130625 1.33395e-05 3.0354e-05 2.718 ||| 0-0 ||| 207 374827 +del ||| of oil ||| 0.00196078 0.130625 2.6679e-06 1.0295e-05 2.718 ||| 0-0 ||| 510 374827 +del ||| of one ' s ||| 0.0909091 0.109345 2.6679e-06 6.11491e-08 2.718 ||| 0-0 0-2 0-3 ||| 11 374827 +del ||| of one 's ||| 0.21875 0.150218 1.86753e-05 4.94024e-05 2.718 ||| 0-0 0-2 ||| 32 374827 +del ||| of one of ||| 0.002 0.130625 2.6679e-06 0.000362685 2.718 ||| 0-0 0-2 ||| 500 374827 +del ||| of one ||| 0.00508187 0.130625 2.40111e-05 0.0012295 2.718 ||| 0-0 ||| 1771 374827 +del ||| of one ’ s ||| 0.157895 0.135221 8.00369e-06 7.20083e-08 2.718 ||| 0-0 0-2 0-3 ||| 19 374827 +del ||| of only ||| 0.00609756 0.130625 2.6679e-06 0.000328348 2.718 ||| 0-0 ||| 164 374827 +del ||| of operation ||| 0.00628931 0.130625 2.6679e-06 1.67847e-05 2.718 ||| 0-0 ||| 159 374827 +del ||| of operation ‘ ||| 1 0.130625 2.6679e-06 1.88492e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of order ||| 0.0011325 0.130625 5.33579e-06 0.000157109 2.718 ||| 0-0 ||| 1766 374827 +del ||| of organising ||| 0.00662252 0.130625 2.6679e-06 1.38643e-06 2.718 ||| 0-0 ||| 151 374827 +del ||| of origin applied to the ||| 1 0.10196 2.6679e-06 2.52401e-11 2.718 ||| 0-0 0-4 ||| 1 374827 +del ||| of other people ' ||| 1 0.130625 2.6679e-06 1.1554e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of other people ||| 0.0243902 0.130625 2.6679e-06 3.36372e-07 2.718 ||| 0-0 ||| 41 374827 +del ||| of other ||| 0.00121261 0.130625 8.00369e-06 0.000382154 2.718 ||| 0-0 ||| 2474 374827 +del ||| of our 10th EP / Syria Interparliamentary ||| 1 0.130625 2.6679e-06 7.59932e-31 2.718 ||| 0-0 ||| 1 374827 +del ||| of our 10th EP / Syria ||| 1 0.130625 2.6679e-06 5.42809e-25 2.718 ||| 0-0 ||| 1 374827 +del ||| of our 10th EP / ||| 1 0.130625 2.6679e-06 1.87175e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| of our 10th EP ||| 1 0.130625 2.6679e-06 8.13806e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| of our 10th ||| 1 0.130625 2.6679e-06 1.62761e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of our Rules of Procedure ||| 0.00680272 0.130625 2.6679e-06 9.99052e-14 2.718 ||| 0-0 ||| 147 374827 +del ||| of our Rules of ||| 0.166667 0.130625 5.33579e-06 1.56837e-09 2.718 ||| 0-0 ||| 12 374827 +del ||| of our Rules ||| 0.05 0.130625 2.6679e-06 2.88494e-08 2.718 ||| 0-0 ||| 20 374827 +del ||| of our all our ||| 1 0.130625 2.6679e-06 2.65228e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of our all ||| 0.5 0.130625 2.6679e-06 1.92278e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| of our civilization , which in any ||| 1 0.130625 2.6679e-06 9.33946e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| of our civilization , which in ||| 1 0.130625 2.6679e-06 6.17607e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| of our civilization , which ||| 1 0.130625 2.6679e-06 2.88541e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of our civilization , ||| 0.333333 0.130625 2.6679e-06 3.39676e-11 2.718 ||| 0-0 ||| 3 374827 +del ||| of our civilization ||| 0.166667 0.130625 2.6679e-06 2.84832e-10 2.718 ||| 0-0 ||| 6 374827 +del ||| of our colleague , ||| 0.03125 0.130625 2.6679e-06 2.68829e-09 2.718 ||| 0-0 ||| 32 374827 +del ||| of our colleague ||| 0.0138889 0.130625 2.6679e-06 2.25424e-08 2.718 ||| 0-0 ||| 72 374827 +del ||| of our fleets ||| 0.25 0.130625 2.6679e-06 1.91244e-09 2.718 ||| 0-0 ||| 4 374827 +del ||| of our time , the ||| 0.5 0.10196 2.6679e-06 2.76684e-08 2.718 ||| 0-0 0-4 ||| 2 374827 +del ||| of our ||| 0.00947368 0.130625 0.000552255 0.000406903 2.718 ||| 0-0 ||| 21850 374827 +del ||| of ours ||| 0.00390625 0.130625 2.6679e-06 9.23305e-06 2.718 ||| 0-0 ||| 256 374827 +del ||| of out of ||| 0.5 0.130625 2.6679e-06 6.14266e-05 2.718 ||| 0-0 ||| 2 374827 +del ||| of out ||| 0.25 0.130625 2.6679e-06 0.00112991 2.718 ||| 0-0 ||| 4 374827 +del ||| of over 7 % ||| 1 0.130625 2.6679e-06 7.27364e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| of over 7 ||| 1 0.130625 2.6679e-06 1.27832e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of over ||| 0.00692841 0.0685709 8.00369e-06 9.41594e-05 2.718 ||| 0-0 0-1 ||| 433 374827 +del ||| of paramount ||| 0.00537634 0.130625 2.6679e-06 1.71092e-06 2.718 ||| 0-0 ||| 186 374827 +del ||| of parliament belonging ||| 0.5 0.130625 2.6679e-06 1.91947e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| of parliament ||| 0.0208333 0.130625 8.00369e-06 7.10915e-06 2.718 ||| 0-0 ||| 144 374827 +del ||| of part of the ||| 0.0285714 0.111515 2.6679e-06 3.60309e-05 2.718 ||| 0-0 0-2 0-3 ||| 35 374827 +del ||| of part of ||| 0.0185185 0.130625 2.6679e-06 1.91188e-05 2.718 ||| 0-0 ||| 54 374827 +del ||| of part ||| 0.0144928 0.130625 2.6679e-06 0.000351682 2.718 ||| 0-0 ||| 69 374827 +del ||| of particular ||| 0.00180832 0.130625 2.6679e-06 0.000181534 2.718 ||| 0-0 ||| 553 374827 +del ||| of passing the ||| 0.2 0.10196 2.6679e-06 2.6228e-06 2.718 ||| 0-0 0-2 ||| 5 374827 +del ||| of people in the ||| 0.00869565 0.130625 2.6679e-06 3.41191e-07 2.718 ||| 0-0 ||| 115 374827 +del ||| of people in ||| 0.00253165 0.130625 2.6679e-06 5.5576e-06 2.718 ||| 0-0 ||| 395 374827 +del ||| of people ||| 0.000372648 0.130625 5.33579e-06 0.000259646 2.718 ||| 0-0 ||| 5367 374827 +del ||| of persistently ||| 1 0.130625 2.6679e-06 1.06195e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| of persuading them of the ||| 1 0.10196 2.6679e-06 3.28687e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| of pesticide ||| 0.0769231 0.130625 2.6679e-06 8.55458e-07 2.718 ||| 0-0 ||| 13 374827 +del ||| of phasing out tobacco subsidies . ||| 1 0.130625 2.6679e-06 3.17499e-21 2.718 ||| 0-0 ||| 1 374827 +del ||| of phasing out tobacco subsidies ||| 0.5 0.130625 2.6679e-06 1.0482e-18 2.718 ||| 0-0 ||| 2 374827 +del ||| of phasing out tobacco ||| 1 0.130625 2.6679e-06 8.06306e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| of phasing out ||| 0.05 0.130625 2.6679e-06 3.61572e-09 2.718 ||| 0-0 ||| 20 374827 +del ||| of phasing ||| 0.0769231 0.130625 2.6679e-06 9.43954e-07 2.718 ||| 0-0 ||| 13 374827 +del ||| of play in the ||| 0.25 0.130625 2.6679e-06 1.00008e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| of play in ||| 0.0714286 0.130625 2.6679e-06 1.62902e-06 2.718 ||| 0-0 ||| 14 374827 +del ||| of play of the ||| 0.0769231 0.0836636 2.6679e-06 3.92888e-08 2.718 ||| 0-0 0-1 0-2 0-3 ||| 13 374827 +del ||| of play ||| 0.00657895 0.130625 2.6679e-06 7.61063e-05 2.718 ||| 0-0 ||| 152 374827 +del ||| of pleasure ||| 0.0526316 0.130625 2.6679e-06 6.69617e-06 2.718 ||| 0-0 ||| 19 374827 +del ||| of plenty of ||| 0.25 0.130625 2.6679e-06 1.73195e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| of plenty ||| 0.0769231 0.130625 2.6679e-06 3.18584e-06 2.718 ||| 0-0 ||| 13 374827 +del ||| of pointing them out ||| 0.5 0.130625 2.6679e-06 6.88009e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| of pointing them ||| 0.5 0.130625 2.6679e-06 1.79618e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| of pointing ||| 0.0714286 0.130625 2.6679e-06 6.69617e-06 2.718 ||| 0-0 ||| 14 374827 +del ||| of political ||| 0.00282486 0.130625 2.6679e-06 5.26549e-05 2.718 ||| 0-0 ||| 354 374827 +del ||| of possible ||| 0.00833333 0.130625 5.33579e-06 0.000236608 2.718 ||| 0-0 ||| 240 374827 +del ||| of power to the ||| 0.0666667 0.130625 2.6679e-06 2.40253e-07 2.718 ||| 0-0 ||| 15 374827 +del ||| of power to ||| 0.04 0.130625 2.6679e-06 3.91343e-06 2.718 ||| 0-0 ||| 25 374827 +del ||| of power ||| 0.00111607 0.130625 2.6679e-06 4.40413e-05 2.718 ||| 0-0 ||| 896 374827 +del ||| of preaching the ||| 1 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-0 0-2 ||| 1 374827 +del ||| of pressure , ||| 0.0588235 0.130625 2.6679e-06 2.11422e-06 2.718 ||| 0-0 ||| 17 374827 +del ||| of pressure ||| 0.0045045 0.130625 2.6679e-06 1.77286e-05 2.718 ||| 0-0 ||| 222 374827 +del ||| of preventing ||| 0.00217391 0.130625 2.6679e-06 3.71682e-06 2.718 ||| 0-0 ||| 460 374827 +del ||| of prevention ||| 0.00260417 0.130625 2.6679e-06 4.1298e-06 2.718 ||| 0-0 ||| 384 374827 +del ||| of price stability ||| 0.00735294 0.130625 2.6679e-06 3.15042e-10 2.718 ||| 0-0 ||| 136 374827 +del ||| of price ||| 0.00917431 0.130625 2.6679e-06 1.50738e-05 2.718 ||| 0-0 ||| 109 374827 +del ||| of procedure of the ||| 0.333333 0.111515 2.6679e-06 3.03431e-06 2.718 ||| 0-0 0-2 0-3 ||| 3 374827 +del ||| of procedure ||| 0.0100503 0.130625 5.33579e-06 2.96165e-05 2.718 ||| 0-0 ||| 199 374827 +del ||| of proceedings for the ||| 0.5 0.0138653 2.6679e-06 1.3034e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| of proceedings for ||| 0.0833333 0.0138653 2.6679e-06 2.12308e-08 2.718 ||| 0-2 ||| 12 374827 +del ||| of production , ||| 0.00636943 0.130625 2.6679e-06 2.9374e-06 2.718 ||| 0-0 ||| 157 374827 +del ||| of production of ||| 0.047619 0.130625 2.6679e-06 1.33906e-06 2.718 ||| 0-0 ||| 21 374827 +del ||| of production ||| 0.00215054 0.130625 5.33579e-06 2.46313e-05 2.718 ||| 0-0 ||| 930 374827 +del ||| of profit ||| 0.00578035 0.130625 2.6679e-06 3.83481e-06 2.718 ||| 0-0 ||| 173 374827 +del ||| of profound inequalities and relations of social ||| 1 0.130625 2.6679e-06 1.53574e-23 2.718 ||| 0-5 ||| 1 374827 +del ||| of profound inequalities and relations of ||| 1 0.130625 2.6679e-06 1.48668e-19 2.718 ||| 0-5 ||| 1 374827 +del ||| of progress of the ||| 0.0714286 0.130625 2.6679e-06 1.29661e-07 2.718 ||| 0-0 ||| 14 374827 +del ||| of progress of ||| 0.0666667 0.130625 2.6679e-06 2.11202e-06 2.718 ||| 0-0 ||| 15 374827 +del ||| of progress ||| 0.00136426 0.130625 2.6679e-06 3.88496e-05 2.718 ||| 0-0 ||| 733 374827 +del ||| of protection of ||| 0.0060241 0.130625 2.6679e-06 1.62771e-06 2.718 ||| 0-2 ||| 166 374827 +del ||| of providing a cushion ||| 1 0.130625 2.6679e-06 8.4023e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of providing a ||| 0.015625 0.130625 2.6679e-06 1.20033e-06 2.718 ||| 0-0 ||| 64 374827 +del ||| of providing medical ||| 1 0.130625 2.6679e-06 3.03292e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of providing ||| 0.00868307 0.130625 1.60074e-05 2.70797e-05 2.718 ||| 0-0 ||| 691 374827 +del ||| of public ||| 0.00234742 0.130625 2.6679e-06 4.76697e-05 2.718 ||| 0-0 ||| 426 374827 +del ||| of purely ||| 0.0714286 0.130625 2.6679e-06 7.55163e-06 2.718 ||| 0-0 ||| 14 374827 +del ||| of qualified majority ||| 0.0384615 0.130625 2.6679e-06 1.62864e-10 2.718 ||| 0-0 ||| 26 374827 +del ||| of qualified ||| 0.0625 0.130625 2.6679e-06 4.0413e-06 2.718 ||| 0-0 ||| 16 374827 +del ||| of reaching a ||| 0.0240964 0.130625 5.33579e-06 3.53038e-07 2.718 ||| 0-0 ||| 83 374827 +del ||| of reaching ||| 0.0147059 0.130625 1.06716e-05 7.96461e-06 2.718 ||| 0-0 ||| 272 374827 +del ||| of recent years ||| 0.00724638 0.130625 2.6679e-06 2.44004e-09 2.718 ||| 0-0 ||| 138 374827 +del ||| of recent ||| 0.00210084 0.130625 2.6679e-06 1.43363e-05 2.718 ||| 0-0 ||| 476 374827 +del ||| of reconciliation ||| 0.00666667 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-0 ||| 150 374827 +del ||| of reconstituting the ||| 0.5 0.130625 2.6679e-06 7.24388e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| of reconstituting ||| 0.5 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| of redistribution ||| 0.0344828 0.130625 2.6679e-06 4.1298e-07 2.718 ||| 0-0 ||| 29 374827 +del ||| of reference if I were to deal ||| 1 0.130625 2.6679e-06 1.0052e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| of reference if I were to ||| 1 0.130625 2.6679e-06 2.36741e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| of reference if I were ||| 1 0.130625 2.6679e-06 2.66425e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of reference if I ||| 1 0.130625 2.6679e-06 1.48724e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of reference if ||| 1 0.130625 2.6679e-06 2.10256e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of reference ||| 0.00507614 0.130625 5.33579e-06 2.51623e-05 2.718 ||| 0-0 ||| 394 374827 +del ||| of refugee ||| 0.0277778 0.0738898 2.6679e-06 1.58997e-05 2.718 ||| 0-0 0-1 ||| 36 374827 +del ||| of relations between the ||| 0.00529101 0.0732944 2.6679e-06 2.70465e-10 2.718 ||| 0-3 ||| 189 374827 +del ||| of repression - ||| 0.333333 0.130625 2.6679e-06 4.45086e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| of repression ||| 0.00636943 0.130625 2.6679e-06 1.17994e-06 2.718 ||| 0-0 ||| 157 374827 +del ||| of reproducing the ||| 0.166667 0.130625 2.6679e-06 7.24388e-09 2.718 ||| 0-0 ||| 6 374827 +del ||| of reproducing ||| 0.111111 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 9 374827 +del ||| of research ||| 0.000807102 0.130625 2.6679e-06 1.60177e-05 2.718 ||| 0-0 ||| 1239 374827 +del ||| of respect for the ||| 0.00473934 0.0725948 2.6679e-06 4.76825e-07 2.718 ||| 0-0 0-2 0-3 ||| 211 374827 +del ||| of respect for ||| 0.0013369 0.0722451 2.6679e-06 1.37289e-06 2.718 ||| 0-0 0-2 ||| 748 374827 +del ||| of responsibility for ||| 0.00714286 0.130625 2.6679e-06 2.61858e-07 2.718 ||| 0-0 ||| 140 374827 +del ||| of responsibility ||| 0.00162734 0.130625 5.33579e-06 3.40708e-05 2.718 ||| 0-0 ||| 1229 374827 +del ||| of restricting the availability ||| 1 0.130625 2.6679e-06 5.29527e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of restricting the ||| 0.0384615 0.130625 2.6679e-06 7.78717e-08 2.718 ||| 0-0 ||| 26 374827 +del ||| of restricting ||| 0.0107527 0.130625 2.6679e-06 1.26844e-06 2.718 ||| 0-0 ||| 93 374827 +del ||| of review ||| 0.0294118 0.130625 2.6679e-06 1.11505e-05 2.718 ||| 0-0 ||| 34 374827 +del ||| of reviving ||| 0.0666667 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-0 ||| 15 374827 +del ||| of rice ||| 0.0285714 0.130625 2.6679e-06 1.06195e-06 2.718 ||| 0-0 ||| 35 374827 +del ||| of rights out ||| 1 0.130625 2.6679e-06 2.26095e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of rights ||| 0.00462963 0.130625 8.00369e-06 5.90266e-05 2.718 ||| 0-0 ||| 648 374827 +del ||| of risk ||| 0.00413223 0.130625 2.6679e-06 3.45133e-05 2.718 ||| 0-0 ||| 242 374827 +del ||| of road ||| 0.0107527 0.130625 2.6679e-06 2.63127e-05 2.718 ||| 0-0 ||| 93 374827 +del ||| of roads ||| 0.0222222 0.130625 2.6679e-06 3.51033e-06 2.718 ||| 0-0 ||| 45 374827 +del ||| of running ||| 0.0588235 0.130625 8.00369e-06 2.25074e-05 2.718 ||| 0-0 ||| 51 374827 +del ||| of safety ||| 0.0011274 0.130625 2.6679e-06 1.49558e-05 2.718 ||| 0-0 ||| 887 374827 +del ||| of sales ||| 0.0212766 0.130625 2.6679e-06 2.53688e-06 2.718 ||| 0-0 ||| 47 374827 +del ||| of savings ||| 0.0106383 0.130625 2.6679e-06 2.44838e-06 2.718 ||| 0-0 ||| 94 374827 +del ||| of saying ||| 0.00724638 0.130625 2.6679e-06 5.23304e-05 2.718 ||| 0-0 ||| 138 374827 +del ||| of securing ||| 0.00632911 0.130625 2.6679e-06 3.83481e-06 2.718 ||| 0-0 ||| 158 374827 +del ||| of sense ||| 0.0212766 0.130625 2.6679e-06 5.25369e-05 2.718 ||| 0-0 ||| 47 374827 +del ||| of setting aside ||| 0.166667 0.130625 2.6679e-06 1.97567e-09 2.718 ||| 0-0 ||| 6 374827 +del ||| of setting ||| 0.00921659 0.130625 5.33579e-06 2.80236e-05 2.718 ||| 0-0 ||| 217 374827 +del ||| of shock ||| 0.0714286 0.130625 2.6679e-06 2.65487e-06 2.718 ||| 0-0 ||| 14 374827 +del ||| of short ||| 0.375 0.130625 4.00185e-05 4.16225e-05 2.718 ||| 0-0 ||| 40 374827 +del ||| of similar projects such as the ||| 1 0.130625 2.6679e-06 7.59609e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| of similar projects such as ||| 1 0.130625 2.6679e-06 1.23731e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| of similar projects such ||| 1 0.130625 2.6679e-06 1.21253e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of similar projects ||| 0.5 0.130625 2.6679e-06 5.86074e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| of similar ||| 0.03125 0.130625 2.6679e-06 1.18879e-05 2.718 ||| 0-0 ||| 32 374827 +del ||| of social ||| 0.00294985 0.130625 2.6679e-06 3.0472e-05 2.718 ||| 0-0 ||| 339 374827 +del ||| of society ||| 0.000738552 0.130625 2.6679e-06 1.70797e-05 2.718 ||| 0-0 ||| 1354 374827 +del ||| of solving the ||| 0.0217391 0.10196 2.6679e-06 2.56133e-07 2.718 ||| 0-0 0-2 ||| 46 374827 +del ||| of solving ||| 0.00666667 0.130625 2.6679e-06 7.37464e-07 2.718 ||| 0-0 ||| 150 374827 +del ||| of some Members from the ||| 1 0.082213 2.6679e-06 6.57504e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| of some form of ||| 0.1 0.130625 2.6679e-06 7.95173e-09 2.718 ||| 0-0 ||| 10 374827 +del ||| of some form ||| 0.0909091 0.130625 2.6679e-06 1.46268e-07 2.718 ||| 0-0 ||| 11 374827 +del ||| of some of the things said by ||| 0.5 0.0883915 2.6679e-06 2.9314e-15 2.718 ||| 0-0 0-6 ||| 2 374827 +del ||| of some ||| 0.00218341 0.130625 1.33395e-05 0.000321328 2.718 ||| 0-0 ||| 2290 374827 +del ||| of someone to accompany ||| 1 0.130625 2.6679e-06 4.58813e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of someone to ||| 1 0.130625 2.6679e-06 1.43379e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| of someone ||| 0.0212766 0.130625 5.33579e-06 1.61357e-05 2.718 ||| 0-0 ||| 94 374827 +del ||| of something in the ||| 0.333333 0.0740824 2.6679e-06 1.52921e-06 2.718 ||| 0-0 0-2 0-3 ||| 3 374827 +del ||| of sound ||| 0.00980392 0.130625 2.6679e-06 1.75221e-05 2.718 ||| 0-0 ||| 102 374827 +del ||| of speaker ||| 0.25 0.130625 2.6679e-06 5.51623e-06 2.718 ||| 0-0 ||| 4 374827 +del ||| of spectacles ||| 0.25 0.130625 2.6679e-06 2.0649e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| of spectrum ||| 0.0384615 0.119254 2.6679e-06 4.0295e-05 2.718 ||| 0-0 0-1 ||| 26 374827 +del ||| of stagnant ||| 0.5 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| of standards ||| 0.00332226 0.130625 2.6679e-06 2.15634e-05 2.718 ||| 0-0 ||| 301 374827 +del ||| of stars ||| 0.2 0.130625 5.33579e-06 4.1298e-07 2.718 ||| 0-0 ||| 10 374827 +del ||| of starvation ||| 0.0172414 0.130625 2.6679e-06 2.0649e-07 2.718 ||| 0-0 ||| 58 374827 +del ||| of statistics , ||| 0.0333333 0.130625 2.6679e-06 3.79927e-07 2.718 ||| 0-0 ||| 30 374827 +del ||| of statistics ||| 0.00595238 0.130625 2.6679e-06 3.18584e-06 2.718 ||| 0-0 ||| 168 374827 +del ||| of step ||| 0.027027 0.130625 2.6679e-06 4.35104e-05 2.718 ||| 0-0 ||| 37 374827 +del ||| of straitjacketed ||| 0.5 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| of stressing - with ||| 1 0.130625 2.6679e-06 2.8461e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of stressing - ||| 1 0.130625 2.6679e-06 4.45086e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of stressing ||| 0.0714286 0.130625 2.6679e-06 1.17994e-06 2.718 ||| 0-0 ||| 14 374827 +del ||| of submission ||| 0.0714286 0.130625 2.6679e-06 2.53688e-06 2.718 ||| 0-0 ||| 14 374827 +del ||| of subsidiarity is totally out of place ||| 1 0.130625 2.6679e-06 6.75903e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| of subsidiarity is totally out of ||| 1 0.130625 2.6679e-06 4.49105e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| of subsidiarity is totally out ||| 1 0.130625 2.6679e-06 8.26107e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| of subsidiarity is totally ||| 1 0.130625 2.6679e-06 2.15671e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of subsidiarity is ||| 0.0232558 0.130625 2.6679e-06 4.99239e-08 2.718 ||| 0-0 ||| 43 374827 +del ||| of subsidiarity ||| 0.000469704 0.130625 2.6679e-06 1.59292e-06 2.718 ||| 0-0 ||| 2129 374827 +del ||| of such a ||| 0.014218 0.130625 2.40111e-05 2.70518e-05 2.718 ||| 0-0 ||| 633 374827 +del ||| of such an ||| 0.00598802 0.130625 2.6679e-06 2.71258e-06 2.718 ||| 0-0 ||| 167 374827 +del ||| of such policies ||| 0.125 0.130625 2.6679e-06 4.02185e-08 2.718 ||| 0-0 ||| 8 374827 +del ||| of such ||| 0.00587422 0.130625 4.53543e-05 0.000610296 2.718 ||| 0-0 ||| 2894 374827 +del ||| of sufficient ||| 0.0181818 0.130625 2.6679e-06 1.43363e-05 2.718 ||| 0-0 ||| 55 374827 +del ||| of support in ||| 0.0217391 0.130625 2.6679e-06 2.15876e-06 2.718 ||| 0-0 ||| 46 374827 +del ||| of support ||| 0.000804505 0.130625 2.6679e-06 0.000100856 2.718 ||| 0-0 ||| 1243 374827 +del ||| of supporting the ||| 0.00740741 0.0680237 2.6679e-06 1.33189e-07 2.718 ||| 0-0 0-1 0-2 ||| 135 374827 +del ||| of supporting ||| 0.00230947 0.130625 2.6679e-06 9.43954e-06 2.718 ||| 0-0 ||| 433 374827 +del ||| of surveillance ||| 0.0222222 0.130625 2.6679e-06 7.37464e-07 2.718 ||| 0-0 ||| 45 374827 +del ||| of sweetening ||| 0.666667 0.130625 5.33579e-06 2.0649e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| of taking things ||| 0.5 0.130625 2.6679e-06 5.15266e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| of taking ||| 0.00172117 0.130625 2.6679e-06 0.000125369 2.718 ||| 0-0 ||| 581 374827 +del ||| of talk about the ||| 1 0.10196 2.6679e-06 1.16354e-08 2.718 ||| 0-0 0-3 ||| 1 374827 +del ||| of talk about ||| 0.0588235 0.130625 2.6679e-06 3.3501e-08 2.718 ||| 0-0 ||| 17 374827 +del ||| of talk ||| 0.0204082 0.130625 2.6679e-06 2.36873e-05 2.718 ||| 0-0 ||| 49 374827 +del ||| of talking ||| 0.0192308 0.130625 2.6679e-06 3.22714e-05 2.718 ||| 0-0 ||| 52 374827 +del ||| of ten ||| 0.00357143 0.130625 2.6679e-06 3.30384e-06 2.718 ||| 0-0 ||| 280 374827 +del ||| of that content ||| 0.2 0.130625 2.6679e-06 2.44633e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| of that country ' s ||| 0.333333 0.130625 2.6679e-06 1.16692e-11 2.718 ||| 0-0 ||| 3 374827 +del ||| of that country ' ||| 0.25 0.130625 2.6679e-06 6.13428e-09 2.718 ||| 0-0 ||| 4 374827 +del ||| of that country ||| 0.00694444 0.130625 5.33579e-06 1.78587e-06 2.718 ||| 0-0 ||| 288 374827 +del ||| of that court ||| 0.5 0.130625 2.6679e-06 1.48368e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| of that fact ||| 0.0294118 0.130625 2.6679e-06 1.45356e-05 2.718 ||| 0-0 ||| 34 374827 +del ||| of that in ||| 0.0181818 0.0744764 2.6679e-06 0.000133811 2.718 ||| 0-0 0-2 ||| 55 374827 +del ||| of that of ||| 0.0454545 0.130625 2.6679e-06 0.000269761 2.718 ||| 0-0 ||| 22 374827 +del ||| of that there can be ||| 0.142857 0.130625 2.6679e-06 8.19886e-10 2.718 ||| 0-0 ||| 7 374827 +del ||| of that there can ||| 0.5 0.130625 2.6679e-06 4.52403e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| of that there ||| 0.1 0.130625 2.6679e-06 1.52104e-05 2.718 ||| 0-0 ||| 10 374827 +del ||| of that ||| 0.0330438 0.130625 0.000517572 0.00496213 2.718 ||| 0-0 ||| 5871 374827 +del ||| of the ! ||| 1 0.10196 2.6679e-06 4.72309e-06 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the ' everything ||| 1 0.10196 2.6679e-06 3.25523e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the ' ||| 0.026465 0.10196 3.73506e-05 0.000351916 2.718 ||| 0-0 0-1 ||| 529 374827 +del ||| of the " ||| 0.025641 0.10196 2.6679e-06 2.42609e-05 2.718 ||| 0-0 0-1 ||| 39 374827 +del ||| of the , ||| 0.03125 0.10196 2.6679e-06 0.012218 2.718 ||| 0-0 0-1 ||| 32 374827 +del ||| of the . ||| 0.0384615 0.130625 2.6679e-06 5.48543e-05 2.718 ||| 0-0 ||| 26 374827 +del ||| of the 12 ||| 0.0208333 0.10196 2.6679e-06 1.43434e-06 2.718 ||| 0-0 0-1 ||| 48 374827 +del ||| of the 1981 ||| 1 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the 2006 ||| 0.333333 0.10196 2.6679e-06 9.63059e-07 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the 21st ||| 0.285714 0.0786683 5.33579e-06 4.03665e-06 2.718 ||| 0-0 0-1 0-2 ||| 7 374827 +del ||| of the Action ||| 1 0.10196 2.6679e-06 9.22078e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the American ||| 0.0322581 0.10196 2.6679e-06 2.6228e-06 2.718 ||| 0-0 0-1 ||| 31 374827 +del ||| of the Amsterdam ||| 0.0625 0.10196 2.6679e-06 1.06551e-06 2.718 ||| 0-0 0-1 ||| 16 374827 +del ||| of the Arctic ||| 0.0149254 0.112023 2.6679e-06 1.80317e-05 2.718 ||| 0-0 0-1 0-2 ||| 67 374827 +del ||| of the Atlantic ||| 0.00357143 0.102953 2.6679e-06 2.05931e-05 2.718 ||| 0-0 0-1 0-2 ||| 280 374827 +del ||| of the Austrian ||| 0.133333 0.10196 5.33579e-06 1.17821e-06 2.718 ||| 0-0 0-1 ||| 15 374827 +del ||| of the Baltic Sea ||| 0.00724638 0.0914416 2.6679e-06 6.9873e-10 2.718 ||| 0-0 0-1 0-2 ||| 138 374827 +del ||| of the Baltic ||| 0.0135135 0.0914416 2.6679e-06 3.17605e-05 2.718 ||| 0-0 0-1 0-2 ||| 74 374827 +del ||| of the Batzeli ||| 1 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Bay ||| 0.1 0.10196 2.6679e-06 3.68831e-07 2.718 ||| 0-0 0-1 ||| 10 374827 +del ||| of the Belarus ||| 0.6 0.10196 8.00369e-06 1.21919e-06 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| of the Bloc ||| 1 0.199552 2.6679e-06 2.01833e-06 2.718 ||| 0-0 0-1 0-2 ||| 1 374827 +del ||| of the British government 's attitude of ||| 1 0.130625 2.6679e-06 2.30685e-19 2.718 ||| 0-6 ||| 1 374827 +del ||| of the British ||| 0.0147059 0.0698436 2.6679e-06 4.71284e-06 2.718 ||| 0-0 0-1 0-2 ||| 68 374827 +del ||| of the Broadcasting ||| 1 0.10196 2.6679e-06 7.17172e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Burmese ||| 0.222222 0.10196 5.33579e-06 4.8153e-07 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| of the Chinese ||| 0.04 0.10196 2.6679e-06 1.21919e-06 2.718 ||| 0-0 0-1 ||| 25 374827 +del ||| of the Clean Development ||| 1 0.10196 2.6679e-06 1.12442e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Clean ||| 1 0.10196 2.6679e-06 2.56133e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Commission 's draft to ||| 1 0.130625 2.6679e-06 9.39752e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| of the Commission 's draft ||| 0.333333 0.130625 2.6679e-06 1.05759e-12 2.718 ||| 0-0 ||| 3 374827 +del ||| of the Commission 's ||| 0.0127389 0.130625 5.33579e-06 2.01445e-08 2.718 ||| 0-0 ||| 157 374827 +del ||| of the Commission , ||| 0.000295159 0.10196 2.6679e-06 7.13654e-06 2.718 ||| 0-0 0-1 ||| 3388 374827 +del ||| of the Commission ||| 0.000348724 0.10196 1.33395e-05 5.98429e-05 2.718 ||| 0-0 0-1 ||| 14338 374827 +del ||| of the Committee on Budgets taken on ||| 1 0.130625 2.6679e-06 1.13901e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| of the Committee on Budgets taken ||| 0.333333 0.130625 2.6679e-06 1.70229e-16 2.718 ||| 0-0 ||| 3 374827 +del ||| of the Committee on Budgets ||| 0.00132626 0.130625 2.6679e-06 1.86757e-13 2.718 ||| 0-0 ||| 754 374827 +del ||| of the Committee on ||| 0.000120861 0.130625 2.6679e-06 1.84908e-08 2.718 ||| 0-0 ||| 8274 374827 +del ||| of the Committee ||| 0.00020674 0.130625 5.33579e-06 2.76354e-06 2.718 ||| 0-0 ||| 9674 374827 +del ||| of the Common ||| 0.016129 0.10196 2.6679e-06 3.35022e-06 2.718 ||| 0-0 0-1 ||| 62 374827 +del ||| of the Community at international level in ||| 1 0.0183279 2.6679e-06 4.03967e-18 2.718 ||| 0-6 ||| 1 374827 +del ||| of the Community ||| 0.00186916 0.10196 5.33579e-06 1.65872e-05 2.718 ||| 0-0 0-1 ||| 1070 374827 +del ||| of the Confederal ||| 0.555556 0.10196 1.33395e-05 1.03478e-06 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| of the Consumer ||| 1 0.10196 1.33395e-05 1.11674e-05 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| of the Council 's ||| 0.0465116 0.091567 5.33579e-06 1.84718e-06 2.718 ||| 0-0 0-1 0-2 ||| 43 374827 +del ||| of the Council . - ||| 0.00168634 0.130625 2.6679e-06 7.15515e-11 2.718 ||| 0-0 ||| 593 374827 +del ||| of the Council . ||| 0.00123457 0.130625 5.33579e-06 1.89686e-08 2.718 ||| 0-0 ||| 1620 374827 +del ||| of the Council is concerned , I ||| 1 0.130625 2.6679e-06 2.66323e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of the Council is concerned , ||| 0.5 0.130625 2.6679e-06 3.76508e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| of the Council is concerned ||| 0.333333 0.130625 2.6679e-06 3.15717e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| of the Council is ||| 0.00806452 0.130625 2.6679e-06 1.96268e-07 2.718 ||| 0-0 ||| 124 374827 +del ||| of the Council of Europe , and ||| 0.0625 0.130625 2.6679e-06 2.57325e-13 2.718 ||| 0-0 ||| 16 374827 +del ||| of the Council of Europe , ||| 0.00934579 0.130625 2.6679e-06 2.05435e-11 2.718 ||| 0-0 ||| 107 374827 +del ||| of the Council of Europe ||| 0.00232558 0.130625 2.6679e-06 1.72265e-10 2.718 ||| 0-0 ||| 430 374827 +del ||| of the Council of ||| 0.00228571 0.130625 5.33579e-06 3.40445e-07 2.718 ||| 0-0 ||| 875 374827 +del ||| of the Council ||| 0.000914381 0.130625 2.93469e-05 6.26233e-06 2.718 ||| 0-0 ||| 12030 374827 +del ||| of the Court of Auditors ' ||| 0.0555556 0.130625 2.6679e-06 2.05743e-15 2.718 ||| 0-0 ||| 18 374827 +del ||| of the Court of Auditors ||| 0.00224215 0.130625 2.6679e-06 5.98979e-13 2.718 ||| 0-0 ||| 446 374827 +del ||| of the Court of ||| 0.00115075 0.130625 2.6679e-06 4.60753e-08 2.718 ||| 0-0 ||| 869 374827 +del ||| of the Court ||| 0.000881834 0.130625 2.6679e-06 8.47534e-07 2.718 ||| 0-0 ||| 1134 374827 +del ||| of the Danish ||| 0.166667 0.10196 2.6679e-06 6.96681e-07 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| of the Delors Commission ||| 0.25 0.0732944 2.6679e-06 7.72007e-12 2.718 ||| 0-1 ||| 4 374827 +del ||| of the Delors ||| 0.25 0.0732944 2.6679e-06 1.3217e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| of the Democratic Republic of ||| 0.02 0.111515 2.6679e-06 2.8424e-11 2.718 ||| 0-0 0-1 0-4 ||| 50 374827 +del ||| of the EC ||| 0.0923077 0.10196 1.60074e-05 1.91587e-06 2.718 ||| 0-0 0-1 ||| 65 374827 +del ||| of the ECB ||| 0.00706714 0.10196 5.33579e-06 8.81097e-07 2.718 ||| 0-0 0-1 ||| 283 374827 +del ||| of the EMI ||| 0.0454545 0.123222 2.6679e-06 4.03665e-06 2.718 ||| 0-0 0-1 0-2 ||| 22 374827 +del ||| of the EP ||| 0.0208333 0.130625 2.6679e-06 9.05485e-08 2.718 ||| 0-0 ||| 48 374827 +del ||| of the EU ' s ||| 0.133333 0.109345 5.33579e-06 4.45658e-10 2.718 ||| 0-0 0-3 0-4 ||| 15 374827 +del ||| of the EU 's ||| 0.0218978 0.10196 8.00369e-06 9.65413e-08 2.718 ||| 0-0 0-1 ||| 137 374827 +del ||| of the EU Treaty ||| 0.00819672 0.130625 2.6679e-06 7.67034e-10 2.718 ||| 0-0 ||| 122 374827 +del ||| of the EU ||| 0.00371058 0.10196 6.40295e-05 5.06938e-05 2.718 ||| 0-0 0-1 ||| 6468 374827 +del ||| of the EU-Russia ||| 0.5 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the Ecofin ||| 0.2 0.0976262 2.6679e-06 1.50709e-05 2.718 ||| 0-0 0-1 0-2 ||| 5 374827 +del ||| of the English ||| 0.0357143 0.10196 2.6679e-06 1.58802e-06 2.718 ||| 0-0 0-1 ||| 28 374827 +del ||| of the Erika ||| 0.0144928 0.111347 2.6679e-06 1.45381e-05 2.718 ||| 0-0 0-1 0-2 ||| 69 374827 +del ||| of the European Agricultural ||| 1 0.10196 2.6679e-06 8.56483e-10 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the European Central Bank and the ||| 0.0294118 0.130625 2.6679e-06 2.87653e-17 2.718 ||| 0-0 ||| 34 374827 +del ||| of the European Central Bank and ||| 0.0106383 0.130625 2.6679e-06 4.68552e-16 2.718 ||| 0-0 ||| 94 374827 +del ||| of the European Central Bank ||| 0.00150602 0.130625 2.6679e-06 3.74067e-14 2.718 ||| 0-0 ||| 664 374827 +del ||| of the European Central ||| 0.0909091 0.130625 2.6679e-06 1.35042e-09 2.718 ||| 0-0 ||| 11 374827 +del ||| of the European Communities ||| 0.0031746 0.10196 2.6679e-06 5.31019e-09 2.718 ||| 0-0 0-1 ||| 315 374827 +del ||| of the European Council 's ||| 0.2 0.150218 2.6679e-06 8.41413e-10 2.718 ||| 0-0 0-4 ||| 5 374827 +del ||| of the European Food Safety Authority ||| 0.025641 0.10196 2.6679e-06 7.71889e-19 2.718 ||| 0-0 0-1 ||| 39 374827 +del ||| of the European Food Safety ||| 1 0.10196 2.6679e-06 9.77075e-14 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the European Food ||| 0.142857 0.10196 2.6679e-06 6.30371e-09 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| of the European Liberal , Democrat and ||| 0.0238095 0.10196 2.6679e-06 1.79626e-16 2.718 ||| 0-0 0-1 ||| 42 374827 +del ||| of the European Liberal , Democrat ||| 0.0204082 0.10196 2.6679e-06 1.43404e-14 2.718 ||| 0-0 0-1 ||| 49 374827 +del ||| of the European Liberal , ||| 0.004329 0.10196 2.6679e-06 2.65563e-10 2.718 ||| 0-0 0-1 ||| 231 374827 +del ||| of the European Liberal ||| 0.00364964 0.10196 2.6679e-06 2.22685e-09 2.718 ||| 0-0 0-1 ||| 274 374827 +del ||| of the European Order ||| 0.5 0.10196 2.6679e-06 1.71297e-09 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the European Outline ||| 1 0.10196 2.6679e-06 1.37037e-10 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the European Parliament , ||| 0.00069735 0.130625 2.6679e-06 4.14526e-09 2.718 ||| 0-0 ||| 1434 374827 +del ||| of the European Parliament and of the ||| 0.0015949 0.10196 2.6679e-06 2.52362e-10 2.718 ||| 0-0 0-1 0-5 0-6 ||| 627 374827 +del ||| of the European Parliament delegation to the ||| 0.2 0.10196 2.6679e-06 1.54476e-14 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| of the European Parliament delegation to ||| 0.0416667 0.10196 2.6679e-06 2.51623e-13 2.718 ||| 0-0 0-1 ||| 24 374827 +del ||| of the European Parliament delegation ||| 0.0188679 0.10196 2.6679e-06 2.83174e-12 2.718 ||| 0-0 0-1 ||| 53 374827 +del ||| of the European Parliament ||| 0.000251699 0.130625 5.33579e-06 3.47597e-08 2.718 ||| 0-0 ||| 7946 374827 +del ||| of the European People 's Party ( ||| 0.00105374 0.130625 2.6679e-06 9.84508e-19 2.718 ||| 0-0 ||| 949 374827 +del ||| of the European People 's Party / ||| 0.333333 0.10196 2.6679e-06 1.32832e-18 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the European People 's Party ||| 0.00208333 0.130625 8.00369e-06 1.02085e-15 2.718 ||| 0-0 ||| 1440 374827 +del ||| of the European People 's ||| 0.0508475 0.130625 8.00369e-06 6.76956e-12 2.718 ||| 0-0 ||| 59 374827 +del ||| of the European People ||| 0.0375 0.130625 8.00369e-06 3.5547e-09 2.718 ||| 0-0 ||| 80 374827 +del ||| of the European United Left - ||| 0.00389105 0.10196 2.6679e-06 5.86836e-15 2.718 ||| 0-0 0-1 ||| 257 374827 +del ||| of the European United Left ||| 0.00229885 0.10196 2.6679e-06 1.55573e-12 2.718 ||| 0-0 0-1 ||| 435 374827 +del ||| of the European United ||| 0.037037 0.10196 2.6679e-06 4.19334e-08 2.718 ||| 0-0 0-1 ||| 27 374827 +del ||| of the European Women ||| 0.666667 0.10196 1.06716e-05 4.45371e-09 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| of the European the ||| 1 0.0924045 2.6679e-06 0.000118988 2.718 ||| 0-0 0-1 0-3 ||| 1 374827 +del ||| of the European ||| 0.162434 0.10196 0.00146734 0.000342593 2.718 ||| 0-0 0-1 ||| 3386 374827 +del ||| of the Exchange ||| 1 0.130625 2.6679e-06 5.7951e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of the Executive Board ||| 0.015873 0.10196 2.6679e-06 7.57743e-12 2.718 ||| 0-0 0-1 ||| 63 374827 +del ||| of the Executive ||| 0.117647 0.130625 5.33579e-06 1.55743e-07 2.718 ||| 0-0 ||| 17 374827 +del ||| of the Federal Republic of Germany ||| 0.0294118 0.10196 2.6679e-06 7.12629e-17 2.718 ||| 0-0 0-1 ||| 34 374827 +del ||| of the Federal Republic of ||| 0.015625 0.10196 2.6679e-06 2.75146e-12 2.718 ||| 0-0 0-1 ||| 64 374827 +del ||| of the Federal Republic ||| 0.0135135 0.10196 2.6679e-06 5.06118e-11 2.718 ||| 0-0 0-1 ||| 74 374827 +del ||| of the Federal ||| 0.0909091 0.10196 2.6679e-06 1.06551e-06 2.718 ||| 0-0 0-1 ||| 11 374827 +del ||| of the Financial Times ||| 0.2 0.10196 2.6679e-06 4.13911e-12 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| of the Financial ||| 0.142857 0.10196 2.6679e-06 1.03478e-06 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| of the Finnish ||| 0.111111 0.130625 2.6679e-06 9.05485e-08 2.718 ||| 0-0 ||| 9 374827 +del ||| of the Foundation 's ||| 0.25 0.10196 2.6679e-06 7.02402e-10 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the Foundation ||| 0.037037 0.10196 2.6679e-06 3.68831e-07 2.718 ||| 0-0 0-1 ||| 27 374827 +del ||| of the Fourth ACP-EC ||| 1 0.10196 2.6679e-06 5.73737e-14 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Fourth ||| 0.0149254 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-0 0-1 ||| 67 374827 +del ||| of the French ||| 0.0172414 0.10196 2.6679e-06 3.83175e-06 2.718 ||| 0-0 0-1 ||| 58 374827 +del ||| of the GUE / NGL Group . ||| 0.00234742 0.130625 2.6679e-06 4.82696e-21 2.718 ||| 0-0 ||| 426 374827 +del ||| of the GUE / NGL Group ||| 0.00162866 0.130625 2.6679e-06 1.59358e-18 2.718 ||| 0-0 ||| 614 374827 +del ||| of the GUE / NGL ||| 0.0588235 0.130625 5.33579e-06 4.89881e-15 2.718 ||| 0-0 ||| 34 374827 +del ||| of the GUE / ||| 0.00326264 0.130625 5.33579e-06 1.34953e-10 2.718 ||| 0-0 ||| 613 374827 +del ||| of the GUE ||| 0.00325733 0.130625 5.33579e-06 5.86754e-07 2.718 ||| 0-0 ||| 614 374827 +del ||| of the Gebhardt ||| 1 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Generalised ||| 0.769231 0.10196 2.6679e-05 3.02237e-06 2.718 ||| 0-0 0-1 ||| 13 374827 +del ||| of the Greek ||| 0.0666667 0.10196 5.33579e-06 1.47532e-06 2.718 ||| 0-0 0-1 ||| 30 374827 +del ||| of the Group of the European Liberal ||| 0.0416667 0.10196 2.6679e-06 2.41767e-15 2.718 ||| 0-0 0-1 ||| 24 374827 +del ||| of the Group of the European People ||| 0.0344828 0.10196 2.6679e-06 2.18335e-14 2.718 ||| 0-0 0-1 ||| 29 374827 +del ||| of the Group of the European ||| 0.00757576 0.10196 5.33579e-06 3.7195e-10 2.718 ||| 0-0 0-1 ||| 264 374827 +del ||| of the Group of the ||| 0.0046729 0.10196 1.06716e-05 1.11232e-07 2.718 ||| 0-0 0-1 ||| 856 374827 +del ||| of the Group of ||| 0.00380228 0.10196 1.06716e-05 1.81184e-06 2.718 ||| 0-0 0-1 ||| 1052 374827 +del ||| of the Group ||| 0.00275482 0.10196 1.06716e-05 3.3328e-05 2.718 ||| 0-0 0-1 ||| 1452 374827 +del ||| of the High Level ||| 0.25 0.10196 2.6679e-06 4.87677e-12 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the High ||| 0.00584795 0.10196 2.6679e-06 1.21919e-06 2.718 ||| 0-0 0-1 ||| 171 374827 +del ||| of the Intergroup ||| 0.0526316 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 19 374827 +del ||| of the Internet , also proposed ||| 1 0.130625 2.6679e-06 2.10508e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| of the Internet , also ||| 1 0.130625 2.6679e-06 1.88627e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of the Internet , ||| 0.0119048 0.130625 2.6679e-06 3.73622e-08 2.718 ||| 0-0 ||| 84 374827 +del ||| of the Internet ||| 0.0021322 0.130625 2.6679e-06 3.13298e-07 2.718 ||| 0-0 ||| 469 374827 +del ||| of the Irish ||| 0.025 0.10196 2.6679e-06 2.6228e-06 2.718 ||| 0-0 0-1 ||| 40 374827 +del ||| of the Islamic regime in ||| 0.333333 0.130625 2.6679e-06 7.84251e-14 2.718 ||| 0-0 ||| 3 374827 +del ||| of the Islamic regime ||| 0.333333 0.130625 2.6679e-06 3.66395e-12 2.718 ||| 0-0 ||| 3 374827 +del ||| of the Islamic ||| 0.25 0.130625 2.6679e-06 1.3039e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| of the Israeli ||| 0.117647 0.10196 5.33579e-06 8.0938e-07 2.718 ||| 0-0 0-1 ||| 17 374827 +del ||| of the JPA ||| 0.0625 0.10196 2.6679e-06 7.17172e-08 2.718 ||| 0-0 0-1 ||| 16 374827 +del ||| of the JPA ’ s ||| 1 0.10196 2.6679e-06 2.37671e-13 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the JPA ’ ||| 1 0.10196 2.6679e-06 1.24939e-10 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Karas ||| 1 0.10196 2.6679e-06 1.12698e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Kyoto ||| 0.125 0.10196 2.6679e-06 4.8153e-07 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of the LDK ||| 0.5 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the Labour ||| 1 0.137101 5.33579e-06 5.5171e-05 2.718 ||| 0-0 0-1 0-2 ||| 2 374827 +del ||| of the Law ||| 0.04 0.130625 2.6679e-06 1.55743e-07 2.718 ||| 0-0 ||| 25 374827 +del ||| of the MEP ||| 0.333333 0.10196 2.6679e-06 1.17821e-06 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the Maastricht ||| 0.133333 0.10196 5.33579e-06 4.09812e-07 2.718 ||| 0-0 0-1 ||| 15 374827 +del ||| of the Madrid Protocol , and holders ||| 1 0.0732944 2.6679e-06 2.29022e-21 2.718 ||| 0-1 ||| 1 374827 +del ||| of the Madrid Protocol , and ||| 1 0.0732944 2.6679e-06 7.8973e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| of the Madrid Protocol , ||| 0.5 0.0732944 2.6679e-06 6.30477e-14 2.718 ||| 0-1 ||| 2 374827 +del ||| of the Madrid Protocol ||| 0.5 0.0732944 2.6679e-06 5.28681e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| of the Madrid ||| 0.125 0.0732944 2.6679e-06 4.72037e-08 2.718 ||| 0-1 ||| 8 374827 +del ||| of the Media ||| 0.25 0.10196 2.6679e-06 1.65974e-06 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the Member States ||| 0.000166085 0.130625 2.6679e-06 4.45319e-09 2.718 ||| 0-0 ||| 6021 374827 +del ||| of the Member from ||| 0.5 0.0911315 2.6679e-06 3.72739e-08 2.718 ||| 0-3 ||| 2 374827 +del ||| of the Member ||| 0.00512821 0.130625 2.6679e-06 9.33192e-06 2.718 ||| 0-0 ||| 195 374827 +del ||| of the Members of ||| 0.0124224 0.10196 5.33579e-06 8.2154e-07 2.718 ||| 0-0 0-1 ||| 161 374827 +del ||| of the Members ||| 0.00210526 0.10196 2.6679e-06 1.51118e-05 2.718 ||| 0-0 0-1 ||| 475 374827 +del ||| of the Moldovan ||| 1 0.10196 2.6679e-06 1.12698e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Mugabe ||| 0.5 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the National ||| 0.142857 0.069103 2.6679e-06 6.76191e-07 2.718 ||| 0-0 0-1 0-2 ||| 7 374827 +del ||| of the Nazi ||| 0.333333 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the Nepalese ||| 0.5 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the North European ||| 0.333333 0.10196 2.6679e-06 7.16019e-09 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the North ||| 0.0493827 0.173535 1.06716e-05 0.000215039 2.718 ||| 0-0 0-1 0-2 ||| 81 374827 +del ||| of the Official Control ||| 1 0.10196 2.6679e-06 2.88201e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Official ||| 0.125 0.10196 2.6679e-06 2.97114e-07 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of the Ombudsman ||| 0.00772201 0.10196 5.33579e-06 1.65974e-06 2.718 ||| 0-0 0-1 ||| 259 374827 +del ||| of the Open ||| 0.5 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the PCA ||| 0.0526316 0.10196 2.6679e-06 7.17172e-08 2.718 ||| 0-0 0-1 ||| 19 374827 +del ||| of the PPE ||| 0.047619 0.145803 8.00369e-06 5.32859e-05 2.718 ||| 0-0 0-1 0-2 ||| 63 374827 +del ||| of the PPE ­ ||| 0.5 0.145803 2.6679e-06 4.04973e-10 2.718 ||| 0-0 0-1 0-2 ||| 2 374827 +del ||| of the PPE-DE Group . - ( ||| 0.00214592 0.130625 2.6679e-06 1.28529e-18 2.718 ||| 0-0 ||| 466 374827 +del ||| of the PPE-DE Group . - ||| 0.0029985 0.130625 5.33579e-06 1.33273e-15 2.718 ||| 0-0 ||| 667 374827 +del ||| of the PPE-DE Group . ||| 0.00283286 0.130625 5.33579e-06 3.53313e-13 2.718 ||| 0-0 ||| 706 374827 +del ||| of the PPE-DE Group ||| 0.00203046 0.130625 5.33579e-06 1.16643e-10 2.718 ||| 0-0 ||| 985 374827 +del ||| of the PPE-DE ||| 0.031746 0.130625 5.33579e-06 3.58572e-07 2.718 ||| 0-0 ||| 63 374827 +del ||| of the Parliament ||| 0.0033557 0.10196 2.6679e-06 5.88081e-05 2.718 ||| 0-0 0-1 ||| 298 374827 +del ||| of the Party ||| 0.00419287 0.130625 5.33579e-06 2.73094e-06 2.718 ||| 0-0 ||| 477 374827 +del ||| of the People ||| 0.111111 0.10196 2.6679e-06 6.014e-06 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| of the Polish ||| 0.222222 0.10196 5.33579e-06 1.03478e-06 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| of the Public ||| 1 0.10196 2.6679e-06 1.09522e-05 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Regional ||| 0.5 0.10196 2.6679e-06 1.33189e-06 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the Regulation concerning the ||| 1 0.10196 2.6679e-06 8.78085e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Regulation concerning ||| 1 0.10196 2.6679e-06 1.4303e-10 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Regulation ||| 0.003861 0.10196 2.6679e-06 2.32569e-06 2.718 ||| 0-0 0-1 ||| 259 374827 +del ||| of the Regulators ' ||| 1 0.10196 2.6679e-06 4.92683e-10 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Regulators ||| 1 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Research ||| 0.25 0.10196 2.6679e-06 3.5039e-06 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the Romanian ||| 0.333333 0.10196 2.6679e-06 2.97114e-07 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the Rome Statute of the ||| 0.0909091 0.10196 2.6679e-06 1.99436e-13 2.718 ||| 0-0 0-1 0-4 0-5 ||| 11 374827 +del ||| of the Rules of Procedure ) ||| 0.0612245 0.10196 1.60074e-05 3.61551e-14 2.718 ||| 0-0 0-1 ||| 98 374827 +del ||| of the Rules of Procedure ||| 0.00492207 0.10196 1.60074e-05 2.51549e-11 2.718 ||| 0-0 0-1 ||| 1219 374827 +del ||| of the Rules of ||| 0.181818 0.111515 7.47011e-05 2.14275e-06 2.718 ||| 0-0 0-1 0-3 ||| 154 374827 +del ||| of the Rules ||| 0.0389105 0.10196 2.6679e-05 7.26393e-06 2.718 ||| 0-0 0-1 ||| 257 374827 +del ||| of the Russian ||| 0.157895 0.10196 8.00369e-06 1.91587e-06 2.718 ||| 0-0 0-1 ||| 19 374827 +del ||| of the Safety of ||| 1 0.10196 2.6679e-06 8.63313e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Safety ||| 1 0.10196 2.6679e-06 1.58802e-06 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Schengen ||| 0.0227273 0.130625 2.6679e-06 1.95585e-07 2.718 ||| 0-0 ||| 44 374827 +del ||| of the Sea ||| 0.012987 0.152862 5.33579e-06 0.000145063 2.718 ||| 0-0 0-1 0-2 ||| 154 374827 +del ||| of the Secretariat ||| 0.0434783 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-0 0-1 ||| 23 374827 +del ||| of the Seventh Framework ||| 1 0.10196 2.6679e-06 1.76219e-13 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Seventh ||| 0.0106383 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 94 374827 +del ||| of the Single Area Payments ||| 1 0.10196 2.6679e-06 7.65673e-18 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Single Area ||| 1 0.10196 2.6679e-06 6.96067e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Single ||| 0.0344828 0.10196 5.33579e-06 8.0938e-07 2.718 ||| 0-0 0-1 ||| 58 374827 +del ||| of the Socialist ||| 0.0952381 0.10196 5.33579e-06 8.50361e-07 2.718 ||| 0-0 0-1 ||| 21 374827 +del ||| of the Sound ||| 1 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the South ||| 0.012931 0.131129 8.00369e-06 0.000126355 2.718 ||| 0-0 0-1 0-2 ||| 232 374827 +del ||| of the Southern ||| 0.0833333 0.150978 2.6679e-06 3.40452e-05 2.718 ||| 0-0 0-1 0-2 ||| 12 374827 +del ||| of the Spanish ||| 0.0909091 0.10196 5.33579e-06 2.2847e-06 2.718 ||| 0-0 0-1 ||| 22 374827 +del ||| of the Special ||| 0.333333 0.10196 2.6679e-06 2.97114e-07 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the Stability and Growth ||| 0.0666667 0.130625 2.6679e-06 1.0167e-14 2.718 ||| 0-0 ||| 15 374827 +del ||| of the Stability and ||| 0.00277778 0.130625 2.6679e-06 1.22494e-09 2.718 ||| 0-0 ||| 360 374827 +del ||| of the Stability ||| 0.0017094 0.130625 2.6679e-06 9.77923e-08 2.718 ||| 0-0 ||| 585 374827 +del ||| of the Standards Advisory ||| 1 0.10196 2.6679e-06 1.05937e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Standards ||| 1 0.10196 2.6679e-06 2.25397e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the State ||| 0.00757576 0.10196 5.33579e-06 1.23149e-05 2.718 ||| 0-0 0-1 ||| 264 374827 +del ||| of the Steel ||| 1 0.196927 2.6679e-06 1.42615e-05 2.718 ||| 0-0 0-1 0-2 ||| 1 374827 +del ||| of the Structural Funds ||| 0.00154321 0.10196 2.6679e-06 2.06914e-11 2.718 ||| 0-0 0-1 ||| 648 374827 +del ||| of the Structural ||| 0.0243902 0.10196 2.6679e-06 5.53247e-07 2.718 ||| 0-0 0-1 ||| 41 374827 +del ||| of the Sudanese ||| 1 0.10196 2.6679e-06 2.25397e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Supplementary ||| 1 0.10196 2.6679e-06 1.84416e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Thematic Territorial ||| 1 0.10196 2.6679e-06 5.0202e-14 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Thematic ||| 1 0.10196 2.6679e-06 7.17172e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the Treaty ||| 0.000397456 0.130625 5.33579e-06 1.55019e-06 2.718 ||| 0-0 ||| 5032 374827 +del ||| of the Turkish ||| 0.09375 0.10196 8.00369e-06 3.06335e-06 2.718 ||| 0-0 0-1 ||| 32 374827 +del ||| of the UK ||| 0.0141844 0.108167 5.33579e-06 0.000138599 2.718 ||| 0-0 0-1 0-2 ||| 141 374827 +del ||| of the UN ||| 0.00164745 0.10196 2.6679e-06 4.2723e-06 2.718 ||| 0-0 0-1 ||| 607 374827 +del ||| of the Ukraine ||| 0.111111 0.130625 2.6679e-06 1.82908e-07 2.718 ||| 0-0 ||| 9 374827 +del ||| of the Union 's established order ||| 0.333333 0.10196 2.6679e-06 8.67108e-15 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the Union 's established ||| 0.333333 0.10196 2.6679e-06 1.62807e-11 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the Union 's ||| 0.0222222 0.10196 5.33579e-06 1.08755e-07 2.718 ||| 0-0 0-1 ||| 90 374827 +del ||| of the Union for a ||| 0.2 0.130625 2.6679e-06 3.43889e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| of the Union for ||| 0.00361011 0.130625 2.6679e-06 7.75821e-08 2.718 ||| 0-0 ||| 277 374827 +del ||| of the Union ||| 0.000313676 0.130625 5.33579e-06 1.00943e-05 2.718 ||| 0-0 ||| 6376 374827 +del ||| of the United Nations ||| 0.00186393 0.130625 5.33579e-06 8.37885e-11 2.718 ||| 0-0 ||| 1073 374827 +del ||| of the United States ||| 0.00186567 0.130625 5.33579e-06 1.05777e-09 2.718 ||| 0-0 ||| 1072 374827 +del ||| of the United ||| 0.0117994 0.130625 1.06716e-05 2.21663e-06 2.718 ||| 0-0 ||| 339 374827 +del ||| of the Verts / ALE ||| 0.0294118 0.10196 2.6679e-06 1.09904e-14 2.718 ||| 0-0 0-1 ||| 34 374827 +del ||| of the Verts / ||| 0.00134771 0.10196 2.6679e-06 4.99561e-10 2.718 ||| 0-0 0-1 ||| 742 374827 +del ||| of the Verts ||| 0.00134771 0.10196 2.6679e-06 2.17201e-06 2.718 ||| 0-0 0-1 ||| 742 374827 +del ||| of the Vlaams ||| 0.25 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the West Bank ||| 0.0384615 0.10196 2.6679e-06 4.20017e-11 2.718 ||| 0-0 0-1 ||| 26 374827 +del ||| of the West ||| 0.00925926 0.10196 2.6679e-06 1.51631e-06 2.718 ||| 0-0 0-1 ||| 108 374827 +del ||| of the World ||| 0.103448 0.1018 8.00369e-06 0.000103211 2.718 ||| 0-0 0-1 0-2 ||| 29 374827 +del ||| of the above ||| 0.018018 0.10196 5.33579e-06 1.32779e-05 2.718 ||| 0-0 0-1 ||| 111 374827 +del ||| of the accession ||| 0.00699301 0.10196 2.6679e-06 3.76003e-06 2.718 ||| 0-0 0-1 ||| 143 374827 +del ||| of the act ||| 0.037037 0.10196 2.6679e-06 1.74068e-05 2.718 ||| 0-0 0-1 ||| 27 374827 +del ||| of the actual ||| 0.0897436 0.10196 1.86753e-05 1.4825e-05 2.718 ||| 0-0 0-1 ||| 78 374827 +del ||| of the administration of international ||| 1 0.10196 2.6679e-06 8.70821e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the administration of ||| 0.0384615 0.10196 2.6679e-06 1.12509e-07 2.718 ||| 0-0 0-1 ||| 26 374827 +del ||| of the administration ||| 0.00990099 0.10196 2.6679e-06 2.06955e-06 2.718 ||| 0-0 0-1 ||| 101 374827 +del ||| of the administrative ||| 0.0625 0.10196 2.6679e-06 2.10029e-06 2.718 ||| 0-0 0-1 ||| 16 374827 +del ||| of the aforementioned ||| 0.0294118 0.10196 2.6679e-06 7.37662e-07 2.718 ||| 0-0 0-1 ||| 34 374827 +del ||| of the agenda ||| 0.00420168 0.144875 2.6679e-06 0.000539078 2.718 ||| 0-0 0-1 0-2 ||| 238 374827 +del ||| of the agreement ||| 0.0017094 0.10196 5.33579e-06 1.88821e-05 2.718 ||| 0-0 0-1 ||| 1170 374827 +del ||| of the air transport ||| 1 0.10196 2.6679e-06 5.80888e-10 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the air ||| 0.037037 0.10196 5.33579e-06 5.64517e-06 2.718 ||| 0-0 0-1 ||| 54 374827 +del ||| of the alcohol ||| 0.166667 0.10196 2.6679e-06 1.47532e-06 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| of the alternative ||| 0.125 0.10196 2.6679e-06 2.5101e-06 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of the amount of ||| 0.04 0.111515 5.33579e-06 7.35306e-06 2.718 ||| 0-0 0-1 0-3 ||| 50 374827 +del ||| of the animal ||| 0.030303 0.10196 2.6679e-06 2.95065e-06 2.718 ||| 0-0 0-1 ||| 33 374827 +del ||| of the application of ||| 0.0112994 0.10196 5.33579e-06 3.38642e-07 2.718 ||| 0-0 0-1 ||| 177 374827 +del ||| of the application ||| 0.00766284 0.10196 5.33579e-06 6.22915e-06 2.718 ||| 0-0 0-1 ||| 261 374827 +del ||| of the approach ||| 0.015625 0.10196 2.6679e-06 2.24577e-05 2.718 ||| 0-0 0-1 ||| 64 374827 +del ||| of the appropriate ||| 0.111111 0.10196 2.6679e-06 1.37902e-05 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| of the as yet ||| 0.5 0.10196 2.6679e-06 2.76528e-07 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the as ||| 0.5 0.10196 2.6679e-06 0.00104547 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the assistants ||| 0.0588235 0.130625 2.6679e-06 7.24388e-08 2.718 ||| 0-0 ||| 17 374827 +del ||| of the atrocities ||| 0.0416667 0.10196 2.6679e-06 1.84416e-07 2.718 ||| 0-0 0-1 ||| 24 374827 +del ||| of the attitude ||| 0.0277778 0.10196 2.6679e-06 5.34805e-06 2.718 ||| 0-0 0-1 ||| 36 374827 +del ||| of the automotive ||| 0.333333 0.151877 2.6679e-06 1.97837e-05 2.718 ||| 0-0 0-1 0-2 ||| 3 374827 +del ||| of the balance ||| 0.0208333 0.10196 2.6679e-06 5.53247e-06 2.718 ||| 0-0 0-1 ||| 48 374827 +del ||| of the banana ||| 0.142857 0.10196 2.6679e-06 5.12266e-07 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| of the basic instrument ||| 0.5 0.10196 5.33579e-06 2.32917e-10 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the basic ||| 0.0555556 0.10196 5.33579e-06 5.53247e-06 2.718 ||| 0-0 0-1 ||| 36 374827 +del ||| of the blast ||| 0.5 0.10196 2.6679e-06 7.17172e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the blue ||| 0.0454545 0.10196 2.6679e-06 3.68831e-07 2.718 ||| 0-0 0-1 ||| 22 374827 +del ||| of the body known as the ||| 1 0.10196 2.6679e-06 6.04901e-13 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the body known as ||| 1 0.10196 2.6679e-06 9.85312e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the body known ||| 1 0.10196 2.6679e-06 9.65576e-10 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the body ||| 0.02 0.10196 2.6679e-06 8.76999e-06 2.718 ||| 0-0 0-1 ||| 50 374827 +del ||| of the book ||| 0.1 0.10196 2.6679e-06 2.76623e-06 2.718 ||| 0-0 0-1 ||| 10 374827 +del ||| of the car ||| 0.0263158 0.10196 2.6679e-06 1.95685e-06 2.718 ||| 0-0 0-1 ||| 38 374827 +del ||| of the chairman of the ||| 0.0344828 0.10196 2.6679e-06 3.3168e-09 2.718 ||| 0-0 0-1 ||| 29 374827 +del ||| of the chairman of ||| 0.0294118 0.10196 2.6679e-06 5.40267e-08 2.718 ||| 0-0 0-1 ||| 34 374827 +del ||| of the chairman ||| 0.0204082 0.10196 2.6679e-06 9.93795e-07 2.718 ||| 0-0 0-1 ||| 49 374827 +del ||| of the choice ||| 0.0487805 0.10196 5.33579e-06 4.56941e-06 2.718 ||| 0-0 0-1 ||| 41 374827 +del ||| of the close ||| 0.04 0.10196 2.6679e-06 1.51938e-05 2.718 ||| 0-0 0-1 ||| 25 374827 +del ||| of the cod ||| 0.0909091 0.110513 2.6679e-06 1.88411e-05 2.718 ||| 0-0 0-1 0-2 ||| 11 374827 +del ||| of the common ||| 0.0210526 0.10196 1.06716e-05 2.36667e-05 2.718 ||| 0-0 0-1 ||| 190 374827 +del ||| of the comprehensive ||| 0.125 0.10196 2.6679e-06 2.58182e-06 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of the conciliation procedure leave their mark ||| 1 0.130625 2.6679e-06 5.43575e-23 2.718 ||| 0-0 ||| 1 374827 +del ||| of the conciliation procedure leave their ||| 1 0.130625 2.6679e-06 1.00106e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| of the conciliation procedure leave ||| 1 0.130625 2.6679e-06 8.63651e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| of the conciliation procedure ||| 0.00970874 0.130625 2.6679e-06 9.09106e-12 2.718 ||| 0-0 ||| 103 374827 +del ||| of the conciliation ||| 0.0138889 0.130625 2.6679e-06 9.05485e-08 2.718 ||| 0-0 ||| 72 374827 +del ||| of the consultation ||| 0.0153846 0.10196 2.6679e-06 1.51631e-06 2.718 ||| 0-0 0-1 ||| 65 374827 +del ||| of the consumer ' s ||| 1 0.0997373 2.6679e-06 1.15917e-08 2.718 ||| 0-0 0-1 0-2 0-3 0-4 ||| 1 374827 +del ||| of the consumer ||| 0.0113636 0.100426 8.00369e-06 0.000233071 2.718 ||| 0-0 0-1 0-2 ||| 264 374827 +del ||| of the contents of ||| 0.0666667 0.130625 2.6679e-06 1.06328e-08 2.718 ||| 0-3 ||| 15 374827 +del ||| of the continent ||| 0.00641026 0.10196 2.6679e-06 1.17821e-06 2.718 ||| 0-0 0-1 ||| 156 374827 +del ||| of the continued ||| 0.027027 0.130625 2.6679e-06 6.19351e-07 2.718 ||| 0-0 ||| 37 374827 +del ||| of the cosmetic ||| 0.5 0.10196 2.6679e-06 2.56133e-07 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the cost of the ||| 0.0666667 0.10196 2.6679e-06 2.83124e-08 2.718 ||| 0-0 0-1 ||| 15 374827 +del ||| of the cost of ||| 0.008 0.10196 2.6679e-06 4.61176e-07 2.718 ||| 0-0 0-1 ||| 125 374827 +del ||| of the cost ||| 0.0106952 0.130625 5.33579e-06 1.49948e-06 2.718 ||| 0-0 ||| 187 374827 +del ||| of the country 's ||| 0.0666667 0.124577 5.33579e-06 1.48159e-06 2.718 ||| 0-0 0-1 0-3 ||| 30 374827 +del ||| of the country ||| 0.00194553 0.10196 8.00369e-06 3.68729e-05 2.718 ||| 0-0 0-1 ||| 1542 374827 +del ||| of the course of the ||| 0.333333 0.10196 2.6679e-06 1.32436e-05 2.718 ||| 0-0 0-1 0-3 0-4 ||| 3 374827 +del ||| of the crew ||| 0.0357143 0.10196 2.6679e-06 1.84416e-07 2.718 ||| 0-0 0-1 ||| 28 374827 +del ||| of the currency ||| 0.0217391 0.10196 2.6679e-06 3.83175e-06 2.718 ||| 0-0 0-1 ||| 46 374827 +del ||| of the current ||| 0.00579374 0.10196 1.33395e-05 1.68843e-05 2.718 ||| 0-0 0-1 ||| 863 374827 +del ||| of the curve ||| 0.2 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| of the day , ||| 0.00273224 0.10196 2.6679e-06 3.13026e-06 2.718 ||| 0-0 0-1 ||| 366 374827 +del ||| of the day ||| 0.00512164 0.10196 1.06716e-05 2.62485e-05 2.718 ||| 0-0 0-1 ||| 781 374827 +del ||| of the dead wood of ||| 1 0.111515 2.6679e-06 4.04736e-12 2.718 ||| 0-0 0-1 0-4 ||| 1 374827 +del ||| of the debate on ||| 0.00371747 0.10196 2.6679e-06 1.35663e-07 2.718 ||| 0-0 0-1 ||| 269 374827 +del ||| of the debate ||| 0.000739645 0.10196 2.6679e-06 2.02755e-05 2.718 ||| 0-0 0-1 ||| 1352 374827 +del ||| of the degree to which ||| 0.166667 0.10196 2.6679e-06 1.07106e-08 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| of the degree to ||| 0.111111 0.10196 2.6679e-06 1.26088e-06 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| of the degree ||| 0.04 0.10196 2.6679e-06 1.41898e-05 2.718 ||| 0-0 0-1 ||| 25 374827 +del ||| of the demand ||| 0.030303 0.10196 2.6679e-06 5.49149e-06 2.718 ||| 0-0 0-1 ||| 33 374827 +del ||| of the departmental ||| 1 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the detailed procedure ||| 0.166667 0.130625 2.6679e-06 4.5819e-11 2.718 ||| 0-0 ||| 6 374827 +del ||| of the detailed ||| 0.0833333 0.130625 2.6679e-06 4.56364e-07 2.718 ||| 0-0 ||| 12 374827 +del ||| of the difficulty there is crossing borders ||| 1 0.130625 2.6679e-06 8.79362e-21 2.718 ||| 0-0 ||| 1 374827 +del ||| of the difficulty there is crossing ||| 1 0.130625 2.6679e-06 2.03556e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| of the difficulty there is ||| 1 0.130625 2.6679e-06 3.13163e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of the difficulty there ||| 1 0.130625 2.6679e-06 9.99209e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of the difficulty ||| 0.0181818 0.130625 2.6679e-06 3.25974e-07 2.718 ||| 0-0 ||| 55 374827 +del ||| of the directive ||| 0.00081103 0.130625 5.33579e-06 2.02104e-06 2.718 ||| 0-0 ||| 2466 374827 +del ||| of the discharge ||| 0.00917431 0.130625 2.6679e-06 4.43687e-07 2.718 ||| 0-0 ||| 109 374827 +del ||| of the dispute ||| 0.0192308 0.10196 2.6679e-06 1.73146e-06 2.718 ||| 0-0 0-1 ||| 52 374827 +del ||| of the division of ||| 0.03125 0.130625 2.6679e-06 8.86064e-09 2.718 ||| 0-3 ||| 32 374827 +del ||| of the document 's ||| 1 0.124577 2.6679e-06 1.37908e-07 2.718 ||| 0-0 0-1 0-3 ||| 1 374827 +del ||| of the draft resolution of the ||| 1 0.10196 2.6679e-06 1.56898e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the draft resolution of ||| 1 0.10196 2.6679e-06 2.55569e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the draft resolution ||| 0.0204082 0.10196 2.6679e-06 4.70106e-10 2.718 ||| 0-0 0-1 ||| 49 374827 +del ||| of the draft ||| 0.00477099 0.10196 1.33395e-05 5.37879e-06 2.718 ||| 0-0 0-1 ||| 1048 374827 +del ||| of the duration of the ||| 0.0833333 0.10196 2.6679e-06 2.83808e-09 2.718 ||| 0-0 0-1 ||| 12 374827 +del ||| of the duration of ||| 0.111111 0.10196 2.6679e-06 4.6229e-08 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| of the duration ||| 0.0714286 0.10196 2.6679e-06 8.50361e-07 2.718 ||| 0-0 0-1 ||| 14 374827 +del ||| of the earth ||| 0.0142857 0.10196 2.6679e-06 1.47532e-06 2.718 ||| 0-0 0-1 ||| 70 374827 +del ||| of the economically ||| 0.5 0.10196 2.6679e-06 9.63059e-07 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the educational ||| 0.2 0.10196 2.6679e-06 5.12266e-07 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| of the effort ||| 0.02 0.10196 2.6679e-06 9.0671e-06 2.718 ||| 0-0 0-1 ||| 50 374827 +del ||| of the entire ||| 0.0138675 0.10196 2.40111e-05 8.11429e-06 2.718 ||| 0-0 0-1 ||| 649 374827 +del ||| of the environment ||| 0.000780031 0.10196 2.6679e-06 5.71688e-06 2.718 ||| 0-0 0-1 ||| 1282 374827 +del ||| of the euro is ||| 0.0136986 0.131651 2.6679e-06 1.01894e-05 2.718 ||| 0-0 0-1 0-2 ||| 73 374827 +del ||| of the euro ||| 0.00104112 0.130625 5.33579e-06 1.06304e-06 2.718 ||| 0-0 ||| 1921 374827 +del ||| of the existing ||| 0.0075188 0.10196 2.6679e-06 8.07331e-06 2.718 ||| 0-0 0-1 ||| 133 374827 +del ||| of the extensive ||| 0.0588235 0.10196 2.6679e-06 2.69452e-06 2.718 ||| 0-0 0-1 ||| 17 374827 +del ||| of the extreme ||| 0.015625 0.10196 2.6679e-06 1.88514e-06 2.718 ||| 0-0 0-1 ||| 64 374827 +del ||| of the fact that the ||| 0.00232558 0.10196 2.6679e-06 3.09932e-07 2.718 ||| 0-0 0-1 ||| 430 374827 +del ||| of the fact that we must ||| 0.166667 0.10196 2.6679e-06 8.85803e-11 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| of the fact that we ||| 0.0294118 0.10196 2.6679e-06 5.73113e-08 2.718 ||| 0-0 0-1 ||| 34 374827 +del ||| of the fact that ||| 0.00223839 0.10196 1.06716e-05 5.04843e-06 2.718 ||| 0-0 0-1 ||| 1787 374827 +del ||| of the fact ||| 0.0046729 0.10196 2.93469e-05 0.000300116 2.718 ||| 0-0 0-1 ||| 2354 374827 +del ||| of the farming ||| 0.111111 0.10196 2.6679e-06 1.51631e-06 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| of the fifth ||| 0.01 0.10196 2.6679e-06 1.84416e-07 2.718 ||| 0-0 0-1 ||| 100 374827 +del ||| of the financial ||| 0.0333333 0.10196 5.33579e-06 1.24993e-05 2.718 ||| 0-0 0-1 ||| 60 374827 +del ||| of the finished ||| 1 0.10196 2.6679e-06 8.0938e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the finishing ||| 1 0.10196 2.6679e-06 6.24964e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the first ||| 0.00321199 0.10196 8.00369e-06 5.51608e-05 2.718 ||| 0-0 0-1 ||| 934 374827 +del ||| of the fishing ||| 0.0588235 0.10196 2.6679e-06 4.08788e-06 2.718 ||| 0-0 0-1 ||| 17 374827 +del ||| of the flat ||| 1 0.10196 2.6679e-06 3.2785e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the fleet , ||| 0.0416667 0.130625 2.6679e-06 1.9437e-08 2.718 ||| 0-0 ||| 24 374827 +del ||| of the fleet ||| 0.00757576 0.130625 2.6679e-06 1.62987e-07 2.718 ||| 0-0 ||| 132 374827 +del ||| of the following ||| 0.0126582 0.10196 2.6679e-06 1.30935e-05 2.718 ||| 0-0 0-1 ||| 79 374827 +del ||| of the foot and ||| 0.2 0.10196 2.6679e-06 2.8618e-08 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| of the foot ||| 1 0.10196 2.6679e-06 2.2847e-06 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the football ||| 1 0.10196 2.6679e-06 1.14747e-06 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the former ||| 0.00544465 0.10196 8.00369e-06 4.64113e-06 2.718 ||| 0-0 0-1 ||| 551 374827 +del ||| of the forms of ||| 0.1 0.130625 2.6679e-06 8.78188e-08 2.718 ||| 0-3 ||| 10 374827 +del ||| of the founding of the ||| 0.5 0.10196 2.6679e-06 4.93342e-08 2.718 ||| 0-0 0-1 0-3 0-4 ||| 2 374827 +del ||| of the free ||| 0.00333333 0.10196 2.6679e-06 1.1946e-05 2.718 ||| 0-0 0-1 ||| 300 374827 +del ||| of the full ||| 0.0192308 0.10196 2.6679e-06 1.88001e-05 2.718 ||| 0-0 0-1 ||| 52 374827 +del ||| of the fundamental ||| 0.0238095 0.10196 2.6679e-06 5.05094e-06 2.718 ||| 0-0 0-1 ||| 42 374827 +del ||| of the funds ||| 0.002331 0.10196 2.6679e-06 7.81717e-06 2.718 ||| 0-0 0-1 ||| 429 374827 +del ||| of the future European Central Bank ||| 0.0833333 0.10196 2.6679e-06 5.62071e-17 2.718 ||| 0-0 0-1 ||| 12 374827 +del ||| of the future European Central ||| 0.5 0.10196 2.6679e-06 2.02914e-12 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the future European ||| 0.333333 0.10196 2.6679e-06 9.09927e-08 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the future ||| 0.000733676 0.10196 2.6679e-06 2.72115e-05 2.718 ||| 0-0 0-1 ||| 1363 374827 +del ||| of the general ||| 0.0185185 0.10196 2.6679e-06 1.79191e-05 2.718 ||| 0-0 0-1 ||| 54 374827 +del ||| of the generalised tariff preferences ||| 0.333333 0.130625 2.6679e-06 1.24504e-19 2.718 ||| 0-0 ||| 3 374827 +del ||| of the generalised tariff ||| 0.5 0.130625 2.6679e-06 4.98016e-14 2.718 ||| 0-0 ||| 2 374827 +del ||| of the generalised ||| 0.666667 0.130625 5.33579e-06 4.52742e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| of the global ||| 0.0909091 0.10196 5.33579e-06 4.68211e-06 2.718 ||| 0-0 0-1 ||| 22 374827 +del ||| of the good ||| 0.0179641 0.10196 8.00369e-06 5.31322e-05 2.718 ||| 0-0 0-1 ||| 167 374827 +del ||| of the governing ||| 0.142857 0.10196 2.6679e-06 1.98759e-06 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| of the government of the ||| 0.153846 0.0821294 5.33579e-06 5.37428e-07 2.718 ||| 0-0 0-1 0-2 0-3 0-4 ||| 13 374827 +del ||| of the great ||| 0.00224719 0.10196 2.6679e-06 4.02641e-05 2.718 ||| 0-0 0-1 ||| 445 374827 +del ||| of the gun-running and ||| 1 0.10196 2.6679e-06 5.13327e-10 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the gun-running ||| 1 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the heavy ||| 0.0769231 0.10196 2.6679e-06 1.80317e-06 2.718 ||| 0-0 0-1 ||| 13 374827 +del ||| of the highest degree ||| 0.125 0.130625 2.6679e-06 5.51802e-11 2.718 ||| 0-0 ||| 8 374827 +del ||| of the highest ||| 0.00606061 0.130625 2.6679e-06 3.98413e-07 2.718 ||| 0-0 ||| 165 374827 +del ||| of the highly competent ||| 1 0.10196 2.6679e-06 8.05794e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the highly ||| 0.111111 0.10196 2.6679e-06 6.19841e-06 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| of the holding ' s ||| 1 0.100332 2.6679e-06 3.06239e-10 2.718 ||| 0-0 0-1 0-3 0-4 ||| 1 374827 +del ||| of the honourable Member , ||| 0.0769231 0.10196 2.6679e-06 3.28648e-10 2.718 ||| 0-0 0-1 ||| 13 374827 +del ||| of the honourable Member ||| 0.0120482 0.10196 2.6679e-06 2.75585e-09 2.718 ||| 0-0 0-1 ||| 83 374827 +del ||| of the honourable ||| 0.047619 0.10196 2.6679e-06 5.34805e-06 2.718 ||| 0-0 0-1 ||| 21 374827 +del ||| of the host ||| 0.375 0.10196 8.00369e-06 1.98759e-06 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of the huge ||| 0.00961538 0.10196 2.6679e-06 5.34805e-06 2.718 ||| 0-0 0-1 ||| 104 374827 +del ||| of the ideals ||| 0.0833333 0.10196 2.6679e-06 4.8153e-07 2.718 ||| 0-0 0-1 ||| 12 374827 +del ||| of the illegal ||| 0.25 0.130625 5.33579e-06 5.86754e-07 2.718 ||| 0-0 ||| 8 374827 +del ||| of the impact of the ||| 0.0142857 0.10196 2.6679e-06 8.64923e-07 2.718 ||| 0-0 0-1 0-3 0-4 ||| 70 374827 +del ||| of the impact ||| 0.0025974 0.10196 2.6679e-06 8.44214e-06 2.718 ||| 0-0 0-1 ||| 385 374827 +del ||| of the implementation of the ||| 0.00436681 0.10196 5.33579e-06 2.65686e-08 2.718 ||| 0-0 0-1 ||| 458 374827 +del ||| of the implementation of ||| 0.00643087 0.10196 5.33579e-06 4.3277e-07 2.718 ||| 0-0 0-1 ||| 311 374827 +del ||| of the implementation ||| 0.00258732 0.10196 5.33579e-06 7.96061e-06 2.718 ||| 0-0 0-1 ||| 773 374827 +del ||| of the importance ||| 0.00131926 0.130625 2.6679e-06 2.35245e-06 2.718 ||| 0-0 ||| 758 374827 +del ||| of the incredibly ||| 1 0.10196 2.6679e-06 8.0938e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the industry as a ||| 0.333333 0.10196 2.6679e-06 6.1217e-09 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the industry as ||| 0.5 0.10196 2.6679e-06 1.38107e-07 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the industry ||| 0.00877193 0.130625 5.33579e-06 2.39229e-06 2.718 ||| 0-0 ||| 228 374827 +del ||| of the information ||| 0.00245098 0.10196 2.6679e-06 1.6956e-05 2.718 ||| 0-0 0-1 ||| 408 374827 +del ||| of the inherent ||| 0.25 0.10196 2.6679e-06 1.24993e-06 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the initial ||| 0.0625 0.10196 2.6679e-06 2.69452e-06 2.718 ||| 0-0 0-1 ||| 16 374827 +del ||| of the initiative , ||| 0.0625 0.130625 2.6679e-06 1.35195e-07 2.718 ||| 0-0 ||| 16 374827 +del ||| of the initiative ||| 0.00653595 0.130625 2.6679e-06 1.13367e-06 2.718 ||| 0-0 ||| 153 374827 +del ||| of the institutions involved ||| 0.111111 0.10196 2.6679e-06 1.85999e-09 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| of the institutions ||| 0.0013089 0.10196 2.6679e-06 5.37879e-06 2.718 ||| 0-0 0-1 ||| 764 374827 +del ||| of the internal ||| 0.027027 0.10196 2.6679e-06 4.75382e-06 2.718 ||| 0-0 0-1 ||| 37 374827 +del ||| of the international ||| 0.04 0.10196 2.6679e-06 7.92987e-06 2.718 ||| 0-0 0-1 ||| 25 374827 +del ||| of the intricacies myself ||| 1 0.130625 2.6679e-06 1.97124e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of the intricacies ||| 0.5 0.130625 2.6679e-06 1.26768e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| of the is ||| 0.25 0.10196 2.6679e-06 0.00321099 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the issue of ||| 0.028777 0.111515 1.06716e-05 2.28722e-05 2.718 ||| 0-0 0-1 0-3 ||| 139 374827 +del ||| of the issue ||| 0.00387597 0.10196 5.33579e-06 7.75365e-05 2.718 ||| 0-0 0-1 ||| 516 374827 +del ||| of the issuing ||| 0.166667 0.10196 2.6679e-06 1.40361e-06 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| of the joint ||| 0.0555556 0.10196 2.6679e-06 6.6697e-06 2.718 ||| 0-0 0-1 ||| 18 374827 +del ||| of the jungle ||| 0.0135135 0.130625 2.6679e-06 1.99207e-08 2.718 ||| 0-0 ||| 74 374827 +del ||| of the kind uttered by ||| 1 0.10196 2.6679e-06 6.56225e-13 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the kind uttered ||| 1 0.10196 2.6679e-06 1.24993e-10 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the kind ||| 0.00296736 0.10196 2.6679e-06 4.99971e-05 2.718 ||| 0-0 0-1 ||| 337 374827 +del ||| of the last ||| 0.00358423 0.130625 5.33579e-06 3.95516e-06 2.718 ||| 0-0 ||| 558 374827 +del ||| of the late ||| 0.0208333 0.10196 2.6679e-06 3.24776e-06 2.718 ||| 0-0 0-1 ||| 48 374827 +del ||| of the legislation ||| 0.0026455 0.130625 2.6679e-06 1.45421e-06 2.718 ||| 0-0 ||| 378 374827 +del ||| of the legislative ||| 0.047619 0.10196 2.6679e-06 2.72525e-06 2.718 ||| 0-0 0-1 ||| 21 374827 +del ||| of the levy they have paid ||| 1 0.130625 2.6679e-06 5.80444e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| of the levy they have ||| 1 0.130625 2.6679e-06 4.31236e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of the levy they ||| 1 0.130625 2.6679e-06 3.60571e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of the levy ||| 0.333333 0.130625 2.6679e-06 1.10469e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| of the living ||| 0.1 0.10196 2.6679e-06 8.58557e-06 2.718 ||| 0-0 0-1 ||| 10 374827 +del ||| of the local ||| 0.0434783 0.10196 2.6679e-06 5.23535e-06 2.718 ||| 0-0 0-1 ||| 23 374827 +del ||| of the location of the ||| 0.142857 0.10196 2.6679e-06 3.93228e-09 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| of the location of ||| 0.142857 0.10196 2.6679e-06 6.40523e-08 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| of the location ||| 0.0588235 0.10196 2.6679e-06 1.17821e-06 2.718 ||| 0-0 0-1 ||| 17 374827 +del ||| of the loose ||| 1 0.10196 2.6679e-06 5.94228e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the low life that flourishes ||| 0.5 0.10196 2.6679e-06 3.75983e-18 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the low life that ||| 0.5 0.10196 2.6679e-06 9.39956e-12 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the low life ||| 0.5 0.10196 2.6679e-06 5.58779e-10 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the low ||| 0.0434783 0.10196 2.6679e-06 3.68831e-06 2.718 ||| 0-0 0-1 ||| 23 374827 +del ||| of the low-cost airlines , enlargement towards ||| 1 0.130625 2.6679e-06 7.5377e-23 2.718 ||| 0-0 ||| 1 374827 +del ||| of the low-cost airlines , enlargement ||| 1 0.130625 2.6679e-06 5.93519e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| of the low-cost airlines , ||| 1 0.130625 2.6679e-06 1.9653e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| of the low-cost airlines ||| 0.5 0.130625 2.6679e-06 1.64798e-13 2.718 ||| 0-0 ||| 2 374827 +del ||| of the low-cost ||| 1 0.130625 2.6679e-06 2.53536e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of the main ||| 0.00207469 0.10196 5.33579e-06 1.02146e-05 2.718 ||| 0-0 0-1 ||| 964 374827 +del ||| of the mandate ||| 0.00684932 0.130625 2.6679e-06 4.03846e-07 2.718 ||| 0-0 ||| 146 374827 +del ||| of the market in ||| 0.00299401 0.0183279 2.6679e-06 2.03401e-08 2.718 ||| 0-3 ||| 334 374827 +del ||| of the market ||| 0.00129282 0.130625 5.33579e-06 4.09279e-06 2.718 ||| 0-0 ||| 1547 374827 +del ||| of the massive rush ||| 1 0.10196 2.6679e-06 9.21054e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the massive ||| 0.0588235 0.10196 2.6679e-06 1.58802e-06 2.718 ||| 0-0 0-1 ||| 17 374827 +del ||| of the matter , ||| 0.00819672 0.10196 2.6679e-06 1.26762e-05 2.718 ||| 0-0 0-1 ||| 122 374827 +del ||| of the matter ||| 0.00167504 0.10196 2.6679e-06 0.000106295 2.718 ||| 0-0 0-1 ||| 597 374827 +del ||| of the matters ||| 0.0172414 0.10196 2.6679e-06 1.89538e-05 2.718 ||| 0-0 0-1 ||| 58 374827 +del ||| of the meat ||| 0.0178571 0.10196 2.6679e-06 1.84416e-06 2.718 ||| 0-0 0-1 ||| 56 374827 +del ||| of the meeting of the ||| 0.037037 0.130625 2.6679e-06 7.59141e-09 2.718 ||| 0-0 ||| 27 374827 +del ||| of the meeting of ||| 0.0434783 0.130625 2.6679e-06 1.23655e-07 2.718 ||| 0-0 ||| 23 374827 +del ||| of the meeting ||| 0.00584795 0.130625 2.6679e-06 2.27458e-06 2.718 ||| 0-0 ||| 171 374827 +del ||| of the members of the ||| 0.00952381 0.10196 5.33579e-06 1.54825e-06 2.718 ||| 0-0 0-1 0-3 0-4 ||| 210 374827 +del ||| of the ministerial meeting in Naples ||| 0.5 0.10196 2.6679e-06 5.17819e-19 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the ministerial meeting in Naples – ||| 0.5 0.10196 2.6679e-06 2.03503e-22 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the ministerial meeting in ||| 0.333333 0.10196 2.6679e-06 1.29455e-12 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the ministerial meeting ||| 0.125 0.10196 2.6679e-06 6.04801e-11 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of the ministerial ||| 0.5 0.10196 2.6679e-06 4.8153e-07 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the money supply ||| 0.25 0.10196 2.6679e-06 8.62153e-10 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the money ||| 0.00478469 0.10196 2.6679e-06 1.67408e-05 2.718 ||| 0-0 0-1 ||| 209 374827 +del ||| of the moral basis ||| 1 0.10196 2.6679e-06 3.04183e-10 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the moral ||| 0.25 0.10196 2.6679e-06 5.12266e-07 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the most ||| 0.00140845 0.10196 2.6679e-06 4.42802e-05 2.718 ||| 0-0 0-1 ||| 710 374827 +del ||| of the motion ||| 0.00431965 0.130625 5.33579e-06 1.36909e-06 2.718 ||| 0-0 ||| 463 374827 +del ||| of the motorway ||| 0.142857 0.10196 2.6679e-06 3.2785e-07 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| of the nanny ||| 1 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the national ||| 0.0327869 0.130625 5.33579e-06 2.3271e-06 2.718 ||| 0-0 ||| 61 374827 +del ||| of the natural ||| 0.230769 0.10196 8.00369e-06 2.83795e-06 2.718 ||| 0-0 0-1 ||| 13 374827 +del ||| of the need for the ||| 0.037037 0.0725948 2.6679e-06 6.20448e-08 2.718 ||| 0-0 0-3 0-4 ||| 27 374827 +del ||| of the need ||| 0.000838223 0.10196 2.6679e-06 9.39393e-05 2.718 ||| 0-0 0-1 ||| 1193 374827 +del ||| of the negotiating ||| 0.1 0.10196 2.6679e-06 1.58802e-06 2.718 ||| 0-0 0-1 ||| 10 374827 +del ||| of the new mandate ||| 0.333333 0.10196 2.6679e-06 1.36557e-09 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the new millennium , ||| 0.125 0.10196 2.6679e-06 1.6066e-11 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of the new millennium ||| 0.030303 0.10196 2.6679e-06 1.3472e-10 2.718 ||| 0-0 0-1 ||| 33 374827 +del ||| of the new ||| 0.00249792 0.10196 2.40111e-05 6.12362e-05 2.718 ||| 0-0 0-1 ||| 3603 374827 +del ||| of the next ||| 0.0103986 0.0773606 1.60074e-05 9.87751e-05 2.718 ||| 0-0 0-1 0-2 ||| 577 374827 +del ||| of the northern ||| 0.142857 0.126306 5.33579e-06 4.61551e-05 2.718 ||| 0-0 0-1 0-2 ||| 14 374827 +del ||| of the nuclear ||| 0.111111 0.10196 2.6679e-06 3.98543e-06 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| of the number of cases of ||| 0.25 0.10196 2.6679e-06 1.91923e-11 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the number of cases ||| 0.125 0.10196 2.6679e-06 3.53033e-10 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of the number of ||| 0.00540541 0.10196 2.6679e-06 2.75592e-06 2.718 ||| 0-0 0-1 ||| 185 374827 +del ||| of the number ||| 0.00961538 0.10196 5.33579e-06 5.06938e-05 2.718 ||| 0-0 0-1 ||| 208 374827 +del ||| of the office of ||| 0.0909091 0.130625 2.6679e-06 5.49702e-07 2.718 ||| 0-0 0-3 ||| 11 374827 +del ||| of the one ||| 0.0285714 0.10196 8.00369e-06 0.000427025 2.718 ||| 0-0 0-1 ||| 105 374827 +del ||| of the ones ||| 0.25 0.10196 2.6679e-06 2.26421e-05 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the opinion ||| 0.000708215 0.10196 2.6679e-06 2.5142e-05 2.718 ||| 0-0 0-1 ||| 1412 374827 +del ||| of the opt-out ||| 0.15 0.10196 1.60074e-05 1.17821e-06 2.718 ||| 0-0 0-1 ||| 40 374827 +del ||| of the order of ||| 0.0363636 0.10196 5.33579e-06 2.96646e-06 2.718 ||| 0-0 0-1 ||| 55 374827 +del ||| of the order shall be borne ||| 1 0.130625 2.6679e-06 3.05745e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| of the order shall be ||| 1 0.130625 2.6679e-06 9.55453e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of the order shall ||| 1 0.130625 2.6679e-06 5.27208e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of the order ||| 0.0298507 0.130625 5.33579e-06 9.64522e-06 2.718 ||| 0-0 ||| 67 374827 +del ||| of the ordinary ||| 0.125 0.10196 5.33579e-06 1.88514e-06 2.718 ||| 0-0 0-1 ||| 16 374827 +del ||| of the organisation of the ||| 0.0666667 0.10196 2.6679e-06 1.15575e-08 2.718 ||| 0-3 0-4 ||| 15 374827 +del ||| of the original ||| 0.025 0.10196 2.6679e-06 3.09408e-06 2.718 ||| 0-0 0-1 ||| 40 374827 +del ||| of the overall ||| 0.0588235 0.10196 1.06716e-05 6.48528e-06 2.718 ||| 0-0 0-1 ||| 68 374827 +del ||| of the own-initiative ||| 1 0.10196 2.6679e-06 3.68831e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the parliamentary ||| 0.0434783 0.10196 2.6679e-06 3.20678e-06 2.718 ||| 0-0 0-1 ||| 23 374827 +del ||| of the particular ||| 0.128205 0.10196 1.33395e-05 6.30497e-05 2.718 ||| 0-0 0-1 ||| 39 374827 +del ||| of the patenting ||| 0.166667 0.10196 2.6679e-06 1.12698e-07 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| of the peace ||| 0.0196078 0.10196 2.6679e-06 4.2723e-06 2.718 ||| 0-0 0-1 ||| 51 374827 +del ||| of the permitted ||| 0.333333 0.10196 2.6679e-06 2.90967e-06 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the person ||| 0.0178571 0.130625 5.33579e-06 2.33253e-06 2.718 ||| 0-0 ||| 112 374827 +del ||| of the phrase ||| 0.047619 0.10196 2.6679e-06 1.36263e-06 2.718 ||| 0-0 0-1 ||| 21 374827 +del ||| of the pipeline ||| 0.0416667 0.130625 2.6679e-06 2.6078e-07 2.718 ||| 0-0 ||| 24 374827 +del ||| of the planned ||| 0.0952381 0.10196 5.33579e-06 3.5039e-06 2.718 ||| 0-0 0-1 ||| 21 374827 +del ||| of the plans ||| 0.0175439 0.10196 2.6679e-06 4.31328e-06 2.718 ||| 0-0 0-1 ||| 57 374827 +del ||| of the points in the Commission ' ||| 0.5 0.0183279 2.6679e-06 1.44001e-15 2.718 ||| 0-3 ||| 2 374827 +del ||| of the points in the Commission ||| 0.5 0.0183279 2.6679e-06 4.19229e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| of the points in the ||| 0.0555556 0.0183279 2.6679e-06 7.17735e-10 2.718 ||| 0-3 ||| 18 374827 +del ||| of the points in ||| 0.047619 0.0183279 2.6679e-06 1.16911e-08 2.718 ||| 0-3 ||| 21 374827 +del ||| of the policy ||| 0.0031746 0.10196 2.6679e-06 4.03358e-05 2.718 ||| 0-0 0-1 ||| 315 374827 +del ||| of the political ||| 0.0285714 0.10196 5.33579e-06 1.82879e-05 2.718 ||| 0-0 0-1 ||| 70 374827 +del ||| of the popular ||| 0.2 0.130625 2.6679e-06 1.95585e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| of the position ||| 0.00510204 0.130625 2.6679e-06 5.96352e-06 2.718 ||| 0-0 ||| 196 374827 +del ||| of the possible ||| 0.00462963 0.10196 2.6679e-06 8.21777e-05 2.718 ||| 0-0 0-1 ||| 216 374827 +del ||| of the power ||| 0.0188679 0.10196 2.6679e-06 1.52963e-05 2.718 ||| 0-0 0-1 ||| 53 374827 +del ||| of the predefined ||| 1 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the present demands on ||| 1 0.10196 2.6679e-06 9.65958e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the present demands ||| 1 0.10196 2.6679e-06 1.44367e-09 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the present ||| 0.0168067 0.10196 2.13432e-05 3.74978e-05 2.718 ||| 0-0 0-1 ||| 476 374827 +del ||| of the pressure of ||| 0.1 0.130625 2.6679e-06 5.91694e-08 2.718 ||| 0-3 ||| 10 374827 +del ||| of the price ||| 0.0108696 0.10196 2.6679e-06 5.23535e-06 2.718 ||| 0-0 0-1 ||| 92 374827 +del ||| of the principal ||| 0.0125 0.10196 2.6679e-06 5.94228e-07 2.718 ||| 0-0 0-1 ||| 80 374827 +del ||| of the principle of ||| 0.00136986 0.111515 2.6679e-06 4.63306e-06 2.718 ||| 0-0 0-1 0-3 ||| 730 374827 +del ||| of the proceedings of the ||| 0.125 0.130625 2.6679e-06 2.19401e-09 2.718 ||| 0-0 ||| 8 374827 +del ||| of the proceedings of ||| 0.142857 0.130625 2.6679e-06 3.57379e-08 2.718 ||| 0-0 ||| 7 374827 +del ||| of the proceedings ||| 0.0138889 0.130625 2.6679e-06 6.57382e-07 2.718 ||| 0-0 ||| 72 374827 +del ||| of the process ||| 0.00131234 0.130625 2.6679e-06 7.74189e-06 2.718 ||| 0-0 ||| 762 374827 +del ||| of the programme ' s ||| 1 0.109345 2.6679e-06 1.14747e-10 2.718 ||| 0-0 0-3 0-4 ||| 1 374827 +del ||| of the progress concerning the ||| 1 0.10196 2.6679e-06 5.09444e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the progress concerning ||| 1 0.10196 2.6679e-06 8.29824e-10 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the progress ||| 0.00346021 0.10196 2.6679e-06 1.34931e-05 2.718 ||| 0-0 0-1 ||| 289 374827 +del ||| of the project ||| 0.00347222 0.130625 2.6679e-06 1.10831e-06 2.718 ||| 0-0 ||| 288 374827 +del ||| of the proposal ||| 0.00120846 0.10196 5.33579e-06 2.04599e-05 2.718 ||| 0-0 0-1 ||| 1655 374827 +del ||| of the proposed ||| 0.00829876 0.10196 5.33579e-06 1.14338e-05 2.718 ||| 0-0 0-1 ||| 241 374827 +del ||| of the provisions ||| 0.00273224 0.10196 2.6679e-06 8.07331e-06 2.718 ||| 0-0 0-1 ||| 366 374827 +del ||| of the push to make ||| 1 0.130625 2.6679e-06 7.74619e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of the push to ||| 1 0.130625 2.6679e-06 4.45747e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of the push ||| 1 0.130625 2.6679e-06 5.01638e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of the quest ||| 0.1 0.10196 2.6679e-06 6.24964e-07 2.718 ||| 0-0 0-1 ||| 10 374827 +del ||| of the question that ||| 0.0769231 0.10196 2.6679e-06 1.42579e-06 2.718 ||| 0-0 0-1 ||| 13 374827 +del ||| of the question ||| 0.00763359 0.10196 8.00369e-06 8.47595e-05 2.718 ||| 0-0 0-1 ||| 393 374827 +del ||| of the quite ||| 1 0.10196 5.33579e-06 3.9967e-05 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the rapporteur , ||| 0.0123077 0.10196 1.06716e-05 8.83363e-07 2.718 ||| 0-0 0-1 ||| 325 374827 +del ||| of the rapporteur ||| 0.00500626 0.10196 1.06716e-05 7.40736e-06 2.718 ||| 0-0 0-1 ||| 799 374827 +del ||| of the recall ||| 1 0.10196 2.6679e-06 1.73146e-06 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the recent ||| 0.00277778 0.130625 2.6679e-06 8.80131e-07 2.718 ||| 0-0 ||| 360 374827 +del ||| of the recipient ||| 0.125 0.10196 2.6679e-06 4.40548e-07 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of the reference to ||| 0.0357143 0.10196 2.6679e-06 7.76554e-07 2.718 ||| 0-0 0-1 ||| 28 374827 +del ||| of the reference ||| 0.0277778 0.10196 2.6679e-06 8.73925e-06 2.718 ||| 0-0 0-1 ||| 36 374827 +del ||| of the regime ||| 0.00495049 0.10196 2.6679e-06 2.87893e-06 2.718 ||| 0-0 0-1 ||| 202 374827 +del ||| of the region ||| 0.00128866 0.10196 2.6679e-06 1.00302e-05 2.718 ||| 0-0 0-1 ||| 776 374827 +del ||| of the relevant ||| 0.012987 0.10196 2.6679e-06 1.1024e-05 2.718 ||| 0-0 0-1 ||| 77 374827 +del ||| of the requirement to ||| 0.125 0.10196 2.6679e-06 3.8327e-07 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of the requirement ||| 0.0208333 0.10196 2.6679e-06 4.31328e-06 2.718 ||| 0-0 0-1 ||| 48 374827 +del ||| of the requirements we ||| 0.333333 0.130625 2.6679e-06 9.99151e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| of the requirements ||| 0.00884956 0.130625 2.6679e-06 8.80131e-07 2.718 ||| 0-0 ||| 113 374827 +del ||| of the resolution ||| 0.00147275 0.10196 5.33579e-06 8.9544e-06 2.718 ||| 0-0 0-1 ||| 1358 374827 +del ||| of the respective ||| 0.0192308 0.10196 2.6679e-06 3.2785e-06 2.718 ||| 0-0 0-1 ||| 52 374827 +del ||| of the resulting ||| 0.333333 0.10196 5.33579e-06 4.64113e-06 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| of the results ||| 0.00205761 0.130625 2.6679e-06 1.40169e-06 2.718 ||| 0-0 ||| 486 374827 +del ||| of the right ||| 0.00161812 0.10196 2.6679e-06 6.6072e-05 2.718 ||| 0-0 0-1 ||| 618 374827 +del ||| of the role ||| 0.00234742 0.10196 2.6679e-06 2.27446e-05 2.718 ||| 0-0 0-1 ||| 426 374827 +del ||| of the running ||| 0.111111 0.10196 2.6679e-06 7.81717e-06 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| of the rural ||| 0.142857 0.10196 2.6679e-06 1.14747e-06 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| of the same nature ||| 0.142857 0.10196 2.6679e-06 1.16576e-08 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| of the same ||| 0.0069735 0.10196 1.33395e-05 8.2444e-05 2.718 ||| 0-0 0-1 ||| 717 374827 +del ||| of the school ||| 0.0909091 0.10196 2.6679e-06 2.14127e-06 2.718 ||| 0-0 0-1 ||| 11 374827 +del ||| of the scope of the ||| 0.0125 0.10196 2.6679e-06 3.40912e-08 2.718 ||| 0-0 0-1 ||| 80 374827 +del ||| of the scope of ||| 0.0173913 0.10196 5.33579e-06 5.55305e-07 2.718 ||| 0-0 0-1 ||| 115 374827 +del ||| of the scope ||| 0.00552486 0.10196 2.6679e-06 1.02146e-05 2.718 ||| 0-0 0-1 ||| 181 374827 +del ||| of the scoreboard of the ||| 1 0.130625 2.6679e-06 1.32971e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of the scoreboard of ||| 0.5 0.130625 2.6679e-06 2.16593e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| of the scoreboard ||| 0.0625 0.130625 2.6679e-06 3.98413e-08 2.718 ||| 0-0 ||| 16 374827 +del ||| of the second and ||| 0.0625 0.10196 2.6679e-06 8.3544e-08 2.718 ||| 0-0 0-1 ||| 16 374827 +del ||| of the second ||| 0.00271739 0.10196 2.6679e-06 6.6697e-06 2.718 ||| 0-0 0-1 ||| 368 374827 +del ||| of the securities ||| 0.2 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| of the self-styled ||| 0.166667 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| of the senior ||| 0.142857 0.10196 2.6679e-06 1.24993e-06 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| of the shadow ||| 0.5 0.10196 2.6679e-06 1.40361e-06 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the share of ||| 0.125 0.130625 2.6679e-06 9.21506e-08 2.718 ||| 0-3 ||| 8 374827 +del ||| of the signing of the ||| 0.0243902 0.10196 2.6679e-06 1.17562e-07 2.718 ||| 0-0 0-1 0-3 0-4 ||| 41 374827 +del ||| of the simple ||| 0.2 0.10196 2.6679e-06 4.42597e-06 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| of the single market ||| 0.00128205 0.130625 2.6679e-06 6.49526e-10 2.718 ||| 0-0 ||| 780 374827 +del ||| of the single undertaking ||| 0.25 0.10196 2.6679e-06 4.86153e-10 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the single ||| 0.0816327 0.10196 1.06716e-05 1.62593e-05 2.718 ||| 0-0 0-1 ||| 49 374827 +del ||| of the situation ||| 0.000548546 0.10196 2.6679e-06 5.27634e-05 2.718 ||| 0-0 0-1 ||| 1823 374827 +del ||| of the six ||| 0.00735294 0.10196 2.6679e-06 1.77244e-06 2.718 ||| 0-0 0-1 ||| 136 374827 +del ||| of the slaughter ||| 0.125 0.10196 2.6679e-06 4.09812e-07 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of the slimline ||| 0.333333 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the so ||| 0.333333 0.10196 2.6679e-06 0.000232538 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the so-called ||| 0.00220751 0.10196 2.6679e-06 3.83175e-06 2.718 ||| 0-0 0-1 ||| 453 374827 +del ||| of the social and ||| 0.25 0.10196 5.33579e-06 1.32567e-07 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of the social ||| 0.0645161 0.10196 5.33579e-06 1.05834e-05 2.718 ||| 0-0 0-1 ||| 31 374827 +del ||| of the software ||| 0.25 0.10196 2.6679e-06 7.37662e-07 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the southern ||| 0.0181818 0.13858 2.6679e-06 8.58557e-05 2.718 ||| 0-0 0-1 0-2 ||| 55 374827 +del ||| of the specific ||| 0.0625 0.10196 5.33579e-06 1.54807e-05 2.718 ||| 0-0 0-1 ||| 32 374827 +del ||| of the spirit ||| 0.0144928 0.10196 2.6679e-06 6.014e-06 2.718 ||| 0-0 0-1 ||| 69 374827 +del ||| of the state of the ||| 0.0277778 0.10196 2.6679e-06 8.63735e-08 2.718 ||| 0-3 0-4 ||| 36 374827 +del ||| of the state ||| 0.0046729 0.10196 5.33579e-06 2.58797e-05 2.718 ||| 0-0 0-1 ||| 428 374827 +del ||| of the status quo ||| 0.0606061 0.10196 5.33579e-06 1.49155e-10 2.718 ||| 0-0 0-1 ||| 33 374827 +del ||| of the status ||| 0.0222222 0.10196 8.00369e-06 1.0358e-05 2.718 ||| 0-0 0-1 ||| 135 374827 +del ||| of the statute of ||| 0.125 0.10196 2.6679e-06 5.62546e-08 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of the statute ||| 0.0263158 0.10196 2.6679e-06 1.03478e-06 2.718 ||| 0-0 0-1 ||| 38 374827 +del ||| of the stay ||| 0.333333 0.10196 2.6679e-06 2.90967e-06 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the subject , ||| 0.0357143 0.10196 2.6679e-06 6.59529e-06 2.718 ||| 0-0 0-1 ||| 28 374827 +del ||| of the subject ||| 0.0124224 0.130625 5.33579e-06 9.77561e-06 2.718 ||| 0-0 ||| 161 374827 +del ||| of the successful ||| 0.1 0.10196 5.33579e-06 5.64517e-06 2.718 ||| 0-0 0-1 ||| 20 374827 +del ||| of the sugar ||| 0.142857 0.123047 2.6679e-06 6.14924e-05 2.718 ||| 0-0 0-1 0-2 ||| 7 374827 +del ||| of the supplementary and ||| 1 0.10196 2.6679e-06 1.15499e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the supplementary ||| 0.5 0.10196 2.6679e-06 9.22078e-07 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the supplier ||| 0.0588235 0.10196 2.6679e-06 2.97114e-07 2.718 ||| 0-0 0-1 ||| 17 374827 +del ||| of the supplier ’ s ||| 1 0.10196 2.6679e-06 9.84635e-13 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the supplier ’ ||| 1 0.10196 2.6679e-06 5.17602e-10 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the survival of the ||| 0.2 0.10196 2.6679e-06 6.82282e-08 2.718 ||| 0-0 0-1 0-3 0-4 ||| 5 374827 +del ||| of the tanning ||| 1 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the target ||| 0.1 0.10196 5.33579e-06 3.87273e-06 2.718 ||| 0-0 0-1 ||| 20 374827 +del ||| of the temporary ||| 0.25 0.10196 2.6679e-06 1.58802e-06 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the territory of ||| 0.0238095 0.111515 5.33579e-06 9.33866e-07 2.718 ||| 0-0 0-1 0-3 ||| 84 374827 +del ||| of the test ban ||| 1 0.10196 2.6679e-06 9.78222e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the test ||| 0.0769231 0.10196 2.6679e-06 2.54084e-06 2.718 ||| 0-0 0-1 ||| 13 374827 +del ||| of the then ||| 0.025641 0.10196 2.6679e-06 0.000164991 2.718 ||| 0-0 0-1 ||| 39 374827 +del ||| of the third ||| 0.00529101 0.10196 5.33579e-06 4.79481e-06 2.718 ||| 0-0 0-1 ||| 378 374827 +del ||| of the time - as ||| 0.5 0.10196 2.6679e-06 6.47425e-09 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of the time - ||| 0.333333 0.10196 2.6679e-06 6.34457e-07 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of the time I spent ||| 1 0.130625 2.6679e-06 1.34802e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of the time I ||| 0.2 0.130625 2.6679e-06 2.103e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| of the time ||| 0.00943396 0.10196 8.00369e-06 0.000168197 2.718 ||| 0-0 0-1 ||| 318 374827 +del ||| of the to ||| 0.25 0.10196 2.6679e-06 0.0091038 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| of the tobacco ||| 0.0322581 0.10196 2.6679e-06 2.2847e-06 2.718 ||| 0-0 0-1 ||| 31 374827 +del ||| of the total amount ||| 0.0322581 0.10196 2.6679e-06 2.3506e-09 2.718 ||| 0-0 0-1 ||| 31 374827 +del ||| of the total ||| 0.0135135 0.10196 1.33395e-05 9.66133e-06 2.718 ||| 0-0 0-1 ||| 370 374827 +del ||| of the tower ||| 1 0.10196 2.6679e-06 1.12698e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the trade ||| 0.0243902 0.0747644 5.33579e-06 6.88997e-05 2.718 ||| 0-0 0-1 0-2 ||| 82 374827 +del ||| of the transport ||| 0.0151515 0.10196 2.6679e-06 1.05424e-05 2.718 ||| 0-0 0-1 ||| 66 374827 +del ||| of the treaty , as amended by ||| 1 0.130625 2.6679e-06 3.28641e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| of the treaty , as amended ||| 1 0.130625 2.6679e-06 6.2597e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| of the treaty , as ||| 1 0.130625 2.6679e-06 5.79602e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of the treaty , ||| 0.0144928 0.130625 2.6679e-06 5.67992e-08 2.718 ||| 0-0 ||| 69 374827 +del ||| of the treaty by the ||| 1 0.130625 2.6679e-06 1.53513e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of the treaty by ||| 0.333333 0.130625 2.6679e-06 2.50054e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| of the treaty ||| 0.00555556 0.130625 5.33579e-06 4.76285e-07 2.718 ||| 0-0 ||| 360 374827 +del ||| of the trial ||| 0.0294118 0.10196 2.6679e-06 1.29091e-06 2.718 ||| 0-0 0-1 ||| 34 374827 +del ||| of the two parts of the ||| 0.25 0.10196 2.6679e-06 1.44666e-10 2.718 ||| 0-0 0-1 0-4 0-5 ||| 4 374827 +del ||| of the undertaking ||| 0.0384615 0.10196 2.6679e-06 3.06335e-06 2.718 ||| 0-0 0-1 ||| 26 374827 +del ||| of the use of ||| 0.00241546 0.111515 2.6679e-06 1.4694e-05 2.718 ||| 0-0 0-1 0-3 ||| 414 374827 +del ||| of the use ||| 0.00209644 0.10196 2.6679e-06 4.98127e-05 2.718 ||| 0-0 0-1 ||| 477 374827 +del ||| of the various ||| 0.00187266 0.10196 5.33579e-06 1.58188e-05 2.718 ||| 0-0 0-1 ||| 1068 374827 +del ||| of the very ||| 0.0486486 0.10196 2.40111e-05 0.000356486 2.718 ||| 0-0 0-1 ||| 185 374827 +del ||| of the volume of ||| 0.0357143 0.111515 2.6679e-06 4.35199e-07 2.718 ||| 0-0 0-1 0-3 ||| 28 374827 +del ||| of the vote ||| 0.00141443 0.10196 2.6679e-06 1.61159e-05 2.718 ||| 0-0 0-1 ||| 707 374827 +del ||| of the way ||| 0.0100575 0.10196 1.86753e-05 0.000220848 2.718 ||| 0-0 0-1 ||| 696 374827 +del ||| of the ways ||| 0.0153846 0.10196 5.33579e-06 9.87648e-06 2.718 ||| 0-0 0-1 ||| 130 374827 +del ||| of the whole of ||| 0.00645161 0.111515 2.6679e-06 1.70967e-05 2.718 ||| 0-0 0-1 0-3 ||| 155 374827 +del ||| of the whole ||| 0.019209 0.10196 4.53543e-05 5.79577e-05 2.718 ||| 0-0 0-1 ||| 885 374827 +del ||| of the wide ||| 0.05 0.10196 2.6679e-06 4.24156e-06 2.718 ||| 0-0 0-1 ||| 20 374827 +del ||| of the wine ||| 0.04 0.10196 2.6679e-06 1.73146e-06 2.718 ||| 0-0 0-1 ||| 25 374827 +del ||| of the within the ||| 1 0.10196 2.6679e-06 1.31519e-06 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the within ||| 1 0.10196 2.6679e-06 2.14229e-05 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the women 's ||| 1 0.124577 2.6679e-06 4.89059e-07 2.718 ||| 0-0 0-1 0-3 ||| 1 374827 +del ||| of the work of ||| 0.00442478 0.10196 2.6679e-06 3.52566e-06 2.718 ||| 0-0 0-1 ||| 226 374827 +del ||| of the work to ||| 0.0526316 0.10196 2.6679e-06 5.76271e-06 2.718 ||| 0-0 0-1 ||| 19 374827 +del ||| of the work ||| 0.00445434 0.10196 1.06716e-05 6.48528e-05 2.718 ||| 0-0 0-1 ||| 898 374827 +del ||| of the working ||| 0.0243902 0.10196 2.6679e-06 1.95071e-05 2.718 ||| 0-0 0-1 ||| 41 374827 +del ||| of the world 's ||| 0.025641 0.10196 2.6679e-06 4.44465e-08 2.718 ||| 0-0 0-1 ||| 39 374827 +del ||| of the world ||| 0.000847937 0.10196 8.00369e-06 2.33388e-05 2.718 ||| 0-0 0-1 ||| 3538 374827 +del ||| of the wrecked ||| 1 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of the yards ||| 0.111111 0.10196 2.6679e-06 1.43434e-07 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| of the ||| 0.286422 0.10196 0.362722 0.102453 2.718 ||| 0-0 0-1 ||| 474678 374827 +del ||| of the ‘ ||| 0.0152672 0.10196 5.33579e-06 1.15055e-05 2.718 ||| 0-0 0-1 ||| 131 374827 +del ||| of their advisors , the ||| 1 0.130625 2.6679e-06 1.00131e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of their advisors , ||| 1 0.130625 2.6679e-06 1.63101e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of their advisors ||| 1 0.130625 2.6679e-06 1.36767e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of their language ||| 0.166667 0.130625 2.6679e-06 1.60017e-08 2.718 ||| 0-0 ||| 6 374827 +del ||| of their links ||| 0.333333 0.130625 2.6679e-06 4.06882e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| of their minds ||| 0.25 0.130625 2.6679e-06 1.63779e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| of their operators ' ||| 1 0.079997 2.6679e-06 2.1105e-11 2.718 ||| 0-0 0-3 ||| 1 374827 +del ||| of their own ||| 0.00294985 0.130625 5.33579e-06 5.79653e-07 2.718 ||| 0-0 ||| 678 374827 +del ||| of their political ||| 0.125 0.0659211 2.6679e-06 8.36687e-09 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| of their respective sports ||| 0.5 0.0321691 2.6679e-06 9.27556e-14 2.718 ||| 0-3 ||| 2 374827 +del ||| of their responsibilities ||| 0.0185185 0.130625 2.6679e-06 8.13764e-09 2.718 ||| 0-0 ||| 54 374827 +del ||| of their ||| 0.00829088 0.130625 0.000221435 0.000341918 2.718 ||| 0-0 ||| 10011 374827 +del ||| of them , ||| 0.00168067 0.130625 2.6679e-06 9.43626e-05 2.718 ||| 0-0 ||| 595 374827 +del ||| of them as ||| 0.0625 0.130625 2.6679e-06 8.07443e-06 2.718 ||| 0-0 ||| 16 374827 +del ||| of them from the ||| 0.142857 0.10196 2.6679e-06 4.42571e-07 2.718 ||| 0-0 0-3 ||| 7 374827 +del ||| of them if they are to be ||| 0.333333 0.130625 2.6679e-06 5.27304e-14 2.718 ||| 0-0 ||| 3 374827 +del ||| of them if they are to ||| 0.333333 0.130625 2.6679e-06 2.9096e-12 2.718 ||| 0-0 ||| 3 374827 +del ||| of them if they are ||| 0.333333 0.130625 2.6679e-06 3.27443e-11 2.718 ||| 0-0 ||| 3 374827 +del ||| of them if they ||| 0.25 0.130625 2.6679e-06 2.15811e-09 2.718 ||| 0-0 ||| 4 374827 +del ||| of them if ||| 0.0666667 0.130625 2.6679e-06 6.61184e-07 2.718 ||| 0-0 ||| 15 374827 +del ||| of them sometimes ||| 0.25 0.130625 2.6679e-06 4.47067e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| of them were taken ||| 0.333333 0.130625 2.6679e-06 1.29203e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| of them were ||| 0.0106383 0.130625 2.6679e-06 1.41748e-06 2.718 ||| 0-0 ||| 94 374827 +del ||| of them ||| 0.00389332 0.130625 5.33579e-05 0.000791269 2.718 ||| 0-0 ||| 5137 374827 +del ||| of these agreements could be ||| 1 0.130625 2.6679e-06 1.46269e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of these agreements could ||| 1 0.130625 2.6679e-06 8.07097e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of these agreements ||| 0.00558659 0.130625 2.6679e-06 1.135e-08 2.718 ||| 0-0 ||| 179 374827 +del ||| of these four ||| 0.0277778 0.130625 2.6679e-06 6.9446e-09 2.718 ||| 0-0 ||| 36 374827 +del ||| of these pieces of legislation ||| 0.333333 0.130625 2.6679e-06 3.03162e-14 2.718 ||| 0-0 ||| 3 374827 +del ||| of these pieces of ||| 0.333333 0.130625 2.6679e-06 3.77536e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| of these pieces ||| 0.333333 0.130625 2.6679e-06 6.9446e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| of these proposals ||| 0.005 0.130625 2.6679e-06 2.97363e-08 2.718 ||| 0-0 ||| 200 374827 +del ||| of these three new countries ||| 0.5 0.130625 2.6679e-06 4.3949e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| of these three new ||| 0.333333 0.130625 2.6679e-06 1.15747e-11 2.718 ||| 0-0 ||| 3 374827 +del ||| of these three ||| 0.00826446 0.130625 2.6679e-06 1.93653e-08 2.718 ||| 0-0 ||| 121 374827 +del ||| of these ||| 0.00125214 0.130625 5.06901e-05 0.000305929 2.718 ||| 0-0 ||| 15174 374827 +del ||| of this , ||| 0.00081103 0.130625 2.6679e-06 0.000227302 2.718 ||| 0-0 ||| 1233 374827 +del ||| of this Europe of ||| 0.125 0.130625 2.6679e-06 5.24311e-08 2.718 ||| 0-0 ||| 8 374827 +del ||| of this Europe ||| 0.0212766 0.130625 2.6679e-06 9.64446e-07 2.718 ||| 0-0 ||| 47 374827 +del ||| of this House provided for by the ||| 1 0.0669701 2.6679e-06 9.61708e-17 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of this House provided for by ||| 1 0.0669701 2.6679e-06 1.56651e-15 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of this House provided for ||| 1 0.0669701 2.6679e-06 2.98377e-13 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of this House provided ||| 1 0.0669701 2.6679e-06 3.88224e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of this House ||| 0.000570288 0.130625 5.33579e-06 4.76695e-07 2.718 ||| 0-0 ||| 3507 374827 +del ||| of this House ’ ||| 0.125 0.130625 2.6679e-06 8.30451e-10 2.718 ||| 0-0 ||| 8 374827 +del ||| of this Parliament are ||| 0.0322581 0.130625 2.6679e-06 1.65998e-08 2.718 ||| 0-0 ||| 31 374827 +del ||| of this Parliament ||| 0.000486381 0.130625 2.6679e-06 1.09406e-06 2.718 ||| 0-0 ||| 2056 374827 +del ||| of this act ||| 0.0714286 0.0669701 2.6679e-06 1.15066e-07 2.718 ||| 0-0 0-1 ||| 14 374827 +del ||| of this agreement has been ||| 1 0.130625 2.6679e-06 6.03798e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of this agreement has ||| 0.5 0.130625 2.6679e-06 1.80821e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| of this agreement ||| 0.00184843 0.130625 2.6679e-06 3.51279e-07 2.718 ||| 0-0 ||| 541 374827 +del ||| of this being ||| 0.037037 0.130625 2.6679e-06 5.42415e-06 2.718 ||| 0-0 ||| 27 374827 +del ||| of this from ||| 0.0714286 0.0750239 2.6679e-06 1.46783e-05 2.718 ||| 0-0 0-1 0-2 ||| 14 374827 +del ||| of this investigation ||| 0.0625 0.130625 2.6679e-06 3.50708e-08 2.718 ||| 0-0 ||| 16 374827 +del ||| of this is the ||| 0.00606061 0.130625 2.6679e-06 3.66735e-06 2.718 ||| 0-0 ||| 165 374827 +del ||| of this is ||| 0.00141643 0.130625 2.6679e-06 5.97367e-05 2.718 ||| 0-0 ||| 706 374827 +del ||| of this kind , which is ||| 0.333333 0.130625 2.6679e-06 2.95311e-11 2.718 ||| 0-0 ||| 3 374827 +del ||| of this kind , which ||| 0.0526316 0.130625 2.6679e-06 9.42249e-10 2.718 ||| 0-0 ||| 19 374827 +del ||| of this kind , ||| 0.00448431 0.130625 2.6679e-06 1.10923e-07 2.718 ||| 0-0 ||| 223 374827 +del ||| of this kind in the ||| 0.0357143 0.0740824 2.6679e-06 8.71153e-09 2.718 ||| 0-0 0-3 0-4 ||| 28 374827 +del ||| of this kind ||| 0.00104167 0.130625 5.33579e-06 9.30137e-07 2.718 ||| 0-0 ||| 1920 374827 +del ||| of this morning ||| 0.0227273 0.130625 2.6679e-06 3.43083e-08 2.718 ||| 0-0 ||| 44 374827 +del ||| of this new ||| 0.00235294 0.0669701 2.6679e-06 4.04797e-07 2.718 ||| 0-0 0-1 ||| 425 374827 +del ||| of this own ||| 0.5 0.0669701 2.6679e-06 1.14815e-06 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| of this particular ||| 0.0294118 0.0669701 2.6679e-06 4.16784e-07 2.718 ||| 0-0 0-1 ||| 34 374827 +del ||| of this reference from the ||| 1 0.0669701 2.6679e-06 5.71146e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of this reference from ||| 1 0.0669701 2.6679e-06 9.30329e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| of this reference ||| 0.333333 0.0669701 2.6679e-06 5.777e-08 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| of this report is limited ||| 1 0.130625 2.6679e-06 9.52509e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of this report is ||| 0.00425532 0.130625 2.6679e-06 2.44861e-08 2.718 ||| 0-0 ||| 235 374827 +del ||| of this report ||| 0.000562272 0.130625 5.33579e-06 7.81277e-07 2.718 ||| 0-0 ||| 3557 374827 +del ||| of this rut ||| 0.5 0.130625 2.6679e-06 1.33421e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| of this single language ||| 1 0.130625 2.6679e-06 1.41563e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of this single ||| 1 0.130625 2.6679e-06 3.02485e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of this sort in the ||| 1 0.0740824 2.6679e-06 2.85267e-09 2.718 ||| 0-0 0-3 0-4 ||| 1 374827 +del ||| of this sort of ||| 0.0238095 0.130625 2.6679e-06 1.65583e-08 2.718 ||| 0-0 ||| 42 374827 +del ||| of this sort ||| 0.00409836 0.130625 2.6679e-06 3.04582e-07 2.718 ||| 0-0 ||| 244 374827 +del ||| of this space ||| 0.2 0.130625 2.6679e-06 7.89092e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| of this work ||| 0.00636943 0.0669701 2.6679e-06 4.28704e-07 2.718 ||| 0-0 0-1 ||| 157 374827 +del ||| of this would ||| 0.0344828 0.130625 2.6679e-06 1.11859e-05 2.718 ||| 0-0 ||| 29 374827 +del ||| of this year ||| 0.000561167 0.130625 2.6679e-06 4.75361e-07 2.718 ||| 0-0 ||| 1782 374827 +del ||| of this ||| 0.023298 0.0669701 0.00291068 0.000677257 2.718 ||| 0-0 0-1 ||| 46828 374827 +del ||| of those either ||| 1 0.130625 2.6679e-06 1.84934e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of those from the ||| 0.166667 0.0983502 2.6679e-06 1.60785e-06 2.718 ||| 0-0 0-2 0-3 ||| 6 374827 +del ||| of those given ||| 0.5 0.130625 2.6679e-06 1.46593e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| of those in the ||| 0.0588235 0.130625 5.33579e-06 2.80682e-07 2.718 ||| 0-0 ||| 34 374827 +del ||| of those in ||| 0.00746269 0.130625 2.6679e-06 4.57198e-06 2.718 ||| 0-0 ||| 134 374827 +del ||| of those of ||| 0.0192308 0.130625 2.6679e-06 6.30086e-05 2.718 ||| 0-0 0-2 ||| 52 374827 +del ||| of those who are ||| 0.0121951 0.130625 5.33579e-06 2.85845e-09 2.718 ||| 0-0 ||| 164 374827 +del ||| of those who ||| 0.00120048 0.130625 5.33579e-06 1.88394e-07 2.718 ||| 0-0 ||| 1666 374827 +del ||| of those ||| 0.00180451 0.130625 3.20148e-05 0.000213599 2.718 ||| 0-0 ||| 6650 374827 +del ||| of time ought to ||| 0.333333 0.130625 2.6679e-06 3.60609e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| of time ought ||| 0.333333 0.130625 2.6679e-06 4.05825e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| of time ||| 0.00234412 0.130625 1.33395e-05 0.000484278 2.718 ||| 0-0 ||| 2133 374827 +del ||| of to the ||| 0.166667 0.130625 2.6679e-06 0.00160919 2.718 ||| 0-0 ||| 6 374827 +del ||| of to ||| 0.027027 0.130625 2.6679e-06 0.0262119 2.718 ||| 0-0 ||| 37 374827 +del ||| of tobacco ||| 0.004 0.150733 2.6679e-06 0.000309174 2.718 ||| 0-0 0-1 ||| 250 374827 +del ||| of today ' s ||| 0.142857 0.109345 5.33579e-06 6.62106e-09 2.718 ||| 0-0 0-2 0-3 ||| 14 374827 +del ||| of today 's ||| 0.057971 0.130625 1.06716e-05 2.53527e-07 2.718 ||| 0-0 ||| 69 374827 +del ||| of today ||| 0.00659341 0.130625 8.00369e-06 0.000133127 2.718 ||| 0-0 ||| 455 374827 +del ||| of together ||| 0.111111 0.130625 2.6679e-06 0.000177168 2.718 ||| 0-0 ||| 9 374827 +del ||| of topics in its ||| 0.5 0.130625 2.6679e-06 5.21744e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| of topics in ||| 0.5 0.130625 2.6679e-06 3.66213e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| of topics ||| 0.0147059 0.130625 2.6679e-06 1.71092e-06 2.718 ||| 0-0 ||| 68 374827 +del ||| of total ||| 0.0142857 0.130625 8.00369e-06 2.78171e-05 2.718 ||| 0-0 ||| 210 374827 +del ||| of tourism ||| 0.00573066 0.130625 5.33579e-06 5.30974e-06 2.718 ||| 0-0 ||| 349 374827 +del ||| of traffic in ||| 0.1 0.0744764 2.6679e-06 2.25913e-07 2.718 ||| 0-0 0-2 ||| 10 374827 +del ||| of traffic ||| 0.00552486 0.115482 2.6679e-06 0.000194484 2.718 ||| 0-0 0-1 ||| 181 374827 +del ||| of train ||| 0.375 0.130625 8.00369e-06 5.10325e-06 2.718 ||| 0-0 ||| 8 374827 +del ||| of transatlantic ||| 0.0526316 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-0 ||| 19 374827 +del ||| of treatment by ||| 1 0.0461582 2.6679e-06 5.31828e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| of trouble ||| 0.0166667 0.130625 2.6679e-06 3.92331e-06 2.718 ||| 0-0 ||| 60 374827 +del ||| of trying ||| 0.0333333 0.130625 5.33579e-06 3.39823e-05 2.718 ||| 0-0 ||| 60 374827 +del ||| of turn by apparently ||| 1 0.130625 2.6679e-06 6.73605e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of turn by ||| 1 0.130625 2.6679e-06 3.47219e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of turn ||| 0.125 0.130625 2.6679e-06 6.61357e-05 2.718 ||| 0-0 ||| 8 374827 +del ||| of unbearable kinds ||| 1 0.130625 2.6679e-06 5.60472e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of unbearable ||| 1 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| of understanding of the ||| 0.0909091 0.10196 2.6679e-06 1.88258e-07 2.718 ||| 0-2 0-3 ||| 11 374827 +del ||| of understanding ||| 0.00307692 0.130625 2.6679e-06 9.97051e-06 2.718 ||| 0-0 ||| 325 374827 +del ||| of up to ||| 0.008 0.130625 5.33579e-06 8.93956e-05 2.718 ||| 0-0 ||| 250 374827 +del ||| of up ||| 0.0434783 0.130625 5.33579e-06 0.00100605 2.718 ||| 0-0 ||| 46 374827 +del ||| of urgency , ||| 0.00414938 0.130625 2.6679e-06 9.11121e-07 2.718 ||| 0-0 ||| 241 374827 +del ||| of urgency . ||| 0.00534759 0.130625 2.6679e-06 2.31419e-08 2.718 ||| 0-0 ||| 187 374827 +del ||| of urgency ||| 0.00503145 0.130625 1.06716e-05 7.64012e-06 2.718 ||| 0-0 ||| 795 374827 +del ||| of us , ||| 0.00165563 0.130625 2.6679e-06 0.000101391 2.718 ||| 0-0 ||| 604 374827 +del ||| of us from ||| 0.030303 0.0911315 2.6679e-06 3.39593e-06 2.718 ||| 0-2 ||| 33 374827 +del ||| of us here ||| 0.0140845 0.130625 8.00369e-06 1.72405e-06 2.718 ||| 0-0 ||| 213 374827 +del ||| of us with a ||| 0.166667 0.130625 2.6679e-06 2.40984e-07 2.718 ||| 0-0 ||| 6 374827 +del ||| of us with ||| 0.0454545 0.130625 2.6679e-06 5.43665e-06 2.718 ||| 0-0 ||| 22 374827 +del ||| of us ||| 0.0022792 0.130625 3.20148e-05 0.000850207 2.718 ||| 0-0 ||| 5265 374827 +del ||| of use ||| 0.00431034 0.130625 2.6679e-06 0.000143422 2.718 ||| 0-0 ||| 232 374827 +del ||| of using the ||| 0.018018 0.130625 5.33579e-06 1.40712e-06 2.718 ||| 0-0 ||| 111 374827 +del ||| of using ||| 0.00148368 0.130625 2.6679e-06 2.29204e-05 2.718 ||| 0-0 ||| 674 374827 +del ||| of validity of the ||| 0.125 0.111515 2.6679e-06 8.76443e-08 2.718 ||| 0-0 0-2 0-3 ||| 8 374827 +del ||| of various items ||| 1 0.130625 2.6679e-06 1.22974e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of various ||| 0.00158228 0.130625 2.6679e-06 4.55458e-05 2.718 ||| 0-0 ||| 632 374827 +del ||| of vehicle registration ||| 0.2 0.130625 2.6679e-06 1.48968e-11 2.718 ||| 0-0 ||| 5 374827 +del ||| of vehicle ||| 0.0166667 0.130625 2.6679e-06 2.97935e-06 2.718 ||| 0-0 ||| 60 374827 +del ||| of venture ||| 1 0.130625 2.6679e-06 3.06785e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| of view , for the uniform format ||| 0.5 0.130625 2.6679e-06 5.54458e-19 2.718 ||| 0-0 ||| 2 374827 +del ||| of view , for the uniform ||| 0.5 0.130625 2.6679e-06 1.28944e-13 2.718 ||| 0-0 ||| 2 374827 +del ||| of view , for the ||| 0.333333 0.130625 2.6679e-06 1.49935e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| of view , for ||| 0.25 0.130625 2.6679e-06 2.44226e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| of view , ||| 0.00126743 0.130625 2.6679e-06 3.17767e-05 2.718 ||| 0-0 ||| 789 374827 +del ||| of view - ||| 0.0384615 0.130625 2.6679e-06 1.00512e-06 2.718 ||| 0-0 ||| 26 374827 +del ||| of view among ||| 1 0.130625 2.6679e-06 2.38749e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of view around ||| 1 0.130625 2.6679e-06 3.54925e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| of view of the ||| 0.00611621 0.111515 5.33579e-06 2.72997e-05 2.718 ||| 0-0 0-2 0-3 ||| 327 374827 +del ||| of view of ||| 0.00406504 0.130625 1.06716e-05 1.44859e-05 2.718 ||| 0-2 ||| 984 374827 +del ||| of view so ||| 0.166667 0.130625 2.6679e-06 6.04785e-07 2.718 ||| 0-0 ||| 6 374827 +del ||| of view ||| 0.00220751 0.130625 2.6679e-05 0.00026646 2.718 ||| 0-0 ||| 4530 374827 +del ||| of vigour ||| 0.25 0.130625 2.6679e-06 1.38643e-06 2.718 ||| 0-0 ||| 4 374827 +del ||| of violence ||| 0.00050025 0.130625 2.6679e-06 6.69617e-06 2.718 ||| 0-0 ||| 1999 374827 +del ||| of vital ||| 0.00478469 0.130625 2.6679e-06 9.23305e-06 2.718 ||| 0-0 ||| 209 374827 +del ||| of voting ||| 0.00416667 0.130625 2.6679e-06 1.14749e-05 2.718 ||| 0-0 ||| 240 374827 +del ||| of war ||| 0.00124844 0.130625 2.6679e-06 1.0944e-05 2.718 ||| 0-0 ||| 801 374827 +del ||| of waste ||| 0.00111235 0.130625 2.6679e-06 2.059e-05 2.718 ||| 0-0 ||| 899 374827 +del ||| of what a ||| 0.0555556 0.130625 2.6679e-06 1.83462e-05 2.718 ||| 0-0 ||| 18 374827 +del ||| of what country 's ||| 1 0.130625 2.6679e-06 2.8368e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of what country ||| 0.5 0.130625 2.6679e-06 1.48961e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| of what has been called the ' ||| 1 0.130625 2.6679e-06 2.60737e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| of what has been called the ||| 0.333333 0.130625 2.6679e-06 7.59081e-14 2.718 ||| 0-0 ||| 3 374827 +del ||| of what has been called ||| 0.166667 0.130625 2.6679e-06 1.23645e-12 2.718 ||| 0-0 ||| 6 374827 +del ||| of what has been ||| 0.00617284 0.130625 2.6679e-06 7.11423e-09 2.718 ||| 0-0 ||| 162 374827 +del ||| of what has ||| 0.0134228 0.130625 5.33579e-06 2.13052e-06 2.718 ||| 0-0 ||| 149 374827 +del ||| of what he ||| 0.0238095 0.130625 2.6679e-06 3.61205e-07 2.718 ||| 0-0 ||| 42 374827 +del ||| of what is an ||| 0.166667 0.0653404 2.6679e-06 4.84886e-10 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| of what is happening ||| 0.00636943 0.130625 2.6679e-06 7.04374e-10 2.718 ||| 0-0 ||| 157 374827 +del ||| of what is laid down in the ||| 0.333333 0.0732944 2.6679e-06 1.35235e-15 2.718 ||| 0-6 ||| 3 374827 +del ||| of what is perhaps the ||| 1 0.130625 2.6679e-06 1.23198e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of what is perhaps ||| 1 0.130625 2.6679e-06 2.00675e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| of what is required ||| 0.025641 0.130625 2.6679e-06 2.05864e-09 2.718 ||| 0-0 ||| 39 374827 +del ||| of what is the stronger and the ||| 1 0.130625 2.6679e-06 1.69634e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| of what is the stronger and ||| 1 0.130625 2.6679e-06 2.76314e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of what is the stronger ||| 1 0.130625 2.6679e-06 2.20594e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| of what is the ||| 0.142857 0.130625 5.33579e-06 7.96368e-07 2.718 ||| 0-0 ||| 14 374827 +del ||| of what is ||| 0.0146879 0.130625 3.20148e-05 1.29719e-05 2.718 ||| 0-0 ||| 817 374827 +del ||| of what is – ||| 0.5 0.130625 2.6679e-06 5.09796e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| of what it was ||| 0.25 0.130625 2.6679e-06 2.306e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| of what it ||| 0.0340909 0.130625 8.00369e-06 7.36036e-06 2.718 ||| 0-0 ||| 88 374827 +del ||| of what the ||| 0.0183824 0.10196 1.33395e-05 0.000143752 2.718 ||| 0-0 0-2 ||| 272 374827 +del ||| of what was actually ||| 0.5 0.130625 2.6679e-06 5.3529e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| of what was left over ||| 1 0.130625 2.6679e-06 1.17945e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of what was left ||| 1 0.130625 2.6679e-06 2.44952e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of what was ||| 0.0204082 0.130625 8.00369e-06 1.29673e-06 2.718 ||| 0-0 ||| 147 374827 +del ||| of what ||| 0.00820589 0.130625 0.000117387 0.000413894 2.718 ||| 0-0 ||| 5362 374827 +del ||| of whatever ||| 0.0121951 0.130625 2.6679e-06 1.62537e-05 2.718 ||| 0-0 ||| 82 374827 +del ||| of which , I think , ||| 0.5 0.130625 2.6679e-06 9.64185e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| of which , I think ||| 0.5 0.130625 2.6679e-06 8.08509e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| of which , I ||| 0.142857 0.130625 2.6679e-06 2.11375e-06 2.718 ||| 0-0 ||| 7 374827 +del ||| of which , ||| 0.00680272 0.130625 2.6679e-06 0.000298826 2.718 ||| 0-0 ||| 147 374827 +del ||| of which are elected by ||| 1 0.130625 2.6679e-06 4.45122e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of which are elected ||| 1 0.130625 2.6679e-06 8.47835e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of which are ||| 0.00740741 0.130625 8.00369e-06 3.80195e-05 2.718 ||| 0-0 ||| 405 374827 +del ||| of which falls to the ||| 0.5 0.0732944 2.6679e-06 4.46088e-10 2.718 ||| 0-4 ||| 2 374827 +del ||| of which out ||| 1 0.130625 2.6679e-06 9.59815e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| of which the main focus is ||| 1 0.130625 2.6679e-06 3.72053e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| of which the main focus ||| 1 0.130625 2.6679e-06 1.18711e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of which the main ||| 0.5 0.130625 2.6679e-06 1.53373e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| of which the ||| 0.00283286 0.130625 2.6679e-06 0.000153835 2.718 ||| 0-0 ||| 353 374827 +del ||| of which was to use ||| 1 0.130625 2.6679e-06 3.39169e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| of which was to ||| 0.05 0.130625 2.6679e-06 6.97592e-07 2.718 ||| 0-0 ||| 20 374827 +del ||| of which was ||| 0.00826446 0.130625 2.6679e-06 7.85062e-06 2.718 ||| 0-0 ||| 121 374827 +del ||| of which ||| 0.00685733 0.130625 0.000109384 0.00250578 2.718 ||| 0-0 ||| 5979 374827 +del ||| of who should wield ||| 1 0.130625 2.6679e-06 2.53626e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| of who should ||| 0.0769231 0.130625 2.6679e-06 1.15285e-06 2.718 ||| 0-0 ||| 13 374827 +del ||| of who ||| 0.00471698 0.130625 2.6679e-06 0.000260177 2.718 ||| 0-0 ||| 212 374827 +del ||| of whom are ||| 0.00671141 0.130625 2.6679e-06 2.98083e-07 2.718 ||| 0-0 ||| 149 374827 +del ||| of whom have been imprisoned - ||| 0.5 0.130625 2.6679e-06 1.2726e-17 2.718 ||| 0-0 ||| 2 374827 +del ||| of whom have been imprisoned ||| 0.25 0.130625 2.6679e-06 3.37373e-15 2.718 ||| 0-0 ||| 4 374827 +del ||| of whom have been ||| 0.0666667 0.130625 2.6679e-06 7.84587e-10 2.718 ||| 0-0 ||| 15 374827 +del ||| of whom have ||| 0.0149254 0.130625 2.6679e-06 2.34963e-07 2.718 ||| 0-0 ||| 67 374827 +del ||| of whom ||| 0.00672043 0.130625 1.33395e-05 1.9646e-05 2.718 ||| 0-0 ||| 744 374827 +del ||| of whose ||| 0.0178571 0.130625 5.33579e-06 2.32449e-05 2.718 ||| 0-0 ||| 112 374827 +del ||| of why ||| 0.00628931 0.130625 2.6679e-06 7.27139e-05 2.718 ||| 0-0 ||| 159 374827 +del ||| of wise ||| 0.125 0.130625 2.6679e-06 1.91741e-06 2.718 ||| 0-0 ||| 8 374827 +del ||| of wishes expressed ||| 0.25 0.130625 2.6679e-06 1.51678e-09 2.718 ||| 0-0 ||| 4 374827 +del ||| of wishes ||| 0.0909091 0.130625 2.6679e-06 1.56047e-05 2.718 ||| 0-0 ||| 11 374827 +del ||| of with ||| 0.0625 0.0675765 2.6679e-06 0.000561416 2.718 ||| 0-0 0-1 ||| 16 374827 +del ||| of withdrawal from ||| 0.5 0.0911315 2.6679e-06 1.14289e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| of women under threat ||| 1 0.130625 2.6679e-06 4.92896e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| of women under ||| 0.0769231 0.130625 2.6679e-06 1.25739e-08 2.718 ||| 0-0 ||| 13 374827 +del ||| of women ||| 0.000519886 0.130625 5.33579e-06 3.50443e-05 2.718 ||| 0-0 ||| 3847 374827 +del ||| of work by ||| 0.047619 0.0883915 2.6679e-06 3.01932e-06 2.718 ||| 0-0 0-2 ||| 21 374827 +del ||| of work for the ||| 0.0526316 0.130625 2.6679e-06 8.81045e-08 2.718 ||| 0-0 ||| 19 374827 +del ||| of work for ||| 0.0192308 0.130625 2.6679e-06 1.43512e-06 2.718 ||| 0-0 ||| 52 374827 +del ||| of work ||| 0.00118812 0.130625 8.00369e-06 0.000186726 2.718 ||| 0-0 ||| 2525 374827 +del ||| of working people ||| 0.0107527 0.130625 2.6679e-06 4.94366e-08 2.718 ||| 0-0 ||| 93 374827 +del ||| of working ||| 0.00334448 0.130625 5.33579e-06 5.61652e-05 2.718 ||| 0-0 ||| 598 374827 +del ||| of world ||| 0.0227273 0.130625 5.33579e-06 6.71977e-05 2.718 ||| 0-0 ||| 88 374827 +del ||| of worry ||| 0.111111 0.130625 2.6679e-06 1.91741e-06 2.718 ||| 0-0 ||| 9 374827 +del ||| of xenophobia ||| 0.0138889 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-0 ||| 72 374827 +del ||| of years ||| 0.00143472 0.130625 2.6679e-06 5.02065e-05 2.718 ||| 0-0 ||| 697 374827 +del ||| of yesterday ||| 0.0131579 0.130625 2.6679e-06 7.02065e-06 2.718 ||| 0-0 ||| 76 374827 +del ||| of yodelling ||| 0.5 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| of young ||| 0.00529101 0.130625 2.6679e-06 1.87906e-05 2.718 ||| 0-0 ||| 189 374827 +del ||| of your colleague ||| 0.0833333 0.130625 2.6679e-06 4.18197e-09 2.718 ||| 0-0 ||| 12 374827 +del ||| of your own ||| 0.0166667 0.130625 2.6679e-06 1.27973e-07 2.718 ||| 0-0 ||| 60 374827 +del ||| of your ||| 0.00821275 0.130625 5.60258e-05 7.54868e-05 2.718 ||| 0-0 ||| 2557 374827 +del ||| of ||| 0.0456741 0.130625 0.173731 0.294986 2.718 ||| 0-0 ||| 1.42573e+06 374827 +del ||| of ’ s ||| 1 0.149332 2.6679e-06 5.38289e-06 2.718 ||| 0-0 0-2 ||| 1 374827 +del ||| off , ||| 0.00671141 0.0046938 2.6679e-06 6.89292e-06 2.718 ||| 0-0 ||| 149 374827 +del ||| off by ||| 0.0204082 0.0461582 2.6679e-06 6.58111e-06 2.718 ||| 0-1 ||| 49 374827 +del ||| off from the ||| 0.103448 0.082213 8.00369e-06 3.06367e-06 2.718 ||| 0-1 0-2 ||| 29 374827 +del ||| off from ||| 0.0163934 0.0911315 2.6679e-06 8.82099e-06 2.718 ||| 0-1 ||| 61 374827 +del ||| off meeting ||| 0.5 0.0035587 2.6679e-06 2.19373e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| off of ||| 0.0833333 0.130625 2.6679e-06 0.000120059 2.718 ||| 0-1 ||| 12 374827 +del ||| off the hook ||| 0.0454545 0.0732944 2.6679e-06 4.52344e-10 2.718 ||| 0-1 ||| 22 374827 +del ||| off the mark with ||| 0.25 0.0732944 2.6679e-06 4.90824e-11 2.718 ||| 0-1 ||| 4 374827 +del ||| off the mark ||| 0.0384615 0.0732944 2.6679e-06 7.67571e-09 2.718 ||| 0-1 ||| 26 374827 +del ||| off the ||| 0.0527607 0.0732944 0.00011472 0.000141358 2.718 ||| 0-1 ||| 815 374827 +del ||| off this ||| 0.0769231 0.0033154 2.6679e-06 9.34431e-07 2.718 ||| 0-1 ||| 13 374827 +del ||| off to the West . ||| 0.5 0.0732944 2.6679e-06 5.6309e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| off to the West ||| 0.5 0.0732944 2.6679e-06 1.85899e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| off to the ||| 0.2 0.0732944 2.6679e-06 1.25608e-05 2.718 ||| 0-2 ||| 5 374827 +del ||| off ||| 0.00368701 0.0046938 2.40111e-05 5.78e-05 2.718 ||| 0-0 ||| 2441 374827 +del ||| offer hope for the ||| 0.333333 0.0435798 2.6679e-06 7.49342e-11 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| offered by that ||| 0.25 0.0461582 2.6679e-06 1.18321e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| offered by the ||| 0.00666667 0.0597263 5.33579e-06 2.44297e-07 2.718 ||| 0-1 0-2 ||| 300 374827 +del ||| offered by ||| 0.00661157 0.0461582 1.06716e-05 7.03386e-07 2.718 ||| 0-1 ||| 605 374827 +del ||| offhand attitude of the ||| 1 0.10196 2.6679e-06 2.13922e-12 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| office of the ||| 0.0105263 0.10196 2.6679e-06 1.05424e-05 2.718 ||| 0-1 0-2 ||| 95 374827 +del ||| office of ||| 0.00625 0.130625 2.6679e-06 3.0354e-05 2.718 ||| 0-1 ||| 160 374827 +del ||| office ||| 0.000325733 0.0049492 2.6679e-06 2.5e-05 2.718 ||| 0-0 ||| 3070 374827 +del ||| offices of the ||| 0.0166667 0.10196 2.6679e-06 9.63059e-07 2.718 ||| 0-1 0-2 ||| 60 374827 +del ||| offices ||| 0.000749625 0.0014848 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 1334 374827 +del ||| official of the ||| 0.166667 0.10196 5.33579e-06 3.98543e-06 2.718 ||| 0-1 0-2 ||| 12 374827 +del ||| officials in the ||| 0.0212766 0.0458111 2.6679e-06 1.31122e-07 2.718 ||| 0-1 0-2 ||| 47 374827 +del ||| often imputed , of ||| 0.333333 0.130625 2.6679e-06 1.84898e-12 2.718 ||| 0-3 ||| 3 374827 +del ||| often speak about the ||| 1 0.0732944 2.6679e-06 8.73292e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| oil can possibly be ||| 1 0.13509 2.6679e-06 3.36435e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| oil can possibly ||| 1 0.13509 2.6679e-06 1.85641e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| oil can ||| 0.125 0.13509 2.6679e-06 4.12535e-06 2.718 ||| 0-0 ||| 8 374827 +del ||| oil in ||| 0.0111111 0.13509 2.6679e-06 2.9688e-05 2.718 ||| 0-0 ||| 90 374827 +del ||| oil ||| 0.00389462 0.13509 4.53543e-05 0.001387 2.718 ||| 0-0 ||| 4365 374827 +del ||| old-fashioned ||| 0.00943396 0.0128205 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 106 374827 +del ||| ombudsman ||| 0.0060241 0.312775 2.6679e-06 0.0001865 2.718 ||| 0-0 ||| 166 374827 +del ||| omission from ||| 0.111111 0.0911315 2.6679e-06 6.28523e-08 2.718 ||| 0-1 ||| 9 374827 +del ||| on , the ||| 0.0123457 0.0436809 2.6679e-06 0.000406217 2.718 ||| 0-0 0-2 ||| 81 374827 +del ||| on , ||| 0.00180995 0.0140673 5.33579e-06 0.00116959 2.718 ||| 0-0 ||| 1105 374827 +del ||| on 11 May 1998 ||| 1 0.0140673 2.6679e-06 1.05447e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| on 11 May ||| 0.0625 0.0140673 2.6679e-06 1.12178e-12 2.718 ||| 0-0 ||| 16 374827 +del ||| on 11 ||| 0.00195312 0.0140673 2.6679e-06 1.3044e-07 2.718 ||| 0-0 ||| 512 374827 +del ||| on August 1995 on ||| 1 0.0140673 2.6679e-06 1.11032e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| on August 1995 ||| 1 0.0140673 2.6679e-06 1.65943e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| on August ||| 0.2 0.0140673 2.6679e-06 3.5307e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| on Legal Affairs and the Internal Market ||| 0.0018622 0.0732944 2.6679e-06 2.17201e-23 2.718 ||| 0-4 ||| 537 374827 +del ||| on Legal Affairs and the Internal ||| 0.00214592 0.0732944 2.6679e-06 7.26425e-19 2.718 ||| 0-4 ||| 466 374827 +del ||| on Legal Affairs and the ||| 0.00197628 0.0732944 2.6679e-06 2.62247e-14 2.718 ||| 0-4 ||| 506 374827 +del ||| on Mount ||| 1 0.10486 2.6679e-06 1.15729e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| on Regional Policy ||| 0.00172414 0.0140673 2.6679e-06 1.23418e-11 2.718 ||| 0-0 ||| 580 374827 +del ||| on Regional and ||| 0.5 0.0140673 2.6679e-06 1.59702e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| on Regional ||| 0.105263 0.0140673 5.33579e-06 1.27498e-07 2.718 ||| 0-0 ||| 19 374827 +del ||| on Turkish migrants in Germany ||| 1 0.0140673 2.6679e-06 8.12839e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| on Turkish migrants in ||| 1 0.0140673 2.6679e-06 3.13837e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| on Turkish migrants ||| 1 0.0140673 2.6679e-06 1.46622e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| on Turkish ||| 0.333333 0.0140673 2.6679e-06 2.93244e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| on Wednesday , ||| 0.00598802 0.0140673 2.6679e-06 2.5731e-09 2.718 ||| 0-0 ||| 167 374827 +del ||| on Wednesday ||| 0.00133511 0.0140673 2.6679e-06 2.15765e-08 2.718 ||| 0-0 ||| 749 374827 +del ||| on a ' business ||| 1 0.0140673 2.6679e-06 1.86505e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| on a ' ||| 0.0588235 0.0140673 2.6679e-06 1.49324e-06 2.718 ||| 0-0 ||| 17 374827 +del ||| on a point of ||| 0.00175747 0.130625 2.6679e-06 7.65345e-08 2.718 ||| 0-3 ||| 569 374827 +del ||| on a very ||| 0.016129 0.0140673 2.6679e-06 1.51263e-06 2.718 ||| 0-0 ||| 62 374827 +del ||| on a ||| 0.0020744 0.0140673 8.00369e-05 0.000434725 2.718 ||| 0-0 ||| 14462 374827 +del ||| on account from ||| 1 0.0525994 2.6679e-06 6.1111e-08 2.718 ||| 0-0 0-2 ||| 1 374827 +del ||| on all forms of ||| 0.0526316 0.130625 2.6679e-06 8.31946e-10 2.718 ||| 0-3 ||| 19 374827 +del ||| on all ||| 0.000423908 0.0140673 2.6679e-06 4.63444e-05 2.718 ||| 0-0 ||| 2359 374827 +del ||| on an ||| 0.00141844 0.0140673 1.06716e-05 4.35914e-05 2.718 ||| 0-0 ||| 2820 374827 +del ||| on and ||| 0.00296736 0.0140673 2.6679e-06 0.000122848 2.718 ||| 0-0 ||| 337 374827 +del ||| on any ||| 0.00202429 0.0140673 2.6679e-06 1.48309e-05 2.718 ||| 0-0 ||| 494 374827 +del ||| on at a ||| 0.111111 0.0140673 2.6679e-06 1.82037e-06 2.718 ||| 0-0 ||| 9 374827 +del ||| on at ||| 0.00653595 0.0140673 2.6679e-06 4.10679e-05 2.718 ||| 0-0 ||| 153 374827 +del ||| on behalf of my group ||| 0.000952381 0.130625 2.6679e-06 5.2071e-14 2.718 ||| 0-2 ||| 1050 374827 +del ||| on behalf of my ||| 0.00065703 0.130625 2.6679e-06 4.04278e-10 2.718 ||| 0-2 ||| 1522 374827 +del ||| on behalf of the ||| 0.000553174 0.10196 2.13432e-05 2.18336e-07 2.718 ||| 0-2 0-3 ||| 14462 374827 +del ||| on behalf of ||| 0.00075643 0.130625 2.13432e-05 6.28639e-07 2.718 ||| 0-2 ||| 10576 374827 +del ||| on behalf ||| 0.000107423 0.0140673 5.33579e-06 3.12369e-06 2.718 ||| 0-0 ||| 18618 374827 +del ||| on being ||| 0.01 0.0140673 2.6679e-06 2.79102e-05 2.718 ||| 0-0 ||| 100 374827 +del ||| on believing in ||| 1 0.0140673 2.6679e-06 1.74237e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| on believing ||| 0.2 0.0140673 2.6679e-06 8.14023e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| on board all of ||| 0.25 0.130625 2.6679e-06 1.24512e-09 2.718 ||| 0-3 ||| 4 374827 +del ||| on board the ||| 0.00636943 0.0140673 2.6679e-06 8.03804e-08 2.718 ||| 0-0 ||| 157 374827 +del ||| on board ||| 0.0015361 0.0140673 5.33579e-06 1.3093e-06 2.718 ||| 0-0 ||| 1302 374827 +del ||| on bottles of ||| 1 0.0723461 2.6679e-06 4.0503e-09 2.718 ||| 0-0 0-2 ||| 1 374827 +del ||| on by the ||| 0.0107527 0.0445066 2.6679e-06 5.50792e-05 2.718 ||| 0-0 0-1 0-2 ||| 93 374827 +del ||| on by ||| 0.0046729 0.0301128 2.6679e-06 0.000158585 2.718 ||| 0-0 0-1 ||| 214 374827 +del ||| on carrying ||| 0.0357143 0.0140673 2.6679e-06 5.93354e-07 2.718 ||| 0-0 ||| 28 374827 +del ||| on clear ||| 0.125 0.0140673 2.6679e-06 3.26492e-06 2.718 ||| 0-0 ||| 8 374827 +del ||| on commemorating ||| 1 0.0117065 2.6679e-06 1.27498e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| on company law ||| 0.0526316 0.0140673 2.6679e-06 6.53586e-11 2.718 ||| 0-0 ||| 19 374827 +del ||| on company ||| 0.125 0.0140673 2.6679e-06 3.70723e-07 2.718 ||| 0-0 ||| 8 374827 +del ||| on denominations and specifications of euro ||| 1 0.0140673 2.6679e-06 8.78142e-22 2.718 ||| 0-0 ||| 1 374827 +del ||| on denominations and specifications of ||| 1 0.0140673 2.6679e-06 1.49598e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| on denominations and specifications ||| 1 0.0140673 2.6679e-06 2.75179e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| on denominations and ||| 0.0714286 0.0140673 2.6679e-06 8.59934e-11 2.718 ||| 0-0 ||| 14 374827 +del ||| on denominations ||| 0.0625 0.0140673 2.6679e-06 6.86525e-09 2.718 ||| 0-0 ||| 16 374827 +del ||| on developments in ||| 0.0243902 0.0183279 2.6679e-06 5.39492e-09 2.718 ||| 0-2 ||| 41 374827 +del ||| on end ||| 0.0172414 0.0140673 2.6679e-06 4.26724e-06 2.718 ||| 0-0 ||| 58 374827 +del ||| on essential elements of EU policy ||| 0.5 0.130625 2.6679e-06 1.23191e-18 2.718 ||| 0-3 ||| 2 374827 +del ||| on essential elements of EU ||| 0.5 0.130625 2.6679e-06 3.12906e-15 2.718 ||| 0-3 ||| 2 374827 +del ||| on essential elements of ||| 0.333333 0.130625 2.6679e-06 6.32389e-12 2.718 ||| 0-3 ||| 3 374827 +del ||| on from the ||| 0.114286 0.0594977 5.33579e-05 7.38254e-05 2.718 ||| 0-0 0-1 0-2 ||| 175 374827 +del ||| on from ||| 0.0445026 0.0525994 4.53543e-05 0.00021256 2.718 ||| 0-0 0-1 ||| 382 374827 +del ||| on her ||| 0.00245098 0.0140673 8.00369e-06 2.66862e-06 2.718 ||| 0-0 ||| 1224 374827 +del ||| on him by the ||| 0.5 0.0597263 2.6679e-06 1.20471e-08 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| on his ||| 0.000386698 0.0140673 2.6679e-06 2.94715e-06 2.718 ||| 0-0 ||| 2586 374827 +del ||| on how ||| 0.000910332 0.0140673 5.33579e-06 3.51501e-06 2.718 ||| 0-0 ||| 2197 374827 +del ||| on in the ||| 0.0143885 0.0458111 5.33579e-06 6.26669e-05 2.718 ||| 0-1 0-2 ||| 139 374827 +del ||| on in this ||| 0.0277778 0.0161976 2.6679e-06 1.70887e-06 2.718 ||| 0-0 0-1 ||| 36 374827 +del ||| on in ||| 0.00609756 0.0161976 8.00369e-06 0.000264473 2.718 ||| 0-0 0-1 ||| 492 374827 +del ||| on individuals ||| 0.0192308 0.0140673 2.6679e-06 3.17763e-07 2.718 ||| 0-0 ||| 52 374827 +del ||| on individuals ’ ||| 1 0.0140673 2.6679e-06 5.53575e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| on issues such ||| 0.0416667 0.0140673 2.6679e-06 5.10312e-09 2.718 ||| 0-0 ||| 24 374827 +del ||| on issues ||| 0.00155763 0.0140673 2.6679e-06 2.46659e-06 2.718 ||| 0-0 ||| 642 374827 +del ||| on it by ||| 0.0434783 0.0301128 2.6679e-06 2.82015e-06 2.718 ||| 0-0 0-2 ||| 23 374827 +del ||| on it of ||| 0.5 0.0723461 2.6679e-06 5.1448e-05 2.718 ||| 0-0 0-2 ||| 2 374827 +del ||| on it ||| 0.000683995 0.0140673 2.6679e-06 0.000174409 2.718 ||| 0-0 ||| 1462 374827 +del ||| on its ||| 0.00220264 0.00882395 1.60074e-05 4.79194e-06 2.718 ||| 0-0 0-1 ||| 2724 374827 +del ||| on looking after the ||| 1 0.0436809 2.6679e-06 9.76647e-11 2.718 ||| 0-0 0-3 ||| 1 374827 +del ||| on matters of ||| 0.00308642 0.130625 2.6679e-06 3.65143e-07 2.718 ||| 0-2 ||| 324 374827 +del ||| on my own ||| 0.00840336 0.0140673 2.6679e-06 1.06926e-08 2.718 ||| 0-0 ||| 119 374827 +del ||| on my ||| 0.00235294 0.0140673 5.33579e-06 6.3072e-06 2.718 ||| 0-0 ||| 850 374827 +del ||| on national ||| 0.0285714 0.0140673 2.6679e-06 1.26026e-06 2.718 ||| 0-0 ||| 35 374827 +del ||| on of the ||| 0.333333 0.0726622 2.6679e-06 0.00100481 2.718 ||| 0-0 0-1 0-2 ||| 3 374827 +del ||| on of ||| 0.111111 0.0723461 5.33579e-06 0.00289307 2.718 ||| 0-0 0-1 ||| 18 374827 +del ||| on once again today ||| 0.5 0.0140673 2.6679e-06 1.0474e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| on once again ||| 0.25 0.0140673 2.6679e-06 2.32085e-09 2.718 ||| 0-0 ||| 4 374827 +del ||| on once ||| 0.5 0.0140673 2.6679e-06 4.01323e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| on one score ||| 1 0.0140673 2.6679e-06 4.41479e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| on one ||| 0.000909918 0.0140673 2.6679e-06 4.08777e-05 2.718 ||| 0-0 ||| 1099 374827 +del ||| on only ||| 0.0322581 0.0140673 2.6679e-06 1.09167e-05 2.718 ||| 0-0 ||| 31 374827 +del ||| on or ||| 0.0238095 0.0140673 2.6679e-06 1.12129e-05 2.718 ||| 0-0 ||| 42 374827 +del ||| on our first point of ||| 1 0.130625 2.6679e-06 1.28232e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| on our ||| 0.00138889 0.00780115 1.33395e-05 2.9246e-06 2.718 ||| 0-0 0-1 ||| 3600 374827 +del ||| on producer groups in ||| 1 0.0279525 2.6679e-06 9.311e-13 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| on producer groups ||| 1 0.0279525 2.6679e-06 4.35002e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| on producer ||| 1 0.0279525 2.6679e-06 6.57102e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| on screens here in ||| 1 0.0161976 2.6679e-06 5.89928e-13 2.718 ||| 0-0 0-3 ||| 1 374827 +del ||| on support for ||| 0.0119048 0.0140673 2.6679e-06 2.57716e-08 2.718 ||| 0-0 ||| 84 374827 +del ||| on support ||| 0.00806452 0.0140673 2.6679e-06 3.35318e-06 2.718 ||| 0-0 ||| 124 374827 +del ||| on that of the ||| 0.0666667 0.10196 2.6679e-06 1.15314e-05 2.718 ||| 0-2 0-3 ||| 15 374827 +del ||| on that ||| 0.00059312 0.0140673 5.33579e-06 0.000164978 2.718 ||| 0-0 ||| 3372 374827 +del ||| on the Comoros ||| 0.2 0.0140673 2.6679e-06 8.4294e-10 2.718 ||| 0-0 ||| 5 374827 +del ||| on the Erika I ||| 0.5 0.0724941 2.6679e-06 3.419e-09 2.718 ||| 0-0 0-1 0-2 ||| 2 374827 +del ||| on the Erika ||| 0.5 0.0724941 2.6679e-06 4.83354e-07 2.718 ||| 0-0 0-1 0-2 ||| 2 374827 +del ||| on the Euro ||| 0.142857 0.0436809 2.6679e-06 3.20192e-08 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| on the European ||| 0.00666667 0.0313926 2.6679e-06 1.04601e-05 2.718 ||| 0-0 0-1 0-2 ||| 150 374827 +del ||| on the Latin ||| 0.25 0.0436809 2.6679e-06 3.6788e-08 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| on the UN ||| 0.027027 0.0436809 2.6679e-06 1.42043e-07 2.718 ||| 0-0 0-1 ||| 37 374827 +del ||| on the USA ||| 0.027027 0.0140673 2.6679e-06 7.58646e-09 2.718 ||| 0-0 ||| 37 374827 +del ||| on the activities of the ||| 0.0163934 0.0140673 2.6679e-06 1.59756e-10 2.718 ||| 0-0 ||| 61 374827 +del ||| on the activities of ||| 0.015873 0.0140673 2.6679e-06 2.60224e-09 2.718 ||| 0-0 ||| 63 374827 +del ||| on the activities ||| 0.00884956 0.0140673 2.6679e-06 4.7867e-08 2.718 ||| 0-0 ||| 113 374827 +del ||| on the agenda is called and there ||| 1 0.106023 2.6679e-06 3.74848e-15 2.718 ||| 0-0 0-1 0-2 ||| 1 374827 +del ||| on the agenda is called and ||| 1 0.106023 2.6679e-06 1.22287e-12 2.718 ||| 0-0 0-1 0-2 ||| 1 374827 +del ||| on the agenda is called ||| 1 0.106023 2.6679e-06 9.76277e-11 2.718 ||| 0-0 0-1 0-2 ||| 1 374827 +del ||| on the agenda is ||| 0.0212766 0.106023 2.6679e-06 5.61724e-07 2.718 ||| 0-0 0-1 0-2 ||| 47 374827 +del ||| on the agenda ||| 0.000834376 0.106023 5.33579e-06 1.79229e-05 2.718 ||| 0-0 0-1 0-2 ||| 2397 374827 +del ||| on the application ||| 0.00232019 0.0732944 2.6679e-06 1.41293e-07 2.718 ||| 0-1 ||| 431 374827 +del ||| on the assumption ||| 0.00408163 0.0140673 2.6679e-06 6.08121e-09 2.718 ||| 0-0 ||| 245 374827 +del ||| on the basis of the ||| 0.00173712 0.0140673 8.00369e-06 1.19325e-09 2.718 ||| 0-0 ||| 1727 374827 +del ||| on the basis of ||| 0.00052789 0.0140673 8.00369e-06 1.94366e-08 2.718 ||| 0-0 ||| 5683 374827 +del ||| on the basis ||| 0.000772439 0.0436809 1.33395e-05 2.02266e-06 2.718 ||| 0-0 0-1 ||| 6473 374827 +del ||| on the capital ||| 0.142857 0.0436809 2.6679e-06 8.82232e-08 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| on the central Upper Rhine ||| 1 0.0732944 2.6679e-06 4.88505e-20 2.718 ||| 0-1 ||| 1 374827 +del ||| on the central Upper ||| 1 0.0732944 2.6679e-06 6.97864e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| on the central ||| 0.5 0.0732944 2.6679e-06 6.34422e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| on the common organisation of the ||| 0.114286 0.0728202 1.06716e-05 2.72481e-12 2.718 ||| 0-0 0-1 0-4 0-5 ||| 35 374827 +del ||| on the comprehensive ||| 0.142857 0.0436809 2.6679e-06 8.58388e-08 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| on the continued ||| 0.0555556 0.0436809 2.6679e-06 1.16495e-07 2.718 ||| 0-0 0-1 ||| 18 374827 +del ||| on the entire ||| 0.0117647 0.0436809 2.6679e-06 2.69779e-07 2.718 ||| 0-0 0-1 ||| 85 374827 +del ||| on the following ||| 0.00163666 0.0436809 2.6679e-06 4.35325e-07 2.718 ||| 0-0 0-1 ||| 611 374827 +del ||| on the general ||| 0.111111 0.0436809 2.6679e-06 5.95762e-07 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| on the go ||| 0.333333 0.0732944 2.6679e-06 1.35901e-06 2.718 ||| 0-1 ||| 3 374827 +del ||| on the ground ||| 0.00060241 0.0732944 2.6679e-06 2.71895e-07 2.718 ||| 0-1 ||| 1660 374827 +del ||| on the harmonisation of the laws , ||| 0.333333 0.0728202 2.6679e-06 4.30332e-15 2.718 ||| 0-0 0-1 0-3 0-4 ||| 3 374827 +del ||| on the harmonisation of the laws ||| 0.333333 0.0728202 2.6679e-06 3.60852e-14 2.718 ||| 0-0 0-1 0-3 0-4 ||| 3 374827 +del ||| on the harmonisation of the ||| 0.0769231 0.0728202 2.6679e-06 1.64023e-09 2.718 ||| 0-0 0-1 0-3 0-4 ||| 13 374827 +del ||| on the heels ||| 0.133333 0.0140673 5.33579e-06 2.58903e-09 2.718 ||| 0-0 ||| 15 374827 +del ||| on the implementation of the ||| 0.0025 0.10196 2.6679e-06 3.27e-09 2.718 ||| 0-3 0-4 ||| 400 374827 +del ||| on the issue of ||| 0.000796813 0.0726622 2.6679e-06 7.60439e-07 2.718 ||| 0-0 0-1 0-3 ||| 1255 374827 +del ||| on the matter of the ||| 0.0232558 0.0728202 2.6679e-06 3.62073e-07 2.718 ||| 0-0 0-1 0-3 0-4 ||| 43 374827 +del ||| on the matter ||| 0.00106724 0.0436809 2.6679e-06 3.53404e-06 2.718 ||| 0-0 0-1 ||| 937 374827 +del ||| on the need to ||| 0.00146413 0.0436809 2.6679e-06 2.77525e-07 2.718 ||| 0-0 0-1 ||| 683 374827 +del ||| on the need ||| 0.000819672 0.0436809 2.6679e-06 3.12324e-06 2.718 ||| 0-0 0-1 ||| 1220 374827 +del ||| on the new ||| 0.00170358 0.0436809 2.6679e-06 2.03595e-06 2.718 ||| 0-0 0-1 ||| 587 374827 +del ||| on the number ||| 0.00847458 0.0140673 2.6679e-06 2.97919e-07 2.718 ||| 0-0 ||| 118 374827 +del ||| on the one hand ||| 0.000270197 0.0140673 2.6679e-06 9.95289e-10 2.718 ||| 0-0 ||| 3701 374827 +del ||| on the one ||| 0.000303582 0.0140673 2.6679e-06 2.50955e-06 2.718 ||| 0-0 ||| 3294 374827 +del ||| on the ordinary ||| 1 0.0436809 2.6679e-06 6.26759e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| on the other , the ||| 0.00813008 0.0732944 2.6679e-06 2.20414e-08 2.718 ||| 0-4 ||| 123 374827 +del ||| on the other hand ||| 0.000432526 0.0436809 5.33579e-06 1.75014e-09 2.718 ||| 0-0 0-1 ||| 4624 374827 +del ||| on the other ||| 0.000649351 0.0732944 1.06716e-05 3.0106e-06 2.718 ||| 0-1 ||| 6160 374827 +del ||| on the part of , the ||| 1 0.0726622 2.6679e-06 8.77038e-09 2.718 ||| 0-0 0-1 0-3 ||| 1 374827 +del ||| on the part of , ||| 0.5 0.0726622 2.6679e-06 1.42859e-07 2.718 ||| 0-0 0-1 0-3 ||| 2 374827 +del ||| on the part of our ||| 0.027027 0.0436809 2.6679e-06 3.04532e-10 2.718 ||| 0-0 0-1 ||| 37 374827 +del ||| on the part of the ||| 0.042029 0.0728202 0.000154738 4.16061e-07 2.718 ||| 0-0 0-1 0-3 0-4 ||| 1380 374827 +del ||| on the part of whatever ||| 1 0.130625 2.6679e-06 7.95981e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| on the part of ||| 0.0127728 0.0726622 6.40295e-05 1.19793e-06 2.718 ||| 0-0 0-1 0-3 ||| 1879 374827 +del ||| on the part ||| 0.00536746 0.0436809 3.46827e-05 4.06099e-06 2.718 ||| 0-0 0-1 ||| 2422 374827 +del ||| on the protection of jobs in a ||| 1 0.0140673 2.6679e-06 1.63282e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| on the protection of jobs in ||| 0.5 0.0140673 2.6679e-06 3.68367e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| on the protection of jobs ||| 0.5 0.0140673 2.6679e-06 1.72098e-13 2.718 ||| 0-0 ||| 2 374827 +del ||| on the protection of ||| 0.00363636 0.0140673 5.33579e-06 3.32236e-09 2.718 ||| 0-0 ||| 550 374827 +del ||| on the protection ||| 0.00156986 0.0140673 2.6679e-06 6.11132e-08 2.718 ||| 0-0 ||| 637 374827 +del ||| on the public ||| 0.025 0.0436809 2.6679e-06 5.50458e-07 2.718 ||| 0-0 0-1 ||| 40 374827 +del ||| on the question of ||| 0.00121212 0.0726622 2.6679e-06 8.31279e-07 2.718 ||| 0-0 0-1 0-3 ||| 825 374827 +del ||| on the roads negative effects ||| 0.5 0.0732944 2.6679e-06 3.51381e-17 2.718 ||| 0-1 ||| 2 374827 +del ||| on the roads negative ||| 0.5 0.0732944 2.6679e-06 6.4711e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| on the roads ||| 0.0046729 0.0732944 2.6679e-06 2.76543e-08 2.718 ||| 0-1 ||| 214 374827 +del ||| on the said ||| 0.25 0.0436809 2.6679e-06 1.40101e-06 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| on the same ||| 0.0022805 0.0436809 5.33579e-06 2.74105e-06 2.718 ||| 0-0 0-1 ||| 877 374827 +del ||| on the significance of the ||| 0.125 0.0728202 2.6679e-06 7.15421e-09 2.718 ||| 0-0 0-1 0-3 0-4 ||| 8 374827 +del ||| on the state ||| 0.00374532 0.0140673 2.6679e-06 1.5209e-07 2.718 ||| 0-0 ||| 267 374827 +del ||| on the subject ' 2050 : ||| 1 0.0436809 2.6679e-06 1.48902e-18 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| on the subject ' 2050 ||| 1 0.0436809 2.6679e-06 4.42107e-15 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| on the subject ' ||| 0.25 0.0436809 2.6679e-06 6.31582e-09 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| on the subject of the ||| 0.00655738 0.0728202 5.33579e-06 1.88383e-07 2.718 ||| 0-0 0-1 0-3 0-4 ||| 305 374827 +del ||| on the subject ||| 0.00121408 0.0436809 8.00369e-06 1.83872e-06 2.718 ||| 0-0 0-1 ||| 2471 374827 +del ||| on the table , on ||| 1 0.0436809 2.6679e-06 1.84009e-10 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| on the table , ||| 0.00584795 0.0436809 2.6679e-06 2.75009e-08 2.718 ||| 0-0 0-1 ||| 171 374827 +del ||| on the table ||| 0.00147601 0.0436809 5.33579e-06 2.30606e-07 2.718 ||| 0-0 0-1 ||| 1355 374827 +del ||| on the very ||| 0.00884956 0.0436809 2.6679e-06 1.18522e-05 2.718 ||| 0-0 0-1 ||| 113 374827 +del ||| on the visa ||| 0.25 0.0360238 2.6679e-06 5.45689e-07 2.718 ||| 0-0 0-1 0-2 ||| 4 374827 +del ||| on the whole ||| 0.001443 0.0436809 2.6679e-06 1.92694e-06 2.718 ||| 0-0 0-1 ||| 693 374827 +del ||| on the ||| 0.0184961 0.0436809 0.00707793 0.0034063 2.718 ||| 0-0 0-1 ||| 143436 374827 +del ||| on their ||| 0.000351617 0.0140673 2.6679e-06 1.13679e-05 2.718 ||| 0-0 ||| 2844 374827 +del ||| on them ||| 0.00255102 0.0140673 5.33579e-06 2.63076e-05 2.718 ||| 0-0 ||| 784 374827 +del ||| on there ||| 0.0208333 0.0140673 2.6679e-06 3.00629e-05 2.718 ||| 0-0 ||| 48 374827 +del ||| on these three ||| 0.0294118 0.0140673 2.6679e-06 6.43847e-10 2.718 ||| 0-0 ||| 34 374827 +del ||| on these ||| 0.000361402 0.0140673 2.6679e-06 1.01714e-05 2.718 ||| 0-0 ||| 2767 374827 +del ||| on this issue of ||| 0.0217391 0.130625 2.6679e-06 9.6516e-09 2.718 ||| 0-3 ||| 46 374827 +del ||| on this matter ||| 0.00047259 0.00869135 2.6679e-06 2.33614e-08 2.718 ||| 0-0 0-1 ||| 2116 374827 +del ||| on this ||| 0.00201641 0.00869135 0.000117387 2.2517e-05 2.718 ||| 0-0 0-1 ||| 21821 374827 +del ||| on those of the ||| 0.111111 0.10196 2.6679e-06 4.96381e-07 2.718 ||| 0-2 0-3 ||| 9 374827 +del ||| on time ||| 0.00225225 0.0140673 2.6679e-06 1.6101e-05 2.718 ||| 0-0 ||| 444 374827 +del ||| on to the ||| 0.00189394 0.0732944 2.6679e-06 0.000206497 2.718 ||| 0-2 ||| 528 374827 +del ||| on to ||| 0.000682128 0.0140673 2.6679e-06 0.000871477 2.718 ||| 0-0 ||| 1466 374827 +del ||| on tobacco ||| 0.01 0.0924544 2.6679e-06 1.02792e-05 2.718 ||| 0-0 0-1 ||| 100 374827 +del ||| on today ’ s ||| 0.5 0.0910535 2.6679e-06 8.07678e-11 2.718 ||| 0-0 0-3 ||| 2 374827 +del ||| on various ||| 0.00342466 0.0140673 2.6679e-06 1.51428e-06 2.718 ||| 0-0 ||| 292 374827 +del ||| on what the ||| 0.0307692 0.0436809 5.33579e-06 4.77938e-06 2.718 ||| 0-0 0-2 ||| 65 374827 +del ||| on what ||| 0.000548847 0.0140673 2.6679e-06 1.37609e-05 2.718 ||| 0-0 ||| 1822 374827 +del ||| on whether ||| 0.00182149 0.0140673 2.6679e-06 2.57643e-06 2.718 ||| 0-0 ||| 549 374827 +del ||| on which the ||| 0.0105263 0.0436809 1.33395e-05 2.89352e-05 2.718 ||| 0-0 0-2 ||| 475 374827 +del ||| on which they can ||| 0.166667 0.0140673 2.6679e-06 8.08791e-10 2.718 ||| 0-0 ||| 6 374827 +del ||| on which they ||| 0.0357143 0.0140673 2.6679e-06 2.71926e-07 2.718 ||| 0-0 ||| 28 374827 +del ||| on which ||| 0.00123813 0.0140673 1.60074e-05 8.33108e-05 2.718 ||| 0-0 ||| 4846 374827 +del ||| on why ||| 0.0444444 0.0140673 5.33579e-06 2.41755e-06 2.718 ||| 0-0 ||| 45 374827 +del ||| on working time ||| 0.0128205 0.0140673 2.6679e-06 3.06563e-09 2.718 ||| 0-0 ||| 78 374827 +del ||| on working ||| 0.0104167 0.0140673 2.6679e-06 1.86735e-06 2.718 ||| 0-0 ||| 96 374827 +del ||| on ||| 0.00632398 0.0140673 0.00772356 0.0098075 2.718 ||| 0-0 ||| 457781 374827 +del ||| once again the ||| 0.00327869 0.0732944 2.6679e-06 8.21889e-08 2.718 ||| 0-2 ||| 305 374827 +del ||| once and for ||| 0.000799361 0.0138653 2.6679e-06 5.51432e-08 2.718 ||| 0-2 ||| 1251 374827 +del ||| once the ||| 0.00346021 0.0732944 5.33579e-06 0.000142122 2.718 ||| 0-1 ||| 578 374827 +del ||| one ' s ||| 0.0357143 0.0987045 5.33579e-06 2.07295e-07 2.718 ||| 0-1 0-2 ||| 56 374827 +del ||| one ' ||| 0.0126582 0.0293692 2.6679e-06 1.97901e-05 2.718 ||| 0-1 ||| 79 374827 +del ||| one 's ||| 0.0128205 0.169811 1.06716e-05 0.000167474 2.718 ||| 0-1 ||| 312 374827 +del ||| one after the other ||| 0.0263158 0.0732944 2.6679e-06 5.08228e-10 2.718 ||| 0-2 ||| 38 374827 +del ||| one after the ||| 0.0833333 0.0732944 2.6679e-06 3.92303e-07 2.718 ||| 0-2 ||| 12 374827 +del ||| one and the ||| 0.00826446 0.0732944 2.6679e-06 1.81326e-05 2.718 ||| 0-2 ||| 121 374827 +del ||| one aspect of ||| 0.00561798 0.130625 2.6679e-06 8.66797e-08 2.718 ||| 0-2 ||| 178 374827 +del ||| one by the ||| 0.0714286 0.0597263 2.6679e-06 2.34076e-05 2.718 ||| 0-1 0-2 ||| 14 374827 +del ||| one by ||| 0.0299401 0.0461582 1.33395e-05 6.73957e-05 2.718 ||| 0-1 ||| 167 374827 +del ||| one considers the ||| 0.0227273 0.0732944 2.6679e-06 2.18589e-08 2.718 ||| 0-2 ||| 44 374827 +del ||| one contained in ||| 0.0769231 0.014266 2.6679e-06 4.13617e-09 2.718 ||| 0-1 0-2 ||| 13 374827 +del ||| one for the ||| 0.00925926 0.0435798 2.6679e-06 1.5574e-05 2.718 ||| 0-1 0-2 ||| 108 374827 +del ||| one for ||| 0.0025 0.0138653 2.6679e-06 4.4841e-05 2.718 ||| 0-1 ||| 400 374827 +del ||| one from the ||| 0.0540541 0.082213 5.33579e-06 3.13744e-05 2.718 ||| 0-1 0-2 ||| 37 374827 +del ||| one from ||| 0.020202 0.0911315 5.33579e-06 9.03339e-05 2.718 ||| 0-1 ||| 99 374827 +del ||| one hand , the ||| 0.00293255 0.0732944 2.6679e-06 6.84669e-08 2.718 ||| 0-3 ||| 341 374827 +del ||| one hand we have the ||| 0.1 0.0732944 2.6679e-06 7.79494e-11 2.718 ||| 0-4 ||| 10 374827 +del ||| one has to do with the ||| 0.333333 0.0732944 2.6679e-06 1.45451e-11 2.718 ||| 0-5 ||| 3 374827 +del ||| one held by ||| 1 0.0244345 2.6679e-06 1.94774e-09 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| one held on ||| 0.333333 0.0140673 2.6679e-06 1.04279e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| one in the ||| 0.0956522 0.0458111 2.93469e-05 3.90369e-05 2.718 ||| 0-1 0-2 ||| 115 374827 +del ||| one in which their ||| 0.5 0.0012173 2.6679e-06 1.2042e-10 2.718 ||| 0-3 ||| 2 374827 +del ||| one in ||| 0.00167364 0.0183279 5.33579e-06 0.000112396 2.718 ||| 0-1 ||| 1195 374827 +del ||| one is on the ||| 0.125 0.0436809 2.6679e-06 4.44964e-07 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| one of a ||| 0.0117647 0.130625 2.6679e-06 5.44986e-05 2.718 ||| 0-1 ||| 85 374827 +del ||| one of the ||| 0.000541288 0.10196 2.40111e-05 0.000427025 2.718 ||| 0-1 0-2 ||| 16627 374827 +del ||| one of them ||| 0.0015625 0.130625 2.6679e-06 3.29801e-06 2.718 ||| 0-1 ||| 640 374827 +del ||| one of these agreements could be ||| 1 0.130625 2.6679e-06 6.09651e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| one of these agreements could ||| 1 0.130625 2.6679e-06 3.36398e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| one of these agreements ||| 0.333333 0.130625 2.6679e-06 4.73067e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| one of these ||| 0.0016 0.130625 2.6679e-06 1.27511e-06 2.718 ||| 0-1 ||| 625 374827 +del ||| one of us ||| 0.00425532 0.130625 2.6679e-06 3.54366e-06 2.718 ||| 0-1 ||| 235 374827 +del ||| one of ||| 0.000772698 0.130625 4.80222e-05 0.0012295 2.718 ||| 0-1 ||| 23295 374827 +del ||| one on the ||| 0.0108696 0.0436809 2.6679e-06 1.41975e-05 2.718 ||| 0-1 0-2 ||| 92 374827 +del ||| one on ||| 0.0107239 0.0140673 1.06716e-05 4.08777e-05 2.718 ||| 0-1 ||| 373 374827 +del ||| one recognised by the ||| 1 0.0732944 2.6679e-06 1.83163e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| one relating to the ||| 0.1 0.0732944 2.6679e-06 1.46255e-08 2.718 ||| 0-3 ||| 10 374827 +del ||| one that took place on ||| 1 0.0140673 2.6679e-06 1.52645e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| one translates the ||| 1 0.0732944 2.6679e-06 2.6057e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| one type of deforestation that ||| 0.333333 0.130625 2.6679e-06 9.67925e-16 2.718 ||| 0-2 ||| 3 374827 +del ||| one type of deforestation ||| 0.333333 0.130625 2.6679e-06 5.75406e-14 2.718 ||| 0-2 ||| 3 374827 +del ||| one type of ||| 0.0344828 0.130625 2.6679e-06 1.43851e-07 2.718 ||| 0-2 ||| 29 374827 +del ||| one who carries out the ||| 1 0.0732944 2.6679e-06 3.8636e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| one ’ s ||| 0.0120482 0.137519 2.6679e-06 2.44108e-07 2.718 ||| 0-1 0-2 ||| 83 374827 +del ||| ones the ||| 0.111111 0.0732944 2.6679e-06 7.67568e-05 2.718 ||| 0-1 ||| 9 374827 +del ||| ongoing unemployment in continental Europe is far ||| 1 0.0517582 2.6679e-06 2.27104e-24 2.718 ||| 0-1 ||| 1 374827 +del ||| ongoing unemployment in continental Europe is ||| 1 0.0517582 2.6679e-06 3.32655e-21 2.718 ||| 0-1 ||| 1 374827 +del ||| ongoing unemployment in continental Europe ||| 1 0.0517582 2.6679e-06 1.0614e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| ongoing unemployment in continental ||| 1 0.0517582 2.6679e-06 2.09763e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| ongoing unemployment in ||| 1 0.0517582 2.6679e-06 5.24409e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| ongoing unemployment ||| 1 0.0517582 2.6679e-06 2.44999e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| ongoing ||| 0.000408831 0.0006006 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 2446 374827 +del ||| only for ||| 0.00067659 0.0138653 2.6679e-06 1.19752e-05 2.718 ||| 0-1 ||| 1478 374827 +del ||| only have the ||| 0.0344828 0.0732944 2.6679e-06 4.62363e-06 2.718 ||| 0-2 ||| 29 374827 +del ||| only in the ||| 0.00156986 0.0458111 2.6679e-06 1.04251e-05 2.718 ||| 0-1 0-2 ||| 637 374827 +del ||| only of the ||| 0.00636943 0.10196 2.6679e-06 0.000114041 2.718 ||| 0-1 0-2 ||| 157 374827 +del ||| only possible for ||| 0.25 0.0138653 2.6679e-06 9.60529e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| only since the ||| 0.25 0.0732944 2.6679e-06 5.24612e-08 2.718 ||| 0-2 ||| 4 374827 +del ||| only the UK ||| 0.25 0.0969375 2.6679e-06 5.22989e-07 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| only the ||| 0.000894454 0.0732944 5.33579e-06 0.000386597 2.718 ||| 0-1 ||| 2236 374827 +del ||| only traffic ||| 1 0.10034 2.6679e-06 7.33867e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| only urge the Federal Institute ||| 0.5 0.0732944 2.6679e-06 5.65338e-19 2.718 ||| 0-2 ||| 2 374827 +del ||| only urge the Federal ||| 0.5 0.0732944 2.6679e-06 1.31474e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| only urge the ||| 0.2 0.0732944 2.6679e-06 1.26417e-08 2.718 ||| 0-2 ||| 5 374827 +del ||| only win or ||| 1 0.0009217 2.6679e-06 1.65439e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| only win ||| 0.333333 0.0009217 2.6679e-06 1.44703e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| only with ||| 0.00196078 0.0045281 2.6679e-06 2.11845e-06 2.718 ||| 0-1 ||| 510 374827 +del ||| onto the ||| 0.00276243 0.0732944 2.6679e-06 7.01578e-06 2.718 ||| 0-1 ||| 362 374827 +del ||| open to the ||| 0.00483092 0.0732944 2.6679e-06 4.97493e-06 2.718 ||| 0-2 ||| 207 374827 +del ||| opened to the ||| 0.25 0.0732944 2.6679e-06 7.99322e-07 2.718 ||| 0-2 ||| 4 374827 +del ||| opened to ||| 0.0434783 0.0006066 2.6679e-06 3.446e-08 2.718 ||| 0-1 ||| 23 374827 +del ||| operate in a ||| 0.0163934 0.0183279 2.6679e-06 5.80919e-08 2.718 ||| 0-1 ||| 61 374827 +del ||| operate in ||| 0.00240964 0.0183279 2.6679e-06 1.31057e-06 2.718 ||| 0-1 ||| 415 374827 +del ||| operate within the ||| 0.0222222 0.0402501 2.6679e-06 7.05059e-09 2.718 ||| 0-1 0-2 ||| 45 374827 +del ||| operated by ||| 0.025 0.0461582 5.33579e-06 1.85953e-07 2.718 ||| 0-1 ||| 80 374827 +del ||| operating in the ||| 0.00740741 0.0183279 5.33579e-06 7.44982e-08 2.718 ||| 0-1 ||| 270 374827 +del ||| operating in ||| 0.0031746 0.0183279 5.33579e-06 1.21349e-06 2.718 ||| 0-1 ||| 630 374827 +del ||| operation in the ||| 0.0333333 0.0732944 2.6679e-06 4.23001e-07 2.718 ||| 0-2 ||| 30 374827 +del ||| operation of the ||| 0.00135318 0.10196 2.6679e-06 5.82958e-06 2.718 ||| 0-1 0-2 ||| 739 374827 +del ||| operation of what ||| 1 0.130625 2.6679e-06 2.35506e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| operation of ||| 0.00112994 0.130625 2.6679e-06 1.67847e-05 2.718 ||| 0-1 ||| 885 374827 +del ||| operators in the ||| 0.012987 0.0458111 2.6679e-06 1.21756e-07 2.718 ||| 0-1 0-2 ||| 77 374827 +del ||| opinion of the ||| 0.000579374 0.10196 2.6679e-06 2.5142e-05 2.718 ||| 0-1 0-2 ||| 1726 374827 +del ||| opinion of ||| 0.00052356 0.130625 2.6679e-06 7.23894e-05 2.718 ||| 0-1 ||| 1910 374827 +del ||| opinions of the ||| 0.00571429 0.10196 2.6679e-06 2.25397e-06 2.718 ||| 0-1 0-2 ||| 175 374827 +del ||| opportunity of addressing ||| 0.111111 0.130625 2.6679e-06 9.55222e-10 2.718 ||| 0-1 ||| 9 374827 +del ||| opportunity of ||| 0.00277778 0.130625 5.33579e-06 5.30679e-05 2.718 ||| 0-1 ||| 720 374827 +del ||| opportunity provided by the ||| 0.05 0.0597263 2.6679e-06 2.31566e-10 2.718 ||| 0-2 0-3 ||| 20 374827 +del ||| opposed the ||| 0.00787402 0.0732944 2.6679e-06 7.2589e-06 2.718 ||| 0-1 ||| 127 374827 +del ||| opposed to the ||| 0.00181818 0.0732944 2.6679e-06 6.45013e-07 2.718 ||| 0-2 ||| 550 374827 +del ||| optimum results from work in the Councils ||| 1 0.0911315 2.6679e-06 9.82326e-24 2.718 ||| 0-2 ||| 1 374827 +del ||| optimum results from work in the ||| 1 0.0911315 2.6679e-06 3.06977e-18 2.718 ||| 0-2 ||| 1 374827 +del ||| optimum results from work in ||| 1 0.0911315 2.6679e-06 5.00029e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| optimum results from work ||| 1 0.0911315 2.6679e-06 2.33609e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| optimum results from ||| 0.5 0.0911315 2.6679e-06 3.69051e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| opting-out ' ||| 1 0.0293692 2.6679e-06 1.89924e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| options open to the ||| 0.25 0.0732944 2.6679e-06 6.06942e-11 2.718 ||| 0-3 ||| 4 374827 +del ||| or another of the ||| 1 0.10196 2.6679e-06 2.82412e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| or at least the ||| 0.0222222 0.0732944 2.6679e-06 4.08041e-10 2.718 ||| 0-3 ||| 45 374827 +del ||| or failure of the ||| 0.0909091 0.10196 2.6679e-06 5.4819e-09 2.718 ||| 0-2 0-3 ||| 11 374827 +del ||| or her of the ||| 1 0.10196 2.6679e-06 3.18723e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| or more for ||| 0.166667 0.0138653 2.6679e-06 2.80897e-08 2.718 ||| 0-2 ||| 6 374827 +del ||| or not the ||| 0.00793651 0.0732944 2.6679e-06 1.35569e-06 2.718 ||| 0-2 ||| 126 374827 +del ||| or of ||| 0.00227531 0.130625 5.33579e-06 0.000337257 2.718 ||| 0-1 ||| 879 374827 +del ||| or other , be it in the ||| 1 0.0458111 2.6679e-06 5.33161e-13 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| or the model of the ||| 1 0.10196 2.6679e-06 2.76858e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| or the ||| 0.00108983 0.0732944 1.86753e-05 0.000397086 2.718 ||| 0-1 ||| 6423 374827 +del ||| or whether it is all about ||| 1 0.0101916 2.6679e-06 1.11066e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| or ||| 8.33118e-06 9.8e-06 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 120031 374827 +del ||| order for the ||| 0.00990099 0.0732944 2.6679e-06 1.4217e-06 2.718 ||| 0-2 ||| 101 374827 +del ||| order of business , ||| 0.0344828 0.130625 2.6679e-06 2.34013e-09 2.718 ||| 0-1 ||| 29 374827 +del ||| order of business ||| 0.00266667 0.130625 2.6679e-06 1.96229e-08 2.718 ||| 0-1 ||| 375 374827 +del ||| order of ||| 0.00508906 0.130625 1.06716e-05 0.000157109 2.718 ||| 0-1 ||| 786 374827 +del ||| order to achieve a ||| 0.00884956 0.0008087 2.6679e-06 9.13239e-12 2.718 ||| 0-3 ||| 113 374827 +del ||| orders of ||| 0.025 0.130625 2.6679e-06 2.24189e-06 2.718 ||| 0-1 ||| 40 374827 +del ||| ordinary ||| 0.00245248 0.0032214 1.06716e-05 9.2e-06 2.718 ||| 0-0 ||| 1631 374827 +del ||| organ ||| 0.00352113 0.0086655 2.6679e-06 1.31e-05 2.718 ||| 0-0 ||| 284 374827 +del ||| organisation of the ||| 0.00851064 0.10196 5.33579e-06 3.46292e-06 2.718 ||| 0-1 0-2 ||| 235 374827 +del ||| organise the ||| 0.00555556 0.0732944 2.6679e-06 3.61208e-06 2.718 ||| 0-1 ||| 180 374827 +del ||| organised in the ||| 0.0416667 0.0458111 2.6679e-06 2.42576e-07 2.718 ||| 0-1 0-2 ||| 24 374827 +del ||| organization of ||| 0.00546448 0.130625 2.6679e-06 3.71682e-06 2.718 ||| 0-1 ||| 183 374827 +del ||| organs of ||| 0.027027 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-1 ||| 37 374827 +del ||| original application for criminal proceedings ||| 0.5 0.0138653 2.6679e-06 2.9902e-20 2.718 ||| 0-2 ||| 2 374827 +del ||| original application for criminal ||| 0.5 0.0138653 2.6679e-06 8.23748e-16 2.718 ||| 0-2 ||| 2 374827 +del ||| original application for ||| 0.5 0.0138653 2.6679e-06 1.97541e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| originate from ||| 0.012987 0.0911315 2.6679e-06 5.4183e-08 2.718 ||| 0-1 ||| 77 374827 +del ||| originated in the ||| 0.0526316 0.0458111 2.6679e-06 2.06049e-08 2.718 ||| 0-1 0-2 ||| 19 374827 +del ||| other ' s ||| 0.05 0.0987045 2.6679e-06 6.44316e-08 2.718 ||| 0-1 0-2 ||| 20 374827 +del ||| other 's ||| 0.015873 0.169811 2.6679e-06 5.20544e-05 2.718 ||| 0-1 ||| 63 374827 +del ||| other , be it in the ||| 1 0.0458111 2.6679e-06 4.66335e-10 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| other , the ||| 0.00990099 0.0732944 2.6679e-06 5.36584e-05 2.718 ||| 0-2 ||| 101 374827 +del ||| other . likewise ||| 1 0.0712531 2.6679e-06 5.98028e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| other countries of the ||| 0.0078125 0.10196 2.6679e-06 5.03968e-08 2.718 ||| 0-2 0-3 ||| 128 374827 +del ||| other is the ||| 0.0192308 0.0732944 2.6679e-06 1.41019e-05 2.718 ||| 0-2 ||| 52 374827 +del ||| other parts of the ||| 0.00181818 0.10196 2.6679e-06 7.73804e-09 2.718 ||| 0-2 0-3 ||| 550 374827 +del ||| other players in the ||| 0.0909091 0.0458111 2.6679e-06 2.05056e-10 2.718 ||| 0-2 0-3 ||| 11 374827 +del ||| other side of the ||| 0.00298507 0.130625 2.6679e-06 5.14267e-09 2.718 ||| 0-2 ||| 335 374827 +del ||| other side of ||| 0.00465116 0.130625 2.6679e-06 8.37681e-08 2.718 ||| 0-2 ||| 215 374827 +del ||| other than the ||| 0.0114943 0.0523148 8.00369e-06 1.05252e-06 2.718 ||| 0-1 0-2 ||| 261 374827 +del ||| other than ||| 0.00191205 0.0313352 8.00369e-06 3.03043e-06 2.718 ||| 0-1 ||| 1569 374827 +del ||| other words , on the ||| 0.1 0.0436809 2.6679e-06 1.18934e-10 2.718 ||| 0-3 0-4 ||| 10 374827 +del ||| others , of ||| 0.0714286 0.130625 5.33579e-06 3.41934e-06 2.718 ||| 0-2 ||| 28 374827 +del ||| our ' ||| 0.0227273 0.0154521 2.6679e-06 1.41588e-06 2.718 ||| 0-0 0-1 ||| 44 374827 +del ||| our European ||| 0.00645161 0.00417555 2.6679e-06 9.15713e-07 2.718 ||| 0-0 0-1 ||| 155 374827 +del ||| our approval of ||| 0.166667 0.130625 2.6679e-06 1.21664e-08 2.718 ||| 0-2 ||| 6 374827 +del ||| our budgetary ||| 0.111111 0.0016578 2.6679e-06 5.09922e-09 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| our defence of the ||| 0.2 0.130625 2.6679e-06 6.29509e-10 2.718 ||| 0-2 ||| 5 374827 +del ||| our defence of ||| 0.05 0.130625 2.6679e-06 1.0254e-08 2.718 ||| 0-2 ||| 20 374827 +del ||| our first point of ||| 1 0.130625 2.6679e-06 1.91648e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| our neighbours to the ||| 0.0666667 0.0732944 2.6679e-06 2.12854e-10 2.718 ||| 0-3 ||| 15 374827 +del ||| our policy of ||| 0.0166667 0.130625 2.6679e-06 1.60198e-07 2.718 ||| 0-2 ||| 60 374827 +del ||| our ||| 0.000475715 0.001535 0.000192089 0.0002982 2.718 ||| 0-0 ||| 151351 374827 +del ||| ourselves and the ||| 0.0243902 0.0732944 2.6679e-06 1.38388e-06 2.718 ||| 0-2 ||| 41 374827 +del ||| ourselves from the ||| 0.125 0.0732944 2.6679e-06 1.77919e-07 2.718 ||| 0-2 ||| 8 374827 +del ||| ourselves in ||| 0.00578035 0.0183279 2.6679e-06 8.57801e-06 2.718 ||| 0-1 ||| 173 374827 +del ||| ourselves of the ||| 0.0714286 0.10196 2.6679e-06 3.25903e-05 2.718 ||| 0-1 0-2 ||| 14 374827 +del ||| ousted from the ||| 0.125 0.082213 2.6679e-06 8.28019e-09 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| out a ||| 0.00135685 0.0008087 2.6679e-06 3.23477e-06 2.718 ||| 0-1 ||| 737 374827 +del ||| out against the ||| 0.0333333 0.037912 2.6679e-06 2.44653e-07 2.718 ||| 0-1 0-2 ||| 30 374827 +del ||| out by the European University ||| 1 0.0597263 2.6679e-06 1.00706e-13 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| out by the European ||| 0.111111 0.0597263 2.6679e-06 7.19327e-08 2.718 ||| 0-1 0-2 ||| 9 374827 +del ||| out by the ||| 0.0374707 0.0597263 4.26864e-05 2.15116e-05 2.718 ||| 0-1 0-2 ||| 427 374827 +del ||| out by throwing off the ||| 0.333333 0.0732944 2.6679e-06 3.07011e-14 2.718 ||| 0-4 ||| 3 374827 +del ||| out by your ||| 0.5 0.0461582 2.6679e-06 1.58496e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| out by ||| 0.0127758 0.0461582 2.93469e-05 6.19368e-05 2.718 ||| 0-1 ||| 861 374827 +del ||| out from the ||| 0.05 0.082213 5.33579e-06 2.88331e-05 2.718 ||| 0-1 0-2 ||| 40 374827 +del ||| out in April ||| 0.5 0.0183279 2.6679e-06 2.5823e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| out in favour ||| 0.0175439 0.0183279 2.6679e-06 3.3415e-08 2.718 ||| 0-1 ||| 57 374827 +del ||| out in the ||| 0.0502183 0.0458111 6.13616e-05 3.5875e-05 2.718 ||| 0-1 0-2 ||| 458 374827 +del ||| out in ||| 0.00685976 0.0183279 2.40111e-05 0.000103292 2.718 ||| 0-1 ||| 1312 374827 +del ||| out into the ||| 0.0277778 0.0732944 2.6679e-06 1.36588e-06 2.718 ||| 0-2 ||| 36 374827 +del ||| out of ' ||| 1 0.130625 2.6679e-06 3.88114e-06 2.718 ||| 0-1 ||| 1 374827 +del ||| out of a desire ||| 0.1 0.130625 2.6679e-06 2.34394e-09 2.718 ||| 0-1 ||| 10 374827 +del ||| out of a ||| 0.02 0.130625 1.06716e-05 5.00843e-05 2.718 ||| 0-1 ||| 200 374827 +del ||| out of an ||| 0.1 0.130625 5.33579e-06 5.02212e-06 2.718 ||| 0-1 ||| 20 374827 +del ||| out of business ||| 0.0120482 0.130625 2.6679e-06 1.41126e-07 2.718 ||| 0-1 ||| 83 374827 +del ||| out of hand ||| 0.0454545 0.130625 8.00369e-06 4.48123e-07 2.718 ||| 0-1 ||| 66 374827 +del ||| out of order ||| 0.0204082 0.130625 2.6679e-06 6.01791e-07 2.718 ||| 0-1 ||| 49 374827 +del ||| out of step ||| 0.027027 0.130625 2.6679e-06 1.66662e-07 2.718 ||| 0-1 ||| 37 374827 +del ||| out of the European ||| 0.25 0.10196 2.6679e-06 1.31227e-06 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| out of the atrocities ||| 1 0.10196 2.6679e-06 7.06386e-10 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| out of the question that ||| 0.142857 0.10196 2.6679e-06 5.46135e-09 2.718 ||| 0-1 0-2 ||| 7 374827 +del ||| out of the question ||| 0.0113636 0.10196 2.6679e-06 3.24663e-07 2.718 ||| 0-1 0-2 ||| 88 374827 +del ||| out of the way ||| 0.0526316 0.130625 2.6679e-06 1.49528e-07 2.718 ||| 0-1 ||| 19 374827 +del ||| out of the ||| 0.0885978 0.10196 0.000306808 0.000392436 2.718 ||| 0-1 0-2 ||| 1298 374827 +del ||| out of their minds ||| 1 0.130625 2.6679e-06 6.27337e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| out of their ||| 0.0263158 0.130625 5.33579e-06 1.30968e-06 2.718 ||| 0-1 ||| 76 374827 +del ||| out of this rut ||| 0.5 0.130625 2.6679e-06 5.11057e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| out of this ||| 0.00505051 0.130625 2.6679e-06 7.30082e-06 2.718 ||| 0-1 ||| 198 374827 +del ||| out of turn by apparently ||| 1 0.130625 2.6679e-06 2.58018e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| out of turn by ||| 1 0.130625 2.6679e-06 1.32999e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| out of turn ||| 0.142857 0.130625 2.6679e-06 2.53326e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| out of ||| 0.0131494 0.130625 0.000162742 0.00112991 2.718 ||| 0-1 ||| 4639 374827 +del ||| out on ||| 0.00574713 0.0140673 5.33579e-06 3.75666e-05 2.718 ||| 0-1 ||| 348 374827 +del ||| out the ||| 0.0149724 0.0732944 5.06901e-05 0.00133036 2.718 ||| 0-1 ||| 1269 374827 +del ||| out there in the ||| 0.111111 0.0458111 5.33579e-06 1.09968e-07 2.718 ||| 0-2 0-3 ||| 18 374827 +del ||| out with ||| 0.00888889 0.0045281 5.33579e-06 7.29002e-06 2.718 ||| 0-1 ||| 225 374827 +del ||| out ||| 0.000140243 0.0001342 5.33579e-06 1.18e-05 2.718 ||| 0-0 ||| 14261 374827 +del ||| out ’ in the ||| 1 0.106997 2.6679e-06 2.81431e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| out ’ in ||| 1 0.106997 2.6679e-06 4.58418e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| out ’ ||| 0.5 0.106997 2.6679e-06 2.14169e-05 2.718 ||| 0-1 ||| 2 374827 +del ||| outbreak of ||| 0.00389105 0.130625 2.6679e-06 1.06195e-06 2.718 ||| 0-1 ||| 257 374827 +del ||| outcome of the ||| 0.0016 0.130625 5.33579e-06 9.25405e-07 2.718 ||| 0-1 ||| 1250 374827 +del ||| outcome of ||| 0.00169109 0.130625 8.00369e-06 1.50738e-05 2.718 ||| 0-1 ||| 1774 374827 +del ||| outcomes of the ||| 0.0263158 0.10196 2.6679e-06 2.25397e-07 2.718 ||| 0-1 0-2 ||| 38 374827 +del ||| outlets ||| 0.00840336 0.016 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 119 374827 +del ||| outline of ||| 0.0169492 0.130625 2.6679e-06 2.65487e-06 2.718 ||| 0-1 ||| 59 374827 +del ||| outlined by the ||| 0.0232558 0.0597263 2.6679e-06 9.71573e-08 2.718 ||| 0-1 0-2 ||| 43 374827 +del ||| outlined by ||| 0.00980392 0.0461582 2.6679e-06 2.79738e-07 2.718 ||| 0-1 ||| 102 374827 +del ||| outlined in the ||| 0.00636943 0.0458111 2.6679e-06 1.62029e-07 2.718 ||| 0-1 0-2 ||| 157 374827 +del ||| outlined in ||| 0.00324675 0.0183279 2.6679e-06 4.66519e-07 2.718 ||| 0-1 ||| 308 374827 +del ||| output from elsewhere ||| 1 0.0911315 2.6679e-06 3.2163e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| output from ||| 0.333333 0.0911315 2.6679e-06 8.66928e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| outs of ||| 0.2 0.130625 2.6679e-06 4.1298e-07 2.718 ||| 0-1 ||| 5 374827 +del ||| outside the ||| 0.00232249 0.0732944 1.86753e-05 1.38579e-05 2.718 ||| 0-1 ||| 3014 374827 +del ||| outside ||| 0.000587717 0.0148139 1.60074e-05 0.0001537 2.718 ||| 0-0 ||| 10209 374827 +del ||| over and ||| 0.0027248 0.006517 2.6679e-06 3.99827e-06 2.718 ||| 0-0 ||| 367 374827 +del ||| over from the ||| 0.0833333 0.082213 8.00369e-06 3.62446e-06 2.718 ||| 0-1 0-2 ||| 36 374827 +del ||| over from ||| 0.0102041 0.0488242 2.6679e-06 6.91809e-06 2.718 ||| 0-0 0-1 ||| 98 374827 +del ||| over in ||| 0.0151515 0.0183279 2.6679e-06 1.29843e-05 2.718 ||| 0-1 ||| 66 374827 +del ||| over it in ||| 1 0.0183279 2.6679e-06 2.30903e-07 2.718 ||| 0-2 ||| 1 374827 +del ||| over of the ||| 0.333333 0.10196 2.6679e-06 4.93312e-05 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| over of ||| 0.166667 0.0685709 2.6679e-06 9.41594e-05 2.718 ||| 0-0 0-1 ||| 6 374827 +del ||| over the limit ||| 0.1 0.0732944 2.6679e-06 8.1275e-09 2.718 ||| 0-1 ||| 10 374827 +del ||| over the ||| 0.00680794 0.0399057 0.000189421 0.000110863 2.718 ||| 0-0 0-1 ||| 10429 374827 +del ||| over to the ||| 0.0106383 0.0732944 2.6679e-06 1.486e-05 2.718 ||| 0-2 ||| 94 374827 +del ||| over to ||| 0.00406504 0.006517 2.6679e-06 2.83635e-05 2.718 ||| 0-0 ||| 246 374827 +del ||| over water ||| 0.111111 0.0460972 2.6679e-06 3.34554e-07 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| over ||| 0.00136457 0.006517 0.000109384 0.0003192 2.718 ||| 0-0 ||| 30046 374827 +del ||| overall ||| 0.000159109 0.0063805 2.6679e-06 5.78e-05 2.718 ||| 0-0 ||| 6285 374827 +del ||| overseeing the election ||| 1 0.0732944 2.6679e-06 1.15726e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| overseeing the ||| 0.0212766 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-1 ||| 47 374827 +del ||| overseen by ||| 0.03125 0.0461582 2.6679e-06 1.13189e-08 2.718 ||| 0-1 ||| 32 374827 +del ||| overtaxed ||| 0.5 0.2 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| own European ||| 0.0238095 0.0068161 2.6679e-06 5.20593e-06 2.718 ||| 0-1 ||| 42 374827 +del ||| own culinary metaphor ||| 0.037037 0.015625 2.6679e-06 1.54272e-15 2.718 ||| 0-2 ||| 27 374827 +del ||| owned by ||| 0.00847458 0.0461582 2.6679e-06 1.09955e-07 2.718 ||| 0-1 ||| 118 374827 +del ||| pacifist ||| 0.0227273 0.0192308 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 44 374827 +del ||| package ||| 0.000461095 0.0018739 1.06716e-05 1.84e-05 2.718 ||| 0-0 ||| 8675 374827 +del ||| packages regarding the ||| 0.5 0.0732944 2.6679e-06 1.07494e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| page of today 's ||| 1 0.130625 2.6679e-06 6.33817e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| page of today ||| 1 0.130625 2.6679e-06 3.32817e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| page of ||| 0.0384615 0.130625 2.6679e-06 7.37464e-07 2.718 ||| 0-1 ||| 26 374827 +del ||| paid little heed to the ||| 1 0.0732944 2.6679e-06 2.89189e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| paid to the memory of ||| 0.5 0.130625 2.6679e-06 2.49087e-12 2.718 ||| 0-4 ||| 2 374827 +del ||| paid to the ||| 0.00806452 0.0732944 2.6679e-06 4.15401e-06 2.718 ||| 0-2 ||| 124 374827 +del ||| pair of spectacles ||| 0.333333 0.130625 2.6679e-06 5.16225e-13 2.718 ||| 0-1 ||| 3 374827 +del ||| pair of ||| 0.04 0.130625 2.6679e-06 7.37464e-07 2.718 ||| 0-1 ||| 25 374827 +del ||| panel of a ||| 1 0.130625 2.6679e-06 5.23019e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| panel of ||| 0.0185185 0.130625 2.6679e-06 1.17994e-06 2.718 ||| 0-1 ||| 54 374827 +del ||| panel ||| 0.00189753 0.012963 2.6679e-06 9.2e-06 2.718 ||| 0-0 ||| 527 374827 +del ||| paper ||| 0.000411015 0.0028582 2.6679e-06 1.05e-05 2.718 ||| 0-0 ||| 2433 374827 +del ||| par with the ||| 0.025 0.0732944 2.6679e-06 1.51022e-08 2.718 ||| 0-2 ||| 40 374827 +del ||| paragraph 12 ||| 0.00769231 0.0375967 2.6679e-06 5.719e-09 2.718 ||| 0-0 ||| 130 374827 +del ||| paragraph ||| 0.000185357 0.0375967 2.6679e-06 0.0004085 2.718 ||| 0-0 ||| 5395 374827 +del ||| parameter of ||| 0.125 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-1 ||| 8 374827 +del ||| parameters for ||| 0.0217391 0.0138653 2.6679e-06 6.99296e-08 2.718 ||| 0-1 ||| 46 374827 +del ||| parcel of that ||| 0.333333 0.130625 2.6679e-06 3.0269e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| parcel of the ||| 0.0625 0.10196 2.6679e-06 6.24964e-07 2.718 ||| 0-1 0-2 ||| 16 374827 +del ||| parcel of ||| 0.0517241 0.130625 8.00369e-06 1.79941e-06 2.718 ||| 0-1 ||| 58 374827 +del ||| parent 's ||| 0.333333 0.169811 2.6679e-06 8.8398e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| parked her car ||| 0.5 0.120879 2.6679e-06 1.04568e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| parliament of ||| 0.016129 0.130625 2.6679e-06 7.10915e-06 2.718 ||| 0-1 ||| 62 374827 +del ||| parliamentary ||| 0.0003335 0.0062562 5.33579e-06 4.99e-05 2.718 ||| 0-0 ||| 5997 374827 +del ||| part , evidence of a ||| 1 0.130625 2.6679e-06 1.02431e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| part , evidence of ||| 1 0.130625 2.6679e-06 2.31088e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| part in the ||| 0.00220751 0.0458111 2.6679e-06 1.1166e-05 2.718 ||| 0-1 0-2 ||| 453 374827 +del ||| part in ||| 0.00124378 0.0183279 5.33579e-06 3.21493e-05 2.718 ||| 0-1 ||| 1608 374827 +del ||| part of a ||| 0.000831255 0.130625 2.6679e-06 1.55886e-05 2.718 ||| 0-1 ||| 1203 374827 +del ||| part of our 10th EP / Syria ||| 1 0.130625 2.6679e-06 6.47136e-28 2.718 ||| 0-1 ||| 1 374827 +del ||| part of our 10th EP / ||| 1 0.130625 2.6679e-06 2.2315e-22 2.718 ||| 0-1 ||| 1 374827 +del ||| part of our 10th EP ||| 1 0.130625 2.6679e-06 9.7022e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| part of our 10th ||| 1 0.130625 2.6679e-06 1.94044e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| part of our ||| 0.00149477 0.130625 2.6679e-06 4.8511e-07 2.718 ||| 0-1 ||| 669 374827 +del ||| part of the European ||| 0.0425532 0.130625 5.33579e-06 7.2196e-08 2.718 ||| 0-1 ||| 47 374827 +del ||| part of the ||| 0.0108524 0.10196 0.000256118 0.000122145 2.718 ||| 0-1 0-2 ||| 8846 374827 +del ||| part of those ||| 0.0212766 0.130625 2.6679e-06 2.54653e-07 2.718 ||| 0-1 ||| 47 374827 +del ||| part of whatever ||| 1 0.130625 2.6679e-06 1.93777e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| part of ||| 0.00358554 0.130625 0.000130727 0.000351682 2.718 ||| 0-1 ||| 13666 374827 +del ||| participating in the ||| 0.00283286 0.0310568 2.6679e-06 2.43512e-08 2.718 ||| 0-0 0-1 0-2 ||| 353 374827 +del ||| participating in ||| 0.00132979 0.00993795 2.6679e-06 7.01126e-08 2.718 ||| 0-0 0-1 ||| 752 374827 +del ||| particular , by ||| 0.0125 0.0461582 2.6679e-06 1.18669e-06 2.718 ||| 0-2 ||| 80 374827 +del ||| particular , of the ||| 0.0138889 0.10196 2.6679e-06 7.51897e-06 2.718 ||| 0-2 0-3 ||| 72 374827 +del ||| particular raft of ||| 0.5 0.130625 2.6679e-06 1.99687e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| particularly interested in ||| 0.0169492 0.0183279 2.6679e-06 1.02046e-10 2.718 ||| 0-2 ||| 59 374827 +del ||| particularly of the ||| 0.0151515 0.10196 2.6679e-06 1.82879e-05 2.718 ||| 0-1 0-2 ||| 66 374827 +del ||| particularly on ||| 0.00177936 0.0140673 2.6679e-06 1.75064e-06 2.718 ||| 0-1 ||| 562 374827 +del ||| particularly through the ||| 0.0147059 0.0732944 2.6679e-06 2.85367e-08 2.718 ||| 0-2 ||| 68 374827 +del ||| parties in ||| 0.00333333 0.0183279 2.6679e-06 1.97933e-06 2.718 ||| 0-1 ||| 300 374827 +del ||| parties of the ||| 0.0322581 0.10196 2.6679e-06 7.52006e-06 2.718 ||| 0-1 0-2 ||| 31 374827 +del ||| parties to the ||| 0.00480769 0.0732944 2.6679e-06 2.26526e-06 2.718 ||| 0-2 ||| 208 374827 +del ||| partly due to the ||| 0.0178571 0.0732944 2.6679e-06 2.88321e-10 2.718 ||| 0-3 ||| 56 374827 +del ||| partner , Mr Napolitano , you sent ||| 1 0.0202703 2.6679e-06 3.58642e-22 2.718 ||| 0-3 ||| 1 374827 +del ||| partner , Mr Napolitano , you ||| 1 0.0202703 2.6679e-06 5.96742e-18 2.718 ||| 0-3 ||| 1 374827 +del ||| partner , Mr Napolitano , ||| 1 0.0202703 2.6679e-06 1.84824e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| partner , Mr Napolitano ||| 1 0.0202703 2.6679e-06 1.54983e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| parts of the ||| 0.00404157 0.10196 1.86753e-05 5.97302e-06 2.718 ||| 0-1 0-2 ||| 1732 374827 +del ||| parts of ||| 0.00122474 0.130625 5.33579e-06 1.71977e-05 2.718 ||| 0-1 ||| 1633 374827 +del ||| party at the table - ||| 1 0.0732944 2.6679e-06 2.54037e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| party at the table ||| 1 0.0732944 2.6679e-06 6.73463e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| party at the ||| 0.25 0.0732944 2.6679e-06 9.94776e-08 2.718 ||| 0-2 ||| 4 374827 +del ||| passed in the ||| 0.0454545 0.0458111 2.6679e-06 6.70595e-07 2.718 ||| 0-1 0-2 ||| 22 374827 +del ||| passed on the ||| 0.0588235 0.0436809 2.6679e-06 2.43891e-07 2.718 ||| 0-1 0-2 ||| 17 374827 +del ||| passed on ||| 0.00704225 0.0140673 5.33579e-06 7.02217e-07 2.718 ||| 0-1 ||| 284 374827 +del ||| passenger ||| 0.000919963 0.0131844 2.6679e-06 7.75e-05 2.718 ||| 0-0 ||| 1087 374827 +del ||| passionate belief in ||| 0.333333 0.0183279 2.6679e-06 2.29538e-12 2.718 ||| 0-2 ||| 3 374827 +del ||| patterns ||| 0.00277008 0.0340031 2.6679e-06 2.89e-05 2.718 ||| 0-0 ||| 361 374827 +del ||| pay off ||| 0.0136986 0.0046938 2.6679e-06 8.27696e-09 2.718 ||| 0-1 ||| 73 374827 +del ||| payment appropriations which the Council ||| 0.25 0.0707819 2.6679e-06 1.84137e-15 2.718 ||| 0-4 ||| 4 374827 +del ||| payment of ||| 0.00277778 0.130625 2.6679e-06 7.43363e-06 2.718 ||| 0-1 ||| 360 374827 +del ||| peddling ||| 0.0526316 0.05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 19 374827 +del ||| penalisation of the ||| 0.333333 0.10196 2.6679e-06 7.17172e-08 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| penalty reduction in exchange for ||| 0.125 0.0183279 2.6679e-06 3.29532e-18 2.718 ||| 0-2 ||| 8 374827 +del ||| penalty reduction in exchange ||| 0.125 0.0183279 2.6679e-06 4.2876e-16 2.718 ||| 0-2 ||| 8 374827 +del ||| penalty reduction in ||| 0.125 0.0183279 2.6679e-06 1.54787e-11 2.718 ||| 0-2 ||| 8 374827 +del ||| penned by the ||| 1 0.0732944 2.6679e-06 7.29377e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| people 's ||| 0.00344828 0.169811 5.33579e-06 3.53672e-05 2.718 ||| 0-1 ||| 580 374827 +del ||| people continuously getting on ||| 0.25 0.0140673 2.6679e-06 4.01241e-15 2.718 ||| 0-3 ||| 4 374827 +del ||| people from each ||| 0.5 0.0911315 2.6679e-06 5.35484e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| people from the ||| 0.00641026 0.0911315 2.6679e-06 1.17116e-06 2.718 ||| 0-1 ||| 156 374827 +del ||| people from ||| 0.00429185 0.0911315 8.00369e-06 1.90768e-05 2.718 ||| 0-1 ||| 699 374827 +del ||| people in the ||| 0.00313808 0.0458111 8.00369e-06 8.24383e-06 2.718 ||| 0-1 0-2 ||| 956 374827 +del ||| people in to ||| 1 0.0183279 2.6679e-06 2.10912e-06 2.718 ||| 0-1 ||| 1 374827 +del ||| people in ||| 0.000310174 0.0183279 2.6679e-06 2.37358e-05 2.718 ||| 0-1 ||| 3224 374827 +del ||| people move from ||| 0.166667 0.0911315 2.6679e-06 2.91684e-09 2.718 ||| 0-2 ||| 6 374827 +del ||| people of Cuba ||| 0.0384615 0.130625 2.6679e-06 1.03858e-09 2.718 ||| 0-1 ||| 26 374827 +del ||| people of Europe will not come along ||| 1 0.130625 2.6679e-06 5.75098e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| people of Europe will not come ||| 1 0.130625 2.6679e-06 3.29569e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| people of Europe will not ||| 0.333333 0.130625 2.6679e-06 3.88048e-12 2.718 ||| 0-1 ||| 3 374827 +del ||| people of Europe will ||| 0.1 0.130625 2.6679e-06 1.1366e-09 2.718 ||| 0-1 ||| 10 374827 +del ||| people of Europe ||| 0.000887311 0.130625 2.6679e-06 1.31381e-07 2.718 ||| 0-1 ||| 1127 374827 +del ||| people of ||| 0.000482509 0.130625 5.33579e-06 0.000259646 2.718 ||| 0-1 ||| 4145 374827 +del ||| people out of ||| 0.0117647 0.130625 2.6679e-06 9.94549e-07 2.718 ||| 0-2 ||| 85 374827 +del ||| peoples ' ||| 0.0169492 0.0293692 2.6679e-06 6.64734e-08 2.718 ||| 0-1 ||| 59 374827 +del ||| per capita income of the ||| 0.2 0.10196 2.6679e-06 3.59463e-16 2.718 ||| 0-3 0-4 ||| 5 374827 +del ||| per cent of ||| 0.00406504 0.130625 2.6679e-06 1.12384e-10 2.718 ||| 0-2 ||| 246 374827 +del ||| per hectare , for the ||| 1 0.0435798 2.6679e-06 2.17142e-14 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| per ||| 0.0135397 0.0098877 0.000112052 7.75e-05 2.718 ||| 0-0 ||| 3102 374827 +del ||| perceived trustworthiness of a ||| 1 0.130625 2.6679e-06 6.95615e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| perceived trustworthiness of ||| 1 0.130625 2.6679e-06 1.56932e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| percentage of ||| 0.00573614 0.130625 8.00369e-06 4.36579e-06 2.718 ||| 0-1 ||| 523 374827 +del ||| percentages of ||| 0.0588235 0.130625 2.6679e-06 4.1298e-07 2.718 ||| 0-1 ||| 17 374827 +del ||| perfect by any ||| 0.5 0.0461582 2.6679e-06 2.29849e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| perfect by ||| 0.25 0.0461582 2.6679e-06 1.51996e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| performance of ||| 0.0031746 0.130625 2.6679e-06 6.69617e-06 2.718 ||| 0-1 ||| 315 374827 +del ||| performed by ||| 0.0108696 0.0461582 2.6679e-06 2.03739e-07 2.718 ||| 0-1 ||| 92 374827 +del ||| performing ||| 0.00755668 0.0651769 8.00369e-06 4.6e-05 2.718 ||| 0-0 ||| 397 374827 +del ||| perhaps future users of ||| 0.166667 0.130625 2.6679e-06 1.26053e-13 2.718 ||| 0-3 ||| 6 374827 +del ||| period between ||| 0.0178571 0.0028314 2.6679e-06 3.55282e-08 2.718 ||| 0-1 ||| 56 374827 +del ||| period from ||| 0.00537634 0.0911315 2.6679e-06 3.78197e-06 2.718 ||| 0-1 ||| 186 374827 +del ||| period in ||| 0.00462963 0.0183279 2.6679e-06 4.70564e-06 2.718 ||| 0-1 ||| 216 374827 +del ||| period of time ||| 0.0021097 0.130625 2.6679e-06 8.45065e-08 2.718 ||| 0-1 ||| 474 374827 +del ||| period of ||| 0.00132042 0.130625 8.00369e-06 5.1475e-05 2.718 ||| 0-1 ||| 2272 374827 +del ||| period required for the ||| 0.5 0.0435798 2.6679e-06 1.03477e-10 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| period the ||| 0.0434783 0.0732944 2.6679e-06 6.06066e-05 2.718 ||| 0-1 ||| 23 374827 +del ||| perpetrated by the ||| 0.0149254 0.0597263 2.6679e-06 8.87332e-08 2.718 ||| 0-1 0-2 ||| 67 374827 +del ||| perpetrated on ||| 0.1 0.0140673 2.6679e-06 1.54959e-07 2.718 ||| 0-1 ||| 10 374827 +del ||| persisted in ||| 0.0588235 0.0172284 2.6679e-06 3.50563e-08 2.718 ||| 0-0 0-1 ||| 17 374827 +del ||| person of ||| 0.0194175 0.130625 5.33579e-06 3.79941e-05 2.718 ||| 0-1 ||| 103 374827 +del ||| person with the ||| 0.125 0.0732944 2.6679e-06 2.86053e-07 2.718 ||| 0-2 ||| 8 374827 +del ||| personnel ||| 0.00149031 0.0420445 5.33579e-06 6.7e-05 2.718 ||| 0-0 ||| 1342 374827 +del ||| perspective of the ||| 0.0155039 0.10196 5.33579e-06 3.31948e-06 2.718 ||| 0-1 0-2 ||| 129 374827 +del ||| perspective of ||| 0.00263158 0.130625 2.6679e-06 9.55753e-06 2.718 ||| 0-1 ||| 380 374827 +del ||| persuading them of the ||| 1 0.10196 2.6679e-06 6.04605e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| pertain in ||| 0.25 0.0183279 2.6679e-06 5.93261e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| pertaining to the ||| 0.0149254 0.0732944 2.6679e-06 1.88257e-07 2.718 ||| 0-2 ||| 67 374827 +del ||| pertaining to ||| 0.00483092 0.0084746 2.6679e-06 2.31031e-07 2.718 ||| 0-0 ||| 207 374827 +del ||| pertaining ||| 0.00452489 0.0084746 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 221 374827 +del ||| pesticide ||| 0.00666667 0.0050505 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 150 374827 +del ||| phase of the ||| 0.00512821 0.10196 2.6679e-06 2.3974e-06 2.718 ||| 0-1 0-2 ||| 195 374827 +del ||| phase of ||| 0.00197628 0.130625 2.6679e-06 6.90266e-06 2.718 ||| 0-1 ||| 506 374827 +del ||| phasing out ’ in the ||| 1 0.106997 2.6679e-06 9.0058e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| phasing out ’ in ||| 1 0.106997 2.6679e-06 1.46694e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| phasing out ’ ||| 1 0.106997 2.6679e-06 6.85341e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| phenomenon of the ||| 0.0232558 0.10196 2.6679e-06 1.61876e-06 2.718 ||| 0-1 0-2 ||| 43 374827 +del ||| philosopher . he was attacked by the ||| 0.5 0.0597263 2.6679e-06 1.33951e-22 2.718 ||| 0-5 0-6 ||| 2 374827 +del ||| phone call from ||| 0.25 0.0911315 2.6679e-06 1.73212e-11 2.718 ||| 0-2 ||| 4 374827 +del ||| pick the ||| 0.125 0.0732944 2.6679e-06 6.87685e-06 2.718 ||| 0-1 ||| 8 374827 +del ||| picture from the ||| 0.5 0.082213 2.6679e-06 2.57439e-07 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| piece of work ||| 0.0052356 0.130625 2.6679e-06 1.78697e-08 2.718 ||| 0-1 ||| 191 374827 +del ||| piece of ||| 0.00603318 0.130625 1.06716e-05 2.82301e-05 2.718 ||| 0-1 ||| 663 374827 +del ||| pieces by ||| 0.25 0.0461582 2.6679e-06 3.67054e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| pieces of the ||| 0.047619 0.10196 2.6679e-06 2.32569e-06 2.718 ||| 0-1 0-2 ||| 21 374827 +del ||| pig carcass ||| 0.25 0.0565111 2.6679e-06 7.55e-11 2.718 ||| 0-0 ||| 4 374827 +del ||| pig ||| 0.00497512 0.0565111 2.6679e-06 3.02e-05 2.718 ||| 0-0 ||| 201 374827 +del ||| piled on by ||| 1 0.0301128 2.6679e-06 2.22019e-10 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| pillar ||| 0.000406669 0.0200642 2.6679e-06 6.57e-05 2.718 ||| 0-0 ||| 2459 374827 +del ||| pillars of the second and ||| 1 0.10196 2.6679e-06 2.67341e-13 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| pillars of the second ||| 1 0.10196 2.6679e-06 2.1343e-11 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| pillars of the ||| 0.0070922 0.10196 2.6679e-06 3.2785e-07 2.718 ||| 0-1 0-2 ||| 141 374827 +del ||| pioneering and the ||| 1 0.0732944 2.6679e-06 9.57097e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| place , the ||| 0.0116279 0.0732944 2.6679e-06 6.23357e-05 2.718 ||| 0-2 ||| 86 374827 +del ||| place and the ||| 0.0232558 0.0732944 2.6679e-06 6.54742e-06 2.718 ||| 0-2 ||| 43 374827 +del ||| place before the ||| 0.030303 0.0732944 2.6679e-06 1.3073e-07 2.718 ||| 0-2 ||| 33 374827 +del ||| place by ||| 0.00847458 0.0461582 2.6679e-06 2.43355e-05 2.718 ||| 0-1 ||| 118 374827 +del ||| place from ||| 0.03125 0.0911315 2.6679e-06 3.26182e-05 2.718 ||| 0-1 ||| 32 374827 +del ||| place in the field ||| 0.2 0.0732944 2.6679e-06 1.63462e-09 2.718 ||| 0-2 ||| 5 374827 +del ||| place in the ||| 0.00833333 0.0458111 1.60074e-05 1.40956e-05 2.718 ||| 0-1 0-2 ||| 720 374827 +del ||| place in ||| 0.00112402 0.0183279 8.00369e-06 4.05844e-05 2.718 ||| 0-1 ||| 2669 374827 +del ||| place of the ||| 0.00900901 0.10196 2.6679e-06 0.000154192 2.718 ||| 0-1 0-2 ||| 111 374827 +del ||| place of ||| 0.00258398 0.130625 5.33579e-06 0.000443953 2.718 ||| 0-1 ||| 774 374827 +del ||| place on the ||| 0.0136986 0.0436809 5.33579e-06 5.12648e-06 2.718 ||| 0-1 0-2 ||| 146 374827 +del ||| place on ||| 0.0055205 0.0140673 1.86753e-05 1.47603e-05 2.718 ||| 0-1 ||| 1268 374827 +del ||| place removed from ||| 0.5 0.0911315 2.6679e-06 1.4776e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| place the ||| 0.00331126 0.0732944 2.6679e-06 0.00052271 2.718 ||| 0-1 ||| 302 374827 +del ||| place with ||| 0.00617284 0.0045281 2.6679e-06 2.86432e-06 2.718 ||| 0-1 ||| 162 374827 +del ||| placed at the head of the ||| 0.142857 0.10196 2.6679e-06 2.38409e-13 2.718 ||| 0-4 0-5 ||| 7 374827 +del ||| placed on the ||| 0.00374532 0.0436809 2.6679e-06 4.26469e-07 2.718 ||| 0-1 0-2 ||| 267 374827 +del ||| placements of ||| 0.5 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-1 ||| 2 374827 +del ||| plan for the ||| 0.008 0.0435798 2.6679e-06 2.73143e-07 2.718 ||| 0-1 0-2 ||| 125 374827 +del ||| planned for ||| 0.00304878 0.0138653 2.6679e-06 3.67937e-07 2.718 ||| 0-1 ||| 328 374827 +del ||| planning framework ||| 0.111111 0.0422501 2.6679e-06 2.73811e-08 2.718 ||| 0-0 ||| 9 374827 +del ||| planning in ||| 0.0416667 0.0183279 2.6679e-06 7.57756e-07 2.718 ||| 0-1 ||| 24 374827 +del ||| planning ||| 0.00170406 0.0422501 1.60074e-05 0.0002299 2.718 ||| 0-0 ||| 3521 374827 +del ||| plants in the ||| 0.1 0.0458111 2.6679e-06 1.64839e-07 2.718 ||| 0-1 0-2 ||| 10 374827 +del ||| play in the ||| 0.00429185 0.0183279 2.6679e-06 4.27123e-07 2.718 ||| 0-1 ||| 233 374827 +del ||| play in ||| 0.00121212 0.0183279 2.6679e-06 6.95733e-06 2.718 ||| 0-1 ||| 825 374827 +del ||| play the ||| 0.00471698 0.0732944 2.6679e-06 8.96075e-05 2.718 ||| 0-1 ||| 212 374827 +del ||| played by the ||| 0.00314465 0.0597263 2.6679e-06 2.7687e-07 2.718 ||| 0-1 0-2 ||| 318 374827 +del ||| played by ||| 0.00128866 0.0461582 2.6679e-06 7.97171e-07 2.718 ||| 0-1 ||| 776 374827 +del ||| played ||| 0.000521921 0.0003475 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1916 374827 +del ||| players , the ||| 0.25 0.0732944 2.6679e-06 6.99982e-07 2.718 ||| 0-2 ||| 4 374827 +del ||| players in the ||| 0.00869565 0.0458111 2.6679e-06 1.58283e-07 2.718 ||| 0-1 0-2 ||| 115 374827 +del ||| plea by ||| 0.111111 0.0461582 2.6679e-06 1.34209e-07 2.718 ||| 0-1 ||| 9 374827 +del ||| pleased that the ||| 0.00248139 0.0732944 2.6679e-06 2.37786e-07 2.718 ||| 0-2 ||| 403 374827 +del ||| pleased to see ||| 0.00420168 0.0006066 2.6679e-06 3.8155e-11 2.718 ||| 0-1 ||| 238 374827 +del ||| pleased to ||| 0.00105263 0.0006066 2.6679e-06 5.41514e-08 2.718 ||| 0-1 ||| 950 374827 +del ||| plundering , ||| 0.25 0.0178571 2.6679e-06 3.10062e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| plundering ||| 0.00862069 0.0178571 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 116 374827 +del ||| pluralism ||| 0.00112613 0.0271186 2.6679e-06 4.2e-05 2.718 ||| 0-0 ||| 888 374827 +del ||| point about ||| 0.00595238 0.0101916 2.6679e-06 1.22831e-06 2.718 ||| 0-1 ||| 168 374827 +del ||| point for the ||| 0.0416667 0.0435798 2.6679e-06 3.26874e-06 2.718 ||| 0-1 0-2 ||| 24 374827 +del ||| point for ||| 0.00613497 0.0138653 2.6679e-06 9.41145e-06 2.718 ||| 0-1 ||| 163 374827 +del ||| point here is the ||| 0.5 0.0732944 2.6679e-06 1.93096e-08 2.718 ||| 0-3 ||| 2 374827 +del ||| point in the future ||| 0.0322581 0.0458111 2.6679e-06 2.17613e-09 2.718 ||| 0-1 0-2 ||| 31 374827 +del ||| point in the ||| 0.00840336 0.0458111 5.33579e-06 8.19325e-06 2.718 ||| 0-1 0-2 ||| 238 374827 +del ||| point in ||| 0.00106496 0.0183279 2.6679e-06 2.35902e-05 2.718 ||| 0-1 ||| 939 374827 +del ||| point made by the ||| 0.0416667 0.0597263 2.6679e-06 1.02915e-08 2.718 ||| 0-2 0-3 ||| 24 374827 +del ||| point of being ||| 0.111111 0.130625 2.6679e-06 7.34368e-07 2.718 ||| 0-1 ||| 9 374827 +del ||| point of fact , never got down ||| 0.5 0.130625 2.6679e-06 3.96558e-19 2.718 ||| 0-1 ||| 2 374827 +del ||| point of fact , never got ||| 0.5 0.130625 2.6679e-06 5.68053e-16 2.718 ||| 0-1 ||| 2 374827 +del ||| point of fact , never ||| 0.5 0.130625 2.6679e-06 5.19244e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| point of fact , ||| 0.025 0.130625 2.6679e-06 9.01465e-08 2.718 ||| 0-1 ||| 40 374827 +del ||| point of fact ||| 0.0188679 0.130625 2.6679e-06 7.55916e-07 2.718 ||| 0-1 ||| 53 374827 +del ||| point of restricting the availability ||| 1 0.130625 2.6679e-06 4.63231e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| point of restricting the ||| 1 0.130625 2.6679e-06 6.81221e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| point of restricting ||| 1 0.130625 2.6679e-06 1.10963e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| point of this ||| 0.0185185 0.0669701 2.6679e-06 5.92465e-07 2.718 ||| 0-1 0-2 ||| 54 374827 +del ||| point of view , for the uniform ||| 0.5 0.130625 2.6679e-06 1.128e-16 2.718 ||| 0-1 ||| 2 374827 +del ||| point of view , for the ||| 0.333333 0.130625 2.6679e-06 1.31163e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| point of view , for ||| 0.25 0.130625 2.6679e-06 2.13649e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| point of view , ||| 0.001287 0.130625 2.6679e-06 2.77982e-08 2.718 ||| 0-1 ||| 777 374827 +del ||| point of view of ||| 0.00196271 0.130625 5.33579e-06 6.8761e-08 2.718 ||| 0-1 0-3 ||| 1019 374827 +del ||| point of view so ||| 0.25 0.130625 2.6679e-06 5.29066e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| point of view ||| 0.000932836 0.130625 1.06716e-05 2.331e-07 2.718 ||| 0-1 ||| 4288 374827 +del ||| point of ||| 0.00290965 0.130625 5.06901e-05 0.000258053 2.718 ||| 0-1 ||| 6530 374827 +del ||| point on ||| 0.00254453 0.0140673 2.6679e-06 8.5796e-06 2.718 ||| 0-1 ||| 393 374827 +del ||| point the ||| 0.00724638 0.0732944 2.6679e-06 0.000303832 2.718 ||| 0-1 ||| 138 374827 +del ||| point was the ||| 0.0769231 0.0732944 2.6679e-06 9.51905e-07 2.718 ||| 0-2 ||| 13 374827 +del ||| point where the ||| 0.0512821 0.0732944 5.33579e-06 9.20611e-08 2.718 ||| 0-2 ||| 39 374827 +del ||| points contained in the ||| 0.1 0.0732944 2.6679e-06 6.56671e-11 2.718 ||| 0-3 ||| 10 374827 +del ||| points in the Commission ' s ||| 0.5 0.0183279 2.6679e-06 8.20773e-16 2.718 ||| 0-1 ||| 2 374827 +del ||| points in the Commission ' ||| 0.5 0.0183279 2.6679e-06 4.31463e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| points in the Commission ||| 0.333333 0.0183279 2.6679e-06 1.25612e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| points in the ||| 0.00888889 0.0183279 5.33579e-06 2.15052e-07 2.718 ||| 0-1 ||| 225 374827 +del ||| points in ||| 0.00203666 0.0183279 2.6679e-06 3.50294e-06 2.718 ||| 0-1 ||| 491 374827 +del ||| points of the ||| 0.010989 0.10196 2.6679e-06 1.33087e-05 2.718 ||| 0-1 0-2 ||| 91 374827 +del ||| points raised by ||| 0.016129 0.0461582 2.6679e-06 2.41973e-10 2.718 ||| 0-2 ||| 62 374827 +del ||| polder ||| 0.2 0.3 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 5 374827 +del ||| polices the ||| 0.25 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| policing the ||| 0.111111 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-1 ||| 9 374827 +del ||| policy . the Commission has decided the ||| 1 0.0732944 2.6679e-06 5.22925e-18 2.718 ||| 0-2 ||| 1 374827 +del ||| policy . the Commission has decided ||| 1 0.0732944 2.6679e-06 8.51783e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| policy . the Commission has ||| 1 0.0732944 2.6679e-06 1.2453e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| policy . the Commission ||| 1 0.0732944 2.6679e-06 2.41923e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| policy . the ||| 0.333333 0.0732944 2.6679e-06 4.1418e-07 2.718 ||| 0-2 ||| 3 374827 +del ||| policy in the ||| 0.00613497 0.0458111 2.6679e-06 3.68734e-06 2.718 ||| 0-1 0-2 ||| 163 374827 +del ||| policy of the ||| 0.00320513 0.10196 2.6679e-06 4.03358e-05 2.718 ||| 0-1 0-2 ||| 312 374827 +del ||| policy of ||| 0.000839278 0.130625 5.33579e-06 0.000116136 2.718 ||| 0-1 ||| 2383 374827 +del ||| policy to ensure the security of ||| 1 0.130625 2.6679e-06 2.32093e-14 2.718 ||| 0-5 ||| 1 374827 +del ||| political objectives of ||| 0.0555556 0.0653861 2.6679e-06 1.36903e-10 2.718 ||| 0-1 0-2 ||| 18 374827 +del ||| pollute the ||| 0.0357143 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-1 ||| 28 374827 +del ||| population in the ||| 0.0166667 0.0458111 2.6679e-06 5.76e-07 2.718 ||| 0-1 0-2 ||| 60 374827 +del ||| population of the ||| 0.00546448 0.10196 2.6679e-06 6.30087e-06 2.718 ||| 0-1 0-2 ||| 183 374827 +del ||| port ||| 0.00067659 0.10622 2.6679e-06 0.0002916 2.718 ||| 0-0 ||| 1478 374827 +del ||| posed by ||| 0.00367647 0.0461582 5.33579e-06 2.10207e-07 2.718 ||| 0-1 ||| 544 374827 +del ||| position adopted by the ||| 0.0117647 0.0461582 2.6679e-06 6.66863e-11 2.718 ||| 0-2 ||| 85 374827 +del ||| position adopted by ||| 0.00877193 0.0461582 2.6679e-06 1.08624e-09 2.718 ||| 0-2 ||| 114 374827 +del ||| position of the ||| 0.00547445 0.10196 1.60074e-05 3.37378e-05 2.718 ||| 0-1 0-2 ||| 1096 374827 +del ||| position of ||| 0.000495295 0.130625 2.6679e-06 9.71387e-05 2.718 ||| 0-1 ||| 2019 374827 +del ||| position on the ||| 0.00253807 0.0436809 2.6679e-06 1.12169e-06 2.718 ||| 0-1 0-2 ||| 394 374827 +del ||| position that the ||| 0.0263158 0.0732944 2.6679e-06 1.9239e-06 2.718 ||| 0-2 ||| 38 374827 +del ||| positive effects - of the ||| 1 0.10196 2.6679e-06 1.90963e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| positive of ||| 0.142857 0.130625 2.6679e-06 2.68437e-05 2.718 ||| 0-1 ||| 7 374827 +del ||| positive repercussions of what is ||| 1 0.130625 2.6679e-06 5.90221e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| positive repercussions of what ||| 1 0.130625 2.6679e-06 1.88322e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| positive repercussions of ||| 1 0.130625 2.6679e-06 1.34218e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| positive verdict from ||| 1 0.0911315 2.6679e-06 9.86131e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| possession of a ||| 0.0555556 0.130625 2.6679e-06 1.88287e-07 2.718 ||| 0-1 ||| 18 374827 +del ||| possession of the ||| 0.0333333 0.10196 2.6679e-06 1.47532e-06 2.718 ||| 0-1 0-2 ||| 30 374827 +del ||| possession of ||| 0.00540541 0.130625 2.6679e-06 4.24779e-06 2.718 ||| 0-1 ||| 185 374827 +del ||| possibilities of the ||| 0.047619 0.10196 2.6679e-06 1.47532e-06 2.718 ||| 0-1 0-2 ||| 21 374827 +del ||| possibilities of ||| 0.00350877 0.130625 2.6679e-06 4.24779e-06 2.718 ||| 0-1 ||| 285 374827 +del ||| possibility of an ||| 0.015873 0.130625 2.6679e-06 1.12232e-07 2.718 ||| 0-1 ||| 63 374827 +del ||| possibility of the ||| 0.01 0.10196 2.6679e-06 8.76999e-06 2.718 ||| 0-1 0-2 ||| 100 374827 +del ||| possibility of ||| 0.00152772 0.130625 1.86753e-05 2.52508e-05 2.718 ||| 0-1 ||| 4582 374827 +del ||| possible for the ||| 0.00373134 0.0435798 2.6679e-06 2.9971e-06 2.718 ||| 0-1 0-2 ||| 268 374827 +del ||| possible for ||| 0.00157233 0.0138653 5.33579e-06 8.62931e-06 2.718 ||| 0-1 ||| 1272 374827 +del ||| possible in the ||| 0.00763359 0.0458111 2.6679e-06 7.51235e-06 2.718 ||| 0-1 0-2 ||| 131 374827 +del ||| possible item ||| 1 0.229263 2.6679e-06 3.72415e-06 2.718 ||| 0-1 ||| 1 374827 +del ||| possible terms by ||| 0.333333 0.0461582 2.6679e-06 1.42356e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| possibly can to enable the ||| 1 0.0732944 2.6679e-06 4.07283e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| possibly greater than the expense ||| 0.5 0.0523148 2.6679e-06 9.34097e-17 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| possibly greater than the ||| 0.5 0.0523148 2.6679e-06 4.81493e-12 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| possibly result from the ||| 0.5 0.082213 2.6679e-06 1.78344e-10 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| post of speaker ||| 0.5 0.130625 2.6679e-06 1.35148e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| post of ||| 0.015748 0.130625 5.33579e-06 7.22714e-06 2.718 ||| 0-1 ||| 127 374827 +del ||| post-natal ||| 0.2 0.125 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 5 374827 +del ||| posted the ||| 0.25 0.0732944 2.6679e-06 1.49346e-06 2.718 ||| 0-1 ||| 4 374827 +del ||| postponement of ||| 0.00512821 0.130625 2.6679e-06 1.06195e-06 2.718 ||| 0-1 ||| 195 374827 +del ||| potential for the ||| 0.0227273 0.0435798 2.6679e-06 1.92433e-07 2.718 ||| 0-1 0-2 ||| 44 374827 +del ||| power from ||| 0.0151515 0.0911315 2.6679e-06 3.23581e-06 2.718 ||| 0-1 ||| 66 374827 +del ||| power of the ||| 0.00858369 0.10196 5.33579e-06 1.52963e-05 2.718 ||| 0-1 0-2 ||| 233 374827 +del ||| power of ||| 0.00275482 0.130625 5.33579e-06 4.40413e-05 2.718 ||| 0-1 ||| 726 374827 +del ||| power plants in the ||| 0.5 0.0458111 2.6679e-06 2.46105e-11 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| powers of the ||| 0.00239808 0.10196 2.6679e-06 5.05094e-06 2.718 ||| 0-1 0-2 ||| 417 374827 +del ||| powers of this ||| 0.0357143 0.0669701 2.6679e-06 3.33888e-08 2.718 ||| 0-1 0-2 ||| 28 374827 +del ||| powers of ||| 0.00129534 0.130625 2.6679e-06 1.45428e-05 2.718 ||| 0-1 ||| 772 374827 +del ||| practice in the ||| 0.00970874 0.0458111 2.6679e-06 9.87161e-07 2.718 ||| 0-1 0-2 ||| 103 374827 +del ||| practice of ||| 0.00544465 0.130625 8.00369e-06 3.10915e-05 2.718 ||| 0-1 ||| 551 374827 +del ||| practice the ||| 0.00840336 0.0732944 2.6679e-06 3.66071e-05 2.718 ||| 0-1 ||| 119 374827 +del ||| praise by ||| 0.5 0.0461582 2.6679e-06 2.26377e-07 2.718 ||| 0-1 ||| 2 374827 +del ||| precept of good housekeeping ||| 0.5 0.130625 2.6679e-06 1.85105e-16 2.718 ||| 0-1 ||| 2 374827 +del ||| precept of good ||| 0.5 0.130625 2.6679e-06 1.68277e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| precept of ||| 0.125 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-1 ||| 8 374827 +del ||| precepts of ||| 0.2 0.130625 2.6679e-06 4.1298e-07 2.718 ||| 0-1 ||| 5 374827 +del ||| precisely the ||| 0.00149701 0.0732944 2.6679e-06 3.42453e-05 2.718 ||| 0-1 ||| 668 374827 +del ||| preferential treatment given to ||| 0.166667 0.0016181 2.6679e-06 4.79634e-15 2.718 ||| 0-0 ||| 6 374827 +del ||| preferential treatment given ||| 0.111111 0.0016181 2.6679e-06 5.39775e-14 2.718 ||| 0-0 ||| 9 374827 +del ||| preferential treatment ||| 0.00529101 0.0016181 2.6679e-06 7.865e-11 2.718 ||| 0-0 ||| 189 374827 +del ||| preferential ||| 0.00182482 0.0016181 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 548 374827 +del ||| premium per hectare , for the ||| 1 0.0435798 2.6679e-06 1.41142e-19 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| preparation of the ||| 0.00241546 0.10196 2.6679e-06 1.24993e-06 2.718 ||| 0-1 0-2 ||| 414 374827 +del ||| preparation of ||| 0.00286533 0.130625 5.33579e-06 3.59882e-06 2.718 ||| 0-1 ||| 698 374827 +del ||| preparatory work of ||| 0.142857 0.130625 2.6679e-06 9.33629e-10 2.718 ||| 0-2 ||| 7 374827 +del ||| prepared by the ||| 0.00515464 0.0597263 2.6679e-06 4.8691e-07 2.718 ||| 0-1 0-2 ||| 194 374827 +del ||| prepared by ||| 0.0155844 0.0233544 1.60074e-05 8.56999e-08 2.718 ||| 0-0 0-1 ||| 385 374827 +del ||| presence of ||| 0.000935454 0.130625 2.6679e-06 1.13569e-05 2.718 ||| 0-1 ||| 1069 374827 +del ||| present , the ||| 0.00497512 0.0732944 2.6679e-06 1.51594e-05 2.718 ||| 0-2 ||| 201 374827 +del ||| present in the ||| 0.00588235 0.0458111 5.33579e-06 3.4279e-06 2.718 ||| 0-1 0-2 ||| 340 374827 +del ||| present members of ||| 0.25 0.130625 2.6679e-06 1.59248e-08 2.718 ||| 0-2 ||| 4 374827 +del ||| present of the ||| 0.5 0.10196 2.6679e-06 3.74978e-05 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| present on ||| 0.00943396 0.0140673 2.6679e-06 3.58955e-06 2.718 ||| 0-1 ||| 106 374827 +del ||| presentation of the ||| 0.00373134 0.10196 2.6679e-06 1.61876e-06 2.718 ||| 0-1 0-2 ||| 268 374827 +del ||| presentation of ||| 0.00453515 0.130625 5.33579e-06 4.66077e-06 2.718 ||| 0-1 ||| 441 374827 +del ||| presented by the ||| 0.00396301 0.0597263 8.00369e-06 4.42543e-07 2.718 ||| 0-1 0-2 ||| 757 374827 +del ||| presented by ||| 0.00625 0.0461582 2.40111e-05 1.27418e-06 2.718 ||| 0-1 ||| 1440 374827 +del ||| presented in Mrs MosiekUrbahn 's ||| 1 0.169811 2.6679e-06 2.53739e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| preserve of ||| 0.0131579 0.130625 2.6679e-06 3.39233e-06 2.718 ||| 0-1 ||| 76 374827 +del ||| presidency of ||| 0.00809717 0.130625 5.33579e-06 7.43363e-06 2.718 ||| 0-1 ||| 247 374827 +del ||| president 's ||| 0.0833333 0.169811 2.6679e-06 3.17429e-07 2.718 ||| 0-1 ||| 12 374827 +del ||| president from ||| 0.25 0.0911315 2.6679e-06 1.71218e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| president of the ||| 0.00480769 0.10196 2.6679e-06 8.0938e-07 2.718 ||| 0-1 0-2 ||| 208 374827 +del ||| president of ||| 0.00904977 0.130625 5.33579e-06 2.33039e-06 2.718 ||| 0-1 ||| 221 374827 +del ||| presiding in the ||| 1 0.0458111 5.33579e-06 1.68585e-08 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| pressing in ||| 0.125 0.0183279 2.6679e-06 3.6944e-07 2.718 ||| 0-1 ||| 8 374827 +del ||| pressing issues addressed in the ||| 1 0.0458111 2.6679e-06 1.7297e-15 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| pressure exerted by the ||| 0.0277778 0.0597263 2.6679e-06 4.01653e-12 2.718 ||| 0-2 0-3 ||| 36 374827 +del ||| pressure from Europe ||| 0.1 0.0911315 2.6679e-06 6.59095e-10 2.718 ||| 0-1 ||| 10 374827 +del ||| pressure from ||| 0.00110988 0.0911315 2.6679e-06 1.30256e-06 2.718 ||| 0-1 ||| 901 374827 +del ||| pressure of the ||| 0.0212766 0.10196 2.6679e-06 6.15743e-06 2.718 ||| 0-1 0-2 ||| 47 374827 +del ||| pressure of ||| 0.0033557 0.130625 2.6679e-06 1.77286e-05 2.718 ||| 0-1 ||| 298 374827 +del ||| prevailing by ||| 1 0.0461582 2.6679e-06 1.51996e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| prevailing in that ||| 0.25 0.0183279 2.6679e-06 4.26401e-09 2.718 ||| 0-1 ||| 4 374827 +del ||| prevailing in ||| 0.0204082 0.0183279 5.33579e-06 2.53484e-07 2.718 ||| 0-1 ||| 98 374827 +del ||| prevalence of ||| 0.0142857 0.130625 2.6679e-06 4.1298e-07 2.718 ||| 0-1 ||| 70 374827 +del ||| prevent the exploitation of that ||| 0.5 0.130625 2.6679e-06 1.46328e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| prevent the exploitation of ||| 0.0833333 0.130625 2.6679e-06 8.69881e-12 2.718 ||| 0-3 ||| 12 374827 +del ||| prevent the ||| 0.000678887 0.0732944 2.6679e-06 1.77478e-05 2.718 ||| 0-1 ||| 1473 374827 +del ||| prevented from attending ||| 0.166667 0.0911315 2.6679e-06 4.23104e-12 2.718 ||| 0-1 ||| 6 374827 +del ||| prevented from ||| 0.00374532 0.0911315 2.6679e-06 4.91982e-07 2.718 ||| 0-1 ||| 267 374827 +del ||| preventing them from doing so ||| 1 0.0911315 2.6679e-06 6.10337e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| preventing them from doing ||| 0.2 0.0911315 2.6679e-06 2.68907e-13 2.718 ||| 0-2 ||| 5 374827 +del ||| preventing them from ||| 0.0333333 0.0911315 2.6679e-06 7.32516e-10 2.718 ||| 0-2 ||| 30 374827 +del ||| previously in the ||| 0.0909091 0.0458111 2.6679e-06 3.20312e-07 2.718 ||| 0-1 0-2 ||| 11 374827 +del ||| previously under ||| 0.5 0.014966 2.6679e-06 2.71753e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| prey for populist ||| 1 0.0324324 2.6679e-06 6.67887e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| prey for ||| 0.111111 0.0324324 2.6679e-06 6.0717e-08 2.718 ||| 0-0 ||| 9 374827 +del ||| prey ||| 0.011236 0.0324324 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 89 374827 +del ||| price of ||| 0.00262009 0.130625 8.00369e-06 1.50738e-05 2.718 ||| 0-1 ||| 1145 374827 +del ||| prices in ||| 0.00854701 0.0100703 2.6679e-06 2.97951e-06 2.718 ||| 0-0 ||| 117 374827 +del ||| prices ||| 0.000240269 0.0100703 5.33579e-06 0.0001392 2.718 ||| 0-0 ||| 8324 374827 +del ||| pride in ||| 0.0106383 0.0183279 2.6679e-06 6.7416e-08 2.718 ||| 0-1 ||| 94 374827 +del ||| priest watching over the ||| 1 0.0732944 2.6679e-06 3.251e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| primary ||| 0.000457247 0.0004509 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 2187 374827 +del ||| principle cause of the ||| 0.5 0.10196 2.6679e-06 2.83809e-09 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| principle of mutual recognition through the use ||| 0.5 0.130625 2.6679e-06 3.84095e-22 2.718 ||| 0-1 ||| 2 374827 +del ||| principle of mutual recognition through the ||| 0.333333 0.130625 2.6679e-06 7.89993e-19 2.718 ||| 0-1 ||| 3 374827 +del ||| principle of mutual recognition through ||| 0.333333 0.130625 2.6679e-06 1.28681e-17 2.718 ||| 0-1 ||| 3 374827 +del ||| principle of mutual recognition ||| 0.00531915 0.130625 2.6679e-06 2.79558e-14 2.718 ||| 0-1 ||| 188 374827 +del ||| principle of mutual ||| 0.0833333 0.130625 2.6679e-06 9.94868e-10 2.718 ||| 0-1 ||| 12 374827 +del ||| principle of subsidiarity is totally out of ||| 1 0.130625 2.6679e-06 6.88478e-20 2.718 ||| 0-1 ||| 1 374827 +del ||| principle of subsidiarity is totally out ||| 1 0.130625 2.6679e-06 1.26642e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| principle of subsidiarity is totally ||| 1 0.130625 2.6679e-06 3.30624e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| principle of subsidiarity is ||| 0.03125 0.130625 2.6679e-06 7.65334e-12 2.718 ||| 0-1 ||| 32 374827 +del ||| principle of subsidiarity ||| 0.000652316 0.130625 2.6679e-06 2.44195e-10 2.718 ||| 0-1 ||| 1533 374827 +del ||| principle of the ||| 0.00218818 0.10196 2.6679e-06 1.57061e-05 2.718 ||| 0-1 0-2 ||| 457 374827 +del ||| principle of ||| 0.000865801 0.130625 1.60074e-05 4.52213e-05 2.718 ||| 0-1 ||| 6930 374827 +del ||| principle that the ||| 0.00961538 0.0732944 2.6679e-06 8.95641e-07 2.718 ||| 0-2 ||| 104 374827 +del ||| principle the ||| 0.015625 0.0732944 2.6679e-06 5.32435e-05 2.718 ||| 0-1 ||| 64 374827 +del ||| principles can the two aims ||| 0.0666667 0.0732944 2.6679e-06 3.92676e-16 2.718 ||| 0-2 ||| 15 374827 +del ||| principles can the two ||| 0.0666667 0.0732944 2.6679e-06 9.84151e-12 2.718 ||| 0-2 ||| 15 374827 +del ||| principles can the ||| 0.0666667 0.0732944 2.6679e-06 4.16308e-08 2.718 ||| 0-2 ||| 15 374827 +del ||| principles of all ||| 0.333333 0.130625 2.6679e-06 5.61752e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| principles of ||| 0.00178412 0.130625 1.06716e-05 1.18879e-05 2.718 ||| 0-1 ||| 2242 374827 +del ||| printed in ||| 0.0434783 0.0183279 2.6679e-06 1.64495e-07 2.718 ||| 0-1 ||| 23 374827 +del ||| prior to the introduction ||| 0.125 0.0732944 2.6679e-06 2.98126e-11 2.718 ||| 0-2 ||| 8 374827 +del ||| prior to the ||| 0.00198807 0.0732944 2.6679e-06 5.67858e-07 2.718 ||| 0-2 ||| 503 374827 +del ||| priori of ||| 1 0.130625 2.6679e-06 4.1298e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| priority of the ||| 0.00621118 0.10196 2.6679e-06 5.71688e-06 2.718 ||| 0-1 0-2 ||| 161 374827 +del ||| prisoners of ||| 0.005 0.130625 2.6679e-06 3.59882e-06 2.718 ||| 0-1 ||| 200 374827 +del ||| private ||| 0.000738443 0.0035103 1.33395e-05 3.15e-05 2.718 ||| 0-0 ||| 6771 374827 +del ||| pro-active stance in the fight ||| 1 0.0732944 2.6679e-06 2.37006e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| pro-active stance in the ||| 1 0.0732944 2.6679e-06 4.30138e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| problem for ||| 0.00191205 0.0138653 2.6679e-06 2.41956e-06 2.718 ||| 0-1 ||| 523 374827 +del ||| problem of concentration ||| 0.25 0.130625 2.6679e-06 3.84785e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| problem of the ||| 0.0065445 0.10196 1.33395e-05 2.30417e-05 2.718 ||| 0-1 0-2 ||| 764 374827 +del ||| problem of ||| 0.00278293 0.130625 3.20148e-05 6.63422e-05 2.718 ||| 0-1 ||| 4312 374827 +del ||| procedure to the ||| 0.111111 0.0732944 2.6679e-06 3.09853e-06 2.718 ||| 0-2 ||| 9 374827 +del ||| procedure ||| 0.000233686 0.002384 1.06716e-05 4.2e-05 2.718 ||| 0-0 ||| 17117 374827 +del ||| procedures concerning the ||| 0.166667 0.0732944 2.6679e-06 9.22749e-10 2.718 ||| 0-2 ||| 6 374827 +del ||| procedures relating to the ||| 0.0909091 0.0732944 2.6679e-06 1.51589e-10 2.718 ||| 0-3 ||| 11 374827 +del ||| procedures under this ||| 1 0.0033154 2.6679e-06 3.55868e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| proceeded against ||| 0.333333 0.0025296 2.6679e-06 7.356e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| proceedings for the ||| 0.166667 0.0138653 2.6679e-06 2.39753e-08 2.718 ||| 0-1 ||| 6 374827 +del ||| proceedings for ||| 0.0232558 0.0138653 2.6679e-06 3.9053e-07 2.718 ||| 0-1 ||| 43 374827 +del ||| proceedings ||| 0.00109329 0.0038647 8.00369e-06 1.58e-05 2.718 ||| 0-0 ||| 2744 374827 +del ||| process of dealing with them ||| 1 0.130625 2.6679e-06 2.23443e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| process of dealing with ||| 0.333333 0.130625 2.6679e-06 8.32998e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| process of dealing ||| 0.5 0.130625 2.6679e-06 1.30268e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| process of reaching ||| 0.1 0.130625 2.6679e-06 3.40487e-09 2.718 ||| 0-1 ||| 10 374827 +del ||| process of ||| 0.00258065 0.130625 3.20148e-05 0.000126106 2.718 ||| 0-1 ||| 4650 374827 +del ||| proclamation of Parliament 's ||| 0.5 0.169811 2.6679e-06 5.01537e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| produced by the ||| 0.0177936 0.0597263 1.33395e-05 5.94176e-07 2.718 ||| 0-1 0-2 ||| 281 374827 +del ||| produced by ||| 0.0116279 0.0461582 1.86753e-05 1.71076e-06 2.718 ||| 0-1 ||| 602 374827 +del ||| produced over ||| 0.2 0.006517 2.6679e-06 3.37714e-08 2.718 ||| 0-1 ||| 5 374827 +del ||| produces the ||| 0.0204082 0.0732944 2.6679e-06 3.50789e-06 2.718 ||| 0-1 ||| 49 374827 +del ||| producing the ||| 0.00763359 0.0732944 2.6679e-06 1.16351e-05 2.718 ||| 0-1 ||| 131 374827 +del ||| product of ||| 0.00361011 0.130625 2.6679e-06 1.79351e-05 2.718 ||| 0-1 ||| 277 374827 +del ||| product ||| 0.000894614 0.0172911 1.33395e-05 0.0001103 2.718 ||| 0-0 ||| 5589 374827 +del ||| production of ||| 0.00131839 0.130625 5.33579e-06 2.46313e-05 2.718 ||| 0-1 ||| 1517 374827 +del ||| production sector ||| 0.0116279 0.0250353 2.6679e-06 6.2291e-08 2.718 ||| 0-1 ||| 86 374827 +del ||| products of this kind ||| 0.333333 0.130625 2.6679e-06 9.67343e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| products of this ||| 0.166667 0.130625 2.6679e-06 1.98226e-07 2.718 ||| 0-1 ||| 6 374827 +del ||| products of ||| 0.0047619 0.130625 2.6679e-06 3.06785e-05 2.718 ||| 0-1 ||| 210 374827 +del ||| professionals in the audiovisual ||| 1 0.0183279 2.6679e-06 2.38394e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| professionals in the ||| 0.0212766 0.0183279 2.6679e-06 5.95986e-09 2.718 ||| 0-1 ||| 47 374827 +del ||| professionals in ||| 0.0204082 0.0183279 2.6679e-06 9.7079e-08 2.718 ||| 0-1 ||| 49 374827 +del ||| profound inequalities and relations of social ||| 1 0.130625 2.6679e-06 2.82492e-22 2.718 ||| 0-4 ||| 1 374827 +del ||| profound inequalities and relations of ||| 1 0.130625 2.6679e-06 2.73467e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| programme for the ||| 0.00757576 0.0435798 2.6679e-06 4.76038e-07 2.718 ||| 0-1 0-2 ||| 132 374827 +del ||| programme provides a response to the ||| 1 0.0732944 2.6679e-06 1.24785e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| programme ||| 0.000151464 0.0004156 1.06716e-05 1.18e-05 2.718 ||| 0-0 ||| 26409 374827 +del ||| progress made in the ||| 0.00909091 0.0183279 2.6679e-06 4.56732e-10 2.718 ||| 0-2 ||| 110 374827 +del ||| progress made in ||| 0.00243902 0.0183279 2.6679e-06 7.43963e-09 2.718 ||| 0-2 ||| 410 374827 +del ||| projects financed by the ||| 0.0454545 0.0461582 2.6679e-06 3.71942e-13 2.718 ||| 0-2 ||| 22 374827 +del ||| projects financed by ||| 0.037037 0.0461582 2.6679e-06 6.0585e-12 2.718 ||| 0-2 ||| 27 374827 +del ||| projects supported by ||| 0.0909091 0.0461582 2.6679e-06 4.12935e-11 2.718 ||| 0-2 ||| 11 374827 +del ||| promise to ease the ||| 1 0.0732944 2.6679e-06 3.01706e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| promote the emergence of ||| 0.2 0.0732944 2.6679e-06 9.1983e-12 2.718 ||| 0-1 ||| 5 374827 +del ||| promote the emergence ||| 0.2 0.0732944 2.6679e-06 1.69198e-10 2.718 ||| 0-1 ||| 5 374827 +del ||| promote the ||| 0.000545256 0.0732944 2.6679e-06 2.22629e-05 2.718 ||| 0-1 ||| 1834 374827 +del ||| promoted by the Aznar ||| 1 0.0461582 2.6679e-06 3.93106e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| promoted by the ||| 0.00714286 0.0461582 2.6679e-06 2.18392e-08 2.718 ||| 0-1 ||| 140 374827 +del ||| promoted by ||| 0.00446429 0.0461582 2.6679e-06 3.55736e-07 2.718 ||| 0-1 ||| 224 374827 +del ||| promoting the Lisbon strategy and ||| 0.125 0.0732944 2.6679e-06 1.66808e-16 2.718 ||| 0-1 ||| 8 374827 +del ||| promoting the Lisbon strategy ||| 0.111111 0.0732944 2.6679e-06 1.33171e-14 2.718 ||| 0-1 ||| 9 374827 +del ||| promoting the Lisbon ||| 0.125 0.0732944 2.6679e-06 2.26867e-10 2.718 ||| 0-1 ||| 8 374827 +del ||| promoting the ||| 0.00106157 0.0732944 2.6679e-06 9.86377e-06 2.718 ||| 0-1 ||| 942 374827 +del ||| promoting trade barriers ||| 1 0.0203741 2.6679e-06 1.50882e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| promoting trade ||| 0.111111 0.0203741 2.6679e-06 1.9099e-08 2.718 ||| 0-1 ||| 9 374827 +del ||| promotion of ||| 0.000743771 0.130625 5.33579e-06 7.10915e-06 2.718 ||| 0-1 ||| 2689 374827 +del ||| promulgated the ||| 1 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| proof of ||| 0.00191205 0.130625 2.6679e-06 6.90266e-06 2.718 ||| 0-1 ||| 523 374827 +del ||| proof that trips were ||| 0.333333 0.0003764 2.6679e-06 1.41028e-16 2.718 ||| 0-0 ||| 3 374827 +del ||| proof that trips ||| 0.333333 0.0003764 2.6679e-06 7.87251e-14 2.718 ||| 0-0 ||| 3 374827 +del ||| proof that ||| 0.00333333 0.0003764 2.6679e-06 2.18681e-08 2.718 ||| 0-0 ||| 300 374827 +del ||| proof ||| 0.000500751 0.0003764 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1997 374827 +del ||| proper application of the ||| 0.0277778 0.10196 2.6679e-06 5.5128e-10 2.718 ||| 0-2 0-3 ||| 36 374827 +del ||| proper ||| 0.000361272 0.00154 5.33579e-06 1.44e-05 2.718 ||| 0-0 ||| 5536 374827 +del ||| properly in accordance ||| 0.0769231 0.0183279 2.6679e-06 1.59715e-10 2.718 ||| 0-1 ||| 13 374827 +del ||| properly in ||| 0.011236 0.0183279 2.6679e-06 2.009e-06 2.718 ||| 0-1 ||| 89 374827 +del ||| properties abroad ||| 0.166667 0.0094803 2.6679e-06 4.97e-11 2.718 ||| 0-1 ||| 6 374827 +del ||| property ||| 0.000547645 0.0005963 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 1826 374827 +del ||| proportion by the press ||| 0.333333 0.0732944 2.6679e-06 1.66305e-12 2.718 ||| 0-2 ||| 3 374827 +del ||| proportion by the ||| 0.333333 0.0732944 2.6679e-06 5.5068e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| proportion from ||| 1 0.0911315 2.6679e-06 6.54531e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| proportion of the ||| 0.00381679 0.10196 2.6679e-06 3.09408e-06 2.718 ||| 0-1 0-2 ||| 262 374827 +del ||| proposal in the ||| 0.00613497 0.0458111 2.6679e-06 1.87036e-06 2.718 ||| 0-1 0-2 ||| 163 374827 +del ||| proposal made by the ||| 0.015873 0.0732944 2.6679e-06 7.62804e-10 2.718 ||| 0-3 ||| 63 374827 +del ||| proposal of the ||| 0.00398406 0.10196 2.6679e-06 2.04599e-05 2.718 ||| 0-1 0-2 ||| 251 374827 +del ||| proposal of ||| 0.00238095 0.130625 2.6679e-06 5.89086e-05 2.718 ||| 0-1 ||| 420 374827 +del ||| proposal tabled by the ||| 0.03125 0.0597263 2.6679e-06 9.16282e-11 2.718 ||| 0-2 0-3 ||| 32 374827 +del ||| proposal that the ||| 0.00769231 0.0732944 2.6679e-06 1.16673e-06 2.718 ||| 0-2 ||| 130 374827 +del ||| proposals between Germany and ||| 0.333333 0.0028314 2.6679e-06 6.42026e-15 2.718 ||| 0-1 ||| 3 374827 +del ||| proposals between Germany ||| 0.333333 0.0028314 2.6679e-06 5.12559e-13 2.718 ||| 0-1 ||| 3 374827 +del ||| proposals between ||| 0.25 0.0028314 2.6679e-06 1.97899e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| propose the provision of ||| 0.5 0.0732944 2.6679e-06 7.58174e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| propose the provision ||| 0.5 0.0732944 2.6679e-06 1.39463e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| propose the ||| 0.00621118 0.0732944 2.6679e-06 1.17393e-05 2.718 ||| 0-1 ||| 161 374827 +del ||| proposed by the ||| 0.00195389 0.0597263 1.33395e-05 6.26749e-07 2.718 ||| 0-1 0-2 ||| 2559 374827 +del ||| proposed by ||| 0.000286533 0.0461582 2.6679e-06 1.80455e-06 2.718 ||| 0-1 ||| 3490 374827 +del ||| proposed directive next year ||| 0.0769231 0.0281625 2.6679e-06 2.99466e-15 2.718 ||| 0-2 ||| 13 374827 +del ||| proposed directive next ||| 0.0769231 0.0281625 2.6679e-06 1.20074e-11 2.718 ||| 0-2 ||| 13 374827 +del ||| proposed in the ||| 0.00176056 0.0458111 2.6679e-06 1.04523e-06 2.718 ||| 0-1 0-2 ||| 568 374827 +del ||| prosecution service set up ||| 1 0.0061619 2.6679e-06 7.35094e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| prosecution service set ||| 1 0.0061619 2.6679e-06 2.15538e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| prosecution service ||| 0.047619 0.0061619 2.6679e-06 3.6882e-10 2.718 ||| 0-1 ||| 21 374827 +del ||| protection of the ||| 0.000593472 0.10196 2.6679e-06 1.0399e-05 2.718 ||| 0-1 0-2 ||| 1685 374827 +del ||| protection of ||| 0.000301523 0.130625 5.33579e-06 2.9941e-05 2.718 ||| 0-1 ||| 6633 374827 +del ||| provide a sum of EUR 1 ||| 0.5 0.130625 2.6679e-06 2.77357e-18 2.718 ||| 0-3 ||| 2 374827 +del ||| provide a sum of EUR ||| 0.5 0.130625 2.6679e-06 4.35411e-14 2.718 ||| 0-3 ||| 2 374827 +del ||| provide a sum of ||| 0.5 0.130625 2.6679e-06 1.62831e-10 2.718 ||| 0-3 ||| 2 374827 +del ||| provide for ||| 0.00227531 0.0138653 5.33579e-06 3.18233e-06 2.718 ||| 0-1 ||| 879 374827 +del ||| provide the public ||| 0.0434783 0.0732944 2.6679e-06 1.66021e-08 2.718 ||| 0-1 ||| 23 374827 +del ||| provide the ||| 0.000810373 0.0732944 2.6679e-06 0.000102736 2.718 ||| 0-1 ||| 1234 374827 +del ||| provided by the ||| 0.0143229 0.0597263 2.93469e-05 1.28719e-06 2.718 ||| 0-1 0-2 ||| 768 374827 +del ||| provided by ||| 0.00217549 0.0461582 8.00369e-06 3.70612e-06 2.718 ||| 0-1 ||| 1379 374827 +del ||| provided for by ||| 0.0075188 0.0300118 5.33579e-06 3.98719e-08 2.718 ||| 0-1 0-2 ||| 266 374827 +del ||| provided for in the ||| 0.00371058 0.0264452 5.33579e-06 3.9297e-10 2.718 ||| 0-0 0-1 0-2 0-3 ||| 539 374827 +del ||| provided for ||| 0.00187032 0.0138653 8.00369e-06 2.46583e-06 2.718 ||| 0-1 ||| 1604 374827 +del ||| provided from the ||| 0.0769231 0.0732944 2.6679e-06 1.28196e-07 2.718 ||| 0-2 ||| 13 374827 +del ||| provided in ||| 0.0037037 0.00931055 2.6679e-06 1.05169e-07 2.718 ||| 0-0 0-1 ||| 270 374827 +del ||| provided through the ||| 0.0714286 0.0732944 2.6679e-06 3.66421e-08 2.718 ||| 0-2 ||| 14 374827 +del ||| provided to the ||| 0.0142857 0.0732944 2.6679e-06 7.07354e-06 2.718 ||| 0-2 ||| 70 374827 +del ||| provided under the ||| 0.0333333 0.0732944 2.6679e-06 2.85622e-08 2.718 ||| 0-2 ||| 30 374827 +del ||| provided under ||| 0.0192308 0.014966 2.6679e-06 1.82122e-07 2.718 ||| 0-1 ||| 52 374827 +del ||| provided with the ||| 0.0384615 0.0732944 2.6679e-06 5.09033e-07 2.718 ||| 0-2 ||| 26 374827 +del ||| provider ||| 0.00271739 0.003012 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 368 374827 +del ||| provides a response to the ||| 0.111111 0.0732944 2.6679e-06 9.79471e-12 2.718 ||| 0-4 ||| 9 374827 +del ||| provides specifically for assent . so Parliament ||| 1 0.0181517 2.6679e-06 7.69687e-24 2.718 ||| 0-6 ||| 1 374827 +del ||| providing the ||| 0.005 0.0367252 5.33579e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 400 374827 +del ||| provision of ||| 0.000647668 0.130625 2.6679e-06 3.50443e-05 2.718 ||| 0-1 ||| 1544 374827 +del ||| provision on ||| 0.0136986 0.0140673 2.6679e-06 1.16513e-06 2.718 ||| 0-1 ||| 73 374827 +del ||| provisional ||| 0.00189753 0.0037244 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 527 374827 +del ||| provisions applicable in the ||| 0.5 0.0183279 2.6679e-06 3.14396e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| provisions applicable in ||| 0.25 0.0183279 2.6679e-06 5.12114e-11 2.718 ||| 0-2 ||| 4 374827 +del ||| provisions of the Madrid Protocol , and ||| 1 0.0732944 2.6679e-06 6.22307e-20 2.718 ||| 0-2 ||| 1 374827 +del ||| provisions of the Madrid Protocol , ||| 1 0.0732944 2.6679e-06 4.96816e-18 2.718 ||| 0-2 ||| 1 374827 +del ||| provisions of the Madrid Protocol ||| 1 0.0732944 2.6679e-06 4.16601e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| provisions of the Madrid ||| 1 0.0732944 2.6679e-06 3.71965e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| provisions of the ||| 0.00179211 0.10196 5.33579e-06 8.07331e-06 2.718 ||| 0-1 0-2 ||| 1116 374827 +del ||| provisions of ||| 0.00542005 0.130625 1.60074e-05 2.32449e-05 2.718 ||| 0-1 ||| 1107 374827 +del ||| public , ||| 0.00116414 0.0064703 2.6679e-06 3.82211e-05 2.718 ||| 0-0 ||| 859 374827 +del ||| public sector ||| 0.0011534 0.0250353 2.6679e-06 1.20554e-07 2.718 ||| 0-1 ||| 867 374827 +del ||| public television corporation ||| 0.5 0.0805687 2.6679e-06 2.4505e-14 2.718 ||| 0-2 ||| 2 374827 +del ||| public ||| 0.000234158 0.0064703 2.13432e-05 0.0003205 2.718 ||| 0-0 ||| 34165 374827 +del ||| publication of ||| 0.00239808 0.130625 2.6679e-06 1.79941e-06 2.718 ||| 0-1 ||| 417 374827 +del ||| publicity ||| 0.00262467 0.0022989 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 381 374827 +del ||| published in ||| 0.005 0.0183279 5.33579e-06 6.01351e-07 2.718 ||| 0-1 ||| 400 374827 +del ||| pull ' ||| 0.2 0.0293692 2.6679e-06 1.13005e-07 2.718 ||| 0-1 ||| 5 374827 +del ||| pull out of the ||| 0.125 0.10196 2.6679e-06 9.33999e-09 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| punished ' ||| 1 0.0293692 2.6679e-06 2.89634e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| purchase of ||| 0.00555556 0.130625 2.6679e-06 1.91741e-06 2.718 ||| 0-1 ||| 180 374827 +del ||| purchase on the part of the ||| 1 0.10196 2.6679e-06 3.26129e-13 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| purely by virtue of ||| 0.25 0.130625 2.6679e-06 8.7223e-13 2.718 ||| 0-3 ||| 4 374827 +del ||| purification ||| 0.0147059 0.0340909 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 68 374827 +del ||| purpose of providing a cushion ||| 1 0.130625 2.6679e-06 1.51157e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| purpose of providing a ||| 0.333333 0.130625 2.6679e-06 2.15939e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| purpose of providing ||| 0.111111 0.130625 2.6679e-06 4.87163e-09 2.718 ||| 0-1 ||| 9 374827 +del ||| purpose of the ||| 0.00570342 0.10196 8.00369e-06 1.84313e-05 2.718 ||| 0-1 0-2 ||| 526 374827 +del ||| purpose of these three new countries ||| 1 0.130625 2.6679e-06 7.90642e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| purpose of these three new ||| 1 0.130625 2.6679e-06 2.08228e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| purpose of these three ||| 1 0.130625 2.6679e-06 3.48382e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| purpose of these ||| 0.0285714 0.130625 2.6679e-06 5.50367e-08 2.718 ||| 0-1 ||| 35 374827 +del ||| purpose of ||| 0.0026441 0.130625 1.33395e-05 5.30679e-05 2.718 ||| 0-1 ||| 1891 374827 +del ||| purposes of ||| 0.00198807 0.0654819 2.6679e-06 3.83481e-07 2.718 ||| 0-0 0-1 ||| 503 374827 +del ||| pursuant ||| 0.00153374 0.0007704 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 652 374827 +del ||| pursue the ||| 0.00341297 0.0732944 2.6679e-06 1.36148e-05 2.718 ||| 0-1 ||| 293 374827 +del ||| pursued by the ||| 0.0225564 0.0597263 8.00369e-06 2.06108e-07 2.718 ||| 0-1 0-2 ||| 133 374827 +del ||| pursuing the ||| 0.00684932 0.0370043 2.6679e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 146 374827 +del ||| pursuit of pleasure ||| 1 0.130625 2.6679e-06 1.66065e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| pursuit of ||| 0.00351494 0.130625 5.33579e-06 7.31564e-06 2.718 ||| 0-1 ||| 569 374827 +del ||| pushed out of the ||| 0.333333 0.10196 2.6679e-06 7.22083e-09 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| put by ||| 0.0223464 0.0461582 1.06716e-05 1.78288e-05 2.718 ||| 0-1 ||| 179 374827 +del ||| put down by ||| 0.0833333 0.0461582 2.6679e-06 1.24463e-08 2.718 ||| 0-2 ||| 12 374827 +del ||| put forward by the ||| 0.00733945 0.0597263 1.06716e-05 3.44536e-09 2.718 ||| 0-2 0-3 ||| 545 374827 +del ||| put forward by ||| 0.00829016 0.0461582 2.13432e-05 9.91996e-09 2.718 ||| 0-2 ||| 965 374827 +del ||| put forward for the ||| 0.0625 0.0732944 2.6679e-06 1.63762e-09 2.718 ||| 0-3 ||| 16 374827 +del ||| put forward in the ||| 0.00806452 0.0458111 2.6679e-06 5.74583e-09 2.718 ||| 0-2 0-3 ||| 124 374827 +del ||| put forward in this ||| 0.0181818 0.0108217 2.6679e-06 3.79823e-11 2.718 ||| 0-2 0-3 ||| 55 374827 +del ||| put in by ||| 0.111111 0.0322431 5.33579e-06 4.80779e-07 2.718 ||| 0-1 0-2 ||| 18 374827 +del ||| put in place the ||| 0.0140845 0.0732944 2.6679e-06 1.23363e-08 2.718 ||| 0-3 ||| 71 374827 +del ||| put into your ||| 0.5 0.0017627 2.6679e-06 8.62614e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| put on the table ||| 0.0166667 0.0436809 2.6679e-06 2.54267e-10 2.718 ||| 0-1 0-2 ||| 60 374827 +del ||| put on the ||| 0.00735294 0.0436809 5.33579e-06 3.75579e-06 2.718 ||| 0-1 0-2 ||| 272 374827 +del ||| put on ||| 0.00341297 0.0140673 5.33579e-06 1.08137e-05 2.718 ||| 0-1 ||| 586 374827 +del ||| put out of business ||| 1 0.130625 2.6679e-06 1.55606e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| put out of ||| 0.166667 0.130625 2.6679e-06 1.24584e-06 2.718 ||| 0-2 ||| 6 374827 +del ||| put the ||| 0.00805524 0.0732944 1.86753e-05 0.00038295 2.718 ||| 0-1 ||| 869 374827 +del ||| put to us by ||| 0.142857 0.0461582 2.6679e-06 4.56609e-09 2.718 ||| 0-3 ||| 7 374827 +del ||| putting an ||| 0.00578035 0.0008398 2.6679e-06 2.01308e-08 2.718 ||| 0-1 ||| 173 374827 +del ||| putting the ||| 0.00310559 0.0732944 2.6679e-06 3.88646e-05 2.718 ||| 0-1 ||| 322 374827 +del ||| putting up with the ||| 0.5 0.0732944 2.6679e-06 8.47577e-10 2.718 ||| 0-3 ||| 2 374827 +del ||| quality of the ||| 0.00201005 0.10196 5.33579e-06 5.05094e-06 2.718 ||| 0-1 0-2 ||| 995 374827 +del ||| quantities of ||| 0.00359712 0.130625 2.6679e-06 4.24779e-06 2.718 ||| 0-1 ||| 278 374827 +del ||| quantity of ||| 0.00302115 0.130625 2.6679e-06 2.53688e-06 2.718 ||| 0-1 ||| 331 374827 +del ||| quarter of ||| 0.00201613 0.130625 2.6679e-06 2.0059e-06 2.718 ||| 0-1 ||| 496 374827 +del ||| quest for ||| 0.00343643 0.0138653 2.6679e-06 6.56262e-08 2.718 ||| 0-1 ||| 291 374827 +del ||| question by the ||| 0.047619 0.0597263 2.6679e-06 4.64614e-06 2.718 ||| 0-1 0-2 ||| 21 374827 +del ||| question of a ||| 0.00606061 0.130625 2.6679e-06 1.08173e-05 2.718 ||| 0-1 ||| 165 374827 +del ||| question of the ||| 0.00889548 0.10196 3.20148e-05 8.47595e-05 2.718 ||| 0-1 0-2 ||| 1349 374827 +del ||| question of who should wield ||| 1 0.130625 2.6679e-06 2.09825e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| question of who should ||| 0.25 0.130625 2.6679e-06 9.53749e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| question of who ||| 0.0188679 0.130625 2.6679e-06 2.15245e-07 2.718 ||| 0-1 ||| 53 374827 +del ||| question of ||| 0.0038068 0.130625 8.53727e-05 0.000244042 2.718 ||| 0-1 ||| 8406 374827 +del ||| question whether the ||| 0.0192308 0.0732944 2.6679e-06 7.54827e-08 2.718 ||| 0-2 ||| 52 374827 +del ||| question-time ||| 1 1 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| questions of ||| 0.00144718 0.0653471 2.6679e-06 3.83481e-07 2.718 ||| 0-0 0-1 ||| 691 374827 +del ||| quick fix of ||| 0.5 0.130625 2.6679e-06 1.54749e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| quite properly in accordance ||| 0.0833333 0.0183279 2.6679e-06 6.23049e-14 2.718 ||| 0-2 ||| 12 374827 +del ||| quite properly in ||| 0.0714286 0.0183279 2.6679e-06 7.8371e-10 2.718 ||| 0-2 ||| 14 374827 +del ||| quo of the ||| 0.333333 0.10196 2.6679e-06 1.47532e-06 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| quote from the ||| 0.0285714 0.0732944 2.6679e-06 2.49456e-08 2.718 ||| 0-2 ||| 35 374827 +del ||| quote from ||| 0.0106383 0.0911315 2.6679e-06 9.66625e-07 2.718 ||| 0-1 ||| 94 374827 +del ||| quote the Court ||| 1 0.0732944 2.6679e-06 7.24945e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| quote the ||| 0.0240964 0.0732944 5.33579e-06 1.54903e-05 2.718 ||| 0-1 ||| 83 374827 +del ||| radical review of the ||| 0.5 0.10196 2.6679e-06 2.51727e-11 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| radio ||| 0.0013245 0.0019417 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 755 374827 +del ||| raft of ||| 0.00757576 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-1 ||| 132 374827 +del ||| rail ||| 0.00130124 0.0283401 1.06716e-05 0.0001471 2.718 ||| 0-0 ||| 3074 374827 +del ||| raise libraries ||| 1 0.0042553 2.6679e-06 1.7134e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| raised between ||| 0.25 0.0028314 2.6679e-06 2.34547e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| raised by the ||| 0.00943396 0.0597263 1.06716e-05 6.46966e-07 2.718 ||| 0-1 0-2 ||| 424 374827 +del ||| raised by ||| 0.00446761 0.0233932 1.60074e-05 1.06721e-07 2.718 ||| 0-0 0-1 ||| 1343 374827 +del ||| raised during this ||| 0.1 0.0033154 2.6679e-06 2.66604e-11 2.718 ||| 0-2 ||| 10 374827 +del ||| raised from ||| 0.0243902 0.0911315 2.6679e-06 2.49675e-06 2.718 ||| 0-1 ||| 41 374827 +del ||| raised in the ||| 0.00316456 0.0458111 2.6679e-06 1.07895e-06 2.718 ||| 0-1 0-2 ||| 316 374827 +del ||| raised in ||| 0.0028777 0.009478 5.33579e-06 1.77978e-07 2.718 ||| 0-0 0-1 ||| 695 374827 +del ||| raised with ||| 0.0169492 0.0045281 2.6679e-06 2.19249e-07 2.718 ||| 0-1 ||| 59 374827 +del ||| raises the question of the ||| 0.0666667 0.10196 2.6679e-06 5.25557e-11 2.718 ||| 0-3 0-4 ||| 15 374827 +del ||| raising the matter ||| 0.0625 0.0732944 2.6679e-06 8.28782e-09 2.718 ||| 0-1 ||| 16 374827 +del ||| raising the ||| 0.00226757 0.0732944 2.6679e-06 7.98826e-06 2.718 ||| 0-1 ||| 441 374827 +del ||| range of expertise ||| 0.5 0.130625 2.6679e-06 1.37805e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| range of ||| 0.00176913 0.130625 1.06716e-05 2.02655e-05 2.718 ||| 0-1 ||| 2261 374827 +del ||| range on the ||| 0.5 0.0436809 2.6679e-06 2.34013e-07 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| ranging from ||| 0.00364964 0.0911315 2.6679e-06 1.95059e-07 2.718 ||| 0-1 ||| 274 374827 +del ||| rank and of the ||| 1 0.10196 2.6679e-06 2.30997e-09 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| rapidly than in the ||| 0.5 0.0409858 2.6679e-06 2.60712e-10 2.718 ||| 0-1 0-2 0-3 ||| 2 374827 +del ||| rate drops below ||| 1 0.0277778 2.6679e-06 1.42106e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| rate of growth in ||| 0.111111 0.130625 2.6679e-06 3.05553e-11 2.718 ||| 0-1 ||| 9 374827 +del ||| rate of growth ||| 0.0147059 0.130625 2.6679e-06 1.42752e-09 2.718 ||| 0-1 ||| 68 374827 +del ||| rate of ||| 0.00829876 0.130625 2.13432e-05 2.96165e-05 2.718 ||| 0-1 ||| 964 374827 +del ||| rate ||| 0.00140786 0.0046344 2.6679e-05 3.55e-05 2.718 ||| 0-0 ||| 7103 374827 +del ||| rates of excise duty on ||| 0.125 0.0723461 2.6679e-06 4.43439e-17 2.718 ||| 0-1 0-4 ||| 8 374827 +del ||| rates of ||| 0.00833333 0.130625 8.00369e-06 1.12389e-05 2.718 ||| 0-1 ||| 360 374827 +del ||| rates ||| 0.000470146 0.0013126 5.33579e-06 1.05e-05 2.718 ||| 0-0 ||| 4254 374827 +del ||| rates – on carrying ||| 0.5 0.0140673 2.6679e-06 8.88446e-15 2.718 ||| 0-2 ||| 2 374827 +del ||| rates – on ||| 0.5 0.0140673 2.6679e-06 1.46851e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| rather , by the ||| 0.5 0.0732944 2.6679e-06 6.65844e-08 2.718 ||| 0-3 ||| 2 374827 +del ||| rather , to ||| 0.0434783 0.0006066 2.6679e-06 4.85843e-08 2.718 ||| 0-2 ||| 23 374827 +del ||| rather than have the ||| 1 0.0732944 2.6679e-06 3.88566e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| rather than ||| 0.000389004 0.0313352 8.00369e-06 7.16263e-07 2.718 ||| 0-1 ||| 7712 374827 +del ||| ratification of the ||| 0.00109409 0.10196 2.6679e-06 5.12266e-07 2.718 ||| 0-1 0-2 ||| 914 374827 +del ||| ratification of ||| 0.0021692 0.130625 2.6679e-06 1.47493e-06 2.718 ||| 0-1 ||| 461 374827 +del ||| ratify the ||| 0.00330579 0.0732944 5.33579e-06 1.73658e-06 2.718 ||| 0-1 ||| 605 374827 +del ||| ratio of ||| 0.0104167 0.130625 2.6679e-06 3.06785e-06 2.718 ||| 0-1 ||| 96 374827 +del ||| re-establishment of the ||| 0.0454545 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-1 0-2 ||| 22 374827 +del ||| reach a ||| 0.000799361 0.0008087 2.6679e-06 6.84045e-08 2.718 ||| 0-1 ||| 1251 374827 +del ||| reach the ||| 0.00353982 0.0367608 5.33579e-06 9.03021e-07 2.718 ||| 0-0 0-1 ||| 565 374827 +del ||| reached by the ||| 0.0138889 0.0597263 5.33579e-06 6.06531e-07 2.718 ||| 0-1 0-2 ||| 144 374827 +del ||| reached in the ||| 0.0129032 0.0458111 5.33579e-06 1.01151e-06 2.718 ||| 0-1 0-2 ||| 155 374827 +del ||| reached into the ||| 1 0.0732944 2.6679e-06 3.85116e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| reached the ||| 0.00218818 0.0732944 2.6679e-06 3.75101e-05 2.718 ||| 0-1 ||| 457 374827 +del ||| reaching up out of the ||| 1 0.10196 2.6679e-06 3.61369e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| react if the ||| 1 0.0732944 2.6679e-06 2.4088e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| read the ||| 0.00543478 0.0732944 8.00369e-06 1.67406e-05 2.718 ||| 0-1 ||| 552 374827 +del ||| real chance of ||| 0.0294118 0.130625 2.6679e-06 3.49717e-09 2.718 ||| 0-2 ||| 34 374827 +del ||| real prisoners of ||| 1 0.130625 2.6679e-06 6.47428e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| real problem of ||| 0.0454545 0.130625 2.6679e-06 1.1935e-08 2.718 ||| 0-2 ||| 22 374827 +del ||| reality of ||| 0.00167504 0.130625 2.6679e-06 1.97345e-05 2.718 ||| 0-1 ||| 597 374827 +del ||| really the ||| 0.0135135 0.0732944 5.33579e-06 0.00016824 2.718 ||| 0-1 ||| 148 374827 +del ||| realms of ||| 0.0212766 0.130625 2.6679e-06 1.06195e-06 2.718 ||| 0-1 ||| 47 374827 +del ||| rearing of ||| 0.0833333 0.130625 2.6679e-06 9.43954e-07 2.718 ||| 0-1 ||| 12 374827 +del ||| reason for the ||| 0.00348432 0.0435798 2.6679e-06 8.73982e-07 2.718 ||| 0-1 0-2 ||| 287 374827 +del ||| reason for ||| 0.00057241 0.0138653 2.6679e-06 2.51639e-06 2.718 ||| 0-1 ||| 1747 374827 +del ||| reasons of ||| 0.00173913 0.130625 2.6679e-06 2.9823e-05 2.718 ||| 0-1 ||| 575 374827 +del ||| receive attention from ||| 1 0.0911315 2.6679e-06 5.68586e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| receive imports from China ||| 1 0.0911315 2.6679e-06 6.40959e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| receive imports from ||| 1 0.0911315 2.6679e-06 2.43711e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| received by ||| 0.00364964 0.0461582 2.6679e-06 1.44881e-06 2.718 ||| 0-1 ||| 274 374827 +del ||| received from the ||| 0.0145985 0.082213 5.33579e-06 6.74459e-07 2.718 ||| 0-1 0-2 ||| 137 374827 +del ||| received from ||| 0.0078125 0.0911315 5.33579e-06 1.94192e-06 2.718 ||| 0-1 ||| 256 374827 +del ||| received is from the ||| 1 0.082213 2.6679e-06 2.11383e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| received the ||| 0.00533333 0.0732944 5.33579e-06 3.11195e-05 2.718 ||| 0-1 ||| 375 374827 +del ||| receiving from the ||| 0.0714286 0.082213 2.6679e-06 2.25071e-07 2.718 ||| 0-1 0-2 ||| 14 374827 +del ||| recently as the ||| 0.0833333 0.0732944 2.6679e-06 2.41002e-07 2.718 ||| 0-2 ||| 12 374827 +del ||| recently called on Turkish migrants in Germany ||| 1 0.0140673 2.6679e-06 9.60645e-27 2.718 ||| 0-2 ||| 1 374827 +del ||| recently called on Turkish migrants in ||| 1 0.0140673 2.6679e-06 3.70906e-22 2.718 ||| 0-2 ||| 1 374827 +del ||| recently called on Turkish migrants ||| 1 0.0140673 2.6679e-06 1.73284e-20 2.718 ||| 0-2 ||| 1 374827 +del ||| recently called on Turkish ||| 1 0.0140673 2.6679e-06 3.46568e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| recently called on ||| 1 0.0140673 2.6679e-06 1.15909e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| recipient of the ||| 0.0714286 0.10196 2.6679e-06 4.40548e-07 2.718 ||| 0-1 0-2 ||| 14 374827 +del ||| recipients of ||| 0.00813008 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-1 ||| 123 374827 +del ||| recognised by the UN ||| 0.166667 0.0461582 2.6679e-06 9.97627e-13 2.718 ||| 0-1 ||| 6 374827 +del ||| recognised by the ||| 0.0136054 0.0461582 5.33579e-06 2.39239e-08 2.718 ||| 0-1 ||| 147 374827 +del ||| recognised by ||| 0.00295858 0.0461582 2.6679e-06 3.89692e-07 2.718 ||| 0-1 ||| 338 374827 +del ||| recognition of ||| 0.000574713 0.130625 2.6679e-06 8.28909e-06 2.718 ||| 0-1 ||| 1740 374827 +del ||| recollection of ||| 0.111111 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-1 ||| 9 374827 +del ||| recommendation ||| 0.000251636 0.0005647 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 3974 374827 +del ||| reconstruction of the ||| 0.00699301 0.10196 2.6679e-06 5.12266e-07 2.718 ||| 0-1 0-2 ||| 143 374827 +del ||| record in the ||| 0.0555556 0.0458111 2.6679e-06 5.22615e-07 2.718 ||| 0-1 0-2 ||| 18 374827 +del ||| record of ||| 0.00462963 0.130625 2.6679e-06 1.64602e-05 2.718 ||| 0-1 ||| 216 374827 +del ||| recorded in the verbatim report of ||| 0.5 0.130625 2.6679e-06 5.97741e-18 2.718 ||| 0-5 ||| 2 374827 +del ||| records ||| 0.00158983 0.0025445 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 629 374827 +del ||| recourse to the ||| 0.00787402 0.0732944 2.6679e-06 3.76515e-07 2.718 ||| 0-2 ||| 127 374827 +del ||| recovery of ||| 0.00225734 0.130625 2.6679e-06 3.92331e-06 2.718 ||| 0-1 ||| 443 374827 +del ||| recycling sector ||| 0.166667 0.0250353 2.6679e-06 2.6856e-09 2.718 ||| 0-1 ||| 6 374827 +del ||| red ||| 0.0156919 0.0083901 2.93469e-05 2.1e-05 2.718 ||| 0-0 ||| 701 374827 +del ||| redressed ||| 0.0625 0.0465116 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 16 374827 +del ||| reduce the number of ||| 0.00480769 0.130625 2.6679e-06 3.41402e-10 2.718 ||| 0-3 ||| 208 374827 +del ||| reduces the ||| 0.00657895 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-1 ||| 152 374827 +del ||| reducing the number of ||| 0.00653595 0.0732944 2.6679e-06 2.48512e-10 2.718 ||| 0-1 ||| 153 374827 +del ||| reducing the number ||| 0.00613497 0.0732944 2.6679e-06 4.57126e-09 2.718 ||| 0-1 ||| 163 374827 +del ||| reducing the ||| 0.00108755 0.0732944 5.33579e-06 9.2386e-06 2.718 ||| 0-1 ||| 1839 374827 +del ||| reducing them from ||| 0.5 0.0911315 2.6679e-06 1.54642e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| reducing ||| 0.000128502 0.0002135 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 7782 374827 +del ||| reduction in exchange for ||| 0.125 0.0183279 2.6679e-06 2.3538e-13 2.718 ||| 0-1 ||| 8 374827 +del ||| reduction in exchange ||| 0.125 0.0183279 2.6679e-06 3.06257e-11 2.718 ||| 0-1 ||| 8 374827 +del ||| reduction in the ||| 0.0026455 0.0458111 5.33579e-06 3.84e-07 2.718 ||| 0-1 0-2 ||| 756 374827 +del ||| reduction in ||| 0.000454752 0.0183279 2.6679e-06 1.10562e-06 2.718 ||| 0-1 ||| 2199 374827 +del ||| reduction of ||| 0.000805153 0.130625 2.6679e-06 1.20944e-05 2.718 ||| 0-1 ||| 1242 374827 +del ||| reduction ||| 0.000252016 0.0007769 5.33579e-06 6.6e-06 2.718 ||| 0-0 ||| 7936 374827 +del ||| reductions ||| 0.00070373 0.0036364 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 1421 374827 +del ||| refer the ||| 0.00793651 0.0732944 2.6679e-06 2.71254e-05 2.718 ||| 0-1 ||| 126 374827 +del ||| reference to the ||| 0.00461255 0.0732944 1.33395e-05 2.63252e-06 2.718 ||| 0-2 ||| 1084 374827 +del ||| reference value of ||| 0.0625 0.130625 2.6679e-06 2.20925e-09 2.718 ||| 0-2 ||| 16 374827 +del ||| referendum debate ||| 1 0.0006431 2.6679e-06 5.1454e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| referendum ||| 0.000321543 0.0006431 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 3110 374827 +del ||| referred the ||| 0.04 0.0732944 2.6679e-06 3.32381e-05 2.718 ||| 0-1 ||| 25 374827 +del ||| referred to by ||| 0.00429185 0.0461582 2.6679e-06 1.37504e-07 2.718 ||| 0-2 ||| 233 374827 +del ||| referred to the ||| 0.00173611 0.0732944 2.6679e-06 2.95348e-06 2.718 ||| 0-2 ||| 576 374827 +del ||| referring to the ||| 0.00218341 0.0732944 2.6679e-06 1.33323e-06 2.718 ||| 0-2 ||| 458 374827 +del ||| refers to the ||| 0.00201613 0.0732944 2.6679e-06 5.9872e-07 2.718 ||| 0-2 ||| 496 374827 +del ||| reflect the ||| 0.002886 0.0732944 5.33579e-06 1.18782e-05 2.718 ||| 0-1 ||| 693 374827 +del ||| reflected in the ||| 0.00178571 0.0458111 2.6679e-06 1.8919e-07 2.718 ||| 0-1 0-2 ||| 560 374827 +del ||| reflection of ||| 0.00649351 0.130625 2.6679e-06 4.0413e-06 2.718 ||| 0-1 ||| 154 374827 +del ||| reflects the clear electoral will demonstrated ||| 0.5 0.0732944 2.6679e-06 2.00987e-21 2.718 ||| 0-1 ||| 2 374827 +del ||| reflects the clear electoral will ||| 0.5 0.0732944 2.6679e-06 7.44397e-17 2.718 ||| 0-1 ||| 2 374827 +del ||| reflects the clear electoral ||| 0.5 0.0732944 2.6679e-06 8.60455e-15 2.718 ||| 0-1 ||| 2 374827 +del ||| reflects the clear ||| 0.333333 0.0732944 2.6679e-06 1.41058e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| reflects the ||| 0.00446429 0.0732944 8.00369e-06 4.23725e-06 2.718 ||| 0-1 ||| 672 374827 +del ||| reform in ||| 0.00314465 0.0183279 2.6679e-06 1.10562e-06 2.718 ||| 0-1 ||| 318 374827 +del ||| reform of the ||| 0.00036483 0.10196 2.6679e-06 4.20058e-06 2.718 ||| 0-1 0-2 ||| 2741 374827 +del ||| reform ||| 5.40103e-05 7.82e-05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 18515 374827 +del ||| reforming the arrangements for European Union spending ||| 1 0.0732944 2.6679e-06 8.33491e-24 2.718 ||| 0-1 ||| 1 374827 +del ||| reforming the arrangements for European Union ||| 1 0.0732944 2.6679e-06 3.93156e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| reforming the arrangements for European ||| 1 0.0732944 2.6679e-06 7.0534e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| reforming the arrangements for ||| 1 0.0732944 2.6679e-06 2.10933e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| reforming the arrangements ||| 1 0.0732944 2.6679e-06 2.74449e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| reforming the ||| 0.00350877 0.0732944 5.33579e-06 6.25168e-07 2.718 ||| 0-1 ||| 570 374827 +del ||| reforms promoted by the Aznar ||| 1 0.0461582 2.6679e-06 6.09315e-19 2.718 ||| 0-2 ||| 1 374827 +del ||| reforms promoted by the ||| 0.333333 0.0461582 2.6679e-06 3.38508e-13 2.718 ||| 0-2 ||| 3 374827 +del ||| reforms promoted by ||| 0.333333 0.0461582 2.6679e-06 5.5139e-12 2.718 ||| 0-2 ||| 3 374827 +del ||| refrain from ||| 0.0025974 0.0911315 2.6679e-06 1.32207e-07 2.718 ||| 0-1 ||| 385 374827 +del ||| refugee but ||| 1 0.0171548 2.6679e-06 3.68353e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| refugee ||| 0.00228833 0.0171548 5.33579e-06 5.39e-05 2.718 ||| 0-0 ||| 874 374827 +del ||| refugees , in ||| 0.125 0.0183279 2.6679e-06 3.60177e-08 2.718 ||| 0-2 ||| 8 374827 +del ||| refuses to ||| 0.00308642 0.0006066 2.6679e-06 3.85845e-09 2.718 ||| 0-1 ||| 324 374827 +del ||| regard for the ||| 0.00819672 0.0435798 2.6679e-06 2.54423e-06 2.718 ||| 0-1 0-2 ||| 122 374827 +del ||| regard for ||| 0.00746269 0.0138653 5.33579e-06 7.32539e-06 2.718 ||| 0-1 ||| 268 374827 +del ||| regard from the ||| 0.333333 0.082213 2.6679e-06 5.12544e-06 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| regard the ||| 0.00392157 0.0732944 2.6679e-06 0.000236487 2.718 ||| 0-1 ||| 255 374827 +del ||| regard to the question of extending the ||| 1 0.0732944 2.6679e-06 1.18944e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| regard to the question of extending ||| 1 0.0732944 2.6679e-06 1.93746e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| regard to the question of ||| 0.0263158 0.0732944 2.6679e-06 9.45104e-10 2.718 ||| 0-2 ||| 38 374827 +del ||| regard to the question ||| 0.0175439 0.0732944 2.6679e-06 1.73847e-08 2.718 ||| 0-2 ||| 57 374827 +del ||| regard to the ||| 0.0024687 0.0732944 3.73506e-05 2.10138e-05 2.718 ||| 0-2 ||| 5671 374827 +del ||| regarded by ||| 0.0243902 0.0461582 2.6679e-06 9.07126e-07 2.718 ||| 0-1 ||| 41 374827 +del ||| regarding the ||| 0.00506696 0.0378354 7.47011e-05 2.14294e-05 2.718 ||| 0-0 0-1 ||| 5526 374827 +del ||| regarding ||| 0.00119818 0.0023765 4.00185e-05 6.17e-05 2.718 ||| 0-0 ||| 12519 374827 +del ||| regardless of the ||| 0.00197628 0.10196 2.6679e-06 1.47532e-06 2.718 ||| 0-1 0-2 ||| 506 374827 +del ||| regards the fee ||| 0.5 0.0732944 2.6679e-06 3.30645e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| regards the undoubtably ||| 1 0.0732944 2.6679e-06 1.94497e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| regards the ||| 0.00564035 0.0732944 4.53543e-05 4.86242e-05 2.718 ||| 0-1 ||| 3014 374827 +del ||| regime of ||| 0.015625 0.130625 5.33579e-06 8.28909e-06 2.718 ||| 0-1 ||| 128 374827 +del ||| region in the ||| 0.011236 0.0458111 2.6679e-06 9.16917e-07 2.718 ||| 0-1 0-2 ||| 89 374827 +del ||| region not considered by the rapporteur ||| 1 0.0597263 2.6679e-06 1.46029e-17 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| region not considered by the ||| 1 0.0597263 2.6679e-06 2.01976e-13 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| region of the ||| 0.00531915 0.10196 2.6679e-06 1.00302e-05 2.718 ||| 0-1 0-2 ||| 188 374827 +del ||| region of ||| 0.0035524 0.130625 5.33579e-06 2.88791e-05 2.718 ||| 0-1 ||| 563 374827 +del ||| regional development ||| 0.00107759 0.000439 2.6679e-06 5.4635e-10 2.718 ||| 0-1 ||| 928 374827 +del ||| regional ||| 8.78272e-05 0.0003306 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 11386 374827 +del ||| regionalising the ||| 0.333333 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| regions in the ||| 0.00649351 0.0458111 2.6679e-06 7.71747e-07 2.718 ||| 0-1 0-2 ||| 154 374827 +del ||| regions of ||| 0.00149477 0.130625 2.6679e-06 2.43068e-05 2.718 ||| 0-1 ||| 669 374827 +del ||| registrar ||| 0.0833333 0.0714286 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 12 374827 +del ||| registration of ||| 0.0047619 0.130625 2.6679e-06 1.47493e-06 2.718 ||| 0-1 ||| 210 374827 +del ||| registration ||| 0.00144823 0.0154525 5.33579e-06 2.76e-05 2.718 ||| 0-0 ||| 1381 374827 +del ||| regulated by ||| 0.00487805 0.0461582 2.6679e-06 1.63315e-07 2.718 ||| 0-1 ||| 205 374827 +del ||| regulation of the market in ||| 0.25 0.0183279 2.6679e-06 1.41974e-12 2.718 ||| 0-4 ||| 4 374827 +del ||| regulation of the ||| 0.00371747 0.130625 5.33579e-06 1.26406e-06 2.718 ||| 0-1 ||| 538 374827 +del ||| regulation of ||| 0.00136426 0.130625 2.6679e-06 2.059e-05 2.718 ||| 0-1 ||| 733 374827 +del ||| regulation the ||| 0.0625 0.0732944 2.6679e-06 2.42426e-05 2.718 ||| 0-1 ||| 16 374827 +del ||| regulation ||| 5.10152e-05 0.0002507 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 19602 374827 +del ||| regulations , rules for refugees , in ||| 1 0.0183279 2.6679e-06 1.68402e-19 2.718 ||| 0-6 ||| 1 374827 +del ||| regulations in ||| 0.00471698 0.0183279 2.6679e-06 1.18382e-06 2.718 ||| 0-1 ||| 212 374827 +del ||| regulatory ||| 0.000273149 0.0013 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 3661 374827 +del ||| reinstated ||| 0.0078125 0.0121951 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 128 374827 +del ||| reintroduction of ||| 0.00934579 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-1 ||| 107 374827 +del ||| rejection of ||| 0.00147059 0.130625 2.6679e-06 2.53688e-06 2.718 ||| 0-1 ||| 680 374827 +del ||| relate to the ||| 0.00285714 0.0732944 2.6679e-06 7.65374e-07 2.718 ||| 0-2 ||| 350 374827 +del ||| related to the ||| 0.00120627 0.0732944 2.6679e-06 2.02145e-06 2.718 ||| 0-2 ||| 829 374827 +del ||| relating to aircraft ||| 0.5 0.0022557 2.6679e-06 2.9532e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| relating to the . ||| 1 0.0732944 2.6679e-06 1.06287e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| relating to the ||| 0.00379834 0.0732944 2.93469e-05 3.50899e-06 2.718 ||| 0-2 ||| 2896 374827 +del ||| relating to ||| 0.00144908 0.0022557 2.93469e-05 2.568e-06 2.718 ||| 0-0 ||| 7591 374827 +del ||| relating ||| 0.00326028 0.0022557 4.80222e-05 2.89e-05 2.718 ||| 0-0 ||| 5521 374827 +del ||| relation of the ||| 0.333333 0.10196 2.6679e-06 2.49268e-05 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| relation to the ||| 0.00232713 0.0732944 1.86753e-05 7.50869e-06 2.718 ||| 0-2 ||| 3008 374827 +del ||| relations between the ||| 0.000764526 0.0732944 2.6679e-06 4.97507e-09 2.718 ||| 0-2 ||| 1308 374827 +del ||| relations of social ||| 1 0.130625 2.6679e-06 1.65463e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| relations of ||| 0.0222222 0.130625 2.6679e-06 1.60177e-05 2.718 ||| 0-1 ||| 45 374827 +del ||| relaxation of ||| 0.016129 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-1 ||| 62 374827 +del ||| release of ||| 0.00155039 0.130625 2.6679e-06 6.69617e-06 2.718 ||| 0-1 ||| 645 374827 +del ||| relevant ||| 0.000461326 0.0009625 8.00369e-06 7.9e-06 2.718 ||| 0-0 ||| 6503 374827 +del ||| reliance of ||| 0.5 0.130625 2.6679e-06 1.06195e-06 2.718 ||| 0-1 ||| 2 374827 +del ||| reliant on the ||| 0.142857 0.0436809 2.6679e-06 9.87827e-09 2.718 ||| 0-1 0-2 ||| 7 374827 +del ||| rely on ||| 0.0011919 0.0140673 2.6679e-06 1.94189e-07 2.718 ||| 0-1 ||| 839 374827 +del ||| remain with the ||| 0.0416667 0.0732944 2.6679e-06 2.69396e-07 2.718 ||| 0-2 ||| 24 374827 +del ||| remaining in the ||| 0.05 0.0458111 2.6679e-06 3.06264e-07 2.718 ||| 0-1 0-2 ||| 20 374827 +del ||| remains of the ||| 0.0192308 0.10196 2.6679e-06 9.13882e-06 2.718 ||| 0-1 0-2 ||| 52 374827 +del ||| reminders ||| 0.0196078 0.0138889 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 51 374827 +del ||| reminiscent of a ||| 0.0833333 0.130625 2.6679e-06 3.26887e-08 2.718 ||| 0-1 ||| 12 374827 +del ||| reminiscent of ||| 0.0138889 0.130625 2.6679e-06 7.37464e-07 2.718 ||| 0-1 ||| 72 374827 +del ||| remit of the planned ||| 0.5 0.10196 2.6679e-06 5.81647e-11 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| remit of the ||| 0.00729927 0.10196 2.6679e-06 1.70072e-06 2.718 ||| 0-1 0-2 ||| 137 374827 +del ||| removed from the ||| 0.0328638 0.082213 1.86753e-05 3.40993e-07 2.718 ||| 0-1 0-2 ||| 213 374827 +del ||| removed from ||| 0.00664452 0.0911315 5.33579e-06 9.81796e-07 2.718 ||| 0-1 ||| 301 374827 +del ||| repeatedly by the ||| 0.0833333 0.0597263 2.6679e-06 1.01088e-07 2.718 ||| 0-1 0-2 ||| 12 374827 +del ||| repercussions of what is ||| 1 0.130625 2.6679e-06 6.48595e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| repercussions of what ||| 1 0.130625 2.6679e-06 2.06947e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| repercussions of ||| 0.00934579 0.130625 2.6679e-06 1.47493e-06 2.718 ||| 0-1 ||| 107 374827 +del ||| replaced , root and branch , ||| 0.5 0.0022247 2.6679e-06 5.79509e-20 2.718 ||| 0-2 ||| 2 374827 +del ||| replaced , root and branch ||| 0.5 0.0022247 2.6679e-06 4.85942e-19 2.718 ||| 0-2 ||| 2 374827 +del ||| replaced , root and ||| 0.5 0.0022247 2.6679e-06 7.14621e-14 2.718 ||| 0-2 ||| 2 374827 +del ||| replaced , root ||| 0.5 0.0022247 2.6679e-06 5.70514e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| replaced by ||| 0.00161031 0.0461582 2.6679e-06 2.97524e-07 2.718 ||| 0-1 ||| 621 374827 +del ||| report 's ||| 0.00806452 0.169811 2.6679e-06 1.64702e-05 2.718 ||| 0-1 ||| 124 374827 +del ||| report , the report of the employment ||| 1 0.0732944 2.6679e-06 1.13576e-15 2.718 ||| 0-2 ||| 1 374827 +del ||| report , the report of the ||| 1 0.0732944 2.6679e-06 2.32262e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| report , the report of ||| 1 0.0732944 2.6679e-06 3.78327e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| report , the report ||| 1 0.0732944 2.6679e-06 6.95914e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| report , the ||| 0.00247525 0.0732944 2.6679e-06 1.69777e-05 2.718 ||| 0-2 ||| 404 374827 +del ||| report are ||| 0.00374532 2.93e-05 2.6679e-06 5.91735e-08 2.718 ||| 0-0 ||| 267 374827 +del ||| report by the ||| 0.0016129 0.0597263 2.6679e-06 2.30201e-06 2.718 ||| 0-1 0-2 ||| 620 374827 +del ||| report by ||| 0.00226706 0.0461582 2.6679e-05 6.628e-06 2.718 ||| 0-1 ||| 4411 374827 +del ||| report of the ||| 0.00207039 0.10196 2.6679e-06 4.19955e-05 2.718 ||| 0-1 0-2 ||| 483 374827 +del ||| report of ||| 0.00138889 0.130625 2.6679e-06 0.000120915 2.718 ||| 0-1 ||| 720 374827 +del ||| report on the ||| 0.000351247 0.0436809 2.6679e-06 1.39624e-06 2.718 ||| 0-1 0-2 ||| 2847 374827 +del ||| report ||| 1.7968e-05 2.93e-05 5.33579e-06 3.9e-06 2.718 ||| 0-0 ||| 111309 374827 +del ||| reporting on ||| 0.010101 0.0140673 2.6679e-06 1.27498e-07 2.718 ||| 0-1 ||| 99 374827 +del ||| reports of the ||| 0.0108696 0.10196 2.6679e-06 5.09192e-06 2.718 ||| 0-1 0-2 ||| 92 374827 +del ||| represent the ||| 0.00164204 0.0732944 2.6679e-06 1.77478e-05 2.718 ||| 0-1 ||| 609 374827 +del ||| representative of a ||| 0.0078125 0.130625 2.6679e-06 3.05966e-07 2.718 ||| 0-1 ||| 128 374827 +del ||| representative of the ||| 0.00237812 0.10196 5.33579e-06 2.3974e-06 2.718 ||| 0-1 0-2 ||| 841 374827 +del ||| representative of ||| 0.00216216 0.130625 5.33579e-06 6.90266e-06 2.718 ||| 0-1 ||| 925 374827 +del ||| representatives from ||| 0.00330033 0.0911315 2.6679e-06 7.02212e-07 2.718 ||| 0-1 ||| 303 374827 +del ||| representatives of the ||| 0.000516529 0.10196 2.6679e-06 3.31948e-06 2.718 ||| 0-1 0-2 ||| 1936 374827 +del ||| representatives of ||| 0.000810045 0.130625 5.33579e-06 9.55753e-06 2.718 ||| 0-1 ||| 2469 374827 +del ||| representatives should benefit from the same level ||| 1 0.0911315 2.6679e-06 1.73169e-20 2.718 ||| 0-3 ||| 1 374827 +del ||| representatives should benefit from the same ||| 1 0.0911315 2.6679e-06 2.02442e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| representatives should benefit from the ||| 1 0.0911315 2.6679e-06 2.51574e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| representatives should benefit from ||| 1 0.0911315 2.6679e-06 4.09785e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| represented by the ||| 0.00826446 0.0597263 5.33579e-06 1.98246e-07 2.718 ||| 0-1 0-2 ||| 242 374827 +del ||| represented by ||| 0.00165837 0.0461582 2.6679e-06 5.70794e-07 2.718 ||| 0-1 ||| 603 374827 +del ||| represented on the ||| 0.0212766 0.0436809 2.6679e-06 1.20242e-07 2.718 ||| 0-1 0-2 ||| 47 374827 +del ||| represented per ||| 0.5 0.0098877 2.6679e-06 2.73575e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| representing the ||| 0.00628931 0.0732944 8.00369e-06 3.75101e-06 2.718 ||| 0-1 ||| 477 374827 +del ||| reputation of the ||| 0.0140845 0.10196 2.6679e-06 6.65945e-07 2.718 ||| 0-1 0-2 ||| 71 374827 +del ||| request of the ||| 0.00341297 0.10196 2.6679e-06 7.85815e-06 2.718 ||| 0-1 0-2 ||| 293 374827 +del ||| request of ||| 0.00310559 0.130625 2.6679e-06 2.26254e-05 2.718 ||| 0-1 ||| 322 374827 +del ||| requested by the ||| 0.0045045 0.0732944 2.6679e-06 3.2822e-08 2.718 ||| 0-2 ||| 222 374827 +del ||| requested by ||| 0.00524934 0.0461582 5.33579e-06 2.91056e-07 2.718 ||| 0-1 ||| 381 374827 +del ||| required by the ||| 0.00452489 0.0597263 2.6679e-06 8.91263e-07 2.718 ||| 0-1 0-2 ||| 221 374827 +del ||| required for the ||| 0.01 0.0435798 2.6679e-06 5.92992e-07 2.718 ||| 0-1 0-2 ||| 100 374827 +del ||| required in the ||| 0.0138889 0.0458111 2.6679e-06 1.48636e-06 2.718 ||| 0-1 0-2 ||| 72 374827 +del ||| required of them if they are to ||| 0.333333 0.130625 2.6679e-06 4.61753e-16 2.718 ||| 0-1 ||| 3 374827 +del ||| required of them if they are ||| 0.333333 0.130625 2.6679e-06 5.19652e-15 2.718 ||| 0-1 ||| 3 374827 +del ||| required of them if they ||| 0.333333 0.130625 2.6679e-06 3.42491e-13 2.718 ||| 0-1 ||| 3 374827 +del ||| required of them if ||| 0.333333 0.130625 2.6679e-06 1.0493e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| required of them ||| 0.0322581 0.130625 2.6679e-06 1.25574e-07 2.718 ||| 0-1 ||| 31 374827 +del ||| required of ||| 0.010929 0.130625 5.33579e-06 4.68142e-05 2.718 ||| 0-1 ||| 183 374827 +del ||| requirement of the ||| 0.04 0.10196 2.6679e-06 4.31328e-06 2.718 ||| 0-1 0-2 ||| 25 374827 +del ||| requirements set out in the ||| 0.1 0.0458111 2.6679e-06 1.01892e-12 2.718 ||| 0-3 0-4 ||| 10 374827 +del ||| researcher ’ s , ||| 1 0.16804 2.6679e-06 8.70463e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| researcher ’ s ||| 1 0.16804 2.6679e-06 7.29919e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| resemble a victory statement of ||| 1 0.130625 2.6679e-06 1.41248e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| resemble the ||| 0.1 0.0732944 2.6679e-06 8.6829e-07 2.718 ||| 0-1 ||| 10 374827 +del ||| reserved for the ||| 0.0172414 0.0435798 2.6679e-06 2.42877e-08 2.718 ||| 0-1 0-2 ||| 58 374827 +del ||| resolution of the ||| 0.00253165 0.10196 2.6679e-06 8.9544e-06 2.718 ||| 0-1 0-2 ||| 395 374827 +del ||| resolution of ||| 0.00138313 0.130625 2.6679e-06 2.57817e-05 2.718 ||| 0-1 ||| 723 374827 +del ||| resolve of the ||| 0.0588235 0.10196 2.6679e-06 2.65354e-06 2.718 ||| 0-1 0-2 ||| 17 374827 +del ||| resolving the ||| 0.00180505 0.0732944 2.6679e-06 2.98692e-06 2.718 ||| 0-1 ||| 554 374827 +del ||| resources in the ||| 0.0123457 0.0458111 2.6679e-06 6.70595e-07 2.718 ||| 0-1 0-2 ||| 81 374827 +del ||| respect Parliament 's ||| 0.2 0.169811 2.6679e-06 9.97742e-09 2.718 ||| 0-2 ||| 5 374827 +del ||| respect for the ||| 0.00162602 0.0435798 1.06716e-05 1.61644e-06 2.718 ||| 0-1 0-2 ||| 2460 374827 +del ||| respect of the implementation of ||| 0.02 0.130625 2.6679e-06 3.30925e-11 2.718 ||| 0-4 ||| 50 374827 +del ||| respect of the ||| 0.0037843 0.10196 1.06716e-05 4.43212e-05 2.718 ||| 0-1 0-2 ||| 1057 374827 +del ||| respect of ||| 0.00438757 0.130625 3.20148e-05 0.000127611 2.718 ||| 0-1 ||| 2735 374827 +del ||| respecting the ||| 0.00337268 0.0732944 5.33579e-06 3.26477e-06 2.718 ||| 0-1 ||| 593 374827 +del ||| respective competence of ||| 1 0.130625 2.6679e-06 2.27493e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| respective sports ||| 0.5 0.0321691 2.6679e-06 1.472e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| response to the ||| 0.000921659 0.0732944 2.6679e-06 3.08619e-06 2.718 ||| 0-2 ||| 1085 374827 +del ||| responsibility for the ||| 0.00107411 0.0435798 2.6679e-06 4.31573e-07 2.718 ||| 0-1 0-2 ||| 931 374827 +del ||| responsibility for ||| 0.000270563 0.0138653 2.6679e-06 1.2426e-06 2.718 ||| 0-1 ||| 3696 374827 +del ||| responsibility here in ||| 0.333333 0.0183279 2.6679e-06 6.31582e-09 2.718 ||| 0-2 ||| 3 374827 +del ||| responsibility of the ||| 0.00115875 0.10196 2.6679e-06 1.18333e-05 2.718 ||| 0-1 0-2 ||| 863 374827 +del ||| responsibility of ||| 0.00129116 0.130625 5.33579e-06 3.40708e-05 2.718 ||| 0-1 ||| 1549 374827 +del ||| responsible for any ||| 0.0434783 0.0138653 2.6679e-06 2.40616e-09 2.718 ||| 0-1 ||| 23 374827 +del ||| responsible for pumping ||| 1 0.0138653 2.6679e-06 1.11382e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| responsible for the welfare ||| 0.25 0.0732944 2.6679e-06 5.25083e-12 2.718 ||| 0-2 ||| 4 374827 +del ||| responsible for the ||| 0.00416378 0.0435798 1.60074e-05 5.52638e-07 2.718 ||| 0-1 0-2 ||| 1441 374827 +del ||| responsible for ||| 0.000994036 0.0138653 1.60074e-05 1.59117e-06 2.718 ||| 0-1 ||| 6036 374827 +del ||| responsible ||| 0.000376294 0.0005551 1.06716e-05 7.9e-06 2.718 ||| 0-0 ||| 10630 374827 +del ||| rest of the ||| 0.00255428 0.10196 1.06716e-05 7.74546e-06 2.718 ||| 0-1 0-2 ||| 1566 374827 +del ||| rest of ||| 0.000834725 0.130625 2.6679e-06 2.23009e-05 2.718 ||| 0-1 ||| 1198 374827 +del ||| restoring ||| 0.00148368 0.0286783 2.6679e-06 3.02e-05 2.718 ||| 0-0 ||| 674 374827 +del ||| restrict the ||| 0.0028169 0.0732944 2.6679e-06 4.37618e-06 2.718 ||| 0-1 ||| 355 374827 +del ||| restrictions on ||| 0.00115207 0.0140673 2.6679e-06 1.87323e-07 2.718 ||| 0-1 ||| 868 374827 +del ||| result for ||| 0.0204082 0.0138653 2.6679e-06 5.6643e-06 2.718 ||| 0-1 ||| 49 374827 +del ||| result from the ||| 0.00917431 0.082213 2.6679e-06 3.9632e-06 2.718 ||| 0-1 0-2 ||| 109 374827 +del ||| result from ||| 0.00285714 0.0911315 2.6679e-06 1.14109e-05 2.718 ||| 0-1 ||| 350 374827 +del ||| result in the ||| 0.00408163 0.0458111 2.6679e-06 4.93112e-06 2.718 ||| 0-1 0-2 ||| 245 374827 +del ||| result in ||| 0.000537924 0.0183279 2.6679e-06 1.41978e-05 2.718 ||| 0-1 ||| 1859 374827 +del ||| result of cigarette ||| 1 0.130625 2.6679e-06 3.41682e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| result of giving ||| 1 0.130625 2.6679e-06 2.44768e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| result of his or her beliefs ||| 1 0.130625 2.6679e-06 3.62971e-20 2.718 ||| 0-1 ||| 1 374827 +del ||| result of his or her ||| 1 0.130625 2.6679e-06 1.45189e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| result of his or ||| 1 0.130625 2.6679e-06 5.33585e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| result of his ||| 0.0454545 0.130625 2.6679e-06 4.66706e-08 2.718 ||| 0-1 ||| 22 374827 +del ||| result of the ||| 0.00421941 0.10196 2.13432e-05 5.39416e-05 2.718 ||| 0-1 0-2 ||| 1896 374827 +del ||| result of ||| 0.00495231 0.130625 7.20332e-05 0.00015531 2.718 ||| 0-1 ||| 5452 374827 +del ||| result on ||| 0.037037 0.0140673 2.6679e-06 5.16365e-06 2.718 ||| 0-1 ||| 27 374827 +del ||| resulting from the ||| 0.00858369 0.082213 1.06716e-05 3.40993e-07 2.718 ||| 0-1 0-2 ||| 466 374827 +del ||| resulting from ||| 0.00101626 0.0911315 2.6679e-06 9.81796e-07 2.718 ||| 0-1 ||| 984 374827 +del ||| results for ||| 0.0128205 0.0138653 2.6679e-06 8.327e-07 2.718 ||| 0-1 ||| 78 374827 +del ||| results from work in the Councils . ||| 1 0.0911315 2.6679e-06 1.35248e-20 2.718 ||| 0-1 ||| 1 374827 +del ||| results from work in the Councils ||| 1 0.0911315 2.6679e-06 4.46512e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| results from work in the ||| 1 0.0911315 2.6679e-06 1.39535e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| results from work in ||| 1 0.0911315 2.6679e-06 2.27286e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| results from work ||| 1 0.0911315 2.6679e-06 1.06186e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| results from ||| 0.00738007 0.0911315 5.33579e-06 1.67751e-06 2.718 ||| 0-1 ||| 271 374827 +del ||| results of the ||| 0.000766871 0.10196 2.6679e-06 7.92987e-06 2.718 ||| 0-1 0-2 ||| 1304 374827 +del ||| results of ||| 0.000424628 0.130625 2.6679e-06 2.28319e-05 2.718 ||| 0-1 ||| 2355 374827 +del ||| resumption of ||| 0.00403226 0.130625 2.6679e-06 4.1298e-07 2.718 ||| 0-1 ||| 248 374827 +del ||| resumption ||| 0.00176991 0.0017986 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 565 374827 +del ||| return of ||| 0.0019305 0.130625 2.6679e-06 1.9646e-05 2.718 ||| 0-1 ||| 518 374827 +del ||| return on the ||| 0.0416667 0.0436809 2.6679e-06 2.2686e-07 2.718 ||| 0-1 0-2 ||| 24 374827 +del ||| review issues of protection of ||| 1 0.130625 2.6679e-06 1.54742e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| review of the ||| 0.000911577 0.10196 2.6679e-06 3.87273e-06 2.718 ||| 0-1 0-2 ||| 1097 374827 +del ||| review of ||| 0.000799361 0.130625 2.6679e-06 1.11505e-05 2.718 ||| 0-1 ||| 1251 374827 +del ||| revision of ||| 0.000865052 0.130625 2.6679e-06 3.39233e-06 2.718 ||| 0-1 ||| 1156 374827 +del ||| reward for ||| 0.0208333 0.0138653 2.6679e-06 4.30336e-08 2.718 ||| 0-1 ||| 48 374827 +del ||| rice ||| 0.00277778 0.0933063 2.6679e-06 6.04e-05 2.718 ||| 0-0 ||| 360 374827 +del ||| rid of ||| 0.00621118 0.130625 2.6679e-06 6.90266e-06 2.718 ||| 0-1 ||| 161 374827 +del ||| rid the ||| 0.0416667 0.0732944 2.6679e-06 8.12719e-06 2.718 ||| 0-1 ||| 24 374827 +del ||| right behind ||| 0.0344828 0.0073296 2.6679e-06 5.67512e-08 2.718 ||| 0-1 ||| 29 374827 +del ||| right for ||| 0.00285714 0.0138653 2.6679e-06 6.93809e-06 2.718 ||| 0-1 ||| 350 374827 +del ||| right of the ||| 0.00406504 0.10196 2.6679e-06 6.6072e-05 2.718 ||| 0-1 0-2 ||| 246 374827 +del ||| right of ||| 0.000321647 0.130625 2.6679e-06 0.000190236 2.718 ||| 0-1 ||| 3109 374827 +del ||| right to bring action under Title ||| 0.2 0.113065 2.6679e-06 1.14353e-19 2.718 ||| 0-5 ||| 5 374827 +del ||| rights of the ||| 0.00112613 0.10196 2.6679e-06 2.05009e-05 2.718 ||| 0-1 0-2 ||| 888 374827 +del ||| rights of ||| 0.000245278 0.130625 2.6679e-06 5.90266e-05 2.718 ||| 0-1 ||| 4077 374827 +del ||| rights that the ||| 0.111111 0.0732944 2.6679e-06 1.16907e-06 2.718 ||| 0-2 ||| 9 374827 +del ||| rim ||| 0.0769231 0.103448 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 13 374827 +del ||| rise of the car ||| 0.25 0.10196 2.6679e-06 2.45781e-10 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| rise of the ||| 0.0434783 0.10196 2.6679e-06 1.28681e-05 2.718 ||| 0-1 0-2 ||| 23 374827 +del ||| rise of ||| 0.00649351 0.130625 2.6679e-06 3.70502e-05 2.718 ||| 0-1 ||| 154 374827 +del ||| rise to strong ||| 0.333333 0.0002194 2.6679e-06 9.80728e-12 2.718 ||| 0-0 ||| 3 374827 +del ||| rise to ||| 0.00077101 0.0002194 2.6679e-06 1.15516e-07 2.718 ||| 0-0 ||| 1297 374827 +del ||| rise ||| 0.000320821 0.0002194 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 3117 374827 +del ||| rises in the ||| 0.0625 0.0458111 2.6679e-06 2.7161e-08 2.718 ||| 0-1 0-2 ||| 16 374827 +del ||| rises to ||| 0.0588235 0.030445 2.6679e-06 1.51948e-06 2.718 ||| 0-0 ||| 17 374827 +del ||| rises ||| 0.00278552 0.030445 2.6679e-06 1.71e-05 2.718 ||| 0-0 ||| 359 374827 +del ||| rising as a consequence ||| 1 0.0452156 2.6679e-06 1.80425e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| rising as a ||| 0.5 0.0452156 2.6679e-06 5.1112e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| rising as ||| 0.25 0.0452156 2.6679e-06 1.1531e-06 2.718 ||| 0-0 ||| 4 374827 +del ||| rising ||| 0.00416667 0.0452156 1.86753e-05 0.000113 2.718 ||| 0-0 ||| 1680 374827 +del ||| risk of causing job ||| 1 0.130625 2.6679e-06 7.95169e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| risk of causing ||| 0.166667 0.130625 2.6679e-06 1.01814e-09 2.718 ||| 0-1 ||| 6 374827 +del ||| risk of ||| 0.000751691 0.130625 8.00369e-06 3.45133e-05 2.718 ||| 0-1 ||| 3991 374827 +del ||| river ||| 0.00457666 0.0360531 5.33579e-06 2.5e-05 2.718 ||| 0-0 ||| 437 374827 +del ||| road haulage ||| 0.010101 0.158333 2.6679e-06 6.68108e-09 2.718 ||| 0-1 ||| 99 374827 +del ||| road in the ||| 0.125 0.0458111 2.6679e-06 8.35434e-07 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| road of the ||| 0.25 0.10196 2.6679e-06 9.13882e-06 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| road ||| 0.00154679 0.0178052 2.13432e-05 0.0002732 2.718 ||| 0-0 ||| 5172 374827 +del ||| role in ||| 0.000650618 0.0183279 2.6679e-06 5.98654e-06 2.718 ||| 0-1 ||| 1537 374827 +del ||| role of the ||| 0.00197922 0.10196 1.06716e-05 2.27446e-05 2.718 ||| 0-1 0-2 ||| 2021 374827 +del ||| role of ||| 0.00196464 0.130625 2.13432e-05 6.54868e-05 2.718 ||| 0-1 ||| 4072 374827 +del ||| roles of the ||| 0.0227273 0.130625 2.6679e-06 5.25181e-08 2.718 ||| 0-1 ||| 44 374827 +del ||| roles of ||| 0.0107527 0.130625 2.6679e-06 8.55458e-07 2.718 ||| 0-1 ||| 93 374827 +del ||| room for ||| 0.00156986 0.0138653 5.33579e-06 4.02364e-07 2.718 ||| 0-1 ||| 1274 374827 +del ||| room of the ||| 1 0.10196 2.6679e-06 3.83175e-06 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| root and branch , ||| 0.333333 0.0022247 2.6679e-06 2.64099e-14 2.718 ||| 0-0 ||| 3 374827 +del ||| root and branch ||| 0.0588235 0.0022247 2.6679e-06 2.21458e-13 2.718 ||| 0-0 ||| 17 374827 +del ||| root and ||| 0.0454545 0.0022247 2.6679e-06 3.25673e-08 2.718 ||| 0-0 ||| 22 374827 +del ||| root ||| 0.00170648 0.0022247 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 586 374827 +del ||| rooted in the ||| 0.0125 0.0458111 2.6679e-06 5.71317e-08 2.718 ||| 0-1 0-2 ||| 80 374827 +del ||| roughshod over the ||| 0.0384615 0.0732944 2.6679e-06 6.02037e-10 2.718 ||| 0-2 ||| 26 374827 +del ||| round the ||| 0.019802 0.0732944 5.33579e-06 2.66391e-05 2.718 ||| 0-1 ||| 101 374827 +del ||| round ||| 0.000409836 0.0003307 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 2440 374827 +del ||| route of an ||| 1 0.130625 2.6679e-06 3.54003e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| route of ||| 0.0144928 0.130625 2.6679e-06 7.96461e-06 2.718 ||| 0-1 ||| 69 374827 +del ||| rule of ||| 0.000490437 0.130625 5.33579e-06 2.39823e-05 2.718 ||| 0-1 ||| 4078 374827 +del ||| rule the ||| 0.0263158 0.0732944 2.6679e-06 2.82368e-05 2.718 ||| 0-1 ||| 38 374827 +del ||| rule to the Cohesion Fund ||| 0.5 0.0314359 2.6679e-06 3.34092e-16 2.718 ||| 0-3 ||| 2 374827 +del ||| rule to the Cohesion ||| 1 0.0314359 2.6679e-06 2.15543e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| rule ||| 0.00013403 0.0009121 2.6679e-06 9.2e-06 2.718 ||| 0-0 ||| 7461 374827 +del ||| ruled by ||| 0.00917431 0.0461582 2.6679e-06 1.97272e-07 2.718 ||| 0-1 ||| 109 374827 +del ||| rules for refugees , in ||| 1 0.0183279 2.6679e-06 3.21667e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| rules of the ||| 0.00160256 0.10196 2.6679e-06 1.19051e-05 2.718 ||| 0-1 0-2 ||| 624 374827 +del ||| rules of ||| 0.000744048 0.130625 2.6679e-06 3.42773e-05 2.718 ||| 0-1 ||| 1344 374827 +del ||| ruling ||| 0.00247525 0.0243205 8.00369e-06 4.47e-05 2.718 ||| 0-0 ||| 1212 374827 +del ||| run by the ||| 0.0181818 0.0597263 2.6679e-06 5.96422e-07 2.718 ||| 0-1 0-2 ||| 55 374827 +del ||| run by ||| 0.00473934 0.0461582 2.6679e-06 1.71723e-06 2.718 ||| 0-1 ||| 211 374827 +del ||| run from ||| 0.0238095 0.0911315 2.6679e-06 2.30169e-06 2.718 ||| 0-1 ||| 42 374827 +del ||| run with ||| 0.0769231 0.0045281 2.6679e-06 2.0212e-07 2.718 ||| 0-1 ||| 13 374827 +del ||| running at ||| 0.0344828 0.0009505 2.6679e-06 6.3518e-10 2.718 ||| 0-0 0-1 ||| 29 374827 +del ||| running from ||| 0.0344828 0.0460071 2.6679e-06 5.63503e-08 2.718 ||| 0-0 0-1 ||| 29 374827 +del ||| runs counter to the ||| 0.00763359 0.0732944 2.6679e-06 1.30607e-11 2.718 ||| 0-3 ||| 131 374827 +del ||| runs the risk of ||| 0.0123457 0.0732944 2.6679e-06 5.08101e-11 2.718 ||| 0-1 ||| 81 374827 +del ||| runs the risk ||| 0.0111111 0.0732944 2.6679e-06 9.34627e-10 2.718 ||| 0-1 ||| 90 374827 +del ||| runs the ||| 0.00900901 0.0732944 2.6679e-06 7.98826e-06 2.718 ||| 0-1 ||| 111 374827 +del ||| rural areas ||| 0.000478927 0.0113162 2.6679e-06 2.52477e-08 2.718 ||| 0-0 ||| 2088 374827 +del ||| rural ||| 0.00244965 0.0113162 2.40111e-05 0.0001103 2.718 ||| 0-0 ||| 3674 374827 +del ||| s ' ||| 0.0833333 0.16804 2.6679e-06 3.59795e-05 2.718 ||| 0-0 ||| 12 374827 +del ||| s " ||| 0.1 0.16804 2.6679e-06 2.48041e-06 2.718 ||| 0-0 ||| 10 374827 +del ||| s , ||| 0.031746 0.16804 5.33579e-06 0.00124916 2.718 ||| 0-0 ||| 63 374827 +del ||| s Council , ||| 0.333333 0.16804 2.6679e-06 4.31959e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| s Council ||| 0.0588235 0.16804 2.6679e-06 3.62215e-06 2.718 ||| 0-0 ||| 17 374827 +del ||| s Generalised ||| 0.333333 0.16804 2.6679e-06 3.09004e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| s Party in the ||| 1 0.0458111 2.6679e-06 2.68675e-09 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| s People ||| 0.5 0.16804 2.6679e-06 6.14865e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| s People ’ ||| 1 0.16804 2.6679e-06 1.07116e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| s Rule ||| 1 0.334285 2.6679e-06 7.02101e-06 2.718 ||| 0-1 ||| 1 374827 +del ||| s Wine ||| 1 0.16804 2.6679e-06 1.15222e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| s actual ||| 0.5 0.16804 2.6679e-06 1.51569e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| s adviser , ||| 0.5 0.0446429 2.6679e-06 1.49726e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| s adviser ||| 0.2 0.0446429 2.6679e-06 1.25552e-08 2.718 ||| 0-1 ||| 5 374827 +del ||| s agenda ||| 0.0212766 0.230707 5.33579e-06 1.00093e-05 2.718 ||| 0-1 ||| 94 374827 +del ||| s arrival here today ( albeit amply ||| 0.333333 0.16804 2.6679e-06 1.94758e-27 2.718 ||| 0-0 ||| 3 374827 +del ||| s arrival here today ( albeit ||| 0.333333 0.16804 2.6679e-06 1.39113e-21 2.718 ||| 0-0 ||| 3 374827 +del ||| s arrival here today ( ||| 0.333333 0.16804 2.6679e-06 6.65613e-17 2.718 ||| 0-0 ||| 3 374827 +del ||| s arrival here today ||| 0.333333 0.16804 2.6679e-06 6.90183e-14 2.718 ||| 0-0 ||| 3 374827 +del ||| s arrival here ||| 0.333333 0.16804 2.6679e-06 1.52932e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| s arrival ||| 0.2 0.16804 2.6679e-06 7.54178e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| s as a ||| 0.5 0.16804 2.6679e-06 4.7379e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| s as ||| 0.333333 0.16804 2.6679e-06 0.000106888 2.718 ||| 0-0 ||| 3 374827 +del ||| s best ||| 0.037037 0.16804 2.6679e-06 1.45075e-06 2.718 ||| 0-0 ||| 27 374827 +del ||| s bid ||| 0.333333 0.16804 2.6679e-06 2.78627e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| s budget ||| 0.008 0.16804 2.6679e-06 1.29258e-06 2.718 ||| 0-0 ||| 125 374827 +del ||| s catalogue ||| 1 0.16804 2.6679e-06 3.03766e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| s country ||| 0.0769231 0.16804 2.6679e-06 3.76984e-06 2.718 ||| 0-0 ||| 13 374827 +del ||| s degree ||| 0.5 0.16804 2.6679e-06 1.45075e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| s demands ||| 0.0416667 0.16804 2.6679e-06 4.03276e-07 2.718 ||| 0-0 ||| 24 374827 +del ||| s development of ||| 0.5 0.16804 2.6679e-06 9.3674e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| s development ||| 0.00970874 0.16804 2.6679e-06 1.72309e-06 2.718 ||| 0-0 ||| 103 374827 +del ||| s draft ||| 0.00943396 0.0920538 2.6679e-06 2.26987e-06 2.718 ||| 0-0 0-1 ||| 106 374827 +del ||| s emphasis on ||| 0.5 0.16804 2.6679e-06 3.58141e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| s emphasis ||| 0.142857 0.16804 2.6679e-06 5.35257e-07 2.718 ||| 0-0 ||| 7 374827 +del ||| s estrangement ||| 1 0.16804 2.6679e-06 4.18988e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| s external ||| 0.0070922 0.16804 2.6679e-06 1.95877e-07 2.718 ||| 0-0 ||| 141 374827 +del ||| s finances ||| 0.0714286 0.16804 2.6679e-06 5.65634e-08 2.718 ||| 0-0 ||| 14 374827 +del ||| s financial ||| 0.011236 0.16804 2.6679e-06 1.27791e-06 2.718 ||| 0-0 ||| 89 374827 +del ||| s full ||| 0.0526316 0.16804 2.6679e-06 1.92211e-06 2.718 ||| 0-0 ||| 19 374827 +del ||| s genuine ||| 0.25 0.16804 2.6679e-06 3.54045e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| s influence over the ||| 1 0.0732944 2.6679e-06 1.08799e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| s intervention ||| 0.0277778 0.16804 2.6679e-06 2.78627e-07 2.718 ||| 0-0 ||| 36 374827 +del ||| s legal service ||| 0.142857 0.16804 2.6679e-06 9.08182e-11 2.718 ||| 0-0 ||| 7 374827 +del ||| s legal ||| 0.0555556 0.16804 2.6679e-06 1.35752e-06 2.718 ||| 0-0 ||| 18 374827 +del ||| s meeting of the ||| 0.25 0.130625 2.6679e-06 4.32693e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| s meeting of ||| 0.125 0.130625 2.6679e-06 7.04806e-08 2.718 ||| 0-2 ||| 8 374827 +del ||| s neck ||| 1 0.16804 2.6679e-06 4.50412e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| s negotiations to reach ||| 0.5 0.16804 2.6679e-06 4.17671e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| s negotiations to ||| 0.5 0.16804 2.6679e-06 5.15643e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| s negotiations ||| 0.166667 0.16804 2.6679e-06 5.80298e-07 2.718 ||| 0-0 ||| 6 374827 +del ||| s nor Parliament ||| 1 0.16804 2.6679e-06 3.20465e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| s nor Parliament ’ s interests ||| 1 0.16804 2.6679e-06 1.45603e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| s nor Parliament ’ s ||| 1 0.16804 2.6679e-06 1.06202e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| s nor Parliament ’ ||| 1 0.16804 2.6679e-06 5.58282e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| s nor ||| 0.333333 0.16804 2.6679e-06 5.58302e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| s office ||| 0.0666667 0.16804 2.6679e-06 1.07785e-06 2.718 ||| 0-0 ||| 15 374827 +del ||| s output ||| 0.333333 0.16804 2.6679e-06 4.18988e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| s own ||| 0.0174672 0.16804 1.06716e-05 1.77578e-05 2.718 ||| 0-0 ||| 229 374827 +del ||| s perspective ||| 0.166667 0.16804 2.6679e-06 3.3938e-07 2.718 ||| 0-0 ||| 6 374827 +del ||| s pockets ||| 1 0.16804 2.6679e-06 4.92311e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| s presence ||| 0.037037 0.16804 2.6679e-06 4.03276e-07 2.718 ||| 0-0 ||| 27 374827 +del ||| s problems ||| 0.0357143 0.16804 2.6679e-06 1.4057e-06 2.718 ||| 0-0 ||| 28 374827 +del ||| s proposed ||| 0.02 0.16804 2.6679e-06 1.16898e-06 2.718 ||| 0-0 ||| 50 374827 +del ||| s push to ||| 0.333333 0.16804 2.6679e-06 2.57821e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| s push ||| 0.333333 0.16804 2.6679e-06 2.90149e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| s request ||| 0.0138889 0.16804 2.6679e-06 8.03409e-07 2.718 ||| 0-0 ||| 72 374827 +del ||| s role through ||| 1 0.16804 2.6679e-06 1.07037e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| s role ||| 0.00645161 0.16804 2.6679e-06 2.32538e-06 2.718 ||| 0-0 ||| 155 374827 +del ||| s room ||| 0.25 0.16804 2.6679e-06 3.91754e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| s security ||| 0.0285714 0.16804 2.6679e-06 8.55783e-07 2.718 ||| 0-0 ||| 35 374827 +del ||| s sidekick , ||| 0.5 0.16804 2.6679e-06 4.99663e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| s sidekick ||| 0.5 0.16804 2.6679e-06 4.18988e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| s speech on ||| 0.5 0.0140673 2.6679e-06 8.39556e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| s statement , ||| 0.25 0.16804 2.6679e-06 9.30622e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| s statement ||| 0.00757576 0.16804 2.6679e-06 7.80365e-07 2.718 ||| 0-0 ||| 132 374827 +del ||| s success ||| 0.047619 0.16804 2.6679e-06 6.22197e-07 2.718 ||| 0-0 ||| 21 374827 +del ||| s suit perfectly ||| 0.5 0.16804 2.6679e-06 4.03077e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| s suit ||| 0.5 0.16804 2.6679e-06 1.05794e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| s time ||| 0.0606061 0.16804 5.33579e-06 1.71963e-05 2.718 ||| 0-0 ||| 33 374827 +del ||| s timely ||| 0.5 0.16804 2.6679e-06 7.1228e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| s total ||| 0.0909091 0.16804 2.6679e-06 9.87764e-07 2.718 ||| 0-0 ||| 11 374827 +del ||| s work ||| 0.00938967 0.16804 5.33579e-06 6.63049e-06 2.718 ||| 0-0 ||| 213 374827 +del ||| s ||| 0.0530222 0.16804 0.00303073 0.0104747 2.718 ||| 0-0 ||| 21425 374827 +del ||| s ’ ||| 1 0.16804 2.6679e-06 1.8248e-05 2.718 ||| 0-0 ||| 1 374827 +del ||| safeguarding the legal principle of fair and ||| 1 0.0732944 2.6679e-06 1.217e-21 2.718 ||| 0-1 ||| 1 374827 +del ||| safeguarding the legal principle of fair ||| 1 0.0732944 2.6679e-06 9.7159e-20 2.718 ||| 0-1 ||| 1 374827 +del ||| safeguarding the legal principle of ||| 1 0.0732944 2.6679e-06 1.87566e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| safeguarding the legal principle ||| 1 0.0732944 2.6679e-06 3.45018e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| safeguarding the legal ||| 1 0.0732944 2.6679e-06 2.25061e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| safeguarding the ||| 0.00273973 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-1 ||| 365 374827 +del ||| safety and the materials from which ||| 1 0.0911315 2.6679e-06 1.0049e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| safety and the materials from ||| 1 0.0911315 2.6679e-06 1.18298e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| said a ||| 0.00826446 0.0008087 2.6679e-06 3.47343e-07 2.718 ||| 0-1 ||| 121 374827 +del ||| said about the ||| 0.00403226 0.0732944 2.6679e-06 2.02034e-07 2.718 ||| 0-2 ||| 248 374827 +del ||| said by ||| 0.00321543 0.0461582 2.6679e-06 6.65064e-06 2.718 ||| 0-1 ||| 311 374827 +del ||| said the ||| 0.0075188 0.0732944 2.6679e-06 0.000142851 2.718 ||| 0-1 ||| 133 374827 +del ||| said ||| 3.31785e-05 2.43e-05 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 30140 374827 +del ||| sake of the ||| 0.00515464 0.10196 2.6679e-06 1.02863e-05 2.718 ||| 0-1 0-2 ||| 194 374827 +del ||| sake of ||| 0.003367 0.130625 8.00369e-06 2.96165e-05 2.718 ||| 0-1 ||| 891 374827 +del ||| saleable commodity ||| 1 0.0058997 2.6679e-06 2.12e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| salmon , ||| 0.0909091 0.160156 2.6679e-06 1.28437e-05 2.718 ||| 0-0 ||| 11 374827 +del ||| salmon ||| 0.0176322 0.160156 1.86753e-05 0.0001077 2.718 ||| 0-0 ||| 397 374827 +del ||| same as the outcomes of the ||| 1 0.10196 2.6679e-06 1.13627e-13 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| same as the ||| 0.00884956 0.0732944 2.6679e-06 2.85198e-06 2.718 ||| 0-2 ||| 113 374827 +del ||| same as those of the ||| 0.166667 0.10196 2.6679e-06 6.09179e-10 2.718 ||| 0-3 0-4 ||| 6 374827 +del ||| same time a positive verdict from ||| 1 0.0911315 2.6679e-06 5.77456e-19 2.718 ||| 0-5 ||| 1 374827 +del ||| sample has been accepted by the ||| 1 0.0732944 2.6679e-06 2.69857e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| sat next ||| 0.25 0.0281625 2.6679e-06 5.20614e-09 2.718 ||| 0-1 ||| 4 374827 +del ||| satisfaction ||| 0.000611247 0.0012477 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 1636 374827 +del ||| sauce for the goose and sauce ||| 1 0.0732944 2.6679e-06 5.06157e-22 2.718 ||| 0-2 ||| 1 374827 +del ||| sauce for the goose and ||| 0.25 0.0732944 2.6679e-06 1.74537e-16 2.718 ||| 0-2 ||| 4 374827 +del ||| sauce for the goose ||| 0.125 0.0732944 2.6679e-06 1.39341e-14 2.718 ||| 0-2 ||| 8 374827 +del ||| sauce for the ||| 0.0625 0.0732944 2.6679e-06 7.74116e-09 2.718 ||| 0-2 ||| 16 374827 +del ||| save the pains ||| 0.166667 0.0732944 2.6679e-06 2.62223e-11 2.718 ||| 0-1 ||| 6 374827 +del ||| save the ||| 0.00395257 0.0732944 2.6679e-06 5.24447e-06 2.718 ||| 0-1 ||| 253 374827 +del ||| saving ||| 0.000766284 0.0009276 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1305 374827 +del ||| saw after ||| 1 0.0001855 2.6679e-06 3.5376e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| saw in ||| 0.0240964 0.0183279 5.33579e-06 1.4454e-06 2.718 ||| 0-1 ||| 83 374827 +del ||| say ' the most ||| 1 0.0732944 2.6679e-06 4.92822e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| say ' the ||| 0.5 0.0732944 2.6679e-06 1.14026e-06 2.718 ||| 0-2 ||| 2 374827 +del ||| say , for the benefit ||| 0.142857 0.0138653 2.6679e-06 9.91485e-12 2.718 ||| 0-2 ||| 7 374827 +del ||| say , for the ||| 0.0769231 0.0138653 2.6679e-06 7.52836e-08 2.718 ||| 0-2 ||| 13 374827 +del ||| say , for ||| 0.030303 0.0138653 2.6679e-06 1.22628e-06 2.718 ||| 0-2 ||| 33 374827 +del ||| say , of the ||| 0.25 0.10196 2.6679e-06 1.1678e-05 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| say , the ||| 0.0150376 0.0732944 5.33579e-06 3.95883e-05 2.718 ||| 0-2 ||| 133 374827 +del ||| say a word about it , because ||| 1 0.0101916 2.6679e-06 4.2201e-18 2.718 ||| 0-3 ||| 1 374827 +del ||| say a word about it , ||| 0.5 0.0101916 2.6679e-06 1.28427e-14 2.718 ||| 0-3 ||| 2 374827 +del ||| say a word about it ||| 0.5 0.0101916 2.6679e-06 1.07691e-13 2.718 ||| 0-3 ||| 2 374827 +del ||| say a word about ||| 0.0192308 0.0101916 2.6679e-06 6.05577e-12 2.718 ||| 0-3 ||| 52 374827 +del ||| say about the ||| 0.00740741 0.0732944 2.6679e-06 4.69497e-07 2.718 ||| 0-2 ||| 135 374827 +del ||| say about ||| 0.00268817 0.0101916 2.6679e-06 1.34204e-06 2.718 ||| 0-1 ||| 372 374827 +del ||| say by ||| 0.047619 0.0461582 2.6679e-06 1.54551e-05 2.718 ||| 0-1 ||| 21 374827 +del ||| say on the ||| 0.00925926 0.0436809 2.6679e-06 3.25574e-06 2.718 ||| 0-1 0-2 ||| 108 374827 +del ||| say our neighbours to the ||| 1 0.0732944 2.6679e-06 2.03446e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| say the ||| 0.00367647 0.0732944 5.33579e-06 0.000331964 2.718 ||| 0-1 ||| 544 374827 +del ||| say to the ||| 0.00235294 0.0732944 2.6679e-06 2.94978e-05 2.718 ||| 0-2 ||| 425 374827 +del ||| says in effect , ||| 0.5 0.0183279 2.6679e-06 7.41315e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| says in effect ||| 0.5 0.0183279 2.6679e-06 6.21623e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| says in ||| 0.0105263 0.0183279 2.6679e-06 1.86338e-06 2.718 ||| 0-1 ||| 95 374827 +del ||| says of the ||| 0.5 0.10196 2.6679e-06 7.07951e-06 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| scale of the ||| 0.00275482 0.10196 2.6679e-06 6.014e-06 2.718 ||| 0-1 0-2 ||| 363 374827 +del ||| scenario for the ||| 0.25 0.0435798 2.6679e-06 5.38065e-08 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| sceptical about the European ||| 1 0.0732944 2.6679e-06 1.80681e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| sceptical about the ||| 0.0142857 0.0732944 2.6679e-06 5.4033e-10 2.718 ||| 0-2 ||| 70 374827 +del ||| scheduled for ||| 0.00428266 0.0138653 5.33579e-06 1.81817e-07 2.718 ||| 0-1 ||| 467 374827 +del ||| scheduled ||| 0.00113766 0.0047304 2.6679e-06 6.6e-06 2.718 ||| 0-0 ||| 879 374827 +del ||| scheme for ||| 0.0123457 0.0138653 2.6679e-06 3.79772e-07 2.718 ||| 0-1 ||| 81 374827 +del ||| scientists from the ||| 0.142857 0.082213 2.6679e-06 3.01098e-08 2.718 ||| 0-1 0-2 ||| 7 374827 +del ||| scope for ||| 0.0022779 0.0138653 5.33579e-06 1.07261e-06 2.718 ||| 0-1 ||| 878 374827 +del ||| scope in ||| 0.0277778 0.0183279 2.6679e-06 2.68855e-06 2.718 ||| 0-1 ||| 36 374827 +del ||| scope of the legislation ||| 0.125 0.130625 2.6679e-06 1.44985e-10 2.718 ||| 0-1 ||| 8 374827 +del ||| scope of the ||| 0.00312695 0.10196 1.33395e-05 1.02146e-05 2.718 ||| 0-1 0-2 ||| 1599 374827 +del ||| scope of ||| 0.00148038 0.130625 1.06716e-05 2.94101e-05 2.718 ||| 0-1 ||| 2702 374827 +del ||| scores of ||| 0.0357143 0.130625 2.6679e-06 4.1298e-07 2.718 ||| 0-1 ||| 28 374827 +del ||| scourge of humanity ||| 0.142857 0.130625 2.6679e-06 3.02065e-12 2.718 ||| 0-1 ||| 7 374827 +del ||| scourge of ||| 0.00448431 0.130625 2.6679e-06 9.43954e-07 2.718 ||| 0-1 ||| 223 374827 +del ||| scrutiny of , ||| 0.25 0.130625 2.6679e-06 5.31194e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| scrutiny of ||| 0.00714286 0.130625 2.6679e-06 4.45428e-06 2.718 ||| 0-1 ||| 140 374827 +del ||| sea ||| 0.00151286 0.0376135 1.33395e-05 0.0001904 2.718 ||| 0-0 ||| 3305 374827 +del ||| sea-level ||| 0.0909091 0.476191 2.6679e-06 1.31e-05 2.718 ||| 0-0 ||| 11 374827 +del ||| seasons for ||| 1 0.0138653 2.6679e-06 7.53088e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| seat in the ||| 0.0285714 0.0732944 2.6679e-06 1.20433e-07 2.718 ||| 0-2 ||| 35 374827 +del ||| seat in ||| 0.0125 0.0183279 2.6679e-06 4.36856e-07 2.718 ||| 0-1 ||| 80 374827 +del ||| seat on the ||| 0.03125 0.0308477 2.6679e-06 2.24816e-08 2.718 ||| 0-0 0-1 0-2 ||| 32 374827 +del ||| second and third phase of ||| 0.5 0.130625 2.6679e-06 2.63422e-16 2.718 ||| 0-4 ||| 2 374827 +del ||| second meeting of the ||| 0.111111 0.130625 2.6679e-06 1.48075e-10 2.718 ||| 0-2 ||| 9 374827 +del ||| second meeting of ||| 0.125 0.130625 2.6679e-06 2.41197e-09 2.718 ||| 0-2 ||| 8 374827 +del ||| second subparagraph of ||| 0.125 0.130625 2.6679e-06 2.11239e-11 2.718 ||| 0-2 ||| 8 374827 +del ||| second the ||| 0.037037 0.0732944 2.6679e-06 2.26103e-05 2.718 ||| 0-1 ||| 27 374827 +del ||| second time from ||| 1 0.0911315 2.6679e-06 2.31632e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| section of the ||| 0.00471698 0.10196 2.6679e-06 2.14127e-06 2.718 ||| 0-1 0-2 ||| 212 374827 +del ||| section of ||| 0.00326797 0.130625 2.6679e-06 6.1652e-06 2.718 ||| 0-1 ||| 306 374827 +del ||| sections of the ||| 0.0033557 0.10196 2.6679e-06 1.06551e-06 2.718 ||| 0-1 0-2 ||| 298 374827 +del ||| sector - ||| 0.0163934 0.0250353 2.6679e-06 2.81399e-06 2.718 ||| 0-0 ||| 61 374827 +del ||| sector are obvious ||| 1 0.0250353 2.6679e-06 4.71995e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| sector are ||| 0.012987 0.0250353 2.6679e-06 1.13188e-05 2.718 ||| 0-0 ||| 77 374827 +del ||| sector in the ||| 0.0138889 0.0458111 2.6679e-06 1.73924e-06 2.718 ||| 0-1 0-2 ||| 72 374827 +del ||| sector ||| 0.00116822 0.0250353 8.00369e-05 0.000746 2.718 ||| 0-0 ||| 25680 374827 +del ||| secure an ||| 0.0153846 0.0008398 2.6679e-06 9.06696e-09 2.718 ||| 0-1 ||| 65 374827 +del ||| securing the ||| 0.005 0.0732944 2.6679e-06 4.51511e-06 2.718 ||| 0-1 ||| 200 374827 +del ||| security for the ||| 0.0108696 0.0435798 2.6679e-06 3.05277e-07 2.718 ||| 0-1 0-2 ||| 92 374827 +del ||| security of ||| 0.000448229 0.130625 2.6679e-06 2.41003e-05 2.718 ||| 0-1 ||| 2231 374827 +del ||| security staff ||| 0.0666667 0.0499678 2.6679e-06 2.50002e-08 2.718 ||| 0-1 ||| 15 374827 +del ||| see from the ||| 0.0273973 0.082213 5.33579e-06 5.30384e-06 2.718 ||| 0-1 0-2 ||| 73 374827 +del ||| see how the ||| 0.0119048 0.0732944 2.6679e-06 8.77072e-08 2.718 ||| 0-2 ||| 84 374827 +del ||| see taking place in the ||| 1 0.0458111 2.6679e-06 4.221e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| see the ||| 0.00314301 0.0732944 1.60074e-05 0.000244719 2.718 ||| 0-1 ||| 1909 374827 +del ||| seeing in the areas of the ||| 1 0.10196 2.6679e-06 1.64253e-12 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| seek the ||| 0.0183486 0.0732944 5.33579e-06 2.41384e-05 2.718 ||| 0-1 ||| 109 374827 +del ||| seem from the ||| 0.5 0.082213 2.6679e-06 6.88008e-07 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| seems out of ||| 1 0.130625 2.6679e-06 1.35815e-07 2.718 ||| 0-2 ||| 1 374827 +del ||| seen from the fact that the proposed ||| 1 0.082213 2.6679e-06 5.3494e-16 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| seen from the fact that the ||| 0.333333 0.082213 2.6679e-06 4.79337e-12 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| seen from the fact that ||| 0.0833333 0.082213 2.6679e-06 7.80784e-11 2.718 ||| 0-1 0-2 ||| 12 374827 +del ||| seen from the fact ||| 0.0666667 0.082213 2.6679e-06 4.64156e-09 2.718 ||| 0-1 0-2 ||| 15 374827 +del ||| seen from the ||| 0.00980392 0.082213 2.6679e-06 1.58453e-06 2.718 ||| 0-1 0-2 ||| 102 374827 +del ||| seen in the ||| 0.00362319 0.0458111 2.6679e-06 1.97151e-06 2.718 ||| 0-1 0-2 ||| 276 374827 +del ||| seen in ||| 0.00137741 0.0183279 2.6679e-06 5.67643e-06 2.718 ||| 0-1 ||| 726 374827 +del ||| seen the ||| 0.00381679 0.0732944 5.33579e-06 7.311e-05 2.718 ||| 0-1 ||| 524 374827 +del ||| segment ||| 0.00775194 0.0763889 2.6679e-06 1.44e-05 2.718 ||| 0-0 ||| 129 374827 +del ||| selection ||| 0.000901713 0.0012195 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1109 374827 +del ||| selects the ||| 1 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| send out the ||| 0.025 0.0732944 2.6679e-06 8.56751e-08 2.718 ||| 0-2 ||| 40 374827 +del ||| sense , of the ||| 1 0.10196 2.6679e-06 2.17603e-06 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| sense of ||| 0.00131752 0.130625 8.00369e-06 5.25369e-05 2.718 ||| 0-1 ||| 2277 374827 +del ||| sense that the ||| 0.0172414 0.0732944 2.6679e-06 1.04053e-06 2.718 ||| 0-2 ||| 58 374827 +del ||| sensitive situation in the ||| 0.5 0.0458111 2.6679e-06 9.35743e-11 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| sent back by the ||| 0.25 0.0597263 2.6679e-06 2.27018e-10 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| sent down from on ||| 1 0.0525994 2.6679e-06 8.91812e-12 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| sent from ||| 0.0277778 0.0911315 2.6679e-06 1.30256e-06 2.718 ||| 0-1 ||| 36 374827 +del ||| sent to us by the ||| 0.333333 0.0597263 2.6679e-06 8.64421e-11 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| sentence of ||| 0.00990099 0.130625 2.6679e-06 4.45428e-06 2.718 ||| 0-1 ||| 101 374827 +del ||| separate from each other ||| 0.333333 0.0911315 2.6679e-06 2.8373e-13 2.718 ||| 0-1 ||| 3 374827 +del ||| separate from each ||| 0.5 0.0911315 2.6679e-06 2.19012e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| separate from ||| 0.0190476 0.0911315 5.33579e-06 7.80235e-07 2.718 ||| 0-1 ||| 105 374827 +del ||| sequel to the ||| 0.142857 0.0732944 2.6679e-06 1.23447e-08 2.718 ||| 0-2 ||| 7 374827 +del ||| sequence of ||| 0.0212766 0.130625 2.6679e-06 6.48968e-07 2.718 ||| 0-1 ||| 47 374827 +del ||| series of ||| 0.000744325 0.130625 5.33579e-06 1.17699e-05 2.718 ||| 0-1 ||| 2687 374827 +del ||| seriously thought of ||| 1 0.130625 2.6679e-06 1.0222e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| service of ||| 0.002331 0.130625 2.6679e-06 1.97345e-05 2.718 ||| 0-1 ||| 429 374827 +del ||| service providers ||| 0.00151745 0.0061619 2.6679e-06 3.2101e-10 2.718 ||| 0-0 ||| 659 374827 +del ||| service set up ||| 0.5 0.0061619 2.6679e-06 1.36128e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| service set ||| 0.5 0.0061619 2.6679e-06 3.99145e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| service to the ||| 0.0185185 0.0732944 2.6679e-06 2.06466e-06 2.718 ||| 0-2 ||| 54 374827 +del ||| service ||| 0.000833247 0.0061619 2.13432e-05 6.83e-05 2.718 ||| 0-0 ||| 9601 374827 +del ||| serviced ||| 0.0769231 0.0526316 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 13 374827 +del ||| services of the ||| 0.0555556 0.10196 2.40111e-05 9.0671e-06 2.718 ||| 0-1 0-2 ||| 162 374827 +del ||| session is endorsing the decision of the ||| 1 0.130625 2.6679e-06 3.85866e-19 2.718 ||| 0-5 ||| 1 374827 +del ||| session is endorsing the decision of ||| 1 0.130625 2.6679e-06 6.28531e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| session ||| 0.000655738 0.010021 5.33579e-06 5.65e-05 2.718 ||| 0-0 ||| 3050 374827 +del ||| set aside for the ||| 0.025641 0.0435798 2.6679e-06 1.53947e-10 2.718 ||| 0-2 0-3 ||| 39 374827 +del ||| set aside for ||| 0.00564972 0.0138653 2.6679e-06 4.43248e-10 2.718 ||| 0-2 ||| 177 374827 +del ||| set by the ||| 0.00877193 0.0597263 1.06716e-05 3.28201e-06 2.718 ||| 0-1 0-2 ||| 456 374827 +del ||| set by ||| 0.00476948 0.0461582 8.00369e-06 9.44963e-06 2.718 ||| 0-1 ||| 629 374827 +del ||| set down in the ||| 0.0322581 0.0732944 2.6679e-06 3.0329e-09 2.718 ||| 0-3 ||| 31 374827 +del ||| set for the ||| 0.0113636 0.0435798 2.6679e-06 2.18365e-06 2.718 ||| 0-1 0-2 ||| 88 374827 +del ||| set in motion , for ||| 0.5 0.0138653 2.6679e-06 1.21328e-12 2.718 ||| 0-4 ||| 2 374827 +del ||| set of ||| 0.00284091 0.130625 1.06716e-05 0.00017239 2.718 ||| 0-1 ||| 1408 374827 +del ||| set on ||| 0.0172414 0.0140673 2.6679e-06 5.7315e-06 2.718 ||| 0-1 ||| 58 374827 +del ||| set out by the ||| 0.0153846 0.0597263 5.33579e-06 1.25714e-08 2.718 ||| 0-2 0-3 ||| 130 374827 +del ||| set out in the ||| 0.0110988 0.0458111 2.6679e-05 2.09653e-08 2.718 ||| 0-2 0-3 ||| 901 374827 +del ||| set out in ||| 0.00324886 0.0183279 1.33395e-05 6.03639e-08 2.718 ||| 0-2 ||| 1539 374827 +del ||| set to ||| 0.00261097 0.0006066 2.6679e-06 7.77544e-07 2.718 ||| 0-1 ||| 383 374827 +del ||| set up the ||| 0.00584795 0.0732944 2.6679e-06 6.92234e-07 2.718 ||| 0-2 ||| 171 374827 +del ||| set up ||| 0.000216216 0.0020886 2.6679e-06 1.1051e-07 2.718 ||| 0-1 ||| 4625 374827 +del ||| setting up of the ||| 0.0151515 0.10196 2.6679e-06 3.31946e-08 2.718 ||| 0-2 0-3 ||| 66 374827 +del ||| setting-up of the ||| 0.0322581 0.10196 2.6679e-06 2.25397e-07 2.718 ||| 0-1 0-2 ||| 31 374827 +del ||| sex ||| 0.000914077 0.0635335 2.6679e-06 9.59e-05 2.718 ||| 0-0 ||| 1094 374827 +del ||| shadow of the ||| 0.0232558 0.130625 2.6679e-06 2.48103e-07 2.718 ||| 0-1 ||| 43 374827 +del ||| shadow of ||| 0.00787402 0.130625 2.6679e-06 4.0413e-06 2.718 ||| 0-1 ||| 127 374827 +del ||| shall be using a ||| 1 0.0008087 2.6679e-06 6.50007e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| shall have produced by the ||| 1 0.0597263 2.6679e-06 3.88426e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| shall we say , of the ||| 1 0.10196 2.6679e-06 7.24638e-11 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| shape of the ||| 0.0322581 0.0681761 8.00369e-06 1.33189e-07 2.718 ||| 0-0 0-1 0-2 ||| 93 374827 +del ||| shape of ||| 0.0113314 0.130625 1.06716e-05 1.78466e-05 2.718 ||| 0-1 ||| 353 374827 +del ||| shape the ||| 0.00746269 0.0732944 2.6679e-06 2.10126e-05 2.718 ||| 0-1 ||| 134 374827 +del ||| share in ||| 0.00505051 0.00922175 2.6679e-06 3.50563e-08 2.718 ||| 0-0 0-1 ||| 198 374827 +del ||| share of responsibility for ||| 0.025 0.130625 2.6679e-06 2.45099e-11 2.718 ||| 0-1 ||| 40 374827 +del ||| share of responsibility ||| 0.0120482 0.130625 2.6679e-06 3.18903e-09 2.718 ||| 0-1 ||| 83 374827 +del ||| share of the ||| 0.003663 0.10196 2.6679e-06 9.58961e-06 2.718 ||| 0-1 0-2 ||| 273 374827 +del ||| share of ||| 0.00607533 0.130625 1.33395e-05 2.76106e-05 2.718 ||| 0-1 ||| 823 374827 +del ||| shared by ||| 0.00194553 0.0461582 2.6679e-06 4.36585e-07 2.718 ||| 0-1 ||| 514 374827 +del ||| sharp decline ||| 0.0555556 0.0043178 2.6679e-06 8.778e-11 2.718 ||| 0-1 ||| 18 374827 +del ||| shattering of the ||| 0.333333 0.10196 2.6679e-06 7.17172e-08 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| she was very sceptical about the European ||| 1 0.0732944 2.6679e-06 5.59972e-21 2.718 ||| 0-5 ||| 1 374827 +del ||| she was very sceptical about the ||| 1 0.0732944 2.6679e-06 1.67461e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| shift away from ||| 0.0714286 0.0911315 2.6679e-06 1.36506e-10 2.718 ||| 0-2 ||| 14 374827 +del ||| shifted from ||| 0.0454545 0.0911315 2.6679e-06 9.31948e-08 2.718 ||| 0-1 ||| 22 374827 +del ||| shooting up ||| 0.125 0.01 2.6679e-06 8.8673e-09 2.718 ||| 0-0 ||| 8 374827 +del ||| shooting ||| 0.00925926 0.01 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 108 374827 +del ||| shoots from the hip ||| 1 0.082213 2.6679e-06 2.10768e-15 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| shoots from the ||| 1 0.082213 2.6679e-06 5.26921e-09 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| shopping road in the ||| 1 0.0458111 2.6679e-06 4.51135e-12 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| shore of the ||| 0.166667 0.10196 2.6679e-06 1.84416e-07 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| short of the ||| 0.0190476 0.10196 5.33579e-06 1.44561e-05 2.718 ||| 0-1 0-2 ||| 105 374827 +del ||| short of what is required ||| 0.0434783 0.130625 2.6679e-06 2.90474e-13 2.718 ||| 0-1 ||| 23 374827 +del ||| short of what is ||| 0.0208333 0.130625 2.6679e-06 1.83033e-09 2.718 ||| 0-1 ||| 48 374827 +del ||| short of what ||| 0.011236 0.130625 2.6679e-06 5.84005e-08 2.718 ||| 0-1 ||| 89 374827 +del ||| short of ||| 0.00188324 0.130625 2.6679e-06 4.16225e-05 2.718 ||| 0-1 ||| 531 374827 +del ||| shortcomings of the ' everything ||| 1 0.10196 2.6679e-06 3.51564e-13 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| shortcomings of the ' ||| 1 0.10196 2.6679e-06 3.8007e-09 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| shortcomings of the ||| 0.0107527 0.10196 2.6679e-06 1.10649e-06 2.718 ||| 0-1 0-2 ||| 93 374827 +del ||| shortest period of time ||| 0.333333 0.130625 2.6679e-06 5.91545e-14 2.718 ||| 0-2 ||| 3 374827 +del ||| shortest period of ||| 0.5 0.130625 2.6679e-06 3.60325e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| should , as a matter of ||| 0.166667 0.130625 2.6679e-06 7.31493e-11 2.718 ||| 0-5 ||| 6 374827 +del ||| should also come in for ||| 0.0625 0.0160966 2.6679e-06 5.51194e-12 2.718 ||| 0-3 0-4 ||| 16 374827 +del ||| should apply the ||| 0.0666667 0.0366981 2.6679e-06 2.00064e-09 2.718 ||| 0-1 0-2 ||| 15 374827 +del ||| should be added to the end of ||| 1 0.0732944 2.6679e-06 4.17967e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| should be added to the end ||| 0.333333 0.0732944 2.6679e-06 7.6883e-14 2.718 ||| 0-4 ||| 3 374827 +del ||| should be added to the ||| 0.0322581 0.0732944 2.6679e-06 1.76702e-10 2.718 ||| 0-4 ||| 31 374827 +del ||| should be adjourned ||| 0.25 0.0032415 2.6679e-06 2.08787e-10 2.718 ||| 0-2 ||| 4 374827 +del ||| should be committed for ||| 1 0.0138653 2.6679e-06 7.15332e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| should be entered in the ||| 0.333333 0.0458111 2.6679e-06 2.40673e-11 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| should be given the ||| 0.0121951 0.0732944 2.6679e-06 1.91411e-08 2.718 ||| 0-3 ||| 82 374827 +del ||| should be given to the ||| 0.0333333 0.0732944 2.6679e-06 1.70085e-09 2.718 ||| 0-4 ||| 30 374827 +del ||| should be intensified to ||| 0.142857 0.0065502 2.6679e-06 2.78286e-11 2.718 ||| 0-2 ||| 7 374827 +del ||| should be intensified ||| 0.047619 0.0065502 2.6679e-06 3.1318e-10 2.718 ||| 0-2 ||| 21 374827 +del ||| should be made between forms of ||| 1 0.130625 2.6679e-06 1.16765e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| should be made of the ||| 0.111111 0.10196 2.6679e-06 1.72344e-08 2.718 ||| 0-3 0-4 ||| 9 374827 +del ||| should be made to ||| 0.0204082 0.0006066 2.6679e-06 2.23814e-10 2.718 ||| 0-3 ||| 49 374827 +del ||| should be of ||| 0.015873 0.130625 2.6679e-06 2.36881e-05 2.718 ||| 0-2 ||| 63 374827 +del ||| should be regarded by ||| 1 0.0461582 2.6679e-06 7.28445e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| should be reinstated ||| 0.0666667 0.0121951 2.6679e-06 2.08787e-10 2.718 ||| 0-2 ||| 15 374827 +del ||| should be the ||| 0.00112233 0.0732944 2.6679e-06 2.78904e-05 2.718 ||| 0-2 ||| 891 374827 +del ||| should benefit from the same level ||| 1 0.0911315 2.6679e-06 5.34471e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| should benefit from the same ||| 0.2 0.0911315 2.6679e-06 6.2482e-13 2.718 ||| 0-2 ||| 5 374827 +del ||| should benefit from the ||| 0.0454545 0.0911315 2.6679e-06 7.76463e-10 2.718 ||| 0-2 ||| 22 374827 +del ||| should benefit from ||| 0.0172414 0.0911315 2.6679e-06 1.26477e-08 2.718 ||| 0-2 ||| 58 374827 +del ||| should by ||| 0.142857 0.0461582 2.6679e-06 7.16484e-05 2.718 ||| 0-1 ||| 7 374827 +del ||| should comply with the ||| 0.0416667 0.0732944 2.6679e-06 4.60552e-10 2.718 ||| 0-3 ||| 24 374827 +del ||| should cut through the ||| 1 0.0732944 2.6679e-06 5.35536e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| should not be on ||| 0.0909091 0.0140673 2.6679e-06 2.68883e-09 2.718 ||| 0-3 ||| 11 374827 +del ||| should not come within the ||| 1 0.0402501 2.6679e-06 1.86392e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| should now make good the harm it ||| 1 0.0732944 2.6679e-06 5.48704e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| should now make good the harm ||| 1 0.0732944 2.6679e-06 3.08552e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| should now make good the ||| 1 0.0732944 2.6679e-06 2.85696e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| should put the ||| 0.0714286 0.0732944 2.6679e-06 1.69685e-06 2.718 ||| 0-2 ||| 14 374827 +del ||| should say ' the most ||| 1 0.0732944 2.6679e-06 2.1837e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| should say ' the ||| 1 0.0732944 2.6679e-06 5.05251e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| should seek the ||| 0.25 0.0732944 2.6679e-06 1.06957e-07 2.718 ||| 0-2 ||| 4 374827 +del ||| shoulders of the ||| 0.0454545 0.10196 2.6679e-06 1.58802e-06 2.718 ||| 0-1 0-2 ||| 22 374827 +del ||| show respect for the ||| 0.05 0.0435798 2.6679e-06 2.16441e-10 2.718 ||| 0-2 0-3 ||| 20 374827 +del ||| show up in ||| 0.333333 0.0183279 2.6679e-06 1.23146e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| showed distinct signs of doing ||| 1 0.130625 2.6679e-06 2.70437e-19 2.718 ||| 0-3 ||| 1 374827 +del ||| showed distinct signs of ||| 1 0.130625 2.6679e-06 7.36685e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| showing the ||| 0.00598802 0.0732944 2.6679e-06 1.07321e-05 2.718 ||| 0-1 ||| 167 374827 +del ||| showing ||| 0.00131839 0.0033997 5.33579e-06 9.2e-06 2.718 ||| 0-0 ||| 1517 374827 +del ||| shown by the European ||| 1 0.0597263 2.6679e-06 1.96057e-09 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| shown by the ||| 0.013245 0.0597263 1.06716e-05 5.86313e-07 2.718 ||| 0-1 0-2 ||| 302 374827 +del ||| shown by ||| 0.00924214 0.0461582 1.33395e-05 1.68813e-06 2.718 ||| 0-1 ||| 541 374827 +del ||| shown in the ||| 0.00826446 0.0458111 2.6679e-06 9.77795e-07 2.718 ||| 0-1 0-2 ||| 121 374827 +del ||| shown in ||| 0.00271003 0.0183279 2.6679e-06 2.81529e-06 2.718 ||| 0-1 ||| 369 374827 +del ||| shown of the ||| 0.5 0.10196 2.6679e-06 1.06961e-05 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| shown on the ||| 0.0833333 0.0732944 2.6679e-06 2.42614e-07 2.718 ||| 0-2 ||| 12 374827 +del ||| shows it in a ||| 1 0.0183279 2.6679e-06 8.4813e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| shows it in ||| 1 0.0183279 2.6679e-06 1.9134e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| side by ||| 0.00934579 0.0461582 2.6679e-06 3.54442e-06 2.718 ||| 0-1 ||| 107 374827 +del ||| side of the ||| 0.0071599 0.10196 1.60074e-05 2.24577e-05 2.718 ||| 0-1 0-2 ||| 838 374827 +del ||| side of ||| 0.00356295 0.130625 8.00369e-06 6.46608e-05 2.718 ||| 0-1 ||| 842 374827 +del ||| sight of a ||| 0.142857 0.130625 2.6679e-06 3.00736e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| sight of ||| 0.00995025 0.130625 5.33579e-06 6.78467e-06 2.718 ||| 0-1 ||| 201 374827 +del ||| sign of ||| 0.00249688 0.130625 5.33579e-06 1.53982e-05 2.718 ||| 0-1 ||| 801 374827 +del ||| sign their ||| 0.333333 0.0012173 2.6679e-06 8.29458e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| sign up to the ||| 0.0285714 0.0732944 5.33579e-06 5.49428e-09 2.718 ||| 0-3 ||| 70 374827 +del ||| signals the ||| 0.0294118 0.0732944 2.6679e-06 2.6396e-06 2.718 ||| 0-1 ||| 34 374827 +del ||| signature ||| 0.00151286 0.0016694 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 661 374827 +del ||| signed up ||| 0.00406504 0.0020886 2.6679e-06 5.84319e-09 2.718 ||| 0-1 ||| 246 374827 +del ||| significance which the ||| 1 0.0732944 2.6679e-06 6.04813e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| significant degree of essential ||| 0.166667 0.130625 2.6679e-06 2.11795e-13 2.718 ||| 0-2 ||| 6 374827 +del ||| significant degree of ||| 0.0625 0.130625 2.6679e-06 2.35328e-09 2.718 ||| 0-2 ||| 16 374827 +del ||| signing the ||| 0.00454545 0.0732944 2.6679e-06 3.88994e-06 2.718 ||| 0-1 ||| 220 374827 +del ||| signs of doing ||| 1 0.130625 2.6679e-06 1.67848e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| signs of encouragement has ||| 1 0.130625 2.6679e-06 2.21236e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| signs of encouragement ||| 0.333333 0.130625 2.6679e-06 4.29794e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| signs of ||| 0.00692841 0.130625 8.00369e-06 4.57228e-06 2.718 ||| 0-1 ||| 433 374827 +del ||| similar to those in ||| 0.0588235 0.0183279 2.6679e-06 6.99236e-11 2.718 ||| 0-3 ||| 17 374827 +del ||| similarly ||| 0.00111857 0.0855308 5.33579e-06 0.0003323 2.718 ||| 0-0 ||| 1788 374827 +del ||| simply and ||| 0.0188679 1.43e-05 2.6679e-06 5.5425e-09 2.718 ||| 0-1 ||| 53 374827 +del ||| simply declare their acceptance of ||| 1 0.130625 2.6679e-06 1.99756e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| since the ||| 0.00130591 0.0732944 2.13432e-05 4.71308e-05 2.718 ||| 0-1 ||| 6126 374827 +del ||| single currency will bring for this sector ||| 1 0.0250353 2.6679e-06 5.92179e-22 2.718 ||| 0-6 ||| 1 374827 +del ||| single market ||| 0.000263296 0.0273989 2.6679e-06 2.36161e-07 2.718 ||| 0-1 ||| 3798 374827 +del ||| single ||| 8.31255e-05 0.0003785 2.6679e-06 6.6e-06 2.718 ||| 0-0 ||| 12030 374827 +del ||| sins of the ||| 0.1 0.10196 2.6679e-06 7.17172e-08 2.718 ||| 0-1 0-2 ||| 10 374827 +del ||| sit on the ||| 0.0147059 0.0436809 2.6679e-06 1.28758e-07 2.718 ||| 0-1 0-2 ||| 68 374827 +del ||| sitting of ||| 0.0075188 0.130625 2.6679e-06 2.05015e-05 2.718 ||| 0-1 ||| 133 374827 +del ||| sitting on the ||| 0.0142857 0.0436809 2.6679e-06 2.36738e-07 2.718 ||| 0-1 0-2 ||| 70 374827 +del ||| situation at the ||| 0.0555556 0.0732944 5.33579e-06 7.4899e-07 2.718 ||| 0-2 ||| 36 374827 +del ||| situation because of the ||| 0.25 0.10196 2.6679e-06 1.7338e-08 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| situation in the ||| 0.00227964 0.0458111 8.00369e-06 4.82342e-06 2.718 ||| 0-1 0-2 ||| 1316 374827 +del ||| situation in ||| 0.000302984 0.0183279 5.33579e-06 1.38877e-05 2.718 ||| 0-1 ||| 6601 374827 +del ||| situation of ||| 0.000778513 0.130625 5.33579e-06 0.000151918 2.718 ||| 0-1 ||| 2569 374827 +del ||| situations in the ||| 0.0208333 0.0458111 2.6679e-06 3.20312e-07 2.718 ||| 0-1 0-2 ||| 48 374827 +del ||| situations of ||| 0.00406504 0.130625 2.6679e-06 1.00885e-05 2.718 ||| 0-1 ||| 246 374827 +del ||| six months and the Action Plan ||| 1 0.0732944 2.6679e-06 4.9136e-23 2.718 ||| 0-3 ||| 1 374827 +del ||| six months and the Action ||| 1 0.0732944 2.6679e-06 2.72978e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| six months and the ||| 0.5 0.0732944 2.6679e-06 3.03309e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| size from the ||| 1 0.0732944 2.6679e-06 2.09185e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| size of the ||| 0.00990099 0.10196 1.06716e-05 3.83175e-06 2.718 ||| 0-1 0-2 ||| 404 374827 +del ||| size of ||| 0.00165289 0.130625 2.6679e-06 1.10325e-05 2.718 ||| 0-1 ||| 605 374827 +del ||| skilfully in a ||| 0.5 0.0183279 2.6679e-06 1.67343e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| skilfully in ||| 0.25 0.0183279 2.6679e-06 3.7753e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| skirts of ||| 0.333333 0.130625 2.6679e-06 2.0649e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| sky in the ||| 1 0.0458111 2.6679e-06 4.68293e-08 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| slaughter of ||| 0.0116279 0.130625 2.6679e-06 1.17994e-06 2.718 ||| 0-1 ||| 86 374827 +del ||| small number of ||| 0.00409836 0.130625 2.6679e-06 1.86973e-08 2.718 ||| 0-2 ||| 244 374827 +del ||| smoking materials ||| 0.333333 0.0543901 2.6679e-06 1.2866e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| smoking ||| 0.00104275 0.0543901 2.6679e-06 9.19e-05 2.718 ||| 0-0 ||| 959 374827 +del ||| smooth resumption of ||| 0.5 0.130625 2.6679e-06 3.26254e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| smooth the ||| 0.0416667 0.0732944 2.6679e-06 2.74379e-06 2.718 ||| 0-1 ||| 24 374827 +del ||| so Parliament is being asked to ||| 1 0.0181517 2.6679e-06 6.24261e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| so Parliament is being asked ||| 1 0.0181517 2.6679e-06 7.02536e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| so Parliament is being ||| 1 0.0181517 2.6679e-06 9.29281e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| so Parliament is ||| 0.5 0.0181517 2.6679e-06 3.26545e-07 2.718 ||| 0-1 ||| 2 374827 +del ||| so Parliament ||| 0.0555556 0.0181517 2.6679e-06 1.04191e-05 2.718 ||| 0-1 ||| 18 374827 +del ||| so as ||| 0.000346981 0.0004965 2.6679e-06 5.84221e-07 2.718 ||| 0-1 ||| 2882 374827 +del ||| so is the ||| 0.0204082 0.0732944 2.6679e-06 2.47063e-05 2.718 ||| 0-2 ||| 49 374827 +del ||| so lax ||| 0.111111 0.0156863 2.6679e-06 1.20294e-08 2.718 ||| 0-1 ||| 9 374827 +del ||| so much because of ||| 0.111111 0.130625 2.6679e-06 2.20821e-10 2.718 ||| 0-3 ||| 9 374827 +del ||| so must the ||| 0.0714286 0.0732944 2.6679e-06 1.2184e-06 2.718 ||| 0-2 ||| 14 374827 +del ||| so soon before the ||| 0.5 0.0732944 2.6679e-06 1.81579e-11 2.718 ||| 0-3 ||| 2 374827 +del ||| so strongly about as the ||| 1 0.0732944 2.6679e-06 5.44951e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| so that a ||| 0.00819672 0.0008087 2.6679e-06 3.2243e-08 2.718 ||| 0-2 ||| 122 374827 +del ||| so that redressed ||| 1 0.0465116 2.6679e-06 9.9268e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| so to speak - of ||| 1 0.130625 2.6679e-06 3.03632e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| so will the ||| 0.0769231 0.0732944 2.6679e-06 6.81976e-06 2.718 ||| 0-2 ||| 13 374827 +del ||| so worked up about ||| 0.333333 0.0101916 2.6679e-06 4.72796e-13 2.718 ||| 0-3 ||| 3 374827 +del ||| social ||| 0.00021251 0.0003166 2.40111e-05 1.71e-05 2.718 ||| 0-0 ||| 42351 374827 +del ||| society , the ||| 0.0196078 0.0732944 2.6679e-06 2.39816e-06 2.718 ||| 0-2 ||| 51 374827 +del ||| socio-economic impact of phasing out tobacco subsidies ||| 1 0.130625 2.6679e-06 6.046e-29 2.718 ||| 0-2 ||| 1 374827 +del ||| socio-economic impact of phasing out tobacco ||| 1 0.130625 2.6679e-06 4.65077e-24 2.718 ||| 0-2 ||| 1 374827 +del ||| socio-economic impact of phasing out ||| 1 0.130625 2.6679e-06 2.08555e-19 2.718 ||| 0-2 ||| 1 374827 +del ||| socio-economic impact of phasing ||| 1 0.130625 2.6679e-06 5.44472e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| socio-economic impact of ||| 0.0588235 0.130625 2.6679e-06 1.70148e-11 2.718 ||| 0-2 ||| 17 374827 +del ||| software ||| 0.00880503 0.032316 1.86753e-05 4.73e-05 2.718 ||| 0-0 ||| 795 374827 +del ||| soil ||| 0.00286807 0.160199 8.00369e-06 0.0004229 2.718 ||| 0-0 ||| 1046 374827 +del ||| solemn declaration of 1998 ||| 1 0.130625 2.6679e-06 1.41527e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| solemn declaration of ||| 0.142857 0.130625 2.6679e-06 1.50561e-11 2.718 ||| 0-2 ||| 7 374827 +del ||| solicitors from the ||| 1 0.082213 2.6679e-06 3.01098e-09 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| solidarity with the government and people of ||| 0.5 0.130625 2.6679e-06 2.68294e-18 2.718 ||| 0-6 ||| 2 374827 +del ||| solution for ||| 0.00244499 0.0138653 2.6679e-06 7.31571e-07 2.718 ||| 0-1 ||| 409 374827 +del ||| solution to the ||| 0.00127226 0.0732944 2.6679e-06 2.09861e-06 2.718 ||| 0-2 ||| 786 374827 +del ||| solve the ||| 0.00105485 0.0732944 2.6679e-06 5.38339e-06 2.718 ||| 0-1 ||| 948 374827 +del ||| some Members from the ||| 0.166667 0.082213 2.6679e-06 1.20945e-09 2.718 ||| 0-2 0-3 ||| 6 374827 +del ||| some actions will build on ||| 0.5 0.0140673 2.6679e-06 2.55466e-16 2.718 ||| 0-4 ||| 2 374827 +del ||| some extent , bypassed the ||| 0.5 0.0732944 2.6679e-06 9.5388e-15 2.718 ||| 0-4 ||| 2 374827 +del ||| some guarantee of ||| 0.333333 0.130625 2.6679e-06 1.94403e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| some idea of ||| 0.0277778 0.130625 2.6679e-06 7.20417e-08 2.718 ||| 0-2 ||| 36 374827 +del ||| some of the ||| 0.000370233 0.10196 5.33579e-06 0.000111602 2.718 ||| 0-1 0-2 ||| 5402 374827 +del ||| some of them ||| 0.00127551 0.130625 2.6679e-06 8.61929e-07 2.718 ||| 0-1 ||| 784 374827 +del ||| some of ||| 0.000526362 0.130625 1.60074e-05 0.000321328 2.718 ||| 0-1 ||| 11399 374827 +del ||| somebody 's ||| 0.333333 0.169811 2.6679e-06 3.33501e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| something about ||| 0.0011236 0.0101916 2.6679e-06 7.77169e-07 2.718 ||| 0-1 ||| 890 374827 +del ||| something of the ||| 0.03125 0.10196 2.6679e-06 5.67078e-05 2.718 ||| 0-1 0-2 ||| 32 374827 +del ||| something of ||| 0.00674157 0.130625 8.00369e-06 0.000163274 2.718 ||| 0-1 ||| 445 374827 +del ||| something to do with the ||| 0.05 0.0389112 2.6679e-06 1.11683e-10 2.718 ||| 0-3 0-4 ||| 20 374827 +del ||| something to say about the ||| 0.0833333 0.0732944 2.6679e-06 2.30913e-11 2.718 ||| 0-4 ||| 12 374827 +del ||| sometimes on ||| 0.047619 0.0140673 2.6679e-06 5.54124e-07 2.718 ||| 0-1 ||| 21 374827 +del ||| somewhat ironic to think of ||| 1 0.130625 2.6679e-06 4.09163e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| song , I ||| 1 0.018018 2.6679e-06 2.19323e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| song , ||| 0.166667 0.018018 2.6679e-06 3.10062e-07 2.718 ||| 0-0 ||| 6 374827 +del ||| song ||| 0.0273973 0.018018 5.33579e-06 2.6e-06 2.718 ||| 0-0 ||| 73 374827 +del ||| soon as the contest ||| 1 0.0732944 2.6679e-06 1.63208e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| soon as the ||| 0.0119048 0.0732944 5.33579e-06 3.26416e-07 2.718 ||| 0-2 ||| 168 374827 +del ||| soon as ||| 0.000619963 0.0004965 2.6679e-06 2.37065e-08 2.718 ||| 0-1 ||| 1613 374827 +del ||| soon before the ||| 0.5 0.0732944 2.6679e-06 8.00015e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| sort of certainty ||| 0.333333 0.130625 2.6679e-06 5.27953e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| sort of ||| 0.00316832 0.130625 2.13432e-05 4.71387e-05 2.718 ||| 0-1 ||| 2525 374827 +del ||| sort will put the ||| 1 0.0732944 2.6679e-06 5.29414e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| sought from ||| 0.1 0.0911315 2.6679e-06 7.02212e-07 2.718 ||| 0-1 ||| 10 374827 +del ||| sound of the ||| 0.111111 0.10196 2.6679e-06 6.08572e-06 2.718 ||| 0-1 0-2 ||| 9 374827 +del ||| sound the ||| 0.0232558 0.0732944 2.6679e-06 2.06306e-05 2.718 ||| 0-1 ||| 43 374827 +del ||| sounded by ||| 0.5 0.0461582 2.6679e-06 6.46792e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| soundings as ||| 0.5 0.0526316 2.6679e-06 1.32657e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| soundings ||| 0.1 0.0526316 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 10 374827 +del ||| source of ||| 0.00111794 0.130625 5.33579e-06 1.87906e-05 2.718 ||| 0-1 ||| 1789 374827 +del ||| sources of ||| 0.000904977 0.130625 2.6679e-06 1.0413e-05 2.718 ||| 0-1 ||| 1105 374827 +del ||| southern ||| 0.00264784 0.211819 1.60074e-05 0.000838 2.718 ||| 0-0 ||| 2266 374827 +del ||| speak - of ||| 1 0.130625 2.6679e-06 1.5055e-07 2.718 ||| 0-2 ||| 1 374827 +del ||| speak about the ||| 0.00763359 0.0732944 2.6679e-06 6.64605e-08 2.718 ||| 0-2 ||| 131 374827 +del ||| speak of the ||| 0.015873 0.10196 2.6679e-06 1.38619e-05 2.718 ||| 0-1 0-2 ||| 63 374827 +del ||| speak of ||| 0.00353357 0.130625 2.6679e-06 3.99115e-05 2.718 ||| 0-1 ||| 283 374827 +del ||| speaker from the ||| 0.0869565 0.082213 5.33579e-06 1.40763e-07 2.718 ||| 0-1 0-2 ||| 23 374827 +del ||| speakers from ||| 0.0178571 0.0911315 2.6679e-06 4.37799e-07 2.718 ||| 0-1 ||| 56 374827 +del ||| speaks of ||| 0.00833333 0.130625 2.6679e-06 2.1239e-06 2.718 ||| 0-1 ||| 120 374827 +del ||| special status of ||| 0.0344828 0.130625 2.6679e-06 2.55285e-09 2.718 ||| 0-2 ||| 29 374827 +del ||| specifically for assent . so Parliament is ||| 1 0.0181517 2.6679e-06 3.36911e-21 2.718 ||| 0-5 ||| 1 374827 +del ||| specifically for assent . so Parliament ||| 1 0.0181517 2.6679e-06 1.07498e-19 2.718 ||| 0-5 ||| 1 374827 +del ||| specification whatsoever of the ||| 1 0.10196 2.6679e-06 4.00182e-12 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| spectre of ||| 0.0102041 0.130625 2.6679e-06 7.37464e-07 2.718 ||| 0-1 ||| 98 374827 +del ||| speech by ||| 0.0138889 0.0461582 5.33579e-06 7.27641e-07 2.718 ||| 0-1 ||| 144 374827 +del ||| speech of a ||| 1 0.130625 2.6679e-06 5.88396e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| speech of ||| 0.0185185 0.130625 2.6679e-06 1.32743e-05 2.718 ||| 0-1 ||| 54 374827 +del ||| speech on ||| 0.00714286 0.0140673 2.6679e-06 4.41338e-07 2.718 ||| 0-1 ||| 140 374827 +del ||| speeches on ||| 0.0192308 0.0140673 2.6679e-06 8.82675e-08 2.718 ||| 0-1 ||| 52 374827 +del ||| speed up their ratification of the ||| 1 0.10196 2.6679e-06 4.00958e-17 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| spending levels ||| 0.1 0.0241496 2.6679e-06 1.61793e-08 2.718 ||| 0-0 ||| 10 374827 +del ||| spending ||| 0.0002918 0.0241496 2.6679e-06 0.0001222 2.718 ||| 0-0 ||| 3427 374827 +del ||| spent in the ||| 0.0217391 0.0458111 2.6679e-06 6.00351e-07 2.718 ||| 0-1 0-2 ||| 46 374827 +del ||| spent on ||| 0.00224215 0.0140673 2.6679e-06 6.28661e-07 2.718 ||| 0-1 ||| 446 374827 +del ||| spent ||| 0.0010981 0.001194 8.00369e-06 5.3e-06 2.718 ||| 0-0 ||| 2732 374827 +del ||| spirit of ||| 0.00198413 0.130625 1.06716e-05 1.73156e-05 2.718 ||| 0-1 ||| 2016 374827 +del ||| spite of the ||| 0.0014771 0.10196 2.6679e-06 1.95685e-06 2.718 ||| 0-1 0-2 ||| 677 374827 +del ||| spite of ||| 0.00058309 0.130625 2.6679e-06 5.63422e-06 2.718 ||| 0-1 ||| 1715 374827 +del ||| spoken then by ||| 1 0.0461582 2.6679e-06 5.80689e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| sponsored form of ||| 0.5 0.130625 2.6679e-06 1.87988e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| sports ||| 0.00105708 0.0321691 2.6679e-06 4.6e-05 2.718 ||| 0-0 ||| 946 374827 +del ||| spot on the ||| 1 0.0436809 2.6679e-06 4.66663e-08 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| square a ||| 0.5 0.0054201 2.6679e-06 1.15247e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| square ||| 0.00738007 0.0054201 5.33579e-06 2.6e-06 2.718 ||| 0-0 ||| 271 374827 +del ||| stable system of ||| 0.142857 0.130625 2.6679e-06 1.09421e-09 2.718 ||| 0-2 ||| 7 374827 +del ||| staff ||| 0.00118413 0.0499678 1.60074e-05 0.000306 2.718 ||| 0-0 ||| 5067 374827 +del ||| stage of the ||| 0.00343643 0.10196 2.6679e-06 1.53372e-05 2.718 ||| 0-1 0-2 ||| 291 374827 +del ||| stage of ||| 0.0012987 0.130625 2.6679e-06 4.41593e-05 2.718 ||| 0-1 ||| 770 374827 +del ||| stage ||| 0.000139743 0.000269 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 7156 374827 +del ||| stages of the ||| 0.00574713 0.10196 2.6679e-06 1.54704e-06 2.718 ||| 0-1 0-2 ||| 174 374827 +del ||| stages of ||| 0.00581395 0.130625 5.33579e-06 4.45428e-06 2.718 ||| 0-1 ||| 344 374827 +del ||| stake in the ||| 0.0188679 0.0732944 2.6679e-06 2.2451e-07 2.718 ||| 0-2 ||| 53 374827 +del ||| stance from the ||| 1 0.0732944 2.6679e-06 1.471e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| stance in the fight ||| 1 0.0732944 2.6679e-06 1.0773e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| stance in the ||| 0.2 0.0732944 2.6679e-06 1.95517e-07 2.718 ||| 0-2 ||| 5 374827 +del ||| stand for anything other than ||| 0.5 0.0313352 2.6679e-06 6.02238e-16 2.718 ||| 0-4 ||| 2 374827 +del ||| stand for ||| 0.00423729 0.0138653 2.6679e-06 1.77298e-06 2.718 ||| 0-1 ||| 236 374827 +del ||| stand in ||| 0.00308642 0.0183279 2.6679e-06 4.44406e-06 2.718 ||| 0-1 ||| 324 374827 +del ||| stand with ||| 0.0163934 0.0045281 2.6679e-06 3.13647e-07 2.718 ||| 0-1 ||| 61 374827 +del ||| standard consequence ||| 0.111111 0.0043873 2.6679e-06 6.4952e-10 2.718 ||| 0-0 ||| 9 374827 +del ||| standard of ||| 0.00380711 0.130625 8.00369e-06 1.38938e-05 2.718 ||| 0-1 ||| 788 374827 +del ||| standard size ||| 0.5 0.0043873 2.6679e-06 6.8816e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| standard ||| 0.0012747 0.0043873 1.06716e-05 1.84e-05 2.718 ||| 0-0 ||| 3138 374827 +del ||| standards of ||| 0.00138313 0.130625 2.6679e-06 2.15634e-05 2.718 ||| 0-1 ||| 723 374827 +del ||| standing on the ||| 0.0434783 0.0436809 2.6679e-06 1.80193e-07 2.718 ||| 0-1 0-2 ||| 23 374827 +del ||| stands at ||| 0.00571429 0.0010184 2.6679e-06 1.34609e-08 2.718 ||| 0-1 ||| 175 374827 +del ||| stands out from the ||| 0.5 0.082213 2.6679e-06 1.58871e-09 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| standstill during the ||| 1 0.0732944 2.6679e-06 2.52068e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| start of the ||| 0.0015674 0.10196 2.6679e-06 1.42307e-05 2.718 ||| 0-1 0-2 ||| 638 374827 +del ||| start of ||| 0.000783085 0.130625 2.6679e-06 4.09735e-05 2.718 ||| 0-1 ||| 1277 374827 +del ||| start on ||| 0.00617284 0.0140673 2.6679e-06 1.36226e-06 2.718 ||| 0-1 ||| 162 374827 +del ||| starting point of ||| 0.025641 0.130625 2.6679e-06 1.1793e-08 2.718 ||| 0-2 ||| 39 374827 +del ||| state both out of the ||| 1 0.10196 2.6679e-06 1.64208e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| state of affairs ||| 0.0017331 0.130625 2.6679e-06 9.12043e-09 2.718 ||| 0-1 ||| 577 374827 +del ||| state of the ||| 0.00614754 0.10196 8.00369e-06 2.58797e-05 2.718 ||| 0-1 0-2 ||| 488 374827 +del ||| state of ||| 0.00230503 0.130625 1.60074e-05 7.45133e-05 2.718 ||| 0-1 ||| 2603 374827 +del ||| state security services ||| 0.142857 0.0007463 2.6679e-06 1.14241e-13 2.718 ||| 0-0 ||| 7 374827 +del ||| state security ||| 0.0217391 0.0007463 2.6679e-06 1.29086e-09 2.718 ||| 0-0 ||| 46 374827 +del ||| state ||| 0.000190743 0.0007463 8.00369e-06 1.58e-05 2.718 ||| 0-0 ||| 15728 374827 +del ||| state-of-the-art ||| 0.00909091 0.0240964 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 110 374827 +del ||| stated in ||| 0.00137931 0.0183279 2.6679e-06 1.68001e-06 2.718 ||| 0-1 ||| 725 374827 +del ||| statement by ||| 0.00454545 0.0461582 5.33579e-06 1.20465e-06 2.718 ||| 0-1 ||| 440 374827 +del ||| statement in the ||| 0.02 0.0458111 2.6679e-06 6.97756e-07 2.718 ||| 0-1 0-2 ||| 50 374827 +del ||| statement of ||| 0.00589391 0.130625 8.00369e-06 2.19764e-05 2.718 ||| 0-1 ||| 509 374827 +del ||| statement ||| 0.000106101 0.000353 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 9425 374827 +del ||| statements on ||| 0.00632911 0.0140673 2.6679e-06 3.1384e-07 2.718 ||| 0-1 ||| 158 374827 +del ||| states in the ||| 0.00714286 0.0458111 2.6679e-06 7.04312e-07 2.718 ||| 0-1 0-2 ||| 140 374827 +del ||| station of the ||| 1 0.10196 2.6679e-06 6.65945e-07 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| status of the ||| 0.00409836 0.10196 2.6679e-06 1.0358e-05 2.718 ||| 0-1 0-2 ||| 244 374827 +del ||| status of ||| 0.00174368 0.130625 5.33579e-06 2.9823e-05 2.718 ||| 0-1 ||| 1147 374827 +del ||| status ||| 0.000157406 0.0029101 2.6679e-06 2.1e-05 2.718 ||| 0-0 ||| 6353 374827 +del ||| steel ||| 0.00597372 0.160067 1.33395e-05 0.0002496 2.718 ||| 0-0 ||| 837 374827 +del ||| stems from both the ||| 1 0.0732944 2.6679e-06 3.98399e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| stems from the ||| 0.010989 0.082213 2.6679e-06 3.2368e-08 2.718 ||| 0-1 0-2 ||| 91 374827 +del ||| step in the ||| 0.000998004 0.0458111 2.6679e-06 1.38146e-06 2.718 ||| 0-1 0-2 ||| 1002 374827 +del ||| step of ||| 0.0163934 0.130625 2.6679e-06 4.35104e-05 2.718 ||| 0-1 ||| 61 374827 +del ||| stepped from the ||| 0.333333 0.082213 2.6679e-06 7.0758e-08 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| steps in ||| 0.00420168 0.00925205 2.6679e-06 3.50563e-08 2.718 ||| 0-0 0-1 ||| 238 374827 +del ||| still for ||| 0.0833333 0.0138653 2.6679e-06 8.10323e-06 2.718 ||| 0-1 ||| 12 374827 +del ||| still the business ||| 1 0.0732944 2.6679e-06 3.26736e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| still the ||| 0.00362319 0.0732944 2.6679e-06 0.000261598 2.718 ||| 0-1 ||| 276 374827 +del ||| still travel by sea ||| 1 0.0461582 2.6679e-06 1.37651e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| still travel by ||| 1 0.0461582 2.6679e-06 4.6037e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| stimulants from ||| 1 0.0911315 2.6679e-06 1.51712e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| stock and ||| 0.0196078 0.0118681 2.6679e-06 4.44669e-07 2.718 ||| 0-0 ||| 51 374827 +del ||| stock ||| 0.000829876 0.0118681 2.6679e-06 3.55e-05 2.718 ||| 0-0 ||| 1205 374827 +del ||| stocks in the ||| 0.0294118 0.0183279 2.6679e-06 3.64213e-08 2.718 ||| 0-1 ||| 34 374827 +del ||| stocks in ||| 0.0111111 0.0183279 2.6679e-06 5.93261e-07 2.718 ||| 0-1 ||| 90 374827 +del ||| store by ||| 0.00970874 0.0461582 2.6679e-06 2.44164e-07 2.718 ||| 0-1 ||| 103 374827 +del ||| straight after the European ||| 0.5 0.0400553 2.6679e-06 1.08098e-11 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| straightaway by ||| 1 0.0461582 2.6679e-06 4.68924e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| strategy for reduced ||| 0.5 0.0069628 2.6679e-06 6.54541e-13 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| strategy for ||| 0.000938967 0.0069628 2.6679e-06 1.39859e-08 2.718 ||| 0-0 0-1 ||| 1065 374827 +del ||| strategy of ||| 0.00258398 0.130625 2.6679e-06 1.73156e-05 2.718 ||| 0-1 ||| 387 374827 +del ||| strength on the part ||| 0.125 0.0140673 2.6679e-06 1.7802e-11 2.718 ||| 0-1 ||| 8 374827 +del ||| strength on the ||| 0.0909091 0.0140673 2.6679e-06 1.49321e-08 2.718 ||| 0-1 ||| 11 374827 +del ||| strength on ||| 0.0769231 0.0140673 2.6679e-06 2.43226e-07 2.718 ||| 0-1 ||| 13 374827 +del ||| strengthen the ||| 0.000477099 0.0732944 2.6679e-06 6.73793e-06 2.718 ||| 0-1 ||| 2096 374827 +del ||| strengthening of the ||| 0.0021645 0.10196 2.6679e-06 1.33189e-06 2.718 ||| 0-1 0-2 ||| 462 374827 +del ||| stretch of a ||| 1 0.130625 2.6679e-06 1.22909e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| stretch of ||| 0.027027 0.130625 2.6679e-06 2.77286e-06 2.718 ||| 0-1 ||| 37 374827 +del ||| strictly ||| 0.000724638 0.0025625 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 1380 374827 +del ||| strip next to a ||| 1 0.0281625 2.6679e-06 1.21514e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| strip next to ||| 1 0.0281625 2.6679e-06 2.74138e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| strip next ||| 1 0.0281625 2.6679e-06 3.08512e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| stripped of all ||| 0.0909091 0.130625 2.6679e-06 4.04238e-09 2.718 ||| 0-1 ||| 11 374827 +del ||| stripped of ||| 0.030303 0.130625 2.6679e-06 8.55458e-07 2.718 ||| 0-1 ||| 33 374827 +del ||| strong grounds for ||| 0.125 0.0138653 2.6679e-06 9.56317e-11 2.718 ||| 0-2 ||| 8 374827 +del ||| strongly about as the ||| 1 0.0732944 2.6679e-06 2.40098e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| strongly on this issue of ||| 1 0.130625 2.6679e-06 4.62312e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| struck by the ||| 0.0185185 0.0597263 2.6679e-06 1.4377e-07 2.718 ||| 0-1 0-2 ||| 54 374827 +del ||| struck off the ||| 0.125 0.0732944 2.6679e-06 3.61875e-09 2.718 ||| 0-2 ||| 8 374827 +del ||| struck the region at dawn ||| 0.333333 0.0732944 2.6679e-06 8.01889e-18 2.718 ||| 0-1 ||| 3 374827 +del ||| struck the region at ||| 0.333333 0.0732944 2.6679e-06 3.64495e-12 2.718 ||| 0-1 ||| 3 374827 +del ||| struck the region ||| 0.2 0.0732944 2.6679e-06 8.70457e-10 2.718 ||| 0-1 ||| 5 374827 +del ||| struck the ||| 0.0140845 0.0732944 2.6679e-06 8.89128e-06 2.718 ||| 0-1 ||| 71 374827 +del ||| structure , that exists in the ||| 1 0.0458111 2.6679e-06 3.1347e-14 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| structure of ||| 0.00188324 0.130625 2.6679e-06 8.82007e-06 2.718 ||| 0-1 ||| 531 374827 +del ||| structured ||| 0.00148368 0.0028129 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 674 374827 +del ||| structures in ||| 0.0133333 0.0183279 2.6679e-06 5.82474e-07 2.718 ||| 0-1 ||| 75 374827 +del ||| struggle for ||| 0.00387597 0.0138653 2.6679e-06 1.4739e-07 2.718 ||| 0-1 ||| 258 374827 +del ||| stuck in ||| 0.00862069 0.0183279 2.6679e-06 2.72361e-07 2.718 ||| 0-1 ||| 116 374827 +del ||| study contained in the ||| 1 0.0458111 2.6679e-06 2.15265e-11 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| study of ||| 0.00389105 0.130625 2.6679e-06 9.97051e-06 2.718 ||| 0-1 ||| 257 374827 +del ||| study the ||| 0.00526316 0.0732944 2.6679e-06 1.17393e-05 2.718 ||| 0-1 ||| 190 374827 +del ||| subject for the ||| 0.0666667 0.0435798 2.6679e-06 2.017e-06 2.718 ||| 0-1 0-2 ||| 15 374827 +del ||| subject of a ||| 0.00369004 0.130625 2.6679e-06 7.05814e-06 2.718 ||| 0-1 ||| 271 374827 +del ||| subject of information ||| 0.166667 0.130625 2.6679e-06 2.63531e-08 2.718 ||| 0-1 ||| 6 374827 +del ||| subject of the Law ||| 1 0.130625 2.6679e-06 8.40703e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| subject of the ||| 0.00920245 0.10196 1.60074e-05 5.53042e-05 2.718 ||| 0-1 0-2 ||| 652 374827 +del ||| subject of this report ||| 0.0238095 0.130625 2.6679e-06 4.21733e-10 2.718 ||| 0-1 ||| 42 374827 +del ||| subject of this ||| 0.00704225 0.130625 2.6679e-06 1.02887e-06 2.718 ||| 0-1 ||| 142 374827 +del ||| subject of ||| 0.00569653 0.130625 5.86937e-05 0.000159233 2.718 ||| 0-1 ||| 3862 374827 +del ||| subjective viewpoint of ||| 0.5 0.130625 2.6679e-06 1.941e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| submitted by my honourable friend ||| 1 0.0461582 2.6679e-06 3.21484e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| submitted by my honourable ||| 1 0.0461582 2.6679e-06 2.79551e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| submitted by my ||| 0.0909091 0.0461582 2.6679e-06 5.35538e-10 2.718 ||| 0-1 ||| 11 374827 +del ||| submitted by the ||| 0.0154321 0.0597263 1.33395e-05 2.89225e-07 2.718 ||| 0-1 0-2 ||| 324 374827 +del ||| submitted by ||| 0.00803859 0.0461582 1.33395e-05 8.32745e-07 2.718 ||| 0-1 ||| 622 374827 +del ||| subordinate all kinds of ||| 1 0.130625 2.6679e-06 1.65529e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| subparagraph of ||| 0.0588235 0.130625 2.6679e-06 3.24484e-07 2.718 ||| 0-1 ||| 17 374827 +del ||| subsidiary parties to the ||| 1 0.0732944 2.6679e-06 3.17136e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| substance in ||| 0.0232558 0.0183279 2.6679e-06 7.95509e-07 2.718 ||| 0-1 ||| 43 374827 +del ||| substance of ||| 0.00179856 0.130625 2.6679e-06 8.70207e-06 2.718 ||| 0-1 ||| 556 374827 +del ||| substantial degree from the ||| 1 0.0732944 2.6679e-06 2.31622e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| substantial sum of ||| 0.25 0.130625 2.6679e-06 3.71325e-10 2.718 ||| 0-2 ||| 4 374827 +del ||| substantial ||| 0.000548546 0.0014577 5.33579e-06 7.9e-06 2.718 ||| 0-0 ||| 3646 374827 +del ||| such , in ||| 0.1 0.0183279 2.6679e-06 6.65331e-06 2.718 ||| 0-2 ||| 10 374827 +del ||| such a Council ||| 0.5 0.0707819 2.6679e-06 8.68205e-07 2.718 ||| 0-2 ||| 2 374827 +del ||| such a ||| 0.000136129 0.0008087 2.6679e-06 1.74719e-06 2.718 ||| 0-1 ||| 7346 374827 +del ||| such an ||| 0.000557103 0.0008398 2.6679e-06 3.72195e-07 2.718 ||| 0-1 ||| 1795 374827 +del ||| such as the ||| 0.00112794 0.0732944 1.86753e-05 7.33249e-06 2.718 ||| 0-2 ||| 6206 374827 +del ||| such as those of ||| 0.0185185 0.130625 2.6679e-06 4.50948e-09 2.718 ||| 0-3 ||| 54 374827 +del ||| such by ||| 0.0540541 0.0461582 5.33579e-06 3.34537e-05 2.718 ||| 0-1 ||| 37 374827 +del ||| such income ||| 1 0.005614 2.6679e-06 6.51703e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| such of ||| 1 0.130625 2.6679e-06 0.000610296 2.718 ||| 0-1 ||| 1 374827 +del ||| such that the ||| 0.0196078 0.0732944 2.6679e-06 1.20874e-05 2.718 ||| 0-2 ||| 51 374827 +del ||| suffer from ||| 0.00224719 0.0911315 2.6679e-06 7.71566e-07 2.718 ||| 0-1 ||| 445 374827 +del ||| suffered by the ||| 0.015748 0.0597263 5.33579e-06 1.92068e-07 2.718 ||| 0-1 0-2 ||| 127 374827 +del ||| suffered the effects of ||| 0.142857 0.130625 2.6679e-06 3.36308e-11 2.718 ||| 0-3 ||| 7 374827 +del ||| sufferers of the ||| 0.5 0.10196 2.6679e-06 7.17172e-08 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| suffering at the hands of men ||| 1 0.130625 2.6679e-06 1.43916e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| suffering at the hands of ||| 0.333333 0.130625 2.6679e-06 3.38626e-13 2.718 ||| 0-4 ||| 3 374827 +del ||| sufficiently serviced ||| 0.25 0.0526316 2.6679e-06 2.431e-11 2.718 ||| 0-1 ||| 4 374827 +del ||| suffocated by ||| 0.0666667 0.0461582 2.6679e-06 6.46792e-09 2.718 ||| 0-1 ||| 15 374827 +del ||| sugar into line ||| 1 0.16522 2.6679e-06 1.81417e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| sugar into ||| 1 0.16522 2.6679e-06 6.16225e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| sugar ||| 0.00270709 0.16522 1.33395e-05 0.0006002 2.718 ||| 0-0 ||| 1847 374827 +del ||| suggest that the ||| 0.0075188 0.0732944 2.6679e-06 2.58819e-07 2.718 ||| 0-2 ||| 133 374827 +del ||| suggested by this ||| 0.142857 0.0247368 2.6679e-06 7.3506e-10 2.718 ||| 0-1 0-2 ||| 7 374827 +del ||| suggested by ||| 0.00297619 0.0461582 2.6679e-06 3.20162e-07 2.718 ||| 0-1 ||| 336 374827 +del ||| sum of EUR 1 ||| 0.5 0.130625 2.6679e-06 2.11536e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| sum of EUR ||| 0.0357143 0.130625 2.6679e-06 3.32081e-09 2.718 ||| 0-1 ||| 28 374827 +del ||| sum of ||| 0.00858369 0.130625 1.06716e-05 1.24189e-05 2.718 ||| 0-1 ||| 466 374827 +del ||| summer of ||| 0.0070922 0.130625 2.6679e-06 2.33039e-06 2.718 ||| 0-1 ||| 141 374827 +del ||| summer ||| 0.000520291 0.0126509 2.6679e-06 2.89e-05 2.718 ||| 0-0 ||| 1922 374827 +del ||| supplied by the ||| 0.0126582 0.0597263 2.6679e-06 7.07619e-08 2.718 ||| 0-1 0-2 ||| 79 374827 +del ||| supply of ||| 0.00149701 0.130625 2.6679e-06 1.51918e-05 2.718 ||| 0-1 ||| 668 374827 +del ||| support for ||| 0.000446229 0.0138653 8.00369e-06 3.6783e-06 2.718 ||| 0-1 ||| 6723 374827 +del ||| support from ||| 0.00126582 0.0911315 2.6679e-06 7.41007e-06 2.718 ||| 0-1 ||| 790 374827 +del ||| support of the ||| 0.00136986 0.10196 5.33579e-06 3.50287e-05 2.718 ||| 0-1 0-2 ||| 1460 374827 +del ||| support of ||| 0.00105671 0.130625 8.00369e-06 0.000100856 2.718 ||| 0-1 ||| 2839 374827 +del ||| support the direction they ||| 1 0.0732944 2.6679e-06 3.51545e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| support the direction ||| 0.5 0.0732944 2.6679e-06 1.07704e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| support the meetings could ||| 1 0.0732944 2.6679e-06 1.85771e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| support the meetings ||| 1 0.0732944 2.6679e-06 2.61244e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| support the ||| 0.00109735 0.0732944 1.86753e-05 0.000118747 2.718 ||| 0-1 ||| 6379 374827 +del ||| supported by ||| 0.0010983 0.0461582 5.33579e-06 8.37596e-07 2.718 ||| 0-1 ||| 1821 374827 +del ||| supporting the ||| 0.000664894 0.0732944 2.6679e-06 1.11141e-05 2.718 ||| 0-1 ||| 1504 374827 +del ||| sure , of the ||| 1 0.10196 2.6679e-06 2.12838e-06 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| sure the ||| 0.00534759 0.0732944 2.6679e-06 6.05024e-05 2.718 ||| 0-1 ||| 187 374827 +del ||| surely be the ||| 0.142857 0.0732944 2.6679e-06 4.00951e-07 2.718 ||| 0-2 ||| 7 374827 +del ||| surprised by ||| 0.00813008 0.0461582 2.6679e-06 8.73169e-08 2.718 ||| 0-1 ||| 123 374827 +del ||| surrounding the ||| 0.0244898 0.0410486 3.20148e-05 9.13441e-06 2.718 ||| 0-0 0-1 ||| 490 374827 +del ||| surrounding this ||| 0.0119048 0.0060591 2.6679e-06 6.03822e-08 2.718 ||| 0-0 0-1 ||| 84 374827 +del ||| surrounding ||| 0.00241546 0.0088028 8.00369e-06 2.63e-05 2.718 ||| 0-0 ||| 1242 374827 +del ||| suspension of ||| 0.00241546 0.130625 2.6679e-06 1.17994e-06 2.718 ||| 0-1 ||| 414 374827 +del ||| sustainable ||| 0.000244559 0.0084468 5.33579e-06 0.0001287 2.718 ||| 0-0 ||| 8178 374827 +del ||| swathes of the ||| 0.0625 0.10196 2.6679e-06 4.09812e-08 2.718 ||| 0-1 0-2 ||| 16 374827 +del ||| sweeteners ( COM ( 96 ) 0303 ||| 0.5 1 2.6679e-06 3.93165e-32 2.718 ||| 0-6 ||| 2 374827 +del ||| system at ||| 0.027027 0.0006888 2.6679e-06 1.10129e-07 2.718 ||| 0-0 ||| 37 374827 +del ||| system crisis ||| 0.5 0.0006888 2.6679e-06 1.90149e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| system from ||| 0.030303 0.0911315 2.6679e-06 6.04466e-06 2.718 ||| 0-1 ||| 33 374827 +del ||| system of the ||| 0.0243902 0.10196 2.6679e-06 2.85742e-05 2.718 ||| 0-1 0-2 ||| 41 374827 +del ||| system of ||| 0.000724113 0.130625 5.33579e-06 8.22715e-05 2.718 ||| 0-1 ||| 2762 374827 +del ||| system operates ||| 0.25 0.0006888 2.6679e-06 3.1297e-10 2.718 ||| 0-0 ||| 4 374827 +del ||| system ||| 0.000174216 0.0006888 1.60074e-05 2.63e-05 2.718 ||| 0-0 ||| 34440 374827 +del ||| systems of ||| 0.003125 0.130625 2.6679e-06 1.54867e-05 2.718 ||| 0-1 ||| 320 374827 +del ||| tabled by the Committee on ||| 0.00657895 0.0461582 2.6679e-06 8.281e-14 2.718 ||| 0-1 ||| 152 374827 +del ||| tabled by the Committee ||| 0.0060241 0.0461582 2.6679e-06 1.23763e-11 2.718 ||| 0-1 ||| 166 374827 +del ||| tabled by the ||| 0.0210177 0.0597263 5.06901e-05 4.58829e-07 2.718 ||| 0-1 0-2 ||| 904 374827 +del ||| tabled by ||| 0.0142421 0.0461582 7.47011e-05 1.32107e-06 2.718 ||| 0-1 ||| 1966 374827 +del ||| tabled on the ||| 0.037037 0.0436809 2.6679e-06 2.78295e-07 2.718 ||| 0-1 0-2 ||| 27 374827 +del ||| tackle the ||| 0.00424628 0.0732944 1.06716e-05 1.26076e-05 2.718 ||| 0-1 ||| 942 374827 +del ||| tackling the ||| 0.00182149 0.0732944 2.6679e-06 7.11997e-06 2.718 ||| 0-1 ||| 549 374827 +del ||| tactics of the ||| 0.0909091 0.10196 2.6679e-06 6.24964e-07 2.718 ||| 0-1 0-2 ||| 11 374827 +del ||| tactics used in the last war ||| 0.125 0.0458111 2.6679e-06 1.98592e-19 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| tactics used in the last ||| 0.125 0.0458111 2.6679e-06 5.35288e-15 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| tactics used in the ||| 0.125 0.0458111 2.6679e-06 2.45095e-11 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| take account of the ||| 0.0011655 0.10196 2.6679e-06 4.7423e-08 2.718 ||| 0-2 0-3 ||| 858 374827 +del ||| take account of ||| 0.00306937 0.130625 1.33395e-05 1.36541e-07 2.718 ||| 0-2 ||| 1629 374827 +del ||| take action to that end in order ||| 1 0.0183279 2.6679e-06 4.54613e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| take action to that end in ||| 1 0.0183279 2.6679e-06 8.53573e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| take from the ||| 0.2 0.082213 2.6679e-06 1.21192e-05 2.718 ||| 0-1 0-2 ||| 5 374827 +del ||| take in the ||| 0.0140845 0.0458111 2.6679e-06 1.5079e-05 2.718 ||| 0-1 0-2 ||| 71 374827 +del ||| take into account the ||| 0.00141643 0.0732944 2.6679e-06 1.65056e-10 2.718 ||| 0-3 ||| 706 374827 +del ||| take it from the draft ||| 1 0.082213 2.6679e-06 1.13147e-11 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| take it from the ||| 1 0.082213 2.6679e-06 2.15518e-07 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| take it from ||| 0.166667 0.0911315 5.33579e-06 6.20524e-07 2.718 ||| 0-2 ||| 12 374827 +del ||| take of the ||| 0.1875 0.10196 8.00369e-06 0.00016495 2.718 ||| 0-1 0-2 ||| 16 374827 +del ||| take of wishes expressed ||| 0.25 0.130625 2.6679e-06 2.44202e-12 2.718 ||| 0-1 ||| 4 374827 +del ||| take of wishes ||| 0.25 0.130625 2.6679e-06 2.51236e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| take of ||| 0.0344828 0.130625 2.6679e-06 0.000474927 2.718 ||| 0-1 ||| 29 374827 +del ||| take on ||| 0.00224972 0.0140673 5.33579e-06 1.57901e-05 2.718 ||| 0-1 ||| 889 374827 +del ||| take over the ||| 0.0108696 0.0732944 2.6679e-06 2.69244e-07 2.718 ||| 0-2 ||| 92 374827 +del ||| take place from ||| 0.0714286 0.0911315 2.6679e-06 5.25152e-08 2.718 ||| 0-2 ||| 14 374827 +del ||| take place on ||| 0.00843882 0.0140673 5.33579e-06 2.37641e-08 2.718 ||| 0-2 ||| 237 374827 +del ||| take the ||| 0.00226501 0.0732944 2.13432e-05 0.000559178 2.718 ||| 0-1 ||| 3532 374827 +del ||| taken around the ||| 0.5 0.0732944 2.6679e-06 4.21682e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| taken at the ||| 0.0241935 0.0732944 8.00369e-06 1.32564e-06 2.718 ||| 0-2 ||| 124 374827 +del ||| taken by the ||| 0.017673 0.0597263 6.40295e-05 5.11901e-06 2.718 ||| 0-1 0-2 ||| 1358 374827 +del ||| taken by ||| 0.00447027 0.0461582 2.6679e-05 1.47388e-05 2.718 ||| 0-1 ||| 2237 374827 +del ||| taken care of in the ||| 0.5 0.0740824 2.6679e-06 2.55606e-10 2.718 ||| 0-2 0-3 0-4 ||| 2 374827 +del ||| taken for a ride ||| 0.0434783 0.0138653 2.6679e-06 2.52109e-12 2.718 ||| 0-1 ||| 23 374827 +del ||| taken for a ||| 0.1 0.0138653 2.6679e-06 4.34671e-07 2.718 ||| 0-1 ||| 10 374827 +del ||| taken for ||| 0.00487805 0.0138653 2.6679e-06 9.80628e-06 2.718 ||| 0-1 ||| 205 374827 +del ||| taken from the ||| 0.0769231 0.082213 1.33395e-05 6.86127e-06 2.718 ||| 0-1 0-2 ||| 65 374827 +del ||| taken heed of ||| 0.2 0.130625 2.6679e-06 1.15618e-09 2.718 ||| 0-2 ||| 5 374827 +del ||| taken in the ||| 0.0226537 0.0458111 1.86753e-05 8.53698e-06 2.718 ||| 0-1 0-2 ||| 309 374827 +del ||| taken in ||| 0.00185357 0.0183279 5.33579e-06 2.45799e-05 2.718 ||| 0-1 ||| 1079 374827 +del ||| taken of the ||| 0.0571429 0.10196 1.06716e-05 9.3386e-05 2.718 ||| 0-1 0-2 ||| 70 374827 +del ||| taken of ||| 0.0166667 0.130625 1.06716e-05 0.000268879 2.718 ||| 0-1 ||| 240 374827 +del ||| taken off the ||| 0.0784314 0.0732944 1.06716e-05 1.28847e-07 2.718 ||| 0-2 ||| 51 374827 +del ||| taken off this ||| 0.5 0.0033154 2.6679e-06 8.51734e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| taken on ||| 0.00241255 0.0140673 5.33579e-06 8.93954e-06 2.718 ||| 0-1 ||| 829 374827 +del ||| taken out of the ||| 0.0625 0.10196 5.33579e-06 3.57706e-07 2.718 ||| 0-2 0-3 ||| 32 374827 +del ||| taken over ||| 0.00396825 0.006517 2.6679e-06 2.90951e-07 2.718 ||| 0-1 ||| 252 374827 +del ||| taken to the ||| 0.0163934 0.0732944 2.6679e-06 2.81306e-05 2.718 ||| 0-2 ||| 61 374827 +del ||| taken under the ||| 0.025 0.0732944 2.6679e-06 1.13588e-07 2.718 ||| 0-2 ||| 40 374827 +del ||| taken under ||| 0.0149254 0.014966 2.6679e-06 7.24278e-07 2.718 ||| 0-1 ||| 67 374827 +del ||| taken up by ||| 0.00628931 0.0461582 2.6679e-06 5.02666e-08 2.718 ||| 0-2 ||| 159 374827 +del ||| takes care of the ||| 0.2 0.10196 2.6679e-06 1.34355e-09 2.718 ||| 0-2 0-3 ||| 5 374827 +del ||| takes little heed of ||| 1 0.130625 2.6679e-06 2.65325e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| takes place in ||| 0.00636943 0.0183279 2.6679e-06 5.24351e-09 2.718 ||| 0-2 ||| 157 374827 +del ||| taking account of the ||| 0.00324675 0.10196 2.6679e-06 1.25185e-08 2.718 ||| 0-2 0-3 ||| 308 374827 +del ||| taking advantage of the resulting ||| 1 0.10196 2.6679e-06 1.00005e-13 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| taking advantage of the ||| 0.0181818 0.10196 5.33579e-06 2.20761e-09 2.718 ||| 0-2 0-3 ||| 110 374827 +del ||| taking into account the ||| 0.00166667 0.0732944 2.6679e-06 4.35707e-11 2.718 ||| 0-3 ||| 600 374827 +del ||| taking place in the ||| 0.0121951 0.0458111 5.33579e-06 5.99064e-09 2.718 ||| 0-2 0-3 ||| 164 374827 +del ||| taking place in ||| 0.00188324 0.0183279 2.6679e-06 1.72484e-08 2.718 ||| 0-2 ||| 531 374827 +del ||| taking place on ||| 0.0149254 0.0140673 2.6679e-06 6.27312e-09 2.718 ||| 0-2 ||| 67 374827 +del ||| taking the ||| 0.00111607 0.0732944 2.6679e-06 0.000147609 2.718 ||| 0-1 ||| 896 374827 +del ||| taking up the ||| 0.0135135 0.0732944 2.6679e-06 5.03421e-07 2.718 ||| 0-2 ||| 74 374827 +del ||| talk about the ||| 0.003663 0.0732944 5.33579e-06 3.94441e-08 2.718 ||| 0-2 ||| 546 374827 +del ||| talk about ||| 0.00082713 0.0101916 5.33579e-06 1.12749e-07 2.718 ||| 0-1 ||| 2418 374827 +del ||| talking about ||| 0.000504159 0.0101916 5.33579e-06 1.53609e-07 2.718 ||| 0-1 ||| 3967 374827 +del ||| tanker ||| 0.0111111 0.0087336 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 90 374827 +del ||| target in any one country ||| 1 0.0014582 2.6679e-06 3.20456e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| target in any one ||| 1 0.0014582 2.6679e-06 8.90402e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| target in any ||| 1 0.0014582 2.6679e-06 2.13628e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| target in ||| 0.0333333 0.0014582 2.6679e-06 1.4127e-07 2.718 ||| 0-0 ||| 30 374827 +del ||| target of a ||| 0.02 0.130625 2.6679e-06 4.94253e-07 2.718 ||| 0-1 ||| 50 374827 +del ||| target of ||| 0.00430108 0.130625 5.33579e-06 1.11505e-05 2.718 ||| 0-1 ||| 465 374827 +del ||| target ||| 0.000562114 0.0014582 5.33579e-06 6.6e-06 2.718 ||| 0-0 ||| 3558 374827 +del ||| targeted at the ||| 0.0169492 0.0732944 2.6679e-06 4.08672e-08 2.718 ||| 0-2 ||| 59 374827 +del ||| tarnishes the ||| 0.2 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-1 ||| 5 374827 +del ||| task force , the ||| 0.5 0.0732944 2.6679e-06 8.8824e-10 2.718 ||| 0-3 ||| 2 374827 +del ||| task force ’ s ||| 1 0.137519 2.6679e-06 1.25599e-12 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| task of carrying out ||| 0.111111 0.130625 2.6679e-06 8.61332e-12 2.718 ||| 0-1 ||| 9 374827 +del ||| task of carrying ||| 0.5 0.130625 2.6679e-06 2.24867e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| task of ||| 0.00158856 0.130625 5.33579e-06 3.71682e-05 2.718 ||| 0-1 ||| 1259 374827 +del ||| tax ( VAT ||| 0.333333 0.0002898 2.6679e-06 1.72328e-14 2.718 ||| 0-1 ||| 3 374827 +del ||| tax ( ||| 0.166667 0.0002898 2.6679e-06 2.07624e-09 2.718 ||| 0-1 ||| 6 374827 +del ||| tax on ||| 0.00166667 0.0140673 2.6679e-06 6.20815e-07 2.718 ||| 0-1 ||| 600 374827 +del ||| tax payers ||| 0.0222222 0.0038709 2.6679e-06 8.092e-11 2.718 ||| 0-0 ||| 45 374827 +del ||| tax ||| 0.000588755 0.0038709 1.60074e-05 5.78e-05 2.718 ||| 0-0 ||| 10191 374827 +del ||| teach the ||| 0.0625 0.0732944 2.6679e-06 1.00722e-06 2.718 ||| 0-1 ||| 16 374827 +del ||| teacher ||| 0.015544 0.10582 8.00369e-06 5.25e-05 2.718 ||| 0-0 ||| 193 374827 +del ||| telephone by ||| 0.5 0.0461582 2.6679e-06 9.37848e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| television corporation ||| 0.5 0.0805687 2.6679e-06 1.5164e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| ten years from now , ||| 0.333333 0.0911315 2.6679e-06 1.0149e-14 2.718 ||| 0-2 ||| 3 374827 +del ||| ten years from now ||| 0.142857 0.0911315 2.6679e-06 8.51034e-14 2.718 ||| 0-2 ||| 7 374827 +del ||| ten years from ||| 0.0625 0.0911315 2.6679e-06 4.13143e-11 2.718 ||| 0-2 ||| 16 374827 +del ||| tendencies of the ||| 0.166667 0.10196 2.6679e-06 3.68831e-07 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| tender under the current ||| 1 0.0732944 2.6679e-06 1.5608e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| tender under the ||| 0.5 0.0732944 2.6679e-06 9.47089e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| tens of ||| 0.00138504 0.130625 2.6679e-06 1.91741e-06 2.718 ||| 0-1 ||| 722 374827 +del ||| tense of ||| 1 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| term than ' ||| 1 0.0303522 2.6679e-06 1.21508e-09 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| termed ' ||| 0.027027 0.0293692 2.6679e-06 4.27329e-08 2.718 ||| 0-1 ||| 37 374827 +del ||| terms by ||| 0.0588235 0.0461582 2.6679e-06 1.7748e-05 2.718 ||| 0-1 ||| 17 374827 +del ||| terms of providing ||| 0.0263158 0.130625 2.6679e-06 2.97226e-08 2.718 ||| 0-1 ||| 38 374827 +del ||| terms of the continued ||| 0.0588235 0.130625 2.6679e-06 6.798e-10 2.718 ||| 0-1 ||| 17 374827 +del ||| terms of the ||| 0.00658472 0.10196 4.00185e-05 0.000112453 2.718 ||| 0-1 0-2 ||| 2278 374827 +del ||| terms of their ||| 0.00454545 0.130625 2.6679e-06 3.75289e-07 2.718 ||| 0-1 ||| 220 374827 +del ||| terms of ||| 0.00427425 0.130625 0.000130727 0.000323776 2.718 ||| 0-1 ||| 11464 374827 +del ||| terms with ||| 0.00806452 0.0045281 2.6679e-06 2.08895e-06 2.718 ||| 0-1 ||| 124 374827 +del ||| territory of the ||| 0.00220751 0.10196 2.6679e-06 3.1658e-06 2.718 ||| 0-1 0-2 ||| 453 374827 +del ||| test by which ||| 0.5 0.0461582 2.6679e-06 3.40643e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| test by ||| 0.25 0.0461582 2.6679e-06 4.01011e-07 2.718 ||| 0-1 ||| 4 374827 +del ||| testament to the ||| 0.04 0.0732944 2.6679e-06 4.32066e-08 2.718 ||| 0-2 ||| 25 374827 +del ||| tested means of repression - ||| 0.5 0.130625 2.6679e-06 3.04615e-17 2.718 ||| 0-2 ||| 2 374827 +del ||| tested means of repression ||| 0.5 0.130625 2.6679e-06 8.07548e-15 2.718 ||| 0-2 ||| 2 374827 +del ||| tested means of ||| 0.333333 0.130625 2.6679e-06 2.01887e-09 2.718 ||| 0-2 ||| 3 374827 +del ||| testing the ||| 0.0333333 0.0732944 2.6679e-06 2.50067e-06 2.718 ||| 0-1 ||| 30 374827 +del ||| tests for the ||| 0.166667 0.0435798 2.6679e-06 6.20269e-08 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| text approved by ||| 0.025 0.0461582 2.6679e-06 6.38461e-11 2.718 ||| 0-2 ||| 40 374827 +del ||| text of the ||| 0.00259067 0.10196 5.33579e-06 8.85195e-06 2.718 ||| 0-1 0-2 ||| 772 374827 +del ||| text should be added to the end ||| 1 0.0732944 2.6679e-06 6.64269e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| text should be added to the ||| 1 0.0732944 2.6679e-06 1.5267e-14 2.718 ||| 0-5 ||| 1 374827 +del ||| texts of the ||| 0.0416667 0.10196 2.6679e-06 1.14747e-06 2.718 ||| 0-1 0-2 ||| 24 374827 +del ||| textual ||| 0.03125 0.190476 2.6679e-06 1.05e-05 2.718 ||| 0-0 ||| 32 374827 +del ||| than ' ||| 0.0227273 0.0303522 2.6679e-06 1.11068e-05 2.718 ||| 0-0 0-1 ||| 44 374827 +del ||| than I ||| 0.00438596 0.0313352 2.6679e-06 1.65463e-05 2.718 ||| 0-0 ||| 228 374827 +del ||| than a global ||| 0.5 0.0313352 2.6679e-06 4.73849e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| than a ||| 0.0030837 0.0313352 1.86753e-05 0.000103687 2.718 ||| 0-0 ||| 2270 374827 +del ||| than adopting ||| 0.05 0.0313352 2.6679e-06 1.14387e-07 2.718 ||| 0-0 ||| 20 374827 +del ||| than any other ||| 0.00471698 0.0313352 2.6679e-06 4.58262e-09 2.718 ||| 0-0 ||| 212 374827 +del ||| than any ||| 0.0023753 0.0313352 2.6679e-06 3.53734e-06 2.718 ||| 0-0 ||| 421 374827 +del ||| than anyone else to ||| 0.2 0.0313352 2.6679e-06 1.17485e-12 2.718 ||| 0-0 ||| 5 374827 +del ||| than anyone else ||| 0.0172414 0.0313352 2.6679e-06 1.32216e-11 2.718 ||| 0-0 ||| 58 374827 +del ||| than anyone ||| 0.0114943 0.0313352 2.6679e-06 1.12048e-07 2.718 ||| 0-0 ||| 87 374827 +del ||| than at ||| 0.0113636 0.0313352 5.33579e-06 9.79517e-06 2.718 ||| 0-0 ||| 176 374827 +del ||| than before ||| 0.003663 0.0313352 2.6679e-06 5.85034e-07 2.718 ||| 0-0 ||| 273 374827 +del ||| than by ||| 0.00404858 0.0387467 2.6679e-06 3.78244e-05 2.718 ||| 0-0 0-1 ||| 247 374827 +del ||| than enough ||| 0.016129 0.0313352 2.6679e-06 3.86436e-07 2.718 ||| 0-0 ||| 62 374827 +del ||| than ever ||| 0.00084246 0.0313352 2.6679e-06 4.39536e-07 2.718 ||| 0-0 ||| 1187 374827 +del ||| than foods ||| 0.5 0.0313352 2.6679e-06 2.26902e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| than for ||| 0.00401606 0.0226003 2.6679e-06 2.5166e-05 2.718 ||| 0-0 0-1 ||| 249 374827 +del ||| than had been ||| 0.0833333 0.0313352 2.6679e-06 7.83996e-09 2.718 ||| 0-0 ||| 12 374827 +del ||| than had ||| 0.333333 0.0313352 2.6679e-06 2.34786e-06 2.718 ||| 0-0 ||| 3 374827 +del ||| than has ||| 0.0125 0.0313352 2.6679e-06 1.2041e-05 2.718 ||| 0-0 ||| 80 374827 +del ||| than have the ||| 0.5 0.0732944 2.6679e-06 1.26899e-06 2.718 ||| 0-2 ||| 2 374827 +del ||| than having recourse to ||| 1 0.0313352 2.6679e-06 9.7098e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| than having recourse ||| 1 0.0313352 2.6679e-06 1.09273e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| than having ||| 0.0120482 0.0313352 2.6679e-06 8.9568e-07 2.718 ||| 0-0 ||| 83 374827 +del ||| than in the ||| 0.00394477 0.0409858 5.33579e-06 2.19086e-05 2.718 ||| 0-0 0-1 0-2 ||| 507 374827 +del ||| than in ||| 0.000760456 0.0248316 2.6679e-06 6.30798e-05 2.718 ||| 0-0 0-1 ||| 1315 374827 +del ||| than is the case ||| 0.0196078 0.0732944 2.6679e-06 3.5579e-09 2.718 ||| 0-2 ||| 51 374827 +del ||| than is the ||| 0.015625 0.0732944 2.6679e-06 3.32545e-06 2.718 ||| 0-2 ||| 64 374827 +del ||| than is ||| 0.0185185 0.0313352 1.60074e-05 7.33131e-05 2.718 ||| 0-0 ||| 324 374827 +del ||| than it does ||| 0.0217391 0.0313352 2.6679e-06 2.91772e-08 2.718 ||| 0-0 ||| 46 374827 +del ||| than it ||| 0.00131406 0.0313352 2.6679e-06 4.15985e-05 2.718 ||| 0-0 ||| 761 374827 +del ||| than on what the supplements ||| 1 0.0313352 2.6679e-06 3.90981e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| than on what the ||| 1 0.0313352 2.6679e-06 1.34821e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| than on what ||| 0.333333 0.0313352 2.6679e-06 2.19607e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| than on ||| 0.00554017 0.0313352 5.33579e-06 1.56516e-05 2.718 ||| 0-0 ||| 361 374827 +del ||| than one ||| 0.00314465 0.0313352 5.33579e-06 9.74979e-06 2.718 ||| 0-0 ||| 636 374827 +del ||| than others ||| 0.00275482 0.0313352 2.6679e-06 2.2737e-07 2.718 ||| 0-0 ||| 363 374827 +del ||| than reducing ||| 0.0909091 0.0313352 2.6679e-06 6.22227e-08 2.718 ||| 0-0 ||| 11 374827 +del ||| than that ||| 0.00123916 0.0313352 2.6679e-06 3.93491e-05 2.718 ||| 0-0 ||| 807 374827 +del ||| than the Member State ||| 0.333333 0.0523148 2.6679e-06 5.03218e-11 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| than the Member ||| 0.333333 0.0523148 2.6679e-06 4.18651e-07 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| than the North American ||| 1 0.0313352 2.6679e-06 7.68359e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| than the North ||| 1 0.0313352 2.6679e-06 3.0014e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| than the expense ||| 0.5 0.0523148 2.6679e-06 1.57614e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| than the implementation level in the ||| 1 0.0523148 2.6679e-06 7.09574e-14 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| than the implementation level in ||| 1 0.0523148 2.6679e-06 1.15581e-12 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| than the implementation level ||| 1 0.0523148 2.6679e-06 5.39986e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| than the implementation ||| 1 0.0523148 2.6679e-06 6.31267e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| than the one ||| 0.0416667 0.0523148 1.33395e-05 3.38625e-06 2.718 ||| 0-0 0-1 ||| 120 374827 +del ||| than the opt-out ||| 0.5 0.0732944 2.6679e-06 1.22021e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| than the package ||| 0.5 0.0523148 2.6679e-06 3.8591e-08 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| than the ||| 0.0237478 0.0523148 0.000293469 0.000812441 2.718 ||| 0-0 0-1 ||| 4632 374827 +del ||| than their ||| 0.00617284 0.0313352 2.6679e-06 2.71137e-06 2.718 ||| 0-0 ||| 162 374827 +del ||| than they should have ||| 1 0.0313352 2.6679e-06 4.04616e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| than they should ||| 0.111111 0.0313352 2.6679e-06 3.38313e-08 2.718 ||| 0-0 ||| 9 374827 +del ||| than they ||| 0.00236407 0.0313352 2.6679e-06 7.63515e-06 2.718 ||| 0-0 ||| 423 374827 +del ||| than under ||| 0.0333333 0.0231506 2.6679e-06 1.85873e-06 2.718 ||| 0-0 0-1 ||| 30 374827 +del ||| than using ||| 0.037037 0.0313352 2.6679e-06 1.81756e-07 2.718 ||| 0-0 ||| 27 374827 +del ||| than we ||| 0.00151745 0.0313352 2.6679e-06 2.65553e-05 2.718 ||| 0-0 ||| 659 374827 +del ||| than ||| 0.0106021 0.0313352 0.00124591 0.0023392 2.718 ||| 0-0 ||| 44048 374827 +del ||| thanks to the ||| 0.0014918 0.0732944 8.00369e-06 2.49981e-06 2.718 ||| 0-2 ||| 2011 374827 +del ||| that 's ||| 0.025 0.169811 2.6679e-06 0.000675907 2.718 ||| 0-1 ||| 40 374827 +del ||| that , for the first time , ||| 0.0243902 0.0138653 2.6679e-06 1.39661e-13 2.718 ||| 0-2 ||| 41 374827 +del ||| that , for the first time ||| 0.016129 0.0138653 2.6679e-06 1.17112e-12 2.718 ||| 0-2 ||| 62 374827 +del ||| that , for the first ||| 0.0142857 0.0138653 2.6679e-06 7.13355e-10 2.718 ||| 0-2 ||| 70 374827 +del ||| that , for the ||| 0.00431034 0.0138653 2.6679e-06 1.32495e-06 2.718 ||| 0-2 ||| 232 374827 +del ||| that , for ||| 0.00105152 0.0138653 2.6679e-06 2.15819e-05 2.718 ||| 0-2 ||| 951 374827 +del ||| that , we in ||| 0.5 0.0183279 2.6679e-06 6.14115e-07 2.718 ||| 0-3 ||| 2 374827 +del ||| that - of ||| 0.142857 0.130625 2.6679e-06 1.87176e-05 2.718 ||| 0-2 ||| 7 374827 +del ||| that European ||| 0.00862069 0.0068161 2.6679e-06 5.16558e-05 2.718 ||| 0-1 ||| 116 374827 +del ||| that I received from the ||| 0.333333 0.082213 2.6679e-06 8.02523e-11 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| that I see taking place in the ||| 1 0.0458111 2.6679e-06 5.02247e-16 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| that I sit on the ||| 1 0.0436809 2.6679e-06 1.53206e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| that Schengen is entirely based ||| 0.25 0.0217227 2.6679e-06 9.25222e-16 2.718 ||| 0-1 ||| 4 374827 +del ||| that Schengen is entirely ||| 0.25 0.0217227 2.6679e-06 3.94383e-12 2.718 ||| 0-1 ||| 4 374827 +del ||| that Schengen is ||| 0.111111 0.0217227 2.6679e-06 5.95744e-08 2.718 ||| 0-1 ||| 9 374827 +del ||| that Schengen ||| 0.0227273 0.0217227 2.6679e-06 1.90084e-06 2.718 ||| 0-1 ||| 44 374827 +del ||| that a general ||| 0.5 0.0008087 2.6679e-06 2.4846e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| that a long ||| 0.2 0.0008087 2.6679e-06 4.80584e-09 2.718 ||| 0-1 ||| 5 374827 +del ||| that a motion for a ||| 1 0.0138653 2.6679e-06 2.68813e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| that a motion for ||| 1 0.0138653 2.6679e-06 6.06448e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| that a number of amendments to ||| 1 0.130625 2.6679e-06 7.37864e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| that a number of amendments ||| 0.125 0.130625 2.6679e-06 8.30384e-12 2.718 ||| 0-3 ||| 8 374827 +del ||| that a number of ||| 0.00294985 0.130625 2.6679e-06 1.08831e-07 2.718 ||| 0-3 ||| 339 374827 +del ||| that a ||| 0.000484555 0.0008087 1.06716e-05 1.42058e-05 2.718 ||| 0-1 ||| 8255 374827 +del ||| that are going on ||| 0.0625 0.0140673 2.6679e-06 2.1422e-09 2.718 ||| 0-3 ||| 16 374827 +del ||| that are in the ||| 0.0222222 0.0458111 2.6679e-06 2.39044e-06 2.718 ||| 0-2 0-3 ||| 45 374827 +del ||| that are inside the ||| 0.5 0.0732944 2.6679e-06 1.08147e-09 2.718 ||| 0-3 ||| 2 374827 +del ||| that are of ||| 0.0102041 0.130625 2.6679e-06 7.52889e-05 2.718 ||| 0-2 ||| 98 374827 +del ||| that are on the ||| 0.025 0.0436809 2.6679e-06 8.69387e-07 2.718 ||| 0-2 0-3 ||| 40 374827 +del ||| that are ||| 0.000130617 2.51e-05 2.6679e-06 4.38491e-07 2.718 ||| 0-0 ||| 7656 374827 +del ||| that be on the ||| 1 0.0436809 2.6679e-06 1.03843e-06 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| that both the ||| 0.00244499 0.0732944 2.6679e-06 9.67795e-06 2.718 ||| 0-2 ||| 409 374827 +del ||| that by ||| 0.00130378 0.0461582 2.6679e-06 0.000272002 2.718 ||| 0-1 ||| 767 374827 +del ||| that can only win or ||| 1 0.0009217 2.6679e-06 8.27732e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| that can only win ||| 1 0.0009217 2.6679e-06 7.23985e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| that comes from the ||| 0.133333 0.082213 5.33579e-06 5.06241e-08 2.718 ||| 0-2 0-3 ||| 15 374827 +del ||| that comes from ||| 0.0185185 0.0911315 2.6679e-06 1.45758e-07 2.718 ||| 0-2 ||| 54 374827 +del ||| that country was found guilty of ||| 1 0.130625 2.6679e-06 2.59533e-17 2.718 ||| 0-5 ||| 1 374827 +del ||| that enables these individuals to ||| 1 0.0006066 2.6679e-06 1.30105e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| that end in order to ||| 1 0.0183279 2.6679e-06 9.34067e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| that end in order ||| 1 0.0183279 2.6679e-06 1.05119e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| that end in ||| 0.142857 0.0183279 2.6679e-06 1.97369e-07 2.718 ||| 0-2 ||| 7 374827 +del ||| that exist in the ||| 0.0138889 0.0732944 2.6679e-06 1.15175e-08 2.718 ||| 0-3 ||| 72 374827 +del ||| that exists between ||| 0.0106383 0.0028314 2.6679e-06 1.91108e-10 2.718 ||| 0-2 ||| 94 374827 +del ||| that exists in the ||| 0.0285714 0.0458111 2.6679e-06 8.79122e-09 2.718 ||| 0-2 0-3 ||| 35 374827 +del ||| that fall within the ||| 0.0416667 0.0072058 2.6679e-06 4.12814e-11 2.718 ||| 0-2 ||| 24 374827 +del ||| that fall within ||| 0.0232558 0.0072058 2.6679e-06 6.72425e-10 2.718 ||| 0-2 ||| 43 374827 +del ||| that first Kok report , the report ||| 1 0.0732944 2.6679e-06 2.52109e-20 2.718 ||| 0-5 ||| 1 374827 +del ||| that first Kok report , the ||| 1 0.0732944 2.6679e-06 6.1505e-17 2.718 ||| 0-5 ||| 1 374827 +del ||| that for ||| 0.00276753 0.0138653 8.00369e-06 0.000180974 2.718 ||| 0-1 ||| 1084 374827 +del ||| that from the ||| 0.0506329 0.082213 1.06716e-05 0.000126624 2.718 ||| 0-1 0-2 ||| 79 374827 +del ||| that from ||| 0.00323625 0.0911315 2.6679e-06 0.000364578 2.718 ||| 0-1 ||| 309 374827 +del ||| that funds should be entered in the ||| 1 0.0458111 2.6679e-06 3.08901e-17 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| that goes against the ||| 0.0454545 0.0732944 2.6679e-06 1.93069e-10 2.718 ||| 0-3 ||| 22 374827 +del ||| that had been put by ||| 1 0.0461582 2.6679e-06 1.00516e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| that has been done to ||| 0.0714286 0.0006066 2.6679e-06 1.75423e-13 2.718 ||| 0-4 ||| 14 374827 +del ||| that has been made over the ||| 0.333333 0.0399057 2.6679e-06 6.71485e-14 2.718 ||| 0-4 0-5 ||| 3 374827 +del ||| that have been ||| 0.000420698 2.51e-05 2.6679e-06 1.15416e-09 2.718 ||| 0-0 ||| 2377 374827 +del ||| that have ||| 0.000247525 2.51e-05 2.6679e-06 3.45638e-07 2.718 ||| 0-0 ||| 4040 374827 +del ||| that he ||| 0.000545256 2.51e-05 2.6679e-06 2.5221e-08 2.718 ||| 0-0 ||| 1834 374827 +del ||| that in the ||| 0.000780945 0.0458111 5.33579e-06 0.000157549 2.718 ||| 0-1 0-2 ||| 2561 374827 +del ||| that in ||| 0.000415498 0.0183279 1.06716e-05 0.000453618 2.718 ||| 0-1 ||| 9627 374827 +del ||| that is , of ||| 0.025641 0.130625 2.6679e-06 1.85463e-05 2.718 ||| 0-3 ||| 39 374827 +del ||| that is being made within the ||| 1 0.0402501 2.6679e-06 4.5595e-13 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| that is committed to the ||| 0.125 0.0732944 2.6679e-06 1.34721e-09 2.718 ||| 0-4 ||| 8 374827 +del ||| that is given to the ||| 0.25 0.0732944 2.6679e-06 1.11665e-08 2.718 ||| 0-4 ||| 4 374827 +del ||| that is made in the ||| 0.5 0.0458111 2.6679e-06 1.03436e-08 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| that is of ||| 0.011236 0.130625 5.33579e-06 0.000155519 2.718 ||| 0-2 ||| 178 374827 +del ||| that is shown by the ||| 0.333333 0.0732944 2.6679e-06 1.00363e-10 2.718 ||| 0-4 ||| 3 374827 +del ||| that is the ||| 0.000542594 0.0732944 8.00369e-06 0.000183107 2.718 ||| 0-2 ||| 5529 374827 +del ||| that is to say the ||| 0.00588235 0.0732944 2.6679e-06 1.55514e-08 2.718 ||| 0-4 ||| 170 374827 +del ||| that is to ||| 0.00136799 0.0006066 2.6679e-06 7.0145e-07 2.718 ||| 0-2 ||| 731 374827 +del ||| that it also includes the ||| 0.333333 0.0732944 2.6679e-06 1.52639e-11 2.718 ||| 0-4 ||| 3 374827 +del ||| that it is an ||| 0.00408163 0.0008398 2.6679e-06 1.68664e-09 2.718 ||| 0-3 ||| 245 374827 +del ||| that it should cut through the ||| 1 0.0732944 2.6679e-06 1.60201e-14 2.718 ||| 0-5 ||| 1 374827 +del ||| that its ||| 0.000757002 0.0035806 2.6679e-06 8.21903e-06 2.718 ||| 0-1 ||| 1321 374827 +del ||| that lead to the ||| 0.111111 0.0732944 2.6679e-06 9.99356e-08 2.718 ||| 0-3 ||| 9 374827 +del ||| that made by ||| 0.0666667 0.0461582 2.6679e-06 5.6979e-07 2.718 ||| 0-2 ||| 15 374827 +del ||| that make up the ||| 0.0416667 0.0732944 8.00369e-06 3.46266e-08 2.718 ||| 0-3 ||| 72 374827 +del ||| that of all ||| 0.0243902 0.130625 2.6679e-06 2.3448e-05 2.718 ||| 0-1 ||| 41 374827 +del ||| that of our ||| 0.0135135 0.0660799 2.6679e-06 1.47971e-06 2.718 ||| 0-1 0-2 ||| 74 374827 +del ||| that of that ||| 0.5 0.130625 2.6679e-06 8.34709e-05 2.718 ||| 0-1 ||| 2 374827 +del ||| that of the rapporteur , ||| 0.166667 0.10196 2.6679e-06 1.48596e-08 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| that of the rapporteur ||| 0.0769231 0.10196 2.6679e-06 1.24604e-07 2.718 ||| 0-1 0-2 ||| 13 374827 +del ||| that of the ||| 0.0338879 0.10196 0.000146734 0.00172343 2.718 ||| 0-1 0-2 ||| 1623 374827 +del ||| that of ||| 0.0143985 0.130625 0.00016541 0.00496213 2.718 ||| 0-1 ||| 4306 374827 +del ||| that on ||| 0.001 0.0140673 2.6679e-06 0.000164978 2.718 ||| 0-1 ||| 1000 374827 +del ||| that operate within the ||| 0.333333 0.0402501 2.6679e-06 1.18602e-10 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| that out of the ||| 0.0714286 0.10196 2.6679e-06 6.60141e-06 2.718 ||| 0-2 0-3 ||| 14 374827 +del ||| that provided through the ||| 0.5 0.0732944 2.6679e-06 6.16378e-10 2.718 ||| 0-3 ||| 2 374827 +del ||| that redressed ||| 1 0.0465116 2.6679e-06 4.37362e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| that road ||| 0.010101 0.0178052 2.6679e-06 4.59566e-06 2.718 ||| 0-1 ||| 99 374827 +del ||| that seems out of ||| 1 0.130625 2.6679e-06 2.28463e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| that she was very sceptical about the ||| 1 0.0732944 2.6679e-06 2.81696e-20 2.718 ||| 0-6 ||| 1 374827 +del ||| that ten years from now , ||| 1 0.0911315 2.6679e-06 1.70722e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| that ten years from now ||| 1 0.0911315 2.6679e-06 1.43157e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| that ten years from ||| 0.333333 0.0911315 2.6679e-06 6.94973e-13 2.718 ||| 0-3 ||| 3 374827 +del ||| that the Council will find an appropriate ||| 0.5 0.0732944 2.6679e-06 3.48092e-18 2.718 ||| 0-1 ||| 2 374827 +del ||| that the Council will find an ||| 0.5 0.0732944 2.6679e-06 2.58612e-14 2.718 ||| 0-1 ||| 2 374827 +del ||| that the Council will find ||| 0.0909091 0.0732944 2.6679e-06 5.81845e-12 2.718 ||| 0-1 ||| 11 374827 +del ||| that the Council will ||| 0.00769231 0.0732944 2.6679e-06 1.74781e-08 2.718 ||| 0-1 ||| 130 374827 +del ||| that the Council ||| 0.000232072 0.0732944 2.6679e-06 2.0203e-06 2.718 ||| 0-1 ||| 4309 374827 +del ||| that the European ||| 0.00238095 0.0732944 2.6679e-06 1.95364e-05 2.718 ||| 0-1 ||| 420 374827 +del ||| that the Kosovo ||| 1 0.0732944 2.6679e-06 1.43139e-07 2.718 ||| 0-1 ||| 1 374827 +del ||| that the objective should be the ||| 0.5 0.0732944 2.6679e-06 1.92689e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| that the objective should be ||| 0.333333 0.0732944 2.6679e-06 3.13868e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| that the objective should ||| 0.333333 0.0732944 2.6679e-06 1.73189e-09 2.718 ||| 0-1 ||| 3 374827 +del ||| that the objective ||| 0.00757576 0.0732944 2.6679e-06 3.90857e-07 2.718 ||| 0-1 ||| 132 374827 +del ||| that the place ||| 0.166667 0.0732944 2.6679e-06 8.79282e-06 2.718 ||| 0-1 ||| 6 374827 +del ||| that the president of ||| 0.2 0.130625 2.6679e-06 2.40661e-09 2.718 ||| 0-3 ||| 5 374827 +del ||| that the ultimate responsibility rests ||| 0.333333 0.0732944 2.6679e-06 1.82195e-17 2.718 ||| 0-1 ||| 3 374827 +del ||| that the ultimate responsibility ||| 0.166667 0.0732944 2.6679e-06 7.28782e-12 2.718 ||| 0-1 ||| 6 374827 +del ||| that the ultimate ||| 0.2 0.0732944 2.6679e-06 6.3098e-08 2.718 ||| 0-1 ||| 5 374827 +del ||| that the ||| 0.00153506 0.0732944 0.000586937 0.00584241 2.718 ||| 0-1 ||| 143317 374827 +del ||| that there is a ||| 0.000412712 0.0008087 2.6679e-06 1.36475e-09 2.718 ||| 0-3 ||| 2423 374827 +del ||| that there is an ||| 0.00285714 0.0008398 2.6679e-06 2.90727e-10 2.718 ||| 0-3 ||| 350 374827 +del ||| that there is ||| 0.000163292 2.51e-05 2.6679e-06 2.77642e-09 2.718 ||| 0-0 ||| 6124 374827 +del ||| that there ||| 0.000194628 2.51e-05 2.6679e-06 8.85872e-08 2.718 ||| 0-0 ||| 5138 374827 +del ||| that they deny the ||| 0.333333 0.0732944 2.6679e-06 1.5065e-10 2.718 ||| 0-3 ||| 3 374827 +del ||| that this is about the ||| 0.25 0.0732944 2.6679e-06 1.6733e-09 2.718 ||| 0-4 ||| 4 374827 +del ||| that this ||| 0.000204464 0.0033154 1.60074e-05 3.86207e-05 2.718 ||| 0-1 ||| 29345 374827 +del ||| that took place on ||| 0.05 0.0140673 5.33579e-06 3.6623e-11 2.718 ||| 0-3 ||| 40 374827 +del ||| that under the ||| 0.00813008 0.0441302 2.6679e-06 4.64238e-06 2.718 ||| 0-1 0-2 ||| 123 374827 +del ||| that was commissioned by the ||| 0.333333 0.0597263 2.6679e-06 4.14367e-13 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| that was going from ||| 1 0.0911315 2.6679e-06 9.77514e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| that was made by ||| 0.0769231 0.0461582 2.6679e-06 1.78515e-09 2.718 ||| 0-3 ||| 13 374827 +del ||| that was made on ||| 0.142857 0.0140673 2.6679e-06 1.08275e-09 2.718 ||| 0-3 ||| 7 374827 +del ||| that was the ||| 0.00208768 0.0732944 2.6679e-06 1.83043e-05 2.718 ||| 0-2 ||| 479 374827 +del ||| that we have in the ||| 0.0294118 0.0458111 2.6679e-06 2.13906e-08 2.718 ||| 0-3 0-4 ||| 34 374827 +del ||| that we have the ||| 0.0037037 0.0732944 2.6679e-06 7.93231e-07 2.718 ||| 0-3 ||| 270 374827 +del ||| that we in ||| 0.00141443 0.0183279 2.6679e-06 5.14961e-06 2.718 ||| 0-2 ||| 707 374827 +del ||| that we saw after ||| 1 0.0001855 2.6679e-06 6.75554e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| that we should ||| 0.000251067 2.51e-05 2.6679e-06 1.45373e-09 2.718 ||| 0-0 ||| 3983 374827 +del ||| that we stand for ||| 0.0588235 0.0138653 2.6679e-06 3.38576e-10 2.718 ||| 0-3 ||| 17 374827 +del ||| that we took in the ||| 1 0.0458111 2.6679e-06 2.6381e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| that we ||| 4.87805e-05 2.51e-05 2.6679e-06 3.28081e-07 2.718 ||| 0-0 ||| 20500 374827 +del ||| that were spoken then by ||| 1 0.0461582 2.6679e-06 1.74986e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| that will come from ||| 0.1 0.0911315 2.6679e-06 2.67872e-09 2.718 ||| 0-3 ||| 10 374827 +del ||| that will determine the ||| 0.0625 0.0732944 2.6679e-06 1.21811e-09 2.718 ||| 0-3 ||| 16 374827 +del ||| that will see the ||| 0.333333 0.0732944 2.6679e-06 3.56132e-08 2.718 ||| 0-3 ||| 3 374827 +del ||| that would result from ||| 0.0714286 0.0911315 2.6679e-06 1.1265e-09 2.718 ||| 0-3 ||| 14 374827 +del ||| that ||| 1.90729e-05 2.51e-05 4.80222e-05 2.89e-05 2.718 ||| 0-0 ||| 943748 374827 +del ||| the ' ||| 0.006393 0.0513318 5.06901e-05 0.00164909 2.718 ||| 0-0 0-1 ||| 2972 374827 +del ||| the " ||| 0.00307692 0.0732944 2.6679e-06 8.22444e-05 2.718 ||| 0-0 ||| 325 374827 +del ||| the , ' ||| 0.5 0.0732944 2.6679e-06 0.00014227 2.718 ||| 0-0 ||| 2 374827 +del ||| the , ||| 0.0201342 0.0732944 8.00369e-06 0.041419 2.718 ||| 0-0 ||| 149 374827 +del ||| the - ||| 0.0454545 0.0732944 2.6679e-06 0.00131011 2.718 ||| 0-0 ||| 22 374827 +del ||| the . ||| 0.0307692 0.0732944 5.33579e-06 0.00105202 2.718 ||| 0-0 ||| 65 374827 +del ||| the 1975 ||| 0.2 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| the 1980s , confirm ||| 0.5 0.0732944 2.6679e-06 8.38321e-13 2.718 ||| 0-0 ||| 2 374827 +del ||| the 1980s , ||| 0.0105263 0.0732944 2.6679e-06 4.55609e-08 2.718 ||| 0-0 ||| 95 374827 +del ||| the 1980s ||| 0.00322581 0.0732944 2.6679e-06 3.82047e-07 2.718 ||| 0-0 ||| 310 374827 +del ||| the 9 ||| 0.047619 0.0732944 2.6679e-06 3.88994e-06 2.718 ||| 0-0 ||| 21 374827 +del ||| the ACP ||| 0.00269542 0.0732944 2.6679e-06 3.75101e-06 2.718 ||| 0-0 ||| 371 374827 +del ||| the ANC leader ||| 0.333333 0.0732944 2.6679e-06 1.65322e-12 2.718 ||| 0-0 ||| 3 374827 +del ||| the ANC ||| 0.166667 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 6 374827 +del ||| the Acryl ||| 1 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| the Action Plan ||| 0.0060241 0.0732944 2.6679e-06 5.62652e-12 2.718 ||| 0-0 ||| 166 374827 +del ||| the Action ||| 0.0588235 0.0732944 2.6679e-06 3.12584e-06 2.718 ||| 0-0 ||| 17 374827 +del ||| the African ||| 0.015873 0.0732944 2.6679e-06 6.00856e-06 2.718 ||| 0-0 ||| 63 374827 +del ||| the Alliance of ||| 0.00196464 0.10196 2.6679e-06 3.02237e-06 2.718 ||| 0-0 0-2 ||| 509 374827 +del ||| the American ||| 0.00578035 0.0732944 2.6679e-06 8.89128e-06 2.718 ||| 0-0 ||| 173 374827 +del ||| the Arab and ||| 0.0769231 0.0732944 2.6679e-06 3.13232e-08 2.718 ||| 0-0 ||| 13 374827 +del ||| the Arab ||| 0.03125 0.0732944 5.33579e-06 2.50067e-06 2.718 ||| 0-0 ||| 64 374827 +del ||| the Arctic Ocean ||| 0.0666667 0.0732944 2.6679e-06 5.34866e-13 2.718 ||| 0-0 ||| 15 374827 +del ||| the Arctic ||| 0.00378788 0.0732944 2.6679e-06 7.64095e-07 2.718 ||| 0-0 ||| 264 374827 +del ||| the Article ||| 0.0212766 0.0927921 2.6679e-06 0.000898228 2.718 ||| 0-0 0-1 ||| 47 374827 +del ||| the Assistant ||| 0.333333 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| the Atlantic ||| 0.00343643 0.0891163 2.6679e-06 6.98105e-05 2.718 ||| 0-0 0-1 ||| 291 374827 +del ||| the Austrian ||| 0.01 0.0732944 2.6679e-06 3.99413e-06 2.718 ||| 0-0 ||| 100 374827 +del ||| the Bahrain ||| 1 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| the Balkans ||| 0.000604961 0.0732944 2.6679e-06 2.01443e-06 2.718 ||| 0-0 ||| 1653 374827 +del ||| the British government 's attitude of ||| 1 0.130625 2.6679e-06 4.24335e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| the British ||| 0.00189394 0.0056117 2.6679e-06 2.82402e-06 2.718 ||| 0-1 ||| 528 374827 +del ||| the Budget ||| 0.00483092 0.0732944 2.6679e-06 3.36896e-06 2.718 ||| 0-0 ||| 207 374827 +del ||| the CE logo ||| 1 0.0732944 2.6679e-06 5.34866e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the CE ||| 0.111111 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-0 ||| 9 374827 +del ||| the Chairman of ||| 0.00315457 0.10196 2.6679e-06 5.94228e-07 2.718 ||| 0-0 0-2 ||| 317 374827 +del ||| the Chamber too ||| 0.2 0.0732944 2.6679e-06 1.24319e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| the Chamber ||| 0.000714286 0.0732944 2.6679e-06 9.13441e-06 2.718 ||| 0-0 ||| 1400 374827 +del ||| the Chief ||| 0.0232558 0.0732944 2.6679e-06 1.25034e-06 2.718 ||| 0-0 ||| 43 374827 +del ||| the Christmas ||| 0.0769231 0.0732944 2.6679e-06 1.38926e-06 2.718 ||| 0-0 ||| 13 374827 +del ||| the City ||| 0.00854701 0.0732944 2.6679e-06 1.49346e-06 2.718 ||| 0-0 ||| 117 374827 +del ||| the Clean Air ||| 0.5 0.0732944 2.6679e-06 1.56292e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| the Clean ||| 0.2 0.0732944 2.6679e-06 8.6829e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| the Coelho ||| 1 0.0732944 2.6679e-06 3.82047e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| the Cohesion Fund ||| 0.00226757 0.0314359 2.6679e-06 4.62464e-11 2.718 ||| 0-1 ||| 441 374827 +del ||| the Cohesion ||| 0.0714286 0.0732944 5.33579e-06 4.86242e-07 2.718 ||| 0-0 ||| 28 374827 +del ||| the Commission ' s proposal that the ||| 1 0.0732944 2.6679e-06 2.73376e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the Commission ' s proposal that ||| 0.5 0.0732944 2.6679e-06 4.45297e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| the Commission ' s proposal ||| 0.00306748 0.0732944 2.6679e-06 2.64718e-13 2.718 ||| 0-0 ||| 326 374827 +del ||| the Commission ' s ||| 0.00660066 0.0732944 5.33579e-06 1.32558e-09 2.718 ||| 0-0 ||| 303 374827 +del ||| the Commission ' ||| 0.00101729 0.0732944 2.6679e-06 6.96828e-07 2.718 ||| 0-0 ||| 983 374827 +del ||| the Commission 's ||| 0.000469043 0.169811 2.6679e-06 1.44084e-06 2.718 ||| 0-2 ||| 2132 374827 +del ||| the Commission . ||| 0.000104943 0.0732944 2.6679e-06 6.14485e-07 2.718 ||| 0-0 ||| 9529 374827 +del ||| the Commission and good dialogue with the ||| 1 0.0732944 2.6679e-06 2.02795e-17 2.718 ||| 0-6 ||| 1 374827 +del ||| the Commission aware of the ||| 0.030303 0.130625 2.6679e-06 9.02009e-11 2.718 ||| 0-3 ||| 33 374827 +del ||| the Commission aware of ||| 0.0172414 0.130625 2.6679e-06 1.46927e-09 2.718 ||| 0-3 ||| 58 374827 +del ||| the Commission can reassure ||| 0.142857 0.0732944 2.6679e-06 1.50847e-12 2.718 ||| 0-0 ||| 7 374827 +del ||| the Commission can ||| 0.000802568 0.0732944 2.6679e-06 6.03388e-07 2.718 ||| 0-0 ||| 1246 374827 +del ||| the Commission has decided the enlargement should ||| 1 0.0732944 2.6679e-06 5.86791e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| the Commission has decided the enlargement ||| 1 0.0732944 2.6679e-06 1.32429e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the Commission has decided the ||| 1 0.0732944 2.6679e-06 4.38505e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| the Commission has decided ||| 0.0204082 0.0732944 2.6679e-06 7.14273e-11 2.718 ||| 0-0 ||| 49 374827 +del ||| the Commission has ||| 0.000137779 0.0732944 2.6679e-06 1.04426e-06 2.718 ||| 0-0 ||| 7258 374827 +del ||| the Commission now intends to achieve the ||| 1 0.0732944 2.6679e-06 9.94914e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| the Commission now intends to achieve ||| 1 0.0732944 2.6679e-06 1.6206e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the Commission now intends to ||| 0.142857 0.0732944 2.6679e-06 7.09233e-13 2.718 ||| 0-0 ||| 7 374827 +del ||| the Commission now intends ||| 0.25 0.0732944 2.6679e-06 7.98162e-12 2.718 ||| 0-0 ||| 4 374827 +del ||| the Commission now ||| 0.0108696 0.0732944 2.6679e-06 4.17886e-07 2.718 ||| 0-0 ||| 92 374827 +del ||| the Commission on the ||| 0.00122399 0.053552 2.6679e-06 6.91026e-07 2.718 ||| 0-0 0-2 0-3 ||| 817 374827 +del ||| the Commission ||| 0.000100527 0.0732944 4.26864e-05 0.000202867 2.718 ||| 0-0 ||| 159161 374827 +del ||| the Commission ’ s ||| 0.00321543 0.0732944 2.6679e-06 6.72301e-10 2.718 ||| 0-0 ||| 311 374827 +del ||| the Commission ’ ||| 0.00104712 0.0732944 2.6679e-06 3.53415e-07 2.718 ||| 0-0 ||| 955 374827 +del ||| the Commissioner ' ||| 0.025 0.0293692 2.6679e-06 2.57098e-08 2.718 ||| 0-2 ||| 40 374827 +del ||| the Commissioner think ||| 0.047619 0.0732944 2.6679e-06 1.17172e-08 2.718 ||| 0-0 ||| 21 374827 +del ||| the Commissioner ||| 0.000170576 0.0732944 5.33579e-06 3.06333e-05 2.718 ||| 0-0 ||| 11725 374827 +del ||| the Commissioners are entitled ||| 0.25 0.0732944 2.6679e-06 1.95844e-12 2.718 ||| 0-0 ||| 4 374827 +del ||| the Commissioners are ||| 0.04 0.0732944 2.6679e-06 4.00499e-08 2.718 ||| 0-0 ||| 25 374827 +del ||| the Commissioners ||| 0.0014556 0.0732944 2.6679e-06 2.6396e-06 2.718 ||| 0-0 ||| 687 374827 +del ||| the Committee of ||| 0.00118624 0.130625 2.6679e-06 2.76354e-06 2.718 ||| 0-2 ||| 843 374827 +del ||| the Committee on Legal Affairs and the ||| 0.00203252 0.0732944 2.6679e-06 2.45683e-19 2.718 ||| 0-6 ||| 492 374827 +del ||| the Committee on ||| 8.17461e-05 0.0732944 5.33579e-06 3.54626e-07 2.718 ||| 0-0 ||| 24466 374827 +del ||| the Committee ||| 3.38409e-05 0.0732944 2.6679e-06 5.30004e-05 2.718 ||| 0-0 ||| 29550 374827 +del ||| the Community . Parliament ||| 1 0.0732944 2.6679e-06 9.77648e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the Community . ||| 0.00109649 0.0732944 2.6679e-06 1.70322e-07 2.718 ||| 0-0 ||| 912 374827 +del ||| the Community at international level in the ||| 1 0.0183279 2.6679e-06 4.56189e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| the Community at international level in ||| 1 0.0183279 2.6679e-06 7.43079e-17 2.718 ||| 0-5 ||| 1 374827 +del ||| the Community position within the Association ||| 1 0.0732944 5.33579e-06 2.04421e-18 2.718 ||| 0-0 ||| 2 374827 +del ||| the Community position within the ||| 1 0.0732944 5.33579e-06 2.37699e-13 2.718 ||| 0-0 ||| 2 374827 +del ||| the Community position within ||| 1 0.0732944 5.33579e-06 3.87184e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| the Community position ||| 0.05 0.0732944 5.33579e-06 1.85167e-08 2.718 ||| 0-0 ||| 40 374827 +del ||| the Community ||| 0.000497677 0.0732944 8.00369e-06 5.62304e-05 2.718 ||| 0-0 ||| 6028 374827 +del ||| the Conciliation Committee , for a ||| 0.125 0.0732944 2.6679e-06 6.24443e-15 2.718 ||| 0-0 ||| 8 374827 +del ||| the Conciliation Committee , for ||| 0.125 0.0732944 2.6679e-06 1.40876e-13 2.718 ||| 0-0 ||| 8 374827 +del ||| the Conciliation Committee , ||| 0.0114943 0.0732944 2.6679e-06 1.83296e-11 2.718 ||| 0-0 ||| 87 374827 +del ||| the Conciliation Committee for a European ||| 1 0.0732944 2.6679e-06 1.75094e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the Conciliation Committee for a ||| 0.0232558 0.0732944 2.6679e-06 5.23621e-14 2.718 ||| 0-0 ||| 43 374827 +del ||| the Conciliation Committee for ||| 0.0181818 0.0732944 2.6679e-06 1.1813e-12 2.718 ||| 0-0 ||| 55 374827 +del ||| the Conciliation Committee ||| 0.00869565 0.0732944 1.06716e-05 1.53701e-10 2.718 ||| 0-0 ||| 460 374827 +del ||| the Conciliation ||| 0.2 0.0732944 1.06716e-05 1.00722e-06 2.718 ||| 0-0 ||| 20 374827 +del ||| the Confederal ||| 0.03125 0.0732944 2.6679e-06 3.50789e-06 2.718 ||| 0-0 ||| 32 374827 +del ||| the Convention ||| 0.000499002 0.0732944 5.33579e-06 1.1253e-05 2.718 ||| 0-0 ||| 4008 374827 +del ||| the Council 's ||| 0.00181818 0.0732944 2.6679e-06 2.28722e-07 2.718 ||| 0-0 ||| 550 374827 +del ||| the Council by ||| 0.0140845 0.0732944 2.6679e-06 6.30546e-07 2.718 ||| 0-0 ||| 71 374827 +del ||| the Council takes ||| 0.0135135 0.0707819 2.6679e-06 7.50929e-08 2.718 ||| 0-1 ||| 74 374827 +del ||| the Council to provide ||| 0.0909091 0.0707819 2.6679e-06 1.52768e-08 2.718 ||| 0-1 ||| 11 374827 +del ||| the Council to ||| 0.000505817 0.0707819 2.6679e-06 5.16457e-05 2.718 ||| 0-1 ||| 1977 374827 +del ||| the Council will find an appropriate legal ||| 0.5 0.0732944 2.6679e-06 2.68184e-20 2.718 ||| 0-0 ||| 2 374827 +del ||| the Council will find an appropriate ||| 0.5 0.0732944 2.6679e-06 2.06932e-16 2.718 ||| 0-0 ||| 2 374827 +del ||| the Council will find an ||| 0.5 0.0732944 2.6679e-06 1.53738e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| the Council will find ||| 0.111111 0.0732944 2.6679e-06 3.45891e-10 2.718 ||| 0-0 ||| 9 374827 +del ||| the Council will ||| 0.00236407 0.0732944 2.6679e-06 1.03902e-06 2.718 ||| 0-0 ||| 423 374827 +del ||| the Council ||| 0.000399612 0.0732944 5.60258e-05 0.000120102 2.718 ||| 0-0 ||| 52551 374827 +del ||| the Court of ||| 0.00062461 0.130625 5.33579e-06 8.47534e-07 2.718 ||| 0-2 ||| 3202 374827 +del ||| the Court ||| 0.000422565 0.0732944 5.33579e-06 1.62544e-05 2.718 ||| 0-0 ||| 4733 374827 +del ||| the Cypriot ||| 0.2 0.0732944 2.6679e-06 1.49346e-06 2.718 ||| 0-0 ||| 5 374827 +del ||| the Delors Commission ||| 0.0588235 0.0732944 2.6679e-06 1.42007e-10 2.718 ||| 0-0 ||| 17 374827 +del ||| the Delors ||| 0.111111 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 9 374827 +del ||| the Democratic People 's ||| 0.25 0.169811 2.6679e-06 2.86704e-12 2.718 ||| 0-3 ||| 4 374827 +del ||| the Development ||| 0.0121951 0.0732944 2.6679e-06 1.52472e-05 2.718 ||| 0-0 ||| 82 374827 +del ||| the EBRD 's ||| 0.5 0.113086 2.6679e-06 4.57739e-07 2.718 ||| 0-0 0-1 0-2 ||| 2 374827 +del ||| the EIT ||| 0.00740741 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 135 374827 +del ||| the EP 's ||| 0.166667 0.169811 2.6679e-06 1.23339e-08 2.718 ||| 0-2 ||| 6 374827 +del ||| the EU 's ||| 0.000809062 0.169811 2.6679e-06 1.22056e-06 2.718 ||| 0-2 ||| 1236 374827 +del ||| the EU the ||| 0.0131579 0.0732944 2.6679e-06 1.05503e-05 2.718 ||| 0-0 ||| 76 374827 +del ||| the EU ||| 0.000139559 0.0732944 1.86753e-05 0.000171852 2.718 ||| 0-0 ||| 50158 374827 +del ||| the Early ||| 1 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| the Eastern and Western ||| 1 0.0732944 2.6679e-06 4.8638e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the Eastern and ||| 0.25 0.0732944 2.6679e-06 3.74138e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| the Eastern ||| 0.0363636 0.0732944 5.33579e-06 2.98692e-06 2.718 ||| 0-0 ||| 55 374827 +del ||| the Ebro ||| 0.5 0.183706 2.6679e-06 1.1392e-05 2.718 ||| 0-0 0-1 ||| 2 374827 +del ||| the Economic and Social ||| 0.047619 0.0732944 2.6679e-06 2.90366e-12 2.718 ||| 0-0 ||| 21 374827 +del ||| the Economic and ||| 0.0277778 0.0732944 2.6679e-06 1.34429e-07 2.718 ||| 0-0 ||| 36 374827 +del ||| the Economic ||| 0.0196078 0.0732944 2.6679e-06 1.07321e-05 2.718 ||| 0-0 ||| 51 374827 +del ||| the Electronic ||| 0.333333 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| the Environment ||| 0.000372717 0.0732944 2.6679e-06 6.87685e-06 2.718 ||| 0-0 ||| 2683 374827 +del ||| the Euro ||| 0.0123967 0.120404 8.00369e-06 9.03368e-05 2.718 ||| 0-0 0-1 ||| 242 374827 +del ||| the Europe ||| 0.000721501 0.0732944 2.6679e-06 0.000175742 2.718 ||| 0-0 ||| 1386 374827 +del ||| the European Commission must allow ||| 0.333333 0.0732944 2.6679e-06 2.54362e-13 2.718 ||| 0-0 ||| 3 374827 +del ||| the European Commission must ||| 0.00512821 0.0732944 2.6679e-06 1.04848e-09 2.718 ||| 0-0 ||| 195 374827 +del ||| the European Commission ||| 8.50412e-05 0.0732944 2.6679e-06 6.78367e-07 2.718 ||| 0-0 ||| 11759 374827 +del ||| the European Council ||| 0.000427991 0.0732944 5.33579e-06 4.01608e-07 2.718 ||| 0-0 ||| 4673 374827 +del ||| the European Parliament of the ||| 0.030303 0.0924045 2.6679e-06 6.82991e-08 2.718 ||| 0-0 0-3 0-4 ||| 33 374827 +del ||| the European Parliament ||| 3.71499e-05 0.0400553 2.6679e-06 6.12192e-07 2.718 ||| 0-0 0-1 ||| 26918 374827 +del ||| the European People ||| 0.012987 0.0732944 2.6679e-06 6.81736e-08 2.718 ||| 0-0 ||| 77 374827 +del ||| the European Union and ||| 0.000120758 0.0732944 2.6679e-06 8.10875e-09 2.718 ||| 0-0 ||| 8281 374827 +del ||| the European Union lies with ||| 1 0.0732944 2.6679e-06 2.54581e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the European Union lies ||| 0.125 0.0732944 2.6679e-06 3.98125e-11 2.718 ||| 0-0 ||| 8 374827 +del ||| the European Union ||| 5.91107e-05 0.0732944 1.33395e-05 6.47358e-07 2.718 ||| 0-0 ||| 84587 374827 +del ||| the European Women ||| 0.0277778 0.0732944 2.6679e-06 1.50981e-08 2.718 ||| 0-0 ||| 36 374827 +del ||| the European arrest ||| 0.03125 0.0732944 2.6679e-06 1.5911e-08 2.718 ||| 0-0 ||| 32 374827 +del ||| the European ||| 0.018133 0.0732944 0.000504233 0.00116139 2.718 ||| 0-0 ||| 10423 374827 +del ||| the Europol ||| 0.0666667 0.0732944 2.6679e-06 2.98692e-06 2.718 ||| 0-0 ||| 15 374827 +del ||| the Executive ||| 0.0333333 0.0703011 2.6679e-06 1.91718e-05 2.718 ||| 0-0 0-1 ||| 30 374827 +del ||| the Far ||| 0.00934579 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 107 374827 +del ||| the Federal Institute ||| 0.166667 0.0732944 2.6679e-06 1.5532e-11 2.718 ||| 0-0 ||| 6 374827 +del ||| the Federal ||| 0.0238095 0.0732944 2.6679e-06 3.61208e-06 2.718 ||| 0-0 ||| 42 374827 +del ||| the Financial ||| 0.0116279 0.0732944 2.6679e-06 3.50789e-06 2.718 ||| 0-0 ||| 86 374827 +del ||| the Flemish ||| 0.0833333 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-0 ||| 12 374827 +del ||| the French ||| 0.00149031 0.0732944 2.6679e-06 1.29896e-05 2.718 ||| 0-0 ||| 671 374827 +del ||| the G20 ||| 0.00315457 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-0 ||| 317 374827 +del ||| the Gaza Strip . ||| 0.0175439 0.0732944 2.6679e-06 2.1356e-15 2.718 ||| 0-0 ||| 57 374827 +del ||| the Gaza Strip ||| 0.00416667 0.0732944 2.6679e-06 7.05051e-13 2.718 ||| 0-0 ||| 240 374827 +del ||| the Gaza ||| 0.0909091 0.0732944 2.6679e-06 1.00722e-06 2.718 ||| 0-0 ||| 11 374827 +del ||| the Generalised ||| 0.0612245 0.0732944 8.00369e-06 1.02458e-05 2.718 ||| 0-0 ||| 49 374827 +del ||| the Geneva ||| 0.0357143 0.0369871 2.6679e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 28 374827 +del ||| the Governing ||| 0.2 0.0920595 2.6679e-06 1.96233e-05 2.718 ||| 0-0 0-1 ||| 5 374827 +del ||| the Great ||| 0.00917431 0.0732944 2.6679e-06 1.63238e-06 2.718 ||| 0-0 ||| 109 374827 +del ||| the Group of the ||| 0.00162955 0.0732944 8.00369e-06 3.77077e-07 2.718 ||| 0-0 ||| 1841 374827 +del ||| the Group of ||| 0.00117188 0.0732944 8.00369e-06 6.14214e-06 2.718 ||| 0-0 ||| 2560 374827 +del ||| the Group ||| 0.00152253 0.0732944 1.33395e-05 0.000112982 2.718 ||| 0-0 ||| 3284 374827 +del ||| the Growth and ||| 0.333333 0.0732944 2.6679e-06 3.61087e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| the Growth ||| 0.2 0.0732944 2.6679e-06 2.88272e-06 2.718 ||| 0-0 ||| 5 374827 +del ||| the High Representative ||| 0.00102564 0.0732944 2.6679e-06 1.4879e-11 2.718 ||| 0-0 ||| 975 374827 +del ||| the High ||| 0.00094697 0.0732944 2.6679e-06 4.13306e-06 2.718 ||| 0-0 ||| 1056 374827 +del ||| the Holy ||| 0.0153846 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-0 ||| 65 374827 +del ||| the House the ||| 0.0227273 0.0732944 2.6679e-06 5.33272e-06 2.718 ||| 0-2 ||| 44 374827 +del ||| the House when voting takes place ||| 1 0.0732944 2.6679e-06 3.28451e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| the House when voting takes ||| 1 0.0732944 2.6679e-06 2.1824e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the House when voting ||| 1 0.0732944 2.6679e-06 1.68916e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| the House when ||| 0.0526316 0.0732944 2.6679e-06 4.34232e-08 2.718 ||| 0-0 ||| 19 374827 +del ||| the House ||| 0.000586373 0.0732944 1.33395e-05 8.68637e-05 2.718 ||| 0-0 ||| 8527 374827 +del ||| the ICC ||| 0.00546448 0.0732944 2.6679e-06 7.64095e-07 2.718 ||| 0-0 ||| 183 374827 +del ||| the IGC ||| 0.000868056 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-0 ||| 1152 374827 +del ||| the IMF ||| 0.00210084 0.0732944 2.6679e-06 3.82047e-07 2.718 ||| 0-0 ||| 476 374827 +del ||| the Internal Market , ||| 0.00537634 0.0732944 2.6679e-06 3.43045e-11 2.718 ||| 0-0 ||| 186 374827 +del ||| the Internal Market . - ||| 0.5 0.0732944 2.6679e-06 3.28668e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| the Internal Market . ||| 0.00884956 0.0732944 2.6679e-06 8.71314e-13 2.718 ||| 0-0 ||| 113 374827 +del ||| the Internal Market ||| 0.00292683 0.0732944 8.00369e-06 2.87657e-10 2.718 ||| 0-0 ||| 1025 374827 +del ||| the Internal ||| 0.00325733 0.0732944 8.00369e-06 9.62065e-06 2.718 ||| 0-0 ||| 921 374827 +del ||| the International ||| 0.011976 0.0732944 5.33579e-06 1.0871e-05 2.718 ||| 0-0 ||| 167 374827 +del ||| the Italian ||| 0.00628931 0.0732944 2.6679e-06 6.49481e-06 2.718 ||| 0-0 ||| 159 374827 +del ||| the Jackson ||| 0.25 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| the Joint ||| 0.0208333 0.0732944 2.6679e-06 3.99413e-06 2.718 ||| 0-0 ||| 48 374827 +del ||| the Justice ||| 0.0588235 0.0732944 2.6679e-06 1.87551e-05 2.718 ||| 0-0 ||| 17 374827 +del ||| the Kosovo ||| 0.0357143 0.0732944 2.6679e-06 8.50924e-06 2.718 ||| 0-0 ||| 28 374827 +del ||| the Lisbon strategy and ||| 0.012987 0.0732944 2.6679e-06 5.87353e-12 2.718 ||| 0-0 ||| 77 374827 +del ||| the Lisbon strategy ||| 0.00144928 0.0732944 2.6679e-06 4.68911e-10 2.718 ||| 0-0 ||| 690 374827 +del ||| the Lisbon ||| 0.0104167 0.0732944 5.33579e-06 7.98826e-06 2.718 ||| 0-0 ||| 192 374827 +del ||| the Madrid Protocol , and holders of ||| 1 0.0732944 2.6679e-06 2.29022e-21 2.718 ||| 0-0 ||| 1 374827 +del ||| the Madrid Protocol , and holders ||| 1 0.0732944 2.6679e-06 4.21274e-20 2.718 ||| 0-0 ||| 1 374827 +del ||| the Madrid Protocol , and ||| 1 0.0732944 2.6679e-06 1.45267e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| the Madrid Protocol , ||| 0.333333 0.0732944 2.6679e-06 1.15973e-12 2.718 ||| 0-0 ||| 3 374827 +del ||| the Madrid Protocol ||| 0.166667 0.0732944 2.6679e-06 9.72484e-12 2.718 ||| 0-0 ||| 6 374827 +del ||| the Madrid ||| 0.0833333 0.0732944 2.6679e-06 8.6829e-07 2.718 ||| 0-0 ||| 12 374827 +del ||| the Mayflower Compact in 1620 , ||| 0.2 0.0732944 2.6679e-06 5.67394e-23 2.718 ||| 0-0 ||| 5 374827 +del ||| the Mayflower Compact in 1620 ||| 0.2 0.0732944 2.6679e-06 4.75784e-22 2.718 ||| 0-0 ||| 5 374827 +del ||| the Mayflower Compact in ||| 0.2 0.0732944 2.6679e-06 1.18946e-15 2.718 ||| 0-0 ||| 5 374827 +del ||| the Mayflower Compact ||| 0.2 0.0732944 2.6679e-06 5.55705e-14 2.718 ||| 0-0 ||| 5 374827 +del ||| the Mayflower ||| 0.2 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| the Media and ||| 0.00591716 0.0732944 2.6679e-06 7.04772e-08 2.718 ||| 0-0 ||| 169 374827 +del ||| the Media ||| 0.00540541 0.0732944 5.33579e-06 5.62652e-06 2.718 ||| 0-0 ||| 370 374827 +del ||| the Mediterranean region ||| 0.00343643 0.0917108 2.6679e-06 4.10501e-09 2.718 ||| 0-1 ||| 291 374827 +del ||| the Mediterranean ||| 0.000555864 0.0917108 2.6679e-06 4.19306e-05 2.718 ||| 0-1 ||| 1799 374827 +del ||| the Member States ' total ||| 0.5 0.0732944 2.6679e-06 2.76637e-14 2.718 ||| 0-0 ||| 2 374827 +del ||| the Member States ' ||| 0.0037594 0.0732944 2.6679e-06 2.93359e-10 2.718 ||| 0-0 ||| 266 374827 +del ||| the Member States , or nearly all ||| 1 0.0732944 2.6679e-06 9.13414e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| the Member States , or nearly ||| 1 0.0732944 2.6679e-06 1.93299e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the Member States , or ||| 0.030303 0.0732944 2.6679e-06 1.16445e-11 2.718 ||| 0-0 ||| 33 374827 +del ||| the Member States , ||| 0.000234907 0.0732944 2.6679e-06 1.0185e-08 2.718 ||| 0-0 ||| 4257 374827 +del ||| the Member States ||| 5.66942e-05 0.0732944 5.33579e-06 8.54054e-08 2.718 ||| 0-0 ||| 35277 374827 +del ||| the Member from ||| 0.2 0.0911315 2.6679e-06 6.85636e-07 2.718 ||| 0-2 ||| 5 374827 +del ||| the Member ||| 0.00112317 0.0732944 8.00369e-06 0.000178972 2.718 ||| 0-0 ||| 2671 374827 +del ||| the National Consumer ||| 0.1 0.0732944 2.6679e-06 5.8679e-10 2.718 ||| 0-0 ||| 10 374827 +del ||| the National ||| 0.0125 0.0732944 2.6679e-06 5.38339e-06 2.718 ||| 0-0 ||| 80 374827 +del ||| the Netherlands has turned its back on ||| 1 0.0732944 2.6679e-06 9.96751e-21 2.718 ||| 0-0 ||| 1 374827 +del ||| the Netherlands has turned its back ||| 1 0.0732944 2.6679e-06 1.48969e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| the Netherlands has turned its ||| 1 0.0732944 2.6679e-06 2.21482e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| the Netherlands has turned ||| 1 0.0732944 2.6679e-06 1.55459e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| the Netherlands has ||| 0.0126582 0.0732944 2.6679e-06 2.7711e-08 2.718 ||| 0-0 ||| 79 374827 +del ||| the Netherlands ||| 0.000352361 0.0732944 2.6679e-06 5.38339e-06 2.718 ||| 0-0 ||| 2838 374827 +del ||| the Ode to ||| 0.25 0.0732944 2.6679e-06 1.23447e-08 2.718 ||| 0-0 ||| 4 374827 +del ||| the Ode ||| 0.2 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| the Ombudsman ||| 0.000953289 0.0732944 2.6679e-06 5.62652e-06 2.718 ||| 0-0 ||| 1049 374827 +del ||| the Open ||| 0.181818 0.0463559 5.33579e-06 9.03021e-07 2.718 ||| 0-0 0-1 ||| 11 374827 +del ||| the Ottawa treaty appear ||| 0.5 0.0732944 2.6679e-06 5.58843e-16 2.718 ||| 0-0 ||| 2 374827 +del ||| the Ottawa treaty ||| 0.5 0.0732944 2.6679e-06 6.39408e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| the Ottawa ||| 0.333333 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| the PEACE ||| 0.2 0.0732944 2.6679e-06 3.82047e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| the Parthenon ||| 0.0833333 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 12 374827 +del ||| the Party of European ||| 0.0204082 0.130625 2.6679e-06 9.13199e-09 2.718 ||| 0-2 ||| 49 374827 +del ||| the Party of ||| 0.00847458 0.130625 2.6679e-06 2.73094e-06 2.718 ||| 0-2 ||| 118 374827 +del ||| the Party ||| 0.00689655 0.0732944 2.6679e-06 5.23752e-05 2.718 ||| 0-0 ||| 145 374827 +del ||| the People ' s Consultative Assembly ||| 0.25 0.0732944 2.6679e-06 4.79577e-22 2.718 ||| 0-0 ||| 4 374827 +del ||| the People ' s Consultative ||| 0.25 0.0732944 2.6679e-06 5.32863e-17 2.718 ||| 0-0 ||| 4 374827 +del ||| the People ' s ||| 0.25 0.0732944 2.6679e-06 1.33216e-10 2.718 ||| 0-0 ||| 4 374827 +del ||| the People ' ||| 0.2 0.0732944 2.6679e-06 7.00288e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| the People 's ||| 0.0625 0.169811 2.6679e-06 1.448e-07 2.718 ||| 0-2 ||| 16 374827 +del ||| the People ||| 0.0232558 0.0732944 2.6679e-06 2.03874e-05 2.718 ||| 0-0 ||| 43 374827 +del ||| the Portuguese revolution of ||| 1 0.10196 2.6679e-06 4.27844e-12 2.718 ||| 0-0 0-3 ||| 1 374827 +del ||| the Presidency ||| 0.00020429 0.0732944 2.6679e-06 1.72616e-05 2.718 ||| 0-0 ||| 4895 374827 +del ||| the President of the Ukraine ||| 0.5 0.130625 2.6679e-06 1.62821e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| the President of the ||| 0.000370233 0.130625 2.6679e-06 1.61209e-07 2.718 ||| 0-2 ||| 2701 374827 +del ||| the President of ||| 0.00119284 0.10196 8.00369e-06 1.48557e-05 2.718 ||| 0-0 0-2 ||| 2515 374827 +del ||| the President ||| 0.000136855 0.0732944 2.6679e-06 5.03608e-05 2.718 ||| 0-0 ||| 7307 374827 +del ||| the Prime ||| 0.00152207 0.0732944 2.6679e-06 5.24447e-06 2.718 ||| 0-0 ||| 657 374827 +del ||| the Regulation ||| 0.0015873 0.0289405 2.6679e-06 1.42736e-05 2.718 ||| 0-1 ||| 630 374827 +del ||| the Republic of ||| 0.000639386 0.0732944 2.6679e-06 8.9687e-07 2.718 ||| 0-0 ||| 1564 374827 +del ||| the Republic ||| 0.000565931 0.0732944 2.6679e-06 1.64975e-05 2.718 ||| 0-0 ||| 1767 374827 +del ||| the Rules of Procedure ||| 0.000974659 0.130625 2.6679e-06 8.17893e-11 2.718 ||| 0-2 ||| 1026 374827 +del ||| the Rules of ||| 0.029703 0.130625 2.40111e-05 1.28398e-06 2.718 ||| 0-2 ||| 303 374827 +del ||| the Rules ||| 0.00612557 0.0732944 1.06716e-05 2.46247e-05 2.718 ||| 0-0 ||| 653 374827 +del ||| the Schengen ||| 0.00847458 0.0475085 2.6679e-06 3.92467e-05 2.718 ||| 0-0 0-1 ||| 118 374827 +del ||| the Secretary of the ||| 0.0714286 0.0924045 2.6679e-06 1.53009e-07 2.718 ||| 0-0 0-2 0-3 ||| 14 374827 +del ||| the Single ||| 0.0129032 0.0732944 5.33579e-06 2.74379e-06 2.718 ||| 0-0 ||| 155 374827 +del ||| the Socrates ||| 0.2 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| the South ||| 0.00884956 0.131381 8.00369e-06 0.000428345 2.718 ||| 0-0 0-1 ||| 339 374827 +del ||| the Southern ||| 0.0169492 0.161155 2.6679e-06 0.000115413 2.718 ||| 0-0 0-1 ||| 59 374827 +del ||| the Spanish ||| 0.00790514 0.0732944 5.33579e-06 7.74514e-06 2.718 ||| 0-0 ||| 253 374827 +del ||| the Speaker of the ||| 0.0357143 0.0924045 2.6679e-06 7.82839e-08 2.718 ||| 0-0 0-2 0-3 ||| 28 374827 +del ||| the State ||| 0.00298507 0.0732944 5.33579e-06 4.17474e-05 2.718 ||| 0-0 ||| 670 374827 +del ||| the Summit , thanks to ||| 1 0.0732944 2.6679e-06 3.01095e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| the Summit , thanks ||| 1 0.0732944 2.6679e-06 3.38849e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the Summit , ||| 0.0181818 0.0732944 2.6679e-06 4.18332e-07 2.718 ||| 0-0 ||| 55 374827 +del ||| the Summit ||| 0.002079 0.0732944 2.6679e-06 3.50789e-06 2.718 ||| 0-0 ||| 481 374827 +del ||| the Taliban ||| 0.00282486 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-0 ||| 354 374827 +del ||| the Treaty introduced into the ||| 1 0.0732944 2.6679e-06 1.73338e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the Treaty introduced into ||| 1 0.0732944 2.6679e-06 2.82347e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| the Treaty introduced ||| 0.5 0.0732944 2.6679e-06 2.75005e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| the Treaty ||| 0.000232099 0.0732944 5.33579e-06 2.97302e-05 2.718 ||| 0-0 ||| 8617 374827 +del ||| the U.S. ||| 0.166667 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 6 374827 +del ||| the UK ||| 0.000874126 0.0969375 5.33579e-06 0.000469849 2.718 ||| 0-0 0-1 ||| 2288 374827 +del ||| the UN 's children 's fund , ||| 1 0.0732944 2.6679e-06 1.77801e-20 2.718 ||| 0-0 ||| 1 374827 +del ||| the UN 's children 's fund ||| 1 0.0732944 2.6679e-06 1.49093e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| the UN 's children 's ||| 1 0.0732944 2.6679e-06 3.91321e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| the UN 's children ||| 1 0.0732944 2.6679e-06 2.05483e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| the UN 's ||| 0.0294118 0.0732944 2.6679e-06 2.75816e-08 2.718 ||| 0-0 ||| 34 374827 +del ||| the UN Security ||| 0.0384615 0.0732944 2.6679e-06 6.87946e-10 2.718 ||| 0-0 ||| 26 374827 +del ||| the UN ||| 0.000896593 0.0732944 8.00369e-06 1.44831e-05 2.718 ||| 0-0 ||| 3346 374827 +del ||| the US Congress ||| 0.00740741 0.0732944 2.6679e-06 3.71628e-11 2.718 ||| 0-0 ||| 135 374827 +del ||| the US ||| 0.000682594 0.0732944 5.33579e-06 1.48651e-05 2.718 ||| 0-0 ||| 2930 374827 +del ||| the USA and Japan ||| 0.0149254 0.0732944 2.6679e-06 2.35707e-13 2.718 ||| 0-0 ||| 67 374827 +del ||| the USA and ||| 0.0018018 0.0732944 2.6679e-06 5.48156e-08 2.718 ||| 0-0 ||| 555 374827 +del ||| the USA ||| 0.000355745 0.0732944 2.6679e-06 4.37618e-06 2.718 ||| 0-0 ||| 2811 374827 +del ||| the Union 's ||| 0.00295858 0.0732944 5.33579e-06 3.6868e-07 2.718 ||| 0-0 ||| 676 374827 +del ||| the Union ||| 0.000121822 0.0732944 8.00369e-06 0.000193594 2.718 ||| 0-0 ||| 24626 374827 +del ||| the United Nations Secretary-General ||| 0.0454545 0.0732944 2.6679e-06 2.24971e-15 2.718 ||| 0-0 ||| 22 374827 +del ||| the United Nations ||| 0.000947568 0.0732944 8.00369e-06 1.60693e-09 2.718 ||| 0-0 ||| 3166 374827 +del ||| the United ||| 0.00125865 0.0732944 1.06716e-05 4.25115e-05 2.718 ||| 0-0 ||| 3178 374827 +del ||| the Watson ||| 1 0.0374358 2.6679e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| the West . ||| 0.0070922 0.0732944 2.6679e-06 1.55699e-08 2.718 ||| 0-0 ||| 141 374827 +del ||| the West ||| 0.00105932 0.0732944 2.6679e-06 5.14027e-06 2.718 ||| 0-0 ||| 944 374827 +del ||| the White Paper that we are ||| 0.25 0.0732944 2.6679e-06 8.6222e-17 2.718 ||| 0-0 ||| 4 374827 +del ||| the White Paper that we ||| 0.2 0.0732944 2.6679e-06 5.68271e-15 2.718 ||| 0-0 ||| 5 374827 +del ||| the White Paper that ||| 0.0555556 0.0732944 2.6679e-06 5.00577e-13 2.718 ||| 0-0 ||| 18 374827 +del ||| the White Paper ||| 0.00108225 0.0732944 2.6679e-06 2.9758e-11 2.718 ||| 0-0 ||| 924 374827 +del ||| the White ||| 0.030303 0.0732944 2.6679e-06 2.36175e-06 2.718 ||| 0-0 ||| 33 374827 +del ||| the a ||| 0.0909091 0.0732944 2.6679e-06 0.0153951 2.718 ||| 0-0 ||| 11 374827 +del ||| the absence of ||| 0.00147601 0.0732944 5.33579e-06 4.8903e-07 2.718 ||| 0-0 ||| 1355 374827 +del ||| the absence ||| 0.000662691 0.0732944 2.6679e-06 8.99548e-06 2.718 ||| 0-0 ||| 1509 374827 +del ||| the accounts of ||| 0.0125 0.0732944 2.6679e-06 5.83438e-07 2.718 ||| 0-0 ||| 80 374827 +del ||| the accounts ||| 0.00222717 0.0732944 2.6679e-06 1.07321e-05 2.718 ||| 0-0 ||| 449 374827 +del ||| the acquis communautaire ||| 0.00420168 0.0732944 2.6679e-06 1.21561e-12 2.718 ||| 0-0 ||| 238 374827 +del ||| the acquis ||| 0.00564972 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-0 ||| 177 374827 +del ||| the activities of the ||| 0.0020284 0.10196 2.6679e-06 5.00038e-07 2.718 ||| 0-2 0-3 ||| 493 374827 +del ||| the activity of ||| 0.00595238 0.130625 2.6679e-06 9.70679e-07 2.718 ||| 0-2 ||| 168 374827 +del ||| the actual Rules of ||| 1 0.130625 2.6679e-06 1.85791e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| the actual product ||| 1 0.0732944 2.6679e-06 3.0556e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| the actual responsibility ||| 0.333333 0.0732944 2.6679e-06 5.80464e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| the actual ||| 0.00328407 0.0732944 5.33579e-06 5.02566e-05 2.718 ||| 0-0 ||| 609 374827 +del ||| the admittedly ||| 0.1 0.0732944 2.6679e-06 7.74514e-06 2.718 ||| 0-0 ||| 10 374827 +del ||| the adoption of a ||| 0.00182482 0.0732944 2.6679e-06 3.85828e-08 2.718 ||| 0-0 ||| 548 374827 +del ||| the adoption of the ||| 0.000782473 0.10196 2.6679e-06 2.89959e-07 2.718 ||| 0-2 0-3 ||| 1278 374827 +del ||| the adoption of ||| 0.001002 0.130625 8.00369e-06 8.34857e-07 2.718 ||| 0-2 ||| 2994 374827 +del ||| the adoption ||| 0.000729572 0.0732944 8.00369e-06 1.60113e-05 2.718 ||| 0-0 ||| 4112 374827 +del ||| the advanced ||| 0.0588235 0.0732944 2.6679e-06 5.14027e-06 2.718 ||| 0-0 ||| 17 374827 +del ||| the advantage ||| 0.00250627 0.0732944 2.6679e-06 1.76089e-05 2.718 ||| 0-0 ||| 399 374827 +del ||| the aforementioned ||| 0.00617284 0.0732944 2.6679e-06 2.50067e-06 2.718 ||| 0-0 ||| 162 374827 +del ||| the ageing ||| 0.0031746 0.0732944 2.6679e-06 1.11141e-06 2.718 ||| 0-0 ||| 315 374827 +del ||| the agenda at the ||| 0.04 0.0732944 2.6679e-06 8.86602e-09 2.718 ||| 0-0 ||| 25 374827 +del ||| the agenda at ||| 0.0169492 0.0732944 2.6679e-06 1.44417e-07 2.718 ||| 0-0 ||| 59 374827 +del ||| the agenda for ||| 0.00222717 0.105956 2.6679e-06 1.96607e-05 2.718 ||| 0-0 0-1 0-2 ||| 449 374827 +del ||| the agenda ||| 0.00169062 0.0732944 1.60074e-05 3.44885e-05 2.718 ||| 0-0 ||| 3549 374827 +del ||| the agreement setting ||| 0.5 0.0732944 2.6679e-06 6.08098e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| the agreement ||| 0.000394633 0.0732944 5.33579e-06 6.40103e-05 2.718 ||| 0-0 ||| 5068 374827 +del ||| the agreements must also be monitored at ||| 1 0.0732944 2.6679e-06 9.3089e-20 2.718 ||| 0-0 ||| 1 374827 +del ||| the agreements must also be monitored ||| 1 0.0732944 2.6679e-06 2.22307e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| the agreements must also be ||| 0.333333 0.0732944 2.6679e-06 1.82219e-12 2.718 ||| 0-0 ||| 3 374827 +del ||| the agreements must also ||| 0.333333 0.0732944 2.6679e-06 1.00546e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| the agreements must ||| 0.166667 0.0732944 2.6679e-06 1.99157e-08 2.718 ||| 0-0 ||| 6 374827 +del ||| the agreements ||| 0.000808407 0.0732944 2.6679e-06 1.28854e-05 2.718 ||| 0-0 ||| 1237 374827 +del ||| the aide-mémoire of ||| 0.5 0.130625 2.6679e-06 7.24388e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| the aim of generating a ||| 1 0.0732944 2.6679e-06 7.01981e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the aim of generating ||| 0.5 0.0732944 2.6679e-06 1.58368e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| the aim of my ||| 0.0666667 0.130625 2.6679e-06 1.60137e-09 2.718 ||| 0-2 ||| 15 374827 +del ||| the aim of ||| 0.000749064 0.0732944 5.33579e-06 2.5962e-06 2.718 ||| 0-0 ||| 2670 374827 +del ||| the aim ||| 0.000485555 0.0732944 5.33579e-06 4.77559e-05 2.718 ||| 0-0 ||| 4119 374827 +del ||| the air ||| 0.002849 0.113605 2.6679e-06 7.8778e-05 2.718 ||| 0-1 ||| 351 374827 +del ||| the allocated ||| 0.333333 0.0732944 2.6679e-06 1.54903e-05 2.718 ||| 0-0 ||| 3 374827 +del ||| the amendment of the ||| 0.00574713 0.10196 2.6679e-06 4.00659e-07 2.718 ||| 0-2 0-3 ||| 174 374827 +del ||| the amount of money ||| 0.00847458 0.130625 2.6679e-06 7.19955e-10 2.718 ||| 0-2 ||| 118 374827 +del ||| the amount of ||| 0.000966184 0.130625 2.6679e-06 4.40609e-06 2.718 ||| 0-2 ||| 1035 374827 +del ||| the amount ||| 0.00169683 0.0732944 8.00369e-06 8.45019e-05 2.718 ||| 0-0 ||| 1768 374827 +del ||| the announcement ||| 0.00277008 0.0732944 2.6679e-06 2.01443e-06 2.718 ||| 0-0 ||| 361 374827 +del ||| the annual ||| 0.0114943 0.0732944 2.6679e-06 1.00027e-05 2.718 ||| 0-0 ||| 87 374827 +del ||| the answer given by the ||| 0.0909091 0.064249 2.6679e-06 1.00265e-10 2.718 ||| 0-0 0-3 0-4 ||| 11 374827 +del ||| the anti counterfeit ||| 1 0.0732944 2.6679e-06 6.87685e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the anti ||| 1 0.0732944 2.6679e-06 3.82047e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| the application of the ||| 0.000864304 0.10196 2.6679e-06 3.82419e-07 2.718 ||| 0-2 0-3 ||| 1157 374827 +del ||| the application ||| 0.000588408 0.0732944 5.33579e-06 2.11168e-05 2.718 ||| 0-0 ||| 3399 374827 +del ||| the appointment ||| 0.00283688 0.0732944 5.33579e-06 3.99413e-06 2.718 ||| 0-0 ||| 705 374827 +del ||| the area of ||| 0.000205931 0.10196 2.6679e-06 4.25488e-05 2.718 ||| 0-0 0-2 ||| 4856 374827 +del ||| the area ||| 0.00030303 0.0732944 5.33579e-06 0.00014424 2.718 ||| 0-0 ||| 6600 374827 +del ||| the areas of the ||| 0.0147059 0.10196 2.6679e-06 1.43973e-06 2.718 ||| 0-2 0-3 ||| 68 374827 +del ||| the areas ||| 0.000421585 0.0732944 2.6679e-06 7.95006e-05 2.718 ||| 0-0 ||| 2372 374827 +del ||| the arms of the ||| 0.111111 0.10196 2.6679e-06 1.74227e-07 2.718 ||| 0-2 0-3 ||| 9 374827 +del ||| the arms ||| 0.0120482 0.0732944 2.6679e-06 9.62065e-06 2.718 ||| 0-0 ||| 83 374827 +del ||| the arrangements for European Union spending . ||| 1 0.0732944 2.6679e-06 1.40258e-20 2.718 ||| 0-0 ||| 1 374827 +del ||| the arrangements for European Union spending ||| 1 0.0732944 2.6679e-06 4.63051e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| the arrangements for European Union ||| 1 0.0732944 2.6679e-06 2.1842e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the arrangements for European ||| 1 0.0732944 2.6679e-06 3.91855e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the arrangements for ||| 0.0108696 0.0732944 2.6679e-06 1.17185e-07 2.718 ||| 0-0 ||| 92 374827 +del ||| the arrangements ||| 0.00344828 0.0732944 2.6679e-06 1.52472e-05 2.718 ||| 0-0 ||| 290 374827 +del ||| the arrest of ||| 0.00558659 0.130625 2.6679e-06 2.48103e-07 2.718 ||| 0-2 ||| 179 374827 +del ||| the arrival of the ||| 0.010101 0.0924045 2.6679e-06 2.56202e-07 2.718 ||| 0-0 0-2 0-3 ||| 99 374827 +del ||| the as ||| 0.1 0.0732944 2.6679e-06 0.00354415 2.718 ||| 0-0 ||| 10 374827 +del ||| the aspects he includes in his ||| 1 0.0183279 2.6679e-06 8.90687e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| the aspects he includes in ||| 1 0.0183279 2.6679e-06 2.96402e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| the assistance of the ||| 0.0149254 0.0924045 2.6679e-06 1.7685e-06 2.718 ||| 0-0 0-2 0-3 ||| 67 374827 +del ||| the attention of the ||| 0.00242718 0.0924045 2.6679e-06 9.29799e-06 2.718 ||| 0-0 0-2 0-3 ||| 412 374827 +del ||| the attention they deserve ||| 0.0588235 0.0732944 2.6679e-06 5.21347e-12 2.718 ||| 0-0 ||| 17 374827 +del ||| the attention they ||| 0.03125 0.0732944 2.6679e-06 2.9622e-07 2.718 ||| 0-0 ||| 32 374827 +del ||| the attention ||| 0.00092081 0.0732944 2.6679e-06 9.07536e-05 2.718 ||| 0-0 ||| 1086 374827 +del ||| the audiovisual ||| 0.0357143 0.0732944 2.6679e-06 1.38926e-06 2.718 ||| 0-0 ||| 28 374827 +del ||| the autonomous regions of ||| 0.1 0.0732944 2.6679e-06 5.601e-12 2.718 ||| 0-0 ||| 10 374827 +del ||| the autonomous regions ||| 0.0555556 0.0732944 2.6679e-06 1.03028e-10 2.718 ||| 0-0 ||| 18 374827 +del ||| the autonomous ||| 0.166667 0.0732944 2.6679e-06 1.25034e-06 2.718 ||| 0-0 ||| 6 374827 +del ||| the availability of ||| 0.00238095 0.0732944 2.6679e-06 1.28394e-07 2.718 ||| 0-0 ||| 420 374827 +del ||| the availability ||| 0.00198413 0.0732944 2.6679e-06 2.36175e-06 2.718 ||| 0-0 ||| 504 374827 +del ||| the balance of ||| 0.00265957 0.130625 2.6679e-06 9.77923e-07 2.718 ||| 0-2 ||| 376 374827 +del ||| the balance ||| 0.000746269 0.0732944 2.6679e-06 1.87551e-05 2.718 ||| 0-0 ||| 1340 374827 +del ||| the ban is enforced ||| 0.5 0.0732944 2.6679e-06 4.81945e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| the ban is ||| 0.0625 0.0732944 2.6679e-06 4.19082e-07 2.718 ||| 0-0 ||| 16 374827 +del ||| the ban ||| 0.000887311 0.0732944 2.6679e-06 1.33717e-05 2.718 ||| 0-0 ||| 1127 374827 +del ||| the banana ||| 0.0172414 0.127052 2.6679e-06 0.000126353 2.718 ||| 0-0 0-1 ||| 58 374827 +del ||| the banks beside the ||| 1 0.0732944 2.6679e-06 8.04918e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| the basic ||| 0.00359712 0.0732944 2.6679e-06 1.87551e-05 2.718 ||| 0-0 ||| 278 374827 +del ||| the basis of a ||| 0.00164745 0.130625 2.6679e-06 4.76659e-07 2.718 ||| 0-2 ||| 607 374827 +del ||| the basis of the much ||| 1 0.0924045 2.6679e-06 2.12077e-08 2.718 ||| 0-0 0-2 0-3 ||| 1 374827 +del ||| the basis of the ||| 0.00163399 0.0924045 8.00369e-06 2.11295e-05 2.718 ||| 0-0 0-2 0-3 ||| 1836 374827 +del ||| the basis of ||| 0.00116706 0.130625 1.86753e-05 1.07535e-05 2.718 ||| 0-2 ||| 5998 374827 +del ||| the basis ||| 0.000729838 0.0732944 1.60074e-05 0.000206236 2.718 ||| 0-0 ||| 8221 374827 +del ||| the beneficiaries ||| 0.00404858 0.0732944 2.6679e-06 1.11141e-06 2.718 ||| 0-0 ||| 247 374827 +del ||| the benefit of the ||| 0.00223714 0.10196 2.6679e-06 8.28364e-07 2.718 ||| 0-2 0-3 ||| 447 374827 +del ||| the benefit of ||| 0.000725163 0.0732944 2.6679e-06 2.48669e-06 2.718 ||| 0-0 ||| 1379 374827 +del ||| the benefit ||| 0.000625391 0.0732944 2.6679e-06 4.57415e-05 2.718 ||| 0-0 ||| 1599 374827 +del ||| the benefits of the ||| 0.0042735 0.0924045 2.6679e-06 1.40911e-06 2.718 ||| 0-0 0-2 0-3 ||| 234 374827 +del ||| the best of ||| 0.003861 0.0732944 2.6679e-06 2.61508e-06 2.718 ||| 0-0 ||| 259 374827 +del ||| the best ||| 0.000441826 0.0732944 8.00369e-06 4.81032e-05 2.718 ||| 0-0 ||| 6790 374827 +del ||| the bilateral and ||| 0.333333 0.0732944 2.6679e-06 2.65377e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| the bilateral ||| 0.0232558 0.0732944 2.6679e-06 2.11863e-06 2.718 ||| 0-0 ||| 43 374827 +del ||| the bill ||| 0.00310559 0.0732944 2.6679e-06 6.00856e-06 2.718 ||| 0-0 ||| 322 374827 +del ||| the birth of the ||| 0.0172414 0.0717921 2.6679e-06 5.12404e-07 2.718 ||| 0-0 0-1 0-2 0-3 ||| 58 374827 +del ||| the bloody ||| 0.0178571 0.0732944 2.6679e-06 8.6829e-07 2.718 ||| 0-0 ||| 56 374827 +del ||| the board ||| 0.00487805 0.0732944 5.33579e-06 4.63667e-05 2.718 ||| 0-0 ||| 410 374827 +del ||| the body of the ||| 0.0263158 0.10196 2.6679e-06 5.38405e-07 2.718 ||| 0-2 0-3 ||| 38 374827 +del ||| the bone ||| 0.0416667 0.0732944 2.6679e-06 8.6829e-07 2.718 ||| 0-0 ||| 24 374827 +del ||| the borders of the ||| 0.00398406 0.0924045 2.6679e-06 1.53721e-06 2.718 ||| 0-0 0-2 0-3 ||| 251 374827 +del ||| the bottom of the ||| 0.0190476 0.10196 5.33579e-06 9.05729e-08 2.718 ||| 0-2 0-3 ||| 105 374827 +del ||| the breaking up of the ||| 0.5 0.0924045 2.6679e-06 1.8325e-09 2.718 ||| 0-0 0-3 0-4 ||| 2 374827 +del ||| the brominated flame ||| 0.5 0.0262009 2.6679e-06 1.21249e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| the budget has to be ||| 0.142857 0.0732944 2.6679e-06 3.55272e-10 2.718 ||| 0-0 ||| 7 374827 +del ||| the budget has to ||| 0.0909091 0.0732944 2.6679e-06 1.96035e-08 2.718 ||| 0-0 ||| 11 374827 +del ||| the budget has ||| 0.0294118 0.0732944 2.6679e-06 2.20616e-07 2.718 ||| 0-0 ||| 34 374827 +del ||| the budget ||| 0.000479846 0.0732944 5.33579e-06 4.28588e-05 2.718 ||| 0-0 ||| 4168 374827 +del ||| the bulk of this ||| 0.0909091 0.0732944 2.6679e-06 9.63806e-10 2.718 ||| 0-0 ||| 11 374827 +del ||| the bulk of ||| 0.00497512 0.0732944 2.6679e-06 1.49164e-07 2.718 ||| 0-0 ||| 201 374827 +del ||| the bulk ||| 0.00374532 0.0732944 2.6679e-06 2.74379e-06 2.718 ||| 0-0 ||| 267 374827 +del ||| the burden ||| 0.000830565 0.0732944 2.6679e-06 1.51082e-05 2.718 ||| 0-0 ||| 1204 374827 +del ||| the business ||| 0.00261097 0.0732944 2.6679e-06 4.33797e-05 2.718 ||| 0-0 ||| 383 374827 +del ||| the businesses ||| 0.00840336 0.0732944 2.6679e-06 9.2386e-06 2.718 ||| 0-0 ||| 119 374827 +del ||| the calculation ||| 0.00769231 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-0 ||| 130 374827 +del ||| the capital ||| 0.00273224 0.0732944 2.6679e-06 8.99548e-06 2.718 ||| 0-0 ||| 366 374827 +del ||| the case , one has got to ||| 1 0.0732944 2.6679e-06 9.24234e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| the case , one has got ||| 1 0.0732944 2.6679e-06 1.04012e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the case , one has ||| 0.5 0.0732944 2.6679e-06 9.50752e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| the case , one ||| 0.5 0.0732944 2.6679e-06 1.84702e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| the case , ||| 0.000859845 0.0732944 2.6679e-06 4.43142e-05 2.718 ||| 0-0 ||| 1163 374827 +del ||| the case also of ||| 1 0.130625 2.6679e-06 9.78194e-08 2.718 ||| 0-3 ||| 1 374827 +del ||| the case between the ||| 1 0.0732944 2.6679e-06 6.01801e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| the case of the ||| 0.00398406 0.0924045 1.06716e-05 3.80709e-05 2.718 ||| 0-0 0-2 0-3 ||| 1004 374827 +del ||| the case of ||| 0.000874508 0.130625 1.06716e-05 1.93756e-05 2.718 ||| 0-2 ||| 4574 374827 +del ||| the case that , in ||| 0.0909091 0.0732944 2.6679e-06 1.59557e-08 2.718 ||| 0-0 ||| 11 374827 +del ||| the case that , ||| 0.0232558 0.0732944 2.6679e-06 7.45436e-07 2.718 ||| 0-0 ||| 43 374827 +del ||| the case that ||| 0.0041958 0.0732944 8.00369e-06 6.25079e-06 2.718 ||| 0-0 ||| 715 374827 +del ||| the case today that ||| 1 0.0732944 2.6679e-06 2.82098e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| the case today ||| 0.0175439 0.0732944 2.6679e-06 1.677e-07 2.718 ||| 0-0 ||| 57 374827 +del ||| the case ||| 0.00124844 0.0732944 4.00185e-05 0.000371593 2.718 ||| 0-0 ||| 12015 374827 +del ||| the cases ||| 0.00208768 0.0732944 2.6679e-06 4.44912e-05 2.718 ||| 0-0 ||| 479 374827 +del ||| the cause of ||| 0.00140647 0.130625 2.6679e-06 3.27242e-06 2.718 ||| 0-2 ||| 711 374827 +del ||| the causes of hunger and underdevelopment are ||| 1 0.130625 2.6679e-06 1.28365e-22 2.718 ||| 0-2 ||| 1 374827 +del ||| the causes of hunger and underdevelopment ||| 1 0.130625 2.6679e-06 8.46023e-21 2.718 ||| 0-2 ||| 1 374827 +del ||| the causes of hunger and ||| 1 0.130625 2.6679e-06 2.11506e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| the causes of hunger ||| 1 0.130625 2.6679e-06 1.68855e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| the causes of ||| 0.00158479 0.130625 2.6679e-06 4.69041e-07 2.718 ||| 0-2 ||| 631 374827 +del ||| the cells ||| 0.0833333 0.0732944 2.6679e-06 1.49346e-06 2.718 ||| 0-0 ||| 12 374827 +del ||| the central Upper Rhine ||| 1 0.0732944 2.6679e-06 7.30093e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| the central Upper ||| 1 0.0732944 2.6679e-06 1.04299e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the central ||| 0.00564972 0.0732944 2.6679e-06 9.48172e-06 2.718 ||| 0-0 ||| 177 374827 +del ||| the centre of ||| 0.00376648 0.130625 5.33579e-06 5.7951e-07 2.718 ||| 0-2 ||| 531 374827 +del ||| the challenge posed by ||| 0.047619 0.0461582 2.6679e-06 5.52334e-13 2.718 ||| 0-3 ||| 21 374827 +del ||| the challenge ||| 0.000739098 0.0732944 2.6679e-06 1.48651e-05 2.718 ||| 0-0 ||| 1353 374827 +del ||| the champions of ||| 0.03125 0.130625 2.6679e-06 1.99207e-08 2.718 ||| 0-2 ||| 32 374827 +del ||| the chance to take a ||| 0.333333 0.0732944 2.6679e-06 1.45141e-10 2.718 ||| 0-0 ||| 3 374827 +del ||| the chance to take ||| 0.0909091 0.0732944 2.6679e-06 3.27441e-09 2.718 ||| 0-0 ||| 11 374827 +del ||| the chance to ||| 0.00148148 0.0732944 2.6679e-06 2.0338e-06 2.718 ||| 0-0 ||| 675 374827 +del ||| the chance ||| 0.000943396 0.0732944 2.6679e-06 2.28881e-05 2.718 ||| 0-0 ||| 1060 374827 +del ||| the characteristics of ||| 0.00806452 0.130625 2.6679e-06 1.70231e-07 2.718 ||| 0-2 ||| 124 374827 +del ||| the characteristics ||| 0.00507614 0.0732944 2.6679e-06 3.26477e-06 2.718 ||| 0-0 ||| 197 374827 +del ||| the chief ||| 0.0078125 0.0732944 2.6679e-06 2.74379e-06 2.718 ||| 0-0 ||| 128 374827 +del ||| the choice of ||| 0.00192308 0.130625 2.6679e-06 8.07692e-07 2.718 ||| 0-2 ||| 520 374827 +del ||| the circle ||| 0.00990099 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-0 ||| 101 374827 +del ||| the citizens ' representative ||| 0.142857 0.0732944 2.6679e-06 3.04285e-12 2.718 ||| 0-0 ||| 7 374827 +del ||| the citizens ' ||| 0.00970874 0.0732944 2.6679e-06 1.30036e-07 2.718 ||| 0-0 ||| 103 374827 +del ||| the citizens ||| 0.000271518 0.0732944 5.33579e-06 3.78574e-05 2.718 ||| 0-0 ||| 7366 374827 +del ||| the civil ||| 0.0169492 0.0732944 2.6679e-06 9.2386e-06 2.718 ||| 0-0 ||| 59 374827 +del ||| the clear electoral will demonstrated ||| 0.5 0.0732944 2.6679e-06 1.64743e-16 2.718 ||| 0-0 ||| 2 374827 +del ||| the clear electoral will ||| 0.5 0.0732944 2.6679e-06 6.10161e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| the clear electoral ||| 0.5 0.0732944 2.6679e-06 7.05291e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| the clear ||| 0.00226244 0.0732944 2.6679e-06 0.000115621 2.718 ||| 0-0 ||| 442 374827 +del ||| the climate ||| 0.00296736 0.0732944 5.33579e-06 9.48172e-06 2.718 ||| 0-0 ||| 674 374827 +del ||| the coffee shop ||| 0.25 0.0732944 2.6679e-06 1.12878e-11 2.718 ||| 0-0 ||| 4 374827 +del ||| the coffee ||| 0.125 0.0732944 2.6679e-06 8.6829e-07 2.718 ||| 0-0 ||| 8 374827 +del ||| the coffers ||| 0.025641 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-0 ||| 39 374827 +del ||| the combination of ||| 0.00552486 0.10196 2.6679e-06 7.78644e-07 2.718 ||| 0-0 0-2 ||| 181 374827 +del ||| the commitments ||| 0.00132979 0.0732944 2.6679e-06 6.87685e-06 2.718 ||| 0-0 ||| 752 374827 +del ||| the committee ||| 0.000200763 0.0732944 2.6679e-06 2.68822e-05 2.718 ||| 0-0 ||| 4981 374827 +del ||| the common organisation of the ||| 0.010929 0.0924045 5.33579e-06 2.7783e-10 2.718 ||| 0-0 0-3 0-4 ||| 183 374827 +del ||| the common ||| 0.00559441 0.0732944 1.06716e-05 8.02299e-05 2.718 ||| 0-0 ||| 715 374827 +del ||| the complex ||| 0.0033557 0.0732944 2.6679e-06 7.50202e-06 2.718 ||| 0-0 ||| 298 374827 +del ||| the composting of ||| 0.5 0.130625 2.6679e-06 7.24388e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| the concerns of the ||| 0.00434783 0.10196 2.6679e-06 4.71105e-07 2.718 ||| 0-2 0-3 ||| 230 374827 +del ||| the conclusion , ||| 0.0243902 0.0732944 2.6679e-06 3.66559e-06 2.718 ||| 0-0 ||| 41 374827 +del ||| the conclusion of the ||| 0.00211864 0.0924045 2.6679e-06 3.14915e-06 2.718 ||| 0-0 0-2 0-3 ||| 472 374827 +del ||| the conclusion of this ||| 0.00877193 0.10196 2.6679e-06 5.85862e-08 2.718 ||| 0-0 0-2 ||| 114 374827 +del ||| the conclusion of ||| 0.00124378 0.10196 2.6679e-06 9.0671e-06 2.718 ||| 0-0 0-2 ||| 804 374827 +del ||| the conclusion ||| 0.00131868 0.0732944 8.00369e-06 3.07374e-05 2.718 ||| 0-0 ||| 2275 374827 +del ||| the conditions ||| 0.000280348 0.0732944 2.6679e-06 4.15042e-05 2.718 ||| 0-0 ||| 3567 374827 +del ||| the conduct of ||| 0.00401606 0.0732944 2.6679e-06 1.13478e-06 2.718 ||| 0-0 ||| 249 374827 +del ||| the conduct ||| 0.00331126 0.0732944 2.6679e-06 2.08737e-05 2.718 ||| 0-0 ||| 302 374827 +del ||| the consequence of ||| 0.00591716 0.130625 2.6679e-06 6.39272e-07 2.718 ||| 0-2 ||| 169 374827 +del ||| the consequence ||| 0.00291545 0.0732944 2.6679e-06 1.22602e-05 2.718 ||| 0-0 ||| 343 374827 +del ||| the constitutional aspects of the ||| 1 0.0924045 2.6679e-06 2.08217e-11 2.718 ||| 0-0 0-3 0-4 ||| 1 374827 +del ||| the content of the ||| 0.0015361 0.0924045 2.6679e-06 1.75427e-06 2.718 ||| 0-0 0-2 0-3 ||| 651 374827 +del ||| the content ||| 0.000537634 0.0732944 2.6679e-06 1.71227e-05 2.718 ||| 0-0 ||| 1860 374827 +del ||| the contents of ||| 0.00492611 0.130625 2.6679e-06 1.95585e-07 2.718 ||| 0-2 ||| 203 374827 +del ||| the contents ||| 0.0027027 0.0732944 2.6679e-06 3.75101e-06 2.718 ||| 0-0 ||| 370 374827 +del ||| the contest ||| 0.111111 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-0 ||| 9 374827 +del ||| the context of ||| 0.0002531 0.0732944 2.6679e-06 2.53389e-06 2.718 ||| 0-0 ||| 3951 374827 +del ||| the context ||| 0.00121457 0.0732944 1.60074e-05 4.66098e-05 2.718 ||| 0-0 ||| 4940 374827 +del ||| the continuation of ||| 0.00222717 0.0732944 2.6679e-06 2.30354e-07 2.718 ||| 0-0 ||| 449 374827 +del ||| the continuation ||| 0.00545703 0.0732944 1.06716e-05 4.23725e-06 2.718 ||| 0-0 ||| 733 374827 +del ||| the contract of the observance of ||| 1 0.0732944 2.6679e-06 4.28137e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| the contract of the observance ||| 1 0.0732944 2.6679e-06 7.87539e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| the contract of the ||| 0.5 0.0732944 2.6679e-06 1.83149e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| the contract of ||| 0.111111 0.0732944 2.6679e-06 2.98327e-07 2.718 ||| 0-0 ||| 9 374827 +del ||| the contract ||| 0.00581395 0.0732944 2.6679e-06 5.48759e-06 2.718 ||| 0-0 ||| 172 374827 +del ||| the conviction ||| 0.0037037 0.0732944 2.6679e-06 2.6396e-06 2.718 ||| 0-0 ||| 270 374827 +del ||| the correct ||| 0.00316456 0.0732944 2.6679e-06 1.25034e-05 2.718 ||| 0-0 ||| 316 374827 +del ||| the costs of ||| 0.00107643 0.0732944 2.6679e-06 1.41989e-06 2.718 ||| 0-0 ||| 929 374827 +del ||| the costs ||| 0.000472367 0.0732944 2.6679e-06 2.61181e-05 2.718 ||| 0-0 ||| 2117 374827 +del ||| the countries of the ||| 0.000606061 0.10196 2.6679e-06 2.38823e-06 2.718 ||| 0-2 0-3 ||| 1650 374827 +del ||| the country 's ||| 0.00833333 0.0732944 2.6679e-06 2.38048e-07 2.718 ||| 0-0 ||| 120 374827 +del ||| the country , on ||| 1 0.0732944 2.6679e-06 9.97408e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| the country , ||| 0.0025 0.0732944 2.6679e-06 1.49067e-05 2.718 ||| 0-0 ||| 400 374827 +del ||| the country over the ||| 0.25 0.0732944 2.6679e-06 3.69499e-09 2.718 ||| 0-3 ||| 4 374827 +del ||| the country ||| 0.00101557 0.0732944 1.60074e-05 0.000124999 2.718 ||| 0-0 ||| 5908 374827 +del ||| the course , ||| 0.2 0.0732944 2.6679e-06 5.22584e-05 2.718 ||| 0-0 ||| 5 374827 +del ||| the course of the ||| 0.00300752 0.0732944 5.33579e-06 1.46252e-06 2.718 ||| 0-0 ||| 665 374827 +del ||| the course of ||| 0.000650195 0.0732944 2.6679e-06 2.38228e-05 2.718 ||| 0-0 ||| 1538 374827 +del ||| the course ||| 0.00148075 0.0732944 8.00369e-06 0.000438208 2.718 ||| 0-0 ||| 2026 374827 +del ||| the covenant of Noble ||| 0.5 0.0732944 2.6679e-06 5.28681e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| the covenant of ||| 0.5 0.0732944 2.6679e-06 1.3217e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| the covenant ||| 0.5 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| the creation of ||| 0.000191461 0.130625 2.6679e-06 8.4029e-07 2.718 ||| 0-2 ||| 5223 374827 +del ||| the creation ||| 0.000329218 0.0732944 5.33579e-06 1.61155e-05 2.718 ||| 0-0 ||| 6075 374827 +del ||| the credit advice ||| 0.5 0.0732944 2.6679e-06 2.25061e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| the credit ||| 0.00578035 0.0732944 2.6679e-06 1.25034e-05 2.718 ||| 0-0 ||| 173 374827 +del ||| the current availability of ||| 0.333333 0.130625 2.6679e-06 2.02944e-11 2.718 ||| 0-3 ||| 3 374827 +del ||| the current scheme ||| 0.0833333 0.0732944 2.6679e-06 2.02049e-09 2.718 ||| 0-0 ||| 12 374827 +del ||| the current ||| 0.00110355 0.0732944 1.60074e-05 5.72376e-05 2.718 ||| 0-0 ||| 5437 374827 +del ||| the damage at ||| 0.1 0.0732944 2.6679e-06 6.12281e-08 2.718 ||| 0-0 ||| 10 374827 +del ||| the damage ||| 0.00096432 0.0732944 2.6679e-06 1.4622e-05 2.718 ||| 0-0 ||| 1037 374827 +del ||| the dark ||| 0.00813008 0.0732944 2.6679e-06 3.88994e-06 2.718 ||| 0-0 ||| 123 374827 +del ||| the data ||| 0.000932836 0.0732944 2.6679e-06 1.57334e-05 2.718 ||| 0-0 ||| 1072 374827 +del ||| the date ||| 0.0010627 0.0732944 2.6679e-06 3.54957e-05 2.718 ||| 0-0 ||| 941 374827 +del ||| the days before ||| 0.0588235 0.0732944 2.6679e-06 5.53322e-09 2.718 ||| 0-0 ||| 17 374827 +del ||| the days ||| 0.00381679 0.0732944 2.6679e-06 2.2124e-05 2.718 ||| 0-0 ||| 262 374827 +del ||| the deadlock ||| 0.0163934 0.0732944 5.33579e-06 1.25034e-06 2.718 ||| 0-0 ||| 122 374827 +del ||| the dealings ||| 0.111111 0.0732944 2.6679e-06 3.61208e-06 2.718 ||| 0-0 ||| 9 374827 +del ||| the debate for ||| 0.0434783 0.0732944 2.6679e-06 5.28267e-07 2.718 ||| 0-0 ||| 23 374827 +del ||| the debate to ||| 0.012987 0.0732944 2.6679e-06 6.10756e-06 2.718 ||| 0-0 ||| 77 374827 +del ||| the debate ||| 0.000206954 0.0732944 8.00369e-06 6.87338e-05 2.718 ||| 0-0 ||| 14496 374827 +del ||| the decimal ||| 1 0.0732944 2.6679e-06 3.82047e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| the decision by ||| 0.00735294 0.0461582 2.6679e-06 1.56151e-07 2.718 ||| 0-2 ||| 136 374827 +del ||| the decision of the Committee on Budgets ||| 0.5 0.130625 2.6679e-06 1.8035e-18 2.718 ||| 0-2 ||| 2 374827 +del ||| the decision of the Committee on ||| 0.0909091 0.130625 2.6679e-06 1.78565e-13 2.718 ||| 0-2 ||| 11 374827 +del ||| the decision of the Committee ||| 0.0625 0.130625 2.6679e-06 2.66873e-11 2.718 ||| 0-2 ||| 16 374827 +del ||| the decision of the ||| 0.00255102 0.130625 2.6679e-06 1.74884e-07 2.718 ||| 0-2 ||| 392 374827 +del ||| the decision of ||| 0.0037594 0.130625 2.6679e-06 2.84865e-06 2.718 ||| 0-2 ||| 266 374827 +del ||| the decision taken ||| 0.00398406 0.0732944 2.6679e-06 4.97978e-08 2.718 ||| 0-0 ||| 251 374827 +del ||| the decision that you should be fully ||| 1 0.0732944 2.6679e-06 2.70203e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| the decision that you should be ||| 1 0.0732944 2.6679e-06 2.38275e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the decision that you should ||| 1 0.0732944 2.6679e-06 1.31477e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the decision that you ||| 0.333333 0.0732944 2.6679e-06 2.96721e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| the decision that ||| 0.00793651 0.0732944 2.6679e-06 9.19011e-07 2.718 ||| 0-0 ||| 126 374827 +del ||| the decision ||| 0.00087241 0.0732944 1.06716e-05 5.46328e-05 2.718 ||| 0-0 ||| 4585 374827 +del ||| the decision-taking process ||| 0.125 0.0732944 2.6679e-06 5.9391e-11 2.718 ||| 0-0 ||| 8 374827 +del ||| the decision-taking ||| 0.25 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| the deficit ||| 0.0060241 0.0124596 2.6679e-06 2.17941e-06 2.718 ||| 0-1 ||| 166 374827 +del ||| the definition of ||| 0.000849618 0.10196 2.6679e-06 2.79697e-06 2.718 ||| 0-0 0-2 ||| 1177 374827 +del ||| the delays in ||| 0.0123457 0.0183279 2.6679e-06 1.12575e-08 2.718 ||| 0-2 ||| 81 374827 +del ||| the depths of ||| 0.025641 0.0732944 2.6679e-06 6.79733e-08 2.718 ||| 0-0 ||| 39 374827 +del ||| the depths ||| 0.0208333 0.0732944 2.6679e-06 1.25034e-06 2.718 ||| 0-0 ||| 48 374827 +del ||| the destructive urge ||| 1 0.0732944 2.6679e-06 2.83931e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the destructive ||| 0.0555556 0.0732944 2.6679e-06 8.6829e-07 2.718 ||| 0-0 ||| 18 374827 +del ||| the detention ||| 0.00813008 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-0 ||| 123 374827 +del ||| the development of ||| 0.000326691 0.0732944 5.33579e-06 3.106e-06 2.718 ||| 0-0 ||| 6122 374827 +del ||| the development ||| 0.000135099 0.0732944 2.6679e-06 5.71334e-05 2.718 ||| 0-0 ||| 7402 374827 +del ||| the different structures in ||| 0.5 0.0183279 2.6679e-06 7.87416e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| the different ||| 0.000324992 0.0732944 2.6679e-06 7.64789e-05 2.718 ||| 0-0 ||| 3077 374827 +del ||| the direction of ||| 0.00185874 0.130625 2.6679e-06 1.64255e-06 2.718 ||| 0-2 ||| 538 374827 +del ||| the direction they ||| 0.2 0.0732944 2.6679e-06 1.02821e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| the direction ||| 0.000809062 0.0732944 2.6679e-06 3.15015e-05 2.718 ||| 0-0 ||| 1236 374827 +del ||| the directives which will come within ||| 1 0.0732944 2.6679e-06 6.52712e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| the directives which will come ||| 1 0.0732944 2.6679e-06 3.12153e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the directives which will ||| 1 0.0732944 2.6679e-06 3.67541e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the directives which ||| 0.0714286 0.0732944 2.6679e-06 4.24844e-08 2.718 ||| 0-0 ||| 14 374827 +del ||| the directives ||| 0.0015748 0.0732944 2.6679e-06 5.00135e-06 2.718 ||| 0-0 ||| 635 374827 +del ||| the discretion ||| 0.00826446 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-0 ||| 121 374827 +del ||| the discussion on ||| 0.00297619 0.0732944 2.6679e-06 2.00784e-07 2.718 ||| 0-0 ||| 336 374827 +del ||| the discussion ||| 0.00116686 0.0732944 5.33579e-06 3.00081e-05 2.718 ||| 0-0 ||| 1714 374827 +del ||| the disease ||| 0.00124069 0.0732944 2.6679e-06 1.02458e-05 2.718 ||| 0-0 ||| 806 374827 +del ||| the disposal of the ||| 0.0166667 0.10196 2.6679e-06 5.296e-07 2.718 ||| 0-2 0-3 ||| 60 374827 +del ||| the dividing line between ||| 0.037037 0.0732944 2.6679e-06 9.71046e-14 2.718 ||| 0-0 ||| 27 374827 +del ||| the dividing line ||| 0.0277778 0.0732944 2.6679e-06 3.68099e-10 2.718 ||| 0-0 ||| 36 374827 +del ||| the dividing ||| 0.166667 0.0732944 2.6679e-06 1.25034e-06 2.718 ||| 0-0 ||| 6 374827 +del ||| the division of ||| 0.00298507 0.130625 2.6679e-06 1.62987e-07 2.718 ||| 0-2 ||| 335 374827 +del ||| the door ||| 0.00136799 0.0732944 2.6679e-06 1.57334e-05 2.718 ||| 0-0 ||| 731 374827 +del ||| the draft Budget provides ||| 0.5 0.0732944 2.6679e-06 1.26639e-14 2.718 ||| 0-0 ||| 2 374827 +del ||| the draft Budget ||| 0.5 0.0732944 2.6679e-06 1.76871e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| the draft ||| 0.000487805 0.0732944 8.00369e-06 1.82341e-05 2.718 ||| 0-0 ||| 6150 374827 +del ||| the drafting of ||| 0.00294118 0.130625 2.6679e-06 2.68023e-07 2.718 ||| 0-2 ||| 340 374827 +del ||| the dreadful events of ||| 0.333333 0.130625 2.6679e-06 6.58287e-12 2.718 ||| 0-3 ||| 3 374827 +del ||| the drugs ||| 0.00952381 0.0732944 2.6679e-06 9.48172e-06 2.718 ||| 0-0 ||| 105 374827 +del ||| the duly ||| 0.25 0.0732944 2.6679e-06 3.75101e-06 2.718 ||| 0-0 ||| 4 374827 +del ||| the earliest ||| 0.0046729 0.0732944 2.6679e-06 1.00722e-06 2.718 ||| 0-0 ||| 214 374827 +del ||| the economic recovery of ||| 0.0555556 0.130625 2.6679e-06 2.92162e-11 2.718 ||| 0-3 ||| 18 374827 +del ||| the economy ||| 0.000269542 0.0732944 2.6679e-06 1.81299e-05 2.718 ||| 0-0 ||| 3710 374827 +del ||| the education ||| 0.00429185 0.0732944 2.6679e-06 1.17393e-05 2.718 ||| 0-0 ||| 233 374827 +del ||| the effect of ||| 0.00177305 0.130625 2.6679e-06 6.04139e-06 2.718 ||| 0-2 ||| 564 374827 +del ||| the effect ||| 0.00156822 0.0732944 8.00369e-06 0.000115865 2.718 ||| 0-0 ||| 1913 374827 +del ||| the effects of the ||| 0.00162338 0.10196 2.6679e-06 3.41535e-07 2.718 ||| 0-2 0-3 ||| 616 374827 +del ||| the effects of ||| 0.000574713 0.130625 2.6679e-06 9.83356e-07 2.718 ||| 0-2 ||| 1740 374827 +del ||| the effects ||| 0.000386847 0.0732944 2.6679e-06 1.88592e-05 2.718 ||| 0-0 ||| 2585 374827 +del ||| the election of the ||| 0.00641026 0.10196 2.6679e-06 1.49697e-07 2.718 ||| 0-2 0-3 ||| 156 374827 +del ||| the election ||| 0.00116144 0.0732944 2.6679e-06 8.26612e-06 2.718 ||| 0-0 ||| 861 374827 +del ||| the emergence of ||| 0.00239234 0.0732944 2.6679e-06 1.43499e-07 2.718 ||| 0-0 ||| 418 374827 +del ||| the emergence ||| 0.00212314 0.0732944 2.6679e-06 2.6396e-06 2.718 ||| 0-0 ||| 471 374827 +del ||| the employees sit tight in their offices ||| 0.5 0.0732944 2.6679e-06 3.94293e-25 2.718 ||| 0-0 ||| 2 374827 +del ||| the employees sit tight in their ||| 0.5 0.0732944 2.6679e-06 4.1946e-20 2.718 ||| 0-0 ||| 2 374827 +del ||| the employees sit tight in ||| 0.5 0.0732944 2.6679e-06 3.61884e-17 2.718 ||| 0-0 ||| 2 374827 +del ||| the employees sit tight ||| 0.5 0.0732944 2.6679e-06 1.69069e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| the employees sit ||| 0.5 0.0732944 2.6679e-06 1.79861e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| the employees ||| 0.00738007 0.0732944 5.33579e-06 4.75823e-06 2.718 ||| 0-0 ||| 271 374827 +del ||| the end , the ||| 0.0454545 0.0732944 2.6679e-06 1.10637e-06 2.718 ||| 0-3 ||| 22 374827 +del ||| the end - ||| 0.2 0.0732944 2.6679e-06 5.70029e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| the end of paragraph 25 ||| 1 0.0732944 2.6679e-06 1.22014e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| the end of paragraph ||| 0.2 0.0732944 2.6679e-06 1.29802e-10 2.718 ||| 0-0 ||| 5 374827 +del ||| the end of the ||| 0.00156311 0.0924045 1.06716e-05 1.54824e-05 2.718 ||| 0-0 0-2 0-3 ||| 2559 374827 +del ||| the end of ||| 0.0012112 0.0732944 2.13432e-05 8.21533e-06 2.718 ||| 0-0 ||| 6605 374827 +del ||| the end ||| 0.000932075 0.0732944 2.13432e-05 0.000151117 2.718 ||| 0-0 ||| 8583 374827 +del ||| the ending of ||| 0.015625 0.0732944 2.6679e-06 1.77486e-07 2.718 ||| 0-0 ||| 64 374827 +del ||| the ending ||| 0.0142857 0.0732944 2.6679e-06 3.26477e-06 2.718 ||| 0-0 ||| 70 374827 +del ||| the enhanced ||| 0.0169492 0.0732944 2.6679e-06 4.13306e-06 2.718 ||| 0-0 ||| 59 374827 +del ||| the entire ||| 0.000792393 0.0732944 8.00369e-06 2.75074e-05 2.718 ||| 0-0 ||| 3786 374827 +del ||| the environmental ||| 0.00460829 0.0708839 2.6679e-06 0.000737629 2.718 ||| 0-0 0-1 ||| 217 374827 +del ||| the era of budgetary plenty ||| 1 0.130625 2.6679e-06 2.92595e-17 2.718 ||| 0-2 ||| 1 374827 +del ||| the era of budgetary ||| 1 0.130625 2.6679e-06 2.70921e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| the era of ||| 0.00847458 0.130625 2.6679e-06 1.23146e-07 2.718 ||| 0-2 ||| 118 374827 +del ||| the essence of ||| 0.003663 0.130625 2.6679e-06 2.28182e-07 2.718 ||| 0-2 ||| 273 374827 +del ||| the essential ||| 0.00363636 0.0732944 2.6679e-06 3.12584e-05 2.718 ||| 0-0 ||| 275 374827 +del ||| the estimates of revenue and expenditure ||| 0.166667 0.10196 2.6679e-06 2.09283e-18 2.718 ||| 0-0 0-2 ||| 6 374827 +del ||| the estimates of revenue and ||| 0.047619 0.10196 2.6679e-06 6.92992e-14 2.718 ||| 0-0 0-2 ||| 21 374827 +del ||| the estimates of revenue ||| 0.0434783 0.10196 2.6679e-06 5.53247e-12 2.718 ||| 0-0 0-2 ||| 23 374827 +del ||| the estimates of ||| 0.0243902 0.10196 2.6679e-06 5.12266e-07 2.718 ||| 0-0 0-2 ||| 41 374827 +del ||| the euro ||| 0.000499376 0.0732944 5.33579e-06 2.03874e-05 2.718 ||| 0-0 ||| 4005 374827 +del ||| the evening ||| 0.00518135 0.0732944 2.6679e-06 7.74514e-06 2.718 ||| 0-0 ||| 193 374827 +del ||| the event of fairly ||| 1 0.0732944 2.6679e-06 6.38677e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the event of ||| 0.00193174 0.0732944 8.00369e-06 1.97123e-06 2.718 ||| 0-0 ||| 1553 374827 +del ||| the event ||| 0.00250125 0.0732944 1.33395e-05 3.62598e-05 2.718 ||| 0-0 ||| 1999 374827 +del ||| the ever-increasing ||| 0.0196078 0.0732944 2.6679e-06 1.00722e-06 2.718 ||| 0-0 ||| 51 374827 +del ||| the example ||| 0.00120482 0.0732944 2.6679e-06 0.000101104 2.718 ||| 0-0 ||| 830 374827 +del ||| the exception ||| 0.00188679 0.0732944 2.6679e-06 6.49481e-06 2.718 ||| 0-0 ||| 530 374827 +del ||| the existence of the ||| 0.00462963 0.10196 2.6679e-06 4.34624e-07 2.718 ||| 0-2 0-3 ||| 216 374827 +del ||| the existence of ||| 0.0016247 0.10196 5.33579e-06 7.07951e-06 2.718 ||| 0-0 0-2 ||| 1231 374827 +del ||| the existing rural ||| 0.333333 0.0113162 2.6679e-06 5.33595e-10 2.718 ||| 0-2 ||| 3 374827 +del ||| the existing ||| 0.00246609 0.0732944 5.33579e-06 2.73685e-05 2.718 ||| 0-0 ||| 811 374827 +del ||| the expense ||| 0.0010142 0.0732944 2.6679e-06 6.73793e-06 2.718 ||| 0-0 ||| 986 374827 +del ||| the expert ||| 0.0238095 0.0732944 2.6679e-06 3.99413e-06 2.718 ||| 0-0 ||| 42 374827 +del ||| the exploitation of that ||| 0.5 0.130625 2.6679e-06 2.86356e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| the exploitation of ||| 0.00235849 0.130625 2.6679e-06 1.70231e-07 2.718 ||| 0-2 ||| 424 374827 +del ||| the extension of the ||| 0.00240385 0.10196 2.6679e-06 1.06297e-07 2.718 ||| 0-2 0-3 ||| 416 374827 +del ||| the extent of the ||| 0.00318471 0.10196 2.6679e-06 1.2089e-06 2.718 ||| 0-2 0-3 ||| 314 374827 +del ||| the extent to which the ||| 0.00943396 0.0732944 2.6679e-06 3.09335e-09 2.718 ||| 0-0 ||| 106 374827 +del ||| the extent to which ||| 0.00366972 0.0732944 5.33579e-06 5.0387e-08 2.718 ||| 0-0 ||| 545 374827 +del ||| the extent to ||| 0.00546448 0.0732944 8.00369e-06 5.93165e-06 2.718 ||| 0-0 ||| 549 374827 +del ||| the extent ||| 0.00232423 0.0732944 1.06716e-05 6.67541e-05 2.718 ||| 0-0 ||| 1721 374827 +del ||| the extra ||| 0.0181818 0.0732944 2.6679e-06 8.61343e-06 2.718 ||| 0-0 ||| 55 374827 +del ||| the face of it ||| 0.0333333 0.130625 2.6679e-06 5.38787e-08 2.718 ||| 0-2 ||| 30 374827 +del ||| the face of the ||| 0.00429185 0.130625 2.6679e-06 1.86002e-07 2.718 ||| 0-2 ||| 233 374827 +del ||| the face of ||| 0.00273598 0.130625 5.33579e-06 3.02975e-06 2.718 ||| 0-2 ||| 731 374827 +del ||| the face ||| 0.00125628 0.0732944 2.6679e-06 5.81059e-05 2.718 ||| 0-0 ||| 796 374827 +del ||| the fact is ||| 0.000748503 0.0732944 2.6679e-06 3.18862e-05 2.718 ||| 0-0 ||| 1336 374827 +del ||| the fact of the ||| 0.0163934 0.10196 2.6679e-06 1.84247e-05 2.718 ||| 0-2 0-3 ||| 61 374827 +del ||| the fact of ||| 0.00862069 0.130625 2.6679e-06 5.30487e-05 2.718 ||| 0-2 ||| 116 374827 +del ||| the fact remains that ||| 0.00636943 0.0732944 2.6679e-06 1.52658e-09 2.718 ||| 0-0 ||| 157 374827 +del ||| the fact remains ||| 0.00490196 0.0732944 2.6679e-06 9.07514e-08 2.718 ||| 0-0 ||| 204 374827 +del ||| the fact that I sit on the ||| 1 0.0436809 2.6679e-06 2.75518e-15 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| the fact that a ||| 0.0047619 0.0732944 2.6679e-06 7.58599e-07 2.718 ||| 0-0 ||| 210 374827 +del ||| the fact that some - and ||| 1 0.0732944 2.6679e-06 8.80837e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the fact that some - ||| 1 0.0732944 2.6679e-06 7.03212e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the fact that some ||| 0.00657895 0.0732944 2.6679e-06 1.86425e-08 2.718 ||| 0-0 ||| 152 374827 +del ||| the fact that the president of ||| 1 0.130625 2.6679e-06 4.32792e-13 2.718 ||| 0-5 ||| 1 374827 +del ||| the fact that the ||| 0.000253036 0.0732944 2.6679e-06 1.05067e-06 2.718 ||| 0-3 ||| 3952 374827 +del ||| the fact that this enlargement that ||| 1 0.0732944 2.6679e-06 5.61767e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| the fact that this enlargement ||| 0.5 0.0732944 2.6679e-06 3.33956e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| the fact that this ||| 0.00165563 0.0732944 2.6679e-06 1.10581e-07 2.718 ||| 0-0 ||| 604 374827 +del ||| the fact that we ||| 0.0026455 0.0732944 2.6679e-06 1.94285e-07 2.718 ||| 0-0 ||| 378 374827 +del ||| the fact that ||| 0.000546481 0.0732944 2.40111e-05 1.71142e-05 2.718 ||| 0-0 ||| 16469 374827 +del ||| the fact ||| 0.00192363 0.0732944 0.000144066 0.00101739 2.718 ||| 0-0 ||| 28072 374827 +del ||| the far ||| 0.00833333 0.0732944 2.6679e-06 0.000237112 2.718 ||| 0-0 ||| 120 374827 +del ||| the fate of the ||| 0.00552486 0.10196 2.6679e-06 5.40921e-08 2.718 ||| 0-2 0-3 ||| 181 374827 +del ||| the fault of the ||| 0.0135135 0.10196 2.6679e-06 9.93786e-08 2.718 ||| 0-2 0-3 ||| 74 374827 +del ||| the fault of ||| 0.00833333 0.130625 2.6679e-06 2.86133e-07 2.718 ||| 0-2 ||| 120 374827 +del ||| the fee ||| 0.04 0.0732944 2.6679e-06 2.36175e-06 2.718 ||| 0-0 ||| 25 374827 +del ||| the field in ||| 0.0384615 0.0732944 2.6679e-06 1.08613e-06 2.718 ||| 0-0 ||| 26 374827 +del ||| the field of ||| 0.00137687 0.130625 1.86753e-05 2.64583e-06 2.718 ||| 0-2 ||| 5084 374827 +del ||| the field ||| 0.00075287 0.0732944 1.06716e-05 5.07428e-05 2.718 ||| 0-0 ||| 5313 374827 +del ||| the fields covered by ||| 0.166667 0.0461582 2.6679e-06 2.63695e-12 2.718 ||| 0-3 ||| 6 374827 +del ||| the fight against ||| 0.000149009 0.0732944 2.6679e-06 4.56611e-09 2.718 ||| 0-0 ||| 6711 374827 +del ||| the fight ||| 0.000441956 0.0732944 8.00369e-06 1.91371e-05 2.718 ||| 0-0 ||| 6788 374827 +del ||| the figure ||| 0.00374532 0.0732944 5.33579e-06 2.65002e-05 2.718 ||| 0-0 ||| 534 374827 +del ||| the figures in the ||| 0.0454545 0.0732944 2.6679e-06 1.1903e-07 2.718 ||| 0-0 0-3 ||| 22 374827 +del ||| the figures themselves provide a cold illustration ||| 0.333333 0.0732944 2.6679e-06 3.31966e-24 2.718 ||| 0-0 ||| 3 374827 +del ||| the figures themselves provide a cold ||| 0.333333 0.0732944 2.6679e-06 1.03739e-18 2.718 ||| 0-0 ||| 3 374827 +del ||| the figures themselves provide a ||| 0.333333 0.0732944 2.6679e-06 9.02081e-14 2.718 ||| 0-0 ||| 3 374827 +del ||| the figures themselves provide ||| 0.333333 0.0732944 2.6679e-06 2.03512e-12 2.718 ||| 0-0 ||| 3 374827 +del ||| the figures themselves ||| 0.2 0.0732944 2.6679e-06 6.88004e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| the figures ||| 0.000860585 0.0732944 2.6679e-06 1.60113e-05 2.718 ||| 0-0 ||| 1162 374827 +del ||| the final ||| 0.000788644 0.0732944 2.6679e-06 2.65002e-05 2.718 ||| 0-0 ||| 1268 374827 +del ||| the financial ||| 0.00235294 0.0732944 2.6679e-06 4.23725e-05 2.718 ||| 0-0 ||| 425 374827 +del ||| the findings of ||| 0.00480769 0.0732944 2.6679e-06 1.35947e-07 2.718 ||| 0-0 ||| 208 374827 +del ||| the findings ||| 0.00265957 0.0732944 2.6679e-06 2.50067e-06 2.718 ||| 0-0 ||| 376 374827 +del ||| the firing ||| 0.0384615 0.0732944 2.6679e-06 1.38926e-06 2.718 ||| 0-0 ||| 26 374827 +del ||| the first of ||| 0.00166945 0.130625 2.6679e-06 9.75026e-06 2.718 ||| 0-2 ||| 599 374827 +del ||| the first steps being made in ||| 0.5 0.0732944 2.6679e-06 1.40778e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| the first steps being made ||| 0.5 0.0732944 2.6679e-06 6.57701e-14 2.718 ||| 0-0 ||| 2 374827 +del ||| the first steps being ||| 0.5 0.0732944 2.6679e-06 3.13968e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| the first steps ||| 0.00675676 0.0732944 2.6679e-06 1.10327e-08 2.718 ||| 0-0 ||| 148 374827 +del ||| the first time ||| 0.000626566 0.0732944 5.33579e-06 3.06989e-07 2.718 ||| 0-0 ||| 3192 374827 +del ||| the first ||| 0.000197707 0.0732944 1.06716e-05 0.000186995 2.718 ||| 0-0 ||| 20232 374827 +del ||| the fisheries partnership ||| 1 0.0732944 2.6679e-06 1.97303e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the fisheries ||| 0.0116279 0.0732944 5.33579e-06 9.13441e-06 2.718 ||| 0-0 ||| 172 374827 +del ||| the fishery resources ||| 0.111111 0.0732944 2.6679e-06 8.95241e-11 2.718 ||| 0-0 ||| 9 374827 +del ||| the fishery ||| 0.025641 0.0732944 2.6679e-06 1.25034e-06 2.718 ||| 0-0 ||| 39 374827 +del ||| the fitting ||| 0.0833333 0.0732944 2.6679e-06 2.50067e-06 2.718 ||| 0-0 ||| 12 374827 +del ||| the flexibility ||| 0.00200803 0.0732944 2.6679e-06 5.00135e-06 2.718 ||| 0-0 ||| 498 374827 +del ||| the floor to ||| 0.0015015 0.0732944 2.6679e-06 1.31163e-06 2.718 ||| 0-0 ||| 666 374827 +del ||| the floor ||| 0.000581226 0.0732944 5.33579e-06 1.47609e-05 2.718 ||| 0-0 ||| 3441 374827 +del ||| the focus of ||| 0.0037037 0.130625 2.6679e-06 1.40169e-06 2.718 ||| 0-2 ||| 270 374827 +del ||| the following ||| 0.000267308 0.0732944 2.6679e-06 4.4387e-05 2.718 ||| 0-0 ||| 3741 374827 +del ||| the forefront of ||| 0.00414938 0.0732944 2.6679e-06 1.77486e-07 2.718 ||| 0-0 ||| 241 374827 +del ||| the forefront ||| 0.00261097 0.0732944 2.6679e-06 3.26477e-06 2.718 ||| 0-0 ||| 383 374827 +del ||| the form of the levy they have ||| 1 0.130625 2.6679e-06 1.20511e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| the form of the levy they ||| 1 0.130625 2.6679e-06 1.00764e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| the form of the levy ||| 1 0.130625 2.6679e-06 3.08712e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| the form of the ||| 0.0108108 0.130625 5.33579e-06 5.06085e-07 2.718 ||| 0-2 ||| 185 374827 +del ||| the form of ||| 0.001619 0.130625 8.00369e-06 8.24353e-06 2.718 ||| 0-2 ||| 1853 374827 +del ||| the former , ||| 0.030303 0.0732944 2.6679e-06 1.87628e-06 2.718 ||| 0-0 ||| 33 374827 +del ||| the former Chairman of the ||| 0.25 0.10196 2.6679e-06 1.65258e-12 2.718 ||| 0-3 0-4 ||| 4 374827 +del ||| the former ||| 0.00130548 0.0732944 8.00369e-06 1.57334e-05 2.718 ||| 0-0 ||| 2298 374827 +del ||| the forms of ||| 0.0135135 0.130625 2.6679e-06 1.61538e-06 2.718 ||| 0-2 ||| 74 374827 +del ||| the foundations ||| 0.00122399 0.0732944 2.6679e-06 3.26477e-06 2.718 ||| 0-0 ||| 817 374827 +del ||| the four ||| 0.000869565 0.0732944 2.6679e-06 7.88407e-06 2.718 ||| 0-0 ||| 1150 374827 +del ||| the framework of a democratic ||| 1 0.10196 2.6679e-06 1.6172e-11 2.718 ||| 0-0 0-2 ||| 1 374827 +del ||| the framework of a ||| 0.00436681 0.10196 2.6679e-06 5.40871e-07 2.718 ||| 0-0 0-2 ||| 229 374827 +del ||| the framework of the ||| 0.00168421 0.0924045 1.06716e-05 4.23801e-06 2.718 ||| 0-0 0-2 0-3 ||| 2375 374827 +del ||| the framework of their ||| 0.0416667 0.10196 2.6679e-06 1.41435e-08 2.718 ||| 0-0 0-2 ||| 24 374827 +del ||| the framework of ||| 0.000878735 0.10196 8.00369e-06 1.22022e-05 2.718 ||| 0-0 0-2 ||| 3414 374827 +del ||| the framework programme ||| 0.00454545 0.0004156 2.6679e-06 8.62788e-11 2.718 ||| 0-2 ||| 220 374827 +del ||| the framework ||| 0.00100301 0.0732944 1.33395e-05 4.13653e-05 2.718 ||| 0-0 ||| 4985 374827 +del ||| the free ||| 0.000408831 0.0732944 2.6679e-06 4.0497e-05 2.718 ||| 0-0 ||| 2446 374827 +del ||| the freedom of ||| 0.000793021 0.10196 2.6679e-06 8.73925e-06 2.718 ||| 0-0 0-2 ||| 1261 374827 +del ||| the freedom to ||| 0.0023753 0.0732944 2.6679e-06 2.63252e-06 2.718 ||| 0-0 ||| 421 374827 +del ||| the freedom ||| 0.000490677 0.0732944 2.6679e-06 2.9626e-05 2.718 ||| 0-0 ||| 2038 374827 +del ||| the front door ||| 0.0416667 0.0732944 2.6679e-06 1.26811e-09 2.718 ||| 0-0 ||| 24 374827 +del ||| the front ||| 0.00952381 0.0732944 5.33579e-06 2.79937e-05 2.718 ||| 0-0 ||| 210 374827 +del ||| the full ||| 0.00068306 0.0732944 2.6679e-06 6.37324e-05 2.718 ||| 0-0 ||| 1464 374827 +del ||| the funding by ||| 0.25 0.0597263 2.6679e-06 2.99334e-07 2.718 ||| 0-0 0-2 ||| 4 374827 +del ||| the funding ||| 0.000673401 0.0732944 2.6679e-06 1.85119e-05 2.718 ||| 0-0 ||| 1485 374827 +del ||| the funds ||| 0.000504286 0.0732944 2.6679e-06 2.65002e-05 2.718 ||| 0-0 ||| 1983 374827 +del ||| the further ||| 0.00350263 0.0732944 5.33579e-06 0.000167858 2.718 ||| 0-0 ||| 571 374827 +del ||| the future , ||| 0.000518403 0.0732944 2.6679e-06 1.10009e-05 2.718 ||| 0-0 ||| 1929 374827 +del ||| the future ||| 0.000287687 0.0732944 1.33395e-05 9.22471e-05 2.718 ||| 0-0 ||| 17380 374827 +del ||| the gambling ||| 0.142857 0.0732944 2.6679e-06 1.00722e-06 2.718 ||| 0-0 ||| 7 374827 +del ||| the gap between ||| 0.00197628 0.0732944 2.6679e-06 1.44763e-09 2.718 ||| 0-0 ||| 506 374827 +del ||| the gap ||| 0.00127877 0.0732944 2.6679e-06 5.48759e-06 2.718 ||| 0-0 ||| 782 374827 +del ||| the general ||| 0.00594354 0.0732944 1.06716e-05 6.07455e-05 2.718 ||| 0-0 ||| 673 374827 +del ||| the given ||| 0.0434783 0.0732944 2.6679e-06 0.000238363 2.718 ||| 0-0 ||| 23 374827 +del ||| the go ||| 0.2 0.0732944 2.6679e-06 0.00020311 2.718 ||| 0-0 ||| 5 374827 +del ||| the good 's ||| 0.5 0.169811 2.6679e-06 1.27927e-06 2.718 ||| 0-2 ||| 2 374827 +del ||| the good of the ||| 0.0144928 0.10196 2.6679e-06 3.26188e-06 2.718 ||| 0-2 0-3 ||| 69 374827 +del ||| the good of ||| 0.00537634 0.10196 2.6679e-06 5.31322e-05 2.718 ||| 0-0 0-2 ||| 186 374827 +del ||| the good ||| 0.000603136 0.0732944 2.6679e-06 0.000180118 2.718 ||| 0-0 ||| 1658 374827 +del ||| the goose and sauce ||| 1 0.0732944 2.6679e-06 2.27093e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| the goose and ||| 0.333333 0.0732944 2.6679e-06 7.8308e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| the goose ||| 0.1 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-0 ||| 10 374827 +del ||| the government ' s inability to prevent ||| 1 0.0028084 2.6679e-06 2.9843e-22 2.718 ||| 0-1 ||| 1 374827 +del ||| the government ' s inability to ||| 1 0.0028084 2.6679e-06 5.84011e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| the government ' s inability ||| 1 0.0028084 2.6679e-06 6.57239e-17 2.718 ||| 0-1 ||| 1 374827 +del ||| the government ' s ||| 0.166667 0.0028084 2.6679e-06 2.05387e-11 2.718 ||| 0-1 ||| 6 374827 +del ||| the government ' ||| 0.166667 0.0028084 2.6679e-06 1.07968e-08 2.718 ||| 0-1 ||| 6 374827 +del ||| the government and people of Cuba ||| 0.5 0.130625 2.6679e-06 6.38128e-17 2.718 ||| 0-4 ||| 2 374827 +del ||| the government and people of ||| 0.166667 0.130625 2.6679e-06 1.59532e-11 2.718 ||| 0-4 ||| 6 374827 +del ||| the government shown by ||| 1 0.0732944 2.6679e-06 1.52104e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the government shown ||| 1 0.0732944 2.6679e-06 2.89716e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| the government ||| 0.000643501 0.0732944 5.33579e-06 2.77505e-05 2.718 ||| 0-0 ||| 3108 374827 +del ||| the grant of the ||| 1 0.10196 2.6679e-06 1.99386e-07 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| the greater ||| 0.00176678 0.0732944 2.6679e-06 4.57415e-05 2.718 ||| 0-0 ||| 566 374827 +del ||| the greatest share of ||| 0.142857 0.0732944 2.6679e-06 3.25184e-11 2.718 ||| 0-0 ||| 7 374827 +del ||| the greatest share ||| 0.2 0.0732944 2.6679e-06 5.98161e-10 2.718 ||| 0-0 ||| 5 374827 +del ||| the greatest ||| 0.00039557 0.0732944 2.6679e-06 6.39061e-06 2.718 ||| 0-0 ||| 2528 374827 +del ||| the ground of ||| 0.0588235 0.130625 2.6679e-06 2.11883e-06 2.718 ||| 0-2 ||| 17 374827 +del ||| the ground ||| 0.0024888 0.0732944 1.33395e-05 4.06359e-05 2.718 ||| 0-0 ||| 2009 374827 +del ||| the groups ||| 0.00088968 0.0732944 2.6679e-06 2.29923e-05 2.718 ||| 0-0 ||| 1124 374827 +del ||| the guiding ||| 0.0277778 0.0732944 2.6679e-06 3.26477e-06 2.718 ||| 0-0 ||| 36 374827 +del ||| the guise of ||| 0.00729927 0.130625 2.6679e-06 5.7951e-08 2.718 ||| 0-2 ||| 137 374827 +del ||| the guys ||| 0.5 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| the hands of men ||| 0.25 0.130625 2.6679e-06 7.75819e-11 2.718 ||| 0-2 ||| 4 374827 +del ||| the hands of ||| 0.0011919 0.130625 2.6679e-06 1.82546e-06 2.718 ||| 0-2 ||| 839 374827 +del ||| the hardest to put ||| 1 0.0732944 2.6679e-06 9.8682e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the hardest to ||| 0.333333 0.0732944 2.6679e-06 8.94994e-08 2.718 ||| 0-0 ||| 3 374827 +del ||| the hardest ||| 0.0232558 0.0732944 2.6679e-06 1.00722e-06 2.718 ||| 0-0 ||| 43 374827 +del ||| the harm it has done , ||| 1 0.0732944 2.6679e-06 1.86722e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| the harm it has done ||| 1 0.0732944 2.6679e-06 1.56574e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the harm it has ||| 1 0.0732944 2.6679e-06 3.43364e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the harm it ||| 0.2 0.0732944 2.6679e-06 6.6705e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| the harm ||| 0.0103093 0.0732944 2.6679e-06 3.75101e-06 2.718 ||| 0-0 ||| 97 374827 +del ||| the head of the ||| 0.0108108 0.130625 5.33579e-06 8.03822e-08 2.718 ||| 0-2 ||| 185 374827 +del ||| the head of ||| 0.00749064 0.0732944 5.33579e-06 1.36513e-06 2.718 ||| 0-0 ||| 267 374827 +del ||| the head ||| 0.00236967 0.0732944 2.6679e-06 2.51109e-05 2.718 ||| 0-0 ||| 422 374827 +del ||| the heart of the ||| 0.00154321 0.10196 2.6679e-06 5.06956e-07 2.718 ||| 0-2 0-3 ||| 648 374827 +del ||| the hedge fund , ||| 1 0.0732944 2.6679e-06 3.94516e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| the hedge fund ||| 0.5 0.0732944 2.6679e-06 3.30818e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| the hedge ||| 0.25 0.0732944 2.6679e-06 8.6829e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| the higher ||| 0.00787402 0.0732944 2.6679e-06 1.4622e-05 2.718 ||| 0-0 ||| 127 374827 +del ||| the highest ||| 0.000784929 0.0732944 2.6679e-06 7.64095e-06 2.718 ||| 0-0 ||| 1274 374827 +del ||| the holders of the ||| 0.166667 0.0697733 2.6679e-06 4.62587e-08 2.718 ||| 0-0 0-1 0-2 0-3 ||| 6 374827 +del ||| the home ||| 0.00392157 0.0732944 2.6679e-06 3.52526e-05 2.718 ||| 0-0 ||| 255 374827 +del ||| the hook ||| 0.0322581 0.0732944 2.6679e-06 1.11141e-06 2.718 ||| 0-0 ||| 31 374827 +del ||| the hullabaloo of ||| 1 0.0732944 2.6679e-06 7.55259e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| the hullabaloo ||| 0.333333 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| the idea of qualified majority ||| 0.25 0.130625 2.6679e-06 2.24167e-15 2.718 ||| 0-2 ||| 4 374827 +del ||| the idea of qualified ||| 0.25 0.130625 2.6679e-06 5.56246e-11 2.718 ||| 0-2 ||| 4 374827 +del ||| the idea of ||| 0.000940144 0.130625 8.00369e-06 4.06019e-06 2.718 ||| 0-2 ||| 3191 374827 +del ||| the idea ||| 0.00130145 0.0732944 2.13432e-05 7.78682e-05 2.718 ||| 0-0 ||| 6147 374827 +del ||| the identity ||| 0.00531915 0.0732944 2.6679e-06 7.01578e-06 2.718 ||| 0-0 ||| 188 374827 +del ||| the impending ||| 0.0116279 0.0732944 2.6679e-06 1.11141e-06 2.718 ||| 0-0 ||| 86 374827 +del ||| the implementation of the ||| 0.00123267 0.10196 1.06716e-05 4.88716e-07 2.718 ||| 0-2 0-3 ||| 3245 374827 +del ||| the implementation of ||| 0.000403388 0.0732944 5.33579e-06 1.46709e-06 2.718 ||| 0-0 ||| 4958 374827 +del ||| the implementation ||| 0.000411523 0.0732944 8.00369e-06 2.69864e-05 2.718 ||| 0-0 ||| 7290 374827 +del ||| the import of fuel ||| 1 0.108158 2.6679e-06 4.22141e-11 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| the importance of ||| 0.000292184 0.0732944 5.33579e-06 2.4527e-06 2.718 ||| 0-0 ||| 6845 374827 +del ||| the importance ||| 0.000230521 0.0732944 5.33579e-06 4.51163e-05 2.718 ||| 0-0 ||| 8676 374827 +del ||| the impression ||| 0.000325098 0.0732944 2.6679e-06 9.13441e-06 2.718 ||| 0-0 ||| 3076 374827 +del ||| the improved ||| 0.00735294 0.0732944 2.6679e-06 7.88407e-06 2.718 ||| 0-0 ||| 136 374827 +del ||| the improvement ||| 0.00140449 0.0732944 2.6679e-06 7.2589e-06 2.718 ||| 0-0 ||| 712 374827 +del ||| the in ||| 0.0238095 0.0458111 2.6679e-06 0.00936586 2.718 ||| 0-0 0-1 ||| 42 374827 +del ||| the inclusion of lesser-used languages ||| 1 0.0732944 2.6679e-06 2.63736e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| the inclusion of lesser-used ||| 1 0.0732944 2.6679e-06 1.4652e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the inclusion of ||| 0.000865801 0.0732944 2.6679e-06 3.66301e-07 2.718 ||| 0-0 ||| 1155 374827 +del ||| the inclusion ||| 0.000664894 0.0732944 2.6679e-06 6.73793e-06 2.718 ||| 0-0 ||| 1504 374827 +del ||| the increase in ||| 0.00196271 0.0183279 5.33579e-06 2.13893e-07 2.718 ||| 0-2 ||| 1019 374827 +del ||| the increase ||| 0.00253165 0.0732944 1.06716e-05 4.48732e-05 2.718 ||| 0-0 ||| 1580 374827 +del ||| the increasing ||| 0.00189753 0.0732944 2.6679e-06 1.7991e-05 2.718 ||| 0-0 ||| 527 374827 +del ||| the independence ||| 0.00102041 0.0732944 2.6679e-06 2.50067e-06 2.718 ||| 0-0 ||| 980 374827 +del ||| the indigenous people of ||| 0.0769231 0.0732944 2.6679e-06 7.14637e-11 2.718 ||| 0-0 ||| 13 374827 +del ||| the indigenous people ||| 0.0208333 0.0732944 2.6679e-06 1.31454e-09 2.718 ||| 0-0 ||| 48 374827 +del ||| the indigenous ||| 0.037037 0.0732944 2.6679e-06 1.49346e-06 2.718 ||| 0-0 ||| 27 374827 +del ||| the individuality of the ||| 0.25 0.10196 2.6679e-06 4.40285e-09 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| the informal ||| 0.0238095 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-0 ||| 42 374827 +del ||| the initial ||| 0.00352113 0.0732944 2.6679e-06 9.13441e-06 2.718 ||| 0-0 ||| 284 374827 +del ||| the initiative ||| 0.000417885 0.0732944 2.6679e-06 2.1742e-05 2.718 ||| 0-0 ||| 2393 374827 +del ||| the innocent civilian ||| 0.5 0.0732944 2.6679e-06 5.43897e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| the innocent ||| 0.0192308 0.0732944 2.6679e-06 1.87551e-06 2.718 ||| 0-0 ||| 52 374827 +del ||| the input of ||| 0.025641 0.0732944 2.6679e-06 2.37907e-07 2.718 ||| 0-0 ||| 39 374827 +del ||| the input ||| 0.00884956 0.0732944 2.6679e-06 4.37618e-06 2.718 ||| 0-0 ||| 113 374827 +del ||| the instigation ||| 0.0188679 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-0 ||| 53 374827 +del ||| the intensive ||| 0.0178571 0.0732944 2.6679e-06 2.88272e-06 2.718 ||| 0-0 ||| 56 374827 +del ||| the interest of the ||| 0.01 0.10196 5.33579e-06 7.06342e-07 2.718 ||| 0-2 0-3 ||| 200 374827 +del ||| the interest of ||| 0.00161551 0.0732944 2.6679e-06 2.12039e-06 2.718 ||| 0-0 ||| 619 374827 +del ||| the interest ||| 0.000958773 0.0732944 2.6679e-06 3.90036e-05 2.718 ||| 0-0 ||| 1043 374827 +del ||| the interests of the ||| 0.0011396 0.0924045 5.33579e-06 4.87851e-06 2.718 ||| 0-0 0-2 0-3 ||| 1755 374827 +del ||| the interests of ||| 0.000405433 0.0732944 5.33579e-06 2.58865e-06 2.718 ||| 0-0 ||| 4933 374827 +del ||| the interests ||| 0.00111379 0.0732944 1.60074e-05 4.7617e-05 2.718 ||| 0-0 ||| 5387 374827 +del ||| the intermediary ||| 0.0416667 0.0732944 2.6679e-06 7.64095e-07 2.718 ||| 0-0 ||| 24 374827 +del ||| the internal market ||| 0.000859107 0.0732944 8.00369e-06 3.64209e-09 2.718 ||| 0-0 ||| 3492 374827 +del ||| the internal ||| 0.00787402 0.0732944 5.33579e-06 1.61155e-05 2.718 ||| 0-0 ||| 254 374827 +del ||| the international ||| 0.00324675 0.0732944 2.6679e-06 2.68822e-05 2.718 ||| 0-0 ||| 308 374827 +del ||| the introduction of a ||| 0.00123153 0.0732944 2.6679e-06 4.39392e-08 2.718 ||| 0-0 ||| 812 374827 +del ||| the introduction of ||| 0.00098912 0.130625 8.00369e-06 9.50759e-07 2.718 ||| 0-2 ||| 3033 374827 +del ||| the introduction ||| 0.000698975 0.0732944 8.00369e-06 1.82341e-05 2.718 ||| 0-0 ||| 4292 374827 +del ||| the islands of ||| 0.030303 0.10196 2.6679e-06 8.0938e-07 2.718 ||| 0-0 0-2 ||| 33 374827 +del ||| the issue is the ||| 0.0666667 0.0732944 2.6679e-06 2.86118e-06 2.718 ||| 0-0 0-3 ||| 15 374827 +del ||| the issue of the ||| 0.00133333 0.0924045 5.33579e-06 2.69297e-05 2.718 ||| 0-0 0-2 0-3 ||| 1500 374827 +del ||| the issue of withdrawal ||| 1 0.0732944 2.6679e-06 1.38608e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the issue of ||| 0.000626645 0.10196 1.33395e-05 7.75365e-05 2.718 ||| 0-0 0-2 ||| 7979 374827 +del ||| the issue ||| 0.000564607 0.0732944 1.86753e-05 0.000262849 2.718 ||| 0-0 ||| 12398 374827 +del ||| the issues covered by ||| 0.0909091 0.0461582 2.6679e-06 1.78758e-11 2.718 ||| 0-3 ||| 11 374827 +del ||| the issues of N ||| 0.2 0.130625 2.6679e-06 3.18821e-12 2.718 ||| 0-2 ||| 5 374827 +del ||| the issues of the ||| 0.0142857 0.0924045 2.6679e-06 8.94927e-06 2.718 ||| 0-0 0-2 0-3 ||| 70 374827 +del ||| the issues of ||| 0.00364964 0.130625 5.33579e-06 4.55459e-06 2.718 ||| 0-2 ||| 548 374827 +del ||| the item ||| 0.00436681 0.0732944 2.6679e-06 1.31285e-05 2.718 ||| 0-0 ||| 229 374827 +del ||| the job of the ||| 0.0121951 0.10196 2.6679e-06 4.91232e-07 2.718 ||| 0-2 0-3 ||| 82 374827 +del ||| the job ||| 0.00154799 0.0732944 2.6679e-06 2.71254e-05 2.718 ||| 0-0 ||| 646 374827 +del ||| the joint text approved ||| 0.0196078 0.0732944 2.6679e-06 8.92762e-14 2.718 ||| 0-0 ||| 51 374827 +del ||| the joint text ||| 0.00534759 0.0732944 2.6679e-06 1.95353e-09 2.718 ||| 0-0 ||| 187 374827 +del ||| the joint ||| 0.00649351 0.0732944 2.6679e-06 2.26103e-05 2.718 ||| 0-0 ||| 154 374827 +del ||| the joy ||| 0.0277778 0.0732944 2.6679e-06 8.6829e-07 2.718 ||| 0-0 ||| 36 374827 +del ||| the keeping of animals ||| 0.333333 0.130625 2.6679e-06 4.32657e-11 2.718 ||| 0-2 ||| 3 374827 +del ||| the keeping of ||| 0.0588235 0.130625 2.6679e-06 1.06304e-06 2.718 ||| 0-2 ||| 17 374827 +del ||| the key ||| 0.00136519 0.0732944 5.33579e-06 2.52499e-05 2.718 ||| 0-0 ||| 1465 374827 +del ||| the killing fields ||| 0.125 0.0732944 2.6679e-06 1.15969e-10 2.718 ||| 0-0 ||| 8 374827 +del ||| the killing ||| 0.00704225 0.0732944 2.6679e-06 3.12584e-06 2.718 ||| 0-0 ||| 142 374827 +del ||| the kind of ||| 0.00373599 0.0732944 8.00369e-06 9.21416e-06 2.718 ||| 0-0 ||| 803 374827 +del ||| the kind ||| 0.00265487 0.0732944 8.00369e-06 0.00016949 2.718 ||| 0-0 ||| 1130 374827 +del ||| the knowledge of its ||| 0.166667 0.130625 2.6679e-06 1.22554e-09 2.718 ||| 0-2 ||| 6 374827 +del ||| the knowledge of ||| 0.015873 0.130625 2.6679e-06 8.6021e-07 2.718 ||| 0-2 ||| 63 374827 +del ||| the labour ||| 0.00740741 0.0589271 2.6679e-06 0.000203458 2.718 ||| 0-0 0-1 ||| 135 374827 +del ||| the lack ||| 0.00027894 0.0732944 2.6679e-06 4.22336e-05 2.718 ||| 0-0 ||| 3585 374827 +del ||| the land ||| 0.00226244 0.0732944 2.6679e-06 1.33717e-05 2.718 ||| 0-0 ||| 442 374827 +del ||| the large number of ||| 0.00497512 0.130625 2.6679e-06 1.37726e-09 2.718 ||| 0-3 ||| 201 374827 +del ||| the large ||| 0.000738552 0.0732944 2.6679e-06 5.33824e-05 2.718 ||| 0-0 ||| 1354 374827 +del ||| the last sentence of ||| 0.030303 0.130625 2.6679e-06 5.97229e-11 2.718 ||| 0-3 ||| 33 374827 +del ||| the last ||| 0.000472981 0.0732944 1.06716e-05 7.58538e-05 2.718 ||| 0-0 ||| 8457 374827 +del ||| the lately liberated ||| 0.333333 0.0732944 2.6679e-06 6.80739e-13 2.718 ||| 0-0 ||| 3 374827 +del ||| the lately ||| 0.333333 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| the latest incidents ||| 0.0714286 0.0732944 2.6679e-06 5.06386e-11 2.718 ||| 0-0 ||| 14 374827 +del ||| the latest ||| 0.000551572 0.0732944 2.6679e-06 5.62652e-06 2.718 ||| 0-0 ||| 1813 374827 +del ||| the latter forms ||| 1 0.0732944 2.6679e-06 2.97723e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| the latter ||| 0.00091617 0.0732944 5.33579e-06 3.3377e-05 2.718 ||| 0-0 ||| 2183 374827 +del ||| the launch of the ||| 0.0132743 0.0924045 8.00369e-06 7.04555e-07 2.718 ||| 0-0 0-2 0-3 ||| 226 374827 +del ||| the law ||| 0.000316256 0.0732944 2.6679e-06 6.12318e-05 2.718 ||| 0-0 ||| 3162 374827 +del ||| the lead ||| 0.00169779 0.0732944 2.6679e-06 6.68583e-05 2.718 ||| 0-0 ||| 589 374827 +del ||| the leader ||| 0.0028169 0.0732944 2.6679e-06 4.13306e-06 2.718 ||| 0-0 ||| 355 374827 +del ||| the leading ||| 0.00473934 0.0732944 2.6679e-06 3.02512e-05 2.718 ||| 0-0 ||| 211 374827 +del ||| the least ||| 0.00108814 0.0732944 2.6679e-06 8.52313e-05 2.718 ||| 0-0 ||| 919 374827 +del ||| the left wing around the ||| 1 0.0732944 2.6679e-06 1.21407e-14 2.718 ||| 0-0 0-4 ||| 1 374827 +del ||| the legal basis since last ||| 1 0.0732944 2.6679e-06 7.9214e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the legal basis since ||| 1 0.0732944 2.6679e-06 3.62702e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| the legal basis ||| 0.000844595 0.0732944 2.6679e-06 2.67282e-08 2.718 ||| 0-0 ||| 1184 374827 +del ||| the legal principle of fair and equal ||| 1 0.0732944 2.6679e-06 1.39225e-20 2.718 ||| 0-0 ||| 1 374827 +del ||| the legal principle of fair and ||| 1 0.0732944 2.6679e-06 2.43401e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the legal principle of fair ||| 1 0.0732944 2.6679e-06 1.94318e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| the legal principle of ||| 0.166667 0.0732944 2.6679e-06 3.75131e-10 2.718 ||| 0-0 ||| 6 374827 +del ||| the legal principle ||| 0.111111 0.0732944 2.6679e-06 6.90036e-09 2.718 ||| 0-0 ||| 9 374827 +del ||| the legal ||| 0.00456621 0.0732944 5.33579e-06 4.50121e-05 2.718 ||| 0-0 ||| 438 374827 +del ||| the legislation ||| 0.000458926 0.0732944 2.6679e-06 2.78895e-05 2.718 ||| 0-0 ||| 2179 374827 +del ||| the letter ||| 0.00214823 0.0732944 5.33579e-06 8.99548e-06 2.718 ||| 0-0 ||| 931 374827 +del ||| the level of the ||| 0.0027933 0.10196 2.6679e-06 5.38028e-06 2.718 ||| 0-2 0-3 ||| 358 374827 +del ||| the level of ||| 0.00188608 0.10196 1.33395e-05 8.76384e-05 2.718 ||| 0-0 0-2 ||| 2651 374827 +del ||| the level ||| 0.00127146 0.0732944 1.06716e-05 0.000297094 2.718 ||| 0-0 ||| 3146 374827 +del ||| the liability ||| 0.00793651 0.0732944 2.6679e-06 3.88994e-06 2.718 ||| 0-0 ||| 126 374827 +del ||| the life of ||| 0.0026455 0.130625 2.6679e-06 2.74362e-06 2.718 ||| 0-2 ||| 378 374827 +del ||| the lifespan ||| 0.0833333 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 12 374827 +del ||| the light of ||| 0.000455166 0.0732944 2.6679e-06 3.2816e-06 2.718 ||| 0-0 ||| 2197 374827 +del ||| the light ||| 0.000786473 0.0732944 5.33579e-06 6.03635e-05 2.718 ||| 0-0 ||| 2543 374827 +del ||| the likely impact ||| 0.125 0.0732944 2.6679e-06 2.42974e-09 2.718 ||| 0-0 ||| 8 374827 +del ||| the likely ||| 0.0133333 0.0732944 2.6679e-06 2.94871e-05 2.718 ||| 0-0 ||| 75 374827 +del ||| the likes of ||| 0.0238095 0.0732944 2.6679e-06 2.2469e-07 2.718 ||| 0-0 ||| 42 374827 +del ||| the likes ||| 0.0444444 0.0732944 5.33579e-06 4.13306e-06 2.718 ||| 0-0 ||| 45 374827 +del ||| the limit ||| 0.003861 0.0732944 2.6679e-06 1.68795e-05 2.718 ||| 0-0 ||| 259 374827 +del ||| the limited progress made ||| 0.25 0.0732944 2.6679e-06 3.72737e-12 2.718 ||| 0-0 ||| 4 374827 +del ||| the limited progress ||| 0.125 0.0732944 2.6679e-06 1.77934e-09 2.718 ||| 0-0 ||| 8 374827 +del ||| the limited ||| 0.00847458 0.0732944 5.33579e-06 1.35106e-05 2.718 ||| 0-0 ||| 236 374827 +del ||| the limits ||| 0.00131926 0.0732944 2.6679e-06 9.37753e-06 2.718 ||| 0-0 ||| 758 374827 +del ||| the line ||| 0.00116822 0.0732944 2.6679e-06 0.00010225 2.718 ||| 0-0 ||| 856 374827 +del ||| the lines of the ||| 0.011236 0.0924045 2.6679e-06 3.23811e-06 2.718 ||| 0-0 0-2 0-3 ||| 89 374827 +del ||| the lines of ||| 0.00409836 0.130625 2.6679e-06 1.64798e-06 2.718 ||| 0-2 ||| 244 374827 +del ||| the list are ||| 0.0833333 0.0732944 2.6679e-06 3.85216e-07 2.718 ||| 0-0 ||| 12 374827 +del ||| the list of ||| 0.000792393 0.130625 2.6679e-06 1.32382e-06 2.718 ||| 0-2 ||| 1262 374827 +del ||| the list ||| 0.000961076 0.0732944 5.33579e-06 2.53888e-05 2.718 ||| 0-0 ||| 2081 374827 +del ||| the little boy ||| 0.5 0.0732944 2.6679e-06 2.41791e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| the little ||| 0.00689655 0.0732944 2.6679e-06 5.62304e-05 2.718 ||| 0-0 ||| 145 374827 +del ||| the lives of ||| 0.00118624 0.130625 2.6679e-06 9.32649e-07 2.718 ||| 0-2 ||| 843 374827 +del ||| the logic of this would ||| 1 0.130625 2.6679e-06 4.94438e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| the logic of this ||| 0.0769231 0.130625 2.6679e-06 8.425e-10 2.718 ||| 0-2 ||| 13 374827 +del ||| the logic of ||| 0.00460829 0.130625 2.6679e-06 1.3039e-07 2.718 ||| 0-2 ||| 217 374827 +del ||| the loss ||| 0.00200401 0.0732944 5.33579e-06 1.4622e-05 2.718 ||| 0-0 ||| 998 374827 +del ||| the love of bureaucratic ||| 0.5 0.10196 2.6679e-06 3.11457e-12 2.718 ||| 0-0 0-2 ||| 2 374827 +del ||| the love of ||| 0.0625 0.10196 2.6679e-06 7.78644e-07 2.718 ||| 0-0 0-2 ||| 16 374827 +del ||| the main objectives of the ||| 0.0153846 0.0924045 2.6679e-06 1.66032e-10 2.718 ||| 0-0 0-3 0-4 ||| 65 374827 +del ||| the main part ||| 0.0285714 0.0732944 2.6679e-06 4.12828e-08 2.718 ||| 0-0 ||| 35 374827 +del ||| the main sector ||| 0.142857 0.0732944 2.6679e-06 6.43031e-09 2.718 ||| 0-0 ||| 7 374827 +del ||| the main thrust of ||| 0.0119048 0.130625 2.6679e-06 2.3472e-11 2.718 ||| 0-3 ||| 84 374827 +del ||| the main ||| 0.000526131 0.0732944 8.00369e-06 3.46274e-05 2.718 ||| 0-0 ||| 5702 374827 +del ||| the maintenance obligations ||| 1 0.0732944 2.6679e-06 3.64925e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the maintenance ||| 0.00408163 0.0732944 5.33579e-06 2.74379e-06 2.718 ||| 0-0 ||| 490 374827 +del ||| the majority of ||| 0.000322269 0.130625 2.6679e-06 7.29821e-07 2.718 ||| 0-2 ||| 3103 374827 +del ||| the majority ||| 0.000216685 0.0732944 2.6679e-06 1.39968e-05 2.718 ||| 0-0 ||| 4615 374827 +del ||| the manner of ||| 0.0232558 0.0732944 2.6679e-06 3.68189e-06 2.718 ||| 0-0 ||| 43 374827 +del ||| the manner ||| 0.00288184 0.0732944 2.6679e-06 6.77266e-05 2.718 ||| 0-0 ||| 347 374827 +del ||| the manpower ||| 0.0344828 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-0 ||| 29 374827 +del ||| the mantle ||| 0.05 0.0732944 2.6679e-06 3.82047e-07 2.718 ||| 0-0 ||| 20 374827 +del ||| the many contributions ||| 0.142857 0.0732944 2.6679e-06 2.7066e-09 2.718 ||| 0-0 ||| 7 374827 +del ||| the many ||| 0.000448229 0.0732944 2.6679e-06 0.000119234 2.718 ||| 0-0 ||| 2231 374827 +del ||| the mark with ||| 0.166667 0.0732944 2.6679e-06 1.20595e-07 2.718 ||| 0-0 ||| 6 374827 +del ||| the mark ||| 0.00558659 0.0732944 2.6679e-06 1.88592e-05 2.718 ||| 0-0 ||| 179 374827 +del ||| the market , ||| 0.0017331 0.0732944 2.6679e-06 9.3607e-06 2.718 ||| 0-0 ||| 577 374827 +del ||| the market . ||| 0.00141044 0.0273989 2.6679e-06 2.76721e-07 2.718 ||| 0-1 ||| 709 374827 +del ||| the market in ||| 0.00284091 0.0183279 2.6679e-06 3.74147e-07 2.718 ||| 0-2 ||| 352 374827 +del ||| the market ||| 0.00125235 0.0732944 1.60074e-05 7.84934e-05 2.718 ||| 0-0 ||| 4791 374827 +del ||| the mass ||| 0.010989 0.0732944 2.6679e-06 5.48759e-06 2.718 ||| 0-0 ||| 91 374827 +del ||| the material ||| 0.0136054 0.0732944 5.33579e-06 9.75957e-06 2.718 ||| 0-0 ||| 147 374827 +del ||| the materials from which ||| 0.2 0.0911315 2.6679e-06 1.58236e-10 2.718 ||| 0-2 ||| 5 374827 +del ||| the materials from ||| 0.166667 0.0911315 2.6679e-06 1.86278e-08 2.718 ||| 0-2 ||| 6 374827 +del ||| the matter made by the ||| 1 0.064249 2.6679e-06 4.2392e-09 2.718 ||| 0-0 0-3 0-4 ||| 1 374827 +del ||| the matter to ||| 0.00662252 0.0732944 2.6679e-06 3.20192e-05 2.718 ||| 0-0 ||| 151 374827 +del ||| the matter ||| 0.000995025 0.0732944 1.33395e-05 0.00036034 2.718 ||| 0-0 ||| 5025 374827 +del ||| the may ||| 1 0.0732944 2.6679e-06 0.000260209 2.718 ||| 0-0 ||| 1 374827 +del ||| the meaning of ||| 0.00380228 0.130625 2.6679e-06 5.54157e-07 2.718 ||| 0-2 ||| 263 374827 +del ||| the means ||| 0.000504032 0.0732944 2.6679e-06 0.000220094 2.718 ||| 0-0 ||| 1984 374827 +del ||| the measures ||| 0.000464253 0.0732944 5.33579e-06 7.18596e-05 2.718 ||| 0-0 ||| 4308 374827 +del ||| the media situation ||| 0.0625 0.0732944 2.6679e-06 5.15139e-09 2.718 ||| 0-0 ||| 16 374827 +del ||| the media ||| 0.00034002 0.0732944 2.6679e-06 1.00027e-05 2.718 ||| 0-0 ||| 2941 374827 +del ||| the medium ||| 0.00365631 0.0732944 5.33579e-06 2.88272e-06 2.718 ||| 0-0 ||| 547 374827 +del ||| the meeting of the ||| 0.0025 0.10196 2.6679e-06 7.89997e-07 2.718 ||| 0-2 0-3 ||| 400 374827 +del ||| the meeting of ||| 0.00271739 0.130625 2.6679e-06 2.27458e-06 2.718 ||| 0-2 ||| 368 374827 +del ||| the meetings could ||| 1 0.0732944 2.6679e-06 5.43348e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| the meetings ||| 0.00249377 0.0732944 2.6679e-06 7.64095e-06 2.718 ||| 0-0 ||| 401 374827 +del ||| the members of the institutions involved ||| 1 0.10196 2.6679e-06 1.68427e-14 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| the members of the institutions ||| 0.5 0.10196 2.6679e-06 4.87065e-11 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| the members of the ||| 0.00064433 0.10196 2.6679e-06 9.27743e-07 2.718 ||| 0-2 0-3 ||| 1552 374827 +del ||| the memory of ||| 0.00625 0.130625 2.6679e-06 2.08261e-07 2.718 ||| 0-2 ||| 160 374827 +del ||| the military administration ||| 0.5 0.0732944 2.6679e-06 1.6908e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| the military ||| 0.00214592 0.0732944 2.6679e-06 8.37031e-06 2.718 ||| 0-0 ||| 466 374827 +del ||| the milk and ||| 0.0714286 0.0732944 2.6679e-06 4.52446e-08 2.718 ||| 0-0 ||| 14 374827 +del ||| the milk ||| 0.0142857 0.0732944 2.6679e-06 3.61208e-06 2.718 ||| 0-0 ||| 70 374827 +del ||| the mill ||| 0.0555556 0.0732944 2.6679e-06 1.11141e-06 2.718 ||| 0-0 ||| 18 374827 +del ||| the mobility of ||| 0.00239808 0.130625 2.6679e-06 9.05485e-08 2.718 ||| 0-2 ||| 417 374827 +del ||| the model of the ||| 0.0153846 0.10196 2.6679e-06 2.42157e-07 2.718 ||| 0-2 0-3 ||| 65 374827 +del ||| the moment - because ||| 0.5 0.0732944 2.6679e-06 7.77917e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| the moment - ||| 0.0204082 0.0732944 2.6679e-06 2.36737e-07 2.718 ||| 0-0 ||| 49 374827 +del ||| the moment ||| 0.000605083 0.0732944 8.00369e-06 6.276e-05 2.718 ||| 0-0 ||| 4958 374827 +del ||| the moral finger ||| 0.5 0.0732944 2.6679e-06 3.05638e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| the moral ||| 0.025 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-0 ||| 40 374827 +del ||| the more ||| 0.00162404 0.0732944 1.06716e-05 0.000793165 2.718 ||| 0-0 ||| 2463 374827 +del ||| the most ||| 0.000332668 0.0732944 5.33579e-06 0.00015011 2.718 ||| 0-0 ||| 6012 374827 +del ||| the multiple uses of ||| 1 0.130625 2.6679e-06 5.99793e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| the municipal ||| 0.037037 0.0732944 2.6679e-06 2.01443e-06 2.718 ||| 0-0 ||| 27 374827 +del ||| the name of the ||| 0.00236407 0.10196 2.6679e-06 5.49727e-07 2.718 ||| 0-2 0-3 ||| 423 374827 +del ||| the name ||| 0.00119403 0.0732944 5.33579e-06 3.03554e-05 2.718 ||| 0-0 ||| 1675 374827 +del ||| the nature of ||| 0.00274348 0.0732944 5.33579e-06 2.66984e-06 2.718 ||| 0-0 ||| 729 374827 +del ||| the nature ||| 0.00187441 0.0732944 5.33579e-06 4.91105e-05 2.718 ||| 0-0 ||| 1067 374827 +del ||| the necessary ||| 0.00246457 0.0732944 1.06716e-05 8.93644e-05 2.718 ||| 0-0 ||| 1623 374827 +del ||| the necessity of ||| 0.00326797 0.0732944 2.6679e-06 3.13433e-07 2.718 ||| 0-0 ||| 306 374827 +del ||| the necessity ||| 0.00184843 0.0732944 2.6679e-06 5.76544e-06 2.718 ||| 0-0 ||| 541 374827 +del ||| the need for ||| 0.000573148 0.0732944 1.06716e-05 2.44754e-06 2.718 ||| 0-0 ||| 6979 374827 +del ||| the need to ||| 0.000133245 0.0732944 2.6679e-06 2.82972e-05 2.718 ||| 0-0 ||| 7505 374827 +del ||| the need ||| 0.000394477 0.0732944 1.60074e-05 0.000318454 2.718 ||| 0-0 ||| 15210 374827 +del ||| the needs of the ||| 0.00138122 0.10196 2.6679e-06 1.24726e-06 2.718 ||| 0-2 0-3 ||| 724 374827 +del ||| the needs ||| 0.000448229 0.0732944 2.6679e-06 6.88727e-05 2.718 ||| 0-0 ||| 2231 374827 +del ||| the negative ||| 0.018018 0.0732944 5.33579e-06 8.12719e-06 2.718 ||| 0-0 ||| 111 374827 +del ||| the negotiating ||| 0.0140845 0.0732944 2.6679e-06 5.38339e-06 2.718 ||| 0-0 ||| 71 374827 +del ||| the neighbourhood of ||| 0.0625 0.130625 2.6679e-06 8.51155e-08 2.718 ||| 0-2 ||| 16 374827 +del ||| the new British Government 's ||| 1 0.169811 2.6679e-06 2.09644e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| the new position ||| 0.0714286 0.0732944 2.6679e-06 6.83596e-08 2.718 ||| 0-0 ||| 14 374827 +del ||| the new provisions ||| 0.00813008 0.0732944 2.6679e-06 1.63581e-08 2.718 ||| 0-0 ||| 123 374827 +del ||| the new ||| 0.000439603 0.0732944 2.40111e-05 0.000207591 2.718 ||| 0-0 ||| 20473 374827 +del ||| the news ||| 0.00247525 0.0732944 2.6679e-06 1.26076e-05 2.718 ||| 0-0 ||| 404 374827 +del ||| the newspaper ||| 0.0121951 0.0732944 2.6679e-06 2.01443e-06 2.718 ||| 0-0 ||| 82 374827 +del ||| the next eight months , the European ||| 0.333333 0.0732944 2.6679e-06 1.66367e-19 2.718 ||| 0-5 ||| 3 374827 +del ||| the next eight months , the ||| 0.333333 0.0732944 2.6679e-06 4.97524e-17 2.718 ||| 0-5 ||| 3 374827 +del ||| the next millennium ||| 0.0222222 0.0732944 2.6679e-06 7.8931e-11 2.718 ||| 0-0 ||| 45 374827 +del ||| the next step is now up to ||| 1 0.0732944 2.6679e-06 1.03536e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the next step is now up ||| 1 0.0732944 2.6679e-06 1.16519e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| the next step is now ||| 1 0.0732944 2.6679e-06 3.41647e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the next step is ||| 0.0333333 0.0732944 2.6679e-06 1.65856e-10 2.718 ||| 0-0 ||| 30 374827 +del ||| the next step ||| 0.00809717 0.0732944 5.33579e-06 5.29196e-09 2.718 ||| 0-0 ||| 247 374827 +del ||| the next ||| 0.000303321 0.0732944 1.60074e-05 3.58777e-05 2.718 ||| 0-0 ||| 19781 374827 +del ||| the normal ||| 0.0136986 0.0370594 2.6679e-06 9.03021e-07 2.718 ||| 0-0 0-1 ||| 73 374827 +del ||| the northern and southern ||| 0.1 0.124147 2.6679e-06 6.2716e-12 2.718 ||| 0-0 0-1 ||| 10 374827 +del ||| the northern and ||| 0.0434783 0.124147 2.6679e-06 1.95987e-06 2.718 ||| 0-0 0-1 ||| 23 374827 +del ||| the northern ||| 0.0133333 0.124147 2.6679e-06 0.000156466 2.718 ||| 0-0 0-1 ||| 75 374827 +del ||| the notorious ||| 0.0204082 0.0732944 5.33579e-06 1.00722e-06 2.718 ||| 0-0 ||| 98 374827 +del ||| the number of ||| 0.00110595 0.130625 1.33395e-05 8.96068e-06 2.718 ||| 0-2 ||| 4521 374827 +del ||| the number ||| 0.000388199 0.0732944 5.33579e-06 0.000171852 2.718 ||| 0-0 ||| 5152 374827 +del ||| the numerical code ||| 0.5 0.0732944 2.6679e-06 2.30618e-12 2.718 ||| 0-0 ||| 2 374827 +del ||| the numerical ||| 0.25 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| the objective should be the ||| 0.5 0.0732944 2.6679e-06 1.14549e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| the objective should be ||| 0.0434783 0.0732944 2.6679e-06 1.86586e-09 2.718 ||| 0-0 ||| 23 374827 +del ||| the objective should ||| 0.0588235 0.0732944 2.6679e-06 1.02956e-07 2.718 ||| 0-0 ||| 17 374827 +del ||| the objective ||| 0.000374252 0.0732944 2.6679e-06 2.32354e-05 2.718 ||| 0-0 ||| 2672 374827 +del ||| the objectives of ||| 0.000816327 0.10196 2.6679e-06 4.79481e-06 2.718 ||| 0-0 0-2 ||| 1225 374827 +del ||| the obligations of the ||| 0.0151515 0.10196 2.6679e-06 8.36541e-08 2.718 ||| 0-2 0-3 ||| 66 374827 +del ||| the obvious ||| 0.00884956 0.0732944 5.33579e-06 1.44831e-05 2.718 ||| 0-0 ||| 226 374827 +del ||| the occupancy ||| 0.333333 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| the office of the ||| 0.0126582 0.10196 2.6679e-06 6.47219e-07 2.718 ||| 0-2 0-3 ||| 79 374827 +del ||| the office of ||| 0.00934579 0.130625 2.6679e-06 1.86349e-06 2.718 ||| 0-2 ||| 107 374827 +del ||| the official ||| 0.00680272 0.0732944 2.6679e-06 1.35106e-05 2.718 ||| 0-0 ||| 147 374827 +del ||| the one about ||| 0.125 0.0732944 2.6679e-06 2.04736e-06 2.718 ||| 0-0 ||| 8 374827 +del ||| the one by ||| 0.142857 0.0597263 5.33579e-06 2.34076e-05 2.718 ||| 0-0 0-2 ||| 14 374827 +del ||| the one for ||| 0.047619 0.0435798 2.6679e-06 1.5574e-05 2.718 ||| 0-0 0-2 ||| 21 374827 +del ||| the one from the ||| 0.25 0.0792401 2.6679e-06 1.08968e-05 2.718 ||| 0-0 0-2 0-3 ||| 4 374827 +del ||| the one in ||| 0.016 0.0458111 5.33579e-06 3.90369e-05 2.718 ||| 0-0 0-2 ||| 125 374827 +del ||| the one plus ten ||| 0.5 0.0732944 2.6679e-06 1.16735e-13 2.718 ||| 0-0 ||| 2 374827 +del ||| the one plus ||| 1 0.0732944 2.6679e-06 1.04228e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| the one that has ||| 0.1 0.0732944 2.6679e-06 1.25348e-07 2.718 ||| 0-0 ||| 10 374827 +del ||| the one that we ||| 0.0769231 0.0732944 2.6679e-06 2.76442e-07 2.718 ||| 0-0 ||| 13 374827 +del ||| the one that ||| 0.0102041 0.0732944 8.00369e-06 2.43512e-05 2.718 ||| 0-0 ||| 294 374827 +del ||| the one ||| 0.00376685 0.0732944 5.06901e-05 0.00144761 2.718 ||| 0-0 ||| 5044 374827 +del ||| the only ||| 0.000269251 0.0732944 5.33579e-06 0.000386597 2.718 ||| 0-0 ||| 7428 374827 +del ||| the operation of what ||| 1 0.130625 2.6679e-06 1.44581e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| the operation of ||| 0.00191939 0.130625 2.6679e-06 1.03044e-06 2.718 ||| 0-2 ||| 521 374827 +del ||| the operation ||| 0.000909918 0.0732944 2.6679e-06 1.97623e-05 2.718 ||| 0-0 ||| 1099 374827 +del ||| the operative event is ||| 1 0.0732944 2.6679e-06 7.95495e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the operative event ||| 1 0.0732944 2.6679e-06 2.53818e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the operative ||| 0.2 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 5 374827 +del ||| the opinion of the ||| 0.000615006 0.0732944 2.6679e-06 2.8446e-07 2.718 ||| 0-0 ||| 1626 374827 +del ||| the opinion of ||| 0.000568505 0.0732944 2.6679e-06 4.63351e-06 2.718 ||| 0-0 ||| 1759 374827 +del ||| the opinion ||| 0.000549149 0.0732944 5.33579e-06 8.52313e-05 2.718 ||| 0-0 ||| 3642 374827 +del ||| the opportunity to ||| 0.000244738 0.0732944 2.6679e-06 5.55205e-06 2.718 ||| 0-0 ||| 4086 374827 +del ||| the opportunity ||| 0.000312744 0.0732944 5.33579e-06 6.24821e-05 2.718 ||| 0-0 ||| 6395 374827 +del ||| the opt ||| 0.25 0.0732944 2.6679e-06 3.61208e-06 2.718 ||| 0-0 ||| 4 374827 +del ||| the opt-out ||| 0.0172414 0.0732944 8.00369e-06 3.99413e-06 2.718 ||| 0-0 ||| 174 374827 +del ||| the option of ||| 0.00184843 0.0732944 2.6679e-06 7.81693e-07 2.718 ||| 0-0 ||| 541 374827 +del ||| the option ||| 0.00130378 0.0732944 2.6679e-06 1.43789e-05 2.718 ||| 0-0 ||| 767 374827 +del ||| the order of ||| 0.00493827 0.130625 5.33579e-06 9.64522e-06 2.718 ||| 0-2 ||| 405 374827 +del ||| the orders of ||| 0.037037 0.130625 2.6679e-06 1.37634e-07 2.718 ||| 0-2 ||| 27 374827 +del ||| the ordinary legislative ||| 1 0.0732944 2.6679e-06 1.6999e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the ordinary ||| 0.0298507 0.0732944 5.33579e-06 6.39061e-06 2.718 ||| 0-0 ||| 67 374827 +del ||| the organisation of the ||| 0.00662252 0.10196 2.6679e-06 2.12595e-07 2.718 ||| 0-2 0-3 ||| 151 374827 +del ||| the organization ||| 0.0047619 0.0732944 2.6679e-06 4.37618e-06 2.718 ||| 0-0 ||| 210 374827 +del ||| the other , the ||| 0.00787402 0.0732944 2.6679e-06 3.29418e-06 2.718 ||| 0-3 ||| 127 374827 +del ||| the other concerns border control , immigration ||| 0.5 0.0732944 2.6679e-06 9.37721e-23 2.718 ||| 0-0 ||| 2 374827 +del ||| the other concerns border control , ||| 0.5 0.0732944 2.6679e-06 7.21324e-18 2.718 ||| 0-0 ||| 2 374827 +del ||| the other concerns border control ||| 0.5 0.0732944 2.6679e-06 6.0486e-17 2.718 ||| 0-0 ||| 2 374827 +del ||| the other concerns border ||| 0.5 0.0732944 2.6679e-06 7.88605e-13 2.718 ||| 0-0 ||| 2 374827 +del ||| the other concerns ||| 0.05 0.0732944 2.6679e-06 3.37011e-08 2.718 ||| 0-0 ||| 20 374827 +del ||| the other day ||| 0.00487805 0.0732944 2.6679e-06 1.15277e-07 2.718 ||| 0-0 ||| 205 374827 +del ||| the other hand , ||| 0.000263505 0.0732944 2.6679e-06 2.12809e-08 2.718 ||| 0-0 ||| 3795 374827 +del ||| the other hand ||| 0.000460511 0.0732944 5.33579e-06 1.78449e-07 2.718 ||| 0-0 ||| 4343 374827 +del ||| the other players in the ||| 0.25 0.0458111 2.6679e-06 1.25887e-11 2.718 ||| 0-3 0-4 ||| 4 374827 +del ||| the other side ||| 0.0021978 0.0732944 2.6679e-06 9.86285e-08 2.718 ||| 0-0 ||| 455 374827 +del ||| the other ||| 0.000624532 0.0732944 2.6679e-05 0.000449948 2.718 ||| 0-0 ||| 16012 374827 +del ||| the others ||| 0.000985222 0.0732944 2.6679e-06 3.37591e-05 2.718 ||| 0-0 ||| 1015 374827 +del ||| the outcome of the ||| 0.000923361 0.0924045 2.6679e-06 1.81832e-06 2.718 ||| 0-0 0-2 0-3 ||| 1083 374827 +del ||| the outcome of ||| 0.000640205 0.130625 2.6679e-06 9.25405e-07 2.718 ||| 0-2 ||| 1562 374827 +del ||| the outcomes of the ||| 0.0357143 0.10196 2.6679e-06 1.38375e-08 2.718 ||| 0-2 0-3 ||| 28 374827 +del ||| the overall ||| 0.00261097 0.0732944 2.6679e-06 2.19851e-05 2.718 ||| 0-0 ||| 383 374827 +del ||| the own-initiative ||| 0.142857 0.0368956 2.6679e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| the package ||| 0.00114155 0.0732944 2.6679e-06 1.64975e-05 2.718 ||| 0-0 ||| 876 374827 +del ||| the package ’ ||| 0.5 0.0732944 2.6679e-06 2.87403e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| the pain ||| 0.00806452 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-0 ||| 124 374827 +del ||| the pains ||| 0.142857 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-0 ||| 7 374827 +del ||| the parents ' ||| 0.333333 0.0513318 2.6679e-06 7.09109e-09 2.718 ||| 0-0 0-2 ||| 3 374827 +del ||| the parliamentary ||| 0.0104167 0.0732944 2.6679e-06 1.0871e-05 2.718 ||| 0-0 ||| 96 374827 +del ||| the part of the ||| 0.0114695 0.10196 4.26864e-05 7.49868e-06 2.718 ||| 0-2 0-3 ||| 1395 374827 +del ||| the part of whatever ||| 1 0.130625 2.6679e-06 1.18963e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| the part of ||| 0.00432069 0.130625 2.40111e-05 2.15904e-05 2.718 ||| 0-2 ||| 2083 374827 +del ||| the part ||| 0.00208117 0.0732944 1.60074e-05 0.00041407 2.718 ||| 0-0 ||| 2883 374827 +del ||| the particular ||| 0.0114504 0.0732944 8.00369e-06 0.000213738 2.718 ||| 0-0 ||| 262 374827 +del ||| the parties in ||| 0.0078125 0.0183279 2.6679e-06 1.21515e-07 2.718 ||| 0-2 ||| 128 374827 +del ||| the parties ||| 0.000461467 0.0732944 2.6679e-06 2.5493e-05 2.718 ||| 0-0 ||| 2167 374827 +del ||| the past ||| 0.000176336 0.0732944 2.6679e-06 4.44912e-05 2.718 ||| 0-0 ||| 5671 374827 +del ||| the path ||| 0.000932836 0.0732944 2.6679e-06 1.32327e-05 2.718 ||| 0-0 ||| 1072 374827 +del ||| the payment of ||| 0.00473934 0.130625 2.6679e-06 4.56364e-07 2.718 ||| 0-2 ||| 211 374827 +del ||| the people , ||| 0.00152672 0.0732944 2.6679e-06 3.6457e-05 2.718 ||| 0-0 ||| 655 374827 +del ||| the people of ||| 0.000532198 0.0732944 5.33579e-06 1.66195e-05 2.718 ||| 0-0 ||| 3758 374827 +del ||| the people to register ||| 0.5 0.0732944 2.6679e-06 3.31408e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| the people to ||| 0.00699301 0.0732944 2.6679e-06 2.71646e-05 2.718 ||| 0-0 ||| 143 374827 +del ||| the people ||| 0.000426294 0.0732944 1.33395e-05 0.000305707 2.718 ||| 0-0 ||| 11729 374827 +del ||| the people ’ s ||| 0.142857 0.116111 2.6679e-06 1.79044e-08 2.718 ||| 0-0 0-2 0-3 ||| 7 374827 +del ||| the period from ||| 0.00625 0.0911315 2.6679e-06 2.32182e-07 2.718 ||| 0-2 ||| 160 374827 +del ||| the period the ||| 1 0.0732944 2.6679e-06 3.72075e-06 2.718 ||| 0-2 ||| 1 374827 +del ||| the permitted ||| 0.0555556 0.0732944 2.6679e-06 9.86377e-06 2.718 ||| 0-0 ||| 18 374827 +del ||| the person ||| 0.00340136 0.0732944 8.00369e-06 4.47343e-05 2.718 ||| 0-0 ||| 882 374827 +del ||| the personal ||| 0.0526316 0.0732944 5.33579e-06 1.47609e-05 2.718 ||| 0-0 ||| 38 374827 +del ||| the place myself between ||| 1 0.0380629 2.6679e-06 1.65489e-11 2.718 ||| 0-0 0-3 ||| 1 374827 +del ||| the place of ||| 0.004 0.130625 2.6679e-06 2.72551e-05 2.718 ||| 0-2 ||| 250 374827 +del ||| the place ||| 0.0013624 0.0732944 2.6679e-06 0.00052271 2.718 ||| 0-0 ||| 734 374827 +del ||| the plan for ||| 0.010989 0.0732944 2.6679e-06 1.95131e-07 2.718 ||| 0-0 ||| 91 374827 +del ||| the plan ||| 0.00271003 0.0732944 5.33579e-06 2.53888e-05 2.718 ||| 0-0 ||| 738 374827 +del ||| the planned ||| 0.0121951 0.0732944 5.33579e-06 1.18782e-05 2.718 ||| 0-0 ||| 164 374827 +del ||| the point of being ||| 0.125 0.130625 2.6679e-06 4.50842e-08 2.718 ||| 0-2 ||| 8 374827 +del ||| the point of ||| 0.00185529 0.130625 8.00369e-06 1.58424e-05 2.718 ||| 0-2 ||| 1617 374827 +del ||| the point ||| 0.000730994 0.0732944 8.00369e-06 0.000303832 2.718 ||| 0-0 ||| 4104 374827 +del ||| the points in the Commission ' s ||| 0.5 0.0183279 2.6679e-06 5.03887e-17 2.718 ||| 0-2 ||| 2 374827 +del ||| the points in the Commission ' ||| 0.5 0.0183279 2.6679e-06 2.64883e-14 2.718 ||| 0-2 ||| 2 374827 +del ||| the points in the Commission ||| 0.5 0.0183279 2.6679e-06 7.71152e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| the points in the ||| 0.0277778 0.0183279 2.6679e-06 1.32024e-08 2.718 ||| 0-2 ||| 36 374827 +del ||| the points in ||| 0.0192308 0.0183279 2.6679e-06 2.15052e-07 2.718 ||| 0-2 ||| 52 374827 +del ||| the polar ||| 0.111111 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-0 ||| 9 374827 +del ||| the policy on ||| 0.00568182 0.0732944 2.6679e-06 9.14916e-07 2.718 ||| 0-0 ||| 176 374827 +del ||| the policy ||| 0.000407498 0.0732944 2.6679e-06 0.000136738 2.718 ||| 0-0 ||| 2454 374827 +del ||| the political continuum of ||| 1 0.0732944 2.6679e-06 2.35924e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| the political continuum ||| 1 0.0732944 2.6679e-06 4.33971e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the political ring ||| 1 0.0732944 2.6679e-06 3.09979e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the political ||| 0.00692521 0.0732944 1.33395e-05 6.19959e-05 2.718 ||| 0-0 ||| 722 374827 +del ||| the poorest ||| 0.0023753 0.0732944 2.6679e-06 2.6396e-06 2.718 ||| 0-0 ||| 421 374827 +del ||| the port ||| 0.00495049 0.0897572 2.6679e-06 0.000101277 2.718 ||| 0-0 0-1 ||| 202 374827 +del ||| the position of the ||| 0.000929368 0.10196 2.6679e-06 2.07123e-06 2.718 ||| 0-2 0-3 ||| 1076 374827 +del ||| the position of ||| 0.00060024 0.130625 2.6679e-06 5.96352e-06 2.718 ||| 0-2 ||| 1666 374827 +del ||| the position ||| 0.000266383 0.0732944 2.6679e-06 0.000114371 2.718 ||| 0-0 ||| 3754 374827 +del ||| the positive effects - of the ||| 1 0.10196 2.6679e-06 1.17236e-13 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| the positive repercussions of what is ||| 1 0.130625 2.6679e-06 3.62348e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| the positive repercussions of what ||| 1 0.130625 2.6679e-06 1.15614e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| the positive repercussions of ||| 1 0.130625 2.6679e-06 8.23991e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| the possibility of ||| 0.000467618 0.0732944 5.33579e-06 1.61625e-06 2.718 ||| 0-0 ||| 4277 374827 +del ||| the possibility ||| 0.000579374 0.0732944 8.00369e-06 2.97302e-05 2.718 ||| 0-0 ||| 5178 374827 +del ||| the possible ||| 0.000786163 0.0732944 2.6679e-06 0.000278582 2.718 ||| 0-0 ||| 1272 374827 +del ||| the potential to ||| 0.0078125 0.0732944 5.33579e-06 1.58939e-06 2.718 ||| 0-0 ||| 256 374827 +del ||| the potential ||| 0.0011919 0.0732944 5.33579e-06 1.78868e-05 2.718 ||| 0-0 ||| 1678 374827 +del ||| the power ||| 0.000784314 0.0732944 2.6679e-06 5.18542e-05 2.718 ||| 0-0 ||| 1275 374827 +del ||| the powers of ||| 0.00230415 0.130625 2.6679e-06 8.92808e-07 2.718 ||| 0-2 ||| 434 374827 +del ||| the practice ||| 0.00163934 0.0732944 2.6679e-06 3.66071e-05 2.718 ||| 0-0 ||| 610 374827 +del ||| the precept of good housekeeping ||| 0.5 0.130625 2.6679e-06 1.13639e-17 2.718 ||| 0-2 ||| 2 374827 +del ||| the precept of good ||| 0.5 0.130625 2.6679e-06 1.03309e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| the precept of ||| 0.166667 0.130625 2.6679e-06 1.99207e-08 2.718 ||| 0-2 ||| 6 374827 +del ||| the prescribed ||| 0.0666667 0.0732944 2.6679e-06 2.74379e-06 2.718 ||| 0-0 ||| 15 374827 +del ||| the present ||| 0.000310366 0.0732944 2.6679e-06 0.000127118 2.718 ||| 0-0 ||| 3222 374827 +del ||| the presidency , not only ||| 1 0.0732944 2.6679e-06 3.96653e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| the presidency , not ||| 0.333333 0.0732944 2.6679e-06 3.5635e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| the presidency , ||| 0.00355872 0.0732944 2.6679e-06 1.04376e-06 2.718 ||| 0-0 ||| 281 374827 +del ||| the presidency ||| 0.000351865 0.0732944 2.6679e-06 8.75236e-06 2.718 ||| 0-0 ||| 2842 374827 +del ||| the president 's ||| 0.5 0.169811 2.6679e-06 1.94875e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| the president of ||| 0.0102041 0.130625 2.6679e-06 1.43067e-07 2.718 ||| 0-2 ||| 98 374827 +del ||| the press ||| 0.000642261 0.0732944 2.6679e-06 1.04889e-05 2.718 ||| 0-0 ||| 1557 374827 +del ||| the pressure of ||| 0.005 0.130625 2.6679e-06 1.08839e-06 2.718 ||| 0-2 ||| 200 374827 +del ||| the previous extradition ||| 0.166667 0.0732944 2.6679e-06 1.24235e-11 2.718 ||| 0-0 ||| 6 374827 +del ||| the previous ||| 0.00216763 0.0732944 8.00369e-06 1.77478e-05 2.718 ||| 0-0 ||| 1384 374827 +del ||| the principle of ||| 0.000364432 0.10196 5.33579e-06 1.57061e-05 2.718 ||| 0-0 0-2 ||| 5488 374827 +del ||| the principle ||| 0.000578285 0.0732944 1.06716e-05 5.32435e-05 2.718 ||| 0-0 ||| 6917 374827 +del ||| the priority remains ||| 0.333333 0.0732944 2.6679e-06 1.72872e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| the priority ||| 0.00147929 0.0732944 2.6679e-06 1.93802e-05 2.718 ||| 0-0 ||| 676 374827 +del ||| the problem of ||| 0.00154607 0.10196 1.33395e-05 2.30417e-05 2.718 ||| 0-0 0-2 ||| 3234 374827 +del ||| the problem ||| 0.000208594 0.0732944 5.33579e-06 7.81113e-05 2.718 ||| 0-0 ||| 9588 374827 +del ||| the problem-solving ||| 0.25 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 4 374827 +del ||| the problems ||| 0.000293083 0.0732944 5.33579e-06 4.66098e-05 2.718 ||| 0-0 ||| 6824 374827 +del ||| the procedures for ||| 0.00301205 0.0732944 2.6679e-06 1.15317e-07 2.718 ||| 0-0 ||| 332 374827 +del ||| the procedures under this ||| 1 0.0033154 2.6679e-06 2.18474e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| the procedures ||| 0.000831947 0.0732944 2.6679e-06 1.5004e-05 2.718 ||| 0-0 ||| 1202 374827 +del ||| the process down into ||| 1 0.0732944 2.6679e-06 1.0642e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the process down ||| 0.166667 0.0732944 2.6679e-06 1.03652e-07 2.718 ||| 0-0 ||| 6 374827 +del ||| the process of ||| 0.00100942 0.130625 8.00369e-06 7.74189e-06 2.718 ||| 0-2 ||| 2972 374827 +del ||| the process ||| 0.000694565 0.0732944 1.06716e-05 0.000148478 2.718 ||| 0-0 ||| 5759 374827 +del ||| the product of the ||| 0.0322581 0.0924045 2.6679e-06 2.16348e-06 2.718 ||| 0-0 0-2 0-3 ||| 31 374827 +del ||| the product ||| 0.00167785 0.0732944 2.6679e-06 2.11168e-05 2.718 ||| 0-0 ||| 596 374827 +del ||| the production ||| 0.000577367 0.0732944 2.6679e-06 2.90009e-05 2.718 ||| 0-0 ||| 1732 374827 +del ||| the productive ||| 0.0909091 0.0732944 2.6679e-06 1.87551e-06 2.718 ||| 0-0 ||| 11 374827 +del ||| the programmes ||| 0.000912409 0.0732944 2.6679e-06 1.86161e-05 2.718 ||| 0-0 ||| 1096 374827 +del ||| the promotion of ||| 0.000473261 0.0732944 2.6679e-06 4.55044e-07 2.718 ||| 0-0 ||| 2113 374827 +del ||| the promotion ||| 0.000444444 0.0732944 2.6679e-06 8.37031e-06 2.718 ||| 0-0 ||| 2250 374827 +del ||| the proper ||| 0.00332779 0.0732944 5.33579e-06 3.07374e-05 2.718 ||| 0-0 ||| 601 374827 +del ||| the property ||| 0.012987 0.0732944 2.6679e-06 6.63373e-06 2.718 ||| 0-0 ||| 77 374827 +del ||| the proportion of the ||| 0.0333333 0.10196 2.6679e-06 1.89951e-07 2.718 ||| 0-2 0-3 ||| 30 374827 +del ||| the proposal ||| 0.000280584 0.0732944 1.06716e-05 6.9359e-05 2.718 ||| 0-0 ||| 14256 374827 +del ||| the proposed ||| 0.00110314 0.0732944 5.33579e-06 3.87604e-05 2.718 ||| 0-0 ||| 1813 374827 +del ||| the provision of ||| 0.000873362 0.0732944 2.6679e-06 2.24312e-06 2.718 ||| 0-0 ||| 1145 374827 +del ||| the provision ||| 0.000628931 0.0732944 2.6679e-06 4.12611e-05 2.718 ||| 0-0 ||| 1590 374827 +del ||| the provisions of the ||| 0.00101833 0.0924045 2.6679e-06 2.80399e-06 2.718 ||| 0-0 0-2 0-3 ||| 982 374827 +del ||| the public ||| 0.000207039 0.0732944 2.6679e-06 5.61262e-05 2.718 ||| 0-0 ||| 4830 374827 +del ||| the purchase on the part of the ||| 1 0.10196 2.6679e-06 2.00216e-14 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| the purpose of which is to gain ||| 1 0.0732944 2.6679e-06 4.4839e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| the purpose of which is to ||| 0.0454545 0.0732944 2.6679e-06 8.03566e-11 2.718 ||| 0-0 ||| 22 374827 +del ||| the purpose of which is ||| 0.047619 0.0732944 2.6679e-06 9.04324e-10 2.718 ||| 0-0 ||| 21 374827 +del ||| the purpose of which ||| 0.0294118 0.0732944 2.6679e-06 2.88543e-08 2.718 ||| 0-0 ||| 34 374827 +del ||| the purpose of ||| 0.000671592 0.0732944 2.6679e-06 3.39678e-06 2.718 ||| 0-0 ||| 1489 374827 +del ||| the purpose ||| 0.00151362 0.0732944 8.00369e-06 6.24821e-05 2.718 ||| 0-0 ||| 1982 374827 +del ||| the quality of the ||| 0.00112867 0.10196 2.6679e-06 3.10086e-07 2.718 ||| 0-2 0-3 ||| 886 374827 +del ||| the question of demoralisation ||| 1 0.0732944 2.6679e-06 6.24826e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| the question of extending the ||| 0.166667 0.0732944 2.6679e-06 1.96591e-11 2.718 ||| 0-0 ||| 6 374827 +del ||| the question of extending ||| 0.0714286 0.0732944 2.6679e-06 3.20223e-10 2.718 ||| 0-0 ||| 14 374827 +del ||| the question of the ||| 0.00361991 0.0924045 1.06716e-05 2.94383e-05 2.718 ||| 0-0 0-2 0-3 ||| 1105 374827 +del ||| the question of ||| 0.00103896 0.0732944 1.60074e-05 1.56206e-05 2.718 ||| 0-0 ||| 5775 374827 +del ||| the question ||| 0.000520111 0.0732944 1.60074e-05 0.000287334 2.718 ||| 0-0 ||| 11536 374827 +del ||| the rails , ||| 0.333333 0.0732944 2.6679e-06 1.20115e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| the rails ||| 0.0344828 0.0732944 2.6679e-06 1.00722e-06 2.718 ||| 0-0 ||| 29 374827 +del ||| the ranks ||| 0.010989 0.0732944 2.6679e-06 1.63238e-06 2.718 ||| 0-0 ||| 91 374827 +del ||| the rapporteur , ||| 0.00038373 0.0732944 5.33579e-06 2.9946e-06 2.718 ||| 0-0 ||| 5212 374827 +del ||| the rapporteur ||| 0.000150746 0.0732944 8.00369e-06 2.51109e-05 2.718 ||| 0-0 ||| 19901 374827 +del ||| the rate ||| 0.00160772 0.0732944 2.6679e-06 3.48705e-05 2.718 ||| 0-0 ||| 622 374827 +del ||| the rather ||| 0.0384615 0.0732944 5.33579e-06 0.000106348 2.718 ||| 0-0 ||| 52 374827 +del ||| the ratification ||| 0.00147275 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-0 ||| 679 374827 +del ||| the rationale ||| 0.00704225 0.0732944 2.6679e-06 1.49346e-06 2.718 ||| 0-0 ||| 142 374827 +del ||| the real prisoners of ||| 1 0.130625 2.6679e-06 3.97468e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| the real ||| 0.000507099 0.0732944 2.6679e-06 6.24821e-05 2.718 ||| 0-0 ||| 1972 374827 +del ||| the reality out ||| 0.5 0.0732944 2.6679e-06 8.9001e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| the reality ||| 0.0006035 0.0732944 2.6679e-06 2.32354e-05 2.718 ||| 0-0 ||| 1657 374827 +del ||| the realm ||| 0.0078125 0.0732944 2.6679e-06 2.36175e-06 2.718 ||| 0-0 ||| 128 374827 +del ||| the reason being ||| 0.037037 0.0732944 2.6679e-06 2.31185e-07 2.718 ||| 0-0 ||| 27 374827 +del ||| the reason ||| 0.00168067 0.0732944 8.00369e-06 8.12372e-05 2.718 ||| 0-0 ||| 1785 374827 +del ||| the reasons for ||| 0.00153374 0.0732944 2.6679e-06 2.69873e-07 2.718 ||| 0-0 ||| 652 374827 +del ||| the reasons ||| 0.000506842 0.0732944 2.6679e-06 3.51136e-05 2.718 ||| 0-0 ||| 1973 374827 +del ||| the recent ||| 0.000324149 0.0732944 2.6679e-06 1.68795e-05 2.718 ||| 0-0 ||| 3085 374827 +del ||| the recommendations ||| 0.000719424 0.0732944 2.6679e-06 3.36896e-06 2.718 ||| 0-0 ||| 1390 374827 +del ||| the reconstruction of the ||| 0.00877193 0.10196 2.6679e-06 3.14489e-08 2.718 ||| 0-2 0-3 ||| 114 374827 +del ||| the recording would ||| 0.333333 0.0732944 2.6679e-06 3.66893e-09 2.718 ||| 0-0 ||| 3 374827 +del ||| the recording ||| 0.0333333 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-0 ||| 30 374827 +del ||| the red light ||| 0.111111 0.0732944 2.6679e-06 8.9338e-10 2.718 ||| 0-0 ||| 9 374827 +del ||| the red ||| 0.0232558 0.0732944 2.6679e-06 5.14027e-06 2.718 ||| 0-0 ||| 43 374827 +del ||| the referendum ||| 0.00342466 0.0732944 5.33579e-06 3.75101e-06 2.718 ||| 0-0 ||| 584 374827 +del ||| the reform of the financial management are ||| 1 0.0732944 2.6679e-06 3.86205e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| the reform of the financial management ||| 1 0.0732944 2.6679e-06 2.54539e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the reform of the financial ||| 1 0.0732944 2.6679e-06 5.79816e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| the reform of the ||| 0.000712758 0.0732944 2.6679e-06 4.75259e-08 2.718 ||| 0-0 ||| 1403 374827 +del ||| the reform of ||| 0.00137741 0.0732944 5.33579e-06 7.74141e-07 2.718 ||| 0-0 ||| 1452 374827 +del ||| the reform ||| 0.000748783 0.0732944 5.33579e-06 1.42399e-05 2.718 ||| 0-0 ||| 2671 374827 +del ||| the regeneration ||| 0.0277778 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 36 374827 +del ||| the region ' s ||| 0.333333 0.120667 2.6679e-06 1.22338e-09 2.718 ||| 0-0 0-3 ||| 3 374827 +del ||| the region at dawn ||| 0.333333 0.0732944 2.6679e-06 3.13238e-13 2.718 ||| 0-0 ||| 3 374827 +del ||| the region at ||| 0.0588235 0.0732944 2.6679e-06 1.42381e-07 2.718 ||| 0-0 ||| 17 374827 +del ||| the region ||| 0.000519211 0.0732944 8.00369e-06 3.40022e-05 2.718 ||| 0-0 ||| 5778 374827 +del ||| the regulation ||| 0.000303767 0.0732944 2.6679e-06 2.42426e-05 2.718 ||| 0-0 ||| 3292 374827 +del ||| the reinforcement of ||| 0.00806452 0.10196 2.6679e-06 3.2785e-07 2.718 ||| 0-0 0-2 ||| 124 374827 +del ||| the reintroduction of ||| 0.0108696 0.130625 2.6679e-06 1.99207e-08 2.718 ||| 0-2 ||| 92 374827 +del ||| the rejection of ||| 0.00328947 0.10196 2.6679e-06 8.81097e-07 2.718 ||| 0-0 0-2 ||| 304 374827 +del ||| the rejection ||| 0.00230947 0.0732944 2.6679e-06 2.98692e-06 2.718 ||| 0-0 ||| 433 374827 +del ||| the related ||| 0.0131579 0.0732944 2.6679e-06 2.27492e-05 2.718 ||| 0-0 ||| 76 374827 +del ||| the relative manner in which ||| 1 0.0732944 2.6679e-06 1.10828e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the relative manner in ||| 1 0.0732944 2.6679e-06 1.30469e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the relative manner ||| 1 0.0732944 2.6679e-06 6.09539e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the relative ||| 0.0126582 0.0732944 2.6679e-06 3.12584e-06 2.718 ||| 0-0 ||| 79 374827 +del ||| the relevant ||| 0.00132979 0.0732944 2.6679e-06 3.73712e-05 2.718 ||| 0-0 ||| 752 374827 +del ||| the remit ||| 0.00446429 0.0732944 2.6679e-06 5.76544e-06 2.718 ||| 0-0 ||| 224 374827 +del ||| the report 's ||| 0.0135135 0.169811 2.6679e-06 1.01113e-06 2.718 ||| 0-2 ||| 74 374827 +del ||| the report by ||| 0.000723851 0.0597263 5.33579e-06 2.30201e-06 2.718 ||| 0-0 0-2 ||| 2763 374827 +del ||| the report of the employment task force ||| 1 0.0732944 2.6679e-06 4.98268e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| the report of the employment task ||| 1 0.0732944 2.6679e-06 2.92755e-15 2.718 ||| 0-0 ||| 1 374827 +del ||| the report of the employment ||| 1 0.0732944 2.6679e-06 2.32345e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the report of the ||| 0.00310559 0.0732944 2.6679e-06 4.75143e-07 2.718 ||| 0-0 ||| 322 374827 +del ||| the report of ||| 0.00242718 0.0732944 2.6679e-06 7.73952e-06 2.718 ||| 0-0 ||| 412 374827 +del ||| the report on the ||| 0.00117233 0.0732944 2.6679e-06 3.3084e-07 2.718 ||| 0-0 0-3 ||| 853 374827 +del ||| the report will ||| 0.0277778 0.0732944 2.6679e-06 1.23163e-06 2.718 ||| 0-0 ||| 36 374827 +del ||| the report ||| 0.000145243 0.0732944 1.06716e-05 0.000142365 2.718 ||| 0-0 ||| 27540 374827 +del ||| the reported ||| 0.0454545 0.0732944 2.6679e-06 1.07321e-05 2.718 ||| 0-0 ||| 22 374827 +del ||| the representatives of the ||| 0.00137741 0.0924045 2.6679e-06 1.15291e-06 2.718 ||| 0-0 0-2 0-3 ||| 726 374827 +del ||| the request of the ||| 0.00434783 0.10196 2.6679e-06 4.82426e-07 2.718 ||| 0-2 0-3 ||| 230 374827 +del ||| the request of ||| 0.003663 0.130625 2.6679e-06 1.38901e-06 2.718 ||| 0-2 ||| 273 374827 +del ||| the request ||| 0.000544366 0.0732944 2.6679e-06 2.66391e-05 2.718 ||| 0-0 ||| 1837 374827 +del ||| the requirements ||| 0.000618429 0.0732944 2.6679e-06 1.68795e-05 2.718 ||| 0-0 ||| 1617 374827 +del ||| the residence ||| 0.111111 0.0732944 2.6679e-06 2.36175e-06 2.718 ||| 0-0 ||| 9 374827 +del ||| the resolution ||| 0.000126936 0.0732944 2.6679e-06 3.03554e-05 2.718 ||| 0-0 ||| 7878 374827 +del ||| the responsibility of the ||| 0.00307692 0.0924045 5.33579e-06 4.1099e-06 2.718 ||| 0-0 0-2 0-3 ||| 650 374827 +del ||| the responsibility ||| 0.000387147 0.0732944 2.6679e-06 4.0115e-05 2.718 ||| 0-0 ||| 2583 374827 +del ||| the rest of the ||| 0.002185 0.10196 8.00369e-06 4.75508e-07 2.718 ||| 0-2 0-3 ||| 1373 374827 +del ||| the result of the ||| 0.00456621 0.10196 8.00369e-06 3.31157e-06 2.718 ||| 0-2 0-3 ||| 657 374827 +del ||| the result of ||| 0.00275103 0.0732944 1.60074e-05 9.9411e-06 2.718 ||| 0-0 ||| 2181 374827 +del ||| the result ||| 0.00162639 0.0732944 1.86753e-05 0.000182862 2.718 ||| 0-0 ||| 4304 374827 +del ||| the results of ||| 0.00043802 0.10196 2.6679e-06 7.92987e-06 2.718 ||| 0-0 0-2 ||| 2283 374827 +del ||| the results ||| 0.000212314 0.0732944 2.6679e-06 2.68822e-05 2.718 ||| 0-0 ||| 4710 374827 +del ||| the reverse charges ||| 0.142857 0.0732944 2.6679e-06 7.41172e-11 2.718 ||| 0-0 ||| 7 374827 +del ||| the reverse ||| 0.00421941 0.0732944 2.6679e-06 3.36896e-06 2.718 ||| 0-0 ||| 237 374827 +del ||| the revision of the ||| 0.00169205 0.0924045 2.6679e-06 4.09211e-07 2.718 ||| 0-0 0-2 0-3 ||| 591 374827 +del ||| the right and the ||| 0.0149254 0.0732944 2.6679e-06 1.72241e-07 2.718 ||| 0-0 ||| 67 374827 +del ||| the right and ||| 0.00505051 0.0732944 2.6679e-06 2.8056e-06 2.718 ||| 0-0 ||| 198 374827 +del ||| the right ||| 9.273e-05 0.0732944 2.6679e-06 0.000223984 2.718 ||| 0-0 ||| 10784 374827 +del ||| the rights of the ||| 0.00116959 0.10196 2.6679e-06 1.25859e-06 2.718 ||| 0-2 0-3 ||| 855 374827 +del ||| the rights of ||| 0.000533333 0.10196 5.33579e-06 2.05009e-05 2.718 ||| 0-0 0-2 ||| 3750 374827 +del ||| the rights ||| 0.000193199 0.0732944 2.6679e-06 6.94979e-05 2.718 ||| 0-0 ||| 5176 374827 +del ||| the rise of ||| 0.00970874 0.0732944 2.6679e-06 2.37151e-06 2.718 ||| 0-0 ||| 103 374827 +del ||| the rise ||| 0.00201207 0.0732944 2.6679e-06 4.36229e-05 2.718 ||| 0-0 ||| 497 374827 +del ||| the risk of ||| 0.000861326 0.0732944 5.33579e-06 2.20913e-06 2.718 ||| 0-0 ||| 2322 374827 +del ||| the risk ||| 0.000318066 0.0732944 2.6679e-06 4.06359e-05 2.718 ||| 0-0 ||| 3144 374827 +del ||| the roads negative effects ||| 0.5 0.0732944 2.6679e-06 5.25155e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| the roads negative ||| 0.5 0.0732944 2.6679e-06 9.67136e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| the roads ||| 0.00240385 0.0732944 2.6679e-06 4.13306e-06 2.718 ||| 0-0 ||| 416 374827 +del ||| the role of the ||| 0.00116347 0.10196 5.33579e-06 1.39633e-06 2.718 ||| 0-2 0-3 ||| 1719 374827 +del ||| the role of ||| 0.000297619 0.130625 2.6679e-06 4.02035e-06 2.718 ||| 0-2 ||| 3360 374827 +del ||| the role ||| 0.000185977 0.0732944 2.6679e-06 7.71041e-05 2.718 ||| 0-0 ||| 5377 374827 +del ||| the rule of ||| 0.000326797 0.10196 2.6679e-06 8.32944e-06 2.718 ||| 0-0 0-2 ||| 3060 374827 +del ||| the rule ||| 0.000272109 0.0732944 2.6679e-06 2.82368e-05 2.718 ||| 0-0 ||| 3675 374827 +del ||| the rules and conditions ||| 0.142857 0.0732944 2.6679e-06 6.04098e-11 2.718 ||| 0-0 ||| 7 374827 +del ||| the rules and ||| 0.00302115 0.0732944 2.6679e-06 5.05521e-07 2.718 ||| 0-0 ||| 331 374827 +del ||| the rules of the ||| 0.00171527 0.10196 2.6679e-06 7.30873e-07 2.718 ||| 0-2 0-3 ||| 583 374827 +del ||| the rules ||| 0.000349101 0.0732944 5.33579e-06 4.03581e-05 2.718 ||| 0-0 ||| 5729 374827 +del ||| the rush hour ||| 0.111111 0.0732944 2.6679e-06 2.8202e-11 2.718 ||| 0-0 ||| 9 374827 +del ||| the rush ||| 0.030303 0.0732944 2.6679e-06 2.01443e-06 2.718 ||| 0-0 ||| 33 374827 +del ||| the safety of the ||| 0.00401606 0.0924045 2.6679e-06 1.80409e-06 2.718 ||| 0-0 0-2 0-3 ||| 249 374827 +del ||| the sake of ||| 0.00178571 0.0732944 5.33579e-06 1.8957e-06 2.718 ||| 0-0 ||| 1120 374827 +del ||| the sake ||| 0.000928505 0.0732944 2.6679e-06 3.48705e-05 2.718 ||| 0-0 ||| 1077 374827 +del ||| the sale of ||| 0.0027027 0.10196 2.6679e-06 1.29091e-06 2.718 ||| 0-0 0-2 ||| 370 374827 +del ||| the same amounts be ||| 1 0.0732944 2.6679e-06 3.06437e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the same amounts ||| 0.2 0.0732944 2.6679e-06 1.69088e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| the same as the outcomes of the ||| 1 0.10196 2.6679e-06 6.97574e-15 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| the same as those of the ||| 0.142857 0.10196 2.6679e-06 3.73986e-11 2.718 ||| 0-4 0-5 ||| 7 374827 +del ||| the same as what happens ||| 0.5 0.0732944 2.6679e-06 2.38896e-13 2.718 ||| 0-0 ||| 2 374827 +del ||| the same as what ||| 0.0909091 0.0732944 2.6679e-06 4.00161e-09 2.718 ||| 0-0 ||| 11 374827 +del ||| the same as ||| 0.00304878 0.0732944 5.33579e-06 2.85198e-06 2.718 ||| 0-0 ||| 656 374827 +del ||| the same time , ||| 0.00121655 0.0732944 2.6679e-06 5.47177e-08 2.718 ||| 0-0 ||| 822 374827 +del ||| the same time a positive verdict from ||| 1 0.0911315 2.6679e-06 3.54511e-20 2.718 ||| 0-6 ||| 1 374827 +del ||| the same time be ||| 0.166667 0.0732944 2.6679e-06 8.31534e-09 2.718 ||| 0-0 ||| 6 374827 +del ||| the same time ||| 0.00182732 0.0732944 1.06716e-05 4.58831e-07 2.718 ||| 0-0 ||| 2189 374827 +del ||| the same way as ||| 0.00248139 0.0732944 2.6679e-06 6.14772e-09 2.718 ||| 0-0 ||| 403 374827 +del ||| the same way ||| 0.00185701 0.0732944 5.33579e-06 6.02458e-07 2.718 ||| 0-0 ||| 1077 374827 +del ||| the same weight ||| 0.037037 0.0732944 2.6679e-06 8.55224e-09 2.718 ||| 0-0 ||| 27 374827 +del ||| the same ||| 0.000738996 0.0732944 4.26864e-05 0.000279485 2.718 ||| 0-0 ||| 21651 374827 +del ||| the satisfaction ||| 0.00934579 0.0732944 2.6679e-06 4.13306e-06 2.718 ||| 0-0 ||| 107 374827 +del ||| the scale of the ||| 0.003003 0.0924045 2.6679e-06 2.08876e-06 2.718 ||| 0-0 0-2 0-3 ||| 333 374827 +del ||| the scope of the ||| 0.00078064 0.10196 2.6679e-06 6.27091e-07 2.718 ||| 0-2 0-3 ||| 1281 374827 +del ||| the scope of ||| 0.001396 0.10196 8.00369e-06 1.02146e-05 2.718 ||| 0-0 0-2 ||| 2149 374827 +del ||| the scope ||| 0.000699301 0.0732944 5.33579e-06 3.46274e-05 2.718 ||| 0-0 ||| 2860 374827 +del ||| the sea ||| 0.00193798 0.0732944 2.6679e-06 1.03847e-05 2.718 ||| 0-0 ||| 516 374827 +del ||| the second event took place ||| 1 0.0732944 2.6679e-06 5.24004e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the second event took ||| 1 0.0732944 2.6679e-06 3.48175e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| the second event ||| 0.2 0.0732944 2.6679e-06 2.36051e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| the second sentence of ||| 0.2 0.10196 2.6679e-06 1.00712e-10 2.718 ||| 0-0 0-3 ||| 5 374827 +del ||| the second subparagraph of ||| 0.142857 0.130625 2.6679e-06 1.29683e-12 2.718 ||| 0-3 ||| 7 374827 +del ||| the second ||| 0.000223864 0.0732944 5.33579e-06 2.26103e-05 2.718 ||| 0-0 ||| 8934 374827 +del ||| the second-hand trade ||| 1 0.0732944 2.6679e-06 1.21005e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the second-hand ||| 0.5 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| the secret ||| 0.0333333 0.0732944 2.6679e-06 3.61208e-06 2.718 ||| 0-0 ||| 30 374827 +del ||| the security of ||| 0.00107991 0.130625 2.6679e-06 1.47956e-06 2.718 ||| 0-2 ||| 926 374827 +del ||| the service of ||| 0.0107527 0.130625 2.6679e-06 1.21154e-06 2.718 ||| 0-2 ||| 93 374827 +del ||| the setting-up of the ||| 0.0322581 0.10196 2.6679e-06 1.38375e-08 2.718 ||| 0-2 0-3 ||| 31 374827 +del ||| the shadow ||| 0.00495049 0.0732944 2.6679e-06 4.75823e-06 2.718 ||| 0-0 ||| 202 374827 +del ||| the shape of ||| 0.0075188 0.0732944 5.33579e-06 1.14233e-06 2.718 ||| 0-0 ||| 266 374827 +del ||| the shape ||| 0.00304878 0.0732944 2.6679e-06 2.10126e-05 2.718 ||| 0-0 ||| 328 374827 +del ||| the share of ||| 0.0100503 0.130625 5.33579e-06 1.69507e-06 2.718 ||| 0-2 ||| 199 374827 +del ||| the short film ||| 1 0.0732944 2.6679e-06 2.30329e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the short ||| 0.000984252 0.0732944 2.6679e-06 4.90063e-05 2.718 ||| 0-0 ||| 1016 374827 +del ||| the shortest period of time ||| 0.5 0.130625 2.6679e-06 3.6316e-15 2.718 ||| 0-3 ||| 2 374827 +del ||| the shortest period of ||| 0.5 0.130625 2.6679e-06 2.2121e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| the shoulders of the ||| 0.05 0.10196 2.6679e-06 9.74916e-08 2.718 ||| 0-2 0-3 ||| 20 374827 +del ||| the shoulders ||| 0.0185185 0.0732944 2.6679e-06 5.38339e-06 2.718 ||| 0-0 ||| 54 374827 +del ||| the signatory ||| 0.142857 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-0 ||| 7 374827 +del ||| the sine qua non for ||| 0.0666667 0.0732944 2.6679e-06 3.1616e-20 2.718 ||| 0-0 ||| 15 374827 +del ||| the sine qua non ||| 0.030303 0.0732944 2.6679e-06 4.11361e-18 2.718 ||| 0-0 ||| 33 374827 +del ||| the sine qua ||| 0.04 0.0732944 2.6679e-06 8.75236e-13 2.718 ||| 0-0 ||| 25 374827 +del ||| the sine ||| 0.0344828 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-0 ||| 29 374827 +del ||| the single currency ||| 0.00070028 0.0732944 2.6679e-06 2.06145e-09 2.718 ||| 0-0 ||| 1428 374827 +del ||| the single market ||| 0.000670241 0.0732944 2.6679e-06 1.24569e-08 2.718 ||| 0-0 ||| 1492 374827 +del ||| the single ||| 0.013986 0.0732944 1.06716e-05 5.5119e-05 2.718 ||| 0-0 ||| 286 374827 +del ||| the site ||| 0.00813008 0.0732944 2.6679e-06 6.63373e-06 2.718 ||| 0-0 ||| 123 374827 +del ||| the sitting ||| 0.000317864 0.0732944 2.6679e-06 2.41384e-05 2.718 ||| 0-0 ||| 3146 374827 +del ||| the situation is ||| 0.000801925 0.0732944 2.6679e-06 5.60591e-06 2.718 ||| 0-0 ||| 1247 374827 +del ||| the situation there ||| 0.00649351 0.0732944 2.6679e-06 5.48283e-07 2.718 ||| 0-0 ||| 154 374827 +del ||| the situation ||| 0.000289134 0.0732944 1.33395e-05 0.000178868 2.718 ||| 0-0 ||| 17293 374827 +del ||| the sluggishness of ||| 0.2 0.0732944 2.6679e-06 7.55259e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| the sluggishness ||| 0.1 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 10 374827 +del ||| the small ||| 0.00239521 0.0732944 5.33579e-06 4.44912e-05 2.718 ||| 0-0 ||| 835 374827 +del ||| the so ||| 0.0454545 0.0732944 2.6679e-06 0.000788303 2.718 ||| 0-0 ||| 22 374827 +del ||| the so-called visa waiver ||| 1 0.0732944 2.6679e-06 8.41727e-17 2.718 ||| 0-0 ||| 1 374827 +del ||| the so-called visa ||| 1 0.0732944 2.6679e-06 4.67626e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the so-called ||| 0.00176678 0.0732944 1.06716e-05 1.29896e-05 2.718 ||| 0-0 ||| 2264 374827 +del ||| the soil ||| 0.00452489 0.160199 2.6679e-06 2.59626e-05 2.718 ||| 0-1 ||| 221 374827 +del ||| the solemn declaration ||| 0.1 0.0732944 2.6679e-06 1.7727e-11 2.718 ||| 0-0 ||| 10 374827 +del ||| the solemn ||| 0.04 0.0732944 2.6679e-06 1.00722e-06 2.718 ||| 0-0 ||| 25 374827 +del ||| the sort of large-scale ||| 1 0.10196 2.6679e-06 1.58808e-10 2.718 ||| 0-0 0-2 ||| 1 374827 +del ||| the sort of ||| 0.00210084 0.10196 2.6679e-06 1.6372e-05 2.718 ||| 0-0 0-2 ||| 476 374827 +del ||| the southern ||| 0.0078125 0.211819 2.6679e-06 5.14463e-05 2.718 ||| 0-1 ||| 128 374827 +del ||| the space weapons ||| 1 0.0732944 2.6679e-06 3.00518e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the space ||| 0.00442478 0.0732944 2.6679e-06 1.43789e-05 2.718 ||| 0-0 ||| 226 374827 +del ||| the speaker ||| 0.000586854 0.0732944 2.6679e-06 6.49481e-06 2.718 ||| 0-0 ||| 1704 374827 +del ||| the specific effects that their policies have ||| 1 0.0732944 2.6679e-06 4.37912e-20 2.718 ||| 0-0 ||| 1 374827 +del ||| the specific effects that their policies ||| 1 0.0732944 2.6679e-06 3.66153e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| the specific effects that their ||| 1 0.0732944 2.6679e-06 5.55619e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| the specific effects that ||| 0.5 0.0732944 2.6679e-06 4.79354e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| the specific effects ||| 0.2 0.0732944 2.6679e-06 2.84963e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| the specific ||| 0.00378788 0.0732944 2.6679e-06 5.24794e-05 2.718 ||| 0-0 ||| 264 374827 +del ||| the spectacle of ||| 0.0454545 0.0732944 2.6679e-06 2.07696e-08 2.718 ||| 0-0 ||| 22 374827 +del ||| the spectacle ||| 0.025 0.0732944 2.6679e-06 3.82047e-07 2.718 ||| 0-0 ||| 40 374827 +del ||| the spirit of ||| 0.00261324 0.130625 8.00369e-06 1.06304e-06 2.718 ||| 0-2 ||| 1148 374827 +del ||| the spirit ||| 0.000561167 0.0732944 2.6679e-06 2.03874e-05 2.718 ||| 0-0 ||| 1782 374827 +del ||| the spot ||| 0.00793651 0.0732944 2.6679e-06 4.75823e-06 2.718 ||| 0-0 ||| 126 374827 +del ||| the stamp of ||| 0.04 0.0732944 2.6679e-06 1.0196e-07 2.718 ||| 0-0 ||| 25 374827 +del ||| the stamp ||| 0.0357143 0.0732944 2.6679e-06 1.87551e-06 2.718 ||| 0-0 ||| 28 374827 +del ||| the standing ||| 0.0243902 0.0732944 2.6679e-06 1.8373e-05 2.718 ||| 0-0 ||| 41 374827 +del ||| the start of the ||| 0.00224215 0.10196 2.6679e-06 8.73651e-07 2.718 ||| 0-2 0-3 ||| 446 374827 +del ||| the start ||| 0.000587199 0.0732944 2.6679e-06 4.82422e-05 2.718 ||| 0-0 ||| 1703 374827 +del ||| the starting point of ||| 0.0285714 0.130625 2.6679e-06 7.23996e-10 2.718 ||| 0-3 ||| 35 374827 +del ||| the state of the ||| 0.00573066 0.130625 5.33579e-06 2.80837e-07 2.718 ||| 0-2 ||| 349 374827 +del ||| the state of ||| 0.000877963 0.130625 2.6679e-06 4.57451e-06 2.718 ||| 0-2 ||| 1139 374827 +del ||| the state ||| 0.000892459 0.0732944 5.33579e-06 8.7732e-05 2.718 ||| 0-0 ||| 2241 374827 +del ||| the statement ||| 0.00130208 0.0732944 5.33579e-06 2.5875e-05 2.718 ||| 0-0 ||| 1536 374827 +del ||| the stock is ||| 0.111111 0.0732944 2.6679e-06 2.89548e-07 2.718 ||| 0-0 ||| 9 374827 +del ||| the stock ||| 0.00662252 0.0732944 2.6679e-06 9.2386e-06 2.718 ||| 0-0 ||| 151 374827 +del ||| the strict ||| 0.00584795 0.0368106 2.6679e-06 4.51511e-07 2.718 ||| 0-0 0-1 ||| 171 374827 +del ||| the strong emphasis ||| 0.111111 0.0732944 2.6679e-06 1.50679e-09 2.718 ||| 0-0 ||| 9 374827 +del ||| the strong ||| 0.00195312 0.0732944 2.6679e-06 2.94871e-05 2.718 ||| 0-0 ||| 512 374827 +del ||| the subject of a ||| 0.00373134 0.130625 2.6679e-06 4.33312e-07 2.718 ||| 0-2 ||| 268 374827 +del ||| the subject of the Law ||| 1 0.130625 2.6679e-06 5.16122e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| the subject of the ||| 0.0115512 0.0924045 1.86753e-05 1.9208e-05 2.718 ||| 0-0 0-2 0-3 ||| 606 374827 +del ||| the subject of this report ||| 0.025 0.130625 2.6679e-06 2.5891e-11 2.718 ||| 0-2 ||| 40 374827 +del ||| the subject of this ||| 0.00763359 0.130625 2.6679e-06 6.31641e-08 2.718 ||| 0-2 ||| 131 374827 +del ||| the subject of ||| 0.00260794 0.130625 2.40111e-05 9.77561e-06 2.718 ||| 0-2 ||| 3451 374827 +del ||| the subject ||| 0.000716332 0.0732944 1.06716e-05 0.000187481 2.718 ||| 0-0 ||| 5584 374827 +del ||| the substitution ||| 0.02 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-0 ||| 50 374827 +del ||| the successor ||| 0.047619 0.0732944 5.33579e-06 1.38926e-06 2.718 ||| 0-0 ||| 42 374827 +del ||| the summer of ||| 0.00892857 0.130625 2.6679e-06 1.43067e-07 2.718 ||| 0-2 ||| 112 374827 +del ||| the summer ||| 0.00187617 0.0732944 2.6679e-06 2.74379e-06 2.718 ||| 0-0 ||| 533 374827 +del ||| the sun - has ||| 1 0.0732944 2.6679e-06 1.21388e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the sun - ||| 1 0.0732944 2.6679e-06 2.3582e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| the sun ||| 0.00961538 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-0 ||| 104 374827 +del ||| the support of the ||| 0.00104058 0.10196 2.6679e-06 2.15048e-06 2.718 ||| 0-2 0-3 ||| 961 374827 +del ||| the support of ||| 0.000633714 0.10196 2.6679e-06 3.50287e-05 2.718 ||| 0-0 0-2 ||| 1578 374827 +del ||| the support ||| 0.000611621 0.0732944 5.33579e-06 0.000118747 2.718 ||| 0-0 ||| 3270 374827 +del ||| the supposed ||| 0.00775194 0.0732944 2.6679e-06 2.03874e-05 2.718 ||| 0-0 ||| 129 374827 +del ||| the surface to ||| 1 0.0732944 2.6679e-06 3.88859e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| the surface ||| 0.00689655 0.0732944 2.6679e-06 4.37618e-06 2.718 ||| 0-0 ||| 145 374827 +del ||| the suspension of ||| 0.00408163 0.130625 2.6679e-06 7.24388e-08 2.718 ||| 0-2 ||| 245 374827 +del ||| the system ||| 0.000299312 0.0732944 2.6679e-06 9.68664e-05 2.718 ||| 0-0 ||| 3341 374827 +del ||| the table - ||| 0.0588235 0.0732944 2.6679e-06 8.86944e-08 2.718 ||| 0-0 ||| 17 374827 +del ||| the table ||| 0.000620347 0.0732944 2.6679e-06 2.35133e-05 2.718 ||| 0-0 ||| 1612 374827 +del ||| the tactics used in the last war ||| 0.125 0.0458111 2.6679e-06 1.21919e-20 2.718 ||| 0-3 0-4 ||| 8 374827 +del ||| the tactics used in the last ||| 0.125 0.0458111 2.6679e-06 3.28623e-16 2.718 ||| 0-3 0-4 ||| 8 374827 +del ||| the tactics used in the ||| 0.125 0.0458111 2.6679e-06 1.50468e-12 2.718 ||| 0-3 0-4 ||| 8 374827 +del ||| the talks ||| 0.00175439 0.0732944 2.6679e-06 9.13441e-06 2.718 ||| 0-0 ||| 570 374827 +del ||| the target of ||| 0.00367647 0.130625 2.6679e-06 6.84546e-07 2.718 ||| 0-2 ||| 272 374827 +del ||| the target ||| 0.00172712 0.0732944 2.6679e-06 1.31285e-05 2.718 ||| 0-0 ||| 579 374827 +del ||| the task of ||| 0.00119048 0.130625 2.6679e-06 2.28182e-06 2.718 ||| 0-2 ||| 840 374827 +del ||| the task ||| 0.00128041 0.0732944 5.33579e-06 4.37618e-05 2.718 ||| 0-0 ||| 1562 374827 +del ||| the temporary ||| 0.04 0.0732944 2.6679e-06 5.38339e-06 2.718 ||| 0-0 ||| 25 374827 +del ||| the term ||| 0.00313808 0.0732944 8.00369e-06 3.79963e-05 2.718 ||| 0-0 ||| 956 374827 +del ||| the terms of the ||| 0.00301205 0.0924045 2.6679e-06 3.90565e-05 2.718 ||| 0-0 0-2 0-3 ||| 332 374827 +del ||| the terms of ||| 0.0157303 0.10196 1.86753e-05 0.000112453 2.718 ||| 0-0 0-2 ||| 445 374827 +del ||| the terms ||| 0.00660377 0.0732944 1.86753e-05 0.000381214 2.718 ||| 0-0 ||| 1060 374827 +del ||| the text of the ||| 0.00148368 0.10196 2.6679e-06 5.43437e-07 2.718 ||| 0-2 0-3 ||| 674 374827 +del ||| the text ||| 0.000682594 0.0732944 8.00369e-06 3.00081e-05 2.718 ||| 0-0 ||| 4395 374827 +del ||| the then ||| 0.00495049 0.0732944 2.6679e-06 0.000559317 2.718 ||| 0-0 ||| 202 374827 +del ||| the thing that ||| 0.0232558 0.0732944 2.6679e-06 2.13189e-06 2.718 ||| 0-0 ||| 43 374827 +del ||| the thing ||| 0.0123457 0.0732944 2.6679e-06 0.000126736 2.718 ||| 0-0 ||| 81 374827 +del ||| the things which are ||| 0.142857 0.0732944 2.6679e-06 1.83981e-08 2.718 ||| 0-0 ||| 7 374827 +del ||| the things which ||| 0.0181818 0.0732944 2.6679e-06 1.21258e-06 2.718 ||| 0-0 ||| 55 374827 +del ||| the things ||| 0.00119332 0.0732944 2.6679e-06 0.000142747 2.718 ||| 0-0 ||| 838 374827 +del ||| the time , ||| 0.00194175 0.0732944 2.6679e-06 6.79976e-05 2.718 ||| 0-0 ||| 515 374827 +del ||| the time being , of ||| 0.5 0.130625 2.6679e-06 1.00899e-08 2.718 ||| 0-4 ||| 2 374827 +del ||| the time factor ||| 0.0769231 0.0732944 2.6679e-06 2.77112e-08 2.718 ||| 0-0 ||| 13 374827 +del ||| the time of the ||| 0.0047619 0.0732944 5.33579e-06 1.90301e-06 2.718 ||| 0-0 ||| 420 374827 +del ||| the time of ||| 0.00117786 0.0732944 2.6679e-06 3.09977e-05 2.718 ||| 0-0 ||| 849 374827 +del ||| the time the ||| 0.0126582 0.0732944 2.6679e-06 3.50049e-05 2.718 ||| 0-2 ||| 79 374827 +del ||| the time when the customer has ||| 1 0.0732944 2.6679e-06 2.88243e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the time when the customer ||| 1 0.0732944 2.6679e-06 5.59966e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| the time when the ||| 0.0322581 0.0732944 2.6679e-06 1.74989e-08 2.718 ||| 0-0 ||| 31 374827 +del ||| the time when ||| 0.00295858 0.0732944 2.6679e-06 2.85037e-07 2.718 ||| 0-0 ||| 338 374827 +del ||| the time ||| 0.00137174 0.0732944 2.6679e-05 0.000570188 2.718 ||| 0-0 ||| 7290 374827 +del ||| the timetable ||| 0.0013947 0.0732944 2.6679e-06 2.74379e-06 2.718 ||| 0-0 ||| 717 374827 +del ||| the timing ||| 0.00346021 0.0732944 2.6679e-06 1.73658e-06 2.718 ||| 0-0 ||| 289 374827 +del ||| the total cost ||| 0.0185185 0.0732944 2.6679e-06 2.71186e-09 2.718 ||| 0-0 ||| 54 374827 +del ||| the total ||| 0.00371058 0.0732944 5.33579e-06 3.27519e-05 2.718 ||| 0-0 ||| 539 374827 +del ||| the town was the ||| 0.333333 0.0732944 2.6679e-06 8.41717e-10 2.718 ||| 0-3 ||| 3 374827 +del ||| the trade ||| 0.00168067 0.0732944 2.6679e-06 3.02512e-05 2.718 ||| 0-0 ||| 595 374827 +del ||| the train ||| 0.00729927 0.0732944 2.6679e-06 6.00856e-06 2.718 ||| 0-0 ||| 137 374827 +del ||| the training ||| 0.00215983 0.0732944 2.6679e-06 1.22602e-05 2.718 ||| 0-0 ||| 463 374827 +del ||| the transition ||| 0.00151745 0.0732944 2.6679e-06 3.36896e-06 2.718 ||| 0-0 ||| 659 374827 +del ||| the transport ||| 0.00296736 0.0732944 5.33579e-06 3.57388e-05 2.718 ||| 0-0 ||| 674 374827 +del ||| the treatment of ||| 0.00423729 0.0732944 5.33579e-06 1.14233e-06 2.718 ||| 0-0 ||| 472 374827 +del ||| the treatment ||| 0.001287 0.0732944 2.6679e-06 2.10126e-05 2.718 ||| 0-0 ||| 777 374827 +del ||| the treaty , as amended by the ||| 1 0.0732944 2.6679e-06 3.86941e-17 2.718 ||| 0-6 ||| 1 374827 +del ||| the trend in the ||| 0.0714286 0.0732944 2.6679e-06 7.71306e-09 2.718 ||| 0-0 ||| 14 374827 +del ||| the trend in ||| 0.0185185 0.0732944 2.6679e-06 1.25637e-07 2.718 ||| 0-0 ||| 54 374827 +del ||| the trend ||| 0.00280899 0.0732944 2.6679e-06 5.86964e-06 2.718 ||| 0-0 ||| 356 374827 +del ||| the tropics ||| 0.1 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 10 374827 +del ||| the truth finally dawned on the last ||| 1 0.0732944 2.6679e-06 6.28954e-23 2.718 ||| 0-0 ||| 1 374827 +del ||| the truth finally dawned on the ||| 1 0.0732944 2.6679e-06 2.87983e-19 2.718 ||| 0-0 ||| 1 374827 +del ||| the truth finally dawned on ||| 1 0.0732944 2.6679e-06 4.6909e-18 2.718 ||| 0-0 ||| 1 374827 +del ||| the truth finally dawned ||| 1 0.0732944 2.6679e-06 7.01076e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the truth finally ||| 1 0.0732944 2.6679e-06 1.00154e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| the truth ||| 0.000558347 0.0732944 2.6679e-06 8.50924e-06 2.718 ||| 0-0 ||| 1791 374827 +del ||| the tsarist ||| 1 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| the turn ||| 0.00847458 0.0732944 2.6679e-06 7.78682e-05 2.718 ||| 0-0 ||| 118 374827 +del ||| the two aims ||| 0.0555556 0.0732944 2.6679e-06 3.27601e-09 2.718 ||| 0-0 ||| 18 374827 +del ||| the two sides of ||| 0.00833333 0.10196 2.6679e-06 8.88871e-10 2.718 ||| 0-0 0-3 ||| 120 374827 +del ||| the two ||| 0.000152486 0.0732944 2.6679e-06 8.21055e-05 2.718 ||| 0-0 ||| 6558 374827 +del ||| the twofold ||| 0.047619 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 21 374827 +del ||| the type of ||| 0.00230947 0.130625 2.6679e-06 2.11883e-06 2.718 ||| 0-2 ||| 433 374827 +del ||| the type ||| 0.00184162 0.0732944 2.6679e-06 4.06359e-05 2.718 ||| 0-0 ||| 543 374827 +del ||| the ultimate responsibility rests ||| 0.333333 0.0732944 2.6679e-06 1.0831e-15 2.718 ||| 0-0 ||| 3 374827 +del ||| the ultimate responsibility ||| 0.047619 0.0732944 2.6679e-06 4.33242e-10 2.718 ||| 0-0 ||| 21 374827 +del ||| the ultimate ||| 0.00505051 0.0732944 2.6679e-06 3.75101e-06 2.718 ||| 0-0 ||| 198 374827 +del ||| the unbridled pursuit ||| 0.5 0.0732944 2.6679e-06 1.55042e-11 2.718 ||| 0-0 ||| 2 374827 +del ||| the unbridled ||| 0.142857 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-0 ||| 7 374827 +del ||| the undisguised ||| 0.5 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-0 ||| 2 374827 +del ||| the undoubtably ||| 1 0.0732944 2.6679e-06 1.38926e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| the upsurge in electoral ||| 0.2 0.0732944 2.6679e-06 8.16266e-14 2.718 ||| 0-0 ||| 5 374827 +del ||| the upsurge in ||| 0.0714286 0.0732944 2.6679e-06 1.33814e-08 2.718 ||| 0-0 ||| 14 374827 +del ||| the upsurge ||| 0.047619 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-0 ||| 21 374827 +del ||| the use of ||| 0.000151883 0.130625 2.6679e-06 8.80493e-06 2.718 ||| 0-2 ||| 6584 374827 +del ||| the usual scope ||| 1 0.0732944 2.6679e-06 5.99054e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the usual ||| 0.00564972 0.0732944 2.6679e-06 6.00856e-06 2.718 ||| 0-0 ||| 177 374827 +del ||| the validity ||| 0.00381679 0.0732944 2.6679e-06 1.00722e-06 2.718 ||| 0-0 ||| 262 374827 +del ||| the value of the ||| 0.0045045 0.10196 2.6679e-06 5.52243e-07 2.718 ||| 0-2 0-3 ||| 222 374827 +del ||| the various classes ||| 0.166667 0.0732944 2.6679e-06 3.11028e-10 2.718 ||| 0-0 ||| 6 374827 +del ||| the various ||| 0.000149745 0.0732944 2.6679e-06 5.36256e-05 2.718 ||| 0-0 ||| 6678 374827 +del ||| the verbatim report of ||| 0.03125 0.130625 2.6679e-06 1.33617e-11 2.718 ||| 0-3 ||| 32 374827 +del ||| the very beginning ||| 0.00485437 0.0732944 2.6679e-06 4.91854e-08 2.718 ||| 0-0 ||| 206 374827 +del ||| the very conditions ||| 0.1 0.0732944 2.6679e-06 1.44414e-07 2.718 ||| 0-0 ||| 10 374827 +del ||| the very thing which ||| 0.5 0.0732944 2.6679e-06 3.74592e-09 2.718 ||| 0-0 ||| 2 374827 +del ||| the very thing ||| 0.037037 0.0732944 2.6679e-06 4.40976e-07 2.718 ||| 0-0 ||| 27 374827 +del ||| the very ||| 0.00498034 0.0732944 5.06901e-05 0.00120849 2.718 ||| 0-0 ||| 3815 374827 +del ||| the vessel round ||| 1 0.0732944 2.6679e-06 1.73154e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| the vessel ||| 0.0123457 0.0732944 2.6679e-06 2.25755e-06 2.718 ||| 0-0 ||| 81 374827 +del ||| the victim of ||| 0.00621118 0.0732944 2.6679e-06 3.39867e-07 2.718 ||| 0-0 ||| 161 374827 +del ||| the victim ||| 0.00265957 0.0732944 2.6679e-06 6.25168e-06 2.718 ||| 0-0 ||| 376 374827 +del ||| the victims of ||| 0.000711744 0.130625 2.6679e-06 6.39272e-07 2.718 ||| 0-2 ||| 1405 374827 +del ||| the victims ||| 0.000343525 0.0732944 2.6679e-06 1.22602e-05 2.718 ||| 0-0 ||| 2911 374827 +del ||| the view ||| 0.000585309 0.0732944 5.33579e-06 0.00031373 2.718 ||| 0-0 ||| 3417 374827 +del ||| the views ||| 0.000898473 0.0732944 2.6679e-06 2.82368e-05 2.718 ||| 0-0 ||| 1113 374827 +del ||| the virtues of ||| 0.0163934 0.130625 2.6679e-06 3.25974e-08 2.718 ||| 0-2 ||| 61 374827 +del ||| the voice of ||| 0.00359712 0.10196 2.6679e-06 4.45671e-06 2.718 ||| 0-0 0-2 ||| 278 374827 +del ||| the voluntary sector in the United ||| 0.333333 0.0732944 2.6679e-06 1.3797e-16 2.718 ||| 0-0 ||| 3 374827 +del ||| the voluntary sector in the ||| 0.333333 0.0732944 2.6679e-06 1.12721e-12 2.718 ||| 0-0 ||| 3 374827 +del ||| the voluntary sector in ||| 0.2 0.0732944 2.6679e-06 1.83609e-11 2.718 ||| 0-0 ||| 5 374827 +del ||| the voluntary sector ||| 0.0208333 0.0732944 2.6679e-06 8.57804e-10 2.718 ||| 0-0 ||| 48 374827 +del ||| the voluntary ||| 0.0333333 0.0732944 2.6679e-06 4.6193e-06 2.718 ||| 0-0 ||| 30 374827 +del ||| the vote the ||| 0.0263158 0.0732944 2.6679e-06 3.354e-06 2.718 ||| 0-2 ||| 38 374827 +del ||| the vote would last about one hour ||| 1 0.0732944 2.6679e-06 5.7789e-21 2.718 ||| 0-0 ||| 1 374827 +del ||| the vote would last about one ||| 1 0.0732944 2.6679e-06 4.12778e-16 2.718 ||| 0-0 ||| 1 374827 +del ||| the vote would last about ||| 1 0.0732944 2.6679e-06 9.90351e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| the vote would last ||| 1 0.0732944 2.6679e-06 7.00241e-11 2.718 ||| 0-0 ||| 1 374827 +del ||| the vote would ||| 0.333333 0.0732944 2.6679e-06 3.20623e-07 2.718 ||| 0-0 ||| 3 374827 +del ||| the vote ||| 0.000151837 0.0732944 5.33579e-06 5.46328e-05 2.718 ||| 0-0 ||| 13172 374827 +del ||| the wake of ||| 0.00323625 0.130625 2.6679e-06 4.31011e-07 2.718 ||| 0-2 ||| 309 374827 +del ||| the war ||| 0.000541712 0.0732944 2.6679e-06 1.28854e-05 2.718 ||| 0-0 ||| 1846 374827 +del ||| the was ||| 0.333333 0.0732944 2.6679e-06 0.00108814 2.718 ||| 0-0 ||| 3 374827 +del ||| the water ||| 0.00403226 0.0732944 2.6679e-06 1.97623e-05 2.718 ||| 0-0 ||| 248 374827 +del ||| the way in which it is ||| 0.025641 0.0732944 2.6679e-06 7.58691e-11 2.718 ||| 0-0 ||| 39 374827 +del ||| the way in which it ||| 0.0172414 0.0732944 2.6679e-06 2.42075e-09 2.718 ||| 0-0 ||| 58 374827 +del ||| the way in which we approach ||| 0.2 0.0732944 2.6679e-06 3.38739e-13 2.718 ||| 0-0 ||| 5 374827 +del ||| the way in which we ||| 0.00980392 0.0732944 2.6679e-06 1.54534e-09 2.718 ||| 0-0 ||| 102 374827 +del ||| the way in which ||| 0.000754717 0.0732944 5.33579e-06 1.36126e-07 2.718 ||| 0-0 ||| 2650 374827 +del ||| the way in ||| 0.00102041 0.0732944 8.00369e-06 1.6025e-05 2.718 ||| 0-0 ||| 2940 374827 +del ||| the way of the ||| 0.0128205 0.10196 2.6679e-06 1.35583e-05 2.718 ||| 0-2 0-3 ||| 78 374827 +del ||| the way of ||| 0.00218341 0.130625 2.6679e-06 3.90372e-05 2.718 ||| 0-2 ||| 458 374827 +del ||| the way that ||| 0.00253807 0.0732944 2.6679e-06 1.25939e-05 2.718 ||| 0-0 ||| 394 374827 +del ||| the way through ||| 0.0526316 0.0732944 2.6679e-06 3.44615e-07 2.718 ||| 0-0 ||| 19 374827 +del ||| the way to ||| 0.000992064 0.0732944 2.6679e-06 6.65258e-05 2.718 ||| 0-0 ||| 1008 374827 +del ||| the way ||| 0.0012382 0.0732944 4.26864e-05 0.000748674 2.718 ||| 0-0 ||| 12922 374827 +del ||| the wearing ||| 0.0588235 0.0732944 2.6679e-06 2.6396e-06 2.718 ||| 0-0 ||| 17 374827 +del ||| the weekend ||| 0.0078125 0.0732944 2.6679e-06 8.6829e-07 2.718 ||| 0-0 ||| 128 374827 +del ||| the welfare ||| 0.00293255 0.0732944 2.6679e-06 4.6193e-06 2.718 ||| 0-0 ||| 341 374827 +del ||| the whole idea of the ||| 0.125 0.0924045 2.6679e-06 4.51306e-09 2.718 ||| 0-0 0-3 0-4 ||| 8 374827 +del ||| the whole of the ||| 0.00137363 0.0924045 2.6679e-06 2.01296e-05 2.718 ||| 0-0 0-2 0-3 ||| 728 374827 +del ||| the whole of ||| 0.00115407 0.130625 5.33579e-06 1.02447e-05 2.718 ||| 0-2 ||| 1733 374827 +del ||| the whole way ||| 0.0666667 0.0732944 2.6679e-06 4.23525e-07 2.718 ||| 0-0 ||| 15 374827 +del ||| the whole ||| 0.00274443 0.0732944 6.40295e-05 0.000196477 2.718 ||| 0-0 ||| 8745 374827 +del ||| the wider ||| 0.00630915 0.0732944 5.33579e-06 9.86377e-06 2.718 ||| 0-0 ||| 317 374827 +del ||| the widespread ||| 0.00729927 0.0732944 2.6679e-06 7.74514e-06 2.718 ||| 0-0 ||| 137 374827 +del ||| the will of the ||| 0.00414079 0.130625 5.33579e-06 9.61829e-06 2.718 ||| 0-2 ||| 483 374827 +del ||| the will of ||| 0.0018315 0.130625 2.6679e-06 0.000156671 2.718 ||| 0-2 ||| 546 374827 +del ||| the will ||| 0.000832639 0.0732944 2.6679e-06 0.0030047 2.718 ||| 0-0 ||| 1201 374827 +del ||| the willingness to take the ||| 0.5 0.0732944 2.6679e-06 2.24345e-10 2.718 ||| 0-0 0-4 ||| 2 374827 +del ||| the winner ||| 0.010989 0.0732944 2.6679e-06 3.88994e-06 2.718 ||| 0-0 ||| 91 374827 +del ||| the wishes of ||| 0.00503778 0.130625 5.33579e-06 9.58003e-07 2.718 ||| 0-2 ||| 397 374827 +del ||| the with ||| 0.333333 0.0389112 2.6679e-06 0.000661011 2.718 ||| 0-0 0-1 ||| 3 374827 +del ||| the word ' ||| 0.00145985 0.0513318 2.6679e-06 1.67877e-07 2.718 ||| 0-0 0-2 ||| 685 374827 +del ||| the word ||| 0.000652316 0.0732944 2.6679e-06 3.53567e-05 2.718 ||| 0-0 ||| 1533 374827 +del ||| the words " ||| 0.0172414 0.0732944 2.6679e-06 1.85872e-08 2.718 ||| 0-0 ||| 58 374827 +del ||| the words of ||| 0.00181818 0.10196 2.6679e-06 2.31544e-05 2.718 ||| 0-0 0-2 ||| 550 374827 +del ||| the words ||| 0.00127959 0.0732944 5.33579e-06 7.84934e-05 2.718 ||| 0-0 ||| 1563 374827 +del ||| the work done on the ||| 0.1 0.0436809 2.6679e-06 6.03617e-11 2.718 ||| 0-3 0-4 ||| 10 374827 +del ||| the work of the various ||| 0.2 0.10196 2.6679e-06 6.14733e-10 2.718 ||| 0-2 0-3 ||| 5 374827 +del ||| the work of the ||| 0.00108637 0.10196 5.33579e-06 3.98143e-06 2.718 ||| 0-2 0-3 ||| 1841 374827 +del ||| the work of ||| 0.000402253 0.0732944 2.6679e-06 1.1952e-05 2.718 ||| 0-0 ||| 2486 374827 +del ||| the work ||| 0.000379891 0.0732944 8.00369e-06 0.000219851 2.718 ||| 0-0 ||| 7897 374827 +del ||| the world outside the ||| 0.125 0.0732944 2.6679e-06 1.93803e-10 2.718 ||| 0-0 ||| 8 374827 +del ||| the world outside ||| 0.027027 0.0732944 2.6679e-06 3.15683e-09 2.718 ||| 0-0 ||| 37 374827 +del ||| the world ||| 0.000672172 0.0732944 1.86753e-05 7.91185e-05 2.718 ||| 0-0 ||| 10414 374827 +del ||| the world ’ s ||| 0.0416667 0.16804 2.6679e-06 2.55199e-10 2.718 ||| 0-3 ||| 24 374827 +del ||| the year 2000 ||| 0.00131062 0.0732944 2.6679e-06 2.49467e-09 2.718 ||| 0-0 ||| 763 374827 +del ||| the year ||| 0.00240746 0.0732944 2.13432e-05 8.66206e-05 2.718 ||| 0-0 ||| 3323 374827 +del ||| the years ||| 0.000601685 0.0732944 2.6679e-06 5.91131e-05 2.718 ||| 0-0 ||| 1662 374827 +del ||| the ||| 0.0187871 0.0732944 0.169452 0.347316 2.718 ||| 0-0 ||| 3.38078e+06 374827 +del ||| the ‘ ||| 0.00425532 0.0732944 8.00369e-06 3.90036e-05 2.718 ||| 0-0 ||| 705 374827 +del ||| theLisbon ||| 1 1 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1 374827 +del ||| theatre of the highest degree ||| 0.166667 0.130625 2.6679e-06 3.86262e-17 2.718 ||| 0-1 ||| 6 374827 +del ||| theatre of the highest ||| 0.166667 0.130625 2.6679e-06 2.78889e-13 2.718 ||| 0-1 ||| 6 374827 +del ||| theatre of the ||| 0.0769231 0.130625 2.6679e-06 1.26768e-08 2.718 ||| 0-1 ||| 13 374827 +del ||| theatre of ||| 0.037037 0.130625 2.6679e-06 2.0649e-07 2.718 ||| 0-1 ||| 27 374827 +del ||| their acceptance of ||| 0.166667 0.130625 2.6679e-06 4.1714e-09 2.718 ||| 0-2 ||| 6 374827 +del ||| their driving ||| 0.166667 0.0169492 2.6679e-06 6.85028e-08 2.718 ||| 0-1 ||| 6 374827 +del ||| their failure to act by the ||| 1 0.0461582 2.6679e-06 8.12967e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| their failure to act by ||| 1 0.0461582 2.6679e-06 1.32423e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| their hands in the ||| 1 0.0458111 2.6679e-06 1.09428e-09 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| their living from the ||| 0.285714 0.082213 5.33579e-06 7.3116e-10 2.718 ||| 0-2 0-3 ||| 7 374827 +del ||| their ratification of the ||| 0.5 0.10196 2.6679e-06 5.93767e-10 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| their respective sports ||| 0.5 0.0321691 2.6679e-06 1.7062e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| their ||| 0.000653718 0.0012173 0.000176081 0.0001589 2.718 ||| 0-0 ||| 100961 374827 +del ||| them , in ||| 0.0153846 0.0183279 2.6679e-06 8.62625e-06 2.718 ||| 0-2 ||| 65 374827 +del ||| them aware of ||| 0.2 0.130625 2.6679e-06 1.09907e-07 2.718 ||| 0-2 ||| 5 374827 +del ||| them by putting ||| 1 0.0461582 2.6679e-06 4.85354e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| them by the European ||| 1 0.0420896 2.6679e-06 4.62599e-08 2.718 ||| 0-1 0-2 0-3 ||| 1 374827 +del ||| them by the ||| 0.0645161 0.0597263 5.33579e-06 1.50644e-05 2.718 ||| 0-1 0-2 ||| 31 374827 +del ||| them by ||| 0.0129032 0.0461582 5.33579e-06 4.33739e-05 2.718 ||| 0-1 ||| 155 374827 +del ||| them from doing so ||| 0.333333 0.0911315 2.6679e-06 4.84395e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| them from doing ||| 1 0.0911315 2.6679e-06 2.13418e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| them from the ||| 0.125 0.082213 8.00369e-06 2.01916e-05 2.718 ||| 0-1 0-2 ||| 24 374827 +del ||| them from ||| 0.0118343 0.0911315 5.33579e-06 5.81362e-05 2.718 ||| 0-1 ||| 169 374827 +del ||| them in her ||| 0.5 0.0183279 2.6679e-06 1.96823e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| them in ||| 0.00105708 0.0183279 2.6679e-06 7.23347e-05 2.718 ||| 0-1 ||| 946 374827 +del ||| them is the winner ||| 1 0.0732944 2.6679e-06 3.27025e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| them is the ||| 0.0217391 0.0732944 2.6679e-06 2.91986e-05 2.718 ||| 0-2 ||| 46 374827 +del ||| them of the ||| 0.0555556 0.10196 2.6679e-06 0.00027482 2.718 ||| 0-1 0-2 ||| 18 374827 +del ||| them of ||| 0.0181818 0.130625 2.6679e-06 0.000791269 2.718 ||| 0-1 ||| 55 374827 +del ||| them the ||| 0.0120482 0.0732944 8.00369e-06 0.00093164 2.718 ||| 0-1 ||| 249 374827 +del ||| them up ||| 0.016129 0.0020886 2.6679e-06 5.07242e-07 2.718 ||| 0-1 ||| 62 374827 +del ||| themes of the ||| 0.130435 0.10196 8.00369e-06 3.68831e-07 2.718 ||| 0-1 0-2 ||| 23 374827 +del ||| themselves of ||| 0.025641 0.130625 2.6679e-06 0.000126755 2.718 ||| 0-1 ||| 39 374827 +del ||| themselves the ||| 0.025641 0.0732944 2.6679e-06 0.000149242 2.718 ||| 0-1 ||| 39 374827 +del ||| then , of the ||| 0.111111 0.10196 2.6679e-06 1.96759e-05 2.718 ||| 0-2 0-3 ||| 9 374827 +del ||| then be provided with the ||| 0.5 0.0732944 2.6679e-06 1.48562e-11 2.718 ||| 0-4 ||| 2 374827 +del ||| then by ||| 0.0175439 0.0461582 2.6679e-06 2.60398e-05 2.718 ||| 0-1 ||| 57 374827 +del ||| then of ||| 0.0384615 0.130625 5.33579e-06 0.000475045 2.718 ||| 0-1 ||| 52 374827 +del ||| then on ||| 0.00952381 0.0140673 2.6679e-06 1.5794e-05 2.718 ||| 0-1 ||| 105 374827 +del ||| then selects the ||| 1 0.0732944 2.6679e-06 2.23727e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| then the ||| 0.0028777 0.0732944 1.06716e-05 0.000559317 2.718 ||| 0-1 ||| 1390 374827 +del ||| there are many different types of ||| 0.2 0.130625 2.6679e-06 4.78111e-17 2.718 ||| 0-5 ||| 5 374827 +del ||| there being a ||| 0.016129 0.0008087 2.6679e-06 7.36677e-09 2.718 ||| 0-2 ||| 62 374827 +del ||| there by the ||| 0.125 0.0597263 2.6679e-06 1.72148e-05 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| there in the ||| 0.0533333 0.0458111 1.06716e-05 2.87092e-05 2.718 ||| 0-1 0-2 ||| 75 374827 +del ||| there is a ||| 8.89759e-05 0.0008087 2.6679e-06 8.1131e-08 2.718 ||| 0-2 ||| 11239 374827 +del ||| there is also the ||| 0.00251889 0.0732944 2.6679e-06 1.68455e-07 2.718 ||| 0-3 ||| 397 374827 +del ||| there is an ||| 0.00113766 0.0008398 5.33579e-06 1.7283e-08 2.718 ||| 0-2 ||| 1758 374827 +del ||| there is for ||| 0.0344828 0.0138653 2.6679e-06 1.03356e-06 2.718 ||| 0-2 ||| 29 374827 +del ||| there is substantial ||| 0.333333 0.0014577 2.6679e-06 7.58952e-10 2.718 ||| 0-2 ||| 3 374827 +del ||| there is the ||| 0.00125945 0.0732944 5.33579e-06 3.33666e-05 2.718 ||| 0-2 ||| 1588 374827 +del ||| there was a ||| 0.000721501 0.0008087 2.6679e-06 8.11023e-09 2.718 ||| 0-2 ||| 1386 374827 +del ||| there was the ||| 0.00613497 0.0732944 2.6679e-06 3.33548e-06 2.718 ||| 0-2 ||| 163 374827 +del ||| therefore , for ||| 0.00719424 0.0138653 2.6679e-06 1.07296e-06 2.718 ||| 0-2 ||| 139 374827 +del ||| therefore , in the ||| 0.0128205 0.0458111 2.6679e-06 9.34082e-07 2.718 ||| 0-2 0-3 ||| 78 374827 +del ||| therefore , the ||| 0.000953289 0.0732944 2.6679e-06 3.46387e-05 2.718 ||| 0-2 ||| 1049 374827 +del ||| therefore from the ||| 0.25 0.082213 2.6679e-06 6.2952e-06 2.718 ||| 0-1 0-2 ||| 4 374827 +del ||| therefore indeed the ||| 1 0.0732944 2.6679e-06 2.2014e-07 2.718 ||| 0-2 ||| 1 374827 +del ||| therefore the ||| 0.00158983 0.0732944 2.6679e-06 0.00029046 2.718 ||| 0-1 ||| 629 374827 +del ||| these countries ' ||| 0.0188679 0.0293692 2.6679e-06 1.86974e-09 2.718 ||| 0-2 ||| 53 374827 +del ||| these countries from the ||| 0.5 0.082213 2.6679e-06 2.96421e-09 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| these from the ||| 0.142857 0.082213 2.6679e-06 7.80671e-06 2.718 ||| 0-1 0-2 ||| 7 374827 +del ||| these gross distortions of ||| 1 0.130625 2.6679e-06 1.09186e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| these individuals to ||| 0.2 0.0006066 2.6679e-06 4.47075e-11 2.718 ||| 0-2 ||| 5 374827 +del ||| they are , namely the ||| 1 0.0732944 2.6679e-06 3.27786e-10 2.718 ||| 0-4 ||| 1 374827 +del ||| they are in the ||| 0.0117647 0.0458111 2.6679e-06 4.63832e-07 2.718 ||| 0-2 0-3 ||| 85 374827 +del ||| they are in ||| 0.00201207 0.0183279 2.6679e-06 1.33548e-06 2.718 ||| 0-2 ||| 497 374827 +del ||| they are of the ||| 0.142857 0.130625 2.6679e-06 8.96859e-07 2.718 ||| 0-2 ||| 7 374827 +del ||| they are of ||| 0.0103093 0.130625 2.6679e-06 1.46088e-05 2.718 ||| 0-2 ||| 97 374827 +del ||| they are the indigenous people of ||| 0.25 0.0732944 2.6679e-06 3.53915e-15 2.718 ||| 0-2 ||| 4 374827 +del ||| they are the indigenous people ||| 0.25 0.0732944 2.6679e-06 6.5101e-14 2.718 ||| 0-2 ||| 4 374827 +del ||| they are the indigenous ||| 0.25 0.0732944 2.6679e-06 7.39616e-11 2.718 ||| 0-2 ||| 4 374827 +del ||| they are the ||| 0.00159236 0.0732944 2.6679e-06 1.72004e-05 2.718 ||| 0-2 ||| 628 374827 +del ||| they are viewed in respect of ||| 1 0.130625 2.6679e-06 3.26004e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| they be in ||| 0.0588235 0.0183279 2.6679e-06 1.59515e-06 2.718 ||| 0-2 ||| 17 374827 +del ||| they deny the ||| 0.25 0.0732944 2.6679e-06 8.95575e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| they enter a ||| 0.125 0.0008087 2.6679e-06 1.35893e-10 2.718 ||| 0-2 ||| 8 374827 +del ||| they have fallen from the ||| 0.5 0.082213 2.6679e-06 4.43709e-12 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| they live in the ||| 0.111111 0.0458111 2.6679e-06 3.08147e-09 2.718 ||| 0-2 0-3 ||| 9 374827 +del ||| they making use of the ||| 1 0.10196 2.6679e-06 6.25479e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| they on the ||| 0.5 0.0436809 2.6679e-06 1.11182e-05 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| they reach the ||| 0.025641 0.0367608 2.6679e-06 2.94746e-09 2.718 ||| 0-1 0-2 ||| 39 374827 +del ||| they resemble a victory statement of ||| 1 0.130625 2.6679e-06 4.61033e-20 2.718 ||| 0-5 ||| 1 374827 +del ||| they should be given the ||| 0.0769231 0.0732944 2.6679e-06 6.24767e-11 2.718 ||| 0-4 ||| 13 374827 +del ||| they should not be on ||| 0.166667 0.0140673 2.6679e-06 8.77635e-12 2.718 ||| 0-4 ||| 6 374827 +del ||| they were introducing the ' ||| 1 0.0732944 2.6679e-06 2.18336e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| they were introducing the ||| 1 0.0732944 2.6679e-06 6.35641e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| they will be easy prey for populist ||| 1 0.0324324 2.6679e-06 1.29196e-24 2.718 ||| 0-4 ||| 1 374827 +del ||| they will be easy prey for ||| 1 0.0324324 2.6679e-06 1.17451e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| they will be easy prey ||| 1 0.0324324 2.6679e-06 1.52817e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| thing about ||| 0.0175439 0.0101916 2.6679e-06 5.12356e-07 2.718 ||| 0-1 ||| 57 374827 +del ||| thing in the world ||| 0.142857 0.0183279 2.6679e-06 1.37613e-10 2.718 ||| 0-1 ||| 7 374827 +del ||| thing in the ||| 0.133333 0.0458111 1.06716e-05 3.4176e-06 2.718 ||| 0-1 0-2 ||| 30 374827 +del ||| thing in ||| 0.00740741 0.0183279 2.6679e-06 9.84004e-06 2.718 ||| 0-1 ||| 135 374827 +del ||| thing of the ||| 0.00877193 0.10196 2.6679e-06 3.73851e-05 2.718 ||| 0-1 0-2 ||| 114 374827 +del ||| thing of ||| 0.0149254 0.130625 2.6679e-06 0.00010764 2.718 ||| 0-1 ||| 67 374827 +del ||| things are happening ||| 0.0526316 0.0007937 2.6679e-06 2.43203e-11 2.718 ||| 0-2 ||| 19 374827 +del ||| things for which , ||| 0.5 0.0138653 2.6679e-06 4.47928e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| things for which ||| 0.0625 0.0138653 2.6679e-06 3.75606e-08 2.718 ||| 0-1 ||| 16 374827 +del ||| things for ||| 0.0120482 0.0138653 2.6679e-06 4.4217e-06 2.718 ||| 0-1 ||| 83 374827 +del ||| things in hand ||| 0.142857 0.0183279 2.6679e-06 4.39559e-09 2.718 ||| 0-1 ||| 7 374827 +del ||| things in ||| 0.00568182 0.0183279 5.33579e-06 1.10832e-05 2.718 ||| 0-1 ||| 352 374827 +del ||| things went in the ||| 1 0.0183279 2.6679e-06 4.33426e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| things went in ||| 0.5 0.0183279 2.6679e-06 7.05999e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| think about the ||| 0.00515464 0.0732944 2.6679e-06 1.87887e-07 2.718 ||| 0-2 ||| 194 374827 +del ||| think back to the ||| 0.0909091 0.0732944 2.6679e-06 7.93981e-09 2.718 ||| 0-3 ||| 11 374827 +del ||| think of ||| 0.00458015 0.130625 8.00369e-06 0.000112832 2.718 ||| 0-1 ||| 655 374827 +del ||| thinking of the ||| 0.00549451 0.10196 2.6679e-06 7.59178e-06 2.718 ||| 0-1 0-2 ||| 182 374827 +del ||| thinking of ||| 0.00383142 0.130625 5.33579e-06 2.18584e-05 2.718 ||| 0-1 ||| 522 374827 +del ||| third phase of ||| 0.01 0.130625 2.6679e-06 3.23045e-10 2.718 ||| 0-2 ||| 100 374827 +del ||| third pillar ||| 0.00112108 0.0200642 2.6679e-06 3.07476e-09 2.718 ||| 0-1 ||| 892 374827 +del ||| third pillars of the second and ||| 1 0.10196 2.6679e-06 1.25115e-17 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| third pillars of the second ||| 1 0.10196 2.6679e-06 9.98854e-16 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| third pillars of the ||| 0.125 0.10196 2.6679e-06 1.53434e-11 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| this ' ||| 0.0042735 0.0163423 2.6679e-06 1.09012e-05 2.718 ||| 0-0 0-1 ||| 234 374827 +del ||| this European ||| 0.011236 0.00506575 2.6679e-06 7.05025e-06 2.718 ||| 0-0 0-1 ||| 89 374827 +del ||| this House welcome the ||| 0.25 0.0732944 2.6679e-06 6.17948e-11 2.718 ||| 0-3 ||| 4 374827 +del ||| this applies both to the ||| 0.0769231 0.0732944 2.6679e-06 2.76812e-11 2.718 ||| 0-4 ||| 13 374827 +del ||| this basis ||| 0.0022779 0.0033154 2.6679e-06 1.36331e-06 2.718 ||| 0-0 ||| 439 374827 +del ||| this disaster in the ||| 0.142857 0.0458111 2.6679e-06 1.52502e-09 2.718 ||| 0-2 0-3 ||| 7 374827 +del ||| this goal ||| 0.00235849 0.0033154 2.6679e-06 7.69127e-08 2.718 ||| 0-0 ||| 424 374827 +del ||| this has died down ||| 1 0.0033154 2.6679e-06 7.42522e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| this has died ||| 1 0.0033154 2.6679e-06 1.06363e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| this has ||| 0.000347343 0.0033154 2.6679e-06 1.18181e-05 2.718 ||| 0-0 ||| 2879 374827 +del ||| this holds for the ||| 1 0.0435798 2.6679e-06 6.85673e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| this hospital ||| 0.125 0.0033154 2.6679e-06 7.34688e-09 2.718 ||| 0-0 ||| 8 374827 +del ||| this in the ||| 0.00188324 0.0458111 2.6679e-06 6.05165e-05 2.718 ||| 0-1 0-2 ||| 531 374827 +del ||| this is about the ||| 0.016129 0.0732944 2.6679e-06 9.94734e-08 2.718 ||| 0-3 ||| 62 374827 +del ||| this is because of Israel ||| 1 0.130625 2.6679e-06 4.67182e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| this is because of ||| 0.0322581 0.130625 2.6679e-06 1.96295e-08 2.718 ||| 0-3 ||| 31 374827 +del ||| this is more about ||| 0.333333 0.0101916 2.6679e-06 6.49349e-10 2.718 ||| 0-3 ||| 3 374827 +del ||| this is not a ||| 0.00105263 0.0033154 2.6679e-06 1.08893e-08 2.718 ||| 0-0 ||| 950 374827 +del ||| this is not the first time ||| 0.00510204 0.0732944 2.6679e-06 2.12246e-13 2.718 ||| 0-3 ||| 196 374827 +del ||| this is not the first ||| 0.00520833 0.0732944 2.6679e-06 1.29285e-10 2.718 ||| 0-3 ||| 192 374827 +del ||| this is not the ||| 0.000900901 0.0732944 2.6679e-06 2.40127e-07 2.718 ||| 0-3 ||| 1110 374827 +del ||| this is not ||| 0.000163934 0.0033154 2.6679e-06 2.45665e-07 2.718 ||| 0-0 ||| 6100 374827 +del ||| this is of ||| 0.00518135 0.130625 2.6679e-06 5.97367e-05 2.718 ||| 0-2 ||| 193 374827 +del ||| this is the ||| 0.0005997 0.0732944 1.06716e-05 7.0334e-05 2.718 ||| 0-2 ||| 6670 374827 +del ||| this is ||| 6.85272e-05 0.0033154 1.06716e-05 7.1956e-05 2.718 ||| 0-0 ||| 58371 374827 +del ||| this issue of ||| 0.00420168 0.130625 2.6679e-06 1.44248e-06 2.718 ||| 0-2 ||| 238 374827 +del ||| this item ||| 0.00229885 0.229263 2.6679e-06 3.00003e-05 2.718 ||| 0-1 ||| 435 374827 +del ||| this of ||| 0.0238095 0.130625 2.6679e-06 0.00190602 2.718 ||| 0-1 ||| 42 374827 +del ||| this place , the ||| 0.5 0.0732944 2.6679e-06 4.02776e-07 2.718 ||| 0-3 ||| 2 374827 +del ||| this point ||| 0.000215285 0.0033154 2.6679e-06 2.00845e-06 2.718 ||| 0-0 ||| 4645 374827 +del ||| this regulation ||| 0.000461255 0.0033154 2.6679e-06 1.60254e-07 2.718 ||| 0-0 ||| 2168 374827 +del ||| this report should ||| 0.01 0.0033154 2.6679e-06 4.16997e-09 2.718 ||| 0-0 ||| 100 374827 +del ||| this report ||| 8.40866e-05 0.0033154 5.33579e-06 9.41089e-07 2.718 ||| 0-0 ||| 23785 374827 +del ||| this respect ||| 0.000203666 0.0033154 2.6679e-06 9.93206e-07 2.718 ||| 0-0 ||| 4910 374827 +del ||| this same ||| 0.00291545 0.0033154 2.6679e-06 1.84751e-06 2.718 ||| 0-0 ||| 343 374827 +del ||| this sector are obvious ||| 1 0.0250353 2.6679e-06 3.04975e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| this sector are ||| 0.0357143 0.0250353 2.6679e-06 7.31355e-08 2.718 ||| 0-1 ||| 28 374827 +del ||| this sector ||| 0.000405022 0.0250353 2.6679e-06 4.8202e-06 2.718 ||| 0-1 ||| 2469 374827 +del ||| this settled ||| 1 0.0033154 2.6679e-06 3.81119e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| this state of ||| 0.00598802 0.130625 2.6679e-06 4.8146e-07 2.718 ||| 0-2 ||| 167 374827 +del ||| this time it is in the ||| 1 0.0458111 2.6679e-06 5.53722e-11 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| this time ||| 0.000342114 0.0033154 2.6679e-06 3.76918e-06 2.718 ||| 0-0 ||| 2923 374827 +del ||| this too is ||| 0.0119048 0.0033154 2.6679e-06 9.79322e-08 2.718 ||| 0-0 ||| 84 374827 +del ||| this too ||| 0.004 0.0033154 2.6679e-06 3.12472e-06 2.718 ||| 0-0 ||| 250 374827 +del ||| this were not the ||| 0.1 0.0732944 2.6679e-06 1.37252e-08 2.718 ||| 0-3 ||| 10 374827 +del ||| this whole ||| 0.00167224 0.0033154 2.6679e-06 1.29879e-06 2.718 ||| 0-0 ||| 598 374827 +del ||| this will provide a sum of EUR ||| 0.5 0.130625 2.6679e-06 2.4339e-18 2.718 ||| 0-5 ||| 2 374827 +del ||| this will provide a sum of ||| 0.5 0.130625 2.6679e-06 9.10208e-15 2.718 ||| 0-5 ||| 2 374827 +del ||| this will ||| 0.000365764 0.0033154 2.6679e-06 1.98623e-05 2.718 ||| 0-0 ||| 2734 374827 +del ||| this year ’ s ||| 0.0666667 0.106997 2.6679e-06 1.71402e-11 2.718 ||| 0-2 ||| 15 374827 +del ||| this year ’ ||| 0.0181818 0.106997 2.6679e-06 9.01023e-09 2.718 ||| 0-2 ||| 55 374827 +del ||| this ||| 0.00120181 0.0033154 0.00164876 0.0022959 2.718 ||| 0-0 ||| 514225 374827 +del ||| those bearing the actual responsibility ||| 0.5 0.0732944 2.6679e-06 1.8746e-16 2.718 ||| 0-2 ||| 2 374827 +del ||| those bearing the actual ||| 0.5 0.0732944 2.6679e-06 1.62303e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| those bearing the ||| 0.25 0.0732944 2.6679e-06 1.12165e-08 2.718 ||| 0-2 ||| 4 374827 +del ||| those by the ||| 0.0526316 0.0597263 2.6679e-06 4.06657e-06 2.718 ||| 0-1 0-2 ||| 19 374827 +del ||| those by ||| 0.025641 0.0461582 2.6679e-06 1.17086e-05 2.718 ||| 0-1 ||| 39 374827 +del ||| those committed on ||| 0.5 0.0140673 2.6679e-06 5.88013e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| those concerned on ||| 0.5 0.0140673 2.6679e-06 1.14237e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| those disputes in the ||| 1 0.0458111 2.6679e-06 5.35764e-11 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| those exerted by the ||| 1 0.0597263 2.6679e-06 4.83921e-11 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| those from the ||| 0.0190476 0.082213 5.33579e-06 5.45062e-06 2.718 ||| 0-1 0-2 ||| 105 374827 +del ||| those from ||| 0.00352113 0.0911315 2.6679e-06 1.56936e-05 2.718 ||| 0-1 ||| 284 374827 +del ||| those in the ||| 0.00420168 0.0458111 5.33579e-06 6.78182e-06 2.718 ||| 0-1 0-2 ||| 476 374827 +del ||| those in ||| 0.000654879 0.0183279 2.6679e-06 1.95264e-05 2.718 ||| 0-1 ||| 1527 374827 +del ||| those involving ||| 0.0238095 0.0041841 2.6679e-06 2.46918e-08 2.718 ||| 0-1 ||| 42 374827 +del ||| those of the ||| 0.0133883 0.10196 3.46827e-05 7.41863e-05 2.718 ||| 0-1 0-2 ||| 971 374827 +del ||| those of their ||| 0.0208333 0.130625 2.6679e-06 2.47583e-07 2.718 ||| 0-1 ||| 48 374827 +del ||| those of ||| 0.00530152 0.130625 4.26864e-05 0.000213599 2.718 ||| 0-1 ||| 3018 374827 +del ||| those submitted by ||| 0.25 0.0461582 2.6679e-06 6.0299e-10 2.718 ||| 0-2 ||| 4 374827 +del ||| those to the ||| 0.166667 0.0732944 5.33579e-06 2.23471e-05 2.718 ||| 0-2 ||| 12 374827 +del ||| those who live in the ||| 0.05 0.0458111 2.6679e-06 6.02942e-13 2.718 ||| 0-3 0-4 ||| 20 374827 +del ||| thou art careful , ||| 0.5 0.0534351 2.6679e-06 1.6715e-16 2.718 ||| 0-1 ||| 2 374827 +del ||| thou art careful ||| 0.5 0.0534351 2.6679e-06 1.40162e-15 2.718 ||| 0-1 ||| 2 374827 +del ||| thou art ||| 0.5 0.0534351 2.6679e-06 5.06e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| though , of the ||| 0.333333 0.10196 2.6679e-06 3.03373e-06 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| though the ||| 0.00208768 0.0732944 2.6679e-06 8.62385e-05 2.718 ||| 0-1 ||| 479 374827 +del ||| thought of the ||| 0.0526316 0.10196 2.6679e-06 8.51385e-06 2.718 ||| 0-1 0-2 ||| 19 374827 +del ||| thought of ||| 0.015625 0.130625 5.33579e-06 2.45133e-05 2.718 ||| 0-1 ||| 128 374827 +del ||| threat from ||| 0.0104167 0.0911315 2.6679e-06 8.49589e-07 2.718 ||| 0-1 ||| 96 374827 +del ||| threatened by ||| 0.00285714 0.0461582 2.6679e-06 1.27741e-07 2.718 ||| 0-1 ||| 350 374827 +del ||| threatening the ||| 0.00746269 0.0732944 2.6679e-06 2.01443e-06 2.718 ||| 0-1 ||| 134 374827 +del ||| threshold of ||| 0.00549451 0.130625 2.6679e-06 3.39233e-06 2.718 ||| 0-1 ||| 182 374827 +del ||| threshold ||| 0.000730994 0.0043197 2.6679e-06 7.9e-06 2.718 ||| 0-0 ||| 1368 374827 +del ||| through , ||| 0.00546448 0.0017749 2.6679e-06 1.04944e-05 2.718 ||| 0-0 ||| 183 374827 +del ||| through conciliation ||| 0.0384615 0.0028056 2.6679e-06 4.23476e-09 2.718 ||| 0-1 ||| 26 374827 +del ||| through increased ||| 0.012987 0.0190026 2.6679e-06 1.28792e-07 2.718 ||| 0-1 ||| 77 374827 +del ||| through its bad ||| 1 0.0035806 2.6679e-06 1.0278e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| through its ||| 0.00440529 0.0035806 8.00369e-06 2.24903e-07 2.718 ||| 0-1 ||| 681 374827 +del ||| through such ||| 0.0163934 0.0017749 2.6679e-06 1.82063e-07 2.718 ||| 0-0 ||| 61 374827 +del ||| through the European ||| 0.0526316 0.0272951 2.6679e-06 9.38553e-08 2.718 ||| 0-0 0-1 0-2 ||| 19 374827 +del ||| through the ||| 0.00381505 0.0732944 6.66974e-05 0.000159869 2.718 ||| 0-1 ||| 6553 374827 +del ||| through to the end ||| 0.0277778 0.0732944 2.6679e-06 6.18091e-09 2.718 ||| 0-2 ||| 36 374827 +del ||| through to the ||| 0.00990099 0.0732944 2.6679e-06 1.42057e-05 2.718 ||| 0-2 ||| 101 374827 +del ||| through ||| 0.000582483 0.0017749 5.06901e-05 8.8e-05 2.718 ||| 0-0 ||| 32619 374827 +del ||| throughout the world ||| 0.00077101 0.0732944 2.6679e-06 3.15683e-09 2.718 ||| 0-1 ||| 1297 374827 +del ||| throughout the ||| 0.00848461 0.0375534 0.00011472 1.1392e-05 2.718 ||| 0-0 0-1 ||| 5068 374827 +del ||| throw away ||| 0.0217391 0.0017575 2.6679e-06 3.634e-10 2.718 ||| 0-1 ||| 46 374827 +del ||| throwing off the ||| 0.142857 0.0732944 2.6679e-06 1.52666e-09 2.718 ||| 0-2 ||| 7 374827 +del ||| thrust of the ||| 0.0185185 0.10196 5.33579e-06 1.33189e-06 2.718 ||| 0-1 0-2 ||| 108 374827 +del ||| thrust of ||| 0.00952381 0.130625 5.33579e-06 3.83481e-06 2.718 ||| 0-1 ||| 210 374827 +del ||| thus reflects the ||| 1 0.0732944 2.6679e-06 7.2118e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| time , the ||| 0.00176835 0.0732944 5.33579e-06 6.79976e-05 2.718 ||| 0-2 ||| 1131 374827 +del ||| time a positive verdict from ||| 1 0.0911315 2.6679e-06 7.17604e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| time after the ||| 0.047619 0.0732944 2.6679e-06 1.54521e-07 2.718 ||| 0-2 ||| 21 374827 +del ||| time being , of ||| 0.5 0.130625 2.6679e-06 1.64352e-07 2.718 ||| 0-3 ||| 2 374827 +del ||| time for the ||| 0.0022779 0.0732944 2.6679e-06 4.3823e-06 2.718 ||| 0-2 ||| 439 374827 +del ||| time from ||| 0.0232558 0.0911315 2.6679e-06 3.55809e-05 2.718 ||| 0-1 ||| 43 374827 +del ||| time it is in the ||| 1 0.0458111 2.6679e-06 8.5697e-09 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| time its ||| 0.0769231 0.0035806 2.6679e-06 8.02135e-07 2.718 ||| 0-1 ||| 13 374827 +del ||| time of the ||| 0.013834 0.10196 1.86753e-05 0.000168197 2.718 ||| 0-1 0-2 ||| 506 374827 +del ||| time of ||| 0.000489956 0.130625 2.6679e-06 0.000484278 2.718 ||| 0-1 ||| 2041 374827 +del ||| time the truth finally dawned on the ||| 1 0.0732944 2.6679e-06 4.72781e-22 2.718 ||| 0-1 ||| 1 374827 +del ||| time the truth finally dawned on ||| 1 0.0732944 2.6679e-06 7.70105e-21 2.718 ||| 0-1 ||| 1 374827 +del ||| time the truth finally dawned ||| 1 0.0732944 2.6679e-06 1.15096e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| time the truth finally ||| 1 0.0732944 2.6679e-06 1.64422e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| time the truth ||| 1 0.0732944 2.6679e-06 1.39696e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| time the ||| 0.0143678 0.0732944 2.6679e-05 0.000570188 2.718 ||| 0-1 ||| 696 374827 +del ||| time when the ||| 0.00137363 0.0732944 2.6679e-06 2.85037e-07 2.718 ||| 0-2 ||| 728 374827 +del ||| time within a ||| 0.0526316 0.0072058 2.6679e-06 3.03959e-08 2.718 ||| 0-1 ||| 19 374827 +del ||| time within ||| 0.0238095 0.0072058 2.6679e-06 6.85738e-07 2.718 ||| 0-1 ||| 42 374827 +del ||| times of ||| 0.00133511 0.130625 2.6679e-06 2.9941e-05 2.718 ||| 0-1 ||| 749 374827 +del ||| times the ||| 0.00729927 0.0732944 2.6679e-06 3.52526e-05 2.718 ||| 0-1 ||| 137 374827 +del ||| timing of the ||| 0.0238095 0.10196 2.6679e-06 5.12266e-07 2.718 ||| 0-1 0-2 ||| 42 374827 +del ||| to , beyond the ||| 0.5 0.0732944 2.6679e-06 2.75664e-07 2.718 ||| 0-3 ||| 2 374827 +del ||| to , ||| 0.00106724 0.0006066 2.6679e-06 0.000158668 2.718 ||| 0-0 ||| 937 374827 +del ||| to America 's ||| 0.5 0.169811 2.6679e-06 9.89001e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| to Article 8 ||| 0.0238095 0.11229 2.6679e-06 2.89554e-09 2.718 ||| 0-1 ||| 42 374827 +del ||| to Article ||| 0.00126263 0.11229 2.6679e-06 0.000229805 2.718 ||| 0-1 ||| 792 374827 +del ||| to Friday ' s ||| 1 0.0987045 2.6679e-06 1.41419e-11 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| to Parliament ' s ||| 0.2 0.0718536 2.6679e-06 2.02871e-08 2.718 ||| 0-1 0-2 0-3 ||| 5 374827 +del ||| to South ||| 0.03125 0.189467 2.6679e-06 0.000109589 2.718 ||| 0-1 ||| 32 374827 +del ||| to a close , the ||| 1 0.0732944 2.6679e-06 2.41933e-08 2.718 ||| 0-4 ||| 1 374827 +del ||| to a ||| 0.000821271 0.0008087 4.26864e-05 7.50407e-05 2.718 ||| 0-1 ||| 19482 374827 +del ||| to about ||| 0.0243902 0.0101916 5.33579e-06 0.000124766 2.718 ||| 0-1 ||| 82 374827 +del ||| to accrue to the ||| 1 0.0732944 2.6679e-06 3.83926e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| to achieve a ||| 0.000962464 0.0008087 2.6679e-06 1.71468e-08 2.718 ||| 0-2 ||| 1039 374827 +del ||| to achieve adequate levels of ||| 0.5 0.130625 2.6679e-06 1.96664e-14 2.718 ||| 0-4 ||| 2 374827 +del ||| to achieve the ||| 0.000853242 0.0366807 2.6679e-06 4.01204e-08 2.718 ||| 0-1 0-2 ||| 1172 374827 +del ||| to achieving the ||| 0.00448431 0.0367374 2.6679e-06 4.01204e-08 2.718 ||| 0-1 0-2 ||| 223 374827 +del ||| to act by the ||| 0.5 0.0461582 2.6679e-06 1.49867e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| to act by ||| 0.0769231 0.0461582 2.6679e-06 2.44116e-07 2.718 ||| 0-2 ||| 13 374827 +del ||| to address the ||| 0.000787402 0.0732944 2.6679e-06 2.35476e-06 2.718 ||| 0-2 ||| 1270 374827 +del ||| to adopt the ||| 0.00337838 0.0732944 5.33579e-06 3.20963e-06 2.718 ||| 0-2 ||| 592 374827 +del ||| to adopting a Council Regulation ||| 1 0.0289405 2.6679e-06 1.5485e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| to affect the ||| 0.0227273 0.0732944 2.6679e-06 7.22167e-07 2.718 ||| 0-2 ||| 44 374827 +del ||| to all ||| 0.000141804 0.0006066 2.6679e-06 6.28714e-06 2.718 ||| 0-0 ||| 7052 374827 +del ||| to allow discussion of the ||| 1 0.10196 2.6679e-06 1.90821e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| to allow the ||| 0.00209644 0.0732944 2.6679e-06 7.48709e-06 2.718 ||| 0-2 ||| 477 374827 +del ||| to also ||| 0.00555556 0.0006066 2.6679e-06 6.71716e-06 2.718 ||| 0-0 ||| 180 374827 +del ||| to an end ||| 0.00353357 0.0008398 5.33579e-06 6.95533e-09 2.718 ||| 0-1 ||| 566 374827 +del ||| to an ||| 0.00119933 0.0008398 1.33395e-05 1.59856e-05 2.718 ||| 0-1 ||| 4169 374827 +del ||| to any ||| 0.00142045 0.0006066 5.33579e-06 2.01198e-06 2.718 ||| 0-0 ||| 1408 374827 +del ||| to apply the ||| 0.00380228 0.0732944 5.33579e-06 4.44102e-06 2.718 ||| 0-2 ||| 526 374827 +del ||| to approach the ||| 0.0120482 0.0732944 2.6679e-06 6.76492e-06 2.718 ||| 0-2 ||| 83 374827 +del ||| to as the adoption of the ||| 1 0.10196 2.6679e-06 2.62919e-10 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| to as the ||| 0.0149254 0.0732944 2.6679e-06 0.000314927 2.718 ||| 0-2 ||| 67 374827 +del ||| to ask of ||| 0.0909091 0.130625 2.6679e-06 3.60413e-06 2.718 ||| 0-2 ||| 11 374827 +del ||| to ask ||| 0.000222321 0.0006066 2.6679e-06 1.82944e-07 2.718 ||| 0-0 ||| 4498 374827 +del ||| to attempt to maintain the ||| 0.5 0.0732944 2.6679e-06 1.04646e-11 2.718 ||| 0-4 ||| 2 374827 +del ||| to be conducted by the ||| 0.142857 0.0597263 2.6679e-06 5.47154e-10 2.718 ||| 0-3 0-4 ||| 7 374827 +del ||| to be covered before the ||| 1 0.0732944 2.6679e-06 1.00156e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| to be covered by the ||| 0.0434783 0.0597263 2.6679e-06 6.47541e-10 2.718 ||| 0-3 0-4 ||| 23 374827 +del ||| to be covered in ||| 0.1 0.00958625 2.6679e-06 1.69361e-10 2.718 ||| 0-2 0-3 ||| 10 374827 +del ||| to be drawn from the ||| 0.047619 0.082213 2.6679e-06 1.72253e-09 2.718 ||| 0-3 0-4 ||| 21 374827 +del ||| to be drawn from this ||| 0.0666667 0.0911315 2.6679e-06 3.20456e-11 2.718 ||| 0-3 ||| 15 374827 +del ||| to be drawn from ||| 0.0166667 0.0911315 2.6679e-06 4.95955e-09 2.718 ||| 0-3 ||| 60 374827 +del ||| to be driven out of the ||| 0.2 0.10196 2.6679e-06 1.8643e-11 2.718 ||| 0-4 0-5 ||| 5 374827 +del ||| to be found anywhere in the ||| 1 0.0458111 2.6679e-06 9.96614e-14 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| to be given to the ||| 0.0625 0.0732944 8.00369e-06 3.41084e-08 2.718 ||| 0-4 ||| 48 374827 +del ||| to be granted for the ||| 1 0.0435798 2.6679e-06 4.87397e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| to be held on ||| 0.025974 0.008389 5.33579e-06 4.56438e-10 2.718 ||| 0-2 0-3 ||| 77 374827 +del ||| to be hidden in a ||| 1 0.0183279 2.6679e-06 1.38592e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| to be hidden in ||| 1 0.0183279 2.6679e-06 3.12666e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| to be in a position ||| 0.0181818 0.0183279 2.6679e-06 6.33865e-10 2.718 ||| 0-2 ||| 55 374827 +del ||| to be in a ||| 0.0107527 0.0183279 2.6679e-06 1.92488e-06 2.718 ||| 0-2 ||| 93 374827 +del ||| to be in place by ||| 0.5 0.0461582 2.6679e-06 8.38825e-10 2.718 ||| 0-4 ||| 2 374827 +del ||| to be in ||| 0.00183486 0.0183279 2.6679e-06 4.34258e-05 2.718 ||| 0-2 ||| 545 374827 +del ||| to be lifted ||| 0.0119048 0.0072727 2.6679e-06 8.53495e-09 2.718 ||| 0-2 ||| 84 374827 +del ||| to be made compulsory ||| 0.125 0.0008807 2.6679e-06 8.77084e-12 2.718 ||| 0-3 ||| 8 374827 +del ||| to be made from ||| 0.111111 0.0911315 2.6679e-06 7.31124e-08 2.718 ||| 0-3 ||| 9 374827 +del ||| to be made in the ||| 0.0285714 0.0458111 2.6679e-06 3.15948e-08 2.718 ||| 0-3 0-4 ||| 35 374827 +del ||| to be made of the ||| 0.0588235 0.10196 2.6679e-06 3.45615e-07 2.718 ||| 0-3 0-4 ||| 17 374827 +del ||| to be made of ||| 0.0322581 0.130625 2.6679e-06 9.95104e-07 2.718 ||| 0-3 ||| 31 374827 +del ||| to be made on the ||| 0.133333 0.0436809 5.33579e-06 1.14908e-08 2.718 ||| 0-3 0-4 ||| 15 374827 +del ||| to be made to the ||| 0.0967742 0.0732944 8.00369e-06 1.04109e-07 2.718 ||| 0-4 ||| 31 374827 +del ||| to be of ||| 0.0104167 0.130625 5.33579e-06 0.000475035 2.718 ||| 0-2 ||| 192 374827 +del ||| to be paid to the ||| 0.125 0.0732944 2.6679e-06 6.68948e-09 2.718 ||| 0-4 ||| 8 374827 +del ||| to be played by the ||| 0.047619 0.0597263 2.6679e-06 4.45863e-10 2.718 ||| 0-3 0-4 ||| 21 374827 +del ||| to be provided to ||| 0.0555556 0.0006066 2.6679e-06 4.91083e-10 2.718 ||| 0-0 ||| 18 374827 +del ||| to be provided ||| 0.00423729 0.0006066 2.6679e-06 5.52659e-09 2.718 ||| 0-0 ||| 236 374827 +del ||| to be shown by the ||| 1 0.0597263 2.6679e-06 9.4418e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| to be struck ||| 0.0294118 0.0006066 2.6679e-06 6.1728e-10 2.718 ||| 0-0 ||| 34 374827 +del ||| to be taken from the ||| 0.166667 0.082213 2.6679e-06 1.10492e-08 2.718 ||| 0-3 0-4 ||| 6 374827 +del ||| to be the interests of ||| 0.333333 0.130625 2.6679e-06 3.99828e-09 2.718 ||| 0-4 ||| 3 374827 +del ||| to be the ||| 0.00317965 0.0732944 1.06716e-05 0.000559306 2.718 ||| 0-2 ||| 1258 374827 +del ||| to be transformed from the ||| 1 0.082213 2.6679e-06 4.3639e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| to be unaware of ||| 0.166667 0.130625 2.6679e-06 1.52011e-09 2.718 ||| 0-3 ||| 6 374827 +del ||| to be ||| 0.000139784 0.0006066 2.13432e-05 2.41125e-05 2.718 ||| 0-0 ||| 57231 374827 +del ||| to become the ||| 0.00564972 0.0732944 2.6679e-06 8.81723e-06 2.718 ||| 0-2 ||| 177 374827 +del ||| to between ||| 0.0277778 0.0028314 2.6679e-06 1.80915e-05 2.718 ||| 0-1 ||| 36 374827 +del ||| to blame for the ||| 0.0144928 0.0732944 2.6679e-06 5.64524e-09 2.718 ||| 0-3 ||| 69 374827 +del ||| to bring about ||| 0.00267857 0.0101916 8.00369e-06 3.88396e-08 2.718 ||| 0-2 ||| 1120 374827 +del ||| to bring action under Title ||| 0.2 0.113065 2.6679e-06 1.77319e-16 2.718 ||| 0-4 ||| 5 374827 +del ||| to by the ||| 0.0294118 0.0597263 5.33579e-06 0.00049903 2.718 ||| 0-1 0-2 ||| 68 374827 +del ||| to by ||| 0.0115385 0.0461582 8.00369e-06 0.00143682 2.718 ||| 0-1 ||| 260 374827 +del ||| to cease to apply the ||| 1 0.0732944 2.6679e-06 4.10406e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| to change its policy towards ||| 0.5 0.0035806 2.6679e-06 2.64838e-16 2.718 ||| 0-2 ||| 2 374827 +del ||| to change its policy ||| 0.0769231 0.0035806 2.6679e-06 2.08534e-12 2.718 ||| 0-2 ||| 13 374827 +del ||| to change its ||| 0.00793651 0.0035806 2.6679e-06 5.29677e-09 2.718 ||| 0-2 ||| 126 374827 +del ||| to changing over to ||| 0.5 0.006517 2.6679e-06 3.45286e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| to changing over ||| 0.5 0.006517 2.6679e-06 3.8858e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| to children 's ||| 0.2 0.169811 2.6679e-06 2.65995e-07 2.718 ||| 0-2 ||| 5 374827 +del ||| to close down the ||| 0.0434783 0.0732944 2.6679e-06 3.19507e-09 2.718 ||| 0-3 ||| 23 374827 +del ||| to collapse ||| 0.015625 0.0026247 2.6679e-06 3.46547e-07 2.718 ||| 0-1 ||| 64 374827 +del ||| to come from all sides of the ||| 1 0.0911315 2.6679e-06 9.46691e-16 2.718 ||| 0-2 ||| 1 374827 +del ||| to come from all sides of ||| 1 0.0911315 2.6679e-06 1.54205e-14 2.718 ||| 0-2 ||| 1 374827 +del ||| to come from all sides ||| 1 0.0911315 2.6679e-06 2.83652e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| to come from all ||| 1 0.0911315 2.6679e-06 7.72895e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| to come from the ||| 0.0357143 0.082213 2.6679e-06 5.68076e-07 2.718 ||| 0-2 0-3 ||| 28 374827 +del ||| to come from ||| 0.00980392 0.0911315 2.6679e-06 1.63562e-06 2.718 ||| 0-2 ||| 102 374827 +del ||| to come out into the ||| 0.166667 0.0732944 2.6679e-06 1.03079e-10 2.718 ||| 0-4 ||| 6 374827 +del ||| to come out of the ||| 0.047619 0.10196 2.6679e-06 2.96161e-08 2.718 ||| 0-3 0-4 ||| 21 374827 +del ||| to come up to the ||| 0.166667 0.0732944 2.6679e-06 7.94326e-09 2.718 ||| 0-4 ||| 6 374827 +del ||| to comply with ||| 0.0017452 0.0045281 5.33579e-06 7.91458e-09 2.718 ||| 0-2 ||| 1146 374827 +del ||| to consult the European ||| 0.333333 0.0400553 2.6679e-06 4.07514e-10 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| to continued close dialogue with Parliament ||| 1 0.0198851 2.6679e-06 6.84335e-19 2.718 ||| 0-3 ||| 1 374827 +del ||| to continued close dialogue with ||| 1 0.0198851 2.6679e-06 1.19222e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| to continued close dialogue ||| 1 0.0198851 2.6679e-06 1.86445e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| to control ||| 0.000919118 0.0007854 2.6679e-06 1.16404e-06 2.718 ||| 0-1 ||| 1088 374827 +del ||| to create a set of ||| 0.5 0.130625 2.6679e-06 7.64546e-11 2.718 ||| 0-4 ||| 2 374827 +del ||| to cut back the ||| 0.142857 0.0732944 2.6679e-06 1.56928e-09 2.718 ||| 0-3 ||| 7 374827 +del ||| to date in ||| 0.0149254 0.0183279 2.6679e-06 2.4489e-07 2.718 ||| 0-2 ||| 67 374827 +del ||| to date of the ||| 0.2 0.10196 2.6679e-06 9.30408e-07 2.718 ||| 0-2 0-3 ||| 5 374827 +del ||| to deal with the issue ||| 0.0178571 0.0389112 2.6679e-06 1.88742e-11 2.718 ||| 0-2 0-3 ||| 56 374827 +del ||| to deal with the ||| 0.00185529 0.0389112 5.33579e-06 2.49394e-08 2.718 ||| 0-2 0-3 ||| 1078 374827 +del ||| to declare such income ||| 1 0.005614 2.6679e-06 1.25084e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| to deliver ||| 0.0010395 0.0006066 2.6679e-06 4.93616e-08 2.718 ||| 0-0 ||| 962 374827 +del ||| to demand more ||| 0.0526316 0.0006066 2.6679e-06 1.62862e-10 2.718 ||| 0-0 ||| 19 374827 +del ||| to demand ||| 0.00121359 0.0006066 2.6679e-06 7.13148e-08 2.718 ||| 0-0 ||| 824 374827 +del ||| to discuss the ||| 0.00141243 0.0732944 2.6679e-06 1.28694e-06 2.718 ||| 0-2 ||| 708 374827 +del ||| to do as regards ||| 0.0769231 0.0006066 2.6679e-06 6.52973e-12 2.718 ||| 0-0 ||| 13 374827 +del ||| to do as ||| 0.00826446 0.0006066 2.6679e-06 4.66409e-08 2.718 ||| 0-0 ||| 121 374827 +del ||| to do here in ||| 0.125 0.0183279 2.6679e-06 1.66921e-08 2.718 ||| 0-3 ||| 8 374827 +del ||| to do with the ||| 0.00440529 0.0389112 1.06716e-05 2.01777e-07 2.718 ||| 0-2 0-3 ||| 908 374827 +del ||| to do with ||| 0.000740467 0.0045281 5.33579e-06 5.80961e-07 2.718 ||| 0-2 ||| 2701 374827 +del ||| to do ||| 0.000153457 0.0006066 5.33579e-06 4.57067e-06 2.718 ||| 0-0 ||| 13033 374827 +del ||| to ease the ||| 0.00990099 0.0732944 2.6679e-06 3.20963e-07 2.718 ||| 0-2 ||| 101 374827 +del ||| to economic ||| 0.0104167 0.0003042 2.6679e-06 1.63499e-06 2.718 ||| 0-1 ||| 96 374827 +del ||| to emerge from the meeting of the ||| 1 0.10196 2.6679e-06 3.414e-15 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| to emerge from the ||| 0.0192308 0.082213 2.6679e-06 2.02e-08 2.718 ||| 0-2 0-3 ||| 52 374827 +del ||| to enable the ||| 0.00472813 0.0732944 5.33579e-06 3.04298e-06 2.718 ||| 0-2 ||| 423 374827 +del ||| to ensure that both the ||| 0.25 0.0732944 2.6679e-06 3.85608e-10 2.718 ||| 0-4 ||| 4 374827 +del ||| to ensure the security of ||| 0.0384615 0.130625 2.6679e-06 5.89517e-11 2.718 ||| 0-4 ||| 26 374827 +del ||| to ensure the ||| 0.000684463 0.0732944 2.6679e-06 1.38385e-05 2.718 ||| 0-2 ||| 1461 374827 +del ||| to establish the ||| 0.00234192 0.0367202 2.6679e-06 4.01204e-08 2.718 ||| 0-1 0-2 ||| 427 374827 +del ||| to everyone that the ||| 0.0909091 0.0732944 2.6679e-06 3.49385e-08 2.718 ||| 0-3 ||| 11 374827 +del ||| to everything the European ||| 1 0.0400553 2.6679e-06 8.76628e-09 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| to exhaust those of their ||| 0.5 0.130625 2.6679e-06 4.83994e-14 2.718 ||| 0-3 ||| 2 374827 +del ||| to exhaust those of ||| 0.5 0.130625 2.6679e-06 4.1756e-11 2.718 ||| 0-3 ||| 2 374827 +del ||| to eye with ||| 0.0588235 0.0045281 2.6679e-06 9.62264e-09 2.718 ||| 0-2 ||| 17 374827 +del ||| to facilitate , ||| 0.0588235 0.0006066 2.6679e-06 3.82391e-09 2.718 ||| 0-0 ||| 17 374827 +del ||| to facilitate ||| 0.000600601 0.0006066 2.6679e-06 3.2065e-08 2.718 ||| 0-0 ||| 1665 374827 +del ||| to fall from the ||| 0.333333 0.0911315 2.6679e-06 1.13147e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| to fall from ||| 0.142857 0.0911315 2.6679e-06 1.84303e-07 2.718 ||| 0-2 ||| 7 374827 +del ||| to form a ||| 0.00574713 0.0008087 2.6679e-06 3.41585e-08 2.718 ||| 0-2 ||| 174 374827 +del ||| to fuel ||| 0.02 0.0856903 2.6679e-06 3.57121e-05 2.718 ||| 0-1 ||| 50 374827 +del ||| to future ||| 0.00704225 0.0006066 2.6679e-06 3.53381e-07 2.718 ||| 0-0 ||| 142 374827 +del ||| to gain from ||| 0.00714286 0.0911315 2.6679e-06 1.07462e-07 2.718 ||| 0-2 ||| 140 374827 +del ||| to get the ||| 0.00192678 0.0732944 2.6679e-06 1.34928e-05 2.718 ||| 0-2 ||| 519 374827 +del ||| to go for the decision ||| 1 0.0138653 2.6679e-06 5.39873e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| to go for the ||| 0.0909091 0.0138653 2.6679e-06 3.43212e-08 2.718 ||| 0-2 ||| 11 374827 +del ||| to go for ||| 0.0181818 0.0138653 2.6679e-06 5.59052e-07 2.718 ||| 0-2 ||| 55 374827 +del ||| to go on ||| 0.00552486 0.0140673 2.6679e-06 5.0964e-07 2.718 ||| 0-2 ||| 181 374827 +del ||| to go over ||| 0.0196078 0.006517 2.6679e-06 1.6587e-08 2.718 ||| 0-2 ||| 51 374827 +del ||| to go ||| 0.000297177 0.0006066 2.6679e-06 7.78076e-07 2.718 ||| 0-0 ||| 3365 374827 +del ||| to have any ||| 0.00917431 0.0006066 2.6679e-06 2.40629e-08 2.718 ||| 0-0 ||| 109 374827 +del ||| to have come out of the ||| 0.5 0.10196 2.6679e-06 3.54203e-10 2.718 ||| 0-4 0-5 ||| 2 374827 +del ||| to have grown by ||| 0.333333 0.0461582 2.6679e-06 2.85256e-10 2.718 ||| 0-3 ||| 3 374827 +del ||| to have the ||| 0.00675024 0.0732944 1.86753e-05 0.000369102 2.718 ||| 0-2 ||| 1037 374827 +del ||| to have ||| 0.000164867 0.0006066 5.33579e-06 1.59125e-05 2.718 ||| 0-0 ||| 12131 374827 +del ||| to having the ||| 0.0434783 0.0732944 2.6679e-06 1.1817e-05 2.718 ||| 0-2 ||| 23 374827 +del ||| to hear ||| 0.000491159 0.0006066 2.6679e-06 1.35046e-07 2.718 ||| 0-0 ||| 2036 374827 +del ||| to hell with the ||| 0.5 0.0389112 2.6679e-06 2.76061e-10 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| to help support the ||| 0.2 0.0732944 2.6679e-06 2.0122e-09 2.718 ||| 0-3 ||| 5 374827 +del ||| to highlight . the ||| 1 0.0732944 2.6679e-06 1.74809e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| to his or ||| 0.0714286 0.00152 2.6679e-06 6.13613e-09 2.718 ||| 0-1 ||| 14 374827 +del ||| to his ||| 0.00218818 0.00152 5.33579e-06 5.36704e-06 2.718 ||| 0-1 ||| 914 374827 +del ||| to hold a ||| 0.00348432 0.0008087 2.6679e-06 1.30721e-08 2.718 ||| 0-2 ||| 287 374827 +del ||| to hold the ||| 0.00518135 0.0732944 2.6679e-06 5.37614e-06 2.718 ||| 0-2 ||| 193 374827 +del ||| to how ||| 0.00240096 0.0015352 5.33579e-06 9.09908e-06 2.718 ||| 0-1 ||| 833 374827 +del ||| to implement the ||| 0.0018018 0.0732944 5.33579e-06 1.72209e-06 2.718 ||| 0-2 ||| 1110 374827 +del ||| to in your question ||| 0.5 0.0183279 2.6679e-06 5.07287e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| to in your ||| 0.166667 0.0183279 2.6679e-06 6.13184e-07 2.718 ||| 0-1 ||| 6 374827 +del ||| to in ||| 0.00344234 0.0183279 5.33579e-06 0.00239619 2.718 ||| 0-1 ||| 581 374827 +del ||| to influence ||| 0.00243309 0.0006066 2.6679e-06 4.55031e-08 2.718 ||| 0-0 ||| 411 374827 +del ||| to it - this company ||| 1 0.0006066 2.6679e-06 2.17985e-14 2.718 ||| 0-0 ||| 1 374827 +del ||| to it - this ||| 1 0.0006066 2.6679e-06 5.7668e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| to it - ||| 0.0666667 0.0006066 2.6679e-06 8.925e-08 2.718 ||| 0-0 ||| 15 374827 +del ||| to it on ||| 0.0714286 0.0140673 2.6679e-06 1.54976e-05 2.718 ||| 0-2 ||| 14 374827 +del ||| to it ||| 0.000789578 0.0006066 5.33579e-06 2.36605e-05 2.718 ||| 0-0 ||| 2533 374827 +del ||| to its full ||| 0.0526316 0.0035806 2.6679e-06 7.96686e-09 2.718 ||| 0-1 ||| 19 374827 +del ||| to its ||| 0.00200918 0.0035806 1.86753e-05 4.34161e-05 2.718 ||| 0-1 ||| 3484 374827 +del ||| to just ||| 0.00584795 0.0056007 2.6679e-06 2.9181e-05 2.718 ||| 0-1 ||| 171 374827 +del ||| to keep a ||| 0.00719424 0.0004699 2.6679e-06 9.7553e-11 2.718 ||| 0-1 0-2 ||| 139 374827 +del ||| to know the ||| 0.00628931 0.0732944 2.6679e-06 7.96236e-06 2.718 ||| 0-2 ||| 159 374827 +del ||| to learn of the ||| 0.0526316 0.10196 2.6679e-06 3.17723e-07 2.718 ||| 0-2 0-3 ||| 19 374827 +del ||| to lift restrictions on ||| 0.2 0.0140673 2.6679e-06 1.26504e-13 2.718 ||| 0-3 ||| 5 374827 +del ||| to look to the ||| 0.0107527 0.0732944 2.6679e-06 7.99389e-07 2.718 ||| 0-3 ||| 93 374827 +del ||| to look upon ||| 0.333333 0.0034407 2.6679e-06 1.32619e-09 2.718 ||| 0-2 ||| 3 374827 +del ||| to maintain the ||| 0.00173913 0.0732944 2.6679e-06 1.41039e-06 2.718 ||| 0-2 ||| 575 374827 +del ||| to make them by putting ||| 1 0.0461582 2.6679e-06 7.49472e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| to make them by ||| 1 0.0461582 2.6679e-06 6.6977e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| to make ||| 5.279e-05 0.0006066 2.6679e-06 2.31214e-06 2.718 ||| 0-0 ||| 18943 374827 +del ||| to mention my approval of the ||| 1 0.10196 2.6679e-06 1.70153e-14 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| to mention the ||| 0.001321 0.0732944 2.6679e-06 2.99977e-06 2.718 ||| 0-2 ||| 757 374827 +del ||| to monitor the ||| 0.00199601 0.0732944 2.6679e-06 4.66014e-07 2.718 ||| 0-2 ||| 501 374827 +del ||| to my ||| 0.000297442 0.0006066 2.6679e-06 8.55645e-07 2.718 ||| 0-0 ||| 3362 374827 +del ||| to obtain the ||| 0.0120482 0.0732944 5.33579e-06 1.8548e-06 2.718 ||| 0-2 ||| 166 374827 +del ||| to one ||| 0.000807754 0.0006066 2.6679e-06 5.54552e-06 2.718 ||| 0-0 ||| 1238 374827 +del ||| to our ||| 0.000897532 0.001535 1.60074e-05 2.64975e-05 2.718 ||| 0-1 ||| 6685 374827 +del ||| to parameters for ||| 1 0.0138653 2.6679e-06 6.21382e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| to pieces by ||| 0.5 0.0461582 2.6679e-06 3.26158e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| to play ||| 0.000393236 0.0006066 2.6679e-06 3.43269e-07 2.718 ||| 0-0 ||| 2543 374827 +del ||| to power of the ||| 0.5 0.10196 2.6679e-06 1.3592e-06 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| to prevent the exploitation of that ||| 0.5 0.130625 2.6679e-06 1.30024e-14 2.718 ||| 0-4 ||| 2 374827 +del ||| to prevent the exploitation of ||| 0.111111 0.130625 2.6679e-06 7.7296e-13 2.718 ||| 0-4 ||| 9 374827 +del ||| to prevent the ||| 0.00108578 0.0732944 2.6679e-06 1.57704e-06 2.718 ||| 0-2 ||| 921 374827 +del ||| to provide for ||| 0.00393701 0.0138653 2.6679e-06 2.82777e-07 2.718 ||| 0-2 ||| 254 374827 +del ||| to providing the ||| 0.0384615 0.0732944 2.6679e-06 2.83312e-06 2.718 ||| 0-2 ||| 26 374827 +del ||| to put in place the ||| 0.0243902 0.0732944 2.6679e-06 1.09618e-09 2.718 ||| 0-4 ||| 41 374827 +del ||| to put the ||| 0.00277008 0.0732944 2.6679e-06 3.40283e-05 2.718 ||| 0-2 ||| 361 374827 +del ||| to questions of ||| 0.025641 0.0653471 2.6679e-06 3.40754e-08 2.718 ||| 0-1 0-2 ||| 39 374827 +del ||| to ratify the ||| 0.00286533 0.0732944 2.6679e-06 1.54309e-07 2.718 ||| 0-2 ||| 349 374827 +del ||| to reach a ||| 0.00118624 0.0008087 2.6679e-06 6.0783e-09 2.718 ||| 0-2 ||| 843 374827 +del ||| to reach the ||| 0.00380228 0.0367608 2.6679e-06 8.02408e-08 2.718 ||| 0-1 0-2 ||| 263 374827 +del ||| to refer the ||| 0.015625 0.0732944 2.6679e-06 2.41031e-06 2.718 ||| 0-2 ||| 64 374827 +del ||| to rely on ||| 0.005 0.0140673 2.6679e-06 1.72552e-08 2.718 ||| 0-2 ||| 200 374827 +del ||| to remove ||| 0.000877963 0.0006066 2.6679e-06 2.54126e-08 2.718 ||| 0-0 ||| 1139 374827 +del ||| to respect Parliament 's ||| 1 0.169811 2.6679e-06 8.86575e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| to rid the ||| 0.0833333 0.0732944 2.6679e-06 7.22167e-07 2.718 ||| 0-2 ||| 12 374827 +del ||| to rises in the ||| 1 0.0458111 2.6679e-06 2.41348e-09 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| to run from ||| 0.0625 0.0911315 2.6679e-06 2.04524e-07 2.718 ||| 0-2 ||| 16 374827 +del ||| to run with ||| 0.5 0.0045281 2.6679e-06 1.796e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| to say a word about it , ||| 1 0.0101916 2.6679e-06 1.14118e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| to say a word about it ||| 1 0.0101916 2.6679e-06 9.56923e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| to say a word about ||| 0.0217391 0.0101916 2.6679e-06 5.38105e-13 2.718 ||| 0-4 ||| 46 374827 +del ||| to say about the ||| 0.011236 0.0732944 2.6679e-06 4.17187e-08 2.718 ||| 0-3 ||| 89 374827 +del ||| to say about ||| 0.00421941 0.0101916 2.6679e-06 1.19251e-07 2.718 ||| 0-2 ||| 237 374827 +del ||| to say by ||| 0.0416667 0.0461582 2.6679e-06 1.37331e-06 2.718 ||| 0-2 ||| 24 374827 +del ||| to say on the ||| 0.0166667 0.0436809 2.6679e-06 2.89299e-07 2.718 ||| 0-2 0-3 ||| 60 374827 +del ||| to say our neighbours to the ||| 1 0.0732944 2.6679e-06 1.80779e-14 2.718 ||| 0-5 ||| 1 374827 +del ||| to say the ||| 0.00374532 0.0732944 5.33579e-06 2.94978e-05 2.718 ||| 0-2 ||| 534 374827 +del ||| to say ||| 0.000115194 0.0006066 5.33579e-06 1.27169e-06 2.718 ||| 0-0 ||| 17362 374827 +del ||| to secure an ||| 0.0243902 0.0008398 2.6679e-06 8.05674e-10 2.718 ||| 0-2 ||| 41 374827 +del ||| to see that ||| 0.000770416 0.0006066 2.6679e-06 1.57698e-08 2.718 ||| 0-0 ||| 1298 374827 +del ||| to see the ||| 0.00102041 0.0732944 2.6679e-06 2.17453e-05 2.718 ||| 0-2 ||| 980 374827 +del ||| to see ||| 0.000369777 0.0006066 8.00369e-06 9.3747e-07 2.718 ||| 0-0 ||| 8113 374827 +del ||| to set up the ||| 0.011236 0.0732944 2.6679e-06 6.15106e-08 2.718 ||| 0-3 ||| 89 374827 +del ||| to share in ||| 0.0238095 0.00922175 2.6679e-06 3.11504e-09 2.718 ||| 0-1 0-2 ||| 42 374827 +del ||| to show respect for the ||| 0.166667 0.0435798 2.6679e-06 1.92325e-11 2.718 ||| 0-3 0-4 ||| 6 374827 +del ||| to sign up to the ||| 0.0227273 0.0732944 2.6679e-06 4.88212e-10 2.718 ||| 0-4 ||| 44 374827 +del ||| to solve the ||| 0.00218818 0.0732944 2.6679e-06 4.78359e-07 2.718 ||| 0-2 ||| 457 374827 +del ||| to speak - of ||| 1 0.130625 2.6679e-06 1.33776e-08 2.718 ||| 0-3 ||| 1 374827 +del ||| to speed up their ratification of the ||| 1 0.10196 2.6679e-06 3.56284e-18 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| to subordinate all kinds of ||| 1 0.130625 2.6679e-06 1.47086e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| to such a Council ||| 1 0.0707819 2.6679e-06 7.71471e-08 2.718 ||| 0-3 ||| 1 374827 +del ||| to tackle the ||| 0.00275103 0.0732944 5.33579e-06 1.12029e-06 2.718 ||| 0-2 ||| 727 374827 +del ||| to take in the ||| 0.030303 0.0458111 2.6679e-06 1.3399e-06 2.718 ||| 0-2 0-3 ||| 33 374827 +del ||| to take on ||| 0.00229885 0.0140673 2.6679e-06 1.40308e-06 2.718 ||| 0-2 ||| 435 374827 +del ||| to take over the ||| 0.0238095 0.0732944 2.6679e-06 2.39246e-08 2.718 ||| 0-3 ||| 42 374827 +del ||| to take place ||| 0.00135501 0.0006066 2.6679e-06 3.22387e-09 2.718 ||| 0-0 ||| 738 374827 +del ||| to take the ||| 0.00120482 0.0732944 5.33579e-06 4.96876e-05 2.718 ||| 0-2 ||| 1660 374827 +del ||| to take ||| 6.34961e-05 0.0006066 2.6679e-06 2.14211e-06 2.718 ||| 0-0 ||| 15749 374827 +del ||| to teach the ||| 0.111111 0.0732944 2.6679e-06 8.94994e-08 2.718 ||| 0-2 ||| 9 374827 +del ||| to tender under the current ||| 1 0.0732944 2.6679e-06 1.3869e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| to tender under the ||| 1 0.0732944 2.6679e-06 8.41566e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| to terms with ||| 0.0151515 0.0045281 2.6679e-06 1.85621e-07 2.718 ||| 0-2 ||| 66 374827 +del ||| to that end in order to ||| 1 0.0183279 2.6679e-06 8.29995e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| to that end in order ||| 1 0.0183279 2.6679e-06 9.34067e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| to that end in ||| 0.25 0.0183279 2.6679e-06 1.75379e-08 2.718 ||| 0-3 ||| 4 374827 +del ||| to that from the ||| 0.333333 0.082213 2.6679e-06 1.12516e-05 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| to that in ||| 0.0113636 0.0183279 2.6679e-06 4.03077e-05 2.718 ||| 0-2 ||| 88 374827 +del ||| to that of the ||| 0.00649351 0.10196 2.6679e-06 0.00015314 2.718 ||| 0-2 0-3 ||| 154 374827 +del ||| to that of ||| 0.0113636 0.130625 1.06716e-05 0.000440926 2.718 ||| 0-2 ||| 352 374827 +del ||| to that on ||| 0.142857 0.0140673 2.6679e-06 1.46596e-05 2.718 ||| 0-2 ||| 7 374827 +del ||| to that ||| 0.000736739 0.0006066 8.00369e-06 2.23811e-05 2.718 ||| 0-0 ||| 4072 374827 +del ||| to the ' ||| 0.00729927 0.0513318 2.6679e-06 0.000146535 2.718 ||| 0-1 0-2 ||| 137 374827 +del ||| to the . ||| 0.25 0.0732944 2.6679e-06 9.34806e-05 2.718 ||| 0-1 ||| 4 374827 +del ||| to the Cohesion Fund ||| 0.04 0.0314359 2.6679e-06 4.10938e-12 2.718 ||| 0-2 ||| 25 374827 +del ||| to the Cohesion ||| 1 0.0314359 2.6679e-06 2.65121e-07 2.718 ||| 0-2 ||| 1 374827 +del ||| to the Conciliation Committee ||| 0.0222222 0.0732944 5.33579e-06 1.36576e-11 2.718 ||| 0-1 ||| 90 374827 +del ||| to the Conciliation ||| 0.4 0.0732944 5.33579e-06 8.94994e-08 2.718 ||| 0-1 ||| 5 374827 +del ||| to the European ||| 0.0135135 0.0732944 1.60074e-05 0.000103199 2.718 ||| 0-1 ||| 444 374827 +del ||| to the House the ||| 0.037037 0.0732944 2.6679e-06 4.73856e-07 2.718 ||| 0-3 ||| 27 374827 +del ||| to the House ||| 0.000868056 0.0732944 2.6679e-06 7.71855e-06 2.718 ||| 0-1 ||| 1152 374827 +del ||| to the International ||| 0.142857 0.0732944 2.6679e-06 9.65976e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| to the West . ||| 0.0625 0.0732944 2.6679e-06 1.38351e-09 2.718 ||| 0-1 ||| 16 374827 +del ||| to the West ||| 0.0133333 0.0732944 2.6679e-06 4.56755e-07 2.718 ||| 0-1 ||| 75 374827 +del ||| to the acquis communautaire ||| 0.0666667 0.0732944 2.6679e-06 1.08016e-13 2.718 ||| 0-1 ||| 15 374827 +del ||| to the acquis ||| 0.166667 0.0732944 2.6679e-06 1.54309e-07 2.718 ||| 0-1 ||| 6 374827 +del ||| to the actual Rules of ||| 1 0.130625 2.6679e-06 1.65091e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| to the actual product ||| 1 0.0732944 2.6679e-06 2.71515e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| to the actual ||| 0.016129 0.0732944 2.6679e-06 4.46571e-06 2.718 ||| 0-1 ||| 62 374827 +del ||| to the adoption of a ||| 0.0117647 0.0732944 2.6679e-06 3.4284e-09 2.718 ||| 0-1 ||| 85 374827 +del ||| to the adoption of ||| 0.00930233 0.0732944 5.33579e-06 7.73454e-08 2.718 ||| 0-1 ||| 215 374827 +del ||| to the adoption ||| 0.0037594 0.0732944 2.6679e-06 1.42273e-06 2.718 ||| 0-1 ||| 266 374827 +del ||| to the advantage ||| 0.0104167 0.0732944 2.6679e-06 1.5647e-06 2.718 ||| 0-1 ||| 96 374827 +del ||| to the area ||| 0.00436681 0.0732944 2.6679e-06 1.28169e-05 2.718 ||| 0-1 ||| 229 374827 +del ||| to the benefit of the ||| 0.012987 0.10196 2.6679e-06 7.3607e-08 2.718 ||| 0-3 0-4 ||| 77 374827 +del ||| to the country over the ||| 1 0.0732944 2.6679e-06 3.2833e-10 2.718 ||| 0-4 ||| 1 374827 +del ||| to the covenant of Noble ||| 0.5 0.0732944 2.6679e-06 4.69777e-16 2.718 ||| 0-1 ||| 2 374827 +del ||| to the covenant of ||| 0.5 0.0732944 2.6679e-06 1.17444e-09 2.718 ||| 0-1 ||| 2 374827 +del ||| to the covenant ||| 0.333333 0.0732944 2.6679e-06 2.16033e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| to the creation ||| 0.00197628 0.0732944 2.6679e-06 1.43199e-06 2.718 ||| 0-1 ||| 506 374827 +del ||| to the debate for ||| 0.333333 0.0732944 2.6679e-06 4.69409e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| to the debate ||| 0.00141643 0.0732944 2.6679e-06 6.10756e-06 2.718 ||| 0-1 ||| 706 374827 +del ||| to the end of paragraph 25 ||| 1 0.0732944 2.6679e-06 1.0842e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| to the end of paragraph ||| 0.125 0.0732944 2.6679e-06 1.1534e-11 2.718 ||| 0-1 ||| 8 374827 +del ||| to the end of ||| 0.00947867 0.0732944 5.33579e-06 7.29999e-07 2.718 ||| 0-1 ||| 211 374827 +del ||| to the end ||| 0.00543478 0.0732944 5.33579e-06 1.3428e-05 2.718 ||| 0-1 ||| 368 374827 +del ||| to the extent of the ||| 0.1 0.10196 2.6679e-06 1.0742e-07 2.718 ||| 0-3 0-4 ||| 10 374827 +del ||| to the fact that ||| 0.000679348 0.0732944 2.6679e-06 1.52073e-06 2.718 ||| 0-1 ||| 1472 374827 +del ||| to the fact ||| 0.000859476 0.0732944 5.33579e-06 9.04036e-05 2.718 ||| 0-1 ||| 2327 374827 +del ||| to the findings of ||| 0.1 0.0732944 2.6679e-06 1.208e-08 2.718 ||| 0-1 ||| 10 374827 +del ||| to the findings ||| 0.0588235 0.0732944 2.6679e-06 2.22205e-07 2.718 ||| 0-1 ||| 17 374827 +del ||| to the future ||| 0.002002 0.0732944 5.33579e-06 8.19691e-06 2.718 ||| 0-1 ||| 999 374827 +del ||| to the importance ||| 0.00322581 0.0732944 2.6679e-06 4.00896e-06 2.718 ||| 0-1 ||| 310 374827 +del ||| to the introduction ||| 0.00434783 0.0732944 2.6679e-06 1.62025e-06 2.718 ||| 0-1 ||| 230 374827 +del ||| to the issues covered by ||| 1 0.0461582 2.6679e-06 1.58841e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| to the job ||| 0.0285714 0.0732944 2.6679e-06 2.41031e-06 2.718 ||| 0-1 ||| 35 374827 +del ||| to the letter ||| 0.011236 0.0732944 5.33579e-06 7.99322e-07 2.718 ||| 0-1 ||| 178 374827 +del ||| to the main objectives of the ||| 0.333333 0.0924045 2.6679e-06 1.47533e-11 2.718 ||| 0-1 0-4 0-5 ||| 3 374827 +del ||| to the many contributions ||| 0.25 0.0732944 2.6679e-06 2.40504e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| to the many ||| 0.00462963 0.0732944 2.6679e-06 1.05949e-05 2.718 ||| 0-1 ||| 216 374827 +del ||| to the memory of ||| 0.0243902 0.130625 2.6679e-06 1.85057e-08 2.718 ||| 0-3 ||| 41 374827 +del ||| to the numerical code ||| 0.5 0.0732944 2.6679e-06 2.04923e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| to the numerical ||| 0.5 0.0732944 2.6679e-06 1.23447e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| to the obligations of the ||| 0.111111 0.10196 2.6679e-06 7.43335e-09 2.718 ||| 0-3 0-4 ||| 9 374827 +del ||| to the office of ||| 0.0769231 0.130625 2.6679e-06 1.65586e-07 2.718 ||| 0-3 ||| 13 374827 +del ||| to the one that has ||| 0.333333 0.0732944 2.6679e-06 1.11382e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| to the one that ||| 0.04 0.0732944 2.6679e-06 2.1638e-06 2.718 ||| 0-1 ||| 25 374827 +del ||| to the one ||| 0.0294118 0.0732944 1.06716e-05 0.000128632 2.718 ||| 0-1 ||| 136 374827 +del ||| to the point of being ||| 0.333333 0.130625 2.6679e-06 4.0061e-09 2.718 ||| 0-3 ||| 3 374827 +del ||| to the point of ||| 0.00900901 0.130625 2.6679e-06 1.40772e-06 2.718 ||| 0-3 ||| 111 374827 +del ||| to the position of the ||| 0.0217391 0.10196 2.6679e-06 1.84045e-07 2.718 ||| 0-3 0-4 ||| 46 374827 +del ||| to the question of demoralisation ||| 1 0.0732944 2.6679e-06 5.55209e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| to the question of extending the ||| 1 0.0732944 2.6679e-06 1.74687e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| to the question of extending ||| 1 0.0732944 2.6679e-06 2.84545e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| to the question of ||| 0.003367 0.0732944 5.33579e-06 1.38802e-06 2.718 ||| 0-1 ||| 594 374827 +del ||| to the question ||| 0.00185701 0.0732944 5.33579e-06 2.5532e-05 2.718 ||| 0-1 ||| 1077 374827 +del ||| to the rules of the ||| 0.0196078 0.10196 2.6679e-06 6.4944e-08 2.718 ||| 0-3 0-4 ||| 51 374827 +del ||| to the satisfaction ||| 0.0263158 0.0732944 2.6679e-06 3.67256e-07 2.718 ||| 0-1 ||| 38 374827 +del ||| to the start of the ||| 0.111111 0.10196 2.6679e-06 7.7631e-08 2.718 ||| 0-3 0-4 ||| 9 374827 +del ||| to the term ||| 0.0526316 0.0732944 2.6679e-06 3.37629e-06 2.718 ||| 0-1 ||| 19 374827 +del ||| to the text of the ||| 0.0227273 0.10196 2.6679e-06 4.82888e-08 2.718 ||| 0-3 0-4 ||| 44 374827 +del ||| to the type of ||| 0.025641 0.130625 2.6679e-06 1.88276e-07 2.718 ||| 0-3 ||| 39 374827 +del ||| to the very ||| 0.0104712 0.0732944 5.33579e-06 0.000107384 2.718 ||| 0-1 ||| 191 374827 +del ||| to the victims of ||| 0.0075188 0.130625 2.6679e-06 5.68046e-08 2.718 ||| 0-3 ||| 133 374827 +del ||| to the way in which we approach ||| 1 0.0732944 2.6679e-06 3.00997e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| to the way in which we ||| 0.166667 0.0732944 2.6679e-06 1.37316e-10 2.718 ||| 0-1 ||| 6 374827 +del ||| to the way in which ||| 0.00617284 0.0732944 2.6679e-06 1.20959e-08 2.718 ||| 0-1 ||| 162 374827 +del ||| to the way in ||| 0.00598802 0.0732944 2.6679e-06 1.42395e-06 2.718 ||| 0-1 ||| 167 374827 +del ||| to the way ||| 0.00289855 0.0732944 2.6679e-06 6.65258e-05 2.718 ||| 0-1 ||| 345 374827 +del ||| to the will of the ||| 0.025641 0.10196 2.6679e-06 4.83514e-06 2.718 ||| 0-3 0-4 ||| 39 374827 +del ||| to the wishes of ||| 0.0181818 0.130625 2.6679e-06 8.51264e-08 2.718 ||| 0-3 ||| 55 374827 +del ||| to the word ' ||| 0.0666667 0.0513318 2.6679e-06 1.49173e-08 2.718 ||| 0-1 0-3 ||| 15 374827 +del ||| to the world outside the ||| 0.333333 0.0732944 2.6679e-06 1.7221e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| to the world outside ||| 0.111111 0.0732944 2.6679e-06 2.8051e-10 2.718 ||| 0-1 ||| 9 374827 +del ||| to the world ||| 0.00289017 0.0732944 2.6679e-06 7.03033e-06 2.718 ||| 0-1 ||| 346 374827 +del ||| to the ||| 0.0204964 0.0732944 0.00932964 0.0308619 2.718 ||| 0-1 ||| 170615 374827 +del ||| to their ||| 0.000461361 0.0012173 5.33579e-06 1.41196e-05 2.718 ||| 0-1 ||| 4335 374827 +del ||| to them by the European ||| 1 0.0420896 2.6679e-06 4.11057e-09 2.718 ||| 0-2 0-3 0-4 ||| 1 374827 +del ||| to them from the ||| 0.333333 0.082213 2.6679e-06 1.79419e-06 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| to think of ||| 0.00680272 0.130625 2.6679e-06 1.0026e-05 2.718 ||| 0-2 ||| 147 374827 +del ||| to this year ’ s ||| 1 0.106997 2.6679e-06 1.52304e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| to this year ’ ||| 1 0.106997 2.6679e-06 8.00633e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| to this ||| 0.00208155 0.0033154 9.07085e-05 0.00020401 2.718 ||| 0-1 ||| 16334 374827 +del ||| to those disputes in the ||| 1 0.0458111 2.6679e-06 4.7607e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| to those in ||| 0.00806452 0.0183279 2.6679e-06 1.73508e-06 2.718 ||| 0-2 ||| 124 374827 +del ||| to those ||| 0.000243132 0.0006066 2.6679e-06 9.63415e-07 2.718 ||| 0-0 ||| 4113 374827 +del ||| to turn the ||| 0.00671141 0.0732944 2.6679e-06 6.91923e-06 2.718 ||| 0-2 ||| 149 374827 +del ||| to undertake a radical review of the ||| 1 0.10196 2.6679e-06 2.56794e-18 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| to upgrade the ||| 0.0285714 0.0732944 2.6679e-06 5.55513e-08 2.718 ||| 0-2 ||| 35 374827 +del ||| to uphold the ||| 0.00840336 0.0732944 2.6679e-06 3.20963e-07 2.718 ||| 0-2 ||| 119 374827 +del ||| to us by the ||| 0.0638298 0.0597263 8.00369e-06 1.4383e-06 2.718 ||| 0-2 0-3 ||| 47 374827 +del ||| to us by ||| 0.00769231 0.0461582 2.6679e-06 4.1412e-06 2.718 ||| 0-2 ||| 130 374827 +del ||| to us the ||| 0.1 0.0732944 2.6679e-06 8.895e-05 2.718 ||| 0-2 ||| 10 374827 +del ||| to us ||| 0.000405597 0.0006066 5.33579e-06 3.83477e-06 2.718 ||| 0-0 ||| 4931 374827 +del ||| to use the ||| 0.000970874 0.0732944 2.6679e-06 1.5005e-05 2.718 ||| 0-2 ||| 1030 374827 +del ||| to vehicle ||| 0.166667 0.0375059 2.6679e-06 9.339e-06 2.718 ||| 0-1 ||| 6 374827 +del ||| to visa ||| 0.25 0.0207096 2.6679e-06 1.42351e-05 2.718 ||| 0-1 ||| 4 374827 +del ||| to wait for ||| 0.0030303 0.0138653 2.6679e-06 2.58112e-08 2.718 ||| 0-2 ||| 330 374827 +del ||| to water it ||| 1 0.0856775 2.6679e-06 1.65619e-06 2.718 ||| 0-1 ||| 1 374827 +del ||| to water ||| 0.00606061 0.0856775 2.6679e-06 9.31323e-05 2.718 ||| 0-1 ||| 165 374827 +del ||| to welcome the ||| 0.00206612 0.0732944 2.6679e-06 3.39789e-06 2.718 ||| 0-2 ||| 484 374827 +del ||| to what ||| 0.000283607 5.59e-05 2.6679e-06 1.04853e-06 2.718 ||| 0-1 ||| 3526 374827 +del ||| to whether the ||| 0.0052356 0.0732944 2.6679e-06 8.10741e-06 2.718 ||| 0-2 ||| 191 374827 +del ||| to which the budget has to be ||| 1 0.0732944 2.6679e-06 2.68165e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| to which the budget has to ||| 1 0.0732944 2.6679e-06 1.4797e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| to which the budget has ||| 1 0.0732944 2.6679e-06 1.66524e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| to which the budget ||| 1 0.0732944 2.6679e-06 3.23504e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| to which the ||| 0.00958084 0.0732944 2.13432e-05 0.000262159 2.718 ||| 0-2 ||| 835 374827 +del ||| to which ||| 0.00016129 0.0006066 2.6679e-06 1.13021e-05 2.718 ||| 0-0 ||| 6200 374827 +del ||| to win the ||| 0.010989 0.0732944 2.6679e-06 4.99962e-07 2.718 ||| 0-2 ||| 91 374827 +del ||| to win ||| 0.00308642 0.0006066 2.6679e-06 2.15541e-08 2.718 ||| 0-0 ||| 324 374827 +del ||| to working on the ||| 0.333333 0.0436809 2.6679e-06 5.76298e-08 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| to working ||| 0.003367 0.0101757 2.6679e-06 2.2179e-05 2.718 ||| 0-1 ||| 297 374827 +del ||| to write home about , ||| 0.333333 0.0101916 2.6679e-06 1.4649e-14 2.718 ||| 0-3 ||| 3 374827 +del ||| to write home about ||| 0.166667 0.0101916 2.6679e-06 1.22838e-13 2.718 ||| 0-3 ||| 6 374827 +del ||| to your ||| 0.000655738 0.0017627 2.6679e-06 6.77099e-06 2.718 ||| 0-1 ||| 1525 374827 +del ||| to ||| 0.000761696 0.0006066 0.00227572 0.0013305 2.718 ||| 0-0 ||| 1.11987e+06 374827 +del ||| tobacco ||| 0.00190114 0.170841 1.33395e-05 0.0010481 2.718 ||| 0-0 ||| 2630 374827 +del ||| today by the ||| 0.020202 0.0597263 5.33579e-06 2.53451e-06 2.718 ||| 0-1 0-2 ||| 99 374827 +del ||| today by ||| 0.004 0.0461582 2.6679e-06 7.29743e-06 2.718 ||| 0-1 ||| 250 374827 +del ||| today from the ||| 0.05 0.082213 2.6679e-06 3.39714e-06 2.718 ||| 0-1 0-2 ||| 20 374827 +del ||| today to the ||| 0.0217391 0.0732944 2.6679e-06 1.3928e-05 2.718 ||| 0-2 ||| 46 374827 +del ||| today ’ s ||| 0.0128205 0.137519 2.6679e-06 2.64314e-08 2.718 ||| 0-1 0-2 ||| 78 374827 +del ||| together in ||| 0.00166667 0.0183279 2.6679e-06 1.6196e-05 2.718 ||| 0-1 ||| 600 374827 +del ||| together the ||| 0.00787402 0.0732944 2.6679e-06 0.000208598 2.718 ||| 0-1 ||| 127 374827 +del ||| together to form a ||| 0.166667 0.0008087 2.6679e-06 2.05156e-11 2.718 ||| 0-3 ||| 6 374827 +del ||| tone set by ||| 0.333333 0.0461582 2.6679e-06 7.46521e-11 2.718 ||| 0-2 ||| 3 374827 +del ||| tonnes from ||| 0.0714286 0.0911315 2.6679e-06 4.37799e-07 2.718 ||| 0-1 ||| 14 374827 +del ||| too , of a ||| 0.5 0.130625 2.6679e-06 2.12222e-06 2.718 ||| 0-2 ||| 2 374827 +del ||| too , of the ||| 0.142857 0.10196 5.33579e-06 1.66287e-05 2.718 ||| 0-2 0-3 ||| 14 374827 +del ||| too , of ||| 0.0769231 0.130625 5.33579e-06 4.78778e-05 2.718 ||| 0-2 ||| 26 374827 +del ||| too aware of this ||| 1 0.0669701 2.6679e-06 1.28031e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| took in the ||| 0.125 0.0458111 2.6679e-06 1.38146e-06 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| took office ||| 0.0113636 0.0049492 2.6679e-06 3.6875e-09 2.718 ||| 0-1 ||| 88 374827 +del ||| took place and the ||| 0.333333 0.0732944 2.6679e-06 9.65744e-10 2.718 ||| 0-3 ||| 3 374827 +del ||| took place before the ||| 0.1 0.0732944 2.6679e-06 1.92827e-11 2.718 ||| 0-3 ||| 10 374827 +del ||| took place on ||| 0.0220588 0.0140673 8.00369e-06 2.17714e-09 2.718 ||| 0-2 ||| 136 374827 +del ||| took up ||| 0.00833333 0.0020886 2.6679e-06 2.78922e-08 2.718 ||| 0-1 ||| 120 374827 +del ||| top of the ||| 0.00297619 0.10196 2.6679e-06 7.07951e-06 2.718 ||| 0-1 0-2 ||| 336 374827 +del ||| top of ||| 0.00181488 0.130625 2.6679e-06 2.03835e-05 2.718 ||| 0-1 ||| 551 374827 +del ||| total of ||| 0.00327869 0.130625 5.33579e-06 2.78171e-05 2.718 ||| 0-1 ||| 610 374827 +del ||| total sum of ||| 0.047619 0.130625 2.6679e-06 1.1711e-09 2.718 ||| 0-2 ||| 21 374827 +del ||| total ||| 0.000170126 0.0005421 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 5878 374827 +del ||| totally disgraceful ||| 0.166667 0.0048755 2.6679e-06 7.25e-11 2.718 ||| 0-0 ||| 6 374827 +del ||| totally reliant on the ||| 1 0.0436809 2.6679e-06 4.26741e-13 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| totally ||| 0.00101574 0.0048755 1.06716e-05 2.5e-05 2.718 ||| 0-0 ||| 3938 374827 +del ||| touched on once again today ||| 0.5 0.0140673 2.6679e-06 8.27446e-18 2.718 ||| 0-1 ||| 2 374827 +del ||| touched on once again ||| 0.5 0.0140673 2.6679e-06 1.83347e-14 2.718 ||| 0-1 ||| 2 374827 +del ||| touched on once ||| 0.5 0.0140673 2.6679e-06 3.17045e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| touched on ||| 0.00520833 0.0140673 2.6679e-06 7.74793e-08 2.718 ||| 0-1 ||| 192 374827 +del ||| tourism , not just holiday tourism ||| 1 0.0676417 2.6679e-06 9.88643e-21 2.718 ||| 0-5 ||| 1 374827 +del ||| tourism ||| 0.000774793 0.0676417 8.00369e-06 0.000486 2.718 ||| 0-0 ||| 3872 374827 +del ||| tourist ||| 0.00292398 0.0555556 5.33579e-06 5.39e-05 2.718 ||| 0-0 ||| 684 374827 +del ||| towards a ||| 0.000501756 0.001978 2.6679e-06 2.7349e-06 2.718 ||| 0-0 ||| 1993 374827 +del ||| towards making the ||| 0.0344828 0.0732944 2.6679e-06 1.69688e-08 2.718 ||| 0-2 ||| 29 374827 +del ||| towards my country , the ||| 1 0.0732944 2.6679e-06 1.21749e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| towards the ||| 0.00200172 0.0732944 1.86753e-05 4.41091e-05 2.718 ||| 0-1 ||| 3497 374827 +del ||| towards ||| 0.000475662 0.001978 2.40111e-05 6.17e-05 2.718 ||| 0-0 ||| 18921 374827 +del ||| town was the ||| 0.333333 0.0732944 2.6679e-06 1.37106e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| track of the ||| 0.0555556 0.10196 2.6679e-06 4.05714e-06 2.718 ||| 0-1 0-2 ||| 18 374827 +del ||| track of ||| 0.0377358 0.130625 5.33579e-06 1.16814e-05 2.718 ||| 0-1 ||| 53 374827 +del ||| trade , ||| 0.000843882 0.0203741 2.6679e-06 8.01988e-05 2.718 ||| 0-0 ||| 1185 374827 +del ||| trade barriers ||| 0.00632911 0.0203741 2.6679e-06 5.31275e-09 2.718 ||| 0-0 ||| 158 374827 +del ||| trade has doubled ||| 1 0.0203741 2.6679e-06 4.84637e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| trade has ||| 0.0333333 0.0203741 2.6679e-06 3.46169e-06 2.718 ||| 0-0 ||| 30 374827 +del ||| trade ||| 0.000559597 0.0203741 3.20148e-05 0.0006725 2.718 ||| 0-0 ||| 21444 374827 +del ||| trading volume of ||| 0.5 0.130625 2.6679e-06 5.81947e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| tradition of that ||| 1 0.130625 2.6679e-06 2.3322e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| tradition of ||| 0.00308642 0.130625 2.6679e-06 1.38643e-06 2.718 ||| 0-1 ||| 324 374827 +del ||| traditional feature of the ||| 0.5 0.10196 2.6679e-06 2.68325e-11 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| traffic and ||| 0.00847458 0.10034 2.6679e-06 8.25833e-06 2.718 ||| 0-0 ||| 118 374827 +del ||| traffic controllers ||| 0.0181818 0.0528634 2.6679e-06 4.4872e-10 2.718 ||| 0-1 ||| 55 374827 +del ||| traffic levels ||| 0.142857 0.10034 2.6679e-06 8.72913e-08 2.718 ||| 0-0 ||| 7 374827 +del ||| traffic lights ||| 0.0555556 0.10034 2.6679e-06 1.45046e-09 2.718 ||| 0-0 ||| 18 374827 +del ||| traffic surveillance ||| 1 0.10034 2.6679e-06 1.64825e-09 2.718 ||| 0-0 ||| 1 374827 +del ||| traffic ||| 0.0026441 0.10034 2.6679e-05 0.0006593 2.718 ||| 0-0 ||| 3782 374827 +del ||| trail of destruction , ||| 0.333333 0.130625 2.6679e-06 1.31708e-12 2.718 ||| 0-1 ||| 3 374827 +del ||| trail of destruction ||| 0.0909091 0.130625 2.6679e-06 1.10443e-11 2.718 ||| 0-1 ||| 11 374827 +del ||| trail of ||| 0.025 0.130625 2.6679e-06 1.06195e-06 2.718 ||| 0-1 ||| 40 374827 +del ||| train , a ||| 0.0666667 0.0008087 2.6679e-06 1.74229e-09 2.718 ||| 0-2 ||| 15 374827 +del ||| training of business managers during the pilot ||| 1 0.130625 2.6679e-06 4.42661e-26 2.718 ||| 0-1 ||| 1 374827 +del ||| training of business managers during the ||| 1 0.130625 2.6679e-06 8.85322e-21 2.718 ||| 0-1 ||| 1 374827 +del ||| training of business managers during ||| 1 0.130625 2.6679e-06 1.44209e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| training of business managers ||| 1 0.130625 2.6679e-06 1.43064e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| training of business ||| 1 0.130625 2.6679e-06 1.30058e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| training of ||| 0.00226244 0.130625 2.6679e-06 1.0413e-05 2.718 ||| 0-1 ||| 442 374827 +del ||| transactions in the ||| 0.166667 0.0458111 2.6679e-06 1.01151e-07 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| transactions ||| 0.000591366 0.0004095 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 1691 374827 +del ||| transfer of the ||| 0.0178571 0.10196 2.6679e-06 2.10029e-06 2.718 ||| 0-1 0-2 ||| 56 374827 +del ||| transformed from the ||| 1 0.082213 2.6679e-06 2.70988e-08 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| translates the ||| 0.2 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-1 ||| 5 374827 +del ||| transport , as ||| 0.0666667 0.0410216 2.6679e-06 1.17324e-06 2.718 ||| 0-0 ||| 15 374827 +del ||| transport , ||| 0.00129199 0.0410216 5.33579e-06 0.000114973 2.718 ||| 0-0 ||| 1548 374827 +del ||| transport must be ||| 0.125 0.0410216 2.6679e-06 2.70052e-08 2.718 ||| 0-0 ||| 8 374827 +del ||| transport must ||| 0.03125 0.0410216 2.6679e-06 1.49011e-06 2.718 ||| 0-0 ||| 32 374827 +del ||| transport networks ||| 0.00763359 0.0410216 2.6679e-06 1.1762e-08 2.718 ||| 0-0 ||| 131 374827 +del ||| transport ||| 0.000644093 0.0410216 3.73506e-05 0.0009641 2.718 ||| 0-0 ||| 21736 374827 +del ||| travel abroad by ||| 0.111111 0.0461582 2.6679e-06 5.07311e-12 2.718 ||| 0-2 ||| 9 374827 +del ||| travel by sea ||| 0.142857 0.0461582 2.6679e-06 1.82754e-11 2.718 ||| 0-1 ||| 7 374827 +del ||| travel by ||| 0.0119048 0.0461582 2.6679e-06 6.11218e-07 2.718 ||| 0-1 ||| 84 374827 +del ||| treasury ||| 0.0140845 0.150943 2.6679e-06 2.1e-05 2.718 ||| 0-0 ||| 71 374827 +del ||| treated equally ||| 0.0075188 0.023448 2.6679e-06 7.48797e-09 2.718 ||| 0-1 ||| 133 374827 +del ||| treated just like ||| 0.25 0.0056007 2.6679e-06 3.16681e-11 2.718 ||| 0-1 ||| 4 374827 +del ||| treated just ||| 0.25 0.0056007 2.6679e-06 1.78321e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| treatment by ||| 0.030303 0.0461582 2.6679e-06 9.78273e-07 2.718 ||| 0-1 ||| 33 374827 +del ||| treatment of the ||| 0.00840336 0.10196 2.6679e-06 6.19841e-06 2.718 ||| 0-1 0-2 ||| 119 374827 +del ||| treatment of ||| 0.000881057 0.130625 2.6679e-06 1.78466e-05 2.718 ||| 0-1 ||| 1135 374827 +del ||| treaty , as amended by the ||| 1 0.0732944 2.6679e-06 6.30282e-16 2.718 ||| 0-5 ||| 1 374827 +del ||| treaty that is to ||| 1 0.0006066 2.6679e-06 1.84481e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| true of the ||| 0.00666667 0.10196 2.6679e-06 1.65564e-05 2.718 ||| 0-1 0-2 ||| 150 374827 +del ||| true that the ||| 0.00143472 0.0732944 2.6679e-06 9.44133e-07 2.718 ||| 0-2 ||| 697 374827 +del ||| trustworthiness of a ||| 1 0.130625 2.6679e-06 5.23019e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| trustworthiness of ||| 0.111111 0.130625 2.6679e-06 1.17994e-07 2.718 ||| 0-1 ||| 9 374827 +del ||| try to exhaust those of their ||| 0.5 0.130625 2.6679e-06 7.45351e-18 2.718 ||| 0-4 ||| 2 374827 +del ||| try to exhaust those of ||| 0.5 0.130625 2.6679e-06 6.43043e-15 2.718 ||| 0-4 ||| 2 374827 +del ||| tune of the ||| 0.111111 0.10196 2.6679e-06 3.06335e-06 2.718 ||| 0-1 0-2 ||| 9 374827 +del ||| tune of ||| 0.00510204 0.130625 2.6679e-06 8.82007e-06 2.718 ||| 0-1 ||| 196 374827 +del ||| turn it to its ||| 1 0.0035806 2.6679e-06 1.731e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| turn the ||| 0.00408163 0.0732944 2.6679e-06 7.78682e-05 2.718 ||| 0-1 ||| 245 374827 +del ||| turning its attention ||| 0.111111 0.0035806 2.6679e-06 6.38356e-12 2.718 ||| 0-1 ||| 9 374827 +del ||| turning its ||| 0.0555556 0.0035806 2.6679e-06 2.443e-08 2.718 ||| 0-1 ||| 18 374827 +del ||| turning the vessel round ||| 1 0.0732944 2.6679e-06 8.65771e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| turning the vessel ||| 1 0.0732944 2.6679e-06 1.12878e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| turning the ||| 0.0152672 0.0732944 5.33579e-06 1.73658e-05 2.718 ||| 0-1 ||| 131 374827 +del ||| two of ||| 0.00132275 0.130625 2.6679e-06 6.97346e-05 2.718 ||| 0-1 ||| 756 374827 +del ||| two principles can the two aims ||| 0.0666667 0.0732944 2.6679e-06 9.28287e-20 2.718 ||| 0-3 ||| 15 374827 +del ||| two principles can the two ||| 0.0666667 0.0732944 2.6679e-06 2.32653e-15 2.718 ||| 0-3 ||| 15 374827 +del ||| two principles can the ||| 0.0666667 0.0732944 2.6679e-06 9.84151e-12 2.718 ||| 0-3 ||| 15 374827 +del ||| type from the ||| 0.333333 0.0732944 2.6679e-06 6.54401e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| type of abortion ||| 0.25 0.130625 2.6679e-06 8.62833e-11 2.718 ||| 0-1 ||| 4 374827 +del ||| type of attack ||| 0.1 0.130625 2.6679e-06 1.01814e-09 2.718 ||| 0-1 ||| 10 374827 +del ||| type of contract ||| 0.0434783 0.130625 2.6679e-06 5.4531e-10 2.718 ||| 0-1 ||| 23 374827 +del ||| type of deforestation that ||| 0.333333 0.130625 2.6679e-06 2.32228e-13 2.718 ||| 0-1 ||| 3 374827 +del ||| type of deforestation ||| 0.333333 0.130625 2.6679e-06 1.38053e-11 2.718 ||| 0-1 ||| 3 374827 +del ||| type of ||| 0.00377596 0.130625 3.20148e-05 3.45133e-05 2.718 ||| 0-1 ||| 3178 374827 +del ||| types of ||| 0.00268097 0.130625 1.33395e-05 1.35988e-05 2.718 ||| 0-1 ||| 1865 374827 +del ||| typify the ||| 0.142857 0.0732944 2.6679e-06 2.43121e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| tyres in contact ||| 0.166667 0.0183279 2.6679e-06 5.66564e-13 2.718 ||| 0-1 ||| 6 374827 +del ||| tyres in ||| 0.125 0.0183279 2.6679e-06 2.9663e-08 2.718 ||| 0-1 ||| 8 374827 +del ||| ugly duckling ’ of the ||| 1 0.130625 2.6679e-06 3.65967e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| ugly duckling ’ of ||| 1 0.130625 2.6679e-06 5.96117e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| umbrella of the ||| 0.1 0.10196 8.00369e-06 5.94228e-07 2.718 ||| 0-1 0-2 ||| 30 374827 +del ||| unable to control ||| 0.1 0.0007854 2.6679e-06 3.17784e-11 2.718 ||| 0-2 ||| 10 374827 +del ||| unaware of ||| 0.010101 0.130625 2.6679e-06 9.43954e-07 2.718 ||| 0-1 ||| 99 374827 +del ||| under Title ||| 0.025641 0.113065 2.6679e-06 2.12051e-08 2.718 ||| 0-1 ||| 39 374827 +del ||| under an amnesty granted by ||| 1 0.0461582 2.6679e-06 3.75973e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| under an ||| 0.00793651 0.014966 2.6679e-06 3.53176e-06 2.718 ||| 0-0 ||| 126 374827 +del ||| under its ||| 0.00490196 0.0092733 2.6679e-06 3.88242e-07 2.718 ||| 0-0 0-1 ||| 204 374827 +del ||| under pressure , ||| 0.0294118 0.014966 2.6679e-06 5.69506e-09 2.718 ||| 0-0 ||| 34 374827 +del ||| under pressure ||| 0.00241546 0.014966 2.6679e-06 4.77555e-08 2.718 ||| 0-0 ||| 414 374827 +del ||| under that of the ||| 1 0.10196 2.6679e-06 6.18365e-07 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| under that ||| 0.0104167 0.014966 2.6679e-06 1.33664e-05 2.718 ||| 0-0 ||| 96 374827 +del ||| under the Federal Republic of ||| 1 0.0441302 2.6679e-06 7.41159e-15 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| under the Federal Republic ||| 1 0.0441302 2.6679e-06 1.36333e-13 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| under the Federal ||| 1 0.0441302 2.6679e-06 2.87016e-09 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| under the Generalised ||| 0.111111 0.0441302 2.6679e-06 8.14133e-09 2.718 ||| 0-0 0-1 ||| 9 374827 +del ||| under the current ||| 0.00847458 0.0732944 2.6679e-06 2.05369e-08 2.718 ||| 0-1 ||| 118 374827 +del ||| under the influence ||| 0.0140845 0.014966 2.6679e-06 1.66834e-09 2.718 ||| 0-0 ||| 71 374827 +del ||| under the name ||| 0.0243902 0.0732944 2.6679e-06 1.08915e-08 2.718 ||| 0-1 ||| 41 374827 +del ||| under the ||| 0.0163381 0.0441302 0.000568262 0.000275977 2.718 ||| 0-0 0-1 ||| 13037 374827 +del ||| under this regulation ||| 0.0277778 0.0033154 2.6679e-06 5.74991e-11 2.718 ||| 0-1 ||| 36 374827 +del ||| under this ||| 0.00309598 0.0033154 5.33579e-06 8.23769e-07 2.718 ||| 0-1 ||| 646 374827 +del ||| under threat from ||| 0.0263158 0.0911315 2.6679e-06 3.04833e-10 2.718 ||| 0-2 ||| 38 374827 +del ||| under way ||| 0.0025641 0.014966 8.00369e-06 1.71284e-06 2.718 ||| 0-0 ||| 1170 374827 +del ||| under which this is ||| 0.2 0.014966 2.6679e-06 1.36689e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| under which this ||| 0.0769231 0.014966 2.6679e-06 4.36132e-08 2.718 ||| 0-0 ||| 13 374827 +del ||| under which ||| 0.00130208 0.014966 2.6679e-06 6.74981e-06 2.718 ||| 0-0 ||| 768 374827 +del ||| under ||| 0.00396814 0.014966 0.000360166 0.0007946 2.718 ||| 0-0 ||| 34021 374827 +del ||| underlies the ||| 0.0526316 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-1 ||| 19 374827 +del ||| underlying the ||| 0.0060241 0.0732944 2.6679e-06 6.11276e-06 2.718 ||| 0-1 ||| 166 374827 +del ||| underlying ||| 0.000656599 0.0013812 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 1523 374827 +del ||| undermine the ||| 0.0016835 0.0732944 2.6679e-06 3.88994e-06 2.718 ||| 0-1 ||| 594 374827 +del ||| undermined out of a desire ||| 0.5 0.130625 2.6679e-06 3.37528e-14 2.718 ||| 0-2 ||| 2 374827 +del ||| undermined out of a ||| 0.5 0.130625 2.6679e-06 7.21214e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| undermined out of ||| 0.5 0.130625 2.6679e-06 1.62707e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| underpinning the ||| 0.00813008 0.0732944 2.6679e-06 4.86242e-07 2.718 ||| 0-1 ||| 123 374827 +del ||| understandably increased as a result ||| 1 0.0190026 2.6679e-06 1.46593e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| understandably increased as a ||| 1 0.0190026 2.6679e-06 2.78429e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| understandably increased as ||| 1 0.0190026 2.6679e-06 6.28142e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| understandably increased ||| 1 0.0190026 2.6679e-06 6.1556e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| understanding for the ||| 0.025641 0.0435798 2.6679e-06 1.26296e-07 2.718 ||| 0-1 0-2 ||| 39 374827 +del ||| understanding of the ||| 0.00600601 0.130625 5.33579e-06 6.12108e-07 2.718 ||| 0-1 ||| 333 374827 +del ||| understanding of ||| 0.00388098 0.130625 8.00369e-06 9.97051e-06 2.718 ||| 0-1 ||| 773 374827 +del ||| undertake a radical review of the ||| 1 0.10196 2.6679e-06 2.88993e-17 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| undertaken are new and pioneering and the ||| 1 0.0732944 2.6679e-06 5.16422e-20 2.718 ||| 0-6 ||| 1 374827 +del ||| undertaken by the ||| 0.00847458 0.0597263 5.33579e-06 2.66761e-07 2.718 ||| 0-1 0-2 ||| 236 374827 +del ||| undertaken by ||| 0.00455581 0.0461582 5.33579e-06 7.68066e-07 2.718 ||| 0-1 ||| 439 374827 +del ||| undertaking transport ||| 0.333333 0.0410216 2.6679e-06 2.88266e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| unemployment in continental Europe is far too ||| 1 0.0517582 2.6679e-06 8.68225e-23 2.718 ||| 0-0 ||| 1 374827 +del ||| unemployment in continental Europe is far ||| 1 0.0517582 2.6679e-06 6.37932e-20 2.718 ||| 0-0 ||| 1 374827 +del ||| unemployment in continental Europe is ||| 0.5 0.0517582 2.6679e-06 9.34425e-17 2.718 ||| 0-0 ||| 2 374827 +del ||| unemployment in continental Europe ||| 0.5 0.0517582 2.6679e-06 2.98147e-15 2.718 ||| 0-0 ||| 2 374827 +del ||| unemployment in continental ||| 1 0.0517582 2.6679e-06 5.89223e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| unemployment in ||| 0.00239808 0.0517582 2.6679e-06 1.47306e-05 2.718 ||| 0-0 ||| 417 374827 +del ||| unemployment rate ||| 0.00423729 0.0517582 2.6679e-06 6.90953e-08 2.718 ||| 0-0 ||| 236 374827 +del ||| unemployment ||| 0.000915152 0.0517582 1.86753e-05 0.0006882 2.718 ||| 0-0 ||| 7649 374827 +del ||| unfair on ||| 0.125 0.0140673 2.6679e-06 7.74793e-08 2.718 ||| 0-1 ||| 8 374827 +del ||| unfounded . however , a number of ||| 1 0.130625 2.6679e-06 7.50727e-18 2.718 ||| 0-6 ||| 1 374827 +del ||| uniform tax ||| 0.111111 0.0038709 2.6679e-06 4.9708e-10 2.718 ||| 0-1 ||| 9 374827 +del ||| union of ||| 0.00452489 0.130625 2.6679e-06 6.78467e-06 2.718 ||| 0-1 ||| 221 374827 +del ||| unique power of ||| 0.5 0.130625 2.6679e-06 4.13989e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| unit prices in ||| 1 0.0100703 2.6679e-06 3.54561e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| unit prices ||| 0.125 0.0100703 2.6679e-06 1.65648e-09 2.718 ||| 0-1 ||| 8 374827 +del ||| universal ||| 0.00179292 0.0040559 1.06716e-05 1.18e-05 2.718 ||| 0-0 ||| 2231 374827 +del ||| unnoticed in ||| 0.0909091 0.0183279 2.6679e-06 4.85395e-08 2.718 ||| 0-1 ||| 11 374827 +del ||| until the ||| 0.000759301 0.0732944 2.6679e-06 1.68795e-05 2.718 ||| 0-1 ||| 1317 374827 +del ||| unto Caesar the things which are ||| 0.25 0.0732944 2.6679e-06 2.8333e-20 2.718 ||| 0-2 ||| 4 374827 +del ||| unto Caesar the things which ||| 0.333333 0.0732944 2.6679e-06 1.86737e-18 2.718 ||| 0-2 ||| 3 374827 +del ||| unto Caesar the things ||| 0.333333 0.0732944 2.6679e-06 2.1983e-16 2.718 ||| 0-2 ||| 3 374827 +del ||| unto Caesar the ||| 1 0.0732944 2.6679e-06 5.34866e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| up a ||| 0.0014881 0.0008087 2.6679e-06 2.88017e-06 2.718 ||| 0-1 ||| 672 374827 +del ||| up about ||| 0.0333333 0.0101916 2.6679e-06 4.78868e-06 2.718 ||| 0-1 ||| 30 374827 +del ||| up and the ||| 0.1 0.0732944 2.6679e-06 1.48372e-05 2.718 ||| 0-2 ||| 10 374827 +del ||| up banana plantations ||| 1 0.180809 2.6679e-06 8.68518e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| up banana ||| 1 0.180809 2.6679e-06 1.24074e-06 2.718 ||| 0-1 ||| 1 374827 +del ||| up by others - ||| 1 0.0461582 2.6679e-06 2.02196e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| up by others ||| 0.142857 0.0461582 2.6679e-06 5.3603e-09 2.718 ||| 0-1 ||| 7 374827 +del ||| up by the real ||| 1 0.0597263 2.6679e-06 3.44571e-09 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| up by the ||| 0.0392157 0.0597263 2.13432e-05 1.91535e-05 2.718 ||| 0-1 0-2 ||| 204 374827 +del ||| up by ||| 0.0375 0.0461582 5.60258e-05 5.51471e-05 2.718 ||| 0-1 ||| 560 374827 +del ||| up for ||| 0.00178891 0.0138653 2.6679e-06 3.66915e-05 2.718 ||| 0-1 ||| 559 374827 +del ||| up from the ||| 0.285714 0.082213 5.33579e-06 2.56724e-05 2.718 ||| 0-1 0-2 ||| 7 374827 +del ||| up from ||| 0.03125 0.0911315 2.6679e-06 7.39164e-05 2.718 ||| 0-1 ||| 32 374827 +del ||| up goes the ||| 1 0.0732944 2.6679e-06 1.64056e-07 2.718 ||| 0-2 ||| 1 374827 +del ||| up having everything ||| 1 0.0020886 2.6679e-06 6.69759e-12 2.718 ||| 0-0 ||| 1 374827 +del ||| up having ||| 0.111111 0.0020886 2.6679e-06 7.24064e-08 2.718 ||| 0-0 ||| 9 374827 +del ||| up in the ||| 0.00448431 0.0732944 2.6679e-06 2.53541e-05 2.718 ||| 0-2 ||| 223 374827 +del ||| up in ||| 0.00125156 0.0183279 2.6679e-06 9.19689e-05 2.718 ||| 0-1 ||| 799 374827 +del ||| up its mind ||| 0.0833333 0.0035806 2.6679e-06 4.19759e-10 2.718 ||| 0-1 ||| 12 374827 +del ||| up its ||| 0.0186916 0.0028346 5.33579e-06 9.23943e-08 2.718 ||| 0-0 0-1 ||| 107 374827 +del ||| up mainly of ||| 0.333333 0.130625 2.6679e-06 4.7083e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| up next ||| 0.333333 0.0281625 2.6679e-06 3.28806e-06 2.718 ||| 0-1 ||| 3 374827 +del ||| up of the ||| 0.169811 0.10196 2.40111e-05 0.000349416 2.718 ||| 0-1 0-2 ||| 53 374827 +del ||| up of ||| 0.0153846 0.130625 1.33395e-05 0.00100605 2.718 ||| 0-1 ||| 325 374827 +del ||| up on the ||| 0.0252101 0.0436809 8.00369e-06 1.16172e-05 2.718 ||| 0-1 0-2 ||| 119 374827 +del ||| up on ||| 0.00595238 0.0140673 5.33579e-06 3.34485e-05 2.718 ||| 0-1 ||| 336 374827 +del ||| up out of the ||| 1 0.10196 2.6679e-06 1.3384e-06 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| up that ||| 0.0196078 0.0020886 2.6679e-06 3.18096e-06 2.718 ||| 0-0 ||| 51 374827 +del ||| up the ||| 0.0432588 0.0732944 0.000160074 0.00118452 2.718 ||| 0-1 ||| 1387 374827 +del ||| up their ratification of the ||| 1 0.10196 2.6679e-06 2.02504e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| up there in the ||| 0.142857 0.0458111 2.6679e-06 9.79126e-08 2.718 ||| 0-2 0-3 ||| 7 374827 +del ||| up these ||| 0.0196078 0.0020886 2.6679e-06 1.96116e-07 2.718 ||| 0-0 ||| 51 374827 +del ||| up to date with ||| 0.0625 0.0020886 2.6679e-06 1.09811e-11 2.718 ||| 0-0 ||| 16 374827 +del ||| up to date ||| 0.00680272 0.0020886 2.6679e-06 1.71728e-09 2.718 ||| 0-0 ||| 147 374827 +del ||| up to just ||| 1 0.0056007 2.6679e-06 9.95219e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| up to the covenant of Noble ||| 0.5 0.0732944 2.6679e-06 1.60217e-18 2.718 ||| 0-2 ||| 2 374827 +del ||| up to the covenant of ||| 0.5 0.0732944 2.6679e-06 4.00543e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| up to the covenant ||| 0.5 0.0732944 2.6679e-06 7.36781e-11 2.718 ||| 0-2 ||| 2 374827 +del ||| up to the job ||| 0.03125 0.0732944 2.6679e-06 8.22037e-09 2.718 ||| 0-2 ||| 32 374827 +del ||| up to the ||| 0.0125833 0.0732944 4.53543e-05 0.000105254 2.718 ||| 0-2 ||| 1351 374827 +del ||| up to ||| 0.000901876 0.0020886 1.33395e-05 1.68031e-05 2.718 ||| 0-0 ||| 5544 374827 +del ||| up under the ||| 0.0555556 0.0441302 2.6679e-06 9.4122e-07 2.718 ||| 0-1 0-2 ||| 18 374827 +del ||| up with some ||| 0.037037 0.0045281 2.6679e-06 7.0705e-09 2.718 ||| 0-1 ||| 27 374827 +del ||| up with the ||| 0.00423729 0.0732944 2.6679e-06 7.57442e-06 2.718 ||| 0-2 ||| 236 374827 +del ||| up with ||| 0.00100604 0.0045281 2.6679e-06 6.49086e-06 2.718 ||| 0-1 ||| 994 374827 +del ||| up ||| 0.00394345 0.0020886 0.000109384 0.0001891 2.718 ||| 0-0 ||| 10397 374827 +del ||| update you on developments in ||| 1 0.0183279 2.6679e-06 3.83209e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| upgrade the ||| 0.0196078 0.0732944 2.6679e-06 6.25168e-07 2.718 ||| 0-1 ||| 51 374827 +del ||| uphold the ||| 0.00423729 0.0732944 2.6679e-06 3.61208e-06 2.718 ||| 0-1 ||| 236 374827 +del ||| upon a ||| 0.00684932 0.0034407 2.6679e-06 2.26948e-06 2.718 ||| 0-0 ||| 146 374827 +del ||| upon by ||| 0.03125 0.0461582 2.6679e-06 3.83548e-06 2.718 ||| 0-1 ||| 32 374827 +del ||| upon the ||| 0.00610998 0.0732944 1.60074e-05 8.23833e-05 2.718 ||| 0-1 ||| 982 374827 +del ||| upon this ||| 0.015625 0.00337805 2.6679e-06 1.1755e-07 2.718 ||| 0-0 0-1 ||| 64 374827 +del ||| upon ||| 0.00383926 0.0034407 4.00185e-05 5.12e-05 2.718 ||| 0-0 ||| 3907 374827 +del ||| urge the Federal Institute ||| 0.5 0.0732944 2.6679e-06 5.07895e-16 2.718 ||| 0-1 ||| 2 374827 +del ||| urge the Federal ||| 0.5 0.0732944 2.6679e-06 1.18115e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| urge the ||| 0.00146199 0.0732944 2.6679e-06 1.13572e-05 2.718 ||| 0-1 ||| 684 374827 +del ||| us a ||| 0.00242718 0.0008087 2.6679e-06 2.43402e-06 2.718 ||| 0-1 ||| 412 374827 +del ||| us by the ||| 0.0384615 0.0597263 8.00369e-06 1.61865e-05 2.718 ||| 0-1 0-2 ||| 78 374827 +del ||| us by ||| 0.012766 0.0461582 8.00369e-06 4.66046e-05 2.718 ||| 0-1 ||| 235 374827 +del ||| us from ||| 0.00625 0.0911315 2.6679e-06 6.24665e-05 2.718 ||| 0-1 ||| 160 374827 +del ||| us in the ||| 0.00217865 0.0458111 2.6679e-06 2.69943e-05 2.718 ||| 0-1 0-2 ||| 459 374827 +del ||| us just ||| 0.0454545 0.0056007 2.6679e-06 9.46514e-07 2.718 ||| 0-1 ||| 22 374827 +del ||| us the ||| 0.00342466 0.0732944 2.6679e-06 0.00100103 2.718 ||| 0-1 ||| 292 374827 +del ||| us think of ||| 0.166667 0.130625 2.6679e-06 3.25204e-07 2.718 ||| 0-2 ||| 6 374827 +del ||| us to the ||| 0.0222222 0.0732944 2.6679e-06 8.895e-05 2.718 ||| 0-2 ||| 45 374827 +del ||| us to ||| 0.000288517 0.0006066 2.6679e-06 3.83477e-06 2.718 ||| 0-1 ||| 3466 374827 +del ||| us under an ||| 0.5 0.014966 2.6679e-06 1.01792e-08 2.718 ||| 0-1 ||| 2 374827 +del ||| us under ||| 0.0625 0.014966 2.6679e-06 2.2902e-06 2.718 ||| 0-1 ||| 16 374827 +del ||| use by ||| 0.00826446 0.0461582 2.6679e-06 7.86176e-06 2.718 ||| 0-1 ||| 121 374827 +del ||| use of the ||| 0.00188088 0.10196 8.00369e-06 4.98127e-05 2.718 ||| 0-1 0-2 ||| 1595 374827 +del ||| use of these ||| 0.00327869 0.130625 2.6679e-06 1.48743e-07 2.718 ||| 0-1 ||| 305 374827 +del ||| use of ||| 0.00104265 0.130625 2.93469e-05 0.000143422 2.718 ||| 0-1 ||| 10550 374827 +del ||| use the ||| 0.00183993 0.0732944 1.06716e-05 0.000168865 2.718 ||| 0-1 ||| 2174 374827 +del ||| use to the ||| 0.0322581 0.0732944 2.6679e-06 1.5005e-05 2.718 ||| 0-2 ||| 31 374827 +del ||| used by the ||| 0.00332226 0.0732944 2.6679e-06 7.82257e-07 2.718 ||| 0-2 ||| 301 374827 +del ||| used by ||| 0.00111982 0.0461582 2.6679e-06 6.93684e-06 2.718 ||| 0-1 ||| 893 374827 +del ||| used for the ||| 0.00497512 0.0435798 2.6679e-06 1.60299e-06 2.718 ||| 0-1 0-2 ||| 201 374827 +del ||| used in the last war ||| 0.125 0.0458111 2.6679e-06 3.2556e-14 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| used in the last ||| 0.1 0.0458111 2.6679e-06 8.77521e-10 2.718 ||| 0-1 0-2 ||| 10 374827 +del ||| used in the ||| 0.00396825 0.0458111 5.33579e-06 4.01795e-06 2.718 ||| 0-1 0-2 ||| 504 374827 +del ||| used in ||| 0.000590667 0.0091938 2.6679e-06 3.50563e-08 2.718 ||| 0-0 0-1 ||| 1693 374827 +del ||| used to make them by putting ||| 1 0.0461582 2.6679e-06 3.21524e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| used to make them by ||| 1 0.0461582 2.6679e-06 2.87331e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| used under the ||| 0.142857 0.0441302 2.6679e-06 1.18394e-07 2.718 ||| 0-1 0-2 ||| 7 374827 +del ||| users of ||| 0.00434783 0.130625 2.6679e-06 3.06785e-06 2.718 ||| 0-1 ||| 230 374827 +del ||| uses of ||| 0.0208333 0.130625 2.6679e-06 5.42773e-06 2.718 ||| 0-1 ||| 48 374827 +del ||| uses the ||| 0.0168067 0.0732944 5.33579e-06 6.39061e-06 2.718 ||| 0-1 ||| 119 374827 +del ||| using a ||| 0.00277778 0.0008087 2.6679e-06 6.56176e-08 2.718 ||| 0-1 ||| 360 374827 +del ||| using the ||| 0.00199867 0.0732944 8.00369e-06 2.69864e-05 2.718 ||| 0-1 ||| 1501 374827 +del ||| usually vote in favour of including ||| 1 0.130625 2.6679e-06 5.19925e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| usually vote in favour of ||| 1 0.130625 2.6679e-06 4.98013e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| utility ||| 0.00653595 0.0362694 2.6679e-06 9.2e-06 2.718 ||| 0-0 ||| 153 374827 +del ||| uttered by the ||| 0.0909091 0.0597263 2.6679e-06 1.40401e-08 2.718 ||| 0-1 0-2 ||| 11 374827 +del ||| uttered by ||| 0.0588235 0.0461582 2.6679e-06 4.04245e-08 2.718 ||| 0-1 ||| 17 374827 +del ||| valley ||| 0.0309278 0.192593 8.00369e-06 3.41e-05 2.718 ||| 0-0 ||| 97 374827 +del ||| value added tax ( VAT ||| 0.125 0.0002898 2.6679e-06 1.0788e-22 2.718 ||| 0-3 ||| 8 374827 +del ||| value added tax ( ||| 0.0625 0.0002898 2.6679e-06 1.29976e-17 2.718 ||| 0-3 ||| 16 374827 +del ||| value added ||| 0.0028169 0.0004489 2.6679e-06 2.2828e-10 2.718 ||| 0-1 ||| 355 374827 +del ||| value of a ||| 0.0263158 0.0653783 2.6679e-06 1.69981e-08 2.718 ||| 0-0 0-1 ||| 38 374827 +del ||| value of the ||| 0.00347222 0.10196 2.6679e-06 8.99538e-06 2.718 ||| 0-1 0-2 ||| 288 374827 +del ||| value of ||| 0.00191571 0.0653783 5.33579e-06 3.83481e-07 2.718 ||| 0-0 0-1 ||| 1044 374827 +del ||| value the ||| 0.016129 0.0732944 2.6679e-06 3.04943e-05 2.718 ||| 0-1 ||| 62 374827 +del ||| values of our civilization , which in ||| 1 0.130625 2.6679e-06 2.04428e-19 2.718 ||| 0-1 ||| 1 374827 +del ||| values of our civilization , which ||| 1 0.130625 2.6679e-06 9.5507e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| values of our civilization , ||| 1 0.130625 2.6679e-06 1.12433e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| values of our civilization ||| 1 0.130625 2.6679e-06 9.42794e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| values of our ||| 0.0277778 0.130625 2.6679e-06 1.34685e-08 2.718 ||| 0-1 ||| 36 374827 +del ||| values of the ||| 0.00813008 0.10196 2.6679e-06 3.3912e-06 2.718 ||| 0-1 0-2 ||| 123 374827 +del ||| values of ||| 0.00182815 0.130625 2.6679e-06 9.76402e-06 2.718 ||| 0-1 ||| 547 374827 +del ||| vanished from ||| 0.142857 0.0911315 2.6679e-06 1.51712e-08 2.718 ||| 0-1 ||| 7 374827 +del ||| variety of ||| 0.00124533 0.130625 2.6679e-06 6.78467e-06 2.718 ||| 0-1 ||| 803 374827 +del ||| various branches of the popular ||| 0.5 0.130625 2.6679e-06 9.66345e-17 2.718 ||| 0-2 ||| 2 374827 +del ||| various branches of the ||| 0.25 0.130625 2.6679e-06 8.94764e-12 2.718 ||| 0-2 ||| 4 374827 +del ||| various branches of ||| 0.25 0.130625 2.6679e-06 1.45746e-10 2.718 ||| 0-2 ||| 4 374827 +del ||| vary according to the ||| 0.0526316 0.0732944 2.6679e-06 9.83259e-12 2.718 ||| 0-3 ||| 19 374827 +del ||| vehicle , he ||| 0.2 0.0375059 2.6679e-06 1.09381e-08 2.718 ||| 0-0 ||| 5 374827 +del ||| vehicle , ||| 0.0212766 0.0375059 2.6679e-06 1.25337e-05 2.718 ||| 0-0 ||| 47 374827 +del ||| vehicle for ||| 0.00952381 0.0256856 2.6679e-06 1.13071e-06 2.718 ||| 0-0 0-1 ||| 105 374827 +del ||| vehicle ||| 0.00315457 0.0375059 1.06716e-05 0.0001051 2.718 ||| 0-0 ||| 1268 374827 +del ||| vehicles used for the ||| 0.2 0.0435798 2.6679e-06 2.94949e-11 2.718 ||| 0-2 0-3 ||| 5 374827 +del ||| verbatim report of ||| 0.0344828 0.130625 2.6679e-06 2.17646e-10 2.718 ||| 0-2 ||| 29 374827 +del ||| verdict from ||| 0.2 0.0911315 2.6679e-06 1.08366e-07 2.718 ||| 0-1 ||| 5 374827 +del ||| version of the ||| 0.0197368 0.10196 8.00369e-06 3.80101e-06 2.718 ||| 0-1 0-2 ||| 152 374827 +del ||| version of ||| 0.0106383 0.130625 5.33579e-06 1.0944e-05 2.718 ||| 0-1 ||| 188 374827 +del ||| very clear in the ||| 0.0588235 0.0458111 2.6679e-06 1.08487e-08 2.718 ||| 0-2 0-3 ||| 17 374827 +del ||| very conscious of ||| 0.0232558 0.130625 2.6679e-06 8.51914e-09 2.718 ||| 0-2 ||| 43 374827 +del ||| very definitely the ||| 0.142857 0.0732944 2.6679e-06 6.25995e-08 2.718 ||| 0-2 ||| 7 374827 +del ||| very difficult period in ||| 0.142857 0.0183279 2.6679e-06 2.03356e-12 2.718 ||| 0-3 ||| 7 374827 +del ||| very great extent on the ||| 1 0.0732944 2.6679e-06 6.10771e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| very much in the interests ||| 0.0769231 0.0732944 2.6679e-06 3.55949e-12 2.718 ||| 0-3 ||| 13 374827 +del ||| very much in the ||| 0.0185185 0.0732944 2.6679e-06 2.59627e-08 2.718 ||| 0-3 ||| 54 374827 +del ||| very much in ||| 0.00225225 0.0183279 2.6679e-06 9.41768e-08 2.718 ||| 0-2 ||| 444 374827 +del ||| very sceptical about the European ||| 1 0.0732944 2.6679e-06 6.28679e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| very sceptical about the ||| 0.0909091 0.0732944 2.6679e-06 1.88008e-12 2.718 ||| 0-3 ||| 11 374827 +del ||| very substance of ||| 0.111111 0.130625 2.6679e-06 3.02789e-08 2.718 ||| 0-2 ||| 9 374827 +del ||| via the ||| 0.00208117 0.0732944 5.33579e-06 9.75957e-06 2.718 ||| 0-1 ||| 961 374827 +del ||| victims of the ||| 0.00342466 0.130625 5.33579e-06 6.39272e-07 2.718 ||| 0-1 ||| 584 374827 +del ||| victims of ||| 0.00178317 0.130625 1.33395e-05 1.0413e-05 2.718 ||| 0-1 ||| 2804 374827 +del ||| victory of ||| 0.011236 0.130625 2.6679e-06 1.71092e-06 2.718 ||| 0-1 ||| 89 374827 +del ||| victory statement of ||| 1 0.130625 2.6679e-06 1.27463e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| view , the ||| 0.0015456 0.0732944 2.6679e-06 3.74138e-05 2.718 ||| 0-2 ||| 647 374827 +del ||| view in ||| 0.0185185 0.0183279 5.33579e-06 2.43587e-05 2.718 ||| 0-1 ||| 108 374827 +del ||| view is on the ||| 0.333333 0.0436809 2.6679e-06 9.64338e-08 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| view it in the ||| 0.5 0.0458111 2.6679e-06 1.50449e-07 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| view of the fact that ||| 0.00332226 0.10196 2.6679e-06 4.56025e-09 2.718 ||| 0-1 0-2 ||| 301 374827 +del ||| view of the fact ||| 0.00235849 0.10196 2.6679e-06 2.71095e-07 2.718 ||| 0-1 0-2 ||| 424 374827 +del ||| view of the ||| 0.0029274 0.10196 2.6679e-05 9.25459e-05 2.718 ||| 0-1 0-2 ||| 3416 374827 +del ||| view of this ||| 0.00266667 0.0669701 2.6679e-06 6.11766e-07 2.718 ||| 0-1 0-2 ||| 375 374827 +del ||| view of ||| 0.00209285 0.130625 2.93469e-05 0.00026646 2.718 ||| 0-1 ||| 5256 374827 +del ||| view taken in the ||| 0.333333 0.0458111 2.6679e-06 7.71145e-09 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| view the ||| 0.00675676 0.0732944 5.33579e-06 0.00031373 2.718 ||| 0-1 ||| 296 374827 +del ||| view to providing the ||| 0.333333 0.0732944 2.6679e-06 2.55916e-09 2.718 ||| 0-3 ||| 3 374827 +del ||| view to the adoption of a ||| 0.142857 0.0732944 2.6679e-06 3.09687e-12 2.718 ||| 0-2 ||| 7 374827 +del ||| view to the adoption of ||| 0.142857 0.0732944 2.6679e-06 6.98661e-11 2.718 ||| 0-2 ||| 7 374827 +del ||| view to the adoption ||| 0.111111 0.0732944 2.6679e-06 1.28515e-09 2.718 ||| 0-2 ||| 9 374827 +del ||| view to the ||| 0.00769231 0.0732944 2.6679e-06 2.78775e-05 2.718 ||| 0-2 ||| 130 374827 +del ||| viewed in respect of ||| 1 0.130625 2.6679e-06 6.58278e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| viewpoint of ||| 0.0135135 0.130625 2.6679e-06 2.77286e-06 2.718 ||| 0-1 ||| 74 374827 +del ||| views of the ||| 0.00275482 0.10196 2.6679e-06 8.32944e-06 2.718 ||| 0-1 0-2 ||| 363 374827 +del ||| violated the ||| 0.04 0.0732944 2.6679e-06 2.25755e-06 2.718 ||| 0-1 ||| 25 374827 +del ||| violation of ||| 0.000823723 0.130625 2.6679e-06 3.18584e-06 2.718 ||| 0-1 ||| 1214 374827 +del ||| virtue of ||| 0.00295858 0.130625 2.6679e-06 6.48968e-06 2.718 ||| 0-1 ||| 338 374827 +del ||| virtues of ||| 0.0135135 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-1 ||| 74 374827 +del ||| vis-à-vis the ||| 0.00414938 0.0732944 2.6679e-06 1.00722e-06 2.718 ||| 0-1 ||| 241 374827 +del ||| visa ||| 0.00107469 0.0207096 5.33579e-06 0.0001602 2.718 ||| 0-0 ||| 1861 374827 +del ||| vision of ||| 0.004 0.130625 5.33579e-06 3.59882e-06 2.718 ||| 0-1 ||| 500 374827 +del ||| visited the Gaza Strip . ||| 1 0.0732944 2.6679e-06 1.68712e-20 2.718 ||| 0-1 ||| 1 374827 +del ||| visited the Gaza Strip ||| 1 0.0732944 2.6679e-06 5.5699e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| visited the Gaza ||| 1 0.0732944 2.6679e-06 7.957e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| visited the ||| 0.00574713 0.0732944 2.6679e-06 2.74379e-06 2.718 ||| 0-1 ||| 174 374827 +del ||| visiting the ||| 0.0108696 0.0732944 2.6679e-06 1.25034e-06 2.718 ||| 0-1 ||| 92 374827 +del ||| visitors from the ||| 0.0909091 0.082213 2.6679e-06 3.01098e-08 2.718 ||| 0-1 0-2 ||| 11 374827 +del ||| visits of ||| 0.0909091 0.130625 2.6679e-06 1.47493e-06 2.718 ||| 0-1 ||| 11 374827 +del ||| vivid recollection of ||| 1 0.130625 2.6679e-06 4.54278e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| voice of the ||| 0.00628931 0.10196 2.6679e-06 4.45671e-06 2.718 ||| 0-1 0-2 ||| 159 374827 +del ||| voiced when the ||| 0.5 0.0732944 2.6679e-06 1.56261e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| volcano ||| 0.011236 0.0934579 2.6679e-06 1.31e-05 2.718 ||| 0-0 ||| 89 374827 +del ||| volume of ||| 0.00676819 0.130625 1.06716e-05 4.24779e-06 2.718 ||| 0-1 ||| 591 374827 +del ||| vote by ||| 0.0103093 0.0461582 2.6679e-06 2.54351e-06 2.718 ||| 0-1 ||| 97 374827 +del ||| vote for you , and , of ||| 1 0.130625 2.6679e-06 2.05116e-13 2.718 ||| 0-6 ||| 1 374827 +del ||| vote in favour in order for the ||| 1 0.0732944 2.6679e-06 3.31453e-17 2.718 ||| 0-6 ||| 1 374827 +del ||| vote in favour of including ||| 1 0.130625 2.6679e-06 3.35436e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| vote in favour of the ||| 0.00157233 0.10196 2.6679e-06 1.11592e-10 2.718 ||| 0-3 0-4 ||| 636 374827 +del ||| vote in favour of ||| 0.000813008 0.130625 2.6679e-06 3.21299e-10 2.718 ||| 0-3 ||| 1230 374827 +del ||| vote in the ||| 0.00293255 0.0458111 2.6679e-06 1.47325e-06 2.718 ||| 0-1 0-2 ||| 341 374827 +del ||| vote in ||| 0.00033456 0.0183279 2.6679e-06 4.24181e-06 2.718 ||| 0-1 ||| 2989 374827 +del ||| vote of ||| 0.00271003 0.130625 2.6679e-06 4.64012e-05 2.718 ||| 0-1 ||| 369 374827 +del ||| vote on the ||| 0.000672947 0.0436809 2.6679e-06 5.35811e-07 2.718 ||| 0-1 0-2 ||| 1486 374827 +del ||| vote the ||| 0.0142857 0.0732944 2.6679e-06 5.46328e-05 2.718 ||| 0-1 ||| 70 374827 +del ||| voted for it - ||| 0.25 0.0138653 2.6679e-06 2.90834e-11 2.718 ||| 0-1 ||| 4 374827 +del ||| voted for it ||| 0.00900901 0.0138653 2.6679e-06 7.71015e-09 2.718 ||| 0-1 ||| 111 374827 +del ||| voted for ||| 0.000359971 0.0138653 2.6679e-06 4.33564e-07 2.718 ||| 0-1 ||| 2778 374827 +del ||| voter ||| 0.0116279 0.0409357 2.6679e-06 9.2e-06 2.718 ||| 0-0 ||| 86 374827 +del ||| voting against the ||| 0.00581395 0.0732944 2.6679e-06 3.22363e-09 2.718 ||| 0-2 ||| 172 374827 +del ||| voting ||| 0.00012647 0.0001802 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 7907 374827 +del ||| wage ||| 0.000805153 0.0020027 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 1242 374827 +del ||| wait for ||| 0.00140845 0.0138653 2.6679e-06 2.90477e-07 2.718 ||| 0-1 ||| 710 374827 +del ||| wait until the ||| 0.0117647 0.0732944 2.6679e-06 4.55748e-10 2.718 ||| 0-2 ||| 85 374827 +del ||| wake of ||| 0.0046729 0.130625 5.33579e-06 7.02065e-06 2.718 ||| 0-1 ||| 428 374827 +del ||| wall of ||| 0.00952381 0.130625 2.6679e-06 2.1239e-06 2.718 ||| 0-1 ||| 105 374827 +del ||| want the Commissioner ||| 0.333333 0.0732944 2.6679e-06 1.4321e-08 2.718 ||| 0-1 ||| 3 374827 +del ||| want the ||| 0.00352113 0.0732944 2.6679e-06 0.00016237 2.718 ||| 0-1 ||| 284 374827 +del ||| wants to run with ||| 1 0.0045281 2.6679e-06 8.92612e-13 2.718 ||| 0-3 ||| 1 374827 +del ||| warning about the possibility ||| 0.5 0.0732944 2.6679e-06 5.88665e-13 2.718 ||| 0-2 ||| 2 374827 +del ||| warning about the ||| 0.047619 0.0732944 2.6679e-06 6.87692e-09 2.718 ||| 0-2 ||| 21 374827 +del ||| was , initially , the ||| 1 0.0732944 2.6679e-06 1.50109e-10 2.718 ||| 0-4 ||| 1 374827 +del ||| was a lot of ||| 0.125 0.130625 2.6679e-06 5.29274e-09 2.718 ||| 0-3 ||| 8 374827 +del ||| was a ||| 0.00047081 0.0008087 5.33579e-06 2.64582e-06 2.718 ||| 0-1 ||| 4248 374827 +del ||| was affected by a ||| 1 0.0461582 2.6679e-06 1.49553e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| was affected by ||| 0.0833333 0.0461582 2.6679e-06 3.37395e-09 2.718 ||| 0-2 ||| 12 374827 +del ||| was also welcomed by the ||| 0.333333 0.0597263 2.6679e-06 2.11416e-12 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| was at the ||| 0.00869565 0.0732944 2.6679e-06 4.55648e-06 2.718 ||| 0-2 ||| 115 374827 +del ||| was attacked by the advocates ||| 0.5 0.0597263 2.6679e-06 7.72773e-16 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| was attacked by the ||| 0.333333 0.0597263 2.6679e-06 1.26684e-10 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| was born after the era of budgetary ||| 1 0.130625 2.6679e-06 2.23123e-23 2.718 ||| 0-5 ||| 1 374827 +del ||| was born after the era of ||| 1 0.130625 2.6679e-06 1.01419e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| was by the ||| 0.125 0.0597263 2.6679e-06 1.7595e-05 2.718 ||| 0-1 0-2 ||| 8 374827 +del ||| was characteristic of ||| 1 0.130625 2.6679e-06 2.95741e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| was commissioned by the ||| 0.1 0.0597263 2.6679e-06 2.4633e-11 2.718 ||| 0-2 0-3 ||| 10 374827 +del ||| was found guilty of ||| 0.2 0.130625 2.6679e-06 4.28691e-12 2.718 ||| 0-3 ||| 5 374827 +del ||| was going from ||| 1 0.0911315 2.6679e-06 5.81106e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| was going to deliver ||| 0.333333 0.0006066 2.6679e-06 1.32349e-13 2.718 ||| 0-2 ||| 3 374827 +del ||| was going to ||| 0.00985222 0.0006066 5.33579e-06 3.56737e-09 2.718 ||| 0-2 ||| 203 374827 +del ||| was in the ||| 0.0047619 0.0458111 2.6679e-06 2.93432e-05 2.718 ||| 0-1 0-2 ||| 210 374827 +del ||| was in ||| 0.000881057 0.0183279 2.6679e-06 8.44857e-05 2.718 ||| 0-1 ||| 1135 374827 +del ||| was indeed the case that ||| 1 0.0732944 2.6679e-06 1.48425e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| was indeed the case ||| 0.5 0.0732944 2.6679e-06 8.82348e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| was indeed the ||| 0.1 0.0732944 2.6679e-06 8.24702e-07 2.718 ||| 0-2 ||| 10 374827 +del ||| was just ||| 0.00552486 0.0056007 2.6679e-06 1.02888e-06 2.718 ||| 0-1 ||| 181 374827 +del ||| was made by ||| 0.0232558 0.0461582 2.6679e-06 1.06123e-07 2.718 ||| 0-2 ||| 43 374827 +del ||| was made on ||| 0.037037 0.0140673 2.6679e-06 6.43667e-08 2.718 ||| 0-2 ||| 27 374827 +del ||| was meted out by ||| 1 0.0461582 2.6679e-06 1.12548e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| was necessary to be in a position ||| 1 0.0183279 2.6679e-06 5.10971e-16 2.718 ||| 0-4 ||| 1 374827 +del ||| was necessary to be in a ||| 1 0.0183279 2.6679e-06 1.55169e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| was necessary to be in ||| 1 0.0183279 2.6679e-06 3.50065e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| was of the ||| 0.08 0.10196 5.33579e-06 0.000320986 2.718 ||| 0-1 0-2 ||| 25 374827 +del ||| was of ||| 0.00684932 0.130625 2.6679e-06 0.00092419 2.718 ||| 0-1 ||| 146 374827 +del ||| was on the ||| 0.00704225 0.0436809 2.6679e-06 1.06719e-05 2.718 ||| 0-1 0-2 ||| 142 374827 +del ||| was on ||| 0.00332226 0.0140673 2.6679e-06 3.07269e-05 2.718 ||| 0-1 ||| 301 374827 +del ||| was only possible for ||| 0.333333 0.0138653 2.6679e-06 3.00934e-11 2.718 ||| 0-3 ||| 3 374827 +del ||| was proposed in the ||| 0.0909091 0.0458111 2.6679e-06 3.2747e-09 2.718 ||| 0-2 0-3 ||| 11 374827 +del ||| was raised between ||| 1 0.0028314 2.6679e-06 7.34836e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| was requested by the ||| 0.125 0.0732944 2.6679e-06 1.02831e-10 2.718 ||| 0-3 ||| 8 374827 +del ||| was said by ||| 0.0108696 0.0461582 2.6679e-06 2.08365e-08 2.718 ||| 0-2 ||| 92 374827 +del ||| was submitted by the ||| 0.0909091 0.0597263 2.6679e-06 9.06143e-10 2.718 ||| 0-2 0-3 ||| 11 374827 +del ||| was the Spanish ||| 1 0.0016529 2.6679e-06 1.76953e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| was the case ||| 0.00308642 0.0732944 2.6679e-06 1.1642e-06 2.718 ||| 0-1 ||| 324 374827 +del ||| was the ||| 0.00251142 0.0732944 2.93469e-05 0.00108814 2.718 ||| 0-1 ||| 4380 374827 +del ||| was up to the ||| 0.166667 0.0732944 2.6679e-06 3.29762e-07 2.718 ||| 0-3 ||| 6 374827 +del ||| was very sceptical about the European ||| 1 0.0732944 2.6679e-06 1.96965e-17 2.718 ||| 0-4 ||| 1 374827 +del ||| was very sceptical about the ||| 1 0.0732944 2.6679e-06 5.89028e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| watching over the ||| 0.333333 0.0732944 2.6679e-06 1.80611e-09 2.718 ||| 0-2 ||| 3 374827 +del ||| watching this ||| 0.0833333 0.0033154 2.6679e-06 2.47957e-08 2.718 ||| 0-1 ||| 12 374827 +del ||| water are ||| 0.0625 0.0856775 2.6679e-06 1.59025e-05 2.718 ||| 0-0 ||| 16 374827 +del ||| water down ||| 0.0103093 0.0856775 2.6679e-06 7.31679e-07 2.718 ||| 0-0 ||| 97 374827 +del ||| water it ||| 0.333333 0.0856775 2.6679e-06 1.86386e-05 2.718 ||| 0-0 ||| 3 374827 +del ||| water out . ||| 1 0.0856775 2.6679e-06 1.21604e-08 2.718 ||| 0-0 ||| 1 374827 +del ||| water out ||| 0.5 0.0856775 2.6679e-06 4.01464e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| water ||| 0.00126316 0.0856775 2.40111e-05 0.0010481 2.718 ||| 0-0 ||| 7125 374827 +del ||| waters of the ||| 0.0192308 0.10196 2.6679e-06 1.70072e-06 2.718 ||| 0-1 0-2 ||| 52 374827 +del ||| watershed ||| 0.0204082 0.0285714 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 49 374827 +del ||| wave of ||| 0.00239808 0.130625 2.6679e-06 2.77286e-06 2.718 ||| 0-1 ||| 417 374827 +del ||| way , on the ||| 0.0769231 0.0436809 2.6679e-06 8.75642e-07 2.718 ||| 0-2 0-3 ||| 13 374827 +del ||| way for the ||| 0.00343643 0.0435798 2.6679e-06 8.05453e-06 2.718 ||| 0-1 0-2 ||| 291 374827 +del ||| way in the case of the ||| 1 0.10196 2.6679e-06 3.10493e-10 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| way in which the ||| 0.0094518 0.0732944 1.33395e-05 1.36126e-07 2.718 ||| 0-3 ||| 529 374827 +del ||| way in which ||| 0.000320102 0.0183279 2.6679e-06 4.93781e-07 2.718 ||| 0-1 ||| 3124 374827 +del ||| way in ||| 0.000508259 0.0183279 5.33579e-06 5.81288e-05 2.718 ||| 0-1 ||| 3935 374827 +del ||| way of combating ||| 0.03125 0.130625 2.6679e-06 3.17935e-09 2.718 ||| 0-1 ||| 32 374827 +del ||| way of cropping up ||| 1 0.130625 2.6679e-06 2.3855e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| way of cropping ||| 1 0.130625 2.6679e-06 6.99458e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| way of reviving ||| 1 0.130625 2.6679e-06 6.99458e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| way of the ||| 0.0147059 0.10196 5.33579e-06 0.000220848 2.718 ||| 0-1 0-2 ||| 136 374827 +del ||| way of ||| 0.0062081 0.130625 6.66974e-05 0.000635871 2.718 ||| 0-1 ||| 4027 374827 +del ||| way out of ||| 0.00471698 0.130625 2.6679e-06 2.43564e-06 2.718 ||| 0-2 ||| 212 374827 +del ||| way reflects the clear electoral will demonstrated ||| 0.5 0.0732944 2.6679e-06 4.33248e-24 2.718 ||| 0-2 ||| 2 374827 +del ||| way reflects the clear electoral will ||| 0.5 0.0732944 2.6679e-06 1.60462e-19 2.718 ||| 0-2 ||| 2 374827 +del ||| way reflects the clear electoral ||| 0.5 0.0732944 2.6679e-06 1.8548e-17 2.718 ||| 0-2 ||| 2 374827 +del ||| way reflects the clear ||| 0.5 0.0732944 2.6679e-06 3.04065e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| way reflects the ||| 0.5 0.0732944 2.6679e-06 9.13382e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| way the ||| 0.0160428 0.0732944 2.40111e-05 0.000748674 2.718 ||| 0-1 ||| 561 374827 +del ||| way through , ||| 0.2 0.0017749 2.6679e-06 2.26218e-08 2.718 ||| 0-1 ||| 5 374827 +del ||| way through the ||| 0.0196078 0.0732944 2.6679e-06 3.44615e-07 2.718 ||| 0-2 ||| 51 374827 +del ||| way through ||| 0.00724638 0.0017749 2.6679e-06 1.89693e-07 2.718 ||| 0-1 ||| 138 374827 +del ||| ways in which the ||| 0.0238095 0.0732944 2.6679e-06 6.08765e-09 2.718 ||| 0-3 ||| 42 374827 +del ||| ways in which ||| 0.00222717 0.0183279 2.6679e-06 2.20822e-08 2.718 ||| 0-1 ||| 449 374827 +del ||| ways in ||| 0.00175747 0.0183279 2.6679e-06 2.59956e-06 2.718 ||| 0-1 ||| 569 374827 +del ||| ways of the ||| 0.166667 0.10196 2.6679e-06 9.87648e-06 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| ways of ||| 0.000652316 0.130625 2.6679e-06 2.84366e-05 2.718 ||| 0-1 ||| 1533 374827 +del ||| we , as matter of course , ||| 1 0.130625 2.6679e-06 6.36161e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| we , as matter of course ||| 1 0.130625 2.6679e-06 5.33448e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| we , as matter of ||| 1 0.130625 2.6679e-06 4.22801e-09 2.718 ||| 0-4 ||| 1 374827 +del ||| we , as the European ||| 0.2 0.0400553 2.6679e-06 1.47341e-08 2.718 ||| 0-3 0-4 ||| 5 374827 +del ||| we also note the European ||| 1 0.0400553 2.6679e-06 6.38163e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| we also visited the Gaza Strip . ||| 1 0.0732944 2.6679e-06 9.66945e-25 2.718 ||| 0-3 ||| 1 374827 +del ||| we also visited the Gaza Strip ||| 1 0.0732944 2.6679e-06 3.19229e-22 2.718 ||| 0-3 ||| 1 374827 +del ||| we also visited the Gaza ||| 1 0.0732944 2.6679e-06 4.56042e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| we also visited the ||| 0.333333 0.0732944 2.6679e-06 1.57256e-10 2.718 ||| 0-3 ||| 3 374827 +del ||| we are all in ||| 0.00729927 0.0183279 2.6679e-06 2.19487e-08 2.718 ||| 0-3 ||| 137 374827 +del ||| we are getting from the ||| 0.333333 0.082213 2.6679e-06 1.50661e-10 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| we are in ||| 0.000523013 0.0183279 2.6679e-06 4.64483e-06 2.718 ||| 0-2 ||| 1912 374827 +del ||| we are laying down in the ||| 0.5 0.0458111 2.6679e-06 2.35374e-14 2.718 ||| 0-4 0-5 ||| 2 374827 +del ||| we are on the ||| 0.00319489 0.0436809 2.6679e-06 5.86718e-07 2.718 ||| 0-2 0-3 ||| 313 374827 +del ||| we are talking about ||| 0.000455373 0.0101916 2.6679e-06 2.64583e-11 2.718 ||| 0-3 ||| 2196 374827 +del ||| we are the ||| 0.00361011 0.0732944 2.6679e-06 5.98234e-05 2.718 ||| 0-2 ||| 277 374827 +del ||| we are to ||| 0.000481696 0.0006066 2.6679e-06 2.29172e-07 2.718 ||| 0-2 ||| 2076 374827 +del ||| we can forget the ||| 0.125 0.0732944 2.6679e-06 2.19298e-10 2.718 ||| 0-3 ||| 8 374827 +del ||| we can see from the ||| 0.047619 0.082213 2.6679e-06 1.79085e-10 2.718 ||| 0-3 0-4 ||| 21 374827 +del ||| we come to ||| 0.00343643 0.0006066 2.6679e-06 1.2828e-08 2.718 ||| 0-2 ||| 291 374827 +del ||| we copy the ||| 0.5 0.0732944 2.6679e-06 3.82455e-08 2.718 ||| 0-2 ||| 2 374827 +del ||| we ensure that the ||| 0.0769231 0.0732944 2.6679e-06 2.974e-08 2.718 ||| 0-3 ||| 13 374827 +del ||| we fully support the direction they ||| 1 0.0732944 2.6679e-06 4.52562e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| we fully support the direction ||| 1 0.0732944 2.6679e-06 1.38653e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| we fully support the ||| 0.0131579 0.0732944 2.6679e-06 1.52869e-10 2.718 ||| 0-3 ||| 76 374827 +del ||| we go about ||| 0.0294118 0.0101916 2.6679e-06 9.32157e-09 2.718 ||| 0-2 ||| 34 374827 +del ||| we had in the ||| 0.0232558 0.0458111 2.6679e-06 1.06717e-07 2.718 ||| 0-2 0-3 ||| 43 374827 +del ||| we had the ||| 0.00314465 0.0732944 2.6679e-06 3.95742e-06 2.718 ||| 0-2 ||| 318 374827 +del ||| we have a ||| 0.000234028 0.0008087 2.6679e-06 1.14659e-07 2.718 ||| 0-2 ||| 4273 374827 +del ||| we have come along the ||| 0.5 0.0732944 2.6679e-06 6.98858e-12 2.718 ||| 0-4 ||| 2 374827 +del ||| we have dot sex ||| 0.5 0.0635335 2.6679e-06 5.20818e-15 2.718 ||| 0-3 ||| 2 374827 +del ||| we have had in the ||| 0.0322581 0.0458111 2.6679e-06 1.27632e-09 2.718 ||| 0-3 0-4 ||| 31 374827 +del ||| we have had with the ||| 0.0555556 0.0732944 2.6679e-06 3.02652e-10 2.718 ||| 0-4 ||| 18 374827 +del ||| we have in the ||| 0.00680272 0.0458111 2.6679e-06 1.27161e-06 2.718 ||| 0-2 0-3 ||| 147 374827 +del ||| we have in ||| 0.00182149 0.0183279 2.6679e-06 3.66126e-06 2.718 ||| 0-2 ||| 549 374827 +del ||| we have indeed made the ||| 1 0.0732944 2.6679e-06 7.48664e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| we have seen the ||| 0.00549451 0.0732944 2.6679e-06 9.92623e-09 2.718 ||| 0-3 ||| 182 374827 +del ||| we have the ||| 0.00253678 0.0732944 1.33395e-05 4.71555e-05 2.718 ||| 0-2 ||| 1971 374827 +del ||| we have to tackle the ||| 0.125 0.0732944 5.33579e-06 1.52103e-10 2.718 ||| 0-4 ||| 16 374827 +del ||| we have with the ||| 0.0227273 0.0389112 2.6679e-06 8.97463e-08 2.718 ||| 0-2 0-3 ||| 44 374827 +del ||| we held the ||| 0.0434783 0.0380025 2.6679e-06 1.13948e-07 2.718 ||| 0-1 0-2 ||| 23 374827 +del ||| we here in the ||| 0.0434783 0.0458111 2.6679e-06 2.15604e-07 2.718 ||| 0-2 0-3 ||| 23 374827 +del ||| we here in ||| 0.0144928 0.0183279 2.6679e-06 6.20772e-07 2.718 ||| 0-2 ||| 69 374827 +del ||| we in the ||| 0.00294464 0.0458111 1.33395e-05 0.000106324 2.718 ||| 0-1 0-2 ||| 1698 374827 +del ||| we in ||| 0.00127673 0.0183279 1.06716e-05 0.000306131 2.718 ||| 0-1 ||| 3133 374827 +del ||| we just hope that the Council will ||| 0.5 0.0732944 2.6679e-06 4.38849e-17 2.718 ||| 0-4 ||| 2 374827 +del ||| we just hope that the Council ||| 0.333333 0.0732944 2.6679e-06 5.07269e-15 2.718 ||| 0-4 ||| 3 374827 +del ||| we just hope that the ||| 0.5 0.0732944 2.6679e-06 1.46694e-11 2.718 ||| 0-4 ||| 2 374827 +del ||| we know that from the ||| 0.5 0.082213 2.6679e-06 3.70867e-10 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| we look at the ||| 0.0027027 0.0732944 2.6679e-06 4.81273e-09 2.718 ||| 0-3 ||| 370 374827 +del ||| we made in the ||| 0.0769231 0.0458111 2.6679e-06 2.22728e-07 2.718 ||| 0-2 0-3 ||| 13 374827 +del ||| we need the ||| 0.00173611 0.0732944 2.6679e-06 3.61518e-06 2.718 ||| 0-2 ||| 576 374827 +del ||| we next ||| 0.1 0.0281625 2.6679e-06 1.09448e-05 2.718 ||| 0-1 ||| 10 374827 +del ||| we often speak about the ||| 1 0.0732944 2.6679e-06 9.91387e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| we read the ||| 0.047619 0.0732944 2.6679e-06 1.90045e-07 2.718 ||| 0-2 ||| 21 374827 +del ||| we regard the ||| 0.0169492 0.0732944 2.6679e-06 2.68468e-06 2.718 ||| 0-2 ||| 59 374827 +del ||| we saw after ||| 0.5 0.0001855 2.6679e-06 4.01599e-12 2.718 ||| 0-2 ||| 2 374827 +del ||| we saw in ||| 0.0126582 0.0183279 2.6679e-06 1.64086e-08 2.718 ||| 0-2 ||| 79 374827 +del ||| we say , of the ||| 1 0.10196 2.6679e-06 1.32572e-07 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| we shall be using a ||| 1 0.0008087 2.6679e-06 7.37907e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| we shall have produced by the ||| 1 0.0597263 2.6679e-06 4.40953e-14 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| we should by ||| 0.5 0.0461582 2.6679e-06 8.13374e-07 2.718 ||| 0-2 ||| 2 374827 +del ||| we should put the ||| 0.111111 0.0732944 2.6679e-06 1.92632e-08 2.718 ||| 0-3 ||| 9 374827 +del ||| we stand for ||| 0.025 0.0138653 2.6679e-06 2.01274e-08 2.718 ||| 0-2 ||| 40 374827 +del ||| we took in the ||| 0.25 0.0458111 2.6679e-06 1.56828e-08 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| we will go about the ||| 1 0.0732944 2.6679e-06 2.8212e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| we will have at the ||| 0.5 0.0732944 2.6679e-06 1.70826e-09 2.718 ||| 0-4 ||| 2 374827 +del ||| we would like the ||| 0.0138889 0.0732944 2.6679e-06 4.10931e-08 2.718 ||| 0-3 ||| 72 374827 +del ||| we would of ||| 0.333333 0.130625 2.6679e-06 1.96529e-05 2.718 ||| 0-2 ||| 3 374827 +del ||| weaker moment in the ||| 0.333333 0.0732944 2.6679e-06 6.31372e-12 2.718 ||| 0-3 ||| 3 374827 +del ||| wearing of headscarves ||| 0.5 0.130625 2.6679e-06 8.96756e-13 2.718 ||| 0-1 ||| 2 374827 +del ||| wearing of ||| 0.0714286 0.130625 2.6679e-06 2.24189e-06 2.718 ||| 0-1 ||| 14 374827 +del ||| week 's ||| 0.00990099 0.169811 2.6679e-06 1.22954e-06 2.718 ||| 0-1 ||| 101 374827 +del ||| week . ||| 0.00127065 1.43e-05 2.6679e-06 1.0863e-09 2.718 ||| 0-1 ||| 787 374827 +del ||| weight of ||| 0.00454545 0.130625 2.6679e-06 9.02656e-06 2.718 ||| 0-1 ||| 220 374827 +del ||| welcome the ||| 0.000456725 0.0732944 5.33579e-06 3.82395e-05 2.718 ||| 0-1 ||| 4379 374827 +del ||| welcomed by the ||| 0.0185185 0.0597263 2.6679e-06 1.33661e-07 2.718 ||| 0-1 0-2 ||| 54 374827 +del ||| welfare of the ||| 0.0105263 0.130625 2.6679e-06 2.40859e-07 2.718 ||| 0-1 ||| 95 374827 +del ||| welfare of ||| 0.00238095 0.130625 2.6679e-06 3.92331e-06 2.718 ||| 0-1 ||| 420 374827 +del ||| welfare ||| 0.000708215 0.0452308 8.00369e-06 0.0001931 2.718 ||| 0-0 ||| 4236 374827 +del ||| well as by the ||| 0.0588235 0.0597263 2.6679e-06 9.08679e-08 2.718 ||| 0-2 0-3 ||| 17 374827 +del ||| well as for the ||| 0.02 0.0435798 2.6679e-06 6.04579e-08 2.718 ||| 0-2 0-3 ||| 50 374827 +del ||| well as the ||| 0.00383877 0.0732944 1.06716e-05 5.6196e-06 2.718 ||| 0-2 ||| 1042 374827 +del ||| well as ||| 0.000212811 0.0004965 2.6679e-06 4.08133e-07 2.718 ||| 0-1 ||| 4699 374827 +del ||| well be a failure of the ||| 1 0.10196 2.6679e-06 6.1073e-12 2.718 ||| 0-4 0-5 ||| 1 374827 +del ||| well be that ten years from now ||| 1 0.0911315 2.6679e-06 4.11373e-20 2.718 ||| 0-5 ||| 1 374827 +del ||| well be that ten years from ||| 1 0.0911315 2.6679e-06 1.99705e-17 2.718 ||| 0-5 ||| 1 374827 +del ||| well in ||| 0.00234192 0.0183279 2.6679e-06 4.27579e-05 2.718 ||| 0-1 ||| 427 374827 +del ||| well over the limit ||| 0.111111 0.0732944 2.6679e-06 1.2887e-11 2.718 ||| 0-2 ||| 9 374827 +del ||| well over the ||| 0.0526316 0.0732944 2.6679e-06 2.65164e-07 2.718 ||| 0-2 ||| 19 374827 +del ||| well the ||| 0.0150376 0.0732944 5.33579e-06 0.000550704 2.718 ||| 0-1 ||| 133 374827 +del ||| well under the ||| 0.166667 0.0732944 2.6679e-06 1.97593e-07 2.718 ||| 0-2 ||| 6 374827 +del ||| well with the new British Government 's ||| 1 0.169811 2.6679e-06 2.12561e-20 2.718 ||| 0-6 ||| 1 374827 +del ||| well-being of ||| 0.00369004 0.130625 2.6679e-06 5.30974e-07 2.718 ||| 0-1 ||| 271 374827 +del ||| went in the ||| 0.142857 0.0183279 2.6679e-06 1.05456e-07 2.718 ||| 0-1 ||| 7 374827 +del ||| went in ||| 0.04 0.0183279 2.6679e-06 1.71776e-06 2.718 ||| 0-1 ||| 25 374827 +del ||| went on ||| 0.00735294 0.0140673 2.6679e-06 6.24738e-07 2.718 ||| 0-1 ||| 136 374827 +del ||| were , for the ||| 0.111111 0.0435798 2.6679e-06 7.98253e-07 2.718 ||| 0-2 0-3 ||| 9 374827 +del ||| were also to take on ||| 1 0.0140673 2.6679e-06 1.26895e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| were expressed by ||| 0.1 0.0461582 2.6679e-06 2.81555e-09 2.718 ||| 0-2 ||| 10 374827 +del ||| were for ||| 0.0333333 0.0138653 2.6679e-06 1.92726e-05 2.718 ||| 0-1 ||| 30 374827 +del ||| were from the ||| 0.1 0.082213 2.6679e-06 1.34847e-05 2.718 ||| 0-1 0-2 ||| 10 374827 +del ||| were introducing the ' ||| 1 0.0732944 2.6679e-06 6.68922e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| were introducing the ||| 1 0.0732944 2.6679e-06 1.94743e-08 2.718 ||| 0-2 ||| 1 374827 +del ||| were like in the ||| 1 0.0458111 2.6679e-06 2.9796e-08 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| were lord of the ||| 1 0.10196 2.6679e-06 2.56948e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| were made to the ||| 0.2 0.0732944 2.6679e-06 1.15813e-07 2.718 ||| 0-3 ||| 5 374827 +del ||| were members of the ||| 0.0909091 0.10196 2.6679e-06 2.70713e-08 2.718 ||| 0-2 0-3 ||| 11 374827 +del ||| were needed - of the ||| 1 0.10196 2.6679e-06 9.27004e-11 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| were not the ||| 0.016129 0.0732944 2.6679e-06 2.12419e-06 2.718 ||| 0-2 ||| 62 374827 +del ||| were part of the ||| 0.05 0.10196 2.6679e-06 2.1881e-07 2.718 ||| 0-2 0-3 ||| 20 374827 +del ||| were receiving from the ||| 1 0.082213 2.6679e-06 4.03191e-10 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| were shown of the ||| 0.5 0.10196 2.6679e-06 1.9161e-08 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| were spoken then by ||| 1 0.0461582 2.6679e-06 1.04025e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| were surprised by ||| 0.333333 0.0461582 2.6679e-06 1.5642e-10 2.718 ||| 0-2 ||| 3 374827 +del ||| were taking advantage of the ||| 0.5 0.10196 2.6679e-06 3.95471e-12 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| were the result of ||| 0.0769231 0.0732944 2.6679e-06 1.78085e-08 2.718 ||| 0-1 ||| 13 374827 +del ||| were the result ||| 0.0666667 0.0732944 2.6679e-06 3.27579e-07 2.718 ||| 0-1 ||| 15 374827 +del ||| were the sine qua non for ||| 1 0.0732944 2.6679e-06 5.66368e-23 2.718 ||| 0-1 ||| 1 374827 +del ||| were the sine qua non ||| 1 0.0732944 2.6679e-06 7.36912e-21 2.718 ||| 0-1 ||| 1 374827 +del ||| were the sine qua ||| 1 0.0732944 2.6679e-06 1.5679e-15 2.718 ||| 0-1 ||| 1 374827 +del ||| were the sine ||| 1 0.0732944 2.6679e-06 8.71054e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| were the ||| 0.00238095 0.0732944 5.33579e-06 0.000622182 2.718 ||| 0-1 ||| 840 374827 +del ||| were unable to control ||| 0.333333 0.0007854 2.6679e-06 5.69278e-14 2.718 ||| 0-3 ||| 3 374827 +del ||| were under the ||| 0.0769231 0.0732944 2.6679e-06 2.23239e-07 2.718 ||| 0-2 ||| 13 374827 +del ||| were up to ||| 0.0833333 0.0020886 2.6679e-06 3.0101e-08 2.718 ||| 0-1 ||| 12 374827 +del ||| were up ||| 0.0714286 0.0020886 2.6679e-06 3.38754e-07 2.718 ||| 0-1 ||| 14 374827 +del ||| what a ||| 0.00409836 0.0008087 5.33579e-06 1.18492e-06 2.718 ||| 0-1 ||| 488 374827 +del ||| what is at ||| 0.00253165 0.0010184 2.6679e-06 1.0743e-08 2.718 ||| 0-2 ||| 395 374827 +del ||| what is in ||| 0.00588235 0.0183279 2.6679e-06 1.18584e-06 2.718 ||| 0-2 ||| 170 374827 +del ||| what is laid down in the ||| 0.0588235 0.0732944 2.6679e-06 2.48758e-14 2.718 ||| 0-5 ||| 17 374827 +del ||| what is the ||| 0.00082713 0.0732944 2.6679e-06 1.52731e-05 2.718 ||| 0-2 ||| 1209 374827 +del ||| what kind of ||| 0.00659341 0.130625 8.00369e-06 2.0198e-07 2.718 ||| 0-2 ||| 455 374827 +del ||| what remains of the ||| 0.0454545 0.10196 2.6679e-06 1.28227e-08 2.718 ||| 0-2 0-3 ||| 22 374827 +del ||| what sort of ||| 0.00408163 0.130625 2.6679e-06 6.61403e-08 2.718 ||| 0-2 ||| 245 374827 +del ||| what stands out from the ||| 1 0.082213 2.6679e-06 2.22911e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| what the ||| 0.00180366 0.0732944 1.86753e-05 0.000487319 2.718 ||| 0-1 ||| 3881 374827 +del ||| what they are , namely the ||| 1 0.0732944 2.6679e-06 4.59916e-13 2.718 ||| 0-5 ||| 1 374827 +del ||| what was proposed in the ||| 0.142857 0.0458111 2.6679e-06 4.59474e-12 2.718 ||| 0-3 0-4 ||| 7 374827 +del ||| what was said by ||| 0.0119048 0.0461582 2.6679e-06 2.92356e-11 2.718 ||| 0-3 ||| 84 374827 +del ||| what ||| 4.62867e-05 5.59e-05 1.06716e-05 1.18e-05 2.718 ||| 0-0 ||| 86418 374827 +del ||| whatever happen to be the interests of ||| 0.5 0.130625 2.6679e-06 2.39472e-17 2.718 ||| 0-6 ||| 2 374827 +del ||| whatever the ||| 0.00386847 0.0732944 5.33579e-06 1.91371e-05 2.718 ||| 0-1 ||| 517 374827 +del ||| whatsoever of the ||| 0.0526316 0.10196 2.6679e-06 5.71688e-06 2.718 ||| 0-1 0-2 ||| 19 374827 +del ||| when South ||| 0.5 0.189467 2.6679e-06 6.16527e-07 2.718 ||| 0-1 ||| 2 374827 +del ||| when a ||| 0.00123457 0.0008087 2.6679e-06 4.22166e-07 2.718 ||| 0-1 ||| 810 374827 +del ||| when one considers the ||| 0.04 0.0732944 2.6679e-06 1.09273e-11 2.718 ||| 0-3 ||| 25 374827 +del ||| when the ||| 0.00168247 0.0732944 2.93469e-05 0.000173623 2.718 ||| 0-1 ||| 6538 374827 +del ||| when this ||| 0.00196464 0.0033154 2.6679e-06 1.14772e-06 2.718 ||| 0-1 ||| 509 374827 +del ||| when we look at the ||| 0.00735294 0.0732944 2.6679e-06 2.40588e-12 2.718 ||| 0-4 ||| 136 374827 +del ||| where the value of the ||| 1 0.10196 2.6679e-06 1.6733e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| where the ||| 0.000969932 0.0732944 1.33395e-05 0.000105237 2.718 ||| 0-1 ||| 5155 374827 +del ||| whereas the Council ||| 0.0769231 0.0707819 2.6679e-06 1.11012e-08 2.718 ||| 0-2 ||| 13 374827 +del ||| whereby the ||| 0.00382409 0.0732944 5.33579e-06 1.1253e-05 2.718 ||| 0-1 ||| 523 374827 +del ||| whether cadmium from ||| 1 0.0349206 2.6679e-06 6.09195e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| whether cadmium ||| 1 0.0349206 2.6679e-06 3.78288e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| whether in the ||| 0.00892857 0.0458111 2.6679e-06 2.46041e-06 2.718 ||| 0-1 0-2 ||| 112 374827 +del ||| whether it is all about ||| 1 0.0101916 2.6679e-06 9.71451e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| whether it is in the ||| 0.0714286 0.0458111 2.6679e-06 1.3713e-09 2.718 ||| 0-3 0-4 ||| 14 374827 +del ||| whether the ||| 0.00142776 0.0732944 1.33395e-05 9.12399e-05 2.718 ||| 0-1 ||| 3502 374827 +del ||| whether to ||| 0.00258398 0.0006066 2.6679e-06 3.49522e-07 2.718 ||| 0-1 ||| 387 374827 +del ||| which - as the rapporteur ||| 0.5 0.0732944 2.6679e-06 8.21063e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| which - as the ||| 0.5 0.0732944 2.6679e-06 1.13563e-07 2.718 ||| 0-3 ||| 2 374827 +del ||| which apply at the ||| 1 0.0732944 2.6679e-06 1.77776e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| which are currently measured in all the ||| 1 0.0732944 2.6679e-06 5.62499e-18 2.718 ||| 0-6 ||| 1 374827 +del ||| which are in the ||| 0.0232558 0.0458111 2.6679e-06 1.20713e-06 2.718 ||| 0-2 0-3 ||| 43 374827 +del ||| which are on the ||| 0.0243902 0.0436809 2.6679e-06 4.39024e-07 2.718 ||| 0-2 0-3 ||| 41 374827 +del ||| which are responsible for the ||| 0.0666667 0.0138653 2.6679e-06 1.25902e-11 2.718 ||| 0-3 ||| 15 374827 +del ||| which are responsible for ||| 0.0192308 0.0138653 2.6679e-06 2.05079e-10 2.718 ||| 0-3 ||| 52 374827 +del ||| which are taking place in ||| 0.0666667 0.0183279 2.6679e-06 2.22308e-12 2.718 ||| 0-4 ||| 15 374827 +del ||| which belongs to the acquis communautaire ||| 1 0.0732944 2.6679e-06 1.38551e-20 2.718 ||| 0-3 ||| 1 374827 +del ||| which belongs to the acquis ||| 1 0.0732944 2.6679e-06 1.9793e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| which belongs to the ||| 0.0909091 0.0732944 5.33579e-06 3.9586e-09 2.718 ||| 0-3 ||| 22 374827 +del ||| which came from ||| 0.25 0.0911315 8.00369e-06 2.31973e-08 2.718 ||| 0-2 ||| 12 374827 +del ||| which come under the ||| 0.05 0.0732944 2.6679e-06 8.99044e-10 2.718 ||| 0-3 ||| 20 374827 +del ||| which completely ||| 0.125 0.0018429 2.6679e-06 1.45258e-07 2.718 ||| 0-1 ||| 8 374827 +del ||| which concern the ||| 0.0204082 0.0732944 2.6679e-06 3.93866e-07 2.718 ||| 0-2 ||| 49 374827 +del ||| which ends on the ||| 1 0.0732944 2.6679e-06 4.61928e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| which falls to the ||| 0.111111 0.0732944 2.6679e-06 8.20558e-09 2.718 ||| 0-3 ||| 9 374827 +del ||| which form the ||| 0.0119048 0.0732944 2.6679e-06 1.34298e-06 2.718 ||| 0-2 ||| 84 374827 +del ||| which govern the ||| 0.0526316 0.0732944 2.6679e-06 2.65528e-08 2.718 ||| 0-2 ||| 19 374827 +del ||| which had occurred in the ||| 1 0.0458111 2.6679e-06 3.39378e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| which has been presented by ||| 0.25 0.0461582 2.6679e-06 1.86043e-13 2.718 ||| 0-4 ||| 4 374827 +del ||| which has been proposed by the ||| 0.25 0.0597263 2.6679e-06 9.15114e-14 2.718 ||| 0-4 0-5 ||| 4 374827 +del ||| which has merely come out of the ||| 1 0.10196 2.6679e-06 9.28345e-16 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| which has originated in the ||| 1 0.0458111 2.6679e-06 9.00968e-13 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| which is called upon ||| 0.333333 0.0034407 2.6679e-06 2.36906e-12 2.718 ||| 0-3 ||| 3 374827 +del ||| which is exclusive to the ||| 1 0.0732944 2.6679e-06 5.34063e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| which is from the ||| 0.333333 0.082213 2.6679e-06 2.00403e-06 2.718 ||| 0-2 0-3 ||| 3 374827 +del ||| which is from ||| 0.333333 0.0911315 2.6679e-06 5.77006e-06 2.718 ||| 0-2 ||| 3 374827 +del ||| which is here as part of our ||| 1 0.130625 2.6679e-06 2.67245e-15 2.718 ||| 0-5 ||| 1 374827 +del ||| which is here as part of ||| 1 0.130625 2.6679e-06 1.9374e-12 2.718 ||| 0-5 ||| 1 374827 +del ||| which is included in the ||| 0.0714286 0.0458111 2.6679e-06 2.34137e-10 2.718 ||| 0-3 0-4 ||| 14 374827 +del ||| which is set for the ||| 1 0.0435798 2.6679e-06 5.81353e-10 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| which is the very ||| 0.0588235 0.0732944 2.6679e-06 3.21735e-07 2.718 ||| 0-2 ||| 17 374827 +del ||| which is the ||| 0.000926784 0.0732944 5.33579e-06 9.24659e-05 2.718 ||| 0-2 ||| 2158 374827 +del ||| which offer hope for the ||| 0.5 0.0435798 2.6679e-06 6.36536e-13 2.718 ||| 0-3 0-4 ||| 2 374827 +del ||| which our ||| 0.00188324 0.001535 2.6679e-06 2.53309e-06 2.718 ||| 0-1 ||| 531 374827 +del ||| which pertain in ||| 1 0.0183279 2.6679e-06 5.03951e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| which results from ||| 0.047619 0.0911315 2.6679e-06 1.42497e-08 2.718 ||| 0-2 ||| 21 374827 +del ||| which struck the region at dawn ||| 0.333333 0.0732944 2.6679e-06 6.81173e-20 2.718 ||| 0-2 ||| 3 374827 +del ||| which struck the region at ||| 0.333333 0.0732944 2.6679e-06 3.09624e-14 2.718 ||| 0-2 ||| 3 374827 +del ||| which struck the region ||| 0.333333 0.0732944 2.6679e-06 7.39418e-12 2.718 ||| 0-2 ||| 3 374827 +del ||| which struck the ||| 0.0666667 0.0732944 2.6679e-06 7.55279e-08 2.718 ||| 0-2 ||| 15 374827 +del ||| which the Council takes ||| 0.142857 0.0707819 2.6679e-06 6.37884e-10 2.718 ||| 0-2 ||| 7 374827 +del ||| which the Council ||| 0.00328947 0.0707819 5.33579e-06 4.93719e-06 2.718 ||| 0-2 ||| 608 374827 +del ||| which the budget has to be ||| 1 0.0732944 2.6679e-06 3.0179e-12 2.718 ||| 0-1 ||| 1 374827 +del ||| which the budget has to ||| 1 0.0732944 2.6679e-06 1.66524e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| which the budget has ||| 1 0.0732944 2.6679e-06 1.87404e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| which the budget ||| 0.0588235 0.0732944 2.6679e-06 3.64068e-07 2.718 ||| 0-1 ||| 17 374827 +del ||| which the situation is ||| 0.166667 0.0732944 2.6679e-06 4.762e-08 2.718 ||| 0-1 ||| 6 374827 +del ||| which the situation ||| 0.0434783 0.0732944 2.6679e-06 1.51941e-06 2.718 ||| 0-1 ||| 23 374827 +del ||| which the ||| 0.00889886 0.0732944 0.000328151 0.00295031 2.718 ||| 0-1 ||| 13822 374827 +del ||| which their ||| 0.00769231 0.0012173 2.6679e-06 1.34979e-06 2.718 ||| 0-1 ||| 130 374827 +del ||| which this ||| 0.002849 0.0033154 8.00369e-06 1.95028e-05 2.718 ||| 0-1 ||| 1053 374827 +del ||| which took place before the ||| 0.333333 0.0732944 2.6679e-06 1.63798e-13 2.718 ||| 0-4 ||| 3 374827 +del ||| which took place on ||| 0.0153846 0.0140673 2.6679e-06 1.8494e-11 2.718 ||| 0-3 ||| 65 374827 +del ||| which typify the ||| 0.5 0.0732944 2.6679e-06 2.06522e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| which underlies the ||| 0.166667 0.0732944 2.6679e-06 4.13043e-09 2.718 ||| 0-2 ||| 6 374827 +del ||| which was born after the era of ||| 1 0.130625 2.6679e-06 8.61518e-21 2.718 ||| 0-6 ||| 1 374827 +del ||| which way the ||| 0.333333 0.0732944 2.6679e-06 6.35969e-06 2.718 ||| 0-2 ||| 3 374827 +del ||| which ||| 3.09925e-06 3.5e-06 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 322659 374827 +del ||| while on the one hand ||| 0.0588235 0.0140673 2.6679e-06 1.85522e-13 2.718 ||| 0-1 ||| 17 374827 +del ||| while on the one ||| 0.0588235 0.0140673 2.6679e-06 4.67781e-10 2.718 ||| 0-1 ||| 17 374827 +del ||| while on the ||| 0.0243902 0.0140673 5.33579e-06 1.12231e-07 2.718 ||| 0-1 ||| 82 374827 +del ||| while on ||| 0.0152672 0.0140673 5.33579e-06 1.82812e-06 2.718 ||| 0-1 ||| 131 374827 +del ||| while showing ||| 0.111111 0.0033997 2.6679e-06 1.71488e-09 2.718 ||| 0-1 ||| 9 374827 +del ||| while the ||| 0.000441112 0.0732944 2.6679e-06 6.47397e-05 2.718 ||| 0-1 ||| 2267 374827 +del ||| whilst also taking account of the ||| 0.5 0.10196 2.6679e-06 3.34333e-15 2.718 ||| 0-4 0-5 ||| 2 374827 +del ||| whilst the Council ||| 0.166667 0.0732944 2.6679e-06 6.35339e-09 2.718 ||| 0-1 ||| 6 374827 +del ||| whilst the ||| 0.00204499 0.0732944 2.6679e-06 1.8373e-05 2.718 ||| 0-1 ||| 489 374827 +del ||| who appeal to the ||| 1 0.0732944 2.6679e-06 8.22049e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| who are not nationals of ||| 0.25 0.130625 2.6679e-06 1.50948e-13 2.718 ||| 0-4 ||| 4 374827 +del ||| who belong to the ||| 0.0434783 0.0732944 2.6679e-06 7.83941e-10 2.718 ||| 0-3 ||| 23 374827 +del ||| who carries out the ||| 0.5 0.0732944 2.6679e-06 9.26967e-12 2.718 ||| 0-3 ||| 2 374827 +del ||| who come from the ||| 0.111111 0.082213 2.6679e-06 5.63868e-09 2.718 ||| 0-2 0-3 ||| 9 374827 +del ||| who from the ||| 0.333333 0.0911315 2.6679e-06 1.17355e-06 2.718 ||| 0-1 ||| 3 374827 +del ||| who from ||| 0.142857 0.0911315 2.6679e-06 1.91158e-05 2.718 ||| 0-1 ||| 7 374827 +del ||| who in ||| 0.00675676 0.0183279 2.6679e-06 2.37844e-05 2.718 ||| 0-1 ||| 148 374827 +del ||| who is affiliated to the ||| 1 0.0732944 2.6679e-06 5.97177e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| who live in the ||| 0.0232558 0.0458111 5.33579e-06 8.32677e-10 2.718 ||| 0-2 0-3 ||| 86 374827 +del ||| who were members of the ||| 0.333333 0.10196 2.6679e-06 2.38769e-11 2.718 ||| 0-3 0-4 ||| 3 374827 +del ||| who were part of the ||| 0.2 0.10196 2.6679e-06 1.9299e-10 2.718 ||| 0-3 0-4 ||| 5 374827 +del ||| whole area of ||| 0.05 0.130625 2.6679e-06 6.93025e-08 2.718 ||| 0-2 ||| 20 374827 +del ||| whole basis of the ||| 0.5 0.10196 2.6679e-06 3.44153e-08 2.718 ||| 0-2 0-3 ||| 2 374827 +del ||| whole issue of ||| 0.0172414 0.130625 2.6679e-06 1.2629e-07 2.718 ||| 0-2 ||| 58 374827 +del ||| whole of the detailed procedure ||| 0.166667 0.130625 2.6679e-06 2.59198e-14 2.718 ||| 0-1 ||| 6 374827 +del ||| whole of the detailed ||| 0.166667 0.130625 2.6679e-06 2.58165e-10 2.718 ||| 0-1 ||| 6 374827 +del ||| whole of the ||| 0.00804598 0.10196 1.86753e-05 5.79577e-05 2.718 ||| 0-1 0-2 ||| 870 374827 +del ||| whole of ||| 0.00146843 0.130625 8.00369e-06 0.000166873 2.718 ||| 0-1 ||| 2043 374827 +del ||| whole question of the ||| 0.0666667 0.10196 2.6679e-06 4.79484e-08 2.718 ||| 0-2 0-3 ||| 15 374827 +del ||| whole question of ||| 0.0133333 0.130625 2.6679e-06 1.38054e-07 2.718 ||| 0-2 ||| 75 374827 +del ||| whole range of expertise ||| 0.5 0.130625 2.6679e-06 7.79565e-14 2.718 ||| 0-2 ||| 2 374827 +del ||| whole range of ||| 0.00520833 0.130625 2.6679e-06 1.14642e-08 2.718 ||| 0-2 ||| 192 374827 +del ||| whose numbers have understandably increased as a ||| 1 0.0190026 2.6679e-06 1.28314e-23 2.718 ||| 0-4 ||| 1 374827 +del ||| whose numbers have understandably increased as ||| 1 0.0190026 2.6679e-06 2.89479e-22 2.718 ||| 0-4 ||| 1 374827 +del ||| whose numbers have understandably increased ||| 1 0.0190026 2.6679e-06 2.8368e-20 2.718 ||| 0-4 ||| 1 374827 +del ||| whose share of ||| 0.2 0.130625 2.6679e-06 2.17572e-09 2.718 ||| 0-2 ||| 5 374827 +del ||| why the ||| 0.00175131 0.0732944 1.06716e-05 8.56133e-05 2.718 ||| 0-1 ||| 2284 374827 +del ||| wide range of ||| 0.00207039 0.130625 2.6679e-06 8.38992e-10 2.718 ||| 0-2 ||| 483 374827 +del ||| widespread dangers faced by ||| 0.333333 0.0461582 2.6679e-06 1.73471e-16 2.718 ||| 0-3 ||| 3 374827 +del ||| widespread ||| 0.00133333 0.0075 5.33579e-06 1.97e-05 2.718 ||| 0-0 ||| 1500 374827 +del ||| wielded by the ||| 0.2 0.0732944 2.6679e-06 7.29377e-10 2.718 ||| 0-2 ||| 5 374827 +del ||| wielded ||| 0.0625 0.0625 2.6679e-06 2.6e-06 2.718 ||| 0-0 ||| 16 374827 +del ||| wild salmon , ||| 1 0.160156 2.6679e-06 8.73374e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| wild salmon ||| 0.0217391 0.160156 2.6679e-06 7.3236e-10 2.718 ||| 0-1 ||| 46 374827 +del ||| will actually come from ||| 0.5 0.0911315 2.6679e-06 6.57355e-11 2.718 ||| 0-3 ||| 2 374827 +del ||| will at the same time be ||| 0.25 0.0732944 2.6679e-06 3.01232e-13 2.718 ||| 0-2 ||| 4 374827 +del ||| will at the same time ||| 0.047619 0.0732944 2.6679e-06 1.66216e-11 2.718 ||| 0-2 ||| 21 374827 +del ||| will at the same ||| 0.1 0.0732944 2.6679e-06 1.01246e-08 2.718 ||| 0-2 ||| 10 374827 +del ||| will at the ||| 0.0526316 0.0732944 2.6679e-06 1.25819e-05 2.718 ||| 0-2 ||| 19 374827 +del ||| will be able to ||| 0.000496524 0.0006066 2.6679e-06 1.74162e-10 2.718 ||| 0-3 ||| 2014 374827 +del ||| will be easy prey for populist ||| 1 0.0324324 2.6679e-06 3.95821e-22 2.718 ||| 0-3 ||| 1 374827 +del ||| will be easy prey for ||| 0.333333 0.0324324 2.6679e-06 3.59837e-16 2.718 ||| 0-3 ||| 3 374827 +del ||| will be easy prey ||| 0.5 0.0324324 2.6679e-06 4.68191e-14 2.718 ||| 0-3 ||| 2 374827 +del ||| will be helped by ||| 0.333333 0.0461582 2.6679e-06 5.01966e-11 2.718 ||| 0-3 ||| 3 374827 +del ||| will be in place ||| 0.0243902 0.0183279 2.6679e-06 6.36302e-09 2.718 ||| 0-2 ||| 41 374827 +del ||| will be in ||| 0.00175439 0.0183279 2.6679e-06 4.22792e-06 2.718 ||| 0-2 ||| 570 374827 +del ||| will be judged by ||| 0.0714286 0.0461582 2.6679e-06 2.73799e-11 2.718 ||| 0-3 ||| 14 374827 +del ||| will be lifted for ||| 1 0.0138653 2.6679e-06 2.24338e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| will be made of ||| 0.1 0.130625 2.6679e-06 9.68829e-08 2.718 ||| 0-3 ||| 10 374827 +del ||| will be no question of a ||| 1 0.130625 2.6679e-06 1.32016e-12 2.718 ||| 0-4 ||| 1 374827 +del ||| will be no question of ||| 1 0.130625 2.6679e-06 2.97831e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| will be of the ||| 0.0555556 0.10196 2.6679e-06 1.60631e-05 2.718 ||| 0-2 0-3 ||| 18 374827 +del ||| will be of ||| 0.00638978 0.130625 5.33579e-06 4.62493e-05 2.718 ||| 0-2 ||| 313 374827 +del ||| will be the ||| 0.000513084 0.0732944 2.6679e-06 5.44538e-05 2.718 ||| 0-2 ||| 1949 374827 +del ||| will be voting against the ||| 0.0333333 0.0732944 2.6679e-06 5.05416e-13 2.718 ||| 0-4 ||| 30 374827 +del ||| will begin in the ||| 0.111111 0.0458111 2.6679e-06 4.78053e-09 2.718 ||| 0-2 0-3 ||| 9 374827 +del ||| will bring about ||| 0.00724638 0.0101916 2.6679e-06 3.78141e-09 2.718 ||| 0-2 ||| 138 374827 +del ||| will bring for this sector are obvious ||| 1 0.0250353 2.6679e-06 6.31253e-20 2.718 ||| 0-4 ||| 1 374827 +del ||| will bring for this sector are ||| 1 0.0250353 2.6679e-06 1.5138e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| will bring for this sector ||| 1 0.0250353 2.6679e-06 9.9771e-14 2.718 ||| 0-4 ||| 1 374827 +del ||| will build on ||| 0.0384615 0.0140673 2.6679e-06 3.35993e-09 2.718 ||| 0-2 ||| 26 374827 +del ||| will come from the ||| 0.0454545 0.082213 2.6679e-06 5.53076e-08 2.718 ||| 0-2 0-3 ||| 22 374827 +del ||| will come from ||| 0.0232558 0.0911315 5.33579e-06 1.59243e-07 2.718 ||| 0-2 ||| 86 374827 +del ||| will come of ||| 0.0434783 0.130625 2.6679e-06 2.1674e-06 2.718 ||| 0-2 ||| 23 374827 +del ||| will determine the ||| 0.0120482 0.0732944 2.6679e-06 7.24132e-08 2.718 ||| 0-2 ||| 83 374827 +del ||| will drop from ||| 0.25 0.0911315 2.6679e-06 2.96249e-09 2.718 ||| 0-2 ||| 4 374827 +del ||| will facilitate the ||| 0.00689655 0.0732944 2.6679e-06 7.24132e-08 2.718 ||| 0-2 ||| 145 374827 +del ||| will find a legal basis for a ||| 1 0.0138653 2.6679e-06 4.68486e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| will find a legal basis for ||| 1 0.0138653 2.6679e-06 1.05691e-16 2.718 ||| 0-5 ||| 1 374827 +del ||| will give to the ||| 0.2 0.0732944 2.6679e-06 1.61797e-07 2.718 ||| 0-3 ||| 5 374827 +del ||| will go about the ||| 1 0.0732944 2.6679e-06 2.48513e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| will happen - that this ||| 1 0.0033154 2.6679e-06 1.36996e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| will have at the ||| 0.5 0.0732944 2.6679e-06 1.50477e-07 2.718 ||| 0-3 ||| 2 374827 +del ||| will in fact ||| 0.0263158 0.0183279 5.33579e-06 6.83381e-07 2.718 ||| 0-1 ||| 76 374827 +del ||| will in ||| 0.00557621 0.0183279 8.00369e-06 0.000233292 2.718 ||| 0-1 ||| 538 374827 +del ||| will issue a ||| 0.037037 0.0008087 2.6679e-06 5.52913e-09 2.718 ||| 0-2 ||| 27 374827 +del ||| will make the ||| 0.00904977 0.0732944 5.33579e-06 5.22156e-06 2.718 ||| 0-2 ||| 221 374827 +del ||| will of course ||| 0.00268097 0.130625 2.6679e-06 3.21983e-06 2.718 ||| 0-1 ||| 373 374827 +del ||| will of the ||| 0.00787402 0.10196 1.06716e-05 0.000886342 2.718 ||| 0-1 0-2 ||| 508 374827 +del ||| will of ||| 0.00716332 0.130625 1.33395e-05 0.00255198 2.718 ||| 0-1 ||| 698 374827 +del ||| will propose the provision of ||| 1 0.0732944 2.6679e-06 6.55912e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| will propose the provision ||| 1 0.0732944 2.6679e-06 1.20652e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| will propose the ||| 0.0769231 0.0732944 2.6679e-06 1.01559e-07 2.718 ||| 0-2 ||| 13 374827 +del ||| will provide a sum of EUR 1 ||| 0.5 0.130625 2.6679e-06 2.39947e-20 2.718 ||| 0-4 ||| 2 374827 +del ||| will provide a sum of EUR ||| 0.5 0.130625 2.6679e-06 3.76682e-16 2.718 ||| 0-4 ||| 2 374827 +del ||| will provide a sum of ||| 0.5 0.130625 2.6679e-06 1.40868e-12 2.718 ||| 0-4 ||| 2 374827 +del ||| will put the ||| 0.0294118 0.0732944 2.6679e-06 3.31298e-06 2.718 ||| 0-2 ||| 34 374827 +del ||| will review issues of protection of ||| 1 0.130625 2.6679e-06 1.3387e-16 2.718 ||| 0-5 ||| 1 374827 +del ||| will see the ||| 0.0113636 0.0732944 2.6679e-06 2.11711e-06 2.718 ||| 0-2 ||| 88 374827 +del ||| will the ||| 0.00261324 0.0732944 8.00369e-06 0.0030047 2.718 ||| 0-1 ||| 1148 374827 +del ||| will then be provided with the ||| 0.5 0.0732944 2.6679e-06 1.28524e-13 2.718 ||| 0-5 ||| 2 374827 +del ||| willing to ||| 0.000572082 0.0006066 2.6679e-06 5.02929e-08 2.718 ||| 0-1 ||| 1748 374827 +del ||| win or ||| 0.2 0.0009217 2.6679e-06 1.48629e-09 2.718 ||| 0-0 ||| 5 374827 +del ||| win the ||| 0.00497512 0.0732944 2.6679e-06 5.62652e-06 2.718 ||| 0-1 ||| 201 374827 +del ||| win ||| 0.00133156 0.0009217 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 751 374827 +del ||| wind of the ||| 0.333333 0.130625 2.6679e-06 3.91169e-07 2.718 ||| 0-1 ||| 3 374827 +del ||| wind of ||| 0.0188679 0.130625 2.6679e-06 6.37169e-06 2.718 ||| 0-1 ||| 53 374827 +del ||| wine ||| 0.000946522 0.0625 5.33579e-06 0.000197 2.718 ||| 0-0 ||| 2113 374827 +del ||| wine-market ||| 0.25 1 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 4 374827 +del ||| wing in the ||| 0.5 0.0458111 2.6679e-06 3.74634e-08 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| wiped ||| 0.0285714 0.0341463 2.6679e-06 9.2e-06 2.718 ||| 0-0 ||| 35 374827 +del ||| wisdom of ||| 0.0104167 0.130625 2.6679e-06 1.71092e-06 2.718 ||| 0-1 ||| 96 374827 +del ||| wishes of ||| 0.00473934 0.130625 5.33579e-06 1.56047e-05 2.718 ||| 0-1 ||| 422 374827 +del ||| with ; after all ||| 1 0.0045281 2.6679e-06 7.5066e-13 2.718 ||| 0-0 ||| 1 374827 +del ||| with ; after ||| 1 0.0045281 2.6679e-06 1.58856e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| with ; ||| 0.1 0.0045281 2.6679e-06 5.86186e-07 2.718 ||| 0-0 ||| 10 374827 +del ||| with Members of the ||| 0.0625 0.10196 2.6679e-06 9.66326e-08 2.718 ||| 0-2 0-3 ||| 16 374827 +del ||| with a view to providing the ||| 0.333333 0.0732944 2.6679e-06 7.25371e-13 2.718 ||| 0-5 ||| 3 374827 +del ||| with a view to the adoption of ||| 0.0172414 0.0732944 2.6679e-06 1.98029e-14 2.718 ||| 0-4 ||| 58 374827 +del ||| with a view to the adoption ||| 0.016129 0.0732944 2.6679e-06 3.64266e-13 2.718 ||| 0-4 ||| 62 374827 +del ||| with a view to the ||| 0.00254453 0.0732944 2.6679e-06 7.90164e-09 2.718 ||| 0-4 ||| 393 374827 +del ||| with a view ||| 0.000581734 0.0045281 5.33579e-06 7.62032e-08 2.718 ||| 0-0 ||| 3438 374827 +del ||| with a ||| 0.000850495 0.0045281 3.73506e-05 8.43609e-05 2.718 ||| 0-0 ||| 16461 374827 +del ||| with an ||| 0.000739645 0.0045281 5.33579e-06 8.45915e-06 2.718 ||| 0-0 ||| 2704 374827 +del ||| with answers ||| 0.0833333 0.0045281 2.6679e-06 4.11091e-08 2.718 ||| 0-0 ||| 12 374827 +del ||| with countries of the ||| 0.125 0.10196 2.6679e-06 2.48755e-07 2.718 ||| 0-2 0-3 ||| 8 374827 +del ||| with each other ||| 0.00301205 0.0045281 2.6679e-06 6.92093e-10 2.718 ||| 0-0 ||| 332 374827 +del ||| with each ||| 0.00189753 0.0045281 2.6679e-06 5.34228e-07 2.718 ||| 0-0 ||| 527 374827 +del ||| with effect from ||| 0.00775194 0.0911315 2.6679e-06 4.62334e-08 2.718 ||| 0-2 ||| 129 374827 +del ||| with immigration ||| 0.0322581 0.0045281 2.6679e-06 2.47416e-08 2.718 ||| 0-0 ||| 31 374827 +del ||| with in the ||| 0.0547945 0.0458111 1.06716e-05 5.989e-05 2.718 ||| 0-1 0-2 ||| 73 374827 +del ||| with in ||| 0.00378788 0.0183279 2.6679e-06 0.000172437 2.718 ||| 0-1 ||| 264 374827 +del ||| with information in the ||| 1 0.0458111 2.6679e-06 9.91179e-09 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| with information regarding the ||| 1 0.0389112 2.6679e-06 6.7717e-12 2.718 ||| 0-0 0-3 ||| 1 374827 +del ||| with information ||| 0.00581395 0.0045281 2.6679e-06 3.1498e-07 2.718 ||| 0-0 ||| 172 374827 +del ||| with it the number of ||| 0.5 0.130625 2.6679e-06 1.01896e-09 2.718 ||| 0-4 ||| 2 374827 +del ||| with it ||| 0.000704225 0.0045281 2.6679e-06 3.3845e-05 2.718 ||| 0-0 ||| 1420 374827 +del ||| with its ||| 0.000307125 0.00405435 2.6679e-06 9.29904e-07 2.718 ||| 0-0 0-1 ||| 3256 374827 +del ||| with jurisdiction in ||| 0.333333 0.011428 2.6679e-06 4.25976e-10 2.718 ||| 0-0 0-2 ||| 3 374827 +del ||| with people ||| 0.00411523 0.0045281 2.6679e-06 1.6752e-06 2.718 ||| 0-0 ||| 243 374827 +del ||| with providing the ||| 0.5 0.0367252 2.6679e-06 2.88718e-09 2.718 ||| 0-1 0-2 ||| 2 374827 +del ||| with reference to the ||| 0.00529101 0.0732944 2.6679e-06 1.68336e-08 2.718 ||| 0-3 ||| 189 374827 +del ||| with regard to the ||| 0.00146461 0.0732944 2.40111e-05 1.34373e-07 2.718 ||| 0-3 ||| 6145 374827 +del ||| with regard to ||| 0.000359583 0.0045281 1.33395e-05 1.1515e-07 2.718 ||| 0-0 ||| 13905 374827 +del ||| with regard ||| 0.000924543 0.0045281 3.46827e-05 1.29589e-06 2.718 ||| 0-0 ||| 14061 374827 +del ||| with respect for the ||| 0.0144928 0.0435798 2.6679e-06 1.03363e-08 2.718 ||| 0-2 0-3 ||| 69 374827 +del ||| with respect to the ||| 0.00287356 0.0389112 2.6679e-06 2.54093e-08 2.718 ||| 0-0 0-3 ||| 348 374827 +del ||| with scores of ||| 1 0.130625 2.6679e-06 2.6408e-09 2.718 ||| 0-2 ||| 1 374827 +del ||| with some ||| 0.000798722 0.0045281 2.6679e-06 2.07316e-06 2.718 ||| 0-0 ||| 1252 374827 +del ||| with stable ||| 0.5 0.0045281 2.6679e-06 2.53126e-08 2.718 ||| 0-0 ||| 2 374827 +del ||| with state-of-the-art ||| 0.25 0.0240964 2.6679e-06 3.38909e-08 2.718 ||| 0-1 ||| 4 374827 +del ||| with that country ||| 0.00657895 0.0045281 2.6679e-06 1.15222e-08 2.718 ||| 0-0 ||| 152 374827 +del ||| with that first Kok report , the ||| 1 0.0732944 2.6679e-06 3.93294e-19 2.718 ||| 0-6 ||| 1 374827 +del ||| with that of the ||| 0.0206186 0.130625 5.33579e-06 1.94798e-06 2.718 ||| 0-2 ||| 97 374827 +del ||| with that of ||| 0.00584795 0.130625 2.6679e-06 3.17303e-05 2.718 ||| 0-2 ||| 171 374827 +del ||| with that ||| 0.000544959 0.0045281 2.6679e-06 3.20149e-05 2.718 ||| 0-0 ||| 1835 374827 +del ||| with the Commission ' s proposal that ||| 1 0.0732944 2.6679e-06 2.84745e-17 2.718 ||| 0-1 ||| 1 374827 +del ||| with the Commission ' s proposal ||| 0.0833333 0.0732944 2.6679e-06 1.69274e-15 2.718 ||| 0-1 ||| 12 374827 +del ||| with the Commission ' s ||| 0.2 0.0732944 2.6679e-06 8.4764e-12 2.718 ||| 0-1 ||| 5 374827 +del ||| with the Commission ' ||| 0.1 0.0732944 2.6679e-06 4.45587e-09 2.718 ||| 0-1 ||| 10 374827 +del ||| with the Commission ||| 0.000441112 0.0732944 2.6679e-06 1.29723e-06 2.718 ||| 0-1 ||| 2267 374827 +del ||| with the European Women ||| 1 0.0389112 2.6679e-06 2.87346e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| with the European ||| 0.0283688 0.0389112 1.06716e-05 2.21036e-06 2.718 ||| 0-0 0-1 ||| 141 374827 +del ||| with the admittedly ||| 1 0.0732944 2.6679e-06 4.95263e-08 2.718 ||| 0-1 ||| 1 374827 +del ||| with the climate ||| 0.125 0.0389112 2.6679e-06 1.80456e-08 2.718 ||| 0-0 0-1 ||| 8 374827 +del ||| with the development ||| 0.00689655 0.0389112 2.6679e-06 1.08736e-07 2.718 ||| 0-0 0-1 ||| 145 374827 +del ||| with the entire ||| 0.02 0.0389112 2.6679e-06 5.23521e-08 2.718 ||| 0-0 0-1 ||| 50 374827 +del ||| with the government and people of Cuba ||| 1 0.130625 2.6679e-06 4.08051e-19 2.718 ||| 0-5 ||| 1 374827 +del ||| with the government and people of ||| 0.25 0.130625 2.6679e-06 1.02013e-13 2.718 ||| 0-5 ||| 4 374827 +del ||| with the issue ||| 0.00581395 0.0389112 2.6679e-06 5.00253e-07 2.718 ||| 0-0 0-1 ||| 172 374827 +del ||| with the last ||| 0.0138889 0.0389112 2.6679e-06 1.44365e-07 2.718 ||| 0-0 0-1 ||| 72 374827 +del ||| with the new British Government 's ||| 1 0.169811 2.6679e-06 1.34057e-17 2.718 ||| 0-5 ||| 1 374827 +del ||| with the new ||| 0.00133333 0.0732944 2.6679e-06 1.32744e-06 2.718 ||| 0-1 ||| 750 374827 +del ||| with the principle ||| 0.00244499 0.0732944 2.6679e-06 3.40466e-07 2.718 ||| 0-1 ||| 409 374827 +del ||| with the process ||| 0.0111111 0.0732944 2.6679e-06 9.49439e-07 2.718 ||| 0-1 ||| 90 374827 +del ||| with the spirit of ||| 0.0142857 0.130625 2.6679e-06 6.7976e-09 2.718 ||| 0-3 ||| 70 374827 +del ||| with the support of the ||| 0.00374532 0.10196 2.6679e-06 1.37512e-08 2.718 ||| 0-3 0-4 ||| 267 374827 +del ||| with the work of ||| 0.0222222 0.0732944 2.6679e-06 7.64269e-08 2.718 ||| 0-1 ||| 45 374827 +del ||| with the work ||| 0.00561798 0.0732944 2.6679e-06 1.40584e-06 2.718 ||| 0-1 ||| 178 374827 +del ||| with the ||| 0.00815918 0.0389112 0.00178216 0.000661011 2.718 ||| 0-0 0-1 ||| 81871 374827 +del ||| with their ||| 0.000968523 0.0045281 5.33579e-06 2.206e-06 2.718 ||| 0-0 ||| 2065 374827 +del ||| with them is the winner ||| 1 0.0732944 2.6679e-06 2.09116e-12 2.718 ||| 0-3 ||| 1 374827 +del ||| with them is the ||| 1 0.0732944 2.6679e-06 1.86711e-07 2.718 ||| 0-3 ||| 1 374827 +del ||| with these ||| 0.000608643 0.0045281 2.6679e-06 1.97381e-06 2.718 ||| 0-0 ||| 1643 374827 +del ||| with this ||| 0.00181242 0.00392175 3.20148e-05 4.36956e-06 2.718 ||| 0-0 0-1 ||| 6621 374827 +del ||| with those of the ||| 0.00884956 0.130625 2.6679e-06 8.38525e-08 2.718 ||| 0-2 ||| 113 374827 +del ||| with those of ||| 0.0042735 0.130625 2.6679e-06 1.36586e-06 2.718 ||| 0-2 ||| 234 374827 +del ||| with us by ||| 0.5 0.0461582 2.6679e-06 2.98013e-07 2.718 ||| 0-2 ||| 2 374827 +del ||| with us ||| 0.000548546 0.0045281 2.6679e-06 5.4854e-06 2.718 ||| 0-0 ||| 1823 374827 +del ||| with what sort of ||| 0.25 0.130625 2.6679e-06 4.22934e-10 2.718 ||| 0-3 ||| 4 374827 +del ||| with which that result ||| 1 0.0045281 2.6679e-06 1.43184e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| with which that ||| 1 0.0045281 2.6679e-06 2.71954e-07 2.718 ||| 0-0 ||| 1 374827 +del ||| with which the ||| 0.00285714 0.0732944 2.6679e-06 1.88657e-05 2.718 ||| 0-2 ||| 350 374827 +del ||| with which ||| 0.00130251 0.0045281 1.06716e-05 1.61669e-05 2.718 ||| 0-0 ||| 3071 374827 +del ||| with you regarding the ||| 0.333333 0.0389112 2.6679e-06 1.32107e-10 2.718 ||| 0-0 0-3 ||| 3 374827 +del ||| with you to bring ||| 1 0.0045281 2.6679e-06 1.69976e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| with you to ||| 0.0178571 0.0045281 2.6679e-06 5.46021e-07 2.718 ||| 0-0 ||| 56 374827 +del ||| with you ||| 0.0004649 0.0045281 2.6679e-06 6.14486e-06 2.718 ||| 0-0 ||| 2151 374827 +del ||| with ||| 0.0018534 0.0045281 0.00136863 0.0019032 2.718 ||| 0-0 ||| 276788 374827 +del ||| withdrawal from ||| 0.00704225 0.0911315 2.6679e-06 2.1023e-07 2.718 ||| 0-1 ||| 142 374827 +del ||| withdrawing from ||| 0.0217391 0.0911315 2.6679e-06 4.7681e-08 2.718 ||| 0-1 ||| 46 374827 +del ||| withdrawing their driving ||| 1 0.0169492 2.6679e-06 1.50706e-13 2.718 ||| 0-2 ||| 1 374827 +del ||| withholding the ||| 0.0714286 0.0732944 2.6679e-06 1.00722e-06 2.718 ||| 0-1 ||| 14 374827 +del ||| within a ||| 0.00104058 0.0072058 5.33579e-06 1.85149e-05 2.718 ||| 0-0 ||| 1922 374827 +del ||| within it ||| 0.00540541 0.0072058 2.6679e-06 7.42804e-06 2.718 ||| 0-0 ||| 185 374827 +del ||| within its ||| 0.00229358 0.0053932 2.6679e-06 2.04088e-07 2.718 ||| 0-0 0-1 ||| 436 374827 +del ||| within the European ||| 0.00552486 0.0402501 2.6679e-06 4.85112e-07 2.718 ||| 0-0 0-1 ||| 181 374827 +del ||| within the field of ||| 0.0322581 0.0689153 2.6679e-06 1.10516e-09 2.718 ||| 0-0 0-3 ||| 31 374827 +del ||| within the framework of the ||| 0.000558659 0.0711048 2.6679e-06 1.77021e-09 2.718 ||| 0-0 0-1 0-3 0-4 ||| 1790 374827 +del ||| within the main part ||| 0.5 0.0732944 2.6679e-06 8.63223e-12 2.718 ||| 0-1 ||| 2 374827 +del ||| within the main ||| 0.25 0.0732944 2.6679e-06 7.24059e-09 2.718 ||| 0-1 ||| 4 374827 +del ||| within the meaning of ||| 0.0138889 0.130625 2.6679e-06 1.15874e-10 2.718 ||| 0-3 ||| 72 374827 +del ||| within the proposed ||| 1 0.0402501 2.6679e-06 1.61902e-08 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| within the usual scope ||| 1 0.0732944 2.6679e-06 1.25262e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| within the usual ||| 1 0.0732944 2.6679e-06 1.25639e-09 2.718 ||| 0-1 ||| 1 374827 +del ||| within the ||| 0.0103378 0.0402501 0.000618952 0.000145074 2.718 ||| 0-0 0-1 ||| 22442 374827 +del ||| within their ||| 0.00274725 0.0072058 2.6679e-06 4.84156e-07 2.718 ||| 0-0 ||| 364 374827 +del ||| within this ||| 0.00273224 0.0052606 8.00369e-06 9.58997e-07 2.718 ||| 0-0 0-1 ||| 1098 374827 +del ||| within which this ||| 0.166667 0.0033154 2.6679e-06 4.07803e-09 2.718 ||| 0-2 ||| 6 374827 +del ||| within ||| 0.00107011 0.0072058 0.000104048 0.0004177 2.718 ||| 0-0 ||| 36445 374827 +del ||| without evidence , of ||| 0.166667 0.130625 2.6679e-06 4.28371e-10 2.718 ||| 0-3 ||| 6 374827 +del ||| without mention of the slaughter ||| 1 0.10196 2.6679e-06 8.80326e-15 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| without mention of the ||| 1 0.10196 2.6679e-06 2.20082e-09 2.718 ||| 0-2 0-3 ||| 1 374827 +del ||| without putting the ||| 0.142857 0.0732944 2.6679e-06 8.58909e-09 2.718 ||| 0-2 ||| 7 374827 +del ||| without reference to the ||| 0.0769231 0.0732944 2.6679e-06 5.81786e-10 2.718 ||| 0-3 ||| 13 374827 +del ||| without taking into account the ||| 0.025 0.0732944 2.6679e-06 9.62913e-15 2.718 ||| 0-4 ||| 40 374827 +del ||| witness the report 's ||| 1 0.169811 2.6679e-06 1.45603e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| women 's ||| 0.00195695 0.169811 2.6679e-06 4.77349e-06 2.718 ||| 0-1 ||| 511 374827 +del ||| women from ||| 0.0047619 0.0911315 2.6679e-06 2.57478e-06 2.718 ||| 0-1 ||| 210 374827 +del ||| women on ||| 0.00671141 0.0140673 2.6679e-06 1.16513e-06 2.718 ||| 0-1 ||| 149 374827 +del ||| women under threat from ||| 1 0.0911315 2.6679e-06 3.62141e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| word - the ||| 0.333333 0.0732944 2.6679e-06 1.33369e-07 2.718 ||| 0-2 ||| 3 374827 +del ||| word about it , because ||| 1 0.0101916 2.6679e-06 9.9609e-14 2.718 ||| 0-1 ||| 1 374827 +del ||| word about it , ||| 0.333333 0.0101916 2.6679e-06 3.03132e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| word about it ||| 0.125 0.0101916 2.6679e-06 2.54188e-09 2.718 ||| 0-1 ||| 8 374827 +del ||| word about ||| 0.00423729 0.0101916 2.6679e-06 1.42937e-07 2.718 ||| 0-1 ||| 236 374827 +del ||| wording of ||| 0.00294985 0.130625 2.6679e-06 4.1298e-06 2.718 ||| 0-1 ||| 339 374827 +del ||| words , on the ||| 0.142857 0.0436809 2.6679e-06 9.18051e-08 2.718 ||| 0-2 0-3 ||| 7 374827 +del ||| words , the planned ||| 0.5 0.0732944 2.6679e-06 3.20136e-10 2.718 ||| 0-2 ||| 2 374827 +del ||| words , the ||| 0.00255754 0.0732944 2.6679e-06 9.3607e-06 2.718 ||| 0-2 ||| 391 374827 +del ||| words of reconciliation ||| 0.166667 0.130625 2.6679e-06 1.46667e-10 2.718 ||| 0-1 ||| 6 374827 +del ||| words of the ||| 0.00505051 0.10196 2.6679e-06 2.31544e-05 2.718 ||| 0-1 0-2 ||| 198 374827 +del ||| words of ||| 0.00122699 0.130625 2.6679e-06 6.66667e-05 2.718 ||| 0-1 ||| 815 374827 +del ||| work done on the ||| 0.0714286 0.0436809 2.6679e-06 9.83222e-10 2.718 ||| 0-2 0-3 ||| 14 374827 +del ||| work in that ||| 0.0285714 0.0183279 2.6679e-06 2.8714e-07 2.718 ||| 0-1 ||| 35 374827 +del ||| work in the ||| 0.00146413 0.0458111 2.6679e-06 5.92859e-06 2.718 ||| 0-1 0-2 ||| 683 374827 +del ||| work in ||| 0.000335683 0.0183279 2.6679e-06 1.70697e-05 2.718 ||| 0-1 ||| 2979 374827 +del ||| work of the various ||| 0.111111 0.10196 2.6679e-06 1.00133e-08 2.718 ||| 0-1 0-2 ||| 9 374827 +del ||| work of the ||| 0.00328793 0.10196 1.86753e-05 6.48528e-05 2.718 ||| 0-1 0-2 ||| 2129 374827 +del ||| work of ||| 0.000621891 0.130625 5.33579e-06 0.000186726 2.718 ||| 0-1 ||| 3216 374827 +del ||| work on national ||| 0.333333 0.0140673 2.6679e-06 7.97747e-10 2.718 ||| 0-1 ||| 3 374827 +del ||| work on the ||| 0.0010846 0.0436809 2.6679e-06 2.15619e-06 2.718 ||| 0-1 0-2 ||| 922 374827 +del ||| work on ||| 0.000309023 0.0140673 2.6679e-06 6.20815e-06 2.718 ||| 0-1 ||| 3236 374827 +del ||| worked on ||| 0.00294985 0.0140673 2.6679e-06 4.26626e-07 2.718 ||| 0-1 ||| 339 374827 +del ||| worked up about ||| 0.0625 0.0101916 2.6679e-06 2.08308e-10 2.718 ||| 0-2 ||| 16 374827 +del ||| working conditions of ||| 0.0151515 0.130625 2.6679e-06 6.71175e-09 2.718 ||| 0-2 ||| 66 374827 +del ||| working in the ||| 0.00214592 0.0458111 2.6679e-06 1.78326e-06 2.718 ||| 0-1 0-2 ||| 466 374827 +del ||| working of the ||| 0.0144928 0.130625 2.6679e-06 3.44809e-06 2.718 ||| 0-1 ||| 69 374827 +del ||| working of ||| 0.0166667 0.130625 2.6679e-06 5.61652e-05 2.718 ||| 0-1 ||| 60 374827 +del ||| working on the assumption ||| 0.0384615 0.0140673 2.6679e-06 1.15786e-12 2.718 ||| 0-1 ||| 26 374827 +del ||| working on the basis of ||| 0.037037 0.0732944 2.6679e-06 1.42835e-11 2.718 ||| 0-2 ||| 27 374827 +del ||| working on the basis ||| 0.0263158 0.0732944 2.6679e-06 2.62738e-10 2.718 ||| 0-2 ||| 38 374827 +del ||| working on the ||| 0.00986842 0.0140673 8.00369e-06 1.1464e-07 2.718 ||| 0-1 ||| 304 374827 +del ||| working on ||| 0.000681663 0.0140673 2.6679e-06 1.86735e-06 2.718 ||| 0-1 ||| 1467 374827 +del ||| working parties of the ||| 0.25 0.10196 2.6679e-06 1.43182e-09 2.718 ||| 0-2 0-3 ||| 4 374827 +del ||| working towards the ||| 0.0416667 0.0732944 5.33579e-06 8.39837e-09 2.718 ||| 0-2 ||| 48 374827 +del ||| working ||| 0.0011991 0.0101757 6.66974e-05 0.0002496 2.718 ||| 0-0 ||| 20849 374827 +del ||| workings of the ||| 0.00833333 0.10196 2.6679e-06 3.2785e-07 2.718 ||| 0-1 0-2 ||| 120 374827 +del ||| works for the ||| 0.0526316 0.0732944 2.6679e-06 1.10512e-07 2.718 ||| 0-2 ||| 19 374827 +del ||| works in ||| 0.00833333 0.0183279 2.6679e-06 1.11641e-06 2.718 ||| 0-1 ||| 120 374827 +del ||| world 's ||| 0.00170068 0.169811 2.6679e-06 9.15321e-06 2.718 ||| 0-1 ||| 588 374827 +del ||| world of the ||| 0.0232558 0.10196 2.6679e-06 2.33388e-05 2.718 ||| 0-1 0-2 ||| 43 374827 +del ||| world scale are becoming commonplace ||| 0.5 0.004098 2.6679e-06 2.07341e-20 2.718 ||| 0-0 ||| 2 374827 +del ||| world scale are becoming ||| 0.5 0.004098 2.6679e-06 1.48101e-14 2.718 ||| 0-0 ||| 2 374827 +del ||| world scale are ||| 0.5 0.004098 2.6679e-06 1.43927e-10 2.718 ||| 0-0 ||| 2 374827 +del ||| world scale ||| 0.0833333 0.004098 2.6679e-06 9.48592e-09 2.718 ||| 0-0 ||| 12 374827 +del ||| world ||| 0.000130595 0.004098 1.06716e-05 0.0001616 2.718 ||| 0-0 ||| 30629 374827 +del ||| world ’ s ||| 0.00704225 0.16804 2.6679e-06 4.15689e-09 2.718 ||| 0-2 ||| 142 374827 +del ||| worthy of the ||| 0.00497512 0.10196 2.6679e-06 2.02857e-06 2.718 ||| 0-1 0-2 ||| 201 374827 +del ||| worthy of ||| 0.0014245 0.130625 2.6679e-06 5.84071e-06 2.718 ||| 0-1 ||| 702 374827 +del ||| would , of course , have to ||| 0.25 0.130625 2.6679e-06 3.30119e-11 2.718 ||| 0-2 ||| 4 374827 +del ||| would , of course , have ||| 0.1 0.130625 2.6679e-06 3.71513e-10 2.718 ||| 0-2 ||| 10 374827 +del ||| would , of course , ||| 0.00840336 0.130625 2.6679e-06 3.10635e-08 2.718 ||| 0-2 ||| 119 374827 +del ||| would , of course ||| 0.00917431 0.130625 2.6679e-06 2.6048e-07 2.718 ||| 0-2 ||| 109 374827 +del ||| would , of ||| 0.0512821 0.130625 5.33579e-06 0.000206452 2.718 ||| 0-2 ||| 39 374827 +del ||| would ask the ||| 0.00531915 0.0732944 2.6679e-06 2.80265e-07 2.718 ||| 0-2 ||| 188 374827 +del ||| would be a ||| 0.000591716 0.0008087 2.6679e-06 8.98192e-08 2.718 ||| 0-2 ||| 1690 374827 +del ||| would be in the ||| 0.0212766 0.0458111 2.6679e-06 9.96133e-07 2.718 ||| 0-2 0-3 ||| 47 374827 +del ||| would go up ||| 0.125 0.0020886 2.6679e-06 6.48994e-10 2.718 ||| 0-2 ||| 8 374827 +del ||| would have a negative impact on the ||| 0.166667 0.0140673 2.6679e-06 3.61189e-18 2.718 ||| 0-5 ||| 6 374827 +del ||| would have a negative impact on ||| 0.0555556 0.0140673 2.6679e-06 5.88334e-17 2.718 ||| 0-5 ||| 18 374827 +del ||| would have been brought on ||| 1 0.0140673 2.6679e-06 6.43613e-13 2.718 ||| 0-4 ||| 1 374827 +del ||| would like the ||| 0.0106383 0.0732944 5.33579e-06 3.6198e-06 2.718 ||| 0-2 ||| 188 374827 +del ||| would like to highlight . the ||| 1 0.0732944 2.6679e-06 1.8219e-14 2.718 ||| 0-5 ||| 1 374827 +del ||| would like to mention the ||| 0.0169492 0.0732944 2.6679e-06 3.12643e-11 2.718 ||| 0-4 ||| 59 374827 +del ||| would observe the ||| 0.333333 0.0732944 2.6679e-06 3.89314e-08 2.718 ||| 0-2 ||| 3 374827 +del ||| would of ||| 0.0333333 0.130625 2.6679e-06 0.00173118 2.718 ||| 0-1 ||| 30 374827 +del ||| would operate in a ||| 1 0.0183279 2.6679e-06 3.40924e-10 2.718 ||| 0-2 ||| 1 374827 +del ||| would operate in ||| 0.5 0.0183279 2.6679e-06 7.69132e-09 2.718 ||| 0-2 ||| 2 374827 +del ||| would raise libraries ||| 1 0.0042553 2.6679e-06 1.00554e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| would result from ||| 0.04 0.0911315 2.6679e-06 6.69674e-08 2.718 ||| 0-2 ||| 25 374827 +del ||| would result in ||| 0.00448431 0.0183279 2.6679e-06 8.33227e-08 2.718 ||| 0-2 ||| 223 374827 +del ||| wrapped up by ||| 1 0.0461582 2.6679e-06 3.8603e-11 2.718 ||| 0-2 ||| 1 374827 +del ||| wrecked ||| 0.0208333 0.0153846 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 48 374827 +del ||| write home about , ||| 0.333333 0.0101916 2.6679e-06 1.64858e-13 2.718 ||| 0-2 ||| 3 374827 +del ||| write home about ||| 0.166667 0.0101916 2.6679e-06 1.38241e-12 2.718 ||| 0-2 ||| 6 374827 +del ||| written by ||| 0.00990099 0.0461582 2.6679e-06 8.0849e-07 2.718 ||| 0-1 ||| 101 374827 +del ||| written in his ||| 0.333333 0.00992395 2.6679e-06 8.14385e-11 2.718 ||| 0-1 0-2 ||| 3 374827 +del ||| wrought by the ||| 0.166667 0.0597263 2.6679e-06 7.86244e-09 2.718 ||| 0-1 0-2 ||| 6 374827 +del ||| x02BC ; s ||| 0.0847458 0.16804 1.33395e-05 1.24209e-10 2.718 ||| 0-2 ||| 59 374827 +del ||| year 2005 , whereas the Council ||| 1 0.0707819 2.6679e-06 4.16018e-18 2.718 ||| 0-5 ||| 1 374827 +del ||| year in ||| 0.00145349 0.0183279 2.6679e-06 6.72542e-06 2.718 ||| 0-1 ||| 688 374827 +del ||| year is that , for the first ||| 1 0.0138653 2.6679e-06 5.57592e-15 2.718 ||| 0-4 ||| 1 374827 +del ||| year is that , for the ||| 1 0.0138653 2.6679e-06 1.03565e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| year is that , for ||| 1 0.0138653 2.6679e-06 1.68695e-10 2.718 ||| 0-4 ||| 1 374827 +del ||| year ’ s ||| 0.016129 0.106997 2.6679e-06 2.6527e-09 2.718 ||| 0-1 ||| 62 374827 +del ||| year ’ ||| 0.0120482 0.106997 2.6679e-06 1.39447e-06 2.718 ||| 0-1 ||| 83 374827 +del ||| years , by ||| 0.142857 0.0461582 2.6679e-06 3.28201e-07 2.718 ||| 0-2 ||| 7 374827 +del ||| years from now , ||| 0.2 0.0911315 2.6679e-06 9.06159e-10 2.718 ||| 0-1 ||| 5 374827 +del ||| years from now ||| 0.0833333 0.0911315 2.6679e-06 7.59852e-09 2.718 ||| 0-1 ||| 12 374827 +del ||| years from ||| 0.00840336 0.0911315 2.6679e-06 3.68878e-06 2.718 ||| 0-1 ||| 119 374827 +del ||| years of the ||| 0.0137615 0.10196 8.00369e-06 1.74375e-05 2.718 ||| 0-1 0-2 ||| 218 374827 +del ||| years on ||| 0.0030303 0.0140673 2.6679e-06 1.66924e-06 2.718 ||| 0-1 ||| 330 374827 +del ||| yesterday 's ||| 0.00617284 0.169811 2.6679e-06 9.56305e-07 2.718 ||| 0-1 ||| 162 374827 +del ||| yet this ||| 0.00495049 0.0033154 2.6679e-06 6.07266e-07 2.718 ||| 0-1 ||| 202 374827 +del ||| yield ||| 0.00265957 0.0021598 2.6679e-06 1.3e-06 2.718 ||| 0-0 ||| 376 374827 +del ||| yielded by the ||| 1 0.0597263 2.6679e-06 1.23553e-08 2.718 ||| 0-1 0-2 ||| 1 374827 +del ||| you , and , of course , ||| 1 0.130625 2.6679e-06 2.55282e-11 2.718 ||| 0-4 ||| 1 374827 +del ||| you , and , of course ||| 1 0.130625 2.6679e-06 2.14064e-10 2.718 ||| 0-4 ||| 1 374827 +del ||| you , and , of ||| 1 0.130625 2.6679e-06 1.69663e-07 2.718 ||| 0-4 ||| 1 374827 +del ||| you , the ||| 0.00555556 0.0732944 2.6679e-06 0.00013373 2.718 ||| 0-2 ||| 180 374827 +del ||| you are all too aware of this ||| 1 0.0669701 2.6679e-06 2.96376e-17 2.718 ||| 0-5 0-6 ||| 1 374827 +del ||| you for raising ||| 0.25 0.0138653 2.6679e-06 7.9892e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| you for ||| 0.00550964 0.0138653 5.33579e-06 3.47356e-05 2.718 ||| 0-1 ||| 363 374827 +del ||| you go in the ||| 0.333333 0.0732944 2.6679e-06 1.40367e-08 2.718 ||| 0-3 ||| 3 374827 +del ||| you going to wait for ||| 0.1 0.0138653 2.6679e-06 7.13196e-14 2.718 ||| 0-4 ||| 10 374827 +del ||| you have put into your ||| 0.5 0.0017627 2.6679e-06 3.33095e-15 2.718 ||| 0-4 ||| 2 374827 +del ||| you made in ||| 0.0909091 0.0183279 2.6679e-06 1.82387e-07 2.718 ||| 0-2 ||| 11 374827 +del ||| you of ||| 0.0106383 0.130625 2.6679e-06 0.00095242 2.718 ||| 0-1 ||| 94 374827 +del ||| you on developments in ||| 1 0.0183279 2.6679e-06 1.74186e-11 2.718 ||| 0-3 ||| 1 374827 +del ||| you on the ||| 0.010989 0.0436809 2.6679e-06 1.09979e-05 2.718 ||| 0-1 0-2 ||| 91 374827 +del ||| you take the ||| 0.0277778 0.0732944 2.6679e-06 1.80542e-06 2.718 ||| 0-2 ||| 36 374827 +del ||| you to go for the decision ||| 1 0.0138653 2.6679e-06 1.74309e-14 2.718 ||| 0-3 ||| 1 374827 +del ||| you to go for the ||| 1 0.0138653 2.6679e-06 1.10813e-10 2.718 ||| 0-3 ||| 1 374827 +del ||| you to go for ||| 1 0.0138653 2.6679e-06 1.80501e-09 2.718 ||| 0-3 ||| 1 374827 +del ||| you will find a legal basis for ||| 1 0.0138653 2.6679e-06 3.41246e-19 2.718 ||| 0-6 ||| 1 374827 +del ||| you will review issues of protection of ||| 1 0.130625 2.6679e-06 4.32227e-19 2.718 ||| 0-6 ||| 1 374827 +del ||| you with the ||| 0.0909091 0.0389112 2.6679e-06 2.13421e-06 2.718 ||| 0-1 0-2 ||| 11 374827 +del ||| young girl 's ||| 1 0.169811 2.6679e-06 3.58333e-12 2.718 ||| 0-2 ||| 1 374827 +del ||| your allotted ||| 0.142857 0.0087912 2.6679e-06 1.35627e-09 2.718 ||| 0-1 ||| 7 374827 +del ||| your answers , with the ||| 1 0.0389112 2.6679e-06 4.35721e-13 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| your own ||| 0.00145138 0.0017627 2.6679e-06 1.29182e-07 2.718 ||| 0-0 ||| 689 374827 +del ||| your partner , Mr Napolitano , you ||| 1 0.0202703 2.6679e-06 1.52706e-21 2.718 ||| 0-4 ||| 1 374827 +del ||| your partner , Mr Napolitano , ||| 1 0.0202703 2.6679e-06 4.72965e-19 2.718 ||| 0-4 ||| 1 374827 +del ||| your partner , Mr Napolitano ||| 1 0.0202703 2.6679e-06 3.96601e-18 2.718 ||| 0-4 ||| 1 374827 +del ||| your ||| 0.000622123 0.0017627 5.33579e-05 7.62e-05 2.718 ||| 0-0 ||| 32148 374827 +del ||| yourself of ||| 0.5 0.130625 2.6679e-06 1.32743e-05 2.718 ||| 0-1 ||| 2 374827 +del ||| zone ||| 0.000422119 0.0023866 2.6679e-06 6.6e-06 2.718 ||| 0-0 ||| 2369 374827 +del ||| ­ by ||| 1 0.0461582 5.33579e-06 1.2289e-07 2.718 ||| 0-1 ||| 2 374827 +del ||| Öresund ||| 0.111111 0.181818 2.6679e-06 5.3e-06 2.718 ||| 0-0 ||| 9 374827 +del ||| Øresund ||| 0.0666667 0.230769 2.6679e-06 3.9e-06 2.718 ||| 0-0 ||| 15 374827 +del ||| – by the ||| 0.047619 0.0597263 2.6679e-06 2.2071e-06 2.718 ||| 0-1 0-2 ||| 21 374827 +del ||| – from the ||| 0.037037 0.082213 2.6679e-06 2.95829e-06 2.718 ||| 0-1 0-2 ||| 27 374827 +del ||| – involving ||| 0.111111 0.0041841 2.6679e-06 1.34013e-08 2.718 ||| 0-1 ||| 9 374827 +del ||| – of the ||| 0.0163934 0.10196 2.6679e-06 4.02641e-05 2.718 ||| 0-1 0-2 ||| 61 374827 +del ||| – of ||| 0.00425532 0.130625 2.6679e-06 0.000115929 2.718 ||| 0-1 ||| 235 374827 +del ||| – on carrying ||| 0.5 0.0140673 2.6679e-06 2.33188e-10 2.718 ||| 0-1 ||| 2 374827 +del ||| – on ||| 0.00502513 0.0140673 2.6679e-06 3.85435e-06 2.718 ||| 0-1 ||| 199 374827 +del ||| – to the ||| 0.0151515 0.0732944 2.6679e-06 1.21287e-05 2.718 ||| 0-2 ||| 66 374827 +del ||| ‘ black ’ ||| 0.2 0.106997 2.6679e-06 8.79064e-12 2.718 ||| 0-2 ||| 5 374827 +del ||| ‘ building block ’ ||| 0.5 0.106997 2.6679e-06 3.55085e-16 2.718 ||| 0-3 ||| 2 374827 +del ||| ‘ catch-the-eye ’ ||| 0.333333 0.106997 2.6679e-06 6.90693e-13 2.718 ||| 0-2 ||| 3 374827 +del ||| ‘ phasing out ’ in the ||| 1 0.106997 2.6679e-06 1.01135e-17 2.718 ||| 0-3 ||| 1 374827 +del ||| ‘ phasing out ’ in ||| 1 0.106997 2.6679e-06 1.64737e-16 2.718 ||| 0-3 ||| 1 374827 +del ||| ‘ phasing out ’ ||| 1 0.106997 2.6679e-06 7.69638e-15 2.718 ||| 0-3 ||| 1 374827 +del ||| ‘ ugly duckling ’ of the ||| 1 0.130625 2.6679e-06 4.10981e-21 2.718 ||| 0-4 ||| 1 374827 +del ||| ‘ ugly duckling ’ of ||| 1 0.130625 2.6679e-06 6.6944e-20 2.718 ||| 0-4 ||| 1 374827 +del ||| ’ , an ||| 0.333333 0.106997 2.6679e-06 2.96368e-06 2.718 ||| 0-0 ||| 3 374827 +del ||| ’ , an ‘ ||| 1 0.106997 2.6679e-06 3.32821e-10 2.718 ||| 0-0 ||| 1 374827 +del ||| ’ , ||| 0.000788022 0.106997 2.6679e-06 0.000666789 2.718 ||| 0-0 ||| 1269 374827 +del ||| ’ Union ||| 0.5 0.106997 2.6679e-06 3.11659e-06 2.718 ||| 0-0 ||| 2 374827 +del ||| ’ for ||| 0.02 0.0604314 2.6679e-06 6.01534e-05 2.718 ||| 0-0 0-1 ||| 50 374827 +del ||| ’ in the ||| 0.0243902 0.106997 2.6679e-06 7.34731e-06 2.718 ||| 0-0 ||| 41 374827 +del ||| ’ in ||| 0.00621118 0.106997 2.6679e-06 0.000119679 2.718 ||| 0-0 ||| 161 374827 +del ||| ’ of the ||| 0.030303 0.130625 2.6679e-06 3.15489e-05 2.718 ||| 0-1 ||| 33 374827 +del ||| ’ of ||| 0.0144928 0.130625 2.6679e-06 0.000513894 2.718 ||| 0-1 ||| 69 374827 +del ||| ’ s , ||| 0.0344828 0.16804 2.6679e-06 2.17616e-06 2.718 ||| 0-1 ||| 29 374827 +del ||| ’ s Generalised ||| 1 0.137519 2.6679e-06 1.72773e-09 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| ’ s Party in the ||| 1 0.0458111 2.6679e-06 4.68059e-12 2.718 ||| 0-3 0-4 ||| 1 374827 +del ||| ’ s Wine ||| 1 0.16804 2.6679e-06 2.00728e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| ’ s arrival here today ( albeit ||| 0.333333 0.16804 2.6679e-06 2.42349e-24 2.718 ||| 0-1 ||| 3 374827 +del ||| ’ s arrival here today ( ||| 0.333333 0.16804 2.6679e-06 1.15956e-19 2.718 ||| 0-1 ||| 3 374827 +del ||| ’ s arrival here today ||| 0.333333 0.16804 2.6679e-06 1.20237e-16 2.718 ||| 0-1 ||| 3 374827 +del ||| ’ s arrival here ||| 0.333333 0.16804 2.6679e-06 2.66423e-13 2.718 ||| 0-1 ||| 3 374827 +del ||| ’ s arrival ||| 0.25 0.16804 2.6679e-06 1.31385e-10 2.718 ||| 0-1 ||| 4 374827 +del ||| ’ s attention to ||| 0.25 0.106997 2.6679e-06 2.46961e-10 2.718 ||| 0-0 ||| 4 374827 +del ||| ’ s attention ||| 0.0222222 0.106997 2.6679e-06 2.77927e-09 2.718 ||| 0-0 ||| 45 374827 +del ||| ’ s best ||| 0.2 0.16804 2.6679e-06 2.52734e-09 2.718 ||| 0-1 ||| 5 374827 +del ||| ’ s full ||| 0.142857 0.137519 2.6679e-06 1.07471e-08 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| ’ s joint and particular ||| 1 0.137519 2.6679e-06 2.93902e-14 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| ’ s joint and ||| 1 0.137519 2.6679e-06 4.77578e-11 2.718 ||| 0-0 0-1 ||| 1 374827 +del ||| ’ s joint ||| 0.25 0.137519 2.6679e-06 3.81272e-09 2.718 ||| 0-0 0-1 ||| 4 374827 +del ||| ’ s legal service ||| 0.1 0.16804 2.6679e-06 1.58214e-13 2.718 ||| 0-1 ||| 10 374827 +del ||| ’ s legal ||| 0.047619 0.16804 2.6679e-06 2.36494e-09 2.718 ||| 0-1 ||| 21 374827 +del ||| ’ s line ||| 0.125 0.106997 2.6679e-06 3.13134e-09 2.718 ||| 0-0 ||| 8 374827 +del ||| ’ s neck ||| 1 0.16804 2.6679e-06 7.84663e-11 2.718 ||| 0-1 ||| 1 374827 +del ||| ’ s nor Parliament ||| 1 0.16804 2.6679e-06 5.58282e-13 2.718 ||| 0-1 ||| 1 374827 +del ||| ’ s nor Parliament ’ s interests ||| 1 0.16804 2.6679e-06 2.53655e-22 2.718 ||| 0-1 ||| 1 374827 +del ||| ’ s nor Parliament ’ s ||| 1 0.16804 2.6679e-06 1.85015e-18 2.718 ||| 0-1 ||| 1 374827 +del ||| ’ s nor Parliament ’ ||| 1 0.16804 2.6679e-06 9.72583e-16 2.718 ||| 0-1 ||| 1 374827 +del ||| ’ s nor ||| 1 0.16804 2.6679e-06 9.72617e-10 2.718 ||| 0-1 ||| 1 374827 +del ||| ’ s output ||| 0.5 0.16804 2.6679e-06 7.29919e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| ’ s own ||| 0.0405405 0.16804 8.00369e-06 3.09358e-08 2.718 ||| 0-1 ||| 74 374827 +del ||| ’ s pockets ||| 0.5 0.16804 2.6679e-06 8.57655e-11 2.718 ||| 0-1 ||| 2 374827 +del ||| ’ s role ||| 0.008 0.137519 2.6679e-06 1.30019e-08 2.718 ||| 0-0 0-1 ||| 125 374827 +del ||| ’ s statement , I wish to ||| 0.5 0.106997 2.6679e-06 1.75039e-17 2.718 ||| 0-0 ||| 2 374827 +del ||| ’ s statement , I wish ||| 0.5 0.106997 2.6679e-06 1.96987e-16 2.718 ||| 0-0 ||| 2 374827 +del ||| ’ s statement , I ||| 0.5 0.106997 2.6679e-06 6.68433e-13 2.718 ||| 0-0 ||| 2 374827 +del ||| ’ s statement , ||| 0.25 0.106997 2.6679e-06 9.44982e-11 2.718 ||| 0-0 ||| 4 374827 +del ||| ’ s statement ||| 0.016129 0.106997 2.6679e-06 7.92407e-10 2.718 ||| 0-0 ||| 62 374827 +del ||| ’ s ||| 0.254554 0.137519 0.00574132 5.85672e-05 2.718 ||| 0-0 0-1 ||| 8454 374827 +del ||| ’ s – ||| 0.142857 0.137519 2.6679e-06 2.30169e-08 2.718 ||| 0-0 0-1 ||| 7 374827 +del ||| ’ ||| 0.0235088 0.106997 0.00161408 0.0055913 2.718 ||| 0-0 ||| 25735 374827 +en ambos lados del Atlántico ||| , on both sides of the Atlantic ||| 0.166667 0.000149746 0.1 0.000408683 2.718 ||| 0-1 1-2 2-3 3-4 3-5 4-6 ||| 6 10 +en ambos lados del Atlántico ||| followed on both sides of the Atlantic ||| 1 0.000149746 0.1 2.45371e-07 2.718 ||| 0-1 1-2 2-3 3-4 3-5 4-6 ||| 1 10 +en ambos lados del Atlántico ||| on both sides of the Atlantic ||| 0.0714286 0.000149746 0.8 0.00342698 2.718 ||| 0-0 1-1 2-2 3-3 3-4 4-5 ||| 112 10 +en ambos lados del ||| , on both sides of the ||| 0.0526316 0.000240982 0.0588235 0.000433944 2.718 ||| 0-1 1-2 2-3 3-4 3-5 ||| 19 17 +en ambos lados del ||| being followed on both sides of the ||| 1 0.000240982 0.0588235 7.41439e-10 2.718 ||| 0-2 1-3 2-4 3-5 3-6 ||| 1 17 +en ambos lados del ||| followed on both sides of the ||| 1 0.000240982 0.0588235 2.60538e-07 2.718 ||| 0-1 1-2 2-3 3-4 3-5 ||| 1 17 +en ambos lados del ||| from all sides of ||| 0.037037 4.89265e-08 0.0588235 2.5187e-06 2.718 ||| 0-0 1-1 2-2 3-3 ||| 27 17 +en ambos lados del ||| on both sides of the ||| 0.050193 0.000240982 0.764706 0.0036388 2.718 ||| 0-0 1-1 2-2 3-3 3-4 ||| 259 17 +en ambos lados ||| , on both sides ||| 0.037037 0.0023635 0.0119048 0.00423553 2.718 ||| 0-1 1-2 2-3 ||| 27 84 +en ambos lados ||| at both ends ||| 0.166667 9.53551e-05 0.0119048 0.000116113 2.718 ||| 0-0 1-1 2-2 ||| 6 84 +en ambos lados ||| at both sides ||| 0.333333 0.00330874 0.0119048 0.0171074 2.718 ||| 0-0 1-1 2-2 ||| 3 84 +en ambos lados ||| being followed on both sides ||| 1 0.0023635 0.0119048 7.23686e-09 2.718 ||| 0-2 1-3 2-4 ||| 1 84 +en ambos lados ||| by both sides ||| 0.00943396 0.000481833 0.0119048 0.00363817 2.718 ||| 0-0 1-1 2-2 ||| 106 84 +en ambos lados ||| followed on both sides ||| 1 0.0023635 0.0119048 2.543e-06 2.718 ||| 0-1 1-2 2-3 ||| 1 84 +en ambos lados ||| for on both sides ||| 1 0.0023635 0.0119048 0.000272971 2.718 ||| 0-1 1-2 2-3 ||| 1 84 +en ambos lados ||| from all sides ||| 0.0215054 3.74557e-07 0.0238095 8.53839e-06 2.718 ||| 0-0 1-1 2-2 ||| 93 84 +en ambos lados ||| in both camps ||| 0.25 0.000108441 0.0119048 0.000893603 2.718 ||| 0-0 1-1 2-2 ||| 4 84 +en ambos lados ||| in the two camps ||| 0.2 9.59047e-06 0.0119048 1.57308e-05 2.718 ||| 0-0 1-1 1-2 2-3 ||| 5 84 +en ambos lados ||| of both sides that ||| 0.2 0.000119817 0.0119048 9.81042e-05 2.718 ||| 0-0 1-1 2-2 ||| 5 84 +en ambos lados ||| of both sides ||| 0.00877193 0.000119817 0.0119048 0.00583204 2.718 ||| 0-0 1-1 2-2 ||| 114 84 +en ambos lados ||| on all sides ||| 0.00512821 2.78862e-06 0.0119048 0.000186355 2.718 ||| 0-0 1-1 2-2 ||| 195 84 +en ambos lados ||| on both side all the time ||| 1 0.000148184 0.0119048 1.49251e-09 2.718 ||| 0-0 1-1 2-2 ||| 1 84 +en ambos lados ||| on both side all the ||| 1 0.000148184 0.0119048 9.09125e-07 2.718 ||| 0-0 1-1 2-2 ||| 1 84 +en ambos lados ||| on both side all ||| 1 0.000148184 0.0119048 1.48086e-05 2.718 ||| 0-0 1-1 2-2 ||| 1 84 +en ambos lados ||| on both side ||| 1 0.000148184 0.0119048 0.00313383 2.718 ||| 0-0 1-1 2-2 ||| 1 84 +en ambos lados ||| on both sides , ||| 0.0229885 0.0023635 0.0238095 0.00423553 2.718 ||| 0-0 1-1 2-2 ||| 87 84 +en ambos lados ||| on both sides can be ||| 1 0.0023635 0.0119048 1.91445e-06 2.718 ||| 0-0 1-1 2-2 ||| 1 84 +en ambos lados ||| on both sides can ||| 1 0.0023635 0.0119048 0.000105637 2.718 ||| 0-0 1-1 2-2 ||| 1 84 +en ambos lados ||| on both sides there ||| 1 0.0023635 0.0119048 0.000108869 2.718 ||| 0-0 1-1 2-2 ||| 1 84 +en ambos lados ||| on both sides with an ||| 1 0.0023635 0.0119048 1.00944e-06 2.718 ||| 0-0 1-1 2-2 ||| 1 84 +en ambos lados ||| on both sides with ||| 1 0.0023635 0.0119048 0.000227112 2.718 ||| 0-0 1-1 2-2 ||| 1 84 +en ambos lados ||| on both sides ||| 0.0701754 0.0023635 0.666667 0.0355167 2.718 ||| 0-0 1-1 2-2 ||| 798 84 +en ambos lados ||| on either side ||| 0.0246914 8.3863e-06 0.0238095 4.44924e-05 2.718 ||| 0-0 1-1 2-2 ||| 81 84 +en ambos lados ||| on the two sides ||| 0.0769231 0.000209028 0.0119048 0.000625227 2.718 ||| 0-0 1-1 1-2 2-3 ||| 13 84 +en ambos ||| ' both ||| 0.1 0.000302071 0.00161551 0.00016371 2.718 ||| 0-0 1-1 ||| 10 619 +en ambos ||| , across both ||| 1 0.0254875 0.00161551 0.000146964 2.718 ||| 0-1 1-2 ||| 1 619 +en ambos ||| , in both ||| 0.0294118 0.0561723 0.00807754 0.0330356 2.718 ||| 0-1 1-2 ||| 170 619 +en ambos ||| , in either ||| 0.166667 0.003179 0.00161551 0.000469022 2.718 ||| 0-1 1-2 ||| 6 619 +en ambos ||| , on both ||| 0.0441176 0.0213197 0.00484653 0.00594125 2.718 ||| 0-1 1-2 ||| 68 619 +en ambos ||| . in both ||| 0.5 0.0561723 0.00161551 0.000839086 2.718 ||| 0-1 1-2 ||| 2 619 +en ambos ||| For both ||| 1 0.000503928 0.00161551 4.19922e-07 2.718 ||| 0-0 1-1 ||| 1 619 +en ambos ||| about Romania ||| 0.0588235 3.68475e-05 0.00161551 2.12263e-06 2.718 ||| 0-0 1-1 ||| 17 619 +en ambos ||| about Romania ’ s ||| 1 3.68475e-05 0.00161551 7.0344e-12 2.718 ||| 0-0 1-1 ||| 1 619 +en ambos ||| about Romania ’ ||| 1 3.68475e-05 0.00161551 3.69784e-09 2.718 ||| 0-0 1-1 ||| 1 619 +en ambos ||| across both ||| 0.25 0.0254875 0.00161551 0.00123235 2.718 ||| 0-0 1-1 ||| 4 619 +en ambos ||| act responsibly in both ||| 1 0.0561723 0.00161551 3.29457e-11 2.718 ||| 0-2 1-3 ||| 1 619 +en ambos ||| all ||| 6.54219e-06 3.87346e-06 0.00161551 0.0031476 2.718 ||| 1-0 ||| 152854 619 +en ambos ||| appearing in both ||| 1 0.0561723 0.00161551 2.79788e-06 2.718 ||| 0-1 1-2 ||| 1 619 +en ambos ||| are in both ||| 0.142857 0.0561723 0.00161551 0.0042031 2.718 ||| 0-1 1-2 ||| 7 619 +en ambos ||| at both ||| 0.0257511 0.029846 0.0193861 0.0239968 2.718 ||| 0-0 1-1 ||| 466 619 +en ambos ||| be , in both ||| 1 0.0561723 0.00161551 0.000598701 2.718 ||| 0-2 1-3 ||| 1 619 +en ambos ||| being followed on both ||| 1 0.0213197 0.00161551 1.01512e-08 2.718 ||| 0-2 1-3 ||| 1 619 +en ambos ||| both of ||| 0.00814111 0.00108079 0.00969305 0.00818068 2.718 ||| 1-0 0-1 ||| 737 619 +en ambos ||| both these ||| 0.00246305 0.00328297 0.00161551 0.000622145 2.718 ||| 1-0 ||| 406 619 +en ambos ||| both ||| 0.000929308 0.00328297 0.0468498 0.599889 2.718 ||| 1-0 ||| 31206 619 +en ambos ||| by all ||| 0.000524659 5.12806e-06 0.00161551 2.67769e-05 2.718 ||| 0-0 1-1 ||| 1906 619 +en ambos ||| by both ||| 0.00512821 0.00434631 0.00484653 0.00510331 2.718 ||| 0-0 1-1 ||| 585 619 +en ambos ||| by the two ||| 0.00763359 0.000384386 0.00161551 8.98375e-05 2.718 ||| 0-0 1-1 1-2 ||| 131 619 +en ambos ||| during both ||| 0.0588235 0.0209786 0.00161551 0.00173446 2.718 ||| 0-0 1-1 ||| 17 619 +en ambos ||| either ||| 0.000870133 8.79969e-05 0.00646204 0.00430845 2.718 ||| 0-0 1-0 ||| 4597 619 +en ambos ||| fall on both ||| 1 0.0213197 0.00161551 4.76776e-06 2.718 ||| 0-1 1-2 ||| 1 619 +en ambos ||| followed on both ||| 1 0.0213197 0.00161551 3.5671e-06 2.718 ||| 0-1 1-2 ||| 1 619 +en ambos ||| for both ||| 0.00318471 0.0026538 0.00646204 0.00690184 2.718 ||| 0-0 1-1 ||| 1256 619 +en ambos ||| for either ||| 0.0181818 0.000150188 0.00161551 9.79886e-05 2.718 ||| 0-0 1-1 ||| 55 619 +en ambos ||| for on both ||| 1 0.0213197 0.00161551 0.0003829 2.718 ||| 0-1 1-2 ||| 1 619 +en ambos ||| for the two ||| 0.00671141 0.000234701 0.00161551 0.000121498 2.718 ||| 0-0 1-1 1-2 ||| 149 619 +en ambos ||| from all ||| 0.00168919 3.37864e-06 0.00323102 1.19769e-05 2.718 ||| 0-0 1-1 ||| 1184 619 +en ambos ||| from both ||| 0.00691244 0.00286358 0.00484653 0.00228264 2.718 ||| 0-0 1-1 ||| 434 619 +en ambos ||| in any ||| 0.000141503 1.13287e-05 0.00161551 8.55219e-05 2.718 ||| 0-0 1-1 ||| 7067 619 +en ambos ||| in both cases ||| 0.00438596 0.0281828 0.00161551 0.000205159 2.718 ||| 0-0 1-1 1-2 ||| 228 619 +en ambos ||| in both of the ||| 1 0.0281295 0.00161551 0.00143878 2.718 ||| 0-0 1-1 1-3 ||| 1 619 +en ambos ||| in both of these ||| 0.333333 0.0290678 0.00646204 0.000942456 2.718 ||| 0-0 1-1 1-3 ||| 12 619 +en ambos ||| in both of those ||| 0.5 0.0282217 0.00323102 7.52853e-05 2.718 ||| 0-0 1-1 1-3 ||| 4 619 +en ambos ||| in both of which ||| 1 0.0561723 0.00161551 0.000127927 2.718 ||| 0-0 1-1 ||| 1 619 +en ambos ||| in both of ||| 0.125 0.0561723 0.00161551 0.0150598 2.718 ||| 0-0 1-1 ||| 8 619 +en ambos ||| in both our ||| 0.285714 0.0281087 0.00323102 0.000564201 2.718 ||| 0-0 1-1 1-2 ||| 7 619 +en ambos ||| in both places ||| 0.166667 0.0561723 0.00161551 1.46542e-05 2.718 ||| 0-0 1-1 ||| 6 619 +en ambos ||| in both the ||| 0.003003 0.0281295 0.00161551 0.0264657 2.718 ||| 0-0 1-1 1-2 ||| 333 619 +en ambos ||| in both these ||| 0.269231 0.0290678 0.0226171 0.017336 2.718 ||| 0-0 1-1 1-2 ||| 52 619 +en ambos ||| in both those ||| 0.2 0.0282217 0.00161551 0.00138484 2.718 ||| 0-0 1-1 1-2 ||| 5 619 +en ambos ||| in both ||| 0.183748 0.0561723 0.489499 0.277017 2.718 ||| 0-0 1-1 ||| 1649 619 +en ambos ||| in each ||| 0.00355366 0.00143202 0.00807754 0.00367647 2.718 ||| 0-0 1-1 ||| 1407 619 +en ambos ||| in either ||| 0.0422535 0.003179 0.00969305 0.00393294 2.718 ||| 0-0 1-1 ||| 142 619 +en ambos ||| in the careful drafting of both ||| 1 0.0561723 0.00161551 3.79027e-13 2.718 ||| 0-0 1-5 ||| 1 619 +en ambos ||| in the two ||| 0.0292683 0.00496787 0.00969305 0.00487654 2.718 ||| 0-0 1-1 1-2 ||| 205 619 +en ambos ||| in the ||| 3.4775e-06 8.66311e-05 0.00161551 0.0441176 2.718 ||| 0-0 1-1 ||| 287563 619 +en ambos ||| in them ||| 0.00245098 0.000738182 0.00161551 0.00564297 2.718 ||| 0-0 1-1 ||| 408 619 +en ambos ||| in these two ||| 0.0148148 0.00590615 0.00323102 0.00319432 2.718 ||| 0-0 1-1 1-2 ||| 135 619 +en ambos ||| in these ||| 0.000174246 0.00196319 0.00161551 0.0288987 2.718 ||| 0-0 1-1 ||| 5739 619 +en ambos ||| in ||| 9.03359e-07 1.50241e-05 0.00161551 0.461781 2.718 ||| 0-0 ||| 1.10698e+06 619 +en ambos ||| into both of the draft ||| 1 0.0244068 0.00161551 8.20839e-09 2.718 ||| 0-0 1-1 1-4 ||| 1 619 +en ambos ||| left on both ||| 1 0.0213197 0.00161551 9.41096e-06 2.718 ||| 0-1 1-2 ||| 1 619 +en ambos ||| of both ||| 0.00106895 0.00108079 0.00323102 0.00818068 2.718 ||| 0-0 1-1 ||| 1871 619 +en ambos ||| of the two ||| 0.00112233 9.55849e-05 0.00161551 0.000144011 2.718 ||| 0-0 1-1 1-2 ||| 891 619 +en ambos ||| on all ||| 0.000847817 2.51543e-05 0.00323102 0.000261403 2.718 ||| 0-0 1-1 ||| 2359 619 +en ambos ||| on both of these ||| 0.0909091 0.0110324 0.00161551 0.000169495 2.718 ||| 0-0 1-1 1-3 ||| 11 619 +en ambos ||| on both reports ||| 0.0833333 0.0106796 0.00161551 1.84483e-05 2.718 ||| 0-0 1-1 1-2 ||| 12 619 +en ambos ||| on both the ||| 0.00826446 0.0106763 0.00161551 0.00475968 2.718 ||| 0-0 1-1 1-2 ||| 121 619 +en ambos ||| on both these ||| 0.115385 0.0110324 0.00484653 0.00311777 2.718 ||| 0-0 1-1 1-2 ||| 26 619 +en ambos ||| on both ||| 0.0908379 0.0213197 0.187399 0.0498198 2.718 ||| 0-0 1-1 ||| 1277 619 +en ambos ||| on either ||| 0.034188 0.00120656 0.00646204 0.000707315 2.718 ||| 0-0 1-1 ||| 117 619 +en ambos ||| on the two ||| 0.0121212 0.00188551 0.00323102 0.000877015 2.718 ||| 0-0 1-1 1-2 ||| 165 619 +en ambos ||| on these two ||| 0.00699301 0.00224162 0.00161551 0.000574479 2.718 ||| 0-0 1-1 1-2 ||| 143 619 +en ambos ||| on two ||| 0.00117096 0.00373813 0.00161551 0.00917976 2.718 ||| 0-0 1-1 ||| 854 619 +en ambos ||| out of the two ||| 0.25 9.55849e-05 0.00161551 5.51619e-07 2.718 ||| 0-1 1-2 1-3 ||| 4 619 +en ambos ||| play in both those ||| 1 0.0282217 0.00161551 3.57288e-07 2.718 ||| 0-1 1-2 1-3 ||| 1 619 +en ambos ||| responsibly in both ||| 1 0.0561723 0.00161551 1.93912e-07 2.718 ||| 0-1 1-2 ||| 1 619 +en ambos ||| same in both ||| 0.333333 0.0561723 0.00161551 0.000222916 2.718 ||| 0-1 1-2 ||| 3 619 +en ambos ||| sections at both ||| 1 0.029846 0.00161551 2.49566e-07 2.718 ||| 0-1 1-2 ||| 1 619 +en ambos ||| the two ||| 0.000457457 1.89711e-05 0.00484653 0.00031665 2.718 ||| 0-0 1-1 ||| 6558 619 +en ambos ||| these two ||| 0.000345781 0.000345182 0.00161551 0.0069174 2.718 ||| 1-0 1-1 ||| 2892 619 +en ambos ||| these ||| 9.52009e-06 0.000114738 0.00161551 0.062581 2.718 ||| 1-0 ||| 105041 619 +en ambos ||| they ||| 2.45634e-05 2.64875e-05 0.00161551 0.0161081 2.718 ||| 1-0 ||| 40711 619 +en ambos ||| this is another ||| 0.0030303 1.34556e-07 0.00161551 5.53588e-09 2.718 ||| 0-0 1-2 ||| 330 619 +en ambos ||| to be , in both ||| 1 0.0561723 0.00161551 5.31995e-05 2.718 ||| 0-3 1-4 ||| 1 619 +en ambos ||| to both these ||| 0.037037 0.00118683 0.00161551 0.00105523 2.718 ||| 0-0 1-1 1-2 ||| 27 619 +en ambos ||| to in both ||| 0.5 0.0561723 0.00161551 0.0246153 2.718 ||| 0-1 1-2 ||| 2 619 +en ambos ||| to play in both those ||| 1 0.0282217 0.00161551 3.1748e-08 2.718 ||| 0-2 1-3 1-4 ||| 1 619 +en ambos ||| to these two ||| 0.0102041 0.000241146 0.00161551 0.000194436 2.718 ||| 0-0 1-1 1-2 ||| 98 619 +en ambos ||| two ||| 0.000105083 0.000575627 0.00646204 0.110535 2.718 ||| 1-0 ||| 38065 619 +en ambos ||| under both ||| 0.0625 0.0190606 0.00323102 0.00339213 2.718 ||| 0-0 1-1 ||| 32 619 +en ambos ||| whatever ||| 0.000326158 4.53585e-07 0.00161551 7.76e-05 2.718 ||| 0-0 ||| 3066 619 +en ambos ||| where both these ||| 1 0.011889 0.00161551 0.000319727 2.718 ||| 0-0 1-1 1-2 ||| 1 619 +en ambos ||| with regard to both of these ||| 1 0.0025691 0.00323102 1.43967e-09 2.718 ||| 0-0 1-3 1-5 ||| 2 619 +en ambos ||| with ||| 3.61287e-06 1.32788e-06 0.00161551 0.0116589 2.718 ||| 0-0 ||| 276788 619 +en ambos ||| within the two ||| 0.0555556 0.00302754 0.00161551 0.000117079 2.718 ||| 0-0 1-1 1-2 ||| 18 619 +en ambos ||| within them ||| 0.01 0.000449866 0.00161551 0.000135479 2.718 ||| 0-0 1-1 ||| 100 619 +en ||| ! in ||| 0.666667 0.605812 1.69729e-06 2.12881e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| % by ||| 0.00714286 0.0468744 8.48644e-07 4.84054e-07 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| % fall in ||| 0.333333 0.605812 8.48644e-07 2.51455e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| % in ||| 0.00196078 0.605812 8.48644e-07 2.62753e-05 2.718 ||| 0-1 ||| 510 1.17835e+06 +en ||| % of ||| 0.000849257 0.0116562 1.69729e-06 7.75945e-07 2.718 ||| 0-1 ||| 2355 1.17835e+06 +en ||| % to ||| 0.00268817 0.0247351 8.48644e-07 1.59936e-06 2.718 ||| 0-1 ||| 372 1.17835e+06 +en ||| % ||| 9.81354e-05 1.97e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 10190 1.17835e+06 +en ||| [ ... ] to ||| 0.166667 0.0247351 8.48644e-07 1.30995e-15 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| [ I ] n ||| 1 0.0060084 8.48644e-07 8.02001e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| [ I ] ||| 1 0.0060084 8.48644e-07 3.208e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| [ I ||| 1 0.0060084 8.48644e-07 8.57755e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| [ amp ] A ) in ||| 1 0.605812 8.48644e-07 1.14702e-23 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| ] A ) in ||| 1 0.605812 8.48644e-07 2.95394e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ] at ||| 0.5 0.321886 8.48644e-07 1.49607e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ] to ||| 0.125 0.0247351 8.48644e-07 1.05125e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| & # x02BC ; ||| 0.0410959 0.0223684 2.54593e-06 5.24076e-18 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| & # x02BC ||| 0.169492 0.0223684 8.48644e-06 1.70155e-14 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| & # ||| 0.2 0.0223684 9.33509e-06 4.4196e-10 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| & ||| 0.0293578 0.0223684 1.35783e-05 1.16e-05 2.718 ||| 0-0 ||| 545 1.17835e+06 +en ||| ' ) occurs when ||| 1 0.142731 8.48644e-07 3.70331e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ' , and that of ||| 1 0.0116562 8.48644e-07 1.17702e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| ' , in ||| 0.00763359 0.605812 8.48644e-07 0.000189158 2.718 ||| 0-2 ||| 131 1.17835e+06 +en ||| ' , on ||| 0.0454545 0.22993 8.48644e-07 3.40189e-05 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| ' , used in ||| 0.333333 0.605812 8.48644e-07 8.1149e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| ' . in ||| 0.166667 0.605812 8.48644e-07 4.80451e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| ' ; in other ||| 0.125 0.605812 8.48644e-07 6.32905e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| ' ; in ||| 0.0769231 0.605812 8.48644e-07 4.88541e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| ' Abgeordnete des Europäischen Parlaments ' ||| 1 0.0096154 8.48644e-07 5.28575e-31 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' Abgeordnete des Europäischen Parlaments ||| 1 0.0096154 8.48644e-07 1.53884e-28 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' Abgeordnete des Europäischen ||| 1 0.0096154 8.48644e-07 3.84709e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' Abgeordnete des ||| 1 0.0096154 8.48644e-07 9.61772e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' Euro ' ||| 0.2 0.0025381 8.48644e-07 2.35971e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| ' Euro ||| 0.0588235 0.0025381 8.48644e-07 6.8698e-09 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| ' In ||| 0.0588235 0.0659459 3.39458e-06 1.42548e-07 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| ' Mr Euro ' on the model ||| 0.5 0.22993 8.48644e-07 1.42115e-20 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| ' Mr Euro ' on the ||| 0.5 0.22993 8.48644e-07 3.69129e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| ' Mr Euro ' on ||| 0.5 0.22993 8.48644e-07 6.01267e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| ' Natural ||| 0.333333 0.0032578 8.48644e-07 1.0916e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| ' Rights on ||| 1 0.22993 8.48644e-07 2.35057e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' actually being used ||| 0.5 0.125341 8.48644e-07 5.6327e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ' actually being ||| 0.5 0.125341 8.48644e-07 1.31298e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ' actually ||| 0.0714286 0.125341 8.48644e-07 4.61376e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| ' appear in ||| 1 0.605812 8.48644e-07 1.38631e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' approach ||| 0.0263158 0.0044306 8.48644e-07 1.96476e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| ' as early as ||| 1 0.066968 8.48644e-07 4.26845e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ' at ||| 0.0353982 0.321886 3.39458e-06 0.000137403 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| ' birth through direct ||| 0.5 0.0366102 8.48644e-07 1.71988e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| ' birth through ||| 0.5 0.0366102 8.48644e-07 3.48859e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| ' competence in ||| 1 0.605812 8.48644e-07 3.82267e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' desire for ||| 0.333333 0.0286209 8.48644e-07 1.8495e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| ' finding in ||| 0.2 0.605812 8.48644e-07 8.4543e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| ' for ||| 0.00540541 0.0286209 1.69729e-06 3.95192e-05 2.718 ||| 0-1 ||| 370 1.17835e+06 +en ||| ' from ' . in ||| 1 0.605812 8.48644e-07 2.65765e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| ' from ||| 0.00892857 0.0308834 8.48644e-07 1.30701e-05 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| ' has exercised ||| 1 0.0032578 8.48644e-07 2.17737e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| ' has ||| 0.00900901 0.0032578 8.48644e-07 1.40475e-06 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| ' however ||| 0.5 0.0053256 8.48644e-07 1.28568e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ' in the ||| 0.0111111 0.605812 2.54593e-06 9.73779e-05 2.718 ||| 0-1 ||| 270 1.17835e+06 +en ||| ' in whatever ||| 0.5 0.605812 8.48644e-07 8.73981e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ' in ||| 0.0549708 0.605812 3.98863e-05 0.00158617 2.718 ||| 0-1 ||| 855 1.17835e+06 +en ||| ' interests when ||| 0.25 0.142731 8.48644e-07 2.80356e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| ' is ||| 0.00158479 0.0032578 8.48644e-07 8.55299e-06 2.718 ||| 0-0 ||| 631 1.17835e+06 +en ||| ' jurisdiction over ||| 1 0.157937 8.48644e-07 1.14244e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' kept surfacing in ||| 1 0.605812 8.48644e-07 7.91658e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ' national ' status , involves ||| 1 0.0273327 8.48644e-07 1.08213e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| ' no ' ||| 0.00221484 0.0032578 1.69729e-06 7.2966e-10 2.718 ||| 0-0 ||| 903 1.17835e+06 +en ||| ' no ||| 0.0019861 0.0032578 1.69729e-06 2.12425e-07 2.718 ||| 0-0 ||| 1007 1.17835e+06 +en ||| ' of good practice should be presented ||| 1 0.0116562 8.48644e-07 1.62017e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ' of good practice should be ||| 1 0.0116562 8.48644e-07 2.05606e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ' of good practice should ||| 1 0.0116562 8.48644e-07 1.13451e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ' of good practice ||| 0.5 0.0116562 8.48644e-07 2.56039e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ' of good ||| 0.5 0.0116562 8.48644e-07 2.42921e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ' of ||| 0.00400802 0.0116562 1.69729e-06 4.68417e-05 2.718 ||| 0-1 ||| 499 1.17835e+06 +en ||| ' on the model of Mr CFSP ||| 0.5 0.22993 8.48644e-07 4.30706e-20 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ' on the model of Mr ||| 0.5 0.22993 8.48644e-07 2.39281e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ' on the model of ||| 0.5 0.22993 8.48644e-07 3.66545e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ' on the model ||| 0.5 0.22993 8.48644e-07 6.74243e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ' on the ||| 0.0144928 0.22993 8.48644e-07 1.75128e-05 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| ' on ||| 0.0257732 0.22993 4.24322e-06 0.000285263 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| ' opinion on ||| 1 0.22993 8.48644e-07 7.00035e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' organizations in ||| 1 0.605812 8.48644e-07 1.8241e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' out to get ||| 1 0.0120599 8.48644e-07 7.34597e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ' out to ||| 1 0.0120599 8.48644e-07 1.68023e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ' out ||| 0.047619 0.0120599 8.48644e-07 1.89091e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| ' outlets in ||| 1 0.605812 8.48644e-07 3.96543e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' representatives in ||| 0.333333 0.605812 8.48644e-07 5.1392e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| ' rosé ' ||| 0.125 0.0032578 8.48644e-07 1.03112e-12 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| ' s activities and in ||| 1 0.605812 8.48644e-07 3.00473e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| ' s conference in ||| 0.5 0.605812 8.48644e-07 5.31058e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| ' s contribution in ||| 1 0.605812 8.48644e-07 2.71564e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ' s institutions in ||| 1 0.605812 8.48644e-07 1.58412e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ' s line in ||| 1 0.605812 8.48644e-07 8.88315e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ' s mind , in ||| 1 0.605812 8.48644e-07 9.06427e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| ' s ongoing ||| 1 0.216817 8.48644e-07 3.21026e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' s participating in ||| 1 0.605812 8.48644e-07 3.46998e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ' s participation in ||| 0.25 0.605812 8.48644e-07 7.27187e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| ' s point of ||| 0.111111 0.0116562 8.48644e-07 7.79508e-11 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| ' s position in ||| 0.333333 0.605812 1.69729e-06 9.93622e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| ' s proposal concerning the shipyards package ||| 0.5 0.0888235 8.48644e-07 8.30069e-24 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| ' s proposal concerning the shipyards ||| 0.5 0.0888235 8.48644e-07 1.74751e-19 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| ' s proposal concerning the ||| 0.5 0.0888235 8.48644e-07 9.70841e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| ' s proposal concerning ||| 0.25 0.0888235 8.48644e-07 1.58139e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| ' s proposal upon ||| 1 0.114601 8.48644e-07 1.15339e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ' s role in ||| 0.25 0.605812 8.48644e-07 6.69857e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| ' s subsequent question , on ||| 0.5 0.22993 8.48644e-07 8.45902e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| ' s targets in ||| 1 0.605812 8.48644e-07 7.18135e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ' s view ||| 0.0769231 0.00226305 4.24322e-06 1.41205e-11 2.718 ||| 0-0 0-2 ||| 65 1.17835e+06 +en ||| ' s ||| 0.00228693 0.0032578 1.27297e-05 5.19138e-07 2.718 ||| 0-0 ||| 6559 1.17835e+06 +en ||| ' sentiment , where ||| 1 0.247783 8.48644e-07 1.0117e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ' single ' in ||| 1 0.605812 8.48644e-07 8.64652e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ' slim ' ||| 1 0.0032578 8.48644e-07 3.74954e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' status , involves ||| 1 0.0273327 8.48644e-07 2.45167e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ' taken as ||| 1 0.066968 8.48644e-07 5.63185e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ' this is ||| 0.0714286 0.0013296 8.48644e-07 5.13507e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| ' this ||| 0.0208333 0.0013296 8.48644e-07 1.63845e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| ' time in ||| 0.333333 0.605812 8.48644e-07 2.60402e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| ' time ||| 0.002331 0.0032578 8.48644e-07 4.4802e-07 2.718 ||| 0-0 ||| 429 1.17835e+06 +en ||| ' to ' from ' . in ||| 1 0.605812 8.48644e-07 8.11165e-15 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| ' under ||| 0.0263158 0.205566 8.48644e-07 1.9423e-05 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| ' vote in ||| 0.12 0.605812 2.54593e-06 2.49505e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| ' was the reply , ' this ||| 1 0.0013296 8.48644e-07 3.71779e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| ' within ||| 0.0192308 0.369196 8.48644e-07 3.80817e-05 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| ' work on ||| 0.2 0.22993 8.48644e-07 1.80571e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| ' would become ||| 0.333333 0.219193 8.48644e-07 7.70756e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| ' ||| 0.00254083 0.0032578 0.00019434 0.0002729 2.718 ||| 0-0 ||| 90128 1.17835e+06 +en ||| 's Party in ||| 0.25 0.605812 8.48644e-07 1.32616e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| 's Party voted in ||| 1 0.605812 8.48644e-07 5.34442e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 's activities in ||| 0.25 0.605812 8.48644e-07 6.99136e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| 's agenda for ||| 0.5 0.0286209 8.48644e-07 2.17571e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| 's and Parliament 's budget , in ||| 1 0.605812 8.48644e-07 1.772e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| 's at ||| 0.5 0.321886 8.48644e-07 7.61798e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| 's attention in ||| 0.125 0.605812 8.48644e-07 2.29791e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| 's attention on ||| 0.333333 0.22993 8.48644e-07 4.13265e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| 's budget , in ||| 1 0.605812 8.48644e-07 1.29415e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 's certificate for ||| 1 0.0286209 8.48644e-07 7.01136e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's commotion in ||| 0.5 0.605812 8.48644e-07 9.67358e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| 's concerns in ||| 0.5 0.605812 8.48644e-07 6.58683e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| 's current ||| 0.00724638 0.0052696 8.48644e-07 1.21882e-07 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| 's discharge of ||| 1 0.0116562 8.48644e-07 6.36272e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's ear into ||| 1 0.525896 8.48644e-07 2.86676e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's education ||| 0.0192308 0.001582 8.48644e-07 6.55382e-09 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| 's enduring belief in ||| 0.333333 0.605812 8.48644e-07 8.42129e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| 's first ||| 0.00518135 0.138055 8.48644e-07 1.16395e-05 2.718 ||| 0-1 ||| 193 1.17835e+06 +en ||| 's government and by ||| 1 0.0468744 8.48644e-07 1.62142e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 's head in ||| 0.166667 0.605812 8.48644e-07 6.35818e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| 's health in ||| 0.25 0.605812 8.48644e-07 7.30795e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| 's high ||| 0.0555556 0.001582 8.48644e-07 2.89493e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| 's in ||| 0.2 0.605812 2.54593e-06 0.000879416 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| 's involvement in ||| 0.111111 0.605812 8.48644e-07 2.62945e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| 's line here too ||| 0.333333 0.0855319 8.48644e-07 2.28923e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| 's line here ||| 0.333333 0.0855319 8.48644e-07 1.68202e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| 's line on ||| 1 0.22993 8.48644e-07 4.65615e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's meeting at ||| 1 0.321886 8.48644e-07 9.56818e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's money , on ||| 1 0.22993 8.48644e-07 3.08189e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 's need ||| 0.030303 0.001582 8.48644e-07 1.77787e-07 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| 's office at ||| 1 0.321886 8.48644e-07 7.8389e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's office since ||| 1 0.0075235 8.48644e-07 3.39995e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's opinion ||| 0.00218341 0.000357 8.48644e-07 9.14112e-09 2.718 ||| 0-1 ||| 458 1.17835e+06 +en ||| 's planning to ||| 0.5 0.0247351 8.48644e-07 1.50418e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| 's point of ||| 0.0149254 0.0116562 8.48644e-07 2.27188e-08 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| 's population is among the most educated ||| 1 0.0422459 8.48644e-07 8.99601e-23 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 's population is among the most ||| 1 0.0422459 8.48644e-07 3.10207e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 's population is among the ||| 1 0.0422459 8.48644e-07 7.1774e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 's population is among ||| 1 0.0422459 8.48644e-07 1.16911e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 's position as ||| 0.142857 0.066968 8.48644e-07 1.12806e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| 's position on ||| 0.0714286 0.22993 1.69729e-06 5.20812e-08 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| 's position ||| 0.000728332 0.001582 8.48644e-07 6.38513e-08 2.718 ||| 0-0 ||| 1373 1.17835e+06 +en ||| 's proposal ||| 0.000289185 0.001582 8.48644e-07 3.87218e-08 2.718 ||| 0-0 ||| 3458 1.17835e+06 +en ||| 's proposals as ||| 0.2 0.066968 8.48644e-07 3.3297e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| 's provision ||| 0.2 0.0009759 8.48644e-07 2.7146e-10 2.718 ||| 0-0 0-1 ||| 5 1.17835e+06 +en ||| 's reception in ||| 1 0.605812 8.48644e-07 4.39708e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's report on ||| 0.0188679 0.22993 8.48644e-07 6.48287e-08 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| 's right ||| 0.00324675 0.0071334 8.48644e-07 3.40888e-07 2.718 ||| 0-1 ||| 308 1.17835e+06 +en ||| 's role at ||| 1 0.321886 8.48644e-07 1.69119e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's role in preparing ||| 1 0.605812 8.48644e-07 2.88941e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's role in ||| 0.416667 0.605812 4.24322e-06 1.9523e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| 's say in the EU , that ||| 1 0.605812 8.48644e-07 5.12205e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's say in the EU , ||| 1 0.605812 8.48644e-07 3.04493e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's say in the EU ||| 1 0.605812 8.48644e-07 2.5533e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's say in the ||| 1 0.605812 8.48644e-07 5.16026e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's say in ||| 1 0.605812 8.48644e-07 8.40546e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's speaker in ||| 1 0.605812 8.48644e-07 1.64451e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's statement on ||| 0.142857 0.22993 8.48644e-07 1.17827e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| 's statement ||| 0.00309598 0.000353 8.48644e-07 3.8088e-09 2.718 ||| 0-1 ||| 323 1.17835e+06 +en ||| 's telecommunication ||| 0.25 0.001582 8.48644e-07 7.756e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| 's territory in ||| 1 0.605812 8.48644e-07 2.7174e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's thinking in ||| 1 0.605812 8.48644e-07 6.51647e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's throat in ||| 1 0.605812 8.48644e-07 2.55031e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's vessels in ||| 1 0.605812 8.48644e-07 1.26636e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's view on ||| 0.0833333 0.22993 8.48644e-07 1.42864e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| 's view ||| 0.012945 0.00142515 6.78915e-06 5.27408e-09 2.718 ||| 0-0 0-1 ||| 618 1.17835e+06 +en ||| 's views into ||| 1 0.525896 8.48644e-07 3.42747e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 's views on ||| 0.08 0.22993 1.69729e-06 1.28582e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| 's work in ||| 0.0769231 0.605812 8.48644e-07 5.5667e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| 's ||| 0.00124106 0.001582 5.007e-05 0.0001939 2.718 ||| 0-0 ||| 47540 1.17835e+06 +en ||| 'une assemblée ||| 1 0.142857 8.48644e-07 2.8e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| 'une ||| 1 0.142857 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| " At ||| 0.166667 0.0814815 8.48644e-07 1.776e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| " as ||| 0.025 0.066968 8.48644e-07 4.25953e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| " at ||| 0.0833333 0.321886 1.69729e-06 9.47247e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| " cap in hand ||| 0.5 0.605812 8.48644e-07 1.86483e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| " cap in ||| 0.5 0.605812 8.48644e-07 4.70204e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| " desert ' in ||| 1 0.605812 8.48644e-07 6.7609e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| " in ||| 0.0125 0.605812 8.48644e-07 0.00010935 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| " on ||| 0.0526316 0.22993 8.48644e-07 1.96659e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| " side in ||| 1 0.605812 8.48644e-07 2.39695e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| " ||| 0.00141425 0.0022093 9.33509e-06 1.29e-05 2.718 ||| 0-0 ||| 7778 1.17835e+06 +en ||| ( ) At ||| 1 0.0814815 8.48644e-07 1.0396e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ( CMO ) in ||| 0.2 0.605812 8.48644e-07 7.04099e-13 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| ( Committee on Industry , External ||| 1 0.22993 8.48644e-07 2.30276e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ( Committee on Industry , ||| 0.333333 0.22993 8.48644e-07 8.89095e-15 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| ( Committee on Industry ||| 0.333333 0.22993 8.48644e-07 7.45543e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| ( Committee on ||| 0.027027 0.22993 8.48644e-07 1.2222e-08 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| ( EUAM ) ||| 1 1 8.48644e-07 9.70292e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ( EUAM ||| 1 1 8.48644e-07 6.7508e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ( El ) In ||| 0.333333 0.0659459 8.48644e-07 1.03544e-15 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| ( FR ) At ||| 0.166667 0.0814815 8.48644e-07 3.81533e-16 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| ( ICC ) in ||| 0.4 0.605812 1.69729e-06 1.4082e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| ( KICs ) within ||| 0.5 0.369196 8.48644e-07 6.14705e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| ( NL ) During ||| 0.2 0.0004237 8.48644e-07 3.88117e-19 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| ( NL ) In ||| 0.111111 0.0659459 2.54593e-06 2.60586e-15 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| ( NL ) ||| 0.000462749 0.0004237 8.48644e-07 9.70292e-13 2.718 ||| 0-1 ||| 2161 1.17835e+06 +en ||| ( NL ||| 0.000464253 0.0004237 8.48644e-07 6.7508e-10 2.718 ||| 0-1 ||| 2154 1.17835e+06 +en ||| ( PT ) At ||| 0.5 0.0814815 1.69729e-06 9.99055e-16 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| ( PT ) In ||| 0.0289855 0.0659459 1.69729e-06 5.5281e-15 2.718 ||| 0-3 ||| 69 1.17835e+06 +en ||| ( SK ) ||| 0.000986193 0.0009643 8.48644e-07 9.70292e-13 2.718 ||| 0-1 ||| 1014 1.17835e+06 +en ||| ( SK ||| 0.000988142 0.0009643 8.48644e-07 6.7508e-10 2.718 ||| 0-1 ||| 1012 1.17835e+06 +en ||| ( SMEs ) in ||| 0.0714286 0.605812 8.48644e-07 7.80909e-12 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| ( amendment of Single CMO Regulation ) ||| 0.25 0.0050742 8.48644e-07 7.99731e-28 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| ( amendment of Single CMO Regulation ||| 0.25 0.0050742 8.48644e-07 5.56412e-25 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| ( amendment of Single CMO ||| 0.25 0.0050742 8.48644e-07 2.45115e-20 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| ( amendment of Single ||| 0.25 0.0050742 8.48644e-07 2.22832e-14 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| ( amendment of ||| 0.0322581 0.0050742 8.48644e-07 2.82066e-09 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| ( amendment ||| 0.0243902 0.0050742 8.48644e-07 5.18847e-08 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| ( applause ) At ||| 1 0.0814815 8.48644e-07 3.74256e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ( applause ) In ||| 0.111111 0.0659459 8.48644e-07 2.07088e-16 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| ( article 2 ( d ) ) ||| 1 0.0141032 8.48644e-07 1.93462e-26 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ( article 2 ( d ) ||| 1 0.0141032 8.48644e-07 1.34601e-23 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ( article 2 ( d ||| 1 0.0141032 8.48644e-07 9.36486e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ( article 2 ( ||| 1 0.0141032 8.48644e-07 1.23222e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ( article 2 ||| 1 0.0141032 8.48644e-07 1.2777e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ( article ||| 0.333333 0.0141032 8.48644e-07 3.48148e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| ( as does the ||| 1 0.066968 8.48644e-07 7.46988e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ( as does ||| 0.5 0.066968 8.48644e-07 1.21676e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ( as ||| 0.00917431 0.066968 8.48644e-07 1.73475e-05 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| ( at ||| 0.0740741 0.321886 1.69729e-06 3.85779e-05 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| ( fr ) At ||| 0.333333 0.0814815 8.48644e-07 2.83811e-16 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| ( fr ) In ||| 0.157895 0.0659459 2.54593e-06 1.57042e-15 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| ( in place at ||| 0.5 0.605812 8.48644e-07 2.80656e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ( in place ||| 0.5 0.605812 8.48644e-07 6.70239e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ( in ||| 0.0397727 0.605812 5.94051e-06 0.000445342 2.718 ||| 0-1 ||| 176 1.17835e+06 +en ||| ( or in this case brother ) ||| 0.125 0.605812 8.48644e-07 1.6189e-20 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| ( or in this case brother ||| 0.125 0.605812 8.48644e-07 1.12635e-17 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| ( or in this case ||| 0.125 0.605812 8.48644e-07 3.51984e-12 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| ( or in this ||| 0.125 0.605812 8.48644e-07 3.28988e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| ( or in ||| 0.111111 0.605812 8.48644e-07 5.09159e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| ( over Kurdistan ) ||| 1 0.157937 8.48644e-07 2.2218e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ( over Kurdistan ||| 1 0.157937 8.48644e-07 1.54582e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ( over ||| 0.1 0.157937 8.48644e-07 3.86454e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| ( with regard to ||| 0.2 0.0535436 8.48644e-07 6.80292e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| ( with regard ||| 0.2 0.0535436 8.48644e-07 7.65593e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| ( with ||| 0.0138889 0.0535436 8.48644e-07 1.12438e-05 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| ( within ||| 0.142857 0.369196 8.48644e-07 1.0692e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| ) As ||| 0.00292398 0.0034965 8.48644e-07 2.01222e-09 2.718 ||| 0-1 ||| 342 1.17835e+06 +en ||| ) At ||| 0.113208 0.0814815 5.09187e-06 1.07798e-08 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| ) In ||| 0.0215983 0.0659459 8.48644e-06 5.96479e-08 2.718 ||| 0-1 ||| 463 1.17835e+06 +en ||| ) Madam President , ||| 0.000156348 0.0001121 8.48644e-07 4.97074e-14 2.718 ||| 0-1 ||| 6396 1.17835e+06 +en ||| ) Madam President ||| 0.000157903 0.0001121 8.48644e-07 4.16817e-13 2.718 ||| 0-1 ||| 6333 1.17835e+06 +en ||| ) Madam ||| 0.000157356 0.0001121 8.48644e-07 2.8746e-09 2.718 ||| 0-1 ||| 6355 1.17835e+06 +en ||| ) On ||| 0.00826446 0.0070671 8.48644e-07 2.01222e-09 2.718 ||| 0-1 ||| 121 1.17835e+06 +en ||| ) at ||| 0.030303 0.321886 8.48644e-07 5.74949e-05 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| ) by ||| 0.000488043 0.0468744 8.48644e-07 1.22273e-05 2.718 ||| 0-1 ||| 2049 1.17835e+06 +en ||| ) from ||| 0.0263158 0.0308834 8.48644e-07 5.46907e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| ) in Geneva ||| 0.333333 0.605812 8.48644e-07 3.11947e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| ) in the ||| 0.00877193 0.605812 8.48644e-07 4.07468e-05 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| ) in ||| 0.0509259 0.605812 1.86702e-05 0.000663718 2.718 ||| 0-1 ||| 432 1.17835e+06 +en ||| ) into ||| 0.0952381 0.525896 1.69729e-06 3.18179e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| ) occurs when ||| 1 0.142731 8.48644e-07 1.07814e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ) of ||| 0.00592885 0.0116562 2.54593e-06 1.96005e-05 2.718 ||| 0-1 ||| 506 1.17835e+06 +en ||| ) on ||| 0.0075188 0.22993 1.69729e-06 0.000119365 2.718 ||| 0-1 ||| 266 1.17835e+06 +en ||| ) within ||| 0.111111 0.369196 1.69729e-06 1.59349e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| + ||| 0.00118203 0.001171 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 846 1.17835e+06 +en ||| , ' however ||| 0.5 0.0053256 8.48644e-07 1.53324e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , ' taken as ||| 1 0.066968 8.48644e-07 6.71625e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , ' this is ||| 0.25 0.0013296 8.48644e-07 6.12382e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , ' this ||| 0.111111 0.0013296 8.48644e-07 1.95393e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| , ' under ||| 1 0.205566 8.48644e-07 2.31628e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , 000 by ||| 0.5 0.0468744 8.48644e-07 1.06219e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , 000 in ||| 0.6 0.605812 2.54593e-06 5.76578e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| , 000 under ||| 1 0.205566 8.48644e-07 7.06031e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , 000m in ||| 1 0.605812 8.48644e-07 2.20278e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , 300m in ||| 0.25 0.605812 8.48644e-07 2.20278e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , 36 and 39 to 44 in ||| 1 0.605812 8.48644e-07 3.5195e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , 500 on ||| 1 0.22993 8.48644e-07 4.25868e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , Austria , in ||| 0.333333 0.605812 8.48644e-07 6.83e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , Commissioner , in ||| 0.00515464 0.605812 8.48644e-07 5.79236e-07 2.718 ||| 0-3 ||| 194 1.17835e+06 +en ||| , Commissioner , that in ||| 0.0714286 0.605812 8.48644e-07 9.74368e-09 2.718 ||| 0-4 ||| 14 1.17835e+06 +en ||| , Commissioner , with regard to ||| 0.166667 0.0535436 8.48644e-07 8.84826e-13 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| , Commissioner , with regard ||| 0.111111 0.0535436 8.48644e-07 9.95773e-12 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| , Commissioner , with ||| 0.0151515 0.0535436 8.48644e-07 1.46244e-08 2.718 ||| 0-3 ||| 66 1.17835e+06 +en ||| , Democrat and Reform Party at ||| 0.333333 0.321886 8.48644e-07 1.87336e-17 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| , Forza Italia , in ||| 1 0.605812 8.48644e-07 1.83885e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , I agree ||| 0.000820345 0.071674 8.48644e-07 1.07738e-06 2.718 ||| 0-2 ||| 1219 1.17835e+06 +en ||| , I am talking about ||| 0.047619 0.0401564 8.48644e-07 3.37893e-13 2.718 ||| 0-4 ||| 21 1.17835e+06 +en ||| , I believe , in ||| 0.05 0.605812 8.48644e-07 1.44611e-08 2.718 ||| 0-4 ||| 20 1.17835e+06 +en ||| , I believe that ||| 0.000265816 0.0060084 8.48644e-07 1.51744e-09 2.718 ||| 0-1 ||| 3762 1.17835e+06 +en ||| , I believe ||| 0.000480154 0.0060084 2.54593e-06 9.02076e-08 2.718 ||| 0-1 ||| 6248 1.17835e+06 +en ||| , I consider ||| 0.0021322 0.0126304 8.48644e-07 1.02154e-07 2.718 ||| 0-2 ||| 469 1.17835e+06 +en ||| , I feel ||| 0.000978474 0.0060084 8.48644e-07 4.90013e-08 2.718 ||| 0-1 ||| 1022 1.17835e+06 +en ||| , I find ||| 0.00429185 0.0060084 8.48644e-07 9.64668e-08 2.718 ||| 0-1 ||| 233 1.17835e+06 +en ||| , I got hold of ||| 0.25 0.0116562 8.48644e-07 2.19227e-13 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| , I have in ||| 0.1 0.605812 8.48644e-07 4.65876e-06 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| , I have to say , in ||| 0.166667 0.605812 8.48644e-07 4.71857e-11 2.718 ||| 0-6 ||| 6 1.17835e+06 +en ||| , I have ||| 0.000180408 0.0060084 8.48644e-07 3.46567e-06 2.718 ||| 0-1 ||| 5543 1.17835e+06 +en ||| , I mean in the ||| 1 0.605812 8.48644e-07 6.1627e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , I mean in ||| 1 0.605812 8.48644e-07 1.00383e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , I might add , in ||| 1 0.605812 8.48644e-07 1.46274e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , I referred in ||| 1 0.605812 8.48644e-07 3.72785e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , I should in ||| 0.5 0.605812 8.48644e-07 1.72603e-06 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , I should like , on ||| 0.1 0.22993 8.48644e-07 6.57411e-11 2.718 ||| 0-5 ||| 10 1.17835e+06 +en ||| , I should like to ||| 0.000393701 0.0247351 8.48644e-07 1.8658e-10 2.718 ||| 0-4 ||| 2540 1.17835e+06 +en ||| , I signed ||| 0.0769231 0.0060084 8.48644e-07 8.95411e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| , I think ||| 0.000185151 0.0060084 8.48644e-07 1.1084e-07 2.718 ||| 0-1 ||| 5401 1.17835e+06 +en ||| , I trust , ||| 0.0555556 0.192848 8.48644e-07 7.05085e-08 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| , I trust ||| 0.00862069 0.192848 8.48644e-07 5.91243e-07 2.718 ||| 0-2 ||| 116 1.17835e+06 +en ||| , I very ||| 0.0229885 0.0060084 1.69729e-06 1.00828e-06 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| , I will ||| 0.00149254 0.0060084 8.48644e-07 2.50692e-06 2.718 ||| 0-1 ||| 670 1.17835e+06 +en ||| , I would , in theory , ||| 1 0.605812 8.48644e-07 2.47088e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , I would , in theory ||| 1 0.605812 8.48644e-07 2.07194e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , I would , in ||| 0.2 0.605812 8.48644e-07 2.72624e-07 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| , I would hope , developments in ||| 1 0.605812 8.48644e-07 1.42895e-15 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , I would like to ||| 0.000201735 0.0247351 8.48644e-07 2.47118e-10 2.718 ||| 0-4 ||| 4957 1.17835e+06 +en ||| , I would say , ||| 0.00714286 0.0060084 8.48644e-07 1.93842e-10 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| , I would say ||| 0.00277778 0.0060084 1.69729e-06 1.62545e-09 2.718 ||| 0-1 ||| 720 1.17835e+06 +en ||| , I would ||| 0.000928218 0.0060084 2.54593e-06 1.70061e-06 2.718 ||| 0-1 ||| 3232 1.17835e+06 +en ||| , I ||| 0.000668226 0.0060084 2.20648e-05 0.000289777 2.718 ||| 0-1 ||| 38909 1.17835e+06 +en ||| , Justice and Home Affairs , with ||| 0.2 0.0535436 8.48644e-07 2.63107e-19 2.718 ||| 0-6 ||| 5 1.17835e+06 +en ||| , Kosovo and Turkey ( over Kurdistan ||| 1 0.157937 8.48644e-07 3.32083e-24 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , Kosovo and Turkey ( over ||| 1 0.157937 8.48644e-07 8.30208e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , Ladies and Gentlemen , in ||| 0.5 0.605812 8.48644e-07 1.26683e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| , Madam ||| 0.000387147 0.0001121 8.48644e-07 2.38509e-07 2.718 ||| 0-1 ||| 2583 1.17835e+06 +en ||| , Mr Brok said in the debate ||| 0.333333 0.605812 8.48644e-07 2.51498e-19 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , Mr Brok said in the ||| 0.333333 0.605812 8.48644e-07 1.27083e-15 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , Mr Brok said in ||| 0.333333 0.605812 8.48644e-07 2.07004e-14 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , Mr President , on ||| 0.0175439 0.22993 8.48644e-07 1.11797e-10 2.718 ||| 0-4 ||| 57 1.17835e+06 +en ||| , Mr President ||| 0.000132961 0.0022154 8.48644e-07 1.74305e-08 2.718 ||| 0-2 ||| 7521 1.17835e+06 +en ||| , Mr ||| 3.42231e-05 0.0001675 8.48644e-07 3.16025e-06 2.718 ||| 0-1 ||| 29220 1.17835e+06 +en ||| , Prefect of ||| 1 0.0116562 8.48644e-07 6.50511e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , Public Health and Consumer Policy as ||| 1 0.066968 8.48644e-07 3.22771e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , Public Health and Consumer Policy during ||| 1 0.226251 8.48644e-07 5.18808e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , Sir , on ||| 1 0.22993 8.48644e-07 2.12596e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , Turkey is a country in a ||| 1 0.605812 8.48644e-07 7.16406e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , Turkey is a country in ||| 1 0.605812 8.48644e-07 1.61623e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , a fact which is highlighted in ||| 1 0.605812 8.48644e-07 3.84539e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , a factor which in turn defines ||| 1 0.605812 8.48644e-07 3.16309e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , a factor which in turn ||| 1 0.605812 8.48644e-07 2.25935e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , a factor which in ||| 0.5 0.605812 8.48644e-07 1.00774e-09 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , a free-trade area on European ||| 1 0.22993 8.48644e-07 6.70612e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , a free-trade area on ||| 1 0.22993 8.48644e-07 2.00548e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , a more ||| 0.0243902 0.0042952 8.48644e-07 1.75867e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| , a new procedure is creeping in ||| 1 0.605812 8.48644e-07 6.42728e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , a place where ||| 0.1 0.247783 8.48644e-07 6.7754e-08 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| , a process extending back over ||| 1 0.157937 8.48644e-07 1.24859e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , a project in ||| 0.333333 0.605812 8.48644e-07 1.49389e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , a quantified commitment to ||| 1 0.0247351 8.48644e-07 9.11997e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , a sector where consumers are currently ||| 1 0.247783 8.48644e-07 4.95274e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , a sector where consumers are ||| 1 0.247783 8.48644e-07 4.744e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , a sector where consumers ||| 1 0.247783 8.48644e-07 3.12667e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , a sector where ||| 1 0.247783 8.48644e-07 8.36008e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , a ||| 4.33595e-05 0.0015231 8.48644e-07 9.82659e-05 2.718 ||| 0-1 ||| 23063 1.17835e+06 +en ||| , about the ||| 0.00204499 0.0401564 8.48644e-07 2.09835e-05 2.718 ||| 0-1 ||| 489 1.17835e+06 +en ||| , about ||| 0.00271887 0.0401564 4.24322e-06 0.000341796 2.718 ||| 0-1 ||| 1839 1.17835e+06 +en ||| , above all , in those ||| 1 0.605812 8.48644e-07 2.91225e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , above all , in ||| 0.0113636 0.605812 8.48644e-07 4.0219e-09 2.718 ||| 0-4 ||| 88 1.17835e+06 +en ||| , above ||| 0.00056338 0.0146514 1.69729e-06 1.31419e-05 2.718 ||| 0-1 ||| 3550 1.17835e+06 +en ||| , according to a good deal ||| 0.5 0.0586463 8.48644e-07 4.38435e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , according to a good ||| 0.5 0.0586463 8.48644e-07 1.03258e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , according to a ||| 0.0120482 0.0586463 8.48644e-07 1.9911e-07 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| , according to past precedent , ||| 0.5 0.0586463 8.48644e-07 2.19589e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , according to past precedent ||| 0.5 0.0586463 8.48644e-07 1.84135e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , according to past ||| 0.5 0.0586463 8.48644e-07 5.75421e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , according to ||| 0.00178412 0.0586463 3.39458e-06 4.49197e-06 2.718 ||| 0-1 ||| 2242 1.17835e+06 +en ||| , according ||| 0.00400229 0.0586463 5.94051e-06 5.05521e-05 2.718 ||| 0-1 ||| 1749 1.17835e+06 +en ||| , across ||| 0.0592105 0.274879 7.6378e-06 0.000244985 2.718 ||| 0-1 ||| 152 1.17835e+06 +en ||| , acted in ||| 0.333333 0.605812 8.48644e-07 1.06835e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , activities in ||| 0.333333 0.605812 8.48644e-07 4.37803e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , acts in contempt of ||| 0.25 0.605812 8.48644e-07 1.77161e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , acts in contempt ||| 0.25 0.605812 8.48644e-07 3.2588e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , acts in ||| 0.142857 0.605812 8.48644e-07 3.13346e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| , affects them ||| 1 0.0203793 8.48644e-07 1.56746e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , affects ||| 0.0285714 0.0203793 8.48644e-07 5.84348e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| , after all , at liberty to ||| 0.5 0.321886 8.48644e-07 6.53822e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , after all , at liberty ||| 0.5 0.321886 8.48644e-07 7.35804e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , after all , at ||| 0.333333 0.321886 8.48644e-07 7.28518e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , after all , ||| 0.00250627 0.0144723 1.69729e-06 1.78357e-08 2.718 ||| 0-1 ||| 798 1.17835e+06 +en ||| , after all ||| 0.0031881 0.0144723 2.54593e-06 1.4956e-07 2.718 ||| 0-1 ||| 941 1.17835e+06 +en ||| , after ||| 0.002457 0.0144723 1.1881e-05 3.16502e-05 2.718 ||| 0-1 ||| 5698 1.17835e+06 +en ||| , afterwards in ||| 0.5 0.605812 8.48644e-07 6.71849e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , again , in ||| 0.142857 0.605812 8.48644e-07 3.79787e-06 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| , again within the space of a ||| 1 0.369196 8.48644e-07 4.68284e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , again within the space of ||| 1 0.369196 8.48644e-07 1.05646e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , again within the space ||| 1 0.369196 8.48644e-07 1.94331e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , again within the ||| 1 0.369196 8.48644e-07 4.69398e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , again within ||| 1 0.369196 8.48644e-07 7.64594e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , against that ||| 0.125 0.153982 8.48644e-07 1.16329e-05 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| , against the ||| 0.00458716 0.153982 8.48644e-07 4.24553e-05 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| , against ||| 0.0121212 0.153982 8.48644e-06 0.000691546 2.718 ||| 0-1 ||| 825 1.17835e+06 +en ||| , aimed at ||| 0.00280112 0.321886 8.48644e-07 3.31545e-07 2.718 ||| 0-2 ||| 357 1.17835e+06 +en ||| , albeit in ||| 0.025 0.605812 1.69729e-06 1.15095e-06 2.718 ||| 0-2 ||| 80 1.17835e+06 +en ||| , albeit under rather ||| 1 0.205566 8.48644e-07 4.31548e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , albeit under ||| 0.0714286 0.205566 8.48644e-07 1.40937e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| , albeit with ||| 0.00884956 0.0535436 8.48644e-07 2.90589e-08 2.718 ||| 0-2 ||| 113 1.17835e+06 +en ||| , albeit within ||| 0.111111 0.369196 8.48644e-07 2.76327e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| , all in ||| 0.0574713 0.605812 4.24322e-06 0.000260226 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| , all investment in ||| 1 0.605812 8.48644e-07 6.37553e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , all over ||| 0.0909091 0.157937 8.48644e-07 2.25816e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| , all well known . in ||| 1 0.605812 8.48644e-07 1.37604e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , all ||| 0.000473597 0.0006885 1.69729e-06 8.68174e-06 2.718 ||| 0-1 ||| 4223 1.17835e+06 +en ||| , along with other things , ||| 1 0.155535 8.48644e-07 3.85192e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , along with other things ||| 1 0.155535 8.48644e-07 3.22999e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , along with other ||| 0.00952381 0.155535 8.48644e-07 7.85886e-10 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| , along with ||| 0.00107469 0.155535 1.69729e-06 6.06628e-07 2.718 ||| 0-1 ||| 1861 1.17835e+06 +en ||| , along ||| 0.00324149 0.155535 5.09187e-06 9.48671e-05 2.718 ||| 0-1 ||| 1851 1.17835e+06 +en ||| , already now , for ||| 1 0.0286209 8.48644e-07 1.56087e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , also form part of ||| 0.25 0.0116562 8.48644e-07 4.45571e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| , also in relation to ||| 0.0909091 0.605812 8.48644e-07 6.01066e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| , also in relation ||| 0.5 0.605812 8.48644e-07 6.76433e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , also in ||| 0.0368421 0.605812 5.94051e-06 0.000278024 2.718 ||| 0-2 ||| 190 1.17835e+06 +en ||| , also on ||| 0.0192308 0.22993 8.48644e-07 5.00009e-05 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| , also with ||| 0.0196078 0.0535436 8.48644e-07 7.01947e-06 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| , although I ||| 0.00265957 0.0060084 8.48644e-07 3.10641e-08 2.718 ||| 0-2 ||| 376 1.17835e+06 +en ||| , although they are supposed ||| 0.5 0.0040507 8.48644e-07 1.65019e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , although they are ||| 0.0166667 0.0040507 8.48644e-07 2.81122e-10 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| , although they ||| 0.00943396 0.0040507 8.48644e-07 1.85282e-08 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| , although ||| 0.000235793 0.0040507 1.69729e-06 5.67652e-06 2.718 ||| 0-1 ||| 8482 1.17835e+06 +en ||| , among other things in ||| 0.5 0.605812 8.48644e-07 2.62723e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , among other things ||| 0.0011274 0.0422459 8.48644e-07 2.02239e-11 2.718 ||| 0-1 ||| 887 1.17835e+06 +en ||| , among other ||| 0.000978474 0.0422459 8.48644e-07 4.92065e-08 2.718 ||| 0-1 ||| 1022 1.17835e+06 +en ||| , among others , ||| 0.00357143 0.0422459 8.48644e-07 4.40278e-10 2.718 ||| 0-1 ||| 280 1.17835e+06 +en ||| , among others ||| 0.00248139 0.0422459 8.48644e-07 3.69191e-09 2.718 ||| 0-1 ||| 403 1.17835e+06 +en ||| , among them ||| 0.00900901 0.0422459 8.48644e-07 1.01885e-07 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| , among ||| 0.00424628 0.0422459 6.78915e-06 3.79826e-05 2.718 ||| 0-1 ||| 1884 1.17835e+06 +en ||| , amongst other places , in various ||| 1 0.605812 8.48644e-07 2.32794e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , amongst other places , in ||| 0.5 0.605812 8.48644e-07 1.50774e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| , amongst other things , ||| 0.002849 0.050508 8.48644e-07 8.96565e-13 2.718 ||| 0-1 ||| 351 1.17835e+06 +en ||| , amongst other things ||| 0.00240964 0.050508 8.48644e-07 7.51807e-12 2.718 ||| 0-1 ||| 415 1.17835e+06 +en ||| , amongst other ||| 0.00422833 0.050508 1.69729e-06 1.82921e-08 2.718 ||| 0-1 ||| 473 1.17835e+06 +en ||| , amongst ||| 0.00353774 0.050508 2.54593e-06 1.41198e-05 2.718 ||| 0-1 ||| 848 1.17835e+06 +en ||| , an independent channel . ||| 0.5 0.0035211 8.48644e-07 5.50695e-17 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , an independent channel ||| 0.5 0.0035211 8.48644e-07 1.81808e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , and , as ||| 0.00632911 0.066968 1.69729e-06 3.20435e-06 2.718 ||| 0-3 ||| 316 1.17835e+06 +en ||| , and , if ||| 0.00561798 0.0178573 8.48644e-07 2.06553e-07 2.718 ||| 0-3 ||| 178 1.17835e+06 +en ||| , and , in ||| 0.00454545 0.605812 1.69729e-06 8.22614e-05 2.718 ||| 0-3 ||| 440 1.17835e+06 +en ||| , and , indeed , one that ||| 1 0.0010182 8.48644e-07 8.31561e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , and , indeed , one ||| 1 0.0010182 8.48644e-07 4.94341e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , and , indeed , ||| 0.0181818 0.0010182 8.48644e-07 1.18604e-09 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| , and , indeed ||| 0.0192308 0.0010182 8.48644e-07 9.94543e-09 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| , and , ||| 0.000322789 0.0010182 8.48644e-07 1.31223e-05 2.718 ||| 0-1 ||| 3098 1.17835e+06 +en ||| , and I ||| 0.000168833 0.0060084 8.48644e-07 3.62972e-06 2.718 ||| 0-2 ||| 5923 1.17835e+06 +en ||| , and about ||| 0.00568182 0.0205873 8.48644e-07 3.15375e-07 2.718 ||| 0-1 0-2 ||| 176 1.17835e+06 +en ||| , and also elsewhere in ||| 1 0.605812 8.48644e-07 1.29201e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , and as ||| 0.00102987 0.066968 8.48644e-07 2.68698e-05 2.718 ||| 0-2 ||| 971 1.17835e+06 +en ||| , and at ||| 0.0102459 0.321886 4.24322e-06 5.97539e-05 2.718 ||| 0-2 ||| 488 1.17835e+06 +en ||| , and by ||| 0.00170068 0.0468744 8.48644e-07 1.27077e-05 2.718 ||| 0-2 ||| 588 1.17835e+06 +en ||| , and clarification is needed in ||| 1 0.605812 8.48644e-07 3.53163e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , and do so to ||| 1 0.0247351 8.48644e-07 3.2738e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , and does so in ||| 0.2 0.605812 8.48644e-07 1.09813e-09 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| , and done on ||| 1 0.22993 8.48644e-07 5.65693e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , and especially Christians , ||| 1 0.13965 8.48644e-07 1.29554e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , and especially Christians ||| 1 0.13965 8.48644e-07 1.08637e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , and especially ||| 0.000822368 0.13965 8.48644e-07 3.3949e-06 2.718 ||| 0-2 ||| 1216 1.17835e+06 +en ||| , and here the national state is ||| 1 0.0855319 8.48644e-07 2.79886e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , and here the national state ||| 1 0.0855319 8.48644e-07 8.93032e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , and here the national ||| 1 0.0855319 8.48644e-07 3.53536e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , and here the ||| 0.0625 0.0855319 8.48644e-07 2.75125e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| , and here ||| 0.00276243 0.0855319 8.48644e-07 4.48147e-06 2.718 ||| 0-2 ||| 362 1.17835e+06 +en ||| , and in , ||| 1 0.605812 8.48644e-07 8.22614e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , and in free and democratic states ||| 0.5 0.605812 8.48644e-07 2.26526e-18 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , and in free and democratic ||| 0.5 0.605812 8.48644e-07 3.01231e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , and in free and ||| 0.5 0.605812 8.48644e-07 1.00746e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , and in free ||| 0.333333 0.605812 8.48644e-07 8.04302e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , and in some ||| 0.010101 0.605812 8.48644e-07 7.51395e-07 2.718 ||| 0-2 ||| 99 1.17835e+06 +en ||| , and in that ||| 0.008 0.605812 8.48644e-07 1.16035e-05 2.718 ||| 0-2 ||| 125 1.17835e+06 +en ||| , and in ||| 0.00641986 0.605812 2.54593e-05 0.000689796 2.718 ||| 0-2 ||| 4673 1.17835e+06 +en ||| , and is just as ||| 0.333333 0.066968 8.48644e-07 1.06252e-09 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , and it is in the ||| 0.0714286 0.605812 8.48644e-07 2.36023e-08 2.718 ||| 0-4 ||| 14 1.17835e+06 +en ||| , and it is in ||| 0.0175439 0.605812 8.48644e-07 3.84454e-07 2.718 ||| 0-4 ||| 57 1.17835e+06 +en ||| , and it is significant not only ||| 1 0.0080472 8.48644e-07 2.82625e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , and it is significant not ||| 1 0.0080472 8.48644e-07 2.53908e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , and it is significant ||| 0.5 0.0080472 8.48644e-07 7.43703e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , and it is ||| 0.000332336 0.0080472 8.48644e-07 1.29115e-07 2.718 ||| 0-2 ||| 3009 1.17835e+06 +en ||| , and it ||| 0.000349528 0.0080472 8.48644e-07 4.11968e-06 2.718 ||| 0-2 ||| 2861 1.17835e+06 +en ||| , and let us ||| 0.0208333 0.0010182 8.48644e-07 1.29523e-10 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| , and let ||| 0.0140845 0.0010182 8.48644e-07 4.49388e-08 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| , and not on ||| 0.0149254 0.22993 8.48644e-07 4.23538e-07 2.718 ||| 0-3 ||| 67 1.17835e+06 +en ||| , and on the ||| 0.00204918 0.22993 8.48644e-07 7.61599e-06 2.718 ||| 0-2 ||| 488 1.17835e+06 +en ||| , and on ||| 0.00300075 0.22993 3.39458e-06 0.000124055 2.718 ||| 0-2 ||| 1333 1.17835e+06 +en ||| , and one in ||| 0.0322581 0.605812 8.48644e-07 2.87507e-06 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| , and provided information on ||| 1 0.22993 8.48644e-07 4.70574e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , and secondly because , in ||| 1 0.605812 8.48644e-07 9.73119e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , and support from ||| 0.5 0.0308834 8.48644e-07 1.94334e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , and that is ||| 0.000368053 0.0017499 8.48644e-07 4.89326e-08 2.718 ||| 0-2 ||| 2717 1.17835e+06 +en ||| , and that of ||| 0.00877193 0.0116562 8.48644e-07 3.42666e-07 2.718 ||| 0-3 ||| 114 1.17835e+06 +en ||| , and that we in the Commission ||| 1 0.605812 8.48644e-07 4.72356e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , and that we in the ||| 0.5 0.605812 8.48644e-07 8.0869e-09 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , and that we in ||| 0.25 0.605812 8.48644e-07 1.31726e-07 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| , and that ||| 0.000284252 0.0017499 2.54593e-06 1.56129e-06 2.718 ||| 0-2 ||| 10554 1.17835e+06 +en ||| , and the Committee on ||| 0.00649351 0.22993 8.48644e-07 1.1622e-09 2.718 ||| 0-4 ||| 154 1.17835e+06 +en ||| , and the ||| 6.89608e-05 0.0011669 8.48644e-07 4.27921e-06 2.718 ||| 0-2 ||| 14501 1.17835e+06 +en ||| , and these ||| 0.00173611 0.0010182 8.48644e-07 1.14119e-07 2.718 ||| 0-1 ||| 576 1.17835e+06 +en ||| , and this in ||| 0.0238095 0.605812 8.48644e-07 4.45705e-06 2.718 ||| 0-3 ||| 42 1.17835e+06 +en ||| , and this is due to ||| 0.166667 0.0247351 8.48644e-07 2.35016e-12 2.718 ||| 0-5 ||| 6 1.17835e+06 +en ||| , and this is made ||| 0.333333 0.0013296 8.48644e-07 4.67799e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , and this is ||| 0.000602047 0.0013296 8.48644e-07 2.23315e-08 2.718 ||| 0-2 ||| 1661 1.17835e+06 +en ||| , and this within ||| 0.0666667 0.369196 8.48644e-07 1.07007e-07 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| , and this ||| 0.000409082 0.0010182 1.69729e-06 7.10989e-07 2.718 ||| 0-1 ||| 4889 1.17835e+06 +en ||| , and thus ||| 0.00181818 0.0107888 8.48644e-07 2.18539e-07 2.718 ||| 0-2 ||| 550 1.17835e+06 +en ||| , and to an ||| 0.142857 0.0010182 8.48644e-07 4.34586e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| , and to ||| 0.00097371 0.0247351 3.39458e-06 4.19874e-05 2.718 ||| 0-2 ||| 4108 1.17835e+06 +en ||| , and we in ||| 0.0138889 0.605812 8.48644e-07 7.83077e-06 2.718 ||| 0-3 ||| 72 1.17835e+06 +en ||| , and we must succeed in ||| 1 0.605812 8.48644e-07 4.61133e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , and we rely on global partnership ||| 1 0.22993 8.48644e-07 2.75255e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , and we rely on global ||| 1 0.22993 8.48644e-07 1.27433e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , and we rely on ||| 0.5 0.22993 8.48644e-07 2.78846e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , and where it is ||| 0.166667 0.247783 8.48644e-07 7.09047e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| , and where it ||| 0.25 0.247783 8.48644e-07 2.26235e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , and where ||| 0.00318471 0.247783 8.48644e-07 1.27219e-05 2.718 ||| 0-2 ||| 314 1.17835e+06 +en ||| , and will be , in ||| 1 0.605812 8.48644e-07 1.28973e-08 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , and with ||| 0.00302115 0.0535436 2.54593e-06 1.74157e-05 2.718 ||| 0-2 ||| 993 1.17835e+06 +en ||| , and within , ||| 0.333333 0.369196 8.48644e-07 1.97498e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , and within ||| 0.021978 0.369196 1.69729e-06 1.6561e-05 2.718 ||| 0-2 ||| 91 1.17835e+06 +en ||| , and ||| 0.000166565 0.0010182 2.6308e-05 0.000110036 2.718 ||| 0-1 ||| 186113 1.17835e+06 +en ||| , another initiative will come to ||| 1 0.0247351 8.48644e-07 3.71723e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , apart from ||| 0.00143266 0.0308834 8.48644e-07 2.82702e-08 2.718 ||| 0-2 ||| 698 1.17835e+06 +en ||| , applies everywhere , in ||| 1 0.605812 8.48644e-07 1.02914e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , apply in ||| 0.333333 0.605812 8.48644e-07 7.92451e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , approach with ||| 1 0.0535436 8.48644e-07 3.04771e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , are , in ||| 0.0769231 0.605812 8.48644e-07 9.96437e-05 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| , are at ||| 0.0149254 0.321886 8.48644e-07 7.23803e-05 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| , are calling into question ||| 1 0.525896 8.48644e-07 2.18379e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , are calling into ||| 1 0.525896 8.48644e-07 2.63966e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , are displaying at ||| 1 0.321886 8.48644e-07 2.89521e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , are flown in ||| 0.5 0.605812 8.48644e-07 1.83822e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , are in ||| 0.00699301 0.605812 8.48644e-07 0.000835554 2.718 ||| 0-2 ||| 143 1.17835e+06 +en ||| , are to ||| 0.0121951 0.0247351 8.48644e-07 5.08596e-05 2.718 ||| 0-2 ||| 82 1.17835e+06 +en ||| , are we in ||| 0.5 0.605812 8.48644e-07 9.48546e-06 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , are ||| 0.000423131 0.0006429 2.54593e-06 1.93073e-05 2.718 ||| 0-1 ||| 7090 1.17835e+06 +en ||| , as Europe , to ||| 0.333333 0.066968 8.48644e-07 1.15022e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , as Europe , ||| 0.05 0.066968 8.48644e-07 1.29444e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| , as Europe ||| 0.0188679 0.066968 8.48644e-07 1.08544e-06 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| , as I am sure you can ||| 0.5 0.066968 8.48644e-07 3.24274e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , as I am sure you ||| 0.125 0.066968 8.48644e-07 1.09025e-14 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| , as I am sure ||| 0.00719424 0.066968 8.48644e-07 3.37675e-12 2.718 ||| 0-1 ||| 139 1.17835e+06 +en ||| , as I am ||| 0.00578035 0.066968 8.48644e-07 1.93843e-08 2.718 ||| 0-1 ||| 173 1.17835e+06 +en ||| , as I recall , here in ||| 1 0.605812 8.48644e-07 1.6245e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , as I was , in ||| 1 0.605812 8.48644e-07 1.48515e-09 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , as I ||| 0.000456621 0.066968 8.48644e-07 1.51737e-05 2.718 ||| 0-1 ||| 2190 1.17835e+06 +en ||| , as Member States ||| 0.0588235 0.066968 8.48644e-07 5.27493e-10 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| , as Member ||| 0.333333 0.066968 8.48644e-07 1.10539e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , as a matter of ||| 0.00465116 0.066968 8.48644e-07 5.36305e-09 2.718 ||| 0-1 ||| 215 1.17835e+06 +en ||| , as a matter ||| 0.00829876 0.066968 1.69729e-06 9.86508e-08 2.718 ||| 0-1 ||| 241 1.17835e+06 +en ||| , as a result ||| 0.000870322 0.066968 8.48644e-07 5.00623e-08 2.718 ||| 0-1 ||| 1149 1.17835e+06 +en ||| , as a rule , are they ||| 0.333333 0.066968 8.48644e-07 4.56553e-14 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , as a rule , are ||| 0.2 0.066968 8.48644e-07 1.39875e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| , as a rule , ||| 0.015625 0.066968 8.48644e-07 9.21889e-10 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| , as a rule ||| 0.0138889 0.066968 8.48644e-07 7.73042e-09 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| , as a whole ||| 0.015873 0.066968 8.48644e-07 5.37897e-08 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| , as a ||| 0.00622084 0.066968 2.03675e-05 9.50851e-05 2.718 ||| 0-1 ||| 3858 1.17835e+06 +en ||| , as an ||| 0.00221239 0.066968 8.48644e-07 9.53451e-06 2.718 ||| 0-1 ||| 452 1.17835e+06 +en ||| , as early as at ||| 1 0.321886 8.48644e-07 3.36295e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , as far as I can ||| 0.0384615 0.066968 8.48644e-07 3.14407e-13 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| , as far as I ||| 0.0105263 0.066968 8.48644e-07 1.05708e-10 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| , as far as this is possible ||| 0.5 0.066968 8.48644e-07 2.42741e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , as far as this is ||| 0.111111 0.066968 8.48644e-07 3.02632e-12 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| , as far as this ||| 0.0666667 0.066968 8.48644e-07 9.65606e-11 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| , as far as ||| 0.00990099 0.066968 9.33509e-06 1.49442e-08 2.718 ||| 0-3 ||| 1111 1.17835e+06 +en ||| , as far ||| 0.00696517 0.066968 5.94051e-06 1.46449e-06 2.718 ||| 0-1 ||| 1005 1.17835e+06 +en ||| , as has ||| 0.0037037 0.066968 1.69729e-06 1.10421e-05 2.718 ||| 0-1 ||| 540 1.17835e+06 +en ||| , as in the ||| 0.00208768 0.605812 8.48644e-07 3.44992e-05 2.718 ||| 0-2 ||| 479 1.17835e+06 +en ||| , as in ||| 0.00254669 0.605812 2.54593e-06 0.000561952 2.718 ||| 0-2 ||| 1178 1.17835e+06 +en ||| , as is proposed in ||| 0.0769231 0.605812 8.48644e-07 1.96552e-09 2.718 ||| 0-4 ||| 13 1.17835e+06 +en ||| , as it could ||| 0.0526316 0.066968 8.48644e-07 2.71267e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| , as it is , on ||| 0.5 0.22993 8.48644e-07 6.71729e-09 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| , as it put it , at ||| 1 0.321886 8.48644e-07 2.02422e-12 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , as it was , in ||| 1 0.605812 8.48644e-07 3.73375e-09 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , as it was in ||| 0.0344828 0.605812 8.48644e-07 3.1309e-08 2.718 ||| 0-4 ||| 29 1.17835e+06 +en ||| , as it were , on ||| 0.333333 0.22993 1.69729e-06 3.83948e-10 2.718 ||| 0-5 ||| 6 1.17835e+06 +en ||| , as it were , ||| 0.0108696 0.066968 2.54593e-06 8.14956e-09 2.718 ||| 0-1 ||| 276 1.17835e+06 +en ||| , as it were on behalf of ||| 1 0.22993 8.48644e-07 5.57465e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , as it were on behalf ||| 1 0.22993 8.48644e-07 1.02543e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , as it were on ||| 1 0.22993 8.48644e-07 3.21956e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , as it were ||| 0.00977995 0.066968 3.39458e-06 6.83374e-08 2.718 ||| 0-1 ||| 409 1.17835e+06 +en ||| , as it ||| 0.00332502 0.066968 6.78915e-06 3.81475e-05 2.718 ||| 0-1 ||| 2406 1.17835e+06 +en ||| , as leader ||| 0.1 0.066968 8.48644e-07 2.55272e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| , as long ||| 0.0035461 0.066968 8.48644e-07 7.25701e-07 2.718 ||| 0-1 ||| 282 1.17835e+06 +en ||| , as matter of ||| 0.5 0.0116562 8.48644e-07 1.72175e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , as may ||| 0.0769231 0.066968 8.48644e-07 1.60714e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| , as of ||| 0.0267857 0.0393121 2.54593e-06 2.92533e-05 2.718 ||| 0-1 0-2 ||| 112 1.17835e+06 +en ||| , as one must , ||| 0.333333 0.066968 8.48644e-07 1.648e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , as one must ||| 0.25 0.066968 8.48644e-07 1.38191e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , as one ||| 0.00497512 0.066968 8.48644e-07 8.94095e-06 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| , as our prime requirement ||| 0.5 0.066968 8.48644e-07 1.88107e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , as our prime ||| 0.5 0.066968 8.48644e-07 4.4681e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , as our ||| 0.00819672 0.066968 8.48644e-07 2.95901e-06 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| , as outlined in ||| 0.0285714 0.605812 8.48644e-07 9.72177e-09 2.718 ||| 0-3 ||| 35 1.17835e+06 +en ||| , as part of ||| 0.00815217 0.0116562 2.54593e-06 1.97848e-08 2.718 ||| 0-3 ||| 368 1.17835e+06 +en ||| , as part ||| 0.00448431 0.066968 1.69729e-06 2.55744e-06 2.718 ||| 0-1 ||| 446 1.17835e+06 +en ||| , as proposed ||| 0.00520833 0.066968 8.48644e-07 2.39398e-07 2.718 ||| 0-1 ||| 192 1.17835e+06 +en ||| , as provided ||| 0.0151515 0.066968 8.48644e-07 4.91666e-07 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| , as regards ||| 0.00807265 0.0372075 6.78915e-06 2.0293e-07 2.718 ||| 0-1 0-2 ||| 991 1.17835e+06 +en ||| , as set out at ||| 0.333333 0.321886 8.48644e-07 1.08968e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , as soon as ||| 0.00961538 0.066968 1.69729e-06 2.01606e-09 2.718 ||| 0-1 ||| 208 1.17835e+06 +en ||| , as soon ||| 0.00413223 0.066968 8.48644e-07 1.97568e-07 2.718 ||| 0-1 ||| 242 1.17835e+06 +en ||| , as such , ||| 0.00787402 0.066968 1.69729e-06 5.29262e-07 2.718 ||| 0-1 ||| 254 1.17835e+06 +en ||| , as such ||| 0.00699301 0.066968 1.69729e-06 4.43808e-06 2.718 ||| 0-1 ||| 286 1.17835e+06 +en ||| , as the case may be , ||| 0.0666667 0.066968 8.48644e-07 2.28145e-13 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| , as the case may be ||| 0.0357143 0.066968 8.48644e-07 1.91309e-12 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| , as the case may ||| 0.0454545 0.066968 8.48644e-07 1.05562e-10 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| , as the case ||| 0.0714286 0.066968 8.48644e-07 1.409e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| , as the city depends on them ||| 1 0.066968 8.48644e-07 7.31664e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , as the city depends on ||| 1 0.066968 8.48644e-07 2.72765e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , as the city depends ||| 1 0.066968 8.48644e-07 4.07659e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , as the city ||| 1 0.066968 8.48644e-07 2.69973e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , as the country ||| 0.0222222 0.066968 8.48644e-07 4.73967e-08 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| , as the ||| 0.00114515 0.066968 3.39458e-06 0.000131694 2.718 ||| 0-1 ||| 3493 1.17835e+06 +en ||| , as they are in ||| 0.0769231 0.605812 8.48644e-07 2.78299e-08 2.718 ||| 0-4 ||| 13 1.17835e+06 +en ||| , as they stand , ||| 0.0833333 0.066968 8.48644e-07 1.37606e-10 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| , as they stand ||| 0.0666667 0.066968 8.48644e-07 1.15389e-09 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| , as they ||| 0.00243013 0.066968 1.69729e-06 7.00174e-06 2.718 ||| 0-1 ||| 823 1.17835e+06 +en ||| , as things stand ||| 0.0149254 0.066968 8.48644e-07 1.45296e-10 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| , as things ||| 0.0232558 0.066968 8.48644e-07 8.81653e-07 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| , as this ||| 0.00117647 0.066968 8.48644e-07 1.38606e-05 2.718 ||| 0-1 ||| 850 1.17835e+06 +en ||| , as to ||| 0.00763359 0.066968 8.48644e-07 0.000190613 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| , as was ||| 0.00175439 0.066968 8.48644e-07 6.72073e-06 2.718 ||| 0-1 ||| 570 1.17835e+06 +en ||| , as we also ||| 0.0526316 0.066968 8.48644e-07 1.22945e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| , as we are about to ||| 0.25 0.066968 8.48644e-07 4.64346e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , as we are about ||| 0.166667 0.066968 8.48644e-07 5.2257e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| , as we are ||| 0.00383142 0.066968 8.48644e-07 3.6949e-07 2.718 ||| 0-1 ||| 261 1.17835e+06 +en ||| , as we do in ||| 0.0555556 0.605812 8.48644e-07 2.19153e-08 2.718 ||| 0-4 ||| 18 1.17835e+06 +en ||| , as we do with ||| 0.0909091 0.0535436 8.48644e-07 5.53311e-10 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| , as we in ||| 0.0714286 0.605812 8.48644e-07 6.37945e-06 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| , as we would then be out ||| 0.25 0.066968 8.48644e-07 1.59767e-14 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , as we would then be ||| 0.2 0.066968 8.48644e-07 4.17103e-12 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| , as we would then ||| 0.25 0.066968 8.48644e-07 2.30152e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , as we would ||| 0.0454545 0.066968 8.48644e-07 1.42916e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| , as we ||| 0.00150527 0.066968 2.54593e-06 2.43523e-05 2.718 ||| 0-1 ||| 1993 1.17835e+06 +en ||| , as well , ||| 0.0208333 0.066968 8.48644e-07 4.05625e-07 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| , as well as , ||| 0.0384615 0.066968 8.48644e-07 4.13916e-09 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| , as well as on the basis ||| 0.5 0.22993 8.48644e-07 5.96109e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , as well as on the ||| 0.0108696 0.22993 8.48644e-07 1.00389e-10 2.718 ||| 0-4 ||| 92 1.17835e+06 +en ||| , as well as on ||| 0.00505051 0.22993 8.48644e-07 1.63522e-09 2.718 ||| 0-4 ||| 198 1.17835e+06 +en ||| , as well as that ||| 0.0238095 0.066968 8.48644e-07 5.83854e-10 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| , as well as the issue of ||| 0.0714286 0.066968 8.48644e-07 8.76678e-14 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| , as well as the issue ||| 0.0714286 0.066968 8.48644e-07 1.61261e-12 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| , as well as the ||| 0.00047081 0.066968 8.48644e-07 2.13082e-09 2.718 ||| 0-3 ||| 2124 1.17835e+06 +en ||| , as well as with ||| 0.00892857 0.0535436 8.48644e-07 2.29563e-10 2.718 ||| 0-4 ||| 112 1.17835e+06 +en ||| , as well as ||| 0.000682594 0.066968 5.09187e-06 3.47086e-08 2.718 ||| 0-1 ||| 8790 1.17835e+06 +en ||| , as well ||| 0.000791766 0.066968 5.09187e-06 3.40134e-06 2.718 ||| 0-1 ||| 7578 1.17835e+06 +en ||| , as were others . ||| 0.5 0.066968 8.48644e-07 1.13139e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , as were others ||| 0.5 0.066968 8.48644e-07 3.73521e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , as were ||| 0.0285714 0.066968 8.48644e-07 3.84281e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| , as within ||| 1 0.369196 8.48644e-07 1.34917e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , as you are expected to ||| 0.5 0.066968 8.48644e-07 4.97704e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , as you are expected ||| 0.5 0.066968 8.48644e-07 5.60111e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , as you are ||| 0.016129 0.066968 8.48644e-07 1.05086e-07 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| , as you ||| 0.000558347 0.066968 8.48644e-07 6.92602e-06 2.718 ||| 0-1 ||| 1791 1.17835e+06 +en ||| , as ||| 0.00624041 0.066968 0.000355582 0.00214514 2.718 ||| 0-1 ||| 67143 1.17835e+06 +en ||| , at 10 , 000 hectares , ||| 1 0.321886 8.48644e-07 2.8768e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at 10 , 000 hectares ||| 1 0.321886 8.48644e-07 2.41232e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at 10 , 000 ||| 1 0.321886 8.48644e-07 9.64927e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at 10 , ||| 1 0.321886 8.48644e-07 9.21611e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at 10 ||| 1 0.321886 8.48644e-07 7.72809e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at a standstill . ||| 1 0.321886 8.48644e-07 4.61154e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at a standstill ||| 0.5 0.321886 8.48644e-07 1.52246e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , at a ||| 0.00673401 0.321886 5.09187e-06 0.000211453 2.718 ||| 0-1 ||| 891 1.17835e+06 +en ||| , at all events , ||| 0.0416667 0.321886 8.48644e-07 1.95437e-10 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| , at all events ||| 0.0384615 0.321886 8.48644e-07 1.63882e-09 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| , at all ||| 0.0144928 0.321886 1.69729e-06 2.25422e-05 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| , at an ||| 0.0166667 0.321886 8.48644e-07 2.12031e-05 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| , at any rate , ||| 0.00675676 0.321886 8.48644e-07 8.63725e-11 2.718 ||| 0-1 ||| 148 1.17835e+06 +en ||| , at any rate ||| 0.00497512 0.321886 8.48644e-07 7.24269e-10 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| , at any time in the course ||| 1 0.321886 8.48644e-07 1.9635e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at any time in the ||| 1 0.321886 8.48644e-07 1.55624e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at any time in ||| 0.5 0.321886 8.48644e-07 2.53493e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , at any time ||| 0.0769231 0.321886 1.69729e-06 1.1843e-08 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| , at any ||| 0.0169492 0.321886 3.39458e-06 7.21384e-06 2.718 ||| 0-1 ||| 236 1.17835e+06 +en ||| , at best , ||| 0.0263158 0.321886 8.48644e-07 7.87921e-08 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| , at best ||| 0.0120482 0.321886 8.48644e-07 6.60704e-07 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| , at last , to taking a ||| 1 0.321886 8.48644e-07 2.07983e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at last , to taking ||| 1 0.321886 8.48644e-07 4.69215e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at last , to ||| 0.0909091 0.321886 8.48644e-07 1.10404e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| , at last , ||| 0.00930233 0.321886 1.69729e-06 1.24247e-07 2.718 ||| 0-1 ||| 215 1.17835e+06 +en ||| , at last as ||| 1 0.321886 8.48644e-07 1.06316e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at last we shall be using ||| 1 0.321886 8.48644e-07 9.10358e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at last we shall be ||| 1 0.321886 8.48644e-07 1.17163e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at last we shall ||| 1 0.321886 8.48644e-07 6.46492e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at last we ||| 0.5 0.321886 8.48644e-07 1.18275e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , at last ||| 0.0143369 0.321886 3.39458e-06 1.04186e-06 2.718 ||| 0-1 ||| 279 1.17835e+06 +en ||| , at least , ||| 0.00657895 0.321886 1.69729e-06 1.39607e-07 2.718 ||| 0-1 ||| 304 1.17835e+06 +en ||| , at least as far ||| 0.0416667 0.321886 8.48644e-07 8.15547e-12 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| , at least as ||| 0.0114943 0.321886 8.48644e-07 1.19459e-08 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| , at least at ||| 0.0212766 0.321886 8.48644e-07 4.90203e-09 2.718 ||| 0-3 ||| 47 1.17835e+06 +en ||| , at least in ||| 0.00501253 0.605812 1.69729e-06 5.65888e-08 2.718 ||| 0-3 ||| 399 1.17835e+06 +en ||| , at least inside ||| 1 0.188717 8.48644e-07 2.34305e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , at least ||| 0.00198708 0.321886 3.39458e-06 1.17066e-06 2.718 ||| 0-1 ||| 2013 1.17835e+06 +en ||| , at liberty to ||| 0.5 0.321886 8.48644e-07 4.2813e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , at liberty ||| 0.5 0.321886 8.48644e-07 4.81813e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , at long last , ||| 0.00869565 0.321886 8.48644e-07 4.20327e-11 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| , at long last ||| 0.00854701 0.321886 8.48644e-07 3.52462e-10 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| , at long ||| 0.0833333 0.321886 1.69729e-06 1.61384e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| , at short notice , taken over ||| 1 0.321886 8.48644e-07 1.35636e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at short notice , taken ||| 1 0.321886 8.48644e-07 2.81694e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , at short notice , ||| 0.5 0.321886 8.48644e-07 3.09044e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , at short notice ||| 0.333333 0.321886 8.48644e-07 2.59146e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , at short ||| 0.333333 0.321886 8.48644e-07 6.73107e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , at some point in time ||| 0.5 0.605812 8.48644e-07 3.6075e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , at some point in ||| 0.142857 0.605812 8.48644e-07 2.19742e-10 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| , at some point ||| 0.0181818 0.321886 8.48644e-07 4.54583e-09 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| , at some ||| 0.0131579 0.321886 8.48644e-07 5.19643e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| , at that time , ||| 0.0217391 0.321886 8.48644e-07 1.57106e-08 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| , at that time ||| 0.0175439 0.321886 8.48644e-07 1.3174e-07 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| , at that ||| 0.00980392 0.321886 8.48644e-07 8.02462e-05 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| , at the same time , in ||| 0.0909091 0.605812 8.48644e-07 2.23033e-12 2.718 ||| 0-6 ||| 11 1.17835e+06 +en ||| , at the same time , ||| 0.000480307 0.321886 8.48644e-07 4.61393e-11 2.718 ||| 0-1 ||| 2082 1.17835e+06 +en ||| , at the same time ||| 0.000856898 0.321886 1.69729e-06 3.86897e-10 2.718 ||| 0-1 ||| 2334 1.17835e+06 +en ||| , at the same ||| 0.00147856 0.321886 2.54593e-06 2.35669e-07 2.718 ||| 0-1 ||| 2029 1.17835e+06 +en ||| , at the ||| 0.00513573 0.321886 2.3762e-05 0.000292865 2.718 ||| 0-1 ||| 5452 1.17835e+06 +en ||| , at this point , to ||| 0.25 0.0247351 8.48644e-07 9.46162e-12 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| , at this time , ||| 0.0238095 0.321886 8.48644e-07 6.03466e-09 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| , at this time ||| 0.0108696 0.321886 8.48644e-07 5.06032e-08 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| , at this ||| 0.0029985 0.321886 1.69729e-06 3.08236e-05 2.718 ||| 0-1 ||| 667 1.17835e+06 +en ||| , at times , ||| 0.00934579 0.321886 8.48644e-07 5.77429e-08 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| , at times ||| 0.012987 0.321886 1.69729e-06 4.84198e-07 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| , at which ||| 0.00549451 0.321886 8.48644e-07 4.05229e-05 2.718 ||| 0-1 ||| 182 1.17835e+06 +en ||| , at ||| 0.0795578 0.321886 0.00074511 0.00477043 2.718 ||| 0-1 ||| 11036 1.17835e+06 +en ||| , back in early ||| 1 0.605812 8.48644e-07 2.50759e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , back in ||| 0.1375 0.605812 9.33509e-06 3.70398e-05 2.718 ||| 0-2 ||| 80 1.17835e+06 +en ||| , backing with ||| 0.5 0.0535436 8.48644e-07 2.34974e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , basically ||| 0.00833333 0.1117 8.48644e-07 2.22291e-05 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| , be allowed in ||| 0.25 0.605812 8.48644e-07 1.61579e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| , be careful in ||| 1 0.605812 8.48644e-07 2.76452e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , be in a ||| 0.0909091 0.605812 8.48644e-07 4.4238e-05 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| , be in the ||| 0.2 0.605812 8.48644e-07 6.12703e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| , be in ||| 0.0625 0.605812 1.69729e-06 0.00099802 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| , be it in the ||| 0.0322581 0.605812 8.48644e-07 1.08958e-06 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| , be it in ||| 0.0117647 0.605812 8.48644e-07 1.7748e-05 2.718 ||| 0-3 ||| 85 1.17835e+06 +en ||| , be left to ||| 0.333333 0.0247351 8.48644e-07 1.14755e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , be on ||| 0.1 0.22993 8.48644e-07 0.000179488 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| , be resolved in ||| 0.5 0.605812 8.48644e-07 2.58487e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , be ||| 0.000407 0.0001187 8.48644e-07 3.58833e-06 2.718 ||| 0-0 ||| 2457 1.17835e+06 +en ||| , bearing in ||| 0.00581395 0.605812 2.54593e-06 2.4561e-06 2.718 ||| 0-2 ||| 516 1.17835e+06 +en ||| , because it is in the ||| 0.142857 0.605812 8.48644e-07 6.19175e-10 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| , because it is in ||| 0.0434783 0.605812 8.48644e-07 1.00856e-08 2.718 ||| 0-4 ||| 23 1.17835e+06 +en ||| , because of the ||| 0.00222717 0.0022788 8.48644e-07 4.19904e-08 2.718 ||| 0-1 ||| 449 1.17835e+06 +en ||| , because of ||| 0.00115741 0.0022788 8.48644e-07 6.83974e-07 2.718 ||| 0-1 ||| 864 1.17835e+06 +en ||| , because that is ||| 0.00298507 0.0022788 8.48644e-07 6.63299e-09 2.718 ||| 0-1 ||| 335 1.17835e+06 +en ||| , because that ||| 0.00155763 0.0022788 8.48644e-07 2.11639e-07 2.718 ||| 0-1 ||| 642 1.17835e+06 +en ||| , because we are on the ||| 0.5 0.22993 8.48644e-07 3.44137e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , because we are on ||| 1 0.22993 8.48644e-07 5.60559e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , because ||| 9.85837e-05 0.0022788 2.54593e-06 1.25814e-05 2.718 ||| 0-1 ||| 30431 1.17835e+06 +en ||| , because – as ||| 0.2 0.066968 8.48644e-07 2.77023e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| , become ||| 0.00775194 0.219193 8.48644e-07 0.00045597 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| , becoming part ||| 0.333333 0.163705 8.48644e-07 1.08736e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , becoming ||| 0.0151515 0.163705 8.48644e-07 9.1206e-05 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| , been made in ||| 0.5 0.605812 8.48644e-07 3.85209e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , been on ||| 0.5 0.22993 8.48644e-07 3.30711e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , been rejected in ||| 0.5 0.605812 8.48644e-07 2.85027e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , been to ||| 1 0.0247351 8.48644e-07 1.11932e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , before ||| 0.00150739 0.0175291 4.24322e-06 4.06539e-05 2.718 ||| 0-1 ||| 3317 1.17835e+06 +en ||| , being a ||| 0.0147059 0.0015231 8.48644e-07 2.79645e-07 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| , being absorbed in ||| 1 0.605812 8.48644e-07 3.44777e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , being hailed by ||| 0.5 0.0468744 8.48644e-07 4.04194e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , being in ||| 0.0666667 0.605812 8.48644e-07 0.000156717 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| , belongs to ||| 0.0833333 0.0247351 8.48644e-07 5.06159e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| , between now and ||| 0.0294118 0.0123946 8.48644e-07 2.33282e-10 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| , between now ||| 0.025641 0.0123946 8.48644e-07 1.8624e-08 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| , birth within ||| 1 0.369196 8.48644e-07 1.42791e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , both as far as ||| 0.5 0.066968 8.48644e-07 2.47551e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , both as far ||| 1 0.066968 8.48644e-07 2.42592e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , both as ||| 0.0152672 0.066968 1.69729e-06 3.55343e-06 2.718 ||| 0-2 ||| 131 1.17835e+06 +en ||| , both at ||| 0.0103806 0.321886 2.54593e-06 7.90221e-06 2.718 ||| 0-2 ||| 289 1.17835e+06 +en ||| , both in terms of ||| 0.00555556 0.605812 8.48644e-07 5.44325e-09 2.718 ||| 0-2 ||| 180 1.17835e+06 +en ||| , both in terms ||| 0.0047619 0.605812 8.48644e-07 1.00126e-07 2.718 ||| 0-2 ||| 210 1.17835e+06 +en ||| , both in the ||| 0.00268817 0.605812 8.48644e-07 5.60033e-06 2.718 ||| 0-2 ||| 372 1.17835e+06 +en ||| , both in ||| 0.0309358 0.605812 3.39458e-05 9.12227e-05 2.718 ||| 0-2 ||| 1293 1.17835e+06 +en ||| , both of ||| 0.011976 0.0116562 1.69729e-06 2.69393e-06 2.718 ||| 0-2 ||| 167 1.17835e+06 +en ||| , both on ||| 0.0280899 0.22993 4.24322e-06 1.64058e-05 2.718 ||| 0-2 ||| 178 1.17835e+06 +en ||| , both those in ||| 0.5 0.605812 8.48644e-07 6.60544e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , both within ||| 0.00540541 0.369196 8.48644e-07 2.19013e-06 2.718 ||| 0-2 ||| 185 1.17835e+06 +en ||| , brings in ||| 0.2 0.605812 8.48644e-07 2.24133e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| , broadly speaking , ||| 0.025 0.194565 8.48644e-07 3.97713e-10 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| , broadly speaking ||| 0.0238095 0.194565 8.48644e-07 3.33499e-09 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| , broadly ||| 0.0666667 0.194565 8.48644e-07 2.90504e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| , brought about ||| 0.05 0.0401564 8.48644e-07 9.57029e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| , brought into question ||| 1 0.525896 8.48644e-07 6.11535e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , brought into ||| 0.5 0.525896 8.48644e-07 7.39194e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , built into ||| 0.5 0.525896 8.48644e-07 1.31207e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , but I pointed out at ||| 1 0.321886 8.48644e-07 4.07204e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , but a thoroughgoing revision of ||| 1 0.0116562 8.48644e-07 6.23184e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , but actually ||| 0.0149254 0.125341 8.48644e-07 1.09469e-07 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| , but also in a ||| 0.037037 0.605812 8.48644e-07 8.42198e-09 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| , but also in terms of minimizing ||| 1 0.605812 8.48644e-07 4.53496e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , but also in terms of ||| 0.0140845 0.605812 8.48644e-07 1.13374e-11 2.718 ||| 0-3 ||| 71 1.17835e+06 +en ||| , but also in terms ||| 0.0133333 0.605812 8.48644e-07 2.08546e-10 2.718 ||| 0-3 ||| 75 1.17835e+06 +en ||| , but also in ||| 0.00229095 0.605812 1.69729e-06 1.90002e-07 2.718 ||| 0-3 ||| 873 1.17835e+06 +en ||| , but also ||| 8.48464e-05 0.001622 8.48644e-07 1.05723e-07 2.718 ||| 0-1 ||| 11786 1.17835e+06 +en ||| , but certainly not ||| 0.0181818 0.001622 8.48644e-07 1.79095e-11 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| , but certainly ||| 0.00980392 0.001622 8.48644e-07 5.24575e-09 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| , but hidden in ||| 1 0.605812 8.48644e-07 2.70969e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , but in ||| 0.00155039 0.605812 2.54593e-06 3.76345e-05 2.718 ||| 0-2 ||| 1935 1.17835e+06 +en ||| , but ones where ||| 0.25 0.247783 8.48644e-07 1.53394e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| , but only together , ||| 0.5 0.001622 8.48644e-07 1.66953e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , but only together ||| 0.333333 0.001622 8.48644e-07 1.39997e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , but only ||| 0.00143266 0.001622 8.48644e-07 2.33096e-08 2.718 ||| 0-1 ||| 698 1.17835e+06 +en ||| , but rather ||| 0.000671592 0.16257 8.48644e-07 2.12345e-07 2.718 ||| 0-2 ||| 1489 1.17835e+06 +en ||| , but still in ||| 0.25 0.605812 8.48644e-07 2.83463e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| , but very many places in ||| 1 0.605812 8.48644e-07 2.37812e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , but which in ||| 0.0833333 0.605812 8.48644e-07 3.1969e-07 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| , but ||| 0.000140585 0.001622 1.1881e-05 2.09411e-05 2.718 ||| 0-1 ||| 99584 1.17835e+06 +en ||| , by , ||| 0.0833333 0.0468744 8.48644e-07 0.000120985 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| , by adopting ||| 0.00877193 0.0468744 8.48644e-07 4.96096e-08 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| , by and ||| 0.0833333 0.0468744 3.39458e-06 1.27077e-05 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| , by attending ||| 1 0.0468744 8.48644e-07 8.7248e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , by means of ||| 0.00179211 0.0116562 8.48644e-07 5.4106e-09 2.718 ||| 0-3 ||| 558 1.17835e+06 +en ||| , by the ||| 0.000851789 0.0468744 8.48644e-07 6.22827e-05 2.718 ||| 0-1 ||| 1174 1.17835e+06 +en ||| , by up to ||| 0.333333 0.0468744 8.48644e-07 3.07449e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , by up ||| 1 0.0468744 8.48644e-07 3.45999e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , by ||| 0.0113596 0.0468744 8.06212e-05 0.00101451 2.718 ||| 0-1 ||| 8363 1.17835e+06 +en ||| , can now ||| 0.0454545 0.0123946 8.48644e-07 2.09982e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| , can place in ||| 1 0.605812 8.48644e-07 2.46509e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , carved in ||| 0.5 0.605812 8.48644e-07 6.05765e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , cast over ||| 1 0.157937 8.48644e-07 1.61523e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , coincide with ||| 0.333333 0.0535436 8.48644e-07 4.0321e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , come to ||| 0.025641 0.0247351 8.48644e-07 2.84689e-06 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| , comes under ||| 0.0909091 0.205566 8.48644e-07 2.696e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| , coming as they do at ||| 1 0.321886 8.48644e-07 1.06055e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , coming into force in ||| 0.5 0.605812 8.48644e-07 1.86977e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , coming ||| 0.01 0.0026592 8.48644e-07 1.53839e-06 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| , compared with ||| 0.003861 0.0535436 8.48644e-07 5.20002e-08 2.718 ||| 0-2 ||| 259 1.17835e+06 +en ||| , compared ||| 0.00867052 0.216645 2.54593e-06 6.86549e-05 2.718 ||| 0-1 ||| 346 1.17835e+06 +en ||| , concerning both ||| 0.0909091 0.0888235 8.48644e-07 2.39405e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| , concerning ||| 0.00558659 0.0888235 3.39458e-06 0.000144525 2.718 ||| 0-1 ||| 716 1.17835e+06 +en ||| , conducting ||| 0.0625 0.0149254 8.48644e-07 1.04944e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| , confidence in ||| 0.0555556 0.605812 8.48644e-07 1.70165e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| , connected ||| 0.0555556 0.012959 8.48644e-07 1.45491e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| , consequently , on ||| 0.2 0.22993 8.48644e-07 5.26765e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| , considered as ||| 0.25 0.066968 8.48644e-07 2.30817e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , considering ||| 0.00285714 0.11575 8.48644e-07 3.46554e-05 2.718 ||| 0-1 ||| 350 1.17835e+06 +en ||| , contained in ||| 0.0322581 0.605812 8.48644e-07 3.74473e-06 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| , continuing to do ||| 0.5 0.0247351 8.48644e-07 7.12796e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , continuing to ||| 0.047619 0.0247351 8.48644e-07 2.07492e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| , contrary ||| 0.002457 0.0710493 8.48644e-07 3.14832e-05 2.718 ||| 0-1 ||| 407 1.17835e+06 +en ||| , could be of ||| 0.25 0.0116562 8.48644e-07 2.09581e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| , covering ||| 0.00823045 0.0075067 1.69729e-06 1.13292e-06 2.718 ||| 0-1 ||| 243 1.17835e+06 +en ||| , delivered in ||| 0.25 0.605812 8.48644e-07 1.8999e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , depending on ||| 0.00292398 0.22993 8.48644e-07 8.22025e-08 2.718 ||| 0-2 ||| 342 1.17835e+06 +en ||| , depending ||| 0.00684932 0.166667 8.48644e-07 1.24979e-05 2.718 ||| 0-1 ||| 146 1.17835e+06 +en ||| , designed on the assumption ||| 1 0.22993 8.48644e-07 4.79611e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , designed on the ||| 1 0.22993 8.48644e-07 4.74863e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , designed on ||| 1 0.22993 8.48644e-07 7.73496e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , despite ||| 0.000161473 0.0001187 8.48644e-07 1.18998e-08 2.718 ||| 0-0 ||| 6193 1.17835e+06 +en ||| , determine when ||| 1 0.142731 8.48644e-07 1.711e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , developments in ||| 0.03125 0.605812 8.48644e-07 1.64658e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| , did in ||| 0.5 0.605812 8.48644e-07 2.50126e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , do so ||| 0.0555556 0.0087276 8.48644e-07 2.7903e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| , does in ||| 0.111111 0.605812 8.48644e-07 3.86258e-05 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| , drawing on ||| 0.025641 0.22993 8.48644e-07 4.92224e-07 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| , drawn up under ||| 0.25 0.205566 8.48644e-07 3.26806e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| , due to ||| 0.00123305 0.0247351 8.48644e-07 9.26506e-07 2.718 ||| 0-2 ||| 811 1.17835e+06 +en ||| , during his visit , ||| 0.5 0.226251 8.48644e-07 3.64511e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , during his visit ||| 0.142857 0.226251 8.48644e-07 3.05658e-12 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| , during his ||| 0.05 0.226251 8.48644e-07 1.03613e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| , during the ||| 0.000976562 0.226251 8.48644e-07 2.1168e-05 2.718 ||| 0-1 ||| 1024 1.17835e+06 +en ||| , during ||| 0.04226 0.226251 7.80753e-05 0.000344801 2.718 ||| 0-1 ||| 2177 1.17835e+06 +en ||| , e.g. in the ||| 0.111111 0.605812 8.48644e-07 9.80438e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| , e.g. in ||| 0.0625 0.605812 8.48644e-07 1.59702e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| , effectively ||| 0.016129 0.0120168 8.48644e-07 7.87081e-06 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| , either , on ||| 1 0.22993 8.48644e-07 1.02259e-06 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , either , to ||| 0.125 0.0247351 8.48644e-07 3.46101e-07 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| , either at ||| 0.0217391 0.321886 8.48644e-07 4.13024e-06 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| , either in this Chamber ||| 0.25 0.605812 8.48644e-07 8.10236e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , either in this ||| 0.166667 0.605812 8.48644e-07 3.08075e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| , either in ||| 0.0294118 0.605812 4.24322e-06 4.76792e-05 2.718 ||| 0-2 ||| 170 1.17835e+06 +en ||| , either inside their own country or ||| 1 0.188717 8.48644e-07 1.59621e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , either inside their own country ||| 1 0.188717 8.48644e-07 1.39614e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , either inside their own ||| 1 0.188717 8.48644e-07 3.87926e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , either inside their ||| 1 0.188717 8.48644e-07 2.28824e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , either inside ||| 0.333333 0.188717 8.48644e-07 1.97415e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , either on ||| 0.03125 0.22993 8.48644e-07 8.57481e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| , either under ||| 0.333333 0.205566 8.48644e-07 5.83842e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , either ||| 0.00182983 0.0167693 1.69729e-06 1.19255e-05 2.718 ||| 0-1 ||| 1093 1.17835e+06 +en ||| , emphasising to ||| 0.333333 0.239496 8.48644e-07 1.64356e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , emphasising ||| 0.0138889 0.239496 8.48644e-07 1.84964e-05 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| , encompassing ||| 0.0222222 0.0234742 8.48644e-07 4.05466e-07 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| , engage in discussions ||| 1 0.605812 8.48644e-07 1.10802e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , engage in ||| 0.0526316 0.605812 8.48644e-07 2.67638e-06 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| , entered ||| 0.111111 0.132067 8.48644e-07 2.2563e-05 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| , entirely with ||| 1 0.0535436 8.48644e-07 9.20431e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , especially , I would say ||| 0.5 0.13965 8.48644e-07 1.28244e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , especially , I would ||| 0.5 0.13965 8.48644e-07 1.34174e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , especially , I ||| 0.5 0.13965 8.48644e-07 2.28627e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , especially , for ||| 0.0666667 0.0286209 8.48644e-07 1.3139e-08 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| , especially , give certain people any ||| 1 0.13965 8.48644e-07 7.43021e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , especially , give certain people ||| 1 0.13965 8.48644e-07 4.91351e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , especially , give certain ||| 1 0.13965 8.48644e-07 5.58227e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , especially , give ||| 1 0.13965 8.48644e-07 1.95869e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , especially , ||| 0.00626959 0.13965 1.69729e-06 3.23216e-05 2.718 ||| 0-1 ||| 319 1.17835e+06 +en ||| , especially at ||| 0.00510204 0.321886 8.48644e-07 3.83065e-07 2.718 ||| 0-2 ||| 196 1.17835e+06 +en ||| , especially in the ||| 0.000914077 0.605812 8.48644e-07 2.7148e-07 2.718 ||| 0-2 ||| 1094 1.17835e+06 +en ||| , especially in ||| 0.00217944 0.605812 5.09187e-06 4.42209e-06 2.718 ||| 0-2 ||| 2753 1.17835e+06 +en ||| , especially when ||| 0.00183486 0.142731 8.48644e-07 5.70097e-08 2.718 ||| 0-2 ||| 545 1.17835e+06 +en ||| , especially where ||| 0.00699301 0.247783 8.48644e-07 8.15563e-08 2.718 ||| 0-2 ||| 143 1.17835e+06 +en ||| , especially with regard to ||| 0.00595238 0.0535436 8.48644e-07 6.75506e-12 2.718 ||| 0-2 ||| 168 1.17835e+06 +en ||| , especially with regard ||| 0.0047619 0.0535436 8.48644e-07 7.60207e-11 2.718 ||| 0-2 ||| 210 1.17835e+06 +en ||| , especially with ||| 0.00485437 0.0965966 1.69729e-06 3.15991e-06 2.718 ||| 0-1 0-2 ||| 412 1.17835e+06 +en ||| , especially ||| 0.000467873 0.13965 5.09187e-06 0.00027103 2.718 ||| 0-1 ||| 12824 1.17835e+06 +en ||| , essentially , ||| 0.0135135 0.105697 8.48644e-07 2.98086e-06 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| , essentially ||| 0.00598802 0.105697 8.48644e-07 2.49958e-05 2.718 ||| 0-1 ||| 167 1.17835e+06 +en ||| , evaluation of ||| 0.333333 0.0116562 8.48644e-07 2.40689e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , even at the ||| 0.0243902 0.321886 8.48644e-07 1.78208e-07 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| , even at ||| 0.0193548 0.321886 2.54593e-06 2.9028e-06 2.718 ||| 0-2 ||| 155 1.17835e+06 +en ||| , even for the 15 old Member ||| 1 0.0045419 8.48644e-07 6.55237e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , even for the 15 old ||| 1 0.0045419 8.48644e-07 1.27156e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , even for the 15 ||| 1 0.0045419 8.48644e-07 1.65138e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , even for the ||| 0.037037 0.0045419 8.48644e-07 7.50629e-09 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| , even for ||| 0.00793651 0.0045419 8.48644e-07 1.22269e-07 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| , even here in ||| 0.0833333 0.605812 8.48644e-07 6.79512e-08 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| , even if we put an ||| 1 0.0178573 8.48644e-07 4.68113e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , even if we put ||| 1 0.0178573 8.48644e-07 1.05319e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , even if we ||| 0.0128205 0.0178573 8.48644e-07 9.55192e-10 2.718 ||| 0-2 ||| 78 1.17835e+06 +en ||| , even if ||| 0.000821355 0.0045419 1.69729e-06 1.32932e-08 2.718 ||| 0-1 ||| 2435 1.17835e+06 +en ||| , even in ||| 0.0165746 0.605812 1.01837e-05 3.35098e-05 2.718 ||| 0-2 ||| 724 1.17835e+06 +en ||| , even more so , in ||| 0.25 0.605812 8.48644e-07 2.07136e-11 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| , even on ||| 0.0206186 0.22993 1.69729e-06 6.02653e-06 2.718 ||| 0-2 ||| 97 1.17835e+06 +en ||| , even though as recently as Monday ||| 1 0.066968 8.48644e-07 4.9478e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , even though as recently as ||| 1 0.066968 8.48644e-07 2.249e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , even with the help of gene ||| 0.25 0.0535436 8.48644e-07 9.69256e-19 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , even with the help of ||| 0.142857 0.0535436 8.48644e-07 5.38476e-13 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| , even with the help ||| 0.142857 0.0535436 8.48644e-07 9.90501e-12 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| , even with the ||| 0.015873 0.0535436 8.48644e-07 5.19402e-08 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| , even with ||| 0.00578035 0.0535436 8.48644e-07 8.46045e-07 2.718 ||| 0-2 ||| 173 1.17835e+06 +en ||| , even worse in 1996 ||| 1 0.605812 8.48644e-07 1.20488e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , even worse in ||| 1 0.605812 8.48644e-07 1.19295e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , even ||| 0.000584881 0.0045419 3.39458e-06 1.59086e-05 2.718 ||| 0-1 ||| 6839 1.17835e+06 +en ||| , eventually , in ||| 0.333333 0.605812 8.48644e-07 1.81914e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , ever , in ||| 1 0.605812 8.48644e-07 1.234e-06 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , exactly , is ||| 1 0.0005032 8.48644e-07 4.08082e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , existing side-byside in ||| 0.5 0.605812 8.48644e-07 1.73579e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , experience in ||| 0.111111 0.605812 8.48644e-07 3.80531e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| , faced by what was ||| 1 0.0468744 8.48644e-07 2.82299e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , faced by what ||| 0.5 0.0468744 8.48644e-07 9.01051e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , faced by ||| 0.1 0.0468744 8.48644e-07 6.42186e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| , fallen victim to ||| 0.333333 0.0247351 8.48644e-07 9.11086e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , first and foremost . to ||| 1 0.0247351 8.48644e-07 2.66362e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , first and foremost ||| 0.00176056 0.138055 8.48644e-07 3.55149e-10 2.718 ||| 0-1 ||| 568 1.17835e+06 +en ||| , first and ||| 0.0193798 0.138055 8.48644e-06 9.12979e-06 2.718 ||| 0-1 ||| 516 1.17835e+06 +en ||| , first of all , ||| 0.000931099 0.138055 8.48644e-07 2.23294e-08 2.718 ||| 0-1 ||| 1074 1.17835e+06 +en ||| , first of all ||| 0.00153374 0.138055 2.54593e-06 1.87241e-07 2.718 ||| 0-1 ||| 1956 1.17835e+06 +en ||| , first of ||| 0.00295858 0.138055 2.54593e-06 3.96244e-05 2.718 ||| 0-1 ||| 1014 1.17835e+06 +en ||| , first ||| 0.00826045 0.138055 1.4427e-05 0.000728873 2.718 ||| 0-1 ||| 2058 1.17835e+06 +en ||| , firstly , ||| 0.00215054 0.295867 1.69729e-06 7.60633e-05 2.718 ||| 0-1 ||| 930 1.17835e+06 +en ||| , firstly in ||| 0.0555556 0.605812 8.48644e-07 2.77551e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| , firstly ||| 0.001321 0.295867 1.69729e-06 0.000637822 2.718 ||| 0-1 ||| 1514 1.17835e+06 +en ||| , flying in ||| 0.5 0.605812 8.48644e-07 8.53578e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , followed by ||| 0.00448431 0.0468744 8.48644e-07 7.2639e-08 2.718 ||| 0-2 ||| 223 1.17835e+06 +en ||| , following on ||| 0.0126582 0.22993 8.48644e-07 1.26572e-06 2.718 ||| 0-2 ||| 79 1.17835e+06 +en ||| , following the ||| 0.00095057 0.0089387 8.48644e-07 6.67699e-07 2.718 ||| 0-1 ||| 1052 1.17835e+06 +en ||| , following ||| 0.00112697 0.0089387 2.54593e-06 1.0876e-05 2.718 ||| 0-1 ||| 2662 1.17835e+06 +en ||| , for , in ||| 0.0526316 0.605812 8.48644e-07 5.04743e-05 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| , for example , higher ||| 1 0.0286209 8.48644e-07 2.00525e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , for example , in ||| 0.00652174 0.605812 2.54593e-06 1.46931e-08 2.718 ||| 0-4 ||| 460 1.17835e+06 +en ||| , for example , with horses , ||| 1 0.0286209 8.48644e-07 7.99084e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , for example , with horses ||| 1 0.0286209 8.48644e-07 6.70065e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , for example , with ||| 0.0144928 0.0286209 1.69729e-06 3.04575e-10 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| , for example , would ||| 0.0909091 0.0286209 8.48644e-07 2.79531e-10 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| , for example , ||| 0.000533333 0.0286209 4.24322e-06 4.76307e-08 2.718 ||| 0-1 ||| 9375 1.17835e+06 +en ||| , for example in ||| 0.00190476 0.605812 8.48644e-07 1.23208e-07 2.718 ||| 0-3 ||| 525 1.17835e+06 +en ||| , for example when ||| 0.0178571 0.142731 8.48644e-07 1.5884e-09 2.718 ||| 0-3 ||| 56 1.17835e+06 +en ||| , for example ||| 0.000560499 0.0286209 6.78915e-06 3.99404e-07 2.718 ||| 0-1 ||| 14273 1.17835e+06 +en ||| , for instance , to ||| 0.0208333 0.0286209 8.48644e-07 9.42145e-10 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| , for instance , ||| 0.00255319 0.0286209 2.54593e-06 1.06028e-08 2.718 ||| 0-1 ||| 1175 1.17835e+06 +en ||| , for instance Rwanda , and ||| 1 0.0286209 8.48644e-07 1.4609e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , for instance Rwanda , ||| 1 0.0286209 8.48644e-07 1.16631e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , for instance Rwanda ||| 1 0.0286209 8.48644e-07 9.77997e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , for instance ||| 0.00212993 0.0286209 3.39458e-06 8.89088e-08 2.718 ||| 0-1 ||| 1878 1.17835e+06 +en ||| , for it is something which is ||| 1 0.0286209 8.48644e-07 1.12686e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , for it is something which ||| 1 0.0286209 8.48644e-07 3.59546e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , for it is something ||| 1 0.0286209 8.48644e-07 4.23264e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , for it is ||| 0.00350877 0.0286209 8.48644e-07 7.64705e-07 2.718 ||| 0-1 ||| 285 1.17835e+06 +en ||| , for it ||| 0.00232019 0.0286209 8.48644e-07 2.43994e-05 2.718 ||| 0-1 ||| 431 1.17835e+06 +en ||| , for light and small ||| 1 0.0286209 8.48644e-07 3.82629e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , for light and ||| 1 0.0286209 8.48644e-07 2.98695e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , for light ||| 1 0.0286209 8.48644e-07 2.38462e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , for me , ||| 0.00917431 0.0286209 8.48644e-07 9.85176e-08 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| , for me ||| 0.00625 0.0286209 8.48644e-07 8.26111e-07 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| , for our part , ||| 0.0144928 0.0286209 8.48644e-07 2.69082e-10 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| , for our part ||| 0.0136986 0.0286209 8.48644e-07 2.25636e-09 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| , for our ||| 0.00434783 0.0286209 8.48644e-07 1.8926e-06 2.718 ||| 0-1 ||| 230 1.17835e+06 +en ||| , for some ||| 0.00653595 0.0286209 8.48644e-07 1.49457e-06 2.718 ||| 0-1 ||| 153 1.17835e+06 +en ||| , for that matter , in ||| 0.25 0.605812 8.48644e-07 8.80899e-10 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| , for that ||| 0.00223714 0.0286209 8.48644e-07 2.30801e-05 2.718 ||| 0-1 ||| 447 1.17835e+06 +en ||| , for the most part , in ||| 0.333333 0.605812 8.48644e-07 1.59667e-12 2.718 ||| 0-6 ||| 3 1.17835e+06 +en ||| , for the time being , ||| 0.0103093 0.0286209 8.48644e-07 4.69303e-11 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| , for the time being ||| 0.00934579 0.0286209 8.48644e-07 3.9353e-10 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| , for the time ||| 0.030303 0.0286209 8.48644e-07 1.38285e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| , for the ||| 0.0034 0.0286209 1.4427e-05 8.42326e-05 2.718 ||| 0-1 ||| 5000 1.17835e+06 +en ||| , for which the ||| 0.00819672 0.0011669 8.48644e-07 2.23039e-08 2.718 ||| 0-3 ||| 122 1.17835e+06 +en ||| , for ||| 0.00469386 0.0286209 0.000153605 0.00137205 2.718 ||| 0-1 ||| 38561 1.17835e+06 +en ||| , form ||| 0.0133333 0.0005197 8.48644e-07 4.88944e-07 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| , forming ||| 0.0666667 0.0288462 8.48644e-07 1.45491e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| , fortunately , trust ||| 1 0.192848 8.48644e-07 4.28623e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , from my position here in ||| 1 0.345672 8.48644e-07 5.63445e-14 2.718 ||| 0-4 0-5 ||| 1 1.17835e+06 +en ||| , from now on , ||| 0.0113636 0.22993 8.48644e-07 3.91798e-09 2.718 ||| 0-3 ||| 88 1.17835e+06 +en ||| , from now on ||| 0.00980392 0.22993 8.48644e-07 3.28539e-08 2.718 ||| 0-3 ||| 102 1.17835e+06 +en ||| , from our ||| 0.0120482 0.0308834 8.48644e-07 6.25939e-07 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| , from the ||| 0.00138985 0.0308834 1.69729e-06 2.78581e-05 2.718 ||| 0-1 ||| 1439 1.17835e+06 +en ||| , from ||| 0.00541842 0.0308834 2.29134e-05 0.000453776 2.718 ||| 0-1 ||| 4983 1.17835e+06 +en ||| , furthermore , at ||| 1 0.321886 8.48644e-07 2.62261e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , furthermore , ||| 0.00171233 0.0017817 8.48644e-07 1.8346e-07 2.718 ||| 0-1 ||| 584 1.17835e+06 +en ||| , furthermore ||| 0.00171821 0.0017817 8.48644e-07 1.53839e-06 2.718 ||| 0-1 ||| 582 1.17835e+06 +en ||| , geared ||| 0.047619 0.0209205 8.48644e-07 1.2164e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| , generally speaking ||| 0.01 0.21041 8.48644e-07 1.24651e-08 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| , generally ||| 0.0117647 0.21041 8.48644e-07 0.000108581 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| , get caught up in ||| 1 0.605812 8.48644e-07 2.27452e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , given that ||| 0.00102881 0.0546585 1.69729e-06 2.32883e-06 2.718 ||| 0-1 ||| 1944 1.17835e+06 +en ||| , given ||| 0.0062312 0.0546585 2.46107e-05 0.000138443 2.718 ||| 0-1 ||| 4654 1.17835e+06 +en ||| , gives cause for ||| 0.25 0.0286209 8.48644e-07 1.9636e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| , giving ourselves over to ||| 0.333333 0.0247351 8.48644e-07 8.09145e-14 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , giving ||| 0.00210084 0.001359 8.48644e-07 8.9441e-07 2.718 ||| 0-1 ||| 476 1.17835e+06 +en ||| , going in ||| 0.2 0.605812 8.48644e-07 4.71285e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| , growing up in ||| 1 0.605812 8.48644e-07 7.0994e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , has a nasty ring to ||| 0.333333 0.0247351 8.48644e-07 9.56033e-18 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| , has dealt with ||| 0.142857 0.0535436 8.48644e-07 7.49335e-10 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| , has given us ||| 0.1 0.0546585 8.48644e-07 2.05395e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| , has given ||| 0.0344828 0.0546585 8.48644e-07 7.12634e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| , has something in common with ||| 1 0.605812 8.48644e-07 2.31763e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , has something in common ||| 1 0.605812 8.48644e-07 3.62441e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , has something in ||| 1 0.605812 8.48644e-07 1.56901e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , has to be ||| 0.0172414 0.0247351 8.48644e-07 3.12705e-07 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| , has to ||| 0.0060241 0.0247351 8.48644e-07 1.72547e-05 2.718 ||| 0-2 ||| 166 1.17835e+06 +en ||| , have during ||| 0.5 0.226251 8.48644e-07 4.12375e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , have left their mark on ||| 1 0.22993 8.48644e-07 1.40826e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , have made here ||| 1 0.0855319 8.48644e-07 8.9635e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , have often been able to avoid ||| 1 0.0247351 8.48644e-07 5.18419e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , have often been able to ||| 1 0.0247351 8.48644e-07 1.46861e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , have on ||| 0.4 0.22993 1.69729e-06 0.000118449 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| , have taken their seats in ||| 0.333333 0.605812 8.48644e-07 6.74971e-15 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| , having the ||| 0.04 0.0011669 8.48644e-07 1.3081e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| , having ||| 0.00273598 0.0065553 3.39458e-06 9.17069e-06 2.718 ||| 0-1 ||| 1462 1.17835e+06 +en ||| , he became a ||| 1 0.137638 8.48644e-07 1.17082e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , he became ||| 0.25 0.137638 8.48644e-07 2.64139e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , he deserved ||| 0.5 0.0056615 8.48644e-07 1.79454e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , he has consistently adopted ||| 1 0.0056615 8.48644e-07 2.27845e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , he has consistently ||| 1 0.0056615 8.48644e-07 1.11689e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , he has ||| 0.00350877 0.0056615 8.48644e-07 8.39765e-08 2.718 ||| 0-1 ||| 285 1.17835e+06 +en ||| , he ||| 0.00183486 0.0056615 1.69729e-06 1.6314e-05 2.718 ||| 0-1 ||| 1090 1.17835e+06 +en ||| , held in ||| 0.0508475 0.605812 2.54593e-06 1.40482e-05 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| , here , of ||| 0.142857 0.0116562 8.48644e-07 3.93274e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| , here , on ||| 1 0.22993 8.48644e-07 2.39501e-06 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , here , was important ||| 0.5 0.0855319 8.48644e-07 5.12774e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , here , was ||| 0.5 0.0855319 8.48644e-07 1.33674e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , here , ||| 0.00840336 0.0855319 8.48644e-07 4.26665e-05 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| , here and now , in ||| 0.333333 0.605812 8.48644e-07 3.43611e-10 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| , here and ||| 0.0151515 0.0855319 8.48644e-07 4.48147e-06 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| , here in ||| 0.126638 0.605812 2.46107e-05 0.00011167 2.718 ||| 0-2 ||| 229 1.17835e+06 +en ||| , here on ||| 0.125 0.22993 8.48644e-07 2.00832e-05 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| , here or somewhere else . in ||| 1 0.605812 8.48644e-07 9.35475e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , here ||| 0.00418994 0.0855319 2.54593e-06 0.000357776 2.718 ||| 0-1 ||| 716 1.17835e+06 +en ||| , holding it up as ||| 0.125 0.066968 8.48644e-07 7.81913e-12 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| , honourable Members , on ||| 0.1 0.22993 8.48644e-07 9.09379e-12 2.718 ||| 0-4 ||| 10 1.17835e+06 +en ||| , hoping to ||| 0.0714286 0.0247351 8.48644e-07 3.85485e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| , however , and ||| 0.00826446 0.0010182 8.48644e-07 1.45356e-08 2.718 ||| 0-3 ||| 121 1.17835e+06 +en ||| , however , be left to ||| 0.5 0.0247351 8.48644e-07 1.51589e-12 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| , however , if we are ||| 1 0.0178573 8.48644e-07 3.14623e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , however , if we ||| 1 0.0178573 8.48644e-07 2.07361e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , however , if ||| 0.0285714 0.0178573 8.48644e-07 1.8266e-08 2.718 ||| 0-3 ||| 35 1.17835e+06 +en ||| , however , in ||| 0.113924 0.605812 7.6378e-06 7.2746e-06 2.718 ||| 0-3 ||| 79 1.17835e+06 +en ||| , however , that , in ||| 0.0833333 0.605812 8.48644e-07 1.45933e-08 2.718 ||| 0-5 ||| 12 1.17835e+06 +en ||| , however , to highlight two points ||| 1 0.0053256 8.48644e-07 2.71623e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , however , to highlight two ||| 1 0.0053256 8.48644e-07 2.09102e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , however , to highlight ||| 0.25 0.0053256 8.48644e-07 8.84525e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , however , to ||| 0.00826446 0.0053256 1.69729e-06 4.73008e-07 2.718 ||| 0-1 ||| 242 1.17835e+06 +en ||| , however , towards ||| 0.333333 0.0616136 8.48644e-07 1.56935e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , however , with ||| 0.02 0.0535436 8.48644e-07 1.83667e-07 2.718 ||| 0-3 ||| 50 1.17835e+06 +en ||| , however , ||| 0.000933053 0.0053256 1.35783e-05 5.32318e-06 2.718 ||| 0-1 ||| 17148 1.17835e+06 +en ||| , however many ||| 0.05 0.0053256 8.48644e-07 1.53239e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| , however ||| 0.00113854 0.0053256 1.86702e-05 4.4637e-05 2.718 ||| 0-1 ||| 19323 1.17835e+06 +en ||| , i.e. , over ||| 1 0.157937 8.48644e-07 3.34526e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , i.e. in ||| 0.0227273 0.605812 8.48644e-07 3.23258e-06 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| , identify with ||| 0.2 0.0535436 8.48644e-07 2.40536e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| , if , at ||| 0.25 0.321886 8.48644e-07 4.75369e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| , if I can put it ||| 0.037037 0.0060084 8.48644e-07 1.41213e-14 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| , if I can put ||| 0.2 0.0060084 8.48644e-07 7.94082e-13 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| , if I can ||| 0.0232558 0.0060084 8.48644e-07 7.2019e-10 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| , if I ||| 0.00169779 0.0060084 8.48644e-07 2.42138e-07 2.718 ||| 0-2 ||| 589 1.17835e+06 +en ||| , if he can , in ||| 1 0.605812 8.48644e-07 1.42441e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , if need be , on ||| 0.5 0.22993 8.48644e-07 1.63995e-11 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| , if required , by ||| 1 0.0468744 8.48644e-07 1.60438e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , if so , under ||| 0.25 0.205566 8.48644e-07 1.52518e-10 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| , if there is ||| 0.00380228 0.0178573 8.48644e-07 1.32841e-08 2.718 ||| 0-1 ||| 263 1.17835e+06 +en ||| , if there ||| 0.00787402 0.0178573 8.48644e-07 4.23857e-07 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| , if we are ||| 0.00332226 0.0178573 8.48644e-07 2.38173e-08 2.718 ||| 0-1 ||| 301 1.17835e+06 +en ||| , if we ||| 0.00121212 0.0178573 8.48644e-07 1.56975e-06 2.718 ||| 0-1 ||| 825 1.17835e+06 +en ||| , if you ||| 0.00143062 0.0178573 8.48644e-07 4.46451e-07 2.718 ||| 0-1 ||| 699 1.17835e+06 +en ||| , if ||| 0.00103788 0.0178573 1.52756e-05 0.000138276 2.718 ||| 0-1 ||| 17343 1.17835e+06 +en ||| , in Colombia ||| 0.166667 0.605812 8.48644e-07 1.9825e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| , in European ||| 0.333333 0.605812 8.48644e-07 0.000184147 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , in France ||| 0.00806452 0.605812 8.48644e-07 1.2666e-06 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| , in Vienna in ||| 1 0.605812 8.48644e-07 2.12173e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , in a country such as ||| 0.25 0.066968 8.48644e-07 1.51544e-12 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| , in a number of ||| 0.0263158 0.605812 8.48644e-07 6.56613e-08 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| , in a number ||| 0.0212766 0.605812 8.48644e-07 1.20781e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| , in a space ||| 1 0.605812 8.48644e-07 1.01058e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in a spirit ||| 0.0135135 0.605812 8.48644e-07 1.43287e-07 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| , in a state ||| 0.166667 0.605812 8.48644e-07 6.16597e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| , in a thriving democracy , ||| 1 0.605812 8.48644e-07 9.31814e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in a thriving democracy ||| 1 0.605812 8.48644e-07 7.81365e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in a thriving ||| 1 0.605812 8.48644e-07 2.6851e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in a ||| 0.0137655 0.605812 2.6308e-05 0.002441 2.718 ||| 0-1 ||| 2252 1.17835e+06 +en ||| , in accordance with ||| 0.00154919 0.605812 1.69729e-06 2.79953e-08 2.718 ||| 0-1 ||| 1291 1.17835e+06 +en ||| , in accordance ||| 0.00371402 0.605812 3.39458e-06 4.37803e-06 2.718 ||| 0-1 ||| 1077 1.17835e+06 +en ||| , in actual fact , ||| 0.00458716 0.605812 8.48644e-07 2.78368e-09 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| , in actual fact ||| 0.00913242 0.605812 1.69729e-06 2.33423e-08 2.718 ||| 0-1 ||| 219 1.17835e+06 +en ||| , in actual ||| 0.0454545 0.605812 1.69729e-06 7.96857e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| , in addition , ||| 0.00398406 0.605812 8.48644e-07 6.47536e-07 2.718 ||| 0-1 ||| 251 1.17835e+06 +en ||| , in addition ||| 0.0016142 0.605812 1.69729e-06 5.42986e-06 2.718 ||| 0-1 ||| 1239 1.17835e+06 +en ||| , in advance , in ||| 1 0.605812 8.48644e-07 4.96212e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , in agreement ||| 0.00952381 0.605812 8.48644e-07 1.01493e-05 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| , in all ||| 0.00343643 0.605812 1.69729e-06 0.000260226 2.718 ||| 0-1 ||| 582 1.17835e+06 +en ||| , in already ||| 1 0.605812 8.48644e-07 2.55027e-05 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in an attempt to do things ||| 1 0.605812 8.48644e-07 2.56416e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in an attempt to do ||| 1 0.605812 8.48644e-07 6.23882e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in an attempt to ||| 0.0188679 0.605812 8.48644e-07 1.81609e-09 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| , in an attempt ||| 0.0192308 0.605812 8.48644e-07 2.04381e-08 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| , in an ||| 0.00221729 0.605812 8.48644e-07 0.000244768 2.718 ||| 0-1 ||| 451 1.17835e+06 +en ||| , in and ||| 0.166667 0.605812 8.48644e-07 0.000689796 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| , in anticipation ||| 0.0294118 0.605812 8.48644e-07 1.76223e-07 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| , in antiquity ||| 1 0.605812 8.48644e-07 2.20278e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in any ||| 0.00224215 0.605812 1.69729e-06 8.32762e-05 2.718 ||| 0-1 ||| 892 1.17835e+06 +en ||| , in both his ||| 0.5 0.605812 8.48644e-07 2.74124e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , in both ||| 0.00588235 0.605812 8.48644e-07 9.12227e-05 2.718 ||| 0-1 ||| 170 1.17835e+06 +en ||| , in case ||| 0.0102041 0.605812 8.48644e-07 5.89189e-05 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| , in certain ||| 0.00469484 0.605812 8.48644e-07 1.56948e-05 2.718 ||| 0-1 ||| 213 1.17835e+06 +en ||| , in connection with ||| 0.00462963 0.605812 8.48644e-07 5.37369e-08 2.718 ||| 0-1 ||| 216 1.17835e+06 +en ||| , in connection ||| 0.0136986 0.605812 2.54593e-06 8.40362e-06 2.718 ||| 0-1 ||| 219 1.17835e+06 +en ||| , in contradiction ||| 0.142857 0.605812 8.48644e-07 1.21153e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| , in counterterrorism , law enforcement , ||| 1 0.605812 8.48644e-07 7.1799e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in counterterrorism , law enforcement ||| 1 0.605812 8.48644e-07 6.02064e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in counterterrorism , law ||| 1 0.605812 8.48644e-07 4.63126e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in counterterrorism , ||| 1 0.605812 8.48644e-07 2.62692e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in counterterrorism ||| 1 0.605812 8.48644e-07 2.20278e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in dealing with ||| 0.0322581 0.0535436 8.48644e-07 3.07425e-09 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| , in effect , ||| 0.00699301 0.605812 8.48644e-07 2.19085e-06 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| , in effect ||| 0.0196078 0.605812 2.54593e-06 1.83712e-05 2.718 ||| 0-1 ||| 153 1.17835e+06 +en ||| , in essence ||| 0.00757576 0.605812 8.48644e-07 6.93877e-07 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| , in every way possible ||| 0.25 0.605812 8.48644e-07 1.54916e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , in every way ||| 0.125 0.605812 8.48644e-07 1.93138e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| , in every ||| 0.00900901 0.605812 8.48644e-07 8.95982e-06 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| , in fact , in ||| 0.0625 0.605812 1.69729e-06 4.11771e-07 2.718 ||| 0-4 ||| 32 1.17835e+06 +en ||| , in fact , is to repeat ||| 1 0.605812 8.48644e-07 1.35009e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in fact , is to ||| 0.25 0.605812 8.48644e-07 5.35751e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , in fact , is ||| 0.0357143 0.605812 1.69729e-06 6.02928e-07 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| , in fact , means that very ||| 1 0.605812 8.48644e-07 7.13541e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in fact , means that ||| 1 0.605812 8.48644e-07 2.0507e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in fact , means ||| 1 0.605812 8.48644e-07 1.21909e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in fact , so ||| 1 0.605812 8.48644e-07 4.36636e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in fact , ||| 0.0129765 0.605812 2.71566e-05 1.92376e-05 2.718 ||| 0-1 ||| 2466 1.17835e+06 +en ||| , in fact . ||| 0.0263158 0.605812 8.48644e-07 4.88624e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| , in fact ||| 0.0142602 0.605812 3.39458e-05 0.000161315 2.718 ||| 0-1 ||| 2805 1.17835e+06 +en ||| , in four stages . this follows ||| 0.333333 0.605812 8.48644e-07 1.95432e-20 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , in four stages . this ||| 0.333333 0.605812 8.48644e-07 3.69437e-16 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , in four stages . ||| 0.333333 0.605812 8.48644e-07 5.7176e-14 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , in four stages ||| 0.333333 0.605812 8.48644e-07 1.88762e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , in four ||| 0.0909091 0.605812 8.48644e-07 1.25008e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| , in future , be a principle ||| 0.5 0.605812 8.48644e-07 2.14804e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , in future , be a ||| 0.5 0.605812 8.48644e-07 1.4012e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , in future , be ||| 0.04 0.605812 8.48644e-07 3.16113e-08 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| , in future , ||| 0.00996016 0.605812 4.24322e-06 1.74428e-06 2.718 ||| 0-1 ||| 502 1.17835e+06 +en ||| , in future ||| 0.00857633 0.605812 4.24322e-06 1.46265e-05 2.718 ||| 0-1 ||| 583 1.17835e+06 +en ||| , in general , ||| 0.00325733 0.605812 8.48644e-07 1.14862e-06 2.718 ||| 0-1 ||| 307 1.17835e+06 +en ||| , in general ||| 0.002849 0.605812 8.48644e-07 9.63167e-06 2.718 ||| 0-1 ||| 351 1.17835e+06 +en ||| , in his ||| 0.00290698 0.605812 8.48644e-07 1.65484e-05 2.718 ||| 0-1 ||| 344 1.17835e+06 +en ||| , in ignorance as ||| 1 0.605812 8.48644e-07 7.86733e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in ignorance ||| 0.333333 0.605812 8.48644e-07 7.70974e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , in its view , ||| 0.0833333 0.605812 8.48644e-07 8.45167e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| , in its view ||| 0.0833333 0.605812 8.48644e-07 7.08708e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| , in its ||| 0.00389105 0.605812 3.39458e-06 7.84576e-05 2.718 ||| 0-1 ||| 1028 1.17835e+06 +en ||| , in just a few ||| 0.1 0.605812 8.48644e-07 5.39891e-10 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| , in just a ||| 0.1 0.605812 8.48644e-07 3.07981e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| , in just ||| 0.037037 0.605812 8.48644e-07 6.94813e-05 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| , in keeping ||| 0.0133333 0.605812 8.48644e-07 3.23258e-06 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| , in line with your wish ||| 1 0.605812 8.48644e-07 7.81819e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in line with your ||| 0.25 0.605812 8.48644e-07 2.65293e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , in line with ||| 0.0015949 0.605812 8.48644e-07 1.03671e-07 2.718 ||| 0-1 ||| 627 1.17835e+06 +en ||| , in line ||| 0.00344828 0.605812 1.69729e-06 1.62125e-05 2.718 ||| 0-1 ||| 580 1.17835e+06 +en ||| , in many parts of ||| 0.333333 0.605812 8.48644e-07 5.99191e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , in many parts ||| 0.142857 0.605812 8.48644e-07 1.10218e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| , in many ||| 0.00171233 0.605812 8.48644e-07 1.89054e-05 2.718 ||| 0-1 ||| 584 1.17835e+06 +en ||| , in my opinion , ||| 0.000733676 0.605812 8.48644e-07 1.03643e-09 2.718 ||| 0-1 ||| 1363 1.17835e+06 +en ||| , in my opinion ||| 0.000605693 0.605812 8.48644e-07 8.6909e-09 2.718 ||| 0-1 ||| 1651 1.17835e+06 +en ||| , in my view , if ||| 0.166667 0.605812 8.48644e-07 3.18784e-12 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| , in my view , ||| 0.00196721 0.605812 2.54593e-06 3.81503e-09 2.718 ||| 0-1 ||| 1525 1.17835e+06 +en ||| , in my view ||| 0.00163488 0.605812 2.54593e-06 3.19906e-08 2.718 ||| 0-1 ||| 1835 1.17835e+06 +en ||| , in my wide definition ||| 0.166667 0.605812 8.48644e-07 4.0027e-14 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| , in my wide ||| 0.166667 0.605812 8.48644e-07 1.46619e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| , in my ||| 0.00235664 0.605812 7.6378e-06 3.54152e-05 2.718 ||| 0-1 ||| 3819 1.17835e+06 +en ||| , in one and ||| 1 0.605812 8.48644e-07 2.87507e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in one ||| 0.0232558 0.605812 3.39458e-06 0.00022953 2.718 ||| 0-1 ||| 172 1.17835e+06 +en ||| , in order to maintain ||| 0.0294118 0.605812 8.48644e-07 1.19104e-10 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| , in order to restore ||| 0.0434783 0.605812 8.48644e-07 3.57052e-11 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| , in order to show ||| 0.0833333 0.605812 8.48644e-07 3.48972e-10 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| , in order to ||| 0.000962927 0.605812 3.39458e-06 2.60622e-06 2.718 ||| 0-1 ||| 4154 1.17835e+06 +en ||| , in order ||| 0.00193174 0.605812 5.09187e-06 2.93301e-05 2.718 ||| 0-1 ||| 3106 1.17835e+06 +en ||| , in other matters , ||| 1 0.605812 8.48644e-07 1.57397e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in other matters ||| 1 0.605812 8.48644e-07 1.31984e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in other words ||| 0.000853971 0.605812 2.54593e-06 1.61234e-08 2.718 ||| 0-1 ||| 3513 1.17835e+06 +en ||| , in other ||| 0.00487013 0.605812 5.09187e-06 7.13426e-05 2.718 ||| 0-1 ||| 1232 1.17835e+06 +en ||| , in our experience ||| 0.142857 0.605812 8.48644e-07 5.24904e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| , in our opinion , ||| 0.00390625 0.605812 8.48644e-07 2.22306e-09 2.718 ||| 0-1 ||| 256 1.17835e+06 +en ||| , in our opinion ||| 0.00333333 0.605812 8.48644e-07 1.86413e-08 2.718 ||| 0-1 ||| 300 1.17835e+06 +en ||| , in our view , are ||| 0.2 0.605812 8.48644e-07 1.24157e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| , in our view , ||| 0.00294118 0.605812 8.48644e-07 8.18294e-09 2.718 ||| 0-1 ||| 340 1.17835e+06 +en ||| , in our view ||| 0.00254453 0.605812 8.48644e-07 6.86173e-08 2.718 ||| 0-1 ||| 393 1.17835e+06 +en ||| , in our ||| 0.00353669 0.605812 3.39458e-06 7.5963e-05 2.718 ||| 0-1 ||| 1131 1.17835e+06 +en ||| , in part , ||| 0.00909091 0.605812 8.48644e-07 7.82954e-06 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| , in part ||| 0.00641026 0.605812 8.48644e-07 6.56539e-05 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| , in particular , give an ||| 0.333333 0.605812 8.48644e-07 1.08858e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , in particular , give ||| 0.166667 0.605812 8.48644e-07 2.44916e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| , in particular , in ||| 0.00584795 0.605812 8.48644e-07 8.65067e-08 2.718 ||| 0-4 ||| 171 1.17835e+06 +en ||| , in particular , on ||| 0.00671141 0.605812 8.48644e-07 2.70418e-08 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| , in particular , to sing ||| 0.5 0.605812 8.48644e-07 1.14919e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , in particular , to ||| 0.00250627 0.605812 8.48644e-07 3.59122e-07 2.718 ||| 0-1 ||| 399 1.17835e+06 +en ||| , in particular , ||| 0.00247101 0.605812 1.10324e-05 4.04152e-06 2.718 ||| 0-1 ||| 5261 1.17835e+06 +en ||| , in particular in ||| 0.00493827 0.605812 1.69729e-06 7.25394e-07 2.718 ||| 0-3 ||| 405 1.17835e+06 +en ||| , in particular those which are least ||| 1 0.605812 8.48644e-07 7.76154e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in particular those which are ||| 0.5 0.605812 8.48644e-07 3.16281e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , in particular those which ||| 0.0909091 0.605812 8.48644e-07 2.08454e-10 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| , in particular those ||| 0.00584795 0.605812 8.48644e-07 2.45396e-08 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| , in particular ||| 0.00247142 0.605812 2.03675e-05 3.38898e-05 2.718 ||| 0-1 ||| 9711 1.17835e+06 +en ||| , in point of ||| 0.166667 0.605812 8.48644e-07 2.61898e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| , in point ||| 0.0434783 0.605812 8.48644e-07 4.81749e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| , in principle , ||| 0.00650759 0.605812 2.54593e-06 1.00677e-06 2.718 ||| 0-1 ||| 461 1.17835e+06 +en ||| , in principle ||| 0.00559701 0.605812 2.54593e-06 8.44216e-06 2.718 ||| 0-1 ||| 536 1.17835e+06 +en ||| , in publicity terms , ||| 1 0.605812 8.48644e-07 2.30665e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in publicity terms ||| 1 0.605812 8.48644e-07 1.93422e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in publicity ||| 1 0.605812 8.48644e-07 1.76223e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in regard to underpinning ||| 1 0.605812 8.48644e-07 4.66467e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in regard to ||| 0.0344828 0.605812 8.48644e-07 3.3319e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| , in regard ||| 0.0666667 0.605812 1.69729e-06 3.74969e-05 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| , in relation to ||| 0.00379507 0.605812 1.69729e-06 1.19056e-06 2.718 ||| 0-1 ||| 527 1.17835e+06 +en ||| , in relation ||| 0.013245 0.605812 3.39458e-06 1.33984e-05 2.718 ||| 0-1 ||| 302 1.17835e+06 +en ||| , in respect in particular of conclusions ||| 1 0.605812 8.48644e-07 4.29905e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in respect in particular of ||| 1 0.605812 8.48644e-07 1.70597e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in respect in particular ||| 1 0.605812 8.48644e-07 3.13806e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in respect in ||| 1 0.605812 8.48644e-07 5.09921e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in respect of ||| 0.0148148 0.605812 1.69729e-06 1.29512e-06 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| , in respect ||| 0.025641 0.605812 3.39458e-06 2.38231e-05 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| , in six months , ||| 0.25 0.605812 8.48644e-07 4.57866e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , in six months ||| 0.142857 0.605812 8.48644e-07 3.8394e-11 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| , in six ||| 0.1 0.605812 8.48644e-07 9.52704e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| , in so ||| 0.0392157 0.605812 1.69729e-06 0.000124991 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| , in such ||| 0.0183486 0.605812 1.69729e-06 0.000113933 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| , in support ||| 0.0357143 0.605812 8.48644e-07 1.88283e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| , in terms of the ||| 0.00625 0.605812 8.48644e-07 2.01733e-07 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| , in terms of their estimate ||| 1 0.605812 8.48644e-07 2.47572e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in terms of their ||| 0.0526316 0.605812 8.48644e-07 3.8088e-09 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| , in terms of ||| 0.00906002 0.605812 6.78915e-06 3.286e-06 2.718 ||| 0-1 ||| 883 1.17835e+06 +en ||| , in terms ||| 0.0148075 0.605812 1.27297e-05 6.04444e-05 2.718 ||| 0-1 ||| 1013 1.17835e+06 +en ||| , in that there is ||| 0.2 0.605812 8.48644e-07 8.89951e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| , in that there ||| 0.2 0.605812 8.48644e-07 2.83957e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| , in that ||| 0.00226501 0.605812 1.69729e-06 0.000926358 2.718 ||| 0-1 ||| 883 1.17835e+06 +en ||| , in the EU in ||| 1 0.605812 8.48644e-07 3.58061e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , in the Netherlands ||| 0.030303 0.605812 8.48644e-07 5.24027e-08 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| , in the case of ||| 0.00380228 0.605812 1.69729e-06 1.96642e-07 2.718 ||| 0-1 ||| 526 1.17835e+06 +en ||| , in the case ||| 0.0100167 0.605812 5.09187e-06 3.61714e-06 2.718 ||| 0-1 ||| 599 1.17835e+06 +en ||| , in the cement of ||| 1 0.605812 8.48644e-07 2.02174e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in the cement ||| 1 0.605812 8.48644e-07 3.7189e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in the course of ||| 0.0204082 0.605812 2.54593e-06 2.31894e-07 2.718 ||| 0-1 ||| 147 1.17835e+06 +en ||| , in the course ||| 0.0174419 0.605812 2.54593e-06 4.26558e-06 2.718 ||| 0-1 ||| 172 1.17835e+06 +en ||| , in the end , once ||| 1 0.605812 8.48644e-07 7.17831e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in the end , ||| 0.00357143 0.605812 8.48644e-07 1.75423e-07 2.718 ||| 0-1 ||| 280 1.17835e+06 +en ||| , in the end ||| 0.00314465 0.605812 8.48644e-07 1.47099e-06 2.718 ||| 0-1 ||| 318 1.17835e+06 +en ||| , in the explanatory statements , ||| 1 0.605812 8.48644e-07 9.28924e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in the explanatory statements ||| 1 0.605812 8.48644e-07 7.78941e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in the explanatory ||| 0.047619 0.605812 8.48644e-07 2.43419e-08 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| , in the fact ||| 0.0666667 0.605812 8.48644e-07 9.90344e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| , in the field ||| 0.00588235 0.605812 8.48644e-07 4.93938e-07 2.718 ||| 0-1 ||| 170 1.17835e+06 +en ||| , in the final analysis , ||| 0.00689655 0.605812 8.48644e-07 1.03977e-12 2.718 ||| 0-1 ||| 145 1.17835e+06 +en ||| , in the final analysis ||| 0.00675676 0.605812 8.48644e-07 8.71893e-12 2.718 ||| 0-1 ||| 148 1.17835e+06 +en ||| , in the final ||| 0.00793651 0.605812 8.48644e-07 2.57957e-07 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| , in the form ||| 0.00361011 0.605812 8.48644e-07 1.53895e-06 2.718 ||| 0-1 ||| 277 1.17835e+06 +en ||| , in the future , ||| 0.00378788 0.605812 8.48644e-07 1.07084e-07 2.718 ||| 0-1 ||| 264 1.17835e+06 +en ||| , in the future ||| 0.00271003 0.605812 8.48644e-07 8.97946e-07 2.718 ||| 0-1 ||| 369 1.17835e+06 +en ||| , in the general run ||| 1 0.605812 8.48644e-07 6.27966e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in the general ||| 0.333333 0.605812 8.48644e-07 5.91305e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , in the grand order of ||| 0.5 0.605812 8.48644e-07 4.89446e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , in the grand order ||| 0.5 0.605812 8.48644e-07 9.00312e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , in the grand ||| 0.25 0.605812 8.48644e-07 1.69041e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , in the interests of ||| 0.00390625 0.605812 8.48644e-07 2.51983e-08 2.718 ||| 0-1 ||| 256 1.17835e+06 +en ||| , in the interests ||| 0.00431034 0.605812 8.48644e-07 4.6351e-07 2.718 ||| 0-1 ||| 232 1.17835e+06 +en ||| , in the past , ||| 0.00819672 0.605812 8.48644e-07 5.16472e-08 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| , in the past ||| 0.00632911 0.605812 8.48644e-07 4.33083e-07 2.718 ||| 0-1 ||| 158 1.17835e+06 +en ||| , in the space of ||| 0.0526316 0.605812 8.48644e-07 7.60911e-09 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| , in the space ||| 0.05 0.605812 8.48644e-07 1.39966e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| , in the year ||| 0.0277778 0.605812 8.48644e-07 8.43176e-07 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| , in the ||| 0.0149989 0.605812 0.000170578 0.00338082 2.718 ||| 0-1 ||| 13401 1.17835e+06 +en ||| , in theory , ||| 0.0149254 0.605812 8.48644e-07 4.99115e-08 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| , in theory ||| 0.0136986 0.605812 8.48644e-07 4.18529e-07 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| , in this House ||| 0.00507614 0.605812 8.48644e-07 8.89922e-08 2.718 ||| 0-1 ||| 197 1.17835e+06 +en ||| , in this case , ||| 0.00292398 0.605812 8.48644e-07 4.54001e-08 2.718 ||| 0-1 ||| 342 1.17835e+06 +en ||| , in this case ||| 0.00130548 0.605812 8.48644e-07 3.80699e-07 2.718 ||| 0-1 ||| 766 1.17835e+06 +en ||| , in this connection , ||| 0.0135135 0.605812 8.48644e-07 6.47543e-09 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| , in this connection ||| 0.0125 0.605812 8.48644e-07 5.42991e-08 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| , in this report , he has ||| 1 0.0056615 8.48644e-07 5.67732e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , in this report , he ||| 1 0.0056615 8.48644e-07 1.10293e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , in this ||| 0.00198347 0.605812 5.09187e-06 0.000355826 2.718 ||| 0-1 ||| 3025 1.17835e+06 +en ||| , in those ||| 0.0142857 0.605812 8.48644e-07 3.98759e-05 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| , in time , ||| 0.0135135 0.605812 8.48644e-07 1.07815e-05 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| , in time ||| 0.0111111 0.605812 8.48644e-07 9.04077e-05 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| , in transition ||| 1 0.605812 8.48644e-07 5.34175e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in turn , to ||| 0.0833333 0.605812 8.48644e-07 1.30834e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| , in turn , ||| 0.00249377 0.605812 8.48644e-07 1.47239e-06 2.718 ||| 0-1 ||| 401 1.17835e+06 +en ||| , in turn ||| 0.00505051 0.605812 1.69729e-06 1.23466e-05 2.718 ||| 0-1 ||| 396 1.17835e+06 +en ||| , in various ||| 0.0465116 0.605812 1.69729e-06 8.50274e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| , in very ||| 0.1 0.605812 8.48644e-07 0.000191615 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| , in view ||| 0.00345622 0.605812 2.54593e-06 4.97443e-05 2.718 ||| 0-1 ||| 868 1.17835e+06 +en ||| , in what ||| 0.0243902 0.605812 1.69729e-06 7.72681e-05 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| , in which you ||| 0.0434783 0.605812 8.48644e-07 1.51037e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| , in which ||| 0.00150659 0.605812 3.39458e-06 0.000467794 2.718 ||| 0-1 ||| 2655 1.17835e+06 +en ||| , in writing . ( es ) ||| 1 0.605812 8.48644e-07 9.64499e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in writing . ( es ||| 1 0.605812 8.48644e-07 6.71049e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , in writing . ( ||| 0.25 0.605812 8.48644e-07 3.51334e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , in writing . ||| 0.008 0.605812 8.48644e-07 3.64304e-08 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| , in writing ||| 0.00671141 0.605812 8.48644e-07 1.20272e-05 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| , in your ||| 0.00364964 0.605812 8.48644e-07 1.40923e-05 2.718 ||| 0-1 ||| 274 1.17835e+06 +en ||| , in ||| 0.104117 0.605812 0.00720669 0.0550696 2.718 ||| 0-1 ||| 81562 1.17835e+06 +en ||| , inasmuch ||| 0.0263158 0.279817 8.48644e-07 4.94907e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| , including at ||| 0.0140845 0.321886 8.48644e-07 4.98033e-07 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| , including in ||| 0.0060423 0.605812 3.39458e-06 5.74926e-06 2.718 ||| 0-2 ||| 662 1.17835e+06 +en ||| , including over 300 ||| 0.333333 0.157937 8.48644e-07 2.89364e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , including over ||| 0.0625 0.157937 8.48644e-07 4.98904e-08 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| , including voting ||| 0.5 0.0081975 8.48644e-07 7.70667e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , including ||| 0.000181598 0.0013311 2.54593e-06 2.02733e-06 2.718 ||| 0-1 ||| 16520 1.17835e+06 +en ||| , incorporated in ||| 0.2 0.605812 8.48644e-07 1.11241e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| , indeed , at ||| 0.111111 0.321886 8.48644e-07 4.31166e-07 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| , indeed , being in ||| 1 0.605812 8.48644e-07 1.41646e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , indeed , in ||| 0.027027 0.605812 8.48644e-07 4.97736e-06 2.718 ||| 0-3 ||| 37 1.17835e+06 +en ||| , indeed , on ||| 0.125 0.22993 8.48644e-07 8.95147e-07 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| , indeed , ||| 0.00153022 0.0919982 1.69729e-06 2.3187e-05 2.718 ||| 0-1 ||| 1307 1.17835e+06 +en ||| , indeed in ||| 0.2 0.605812 8.48644e-07 4.17372e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| , indeed ||| 0.00314861 0.0919982 4.24322e-06 0.000194433 2.718 ||| 0-1 ||| 1588 1.17835e+06 +en ||| , inevitably , largely be ||| 0.25 0.247761 8.48644e-07 2.11805e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| , inevitably , largely ||| 0.25 0.247761 8.48644e-07 1.16872e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| , insofar as ||| 0.00930233 0.219067 1.69729e-06 7.06395e-07 2.718 ||| 0-1 0-2 ||| 215 1.17835e+06 +en ||| , insofar ||| 0.0180723 0.371166 2.54593e-06 3.92706e-05 2.718 ||| 0-1 ||| 166 1.17835e+06 +en ||| , instead , ||| 0.00588235 0.340662 8.48644e-07 4.79797e-05 2.718 ||| 0-1 ||| 170 1.17835e+06 +en ||| , instead ||| 0.0021645 0.340662 2.54593e-06 0.00040233 2.718 ||| 0-1 ||| 1386 1.17835e+06 +en ||| , inter alia within ||| 1 0.369196 8.48644e-07 2.37033e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , into carnivores , like ||| 0.333333 0.525896 8.48644e-07 2.23642e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , into carnivores , ||| 0.333333 0.525896 8.48644e-07 1.25932e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , into carnivores ||| 0.333333 0.525896 8.48644e-07 1.05599e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , into ||| 0.12959 0.525896 5.09187e-05 0.00263998 2.718 ||| 0-1 ||| 463 1.17835e+06 +en ||| , invoking ||| 0.111111 0.0238095 8.48644e-07 3.21988e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| , involves ||| 0.0136986 0.0273327 8.48644e-07 7.05988e-06 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| , involving ||| 0.00398406 0.0505311 1.69729e-06 2.54847e-05 2.718 ||| 0-1 ||| 502 1.17835e+06 +en ||| , is in ||| 0.00684932 0.605812 1.69729e-06 0.00172594 2.718 ||| 0-2 ||| 292 1.17835e+06 +en ||| , is set to ||| 0.111111 0.0247351 8.48644e-07 6.13952e-08 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| , is something over ||| 1 0.157937 8.48644e-07 8.28988e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , is something to be ||| 0.125 0.0247351 8.48644e-07 1.05383e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| , is something to ||| 0.0909091 0.0247351 8.48644e-07 5.8149e-08 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| , is still relevant today ||| 0.5 0.0398284 8.48644e-07 3.6543e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , is to be brought ||| 1 0.0247351 8.48644e-07 5.33102e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , is to be ||| 0.0114943 0.0247351 8.48644e-07 1.90393e-06 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| , is to take place in ||| 0.333333 0.605812 8.48644e-07 3.71609e-10 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| , is to ||| 0.00147493 0.0247351 8.48644e-07 0.000105057 2.718 ||| 0-2 ||| 678 1.17835e+06 +en ||| , is where ||| 0.0285714 0.247783 8.48644e-07 3.18314e-05 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| , is written from ||| 1 0.0308834 8.48644e-07 7.11092e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , is ||| 5.32935e-05 0.0005032 8.48644e-07 3.4083e-05 2.718 ||| 0-1 ||| 18764 1.17835e+06 +en ||| , it did manage to ||| 0.333333 0.0247351 8.48644e-07 1.20754e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , it does ||| 0.00769231 0.0080472 8.48644e-07 2.30685e-07 2.718 ||| 0-1 ||| 130 1.17835e+06 +en ||| , it has been presented ||| 1 0.0080472 8.48644e-07 4.45471e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , it has been ||| 0.00162866 0.0080472 8.48644e-07 5.65318e-09 2.718 ||| 0-1 ||| 614 1.17835e+06 +en ||| , it has ||| 0.000535045 0.0080472 8.48644e-07 1.69297e-06 2.718 ||| 0-1 ||| 1869 1.17835e+06 +en ||| , it intends to ||| 0.117647 0.0247351 1.69729e-06 1.13855e-09 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| , it is also ||| 0.00100402 0.0080472 8.48644e-07 5.20402e-08 2.718 ||| 0-1 ||| 996 1.17835e+06 +en ||| , it is in ||| 0.026738 0.605812 4.24322e-06 3.06928e-05 2.718 ||| 0-3 ||| 187 1.17835e+06 +en ||| , it is on ||| 0.0333333 0.22993 8.48644e-07 5.5199e-06 2.718 ||| 0-3 ||| 30 1.17835e+06 +en ||| , it is sufficient ||| 0.142857 0.0080472 8.48644e-07 5.00962e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| , it is ||| 0.000175062 0.0080472 3.39458e-06 1.03079e-05 2.718 ||| 0-1 ||| 22849 1.17835e+06 +en ||| , it only ||| 0.0263158 0.0080472 8.48644e-07 3.6609e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| , it seems , in ||| 1 0.605812 8.48644e-07 1.40379e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , it seems to me , in ||| 0.5 0.605812 8.48644e-07 7.51048e-13 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| , it should be placed on ||| 1 0.22993 8.48644e-07 1.77072e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , it took ||| 0.0232558 0.0080472 8.48644e-07 4.85116e-08 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| , it was actually in ||| 1 0.605812 8.48644e-07 1.26655e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , it was ||| 0.000520562 0.0080472 8.48644e-07 1.03042e-06 2.718 ||| 0-1 ||| 1921 1.17835e+06 +en ||| , it will be in ||| 0.0909091 0.605812 8.48644e-07 1.53541e-07 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| , it will ||| 0.00126904 0.0080472 8.48644e-07 2.84532e-06 2.718 ||| 0-1 ||| 788 1.17835e+06 +en ||| , it ||| 0.00112324 0.0080472 1.52756e-05 0.000328893 2.718 ||| 0-1 ||| 16025 1.17835e+06 +en ||| , join forces more resolutely in ||| 1 0.605812 8.48644e-07 9.96328e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , join in emphasising ||| 0.5 0.605812 8.48644e-07 9.27812e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , join in ||| 0.5 0.605812 8.48644e-07 2.57726e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , joint responsibility for ||| 1 0.0286209 8.48644e-07 1.03165e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , just as there are ||| 0.0769231 0.066968 8.48644e-07 1.25877e-10 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| , just as there ||| 0.05 0.066968 8.48644e-07 8.29631e-09 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| , just as ||| 0.00134589 0.066968 1.69729e-06 2.70653e-06 2.718 ||| 0-2 ||| 1486 1.17835e+06 +en ||| , just out of interest , on ||| 1 0.22993 8.48644e-07 3.48477e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , just ||| 0.00148441 0.001725 2.54593e-06 6.24895e-06 2.718 ||| 0-1 ||| 2021 1.17835e+06 +en ||| , keep it in ||| 1 0.605812 8.48644e-07 1.52577e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , largely be ||| 0.25 0.247761 8.48644e-07 1.831e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , largely created ||| 1 0.247761 8.48644e-07 1.06488e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , largely ||| 0.0420168 0.247761 4.24322e-06 0.000101033 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| , leading to ||| 0.00323625 0.0247351 8.48644e-07 2.91963e-07 2.718 ||| 0-2 ||| 309 1.17835e+06 +en ||| , learning and speaking ||| 0.5 0.0538225 8.48644e-07 4.87424e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , leaving them with ||| 0.5 0.0535436 8.48644e-07 8.87633e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , lends ||| 0.166667 0.0081967 8.48644e-07 8.34783e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| , let us consider ||| 0.0625 0.0126304 8.48644e-07 1.69992e-11 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| , let us hold ||| 0.5 0.0046586 8.48644e-07 4.72416e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , let us ||| 0.00192678 0.0046586 8.48644e-07 2.71192e-08 2.718 ||| 0-1 ||| 519 1.17835e+06 +en ||| , let ||| 0.00110988 0.0046586 8.48644e-07 9.4092e-06 2.718 ||| 0-1 ||| 901 1.17835e+06 +en ||| , like others before it , ||| 0.5 0.0175291 8.48644e-07 1.48824e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , like others before it ||| 0.5 0.0175291 8.48644e-07 1.24795e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , like others before ||| 0.333333 0.0175291 8.48644e-07 7.01758e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , like to ||| 0.00649351 0.0247351 8.48644e-07 5.9529e-06 2.718 ||| 0-2 ||| 154 1.17835e+06 +en ||| , listening to ||| 0.0140845 0.0247351 8.48644e-07 4.22358e-08 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| , loaded onto ||| 1 0.233333 8.48644e-07 1.6704e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , made in ||| 0.04 0.605812 8.48644e-07 0.00011536 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| , made with ||| 0.25 0.0535436 8.48644e-07 2.91257e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , mainly by a ||| 1 0.0468744 8.48644e-07 2.10455e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , mainly by ||| 0.03125 0.0468744 8.48644e-07 4.74791e-08 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| , making things easier for ||| 1 0.0286209 8.48644e-07 1.51422e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , managed , as ||| 1 0.066968 8.48644e-07 1.43514e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , measured by ||| 0.142857 0.0468744 8.48644e-07 1.20727e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| , meeting in ||| 0.04 0.605812 8.48644e-07 6.91674e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| , more generally , a common ||| 1 0.21041 8.48644e-07 3.02788e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , more generally , a ||| 1 0.21041 8.48644e-07 1.31077e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , more generally , ||| 0.00680272 0.21041 8.48644e-07 2.95713e-08 2.718 ||| 0-2 ||| 147 1.17835e+06 +en ||| , more generally ||| 0.00699301 0.21041 8.48644e-07 2.47967e-07 2.718 ||| 0-2 ||| 143 1.17835e+06 +en ||| , more or less ||| 0.0163934 0.00076645 8.48644e-07 6.6689e-15 2.718 ||| 0-0 0-3 ||| 61 1.17835e+06 +en ||| , more specifically with ||| 0.166667 0.148651 8.48644e-07 1.19449e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| , more specifically ||| 0.00564972 0.148651 8.48644e-07 1.86799e-07 2.718 ||| 0-2 ||| 177 1.17835e+06 +en ||| , more to ||| 0.0243902 0.0247351 8.48644e-07 7.65507e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| , more ||| 0.000506329 0.0042952 1.69729e-06 3.9676e-05 2.718 ||| 0-1 ||| 3950 1.17835e+06 +en ||| , moreover , a quantified commitment to ||| 1 0.0247351 8.48644e-07 1.17787e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , moreover , by ||| 0.142857 0.0468744 8.48644e-07 1.31027e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| , moreover , for ||| 0.125 0.0286209 8.48644e-07 1.77204e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| , moreover , in ||| 0.0555556 0.605812 8.48644e-07 7.11239e-07 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| , moreover , on ||| 0.2 0.22993 8.48644e-07 1.27912e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| , moreover , ||| 0.000784929 0.0002086 8.48644e-07 1.99104e-08 2.718 ||| 0-1 ||| 1274 1.17835e+06 +en ||| , moreover ||| 0.000766871 0.0002086 8.48644e-07 1.66957e-07 2.718 ||| 0-1 ||| 1304 1.17835e+06 +en ||| , most of ||| 0.00165837 0.00588745 8.48644e-07 1.16699e-09 2.718 ||| 0-0 0-2 ||| 603 1.17835e+06 +en ||| , most ||| 0.000654022 0.0027412 8.48644e-07 9.65963e-06 2.718 ||| 0-1 ||| 1529 1.17835e+06 +en ||| , mostly , totally ||| 0.25 0.14495 8.48644e-07 7.85788e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , mostly , ||| 0.142857 0.14495 8.48644e-07 1.81895e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| , mostly ||| 0.00598802 0.14495 8.48644e-07 1.52527e-05 2.718 ||| 0-1 ||| 167 1.17835e+06 +en ||| , much to their credit ||| 0.5 0.0247351 8.48644e-07 1.4039e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , much to their ||| 1 0.0247351 8.48644e-07 3.89973e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , much to ||| 0.0357143 0.0247351 8.48644e-07 3.36445e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| , namely a maximum of ||| 1 0.0116562 8.48644e-07 2.07348e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , namely by ||| 0.0185185 0.0468744 8.48644e-07 1.62119e-07 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| , namely in ||| 0.0272727 0.605812 2.54593e-06 8.80012e-06 2.718 ||| 0-2 ||| 110 1.17835e+06 +en ||| , namely ||| 0.000959898 0.0422783 7.6378e-06 4.09044e-05 2.718 ||| 0-1 ||| 9376 1.17835e+06 +en ||| , negotiations are continuing in ||| 0.5 0.605812 8.48644e-07 2.86533e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , never to be seen again ||| 0.25 0.0247351 8.48644e-07 4.25957e-16 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , never to be seen ||| 0.333333 0.0247351 8.48644e-07 7.36567e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , never to be ||| 0.25 0.0247351 8.48644e-07 3.49913e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , never to ||| 0.2 0.0247351 8.48644e-07 1.93078e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| , no matter in ||| 1 0.605812 8.48644e-07 4.44736e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , no such thing as a ||| 1 0.066968 8.48644e-07 5.58764e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , no such thing as ||| 0.333333 0.066968 8.48644e-07 1.26059e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , nonetheless , in ||| 1 0.605812 8.48644e-07 5.01085e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , not in ||| 0.0247934 0.605812 5.09187e-06 0.000188013 2.718 ||| 0-2 ||| 242 1.17835e+06 +en ||| , not just in ||| 0.00316456 0.605812 8.48644e-07 2.37216e-07 2.718 ||| 0-3 ||| 316 1.17835e+06 +en ||| , not least , in ||| 0.0909091 0.605812 8.48644e-07 5.50222e-09 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| , not least as ||| 0.0163934 0.066968 8.48644e-07 1.79724e-09 2.718 ||| 0-3 ||| 61 1.17835e+06 +en ||| , not least in ||| 0.00268817 0.605812 8.48644e-07 4.61384e-08 2.718 ||| 0-3 ||| 372 1.17835e+06 +en ||| , not only in the ||| 0.00456621 0.605812 8.48644e-07 1.28479e-08 2.718 ||| 0-3 ||| 219 1.17835e+06 +en ||| , not only in ||| 0.00538358 0.605812 3.39458e-06 2.09277e-07 2.718 ||| 0-3 ||| 743 1.17835e+06 +en ||| , not only ||| 0.000305623 0.0008293 8.48644e-07 2.41193e-08 2.718 ||| 0-1 ||| 3272 1.17835e+06 +en ||| , not to ||| 0.000969932 0.0127822 8.48644e-07 6.09067e-07 2.718 ||| 0-1 0-2 ||| 1031 1.17835e+06 +en ||| , not ||| 0.000325775 0.0008293 4.24322e-06 2.16686e-05 2.718 ||| 0-1 ||| 15348 1.17835e+06 +en ||| , now and in ||| 0.0263158 0.605812 8.48644e-07 1.42091e-06 2.718 ||| 0-3 ||| 38 1.17835e+06 +en ||| , now in ||| 0.0833333 0.605812 8.48644e-07 0.000113438 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| , now ||| 0.0015873 0.0123946 1.69729e-06 7.05988e-05 2.718 ||| 0-1 ||| 1260 1.17835e+06 +en ||| , nowadays , ||| 0.0344828 0.221613 8.48644e-07 2.7391e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| , nowadays ||| 0.0232558 0.221613 8.48644e-07 2.29685e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| , obviously , in ||| 0.1 0.605812 8.48644e-07 4.34756e-07 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| , occasionally ||| 0.0196078 0.178626 8.48644e-07 9.49267e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| , of ' ||| 0.111111 0.0116562 8.48644e-07 5.5861e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| , of course , acted in ||| 1 0.605812 8.48644e-07 8.73889e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , of course , also means that ||| 1 0.0116562 8.48644e-07 1.31689e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , of course , also means ||| 1 0.0116562 8.48644e-07 7.82854e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , of course , also ||| 0.00555556 0.0116562 8.48644e-07 1.23537e-09 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| , of course , at ||| 0.0833333 0.321886 1.69729e-06 3.90212e-08 2.718 ||| 0-4 ||| 24 1.17835e+06 +en ||| , of course , have ||| 0.00970874 0.0116562 8.48644e-07 2.92651e-09 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| , of course , in the ||| 0.0217391 0.605812 8.48644e-07 2.76545e-08 2.718 ||| 0-4 ||| 46 1.17835e+06 +en ||| , of course , in ||| 0.0555556 0.605812 6.78915e-06 4.50458e-07 2.718 ||| 0-4 ||| 144 1.17835e+06 +en ||| , of course , largely created ||| 1 0.247761 8.48644e-07 8.71054e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , of course , largely ||| 0.5 0.247761 8.48644e-07 8.26427e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , of course , where ||| 0.125 0.247783 8.48644e-07 8.30778e-09 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| , of course , with ||| 0.0217391 0.0535436 1.69729e-06 1.1373e-08 2.718 ||| 0-4 ||| 92 1.17835e+06 +en ||| , of course , ||| 0.000780869 0.0116562 6.78915e-06 2.44695e-07 2.718 ||| 0-1 ||| 10245 1.17835e+06 +en ||| , of course ||| 0.00082675 0.0116562 7.6378e-06 2.05187e-06 2.718 ||| 0-1 ||| 10886 1.17835e+06 +en ||| , of energy , of ||| 1 0.0116562 8.48644e-07 9.37309e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , of the ' ||| 0.2 0.0116562 8.48644e-07 3.42941e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| , of the ||| 0.000413736 0.0116562 8.48644e-07 9.984e-05 2.718 ||| 0-1 ||| 2417 1.17835e+06 +en ||| , of ||| 0.00702913 0.0116562 7.04375e-05 0.00162628 2.718 ||| 0-1 ||| 11808 1.17835e+06 +en ||| , offering ||| 0.0114943 0.0016009 1.69729e-06 2.38509e-07 2.718 ||| 0-1 ||| 174 1.17835e+06 +en ||| , on ' ||| 0.142857 0.22993 8.48644e-07 3.40189e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| , on a more ||| 0.111111 0.22993 8.48644e-07 1.00254e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| , on a new ||| 0.0666667 0.22993 8.48644e-07 2.6239e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| , on a number of ||| 0.0967742 0.22993 2.54593e-06 1.18088e-08 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| , on a number ||| 0.114286 0.22993 3.39458e-06 2.17217e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| , on a voluntary ||| 0.166667 0.22993 8.48644e-07 5.83868e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| , on a ||| 0.0126812 0.22993 1.1881e-05 0.000438999 2.718 ||| 0-1 ||| 1104 1.17835e+06 +en ||| , on behalf of ||| 0.000211327 0.22993 8.48644e-07 1.71486e-07 2.718 ||| 0-1 ||| 4732 1.17835e+06 +en ||| , on behalf ||| 0.000297177 0.22993 1.69729e-06 3.1544e-06 2.718 ||| 0-1 ||| 6730 1.17835e+06 +en ||| , on finding ||| 0.5 0.22993 8.48644e-07 5.27879e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , on grounds of ||| 0.0625 0.22993 8.48644e-07 5.63722e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| , on grounds ||| 0.0588235 0.22993 8.48644e-07 1.03694e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| , on how the proposal for a ||| 0.5 0.22993 8.48644e-07 1.48253e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , on how the proposal for ||| 0.5 0.22993 8.48644e-07 3.34462e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , on how the proposal ||| 0.5 0.22993 8.48644e-07 4.35174e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , on how the ||| 0.111111 0.22993 8.48644e-07 2.17914e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| , on how ||| 0.0119048 0.22993 8.48644e-07 3.54956e-06 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| , on its ||| 0.00900901 0.22993 8.48644e-07 1.41101e-05 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| , on so many ||| 0.5 0.22993 8.48644e-07 7.71701e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , on so ||| 1 0.22993 8.48644e-07 2.24789e-05 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , on such ||| 0.0909091 0.22993 8.48644e-07 2.04902e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| , on the basis ||| 0.000993049 0.22993 8.48644e-07 3.61042e-07 2.718 ||| 0-1 ||| 1007 1.17835e+06 +en ||| , on the one ||| 0.000877193 0.22993 8.48644e-07 2.53422e-06 2.718 ||| 0-1 ||| 1140 1.17835e+06 +en ||| , on the other , in ||| 0.166667 0.605812 8.48644e-07 3.49483e-09 2.718 ||| 0-5 ||| 6 1.17835e+06 +en ||| , on the other hand , ||| 0.00187617 0.22993 1.69729e-06 3.72548e-11 2.718 ||| 0-1 ||| 1066 1.17835e+06 +en ||| , on the other hand ||| 0.00188857 0.22993 1.69729e-06 3.12397e-10 2.718 ||| 0-1 ||| 1059 1.17835e+06 +en ||| , on the other ||| 0.00275482 0.22993 3.39458e-06 7.87689e-07 2.718 ||| 0-1 ||| 1452 1.17835e+06 +en ||| , on the subject ||| 0.00543478 0.22993 8.48644e-07 3.28209e-07 2.718 ||| 0-1 ||| 184 1.17835e+06 +en ||| , on the ||| 0.00753722 0.22993 6.78915e-05 0.000608019 2.718 ||| 0-1 ||| 10614 1.17835e+06 +en ||| , on this ||| 0.00210084 0.22993 8.48644e-07 6.39931e-05 2.718 ||| 0-1 ||| 476 1.17835e+06 +en ||| , on ||| 0.0348359 0.22993 0.000891925 0.00990391 2.718 ||| 0-1 ||| 30170 1.17835e+06 +en ||| , once more to ||| 0.5 0.0247351 8.48644e-07 3.13245e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , once ||| 0.000881834 0.0058612 8.48644e-07 1.28199e-05 2.718 ||| 0-1 ||| 1134 1.17835e+06 +en ||| , one can say , during ||| 0.5 0.226251 8.48644e-07 4.87218e-13 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| , one in ||| 0.0157895 0.605812 2.54593e-06 0.00022953 2.718 ||| 0-2 ||| 190 1.17835e+06 +en ||| , one that is ||| 0.00990099 0.0017499 8.48644e-07 1.62823e-08 2.718 ||| 0-2 ||| 101 1.17835e+06 +en ||| , one that ||| 0.00193798 0.0017499 8.48644e-07 5.1952e-07 2.718 ||| 0-2 ||| 516 1.17835e+06 +en ||| , one which is in ||| 0.333333 0.605812 8.48644e-07 6.11078e-08 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , one ||| 0.000564228 0.0025338 2.54593e-06 1.93908e-05 2.718 ||| 0-1 ||| 5317 1.17835e+06 +en ||| , onto ||| 0.214286 0.233333 2.54593e-06 2.38629e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| , operating from ||| 0.5 0.0308834 8.48644e-07 2.04199e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , or , in ||| 0.0185185 0.605812 8.48644e-07 7.5084e-06 2.718 ||| 0-3 ||| 54 1.17835e+06 +en ||| , or SMEs , in ||| 1 0.605812 8.48644e-07 9.16025e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , or at ||| 0.00176991 0.321886 8.48644e-07 5.45403e-06 2.718 ||| 0-2 ||| 565 1.17835e+06 +en ||| , or hope , ||| 1 0.0005295 8.48644e-07 1.7723e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , or hope ||| 1 0.0005295 8.48644e-07 1.48615e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , or hybrid force , into ||| 1 0.525896 8.48644e-07 4.28838e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , or less in ||| 1 0.605812 8.48644e-07 1.0716e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , or the wider ||| 0.5 0.0186861 8.48644e-07 3.64112e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , outside the Union . to ||| 1 0.0247351 8.48644e-07 1.38631e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , over a period of ||| 0.0588235 0.157937 8.48644e-07 2.00946e-10 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| , over a period ||| 0.0526316 0.157937 8.48644e-07 3.69631e-09 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| , over a ||| 0.0185185 0.157937 8.48644e-07 2.11823e-05 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| , over against ||| 0.5 0.15596 8.48644e-07 2.77116e-06 2.718 ||| 0-1 0-2 ||| 2 1.17835e+06 +en ||| , over the ||| 0.0017762 0.157937 8.48644e-07 2.93378e-05 2.718 ||| 0-1 ||| 563 1.17835e+06 +en ||| , over time ||| 0.025 0.157937 8.48644e-07 7.84531e-07 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| , over ||| 0.0535834 0.157937 6.78915e-05 0.000477877 2.718 ||| 0-1 ||| 1493 1.17835e+06 +en ||| , paragraph ||| 0.00369004 0.0058027 8.48644e-07 3.89963e-06 2.718 ||| 0-1 ||| 271 1.17835e+06 +en ||| , part of ||| 0.00862069 0.0062823 8.48644e-07 3.43144e-08 2.718 ||| 0-1 0-2 ||| 116 1.17835e+06 +en ||| , particularly as ||| 0.0030722 0.125156 1.69729e-06 9.57977e-06 2.718 ||| 0-1 0-2 ||| 651 1.17835e+06 +en ||| , particularly at ||| 0.0104167 0.321886 1.69729e-06 8.51521e-07 2.718 ||| 0-2 ||| 192 1.17835e+06 +en ||| , particularly for ||| 0.00371747 0.183344 1.69729e-06 4.09316e-06 2.718 ||| 0-1 ||| 538 1.17835e+06 +en ||| , particularly in ||| 0.00475135 0.605812 1.27297e-05 9.82992e-06 2.718 ||| 0-2 ||| 3157 1.17835e+06 +en ||| , particularly with ||| 0.00320513 0.0535436 1.69729e-06 2.48183e-07 2.718 ||| 0-2 ||| 624 1.17835e+06 +en ||| , particularly ||| 0.000654986 0.183344 6.78915e-06 0.000532568 2.718 ||| 0-1 ||| 12214 1.17835e+06 +en ||| , partly for the ||| 0.333333 0.294632 8.48644e-07 4.64444e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , partly for ||| 0.0434783 0.294632 8.48644e-07 7.56525e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| , partly through ||| 0.0238095 0.294632 8.48644e-07 4.53086e-08 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| , partly ||| 0.00819672 0.294632 3.39458e-06 9.84328e-05 2.718 ||| 0-1 ||| 488 1.17835e+06 +en ||| , pay off in ||| 1 0.605812 8.48644e-07 3.20959e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , perhaps within ||| 0.25 0.369196 8.48644e-07 2.04535e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , perpetrated by ||| 0.1 0.0468744 8.48644e-07 1.60293e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| , place in ||| 1 0.605812 8.48644e-07 8.28797e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , placed one after the other ||| 1 0.0144723 8.48644e-07 1.31358e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , placed one after the ||| 1 0.0144723 8.48644e-07 1.01396e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , placed one after ||| 1 0.0144723 8.48644e-07 1.65161e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , placing it on ||| 0.25 0.22993 8.48644e-07 4.19173e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| , placing on ||| 0.166667 0.22993 8.48644e-07 2.35713e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| , pointed out ||| 0.0192308 0.0120599 8.48644e-07 3.02645e-09 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| , positive ||| 0.00869565 0.0001187 8.48644e-07 1.8018e-08 2.718 ||| 0-0 ||| 115 1.17835e+06 +en ||| , poured over ||| 1 0.157937 8.48644e-07 8.60179e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , precisely as ||| 0.0666667 0.066968 8.48644e-07 2.11511e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| , precisely in ||| 0.0147059 0.605812 8.48644e-07 5.42986e-06 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| , prepared in accordance with ||| 1 0.0535436 8.48644e-07 2.05128e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , preparing for ||| 0.25 0.0286209 8.48644e-07 2.03063e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , previously , during ||| 1 0.226251 8.48644e-07 1.40628e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , primarily ||| 0.0027027 0.0814715 8.48644e-07 2.9289e-05 2.718 ||| 0-1 ||| 370 1.17835e+06 +en ||| , provided that ||| 0.00143062 0.0017499 8.48644e-07 2.85686e-08 2.718 ||| 0-2 ||| 699 1.17835e+06 +en ||| , put forward in ||| 0.2 0.605812 8.48644e-07 3.37844e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| , putting both at great risk ||| 1 0.321886 8.48644e-07 4.0659e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , putting both at great ||| 1 0.321886 8.48644e-07 3.47513e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , putting both at ||| 1 0.321886 8.48644e-07 8.84257e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , putting it in ||| 0.333333 0.605812 8.48644e-07 1.09585e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , quite ||| 0.00168067 0.0068312 8.48644e-07 1.07091e-05 2.718 ||| 0-1 ||| 595 1.17835e+06 +en ||| , rather , reinforced ||| 0.5 0.16257 8.48644e-07 2.40855e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , rather , to have ||| 0.5 0.0247351 8.48644e-07 1.46391e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , rather , to ||| 0.0769231 0.0247351 8.48644e-07 1.22403e-07 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| , rather , ||| 0.00507614 0.16257 8.48644e-07 3.70546e-05 2.718 ||| 0-1 ||| 197 1.17835e+06 +en ||| , rather than in ||| 0.0238095 0.605812 8.48644e-07 5.15143e-09 2.718 ||| 0-3 ||| 42 1.17835e+06 +en ||| , rather than less , ||| 0.166667 0.16257 8.48644e-07 1.92669e-12 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| , rather than less ||| 0.111111 0.16257 8.48644e-07 1.61561e-11 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| , rather than ||| 0.000822707 0.16257 1.69729e-06 9.49244e-08 2.718 ||| 0-1 ||| 2431 1.17835e+06 +en ||| , rather ||| 0.00421941 0.16257 9.33509e-06 0.000310718 2.718 ||| 0-1 ||| 2607 1.17835e+06 +en ||| , referred to by Mr Perry , ||| 1 0.0468744 8.48644e-07 4.70132e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , referred to by Mr Perry ||| 1 0.0468744 8.48644e-07 3.94225e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , referred to by Mr ||| 0.166667 0.0468744 8.48644e-07 5.63179e-12 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| , referred to by ||| 0.0769231 0.0468744 8.48644e-07 8.62713e-09 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| , referring in this context to ||| 1 0.0247351 8.48644e-07 2.68768e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , reflecting the general ||| 0.25 0.0011669 8.48644e-07 1.49377e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , reflecting the ||| 0.0163934 0.0011669 8.48644e-07 8.54072e-10 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| , regarding ||| 0.00648298 0.140669 3.39458e-06 0.000225749 2.718 ||| 0-1 ||| 617 1.17835e+06 +en ||| , related to ||| 0.0333333 0.0247351 8.48644e-07 2.19559e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| , remarked upon ||| 1 0.114601 8.48644e-07 3.79473e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , right across ||| 0.0555556 0.274879 8.48644e-07 1.57991e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| , right on ||| 0.142857 0.22993 8.48644e-07 6.38703e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| , right ||| 0.00438596 0.0071334 8.48644e-07 2.13466e-05 2.718 ||| 0-1 ||| 228 1.17835e+06 +en ||| , rightly , to ||| 0.333333 0.0247351 8.48644e-07 2.11466e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , role in ||| 0.5 0.605812 8.48644e-07 1.22254e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , roughly ||| 0.0322581 0.0508021 8.48644e-07 1.53839e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| , safe in ||| 0.25 0.605812 8.48644e-07 1.78425e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , said actually ||| 0.333333 0.125341 8.48644e-07 6.58832e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , secondly , also in ||| 1 0.605812 8.48644e-07 1.1936e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , secondly , because – as ||| 1 0.066968 8.48644e-07 1.18931e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , see in ||| 0.333333 0.605812 8.48644e-07 3.8802e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , sending ||| 0.015873 0.0006969 8.48644e-07 8.34783e-08 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| , sends it in ||| 1 0.605812 8.48644e-07 8.42209e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , set out in ||| 0.0555556 0.605812 8.48644e-07 1.23272e-07 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| , should , in ||| 0.1 0.605812 8.48644e-07 2.90997e-05 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| , should apply as they stand during ||| 0.5 0.226251 8.48644e-07 1.20677e-18 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| , should be included in ||| 0.166667 0.605812 8.48644e-07 4.15247e-10 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| , should in ||| 0.142857 0.605812 8.48644e-07 0.000244013 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| , simply to pass on ||| 1 0.22993 8.48644e-07 1.116e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , since , in ||| 0.0322581 0.605812 8.48644e-07 8.91183e-07 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| , since they feature in ||| 1 0.605812 8.48644e-07 6.58575e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , since this makes ||| 0.142857 0.0075235 8.48644e-07 2.27141e-11 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| , since this ||| 0.00246914 0.0075235 8.48644e-07 1.33691e-07 2.718 ||| 0-1 ||| 405 1.17835e+06 +en ||| , since ||| 0.000484496 0.0075235 4.24322e-06 2.06907e-05 2.718 ||| 0-1 ||| 10320 1.17835e+06 +en ||| , so as ||| 0.00213447 0.066968 1.69729e-06 4.86883e-06 2.718 ||| 0-2 ||| 937 1.17835e+06 +en ||| , so that at ||| 0.0526316 0.321886 8.48644e-07 1.82135e-07 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| , so that in ||| 0.0229885 0.605812 1.69729e-06 2.10256e-06 2.718 ||| 0-3 ||| 87 1.17835e+06 +en ||| , so that we can ||| 0.00140252 0.0054082 8.48644e-07 3.06587e-11 2.718 ||| 0-3 ||| 713 1.17835e+06 +en ||| , so that we ||| 0.0023753 0.0054082 8.48644e-07 1.03079e-08 2.718 ||| 0-3 ||| 421 1.17835e+06 +en ||| , so to speak , in ||| 0.25 0.605812 8.48644e-07 1.79205e-10 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| , so to speak , ||| 0.0052356 0.0247351 8.48644e-07 1.22759e-10 2.718 ||| 0-2 ||| 191 1.17835e+06 +en ||| , so to speak ||| 0.00326797 0.0247351 8.48644e-07 1.02938e-09 2.718 ||| 0-2 ||| 306 1.17835e+06 +en ||| , so to ||| 0.00934579 0.0247351 8.48644e-07 7.60814e-06 2.718 ||| 0-2 ||| 107 1.17835e+06 +en ||| , so ||| 0.000635445 0.0087276 8.48644e-06 8.12244e-05 2.718 ||| 0-1 ||| 15737 1.17835e+06 +en ||| , social solidarity in ||| 1 0.605812 8.48644e-07 1.49612e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , something suggested by Germany ||| 0.166667 0.0468744 8.48644e-07 2.87965e-16 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| , something suggested by ||| 0.166667 0.0468744 8.48644e-07 1.11183e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| , speaking in ||| 0.0625 0.605812 8.48644e-07 6.32199e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| , speaking on ||| 0.0126582 0.22993 8.48644e-07 1.13697e-06 2.718 ||| 0-2 ||| 79 1.17835e+06 +en ||| , specifically ||| 0.000844595 0.148651 8.48644e-07 8.17968e-05 2.718 ||| 0-1 ||| 1184 1.17835e+06 +en ||| , spend on ||| 0.5 0.22993 8.48644e-07 2.99098e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , spread throughout ||| 0.166667 0.309047 8.48644e-07 9.82453e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| , stakes in companies ||| 1 0.605812 8.48644e-07 1.54635e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , stakes in ||| 1 0.605812 8.48644e-07 2.20278e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , standing in ||| 0.166667 0.605812 8.48644e-07 2.91318e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| , subject to ||| 0.00554017 0.0247351 1.69729e-06 1.80943e-06 2.718 ||| 0-2 ||| 361 1.17835e+06 +en ||| , subsequently , ||| 0.0196078 0.0293803 8.48644e-07 5.31891e-07 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| , subsequently ||| 0.0147059 0.0293803 8.48644e-07 4.46013e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| , such as ||| 0.000697134 0.066968 7.6378e-06 4.43808e-06 2.718 ||| 0-2 ||| 12910 1.17835e+06 +en ||| , supplies of fresh ||| 0.333333 0.0116562 8.48644e-07 9.00144e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , supplies of ||| 0.2 0.0116562 8.48644e-07 3.33387e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| , tabled in ||| 0.0833333 0.605812 8.48644e-07 4.49918e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| , taken as a ||| 0.0416667 0.066968 8.48644e-07 8.66701e-08 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| , taken as ||| 0.08 0.066968 1.69729e-06 1.9553e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| , taken at ||| 0.166667 0.321886 8.48644e-07 4.34824e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| , taken in ||| 0.0833333 0.605812 8.48644e-07 5.01959e-05 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| , taken to ||| 0.333333 0.0247351 8.48644e-07 3.05539e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , taken ||| 0.00564972 0.0042106 8.48644e-07 1.06256e-05 2.718 ||| 0-1 ||| 177 1.17835e+06 +en ||| , takes place in ||| 0.2 0.605812 8.48644e-07 1.07081e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| , takes us in ||| 0.5 0.605812 8.48644e-07 2.05068e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , taking into account ||| 0.00191939 0.525896 8.48644e-07 3.22572e-10 2.718 ||| 0-2 ||| 521 1.17835e+06 +en ||| , taking into ||| 0.00376648 0.525896 1.69729e-06 1.12199e-06 2.718 ||| 0-2 ||| 531 1.17835e+06 +en ||| , taking part in ||| 0.166667 0.605812 8.48644e-07 2.79029e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| , taking ||| 0.00231125 0.0153333 2.54593e-06 2.05357e-05 2.718 ||| 0-1 ||| 1298 1.17835e+06 +en ||| , than in ||| 0.047619 0.605812 8.48644e-07 1.68238e-05 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| , thanks to ||| 0.00118765 0.0247351 8.48644e-07 2.71516e-07 2.718 ||| 0-2 ||| 842 1.17835e+06 +en ||| , that , in ||| 0.0147059 0.605812 8.48644e-07 0.000110473 2.718 ||| 0-3 ||| 68 1.17835e+06 +en ||| , that , to ||| 0.111111 0.0247351 8.48644e-07 6.72439e-06 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| , that are actually ||| 0.5 0.125341 8.48644e-07 4.08833e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , that at ||| 0.0540541 0.321886 1.69729e-06 8.02462e-05 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| , that has something to do with ||| 1 0.0535436 8.48644e-07 2.03412e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , that in ||| 0.0175439 0.605812 4.24322e-06 0.000926358 2.718 ||| 0-2 ||| 285 1.17835e+06 +en ||| , that is , ||| 0.00123993 0.0017499 1.69729e-06 4.6587e-07 2.718 ||| 0-1 ||| 1613 1.17835e+06 +en ||| , that is in ||| 0.05 0.605812 1.69729e-06 2.90331e-05 2.718 ||| 0-3 ||| 40 1.17835e+06 +en ||| , that is to say ||| 0.000522466 0.0017499 8.48644e-07 3.31783e-10 2.718 ||| 0-1 ||| 1914 1.17835e+06 +en ||| , that is to ||| 0.00280899 0.0017499 8.48644e-07 3.47126e-07 2.718 ||| 0-1 ||| 356 1.17835e+06 +en ||| , that is ||| 0.000888889 0.0017499 4.24322e-06 3.90651e-06 2.718 ||| 0-1 ||| 5625 1.17835e+06 +en ||| , that it is in fact necessary ||| 1 0.605812 8.48644e-07 3.89141e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , that it is in fact ||| 0.2 0.605812 8.48644e-07 1.5124e-09 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| , that it is in ||| 0.0625 0.605812 8.48644e-07 5.16301e-07 2.718 ||| 0-4 ||| 16 1.17835e+06 +en ||| , that it is ||| 0.00184843 0.0080472 8.48644e-07 1.73395e-07 2.718 ||| 0-2 ||| 541 1.17835e+06 +en ||| , that it ||| 0.0019802 0.0080472 8.48644e-07 5.5325e-06 2.718 ||| 0-2 ||| 505 1.17835e+06 +en ||| , that of the ||| 0.00609756 0.0017499 8.48644e-07 4.16003e-07 2.718 ||| 0-1 ||| 164 1.17835e+06 +en ||| , that of ||| 0.00740741 0.0116562 3.39458e-06 2.73566e-05 2.718 ||| 0-2 ||| 540 1.17835e+06 +en ||| , that on ||| 0.0222222 0.22993 8.48644e-07 0.0001666 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| , that should not be ||| 0.5 0.0017499 8.48644e-07 3.41728e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , that should not ||| 0.0526316 0.0017499 8.48644e-07 1.88561e-09 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| , that should ||| 0.0192308 0.0017499 8.48644e-07 5.52302e-07 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| , that they are suffocating , as ||| 0.5 0.066968 8.48644e-07 1.4918e-16 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| , that we in ||| 0.0666667 0.605812 8.48644e-07 1.05163e-05 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| , that we shall in ||| 1 0.605812 8.48644e-07 5.74821e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , that we want to ||| 0.0416667 0.0247351 8.48644e-07 2.99256e-10 2.718 ||| 0-4 ||| 24 1.17835e+06 +en ||| , that ||| 0.000486348 0.0017499 1.1881e-05 0.000124645 2.718 ||| 0-1 ||| 28786 1.17835e+06 +en ||| , the Commission must come up with ||| 1 0.0535436 8.48644e-07 2.23207e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , the Group of ||| 0.00204082 0.0116562 8.48644e-07 3.2478e-08 2.718 ||| 0-3 ||| 490 1.17835e+06 +en ||| , the Members in ||| 0.333333 0.605812 8.48644e-07 4.98671e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , the Parliament , into ||| 1 0.525896 8.48644e-07 1.10942e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , the common currency , by ||| 1 0.0468744 8.48644e-07 6.41692e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , the creation ||| 0.00276243 0.0011669 8.48644e-07 1.58516e-08 2.718 ||| 0-1 ||| 362 1.17835e+06 +en ||| , the music and the dancing tell ||| 0.5 0.0066116 8.48644e-07 3.284e-21 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , the music and the dancing ||| 0.5 0.0066116 8.48644e-07 3.3442e-17 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , the music and the ||| 0.5 0.0066116 8.48644e-07 1.52009e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , the music and ||| 0.166667 0.0066116 8.48644e-07 2.47605e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| , the music ||| 0.166667 0.0066116 8.48644e-07 1.97674e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| , the only sure way for ||| 1 0.0286209 8.48644e-07 3.52071e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , the staff of ||| 0.125 0.0116562 8.48644e-07 4.02355e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| , the ||| 5.3531e-05 0.0011669 7.6378e-06 0.000341629 2.718 ||| 0-1 ||| 168127 1.17835e+06 +en ||| , then , in ||| 0.0740741 0.605812 1.69729e-06 1.0576e-05 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| , then , on ||| 0.25 0.22993 8.48644e-07 1.90202e-06 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| , then , ||| 0.00181598 0.013351 2.54593e-06 4.77137e-06 2.718 ||| 0-1 ||| 1652 1.17835e+06 +en ||| , then a ||| 0.0285714 0.013351 8.48644e-07 1.77347e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| , then drive through ||| 0.333333 0.0366102 8.48644e-07 5.45417e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , then in fact ||| 0.25 0.605812 8.48644e-07 2.59782e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| , then in ||| 0.0441176 0.605812 2.54593e-06 8.8684e-05 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| , then ||| 0.00135208 0.013351 8.48644e-06 4.001e-05 2.718 ||| 0-1 ||| 7396 1.17835e+06 +en ||| , theoretically , retire ||| 0.333333 0.264249 8.48644e-07 5.42842e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , theoretically , ||| 0.0833333 0.264249 8.48644e-07 4.93492e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| , theoretically ||| 0.0833333 0.264249 8.48644e-07 4.13814e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| , there and ||| 0.0833333 0.0010182 8.48644e-07 3.37294e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| , there are ||| 0.000746269 0.0117359 2.54593e-06 2.02908e-06 2.718 ||| 0-1 ||| 4020 1.17835e+06 +en ||| , there is , in ||| 0.0833333 0.605812 8.48644e-07 6.3092e-07 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| , there is ||| 0.000601052 0.0117359 3.39458e-06 4.19131e-06 2.718 ||| 0-1 ||| 6655 1.17835e+06 +en ||| , there must be ||| 0.00246914 0.0117359 8.48644e-07 3.74594e-09 2.718 ||| 0-1 ||| 405 1.17835e+06 +en ||| , there must ||| 0.00304878 0.0117359 8.48644e-07 2.06697e-07 2.718 ||| 0-1 ||| 328 1.17835e+06 +en ||| , there ||| 0.00191498 0.0117359 8.48644e-06 0.000133732 2.718 ||| 0-1 ||| 5222 1.17835e+06 +en ||| , thereby in ||| 1 0.605812 8.48644e-07 2.41755e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , therefore , be in a ||| 1 0.605812 8.48644e-07 4.41198e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , therefore , be in ||| 0.333333 0.605812 8.48644e-07 9.95353e-08 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , therefore , that ||| 0.00251256 0.0017499 8.48644e-07 1.24312e-08 2.718 ||| 0-3 ||| 398 1.17835e+06 +en ||| , therefore , to ||| 0.00966184 0.0247351 1.69729e-06 3.34309e-07 2.718 ||| 0-3 ||| 207 1.17835e+06 +en ||| , therefore , upon ||| 0.5 0.114601 8.48644e-07 1.05127e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , therefore , ||| 0.000523195 0.0081305 2.54593e-06 1.23487e-05 2.718 ||| 0-1 ||| 5734 1.17835e+06 +en ||| , therefore ||| 0.00119822 0.0081305 5.94051e-06 0.000103549 2.718 ||| 0-1 ||| 5842 1.17835e+06 +en ||| , these are at ||| 0.5 0.321886 8.48644e-07 7.50656e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , these direct ||| 1 0.0014765 8.48644e-07 6.16146e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , these ||| 0.00030021 0.0014765 8.48644e-07 1.24979e-05 2.718 ||| 0-1 ||| 3331 1.17835e+06 +en ||| , they are being abandoned in Canada ||| 1 0.605812 8.48644e-07 4.88956e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , they are being abandoned in ||| 1 0.605812 8.48644e-07 9.77912e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , they are helping to ||| 0.5 0.0247351 8.48644e-07 6.27502e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , they can ||| 0.00396825 0.0036976 8.48644e-07 1.03785e-07 2.718 ||| 0-1 ||| 252 1.17835e+06 +en ||| , they will know for ||| 1 0.0286209 8.48644e-07 9.99576e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , they ||| 0.000592242 0.0036976 1.69729e-06 3.48939e-05 2.718 ||| 0-1 ||| 3377 1.17835e+06 +en ||| , thinking ||| 0.0192308 0.0455702 8.48644e-07 1.7447e-05 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| , this is in ||| 0.05 0.605812 8.48644e-07 1.1152e-05 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| , this is when ||| 0.142857 0.142731 8.48644e-07 1.43772e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| , this will mean , in ||| 1 0.605812 8.48644e-07 9.46029e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , this ||| 0.00010337 0.0013296 1.69729e-06 5.68845e-05 2.718 ||| 0-1 ||| 19348 1.17835e+06 +en ||| , those on ||| 0.0769231 0.22993 8.48644e-07 7.17142e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| , those taking ||| 0.5 0.0153333 8.48644e-07 1.48699e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , though , in ||| 0.142857 0.605812 1.69729e-06 1.63066e-06 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| , though , on ||| 0.1 0.22993 8.48644e-07 2.93264e-07 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| , through which ||| 0.0116279 0.0366102 8.48644e-07 9.52645e-07 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| , through ||| 0.00544508 0.0366102 1.95188e-05 0.000112147 2.718 ||| 0-1 ||| 4224 1.17835e+06 +en ||| , throughout ||| 0.0190476 0.309047 5.09187e-06 0.000345934 2.718 ||| 0-1 ||| 315 1.17835e+06 +en ||| , to a ||| 0.026178 0.0247351 1.27297e-05 0.000148582 2.718 ||| 0-1 ||| 573 1.17835e+06 +en ||| , to act ||| 0.0147059 0.0247351 8.48644e-07 5.69513e-07 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| , to be brought to ||| 0.333333 0.0247351 8.48644e-07 1.51145e-09 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , to be given to him ||| 1 0.0247351 8.48644e-07 1.18772e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , to be given to ||| 0.25 0.0247351 8.48644e-07 3.70467e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , to be given ||| 0.0714286 0.0247351 8.48644e-07 4.16919e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| , to be in a ||| 0.333333 0.605812 8.48644e-07 3.93091e-06 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , to be in ||| 0.0666667 0.605812 8.48644e-07 8.86823e-05 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| , to be taken at ||| 0.5 0.321886 8.48644e-07 7.00227e-09 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , to be ||| 0.0012012 0.0247351 1.69729e-06 6.07488e-05 2.718 ||| 0-1 ||| 1665 1.17835e+06 +en ||| , to become ||| 0.0144928 0.121964 8.48644e-07 1.28166e-05 2.718 ||| 0-1 0-2 ||| 69 1.17835e+06 +en ||| , to bring ||| 0.00558659 0.0247351 8.48644e-07 1.04349e-06 2.718 ||| 0-1 ||| 179 1.17835e+06 +en ||| , to come ||| 0.0144928 0.0247351 8.48644e-07 2.84689e-06 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| , to conduct ||| 0.0434783 0.0247351 8.48644e-07 2.01458e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| , to cover ||| 0.03125 0.0247351 8.48644e-07 2.61795e-07 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| , to deal with these problems , ||| 1 0.0535436 8.48644e-07 8.70681e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , to deal with these problems ||| 0.5 0.0535436 8.48644e-07 7.30102e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , to deal with these ||| 0.5 0.0535436 8.48644e-07 5.4404e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , to deal with ||| 0.0119048 0.0535436 8.48644e-07 5.24579e-08 2.718 ||| 0-3 ||| 84 1.17835e+06 +en ||| , to do ||| 0.00584795 0.0247351 8.48644e-07 1.15153e-05 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| , to express , in ||| 1 0.605812 8.48644e-07 5.92312e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , to give ||| 0.00515464 0.0247351 1.69729e-06 2.03134e-06 2.718 ||| 0-1 ||| 388 1.17835e+06 +en ||| , to have ||| 0.00502513 0.0247351 1.69729e-06 4.00898e-05 2.718 ||| 0-1 ||| 398 1.17835e+06 +en ||| , to its conducting a ||| 1 0.0247351 8.48644e-07 2.58256e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , to its conducting ||| 1 0.0247351 8.48644e-07 5.82631e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , to its ||| 0.0147059 0.0247351 8.48644e-07 4.77566e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| , to look at things in ||| 1 0.605812 8.48644e-07 2.4549e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , to lose all confidence in ||| 0.5 0.605812 8.48644e-07 2.36502e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| , to meet the people ||| 0.333333 0.0011669 8.48644e-07 3.24913e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , to meet the ||| 0.0344828 0.0011669 8.48644e-07 3.69135e-09 2.718 ||| 0-3 ||| 29 1.17835e+06 +en ||| , to mention ||| 0.0123457 0.0247351 8.48644e-07 3.25819e-07 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| , to offer , in ||| 0.5 0.605812 8.48644e-07 6.67591e-08 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , to participate in decision making whenever ||| 1 0.605812 8.48644e-07 4.35318e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , to participate in decision making ||| 1 0.605812 8.48644e-07 7.13637e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , to participate in decision ||| 1 0.605812 8.48644e-07 1.85505e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , to participate in ||| 0.0357143 0.605812 8.48644e-07 1.17931e-07 2.718 ||| 0-3 ||| 28 1.17835e+06 +en ||| , to perhaps ||| 0.142857 0.0247351 8.48644e-07 5.18562e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| , to pick or to ||| 0.5 0.0247351 8.48644e-07 6.74269e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , to present a majority ||| 1 0.0247351 8.48644e-07 2.19156e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , to present a ||| 0.0666667 0.0247351 8.48644e-07 5.43811e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| , to present ||| 0.012987 0.0247351 8.48644e-07 1.22685e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| , to put it in ||| 0.0588235 0.605812 8.48644e-07 9.59483e-08 2.718 ||| 0-4 ||| 17 1.17835e+06 +en ||| , to put it ||| 0.00546448 0.0080472 8.48644e-07 3.22233e-08 2.718 ||| 0-3 ||| 183 1.17835e+06 +en ||| , to sit on ||| 1 0.22993 8.48644e-07 3.32657e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , to some extent , in ||| 0.111111 0.605812 8.48644e-07 1.22176e-10 2.718 ||| 0-5 ||| 9 1.17835e+06 +en ||| , to take hold on ||| 1 0.22993 8.48644e-07 2.46819e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , to the ||| 0.0130603 0.0247351 3.73403e-05 0.000205788 2.718 ||| 0-1 ||| 3369 1.17835e+06 +en ||| , to think ||| 0.0222222 0.0247351 8.48644e-07 1.28216e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| , to ||| 0.00895258 0.0247351 0.000274112 0.00335205 2.718 ||| 0-1 ||| 36079 1.17835e+06 +en ||| , today , at a standstill . ||| 1 0.321886 8.48644e-07 2.48191e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , today , at a standstill ||| 1 0.321886 8.48644e-07 8.19383e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , today , at a ||| 1 0.321886 8.48644e-07 1.13803e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , today , at ||| 0.0666667 0.321886 8.48644e-07 2.56743e-07 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| , today , ||| 0.00122399 0.0398284 8.48644e-07 1.7157e-05 2.718 ||| 0-1 ||| 817 1.17835e+06 +en ||| , today ||| 0.00058072 0.0398284 8.48644e-07 0.000143869 2.718 ||| 0-1 ||| 1722 1.17835e+06 +en ||| , together in ||| 0.5 0.605812 8.48644e-07 3.30748e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , together with my ||| 0.0131579 0.002535 8.48644e-07 6.48073e-11 2.718 ||| 0-3 ||| 76 1.17835e+06 +en ||| , too , as regards ||| 1 0.066968 8.48644e-07 4.87436e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , too , as ||| 0.0714286 0.066968 8.48644e-07 3.48169e-07 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| , too , in ||| 0.0882353 0.605812 2.54593e-06 8.9381e-06 2.718 ||| 0-3 ||| 34 1.17835e+06 +en ||| , too , on ||| 0.125 0.22993 8.48644e-07 1.60746e-06 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| , too , when in ||| 1 0.605812 8.48644e-07 4.46816e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , too , within ||| 0.5 0.369196 8.48644e-07 2.14591e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , too , ||| 0.000720202 0.0011116 1.69729e-06 3.68342e-07 2.718 ||| 0-1 ||| 2777 1.17835e+06 +en ||| , too . we can do so ||| 1 0.0087276 8.48644e-07 3.88398e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , too : that we ||| 1 0.0054082 8.48644e-07 2.08176e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , too ||| 0.000709555 0.0011116 2.54593e-06 3.0887e-06 2.718 ||| 0-1 ||| 4228 1.17835e+06 +en ||| , towards ||| 0.0118694 0.0616136 3.39458e-06 0.000118802 2.718 ||| 0-1 ||| 337 1.17835e+06 +en ||| , trust ||| 0.0208333 0.192848 8.48644e-07 8.35856e-05 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| , turning ||| 0.00833333 0.062605 8.48644e-07 1.20924e-05 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| , ultimately ||| 0.00507614 0.199943 1.69729e-06 0.000114663 2.718 ||| 0-1 ||| 394 1.17835e+06 +en ||| , under the ||| 0.00161812 0.205566 1.69729e-06 4.13988e-05 2.718 ||| 0-1 ||| 1236 1.17835e+06 +en ||| , under which ||| 0.00680272 0.205566 8.48644e-07 5.72823e-06 2.718 ||| 0-1 ||| 147 1.17835e+06 +en ||| , under ||| 0.0345923 0.205566 8.31671e-05 0.000674338 2.718 ||| 0-1 ||| 2833 1.17835e+06 +en ||| , unfortunately , on ||| 0.333333 0.22993 8.48644e-07 7.31094e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , unlike in ||| 0.0384615 0.605812 8.48644e-07 3.96501e-07 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| , up to ||| 0.00411523 0.0247351 8.48644e-07 1.14322e-05 2.718 ||| 0-2 ||| 243 1.17835e+06 +en ||| , upon both ||| 0.5 0.114601 8.48644e-07 1.7461e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , upon ||| 0.0164835 0.114601 2.54593e-06 0.000105409 2.718 ||| 0-1 ||| 182 1.17835e+06 +en ||| , used in ||| 0.0666667 0.605812 8.48644e-07 2.36248e-05 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| , using ||| 0.00117786 0.0119063 8.48644e-07 7.6323e-06 2.718 ||| 0-1 ||| 849 1.17835e+06 +en ||| , vary from ||| 0.2 0.0308834 8.48644e-07 1.63359e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| , via ||| 0.00183824 0.0130862 8.48644e-07 4.86559e-06 2.718 ||| 0-1 ||| 544 1.17835e+06 +en ||| , voted on in ||| 0.333333 0.605812 8.48644e-07 1.48494e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , was , in ||| 0.2 0.605812 8.48644e-07 2.05754e-05 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| , was based on ||| 0.166667 0.22993 8.48644e-07 7.27939e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| , was in ||| 0.0208333 0.605812 8.48644e-07 0.000172533 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| , we , in ||| 0.125 0.605812 1.69729e-06 7.4554e-05 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| , we , ||| 0.0052356 0.0054082 8.48644e-07 3.21965e-05 2.718 ||| 0-1 ||| 191 1.17835e+06 +en ||| , we also ||| 0.00277778 0.0054082 8.48644e-07 1.36302e-06 2.718 ||| 0-1 ||| 360 1.17835e+06 +en ||| , we are able ||| 0.0212766 0.0054082 8.48644e-07 3.42003e-09 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| , we are going through it ||| 1 0.0366102 8.48644e-07 2.9398e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , we are going through ||| 0.111111 0.0366102 8.48644e-07 1.65313e-11 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| , we are in ||| 0.00297619 0.605812 8.48644e-07 9.48546e-06 2.718 ||| 0-3 ||| 336 1.17835e+06 +en ||| , we are now at ||| 0.0909091 0.321886 8.48644e-07 1.69258e-09 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| , we are ||| 0.000458225 0.0054082 2.54593e-06 4.09634e-06 2.718 ||| 0-1 ||| 6547 1.17835e+06 +en ||| , we at the ||| 0.0909091 0.321886 8.48644e-07 3.32469e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| , we at ||| 0.105263 0.321886 1.69729e-06 5.41553e-05 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| , we call on ||| 0.00833333 0.22993 8.48644e-07 2.49599e-08 2.718 ||| 0-3 ||| 120 1.17835e+06 +en ||| , we expect - ||| 0.5 0.0054082 8.48644e-07 5.42804e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , we expect ||| 0.00529101 0.0054082 8.48644e-07 1.439e-08 2.718 ||| 0-1 ||| 189 1.17835e+06 +en ||| , we first ||| 0.0625 0.138055 8.48644e-07 8.27438e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| , we have been ||| 0.0025641 0.0054082 8.48644e-07 1.0782e-08 2.718 ||| 0-1 ||| 390 1.17835e+06 +en ||| , we have ||| 9.67212e-05 0.0054082 8.48644e-07 3.22892e-06 2.718 ||| 0-1 ||| 10339 1.17835e+06 +en ||| , we in ||| 0.0405904 0.605812 1.86702e-05 0.000625166 2.718 ||| 0-2 ||| 542 1.17835e+06 +en ||| , we insist ||| 0.025 0.221585 8.48644e-07 6.05291e-07 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| , we live in ||| 0.0263158 0.605812 8.48644e-07 6.30168e-08 2.718 ||| 0-3 ||| 38 1.17835e+06 +en ||| , we maintain ||| 0.0416667 0.0054082 8.48644e-07 1.23381e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| , we must at the same time ||| 0.2 0.321886 8.48644e-07 6.78854e-15 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| , we must at the same ||| 0.5 0.321886 8.48644e-07 4.13507e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , we must at the ||| 0.5 0.321886 8.48644e-07 5.13864e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , we must at ||| 0.142857 0.321886 8.48644e-07 8.37025e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| , we provide the practical ||| 1 0.0054082 8.48644e-07 2.15231e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , we provide the ||| 0.333333 0.0054082 8.48644e-07 4.90277e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , we provide ||| 0.111111 0.0054082 8.48644e-07 7.98603e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| , we shall , in ||| 0.333333 0.605812 8.48644e-07 4.07512e-08 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , we shall end up ||| 0.0909091 0.0147069 8.48644e-07 2.22161e-13 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| , we should also look ||| 0.333333 0.0054082 8.48644e-07 1.76053e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , we should also ||| 0.00460829 0.0054082 8.48644e-07 6.03956e-09 2.718 ||| 0-1 ||| 217 1.17835e+06 +en ||| , we should ||| 0.000280505 0.0054082 8.48644e-07 1.19628e-06 2.718 ||| 0-1 ||| 3565 1.17835e+06 +en ||| , we stood on ||| 1 0.22993 8.48644e-07 1.7427e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , we strongly demand ||| 1 0.0054082 8.48644e-07 6.93159e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , we strongly ||| 0.0714286 0.0054082 8.48644e-07 1.29321e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| , we support regional competitiveness . in ||| 1 0.605812 8.48644e-07 7.45517e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , we will be ||| 0.00213675 0.0054082 8.48644e-07 4.23289e-08 2.718 ||| 0-1 ||| 468 1.17835e+06 +en ||| , we will in ||| 0.333333 0.605812 8.48644e-07 5.40844e-06 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , we will ||| 0.000813008 0.0054082 8.48644e-07 2.33566e-06 2.718 ||| 0-1 ||| 1230 1.17835e+06 +en ||| , we would like ||| 0.00227273 0.0054082 8.48644e-07 2.8138e-09 2.718 ||| 0-1 ||| 440 1.17835e+06 +en ||| , we would ||| 0.00196464 0.0054082 8.48644e-07 1.58444e-06 2.718 ||| 0-1 ||| 509 1.17835e+06 +en ||| , we ||| 0.00120273 0.0054082 2.12161e-05 0.000269981 2.718 ||| 0-1 ||| 20786 1.17835e+06 +en ||| , well in advance of ||| 0.5 0.605812 8.48644e-07 1.67568e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , well in advance ||| 0.5 0.605812 8.48644e-07 3.08234e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| , well in ||| 0.333333 0.605812 8.48644e-07 8.73183e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| , were in ||| 0.0588235 0.605812 8.48644e-07 9.86516e-05 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| , what is more , ||| 0.00943396 0.0035633 8.48644e-07 3.97591e-10 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| , what is more ||| 0.00847458 0.0035633 8.48644e-07 3.33396e-09 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| , what is ||| 0.00110132 0.0035633 8.48644e-07 1.4599e-06 2.718 ||| 0-1 ||| 908 1.17835e+06 +en ||| , what ||| 0.000394867 0.0035633 1.69729e-06 4.65809e-05 2.718 ||| 0-1 ||| 5065 1.17835e+06 +en ||| , whatever it takes , in the ||| 1 0.605812 8.48644e-07 5.10413e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , whatever it takes , in ||| 1 0.605812 8.48644e-07 8.31402e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , whatever ||| 0.00344432 0.0182897 2.54593e-06 9.25416e-06 2.718 ||| 0-1 ||| 871 1.17835e+06 +en ||| , when all is said and done ||| 0.0344828 0.0010182 8.48644e-07 1.5279e-18 2.718 ||| 0-5 ||| 29 1.17835e+06 +en ||| , when all is said and ||| 0.0243902 0.0010182 8.48644e-07 3.35066e-15 2.718 ||| 0-5 ||| 41 1.17835e+06 +en ||| , when considering ||| 0.0243902 0.142731 8.48644e-07 2.14408e-08 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| , when dealing with ||| 0.0645161 0.142731 1.69729e-06 4.68965e-10 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| , when dealing ||| 0.0714286 0.142731 8.48644e-07 7.33388e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| , when in ||| 0.0235294 0.374272 1.69729e-06 0.000327846 2.718 ||| 0-1 0-2 ||| 85 1.17835e+06 +en ||| , when it acts ||| 0.25 0.142731 8.48644e-07 7.18382e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , when it comes to state ||| 1 0.142731 8.48644e-07 1.13297e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , when it comes to ||| 0.00733496 0.142731 2.54593e-06 4.48522e-10 2.718 ||| 0-1 ||| 409 1.17835e+06 +en ||| , when it comes ||| 0.00399202 0.142731 1.69729e-06 5.04761e-09 2.718 ||| 0-1 ||| 501 1.17835e+06 +en ||| , when it is becoming ||| 1 0.142731 8.48644e-07 4.07167e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , when it is ||| 0.00641026 0.142731 8.48644e-07 3.95692e-07 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| , when it ||| 0.0151515 0.142731 9.33509e-06 1.26253e-05 2.718 ||| 0-1 ||| 726 1.17835e+06 +en ||| , when preliminary ||| 1 0.142731 8.48644e-07 6.38963e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , when seen in ||| 1 0.249858 8.48644e-07 2.22935e-09 2.718 ||| 0-1 0-2 0-3 ||| 1 1.17835e+06 +en ||| , when the express desire ||| 1 0.142731 8.48644e-07 2.07041e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , when the express ||| 1 0.142731 8.48644e-07 4.42394e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , when the ||| 0.00078125 0.142731 8.48644e-07 4.35857e-05 2.718 ||| 0-1 ||| 1280 1.17835e+06 +en ||| , when they took ||| 1 0.142731 8.48644e-07 3.41803e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , when they ||| 0.00628931 0.142731 8.48644e-07 2.31731e-06 2.718 ||| 0-1 ||| 159 1.17835e+06 +en ||| , when we come back to a ||| 1 0.142731 8.48644e-07 1.81338e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , when we come back to ||| 0.5 0.142731 8.48644e-07 4.09103e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , when we come back ||| 0.5 0.142731 8.48644e-07 4.604e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , when we come ||| 0.030303 0.142731 8.48644e-07 6.84508e-09 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| , when we look at them on ||| 0.5 0.22993 8.48644e-07 1.84026e-16 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| , when we talk about ||| 0.0117647 0.0401564 8.48644e-07 1.55758e-13 2.718 ||| 0-4 ||| 85 1.17835e+06 +en ||| , when we were in ||| 0.142857 0.605812 8.48644e-07 5.59849e-10 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| , when we were ||| 0.03125 0.142731 8.48644e-07 1.44381e-08 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| , when we ||| 0.00583658 0.142731 2.54593e-06 8.05967e-06 2.718 ||| 0-1 ||| 514 1.17835e+06 +en ||| , when writing ||| 0.5 0.142731 8.48644e-07 1.55055e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , when you ||| 0.00877193 0.142731 1.69729e-06 2.29224e-06 2.718 ||| 0-1 ||| 228 1.17835e+06 +en ||| , when ||| 0.0139107 0.142731 0.000142572 0.000709959 2.718 ||| 0-1 ||| 12077 1.17835e+06 +en ||| , where I thought ||| 0.25 0.247783 8.48644e-07 5.97004e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , where I voted ||| 1 0.122467 8.48644e-07 5.66629e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , where I ||| 0.00793651 0.247783 8.48644e-07 7.18416e-06 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| , where appropriate , ||| 0.0111111 0.247783 8.48644e-07 1.63028e-08 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| , where appropriate ||| 0.0108696 0.247783 8.48644e-07 1.36706e-07 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| , where clearly ||| 0.5 0.247783 8.48644e-07 1.85355e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , where communal ||| 0.333333 0.247783 8.48644e-07 2.94537e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , where far and ||| 1 0.247783 8.48644e-07 8.68522e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , where far ||| 0.5 0.247783 8.48644e-07 6.93381e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , where he took part ||| 1 0.247783 8.48644e-07 1.55865e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , where he took ||| 1 0.247783 8.48644e-07 1.30737e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , where he ||| 0.0322581 0.247783 8.48644e-07 8.86353e-07 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| , where healthy ||| 0.333333 0.247783 8.48644e-07 9.1408e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , where necessary ||| 0.005 0.247783 8.48644e-07 2.61325e-07 2.718 ||| 0-1 ||| 200 1.17835e+06 +en ||| , where the ||| 0.000779423 0.247783 8.48644e-07 6.23522e-05 2.718 ||| 0-1 ||| 1283 1.17835e+06 +en ||| , where there is no regulation ||| 0.166667 0.247783 8.48644e-07 5.30136e-15 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| , where there is no ||| 0.030303 0.247783 8.48644e-07 7.59507e-11 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| , where there is ||| 0.00438596 0.247783 8.48644e-07 9.75728e-08 2.718 ||| 0-1 ||| 228 1.17835e+06 +en ||| , where there ||| 0.00568182 0.247783 8.48644e-07 3.11326e-06 2.718 ||| 0-1 ||| 176 1.17835e+06 +en ||| , where we call ||| 0.333333 0.247783 8.48644e-07 2.55964e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , where we ||| 0.00334448 0.247783 8.48644e-07 1.15299e-05 2.718 ||| 0-1 ||| 299 1.17835e+06 +en ||| , where work ||| 0.5 0.247783 8.48644e-07 6.42903e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , where you yourself are ||| 0.25 0.247783 8.48644e-07 2.23895e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , where you yourself ||| 0.25 0.247783 8.48644e-07 1.47565e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , where you ||| 0.0196078 0.247783 8.48644e-07 3.27921e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| , where ||| 0.0132013 0.247783 0.000108626 0.00101564 2.718 ||| 0-1 ||| 9696 1.17835e+06 +en ||| , whereas ||| 0.000644745 0.0154721 8.48644e-07 3.97118e-06 2.718 ||| 0-1 ||| 1551 1.17835e+06 +en ||| , whereby ||| 0.00161031 0.0882153 8.48644e-07 2.10127e-05 2.718 ||| 0-1 ||| 621 1.17835e+06 +en ||| , whether in relation ||| 0.111111 0.605812 8.48644e-07 3.51977e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| , whether in ||| 0.0117647 0.605812 2.54593e-06 1.44668e-05 2.718 ||| 0-2 ||| 255 1.17835e+06 +en ||| , whether to ||| 0.0434783 0.0247351 8.48644e-07 8.80583e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| , whether within ||| 0.0555556 0.369196 8.48644e-07 3.47326e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| , which , in turn ||| 0.030303 0.605812 8.48644e-07 1.25074e-08 2.718 ||| 0-3 ||| 33 1.17835e+06 +en ||| , which , in ||| 0.00501253 0.605812 1.69729e-06 5.57866e-05 2.718 ||| 0-3 ||| 399 1.17835e+06 +en ||| , which - at ||| 0.333333 0.321886 8.48644e-07 1.52856e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , which I will quote in English ||| 0.5 0.605812 8.48644e-07 1.97894e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| , which I will quote in ||| 0.5 0.605812 8.48644e-07 1.27673e-12 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| , which I will say in ||| 1 0.605812 8.48644e-07 2.7361e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , which appears on ||| 1 0.22993 8.48644e-07 4.39157e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , which are as ||| 0.0588235 0.066968 8.48644e-07 2.76479e-07 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| , which are being ||| 0.0212766 0.0043873 8.48644e-07 2.81276e-09 2.718 ||| 0-3 ||| 47 1.17835e+06 +en ||| , which are in ||| 0.015873 0.605812 8.48644e-07 7.0977e-06 2.718 ||| 0-3 ||| 63 1.17835e+06 +en ||| , which are quite obvious ||| 0.333333 0.0068312 8.48644e-07 5.75564e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , which are quite ||| 0.0909091 0.0068312 8.48644e-07 1.38025e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| , which are struggling with increased ||| 1 0.0535436 8.48644e-07 4.80938e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , which are struggling with ||| 0.5 0.0535436 8.48644e-07 9.67682e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , which are ||| 0.000257599 0.0006429 8.48644e-07 1.64008e-07 2.718 ||| 0-2 ||| 3882 1.17835e+06 +en ||| , which come under ||| 0.333333 0.205566 8.48644e-07 4.86498e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| , which concerns ||| 0.00454545 0.0004433 8.48644e-07 6.17943e-09 2.718 ||| 0-2 ||| 220 1.17835e+06 +en ||| , which form part of ||| 0.0909091 0.0009084 8.48644e-07 5.2895e-13 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| , which form part ||| 0.0833333 0.0009084 8.48644e-07 9.72978e-12 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| , which had previously been sited in ||| 1 0.605812 8.48644e-07 3.7534e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , which has been in ||| 0.0689655 0.605812 1.69729e-06 8.04069e-09 2.718 ||| 0-4 ||| 29 1.17835e+06 +en ||| , which has occurred in ||| 0.333333 0.605812 8.48644e-07 1.02339e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| , which has ||| 0.000282326 0.0002262 8.48644e-07 3.44427e-08 2.718 ||| 0-2 ||| 3542 1.17835e+06 +en ||| , which have appeared in ||| 0.5 0.605812 8.48644e-07 1.24762e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , which in the ||| 0.0147059 0.605812 8.48644e-07 2.87187e-05 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| , which in ||| 0.00455927 0.605812 2.54593e-06 0.000467794 2.718 ||| 0-2 ||| 658 1.17835e+06 +en ||| , which is also taken in the ||| 1 0.605812 8.48644e-07 4.14197e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , which is also taken in ||| 1 0.605812 8.48644e-07 6.74678e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , which is always emphasized in ||| 1 0.605812 8.48644e-07 1.00869e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , which is at ||| 0.0172414 0.321886 8.48644e-07 1.27003e-06 2.718 ||| 0-3 ||| 58 1.17835e+06 +en ||| , which is available in ||| 1 0.605812 8.48644e-07 4.66372e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , which is currently being ||| 0.030303 0.104436 8.48644e-07 1.06236e-10 2.718 ||| 0-3 ||| 33 1.17835e+06 +en ||| , which is currently ||| 0.00617284 0.104436 8.48644e-07 3.73307e-08 2.718 ||| 0-3 ||| 162 1.17835e+06 +en ||| , which is essentially ||| 0.0357143 0.105697 8.48644e-07 6.65463e-09 2.718 ||| 0-3 ||| 28 1.17835e+06 +en ||| , which is generally ||| 0.0833333 0.21041 8.48644e-07 2.89076e-08 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| , which is in both our ||| 0.5 0.605812 8.48644e-07 3.35004e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , which is in both ||| 0.5 0.605812 8.48644e-07 2.42862e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , which is in fact ||| 0.0243902 0.605812 8.48644e-07 4.2947e-08 2.718 ||| 0-3 ||| 41 1.17835e+06 +en ||| , which is in line with ||| 0.0357143 0.0535436 8.48644e-07 2.33256e-12 2.718 ||| 0-5 ||| 28 1.17835e+06 +en ||| , which is in the ||| 0.0277778 0.605812 8.48644e-07 9.00076e-07 2.718 ||| 0-3 ||| 36 1.17835e+06 +en ||| , which is in ||| 0.0238095 0.605812 4.24322e-06 1.46612e-05 2.718 ||| 0-3 ||| 210 1.17835e+06 +en ||| , which is on ||| 0.0263158 0.22993 8.48644e-07 2.63672e-06 2.718 ||| 0-3 ||| 38 1.17835e+06 +en ||| , which is ongoing in ||| 1 0.605812 8.48644e-07 5.21938e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , which is realised as ||| 0.0625 0.066968 8.48644e-07 6.96744e-12 2.718 ||| 0-4 ||| 16 1.17835e+06 +en ||| , which is so ||| 0.00613497 0.0087276 8.48644e-07 2.16244e-08 2.718 ||| 0-3 ||| 163 1.17835e+06 +en ||| , which is to the ||| 0.1 0.0247351 8.48644e-07 5.4787e-08 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| , which is to ||| 0.0018797 0.0247351 8.48644e-07 8.92416e-07 2.718 ||| 0-3 ||| 532 1.17835e+06 +en ||| , which must ||| 0.00131752 0.0001187 8.48644e-07 2.59959e-09 2.718 ||| 0-0 ||| 759 1.17835e+06 +en ||| , which on ||| 0.0454545 0.22993 8.48644e-07 8.41298e-05 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| , which sparked unrest there ||| 1 0.0117359 8.48644e-07 5.11201e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , which was already being challenged by ||| 1 0.0468744 8.48644e-07 1.28098e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , which was at ||| 0.142857 0.321886 8.48644e-07 1.26958e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| , which was held at ||| 0.25 0.321886 8.48644e-07 3.2387e-11 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| , which was in the public domain ||| 1 0.605812 8.48644e-07 2.29733e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , which was in the public ||| 1 0.605812 8.48644e-07 1.45401e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , which was in the ||| 0.25 0.605812 8.48644e-07 8.99757e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| , which was in ||| 0.0909091 0.605812 1.69729e-06 1.4656e-06 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| , which was incurred when ||| 1 0.142731 8.48644e-07 1.77609e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , which was taken for ||| 1 0.0286209 8.48644e-07 3.32836e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , which we already have in ||| 0.5 0.605812 8.48644e-07 2.94129e-11 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| , which will attract enormous attention from ||| 1 0.0308834 8.48644e-07 1.70648e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , which will ||| 0.000588928 0.0005314 8.48644e-07 1.00593e-07 2.718 ||| 0-2 ||| 1698 1.17835e+06 +en ||| , which ||| 4.29323e-05 0.0001187 3.39458e-06 1.68193e-06 2.718 ||| 0-0 ||| 93170 1.17835e+06 +en ||| , while creating ||| 0.142857 0.0151276 8.48644e-07 1.90152e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| , while necessary , ||| 0.2 0.0151276 8.48644e-07 1.0008e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| , while necessary ||| 0.25 0.0151276 8.48644e-07 8.39214e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , while still ||| 0.04 0.0151276 8.48644e-07 2.45665e-08 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| , while working on ||| 0.5 0.22993 8.48644e-07 3.51495e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , while ||| 0.00127747 0.0151276 8.48644e-06 3.26162e-05 2.718 ||| 0-1 ||| 7828 1.17835e+06 +en ||| , whilst at ||| 0.0232558 0.321886 8.48644e-07 2.52356e-07 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| , whilst increasing expenditure on ||| 1 0.22993 8.48644e-07 8.19595e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , who are in ||| 0.025641 0.605812 8.48644e-07 7.36959e-07 2.718 ||| 0-3 ||| 39 1.17835e+06 +en ||| , who had been in ||| 1 0.605812 8.48644e-07 1.6279e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| , who in ||| 0.0357143 0.605812 1.69729e-06 4.85714e-05 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| , who is at ||| 0.125 0.321886 8.48644e-07 1.31868e-07 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| , who suffered on ||| 0.5 0.22993 8.48644e-07 2.98746e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , who told ||| 0.2 0.0001187 8.48644e-07 1.03734e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| , who will speak on ||| 0.125 0.22993 8.48644e-07 1.02247e-11 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| , who ||| 0.00014922 0.0001187 1.69729e-06 1.74636e-07 2.718 ||| 0-0 ||| 13403 1.17835e+06 +en ||| , whose role is to ||| 0.25 0.0247351 8.48644e-07 1.83782e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| , whose very position will ||| 1 0.0020657 8.48644e-07 3.62484e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , whose very position ||| 1 0.0020657 8.48644e-07 4.18998e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| , whose very ||| 0.2 0.0020657 8.48644e-07 1.27239e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| , widely heard in ||| 0.5 0.605812 8.48644e-07 1.20814e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| , will , in ||| 0.0714286 0.605812 8.48644e-07 5.68151e-05 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| , will be badly affected in ||| 1 0.605812 8.48644e-07 8.28042e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , will be in ||| 0.047619 0.605812 8.48644e-07 8.63407e-06 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| , will be on ||| 0.2 0.22993 8.48644e-07 1.55278e-06 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| , will in ||| 0.137931 0.605812 3.39458e-06 0.000476418 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| , will take place within ||| 0.5 0.369196 8.48644e-07 2.77151e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| , with a degree ||| 0.1 0.0535436 8.48644e-07 8.53571e-09 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| , with a view to ||| 0.00122699 0.0247351 8.48644e-07 8.58233e-10 2.718 ||| 0-4 ||| 815 1.17835e+06 +en ||| , with a view ||| 0.0011919 0.0535436 8.48644e-07 5.56701e-08 2.718 ||| 0-1 ||| 839 1.17835e+06 +en ||| , with a ||| 0.0017331 0.0535436 3.39458e-06 6.16296e-05 2.718 ||| 0-1 ||| 2308 1.17835e+06 +en ||| , with all ||| 0.00150376 0.0535436 8.48644e-07 6.5701e-06 2.718 ||| 0-1 ||| 665 1.17835e+06 +en ||| , with exactly ||| 0.333333 0.0535436 8.48644e-07 1.39594e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| , with only ||| 0.02 0.0535436 8.48644e-07 1.54763e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| , with regard to ||| 0.00568182 0.0535436 6.78915e-06 8.41228e-08 2.718 ||| 0-1 ||| 1408 1.17835e+06 +en ||| , with regard ||| 0.00488827 0.0535436 5.94051e-06 9.46709e-07 2.718 ||| 0-1 ||| 1432 1.17835e+06 +en ||| , with renewed ||| 0.5 0.0535436 8.48644e-07 1.80749e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , with respect ||| 0.00671141 0.0535436 8.48644e-07 6.01478e-07 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| , with some vigour , to ||| 0.5 0.0535436 8.48644e-07 7.54313e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , with some vigour , ||| 0.5 0.0535436 8.48644e-07 8.48895e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , with some vigour ||| 0.5 0.0535436 8.48644e-07 7.11834e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , with some ||| 0.00606061 0.0535436 8.48644e-07 1.51454e-06 2.718 ||| 0-1 ||| 165 1.17835e+06 +en ||| , with something more ||| 1 0.0535436 8.48644e-07 1.75748e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , with something ||| 0.25 0.0535436 8.48644e-07 7.69575e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| , with the result ||| 0.00299401 0.0535436 8.48644e-07 4.49409e-08 2.718 ||| 0-1 ||| 334 1.17835e+06 +en ||| , with the ||| 0.000476417 0.0535436 2.54593e-06 8.53578e-05 2.718 ||| 0-1 ||| 6297 1.17835e+06 +en ||| , with whom I ||| 0.0322581 0.0535436 8.48644e-07 6.55001e-10 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| , with whom ||| 0.00518135 0.0535436 8.48644e-07 9.25992e-08 2.718 ||| 0-1 ||| 193 1.17835e+06 +en ||| , with ||| 0.00971749 0.0535436 0.000210464 0.00139038 2.718 ||| 0-1 ||| 25521 1.17835e+06 +en ||| , within Parliament ||| 0.1 0.369196 8.48644e-07 7.58909e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| , within Parliament ’ ||| 1 0.369196 8.48644e-07 1.3221e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , within a ||| 0.0136986 0.369196 1.69729e-06 5.8605e-05 2.718 ||| 0-1 ||| 146 1.17835e+06 +en ||| , within the European Union in ||| 1 0.605812 8.48644e-07 1.31764e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| , within the framework of ||| 0.00257732 0.369196 8.48644e-07 5.25547e-10 2.718 ||| 0-1 ||| 388 1.17835e+06 +en ||| , within the framework ||| 0.00215517 0.369196 8.48644e-07 9.66718e-09 2.718 ||| 0-1 ||| 464 1.17835e+06 +en ||| , within the limits of what is ||| 0.5 0.369196 8.48644e-07 5.23921e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| , within the limits of what ||| 1 0.369196 8.48644e-07 1.67168e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| , within the limits of ||| 0.0625 0.369196 8.48644e-07 1.19142e-10 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| , within the limits ||| 0.0344828 0.369196 8.48644e-07 2.19155e-09 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| , within the ||| 0.00374813 0.369196 4.24322e-06 8.11686e-05 2.718 ||| 0-1 ||| 1334 1.17835e+06 +en ||| , within ||| 0.101822 0.369196 0.000185004 0.00132214 2.718 ||| 0-1 ||| 2141 1.17835e+06 +en ||| , without ||| 0.000330142 0.0016497 1.69729e-06 3.89963e-06 2.718 ||| 0-1 ||| 6058 1.17835e+06 +en ||| , working classes . unfortunately , however ||| 1 0.0053256 8.48644e-07 1.10219e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| , working in ||| 0.04 0.605812 8.48644e-07 1.04852e-05 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| , would be in the ||| 1 0.605812 8.48644e-07 3.59577e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| , would be in ||| 0.25 0.605812 8.48644e-07 5.85708e-06 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| , would in ||| 0.166667 0.605812 8.48644e-07 0.000323187 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| , you are going to ||| 0.0357143 0.0247351 8.48644e-07 1.40531e-10 2.718 ||| 0-4 ||| 28 1.17835e+06 +en ||| , ||| 0.000101389 0.0001187 0.000196885 0.000198 2.718 ||| 0-0 ||| 2.28822e+06 1.17835e+06 +en ||| - ( FR ) At ||| 0.166667 0.0814815 8.48644e-07 1.43918e-18 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| - ( NL ) During ||| 1 0.0004237 8.48644e-07 1.46402e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| - ( NL ) ||| 0.00124844 0.0004237 8.48644e-07 3.66004e-15 2.718 ||| 0-2 ||| 801 1.17835e+06 +en ||| - ( NL ||| 0.00125313 0.0004237 8.48644e-07 2.54647e-12 2.718 ||| 0-2 ||| 798 1.17835e+06 +en ||| - ( PT ) In ||| 0.025 0.0659459 8.48644e-07 2.08526e-17 2.718 ||| 0-4 ||| 40 1.17835e+06 +en ||| - English-language speakers anyway - use ||| 1 0.285714 8.48644e-07 3.38292e-23 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - English-language speakers anyway - ||| 1 0.285714 8.48644e-07 6.95788e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - English-language speakers anyway ||| 1 0.285714 8.48644e-07 1.84456e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - English-language speakers ||| 1 0.285714 8.48644e-07 5.18136e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - English-language ||| 1 0.285714 8.48644e-07 2.56503e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - I am referring in this context ||| 1 0.605812 8.48644e-07 5.89627e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| - I am referring in this ||| 1 0.605812 8.48644e-07 4.39365e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| - I am referring in ||| 0.333333 0.605812 8.48644e-07 6.79983e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| - I am ||| 0.00266667 0.0060084 8.48644e-07 1.17093e-08 2.718 ||| 0-1 ||| 375 1.17835e+06 +en ||| - I emphasize - ||| 1 0.0060084 8.48644e-07 1.86702e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - I emphasize ||| 0.2 0.0060084 8.48644e-07 4.94955e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| - I hope ||| 0.015873 0.0060084 8.48644e-07 1.60677e-09 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| - I must ||| 0.0344828 0.0060084 8.48644e-07 1.41667e-08 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| - I said that in ||| 1 0.605812 8.48644e-07 8.52471e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| - I would emphasise ||| 0.166667 0.207288 8.48644e-07 1.40006e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| - I ||| 0.00307422 0.0060084 5.94051e-06 9.16583e-06 2.718 ||| 0-1 ||| 2277 1.17835e+06 +en ||| - In ||| 0.0129032 0.0659459 1.69729e-06 1.56542e-07 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| - and I do emphasize ||| 1 0.138965 8.48644e-07 1.1952e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| - and I say ||| 0.0169492 0.0060084 8.48644e-07 1.09736e-10 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| - and I ||| 0.000911577 0.0060084 8.48644e-07 1.1481e-07 2.718 ||| 0-2 ||| 1097 1.17835e+06 +en ||| - and a unanimous one at ||| 1 0.321886 8.48644e-07 1.39675e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| - and as such ||| 1 0.066968 8.48644e-07 1.75838e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| - and as ||| 0.0178571 0.066968 8.48644e-07 8.49909e-07 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| - and here ||| 0.00411523 0.0855319 8.48644e-07 1.41752e-07 2.718 ||| 0-2 ||| 243 1.17835e+06 +en ||| - and since we ||| 1 0.0054082 8.48644e-07 1.45154e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| - and ||| 0.000394197 0.0010182 4.24322e-06 3.48052e-06 2.718 ||| 0-1 ||| 12684 1.17835e+06 +en ||| - announced in ||| 1 0.605812 8.48644e-07 3.64054e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| - are in ||| 0.0833333 0.605812 8.48644e-07 2.64291e-05 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| - as already said - under ||| 1 0.205566 8.48644e-07 1.56383e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| - as ||| 0.00510971 0.066968 1.4427e-05 6.78522e-05 2.718 ||| 0-1 ||| 3327 1.17835e+06 +en ||| - at any rate in ||| 1 0.605812 8.48644e-07 1.10741e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| - at ||| 0.0288248 0.321886 1.10324e-05 0.000150892 2.718 ||| 0-1 ||| 451 1.17835e+06 +en ||| - attended by ||| 0.0833333 0.0468744 8.48644e-07 3.59404e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| - based on Chinese ||| 1 0.22993 8.48644e-07 8.7456e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| - based on ||| 0.0588235 0.22993 8.48644e-07 7.34924e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| - be even ||| 1 0.0045419 8.48644e-07 9.11941e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| - bear in mind - ||| 0.2 0.605812 8.48644e-07 2.47772e-13 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| - bear in mind ||| 0.166667 0.605812 8.48644e-07 6.56855e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| - bear in ||| 0.166667 0.605812 8.48644e-07 2.6076e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| - because ||| 0.0034904 0.0022788 1.69729e-06 3.97957e-07 2.718 ||| 0-1 ||| 573 1.17835e+06 +en ||| - both in ||| 0.03125 0.605812 8.48644e-07 2.88543e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| - breach of Community environment law As ||| 0.333333 0.0116562 8.48644e-07 5.59736e-27 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| - breach of Community environment law ||| 0.333333 0.0116562 8.48644e-07 9.176e-22 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| - breach of Community environment ||| 0.333333 0.0116562 8.48644e-07 5.20476e-18 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| - breach of Community ||| 0.333333 0.0116562 8.48644e-07 9.32754e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| - breach of ||| 0.333333 0.0116562 8.48644e-07 5.76129e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| - by means ||| 0.0666667 0.0468744 8.48644e-07 2.03352e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| - by ||| 0.0176678 0.0468744 4.24322e-06 3.20896e-05 2.718 ||| 0-1 ||| 283 1.17835e+06 +en ||| - can be traced back to ||| 0.5 0.0247351 8.48644e-07 1.53761e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| - cluster bombs - ||| 0.2 0.093981 8.48644e-07 2.15565e-15 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| - cluster bombs ||| 0.2 0.093981 8.48644e-07 5.71473e-13 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| - cluster ||| 0.2 0.093981 8.48644e-07 2.28589e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| - concentrating on ||| 0.5 0.22993 8.48644e-07 3.38328e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| - crucially - in ||| 1 0.605812 8.48644e-07 1.90546e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| - denounced on ||| 1 0.22993 8.48644e-07 7.83167e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| - during ||| 0.0357143 0.226251 8.48644e-07 1.09063e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| - first ||| 0.0263158 0.138055 8.48644e-07 2.30547e-05 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| - for the ||| 0.0147059 0.0286209 1.69729e-06 2.66433e-06 2.718 ||| 0-1 ||| 136 1.17835e+06 +en ||| - for ||| 0.00535714 0.0286209 5.09187e-06 4.33988e-05 2.718 ||| 0-1 ||| 1120 1.17835e+06 +en ||| - from ||| 0.00323625 0.0308834 8.48644e-07 1.43532e-05 2.718 ||| 0-1 ||| 309 1.17835e+06 +en ||| - get right into ||| 0.25 0.525896 8.48644e-07 2.3544e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| - had to ||| 0.166667 0.0247351 8.48644e-07 1.0642e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| - have come to ||| 0.333333 0.0247351 8.48644e-07 1.07697e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| - have to ||| 0.0625 0.0247351 8.48644e-07 1.26807e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| - in a campaign ||| 0.5 0.605812 8.48644e-07 2.3858e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| - in a ||| 0.060241 0.605812 4.24322e-06 7.72104e-05 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| - in order ||| 0.0208333 0.605812 8.48644e-07 9.27728e-07 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| - in other words ||| 0.00290698 0.605812 8.48644e-07 5.09994e-10 2.718 ||| 0-1 ||| 344 1.17835e+06 +en ||| - in other ||| 0.00483092 0.605812 8.48644e-07 2.25661e-06 2.718 ||| 0-1 ||| 207 1.17835e+06 +en ||| - in particular , ||| 0.0178571 0.605812 8.48644e-07 1.27836e-07 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| - in particular ||| 0.00537634 0.605812 8.48644e-07 1.07196e-06 2.718 ||| 0-1 ||| 186 1.17835e+06 +en ||| - in terms of ||| 0.025641 0.605812 8.48644e-07 1.03938e-07 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| - in terms ||| 0.0204082 0.605812 8.48644e-07 1.91189e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| - in the ||| 0.00571429 0.605812 1.69729e-06 0.000106937 2.718 ||| 0-1 ||| 350 1.17835e+06 +en ||| - in which case ||| 0.142857 0.605812 8.48644e-07 1.58309e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| - in which ||| 0.0178571 0.605812 8.48644e-07 1.47966e-05 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| - in ||| 0.0601695 0.605812 0.000120507 0.00174188 2.718 ||| 0-1 ||| 2360 1.17835e+06 +en ||| - incidents of ||| 0.5 0.0116562 8.48644e-07 4.62961e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| - insert into ||| 1 0.525896 8.48644e-07 1.50307e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| - into ||| 0.142857 0.525896 4.24322e-06 8.35041e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| - is breaking out again to ||| 1 0.0247351 8.48644e-07 1.11149e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| - is dealt with in three different ||| 0.5 0.329678 8.48644e-07 9.28878e-19 2.718 ||| 0-3 0-4 ||| 2 1.17835e+06 +en ||| - is dealt with in three ||| 0.5 0.329678 8.48644e-07 4.21834e-15 2.718 ||| 0-3 0-4 ||| 2 1.17835e+06 +en ||| - is dealt with in ||| 0.5 0.329678 8.48644e-07 6.66404e-11 2.718 ||| 0-3 0-4 ||| 2 1.17835e+06 +en ||| - is in ||| 0.105263 0.605812 1.69729e-06 5.45926e-05 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| - just over ||| 0.5 0.157937 8.48644e-07 1.90713e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| - meaning the delegates of ||| 0.5 0.0116562 8.48644e-07 5.89473e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| - now ||| 0.0119048 0.0123946 8.48644e-07 2.23308e-06 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| - of these ||| 0.25 0.00656635 8.48644e-07 5.39093e-09 2.718 ||| 0-1 0-2 ||| 4 1.17835e+06 +en ||| - of ||| 0.00585938 0.0116562 2.54593e-06 5.14401e-05 2.718 ||| 0-1 ||| 512 1.17835e+06 +en ||| - on the part of ||| 0.25 0.22993 8.48644e-07 1.24648e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| - on the part ||| 0.333333 0.22993 8.48644e-07 2.29284e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| - on the ||| 0.00534759 0.22993 8.48644e-07 1.9232e-05 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| - on ||| 0.0342205 0.22993 1.52756e-05 0.000313267 2.718 ||| 0-1 ||| 526 1.17835e+06 +en ||| - one which was pushing ||| 1 0.0025338 8.48644e-07 2.17099e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - one which was ||| 0.5 0.0025338 8.48644e-07 1.63233e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| - one which ||| 0.03125 0.0025338 8.48644e-07 5.21011e-09 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| - one ||| 0.00277008 0.0025338 8.48644e-07 6.13343e-07 2.718 ||| 0-1 ||| 361 1.17835e+06 +en ||| - over ||| 0.0208333 0.157937 1.69729e-06 1.51156e-05 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| - particularly ||| 0.00250627 0.183344 8.48644e-07 1.68454e-05 2.718 ||| 0-1 ||| 399 1.17835e+06 +en ||| - partly ||| 0.0454545 0.294632 8.48644e-07 3.11349e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| - perhaps during ||| 1 0.226251 8.48644e-07 1.6872e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| - possibly in ||| 0.5 0.605812 8.48644e-07 7.83848e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| - rather - to ||| 0.5 0.0247351 8.48644e-07 1.22463e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| - rather than basing ||| 1 0.16257 8.48644e-07 1.29108e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - rather than ||| 0.0277778 0.16257 8.48644e-07 3.00252e-09 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| - rather ||| 0.0333333 0.16257 1.69729e-06 9.82821e-06 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| - so ||| 0.00409836 0.0087276 8.48644e-07 2.56918e-06 2.718 ||| 0-1 ||| 244 1.17835e+06 +en ||| - some of ||| 0.0149254 0.0116562 8.48644e-07 5.60337e-08 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| - something else on ||| 0.5 0.22993 8.48644e-07 2.04604e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| - speaking on ||| 0.25 0.22993 8.48644e-07 3.5963e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| - such as ||| 0.0030303 0.066968 8.48644e-07 1.40379e-07 2.718 ||| 0-2 ||| 330 1.17835e+06 +en ||| - taken as ||| 1 0.066968 8.48644e-07 6.18472e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| - that are at ||| 1 0.321886 8.48644e-07 3.85119e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| - that at ||| 0.333333 0.321886 8.48644e-07 2.53824e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| - that it is in ||| 0.333333 0.605812 8.48644e-07 1.63309e-08 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| - that we in ||| 0.2 0.605812 8.48644e-07 3.32637e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| - the TENs - in ||| 1 0.605812 8.48644e-07 1.1698e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| - the fact that eight soldiers were ||| 1 0.0005269 8.48644e-07 6.72532e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| - the fact that eight soldiers ||| 1 0.0005269 8.48644e-07 3.75423e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| - the fact that eight ||| 1 0.0005269 8.48644e-07 7.98772e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| - the ||| 0.000400962 0.0011669 1.69729e-06 1.08059e-05 2.718 ||| 0-1 ||| 4988 1.17835e+06 +en ||| - there has generally ||| 0.5 0.21041 8.48644e-07 5.41917e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| - they will ||| 0.142857 0.0036976 8.48644e-07 9.54847e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| - they ||| 0.00581395 0.0036976 8.48644e-07 1.10372e-06 2.718 ||| 0-1 ||| 172 1.17835e+06 +en ||| - through ||| 0.00909091 0.0366102 8.48644e-07 3.54728e-06 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| - to be involved in ||| 1 0.605812 8.48644e-07 9.69995e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| - to put ||| 0.0227273 0.0247351 8.48644e-07 1.16906e-07 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| - to say a word in ||| 0.5 0.605812 8.48644e-07 6.67557e-13 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| - to the ||| 0.00840336 0.0247351 8.48644e-07 6.50921e-06 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| - to ||| 0.00581395 0.0247351 8.48644e-06 0.000106027 2.718 ||| 0-1 ||| 1720 1.17835e+06 +en ||| - trust in how ||| 0.5 0.605812 8.48644e-07 1.1924e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| - trust in ||| 0.333333 0.605812 8.48644e-07 3.327e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| - turned into ||| 0.5 0.525896 8.48644e-07 4.68458e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| - under which ||| 0.2 0.205566 8.48644e-07 1.81187e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| - under ||| 0.0566038 0.205566 2.54593e-06 2.13297e-05 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| - when we put forward ||| 1 0.142731 8.48644e-07 1.56398e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - when we put ||| 1 0.142731 8.48644e-07 2.81088e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - when we ||| 0.1 0.142731 8.48644e-07 2.54932e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| - when ||| 0.0175439 0.142731 2.54593e-06 2.24564e-05 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| - where ||| 0.0184332 0.247783 3.39458e-06 3.21255e-05 2.718 ||| 0-1 ||| 217 1.17835e+06 +en ||| - whether in ||| 0.0384615 0.605812 8.48644e-07 4.57593e-07 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| - which comes to ||| 0.5 0.0247351 8.48644e-07 3.60084e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| - which currently holds ||| 0.5 0.104436 8.48644e-07 1.06999e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| - which currently ||| 0.166667 0.104436 8.48644e-07 3.76755e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| - will sooner or ||| 1 0.0113744 8.48644e-07 3.05938e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| - will sooner ||| 1 0.0113744 8.48644e-07 2.67592e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| - with Article 24 of the Spanish ||| 1 0.0535436 8.48644e-07 5.57354e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - with Article 24 of the ||| 1 0.0535436 8.48644e-07 2.49934e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - with Article 24 of ||| 1 0.0535436 8.48644e-07 4.07114e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - with Article 24 ||| 1 0.0535436 8.48644e-07 7.48867e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - with Article ||| 1 0.0535436 8.48644e-07 8.70775e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| - with regard ||| 0.0833333 0.0535436 1.69729e-06 2.9945e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| - with ||| 0.00894188 0.0535436 5.09187e-06 4.39785e-05 2.718 ||| 0-1 ||| 671 1.17835e+06 +en ||| - within ||| 0.0535714 0.369196 2.54593e-06 4.18201e-05 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| - ||| 2.17578e-05 5.1e-05 1.69729e-06 4.8e-06 2.718 ||| 0-0 ||| 91921 1.17835e+06 +en ||| . ( El ) As ||| 0.333333 6.3e-05 8.48644e-07 1.2328e-20 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| . ( El ) In ||| 0.5 0.0659459 8.48644e-07 3.13635e-18 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| . ( El ) ||| 0.0344828 6.3e-05 8.48644e-07 2.02098e-15 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| . ( El ||| 0.0344828 6.3e-05 8.48644e-07 1.4061e-12 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| . ( NL ) In ||| 0.25 0.0659459 1.69729e-06 7.89315e-18 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| . ( PT ) At ||| 1 0.0814815 1.69729e-06 3.02614e-18 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| . ( PT ) In ||| 0.333333 0.0659459 8.48644e-07 1.67446e-17 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| . ( PT ) With ||| 0.5 6.3e-05 8.48644e-07 2.37375e-20 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| . ( PT ) ||| 0.0113636 6.3e-05 8.48644e-07 1.07898e-14 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| . ( PT ||| 0.0114943 6.3e-05 8.48644e-07 7.50699e-12 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| . ( fr ) At ||| 0.5 0.0814815 8.48644e-07 8.59662e-19 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| . ( fr ) In the ||| 0.333333 6.3e-05 8.48644e-07 2.91672e-21 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| . ( fr ) In ||| 1 0.0659459 3.39458e-06 4.7568e-18 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| . ( fr ) ||| 0.0147059 6.3e-05 8.48644e-07 3.06515e-15 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| . ( fr ||| 0.0142857 6.3e-05 8.48644e-07 2.13258e-12 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| . ( ||| 0.00998004 6.3e-05 4.24322e-06 7.81164e-08 2.718 ||| 0-0 ||| 501 1.17835e+06 +en ||| . - ( PT ) In ||| 0.025 0.0659459 8.48644e-07 6.31624e-20 2.718 ||| 0-5 ||| 40 1.17835e+06 +en ||| . I agree with ||| 0.0294118 0.0060084 8.48644e-07 7.48798e-12 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| . I agree ||| 0.0238095 0.0060084 8.48644e-07 1.171e-09 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| . I assume that ||| 0.5 0.0060084 8.48644e-07 4.4943e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| . I assume ||| 0.5 0.0060084 8.48644e-07 2.67174e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| . I could ||| 0.125 0.0060084 8.48644e-07 5.23381e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| . I did so ||| 0.2 0.0087276 8.48644e-07 6.62814e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| . I have been there myself and ||| 1 0.0117359 8.48644e-07 1.86896e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| . I have been there myself ||| 1 0.0117359 8.48644e-07 1.49208e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| . I have been there ||| 1 0.0117359 8.48644e-07 9.59534e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| . I hope and trust that we ||| 1 0.192848 8.48644e-07 6.29697e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| . I hope and trust that ||| 1 0.192848 8.48644e-07 5.54687e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| . I hope and trust ||| 1 0.192848 8.48644e-07 3.29747e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| . I think it is clear that ||| 1 0.0060084 8.48644e-07 8.78667e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| . I think it is clear ||| 0.333333 0.0060084 8.48644e-07 5.22345e-16 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| . I think it is ||| 0.0666667 0.0060084 8.48644e-07 1.56907e-12 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| . I think it ||| 0.0526316 0.0060084 8.48644e-07 5.00644e-11 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| . I think ||| 0.00632911 0.0060084 8.48644e-07 2.81526e-09 2.718 ||| 0-1 ||| 158 1.17835e+06 +en ||| . I would say that ||| 0.5 0.0060084 8.48644e-07 6.94487e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| . I would say ||| 0.166667 0.0060084 8.48644e-07 4.12854e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| . I would ||| 0.00617284 0.0060084 8.48644e-07 4.31946e-08 2.718 ||| 0-1 ||| 162 1.17835e+06 +en ||| . I ||| 0.00226347 0.0060084 4.24322e-06 7.36017e-06 2.718 ||| 0-1 ||| 2209 1.17835e+06 +en ||| . all in ||| 1 0.605812 8.48644e-07 6.60958e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| . am I right in saying ||| 1 0.0071334 8.48644e-07 1.8604e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| . am I right in ||| 1 0.0071334 8.48644e-07 1.0487e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| . am I right ||| 1 0.0071334 8.48644e-07 4.89945e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| . among ||| 0.0769231 0.0422459 8.48644e-07 9.64736e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| . as was apparent in ||| 1 0.605812 8.48644e-07 1.59196e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| . as ||| 0.00183824 0.066968 8.48644e-07 5.44853e-05 2.718 ||| 0-1 ||| 544 1.17835e+06 +en ||| . at home ||| 0.5 0.321886 8.48644e-07 1.22984e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| . at the ||| 0.00877193 0.321886 8.48644e-07 7.4386e-06 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| . at ||| 0.0897436 0.321886 1.1881e-05 0.000121166 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| . but ||| 0.000890472 6.3e-05 8.48644e-07 5.53554e-08 2.718 ||| 0-0 ||| 1123 1.17835e+06 +en ||| . during ||| 0.0740741 0.226251 1.69729e-06 8.75775e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| . emphasis will be placed in ||| 1 0.605812 8.48644e-07 1.40302e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| . everyone would gain from ||| 1 0.0308834 8.48644e-07 2.54013e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| . firstly , ||| 0.0060241 0.295867 8.48644e-07 1.93196e-06 2.718 ||| 0-1 ||| 166 1.17835e+06 +en ||| . firstly ||| 0.0162162 0.295867 2.54593e-06 1.62003e-05 2.718 ||| 0-1 ||| 185 1.17835e+06 +en ||| . for quite ||| 0.5 0.0286209 8.48644e-07 1.35947e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| . for ||| 0.00547945 0.0286209 1.69729e-06 3.48493e-05 2.718 ||| 0-1 ||| 365 1.17835e+06 +en ||| . here in ||| 1 0.605812 8.48644e-07 2.83635e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| . here ||| 0.030303 0.0855319 8.48644e-07 9.0873e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| . in addition , Parliament will receive ||| 1 0.605812 8.48644e-07 8.19992e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| . in addition , Parliament will ||| 1 0.605812 8.48644e-07 8.16725e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| . in addition , Parliament ||| 0.5 0.605812 8.48644e-07 9.4406e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| . in addition , ||| 0.0181818 0.605812 8.48644e-07 1.6447e-08 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| . in addition ||| 0.010989 0.605812 8.48644e-07 1.37915e-07 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| . in doing so ||| 0.142857 0.605812 8.48644e-07 1.16544e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| . in doing ||| 0.25 0.605812 8.48644e-07 5.13476e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| . in my opinion , ||| 0.0434783 0.605812 8.48644e-07 2.63247e-11 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| . in my opinion ||| 0.0322581 0.605812 8.48644e-07 2.20744e-10 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| . in my ||| 0.0163934 0.605812 8.48644e-07 8.99526e-07 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| . in other ||| 0.0204082 0.605812 8.48644e-07 1.81206e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| . in this aspect ||| 1 0.605812 8.48644e-07 6.37164e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| . in this ||| 0.00840336 0.605812 8.48644e-07 9.03779e-06 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| . in turn , ||| 0.333333 0.605812 8.48644e-07 3.73978e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| . in turn ||| 0.5 0.605812 8.48644e-07 3.13596e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| . in ||| 0.0647103 0.605812 7.29834e-05 0.00139873 2.718 ||| 0-1 ||| 1329 1.17835e+06 +en ||| . indeed ||| 0.0181818 0.0919982 1.69729e-06 4.93848e-06 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| . it is in nobody 's ||| 0.5 0.605812 8.48644e-07 1.27678e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| . it is in nobody ||| 0.5 0.605812 8.48644e-07 6.70437e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| . it is in ||| 0.08 0.605812 1.69729e-06 7.79578e-07 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| . it is on that basis ||| 0.5 0.22993 8.48644e-07 1.40043e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| . it is on that ||| 0.5 0.22993 8.48644e-07 2.35842e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| . it is on ||| 0.5 0.22993 8.48644e-07 1.40202e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| . it is therefore important to emphasise ||| 1 0.207288 8.48644e-07 4.30277e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| . it ||| 0.000746826 0.0080472 1.69729e-06 8.35368e-06 2.718 ||| 0-1 ||| 2678 1.17835e+06 +en ||| . now , in ||| 0.5 0.605812 8.48644e-07 3.43603e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| . on ||| 0.0336134 0.22993 6.78915e-06 0.000251554 2.718 ||| 0-1 ||| 238 1.17835e+06 +en ||| . secondly ||| 0.0135135 0.303244 8.48644e-07 1.75319e-05 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| . so in ||| 0.25 0.605812 8.48644e-07 3.17471e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| . take Ostend airport in ||| 1 0.605812 8.48644e-07 5.49479e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| . that will make things easier for ||| 1 0.0017499 8.48644e-07 1.04943e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| . that will make things easier ||| 1 0.0017499 8.48644e-07 1.36544e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| . that will make things ||| 1 0.0017499 8.48644e-07 1.95622e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| . that will make ||| 1 0.0017499 8.48644e-07 4.75965e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| . that will ||| 0.0333333 0.0017499 8.48644e-07 2.73889e-08 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| . that ||| 0.000887311 0.0017499 8.48644e-07 3.16591e-06 2.718 ||| 0-1 ||| 1127 1.17835e+06 +en ||| . the second , referred to by ||| 1 0.0468744 8.48644e-07 1.04438e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| . there have been ||| 0.1 0.0117359 8.48644e-07 1.35652e-10 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| . there have ||| 0.125 0.0117359 8.48644e-07 4.06241e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| . there would be ||| 0.333333 0.0117359 8.48644e-07 3.61268e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| . there would ||| 0.5 0.0117359 8.48644e-07 1.99343e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| . there ||| 0.0057971 0.0117359 1.69729e-06 3.39672e-06 2.718 ||| 0-1 ||| 345 1.17835e+06 +en ||| . this applies to some ||| 0.5 0.0247351 8.48644e-07 5.02171e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| . this applies to ||| 0.166667 0.0247351 8.48644e-07 4.61004e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| . this forthcoming free trade agreement with ||| 1 0.0535436 8.48644e-07 1.89204e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| . this is a serious matter ||| 0.5 0.0013296 8.48644e-07 2.39899e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| . this is a serious ||| 0.333333 0.0013296 8.48644e-07 2.31228e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| . this is a ||| 0.00769231 0.0013296 8.48644e-07 2.00719e-09 2.718 ||| 0-1 ||| 130 1.17835e+06 +en ||| . this is in ||| 0.0666667 0.605812 8.48644e-07 2.83254e-07 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| . this is ||| 0.000992064 0.0013296 8.48644e-07 4.52827e-08 2.718 ||| 0-1 ||| 1008 1.17835e+06 +en ||| . this security also particularly depends on ||| 1 0.22993 8.48644e-07 1.80703e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| . this uneasiness ||| 1 6.3e-05 8.48644e-07 2.09349e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| . this ||| 0.000529381 6.3e-05 1.69729e-06 5.23373e-07 2.718 ||| 0-0 ||| 3778 1.17835e+06 +en ||| . thus , for ||| 0.5 0.0286209 8.48644e-07 7.0734e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| . to ||| 0.0283019 0.0247351 2.54593e-06 8.514e-05 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| . unfortunately , however many ||| 1 0.0053256 8.48644e-07 2.87316e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| . unfortunately , however ||| 1 0.0053256 8.48644e-07 8.36923e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| . we , in ||| 1 0.605812 8.48644e-07 1.89363e-06 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| . we are setting ||| 1 0.0054082 8.48644e-07 9.88423e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| . we are ||| 0.00413223 0.0054082 8.48644e-07 1.04045e-07 2.718 ||| 0-1 ||| 242 1.17835e+06 +en ||| . we can do so ||| 1 0.0087276 8.48644e-07 2.393e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| . we have always been ||| 1 0.0054082 8.48644e-07 4.71033e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| . we have always ||| 0.25 0.0054082 8.48644e-07 1.41062e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| . we have now ||| 0.5 0.0123946 8.48644e-07 2.43461e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| . we have ||| 0.004 0.0054082 8.48644e-07 8.20126e-08 2.718 ||| 0-1 ||| 250 1.17835e+06 +en ||| . we not only provide ||| 1 0.0054082 8.48644e-07 7.70842e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| . we not only ||| 1 0.0054082 8.48644e-07 2.60596e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| . we not ||| 1 0.0054082 8.48644e-07 2.34117e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| . we will decide all together what ||| 0.5 0.0035633 8.48644e-07 2.11385e-20 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| . we ||| 0.00250156 0.0054082 3.39458e-06 6.85735e-06 2.718 ||| 0-1 ||| 1599 1.17835e+06 +en ||| . well , Mr ||| 1 0.0001675 8.48644e-07 1.5178e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| . when we look ||| 0.333333 0.142731 8.48644e-07 5.96732e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| . when we ||| 0.0769231 0.142731 8.48644e-07 2.04711e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| . when ||| 0.0444444 0.142731 3.39458e-06 1.80325e-05 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| . within ||| 0.25 0.369196 8.48644e-07 3.35816e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| . ||| 4.1841e-05 6.3e-05 6.95888e-05 8.1e-05 2.718 ||| 0-0 ||| 1.9598e+06 1.17835e+06 +en ||| . – ||| 0.00135135 6.3e-05 1.69729e-06 3.1833e-08 2.718 ||| 0-0 ||| 1480 1.17835e+06 +en ||| .. e in ||| 0.2 0.605812 8.48644e-07 5.9108e-13 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| ... ] to ||| 0.166667 0.0247351 8.48644e-07 3.71091e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| ... in the ||| 0.333333 0.605812 8.48644e-07 1.00074e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| ... in ||| 0.105263 0.605812 1.69729e-06 1.63009e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| / 2001 , by ||| 0.0196078 0.0468744 8.48644e-07 4.52675e-12 2.718 ||| 0-3 ||| 51 1.17835e+06 +en ||| / or in ||| 0.166667 0.605812 8.48644e-07 1.21429e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| 000 arrivals per year from the African ||| 1 0.0117312 8.48644e-07 1.48812e-27 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 000 arrivals per year from the ||| 1 0.0117312 8.48644e-07 8.60186e-23 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 000 arrivals per year from ||| 1 0.0117312 8.48644e-07 1.40114e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 000 arrivals per year ||| 1 0.0117312 8.48644e-07 8.70058e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 000 arrivals per ||| 1 0.0117312 8.48644e-07 3.4886e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 000 by ||| 0.166667 0.0468744 8.48644e-07 8.90693e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| 000 children in ||| 0.333333 0.605812 8.48644e-07 3.60196e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| 000 in ||| 0.0571429 0.605812 3.39458e-06 4.83485e-05 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| 000 into ||| 1 0.525896 8.48644e-07 2.31778e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| 000 under ||| 1 0.205566 8.48644e-07 5.92037e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| 000m in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| 1 August 2008 to 31 ||| 0.333333 0.0247351 1.69729e-06 1.2733e-21 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| 1 August 2008 to ||| 0.333333 0.0247351 1.69729e-06 1.5341e-16 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| 1 to ||| 0.0047619 0.0247351 8.48644e-07 1.7905e-06 2.718 ||| 0-1 ||| 210 1.17835e+06 +en ||| 1-A ||| 0.5 0.6 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| 10.9 for ||| 0.5 0.0286209 8.48644e-07 4.60208e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| 1000 jobs in the area ||| 0.5 0.605812 8.48644e-07 4.2691e-16 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| 1000 jobs in the ||| 0.5 0.605812 8.48644e-07 1.02796e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| 1000 jobs in ||| 0.25 0.605812 8.48644e-07 1.67442e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| 1191 in ||| 0.333333 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| 150 million respectively . in addition , ||| 1 0.605812 8.48644e-07 1.80192e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| 150 million respectively . in addition ||| 1 0.605812 8.48644e-07 1.51098e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| 150 million respectively . in ||| 1 0.605812 8.48644e-07 1.53244e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| 1988 in ||| 0.5 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| 1993 to ||| 0.030303 0.0247351 8.48644e-07 7.02708e-08 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| 1995 over ||| 0.25 0.157937 8.48644e-07 1.88338e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| 1996 to ||| 0.0147059 0.0247351 8.48644e-07 2.83894e-07 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| 1998 in ||| 0.0232558 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| 2 is shut down in 2008 ||| 1 0.605812 8.48644e-07 1.36786e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| 2 is shut down in ||| 1 0.605812 8.48644e-07 5.74733e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| 2 million in ||| 0.5 0.605812 8.48644e-07 1.23207e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| 20 to ||| 0.00657895 0.0247351 8.48644e-07 3.0357e-07 2.718 ||| 0-1 ||| 152 1.17835e+06 +en ||| 200 ||| 0.00062461 0.0006369 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1601 1.17835e+06 +en ||| 2000 at ||| 0.0666667 0.321886 8.48644e-07 1.15206e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| 2000 in ||| 0.0277778 0.605812 1.69729e-06 1.32993e-05 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| 2001 , by ||| 0.0175439 0.0468744 8.48644e-07 1.96815e-08 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| 2001 in ||| 0.0163934 0.605812 8.48644e-07 8.95855e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| 2002 in ||| 0.0285714 0.605812 8.48644e-07 7.48085e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| 2003 , in particular in ||| 0.5 0.605812 8.48644e-07 8.34204e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| 2003 in ||| 0.02 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| 2004 Budget in ||| 0.166667 0.605812 8.48644e-07 5.64389e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| 2007 on ||| 0.0357143 0.22993 1.69729e-06 1.31216e-06 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| 2008 to 31 ||| 0.285714 0.0247351 1.69729e-06 5.55251e-12 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| 2008 to ||| 0.0235294 0.0247351 1.69729e-06 6.68978e-07 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| 2009 in ||| 0.0196078 0.605812 8.48644e-07 6.00315e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| 2013 in order to recover ||| 1 0.605812 8.48644e-07 1.31562e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| 2013 in order to ||| 0.125 0.605812 8.48644e-07 3.05959e-11 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| 2013 in order ||| 0.142857 0.605812 8.48644e-07 3.44322e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| 2013 in ||| 0.0625 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| 21 in relation to ||| 1 0.605812 8.48644e-07 8.28617e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| 21 in relation ||| 1 0.605812 8.48644e-07 9.32516e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| 21 in ||| 0.0769231 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| 25 posts in ||| 1 0.605812 8.48644e-07 4.38415e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 3 to ||| 0.0070922 0.0247351 8.48644e-07 6.46491e-07 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| 30 000 arrivals per year from the ||| 1 0.0117312 8.48644e-07 1.14405e-27 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 30 000 arrivals per year from ||| 1 0.0117312 8.48644e-07 1.86352e-26 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 30 000 arrivals per year ||| 1 0.0117312 8.48644e-07 1.15718e-23 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 30 000 arrivals per ||| 1 0.0117312 8.48644e-07 4.63984e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 30 recommendations in ||| 1 0.605812 8.48644e-07 5.95744e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 300m in ||| 0.25 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| 36 and 39 to 44 in ||| 1 0.605812 8.48644e-07 2.95125e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| 37 of ||| 0.0588235 0.0116562 8.48644e-07 3.40925e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| 39 to 44 in ||| 1 0.605812 8.48644e-07 2.14192e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 4 % in ||| 0.030303 0.605812 8.48644e-07 5.09742e-10 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| 4 in order to avoid putting too ||| 1 0.605812 8.48644e-07 2.27929e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| 4 in order to avoid putting ||| 1 0.605812 8.48644e-07 1.67472e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| 4 in order to avoid ||| 1 0.605812 8.48644e-07 1.49662e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| 4 in order to ||| 0.2 0.605812 8.48644e-07 4.23971e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| 4 in order ||| 0.25 0.605812 8.48644e-07 4.77133e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| 4 in ||| 0.0243902 0.605812 8.48644e-07 8.95855e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| 44 000 into ||| 1 0.525896 8.48644e-07 4.172e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 44 in ||| 0.142857 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| 5 states that , in ||| 1 0.605812 8.48644e-07 1.12853e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| 50 cent coin in order to meet ||| 1 0.605812 8.48644e-07 1.5998e-24 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 50 cent coin in order to ||| 1 0.605812 8.48644e-07 1.31562e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 50 cent coin in order ||| 1 0.605812 8.48644e-07 1.48059e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 50 cent coin in ||| 1 0.605812 8.48644e-07 2.77992e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| 500 on ||| 1 0.22993 8.48644e-07 3.57108e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| 60 % of ||| 0.00429185 0.0116562 1.69729e-06 3.64694e-12 2.718 ||| 0-2 ||| 466 1.17835e+06 +en ||| 7 to 8 % fall in ||| 0.333333 0.605812 8.48644e-07 2.53379e-20 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| 70 billion in ||| 1 0.605812 8.48644e-07 2.30613e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| 8 % fall in ||| 0.333333 0.605812 8.48644e-07 3.16833e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| 80 % to ||| 0.0625 0.0247351 8.48644e-07 1.7593e-12 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| 8th Conference of ||| 0.333333 0.0116562 8.48644e-07 1.02005e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| 97 ) by ||| 0.0078125 0.0468744 8.48644e-07 7.45863e-11 2.718 ||| 0-2 ||| 128 1.17835e+06 +en ||| : and this within ||| 1 0.369196 8.48644e-07 3.02211e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| : as ||| 0.00363636 0.066968 8.48644e-07 6.05832e-06 2.718 ||| 0-1 ||| 275 1.17835e+06 +en ||| : first , ||| 0.00404858 0.138055 8.48644e-07 2.45484e-07 2.718 ||| 0-1 ||| 247 1.17835e+06 +en ||| : first ||| 0.00278552 0.138055 8.48644e-07 2.05849e-06 2.718 ||| 0-1 ||| 359 1.17835e+06 +en ||| : firstly ||| 0.00112994 0.295867 8.48644e-07 1.80134e-06 2.718 ||| 0-1 ||| 885 1.17835e+06 +en ||| : having identified these excesses ||| 1 0.0065553 8.48644e-07 2.27511e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| : having identified these ||| 1 0.0065553 8.48644e-07 1.03414e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| : having identified ||| 1 0.0065553 8.48644e-07 9.97147e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| : having ||| 0.0333333 0.0065553 8.48644e-07 2.58999e-08 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| : in other words , ||| 0.00862069 0.605812 8.48644e-07 5.43037e-12 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| : in other words ||| 0.00847458 0.605812 8.48644e-07 4.55359e-11 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| : in other ||| 0.0133333 0.605812 8.48644e-07 2.01486e-07 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| : in such ||| 0.25 0.605812 8.48644e-07 3.21772e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| : in ||| 0.0102389 0.605812 1.01837e-05 0.000155528 2.718 ||| 0-1 ||| 1172 1.17835e+06 +en ||| : more specifically ||| 1 0.148651 8.48644e-07 5.2756e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| : pragmatically ||| 0.25 0.0215827 8.48644e-07 6.736e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| : progress report ||| 0.03125 0.0004293 8.48644e-07 1.32626e-12 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| : that we ||| 0.1 0.0054082 8.48644e-07 1.28262e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| : these ||| 0.00515464 0.0014765 8.48644e-07 3.52966e-08 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| : those at ||| 1 0.321886 8.48644e-07 9.75556e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| : what ||| 0.00102881 0.0035633 8.48644e-07 1.31554e-07 2.718 ||| 0-1 ||| 972 1.17835e+06 +en ||| : where will ||| 0.333333 0.247783 8.48644e-07 2.4815e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| : where ||| 0.00840336 0.247783 8.48644e-07 2.86839e-06 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| : ||| 4.02263e-05 8.68e-05 2.54593e-06 4.1e-06 2.718 ||| 0-0 ||| 74578 1.17835e+06 +en ||| ; as ||| 0.00515464 0.066968 8.48644e-07 5.54027e-06 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| ; at ||| 0.00892857 0.321886 8.48644e-07 1.23206e-05 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| ; for that is ||| 0.333333 0.0286209 8.48644e-07 1.86821e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| ; for that ||| 0.125 0.0286209 8.48644e-07 5.9609e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| ; for ||| 0.00294985 0.0286209 8.48644e-07 3.5436e-06 2.718 ||| 0-1 ||| 339 1.17835e+06 +en ||| ; he ||| 0.0103093 0.0056615 8.48644e-07 4.21344e-08 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| ; here ||| 0.0294118 0.0855319 8.48644e-07 9.24031e-07 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| ; if ||| 0.00277778 0.0178573 8.48644e-07 3.57126e-07 2.718 ||| 0-1 ||| 360 1.17835e+06 +en ||| ; in other ||| 0.00456621 0.605812 8.48644e-07 1.84257e-07 2.718 ||| 0-1 ||| 219 1.17835e+06 +en ||| ; in terms of ||| 0.125 0.605812 8.48644e-07 8.48677e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| ; in terms ||| 0.142857 0.605812 8.48644e-07 1.5611e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| ; in ||| 0.00909091 0.605812 8.48644e-06 0.000142229 2.718 ||| 0-1 ||| 1100 1.17835e+06 +en ||| ; instead ||| 0.00729927 0.340662 1.69729e-06 1.0391e-06 2.718 ||| 0-1 ||| 274 1.17835e+06 +en ||| ; it makes ||| 0.1 0.0080472 8.48644e-07 1.44319e-10 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| ; it ||| 0.000485909 0.0080472 8.48644e-07 8.49433e-07 2.718 ||| 0-1 ||| 2058 1.17835e+06 +en ||| ; on the ||| 0.0025 0.22993 8.48644e-07 1.57034e-06 2.718 ||| 0-1 ||| 400 1.17835e+06 +en ||| ; on ||| 0.00542005 0.22993 1.69729e-06 2.55789e-05 2.718 ||| 0-1 ||| 369 1.17835e+06 +en ||| ; one in ||| 0.0666667 0.605812 8.48644e-07 5.92809e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| ; that is why we need nutrient ||| 0.5 0.0054082 8.48644e-07 9.13947e-23 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| ; that is why we need ||| 0.166667 0.0054082 8.48644e-07 8.30861e-17 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| ; that is why we ||| 0.0833333 0.0054082 8.48644e-07 9.06163e-14 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| ; these receive my ||| 1 0.002535 8.48644e-07 4.53797e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ; through ||| 0.0666667 0.0366102 8.48644e-07 2.89643e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| ; we are extremely active ||| 1 0.0054082 8.48644e-07 4.05041e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ; we are extremely ||| 1 0.0054082 8.48644e-07 1.00507e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ; we are ||| 0.00392157 0.0054082 8.48644e-07 1.05796e-08 2.718 ||| 0-1 ||| 255 1.17835e+06 +en ||| ; we ||| 0.00199601 0.0054082 1.69729e-06 6.97281e-07 2.718 ||| 0-1 ||| 1002 1.17835e+06 +en ||| ? ' has exercised ||| 1 0.0032578 8.48644e-07 3.72112e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ? ' has ||| 0.5 0.0032578 8.48644e-07 2.40072e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ? ' ||| 0.00224719 0.0032578 8.48644e-07 4.66386e-08 2.718 ||| 0-1 ||| 445 1.17835e+06 +en ||| ? in ||| 0.2 0.605812 3.39458e-06 7.89184e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| A ) in ||| 1 0.605812 8.48644e-07 7.89824e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| A in the ||| 0.5 0.605812 8.48644e-07 3.3736e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| A in ||| 0.2 0.605812 8.48644e-07 5.4952e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| APIs in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Abdullah Öçalan was in ||| 0.5 0.605812 8.48644e-07 2.31482e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Abgeordnete des Europäischen Parlaments ' ||| 1 0.0096154 8.48644e-07 1.53884e-28 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Abgeordnete des Europäischen Parlaments ||| 1 0.0096154 8.48644e-07 4.48e-26 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Abgeordnete des Europäischen ||| 1 0.0096154 8.48644e-07 1.12e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Abgeordnete des ||| 1 0.0096154 8.48644e-07 2.8e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Académie goes on to explain that ||| 1 0.22993 8.48644e-07 1.80868e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Académie goes on to explain ||| 1 0.22993 8.48644e-07 1.07521e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Académie goes on to ||| 1 0.22993 8.48644e-07 4.08826e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Académie goes on ||| 1 0.22993 8.48644e-07 4.60088e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Access to Justice in Environmental ||| 1 0.605812 8.48644e-07 3.87762e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Access to Justice in ||| 0.0833333 0.605812 8.48644e-07 1.55105e-12 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| Acryl amide ||| 0.0666667 0.0769231 8.48644e-07 2.8e-13 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| Action in ||| 0.1 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| Administration at ||| 1 0.321886 8.48644e-07 1.60008e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Administration in ||| 0.0769231 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| Advisory Centre in ||| 1 0.605812 8.48644e-07 1.95333e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Affairs , with ||| 1 0.0535436 8.48644e-07 1.24022e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Affairs on ||| 0.1 0.22993 8.48644e-07 7.40792e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| Africa , but ||| 0.0172414 0.001622 8.48644e-07 7.16186e-10 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| Africa in ||| 0.0114943 0.605812 8.48644e-07 1.57929e-05 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| Africa on ||| 0.0322581 0.22993 8.48644e-07 2.84026e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| Africa to ||| 0.010989 0.0247351 8.48644e-07 9.61304e-07 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| African leaders to account ? ||| 1 0.233636 8.48644e-07 1.44164e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| African leaders to account ||| 1 0.233636 8.48644e-07 8.43558e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Age of ||| 0.142857 0.0116562 8.48644e-07 5.4548e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| Agency for Cancer Research based in ||| 1 0.605812 8.48644e-07 1.48073e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Agreement and International Agreement on ||| 1 0.22993 8.48644e-07 1.32858e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Agreement on ||| 0.00625 0.22993 8.48644e-07 1.67758e-06 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| Agriculture in ||| 0.0555556 0.605812 8.48644e-07 6.3264e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| Alcohol ||| 0.0588235 0.0416667 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| Algeria . in doing so ||| 1 0.605812 8.48644e-07 3.72939e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Algeria . in doing ||| 1 0.605812 8.48644e-07 1.64312e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Algeria . in ||| 1 0.605812 8.48644e-07 4.47595e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Algeria by ||| 0.0769231 0.0468744 8.48644e-07 2.72227e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| Algeria is experiencing ||| 0.333333 0.0261115 8.48644e-07 2.52735e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| Alliance into ||| 0.25 0.525896 8.48644e-07 6.5305e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Amendment No 21 in relation to ||| 1 0.605812 8.48644e-07 1.53146e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Amendment No 21 in relation ||| 1 0.605812 8.48644e-07 1.72349e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Amendment No 21 in ||| 0.166667 0.605812 8.48644e-07 7.08379e-15 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| America at ||| 0.1 0.321886 8.48644e-07 1.10806e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| Americans for example ||| 0.5 0.0286209 8.48644e-07 3.14821e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Americans for ||| 0.0909091 0.0286209 8.48644e-07 1.08149e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| Americans in ||| 0.0487805 0.605812 1.69729e-06 4.34074e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| Area ||| 0.0031348 0.0115546 1.69729e-06 7.5e-06 2.718 ||| 0-0 ||| 638 1.17835e+06 +en ||| As it ||| 0.5 0.0034965 8.48644e-07 2.48965e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| As ||| 0.00368324 0.0034965 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 543 1.17835e+06 +en ||| Assembly on ||| 0.125 0.22993 1.69729e-06 7.47436e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| Assembly takes on a monitoring role as ||| 1 0.22993 8.48644e-07 3.69452e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Assembly takes on a monitoring role ||| 1 0.22993 8.48644e-07 3.62052e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Assembly takes on a monitoring ||| 1 0.22993 8.48644e-07 1.63086e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Assembly takes on a ||| 1 0.22993 8.48644e-07 4.28048e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Assembly takes on ||| 1 0.22993 8.48644e-07 9.65687e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| At ||| 0.0736842 0.0814815 5.94051e-06 7.5e-06 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| Auditors ' opinion on ||| 1 0.22993 8.48644e-07 9.10046e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| August 2008 to 31 ||| 0.333333 0.0247351 1.69729e-06 1.9989e-17 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| August 2008 to ||| 0.333333 0.0247351 1.69729e-06 2.40832e-12 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| Austria , in ||| 0.0714286 0.605812 8.48644e-07 5.72723e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| Austria but ||| 0.2 0.001622 8.48644e-07 1.82624e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| Authority should therefore be set up as ||| 1 0.066968 8.48644e-07 1.90207e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| BSE - in ||| 1 0.605812 8.48644e-07 1.95091e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Bali ||| 0.00201613 0.0160858 8.48644e-07 4.1e-06 2.718 ||| 0-0 ||| 496 1.17835e+06 +en ||| Balkans in the past ||| 0.2 0.605812 8.48644e-07 2.10632e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| Balkans in the ||| 0.0714286 0.605812 8.48644e-07 1.64428e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| Balkans in ||| 0.030303 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| Bank in ||| 0.0869565 0.605812 1.69729e-06 1.27913e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| Bavaria across ||| 1 0.274879 8.48644e-07 1.43801e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Belarus into ||| 0.2 0.525896 8.48644e-07 2.63434e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| Belarus when ||| 0.2 0.142731 8.48644e-07 7.08443e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| Bill of Rights in ||| 1 0.605812 8.48644e-07 1.44801e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Border ||| 0.0108696 0.0207612 8.48644e-07 4.1e-06 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| Bosnia , Kosovo and Turkey ( over ||| 1 0.157937 8.48644e-07 3.90198e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| Brake ||| 0.333333 0.25 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| Brazil , ||| 0.00285714 0.0008319 8.48644e-07 8.34783e-08 2.718 ||| 0-0 ||| 350 1.17835e+06 +en ||| Brazil and the EU ||| 0.111111 0.0010182 8.48644e-07 7.00714e-14 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| Brazil and the ||| 0.0344828 0.0010182 8.48644e-07 1.41616e-10 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| Brazil and ||| 0.00460829 0.0010182 8.48644e-07 2.30675e-09 2.718 ||| 0-1 ||| 217 1.17835e+06 +en ||| Brazil in ||| 0.0434783 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| Brazil ||| 0.000740192 0.0008319 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1351 1.17835e+06 +en ||| Brok said in the debate ||| 0.333333 0.605812 8.48644e-07 3.23057e-15 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| Brok said in the ||| 0.333333 0.605812 8.48644e-07 1.63243e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| Brok said in ||| 0.25 0.605812 8.48644e-07 2.65903e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| Brussels as a vehicle ||| 1 0.066968 8.48644e-07 9.01937e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Brussels as a ||| 0.166667 0.066968 8.48644e-07 8.93007e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| Brussels as ||| 0.0416667 0.066968 8.48644e-07 2.01464e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| Brussels in ||| 0.010101 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| Budget in ||| 0.111111 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| Bureau in ||| 0.0555556 0.605812 8.48644e-07 4.98724e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| CFO in ||| 0.142857 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| CMO ) in ||| 0.25 0.605812 8.48644e-07 7.3009e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| Cancer Research based in ||| 1 0.605812 8.48644e-07 1.48201e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Central Bank in ||| 0.0588235 0.605812 8.48644e-07 2.85247e-10 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| Centre in ||| 0.142857 0.605812 1.69729e-06 4.15603e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| Ceuta from ||| 0.5 0.0308834 8.48644e-07 1.52204e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Chamber at present , ||| 0.5 0.321886 8.48644e-07 4.59192e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Chamber at present ||| 0.25 0.321886 8.48644e-07 3.85051e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Chamber at ||| 0.0454545 0.321886 8.48644e-07 1.05205e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| Chamber back in ||| 1 0.605812 8.48644e-07 8.16862e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Chechens in ||| 0.2 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| China and ||| 0.000825083 0.0001195 8.48644e-07 8.76813e-09 2.718 ||| 0-0 ||| 1212 1.17835e+06 +en ||| China in ||| 0.011976 0.605812 1.69729e-06 1.21448e-05 2.718 ||| 0-1 ||| 167 1.17835e+06 +en ||| China ||| 0.000104877 0.0001195 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 9535 1.17835e+06 +en ||| Christians in the ||| 0.0277778 0.303489 8.48644e-07 4.23317e-09 2.718 ||| 0-1 0-2 ||| 36 1.17835e+06 +en ||| Christodoulou , with ||| 1 0.0535436 8.48644e-07 5.56151e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| City by ||| 0.333333 0.0468744 8.48644e-07 3.65805e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Colombia in ||| 0.0714286 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| Commission ' s proposal concerning the shipyards ||| 0.5 0.0888235 8.48644e-07 1.02072e-22 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| Commission ' s proposal concerning the ||| 0.5 0.0888235 8.48644e-07 5.67069e-17 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| Commission ' s proposal concerning ||| 0.5 0.0888235 8.48644e-07 9.23688e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| Commission 's thinking in ||| 1 0.605812 8.48644e-07 3.80627e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Commission , on how the proposal for ||| 0.5 0.22993 8.48644e-07 1.95359e-16 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Commission , on how the proposal ||| 0.5 0.22993 8.48644e-07 2.54185e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Commission , on how the ||| 0.5 0.22993 8.48644e-07 1.27284e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Commission , on how ||| 0.5 0.22993 8.48644e-07 2.0733e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Commission , on ||| 0.00595238 0.22993 8.48644e-07 5.78488e-06 2.718 ||| 0-2 ||| 168 1.17835e+06 +en ||| Commission . on ||| 0.333333 0.22993 8.48644e-07 1.46932e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| Commission DG on ||| 1 0.22993 8.48644e-07 6.7912e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Commission as ||| 0.00198413 0.066968 8.48644e-07 1.05067e-05 2.718 ||| 0-1 ||| 504 1.17835e+06 +en ||| Commission at ||| 0.00621118 0.321886 8.48644e-07 2.33652e-05 2.718 ||| 0-1 ||| 161 1.17835e+06 +en ||| Commission but the ||| 0.166667 0.001622 8.48644e-07 6.29683e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| Commission but ||| 0.00625 0.001622 8.48644e-07 1.02568e-07 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| Commission does appear to ||| 0.333333 0.0247351 8.48644e-07 1.00647e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| Commission for ||| 0.00067981 0.0286209 8.48644e-07 6.72019e-06 2.718 ||| 0-1 ||| 1471 1.17835e+06 +en ||| Commission in respect of ||| 0.0384615 0.0116562 8.48644e-07 7.3756e-11 2.718 ||| 0-3 ||| 26 1.17835e+06 +en ||| Commission in ||| 0.00515198 0.605812 8.48644e-06 0.000269726 2.718 ||| 0-1 ||| 1941 1.17835e+06 +en ||| Commission is planning with ||| 1 0.0535436 8.48644e-07 5.99743e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Commission must come up with ||| 0.166667 0.0535436 8.48644e-07 3.04874e-14 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| Commission on how Europe and the European ||| 0.5 0.22993 8.48644e-07 2.26209e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Commission on how Europe and the ||| 0.5 0.22993 8.48644e-07 6.76482e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Commission on how Europe and ||| 0.5 0.22993 8.48644e-07 1.10191e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Commission on how Europe ||| 0.5 0.22993 8.48644e-07 8.79705e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Commission on how ||| 0.0526316 0.22993 8.48644e-07 1.73855e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| Commission on ||| 0.00130378 0.22993 2.54593e-06 4.85086e-05 2.718 ||| 0-1 ||| 2301 1.17835e+06 +en ||| Commission participates fully in the common foreign ||| 1 0.605812 8.48644e-07 1.65787e-23 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Commission participates fully in the common ||| 1 0.605812 8.48644e-07 6.07277e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Commission participates fully in the ||| 1 0.605812 8.48644e-07 2.6289e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Commission participates fully in ||| 0.5 0.605812 8.48644e-07 4.28218e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Commission presented right from the ||| 1 0.0308834 8.48644e-07 6.93397e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Commission presented right from ||| 1 0.0308834 8.48644e-07 1.12946e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Commission so as ||| 0.25 0.066968 8.48644e-07 2.38471e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| Commission takes the view that those ||| 1 0.0117268 8.48644e-07 2.14632e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Commission takes the view that ||| 0.0142857 0.0117268 8.48644e-07 2.96412e-14 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| Commission takes the view ||| 0.0144928 0.0117268 8.48644e-07 1.76209e-12 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| Commission takes the ||| 0.0285714 0.0117268 8.48644e-07 1.95073e-09 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| Commission takes ||| 0.00469484 0.0117268 8.48644e-07 3.1775e-08 2.718 ||| 0-1 ||| 213 1.17835e+06 +en ||| Commission under ||| 0.010989 0.205566 8.48644e-07 3.30285e-06 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| Commission will so far as ||| 1 0.066968 8.48644e-07 1.40845e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Commissioner , in ||| 0.00662252 0.605812 1.69729e-06 4.85714e-06 2.718 ||| 0-2 ||| 302 1.17835e+06 +en ||| Commissioner , that in ||| 0.0625 0.605812 8.48644e-07 8.17048e-08 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| Commissioner , with regard to ||| 0.111111 0.0535436 8.48644e-07 7.41963e-12 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| Commissioner , with regard ||| 0.0909091 0.0535436 8.48644e-07 8.34997e-11 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| Commissioner , with ||| 0.0128205 0.0535436 8.48644e-07 1.22631e-07 2.718 ||| 0-2 ||| 78 1.17835e+06 +en ||| Commissioner Ferrero-Waldner emphasised ||| 1 0.152435 8.48644e-07 1.70958e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Commissioner responsible for consumers , I am ||| 1 0.0286209 8.48644e-07 6.04886e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Commissioner responsible for consumers , I ||| 1 0.0286209 8.48644e-07 4.73492e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Commissioner responsible for consumers , ||| 1 0.0286209 8.48644e-07 6.69388e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Commissioner responsible for consumers ||| 1 0.0286209 8.48644e-07 5.6131e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Commissioner responsible for ||| 0.00444444 0.0286209 8.48644e-07 1.50083e-10 2.718 ||| 0-2 ||| 225 1.17835e+06 +en ||| Committee on Budgetary Control ||| 0.00179426 0.22993 2.54593e-06 5.28599e-16 2.718 ||| 0-1 ||| 1672 1.17835e+06 +en ||| Committee on Budgetary ||| 0.157895 0.22993 2.54593e-06 5.44947e-11 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| Committee on Economic and Monetary Affairs and ||| 0.00243309 0.22993 8.48644e-07 6.30267e-23 2.718 ||| 0-1 ||| 411 1.17835e+06 +en ||| Committee on Economic and Monetary Affairs ||| 0.000579374 0.22993 8.48644e-07 5.03171e-21 2.718 ||| 0-1 ||| 1726 1.17835e+06 +en ||| Committee on Economic and Monetary ||| 0.047619 0.22993 8.48644e-07 5.64093e-17 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| Committee on Economic and ||| 0.000627746 0.22993 8.48644e-07 4.90516e-12 2.718 ||| 0-1 ||| 1593 1.17835e+06 +en ||| Committee on Economic ||| 0.000623441 0.22993 8.48644e-07 3.91601e-10 2.718 ||| 0-1 ||| 1604 1.17835e+06 +en ||| Committee on External Affairs ||| 0.0769231 0.22993 8.48644e-07 2.92786e-14 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| Committee on External ||| 0.00526316 0.22993 8.48644e-07 3.28236e-10 2.718 ||| 0-1 ||| 190 1.17835e+06 +en ||| Committee on Fisheries has added to it ||| 1 0.22993 8.48644e-07 4.77741e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Committee on Fisheries has added to ||| 1 0.22993 8.48644e-07 2.68647e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Committee on Fisheries has added ||| 1 0.22993 8.48644e-07 3.02333e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Committee on Fisheries has ||| 0.025641 0.22993 8.48644e-07 4.24029e-13 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| Committee on Fisheries ||| 0.000909091 0.22993 8.48644e-07 8.23757e-11 2.718 ||| 0-1 ||| 1100 1.17835e+06 +en ||| Committee on Foreign Affairs , Human Rights ||| 0.00258398 0.22993 8.48644e-07 5.51579e-24 2.718 ||| 0-1 ||| 387 1.17835e+06 +en ||| Committee on Foreign Affairs , Human ||| 0.0294118 0.22993 8.48644e-07 6.69392e-20 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| Committee on Foreign Affairs , ||| 0.00127389 0.22993 8.48644e-07 1.6447e-15 2.718 ||| 0-1 ||| 785 1.17835e+06 +en ||| Committee on Foreign Affairs ||| 0.000664894 0.22993 8.48644e-07 1.37915e-14 2.718 ||| 0-1 ||| 1504 1.17835e+06 +en ||| Committee on Foreign ||| 0.0555556 0.22993 8.48644e-07 1.54613e-10 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| Committee on Industry , External ||| 0.0434783 0.22993 8.48644e-07 2.38776e-16 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| Committee on Industry , ||| 0.00111732 0.22993 8.48644e-07 9.21916e-12 2.718 ||| 0-1 ||| 895 1.17835e+06 +en ||| Committee on Industry ||| 0.000961538 0.22993 8.48644e-07 7.73064e-11 2.718 ||| 0-1 ||| 1040 1.17835e+06 +en ||| Committee on Internal Market ||| 0.0104167 0.22993 8.48644e-07 1.04963e-14 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| Committee on Internal ||| 0.0108696 0.22993 8.48644e-07 3.51047e-10 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| Committee on Women ' s Rights and ||| 0.0232558 0.22993 8.48644e-07 1.11111e-21 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| Committee on Women ' s Rights ||| 0.0163934 0.22993 8.48644e-07 8.87053e-20 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| Committee on Women ' s ||| 1 0.22993 8.48644e-07 1.07652e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Committee on Women ' ||| 1 0.22993 8.48644e-07 5.65905e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Committee on Women ||| 0.142857 0.22993 8.48644e-07 1.64751e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| Committee on the Environment , Public Health ||| 0.00107933 0.22993 1.69729e-06 2.09153e-20 2.718 ||| 0-1 ||| 1853 1.17835e+06 +en ||| Committee on the Environment , Public ||| 0.00109529 0.22993 1.69729e-06 1.96388e-16 2.718 ||| 0-1 ||| 1826 1.17835e+06 +en ||| Committee on the Environment , ||| 0.0010304 0.22993 1.69729e-06 1.83712e-12 2.718 ||| 0-1 ||| 1941 1.17835e+06 +en ||| Committee on the Environment ||| 0.000802246 0.22993 1.69729e-06 1.5405e-11 2.718 ||| 0-1 ||| 2493 1.17835e+06 +en ||| Committee on the ||| 0.00421941 0.22993 1.69729e-06 7.7803e-07 2.718 ||| 0-1 ||| 474 1.17835e+06 +en ||| Committee on ||| 0.000724113 0.22993 1.52756e-05 1.26732e-05 2.718 ||| 0-1 ||| 24858 1.17835e+06 +en ||| Common Security and Defence Policy on 13 ||| 0.333333 0.22993 8.48644e-07 4.44009e-26 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| Common Security and Defence Policy on ||| 0.125 0.22993 8.48644e-07 4.7235e-21 2.718 ||| 0-5 ||| 8 1.17835e+06 +en ||| Communities ( KICs ) within ||| 0.5 0.369196 8.48644e-07 9.52793e-20 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| Community in ||| 0.00892857 0.605812 8.48644e-07 7.47624e-05 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| Community into ||| 0.166667 0.525896 8.48644e-07 3.58403e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| Community on ||| 0.0526316 0.22993 8.48644e-07 1.34455e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| Conditions in ||| 0.2 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| Conference of ||| 0.000560224 0.0116562 8.48644e-07 2.55012e-07 2.718 ||| 0-1 ||| 1785 1.17835e+06 +en ||| Conference on ||| 0.00900901 0.22993 8.48644e-07 1.55301e-06 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| Constantinople into ||| 1 0.525896 8.48644e-07 8.85492e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Consumer Policy and ||| 0.0192308 0.0010182 8.48644e-07 9.73559e-12 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| Consumer Policy as ||| 1 0.066968 8.48644e-07 1.89794e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Consumer Policy during ||| 1 0.226251 8.48644e-07 3.05067e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Consumer Protection , on ||| 0.011236 0.22993 8.48644e-07 3.84311e-11 2.718 ||| 0-3 ||| 89 1.17835e+06 +en ||| Consumer Protection in its ||| 1 0.605812 8.48644e-07 2.55291e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Consumer Protection in ||| 0.125 0.605812 8.48644e-07 1.7919e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| Convention and ||| 0.00285714 0.0010182 8.48644e-07 2.98955e-08 2.718 ||| 0-1 ||| 350 1.17835e+06 +en ||| Convention as ||| 0.030303 0.066968 8.48644e-07 5.82808e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| Convention in ||| 0.0151515 0.605812 8.48644e-07 1.49617e-05 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| Cooperation in ||| 0.00574713 0.605812 8.48644e-07 8.12735e-06 2.718 ||| 0-1 ||| 174 1.17835e+06 +en ||| Council , here in ||| 0.5 0.605812 8.48644e-07 3.86155e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Council , when ||| 0.0238095 0.142731 8.48644e-07 2.45504e-07 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| Council as ||| 0.00462963 0.066968 8.48644e-07 6.22022e-06 2.718 ||| 0-1 ||| 216 1.17835e+06 +en ||| Council at ||| 0.0103627 0.321886 1.69729e-06 1.38327e-05 2.718 ||| 0-1 ||| 193 1.17835e+06 +en ||| Council for ||| 0.00137741 0.0286209 8.48644e-07 3.9785e-06 2.718 ||| 0-1 ||| 726 1.17835e+06 +en ||| Council in such a way ||| 0.5 0.605812 8.48644e-07 3.15664e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Council in such a ||| 0.333333 0.605812 8.48644e-07 1.46439e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Council in such ||| 0.333333 0.605812 8.48644e-07 3.3037e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Council in ||| 0.00464684 0.605812 4.24322e-06 0.000159684 2.718 ||| 0-1 ||| 1076 1.17835e+06 +en ||| Council meetings in ||| 0.0833333 0.605812 8.48644e-07 3.51305e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| Council of Interior Ministers in Luxembourg on ||| 1 0.605812 8.48644e-07 4.5125e-24 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Council of Interior Ministers in Luxembourg ||| 1 0.605812 8.48644e-07 6.74414e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Council of Interior Ministers in ||| 1 0.605812 8.48644e-07 8.12547e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Council on the other side of ||| 1 0.22993 8.48644e-07 2.7218e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Council on the other side ||| 1 0.22993 8.48644e-07 5.00662e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Council on the other ||| 0.166667 0.22993 8.48644e-07 2.28404e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| Council on the ||| 0.00178891 0.22993 8.48644e-07 1.76306e-06 2.718 ||| 0-1 ||| 559 1.17835e+06 +en ||| Council on ||| 0.000610501 0.22993 8.48644e-07 2.87181e-05 2.718 ||| 0-1 ||| 1638 1.17835e+06 +en ||| Council which I chaired . ||| 0.5 0.0060084 8.48644e-07 6.9184e-17 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Council which I chaired ||| 0.5 0.0060084 8.48644e-07 2.28405e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Council which I ||| 0.333333 0.0060084 8.48644e-07 7.13767e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| Court of Auditors ||| 0.00034188 0.0116562 8.48644e-07 8.29675e-12 2.718 ||| 0-1 ||| 2925 1.17835e+06 +en ||| Court of Georgia . in ||| 1 0.605812 8.48644e-07 2.56227e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Court of Human Rights in ||| 0.0714286 0.605812 8.48644e-07 3.94017e-15 2.718 ||| 0-4 ||| 14 1.17835e+06 +en ||| Court of ||| 0.000156789 0.0116562 8.48644e-07 6.38212e-07 2.718 ||| 0-1 ||| 6378 1.17835e+06 +en ||| Court will adopt a position on ||| 1 0.22993 8.48644e-07 5.10429e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Cultural Property in ||| 1 0.605812 8.48644e-07 5.58755e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Culture project can make is , in ||| 1 0.605812 8.48644e-07 2.94819e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| Cup on ||| 1 0.22993 8.48644e-07 2.4084e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Cyprus in December ||| 0.25 0.605812 8.48644e-07 6.73277e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Cyprus in ||| 0.0273973 0.605812 1.69729e-06 7.48085e-06 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| Cyprus under heading VII and to add ||| 1 0.205566 8.48644e-07 3.00731e-25 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Cyprus under heading VII and to ||| 1 0.205566 8.48644e-07 3.66745e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Cyprus under heading VII and ||| 1 0.205566 8.48644e-07 4.1273e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Cyprus under heading VII ||| 1 0.205566 8.48644e-07 3.29501e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Cyprus under heading ||| 1 0.205566 8.48644e-07 2.99547e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Cyprus under ||| 0.25 0.205566 8.48644e-07 9.16045e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Czech Republic . at ||| 1 0.321886 8.48644e-07 4.37409e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| DG on ||| 0.2 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| Darfur have been involved in an uprising ||| 1 0.605812 8.48644e-07 8.73013e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Darfur have been involved in an ||| 1 0.605812 8.48644e-07 3.96824e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Darfur have been involved in ||| 1 0.605812 8.48644e-07 8.92803e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Data on Education ||| 0.5 0.22993 8.48644e-07 6.20787e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Data on ||| 0.5 0.22993 8.48644e-07 2.07621e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Day in ||| 0.5 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Declaration on ||| 0.0136986 0.22993 8.48644e-07 2.65755e-07 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| Defence Policy on 13 ||| 0.333333 0.22993 8.48644e-07 2.28214e-15 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| Defence Policy on ||| 0.0263158 0.22993 8.48644e-07 2.4278e-10 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| Democrat Member in ||| 0.333333 0.605812 8.48644e-07 1.28496e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| Democrat and Reform Party at ||| 0.333333 0.321886 8.48644e-07 1.57089e-16 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| Democrats for Europe ||| 0.00204499 0.0286209 8.48644e-07 6.20004e-10 2.718 ||| 0-1 ||| 489 1.17835e+06 +en ||| Democrats for ||| 0.00210526 0.0286209 8.48644e-07 1.2253e-06 2.718 ||| 0-1 ||| 475 1.17835e+06 +en ||| Democrats in the European Parliament ||| 0.00823045 0.605812 1.69729e-06 5.7951e-12 2.718 ||| 0-1 ||| 243 1.17835e+06 +en ||| Democrats in the European ||| 0.0740741 0.605812 1.69729e-06 1.0096e-08 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| Democrats in the ||| 0.00796813 0.605812 1.69729e-06 3.01923e-06 2.718 ||| 0-1 ||| 251 1.17835e+06 +en ||| Democrats in ||| 0.0307167 0.605812 7.6378e-06 4.91797e-05 2.718 ||| 0-1 ||| 293 1.17835e+06 +en ||| Democrats with ||| 0.333333 0.0535436 8.48644e-07 1.24167e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Denmark as ||| 0.0769231 0.066968 8.48644e-07 1.42104e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| Denmark by ||| 1 0.0468744 1.69729e-06 6.72061e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Developing World ||| 0.0666667 0.25 8.48644e-07 2.346e-10 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| Developing ||| 0.037037 0.25 8.48644e-07 1.02e-05 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| Directive back in ||| 1 0.605812 8.48644e-07 2.39157e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Directive in ||| 0.0526316 0.605812 2.54593e-06 3.55571e-05 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| Directive into ||| 0.0434783 0.525896 8.48644e-07 1.70457e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| Directive to ||| 0.0217391 0.0247351 8.48644e-07 2.16434e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| Director of ||| 0.00854701 0.0116562 8.48644e-07 1.90918e-08 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| Doucet in France ? why should ||| 1 0.605812 8.48644e-07 7.93021e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Doucet in France ? why ||| 1 0.605812 8.48644e-07 1.78971e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Doucet in France ? ||| 1 0.605812 8.48644e-07 7.26049e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Doucet in France ||| 1 0.605812 8.48644e-07 4.24839e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Doucet in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Dublin ||| 0.000517598 0.0007553 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1932 1.17835e+06 +en ||| E4 is ||| 0.5 0.333333 8.48644e-07 2.19388e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| E4 ||| 0.5 0.333333 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| ECB on ||| 0.0909091 0.22993 8.48644e-07 7.14216e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| ECSC into ||| 0.2 0.525896 8.48644e-07 4.87021e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| EDFs - get right into ||| 0.25 0.525896 8.48644e-07 1.64808e-17 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| EIB in ||| 0.04 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| EIT over ||| 0.5 0.157937 8.48644e-07 1.60288e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| EU 's ||| 0.000510465 0.001582 8.48644e-07 9.59417e-08 2.718 ||| 0-1 ||| 1959 1.17835e+06 +en ||| EU Treaty having changed the mood in ||| 1 0.605812 8.48644e-07 1.02233e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| EU in as far as they are ||| 1 0.33639 8.48644e-07 1.418e-15 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| EU in as far as they ||| 1 0.33639 8.48644e-07 9.34574e-14 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| EU in as far as ||| 1 0.33639 8.48644e-07 2.86328e-11 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| EU in as far ||| 1 0.33639 8.48644e-07 2.80593e-09 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| EU in as ||| 0.5 0.33639 8.48644e-07 4.11004e-06 2.718 ||| 0-1 0-2 ||| 2 1.17835e+06 +en ||| EU in ||| 0.00609756 0.605812 4.24322e-06 0.000228489 2.718 ||| 0-1 ||| 820 1.17835e+06 +en ||| EU into ||| 0.0227273 0.525896 1.69729e-06 1.09535e-05 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| EU level . at ||| 1 0.321886 8.48644e-07 5.12838e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| EU should in ||| 0.333333 0.605812 8.48644e-07 1.01244e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| EU theory , on ||| 1 0.22993 8.48644e-07 3.72435e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| EU to be associated with ||| 1 0.0535436 8.48644e-07 4.78431e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| EU to ||| 0.000809062 0.0247351 8.48644e-07 1.3908e-05 2.718 ||| 0-1 ||| 1236 1.17835e+06 +en ||| EU will rise from ||| 0.25 0.0308834 8.48644e-07 2.04579e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| EU-wide recognition ||| 0.333333 0.0745008 8.48644e-07 1.8546e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| EU-wide ||| 0.00498339 0.0745008 2.54593e-06 6.6e-05 2.718 ||| 0-0 ||| 602 1.17835e+06 +en ||| EUAM ) ||| 1 1 8.48644e-07 1.00611e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| EUAM ||| 1 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| East Jerusalem ||| 0.00442478 0.0029591 8.48644e-07 8.54e-12 2.718 ||| 0-0 ||| 226 1.17835e+06 +en ||| East ||| 0.00206456 0.0029591 9.33509e-06 1.22e-05 2.718 ||| 0-0 ||| 5328 1.17835e+06 +en ||| Eastern Europe in ||| 0.0909091 0.605812 8.48644e-07 2.00949e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| Economic Union & # x02BC ||| 0.5 0.0223684 8.48644e-07 2.93068e-22 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Economic Union & # ||| 0.5 0.0223684 8.48644e-07 7.61217e-18 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Economic Union & ||| 0.5 0.0223684 8.48644e-07 1.99794e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Egypt is within ||| 1 0.369196 8.48644e-07 2.25855e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| El ) In ||| 0.25 0.0659459 8.48644e-07 1.07366e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| Energy in ||| 0.166667 0.605812 8.48644e-07 1.09904e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| English football fans on ||| 1 0.22993 8.48644e-07 1.0092e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| English-language speakers anyway - use ||| 1 0.285714 8.48644e-07 8.96826e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| English-language speakers anyway - ||| 1 0.285714 8.48644e-07 1.84456e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| English-language speakers anyway ||| 1 0.285714 8.48644e-07 4.89002e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| English-language speakers ||| 1 0.285714 8.48644e-07 1.3736e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| English-language ||| 0.0909091 0.285714 8.48644e-07 6.8e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| Environment states ||| 0.333333 0.0010643 8.48644e-07 1.881e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Envoy in ||| 1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Euro ' on the model of Mr ||| 0.5 0.22993 8.48644e-07 2.24924e-19 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Euro ' on the model of ||| 0.5 0.22993 8.48644e-07 3.44553e-16 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Euro ' on the model ||| 0.5 0.22993 8.48644e-07 6.33788e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Euro ' on the ||| 0.5 0.22993 8.48644e-07 1.6462e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Euro ' on ||| 0.5 0.22993 8.48644e-07 2.68147e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Euro ' ||| 0.0666667 0.0025381 8.48644e-07 6.8698e-09 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| Euro ||| 0.0023068 0.0025381 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 867 1.17835e+06 +en ||| Europe , in respect in particular of ||| 1 0.605812 8.48644e-07 8.63222e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Europe , in respect in particular ||| 1 0.605812 8.48644e-07 1.58786e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Europe , in respect in ||| 1 0.605812 8.48644e-07 2.5802e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Europe , in respect ||| 0.5 0.605812 8.48644e-07 1.20545e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Europe , in ||| 0.00671141 0.605812 1.69729e-06 2.78652e-05 2.718 ||| 0-2 ||| 298 1.17835e+06 +en ||| Europe , with ||| 0.00625 0.0535436 8.48644e-07 7.03532e-07 2.718 ||| 0-2 ||| 160 1.17835e+06 +en ||| Europe a ||| 0.00332226 0.0015231 8.48644e-07 4.16944e-07 2.718 ||| 0-1 ||| 301 1.17835e+06 +en ||| Europe at ||| 0.0169492 0.321886 3.39458e-06 2.0241e-05 2.718 ||| 0-1 ||| 236 1.17835e+06 +en ||| Europe for ||| 0.00176056 0.0286209 8.48644e-07 5.82163e-06 2.718 ||| 0-1 ||| 568 1.17835e+06 +en ||| Europe in which ||| 0.00746269 0.605812 8.48644e-07 1.98486e-06 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| Europe in ||| 0.00473293 0.605812 5.94051e-06 0.000233661 2.718 ||| 0-1 ||| 1479 1.17835e+06 +en ||| Europe is on ||| 0.0285714 0.22993 8.48644e-07 1.31703e-06 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| Europe of the rule of ||| 1 0.0116562 8.48644e-07 1.87233e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Europe of the rule ||| 1 0.0116562 8.48644e-07 3.44406e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Europe of the ||| 0.00126743 0.0116562 8.48644e-07 4.23623e-07 2.718 ||| 0-1 ||| 789 1.17835e+06 +en ||| Europe of ||| 0.000742942 0.0116562 1.69729e-06 6.90032e-06 2.718 ||| 0-1 ||| 2692 1.17835e+06 +en ||| Europe on the ||| 0.00961538 0.22993 8.48644e-07 2.57984e-06 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| Europe on ||| 0.00346021 0.22993 8.48644e-07 4.20225e-05 2.718 ||| 0-1 ||| 289 1.17835e+06 +en ||| Europe to ||| 0.000572738 0.0247351 8.48644e-07 1.42228e-05 2.718 ||| 0-1 ||| 1746 1.17835e+06 +en ||| Europe will become ||| 0.0416667 0.219193 8.48644e-07 1.67374e-08 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| Europe within ||| 0.0434783 0.369196 8.48644e-07 5.60987e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| Europe ||| 1.96591e-05 6.61e-05 1.69729e-06 4.1e-06 2.718 ||| 0-0 ||| 101734 1.17835e+06 +en ||| European Agreement and International Agreement on ||| 1 0.22993 8.48644e-07 4.44263e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| European Commission in ||| 0.00465116 0.605812 8.48644e-07 9.01938e-07 2.718 ||| 0-2 ||| 215 1.17835e+06 +en ||| European Court of Human Rights in ||| 0.027027 0.605812 8.48644e-07 1.31755e-17 2.718 ||| 0-5 ||| 37 1.17835e+06 +en ||| European Democrats in ||| 0.0666667 0.605812 1.69729e-06 1.64452e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| European Democrats with ||| 0.25 0.0535436 8.48644e-07 4.15203e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| European Parliament , in ||| 0.00704225 0.605812 8.48644e-07 1.057e-07 2.718 ||| 0-3 ||| 142 1.17835e+06 +en ||| European Parliament agree about the ||| 1 0.0401564 8.48644e-07 5.37325e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| European Parliament agree about ||| 1 0.0401564 8.48644e-07 8.75239e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| European Parliament at 10 a.m. regarding the ||| 1 0.321886 8.48644e-07 8.50816e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| European Parliament at 10 a.m. regarding ||| 1 0.321886 8.48644e-07 1.38588e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| European Parliament at 10 a.m. ||| 1 0.321886 8.48644e-07 2.2389e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| European Parliament at 10 ||| 1 0.321886 8.48644e-07 1.24383e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| European Parliament at ||| 0.00632911 0.321886 8.48644e-07 7.67798e-08 2.718 ||| 0-2 ||| 158 1.17835e+06 +en ||| European Parliament in ||| 0.00302419 0.605812 2.54593e-06 8.86342e-07 2.718 ||| 0-2 ||| 992 1.17835e+06 +en ||| European Parliament representing ||| 0.142857 0.0450358 8.48644e-07 1.14972e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| European Union Council in ||| 0.5 0.605812 8.48644e-07 2.97633e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| European Union as ||| 0.00240674 0.066968 1.69729e-06 3.35275e-08 2.718 ||| 0-2 ||| 831 1.17835e+06 +en ||| European Union in ||| 0.00381437 0.605812 5.09187e-06 8.60709e-07 2.718 ||| 0-2 ||| 1573 1.17835e+06 +en ||| European Union into ||| 0.0116279 0.525896 8.48644e-07 4.12615e-08 2.718 ||| 0-2 ||| 86 1.17835e+06 +en ||| European Union is also at ||| 1 0.321886 8.48644e-07 1.17974e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| European Union on ||| 0.0027027 0.22993 8.48644e-07 1.54793e-07 2.718 ||| 0-2 ||| 370 1.17835e+06 +en ||| European Union when it ||| 0.0625 0.142731 8.48644e-07 1.97328e-10 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| European Union when ||| 0.0169492 0.142731 8.48644e-07 1.10963e-08 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| European Year against Racism into ||| 1 0.525896 8.48644e-07 2.26078e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| European and ||| 0.000620347 0.0010182 8.48644e-07 3.08542e-06 2.718 ||| 0-1 ||| 1612 1.17835e+06 +en ||| European corps within NATO ||| 0.125 0.369196 8.48644e-07 7.7408e-16 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| European corps within ||| 0.125 0.369196 8.48644e-07 1.07511e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| European countries , in ||| 0.1 0.605812 8.48644e-07 6.99207e-08 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| European cultural programme ambiguous , for ||| 1 0.0286209 8.48644e-07 3.96649e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| European in ||| 0.0243902 0.605812 8.48644e-07 0.00154415 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| European in-service trainee ships ||| 0.5 0.232877 8.48644e-07 6.91224e-19 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| European in-service trainee ||| 0.5 0.232877 8.48644e-07 4.26682e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| European initiative in ||| 0.0769231 0.605812 8.48644e-07 9.66638e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| European integration in ||| 0.0133333 0.605812 8.48644e-07 3.05742e-08 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| European nations must really be committed to ||| 1 0.0247351 8.48644e-07 1.63674e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| European one where ||| 0.5 0.247783 8.48644e-07 1.18699e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| European plan for stimulating ||| 1 0.0286209 8.48644e-07 7.0308e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| European plan for ||| 0.0909091 0.0286209 8.48644e-07 2.81232e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| European region in ||| 0.333333 0.605812 8.48644e-07 1.51172e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| European states into ||| 1 0.525896 8.48644e-07 5.56667e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Europeans as it is in ||| 1 0.605812 8.48644e-07 3.96574e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Europeans in ||| 0.0125 0.605812 8.48644e-07 6.97289e-06 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| Europol Convention as ||| 0.5 0.066968 8.48644e-07 5.01215e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Europol into ||| 0.0263158 0.525896 8.48644e-07 1.90381e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| FIFG assistance in ||| 1 0.605812 8.48644e-07 9.18021e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| FR ) At ||| 0.166667 0.0814815 8.48644e-07 3.95617e-13 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| Facility for ||| 1 0.0286209 8.48644e-07 1.26557e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Federal Institute to withdraw this misleading and ||| 0.25 0.0247351 8.48644e-07 4.49467e-27 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| Federal Institute to withdraw this misleading ||| 0.25 0.0247351 8.48644e-07 3.5883e-25 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| Federal Institute to withdraw this ||| 0.25 0.0247351 8.48644e-07 7.63468e-20 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| Federal Institute to withdraw ||| 0.25 0.0247351 8.48644e-07 1.18158e-17 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| Federal Institute to ||| 0.25 0.0247351 8.48644e-07 1.257e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| Ferrero-Waldner emphasised ||| 1 0.152435 8.48644e-07 1.9383e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Financial Regulation in ||| 0.0769231 0.605812 8.48644e-07 1.05873e-10 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| Fischer 's government and by ||| 1 0.0468744 8.48644e-07 5.18854e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| For ||| 0.00606061 0.0054348 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 165 1.17835e+06 +en ||| Force in ||| 0.5 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Forza Italia , in ||| 1 0.605812 8.48644e-07 1.54195e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| France ||| 0.000278668 0.0003133 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 7177 1.17835e+06 +en ||| French Government in ||| 0.142857 0.605812 8.48644e-07 8.32444e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| Functioning of the European Union ||| 0.0042735 0.0116562 8.48644e-07 2.80881e-15 2.718 ||| 0-1 ||| 234 1.17835e+06 +en ||| Functioning of the European ||| 0.333333 0.0116562 8.48644e-07 5.03912e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Functioning of the ||| 0.00414938 0.0116562 8.48644e-07 1.50696e-09 2.718 ||| 0-1 ||| 241 1.17835e+06 +en ||| Functioning of ||| 0.00416667 0.0116562 8.48644e-07 2.45466e-08 2.718 ||| 0-1 ||| 240 1.17835e+06 +en ||| Funds in ||| 0.363636 0.605812 3.39458e-06 1.72706e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| Funds over ||| 1 0.157937 1.69729e-06 1.49869e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| G8 summit in ||| 0.0526316 0.605812 8.48644e-07 3.25094e-11 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| GDP in ||| 0.02 0.605812 1.69729e-06 2.30891e-06 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| GMOs in ||| 0.0105263 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| Galician coastline known as ||| 1 0.066968 8.48644e-07 3.04992e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Games in ||| 0.217391 0.605812 4.24322e-06 3.50954e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| Games will take place in ||| 1 0.605812 8.48644e-07 7.35679e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| General Assembly on ||| 0.142857 0.22993 8.48644e-07 8.0723e-12 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| General Secretariat on ||| 1 0.22993 8.48644e-07 1.25569e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Gentlemen , in ||| 1 0.605812 8.48644e-07 3.85487e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Georgia . in ||| 1 0.605812 8.48644e-07 1.00709e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| German equivalent in ||| 1 0.605812 8.48644e-07 2.28143e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| God nor ||| 0.25 0.0049763 8.48644e-07 2.4319e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Government at ||| 0.0104167 0.321886 8.48644e-07 1.9281e-06 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| Government in ||| 0.0103093 0.605812 1.69729e-06 2.22578e-05 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| Government to try and ||| 1 0.0247351 8.48644e-07 2.61343e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Government to try ||| 1 0.0247351 8.48644e-07 2.08642e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Government to ||| 0.00350877 0.0247351 8.48644e-07 1.35482e-06 2.718 ||| 0-1 ||| 285 1.17835e+06 +en ||| Greeks in general want to continue supporting ||| 1 0.605812 8.48644e-07 9.93753e-24 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Greeks in general want to continue ||| 1 0.605812 8.48644e-07 3.10548e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Greeks in general want to ||| 1 0.605812 8.48644e-07 1.34204e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Greeks in general want ||| 1 0.605812 8.48644e-07 1.51032e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Greeks in general ||| 1 0.605812 8.48644e-07 3.23062e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Greeks in ||| 0.125 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| Green Paper - to put ||| 1 0.0247351 8.48644e-07 3.24063e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Green Paper - to ||| 0.5 0.0247351 8.48644e-07 2.93908e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Group , ||| 0.00187266 0.0001187 8.48644e-07 6.44094e-08 2.718 ||| 0-1 ||| 534 1.17835e+06 +en ||| Group in ||| 0.0113636 0.605812 8.48644e-07 0.000150217 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| Group of ||| 0.00100553 0.0116562 3.39458e-06 4.43612e-06 2.718 ||| 0-1 ||| 3978 1.17835e+06 +en ||| Grouping on ||| 1 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Groups in ||| 0.047619 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| Gulf of ||| 0.00684932 0.0116562 8.48644e-07 2.45466e-08 2.718 ||| 0-1 ||| 146 1.17835e+06 +en ||| Health and Consumer Policy as ||| 1 0.066968 8.48644e-07 2.53187e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Health and Consumer Policy during ||| 1 0.226251 8.48644e-07 4.06962e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Health and Consumer Protection , on ||| 0.030303 0.22993 8.48644e-07 5.12675e-17 2.718 ||| 0-5 ||| 33 1.17835e+06 +en ||| Herzegovina where ||| 1 0.247783 8.48644e-07 1.19232e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| High One from ||| 0.5 0.0308834 8.48644e-07 1.44898e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Holy Land in blood is to have ||| 1 0.605812 8.48644e-07 3.91466e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Holy Land in blood is to ||| 1 0.605812 8.48644e-07 3.27318e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Holy Land in blood is ||| 1 0.605812 8.48644e-07 3.6836e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Holy Land in blood ||| 1 0.605812 8.48644e-07 1.17533e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Holy Land in ||| 1 0.605812 8.48644e-07 1.16369e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Home Affairs , with ||| 0.111111 0.0535436 8.48644e-07 3.26177e-12 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| House , in ||| 0.00980392 0.605812 8.48644e-07 1.37729e-05 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| House at ||| 0.0392157 0.321886 3.39458e-06 1.00045e-05 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| House becomes ||| 0.166667 0.162791 8.48644e-07 9.53131e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| House by the ||| 0.0769231 0.0468744 8.48644e-07 1.30619e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| House by ||| 0.0172414 0.0468744 8.48644e-07 2.12763e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| House have died down ||| 1 0.0183476 8.48644e-07 5.93593e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| House in ||| 0.00735294 0.605812 2.54593e-06 0.000115491 2.718 ||| 0-1 ||| 408 1.17835e+06 +en ||| House on ||| 0.00854701 0.22993 2.54593e-06 2.07704e-05 2.718 ||| 0-1 ||| 351 1.17835e+06 +en ||| House representing the ||| 1 0.0450358 8.48644e-07 9.1971e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| House representing ||| 0.166667 0.0450358 8.48644e-07 1.4981e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| House to ||| 0.000803859 0.0247351 8.48644e-07 7.02989e-06 2.718 ||| 0-1 ||| 1244 1.17835e+06 +en ||| Human Rights in ||| 0.00666667 0.605812 8.48644e-07 1.54867e-09 2.718 ||| 0-2 ||| 150 1.17835e+06 +en ||| I ] n ||| 1 0.0060084 8.48644e-07 2.27196e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I ] ||| 1 0.0060084 8.48644e-07 9.08783e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I , at ||| 0.0833333 0.321886 8.48644e-07 3.37436e-05 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| I , back in ||| 1 0.605812 8.48644e-07 2.62001e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I , in ||| 0.0909091 0.605812 3.39458e-06 0.000389535 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| I , particularly ||| 1 0.183344 8.48644e-07 3.76712e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I , ||| 0.00288684 0.0060084 4.24322e-06 0.000289777 2.718 ||| 0-0 ||| 1732 1.17835e+06 +en ||| I - speaking on ||| 1 0.22993 8.48644e-07 2.54385e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I add a few words about ||| 1 0.0401564 8.48644e-07 2.91935e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| I admit that ||| 0.00740741 0.0017499 8.48644e-07 1.59694e-10 2.718 ||| 0-2 ||| 135 1.17835e+06 +en ||| I admit ||| 0.0047619 0.0060084 8.48644e-07 5.24858e-08 2.718 ||| 0-0 ||| 210 1.17835e+06 +en ||| I agree with Mr von Habsburg that ||| 1 0.0060084 8.48644e-07 6.8409e-26 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I agree with Mr von Habsburg ||| 1 0.0060084 8.48644e-07 4.06673e-24 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I agree with Mr von ||| 0.333333 0.0060084 8.48644e-07 5.80962e-18 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| I agree with Mr ||| 0.00273224 0.0060084 8.48644e-07 1.61378e-12 2.718 ||| 0-0 ||| 366 1.17835e+06 +en ||| I agree with ||| 0.000454133 0.0060084 1.69729e-06 2.4721e-09 2.718 ||| 0-0 ||| 4404 1.17835e+06 +en ||| I agree ||| 0.000655201 0.0060084 3.39458e-06 3.86597e-07 2.718 ||| 0-0 ||| 6105 1.17835e+06 +en ||| I also ||| 0.000208986 0.0060084 8.48644e-07 1.22676e-05 2.718 ||| 0-0 ||| 4785 1.17835e+06 +en ||| I am , at ||| 1 0.321886 8.48644e-07 4.31075e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I am , in ||| 0.0769231 0.605812 8.48644e-07 4.9763e-07 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| I am able to ||| 0.0131579 0.0060084 8.48644e-07 2.30293e-10 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| I am able ||| 0.00684932 0.0060084 8.48644e-07 2.59169e-09 2.718 ||| 0-0 ||| 146 1.17835e+06 +en ||| I am also thinking of ||| 0.0149254 0.0286132 8.48644e-07 9.10184e-14 2.718 ||| 0-3 0-4 ||| 67 1.17835e+06 +en ||| I am at ||| 0.0441176 0.321886 2.54593e-06 3.61474e-07 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| I am basically here to ||| 1 0.0060084 8.48644e-07 1.61088e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I am basically here ||| 1 0.0060084 8.48644e-07 1.81287e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I am basically ||| 0.0909091 0.0060084 8.48644e-07 8.94009e-11 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| I am coming to ||| 0.0769231 0.0153717 8.48644e-07 1.69534e-11 2.718 ||| 0-0 0-3 ||| 13 1.17835e+06 +en ||| I am from ||| 0.0133333 0.0308834 8.48644e-07 3.43844e-08 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| I am fundamentally in favour of ||| 0.333333 0.605812 8.48644e-07 7.11851e-16 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| I am fundamentally in favour ||| 0.25 0.605812 8.48644e-07 1.30942e-14 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| I am fundamentally in ||| 0.5 0.605812 8.48644e-07 4.04765e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| I am going to ||| 0.0015083 0.0247351 8.48644e-07 2.17371e-10 2.718 ||| 0-3 ||| 663 1.17835e+06 +en ||| I am grateful to ||| 0.0018315 0.0247351 8.48644e-07 5.76575e-12 2.718 ||| 0-3 ||| 546 1.17835e+06 +en ||| I am however in ||| 0.333333 0.605812 8.48644e-07 4.62225e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| I am in favour of having ||| 0.2 0.605812 8.48644e-07 2.80998e-14 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| I am in favour of this in ||| 1 0.605812 8.48644e-07 1.01496e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| I am in favour of ||| 0.000988142 0.605812 8.48644e-07 7.33867e-11 2.718 ||| 0-2 ||| 1012 1.17835e+06 +en ||| I am in favour ||| 0.001002 0.605812 8.48644e-07 1.34991e-09 2.718 ||| 0-2 ||| 998 1.17835e+06 +en ||| I am in full agreement ||| 0.025 0.605812 8.48644e-07 1.41121e-13 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| I am in full ||| 0.027027 0.605812 8.48644e-07 7.65716e-10 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| I am in ||| 0.0134003 0.605812 1.35783e-05 4.17284e-06 2.718 ||| 0-2 ||| 1194 1.17835e+06 +en ||| I am making ||| 0.0126582 0.0060084 8.48644e-07 1.19418e-09 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| I am moving referral on ||| 1 0.0060084 8.48644e-07 3.948e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I am moving referral ||| 1 0.0060084 8.48644e-07 5.90046e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I am moving ||| 0.0909091 0.0060084 8.48644e-07 1.84389e-10 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| I am not all happy with ||| 0.166667 0.0535436 8.48644e-07 1.0708e-16 2.718 ||| 0-5 ||| 6 1.17835e+06 +en ||| I am not sure ||| 0.00132802 0.0060084 8.48644e-07 1.84618e-12 2.718 ||| 0-0 ||| 753 1.17835e+06 +en ||| I am not ||| 0.000570613 0.0060084 1.69729e-06 1.0598e-08 2.718 ||| 0-0 ||| 3505 1.17835e+06 +en ||| I am on ||| 0.0178571 0.22993 8.48644e-07 7.50458e-07 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| I am pleased to say that on ||| 0.5 0.22993 8.48644e-07 4.36368e-17 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| I am pleased ||| 0.000289101 0.0060084 8.48644e-07 1.26341e-10 2.718 ||| 0-0 ||| 3459 1.17835e+06 +en ||| I am referring back ||| 0.333333 0.0167382 8.48644e-07 1.61064e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| I am referring here ||| 0.00900901 0.0855319 8.48644e-07 1.17116e-12 2.718 ||| 0-3 ||| 111 1.17835e+06 +en ||| I am referring in particular here to ||| 1 0.605812 8.48644e-07 1.99892e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I am referring in particular here ||| 0.5 0.605812 8.48644e-07 2.24956e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| I am referring in particular ||| 0.0151515 0.605812 8.48644e-07 1.10936e-13 2.718 ||| 0-3 ||| 66 1.17835e+06 +en ||| I am referring in this context ||| 1 0.605812 8.48644e-07 1.56313e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I am referring in this ||| 0.166667 0.605812 8.48644e-07 1.16477e-12 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| I am referring in ||| 0.0350877 0.605812 1.69729e-06 1.80267e-10 2.718 ||| 0-3 ||| 57 1.17835e+06 +en ||| I am referring to ||| 0.00303951 0.0247351 8.48644e-07 1.09727e-11 2.718 ||| 0-3 ||| 329 1.17835e+06 +en ||| I am referring ||| 0.00146843 0.0167382 8.48644e-07 2.39465e-10 2.718 ||| 0-2 ||| 681 1.17835e+06 +en ||| I am speaking on ||| 0.00490196 0.22993 8.48644e-07 8.61526e-11 2.718 ||| 0-3 ||| 204 1.17835e+06 +en ||| I am speaking ||| 0.00178891 0.0299154 8.48644e-07 7.03411e-10 2.718 ||| 0-0 0-2 ||| 559 1.17835e+06 +en ||| I am still on ||| 1 0.22993 8.48644e-07 5.65245e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I am sure that the result will ||| 0.5 0.0060084 8.48644e-07 2.54361e-18 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I am sure that the result ||| 0.5 0.0060084 8.48644e-07 2.94018e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I am sure that the ||| 0.00341297 0.0060084 8.48644e-07 5.58438e-13 2.718 ||| 0-0 ||| 293 1.17835e+06 +en ||| I am sure that ||| 0.00062422 0.0060084 8.48644e-07 9.0963e-12 2.718 ||| 0-0 ||| 1602 1.17835e+06 +en ||| I am sure there is consensus on ||| 1 0.22993 8.48644e-07 1.94668e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| I am sure ||| 0.00030303 0.0060084 1.69729e-06 5.40751e-10 2.718 ||| 0-0 ||| 6600 1.17835e+06 +en ||| I am talking about ||| 0.00526316 0.0060084 1.69729e-06 4.80295e-13 2.718 ||| 0-0 ||| 380 1.17835e+06 +en ||| I am talking ||| 0.00757576 0.0060084 8.48644e-07 3.39599e-10 2.718 ||| 0-0 ||| 132 1.17835e+06 +en ||| I am that ||| 0.0263158 0.0017499 8.48644e-07 9.44484e-09 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| I am therefore pleased ||| 0.00568182 0.0060084 8.48644e-07 1.05659e-13 2.718 ||| 0-0 ||| 176 1.17835e+06 +en ||| I am therefore ||| 0.00110619 0.0060084 8.48644e-07 2.59604e-09 2.718 ||| 0-0 ||| 904 1.17835e+06 +en ||| I am thinking of ||| 0.0103627 0.0286132 3.39458e-06 1.80285e-11 2.718 ||| 0-2 0-3 ||| 386 1.17835e+06 +en ||| I am thinking ||| 0.000968992 0.0060084 8.48644e-07 2.30021e-10 2.718 ||| 0-0 ||| 1032 1.17835e+06 +en ||| I am very pleased that in ||| 0.25 0.605812 8.48644e-07 9.94054e-15 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| I am voting ||| 0.00140647 0.0081975 8.48644e-07 5.59353e-10 2.718 ||| 0-2 ||| 711 1.17835e+06 +en ||| I am wearing ||| 0.0666667 0.019685 8.48644e-07 3.07237e-11 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| I am ||| 0.000509315 0.0060084 1.61242e-05 3.1042e-06 2.718 ||| 0-0 ||| 37305 1.17835e+06 +en ||| I and ||| 0.00166667 0.0060084 8.48644e-07 3.04367e-05 2.718 ||| 0-0 ||| 600 1.17835e+06 +en ||| I assume that ||| 0.0031746 0.0060084 8.48644e-07 1.48376e-09 2.718 ||| 0-0 ||| 315 1.17835e+06 +en ||| I assume ||| 0.00191205 0.0060084 8.48644e-07 8.82054e-08 2.718 ||| 0-0 ||| 523 1.17835e+06 +en ||| I at least share ||| 1 0.0060084 8.48644e-07 2.33713e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I at least ||| 0.0909091 0.0060084 8.48644e-07 2.49694e-09 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| I at ||| 0.0714286 0.0060084 8.48644e-07 1.0175e-05 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| I attended ||| 0.00694444 0.0505051 8.48644e-07 2.64549e-07 2.718 ||| 0-1 ||| 144 1.17835e+06 +en ||| I became a Member ||| 0.0769231 0.137638 8.48644e-07 4.10056e-11 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| I became a ||| 0.05 0.137638 8.48644e-07 7.95761e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| I became ||| 0.0133333 0.137638 8.48644e-07 1.79525e-06 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| I begin by saying a few words ||| 1 0.0468744 8.48644e-07 1.10603e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I begin by saying a few ||| 1 0.0468744 8.48644e-07 4.89396e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I begin by saying a ||| 1 0.0468744 8.48644e-07 2.79176e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I begin by saying ||| 0.2 0.0468744 8.48644e-07 6.29827e-13 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| I begin by ||| 0.05 0.0468744 8.48644e-07 3.55032e-09 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| I believe , in ||| 0.0238095 0.605812 8.48644e-07 1.21262e-07 2.718 ||| 0-3 ||| 42 1.17835e+06 +en ||| I believe , ||| 0.000564334 0.0001187 8.48644e-07 4.35992e-10 2.718 ||| 0-2 ||| 1772 1.17835e+06 +en ||| I believe that in ||| 0.00371747 0.605812 8.48644e-07 1.71048e-08 2.718 ||| 0-3 ||| 269 1.17835e+06 +en ||| I believe that we in ||| 0.030303 0.605812 8.48644e-07 1.94178e-10 2.718 ||| 0-4 ||| 33 1.17835e+06 +en ||| I believe that we succeeded in doing ||| 1 0.0060084 8.48644e-07 2.12251e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I believe that we succeeded in ||| 0.5 0.0060084 8.48644e-07 5.78183e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I believe that we succeeded ||| 0.5 0.0060084 8.48644e-07 2.70122e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I believe that we ||| 0.00285714 0.0060084 8.48644e-07 1.4445e-10 2.718 ||| 0-0 ||| 350 1.17835e+06 +en ||| I believe that ||| 0.000168862 0.0060084 2.54593e-06 1.27243e-08 2.718 ||| 0-0 ||| 17766 1.17835e+06 +en ||| I believe their ||| 0.2 0.0060084 8.48644e-07 8.76776e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| I believe ||| 0.000278396 0.0060084 6.78915e-06 7.56428e-07 2.718 ||| 0-0 ||| 28736 1.17835e+06 +en ||| I can only ||| 0.000600962 0.0060084 8.48644e-07 8.04465e-09 2.718 ||| 0-0 ||| 1664 1.17835e+06 +en ||| I can promise honourable ||| 1 0.0060084 8.48644e-07 3.54627e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I can promise ||| 0.037037 0.0060084 8.48644e-07 6.79362e-11 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| I can put it ||| 0.0277778 0.0060084 8.48644e-07 1.4171e-10 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| I can put ||| 0.0588235 0.0060084 8.48644e-07 7.96877e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| I can see from ||| 0.125 0.0308834 8.48644e-07 5.64063e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| I can use that term , in ||| 1 0.605812 8.48644e-07 1.03665e-15 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| I can ||| 0.000682516 0.0060084 5.09187e-06 7.22725e-06 2.718 ||| 0-0 ||| 8791 1.17835e+06 +en ||| I cannot for ||| 0.2 0.0286209 8.48644e-07 1.83354e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| I carry out within ||| 1 0.369196 8.48644e-07 5.5121e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I chaired . ||| 0.333333 0.0060084 8.48644e-07 2.35525e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| I chaired ||| 0.0333333 0.0060084 8.48644e-07 7.77568e-09 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| I come from , there are many ||| 1 0.0308834 8.48644e-07 4.35258e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I come from , there are ||| 1 0.0308834 8.48644e-07 1.26786e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I come from , there ||| 1 0.0308834 8.48644e-07 8.35622e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I come from , ||| 0.00900901 0.0308834 8.48644e-07 2.72607e-09 2.718 ||| 0-2 ||| 111 1.17835e+06 +en ||| I come from ||| 0.00185529 0.0308834 8.48644e-07 2.28592e-08 2.718 ||| 0-2 ||| 539 1.17835e+06 +en ||| I come in ||| 0.5 0.605812 8.48644e-07 2.77416e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| I congratulate him ||| 0.00769231 0.0060084 8.48644e-07 1.20749e-11 2.718 ||| 0-0 ||| 130 1.17835e+06 +en ||| I congratulate ||| 0.000645161 0.0060084 8.48644e-07 3.76635e-08 2.718 ||| 0-0 ||| 1550 1.17835e+06 +en ||| I consider ||| 0.000905797 0.0126304 1.69729e-06 8.56601e-07 2.718 ||| 0-1 ||| 2208 1.17835e+06 +en ||| I contacted ||| 0.0769231 0.197266 8.48644e-07 4.85949e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| I could be the ||| 1 0.0011669 8.48644e-07 2.61139e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I could of course provide you with ||| 1 0.0535436 8.48644e-07 3.84163e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| I could ||| 0.000668449 0.0060084 8.48644e-07 1.7279e-06 2.718 ||| 0-0 ||| 1496 1.17835e+06 +en ||| I declared in ||| 1 0.605812 8.48644e-07 8.36201e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I described in ||| 0.0909091 0.605812 8.48644e-07 1.45682e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| I did , in ||| 0.333333 0.605812 8.48644e-07 1.76927e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| I did even in ||| 1 0.605812 8.48644e-07 9.02772e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I did not ||| 0.00107181 0.0060084 8.48644e-07 3.76801e-09 2.718 ||| 0-0 ||| 933 1.17835e+06 +en ||| I did so ||| 0.0166667 0.0087276 1.69729e-06 2.18823e-09 2.718 ||| 0-2 ||| 120 1.17835e+06 +en ||| I did ||| 0.00158353 0.0060084 1.69729e-06 1.10366e-06 2.718 ||| 0-0 ||| 1263 1.17835e+06 +en ||| I do , in ||| 0.2 0.605812 8.48644e-07 1.33817e-06 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| I do , ||| 0.00704225 0.0060084 8.48644e-07 9.95471e-07 2.718 ||| 0-0 ||| 142 1.17835e+06 +en ||| I do emphasize ||| 1 0.138965 8.48644e-07 2.52959e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I do hope that it will be ||| 0.5 0.0060084 8.48644e-07 6.86304e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I do hope that it will ||| 1 0.0060084 8.48644e-07 3.78694e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I do hope that it ||| 1 0.0060084 8.48644e-07 4.37736e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I do hope that ||| 0.00884956 0.0060084 8.48644e-07 2.46151e-11 2.718 ||| 0-0 ||| 113 1.17835e+06 +en ||| I do hope ||| 0.00578035 0.0060084 8.48644e-07 1.46331e-09 2.718 ||| 0-0 ||| 173 1.17835e+06 +en ||| I do in ||| 0.384615 0.605812 8.48644e-06 1.12211e-05 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| I do not at ||| 0.2 0.321886 8.48644e-07 3.31862e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| I do not for ||| 0.25 0.0286209 8.48644e-07 9.54486e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| I do not in ||| 0.4 0.605812 1.69729e-06 3.83099e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| I do not want ||| 0.00203252 0.0060084 8.48644e-07 1.33233e-11 2.718 ||| 0-0 ||| 492 1.17835e+06 +en ||| I do not wish to quote at ||| 1 0.321886 8.48644e-07 3.87587e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| I do not ||| 0.000453206 0.0060084 1.69729e-06 2.8499e-08 2.718 ||| 0-0 ||| 4413 1.17835e+06 +en ||| I do on ||| 0.285714 0.22993 1.69729e-06 2.01804e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| I do ||| 0.00226074 0.0060084 5.09187e-06 8.34744e-06 2.718 ||| 0-0 ||| 2654 1.17835e+06 +en ||| I emphasize - ||| 1 0.0060084 8.48644e-07 4.94955e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I emphasize ||| 0.0392157 0.0060084 1.69729e-06 1.31215e-08 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| I feel that we are going to ||| 1 0.0060084 8.48644e-07 9.05349e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I feel that we are going ||| 1 0.0060084 8.48644e-07 1.01887e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I feel that we are ||| 0.0714286 0.0060084 8.48644e-07 1.19055e-12 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| I feel that we ||| 0.025 0.0060084 8.48644e-07 7.84663e-11 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| I feel that ||| 0.000511771 0.0060084 8.48644e-07 6.91193e-09 2.718 ||| 0-0 ||| 1954 1.17835e+06 +en ||| I feel ||| 0.000538213 0.0060084 1.69729e-06 4.10896e-07 2.718 ||| 0-0 ||| 3716 1.17835e+06 +en ||| I find ||| 0.000839631 0.0060084 8.48644e-07 8.08914e-07 2.718 ||| 0-0 ||| 1191 1.17835e+06 +en ||| I found on ||| 0.333333 0.22993 8.48644e-07 1.28532e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| I gave in ||| 0.111111 0.605812 8.48644e-07 2.72745e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| I give ||| 0.00227273 0.0060084 8.48644e-07 1.47252e-06 2.718 ||| 0-0 ||| 440 1.17835e+06 +en ||| I got hold of ||| 0.2 0.0116562 8.48644e-07 1.83831e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| I had , ||| 0.125 0.0060084 8.48644e-07 2.90849e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| I had a hand in ||| 0.5 0.605812 8.48644e-07 5.76347e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| I had at ||| 0.333333 0.321886 8.48644e-07 2.84001e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| I had barely stuck ||| 0.5 0.0060084 8.48644e-07 5.41921e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I had barely ||| 0.5 0.0060084 8.48644e-07 5.36556e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I had to send during ||| 1 0.226251 8.48644e-07 1.17467e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| I had ||| 0.000913659 0.0060084 1.69729e-06 2.43889e-06 2.718 ||| 0-0 ||| 2189 1.17835e+06 +en ||| I have , at ||| 0.5 0.321886 8.48644e-07 4.03567e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| I have , in ||| 0.384615 0.605812 4.24322e-06 4.65876e-06 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| I have , on ||| 0.142857 0.22993 8.48644e-07 8.37848e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| I have , quite ||| 0.5 0.0060084 8.48644e-07 1.35196e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I have , ||| 0.0167598 0.0060084 2.54593e-06 3.46567e-06 2.718 ||| 0-0 ||| 179 1.17835e+06 +en ||| I have any ||| 0.0769231 0.0060084 8.48644e-07 4.39462e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| I have been in ||| 0.0309278 0.605812 2.54593e-06 1.30448e-07 2.718 ||| 0-3 ||| 97 1.17835e+06 +en ||| I have been there myself and was ||| 1 0.0117359 8.48644e-07 1.93313e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I have been there myself and ||| 1 0.0117359 8.48644e-07 6.17022e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I have been there myself ||| 1 0.0117359 8.48644e-07 4.92597e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I have been there ||| 0.05 0.0117359 8.48644e-07 3.16783e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| I have been ||| 0.000581734 0.0060084 8.48644e-07 9.70409e-08 2.718 ||| 0-0 ||| 1719 1.17835e+06 +en ||| I have called in ||| 0.25 0.605812 8.48644e-07 6.7896e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| I have come ||| 0.0102041 0.0060084 8.48644e-07 2.46816e-08 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| I have done for ||| 1 0.0286209 8.48644e-07 4.43831e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I have given to ||| 0.5 0.0060084 8.48644e-07 1.77225e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I have given ||| 0.0192308 0.0060084 1.69729e-06 1.99446e-08 2.718 ||| 0-0 ||| 104 1.17835e+06 +en ||| I have heard in ||| 0.0454545 0.605812 8.48644e-07 3.094e-09 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| I have heard it on ||| 1 0.22993 8.48644e-07 9.8952e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| I have in mind ||| 0.011236 0.605812 1.69729e-06 9.84062e-09 2.718 ||| 0-2 ||| 178 1.17835e+06 +en ||| I have in ||| 0.0514286 0.605812 7.6378e-06 3.90656e-05 2.718 ||| 0-2 ||| 175 1.17835e+06 +en ||| I have not to ||| 1 0.0247351 8.48644e-07 8.11837e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I have on ||| 0.166667 0.22993 2.54593e-06 7.0257e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| I have referred ||| 0.008 0.0060084 8.48644e-07 2.78115e-09 2.718 ||| 0-0 ||| 125 1.17835e+06 +en ||| I have said on a ||| 0.0833333 0.22993 8.48644e-07 1.28087e-10 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| I have said on ||| 0.0163934 0.22993 8.48644e-07 2.88967e-09 2.718 ||| 0-3 ||| 61 1.17835e+06 +en ||| I have said that we are ||| 0.5 0.0060084 8.48644e-07 3.46326e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I have said that we ||| 0.2 0.0060084 8.48644e-07 2.28256e-12 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| I have said that ||| 0.0327869 0.0060084 1.69729e-06 2.01066e-10 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| I have said ||| 0.00193424 0.0060084 1.69729e-06 1.19528e-08 2.718 ||| 0-0 ||| 1034 1.17835e+06 +en ||| I have sometimes described as push ||| 0.5 0.066968 8.48644e-07 1.06219e-19 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| I have sometimes described as ||| 0.5 0.066968 8.48644e-07 3.83462e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| I have spoken in ||| 0.0625 0.605812 8.48644e-07 8.71163e-10 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| I have to say , in ||| 0.0833333 0.605812 8.48644e-07 3.95671e-10 2.718 ||| 0-5 ||| 12 1.17835e+06 +en ||| I have to ||| 0.000791452 0.0247351 1.69729e-06 2.3779e-06 2.718 ||| 0-2 ||| 2527 1.17835e+06 +en ||| I have ||| 0.0008682 0.0060084 2.20648e-05 2.90611e-05 2.718 ||| 0-0 ||| 29947 1.17835e+06 +en ||| I honour ||| 0.5 0.0060084 8.48644e-07 4.54391e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I hope and trust that we will ||| 1 0.192848 8.48644e-07 1.79849e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I hope and trust that we ||| 1 0.192848 8.48644e-07 2.07889e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I hope and trust that ||| 0.0625 0.192848 8.48644e-07 1.83125e-13 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| I hope and trust ||| 0.047619 0.192848 8.48644e-07 1.08863e-11 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| I hope that we can re-establish ||| 1 0.0060084 8.48644e-07 5.32266e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I hope that we can ||| 0.00540541 0.0060084 8.48644e-07 2.41939e-13 2.718 ||| 0-0 ||| 185 1.17835e+06 +en ||| I hope that we ||| 0.00487805 0.0060084 8.48644e-07 8.13432e-11 2.718 ||| 0-0 ||| 205 1.17835e+06 +en ||| I hope that ||| 0.00020879 0.0060084 1.69729e-06 7.16535e-09 2.718 ||| 0-0 ||| 9579 1.17835e+06 +en ||| I hope to ||| 0.00699301 0.0247351 8.48644e-07 3.48539e-08 2.718 ||| 0-2 ||| 143 1.17835e+06 +en ||| I hope ||| 0.000243739 0.0060084 3.39458e-06 4.25961e-07 2.718 ||| 0-0 ||| 16411 1.17835e+06 +en ||| I in ||| 0.131579 0.605812 4.24322e-06 0.00326641 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| I know it was not easy in ||| 0.5 0.605812 8.48644e-07 6.05939e-18 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| I know ||| 0.000199521 0.0060084 8.48644e-07 6.26914e-07 2.718 ||| 0-0 ||| 5012 1.17835e+06 +en ||| I learnt at ||| 0.5 0.321886 8.48644e-07 2.85784e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| I look back at ||| 0.5 0.321886 8.48644e-07 5.54768e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| I made at ||| 0.333333 0.321886 1.69729e-06 5.92732e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| I made clear at ||| 0.25 0.321886 8.48644e-07 1.97321e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| I made in ||| 0.0232558 0.605812 8.48644e-07 6.84247e-06 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| I made it clear on ||| 1 0.22993 8.48644e-07 7.28504e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| I make in ||| 1 0.605812 8.48644e-07 5.67636e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I make ||| 0.0046729 0.0060084 8.48644e-07 4.22268e-06 2.718 ||| 0-0 ||| 214 1.17835e+06 +en ||| I may , during ||| 0.5 0.226251 8.48644e-07 1.82726e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| I may refer ||| 0.166667 0.0060084 8.48644e-07 1.4218e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| I may say so , we in ||| 1 0.605812 8.48644e-07 7.18726e-15 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| I may ||| 0.00194175 0.0060084 1.69729e-06 1.82048e-06 2.718 ||| 0-0 ||| 1030 1.17835e+06 +en ||| I mean also we in ||| 1 0.605812 8.48644e-07 4.82436e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| I mean in the ||| 0.2 0.605812 8.48644e-07 5.16768e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| I mean in ||| 0.2 0.605812 1.69729e-06 8.41753e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| I mean ||| 0.000827815 0.0060084 8.48644e-07 6.26185e-07 2.718 ||| 0-0 ||| 1208 1.17835e+06 +en ||| I meet her in ||| 1 0.605812 8.48644e-07 1.08077e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I mention the ||| 0.0714286 0.0011669 8.48644e-07 1.96961e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| I might add , in ||| 1 0.605812 8.48644e-07 1.22657e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| I might also say that in ||| 1 0.605812 8.48644e-07 1.01814e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| I must be ||| 0.0277778 0.0060084 8.48644e-07 6.80633e-08 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| I must disagree ||| 0.111111 0.152311 8.48644e-07 2.32869e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| I must say , of ||| 0.5 0.0116562 8.48644e-07 1.69939e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| I must use ||| 0.2 0.0060084 8.48644e-07 1.826e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| I must ||| 0.00120254 0.0060084 5.94051e-06 3.75565e-06 2.718 ||| 0-0 ||| 5821 1.17835e+06 +en ||| I noted in ||| 0.2 0.605812 8.48644e-07 9.99521e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| I only have ||| 0.00917431 0.0060084 8.48644e-07 3.23479e-08 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| I only ||| 0.00694444 0.0060084 8.48644e-07 2.70472e-06 2.718 ||| 0-0 ||| 144 1.17835e+06 +en ||| I otherwise ||| 0.0714286 0.0196799 8.48644e-07 1.16005e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| I participated in ||| 0.03125 0.605812 8.48644e-07 1.17591e-08 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| I personally do , in ||| 1 0.605812 8.48644e-07 5.20547e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| I pointed out at ||| 1 0.321886 8.48644e-07 4.99645e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I put on ||| 0.5 0.22993 8.48644e-07 6.47714e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| I quote : in ||| 1 0.605812 8.48644e-07 4.90656e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I quote from ||| 0.047619 0.0308834 8.48644e-07 1.20043e-09 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| I quote ||| 0.00310078 0.0060084 1.69729e-06 1.08374e-07 2.718 ||| 0-0 ||| 645 1.17835e+06 +en ||| I recall , here in ||| 1 0.605812 8.48644e-07 1.33493e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| I recall the ||| 0.0196078 0.0011669 8.48644e-07 3.42452e-10 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| I received , ||| 0.166667 0.0060084 8.48644e-07 2.5964e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| I received ||| 0.00295858 0.0060084 8.48644e-07 2.17719e-07 2.718 ||| 0-0 ||| 338 1.17835e+06 +en ||| I refer here to ||| 0.025 0.0551335 8.48644e-07 4.6586e-11 2.718 ||| 0-2 0-3 ||| 40 1.17835e+06 +en ||| I refer in ||| 0.0126582 0.605812 8.48644e-07 2.55107e-07 2.718 ||| 0-2 ||| 79 1.17835e+06 +en ||| I refer to ||| 0.00183824 0.0153717 8.48644e-07 5.33426e-09 2.718 ||| 0-0 0-2 ||| 544 1.17835e+06 +en ||| I referred in ||| 0.111111 0.605812 8.48644e-07 3.12595e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| I repeat not , ||| 0.2 0.0060084 8.48644e-07 2.49311e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| I repeat not ||| 0.5 0.0060084 8.48644e-07 2.09057e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I repeat ||| 0.0008726 0.0060084 8.48644e-07 6.12335e-08 2.718 ||| 0-0 ||| 1146 1.17835e+06 +en ||| I requested in ||| 0.25 0.605812 8.48644e-07 5.87954e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| I right in saying ||| 1 0.0071334 8.48644e-07 4.8078e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| I right in ||| 0.25 0.0071334 8.48644e-07 2.71014e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| I right ||| 0.25 0.0071334 8.48644e-07 1.26616e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| I rise ||| 0.00414938 0.0060084 8.48644e-07 3.05195e-07 2.718 ||| 0-0 ||| 241 1.17835e+06 +en ||| I said in ||| 0.00295858 0.605812 8.48644e-07 1.34347e-06 2.718 ||| 0-2 ||| 338 1.17835e+06 +en ||| I said it would be unfair to ||| 1 0.0060084 8.48644e-07 1.32694e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I said it would be unfair ||| 1 0.0060084 8.48644e-07 1.49332e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I said it would be ||| 0.5 0.0060084 8.48644e-07 1.89028e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I said it would ||| 0.5 0.0060084 8.48644e-07 1.04304e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I said it ||| 0.0384615 0.0060084 8.48644e-07 1.77728e-08 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| I said that in ||| 0.25 0.605812 8.48644e-07 2.25994e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| I said ||| 0.000656599 0.0060084 1.69729e-06 9.99418e-07 2.718 ||| 0-0 ||| 3046 1.17835e+06 +en ||| I sat in ||| 0.125 0.605812 8.48644e-07 1.76386e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| I saw in ||| 0.0833333 0.605812 8.48644e-07 1.7508e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| I say that ||| 0.00362319 0.0060084 1.69729e-06 3.90681e-08 2.718 ||| 0-0 ||| 552 1.17835e+06 +en ||| I say to myself that in ||| 1 0.605812 8.48644e-07 7.25659e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| I say ||| 0.00201106 0.0060084 3.39458e-06 2.3225e-06 2.718 ||| 0-0 ||| 1989 1.17835e+06 +en ||| I see that , in ||| 0.25 0.605812 8.48644e-07 4.61696e-09 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| I see that ||| 0.00245098 0.0060084 8.48644e-07 2.88004e-08 2.718 ||| 0-0 ||| 408 1.17835e+06 +en ||| I see ||| 0.00178174 0.0060084 3.39458e-06 1.71211e-06 2.718 ||| 0-0 ||| 2245 1.17835e+06 +en ||| I shall deal ||| 0.0555556 0.0060084 8.48644e-07 5.63947e-10 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| I shall in ||| 0.333333 0.605812 8.48644e-07 1.78542e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| I shall mention in ||| 1 0.605812 8.48644e-07 1.73543e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I shall not go into it ||| 0.2 0.266972 8.48644e-07 4.71293e-16 2.718 ||| 0-4 0-5 ||| 5 1.17835e+06 +en ||| I shall shortly be reporting ||| 1 0.248793 8.48644e-07 3.51429e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I shall shortly be ||| 0.333333 0.248793 8.48644e-07 2.7033e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| I shall shortly ||| 0.333333 0.248793 8.48644e-07 1.49165e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| I shall ||| 0.00320807 0.0060084 5.94051e-06 1.32818e-06 2.718 ||| 0-0 ||| 2182 1.17835e+06 +en ||| I should , at ||| 0.5 0.321886 8.48644e-07 1.49518e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| I should , in ||| 0.333333 0.605812 1.69729e-06 1.72603e-06 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| I should , on ||| 1 0.22993 8.48644e-07 3.10415e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I should , ||| 0.0175439 0.0060084 8.48644e-07 1.284e-06 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| I should add , ||| 0.0384615 0.0060084 8.48644e-07 1.05288e-10 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| I should add ||| 0.008 0.0060084 8.48644e-07 8.82885e-10 2.718 ||| 0-0 ||| 125 1.17835e+06 +en ||| I should also ||| 0.00308642 0.0060084 1.69729e-06 5.43577e-08 2.718 ||| 0-0 ||| 648 1.17835e+06 +en ||| I should at ||| 0.142857 0.321886 8.48644e-07 1.25377e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| I should be in a ||| 1 0.605812 8.48644e-07 1.16267e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I should be in ||| 0.5 0.605812 8.48644e-07 2.62301e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| I should in ||| 0.4 0.605812 3.39458e-06 1.44735e-05 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| I should just like to add here ||| 0.5 0.0855319 8.48644e-07 1.53517e-18 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| I should like , instead , ||| 0.25 0.340662 8.48644e-07 2.67062e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| I should like , instead ||| 0.333333 0.340662 8.48644e-07 2.23943e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| I should like , on ||| 0.315789 0.22993 5.09187e-06 5.51266e-10 2.718 ||| 0-4 ||| 19 1.17835e+06 +en ||| I should like in ||| 0.0555556 0.605812 8.48644e-07 2.57034e-08 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| I should like on ||| 0.375 0.22993 2.54593e-06 4.6226e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| I should like to explain ||| 0.016129 0.0247351 8.48644e-07 4.11476e-14 2.718 ||| 0-3 ||| 62 1.17835e+06 +en ||| I should like to make a statement ||| 0.333333 0.0060084 8.48644e-07 9.75032e-18 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| I should like to make a ||| 0.00537634 0.0060084 8.48644e-07 1.30877e-13 2.718 ||| 0-0 ||| 186 1.17835e+06 +en ||| I should like to make ||| 0.00145985 0.0060084 8.48644e-07 2.95261e-12 2.718 ||| 0-0 ||| 685 1.17835e+06 +en ||| I should like to speak ||| 0.0204082 0.0060084 8.48644e-07 2.29881e-13 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| I should like to ||| 0.00324066 0.0247351 1.61242e-05 1.56455e-09 2.718 ||| 0-3 ||| 5863 1.17835e+06 +en ||| I should like ||| 0.000342329 0.0060084 5.09187e-06 1.91209e-08 2.718 ||| 0-0 ||| 17527 1.17835e+06 +en ||| I should nonetheless like , however , ||| 1 0.0053256 8.48644e-07 2.26074e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| I should nonetheless like , however ||| 1 0.0053256 8.48644e-07 1.89572e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| I should now like to ||| 0.0172414 0.0247351 8.48644e-07 3.22281e-12 2.718 ||| 0-4 ||| 58 1.17835e+06 +en ||| I should now ||| 0.0136986 0.0123946 8.48644e-07 1.85549e-08 2.718 ||| 0-2 ||| 73 1.17835e+06 +en ||| I should say " at ||| 0.5 0.321886 8.48644e-07 2.8377e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| I should ||| 0.00936088 0.0060084 2.46107e-05 1.07669e-05 2.718 ||| 0-0 ||| 3098 1.17835e+06 +en ||| I signed ||| 0.0175439 0.0060084 8.48644e-07 7.50839e-08 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| I speak on ||| 0.015873 0.22993 1.69729e-06 7.9481e-08 2.718 ||| 0-2 ||| 126 1.17835e+06 +en ||| I speak ||| 0.00175747 0.0060084 8.48644e-07 3.28765e-07 2.718 ||| 0-0 ||| 569 1.17835e+06 +en ||| I spent in ||| 0.166667 0.605812 8.48644e-07 2.09377e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| I status in ||| 1 0.605812 8.48644e-07 3.30234e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I stress as ||| 1 0.0962778 8.48644e-07 8.09484e-08 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| I stress the ||| 0.0175439 0.0060084 8.48644e-07 5.31066e-09 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| I stress ||| 0.00361011 0.0060084 8.48644e-07 8.65044e-08 2.718 ||| 0-0 ||| 277 1.17835e+06 +en ||| I support it in ||| 0.333333 0.605812 8.48644e-07 1.986e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| I support ||| 0.000238265 0.0060084 8.48644e-07 8.30783e-07 2.718 ||| 0-0 ||| 4197 1.17835e+06 +en ||| I take ||| 0.00134771 0.00671175 8.48644e-07 7.10989e-07 2.718 ||| 0-0 0-1 ||| 742 1.17835e+06 +en ||| I tell people in ||| 1 0.605812 8.48644e-07 2.82334e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I therefore ||| 0.000252525 0.0060084 8.48644e-07 2.03213e-06 2.718 ||| 0-0 ||| 3960 1.17835e+06 +en ||| I think , at ||| 0.142857 0.321886 8.48644e-07 1.29069e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| I think , in ||| 0.0322581 0.605812 8.48644e-07 1.48997e-07 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| I think a ||| 0.0138889 0.0060084 8.48644e-07 4.1198e-08 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| I think it is clear that in ||| 0.5 0.0060084 8.48644e-07 6.20912e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I think it is clear that ||| 0.04 0.0060084 8.48644e-07 2.90085e-15 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| I think it is clear ||| 0.0285714 0.0060084 8.48644e-07 1.72448e-13 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| I think it is ||| 0.000380084 0.0060084 8.48644e-07 5.18017e-10 2.718 ||| 0-0 ||| 2631 1.17835e+06 +en ||| I think it ||| 0.000302847 0.0060084 8.48644e-07 1.65284e-08 2.718 ||| 0-0 ||| 3302 1.17835e+06 +en ||| I think that , in ||| 0.0113636 0.0060084 8.48644e-07 3.99087e-11 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| I think that , ||| 0.00196464 0.0060084 8.48644e-07 1.8645e-09 2.718 ||| 0-0 ||| 509 1.17835e+06 +en ||| I think that we ||| 0.00355872 0.0060084 8.48644e-07 1.77489e-10 2.718 ||| 0-0 ||| 281 1.17835e+06 +en ||| I think that ||| 0.000194951 0.0060084 1.69729e-06 1.56346e-08 2.718 ||| 0-0 ||| 10259 1.17835e+06 +en ||| I think ||| 0.000392157 0.0060084 8.48644e-06 9.29437e-07 2.718 ||| 0-0 ||| 25500 1.17835e+06 +en ||| I to ||| 0.037037 0.0060084 8.48644e-07 0.000215917 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| I trust , ||| 0.0227273 0.192848 8.48644e-07 5.91243e-07 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| I trust ||| 0.00401606 0.192848 3.39458e-06 4.95782e-06 2.718 ||| 0-1 ||| 996 1.17835e+06 +en ||| I turn ||| 0.00649351 0.0060084 8.48644e-07 5.44784e-07 2.718 ||| 0-0 ||| 154 1.17835e+06 +en ||| I understand from ||| 0.037037 0.0308834 8.48644e-07 2.10209e-09 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| I understand ||| 0.0004095 0.0060084 8.48644e-07 1.89775e-07 2.718 ||| 0-0 ||| 2442 1.17835e+06 +en ||| I use that word broadly - to ||| 0.5 0.0247351 8.48644e-07 6.99359e-21 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| I very ||| 0.00872093 0.0060084 2.54593e-06 8.45484e-06 2.718 ||| 0-0 ||| 344 1.17835e+06 +en ||| I visit ||| 0.0454545 0.000774 8.48644e-07 9.9029e-09 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| I visited Nicosia and saw ||| 0.5 0.0060084 8.48644e-07 5.15524e-21 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I visited Nicosia and ||| 0.5 0.0060084 8.48644e-07 9.61799e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I visited Nicosia ||| 0.5 0.0060084 8.48644e-07 7.67848e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| I visited ||| 0.00374532 0.0060084 8.48644e-07 1.91962e-08 2.718 ||| 0-0 ||| 267 1.17835e+06 +en ||| I voted ||| 0.000228807 0.0642379 1.69729e-06 5.38685e-06 2.718 ||| 0-0 0-1 ||| 8741 1.17835e+06 +en ||| I want to mention , over and ||| 1 0.0060084 8.48644e-07 7.05691e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I want to mention , over ||| 1 0.0060084 8.48644e-07 5.63385e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| I want to mention , ||| 0.111111 0.0060084 8.48644e-07 1.17006e-12 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| I want to mention ||| 0.00740741 0.0060084 8.48644e-07 9.81146e-12 2.718 ||| 0-0 ||| 135 1.17835e+06 +en ||| I want to ||| 0.0006876 0.0060084 2.54593e-06 1.00941e-07 2.718 ||| 0-0 ||| 4363 1.17835e+06 +en ||| I want ||| 0.000642261 0.0060084 1.69729e-06 1.13598e-06 2.718 ||| 0-0 ||| 3114 1.17835e+06 +en ||| I wanted ||| 0.0026178 0.0060084 8.48644e-07 1.32916e-07 2.718 ||| 0-0 ||| 382 1.17835e+06 +en ||| I was , from ||| 1 0.0308834 8.48644e-07 1.00563e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I was , in ||| 0.25 0.605812 8.48644e-07 1.22041e-06 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| I was at ||| 0.0675676 0.321886 4.24322e-06 8.86495e-07 2.718 ||| 0-2 ||| 74 1.17835e+06 +en ||| I was entitled , on ||| 1 0.22993 8.48644e-07 1.07327e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| I was in ||| 0.00516796 0.605812 1.69729e-06 1.02337e-05 2.718 ||| 0-2 ||| 387 1.17835e+06 +en ||| I was involved in ||| 0.0333333 0.605812 8.48644e-07 3.5388e-09 2.718 ||| 0-3 ||| 30 1.17835e+06 +en ||| I was pleased ||| 0.00480769 0.0060084 8.48644e-07 3.09844e-10 2.718 ||| 0-0 ||| 208 1.17835e+06 +en ||| I was then proved right ||| 0.25 0.0060084 8.48644e-07 3.27322e-16 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| I was then proved ||| 0.25 0.0060084 8.48644e-07 5.07555e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| I was then ||| 0.111111 0.0060084 8.48644e-07 1.22598e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| I was very heartened in ||| 1 0.605812 8.48644e-07 4.98512e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| I was ||| 0.000727537 0.0060084 3.39458e-06 7.61288e-06 2.718 ||| 0-0 ||| 5498 1.17835e+06 +en ||| I were a Member of ||| 0.2 0.0116562 8.48644e-07 3.94696e-12 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| I were in ||| 0.0625 0.605812 8.48644e-07 5.85144e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| I will , at ||| 0.25 0.321886 8.48644e-07 2.91923e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| I will , in ||| 0.333333 0.605812 1.69729e-06 3.36994e-06 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| I will be coming forward in ||| 1 0.605812 8.48644e-07 5.53649e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| I will be ||| 0.00420757 0.0060084 2.54593e-06 3.80971e-07 2.718 ||| 0-0 ||| 713 1.17835e+06 +en ||| I will come up with ||| 1 0.0535436 8.48644e-07 2.06656e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| I will in ||| 0.666667 0.605812 1.69729e-06 2.82584e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| I will quote in English , ||| 0.5 0.605812 8.48644e-07 2.32964e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| I will quote in English ||| 0.25 0.605812 8.48644e-07 1.9535e-14 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| I will quote in ||| 0.25 0.605812 8.48644e-07 1.26032e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| I will say in ||| 0.0909091 0.605812 8.48644e-07 2.70093e-08 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| I will seek in the course of ||| 1 0.605812 8.48644e-07 8.27008e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I will seek in the course ||| 1 0.605812 8.48644e-07 1.52124e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I will seek in the ||| 1 0.605812 8.48644e-07 1.20571e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I will seek in ||| 1 0.605812 8.48644e-07 1.96396e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I will speak in ||| 0.0434783 0.605812 8.48644e-07 3.82336e-09 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| I will take ||| 0.00561798 0.0074151 8.48644e-07 1.79054e-08 2.718 ||| 0-2 ||| 178 1.17835e+06 +en ||| I will use ||| 0.0208333 0.0060084 8.48644e-07 1.02207e-08 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| I will ||| 0.00331675 0.0060084 1.01837e-05 2.10216e-05 2.718 ||| 0-0 ||| 3618 1.17835e+06 +en ||| I wish , in ||| 0.166667 0.605812 8.48644e-07 1.14796e-07 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| I wish , with ||| 1 0.0535436 8.48644e-07 2.89833e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I wish to make ||| 0.00480769 0.0060084 8.48644e-07 1.10577e-10 2.718 ||| 0-0 ||| 208 1.17835e+06 +en ||| I wish to ||| 0.000520021 0.0060084 1.69729e-06 6.36306e-08 2.718 ||| 0-0 ||| 3846 1.17835e+06 +en ||| I wish ||| 0.000255624 0.0060084 8.48644e-07 7.16092e-07 2.718 ||| 0-0 ||| 3912 1.17835e+06 +en ||| I worked on ||| 0.0454545 0.22993 8.48644e-07 2.55538e-08 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| I would , during ||| 1 0.226251 8.48644e-07 1.43135e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I would , in fact , ||| 0.25 0.605812 8.48644e-07 7.98596e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| I would , in fact ||| 0.25 0.605812 8.48644e-07 6.69656e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| I would , in theory , ||| 1 0.605812 8.48644e-07 2.07194e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I would , in theory ||| 1 0.605812 8.48644e-07 1.73741e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I would , in ||| 0.304348 0.605812 5.94051e-06 2.28606e-06 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| I would , ||| 0.012931 0.0060084 2.54593e-06 1.70061e-06 2.718 ||| 0-0 ||| 232 1.17835e+06 +en ||| I would alert ||| 0.333333 0.0060084 8.48644e-07 9.69704e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| I would also , on ||| 0.5 0.22993 8.48644e-07 2.07565e-09 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| I would also like , speaking on ||| 1 0.22993 8.48644e-07 4.2317e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| I would also like to remind ||| 0.0294118 0.0060084 8.48644e-07 3.51055e-16 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| I would also like to ||| 0.00149031 0.0060084 1.69729e-06 1.1361e-11 2.718 ||| 0-0 ||| 1342 1.17835e+06 +en ||| I would also like ||| 0.000579542 0.0060084 1.69729e-06 1.27856e-10 2.718 ||| 0-0 ||| 3451 1.17835e+06 +en ||| I would also ||| 0.00164926 0.0060084 2.54593e-06 7.19948e-08 2.718 ||| 0-0 ||| 1819 1.17835e+06 +en ||| I would ask for ||| 0.00961538 0.0286209 8.48644e-07 6.56709e-11 2.718 ||| 0-3 ||| 104 1.17835e+06 +en ||| I would at ||| 0.28 0.321886 5.94051e-06 1.66057e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| I would be in ||| 0.0526316 0.605812 8.48644e-07 3.47408e-07 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| I would call in ||| 1 0.605812 8.48644e-07 4.25565e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| I would emphasise ||| 0.00485437 0.207288 8.48644e-07 3.71161e-08 2.718 ||| 0-2 ||| 206 1.17835e+06 +en ||| I would get a mention into ||| 0.333333 0.525896 8.48644e-07 1.73103e-15 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| I would hope , developments in ||| 1 0.605812 8.48644e-07 1.19823e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| I would in ||| 0.545455 0.605812 1.01837e-05 1.91696e-05 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| I would let ||| 1 0.0046586 8.48644e-07 3.27532e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I would like , on ||| 0.173913 0.22993 3.39458e-06 7.30132e-10 2.718 ||| 0-4 ||| 23 1.17835e+06 +en ||| I would like in ||| 0.0769231 0.605812 1.69729e-06 3.40432e-08 2.718 ||| 0-3 ||| 26 1.17835e+06 +en ||| I would like particularly ||| 0.125 0.183344 8.48644e-07 3.29226e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| I would like to ask ||| 0.00150943 0.0060084 1.69729e-06 3.0942e-13 2.718 ||| 0-0 ||| 1325 1.17835e+06 +en ||| I would like to give a ||| 0.0344828 0.0060084 8.48644e-07 6.04471e-14 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| I would like to give ||| 0.00512821 0.0060084 8.48644e-07 1.3637e-12 2.718 ||| 0-0 ||| 195 1.17835e+06 +en ||| I would like to remind ||| 0.00358423 0.0060084 8.48644e-07 6.95352e-14 2.718 ||| 0-0 ||| 279 1.17835e+06 +en ||| I would like to say a ||| 0.00909091 0.0247351 8.48644e-07 8.77916e-14 2.718 ||| 0-3 ||| 110 1.17835e+06 +en ||| I would like to say that at ||| 0.25 0.321886 8.48644e-07 4.21316e-15 2.718 ||| 0-6 ||| 4 1.17835e+06 +en ||| I would like to say ||| 0.000374532 0.0247351 8.48644e-07 1.9806e-12 2.718 ||| 0-3 ||| 2670 1.17835e+06 +en ||| I would like to take ||| 0.0017094 0.0160751 8.48644e-07 6.06322e-13 2.718 ||| 0-3 0-4 ||| 585 1.17835e+06 +en ||| I would like to ||| 0.00167371 0.0247351 1.78215e-05 2.07219e-09 2.718 ||| 0-3 ||| 12547 1.17835e+06 +en ||| I would like ||| 0.000164231 0.0060084 5.09187e-06 2.5325e-08 2.718 ||| 0-0 ||| 36534 1.17835e+06 +en ||| I would not put money on it ||| 1 0.22993 8.48644e-07 3.77106e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| I would not put money on ||| 1 0.22993 8.48644e-07 2.12058e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| I would not ||| 0.00392157 0.0008293 8.48644e-07 7.54278e-09 2.718 ||| 0-2 ||| 255 1.17835e+06 +en ||| I would note that ||| 0.0285714 0.0060084 8.48644e-07 2.50437e-11 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| I would note ||| 0.0192308 0.0060084 8.48644e-07 1.48878e-09 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| I would now like to comment on ||| 0.111111 0.22993 8.48644e-07 5.12137e-17 2.718 ||| 0-6 ||| 9 1.17835e+06 +en ||| I would now like to look ||| 0.2 0.0247351 8.48644e-07 1.24427e-15 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| I would now like to ||| 0.00909091 0.0247351 8.48644e-07 4.2685e-12 2.718 ||| 0-4 ||| 110 1.17835e+06 +en ||| I would say , ||| 0.00465116 0.0060084 8.48644e-07 1.62545e-09 2.718 ||| 0-0 ||| 215 1.17835e+06 +en ||| I would say that in ||| 0.0833333 0.605812 8.48644e-07 3.0821e-10 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| I would say that ||| 0.00130719 0.0060084 8.48644e-07 2.29279e-10 2.718 ||| 0-0 ||| 765 1.17835e+06 +en ||| I would say to ||| 0.00387597 0.0247351 8.48644e-07 1.11526e-09 2.718 ||| 0-3 ||| 258 1.17835e+06 +en ||| I would say ||| 0.00280426 0.0060084 4.24322e-06 1.363e-08 2.718 ||| 0-0 ||| 1783 1.17835e+06 +en ||| I would stress that ||| 0.00487805 0.0060084 8.48644e-07 8.5398e-12 2.718 ||| 0-0 ||| 205 1.17835e+06 +en ||| I would stress ||| 0.00220751 0.0060084 8.48644e-07 5.07669e-10 2.718 ||| 0-0 ||| 453 1.17835e+06 +en ||| I would to ||| 0.125 0.0247351 8.48644e-07 1.16684e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| I would under ||| 1 0.205566 8.48644e-07 2.34735e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| I would warn ||| 0.0188679 0.0060084 8.48644e-07 7.13018e-11 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| I would ||| 0.00418994 0.0060084 4.58268e-05 1.42604e-05 2.718 ||| 0-0 ||| 12888 1.17835e+06 +en ||| I ||| 0.00466124 0.0060084 0.000739169 0.0024299 2.718 ||| 0-0 ||| 186860 1.17835e+06 +en ||| ICC ) in ||| 0.4 0.605812 1.69729e-06 1.46018e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| II in ||| 0.0357143 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| ISO in another guise ||| 1 0.605812 8.48644e-07 1.42509e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ISO in another ||| 1 0.605812 8.48644e-07 4.45342e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ISO in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Imbeni was also involved in ||| 1 0.605812 8.48644e-07 3.53607e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Immunities at ||| 1 0.321886 8.48644e-07 2.60013e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Immunities in ||| 0.333333 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Improvement of Living and Working Conditions in ||| 1 0.605812 8.48644e-07 1.82081e-27 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| In the ||| 0.00552486 0.0659459 8.48644e-07 2.54776e-06 2.718 ||| 0-0 ||| 181 1.17835e+06 +en ||| In this ||| 0.030303 0.0659459 8.48644e-07 2.68148e-07 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| In ||| 0.0571096 0.0659459 4.15836e-05 4.15e-05 2.718 ||| 0-0 ||| 858 1.17835e+06 +en ||| India at ||| 0.0909091 0.321886 8.48644e-07 3.32017e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| Industrial Policy in ||| 0.111111 0.605812 8.48644e-07 3.71013e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| Industrie into ||| 1 0.525896 8.48644e-07 8.85492e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Industry Council which I chaired . ||| 0.5 0.0060084 8.48644e-07 4.22022e-22 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Industry Council which I chaired ||| 0.5 0.0060084 8.48644e-07 1.39327e-19 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Industry Council which I ||| 0.5 0.0060084 8.48644e-07 4.35398e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Information Centre in ||| 1 0.605812 8.48644e-07 1.66241e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Information System will lead to ||| 1 0.0247351 8.48644e-07 1.086e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Ingushetia ; in ||| 1 0.605812 8.48644e-07 5.68914e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Institute to withdraw this misleading and ||| 0.25 0.0247351 8.48644e-07 4.3218e-22 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Institute to withdraw this misleading ||| 0.25 0.0247351 8.48644e-07 3.45029e-20 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Institute to withdraw this ||| 0.25 0.0247351 8.48644e-07 7.34104e-15 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Institute to withdraw ||| 0.25 0.0247351 8.48644e-07 1.13614e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Institute to ||| 0.0833333 0.0247351 8.48644e-07 1.20866e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| Institutions in ||| 0.25 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Intergovernmental Conference on ||| 0.030303 0.22993 8.48644e-07 7.76503e-12 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| Interim Force in ||| 0.5 0.605812 8.48644e-07 1.16369e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Interior Ministers in Luxembourg on 13 June ||| 1 0.605812 8.48644e-07 1.94047e-29 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Interior Ministers in Luxembourg on 13 ||| 1 0.605812 8.48644e-07 2.25636e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Interior Ministers in Luxembourg on ||| 1 0.605812 8.48644e-07 2.40039e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Interior Ministers in Luxembourg ||| 1 0.605812 8.48644e-07 3.58749e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Interior Ministers in ||| 1 0.605812 8.48644e-07 4.32227e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Internal Market first and ||| 1 0.138055 8.48644e-07 6.34068e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Internal Market first ||| 1 0.138055 8.48644e-07 5.06206e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Internal Market in ||| 0.0666667 0.605812 8.48644e-07 3.82461e-10 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| Internal Market on ||| 0.05 0.22993 8.48644e-07 6.87832e-11 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| International Agency for Cancer Research based in ||| 1 0.605812 8.48644e-07 4.6347e-27 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| International Agreement on ||| 0.333333 0.22993 8.48644e-07 5.25082e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| Internet ||| 0.000354359 0.0030435 8.48644e-07 9.5e-06 2.718 ||| 0-0 ||| 2822 1.17835e+06 +en ||| Iranian side during ||| 1 0.226251 8.48644e-07 2.97873e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Iraq at ||| 0.0833333 0.321886 8.48644e-07 5.04025e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| Ireland , in ||| 0.0588235 0.605812 8.48644e-07 1.25008e-06 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| Islamic communities in Western Europe , as ||| 1 0.605812 8.48644e-07 3.53979e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Islamic communities in Western Europe , ||| 1 0.605812 8.48644e-07 3.46888e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Islamic communities in Western Europe ||| 1 0.605812 8.48644e-07 2.9088e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Islamic communities in Western ||| 1 0.605812 8.48644e-07 5.74862e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Islamic communities in ||| 0.5 0.605812 8.48644e-07 4.42202e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Israel 's population is among the most ||| 1 0.0422459 8.48644e-07 7.38294e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Israel 's population is among the ||| 1 0.0422459 8.48644e-07 1.70822e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Israel 's population is among ||| 1 0.0422459 8.48644e-07 2.78249e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Israeli citizens in ||| 1 0.605812 8.48644e-07 3.9764e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Italia , in ||| 1 0.605812 8.48644e-07 3.85487e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Italia party in ||| 1 0.605812 8.48644e-07 2.21101e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Italian version at this point ||| 1 0.321886 8.48644e-07 1.56867e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Italian version at this ||| 1 0.321886 8.48644e-07 1.79318e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Italian version at ||| 1 0.321886 8.48644e-07 2.77522e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Italy , in ||| 0.030303 0.605812 8.48644e-07 6.16779e-07 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| Italy in ||| 0.0142857 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| Jenin also go to ||| 1 0.0247351 8.48644e-07 3.3195e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Jesus ' birth through direct ||| 0.5 0.0366102 8.48644e-07 1.20391e-21 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Jesus ' birth through ||| 0.5 0.0366102 8.48644e-07 2.44202e-17 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| June , at ||| 0.111111 0.321886 8.48644e-07 4.10257e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| June on tourism and employment . ||| 1 0.22993 8.48644e-07 2.38517e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| June on tourism and employment ||| 1 0.22993 8.48644e-07 7.87445e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| June on tourism and ||| 1 0.22993 8.48644e-07 1.61032e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| June on tourism ||| 1 0.22993 8.48644e-07 1.28559e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| June on ||| 0.0454545 0.22993 8.48644e-07 7.14216e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| Justice and Home Affairs , with ||| 0.111111 0.0535436 8.48644e-07 2.20626e-18 2.718 ||| 0-5 ||| 9 1.17835e+06 +en ||| Justice had been given ||| 1 0.0546585 8.48644e-07 2.10104e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Justice in Environmental ||| 0.5 0.605812 8.48644e-07 6.23404e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Justice in ||| 0.0168067 0.605812 3.39458e-06 2.49362e-05 2.718 ||| 0-1 ||| 238 1.17835e+06 +en ||| KICs ) within ||| 0.5 0.369196 8.48644e-07 6.37397e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Kaliningrad ||| 0.00234192 0.0086705 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 427 1.17835e+06 +en ||| Kan in aanmerking komen om het lidmaatschap ||| 1 0.605812 8.48644e-07 1.89146e-39 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Kan in aanmerking komen om het ||| 1 0.605812 8.48644e-07 4.72864e-33 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Kan in aanmerking komen om ||| 1 0.605812 8.48644e-07 1.18216e-26 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Kan in aanmerking komen ||| 1 0.605812 8.48644e-07 2.9554e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Kan in aanmerking ||| 1 0.605812 8.48644e-07 7.3885e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Kan in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Kazakhstan . I have been there myself ||| 1 0.0117359 8.48644e-07 2.08891e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Kazakhstan . I have been there ||| 1 0.0117359 8.48644e-07 1.34335e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Kingdom with regard ||| 0.125 0.0535436 8.48644e-07 1.85762e-10 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| Kingdom with ||| 0.0666667 0.0535436 8.48644e-07 2.72818e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| Knesset in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Korea in a ||| 0.333333 0.605812 8.48644e-07 1.2486e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Korea in ||| 0.047619 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| Kosovo and Turkey ( over Kurdistan ) ||| 1 0.157937 8.48644e-07 4.00238e-26 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Kosovo and Turkey ( over Kurdistan ||| 1 0.157937 8.48644e-07 2.78465e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Kosovo and Turkey ( over ||| 1 0.157937 8.48644e-07 6.96164e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Kurds in ||| 0.025 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| LPG in ||| 0.166667 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| Ladies and Gentlemen , in ||| 0.5 0.605812 8.48644e-07 1.06229e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| Land in blood is to have impartial ||| 1 0.605812 8.48644e-07 4.78458e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Land in blood is to have ||| 1 0.605812 8.48644e-07 2.17481e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Land in blood is to ||| 1 0.605812 8.48644e-07 1.81843e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Land in blood is ||| 1 0.605812 8.48644e-07 2.04644e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Land in blood ||| 1 0.605812 8.48644e-07 6.52958e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Land in ||| 1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Latin America at ||| 0.1 0.321886 8.48644e-07 1.1967e-11 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| Law in ||| 0.111111 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| Libya in ||| 0.0384615 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| Life ' sentiment , where ||| 1 0.247783 8.48644e-07 1.82107e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Lisbon ||| 9.60523e-05 0.0003136 1.69729e-06 2.7e-06 2.718 ||| 0-0 ||| 20822 1.17835e+06 +en ||| Lisbonisation ||| 0.0416667 0.0909091 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| Living and Working Conditions in ||| 0.5 0.605812 8.48644e-07 8.37324e-20 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| Louth - where ||| 0.333333 0.247783 8.48644e-07 1.28502e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| Lower Bavaria across ||| 1 0.274879 8.48644e-07 1.00661e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Lukaschenko ||| 0.0666667 0.0454545 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| MAGP ) ||| 1 0.0236686 8.48644e-07 3.88071e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| MAGP ||| 0.00840336 0.0236686 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 119 1.17835e+06 +en ||| Macao consequently is in ||| 1 0.605812 8.48644e-07 4.51839e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Macedonia in partnership and assist it in ||| 1 0.605812 8.48644e-07 5.78055e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| Madam Commissioner , in ||| 0.166667 0.605812 8.48644e-07 9.08284e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| Madam President , ||| 4.1336e-05 0.0001121 8.48644e-07 3.45839e-11 2.718 ||| 0-0 ||| 24192 1.17835e+06 +en ||| Madam President ||| 4.10357e-05 0.0001121 8.48644e-07 2.9e-10 2.718 ||| 0-0 ||| 24369 1.17835e+06 +en ||| Madam ||| 0.000119379 0.0001121 2.54593e-06 2e-06 2.718 ||| 0-0 ||| 25130 1.17835e+06 +en ||| Market first and ||| 1 0.138055 8.48644e-07 2.28906e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Market first ||| 1 0.138055 8.48644e-07 1.82746e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Market in ||| 0.1 0.605812 1.69729e-06 1.38073e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| Market on ||| 0.0555556 0.22993 8.48644e-07 2.48315e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| Martin in ||| 0.142857 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| Matters into a ||| 1 0.525896 8.48644e-07 1.37375e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Matters into ||| 1 0.525896 8.48644e-07 3.09922e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| May and in ||| 0.333333 0.605812 8.48644e-07 4.97443e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| Media and Sport with a view to ||| 1 0.0535436 8.48644e-07 4.88198e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Media and Sport with a view ||| 1 0.0535436 8.48644e-07 5.49412e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Media and Sport with a ||| 1 0.0535436 8.48644e-07 6.08228e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Media and Sport with ||| 1 0.0535436 8.48644e-07 1.37218e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Mediterranean countries within ||| 1 0.369196 8.48644e-07 6.52491e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Mediterranean in ||| 0.0222222 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| Melilla ||| 0.010989 0.0408163 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 91 1.17835e+06 +en ||| Member State in ||| 0.00480769 0.605812 1.69729e-06 2.86023e-08 2.718 ||| 0-2 ||| 416 1.17835e+06 +en ||| Member State of ||| 0.00175439 0.0116562 8.48644e-07 8.44663e-10 2.718 ||| 0-2 ||| 570 1.17835e+06 +en ||| Member State to ||| 0.0015361 0.0247351 8.48644e-07 1.741e-09 2.718 ||| 0-2 ||| 651 1.17835e+06 +en ||| Member States ' jurisdiction over ||| 1 0.157937 8.48644e-07 2.80927e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Member States , in terms ||| 0.125 0.605812 8.48644e-07 1.48633e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| Member States , in ||| 0.00719424 0.605812 1.69729e-06 1.35417e-08 2.718 ||| 0-3 ||| 278 1.17835e+06 +en ||| Member States - in ||| 0.0666667 0.605812 8.48644e-07 4.28331e-10 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| Member States and ||| 0.000146864 0.0010182 8.48644e-07 2.26893e-10 2.718 ||| 0-2 ||| 6809 1.17835e+06 +en ||| Member States are ||| 0.000492611 0.0006429 8.48644e-07 3.98114e-11 2.718 ||| 0-2 ||| 2030 1.17835e+06 +en ||| Member States at ||| 0.0140845 0.321886 1.69729e-06 9.83654e-09 2.718 ||| 0-2 ||| 142 1.17835e+06 +en ||| Member States first . ||| 1 0.138055 8.48644e-07 4.55235e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Member States first ||| 0.2 0.138055 8.48644e-07 1.50292e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| Member States for ||| 0.00471698 0.0286209 1.69729e-06 2.82914e-09 2.718 ||| 0-2 ||| 424 1.17835e+06 +en ||| Member States from ||| 0.00595238 0.0308834 8.48644e-07 9.35679e-10 2.718 ||| 0-2 ||| 168 1.17835e+06 +en ||| Member States in ||| 0.0034965 0.605812 6.78915e-06 1.13553e-07 2.718 ||| 0-2 ||| 2288 1.17835e+06 +en ||| Member States into ||| 0.0289855 0.525896 1.69729e-06 5.44359e-09 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| Member States to ||| 0.00033173 0.0247351 1.69729e-06 6.91186e-09 2.718 ||| 0-2 ||| 6029 1.17835e+06 +en ||| Member States within ||| 0.0114943 0.369196 8.48644e-07 2.72623e-09 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| Member for any ||| 1 0.0286209 8.48644e-07 8.96527e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Member for ||| 0.0196078 0.0286209 8.48644e-07 5.92863e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| Member here ||| 0.125 0.0855319 8.48644e-07 1.54595e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| Member in believing ||| 1 0.605812 8.48644e-07 1.97503e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Member in ||| 0.0483871 0.605812 2.54593e-06 0.000237956 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| Member of Parliament ||| 0.00574713 0.0116562 8.48644e-07 4.03358e-09 2.718 ||| 0-1 ||| 174 1.17835e+06 +en ||| Member of ||| 0.0157895 0.0116562 1.01837e-05 7.02715e-06 2.718 ||| 0-1 ||| 760 1.17835e+06 +en ||| Member since ||| 0.5 0.0075235 8.48644e-07 8.94045e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Member who asks to make ||| 1 0.0247351 8.48644e-07 1.04342e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Member who asks to ||| 1 0.0247351 8.48644e-07 6.00428e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Members , on ||| 0.166667 0.22993 8.48644e-07 1.46083e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| Members are to be commended on ||| 0.333333 0.22993 8.48644e-07 4.19024e-16 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| Members at a time ||| 0.5 0.321886 8.48644e-07 4.29362e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Members at a ||| 0.333333 0.321886 8.48644e-07 2.61535e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Members at ||| 0.0833333 0.321886 8.48644e-07 5.9003e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| Members from ||| 0.0030303 0.0308834 8.48644e-07 5.61252e-07 2.718 ||| 0-1 ||| 330 1.17835e+06 +en ||| Members in paying ||| 0.5 0.605812 8.48644e-07 2.30221e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Members in ||| 0.0159236 0.605812 4.24322e-06 6.81127e-05 2.718 ||| 0-1 ||| 314 1.17835e+06 +en ||| Members of Europe ||| 1 0.0116562 8.48644e-07 1.0178e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Members of the ||| 0.000535045 0.0116562 8.48644e-07 1.23487e-07 2.718 ||| 0-1 ||| 1869 1.17835e+06 +en ||| Members of ||| 0.00414324 0.0116562 1.1881e-05 2.01146e-06 2.718 ||| 0-1 ||| 3379 1.17835e+06 +en ||| Members ||| 0.000112039 0.0001021 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 17851 1.17835e+06 +en ||| Minister , ||| 0.00070373 0.0001187 8.48644e-07 7.4052e-09 2.718 ||| 0-1 ||| 1421 1.17835e+06 +en ||| Minister in a ||| 0.25 0.605812 8.48644e-07 7.65534e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Minister in ||| 0.0208333 0.605812 8.48644e-07 1.72706e-05 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| Minister of Belarus when ||| 1 0.142731 8.48644e-07 1.44042e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Ministers in Luxembourg on 13 June ||| 1 0.605812 8.48644e-07 4.85118e-23 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Ministers in Luxembourg on 13 ||| 1 0.605812 8.48644e-07 5.64091e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Ministers in Luxembourg on ||| 0.333333 0.605812 8.48644e-07 6.00097e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Ministers in Luxembourg ||| 0.166667 0.605812 8.48644e-07 8.96871e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| Ministers in ||| 0.0222222 0.605812 1.69729e-06 1.08057e-05 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| Minutes in ||| 0.142857 0.605812 8.48644e-07 4.98724e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| Monetary Affairs on ||| 0.0212766 0.22993 8.48644e-07 8.5191e-11 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| Monetary Union from ||| 0.5 0.0308834 8.48644e-07 2.43911e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Monti was attending ||| 1 0.084022 8.48644e-07 2.34035e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Mountain ||| 0.0769231 0.0588235 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| Mountains on ||| 0.5 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Mr Brok said in the debate ||| 0.333333 0.605812 8.48644e-07 2.10892e-18 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| Mr Brok said in the ||| 0.333333 0.605812 8.48644e-07 1.06565e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| Mr Brok said in ||| 0.25 0.605812 8.48644e-07 1.73581e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| Mr Camre ||| 0.037037 0.0001675 8.48644e-07 1.06e-11 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| Mr Christodoulou , with ||| 1 0.0535436 8.48644e-07 3.63056e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Mr Euro ' on the model of ||| 0.5 0.22993 8.48644e-07 2.24924e-19 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Mr Euro ' on the model ||| 0.5 0.22993 8.48644e-07 4.13737e-18 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Mr Euro ' on the ||| 0.5 0.22993 8.48644e-07 1.07464e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Mr Euro ' on ||| 0.5 0.22993 8.48644e-07 1.75046e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Mr Imbeni was also involved in ||| 1 0.605812 8.48644e-07 2.30834e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Mr Monti was attending ||| 1 0.084022 8.48644e-07 1.52778e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Mr Oostlander , on ||| 0.0833333 0.22993 8.48644e-07 4.52569e-12 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| Mr President , Commissioner , with regard ||| 1 0.0535436 8.48644e-07 9.42559e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Mr President , Commissioner , with ||| 0.0714286 0.0535436 8.48644e-07 1.38428e-15 2.718 ||| 0-5 ||| 14 1.17835e+06 +en ||| Mr President , in ||| 0.0012012 0.605812 1.69729e-06 5.21266e-09 2.718 ||| 0-3 ||| 1665 1.17835e+06 +en ||| Mr President , it is ||| 0.000879507 0.0001675 8.48644e-07 2.55396e-13 2.718 ||| 0-0 ||| 1137 1.17835e+06 +en ||| Mr President , it ||| 0.00210526 0.0001675 8.48644e-07 8.14891e-12 2.718 ||| 0-0 ||| 475 1.17835e+06 +en ||| Mr President , ladies and ||| 0.00070922 0.0022154 8.48644e-07 1.30345e-14 2.718 ||| 0-1 ||| 1410 1.17835e+06 +en ||| Mr President , ladies ||| 0.000646831 0.0022154 8.48644e-07 1.0406e-12 2.718 ||| 0-1 ||| 1546 1.17835e+06 +en ||| Mr President , on ||| 0.001657 0.22993 1.69729e-06 9.37465e-10 2.718 ||| 0-3 ||| 1207 1.17835e+06 +en ||| Mr President , ||| 4.34419e-05 0.0001675 3.39458e-06 4.58236e-10 2.718 ||| 0-0 ||| 92077 1.17835e+06 +en ||| Mr President ||| 6.42756e-05 0.0001675 5.09187e-06 3.8425e-09 2.718 ||| 0-0 ||| 93348 1.17835e+06 +en ||| Mr Prodi in ||| 0.125 0.605812 8.48644e-07 1.74841e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| Mr ||| 0.000118864 0.0001675 1.78215e-05 2.65e-05 2.718 ||| 0-0 ||| 176673 1.17835e+06 +en ||| Mrs Randzio-Plath , whether in relation ||| 1 0.605812 8.48644e-07 2.30615e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Mrs Randzio-Plath , whether in ||| 1 0.605812 8.48644e-07 9.47863e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| NATO exercise which took place in ||| 1 0.605812 8.48644e-07 3.88088e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| NATO in ||| 0.0163934 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| NATO summit in ||| 0.0909091 0.605812 8.48644e-07 1.06394e-10 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| NL ) During ||| 0.2 0.0004237 8.48644e-07 4.02444e-16 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| NL ) In ||| 0.115385 0.0659459 2.54593e-06 2.70205e-12 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| NL ) On ||| 0.142857 0.0070671 8.48644e-07 9.11536e-14 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| NL ) ||| 0.000464468 0.0004237 8.48644e-07 1.00611e-09 2.718 ||| 0-0 ||| 2153 1.17835e+06 +en ||| NL ||| 0.000465983 0.0004237 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2146 1.17835e+06 +en ||| NOW , on ||| 1 0.22993 8.48644e-07 3.96156e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Nakba in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Nations Interim Force in ||| 0.5 0.605812 8.48644e-07 4.39874e-17 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Nations in ||| 0.272727 0.605812 2.54593e-06 1.74553e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| Netherlands in ||| 0.0277778 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| Networks by ||| 1 0.0468744 8.48644e-07 3.99834e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| No ' ||| 0.0131579 0.0032578 8.48644e-07 1.84753e-08 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| No 21 in relation to ||| 1 0.605812 8.48644e-07 5.60974e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| No 21 in relation ||| 1 0.605812 8.48644e-07 6.31313e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| No 21 in ||| 0.333333 0.605812 8.48644e-07 2.59479e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| North Korea in a ||| 0.5 0.605812 8.48644e-07 2.60957e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| North Korea in ||| 0.0555556 0.605812 8.48644e-07 5.88725e-11 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| North to South ||| 0.111111 0.0247351 8.48644e-07 1.26892e-11 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| North to ||| 0.1 0.0247351 8.48644e-07 5.87463e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| OECD Industry Council which I chaired . ||| 0.5 0.0060084 8.48644e-07 7.5964e-28 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| OECD Industry Council which I chaired ||| 0.5 0.0060084 8.48644e-07 2.50789e-25 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| OECD Industry Council which I ||| 0.5 0.0060084 8.48644e-07 7.83716e-20 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| On ||| 0.00732601 0.0070671 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 273 1.17835e+06 +en ||| One from ||| 0.5 0.0308834 8.48644e-07 1.21763e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Oostlander , on ||| 0.0909091 0.22993 8.48644e-07 6.93274e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| Ostend airport in ||| 0.5 0.605812 8.48644e-07 1.12675e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Ottawa treaty appear in ||| 1 0.605812 8.48644e-07 7.43021e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Oviedo in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| PPE-DE group voted against this , ||| 1 0.122467 8.48644e-07 1.03944e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| PPE-DE group voted against this ||| 1 0.122467 8.48644e-07 8.71614e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| PPE-DE group voted against ||| 1 0.122467 8.48644e-07 1.34896e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| PPE-DE group voted ||| 1 0.122467 8.48644e-07 5.65363e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| PT ) At ||| 0.5 0.0814815 1.69729e-06 1.03593e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| PT ) In ||| 0.0289855 0.0659459 1.69729e-06 5.73217e-12 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| PVC not only in ||| 1 0.605812 8.48644e-07 2.45683e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Pact here in ||| 0.5 0.605812 8.48644e-07 1.41396e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Pact into ||| 0.25 0.525896 8.48644e-07 3.34273e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Palestine at ||| 0.25 0.321886 8.48644e-07 1.72009e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Panel of ||| 0.0833333 0.0116562 8.48644e-07 9.5459e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| Paper - to put ||| 1 0.0247351 8.48644e-07 1.47301e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Paper - to ||| 1 0.0247351 8.48644e-07 1.33594e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Paragraph of ||| 1 0.0116562 8.48644e-07 9.5459e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Parliament 's budget , in ||| 0.5 0.605812 8.48644e-07 7.42843e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| Parliament 's concerns in ||| 0.333333 0.605812 8.48644e-07 3.78084e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| Parliament 's role in preparing ||| 1 0.605812 8.48644e-07 1.65852e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Parliament 's role in ||| 0.0185185 0.605812 8.48644e-07 1.12062e-10 2.718 ||| 0-3 ||| 54 1.17835e+06 +en ||| Parliament , in ||| 0.00409836 0.605812 8.48644e-07 3.16099e-05 2.718 ||| 0-2 ||| 244 1.17835e+06 +en ||| Parliament , into ||| 1 0.525896 8.48644e-07 1.51535e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Parliament agree about the ||| 1 0.0401564 8.48644e-07 1.60688e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Parliament agree about ||| 1 0.0401564 8.48644e-07 2.61742e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Parliament at 10 a.m. regarding the ||| 1 0.321886 8.48644e-07 2.54438e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Parliament at 10 a.m. regarding ||| 1 0.321886 8.48644e-07 4.1445e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Parliament at 10 a.m. ||| 1 0.321886 8.48644e-07 6.69547e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Parliament at 10 ||| 1 0.321886 8.48644e-07 3.71971e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Parliament at ||| 0.0117302 0.321886 3.39458e-06 2.29611e-05 2.718 ||| 0-1 ||| 341 1.17835e+06 +en ||| Parliament during ||| 0.0120482 0.226251 8.48644e-07 1.65961e-06 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| Parliament for ||| 0.00111359 0.0286209 8.48644e-07 6.60398e-06 2.718 ||| 0-1 ||| 898 1.17835e+06 +en ||| Parliament has had on ||| 0.333333 0.22993 8.48644e-07 2.46288e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| Parliament has in ||| 0.142857 0.605812 8.48644e-07 1.36441e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| Parliament held in ||| 1 0.605812 8.48644e-07 6.76174e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Parliament in ||| 0.00685401 0.605812 8.48644e-06 0.000265062 2.718 ||| 0-1 ||| 1459 1.17835e+06 +en ||| Parliament into ||| 0.0222222 0.525896 8.48644e-07 1.27068e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| Parliament on the ||| 0.00297619 0.22993 8.48644e-07 2.92653e-06 2.718 ||| 0-1 ||| 336 1.17835e+06 +en ||| Parliament on ||| 0.0020141 0.22993 1.69729e-06 4.76698e-05 2.718 ||| 0-1 ||| 993 1.17835e+06 +en ||| Parliament over ||| 0.0294118 0.157937 1.69729e-06 2.30013e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| Parliament representing ||| 0.0714286 0.0450358 8.48644e-07 3.43826e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| Parliament to ||| 0.00128205 0.0247351 2.54593e-06 1.61342e-05 2.718 ||| 0-1 ||| 2340 1.17835e+06 +en ||| Parliament was in excess of the amount ||| 1 0.605812 8.48644e-07 7.28276e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Parliament was in excess of the ||| 1 0.605812 8.48644e-07 2.99333e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Parliament was in excess of ||| 1 0.605812 8.48644e-07 4.87577e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Parliament was in excess ||| 1 0.605812 8.48644e-07 8.96876e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Parliament was in ||| 0.166667 0.605812 8.48644e-07 8.3044e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| Parliamentary Assembly takes on a monitoring role ||| 1 0.22993 8.48644e-07 3.76534e-25 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Parliamentary Assembly takes on a monitoring ||| 1 0.22993 8.48644e-07 1.6961e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Parliamentary Assembly takes on a ||| 1 0.22993 8.48644e-07 4.4517e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Parliamentary Assembly takes on ||| 1 0.22993 8.48644e-07 1.00431e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Parties in ||| 0.0526316 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| Partnership for ||| 0.00900901 0.0286209 8.48644e-07 3.68166e-08 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| Party at ||| 0.5 0.321886 8.48644e-07 6.0323e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Party in ||| 0.0666667 0.605812 8.48644e-07 6.96366e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| Party voted in ||| 1 0.605812 8.48644e-07 2.80635e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Payment on Commercial Debt ||| 1 0.22993 8.48644e-07 1.62775e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Payment on Commercial ||| 1 0.22993 8.48644e-07 4.06937e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Payment on ||| 1 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| People 's Party in ||| 0.25 0.605812 8.48644e-07 7.78455e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| People 's Party voted in ||| 1 0.605812 8.48644e-07 3.13718e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| People in ||| 0.5 0.605812 8.48644e-07 2.71066e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Plant in ||| 0.1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| Poland at ||| 0.142857 0.321886 8.48644e-07 2.44012e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| Poland in ||| 0.015625 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| Poles who refuse to adopt our faith ||| 1 0.0247351 8.48644e-07 7.6639e-28 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Poles who refuse to adopt our ||| 1 0.0247351 8.48644e-07 5.17831e-23 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Poles who refuse to adopt ||| 1 0.0247351 8.48644e-07 3.75403e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Poles who refuse to ||| 1 0.0247351 8.48644e-07 3.60965e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Policy , which is also taken in ||| 1 0.605812 8.48644e-07 6.53088e-15 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| Policy and ||| 0.0147059 0.0010182 8.48644e-07 8.93174e-08 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| Policy as ||| 0.5 0.066968 8.48644e-07 1.74123e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Policy during ||| 1 0.226251 8.48644e-07 2.79878e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Policy in ||| 0.111111 0.605812 8.48644e-07 4.47004e-05 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| Policy on 13 ||| 0.333333 0.22993 8.48644e-07 7.55674e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Policy on ||| 0.111111 0.22993 8.48644e-07 8.03909e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| Posting of Workers ||| 0.00704225 0.0116562 8.48644e-07 1.84099e-13 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| Posting of ||| 0.00714286 0.0116562 8.48644e-07 3.40925e-08 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| Power in ||| 1 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Prefect of ||| 0.25 0.0116562 8.48644e-07 5.4548e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Presidency at ||| 0.0833333 0.321886 1.69729e-06 1.9881e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| Presidency in ||| 0.0104167 0.605812 8.48644e-07 2.29505e-05 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| Presidency of ||| 0.00289017 0.0116562 8.48644e-07 6.77759e-07 2.718 ||| 0-1 ||| 346 1.17835e+06 +en ||| President , Commissioner , with regard to ||| 1 0.0535436 8.48644e-07 1.283e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| President , Commissioner , with regard ||| 0.2 0.0535436 8.48644e-07 1.44387e-15 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| President , Commissioner , with ||| 0.0357143 0.0535436 8.48644e-07 2.12053e-12 2.718 ||| 0-4 ||| 28 1.17835e+06 +en ||| President , Ladies and Gentlemen , in ||| 0.5 0.605812 8.48644e-07 1.8369e-20 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| President , in ||| 0.000979432 0.605812 1.69729e-06 7.98509e-06 2.718 ||| 0-2 ||| 2042 1.17835e+06 +en ||| President , ladies and ||| 0.00055991 0.0022154 8.48644e-07 1.9967e-11 2.718 ||| 0-0 ||| 1786 1.17835e+06 +en ||| President , ladies ||| 0.000524109 0.0022154 8.48644e-07 1.59406e-09 2.718 ||| 0-0 ||| 1908 1.17835e+06 +en ||| President , on ||| 0.00140351 0.22993 1.69729e-06 1.43607e-06 2.718 ||| 0-2 ||| 1425 1.17835e+06 +en ||| President , ||| 1.84303e-05 0.0022154 1.69729e-06 2.67011e-05 2.718 ||| 0-0 ||| 108517 1.17835e+06 +en ||| President of the European Parliament at 10 ||| 1 0.321886 8.48644e-07 6.01938e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| President of the European Parliament at ||| 0.25 0.321886 8.48644e-07 3.71567e-14 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| President ||| 5.19986e-05 0.0022154 5.94051e-06 0.0002239 2.718 ||| 0-0 ||| 134619 1.17835e+06 +en ||| President-in-Office , ||| 0.000617665 0.253962 8.48644e-07 0.000537111 2.718 ||| 0-0 ||| 1619 1.17835e+06 +en ||| President-in-Office of ||| 0.00540541 0.253962 8.48644e-07 0.00024485 2.718 ||| 0-0 ||| 185 1.17835e+06 +en ||| President-in-Office ||| 0.000692921 0.253962 5.09187e-06 0.0045039 2.718 ||| 0-0 ||| 8659 1.17835e+06 +en ||| Prime Minister of Belarus when ||| 1 0.142731 8.48644e-07 2.17503e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Prize in ||| 0.6 0.605812 7.6378e-06 1.92563e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| Procedure as the ||| 0.333333 0.066968 8.48644e-07 7.03445e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Procedure as ||| 0.125 0.066968 8.48644e-07 1.14583e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| Procedure in ||| 0.2 0.605812 1.69729e-06 2.94155e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| Prodi in ||| 0.0555556 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| Property in ||| 1 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Protection , on ||| 0.166667 0.22993 8.48644e-07 3.52579e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| Protection in its ||| 1 0.605812 8.48644e-07 2.34212e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Protection in ||| 0.333333 0.605812 8.48644e-07 1.64394e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Protocol . as was apparent in ||| 1 0.605812 8.48644e-07 1.783e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Protocol is a long time coming in ||| 1 0.605812 8.48644e-07 7.75343e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| Protocol on ||| 0.00689655 0.22993 8.48644e-07 9.30142e-07 2.718 ||| 0-1 ||| 145 1.17835e+06 +en ||| Public Health and Consumer Policy as ||| 1 0.066968 8.48644e-07 2.70657e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Public Health and Consumer Policy during ||| 1 0.226251 8.48644e-07 4.35042e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Public Health and Consumer Protection , on ||| 0.166667 0.22993 8.48644e-07 5.48049e-21 2.718 ||| 0-6 ||| 6 1.17835e+06 +en ||| Question Times in ||| 1 0.605812 8.48644e-07 9.97447e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Racism into ||| 1 0.525896 8.48644e-07 8.85492e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Ramos in ||| 0.5 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Randzio-Plath , whether in relation ||| 1 0.605812 8.48644e-07 2.46384e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Randzio-Plath , whether in ||| 1 0.605812 8.48644e-07 1.01267e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Reform Party at ||| 0.333333 0.321886 8.48644e-07 2.32244e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| Regulation in ||| 0.0444444 0.605812 1.69729e-06 1.04824e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| Regulation within ||| 1 0.369196 8.48644e-07 2.51668e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Representative for ||| 0.00431034 0.0286209 8.48644e-07 4.14187e-08 2.718 ||| 0-1 ||| 232 1.17835e+06 +en ||| Republic . at ||| 1 0.321886 8.48644e-07 5.75539e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Republic of Macedonia ||| 0.0172414 0.0116562 8.48644e-07 4.21042e-12 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| Republic of ||| 0.000571102 0.0116562 8.48644e-07 6.47758e-07 2.718 ||| 0-1 ||| 1751 1.17835e+06 +en ||| Research , emphasising to ||| 0.333333 0.239496 8.48644e-07 5.62097e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| Research , emphasising ||| 0.333333 0.239496 8.48644e-07 6.32577e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| Research based in ||| 1 0.605812 8.48644e-07 3.70502e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Rights in ||| 0.125 0.605812 1.69729e-06 3.80508e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| Rights on ||| 0.25 0.22993 8.48644e-07 6.84319e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Rodríguez Ramos in ||| 0.5 0.605812 8.48644e-07 3.55571e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| Roma in ||| 0.00729927 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 137 1.17835e+06 +en ||| Romania in a ||| 0.5 0.605812 8.48644e-07 2.06735e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Romania in ||| 0.00980392 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| Rotterdam in ||| 0.25 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Rule in ||| 0.125 0.605812 8.48644e-07 5.63373e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| Rules of ||| 0.0019685 0.0116562 8.48644e-07 9.66863e-07 2.718 ||| 0-1 ||| 508 1.17835e+06 +en ||| Rules on ||| 0.333333 0.22993 8.48644e-07 5.88813e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Russia at ||| 0.0333333 0.321886 8.48644e-07 1.61208e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| Russians in ||| 0.047619 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| SK ) ||| 0.000978474 0.0009643 8.48644e-07 1.00611e-09 2.718 ||| 0-0 ||| 1022 1.17835e+06 +en ||| SK ||| 0.000982318 0.0009643 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1018 1.17835e+06 +en ||| SMEs ) in ||| 0.0714286 0.605812 8.48644e-07 8.09736e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| SMEs , in ||| 0.047619 0.605812 8.48644e-07 6.71849e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| SMEs in ||| 0.00763359 0.605812 1.69729e-06 5.63373e-06 2.718 ||| 0-1 ||| 262 1.17835e+06 +en ||| Sahara in ||| 0.25 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Scheme , ||| 0.25 0.0611702 8.48644e-07 1.8723e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| Scheme ||| 0.0133333 0.0611702 8.48644e-07 1.57e-05 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| Sea in ||| 0.333333 0.605812 8.48644e-07 1.01592e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Secretariat on ||| 0.5 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Secretary-General has given ||| 1 0.0546585 8.48644e-07 8.36603e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Security and Defence Policy on 13 ||| 0.333333 0.22993 8.48644e-07 1.35783e-21 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| Security and Defence Policy on ||| 0.111111 0.22993 8.48644e-07 1.4445e-16 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| Service in Northern Ireland ||| 1 0.605812 8.48644e-07 6.13222e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Service in Northern ||| 1 0.605812 8.48644e-07 2.70142e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Service in ||| 0.2 0.605812 1.69729e-06 3.00158e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| Seville where we are ||| 0.5 0.247783 8.48644e-07 1.02686e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Seville where we ||| 0.5 0.247783 8.48644e-07 6.76781e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Seville where ||| 0.333333 0.247783 8.48644e-07 5.96162e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Singapore issues ||| 0.0113636 0.0140845 8.48644e-07 8.551e-10 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| Singapore ||| 0.002079 0.0140845 8.48644e-07 3.4e-06 2.718 ||| 0-0 ||| 481 1.17835e+06 +en ||| Single Market in ||| 0.0909091 0.605812 8.48644e-07 1.09077e-10 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| Sir , on ||| 1 0.22993 8.48644e-07 1.7827e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Situation and Trend ||| 1 0.0010182 8.48644e-07 2.58356e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Situation and ||| 0.5 0.0010182 8.48644e-07 6.4589e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Slovak Member of ||| 0.166667 0.0116562 8.48644e-07 2.24869e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| Socialist Group in ||| 0.00163934 0.605812 8.48644e-07 1.2468e-09 2.718 ||| 0-2 ||| 610 1.17835e+06 +en ||| Socialists and Democrats in ||| 0.00896861 0.605812 1.69729e-06 1.02259e-11 2.718 ||| 0-3 ||| 223 1.17835e+06 +en ||| Socialists in ||| 0.0357143 0.605812 8.48644e-07 7.66557e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| Socialists will agree with ||| 1 0.0535436 8.48644e-07 2.66386e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| South Africa on ||| 0.0714286 0.22993 8.48644e-07 6.13495e-11 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| South ||| 0.000431779 0.0002018 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2316 1.17835e+06 +en ||| Sport with a view to ||| 1 0.0535436 8.48644e-07 2.40587e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Sport with a view ||| 1 0.0535436 8.48644e-07 2.70754e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Sport with a ||| 1 0.0535436 8.48644e-07 2.99738e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Sport with ||| 0.5 0.0535436 8.48644e-07 6.76216e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Stadium in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Standard & ||| 0.0714286 0.0223684 8.48644e-07 2.088e-11 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| Standards to be integrated into ||| 0.5 0.0247351 8.48644e-07 2.32423e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Standards to be integrated ||| 0.5 0.0247351 8.48644e-07 2.26379e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Standards to be ||| 0.5 0.0247351 8.48644e-07 1.12069e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Standards to ||| 0.5 0.0247351 8.48644e-07 6.18383e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| State at ||| 0.0833333 0.321886 8.48644e-07 4.80824e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| State in ||| 0.0380952 0.605812 3.39458e-06 5.55061e-05 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| State of ||| 0.00239808 0.0116562 8.48644e-07 1.63917e-06 2.718 ||| 0-1 ||| 417 1.17835e+06 +en ||| State to ||| 0.00990099 0.0247351 8.48644e-07 3.37862e-06 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| State where ||| 0.0555556 0.247783 8.48644e-07 1.0237e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| Statement made in ||| 1 0.605812 8.48644e-07 6.77137e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| States ' jurisdiction over ||| 1 0.157937 8.48644e-07 5.45172e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| States , in terms ||| 0.5 0.605812 8.48644e-07 2.8844e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| States , in ||| 0.0714286 0.605812 1.69729e-06 2.62792e-05 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| States - in ||| 0.5 0.605812 8.48644e-07 8.31227e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| States and ||| 0.00253165 0.0010182 8.48644e-07 4.40312e-07 2.718 ||| 0-1 ||| 395 1.17835e+06 +en ||| States are at ||| 0.333333 0.321886 8.48644e-07 2.89631e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| States are ||| 0.00315457 0.0006429 8.48644e-07 7.72587e-08 2.718 ||| 0-1 ||| 317 1.17835e+06 +en ||| States at ||| 0.142857 0.321886 1.69729e-06 1.9089e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| States first . ||| 1 0.138055 8.48644e-07 8.83438e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| States first ||| 0.333333 0.138055 8.48644e-07 2.9166e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| States for cooperation , that ||| 1 0.0286209 8.48644e-07 1.01437e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| States for cooperation , ||| 1 0.0286209 8.48644e-07 6.03017e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| States for cooperation ||| 1 0.0286209 8.48644e-07 5.05655e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| States for ||| 0.107143 0.0286209 2.54593e-06 5.49028e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| States from ||| 0.0192308 0.0308834 8.48644e-07 1.81579e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| States in ||| 0.0802139 0.605812 1.27297e-05 0.000220362 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| States into ||| 0.166667 0.525896 1.69729e-06 1.05639e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| States on ||| 0.0227273 0.22993 8.48644e-07 3.96307e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| States to ||| 0.00191205 0.0247351 1.69729e-06 1.34133e-05 2.718 ||| 0-1 ||| 1046 1.17835e+06 +en ||| States within ||| 0.222222 0.369196 1.69729e-06 5.29057e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| Supreme Court of Georgia . in ||| 1 0.605812 8.48644e-07 4.61209e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Sweden ' ||| 0.0243902 0.0011855 8.48644e-07 9.27423e-09 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| Sweden was ||| 0.0555556 0.0011855 8.48644e-07 8.4591e-09 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| Sweden ||| 0.00104493 0.0011855 3.39458e-06 2.7e-06 2.718 ||| 0-0 ||| 3828 1.17835e+06 +en ||| Sweden ’ ||| 0.037037 0.0011855 8.48644e-07 4.70367e-09 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| Swedish ||| 0.000809717 0.0017857 2.54593e-06 4.1e-06 2.718 ||| 0-0 ||| 3705 1.17835e+06 +en ||| System will lead to ||| 1 0.0247351 8.48644e-07 2.715e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| TENs - in ||| 1 0.605812 8.48644e-07 5.05147e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| TV rights may ||| 0.25 0.020757 8.48644e-07 1.73901e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| TV rights ||| 0.0769231 0.020757 8.48644e-07 2.32116e-09 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| TV ||| 0.00594059 0.020757 2.54593e-06 1.16e-05 2.718 ||| 0-0 ||| 505 1.17835e+06 +en ||| Tacis projects in ||| 1 0.605812 8.48644e-07 9.10632e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Tampere with ||| 0.5 0.0535436 8.48644e-07 2.0986e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| Tatarstan in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Taylor ||| 0.0138889 0.0136986 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| Teams , ||| 0.5 0.246032 8.48644e-07 2.51627e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| Teams ||| 0.285714 0.246032 1.69729e-06 2.11e-05 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| Technology for ||| 0.25 0.0286209 8.48644e-07 2.53114e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Tel ||| 0.0172414 0.0188679 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| Thar ceann an ||| 0.25 0.2 8.48644e-07 1.24452e-15 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| Thar ceann ||| 0.2 0.2 8.48644e-07 2.8e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| Thar ||| 0.2 0.2 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| Times in ||| 0.166667 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| Tomé and ||| 0.025 0.0212766 8.48644e-07 8.76813e-09 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| Tomé ||| 0.0208333 0.0212766 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| Tourism considered ||| 1 0.0169998 8.48644e-07 1.8228e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Tourism in ||| 0.1 0.605812 8.48644e-07 1.14522e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| Treaties , to participate in decision making ||| 1 0.605812 8.48644e-07 5.63773e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Treaties , to participate in decision ||| 1 0.605812 8.48644e-07 1.46549e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Treaties , to participate in ||| 1 0.605812 8.48644e-07 9.31651e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Treaties in ||| 0.027027 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| Treaty across ||| 1 0.274879 8.48644e-07 1.75848e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Treaty having changed the mood in the ||| 1 0.605812 8.48644e-07 1.26845e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Treaty having changed the mood in ||| 1 0.605812 8.48644e-07 2.06615e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Treaty in ||| 0.0211268 0.605812 2.54593e-06 3.95285e-05 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| Turkey ( over Kurdistan ) ||| 1 0.157937 8.48644e-07 1.3042e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Turkey ( over Kurdistan ||| 1 0.157937 8.48644e-07 9.07395e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Turkey ( over ||| 1 0.157937 8.48644e-07 2.26849e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Turkey and , on the other hand ||| 1 0.22993 8.48644e-07 2.29696e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Turkey and , on the other ||| 1 0.22993 8.48644e-07 5.79164e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Turkey and , on the ||| 1 0.22993 8.48644e-07 4.47058e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Turkey and , on ||| 1 0.22993 8.48644e-07 7.28205e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Turkey in the ||| 0.0138889 0.605812 8.48644e-07 1.66412e-06 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| Turkey in ||| 0.0120482 0.605812 2.54593e-06 2.71066e-05 2.718 ||| 0-1 ||| 249 1.17835e+06 +en ||| Turkey is a country in a peculiar ||| 1 0.605812 8.48644e-07 2.58316e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Turkey is a country in a ||| 1 0.605812 8.48644e-07 6.00736e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Turkey is a country in ||| 0.5 0.605812 8.48644e-07 1.35527e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| Turkey is ||| 0.0014556 0.0005032 8.48644e-07 1.67765e-08 2.718 ||| 0-1 ||| 687 1.17835e+06 +en ||| Turkish , first and foremost . to ||| 1 0.0247351 8.48644e-07 7.96424e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| Turkish army of occupation in ||| 1 0.605812 8.48644e-07 4.12089e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| Turks to ||| 0.25 0.0247351 8.48644e-07 8.15141e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| Two-thousand-and-one saw ||| 0.166667 1 8.48644e-07 3.752e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| Two-thousand-and-one ||| 0.166667 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| UN and the worldwide ||| 1 0.13372 8.48644e-07 1.45968e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Union & # x02BC ||| 0.166667 0.0223684 8.48644e-07 9.48442e-18 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| Union & # ||| 0.142857 0.0223684 8.48644e-07 2.46349e-13 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| Union & ||| 0.125 0.0223684 8.48644e-07 6.46584e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| Union , at ||| 0.142857 0.321886 8.48644e-07 2.65904e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| Union , in ||| 0.0133333 0.605812 8.48644e-07 3.06958e-05 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| Union , then drive through ||| 0.333333 0.0366102 8.48644e-07 3.04016e-15 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| Union . to ||| 1 0.0247351 8.48644e-07 4.74571e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Union Council in ||| 1 0.605812 8.48644e-07 8.90078e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Union as ||| 0.0056338 0.066968 1.69729e-06 1.00265e-05 2.718 ||| 0-1 ||| 355 1.17835e+06 +en ||| Union at ||| 0.0172414 0.321886 8.48644e-07 2.22971e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| Union based on ||| 0.05 0.22993 8.48644e-07 1.08599e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| Union for a ||| 0.0192308 0.0286209 8.48644e-07 2.84261e-07 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| Union for ||| 0.000969932 0.0286209 8.48644e-07 6.413e-06 2.718 ||| 0-1 ||| 1031 1.17835e+06 +en ||| Union from ||| 0.0238095 0.0308834 8.48644e-07 2.12096e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| Union imports 60 % of ||| 0.5 0.0116562 8.48644e-07 2.27674e-20 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| Union in ||| 0.0193424 0.605812 8.48644e-06 0.000257397 2.718 ||| 0-1 ||| 517 1.17835e+06 +en ||| Union into ||| 0.0172414 0.525896 8.48644e-07 1.23393e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| Union is affected by ||| 0.5 0.0468744 8.48644e-07 9.89776e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| Union is also at ||| 1 0.321886 8.48644e-07 3.52804e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Union is viewed throughout ||| 0.333333 0.309047 8.48644e-07 1.22128e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| Union on ||| 0.017094 0.22993 1.69729e-06 4.62912e-05 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| Union regarding ||| 0.125 0.140669 8.48644e-07 1.05516e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| Union take measures in ||| 0.333333 0.605812 8.48644e-07 8.57412e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| Union under ||| 0.0526316 0.205566 8.48644e-07 3.15187e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| Union when it ||| 0.2 0.142731 8.48644e-07 5.90112e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| Union when ||| 0.027027 0.142731 8.48644e-07 3.31837e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| Union will seize every opportunity to ||| 1 0.0247351 8.48644e-07 2.57875e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Unit 2 is shut down in 2008 ||| 1 0.605812 8.48644e-07 9.57504e-26 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Unit 2 is shut down in ||| 1 0.605812 8.48644e-07 4.02313e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| United Kingdom with regard ||| 0.125 0.0535436 8.48644e-07 2.27373e-14 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| United Kingdom with ||| 0.0625 0.0535436 8.48644e-07 3.3393e-11 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| United Nations in ||| 0.0144928 0.605812 1.69729e-06 2.13653e-09 2.718 ||| 0-2 ||| 138 1.17835e+06 +en ||| United States in ||| 0.00395257 0.605812 8.48644e-07 2.69723e-08 2.718 ||| 0-2 ||| 253 1.17835e+06 +en ||| Vienna in ||| 0.0416667 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| Virus back in ||| 1 0.605812 8.48644e-07 1.24238e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Western Sahara in ||| 0.166667 0.605812 8.48644e-07 3.66192e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| Working Conditions in ||| 0.111111 0.605812 8.48644e-07 4.77482e-12 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| Yanukovich , in ||| 1 0.605812 8.48644e-07 2.20278e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| Year against Racism into ||| 1 0.525896 8.48644e-07 6.76091e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| Yes , you heard correctly , I ||| 0.5 0.0210627 8.48644e-07 1.46907e-20 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| Yes , you heard correctly , ||| 0.5 0.0210627 8.48644e-07 2.07687e-18 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| Yes , you heard correctly ||| 0.333333 0.0210627 8.48644e-07 1.74154e-17 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| Yes , you heard ||| 0.333333 0.0210627 8.48644e-07 9.118e-13 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| Yes , you ||| 0.0769231 0.0210627 8.48644e-07 1.15126e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| Yes , ||| 0.000647668 0.0210627 8.48644e-07 3.56572e-06 2.718 ||| 0-0 ||| 1544 1.17835e+06 +en ||| Yes ||| 0.00164654 0.0210627 2.54593e-06 2.99e-05 2.718 ||| 0-0 ||| 1822 1.17835e+06 +en ||| Yugoslav Republic of Macedonia ||| 0.00204499 0.0116562 8.48644e-07 2.44205e-17 2.718 ||| 0-2 ||| 489 1.17835e+06 +en ||| Yugoslav Republic of ||| 0.00212766 0.0116562 8.48644e-07 3.75699e-12 2.718 ||| 0-2 ||| 470 1.17835e+06 +en ||| Zimbabwe , as we do with ||| 1 0.0535436 8.48644e-07 2.37924e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| Zimbabwe with a good impression ||| 1 0.0535436 8.48644e-07 3.03089e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Zimbabwe with a good ||| 1 0.0535436 8.48644e-07 1.15243e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| Zimbabwe with a ||| 0.333333 0.0535436 8.48644e-07 2.2222e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| Zimbabwe with ||| 0.1 0.0535436 8.48644e-07 5.01333e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| \ or ||| 1 0.0417699 8.48644e-07 1.001e-11 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| a ' Mr Euro ' on the ||| 0.5 0.22993 8.48644e-07 1.63619e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| a ' Mr Euro ' on ||| 0.5 0.22993 8.48644e-07 2.66516e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| a ' ||| 0.000662252 0.0032578 8.48644e-07 1.20965e-05 2.718 ||| 0-1 ||| 1510 1.17835e+06 +en ||| a Europe in which ||| 0.0102041 0.605812 8.48644e-07 8.79805e-08 2.718 ||| 0-2 ||| 98 1.17835e+06 +en ||| a Europe in ||| 0.00561798 0.605812 8.48644e-07 1.03572e-05 2.718 ||| 0-2 ||| 178 1.17835e+06 +en ||| a Europe of the rule of ||| 1 0.0116562 8.48644e-07 8.29924e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a Europe of the rule ||| 1 0.0116562 8.48644e-07 1.52661e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a Europe of the ||| 0.00970874 0.0116562 8.48644e-07 1.87774e-08 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| a Europe of ||| 0.000923361 0.0116562 8.48644e-07 3.05862e-07 2.718 ||| 0-2 ||| 1083 1.17835e+06 +en ||| a Member of ||| 0.00682594 0.0116562 3.39458e-06 3.11484e-07 2.718 ||| 0-2 ||| 586 1.17835e+06 +en ||| a State where ||| 0.142857 0.247783 8.48644e-07 4.53761e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| a backlash in ||| 0.166667 0.605812 8.48644e-07 1.43282e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| a balance as regards ||| 0.333333 0.066968 8.48644e-07 6.0278e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| a balance as ||| 0.25 0.066968 8.48644e-07 4.30557e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| a balanced ||| 0.00483092 0.0015231 8.48644e-07 1.2772e-08 2.718 ||| 0-0 ||| 207 1.17835e+06 +en ||| a ban placed on ||| 1 0.22993 8.48644e-07 1.77441e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a ban ||| 0.00097371 0.0015231 8.48644e-07 3.1724e-08 2.718 ||| 0-0 ||| 1027 1.17835e+06 +en ||| a bankrupt institution in ||| 1 0.605812 8.48644e-07 1.397e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a base at ||| 1 0.321886 8.48644e-07 5.99315e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a basis for any kind ||| 1 0.0286209 8.48644e-07 2.2347e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a basis for any ||| 0.333333 0.0286209 8.48644e-07 4.57931e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| a basis for ||| 0.00458716 0.0286209 2.54593e-06 3.02824e-07 2.718 ||| 0-2 ||| 654 1.17835e+06 +en ||| a bed of ||| 0.25 0.0116562 8.48644e-07 1.93431e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| a better deal for ||| 0.0833333 0.0286209 8.48644e-07 3.67895e-11 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| a better ||| 0.000513875 0.0015231 8.48644e-07 1.39998e-07 2.718 ||| 0-0 ||| 1946 1.17835e+06 +en ||| a bit further off in ||| 1 0.605812 8.48644e-07 3.18881e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a blank , ||| 0.333333 0.503937 8.48644e-07 6.90359e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| a blank ||| 0.1 0.503937 8.48644e-07 5.78895e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| a blind eye to ||| 0.00531915 0.0247351 8.48644e-07 1.09884e-12 2.718 ||| 0-3 ||| 188 1.17835e+06 +en ||| a blot on ||| 0.047619 0.22993 8.48644e-07 2.57683e-09 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| a blow ||| 0.015873 0.0018248 8.48644e-07 3.10281e-08 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| a body at ||| 1 0.321886 8.48644e-07 1.51779e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a body to ||| 0.05 0.0247351 8.48644e-07 1.06651e-07 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| a boom at ||| 1 0.321886 8.48644e-07 3.19162e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a boost in ||| 0.125 0.605812 8.48644e-07 3.54111e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| a boy in ||| 1 0.605812 8.48644e-07 8.80159e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a breakdown in any fragile solidarity and ||| 1 0.605812 8.48644e-07 1.40309e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a breakdown in any fragile solidarity ||| 1 0.605812 8.48644e-07 1.12015e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a breakdown in any fragile ||| 1 0.605812 8.48644e-07 4.25913e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a breakdown in any ||| 1 0.605812 8.48644e-07 1.33098e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a breakdown in ||| 0.047619 0.605812 8.48644e-07 8.80159e-08 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| a brief in ||| 1 0.605812 8.48644e-07 4.93298e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a building site on ||| 0.5 0.22993 8.48644e-07 4.09911e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a burden on ||| 0.0106383 0.22993 8.48644e-07 1.60132e-07 2.718 ||| 0-2 ||| 94 1.17835e+06 +en ||| a call for ||| 0.00483092 0.0286209 8.48644e-07 1.13215e-07 2.718 ||| 0-2 ||| 207 1.17835e+06 +en ||| a call to ||| 0.0114943 0.0247351 8.48644e-07 2.76595e-07 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| a case of ||| 0.00229885 0.0116562 8.48644e-07 6.46723e-07 2.718 ||| 0-2 ||| 435 1.17835e+06 +en ||| a case ||| 0.000868056 0.0015231 8.48644e-07 8.81598e-07 2.718 ||| 0-0 ||| 1152 1.17835e+06 +en ||| a certain extent in ||| 0.125 0.605812 8.48644e-07 1.12122e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| a certain extent ||| 0.00615385 0.0400323 1.69729e-06 2.5531e-09 2.718 ||| 0-2 ||| 325 1.17835e+06 +en ||| a certain occasion in ||| 1 0.605812 8.48644e-07 2.85264e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a certain transitional period here , ||| 1 0.0855319 8.48644e-07 4.57442e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a certain transitional period here ||| 1 0.0855319 8.48644e-07 3.83584e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a certain ||| 0.000364166 0.0012269 8.48644e-07 7.84567e-07 2.718 ||| 0-1 ||| 2746 1.17835e+06 +en ||| a challenge on ||| 0.333333 0.22993 8.48644e-07 1.57555e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| a challenge to ||| 0.00694444 0.0247351 8.48644e-07 5.33255e-08 2.718 ||| 0-2 ||| 144 1.17835e+06 +en ||| a chance and ||| 0.0769231 0.0015231 8.48644e-07 6.80176e-10 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| a chance of survival in ||| 1 0.605812 8.48644e-07 4.76654e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a chance to speak in ||| 0.25 0.605812 8.48644e-07 1.62171e-11 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| a chance ||| 0.000810373 0.0015231 8.48644e-07 5.43016e-08 2.718 ||| 0-0 ||| 1234 1.17835e+06 +en ||| a change at ||| 0.5 0.321886 8.48644e-07 2.16321e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a check on ||| 0.0526316 0.22993 8.48644e-07 1.12644e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| a city of ||| 0.05 0.0116562 8.48644e-07 1.23917e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| a claim , they will know for ||| 1 0.0286209 8.48644e-07 2.08686e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| a clause is added to ||| 1 0.0247351 8.48644e-07 2.70064e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a clear statement in ||| 0.25 0.605812 8.48644e-07 5.07648e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| a clear ||| 0.000373692 0.0015231 8.48644e-07 2.7431e-07 2.718 ||| 0-0 ||| 2676 1.17835e+06 +en ||| a close at ||| 0.333333 0.321886 8.48644e-07 2.62954e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| a close eye on ||| 0.0114943 0.22993 8.48644e-07 3.10628e-11 2.718 ||| 0-3 ||| 87 1.17835e+06 +en ||| a close look at ||| 0.0416667 0.321886 8.48644e-07 7.6651e-11 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| a comment in ||| 0.0625 0.605812 8.48644e-07 9.35425e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| a commitment in ||| 0.0909091 0.605812 1.69729e-06 1.14216e-06 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| a common economic policy on the ||| 0.5 0.22993 8.48644e-07 2.49308e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| a common economic policy on ||| 0.5 0.22993 8.48644e-07 4.06094e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| a common position in ||| 0.0333333 0.605812 8.48644e-07 1.55703e-09 2.718 ||| 0-3 ||| 30 1.17835e+06 +en ||| a common ||| 0.001443 0.0015231 8.48644e-07 1.90344e-07 2.718 ||| 0-0 ||| 693 1.17835e+06 +en ||| a company ||| 0.00163666 0.0015231 8.48644e-07 3.11472e-08 2.718 ||| 0-0 ||| 611 1.17835e+06 +en ||| a component in ||| 0.125 0.605812 8.48644e-07 3.09079e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| a component of ||| 0.0333333 0.0116562 8.48644e-07 9.12751e-09 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| a conclusion in ||| 0.125 0.605812 1.69729e-06 1.81149e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| a considerable time to ||| 0.25 0.0247351 8.48644e-07 9.20444e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| a continuation of ||| 0.00787402 0.0116562 8.48644e-07 7.37455e-09 2.718 ||| 0-2 ||| 127 1.17835e+06 +en ||| a contribution of ||| 0.027027 0.0116562 8.48644e-07 5.44024e-08 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| a counter-demonstration ||| 0.25 1 8.48644e-07 3.10281e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| a country in a peculiar situation ||| 1 0.605812 8.48644e-07 7.23114e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a country in a peculiar ||| 1 0.605812 8.48644e-07 1.40411e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a country in a ||| 0.1 0.605812 8.48644e-07 3.26536e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| a country in ||| 0.00363636 0.605812 8.48644e-07 7.36673e-06 2.718 ||| 0-2 ||| 275 1.17835e+06 +en ||| a country such as ||| 0.00680272 0.066968 8.48644e-07 5.93688e-10 2.718 ||| 0-3 ||| 147 1.17835e+06 +en ||| a course of ||| 0.0163934 0.0116562 8.48644e-07 7.62661e-07 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| a crisis in ||| 0.0168067 0.605812 1.69729e-06 1.4799e-06 2.718 ||| 0-2 ||| 119 1.17835e+06 +en ||| a cudgel in ||| 1 0.605812 8.48644e-07 8.18753e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a day for ||| 0.0333333 0.0286209 8.48644e-07 1.30656e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| a dead ||| 0.015873 0.0015231 8.48644e-07 2.04352e-08 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| a debate in ||| 0.00520833 0.605812 8.48644e-07 4.05078e-06 2.718 ||| 0-2 ||| 192 1.17835e+06 +en ||| a debate on ||| 0.00102669 0.22993 8.48644e-07 7.28507e-07 2.718 ||| 0-2 ||| 974 1.17835e+06 +en ||| a deciding factor in ||| 0.25 0.605812 8.48644e-07 1.54192e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| a decision in ||| 0.0103093 0.605812 8.48644e-07 3.21974e-06 2.718 ||| 0-2 ||| 97 1.17835e+06 +en ||| a decision made at ||| 0.333333 0.321886 8.48644e-07 5.84265e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| a decision taken on ||| 0.333333 0.22993 8.48644e-07 5.27805e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| a decisive part to play in ||| 0.333333 0.605812 8.48644e-07 6.82526e-15 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| a definitive ' ||| 0.5 0.0032578 8.48644e-07 7.37887e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a delay in ||| 0.0120482 0.605812 8.48644e-07 6.40674e-07 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| a delicate hint in ||| 1 0.605812 8.48644e-07 3.52064e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a difference in ||| 0.015625 0.605812 8.48644e-07 5.3833e-07 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| a difference of opinion ||| 0.0196078 0.0116562 8.48644e-07 3.90127e-12 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| a difference of ||| 0.020202 0.0116562 1.69729e-06 1.58976e-08 2.718 ||| 0-2 ||| 99 1.17835e+06 +en ||| a different issue ||| 0.0526316 0.0015231 8.48644e-07 1.37317e-10 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| a different ||| 0.00094162 0.0015231 8.48644e-07 1.81445e-07 2.718 ||| 0-0 ||| 1062 1.17835e+06 +en ||| a difficulty in Amendment No 21 in ||| 1 0.605812 8.48644e-07 1.20976e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| a directive on ||| 0.00125156 0.22993 8.48644e-07 4.1082e-07 2.718 ||| 0-2 ||| 799 1.17835e+06 +en ||| a disaster in ||| 0.0434783 0.605812 8.48644e-07 5.15814e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| a discussion in ||| 0.027027 0.605812 8.48644e-07 1.76851e-06 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| a discussion of ||| 0.0196078 0.0116562 8.48644e-07 5.22263e-08 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| a discussion on ||| 0.00662252 0.22993 8.48644e-07 3.18055e-07 2.718 ||| 0-2 ||| 151 1.17835e+06 +en ||| a distorting effect on ||| 0.25 0.22993 8.48644e-07 1.71926e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| a duty to ||| 0.0014881 0.0247351 8.48644e-07 9.28213e-08 2.718 ||| 0-2 ||| 672 1.17835e+06 +en ||| a fact which is highlighted in ||| 1 0.605812 8.48644e-07 3.22452e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| a factor in ||| 0.0172414 0.605812 1.69729e-06 9.94784e-07 2.718 ||| 0-2 ||| 116 1.17835e+06 +en ||| a factor which in turn defines the ||| 1 0.605812 8.48644e-07 1.62834e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a factor which in turn defines ||| 1 0.605812 8.48644e-07 2.65238e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a factor which in turn ||| 1 0.605812 8.48644e-07 1.89456e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a factor which in ||| 0.5 0.605812 8.48644e-07 8.4503e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a failure on ||| 0.0555556 0.22993 8.48644e-07 1.7228e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| a fair return on ||| 0.166667 0.22993 8.48644e-07 1.26997e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| a fall of ||| 0.0833333 0.0116562 8.48644e-07 5.78479e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| a fashion in ||| 1 0.605812 8.48644e-07 7.36877e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a fastidious ||| 1 0.166667 8.48644e-07 3.10281e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| a few adjustments : in ||| 1 0.605812 8.48644e-07 4.834e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a few have been through ||| 0.333333 0.0366102 8.48644e-07 2.91822e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| a few metres ||| 0.111111 0.0015231 8.48644e-07 3.61118e-13 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| a few moments ago , in ||| 0.5 0.605812 8.48644e-07 1.88451e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| a few of ||| 0.00331126 0.0116562 8.48644e-07 1.05964e-07 2.718 ||| 0-2 ||| 302 1.17835e+06 +en ||| a few words about ||| 0.0027027 0.0401564 8.48644e-07 5.03313e-12 2.718 ||| 0-3 ||| 370 1.17835e+06 +en ||| a few words on ||| 0.00423729 0.22993 8.48644e-07 1.45841e-10 2.718 ||| 0-3 ||| 236 1.17835e+06 +en ||| a few ||| 0.000192957 0.0015231 1.69729e-06 1.44447e-07 2.718 ||| 0-0 ||| 10365 1.17835e+06 +en ||| a field in ||| 0.0131579 0.605812 8.48644e-07 2.99049e-06 2.718 ||| 0-2 ||| 76 1.17835e+06 +en ||| a finding ||| 0.05 0.0012469 8.48644e-07 8.86516e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| a fine example of ||| 0.0277778 0.0116562 8.48644e-07 5.70115e-12 2.718 ||| 0-3 ||| 36 1.17835e+06 +en ||| a flood to ||| 1 0.0247351 8.48644e-07 5.85584e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a focal point in ||| 0.125 0.605812 8.48644e-07 4.47653e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| a focus on ||| 0.0126582 0.22993 8.48644e-07 2.84924e-07 2.718 ||| 0-2 ||| 79 1.17835e+06 +en ||| a foothold in ||| 0.0666667 0.605812 8.48644e-07 2.86563e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| a form over ||| 0.5 0.157937 8.48644e-07 8.08537e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a form that is disguised to a ||| 1 0.0247351 8.48644e-07 1.45789e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| a form that is disguised to ||| 1 0.0247351 8.48644e-07 3.28903e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| a formal recommendation to ||| 1 0.0247351 8.48644e-07 3.26369e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a fraud level of ||| 0.5 0.0116562 8.48644e-07 8.0145e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a free-trade area on European ||| 1 0.22993 8.48644e-07 5.62336e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a free-trade area on ||| 1 0.22993 8.48644e-07 1.68168e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a game in ||| 0.1 0.605812 8.48644e-07 5.89502e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| a game played on a window ||| 0.5 0.22993 8.48644e-07 2.59479e-18 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a game played on a ||| 0.5 0.22993 8.48644e-07 2.31677e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a game played on ||| 0.5 0.22993 8.48644e-07 5.2267e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a gap in ||| 0.0217391 0.605812 8.48644e-07 3.23407e-07 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| a gentle breath of air into ||| 0.333333 0.525896 8.48644e-07 3.13624e-20 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| a giant in ||| 0.166667 0.605812 8.48644e-07 2.25157e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| a given ||| 0.00408163 0.0546585 8.48644e-07 5.14578e-05 2.718 ||| 0-1 ||| 245 1.17835e+06 +en ||| a go at ||| 0.0769231 0.321886 8.48644e-07 1.03692e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| a good example of ||| 0.00255102 0.0116562 8.48644e-07 9.12536e-11 2.718 ||| 0-3 ||| 392 1.17835e+06 +en ||| a good idea if ||| 0.0222222 0.0178573 8.48644e-07 5.97579e-12 2.718 ||| 0-3 ||| 45 1.17835e+06 +en ||| a good start in ||| 0.111111 0.605812 8.48644e-07 1.47444e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| a good thing ||| 0.000817661 0.0015231 8.48644e-07 1.55931e-10 2.718 ||| 0-0 ||| 1223 1.17835e+06 +en ||| a good ||| 0.000129988 0.0015231 8.48644e-07 4.27326e-07 2.718 ||| 0-0 ||| 7693 1.17835e+06 +en ||| a great deal . ||| 0.00653595 6.3e-05 8.48644e-07 5.9912e-13 2.718 ||| 0-3 ||| 153 1.17835e+06 +en ||| a great deal at ||| 0.0625 0.321886 8.48644e-07 2.95877e-10 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| a great deal both in ||| 1 0.605812 8.48644e-07 5.65792e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a great deal in terms of ||| 0.25 0.605812 8.48644e-07 2.03808e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| a great deal in terms ||| 0.2 0.605812 8.48644e-07 3.74895e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| a great deal in ||| 0.0217391 0.605812 2.54593e-06 3.41559e-09 2.718 ||| 0-3 ||| 138 1.17835e+06 +en ||| a great deal to do in ||| 0.0666667 0.605812 8.48644e-07 1.04262e-12 2.718 ||| 0-5 ||| 15 1.17835e+06 +en ||| a great deal to teach us about ||| 1 0.0401564 8.48644e-07 1.57449e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| a great extent as ||| 1 0.066968 8.48644e-07 6.02259e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a great ||| 0.000509165 0.0015231 2.54593e-06 3.23832e-07 2.718 ||| 0-0 ||| 5892 1.17835e+06 +en ||| a grip on the situation ||| 0.333333 0.22993 8.48644e-07 1.93203e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| a grip on the ||| 0.0769231 0.22993 8.48644e-07 3.75151e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| a grip on ||| 0.0416667 0.22993 1.69729e-06 6.11077e-08 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| a group during ||| 1 0.226251 8.48644e-07 1.65069e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a guideline when ||| 0.5 0.142731 8.48644e-07 3.69439e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a guiding role in ||| 1 0.605812 8.48644e-07 4.27143e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a halt at ||| 0.25 0.321886 8.48644e-07 3.5817e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| a hand , in ||| 0.5 0.605812 8.48644e-07 9.68102e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a hand in ||| 0.0571429 0.605812 1.69729e-06 8.11793e-06 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| a hearing in ||| 0.0416667 0.605812 8.48644e-07 5.3833e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| a helping hand when needed ||| 1 0.142731 8.48644e-07 5.29712e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a helping hand when ||| 0.333333 0.142731 8.48644e-07 3.95602e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| a huge boost ||| 0.25 0.0015231 8.48644e-07 7.44121e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| a huge ||| 0.000551572 0.0015231 8.48644e-07 4.30128e-08 2.718 ||| 0-0 ||| 1813 1.17835e+06 +en ||| a human ||| 0.0108696 0.0015231 8.48644e-07 1.01682e-07 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| a hunger ||| 0.111111 0.0015231 8.48644e-07 2.9664e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| a in ||| 1 0.605812 8.48644e-07 0.0204688 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| a job to do in ||| 0.5 0.605812 8.48644e-07 4.87984e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| a joke . politically blind South African ||| 1 0.0015231 8.48644e-07 2.28988e-31 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| a joke . politically blind South ||| 1 0.0015231 8.48644e-07 1.32363e-26 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| a joke . politically blind ||| 1 0.0015231 8.48644e-07 6.12792e-22 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| a joke . politically ||| 1 0.0015231 8.48644e-07 3.9535e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| a joke . ||| 0.0588235 0.0015231 8.48644e-07 5.49097e-12 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| a joke in ||| 0.125 0.605812 8.48644e-07 4.50314e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| a joke ||| 0.0102041 0.0015231 8.48644e-07 1.8128e-09 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| a key role in ||| 0.00485437 0.605812 1.69729e-06 3.30354e-10 2.718 ||| 0-3 ||| 412 1.17835e+06 +en ||| a key role to play in ||| 0.02 0.605812 8.48644e-07 7.57351e-15 2.718 ||| 0-5 ||| 50 1.17835e+06 +en ||| a lack of influence on ||| 1 0.22993 8.48644e-07 8.3226e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a lack of transparency within ||| 0.5 0.369196 8.48644e-07 4.45066e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| a lack of ||| 0.000935016 0.0015231 1.69729e-06 5.44719e-09 2.718 ||| 0-0 ||| 2139 1.17835e+06 +en ||| a lack ||| 0.000451671 0.0015231 8.48644e-07 1.00198e-07 2.718 ||| 0-0 ||| 2214 1.17835e+06 +en ||| a landfill site in ||| 1 0.605812 8.48644e-07 1.13377e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a large extent ||| 0.00348432 0.0400323 1.69729e-06 1.37688e-09 2.718 ||| 0-2 ||| 574 1.17835e+06 +en ||| a large ||| 0.000231214 0.0015231 8.48644e-07 1.26649e-07 2.718 ||| 0-0 ||| 4325 1.17835e+06 +en ||| a law for ||| 0.125 0.0286209 8.48644e-07 8.9909e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| a leader in ||| 0.0140845 0.605812 8.48644e-07 2.43579e-07 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| a leading role in ||| 0.00609756 0.605812 1.69729e-06 3.95789e-10 2.718 ||| 0-3 ||| 328 1.17835e+06 +en ||| a letter in ||| 0.0714286 0.605812 8.48644e-07 5.30142e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| a level in ||| 1 0.605812 8.48644e-07 1.7509e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a level of ||| 0.00431034 0.0116562 8.48644e-07 5.17064e-07 2.718 ||| 0-2 ||| 232 1.17835e+06 +en ||| a licence to ||| 0.0204082 0.0247351 8.48644e-07 1.17117e-08 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| a limited ||| 0.00704225 0.0015231 8.48644e-07 3.20536e-08 2.718 ||| 0-0 ||| 142 1.17835e+06 +en ||| a list ||| 0.00104167 0.0015231 8.48644e-07 6.02344e-08 2.718 ||| 0-0 ||| 960 1.17835e+06 +en ||| a little bit closer to ||| 1 0.0247351 8.48644e-07 3.40285e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a little bit taught to them in ||| 1 0.605812 8.48644e-07 4.75444e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| a little in relief ||| 1 0.605812 8.48644e-07 3.71157e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a little in ||| 0.142857 0.605812 1.69729e-06 3.3139e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| a long time coming in ||| 1 0.605812 8.48644e-07 2.20883e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a long time in ||| 0.0357143 0.605812 8.48644e-07 1.13681e-08 2.718 ||| 0-3 ||| 28 1.17835e+06 +en ||| a long time to ||| 0.0252101 0.0247351 2.54593e-06 6.9197e-10 2.718 ||| 0-3 ||| 119 1.17835e+06 +en ||| a long way away on ||| 1 0.22993 8.48644e-07 8.53929e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a long way even from ||| 0.166667 0.0308834 8.48644e-07 7.48434e-14 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| a long way in ||| 0.0188679 0.605812 8.48644e-07 1.49267e-08 2.718 ||| 0-3 ||| 53 1.17835e+06 +en ||| a long way into ||| 1 0.525896 8.48644e-07 7.15569e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a long way to go in ||| 0.0526316 0.605812 8.48644e-07 7.75654e-13 2.718 ||| 0-5 ||| 19 1.17835e+06 +en ||| a long ||| 0.000263852 0.0015231 8.48644e-07 2.78759e-07 2.718 ||| 0-0 ||| 3790 1.17835e+06 +en ||| a long-term basis in ||| 0.166667 0.605812 8.48644e-07 3.11152e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| a look at ||| 0.0153846 0.321886 2.54593e-06 5.16865e-07 2.718 ||| 0-2 ||| 195 1.17835e+06 +en ||| a look in ||| 0.125 0.605812 8.48644e-07 5.96666e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| a lot in ||| 0.0289855 0.605812 1.69729e-06 2.64457e-06 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| a lot of ||| 0.00113037 0.0116562 2.54593e-06 7.80976e-08 2.718 ||| 0-2 ||| 2654 1.17835e+06 +en ||| a lot on ||| 0.0454545 0.22993 8.48644e-07 4.75609e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| a lot when ||| 0.5 0.142731 8.48644e-07 3.40939e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a lot ||| 0.000204876 0.0015231 8.48644e-07 1.06461e-07 2.718 ||| 0-0 ||| 4881 1.17835e+06 +en ||| a major competitor on the ||| 0.5 0.0015231 8.48644e-07 2.29352e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| a major competitor on ||| 0.5 0.0015231 8.48644e-07 3.73587e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| a major competitor ||| 0.333333 0.0015231 8.48644e-07 5.58342e-14 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| a major part in ||| 0.0277778 0.605812 8.48644e-07 2.3622e-09 2.718 ||| 0-3 ||| 36 1.17835e+06 +en ||| a major ||| 0.000335345 0.0015231 8.48644e-07 7.97632e-08 2.718 ||| 0-0 ||| 2982 1.17835e+06 +en ||| a majority in ||| 0.00288184 0.605812 8.48644e-07 8.24893e-07 2.718 ||| 0-2 ||| 347 1.17835e+06 +en ||| a mandate , in ||| 1 0.605812 8.48644e-07 5.44344e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a mandatory requirement on ||| 1 0.22993 8.48644e-07 8.36881e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a massive scale in ||| 0.166667 0.605812 8.48644e-07 1.86236e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| a matter for ||| 0.00326797 0.0286209 2.54593e-06 5.29101e-07 2.718 ||| 0-2 ||| 918 1.17835e+06 +en ||| a matter in ||| 0.0217391 0.605812 8.48644e-07 2.12364e-05 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| a matter of fact in ||| 1 0.605812 8.48644e-07 3.38186e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a matter of ||| 0.00239378 0.0116562 6.78915e-06 6.27139e-07 2.718 ||| 0-2 ||| 3342 1.17835e+06 +en ||| a maximum of ||| 0.00377358 0.0116562 8.48644e-07 1.08805e-08 2.718 ||| 0-2 ||| 265 1.17835e+06 +en ||| a meeting in ||| 0.0151515 0.605812 8.48644e-07 2.57088e-06 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| a meeting of ||| 0.00396825 0.0116562 8.48644e-07 7.59215e-08 2.718 ||| 0-2 ||| 252 1.17835e+06 +en ||| a meeting ||| 0.000908265 0.0015231 8.48644e-07 1.03494e-07 2.718 ||| 0-0 ||| 1101 1.17835e+06 +en ||| a member of ||| 0.00860832 0.0116562 1.01837e-05 1.00705e-07 2.718 ||| 0-2 ||| 1394 1.17835e+06 +en ||| a mention into ||| 0.333333 0.525896 8.48644e-07 9.53778e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| a mistake in ||| 0.0147059 0.605812 8.48644e-07 3.76626e-07 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| a mockery of ||| 0.016129 0.0116562 8.48644e-07 1.93431e-09 2.718 ||| 0-2 ||| 62 1.17835e+06 +en ||| a model which ||| 0.0263158 0.0015231 8.48644e-07 2.69483e-10 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| a model ||| 0.00121065 0.0015231 8.48644e-07 3.1724e-08 2.718 ||| 0-0 ||| 826 1.17835e+06 +en ||| a moment on ||| 0.0731707 0.22993 2.54593e-06 6.6519e-07 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| a more serious piece of ||| 1 0.0042952 8.48644e-07 8.83864e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| a more serious piece ||| 1 0.0042952 8.48644e-07 1.62583e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| a more serious ||| 0.0666667 0.0042952 8.48644e-07 1.69888e-09 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| a more ||| 0.00384911 0.0042952 4.24322e-06 1.47472e-05 2.718 ||| 0-1 ||| 1299 1.17835e+06 +en ||| a motor launch in ||| 1 0.605812 8.48644e-07 2.18853e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a much greater role with ||| 1 0.0535436 8.48644e-07 1.51655e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a nasty ring to ||| 0.333333 0.0247351 8.48644e-07 1.5574e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| a national budget - in other words ||| 1 0.605812 8.48644e-07 3.58459e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a national budget - in other ||| 1 0.605812 8.48644e-07 1.5861e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a national budget - in ||| 1 0.605812 8.48644e-07 1.22432e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a need in ||| 0.125 0.605812 8.48644e-07 1.87679e-05 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| a negative attitude towards ||| 0.2 0.0616136 8.48644e-07 5.39373e-14 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| a negative effect on ||| 0.0120482 0.22993 8.48644e-07 2.87362e-11 2.718 ||| 0-3 ||| 83 1.17835e+06 +en ||| a negligible quantity in ||| 0.5 0.605812 8.48644e-07 2.46445e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a new Member of ||| 0.05 0.0116562 8.48644e-07 1.86174e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| a new departure in ||| 0.0769231 0.605812 8.48644e-07 1.37023e-10 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| a new light on ||| 0.5 0.22993 8.48644e-07 3.82403e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a new procedure is creeping in ||| 1 0.605812 8.48644e-07 5.38954e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| a new standard and ||| 1 0.0010182 8.48644e-07 1.15139e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a new way of securing ||| 1 0.0116562 8.48644e-07 1.01244e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a new way of ||| 0.0114943 0.0116562 8.48644e-07 7.78802e-10 2.718 ||| 0-3 ||| 87 1.17835e+06 +en ||| a notice ||| 0.0333333 0.0015231 8.48644e-07 3.1724e-08 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| a number of news ||| 1 0.0116562 8.48644e-07 1.0857e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a number of them in ||| 0.5 0.605812 8.48644e-07 1.47692e-09 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| a number of ||| 0.00115494 0.0116562 1.10324e-05 2.99092e-07 2.718 ||| 0-2 ||| 11256 1.17835e+06 +en ||| a number ||| 0.000157085 0.0015231 1.69729e-06 4.07715e-07 2.718 ||| 0-0 ||| 12732 1.17835e+06 +en ||| a parallel in ||| 0.142857 0.605812 8.48644e-07 1.47375e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| a parliament - in ||| 1 0.605812 8.48644e-07 1.86077e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a part here ||| 0.0769231 0.0855319 8.48644e-07 1.58541e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| a part in ||| 0.0344828 0.605812 5.94051e-06 2.44029e-05 2.718 ||| 0-2 ||| 203 1.17835e+06 +en ||| a part of ||| 0.00193798 0.0116562 8.48644e-07 7.2065e-07 2.718 ||| 0-2 ||| 516 1.17835e+06 +en ||| a part ||| 0.000980392 0.0009084 8.48644e-07 9.35274e-07 2.718 ||| 0-1 ||| 1020 1.17835e+06 +en ||| a participant in ||| 0.0588235 0.605812 8.48644e-07 2.25157e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| a particularly ||| 0.00434783 0.183344 8.48644e-07 0.00019795 2.718 ||| 0-1 ||| 230 1.17835e+06 +en ||| a partner country under ||| 1 0.205566 8.48644e-07 2.27322e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a partner in ||| 0.04 0.605812 1.69729e-06 5.15814e-07 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| a period in ||| 0.0285714 0.605812 8.48644e-07 3.57181e-06 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| a period of ||| 0.00102249 0.0015231 8.48644e-07 7.81689e-09 2.718 ||| 0-0 ||| 978 1.17835e+06 +en ||| a period ||| 0.000791139 0.0015231 8.48644e-07 1.43788e-07 2.718 ||| 0-0 ||| 1264 1.17835e+06 +en ||| a persistence of conflicting statements ||| 1 0.0116562 8.48644e-07 9.74891e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a persistence of conflicting ||| 1 0.0116562 8.48644e-07 3.04653e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a persistence of ||| 1 0.0116562 8.48644e-07 8.46259e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a person at ||| 0.333333 0.321886 8.48644e-07 2.28378e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| a person ||| 0.00123457 0.0015231 8.48644e-07 1.06131e-07 2.718 ||| 0-0 ||| 810 1.17835e+06 +en ||| a phenomenon in ||| 0.5 0.605812 8.48644e-07 3.23407e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a piece of ||| 0.00598802 0.0116562 8.48644e-07 5.78479e-08 2.718 ||| 0-2 ||| 167 1.17835e+06 +en ||| a pig in ||| 0.5 0.605812 8.48644e-07 8.80159e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a place in ||| 0.057554 0.605812 6.78915e-06 3.08056e-05 2.718 ||| 0-2 ||| 139 1.17835e+06 +en ||| a place on ||| 0.0357143 0.22993 8.48644e-07 5.54019e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| a place where ||| 0.0102041 0.247783 8.48644e-07 5.68145e-07 2.718 ||| 0-2 ||| 98 1.17835e+06 +en ||| a place within ||| 0.2 0.369196 8.48644e-07 7.39597e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| a plan for ||| 0.00675676 0.0286209 8.48644e-07 3.72793e-08 2.718 ||| 0-2 ||| 148 1.17835e+06 +en ||| a plan that on ||| 1 0.22993 8.48644e-07 4.5266e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a player within ||| 1 0.369196 8.48644e-07 3.53827e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a pleasure trip to ||| 0.5 0.0247351 8.48644e-07 1.72523e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a point at which ||| 0.0434783 0.321886 8.48644e-07 1.31762e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| a point at ||| 0.027027 0.321886 8.48644e-07 1.55113e-06 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| a point during ||| 0.5 0.226251 8.48644e-07 1.12114e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a point of ||| 0.00264201 0.0116562 3.39458e-06 5.28791e-07 2.718 ||| 0-2 ||| 1514 1.17835e+06 +en ||| a point where ||| 0.0229885 0.247783 1.69729e-06 3.30241e-07 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| a point ||| 0.000386548 0.0007826 8.48644e-07 9.35274e-07 2.718 ||| 0-1 ||| 2587 1.17835e+06 +en ||| a policy for something ||| 1 0.0286209 8.48644e-07 1.11131e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a policy for ||| 0.00561798 0.0286209 8.48644e-07 2.00778e-07 2.718 ||| 0-2 ||| 178 1.17835e+06 +en ||| a political value in themselves ||| 1 0.605812 8.48644e-07 1.37845e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a political value in ||| 0.5 0.605812 8.48644e-07 3.20793e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a position in ||| 0.0138889 0.605812 8.48644e-07 6.74038e-06 2.718 ||| 0-2 ||| 72 1.17835e+06 +en ||| a position on ||| 0.00722022 0.22993 1.69729e-06 1.21221e-06 2.718 ||| 0-2 ||| 277 1.17835e+06 +en ||| a position to advance along ||| 1 0.155535 8.48644e-07 3.64217e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a position to comment in ||| 0.333333 0.605812 8.48644e-07 2.73715e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| a position where ||| 0.00675676 0.247783 8.48644e-07 1.24312e-07 2.718 ||| 0-2 ||| 148 1.17835e+06 +en ||| a post within ||| 1 0.369196 8.48644e-07 1.204e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a practical ||| 0.00699301 0.0011259 8.48644e-07 2.12764e-07 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| a predominant feature of the ||| 1 0.0116562 8.48644e-07 1.10215e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a predominant feature of ||| 1 0.0116562 8.48644e-07 1.79528e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a preference in ||| 0.333333 0.605812 8.48644e-07 1.55563e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| a premium on ||| 0.181818 0.22993 1.69729e-06 2.39277e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| a presence in ||| 0.027027 0.605812 8.48644e-07 7.88049e-07 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| a pressing need for ||| 0.0714286 0.0286209 8.48644e-07 6.40609e-12 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| a pressing need to ||| 0.0833333 0.0247351 8.48644e-07 1.56507e-11 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| a priority in ||| 0.00699301 0.605812 8.48644e-07 1.14216e-06 2.718 ||| 0-2 ||| 143 1.17835e+06 +en ||| a priority ||| 0.000507872 0.0015231 8.48644e-07 4.59792e-08 2.718 ||| 0-0 ||| 1969 1.17835e+06 +en ||| a problem at ||| 0.0666667 0.321886 8.48644e-07 3.98775e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| a problem in ||| 0.026738 0.605812 4.24322e-06 4.60344e-06 2.718 ||| 0-2 ||| 187 1.17835e+06 +en ||| a problem of ||| 0.00310559 0.0116562 8.48644e-07 1.35946e-07 2.718 ||| 0-2 ||| 322 1.17835e+06 +en ||| a problem over ||| 0.142857 0.157937 8.48644e-07 3.99473e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| a problem with it in ||| 0.5 0.605812 8.48644e-07 5.23478e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| a problem with regard to ||| 0.0714286 0.0535436 8.48644e-07 7.03209e-12 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| a problem with regard ||| 0.0769231 0.0535436 8.48644e-07 7.91383e-11 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| a problem with ||| 0.00301205 0.0535436 8.48644e-07 1.16226e-07 2.718 ||| 0-2 ||| 332 1.17835e+06 +en ||| a process extending back over ||| 1 0.157937 8.48644e-07 1.04699e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a project in ||| 0.0333333 0.605812 8.48644e-07 1.25269e-06 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| a proposal in ||| 0.0142857 0.605812 8.48644e-07 4.08762e-06 2.718 ||| 0-2 ||| 70 1.17835e+06 +en ||| a proposal to ||| 0.002079 0.0247351 8.48644e-07 2.48811e-07 2.718 ||| 0-2 ||| 481 1.17835e+06 +en ||| a quantified commitment to ||| 1 0.0247351 8.48644e-07 7.64747e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a question of acting in ||| 0.5 0.605812 8.48644e-07 5.43149e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| a question of ||| 0.00134892 0.0116562 2.54593e-06 5.00079e-07 2.718 ||| 0-2 ||| 2224 1.17835e+06 +en ||| a question ||| 0.000230203 0.0015231 8.48644e-07 6.81695e-07 2.718 ||| 0-0 ||| 4344 1.17835e+06 +en ||| a quick look at a ||| 1 0.321886 8.48644e-07 2.79507e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a quick look at ||| 0.333333 0.321886 8.48644e-07 6.30575e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| a rapporteur in ||| 0.25 0.605812 8.48644e-07 1.4799e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| a rate of knots in ||| 1 0.605812 8.48644e-07 7.82052e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a rate ||| 0.00606061 0.0015231 8.48644e-07 8.27296e-08 2.718 ||| 0-0 ||| 165 1.17835e+06 +en ||| a raw deal in ||| 1 0.605812 8.48644e-07 9.99472e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a reality , at ||| 1 0.321886 8.48644e-07 1.41462e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a reality in ||| 0.0229885 0.605812 1.69729e-06 1.36936e-06 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| a reasonable hearing in ||| 0.333333 0.605812 8.48644e-07 9.68994e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| a reduction in ||| 0.00176211 0.605812 1.69729e-06 8.39221e-07 2.718 ||| 0-2 ||| 1135 1.17835e+06 +en ||| a reference in ||| 0.0434783 0.605812 8.48644e-07 1.74599e-06 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| a repeat of ||| 0.00775194 0.0116562 8.48644e-07 1.52327e-08 2.718 ||| 0-2 ||| 129 1.17835e+06 +en ||| a report on ||| 0.000919118 0.22993 8.48644e-07 1.50892e-06 2.718 ||| 0-2 ||| 1088 1.17835e+06 +en ||| a reputation in ||| 0.25 0.605812 8.48644e-07 1.33047e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| a request for ||| 0.00318471 0.0286209 8.48644e-07 3.91153e-08 2.718 ||| 0-2 ||| 314 1.17835e+06 +en ||| a request in ||| 0.222222 0.605812 1.69729e-06 1.56996e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| a resolution on ||| 0.00109769 0.22993 8.48644e-07 3.21736e-07 2.718 ||| 0-2 ||| 911 1.17835e+06 +en ||| a resolution within ||| 0.333333 0.369196 8.48644e-07 4.29507e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| a result at all - ||| 1 0.321886 8.48644e-07 1.66402e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a result at all ||| 0.5 0.321886 8.48644e-07 4.41139e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a result at ||| 0.333333 0.321886 8.48644e-07 9.33548e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| a result in ||| 0.0869565 0.605812 1.69729e-06 1.07768e-05 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| a result of entering ||| 1 0.284907 8.48644e-07 4.35172e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a result of the ||| 0.000643501 0.0116562 8.48644e-07 1.95382e-08 2.718 ||| 0-2 ||| 1554 1.17835e+06 +en ||| a result of ||| 0.000998752 0.0116562 3.39458e-06 3.18254e-07 2.718 ||| 0-2 ||| 4005 1.17835e+06 +en ||| a review of ||| 0.0021978 0.0116562 8.48644e-07 2.2849e-08 2.718 ||| 0-2 ||| 455 1.17835e+06 +en ||| a right to it in ||| 0.5 0.605812 8.48644e-07 2.0859e-08 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| a rigorous budget on ||| 1 0.22993 8.48644e-07 1.95331e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a role in ||| 0.009375 0.605812 2.54593e-06 4.54408e-06 2.718 ||| 0-2 ||| 320 1.17835e+06 +en ||| a role on ||| 0.0833333 0.22993 8.48644e-07 8.17223e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| a role which ||| 0.0322581 0.0015231 8.48644e-07 1.5539e-09 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| a role with regard to ||| 0.2 0.0247351 8.48644e-07 1.2043e-12 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| a role ||| 0.00101112 0.0015231 8.48644e-07 1.82928e-07 2.718 ||| 0-0 ||| 989 1.17835e+06 +en ||| a say in ||| 0.0291262 0.605812 2.54593e-06 1.95641e-05 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| a scarcity on ||| 1 0.22993 8.48644e-07 2.57683e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a scenario in ||| 0.0588235 0.605812 8.48644e-07 2.94751e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| a scrap of ||| 0.5 0.0116562 8.48644e-07 3.26414e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a seat at ||| 0.0714286 0.321886 8.48644e-07 2.87246e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| a second ||| 0.00055991 0.0400803 8.48644e-07 2.10814e-05 2.718 ||| 0-1 ||| 1786 1.17835e+06 +en ||| a sector in ||| 0.0111111 0.605812 8.48644e-07 3.80106e-06 2.718 ||| 0-2 ||| 90 1.17835e+06 +en ||| a sector where absolutely ||| 0.5 0.247783 1.69729e-06 6.61068e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| a sector where consumers are currently proving ||| 1 0.247783 8.48644e-07 5.06675e-23 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a sector where consumers are currently ||| 1 0.247783 8.48644e-07 4.15307e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a sector where consumers are ||| 1 0.247783 8.48644e-07 3.97804e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a sector where consumers ||| 1 0.247783 8.48644e-07 2.62184e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a sector where ||| 0.125 0.247783 2.54593e-06 7.01027e-08 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| a sense ||| 0.00214823 0.0015231 1.69729e-06 1.46754e-07 2.718 ||| 0-0 ||| 931 1.17835e+06 +en ||| a sensitive issue as ||| 0.0833333 0.066968 8.48644e-07 1.17063e-11 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| a series of ||| 0.000449843 0.0116562 8.48644e-07 2.41184e-08 2.718 ||| 0-2 ||| 2223 1.17835e+06 +en ||| a serious attempt to ||| 0.0526316 0.0247351 8.48644e-07 1.19848e-11 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| a service in ||| 0.0769231 0.605812 8.48644e-07 1.36936e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| a severe impact with ||| 1 0.0535436 8.48644e-07 5.53586e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a share in the ||| 0.0625 0.605812 8.48644e-07 1.17619e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| a share in ||| 0.037037 0.605812 8.48644e-07 1.91588e-06 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| a share of ||| 0.0121951 0.0116562 8.48644e-07 5.65785e-08 2.718 ||| 0-2 ||| 82 1.17835e+06 +en ||| a shore where they can ||| 1 0.247783 8.48644e-07 6.59675e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a shore where they ||| 1 0.247783 8.48644e-07 2.21792e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a shore where ||| 1 0.247783 8.48644e-07 6.79509e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a sign of this ||| 0.25 0.0116562 8.48644e-07 2.03879e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| a sign of ||| 0.00224215 0.0116562 8.48644e-07 3.15534e-08 2.718 ||| 0-2 ||| 446 1.17835e+06 +en ||| a significant increase in ||| 0.00952381 0.605812 8.48644e-07 1.52327e-10 2.718 ||| 0-3 ||| 105 1.17835e+06 +en ||| a significant step further down the road ||| 1 0.0011669 8.48644e-07 3.24676e-23 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| a significant step further down the ||| 1 0.0011669 8.48644e-07 3.63986e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| a similar process could be introduced in ||| 1 0.605812 8.48644e-07 4.20372e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| a similar story with ||| 0.5 0.0535436 8.48644e-07 3.66549e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a sine qua non in ||| 0.25 0.605812 8.48644e-07 2.42433e-19 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| a single reference in ||| 0.5 0.605812 8.48644e-07 2.77089e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a single ||| 0.000317158 0.0015231 8.48644e-07 1.30769e-07 2.718 ||| 0-0 ||| 3153 1.17835e+06 +en ||| a situation in which ||| 0.00322581 0.605812 1.69729e-06 8.95453e-08 2.718 ||| 0-2 ||| 620 1.17835e+06 +en ||| a situation in ||| 0.0145349 0.605812 1.27297e-05 1.05414e-05 2.718 ||| 0-2 ||| 1032 1.17835e+06 +en ||| a situation where ||| 0.00554324 0.247783 4.24322e-06 1.94415e-07 2.718 ||| 0-2 ||| 902 1.17835e+06 +en ||| a society based on the ||| 0.142857 0.22993 8.48644e-07 3.06976e-12 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| a society based on ||| 0.0384615 0.22993 8.48644e-07 5.00028e-11 2.718 ||| 0-3 ||| 26 1.17835e+06 +en ||| a solution through ||| 0.047619 0.0366102 8.48644e-07 2.83451e-09 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| a sort of ||| 0.00194553 0.0116562 8.48644e-07 9.65945e-08 2.718 ||| 0-2 ||| 514 1.17835e+06 +en ||| a sovereign matter for the ||| 1 0.0286209 8.48644e-07 1.98143e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a sovereign matter for ||| 0.333333 0.0286209 8.48644e-07 3.22752e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| a special appeal ||| 0.2 0.0004103 8.48644e-07 3.61433e-12 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| a special ||| 0.00252525 0.0004103 8.48644e-07 1.1968e-07 2.718 ||| 0-1 ||| 396 1.17835e+06 +en ||| a specific end - in a campaign ||| 0.5 0.605812 8.48644e-07 6.95256e-18 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| a specific end - in a ||| 0.5 0.605812 8.48644e-07 2.25002e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| a specific end - in ||| 0.5 0.605812 8.48644e-07 5.07609e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| a speedy decision on infringement proceedings ||| 0.5 0.22993 8.48644e-07 6.42147e-22 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a speedy decision on infringement ||| 0.5 0.22993 8.48644e-07 1.769e-17 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a speedy decision on ||| 0.25 0.22993 8.48644e-07 2.72154e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| a stain on ||| 0.0909091 0.22993 8.48644e-07 1.47247e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| a stake in ||| 0.0232558 0.605812 8.48644e-07 6.18158e-07 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| a start on ||| 0.0147059 0.22993 8.48644e-07 5.11317e-07 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| a state under ||| 0.0666667 0.205566 8.48644e-07 6.33128e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| a statement made in ||| 0.142857 0.605812 8.48644e-07 3.19442e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| a step in ||| 0.0185615 0.605812 1.35783e-05 3.01915e-06 2.718 ||| 0-2 ||| 862 1.17835e+06 +en ||| a step towards ||| 0.00675676 0.0616136 1.69729e-06 6.51321e-09 2.718 ||| 0-2 ||| 296 1.17835e+06 +en ||| a stop to ||| 0.00240964 0.0247351 8.48644e-07 8.60933e-08 2.718 ||| 0-2 ||| 415 1.17835e+06 +en ||| a stretch in ||| 1 0.605812 8.48644e-07 1.92407e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a stretch of ||| 0.166667 0.0116562 8.48644e-07 5.68203e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| a strike is underway involving ||| 1 0.0505311 8.48644e-07 1.33001e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a strong emphasis ||| 0.04 0.0033428 8.48644e-07 3.31167e-11 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| a strong ||| 0.000582751 0.0015231 8.48644e-07 6.99576e-08 2.718 ||| 0-0 ||| 1716 1.17835e+06 +en ||| a stronger partnership in ||| 1 0.605812 8.48644e-07 1.22469e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a study in ||| 0.04 0.605812 8.48644e-07 6.91846e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| a substitute for ||| 0.00636943 0.0286209 8.48644e-07 2.1929e-09 2.718 ||| 0-2 ||| 157 1.17835e+06 +en ||| a substitute ||| 0.00598802 0.0096525 8.48644e-07 1.50708e-07 2.718 ||| 0-1 ||| 167 1.17835e+06 +en ||| a success in ||| 0.0571429 0.605812 1.69729e-06 1.21585e-06 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| a success ||| 0.000680272 0.0015231 8.48644e-07 4.89456e-08 2.718 ||| 0-0 ||| 1470 1.17835e+06 +en ||| a successful one , in ||| 1 0.605812 8.48644e-07 5.60593e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a suggestion in ||| 0.142857 0.605812 8.48644e-07 3.39782e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| a survey of ||| 0.025641 0.0116562 8.48644e-07 3.02235e-09 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| a swathe through ||| 0.5 0.0366102 8.48644e-07 4.58524e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a sympathetic ||| 0.2 0.0015231 8.48644e-07 3.8728e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| a synthesis in ||| 0.5 0.605812 8.48644e-07 2.25157e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a system for ||| 0.00483092 0.0286209 8.48644e-07 1.42233e-07 2.718 ||| 0-2 ||| 207 1.17835e+06 +en ||| a system in order ||| 0.5 0.605812 8.48644e-07 3.04048e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a system in ||| 0.00900901 0.605812 8.48644e-07 5.70875e-06 2.718 ||| 0-2 ||| 111 1.17835e+06 +en ||| a target date of ||| 0.2 0.0116562 8.48644e-07 2.33517e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| a tax in ||| 0.333333 0.605812 8.48644e-07 1.29568e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| a thing ||| 0.00315457 0.0015231 8.48644e-07 3.00678e-07 2.718 ||| 0-0 ||| 317 1.17835e+06 +en ||| a third country , again within the ||| 1 0.369196 8.48644e-07 3.5045e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| a third country , again within ||| 1 0.369196 8.48644e-07 5.70841e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| a thoroughgoing revision of ||| 1 0.0116562 8.48644e-07 7.64656e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a tide in ||| 0.5 0.605812 8.48644e-07 1.18719e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a tight spot in ||| 0.5 0.605812 8.48644e-07 2.63597e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a time in ||| 0.02 0.605812 8.48644e-07 3.36037e-05 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| a time when ||| 0.00170068 0.142731 5.09187e-06 4.3322e-07 2.718 ||| 0-2 ||| 3528 1.17835e+06 +en ||| a time ||| 0.000301023 0.0015231 8.48644e-07 1.35276e-06 2.718 ||| 0-0 ||| 3322 1.17835e+06 +en ||| a topic at ||| 1 0.321886 8.48644e-07 3.31574e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a topic on which ||| 0.5 0.22993 8.48644e-07 5.84753e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| a topic on ||| 0.2 0.22993 8.48644e-07 6.88382e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| a total of ||| 0.00176367 0.0116562 8.48644e-07 5.70016e-08 2.718 ||| 0-2 ||| 567 1.17835e+06 +en ||| a translated extract from ||| 1 0.0308834 8.48644e-07 4.20648e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a treadmill on ||| 1 0.22993 8.48644e-07 1.47247e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| a truly integrated internal market in energy ||| 1 0.605812 8.48644e-07 2.31658e-23 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| a truly integrated internal market in ||| 1 0.605812 8.48644e-07 2.60582e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| a twofold increase in ||| 1 0.605812 8.48644e-07 1.8512e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a unanimous one at ||| 0.5 0.321886 8.48644e-07 2.95615e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a uniform manner in ||| 0.333333 0.605812 8.48644e-07 3.43262e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| a union of ||| 0.00591716 0.0116562 8.48644e-07 1.39028e-08 2.718 ||| 0-2 ||| 169 1.17835e+06 +en ||| a useless piece of ||| 0.5 0.0116562 8.48644e-07 2.71885e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a valid ||| 0.0217391 0.0015231 8.48644e-07 1.39256e-08 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| a variety of locations in ||| 0.5 0.605812 8.48644e-07 9.21371e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| a veil over ||| 0.1 0.157937 8.48644e-07 1.95385e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| a very clear message ||| 0.0125 0.0020657 8.48644e-07 9.63022e-14 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| a very clear ||| 0.00925926 0.0020657 8.48644e-07 1.99797e-09 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| a very good component in ||| 1 0.605812 8.48644e-07 5.57724e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a very important part of ||| 0.0185185 0.0116562 8.48644e-07 9.61878e-13 2.718 ||| 0-4 ||| 54 1.17835e+06 +en ||| a very important ||| 0.00197239 0.0015231 8.48644e-07 1.09982e-09 2.718 ||| 0-0 ||| 507 1.17835e+06 +en ||| a very minor extent ||| 0.5 0.0400323 8.48644e-07 4.05213e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a very minor role to ||| 1 0.0247351 8.48644e-07 1.25114e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| a very ||| 0.000652599 0.0015231 2.54593e-06 2.86711e-06 2.718 ||| 0-0 ||| 4597 1.17835e+06 +en ||| a vested interest in small businesses and ||| 0.333333 0.605812 8.48644e-07 5.9847e-22 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| a vested interest in small businesses ||| 0.333333 0.605812 8.48644e-07 4.77786e-20 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| a vested interest in small ||| 0.333333 0.605812 8.48644e-07 1.79619e-15 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| a vested interest in ||| 0.0227273 0.605812 8.48644e-07 1.40218e-11 2.718 ||| 0-3 ||| 44 1.17835e+06 +en ||| a view in ||| 0.166667 0.605812 8.48644e-07 1.84895e-05 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| a view to increasing ||| 0.0243902 0.0247351 8.48644e-07 5.82979e-11 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| a view to ||| 0.00118659 0.0247351 3.39458e-06 1.12544e-06 2.718 ||| 0-2 ||| 3371 1.17835e+06 +en ||| a vote during which ||| 0.333333 0.226251 8.48644e-07 1.71246e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| a vote during ||| 0.142857 0.226251 8.48644e-07 2.01594e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| a way , within ||| 1 0.369196 8.48644e-07 1.26329e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a way ahead ||| 0.142857 0.0073829 8.48644e-07 2.47471e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| a way as ||| 0.00444444 0.066968 8.48644e-07 1.71872e-06 2.718 ||| 0-2 ||| 225 1.17835e+06 +en ||| a way of life in ||| 0.333333 0.605812 8.48644e-07 3.634e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| a whole company of ||| 0.5 0.0116562 8.48644e-07 1.29257e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a whole in ||| 0.170213 0.605812 6.78915e-06 1.15792e-05 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| a willingness to ||| 0.00653595 0.0247351 8.48644e-07 1.6197e-08 2.718 ||| 0-2 ||| 153 1.17835e+06 +en ||| a woman working in ||| 0.5 0.605812 8.48644e-07 6.74226e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| a word in ||| 0.125 0.605812 8.48644e-07 2.08373e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| a word ||| 0.00126263 0.0015231 8.48644e-07 8.38832e-08 2.718 ||| 0-0 ||| 792 1.17835e+06 +en ||| a year in ||| 0.00591716 0.605812 8.48644e-07 5.10492e-06 2.718 ||| 0-2 ||| 169 1.17835e+06 +en ||| a year on ||| 0.0204082 0.22993 8.48644e-07 9.18088e-07 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| a zealous advocate in ||| 1 0.605812 8.48644e-07 9.41566e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| a ||| 0.00133022 0.0015231 0.000794331 0.000824 2.718 ||| 0-0 ||| 703645 1.17835e+06 +en ||| abandoned by giving into ||| 1 0.525896 8.48644e-07 2.30791e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| abandoned in Canada . ||| 1 0.605812 8.48644e-07 8.81203e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| abandoned in Canada ||| 1 0.605812 8.48644e-07 2.90922e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| abandoned in ||| 0.0769231 0.605812 1.69729e-06 5.81844e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| abandonment of ||| 0.00653595 0.0116562 8.48644e-07 3.40925e-08 2.718 ||| 0-1 ||| 153 1.17835e+06 +en ||| abattoirs in ||| 0.25 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| ability in ||| 0.2 0.605812 1.69729e-06 2.12881e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| ability of ||| 0.00246305 0.0116562 8.48644e-07 6.28666e-07 2.718 ||| 0-1 ||| 406 1.17835e+06 +en ||| ability to ||| 0.000510204 0.0247351 8.48644e-07 1.29579e-06 2.718 ||| 0-1 ||| 1960 1.17835e+06 +en ||| able , under the ||| 1 0.205566 8.48644e-07 3.45639e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| able , under ||| 0.25 0.205566 8.48644e-07 5.63004e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| able in ||| 0.2 0.605812 8.48644e-07 0.000385541 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| able to agree ||| 0.0104167 0.071674 8.48644e-07 9.47525e-08 2.718 ||| 0-2 ||| 96 1.17835e+06 +en ||| able to avoid ||| 0.037037 0.0247351 8.48644e-07 8.28407e-10 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| able to back ||| 0.2 0.0247351 8.48644e-07 1.57843e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| able to be ||| 0.00704225 0.0247351 8.48644e-07 4.25301e-07 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| able to become members of ||| 1 0.0116562 8.48644e-07 4.26337e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| able to come up with ||| 0.117647 0.0535436 1.69729e-06 2.50535e-12 2.718 ||| 0-4 ||| 17 1.17835e+06 +en ||| able to confirm that ||| 0.0833333 0.0247351 8.48644e-07 7.26364e-12 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| able to confirm ||| 0.05 0.0247351 8.48644e-07 4.31804e-10 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| able to coordinate ||| 0.0833333 0.0247351 8.48644e-07 5.8669e-11 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| able to count on you , ||| 1 0.22993 8.48644e-07 6.47633e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| able to count on you ||| 1 0.22993 8.48644e-07 5.43067e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| able to count on ||| 0.04 0.22993 8.48644e-07 1.682e-10 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| able to enjoy ||| 0.047619 0.0247351 8.48644e-07 9.1289e-10 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| able to enter ||| 0.0588235 0.194429 8.48644e-07 3.62926e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| able to fall back on ||| 1 0.22993 8.48644e-07 3.96581e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| able to get up and ||| 1 0.0247351 8.48644e-07 4.38305e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| able to get up ||| 1 0.0247351 8.48644e-07 3.49919e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| able to get ||| 0.0135135 0.0247351 8.48644e-07 1.026e-08 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| able to hold their own in ||| 0.5 0.605812 8.48644e-07 1.17269e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| able to in ||| 0.5 0.605812 8.48644e-07 3.42585e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| able to make back in ||| 1 0.605812 8.48644e-07 4.00428e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| able to measure it in ||| 1 0.605812 8.48644e-07 4.5631e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| able to monitor ||| 0.025 0.0247351 8.48644e-07 3.54361e-10 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| able to present in ||| 1 0.605812 8.48644e-07 1.25386e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| able to purchase ||| 0.5 0.0247351 8.48644e-07 1.5254e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| able to stand up to ||| 0.111111 0.0247351 8.48644e-07 1.17204e-12 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| able to stand up ||| 0.0909091 0.0247351 8.48644e-07 1.319e-11 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| able to stand ||| 0.0555556 0.0247351 8.48644e-07 3.86746e-09 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| able to state on ||| 1 0.22993 8.48644e-07 1.55631e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| able to take a ||| 0.0333333 0.0074151 8.48644e-07 9.62195e-10 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| able to take ||| 0.00403226 0.0074151 8.48644e-07 2.17073e-08 2.718 ||| 0-2 ||| 248 1.17835e+06 +en ||| able to translate ||| 0.125 0.0247351 8.48644e-07 1.10298e-10 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| able to ||| 0.0038342 0.0247351 3.13998e-05 2.34676e-05 2.718 ||| 0-1 ||| 9650 1.17835e+06 +en ||| abolished before ||| 0.111111 0.0175291 8.48644e-07 3.92035e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| abolished for ||| 0.0714286 0.0286209 8.48644e-07 1.3231e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| abolished in ||| 0.037037 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| abolition of ||| 0.000913242 0.0116562 8.48644e-07 7.90946e-08 2.718 ||| 0-1 ||| 1095 1.17835e+06 +en ||| abortion in ||| 0.025 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| about ' talking ||| 1 0.0401564 8.48644e-07 1.07702e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| about ' ||| 0.0163934 0.0401564 8.48644e-07 9.84477e-06 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| about , ||| 0.00401606 0.0401564 8.48644e-07 0.000341796 2.718 ||| 0-0 ||| 249 1.17835e+06 +en ||| about 1 ||| 0.047619 0.0401564 8.48644e-07 1.82571e-07 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| about 1000 jobs in the area ||| 1 0.605812 8.48644e-07 6.03779e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| about 1000 jobs in the ||| 0.5 0.605812 8.48644e-07 1.45384e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| about 1000 jobs in ||| 0.333333 0.605812 8.48644e-07 2.36813e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| about a lot in ||| 0.5 0.605812 8.48644e-07 3.74022e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| about a ||| 0.00335796 0.0401564 4.24322e-06 0.000127042 2.718 ||| 0-0 ||| 1489 1.17835e+06 +en ||| about additional or ||| 0.333333 0.0401564 8.48644e-07 1.73343e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| about additional ||| 0.125 0.0401564 8.48644e-07 1.51617e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| about all the ||| 0.0151515 0.0401564 8.48644e-07 8.31458e-07 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| about all ||| 0.00598802 0.0401564 8.48644e-07 1.35435e-05 2.718 ||| 0-0 ||| 167 1.17835e+06 +en ||| about any ||| 0.00900901 0.0401564 8.48644e-07 4.33412e-06 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| about are ||| 0.0909091 0.0401564 8.48644e-07 4.34865e-05 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| about at ||| 0.214286 0.321886 5.09187e-06 5.65748e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| about because ||| 0.0714286 0.0022788 8.48644e-07 1.49209e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| about being ||| 0.0222222 0.0401564 8.48644e-07 8.15635e-06 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| about both ||| 0.0196078 0.0401564 8.48644e-07 4.74769e-06 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| about by ||| 0.0181818 0.0435154 1.69729e-06 2.43822e-05 2.718 ||| 0-0 0-1 ||| 110 1.17835e+06 +en ||| about compliance with ||| 0.142857 0.0535436 8.48644e-07 3.79251e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| about due to ||| 0.25 0.0037976 8.48644e-07 3.41828e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| about due ||| 0.125 0.0037976 8.48644e-07 3.8469e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| about ensuring ||| 0.0153846 0.0401564 8.48644e-07 3.33041e-07 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| about everywhere in ||| 1 0.605812 8.48644e-07 1.22129e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| about false economy , widely heard in ||| 0.5 0.605812 8.48644e-07 4.8164e-23 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| about flying in ||| 1 0.605812 8.48644e-07 1.0123e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| about forcing ||| 0.1 0.0401564 8.48644e-07 2.57949e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| about further ||| 0.03125 0.0401564 8.48644e-07 1.38519e-06 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| about here , ||| 0.333333 0.0401564 8.48644e-07 6.93094e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| about here ||| 0.0333333 0.0401564 8.48644e-07 5.81188e-06 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| about how many ||| 0.0833333 0.0401564 8.48644e-07 3.52641e-10 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| about how ||| 0.00194175 0.0401564 1.69729e-06 1.02721e-06 2.718 ||| 0-0 ||| 1030 1.17835e+06 +en ||| about in the ||| 0.047619 0.605812 8.48644e-07 4.00948e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| about in ||| 0.287671 0.605812 1.78215e-05 0.000653097 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| about increasing ||| 0.0185185 0.0401564 8.48644e-07 1.48464e-07 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| about integrating them into ||| 1 0.525896 8.48644e-07 3.02338e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| about is , of ||| 1 0.0401564 8.48644e-07 5.82361e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| about is , ||| 0.5 0.0401564 8.48644e-07 1.07123e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| about is ||| 0.0235294 0.0401564 1.69729e-06 8.98267e-05 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| about it at ||| 0.1 0.321886 8.48644e-07 1.00608e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| about it in ||| 0.0731707 0.605812 2.54593e-06 1.16142e-05 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| about it on ||| 0.2 0.22993 8.48644e-07 2.08873e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| about it ||| 0.00334448 0.0401564 3.39458e-06 5.09684e-05 2.718 ||| 0-0 ||| 1196 1.17835e+06 +en ||| about its negative impact on ||| 1 0.22993 8.48644e-07 3.22656e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| about just ||| 0.0909091 0.0401564 8.48644e-07 3.61616e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| about more ||| 0.0178571 0.0222258 8.48644e-07 9.53551e-07 2.718 ||| 0-0 0-1 ||| 56 1.17835e+06 +en ||| about over ||| 0.25 0.157937 8.48644e-07 5.66738e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| about people having ||| 1 0.0065553 8.48644e-07 9.57303e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| about possible mafia groups operating within ||| 1 0.369196 8.48644e-07 5.24531e-23 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| about preaching ||| 0.5 0.0401564 8.48644e-07 4.01254e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| about several ||| 0.166667 0.0401564 8.48644e-07 1.8773e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| about some of the ||| 0.0175439 0.0401564 8.48644e-07 1.04198e-08 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| about some of ||| 0.0136986 0.0401564 8.48644e-07 1.69727e-07 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| about some ||| 0.00740741 0.0401564 8.48644e-07 3.12204e-06 2.718 ||| 0-0 ||| 135 1.17835e+06 +en ||| about strengthening ||| 0.025 0.0401564 8.48644e-07 3.72593e-08 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| about supporting ||| 0.0357143 0.0401564 8.48644e-07 9.17152e-08 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| about that in ||| 0.0526316 0.605812 8.48644e-07 1.09861e-05 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| about that ||| 0.00462428 0.0401564 3.39458e-06 4.82124e-05 2.718 ||| 0-0 ||| 865 1.17835e+06 +en ||| about the making of ||| 0.333333 0.0401564 8.48644e-07 3.67989e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| about the making ||| 0.5 0.0401564 8.48644e-07 6.76899e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| about the ||| 0.000764886 0.0401564 1.10324e-05 0.000175955 2.718 ||| 0-0 ||| 16996 1.17835e+06 +en ||| about them in ||| 0.111111 0.605812 8.48644e-07 1.75187e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| about them ||| 0.00947867 0.0401564 1.69729e-06 7.68803e-06 2.718 ||| 0-0 ||| 211 1.17835e+06 +en ||| about these at ||| 1 0.321886 8.48644e-07 5.86738e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| about these things will ||| 1 0.0401564 8.48644e-07 1.05689e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| about these things ||| 0.0625 0.0401564 8.48644e-07 1.22167e-09 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| about these ||| 0.00257069 0.0401564 8.48644e-07 2.97243e-06 2.718 ||| 0-0 ||| 389 1.17835e+06 +en ||| about things ||| 0.0217391 0.0401564 8.48644e-07 1.17797e-06 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| about this - ||| 0.0212766 0.0401564 8.48644e-07 6.98556e-08 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| about this in ||| 0.030303 0.605812 1.69729e-06 4.21992e-06 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| about this incident ||| 0.1 0.0401564 8.48644e-07 2.00005e-10 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| about this issue in ||| 0.142857 0.605812 8.48644e-07 3.19364e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| about this matter ||| 0.0166667 0.0401564 8.48644e-07 1.92135e-08 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| about this ||| 0.00247295 0.0401564 6.78915e-06 1.8519e-05 2.718 ||| 0-0 ||| 3235 1.17835e+06 +en ||| about to disappear on ||| 1 0.22993 8.48644e-07 8.24513e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| about to get ||| 0.111111 0.0401564 8.48644e-07 1.11345e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| about to ||| 0.010582 0.0401564 8.48644e-06 0.000254676 2.718 ||| 0-0 ||| 945 1.17835e+06 +en ||| about very freely in ||| 1 0.605812 8.48644e-07 2.95419e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| about what I think is ||| 0.5 0.0401564 8.48644e-07 3.41004e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| about what I think ||| 1 0.0401564 8.48644e-07 1.08804e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| about what I ||| 0.0666667 0.0401564 8.48644e-07 2.84455e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| about what ||| 0.00181984 0.0401564 1.69729e-06 4.02142e-06 2.718 ||| 0-0 ||| 1099 1.17835e+06 +en ||| about when ||| 0.0512821 0.142731 1.69729e-06 8.41975e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| about where ||| 0.00943396 0.247783 8.48644e-07 1.2045e-05 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| about whether ||| 0.00289017 0.0401564 8.48644e-07 7.52924e-07 2.718 ||| 0-0 ||| 346 1.17835e+06 +en ||| about which ||| 0.00184162 0.0401564 8.48644e-07 2.43464e-05 2.718 ||| 0-0 ||| 543 1.17835e+06 +en ||| about who is to be ||| 0.25 0.0401564 8.48644e-07 1.27585e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| about who is to ||| 0.0714286 0.0401564 8.48644e-07 7.03998e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| about who is ||| 0.0232558 0.0401564 8.48644e-07 7.92272e-08 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| about who ||| 0.00943396 0.0401564 8.48644e-07 2.5279e-06 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| about with ||| 0.125 0.0535436 1.69729e-06 1.64892e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| about within ||| 0.5 0.369196 8.48644e-07 1.56799e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| about ||| 0.0317064 0.0401564 0.0014427 0.0028661 2.718 ||| 0-0 ||| 53617 1.17835e+06 +en ||| above all , in those ||| 1 0.605812 8.48644e-07 2.44205e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| above all , in ||| 0.00826446 0.605812 8.48644e-07 3.37253e-08 2.718 ||| 0-3 ||| 121 1.17835e+06 +en ||| above all , so ||| 0.142857 0.0146514 8.48644e-07 1.4095e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| above all , ||| 0.000425985 0.0146514 1.69729e-06 6.21006e-08 2.718 ||| 0-0 ||| 4695 1.17835e+06 +en ||| above all agrees with ||| 1 0.0535436 8.48644e-07 6.92585e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| above all else on ||| 0.333333 0.22993 8.48644e-07 6.00146e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| above all if ||| 0.1 0.0178573 8.48644e-07 7.10092e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| above all ||| 0.00102238 0.0146514 7.6378e-06 5.20739e-07 2.718 ||| 0-0 ||| 8803 1.17835e+06 +en ||| above in ||| 0.142857 0.605812 8.48644e-07 5.98468e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| above us ||| 0.333333 0.0146514 8.48644e-07 3.17618e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| above ||| 0.00365614 0.0146514 3.30971e-05 0.0001102 2.718 ||| 0-0 ||| 10667 1.17835e+06 +en ||| abroad , ||| 0.00414938 0.226826 8.48644e-07 5.24244e-05 2.718 ||| 0-0 ||| 241 1.17835e+06 +en ||| abroad in ||| 0.037037 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| abroad ||| 0.000834725 0.226826 8.48644e-07 0.0004396 2.718 ||| 0-0 ||| 1198 1.17835e+06 +en ||| absent from ||| 0.0114943 0.0308834 8.48644e-07 1.36984e-08 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| absolute ||| 0.000513084 0.0008666 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 1949 1.17835e+06 +en ||| absolutely at ||| 0.333333 0.321886 8.48644e-07 3.77219e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| absolutely essential for ||| 0.0142857 0.0286209 8.48644e-07 9.76446e-11 2.718 ||| 0-2 ||| 70 1.17835e+06 +en ||| absolutely ||| 0.00138313 0.0067437 7.6378e-06 3.33e-05 2.718 ||| 0-0 ||| 6507 1.17835e+06 +en ||| absorbed in ||| 0.125 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| abstraction ||| 0.0526316 0.0416667 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| absurd being played in ||| 1 0.605812 8.48644e-07 3.75764e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| absurdity in ||| 0.25 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| abundantly clear in ||| 0.2 0.605812 8.48644e-07 5.53417e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| abundantly in ||| 1 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| abuse in ||| 0.0192308 0.605812 8.48644e-07 8.12735e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| abuse to ||| 0.0588235 0.0247351 8.48644e-07 4.94706e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| abused in ||| 0.0588235 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| accede to ||| 0.00462963 0.0247351 8.48644e-07 1.0119e-07 2.718 ||| 0-1 ||| 216 1.17835e+06 +en ||| acceded in ||| 0.1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| acceding to ||| 0.0138889 0.0247351 8.48644e-07 6.18383e-08 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| accelerate matters ||| 1 0.0005586 8.48644e-07 5.28e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| accent on ||| 0.0243902 0.22993 8.48644e-07 2.07621e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| accept in ||| 0.016129 0.605812 1.69729e-06 5.00109e-05 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| accept it in ||| 0.0909091 0.605812 8.48644e-07 8.89354e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| accept responsibility with ||| 0.5 0.0535436 8.48644e-07 1.45837e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| accept them in ||| 0.0769231 0.605812 8.48644e-07 1.34149e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| acceptable bearing in ||| 0.5 0.605812 8.48644e-07 6.67292e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| acceptable in ||| 0.0322581 0.605812 5.09187e-06 1.49617e-05 2.718 ||| 0-1 ||| 186 1.17835e+06 +en ||| acceptable to ||| 0.00120482 0.0247351 8.48644e-07 9.10709e-07 2.718 ||| 0-1 ||| 830 1.17835e+06 +en ||| acceptable when ||| 0.125 0.142731 8.48644e-07 1.92887e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| acceptable ||| 0.000226655 0.0002107 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 4412 1.17835e+06 +en ||| acceptance of ||| 0.00184162 0.0037831 8.48644e-07 2.22892e-07 2.718 ||| 0-0 ||| 543 1.17835e+06 +en ||| acceptance rate in ||| 1 0.605812 8.48644e-07 5.65626e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| acceptance ||| 0.00138217 0.0037831 1.69729e-06 4.1e-06 2.718 ||| 0-0 ||| 1447 1.17835e+06 +en ||| accepted as ||| 0.00925926 0.066968 8.48644e-07 1.10626e-06 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| accepted at ||| 0.0555556 0.321886 1.69729e-06 2.46012e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| accepted by ||| 0.00295858 0.0468744 1.69729e-06 5.23187e-07 2.718 ||| 0-1 ||| 676 1.17835e+06 +en ||| accepted in this ||| 0.0909091 0.605812 8.48644e-07 1.83501e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| accepted in ||| 0.0247525 0.605812 4.24322e-06 2.83995e-05 2.718 ||| 0-1 ||| 202 1.17835e+06 +en ||| accepted into ||| 0.0285714 0.525896 8.48644e-07 1.36144e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| accepted that country in ||| 1 0.605812 8.48644e-07 1.71933e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| accepted within ||| 0.2 0.369196 8.48644e-07 6.81832e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| access as ||| 0.0714286 0.066968 8.48644e-07 1.54696e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| access in ||| 0.0540541 0.605812 1.69729e-06 3.97132e-05 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| access to the ||| 0.000642261 0.0247351 8.48644e-07 1.48403e-07 2.718 ||| 0-1 ||| 1557 1.17835e+06 +en ||| access to ||| 0.000344669 0.0247351 2.54593e-06 2.41731e-06 2.718 ||| 0-1 ||| 8704 1.17835e+06 +en ||| access under ||| 0.5 0.205566 8.48644e-07 4.86296e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| accessible via ||| 0.0769231 0.0130862 8.48644e-07 5.304e-10 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| accession to ||| 0.00190114 0.0247351 1.69729e-06 1.03157e-06 2.718 ||| 0-1 ||| 1052 1.17835e+06 +en ||| accessories to honour ||| 1 0.0247351 8.48644e-07 7.35875e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| accessories to ||| 0.0909091 0.0247351 8.48644e-07 3.93516e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| accident occurred , in ||| 1 0.605812 8.48644e-07 3.20643e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| accidents at ||| 0.0103093 0.321886 8.48644e-07 4.0402e-07 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| accidents of ||| 0.05 0.0116562 8.48644e-07 1.37734e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| accidents ||| 0.000834376 0.0019967 1.69729e-06 4.1e-06 2.718 ||| 0-0 ||| 2397 1.17835e+06 +en ||| accommodated in pairs ||| 0.25 0.605812 8.48644e-07 1.29299e-13 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| accommodated in ||| 0.0434783 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| accommodated within ||| 0.5 0.369196 8.48644e-07 7.76069e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| accommodation addresses on ||| 0.5 0.22993 8.48644e-07 1.2042e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| accompanied by ||| 0.00095511 0.0468744 8.48644e-07 1.71843e-07 2.718 ||| 0-1 ||| 1047 1.17835e+06 +en ||| accompanying statement , ||| 1 0.000353 8.48644e-07 1.45491e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| accompanying statement ||| 1 0.000353 8.48644e-07 1.22e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| accomplice in ||| 0.333333 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| accomplishing in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| accord with ||| 0.0120482 0.0535436 8.48644e-07 1.59727e-07 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| accordance with ||| 0.00300429 0.0535436 1.1881e-05 9.26883e-07 2.718 ||| 0-1 ||| 4660 1.17835e+06 +en ||| according to a good deal ||| 0.5 0.0586463 8.48644e-07 3.67646e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| according to a good ||| 0.5 0.0586463 8.48644e-07 8.65865e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| according to a ||| 0.003003 0.0586463 8.48644e-07 1.66962e-06 2.718 ||| 0-0 ||| 333 1.17835e+06 +en ||| according to past precedent , ||| 0.5 0.0586463 8.48644e-07 1.84135e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| according to past precedent ||| 0.5 0.0586463 8.48644e-07 1.54405e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| according to past ||| 0.5 0.0586463 8.48644e-07 4.82514e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| according to the principle whereby costs are ||| 1 0.0247351 8.48644e-07 8.65478e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| according to the principle whereby costs ||| 1 0.0247351 8.48644e-07 5.70418e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| according to the principle whereby ||| 1 0.0247351 8.48644e-07 7.58535e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| according to the principle ||| 0.0126582 0.0247351 8.48644e-07 2.34116e-11 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| according to the ||| 0.00224027 0.0586463 6.78915e-06 2.31244e-06 2.718 ||| 0-0 ||| 3571 1.17835e+06 +en ||| according to their ||| 0.00537634 0.0416907 8.48644e-07 1.38108e-08 2.718 ||| 0-0 0-1 ||| 186 1.17835e+06 +en ||| according to ||| 0.0134747 0.0586463 9.16536e-05 3.7667e-05 2.718 ||| 0-0 ||| 8015 1.17835e+06 +en ||| according ||| 0.0203767 0.0586463 0.000112021 0.0004239 2.718 ||| 0-0 ||| 6478 1.17835e+06 +en ||| accordingly , in ||| 0.0526316 0.605812 8.48644e-07 2.2193e-06 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| accordingly , ||| 0.00125 0.190763 8.48644e-07 5.6646e-05 2.718 ||| 0-0 ||| 800 1.17835e+06 +en ||| accordingly in ||| 0.0434783 0.605812 8.48644e-07 1.86098e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| accordingly ||| 0.00446872 0.190763 7.6378e-06 0.000475 2.718 ||| 0-0 ||| 2014 1.17835e+06 +en ||| accords with ||| 0.0217391 0.0535436 8.48644e-07 3.73085e-08 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| account , ||| 0.00260417 0.233636 8.48644e-07 0.00039422 2.718 ||| 0-0 ||| 384 1.17835e+06 +en ||| account ? ||| 0.0833333 0.233636 8.48644e-07 5.64944e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| account at ||| 0.0263158 0.321886 8.48644e-07 1.15006e-05 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| account during ||| 0.0357143 0.226251 8.48644e-07 8.31249e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| account for a ||| 0.027027 0.233636 8.48644e-07 1.12617e-06 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| account for ||| 0.00890208 0.233636 5.09187e-06 2.54066e-05 2.718 ||| 0-0 ||| 674 1.17835e+06 +en ||| account has been taken ||| 0.037037 0.233636 8.48644e-07 5.17915e-11 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| account has been ||| 0.0625 0.233636 8.48644e-07 5.68201e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| account has ||| 0.0588235 0.233636 8.48644e-07 1.70161e-05 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| account having to be taken of ||| 1 0.0116562 8.48644e-07 2.20356e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| account in ||| 0.0294659 0.605812 1.35783e-05 0.000132762 2.718 ||| 0-1 ||| 543 1.17835e+06 +en ||| account of a ||| 0.0232558 0.0116562 8.48644e-07 1.73785e-07 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| account of it ||| 0.03125 0.233636 8.48644e-07 3.19584e-06 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| account of the ||| 0.000459982 0.233636 8.48644e-07 1.10328e-05 2.718 ||| 0-0 ||| 2174 1.17835e+06 +en ||| account of ||| 0.00542069 0.233636 1.95188e-05 0.000179711 2.718 ||| 0-0 ||| 4243 1.17835e+06 +en ||| account on ||| 0.0454545 0.22993 8.48644e-07 2.38764e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| account over it ||| 1 0.157937 8.48644e-07 2.04875e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| account over ||| 0.2 0.157937 8.48644e-07 1.15207e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| account to ||| 0.016129 0.129186 8.48644e-07 9.29176e-05 2.718 ||| 0-0 0-1 ||| 62 1.17835e+06 +en ||| account two additional issues . ||| 1 0.233636 8.48644e-07 3.14923e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| account two additional issues ||| 1 0.233636 8.48644e-07 1.03969e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| account two additional ||| 1 0.233636 8.48644e-07 4.13396e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| account two ||| 0.333333 0.233636 8.48644e-07 7.81467e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| account where ||| 0.333333 0.247783 8.48644e-07 2.44852e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| account would be taken ||| 0.2 0.233636 8.48644e-07 3.20472e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| account would be ||| 0.166667 0.233636 8.48644e-07 3.51587e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| account would ||| 0.5 0.233636 8.48644e-07 1.94002e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| account ||| 0.00524599 0.233636 6.27997e-05 0.0033057 2.718 ||| 0-0 ||| 14106 1.17835e+06 +en ||| accountability during ||| 1 0.226251 8.48644e-07 1.24326e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| accounted for by the ||| 0.2 0.0286209 8.48644e-07 2.41038e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| accounted for by ||| 0.0952381 0.0286209 1.69729e-06 3.92622e-10 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| accounted for ||| 0.00671141 0.0286209 8.48644e-07 7.47838e-08 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| accounts for commercial activities ||| 1 0.0286209 8.48644e-07 5.39825e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| accounts for commercial ||| 1 0.0286209 8.48644e-07 6.79025e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| accounts for ||| 0.00521739 0.0286209 2.54593e-06 3.55511e-07 2.718 ||| 0-1 ||| 575 1.17835e+06 +en ||| accrue to them as a result of ||| 1 0.0116562 8.48644e-07 1.0837e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| accruing to ||| 0.0714286 0.0247351 8.48644e-07 1.96758e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| accurate in ||| 0.125 0.605812 8.48644e-07 4.80252e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| accurately when ||| 0.333333 0.142731 8.48644e-07 3.63151e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| accurately writes in ||| 0.333333 0.605812 8.48644e-07 3.94361e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| accused in ||| 0.0666667 0.605812 8.48644e-07 5.81844e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| accused of anti-Americanism ||| 1 0.0116562 8.48644e-07 6.87305e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| accused of ||| 0.00226244 0.0116562 8.48644e-07 1.71826e-07 2.718 ||| 0-1 ||| 442 1.17835e+06 +en ||| achieve a balance as regards ||| 1 0.066968 8.48644e-07 1.37735e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| achieve a balance as ||| 1 0.066968 8.48644e-07 9.83823e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| achieve at ||| 0.04 0.321886 8.48644e-07 9.14046e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| achieve by ||| 0.0285714 0.0468744 8.48644e-07 1.94387e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| achieve in ||| 0.0633803 0.605812 7.6378e-06 0.000105517 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| achieve peace in ||| 0.0625 0.605812 8.48644e-07 4.40006e-09 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| achieve something in ||| 0.0769231 0.605812 8.48644e-07 5.84036e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| achieve this , when ||| 0.333333 0.142731 8.48644e-07 1.0482e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| achieve this at ||| 0.5 0.321886 8.48644e-07 5.90601e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| achieve this ||| 0.000707214 0.0013296 8.48644e-07 1.08995e-07 2.718 ||| 0-1 ||| 1414 1.17835e+06 +en ||| achieved at ||| 0.0131579 0.321886 8.48644e-07 6.69233e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| achieved by ||| 0.00171233 0.0468744 8.48644e-07 1.42324e-06 2.718 ||| 0-1 ||| 584 1.17835e+06 +en ||| achieved in the ||| 0.00803213 0.605812 1.69729e-06 4.74288e-06 2.718 ||| 0-1 ||| 249 1.17835e+06 +en ||| achieved in ||| 0.0303468 0.605812 1.78215e-05 7.7256e-05 2.718 ||| 0-1 ||| 692 1.17835e+06 +en ||| achieved on ||| 0.0243902 0.22993 1.69729e-06 1.3894e-05 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| achieved over ||| 0.0277778 0.157937 8.48644e-07 6.70405e-07 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| achieved through ||| 0.00278552 0.0366102 8.48644e-07 1.57329e-07 2.718 ||| 0-1 ||| 359 1.17835e+06 +en ||| achieved within ||| 0.0681818 0.369196 2.54593e-06 1.8548e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| achieved ||| 0.000120584 9.69e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 8293 1.17835e+06 +en ||| achievement for ||| 0.0344828 0.0286209 8.48644e-07 2.77275e-07 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| achievement of ||| 0.00368098 0.0116562 2.54593e-06 3.28652e-07 2.718 ||| 0-1 ||| 815 1.17835e+06 +en ||| achievements include ||| 0.5 0.0015517 8.48644e-07 8.284e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| achieving ||| 0.000191608 0.000361 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 5219 1.17835e+06 +en ||| acknowledged in ||| 0.0185185 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| acknowledges the ||| 0.00628931 0.0011669 8.48644e-07 7.16175e-09 2.718 ||| 0-1 ||| 159 1.17835e+06 +en ||| acquaintance in ||| 1 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| acquiescent in the ||| 0.2 0.605812 8.48644e-07 1.13398e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| acquiescent in ||| 0.2 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| acquire holdings in ||| 1 0.605812 8.48644e-07 2.45298e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| acquire information on ||| 0.166667 0.22993 8.48644e-07 2.28159e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| acquired in ||| 0.0363636 0.605812 1.69729e-06 6.64965e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| acquitted in ||| 0.5 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| across , ||| 0.2 0.274879 8.48644e-07 0.000244985 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| across Europe ||| 0.00186047 0.274879 1.69729e-06 1.03948e-06 2.718 ||| 0-0 ||| 1075 1.17835e+06 +en ||| across Member ||| 0.25 0.274879 8.48644e-07 1.05858e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| across a number ||| 0.111111 0.274879 8.48644e-07 4.50557e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| across a ||| 0.0810811 0.274879 7.6378e-06 9.10585e-05 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| across all ||| 0.00738007 0.274879 1.69729e-06 9.70739e-06 2.718 ||| 0-0 ||| 271 1.17835e+06 +en ||| across borders ||| 0.00261097 0.274879 8.48644e-07 8.87458e-08 2.718 ||| 0-0 ||| 383 1.17835e+06 +en ||| across in ||| 0.2 0.605812 1.69729e-06 4.73787e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| across into ||| 0.5 0.400388 8.48644e-07 4.54767e-05 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| across it while doing ||| 1 0.274879 8.48644e-07 2.49979e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| across it while ||| 1 0.274879 8.48644e-07 6.80957e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| across it ||| 0.142857 0.274879 8.48644e-07 3.6532e-05 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| across meant passing over ||| 1 0.216408 8.48644e-07 1.67537e-14 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| across regions ||| 0.2 0.274879 8.48644e-07 1.69274e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| across the board in ||| 0.125 0.605812 8.48644e-07 3.88307e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| across the board on ||| 1 0.22993 8.48644e-07 6.98345e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| across the border into ||| 0.5 0.525896 8.48644e-07 3.26286e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| across the rest of ||| 0.2 0.0116562 8.48644e-07 6.49379e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| across the ||| 0.0200555 0.274879 5.51619e-05 0.000126117 2.718 ||| 0-0 ||| 3241 1.17835e+06 +en ||| across to the citizens ||| 0.5 0.274879 8.48644e-07 1.22151e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| across to the ||| 0.2 0.274879 8.48644e-07 1.12065e-05 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| across to you ||| 1 0.274879 8.48644e-07 5.89371e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| across to ||| 0.16129 0.274879 4.24322e-06 0.000182541 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| across ||| 0.154533 0.274879 0.000866466 0.0020543 2.718 ||| 0-0 ||| 6607 1.17835e+06 +en ||| act , within ||| 0.5 0.369196 8.48644e-07 2.24632e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| act as a ||| 0.00512821 0.066968 1.69729e-06 1.35466e-07 2.718 ||| 0-1 ||| 390 1.17835e+06 +en ||| act as ||| 0.00547645 0.066968 4.24322e-06 3.05614e-06 2.718 ||| 0-1 ||| 913 1.17835e+06 +en ||| act at ||| 0.0243902 0.321886 8.48644e-07 6.79634e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| act in line with ||| 0.0714286 0.0535436 8.48644e-07 1.24823e-11 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| act in more areas ||| 1 0.605812 8.48644e-07 4.10123e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| act in more ||| 1 0.605812 8.48644e-07 1.79171e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| act in such ||| 0.0416667 0.605812 8.48644e-07 1.62319e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| act in the ||| 0.0111111 0.605812 8.48644e-07 4.81659e-06 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| act in this ||| 0.0178571 0.605812 8.48644e-07 5.0694e-07 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| act in ||| 0.0279503 0.605812 1.52756e-05 7.84566e-05 2.718 ||| 0-1 ||| 644 1.17835e+06 +en ||| act on ||| 0.00319489 0.22993 8.48644e-07 1.41099e-05 2.718 ||| 0-1 ||| 313 1.17835e+06 +en ||| act out of ||| 0.333333 0.0116562 8.48644e-07 8.87475e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| act responsibly in ||| 0.2 0.605812 8.48644e-07 5.49196e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| act together in ||| 0.0357143 0.605812 8.48644e-07 4.7121e-08 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| act under the ||| 0.166667 0.205566 8.48644e-07 5.89801e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| act under ||| 0.0625 0.205566 8.48644e-07 9.60717e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| act with ||| 0.00704225 0.0535436 8.48644e-07 1.98085e-06 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| acted in ||| 0.0238095 0.605812 2.54593e-06 8.95855e-06 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| acted on in ||| 0.25 0.417871 8.48644e-07 7.43994e-07 2.718 ||| 0-1 0-2 ||| 4 1.17835e+06 +en ||| acted on ||| 0.0178571 0.22993 8.48644e-07 1.61114e-06 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| acted upon , ||| 0.111111 0.114601 8.48644e-07 2.04494e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| acted upon ||| 0.025974 0.114601 1.69729e-06 1.71477e-08 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| acting as an accomplice in ||| 0.5 0.605812 8.48644e-07 4.94286e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| acting as ||| 0.0126984 0.066968 3.39458e-06 1.06129e-06 2.718 ||| 0-1 ||| 315 1.17835e+06 +en ||| acting in ||| 0.0289855 0.605812 6.78915e-06 2.72451e-05 2.718 ||| 0-1 ||| 276 1.17835e+06 +en ||| acting on the ||| 0.0285714 0.22993 8.48644e-07 3.00811e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| acting on ||| 0.0248447 0.22993 3.39458e-06 4.89986e-06 2.718 ||| 0-1 ||| 161 1.17835e+06 +en ||| acting with the ||| 0.142857 0.0535436 8.48644e-07 4.22299e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| acting with ||| 0.0294118 0.0535436 8.48644e-07 6.87875e-07 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| acting within ||| 0.0666667 0.369196 8.48644e-07 6.54115e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| acting ||| 0.00639795 0.0234297 8.48644e-06 3.2e-05 2.718 ||| 0-0 ||| 1563 1.17835e+06 +en ||| action against ||| 0.0021978 0.153982 8.48644e-07 1.75301e-06 2.718 ||| 0-1 ||| 455 1.17835e+06 +en ||| action at ||| 0.00630915 0.321886 1.69729e-06 1.20926e-05 2.718 ||| 0-1 ||| 317 1.17835e+06 +en ||| action by throwing all our energies into ||| 1 0.525896 8.48644e-07 1.68187e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| action by ||| 0.00224719 0.0468744 8.48644e-07 2.5717e-06 2.718 ||| 0-1 ||| 445 1.17835e+06 +en ||| action in accordance with ||| 0.142857 0.605812 8.48644e-07 7.09656e-11 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| action in accordance ||| 0.125 0.605812 8.48644e-07 1.10979e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| action in ||| 0.0301275 0.605812 2.20648e-05 0.000139596 2.718 ||| 0-1 ||| 863 1.17835e+06 +en ||| action into ||| 0.166667 0.525896 8.48644e-07 6.69211e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| action is , in ||| 1 0.605812 8.48644e-07 5.21752e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| action is targeted at ||| 0.2 0.321886 8.48644e-07 1.06498e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| action on ||| 0.0171875 0.22993 9.33509e-06 2.51055e-05 2.718 ||| 0-1 ||| 640 1.17835e+06 +en ||| action taken against it ||| 0.333333 0.0080472 8.48644e-07 1.81319e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| action taken in ||| 0.037037 0.605812 8.48644e-07 1.27242e-07 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| action that might result in a ||| 1 0.605812 8.48644e-07 2.1044e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| action that might result in ||| 1 0.605812 8.48644e-07 4.74757e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| action to be taken in ||| 0.0714286 0.605812 8.48644e-07 2.04907e-10 2.718 ||| 0-4 ||| 14 1.17835e+06 +en ||| action with ||| 0.012987 0.0535436 8.48644e-07 3.52449e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| actions at ||| 0.0196078 0.321886 8.48644e-07 2.79214e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| actions during ||| 0.333333 0.226251 8.48644e-07 2.01813e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| actions in favour ||| 0.047619 0.605812 8.48644e-07 1.04272e-08 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| actions in ||| 0.0144404 0.605812 3.39458e-06 3.22323e-05 2.718 ||| 0-1 ||| 277 1.17835e+06 +en ||| actions of ||| 0.00180832 0.0116562 8.48644e-07 9.51863e-07 2.718 ||| 0-1 ||| 553 1.17835e+06 +en ||| actions on ||| 0.029703 0.22993 2.54593e-06 5.79678e-06 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| activated in the ||| 1 0.605812 8.48644e-07 9.07186e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| activated in ||| 0.333333 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| active as ||| 0.111111 0.066968 8.48644e-07 7.24912e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| active at ||| 0.0208333 0.321886 8.48644e-07 1.61208e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| active in their ||| 0.25 0.605812 8.48644e-07 2.15706e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| active in ||| 0.0281195 0.605812 1.35783e-05 1.86098e-05 2.718 ||| 0-1 ||| 569 1.17835e+06 +en ||| active ingredients throughout ||| 1 0.309047 8.48644e-07 3.74087e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| active part in ||| 0.021978 0.605812 1.69729e-06 2.21866e-08 2.718 ||| 0-2 ||| 91 1.17835e+06 +en ||| active role in ||| 0.0119522 0.605812 2.54593e-06 4.13137e-09 2.718 ||| 0-2 ||| 251 1.17835e+06 +en ||| active within ||| 0.0625 0.369196 8.48644e-07 4.46794e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| actively in , ||| 1 0.605812 8.48644e-07 1.15095e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| actively in ||| 0.01875 0.605812 2.54593e-06 9.65122e-06 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| activities and in ||| 0.2 0.605812 8.48644e-07 4.59846e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| activities carried out in the host countries ||| 1 0.605812 8.48644e-07 1.87405e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| activities carried out in the host ||| 1 0.605812 8.48644e-07 4.9356e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| activities carried out in the ||| 0.142857 0.605812 8.48644e-07 2.54412e-12 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| activities carried out in ||| 0.0833333 0.605812 8.48644e-07 4.14407e-11 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| activities from ||| 0.0833333 0.0308834 8.48644e-07 3.02505e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| activities in the field of research ||| 0.25 0.605812 8.48644e-07 9.7202e-16 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| activities in the field of ||| 0.025 0.605812 8.48644e-07 1.79009e-11 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| activities in the field ||| 0.0263158 0.605812 8.48644e-07 3.29279e-10 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| activities in the ||| 0.00684932 0.605812 8.48644e-07 2.25379e-06 2.718 ||| 0-1 ||| 146 1.17835e+06 +en ||| activities in ||| 0.0316302 0.605812 1.10324e-05 3.67116e-05 2.718 ||| 0-1 ||| 411 1.17835e+06 +en ||| activity in connection with ||| 1 0.0535436 8.48644e-07 2.04118e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| activity in ||| 0.0331492 0.605812 5.09187e-06 2.47515e-05 2.718 ||| 0-1 ||| 181 1.17835e+06 +en ||| activity on ||| 0.0625 0.22993 1.69729e-06 4.45139e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| activity-based ||| 0.0188679 0.168116 8.48644e-07 3.95e-05 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| acts as ||| 0.00746269 0.066968 8.48644e-07 1.02351e-06 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| acts both in ||| 1 0.605812 8.48644e-07 4.35251e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| acts in contempt of ||| 0.25 0.605812 8.48644e-07 1.48557e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| acts in contempt ||| 0.25 0.605812 8.48644e-07 2.73264e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| acts in ||| 0.037037 0.605812 2.54593e-06 2.62753e-05 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| acts of negligence on ||| 1 0.22993 8.48644e-07 2.82584e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| acts within ||| 0.166667 0.369196 8.48644e-07 6.30833e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| actual financial ||| 0.333333 0.0060556 8.48644e-07 1.83e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| actual working of ||| 1 0.0029456 8.48644e-07 2.94206e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| actual working ||| 0.166667 0.0029456 8.48644e-07 5.41178e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| actual ||| 0.00369413 0.0060556 8.48644e-06 1.5e-05 2.718 ||| 0-0 ||| 2707 1.17835e+06 +en ||| actually , ||| 0.00446429 0.125341 8.48644e-07 0.000160183 2.718 ||| 0-0 ||| 224 1.17835e+06 +en ||| actually at ||| 0.0625 0.321886 8.48644e-07 1.65128e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| actually be ||| 0.00938967 0.125341 1.69729e-06 2.43427e-05 2.718 ||| 0-0 ||| 213 1.17835e+06 +en ||| actually being used ||| 0.125 0.125341 8.48644e-07 1.63984e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| actually being ||| 0.0163934 0.125341 8.48644e-07 3.82248e-06 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| actually belonged ||| 0.142857 0.125341 8.48644e-07 3.358e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| actually damage ||| 0.2 0.125341 8.48644e-07 5.65487e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| actually deeply ||| 0.0833333 0.125341 8.48644e-07 3.14309e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| actually did at ||| 1 0.321886 8.48644e-07 7.50013e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| actually doing anything ||| 0.25 0.125341 8.48644e-07 7.73656e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| actually doing ||| 0.0392157 0.125341 1.69729e-06 4.93089e-07 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| actually done ||| 0.03125 0.125341 8.48644e-07 6.12499e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| actually exist within ||| 1 0.369196 8.48644e-07 4.21504e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| actually exists within ||| 1 0.369196 8.48644e-07 2.55374e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| actually function on ||| 0.5 0.22993 8.48644e-07 8.50203e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| actually have ||| 0.0190476 0.125341 3.39458e-06 1.60644e-05 2.718 ||| 0-0 ||| 210 1.17835e+06 +en ||| actually implement ||| 0.0285714 0.125341 8.48644e-07 7.49506e-08 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| actually in ||| 0.0322581 0.605812 1.69729e-06 0.000190623 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| actually inside ||| 1 0.188717 8.48644e-07 7.89274e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| actually is ||| 0.025 0.125341 1.69729e-06 4.20974e-05 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| actually make ||| 0.0263158 0.125341 8.48644e-07 2.33421e-06 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| actually mean ||| 0.025 0.125341 8.48644e-07 3.46143e-07 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| actually not ||| 0.027027 0.125341 8.48644e-07 4.58582e-06 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| actually on ||| 0.0869565 0.22993 1.69729e-06 3.42824e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| actually open ||| 0.333333 0.125341 8.48644e-07 2.16524e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| actually passed ||| 0.333333 0.125341 8.48644e-07 9.61731e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| actually proposing such a ||| 0.5 0.125341 8.48644e-07 2.88239e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| actually proposing such ||| 0.5 0.125341 8.48644e-07 6.50273e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| actually proposing ||| 0.1 0.125341 8.48644e-07 3.14309e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| actually ratify ||| 0.5 0.125341 8.48644e-07 6.716e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| actually shed ||| 0.1 0.125341 8.48644e-07 1.15515e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| actually take you in ||| 1 0.605812 8.48644e-07 9.90899e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| actually taken ||| 0.0666667 0.125341 8.48644e-07 1.22433e-06 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| actually taking place at a ||| 1 0.321886 8.48644e-07 4.6817e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| actually taking place at ||| 1 0.321886 8.48644e-07 1.0562e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| actually to enter ||| 0.2 0.194429 8.48644e-07 1.79442e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| actually took ||| 0.142857 0.125341 8.48644e-07 1.98122e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| actually use ||| 0.05 0.0006769 8.48644e-07 5.90304e-09 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| actually wants ||| 0.0909091 0.125341 8.48644e-07 6.6757e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| actually ||| 0.00968217 0.125341 7.80753e-05 0.0013432 2.718 ||| 0-0 ||| 9502 1.17835e+06 +en ||| acute impression over ||| 1 0.157937 8.48644e-07 9.9066e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| acutely in ||| 0.333333 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| adapt to ||| 0.00177936 0.0247351 8.48644e-07 1.71461e-07 2.718 ||| 0-1 ||| 562 1.17835e+06 +en ||| adapt ||| 0.000556483 0.0011038 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 1797 1.17835e+06 +en ||| adaptation measures that would ||| 1 0.0017499 8.48644e-07 2.28441e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| adaptation measures that ||| 1 0.0017499 8.48644e-07 3.89253e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| adaptation of ||| 0.00473934 0.0116562 8.48644e-07 2.45466e-08 2.718 ||| 0-1 ||| 211 1.17835e+06 +en ||| adaptation within ||| 0.333333 0.369196 8.48644e-07 1.99561e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| adapted and updated in ||| 1 0.605812 8.48644e-07 1.20775e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| add , in ||| 0.125 0.605812 8.48644e-07 4.5157e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| add a few words about ||| 0.5 0.0401564 8.48644e-07 4.12717e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| add here ||| 0.0833333 0.0855319 8.48644e-07 2.46008e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| add to ||| 0.00196464 0.0247351 8.48644e-07 2.30488e-06 2.718 ||| 0-1 ||| 509 1.17835e+06 +en ||| added , in ||| 0.5 0.605812 8.48644e-07 3.92646e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| added in all ||| 1 0.605812 8.48644e-07 1.55584e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| added in the ||| 0.2 0.605812 8.48644e-07 2.02132e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| added in ||| 0.130435 0.605812 2.54593e-06 3.2925e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| added to ||| 0.0238095 0.0247351 9.33509e-06 2.00412e-06 2.718 ||| 0-1 ||| 462 1.17835e+06 +en ||| added value , even for the 15 ||| 1 0.0045419 8.48644e-07 1.03379e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| added value , even for the ||| 1 0.0045419 8.48644e-07 4.69904e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| added value , even for ||| 1 0.0045419 8.48644e-07 7.65418e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| added value , even ||| 0.333333 0.0045419 8.48644e-07 9.95899e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| added value for ||| 0.00689655 0.0286209 8.48644e-07 7.20242e-11 2.718 ||| 0-2 ||| 145 1.17835e+06 +en ||| added value in ||| 0.00961538 0.605812 8.48644e-07 2.89081e-09 2.718 ||| 0-2 ||| 104 1.17835e+06 +en ||| added value with regard to guarantees ||| 1 0.0535436 8.48644e-07 8.92018e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| added value with regard to ||| 0.5 0.0535436 8.48644e-07 4.41593e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| added value with regard ||| 0.5 0.0535436 8.48644e-07 4.96964e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| added value with ||| 0.2 0.0535436 8.48644e-07 7.29863e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| addition , in ||| 0.0909091 0.605812 8.48644e-07 5.42986e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| addition rather than ||| 0.333333 0.16257 8.48644e-07 7.84837e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| addition rather ||| 0.333333 0.16257 8.48644e-07 2.56902e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| additionally ||| 0.0041841 0.0068259 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 239 1.17835e+06 +en ||| additives in ||| 0.016129 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| address in ||| 0.0240964 0.605812 1.69729e-06 3.52339e-05 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| address the issue of ||| 0.00757576 0.0116562 8.48644e-07 4.83431e-11 2.718 ||| 0-3 ||| 132 1.17835e+06 +en ||| address ||| 0.000165235 0.0003914 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 6052 1.17835e+06 +en ||| addressed at ||| 0.0178571 0.321886 8.48644e-07 2.14411e-06 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| addressed by ||| 0.00377358 0.0468744 8.48644e-07 4.55981e-07 2.718 ||| 0-1 ||| 265 1.17835e+06 +en ||| addressed here ||| 0.0322581 0.0855319 8.48644e-07 1.60805e-07 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| addressed in the ||| 0.00606061 0.605812 8.48644e-07 1.51954e-06 2.718 ||| 0-1 ||| 165 1.17835e+06 +en ||| addressed in ||| 0.0223464 0.605812 6.78915e-06 2.47515e-05 2.718 ||| 0-1 ||| 358 1.17835e+06 +en ||| addressed to ||| 0.00280899 0.0247351 8.48644e-07 1.5066e-06 2.718 ||| 0-1 ||| 356 1.17835e+06 +en ||| addressed under ||| 0.111111 0.205566 8.48644e-07 3.03087e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| addressed with ||| 0.03125 0.0535436 8.48644e-07 6.24917e-07 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| addresses on ||| 0.333333 0.22993 8.48644e-07 4.15242e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| addressing in ||| 0.2 0.605812 1.69729e-06 8.31206e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| addressing ||| 0.000509684 0.0004037 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1962 1.17835e+06 +en ||| adds in ||| 0.5 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| adequately taken into ||| 0.166667 0.525896 8.48644e-07 3.0469e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| adhered to in ||| 0.1 0.605812 1.69729e-06 3.24161e-07 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| adjusted in ||| 0.0769231 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| adjustment of ||| 0.00609756 0.0116562 8.48644e-07 6.40939e-08 2.718 ||| 0-1 ||| 164 1.17835e+06 +en ||| adjustments : in ||| 1 0.605812 8.48644e-07 6.22111e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| administered in ||| 0.0952381 0.605812 1.69729e-06 2.30891e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| administration and ||| 0.00182149 0.0010182 8.48644e-07 1.86385e-08 2.718 ||| 0-1 ||| 549 1.17835e+06 +en ||| administration in ||| 0.0125 0.605812 8.48644e-07 9.32798e-06 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| admit that ||| 0.00135501 0.0017499 8.48644e-07 2.25763e-08 2.718 ||| 0-1 ||| 738 1.17835e+06 +en ||| admitted in ||| 0.1 0.605812 1.69729e-06 3.83278e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| admitted into ||| 0.222222 0.525896 1.69729e-06 1.8374e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| admittedly a ||| 0.0714286 0.0119363 8.48644e-07 5.40775e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| admittedly in the ||| 1 0.605812 8.48644e-07 6.32195e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| admittedly in ||| 0.25 0.605812 8.48644e-07 1.02977e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| admittedly is , in ||| 1 0.605812 8.48644e-07 3.84885e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| admittedly ||| 0.00508475 0.0119363 2.54593e-06 1.22e-05 2.718 ||| 0-0 ||| 590 1.17835e+06 +en ||| adopt , in ||| 0.142857 0.605812 8.48644e-07 5.72723e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| adopt a position on ||| 0.0153846 0.22993 8.48644e-07 1.2607e-10 2.718 ||| 0-3 ||| 65 1.17835e+06 +en ||| adopt at ||| 0.0416667 0.321886 8.48644e-07 4.16021e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| adopt during ||| 1 0.226251 8.48644e-07 3.00695e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| adopt in ||| 0.0277778 0.605812 1.69729e-06 4.80252e-05 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| adopt the ||| 0.000969932 0.0011669 8.48644e-07 2.97929e-07 2.718 ||| 0-1 ||| 1031 1.17835e+06 +en ||| adopted , at ||| 0.0909091 0.321886 8.48644e-07 9.73167e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| adopted at ||| 0.00468384 0.321886 1.69729e-06 8.16041e-06 2.718 ||| 0-1 ||| 427 1.17835e+06 +en ||| adopted by ||| 0.00155183 0.0468744 4.24322e-06 1.73545e-06 2.718 ||| 0-1 ||| 3222 1.17835e+06 +en ||| adopted for ||| 0.00813008 0.0286209 8.48644e-07 2.34706e-06 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| adopted in 1982 following ||| 0.5 0.605812 8.48644e-07 8.42743e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| adopted in 1982 ||| 0.333333 0.605812 8.48644e-07 6.59423e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| adopted in the ||| 0.00247525 0.605812 8.48644e-07 5.78331e-06 2.718 ||| 0-1 ||| 404 1.17835e+06 +en ||| adopted in ||| 0.0201497 0.605812 2.97026e-05 9.42033e-05 2.718 ||| 0-1 ||| 1737 1.17835e+06 +en ||| adopted measures on ||| 0.1 0.22993 8.48644e-07 3.50527e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| adopted more widely in ||| 1 0.605812 8.48644e-07 5.95916e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| adopted on ||| 0.00485437 0.22993 1.69729e-06 1.69419e-05 2.718 ||| 0-1 ||| 412 1.17835e+06 +en ||| adopted recently ||| 0.0434783 0.0095755 8.48644e-07 1.24848e-08 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| adopted to ||| 0.00990099 0.0247351 8.48644e-07 5.73409e-06 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| adopted towards ||| 0.08 0.0616136 1.69729e-06 2.03225e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| adopted with ||| 0.0114943 0.0535436 8.48644e-07 2.37842e-06 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| adoption at ||| 0.0185185 0.321886 8.48644e-07 1.84409e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| adoption of ||| 0.000286779 0.0116562 8.48644e-07 6.28666e-07 2.718 ||| 0-1 ||| 3487 1.17835e+06 +en ||| advance , in ||| 0.166667 0.605812 8.48644e-07 1.94396e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| advance along ||| 0.111111 0.155535 8.48644e-07 2.80811e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| advance as ||| 0.0714286 0.066968 8.48644e-07 6.34973e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| advance in the ||| 0.0833333 0.605812 8.48644e-07 1.00074e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| advance in ||| 0.015873 0.605812 8.48644e-07 1.63009e-05 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| advancing in ||| 1 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| advantage for ||| 0.0178571 0.0286209 8.48644e-07 5.83314e-07 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| advantage in ||| 0.0153846 0.605812 8.48644e-07 2.34123e-05 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| advantage of ||| 0.00492005 0.0116562 3.39458e-06 6.91396e-07 2.718 ||| 0-1 ||| 813 1.17835e+06 +en ||| advantageous in ||| 0.0833333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| advantages for ||| 0.00980392 0.0286209 8.48644e-07 8.74395e-08 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| advertised on ||| 0.4 0.22993 1.69729e-06 1.82706e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| advertising especially in ||| 1 0.605812 8.48644e-07 3.18897e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| advertising in ||| 0.0277778 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| advertising operates on ||| 0.5 0.22993 8.48644e-07 8.49917e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| advisable , in ||| 1 0.605812 8.48644e-07 1.76223e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| advise on ||| 0.0666667 0.22993 8.48644e-07 4.81681e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| advised to ||| 0.047619 0.104 2.54593e-06 3.14558e-06 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| advised us ||| 0.166667 0.104 8.48644e-07 1.0203e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| advised ||| 0.0251799 0.104 5.94051e-06 3.54e-05 2.718 ||| 0-0 ||| 278 1.17835e+06 +en ||| advocate in ||| 0.166667 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| advocated in ||| 0.0512821 0.605812 3.39458e-06 3.83278e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| advocates in ||| 0.333333 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| advocates within ||| 0.166667 0.369196 8.48644e-07 6.76289e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| aeroplane with an exemption by another airline ||| 1 0.0535436 8.48644e-07 5.98586e-27 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aeroplane with an exemption by another ||| 1 0.0535436 8.48644e-07 8.80273e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aeroplane with an exemption by ||| 1 0.0535436 8.48644e-07 3.65107e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aeroplane with an exemption ||| 1 0.0535436 8.48644e-07 6.95429e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aeroplane with an ||| 1 0.0535436 8.48644e-07 1.14005e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aeroplane with ||| 0.333333 0.0535436 8.48644e-07 2.56496e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| affairs - in a ||| 1 0.605812 8.48644e-07 9.45056e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| affairs - in ||| 1 0.605812 8.48644e-07 2.13207e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| affairs as ||| 0.0625 0.066968 8.48644e-07 2.20172e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| affairs at ||| 0.1 0.321886 8.48644e-07 4.89624e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| affairs in as ||| 1 0.605812 8.48644e-07 5.76773e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| affairs in ||| 0.138889 0.605812 8.48644e-06 5.6522e-05 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| affairs is at ||| 1 0.321886 8.48644e-07 1.53454e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| affairs with ||| 0.0909091 0.0535436 8.48644e-07 1.42705e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| affect them ||| 0.0123457 0.0481375 8.48644e-07 4.60032e-07 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| affect whether ||| 0.333333 0.0481375 8.48644e-07 4.5053e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| affect ||| 0.0153568 0.0481375 2.88539e-05 0.0001715 2.718 ||| 0-0 ||| 2214 1.17835e+06 +en ||| affected , who suffered on ||| 0.5 0.22993 8.48644e-07 1.98965e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| affected by ||| 0.0033557 0.0468744 5.94051e-06 5.66573e-07 2.718 ||| 0-1 ||| 2086 1.17835e+06 +en ||| affected in ||| 0.0210526 0.605812 1.69729e-06 3.07546e-05 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| affected to form ||| 0.25 0.0247351 8.48644e-07 8.5214e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| affected to ||| 0.027027 0.0247351 8.48644e-07 1.87201e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| affecting ||| 0.0141988 0.0223616 1.78215e-05 5.58e-05 2.718 ||| 0-0 ||| 1479 1.17835e+06 +en ||| affects them ||| 0.0384615 0.0203793 8.48644e-07 1.31438e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| affects ||| 0.00451613 0.0203793 5.94051e-06 4.9e-05 2.718 ||| 0-0 ||| 1550 1.17835e+06 +en ||| afford them in ||| 0.5 0.605812 8.48644e-07 3.4807e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| afford to ||| 0.00209205 0.0247351 8.48644e-07 7.89843e-07 2.718 ||| 0-1 ||| 478 1.17835e+06 +en ||| affordable at ||| 0.5 0.321886 8.48644e-07 1.00005e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| afforded by ||| 0.0162602 0.0468744 1.69729e-06 1.22502e-07 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| afforded when ||| 0.5 0.142731 8.48644e-07 8.57275e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| afoot in Russia to ||| 1 0.605812 8.48644e-07 2.31508e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| afoot in Russia ||| 1 0.605812 8.48644e-07 2.60537e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| afoot in ||| 1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| afoot ||| 0.0344828 0.171429 8.48644e-07 8.2e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| aforementioned signals will be used as ||| 1 0.066968 8.48644e-07 6.62046e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| afraid of ||| 0.0042735 0.0116562 8.48644e-07 3.13651e-07 2.718 ||| 0-1 ||| 234 1.17835e+06 +en ||| after Alexander ||| 1 0.0144723 8.48644e-07 3.7156e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| after all , a ||| 0.0149254 0.0144723 8.48644e-07 6.62936e-09 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| after all , at liberty to ||| 0.5 0.321886 8.48644e-07 5.48257e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| after all , at liberty ||| 0.5 0.321886 8.48644e-07 6.17002e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| after all , at ||| 0.125 0.321886 8.48644e-07 6.10893e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| after all , it is ||| 0.00909091 0.0144723 8.48644e-07 8.33564e-11 2.718 ||| 0-0 ||| 110 1.17835e+06 +en ||| after all , it ||| 0.0166667 0.0144723 8.48644e-07 2.65965e-09 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| after all , ||| 0.00343879 0.0144723 8.48644e-06 1.4956e-07 2.718 ||| 0-0 ||| 2908 1.17835e+06 +en ||| after all ||| 0.00468384 0.0144723 1.52756e-05 1.25412e-06 2.718 ||| 0-0 ||| 3843 1.17835e+06 +en ||| after another in ||| 1 0.605812 8.48644e-07 3.01719e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| after another ||| 0.00826446 0.0009111 8.48644e-07 3.3062e-09 2.718 ||| 0-1 ||| 121 1.17835e+06 +en ||| after case , for ||| 1 0.0286209 8.48644e-07 3.97816e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| after clicking on ||| 1 0.22993 8.48644e-07 9.00245e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| after taking up ||| 0.166667 0.0144723 8.48644e-07 3.84687e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| after taking ||| 0.03125 0.0144723 8.48644e-07 1.12795e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| after that under ||| 1 0.110019 8.48644e-07 2.52447e-08 2.718 ||| 0-0 0-2 ||| 1 1.17835e+06 +en ||| after the directive enters into force ||| 0.5 0.0144723 8.48644e-07 1.3663e-21 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| after the directive enters into ||| 0.5 0.0144723 8.48644e-07 8.02763e-18 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| after the directive enters ||| 0.333333 0.0144723 8.48644e-07 7.81887e-15 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| after the directive ||| 0.0909091 0.0144723 8.48644e-07 1.81834e-09 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| after the other ||| 0.02 0.0144723 8.48644e-07 2.11081e-08 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| after the ||| 0.000503694 0.0144723 2.54593e-06 1.62934e-05 2.718 ||| 0-0 ||| 5956 1.17835e+06 +en ||| after what has ||| 0.0909091 0.0144723 8.48644e-07 1.91684e-09 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| after what ||| 0.0114943 0.0144723 8.48644e-07 3.72383e-07 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| after you have ||| 0.111111 0.0144723 8.48644e-07 1.02483e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| after you ||| 0.047619 0.0144723 8.48644e-07 8.56897e-07 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| after ||| 0.00751531 0.0144723 0.000219799 0.0002654 2.718 ||| 0-0 ||| 34463 1.17835e+06 +en ||| afternoon in ||| 0.0238095 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| afterwards in ||| 0.133333 0.605812 1.69729e-06 5.63373e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| again , as ||| 0.015873 0.066968 8.48644e-07 1.24054e-06 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| again , in ||| 0.107143 0.605812 5.09187e-06 3.18467e-05 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| again , on ||| 0.037037 0.22993 8.48644e-07 5.72743e-06 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| again , where the ||| 1 0.247783 8.48644e-07 3.60583e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| again , where ||| 1 0.247783 8.48644e-07 5.87347e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| again , with ||| 0.142857 0.0535436 8.48644e-07 8.04056e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| again amongst ||| 0.5 0.050508 8.48644e-07 6.84707e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| again as a matter of fact in ||| 1 0.605812 8.48644e-07 1.99571e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| again at the time ||| 0.333333 0.321886 8.48644e-07 2.33152e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| again at the ||| 0.0169492 0.321886 8.48644e-07 1.42019e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| again at ||| 0.0376344 0.321886 5.94051e-06 2.31332e-05 2.718 ||| 0-1 ||| 186 1.17835e+06 +en ||| again been taking ||| 1 0.0153333 8.48644e-07 3.32528e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| again during ||| 0.1 0.226251 8.48644e-07 1.67204e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| again faced with ||| 0.2 0.0535436 8.48644e-07 4.2679e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| again get to grips with ||| 1 0.0535436 8.48644e-07 4.53142e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| again in a ||| 0.04 0.605812 8.48644e-07 1.18371e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| again in the ||| 0.0118343 0.605812 1.69729e-06 1.63946e-05 2.718 ||| 0-1 ||| 169 1.17835e+06 +en ||| again in ||| 0.131387 0.605812 6.11024e-05 0.000267048 2.718 ||| 0-1 ||| 548 1.17835e+06 +en ||| again of course in ||| 1 0.605812 8.48644e-07 1.83171e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| again on ||| 0.0364583 0.22993 5.94051e-06 4.80269e-05 2.718 ||| 0-1 ||| 192 1.17835e+06 +en ||| again the answer ||| 0.5 0.0011669 8.48644e-07 1.24084e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| again the ||| 0.0060241 0.0011669 8.48644e-07 1.65666e-06 2.718 ||| 0-1 ||| 166 1.17835e+06 +en ||| again through ||| 0.0555556 0.0366102 8.48644e-07 5.43833e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| again to ||| 0.0117302 0.0247351 3.39458e-06 1.6255e-05 2.718 ||| 0-1 ||| 341 1.17835e+06 +en ||| again try to ||| 0.25 0.0247351 8.48644e-07 2.50327e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| again when ||| 0.030303 0.142731 8.48644e-07 3.44279e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| again with ||| 0.00740741 0.0535436 8.48644e-07 6.74234e-06 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| again within the space of a ||| 1 0.369196 8.48644e-07 3.92676e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| again within the space of ||| 1 0.369196 8.48644e-07 8.85886e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| again within the space ||| 1 0.369196 8.48644e-07 1.62954e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| again within the ||| 0.25 0.369196 8.48644e-07 3.9361e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| again within ||| 0.428571 0.369196 2.54593e-06 6.41144e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| against , ||| 0.00316456 0.153982 8.48644e-07 0.000691546 2.718 ||| 0-0 ||| 316 1.17835e+06 +en ||| against . ||| 0.0019084 0.153982 8.48644e-07 1.75649e-05 2.718 ||| 0-0 ||| 524 1.17835e+06 +en ||| against Racism into ||| 1 0.525896 8.48644e-07 2.11278e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| against Turkish membership ||| 0.333333 0.153982 8.48644e-07 4.24798e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| against Turkish ||| 0.333333 0.153982 8.48644e-07 1.73387e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| against a ||| 0.00586854 0.153982 4.24322e-06 0.000257041 2.718 ||| 0-0 ||| 852 1.17835e+06 +en ||| against all odds . she has made ||| 1 0.153982 8.48644e-07 2.29003e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| against all odds . she has ||| 1 0.153982 8.48644e-07 1.0932e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| against all odds . she ||| 1 0.153982 8.48644e-07 2.12375e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| against all odds . ||| 1 0.153982 8.48644e-07 7.47009e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| against all odds ||| 0.111111 0.153982 8.48644e-07 2.46619e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| against all ||| 0.00511509 0.153982 1.69729e-06 2.74021e-05 2.718 ||| 0-0 ||| 391 1.17835e+06 +en ||| against anybody from Austria referred ||| 0.5 0.153982 8.48644e-07 7.34263e-20 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| against anybody from Austria ||| 0.5 0.153982 8.48644e-07 7.67255e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| against anybody from ||| 0.5 0.153982 8.48644e-07 7.37745e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| against anybody ||| 0.0833333 0.153982 8.48644e-07 4.58113e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| against corruption ||| 0.00502513 0.153982 1.69729e-06 3.94325e-08 2.718 ||| 0-0 ||| 398 1.17835e+06 +en ||| against culturally high ||| 0.5 0.153982 8.48644e-07 1.21209e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| against culturally ||| 0.5 0.153982 8.48644e-07 8.11846e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| against each other in ||| 0.6 0.605812 2.54593e-06 4.0067e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| against each other on ||| 0.5 0.22993 8.48644e-07 7.20579e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| against each ||| 0.011236 0.153982 8.48644e-07 1.62775e-06 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| against fraud , in ||| 1 0.605812 8.48644e-07 2.03664e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| against him ||| 0.00862069 0.153982 8.48644e-07 1.85913e-06 2.718 ||| 0-0 ||| 116 1.17835e+06 +en ||| against in ||| 0.0166667 0.605812 8.48644e-07 0.000110181 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| against it ||| 0.00126103 0.0080472 8.48644e-07 6.58035e-07 2.718 ||| 0-1 ||| 793 1.17835e+06 +en ||| against one another on ||| 1 0.22993 8.48644e-07 1.99125e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| against one ||| 0.0131579 0.153982 8.48644e-07 2.41698e-05 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| against peaceful demonstrators ||| 0.0666667 0.153982 8.48644e-07 1.41493e-14 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| against peaceful ||| 0.2 0.153982 8.48644e-07 3.53733e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| against precisely ||| 0.333333 0.153982 8.48644e-07 5.71772e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| against real ||| 0.142857 0.153982 8.48644e-07 1.04322e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| against taking such ||| 1 0.153982 8.48644e-07 5.09887e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| against taking ||| 0.0625 0.153982 8.48644e-07 2.46453e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| against that ||| 0.00746269 0.153982 1.69729e-06 9.75468e-05 2.718 ||| 0-0 ||| 268 1.17835e+06 +en ||| against the background of ||| 0.00510204 0.153982 8.48644e-07 5.14812e-10 2.718 ||| 0-0 ||| 196 1.17835e+06 +en ||| against the background ||| 0.00448431 0.153982 8.48644e-07 9.46973e-09 2.718 ||| 0-0 ||| 223 1.17835e+06 +en ||| against the ||| 0.00177445 0.153982 1.52756e-05 0.000356005 2.718 ||| 0-0 ||| 10144 1.17835e+06 +en ||| against their will in ||| 0.333333 0.605812 8.48644e-07 1.10485e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| against them ||| 0.00911854 0.153982 2.54593e-06 1.5555e-05 2.718 ||| 0-0 ||| 329 1.17835e+06 +en ||| against this on ||| 0.5 0.22993 8.48644e-07 1.28035e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| against this ||| 0.00182083 0.153982 4.24322e-06 3.7469e-05 2.718 ||| 0-0 ||| 2746 1.17835e+06 +en ||| against those ||| 0.00301205 0.153982 8.48644e-07 4.19898e-06 2.718 ||| 0-0 ||| 332 1.17835e+06 +en ||| against us in ||| 0.25 0.605812 8.48644e-07 3.17564e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| against us ||| 0.0133333 0.153982 8.48644e-07 1.67136e-05 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| against violence ||| 0.0045045 0.153982 8.48644e-07 1.31635e-07 2.718 ||| 0-0 ||| 222 1.17835e+06 +en ||| against watch ||| 1 0.153982 8.48644e-07 1.0438e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| against when ||| 0.2 0.153982 8.48644e-07 2.89887e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| against women ||| 0.000708717 0.153982 8.48644e-07 6.88909e-07 2.718 ||| 0-0 ||| 1411 1.17835e+06 +en ||| against ||| 0.0141963 0.153982 0.000604235 0.0057989 2.718 ||| 0-0 ||| 50154 1.17835e+06 +en ||| age limits under ||| 0.25 0.205566 8.48644e-07 9.38946e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| agency in ||| 0.0327869 0.605812 1.69729e-06 7.48085e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| agenda , in ||| 0.2 0.605812 8.48644e-07 5.46841e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| agenda , on a new ||| 1 0.22993 8.48644e-07 2.60553e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| agenda , on a ||| 1 0.22993 8.48644e-07 4.35926e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| agenda , on ||| 0.333333 0.22993 8.48644e-07 9.83458e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| agenda as a matter of ||| 0.333333 0.066968 8.48644e-07 4.46566e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| agenda as a matter ||| 0.333333 0.066968 8.48644e-07 8.21437e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| agenda as a ||| 0.0909091 0.066968 8.48644e-07 7.91747e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| agenda as ||| 0.0113636 0.066968 1.69729e-06 1.7862e-06 2.718 ||| 0-1 ||| 176 1.17835e+06 +en ||| agenda during ||| 0.0769231 0.226251 8.48644e-07 2.87106e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| agenda for ||| 0.00360577 0.0286209 2.54593e-06 1.14247e-06 2.718 ||| 0-1 ||| 832 1.17835e+06 +en ||| agenda in ||| 0.0119048 0.605812 1.69729e-06 4.58549e-05 2.718 ||| 0-1 ||| 168 1.17835e+06 +en ||| agenda of ||| 0.00353982 0.0116562 1.69729e-06 1.35415e-06 2.718 ||| 0-1 ||| 565 1.17835e+06 +en ||| agenda within ||| 0.166667 0.369196 8.48644e-07 1.10091e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| agenda ||| 0.00010175 0.0001728 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 9828 1.17835e+06 +en ||| ago , in ||| 0.142857 0.605812 8.48644e-07 6.06316e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| ago , is still relevant today ||| 1 0.0398284 8.48644e-07 4.02338e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| ago as in ||| 1 0.605812 8.48644e-07 5.18813e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ago as the year ||| 1 0.066968 8.48644e-07 3.03232e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ago as the ||| 0.166667 0.066968 8.48644e-07 1.21584e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| ago as ||| 0.141304 0.066968 1.10324e-05 1.98047e-06 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| ago at ||| 0.5 0.321886 8.48644e-07 4.40422e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ago in Brussels ||| 0.5 0.605812 8.48644e-07 5.69432e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ago in ||| 0.129032 0.605812 3.39458e-06 5.08421e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| agree , ||| 0.00375 0.071674 2.54593e-06 0.000152312 2.718 ||| 0-0 ||| 800 1.17835e+06 +en ||| agree about the ||| 0.0212766 0.0401564 8.48644e-07 2.79944e-08 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| agree about ||| 0.011236 0.0401564 8.48644e-07 4.55997e-07 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| agree during ||| 0.333333 0.148963 8.48644e-07 3.69277e-06 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| agree in ||| 0.0162602 0.605812 1.69729e-06 7.34694e-05 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| agree on the idea ||| 0.333333 0.22993 8.48644e-07 1.81864e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| agree on the ||| 0.00152672 0.22993 8.48644e-07 8.1117e-07 2.718 ||| 0-1 ||| 655 1.17835e+06 +en ||| agree on ||| 0.00443787 0.22993 7.6378e-06 1.3213e-05 2.718 ||| 0-1 ||| 2028 1.17835e+06 +en ||| agree with him ||| 0.00268097 0.0535436 8.48644e-07 5.94691e-10 2.718 ||| 0-1 ||| 373 1.17835e+06 +en ||| agree with me ||| 0.0031348 0.0535436 8.48644e-07 1.11685e-09 2.718 ||| 0-1 ||| 319 1.17835e+06 +en ||| agree with the ||| 0.000412541 0.0535436 1.69729e-06 1.13878e-07 2.718 ||| 0-1 ||| 4848 1.17835e+06 +en ||| agree with ||| 0.000930088 0.0535436 1.01837e-05 1.85493e-06 2.718 ||| 0-1 ||| 12902 1.17835e+06 +en ||| agree ||| 0.00176274 0.071674 3.98863e-05 0.0012772 2.718 ||| 0-0 ||| 26663 1.17835e+06 +en ||| agreed at ||| 0.00699301 0.321886 1.69729e-06 3.12416e-06 2.718 ||| 0-1 ||| 286 1.17835e+06 +en ||| agreed in connection with cohesion . ||| 1 0.605812 8.48644e-07 1.65226e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| agreed in connection with cohesion ||| 1 0.605812 8.48644e-07 5.45481e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| agreed in connection with ||| 1 0.605812 8.48644e-07 3.51924e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| agreed in connection ||| 1 0.605812 8.48644e-07 5.50353e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| agreed in ||| 0.0159011 0.605812 7.6378e-06 3.60651e-05 2.718 ||| 0-1 ||| 566 1.17835e+06 +en ||| agreed last year in Dublin ||| 1 0.605812 8.48644e-07 4.32174e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| agreed last year in ||| 0.5 0.605812 8.48644e-07 1.96443e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| agreed on the fact ||| 0.0625 0.22993 8.48644e-07 1.16642e-09 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| agreed on the ||| 0.00766284 0.22993 1.69729e-06 3.98192e-07 2.718 ||| 0-1 ||| 261 1.17835e+06 +en ||| agreed on ||| 0.00678952 0.22993 5.94051e-06 6.48608e-06 2.718 ||| 0-1 ||| 1031 1.17835e+06 +en ||| agreed to in ||| 0.125 0.605812 8.48644e-07 3.20468e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| agreed upon ||| 0.0101523 0.114601 1.69729e-06 6.90326e-08 2.718 ||| 0-1 ||| 197 1.17835e+06 +en ||| agreed ||| 0.0005392 0.0262279 4.24322e-06 0.0001871 2.718 ||| 0-0 ||| 9273 1.17835e+06 +en ||| agreeing to them ||| 0.142857 0.0247351 8.48644e-07 7.31358e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| agreeing to ||| 0.00495049 0.0247351 8.48644e-07 2.72651e-07 2.718 ||| 0-1 ||| 202 1.17835e+06 +en ||| agreement along ||| 0.5 0.155535 8.48644e-07 1.46611e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| agreement in ||| 0.00281294 0.605812 1.69729e-06 8.51063e-05 2.718 ||| 0-1 ||| 711 1.17835e+06 +en ||| agreement into ||| 0.0714286 0.525896 8.48644e-07 4.0799e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| agreement is in ||| 0.0909091 0.605812 8.48644e-07 2.66732e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| agreement is on ||| 0.333333 0.22993 8.48644e-07 4.79701e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| agreement of ||| 0.00503778 0.0116562 1.69729e-06 2.5133e-06 2.718 ||| 0-1 ||| 397 1.17835e+06 +en ||| agreement on ||| 0.00185644 0.22993 5.09187e-06 1.53058e-05 2.718 ||| 0-1 ||| 3232 1.17835e+06 +en ||| agreement over ||| 0.0227273 0.157937 8.48644e-07 7.38527e-07 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| agreement today on the ||| 1 0.22993 8.48644e-07 4.24065e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| agreement today on ||| 0.25 0.22993 8.48644e-07 6.90752e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| agreement whereby ||| 0.0769231 0.0882153 8.48644e-07 3.24737e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| agreement with South Korea is ||| 1 0.0535436 8.48644e-07 8.87321e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| agreement with South Korea ||| 0.1 0.0535436 8.48644e-07 2.83117e-16 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| agreement with South ||| 0.333333 0.0535436 8.48644e-07 4.64127e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| agreement with ||| 0.000405515 0.0535436 8.48644e-07 2.14874e-06 2.718 ||| 0-1 ||| 2466 1.17835e+06 +en ||| agreement within ||| 0.0131579 0.369196 8.48644e-07 2.04328e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| agreements , in ||| 0.0833333 0.605812 8.48644e-07 2.04308e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| agreements and ||| 0.00293255 0.0010182 8.48644e-07 3.42322e-08 2.718 ||| 0-1 ||| 341 1.17835e+06 +en ||| agreements on ||| 0.00309598 0.22993 8.48644e-07 3.0811e-06 2.718 ||| 0-1 ||| 323 1.17835e+06 +en ||| agreements to ||| 0.00819672 0.0247351 8.48644e-07 1.04282e-06 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| agrees , ||| 0.015625 0.106724 8.48644e-07 1.99632e-05 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| agrees with ||| 0.00443787 0.0535436 2.54593e-06 1.13091e-07 2.718 ||| 0-1 ||| 676 1.17835e+06 +en ||| agrees ||| 0.00265076 0.106724 3.39458e-06 0.0001674 2.718 ||| 0-0 ||| 1509 1.17835e+06 +en ||| agricultural output at EU level ||| 1 0.321886 8.48644e-07 2.63445e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| agricultural output at EU ||| 1 0.321886 8.48644e-07 3.07979e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| agricultural output at ||| 1 0.321886 8.48644e-07 6.22431e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| agricultural policy cannot operate two policies in ||| 1 0.605812 8.48644e-07 1.20637e-24 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| agricultural products in ||| 0.0232558 0.605812 8.48644e-07 1.86818e-09 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| agriculture in ||| 0.002849 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 351 1.17835e+06 +en ||| aground under ||| 1 0.205566 8.48644e-07 6.22006e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ahead and ||| 0.00704225 0.0073829 8.48644e-07 3.24421e-07 2.718 ||| 0-0 ||| 142 1.17835e+06 +en ||| ahead as ||| 0.12 0.066968 2.54593e-06 1.96068e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| ahead for ||| 0.0344828 0.0286209 8.48644e-07 1.25407e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| ahead in the light ||| 1 0.605812 8.48644e-07 5.3706e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ahead in the ||| 0.0526316 0.605812 8.48644e-07 3.0901e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| ahead in ||| 0.0649351 0.605812 4.24322e-06 5.03341e-05 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| ahead of him in ||| 1 0.605812 8.48644e-07 8.77279e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ahead of ||| 0.00409277 0.0116562 2.54593e-06 1.48643e-06 2.718 ||| 0-1 ||| 733 1.17835e+06 +en ||| ahead to ||| 0.0172414 0.0247351 8.48644e-07 3.0638e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| ahead when ||| 0.142857 0.142731 8.48644e-07 6.4891e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| ahead with extending ||| 1 0.0535436 8.48644e-07 2.60518e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ahead with ||| 0.0178042 0.0535436 5.09187e-06 1.27082e-06 2.718 ||| 0-1 ||| 337 1.17835e+06 +en ||| ahead ||| 0.00234283 0.0073829 5.09187e-06 2.59e-05 2.718 ||| 0-0 ||| 2561 1.17835e+06 +en ||| aid by ||| 0.0333333 0.0468744 8.48644e-07 1.11103e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| aid in ||| 0.0161943 0.605812 3.39458e-06 6.03086e-05 2.718 ||| 0-1 ||| 247 1.17835e+06 +en ||| aid on ||| 0.0454545 0.22993 1.69729e-06 1.08461e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| aids to ||| 0.037037 0.0247351 8.48644e-07 8.15141e-08 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| aim , in ||| 0.222222 0.605812 1.69729e-06 7.57207e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| aim at ||| 0.0163934 0.321886 2.54593e-06 5.50028e-06 2.718 ||| 0-1 ||| 183 1.17835e+06 +en ||| aim in ||| 0.0104167 0.605812 8.48644e-07 6.34949e-05 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| aim of politics is ||| 1 0.0116562 8.48644e-07 5.28906e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aim of politics ||| 0.5 0.0116562 8.48644e-07 1.68758e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| aim of ||| 0.00123686 0.0116562 3.39458e-06 1.87509e-06 2.718 ||| 0-1 ||| 3234 1.17835e+06 +en ||| aim to achieve ||| 0.0227273 0.0127368 8.48644e-07 2.89867e-11 2.718 ||| 0-1 0-2 ||| 44 1.17835e+06 +en ||| aim to reduce road traffic in a ||| 1 0.605812 8.48644e-07 2.4138e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| aim to reduce road traffic in ||| 1 0.605812 8.48644e-07 5.44558e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| aim to solve ||| 0.333333 0.0247351 8.48644e-07 5.99058e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| aim to ||| 0.00116822 0.0247351 8.48644e-07 3.86489e-06 2.718 ||| 0-1 ||| 856 1.17835e+06 +en ||| aim today - ||| 1 0.0398284 8.48644e-07 6.25716e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aim today ||| 0.333333 0.0398284 8.48644e-07 1.6588e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| aimed at holding ||| 0.5 0.321886 8.48644e-07 1.67086e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| aimed at supplementing ||| 0.2 0.321886 8.48644e-07 1.9461e-12 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| aimed at that region ||| 0.25 0.321886 8.48644e-07 4.57843e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| aimed at that ||| 0.142857 0.321886 8.48644e-07 4.67664e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| aimed at ||| 0.00388385 0.321886 1.78215e-05 2.78014e-06 2.718 ||| 0-1 ||| 5407 1.17835e+06 +en ||| aimed high and called ||| 0.5 0.0004659 8.48644e-07 7.26248e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| aimed high and ||| 0.5 0.0004659 8.48644e-07 4.17864e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| aimed high ||| 0.5 0.0004659 8.48644e-07 3.336e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| aimed in ||| 0.117647 0.605812 1.69729e-06 3.20938e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| aiming at ||| 0.00515464 0.321886 8.48644e-07 5.76029e-07 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| aims in ||| 0.025 0.605812 8.48644e-07 1.84251e-05 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| air in ||| 0.0454545 0.605812 8.48644e-07 2.54441e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| air into ||| 0.142857 0.525896 8.48644e-07 1.21977e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| air transport sector in the ||| 0.142857 0.605812 8.48644e-07 2.98487e-14 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| air transport sector in ||| 0.1 0.605812 8.48644e-07 4.862e-13 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| aircraft carriers in ||| 1 0.605812 8.48644e-07 2.86766e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| aircraft ||| 0.00108992 0.0014479 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 1835 1.17835e+06 +en ||| airline in a ||| 1 0.605812 8.48644e-07 1.39188e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| airline in ||| 0.125 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| airlines in ||| 0.0285714 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| airport in ||| 0.0416667 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| albeit in a ||| 0.0322581 0.605812 8.48644e-07 4.27798e-07 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| albeit in ||| 0.050505 0.605812 4.24322e-06 9.65122e-06 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| albeit under rather ||| 1 0.205566 8.48644e-07 3.61871e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| albeit under ||| 0.0769231 0.205566 8.48644e-07 1.18181e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| albeit with ||| 0.00729927 0.0535436 8.48644e-07 2.43671e-07 2.718 ||| 0-1 ||| 137 1.17835e+06 +en ||| albeit within ||| 0.0625 0.369196 8.48644e-07 2.31712e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| alcohol in ||| 0.0238095 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| alert to the ||| 0.0714286 0.012951 2.54593e-06 5.47549e-10 2.718 ||| 0-1 0-2 ||| 42 1.17835e+06 +en ||| alert to ||| 0.010989 0.0247351 8.48644e-07 1.91136e-07 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| alerted in ||| 0.5 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| alia in ||| 0.333333 0.605812 8.48644e-07 7.66557e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| alia on ||| 0.142857 0.22993 8.48644e-07 1.3786e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| alia within ||| 1 0.369196 8.48644e-07 1.84039e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| alike in ||| 0.333333 0.605812 8.48644e-07 1.22834e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| alive to ||| 0.111111 0.0247351 8.48644e-07 2.22056e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| all , at liberty to ||| 0.5 0.321886 8.48644e-07 2.02309e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| all , at liberty ||| 0.5 0.321886 8.48644e-07 2.27676e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| all , at ||| 0.0810811 0.321886 2.54593e-06 2.25422e-05 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| all , in those ||| 1 0.605812 8.48644e-07 1.88429e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| all , in ||| 0.0215517 0.605812 4.24322e-06 0.000260226 2.718 ||| 0-2 ||| 232 1.17835e+06 +en ||| all , like to ||| 0.2 0.0247351 8.48644e-07 2.81298e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| all , of ||| 0.00806452 0.0116562 8.48644e-07 7.68481e-06 2.718 ||| 0-2 ||| 124 1.17835e+06 +en ||| all , on ||| 0.0366972 0.22993 3.39458e-06 4.67999e-05 2.718 ||| 0-2 ||| 109 1.17835e+06 +en ||| all - in ||| 0.125 0.605812 8.48644e-07 8.2311e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| all . ||| 0.000386997 6.3e-05 8.48644e-07 3.82757e-07 2.718 ||| 0-1 ||| 2584 1.17835e+06 +en ||| all I have to ||| 0.03125 0.0247351 8.48644e-07 1.12365e-08 2.718 ||| 0-3 ||| 32 1.17835e+06 +en ||| all I learnt at ||| 1 0.321886 8.48644e-07 1.35044e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| all about in ||| 1 0.605812 1.69729e-06 3.08614e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| all about ||| 0.0226244 0.0401564 8.48644e-06 1.35435e-05 2.718 ||| 0-1 ||| 442 1.17835e+06 +en ||| all across ||| 0.030303 0.274879 8.48644e-07 9.70739e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| all agree ||| 0.00332226 0.071674 8.48644e-07 6.03528e-06 2.718 ||| 0-1 ||| 301 1.17835e+06 +en ||| all agrees with ||| 1 0.0535436 8.48644e-07 5.34402e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| all along ||| 0.0105263 0.155535 8.48644e-07 3.75906e-06 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| all and in a determined manner ||| 1 0.605812 8.48644e-07 8.07981e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| all and in a determined ||| 1 0.605812 8.48644e-07 4.14349e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| all and in a ||| 1 0.605812 8.48644e-07 1.21155e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| all and in ||| 0.0833333 0.605812 8.48644e-07 2.73328e-05 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| all around us in ||| 1 0.605812 8.48644e-07 8.37728e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| all around ||| 0.00787402 0.159384 8.48644e-07 5.45358e-06 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| all as ||| 0.0140845 0.066968 8.48644e-07 8.5e-05 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| all aspects of ||| 0.00268097 0.0116562 8.48644e-07 4.54304e-09 2.718 ||| 0-2 ||| 373 1.17835e+06 +en ||| all at ||| 0.0862069 0.321886 8.48644e-06 0.000189025 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| all aware of ||| 0.027027 0.0116562 8.48644e-07 8.95075e-09 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| all belong on ||| 1 0.22993 8.48644e-07 1.13022e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| all by ||| 0.021978 0.0468744 1.69729e-06 4.01995e-05 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| all coming at ||| 1 0.321886 8.48644e-07 3.67276e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| all confidence in ||| 0.25 0.605812 8.48644e-07 6.74269e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| all countries in ||| 0.0172414 0.605812 8.48644e-07 8.28544e-07 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| all countries will become members at ||| 1 0.321886 8.48644e-07 2.61661e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| all depends on ||| 0.0714286 0.22993 8.48644e-07 5.9258e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| all due respect to ||| 0.00990099 0.0247351 8.48644e-07 1.58817e-11 2.718 ||| 0-3 ||| 101 1.17835e+06 +en ||| all during ||| 0.166667 0.226251 8.48644e-07 1.36625e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| all else on ||| 0.333333 0.22993 8.48644e-07 4.63076e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| all for the ||| 0.0121951 0.0286209 8.48644e-07 3.33767e-06 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| all for ||| 0.00692841 0.0286209 2.54593e-06 5.43667e-05 2.718 ||| 0-1 ||| 433 1.17835e+06 +en ||| all from ||| 0.0178571 0.0308834 8.48644e-07 1.79806e-05 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| all going to be able to regard ||| 1 0.0247351 8.48644e-07 1.04061e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| all going to be able to ||| 1 0.0247351 8.48644e-07 1.52829e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| all going to be able ||| 1 0.0247351 8.48644e-07 1.71992e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| all going to be ||| 0.5 0.0247351 8.48644e-07 2.06003e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| all going to ||| 0.5 0.0247351 8.48644e-07 1.1367e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| all happy with ||| 0.111111 0.0535436 8.48644e-07 3.47086e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| all if ||| 0.0222222 0.0178573 8.48644e-07 5.4791e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| all in a ||| 0.0952381 0.605812 1.69729e-06 9.67233e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| all in all , I ||| 0.0625 0.605812 8.48644e-07 8.69808e-09 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| all in all , ||| 0.00323625 0.605812 8.48644e-07 1.22967e-06 2.718 ||| 0-1 ||| 309 1.17835e+06 +en ||| all in all ||| 0.00248756 0.605812 8.48644e-07 1.03113e-05 2.718 ||| 0-1 ||| 402 1.17835e+06 +en ||| all in relation to ||| 0.0769231 0.605812 8.48644e-07 4.71753e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| all in relation ||| 0.111111 0.605812 8.48644e-07 5.30905e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| all in the ||| 0.0144928 0.605812 2.54593e-06 0.000133963 2.718 ||| 0-1 ||| 207 1.17835e+06 +en ||| all in ||| 0.279891 0.605812 0.000262231 0.0021821 2.718 ||| 0-1 ||| 1104 1.17835e+06 +en ||| all investment in ||| 0.25 0.605812 8.48644e-07 5.34615e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| all is said and done , ||| 0.0120482 0.0010182 8.48644e-07 3.05642e-15 2.718 ||| 0-3 ||| 83 1.17835e+06 +en ||| all is said and done ||| 0.0114943 0.0010182 8.48644e-07 2.56293e-14 2.718 ||| 0-3 ||| 87 1.17835e+06 +en ||| all is said and ||| 0.0103093 0.0010182 8.48644e-07 5.62046e-11 2.718 ||| 0-3 ||| 97 1.17835e+06 +en ||| all kinds of ||| 0.00184502 0.0116562 8.48644e-07 3.06091e-09 2.718 ||| 0-2 ||| 542 1.17835e+06 +en ||| all know - on ||| 1 0.22993 8.48644e-07 3.8192e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| all know that , in ||| 1 0.605812 8.48644e-07 1.12937e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| all live in ||| 0.2 0.605812 8.48644e-07 2.19956e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| all manner of ||| 0.00671141 0.0116562 8.48644e-07 1.25659e-08 2.718 ||| 0-2 ||| 149 1.17835e+06 +en ||| all more or less agreed on ||| 1 0.22993 8.48644e-07 1.36201e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| all need to understand ||| 0.5 0.0247351 8.48644e-07 9.51144e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| all need to ||| 0.0357143 0.0247351 8.48644e-07 1.21785e-07 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| all new ||| 0.0116279 0.0006885 8.48644e-07 4.35126e-08 2.718 ||| 0-0 ||| 86 1.17835e+06 +en ||| all now to ||| 0.333333 0.0247351 8.48644e-07 2.73602e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| all of it into ||| 1 0.525896 8.48644e-07 1.01131e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| all of us in ||| 0.0248447 0.605812 3.39458e-06 3.41909e-07 2.718 ||| 0-3 ||| 161 1.17835e+06 +en ||| all of us throughout ||| 1 0.309047 8.48644e-07 2.14779e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| all of us within ||| 0.333333 0.369196 8.48644e-07 8.20874e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| all of which can ||| 0.5 0.0116562 8.48644e-07 1.62812e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| all of which ||| 0.00328947 0.0116562 8.48644e-07 5.47394e-07 2.718 ||| 0-1 ||| 304 1.17835e+06 +en ||| all of ||| 0.00109385 0.0116562 8.48644e-06 6.44403e-05 2.718 ||| 0-1 ||| 9142 1.17835e+06 +en ||| all on ||| 0.0590909 0.22993 1.10324e-05 0.000392437 2.718 ||| 0-1 ||| 220 1.17835e+06 +en ||| all our energies into ||| 0.25 0.525896 8.48644e-07 9.81211e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| all over Europe at ||| 0.25 0.321886 8.48644e-07 4.6054e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| all over ||| 0.0201923 0.157937 1.78215e-05 1.89356e-05 2.718 ||| 0-1 ||| 1040 1.17835e+06 +en ||| all placing ourselves at ||| 1 0.321886 8.48644e-07 1.43107e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| all proportion in ||| 0.5 0.605812 8.48644e-07 6.58994e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| all relevant to ||| 0.25 0.0247351 8.48644e-07 1.42918e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| all right at ||| 1 0.321886 8.48644e-07 1.21903e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| all seriously defamed by ||| 1 0.0468744 8.48644e-07 6.70527e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| all suffering from ||| 0.333333 0.0308834 8.48644e-07 7.96541e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| all take into ||| 0.25 0.525896 8.48644e-07 1.68418e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| all that into ||| 0.25 0.525896 8.48644e-07 1.75967e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| all that is fashioned in ||| 1 0.605812 8.48644e-07 8.05294e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| all the best for ||| 0.0263158 0.0286209 8.48644e-07 4.62267e-10 2.718 ||| 0-3 ||| 38 1.17835e+06 +en ||| all the best in ||| 0.0454545 0.605812 8.48644e-07 1.85539e-08 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| all the more reason for ||| 0.0434783 0.0286209 8.48644e-07 1.78284e-12 2.718 ||| 0-4 ||| 23 1.17835e+06 +en ||| all the time ||| 0.00342466 0.0011669 8.48644e-07 2.22235e-08 2.718 ||| 0-1 ||| 292 1.17835e+06 +en ||| all the ||| 0.000163457 0.0011669 4.24322e-06 1.35369e-05 2.718 ||| 0-1 ||| 30589 1.17835e+06 +en ||| all their efforts to ||| 0.142857 0.0247351 8.48644e-07 1.87209e-11 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| all this in ||| 0.0217391 0.605812 8.48644e-07 1.40994e-05 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| all this into ||| 0.25 0.525896 2.54593e-06 6.75912e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| all this is dealt with in ||| 1 0.605812 8.48644e-07 2.95848e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| all this over the ||| 1 0.157937 8.48644e-07 7.51133e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| all this over ||| 0.5 0.157937 8.48644e-07 1.22351e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| all through ||| 0.0196078 0.0366102 8.48644e-07 4.44377e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| all times with ||| 0.142857 0.0535436 8.48644e-07 5.59194e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| all to engage upon ||| 1 0.114601 8.48644e-07 1.80375e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| all to see ||| 0.0172414 0.0247351 8.48644e-07 9.35871e-08 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| all to ||| 0.00638298 0.0247351 5.09187e-06 0.000132823 2.718 ||| 0-1 ||| 940 1.17835e+06 +en ||| all together in ||| 0.25 0.605812 8.48644e-07 1.31057e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| all together what we ||| 0.5 0.0035633 8.48644e-07 1.25846e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| all together what ||| 0.5 0.0035633 8.48644e-07 1.10855e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| all too often in ||| 0.05 0.605812 8.48644e-07 3.90237e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| all too present in ||| 1 0.605812 8.48644e-07 1.08696e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| all too ||| 0.00118624 0.0006885 8.48644e-07 9.90808e-08 2.718 ||| 0-0 ||| 843 1.17835e+06 +en ||| all up and ||| 1 0.0147069 8.48644e-07 4.0841e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| all up ||| 0.1 0.0147069 8.48644e-07 3.26053e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| all we have to ||| 0.025 0.0247351 8.48644e-07 1.80335e-08 2.718 ||| 0-3 ||| 40 1.17835e+06 +en ||| all well known . in ||| 1 0.605812 8.48644e-07 1.15386e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| all were left out of ||| 1 0.0116562 8.48644e-07 8.35268e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| all when it ||| 0.1 0.142731 8.48644e-07 5.00272e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| all when ||| 0.025641 0.142731 8.48644e-07 2.81317e-05 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| all with a sick feeling ||| 1 0.0535436 8.48644e-07 3.19126e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| all with a sick ||| 1 0.0535436 8.48644e-07 8.79134e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| all with a ||| 0.0666667 0.0535436 8.48644e-07 2.44204e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| all with ||| 0.0144928 0.0535436 1.69729e-06 5.5093e-05 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| all within ||| 0.153846 0.369196 5.09187e-06 5.23891e-05 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| all ||| 0.000405616 0.0006885 5.26159e-05 7.28e-05 2.718 ||| 0-0 ||| 152854 1.17835e+06 +en ||| all-embracing ||| 0.011236 0.0106383 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| alleged attack on ||| 0.333333 0.22993 8.48644e-07 3.96888e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| alleged to be ||| 0.0714286 0.0247351 8.48644e-07 8.25234e-09 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| alleged to have committed forms part of ||| 0.5 0.0116562 8.48644e-07 2.06728e-21 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| alleged to ||| 0.0138889 0.0247351 8.48644e-07 4.55354e-07 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| allegedly are in ||| 1 0.605812 8.48644e-07 3.29304e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| allies on ||| 0.2 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| allocated as ||| 0.0909091 0.066968 8.48644e-07 8.0226e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| allocated during ||| 0.2 0.226251 8.48644e-07 1.28952e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| allocated in ||| 0.0238095 0.605812 8.48644e-07 2.05954e-05 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| allocated on ||| 0.0714286 0.22993 8.48644e-07 3.70396e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| allocated to ||| 0.00578704 0.0247351 4.24322e-06 1.25363e-06 2.718 ||| 0-1 ||| 864 1.17835e+06 +en ||| allocation for ||| 0.0357143 0.0286209 8.48644e-07 1.94438e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| allow both ||| 0.0625 0.0015168 8.48644e-07 8.75786e-09 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| allow for ||| 0.00197628 0.0286209 8.48644e-07 2.79116e-06 2.718 ||| 0-1 ||| 506 1.17835e+06 +en ||| allow me , in ||| 0.05 0.605812 8.48644e-07 8.04398e-09 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| allow me to ||| 0.00104932 0.0247351 8.48644e-07 4.10576e-09 2.718 ||| 0-2 ||| 953 1.17835e+06 +en ||| allow the possibility of ||| 0.166667 0.0116562 8.48644e-07 1.73858e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| allow us to ||| 0.0028169 0.0247351 8.48644e-07 1.96539e-08 2.718 ||| 0-2 ||| 355 1.17835e+06 +en ||| allowance in ||| 0.0909091 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| allowances , at ||| 1 0.321886 8.48644e-07 3.62552e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| allowances during ||| 0.5 0.226251 8.48644e-07 2.19739e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| allowances free of charge ||| 0.5 0.0116562 8.48644e-07 6.09062e-16 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| allowances free of ||| 0.5 0.0116562 8.48644e-07 1.20846e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| allowances into ||| 1 0.525896 8.48644e-07 1.68243e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| allowed in the ||| 0.133333 0.605812 1.69729e-06 4.5898e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| allowed in ||| 0.0686275 0.605812 5.94051e-06 7.47624e-05 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| allowed into ||| 0.047619 0.525896 8.48644e-07 3.58403e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| allowed it to ||| 0.0666667 0.0247351 8.48644e-07 8.09266e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| allowed on ||| 0.125 0.22993 8.48644e-07 1.34455e-05 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| allowed to conceal ||| 1 0.0247351 8.48644e-07 2.77595e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| allowed to enter ||| 0.047619 0.194429 8.48644e-07 7.0377e-09 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| allowed to exist on ||| 0.5 0.22993 8.48644e-07 1.10036e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| allowed to go to ||| 0.142857 0.0247351 8.48644e-07 2.36476e-10 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| allowed to happen . here in ||| 1 0.605812 8.48644e-07 4.43542e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| allowed to sit in ||| 1 0.605812 8.48644e-07 2.51115e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| allowed to sit on ||| 1 0.22993 8.48644e-07 4.51614e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| allowed to ||| 0.00405562 0.0247351 5.94051e-06 4.55073e-06 2.718 ||| 0-1 ||| 1726 1.17835e+06 +en ||| allows for ||| 0.00297619 0.0286209 8.48644e-07 3.26748e-07 2.718 ||| 0-1 ||| 336 1.17835e+06 +en ||| almost at ||| 0.0526316 0.321886 8.48644e-07 3.29616e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| almost exclusively in ||| 0.0769231 0.605812 8.48644e-07 5.06075e-10 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| almost on the ||| 0.2 0.22993 8.48644e-07 4.20116e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| almost on ||| 0.0454545 0.22993 8.48644e-07 6.84319e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| almost verbatim in ||| 1 0.605812 8.48644e-07 6.84914e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| almost ||| 0.000134571 0.0003008 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 7431 1.17835e+06 +en ||| alone , ||| 0.00212766 0.0069465 8.48644e-07 3.81615e-06 2.718 ||| 0-0 ||| 470 1.17835e+06 +en ||| alone in ||| 0.030837 0.605812 5.94051e-06 4.73787e-05 2.718 ||| 0-1 ||| 227 1.17835e+06 +en ||| alone ||| 0.000791139 0.0069465 3.39458e-06 3.2e-05 2.718 ||| 0-0 ||| 5056 1.17835e+06 +en ||| along , ||| 0.0344828 0.155535 8.48644e-07 9.48671e-05 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| along and ||| 0.0416667 0.155535 8.48644e-07 9.96435e-06 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| along as ||| 0.142857 0.111251 8.48644e-07 1.43094e-05 2.718 ||| 0-0 0-1 ||| 7 1.17835e+06 +en ||| along at just ||| 1 0.23871 8.48644e-07 4.01493e-08 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| along at ||| 0.4 0.23871 1.69729e-06 3.18216e-05 2.718 ||| 0-0 0-1 ||| 5 1.17835e+06 +en ||| along her ||| 1 0.155535 8.48644e-07 2.16456e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| along in ||| 0.2 0.605812 2.54593e-06 8.05808e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| along it ||| 0.166667 0.155535 8.48644e-07 1.41465e-05 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| along on board ||| 1 0.22993 8.48644e-07 1.93467e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| along on ||| 0.2 0.22993 8.48644e-07 1.44919e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| along shortly ||| 0.5 0.248793 8.48644e-07 6.73221e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| along the lines of ||| 0.0166667 0.155535 2.54593e-06 2.41604e-10 2.718 ||| 0-0 ||| 180 1.17835e+06 +en ||| along the lines ||| 0.00543478 0.155535 1.69729e-06 4.44418e-09 2.718 ||| 0-0 ||| 368 1.17835e+06 +en ||| along the road ||| 0.0105263 0.155535 8.48644e-07 4.35628e-09 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| along the same lines ||| 0.00787402 0.155535 8.48644e-07 3.57623e-12 2.718 ||| 0-0 ||| 127 1.17835e+06 +en ||| along the same ||| 0.0252101 0.155535 2.54593e-06 3.92993e-08 2.718 ||| 0-0 ||| 119 1.17835e+06 +en ||| along the ||| 0.0207407 0.155535 2.3762e-05 4.88372e-05 2.718 ||| 0-0 ||| 1350 1.17835e+06 +en ||| along those lines at ||| 0.333333 0.321886 8.48644e-07 4.59957e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| along what ||| 0.142857 0.155535 8.48644e-07 1.11617e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| along with it in ||| 1 0.380673 8.48644e-07 4.17727e-08 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| along with it ||| 0.0333333 0.0535436 8.48644e-07 3.61795e-08 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| along with other things , ||| 1 0.155535 8.48644e-07 3.22999e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| along with other things ||| 1 0.155535 8.48644e-07 2.70848e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| along with other ||| 0.0070922 0.155535 8.48644e-07 6.58998e-09 2.718 ||| 0-0 ||| 141 1.17835e+06 +en ||| along with this to ||| 1 0.104539 8.48644e-07 5.32503e-09 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| along with this ||| 0.0120482 0.104539 8.48644e-07 5.99273e-08 2.718 ||| 0-0 0-1 ||| 83 1.17835e+06 +en ||| along with ||| 0.00774693 0.104539 2.03675e-05 9.27465e-06 2.718 ||| 0-0 0-1 ||| 3098 1.17835e+06 +en ||| along ||| 0.164093 0.155535 0.000793482 0.0007955 2.718 ||| 0-0 ||| 5698 1.17835e+06 +en ||| alongside ||| 0.00518135 0.0091013 8.48644e-06 1.63e-05 2.718 ||| 0-0 ||| 1930 1.17835e+06 +en ||| already , in ||| 0.0769231 0.605812 8.48644e-07 2.55027e-05 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| already , since , in ||| 1 0.605812 8.48644e-07 4.12707e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| already , ||| 0.00456621 0.0002862 8.48644e-07 8.10932e-07 2.718 ||| 0-0 ||| 219 1.17835e+06 +en ||| already at ||| 0.0377358 0.321886 1.69729e-06 1.85249e-05 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| already become apparent in ||| 1 0.605812 8.48644e-07 2.17506e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| already been achieved in ||| 0.25 0.605812 8.48644e-07 1.19467e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| already been in ||| 0.25 0.605812 1.69729e-06 7.14091e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| already been laid down in ||| 0.75 0.605812 2.54593e-06 5.43372e-14 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| already been reduced by ||| 1 0.0468744 8.48644e-07 6.15665e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| already been taken ||| 0.0294118 0.0042106 8.48644e-07 1.37783e-10 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| already been touched upon , ||| 0.333333 0.114601 8.48644e-07 1.28772e-15 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| already been touched upon ||| 0.2 0.114601 8.48644e-07 1.07981e-14 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| already being challenged by ||| 1 0.0468744 8.48644e-07 4.03611e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| already being made in ||| 0.5 0.605812 8.48644e-07 1.27485e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| already cast in concrete ||| 0.25 0.605812 8.48644e-07 2.26241e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| already cast in ||| 0.25 0.605812 8.48644e-07 7.22816e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| already decided beforehand against ||| 1 0.153982 8.48644e-07 9.91905e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| already decided on ||| 0.1 0.22993 8.48644e-07 2.63064e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| already declared , during ||| 1 0.226251 8.48644e-07 4.08774e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| already easy to ||| 0.25 0.0247351 8.48644e-07 4.92041e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| already existed in ||| 0.333333 0.605812 8.48644e-07 3.16499e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| already happened in ||| 0.2 0.605812 8.48644e-07 1.32374e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| already have in ||| 0.0434783 0.605812 8.48644e-07 2.55761e-06 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| already have on ||| 0.333333 0.22993 8.48644e-07 4.5997e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| already have problems in ||| 1 0.605812 8.48644e-07 3.43232e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| already in evidence among the Americans in ||| 0.5 0.605812 8.48644e-07 1.30411e-20 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| already in evidence among the Americans ||| 0.5 0.605812 8.48644e-07 6.09269e-19 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| already in evidence among the ||| 0.5 0.605812 8.48644e-07 6.48158e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| already in evidence among ||| 0.5 0.605812 8.48644e-07 1.05577e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| already in evidence ||| 0.5 0.605812 8.48644e-07 1.17832e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| already in ||| 0.0495413 0.605812 2.29134e-05 0.000213851 2.718 ||| 0-1 ||| 545 1.17835e+06 +en ||| already into ||| 1 0.525896 8.48644e-07 1.02518e-05 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| already is within ||| 1 0.369196 8.48644e-07 1.60913e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| already looks at ||| 1 0.321886 8.48644e-07 4.87206e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| already made by ||| 0.0217391 0.0468744 8.48644e-07 8.25275e-09 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| already now , for ||| 1 0.0286209 8.48644e-07 1.30885e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| already offers ||| 0.166667 0.0002862 8.48644e-07 2.2236e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| already on today ||| 1 0.22993 8.48644e-07 1.73569e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| already on ||| 0.0113636 0.22993 8.48644e-07 3.84597e-05 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| already pointed out in ||| 0.333333 0.605812 8.48644e-07 3.77621e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| already reached during the Austrian Presidency ||| 1 0.226251 8.48644e-07 5.07407e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| already reached during the Austrian ||| 1 0.226251 8.48644e-07 1.02094e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| already reached during the ||| 1 0.226251 8.48644e-07 8.87773e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| already reached during ||| 1 0.226251 8.48644e-07 1.44608e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| already refused once in ||| 1 0.605812 8.48644e-07 1.04134e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| already said - under ||| 1 0.205566 8.48644e-07 4.06274e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| already said in ||| 0.0714286 0.605812 8.48644e-07 8.79568e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| already suffered the chains ||| 1 0.0011669 8.48644e-07 6.35196e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| already suffered the ||| 1 0.0011669 8.48644e-07 4.53712e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| already taken in ||| 0.0909091 0.605812 8.48644e-07 1.94925e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| already under ||| 0.0136986 0.205566 8.48644e-07 2.61865e-06 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| already underway ||| 0.0357143 0.268204 8.48644e-07 6.96502e-08 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| already ||| 0.000125149 0.0002862 3.39458e-06 6.8e-06 2.718 ||| 0-0 ||| 31962 1.17835e+06 +en ||| also , as ||| 0.00740741 0.066968 8.48644e-07 1.083e-05 2.718 ||| 0-2 ||| 135 1.17835e+06 +en ||| also , given ||| 0.111111 0.0546585 8.48644e-07 6.98942e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| also , in ||| 0.0147059 0.605812 2.54593e-06 0.000278024 2.718 ||| 0-2 ||| 204 1.17835e+06 +en ||| also , of course , at ||| 0.333333 0.321886 8.48644e-07 1.97002e-10 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| also , on ||| 0.025641 0.22993 8.48644e-07 5.00009e-05 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| also , when ||| 0.037037 0.142731 8.48644e-07 3.5843e-06 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| also a member of ||| 0.0666667 0.0116562 8.48644e-07 5.08419e-10 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| also a step in ||| 0.2 0.605812 8.48644e-07 1.52425e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| also agree ||| 0.00387597 0.071674 8.48644e-07 6.44807e-06 2.718 ||| 0-1 ||| 258 1.17835e+06 +en ||| also allow the possibility of ||| 1 0.0116562 8.48644e-07 8.77738e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| also and primarily on ||| 0.5 0.22993 8.48644e-07 9.45331e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| also apply in ||| 0.047619 0.605812 8.48644e-07 3.35481e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| also as ||| 0.00611621 0.066968 1.69729e-06 9.08137e-05 2.718 ||| 0-1 ||| 327 1.17835e+06 +en ||| also at home , in ||| 1 0.605812 8.48644e-07 1.18166e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| also at ||| 0.0260116 0.321886 7.6378e-06 0.000201954 2.718 ||| 0-1 ||| 346 1.17835e+06 +en ||| also be found , however , in ||| 1 0.605812 8.48644e-07 1.45631e-13 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| also be found in ||| 0.125 0.605812 8.48644e-07 9.24447e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| also be in ||| 0.0344828 0.605812 8.48644e-07 4.22508e-05 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| also be necessary , in ||| 1 0.605812 8.48644e-07 1.29643e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| also be passed on ||| 1 0.22993 8.48644e-07 5.44055e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| also be seen that , in ||| 1 0.605812 8.48644e-07 1.78414e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| also be supported , in ||| 1 0.605812 8.48644e-07 2.61e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| also be totally in ||| 1 0.605812 8.48644e-07 1.82523e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| also bear in ||| 0.03125 0.605812 8.48644e-07 3.49003e-07 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| also become part of ||| 0.5 0.0009084 8.48644e-07 1.65453e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| also become part ||| 0.166667 0.0009084 8.48644e-07 3.04343e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| also become ||| 0.00990099 0.219193 8.48644e-07 1.93033e-05 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| also becoming a ||| 0.333333 0.163705 8.48644e-07 1.71149e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| also becoming ||| 0.0555556 0.163705 8.48644e-07 3.86117e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| also been agreed in ||| 0.5 0.605812 8.48644e-07 6.07996e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| also been doing a great deal in ||| 1 0.605812 8.48644e-07 2.1138e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| also been poorly prepared in ||| 1 0.605812 8.48644e-07 2.90227e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| also being ||| 0.00518135 0.0043873 8.48644e-07 9.23894e-07 2.718 ||| 0-1 ||| 193 1.17835e+06 +en ||| also by involving them in ||| 0.5 0.605812 8.48644e-07 1.02764e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| also by ||| 0.00326264 0.0468744 1.69729e-06 4.29489e-05 2.718 ||| 0-1 ||| 613 1.17835e+06 +en ||| also clear from ||| 0.0909091 0.0308834 8.48644e-07 6.39515e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| also come from ||| 0.0588235 0.0308834 8.48644e-07 1.63154e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| also come up with a voluntary code ||| 1 0.0535436 8.48644e-07 1.66849e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| also come up with a voluntary ||| 1 0.0535436 8.48644e-07 1.00512e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| also come up with a ||| 1 0.0535436 8.48644e-07 7.55726e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| also come up with ||| 0.5 0.0535436 8.48644e-07 1.70493e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| also consequences in this ||| 1 0.605812 8.48644e-07 6.4021e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| also consequences in ||| 1 0.605812 8.48644e-07 9.90823e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| also consider ||| 0.00549451 0.0126304 8.48644e-07 6.11385e-07 2.718 ||| 0-1 ||| 182 1.17835e+06 +en ||| also contained in ||| 0.125 0.605812 8.48644e-07 1.58532e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| also covered by ||| 0.0833333 0.0468744 8.48644e-07 3.07514e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| also do in ||| 0.333333 0.605812 8.48644e-07 8.00888e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| also due to the Spanish Government . ||| 1 0.0247351 8.48644e-07 7.8398e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| also due to the Spanish Government ||| 1 0.0247351 8.48644e-07 2.58825e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| also due to the Spanish ||| 1 0.0247351 8.48644e-07 5.36981e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| also due to the ||| 0.0232558 0.0247351 8.48644e-07 2.40799e-09 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| also due to ||| 0.0140845 0.0247351 8.48644e-07 3.92233e-08 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| also during ||| 0.0294118 0.226251 8.48644e-07 1.4597e-05 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| also elsewhere in ||| 0.2 0.605812 8.48644e-07 8.6493e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| also ensure that ||| 0.00666667 0.0017499 8.48644e-07 2.36612e-09 2.718 ||| 0-2 ||| 150 1.17835e+06 +en ||| also flexibility as regards ||| 1 0.066968 8.48644e-07 1.8308e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| also flexibility as ||| 1 0.066968 8.48644e-07 1.30772e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| also focus on ||| 0.037037 0.22993 8.48644e-07 3.24521e-08 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| also for ||| 0.00205761 0.0286209 3.39458e-06 5.80852e-05 2.718 ||| 0-1 ||| 1944 1.17835e+06 +en ||| also form part of ||| 0.0588235 0.0116562 8.48644e-07 3.7363e-11 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| also from ||| 0.00634921 0.0308834 1.69729e-06 1.92104e-05 2.718 ||| 0-1 ||| 315 1.17835e+06 +en ||| also go to ||| 0.0526316 0.0247351 8.48644e-07 8.29875e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| also guaranteed in ||| 1 0.605812 8.48644e-07 8.22966e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| also hanging in the ||| 0.5 0.605812 8.48644e-07 1.28813e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| also hanging in ||| 0.5 0.605812 8.48644e-07 2.09821e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| also happened with ||| 0.142857 0.0535436 8.48644e-07 3.6435e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| also has a job to do in ||| 1 0.605812 8.48644e-07 1.26816e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| also have in ||| 0.2 0.605812 8.48644e-07 2.78825e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| also have to be seen in relative ||| 1 0.605812 8.48644e-07 8.5065e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| also have to be seen in ||| 1 0.605812 8.48644e-07 9.45167e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| also having a go at ||| 1 0.321886 8.48644e-07 2.00448e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| also help to ||| 0.0111111 0.0247351 8.48644e-07 2.70618e-08 2.718 ||| 0-2 ||| 90 1.17835e+06 +en ||| also here ||| 0.025641 0.0855319 8.48644e-07 1.51463e-05 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| also important in ||| 0.047619 0.605812 8.48644e-07 8.94305e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| also in a ||| 0.0588235 0.605812 2.54593e-06 0.000103339 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| also in all ||| 0.0833333 0.605812 8.48644e-07 1.10166e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| also in relation to ||| 0.0128205 0.605812 8.48644e-07 5.04019e-08 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| also in relation ||| 0.0689655 0.605812 1.69729e-06 5.67217e-07 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| also in terms of minimizing the ||| 1 0.605812 8.48644e-07 3.41612e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| also in terms of minimizing ||| 1 0.605812 8.48644e-07 5.56445e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| also in terms of ||| 0.00724638 0.605812 8.48644e-07 1.39111e-07 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| also in terms ||| 0.012987 0.605812 1.69729e-06 2.55889e-06 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| also in the ||| 0.0064433 0.605812 4.24322e-06 0.000143126 2.718 ||| 0-1 ||| 776 1.17835e+06 +en ||| also in ||| 0.0471108 0.605812 0.000108626 0.00233135 2.718 ||| 0-1 ||| 2717 1.17835e+06 +en ||| also included in ||| 0.0357143 0.605812 8.48644e-07 2.18914e-07 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| also into ||| 0.0869565 0.525896 1.69729e-06 0.000111762 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| also involved in ||| 0.05 0.605812 8.48644e-07 8.0618e-07 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| also keen to ||| 0.0909091 0.0247351 8.48644e-07 3.73217e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| also known as ||| 0.0172414 0.066968 8.48644e-07 9.99859e-09 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| also like , speaking on ||| 1 0.22993 8.48644e-07 1.01938e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| also like to mention ||| 0.0217391 0.0247351 8.48644e-07 2.44957e-11 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| also like to ||| 0.00422833 0.0247351 1.69729e-06 2.52014e-07 2.718 ||| 0-2 ||| 473 1.17835e+06 +en ||| also live in dire circumstances ||| 0.25 0.605812 8.48644e-07 3.1725e-17 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| also live in dire ||| 0.25 0.605812 8.48644e-07 5.875e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| also live in ||| 0.111111 0.605812 8.48644e-07 2.35e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| also look at ||| 0.015873 0.321886 8.48644e-07 5.88696e-08 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| also made in the ||| 0.25 0.605812 8.48644e-07 2.9982e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| also made in ||| 0.125 0.605812 8.48644e-07 4.88371e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| also mentioned in ||| 0.0322581 0.605812 8.48644e-07 2.06324e-07 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| also need to involve it in ||| 1 0.605812 8.48644e-07 1.66527e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| also needed in ||| 0.333333 0.605812 8.48644e-07 3.12168e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| also of ||| 0.00254022 0.0116562 2.54593e-06 6.88478e-05 2.718 ||| 0-1 ||| 1181 1.17835e+06 +en ||| also on behalf ||| 0.0107527 0.22993 8.48644e-07 1.3354e-07 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| also on ||| 0.0375276 0.22993 2.88539e-05 0.000419278 2.718 ||| 0-1 ||| 906 1.17835e+06 +en ||| also particularly depends on ||| 1 0.22993 8.48644e-07 1.1301e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| also played a part here ||| 0.2 0.0855319 8.48644e-07 3.94602e-14 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| also point out at ||| 1 0.321886 8.48644e-07 6.76715e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| also put forward in ||| 1 0.605812 8.48644e-07 1.43025e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| also required in ||| 0.25 0.605812 8.48644e-07 3.69985e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| also say that in ||| 0.142857 0.605812 8.48644e-07 3.74836e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| also say this in ||| 1 0.605812 8.48644e-07 1.4398e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| also seriously ||| 0.0769231 0.276271 8.48644e-07 7.76727e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| also speaking on ||| 0.1 0.22993 8.48644e-07 4.81331e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| also stated in ||| 0.0666667 0.605812 8.48644e-07 1.45243e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| also stresses ||| 0.0181818 0.174236 8.48644e-07 7.24979e-07 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| also take account ||| 0.0147059 0.233636 8.48644e-07 2.68695e-08 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| also take place in ||| 0.125 0.605812 8.48644e-07 5.64897e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| also taken in the United States ||| 1 0.605812 8.48644e-07 7.62002e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| also taken in the United ||| 1 0.605812 8.48644e-07 1.59682e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| also taken in the ||| 1 0.605812 8.48644e-07 1.30459e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| also taken in ||| 0.5 0.605812 8.48644e-07 2.12502e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| also therefore in ||| 1 0.605812 8.48644e-07 1.94971e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| also thinking of ||| 0.0909091 0.0286132 1.69729e-06 1.00724e-08 2.718 ||| 0-1 0-2 ||| 22 1.17835e+06 +en ||| also to ||| 0.00234811 0.0247351 6.78915e-06 0.000141908 2.718 ||| 0-1 ||| 3407 1.17835e+06 +en ||| also touched on in ||| 1 0.605812 8.48644e-07 1.23232e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| also under the ||| 0.0714286 0.205566 8.48644e-07 1.7526e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| also under ||| 0.0444444 0.205566 1.69729e-06 2.85478e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| also up to ||| 0.0588235 0.0247351 8.48644e-07 4.83976e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| also using ||| 0.0714286 0.0119063 8.48644e-07 3.2311e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| also very much on ||| 0.25 0.22993 8.48644e-07 1.46428e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| also we in ||| 1 0.605812 8.48644e-07 2.64662e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| also when ||| 0.015625 0.142731 8.48644e-07 3.00558e-05 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| also where ||| 0.0222222 0.247783 8.48644e-07 4.29969e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| also with a view to ||| 0.0555556 0.0247351 8.48644e-07 3.6333e-11 2.718 ||| 0-4 ||| 18 1.17835e+06 +en ||| also with ||| 0.00752823 0.0535436 5.09187e-06 5.88611e-05 2.718 ||| 0-1 ||| 797 1.17835e+06 +en ||| also within ||| 0.0176991 0.369196 1.69729e-06 5.59723e-05 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| also ||| 6.47992e-06 6.3e-06 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 154323 1.17835e+06 +en ||| altered form in ||| 1 0.605812 8.48644e-07 6.72649e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| altered it in ||| 0.5 0.605812 8.48644e-07 2.62782e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| alternative method of ||| 0.2 0.0116562 8.48644e-07 1.40659e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| alternative sources ? in ||| 1 0.605812 8.48644e-07 6.82526e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| alternatively , if ||| 0.5 0.004902 8.48644e-07 6.97545e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| alternatively , ||| 0.0105263 0.004902 8.48644e-07 8.34783e-08 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| alternatively ||| 0.00740741 0.004902 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 135 1.17835e+06 +en ||| although , having said ||| 0.333333 0.0040507 8.48644e-07 8.93977e-13 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| although , having ||| 0.2 0.0040507 8.48644e-07 2.17354e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| although , ||| 0.00301205 0.0040507 8.48644e-07 5.67652e-06 2.718 ||| 0-0 ||| 332 1.17835e+06 +en ||| although I am ||| 0.00568182 0.0040507 8.48644e-07 4.30132e-10 2.718 ||| 0-0 ||| 176 1.17835e+06 +en ||| although I ||| 0.00289017 0.0040507 1.69729e-06 3.36699e-07 2.718 ||| 0-0 ||| 692 1.17835e+06 +en ||| although at ||| 0.0285714 0.162968 8.48644e-07 1.9041e-06 2.718 ||| 0-0 0-1 ||| 35 1.17835e+06 +en ||| although in ||| 0.0120482 0.304931 1.69729e-06 2.19808e-05 2.718 ||| 0-0 0-1 ||| 166 1.17835e+06 +en ||| although it does not have ||| 0.2 0.0040507 8.48644e-07 2.42428e-14 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| although it does not ||| 0.0416667 0.0040507 8.48644e-07 2.02702e-12 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| although it does ||| 0.0666667 0.0040507 8.48644e-07 5.93721e-10 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| although it was unfortunately wrong during ||| 0.25 0.226251 8.48644e-07 5.96462e-20 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| although it ||| 0.00161812 0.0040507 8.48644e-07 8.4648e-07 2.718 ||| 0-0 ||| 618 1.17835e+06 +en ||| although its scope is , in ||| 0.25 0.605812 8.48644e-07 2.62808e-14 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| although people in ||| 0.333333 0.605812 8.48644e-07 4.35725e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| although they are supposed ||| 0.5 0.0040507 8.48644e-07 1.38375e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| although they are ||| 0.0119048 0.0040507 8.48644e-07 2.35733e-09 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| although they ||| 0.00628931 0.0040507 8.48644e-07 1.55366e-07 2.718 ||| 0-0 ||| 159 1.17835e+06 +en ||| although we in ||| 0.1 0.605812 8.48644e-07 5.61972e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| although ||| 0.00149031 0.0040507 2.12161e-05 4.76e-05 2.718 ||| 0-0 ||| 16775 1.17835e+06 +en ||| altogether in ||| 0.0769231 0.605812 8.48644e-07 1.26066e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| altogether ||| 0.0156863 0.0774648 6.78915e-06 4.49e-05 2.718 ||| 0-0 ||| 510 1.17835e+06 +en ||| always , in ||| 0.0833333 0.605812 8.48644e-07 9.47197e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| always about ||| 0.25 0.0401564 8.48644e-07 4.92969e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| always be borne in mind ||| 0.125 0.605812 8.48644e-07 1.1603e-14 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| always be borne in ||| 0.142857 0.605812 8.48644e-07 4.60619e-11 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| always be visible in ||| 0.25 0.605812 8.48644e-07 2.13036e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| always bear in ||| 0.047619 0.605812 8.48644e-07 1.18901e-08 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| always been a way of life in ||| 1 0.605812 8.48644e-07 2.08716e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| always been underspent in ||| 1 0.605812 8.48644e-07 1.06088e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| always being ‘ on ||| 0.25 0.22993 8.48644e-07 4.56503e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| always called by ||| 0.25 0.0468744 8.48644e-07 2.54308e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| always considered in ||| 0.5 0.605812 8.48644e-07 8.54628e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| always describe it in ||| 0.5 0.605812 8.48644e-07 3.46051e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| always emphasized in ||| 1 0.605812 8.48644e-07 3.17705e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| always happening in ||| 1 0.605812 8.48644e-07 4.31285e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| always in ||| 0.0322581 0.605812 2.54593e-06 7.94263e-05 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| always moved when ||| 1 0.142731 8.48644e-07 3.24598e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| always seems to ||| 0.0909091 0.0247351 8.48644e-07 5.81122e-10 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| always shared by ||| 0.5 0.0468744 8.48644e-07 3.9507e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| always stressed ||| 0.125 0.127203 8.48644e-07 3.88548e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| am , at ||| 0.5 0.321886 8.48644e-07 6.09422e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| am , in ||| 0.166667 0.605812 1.69729e-06 7.03514e-05 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| am , on ||| 0.5 0.22993 8.48644e-07 1.26522e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| am I right in saying ||| 0.2 0.0071334 8.48644e-07 6.14196e-15 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| am I right in ||| 0.0555556 0.0071334 8.48644e-07 3.46221e-11 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| am I right ||| 0.037037 0.0071334 8.48644e-07 1.61751e-09 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| am I ||| 0.00429185 0.0060084 8.48644e-07 3.1042e-06 2.718 ||| 0-1 ||| 233 1.17835e+06 +en ||| am a Member of ||| 0.333333 0.0116562 8.48644e-07 3.97921e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| am a ||| 0.00534759 0.0015231 8.48644e-07 1.05266e-06 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| am also thinking of ||| 0.142857 0.0286132 1.69729e-06 1.28675e-11 2.718 ||| 0-2 0-3 ||| 14 1.17835e+06 +en ||| am at ||| 0.0909091 0.321886 2.54593e-06 5.11026e-05 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| am back to the same topic ||| 1 0.0247351 8.48644e-07 2.2312e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| am back to the same ||| 1 0.0247351 8.48644e-07 1.19315e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| am back to the ||| 1 0.0247351 8.48644e-07 1.48273e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| am back to ||| 1 0.0247351 8.48644e-07 2.4152e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| am competent in ||| 0.5 0.605812 8.48644e-07 7.66903e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| am completely immersed ||| 0.5 0.0028353 8.48644e-07 1.21618e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| am completely ||| 0.0666667 0.0028353 8.48644e-07 1.7374e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| am entirely in ||| 0.166667 0.605812 8.48644e-07 3.90531e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| am especially glad ||| 0.0625 0.13965 8.48644e-07 5.63255e-11 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| am especially ||| 0.0263158 0.13965 8.48644e-07 2.90337e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| am far from being ||| 0.5 0.0308834 8.48644e-07 9.44411e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| am far from ||| 0.0833333 0.0308834 8.48644e-07 3.31862e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| am from ||| 0.0555556 0.0308834 1.69729e-06 4.86102e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| am fundamentally in favour of ||| 0.5 0.605812 8.48644e-07 1.00636e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| am fundamentally in favour ||| 0.5 0.605812 8.48644e-07 1.85116e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| am fundamentally in ||| 0.5 0.605812 8.48644e-07 5.72228e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| am going to make ||| 0.166667 0.0247351 8.48644e-07 5.34032e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| am going to ||| 0.010929 0.0247351 1.69729e-06 3.07304e-08 2.718 ||| 0-2 ||| 183 1.17835e+06 +en ||| am grateful to ||| 0.00813008 0.0247351 8.48644e-07 8.1512e-10 2.718 ||| 0-2 ||| 123 1.17835e+06 +en ||| am however in ||| 0.5 0.605812 8.48644e-07 6.5346e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| am in favour of having ||| 0.2 0.605812 8.48644e-07 3.97254e-12 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| am in favour of this in principle ||| 1 0.605812 8.48644e-07 2.19967e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| am in favour of this in ||| 1 0.605812 8.48644e-07 1.43488e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| am in favour of ||| 0.00970874 0.605812 1.69729e-06 1.03749e-08 2.718 ||| 0-1 ||| 206 1.17835e+06 +en ||| am in favour ||| 0.00980392 0.605812 1.69729e-06 1.90841e-07 2.718 ||| 0-1 ||| 204 1.17835e+06 +en ||| am in full agreement ||| 0.0909091 0.605812 8.48644e-07 1.99507e-11 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| am in full ||| 0.0909091 0.605812 8.48644e-07 1.08251e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| am in ||| 0.0887372 0.605812 2.20648e-05 0.000589925 2.718 ||| 0-1 ||| 293 1.17835e+06 +en ||| am involved in ||| 0.25 0.605812 8.48644e-07 2.03996e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| am looking here at ||| 0.5 0.321886 8.48644e-07 1.09636e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| am no longer voting in ||| 1 0.605812 8.48644e-07 3.34927e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| am not all happy with ||| 0.166667 0.0535436 8.48644e-07 1.51382e-14 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| am of ||| 0.0363636 0.0116562 1.69729e-06 1.74213e-05 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| am on ||| 0.03125 0.22993 8.48644e-07 0.000106094 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| am pleased to note that in ||| 1 0.605812 8.48644e-07 3.74677e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| am pleased to say that on ||| 1 0.22993 8.48644e-07 6.16905e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| am referring back ||| 0.333333 0.0167382 8.48644e-07 2.277e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| am referring here ||| 0.0454545 0.0855319 8.48644e-07 1.6557e-10 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| am referring in particular here to ||| 1 0.605812 8.48644e-07 2.82593e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| am referring in particular here ||| 1 0.605812 8.48644e-07 3.18027e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| am referring in particular ||| 0.142857 0.605812 8.48644e-07 1.56833e-11 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| am referring in this context ||| 1 0.605812 8.48644e-07 2.20984e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| am referring in this ||| 1 0.605812 8.48644e-07 1.64667e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| am referring in ||| 0.222222 0.605812 1.69729e-06 2.54848e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| am referring to ||| 0.0240964 0.0247351 1.69729e-06 1.55124e-09 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| am referring ||| 0.0075188 0.0167382 8.48644e-07 3.38537e-08 2.718 ||| 0-1 ||| 133 1.17835e+06 +en ||| am representing ||| 0.25 0.0450358 8.48644e-07 7.65222e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| am sad to say ||| 0.0625 0.0247351 8.48644e-07 2.71138e-13 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| am sad to ||| 0.111111 0.0247351 8.48644e-07 2.83676e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| am saying this to ||| 0.142857 0.0247351 8.48644e-07 4.116e-11 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| am sometimes faced with ||| 1 0.0535436 8.48644e-07 5.32685e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| am speaking on behalf ||| 0.037037 0.22993 8.48644e-07 3.87921e-12 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| am speaking on ||| 0.0588235 0.22993 1.69729e-06 1.21796e-08 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| am still on ||| 1 0.22993 8.48644e-07 7.99103e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| am sure there is consensus on ||| 1 0.22993 8.48644e-07 2.75207e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| am talking about in ||| 1 0.605812 8.48644e-07 9.12759e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| am talking about ||| 0.0117647 0.0401564 8.48644e-07 4.00562e-10 2.718 ||| 0-2 ||| 85 1.17835e+06 +en ||| am that ||| 0.025 0.0017499 8.48644e-07 1.33524e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| am therefore in favour of ||| 0.5 0.605812 8.48644e-07 8.67651e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| am therefore in favour ||| 0.333333 0.605812 8.48644e-07 1.596e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| am therefore in ||| 0.2 0.605812 8.48644e-07 4.93355e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| am thinking , in ||| 0.25 0.605812 8.48644e-07 5.21304e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| am thinking here in ||| 1 0.605812 8.48644e-07 8.86422e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| am thinking in ||| 0.222222 0.605812 1.69729e-06 4.37135e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| am thinking of ||| 0.09375 0.0286132 5.09187e-06 2.54873e-09 2.718 ||| 0-1 0-2 ||| 64 1.17835e+06 +en ||| am thinking ||| 0.00900901 0.0455702 8.48644e-07 1.86898e-07 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| am using exactly ||| 1 0.0119063 8.48644e-07 8.2087e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| am using ||| 0.166667 0.0119063 1.69729e-06 8.176e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| am very pleased that in ||| 0.333333 0.605812 8.48644e-07 1.40532e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| am voting ||| 0.00833333 0.0081975 8.48644e-07 7.90772e-08 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| am wearing ||| 0.2 0.019685 8.48644e-07 4.3435e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| am with ||| 0.0666667 0.0535436 8.48644e-07 1.48942e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| amassed in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ambassador in ||| 0.0909091 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| ambiguous , for ||| 1 0.0286209 8.48644e-07 3.97894e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ambitions in ||| 0.0178571 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| ambitious goals regarding one ||| 0.166667 0.140669 8.48644e-07 1.14326e-15 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| ambitious goals regarding ||| 0.166667 0.140669 8.48644e-07 2.74296e-13 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| amended for ||| 0.2 0.0286209 8.48644e-07 1.24256e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| amended on the ||| 1 0.22993 8.48644e-07 5.50637e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| amended on ||| 0.0909091 0.22993 8.48644e-07 8.96923e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| amended since ||| 0.25 0.0075235 8.48644e-07 1.8738e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| amending budget and the 25 posts in ||| 1 0.605812 8.48644e-07 2.24654e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| amending ||| 0.00039557 0.0004602 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2528 1.17835e+06 +en ||| amendment consists ||| 0.5 0.0050742 8.48644e-07 5.2186e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| amendment has been ||| 0.05 0.0050742 8.48644e-07 9.24743e-10 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| amendment has ||| 0.027027 0.0050742 8.48644e-07 2.76936e-07 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| amendment in the ||| 0.0285714 0.605812 8.48644e-07 1.80587e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| amendment in ||| 0.0183486 0.605812 3.39458e-06 2.94155e-05 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| amendment of Single CMO Regulation ) ( ||| 0.25 0.0050742 8.48644e-07 7.99731e-28 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| amendment of Single CMO Regulation ) ||| 0.333333 0.0050742 1.69729e-06 8.29252e-25 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| amendment of Single CMO Regulation ||| 0.333333 0.0050742 1.69729e-06 5.76952e-22 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| amendment of Single CMO ||| 0.333333 0.0050742 1.69729e-06 2.54164e-17 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| amendment of Single ||| 0.333333 0.0050742 1.69729e-06 2.31058e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| amendment of ||| 0.00408998 0.0050742 1.69729e-06 2.92478e-06 2.718 ||| 0-0 ||| 489 1.17835e+06 +en ||| amendment on ||| 0.0035461 0.22993 8.48644e-07 5.29018e-06 2.718 ||| 0-1 ||| 282 1.17835e+06 +en ||| amendment reaches ||| 1 0.0050742 8.48644e-07 4.2502e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| amendment to ||| 0.000867303 0.0149047 8.48644e-07 1.51223e-06 2.718 ||| 0-0 0-1 ||| 1153 1.17835e+06 +en ||| amendment ||| 0.00113282 0.0050742 1.35783e-05 5.38e-05 2.718 ||| 0-0 ||| 14124 1.17835e+06 +en ||| amendments , and ||| 0.00840336 0.0010182 8.48644e-07 8.39577e-09 2.718 ||| 0-2 ||| 119 1.17835e+06 +en ||| amendments along ||| 0.0454545 0.155535 8.48644e-07 6.06966e-08 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| amendments and in ||| 0.25 0.605812 8.48644e-07 4.41336e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| amendments are taken on ||| 1 0.22993 8.48644e-07 8.76345e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| amendments during ||| 0.125 0.226251 8.48644e-07 2.20606e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| amendments in ||| 0.0125523 0.605812 5.09187e-06 3.52339e-05 2.718 ||| 0-1 ||| 478 1.17835e+06 +en ||| amendments requested at ||| 0.333333 0.321886 8.48644e-07 5.49387e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| amendments to ||| 0.00191939 0.0247351 2.54593e-06 2.14466e-06 2.718 ||| 0-1 ||| 1563 1.17835e+06 +en ||| amendments ||| 8.30565e-05 0.0002977 1.69729e-06 5.4e-06 2.718 ||| 0-0 ||| 24080 1.17835e+06 +en ||| amid a persistence of conflicting statements ||| 1 0.0116562 8.48644e-07 1.07238e-25 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| amid a persistence of conflicting ||| 1 0.0116562 8.48644e-07 3.35119e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| amid a persistence of ||| 1 0.0116562 8.48644e-07 9.30885e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| amid all ||| 0.0769231 0.329114 8.48644e-07 1.67279e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| amid ||| 0.0819672 0.329114 8.48644e-06 3.54e-05 2.718 ||| 0-0 ||| 122 1.17835e+06 +en ||| amide ||| 0.125 0.0769231 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| amidst ||| 0.0744681 0.280899 5.94051e-06 1.7e-05 2.718 ||| 0-0 ||| 94 1.17835e+06 +en ||| amiss with ||| 0.142857 0.0535436 8.48644e-07 3.38108e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| ammunition in ||| 0.142857 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| among , ||| 0.333333 0.0422459 8.48644e-07 3.79826e-05 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| among Member ||| 0.5 0.0422459 8.48644e-07 1.64123e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| among a ||| 0.0652174 0.0422459 2.54593e-06 1.41178e-05 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| among farmers in ||| 0.333333 0.605812 8.48644e-07 1.66744e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| among its governments in ||| 1 0.605812 8.48644e-07 2.01601e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| among operational ||| 1 0.0422459 8.48644e-07 4.80935e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| among other examples ||| 0.5 0.0422459 8.48644e-07 7.13827e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| among other things , ||| 0.00103413 0.0422459 8.48644e-07 2.02239e-11 2.718 ||| 0-0 ||| 967 1.17835e+06 +en ||| among other things in ||| 0.333333 0.605812 8.48644e-07 2.20305e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| among other things ||| 0.00411523 0.0422459 4.24322e-06 1.69585e-10 2.718 ||| 0-0 ||| 1215 1.17835e+06 +en ||| among other ||| 0.00707714 0.0422459 8.48644e-06 4.12617e-07 2.718 ||| 0-0 ||| 1413 1.17835e+06 +en ||| among others , ||| 0.00294985 0.0422459 8.48644e-07 3.69191e-09 2.718 ||| 0-0 ||| 339 1.17835e+06 +en ||| among others ||| 0.00176367 0.0422459 8.48644e-07 3.09582e-08 2.718 ||| 0-0 ||| 567 1.17835e+06 +en ||| among ourselves ||| 0.0107527 0.0422459 8.48644e-07 1.01315e-07 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| among service providers ||| 0.166667 0.0422459 8.48644e-07 1.00146e-13 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| among service ||| 0.25 0.0422459 8.48644e-07 2.13076e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| among the most educated in the ||| 1 0.0422459 8.48644e-07 3.22046e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| among the most educated in ||| 1 0.0422459 8.48644e-07 5.24575e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| among the most educated ||| 1 0.0422459 8.48644e-07 2.45077e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| among the most ||| 0.0140845 0.0422459 8.48644e-07 8.45093e-09 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| among the people ||| 0.0144928 0.0422459 8.48644e-07 1.72108e-08 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| among the reasons ||| 0.0714286 0.0422459 8.48644e-07 1.97684e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| among the ||| 0.00197852 0.0422459 5.94051e-06 1.95533e-05 2.718 ||| 0-0 ||| 3538 1.17835e+06 +en ||| among them too ||| 0.5 0.0422459 8.48644e-07 1.16276e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| among them ||| 0.00887574 0.0422459 2.54593e-06 8.54344e-07 2.718 ||| 0-0 ||| 338 1.17835e+06 +en ||| among themselves or ||| 0.25 0.0422459 8.48644e-07 1.56471e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| among themselves ||| 0.0178571 0.0422459 1.69729e-06 1.36859e-07 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| among these ||| 0.0126582 0.0422459 1.69729e-06 3.30316e-07 2.718 ||| 0-0 ||| 158 1.17835e+06 +en ||| among today ||| 1 0.0422459 8.48644e-07 1.43739e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| among us ||| 0.00943396 0.0422459 1.69729e-06 9.17981e-07 2.718 ||| 0-0 ||| 212 1.17835e+06 +en ||| among ||| 0.0362025 0.0422459 0.000325879 0.0003185 2.718 ||| 0-0 ||| 10607 1.17835e+06 +en ||| amongst all ||| 0.00917431 0.050508 8.48644e-07 5.59487e-07 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| amongst either ||| 1 0.050508 8.48644e-07 1.02511e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| amongst lower levels of ||| 1 0.0310821 8.48644e-07 5.47266e-15 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| amongst other places , in various ||| 1 0.605812 8.48644e-07 1.95208e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| amongst other places , in ||| 0.5 0.605812 8.48644e-07 1.2643e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| amongst other things , ||| 0.00220264 0.050508 8.48644e-07 7.51807e-12 2.718 ||| 0-0 ||| 454 1.17835e+06 +en ||| amongst other things ||| 0.00163934 0.050508 8.48644e-07 6.30421e-11 2.718 ||| 0-0 ||| 610 1.17835e+06 +en ||| amongst other ||| 0.0042796 0.050508 2.54593e-06 1.53387e-07 2.718 ||| 0-0 ||| 701 1.17835e+06 +en ||| amongst the signatories ||| 0.166667 0.050508 8.48644e-07 1.30838e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| amongst the ||| 0.00112233 0.050508 8.48644e-07 7.26879e-06 2.718 ||| 0-0 ||| 891 1.17835e+06 +en ||| amongst them ||| 0.0163934 0.050508 8.48644e-07 3.17596e-07 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| amongst these ||| 0.0285714 0.050508 1.69729e-06 1.22793e-07 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| amongst us which ||| 1 0.050508 8.48644e-07 2.8988e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| amongst us ||| 0.0121951 0.050508 8.48644e-07 3.41252e-07 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| amongst ||| 0.0406528 0.050508 0.000116264 0.0001184 2.718 ||| 0-0 ||| 3370 1.17835e+06 +en ||| amount for ||| 0.02 0.0286209 8.48644e-07 2.79922e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| amount in ||| 0.0877193 0.605812 4.24322e-06 0.000112351 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| amount involved ||| 0.1 0.0101887 8.48644e-07 2.46706e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| amount of money spent on ||| 0.0833333 0.22993 8.48644e-07 1.15052e-14 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| amount of money spent to ||| 1 0.0247351 8.48644e-07 3.89402e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| amount of ||| 0.00331754 0.0116562 5.94051e-06 3.31788e-06 2.718 ||| 0-1 ||| 2110 1.17835e+06 +en ||| amount to anything more ||| 0.333333 0.0247351 8.48644e-07 2.45041e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| amount to anything ||| 0.333333 0.0247351 8.48644e-07 1.073e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| amount to in ||| 0.5 0.605812 8.48644e-07 9.98334e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| amount to ||| 0.0166667 0.0247351 6.78915e-06 6.83875e-06 2.718 ||| 0-1 ||| 480 1.17835e+06 +en ||| amount within ||| 1 0.369196 8.48644e-07 2.69739e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| amounting to ||| 0.00315457 0.0247351 8.48644e-07 3.93516e-07 2.718 ||| 0-1 ||| 317 1.17835e+06 +en ||| amounts in ||| 0.0357143 0.605812 8.48644e-07 2.79378e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| amounts of money will not help if ||| 1 0.0178573 8.48644e-07 3.50988e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| amounts to ||| 0.00498753 0.0247351 3.39458e-06 1.70055e-06 2.718 ||| 0-1 ||| 802 1.17835e+06 +en ||| amp ] A ) in ||| 1 0.605812 8.48644e-07 3.24934e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| ample opportunity in ||| 1 0.605812 8.48644e-07 2.40916e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ample resources in ||| 1 0.605812 8.48644e-07 9.58842e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| amusement at ||| 1 0.321886 8.48644e-07 1.60008e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| an Iraq at ||| 0.5 0.321886 8.48644e-07 2.24024e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| an acceptable ||| 0.025641 0.0002107 8.48644e-07 3.11129e-09 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| an accomplice in ||| 0.142857 0.605812 8.48644e-07 8.20991e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| an achievement for ||| 0.0769231 0.0286209 8.48644e-07 1.23241e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| an active part in ||| 0.00584795 0.605812 8.48644e-07 9.86127e-11 2.718 ||| 0-3 ||| 171 1.17835e+06 +en ||| an active role in ||| 0.00395257 0.605812 8.48644e-07 1.83627e-11 2.718 ||| 0-3 ||| 253 1.17835e+06 +en ||| an aeroplane with an exemption by another ||| 1 0.0535436 8.48644e-07 3.91255e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| an aeroplane with an exemption by ||| 1 0.0535436 8.48644e-07 1.62279e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| an aeroplane with an exemption ||| 1 0.0535436 8.48644e-07 3.09097e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| an aeroplane with an ||| 1 0.0535436 8.48644e-07 5.06717e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| an aeroplane with ||| 0.333333 0.0535436 8.48644e-07 1.14005e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| an agreement on ||| 0.00115607 0.22993 8.48644e-07 6.80298e-08 2.718 ||| 0-2 ||| 865 1.17835e+06 +en ||| an analysis of ||| 0.00392157 0.0116562 8.48644e-07 2.0487e-09 2.718 ||| 0-2 ||| 255 1.17835e+06 +en ||| an answer that talks ||| 0.25 0.0017499 8.48644e-07 9.15123e-15 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| an answer that ||| 0.0769231 0.0017499 8.48644e-07 3.47955e-10 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| an answer to ||| 0.0034965 0.0247351 8.48644e-07 9.35748e-09 2.718 ||| 0-2 ||| 286 1.17835e+06 +en ||| an anti-Israeli campaign in ||| 1 0.605812 8.48644e-07 2.53686e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| an appearance in ||| 0.25 0.605812 8.48644e-07 2.29878e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| an application made in ||| 1 0.605812 8.48644e-07 2.61412e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| an area in ||| 0.00877193 0.605812 4.24322e-06 8.52394e-07 2.718 ||| 0-2 ||| 570 1.17835e+06 +en ||| an area on ||| 0.0555556 0.22993 8.48644e-07 1.53298e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| an area where ||| 0.00238095 0.247783 8.48644e-07 1.57207e-08 2.718 ||| 0-2 ||| 420 1.17835e+06 +en ||| an article in ||| 0.0350877 0.605812 1.69729e-06 2.95557e-08 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| an article on non-discrimination in the Treaty ||| 1 0.605812 8.48644e-07 4.15696e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| an article on non-discrimination in the ||| 1 0.605812 8.48644e-07 4.85627e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| an article on non-discrimination in ||| 1 0.605812 8.48644e-07 7.91028e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| an article ||| 0.00357143 0.0141032 8.48644e-07 1.60454e-07 2.718 ||| 0-1 ||| 280 1.17835e+06 +en ||| an assessment of ||| 0.00307692 0.0116562 8.48644e-07 2.63664e-09 2.718 ||| 0-2 ||| 325 1.17835e+06 +en ||| an attack on ||| 0.00675676 0.22993 1.69729e-06 1.08892e-08 2.718 ||| 0-2 ||| 296 1.17835e+06 +en ||| an early warning system for ||| 0.111111 0.0286209 8.48644e-07 1.35177e-17 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| an economic and political threat to ||| 1 0.0247351 8.48644e-07 1.32822e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| an element of ||| 0.00625 0.0116562 8.48644e-07 2.63664e-09 2.718 ||| 0-2 ||| 160 1.17835e+06 +en ||| an emphasis on ||| 0.0103093 0.22993 8.48644e-07 1.88623e-08 2.718 ||| 0-2 ||| 97 1.17835e+06 +en ||| an enclave with ||| 1 0.0535436 8.48644e-07 5.70023e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| an end to the kind of ||| 1 0.0247351 8.48644e-07 8.85335e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| an end to the kind ||| 1 0.0247351 8.48644e-07 1.62853e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| an end to the ||| 0.0026455 0.0247351 8.48644e-07 3.33716e-09 2.718 ||| 0-2 ||| 378 1.17835e+06 +en ||| an end to this . as ||| 1 0.066968 8.48644e-07 6.04972e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| an end to ||| 0.00669643 0.0247351 5.09187e-06 5.43583e-08 2.718 ||| 0-2 ||| 896 1.17835e+06 +en ||| an enterprise in ||| 0.166667 0.605812 8.48644e-07 1.47778e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| an environment in which ||| 0.0322581 0.605812 8.48644e-07 9.72872e-10 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| an environment in ||| 0.0185185 0.605812 8.48644e-07 1.14528e-07 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| an equally cooperative spirit in ||| 1 0.605812 8.48644e-07 1.51372e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| an evaluation on ||| 0.333333 0.22993 8.48644e-07 5.46305e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| an even ||| 0.0157068 0.0045419 2.54593e-06 5.92923e-07 2.718 ||| 0-1 ||| 191 1.17835e+06 +en ||| an ever freer flow of goods in ||| 1 0.605812 8.48644e-07 1.91374e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| an example , in ||| 0.0588235 0.605812 8.48644e-07 7.12519e-08 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| an example for ||| 0.0125 0.0286209 8.48644e-07 1.4886e-08 2.718 ||| 0-2 ||| 80 1.17835e+06 +en ||| an example in ||| 0.0204082 0.605812 8.48644e-07 5.97476e-07 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| an example ||| 0.000479157 0.0003004 8.48644e-07 9.69363e-09 2.718 ||| 0-0 ||| 2087 1.17835e+06 +en ||| an excellent day out in ||| 0.5 0.605812 8.48644e-07 7.5331e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| an excellent opportunity to establish the necessary ||| 1 0.0247351 8.48644e-07 1.01311e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| an excellent opportunity to establish the ||| 1 0.0247351 8.48644e-07 3.93745e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| an excellent opportunity to establish ||| 1 0.0247351 8.48644e-07 6.41364e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| an excellent opportunity to ||| 0.00892857 0.0247351 8.48644e-07 8.40581e-13 2.718 ||| 0-3 ||| 112 1.17835e+06 +en ||| an excessively strong inclination to indulge in ||| 0.5 0.605812 8.48644e-07 1.51397e-24 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| an exemption in ||| 0.333333 0.605812 8.48644e-07 1.25201e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| an exhibition in ||| 0.125 0.605812 8.48644e-07 5.1312e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| an expensive study can turn into ||| 1 0.525896 8.48644e-07 2.55036e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| an expert opinion on ||| 0.5 0.22993 8.48644e-07 1.04171e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| an extension increase cultural diversity and ||| 1 0.0010182 8.48644e-07 2.03254e-24 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| an extension of ||| 0.00454545 0.0060403 8.48644e-07 4.24287e-11 2.718 ||| 0-1 0-2 ||| 220 1.17835e+06 +en ||| an extraordinary sitting on ||| 1 0.22993 8.48644e-07 2.02668e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| an ideal solution in ||| 1 0.605812 8.48644e-07 1.31194e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| an illness in ||| 0.5 0.605812 8.48644e-07 6.56793e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| an image of ||| 0.0166667 0.0116562 8.48644e-07 8.06145e-10 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| an impact on ||| 0.00714286 0.22993 1.69729e-06 3.04159e-08 2.718 ||| 0-2 ||| 280 1.17835e+06 +en ||| an important and necessary ||| 0.5 0.0010182 8.48644e-07 4.04782e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| an important and ||| 0.0163934 0.0010182 8.48644e-07 1.57319e-09 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| an important contribution towards both ||| 0.5 0.0616136 8.48644e-07 2.53222e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| an important contribution towards ||| 0.0277778 0.0616136 8.48644e-07 1.52866e-13 2.718 ||| 0-3 ||| 36 1.17835e+06 +en ||| an important element in ||| 0.010101 0.605812 8.48644e-07 3.42489e-11 2.718 ||| 0-3 ||| 99 1.17835e+06 +en ||| an important element of ||| 0.0140845 0.0116562 8.48644e-07 1.01141e-12 2.718 ||| 0-3 ||| 71 1.17835e+06 +en ||| an important partner of the European Union ||| 0.125 0.0116562 8.48644e-07 6.70457e-20 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| an important partner of the European ||| 1 0.0116562 8.48644e-07 1.20283e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| an important partner of the ||| 0.0588235 0.0116562 8.48644e-07 3.59709e-14 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| an important partner of ||| 0.0526316 0.0116562 8.48644e-07 5.85923e-13 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| an incentive for ||| 0.00704225 0.0286209 8.48644e-07 4.9603e-10 2.718 ||| 0-2 ||| 142 1.17835e+06 +en ||| an increase in ||| 0.00055371 0.605812 8.48644e-07 2.6518e-07 2.718 ||| 0-2 ||| 1806 1.17835e+06 +en ||| an independent channel . ||| 0.333333 0.0035211 8.48644e-07 4.61781e-16 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| an independent channel ||| 0.2 0.0035211 8.48644e-07 1.52453e-13 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| an indication of ||| 0.00568182 0.0116562 8.48644e-07 1.30923e-09 2.718 ||| 0-2 ||| 176 1.17835e+06 +en ||| an individual liable to tax in ||| 1 0.605812 8.48644e-07 2.75877e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| an injustice in ||| 1 0.605812 8.48644e-07 5.1312e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| an innovation , to ||| 1 0.0247351 8.48644e-07 1.71337e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| an inquiry into ||| 0.0212766 0.525896 8.48644e-07 4.6245e-10 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| an integral part ||| 0.0019802 0.0009084 8.48644e-07 8.06535e-13 2.718 ||| 0-2 ||| 505 1.17835e+06 +en ||| an interest in ||| 0.00831025 0.605812 2.54593e-06 2.30493e-07 2.718 ||| 0-2 ||| 361 1.17835e+06 +en ||| an issue at ||| 0.125 0.321886 8.48644e-07 1.34557e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| an item on ||| 0.05 0.22993 8.48644e-07 1.39529e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| an ivory tower mentality in ||| 1 0.605812 8.48644e-07 3.25113e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| an obligation , within ||| 1 0.369196 8.48644e-07 1.20469e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| an occupying power ||| 0.05 0.01875 8.48644e-07 4.04792e-12 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| an occupying ||| 0.125 0.01875 8.48644e-07 2.71127e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| an offence in ||| 0.0555556 0.605812 8.48644e-07 2.13458e-08 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| an ongoing supply of ||| 0.333333 0.216817 8.48644e-07 6.11375e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| an ongoing supply ||| 0.333333 0.216817 8.48644e-07 1.1246e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| an ongoing ||| 0.0116279 0.216817 8.48644e-07 2.18368e-06 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| an open process in which ||| 0.5 0.605812 8.48644e-07 1.2015e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| an open process in ||| 0.25 0.605812 8.48644e-07 1.41442e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| an open question to ||| 0.333333 0.0247351 8.48644e-07 1.66612e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| an operation consisting ||| 0.0833333 0.0149573 8.48644e-07 1.21394e-12 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| an opinion of the Committee on ||| 0.2 0.22993 8.48644e-07 4.61344e-14 2.718 ||| 0-5 ||| 5 1.17835e+06 +en ||| an opinion on ||| 0.00662252 0.22993 1.69729e-06 9.05833e-08 2.718 ||| 0-2 ||| 302 1.17835e+06 +en ||| an option in ||| 0.0625 0.605812 8.48644e-07 8.49726e-08 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| an organisation in ||| 0.0769231 0.605812 8.48644e-07 6.93738e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| an overall cut of ||| 1 0.0116562 8.48644e-07 2.90059e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| an overall increase in ||| 0.333333 0.605812 8.48644e-07 1.67859e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| an overall ||| 0.0105263 0.135441 8.48644e-07 2.82461e-06 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| an overview at ||| 0.5 0.321886 8.48644e-07 9.60103e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| an unprecedented debate in ||| 1 0.605812 8.48644e-07 1.17794e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| an ||| 0.000224984 0.0003004 2.88539e-05 3.33e-05 2.718 ||| 0-0 ||| 151122 1.17835e+06 +en ||| analysis of ||| 0.00236686 0.0116562 1.69729e-06 4.60931e-07 2.718 ||| 0-1 ||| 845 1.17835e+06 +en ||| anchored in ||| 0.0135135 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| and , I would say , ||| 0.0277778 0.0060084 8.48644e-07 2.42805e-12 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| and , I would say ||| 0.025 0.0060084 8.48644e-07 2.03602e-11 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| and , I would ||| 0.0384615 0.0060084 8.48644e-07 2.13017e-08 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| and , I ||| 0.00531915 0.0060084 8.48644e-07 3.62972e-06 2.718 ||| 0-2 ||| 188 1.17835e+06 +en ||| and , as ||| 0.0013844 0.066968 2.54593e-06 2.68698e-05 2.718 ||| 0-2 ||| 2167 1.17835e+06 +en ||| and , at ||| 0.0107527 0.321886 3.39458e-06 5.97539e-05 2.718 ||| 0-2 ||| 372 1.17835e+06 +en ||| and , given ||| 0.0125 0.0546585 8.48644e-07 1.73412e-06 2.718 ||| 0-2 ||| 80 1.17835e+06 +en ||| and , if ||| 0.000735835 0.0178573 8.48644e-07 1.73203e-06 2.718 ||| 0-2 ||| 1359 1.17835e+06 +en ||| and , in ||| 0.00264259 0.605812 1.01837e-05 0.000689796 2.718 ||| 0-2 ||| 4541 1.17835e+06 +en ||| and , indeed , one that is ||| 1 0.0010182 8.48644e-07 2.18541e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| and , indeed , one that ||| 1 0.0010182 8.48644e-07 6.97298e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| and , indeed , one ||| 0.5 0.0010182 8.48644e-07 4.14525e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| and , indeed , relating to ||| 1 0.0010182 8.48644e-07 1.0048e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| and , indeed , relating ||| 1 0.0010182 8.48644e-07 1.1308e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| and , indeed , ||| 0.00300752 0.0010182 1.69729e-06 9.94543e-09 2.718 ||| 0-0 ||| 665 1.17835e+06 +en ||| and , indeed ||| 0.00328407 0.0010182 1.69729e-06 8.33965e-08 2.718 ||| 0-0 ||| 609 1.17835e+06 +en ||| and , more generally , a common ||| 1 0.21041 8.48644e-07 3.79269e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and , more generally , a ||| 1 0.21041 8.48644e-07 1.64186e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and , more generally , ||| 0.00934579 0.21041 8.48644e-07 3.70407e-10 2.718 ||| 0-3 ||| 107 1.17835e+06 +en ||| and , more generally ||| 0.00925926 0.21041 8.48644e-07 3.10601e-09 2.718 ||| 0-3 ||| 108 1.17835e+06 +en ||| and , moreover , in ||| 0.333333 0.605812 8.48644e-07 8.90891e-09 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| and , on the other hand , ||| 0.0031348 0.22993 8.48644e-07 4.6665e-13 2.718 ||| 0-2 ||| 319 1.17835e+06 +en ||| and , on the other hand ||| 0.00332226 0.22993 8.48644e-07 3.91306e-12 2.718 ||| 0-2 ||| 301 1.17835e+06 +en ||| and , on the other ||| 0.00185874 0.22993 8.48644e-07 9.86651e-09 2.718 ||| 0-2 ||| 538 1.17835e+06 +en ||| and , on the ||| 0.0017094 0.22993 8.48644e-07 7.61599e-06 2.718 ||| 0-2 ||| 585 1.17835e+06 +en ||| and , on ||| 0.00282486 0.22993 2.54593e-06 0.000124055 2.718 ||| 0-2 ||| 1062 1.17835e+06 +en ||| and , secondly , because – as ||| 1 0.066968 8.48644e-07 1.48971e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| and , ultimately ||| 0.00649351 0.199943 8.48644e-07 1.43626e-06 2.718 ||| 0-2 ||| 154 1.17835e+06 +en ||| and , where I thought ||| 0.25 0.247783 8.48644e-07 7.47801e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and , where I ||| 0.25 0.247783 8.48644e-07 8.99881e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and , where ||| 0.00318471 0.247783 8.48644e-07 1.27219e-05 2.718 ||| 0-2 ||| 314 1.17835e+06 +en ||| and , ||| 0.000426606 0.0010182 1.01837e-05 0.000110036 2.718 ||| 0-0 ||| 28129 1.17835e+06 +en ||| and 39 to 44 in ||| 1 0.605812 8.48644e-07 2.68295e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and Access to Justice in Environmental ||| 1 0.605812 8.48644e-07 4.85707e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and Access to Justice in ||| 0.142857 0.605812 8.48644e-07 1.94283e-14 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| and Consumer Policy as ||| 1 0.066968 8.48644e-07 2.37734e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and Consumer Policy during ||| 1 0.226251 8.48644e-07 3.82124e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and Consumer Protection , on ||| 0.011236 0.22993 8.48644e-07 4.81385e-13 2.718 ||| 0-4 ||| 89 1.17835e+06 +en ||| and Defence Policy on 13 ||| 0.333333 0.22993 8.48644e-07 2.85858e-17 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| and Defence Policy on ||| 0.0285714 0.22993 8.48644e-07 3.04104e-12 2.718 ||| 0-3 ||| 35 1.17835e+06 +en ||| and Democrats for Europe ||| 0.00204082 0.0286209 8.48644e-07 7.7661e-12 2.718 ||| 0-2 ||| 490 1.17835e+06 +en ||| and Democrats for ||| 0.00215983 0.0286209 8.48644e-07 1.5348e-08 2.718 ||| 0-2 ||| 463 1.17835e+06 +en ||| and Democrats in ||| 0.0117647 0.605812 2.54593e-06 6.1602e-07 2.718 ||| 0-2 ||| 255 1.17835e+06 +en ||| and Energy in ||| 0.25 0.605812 8.48644e-07 1.37665e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and European Democrats in ||| 0.105263 0.605812 1.69729e-06 2.05991e-09 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| and European Democrats with ||| 0.333333 0.0535436 8.48644e-07 5.20079e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| and Gentlemen , in ||| 1 0.605812 8.48644e-07 4.82857e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and Herzegovina where ||| 1 0.247783 8.48644e-07 1.49349e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and Home Affairs , with ||| 0.111111 0.0535436 8.48644e-07 4.08566e-14 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| and I am referring here ||| 0.142857 0.0855319 8.48644e-07 1.46698e-14 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| and I am speaking on ||| 0.125 0.22993 8.48644e-07 1.07914e-12 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| and I do emphasize ||| 1 0.138965 8.48644e-07 3.16854e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and I have heard it on ||| 1 0.22993 8.48644e-07 1.23946e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and I quote : in ||| 1 0.605812 8.48644e-07 6.14591e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and I quote from ||| 0.111111 0.0308834 8.48644e-07 1.50364e-11 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| and I say ||| 0.00740741 0.0060084 8.48644e-07 2.90914e-08 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| and I shall not go into it ||| 0.2 0.266972 8.48644e-07 5.90337e-18 2.718 ||| 0-5 0-6 ||| 5 1.17835e+06 +en ||| and I shall shortly be reporting ||| 1 0.248793 8.48644e-07 4.40196e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and I shall shortly be ||| 1 0.248793 8.48644e-07 3.38612e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and I shall shortly ||| 1 0.248793 8.48644e-07 1.86842e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and I think ||| 0.000428082 0.0060084 8.48644e-07 1.1642e-08 2.718 ||| 0-1 ||| 2336 1.17835e+06 +en ||| and I trust ||| 0.00534759 0.192848 8.48644e-07 6.21011e-08 2.718 ||| 0-2 ||| 187 1.17835e+06 +en ||| and I would say to ||| 0.0666667 0.0247351 8.48644e-07 1.39697e-11 2.718 ||| 0-4 ||| 15 1.17835e+06 +en ||| and I ||| 0.000669643 0.0060084 7.6378e-06 3.04367e-05 2.718 ||| 0-1 ||| 13440 1.17835e+06 +en ||| and Immunities at ||| 1 0.321886 8.48644e-07 3.2569e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and International Agreement on ||| 1 0.22993 8.48644e-07 6.57712e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and Melilla ||| 0.0222222 0.0408163 8.48644e-07 3.38199e-08 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| and Mr Oostlander , on ||| 0.333333 0.22993 8.48644e-07 5.66884e-14 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| and Mr ||| 0.000473597 0.00059285 1.69729e-06 2.44516e-08 2.718 ||| 0-0 0-1 ||| 4223 1.17835e+06 +en ||| and Mrs Randzio-Plath , whether in relation ||| 1 0.605812 8.48644e-07 2.88866e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and Mrs Randzio-Plath , whether in ||| 1 0.605812 8.48644e-07 1.18728e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and Parliament 's budget , in ||| 1 0.605812 8.48644e-07 9.30477e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and Parliament at ||| 0.0714286 0.321886 8.48644e-07 2.87609e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| and Parliament would then block ||| 0.5 0.0010182 8.48644e-07 4.85534e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| and Parliament would then ||| 0.5 0.0010182 8.48644e-07 5.00551e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| and Parliament would ||| 0.142857 0.0010182 8.48644e-07 3.10824e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| and Parliament ||| 0.000289687 0.0010182 8.48644e-07 5.2963e-07 2.718 ||| 0-0 ||| 3452 1.17835e+06 +en ||| and Reform Party at ||| 0.333333 0.321886 8.48644e-07 2.90906e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| and Sport with a view to ||| 1 0.0535436 8.48644e-07 3.01357e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and Sport with a view ||| 1 0.0535436 8.48644e-07 3.39143e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and Sport with a ||| 1 0.0535436 8.48644e-07 3.75449e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and Sport with ||| 1 0.0535436 8.48644e-07 8.47022e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and Tourism considered ||| 1 0.0169998 8.48644e-07 2.28322e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and Trend ||| 1 0.0010182 8.48644e-07 3.6908e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| and Turkey ( over Kurdistan ) ||| 1 0.157937 8.48644e-07 1.63363e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and Turkey ( over Kurdistan ||| 1 0.157937 8.48644e-07 1.13659e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and Turkey ( over ||| 1 0.157937 8.48644e-07 2.84148e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and Working Conditions in ||| 0.125 0.605812 8.48644e-07 5.98089e-14 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| and a lack of transparency within ||| 0.5 0.369196 8.48644e-07 5.57485e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| and a member of ||| 0.037037 0.0116562 8.48644e-07 1.26142e-09 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| and a partner country under ||| 1 0.205566 8.48644e-07 2.84741e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and a unanimous one at ||| 0.5 0.321886 8.48644e-07 3.70284e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| and about ||| 0.00104603 0.0205873 8.48644e-07 2.64455e-06 2.718 ||| 0-0 0-1 ||| 956 1.17835e+06 +en ||| and above ||| 0.000747384 0.0146514 8.48644e-07 1.38035e-06 2.718 ||| 0-1 ||| 1338 1.17835e+06 +en ||| and accessories to honour ||| 1 0.0247351 8.48644e-07 9.2175e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and accessories to ||| 0.333333 0.0247351 8.48644e-07 4.92914e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| and accurately when ||| 0.333333 0.142731 8.48644e-07 4.5488e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| and across the ||| 0.0153846 0.137949 8.48644e-07 1.16368e-07 2.718 ||| 0-0 0-1 ||| 65 1.17835e+06 +en ||| and across ||| 0.00724638 0.137949 8.48644e-07 1.8955e-06 2.718 ||| 0-0 0-1 ||| 138 1.17835e+06 +en ||| and acting within ||| 0.5 0.369196 8.48644e-07 8.19338e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and addressed in ||| 0.166667 0.605812 8.48644e-07 3.10034e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| and again at ||| 0.142857 0.321886 8.48644e-07 2.89764e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| and again in ||| 0.0655738 0.605812 3.39458e-06 3.34502e-06 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| and again on ||| 0.125 0.22993 8.48644e-07 6.0158e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| and again through ||| 0.5 0.0366102 8.48644e-07 6.812e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and again to ||| 0.0833333 0.0247351 8.48644e-07 2.03609e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| and against ||| 0.0011976 0.153982 8.48644e-07 7.26364e-05 2.718 ||| 0-1 ||| 835 1.17835e+06 +en ||| and aimed at ||| 0.025641 0.321886 8.48644e-07 3.48237e-08 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| and all the best in ||| 1 0.605812 8.48644e-07 2.32404e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and also elsewhere in ||| 1 0.605812 8.48644e-07 1.0834e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and also in relation ||| 0.166667 0.605812 8.48644e-07 7.1049e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| and also in ||| 0.00305344 0.605812 1.69729e-06 2.92022e-05 2.718 ||| 0-2 ||| 655 1.17835e+06 +en ||| and also under ||| 0.5 0.205566 8.48644e-07 3.57587e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and also with ||| 0.00446429 0.0535436 8.48644e-07 7.37289e-07 2.718 ||| 0-2 ||| 224 1.17835e+06 +en ||| and although ||| 0.00425532 0.0040507 8.48644e-07 5.96233e-07 2.718 ||| 0-1 ||| 235 1.17835e+06 +en ||| and am ||| 0.00480769 0.0010182 8.48644e-07 1.17875e-06 2.718 ||| 0-0 ||| 208 1.17835e+06 +en ||| and amending ||| 0.00512821 0.0004602 8.48644e-07 8.76813e-09 2.718 ||| 0-1 ||| 195 1.17835e+06 +en ||| and an ||| 0.000349895 0.0010182 8.48644e-07 4.10112e-06 2.718 ||| 0-0 ||| 2858 1.17835e+06 +en ||| and another in ||| 0.142857 0.605812 1.69729e-06 1.39458e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| and appears in ||| 0.333333 0.605812 8.48644e-07 3.01936e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| and are in ||| 0.0114943 0.605812 8.48644e-07 8.77623e-05 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| and are included in ||| 0.25 0.605812 8.48644e-07 8.24088e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| and are not in the ||| 1 0.605812 8.48644e-07 1.83948e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and are not in ||| 0.333333 0.605812 8.48644e-07 2.99629e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| and are now in place ||| 1 0.605812 8.48644e-07 2.72076e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and are now in ||| 0.166667 0.605812 8.48644e-07 1.80782e-07 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| and are ||| 0.000343879 0.0010182 8.48644e-07 1.39999e-05 2.718 ||| 0-0 ||| 2908 1.17835e+06 +en ||| and as giving ||| 1 0.066968 8.48644e-07 3.55096e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and as such ||| 0.00704225 0.066968 8.48644e-07 4.66153e-07 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| and as ||| 0.00357654 0.066968 8.48644e-06 0.000225315 2.718 ||| 0-1 ||| 2796 1.17835e+06 +en ||| and assist it in ||| 1 0.605812 8.48644e-07 1.92352e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and at the ||| 0.000948767 0.321886 8.48644e-07 3.0761e-05 2.718 ||| 0-1 ||| 1054 1.17835e+06 +en ||| and at ||| 0.0103725 0.321886 1.86702e-05 0.000501061 2.718 ||| 0-1 ||| 2121 1.17835e+06 +en ||| and auditing in ||| 0.5 0.605812 8.48644e-07 8.09791e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and autonomous preferences in ||| 1 0.605812 8.48644e-07 5.2058e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and back in ||| 0.5 0.605812 8.48644e-07 3.89047e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and balances in ||| 0.25 0.605812 8.48644e-07 1.67742e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and become ||| 0.0037594 0.219193 8.48644e-07 4.78928e-05 2.718 ||| 0-1 ||| 266 1.17835e+06 +en ||| and belief in ||| 0.0833333 0.605812 8.48644e-07 1.5386e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| and benefits are all ||| 0.5 0.0010182 8.48644e-07 2.61973e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| and benefits are ||| 0.5 0.0010182 8.48644e-07 5.54394e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| and benefits ||| 0.00444444 0.0010182 8.48644e-07 3.65389e-08 2.718 ||| 0-0 ||| 225 1.17835e+06 +en ||| and best practice in ||| 0.166667 0.605812 8.48644e-07 8.44375e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| and better ||| 0.000826446 0.0010182 8.48644e-07 1.56767e-07 2.718 ||| 0-0 ||| 1210 1.17835e+06 +en ||| and between ||| 0.00144509 0.0010182 8.48644e-07 2.43408e-07 2.718 ||| 0-0 ||| 692 1.17835e+06 +en ||| and bounds at ||| 0.5 0.321886 8.48644e-07 4.70997e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and build on ||| 0.0454545 0.22993 8.48644e-07 4.11941e-08 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| and by , ||| 0.333333 0.0468744 8.48644e-07 1.27077e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| and by making them feel confident ||| 1 0.0468744 8.48644e-07 9.29715e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and by making them feel ||| 1 0.0468744 8.48644e-07 1.85943e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and by making them ||| 0.5 0.0468744 8.48644e-07 1.0996e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| and by making ||| 0.0285714 0.0468744 8.48644e-07 4.09933e-08 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| and by ||| 0.00118659 0.0468744 3.39458e-06 0.000106559 2.718 ||| 0-1 ||| 3371 1.17835e+06 +en ||| and came across ||| 1 0.274879 8.48644e-07 3.24223e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and capacity for ||| 0.0344828 0.0286209 8.48644e-07 1.05347e-08 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| and catches from ||| 1 0.0308834 8.48644e-07 2.24013e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and chaired by ||| 0.111111 0.0468744 8.48644e-07 3.40989e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| and chances in ||| 1 0.605812 8.48644e-07 2.89211e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and change ||| 0.00480769 0.0010182 8.48644e-07 1.12569e-07 2.718 ||| 0-0 ||| 208 1.17835e+06 +en ||| and clarification is needed in ||| 1 0.605812 8.48644e-07 2.96142e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and clear in ||| 0.0666667 0.605812 8.48644e-07 1.92557e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| and come to ||| 0.0147059 0.0247351 8.48644e-07 2.99023e-07 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| and commitment on ||| 0.142857 0.22993 8.48644e-07 5.80463e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| and concentrate activity in ||| 1 0.605812 8.48644e-07 4.80553e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and consist ||| 0.25 0.206133 8.48644e-07 1.03088e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| and contradiction of ||| 1 0.0116562 8.48644e-07 3.75795e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and converted in ||| 0.5 0.605812 8.48644e-07 2.48722e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and create ||| 0.00126904 0.0010182 8.48644e-07 1.03896e-07 2.718 ||| 0-0 ||| 788 1.17835e+06 +en ||| and dealing in ||| 0.333333 0.605812 8.48644e-07 5.9751e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| and decisive action taken against it ||| 0.333333 0.0080472 8.48644e-07 2.77085e-20 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| and defence policy on the one hand ||| 1 0.22993 8.48644e-07 1.04736e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and defence policy on the one ||| 1 0.22993 8.48644e-07 2.64085e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and defence policy on the ||| 1 0.22993 8.48644e-07 6.33602e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and defence policy on ||| 1 0.22993 8.48644e-07 1.03206e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and democracy in ||| 0.00483092 0.605812 8.48644e-07 1.68321e-07 2.718 ||| 0-2 ||| 207 1.17835e+06 +en ||| and develop as a parliament - in ||| 1 0.605812 8.48644e-07 1.4556e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| and developing on ||| 0.5 0.22993 8.48644e-07 5.64859e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and developing ||| 0.0020284 0.279045 8.48644e-07 5.77707e-05 2.718 ||| 0-1 ||| 493 1.17835e+06 +en ||| and die on ||| 0.25 0.22993 8.48644e-07 1.19629e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and discussions are taking place at ||| 1 0.321886 8.48644e-07 2.01316e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and disproportionate in ||| 0.5 0.605812 8.48644e-07 1.44606e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and do so in ||| 0.1 0.605812 8.48644e-07 4.51002e-08 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| and do so to ||| 0.5 0.0247351 8.48644e-07 2.74522e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| and does so in ||| 0.166667 0.605812 8.48644e-07 9.2083e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| and does ||| 0.00357143 0.0010182 8.48644e-07 6.47182e-07 2.718 ||| 0-0 ||| 280 1.17835e+06 +en ||| and done , ||| 0.0119048 0.0010182 8.48644e-07 5.01766e-08 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| and done on ||| 1 0.22993 8.48644e-07 4.74357e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and done ||| 0.00793651 0.0010182 8.48644e-07 4.20751e-07 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| and driving them to ||| 0.5 0.0247351 8.48644e-07 3.12604e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| and eastwards in recent years ||| 1 0.605812 8.48644e-07 5.263e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and eastwards in recent ||| 1 0.605812 8.48644e-07 3.09225e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and eastwards in ||| 1 0.605812 8.48644e-07 6.36265e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and effect in ||| 1 0.605812 8.48644e-07 1.92962e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and effectively in ||| 0.047619 0.605812 8.48644e-07 4.1415e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| and elsewhere ||| 0.00302115 0.226899 1.69729e-06 9.87792e-06 2.718 ||| 0-1 ||| 662 1.17835e+06 +en ||| and emphasis on those players to ||| 1 0.22993 8.48644e-07 5.78021e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and emphasis on those players ||| 1 0.22993 8.48644e-07 6.50499e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and emphasis on those ||| 1 0.22993 8.48644e-07 3.8491e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and emphasis on ||| 0.333333 0.22993 8.48644e-07 5.31571e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| and energy on ||| 0.25 0.22993 8.48644e-07 9.24788e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and engage in ||| 0.025641 0.605812 8.48644e-07 2.81113e-07 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| and engineers in ||| 1 0.605812 8.48644e-07 2.31369e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and entrenched in ||| 0.25 0.605812 8.48644e-07 1.85095e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and especially Christians , ||| 1 0.13965 8.48644e-07 1.08637e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and especially Christians ||| 1 0.13965 8.48644e-07 9.10964e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and especially ||| 0.000539084 0.13965 8.48644e-07 2.84676e-05 2.718 ||| 0-1 ||| 1855 1.17835e+06 +en ||| and establish ||| 0.00359712 0.0010182 8.48644e-07 7.0402e-08 2.718 ||| 0-0 ||| 278 1.17835e+06 +en ||| and evening together with ||| 0.5 0.0535436 8.48644e-07 1.95595e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| and everywhere else ||| 0.05 0.256283 8.48644e-07 7.28238e-10 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| and everywhere ||| 0.025641 0.256283 8.48644e-07 6.17151e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| and evolving ||| 0.0769231 0.145631 8.48644e-07 3.83293e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| and expectations ||| 0.00584795 0.0010182 8.48644e-07 6.64344e-09 2.718 ||| 0-0 ||| 171 1.17835e+06 +en ||| and expertise of the ||| 0.125 0.0116562 8.48644e-07 7.13094e-11 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| and expertise of ||| 0.0833333 0.0116562 8.48644e-07 1.16155e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| and fight on ||| 0.25 0.22993 8.48644e-07 5.73181e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and finally ||| 0.00126743 0.003524 8.48644e-07 1.11739e-07 2.718 ||| 0-0 0-1 ||| 789 1.17835e+06 +en ||| and finished in ||| 1 0.605812 8.48644e-07 4.56954e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and focus on ||| 0.011236 0.22993 8.48644e-07 8.05158e-08 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| and focusing ||| 0.0294118 0.010479 8.48644e-07 1.18996e-07 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| and following ||| 0.0045045 0.0089387 8.48644e-07 1.14236e-06 2.718 ||| 0-1 ||| 222 1.17835e+06 +en ||| and for all ||| 0.0058997 0.0286209 1.69729e-06 6.80991e-07 2.718 ||| 0-1 ||| 339 1.17835e+06 +en ||| and for ||| 0.000805802 0.0286209 7.6378e-06 0.000144113 2.718 ||| 0-1 ||| 11169 1.17835e+06 +en ||| and foremost . to ||| 1 0.0247351 8.48644e-07 4.14851e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and foremost at ||| 0.111111 0.321886 8.48644e-07 1.94913e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| and from ||| 0.000636132 0.0308834 8.48644e-07 4.76623e-05 2.718 ||| 0-1 ||| 1572 1.17835e+06 +en ||| and gentlemen , will take place within ||| 1 0.369196 8.48644e-07 2.39885e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| and given ||| 0.00253807 0.0546585 8.48644e-07 1.45413e-05 2.718 ||| 0-1 ||| 394 1.17835e+06 +en ||| and gloom ||| 0.0625 0.0010182 8.48644e-07 6.4589e-10 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| and government directly in ||| 1 0.605812 8.48644e-07 1.74696e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and greater ||| 0.00132275 0.0010182 8.48644e-07 1.2152e-07 2.718 ||| 0-0 ||| 756 1.17835e+06 +en ||| and has ||| 0.000353107 0.0010182 8.48644e-07 4.7496e-06 2.718 ||| 0-0 ||| 2832 1.17835e+06 +en ||| and have thus ||| 0.0666667 0.0107888 8.48644e-07 2.19168e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| and have ||| 0.000394011 0.0010182 8.48644e-07 1.10353e-05 2.718 ||| 0-0 ||| 2538 1.17835e+06 +en ||| and having it ready for ||| 1 0.0286209 8.48644e-07 4.34712e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and help in ||| 0.0454545 0.605812 8.48644e-07 1.10305e-06 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| and hence fitting in ||| 1 0.605812 8.48644e-07 1.07864e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and hence ||| 0.00292826 0.0144794 1.69729e-06 8.01658e-07 2.718 ||| 0-1 ||| 683 1.17835e+06 +en ||| and here the national state is ||| 1 0.0855319 8.48644e-07 2.34696e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and here the national state ||| 1 0.0855319 8.48644e-07 7.48844e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and here the national ||| 1 0.0855319 8.48644e-07 2.96455e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and here the ||| 0.0333333 0.0855319 8.48644e-07 2.30704e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| and here ||| 0.00790514 0.0855319 5.09187e-06 3.7579e-05 2.718 ||| 0-1 ||| 759 1.17835e+06 +en ||| and how far ||| 0.0344828 0.0035231 8.48644e-07 1.04156e-09 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| and how ||| 0.000380662 0.0035231 8.48644e-07 1.52565e-06 2.718 ||| 0-1 ||| 2627 1.17835e+06 +en ||| and human dignity in ||| 0.047619 0.605812 8.48644e-07 5.13917e-12 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| and human rights . in ||| 1 0.605812 8.48644e-07 4.3262e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and if she does so on ||| 1 0.22993 8.48644e-07 3.93414e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and if ||| 0.000348432 0.00943775 8.48644e-07 1.06987e-06 2.718 ||| 0-0 0-1 ||| 2870 1.17835e+06 +en ||| and implementing power generation projects based on ||| 1 0.22993 8.48644e-07 9.105e-25 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| and in , ||| 1 0.605812 8.48644e-07 0.000689796 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and in a determined manner ||| 1 0.605812 8.48644e-07 1.70987e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and in a determined ||| 1 0.605812 8.48644e-07 8.76855e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and in a global context . ||| 0.5 0.605812 8.48644e-07 4.76288e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| and in a global context ||| 0.2 0.605812 8.48644e-07 1.57243e-12 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| and in a global ||| 1 0.605812 8.48644e-07 1.1717e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and in a ||| 0.00755668 0.605812 2.54593e-06 0.00025639 2.718 ||| 0-1 ||| 397 1.17835e+06 +en ||| and in an ||| 0.016129 0.605812 8.48644e-07 2.57091e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| and in doing ||| 0.0769231 0.605812 8.48644e-07 2.12339e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| and in fact ||| 0.0117647 0.605812 1.69729e-06 1.69437e-05 2.718 ||| 0-1 ||| 170 1.17835e+06 +en ||| and in free and democratic states it ||| 0.5 0.605812 8.48644e-07 3.37794e-19 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| and in free and democratic states ||| 0.5 0.605812 8.48644e-07 1.89951e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| and in free and democratic ||| 0.5 0.605812 8.48644e-07 2.52594e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| and in free and ||| 0.5 0.605812 8.48644e-07 8.44797e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| and in free ||| 0.333333 0.605812 8.48644e-07 6.74441e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| and in particular a ||| 0.125 0.605812 8.48644e-07 1.57783e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| and in particular with ||| 0.025641 0.605812 8.48644e-07 2.27619e-08 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| and in particular ||| 0.000994036 0.605812 1.69729e-06 3.55961e-06 2.718 ||| 0-1 ||| 2012 1.17835e+06 +en ||| and in practical terms ||| 0.142857 0.605812 8.48644e-07 2.78711e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| and in practical ||| 1 0.605812 8.48644e-07 2.53927e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and in practice , ||| 0.166667 0.605812 8.48644e-07 7.27045e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| and in practice ||| 0.0192308 0.605812 8.48644e-07 6.09657e-07 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| and in relation ||| 0.0153846 0.605812 8.48644e-07 1.4073e-06 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| and in some ||| 0.00526316 0.605812 8.48644e-07 6.30076e-06 2.718 ||| 0-1 ||| 190 1.17835e+06 +en ||| and in such an appalling ||| 1 0.605812 8.48644e-07 4.99983e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and in such an ||| 1 0.605812 8.48644e-07 5.31896e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and in such ||| 0.0322581 0.605812 8.48644e-07 1.1967e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| and in terms of ||| 0.0033557 0.605812 8.48644e-07 3.45144e-07 2.718 ||| 0-1 ||| 298 1.17835e+06 +en ||| and in terms ||| 0.0031746 0.605812 8.48644e-07 6.34876e-06 2.718 ||| 0-1 ||| 315 1.17835e+06 +en ||| and in that ||| 0.0100503 0.605812 1.69729e-06 9.72999e-05 2.718 ||| 0-1 ||| 199 1.17835e+06 +en ||| and in the course of ||| 0.0625 0.605812 8.48644e-07 2.4357e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| and in the course ||| 0.0588235 0.605812 8.48644e-07 4.48035e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| and in the future , ||| 0.0217391 0.605812 8.48644e-07 1.12476e-08 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| and in the future ||| 0.00543478 0.605812 8.48644e-07 9.43156e-08 2.718 ||| 0-1 ||| 184 1.17835e+06 +en ||| and in the ||| 0.0013132 0.605812 5.09187e-06 0.000355104 2.718 ||| 0-1 ||| 4569 1.17835e+06 +en ||| and in this respect ||| 0.0116279 0.605812 8.48644e-07 1.61681e-08 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| and in this ||| 0.00330033 0.605812 1.69729e-06 3.73742e-05 2.718 ||| 0-1 ||| 606 1.17835e+06 +en ||| and in ||| 0.0105528 0.605812 0.000163788 0.00578422 2.718 ||| 0-1 ||| 18289 1.17835e+06 +en ||| and indeed this has been done ||| 0.5 0.0465082 8.48644e-07 7.61877e-17 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| and indeed this has been ||| 0.333333 0.0465082 8.48644e-07 1.67078e-13 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| and indeed this has ||| 0.5 0.0465082 8.48644e-07 5.00354e-11 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| and indeed this ||| 0.0769231 0.0465082 1.69729e-06 9.72034e-09 2.718 ||| 0-0 0-1 ||| 26 1.17835e+06 +en ||| and indeed ||| 0.00132802 0.0465082 1.69729e-06 1.50437e-06 2.718 ||| 0-0 0-1 ||| 1506 1.17835e+06 +en ||| and indulging in ||| 0.5 0.605812 8.48644e-07 2.71859e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and influence in ||| 0.1 0.605812 8.48644e-07 1.9782e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| and into ||| 0.012987 0.525896 2.54593e-06 0.00027729 2.718 ||| 0-1 ||| 231 1.17835e+06 +en ||| and introduce ||| 0.00515464 0.0010182 8.48644e-07 4.715e-08 2.718 ||| 0-0 ||| 194 1.17835e+06 +en ||| and is in the ||| 0.0625 0.605812 8.48644e-07 1.11293e-05 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| and is in ||| 0.0288462 0.605812 2.54593e-06 0.000181284 2.718 ||| 0-2 ||| 104 1.17835e+06 +en ||| and is just as ||| 0.25 0.066968 8.48644e-07 8.90963e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| and is something on ||| 0.5 0.22993 8.48644e-07 1.80456e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| and is the case in ||| 1 0.605812 8.48644e-07 1.19073e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and is there any added value with ||| 1 0.0535436 8.48644e-07 1.32815e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| and is therefore in ||| 0.333333 0.605812 8.48644e-07 1.51608e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| and is ||| 0.000202634 0.0010182 8.48644e-07 2.89184e-05 2.718 ||| 0-0 ||| 4935 1.17835e+06 +en ||| and islands as ||| 1 0.066968 8.48644e-07 1.77999e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and it has nothing to do with ||| 0.2 0.0535436 8.48644e-07 7.59419e-16 2.718 ||| 0-6 ||| 5 1.17835e+06 +en ||| and it has ||| 0.00146628 0.0045327 8.48644e-07 1.30989e-08 2.718 ||| 0-0 0-1 ||| 682 1.17835e+06 +en ||| and it is also keen to ||| 1 0.0247351 8.48644e-07 2.60552e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and it is in the ||| 0.0526316 0.605812 8.48644e-07 1.97915e-07 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| and it is in ||| 0.0227273 0.605812 1.69729e-06 3.22381e-06 2.718 ||| 0-3 ||| 88 1.17835e+06 +en ||| and it is significant not only as ||| 1 0.0080472 8.48644e-07 2.41837e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and it is significant not only ||| 1 0.0080472 8.48644e-07 2.36992e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and it is significant not ||| 1 0.0080472 8.48644e-07 2.12912e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and it is significant ||| 0.111111 0.0080472 8.48644e-07 6.23626e-11 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| and it is ||| 0.00050025 0.0080472 2.54593e-06 1.08268e-06 2.718 ||| 0-1 ||| 5997 1.17835e+06 +en ||| and it ||| 0.001334 0.0080472 6.78915e-06 3.45452e-05 2.718 ||| 0-1 ||| 5997 1.17835e+06 +en ||| and join with them in ||| 0.2 0.605812 8.48644e-07 4.64324e-12 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| and judicial ||| 0.0022779 0.0010182 8.48644e-07 1.19951e-08 2.718 ||| 0-0 ||| 439 1.17835e+06 +en ||| and just as well too ||| 0.25 0.066968 8.48644e-07 6.13476e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and just as well ||| 0.25 0.066968 8.48644e-07 4.50754e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and just as ||| 0.0487805 0.066968 1.69729e-06 2.84279e-07 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| and kicking in ||| 1 0.605812 8.48644e-07 1.27253e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and large , at ||| 0.5 0.321886 8.48644e-07 9.18417e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| and large ||| 0.00291545 0.0010182 8.48644e-07 1.41819e-07 2.718 ||| 0-0 ||| 343 1.17835e+06 +en ||| and leading ( in ||| 1 0.605812 8.48644e-07 4.8587e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and leave this ||| 0.2 0.0010182 8.48644e-07 5.66384e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| and leave ||| 0.00543478 0.0010182 8.48644e-07 8.76565e-08 2.718 ||| 0-0 ||| 184 1.17835e+06 +en ||| and let us ||| 0.00854701 0.0010182 8.48644e-07 1.0861e-09 2.718 ||| 0-0 ||| 117 1.17835e+06 +en ||| and let ||| 0.00344828 0.0010182 8.48644e-07 3.76831e-07 2.718 ||| 0-0 ||| 290 1.17835e+06 +en ||| and liberty in the ||| 1 0.605812 8.48644e-07 3.58655e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and liberty in ||| 0.333333 0.605812 8.48644e-07 5.84207e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| and look at that , if you ||| 0.5 0.321886 8.48644e-07 7.90493e-16 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and look at that , if ||| 0.5 0.321886 8.48644e-07 2.44833e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and look at that , ||| 0.5 0.321886 8.48644e-07 2.93003e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and look at that ||| 0.333333 0.321886 8.48644e-07 2.45695e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| and look at ||| 0.00854701 0.321886 8.48644e-07 1.46059e-07 2.718 ||| 0-2 ||| 117 1.17835e+06 +en ||| and looking to ||| 0.166667 0.0247351 8.48644e-07 3.72502e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| and mainly ||| 0.0217391 0.0020622 8.48644e-07 1.00574e-08 2.718 ||| 0-0 0-1 ||| 46 1.17835e+06 +en ||| and make it ||| 0.0035461 0.0080472 8.48644e-07 6.00326e-08 2.718 ||| 0-2 ||| 282 1.17835e+06 +en ||| and make ||| 0.000626566 0.0010182 8.48644e-07 1.60347e-06 2.718 ||| 0-0 ||| 1596 1.17835e+06 +en ||| and management ||| 0.00214592 0.0010182 8.48644e-07 4.05065e-08 2.718 ||| 0-0 ||| 466 1.17835e+06 +en ||| and marketed to clients in a ||| 1 0.605812 8.48644e-07 5.51334e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and marketed to clients in ||| 1 0.605812 8.48644e-07 1.24382e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and medium sized enterprises in ||| 0.2 0.605812 8.48644e-07 1.71104e-18 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| and medium-sized enterprises and hence fitting in ||| 1 0.605812 8.48644e-07 2.51709e-24 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| and men at ||| 0.2 0.321886 8.48644e-07 2.12951e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| and monitored in ||| 0.25 0.605812 8.48644e-07 7.05675e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and more as ||| 0.0555556 0.066968 8.48644e-07 5.14551e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| and more common for ||| 0.5 0.0286209 8.48644e-07 7.60246e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| and more in ||| 0.0526316 0.605812 1.69729e-06 1.32094e-05 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| and more of ||| 0.0131579 0.0116562 8.48644e-07 3.90092e-07 2.718 ||| 0-2 ||| 76 1.17835e+06 +en ||| and more ||| 0.000169578 0.0042952 8.48644e-07 4.16737e-06 2.718 ||| 0-1 ||| 5897 1.17835e+06 +en ||| and must be in ||| 0.166667 0.605812 8.48644e-07 1.6202e-07 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| and must retain during ||| 1 0.226251 8.48644e-07 8.67623e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and necessary ||| 0.00164745 0.0010182 8.48644e-07 2.37411e-07 2.718 ||| 0-0 ||| 607 1.17835e+06 +en ||| and not a formal recommendation to ||| 1 0.0247351 8.48644e-07 1.39571e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and not on ||| 0.00395257 0.22993 8.48644e-07 3.55154e-06 2.718 ||| 0-2 ||| 253 1.17835e+06 +en ||| and not only in doing ||| 0.2 0.605812 8.48644e-07 8.06938e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| and not only in ||| 0.00729927 0.605812 8.48644e-07 2.19814e-08 2.718 ||| 0-3 ||| 137 1.17835e+06 +en ||| and not only ||| 0.00128205 0.00092375 8.48644e-07 1.86616e-10 2.718 ||| 0-0 0-1 ||| 780 1.17835e+06 +en ||| and not ||| 0.000363967 0.00092375 3.39458e-06 1.67655e-07 2.718 ||| 0-0 0-1 ||| 10990 1.17835e+06 +en ||| and notes in ||| 0.5 0.605812 8.48644e-07 8.32928e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and now , as ||| 0.0909091 0.0010182 8.48644e-07 2.31297e-09 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| and now , in ||| 0.111111 0.605812 1.69729e-06 1.42091e-06 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| and now , ||| 0.0041841 0.0010182 8.48644e-07 2.26664e-07 2.718 ||| 0-0 ||| 239 1.17835e+06 +en ||| and now on ||| 0.0769231 0.22993 8.48644e-07 2.14282e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| and now ||| 0.000979432 0.0010182 1.69729e-06 1.90067e-06 2.718 ||| 0-0 ||| 2042 1.17835e+06 +en ||| and number ||| 0.03125 0.0011038 8.48644e-07 2.55528e-07 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| and of meticulous training , with ||| 1 0.0535436 8.48644e-07 1.33687e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and of ||| 0.000245912 0.0116562 1.69729e-06 0.000170816 2.718 ||| 0-1 ||| 8133 1.17835e+06 +en ||| and on a ||| 0.00520833 0.0010182 8.48644e-07 2.73658e-07 2.718 ||| 0-0 ||| 192 1.17835e+06 +en ||| and on the ||| 0.000838926 0.22993 1.69729e-06 6.38632e-05 2.718 ||| 0-1 ||| 2384 1.17835e+06 +en ||| and on ||| 0.00616449 0.22993 3.47944e-05 0.00104026 2.718 ||| 0-1 ||| 6651 1.17835e+06 +en ||| and one about ||| 0.125 0.0401564 8.48644e-07 1.49633e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| and one in ||| 0.0485437 0.605812 4.24322e-06 2.41086e-05 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| and order in ||| 0.03125 0.605812 8.48644e-07 3.08068e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| and over again , in ||| 0.5 0.605812 8.48644e-07 1.92075e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| and over again ||| 0.00714286 0.157937 8.48644e-07 2.90271e-08 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| and over ||| 0.00398406 0.157937 1.69729e-06 5.01938e-05 2.718 ||| 0-1 ||| 502 1.17835e+06 +en ||| and parcel of ||| 0.0151515 0.0116562 8.48644e-07 1.04198e-09 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| and particularly ||| 0.00066357 0.0921813 8.48644e-07 4.12059e-06 2.718 ||| 0-0 0-1 ||| 1507 1.17835e+06 +en ||| and per week ; in ||| 1 0.605812 8.48644e-07 2.41502e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and political threat to ||| 1 0.0247351 8.48644e-07 2.46359e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and population increase in ||| 1 0.605812 8.48644e-07 4.59603e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and practical examples in ||| 1 0.605812 8.48644e-07 4.39294e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and practical ||| 0.00275482 0.0011259 8.48644e-07 6.01243e-08 2.718 ||| 0-1 ||| 363 1.17835e+06 +en ||| and prevailing ||| 0.142857 0.0297806 8.48644e-07 1.61584e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| and primarily on ||| 0.333333 0.22993 8.48644e-07 1.87246e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| and processes in ||| 0.333333 0.605812 8.48644e-07 9.37044e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| and properly in ||| 0.25 0.605812 8.48644e-07 4.30925e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and propose to do so in ||| 1 0.605812 8.48644e-07 1.35454e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and provided information on ||| 1 0.22993 8.48644e-07 3.94596e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and put into ||| 0.02 0.525896 8.48644e-07 3.0574e-07 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| and race , in counterterrorism , law ||| 1 0.605812 8.48644e-07 6.03312e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and race , in counterterrorism , ||| 1 0.605812 8.48644e-07 3.42207e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and race , in counterterrorism ||| 1 0.605812 8.48644e-07 2.86955e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and race , in ||| 0.333333 0.605812 8.48644e-07 7.17388e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| and recognition at ||| 0.25 0.321886 8.48644e-07 1.40798e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and reduce as ||| 0.5 0.066968 8.48644e-07 8.58449e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and regions in ||| 0.0909091 0.605812 1.69729e-06 4.7662e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| and remedial role in ||| 1 0.605812 8.48644e-07 2.82501e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and render ||| 0.0625 0.0010182 8.48644e-07 8.3043e-09 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| and respect here in Europe . ||| 1 0.605812 8.48644e-07 7.7769e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and respect here in Europe ||| 1 0.605812 8.48644e-07 2.56748e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and respect here in ||| 1 0.605812 8.48644e-07 5.07407e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and responsibilities with ||| 1 0.0535436 8.48644e-07 3.47571e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and running in ||| 0.0833333 0.605812 8.48644e-07 4.41336e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| and sanctions for ||| 0.0833333 0.0286209 8.48644e-07 2.33463e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| and satisfaction in ||| 0.25 0.605812 8.48644e-07 6.88323e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and secondly because , in ||| 1 0.605812 8.48644e-07 8.16001e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and secure ||| 0.00330033 0.0010182 8.48644e-07 4.65041e-08 2.718 ||| 0-0 ||| 303 1.17835e+06 +en ||| and seize upon ||| 0.333333 0.114601 8.48644e-07 7.19657e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| and services . in ||| 1 0.605812 1.69729e-06 1.55056e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| and services under ||| 1 0.205566 8.48644e-07 6.26836e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and seventy countries ||| 0.5 0.0434783 8.48644e-07 1.28414e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| and seventy ||| 0.166667 0.0434783 8.48644e-07 3.38199e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| and should have been characterised by ||| 1 0.0468744 8.48644e-07 3.18673e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and should have stressed factual information and ||| 1 0.127203 8.48644e-07 7.77137e-22 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and should have stressed factual information ||| 1 0.127203 8.48644e-07 6.20424e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and should have stressed factual ||| 1 0.127203 8.48644e-07 3.74879e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and should have stressed ||| 1 0.127203 8.48644e-07 1.49952e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and should participate , especially when ||| 1 0.142731 8.48644e-07 7.62564e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and simply in ||| 0.5 0.605812 8.48644e-07 1.28236e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and simply relinquish such ||| 1 0.0010182 8.48644e-07 5.92507e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| and simply relinquish ||| 1 0.0010182 8.48644e-07 2.86388e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| and simply ||| 0.00398406 0.0010182 8.48644e-07 2.04563e-07 2.718 ||| 0-0 ||| 251 1.17835e+06 +en ||| and since we ||| 0.0526316 0.0054082 8.48644e-07 3.8481e-09 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| and sincerely hope that the amendment on ||| 1 0.22993 8.48644e-07 2.37522e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| and small businesses have in ||| 0.333333 0.605812 8.48644e-07 2.35722e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| and so forth - ||| 0.2 0.0087276 8.48644e-07 6.50061e-13 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| and so forth ||| 0.0052356 0.0087276 8.48644e-07 1.72334e-10 2.718 ||| 0-1 ||| 191 1.17835e+06 +en ||| and so on , but it ||| 1 0.22993 8.48644e-07 3.42191e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and so on , but ||| 0.0175439 0.22993 8.48644e-07 1.92424e-10 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| and so on , ||| 0.00322581 0.22993 8.48644e-07 2.81569e-07 2.718 ||| 0-2 ||| 310 1.17835e+06 +en ||| and so on . ||| 0.00110988 0.22993 8.48644e-07 7.15168e-09 2.718 ||| 0-2 ||| 901 1.17835e+06 +en ||| and so on ||| 0.00341297 0.22993 3.39458e-06 2.36107e-06 2.718 ||| 0-2 ||| 1172 1.17835e+06 +en ||| and so ||| 0.000465766 0.0087276 1.69729e-06 8.53139e-06 2.718 ||| 0-1 ||| 4294 1.17835e+06 +en ||| and social cohesion in ||| 0.0833333 0.605812 8.48644e-07 9.26141e-12 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| and solid in ||| 1 0.605812 8.48644e-07 3.52838e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and some ||| 0.000776398 0.0009939 8.48644e-07 4.77237e-07 2.718 ||| 0-1 ||| 1288 1.17835e+06 +en ||| and someone else another as ||| 1 0.066968 8.48644e-07 3.50636e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and speaking ||| 0.0163934 0.0538225 8.48644e-07 2.83837e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| and specifically ||| 0.00735294 0.148651 1.69729e-06 8.59151e-06 2.718 ||| 0-1 ||| 272 1.17835e+06 +en ||| and square on ||| 1 0.22993 8.48644e-07 7.48984e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and squarely in ||| 1 0.605812 8.48644e-07 1.85095e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and stability in ||| 0.00383142 0.605812 8.48644e-07 1.2089e-07 2.718 ||| 0-2 ||| 261 1.17835e+06 +en ||| and subsequently ||| 0.00414938 0.0293803 8.48644e-07 4.68469e-07 2.718 ||| 0-1 ||| 241 1.17835e+06 +en ||| and support from ||| 0.0322581 0.0308834 8.48644e-07 1.62957e-08 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| and support specific activities in ||| 0.5 0.605812 8.48644e-07 2.37561e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| and supported by ||| 0.00961538 0.0468744 8.48644e-07 5.51976e-09 2.718 ||| 0-2 ||| 104 1.17835e+06 +en ||| and take action in ||| 0.125 0.605812 8.48644e-07 2.8152e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| and take ||| 0.000847458 0.0074151 8.48644e-07 3.66508e-06 2.718 ||| 0-1 ||| 1180 1.17835e+06 +en ||| and taken up in ||| 0.333333 0.605812 8.48644e-07 1.79812e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| and tempo in the ||| 1 0.605812 8.48644e-07 1.42042e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and tempo in ||| 1 0.605812 8.48644e-07 2.31369e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and that , ||| 0.000883392 0.0017499 8.48644e-07 1.56129e-06 2.718 ||| 0-1 ||| 1132 1.17835e+06 +en ||| and that has been in ||| 1 0.605812 8.48644e-07 1.67244e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and that is the ||| 0.00161812 0.0010182 8.48644e-07 2.98643e-08 2.718 ||| 0-0 ||| 618 1.17835e+06 +en ||| and that is ||| 0.000677966 0.0010182 2.54593e-06 4.86454e-07 2.718 ||| 0-0 ||| 4425 1.17835e+06 +en ||| and that it be published in ||| 1 0.605812 8.48644e-07 6.99286e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and that of ||| 0.00161031 0.0116562 8.48644e-07 2.87339e-06 2.718 ||| 0-2 ||| 621 1.17835e+06 +en ||| and that on ||| 0.027027 0.22993 8.48644e-07 1.74988e-05 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| and that we in the Commission have ||| 1 0.605812 8.48644e-07 4.73716e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and that we in the Commission ||| 1 0.605812 8.48644e-07 3.9609e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and that we in the ||| 0.142857 0.605812 8.48644e-07 6.7812e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| and that we in ||| 0.0555556 0.605812 8.48644e-07 1.10458e-06 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| and that works to ||| 1 0.0247351 8.48644e-07 2.45195e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and that ||| 0.000445534 0.0017499 1.1881e-05 1.30921e-05 2.718 ||| 0-1 ||| 31423 1.17835e+06 +en ||| and the 25 posts in ||| 1 0.605812 8.48644e-07 3.37136e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and the Committee on ||| 0.00104167 0.22993 8.48644e-07 9.74552e-09 2.718 ||| 0-3 ||| 960 1.17835e+06 +en ||| and the EU ||| 0.000898473 0.0010182 8.48644e-07 2.80285e-08 2.718 ||| 0-0 ||| 1113 1.17835e+06 +en ||| and the European Parliament in ||| 0.0166667 0.605812 8.48644e-07 6.81586e-10 2.718 ||| 0-4 ||| 60 1.17835e+06 +en ||| and the Poles who refuse to adopt ||| 1 0.0247351 8.48644e-07 2.8868e-23 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and the Poles who refuse to ||| 1 0.0247351 8.48644e-07 2.77577e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and the Single Market in ||| 0.25 0.605812 8.48644e-07 8.38791e-14 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| and the economic operators in ||| 1 0.605812 8.48644e-07 5.59963e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and the fact ||| 0.000757576 0.00109255 8.48644e-07 7.7429e-09 2.718 ||| 0-0 0-1 ||| 1320 1.17835e+06 +en ||| and the opportunity for ||| 0.0666667 0.0286209 8.48644e-07 1.59164e-09 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| and the votes of ||| 0.5 0.0116562 8.48644e-07 3.80667e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| and the worldwide ||| 1 0.13372 8.48644e-07 3.50043e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and the ||| 8.85949e-05 0.00109255 1.01837e-05 2.64326e-06 2.718 ||| 0-0 0-1 ||| 135448 1.17835e+06 +en ||| and themes in ||| 1 0.605812 8.48644e-07 2.08232e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and then in ||| 0.0224719 0.605812 1.69729e-06 9.31491e-06 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| and then we would manage ||| 0.25 0.013351 8.48644e-07 1.24871e-14 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| and then we would ||| 0.111111 0.013351 8.48644e-07 2.7998e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| and then we ||| 0.0070922 0.013351 8.48644e-07 4.77074e-08 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| and then with ||| 0.0625 0.0535436 8.48644e-07 2.3518e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| and then ||| 0.000743679 0.0010182 2.54593e-06 1.48592e-06 2.718 ||| 0-0 ||| 4034 1.17835e+06 +en ||| and there in ||| 0.222222 0.605812 1.69729e-06 1.77304e-05 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| and there into ||| 1 0.525896 8.48644e-07 8.49976e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and there ||| 0.00229621 0.0117359 3.39458e-06 1.40465e-05 2.718 ||| 0-1 ||| 1742 1.17835e+06 +en ||| and therefore ||| 0.000584795 0.0010182 1.69729e-06 7.71654e-07 2.718 ||| 0-0 ||| 3420 1.17835e+06 +en ||| and these ||| 0.00262238 0.0010182 2.54593e-06 9.56932e-07 2.718 ||| 0-0 ||| 1144 1.17835e+06 +en ||| and they are covered in ||| 1 0.605812 8.48644e-07 2.05103e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and they came about in ||| 1 0.605812 8.48644e-07 3.3644e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and they will ||| 0.00925926 0.0010182 8.48644e-07 2.60548e-08 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| and they ||| 0.000504286 0.0010182 8.48644e-07 3.01169e-06 2.718 ||| 0-0 ||| 1983 1.17835e+06 +en ||| and this applies in ||| 0.111111 0.605812 8.48644e-07 3.13196e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| and this at ||| 0.0714286 0.321886 1.69729e-06 3.23756e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| and this in ||| 0.0909091 0.605812 3.39458e-06 3.73742e-05 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| and this is about ||| 0.2 0.0401564 8.48644e-07 7.27011e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| and this is due to ||| 0.0909091 0.0247351 8.48644e-07 1.97071e-11 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| and this is in ||| 0.0434783 0.605812 8.48644e-07 1.17135e-06 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| and this is made ||| 0.166667 0.0013296 8.48644e-07 3.92269e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| and this is not ||| 0.00675676 0.0013296 8.48644e-07 6.39319e-10 2.718 ||| 0-1 ||| 148 1.17835e+06 +en ||| and this is ||| 0.00171585 0.0010182 4.24322e-06 1.86854e-07 2.718 ||| 0-0 ||| 2914 1.17835e+06 +en ||| and this on the ||| 0.125 0.22993 1.69729e-06 4.12646e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| and this on ||| 0.2 0.22993 2.54593e-06 6.72151e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| and this should be in ||| 1 0.605812 8.48644e-07 3.00124e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and this within ||| 0.333333 0.369196 3.39458e-06 8.973e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| and this ||| 0.00120482 0.0010182 9.33509e-06 5.96193e-06 2.718 ||| 0-0 ||| 9130 1.17835e+06 +en ||| and thorough as ||| 1 0.066968 8.48644e-07 3.96554e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and thoroughly ||| 0.0196078 0.0013123 8.48644e-07 1.29178e-09 2.718 ||| 0-0 0-1 ||| 51 1.17835e+06 +en ||| and those in ||| 0.0107527 0.605812 8.48644e-07 4.18836e-06 2.718 ||| 0-2 ||| 93 1.17835e+06 +en ||| and through ||| 0.00249066 0.0366102 1.69729e-06 1.17794e-05 2.718 ||| 0-1 ||| 803 1.17835e+06 +en ||| and thus for the protection of ||| 1 0.0116562 8.48644e-07 1.39235e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and thus having ||| 0.5 0.0065553 8.48644e-07 1.63944e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and thus ||| 0.00122549 0.0059035 1.69729e-06 1.34991e-07 2.718 ||| 0-0 0-1 ||| 1632 1.17835e+06 +en ||| and to a ||| 0.00480769 0.0128766 8.48644e-07 1.14961e-06 2.718 ||| 0-0 0-1 ||| 208 1.17835e+06 +en ||| and to achieve ||| 0.00675676 0.0127368 8.48644e-07 2.64061e-09 2.718 ||| 0-1 0-2 ||| 148 1.17835e+06 +en ||| and to an ||| 0.025 0.0010182 8.48644e-07 3.64419e-07 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| and to begin ||| 0.0227273 0.0128766 8.48644e-07 1.5302e-09 2.718 ||| 0-0 0-1 ||| 44 1.17835e+06 +en ||| and to develop ||| 0.00518135 0.0128766 8.48644e-07 1.58725e-09 2.718 ||| 0-0 0-1 ||| 193 1.17835e+06 +en ||| and to do so in ||| 0.037037 0.605812 8.48644e-07 4.00752e-09 2.718 ||| 0-4 ||| 27 1.17835e+06 +en ||| and to do this at ||| 1 0.321886 8.48644e-07 9.88279e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and to push ||| 0.0588235 0.0128766 8.48644e-07 7.18414e-10 2.718 ||| 0-0 0-1 ||| 17 1.17835e+06 +en ||| and to put ||| 0.00813008 0.0128766 8.48644e-07 2.85965e-08 2.718 ||| 0-0 0-1 ||| 123 1.17835e+06 +en ||| and to so in ||| 1 0.605812 8.48644e-07 1.16657e-06 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and to tackle them within ||| 1 0.369196 8.48644e-07 1.20154e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and to the ||| 0.000316056 0.0247351 8.48644e-07 2.16149e-05 2.718 ||| 0-1 ||| 3164 1.17835e+06 +en ||| and to what extent and with what ||| 0.5 0.0535436 8.48644e-07 6.1504e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| and to what extent and with ||| 0.5 0.0535436 8.48644e-07 4.38344e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| and to ||| 0.000674789 0.0247351 1.52756e-05 0.000352082 2.718 ||| 0-1 ||| 26675 1.17835e+06 +en ||| and too few ||| 0.0666667 0.0010649 8.48644e-07 4.18931e-12 2.718 ||| 0-0 0-1 ||| 15 1.17835e+06 +en ||| and too ||| 0.00429185 0.0010649 8.48644e-07 2.38979e-08 2.718 ||| 0-0 0-1 ||| 233 1.17835e+06 +en ||| and transfer them ||| 0.166667 0.0010182 8.48644e-07 5.07385e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| and transfer ||| 0.00793651 0.0010182 8.48644e-07 1.89154e-08 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| and transparent ||| 0.0010101 0.0010182 8.48644e-07 8.67338e-09 2.718 ||| 0-0 ||| 990 1.17835e+06 +en ||| and trust in ||| 0.0588235 0.605812 1.69729e-06 1.10479e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| and trust that we will be able ||| 0.5 0.192848 8.48644e-07 2.1946e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| and trust that we will be ||| 1 0.192848 8.48644e-07 2.62857e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and trust that we will ||| 1 0.192848 8.48644e-07 1.45042e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and trust that we ||| 1 0.192848 8.48644e-07 1.67655e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and trust that ||| 0.0144928 0.192848 8.48644e-07 1.47684e-07 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| and trust ||| 0.00809717 0.192848 1.69729e-06 8.7794e-06 2.718 ||| 0-1 ||| 247 1.17835e+06 +en ||| and ultimately ||| 0.00458716 0.199943 8.48644e-07 1.20437e-05 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| and updated in ||| 0.2 0.605812 8.48644e-07 2.08232e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| and upon ||| 0.015873 0.114601 8.48644e-07 1.10716e-05 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| and used ||| 0.00487805 0.0010182 8.48644e-07 3.95838e-07 2.718 ||| 0-0 ||| 205 1.17835e+06 +en ||| and vegetables in ||| 0.04 0.605812 8.48644e-07 1.27253e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| and very good ||| 0.0588235 0.0010182 8.48644e-07 1.66498e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| and very soon ||| 0.0909091 0.0178344 8.48644e-07 4.98164e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| and very ||| 0.0010352 0.0010182 8.48644e-07 3.21053e-06 2.718 ||| 0-0 ||| 966 1.17835e+06 +en ||| and void from now on ||| 1 0.22993 8.48644e-07 2.24302e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and waiting at ||| 1 0.321886 8.48644e-07 1.33282e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and was ||| 0.00146843 0.0010182 8.48644e-07 2.89082e-06 2.718 ||| 0-0 ||| 681 1.17835e+06 +en ||| and we are in ||| 0.0153846 0.605812 8.48644e-07 9.96304e-07 2.718 ||| 0-3 ||| 65 1.17835e+06 +en ||| and we do ||| 0.0144928 0.0054082 8.48644e-07 9.74161e-08 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| and we have had a great many ||| 0.333333 0.0032132 8.48644e-07 1.49958e-19 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| and we have had a great ||| 0.333333 0.0032132 8.48644e-07 4.36812e-16 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| and we have had a ||| 0.142857 0.0032132 8.48644e-07 1.11148e-12 2.718 ||| 0-0 0-1 ||| 7 1.17835e+06 +en ||| and we have had ||| 0.0166667 0.0032132 8.48644e-07 2.50753e-11 2.718 ||| 0-0 0-1 ||| 60 1.17835e+06 +en ||| and we have ||| 0.000904977 0.0010182 1.69729e-06 1.25276e-07 2.718 ||| 0-0 ||| 2210 1.17835e+06 +en ||| and we in ||| 0.00598802 0.605812 8.48644e-07 6.56642e-05 2.718 ||| 0-2 ||| 167 1.17835e+06 +en ||| and we must succeed in ||| 1 0.605812 8.48644e-07 3.86679e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and we rely on global partnership ||| 1 0.22993 8.48644e-07 2.30812e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and we rely on global ||| 1 0.22993 8.48644e-07 1.06858e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| and we rely on ||| 0.25 0.22993 8.48644e-07 2.33824e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| and we will not need to have ||| 1 0.0247351 8.48644e-07 1.29457e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and we will not need to ||| 1 0.0247351 8.48644e-07 1.08244e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| and we wish to point ||| 0.5 0.0032132 8.48644e-07 4.78525e-14 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| and we wish to ||| 0.027027 0.0032132 8.48644e-07 5.4701e-11 2.718 ||| 0-0 0-1 ||| 37 1.17835e+06 +en ||| and we wish ||| 0.0212766 0.0032132 8.48644e-07 6.15599e-10 2.718 ||| 0-0 0-1 ||| 47 1.17835e+06 +en ||| and we ||| 0.000719942 0.0054082 5.09187e-06 2.83574e-05 2.718 ||| 0-1 ||| 8334 1.17835e+06 +en ||| and well and working in ||| 1 0.605812 8.48644e-07 2.18733e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and well in the ||| 0.25 0.605812 8.48644e-07 5.63053e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| and well in ||| 0.3 0.605812 2.54593e-06 9.17147e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| and went to ||| 0.1 0.0247351 8.48644e-07 2.24276e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| and were able to ||| 0.0526316 0.0247351 8.48644e-07 5.26588e-10 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| and when ||| 0.00116279 0.142731 1.69729e-06 7.45704e-05 2.718 ||| 0-1 ||| 1720 1.17835e+06 +en ||| and where it has proved difficult in ||| 1 0.605812 8.48644e-07 8.24928e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| and where it is ||| 0.0357143 0.247783 8.48644e-07 5.94565e-08 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| and where it ||| 0.0277778 0.247783 8.48644e-07 1.89708e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| and where ||| 0.00570613 0.247783 6.78915e-06 0.000106678 2.718 ||| 0-1 ||| 1402 1.17835e+06 +en ||| and which are in ||| 0.142857 0.605812 8.48644e-07 7.45506e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| and which concerns ||| 0.0416667 0.0010182 8.48644e-07 5.87064e-10 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| and which is still ||| 0.0714286 0.0010182 8.48644e-07 1.85024e-10 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| and which is ||| 0.00191571 0.0010182 8.48644e-07 2.45651e-07 2.718 ||| 0-0 ||| 522 1.17835e+06 +en ||| and which we feel in ||| 1 0.605812 8.48644e-07 9.43225e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and which ||| 0.000756525 0.0010182 5.09187e-06 7.83797e-06 2.718 ||| 0-0 ||| 7931 1.17835e+06 +en ||| and while on ||| 1 0.22993 8.48644e-07 1.93904e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| and whilst maintaining ||| 1 0.0125238 8.48644e-07 1.21301e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| and whilst ||| 0.0178571 0.0125238 8.48644e-07 6.73893e-07 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| and why ||| 0.00125786 0.0010182 8.48644e-07 2.27446e-07 2.718 ||| 0-0 ||| 795 1.17835e+06 +en ||| and will be , in ||| 1 0.605812 8.48644e-07 1.0815e-07 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and will promote it in ||| 1 0.605812 8.48644e-07 5.70413e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| and with it about 1000 jobs in ||| 1 0.605812 8.48644e-07 3.37311e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| and with the question ||| 0.5 0.0535436 8.48644e-07 7.4172e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| and with the ||| 0.000617665 0.0535436 8.48644e-07 8.96555e-06 2.718 ||| 0-1 ||| 1619 1.17835e+06 +en ||| and with what objectives ? or does ||| 0.5 0.0535436 8.48644e-07 1.31422e-21 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| and with what objectives ? or ||| 0.5 0.0535436 8.48644e-07 1.87371e-18 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| and with what objectives ? ||| 0.5 0.0535436 8.48644e-07 1.63886e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| and with what objectives ||| 0.5 0.0535436 8.48644e-07 9.58961e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| and with what ||| 0.0166667 0.0535436 8.48644e-07 2.04906e-07 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| and with which ||| 0.0105263 0.0535436 8.48644e-07 1.24054e-06 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| and with ||| 0.00234055 0.0535436 1.01837e-05 0.000146038 2.718 ||| 0-1 ||| 5127 1.17835e+06 +en ||| and within , ||| 0.2 0.369196 8.48644e-07 1.6561e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| and within ||| 0.0125224 0.369196 5.94051e-06 0.000138871 2.718 ||| 0-1 ||| 559 1.17835e+06 +en ||| and women in matters of ||| 0.125 0.605812 8.48644e-07 6.91106e-12 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| and women in matters ||| 0.125 0.605812 8.48644e-07 1.27126e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| and women in ||| 0.0177936 0.605812 4.24322e-06 6.87166e-07 2.718 ||| 0-2 ||| 281 1.17835e+06 +en ||| and work in ||| 0.00609756 0.605812 8.48644e-07 3.66141e-06 2.718 ||| 0-2 ||| 164 1.17835e+06 +en ||| and working in ||| 0.0243902 0.605812 8.48644e-07 1.10132e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| and working on them ||| 0.5 0.22993 8.48644e-07 5.31289e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| and working on ||| 0.0625 0.22993 8.48644e-07 1.98065e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| and would be ||| 0.0075188 0.0010182 8.48644e-07 9.81364e-08 2.718 ||| 0-0 ||| 133 1.17835e+06 +en ||| and would stress ||| 0.0769231 0.125588 8.48644e-07 4.67675e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| and would ||| 0.00209424 0.0010182 1.69729e-06 5.41505e-06 2.718 ||| 0-0 ||| 955 1.17835e+06 +en ||| and you are ||| 0.00581395 0.0010182 8.48644e-07 4.52013e-08 2.718 ||| 0-0 ||| 172 1.17835e+06 +en ||| and you ||| 0.000763359 0.0010182 8.48644e-07 2.97912e-06 2.718 ||| 0-0 ||| 1310 1.17835e+06 +en ||| and ||| 0.000632428 0.0010182 0.000821488 0.0009227 2.718 ||| 0-0 ||| 1.53061e+06 1.17835e+06 +en ||| anew into ||| 0.5 0.525896 8.48644e-07 4.87021e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| animal protein in feed is banned in ||| 1 0.605812 8.48644e-07 3.81721e-24 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| animal testing in ||| 0.166667 0.605812 1.69729e-06 9.57549e-11 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| animals can be released , ||| 1 0.0790835 8.48644e-07 1.90464e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| animals can be released ||| 1 0.0790835 8.48644e-07 1.59712e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| animals in ||| 0.0122699 0.605812 1.69729e-06 1.87945e-05 2.718 ||| 0-1 ||| 163 1.17835e+06 +en ||| annex into ||| 1 0.525896 8.48644e-07 5.53433e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| anniversary of ||| 0.00154799 0.0116562 8.48644e-07 1.90918e-08 2.718 ||| 0-1 ||| 646 1.17835e+06 +en ||| announced by ||| 0.00429185 0.0468744 8.48644e-07 1.77798e-07 2.718 ||| 0-1 ||| 233 1.17835e+06 +en ||| announced in ||| 0.0337838 0.605812 4.24322e-06 9.65122e-06 2.718 ||| 0-1 ||| 148 1.17835e+06 +en ||| announcing on ||| 1 0.22993 8.48644e-07 2.65755e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| annual report from the Commission ||| 0.0625 0.0308834 8.48644e-07 1.61077e-15 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| annual report from the ||| 0.0263158 0.0308834 8.48644e-07 2.7577e-12 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| annual report from ||| 0.0555556 0.0308834 8.48644e-07 4.49197e-11 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| annually on ||| 0.047619 0.22993 8.48644e-07 1.82706e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| another , each of them ||| 0.5 0.0009111 8.48644e-07 5.95542e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| another , each of ||| 0.5 0.0009111 8.48644e-07 2.22018e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| another , each ||| 0.5 0.0009111 8.48644e-07 4.08392e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| another , ||| 0.00114155 0.0009111 8.48644e-07 1.45491e-06 2.718 ||| 0-0 ||| 876 1.17835e+06 +en ||| another a helping hand when needed ||| 1 0.142731 8.48644e-07 1.27713e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| another a helping hand when ||| 1 0.142731 8.48644e-07 9.53797e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| another and ||| 0.00469484 0.0009111 8.48644e-07 1.52816e-07 2.718 ||| 0-0 ||| 213 1.17835e+06 +en ||| another as ||| 0.0555556 0.066968 8.48644e-07 4.33688e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| another at ||| 0.1 0.321886 8.48644e-07 9.64448e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| another common ||| 1 0.0009111 8.48644e-07 2.8182e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| another definition ||| 0.0909091 0.0009111 8.48644e-07 3.3306e-10 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| another in Bosnia ||| 1 0.605812 8.48644e-07 5.23276e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| another in ||| 0.125984 0.605812 1.35783e-05 0.000111335 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| another initiative will come to ||| 1 0.0247351 8.48644e-07 3.11705e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| another meeting is taking place in ||| 1 0.605812 8.48644e-07 2.80326e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| another on ||| 0.0540541 0.22993 1.69729e-06 2.0023e-05 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| another route in ||| 0.5 0.605812 8.48644e-07 3.00606e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| another ||| 0.000413394 0.0009111 6.78915e-06 1.22e-05 2.718 ||| 0-0 ||| 19352 1.17835e+06 +en ||| another – in those ||| 1 0.605812 8.48644e-07 3.16829e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| another – in ||| 1 0.605812 8.48644e-07 4.37548e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| answer , it ||| 0.2 0.0080472 8.48644e-07 2.46341e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| answer on ||| 0.012987 0.22993 8.48644e-07 6.22033e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| answer that talks ||| 0.25 0.0017499 8.48644e-07 2.05891e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| answer that ||| 0.00694444 0.0017499 8.48644e-07 7.82855e-08 2.718 ||| 0-1 ||| 144 1.17835e+06 +en ||| answer to ||| 0.00326531 0.0247351 3.39458e-06 2.10531e-06 2.718 ||| 0-1 ||| 1225 1.17835e+06 +en ||| answered in ||| 0.0175439 0.605812 1.69729e-06 3.64807e-06 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| answers , in ||| 0.5 0.605812 8.48644e-07 1.1895e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| answers to ||| 0.00230947 0.0247351 8.48644e-07 6.07139e-07 2.718 ||| 0-1 ||| 433 1.17835e+06 +en ||| anti-Israeli campaign in ||| 1 0.605812 8.48644e-07 5.70761e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| anti-farming ||| 0.0434783 0.0454545 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| anti-microbial medicines in ||| 0.5 0.605812 8.48644e-07 2.77992e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| anticipated in ||| 0.0857143 0.605812 2.54593e-06 3.97132e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| anticipated level of inflation . at ||| 1 0.321886 8.48644e-07 2.08367e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| anticipation of ||| 0.0102041 0.0116562 8.48644e-07 4.36384e-08 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| any added value with regard to guarantees ||| 1 0.0535436 8.48644e-07 1.34891e-22 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| any added value with regard to ||| 1 0.0535436 8.48644e-07 6.67777e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| any added value with regard ||| 1 0.0535436 8.48644e-07 7.51509e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| any added value with ||| 1 0.0535436 8.48644e-07 1.1037e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| any benefit in ||| 0.5 0.605812 8.48644e-07 9.19668e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| any case in ||| 0.0666667 0.605812 8.48644e-07 7.47117e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| any doubts cast on ||| 1 0.22993 8.48644e-07 3.82032e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| any evidence in ||| 1 0.605812 8.48644e-07 3.84766e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| any further delay in ||| 0.125 0.605812 8.48644e-07 1.05635e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| any further discussion of ||| 0.2 0.0116562 8.48644e-07 8.6111e-13 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| any further in ||| 0.166667 0.605812 8.48644e-07 3.37491e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| any heed ||| 0.2 0.0883838 8.48644e-07 3.59904e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| any idea as ||| 0.2 0.066968 8.48644e-07 6.09853e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| any in ||| 0.125 0.605812 8.48644e-07 0.000698305 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| any influence on ||| 0.0526316 0.22993 8.48644e-07 4.29503e-09 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| any institution in ||| 0.142857 0.605812 8.48644e-07 1.90637e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| any member of ||| 0.0666667 0.0116562 8.48644e-07 3.4356e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| any more ; instead ||| 0.5 0.340662 8.48644e-07 3.58844e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| any more European ||| 0.0833333 0.0042952 8.48644e-07 1.68235e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| any more in ||| 0.333333 0.605812 3.39458e-06 1.59472e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| any more on ||| 0.142857 0.22993 8.48644e-07 2.868e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| any more ||| 0.00557103 0.0042952 3.39458e-06 5.03109e-07 2.718 ||| 0-1 ||| 718 1.17835e+06 +en ||| any of ||| 0.00247934 0.0116562 2.54593e-06 2.06219e-05 2.718 ||| 0-1 ||| 1210 1.17835e+06 +en ||| any particular ||| 0.00793651 0.0003196 8.48644e-07 1.0283e-08 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| any particularly ||| 0.142857 0.183344 8.48644e-07 6.75318e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| any perceptible movement in ||| 1 0.605812 8.48644e-07 2.14589e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| any rate in ||| 0.0909091 0.605812 1.69729e-06 7.01099e-08 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| any real regulatory power over ||| 0.5 0.157937 8.48644e-07 2.34371e-18 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| any sense in ||| 0.0833333 0.605812 8.48644e-07 1.24368e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| any subject in ||| 0.333333 0.605812 8.48644e-07 3.76945e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| any support for ||| 0.0833333 0.0286209 8.48644e-07 5.94843e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| any taste in ||| 1 0.605812 8.48644e-07 2.23458e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| any time during ||| 0.125 0.226251 8.48644e-07 7.17788e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| any time in the future ||| 0.125 0.605812 8.48644e-07 1.86929e-11 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| any time in the ||| 0.0555556 0.605812 8.48644e-07 7.038e-08 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| any time in ||| 0.0714286 0.605812 1.69729e-06 1.14641e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| any trust ||| 0.25 0.192848 8.48644e-07 1.0599e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| any use on ||| 0.25 0.22993 8.48644e-07 6.10598e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| any way in ||| 0.0416667 0.605812 8.48644e-07 1.50527e-06 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| any ||| 0.000287872 0.0006 1.10324e-05 2.18e-05 2.718 ||| 0-0 ||| 45159 1.17835e+06 +en ||| anyone else in ||| 0.1 0.605812 1.69729e-06 2.61008e-09 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| anything about ||| 0.0132159 0.0401564 2.54593e-06 4.49691e-07 2.718 ||| 0-1 ||| 227 1.17835e+06 +en ||| anything at ||| 0.0212766 0.321886 8.48644e-07 6.27631e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| anything but ||| 0.00404858 0.001622 8.48644e-07 2.75516e-08 2.718 ||| 0-1 ||| 247 1.17835e+06 +en ||| anything else , in ||| 0.5 0.605812 8.48644e-07 1.01957e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| anything in ||| 0.015748 0.605812 1.69729e-06 7.24535e-05 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| anything that happens to a ||| 1 0.0247351 8.48644e-07 1.96316e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| anything that happens to ||| 1 0.0247351 8.48644e-07 4.42893e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| anything to do with ||| 0.00819672 0.0535436 8.48644e-07 5.58397e-10 2.718 ||| 0-3 ||| 122 1.17835e+06 +en ||| anyway , ||| 0.00409836 0.101608 8.48644e-07 1.28199e-05 2.718 ||| 0-0 ||| 244 1.17835e+06 +en ||| anyway on ||| 0.5 0.22993 8.48644e-07 2.95652e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| anyway ||| 0.00625 0.101608 3.39458e-06 0.0001075 2.718 ||| 0-0 ||| 640 1.17835e+06 +en ||| anywhere else in ||| 0.12 0.605812 2.54593e-06 1.6456e-09 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| anywhere else ||| 0.00584795 0.213547 8.48644e-07 3.3158e-08 2.718 ||| 0-0 ||| 171 1.17835e+06 +en ||| anywhere in ||| 0.0418251 0.605812 9.33509e-06 1.39458e-05 2.718 ||| 0-1 ||| 263 1.17835e+06 +en ||| anywhere near ||| 0.0681818 0.213547 2.54593e-06 1.10152e-08 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| anywhere with ||| 0.125 0.0535436 8.48644e-07 3.52099e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| anywhere ||| 0.0229508 0.213547 1.1881e-05 0.000281 2.718 ||| 0-0 ||| 610 1.17835e+06 +en ||| apart by ||| 0.25 0.0468744 1.69729e-06 5.29992e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| apart from anything else , ||| 0.0125 0.0308834 8.48644e-07 5.23401e-16 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| apart from anything else ||| 0.00909091 0.0308834 8.48644e-07 4.38893e-15 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| apart from anything ||| 0.0128205 0.0308834 8.48644e-07 3.71944e-11 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| apart from ||| 0.00240848 0.0308834 4.24322e-06 2.37058e-07 2.718 ||| 0-1 ||| 2076 1.17835e+06 +en ||| apart into ||| 1 0.525896 8.48644e-07 1.37915e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| apart on ||| 0.5 0.22993 1.69729e-06 5.17392e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| apart over ||| 1 0.157937 8.48644e-07 2.49649e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| apology in advance ||| 1 0.605812 8.48644e-07 2.28212e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| apology in ||| 0.25 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| apology on behalf ||| 0.2 0.22993 8.48644e-07 3.70313e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| apology on ||| 0.4 0.22993 1.69729e-06 1.16268e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| apparent from all ||| 0.5 0.0308834 8.48644e-07 6.4011e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| apparent from ||| 0.00970874 0.0308834 8.48644e-07 1.35462e-07 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| apparent in the ||| 0.0172414 0.605812 8.48644e-07 1.00924e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| apparent in ||| 0.0819672 0.605812 8.48644e-06 1.64394e-05 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| apparently belonged to ||| 0.25 0.0247351 8.48644e-07 1.36325e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| appeal for ||| 0.00387597 0.0286209 8.48644e-07 3.47457e-07 2.718 ||| 0-1 ||| 258 1.17835e+06 +en ||| appeal to ||| 0.00110619 0.0247351 8.48644e-07 8.48871e-07 2.718 ||| 0-1 ||| 904 1.17835e+06 +en ||| appealed to ||| 0.0169492 0.0247351 8.48644e-07 6.18383e-08 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| appealing for ||| 0.0217391 0.0286209 8.48644e-07 7.01817e-08 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| appear at ||| 0.0952381 0.321886 1.69729e-06 3.49617e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| appear in our ||| 0.166667 0.605812 8.48644e-07 5.56721e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| appear in ||| 0.0514706 0.605812 1.1881e-05 4.03597e-05 2.718 ||| 0-1 ||| 272 1.17835e+06 +en ||| appear on ||| 0.0530973 0.22993 5.09187e-06 7.25843e-06 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| appear to be necessary ||| 1 0.0247351 8.48644e-07 1.14555e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| appear to be ||| 0.00367647 0.0247351 1.69729e-06 4.45219e-08 2.718 ||| 0-1 ||| 544 1.17835e+06 +en ||| appear to ||| 0.00360577 0.0247351 2.54593e-06 2.45667e-06 2.718 ||| 0-1 ||| 832 1.17835e+06 +en ||| appearance in ||| 0.0434783 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| appearance on ||| 0.25 0.22993 8.48644e-07 9.30142e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| appeared at ||| 0.176471 0.321886 2.54593e-06 8.92045e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| appeared in court in connection ||| 0.5 0.605812 8.48644e-07 1.00571e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| appeared in court in ||| 0.5 0.605812 8.48644e-07 6.59048e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| appeared in court ||| 0.333333 0.605812 8.48644e-07 3.07902e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| appeared in ||| 0.0569106 0.605812 5.94051e-06 1.02977e-05 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| appeared it might turn out to ||| 1 0.0247351 8.48644e-07 3.67587e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| appeared to be omitted ||| 1 0.0247351 8.48644e-07 3.63511e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| appeared to be ||| 0.0172414 0.0247351 8.48644e-07 1.13597e-08 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| appeared to ||| 0.0108696 0.0247351 8.48644e-07 6.26815e-07 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| appearing before ||| 0.0357143 0.0175291 8.48644e-07 3.44309e-09 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| appearing in the ||| 0.0416667 0.605812 8.48644e-07 2.86331e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| appearing in ||| 0.0701754 0.605812 3.39458e-06 4.66399e-06 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| appearing over ||| 1 0.157937 8.48644e-07 4.04727e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| appearing round ||| 1 0.0142196 8.48644e-07 2.9593e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| appears in ||| 0.0296296 0.605812 3.39458e-06 2.4105e-05 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| appears on ||| 0.0731707 0.22993 2.54593e-06 4.33513e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| appears that in ||| 0.333333 0.605812 8.48644e-07 4.05484e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| applause ) At ||| 1 0.0814815 8.48644e-07 3.88071e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| applause ) In ||| 0.111111 0.0659459 8.48644e-07 2.14733e-13 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| appliances on ||| 1 0.22993 8.48644e-07 9.13532e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| applicable in their ||| 0.0909091 0.605812 8.48644e-07 1.28995e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| applicable in ||| 0.0153846 0.605812 2.54593e-06 1.11289e-05 2.718 ||| 0-1 ||| 195 1.17835e+06 +en ||| applicable to ||| 0.00141643 0.0247351 8.48644e-07 6.7741e-07 2.718 ||| 0-1 ||| 706 1.17835e+06 +en ||| applicable within ||| 0.1 0.369196 8.48644e-07 2.67189e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| application made in ||| 1 0.605812 8.48644e-07 5.88142e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| application of ||| 0.00060551 0.0116562 1.69729e-06 8.2913e-07 2.718 ||| 0-1 ||| 3303 1.17835e+06 +en ||| application on ||| 0.142857 0.22993 1.69729e-06 5.04934e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| application separately in ||| 1 0.605812 8.48644e-07 1.82496e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| applications , followed by ||| 1 0.0468744 8.48644e-07 1.01695e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| applications are in ||| 0.166667 0.605812 8.48644e-07 9.80905e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| applied , for instance , ||| 1 0.0286209 8.48644e-07 1.14828e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| applied , for instance ||| 1 0.0286209 8.48644e-07 9.62882e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| applied , for ||| 0.25 0.0286209 8.48644e-07 1.48593e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| applied at ||| 0.0140845 0.321886 8.48644e-07 4.33222e-06 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| applied during ||| 0.0833333 0.226251 8.48644e-07 3.13128e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| applied in national ||| 0.5 0.605812 8.48644e-07 6.4264e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| applied in practice in ||| 0.25 0.605812 8.48644e-07 1.12826e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| applied in ||| 0.0257732 0.605812 1.27297e-05 5.00109e-05 2.718 ||| 0-1 ||| 582 1.17835e+06 +en ||| applied to be included in ||| 0.333333 0.605812 8.48644e-07 7.56233e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| applied to ||| 0.0170732 0.0247351 1.1881e-05 3.04413e-06 2.718 ||| 0-1 ||| 820 1.17835e+06 +en ||| applied under ||| 0.25 0.205566 8.48644e-07 6.12393e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| applied within ||| 0.0526316 0.369196 8.48644e-07 1.20069e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| applies according to ||| 1 0.0586463 8.48644e-07 3.15649e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| applies according ||| 1 0.0586463 8.48644e-07 3.55228e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| applies at ||| 0.0714286 0.321886 8.48644e-07 3.35217e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| applies everywhere , in ||| 1 0.605812 8.48644e-07 8.62973e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| applies for ||| 0.0285714 0.0286209 8.48644e-07 9.64136e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| applies in the case ||| 0.0588235 0.605812 8.48644e-07 2.54176e-09 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| applies in the ||| 0.0208333 0.605812 8.48644e-07 2.37569e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| applies in ||| 0.0469484 0.605812 8.48644e-06 3.86973e-05 2.718 ||| 0-1 ||| 213 1.17835e+06 +en ||| applies to some ||| 0.2 0.0247351 8.48644e-07 2.56582e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| applies to ||| 0.00352734 0.0247351 5.09187e-06 2.35548e-06 2.718 ||| 0-1 ||| 1701 1.17835e+06 +en ||| apply as they stand during ||| 0.5 0.226251 8.48644e-07 2.28375e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| apply at ||| 0.0555556 0.321886 8.48644e-07 5.75629e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| apply for ||| 0.0025641 0.0286209 8.48644e-07 1.6556e-06 2.718 ||| 0-1 ||| 390 1.17835e+06 +en ||| apply here ||| 0.0204082 0.0855319 8.48644e-07 4.31714e-07 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| apply in ||| 0.0512048 0.605812 1.4427e-05 6.64503e-05 2.718 ||| 0-1 ||| 332 1.17835e+06 +en ||| apply it to ||| 0.03125 0.0247351 8.48644e-07 7.19292e-08 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| apply on ||| 0.0588235 0.22993 8.48644e-07 1.19507e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| apply standards in ||| 1 0.605812 8.48644e-07 4.85752e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| apply to ||| 0.0017094 0.0247351 2.54593e-06 4.04478e-06 2.718 ||| 0-1 ||| 1755 1.17835e+06 +en ||| apply when ||| 0.0384615 0.142731 8.48644e-07 8.5668e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| applying them in ||| 0.25 0.605812 8.48644e-07 4.10004e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| applying to ||| 0.00346021 0.0151618 8.48644e-07 3.0638e-07 2.718 ||| 0-0 0-1 ||| 289 1.17835e+06 +en ||| applying ||| 0.00134363 0.0055885 3.39458e-06 1.09e-05 2.718 ||| 0-0 ||| 2977 1.17835e+06 +en ||| appointed on ||| 0.0666667 0.22993 8.48644e-07 9.30142e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| appointed to ||| 0.0151515 0.0247351 8.48644e-07 3.14813e-07 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| appointment coincides with ||| 1 0.0535436 8.48644e-07 9.38541e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| appreciation by ||| 0.333333 0.0468744 8.48644e-07 1.10592e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| approach adopted in ||| 0.037037 0.605812 8.48644e-07 2.06494e-08 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| approach backs up ||| 0.5 0.0044306 8.48644e-07 1.54114e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| approach backs ||| 0.5 0.0044306 8.48644e-07 4.5188e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| approach has been ||| 0.0357143 0.0044306 8.48644e-07 9.83184e-10 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| approach has ||| 0.0149254 0.0044306 8.48644e-07 2.94437e-07 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| approach in order to ||| 0.125 0.605812 8.48644e-07 4.79044e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| approach in order ||| 0.333333 0.605812 8.48644e-07 5.39111e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| approach in ||| 0.0338983 0.605812 5.09187e-06 0.000101222 2.718 ||| 0-1 ||| 177 1.17835e+06 +en ||| approach into ||| 0.166667 0.525896 8.48644e-07 4.8525e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| approach of ||| 0.00555556 0.0116562 1.69729e-06 2.98923e-06 2.718 ||| 0-1 ||| 360 1.17835e+06 +en ||| approach on ||| 0.0224719 0.22993 1.69729e-06 1.82042e-05 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| approach to take in ||| 0.666667 0.605812 1.69729e-06 1.44811e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| approach to ||| 0.0055905 0.0247351 6.78915e-06 6.16134e-06 2.718 ||| 0-1 ||| 1431 1.17835e+06 +en ||| approach with ||| 0.0232558 0.0535436 8.48644e-07 2.55563e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| approach would ||| 0.0384615 0.0044306 8.48644e-07 3.3569e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| approach ||| 0.000991735 0.0044306 1.52756e-05 5.72e-05 2.718 ||| 0-0 ||| 18150 1.17835e+06 +en ||| approached on ||| 0.166667 0.22993 8.48644e-07 8.96923e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| approached with ||| 0.04 0.0535436 8.48644e-07 1.25916e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| approaches taken at ||| 1 0.321886 8.48644e-07 3.93788e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| approaches to ||| 0.00757576 0.0247351 8.48644e-07 3.0357e-07 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| approaches ||| 0.000774593 0.000692 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1291 1.17835e+06 +en ||| appropriate access to ||| 0.1 0.0247351 8.48644e-07 3.2537e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| appropriate at this ||| 0.05 0.321886 8.48644e-07 3.47899e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| appropriate at ||| 0.0625 0.321886 1.69729e-06 5.38427e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| appropriate dignity in ||| 1 0.605812 8.48644e-07 4.47521e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| appropriate for ||| 0.00260417 0.0286209 8.48644e-07 1.5486e-06 2.718 ||| 0-1 ||| 384 1.17835e+06 +en ||| appropriate funding for information ||| 0.5 0.0286209 8.48644e-07 1.36604e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| appropriate funding for ||| 0.0588235 0.0286209 8.48644e-07 8.25404e-11 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| appropriate to services ||| 1 0.0247351 8.48644e-07 3.34829e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| appropriate to ||| 0.00361011 0.0247351 2.54593e-06 3.78338e-06 2.718 ||| 0-1 ||| 831 1.17835e+06 +en ||| appropriations for sustainable agriculture in ||| 1 0.605812 8.48644e-07 1.05894e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| appropriations planned in ||| 1 0.605812 8.48644e-07 2.33735e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| approval in ||| 0.0212766 0.605812 8.48644e-07 1.38073e-05 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| approve of ||| 0.0046729 0.0116562 8.48644e-07 3.04105e-07 2.718 ||| 0-1 ||| 214 1.17835e+06 +en ||| approved at ||| 0.00877193 0.321886 8.48644e-07 1.82809e-06 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| approved by ||| 0.00164069 0.0468744 1.69729e-06 3.88774e-07 2.718 ||| 0-1 ||| 1219 1.17835e+06 +en ||| approved in ||| 0.0127551 0.605812 4.24322e-06 2.11034e-05 2.718 ||| 0-1 ||| 392 1.17835e+06 +en ||| approved until ||| 0.0833333 0.0092136 8.48644e-07 2.67345e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| approved within ||| 0.0625 0.369196 8.48644e-07 5.06662e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| are ' at ||| 1 0.321886 8.48644e-07 2.08477e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are , after all , at liberty ||| 0.5 0.321886 8.48644e-07 1.11641e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| are , after all , at ||| 0.5 0.321886 8.48644e-07 1.10536e-11 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| are , as ||| 0.00900901 0.066968 8.48644e-07 3.25476e-05 2.718 ||| 0-2 ||| 111 1.17835e+06 +en ||| are , at ||| 0.0526316 0.321886 1.69729e-06 7.23803e-05 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| are , by and ||| 0.181818 0.0468744 1.69729e-06 1.9281e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| are , by ||| 0.02 0.0468744 8.48644e-07 1.53929e-05 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| are , in fact ||| 0.00694444 0.605812 8.48644e-07 2.44759e-06 2.718 ||| 0-2 ||| 144 1.17835e+06 +en ||| are , in ||| 0.0870588 0.605812 3.13998e-05 0.000835554 2.718 ||| 0-2 ||| 425 1.17835e+06 +en ||| are , on the ||| 0.0666667 0.22993 8.48644e-07 9.22529e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| are , on ||| 0.0789474 0.22993 2.54593e-06 0.000150269 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| are , to ||| 0.0166667 0.0247351 8.48644e-07 5.08596e-05 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| are a step in ||| 0.0149254 0.605812 8.48644e-07 4.58087e-08 2.718 ||| 0-3 ||| 67 1.17835e+06 +en ||| are able to ||| 0.00143472 0.0247351 8.48644e-07 3.56067e-07 2.718 ||| 0-2 ||| 697 1.17835e+06 +en ||| are about ||| 0.0191693 0.0401564 5.09187e-06 4.34865e-05 2.718 ||| 0-1 ||| 313 1.17835e+06 +en ||| are acting in ||| 0.0588235 0.605812 8.48644e-07 4.13381e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| are active in ||| 0.0163934 0.605812 8.48644e-07 2.82361e-07 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| are actually , ||| 0.333333 0.125341 8.48644e-07 2.43041e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| are actually proposing such a ||| 0.5 0.125341 8.48644e-07 4.37336e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| are actually proposing such ||| 0.5 0.125341 8.48644e-07 9.8664e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| are actually proposing ||| 0.2 0.125341 8.48644e-07 4.76891e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| are actually ||| 0.00970874 0.125341 4.24322e-06 2.038e-05 2.718 ||| 0-1 ||| 515 1.17835e+06 +en ||| are addressed under ||| 0.25 0.205566 8.48644e-07 4.59864e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| are adopted in ||| 0.0769231 0.605812 8.48644e-07 1.42932e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| are again faced with ||| 0.2 0.0535436 8.48644e-07 6.47556e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| are against Turkish membership ||| 0.333333 0.153982 8.48644e-07 6.44534e-14 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| are against Turkish ||| 0.333333 0.153982 8.48644e-07 2.63075e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| are against violence ||| 0.25 0.153982 8.48644e-07 1.99726e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| are against ||| 0.00456621 0.153982 1.69729e-06 8.7985e-05 2.718 ||| 0-1 ||| 438 1.17835e+06 +en ||| are agreed ||| 0.00833333 0.0262279 8.48644e-07 2.83881e-06 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| are aimed at ||| 0.00416667 0.321886 8.48644e-07 4.21822e-08 2.718 ||| 0-2 ||| 240 1.17835e+06 +en ||| are all in ||| 0.04 0.605812 1.69729e-06 3.31084e-05 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| are all over ||| 0.5 0.157937 8.48644e-07 2.87305e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are all suffering from ||| 0.5 0.0308834 8.48644e-07 1.20857e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are all up and ||| 1 0.0147069 8.48644e-07 6.19669e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are all up ||| 1 0.0147069 8.48644e-07 4.9471e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are allocated as ||| 0.5 0.066968 8.48644e-07 1.21725e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are allocated in ||| 0.25 0.605812 8.48644e-07 3.12488e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| are along ||| 0.0232558 0.155535 8.48644e-07 1.20699e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| are also clear from ||| 1 0.0308834 8.48644e-07 9.70317e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are also consequences in this ||| 1 0.605812 8.48644e-07 9.71372e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are also consequences in ||| 1 0.605812 8.48644e-07 1.50335e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are also due to the Spanish Government ||| 1 0.0247351 8.48644e-07 3.92707e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are also due to the Spanish ||| 1 0.0247351 8.48644e-07 8.14745e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are also due to the ||| 0.125 0.0247351 8.48644e-07 3.65356e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| are also due to ||| 0.05 0.0247351 8.48644e-07 5.95123e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| are also needed in ||| 0.25 0.605812 8.48644e-07 4.73642e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| are also required in ||| 0.5 0.605812 8.48644e-07 5.61367e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are also to ||| 0.0227273 0.0247351 8.48644e-07 2.15312e-06 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| are also touched on in ||| 1 0.605812 8.48644e-07 1.86977e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| are always happening in ||| 1 0.605812 8.48644e-07 6.54376e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are ample resources in ||| 1 0.605812 8.48644e-07 1.45482e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are another ||| 0.0131579 0.0009111 8.48644e-07 1.85107e-07 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| are anticipated in ||| 0.5 0.605812 8.48644e-07 6.02556e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are applied during ||| 1 0.226251 8.48644e-07 4.75099e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are appropriate to ||| 0.0526316 0.0247351 8.48644e-07 5.7404e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| are around in ||| 0.5 0.605812 8.48644e-07 9.33261e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are around ||| 0.04 0.159384 8.48644e-07 1.75108e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| are arrived at in ||| 0.5 0.605812 8.48644e-07 4.87025e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are arrived at ||| 0.0588235 0.321886 8.48644e-07 1.00752e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| are as follows ||| 0.00568182 0.066968 8.48644e-07 1.44377e-08 2.718 ||| 0-1 ||| 176 1.17835e+06 +en ||| are as ||| 0.0078125 0.066968 3.39458e-06 0.000272925 2.718 ||| 0-1 ||| 512 1.17835e+06 +en ||| are aspects of ||| 0.125 0.0116562 8.48644e-07 1.45872e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| are assumed in ||| 1 0.605812 8.48644e-07 9.10841e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are at last ||| 0.0212766 0.321886 8.48644e-07 1.32555e-07 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| are at something of ||| 0.5 0.321886 8.48644e-07 1.82631e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| are at something ||| 0.5 0.321886 8.48644e-07 3.3594e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| are at stake ||| 0.00344828 0.321886 8.48644e-07 1.83295e-08 2.718 ||| 0-1 ||| 290 1.17835e+06 +en ||| are at the heart of ||| 0.0107527 0.0116562 8.48644e-07 4.28718e-12 2.718 ||| 0-4 ||| 93 1.17835e+06 +en ||| are at ||| 0.053528 0.321886 7.46807e-05 0.000606938 2.718 ||| 0-1 ||| 1644 1.17835e+06 +en ||| are avoided in ||| 0.333333 0.605812 8.48644e-07 9.59886e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are aware of ||| 0.0030581 0.0116562 8.48644e-07 2.87398e-08 2.718 ||| 0-2 ||| 327 1.17835e+06 +en ||| are back to ||| 0.333333 0.0247351 8.48644e-07 2.8685e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are based on ||| 0.00180832 0.22993 8.48644e-07 2.95612e-07 2.718 ||| 0-2 ||| 553 1.17835e+06 +en ||| are based ||| 0.00187617 0.0025292 8.48644e-07 3.82352e-07 2.718 ||| 0-1 ||| 533 1.17835e+06 +en ||| are basically ||| 0.0105263 0.1117 8.48644e-07 2.82819e-06 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| are being abandoned in Canada . ||| 1 0.605812 8.48644e-07 3.8049e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are being abandoned in Canada ||| 1 0.605812 8.48644e-07 1.25616e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are being abandoned in ||| 1 0.605812 8.48644e-07 2.51231e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are being administered in ||| 1 0.605812 1.69729e-06 9.9695e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are being expended on ||| 0.5 0.22993 8.48644e-07 5.02026e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are being held in ||| 0.0454545 0.605812 8.48644e-07 5.08644e-09 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| are being imposed on society ||| 1 0.22993 8.48644e-07 1.15854e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are being imposed on ||| 0.166667 0.22993 8.48644e-07 2.00093e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| are being included in ||| 0.5 0.605812 8.48644e-07 1.87227e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are being laid in ||| 1 0.605812 8.48644e-07 2.17335e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are being lost in ||| 0.25 0.605812 8.48644e-07 1.13453e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| are being neglected as ||| 0.142857 0.066968 8.48644e-07 2.79608e-12 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| are being put in place ||| 0.0666667 0.605812 8.48644e-07 3.3087e-11 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| are being put in ||| 0.111111 0.605812 8.48644e-07 2.19847e-08 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| are being said in ||| 0.5 0.605812 8.48644e-07 8.20091e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are being shot on sight in ||| 1 0.605812 8.48644e-07 3.43669e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| are being started at all in ||| 1 0.605812 8.48644e-07 1.77541e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| are being ||| 0.000952744 0.0043873 4.24322e-06 2.7766e-06 2.718 ||| 0-1 ||| 5248 1.17835e+06 +en ||| are best at ||| 0.2 0.321886 8.48644e-07 8.4061e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| are bound to ||| 0.0138889 0.0247351 8.48644e-07 2.19637e-08 2.718 ||| 0-2 ||| 72 1.17835e+06 +en ||| are broken into ||| 1 0.525896 8.48644e-07 1.00429e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are brought into ||| 0.0416667 0.525896 8.48644e-07 9.40471e-08 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| are by ||| 0.0222222 0.0468744 2.54593e-06 0.000129076 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| are called in ||| 0.25 0.605812 8.48644e-07 1.21772e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| are calling into question ||| 0.111111 0.525896 8.48644e-07 1.8312e-11 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| are calling into ||| 0.166667 0.525896 8.48644e-07 2.21347e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| are carried out in ||| 0.0416667 0.605812 8.48644e-07 7.90903e-09 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| are caused by ||| 0.0104167 0.0468744 8.48644e-07 1.09585e-08 2.718 ||| 0-2 ||| 96 1.17835e+06 +en ||| are certainly for the better from ||| 1 0.0308834 8.48644e-07 1.15937e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| are certainly ||| 0.00333333 0.0129293 8.48644e-07 3.3031e-06 2.718 ||| 0-1 ||| 300 1.17835e+06 +en ||| are chopped off in ||| 1 0.605812 8.48644e-07 1.99614e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are concentrating on ||| 0.0769231 0.22993 8.48644e-07 1.36087e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| are concerned in ||| 0.428571 0.605812 2.54593e-06 1.12706e-05 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| are concerned with in ||| 0.333333 0.605812 8.48644e-07 7.20699e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| are concerned with standards ||| 1 0.0535436 8.48644e-07 2.08011e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are concerned with ||| 0.00666667 0.0535436 8.48644e-07 2.84557e-07 2.718 ||| 0-2 ||| 150 1.17835e+06 +en ||| are conducted in ||| 0.0666667 0.605812 8.48644e-07 4.23891e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| are confident ||| 0.0625 0.286101 1.69729e-06 5.46217e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| are confronted with ||| 0.012987 0.0535436 8.48644e-07 1.78666e-09 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| are considerably stricter in ||| 1 0.605812 8.48644e-07 1.16027e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are considering , ||| 0.142857 0.11575 8.48644e-07 5.25816e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| are considering ||| 0.00549451 0.11575 8.48644e-07 4.40919e-06 2.718 ||| 0-1 ||| 182 1.17835e+06 +en ||| are contained in ||| 0.0126582 0.605812 8.48644e-07 4.7644e-07 2.718 ||| 0-2 ||| 79 1.17835e+06 +en ||| are continuing in ||| 0.111111 0.605812 8.48644e-07 4.337e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| are contradictions in ||| 1 0.605812 8.48644e-07 1.26116e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are countries in ||| 1 0.605812 8.48644e-07 2.66036e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are covered by ||| 0.00649351 0.0468744 8.48644e-07 9.24182e-09 2.718 ||| 0-2 ||| 154 1.17835e+06 +en ||| are covered in ||| 0.0588235 0.605812 8.48644e-07 5.01663e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| are covered ||| 0.00465116 0.0084459 8.48644e-07 3.09523e-07 2.718 ||| 0-1 ||| 215 1.17835e+06 +en ||| are crucially needed in ||| 1 0.605812 8.48644e-07 2.72068e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are currently ||| 0.00160514 0.104436 1.69729e-06 1.78401e-05 2.718 ||| 0-1 ||| 1246 1.17835e+06 +en ||| are dealing with ||| 0.00479616 0.0535436 1.69729e-06 1.82735e-08 2.718 ||| 0-2 ||| 417 1.17835e+06 +en ||| are dealt with in other ||| 1 0.605812 8.48644e-07 6.07701e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are dealt with in ||| 0.037037 0.605812 8.48644e-07 4.69086e-09 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| are decided on ||| 0.2 0.22993 8.48644e-07 8.61887e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| are delivered in ||| 0.5 0.605812 8.48644e-07 2.41723e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are demanded in ||| 1 0.605812 8.48644e-07 6.30582e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are developing too slowly ||| 1 0.279045 8.48644e-07 5.52392e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| are developing too ||| 1 0.279045 8.48644e-07 9.52401e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| are developing ||| 0.00719424 0.279045 8.48644e-07 6.9978e-05 2.718 ||| 0-1 ||| 139 1.17835e+06 +en ||| are displaying at ||| 1 0.321886 8.48644e-07 2.42775e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are doggedly determined to ||| 0.333333 0.0247351 8.48644e-07 2.04198e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| are doing at ||| 0.111111 0.321886 1.69729e-06 2.22807e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| are doing in ||| 0.0731707 0.605812 2.54593e-06 2.57207e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| are doing not only flies in ||| 0.166667 0.605812 8.48644e-07 4.59401e-17 2.718 ||| 0-5 ||| 6 1.17835e+06 +en ||| are doing this in ||| 0.5 0.605812 8.48644e-07 1.66192e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are doing to date in ||| 1 0.605812 8.48644e-07 2.33578e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| are doing ||| 0.000971817 0.0006429 8.48644e-07 5.94335e-08 2.718 ||| 0-0 ||| 1029 1.17835e+06 +en ||| are done in ||| 0.125 0.605812 8.48644e-07 3.19495e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| are due here ||| 0.2 0.0855319 8.48644e-07 1.25816e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| are either in ||| 0.2 0.605812 8.48644e-07 6.0662e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| are employed , as ||| 1 0.066968 8.48644e-07 9.37371e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are entered into ||| 0.111111 0.525896 8.48644e-07 1.07482e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| are even ||| 0.00338983 0.0045419 8.48644e-07 2.02404e-06 2.718 ||| 0-1 ||| 295 1.17835e+06 +en ||| are exercised within ||| 1 0.369196 8.48644e-07 2.60734e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are expected to register their misgivings when ||| 0.333333 0.142731 8.48644e-07 1.75438e-23 2.718 ||| 0-6 ||| 3 1.17835e+06 +en ||| are experiencing now in ||| 0.5 0.605812 8.48644e-07 2.6989e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are experiencing with ||| 0.333333 0.0535436 8.48644e-07 3.30797e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are experiencing ||| 0.00884956 0.0261115 2.54593e-06 3.82352e-07 2.718 ||| 0-1 ||| 339 1.17835e+06 +en ||| are facing in ||| 0.0384615 0.605812 8.48644e-07 3.73445e-07 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| are facing ||| 0.00119617 0.0084602 8.48644e-07 7.73808e-07 2.718 ||| 0-1 ||| 836 1.17835e+06 +en ||| are familiar with in a ||| 1 0.605812 8.48644e-07 3.07818e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are familiar with in ||| 0.25 0.605812 8.48644e-07 6.94444e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| are felt in ||| 0.5 0.605812 8.48644e-07 4.0077e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are fighting for in ||| 1 0.605812 8.48644e-07 1.47009e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are first and ||| 0.0588235 0.138055 8.48644e-07 1.16158e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| are first ||| 0.030303 0.138055 8.48644e-07 9.2734e-05 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| are fitted in ||| 1 0.605812 8.48644e-07 6.58608e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are fixed in ||| 0.333333 0.605812 8.48644e-07 1.33824e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are flown in ||| 0.5 0.605812 8.48644e-07 1.54142e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are for ||| 0.028777 0.0286209 6.78915e-06 0.000174565 2.718 ||| 0-1 ||| 278 1.17835e+06 +en ||| are forced into ||| 0.0333333 0.525896 8.48644e-07 2.36797e-08 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| are found in ||| 0.030303 0.605812 8.48644e-07 1.53301e-06 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| are from ||| 0.00787402 0.0308834 8.48644e-07 5.77336e-05 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| are full of ||| 0.0227273 0.0116562 8.48644e-07 3.7968e-08 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| are geared up to ||| 1 0.0247351 8.48644e-07 1.89086e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are generally conscious of the ||| 0.25 0.21041 8.48644e-07 3.82686e-13 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| are generally conscious of ||| 0.25 0.21041 8.48644e-07 6.23351e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| are generally conscious ||| 0.25 0.21041 8.48644e-07 1.14662e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| are generally in ||| 0.2 0.605812 8.48644e-07 2.90068e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| are generally ||| 0.00555556 0.21041 8.48644e-07 1.38147e-05 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| are getting at ||| 0.5 0.321886 8.48644e-07 7.05262e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are getting on ||| 0.2 0.22993 8.48644e-07 1.4642e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| are given ||| 0.00595238 0.0546585 2.54593e-06 1.7614e-05 2.718 ||| 0-1 ||| 504 1.17835e+06 +en ||| are going in ||| 0.0285714 0.605812 8.48644e-07 5.99613e-06 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| are going through at ||| 0.5 0.321886 8.48644e-07 2.39088e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are going through it ||| 1 0.0366102 8.48644e-07 2.17149e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are going through ||| 0.0114943 0.0366102 8.48644e-07 1.22109e-08 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| are going to have in ||| 1 0.605812 8.48644e-07 6.37225e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| are going to have to make ||| 0.25 0.0247351 8.48644e-07 6.74048e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| are going to have to ||| 0.00925926 0.0247351 8.48644e-07 3.87874e-10 2.718 ||| 0-2 ||| 108 1.17835e+06 +en ||| are going to have ||| 0.00591716 0.0247351 8.48644e-07 4.36509e-09 2.718 ||| 0-2 ||| 169 1.17835e+06 +en ||| are going to ||| 0.00294768 0.0247351 3.39458e-06 3.64981e-07 2.718 ||| 0-2 ||| 1357 1.17835e+06 +en ||| are good prospects in ||| 0.333333 0.605812 8.48644e-07 4.57828e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| are grounds for ||| 0.0454545 0.0286209 8.48644e-07 1.8277e-08 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| are guaranteed on ||| 1 0.22993 8.48644e-07 4.44804e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are guaranteed throughout ||| 1 0.309047 8.48644e-07 1.55366e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are handled in ||| 0.111111 0.605812 8.48644e-07 1.43633e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| are happening at ||| 0.5 0.321886 8.48644e-07 3.29568e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are hardening in ||| 1 0.605812 8.48644e-07 2.80259e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are having on ||| 0.181818 0.22993 1.69729e-06 4.8248e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| are having to endure ||| 0.5 0.0247351 8.48644e-07 9.47133e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are having to foot a ||| 1 0.0247351 8.48644e-07 1.61415e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are having to foot ||| 0.333333 0.0247351 8.48644e-07 3.64156e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are having to ||| 0.0185185 0.0247351 1.69729e-06 1.63299e-07 2.718 ||| 0-2 ||| 108 1.17835e+06 +en ||| are heard in ||| 0.2 0.605812 8.48644e-07 5.54912e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| are held in ||| 0.0227273 0.605812 8.48644e-07 1.78735e-06 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| are helping to ||| 0.03125 0.0247351 8.48644e-07 1.61209e-08 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| are here to gain master ||| 0.5 0.0855319 8.48644e-07 9.02797e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| are here to gain master ’ ||| 0.5 0.0855319 8.48644e-07 1.57276e-18 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| are here to gain ||| 0.5 0.0855319 8.48644e-07 2.25699e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| are here to ||| 0.0196078 0.0855319 8.48644e-07 4.04479e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| are here ||| 0.0058997 0.0855319 1.69729e-06 4.55196e-05 2.718 ||| 0-1 ||| 339 1.17835e+06 +en ||| are hiding behind ||| 0.0714286 0.0374138 8.48644e-07 2.68332e-11 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| are high-level officials in ||| 0.2 0.605812 8.48644e-07 3.53126e-13 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| are highlighted in ||| 0.0666667 0.605812 8.48644e-07 1.41531e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| are immediately available when ||| 0.5 0.142731 8.48644e-07 1.13784e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are implemented in ||| 0.0285714 0.605812 8.48644e-07 6.15168e-07 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| are important for ||| 0.00625 0.0286209 8.48644e-07 6.69631e-08 2.718 ||| 0-2 ||| 160 1.17835e+06 +en ||| are important to ||| 0.00869565 0.0247351 8.48644e-07 1.63597e-07 2.718 ||| 0-2 ||| 115 1.17835e+06 +en ||| are in , to ||| 0.5 0.605812 8.48644e-07 7.42458e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| are in , ||| 0.0909091 0.605812 8.48644e-07 0.000835554 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| are in - ||| 1 0.605812 8.48644e-07 2.64291e-05 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| are in Serbia ||| 1 0.605812 8.48644e-07 5.32491e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| are in a ||| 0.00557621 0.605812 2.54593e-06 0.000310567 2.718 ||| 0-1 ||| 538 1.17835e+06 +en ||| are in fact relatively limited ||| 0.5 0.605812 8.48644e-07 1.18161e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| are in fact relatively ||| 0.5 0.605812 8.48644e-07 3.03756e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| are in fact ||| 0.00980392 0.605812 2.54593e-06 2.0524e-05 2.718 ||| 0-1 ||| 306 1.17835e+06 +en ||| are in favour ||| 0.00446429 0.605812 1.69729e-06 2.26659e-06 2.718 ||| 0-1 ||| 448 1.17835e+06 +en ||| are in in ||| 1 0.605812 8.48644e-07 0.00014997 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are in many ||| 0.0909091 0.605812 1.69729e-06 2.40532e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| are in order ||| 0.030303 0.605812 8.48644e-07 3.73164e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| are in our ||| 0.03125 0.605812 8.48644e-07 9.66472e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| are in particular ||| 0.125 0.605812 8.48644e-07 4.31178e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| are in place at ||| 0.333333 0.321886 8.48644e-07 1.95518e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| are in place ||| 0.0140187 0.605812 2.54593e-06 1.05447e-05 2.718 ||| 0-1 ||| 214 1.17835e+06 +en ||| are in that ||| 0.0833333 0.605812 8.48644e-07 0.00011786 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| are in the process of ||| 0.00970874 0.605812 8.48644e-07 9.99671e-09 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| are in the process ||| 0.018018 0.605812 1.69729e-06 1.83885e-07 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| are in the ||| 0.0141753 0.605812 9.33509e-06 0.00043014 2.718 ||| 0-1 ||| 776 1.17835e+06 +en ||| are in themselves ||| 0.0526316 0.605812 8.48644e-07 3.01068e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| are in use ||| 0.0909091 0.605812 8.48644e-07 3.40654e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| are in when it ||| 1 0.605812 8.48644e-07 6.22862e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| are in when ||| 1 0.605812 8.48644e-07 3.50253e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| are in ||| 0.0851348 0.605812 0.000324182 0.00700647 2.718 ||| 0-1 ||| 4487 1.17835e+06 +en ||| are included in school ||| 1 0.605812 8.48644e-07 1.37503e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are included in ||| 0.015625 0.605812 2.54593e-06 6.57907e-07 2.718 ||| 0-2 ||| 192 1.17835e+06 +en ||| are incumbent on ||| 0.333333 0.22993 8.48644e-07 1.99091e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are indicators in ||| 1 0.605812 8.48644e-07 3.29304e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are instead advised ||| 1 0.104 8.48644e-07 1.08443e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are intended to ||| 0.00401606 0.0247351 8.48644e-07 3.74448e-08 2.718 ||| 0-2 ||| 249 1.17835e+06 +en ||| are interested in ||| 0.00598802 0.605812 8.48644e-07 1.48537e-07 2.718 ||| 0-2 ||| 167 1.17835e+06 +en ||| are investing in ||| 0.0344828 0.605812 8.48644e-07 2.24207e-08 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| are involved in ||| 0.00887574 0.605812 2.54593e-06 2.42284e-06 2.718 ||| 0-2 ||| 338 1.17835e+06 +en ||| are involved ||| 0.00121507 0.0101887 8.48644e-07 1.53851e-06 2.718 ||| 0-1 ||| 823 1.17835e+06 +en ||| are joined with ||| 0.5 0.0535436 8.48644e-07 2.2289e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are kept in ||| 0.0588235 0.605812 8.48644e-07 4.99561e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| are lacking in ||| 0.1 0.605812 8.48644e-07 1.21212e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| are largely responsible ||| 0.0666667 0.247761 8.48644e-07 1.90115e-09 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| are largely ||| 0.00740741 0.247761 8.48644e-07 1.28543e-05 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| are left at ||| 0.166667 0.321886 8.48644e-07 1.14651e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| are likely to be ||| 0.0208333 0.0247351 8.48644e-07 6.56195e-10 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| are likely to ||| 0.00355872 0.0247351 8.48644e-07 3.62081e-08 2.718 ||| 0-2 ||| 281 1.17835e+06 +en ||| are limits to ||| 0.0909091 0.0247351 8.48644e-07 1.15149e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| are living in ||| 0.025974 0.605812 3.39458e-06 5.87142e-07 2.718 ||| 0-2 ||| 154 1.17835e+06 +en ||| are located in ||| 0.0384615 0.605812 1.69729e-06 1.7376e-07 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| are locked away in ||| 0.5 0.605812 8.48644e-07 1.69386e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are looking at ||| 0.05 0.321886 4.24322e-06 6.42141e-08 2.718 ||| 0-2 ||| 100 1.17835e+06 +en ||| are looking ||| 0.0052356 0.0041712 8.48644e-07 2.38211e-07 2.718 ||| 0-1 ||| 191 1.17835e+06 +en ||| are low in ||| 0.166667 0.605812 8.48644e-07 2.52233e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| are made concerning ||| 0.666667 0.0888235 1.69729e-06 3.85188e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are made in ||| 0.0422535 0.605812 2.54593e-06 1.46771e-05 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| are made to ||| 0.0192308 0.0247351 8.48644e-07 8.93388e-07 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| are made with ||| 0.25 0.0535436 8.48644e-07 3.70564e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| are making in ||| 0.157895 0.605812 2.54593e-06 2.69539e-06 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| are making within ||| 0.5 0.369196 8.48644e-07 6.47124e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are mandatory ! in ||| 1 0.605812 8.48644e-07 1.74419e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are many reasons in ||| 1 0.605812 8.48644e-07 2.43178e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are mentioned ||| 0.00819672 0.0006429 8.48644e-07 1.43281e-08 2.718 ||| 0-0 ||| 122 1.17835e+06 +en ||| are met in ||| 0.142857 0.605812 8.48644e-07 5.37396e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| are missing from ||| 0.1 0.0308834 8.48644e-07 8.31364e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| are most affected by ||| 0.0909091 0.0468744 8.48644e-07 3.71538e-12 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| are moving ||| 0.00374532 0.0240371 8.48644e-07 9.08845e-07 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| are my ||| 0.0117647 0.002535 8.48644e-07 2.14694e-06 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| are necessary in " ||| 1 0.605812 8.48644e-07 4.26894e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are necessary in ||| 0.027027 0.605812 8.48644e-07 1.80276e-06 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| are needed in ||| 0.0178571 0.605812 8.48644e-07 9.38166e-07 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| are no longer in tune with ||| 0.5 0.605812 8.48644e-07 1.95515e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are no longer in tune ||| 0.5 0.605812 8.48644e-07 3.05756e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are no longer in ||| 0.0454545 0.605812 8.48644e-07 1.02259e-09 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| are not acceptable ||| 0.00746269 0.0008293 8.48644e-07 8.93229e-11 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| are not at ||| 0.015873 0.321886 8.48644e-07 2.07215e-06 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| are not doomed to ||| 0.333333 0.0247351 8.48644e-07 4.22252e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| are not few in ||| 0.166667 0.605812 8.48644e-07 4.19331e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| are not in the ||| 0.0144928 0.605812 8.48644e-07 1.46854e-06 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| are not in ||| 0.0159236 0.605812 4.24322e-06 2.39208e-05 2.718 ||| 0-2 ||| 314 1.17835e+06 +en ||| are not on ||| 0.03125 0.22993 8.48644e-07 4.302e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| are not ||| 6.8278e-05 0.0008293 8.48644e-07 2.75688e-06 2.718 ||| 0-1 ||| 14646 1.17835e+06 +en ||| are now able to ||| 0.0909091 0.0247351 8.48644e-07 7.33463e-10 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| are now already in ||| 0.5 0.605812 8.48644e-07 6.68375e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are now among ||| 0.25 0.0422459 8.48644e-07 9.95448e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| are now at ||| 0.0181818 0.321886 8.48644e-07 1.25023e-06 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| are now due to ||| 0.333333 0.0247351 8.48644e-07 2.42818e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| are now in place ||| 0.0714286 0.605812 8.48644e-07 2.17211e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| are now in ||| 0.0149254 0.605812 2.54593e-06 1.44326e-05 2.718 ||| 0-2 ||| 201 1.17835e+06 +en ||| are now occurring on ||| 1 0.22993 8.48644e-07 5.03549e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are now theirs with ||| 1 0.0535436 8.48644e-07 1.71263e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are now ||| 0.00295312 0.0123946 6.78915e-06 8.98224e-06 2.718 ||| 0-1 ||| 2709 1.17835e+06 +en ||| are obliged ||| 0.00346021 0.0006429 8.48644e-07 6.16839e-09 2.718 ||| 0-0 ||| 289 1.17835e+06 +en ||| are obviously in ||| 0.5 0.605812 8.48644e-07 4.63828e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are occurring in ||| 0.0769231 0.605812 8.48644e-07 1.35925e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| are of a ||| 0.0128205 0.0116562 8.48644e-07 9.17146e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| are of ||| 0.00648882 0.0116562 7.6378e-06 0.00020691 2.718 ||| 0-1 ||| 1387 1.17835e+06 +en ||| are on that subject - and ||| 0.333333 0.22993 8.48644e-07 5.40613e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| are on that subject - ||| 0.333333 0.22993 8.48644e-07 4.31596e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| are on that subject ||| 0.25 0.22993 8.48644e-07 1.14418e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| are on that ||| 0.2 0.22993 8.48644e-07 2.11964e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| are on the ||| 0.00877193 0.22993 4.24322e-06 7.73579e-05 2.718 ||| 0-1 ||| 570 1.17835e+06 +en ||| are on their ||| 0.0625 0.22993 8.48644e-07 1.46055e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| are on ||| 0.041958 0.22993 3.05512e-05 0.00126007 2.718 ||| 0-1 ||| 858 1.17835e+06 +en ||| are others in ||| 0.5 0.605812 8.48644e-07 6.81029e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are out of step ||| 0.333333 0.0116562 8.48644e-07 1.16901e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are out of ||| 0.0135135 0.0116562 8.48644e-07 7.92548e-07 2.718 ||| 0-2 ||| 74 1.17835e+06 +en ||| are over in ||| 1 0.605812 8.48644e-07 3.37361e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are over ||| 0.00675676 0.157937 8.48644e-07 6.08e-05 2.718 ||| 0-1 ||| 148 1.17835e+06 +en ||| are part and parcel of ||| 0.04 0.0116562 8.48644e-07 1.88482e-14 2.718 ||| 0-4 ||| 25 1.17835e+06 +en ||| are part of in terms ||| 1 0.605812 8.48644e-07 4.98429e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are part of in ||| 1 0.605812 8.48644e-07 4.54108e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are participating in ||| 0.0322581 0.605812 8.48644e-07 8.05744e-08 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| are particularly ||| 0.00308642 0.183344 1.69729e-06 6.77582e-05 2.718 ||| 0-1 ||| 648 1.17835e+06 +en ||| are passing on ||| 0.333333 0.22993 8.48644e-07 3.22578e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are perhaps in ||| 0.5 0.605812 8.48644e-07 1.0839e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are permanently with ||| 0.5 0.0535436 8.48644e-07 1.66283e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are perpetrated in the ||| 1 0.605812 8.48644e-07 6.79621e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are perpetrated in ||| 1 0.605812 8.48644e-07 1.10702e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are piling up in ||| 1 0.605812 8.48644e-07 2.62851e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are placed in ||| 0.0588235 0.605812 8.48644e-07 8.7721e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| are placed under ||| 0.25 0.205566 8.48644e-07 1.07416e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| are places where ||| 0.142857 0.247783 8.48644e-07 6.83573e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| are points on ||| 0.5 0.22993 8.48644e-07 1.63683e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are present both in ||| 0.25 0.605812 8.48644e-07 4.24787e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| are present in ||| 0.0144928 0.605812 8.48644e-07 2.56437e-06 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| are present on ||| 0.2 0.22993 8.48644e-07 4.61185e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| are presenting in ||| 0.333333 0.605812 8.48644e-07 1.54142e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are problems on ||| 0.333333 0.22993 8.48644e-07 1.69101e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are producing in ||| 1 0.605812 8.48644e-07 2.34717e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are properly considered within ||| 1 0.369196 8.48644e-07 1.34845e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are proposed in ||| 0.0833333 0.605812 8.48644e-07 7.81922e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| are proposing to deliver " EC ||| 1 0.0247351 8.48644e-07 1.6395e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are proposing to deliver " ||| 1 0.0247351 8.48644e-07 8.76736e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are proposing to deliver ||| 1 0.0247351 8.48644e-07 3.70243e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are proposing to ||| 0.0277778 0.0247351 8.48644e-07 9.9796e-09 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| are proud , in ||| 1 0.605812 8.48644e-07 4.84621e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are provided for in ||| 0.08 0.605812 1.69729e-06 1.23423e-08 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| are provisions in ||| 0.333333 0.605812 8.48644e-07 5.5211e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are put in place ||| 0.0172414 0.605812 8.48644e-07 1.16266e-08 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| are put in ||| 0.0322581 0.605812 1.69729e-06 7.72533e-06 2.718 ||| 0-2 ||| 62 1.17835e+06 +en ||| are put into ||| 0.0377358 0.525896 1.69729e-06 3.70344e-07 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| are putting together in ||| 1 0.605812 8.48644e-07 4.70885e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are quite obvious ||| 0.25 0.0068312 8.48644e-07 5.68166e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| are quite ||| 0.00246914 0.0068312 8.48644e-07 1.36251e-06 2.718 ||| 0-1 ||| 405 1.17835e+06 +en ||| are quoted on ||| 0.2 0.22993 8.48644e-07 1.53728e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| are raised in the ||| 0.142857 0.605812 8.48644e-07 4.95521e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| are raised in ||| 0.153846 0.605812 1.69729e-06 8.07145e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| are reacting with resistance . in turn ||| 1 0.605812 8.48644e-07 3.14602e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| are reacting with resistance . in ||| 1 0.605812 8.48644e-07 1.40322e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| are really ||| 0.00288184 0.007087 8.48644e-07 1.3003e-06 2.718 ||| 0-1 ||| 347 1.17835e+06 +en ||| are reduced by ||| 0.2 0.0468744 8.48644e-07 6.04074e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| are reflected in ||| 0.0117647 0.605812 8.48644e-07 1.41531e-07 2.718 ||| 0-2 ||| 85 1.17835e+06 +en ||| are regularly abused in ||| 1 0.605812 8.48644e-07 4.50236e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are regularly stored at marshalling yards in ||| 1 0.605812 8.48644e-07 8.40711e-28 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| are reintegrated back into ||| 0.333333 0.525896 8.48644e-07 9.03659e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| are released for productive investment , and ||| 1 0.0286209 8.48644e-07 6.69273e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are released for productive investment , ||| 1 0.0286209 8.48644e-07 5.34311e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are released for productive investment ||| 1 0.0286209 8.48644e-07 4.48042e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are released for productive ||| 1 0.0286209 8.48644e-07 1.82874e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are released for ||| 0.5 0.0286209 8.48644e-07 3.38656e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are released into ||| 0.2 0.525896 8.48644e-07 6.51612e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| are reported in ||| 0.333333 0.605812 8.48644e-07 2.165e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are required in ||| 0.1 0.605812 1.69729e-06 1.11193e-06 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| are residing within ||| 1 0.369196 8.48644e-07 6.72861e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are respected in ||| 0.142857 0.605812 1.69729e-06 1.71658e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| are responsible for ||| 0.00172117 0.0286209 8.48644e-07 2.58182e-08 2.718 ||| 0-2 ||| 581 1.17835e+06 +en ||| are right as such , in ||| 1 0.605812 8.48644e-07 1.13761e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| are right at ||| 0.5 0.321886 8.48644e-07 3.91415e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are right ||| 0.00302115 0.0071334 8.48644e-07 2.71591e-06 2.718 ||| 0-1 ||| 331 1.17835e+06 +en ||| are running in ||| 0.1 0.605812 8.48644e-07 5.34593e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| are running ||| 0.00943396 0.0322154 8.48644e-07 7.54083e-07 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| are said to ||| 0.0285714 0.0247351 8.48644e-07 1.75411e-07 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| are seeing , as ||| 1 0.066968 8.48644e-07 1.73479e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are seeing in ||| 0.0909091 0.605812 8.48644e-07 3.73445e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| are seeing this at ||| 1 0.321886 8.48644e-07 2.09025e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are seen as ||| 0.0175439 0.066968 8.48644e-07 5.74507e-08 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| are seen in ||| 0.125 0.605812 8.48644e-07 1.47486e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| are set out in ||| 0.016129 0.605812 8.48644e-07 1.56839e-08 2.718 ||| 0-3 ||| 62 1.17835e+06 +en ||| are singled out , ||| 1 0.0120599 8.48644e-07 3.5859e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are singled out ||| 0.333333 0.0120599 8.48644e-07 3.00693e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are sitting in ||| 0.117647 0.605812 1.69729e-06 4.86949e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| are sleeping easy in ||| 0.5 0.605812 8.48644e-07 3.70782e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are so ||| 0.00503145 0.0087276 3.39458e-06 1.03341e-05 2.718 ||| 0-1 ||| 795 1.17835e+06 +en ||| are soon going to see signs ||| 1 0.0178344 8.48644e-07 1.4403e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| are soon going to see ||| 1 0.0178344 8.48644e-07 9.29226e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| are soon going to ||| 0.333333 0.0178344 8.48644e-07 1.3188e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| are soon going ||| 0.333333 0.0178344 8.48644e-07 1.48416e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| are soon ||| 0.037037 0.0178344 8.48644e-07 1.73424e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| are speaking at ||| 1 0.321886 8.48644e-07 6.96765e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are speaking here in ||| 0.333333 0.605812 8.48644e-07 1.63105e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| are still in ||| 0.010101 0.605812 1.69729e-06 5.27727e-06 2.718 ||| 0-2 ||| 198 1.17835e+06 +en ||| are still ||| 0.000279018 0.0002971 8.48644e-07 1.13795e-07 2.718 ||| 0-1 ||| 3584 1.17835e+06 +en ||| are struggling with increased ||| 1 0.0535436 8.48644e-07 4.74756e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are struggling with ||| 0.0357143 0.0535436 8.48644e-07 9.55244e-10 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| are studying at ||| 0.142857 0.321886 8.48644e-07 2.18498e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| are subject in ||| 0.5 0.605812 8.48644e-07 3.78209e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are suffering greatly ||| 0.333333 0.0787598 8.48644e-07 1.01091e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are suffocating , as ||| 0.5 0.066968 8.48644e-07 2.27833e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are taken at ||| 0.0833333 0.0042106 8.48644e-07 5.66089e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| are taken in ||| 0.0888889 0.605812 3.39458e-06 6.38639e-06 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| are taken into ||| 0.0111111 0.525896 1.69729e-06 3.06157e-07 2.718 ||| 0-2 ||| 180 1.17835e+06 +en ||| are taken on ||| 0.0263158 0.22993 8.48644e-07 1.14855e-06 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| are taken up in ||| 0.333333 0.605812 8.48644e-07 2.17808e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| are taken ||| 0.00105152 0.0042106 8.48644e-07 1.35189e-06 2.718 ||| 0-1 ||| 951 1.17835e+06 +en ||| are taking action at ||| 1 0.321886 8.48644e-07 7.79779e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are taking on ||| 0.037037 0.22993 8.48644e-07 5.35529e-07 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| are taking part in ||| 0.027027 0.605812 8.48644e-07 3.55007e-09 2.718 ||| 0-3 ||| 37 1.17835e+06 +en ||| are taking place at ||| 0.1 0.321886 8.48644e-07 3.88213e-10 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| are taking place in ||| 0.056338 0.605812 3.39458e-06 4.48151e-09 2.718 ||| 0-3 ||| 71 1.17835e+06 +en ||| are taking place ||| 0.00274725 0.0153333 8.48644e-07 3.93217e-09 2.718 ||| 0-1 ||| 364 1.17835e+06 +en ||| are taking to ||| 0.0526316 0.0200342 8.48644e-07 7.34396e-08 2.718 ||| 0-1 0-2 ||| 19 1.17835e+06 +en ||| are taking ||| 0.00337268 0.0153333 1.69729e-06 2.61274e-06 2.718 ||| 0-1 ||| 593 1.17835e+06 +en ||| are talking about a ||| 0.0263158 0.0401564 8.48644e-07 2.10876e-10 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| are talking about ||| 0.00835073 0.0401564 3.39458e-06 4.75742e-09 2.718 ||| 0-2 ||| 479 1.17835e+06 +en ||| are talking here ||| 0.0416667 0.0855319 8.48644e-07 4.97985e-09 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| are the appropriations for sustainable agriculture in ||| 1 0.605812 8.48644e-07 9.86382e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| are the effects on ||| 0.166667 0.22993 8.48644e-07 4.20053e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| are the same in ||| 0.142857 0.605812 8.48644e-07 3.46133e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| are the ||| 0.000258732 0.0011669 1.69729e-06 4.34652e-05 2.718 ||| 0-1 ||| 7730 1.17835e+06 +en ||| are there any ||| 0.00207469 0.0117359 8.48644e-07 2.57296e-08 2.718 ||| 0-1 ||| 482 1.17835e+06 +en ||| are there ||| 0.00207039 0.0117359 1.69729e-06 1.70147e-05 2.718 ||| 0-1 ||| 966 1.17835e+06 +en ||| are therefore focusing on ||| 1 0.22993 8.48644e-07 2.12867e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are therefore ||| 0.001221 0.0081305 8.48644e-07 1.31745e-05 2.718 ||| 0-1 ||| 819 1.17835e+06 +en ||| are they interested in ||| 0.25 0.605812 8.48644e-07 4.84825e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| are those in ||| 0.0869565 0.605812 1.69729e-06 5.07338e-06 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| are times when you have to accept ||| 1 0.142731 8.48644e-07 3.40694e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are times when you have to ||| 1 0.142731 8.48644e-07 3.14583e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are times when you have ||| 1 0.142731 8.48644e-07 3.54029e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are times when you ||| 1 0.142731 8.48644e-07 2.96015e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are times when ||| 0.0833333 0.142731 8.48644e-07 9.16825e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| are to a ||| 0.1 0.0247351 1.69729e-06 1.8904e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| are to adhere ||| 1 0.0247351 8.48644e-07 4.30744e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| are to apply in ||| 0.333333 0.605812 8.48644e-07 8.95895e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| are to be commended on ||| 0.2 0.22993 8.48644e-07 2.84084e-12 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| are to be covered by ||| 0.142857 0.0468744 8.48644e-07 1.48827e-11 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| are to be found in ||| 0.0185185 0.605812 8.48644e-07 2.46872e-09 2.718 ||| 0-4 ||| 54 1.17835e+06 +en ||| are to be found ||| 0.00925926 0.0247351 8.48644e-07 1.69111e-09 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| are to be given ||| 0.0243902 0.0546585 8.48644e-07 2.8365e-08 2.718 ||| 0-3 ||| 41 1.17835e+06 +en ||| are to be repaid ||| 0.2 0.0247351 8.48644e-07 1.08206e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| are to be respected in ||| 0.5 0.605812 8.48644e-07 2.76433e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| are to be ||| 0.00318878 0.0247351 4.24322e-06 7.72903e-06 2.718 ||| 0-1 ||| 1568 1.17835e+06 +en ||| are to close ||| 0.333333 0.0247351 8.48644e-07 6.32468e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| are to get on ||| 0.5 0.22993 8.48644e-07 4.89522e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| are to learn about ||| 1 0.0401564 8.48644e-07 1.34858e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| are to stay within ||| 0.333333 0.369196 8.48644e-07 4.24503e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| are to the rest of ||| 1 0.0247351 8.48644e-07 1.07607e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| are to the rest ||| 1 0.0247351 8.48644e-07 1.97938e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| are to the ||| 0.03125 0.0247351 8.48644e-07 2.61823e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| are to ||| 0.0104648 0.0247351 2.88539e-05 0.000426479 2.718 ||| 0-1 ||| 3249 1.17835e+06 +en ||| are treated in ||| 0.037037 0.605812 8.48644e-07 3.80451e-07 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| are ultimately ||| 0.0142857 0.199943 8.48644e-07 1.45886e-05 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| are under way at ||| 0.333333 0.321886 8.48644e-07 4.69424e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| are under way in ||| 0.166667 0.605812 8.48644e-07 5.41901e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| are under ||| 0.0458515 0.205566 1.78215e-05 8.57955e-05 2.718 ||| 0-1 ||| 458 1.17835e+06 +en ||| are undergoing ||| 0.0192308 0.130682 8.48644e-07 7.13117e-07 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| are undertaken ||| 0.047619 0.0006429 8.48644e-07 7.69025e-09 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| are underway in ||| 0.333333 0.605812 8.48644e-07 9.80905e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| are united in ||| 0.0172414 0.605812 8.48644e-07 1.31021e-07 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| are upheld and ||| 0.111111 0.0010182 8.48644e-07 1.45598e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| are uppermost in ||| 0.5 0.605812 8.48644e-07 4.90453e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| are useful in ||| 0.125 0.605812 8.48644e-07 2.22105e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| are using ||| 0.00381679 0.0119063 8.48644e-07 9.71053e-07 2.718 ||| 0-1 ||| 262 1.17835e+06 +en ||| are valued by ||| 0.2 0.0468744 8.48644e-07 3.22689e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| are very good at ||| 0.166667 0.321886 8.48644e-07 1.0952e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| are we going to be able to ||| 0.142857 0.0247351 8.48644e-07 5.57074e-15 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| are we going to be able ||| 0.2 0.0247351 8.48644e-07 6.26925e-14 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| are we going to be ||| 0.142857 0.0247351 8.48644e-07 7.50899e-11 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| are we going to ||| 0.00308642 0.0247351 8.48644e-07 4.14337e-09 2.718 ||| 0-3 ||| 324 1.17835e+06 +en ||| are we in ||| 0.0416667 0.605812 8.48644e-07 7.95395e-05 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| are we to think in ||| 1 0.605812 8.48644e-07 2.70341e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| are we to ||| 0.00469484 0.0247351 8.48644e-07 4.84152e-06 2.718 ||| 0-2 ||| 213 1.17835e+06 +en ||| are well into ||| 1 0.525896 8.48644e-07 5.32575e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are well on ||| 0.0555556 0.22993 8.48644e-07 1.99796e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| are when ||| 0.111111 0.142731 1.69729e-06 9.03276e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| are with them ||| 0.125 0.0535436 8.48644e-07 4.74508e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| are with ||| 0.0495868 0.0535436 5.09187e-06 0.000176897 2.718 ||| 0-1 ||| 121 1.17835e+06 +en ||| are within ||| 0.0188679 0.369196 8.48644e-07 0.000168215 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| are worth stressing ||| 1 0.152 8.48644e-07 7.08653e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| are ||| 0.000735083 0.0006429 0.000119659 0.0001619 2.718 ||| 0-0 ||| 191815 1.17835e+06 +en ||| area , especially with regard to ||| 1 0.0535436 8.48644e-07 2.80538e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| area , especially with regard ||| 1 0.0535436 8.48644e-07 3.15714e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| area , especially with ||| 0.333333 0.0535436 8.48644e-07 4.63672e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| area . we have now ||| 1 0.0123946 8.48644e-07 1.01109e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| area as ||| 0.00564972 0.066968 8.48644e-07 7.47037e-06 2.718 ||| 0-1 ||| 177 1.17835e+06 +en ||| area by ||| 0.0273973 0.0468744 1.69729e-06 3.533e-06 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| area has to do with ||| 1 0.0535436 8.48644e-07 7.60813e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| area in what is ||| 1 0.605812 8.48644e-07 8.43337e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| area in what ||| 1 0.605812 8.48644e-07 2.69083e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| area in which ||| 0.00228833 0.605812 8.48644e-07 1.62907e-06 2.718 ||| 0-1 ||| 437 1.17835e+06 +en ||| area in ||| 0.0272813 0.605812 2.46107e-05 0.000191778 2.718 ||| 0-1 ||| 1063 1.17835e+06 +en ||| area into ||| 0.0625 0.525896 8.48644e-07 9.19362e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| area of external ||| 1 0.0116562 8.48644e-07 1.05906e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| area of intellectual property in ||| 1 0.605812 8.48644e-07 1.15497e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| area of ||| 0.00101582 0.0116562 5.94051e-06 5.66345e-06 2.718 ||| 0-1 ||| 6891 1.17835e+06 +en ||| area on European ||| 1 0.22993 8.48644e-07 1.15331e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| area on ||| 0.0266667 0.22993 1.69729e-06 3.449e-05 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| area when ||| 0.2 0.142731 1.69729e-06 2.47241e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| area where ||| 0.00803859 0.247783 4.24322e-06 3.53694e-06 2.718 ||| 0-1 ||| 622 1.17835e+06 +en ||| area with ||| 0.00925926 0.0535436 8.48644e-07 4.84194e-06 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| area within ||| 0.05 0.369196 8.48644e-07 4.60431e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| areas , leading to ||| 1 0.0247351 8.48644e-07 6.68304e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| areas as ||| 0.00884956 0.066968 8.48644e-07 4.11743e-06 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| areas at ||| 0.03125 0.321886 8.48644e-07 9.15646e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| areas in my ||| 0.25 0.605812 8.48644e-07 6.79768e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| areas in the ||| 0.0121951 0.605812 8.48644e-07 6.48922e-06 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| areas in ||| 0.0104364 0.605812 9.33509e-06 0.000105702 2.718 ||| 0-1 ||| 1054 1.17835e+06 +en ||| areas is proposed in the ||| 1 0.605812 8.48644e-07 2.26971e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| areas is proposed in ||| 1 0.605812 8.48644e-07 3.69709e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| areas of ||| 0.000590842 0.0116562 1.69729e-06 3.12151e-06 2.718 ||| 0-1 ||| 3385 1.17835e+06 +en ||| areas under ||| 0.0232558 0.205566 8.48644e-07 1.29434e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| areas where ||| 0.00343348 0.247783 3.39458e-06 1.94945e-06 2.718 ||| 0-1 ||| 1165 1.17835e+06 +en ||| arena in ||| 0.2 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| argue in ||| 0.0149254 0.605812 8.48644e-07 1.01592e-05 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| argue that ||| 0.00381679 0.0017499 8.48644e-07 2.29944e-08 2.718 ||| 0-1 ||| 262 1.17835e+06 +en ||| argued in ||| 0.0588235 0.605812 1.69729e-06 4.66399e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| argument for a ' ||| 1 0.0286209 8.48644e-07 5.67557e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| argument for a ||| 0.1 0.0286209 8.48644e-07 1.65233e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| argument for ||| 0.00636943 0.0286209 8.48644e-07 3.72768e-07 2.718 ||| 0-1 ||| 157 1.17835e+06 +en ||| argument in ||| 0.0163934 0.605812 8.48644e-07 1.49617e-05 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| arguments , in ||| 0.333333 0.605812 8.48644e-07 1.32718e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| arguments as to ||| 0.0588235 0.066968 8.48644e-07 3.85208e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| arguments as ||| 0.0416667 0.066968 8.48644e-07 4.33508e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| arguments in ||| 0.0166667 0.605812 1.69729e-06 1.11289e-05 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| arguments on ||| 0.027027 0.22993 8.48644e-07 2.00147e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| arguments which have been waged in ||| 1 0.605812 8.48644e-07 2.98256e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| arise at ||| 0.0555556 0.321886 8.48644e-07 1.74009e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| arise for us ||| 1 0.0286209 8.48644e-07 1.44247e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| arise for ||| 0.111111 0.0286209 8.48644e-07 5.00476e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| arise in ||| 0.0620155 0.605812 6.78915e-06 2.00875e-05 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| arise on ||| 0.125 0.22993 8.48644e-07 3.61261e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| arisen in ||| 0.0394737 0.605812 2.54593e-06 6.83436e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| arisen with regard ||| 1 0.0535436 8.48644e-07 1.1749e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| arisen with ||| 0.111111 0.0535436 8.48644e-07 1.72552e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| arises as a result ||| 0.166667 0.066968 8.48644e-07 8.60576e-12 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| arises as a ||| 0.2 0.066968 8.48644e-07 1.63452e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| arises as ||| 0.010101 0.066968 8.48644e-07 3.68752e-07 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| arises at ||| 1 0.321886 8.48644e-07 8.20041e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| arises from ||| 0.0114943 0.0308834 8.48644e-07 7.80045e-08 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| arises in ||| 0.0882353 0.605812 2.54593e-06 9.46651e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| arises when we read ||| 1 0.142731 8.48644e-07 6.67794e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| arises when we ||| 0.333333 0.142731 8.48644e-07 1.38546e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| arises when ||| 0.0454545 0.142731 8.48644e-07 1.22043e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| arises with ||| 1 0.0535436 8.48644e-07 2.39007e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| arising from ||| 0.00479616 0.0308834 3.39458e-06 1.10728e-07 2.718 ||| 0-1 ||| 834 1.17835e+06 +en ||| arising in ||| 0.0886076 0.605812 5.94051e-06 1.34378e-05 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| arising out of ||| 0.0172414 0.0116562 8.48644e-07 1.52004e-09 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| arising ||| 0.00145985 0.0010199 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 685 1.17835e+06 +en ||| armed forces in ||| 0.047619 0.605812 8.48644e-07 2.10083e-10 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| armed with ||| 0.0363636 0.0535436 1.69729e-06 1.00267e-07 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| arms in ||| 0.04 0.605812 8.48644e-07 1.27913e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| army in ||| 0.0344828 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| army of occupation in ||| 0.5 0.605812 8.48644e-07 1.37822e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| arose during ||| 0.0625 0.226251 8.48644e-07 2.60217e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| arose out of ||| 0.125 0.0116562 8.48644e-07 4.70116e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| around , ||| 0.015873 0.159384 8.48644e-07 0.000137632 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| around by ||| 0.166667 0.159384 8.48644e-07 6.05914e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| around during ||| 1 0.192817 8.48644e-07 3.33685e-06 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| around for potential scapegoats ||| 1 0.159384 8.48644e-07 1.82723e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| around for potential ||| 1 0.159384 8.48644e-07 4.56808e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| around for several ||| 0.166667 0.159384 8.48644e-07 5.80989e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| around for ||| 0.0487805 0.159384 1.69729e-06 8.87007e-06 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| around freely ||| 0.2 0.159384 8.48644e-07 1.50033e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| around in ||| 0.37931 0.605812 9.33509e-06 6.15092e-05 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| around issues ||| 0.25 0.159384 8.48644e-07 2.90256e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| around it ||| 0.0196078 0.159384 8.48644e-07 2.05236e-05 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| around long enough ||| 1 0.159384 8.48644e-07 6.44994e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| around long ||| 1 0.159384 8.48644e-07 3.90432e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| around on ||| 0.4 0.22993 1.69729e-06 1.1062e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| around only ||| 0.166667 0.159384 8.48644e-07 1.28463e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| around over ||| 0.5 0.15866 8.48644e-07 4.62471e-06 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| around the country in ||| 1 0.605812 8.48644e-07 1.35904e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| around the hubs ||| 1 0.159384 8.48644e-07 4.95966e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| around the subject areas ||| 1 0.159384 8.48644e-07 8.75452e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| around the subject ||| 0.2 0.159384 8.48644e-07 3.82461e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| around the ||| 0.00332542 0.159384 5.94051e-06 7.08523e-05 2.718 ||| 0-0 ||| 2105 1.17835e+06 +en ||| around them ||| 0.015625 0.159384 8.48644e-07 3.09576e-06 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| around to make ||| 1 0.159384 8.48644e-07 1.78214e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| around to ||| 0.037037 0.159384 8.48644e-07 0.000102551 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| around us in ||| 0.333333 0.605812 1.69729e-06 1.77282e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| around with a reference to ||| 1 0.0535436 8.48644e-07 5.21753e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| around with a reference ||| 1 0.0535436 8.48644e-07 5.87175e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| around with a ||| 1 0.0535436 8.48644e-07 6.88364e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| around with ||| 0.230769 0.0535436 2.54593e-06 1.55297e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| around you at home , ||| 0.5 0.321886 8.48644e-07 2.08236e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| around you at home ||| 0.5 0.321886 8.48644e-07 1.74614e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| around you at ||| 0.5 0.321886 8.48644e-07 1.72034e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| around ||| 0.0587405 0.159384 0.000353036 0.0011541 2.718 ||| 0-0 ||| 7082 1.17835e+06 +en ||| arrange for it ||| 0.333333 0.0286209 8.48644e-07 2.06645e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| arrange for ||| 0.0235294 0.0286209 1.69729e-06 1.16203e-07 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| arranged in ||| 0.153846 0.605812 1.69729e-06 4.34074e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| arrangement in ||| 0.0769231 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| arrangements , ||| 0.00833333 0.0002759 8.48644e-07 8.34783e-08 2.718 ||| 0-0 ||| 120 1.17835e+06 +en ||| arrangements are made concerning ||| 1 0.0888235 8.48644e-07 1.69097e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| arrangements in ||| 0.0862069 0.605812 4.24322e-06 2.02722e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| arrangements to ||| 0.0294118 0.0247351 1.69729e-06 1.23395e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| arrangements with ||| 0.037037 0.0535436 8.48644e-07 5.11826e-07 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| arrangements ||| 0.000286041 0.0002759 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 3496 1.17835e+06 +en ||| arrest ||| 0.000683995 0.0006601 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1462 1.17835e+06 +en ||| arrivals per year from the African coasts ||| 1 0.0117312 8.48644e-07 4.12183e-29 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| arrivals per year from the African ||| 1 0.0117312 8.48644e-07 1.42132e-23 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| arrivals per year from the ||| 1 0.0117312 8.48644e-07 8.21572e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| arrivals per year from ||| 1 0.0117312 8.48644e-07 1.33824e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| arrivals per year ||| 1 0.0117312 8.48644e-07 8.31001e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| arrivals per ||| 1 0.0117312 8.48644e-07 3.332e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| arrive at ||| 0.00431965 0.321886 1.69729e-06 8.0804e-07 2.718 ||| 0-1 ||| 463 1.17835e+06 +en ||| arrive here at communal ||| 0.25 0.321886 8.48644e-07 4.75178e-15 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| arrive here at ||| 0.2 0.321886 8.48644e-07 1.63854e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| arrive in ||| 0.0121951 0.605812 8.48644e-07 9.32798e-06 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| arrived at in ||| 0.0277778 0.605812 8.48644e-07 3.20988e-08 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| arrived at ||| 0.00286533 0.321886 8.48644e-07 6.64033e-07 2.718 ||| 0-1 ||| 349 1.17835e+06 +en ||| arrived in ||| 0.0102041 0.605812 8.48644e-07 7.66557e-06 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| arrived on ||| 0.0333333 0.22993 8.48644e-07 1.3786e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| arrived while ||| 1 0.0151276 8.48644e-07 4.5401e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| arriving . when ||| 1 0.142731 8.48644e-07 9.01627e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| arriving at ||| 0.0190476 0.321886 1.69729e-06 2.0001e-07 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| arriving in ||| 0.0116279 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| art in ||| 0.0666667 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| article 2 ( d ) ) . ||| 1 0.0141032 8.48644e-07 6.07629e-26 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| article 2 ( d ) ) ||| 1 0.0141032 8.48644e-07 2.00604e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| article 2 ( d ) ||| 1 0.0141032 8.48644e-07 1.3957e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| article 2 ( d ||| 1 0.0141032 8.48644e-07 9.71056e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| article 2 ( ||| 0.25 0.0141032 8.48644e-07 1.2777e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| article 2 ||| 0.0147059 0.0141032 8.48644e-07 1.32487e-09 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| article in ||| 0.0188679 0.605812 1.69729e-06 6.64965e-06 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| article on non-discrimination in the Treaty ||| 1 0.605812 8.48644e-07 9.35263e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| article on non-discrimination in the ||| 1 0.605812 8.48644e-07 1.0926e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| article on non-discrimination in ||| 1 0.605812 8.48644e-07 1.77971e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| article ||| 0.000754717 0.0141032 1.69729e-06 3.61e-05 2.718 ||| 0-0 ||| 2650 1.17835e+06 +en ||| articles of ||| 0.0151515 0.0116562 8.48644e-07 1.07732e-07 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| articles ||| 0.00100301 0.0028037 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 997 1.17835e+06 +en ||| as ' ||| 0.00199601 0.066968 8.48644e-07 6.17866e-05 2.718 ||| 0-0 ||| 501 1.17835e+06 +en ||| as , at ||| 0.0416667 0.321886 8.48644e-07 4.86793e-05 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| as , in ||| 0.0113636 0.605812 8.48644e-07 0.000561952 2.718 ||| 0-2 ||| 88 1.17835e+06 +en ||| as , when ||| 0.0909091 0.142731 8.48644e-07 7.24471e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| as , ||| 0.00285714 0.066968 1.69729e-06 0.00214514 2.718 ||| 0-0 ||| 700 1.17835e+06 +en ||| as EUR ||| 0.0714286 0.066968 8.48644e-07 4.80996e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| as Europe , to ||| 0.333333 0.066968 8.48644e-07 9.64504e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as Europe , ||| 0.0357143 0.066968 8.48644e-07 1.08544e-06 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| as Europe ||| 0.00518135 0.066968 8.48644e-07 9.10188e-06 2.718 ||| 0-0 ||| 193 1.17835e+06 +en ||| as Europeans to launch an initiative of ||| 1 0.066968 8.48644e-07 7.2285e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Europeans to launch an initiative ||| 1 0.066968 8.48644e-07 1.32965e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Europeans to launch an ||| 1 0.066968 8.48644e-07 2.12404e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Europeans to launch ||| 1 0.066968 8.48644e-07 4.77881e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Europeans to ||| 0.0555556 0.066968 8.48644e-07 2.41354e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| as Europeans ||| 0.00461894 0.066968 1.69729e-06 2.71617e-07 2.718 ||| 0-0 ||| 433 1.17835e+06 +en ||| as I am on ||| 0.25 0.22993 8.48644e-07 7.65798e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| as I am sure you can ||| 0.333333 0.066968 8.48644e-07 2.71917e-16 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as I am sure you ||| 0.0285714 0.066968 8.48644e-07 9.14222e-14 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| as I am sure ||| 0.00485437 0.066968 8.48644e-07 2.83155e-11 2.718 ||| 0-0 ||| 206 1.17835e+06 +en ||| as I am ||| 0.00291121 0.066968 1.69729e-06 1.62546e-07 2.718 ||| 0-0 ||| 687 1.17835e+06 +en ||| as I do in ||| 0.25 0.605812 8.48644e-07 1.14505e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| as I do on ||| 0.166667 0.22993 8.48644e-07 2.05929e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| as I have ||| 0.000831947 0.066968 8.48644e-07 1.52173e-06 2.718 ||| 0-0 ||| 1202 1.17835e+06 +en ||| as I made clear at ||| 0.333333 0.321886 8.48644e-07 2.01354e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| as I put on ||| 1 0.22993 8.48644e-07 6.60954e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| as I recall , here in ||| 1 0.605812 8.48644e-07 1.36221e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| as I was , in ||| 1 0.605812 8.48644e-07 1.24536e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| as I was ||| 0.00980392 0.066968 8.48644e-07 3.98635e-07 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| as I worked on ||| 0.333333 0.22993 8.48644e-07 2.60761e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| as I would expect it to do ||| 0.5 0.066968 8.48644e-07 2.16051e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as I would expect it to ||| 0.5 0.066968 8.48644e-07 6.28914e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as I would expect it ||| 0.5 0.066968 8.48644e-07 7.07773e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as I would expect ||| 0.25 0.066968 8.48644e-07 3.98001e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as I would ||| 0.0454545 0.066968 8.48644e-07 7.46718e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| as I ||| 0.00227445 0.066968 1.01837e-05 0.000127237 2.718 ||| 0-0 ||| 5276 1.17835e+06 +en ||| as Jordan , Egypt , ||| 1 0.066968 8.48644e-07 4.15705e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Jordan , Egypt ||| 1 0.066968 8.48644e-07 3.48586e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Jordan , ||| 1 0.066968 8.48644e-07 5.36285e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Jordan ||| 1 0.066968 8.48644e-07 4.49698e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Loire-Atlantique is concerned ||| 1 0.066968 8.48644e-07 3.62746e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Loire-Atlantique is ||| 1 0.066968 8.48644e-07 2.25504e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Loire-Atlantique ||| 1 0.066968 8.48644e-07 7.19516e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Member States ||| 0.0125 0.066968 8.48644e-07 4.42325e-09 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| as Member ||| 0.0526316 0.066968 8.48644e-07 9.26916e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| as Members of ||| 0.0155039 0.066968 1.69729e-06 1.44239e-07 2.718 ||| 0-0 ||| 129 1.17835e+06 +en ||| as Members ||| 0.00928793 0.066968 2.54593e-06 2.65322e-06 2.718 ||| 0-0 ||| 323 1.17835e+06 +en ||| as Monday they announced they were going ||| 1 0.066968 8.48644e-07 1.35087e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Monday they announced they were ||| 1 0.066968 8.48644e-07 1.57849e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Monday they announced they ||| 1 0.066968 8.48644e-07 8.8115e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Monday they announced ||| 1 0.066968 8.48644e-07 2.6996e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Monday they ||| 1 0.066968 8.48644e-07 1.29168e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Monday ||| 0.5 0.066968 8.48644e-07 3.95734e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as Mr Watts has also done - ||| 1 0.066968 8.48644e-07 3.67429e-22 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Mr Watts has also done ||| 1 0.066968 8.48644e-07 9.74071e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Mr Watts has also ||| 1 0.066968 8.48644e-07 2.13612e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as Mr Watts has ||| 0.333333 0.066968 8.48644e-07 4.23112e-14 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as Mr Watts ||| 0.333333 0.066968 8.48644e-07 8.21975e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as Mr ||| 0.00140845 0.066968 8.48644e-07 1.17425e-05 2.718 ||| 0-0 ||| 710 1.17835e+06 +en ||| as NOW , on ||| 1 0.22993 8.48644e-07 4.04254e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| as Parliament ||| 0.0023753 0.066968 8.48644e-07 1.03251e-05 2.718 ||| 0-0 ||| 421 1.17835e+06 +en ||| as President Guterres ||| 1 0.066968 8.48644e-07 1.82577e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as President ||| 0.00141443 0.066968 8.48644e-07 2.60825e-06 2.718 ||| 0-0 ||| 707 1.17835e+06 +en ||| as a Christian Socialist ||| 0.5 0.066968 8.48644e-07 2.07138e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as a Christian ||| 0.0714286 0.066968 8.48644e-07 2.49564e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| as a Finn , ||| 0.111111 0.066968 8.48644e-07 3.8034e-11 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| as a Finn ||| 0.0555556 0.066968 8.48644e-07 3.18931e-10 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| as a Member of ||| 0.0052356 0.066968 8.48644e-07 2.23362e-08 2.718 ||| 0-0 ||| 191 1.17835e+06 +en ||| as a Member ||| 0.00253807 0.066968 8.48644e-07 4.10863e-07 2.718 ||| 0-0 ||| 394 1.17835e+06 +en ||| as a basis ||| 0.00931677 0.066968 2.54593e-06 4.73453e-07 2.718 ||| 0-0 ||| 322 1.17835e+06 +en ||| as a consequence ||| 0.00368324 0.066968 1.69729e-06 2.81457e-08 2.718 ||| 0-0 ||| 543 1.17835e+06 +en ||| as a cudgel ||| 0.5 0.066968 8.48644e-07 3.18931e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as a day of ||| 0.0416667 0.066968 8.48644e-07 1.11052e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| as a day ||| 0.0384615 0.066968 8.48644e-07 2.04275e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| as a foundation ||| 0.0769231 0.066968 8.48644e-07 8.05301e-09 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| as a front , ||| 0.5 0.066968 8.48644e-07 7.66386e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as a front ||| 0.5 0.066968 8.48644e-07 6.42646e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as a further ||| 0.037037 0.066968 8.48644e-07 3.85349e-07 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| as a general ||| 0.037037 0.066968 8.48644e-07 1.39453e-07 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| as a genuinely ||| 0.5 0.066968 8.48644e-07 2.72686e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as a group during ||| 1 0.226251 8.48644e-07 1.68443e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| as a last ||| 0.00892857 0.066968 8.48644e-07 1.74136e-07 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| as a location ||| 0.1 0.066968 8.48644e-07 9.16927e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| as a lump sum ||| 0.25 0.066968 8.48644e-07 6.04215e-14 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as a lump ||| 0.25 0.066968 8.48644e-07 1.43519e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as a material for ||| 1 0.066968 8.48644e-07 1.72197e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as a material ||| 0.142857 0.066968 8.48644e-07 2.24049e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| as a matter for ||| 0.0555556 0.0286209 8.48644e-07 5.39916e-09 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| as a matter of fact in ||| 1 0.605812 8.48644e-07 3.45099e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| as a matter of ||| 0.0325973 0.066968 2.6308e-05 4.49714e-08 2.718 ||| 0-0 ||| 951 1.17835e+06 +en ||| as a matter ||| 0.0348162 0.066968 3.05512e-05 8.27228e-07 2.718 ||| 0-0 ||| 1034 1.17835e+06 +en ||| as a means of coping ||| 0.5 0.066968 8.48644e-07 6.86708e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as a means of ||| 0.00350263 0.066968 1.69729e-06 2.74683e-08 2.718 ||| 0-0 ||| 571 1.17835e+06 +en ||| as a means ||| 0.00291971 0.066968 1.69729e-06 5.05267e-07 2.718 ||| 0-0 ||| 685 1.17835e+06 +en ||| as a member of ||| 0.00163934 0.066968 8.48644e-07 7.22143e-09 2.718 ||| 0-0 ||| 610 1.17835e+06 +en ||| as a member ||| 0.00120919 0.066968 8.48644e-07 1.32835e-07 2.718 ||| 0-0 ||| 827 1.17835e+06 +en ||| as a parliament - in ||| 1 0.605812 8.48644e-07 1.89881e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| as a part ||| 0.0175439 0.066968 8.48644e-07 9.50575e-07 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| as a participant in ||| 0.125 0.605812 8.48644e-07 2.29759e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| as a partner in ||| 0.0625 0.605812 8.48644e-07 5.26357e-09 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| as a percentage ||| 0.016129 0.066968 8.48644e-07 1.18005e-08 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| as a place of ||| 0.0588235 0.066968 8.48644e-07 6.52356e-08 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| as a place ||| 0.0263158 0.066968 8.48644e-07 1.19998e-06 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| as a political ||| 0.0714286 0.066968 8.48644e-07 1.42323e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| as a producer ||| 0.166667 0.066968 8.48644e-07 2.55145e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as a rapporteur in ||| 0.2 0.605812 8.48644e-07 1.51014e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| as a reaction ||| 0.0526316 0.066968 8.48644e-07 1.80993e-08 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| as a result , ||| 0.000617665 0.066968 8.48644e-07 5.00623e-08 2.718 ||| 0-0 ||| 1619 1.17835e+06 +en ||| as a result are ||| 0.333333 0.066968 8.48644e-07 6.3694e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as a result in ||| 0.333333 0.605812 8.48644e-07 1.09971e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| as a result of the ||| 0.000643915 0.066968 8.48644e-07 1.40106e-09 2.718 ||| 0-0 ||| 1553 1.17835e+06 +en ||| as a result of ||| 0.00197287 0.066968 6.78915e-06 2.28216e-08 2.718 ||| 0-0 ||| 4055 1.17835e+06 +en ||| as a result ||| 0.00321027 0.066968 1.86702e-05 4.19793e-07 2.718 ||| 0-0 ||| 6853 1.17835e+06 +en ||| as a rich ||| 0.166667 0.066968 8.48644e-07 1.00463e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as a rule , are they ||| 0.333333 0.066968 8.48644e-07 3.82839e-13 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as a rule , are ||| 0.2 0.066968 8.48644e-07 1.17291e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| as a rule , ||| 0.00793651 0.066968 8.48644e-07 7.73042e-09 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| as a rule ||| 0.00512821 0.066968 8.48644e-07 6.48228e-08 2.718 ||| 0-0 ||| 195 1.17835e+06 +en ||| as a share ||| 0.142857 0.066968 8.48644e-07 7.46299e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| as a shield ||| 0.0714286 0.066968 8.48644e-07 1.99332e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| as a sine qua non ||| 0.142857 0.066968 8.48644e-07 9.44355e-21 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| as a sine qua ||| 0.2 0.066968 8.48644e-07 2.00927e-15 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| as a sine ||| 0.2 0.066968 8.48644e-07 1.11626e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| as a source ||| 0.00787402 0.066968 8.48644e-07 5.07898e-08 2.718 ||| 0-0 ||| 127 1.17835e+06 +en ||| as a sport ||| 0.25 0.066968 8.48644e-07 1.20397e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as a state under ||| 0.333333 0.205566 8.48644e-07 6.4607e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| as a substitute for ||| 0.0196078 0.0286209 8.48644e-07 2.23772e-11 2.718 ||| 0-3 ||| 51 1.17835e+06 +en ||| as a think ||| 1 0.066968 8.48644e-07 3.04978e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as a vehicle ||| 0.0285714 0.066968 8.48644e-07 8.05301e-09 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| as a way ||| 0.00793651 0.066968 1.69729e-06 1.71872e-06 2.718 ||| 0-0 ||| 252 1.17835e+06 +en ||| as a whole , should , I ||| 1 0.066968 8.48644e-07 2.01053e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as a whole , should , ||| 1 0.066968 8.48644e-07 2.84234e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as a whole , should ||| 0.333333 0.066968 8.48644e-07 2.38342e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as a whole , ||| 0.00375469 0.066968 2.54593e-06 5.37897e-08 2.718 ||| 0-0 ||| 799 1.17835e+06 +en ||| as a whole in ||| 0.12766 0.605812 5.09187e-06 1.18159e-07 2.718 ||| 0-3 ||| 47 1.17835e+06 +en ||| as a whole ||| 0.0024666 0.066968 1.01837e-05 4.51048e-07 2.718 ||| 0-0 ||| 4865 1.17835e+06 +en ||| as a ||| 0.0338761 0.066968 0.000988671 0.000797328 2.718 ||| 0-0 ||| 34390 1.17835e+06 +en ||| as acceptable bearing in ||| 0.5 0.605812 8.48644e-07 6.80932e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| as advocated in ||| 0.125 0.605812 8.48644e-07 3.91113e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| as allies on ||| 1 0.22993 8.48644e-07 1.18644e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| as along ||| 0.333333 0.111251 8.48644e-07 1.43094e-05 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| as already said - under ||| 1 0.205566 8.48644e-07 4.14578e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| as also ||| 0.00478469 0.066968 8.48644e-07 9.08137e-05 2.718 ||| 0-0 ||| 209 1.17835e+06 +en ||| as always ||| 0.0026178 0.066968 8.48644e-07 3.09392e-06 2.718 ||| 0-0 ||| 382 1.17835e+06 +en ||| as an accomplice in ||| 0.333333 0.605812 8.48644e-07 8.37772e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| as an area in ||| 0.0588235 0.605812 8.48644e-07 8.69817e-09 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| as an assessment ||| 0.166667 0.066968 8.48644e-07 3.47786e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as an emergency measure , ||| 0.166667 0.066968 8.48644e-07 3.35643e-15 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as an emergency measure ||| 0.0833333 0.066968 8.48644e-07 2.81451e-14 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| as an emergency ||| 0.2 0.066968 8.48644e-07 3.75769e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| as an example , in ||| 0.111111 0.605812 8.48644e-07 7.27083e-10 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| as an excuse ||| 0.00460829 0.066968 8.48644e-07 1.4711e-09 2.718 ||| 0-0 ||| 217 1.17835e+06 +en ||| as an ideal solution in ||| 1 0.605812 8.48644e-07 1.33876e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| as an institution ||| 0.00471698 0.066968 8.48644e-07 2.18266e-09 2.718 ||| 0-0 ||| 212 1.17835e+06 +en ||| as an invitation - ||| 1 0.066968 8.48644e-07 1.96029e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as an invitation ||| 0.0769231 0.066968 8.48644e-07 5.1968e-10 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| as an offence in ||| 0.5 0.605812 8.48644e-07 2.17821e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| as an opportunity ||| 0.00355872 0.066968 8.48644e-07 1.43832e-08 2.718 ||| 0-0 ||| 281 1.17835e+06 +en ||| as an option ||| 0.0263158 0.066968 8.48644e-07 3.30996e-09 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| as an ||| 0.00613389 0.066968 2.97026e-05 7.99508e-05 2.718 ||| 0-0 ||| 5706 1.17835e+06 +en ||| as and ||| 0.0708661 0.066968 7.6378e-06 0.000225315 2.718 ||| 0-0 ||| 127 1.17835e+06 +en ||| as announced ||| 0.0181818 0.066968 8.48644e-07 3.75947e-07 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| as another element to ||| 1 0.066968 8.48644e-07 1.67635e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as another element ||| 1 0.066968 8.48644e-07 1.88654e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as another ||| 0.0120482 0.066968 8.48644e-07 4.33688e-06 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| as anyone - ||| 1 0.066968 8.48644e-07 3.25012e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as anyone ||| 0.0227273 0.066968 8.48644e-07 8.6162e-07 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| as are to be found in ||| 1 0.605812 8.48644e-07 2.51918e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| as around ||| 0.2 0.159384 8.48644e-07 1.17769e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| as at ||| 0.0873362 0.321886 1.69729e-05 0.000408196 2.718 ||| 0-1 ||| 229 1.17835e+06 +en ||| as basically ||| 1 0.089334 8.48644e-07 3.35294e-06 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| as befits ||| 0.04 0.066968 8.48644e-07 5.21649e-08 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| as before , the ||| 0.2 0.066968 8.48644e-07 3.29367e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| as before , ||| 0.0232558 0.066968 1.69729e-06 5.365e-07 2.718 ||| 0-0 ||| 86 1.17835e+06 +en ||| as before without realising ||| 0.25 0.066968 8.48644e-07 3.97692e-15 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as before without ||| 0.25 0.066968 8.48644e-07 9.94229e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as before ||| 0.0131579 0.066968 2.54593e-06 4.49877e-06 2.718 ||| 0-0 ||| 228 1.17835e+06 +en ||| as behaving in ||| 0.333333 0.066968 8.48644e-07 1.65559e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as behaving ||| 0.333333 0.066968 8.48644e-07 7.7348e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as being bad news ||| 1 0.066968 8.48644e-07 8.49195e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as being bad ||| 1 0.066968 8.48644e-07 2.33938e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as being important ||| 0.1 0.066968 8.48644e-07 1.96365e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| as being ||| 0.0200211 0.066968 1.61242e-05 5.119e-05 2.718 ||| 0-0 ||| 949 1.17835e+06 +en ||| as can be seen from ||| 0.0263158 0.0489257 8.48644e-07 7.76625e-13 2.718 ||| 0-0 0-4 ||| 38 1.17835e+06 +en ||| as can be seen in ||| 0.0833333 0.605812 8.48644e-07 5.34673e-11 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| as chairman of a labour organization ||| 1 0.066968 8.48644e-07 2.28862e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as chairman of a labour ||| 1 0.066968 8.48644e-07 1.81637e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as chairman of a ||| 0.142857 0.066968 8.48644e-07 4.20456e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| as chairman of ||| 0.00520833 0.066968 8.48644e-07 9.48557e-09 2.718 ||| 0-0 ||| 192 1.17835e+06 +en ||| as chairman ||| 0.00373134 0.066968 8.48644e-07 1.74483e-07 2.718 ||| 0-0 ||| 268 1.17835e+06 +en ||| as clearly inappropriate ||| 0.333333 0.066968 8.48644e-07 2.0025e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as clearly ||| 0.0149254 0.066968 8.48644e-07 3.28279e-06 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| as close ||| 0.00704225 0.066968 8.48644e-07 2.66761e-06 2.718 ||| 0-0 ||| 142 1.17835e+06 +en ||| as compared ||| 0.0135135 0.216645 1.69729e-06 5.87467e-06 2.718 ||| 0-1 ||| 148 1.17835e+06 +en ||| as consisting of ||| 0.333333 0.0116562 8.48644e-07 1.5029e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| as cooperative as ||| 0.333333 0.066968 8.48644e-07 1.16483e-09 2.718 ||| 0-0 0-2 ||| 3 1.17835e+06 +en ||| as defined in ||| 0.00980392 0.605812 8.48644e-07 1.57859e-07 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| as demonstrated by ||| 0.00970874 0.066968 8.48644e-07 2.54983e-09 2.718 ||| 0-0 ||| 103 1.17835e+06 +en ||| as demonstrated ||| 0.00990099 0.066968 8.48644e-07 4.85673e-07 2.718 ||| 0-0 ||| 101 1.17835e+06 +en ||| as described ||| 0.0135135 0.066968 8.48644e-07 8.0226e-07 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| as dictated ||| 0.25 0.066968 8.48644e-07 4.49698e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as died in ||| 1 0.605812 8.48644e-07 4.24098e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| as do exist are not ||| 0.5 0.066968 8.48644e-07 2.94811e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as do exist are ||| 0.5 0.066968 8.48644e-07 8.63511e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as do exist ||| 0.5 0.066968 8.48644e-07 5.69121e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as do ||| 0.0046729 0.066968 8.48644e-07 6.17938e-05 2.718 ||| 0-0 ||| 214 1.17835e+06 +en ||| as does the ||| 0.00746269 0.066968 8.48644e-07 7.74563e-07 2.718 ||| 0-0 ||| 134 1.17835e+06 +en ||| as does ||| 0.003861 0.066968 8.48644e-07 1.26167e-05 2.718 ||| 0-0 ||| 259 1.17835e+06 +en ||| as draftsman of ||| 0.00518135 0.066968 8.48644e-07 2.74788e-08 2.718 ||| 0-0 ||| 193 1.17835e+06 +en ||| as draftsman ||| 0.0042735 0.066968 8.48644e-07 5.0546e-07 2.718 ||| 0-0 ||| 234 1.17835e+06 +en ||| as during ||| 0.0869565 0.14661 1.69729e-06 5.20084e-05 2.718 ||| 0-0 0-1 ||| 23 1.17835e+06 +en ||| as early as at ||| 0.142857 0.321886 1.69729e-06 2.81998e-10 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| as early as in ||| 0.0833333 0.605812 8.48644e-07 3.25537e-09 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| as early as ||| 0.0432277 0.066968 1.27297e-05 1.24267e-08 2.718 ||| 0-2 ||| 347 1.17835e+06 +en ||| as early ||| 0.0155763 0.066968 4.24322e-06 1.21778e-06 2.718 ||| 0-0 ||| 321 1.17835e+06 +en ||| as effectively as ||| 0.0140845 0.066968 8.48644e-07 1.31426e-08 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| as effectively ||| 0.00775194 0.066968 8.48644e-07 1.28793e-06 2.718 ||| 0-0 ||| 129 1.17835e+06 +en ||| as elsewhere , ||| 0.0416667 0.066968 1.69729e-06 7.95848e-08 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| as elsewhere - ||| 0.5 0.066968 8.48644e-07 2.51732e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as elsewhere ||| 0.0288462 0.066968 2.54593e-06 6.67351e-07 2.718 ||| 0-0 ||| 104 1.17835e+06 +en ||| as ever , in ||| 1 0.605812 8.48644e-07 1.05591e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| as ever ||| 0.00641026 0.066968 8.48644e-07 3.37993e-06 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| as evil is because ||| 1 0.066968 8.48644e-07 1.74137e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as evil is ||| 1 0.066968 8.48644e-07 5.29935e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as evil ||| 0.333333 0.066968 8.48644e-07 1.69086e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as expressed in ||| 0.00952381 0.605812 8.48644e-07 4.58026e-07 2.718 ||| 0-2 ||| 105 1.17835e+06 +en ||| as expressed via ||| 1 0.066968 8.48644e-07 4.91307e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as expressed ||| 0.0134228 0.066968 1.69729e-06 1.74842e-06 2.718 ||| 0-0 ||| 149 1.17835e+06 +en ||| as far as , ||| 0.5 0.066968 8.48644e-07 1.49442e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as far as I can ||| 0.0131579 0.066968 8.48644e-07 2.63643e-12 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| as far as I ||| 0.00606061 0.066968 1.69729e-06 8.86405e-10 2.718 ||| 0-0 ||| 330 1.17835e+06 +en ||| as far as a ||| 0.0344828 0.066968 8.48644e-07 5.55462e-09 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| as far as declarations ||| 1 0.066968 8.48644e-07 1.21554e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as far as energy taxation is concerned ||| 1 0.066968 8.48644e-07 4.83015e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as far as energy taxation is ||| 1 0.066968 8.48644e-07 3.0027e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as far as energy taxation ||| 1 0.066968 8.48644e-07 9.58072e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as far as energy ||| 0.125 0.066968 8.48644e-07 1.11404e-11 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| as far as that is ||| 0.0208333 0.066968 8.48644e-07 6.60662e-11 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| as far as that ||| 0.0322581 0.066968 1.69729e-06 2.10797e-09 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| as far as they go , all ||| 1 0.066968 8.48644e-07 1.34794e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as far as they go , ||| 0.5 0.066968 8.48644e-07 2.85253e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as far as they go ||| 0.333333 0.066968 8.48644e-07 2.39197e-13 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as far as they ||| 0.0434783 0.066968 8.48644e-07 4.09023e-10 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| as far as this is possible ||| 0.333333 0.066968 8.48644e-07 2.03548e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| as far as this is ||| 0.0357143 0.066968 8.48644e-07 2.53769e-11 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| as far as this ||| 0.00909091 0.066968 8.48644e-07 8.09701e-10 2.718 ||| 0-2 ||| 110 1.17835e+06 +en ||| as far as we know at ||| 1 0.321886 8.48644e-07 8.32895e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| as far as ||| 0.0150261 0.066968 0.00010014 1.25313e-07 2.718 ||| 0-0 ||| 7853 1.17835e+06 +en ||| as far back as in ||| 0.25 0.605812 8.48644e-07 2.20799e-11 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| as far back as ||| 0.0571429 0.066968 3.39458e-06 8.42859e-11 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| as far back ||| 0.0612245 0.066968 2.54593e-06 8.25976e-09 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| as far ||| 0.0259434 0.066968 9.33509e-05 1.22803e-05 2.718 ||| 0-0 ||| 4240 1.17835e+06 +en ||| as follows in ||| 0.25 0.605812 8.48644e-07 2.49275e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| as follows ||| 0.0056338 0.066968 3.39458e-06 9.5156e-07 2.718 ||| 0-0 ||| 710 1.17835e+06 +en ||| as for ||| 0.00603091 0.0477945 1.35783e-05 0.000206954 2.718 ||| 0-0 0-1 ||| 2653 1.17835e+06 +en ||| as formulated ||| 0.025 0.066968 8.48644e-07 1.74483e-07 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| as from ||| 0.00702576 0.0308834 2.54593e-06 3.88288e-05 2.718 ||| 0-1 ||| 427 1.17835e+06 +en ||| as general , ||| 1 0.066968 8.48644e-07 3.75185e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as general ||| 0.166667 0.066968 8.48644e-07 3.14608e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as given in ||| 0.333333 0.605812 8.48644e-07 3.23398e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| as giving ||| 0.0555556 0.066968 8.48644e-07 2.83489e-06 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| as going concerns ||| 0.333333 0.066968 8.48644e-07 1.15301e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as going ||| 0.0714286 0.066968 8.48644e-07 1.5394e-05 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| as great an ||| 0.25 0.066968 8.48644e-07 3.14207e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as great in ||| 0.5 0.605812 8.48644e-07 1.85189e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| as great ||| 0.0294118 0.066968 1.69729e-06 7.06924e-06 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| as has ||| 0.00268097 0.066968 1.69729e-06 9.25927e-05 2.718 ||| 0-0 ||| 746 1.17835e+06 +en ||| as having a ||| 0.0322581 0.066968 8.48644e-07 3.05297e-07 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| as having regard ||| 0.5 0.066968 8.48644e-07 4.68974e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as having ||| 0.0154639 0.066968 2.54593e-06 6.88757e-06 2.718 ||| 0-0 ||| 194 1.17835e+06 +en ||| as he did at ||| 1 0.321886 8.48644e-07 1.61801e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| as he should ||| 1 0.066968 8.48644e-07 6.9558e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as he ||| 0.00700525 0.066968 3.39458e-06 1.5698e-05 2.718 ||| 0-0 ||| 571 1.17835e+06 +en ||| as high as ||| 0.016 0.066968 1.69729e-06 2.74049e-08 2.718 ||| 0-0 ||| 125 1.17835e+06 +en ||| as high in ||| 0.142857 0.605812 8.48644e-07 7.03531e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| as high ||| 0.0131579 0.066968 1.69729e-06 2.68559e-06 2.718 ||| 0-0 ||| 152 1.17835e+06 +en ||| as his ||| 0.00854701 0.066968 8.48644e-07 5.40536e-06 2.718 ||| 0-0 ||| 117 1.17835e+06 +en ||| as holder of ||| 0.125 0.066968 8.48644e-07 4.5961e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| as holder ||| 0.111111 0.066968 8.48644e-07 8.45431e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| as honourable in ||| 1 0.605812 8.48644e-07 2.45977e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| as if in ||| 0.142857 0.605812 8.48644e-07 3.93751e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| as if such ||| 0.166667 0.066968 8.48644e-07 3.1097e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as if ||| 0.000609385 0.066968 8.48644e-07 1.50307e-05 2.718 ||| 0-0 ||| 1641 1.17835e+06 +en ||| as in a ||| 0.047619 0.605812 8.48644e-07 0.000208872 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| as in any other , ||| 0.2 0.605812 8.48644e-07 1.10089e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| as in any other ||| 0.0625 0.605812 8.48644e-07 9.23146e-09 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| as in any ||| 0.025641 0.605812 8.48644e-07 7.12579e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| as in other areas ||| 0.047619 0.605812 8.48644e-07 1.39736e-09 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| as in other ||| 0.00641026 0.605812 8.48644e-07 6.10465e-06 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| as in the ||| 0.00419287 0.33639 3.39458e-06 0.000509949 2.718 ||| 0-0 0-1 ||| 954 1.17835e+06 +en ||| as in ||| 0.050297 0.605812 0.000107778 0.0047122 2.718 ||| 0-1 ||| 2525 1.17835e+06 +en ||| as inclusive of ||| 1 0.0116562 8.48644e-07 9.4627e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| as increasingly ||| 1 0.066968 8.48644e-07 1.0361e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as indicated by your agenda , on ||| 1 0.22993 8.48644e-07 3.15498e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| as into ||| 0.0625 0.525896 8.48644e-07 0.000225898 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| as ipso facto ||| 1 0.066968 8.48644e-07 6.76345e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as ipso ||| 1 0.066968 8.48644e-07 7.19516e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as is proposed in ||| 0.0666667 0.605812 8.48644e-07 1.64817e-08 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| as is ||| 0.00463392 0.066968 8.48644e-06 0.000563761 2.718 ||| 0-0 ||| 2158 1.17835e+06 +en ||| as it affects ||| 0.0277778 0.066968 8.48644e-07 5.31005e-09 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| as it could ||| 0.012987 0.066968 8.48644e-07 2.27468e-07 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| as it does on ||| 0.153846 0.22993 1.69729e-06 1.05705e-08 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| as it does ||| 0.00434783 0.066968 8.48644e-07 2.24366e-07 2.718 ||| 0-0 ||| 230 1.17835e+06 +en ||| as it expressly states ||| 1 0.066968 8.48644e-07 1.63575e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as it expressly ||| 1 0.066968 8.48644e-07 2.1752e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as it happens ||| 0.00833333 0.066968 8.48644e-07 1.9097e-08 2.718 ||| 0-0 ||| 120 1.17835e+06 +en ||| as it has been doing ||| 0.0909091 0.066968 8.48644e-07 2.01843e-12 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| as it has been ||| 0.00534759 0.066968 8.48644e-07 5.49831e-09 2.718 ||| 0-0 ||| 187 1.17835e+06 +en ||| as it has ||| 0.00417537 0.066968 1.69729e-06 1.64659e-06 2.718 ||| 0-0 ||| 479 1.17835e+06 +en ||| as it is , in ||| 0.333333 0.605812 8.48644e-07 3.13201e-07 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| as it is , on ||| 0.5 0.22993 8.48644e-07 5.63272e-08 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| as it is , ||| 0.00621118 0.066968 8.48644e-07 1.19558e-06 2.718 ||| 0-0 ||| 161 1.17835e+06 +en ||| as it is at ||| 0.0416667 0.321886 8.48644e-07 2.27506e-07 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| as it is in ||| 0.0212766 0.605812 1.69729e-06 2.62632e-06 2.718 ||| 0-3 ||| 94 1.17835e+06 +en ||| as it is on ||| 0.15 0.22993 2.54593e-06 4.72327e-07 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| as it is within ||| 0.166667 0.369196 8.48644e-07 6.30542e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| as it is ||| 0.00264201 0.066968 5.09187e-06 1.00255e-05 2.718 ||| 0-0 ||| 2271 1.17835e+06 +en ||| as it lays out ||| 0.5 0.066968 8.48644e-07 1.15176e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as it lays ||| 0.333333 0.066968 8.48644e-07 3.00689e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as it makes ||| 0.047619 0.066968 8.48644e-07 5.4348e-08 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| as it put it , at ||| 1 0.321886 8.48644e-07 1.69739e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| as it should be in ||| 0.166667 0.605812 8.48644e-07 6.72919e-09 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| as it stands at ||| 0.05 0.321886 8.48644e-07 3.99973e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| as it stands ||| 0.00188679 0.066968 8.48644e-07 1.76255e-08 2.718 ||| 0-0 ||| 530 1.17835e+06 +en ||| as it was , in ||| 1 0.605812 8.48644e-07 3.1309e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| as it was affected ||| 1 0.066968 8.48644e-07 6.6746e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as it was in ||| 0.0144928 0.605812 8.48644e-07 2.62539e-07 2.718 ||| 0-3 ||| 69 1.17835e+06 +en ||| as it was on ||| 0.4 0.101648 1.69729e-06 1.29078e-08 2.718 ||| 0-0 0-1 0-3 ||| 5 1.17835e+06 +en ||| as it was ||| 0.00454545 0.066968 1.69729e-06 1.00219e-06 2.718 ||| 0-0 ||| 440 1.17835e+06 +en ||| as it were , on ||| 0.333333 0.22993 1.69729e-06 3.21956e-09 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| as it were , within ||| 0.333333 0.369196 8.48644e-07 4.29801e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| as it were , ||| 0.0136986 0.066968 3.39458e-06 6.83374e-08 2.718 ||| 0-0 ||| 292 1.17835e+06 +en ||| as it were on behalf of ||| 1 0.22993 8.48644e-07 4.67457e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| as it were on behalf ||| 1 0.22993 8.48644e-07 8.59866e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| as it were on ||| 1 0.22993 8.48644e-07 2.69974e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| as it were ||| 0.010917 0.066968 4.24322e-06 5.73037e-07 2.718 ||| 0-0 ||| 458 1.17835e+06 +en ||| as it would give ||| 1 0.066968 8.48644e-07 1.13764e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as it would ||| 0.0172414 0.066968 8.48644e-07 1.87729e-06 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| as it ||| 0.00843672 0.066968 4.32809e-05 0.000319882 2.718 ||| 0-0 ||| 6045 1.17835e+06 +en ||| as its legal ||| 0.5 0.066968 8.48644e-07 3.32131e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as its objective in ||| 0.5 0.605812 8.48644e-07 4.49131e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| as its ||| 0.00621118 0.066968 3.39458e-06 2.56274e-05 2.718 ||| 0-0 ||| 644 1.17835e+06 +en ||| as laid down in ||| 0.00409836 0.605812 8.48644e-07 3.58565e-10 2.718 ||| 0-3 ||| 244 1.17835e+06 +en ||| as large a ||| 0.0909091 0.066968 8.48644e-07 1.22549e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| as large ||| 0.0136986 0.066968 8.48644e-07 2.76474e-06 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| as late as ||| 0.137931 0.066968 3.39458e-06 1.0257e-08 2.718 ||| 0-0 0-2 ||| 29 1.17835e+06 +en ||| as leader ||| 0.025 0.066968 8.48644e-07 2.14056e-07 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| as load ||| 0.5 0.066968 8.48644e-07 1.16921e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as long ago as in ||| 1 0.605812 8.48644e-07 1.79102e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| as long ago as ||| 0.0601504 0.066968 6.78915e-06 6.83687e-12 2.718 ||| 0-3 ||| 133 1.17835e+06 +en ||| as long ago ||| 0.0103093 0.066968 8.48644e-07 6.69992e-10 2.718 ||| 0-0 ||| 97 1.17835e+06 +en ||| as long as that is ||| 0.1 0.066968 8.48644e-07 3.27379e-11 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| as long as that ||| 0.0555556 0.066968 8.48644e-07 1.04457e-09 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| as long as these ||| 0.0526316 0.066968 8.48644e-07 6.44007e-11 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| as long as they ||| 0.0144928 0.066968 8.48644e-07 2.02684e-10 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| as long as we engage in ||| 0.333333 0.605812 8.48644e-07 8.97497e-15 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| as long as ||| 0.00320718 0.066968 4.24322e-06 6.20969e-08 2.718 ||| 0-0 ||| 1559 1.17835e+06 +en ||| as long ||| 0.0120746 0.066968 9.33509e-06 6.08531e-06 2.718 ||| 0-0 ||| 911 1.17835e+06 +en ||| as low ||| 0.015625 0.066968 8.48644e-07 6.47564e-07 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| as lying in ||| 0.333333 0.605812 8.48644e-07 6.78557e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| as main concern to ||| 0.25 0.066968 8.48644e-07 2.12743e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as main concern ||| 0.25 0.066968 8.48644e-07 2.39418e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as main ||| 0.166667 0.066968 8.48644e-07 1.79339e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as making ||| 0.0217391 0.066968 8.48644e-07 6.91995e-06 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| as many as ||| 0.00609756 0.066968 8.48644e-07 6.30147e-08 2.718 ||| 0-0 ||| 164 1.17835e+06 +en ||| as many of ||| 0.00552486 0.066968 8.48644e-07 3.35711e-07 2.718 ||| 0-0 ||| 181 1.17835e+06 +en ||| as many ||| 0.00211566 0.066968 2.54593e-06 6.17525e-06 2.718 ||| 0-0 ||| 1418 1.17835e+06 +en ||| as matter of ||| 0.5 0.0116562 8.48644e-07 1.44376e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| as may ||| 0.0416667 0.066968 8.48644e-07 1.34765e-05 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| as measured by ||| 0.166667 0.066968 8.48644e-07 1.12382e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as measured ||| 0.0833333 0.066968 8.48644e-07 2.14056e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| as medicines according to ||| 0.5 0.0247351 8.48644e-07 2.18305e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| as member ||| 0.0909091 0.066968 8.48644e-07 2.99678e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| as members of the ||| 0.00952381 0.066968 8.48644e-07 8.85512e-09 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| as members of ||| 0.0103093 0.066968 8.48644e-07 1.44239e-07 2.718 ||| 0-0 ||| 97 1.17835e+06 +en ||| as members ||| 0.00520833 0.066968 8.48644e-07 2.65322e-06 2.718 ||| 0-0 ||| 192 1.17835e+06 +en ||| as mentioned in ||| 0.0108696 0.605812 8.48644e-07 4.1703e-07 2.718 ||| 0-2 ||| 92 1.17835e+06 +en ||| as much as EUR ||| 0.142857 0.066968 8.48644e-07 4.92644e-11 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| as much as possible in ||| 0.0434783 0.066968 8.48644e-07 3.16305e-12 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| as much as possible ||| 0.00248139 0.066968 8.48644e-07 1.47775e-10 2.718 ||| 0-2 ||| 403 1.17835e+06 +en ||| as much as ||| 0.00805524 0.066968 5.94051e-06 1.84235e-07 2.718 ||| 0-2 ||| 869 1.17835e+06 +en ||| as much in ||| 0.135135 0.605812 4.24322e-06 4.72963e-06 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| as much itself in ||| 1 0.605812 8.48644e-07 3.21e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| as much of ||| 0.0606061 0.066968 1.69729e-06 9.81512e-07 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| as much on ||| 0.25 0.22993 2.54593e-06 8.50595e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| as much to the ||| 0.0588235 0.066968 8.48644e-07 9.849e-08 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| as much to ||| 0.0454545 0.066968 1.69729e-06 1.60429e-06 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| as much when ||| 0.5 0.142731 8.48644e-07 6.09746e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| as much ||| 0.00536847 0.066968 9.33509e-06 1.80545e-05 2.718 ||| 0-0 ||| 2049 1.17835e+06 +en ||| as near ||| 0.0625 0.066968 8.48644e-07 7.05126e-07 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| as new Members ||| 1 0.066968 8.48644e-07 1.58583e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as new ||| 0.025974 0.066968 1.69729e-06 1.07514e-05 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| as news ||| 0.142857 0.066968 8.48644e-07 6.52961e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| as not ||| 0.00260417 0.066968 8.48644e-07 6.14125e-05 2.718 ||| 0-0 ||| 384 1.17835e+06 +en ||| as of now in ||| 0.5 0.605812 8.48644e-07 5.27693e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| as of right ||| 0.0769231 0.066968 1.69729e-06 6.30644e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| as of ||| 0.0361842 0.066968 1.86702e-05 0.000977894 2.718 ||| 0-0 ||| 608 1.17835e+06 +en ||| as off-limits ||| 1 0.066968 8.48644e-07 7.19516e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as often as possible in ||| 1 0.605812 8.48644e-07 5.06798e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| as on the basis ||| 0.2 0.22993 8.48644e-07 3.08937e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| as on the ||| 0.013986 0.066968 1.69729e-06 7.38894e-06 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| as on ||| 0.032 0.148449 1.01837e-05 0.00149387 2.718 ||| 0-0 0-1 ||| 375 1.17835e+06 +en ||| as one might wish ||| 1 0.066968 8.48644e-07 8.48437e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as one might ||| 0.0454545 0.066968 8.48644e-07 2.87898e-08 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| as one must , ||| 0.333333 0.066968 8.48644e-07 1.38191e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as one must ||| 0.25 0.066968 8.48644e-07 1.15879e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as one of the most significant documents ||| 1 0.0116562 8.48644e-07 2.23384e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| as one of the most significant ||| 0.333333 0.0116562 8.48644e-07 8.86445e-16 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| as one of the most ||| 0.05 0.0116562 8.48644e-07 1.53897e-11 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| as one of the ||| 0.00159744 0.0116562 8.48644e-07 3.56077e-08 2.718 ||| 0-2 ||| 626 1.17835e+06 +en ||| as one of ||| 0.00565611 0.0116562 4.24322e-06 5.80008e-07 2.718 ||| 0-2 ||| 884 1.17835e+06 +en ||| as one personally associated in ||| 1 0.605812 8.48644e-07 3.93467e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| as one ||| 0.00629811 0.066968 7.6378e-06 7.49736e-05 2.718 ||| 0-0 ||| 1429 1.17835e+06 +en ||| as opposed ||| 0.00299401 0.066968 8.48644e-07 3.75947e-07 2.718 ||| 0-0 ||| 334 1.17835e+06 +en ||| as originating in ||| 0.2 0.605812 8.48644e-07 1.69639e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| as our prime requirement ||| 0.5 0.066968 8.48644e-07 1.57736e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as our prime ||| 0.333333 0.066968 8.48644e-07 3.74669e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as our starting ||| 0.142857 0.066968 8.48644e-07 1.13393e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| as our ||| 0.00332226 0.066968 1.69729e-06 2.48125e-05 2.718 ||| 0-0 ||| 602 1.17835e+06 +en ||| as outlined in ||| 0.030303 0.605812 1.69729e-06 8.1521e-08 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| as part of a ||| 0.00625 0.066968 1.69729e-06 5.1677e-08 2.718 ||| 0-0 ||| 320 1.17835e+06 +en ||| as part of and within ||| 1 0.369196 8.48644e-07 9.18458e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| as part of the Commission ||| 0.333333 0.066968 8.48644e-07 4.1806e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as part of the ||| 0.00147275 0.066968 1.69729e-06 7.15734e-08 2.718 ||| 0-0 ||| 1358 1.17835e+06 +en ||| as part of ||| 0.0289436 0.066968 5.09187e-05 1.16585e-06 2.718 ||| 0-0 ||| 2073 1.17835e+06 +en ||| as part ||| 0.0344338 0.066968 8.23185e-05 2.14452e-05 2.718 ||| 0-0 ||| 2817 1.17835e+06 +en ||| as parties to ||| 0.142857 0.066968 8.48644e-07 1.17321e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| as parties ||| 0.142857 0.066968 8.48644e-07 1.32031e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| as partners in ||| 0.0769231 0.605812 8.48644e-07 1.20632e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| as people ||| 0.0137931 0.066968 1.69729e-06 1.58329e-05 2.718 ||| 0-0 ||| 145 1.17835e+06 +en ||| as planned in ||| 0.0666667 0.605812 8.48644e-07 1.61157e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| as possible , ||| 0.000645995 0.066968 8.48644e-07 1.72062e-06 2.718 ||| 0-0 ||| 1548 1.17835e+06 +en ||| as possible . secondly ||| 1 0.303244 8.48644e-07 1.43497e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| as possible . ||| 0.000410341 0.066968 8.48644e-07 4.37027e-08 2.718 ||| 0-0 ||| 2437 1.17835e+06 +en ||| as possible at ||| 0.0526316 0.321886 8.48644e-07 3.27414e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| as possible in order to ||| 0.0172414 0.605812 8.48644e-07 1.78875e-10 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| as possible in order ||| 0.027027 0.605812 8.48644e-07 2.01304e-09 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| as possible in ||| 0.0460251 0.605812 9.33509e-06 3.77965e-06 2.718 ||| 0-2 ||| 239 1.17835e+06 +en ||| as possible on ||| 0.0123457 0.22993 8.48644e-07 6.79747e-07 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| as possible ||| 0.0025535 0.066968 1.78215e-05 1.44281e-05 2.718 ||| 0-0 ||| 8224 1.17835e+06 +en ||| as presented in ||| 0.0714286 0.605812 8.48644e-07 3.71321e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| as prices ||| 0.333333 0.066968 8.48644e-07 5.70216e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as proposed ||| 0.00299401 0.066968 8.48644e-07 2.00745e-06 2.718 ||| 0-0 ||| 334 1.17835e+06 +en ||| as provided ||| 0.00917431 0.066968 8.48644e-07 4.12283e-06 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| as providing ||| 0.0175439 0.066968 8.48644e-07 1.65129e-06 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| as published in ||| 0.125 0.605812 8.48644e-07 1.05082e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| as pure ||| 0.1 0.066968 8.48644e-07 1.493e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| as push ||| 0.5 0.066968 8.48644e-07 4.98265e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as quickly as possible in order to ||| 0.0833333 0.605812 8.48644e-07 8.26869e-17 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| as quickly as possible in order ||| 0.1 0.605812 8.48644e-07 9.30548e-16 2.718 ||| 0-4 ||| 10 1.17835e+06 +en ||| as quickly as possible in ||| 0.0294118 0.605812 8.48644e-07 1.74718e-12 2.718 ||| 0-4 ||| 34 1.17835e+06 +en ||| as read now that we ||| 1 0.066968 8.48644e-07 3.41055e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as read now that ||| 1 0.066968 8.48644e-07 3.00428e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as read now ||| 1 0.066968 8.48644e-07 1.78597e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as read ||| 0.0454545 0.066968 1.69729e-06 8.67017e-07 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| as recently as Monday they announced they ||| 1 0.066968 8.48644e-07 6.11429e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| as recently as Monday they announced ||| 1 0.066968 8.48644e-07 1.87325e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| as recently as Monday they ||| 1 0.066968 8.48644e-07 8.96292e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| as recently as Monday ||| 1 0.066968 8.48644e-07 2.74599e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| as recently as in ||| 1 0.605812 1.69729e-06 3.26979e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| as recently as ||| 0.0630631 0.066968 5.94051e-06 1.24818e-08 2.718 ||| 0-2 ||| 111 1.17835e+06 +en ||| as recently ||| 0.015748 0.066968 1.69729e-06 1.22318e-06 2.718 ||| 0-0 ||| 127 1.17835e+06 +en ||| as regards a ||| 0.0178571 0.0372075 8.48644e-07 7.54272e-08 2.718 ||| 0-0 0-1 ||| 56 1.17835e+06 +en ||| as regards defence ||| 1 0.066968 8.48644e-07 6.34613e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as regards how best ||| 0.2 0.066968 8.48644e-07 1.25005e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| as regards how ||| 0.0571429 0.066968 1.69729e-06 9.02561e-10 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| as regards the ||| 0.000202388 0.066968 8.48644e-07 1.54603e-07 2.718 ||| 0-0 ||| 4941 1.17835e+06 +en ||| as regards ||| 0.0128162 0.0372075 0.000130691 1.70166e-06 2.718 ||| 0-0 0-1 ||| 12016 1.17835e+06 +en ||| as regional products ||| 1 0.066968 8.48644e-07 4.58332e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as regional ||| 0.1 0.066968 8.48644e-07 4.40704e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| as repeated attempts were made , in ||| 0.333333 0.605812 8.48644e-07 1.32361e-18 2.718 ||| 0-6 ||| 3 1.17835e+06 +en ||| as representatives ||| 0.00641026 0.066968 8.48644e-07 5.82808e-07 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| as required ||| 0.00847458 0.066968 8.48644e-07 2.85468e-06 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| as residents of ||| 0.333333 0.066968 8.48644e-07 3.12926e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as residents ||| 0.166667 0.066968 8.48644e-07 5.75613e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as saying in ||| 0.5 0.605812 8.48644e-07 8.35944e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| as set out at ||| 0.25 0.321886 8.48644e-07 9.13742e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| as set out in ||| 0.00431034 0.605812 8.48644e-07 1.05482e-08 2.718 ||| 0-3 ||| 232 1.17835e+06 +en ||| as set ||| 0.028169 0.066968 1.69729e-06 1.05121e-05 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| as she ||| 0.00632911 0.066968 8.48644e-07 5.11396e-06 2.718 ||| 0-0 ||| 158 1.17835e+06 +en ||| as shown in ||| 0.0416667 0.605812 8.48644e-07 4.91954e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| as signatories ||| 0.333333 0.066968 8.48644e-07 3.23782e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as somebody in ||| 1 0.605812 8.48644e-07 3.91113e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| as something that concerns ||| 1 0.066968 8.48644e-07 1.25443e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as something that ||| 0.0232558 0.066968 8.48644e-07 1.67481e-07 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| as something ||| 0.00471698 0.066968 8.48644e-07 9.9563e-06 2.718 ||| 0-0 ||| 212 1.17835e+06 +en ||| as soon as they reach ||| 0.5 0.066968 8.48644e-07 4.46954e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as soon as they ||| 0.0294118 0.066968 8.48644e-07 5.51795e-11 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| as soon as ||| 0.00369686 0.066968 5.09187e-06 1.69055e-08 2.718 ||| 0-2 ||| 1623 1.17835e+06 +en ||| as soon ||| 0.00152905 0.066968 4.24322e-06 1.65669e-06 2.718 ||| 0-0 ||| 3270 1.17835e+06 +en ||| as stating ||| 0.166667 0.066968 8.48644e-07 4.20917e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as still exist ||| 1 0.066968 8.48644e-07 1.24782e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as still ||| 0.125 0.066968 8.48644e-07 1.35485e-05 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| as strengthening international cooperation in cases of ||| 1 0.066968 8.48644e-07 2.48479e-22 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as strengthening international cooperation in cases ||| 1 0.066968 8.48644e-07 4.57066e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as strengthening international cooperation in ||| 1 0.066968 8.48644e-07 3.56804e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as strengthening international cooperation ||| 1 0.066968 8.48644e-07 1.66696e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as strengthening international ||| 1 0.066968 8.48644e-07 1.80994e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as strengthening ||| 0.037037 0.066968 8.48644e-07 2.33843e-07 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| as subjects of ||| 0.25 0.066968 8.48644e-07 2.32739e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as subjects ||| 0.0769231 0.066968 8.48644e-07 4.28112e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| as such , in ||| 0.111111 0.605812 8.48644e-07 1.16262e-06 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| as such , ||| 0.0055991 0.066968 4.24322e-06 4.43808e-06 2.718 ||| 0-0 ||| 893 1.17835e+06 +en ||| as such at ||| 0.5 0.321886 8.48644e-07 8.44518e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| as such in ||| 0.0769231 0.605812 2.54593e-06 9.74907e-06 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| as such ||| 0.00785469 0.066968 1.35783e-05 3.72152e-05 2.718 ||| 0-0 ||| 2037 1.17835e+06 +en ||| as supporting ||| 0.0526316 0.066968 8.48644e-07 5.75613e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| as that produced ||| 0.333333 0.066968 8.48644e-07 3.20135e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as that ||| 0.00263158 0.066968 1.69729e-06 0.000302585 2.718 ||| 0-0 ||| 760 1.17835e+06 +en ||| as the Commission has proposed with the ||| 0.5 0.066968 8.48644e-07 1.45464e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as the Commission has proposed with ||| 0.5 0.066968 8.48644e-07 2.36944e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as the Commission has proposed ||| 0.0909091 0.066968 8.48644e-07 3.70543e-13 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| as the Commission has ||| 0.0277778 0.066968 8.48644e-07 3.32028e-09 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| as the Commission ||| 0.00204918 0.066968 8.48644e-07 6.45027e-07 2.718 ||| 0-0 ||| 488 1.17835e+06 +en ||| as the basis for ||| 0.00862069 0.0286209 8.48644e-07 4.27989e-09 2.718 ||| 0-3 ||| 116 1.17835e+06 +en ||| as the case may be , in ||| 1 0.066968 8.48644e-07 4.09487e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as the case may be , into ||| 1 0.525896 8.48644e-07 2.40252e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| as the case may be , ||| 0.0555556 0.066968 8.48644e-07 1.91309e-12 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| as the case may be ||| 0.0357143 0.066968 8.48644e-07 1.6042e-11 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| as the case may ||| 0.0434783 0.066968 8.48644e-07 8.8518e-10 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| as the case ||| 0.0434783 0.066968 8.48644e-07 1.1815e-06 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| as the city depends on them ||| 1 0.066968 8.48644e-07 6.13531e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as the city depends on ||| 1 0.066968 8.48644e-07 2.28724e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as the city depends ||| 1 0.066968 8.48644e-07 3.41839e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as the city ||| 0.333333 0.066968 8.48644e-07 2.26383e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as the country ||| 0.00793651 0.066968 8.48644e-07 3.97441e-07 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| as the criteria ||| 0.166667 0.066968 8.48644e-07 3.37919e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as the honourable Member ||| 0.011236 0.066968 8.48644e-07 2.97044e-11 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| as the honourable ||| 0.0555556 0.066968 8.48644e-07 5.7645e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| as the issue of ||| 0.0285714 0.066968 8.48644e-07 4.54342e-08 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| as the issue ||| 0.0192308 0.066968 8.48644e-07 8.35741e-07 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| as the legal ||| 0.142857 0.066968 8.48644e-07 1.43119e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| as the rapporteur recommends ||| 0.166667 0.066968 8.48644e-07 1.99604e-13 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as the rapporteur ||| 0.00266667 0.066968 8.48644e-07 7.98416e-08 2.718 ||| 0-0 ||| 375 1.17835e+06 +en ||| as the term for ||| 1 0.066968 8.48644e-07 9.28521e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as the term ||| 0.125 0.066968 8.48644e-07 1.20811e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| as the year ||| 0.0454545 0.066968 8.48644e-07 2.75415e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| as the ||| 0.00274566 0.066968 4.41295e-05 0.00110431 2.718 ||| 0-0 ||| 18939 1.17835e+06 +en ||| as their own ||| 0.0416667 0.066968 8.48644e-07 3.53466e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| as their ||| 0.00446429 0.066968 1.69729e-06 2.08498e-05 2.718 ||| 0-0 ||| 448 1.17835e+06 +en ||| as there are ||| 0.00465116 0.066968 8.48644e-07 8.36597e-07 2.718 ||| 0-0 ||| 215 1.17835e+06 +en ||| as there ||| 0.00284091 0.066968 8.48644e-07 5.51383e-05 2.718 ||| 0-0 ||| 352 1.17835e+06 +en ||| as they affect ||| 0.0714286 0.066968 8.48644e-07 1.37387e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| as they are in ||| 0.1 0.605812 3.39458e-06 2.33365e-07 2.718 ||| 0-3 ||| 40 1.17835e+06 +en ||| as they are ||| 0.00118906 0.066968 8.48644e-07 8.90827e-07 2.718 ||| 0-0 ||| 841 1.17835e+06 +en ||| as they claim , they ||| 0.5 0.066968 8.48644e-07 1.07641e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as they claim , ||| 0.5 0.066968 8.48644e-07 3.29782e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as they claim ||| 0.166667 0.066968 8.48644e-07 2.76536e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as they continue ||| 0.166667 0.066968 8.48644e-07 1.35861e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| as they do at ||| 0.142857 0.321886 8.48644e-07 4.57703e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| as they make ||| 0.111111 0.066968 8.48644e-07 1.02031e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| as they set off on ||| 1 0.22993 8.48644e-07 6.57921e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| as they stand , ||| 0.0263158 0.066968 8.48644e-07 1.15389e-09 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| as they stand during ||| 0.5 0.226251 8.48644e-07 1.58704e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| as they stand ||| 0.00862069 0.066968 8.48644e-07 9.67582e-09 2.718 ||| 0-0 ||| 116 1.17835e+06 +en ||| as they take ||| 0.142857 0.066968 8.48644e-07 9.45271e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| as they try ||| 0.333333 0.066968 8.48644e-07 9.04173e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as they ||| 0.00883534 0.066968 1.86702e-05 5.87125e-05 2.718 ||| 0-0 ||| 2490 1.17835e+06 +en ||| as things are ||| 0.142857 0.066968 8.48644e-07 1.12172e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| as things stand at ||| 0.0454545 0.321886 1.69729e-06 2.76483e-11 2.718 ||| 0-3 ||| 44 1.17835e+06 +en ||| as things stand to ||| 1 0.066968 8.48644e-07 1.08262e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as things stand ||| 0.0162162 0.066968 2.54593e-06 1.21837e-09 2.718 ||| 0-0 ||| 185 1.17835e+06 +en ||| as things ||| 0.057377 0.066968 5.94051e-06 7.39303e-06 2.718 ||| 0-0 ||| 122 1.17835e+06 +en ||| as this , to be very careful ||| 1 0.066968 8.48644e-07 2.15132e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as this , to be very ||| 1 0.066968 8.48644e-07 7.76649e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as this , to be ||| 1 0.066968 8.48644e-07 2.23207e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as this , to ||| 0.333333 0.066968 8.48644e-07 1.23163e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as this , ||| 0.02 0.066968 8.48644e-07 1.38606e-05 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| as this is possible ||| 0.0909091 0.066968 8.48644e-07 2.9218e-09 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| as this is ||| 0.0034662 0.066968 1.69729e-06 3.64268e-06 2.718 ||| 0-0 ||| 577 1.17835e+06 +en ||| as this must in ||| 1 0.605812 8.48644e-07 4.70595e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| as this one ||| 0.0133333 0.066968 8.48644e-07 4.84434e-07 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| as this will be ||| 0.0588235 0.066968 8.48644e-07 1.82226e-08 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| as this will ||| 0.0333333 0.066968 8.48644e-07 1.0055e-06 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| as this would ||| 0.0222222 0.066968 8.48644e-07 6.82101e-07 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| as this ||| 0.00410889 0.066968 6.78915e-06 0.000116227 2.718 ||| 0-0 ||| 1947 1.17835e+06 +en ||| as through ||| 0.0142857 0.0366102 8.48644e-07 9.59622e-06 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| as to be ||| 0.0138889 0.066968 8.48644e-07 2.89671e-05 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| as to create ||| 0.015873 0.066968 8.48644e-07 1.79977e-07 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| as to encourage ||| 0.0227273 0.066968 8.48644e-07 6.15373e-08 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| as to ensure ||| 0.00732601 0.066968 1.69729e-06 7.1671e-07 2.718 ||| 0-0 ||| 273 1.17835e+06 +en ||| as to give ||| 0.0153846 0.066968 8.48644e-07 9.68614e-07 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| as to how they wish ||| 1 0.066968 8.48644e-07 5.51031e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as to how they ||| 0.0526316 0.066968 8.48644e-07 1.8698e-09 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| as to how ||| 0.00158228 0.066968 8.48644e-07 5.72857e-07 2.718 ||| 0-0 ||| 632 1.17835e+06 +en ||| as to the ||| 0.000904977 0.066968 8.48644e-07 9.8127e-05 2.718 ||| 0-0 ||| 1105 1.17835e+06 +en ||| as to when ||| 0.0243902 0.142731 8.48644e-07 5.39812e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| as to where ||| 0.0175439 0.247783 8.48644e-07 7.72238e-06 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| as to whether ||| 0.00117509 0.066968 8.48644e-07 4.19892e-07 2.718 ||| 0-0 ||| 851 1.17835e+06 +en ||| as to ||| 0.0171025 0.066968 8.8259e-05 0.00159837 2.718 ||| 0-0 ||| 6081 1.17835e+06 +en ||| as tomatoes and ||| 1 0.066968 8.48644e-07 9.01259e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as tomatoes ||| 1 0.066968 8.48644e-07 7.19516e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as too much ||| 0.142857 0.066968 8.48644e-07 2.45721e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| as too ||| 0.0277778 0.066968 8.48644e-07 2.44815e-05 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| as voting ||| 0.111111 0.0375827 8.48644e-07 1.11345e-06 2.718 ||| 0-0 0-1 ||| 9 1.17835e+06 +en ||| as was apparent in ||| 0.333333 0.605812 8.48644e-07 5.25574e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| as was the ||| 0.00636943 0.066968 8.48644e-07 3.4598e-06 2.718 ||| 0-0 ||| 157 1.17835e+06 +en ||| as was ||| 0.0035503 0.066968 2.54593e-06 5.63561e-05 2.718 ||| 0-0 ||| 845 1.17835e+06 +en ||| as we also ||| 0.030303 0.066968 8.48644e-07 1.03094e-06 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| as we approach ||| 0.00934579 0.066968 8.48644e-07 4.47615e-08 2.718 ||| 0-0 ||| 107 1.17835e+06 +en ||| as we are able ||| 0.2 0.066968 8.48644e-07 2.58679e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| as we are about to ||| 0.0714286 0.066968 8.48644e-07 3.89373e-10 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| as we are about ||| 0.047619 0.066968 8.48644e-07 4.38196e-09 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| as we are concerned in ||| 0.5 0.605812 8.48644e-07 1.30562e-09 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| as we are ||| 0.0075188 0.066968 5.09187e-06 3.09833e-06 2.718 ||| 0-0 ||| 798 1.17835e+06 +en ||| as we begin ||| 0.0833333 0.0241782 8.48644e-07 2.8506e-11 2.718 ||| 0-0 0-1 0-2 ||| 12 1.17835e+06 +en ||| as we come to ||| 0.111111 0.066968 8.48644e-07 1.54107e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| as we come ||| 0.0555556 0.066968 8.48644e-07 1.7343e-07 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| as we did in ||| 0.016129 0.605812 8.48644e-07 2.42971e-08 2.718 ||| 0-3 ||| 62 1.17835e+06 +en ||| as we did ||| 0.00793651 0.066968 1.69729e-06 9.27495e-08 2.718 ||| 0-0 ||| 252 1.17835e+06 +en ||| as we do in ||| 0.0322581 0.605812 8.48644e-07 1.83769e-07 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| as we do with ||| 0.037037 0.0535436 8.48644e-07 4.63974e-09 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| as we do ||| 0.00363636 0.066968 8.48644e-07 7.01502e-07 2.718 ||| 0-0 ||| 275 1.17835e+06 +en ||| as we engage in ||| 0.166667 0.605812 8.48644e-07 2.59982e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| as we go along ||| 0.0909091 0.066968 8.48644e-07 2.08385e-11 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| as we go into ||| 0.2 0.296432 8.48644e-07 2.6436e-09 2.718 ||| 0-0 0-3 ||| 5 1.17835e+06 +en ||| as we go ||| 0.0416667 0.066968 8.48644e-07 1.19419e-07 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| as we have acted in ||| 1 0.605812 8.48644e-07 1.24118e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| as we have heard in ||| 0.0769231 0.605812 8.48644e-07 5.06707e-11 2.718 ||| 0-4 ||| 13 1.17835e+06 +en ||| as we in ||| 0.09375 0.605812 2.54593e-06 5.34943e-05 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| as we know at ||| 1 0.321886 8.48644e-07 1.19556e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| as we know it ||| 0.0192308 0.066968 8.48644e-07 9.36902e-10 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| as we know ||| 0.000977517 0.066968 8.48644e-07 5.26846e-08 2.718 ||| 0-0 ||| 1023 1.17835e+06 +en ||| as we look ||| 0.03125 0.066968 8.48644e-07 5.95255e-08 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| as we move ||| 0.0126582 0.066968 8.48644e-07 3.12228e-08 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| as we say in ||| 0.0111111 0.605812 8.48644e-07 5.11298e-08 2.718 ||| 0-3 ||| 90 1.17835e+06 +en ||| as we stand on ||| 0.333333 0.22993 8.48644e-07 1.58548e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| as we try ||| 0.1 0.066968 8.48644e-07 3.14474e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| as we were ||| 0.03125 0.066968 1.69729e-06 3.65811e-07 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| as we would then be out ||| 0.25 0.066968 8.48644e-07 1.33971e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as we would then be ||| 0.2 0.066968 8.48644e-07 3.49758e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| as we would then ||| 0.25 0.066968 8.48644e-07 1.92992e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as we would ||| 0.016129 0.066968 8.48644e-07 1.19841e-06 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| as we ||| 0.00613012 0.066968 2.6308e-05 0.000204204 2.718 ||| 0-0 ||| 5057 1.17835e+06 +en ||| as well , in ||| 0.0833333 0.605812 8.48644e-07 8.91031e-07 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| as well , ||| 0.004 0.066968 1.69729e-06 3.40134e-06 2.718 ||| 0-0 ||| 500 1.17835e+06 +en ||| as well as , ||| 0.0222222 0.066968 8.48644e-07 3.47086e-08 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| as well as a ||| 0.00255102 0.066968 8.48644e-07 1.29008e-08 2.718 ||| 0-0 ||| 392 1.17835e+06 +en ||| as well as at ||| 0.02 0.321886 8.48644e-07 6.60466e-09 2.718 ||| 0-3 ||| 50 1.17835e+06 +en ||| as well as disrupting ||| 1 0.066968 8.48644e-07 5.23883e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| as well as for ||| 0.00501253 0.0286209 1.69729e-06 1.8996e-09 2.718 ||| 0-3 ||| 399 1.17835e+06 +en ||| as well as he should ||| 1 0.066968 8.48644e-07 1.12546e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| as well as he ||| 0.333333 0.066968 8.48644e-07 2.53996e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| as well as in ||| 0.00197239 0.605812 8.48644e-07 7.62438e-08 2.718 ||| 0-3 ||| 507 1.17835e+06 +en ||| as well as making a ||| 0.5 0.066968 8.48644e-07 4.96296e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as well as making ||| 0.0277778 0.066968 8.48644e-07 1.11965e-10 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| as well as on the basis ||| 0.333333 0.22993 8.48644e-07 4.99862e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| as well as on the ||| 0.00884956 0.22993 8.48644e-07 8.41803e-10 2.718 ||| 0-3 ||| 113 1.17835e+06 +en ||| as well as on ||| 0.00378788 0.22993 8.48644e-07 1.3712e-08 2.718 ||| 0-3 ||| 264 1.17835e+06 +en ||| as well as that ||| 0.0113636 0.066968 8.48644e-07 4.89586e-09 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| as well as the issue of ||| 0.0769231 0.066968 8.48644e-07 7.35131e-13 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| as well as the issue ||| 0.0833333 0.066968 8.48644e-07 1.35224e-11 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| as well as the ||| 0.000339098 0.066968 8.48644e-07 1.78678e-08 2.718 ||| 0-2 ||| 2949 1.17835e+06 +en ||| as well as to those ||| 0.2 0.066968 8.48644e-07 1.87265e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| as well as to ||| 0.00167785 0.066968 8.48644e-07 2.58618e-08 2.718 ||| 0-0 ||| 596 1.17835e+06 +en ||| as well as with ||| 0.0141844 0.0535436 1.69729e-06 1.92498e-09 2.718 ||| 0-3 ||| 141 1.17835e+06 +en ||| as well as within Europe in ||| 0.25 0.605812 8.48644e-07 8.06695e-15 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| as well as ||| 0.00144619 0.066968 1.61242e-05 2.91046e-07 2.718 ||| 0-0 ||| 13138 1.17835e+06 +en ||| as well be ||| 0.111111 0.066968 1.69729e-06 5.16894e-07 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| as well in ||| 0.393939 0.605812 1.10324e-05 7.47166e-06 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| as well too ||| 0.25 0.066968 8.48644e-07 3.88179e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as well would ||| 0.333333 0.066968 8.48644e-07 1.67385e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| as well ||| 0.00561759 0.066968 6.87402e-05 2.85216e-05 2.718 ||| 0-0 ||| 14419 1.17835e+06 +en ||| as were others . ||| 0.5 0.066968 8.48644e-07 9.48721e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as were others ||| 0.5 0.066968 8.48644e-07 3.13213e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as were ||| 0.04 0.066968 1.69729e-06 3.22235e-05 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| as what ||| 0.00970874 0.066968 8.48644e-07 2.52388e-05 2.718 ||| 0-0 ||| 103 1.17835e+06 +en ||| as will be ||| 0.0714286 0.066968 8.48644e-07 2.82023e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| as will ||| 0.0070922 0.066968 8.48644e-07 0.000155617 2.718 ||| 0-0 ||| 141 1.17835e+06 +en ||| as with ||| 0.00750751 0.0535436 4.24322e-06 0.000118972 2.718 ||| 0-1 ||| 666 1.17835e+06 +en ||| as within Europe in ||| 0.25 0.605812 8.48644e-07 4.98572e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| as within ||| 0.176471 0.369196 5.09187e-06 0.000113133 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| as yet , with ||| 1 0.0535436 8.48644e-07 3.75272e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| as yet made ||| 0.25 0.066968 8.48644e-07 9.96664e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as yet ||| 0.00331126 0.066968 1.69729e-06 4.7578e-06 2.718 ||| 0-0 ||| 604 1.17835e+06 +en ||| as you are expected to ||| 0.5 0.066968 8.48644e-07 4.17346e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as you are expected ||| 0.5 0.066968 8.48644e-07 4.69676e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| as you are ||| 0.00617284 0.066968 8.48644e-07 8.81193e-07 2.718 ||| 0-0 ||| 162 1.17835e+06 +en ||| as you can ||| 0.00420168 0.066968 8.48644e-07 1.7274e-07 2.718 ||| 0-0 ||| 238 1.17835e+06 +en ||| as you know , back in early ||| 1 0.605812 8.48644e-07 2.13153e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| as you know , back in ||| 0.5 0.605812 8.48644e-07 3.1485e-13 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| as you know , held at ||| 0.25 0.066968 8.48644e-07 1.90879e-15 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as you know , held ||| 0.25 0.066968 8.48644e-07 4.55841e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| as you know , is ||| 0.0166667 0.066968 8.48644e-07 5.60038e-11 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| as you know , ||| 0.000731529 0.066968 1.69729e-06 1.78691e-09 2.718 ||| 0-0 ||| 2734 1.17835e+06 +en ||| as you know ||| 0.000658328 0.066968 1.69729e-06 1.4984e-08 2.718 ||| 0-0 ||| 3038 1.17835e+06 +en ||| as you ||| 0.00211864 0.066968 6.78915e-06 5.80775e-05 2.718 ||| 0-0 ||| 3776 1.17835e+06 +en ||| as ||| 0.0657907 0.066968 0.0146137 0.0179879 2.718 ||| 0-0 ||| 261739 1.17835e+06 +en ||| as ‘ ||| 0.00980392 0.066968 8.48644e-07 2.02004e-06 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| aside at ||| 0.333333 0.321886 8.48644e-07 2.82014e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| aside for the ||| 0.04 0.0286209 8.48644e-07 4.97959e-08 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| aside for ||| 0.0196078 0.0286209 1.69729e-06 8.11117e-07 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| aside from ||| 0.00581395 0.0308834 8.48644e-07 2.6826e-07 2.718 ||| 0-1 ||| 172 1.17835e+06 +en ||| aside in no less ||| 1 0.605812 8.48644e-07 4.31308e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aside in no ||| 1 0.605812 8.48644e-07 2.53413e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aside in ||| 0.206897 0.605812 5.09187e-06 3.25556e-05 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| aside on ||| 0.5 0.22993 8.48644e-07 5.85491e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ask for ||| 0.00216685 0.0286209 1.69729e-06 1.58197e-06 2.718 ||| 0-1 ||| 923 1.17835e+06 +en ||| ask the people living in ||| 1 0.605812 8.48644e-07 2.87524e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| asked at ||| 0.0833333 0.321886 8.48644e-07 3.02415e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| asked for ||| 0.000938967 0.0286209 8.48644e-07 8.69793e-07 2.718 ||| 0-1 ||| 1065 1.17835e+06 +en ||| asked in ||| 0.03125 0.605812 1.69729e-06 3.49107e-05 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| asked myself during ||| 0.5 0.226251 8.48644e-07 3.39895e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| asking for 125 posts ||| 0.5 0.0286209 8.48644e-07 3.51396e-18 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| asking for 125 ||| 0.5 0.0286209 8.48644e-07 3.47917e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| asking for in ||| 0.333333 0.605812 8.48644e-07 1.53322e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| asking for ||| 0.00132979 0.0286209 8.48644e-07 4.97025e-07 2.718 ||| 0-1 ||| 752 1.17835e+06 +en ||| asking in ||| 0.25 0.605812 8.48644e-07 1.99489e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| asking ||| 0.000452284 0.000219 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2211 1.17835e+06 +en ||| asks to make ||| 1 0.0247351 8.48644e-07 2.29579e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| asks to ||| 0.0714286 0.0247351 8.48644e-07 1.32109e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| asleep ||| 0.047619 0.0238095 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| aspect again in ||| 1 0.605812 8.48644e-07 1.88269e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| aspect in mind in all the other ||| 1 0.605812 8.48644e-07 6.59698e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aspect in mind in all the ||| 1 0.605812 8.48644e-07 5.09222e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aspect in mind in all ||| 1 0.605812 8.48644e-07 8.29463e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aspect in mind in ||| 1 0.605812 8.48644e-07 1.75533e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aspect in mind ||| 1 0.605812 8.48644e-07 8.20075e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aspect in ||| 0.05 0.605812 2.54593e-06 3.25556e-05 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| aspect is included in ||| 0.5 0.605812 8.48644e-07 9.58087e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| aspect of a ||| 0.0714286 0.0116562 8.48644e-07 4.26152e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| aspect of ||| 0.0110553 0.0116562 9.33509e-06 9.61409e-07 2.718 ||| 0-1 ||| 995 1.17835e+06 +en ||| aspects are dealt with in other ||| 1 0.605812 8.48644e-07 4.28429e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| aspects are dealt with in ||| 1 0.605812 8.48644e-07 3.30705e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| aspects of ||| 0.0030896 0.0116562 5.09187e-06 9.61409e-07 2.718 ||| 0-1 ||| 1942 1.17835e+06 +en ||| aspects to ||| 0.00869565 0.0247351 8.48644e-07 1.98164e-06 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| aspects where there are ||| 1 0.247783 8.48644e-07 2.79249e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| aspects where there ||| 0.5 0.247783 8.48644e-07 1.84047e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| aspects where ||| 0.1 0.247783 8.48644e-07 6.0042e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| aspire to when it ||| 1 0.142731 8.48644e-07 1.0348e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| aspire to when ||| 1 0.142731 8.48644e-07 5.81899e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| assailants in ||| 0.5 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| assassinated in ||| 0.125 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| assembly in ||| 0.0588235 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| assent on ||| 0.0769231 0.22993 8.48644e-07 6.56082e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| assertion concerning ||| 0.5 0.0888235 8.48644e-07 4.8476e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| assessed in ||| 0.0196078 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| assessment in ||| 0.116279 0.605812 4.24322e-06 2.00875e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| assessment of ||| 0.000809717 0.0116562 8.48644e-07 5.9321e-07 2.718 ||| 0-1 ||| 1235 1.17835e+06 +en ||| assessment on ||| 0.04 0.22993 8.48644e-07 3.61261e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| assessment until ||| 0.142857 0.0092136 8.48644e-07 2.54475e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| assessments in ||| 0.166667 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| assessments on ||| 0.0555556 0.22993 8.48644e-07 4.81681e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| assessments will ||| 1 0.0005314 8.48644e-07 5.7594e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| asset of ||| 0.142857 0.0116562 8.48644e-07 3.40925e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| assets in ||| 0.0357143 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| assist Brazil , ||| 1 0.0008319 8.48644e-07 1.56104e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| assist Brazil ||| 1 0.0008319 8.48644e-07 1.309e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| assist and ||| 0.0384615 0.0010182 8.48644e-07 1.72545e-08 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| assist in ||| 0.00873362 0.605812 1.69729e-06 8.63531e-06 2.718 ||| 0-1 ||| 229 1.17835e+06 +en ||| assist it in ||| 0.0909091 0.605812 8.48644e-07 1.53563e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| assist jointly ||| 0.25 0.0005461 8.48644e-07 1.309e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| assist them in ||| 0.0357143 0.605812 8.48644e-07 2.31633e-08 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| assistance ) in ||| 0.2 0.605812 8.48644e-07 3.29868e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| assistance in ||| 0.010929 0.605812 3.39458e-06 2.29505e-05 2.718 ||| 0-1 ||| 366 1.17835e+06 +en ||| assistance under ||| 0.0769231 0.205566 8.48644e-07 2.81034e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| assistants in ||| 0.142857 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| assisted in ||| 0.0333333 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| associated in ||| 0.0666667 0.605812 8.48644e-07 2.37817e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| associated with the ||| 0.0017301 0.0535436 8.48644e-07 3.68617e-08 2.718 ||| 0-1 ||| 578 1.17835e+06 +en ||| associated with ||| 0.00379816 0.0535436 5.94051e-06 6.00433e-07 2.718 ||| 0-1 ||| 1843 1.17835e+06 +en ||| association in ||| 0.047619 0.605812 8.48644e-07 7.29614e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| assume that in ||| 0.285714 0.605812 1.69729e-06 2.81975e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| assumed in ||| 0.125 0.605812 1.69729e-06 6.00315e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| assuming its assent ||| 0.142857 0.029052 8.48644e-07 1.45191e-13 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| assuming its ||| 0.0344828 0.029052 8.48644e-07 1.83786e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| assuming we shall ||| 1 0.029052 8.48644e-07 8.00467e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| assuming we ||| 0.25 0.029052 8.48644e-07 1.46445e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| assuming with some ||| 1 0.0535436 8.48644e-07 1.1938e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| assuming with ||| 0.5 0.0535436 8.48644e-07 1.09594e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| assuming ||| 0.0112994 0.029052 5.09187e-06 1.29e-05 2.718 ||| 0-0 ||| 531 1.17835e+06 +en ||| assumption in ||| 0.142857 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| assurance on ||| 0.04 0.22993 8.48644e-07 8.38789e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| assurances concerning ||| 0.111111 0.0888235 8.48644e-07 7.87735e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| assurances to ||| 0.111111 0.0247351 8.48644e-07 1.82704e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| assure him that our thoughts are with ||| 1 0.0535436 8.48644e-07 1.60836e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| astonishing parallel to ||| 0.5 0.0247351 8.48644e-07 3.64284e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| asylum in ||| 0.0314465 0.605812 4.24322e-06 7.8041e-06 2.718 ||| 0-1 ||| 159 1.17835e+06 +en ||| at , for example , the ||| 1 0.321886 8.48644e-07 7.81392e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at , for example , ||| 1 0.321886 8.48644e-07 1.27279e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at , for example ||| 0.5 0.321886 8.48644e-07 1.06729e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at , for ||| 0.5 0.321886 8.48644e-07 3.66641e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at , on ||| 1 0.22993 8.48644e-07 4.14716e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| at , ||| 0.116667 0.321886 5.94051e-06 0.00477043 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| at - is ||| 1 0.321886 8.48644e-07 4.72911e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at - ||| 0.2 0.321886 8.48644e-07 0.000150892 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| at . it is not ||| 1 0.321886 8.48644e-07 2.30559e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at . it is ||| 1 0.321886 8.48644e-07 6.75313e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at . it ||| 1 0.321886 8.48644e-07 2.15472e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at . ||| 0.0222222 0.321886 8.48644e-07 0.000121166 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| at 10 , 000 hectares , ||| 1 0.321886 8.48644e-07 2.41232e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at 10 , 000 hectares ||| 1 0.321886 8.48644e-07 2.02283e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at 10 , 000 ||| 1 0.321886 8.48644e-07 8.09131e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at 10 , ||| 1 0.321886 8.48644e-07 7.72809e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at 10 a.m. regarding the ||| 1 0.321886 8.48644e-07 4.43272e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at 10 a.m. regarding ||| 1 0.321886 8.48644e-07 7.22038e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at 10 a.m. ||| 0.00980392 0.321886 8.48644e-07 1.16646e-12 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| at 10 ||| 0.0588235 0.321886 1.69729e-06 6.48032e-07 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| at ? ? ? ? ||| 0.5 0.321886 8.48644e-07 3.41232e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at ? ? ? ||| 0.5 0.321886 8.48644e-07 1.99668e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at ? ? ||| 0.5 0.321886 8.48644e-07 1.16833e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at ? ||| 0.2 0.321886 8.48644e-07 6.83634e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| at Amsterdam ||| 0.00869565 0.321886 8.48644e-07 4.16021e-07 2.718 ||| 0-0 ||| 115 1.17835e+06 +en ||| at Belarus ||| 0.333333 0.321886 8.48644e-07 4.76024e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at British Airways ||| 1 0.321886 8.48644e-07 8.26041e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at British ||| 0.333333 0.321886 8.48644e-07 1.18006e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at EU level . at ||| 1 0.321886 8.48644e-07 2.14746e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| at EU level ||| 0.00073046 0.321886 8.48644e-07 1.69309e-08 2.718 ||| 0-0 ||| 1369 1.17835e+06 +en ||| at EU ||| 0.00803213 0.321886 1.69729e-06 1.9793e-05 2.718 ||| 0-0 ||| 249 1.17835e+06 +en ||| at EUR ||| 0.184211 0.321886 5.94051e-06 1.06965e-05 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| at Europe ' s ||| 1 0.321886 8.48644e-07 1.32259e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at Europe ' ||| 1 0.321886 8.48644e-07 6.95259e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at Europe ||| 0.0689655 0.321886 1.69729e-06 2.0241e-05 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| at European level either ||| 0.333333 0.321886 8.48644e-07 9.90654e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at European level ||| 0.00111297 0.321886 3.39458e-06 1.14421e-07 2.718 ||| 0-0 ||| 3594 1.17835e+06 +en ||| at European ||| 0.0343511 0.321886 7.6378e-06 0.000133763 2.718 ||| 0-0 ||| 262 1.17835e+06 +en ||| at Hessian Broadcasting ||| 1 0.321886 8.48644e-07 1.12006e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at Hessian ||| 1 0.321886 8.48644e-07 1.60008e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at Parliament ' ||| 0.4 0.321886 1.69729e-06 7.88692e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| at Parliament 's ||| 0.142857 0.321886 8.48644e-07 4.37272e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| at Parliament ||| 0.075 0.321886 2.54593e-06 2.29611e-05 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| at Petersberg near ||| 0.5 0.321886 8.48644e-07 6.27231e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at Petersberg ||| 0.25 0.321886 8.48644e-07 1.60008e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at a big ||| 0.333333 0.321886 8.48644e-07 8.3514e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at a certain ||| 0.0285714 0.321886 8.48644e-07 5.05339e-07 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| at a cost ||| 0.016129 0.321886 8.48644e-07 1.46814e-07 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| at a later point ||| 0.142857 0.321886 8.48644e-07 1.33397e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| at a later ||| 0.0178571 0.321886 8.48644e-07 1.52488e-07 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| at a meeting in about ||| 1 0.322618 8.48644e-07 2.94751e-10 2.718 ||| 0-0 0-3 0-4 ||| 1 1.17835e+06 +en ||| at a number of ||| 0.0416667 0.321886 8.48644e-07 4.76957e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| at a number ||| 0.0333333 0.321886 8.48644e-07 8.7734e-07 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| at a pace that ||| 0.25 0.321886 8.48644e-07 5.78638e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at a pace ||| 0.0555556 0.321886 8.48644e-07 3.43985e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| at a point where ||| 0.0555556 0.247783 8.48644e-07 1.38285e-09 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| at a point ||| 0.0322581 0.321886 8.48644e-07 1.55113e-06 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| at a press conference the ||| 1 0.321886 8.48644e-07 5.78586e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at a press conference ||| 0.0344828 0.321886 8.48644e-07 9.42449e-13 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| at a press ||| 1 0.321886 8.48644e-07 5.35482e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at a rate of ||| 0.0465116 0.321886 1.69729e-06 9.67795e-09 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| at a rate ||| 0.027027 0.321886 1.69729e-06 1.78021e-07 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| at a standstill . ||| 0.047619 0.321886 8.48644e-07 3.86696e-11 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| at a standstill ||| 0.0166667 0.321886 8.48644e-07 1.27665e-08 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| at a stretch in ||| 1 0.605812 8.48644e-07 8.05685e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| at a time , ||| 0.0416667 0.321886 8.48644e-07 3.47142e-07 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| at a time of ||| 0.0021692 0.321886 8.48644e-07 1.5825e-07 2.718 ||| 0-0 ||| 461 1.17835e+06 +en ||| at a time when ||| 0.000299222 0.321886 8.48644e-07 1.45517e-09 2.718 ||| 0-0 ||| 3342 1.17835e+06 +en ||| at a time ||| 0.00310921 0.321886 6.78915e-06 2.91093e-06 2.718 ||| 0-0 ||| 2573 1.17835e+06 +en ||| at a very ||| 0.0142857 0.321886 8.48644e-07 6.16957e-06 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| at a ||| 0.0323151 0.321886 0.000232529 0.00177312 2.718 ||| 0-0 ||| 8479 1.17835e+06 +en ||| at about ||| 0.015625 0.181021 8.48644e-07 0.00011465 2.718 ||| 0-0 0-1 ||| 64 1.17835e+06 +en ||| at achieving ||| 0.02 0.321886 8.48644e-07 2.64813e-06 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| at after ||| 0.2 0.168179 8.48644e-07 1.06165e-05 2.718 ||| 0-0 0-1 ||| 5 1.17835e+06 +en ||| at all , ||| 0.0178042 0.321886 5.09187e-06 2.25422e-05 2.718 ||| 0-0 ||| 337 1.17835e+06 +en ||| at all - ||| 0.0588235 0.321886 1.69729e-06 7.13023e-07 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| at all . ||| 0.00115473 6.3e-05 8.48644e-07 1.60276e-09 2.718 ||| 0-2 ||| 866 1.17835e+06 +en ||| at all about ||| 0.0645161 0.321886 1.69729e-06 2.67339e-07 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| at all as far as ||| 0.5 0.321886 8.48644e-07 1.34377e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at all as far ||| 0.5 0.321886 8.48644e-07 1.31685e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at all as ||| 0.111111 0.321886 8.48644e-07 1.92889e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| at all at ||| 0.125 0.321886 8.48644e-07 7.91525e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| at all by ||| 0.0769231 0.321886 8.48644e-07 9.92403e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| at all come to that ||| 1 0.321886 8.48644e-07 2.39964e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at all come to ||| 1 0.321886 8.48644e-07 1.42652e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at all come ||| 1 0.321886 8.48644e-07 1.60539e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at all costs ||| 0.00472813 0.321886 1.69729e-06 1.42147e-08 2.718 ||| 0-0 ||| 423 1.17835e+06 +en ||| at all events , ||| 0.00943396 0.321886 8.48644e-07 1.63882e-09 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| at all events ||| 0.0119048 0.321886 1.69729e-06 1.37422e-08 2.718 ||| 0-0 ||| 168 1.17835e+06 +en ||| at all for ||| 0.0196078 0.175253 8.48644e-07 2.17478e-06 2.718 ||| 0-0 0-2 ||| 51 1.17835e+06 +en ||| at all going to be able to ||| 1 0.0247351 8.48644e-07 6.39955e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| at all going to be able ||| 1 0.0247351 8.48644e-07 7.20198e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| at all going to be ||| 1 0.0247351 8.48644e-07 8.62616e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| at all going to ||| 1 0.0247351 8.48644e-07 4.75981e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| at all in a ||| 0.333333 0.605812 8.48644e-07 4.05019e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| at all in seeking ||| 1 0.321886 8.48644e-07 2.05132e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at all in the ||| 0.0232558 0.605812 8.48644e-07 5.60957e-07 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| at all in ||| 0.269231 0.605812 3.56431e-05 9.13733e-06 2.718 ||| 0-2 ||| 156 1.17835e+06 +en ||| at all kinds of ||| 0.5 0.321886 8.48644e-07 4.88119e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at all kinds ||| 0.5 0.321886 8.48644e-07 8.97871e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at all of ||| 0.0208333 0.321886 8.48644e-07 1.02762e-05 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| at all on ||| 0.0689655 0.321886 1.69729e-06 1.26477e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| at all remiss as far ||| 0.5 0.321886 8.48644e-07 5.26742e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at all remiss as ||| 0.5 0.321886 8.48644e-07 7.71557e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at all remiss ||| 0.5 0.321886 8.48644e-07 7.56102e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at all surprising ||| 0.1 0.321886 8.48644e-07 9.45127e-10 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| at all times , ||| 0.0222222 0.321886 8.48644e-07 2.28803e-09 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| at all times ||| 0.00266667 0.321886 8.48644e-07 1.91861e-08 2.718 ||| 0-0 ||| 375 1.17835e+06 +en ||| at all to ||| 0.0247934 0.321886 2.54593e-06 1.67965e-05 2.718 ||| 0-0 ||| 121 1.17835e+06 +en ||| at all towards ||| 0.333333 0.321886 8.48644e-07 2.40062e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at all well ||| 0.166667 0.321886 8.48644e-07 2.99719e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| at all when it ||| 1 0.157555 8.48644e-07 3.10353e-09 2.718 ||| 0-0 0-2 0-3 ||| 1 1.17835e+06 +en ||| at all with ||| 0.0238095 0.321886 8.48644e-07 1.20872e-06 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| at all ||| 0.03227 0.321886 0.000148513 0.000189025 2.718 ||| 0-0 ||| 5423 1.17835e+06 +en ||| at an earlier ||| 0.0416667 0.321886 8.48644e-07 1.24102e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| at an enterprise in ||| 1 0.605812 8.48644e-07 6.18807e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| at an ||| 0.0172786 0.321886 2.03675e-05 0.000177797 2.718 ||| 0-0 ||| 1389 1.17835e+06 +en ||| at and ||| 0.0277778 0.321886 8.48644e-07 0.000501061 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| at any given moment within 60 days ||| 1 0.321886 8.48644e-07 4.69628e-25 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at any given moment within 60 ||| 1 0.321886 8.48644e-07 7.3725e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at any given moment within ||| 1 0.321886 8.48644e-07 1.56862e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at any given moment ||| 0.047619 0.321886 8.48644e-07 7.50176e-12 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| at any given ||| 0.0714286 0.321886 8.48644e-07 4.1515e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| at any kind ||| 1 0.321886 8.48644e-07 2.95196e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at any one ||| 0.1 0.321886 8.48644e-07 2.52127e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| at any other time that you ||| 1 0.321886 8.48644e-07 6.98742e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at any other time that ||| 1 0.321886 8.48644e-07 2.16416e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at any other time ||| 0.0714286 0.321886 8.48644e-07 1.28654e-10 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| at any other ||| 0.047619 0.321886 8.48644e-07 7.83661e-08 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| at any rate , for ||| 0.25 0.175253 8.48644e-07 8.33286e-12 2.718 ||| 0-0 0-4 ||| 4 1.17835e+06 +en ||| at any rate , ||| 0.0030581 0.321886 8.48644e-07 7.24269e-10 2.718 ||| 0-0 ||| 327 1.17835e+06 +en ||| at any rate in ||| 0.047619 0.605812 8.48644e-07 2.93578e-10 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| at any rate managing ||| 0.25 0.321886 8.48644e-07 5.7089e-14 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at any rate ||| 0.00584795 0.321886 3.39458e-06 6.0733e-09 2.718 ||| 0-0 ||| 684 1.17835e+06 +en ||| at any time in the course of ||| 1 0.321886 8.48644e-07 8.95092e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at any time in the course ||| 1 0.321886 8.48644e-07 1.64648e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at any time in the ||| 0.0588235 0.321886 8.48644e-07 1.30497e-10 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| at any time in ||| 0.1 0.321886 1.69729e-06 2.12564e-09 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| at any time ||| 0.00797872 0.321886 2.54593e-06 9.93081e-08 2.718 ||| 0-0 ||| 376 1.17835e+06 +en ||| at any ||| 0.0106596 0.321886 1.35783e-05 6.0491e-05 2.718 ||| 0-0 ||| 1501 1.17835e+06 +en ||| at areas ||| 0.1 0.321886 8.48644e-07 9.15646e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| at around ||| 0.0367647 0.321886 4.24322e-06 5.32827e-06 2.718 ||| 0-0 ||| 136 1.17835e+06 +en ||| at as a ||| 0.142857 0.321886 8.48644e-07 1.80936e-05 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| at as its ||| 1 0.321886 8.48644e-07 5.81557e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at as late ||| 1 0.321886 8.48644e-07 1.29398e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at as much as ||| 1 0.321886 8.48644e-07 4.18081e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at as much ||| 1 0.321886 8.48644e-07 4.09707e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at as ||| 0.307692 0.321886 3.39458e-06 0.000408196 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| at at ||| 0.25 0.321886 1.69729e-06 0.00160016 2.718 ||| 0-0 0-1 ||| 8 1.17835e+06 +en ||| at best , ||| 0.0078125 0.321886 8.48644e-07 6.60704e-07 2.718 ||| 0-0 ||| 128 1.17835e+06 +en ||| at best ||| 0.00316957 0.321886 1.69729e-06 5.54028e-06 2.718 ||| 0-0 ||| 631 1.17835e+06 +en ||| at between ||| 0.0434783 0.321886 8.48644e-07 1.05525e-05 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| at both ||| 0.0128755 0.321886 5.09187e-06 6.62633e-05 2.718 ||| 0-0 ||| 466 1.17835e+06 +en ||| at building consensus ||| 0.5 0.321886 8.48644e-07 3.61478e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at building ||| 0.0769231 0.321886 8.48644e-07 2.33212e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| at bus ||| 1 0.321886 8.48644e-07 1.72009e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at by ||| 0.08 0.18438 1.69729e-06 0.000340301 2.718 ||| 0-0 0-1 ||| 25 1.17835e+06 +en ||| at certain ||| 0.0138889 0.321886 8.48644e-07 1.14006e-05 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| at cheaper ||| 0.166667 0.321886 8.48644e-07 1.60008e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| at close ||| 0.0909091 0.321886 8.48644e-07 5.9323e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| at communal ||| 0.25 0.321886 8.48644e-07 1.16006e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at crash ||| 1 0.321886 8.48644e-07 8.80044e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at critical ||| 1 0.321886 8.48644e-07 1.00805e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at dawn on ||| 0.25 0.22993 8.48644e-07 7.65065e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| at difficult ||| 0.2 0.321886 8.48644e-07 4.96825e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| at director ||| 0.333333 0.321886 8.48644e-07 1.16006e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at each of ||| 0.1 0.321886 8.48644e-07 6.1043e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| at each others ||| 0.333333 0.321886 8.48644e-07 1.09142e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at each ||| 0.0384615 0.321886 4.24322e-06 1.12286e-05 2.718 ||| 0-0 ||| 130 1.17835e+06 +en ||| at either EUR ||| 1 0.321886 8.48644e-07 9.26106e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at either a ||| 0.5 0.321886 8.48644e-07 1.53517e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at either ||| 0.125 0.321886 2.54593e-06 3.46337e-05 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| at equal ||| 0.2 0.321886 8.48644e-07 2.28811e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| at exactly ||| 0.290323 0.321886 7.6378e-06 4.0162e-06 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| at face ||| 0.0416667 0.321886 8.48644e-07 6.69233e-06 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| at first , in ||| 1 0.605812 8.48644e-07 1.24154e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| at first glance ||| 0.0128205 0.321886 8.48644e-07 5.38427e-11 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| at first ||| 0.00263968 0.321886 5.09187e-06 2.15371e-05 2.718 ||| 0-0 ||| 2273 1.17835e+06 +en ||| at first-hand how significant ||| 1 0.321886 8.48644e-07 1.81675e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at first-hand how ||| 1 0.321886 8.48644e-07 3.15408e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at first-hand ||| 1 0.321886 8.48644e-07 8.80044e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at from the point of view of ||| 0.333333 0.321886 8.48644e-07 9.23612e-15 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at from the point of view ||| 0.5 0.321886 8.48644e-07 1.69894e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at from the point of ||| 1 0.321886 8.48644e-07 1.88081e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at from the point ||| 1 0.321886 8.48644e-07 3.45967e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at from the ||| 0.2 0.321886 8.48644e-07 3.95481e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| at from ||| 0.0454545 0.321886 8.48644e-07 6.44192e-05 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| at grass ||| 0.5 0.321886 8.48644e-07 1.72009e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at great length ||| 0.0188679 0.321886 8.48644e-07 6.0525e-10 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| at great risk ||| 0.0454545 0.321886 8.48644e-07 1.83933e-09 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| at great ||| 0.038961 0.321886 2.54593e-06 1.57208e-05 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| at greater length on ||| 0.142857 0.321886 8.48644e-07 1.35712e-12 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| at greater length ||| 0.0344828 0.321886 8.48644e-07 2.02828e-10 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| at greater ||| 0.04 0.321886 1.69729e-06 5.26826e-06 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| at hand in ||| 0.5 0.605812 8.48644e-07 7.6689e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| at hand ||| 0.0204082 0.321886 3.39458e-06 1.58648e-05 2.718 ||| 0-0 ||| 196 1.17835e+06 +en ||| at heart ||| 0.0185185 0.321886 8.48644e-07 3.22416e-06 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| at higher ||| 0.0909091 0.321886 8.48644e-07 1.68408e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| at his ||| 0.00884956 0.321886 8.48644e-07 1.20206e-05 2.718 ||| 0-0 ||| 113 1.17835e+06 +en ||| at holding ||| 1 0.321886 8.48644e-07 2.40412e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at home , in ||| 0.111111 0.605812 8.48644e-07 2.34057e-08 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| at home , ||| 0.00609756 0.321886 8.48644e-07 4.84198e-07 2.718 ||| 0-0 ||| 164 1.17835e+06 +en ||| at home in one ||| 0.5 0.605812 8.48644e-07 8.1804e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| at home in ||| 0.0895522 0.605812 5.09187e-06 1.96267e-07 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| at home ||| 0.00518135 0.321886 4.24322e-06 4.0602e-06 2.718 ||| 0-0 ||| 965 1.17835e+06 +en ||| at how ||| 0.00625 0.321886 8.48644e-07 1.43367e-05 2.718 ||| 0-0 ||| 160 1.17835e+06 +en ||| at in the report ||| 0.25 0.463849 8.48644e-07 4.64843e-07 2.718 ||| 0-0 0-1 ||| 4 1.17835e+06 +en ||| at in the ||| 0.1 0.463849 1.69729e-06 0.00113404 2.718 ||| 0-0 0-1 ||| 20 1.17835e+06 +en ||| at in ||| 0.5625 0.463849 2.29134e-05 0.0184722 2.718 ||| 0-0 0-1 ||| 48 1.17835e+06 +en ||| at intellectual ||| 1 0.321886 8.48644e-07 2.32012e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at international level ||| 0.00136799 0.321886 8.48644e-07 2.64845e-09 2.718 ||| 0-0 ||| 731 1.17835e+06 +en ||| at international ||| 0.0454545 0.321886 1.69729e-06 3.09615e-06 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| at is ||| 0.285714 0.321886 3.39458e-06 0.00125371 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| at issue as , when ||| 1 0.142731 8.48644e-07 2.29586e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| at issue in ||| 0.0454545 0.605812 8.48644e-07 1.4634e-06 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| at issue ||| 0.0131579 0.321886 4.24322e-06 3.02735e-05 2.718 ||| 0-0 ||| 380 1.17835e+06 +en ||| at it at ||| 1 0.217273 8.48644e-07 4.41308e-06 2.718 ||| 0-0 0-1 0-2 ||| 1 1.17835e+06 +en ||| at it from this ||| 1 0.0308834 8.48644e-07 1.83083e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| at it from ||| 0.111111 0.0308834 8.48644e-07 2.83348e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| at it in the ||| 0.25 0.311915 8.48644e-07 3.12757e-06 2.718 ||| 0-0 0-1 0-2 ||| 4 1.17835e+06 +en ||| at it in ||| 0.285714 0.311915 1.69729e-06 5.09444e-05 2.718 ||| 0-0 0-1 0-2 ||| 7 1.17835e+06 +en ||| at it very ||| 1 0.321886 8.48644e-07 2.47519e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at it ||| 0.027972 0.321886 3.39458e-06 0.000711364 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| at its disposal at ||| 0.333333 0.321886 8.48644e-07 2.00938e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| at its disposal ||| 0.00492611 0.321886 1.69729e-06 4.79863e-09 2.718 ||| 0-0 ||| 406 1.17835e+06 +en ||| at its meeting ||| 0.00268817 0.321886 8.48644e-07 7.15805e-09 2.718 ||| 0-0 ||| 372 1.17835e+06 +en ||| at its peak ||| 0.125 0.321886 8.48644e-07 7.97872e-11 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| at its ||| 0.0143149 0.321886 1.78215e-05 5.69908e-05 2.718 ||| 0-0 ||| 1467 1.17835e+06 +en ||| at itself ||| 0.0714286 0.321886 8.48644e-07 2.71494e-05 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| at just ||| 0.269231 0.321886 1.1881e-05 5.04705e-05 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| at keeping certain ||| 0.25 0.321886 8.48644e-07 6.69213e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at keeping ||| 0.0769231 0.321886 8.48644e-07 2.34812e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| at large ||| 0.0106762 0.321886 2.54593e-06 6.14831e-06 2.718 ||| 0-0 ||| 281 1.17835e+06 +en ||| at last , to taking a ||| 1 0.321886 8.48644e-07 1.74403e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at last , to taking ||| 1 0.321886 8.48644e-07 3.93456e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at last , to ||| 0.111111 0.321886 8.48644e-07 9.25779e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| at last , ||| 0.00914634 0.321886 2.54593e-06 1.04186e-06 2.718 ||| 0-0 ||| 328 1.17835e+06 +en ||| at last as ||| 1 0.321886 8.48644e-07 8.91501e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at last reign in ||| 1 0.605812 8.48644e-07 2.5761e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| at last to ||| 0.0322581 0.321886 8.48644e-07 7.76304e-07 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| at last we shall be using ||| 1 0.321886 8.48644e-07 7.63373e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at last we shall be ||| 1 0.321886 8.48644e-07 9.82461e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at last we shall ||| 1 0.321886 8.48644e-07 5.42111e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at last we ||| 0.0526316 0.321886 8.48644e-07 9.91787e-08 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| at last week ||| 0.25 0.321886 8.48644e-07 2.67335e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at last ||| 0.00571726 0.321886 9.33509e-06 8.73644e-06 2.718 ||| 0-0 ||| 1924 1.17835e+06 +en ||| at law to ||| 0.5 0.321886 8.48644e-07 6.26659e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at law ||| 0.142857 0.321886 8.48644e-07 7.05235e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| at least , to ||| 0.0384615 0.321886 8.48644e-07 1.04023e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| at least , ||| 0.00549451 0.321886 2.54593e-06 1.17066e-06 2.718 ||| 0-0 ||| 546 1.17835e+06 +en ||| at least as far ||| 0.0344828 0.321886 8.48644e-07 6.8387e-11 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| at least as ||| 0.0058309 0.321886 1.69729e-06 1.00171e-07 2.718 ||| 0-0 ||| 343 1.17835e+06 +en ||| at least at ||| 0.0116279 0.321886 8.48644e-07 4.11056e-08 2.718 ||| 0-2 ||| 86 1.17835e+06 +en ||| at least committed ||| 1 0.321886 8.48644e-07 8.12805e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at least for ||| 0.0052356 0.321886 8.48644e-07 7.54466e-08 2.718 ||| 0-0 ||| 191 1.17835e+06 +en ||| at least in ||| 0.00706714 0.605812 3.39458e-06 4.74521e-07 2.718 ||| 0-2 ||| 566 1.17835e+06 +en ||| at least inside ||| 1 0.188717 8.48644e-07 1.96475e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| at least it does not ||| 1 0.321886 8.48644e-07 4.18031e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at least it does ||| 0.5 0.321886 8.48644e-07 1.22442e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at least it ||| 0.0196078 0.321886 8.48644e-07 1.74569e-07 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| at least not something we should ||| 1 0.321886 8.48644e-07 9.33116e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at least not something we ||| 1 0.321886 8.48644e-07 2.10588e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at least not something ||| 1 0.321886 8.48644e-07 1.85503e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at least not ||| 0.00636943 0.321886 8.48644e-07 3.35145e-08 2.718 ||| 0-0 ||| 157 1.17835e+06 +en ||| at least to ||| 0.0078125 0.321886 1.69729e-06 8.72276e-07 2.718 ||| 0-0 ||| 256 1.17835e+06 +en ||| at least up to a certain ||| 0.5 0.321886 8.48644e-07 3.75814e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at least up to a ||| 0.333333 0.321886 8.48644e-07 1.31865e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at least up to ||| 0.111111 0.321886 8.48644e-07 2.9749e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| at least up ||| 0.25 0.321886 8.48644e-07 3.34791e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at least ||| 0.00368245 0.321886 3.64917e-05 9.81649e-06 2.718 ||| 0-0 ||| 11677 1.17835e+06 +en ||| at length here - ||| 1 0.321886 8.48644e-07 1.17801e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at length here ||| 0.25 0.321886 8.48644e-07 3.12297e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at length in ||| 0.05 0.605812 8.48644e-07 7.4446e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| at length on ||| 0.153846 0.22993 1.69729e-06 1.33886e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| at length ||| 0.0145455 0.321886 3.39458e-06 1.54008e-06 2.718 ||| 0-0 ||| 275 1.17835e+06 +en ||| at level ||| 0.111111 0.321886 8.48644e-07 3.42177e-05 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| at liberty to ||| 0.0357143 0.321886 8.48644e-07 3.59005e-08 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| at liberty ||| 0.0166667 0.321886 8.48644e-07 4.0402e-07 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| at limited areas ||| 1 0.321886 8.48644e-07 3.56186e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at limited ||| 1 0.321886 8.48644e-07 1.55608e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at local level , ||| 0.0204082 0.321886 8.48644e-07 2.0852e-10 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| at local level ||| 0.003861 0.321886 8.48644e-07 1.74853e-09 2.718 ||| 0-0 ||| 259 1.17835e+06 +en ||| at local ||| 0.0113636 0.321886 8.48644e-07 2.0441e-06 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| at long last , ||| 0.00571429 0.321886 8.48644e-07 3.52462e-10 2.718 ||| 0-0 ||| 175 1.17835e+06 +en ||| at long last on ||| 0.2 0.22993 8.48644e-07 2.56939e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| at long last ||| 0.0015625 0.321886 8.48644e-07 2.95554e-09 2.718 ||| 0-0 ||| 640 1.17835e+06 +en ||| at long ||| 0.0357143 0.321886 5.09187e-06 1.35327e-05 2.718 ||| 0-0 ||| 168 1.17835e+06 +en ||| at making ||| 0.025974 0.321886 1.69729e-06 1.53888e-05 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| at many ||| 0.0172414 0.321886 8.48644e-07 1.37327e-05 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| at marshalling yards in ||| 1 0.605812 8.48644e-07 1.08285e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| at matters from ||| 1 0.321886 8.48644e-07 1.19176e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at matters ||| 0.25 0.321886 8.48644e-07 7.40037e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at me ||| 0.0454545 0.321886 8.48644e-07 2.40852e-05 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| at meetings ||| 0.0153846 0.321886 8.48644e-07 8.80044e-07 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| at my disposal ||| 0.025641 0.321886 8.48644e-07 2.16607e-09 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| at my ||| 0.0128205 0.321886 1.69729e-06 2.57253e-05 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| at national ||| 0.00429185 0.321886 8.48644e-07 5.14026e-06 2.718 ||| 0-0 ||| 233 1.17835e+06 +en ||| at nearly ||| 0.125 0.321886 8.48644e-07 6.64033e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| at next ||| 0.333333 0.161461 8.48644e-07 7.36037e-07 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| at night , ||| 0.025641 0.321886 8.48644e-07 4.62731e-08 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| at night ||| 0.00591716 0.321886 8.48644e-07 3.88019e-07 2.718 ||| 0-0 ||| 169 1.17835e+06 +en ||| at now in ||| 0.5 0.605812 8.48644e-07 3.98315e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| at odds ||| 0.00980392 0.321886 1.69729e-06 3.60018e-07 2.718 ||| 0-0 ||| 204 1.17835e+06 +en ||| at on ||| 0.125 0.22993 8.48644e-07 0.000347757 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| at once ||| 0.00701754 0.321886 1.69729e-06 1.63688e-05 2.718 ||| 0-0 ||| 285 1.17835e+06 +en ||| at one and ||| 0.0555556 0.321886 8.48644e-07 2.08842e-06 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| at one of ||| 0.027027 0.321886 8.48644e-07 9.06402e-06 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| at one time had ||| 1 0.321886 8.48644e-07 2.74731e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at one time ||| 0.00961538 0.321886 8.48644e-07 2.73718e-07 2.718 ||| 0-0 ||| 104 1.17835e+06 +en ||| at one ||| 0.0440098 0.321886 1.52756e-05 0.000166728 2.718 ||| 0-0 ||| 409 1.17835e+06 +en ||| at other ||| 0.017094 0.321886 1.69729e-06 5.18226e-05 2.718 ||| 0-0 ||| 117 1.17835e+06 +en ||| at our disposal in ||| 0.0526316 0.605812 8.48644e-07 2.24586e-10 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| at our own ||| 0.047619 0.321886 8.48644e-07 9.35445e-08 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| at our ||| 0.00342857 0.321886 2.54593e-06 5.51788e-05 2.718 ||| 0-0 ||| 875 1.17835e+06 +en ||| at over ||| 0.0285714 0.239912 8.48644e-07 0.000160296 2.718 ||| 0-0 0-1 ||| 35 1.17835e+06 +en ||| at places ||| 0.125 0.321886 8.48644e-07 2.11611e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| at play in ||| 0.5 0.605812 8.48644e-07 4.98885e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| at pointing out ||| 0.5 0.321886 8.48644e-07 3.47818e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at pointing ||| 1 0.321886 8.48644e-07 9.08045e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at precisely ||| 0.0294118 0.321886 8.48644e-07 3.9442e-06 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| at presence , and for ||| 0.5 0.321886 8.48644e-07 1.76811e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at presence , and ||| 0.5 0.321886 8.48644e-07 2.30052e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at presence , ||| 0.5 0.321886 8.48644e-07 1.83661e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at presence ||| 0.5 0.321886 8.48644e-07 1.54008e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at present , in ||| 0.333333 0.605812 8.48644e-07 8.4399e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| at present , partly ||| 1 0.321886 8.48644e-07 5.9014e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at present , ||| 0.00260643 0.321886 2.54593e-06 1.74598e-06 2.718 ||| 0-0 ||| 1151 1.17835e+06 +en ||| at present - ||| 0.0416667 0.321886 8.48644e-07 5.52263e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| at present holding the EU ||| 1 0.321886 8.48644e-07 2.67287e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at present holding the ||| 1 0.321886 8.48644e-07 5.40191e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at present holding ||| 1 0.321886 8.48644e-07 8.79908e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at present ||| 0.00427458 0.321886 1.4427e-05 1.46407e-05 2.718 ||| 0-0 ||| 3977 1.17835e+06 +en ||| at prime time , ||| 1 0.321886 8.48644e-07 1.18257e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at prime time ||| 1 0.321886 8.48644e-07 9.91636e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at prime ||| 1 0.321886 8.48644e-07 6.0403e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at private ||| 0.25 0.321886 8.48644e-07 9.52048e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at recent ||| 0.166667 0.321886 8.48644e-07 1.9441e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| at rest by ||| 0.5 0.321886 8.48644e-07 1.58771e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at rest ||| 0.0833333 0.321886 8.48644e-07 3.02415e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| at risk ||| 0.00133333 0.321886 1.69729e-06 4.68023e-06 2.718 ||| 0-0 ||| 1500 1.17835e+06 +en ||| at roughly ||| 0.0666667 0.321886 8.48644e-07 2.32012e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| at sea ||| 0.00299401 0.321886 1.69729e-06 1.19606e-06 2.718 ||| 0-0 ||| 668 1.17835e+06 +en ||| at sectors ||| 0.25 0.321886 8.48644e-07 2.0601e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at serious ||| 0.0333333 0.321886 8.48644e-07 4.60823e-06 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| at short notice , taken over my ||| 1 0.321886 8.48644e-07 7.31436e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at short notice , taken over ||| 1 0.321886 8.48644e-07 1.13736e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at short notice , taken ||| 1 0.321886 8.48644e-07 2.36212e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at short notice , ||| 0.1 0.321886 8.48644e-07 2.59146e-11 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| at short notice ||| 0.0144928 0.321886 8.48644e-07 2.17305e-10 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| at short ||| 0.0263158 0.321886 8.48644e-07 5.64428e-06 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| at showing itself to be a greedy ||| 1 0.321886 8.48644e-07 6.58707e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at showing itself to be a ||| 1 0.321886 8.48644e-07 5.98825e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at showing itself to be ||| 1 0.321886 8.48644e-07 1.35096e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at showing itself to ||| 1 0.321886 8.48644e-07 7.45445e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at showing itself ||| 1 0.321886 8.48644e-07 8.38915e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at showing ||| 0.333333 0.321886 8.48644e-07 1.23606e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at some point in time ||| 0.166667 0.605812 8.48644e-07 3.02504e-12 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| at some point in ||| 0.183673 0.605812 7.6378e-06 1.84262e-09 2.718 ||| 0-3 ||| 49 1.17835e+06 +en ||| at some point ||| 0.00540541 0.321886 1.69729e-06 3.81187e-08 2.718 ||| 0-0 ||| 370 1.17835e+06 +en ||| at some stage in ||| 0.0588235 0.605812 8.48644e-07 3.15319e-10 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| at some time in ||| 0.047619 0.605812 8.48644e-07 3.45798e-09 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| at some ||| 0.0165746 0.321886 1.01837e-05 4.35742e-05 2.718 ||| 0-0 ||| 724 1.17835e+06 +en ||| at something of ||| 0.5 0.321886 8.48644e-07 1.20368e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at something ||| 0.0909091 0.321886 8.48644e-07 2.21411e-05 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| at stake here ||| 0.00495049 0.321886 8.48644e-07 2.4497e-09 2.718 ||| 0-0 ||| 202 1.17835e+06 +en ||| at stake in ||| 0.00934579 0.605812 8.48644e-07 5.83966e-08 2.718 ||| 0-2 ||| 107 1.17835e+06 +en ||| at stake ||| 0.00197628 0.321886 2.54593e-06 1.20806e-06 2.718 ||| 0-0 ||| 1518 1.17835e+06 +en ||| at state ||| 0.111111 0.321886 1.69729e-06 1.01045e-05 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| at such a ||| 0.00925926 0.321886 8.48644e-07 3.66841e-06 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| at such ||| 0.194313 0.321886 3.47944e-05 8.27601e-05 2.718 ||| 0-0 ||| 211 1.17835e+06 +en ||| at supplementing ||| 0.2 0.321886 8.48644e-07 2.80014e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| at that , if you do not ||| 0.5 0.321886 8.48644e-07 2.53917e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at that , if you do ||| 0.5 0.321886 8.48644e-07 7.4373e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at that , if you ||| 0.5 0.321886 8.48644e-07 2.16496e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at that , if ||| 0.333333 0.321886 8.48644e-07 6.70537e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at that , ||| 0.0217391 0.321886 8.48644e-07 8.02462e-05 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| at that region ||| 0.2 0.321886 8.48644e-07 6.58767e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| at that time , in ||| 0.0625 0.605812 8.48644e-07 6.36821e-09 2.718 ||| 0-4 ||| 16 1.17835e+06 +en ||| at that time , ||| 0.00308642 0.321886 8.48644e-07 1.3174e-07 2.718 ||| 0-0 ||| 324 1.17835e+06 +en ||| at that time ||| 0.00287632 0.321886 2.54593e-06 1.1047e-06 2.718 ||| 0-0 ||| 1043 1.17835e+06 +en ||| at that ||| 0.00970874 0.321886 1.35783e-05 0.000672898 2.718 ||| 0-0 ||| 1648 1.17835e+06 +en ||| at the European ||| 0.0107527 0.321886 8.48644e-07 8.21193e-06 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| at the NATO summit in ||| 0.166667 0.605812 8.48644e-07 2.7351e-14 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| at the National Entry ( ||| 1 0.321886 8.48644e-07 2.56968e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at the National Entry ||| 1 0.321886 8.48644e-07 2.66454e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at the National ||| 1 0.321886 8.48644e-07 3.80648e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at the Treaty of ||| 0.5 0.321886 8.48644e-07 1.14282e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at the Treaty ||| 0.333333 0.321886 8.48644e-07 2.10216e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at the airport ||| 0.0217391 0.321886 8.48644e-07 1.49803e-08 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| at the appropriate ||| 0.0204082 0.321886 8.48644e-07 3.3055e-07 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| at the centre ||| 0.00900901 0.321886 3.39458e-06 7.85854e-08 2.718 ||| 0-0 ||| 444 1.17835e+06 +en ||| at the constant ||| 0.25 0.321886 8.48644e-07 4.07662e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at the cost of ||| 0.00452489 0.321886 8.48644e-07 1.10544e-08 2.718 ||| 0-0 ||| 221 1.17835e+06 +en ||| at the cost ||| 0.00440529 0.321886 8.48644e-07 2.0334e-07 2.718 ||| 0-0 ||| 227 1.17835e+06 +en ||| at the end of the day ||| 0.00176678 0.321886 8.48644e-07 9.13655e-13 2.718 ||| 0-0 ||| 566 1.17835e+06 +en ||| at the end of the ||| 0.000604595 0.321886 8.48644e-07 3.56618e-09 2.718 ||| 0-0 ||| 1654 1.17835e+06 +en ||| at the end of ||| 0.000882872 0.321886 2.54593e-06 5.80888e-08 2.718 ||| 0-0 ||| 3398 1.17835e+06 +en ||| at the end ||| 0.00155073 0.321886 5.94051e-06 1.06852e-06 2.718 ||| 0-0 ||| 4514 1.17835e+06 +en ||| at the fact ||| 0.00687285 0.321886 1.69729e-06 7.19376e-06 2.718 ||| 0-0 ||| 291 1.17835e+06 +en ||| at the forefront in ||| 0.0204082 0.605812 8.48644e-07 1.11588e-09 2.718 ||| 0-3 ||| 49 1.17835e+06 +en ||| at the forefront of ||| 0.00423729 0.321886 8.48644e-07 1.25496e-09 2.718 ||| 0-0 ||| 236 1.17835e+06 +en ||| at the forefront ||| 0.00293255 0.321886 8.48644e-07 2.30845e-08 2.718 ||| 0-0 ||| 341 1.17835e+06 +en ||| at the forthcoming Laeken summit , to ||| 1 0.321886 8.48644e-07 4.05799e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at the forthcoming Laeken summit , ||| 1 0.321886 8.48644e-07 4.56682e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at the forthcoming Laeken summit ||| 1 0.321886 8.48644e-07 3.82947e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at the forthcoming Laeken ||| 1 0.321886 8.48644e-07 1.19671e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at the forthcoming ||| 0.0045045 0.321886 8.48644e-07 1.08792e-07 2.718 ||| 0-0 ||| 222 1.17835e+06 +en ||| at the halfway point , in ||| 1 0.605812 8.48644e-07 3.96301e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| at the heart of ||| 0.00308642 0.321886 2.54593e-06 1.07607e-08 2.718 ||| 0-0 ||| 972 1.17835e+06 +en ||| at the heart ||| 0.00252313 0.321886 2.54593e-06 1.97937e-07 2.718 ||| 0-0 ||| 1189 1.17835e+06 +en ||| at the idea ||| 0.05 0.321886 8.48644e-07 5.50589e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| at the last minute to the ||| 1 0.321886 8.48644e-07 3.56954e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at the last minute to ||| 0.2 0.321886 8.48644e-07 5.81436e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| at the last minute ||| 0.00588235 0.321886 8.48644e-07 6.54342e-12 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| at the last ||| 0.00144928 0.321886 8.48644e-07 5.36346e-07 2.718 ||| 0-0 ||| 690 1.17835e+06 +en ||| at the level of the ||| 0.00823045 0.321886 1.69729e-06 7.01105e-09 2.718 ||| 0-0 ||| 243 1.17835e+06 +en ||| at the level of ||| 0.0176817 0.321886 7.6378e-06 1.14202e-07 2.718 ||| 0-0 ||| 509 1.17835e+06 +en ||| at the level ||| 0.0141732 0.321886 7.6378e-06 2.10069e-06 2.718 ||| 0-0 ||| 635 1.17835e+06 +en ||| at the matter from ||| 1 0.0308834 8.48644e-07 1.01487e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| at the moment , ||| 0.000830565 0.321886 8.48644e-07 5.29207e-08 2.718 ||| 0-0 ||| 1204 1.17835e+06 +en ||| at the moment be ||| 0.333333 0.321886 8.48644e-07 8.04226e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at the moment by ||| 0.1 0.321886 8.48644e-07 2.3298e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| at the moment ||| 0.0019084 0.321886 6.78915e-06 4.43762e-07 2.718 ||| 0-0 ||| 4192 1.17835e+06 +en ||| at the origin ||| 0.0357143 0.321886 8.48644e-07 6.28683e-08 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| at the outset that ||| 0.0163934 0.321886 8.48644e-07 8.01422e-10 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| at the outset ||| 0.00228833 0.321886 8.48644e-07 4.76424e-08 2.718 ||| 0-0 ||| 437 1.17835e+06 +en ||| at the point of a ||| 0.5 0.321886 8.48644e-07 5.17689e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at the point of ||| 0.0307692 0.321886 1.69729e-06 1.16792e-07 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| at the point ||| 0.016129 0.321886 1.69729e-06 2.14833e-06 2.718 ||| 0-0 ||| 124 1.17835e+06 +en ||| at the present time ||| 0.00163399 0.321886 8.48644e-07 1.47559e-09 2.718 ||| 0-0 ||| 612 1.17835e+06 +en ||| at the present ||| 0.00297619 0.321886 8.48644e-07 8.98821e-07 2.718 ||| 0-0 ||| 336 1.17835e+06 +en ||| at the proper time by ||| 1 0.321886 8.48644e-07 1.87325e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at the proper time ||| 0.0769231 0.321886 8.48644e-07 3.56804e-10 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| at the proper ||| 0.125 0.321886 8.48644e-07 2.17338e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| at the root of ||| 0.0128205 0.321886 1.69729e-06 2.40312e-09 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| at the root ||| 0.0111111 0.321886 1.69729e-06 4.42043e-08 2.718 ||| 0-0 ||| 180 1.17835e+06 +en ||| at the same time , in ||| 0.0327869 0.605812 1.69729e-06 1.87023e-11 2.718 ||| 0-5 ||| 61 1.17835e+06 +en ||| at the same time , ||| 0.000454959 0.321886 2.54593e-06 3.86897e-10 2.718 ||| 0-0 ||| 6594 1.17835e+06 +en ||| at the same time I am most ||| 1 0.321886 8.48644e-07 1.26707e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at the same time I am ||| 0.125 0.321886 8.48644e-07 2.93167e-14 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| at the same time I ||| 0.00980392 0.321886 8.48644e-07 2.29485e-11 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| at the same time note that ||| 1 0.321886 8.48644e-07 5.69754e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at the same time note ||| 1 0.321886 8.48644e-07 3.38704e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at the same time participating in ||| 0.5 0.605812 8.48644e-07 1.8035e-15 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| at the same time taking ||| 0.0666667 0.321886 8.48644e-07 1.37882e-12 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| at the same time within ||| 0.25 0.369196 8.48644e-07 3.76517e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| at the same time ||| 0.00102057 0.321886 1.10324e-05 3.24429e-09 2.718 ||| 0-0 ||| 12738 1.17835e+06 +en ||| at the same ||| 0.00171135 0.321886 1.52756e-05 1.97618e-06 2.718 ||| 0-0 ||| 10518 1.17835e+06 +en ||| at the scene ||| 0.0769231 0.321886 8.48644e-07 3.19253e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| at the stage of being ||| 0.5 0.321886 8.48644e-07 5.68761e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at the stage of ||| 0.0285714 0.321886 1.69729e-06 1.9986e-08 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| at the stage ||| 0.02 0.321886 1.69729e-06 3.67632e-07 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| at the time , ||| 0.00249377 0.321886 8.48644e-07 4.80797e-07 2.718 ||| 0-0 ||| 401 1.17835e+06 +en ||| at the time of ||| 0.0131579 0.321886 6.78915e-06 2.19178e-07 2.718 ||| 0-0 ||| 608 1.17835e+06 +en ||| at the time ||| 0.00800356 0.321886 1.52756e-05 4.03168e-06 2.718 ||| 0-0 ||| 2249 1.17835e+06 +en ||| at the time – ||| 0.25 0.321886 8.48644e-07 1.58445e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at the very outset , ||| 0.0909091 0.321886 8.48644e-07 1.97691e-11 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| at the very outset ||| 0.02 0.321886 8.48644e-07 1.65772e-10 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| at the very ||| 0.0199667 0.321886 1.01837e-05 8.54494e-06 2.718 ||| 0-0 ||| 601 1.17835e+06 +en ||| at the ||| 0.0141983 0.321886 0.000627997 0.00245579 2.718 ||| 0-0 ||| 52119 1.17835e+06 +en ||| at their common frontiers , ||| 1 0.321886 8.48644e-07 8.3024e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at their common frontiers ||| 1 0.321886 8.48644e-07 6.9619e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at their common ||| 1 0.321886 8.48644e-07 1.07106e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at their disposal are ||| 0.5 0.321886 8.48644e-07 5.92349e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at their disposal ||| 0.0238095 0.321886 4.24322e-06 3.90404e-09 2.718 ||| 0-0 ||| 210 1.17835e+06 +en ||| at their own record ||| 0.5 0.321886 8.48644e-07 4.38615e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at their own ||| 0.0196078 0.321886 8.48644e-07 7.86048e-08 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| at their ||| 0.0153139 0.321886 8.48644e-06 4.63663e-05 2.718 ||| 0-0 ||| 653 1.17835e+06 +en ||| at them as a ||| 0.5 0.066968 8.48644e-07 8.95581e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| at them as ||| 0.333333 0.066968 8.48644e-07 2.02045e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| at them from ||| 0.666667 0.321886 1.69729e-06 1.72798e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at them on ||| 0.333333 0.22993 8.48644e-07 9.32823e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| at them ||| 0.0394737 0.321886 2.54593e-06 0.000107301 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| at things in ||| 0.5 0.605812 8.48644e-07 7.94735e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| at this in ||| 0.4 0.605812 1.69729e-06 1.24942e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| at this juncture , ||| 0.0136986 0.321886 8.48644e-07 2.98989e-10 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| at this juncture ||| 0.00452489 0.321886 8.48644e-07 2.50715e-09 2.718 ||| 0-0 ||| 221 1.17835e+06 +en ||| at this particular time of year , ||| 1 0.321886 8.48644e-07 4.22224e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at this particular time of year ||| 1 0.321886 8.48644e-07 3.54052e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at this particular time of ||| 1 0.321886 8.48644e-07 1.41962e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at this particular time ||| 0.0227273 0.321886 8.48644e-07 2.61132e-10 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| at this particular ||| 0.0238095 0.321886 8.48644e-07 1.59062e-07 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| at this point , to ||| 0.2 0.0247351 8.48644e-07 7.93396e-11 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| at this point in time ||| 0.00787402 0.321886 8.48644e-07 7.9454e-12 2.718 ||| 0-0 ||| 127 1.17835e+06 +en ||| at this point in ||| 0.0357143 0.321886 1.69729e-06 4.83974e-09 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| at this point ||| 0.00394011 0.321886 4.24322e-06 2.26109e-07 2.718 ||| 0-0 ||| 1269 1.17835e+06 +en ||| at this stage is ||| 0.0344828 0.321886 8.48644e-07 1.21267e-09 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| at this stage ||| 0.00174927 0.321886 2.54593e-06 3.86928e-08 2.718 ||| 0-0 ||| 1715 1.17835e+06 +en ||| at this time , ||| 0.00561798 0.321886 8.48644e-07 5.06032e-08 2.718 ||| 0-0 ||| 178 1.17835e+06 +en ||| at this time ||| 0.00185529 0.321886 1.69729e-06 4.24328e-07 2.718 ||| 0-0 ||| 1078 1.17835e+06 +en ||| at this very time ||| 0.0526316 0.321886 8.48644e-07 1.47645e-09 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| at this very ||| 0.00793651 0.321886 8.48644e-07 8.99343e-07 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| at this ||| 0.00639526 0.321886 3.47944e-05 0.000258469 2.718 ||| 0-0 ||| 6411 1.17835e+06 +en ||| at those airports ||| 0.333333 0.321886 8.48644e-07 1.68e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| at those ||| 0.00869565 0.321886 8.48644e-07 2.89654e-05 2.718 ||| 0-0 ||| 115 1.17835e+06 +en ||| at times , ||| 0.00595238 0.321886 8.48644e-07 4.84198e-07 2.718 ||| 0-0 ||| 168 1.17835e+06 +en ||| at times be part ||| 1 0.321886 8.48644e-07 8.77252e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at times be ||| 0.2 0.321886 8.48644e-07 7.35827e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| at times ||| 0.00739827 0.321886 5.09187e-06 4.0602e-06 2.718 ||| 0-0 ||| 811 1.17835e+06 +en ||| at too ||| 0.0666667 0.321886 8.48644e-07 5.44427e-05 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| at two possibilities ||| 1 0.321886 8.48644e-07 1.36173e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at two ||| 0.0133333 0.321886 8.48644e-07 9.45647e-06 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| at various ||| 0.0174419 0.321886 2.54593e-06 6.17631e-06 2.718 ||| 0-0 ||| 172 1.17835e+06 +en ||| at very great ||| 1 0.321886 8.48644e-07 5.47005e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| at very short ||| 0.111111 0.321886 8.48644e-07 1.96393e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| at very ||| 0.173913 0.321886 6.78915e-06 0.000139187 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| at ways ||| 0.047619 0.321886 8.48644e-07 3.85619e-06 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| at what has been ||| 0.0769231 0.321886 8.48644e-07 9.64737e-10 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| at what has ||| 0.0625 0.321886 8.48644e-07 2.88913e-07 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| at what is available on ||| 0.5 0.22993 8.48644e-07 4.86455e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| at what is ||| 0.0882353 0.321886 2.54593e-06 1.75908e-06 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| at what was ||| 0.25 0.321886 8.48644e-07 1.75845e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| at what ||| 0.0145985 0.321886 5.09187e-06 5.61268e-05 2.718 ||| 0-0 ||| 411 1.17835e+06 +en ||| at whatever ||| 0.0322581 0.321886 8.48644e-07 2.20411e-06 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| at which it makes use ||| 0.5 0.321886 8.48644e-07 4.99164e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at which it makes ||| 0.5 0.321886 8.48644e-07 1.02666e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at which it ||| 0.0454545 0.321886 8.48644e-07 6.04275e-06 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| at which traffic normally moves in ||| 1 0.605812 8.48644e-07 8.6044e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| at which ||| 0.0152672 0.321886 1.1881e-05 0.000339801 2.718 ||| 0-0 ||| 917 1.17835e+06 +en ||| at will ||| 0.0576923 0.321886 2.54593e-06 0.000346065 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| at with this matter ||| 0.5 0.0535436 8.48644e-07 3.27278e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| at with this ||| 0.2 0.0535436 8.48644e-07 3.15449e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| at with ||| 0.166667 0.187715 1.69729e-06 0.000466379 2.718 ||| 0-0 0-1 ||| 12 1.17835e+06 +en ||| at within ||| 0.5 0.345541 8.48644e-07 0.00044349 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| at work here in ||| 1 0.605812 8.48644e-07 2.48204e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| at work in ||| 0.0909091 0.605812 3.39458e-06 1.22401e-06 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| at work trying to ||| 0.5 0.321886 8.48644e-07 2.592e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at work trying ||| 0.5 0.321886 8.48644e-07 2.91701e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| at work ||| 0.00904393 0.321886 5.94051e-06 2.53213e-05 2.718 ||| 0-0 ||| 774 1.17835e+06 +en ||| at your ||| 0.015544 0.321886 2.54593e-06 1.02365e-05 2.718 ||| 0-0 ||| 193 1.17835e+06 +en ||| at ||| 0.398631 0.321886 0.048349 0.040002 2.718 ||| 0-0 ||| 142919 1.17835e+06 +en ||| atmosphere as ||| 0.2 0.066968 8.48644e-07 2.01464e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| attached in ||| 0.25 0.605812 8.48644e-07 1.4777e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| attached to ||| 0.0115473 0.0247351 4.24322e-06 8.99466e-07 2.718 ||| 0-1 ||| 433 1.17835e+06 +en ||| attaches in ||| 1 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| attaches to ||| 0.00641026 0.0247351 8.48644e-07 1.0119e-07 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| attack in ||| 0.057971 0.605812 3.39458e-06 1.36225e-05 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| attack on freedom ||| 0.166667 0.22993 8.48644e-07 2.08979e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| attack on ||| 0.00769231 0.22993 4.24322e-06 2.44993e-06 2.718 ||| 0-1 ||| 650 1.17835e+06 +en ||| attacked in ||| 0.03125 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| attacks in ||| 0.00909091 0.605812 8.48644e-07 6.00315e-06 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| attacks on ||| 0.00190114 0.22993 8.48644e-07 1.07963e-06 2.718 ||| 0-1 ||| 526 1.17835e+06 +en ||| attempt in ||| 0.0769231 0.605812 8.48644e-07 3.85587e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| attempt to dispel ||| 0.0714286 0.0247351 8.48644e-07 1.64293e-12 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| attempt to enter ||| 0.142857 0.194429 8.48644e-07 3.6297e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| attempt to ||| 0.00182815 0.0247351 3.39458e-06 2.34704e-06 2.718 ||| 0-1 ||| 2188 1.17835e+06 +en ||| attempting to treat the two as one ||| 1 0.066968 8.48644e-07 2.37538e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| attempting to treat the two as ||| 1 0.066968 8.48644e-07 5.69909e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| attempting to ||| 0.00174216 0.0247351 8.48644e-07 4.16003e-07 2.718 ||| 0-1 ||| 574 1.17835e+06 +en ||| attempts at ||| 0.00549451 0.321886 8.48644e-07 1.26806e-06 2.718 ||| 0-1 ||| 182 1.17835e+06 +en ||| attempts to ||| 0.001 0.0247351 8.48644e-07 8.91033e-07 2.718 ||| 0-1 ||| 1000 1.17835e+06 +en ||| attempts were made , in ||| 0.333333 0.605812 8.48644e-07 6.55098e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| attend sittings of ||| 0.333333 0.0116562 8.48644e-07 1.45493e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| attend ||| 0.00256082 0.0229961 1.69729e-06 2.38e-05 2.718 ||| 0-0 ||| 781 1.17835e+06 +en ||| attended at ||| 0.166667 0.321886 8.48644e-07 4.48022e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| attended by ||| 0.0152672 0.0468744 1.69729e-06 9.52795e-08 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| attended to in ||| 0.5 0.605812 8.48644e-07 4.5957e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| attended to ||| 0.03125 0.0505051 8.48644e-07 3.3233e-06 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| attended ||| 0.0142857 0.0505051 5.09187e-06 3.74e-05 2.718 ||| 0-0 ||| 420 1.17835e+06 +en ||| attending at ||| 1 0.321886 8.48644e-07 3.44017e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| attending ||| 0.0302198 0.084022 9.33509e-06 4.15e-05 2.718 ||| 0-0 ||| 364 1.17835e+06 +en ||| attention , in ||| 0.111111 0.605812 1.69729e-06 1.43897e-05 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| attention for the ||| 0.0909091 0.0286209 8.48644e-07 1.84563e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| attention for ||| 0.0140845 0.0286209 8.48644e-07 3.00631e-06 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| attention from ||| 0.00719424 0.0308834 8.48644e-07 9.94273e-07 2.718 ||| 0-1 ||| 139 1.17835e+06 +en ||| attention in ||| 0.0600858 0.605812 1.1881e-05 0.000120663 2.718 ||| 0-1 ||| 233 1.17835e+06 +en ||| attention now ||| 0.142857 0.0123946 8.48644e-07 1.5469e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| attention on ||| 0.0248963 0.22993 1.01837e-05 2.17005e-05 2.718 ||| 0-1 ||| 482 1.17835e+06 +en ||| attention to in ||| 0.333333 0.605812 8.48644e-07 1.07219e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| attention to issues relating ||| 0.142857 0.0325028 8.48644e-07 1.25958e-12 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| attention to the fact ||| 0.000785546 0.0011669 8.48644e-07 1.94841e-10 2.718 ||| 0-2 ||| 1273 1.17835e+06 +en ||| attention to the key ||| 0.125 0.0247351 8.48644e-07 3.27807e-11 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| attention to the processing of applications ||| 1 0.0116562 8.48644e-07 3.91883e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| attention to the processing of ||| 1 0.0116562 8.48644e-07 2.79917e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| attention to the ||| 0.001221 0.0247351 3.39458e-06 4.50904e-07 2.718 ||| 0-1 ||| 3276 1.17835e+06 +en ||| attention to ||| 0.00354925 0.0247351 2.03675e-05 7.3447e-06 2.718 ||| 0-1 ||| 6762 1.17835e+06 +en ||| attention when ||| 0.0526316 0.142731 8.48644e-07 1.5556e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| attention will focus much more on ||| 0.5 0.22993 8.48644e-07 3.33067e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| attention ||| 8.0289e-05 0.0002196 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 12455 1.17835e+06 +en ||| attitude as regards ||| 0.5 0.066968 8.48644e-07 1.31456e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| attitude as ||| 0.05 0.066968 8.48644e-07 9.38968e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| attitude in ||| 0.0350877 0.605812 1.69729e-06 2.4105e-05 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| attitude of ||| 0.00239234 0.0116562 8.48644e-07 7.11851e-07 2.718 ||| 0-1 ||| 418 1.17835e+06 +en ||| attitude on ||| 0.0285714 0.22993 8.48644e-07 4.33513e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| attitude towards ||| 0.012987 0.0616136 1.69729e-06 5.20016e-08 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| attitudes in ||| 0.0322581 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| attract enormous attention from ||| 1 0.0308834 8.48644e-07 1.94718e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| audited in ||| 1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| auditing in ||| 0.25 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| augurs well for ||| 0.0263158 0.0286209 8.48644e-07 2.00669e-11 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| authorised in ||| 0.025 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| authorities , even though as recently as ||| 1 0.066968 8.48644e-07 1.49783e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| authorities , where ||| 1 0.247783 8.48644e-07 6.76419e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| authorities as ||| 0.04 0.066968 8.48644e-07 1.19799e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| authorities in each country ||| 0.333333 0.605812 8.48644e-07 3.10695e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| authorities in each ||| 0.0666667 0.605812 8.48644e-07 8.63282e-09 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| authorities in search ||| 0.166667 0.605812 8.48644e-07 4.30565e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| authorities in ||| 0.0101868 0.605812 5.09187e-06 3.07546e-05 2.718 ||| 0-1 ||| 589 1.17835e+06 +en ||| authorities on ||| 0.0512821 0.22993 1.69729e-06 5.53102e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| authority in ||| 0.00909091 0.605812 8.48644e-07 1.96257e-05 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| authorizations in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| authorized in ||| 0.111111 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| authorized to ||| 0.047619 0.0247351 8.48644e-07 1.40542e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| automatic when a ||| 1 0.142731 8.48644e-07 2.90273e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| automatic when ||| 1 0.142731 8.48644e-07 6.54863e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| autonomous preferences in ||| 1 0.605812 8.48644e-07 4.15603e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| autonomy in ||| 0.015625 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| autumn at ||| 1 0.321886 8.48644e-07 1.60008e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| availability in ||| 0.111111 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| available at ||| 0.0134228 0.321886 1.69729e-06 1.27246e-05 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| available by ||| 0.0169492 0.0468744 8.48644e-07 2.70611e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| available everywhere , ||| 0.2 0.256283 8.48644e-07 1.86905e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| available everywhere ||| 0.142857 0.256283 8.48644e-07 1.56728e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| available for ||| 0.00566251 0.0286209 4.24322e-06 3.6598e-06 2.718 ||| 0-1 ||| 883 1.17835e+06 +en ||| available in ||| 0.0784314 0.605812 3.73403e-05 0.000146893 2.718 ||| 0-1 ||| 561 1.17835e+06 +en ||| available on ||| 0.037594 0.22993 8.48644e-06 2.64177e-05 2.718 ||| 0-1 ||| 266 1.17835e+06 +en ||| available through ||| 0.0243902 0.0366102 8.48644e-07 2.99141e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| available to me ||| 0.0115607 0.0247351 1.69729e-06 5.38353e-09 2.718 ||| 0-1 ||| 173 1.17835e+06 +en ||| available to us at ||| 0.0666667 0.321886 8.48644e-07 3.25887e-09 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| available to us in ||| 0.0357143 0.605812 8.48644e-07 3.76202e-08 2.718 ||| 0-3 ||| 28 1.17835e+06 +en ||| available to ||| 0.0026738 0.0247351 5.09187e-06 8.94125e-06 2.718 ||| 0-1 ||| 2244 1.17835e+06 +en ||| available under ||| 0.0206186 0.205566 1.69729e-06 1.79873e-06 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| available when ||| 0.0434783 0.142731 8.48644e-07 1.89374e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| avenues explored in Mrs ||| 1 0.605812 8.48644e-07 6.6563e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| avenues explored in ||| 1 0.605812 8.48644e-07 7.11143e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| average fine in ||| 0.25 0.605812 8.48644e-07 3.7105e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| average for ||| 0.0204082 0.0286209 8.48644e-07 2.85329e-07 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| averted through ||| 0.5 0.0366102 8.48644e-07 2.351e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| aviation industry as ||| 0.25 0.066968 8.48644e-07 1.61582e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| avoid , when ||| 0.5 0.142731 8.48644e-07 2.50616e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| avoid in ||| 0.0833333 0.605812 8.48644e-07 1.63009e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| avoid smoke in ||| 0.5 0.605812 8.48644e-07 9.45451e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| avoid the situation where , when ||| 1 0.142731 8.48644e-07 2.40087e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| avoidance by ||| 0.25 0.0468744 8.48644e-07 2.12678e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| avoided in ||| 0.0645161 0.605812 1.69729e-06 6.3264e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| await us in ||| 0.1 0.605812 8.48644e-07 5.72307e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| award in ||| 0.333333 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| awarded for ||| 0.0666667 0.0286209 8.48644e-07 2.19749e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| awarded positions in ||| 1 0.605812 8.48644e-07 2.98117e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| aware in ||| 0.1 0.605812 8.48644e-07 6.41414e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| aware of what ||| 0.00961538 0.0116562 8.48644e-07 2.65772e-09 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| aware of ||| 0.00179995 0.0116562 5.94051e-06 1.89418e-06 2.718 ||| 0-1 ||| 3889 1.17835e+06 +en ||| awareness of citizens on ||| 1 0.22993 8.48644e-07 1.47143e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| awareness of it among ||| 1 0.0422459 8.48644e-07 9.20666e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| away at ||| 0.0714286 0.321886 8.48644e-07 1.27246e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| away from the ||| 0.00314465 0.0308834 8.48644e-07 7.43088e-08 2.718 ||| 0-1 ||| 318 1.17835e+06 +en ||| away from themselves to ||| 1 0.0308834 8.48644e-07 4.6216e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| away from themselves ||| 1 0.0308834 8.48644e-07 5.2011e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| away from ||| 0.0163221 0.0308834 1.27297e-05 1.2104e-06 2.718 ||| 0-1 ||| 919 1.17835e+06 +en ||| away in back ||| 1 0.605812 8.48644e-07 9.87999e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| away in the ||| 0.0769231 0.605812 8.48644e-07 9.018e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| away in ||| 0.380952 0.605812 1.35783e-05 0.000146893 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| away now in ||| 1 0.605812 8.48644e-07 3.02584e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| away on ||| 0.181818 0.22993 1.69729e-06 2.64177e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| away our ||| 0.0588235 0.0004869 8.48644e-07 1.55869e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| away under ||| 0.25 0.205566 8.48644e-07 1.79873e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| away with it ||| 0.0416667 0.0535436 8.48644e-07 6.59525e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| away with standards ||| 1 0.0535436 8.48644e-07 2.71106e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| away with ||| 0.0179104 0.0535436 5.09187e-06 3.7087e-06 2.718 ||| 0-1 ||| 335 1.17835e+06 +en ||| baby out with ||| 0.0204082 0.0535436 8.48644e-07 4.19788e-10 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| back , to a ||| 1 0.007257 8.48644e-07 3.48525e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| back , to ||| 0.25 0.007257 8.48644e-07 7.86279e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| back , ||| 0.0106383 0.007257 1.69729e-06 8.8487e-06 2.718 ||| 0-0 ||| 188 1.17835e+06 +en ||| back again in the ||| 1 0.605812 8.48644e-07 1.1027e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| back again in ||| 0.5 0.605812 8.48644e-07 1.79616e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| back as in ||| 0.5 0.605812 8.48644e-07 3.16943e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| back as ||| 0.232143 0.066968 1.10324e-05 1.20987e-05 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| back at ||| 0.0652174 0.321886 5.09187e-06 2.69053e-05 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| back deeper in ||| 0.5 0.605812 8.48644e-07 9.93901e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| back for ||| 0.0217391 0.0286209 8.48644e-07 7.7384e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| back from ||| 0.0128205 0.0308834 8.48644e-07 2.55931e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| back home in ||| 0.294118 0.605812 4.24322e-06 3.15253e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| back in early ||| 0.25 0.605812 8.48644e-07 2.10272e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| back in history ||| 0.2 0.605812 8.48644e-07 1.11814e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| back in particular to ||| 0.5 0.605812 8.48644e-07 1.69843e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| back in particular ||| 0.5 0.605812 8.48644e-07 1.9114e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| back in the ||| 0.00704225 0.605812 8.48644e-07 1.90679e-05 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| back in ||| 0.314496 0.605812 0.000217253 0.000310594 2.718 ||| 0-1 ||| 814 1.17835e+06 +en ||| back into line ||| 0.0909091 0.525896 8.48644e-07 4.38348e-09 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| back into the ||| 0.0078125 0.525896 8.48644e-07 9.14096e-07 2.718 ||| 0-1 ||| 128 1.17835e+06 +en ||| back into ||| 0.12749 0.525896 2.71566e-05 1.48895e-05 2.718 ||| 0-1 ||| 251 1.17835e+06 +en ||| back it at ||| 1 0.321886 8.48644e-07 4.78463e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| back of ||| 0.00862069 0.0116562 8.48644e-07 9.17225e-06 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| back on its long-standing dispute ||| 0.5 0.22993 8.48644e-07 4.30376e-18 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| back on its long-standing ||| 0.5 0.22993 8.48644e-07 2.5466e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| back on its ||| 0.0434783 0.22993 8.48644e-07 7.95814e-08 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| back on to ||| 0.2 0.22993 1.69729e-06 4.96347e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| back on ||| 0.0505495 0.22993 1.95188e-05 5.58584e-05 2.718 ||| 0-1 ||| 455 1.17835e+06 +en ||| back onto ||| 0.0816327 0.233333 3.39458e-06 1.34587e-07 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| back over ||| 0.0192308 0.157937 8.48644e-07 2.69524e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| back teeth with ||| 0.5 0.0535436 8.48644e-07 4.78348e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| back the ||| 0.00456621 0.00421195 8.48644e-07 2.12561e-07 2.718 ||| 0-0 0-1 ||| 219 1.17835e+06 +en ||| back then , in ||| 0.2 0.605812 8.48644e-07 5.96489e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| back to the same topic ||| 1 0.0247351 8.48644e-07 1.74654e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| back to the same ||| 0.111111 0.0247351 8.48644e-07 9.33976e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| back to the ||| 0.00513699 0.0159961 2.54593e-06 1.28041e-07 2.718 ||| 0-0 0-1 ||| 584 1.17835e+06 +en ||| back to them in ||| 0.333333 0.605812 8.48644e-07 7.40311e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| back to us ||| 0.0666667 0.0247351 8.48644e-07 5.44898e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| back to where we were ||| 1 0.247783 8.48644e-07 1.03514e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| back to where we ||| 1 0.247783 8.48644e-07 5.77836e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| back to where ||| 0.2 0.247783 8.48644e-07 5.09003e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| back to ||| 0.0199871 0.0247351 2.6308e-05 1.89056e-05 2.718 ||| 0-1 ||| 1551 1.17835e+06 +en ||| back towards ||| 0.111111 0.0616136 8.48644e-07 6.70044e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| back under ||| 0.1 0.205566 8.48644e-07 3.80328e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| back up ||| 0.0128205 0.010982 8.48644e-07 5.1198e-08 2.718 ||| 0-0 0-1 ||| 78 1.17835e+06 +en ||| back ||| 0.0058921 0.007257 2.71566e-05 7.42e-05 2.718 ||| 0-0 ||| 5431 1.17835e+06 +en ||| backed by ||| 0.00367647 0.0468744 8.48644e-07 9.78316e-08 2.718 ||| 0-1 ||| 272 1.17835e+06 +en ||| backed up with ||| 0.05 0.0535436 8.48644e-07 4.57271e-10 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| background in ||| 0.0384615 0.605812 8.48644e-07 1.22834e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| background to ||| 0.00436681 0.0247351 8.48644e-07 7.47681e-07 2.718 ||| 0-1 ||| 229 1.17835e+06 +en ||| backing in ||| 0.0952381 0.605812 1.69729e-06 7.8041e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| backing with ||| 0.333333 0.0535436 8.48644e-07 1.97035e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| backlash in ||| 0.166667 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| backs to ||| 0.125 0.0247351 8.48644e-07 2.22056e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| backwardness in ||| 0.142857 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| bad enough in ||| 0.333333 0.605812 8.48644e-07 3.48628e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| bad records ||| 0.333333 0.024173 8.48644e-07 5.8953e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| badly affected in ||| 1 0.605812 8.48644e-07 4.42867e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| badly during ||| 0.333333 0.226251 8.48644e-07 4.16347e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| balance as regards ||| 0.0769231 0.066968 8.48644e-07 1.35989e-10 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| balance as ||| 0.0588235 0.066968 8.48644e-07 9.71347e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| balance in ||| 0.016129 0.605812 3.39458e-06 2.49362e-05 2.718 ||| 0-1 ||| 248 1.17835e+06 +en ||| balance of power in ||| 0.0526316 0.605812 8.48644e-07 2.02396e-10 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| balances in ||| 0.111111 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| balancing the economy ||| 0.5 0.0011669 8.48644e-07 6.43011e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| balancing the ||| 0.0147059 0.0011669 8.48644e-07 1.23182e-08 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| ball into ||| 0.25 0.525896 8.48644e-07 2.08091e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| ball rolling in ||| 0.5 0.605812 8.48644e-07 3.42919e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| ballot boxes in ||| 0.333333 0.605812 8.48644e-07 4.61781e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| ban , in ||| 0.5 0.605812 8.48644e-07 2.12018e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| ban at ||| 0.111111 0.321886 8.48644e-07 1.54008e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| ban on ||| 0.00189514 0.22993 2.54593e-06 3.19736e-06 2.718 ||| 0-1 ||| 1583 1.17835e+06 +en ||| ban placed on ||| 0.5 0.22993 8.48644e-07 4.0031e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| ban with conviction ||| 0.166667 0.0535436 8.48644e-07 3.41139e-12 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| ban with ||| 0.0769231 0.0535436 8.48644e-07 4.48868e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| ban within ||| 0.333333 0.369196 8.48644e-07 4.26838e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| bananas in ||| 0.047619 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| bandied about in ||| 0.2 0.605812 8.48644e-07 9.14336e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| bandied about very freely in ||| 1 0.605812 8.48644e-07 4.13586e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| bands in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| bank where ||| 0.5 0.247783 8.48644e-07 1.37969e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| banking directive in ||| 1 0.605812 8.48644e-07 2.216e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| bankrupt institution in ||| 1 0.605812 8.48644e-07 3.15166e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| bankruptcy in ||| 0.125 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| banks in ||| 0.0107527 0.605812 8.48644e-07 6.97289e-06 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| banned in the EU ||| 0.0833333 0.605812 8.48644e-07 1.45885e-10 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| banned in the ||| 0.025641 0.605812 8.48644e-07 2.94836e-07 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| banned in ||| 0.0149254 0.605812 1.69729e-06 4.80252e-06 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| barred from taking part in ||| 1 0.605812 8.48644e-07 8.28954e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| base at ||| 0.142857 0.321886 8.48644e-07 1.35207e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| base in terms ||| 0.5 0.605812 8.48644e-07 1.71316e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| base in ||| 0.0666667 0.605812 8.48644e-07 1.56082e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| base it on ||| 0.0769231 0.22993 8.48644e-07 4.99181e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| base ourselves on ||| 0.125 0.22993 8.48644e-07 8.92918e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| base their application on ||| 1 0.22993 8.48644e-07 1.97821e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| based and we will not need to ||| 1 0.0247351 8.48644e-07 2.53939e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| based in a ||| 0.0909091 0.605812 8.48644e-07 4.80198e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| based in national ||| 1 0.605812 8.48644e-07 1.39209e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| based in ||| 0.0403587 0.605812 1.52756e-05 0.000108334 2.718 ||| 0-1 ||| 446 1.17835e+06 +en ||| based on Chinese ||| 1 0.22993 8.48644e-07 2.3185e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| based on a ||| 0.00180018 0.22993 1.69729e-06 8.63606e-07 2.718 ||| 0-1 ||| 1111 1.17835e+06 +en ||| based on mere ||| 0.25 0.22993 8.48644e-07 4.13043e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| based on new technologies ||| 0.1 0.22993 8.48644e-07 9.66542e-14 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| based on new ||| 0.0526316 0.22993 8.48644e-07 1.16451e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| based on partnership and is ||| 0.5 0.22993 8.48644e-07 1.6521e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| based on partnership and ||| 0.0714286 0.22993 8.48644e-07 5.27135e-12 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| based on partnership ||| 0.04 0.22993 8.48644e-07 4.20836e-10 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| based on the argument ||| 0.25 0.22993 8.48644e-07 3.87538e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| based on the values ||| 0.0322581 0.22993 8.48644e-07 3.95911e-11 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| based on the ||| 0.00090009 0.22993 2.54593e-06 1.19611e-06 2.718 ||| 0-1 ||| 3333 1.17835e+06 +en ||| based on ||| 0.00665727 0.22993 7.21348e-05 1.94832e-05 2.718 ||| 0-1 ||| 12768 1.17835e+06 +en ||| based upon ||| 0.00796813 0.114601 1.69729e-06 2.07363e-07 2.718 ||| 0-1 ||| 251 1.17835e+06 +en ||| based ||| 0.00130634 0.0025292 1.35783e-05 2.52e-05 2.718 ||| 0-0 ||| 12248 1.17835e+06 +en ||| bases in ||| 0.0588235 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| basically backs ||| 0.5 0.1117 8.48644e-07 1.47256e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| basically endorsed ||| 0.25 0.1117 8.48644e-07 1.54712e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| basically nothing more ||| 0.333333 0.1117 8.48644e-07 7.92194e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| basically nothing ||| 0.333333 0.1117 8.48644e-07 3.4689e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| basically put a lie ||| 1 0.1117 8.48644e-07 3.4436e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| basically put a ||| 1 0.1117 8.48644e-07 9.11004e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| basically put ||| 1 0.1117 8.48644e-07 2.05525e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| basically referring ||| 0.142857 0.1117 8.48644e-07 8.05248e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| basically that we want to ||| 1 0.1117 8.48644e-07 1.47869e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| basically that we want ||| 1 0.1117 8.48644e-07 1.6641e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| basically that we ||| 1 0.1117 8.48644e-07 3.55957e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| basically that ||| 0.1 0.1117 8.48644e-07 3.13555e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| basically ||| 0.010627 0.1117 1.69729e-05 0.0001864 2.718 ||| 0-0 ||| 1882 1.17835e+06 +en ||| basin ||| 0.00416667 0.0104167 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 240 1.17835e+06 +en ||| basis , the only sure way for ||| 1 0.0286209 8.48644e-07 2.0906e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| basis for any kind ||| 1 0.0286209 8.48644e-07 5.04154e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| basis for any ||| 0.0588235 0.0286209 8.48644e-07 1.0331e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| basis for my speech is ||| 1 0.0286209 8.48644e-07 6.1964e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| basis for my speech ||| 1 0.0286209 8.48644e-07 1.97709e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| basis for my ||| 0.111111 0.0286209 8.48644e-07 4.39352e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| basis for ||| 0.00388007 0.0286209 9.33509e-06 6.83179e-06 2.718 ||| 0-1 ||| 2835 1.17835e+06 +en ||| basis in ||| 0.0789474 0.605812 7.6378e-06 0.000274206 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| basis into ||| 1 0.525896 8.48644e-07 1.31451e-05 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| basis of ethnicity and race , in ||| 1 0.605812 8.48644e-07 2.54741e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| basis of ||| 0.0015739 0.0116562 9.33509e-06 8.09765e-06 2.718 ||| 0-1 ||| 6989 1.17835e+06 +en ||| basis on which ||| 0.01 0.22993 1.69729e-06 4.18904e-07 2.718 ||| 0-1 ||| 200 1.17835e+06 +en ||| basis on ||| 0.0175439 0.22993 5.09187e-06 4.93141e-05 2.718 ||| 0-1 ||| 342 1.17835e+06 +en ||| basis within ||| 0.111111 0.369196 8.48644e-07 6.58328e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| bathe the Holy Land in blood is ||| 1 0.605812 8.48644e-07 9.04571e-27 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| bathe the Holy Land in blood ||| 1 0.605812 8.48644e-07 2.88621e-25 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| bathe the Holy Land in ||| 1 0.605812 8.48644e-07 2.85764e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| batteries in ||| 0.25 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| battery ||| 0.0181818 0.130435 1.69729e-06 2.65e-05 2.718 ||| 0-0 ||| 110 1.17835e+06 +en ||| battle against corruption ||| 0.0769231 0.153982 8.48644e-07 5.67828e-13 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| battle against ||| 0.00284091 0.153982 8.48644e-07 8.35042e-08 2.718 ||| 0-1 ||| 352 1.17835e+06 +en ||| battle in ||| 0.0357143 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| battles resulting in ||| 1 0.605812 8.48644e-07 2.92862e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be , at ||| 0.0909091 0.321886 8.48644e-07 8.6454e-05 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| be , during ||| 1 0.226251 8.48644e-07 6.2488e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be , in the ||| 0.142857 0.605812 8.48644e-07 6.12703e-05 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be , in ||| 0.125 0.605812 3.39458e-06 0.00099802 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| be , into ||| 1 0.525896 8.48644e-07 4.7844e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be , on the ||| 0.166667 0.22993 8.48644e-07 1.10191e-05 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be , on ||| 0.2 0.22993 1.69729e-06 0.000179488 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| be ISO in another guise ||| 1 0.605812 8.48644e-07 2.58268e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be ISO in another ||| 1 0.605812 8.48644e-07 8.07088e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be ISO in ||| 1 0.605812 8.48644e-07 3.34753e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be Yanukovich , in ||| 1 0.605812 8.48644e-07 3.99208e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be a discussion on ||| 0.25 0.22993 8.48644e-07 5.76407e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| be a matter for ||| 0.0188679 0.0286209 8.48644e-07 9.58885e-09 2.718 ||| 0-3 ||| 53 1.17835e+06 +en ||| be a problem over ||| 0.5 0.157937 8.48644e-07 7.2396e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| be a significant increase in ||| 0.25 0.605812 8.48644e-07 2.76061e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| be a stain on ||| 0.333333 0.22993 8.48644e-07 2.66855e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| be a step in ||| 0.0416667 0.605812 8.48644e-07 5.47158e-08 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| be a willingness to ||| 0.142857 0.0247351 8.48644e-07 2.93537e-10 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| be a ||| 0.000190676 0.0015231 1.69729e-06 1.49333e-05 2.718 ||| 0-1 ||| 10489 1.17835e+06 +en ||| be able to agree ||| 0.0333333 0.071674 8.48644e-07 1.71719e-09 2.718 ||| 0-3 ||| 30 1.17835e+06 +en ||| be able to be ||| 0.0121951 0.0247351 8.48644e-07 7.70769e-09 2.718 ||| 0-2 ||| 82 1.17835e+06 +en ||| be able to become members of ||| 1 0.0116562 8.48644e-07 7.72646e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| be able to coordinate ||| 0.111111 0.0247351 8.48644e-07 1.06325e-12 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| be able to count on you , ||| 1 0.22993 8.48644e-07 1.1737e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be able to count on you ||| 0.333333 0.22993 8.48644e-07 9.84195e-15 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| be able to count on ||| 0.0243902 0.22993 8.48644e-07 3.04827e-12 2.718 ||| 0-4 ||| 41 1.17835e+06 +en ||| be able to enjoy ||| 0.0277778 0.0247351 8.48644e-07 1.65442e-11 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| be able to hold their own in ||| 1 0.605812 8.48644e-07 2.12526e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| be able to in ||| 0.25 0.605812 8.48644e-07 6.20863e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| be able to measure it in ||| 1 0.605812 8.48644e-07 8.26966e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| be able to stand up to ||| 0.166667 0.0247351 8.48644e-07 2.12407e-14 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be able to stand up ||| 0.166667 0.0247351 8.48644e-07 2.39041e-13 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be able to stand ||| 0.0769231 0.0247351 8.48644e-07 7.00897e-11 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| be able to ||| 0.00206961 0.0247351 9.33509e-06 4.25301e-07 2.718 ||| 0-2 ||| 5315 1.17835e+06 +en ||| be abolished for ||| 0.166667 0.0286209 8.48644e-07 2.39784e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be about ||| 0.020202 0.0401564 3.39458e-06 5.1942e-05 2.718 ||| 0-1 ||| 198 1.17835e+06 +en ||| be acceptable in ||| 0.166667 0.605812 8.48644e-07 2.7115e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be accepted at ||| 0.1 0.321886 8.48644e-07 4.45846e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| be accused of anti-Americanism ||| 1 0.0116562 8.48644e-07 1.2456e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be accused of ||| 0.0263158 0.0116562 8.48644e-07 3.11399e-09 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| be achieved by ||| 0.00471698 0.0468744 8.48644e-07 2.57932e-08 2.718 ||| 0-2 ||| 212 1.17835e+06 +en ||| be achieved in ||| 0.029703 0.605812 2.54593e-06 1.4001e-06 2.718 ||| 0-2 ||| 101 1.17835e+06 +en ||| be achieved through ||| 0.00510204 0.0366102 8.48644e-07 2.85126e-09 2.718 ||| 0-2 ||| 196 1.17835e+06 +en ||| be acted upon , ||| 0.333333 0.114601 8.48644e-07 3.70602e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be acted upon ||| 0.117647 0.114601 1.69729e-06 3.10765e-10 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| be activated in the ||| 0.333333 0.605812 8.48644e-07 1.64408e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be activated in ||| 0.333333 0.605812 8.48644e-07 2.67802e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be active in ||| 0.0222222 0.605812 8.48644e-07 3.37263e-07 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| be added , in ||| 1 0.605812 8.48644e-07 7.11588e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be added in all ||| 1 0.605812 8.48644e-07 2.81963e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be added in ||| 0.333333 0.605812 1.69729e-06 5.96696e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be added to ||| 0.036036 0.0247351 3.39458e-06 3.63205e-08 2.718 ||| 0-2 ||| 111 1.17835e+06 +en ||| be addressed in the ||| 0.0285714 0.605812 8.48644e-07 2.75384e-08 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| be addressed in ||| 0.0294118 0.605812 2.54593e-06 4.48568e-07 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| be addressed with ||| 0.0344828 0.0535436 8.48644e-07 1.13253e-08 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| be addressing in ||| 0.5 0.605812 8.48644e-07 1.50639e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be adhered to in ||| 0.125 0.605812 8.48644e-07 5.87474e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| be adjusted in ||| 0.111111 0.605812 8.48644e-07 2.42696e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| be adopted in ||| 0.0472973 0.605812 5.94051e-06 1.70724e-06 2.718 ||| 0-2 ||| 148 1.17835e+06 +en ||| be advancing in ||| 1 0.605812 8.48644e-07 2.0922e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be afforded when ||| 0.5 0.142731 8.48644e-07 1.55363e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be against ||| 0.00763359 0.153982 8.48644e-07 0.000105093 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| be agreed on the fact ||| 1 0.22993 8.48644e-07 2.1139e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be agreed on the ||| 0.333333 0.22993 8.48644e-07 7.2164e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be agreed on ||| 0.05 0.22993 8.48644e-07 1.17547e-07 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| be alerted in ||| 1 0.605812 8.48644e-07 9.20569e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be allowed in the ||| 0.333333 0.605812 8.48644e-07 8.31804e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be allowed in ||| 0.107143 0.605812 2.54593e-06 1.35491e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| be allowed on ||| 0.125 0.22993 8.48644e-07 2.43672e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| be allowed to conceal ||| 1 0.0247351 8.48644e-07 5.03082e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be allowed to happen . here in ||| 1 0.605812 8.48644e-07 8.03826e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| be allowed to ||| 0.00609756 0.0247351 3.39458e-06 8.24725e-08 2.718 ||| 0-2 ||| 656 1.17835e+06 +en ||| be along shortly ||| 0.5 0.248793 8.48644e-07 1.22007e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be an element of ||| 0.2 0.0116562 8.48644e-07 4.77835e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| be announced in ||| 0.25 0.605812 1.69729e-06 1.74908e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| be answered in ||| 0.00546448 0.605812 8.48644e-07 6.61136e-08 2.718 ||| 0-2 ||| 183 1.17835e+06 +en ||| be any doubts cast on ||| 1 0.22993 8.48644e-07 6.92353e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be applied in practice in ||| 0.25 0.605812 8.48644e-07 2.04474e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| be applied to ||| 0.015873 0.0247351 3.39458e-06 5.51684e-08 2.718 ||| 0-2 ||| 252 1.17835e+06 +en ||| be applied under ||| 0.2 0.205566 8.48644e-07 1.10983e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be approved in ||| 0.0625 0.605812 1.69729e-06 3.82455e-07 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| be around ||| 0.0357143 0.159384 8.48644e-07 2.09156e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| be as a ||| 0.166667 0.066968 8.48644e-07 1.44499e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| be as ||| 0.00803859 0.066968 4.24322e-06 0.000325993 2.718 ||| 0-1 ||| 622 1.17835e+06 +en ||| be assisted in ||| 0.0833333 0.605812 8.48644e-07 3.01277e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| be associated with ||| 0.0194175 0.0535436 1.69729e-06 1.08816e-08 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| be at hand ||| 1 0.321886 8.48644e-07 2.87516e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| be at the ||| 0.00787402 0.321886 2.54593e-06 4.45061e-05 2.718 ||| 0-1 ||| 381 1.17835e+06 +en ||| be at ||| 0.0391236 0.321886 2.12161e-05 0.000724952 2.718 ||| 0-1 ||| 639 1.17835e+06 +en ||| be attended to in ||| 1 0.605812 8.48644e-07 8.32874e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be automatic when a ||| 1 0.142731 8.48644e-07 5.26059e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be automatic when ||| 1 0.142731 8.48644e-07 1.1868e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be available by ||| 0.0769231 0.0468744 8.48644e-07 4.90425e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| be available in ||| 0.025 0.605812 8.48644e-07 2.66212e-06 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| be averted through ||| 0.5 0.0366102 8.48644e-07 4.26069e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be badly affected in ||| 1 0.605812 8.48644e-07 8.02603e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be based in ||| 0.117647 0.605812 1.69729e-06 1.96332e-06 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| be based on ||| 0.000807102 0.22993 8.48644e-07 3.53091e-07 2.718 ||| 0-2 ||| 1239 1.17835e+06 +en ||| be borne in mind ||| 0.00469484 0.605812 8.48644e-07 6.74593e-11 2.718 ||| 0-2 ||| 213 1.17835e+06 +en ||| be borne in ||| 0.0102041 0.605812 1.69729e-06 2.67802e-07 2.718 ||| 0-2 ||| 196 1.17835e+06 +en ||| be borne within ||| 0.5 0.369196 8.48644e-07 6.42954e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be broadcast on ||| 0.2 0.22993 8.48644e-07 9.18097e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be broadly supported ||| 1 0.194565 8.48644e-07 2.28683e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| be broadly ||| 0.111111 0.194565 8.48644e-07 4.41474e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| be brought back into line ||| 0.333333 0.525896 8.48644e-07 2.22436e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| be brought back into ||| 0.5 0.525896 8.48644e-07 7.55557e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| be brought before ||| 0.0192308 0.0175291 8.48644e-07 1.72987e-09 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| be brought in ||| 0.047619 0.605812 8.48644e-07 2.34327e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| be brought into being ||| 0.5 0.525896 8.48644e-07 3.19679e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be brought into line ||| 0.027027 0.525896 8.48644e-07 3.30711e-11 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| be brought into ||| 0.0714286 0.525896 5.94051e-06 1.12334e-07 2.718 ||| 0-2 ||| 98 1.17835e+06 +en ||| be brought to ||| 0.00460829 0.0247351 8.48644e-07 1.42633e-07 2.718 ||| 0-2 ||| 217 1.17835e+06 +en ||| be brought up to ||| 0.111111 0.0247351 8.48644e-07 4.8645e-10 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| be brought within ||| 0.153846 0.369196 1.69729e-06 5.62585e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| be built at all ||| 0.2 0.321886 8.48644e-07 1.70257e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be built at ||| 0.2 0.321886 8.48644e-07 3.60301e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be built for ||| 0.333333 0.0286209 8.48644e-07 1.03628e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be built in ||| 0.1 0.605812 1.69729e-06 4.1593e-07 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| be by ||| 0.0208333 0.0468744 8.48644e-07 0.000154173 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| be calculated in ||| 0.2 0.605812 8.48644e-07 9.62413e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be called on ||| 0.0588235 0.22993 8.48644e-07 2.61583e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| be called upon in exceptional circumstances ||| 1 0.605812 8.48644e-07 1.13645e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be called upon in exceptional ||| 1 0.605812 8.48644e-07 2.10454e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be called upon in ||| 1 0.605812 8.48644e-07 3.45007e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be careful in ||| 0.0666667 0.605812 8.48644e-07 2.31816e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| be carried out at ||| 0.105263 0.321886 3.39458e-06 8.1834e-10 2.718 ||| 0-3 ||| 38 1.17835e+06 +en ||| be carried out in ||| 0.0650406 0.605812 6.78915e-06 9.44687e-09 2.718 ||| 0-3 ||| 123 1.17835e+06 +en ||| be carried out on ||| 0.037037 0.22993 8.48644e-07 1.69896e-09 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| be carried out ||| 0.00327154 0.0120599 2.54593e-06 2.94012e-09 2.718 ||| 0-2 ||| 917 1.17835e+06 +en ||| be carried through ||| 0.0588235 0.0366102 8.48644e-07 5.02251e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| be carried to ||| 0.333333 0.0247351 8.48644e-07 1.50121e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be caught in ||| 0.0666667 0.605812 8.48644e-07 2.31816e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| be caused to ||| 0.0769231 0.0247351 8.48644e-07 4.32484e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| be claimed in ||| 1 0.605812 8.48644e-07 1.65702e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be clarified ' in ||| 1 0.605812 8.48644e-07 2.27094e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be classified in ||| 0.125 0.605812 8.48644e-07 6.3603e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| be closed in ||| 0.2 0.605812 8.48644e-07 4.84554e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be combined ||| 0.00704225 0.0287853 8.48644e-07 6.16179e-07 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| be coming forward in ||| 1 0.605812 8.48644e-07 9.0474e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be commended on ||| 0.142857 0.22993 8.48644e-07 2.10711e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be committed to ||| 0.0169492 0.0247351 8.48644e-07 4.21786e-08 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| be completed by ||| 0.02 0.0468744 8.48644e-07 4.7177e-09 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| be completed in ||| 0.0263158 0.605812 8.48644e-07 2.56086e-07 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| be complied with in ||| 0.166667 0.605812 8.48644e-07 9.04393e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| be complied with ||| 0.00833333 0.0535436 8.48644e-07 3.57085e-09 2.718 ||| 0-2 ||| 120 1.17835e+06 +en ||| be conditional on ||| 0.027027 0.22993 8.48644e-07 1.35457e-08 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| be conducted in ||| 0.0491803 0.605812 2.54593e-06 5.06313e-07 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| be confident in ||| 0.166667 0.605812 8.48644e-07 4.18441e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be confused by ||| 0.2 0.0468744 8.48644e-07 7.24615e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be connected with ||| 0.166667 0.0535436 8.48644e-07 4.26812e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be considered in ||| 0.0275229 0.605812 2.54593e-06 9.00484e-07 2.718 ||| 0-2 ||| 109 1.17835e+06 +en ||| be consigned to ||| 0.0833333 0.0247351 8.48644e-07 1.27351e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| be content with ||| 0.012987 0.0535436 8.48644e-07 1.04167e-08 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| be controlled as ||| 0.333333 0.066968 8.48644e-07 3.16213e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be coordinated at ||| 0.0625 0.321886 8.48644e-07 4.92968e-09 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| be coordinated from ||| 0.333333 0.0308834 8.48644e-07 4.68924e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be covered by ||| 0.0215054 0.0468744 3.39458e-06 1.10388e-08 2.718 ||| 0-2 ||| 186 1.17835e+06 +en ||| be created at ||| 0.111111 0.321886 8.48644e-07 7.641e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| be created if ||| 0.333333 0.0178573 8.48644e-07 2.21482e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be created in ||| 0.0731707 0.605812 2.54593e-06 8.82073e-07 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| be created ||| 0.00169779 0.0003548 8.48644e-07 2.53721e-08 2.718 ||| 0-1 ||| 589 1.17835e+06 +en ||| be cut in ||| 0.166667 0.605812 1.69729e-06 6.32682e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| be damaged by ||| 0.5 0.0468744 8.48644e-07 1.6034e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be dealt with at ||| 0.0142857 0.321886 8.48644e-07 4.85359e-10 2.718 ||| 0-3 ||| 70 1.17835e+06 +en ||| be dealt with by ||| 0.0103093 0.050209 8.48644e-07 1.88197e-10 2.718 ||| 0-2 0-3 ||| 97 1.17835e+06 +en ||| be dealt with in ||| 0.00892857 0.605812 8.48644e-07 5.60295e-09 2.718 ||| 0-3 ||| 112 1.17835e+06 +en ||| be dealt with on ||| 0.0526316 0.141737 8.48644e-07 1.83723e-09 2.718 ||| 0-2 0-3 ||| 19 1.17835e+06 +en ||| be dealt with ||| 0.00529801 0.0535436 3.39458e-06 2.21224e-08 2.718 ||| 0-2 ||| 755 1.17835e+06 +en ||| be debated at ||| 0.0666667 0.321886 8.48644e-07 6.0171e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| be decided at ||| 0.0232558 0.321886 8.48644e-07 4.95867e-08 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| be decided by ||| 0.010989 0.0468744 8.48644e-07 1.05455e-08 2.718 ||| 0-2 ||| 91 1.17835e+06 +en ||| be decided in ||| 0.0454545 0.605812 8.48644e-07 5.72427e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| be declared on ||| 1 0.22993 8.48644e-07 3.853e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be defended in ||| 0.125 0.605812 8.48644e-07 3.01277e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| be defined in ||| 0.047619 0.605812 8.48644e-07 2.80355e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| be deluded into ||| 0.333333 0.525896 8.48644e-07 1.60477e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be democratic in ||| 1 0.605812 8.48644e-07 2.50227e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be denounced in unequivocal ||| 1 0.605812 8.48644e-07 8.99647e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be denounced in ||| 1 0.605812 8.48644e-07 2.0922e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be dependent on the ||| 0.0666667 0.22993 8.48644e-07 2.5225e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| be dependent on ||| 0.015873 0.22993 8.48644e-07 4.10886e-08 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| be deployed in ||| 0.047619 0.605812 8.48644e-07 1.11305e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| be described as ||| 0.01 0.066968 1.69729e-06 1.45393e-08 2.718 ||| 0-2 ||| 200 1.17835e+06 +en ||| be designed in the ||| 0.5 0.605812 8.48644e-07 4.01259e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be designed in ||| 0.0526316 0.605812 8.48644e-07 6.53604e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| be designed largely with ||| 1 0.0535436 8.48644e-07 5.39615e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be detected here ||| 1 0.0855319 8.48644e-07 2.55541e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be determined by ||| 0.037037 0.0468744 1.69729e-06 5.27273e-09 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| be determined on ||| 0.111111 0.22993 8.48644e-07 5.14737e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| be developed further in ||| 0.166667 0.605812 8.48644e-07 2.77867e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| be developed in ||| 0.0322581 0.605812 1.69729e-06 5.74937e-07 2.718 ||| 0-2 ||| 62 1.17835e+06 +en ||| be diluted into ||| 1 0.525896 8.48644e-07 2.80834e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be discussed at ||| 0.0133333 0.321886 8.48644e-07 3.806e-08 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| be discussed in ||| 0.029703 0.605812 2.54593e-06 4.39363e-07 2.718 ||| 0-2 ||| 101 1.17835e+06 +en ||| be discussing on ||| 1 0.22993 8.48644e-07 5.31292e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be displayed in ||| 0.166667 0.605812 8.48644e-07 1.47291e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be displayed on ||| 0.166667 0.22993 8.48644e-07 2.64894e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be dissolved in ||| 1 0.605812 8.48644e-07 1.17163e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be diverted by the ||| 0.5 0.0468744 8.48644e-07 4.73249e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be diverted by ||| 0.5 0.0468744 8.48644e-07 7.70867e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be doing as ||| 0.166667 0.066968 8.48644e-07 1.19672e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be doing just the same in ||| 1 0.605812 8.48644e-07 1.91491e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| be done , partly ||| 0.333333 0.294632 8.48644e-07 8.13453e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| be done across ||| 0.5 0.274879 8.48644e-07 1.69768e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be done in relation to ||| 0.166667 0.605812 8.48644e-07 8.25027e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be done in relation ||| 0.25 0.605812 8.48644e-07 9.28476e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be done in the ||| 0.0108696 0.605812 8.48644e-07 2.34282e-07 2.718 ||| 0-2 ||| 92 1.17835e+06 +en ||| be done in ||| 0.0368764 0.605812 1.4427e-05 3.81618e-06 2.718 ||| 0-2 ||| 461 1.17835e+06 +en ||| be done on ||| 0.00840336 0.22993 8.48644e-07 6.86315e-07 2.718 ||| 0-2 ||| 119 1.17835e+06 +en ||| be done through the ||| 0.111111 0.0366102 8.48644e-07 4.77107e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| be done through ||| 0.0147059 0.0366102 8.48644e-07 7.77151e-09 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| be done to ||| 0.00518135 0.0247351 8.48644e-07 2.32288e-07 2.718 ||| 0-2 ||| 193 1.17835e+06 +en ||| be done whilst still providing a ||| 1 0.0125238 8.48644e-07 1.36265e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be done whilst still providing ||| 1 0.0125238 8.48644e-07 3.07417e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be done whilst still ||| 1 0.0125238 8.48644e-07 3.34877e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be done whilst ||| 0.5 0.0125238 8.48644e-07 4.44605e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be done with ||| 0.015625 0.0535436 8.48644e-07 9.63496e-08 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| be done within ||| 0.0384615 0.369196 8.48644e-07 9.1621e-08 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| be done ||| 0.000286615 0.0001288 8.48644e-07 1.8924e-08 2.718 ||| 0-0 ||| 3489 1.17835e+06 +en ||| be drafted in ||| 0.142857 0.605812 1.69729e-06 2.35164e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| be drawn up at ||| 0.166667 0.321886 8.48644e-07 3.51335e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| be drawn up by ||| 0.0555556 0.0468744 8.48644e-07 7.47173e-11 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| be drawn up for ||| 0.125 0.0286209 8.48644e-07 1.01049e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| be drawn up in ||| 0.0526316 0.605812 8.48644e-07 4.05579e-09 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| be driven forward within ||| 0.333333 0.369196 8.48644e-07 3.29791e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| be driven into ||| 0.5 0.525896 8.48644e-07 1.18352e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be easy to sit back ||| 0.5 0.0247351 8.48644e-07 4.89556e-16 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be easy to sit ||| 0.5 0.0247351 8.48644e-07 7.27857e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be easy to ||| 0.0196078 0.0247351 8.48644e-07 1.92555e-08 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| be effective in ||| 0.0151515 0.605812 8.48644e-07 5.48157e-07 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| be elaborated in ||| 0.5 0.605812 8.48644e-07 1.17163e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be elected on ||| 0.2 0.22993 8.48644e-07 3.35632e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be embodied in ||| 0.142857 0.605812 8.48644e-07 9.20569e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be emphasised ||| 0.00515464 0.152435 8.48644e-07 5.01823e-06 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| be ended in ||| 1 0.605812 8.48644e-07 1.65702e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be enforced in ||| 0.0588235 0.605812 8.48644e-07 9.62413e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| be engaged in ||| 0.04 0.605812 8.48644e-07 3.43121e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| be enhanced with ||| 0.5 0.0535436 8.48644e-07 2.51439e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be enshrined in ||| 0.0232558 0.605812 8.48644e-07 1.23858e-07 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| be enshrined to ||| 1 0.0247351 8.48644e-07 7.53918e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be entered in ||| 0.047619 0.605812 8.48644e-07 2.67802e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| be entered into ||| 0.0625 0.525896 8.48644e-07 1.28381e-08 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| be established at ||| 0.0294118 0.321886 8.48644e-07 1.08525e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| be established in ||| 0.0816327 0.605812 3.39458e-06 1.25281e-06 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| be established within ||| 0.166667 0.369196 8.48644e-07 3.00782e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be even ||| 0.00564972 0.0045419 8.48644e-07 2.41759e-06 2.718 ||| 0-1 ||| 177 1.17835e+06 +en ||| be evident in ||| 0.25 0.605812 8.48644e-07 1.56497e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be examined in ||| 0.0192308 0.605812 8.48644e-07 1.47291e-07 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| be expanded in ||| 0.5 0.605812 8.48644e-07 5.10498e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be expected in ||| 0.0769231 0.605812 8.48644e-07 4.46058e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| be exploited in ||| 0.142857 0.605812 8.48644e-07 7.86668e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be extended in ||| 0.0526316 0.605812 8.48644e-07 3.03788e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| be extended to all ||| 0.025 0.0247351 8.48644e-07 8.73791e-11 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| be extended to ||| 0.00323625 0.0247351 8.48644e-07 1.84914e-08 2.718 ||| 0-2 ||| 309 1.17835e+06 +en ||| be extracted in ||| 1 0.605812 8.48644e-07 1.50639e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be familiar - with Article 24 of ||| 1 0.0535436 8.48644e-07 1.1436e-22 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be familiar - with Article 24 ||| 1 0.0535436 8.48644e-07 2.1036e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be familiar - with Article ||| 1 0.0535436 8.48644e-07 2.44605e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be familiar - with ||| 1 0.0535436 8.48644e-07 1.23538e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be felt as such in ||| 0.5 0.605812 8.48644e-07 1.01062e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| be felt in ||| 0.0769231 0.605812 8.48644e-07 4.78696e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| be fighting in ||| 1 0.605812 8.48644e-07 2.28469e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be focused on ||| 0.0188679 0.22993 8.48644e-07 3.35632e-08 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| be followed , in ||| 0.333333 0.605812 8.48644e-07 7.14582e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| be followed by ||| 0.00621118 0.0468744 8.48644e-07 1.10388e-08 2.718 ||| 0-2 ||| 161 1.17835e+06 +en ||| be followed in the ||| 0.1 0.605812 8.48644e-07 3.67864e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| be followed in ||| 0.108696 0.605812 4.24322e-06 5.99207e-07 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| be followed up ||| 0.0119048 0.0147069 8.48644e-07 8.95344e-10 2.718 ||| 0-2 ||| 84 1.17835e+06 +en ||| be for us to ||| 0.1 0.0247351 8.48644e-07 1.12842e-08 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| be for us ||| 0.0625 0.0286209 8.48644e-07 6.00961e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| be for ||| 0.0238095 0.0286209 5.94051e-06 0.000208508 2.718 ||| 0-1 ||| 294 1.17835e+06 +en ||| be forged in ||| 1 0.605812 8.48644e-07 2.0922e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be found , however , in ||| 1 0.605812 8.48644e-07 2.88459e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| be found at ||| 0.0833333 0.321886 8.48644e-07 1.5862e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| be found for ||| 0.0454545 0.0286209 8.48644e-07 4.56215e-08 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| be found in the ||| 0.00900901 0.605812 8.48644e-07 1.12414e-07 2.718 ||| 0-2 ||| 111 1.17835e+06 +en ||| be found in ||| 0.120805 0.605812 3.05512e-05 1.8311e-06 2.718 ||| 0-2 ||| 298 1.17835e+06 +en ||| be found on ||| 0.0555556 0.22993 8.48644e-07 3.29311e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| be framed in ||| 0.2 0.605812 8.48644e-07 2.0922e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be from now ||| 0.5 0.0308834 8.48644e-07 1.4205e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| be from ||| 0.111111 0.0308834 2.54593e-06 6.89594e-05 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| be further from the ||| 0.0285714 0.0308834 8.48644e-07 2.04607e-09 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| be further from ||| 0.025641 0.0308834 8.48644e-07 3.33281e-08 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| be gained from having ||| 0.5 0.0308834 8.48644e-07 8.37025e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be gained from ||| 0.0344828 0.0308834 8.48644e-07 2.18601e-09 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| be given a place in ||| 0.2 0.605812 8.48644e-07 3.83152e-10 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| be given concerning ||| 1 0.0888235 8.48644e-07 1.50733e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be given in ||| 0.0740741 0.605812 1.69729e-06 5.74352e-06 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| be given more ||| 0.0227273 0.0546585 8.48644e-07 4.80465e-08 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| be given on ||| 0.142857 0.22993 8.48644e-07 1.03293e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be given the ||| 0.00420168 0.0546585 8.48644e-07 1.29161e-06 2.718 ||| 0-1 ||| 238 1.17835e+06 +en ||| be given to ||| 0.0105263 0.0396968 3.39458e-06 5.91367e-07 2.718 ||| 0-1 0-2 ||| 380 1.17835e+06 +en ||| be given ||| 0.00837004 0.0546585 1.61242e-05 2.10389e-05 2.718 ||| 0-1 ||| 2270 1.17835e+06 +en ||| be going about ||| 1 0.0401564 8.48644e-07 4.4452e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be going to ||| 0.142857 0.0247351 8.48644e-07 4.35948e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be gone in ||| 0.333333 0.605812 8.48644e-07 5.23888e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be good enough to ||| 0.25 0.0247351 8.48644e-07 4.3642e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| be granted in ||| 0.2 0.605812 8.48644e-07 6.77874e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be greater in ||| 0.25 0.605812 8.48644e-07 1.10217e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be guaranteed . ||| 0.0285714 6.3e-05 8.48644e-07 5.18188e-11 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| be guaranteed in ||| 0.0689655 0.605812 1.69729e-06 2.95419e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| be guaranteed over ||| 0.5 0.157937 8.48644e-07 2.56356e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be guaranteed places in ||| 1 0.605812 8.48644e-07 1.56277e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be guided by ||| 0.00787402 0.0468744 8.48644e-07 1.77299e-09 2.718 ||| 0-2 ||| 127 1.17835e+06 +en ||| be had in ||| 0.333333 0.605812 8.48644e-07 8.39978e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be handed out to ||| 1 0.0247351 8.48644e-07 6.02927e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be handled in ||| 0.0625 0.605812 8.48644e-07 1.71561e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| be hanging in ||| 1 0.605812 8.48644e-07 7.53193e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be happening in ||| 0.0833333 0.605812 8.48644e-07 4.54427e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| be happy to ||| 0.0133333 0.0247351 8.48644e-07 3.20924e-08 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| be heard in ||| 0.030303 0.605812 8.48644e-07 6.6281e-07 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| be held at ||| 0.1 0.321886 2.54593e-06 1.84935e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| be held by ||| 0.166667 0.0468744 8.48644e-07 3.93296e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be held in Cyprus ' ||| 1 0.605812 8.48644e-07 1.18796e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be held in Cyprus ||| 1 0.605812 8.48644e-07 3.45851e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be held in ||| 0.0466667 0.605812 1.1881e-05 2.13488e-06 2.718 ||| 0-2 ||| 300 1.17835e+06 +en ||| be held ||| 0.00182315 0.0032035 1.69729e-06 3.20775e-07 2.718 ||| 0-1 ||| 1097 1.17835e+06 +en ||| be here as ||| 0.125 0.066968 8.48644e-07 6.61048e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| be here now ||| 0.166667 0.0855319 8.48644e-07 1.11998e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| be here ||| 0.00396825 0.0855319 1.69729e-06 5.43705e-05 2.718 ||| 0-1 ||| 504 1.17835e+06 +en ||| be high on ||| 0.0434783 0.22993 8.48644e-07 2.24708e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| be highlighted as and ||| 0.25 0.066968 8.48644e-07 8.24838e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be highlighted as ||| 0.2 0.066968 8.48644e-07 6.58506e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be identified in ||| 0.125 0.605812 8.48644e-07 3.22199e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| be if ||| 0.0344828 0.0178573 1.69729e-06 2.10135e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| be implemented across ||| 0.1 0.274879 8.48644e-07 3.26878e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| be implemented in ||| 0.0243902 0.605812 4.24322e-06 7.34782e-07 2.718 ||| 0-2 ||| 205 1.17835e+06 +en ||| be implemented more slowly ||| 0.5 0.0703003 8.48644e-07 9.52263e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| be implemented more ||| 0.1 0.0703003 8.48644e-07 1.64183e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| be implemented ||| 0.00294638 0.0703003 4.24322e-06 7.18935e-06 2.718 ||| 0-1 ||| 1697 1.17835e+06 +en ||| be important in ||| 0.0714286 0.605812 8.48644e-07 3.21028e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| be imported to ||| 1 0.0247351 8.48644e-07 2.03762e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be in a ||| 0.0403727 0.605812 1.10324e-05 0.000370954 2.718 ||| 0-1 ||| 322 1.17835e+06 +en ||| be in an ||| 0.105263 0.605812 1.69729e-06 3.71969e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| be in breach ||| 0.0714286 0.605812 8.48644e-07 9.37307e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| be in charge of ||| 0.0588235 0.605812 8.48644e-07 2.29301e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| be in charge ||| 0.0555556 0.605812 8.48644e-07 4.21788e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| be in demand over ||| 1 0.605812 8.48644e-07 2.15986e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| be in demand ||| 1 0.605812 8.48644e-07 4.48568e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| be in existence by ||| 1 0.0468744 8.48644e-07 2.2803e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be in relation to ||| 1 0.605812 8.48644e-07 1.80927e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| be in relation ||| 0.5 0.605812 8.48644e-07 2.03613e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| be in the ||| 0.0332481 0.605812 1.10324e-05 0.000513776 2.718 ||| 0-1 ||| 391 1.17835e+06 +en ||| be in this instance . in ||| 1 0.605812 8.48644e-07 2.2718e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| be in ||| 0.114341 0.605812 0.00020028 0.00836881 2.718 ||| 0-1 ||| 2064 1.17835e+06 +en ||| be included in ||| 0.0257104 0.605812 1.61242e-05 7.85832e-07 2.718 ||| 0-2 ||| 739 1.17835e+06 +en ||| be included on ||| 0.0188679 0.22993 8.48644e-07 1.41327e-07 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| be included once again amongst ||| 1 0.050508 8.48644e-07 4.76797e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be incorporated in ||| 0.0740741 0.605812 3.39458e-06 1.6905e-07 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| be incorporated into ||| 0.016129 0.525896 2.54593e-06 8.10408e-09 2.718 ||| 0-2 ||| 186 1.17835e+06 +en ||| be insisting upon ||| 1 0.210441 8.48644e-07 3.7743e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| be insisting ||| 0.111111 0.210441 8.48644e-07 1.59119e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| be installed in ||| 0.2 0.605812 8.48644e-07 5.43973e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be insufficient in ||| 0.5 0.605812 8.48644e-07 4.85391e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be integrated into ||| 0.00591716 0.525896 8.48644e-07 8.10408e-09 2.718 ||| 0-2 ||| 169 1.17835e+06 +en ||| be introduced at ||| 0.0588235 0.321886 8.48644e-07 6.70581e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| be introduced in ||| 0.0363636 0.605812 1.69729e-06 7.74115e-07 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| be introduced into ||| 0.0526316 0.525896 8.48644e-07 3.71103e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| be introduced on ||| 0.0833333 0.22993 8.48644e-07 1.3922e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| be introduced within ||| 0.5 0.369196 8.48644e-07 1.85854e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be invested in ||| 0.030303 0.605812 8.48644e-07 6.3603e-08 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| be invested into ||| 1 0.525896 8.48644e-07 3.04906e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be involved in ||| 0.0169779 0.605812 8.48644e-06 2.89394e-06 2.718 ||| 0-2 ||| 589 1.17835e+06 +en ||| be involved ||| 0.000919963 0.0101887 8.48644e-07 1.83766e-06 2.718 ||| 0-1 ||| 1087 1.17835e+06 +en ||| be issued in ||| 0.0769231 0.605812 8.48644e-07 5.1803e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| be it in the ||| 0.0263158 0.605812 8.48644e-07 9.13659e-06 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| be it in ||| 0.0776699 0.605812 6.78915e-06 0.000148824 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| be it on ||| 0.0344828 0.22993 8.48644e-07 2.67651e-05 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| be it ||| 0.00322581 0.0080472 1.69729e-06 4.99811e-05 2.718 ||| 0-1 ||| 620 1.17835e+06 +en ||| be kept current within ||| 1 0.369196 8.48644e-07 2.3609e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be kept in ||| 0.0217391 0.605812 8.48644e-07 5.96696e-07 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| be kept to ||| 0.0322581 0.0247351 8.48644e-07 3.63205e-08 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| be kind here in ||| 1 0.605812 8.48644e-07 8.2815e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be laid down at ||| 0.5 0.321886 8.48644e-07 5.51637e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| be laid down in ||| 0.05 0.605812 8.48644e-07 6.36807e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| be largely ||| 0.05 0.247761 8.48644e-07 1.53537e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| be launched , ||| 0.05 0.12071 8.48644e-07 4.60344e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| be launched at ||| 0.0909091 0.321886 8.48644e-07 2.39959e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| be launched ||| 0.00787402 0.12071 8.48644e-07 3.86018e-06 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| be launching ||| 0.0588235 0.0918728 8.48644e-07 9.62326e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| be led by ||| 0.0322581 0.0468744 8.48644e-07 1.41531e-08 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| be led into ||| 0.5 0.525896 1.69729e-06 3.68294e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be left to ||| 0.00555556 0.0247351 8.48644e-07 9.62264e-08 2.718 ||| 0-2 ||| 180 1.17835e+06 +en ||| be left until ||| 0.142857 0.0092136 8.48644e-07 2.0027e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be let go by the ||| 1 0.0468744 8.48644e-07 2.26054e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be let go by ||| 1 0.0468744 8.48644e-07 3.68216e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be let loose in ||| 1 0.605812 8.48644e-07 1.98234e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be levied at ||| 0.2 0.321886 8.48644e-07 4.42221e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be like in ||| 0.352941 0.605812 5.09187e-06 1.48622e-05 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| be limited by ||| 0.111111 0.0468744 8.48644e-07 5.99734e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| be limited in time to ||| 0.5 0.0247351 8.48644e-07 6.96323e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| be linked in with a study ||| 1 0.605812 8.48644e-07 3.34333e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be linked in with a ||| 1 0.605812 8.48644e-07 9.89152e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be linked in with ||| 0.5 0.605812 8.48644e-07 2.23155e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be linked in ||| 0.166667 0.605812 8.48644e-07 3.48979e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be linked with ||| 0.0454545 0.0535436 8.48644e-07 8.81092e-09 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| be listed in ||| 0.1 0.605812 8.48644e-07 9.03832e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| be lived in ||| 1 0.605812 8.48644e-07 9.03832e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be living in ||| 0.0909091 0.605812 8.48644e-07 7.01307e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| be located in ||| 0.0384615 0.605812 8.48644e-07 2.07547e-07 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| be lodged in ||| 0.333333 0.605812 8.48644e-07 3.01277e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be logical to ||| 0.5 0.0247351 8.48644e-07 3.87147e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be looked at in ||| 0.0952381 0.463849 1.69729e-06 1.55333e-08 2.718 ||| 0-2 0-3 ||| 21 1.17835e+06 +en ||| be looked at ||| 0.02 0.321886 1.69729e-06 3.36378e-08 2.718 ||| 0-2 ||| 100 1.17835e+06 +en ||| be looking in ||| 0.2 0.605812 8.48644e-07 8.8542e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be lost in ||| 0.142857 0.605812 1.69729e-06 4.76185e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| be lowered in ||| 0.1 0.605812 8.48644e-07 2.42696e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| be made , in ||| 0.333333 0.605812 8.48644e-07 2.09065e-06 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| be made as regards ||| 0.25 0.0074471 8.48644e-07 3.66479e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| be made at ||| 0.0638298 0.321886 2.54593e-06 1.51863e-06 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| be made available in ||| 0.04 0.605812 8.48644e-07 5.57661e-09 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| be made by ||| 0.0111111 0.0468744 8.48644e-07 3.22962e-07 2.718 ||| 0-2 ||| 90 1.17835e+06 +en ||| be made clear in ||| 0.1 0.605812 8.48644e-07 5.83607e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| be made in the process in ||| 1 0.605812 8.48644e-07 9.84823e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| be made in the ||| 0.0142857 0.605812 8.48644e-07 1.07626e-06 2.718 ||| 0-2 ||| 70 1.17835e+06 +en ||| be made in ||| 0.183099 0.605812 3.30971e-05 1.7531e-05 2.718 ||| 0-2 ||| 213 1.17835e+06 +en ||| be made of ||| 0.037037 0.0116562 2.54593e-06 5.17713e-07 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| be made on the national ||| 1 0.22993 8.48644e-07 2.48722e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be made on the ||| 0.0232558 0.22993 8.48644e-07 1.93558e-07 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| be made on ||| 0.0843373 0.22993 5.94051e-06 3.15284e-06 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| be made over ||| 1 0.157937 8.48644e-07 1.52129e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be made regarding ||| 0.166667 0.140669 8.48644e-07 7.18656e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be made to foot its share of ||| 1 0.0116562 8.48644e-07 1.36801e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| be made to work in ||| 1 0.605812 8.48644e-07 9.8607e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be made to ||| 0.0272374 0.0247351 5.94051e-06 1.0671e-06 2.718 ||| 0-2 ||| 257 1.17835e+06 +en ||| be made with ||| 0.0588235 0.0535436 1.69729e-06 4.42617e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| be made within ||| 0.166667 0.369196 1.69729e-06 4.20894e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| be made ||| 0.000826902 0.0033766 2.54593e-06 2.182e-06 2.718 ||| 0-1 ||| 3628 1.17835e+06 +en ||| be maintained in ||| 0.0344828 0.605812 8.48644e-07 2.95419e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| be maintained when ||| 0.25 0.142731 8.48644e-07 3.80855e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be making ||| 0.00757576 0.0062242 8.48644e-07 1.39365e-06 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| be managed by the ||| 0.0714286 0.0468744 8.48644e-07 5.30985e-10 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| be managed by ||| 0.0333333 0.0468744 8.48644e-07 8.64912e-09 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| be mentioned in ||| 0.0434783 0.605812 8.48644e-07 7.4064e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| be met in ||| 0.0384615 0.605812 8.48644e-07 6.41888e-07 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| be met with ||| 0.04 0.0535436 8.48644e-07 1.62062e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| be mobilised in ||| 0.125 0.605812 8.48644e-07 1.17163e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| be modelled on ||| 0.166667 0.22993 8.48644e-07 2.10711e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be more ||| 0.000860215 0.0042952 1.69729e-06 6.02949e-06 2.718 ||| 0-1 ||| 2325 1.17835e+06 +en ||| be most interested in ||| 0.333333 0.605812 8.48644e-07 7.66804e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| be moving into ||| 0.5 0.525896 8.48644e-07 2.38308e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be necessary , in ||| 0.5 0.605812 8.48644e-07 2.56791e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| be neglected in ||| 0.25 0.605812 8.48644e-07 3.01277e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be noted in ||| 0.1 0.605812 8.48644e-07 2.56086e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| be obliged to undergo inspection , in ||| 0.5 0.605812 8.48644e-07 1.81509e-19 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| be observed in ||| 0.047619 0.605812 8.48644e-07 2.35164e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| be observed on ||| 0.5 0.22993 8.48644e-07 4.22927e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be obstructed by ||| 0.333333 0.0468744 8.48644e-07 4.47103e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be obtained in ||| 0.166667 0.605812 8.48644e-07 2.65291e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be of use in ||| 0.142857 0.605812 8.48644e-07 2.21203e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| be of ||| 0.00814111 0.0116562 5.09187e-06 0.000247142 2.718 ||| 0-1 ||| 737 1.17835e+06 +en ||| be on a ||| 0.0454545 0.22993 1.69729e-06 6.67138e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| be on the receiving end of ||| 0.166667 0.22993 8.48644e-07 6.53493e-14 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| be on the receiving end ||| 0.142857 0.22993 8.48644e-07 1.20207e-12 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| be on the receiving ||| 0.333333 0.22993 8.48644e-07 2.76274e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| be on the table ||| 0.0625 0.22993 8.48644e-07 6.25544e-09 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| be on the ||| 0.0149813 0.22993 3.39458e-06 9.23994e-05 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| be on ||| 0.103383 0.22993 4.66754e-05 0.00150508 2.718 ||| 0-1 ||| 532 1.17835e+06 +en ||| be once more ||| 0.5 0.0042952 8.48644e-07 2.46727e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be one in ||| 0.375 0.605812 2.54593e-06 3.48812e-05 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| be one of the ||| 0.00260417 0.0116562 8.48644e-07 6.32389e-08 2.718 ||| 0-2 ||| 384 1.17835e+06 +en ||| be one of ||| 0.00184843 0.0116562 8.48644e-07 1.03009e-06 2.718 ||| 0-2 ||| 541 1.17835e+06 +en ||| be open to ||| 0.00534759 0.0247351 8.48644e-07 8.21159e-08 2.718 ||| 0-2 ||| 187 1.17835e+06 +en ||| be organised in ||| 0.0285714 0.605812 8.48644e-07 2.16752e-07 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| be over ||| 0.0909091 0.157937 2.54593e-06 7.26221e-05 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| be overcome at ||| 0.25 0.321886 8.48644e-07 1.35566e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be paid for at ||| 1 0.321886 8.48644e-07 7.4996e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be paid in ||| 0.0952381 0.605812 1.69729e-06 1.12644e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| be part ||| 0.00186916 0.0009084 8.48644e-07 3.82393e-07 2.718 ||| 0-1 ||| 535 1.17835e+06 +en ||| be partners in seeking ||| 0.333333 0.605812 8.48644e-07 1.0862e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be partners in ||| 0.0833333 0.605812 8.48644e-07 2.14242e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| be passed in ||| 0.25 0.605812 8.48644e-07 5.99207e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be passed on as ||| 0.5 0.22993 8.48644e-07 1.09966e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be passed on to ||| 0.0666667 0.22993 1.69729e-06 9.57568e-09 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| be passed on ||| 0.0612245 0.22993 2.54593e-06 1.07764e-07 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| be permitted under ||| 0.5 0.205566 8.48644e-07 2.91037e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be phased out in ||| 0.333333 0.605812 8.48644e-07 1.50663e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| be placed at ||| 0.0588235 0.321886 8.48644e-07 9.0764e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| be placed before the judicial authorities ||| 1 0.0011669 8.48644e-07 1.40748e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be placed before the judicial ||| 1 0.0011669 8.48644e-07 2.11333e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be placed before the ||| 1 0.0011669 8.48644e-07 1.62564e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be placed in ||| 0.0983607 0.605812 5.09187e-06 1.04778e-06 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| be placed on the agenda as ||| 0.5 0.066968 8.48644e-07 1.6648e-15 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| be placed on ||| 0.0839695 0.22993 9.33509e-06 1.88436e-07 2.718 ||| 0-2 ||| 131 1.17835e+06 +en ||| be played on ||| 0.333333 0.22993 8.48644e-07 7.42003e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be plunged into ||| 0.333333 0.525896 8.48644e-07 8.82623e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be possible , at ||| 0.5 0.321886 8.48644e-07 6.93447e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| be possible , especially in the ||| 1 0.605812 8.48644e-07 3.94633e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be possible , especially in ||| 1 0.605812 8.48644e-07 6.42811e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be possible at ||| 0.142857 0.321886 8.48644e-07 5.81484e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be possible for us ||| 0.0833333 0.0286209 8.48644e-07 4.8203e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| be possible for ||| 0.0180995 0.0286209 3.39458e-06 1.67244e-07 2.718 ||| 0-2 ||| 221 1.17835e+06 +en ||| be possible in ||| 0.147059 0.605812 4.24322e-06 6.71262e-06 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| be possible with ||| 0.0666667 0.0535436 8.48644e-07 1.69478e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| be possible within ||| 0.142857 0.369196 8.48644e-07 1.6116e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be posted in ||| 0.5 0.605812 8.48644e-07 3.59859e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be poured into ||| 0.25 0.525896 8.48644e-07 7.22146e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be prescribed in ||| 1 0.605812 8.48644e-07 6.61136e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be present in ||| 0.0243902 0.605812 1.69729e-06 3.06299e-06 2.718 ||| 0-2 ||| 82 1.17835e+06 +en ||| be present throughout ||| 0.5 0.309047 8.48644e-07 1.9241e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be presented in ||| 0.0357143 0.605812 1.69729e-06 6.59462e-07 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| be primarily centred on ||| 1 0.22993 8.48644e-07 7.85651e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be produced in ||| 0.0689655 0.605812 1.69729e-06 8.8542e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| be promoted on ||| 0.333333 0.22993 8.48644e-07 3.31117e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be properly heard at ||| 1 0.321886 8.48644e-07 4.27751e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be protected given ||| 1 0.0546585 8.48644e-07 5.00725e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be provided by ||| 0.0212766 0.0468744 8.48644e-07 3.53365e-08 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| be provided in ||| 0.0625 0.605812 1.69729e-06 1.91813e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| be provided on ||| 0.0434783 0.22993 8.48644e-07 3.44964e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| be provided with ||| 0.00970874 0.0535436 8.48644e-07 4.84284e-08 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| be published in ||| 0.0555556 0.605812 1.69729e-06 1.86625e-07 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| be purchased in ||| 1 0.605812 8.48644e-07 1.50639e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be put down to the fact ||| 1 0.0247351 8.48644e-07 7.05135e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be put down to the ||| 0.5 0.0247351 8.48644e-07 2.40718e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| be put down to ||| 0.0833333 0.0247351 8.48644e-07 3.92101e-10 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| be put in place in ||| 0.125 0.605812 8.48644e-07 2.97251e-10 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| be put in place ||| 0.00645161 0.605812 8.48644e-07 1.38873e-08 2.718 ||| 0-2 ||| 155 1.17835e+06 +en ||| be put in ||| 0.0416667 0.605812 7.6378e-06 9.22745e-06 2.718 ||| 0-2 ||| 216 1.17835e+06 +en ||| be put into place ||| 0.125 0.525896 8.48644e-07 6.65743e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| be put into ||| 0.0236967 0.525896 4.24322e-06 4.42354e-07 2.718 ||| 0-2 ||| 211 1.17835e+06 +en ||| be put on ||| 0.0169492 0.22993 1.69729e-06 1.6595e-06 2.718 ||| 0-2 ||| 118 1.17835e+06 +en ||| be put to ||| 0.00904977 0.0247351 1.69729e-06 5.61669e-07 2.718 ||| 0-2 ||| 221 1.17835e+06 +en ||| be put up for ||| 0.25 0.0286209 8.48644e-07 7.84076e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| be quoted in ||| 0.333333 0.605812 8.48644e-07 1.021e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be raised by me at ||| 1 0.321886 8.48644e-07 2.63996e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be raising , in this connection , ||| 0.5 0.605812 8.48644e-07 2.69913e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| be raising , in this connection ||| 0.5 0.605812 8.48644e-07 2.26333e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| be raising , in this ||| 0.5 0.605812 8.48644e-07 1.48318e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| be raising , in ||| 0.5 0.605812 8.48644e-07 2.29545e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| be rapidly ||| 0.142857 0.0051702 8.48644e-07 1.48608e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| be re-established in ||| 0.5 0.605812 8.48644e-07 9.20569e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be re-integrated into ||| 1 0.525896 8.48644e-07 1.60477e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be reached at ||| 0.111111 0.321886 8.48644e-07 7.82948e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| be reached in ||| 0.153846 0.605812 1.69729e-06 9.03832e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| be reached on ||| 0.0769231 0.22993 8.48644e-07 1.62548e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| be read by ||| 0.25 0.0468744 8.48644e-07 7.43115e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be recalled from ||| 1 0.0308834 8.48644e-07 1.99982e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be received in ||| 0.0625 0.605812 8.48644e-07 7.49846e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| be recognised that ||| 0.0144928 0.0017499 8.48644e-07 4.56504e-10 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| be recognized amongst ||| 1 0.050508 8.48644e-07 1.39474e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be recorded in ||| 0.0681818 0.605812 2.54593e-06 1.74908e-07 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| be recovered within ||| 1 0.369196 8.48644e-07 6.42954e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be rectified at ||| 0.2 0.321886 8.48644e-07 1.81238e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be redeployed in ||| 1 0.605812 8.48644e-07 1.17163e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be redistributed through ||| 1 0.0366102 8.48644e-07 1.87471e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be reduced by ||| 0.030303 0.0468744 8.48644e-07 7.21531e-09 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| be reflected as ||| 0.5 0.066968 8.48644e-07 6.58506e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be reflected in ||| 0.026455 0.605812 4.24322e-06 1.6905e-07 2.718 ||| 0-2 ||| 189 1.17835e+06 +en ||| be regarded as ||| 0.00782779 0.066968 3.39458e-06 1.82882e-08 2.718 ||| 0-2 ||| 511 1.17835e+06 +en ||| be regulated in ||| 0.0263158 0.605812 8.48644e-07 8.4525e-08 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| be released , ||| 0.0714286 0.0790835 8.48644e-07 1.57338e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| be released ||| 0.00425532 0.0790835 8.48644e-07 1.31935e-06 2.718 ||| 0-1 ||| 235 1.17835e+06 +en ||| be remembered that in ||| 0.333333 0.605812 8.48644e-07 7.60195e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| be renounced in ||| 0.333333 0.605812 8.48644e-07 1.50639e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be replaced by a situation ||| 0.25 0.0468744 8.48644e-07 6.47576e-14 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be replaced by a ||| 0.015625 0.0468744 8.48644e-07 1.25743e-10 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| be replaced by ||| 0.003861 0.0468744 8.48644e-07 2.83679e-09 2.718 ||| 0-2 ||| 259 1.17835e+06 +en ||| be replaced on ||| 1 0.22993 8.48644e-07 2.76934e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be reporting on this to Parliament ||| 1 0.22993 8.48644e-07 6.4482e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be reporting on this to ||| 1 0.22993 8.48644e-07 1.12338e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be reporting on this ||| 1 0.22993 8.48644e-07 1.26424e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be reporting on ||| 0.2 0.22993 8.48644e-07 1.9566e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be represented in ||| 0.0322581 0.605812 1.69729e-06 2.95419e-07 2.718 ||| 0-2 ||| 62 1.17835e+06 +en ||| be reproduced in ||| 0.166667 0.605812 8.48644e-07 9.20569e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be required , in ||| 0.333333 0.605812 8.48644e-07 1.58386e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| be required in ||| 0.153846 0.605812 1.69729e-06 1.32813e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| be required on ||| 1 0.22993 8.48644e-07 2.38856e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be resolved in ||| 0.00980392 0.605812 8.48644e-07 2.16752e-07 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| be respected in ||| 0.0967742 0.605812 2.54593e-06 2.05036e-07 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| be respected within ||| 1 0.369196 8.48644e-07 4.92262e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be restored in ||| 0.125 0.605812 8.48644e-07 1.4478e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| be retained in ||| 0.142857 0.605812 8.48644e-07 7.86668e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be returned in ||| 0.25 0.605812 8.48644e-07 1.11305e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be reviewed in ||| 0.0322581 0.605812 8.48644e-07 5.69079e-08 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| be right , in ||| 1 0.605812 8.48644e-07 6.43623e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be right at ||| 0.5 0.321886 8.48644e-07 4.67522e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be sacrificed to ||| 0.0714286 0.0247351 8.48644e-07 1.12069e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| be said , in ||| 0.166667 0.605812 8.48644e-07 4.10486e-07 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| be said for ||| 0.027027 0.0286209 8.48644e-07 8.57592e-08 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| be said of ||| 0.0243902 0.0116562 8.48644e-07 1.01649e-07 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| be said that in ||| 0.0833333 0.605812 8.48644e-07 5.79015e-08 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| be said to complete it ||| 0.5 0.0247351 8.48644e-07 2.66774e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be said to complete ||| 0.5 0.0247351 8.48644e-07 1.50015e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be said to ||| 0.016129 0.0247351 8.48644e-07 2.09518e-07 2.718 ||| 0-2 ||| 62 1.17835e+06 +en ||| be secretly destroyed ||| 1 0.330709 8.48644e-07 5.96062e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| be secretly ||| 1 0.330709 8.48644e-07 5.18315e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| be seen as ||| 0.00141044 0.066968 8.48644e-07 6.86215e-08 2.718 ||| 0-2 ||| 709 1.17835e+06 +en ||| be seen from ||| 0.0178571 0.0308834 8.48644e-07 1.4516e-08 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| be seen in relative terms ||| 0.5 0.605812 8.48644e-07 1.74021e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be seen in relative ||| 1 0.605812 8.48644e-07 1.58547e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be seen in ||| 0.0333333 0.605812 7.6378e-06 1.76164e-06 2.718 ||| 0-2 ||| 270 1.17835e+06 +en ||| be seen that , in ||| 1 0.605812 8.48644e-07 3.53394e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be seen throughout ||| 0.5 0.309047 8.48644e-07 1.10662e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be seen to ||| 0.0140845 0.0247351 8.48644e-07 1.0723e-07 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| be selected in ||| 1 0.605812 8.48644e-07 3.59859e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be self-evident that ||| 0.0625 0.0017499 8.48644e-07 5.4932e-11 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| be sent out at ||| 1 0.321886 8.48644e-07 1.66889e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be separated out according to the ||| 1 0.0247351 8.48644e-07 2.33229e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be separated out according to ||| 1 0.0247351 8.48644e-07 3.79903e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be set at ||| 0.0416667 0.321886 1.69729e-06 4.23662e-07 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| be set out in ||| 0.125 0.605812 8.48644e-07 1.87335e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| be set up as ||| 0.111111 0.066968 8.48644e-07 6.49735e-10 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| be set up in ||| 0.0454545 0.605812 8.48644e-07 1.66798e-08 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| be set up within ||| 0.5 0.369196 8.48644e-07 4.00459e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| be shaped into ||| 1 0.525896 8.48644e-07 1.60477e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be shed on ||| 0.25 0.22993 8.48644e-07 1.29437e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be shown in ||| 0.142857 0.605812 8.48644e-07 8.73704e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be shown on ||| 0.2 0.22993 8.48644e-07 1.5713e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be slaughtered in ||| 0.5 0.605812 1.69729e-06 3.34753e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be so , but also in terms ||| 1 0.605812 8.48644e-07 8.57823e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| be so , but also in ||| 1 0.605812 8.48644e-07 7.81545e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| be so , in ||| 1 0.605812 8.48644e-07 2.26521e-06 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be so in ||| 0.214286 0.605812 2.54593e-06 1.89947e-05 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| be sorted by ||| 1 0.0468744 8.48644e-07 8.94205e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be speaking on ||| 0.0909091 0.22993 8.48644e-07 1.72783e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| be spent at ||| 0.333333 0.321886 8.48644e-07 4.64694e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be spent in the ||| 0.142857 0.605812 8.48644e-07 3.29331e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be spent in ||| 0.0357143 0.605812 8.48644e-07 5.36441e-07 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| be stated in ||| 0.0909091 0.605812 8.48644e-07 5.21377e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| be stressed ||| 0.00636943 0.127203 8.48644e-07 4.09396e-06 2.718 ||| 0-1 ||| 157 1.17835e+06 +en ||| be subject to ||| 0.00146843 0.0247351 8.48644e-07 2.74976e-07 2.718 ||| 0-2 ||| 681 1.17835e+06 +en ||| be submitted to ||| 0.015625 0.0247351 8.48644e-07 2.62343e-08 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| be sufficient cause for ||| 0.5 0.0286209 8.48644e-07 1.83112e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| be summarized in ||| 1 0.605812 8.48644e-07 3.34753e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be supported , in ||| 1 0.605812 8.48644e-07 5.16974e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be sure that no ||| 0.25 0.0017499 8.48644e-07 2.56849e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be sure that politics in our own ||| 1 0.605812 8.48644e-07 5.16129e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be sure that politics in our ||| 1 0.605812 8.48644e-07 3.04447e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be sure that politics in ||| 1 0.605812 8.48644e-07 2.2071e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be sure that ||| 0.00289017 0.0017499 8.48644e-07 3.29971e-09 2.718 ||| 0-2 ||| 346 1.17835e+06 +en ||| be sure to ||| 0.0357143 0.0247351 8.48644e-07 8.87382e-08 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| be sustained in ||| 0.0909091 0.605812 8.48644e-07 7.19718e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| be tabled on ||| 0.333333 0.22993 8.48644e-07 1.22965e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be tackled within ||| 0.142857 0.369196 8.48644e-07 3.17459e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be taken at ||| 0.016 0.163048 1.69729e-06 6.45932e-08 2.718 ||| 0-1 0-2 ||| 125 1.17835e+06 +en ||| be taken by ||| 0.0117647 0.0468744 1.69729e-06 1.40529e-07 2.718 ||| 0-2 ||| 170 1.17835e+06 +en ||| be taken for the specific ||| 1 0.0286209 8.48644e-07 1.763e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be taken for the ||| 0.333333 0.0286209 8.48644e-07 1.16678e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be taken for ||| 0.0181818 0.0286209 8.48644e-07 1.90055e-07 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| be taken from ||| 0.0416667 0.0308834 8.48644e-07 6.28565e-08 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| be taken if ||| 0.0625 0.0178573 8.48644e-07 1.91538e-08 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| be taken in a ||| 0.0714286 0.605812 8.48644e-07 3.38125e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| be taken in ||| 0.0695652 0.605812 1.35783e-05 7.62817e-06 2.718 ||| 0-2 ||| 230 1.17835e+06 +en ||| be taken into account when assessing ||| 0.5 0.525896 8.48644e-07 2.25995e-19 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be taken into account when considering ||| 0.333333 0.525896 8.48644e-07 1.58722e-18 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be taken into account when ||| 0.0277778 0.525896 1.69729e-06 5.25569e-14 2.718 ||| 0-2 ||| 72 1.17835e+06 +en ||| be taken into account where ||| 0.5 0.247783 8.48644e-07 4.15271e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| be taken into account ||| 0.00477327 0.525896 3.39458e-06 1.05135e-10 2.718 ||| 0-2 ||| 838 1.17835e+06 +en ||| be taken into ||| 0.00823893 0.525896 6.78915e-06 3.65687e-07 2.718 ||| 0-2 ||| 971 1.17835e+06 +en ||| be taken of ||| 0.0123457 0.0116562 8.48644e-07 2.2527e-07 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| be taken on them ||| 1 0.22993 8.48644e-07 3.67993e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be taken on ||| 0.0666667 0.22993 5.94051e-06 1.37188e-06 2.718 ||| 0-2 ||| 105 1.17835e+06 +en ||| be taken seriously in ||| 0.142857 0.605812 1.69729e-06 3.18095e-10 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| be taken under ||| 0.111111 0.205566 8.48644e-07 9.34085e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| be taken up as a ||| 0.5 0.066968 8.48644e-07 4.492e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| be taken up as ||| 1 0.066968 8.48644e-07 1.0134e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be taken up in ||| 0.285714 0.605812 1.69729e-06 2.60159e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| be taken when ||| 0.133333 0.142731 1.69729e-06 9.83427e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| be taken within ||| 0.0909091 0.369196 8.48644e-07 1.83141e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| be taken ||| 0.000925712 0.0042106 3.39458e-06 1.61475e-06 2.718 ||| 0-1 ||| 4321 1.17835e+06 +en ||| be taking over ||| 0.25 0.157937 8.48644e-07 3.08644e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be taking part in ||| 0.047619 0.605812 8.48644e-07 4.24035e-09 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| be taking with ||| 1 0.0535436 8.48644e-07 8.97996e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be that as it ||| 0.0217391 0.066968 8.48644e-07 9.75181e-08 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| be that as ||| 0.145985 0.066968 1.69729e-05 5.48372e-06 2.718 ||| 0-2 ||| 137 1.17835e+06 +en ||| be that by ||| 0.333333 0.0468744 8.48644e-07 2.59344e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be that there will ||| 1 0.0117359 8.48644e-07 2.95755e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be that there ||| 0.25 0.0117359 8.48644e-07 3.41866e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| be that ||| 0.00109051 0.0017499 8.48644e-07 1.89421e-05 2.718 ||| 0-1 ||| 917 1.17835e+06 +en ||| be the case , ||| 0.0128205 0.0011669 8.48644e-07 6.62408e-09 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| be the case in ||| 0.0571429 0.605812 1.69729e-06 5.49689e-07 2.718 ||| 0-3 ||| 35 1.17835e+06 +en ||| be the case ||| 0.00378788 0.0011669 1.69729e-06 5.55456e-08 2.718 ||| 0-1 ||| 528 1.17835e+06 +en ||| be the spark that ||| 0.5 0.0011669 8.48644e-07 1.57198e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| be the spark ||| 0.5 0.0011669 8.48644e-07 9.345e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| be the ||| 0.00133914 0.0011669 6.78915e-06 5.19167e-05 2.718 ||| 0-1 ||| 5974 1.17835e+06 +en ||| be there in order to present the ||| 1 0.308774 8.48644e-07 9.97963e-15 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| be there in order to present ||| 1 0.308774 8.48644e-07 1.62556e-13 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| be there in order to ||| 1 0.308774 8.48644e-07 4.44143e-10 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| be there in order ||| 0.5 0.308774 8.48644e-07 4.99834e-09 2.718 ||| 0-1 0-2 ||| 2 1.17835e+06 +en ||| be there in ||| 0.111111 0.308774 8.48644e-07 9.38479e-06 2.718 ||| 0-1 0-2 ||| 9 1.17835e+06 +en ||| be they in ||| 0.0645161 0.605812 1.69729e-06 2.73158e-05 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| be thinking ||| 0.027027 0.0455702 8.48644e-07 2.65138e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| be thrown in ||| 0.333333 0.605812 8.48644e-07 2.31816e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be tied down in ||| 1 0.605812 8.48644e-07 6.71861e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be to give ||| 0.0666667 0.0247351 8.48644e-07 3.08699e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| be to put into practice ||| 1 0.525896 8.48644e-07 4.14294e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be to put into ||| 1 0.525896 8.48644e-07 3.93068e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be to the ||| 0.0897436 0.0247351 5.94051e-06 3.12732e-05 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| be to ||| 0.0224048 0.0247351 2.54593e-05 0.000509404 2.718 ||| 0-1 ||| 1339 1.17835e+06 +en ||| be together with ||| 0.333333 0.0535436 8.48644e-07 1.26903e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be totally in ||| 0.333333 0.605812 8.48644e-07 3.61533e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be traced back to ||| 0.0714286 0.0247351 8.48644e-07 1.3705e-12 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| be trained there ||| 0.5 0.0117359 8.48644e-07 1.46326e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be transferred into a department ||| 0.5 0.525896 8.48644e-07 2.49676e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be transferred into a ||| 0.333333 0.525896 8.48644e-07 3.84116e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be transferred into ||| 0.428571 0.525896 2.54593e-06 8.66575e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be translated in ||| 0.2 0.605812 8.48644e-07 7.19718e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be translated into ||| 0.00970874 0.525896 8.48644e-07 3.45025e-09 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| be treated as ||| 0.00943396 0.066968 1.69729e-06 1.77014e-08 2.718 ||| 0-2 ||| 212 1.17835e+06 +en ||| be turned into ||| 0.0204082 0.525896 8.48644e-07 2.25069e-08 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| be two classes in future : an ||| 1 0.605812 8.48644e-07 4.56228e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be two classes in future : ||| 1 0.605812 8.48644e-07 1.02645e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be two classes in future ||| 1 0.605812 8.48644e-07 3.04767e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be two classes in ||| 1 0.605812 8.48644e-07 1.14746e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be unable to do in ||| 1 0.605812 8.48644e-07 6.97411e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| be under ||| 0.0113636 0.205566 8.48644e-07 0.000102478 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| be undermined by ||| 0.0434783 0.0468744 8.48644e-07 2.2201e-09 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| be underway ||| 1 0.268204 8.48644e-07 2.72568e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| be up and ||| 0.0555556 0.0010182 8.48644e-07 5.70304e-08 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| be up to ||| 0.029703 0.0247351 2.54593e-06 1.73732e-06 2.718 ||| 0-2 ||| 101 1.17835e+06 +en ||| be up ||| 0.00862069 0.0147069 8.48644e-07 1.25048e-05 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| be updated along ||| 0.5 0.155535 8.48644e-07 5.19004e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| be upon us in ||| 1 0.605812 8.48644e-07 5.7214e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| be upon ||| 0.285714 0.114601 1.69729e-06 1.60188e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| be used as a cudgel ||| 1 0.066968 8.48644e-07 2.4796e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be used as a ||| 0.00540541 0.066968 8.48644e-07 6.19901e-09 2.718 ||| 0-2 ||| 185 1.17835e+06 +en ||| be used as ||| 0.00817439 0.066968 2.54593e-06 1.39851e-07 2.718 ||| 0-2 ||| 367 1.17835e+06 +en ||| be used at ||| 0.285714 0.321886 1.69729e-06 3.11005e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| be used by ||| 0.00900901 0.0468744 8.48644e-07 6.61404e-08 2.718 ||| 0-2 ||| 111 1.17835e+06 +en ||| be used for ||| 0.00423729 0.0286209 1.69729e-06 8.94498e-08 2.718 ||| 0-2 ||| 472 1.17835e+06 +en ||| be used in ||| 0.0203488 0.605812 5.94051e-06 3.59022e-06 2.718 ||| 0-2 ||| 344 1.17835e+06 +en ||| be used on ||| 0.0666667 0.22993 8.48644e-07 6.45678e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| be used to ||| 0.002886 0.0247351 1.69729e-06 2.18534e-07 2.718 ||| 0-2 ||| 693 1.17835e+06 +en ||| be very different in ||| 0.333333 0.605812 8.48644e-07 6.41207e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| be very largely ||| 0.2 0.247761 8.48644e-07 5.34233e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| be victorious in ||| 0.333333 0.605812 8.48644e-07 5.85817e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be vigilant with ||| 0.333333 0.0535436 8.48644e-07 7.60655e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be visible in ||| 0.166667 0.605812 8.48644e-07 1.23858e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| be voted on in ||| 0.047619 0.605812 8.48644e-07 2.25663e-09 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| be voted ||| 0.00854701 0.122467 8.48644e-07 4.01767e-05 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| be voting ||| 0.00546448 0.0081975 8.48644e-07 1.12181e-06 2.718 ||| 0-1 ||| 183 1.17835e+06 +en ||| be when ||| 0.0416667 0.142731 8.48644e-07 0.000107891 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| be with ||| 0.015625 0.0535436 1.69729e-06 0.000211293 2.718 ||| 0-1 ||| 128 1.17835e+06 +en ||| be within ||| 0.0416667 0.369196 1.69729e-06 0.000200923 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| be worked out in ||| 0.142857 0.605812 8.48644e-07 1.39443e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| be worth in terms ||| 1 0.605812 8.48644e-07 6.6412e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| be worth in ||| 0.333333 0.605812 8.48644e-07 6.05065e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| be written in ||| 0.0909091 0.605812 8.48644e-07 4.18441e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| be written into ||| 0.142857 0.525896 1.69729e-06 2.00596e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| be ||| 8.48983e-05 0.0001288 1.27297e-05 4.15e-05 2.718 ||| 0-0 ||| 176682 1.17835e+06 +en ||| bear for ||| 0.111111 0.0286209 8.48644e-07 1.72233e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| bear in mind - ||| 0.1 0.605812 8.48644e-07 6.56855e-11 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| bear in mind ||| 0.00273723 0.605812 2.54593e-06 1.74135e-08 2.718 ||| 0-1 ||| 1096 1.17835e+06 +en ||| bear in ||| 0.0261153 0.605812 2.03675e-05 6.91286e-05 2.718 ||| 0-1 ||| 919 1.17835e+06 +en ||| bear on it ||| 0.2 0.22993 8.48644e-07 2.21087e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| bear on the ||| 0.0169492 0.22993 8.48644e-07 7.63244e-07 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| bear on them ||| 1 0.22993 8.48644e-07 3.33485e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| bear on ||| 0.0784314 0.22993 6.78915e-06 1.24323e-05 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| bear the brunt of ||| 0.0243902 0.0116562 8.48644e-07 4.01052e-13 2.718 ||| 0-3 ||| 41 1.17835e+06 +en ||| bear them in ||| 0.125 0.605812 8.48644e-07 1.85431e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| bear this out - is ||| 1 0.0013296 8.48644e-07 3.23357e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| bear this out - ||| 0.5 0.0013296 8.48644e-07 1.03173e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| bear this out ||| 0.0526316 0.0013296 8.48644e-07 2.73517e-10 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| bear this ||| 0.0108696 0.0013296 8.48644e-07 7.14069e-08 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| bearing down on ||| 0.333333 0.22993 8.48644e-07 2.58573e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| bearing in mind the ||| 0.0021322 0.605812 8.48644e-07 3.185e-10 2.718 ||| 0-1 ||| 469 1.17835e+06 +en ||| bearing in mind ||| 0.00484262 0.605812 5.09187e-06 5.18799e-09 2.718 ||| 0-1 ||| 1239 1.17835e+06 +en ||| bearing in ||| 0.0126953 0.605812 1.10324e-05 2.05954e-05 2.718 ||| 0-1 ||| 1024 1.17835e+06 +en ||| bearing ||| 0.000649773 0.0010604 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 1539 1.17835e+06 +en ||| beautifully in ||| 0.5 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| became a Member ||| 0.04 0.137638 8.48644e-07 5.79707e-09 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| became a member of ||| 0.1 0.0746473 8.48644e-07 2.55589e-11 2.718 ||| 0-0 0-3 ||| 10 1.17835e+06 +en ||| became a ||| 0.0153846 0.137638 2.54593e-06 1.12499e-05 2.718 ||| 0-0 ||| 195 1.17835e+06 +en ||| became abundantly clear in ||| 1 0.605812 8.48644e-07 1.47209e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| became available ||| 0.0769231 0.137638 8.48644e-07 8.07338e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| became aware ||| 0.0425532 0.137638 1.69729e-06 3.52528e-08 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| became clear that in ||| 0.5 0.605812 8.48644e-07 6.87858e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| became increasingly ||| 0.0588235 0.137638 8.48644e-07 1.46189e-08 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| became members ||| 0.0666667 0.137638 8.48644e-07 3.74355e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| became one ||| 0.142857 0.137638 8.48644e-07 1.05784e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| became very ||| 0.047619 0.137638 8.48644e-07 8.83097e-07 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| became ||| 0.0124444 0.137638 1.1881e-05 0.0002538 2.718 ||| 0-0 ||| 1125 1.17835e+06 +en ||| because , in ||| 0.00423729 0.605812 1.69729e-06 1.80959e-05 2.718 ||| 0-2 ||| 472 1.17835e+06 +en ||| because I ||| 0.000586166 0.0060084 8.48644e-07 7.98465e-07 2.718 ||| 0-1 ||| 1706 1.17835e+06 +en ||| because in ||| 0.00514139 0.605812 3.39458e-06 0.000151741 2.718 ||| 0-1 ||| 778 1.17835e+06 +en ||| because it is , to ||| 0.5 0.013507 8.48644e-07 1.971e-10 2.718 ||| 0-0 0-4 ||| 2 1.17835e+06 +en ||| because it is in the ||| 0.1 0.605812 8.48644e-07 5.19204e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| because it is in ||| 0.0392157 0.605812 1.69729e-06 8.45722e-08 2.718 ||| 0-3 ||| 51 1.17835e+06 +en ||| because it is irreparable , is ||| 0.5 0.0022788 8.48644e-07 1.53838e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| because it is irreparable , ||| 0.5 0.0022788 8.48644e-07 4.90852e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| because it is irreparable ||| 0.5 0.0022788 8.48644e-07 4.11599e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| because it is ||| 0.000309885 0.0022788 8.48644e-07 5.87999e-08 2.718 ||| 0-0 ||| 3227 1.17835e+06 +en ||| because it will help bring about more ||| 1 0.0222258 8.48644e-07 2.86172e-21 2.718 ||| 0-5 0-6 ||| 1 1.17835e+06 +en ||| because it would then be ISO in ||| 1 0.605812 8.48644e-07 1.84874e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| because it ||| 0.0002145 0.0022788 8.48644e-07 1.87613e-06 2.718 ||| 0-0 ||| 4662 1.17835e+06 +en ||| because of the ||| 0.000883652 0.0022788 2.54593e-06 3.52107e-07 2.718 ||| 0-0 ||| 3395 1.17835e+06 +en ||| because of ||| 0.00256861 0.0022788 1.61242e-05 5.7354e-06 2.718 ||| 0-0 ||| 7397 1.17835e+06 +en ||| because one ||| 0.00507614 0.0022788 8.48644e-07 4.39724e-07 2.718 ||| 0-0 ||| 197 1.17835e+06 +en ||| because that is ||| 0.00189394 0.0022788 8.48644e-07 5.56204e-08 2.718 ||| 0-0 ||| 528 1.17835e+06 +en ||| because that ||| 0.00193424 0.0022788 1.69729e-06 1.77468e-06 2.718 ||| 0-0 ||| 1034 1.17835e+06 +en ||| because the ||| 0.00051553 0.0022788 3.39458e-06 6.47683e-06 2.718 ||| 0-0 ||| 7759 1.17835e+06 +en ||| because these are ||| 0.00769231 0.0022788 8.48644e-07 1.66011e-09 2.718 ||| 0-0 ||| 130 1.17835e+06 +en ||| because these ||| 0.00215054 0.0022788 8.48644e-07 1.09414e-07 2.718 ||| 0-0 ||| 465 1.17835e+06 +en ||| because they are living in ||| 1 0.605812 8.48644e-07 6.29739e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| because this is in the ||| 0.5 0.605812 8.48644e-07 1.88649e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| because this is in ||| 0.333333 0.605812 8.48644e-07 3.07287e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| because unfortunately it is part of ||| 1 0.0116562 8.48644e-07 1.84311e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| because we are on the ||| 0.2 0.22993 8.48644e-07 2.88573e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| because we are on ||| 0.2 0.22993 8.48644e-07 4.70052e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| because we think it is ||| 0.05 0.0022788 8.48644e-07 2.55324e-13 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| because we think it ||| 0.0277778 0.0022788 8.48644e-07 8.14662e-12 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| because we think ||| 0.0078125 0.0022788 8.48644e-07 4.58108e-10 2.718 ||| 0-0 ||| 128 1.17835e+06 +en ||| because we ||| 0.000864678 0.0022788 1.69729e-06 1.19767e-06 2.718 ||| 0-0 ||| 2313 1.17835e+06 +en ||| because when ||| 0.00657895 0.142731 8.48644e-07 1.95625e-06 2.718 ||| 0-1 ||| 152 1.17835e+06 +en ||| because ||| 0.000977863 0.0022788 7.04375e-05 0.0001055 2.718 ||| 0-0 ||| 84879 1.17835e+06 +en ||| because – as ||| 0.0909091 0.066968 8.48644e-07 2.32295e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| become , ||| 0.0128205 0.219193 8.48644e-07 0.00045597 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| become Members in ||| 1 0.605812 8.48644e-07 1.94598e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| become a component of ||| 0.5 0.0116562 8.48644e-07 2.60773e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| become a member of ||| 0.00769231 0.115424 8.48644e-07 3.85045e-10 2.718 ||| 0-0 0-3 ||| 130 1.17835e+06 +en ||| become a problem ||| 0.111111 0.219193 8.48644e-07 3.8116e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| become a ||| 0.00287947 0.219193 5.94051e-06 0.00016948 2.718 ||| 0-0 ||| 2431 1.17835e+06 +en ||| become active , ||| 0.333333 0.219193 8.48644e-07 1.83756e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| become active ||| 0.0357143 0.219193 8.48644e-07 1.54087e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| become apparent in ||| 0.142857 0.605812 8.48644e-07 4.69674e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| become available ||| 0.015873 0.219193 8.48644e-07 1.21626e-06 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| become aware ||| 0.0183486 0.219193 1.69729e-06 5.31084e-07 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| become better at making ||| 0.333333 0.321886 8.48644e-07 7.46977e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| become better at ||| 0.1 0.321886 8.48644e-07 1.94171e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| become clear for ||| 0.5 0.0286209 8.48644e-07 1.09425e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| become culturally ||| 0.5 0.219193 8.48644e-07 5.3529e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| become entangled ||| 0.0833333 0.219193 8.48644e-07 4.20585e-09 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| become established ||| 0.025641 0.219193 8.48644e-07 5.72378e-07 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| become familiar in ||| 1 0.605812 8.48644e-07 2.04493e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| become fully involved in ||| 0.0909091 0.605812 8.48644e-07 5.1735e-12 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| become further involved in ||| 0.5 0.605812 8.48644e-07 2.2049e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| become imperative ||| 0.2 0.219193 8.48644e-07 4.39703e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| become involved in ||| 0.0125786 0.605812 1.69729e-06 4.56217e-08 2.718 ||| 0-2 ||| 159 1.17835e+06 +en ||| become members at ||| 1 0.321886 8.48644e-07 1.68571e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| become members of ||| 0.0126582 0.0116562 8.48644e-07 5.74673e-10 2.718 ||| 0-2 ||| 79 1.17835e+06 +en ||| become more ||| 0.0013947 0.219193 8.48644e-07 8.73173e-06 2.718 ||| 0-0 ||| 717 1.17835e+06 +en ||| become no more ||| 0.2 0.219193 8.48644e-07 6.79678e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| become no ||| 0.1 0.219193 8.48644e-07 2.97621e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| become obvious ||| 0.0285714 0.219193 8.48644e-07 1.5944e-07 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| become part of ||| 0.0248447 0.219193 3.39458e-06 2.47812e-07 2.718 ||| 0-0 ||| 161 1.17835e+06 +en ||| become part ||| 0.0153846 0.219193 2.54593e-06 4.55838e-06 2.718 ||| 0-0 ||| 195 1.17835e+06 +en ||| become quite significant ||| 0.25 0.219193 8.48644e-07 8.59131e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| become quite ||| 0.037037 0.219193 8.48644e-07 1.49155e-06 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| become the ||| 0.00116414 0.219193 8.48644e-07 0.000234732 2.718 ||| 0-0 ||| 859 1.17835e+06 +en ||| become too big for ||| 1 0.0286209 8.48644e-07 2.10709e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| become ||| 0.0158746 0.219193 0.000136632 0.0038235 2.718 ||| 0-0 ||| 10142 1.17835e+06 +en ||| becomes a ||| 0.00511509 0.162791 1.69729e-06 1.68926e-05 2.718 ||| 0-0 ||| 391 1.17835e+06 +en ||| becomes bogged down in ||| 0.2 0.605812 8.48644e-07 8.98766e-14 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| becomes clear at ||| 1 0.321886 8.48644e-07 5.45983e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| becomes clear ||| 0.0151515 0.162791 8.48644e-07 1.26868e-07 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| becomes less ||| 0.0555556 0.162791 8.48644e-07 6.48632e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| becomes more common ||| 0.333333 0.162791 8.48644e-07 2.01043e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| becomes more ||| 0.0114943 0.162791 8.48644e-07 8.70318e-07 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| becomes part ||| 0.04 0.162791 8.48644e-07 4.54347e-07 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| becomes the ||| 0.0114943 0.162791 8.48644e-07 2.33964e-05 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| becomes ||| 0.0145543 0.162791 2.03675e-05 0.0003811 2.718 ||| 0-0 ||| 1649 1.17835e+06 +en ||| becoming a ||| 0.00164745 0.163705 8.48644e-07 3.39004e-05 2.718 ||| 0-0 ||| 607 1.17835e+06 +en ||| becoming active in ||| 0.142857 0.605812 8.48644e-07 1.91495e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| becoming frail ||| 0.5 0.163705 8.48644e-07 5.3536e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| becoming heavily ||| 0.142857 0.163705 8.48644e-07 1.68256e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| becoming increasingly ||| 0.00480769 0.163705 1.69729e-06 4.40525e-08 2.718 ||| 0-0 ||| 416 1.17835e+06 +en ||| becoming involved in ||| 0.0555556 0.605812 1.69729e-06 1.64315e-08 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| becoming involved with ||| 0.0588235 0.0535436 8.48644e-07 4.14857e-10 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| becoming marginalised in ||| 1 0.605812 8.48644e-07 1.18793e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| becoming meaningless in ||| 1 0.605812 8.48644e-07 2.23331e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| becoming more ||| 0.00381679 0.163705 8.48644e-07 1.74657e-06 2.718 ||| 0-0 ||| 262 1.17835e+06 +en ||| becoming part ||| 0.03125 0.163705 8.48644e-07 9.11795e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| becoming ||| 0.014742 0.163705 3.56431e-05 0.0007648 2.718 ||| 0-0 ||| 2849 1.17835e+06 +en ||| bed of ||| 0.25 0.0116562 8.48644e-07 4.36384e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| beds in ||| 0.2 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| been , in ||| 0.111111 0.605812 8.48644e-07 0.000183888 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| been a way of life in ||| 0.5 0.605812 8.48644e-07 1.21347e-12 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| been able to avoid ||| 0.111111 0.0247351 8.48644e-07 2.76622e-12 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| been able to fall back on ||| 1 0.22993 8.48644e-07 1.32426e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| been able to ||| 0.00073046 0.0247351 8.48644e-07 7.83631e-08 2.718 ||| 0-2 ||| 1369 1.17835e+06 +en ||| been achieved in ||| 0.0952381 0.605812 1.69729e-06 2.57973e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| been achieved on ||| 0.5 0.22993 1.69729e-06 4.63948e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| been achieved within ||| 0.333333 0.369196 8.48644e-07 6.19356e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been active as ||| 0.5 0.066968 8.48644e-07 2.42063e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been added to ||| 0.166667 0.0247351 1.69729e-06 6.69216e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| been admitted in ||| 0.5 0.605812 8.48644e-07 1.27984e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been against ||| 0.0384615 0.153982 8.48644e-07 1.93637e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| been agreed in ||| 0.0833333 0.605812 8.48644e-07 1.20429e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| been along ||| 0.5 0.155535 8.48644e-07 2.65633e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| been applied to ||| 0.153846 0.0247351 1.69729e-06 1.0165e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| been approved by ||| 0.0105263 0.0468744 8.48644e-07 1.2982e-09 2.718 ||| 0-2 ||| 95 1.17835e+06 +en ||| been around long enough ||| 1 0.159384 8.48644e-07 2.15376e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| been around long ||| 1 0.159384 8.48644e-07 1.30373e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| been around ||| 0.108108 0.159384 3.39458e-06 3.85377e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| been at ||| 0.0584416 0.321886 7.6378e-06 0.000133575 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| been authorised in ||| 0.25 0.605812 8.48644e-07 1.11023e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| been authorized to ||| 0.333333 0.0247351 8.48644e-07 4.69296e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been binding in ||| 0.2 0.605812 8.48644e-07 2.71388e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| been blown in ||| 1 0.605812 8.48644e-07 7.7099e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been broken down at ||| 1 0.321886 8.48644e-07 2.78813e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| been brought about ||| 0.111111 0.0401564 8.48644e-07 2.67973e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| been brought into focus ||| 1 0.525896 8.48644e-07 1.60201e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been brought into ||| 0.0714286 0.525896 8.48644e-07 2.06978e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| been built up over ||| 0.166667 0.157937 8.48644e-07 2.26808e-12 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| been by ||| 0.0714286 0.0468744 8.48644e-07 2.84069e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| been carried out in ||| 0.25 0.605812 1.69729e-06 1.74062e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| been carried out on ||| 0.0666667 0.22993 8.48644e-07 3.13039e-10 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| been caused in ||| 1 0.605812 8.48644e-07 1.30914e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been characterised by ||| 0.0625 0.0468744 8.48644e-07 4.80077e-10 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| been chosen in ||| 1 0.605812 8.48644e-07 3.71617e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been coming ||| 0.0769231 0.0026592 8.48644e-07 4.30757e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| been completed concerning ||| 1 0.0888235 8.48644e-07 1.23831e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been confirmed by ||| 0.0277778 0.0468744 8.48644e-07 5.51094e-10 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| been consolidated in ||| 0.2 0.605812 8.48644e-07 8.94348e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| been coping with ||| 1 0.0535436 8.48644e-07 9.73285e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been covered by ||| 0.047619 0.0468744 8.48644e-07 2.03393e-09 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| been covered in ||| 0.0625 0.605812 8.48644e-07 1.10406e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| been created in ||| 0.1 0.605812 8.48644e-07 1.62525e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| been dealt with ||| 0.0114943 0.0535436 8.48644e-07 4.07612e-09 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| been deployed on ||| 0.5 0.22993 8.48644e-07 3.68829e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been disputed by nobody here ||| 1 0.0468744 8.48644e-07 1.58525e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been disputed by nobody ||| 1 0.0468744 8.48644e-07 7.81758e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been disputed by ||| 0.25 0.0468744 8.48644e-07 9.09021e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| been doing a great deal in ||| 1 0.605812 8.48644e-07 4.1869e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| been done in an ||| 0.5 0.605812 8.48644e-07 3.12526e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been done in ||| 0.185185 0.605812 4.24322e-06 7.03143e-07 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| been drafted by ||| 0.125 0.0468744 8.48644e-07 7.98234e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| been dug in ||| 1 0.605812 8.48644e-07 6.16792e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been emphasising ||| 0.0625 0.239496 8.48644e-07 5.1791e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| been emphasized , ||| 0.142857 0.111304 8.48644e-07 1.73224e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| been emphasized ||| 0.111111 0.111304 8.48644e-07 1.45255e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| been enacted in the form ||| 1 0.605812 8.48644e-07 2.15457e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been enacted in the ||| 1 0.605812 8.48644e-07 4.73324e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been enacted in ||| 1 0.605812 8.48644e-07 7.7099e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been entered for ||| 1 0.0803437 8.48644e-07 7.26872e-09 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| been established by ||| 0.0666667 0.0468744 8.48644e-07 4.25251e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| been established in ||| 0.1 0.605812 8.48644e-07 2.30834e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| been evident in ||| 0.25 0.605812 8.48644e-07 2.8835e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| been evident to a ||| 0.5 0.0247351 8.48644e-07 7.77992e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been evident to ||| 0.5 0.0247351 8.48644e-07 1.75517e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been experienced in ||| 1 0.605812 8.48644e-07 3.77785e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been expressed , on ||| 1 0.22993 8.48644e-07 3.21452e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| been faced with in ||| 0.5 0.605812 8.48644e-07 6.2415e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| been fixed on ||| 0.25 0.22993 8.48644e-07 5.29672e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| been followed to the ||| 0.5 0.0247351 8.48644e-07 4.12573e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been followed to ||| 0.5 0.0247351 8.48644e-07 6.72032e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been for ||| 0.0300752 0.0286209 3.39458e-06 3.84182e-05 2.718 ||| 0-1 ||| 133 1.17835e+06 +en ||| been forced to flee , either inside ||| 1 0.188717 8.48644e-07 1.48666e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| been formulated on the ||| 0.333333 0.22993 8.48644e-07 1.65141e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been formulated on ||| 0.333333 0.22993 8.48644e-07 2.68996e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been found to ||| 0.142857 0.0247351 8.48644e-07 2.05364e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| been fulfilled in ||| 0.5 0.605812 8.48644e-07 1.77328e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been given for ||| 0.333333 0.0286209 8.48644e-07 2.63664e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been given in ||| 0.285714 0.605812 1.69729e-06 1.05826e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| been given scope ||| 1 0.0546585 8.48644e-07 3.86485e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| been given to them within ||| 1 0.369196 8.48644e-07 6.05592e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| been given ||| 0.0238095 0.0546585 6.78915e-06 3.87648e-06 2.718 ||| 0-1 ||| 336 1.17835e+06 +en ||| been going on ||| 0.0649351 0.22993 4.24322e-06 2.37326e-07 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| been going through ||| 0.0833333 0.0366102 8.48644e-07 2.68737e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| been hanging in someone ' ||| 0.333333 0.605812 8.48644e-07 2.60749e-15 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been hanging in someone ||| 0.333333 0.605812 8.48644e-07 7.59116e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been hanging in ||| 0.333333 0.605812 8.48644e-07 1.38778e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been having ||| 0.0625 0.0065553 8.48644e-07 2.56784e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| been held in ||| 0.181818 0.605812 1.69729e-06 3.93359e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| been identified at ||| 0.333333 0.321886 8.48644e-07 5.14263e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been identified during ||| 0.333333 0.226251 8.48644e-07 3.71703e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been implemented as ||| 0.333333 0.066968 8.48644e-07 5.27372e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been implemented in ||| 0.047619 0.605812 8.48644e-07 1.35386e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| been imposed in ||| 1 0.605812 8.48644e-07 8.60425e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been in existence for a long time ||| 1 0.605812 8.48644e-07 2.01601e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| been in existence for a long ||| 0.5 0.605812 8.48644e-07 1.228e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| been in existence for a ||| 0.5 0.605812 8.48644e-07 3.62992e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| been in existence for ||| 0.0555556 0.605812 8.48644e-07 8.18917e-10 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| been in existence ||| 0.0333333 0.605812 8.48644e-07 1.06551e-07 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| been in force ||| 0.0102041 0.605812 8.48644e-07 2.62445e-07 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| been in place in ||| 0.111111 0.605812 8.48644e-07 4.9673e-08 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| been in place ||| 0.0307692 0.605812 1.69729e-06 2.32068e-06 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| been in possession ||| 0.333333 0.605812 8.48644e-07 2.22045e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| been in the ||| 0.0193548 0.605812 2.54593e-06 9.46649e-05 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| been in vain . ||| 0.0333333 0.605812 8.48644e-07 8.40718e-12 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| been in vain ||| 0.0232558 0.605812 8.48644e-07 2.77556e-09 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| been in ||| 0.125137 0.605812 9.67454e-05 0.00154198 2.718 ||| 0-1 ||| 911 1.17835e+06 +en ||| been incarcerated in ||| 0.25 0.605812 8.48644e-07 1.69618e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| been included as signatories ||| 0.5 0.066968 8.48644e-07 1.01522e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been included as ||| 0.111111 0.066968 8.48644e-07 5.64012e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| been included in the ||| 0.0135135 0.605812 8.48644e-07 8.88903e-09 2.718 ||| 0-2 ||| 74 1.17835e+06 +en ||| been included in ||| 0.032967 0.605812 2.54593e-06 1.44792e-07 2.718 ||| 0-2 ||| 91 1.17835e+06 +en ||| been incorporated into ||| 0.0192308 0.525896 8.48644e-07 1.4932e-09 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| been indicted in ||| 0.5 0.605812 8.48644e-07 1.69618e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been installed for ||| 1 0.0286209 8.48644e-07 2.49718e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been introduced and ||| 0.25 0.0010182 8.48644e-07 2.85e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| been introduced there ||| 0.25 0.0117359 8.48644e-07 3.46374e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| been involved in an uprising , not ||| 1 0.605812 8.48644e-07 2.12286e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been involved in an uprising , ||| 1 0.605812 8.48644e-07 6.21791e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been involved in an uprising ||| 1 0.605812 8.48644e-07 5.21397e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been involved in an ||| 0.333333 0.605812 8.48644e-07 2.36999e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been involved in ||| 0.00495049 0.605812 8.48644e-07 5.33216e-07 2.718 ||| 0-2 ||| 202 1.17835e+06 +en ||| been killed in ||| 0.037037 0.605812 8.48644e-07 3.66991e-08 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| been laid down in ||| 0.3 0.605812 2.54593e-06 1.17334e-10 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| been launched for ||| 1 0.0746653 8.48644e-07 8.18307e-09 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| been leading in ||| 1 0.605812 8.48644e-07 1.34306e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been learnt in ||| 1 0.605812 8.48644e-07 1.5574e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been led into ||| 1 0.525896 8.48644e-07 6.78594e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been left in ||| 0.125 0.605812 1.69729e-06 2.9128e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| been left out of ||| 0.333333 0.0116562 8.48644e-07 3.29486e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| been lifted when amounts ||| 0.333333 0.142731 8.48644e-07 1.59958e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been lifted when ||| 0.333333 0.142731 8.48644e-07 2.64394e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been living in ||| 0.0666667 0.605812 8.48644e-07 1.29218e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| been looking for ||| 0.0625 0.0286209 8.48644e-07 4.06464e-09 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| been made , with ||| 0.25 0.0535436 8.48644e-07 9.72564e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| been made - in ||| 0.5 0.605812 8.48644e-07 1.21844e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| been made for consumers ||| 1 0.0286209 8.48644e-07 3.00989e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been made for ||| 0.04 0.0286209 8.48644e-07 8.04784e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| been made in ||| 0.1875 0.605812 1.01837e-05 3.23014e-06 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| been made on ||| 0.0588235 0.22993 8.48644e-07 5.8092e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| been made to ||| 0.0625 0.0247351 2.54593e-06 1.96616e-07 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| been made under ||| 1 0.205566 8.48644e-07 3.95537e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been made ||| 0.00472255 0.0033766 3.39458e-06 4.0204e-07 2.718 ||| 0-1 ||| 847 1.17835e+06 +en ||| been making to ||| 0.2 0.0247351 8.48644e-07 3.61076e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| been making under ||| 1 0.205566 8.48644e-07 7.26384e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been managed in ||| 1 0.605812 8.48644e-07 8.6505e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been mentioned in ||| 0.0232558 0.605812 8.48644e-07 1.36465e-07 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| been more and ||| 0.25 0.0042952 8.48644e-07 1.39157e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| been more ||| 0.00595238 0.0042952 1.69729e-06 1.11095e-06 2.718 ||| 0-1 ||| 336 1.17835e+06 +en ||| been murdered over ||| 0.0833333 0.157937 8.48644e-07 6.289e-11 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| been my guests here on ||| 1 0.22993 8.48644e-07 1.55506e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| been obscured by ||| 0.333333 0.0468744 8.48644e-07 3.12476e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been on the ||| 0.00990099 0.22993 8.48644e-07 1.70249e-05 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| been on ||| 0.0742857 0.22993 1.10324e-05 0.000277315 2.718 ||| 0-1 ||| 175 1.17835e+06 +en ||| been out ||| 0.0909091 0.0120599 8.48644e-07 1.83823e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| been over since ||| 1 0.157937 8.48644e-07 1.81578e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| been over ||| 0.0588235 0.157937 8.48644e-07 1.33808e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| been party to ||| 0.166667 0.0247351 8.48644e-07 6.41997e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| been passed on ||| 0.2 0.22993 8.48644e-07 1.98558e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| been passed over in ||| 1 0.381874 8.48644e-07 4.42418e-10 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| been performing at ||| 1 0.321886 8.48644e-07 1.05524e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been placed in ||| 0.047619 0.605812 8.48644e-07 1.93056e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| been placed on ||| 0.105263 0.22993 1.69729e-06 3.47199e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| been poorly prepared in ||| 0.5 0.605812 8.48644e-07 5.74865e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| been printed in ||| 0.5 0.605812 8.48644e-07 9.40607e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been produced of Parliament ||| 1 0.0116562 8.48644e-07 2.76541e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been produced of ||| 1 0.0116562 8.48644e-07 4.81778e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been provided in ||| 0.2 0.605812 8.48644e-07 3.53422e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| been put forward ||| 0.0149254 0.0008492 8.48644e-07 4.27089e-11 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| been put in ||| 0.0816327 0.605812 3.39458e-06 1.70019e-06 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| been put on ||| 0.0333333 0.22993 8.48644e-07 3.05768e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| been put to flight by ||| 1 0.0468744 8.48644e-07 2.1987e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| been raised before in ||| 1 0.605812 8.48644e-07 4.44268e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| been reached at ||| 0.333333 0.321886 8.48644e-07 1.44261e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been reached in ||| 0.0769231 0.605812 8.48644e-07 1.66534e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| been recorded in ||| 0.166667 0.605812 8.48644e-07 3.22274e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| been recorded over ||| 1 0.157937 8.48644e-07 2.7966e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been reduced by ||| 0.0714286 0.0468744 8.48644e-07 1.32944e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| been reiterating in ||| 1 0.605812 8.48644e-07 3.85495e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been rejected in ||| 0.047619 0.605812 8.48644e-07 2.39007e-08 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| been reopened despite ||| 1 0.0012296 8.48644e-07 1.07689e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been reopened within ||| 1 0.369196 8.48644e-07 9.25518e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been reported in ||| 0.25 0.605812 8.48644e-07 4.76472e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| been required in ||| 0.5 0.605812 8.48644e-07 2.44712e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been responsible for ||| 0.0140845 0.0286209 8.48644e-07 5.68205e-09 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| been restored on ||| 1 0.22993 8.48644e-07 4.79755e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been reviewed in ||| 0.5 0.605812 8.48644e-07 1.04855e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been reworded along ||| 1 0.155535 8.48644e-07 1.85943e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been right as we have acted in ||| 1 0.605812 8.48644e-07 2.67281e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| been riots on ||| 1 0.22993 8.48644e-07 1.94121e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been said by ||| 0.0222222 0.0468744 8.48644e-07 1.16838e-08 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| been said on ||| 0.2 0.22993 8.48644e-07 1.1406e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| been scheduled in ||| 1 0.605812 8.48644e-07 2.60595e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been seen in ||| 0.111111 0.605812 8.48644e-07 3.24587e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| been set in ||| 0.133333 0.605812 1.69729e-06 9.01133e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| been set up in such ||| 0.111111 0.605812 8.48644e-07 6.35838e-12 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| been set up in ||| 0.166667 0.605812 1.69729e-06 3.07331e-09 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| been sighted in ||| 1 0.605812 8.48644e-07 1.07939e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been sited in ||| 1 0.605812 8.48644e-07 1.07939e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been slow to ||| 0.0625 0.0247351 8.48644e-07 8.82277e-10 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| been smashed over ||| 1 0.157937 8.48644e-07 5.35234e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been solved at ||| 0.5 0.321886 8.48644e-07 1.44261e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been sought in ||| 1 0.605812 8.48644e-07 4.99601e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been speaking at ||| 1 0.321886 8.48644e-07 1.53344e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been stated in ||| 0.333333 0.605812 8.48644e-07 9.60653e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been subject to ||| 0.00943396 0.0247351 8.48644e-07 5.06652e-08 2.718 ||| 0-2 ||| 106 1.17835e+06 +en ||| been successful in ||| 0.0172414 0.605812 8.48644e-07 8.49631e-08 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| been tabled , in ||| 0.666667 0.605812 1.69729e-06 1.50237e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| been taken and ||| 0.0588235 0.0042106 8.48644e-07 3.72674e-09 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| been taken during ||| 1 0.226251 8.48644e-07 8.80019e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been taken in ||| 0.125 0.605812 1.69729e-06 1.40551e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| been taken into account ||| 0.0227273 0.525896 8.48644e-07 1.93714e-11 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| been taken into ||| 0.0181818 0.525896 8.48644e-07 6.73789e-08 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| been taken up in ||| 0.1 0.605812 8.48644e-07 4.79351e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| been taken up over ||| 1 0.157937 8.48644e-07 4.15966e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| been taken within ||| 1 0.369196 8.48644e-07 3.37444e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been taken ||| 0.00660793 0.0042106 2.54593e-06 2.97523e-07 2.718 ||| 0-1 ||| 454 1.17835e+06 +en ||| been taking in this ||| 1 0.605812 8.48644e-07 4.23442e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been taking in ||| 0.5 0.605812 8.48644e-07 6.55341e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been taking ||| 0.0232558 0.0153333 8.48644e-07 5.7501e-07 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| been the case for ||| 0.0833333 0.0286209 8.48644e-07 2.52342e-09 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| been the case in ||| 0.0930233 0.605812 3.39458e-06 1.01282e-07 2.718 ||| 0-3 ||| 43 1.17835e+06 +en ||| been there myself and was impressed ||| 1 0.0117359 8.48644e-07 7.31228e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| been there myself and was ||| 1 0.0117359 8.48644e-07 2.28509e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| been there myself and ||| 1 0.0117359 8.48644e-07 7.29361e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| been there myself ||| 1 0.0117359 8.48644e-07 5.82282e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| been there ||| 0.0120482 0.0117359 8.48644e-07 3.74458e-06 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| been through ||| 0.0144928 0.0366102 8.48644e-07 3.14018e-06 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| been thrown into ||| 0.5 0.525896 8.48644e-07 2.04761e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been to return them to ||| 1 0.0247351 8.48644e-07 1.48995e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| been to ||| 0.017284 0.0247351 5.94051e-06 9.38592e-05 2.718 ||| 0-1 ||| 405 1.17835e+06 +en ||| been too long in ||| 0.333333 0.605812 8.48644e-07 7.09968e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| been touched upon , ||| 0.25 0.114601 8.48644e-07 2.78066e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| been touched upon ||| 0.0526316 0.114601 8.48644e-07 2.3317e-11 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| been translated into ||| 0.0666667 0.525896 8.48644e-07 6.3572e-10 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| been turned into ||| 0.333333 0.525896 8.48644e-07 4.14696e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| been under in order to try ||| 0.5 0.605812 8.48644e-07 4.03228e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been under in order to ||| 0.5 0.605812 8.48644e-07 2.61836e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been under in order ||| 0.5 0.605812 8.48644e-07 2.94667e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been under in ||| 0.5 0.605812 8.48644e-07 5.53262e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| been under ||| 0.0111111 0.205566 8.48644e-07 1.88818e-05 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| been underspent in ||| 1 0.605812 8.48644e-07 6.16792e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been until ||| 0.0625 0.0092136 8.48644e-07 1.95343e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| been used in ||| 0.2 0.605812 4.24322e-06 6.61509e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| been used to decide on ||| 0.5 0.22993 8.48644e-07 6.7762e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| been using ||| 0.0285714 0.0119063 8.48644e-07 2.13709e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| been very positively received in Turkey ||| 1 0.605812 8.48644e-07 2.65259e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| been very positively received in ||| 1 0.605812 8.48644e-07 4.51889e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| been voiced over ||| 0.2 0.157937 8.48644e-07 1.20428e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| been waged in ||| 1 0.605812 8.48644e-07 1.21816e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| been when it came to ||| 0.333333 0.142731 8.48644e-07 3.95802e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| been when it came ||| 0.333333 0.142731 8.48644e-07 4.45431e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| been when it ||| 0.25 0.142731 8.48644e-07 3.53517e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| been when ||| 0.166667 0.142731 8.48644e-07 1.98793e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| been where ||| 0.333333 0.247783 8.48644e-07 2.84386e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| been with ||| 0.0444444 0.0535436 1.69729e-06 3.89314e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| been within ||| 0.25 0.369196 8.48644e-07 3.70207e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| been working on ||| 0.0113636 0.22993 8.48644e-07 5.28008e-08 2.718 ||| 0-2 ||| 88 1.17835e+06 +en ||| been worrying me a great deal . ||| 1 6.3e-05 8.48644e-07 1.3491e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| befallen ||| 0.030303 0.14 8.48644e-07 4.8e-06 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| before , at a ||| 0.2 0.321886 8.48644e-07 5.28844e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| before , at ||| 0.166667 0.321886 8.48644e-07 1.19308e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| before , in ||| 0.0540541 0.605812 1.69729e-06 1.37729e-05 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| before , with ||| 0.125 0.0535436 8.48644e-07 3.47734e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| before , ||| 0.00117509 0.0175291 8.48644e-07 4.06539e-05 2.718 ||| 0-0 ||| 851 1.17835e+06 +en ||| before Uzbekistan ||| 1 0.0175291 8.48644e-07 3.7499e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| before a ||| 0.00431034 0.0175291 8.48644e-07 1.51107e-05 2.718 ||| 0-0 ||| 232 1.17835e+06 +en ||| before being built in ||| 0.5 0.605812 8.48644e-07 1.63347e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| before convincing ourselves ||| 1 0.0175291 8.48644e-07 6.61486e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| before convincing ||| 1 0.0175291 8.48644e-07 2.07949e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| before he ||| 0.0263158 0.0175291 1.69729e-06 2.97503e-07 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| before him ||| 0.0416667 0.0175291 8.48644e-07 1.09293e-07 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| before in the ||| 0.0333333 0.605812 8.48644e-07 7.09023e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| before in ||| 0.0927835 0.605812 7.6378e-06 0.000115491 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| before it , ||| 0.05 0.0175291 8.48644e-07 7.22957e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| before it begins ||| 0.0909091 0.0175291 8.48644e-07 5.21357e-11 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| before it can complete ||| 1 0.0080472 8.48644e-07 1.46889e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| before it can ||| 0.0232558 0.0080472 8.48644e-07 2.05153e-09 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| before it ||| 0.012963 0.0175291 5.94051e-06 6.06229e-06 2.718 ||| 0-0 ||| 540 1.17835e+06 +en ||| before me , I also believe ||| 1 0.0175291 8.48644e-07 2.72117e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| before me , I also ||| 1 0.0175291 8.48644e-07 8.74131e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| before me , I ||| 0.1 0.0175291 8.48644e-07 1.73143e-10 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| before me , ||| 0.0140845 0.0175291 8.48644e-07 2.44777e-08 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| before me ||| 0.00757576 0.0175291 1.69729e-06 2.05256e-07 2.718 ||| 0-0 ||| 264 1.17835e+06 +en ||| before of ||| 0.111111 0.0175291 8.48644e-07 1.85327e-05 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| before one is ||| 0.333333 0.0175291 8.48644e-07 4.45317e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| before one ||| 0.0909091 0.0175291 8.48644e-07 1.42087e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| before seen in ||| 0.25 0.605812 8.48644e-07 2.4311e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| before taking action against ||| 0.2 0.153982 8.48644e-07 1.86332e-13 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| before the end of ||| 0.00120337 0.0175291 8.48644e-07 4.95037e-10 2.718 ||| 0-0 ||| 831 1.17835e+06 +en ||| before the end ||| 0.00139665 0.0175291 8.48644e-07 9.10597e-09 2.718 ||| 0-0 ||| 716 1.17835e+06 +en ||| before the generation of ||| 0.5 0.0116562 8.48644e-07 3.68515e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| before the industry will ||| 1 0.009348 8.48644e-07 1.11605e-12 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| before the industry ||| 0.333333 0.009348 8.48644e-07 1.29006e-10 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| before the judicial authorities ||| 0.5 0.0011669 8.48644e-07 6.20312e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| before the judicial ||| 0.5 0.0011669 8.48644e-07 9.314e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| before the ||| 0.000981997 0.0175291 5.09187e-06 2.09285e-05 2.718 ||| 0-0 ||| 6110 1.17835e+06 +en ||| before they ||| 0.00526316 0.0175291 1.69729e-06 1.1127e-06 2.718 ||| 0-0 ||| 380 1.17835e+06 +en ||| before too ||| 0.111111 0.0175291 8.48644e-07 4.63965e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| before us , ||| 0.00273224 0.0175291 8.48644e-07 1.17173e-07 2.718 ||| 0-0 ||| 366 1.17835e+06 +en ||| before us at ||| 0.2 0.321886 2.54593e-06 2.8835e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| before us in ||| 0.15 0.605812 5.09187e-06 3.32869e-07 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| before us there ||| 1 0.0175291 8.48644e-07 3.01179e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| before us ||| 0.00473071 0.0175291 1.10324e-05 9.82542e-07 2.718 ||| 0-0 ||| 2748 1.17835e+06 +en ||| before we are able ||| 1 0.0175291 8.48644e-07 4.90239e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| before we are ||| 0.03125 0.0175291 8.48644e-07 5.87183e-08 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| before we finally ||| 0.142857 0.0175291 8.48644e-07 4.55499e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| before we ||| 0.00572519 0.0175291 5.09187e-06 3.87e-06 2.718 ||| 0-0 ||| 1048 1.17835e+06 +en ||| before what is left ||| 0.5 0.0175291 8.48644e-07 2.8318e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| before what is ||| 0.5 0.0175291 8.48644e-07 1.4991e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| before what ||| 0.111111 0.0175291 8.48644e-07 4.78317e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| before yesterday , and where it is ||| 0.5 0.247783 8.48644e-07 4.22052e-17 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| before yesterday , and where it ||| 0.5 0.247783 8.48644e-07 1.34664e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| before yesterday , and where ||| 0.5 0.247783 8.48644e-07 7.57254e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| before you ||| 0.00231481 0.0175291 8.48644e-07 1.10066e-06 2.718 ||| 0-0 ||| 432 1.17835e+06 +en ||| before ||| 0.00757778 0.0175291 0.000241015 0.0003409 2.718 ||| 0-0 ||| 37478 1.17835e+06 +en ||| beforehand against ||| 1 0.153982 8.48644e-07 3.13141e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| began at ||| 0.0666667 0.321886 8.48644e-07 6.0403e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| began in ||| 0.00584795 0.605812 8.48644e-07 6.97289e-06 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| began to have an ||| 1 0.0247351 8.48644e-07 2.2562e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| began to have ||| 0.111111 0.0247351 8.48644e-07 5.07616e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| began to ||| 0.0106952 0.0247351 1.69729e-06 4.24435e-07 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| began work again in ||| 1 0.605812 8.48644e-07 2.55252e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| begin at long ||| 1 0.321886 8.48644e-07 7.98428e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| begin at ||| 0.027027 0.321886 8.48644e-07 2.36012e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| begin by saying a few words to ||| 1 0.0468744 8.48644e-07 1.38941e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| begin by saying a few words ||| 0.25 0.0468744 8.48644e-07 1.56363e-19 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| begin by saying a few ||| 0.25 0.0468744 8.48644e-07 6.91872e-16 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| begin by saying a ||| 0.333333 0.0468744 8.48644e-07 3.94679e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| begin by saying ||| 0.00757576 0.0468744 8.48644e-07 8.90404e-11 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| begin by ||| 0.00117786 0.0468744 8.48644e-07 5.01919e-07 2.718 ||| 0-1 ||| 849 1.17835e+06 +en ||| begin to ||| 0.0077821 0.0247351 3.39458e-06 1.65839e-06 2.718 ||| 0-1 ||| 514 1.17835e+06 +en ||| begin ‘ to create 46 posts ( ||| 1 0.0247351 8.48644e-07 1.42982e-28 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| begin ‘ to create 46 posts ||| 1 0.0247351 8.48644e-07 1.4826e-25 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| begin ‘ to create 46 ||| 1 0.0247351 8.48644e-07 1.46792e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| begin ‘ to create ||| 1 0.0247351 8.48644e-07 2.09703e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| begin ‘ to ||| 1 0.0247351 8.48644e-07 1.86237e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| beginning of ||| 0.00097371 0.0116562 1.69729e-06 5.55026e-07 2.718 ||| 0-1 ||| 2054 1.17835e+06 +en ||| beginning to be ||| 0.0434783 0.0247351 8.48644e-07 2.07327e-08 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| beginning to ||| 0.00392927 0.0247351 1.69729e-06 1.14401e-06 2.718 ||| 0-1 ||| 509 1.17835e+06 +en ||| begins at ||| 0.0243902 0.321886 8.48644e-07 3.44017e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| begun at ||| 0.0714286 0.321886 8.48644e-07 5.04025e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| begun by ||| 0.0208333 0.0468744 8.48644e-07 1.07189e-07 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| begun in the middle of ||| 1 0.605812 8.48644e-07 3.98091e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| begun in the middle ||| 1 0.605812 8.48644e-07 7.32269e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| begun in the ||| 0.0714286 0.605812 8.48644e-07 3.57205e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| begun in ||| 0.0151515 0.605812 8.48644e-07 5.81844e-06 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| begun ||| 0.000744602 0.0006854 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1343 1.17835e+06 +en ||| behalf in ||| 0.0666667 0.605812 8.48644e-07 0.000147077 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| behalf of the ALDE Group . - ||| 0.00130548 0.0116562 8.48644e-07 1.92268e-20 2.718 ||| 0-1 ||| 766 1.17835e+06 +en ||| behalf of the ALDE Group . ||| 0.00130208 0.0116562 8.48644e-07 5.09711e-18 2.718 ||| 0-1 ||| 768 1.17835e+06 +en ||| behalf of the ALDE Group ||| 0.00123001 0.0116562 8.48644e-07 1.68277e-15 2.718 ||| 0-1 ||| 813 1.17835e+06 +en ||| behalf of the ALDE ||| 0.047619 0.0116562 8.48644e-07 5.17297e-12 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| behalf of the ||| 7.17309e-05 0.0116562 8.48644e-07 2.66648e-07 2.718 ||| 0-1 ||| 13941 1.17835e+06 +en ||| behalf of ||| 0.000296707 0.0116562 2.54593e-06 4.34338e-06 2.718 ||| 0-1 ||| 10111 1.17835e+06 +en ||| behave in ||| 0.0136986 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| behaving as it has been doing ||| 1 0.066968 8.48644e-07 8.67925e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| behaving as it has been ||| 1 0.066968 8.48644e-07 2.36427e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| behaving as it has ||| 1 0.066968 8.48644e-07 7.08036e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| behaving as it ||| 0.333333 0.066968 8.48644e-07 1.37549e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| behaving as ||| 0.0555556 0.066968 8.48644e-07 7.7348e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| behaving in ||| 0.0689655 0.605812 1.69729e-06 1.98566e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| behaviour in ||| 0.025 0.605812 1.69729e-06 1.18216e-05 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| behaviour stems from ||| 0.5 0.0308834 8.48644e-07 4.18865e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| behaviour ||| 0.000348311 0.0008127 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 2871 1.17835e+06 +en ||| behind closed doors where ||| 0.25 0.247783 8.48644e-07 5.25775e-16 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| behind closed doors ||| 0.00297619 0.0374138 8.48644e-07 1.60333e-13 2.718 ||| 0-0 ||| 336 1.17835e+06 +en ||| behind closed ||| 0.0689655 0.0374138 1.69729e-06 1.34733e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| behind in ||| 0.0172414 0.605812 1.69729e-06 4.13756e-05 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| behind it so as ||| 1 0.0374138 8.48644e-07 9.58434e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| behind it so ||| 1 0.0374138 8.48644e-07 9.39236e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| behind it ||| 0.00460829 0.0374138 8.48644e-07 4.13815e-06 2.718 ||| 0-0 ||| 217 1.17835e+06 +en ||| behind me , during ||| 0.5 0.226251 8.48644e-07 1.86014e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| behind the ||| 0.00075815 0.0374138 8.48644e-07 1.42859e-05 2.718 ||| 0-0 ||| 1319 1.17835e+06 +en ||| behind when ||| 0.125 0.142731 8.48644e-07 5.33416e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| behind where ||| 0.111111 0.247783 8.48644e-07 7.63087e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| behind you in ||| 0.333333 0.605812 8.48644e-07 1.33589e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| behind ||| 0.013715 0.0374138 5.85565e-05 0.0002327 2.718 ||| 0-0 ||| 5031 1.17835e+06 +en ||| being , in ||| 0.037037 0.605812 8.48644e-07 0.000156717 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| being , with regard to ||| 1 0.0247351 8.48644e-07 4.15341e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| being a ||| 0.00202429 0.0015231 1.69729e-06 2.34494e-06 2.718 ||| 0-1 ||| 988 1.17835e+06 +en ||| being abandoned in Canada . ||| 1 0.605812 8.48644e-07 2.50773e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being abandoned in Canada ||| 1 0.605812 8.48644e-07 8.27906e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being abandoned in ||| 0.5 0.605812 8.48644e-07 1.65581e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being able to come up with ||| 1 0.0535436 8.48644e-07 7.12973e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| being about people having ||| 1 0.0065553 8.48644e-07 2.72429e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| being absorbed in ||| 0.5 0.605812 8.48644e-07 2.8911e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being administered in ||| 0.666667 0.605812 1.69729e-06 6.57068e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| being allocated to ||| 0.2 0.0247351 8.48644e-07 3.56758e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| being analysed ||| 0.111111 0.0043873 8.48644e-07 6.588e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| being announced in ||| 1 0.605812 8.48644e-07 2.74655e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being as ||| 0.0181818 0.066968 8.48644e-07 5.119e-05 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| being at ||| 0.121212 0.321886 6.78915e-06 0.000113838 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| being attained ||| 0.125 0.0043873 8.48644e-07 9.882e-10 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| being bandied about in ||| 1 0.605812 8.48644e-07 2.60202e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| being based in ||| 0.5 0.605812 8.48644e-07 3.08296e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being brought forward ||| 0.0714286 0.0043873 8.48644e-07 2.85099e-11 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| being brought ||| 0.010101 0.0043873 8.48644e-07 5.124e-08 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| being built in ||| 0.05 0.605812 8.48644e-07 6.53126e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| being built ||| 0.00909091 0.0043873 8.48644e-07 9.0951e-09 2.718 ||| 0-0 ||| 110 1.17835e+06 +en ||| being called into ||| 0.0588235 0.525896 8.48644e-07 1.09491e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| being carried out at ||| 0.166667 0.321886 8.48644e-07 1.28502e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| being carried out in ||| 0.0689655 0.605812 1.69729e-06 1.48342e-09 2.718 ||| 0-3 ||| 29 1.17835e+06 +en ||| being carried over individually to the ||| 0.0833333 0.157937 8.48644e-07 1.24664e-16 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| being carried over individually to ||| 0.0833333 0.157937 8.48644e-07 2.03064e-15 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| being carried over individually ||| 0.0833333 0.157937 8.48644e-07 2.28525e-14 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| being carried over ||| 0.0588235 0.157937 8.48644e-07 3.36067e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| being cast in ||| 1 0.605812 8.48644e-07 4.44178e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being challenged by ||| 0.2 0.0468744 8.48644e-07 8.71542e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| being claimed in ||| 0.5 0.605812 8.48644e-07 2.60199e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being committed ||| 0.0131579 0.0043873 8.48644e-07 1.51524e-08 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| being conducted in ||| 0.0454545 0.605812 8.48644e-07 7.95053e-08 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| being considered at ||| 0.25 0.321886 8.48644e-07 1.22489e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| being consistently applied to ||| 1 0.0247351 8.48644e-07 1.15218e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| being converted into ||| 0.25 0.525896 8.48644e-07 2.70893e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| being cultivated by ||| 0.5 0.0468744 8.48644e-07 1.40415e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being delivered to a ||| 1 0.0247351 8.48644e-07 1.22325e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being delivered to ||| 1 0.0247351 8.48644e-07 2.75968e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being demonstrated at ||| 1 0.321886 8.48644e-07 3.07362e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being denounced by ||| 0.333333 0.0468744 8.48644e-07 6.05238e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| being depicted here ||| 0.25 0.0855319 8.48644e-07 4.26884e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| being directed against ||| 0.333333 0.153982 8.48644e-07 5.16529e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| being discussed in an adjoining room ||| 1 0.605812 8.48644e-07 8.02808e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being discussed in an adjoining ||| 1 0.605812 8.48644e-07 2.14655e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being discussed in an ||| 1 0.605812 8.48644e-07 3.0665e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being discussed in ||| 0.0175439 0.605812 8.48644e-07 6.89922e-08 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| being done about ||| 0.0714286 0.0401564 8.48644e-07 3.71929e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| being done by ||| 0.0188679 0.0468744 8.48644e-07 1.10395e-08 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| being done in connection with ||| 0.5 0.0535436 8.48644e-07 4.94181e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| being done in ||| 0.025641 0.605812 8.48644e-07 5.99246e-07 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| being done on ||| 0.0526316 0.22993 8.48644e-07 1.07771e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| being done to ||| 0.0322581 0.0247351 8.48644e-07 3.64757e-08 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| being drafted in ||| 0.142857 0.605812 8.48644e-07 3.69272e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| being drawn into purchasing ||| 1 0.525896 8.48644e-07 2.5961e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being drawn into ||| 0.125 0.525896 8.48644e-07 8.95206e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| being elevated to ||| 1 0.0247351 8.48644e-07 1.11987e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being employed in ||| 0.25 0.605812 8.48644e-07 3.78471e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| being entrusted to our care ||| 0.25 0.0247351 8.48644e-07 6.49566e-17 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| being entrusted to our ||| 0.25 0.0247351 8.48644e-07 6.39966e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| being entrusted to ||| 0.142857 0.0247351 8.48644e-07 4.63945e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| being equal , in ||| 1 0.605812 8.48644e-07 8.96421e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| being established in ||| 0.166667 0.605812 8.48644e-07 1.96726e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| being exerted on ||| 0.333333 0.22993 8.48644e-07 2.81244e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| being expended on ||| 0.5 0.22993 8.48644e-07 3.30875e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being expressed in ||| 0.25 0.605812 8.48644e-07 1.27734e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| being followed on ||| 1 0.22993 8.48644e-07 1.69219e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being for ||| 0.0714286 0.0286209 8.48644e-07 3.27415e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| being formed ||| 0.05 0.0043873 8.48644e-07 3.5502e-09 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| being fostered in ||| 1 0.605812 8.48644e-07 1.44555e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being fought in ||| 1 0.605812 8.48644e-07 2.07634e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being given the ||| 0.0238095 0.0546585 8.48644e-07 2.02819e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| being given to ||| 0.0153846 0.0247351 8.48644e-07 5.48975e-08 2.718 ||| 0-2 ||| 65 1.17835e+06 +en ||| being given ||| 0.00584795 0.0546585 1.69729e-06 3.30369e-06 2.718 ||| 0-1 ||| 342 1.17835e+06 +en ||| being hailed by ||| 0.5 0.0468744 8.48644e-07 3.38933e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being handled in ||| 0.333333 0.605812 8.48644e-07 2.69398e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| being held at ||| 0.181818 0.321886 1.69729e-06 2.904e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| being held in ||| 0.0684932 0.605812 4.24322e-06 3.35236e-07 2.718 ||| 0-2 ||| 73 1.17835e+06 +en ||| being held up at ||| 1 0.321886 8.48644e-07 9.90409e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| being held within ||| 0.333333 0.369196 8.48644e-07 8.04854e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| being here ||| 0.00505051 0.0855319 8.48644e-07 8.53768e-06 2.718 ||| 0-1 ||| 198 1.17835e+06 +en ||| being ignored ||| 0.0212766 0.0043873 8.48644e-07 1.9032e-09 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| being implemented , ||| 0.0434783 0.0703003 8.48644e-07 1.3463e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| being implemented in ||| 0.0196078 0.605812 8.48644e-07 1.15381e-07 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| being implemented ||| 0.00283286 0.0703003 8.48644e-07 1.12893e-06 2.718 ||| 0-1 ||| 353 1.17835e+06 +en ||| being imposed in ||| 0.142857 0.605812 8.48644e-07 7.33288e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| being imposed on society ||| 1 0.22993 8.48644e-07 7.63569e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being imposed on ||| 0.0434783 0.22993 8.48644e-07 1.31877e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| being imprisoned in ||| 0.5 0.605812 8.48644e-07 5.65079e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being in a ||| 0.0540541 0.605812 1.69729e-06 5.82502e-05 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| being in the ||| 0.0210526 0.605812 1.69729e-06 8.06772e-05 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| being in ||| 0.115756 0.605812 3.05512e-05 0.00131414 2.718 ||| 0-1 ||| 311 1.17835e+06 +en ||| being included in ||| 0.0645161 0.605812 1.69729e-06 1.23397e-07 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| being incorporated into ||| 0.05 0.525896 8.48644e-07 1.27257e-09 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| being instituted against us in ||| 1 0.605812 8.48644e-07 1.98819e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| being involved in ||| 0.0178571 0.605812 8.48644e-07 4.54428e-07 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| being laid in ||| 1 0.605812 8.48644e-07 1.43241e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being launched ||| 0.0285714 0.12071 8.48644e-07 6.06155e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| being listed in ||| 0.2 0.605812 8.48644e-07 1.41927e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| being lost in ||| 0.4 0.605812 1.69729e-06 7.47744e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| being made at ||| 0.307692 0.321886 3.39458e-06 2.38467e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| being made by ||| 0.0147059 0.0468744 1.69729e-06 5.07141e-08 2.718 ||| 0-2 ||| 136 1.17835e+06 +en ||| being made in ||| 0.138889 0.605812 8.48644e-06 2.75285e-06 2.718 ||| 0-2 ||| 72 1.17835e+06 +en ||| being made on the ||| 0.142857 0.22993 8.48644e-07 3.03941e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| being made on ||| 0.0344828 0.22993 8.48644e-07 4.95083e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| being made to ||| 0.021978 0.0247351 1.69729e-06 1.67564e-07 2.718 ||| 0-2 ||| 91 1.17835e+06 +en ||| being moved into - and can some ||| 1 0.525896 8.48644e-07 3.05712e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being moved into - and can ||| 1 0.525896 8.48644e-07 2.8065e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being moved into - and ||| 1 0.525896 8.48644e-07 9.43584e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being moved into - ||| 1 0.525896 8.48644e-07 7.53306e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being moved into ||| 1 0.525896 8.48644e-07 1.99705e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being neglected as ||| 0.142857 0.066968 8.48644e-07 1.84284e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| being noticed in ||| 0.5 0.605812 8.48644e-07 1.27471e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being on ||| 0.0632911 0.22993 4.24322e-06 0.000236339 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| being overtaken by ||| 0.125 0.0468744 8.48644e-07 6.05238e-11 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| being paid in ||| 0.333333 0.605812 8.48644e-07 1.76883e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| being particularly swift in ||| 1 0.605812 8.48644e-07 1.2667e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| being passed on ||| 0.0434783 0.22993 8.48644e-07 1.69219e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| being passive in ||| 1 0.605812 8.48644e-07 2.36545e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being permitted ||| 0.0833333 0.0007278 8.48644e-07 1.99206e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| being placed in ||| 0.142857 0.605812 8.48644e-07 1.6453e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| being placed on ||| 0.12 0.22993 2.54593e-06 2.95897e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| being placed under ||| 0.2 0.205566 8.48644e-07 2.0147e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| being played by ||| 0.0666667 0.0468744 8.48644e-07 1.19353e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| being played in ||| 0.5 0.605812 8.48644e-07 6.47869e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being played out in ||| 0.25 0.605812 8.48644e-07 2.4816e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| being postponed until ||| 0.5 0.0092136 8.48644e-07 1.01552e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being presented with ||| 0.05 0.0535436 8.48644e-07 2.6145e-09 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| being put in place ||| 0.157895 0.605812 2.54593e-06 2.1807e-09 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| being put in ||| 0.0652174 0.605812 2.54593e-06 1.44897e-06 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| being questioned ||| 0.0384615 0.12693 8.48644e-07 1.43428e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| being raised on ||| 1 0.22993 8.48644e-07 2.72263e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being referred to ||| 0.0769231 0.0247351 8.48644e-07 7.6551e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| being removed from ||| 0.2 0.0308834 8.48644e-07 4.90533e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| being run on ||| 0.5 0.22993 8.48644e-07 2.50992e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being said at ||| 1 0.321886 8.48644e-07 4.68214e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being said in ||| 0.2 0.605812 8.48644e-07 5.40504e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| being sent to ||| 0.0526316 0.0247351 8.48644e-07 4.80744e-09 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| being seriously ||| 0.0588235 0.276271 8.48644e-07 4.37826e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| being shared with ||| 0.333333 0.0535436 8.48644e-07 8.9583e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| being shot on sight in ||| 1 0.605812 8.48644e-07 2.26505e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| being signed up at a ||| 1 0.321886 8.48644e-07 5.31764e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| being signed up at ||| 1 0.321886 8.48644e-07 1.19967e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| being situated in ||| 1 0.605812 8.48644e-07 1.13016e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being slaughtered for the ||| 1 0.0148939 8.48644e-07 3.75178e-13 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| being somewhat ||| 0.0714286 0.0043873 8.48644e-07 1.06689e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| being spent in ||| 0.0909091 0.605812 8.48644e-07 8.42362e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| being started at all in ||| 1 0.605812 8.48644e-07 1.17014e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| being sterilised against their will in ||| 1 0.605812 8.48644e-07 1.25767e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| being suffered at ||| 1 0.321886 8.48644e-07 3.89325e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being tabled on ||| 1 0.22993 8.48644e-07 1.93089e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being taken in ||| 0.115385 0.605812 2.54593e-06 1.19784e-06 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| being taken on ||| 0.1 0.22993 1.69729e-06 2.15423e-07 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| being taken over by ||| 0.0555556 0.157937 8.48644e-07 5.4572e-11 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| being taken over ||| 0.0625 0.157937 8.48644e-07 1.03945e-08 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| being taken to ||| 0.025 0.0247351 8.48644e-07 7.29114e-08 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| being taken within ||| 0.5 0.369196 8.48644e-07 2.87583e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being taken ||| 0.00192678 0.0042106 8.48644e-07 2.53561e-07 2.718 ||| 0-1 ||| 519 1.17835e+06 +en ||| being that , in ||| 0.166667 0.605812 8.48644e-07 2.63623e-06 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| being the ||| 0.0055991 0.0011669 4.24322e-06 8.15236e-06 2.718 ||| 0-1 ||| 893 1.17835e+06 +en ||| being thrown away in ||| 1 0.605812 8.48644e-07 1.15793e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| being thrown out into ||| 1 0.525896 8.48644e-07 6.68425e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| being to the ||| 0.0909091 0.0247351 8.48644e-07 4.91077e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| being to ||| 0.0252101 0.0247351 2.54593e-06 7.99906e-05 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| being translated into ||| 0.0833333 0.525896 8.48644e-07 5.41786e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| being transported ||| 0.0222222 0.0043873 8.48644e-07 1.3908e-09 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| being tried out in ||| 0.333333 0.605812 8.48644e-07 2.00843e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| being turned into ||| 0.0909091 0.525896 1.69729e-06 3.53421e-09 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| being up ||| 0.333333 0.0147069 8.48644e-07 1.9636e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| being used as a ||| 0.0212766 0.066968 8.48644e-07 9.73417e-10 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| being used as an ||| 0.0909091 0.066968 8.48644e-07 9.76078e-11 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| being used as ||| 0.0235294 0.066968 1.69729e-06 2.19605e-08 2.718 ||| 0-2 ||| 85 1.17835e+06 +en ||| being used at ||| 0.166667 0.321886 8.48644e-07 4.88364e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| being used for the ||| 0.111111 0.0286209 8.48644e-07 8.62316e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| being used for ||| 0.0169492 0.0286209 8.48644e-07 1.40461e-08 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| being used in a lawful ||| 1 0.605812 8.48644e-07 3.4985e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| being used in a ||| 0.125 0.605812 8.48644e-07 2.49893e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| being used in ||| 0.0392157 0.605812 1.69729e-06 5.63765e-07 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| being used to state ||| 0.25 0.0247351 8.48644e-07 8.66821e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| being used to ||| 0.0214286 0.0247351 2.54593e-06 3.4316e-08 2.718 ||| 0-2 ||| 140 1.17835e+06 +en ||| being waged in ||| 0.5 0.605812 8.48644e-07 1.03817e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being wasted in ||| 0.2 0.605812 8.48644e-07 8.54189e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| being with regard to ||| 0.5 0.0535436 8.48644e-07 2.00744e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| being with regard ||| 0.5 0.0535436 8.48644e-07 2.25915e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| being with ||| 0.0909091 0.0535436 1.69729e-06 3.31789e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| being wrecked by ||| 0.5 0.0468744 8.48644e-07 3.38933e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| being ||| 0.00356115 0.0043873 8.40158e-05 0.000183 2.718 ||| 0-0 ||| 27800 1.17835e+06 +en ||| being ‘ on ||| 0.2 0.22993 8.48644e-07 2.65409e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| beings gathered into ||| 1 0.525896 8.48644e-07 3.34893e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| belated welcomes in ||| 0.333333 0.605812 8.48644e-07 1.25604e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| belief in ||| 0.0235294 0.605812 3.39458e-06 1.22834e-05 2.718 ||| 0-1 ||| 170 1.17835e+06 +en ||| belief ||| 0.00182815 0.0026178 2.54593e-06 2.7e-06 2.718 ||| 0-0 ||| 1641 1.17835e+06 +en ||| believe , in ||| 0.153846 0.605812 1.69729e-06 1.71432e-05 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| believe , largely ||| 1 0.247761 8.48644e-07 3.14514e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| believe , ||| 0.0013369 0.0001187 8.48644e-07 6.16374e-08 2.718 ||| 0-1 ||| 748 1.17835e+06 +en ||| believe in ||| 0.00803213 0.605812 3.39458e-06 0.000143752 2.718 ||| 0-1 ||| 498 1.17835e+06 +en ||| believe that in ||| 0.0147059 0.605812 8.48644e-07 2.41815e-06 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| believe that it is ||| 0.00309598 0.0080472 8.48644e-07 4.52626e-10 2.718 ||| 0-2 ||| 323 1.17835e+06 +en ||| believe that it ||| 0.00561798 0.0080472 8.48644e-07 1.44419e-08 2.718 ||| 0-2 ||| 178 1.17835e+06 +en ||| believe that we in ||| 0.125 0.605812 8.48644e-07 2.74515e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| believe that we must look at two ||| 1 0.321886 8.48644e-07 2.53277e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| believe that we must look at ||| 1 0.321886 8.48644e-07 1.07139e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| believe these things are in ||| 1 0.605812 8.48644e-07 9.29695e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| believed in ||| 0.0181818 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| believes in ||| 0.00775194 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| believing as ||| 0.047619 0.066968 8.48644e-07 1.493e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| believing in ||| 0.0333333 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| belong in ||| 0.00826446 0.605812 8.48644e-07 1.32993e-05 2.718 ||| 0-1 ||| 121 1.17835e+06 +en ||| belong on ||| 0.125 0.22993 8.48644e-07 2.39179e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| belong to ||| 0.00443131 0.0247351 2.54593e-06 8.09519e-07 2.718 ||| 0-1 ||| 677 1.17835e+06 +en ||| belong with ||| 0.111111 0.0535436 8.48644e-07 3.35776e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| belonged to ||| 0.0166667 0.0247351 8.48644e-07 7.02708e-08 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| belonging to ||| 0.00143266 0.0247351 8.48644e-07 7.58924e-07 2.718 ||| 0-1 ||| 698 1.17835e+06 +en ||| belongs in ||| 0.025641 0.605812 8.48644e-07 6.97289e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| belongs to ||| 0.00668896 0.0247351 1.69729e-06 4.24435e-07 2.718 ||| 0-1 ||| 299 1.17835e+06 +en ||| benches at ||| 1 0.321886 8.48644e-07 7.20036e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| beneficial for ||| 0.00653595 0.0286209 8.48644e-07 1.19654e-07 2.718 ||| 0-1 ||| 153 1.17835e+06 +en ||| beneficiary in ||| 1 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| benefit derived from ||| 0.5 0.0308834 8.48644e-07 4.51019e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| benefit from any ||| 0.0625 0.0308834 8.48644e-07 7.57811e-10 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| benefit from ||| 0.00139276 0.0308834 2.54593e-06 5.01132e-07 2.718 ||| 0-1 ||| 2154 1.17835e+06 +en ||| benefit in ||| 0.0365854 0.605812 2.54593e-06 6.08166e-05 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| benefit of ||| 0.00126024 0.0116562 1.69729e-06 1.79599e-06 2.718 ||| 0-1 ||| 1587 1.17835e+06 +en ||| benefit should be linked with ||| 1 0.0535436 8.48644e-07 5.14173e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| benefited from ||| 0.0070922 0.0308834 8.48644e-07 1.36984e-08 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| benefits accruing to ||| 0.25 0.0247351 8.48644e-07 7.79162e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| benefits of ||| 0.00105597 0.0116562 8.48644e-07 5.40025e-07 2.718 ||| 0-1 ||| 947 1.17835e+06 +en ||| bent on ||| 0.0344828 0.22993 8.48644e-07 9.13532e-08 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| besides , in ||| 0.142857 0.605812 8.48644e-07 7.93002e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| besides , to ||| 0.333333 0.0247351 8.48644e-07 4.82695e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| besides ||| 0.000789889 0.002457 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 1266 1.17835e+06 +en ||| best at ||| 0.0666667 0.321886 8.48644e-07 5.54028e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| best expressed in ||| 0.5 0.605812 8.48644e-07 6.21659e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| best for ||| 0.00995025 0.0286209 1.69729e-06 1.59347e-06 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| best in ||| 0.0390625 0.605812 4.24322e-06 6.39567e-05 2.718 ||| 0-1 ||| 128 1.17835e+06 +en ||| best laid plans in ||| 0.5 0.605812 8.48644e-07 2.93491e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| best practice in ||| 0.00909091 0.605812 8.48644e-07 6.74103e-09 2.718 ||| 0-2 ||| 110 1.17835e+06 +en ||| best to deal fairly with ||| 0.125 0.0535436 8.48644e-07 1.97392e-15 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| best to proceed slowly but surely . ||| 1 0.0247351 8.48644e-07 9.52744e-26 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| best to proceed slowly but surely ||| 1 0.0247351 8.48644e-07 3.14541e-23 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| best to proceed slowly but ||| 1 0.0247351 8.48644e-07 4.93784e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| best to proceed slowly ||| 1 0.0247351 8.48644e-07 7.22541e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| best to proceed ||| 0.0833333 0.0247351 8.48644e-07 1.24576e-10 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| best to ||| 0.00178571 0.0247351 8.48644e-07 3.893e-06 2.718 ||| 0-1 ||| 560 1.17835e+06 +en ||| best ||| 7.53466e-05 7e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 13272 1.17835e+06 +en ||| bets with ||| 1 0.0535436 8.48644e-07 4.66356e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| better , in fact . ||| 1 0.605812 8.48644e-07 8.30172e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| better , in fact ||| 1 0.605812 8.48644e-07 2.74075e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| better , in ||| 0.1 0.605812 8.48644e-07 9.35632e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| better and better ||| 0.0555556 0.0010182 8.48644e-07 2.66347e-11 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| better and ||| 0.0017301 0.0010182 8.48644e-07 1.56767e-07 2.718 ||| 0-1 ||| 578 1.17835e+06 +en ||| better at making ||| 0.333333 0.321886 8.48644e-07 2.61455e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| better at ||| 0.0142857 0.321886 8.48644e-07 6.79634e-06 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| better deal for ||| 0.0833333 0.0286209 8.48644e-07 8.2998e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| better from ||| 0.111111 0.0308834 8.48644e-07 6.46486e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| better in ||| 0.032967 0.605812 5.09187e-06 7.84566e-05 2.718 ||| 0-1 ||| 182 1.17835e+06 +en ||| better international coordination by ||| 1 0.0468744 8.48644e-07 1.68925e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| better of ||| 0.0714286 0.0116562 1.69729e-06 2.31693e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| better situation in ||| 0.333333 0.605812 8.48644e-07 4.04052e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| better ||| 4.54215e-05 8.11e-05 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 22016 1.17835e+06 +en ||| between , on the one ||| 0.0196078 0.22993 8.48644e-07 6.68528e-10 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| between , on the ||| 0.02 0.22993 8.48644e-07 1.60395e-07 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| between , on ||| 0.015873 0.22993 8.48644e-07 2.61265e-06 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| between 30 and ||| 0.0555556 0.0035986 8.48644e-07 2.23237e-11 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| between 30 ||| 0.03125 0.0035986 8.48644e-07 1.7822e-09 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| between Israel and ||| 0.0045045 0.0035986 8.48644e-07 3.99476e-11 2.718 ||| 0-0 ||| 222 1.17835e+06 +en ||| between Israel ||| 0.00442478 0.0035986 8.48644e-07 3.1892e-09 2.718 ||| 0-0 ||| 226 1.17835e+06 +en ||| between President ||| 0.0217391 0.0022154 8.48644e-07 5.90648e-08 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| between events there ||| 1 0.0117359 8.48644e-07 2.15065e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| between men and women in ||| 0.00787402 0.605812 8.48644e-07 7.70416e-15 2.718 ||| 0-4 ||| 127 1.17835e+06 +en ||| between national health authorities , where ||| 1 0.247783 8.48644e-07 1.90544e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| between now and ||| 0.00864553 0.0123946 2.54593e-06 1.95616e-09 2.718 ||| 0-1 ||| 347 1.17835e+06 +en ||| between now ||| 0.0121212 0.0123946 3.39458e-06 1.5617e-07 2.718 ||| 0-1 ||| 330 1.17835e+06 +en ||| between the ||| 9.16422e-05 0.0035986 1.69729e-06 8.2265e-06 2.718 ||| 0-0 ||| 21824 1.17835e+06 +en ||| between these terms is ||| 1 0.0014765 8.48644e-07 9.5103e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| between these terms ||| 1 0.0014765 8.48644e-07 3.03445e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| between these ||| 0.00207039 0.0014765 8.48644e-07 2.76462e-08 2.718 ||| 0-1 ||| 483 1.17835e+06 +en ||| between two ||| 0.0026178 0.0035986 8.48644e-07 3.16776e-08 2.718 ||| 0-0 ||| 382 1.17835e+06 +en ||| between us on ||| 0.0714286 0.22993 8.48644e-07 6.31437e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| between us ||| 0.0026178 0.0035986 8.48644e-07 3.86215e-07 2.718 ||| 0-0 ||| 382 1.17835e+06 +en ||| between various ||| 0.0125 0.0021519 8.48644e-07 9.112e-10 2.718 ||| 0-0 0-1 ||| 80 1.17835e+06 +en ||| between ||| 0.00196576 0.0035986 9.58968e-05 0.000134 2.718 ||| 0-0 ||| 57484 1.17835e+06 +en ||| beyond doubt in ||| 0.5 0.605812 8.48644e-07 3.16129e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| beyond that in ||| 0.25 0.605812 8.48644e-07 5.81815e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| beyond the ||| 0.000648508 0.0011669 8.48644e-07 2.14566e-07 2.718 ||| 0-1 ||| 1542 1.17835e+06 +en ||| beyond to ||| 0.5 0.0247351 8.48644e-07 2.10531e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| biannual event in ||| 1 0.605812 8.48644e-07 1.9284e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| bias in ||| 0.142857 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| bid for ||| 0.0212766 0.0286209 8.48644e-07 3.06038e-07 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| bid in ||| 0.666667 0.605812 1.69729e-06 1.22834e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| big companies you look at - is ||| 1 0.321886 8.48644e-07 1.47165e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| big companies you look at - ||| 1 0.321886 8.48644e-07 4.69558e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| big companies you look at ||| 1 0.321886 8.48644e-07 1.24482e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| big for ||| 0.111111 0.0286209 8.48644e-07 5.41895e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| big time in ||| 1 0.605812 8.48644e-07 3.57068e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| bigger on ||| 0.5 0.22993 8.48644e-07 5.97948e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| biggest partner of ||| 1 0.0116562 8.48644e-07 2.33684e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| bilateral trade agreements , in ||| 0.5 0.605812 8.48644e-07 1.08551e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| bilaterally ||| 0.00632911 0.0215054 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 158 1.17835e+06 +en ||| bill for a certain ||| 0.5 0.0286209 8.48644e-07 2.51444e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| bill for a ||| 0.166667 0.0286209 8.48644e-07 8.82261e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| bill for ||| 0.00925926 0.0286209 8.48644e-07 1.9904e-07 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| bill of ||| 0.0238095 0.0116562 8.48644e-07 2.3592e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| billion in ||| 0.00925926 0.605812 1.69729e-06 1.04824e-05 2.718 ||| 0-1 ||| 216 1.17835e+06 +en ||| billowing out of ||| 1 0.0120599 8.48644e-07 1.1971e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| billowing out ||| 1 0.0120599 8.48644e-07 2.202e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| binding in ||| 0.0181818 0.605812 8.48644e-07 8.12735e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| bio-diversity in general ||| 0.25 0.605812 1.69729e-06 5.65359e-11 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| bio-diversity in ||| 0.25 0.605812 1.69729e-06 3.23247e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| biotechnology on ||| 0.1 0.22993 8.48644e-07 2.07621e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| birds in ||| 0.0526316 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| birth in ||| 0.142857 0.605812 8.48644e-07 4.98724e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| birth through direct ||| 0.5 0.0366102 8.48644e-07 5.00707e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| birth through ||| 0.5 0.0366102 8.48644e-07 1.01563e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| birth within ||| 1 0.369196 8.48644e-07 1.19736e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| bistro in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| bit by bit or ||| 1 0.0468744 8.48644e-07 6.10087e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| bit by bit ||| 0.0434783 0.0468744 8.48644e-07 5.3362e-11 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| bit by ||| 0.04 0.0468744 8.48644e-07 6.73762e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| bit closer to ||| 0.5 0.0247351 8.48644e-07 4.74176e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| bit for ||| 0.125 0.0286209 8.48644e-07 9.11212e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| bit further off in ||| 1 0.605812 8.48644e-07 7.19403e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| bit in parts ||| 0.333333 0.605812 8.48644e-07 2.13221e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| bit in ||| 0.05 0.605812 8.48644e-07 3.65731e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| bit taught to them in ||| 1 0.605812 8.48644e-07 6.62515e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| blame at ||| 0.0833333 0.321886 8.48644e-07 9.52048e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| blame for ||| 0.00342466 0.0286209 8.48644e-07 2.73824e-07 2.718 ||| 0-1 ||| 292 1.17835e+06 +en ||| blame occur during ||| 1 0.226251 8.48644e-07 3.06906e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| blame on ||| 0.0208333 0.22993 8.48644e-07 1.97655e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| blame today in ||| 0.25 0.605812 8.48644e-07 4.95996e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| blank , ||| 0.125 0.503937 8.48644e-07 1.55747e-05 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| blank in ||| 1 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| blank ||| 0.336585 0.503937 5.85565e-05 0.0001306 2.718 ||| 0-0 ||| 205 1.17835e+06 +en ||| blasted ||| 0.333333 0.2 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| blind eye to ||| 0.00515464 0.0247351 8.48644e-07 2.47901e-11 2.718 ||| 0-2 ||| 194 1.17835e+06 +en ||| blind spot in ||| 0.25 0.605812 8.48644e-07 9.80592e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| blind when ||| 0.333333 0.142731 8.48644e-07 9.22762e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| block in Iraq ||| 0.166667 0.605812 8.48644e-07 5.64389e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| block in ||| 0.111111 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| bloody noses at ||| 1 0.321886 8.48644e-07 1.40007e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| blot on ||| 0.0416667 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| blow themselves up in ||| 1 0.605812 8.48644e-07 9.27129e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| blow to ||| 0.00680272 0.0247351 8.48644e-07 3.85084e-07 2.718 ||| 0-1 ||| 147 1.17835e+06 +en ||| blow up in ||| 0.25 0.605812 8.48644e-07 2.15762e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| blow ||| 0.00277008 0.0018248 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 361 1.17835e+06 +en ||| blowing off the ||| 1 0.0754717 8.48644e-07 1.34927e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| blowing off ||| 1 0.0754717 8.48644e-07 2.1978e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| blowing the whistle on ||| 0.333333 0.22993 8.48644e-07 1.14206e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| blowing ||| 0.0857143 0.0754717 2.54593e-06 5.4e-06 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| blown in ||| 1 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| blown out of the ||| 0.5 0.0116562 8.48644e-07 1.60341e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| blown out of ||| 0.111111 0.0116562 8.48644e-07 2.61176e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| blueprint for ||| 0.015873 0.0286209 8.48644e-07 8.05364e-09 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| blurring responsibilities in ||| 1 0.605812 8.48644e-07 4.39616e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| board and will promote it in ||| 1 0.605812 8.48644e-07 7.61501e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| board by ||| 0.05 0.0468744 8.48644e-07 1.1357e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| board for ||| 0.0263158 0.0286209 8.48644e-07 1.53594e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| board in ||| 0.123077 0.605812 6.78915e-06 6.16478e-05 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| board on a ||| 0.333333 0.22993 8.48644e-07 4.91438e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| board on ||| 0.2 0.22993 1.69729e-06 1.1087e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| board to ||| 0.047619 0.0247351 8.48644e-07 3.75246e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| board within ||| 0.5 0.369196 8.48644e-07 1.48007e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| boat on ||| 0.333333 0.22993 8.48644e-07 4.81681e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| boats onto ||| 1 0.233333 8.48644e-07 9.4047e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| bodies of ||| 0.00571429 0.0116562 8.48644e-07 5.44116e-07 2.718 ||| 0-1 ||| 175 1.17835e+06 +en ||| body at ||| 0.142857 0.321886 8.48644e-07 3.42417e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| body in ||| 0.0212766 0.605812 8.48644e-07 3.95285e-05 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| body of the ||| 0.015873 0.0116562 8.48644e-07 7.16643e-08 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| body of ||| 0.00760456 0.0116562 1.69729e-06 1.16733e-06 2.718 ||| 0-1 ||| 263 1.17835e+06 +en ||| body on ||| 0.142857 0.22993 8.48644e-07 7.10894e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| body to ||| 0.0365854 0.0247351 2.54593e-06 2.40607e-06 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| body with ||| 0.0333333 0.0535436 8.48644e-07 9.98002e-07 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| bogged down in ||| 0.0487805 0.605812 1.69729e-06 2.19211e-09 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| bogged down with ||| 0.25 0.0535436 8.48644e-07 5.53457e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| boldly in ||| 1 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| bomber in ||| 1 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| bombing in ||| 0.1 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| bombs in ||| 0.0625 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| bones on ||| 0.166667 0.22993 8.48644e-07 6.89302e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| books at ||| 0.5 0.321886 8.48644e-07 4.0402e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| books in ||| 0.0625 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| boom at ||| 1 0.321886 8.48644e-07 7.20036e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| booming ||| 0.016129 0.226891 8.48644e-07 1.84e-05 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| boost for ||| 0.025 0.0286209 8.48644e-07 1.9904e-07 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| boost in ||| 0.0666667 0.605812 8.48644e-07 7.98881e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| border controls in regard to neighbouring countries ||| 1 0.605812 8.48644e-07 1.84741e-23 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| border controls in regard to neighbouring ||| 1 0.605812 8.48644e-07 4.86544e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| border controls in regard to ||| 1 0.605812 8.48644e-07 7.97614e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| border controls in regard ||| 1 0.605812 8.48644e-07 8.97625e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| border controls in ||| 0.0454545 0.605812 8.48644e-07 1.31829e-10 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| border into ||| 0.0454545 0.525896 8.48644e-07 5.18013e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| border with ||| 0.00704225 0.0535436 8.48644e-07 2.72818e-07 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| bordering on ||| 0.0107527 0.22993 8.48644e-07 3.57108e-07 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| borders around ||| 1 0.159384 8.48644e-07 4.98571e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| borders on ||| 0.025641 0.22993 8.48644e-07 3.58769e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| born out of ||| 0.03125 0.0116562 8.48644e-07 5.06681e-10 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| borne by ||| 0.00420168 0.0468744 8.48644e-07 2.72227e-07 2.718 ||| 0-1 ||| 238 1.17835e+06 +en ||| borne in mind ||| 0.00364964 0.605812 8.48644e-07 3.72233e-09 2.718 ||| 0-1 ||| 274 1.17835e+06 +en ||| borne in ||| 0.0230415 0.605812 4.24322e-06 1.4777e-05 2.718 ||| 0-1 ||| 217 1.17835e+06 +en ||| borne out by the ||| 0.0263158 0.0468744 8.48644e-07 6.40156e-11 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| borne out by ||| 0.028169 0.0468744 1.69729e-06 1.04274e-09 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| borne out in ||| 0.0833333 0.605812 8.48644e-07 5.66018e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| borne out on ||| 1 0.22993 8.48644e-07 1.01795e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| borne very much in ||| 0.5 0.605812 8.48644e-07 5.16068e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| borne within ||| 1 0.369196 8.48644e-07 3.54774e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| borrow ideas from ||| 0.333333 0.0308834 8.48644e-07 4.29824e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| boss in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| both a ||| 0.0026455 0.0015231 8.48644e-07 1.36496e-06 2.718 ||| 0-1 ||| 378 1.17835e+06 +en ||| both around ||| 0.2 0.159384 8.48644e-07 1.91177e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| both as far as ||| 0.5 0.066968 8.48644e-07 2.07582e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| both as far ||| 1 0.066968 8.48644e-07 2.03424e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| both as ||| 0.0212766 0.066968 4.24322e-06 2.9797e-05 2.718 ||| 0-1 ||| 235 1.17835e+06 +en ||| both at great risk ||| 1 0.321886 8.48644e-07 3.04685e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| both at great ||| 1 0.321886 8.48644e-07 2.60415e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| both at the ||| 0.0116279 0.321886 8.48644e-07 4.06802e-06 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| both at ||| 0.0305085 0.321886 1.52756e-05 6.62633e-05 2.718 ||| 0-1 ||| 590 1.17835e+06 +en ||| both by ||| 0.00887574 0.0468744 2.54593e-06 1.4092e-05 2.718 ||| 0-1 ||| 338 1.17835e+06 +en ||| both during ||| 0.0344828 0.226251 1.69729e-06 4.78944e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| both earlier in ||| 1 0.605812 8.48644e-07 5.33928e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| both for ||| 0.00297915 0.0286209 2.54593e-06 1.90584e-05 2.718 ||| 0-1 ||| 1007 1.17835e+06 +en ||| both from ||| 0.00401606 0.0308834 8.48644e-07 6.30315e-06 2.718 ||| 0-1 ||| 249 1.17835e+06 +en ||| both here in ||| 0.0689655 0.605812 1.69729e-06 1.55115e-06 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| both in a ||| 0.2 0.605812 1.69729e-06 3.39066e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| both in terms of ||| 0.00337838 0.605812 8.48644e-07 4.56439e-08 2.718 ||| 0-1 ||| 296 1.17835e+06 +en ||| both in terms ||| 0.00314465 0.605812 8.48644e-07 8.39599e-07 2.718 ||| 0-1 ||| 318 1.17835e+06 +en ||| both in the ||| 0.00125786 0.605812 8.48644e-07 4.69611e-05 2.718 ||| 0-1 ||| 795 1.17835e+06 +en ||| both in ||| 0.0816733 0.605812 0.000173972 0.00076494 2.718 ||| 0-1 ||| 2510 1.17835e+06 +en ||| both inside ||| 0.0280899 0.188717 4.24322e-06 3.16723e-07 2.718 ||| 0-1 ||| 178 1.17835e+06 +en ||| both of ||| 0.00542741 0.0116562 3.39458e-06 2.25897e-05 2.718 ||| 0-1 ||| 737 1.17835e+06 +en ||| both on ||| 0.0474138 0.22993 1.86702e-05 0.00013757 2.718 ||| 0-1 ||| 464 1.17835e+06 +en ||| both over ||| 0.2 0.157937 8.48644e-07 6.63793e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| both personally and on ||| 0.0588235 0.22993 8.48644e-07 6.70319e-11 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| both sectors having ||| 0.5 0.0065553 8.48644e-07 6.56032e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| both sides and in a global context ||| 1 0.605812 8.48644e-07 9.55934e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| both sides and in a global ||| 1 0.605812 8.48644e-07 7.1232e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| both sides and in a ||| 1 0.605812 8.48644e-07 1.55869e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| both sides and in ||| 0.2 0.605812 8.48644e-07 3.51644e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| both those in ||| 0.25 0.605812 8.48644e-07 5.53893e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| both through ||| 0.00884956 0.0366102 8.48644e-07 1.55777e-06 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| both throughout ||| 0.2 0.309047 8.48644e-07 4.80518e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| both to ||| 0.00477327 0.0247351 3.39458e-06 4.65614e-05 2.718 ||| 0-1 ||| 838 1.17835e+06 +en ||| both under ||| 0.0588235 0.205566 8.48644e-07 9.36684e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| both when ||| 0.0689655 0.142731 1.69729e-06 9.86164e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| both with ||| 0.0045045 0.0535436 8.48644e-07 1.9313e-05 2.718 ||| 0-1 ||| 222 1.17835e+06 +en ||| both within ||| 0.0421286 0.369196 1.61242e-05 1.83651e-05 2.718 ||| 0-1 ||| 451 1.17835e+06 +en ||| both ||| 0.000993399 0.0015168 2.6308e-05 3.61e-05 2.718 ||| 0-0 ||| 31206 1.17835e+06 +en ||| bottle in ||| 0.333333 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| bottom of ||| 0.0111111 0.0116562 1.69729e-06 1.96373e-07 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| bound in the last ||| 0.5 0.605812 8.48644e-07 3.18865e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| bound in the ||| 0.166667 0.605812 8.48644e-07 1.46e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| bound in ||| 0.1 0.605812 8.48644e-07 2.37817e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| bound to do ||| 0.2 0.0247351 8.48644e-07 4.97286e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| bound to ||| 0.00631579 0.0247351 2.54593e-06 1.44758e-06 2.718 ||| 0-1 ||| 475 1.17835e+06 +en ||| bound up quite in ||| 1 0.605812 8.48644e-07 3.16401e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| boundaries of ||| 0.00970874 0.0116562 8.48644e-07 1.07732e-07 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| bounds at ||| 0.5 0.321886 8.48644e-07 3.76019e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| boxes in ||| 0.333333 0.605812 1.69729e-06 1.84712e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| boy in ||| 0.125 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| brakes on ||| 0.0357143 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| breach of Community environment law As part ||| 0.333333 0.0116562 8.48644e-07 1.76909e-27 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| breach of Community environment law As ||| 0.333333 0.0116562 8.48644e-07 1.48388e-24 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| breach of Community environment law ||| 0.333333 0.0116562 8.48644e-07 2.4326e-19 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| breach of Community environment ||| 0.333333 0.0116562 8.48644e-07 1.37981e-15 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| breach of Community ||| 0.333333 0.0116562 8.48644e-07 2.47277e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| breach of ||| 0.00187266 0.0116562 8.48644e-07 1.52734e-07 2.718 ||| 0-1 ||| 534 1.17835e+06 +en ||| breached in ||| 0.333333 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| break down into ||| 0.125 0.525896 8.48644e-07 4.49713e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| break even on ||| 0.25 0.22993 8.48644e-07 1.47057e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| break out in ||| 0.166667 0.605812 8.48644e-07 5.14723e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| break things down in ||| 0.5 0.605812 8.48644e-07 3.85557e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| break through in ||| 0.5 0.605812 8.48644e-07 6.18543e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| breakdown in any fragile solidarity and further ||| 1 0.605812 8.48644e-07 1.52984e-24 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| breakdown in any fragile solidarity and ||| 1 0.605812 8.48644e-07 3.1654e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| breakdown in any fragile solidarity ||| 1 0.605812 8.48644e-07 2.52708e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| breakdown in any fragile ||| 1 0.605812 8.48644e-07 9.60868e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| breakdown in any ||| 1 0.605812 8.48644e-07 3.00271e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| breakdown in ||| 0.030303 0.605812 1.69729e-06 1.98566e-06 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| breaking out again to ||| 1 0.0247351 8.48644e-07 9.40175e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| breaking out in ||| 1 0.605812 2.54593e-06 2.6709e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| breaks out on ||| 0.333333 0.22993 8.48644e-07 1.71779e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| breakthrough in the suitability ||| 1 0.605812 8.48644e-07 2.39837e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| breakthrough in the ||| 0.0357143 0.605812 8.48644e-07 1.33243e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| breakthrough in ||| 0.0102041 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| breakthrough to ||| 0.25 0.0247351 8.48644e-07 1.32109e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| breath of air into ||| 0.333333 0.525896 8.48644e-07 6.4322e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| breeding ground on ||| 0.5 0.22993 8.48644e-07 8.06483e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| brewing up in ||| 1 0.605812 8.48644e-07 1.10243e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| brief in ||| 0.037037 0.605812 8.48644e-07 1.11289e-05 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| brief reference to ||| 0.0909091 0.0247351 8.48644e-07 5.77831e-11 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| briefly in ||| 0.0344828 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| briefly ||| 0.000457038 0.0168385 8.48644e-07 3.33e-05 2.718 ||| 0-0 ||| 2188 1.17835e+06 +en ||| bring about further ||| 0.166667 0.0401564 8.48644e-07 4.31208e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| bring about more ||| 0.0526316 0.0222258 8.48644e-07 2.96841e-10 2.718 ||| 0-1 0-2 ||| 19 1.17835e+06 +en ||| bring about the ||| 0.00401606 0.0401564 8.48644e-07 5.47748e-08 2.718 ||| 0-1 ||| 249 1.17835e+06 +en ||| bring about ||| 0.00595883 0.0401564 9.33509e-06 8.92217e-07 2.718 ||| 0-1 ||| 1846 1.17835e+06 +en ||| bring an end to ||| 0.00869565 0.0247351 8.48644e-07 1.69217e-11 2.718 ||| 0-3 ||| 115 1.17835e+06 +en ||| bring in ||| 0.025974 0.605812 6.78915e-06 0.000143752 2.718 ||| 0-1 ||| 308 1.17835e+06 +en ||| bring into focus ||| 0.333333 0.525896 8.48644e-07 5.3339e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| bring into ||| 0.0545455 0.525896 2.54593e-06 6.89134e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| bring it fully into line with ||| 0.2 0.525896 8.48644e-07 2.6162e-17 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| bring it fully into line ||| 0.25 0.525896 8.48644e-07 4.09133e-15 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| bring it fully into ||| 0.25 0.525896 8.48644e-07 1.38972e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| bring it in ||| 0.333333 0.605812 1.69729e-06 2.55638e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| bring itself to ||| 0.1 0.0247351 8.48644e-07 5.9387e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| bring the requirements into line with the ||| 1 0.525896 8.48644e-07 2.37632e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| bring the requirements into line with ||| 1 0.525896 8.48644e-07 3.87075e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| bring the requirements into line ||| 1 0.525896 8.48644e-07 6.05324e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| bring the requirements into ||| 1 0.525896 8.48644e-07 2.05613e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| bring the ||| 0.00132626 0.0011669 8.48644e-07 8.91781e-07 2.718 ||| 0-1 ||| 754 1.17835e+06 +en ||| bring them into ||| 0.166667 0.525896 1.69729e-06 1.84853e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| bring themselves into line ||| 0.333333 0.525896 8.48644e-07 8.7178e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| bring themselves into ||| 1 0.525896 8.48644e-07 2.96121e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| bring to bear in ||| 1 0.605812 8.48644e-07 1.91221e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| bring to ||| 0.00990099 0.0247351 2.54593e-06 8.75011e-06 2.718 ||| 0-1 ||| 303 1.17835e+06 +en ||| bring up in ||| 0.25 0.605812 8.48644e-07 4.90268e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| bring us into ||| 0.0769231 0.525896 8.48644e-07 1.98622e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| bring with ||| 0.0238095 0.0535436 8.48644e-07 3.62942e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| bringing about ||| 0.00808625 0.0401564 2.54593e-06 2.30148e-07 2.718 ||| 0-1 ||| 371 1.17835e+06 +en ||| bringing into ||| 0.0526316 0.525896 8.48644e-07 1.77763e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| bringing this on ||| 1 0.22993 8.48644e-07 4.30897e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| bringing up ||| 0.0102041 0.0147069 8.48644e-07 5.5407e-08 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| brings in ||| 0.0384615 0.605812 8.48644e-07 1.87945e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| brings with ||| 0.0238095 0.0535436 8.48644e-07 4.74517e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| broached in ||| 1 0.605812 1.69729e-06 3.23247e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| broadcast by ||| 0.0526316 0.0468744 8.48644e-07 5.18933e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| broadcast in ||| 0.0555556 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| broadcast on ||| 0.0416667 0.22993 8.48644e-07 5.06595e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| broadcasting in ||| 0.0285714 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| broadly - to ||| 0.5 0.0247351 8.48644e-07 1.18751e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| broadly follows ||| 0.125 0.194565 8.48644e-07 1.28864e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| broadly in ||| 0.0454545 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| broadly into ||| 0.5 0.525896 8.48644e-07 2.47938e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| broadly scattered ||| 1 0.194565 8.48644e-07 1.7052e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| broadly shared by ||| 0.2 0.194565 8.48644e-07 3.4531e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| broadly shared ||| 0.142857 0.194565 8.48644e-07 6.5772e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| broadly speaking , ||| 0.00934579 0.194565 8.48644e-07 3.33499e-09 2.718 ||| 0-0 ||| 107 1.17835e+06 +en ||| broadly speaking ||| 0.00854701 0.194565 8.48644e-07 2.79653e-08 2.718 ||| 0-0 ||| 117 1.17835e+06 +en ||| broadly supported ||| 0.0555556 0.194565 8.48644e-07 1.26185e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| broadly to ||| 0.0625 0.194565 8.48644e-07 2.16459e-05 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| broadly unchanged ||| 0.125 0.194565 8.48644e-07 7.7952e-10 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| broadly ||| 0.0126147 0.194565 9.33509e-06 0.0002436 2.718 ||| 0-0 ||| 872 1.17835e+06 +en ||| broke out as early as ||| 1 0.066968 8.48644e-07 4.61713e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| broke out in ||| 0.05 0.605812 8.48644e-07 1.71574e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| broke out on ||| 0.25 0.22993 8.48644e-07 3.08565e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| broken down at ||| 1 0.321886 8.48644e-07 8.34969e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| broken down ||| 0.00729927 0.0183476 8.48644e-07 6.59295e-09 2.718 ||| 0-1 ||| 137 1.17835e+06 +en ||| broken into ||| 0.0833333 0.525896 8.48644e-07 6.61905e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| broken up in ||| 0.111111 0.605812 8.48644e-07 4.70896e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| broken up into ||| 0.25 0.525896 8.48644e-07 2.25743e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| brought a gentle breath of air into ||| 0.333333 0.525896 8.48644e-07 8.78146e-24 2.718 ||| 0-6 ||| 3 1.17835e+06 +en ||| brought about , ||| 0.0909091 0.0401564 8.48644e-07 9.57029e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| brought about ||| 0.0123967 0.0401564 5.09187e-06 8.02508e-07 2.718 ||| 0-1 ||| 484 1.17835e+06 +en ||| brought at ||| 0.166667 0.321886 8.48644e-07 1.12006e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| brought back into line ||| 0.333333 0.525896 8.48644e-07 1.22738e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| brought back into ||| 0.125 0.525896 8.48644e-07 4.16907e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| brought before ||| 0.00636943 0.0175291 8.48644e-07 9.5452e-08 2.718 ||| 0-1 ||| 157 1.17835e+06 +en ||| brought down ||| 0.0175439 0.0183476 8.48644e-07 6.174e-08 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| brought forward by ||| 0.0416667 0.0468744 8.48644e-07 1.32534e-09 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| brought forward in ||| 0.25 0.605812 8.48644e-07 7.19418e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| brought forward to ||| 0.0344828 0.0247351 8.48644e-07 4.37905e-09 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| brought home to me in ||| 1 0.605812 8.48644e-07 7.02144e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| brought in as early ||| 1 0.605812 8.48644e-07 8.93244e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| brought in as ||| 0.5 0.605812 8.48644e-07 1.31942e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| brought in at ||| 0.222222 0.605812 1.69729e-06 5.41425e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| brought in ||| 0.0432099 0.605812 5.94051e-06 0.000129299 2.718 ||| 0-1 ||| 162 1.17835e+06 +en ||| brought into balance ||| 0.25 0.525896 8.48644e-07 3.34716e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| brought into being ||| 0.0769231 0.525896 8.48644e-07 1.76395e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| brought into focus ||| 0.125 0.525896 8.48644e-07 4.7976e-10 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| brought into line ||| 0.0149254 0.525896 8.48644e-07 1.82482e-09 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| brought into question ||| 0.0769231 0.525896 8.48644e-07 5.12797e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| brought into ||| 0.0714286 0.525896 1.61242e-05 6.19844e-06 2.718 ||| 0-1 ||| 266 1.17835e+06 +en ||| brought to bear on ||| 0.05 0.22993 8.48644e-07 3.0932e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| brought to light - and since we ||| 1 0.0054082 8.48644e-07 6.27675e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| brought to ||| 0.00730816 0.0247351 5.09187e-06 7.87032e-06 2.718 ||| 0-1 ||| 821 1.17835e+06 +en ||| brought together by us under ||| 1 0.205566 8.48644e-07 1.43892e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| brought together in ||| 0.05 0.605812 8.48644e-07 7.76568e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| brought together under ||| 0.333333 0.205566 8.48644e-07 9.50923e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| brought under ||| 0.0588235 0.205566 1.69729e-06 1.58329e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| brought up during ||| 0.142857 0.226251 8.48644e-07 2.76102e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| brought up in ||| 0.0444444 0.605812 1.69729e-06 4.40973e-07 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| brought up to a ||| 0.166667 0.0247351 8.48644e-07 1.18978e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| brought up to ||| 0.0645161 0.0247351 1.69729e-06 2.68417e-08 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| brought up ||| 0.00408163 0.0147069 8.48644e-07 1.932e-07 2.718 ||| 0-1 ||| 245 1.17835e+06 +en ||| brought within ||| 0.0526316 0.369196 1.69729e-06 3.10428e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| brunt of ||| 0.012987 0.0116562 8.48644e-07 4.36384e-08 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| brushed under ||| 0.2 0.205566 8.48644e-07 1.24401e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| bud in ||| 0.5 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| budget , in ||| 0.0285714 0.605812 8.48644e-07 6.79558e-06 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| budget - in other words ||| 1 0.605812 8.48644e-07 6.29333e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| budget - in other ||| 1 0.605812 8.48644e-07 2.78466e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| budget - in ||| 0.5 0.605812 8.48644e-07 2.14949e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| budget agreed in ||| 1 0.605812 8.48644e-07 4.45043e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| budget and the 25 posts in ||| 1 0.605812 8.48644e-07 4.16025e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| budget for ||| 0.000714286 0.0286209 8.48644e-07 1.41974e-06 2.718 ||| 0-1 ||| 1400 1.17835e+06 +en ||| budget in ||| 0.0075188 0.605812 1.69729e-06 5.69838e-05 2.718 ||| 0-1 ||| 266 1.17835e+06 +en ||| budget on ||| 0.0119048 0.22993 8.48644e-07 1.02482e-05 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| budget should be spent at ||| 1 0.321886 8.48644e-07 2.54088e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| budgetary considerations ||| 0.0625 0.0130416 8.48644e-07 4.642e-10 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| budgetary problems inherent in ||| 0.5 0.605812 8.48644e-07 1.6633e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| budgeted expenditure by ||| 1 0.0468744 8.48644e-07 2.82606e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| budgeting ||| 0.00420168 0.0953488 8.48644e-07 2.79e-05 2.718 ||| 0-0 ||| 238 1.17835e+06 +en ||| budgets for ||| 0.0128205 0.0286209 8.48644e-07 9.89447e-08 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| budgets of ||| 0.00746269 0.0116562 8.48644e-07 1.17278e-07 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| build on ||| 0.00742574 0.22993 2.54593e-06 3.28872e-06 2.718 ||| 0-1 ||| 404 1.17835e+06 +en ||| build up in ||| 0.142857 0.605812 8.48644e-07 6.23662e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| build within ||| 0.5 0.369196 8.48644e-07 4.39033e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| building in ||| 0.078125 0.605812 4.24322e-06 2.69218e-05 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| building on ||| 0.00473934 0.22993 8.48644e-07 4.84172e-06 2.718 ||| 0-1 ||| 211 1.17835e+06 +en ||| building site on ||| 0.5 0.22993 8.48644e-07 9.24769e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| building up in ||| 0.166667 0.605812 8.48644e-07 9.18169e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| building up ||| 0.00806452 0.0147069 1.69729e-06 4.0227e-08 2.718 ||| 0-1 ||| 248 1.17835e+06 +en ||| buildings in ||| 0.0232558 0.605812 1.69729e-06 3.50954e-06 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| buildings ||| 0.000547345 0.0008814 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 1827 1.17835e+06 +en ||| built at all ||| 0.25 0.321886 8.48644e-07 9.39456e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| built at ||| 0.222222 0.321886 1.69729e-06 1.9881e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| built by means of ||| 0.25 0.0468744 8.48644e-07 1.45658e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| built by means ||| 0.25 0.0468744 8.48644e-07 2.6793e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| built by ||| 0.0238095 0.0468744 8.48644e-07 4.22803e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| built for ||| 0.0526316 0.0286209 8.48644e-07 5.71808e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| built in ||| 0.0606061 0.605812 5.09187e-06 2.29505e-05 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| built into ||| 0.0923077 0.525896 5.09187e-06 1.10022e-06 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| built on ||| 0.00677966 0.22993 1.69729e-06 4.12751e-06 2.718 ||| 0-1 ||| 295 1.17835e+06 +en ||| built to the ||| 0.5 0.0247351 8.48644e-07 8.57633e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| built to ||| 0.0454545 0.0247351 8.48644e-07 1.39698e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| built up over ||| 0.0178571 0.157937 8.48644e-07 6.79228e-10 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| built up to ||| 0.5 0.0247351 8.48644e-07 4.76441e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| bulb in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| bulkheads on ||| 1 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| burden increasingly on ||| 1 0.22993 8.48644e-07 2.08086e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| burden on ||| 0.00852273 0.22993 2.54593e-06 3.61261e-06 2.718 ||| 0-1 ||| 352 1.17835e+06 +en ||| buried in ||| 0.0384615 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| burning along ||| 1 0.155535 8.48644e-07 3.73885e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| burning in ||| 1 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| bury one 's head in ||| 1 0.605812 8.48644e-07 1.06004e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| bus in ||| 0.2 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| business across ||| 0.166667 0.274879 8.48644e-07 2.56582e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| business as ||| 0.00636943 0.066968 8.48644e-07 2.24669e-06 2.718 ||| 0-1 ||| 157 1.17835e+06 +en ||| business at ||| 0.111111 0.321886 8.48644e-07 4.99625e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| business in ||| 0.0137615 0.605812 2.54593e-06 5.76765e-05 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| business of ||| 0.00961538 0.0116562 1.69729e-06 1.70326e-06 2.718 ||| 0-1 ||| 208 1.17835e+06 +en ||| business out of horses ||| 0.5 0.0116562 8.48644e-07 1.43532e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| business out of ||| 0.333333 0.0116562 8.48644e-07 6.52417e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| businesses , leaving them with ||| 0.5 0.0535436 8.48644e-07 2.3611e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| businesses - in ||| 1 0.605812 8.48644e-07 4.63341e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| businesses have in ||| 0.333333 0.605812 8.48644e-07 1.46907e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| businesses in ||| 0.00396825 0.605812 8.48644e-07 1.22834e-05 2.718 ||| 0-1 ||| 252 1.17835e+06 +en ||| but , as ||| 0.00132979 0.066968 8.48644e-07 1.46599e-06 2.718 ||| 0-2 ||| 752 1.17835e+06 +en ||| but , in the ||| 0.00961538 0.605812 8.48644e-07 2.31045e-06 2.718 ||| 0-2 ||| 104 1.17835e+06 +en ||| but , in ||| 0.00301659 0.605812 1.69729e-06 3.76345e-05 2.718 ||| 0-2 ||| 663 1.17835e+06 +en ||| but , of ||| 0.02 0.0116562 8.48644e-07 1.1114e-06 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| but , on ||| 0.00384615 0.22993 8.48644e-07 6.76833e-06 2.718 ||| 0-2 ||| 260 1.17835e+06 +en ||| but , rather , reinforced ||| 0.5 0.16257 8.48644e-07 1.646e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| but , rather , ||| 0.0106383 0.16257 8.48644e-07 2.53231e-08 2.718 ||| 0-2 ||| 94 1.17835e+06 +en ||| but , rather ||| 0.00961538 0.16257 8.48644e-07 2.12345e-07 2.718 ||| 0-2 ||| 104 1.17835e+06 +en ||| but , ||| 0.000327815 0.001622 1.69729e-06 2.09411e-05 2.718 ||| 0-0 ||| 6101 1.17835e+06 +en ||| but I cannot ||| 0.00413223 0.001622 8.48644e-07 2.79847e-10 2.718 ||| 0-0 ||| 242 1.17835e+06 +en ||| but I do have ||| 0.0322581 0.001622 8.48644e-07 5.10326e-11 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| but I do ||| 0.00680272 0.001622 8.48644e-07 4.26701e-09 2.718 ||| 0-0 ||| 147 1.17835e+06 +en ||| but I pointed out at ||| 1 0.321886 8.48644e-07 3.41457e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| but I ||| 0.000436205 0.001622 1.69729e-06 1.24211e-06 2.718 ||| 0-0 ||| 4585 1.17835e+06 +en ||| but a piece of ||| 1 0.0116562 8.48644e-07 3.95332e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| but a thoroughgoing revision of ||| 1 0.0116562 8.48644e-07 5.22566e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| but a ||| 0.00104275 0.001622 1.69729e-06 7.78361e-06 2.718 ||| 0-0 ||| 1918 1.17835e+06 +en ||| but actually ||| 0.00714286 0.125341 8.48644e-07 9.17943e-07 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| but also in a ||| 0.030303 0.605812 8.48644e-07 7.06218e-08 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| but also in terms of minimizing the ||| 1 0.605812 8.48644e-07 2.33458e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| but also in terms of minimizing ||| 1 0.605812 8.48644e-07 3.80275e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| but also in terms of ||| 0.00877193 0.605812 8.48644e-07 9.50687e-11 2.718 ||| 0-2 ||| 114 1.17835e+06 +en ||| but also in terms ||| 0.00813008 0.605812 8.48644e-07 1.74874e-09 2.718 ||| 0-2 ||| 123 1.17835e+06 +en ||| but also in ||| 0.00286369 0.605812 4.24322e-06 1.59324e-06 2.718 ||| 0-2 ||| 1746 1.17835e+06 +en ||| but also the ||| 0.000570125 0.001622 8.48644e-07 5.44259e-08 2.718 ||| 0-0 ||| 1754 1.17835e+06 +en ||| but also ||| 0.000269966 0.001622 5.09187e-06 8.86534e-07 2.718 ||| 0-0 ||| 22225 1.17835e+06 +en ||| but as ||| 0.00164339 0.034295 1.69729e-06 3.15868e-06 2.718 ||| 0-0 0-1 ||| 1217 1.17835e+06 +en ||| but at ||| 0.00609013 0.321886 4.24322e-06 2.73374e-05 2.718 ||| 0-1 ||| 821 1.17835e+06 +en ||| but certainly not ||| 0.0128205 0.001622 8.48644e-07 1.50179e-10 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| but certainly ||| 0.00584795 0.001622 8.48644e-07 4.39878e-08 2.718 ||| 0-0 ||| 171 1.17835e+06 +en ||| but criminal law ||| 0.5 0.001622 8.48644e-07 1.29096e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| but criminal ||| 0.5 0.001622 8.48644e-07 7.32252e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| but for ||| 0.0017094 0.0286209 1.69729e-06 7.86265e-06 2.718 ||| 0-1 ||| 1170 1.17835e+06 +en ||| but from ||| 0.00458716 0.0308834 8.48644e-07 2.60041e-06 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| but has ||| 0.00348432 0.001622 8.48644e-07 9.03901e-07 2.718 ||| 0-0 ||| 287 1.17835e+06 +en ||| but have ||| 0.00398406 0.001622 8.48644e-07 2.10014e-06 2.718 ||| 0-0 ||| 251 1.17835e+06 +en ||| but hidden in ||| 1 0.605812 8.48644e-07 2.27218e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| but holocausts all over ||| 1 0.157937 8.48644e-07 5.17624e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| but in a ||| 0.00584795 0.605812 8.48644e-07 1.39884e-05 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| but in addition to ||| 0.0588235 0.001622 8.48644e-07 3.29309e-11 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| but in addition ||| 0.0263158 0.001622 8.48644e-07 3.70601e-10 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| but in the end it is up ||| 0.2 0.605812 8.48644e-07 1.60233e-14 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| but in the end it is ||| 0.166667 0.605812 8.48644e-07 4.69823e-12 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| but in the end it ||| 0.111111 0.605812 8.48644e-07 1.49907e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| but in the end ||| 0.0147059 0.605812 8.48644e-07 8.42967e-09 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| but in the ||| 0.00176678 0.605812 8.48644e-07 1.93741e-05 2.718 ||| 0-1 ||| 566 1.17835e+06 +en ||| but in ||| 0.0104762 0.605812 2.80053e-05 0.000315581 2.718 ||| 0-1 ||| 3150 1.17835e+06 +en ||| but is it not possible for a ||| 1 0.0286209 8.48644e-07 5.3193e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| but is it not possible for ||| 1 0.0286209 8.48644e-07 1.20005e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| but is more concerned with making a ||| 0.5 0.0042952 8.48644e-07 1.2499e-18 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| but is more concerned with making ||| 0.5 0.0042952 8.48644e-07 2.8198e-17 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| but is more concerned with ||| 0.5 0.0042952 8.48644e-07 7.32988e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| but is more concerned ||| 0.5 0.0042952 8.48644e-07 1.14628e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| but is more ||| 0.125 0.0042952 8.48644e-07 7.12594e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| but it is by ||| 0.166667 0.0468744 8.48644e-07 3.24027e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| but it is not a ||| 0.0142857 0.001622 8.48644e-07 1.48109e-11 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| but it is not ||| 0.0014556 0.001622 8.48644e-07 3.34137e-10 2.718 ||| 0-0 ||| 687 1.17835e+06 +en ||| but it is ||| 0.000832871 0.001622 2.54593e-06 9.78698e-08 2.718 ||| 0-0 ||| 3602 1.17835e+06 +en ||| but it must be a two-way ||| 1 0.001622 8.48644e-07 4.2649e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| but it must be a ||| 0.0454545 0.001622 8.48644e-07 3.87718e-12 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| but it must be ||| 0.00571429 0.001622 8.48644e-07 8.747e-11 2.718 ||| 0-0 ||| 175 1.17835e+06 +en ||| but it must ||| 0.00619195 0.001622 1.69729e-06 4.82649e-09 2.718 ||| 0-0 ||| 323 1.17835e+06 +en ||| but it ||| 0.00110084 0.001622 4.24322e-06 3.12273e-06 2.718 ||| 0-0 ||| 4542 1.17835e+06 +en ||| but not in ||| 0.00458716 0.605812 8.48644e-07 1.07743e-06 2.718 ||| 0-2 ||| 218 1.17835e+06 +en ||| but not ||| 0.000249875 0.001622 8.48644e-07 5.99516e-07 2.718 ||| 0-0 ||| 4002 1.17835e+06 +en ||| but of ||| 0.00131926 0.0116562 8.48644e-07 9.31953e-06 2.718 ||| 0-1 ||| 758 1.17835e+06 +en ||| but on ||| 0.00298211 0.115776 2.54593e-06 1.45833e-05 2.718 ||| 0-0 0-1 ||| 1006 1.17835e+06 +en ||| but ones where ||| 0.25 0.247783 8.48644e-07 1.28627e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| but only in ||| 0.012987 0.605812 8.48644e-07 3.51273e-07 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| but only together , ||| 0.5 0.001622 8.48644e-07 1.39997e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| but only together ||| 0.333333 0.001622 8.48644e-07 1.17393e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| but only ||| 0.000980392 0.001622 8.48644e-07 1.9546e-07 2.718 ||| 0-0 ||| 1020 1.17835e+06 +en ||| but rather on ||| 0.0333333 0.22993 8.48644e-07 1.73785e-08 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| but rather ||| 0.000459137 0.16257 8.48644e-07 1.7806e-06 2.718 ||| 0-1 ||| 2178 1.17835e+06 +en ||| but still ensure ||| 0.5 0.001622 8.48644e-07 5.93062e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| but still in ||| 0.25 0.605812 8.48644e-07 2.37696e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| but still ||| 0.00956938 0.001622 1.69729e-06 1.32262e-07 2.718 ||| 0-0 ||| 209 1.17835e+06 +en ||| but surely in ||| 0.333333 0.605812 8.48644e-07 2.01025e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| but the ||| 0.00011976 0.001622 8.48644e-07 1.07804e-05 2.718 ||| 0-0 ||| 8350 1.17835e+06 +en ||| but these have not been fulfilled in ||| 1 0.605812 8.48644e-07 5.13183e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| but they are also sensitive ||| 1 0.001622 8.48644e-07 8.51746e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| but they are also ||| 0.0144928 0.001622 8.48644e-07 4.39044e-11 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| but they are ||| 0.00215517 0.001622 8.48644e-07 8.69636e-09 2.718 ||| 0-0 ||| 464 1.17835e+06 +en ||| but they ||| 0.000877193 0.001622 8.48644e-07 5.73158e-07 2.718 ||| 0-0 ||| 1140 1.17835e+06 +en ||| but this is ||| 0.0017331 0.001622 8.48644e-07 3.55603e-08 2.718 ||| 0-0 ||| 577 1.17835e+06 +en ||| but this ||| 0.000404531 0.001622 8.48644e-07 1.13462e-06 2.718 ||| 0-0 ||| 2472 1.17835e+06 +en ||| but to be fair , ||| 0.333333 0.0247351 8.48644e-07 2.15052e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| but to be fair ||| 0.333333 0.0247351 8.48644e-07 1.8033e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| but to be ||| 0.0185185 0.0247351 8.48644e-07 3.48127e-07 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| but to vote ||| 0.142857 0.001622 8.48644e-07 2.45443e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| but to which I would also ||| 1 0.0247351 8.48644e-07 3.41979e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| but to which I would ||| 1 0.0247351 8.48644e-07 6.77374e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| but to which I ||| 0.5 0.0247351 8.48644e-07 1.15422e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| but to which ||| 0.142857 0.0247351 8.48644e-07 1.63175e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| but to ||| 0.00176678 0.001622 3.39458e-06 1.56035e-05 2.718 ||| 0-0 ||| 2264 1.17835e+06 +en ||| but very many places in ||| 1 0.605812 8.48644e-07 1.99415e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| but what is the ||| 0.0238095 0.001622 8.48644e-07 4.74065e-10 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| but what is ||| 0.00460829 0.001622 8.48644e-07 7.72196e-09 2.718 ||| 0-0 ||| 217 1.17835e+06 +en ||| but what ||| 0.000830565 0.001622 8.48644e-07 2.46384e-07 2.718 ||| 0-0 ||| 1204 1.17835e+06 +en ||| but when ||| 0.00459418 0.142731 2.54593e-06 4.06849e-06 2.718 ||| 0-1 ||| 653 1.17835e+06 +en ||| but where ||| 0.00387597 0.247783 8.48644e-07 5.82024e-06 2.718 ||| 0-1 ||| 258 1.17835e+06 +en ||| but which in ||| 0.04 0.605812 8.48644e-07 2.68074e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| but which ||| 0.000519211 0.001622 8.48644e-07 1.49165e-06 2.718 ||| 0-0 ||| 1926 1.17835e+06 +en ||| but ||| 0.000816299 0.001622 0.000123053 0.0001756 2.718 ||| 0-0 ||| 177631 1.17835e+06 +en ||| buy a pig in ||| 1 0.605812 8.48644e-07 1.6811e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| by , ||| 0.0269231 0.0468744 5.94051e-06 0.00101451 2.718 ||| 0-0 ||| 260 1.17835e+06 +en ||| by - ||| 0.142857 0.0468744 8.48644e-07 3.20896e-05 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| by : ||| 0.05 0.0468744 8.48644e-07 2.86519e-06 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| by Brussels in ||| 0.5 0.605812 8.48644e-07 2.71532e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| by EMU ||| 0.111111 0.0468744 8.48644e-07 7.31611e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| by EUR ||| 0.0238095 0.0468744 8.48644e-07 2.2748e-06 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| by European ||| 0.0117647 0.0468744 8.48644e-07 2.84469e-05 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| by Germany ||| 0.0111111 0.0468744 8.48644e-07 2.20334e-07 2.718 ||| 0-0 ||| 90 1.17835e+06 +en ||| by Mr Perry , suggests ||| 1 0.0468744 8.48644e-07 6.49028e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by Mr Perry , ||| 0.2 0.0468744 8.48644e-07 4.63591e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| by Mr Perry ||| 0.1 0.0468744 8.48644e-07 3.8874e-12 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| by Mr ||| 0.000239464 0.0468744 1.69729e-06 5.55343e-06 2.718 ||| 0-0 ||| 8352 1.17835e+06 +en ||| by Mrs Schaffner , ||| 0.2 0.0468744 8.48644e-07 3.79833e-14 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| by Mrs Schaffner ||| 0.166667 0.0468744 8.48644e-07 3.18506e-13 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| by Mrs ||| 0.000290698 0.0468744 8.48644e-07 7.96265e-07 2.718 ||| 0-0 ||| 3440 1.17835e+06 +en ||| by Parliament - is ||| 0.5 0.0468744 8.48644e-07 5.77286e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by Parliament - ||| 0.0416667 0.0468744 8.48644e-07 1.84194e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| by Parliament anyway ||| 1 0.0468744 8.48644e-07 1.73837e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by Parliament was in excess of the ||| 1 0.605812 8.48644e-07 1.57153e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| by Parliament was in excess of ||| 1 0.605812 8.48644e-07 2.55983e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| by Parliament was in excess ||| 1 0.605812 8.48644e-07 4.70869e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| by Parliament was in ||| 1 0.605812 8.48644e-07 4.35989e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| by Parliament ||| 0.00176866 0.0468744 4.24322e-06 4.88308e-06 2.718 ||| 0-0 ||| 2827 1.17835e+06 +en ||| by Russia ||| 0.00606061 0.0468744 8.48644e-07 3.42836e-07 2.718 ||| 0-0 ||| 165 1.17835e+06 +en ||| by a further ||| 0.0357143 0.0468744 8.48644e-07 1.82245e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| by a long ||| 0.03125 0.0468744 8.48644e-07 1.27568e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| by a number of ||| 0.00420168 0.0468744 8.48644e-07 1.01433e-08 2.718 ||| 0-0 ||| 238 1.17835e+06 +en ||| by a number ||| 0.00355872 0.0468744 8.48644e-07 1.86581e-07 2.718 ||| 0-0 ||| 281 1.17835e+06 +en ||| by a situation ||| 0.111111 0.0468744 8.48644e-07 1.94198e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| by a sum of ||| 0.166667 0.0468744 8.48644e-07 8.63041e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| by a sum ||| 0.5 0.0468744 8.48644e-07 1.58752e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by a ||| 0.00606659 0.0468744 3.64917e-05 0.000377084 2.718 ||| 0-0 ||| 7088 1.17835e+06 +en ||| by about ||| 0.108108 0.0401564 3.39458e-06 1.50473e-05 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| by accident ||| 0.025641 0.0468744 8.48644e-07 1.16547e-07 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| by accommodation addresses on ||| 0.5 0.22993 8.48644e-07 6.32218e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| by account having to be taken of ||| 1 0.0116562 8.48644e-07 1.15689e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| by actually ||| 0.0833333 0.125341 8.48644e-07 7.05193e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| by adopting ||| 0.00273973 0.0468744 1.69729e-06 4.15997e-07 2.718 ||| 0-0 ||| 730 1.17835e+06 +en ||| by agreement ||| 0.0166667 0.0468744 8.48644e-07 1.56786e-06 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| by aid , ||| 1 0.0468744 8.48644e-07 1.32495e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by aid ||| 0.111111 0.0468744 8.48644e-07 1.11103e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| by all ||| 0.00157398 0.0468744 2.54593e-06 4.01995e-05 2.718 ||| 0-0 ||| 1906 1.17835e+06 +en ||| by an estimated ||| 0.5 0.0468744 8.48644e-07 5.44486e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by an example in ||| 1 0.605812 8.48644e-07 3.13681e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| by an individual in ||| 1 0.0468744 8.48644e-07 1.1444e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by an individual ||| 0.2 0.0468744 8.48644e-07 5.34655e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| by an understanding ||| 0.5 0.0468744 8.48644e-07 1.27803e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by an ||| 0.00237906 0.0468744 2.54593e-06 3.78115e-05 2.718 ||| 0-0 ||| 1261 1.17835e+06 +en ||| by and do nothing ||| 0.111111 0.0468744 8.48644e-07 6.81242e-11 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| by and do ||| 0.25 0.0468744 8.48644e-07 3.66062e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| by and large , ||| 0.0125 0.0468744 8.48644e-07 1.95317e-09 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| by and large ||| 0.0135135 0.0468744 1.69729e-06 1.63781e-08 2.718 ||| 0-0 ||| 148 1.17835e+06 +en ||| by and ||| 0.257463 0.0468744 5.85565e-05 0.000106559 2.718 ||| 0-0 ||| 268 1.17835e+06 +en ||| by any ||| 0.00225225 0.0468744 8.48644e-07 1.28644e-05 2.718 ||| 0-0 ||| 444 1.17835e+06 +en ||| by applying ||| 0.00487805 0.0468744 8.48644e-07 2.81585e-07 2.718 ||| 0-0 ||| 205 1.17835e+06 +en ||| by around ||| 0.0422535 0.159384 2.54593e-06 6.05914e-06 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| by as much as EUR ||| 1 0.066968 8.48644e-07 2.58643e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| by as much as ||| 0.151515 0.066968 4.24322e-06 9.67252e-10 2.718 ||| 0-3 ||| 33 1.17835e+06 +en ||| by as much ||| 0.111111 0.0468744 1.69729e-06 8.7131e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| by as ||| 0.0967742 0.0468744 2.54593e-06 8.68099e-05 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| by assessments ||| 0.333333 0.0468744 8.48644e-07 4.93412e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| by at ||| 0.00980392 0.321886 8.48644e-07 0.000210015 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| by attending ||| 0.2 0.0468744 8.48644e-07 7.31611e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| by austerity , ||| 0.5 0.0468744 8.48644e-07 1.82612e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by austerity ||| 0.333333 0.0468744 8.48644e-07 1.53128e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| by balancing ||| 0.111111 0.0468744 8.48644e-07 3.65805e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| by being able to ||| 0.1 0.0468744 8.48644e-07 1.79605e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| by being able ||| 0.142857 0.0468744 8.48644e-07 2.02125e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| by being ||| 0.00469484 0.0468744 8.48644e-07 2.42095e-05 2.718 ||| 0-0 ||| 213 1.17835e+06 +en ||| by believing ||| 0.166667 0.0468744 8.48644e-07 7.06089e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| by between ||| 0.0357143 0.0252365 8.48644e-07 1.13995e-06 2.718 ||| 0-0 0-1 ||| 28 1.17835e+06 +en ||| by bit or ||| 1 0.0468744 8.48644e-07 7.70312e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by bit ||| 0.04 0.0468744 8.48644e-07 6.73762e-07 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| by bodies ||| 0.0384615 0.0468744 8.48644e-07 3.39433e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| by both ||| 0.0034188 0.0468744 1.69729e-06 1.4092e-05 2.718 ||| 0-0 ||| 585 1.17835e+06 +en ||| by carrying over ||| 0.5 0.0468744 8.48644e-07 2.47818e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by carrying ||| 0.0204082 0.0468744 8.48644e-07 5.1468e-07 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| by case ||| 0.0238095 0.0468744 8.48644e-07 9.10175e-06 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| by changes ||| 0.0344828 0.0468744 8.48644e-07 4.34713e-07 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| by citizens and in ||| 1 0.605812 8.48644e-07 3.31009e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| by coming forward ||| 0.142857 0.0468744 8.48644e-07 9.1969e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| by coming ||| 0.0769231 0.0468744 8.48644e-07 1.65293e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| by companies in ||| 0.0769231 0.605812 8.48644e-07 1.70193e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| by comparison ||| 0.0120482 0.0468744 8.48644e-07 1.19099e-07 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| by considerations of ||| 0.2 0.0468744 8.48644e-07 1.21632e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| by considerations ||| 0.111111 0.0468744 8.48644e-07 2.23737e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| by convincing them ||| 1 0.0468744 8.48644e-07 1.39199e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by convincing ||| 0.111111 0.0468744 8.48644e-07 5.18933e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| by cronies ||| 1 0.0468744 8.48644e-07 5.95497e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by cutting ||| 0.00952381 0.0468744 8.48644e-07 1.25905e-07 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| by deliberate abuse of ||| 1 0.0468744 8.48644e-07 3.50005e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by deliberate abuse ||| 1 0.0468744 8.48644e-07 6.43817e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by deliberate ||| 1 0.0468744 8.48644e-07 3.65805e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by delivering an opinion on ||| 1 0.22993 8.48644e-07 4.47037e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| by describing ||| 0.0416667 0.0468744 8.48644e-07 4.93412e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| by developing and implementing power generation projects ||| 0.5 0.279045 8.48644e-07 1.13158e-24 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| by developing and implementing power generation ||| 0.5 0.279045 8.48644e-07 2.2953e-20 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| by developing and implementing power ||| 0.5 0.279045 8.48644e-07 1.30415e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| by developing and implementing ||| 0.333333 0.279045 8.48644e-07 8.7351e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| by developing and ||| 0.0909091 0.279045 8.48644e-07 3.03302e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| by developing ||| 0.00348432 0.279045 8.48644e-07 2.4214e-05 2.718 ||| 0-1 ||| 287 1.17835e+06 +en ||| by discriminating ||| 0.25 0.0468744 8.48644e-07 9.35781e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| by dispersion in ||| 0.5 0.605812 8.48644e-07 9.69759e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| by either ||| 0.0172414 0.0468744 8.48644e-07 7.36545e-06 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| by enabling ||| 0.03125 0.0468744 8.48644e-07 2.8754e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| by encouraging ||| 0.00408163 0.0468744 8.48644e-07 2.02469e-07 2.718 ||| 0-0 ||| 245 1.17835e+06 +en ||| by endangering the ||| 0.5 0.178731 8.48644e-07 4.68995e-08 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| by endangering ||| 0.333333 0.178731 8.48644e-07 7.63938e-07 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| by entering ||| 0.0666667 0.0468744 8.48644e-07 1.3186e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| by equipping ||| 0.25 0.0468744 8.48644e-07 9.35781e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| by events in ||| 0.0909091 0.605812 8.48644e-07 1.76254e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| by everybody within ||| 1 0.369196 8.48644e-07 3.95803e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| by example . it is ||| 1 0.0468744 8.48644e-07 4.18068e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by example . it ||| 1 0.0468744 8.48644e-07 1.33393e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by example . ||| 0.0243902 0.0468744 8.48644e-07 7.50107e-09 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| by example ||| 0.00943396 0.0468744 8.48644e-07 2.47642e-06 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| by far ||| 0.00857143 0.0468744 2.54593e-06 5.8078e-06 2.718 ||| 0-0 ||| 350 1.17835e+06 +en ||| by fellow Members ||| 0.0454545 0.0468744 8.48644e-07 8.26911e-11 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| by fellow ||| 0.0526316 0.0468744 8.48644e-07 5.60618e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| by fire ||| 0.0333333 0.0468744 8.48644e-07 1.53128e-07 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| by focusing them on ||| 0.5 0.22993 8.48644e-07 2.36251e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| by following ||| 0.0181818 0.0468744 8.48644e-07 1.08721e-06 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| by force when ||| 0.5 0.142731 8.48644e-07 5.31967e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| by giving into ||| 1 0.525896 8.48644e-07 1.83168e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| by going too far in ||| 1 0.605812 8.48644e-07 1.92781e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| by having ||| 0.00934579 0.0468744 1.69729e-06 3.25737e-06 2.718 ||| 0-0 ||| 214 1.17835e+06 +en ||| by helping with ||| 1 0.0468744 8.48644e-07 2.05627e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by helping ||| 0.0168067 0.0468744 1.69729e-06 3.21568e-07 2.718 ||| 0-0 ||| 119 1.17835e+06 +en ||| by her ||| 0.0140845 0.0468744 8.48644e-07 2.31478e-06 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| by his asking ||| 1 0.0468744 8.48644e-07 1.10436e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by his ||| 0.00413223 0.0468744 8.48644e-07 2.55638e-06 2.718 ||| 0-0 ||| 242 1.17835e+06 +en ||| by in ||| 0.45 0.605812 7.6378e-06 0.0024244 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| by inching ||| 1 0.0468744 8.48644e-07 3.40284e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by introducing ||| 0.00178571 0.0468744 8.48644e-07 2.66272e-07 2.718 ||| 0-0 ||| 560 1.17835e+06 +en ||| by involving them in ||| 0.333333 0.605812 1.69729e-06 2.0355e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| by it in ||| 0.333333 0.605812 1.69729e-06 4.31135e-05 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| by it ||| 0.00913242 0.0468744 1.69729e-06 0.000151283 2.718 ||| 0-0 ||| 219 1.17835e+06 +en ||| by its meeting in ||| 1 0.605812 8.48644e-07 4.33827e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| by its ||| 0.00187091 0.0468744 1.69729e-06 1.21201e-05 2.718 ||| 0-0 ||| 1069 1.17835e+06 +en ||| by just a ||| 0.0833333 0.0468744 8.48644e-07 4.75767e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| by just ||| 0.0434783 0.0468744 2.54593e-06 1.07334e-05 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| by killing ||| 0.0666667 0.0468744 8.48644e-07 7.65639e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| by law ||| 0.00404858 0.0468744 8.48644e-07 1.4998e-06 2.718 ||| 0-0 ||| 247 1.17835e+06 +en ||| by legislative ||| 0.25 0.0468744 8.48644e-07 2.26289e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| by lending it ||| 0.5 0.0274608 8.48644e-07 1.5954e-10 2.718 ||| 0-0 0-2 ||| 2 1.17835e+06 +en ||| by little ||| 0.0128205 0.0468744 8.48644e-07 1.3773e-06 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| by looking at ||| 0.03125 0.321886 8.48644e-07 2.22195e-08 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| by looking in greater ||| 0.5 0.605812 8.48644e-07 3.37812e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| by looking in ||| 0.5 0.605812 8.48644e-07 2.56501e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| by machine gun fire in ||| 0.5 0.605812 8.48644e-07 1.01243e-18 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| by making a ||| 0.0138889 0.0468744 8.48644e-07 1.45064e-07 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| by making them feel confident ||| 1 0.0468744 8.48644e-07 7.42234e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by making them feel ||| 1 0.0468744 8.48644e-07 1.48447e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by making them ||| 0.0344828 0.0468744 8.48644e-07 8.77864e-09 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| by making use of ||| 0.0294118 0.0468744 8.48644e-07 8.65028e-11 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| by making use ||| 0.0277778 0.0468744 8.48644e-07 1.59118e-09 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| by making ||| 0.00646831 0.0468744 4.24322e-06 3.27268e-06 2.718 ||| 0-0 ||| 773 1.17835e+06 +en ||| by me at ||| 1 0.321886 8.48644e-07 1.2645e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| by me in ||| 0.25 0.605812 8.48644e-07 1.45973e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| by me on ||| 0.333333 0.22993 8.48644e-07 2.62523e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| by me ||| 0.0121951 0.0468744 8.48644e-07 5.12212e-06 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| by means of a ||| 0.00325733 0.0468744 1.69729e-06 1.29907e-08 2.718 ||| 0-0 ||| 614 1.17835e+06 +en ||| by means of the ||| 0.00215517 0.0011669 8.48644e-07 5.18134e-10 2.718 ||| 0-3 ||| 464 1.17835e+06 +en ||| by means of ||| 0.00948467 0.0468744 2.54593e-05 2.93074e-07 2.718 ||| 0-0 ||| 3163 1.17835e+06 +en ||| by means ||| 0.00779626 0.0468744 2.54593e-05 5.39095e-06 2.718 ||| 0-0 ||| 3848 1.17835e+06 +en ||| by meetings in ||| 1 0.605812 8.48644e-07 5.33367e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| by my ||| 0.000721501 0.0468744 8.48644e-07 5.47092e-06 2.718 ||| 0-0 ||| 1386 1.17835e+06 +en ||| by no later than ||| 0.0285714 0.0468744 8.48644e-07 1.73978e-13 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| by no later ||| 0.0666667 0.0468744 8.48644e-07 5.69486e-10 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| by no means limited to economic factors ||| 1 0.0468744 8.48644e-07 5.26074e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by no means limited to economic ||| 1 0.0468744 8.48644e-07 1.75945e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by no means limited to ||| 0.333333 0.0468744 8.48644e-07 1.45049e-14 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| by no means limited ||| 0.5 0.0468744 8.48644e-07 1.63237e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by no means ||| 0.00205339 0.0468744 8.48644e-07 4.19631e-09 2.718 ||| 0-0 ||| 487 1.17835e+06 +en ||| by no ||| 0.00526316 0.0468744 1.69729e-06 6.62193e-06 2.718 ||| 0-0 ||| 380 1.17835e+06 +en ||| by nobody here ||| 1 0.0468744 8.48644e-07 1.48356e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by nobody ||| 0.125 0.0468744 8.48644e-07 7.31611e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| by now ||| 0.00581395 0.0468744 8.48644e-07 1.75238e-05 2.718 ||| 0-0 ||| 172 1.17835e+06 +en ||| by occupation in ||| 1 0.605812 8.48644e-07 1.47888e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| by one ' ||| 1 0.0468744 8.48644e-07 1.21793e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by one and a ||| 1 0.0468744 8.48644e-07 1.96868e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by one and ||| 0.181818 0.0468744 1.69729e-06 4.44138e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| by one ||| 0.00786164 0.0468744 4.24322e-06 3.54576e-05 2.718 ||| 0-0 ||| 636 1.17835e+06 +en ||| by only ||| 0.0140845 0.0468744 8.48644e-07 9.46925e-06 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| by others ||| 0.00549451 0.0468744 8.48644e-07 8.2689e-07 2.718 ||| 0-0 ||| 182 1.17835e+06 +en ||| by ourselves ||| 0.0212766 0.0468744 8.48644e-07 2.70611e-06 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| by over ||| 0.0114943 0.102406 8.48644e-07 3.40897e-05 2.718 ||| 0-0 0-1 ||| 87 1.17835e+06 +en ||| by partner countries to ||| 0.5 0.0247351 8.48644e-07 1.41203e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| by paying ||| 0.0111111 0.0468744 8.48644e-07 2.8754e-07 2.718 ||| 0-0 ||| 90 1.17835e+06 +en ||| by people without ||| 0.5 0.0468744 8.48644e-07 1.65484e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by people ||| 0.00334448 0.0468744 8.48644e-07 7.48795e-06 2.718 ||| 0-0 ||| 299 1.17835e+06 +en ||| by phone ||| 0.166667 0.0468744 8.48644e-07 3.06256e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| by police forces in ||| 0.5 0.605812 8.48644e-07 2.12896e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| by positive ||| 0.25 0.0468744 8.48644e-07 7.74146e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| by pretending ||| 0.111111 0.0468744 8.48644e-07 5.95497e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| by private ||| 0.03125 0.0468744 8.48644e-07 2.02469e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| by radiation , ||| 1 0.0468744 8.48644e-07 2.94208e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by radiation ||| 0.166667 0.0468744 8.48644e-07 2.46706e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| by rail within the ||| 0.5 0.369196 8.48644e-07 4.25233e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| by rail within ||| 0.5 0.369196 8.48644e-07 6.92655e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| by reason of ||| 0.0204082 0.0468744 8.48644e-07 1.08174e-07 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| by reason ||| 0.0166667 0.0468744 8.48644e-07 1.98981e-06 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| by referring to ||| 0.0105263 0.0358047 8.48644e-07 1.033e-08 2.718 ||| 0-0 0-2 ||| 95 1.17835e+06 +en ||| by releasing liquidity into ||| 1 0.525896 8.48644e-07 1.13899e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| by relying on ||| 0.0454545 0.0468744 8.48644e-07 3.07373e-10 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| by relying ||| 0.0454545 0.0468744 8.48644e-07 4.59383e-08 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| by renouncing ||| 0.2 0.0468744 8.48644e-07 3.40284e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| by replacing ||| 0.027027 0.0468744 8.48644e-07 3.40284e-08 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| by representatives of ||| 0.0277778 0.0468744 1.69729e-06 1.49844e-08 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| by representatives ||| 0.0217391 0.0468744 1.69729e-06 2.7563e-07 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| by respecting ||| 0.0142857 0.0468744 8.48644e-07 7.99667e-08 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| by saying a few words to the ||| 1 0.0468744 8.48644e-07 1.44574e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by saying a few words to ||| 0.25 0.0468744 8.48644e-07 2.35494e-16 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| by saying a few words ||| 0.0714286 0.0468744 8.48644e-07 2.65022e-15 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| by saying a few ||| 0.0769231 0.0468744 8.48644e-07 1.17266e-11 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| by saying a ||| 0.1 0.0468744 8.48644e-07 6.68947e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| by saying that ||| 0.000814996 0.0468744 8.48644e-07 2.53865e-08 2.718 ||| 0-0 ||| 1227 1.17835e+06 +en ||| by saying ||| 0.00439975 0.0468744 5.94051e-06 1.50916e-06 2.718 ||| 0-0 ||| 1591 1.17835e+06 +en ||| by scattering ||| 0.5 0.0468744 8.48644e-07 5.95497e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by scoring a victory ||| 0.5 0.0468744 8.48644e-07 2.4058e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by scoring a ||| 0.5 0.0468744 8.48644e-07 4.14792e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by scoring ||| 0.5 0.0468744 8.48644e-07 9.35781e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by seeking to ||| 0.0227273 0.0468744 8.48644e-07 3.83254e-08 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| by seeking ||| 0.011236 0.0468744 8.48644e-07 4.3131e-07 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| by serious ||| 0.0454545 0.0468744 8.48644e-07 9.80018e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| by several ||| 0.00393701 0.0468744 8.48644e-07 5.57215e-07 2.718 ||| 0-0 ||| 254 1.17835e+06 +en ||| by shared goals and ||| 1 0.0468744 8.48644e-07 3.62514e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by shared goals ||| 1 0.0468744 8.48644e-07 2.89412e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by shared ||| 0.5 0.0468744 8.48644e-07 2.29692e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by side , in the ||| 0.333333 0.605812 8.48644e-07 3.89072e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| by side , in ||| 0.333333 0.605812 8.48644e-07 6.33753e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| by side ||| 0.0319149 0.0468744 2.54593e-06 1.86476e-06 2.718 ||| 0-0 ||| 94 1.17835e+06 +en ||| by since ||| 0.0625 0.0468744 8.48644e-07 1.15441e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| by something over ||| 0.333333 0.157937 8.48644e-07 1.16446e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| by speaking on ||| 0.25 0.22993 8.48644e-07 5.00542e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| by speaking ||| 0.025641 0.0468744 8.48644e-07 9.76615e-07 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| by stark ||| 1 0.0468744 8.48644e-07 2.46706e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by staying up ||| 1 0.0468744 8.48644e-07 2.40812e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by staying ||| 0.0833333 0.0468744 8.48644e-07 7.06089e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| by step ||| 0.00621118 0.0468744 8.48644e-07 1.2548e-06 2.718 ||| 0-0 ||| 161 1.17835e+06 +en ||| by strengthening the ||| 0.012987 0.0468744 8.48644e-07 6.78946e-09 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| by strengthening ||| 0.00766284 0.0468744 1.69729e-06 1.10592e-07 2.718 ||| 0-0 ||| 261 1.17835e+06 +en ||| by such exchanges on ||| 1 0.22993 8.48644e-07 4.51033e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| by such ||| 0.010582 0.0468744 1.69729e-06 1.76003e-05 2.718 ||| 0-0 ||| 189 1.17835e+06 +en ||| by supporting ||| 0.0031746 0.0468744 8.48644e-07 2.72227e-07 2.718 ||| 0-0 ||| 315 1.17835e+06 +en ||| by taking part in ||| 0.0588235 0.605812 8.48644e-07 1.22841e-09 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| by taking up ||| 0.0714286 0.0468744 8.48644e-07 1.23307e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| by taking ||| 0.00934579 0.0468744 3.39458e-06 3.61552e-06 2.718 ||| 0-0 ||| 428 1.17835e+06 +en ||| by that ||| 0.00424628 0.0468744 1.69729e-06 0.000143103 2.718 ||| 0-0 ||| 471 1.17835e+06 +en ||| by the Commission in ||| 0.00198413 0.605812 8.48644e-07 8.69363e-08 2.718 ||| 0-3 ||| 504 1.17835e+06 +en ||| by the Commission ||| 0.000142816 0.0468744 8.48644e-07 3.05056e-07 2.718 ||| 0-0 ||| 7002 1.17835e+06 +en ||| by the European Parliament and the ||| 0.00961538 0.0468744 8.48644e-07 7.70862e-13 2.718 ||| 0-0 ||| 104 1.17835e+06 +en ||| by the European Parliament and ||| 0.00444444 0.0468744 8.48644e-07 1.25564e-11 2.718 ||| 0-0 ||| 225 1.17835e+06 +en ||| by the European Parliament ||| 0.000553403 0.0468744 8.48644e-07 1.00244e-09 2.718 ||| 0-0 ||| 1807 1.17835e+06 +en ||| by the European ||| 0.00226244 0.0468744 8.48644e-07 1.74641e-06 2.718 ||| 0-0 ||| 442 1.17835e+06 +en ||| by the Ombudsman ||| 0.0111111 0.0468744 8.48644e-07 8.46071e-09 2.718 ||| 0-0 ||| 90 1.17835e+06 +en ||| by the appointments ||| 0.333333 0.0468744 8.48644e-07 2.08906e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| by the continuation ||| 0.1 0.0468744 8.48644e-07 6.37165e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| by the definition in ||| 1 0.605812 8.48644e-07 4.06328e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| by the end of ||| 0.00149031 0.0468744 1.69729e-06 1.23536e-08 2.718 ||| 0-0 ||| 1342 1.17835e+06 +en ||| by the end ||| 0.000729927 0.0468744 8.48644e-07 2.27238e-07 2.718 ||| 0-0 ||| 1370 1.17835e+06 +en ||| by the fact ||| 0.00110497 0.0468744 8.48644e-07 1.52987e-06 2.718 ||| 0-0 ||| 905 1.17835e+06 +en ||| by the government of ||| 0.0204082 0.0468744 8.48644e-07 2.26856e-09 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| by the government ||| 0.00398406 0.0468744 8.48644e-07 4.17291e-08 2.718 ||| 0-0 ||| 251 1.17835e+06 +en ||| by the people in ||| 0.0666667 0.605812 8.48644e-07 1.31007e-07 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| by the people of ||| 0.0188679 0.0468744 1.69729e-06 2.49911e-08 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| by the people ||| 0.00569801 0.0468744 1.69729e-06 4.59699e-07 2.718 ||| 0-0 ||| 351 1.17835e+06 +en ||| by the statistical data ||| 1 0.0468744 8.48644e-07 6.86101e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by the statistical ||| 1 0.0468744 8.48644e-07 1.51457e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| by the year ||| 0.00511509 0.0468744 1.69729e-06 1.30253e-07 2.718 ||| 0-0 ||| 391 1.17835e+06 +en ||| by the ||| 0.00161302 0.0468744 9.58968e-05 0.000522266 2.718 ||| 0-0 ||| 70055 1.17835e+06 +en ||| by them at ||| 0.5 0.321886 8.48644e-07 5.63343e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| by them ||| 0.00454545 0.0468744 8.48644e-07 2.28194e-05 2.718 ||| 0-0 ||| 220 1.17835e+06 +en ||| by these countries on ||| 0.5 0.22993 8.48644e-07 1.71696e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| by this means ||| 0.0357143 0.0468744 8.48644e-07 3.48331e-08 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| by this ||| 0.000747384 0.0468744 1.69729e-06 5.49678e-05 2.718 ||| 0-0 ||| 2676 1.17835e+06 +en ||| by thousands ||| 0.0344828 0.0468744 8.48644e-07 9.18767e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| by throwing all our energies into ||| 1 0.525896 8.48644e-07 5.56357e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| by today ||| 0.0909091 0.0468744 8.48644e-07 3.83925e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| by trying ||| 0.0208333 0.0468744 8.48644e-07 9.80018e-07 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| by two ||| 0.00374532 0.0468744 8.48644e-07 2.01108e-06 2.718 ||| 0-0 ||| 267 1.17835e+06 +en ||| by undertaking ||| 0.0909091 0.0468744 8.48644e-07 2.54362e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| by up to ||| 0.0701754 0.0468744 3.39458e-06 2.57808e-06 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| by up ||| 0.15625 0.0468744 4.24322e-06 2.90135e-05 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| by us as ||| 0.142857 0.066968 8.48644e-07 2.7219e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| by us during ||| 1 0.226251 8.48644e-07 4.37507e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| by us in ||| 0.36 0.605812 7.6378e-06 6.9876e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| by us to ||| 0.2 0.0468744 8.48644e-07 2.17873e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| by us under ||| 1 0.205566 8.48644e-07 8.55645e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| by us ||| 0.012 0.0468744 2.54593e-06 2.45192e-05 2.718 ||| 0-0 ||| 250 1.17835e+06 +en ||| by using ||| 0.00170358 0.0468744 8.48644e-07 6.61002e-07 2.718 ||| 0-0 ||| 587 1.17835e+06 +en ||| by virtue of ||| 0.00374532 0.0468744 8.48644e-07 1.01746e-08 2.718 ||| 0-0 ||| 267 1.17835e+06 +en ||| by virtue ||| 0.0100334 0.0468744 2.54593e-06 1.87156e-07 2.718 ||| 0-0 ||| 299 1.17835e+06 +en ||| by voting ||| 0.00321543 0.0275359 8.48644e-07 5.26589e-07 2.718 ||| 0-0 0-1 ||| 311 1.17835e+06 +en ||| by way of a ||| 0.0275229 0.0468744 2.54593e-06 4.41894e-08 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| by way of ||| 0.0178174 0.0468744 1.35783e-05 9.96922e-07 2.718 ||| 0-0 ||| 898 1.17835e+06 +en ||| by way ||| 0.0257171 0.0468744 2.20648e-05 1.83379e-05 2.718 ||| 0-0 ||| 1011 1.17835e+06 +en ||| by what is ||| 0.0227273 0.0468744 8.48644e-07 3.74097e-07 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| by what was ||| 0.2 0.0468744 8.48644e-07 3.73965e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| by what ||| 0.00555556 0.0468744 1.69729e-06 1.19363e-05 2.718 ||| 0-0 ||| 360 1.17835e+06 +en ||| by which I ||| 0.00403226 0.0468744 8.48644e-07 5.11162e-07 2.718 ||| 0-0 ||| 248 1.17835e+06 +en ||| by which ||| 0.00784753 0.0468744 5.94051e-06 7.22644e-05 2.718 ||| 0-0 ||| 892 1.17835e+06 +en ||| by whom I mean ||| 0.2 0.0060084 8.48644e-07 2.1895e-13 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| by whom I ||| 0.25 0.0060084 8.48644e-07 8.49631e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| by widespread ||| 0.0714286 0.0468744 8.48644e-07 1.89708e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| by women ||| 0.00353357 0.0468744 8.48644e-07 1.01064e-06 2.718 ||| 0-0 ||| 283 1.17835e+06 +en ||| by working in ||| 0.0625 0.605812 8.48644e-07 4.61605e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| by your agenda , on a new ||| 1 0.22993 8.48644e-07 3.50053e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| by your agenda , on a ||| 1 0.22993 8.48644e-07 5.85667e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| by your agenda , on ||| 1 0.22993 8.48644e-07 1.32128e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| by ||| 0.0492007 0.0468744 0.00866126 0.0085071 2.718 ||| 0-0 ||| 207436 1.17835e+06 +en ||| by £ ||| 0.333333 0.0468744 8.48644e-07 1.53128e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| by ‘ public interest ||| 0.5 0.0468744 8.48644e-07 1.73373e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by ‘ public interest ’ , in ||| 0.5 0.0468744 8.48644e-07 7.70968e-20 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by ‘ public interest ’ , ||| 0.5 0.0468744 8.48644e-07 3.60189e-18 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by ‘ public interest ’ ||| 0.5 0.0468744 8.48644e-07 3.02034e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by ‘ public ||| 0.5 0.0468744 8.48644e-07 1.54384e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| by ‘ ||| 0.0263158 0.0468744 8.48644e-07 9.55347e-07 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| cabins in very ||| 1 0.605812 8.48644e-07 1.12474e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| cabins in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| caged beds in ||| 0.1 0.605812 8.48644e-07 2.03184e-13 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| cake by ||| 1 0.0468744 8.48644e-07 3.65805e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| calculated at ||| 0.111111 0.321886 8.48644e-07 4.60023e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| calculated in ||| 0.0454545 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| call , in ||| 0.0769231 0.605812 8.48644e-07 1.22254e-05 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| call , will in ||| 1 0.605812 8.48644e-07 1.05765e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| call African leaders to account ? ||| 1 0.233636 8.48644e-07 3.20044e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| call African leaders to account ||| 1 0.233636 8.48644e-07 1.8727e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| call attention to ||| 0.0454545 0.0247351 8.48644e-07 1.63052e-09 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| call came in ||| 1 0.605812 8.48644e-07 1.29169e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| call for an ||| 0.00666667 0.0286209 8.48644e-07 1.13525e-08 2.718 ||| 0-1 ||| 150 1.17835e+06 +en ||| call for in ||| 0.166667 0.605812 8.48644e-07 7.87903e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| call for ||| 0.00179964 0.0286209 5.09187e-06 2.55415e-06 2.718 ||| 0-1 ||| 3334 1.17835e+06 +en ||| call in ||| 0.12987 0.605812 8.48644e-06 0.000102515 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| call into question ||| 0.00478469 0.525896 8.48644e-07 4.06575e-09 2.718 ||| 0-1 ||| 209 1.17835e+06 +en ||| call into ||| 0.030303 0.525896 2.54593e-06 4.91448e-06 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| call it in ||| 0.2 0.605812 8.48644e-07 1.82305e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| call on them ||| 0.0277778 0.22993 8.48644e-07 4.94547e-08 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| call on you to provide them ||| 1 0.22993 8.48644e-07 4.19692e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| call on you to provide ||| 0.5 0.22993 8.48644e-07 1.56462e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| call on you to ||| 0.008 0.22993 8.48644e-07 5.28944e-09 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| call on you ||| 0.00675676 0.22993 8.48644e-07 5.95267e-08 2.718 ||| 0-1 ||| 148 1.17835e+06 +en ||| call on ||| 0.00358209 0.22993 5.09187e-06 1.84367e-05 2.718 ||| 0-1 ||| 1675 1.17835e+06 +en ||| call them in ||| 0.333333 0.605812 8.48644e-07 2.74987e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| call to ||| 0.00892857 0.0247351 2.54593e-06 6.24004e-06 2.718 ||| 0-1 ||| 336 1.17835e+06 +en ||| call upon ||| 0.00149254 0.114601 8.48644e-07 1.96226e-07 2.718 ||| 0-1 ||| 670 1.17835e+06 +en ||| called by ||| 0.0294118 0.0468744 8.48644e-07 1.47853e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| called for in ||| 0.015625 0.605812 1.69729e-06 6.16835e-07 2.718 ||| 0-2 ||| 128 1.17835e+06 +en ||| called for on ||| 0.2 0.22993 1.69729e-06 1.10934e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| called in ||| 0.106061 0.605812 5.94051e-06 8.02576e-05 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| called into question ||| 0.00320513 0.525896 8.48644e-07 3.18301e-09 2.718 ||| 0-1 ||| 312 1.17835e+06 +en ||| called into ||| 0.027972 0.525896 3.39458e-06 3.84746e-06 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| called on ||| 0.00494234 0.22993 2.54593e-06 1.44338e-05 2.718 ||| 0-1 ||| 607 1.17835e+06 +en ||| called to ||| 0.00961538 0.0247351 8.48644e-07 4.88522e-06 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| called upon in exceptional circumstances ||| 1 0.605812 8.48644e-07 6.27082e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| called upon in exceptional ||| 1 0.605812 8.48644e-07 1.16126e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| called upon in ||| 0.333333 0.605812 8.48644e-07 1.90371e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| called upon on the basis ||| 1 0.22993 8.48644e-07 1.24809e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| called upon on the ||| 1 0.22993 8.48644e-07 2.10187e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| called upon on ||| 1 0.22993 8.48644e-07 3.4237e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| called upon to undertake ||| 0.5 0.114601 8.48644e-07 3.53549e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| called upon to ||| 0.00769231 0.114601 1.69729e-06 1.36506e-08 2.718 ||| 0-1 ||| 260 1.17835e+06 +en ||| called upon ||| 0.00970874 0.114601 3.39458e-06 1.53622e-07 2.718 ||| 0-1 ||| 412 1.17835e+06 +en ||| calling for ||| 0.0017014 0.0286209 3.39458e-06 7.58193e-07 2.718 ||| 0-1 ||| 2351 1.17835e+06 +en ||| calling into question ||| 0.00645161 0.525896 8.48644e-07 1.20691e-09 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| calling into ||| 0.0227273 0.525896 1.69729e-06 1.45885e-06 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| calling on health care ||| 0.333333 0.22993 8.48644e-07 4.61619e-14 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| calling on health ||| 0.5 0.22993 8.48644e-07 4.54797e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| calling on ||| 0.00347826 0.22993 1.69729e-06 5.47289e-06 2.718 ||| 0-1 ||| 575 1.17835e+06 +en ||| calls for greater investment in ||| 1 0.605812 8.48644e-07 4.12263e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| calls for ||| 0.000739645 0.0286209 1.69729e-06 4.14187e-07 2.718 ||| 0-1 ||| 2704 1.17835e+06 +en ||| calls to ||| 0.008 0.0247351 8.48644e-07 1.0119e-06 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| calm in the fact ||| 0.5 0.605812 8.48644e-07 2.9896e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| calm in the ||| 0.142857 0.605812 8.48644e-07 1.02058e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| calm in ||| 0.0333333 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| came a point during ||| 0.5 0.226251 8.48644e-07 1.41263e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| came about in ||| 0.111111 0.605812 8.48644e-07 8.22902e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| came about ||| 0.0111111 0.0401564 8.48644e-07 3.61129e-07 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| came across ||| 0.025 0.274879 8.48644e-07 2.58842e-07 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| came along ||| 0.0555556 0.155535 8.48644e-07 1.00233e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| came as ||| 0.0232558 0.066968 8.48644e-07 2.26648e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| came at ||| 0.0555556 0.321886 8.48644e-07 5.04025e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| came before us ||| 0.111111 0.0175291 8.48644e-07 1.238e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| came before ||| 0.0178571 0.0175291 8.48644e-07 4.29534e-08 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| came forward at ||| 0.5 0.321886 8.48644e-07 2.8044e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| came in at ||| 0.166667 0.463849 8.48644e-07 2.32749e-06 2.718 ||| 0-1 0-2 ||| 6 1.17835e+06 +en ||| came in ||| 0.0377358 0.605812 1.69729e-06 5.81844e-05 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| came into being , ||| 0.1 0.525896 8.48644e-07 9.46619e-10 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| came into being ||| 0.011236 0.525896 8.48644e-07 7.93779e-09 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| came into ||| 0.00626305 0.525896 2.54593e-06 2.7893e-06 2.718 ||| 0-1 ||| 479 1.17835e+06 +en ||| came out in ||| 0.0645161 0.605812 1.69729e-06 2.2287e-07 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| came out ||| 0.00543478 0.0120599 8.48644e-07 6.9363e-08 2.718 ||| 0-1 ||| 184 1.17835e+06 +en ||| came through in ||| 0.111111 0.605812 8.48644e-07 2.67823e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| came to grief on ||| 1 0.22993 8.48644e-07 4.37016e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| came to power in ||| 0.0909091 0.605812 8.48644e-07 7.71905e-10 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| came to taking ||| 0.166667 0.0247351 8.48644e-07 1.5052e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| came to ||| 0.0109356 0.0247351 7.6378e-06 3.54165e-06 2.718 ||| 0-1 ||| 823 1.17835e+06 +en ||| came under the ||| 0.25 0.205566 8.48644e-07 4.37404e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| came under ||| 0.05 0.205566 1.69729e-06 7.1248e-07 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| camp in ||| 0.25 0.605812 2.54593e-06 4.34074e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| campaign against ||| 0.00421941 0.153982 8.48644e-07 1.79186e-07 2.718 ||| 0-1 ||| 237 1.17835e+06 +en ||| campaign for the preliminaries in January and ||| 1 0.605812 8.48644e-07 4.01425e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| campaign for the preliminaries in January ||| 1 0.605812 8.48644e-07 3.20476e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| campaign for the preliminaries in ||| 1 0.605812 8.48644e-07 4.71288e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| campaign in ||| 0.057971 0.605812 3.39458e-06 1.4269e-05 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| campaign to defend ||| 0.166667 0.0247351 8.48644e-07 1.81526e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| campaign to ||| 0.00641026 0.0247351 8.48644e-07 8.68546e-07 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| campaigns in ||| 0.0869565 0.605812 1.69729e-06 2.81686e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| can , after ||| 0.2 0.0144723 8.48644e-07 9.41372e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| can , at ||| 0.0625 0.321886 8.48644e-07 1.41887e-05 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| can , in ||| 0.060241 0.605812 4.24322e-06 0.000163793 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| can about ||| 0.2 0.0401564 8.48644e-07 8.52464e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| can accept in ||| 0.0181818 0.605812 8.48644e-07 1.48747e-07 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| can at ||| 0.0659341 0.321886 5.09187e-06 0.000118978 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| can be achieved in ||| 0.030303 0.605812 8.48644e-07 4.16432e-09 2.718 ||| 0-3 ||| 33 1.17835e+06 +en ||| can be adopted in ||| 0.0769231 0.605812 8.48644e-07 5.07784e-09 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| can be against ||| 0.0666667 0.153982 8.48644e-07 3.12578e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| can be applied to ||| 0.0212766 0.0247351 8.48644e-07 1.64088e-10 2.718 ||| 0-3 ||| 47 1.17835e+06 +en ||| can be decided at ||| 0.25 0.321886 8.48644e-07 1.47486e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| can be determined on ||| 1 0.22993 8.48644e-07 1.53098e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| can be discussed in ||| 0.142857 0.605812 8.48644e-07 1.3068e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| can be done in ||| 0.0126582 0.605812 8.48644e-07 1.13505e-08 2.718 ||| 0-3 ||| 79 1.17835e+06 +en ||| can be elaborated in ||| 0.5 0.605812 8.48644e-07 3.48479e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| can be extracted in ||| 1 0.605812 8.48644e-07 4.48044e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| can be found in the ||| 0.0185185 0.605812 8.48644e-07 3.34354e-10 2.718 ||| 0-3 ||| 54 1.17835e+06 +en ||| can be found in ||| 0.0116279 0.605812 8.48644e-07 5.44623e-09 2.718 ||| 0-3 ||| 86 1.17835e+06 +en ||| can be given in ||| 0.333333 0.605812 8.48644e-07 1.70829e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| can be guaranteed in ||| 1 0.605812 8.48644e-07 8.78665e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| can be guaranteed over ||| 1 0.157937 8.48644e-07 7.6248e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| can be implemented ||| 0.00359712 0.0703003 8.48644e-07 2.13833e-08 2.718 ||| 0-2 ||| 278 1.17835e+06 +en ||| can be in this instance . in ||| 1 0.605812 8.48644e-07 6.75701e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| can be in ||| 0.0566038 0.605812 2.54593e-06 2.48914e-05 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| can be included in ||| 0.0322581 0.605812 8.48644e-07 2.3373e-09 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| can be made on the national ||| 1 0.22993 8.48644e-07 7.39775e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| can be made on the ||| 0.5 0.22993 8.48644e-07 5.75701e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| can be made on ||| 0.142857 0.22993 8.48644e-07 9.37748e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| can be made regarding ||| 0.5 0.140669 8.48644e-07 2.1375e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| can be made to ||| 0.037037 0.0247351 8.48644e-07 3.17387e-09 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| can be made within ||| 0.5 0.369196 8.48644e-07 1.25186e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| can be obtained in ||| 0.333333 0.605812 8.48644e-07 7.89056e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| can be paid in ||| 0.5 0.605812 8.48644e-07 3.35038e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| can be regarded as ||| 0.0131579 0.066968 8.48644e-07 5.43946e-11 2.718 ||| 0-3 ||| 76 1.17835e+06 +en ||| can be released , ||| 1 0.0790835 8.48644e-07 4.67971e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| can be released ||| 0.0344828 0.0790835 8.48644e-07 3.92413e-09 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| can be said to complete it ||| 0.5 0.0247351 8.48644e-07 7.93467e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| can be said to complete ||| 0.5 0.0247351 8.48644e-07 4.46189e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| can be said to ||| 0.0263158 0.0247351 8.48644e-07 6.23169e-10 2.718 ||| 0-3 ||| 38 1.17835e+06 +en ||| can be seen in ||| 0.0421053 0.605812 3.39458e-06 5.23963e-09 2.718 ||| 0-3 ||| 95 1.17835e+06 +en ||| can be summarized in ||| 0.333333 0.605812 8.48644e-07 9.95654e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| can be taken on them ||| 1 0.22993 8.48644e-07 1.09452e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| can be taken on ||| 0.0666667 0.22993 8.48644e-07 4.08038e-09 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| can be the ||| 0.00961538 0.0011669 8.48644e-07 1.54416e-07 2.718 ||| 0-2 ||| 104 1.17835e+06 +en ||| can be traced back to ||| 0.0625 0.0247351 8.48644e-07 4.07628e-15 2.718 ||| 0-4 ||| 16 1.17835e+06 +en ||| can become a problem ||| 1 0.219193 8.48644e-07 1.13368e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| can become a ||| 0.00990099 0.219193 8.48644e-07 5.04083e-07 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| can become involved in ||| 0.25 0.605812 8.48644e-07 1.35693e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| can become ||| 0.009375 0.219193 2.54593e-06 1.13722e-05 2.718 ||| 0-1 ||| 320 1.17835e+06 +en ||| can begin at long ||| 1 0.321886 8.48644e-07 2.37476e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| can begin at ||| 1 0.321886 8.48644e-07 7.0197e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| can bring to bear in ||| 1 0.605812 8.48644e-07 5.68747e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| can carry on playing . ||| 1 0.22993 8.48644e-07 9.04767e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| can carry on playing ||| 1 0.22993 8.48644e-07 2.98702e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| can carry on ||| 0.0588235 0.22993 8.48644e-07 4.53265e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| can deal with ||| 0.0108696 0.0535436 8.48644e-07 1.47239e-08 2.718 ||| 0-2 ||| 92 1.17835e+06 +en ||| can do in ||| 0.027027 0.605812 8.48644e-07 4.7183e-06 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| can do so ||| 0.00980392 0.0087276 8.48644e-07 6.95922e-09 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| can draw upon ||| 1 0.114601 8.48644e-07 3.11272e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| can enter into force along ||| 1 0.155535 8.48644e-07 2.03833e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| can fall within ||| 1 0.369196 8.48644e-07 3.15572e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| can focus on ||| 0.0588235 0.22993 8.48644e-07 1.91186e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| can get it out in ||| 0.5 0.605812 8.48644e-07 4.0903e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| can get not only on ||| 1 0.22993 8.48644e-07 4.10399e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| can go along with it ||| 0.5 0.0535436 8.48644e-07 6.29296e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| can go along with ||| 0.0666667 0.0535436 8.48644e-07 3.53871e-12 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| can go hand in ||| 0.05 0.605812 8.48644e-07 3.18552e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| can happen in ||| 0.0526316 0.605812 8.48644e-07 1.49297e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| can have as ||| 1 0.066968 8.48644e-07 6.39866e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| can identify with ||| 0.0588235 0.0535436 8.48644e-07 5.99913e-10 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| can ill afford to ||| 0.142857 0.0247351 8.48644e-07 2.96003e-14 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| can in ||| 0.12 0.605812 1.52756e-05 0.00137348 2.718 ||| 0-1 ||| 150 1.17835e+06 +en ||| can insist on ||| 0.142857 0.22993 8.48644e-07 5.23663e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| can it be guaranteed in ||| 1 0.605812 8.48644e-07 1.56255e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| can it ||| 0.00323625 0.0080472 8.48644e-07 8.20282e-06 2.718 ||| 0-1 ||| 309 1.17835e+06 +en ||| can make is , in ||| 1 0.605812 8.48644e-07 8.92094e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| can make towards ||| 0.2 0.0616136 8.48644e-07 5.1491e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| can moderate them by involving them in ||| 1 0.605812 8.48644e-07 5.84632e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| can move around ||| 0.0909091 0.159384 8.48644e-07 5.24851e-10 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| can muster to ||| 0.25 0.0247351 8.48644e-07 1.50485e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| can now tell us ||| 0.333333 0.0123946 8.48644e-07 4.98359e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| can now tell ||| 0.5 0.0123946 8.48644e-07 1.72909e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| can now ||| 0.0101351 0.0123946 2.54593e-06 1.76079e-06 2.718 ||| 0-1 ||| 296 1.17835e+06 +en ||| can observe around us in ||| 1 0.605812 8.48644e-07 1.00712e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| can on ||| 0.176471 0.22993 2.54593e-06 0.000247011 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| can only be laid down at ||| 1 0.321886 8.48644e-07 1.8263e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| can only reflect the degree ||| 1 0.0011669 8.48644e-07 4.49235e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| can only reflect the ||| 0.5 0.0011669 8.48644e-07 3.24358e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| can place in ||| 0.5 0.605812 8.48644e-07 2.06708e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| can play in ||| 0.0461538 0.605812 2.54593e-06 3.54357e-07 2.718 ||| 0-2 ||| 65 1.17835e+06 +en ||| can provide in ||| 0.125 0.605812 8.48644e-07 4.06274e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| can reach a ||| 0.0416667 0.0015231 8.48644e-07 1.98517e-10 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| can result in ||| 0.0120482 0.605812 8.48644e-07 7.23135e-07 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| can say , during ||| 0.5 0.226251 8.48644e-07 9.80213e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| can see from ||| 0.0357143 0.0308834 8.48644e-07 7.97432e-09 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| can see this taking place in ||| 1 0.605812 8.48644e-07 3.99959e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| can serve as ||| 0.0243902 0.066968 8.48644e-07 3.6595e-09 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| can so easily turn into ||| 1 0.525896 8.48644e-07 1.35026e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| can speak on behalf ||| 0.2 0.22993 8.48644e-07 1.06445e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| can speak on ||| 0.142857 0.22993 8.48644e-07 3.34206e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| can step in ||| 0.5 0.605812 8.48644e-07 2.02588e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| can still be of use in ||| 1 0.605812 8.48644e-07 4.95547e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| can take at ||| 0.5 0.321886 8.48644e-07 1.91554e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| can take in the ||| 0.25 0.605812 8.48644e-07 1.35755e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| can take in ||| 0.166667 0.605812 8.48644e-07 2.2113e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| can take on ||| 0.0526316 0.22993 8.48644e-07 3.97687e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| can take root in ||| 1 0.605812 8.48644e-07 3.98033e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| can take ||| 0.001321 0.0074151 8.48644e-07 8.7028e-07 2.718 ||| 0-1 ||| 757 1.17835e+06 +en ||| can they believe in ||| 1 0.605812 8.48644e-07 1.39557e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| can to ||| 0.00209864 0.0247351 1.69729e-06 8.36025e-05 2.718 ||| 0-1 ||| 953 1.17835e+06 +en ||| can turn into ||| 0.125 0.525896 8.48644e-07 1.4762e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| can under ||| 0.25 0.205566 3.39458e-06 1.68185e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| can use that term , in ||| 1 0.605812 8.48644e-07 1.46553e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| can vote ' ||| 1 0.0032578 8.48644e-07 1.27678e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| can we be sure that politics in ||| 1 0.605812 8.48644e-07 7.4523e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| can with ||| 0.0625 0.0535436 8.48644e-07 3.46771e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| can you make when ||| 0.5 0.142731 8.48644e-07 9.93505e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| can ||| 1.60488e-05 8.7e-06 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 62310 1.17835e+06 +en ||| candidate for the ||| 0.0149254 0.0286209 8.48644e-07 9.39412e-09 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| candidate for ||| 0.00431034 0.0286209 8.48644e-07 1.53019e-07 2.718 ||| 0-1 ||| 232 1.17835e+06 +en ||| candidate in ||| 0.0357143 0.605812 8.48644e-07 6.14169e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| candidates for ||| 0.0127119 0.0286209 2.54593e-06 9.89447e-08 2.718 ||| 0-1 ||| 236 1.17835e+06 +en ||| candidates in ||| 0.02 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| candles were flaring in ||| 1 0.605812 8.48644e-07 2.31626e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| cannot be here now ||| 1 0.0855319 8.48644e-07 2.52331e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| cannot be here ||| 0.0131579 0.0855319 8.48644e-07 1.22497e-08 2.718 ||| 0-2 ||| 76 1.17835e+06 +en ||| cannot be in ||| 0.0243902 0.605812 8.48644e-07 1.88549e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| cannot bring into ||| 0.2 0.525896 8.48644e-07 1.55262e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| cannot but have ||| 0.25 0.001622 8.48644e-07 4.73162e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| cannot but ||| 0.015873 0.001622 1.69729e-06 3.95627e-08 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| cannot change substantive points that are in ||| 1 0.605812 8.48644e-07 1.97785e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| cannot do so in view ||| 1 0.605812 8.48644e-07 7.32761e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| cannot do so in ||| 1 0.605812 8.48644e-07 8.11205e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| cannot do this to ||| 1 0.0247351 8.48644e-07 1.40568e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| cannot for ||| 0.2 0.0286209 8.48644e-07 2.59212e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| cannot in ||| 0.0689655 0.605812 1.69729e-06 0.000104039 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| cannot just be about ||| 1 0.0401564 8.48644e-07 1.47651e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| cannot now ||| 0.0344828 0.0123946 8.48644e-07 1.33378e-07 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| cannot operate two policies in ||| 1 0.605812 8.48644e-07 7.8771e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| cannot risk ignoring ||| 0.166667 0.0013643 8.48644e-07 1.84521e-14 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| canteen gossip in ||| 0.5 0.605812 8.48644e-07 1.29299e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| cap in hand ||| 0.333333 0.605812 8.48644e-07 7.87512e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| cap in ||| 0.333333 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| capabilities in ||| 0.1 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| capable at ||| 0.5 0.321886 8.48644e-07 2.10011e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| capacity for ||| 0.00366972 0.0286209 1.69729e-06 8.4103e-07 2.718 ||| 0-1 ||| 545 1.17835e+06 +en ||| capacity in ||| 0.0120482 0.605812 8.48644e-07 3.37562e-05 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| capacity of ||| 0.00276243 0.0116562 8.48644e-07 9.96865e-07 2.718 ||| 0-1 ||| 362 1.17835e+06 +en ||| capacity over ||| 0.2 0.157937 8.48644e-07 2.92926e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| capacity towards ||| 1 0.0616136 8.48644e-07 7.28222e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| capita in ||| 0.0555556 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| capital on ||| 0.0625 0.22993 8.48644e-07 2.15095e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| capital punishment into ||| 1 0.525896 8.48644e-07 4.52951e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| capitalised in ||| 0.142857 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| care at ||| 0.0714286 0.321886 8.48644e-07 4.0602e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| care be taken in ||| 0.5 0.605812 8.48644e-07 7.7426e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| care being taken to ||| 0.125 0.0247351 8.48644e-07 7.40051e-12 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| care in ||| 0.03125 0.605812 2.54593e-06 4.68708e-05 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| care infrastructures in ||| 1 0.605812 8.48644e-07 8.43674e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| care must be taken in ||| 1 0.605812 8.48644e-07 1.1967e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| care of at ||| 0.333333 0.321886 8.48644e-07 2.20729e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| care on ||| 0.111111 0.22993 8.48644e-07 8.42941e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| care to be taken in ||| 0.5 0.605812 8.48644e-07 6.87993e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| career in ||| 0.0416667 0.605812 1.69729e-06 1.4777e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| careers in ||| 0.0625 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| careful approach to ||| 0.5 0.0247351 8.48644e-07 1.70669e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| careful in ||| 0.0114943 0.605812 8.48644e-07 1.27913e-05 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| careful to ||| 0.0102041 0.0247351 8.48644e-07 7.786e-07 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| careful when ||| 0.015873 0.142731 8.48644e-07 1.64906e-07 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| carefully . in ||| 1 0.605812 8.48644e-07 5.48304e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| carefully as well ||| 1 0.066968 8.48644e-07 1.11805e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| carefully as ||| 0.111111 0.066968 8.48644e-07 7.05126e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| carefully in ||| 0.0967742 0.605812 2.54593e-06 1.81018e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| carefully into ||| 0.111111 0.525896 8.48644e-07 8.67782e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| carefully reflect on ||| 0.333333 0.22993 8.48644e-07 1.11338e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| carefully to see ||| 0.0769231 0.0247351 8.48644e-07 7.7636e-10 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| carefully to ||| 0.00289855 0.0247351 8.48644e-07 1.10185e-06 2.718 ||| 0-1 ||| 345 1.17835e+06 +en ||| carried away in ||| 0.25 0.605812 8.48644e-07 4.32892e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| carried by ||| 0.015873 0.0468744 8.48644e-07 2.50704e-06 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| carried in ||| 0.125 0.605812 2.54593e-06 0.000136087 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| carried on in ||| 0.111111 0.417871 8.48644e-07 1.13018e-05 2.718 ||| 0-1 0-2 ||| 9 1.17835e+06 +en ||| carried on ||| 0.0106383 0.22993 8.48644e-07 2.44744e-05 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| carried out along ||| 0.333333 0.155535 8.48644e-07 8.97975e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| carried out as ||| 0.0222222 0.066968 8.48644e-07 2.03051e-08 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| carried out at long ||| 1 0.321886 8.48644e-07 1.52759e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| carried out at state ||| 1 0.321886 8.48644e-07 1.14062e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| carried out at ||| 0.0852713 0.321886 9.33509e-06 4.5155e-08 2.718 ||| 0-2 ||| 129 1.17835e+06 +en ||| carried out by ||| 0.00302572 0.0468744 3.39458e-06 9.60298e-09 2.718 ||| 0-2 ||| 1322 1.17835e+06 +en ||| carried out in a ||| 0.02 0.605812 8.48644e-07 2.31056e-08 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| carried out in such ||| 0.25 0.605812 8.48644e-07 1.07845e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| carried out in the host countries are ||| 1 0.605812 8.48644e-07 3.57665e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| carried out in the host countries ||| 1 0.605812 8.48644e-07 2.35729e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| carried out in the host ||| 1 0.605812 8.48644e-07 6.2083e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| carried out in the ||| 0.00529101 0.605812 8.48644e-07 3.20015e-08 2.718 ||| 0-2 ||| 189 1.17835e+06 +en ||| carried out in this field ||| 0.2 0.605812 8.48644e-07 4.92082e-13 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| carried out in this ||| 0.037037 0.605812 8.48644e-07 3.36812e-09 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| carried out in ||| 0.06 0.605812 3.56431e-05 5.21267e-07 2.718 ||| 0-2 ||| 700 1.17835e+06 +en ||| carried out on ||| 0.0220264 0.22993 4.24322e-06 9.37466e-08 2.718 ||| 0-2 ||| 227 1.17835e+06 +en ||| carried out to ||| 0.0232558 0.0247351 8.48644e-07 3.17292e-08 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| carried out under ||| 0.0113636 0.205566 8.48644e-07 6.38302e-09 2.718 ||| 0-2 ||| 88 1.17835e+06 +en ||| carried out within ||| 0.0151515 0.369196 8.48644e-07 1.25149e-08 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| carried out ||| 0.00112973 0.0120599 5.09187e-06 1.62232e-07 2.718 ||| 0-1 ||| 5311 1.17835e+06 +en ||| carried over individually to the ||| 0.0833333 0.157937 8.48644e-07 4.38064e-14 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| carried over individually to ||| 0.0833333 0.157937 8.48644e-07 7.13555e-13 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| carried over individually ||| 0.0833333 0.157937 8.48644e-07 8.03027e-12 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| carried over ||| 0.0169492 0.157937 8.48644e-07 1.18092e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| carried through ||| 0.0392157 0.0366102 1.69729e-06 2.77136e-07 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| carried to the ||| 0.2 0.0247351 8.48644e-07 5.0854e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| carried to ||| 0.285714 0.0247351 1.69729e-06 8.28352e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| carriers in ||| 0.166667 0.605812 1.69729e-06 2.49362e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| carry forward ||| 0.025641 0.0008492 8.48644e-07 2.1286e-09 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| carry in ||| 0.444444 0.605812 3.39458e-06 8.47368e-05 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| carry on discussing until ||| 1 0.22993 8.48644e-07 2.61444e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| carry on discussing ||| 0.333333 0.22993 8.48644e-07 5.3795e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| carry on playing . ||| 1 0.22993 8.48644e-07 3.04195e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| carry on playing ||| 0.333333 0.22993 8.48644e-07 1.00428e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| carry on the ||| 0.04 0.22993 8.48644e-07 9.35573e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| carry on using ||| 0.142857 0.22993 8.48644e-07 1.1841e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| carry on ||| 0.013308 0.22993 5.94051e-06 1.52394e-05 2.718 ||| 0-1 ||| 526 1.17835e+06 +en ||| carry out in ||| 0.08 0.605812 1.69729e-06 3.24576e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| carry out our business in ||| 1 0.605812 8.48644e-07 5.59202e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| carry out within ||| 0.166667 0.369196 8.48644e-07 7.7926e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| carry out ||| 0.00145719 0.0120599 3.39458e-06 1.01017e-07 2.718 ||| 0-1 ||| 2745 1.17835e+06 +en ||| carry weight throughout ||| 0.333333 0.309047 8.48644e-07 1.62883e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| carrying out in ||| 0.2 0.605812 8.48644e-07 1.07013e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| carrying out ||| 0.000674309 0.0120599 8.48644e-07 3.33052e-08 2.718 ||| 0-1 ||| 1483 1.17835e+06 +en ||| cars listed ||| 0.25 0.0492554 8.48644e-07 4.9517e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| cartels within a ||| 1 0.369196 8.48644e-07 8.84568e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| cartels within ||| 1 0.369196 8.48644e-07 1.99561e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| carved in ||| 0.333333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| case , as far as this is ||| 1 0.066968 8.48644e-07 3.23785e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| case , as far as this ||| 1 0.066968 8.48644e-07 1.0331e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| case , as far as ||| 0.2 0.066968 8.48644e-07 1.59888e-11 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| case , for light and small ||| 1 0.0286209 8.48644e-07 4.09374e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| case , for light and ||| 1 0.0286209 8.48644e-07 3.19574e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| case , for light ||| 1 0.0286209 8.48644e-07 2.55131e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| case , for ||| 0.028169 0.0286209 1.69729e-06 1.46796e-06 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| case . in ||| 0.5 0.605812 8.48644e-07 1.49651e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| case after case , for ||| 1 0.0286209 8.48644e-07 4.25623e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| case at ||| 0.102041 0.321886 8.48644e-06 4.27981e-05 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| case before ||| 0.0204082 0.0175291 8.48644e-07 3.64729e-07 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| case by ||| 0.0188679 0.0468744 1.69729e-06 9.10175e-06 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| case caught in ||| 1 0.605812 8.48644e-07 1.36855e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| case during ||| 0.0833333 0.226251 8.48644e-07 3.0934e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| case for ||| 0.0150602 0.0286209 8.48644e-06 1.23094e-05 2.718 ||| 0-1 ||| 664 1.17835e+06 +en ||| case his safety in ||| 1 0.605812 8.48644e-07 7.52717e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| case in some countries and it is ||| 1 0.605812 8.48644e-07 1.42659e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| case in some countries and it ||| 1 0.605812 8.48644e-07 4.55183e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| case in some countries and ||| 1 0.605812 8.48644e-07 2.55963e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| case in some countries ||| 0.5 0.605812 8.48644e-07 2.04347e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| case in some ||| 0.25 0.605812 8.48644e-07 5.38179e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| case in the ||| 0.00485437 0.605812 8.48644e-07 3.03312e-05 2.718 ||| 0-1 ||| 206 1.17835e+06 +en ||| case in ||| 0.115005 0.605812 8.91076e-05 0.00049406 2.718 ||| 0-1 ||| 913 1.17835e+06 +en ||| case law in ||| 0.142857 0.605812 8.48644e-07 8.71027e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| case may be , into ||| 1 0.525896 8.48644e-07 3.83503e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| case of all in ||| 0.5 0.605812 8.48644e-07 1.2692e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| case of people living in ||| 1 0.605812 8.48644e-07 1.98114e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| case of ||| 0.00143215 0.0116562 6.78915e-06 1.45902e-05 2.718 ||| 0-1 ||| 5586 1.17835e+06 +en ||| case on ||| 0.0612245 0.22993 2.54593e-06 8.88535e-05 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| case over the ||| 0.166667 0.157937 8.48644e-07 2.63205e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| case over ||| 0.25 0.157937 1.69729e-06 4.2873e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| case pending ||| 0.2 0.0928726 8.48644e-07 6.25891e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| case selected for discussion here in ||| 1 0.605812 8.48644e-07 2.86069e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| case that , in ||| 0.0625 0.605812 8.48644e-07 9.91111e-07 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| case that in ||| 0.047619 0.605812 8.48644e-07 8.31087e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| case that we in ||| 0.5 0.605812 8.48644e-07 9.43475e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| case that with ||| 0.333333 0.0535436 8.48644e-07 2.0983e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| case to ||| 0.00520833 0.0247351 8.48644e-07 3.00731e-05 2.718 ||| 0-1 ||| 192 1.17835e+06 +en ||| case today ||| 0.0208333 0.0398284 8.48644e-07 1.29073e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| case when ||| 0.0307692 0.142731 1.69729e-06 6.36944e-06 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| case with ||| 0.0189394 0.0535436 8.48644e-06 1.24739e-05 2.718 ||| 0-1 ||| 528 1.17835e+06 +en ||| case within ||| 0.1 0.369196 8.48644e-07 1.18617e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| cases at ||| 0.0555556 0.321886 8.48644e-07 5.12426e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| cases in the ||| 0.0243902 0.605812 8.48644e-07 3.63158e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| cases in which ||| 0.00568182 0.605812 8.48644e-07 5.02491e-07 2.718 ||| 0-1 ||| 176 1.17835e+06 +en ||| cases in ||| 0.0163551 0.605812 5.94051e-06 5.91542e-05 2.718 ||| 0-1 ||| 428 1.17835e+06 +en ||| cases of ||| 0.000606061 0.0116562 8.48644e-07 1.7469e-06 2.718 ||| 0-1 ||| 1650 1.17835e+06 +en ||| cases where ||| 0.00317965 0.247783 1.69729e-06 1.09098e-06 2.718 ||| 0-1 ||| 629 1.17835e+06 +en ||| cases will be implemented in ||| 1 0.605812 8.48644e-07 8.14299e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| cash on ||| 0.5 0.22993 8.48644e-07 4.48461e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| cash ||| 0.00185874 0.0984848 8.48644e-07 4.42e-05 2.718 ||| 0-0 ||| 538 1.17835e+06 +en ||| cast in concrete ||| 0.25 0.605812 8.48644e-07 4.88537e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| cast in ||| 0.171429 0.605812 5.09187e-06 1.56082e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| cast on ||| 0.0769231 0.22993 8.48644e-07 2.80704e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| cast over ||| 0.5 0.157937 8.48644e-07 1.35443e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| cast upon ||| 0.25 0.114601 8.48644e-07 2.98758e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| casting a ' ||| 1 0.0032578 8.48644e-07 7.37887e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| catalogue in ||| 1 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| catch up with it ||| 0.166667 0.0535436 8.48644e-07 1.2233e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| catch up with ||| 0.0126582 0.0535436 8.48644e-07 6.87894e-10 2.718 ||| 0-2 ||| 79 1.17835e+06 +en ||| catches from ||| 0.0909091 0.0308834 8.48644e-07 1.7884e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| categorized as ||| 0.0833333 0.066968 8.48644e-07 7.19516e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| category in ||| 0.0588235 0.605812 8.48644e-07 7.8041e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| caught by ||| 0.03125 0.0468744 8.48644e-07 2.35647e-07 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| caught in " ||| 1 0.605812 8.48644e-07 3.02899e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| caught in ||| 0.0743802 0.605812 7.6378e-06 1.27913e-05 2.718 ||| 0-1 ||| 121 1.17835e+06 +en ||| caught up in ||| 0.0440252 0.605812 5.94051e-06 4.36249e-08 2.718 ||| 0-2 ||| 159 1.17835e+06 +en ||| cause at ||| 0.166667 0.321886 8.48644e-07 7.22836e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| cause for ||| 0.00495663 0.0286209 3.39458e-06 2.07899e-06 2.718 ||| 0-1 ||| 807 1.17835e+06 +en ||| cause in ||| 0.0740741 0.605812 1.69729e-06 8.34438e-05 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| cause to believe ||| 0.111111 0.0247351 8.48644e-07 1.58115e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| cause to ||| 0.00617284 0.0247351 8.48644e-07 5.07917e-06 2.718 ||| 0-1 ||| 162 1.17835e+06 +en ||| caused by ||| 0.00286299 0.0468744 5.94051e-06 7.22253e-07 2.718 ||| 0-1 ||| 2445 1.17835e+06 +en ||| caused in ||| 0.0285714 0.605812 1.69729e-06 3.92052e-05 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| caused to a ||| 0.2 0.0247351 8.48644e-07 1.05779e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| caused to ||| 0.0408163 0.0247351 3.39458e-06 2.38639e-06 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| causing a ||| 0.00917431 0.0015231 8.48644e-07 2.4308e-08 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| causing in ||| 0.142857 0.605812 8.48644e-07 1.36225e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| cave in ||| 0.142857 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| cease in ||| 0.125 0.605812 8.48644e-07 4.80252e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| cease to ||| 0.0075188 0.0247351 8.48644e-07 2.92326e-07 2.718 ||| 0-1 ||| 133 1.17835e+06 +en ||| ceased in ||| 0.333333 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| celebrated during ||| 1 0.226251 8.48644e-07 1.5613e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| celebrating the ||| 0.00862069 0.0011669 8.48644e-07 9.16704e-09 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| celebration , at ||| 0.5 0.321886 8.48644e-07 6.6786e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| celebrations at ||| 1 0.321886 8.48644e-07 5.60028e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| censured on ||| 1 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| cent coin in order to meet the ||| 1 0.605812 8.48644e-07 7.01532e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| cent coin in order to meet ||| 1 0.605812 8.48644e-07 1.14271e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| cent coin in order to ||| 1 0.605812 8.48644e-07 9.3973e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| cent coin in order ||| 1 0.605812 8.48644e-07 1.05756e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| cent coin in ||| 1 0.605812 8.48644e-07 1.98566e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| central in ||| 0.0243902 0.605812 8.48644e-07 1.26066e-05 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| central role that ||| 0.142857 0.0016797 8.48644e-07 2.27798e-11 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| central role ||| 0.0027027 0.0016797 8.48644e-07 1.3542e-09 2.718 ||| 0-0 ||| 370 1.17835e+06 +en ||| central ||| 0.000371195 0.0016797 1.69729e-06 6.1e-06 2.718 ||| 0-0 ||| 5388 1.17835e+06 +en ||| centralism and a lack of transparency within ||| 0.5 0.369196 8.48644e-07 2.22994e-22 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| centre at ||| 0.2 0.321886 8.48644e-07 1.28006e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| centre in ||| 0.04 0.605812 8.48644e-07 1.4777e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| centre of ||| 0.00145773 0.0116562 8.48644e-07 4.36384e-07 2.718 ||| 0-1 ||| 686 1.17835e+06 +en ||| centre on ||| 0.025 0.22993 8.48644e-07 2.65755e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| centred in ||| 0.333333 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| centred on the ||| 0.0333333 0.22993 8.48644e-07 1.47856e-08 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| centred on ||| 0.03 0.22993 2.54593e-06 2.4084e-07 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| centred ||| 0.0155039 0.0313725 1.69729e-06 5.4e-06 2.718 ||| 0-0 ||| 129 1.17835e+06 +en ||| centres in ||| 0.0833333 0.605812 1.69729e-06 5.63373e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| centres of ||| 0.00425532 0.0116562 8.48644e-07 1.66371e-07 2.718 ||| 0-1 ||| 235 1.17835e+06 +en ||| cereals on ||| 0.111111 0.22993 8.48644e-07 2.98974e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| ceremony in ||| 0.111111 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| certain amount ||| 0.00380228 0.0012269 8.48644e-07 4.30641e-09 2.718 ||| 0-0 ||| 263 1.17835e+06 +en ||| certain areas , leading to ||| 1 0.0247351 8.48644e-07 1.90467e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| certain at ||| 0.5 0.321886 8.48644e-07 1.14006e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| certain extent in ||| 0.5 0.605812 8.48644e-07 2.5295e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| certain extent ||| 0.03 0.0400323 2.54593e-06 5.75985e-08 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| certain occasion in ||| 1 0.605812 8.48644e-07 6.43561e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| certain of ||| 0.0116959 0.0116562 1.69729e-06 3.88654e-06 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| certain transitional period here , ||| 1 0.0855319 8.48644e-07 1.032e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| certain transitional period here ||| 1 0.0855319 8.48644e-07 8.65374e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| certain ||| 0.000807332 0.0012269 1.4427e-05 1.77e-05 2.718 ||| 0-0 ||| 21057 1.17835e+06 +en ||| certainly , on ||| 0.166667 0.22993 8.48644e-07 2.48093e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| certainly also on ||| 0.5 0.22993 8.48644e-07 1.05029e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| certainly as far as ||| 0.0769231 0.066968 8.48644e-07 3.1391e-11 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| certainly at ||| 0.0384615 0.321886 8.48644e-07 1.00205e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| certainly be in ||| 0.2 0.605812 8.48644e-07 2.09639e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| certainly be possible for ||| 1 0.0286209 8.48644e-07 4.18946e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| certainly extremely difficult , even with the ||| 0.25 0.0535436 8.48644e-07 1.53517e-19 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| certainly extremely difficult , even with ||| 0.25 0.0535436 8.48644e-07 2.50061e-18 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| certainly for the better from ||| 1 0.0308834 8.48644e-07 7.64119e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| certainly going to ||| 0.111111 0.0247351 8.48644e-07 6.0258e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| certainly in ||| 0.0439024 0.605812 7.6378e-06 0.000115676 2.718 ||| 0-1 ||| 205 1.17835e+06 +en ||| certainly not in ||| 0.0222222 0.605812 8.48644e-07 3.9493e-07 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| certainly not only in ||| 1 0.605812 8.48644e-07 4.39597e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| certainly not ||| 0.000688231 0.0129293 8.48644e-07 7.4325e-07 2.718 ||| 0-0 ||| 1453 1.17835e+06 +en ||| certainly on ||| 0.0714286 0.22993 8.48644e-07 2.08036e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| certainly under ||| 0.25 0.205566 8.48644e-07 1.41648e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| certainly ||| 0.000862962 0.0129293 8.48644e-06 0.0002177 2.718 ||| 0-0 ||| 11588 1.17835e+06 +en ||| certificate for ||| 0.166667 0.0286209 8.48644e-07 3.68166e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| certificate in the ||| 1 0.605812 8.48644e-07 9.07186e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| certificate in ||| 1 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| chain ||| 0.000561482 0.0007067 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1781 1.17835e+06 +en ||| chair at ||| 0.142857 0.321886 8.48644e-07 2.0001e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| chaired by people without ||| 0.5 0.0468744 8.48644e-07 5.29548e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| chaired by people ||| 0.5 0.0468744 8.48644e-07 2.39614e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| chaired by ||| 0.00740741 0.0468744 1.69729e-06 2.72227e-08 2.718 ||| 0-1 ||| 270 1.17835e+06 +en ||| chalk , as long ||| 1 0.066968 8.48644e-07 1.30626e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| chalk , as ||| 1 0.066968 8.48644e-07 3.86125e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| challenge for ||| 0.0023753 0.0286209 8.48644e-07 4.92423e-07 2.718 ||| 0-1 ||| 421 1.17835e+06 +en ||| challenge in ||| 0.0163934 0.605812 1.69729e-06 1.97642e-05 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| challenge on ||| 0.0833333 0.22993 8.48644e-07 3.55447e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| challenge to ||| 0.00332226 0.0247351 8.48644e-07 1.20304e-06 2.718 ||| 0-1 ||| 301 1.17835e+06 +en ||| challenge when ||| 0.0909091 0.142731 8.48644e-07 2.54801e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| challenged by ||| 0.025641 0.0468744 8.48644e-07 3.06256e-08 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| challenges in ||| 0.00552486 0.605812 8.48644e-07 8.63531e-06 2.718 ||| 0-1 ||| 181 1.17835e+06 +en ||| challenges of ||| 0.00143678 0.0116562 8.48644e-07 2.55012e-07 2.718 ||| 0-1 ||| 696 1.17835e+06 +en ||| challenges on ||| 0.0714286 0.22993 8.48644e-07 1.55301e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| challenges us in ||| 0.166667 0.605812 8.48644e-07 2.48887e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| chance as an ||| 1 0.066968 8.48644e-07 5.26876e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| chance as ||| 0.2 0.066968 8.48644e-07 1.1854e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| chance of survival in ||| 0.5 0.605812 8.48644e-07 1.07534e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| chance of ||| 0.000921659 0.0116562 8.48644e-07 8.98678e-07 2.718 ||| 0-1 ||| 1085 1.17835e+06 +en ||| chance to check ||| 0.166667 0.0247351 8.48644e-07 5.66815e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| chance to make its presence felt in ||| 1 0.605812 8.48644e-07 1.47434e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| chance to speak in ||| 0.25 0.605812 8.48644e-07 3.65862e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| chance to ||| 0.000706215 0.0247351 8.48644e-07 1.85234e-06 2.718 ||| 0-1 ||| 1416 1.17835e+06 +en ||| chances in ||| 0.0588235 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| change at ||| 0.0238095 0.321886 8.48644e-07 4.88024e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| change from Member ||| 1 0.0308834 8.48644e-07 2.39214e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| change from ||| 0.025 0.0308834 1.69729e-06 4.64222e-07 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| change horses in ||| 0.5 0.605812 8.48644e-07 1.23942e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| change in the substance , ||| 0.5 0.605812 8.48644e-07 1.21676e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| change in the substance ||| 0.333333 0.605812 8.48644e-07 1.0203e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| change in the ||| 0.00178253 0.605812 8.48644e-07 3.45865e-06 2.718 ||| 0-1 ||| 561 1.17835e+06 +en ||| change in unit . ||| 1 0.605812 8.48644e-07 2.03068e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| change in unit ||| 1 0.605812 8.48644e-07 6.70414e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| change in ||| 0.00886263 0.605812 1.01837e-05 5.63373e-05 2.718 ||| 0-1 ||| 1354 1.17835e+06 +en ||| change into a ||| 0.25 0.525896 8.48644e-07 1.19713e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| change into ||| 0.0555556 0.525896 8.48644e-07 2.70075e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| change it in ||| 0.25 0.605812 8.48644e-07 1.00186e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| change it ||| 0.0104167 0.0080472 8.48644e-07 3.36464e-07 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| change national currency into euros at ||| 1 0.321886 8.48644e-07 1.46889e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| change on ||| 0.0357143 0.22993 8.48644e-07 1.01319e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| change substantive points that are in ||| 1 0.605812 8.48644e-07 8.77876e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| change that ||| 0.00409836 0.0017499 8.48644e-07 1.27514e-07 2.718 ||| 0-1 ||| 244 1.17835e+06 +en ||| change their mind within ||| 0.5 0.369196 8.48644e-07 3.94922e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| change them in ||| 0.5 0.605812 8.48644e-07 1.51119e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| changed at ||| 0.0454545 0.321886 8.48644e-07 1.30807e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| changed back into ||| 1 0.525896 8.48644e-07 4.86888e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| changed by ||| 0.025 0.0468744 8.48644e-07 2.78182e-07 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| changed here - in ||| 1 0.605812 8.48644e-07 1.15503e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| changed in ||| 0.00793651 0.605812 8.48644e-07 1.51002e-05 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| changed into ||| 0.0769231 0.525896 8.48644e-07 7.2389e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| changed overnight as ||| 1 0.066968 8.48644e-07 2.11754e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| changed since ||| 0.0131579 0.0075235 8.48644e-07 5.67345e-09 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| changed the mood in the EU ||| 1 0.605812 8.48644e-07 1.91489e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| changed the mood in the ||| 1 0.605812 8.48644e-07 3.87002e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| changed the mood in ||| 1 0.605812 8.48644e-07 6.30381e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| changed to ||| 0.015625 0.0247351 8.48644e-07 9.19141e-07 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| changes are certainly for the better from ||| 1 0.0308834 8.48644e-07 5.92441e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| changes in ||| 0.00498753 0.605812 5.09187e-06 2.3597e-05 2.718 ||| 0-1 ||| 1203 1.17835e+06 +en ||| changes into ||| 0.142857 0.525896 8.48644e-07 1.13122e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| changes on ||| 0.0909091 0.22993 2.54593e-06 4.24377e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| changes to ||| 0.0029615 0.0247351 2.54593e-06 1.43633e-06 2.718 ||| 0-1 ||| 1013 1.17835e+06 +en ||| changes within European ||| 1 0.369196 8.48644e-07 1.89442e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| changes within ||| 0.0666667 0.369196 8.48644e-07 5.6653e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| changing ||| 0.000695169 0.0061425 1.69729e-06 1.02e-05 2.718 ||| 0-0 ||| 2877 1.17835e+06 +en ||| channel . ||| 0.125 0.0035211 8.48644e-07 4.2406e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| channel ||| 0.00170358 0.0035211 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 587 1.17835e+06 +en ||| channelled to ||| 0.037037 0.0247351 8.48644e-07 1.20866e-07 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| channels whilst ||| 1 0.0125238 8.48644e-07 4.6268e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| chapter ||| 0.00403877 0.0097087 4.24322e-06 9.5e-06 2.718 ||| 0-0 ||| 1238 1.17835e+06 +en ||| chapters within ||| 1 0.369196 8.48644e-07 2.43907e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| character in ||| 0.333333 0.605812 8.48644e-07 6.14169e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| character of ||| 0.00961538 0.0116562 8.48644e-07 1.81372e-07 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| characterise in ||| 0.333333 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| characterised by ||| 0.00557103 0.0468744 3.39458e-06 1.4377e-07 2.718 ||| 0-1 ||| 718 1.17835e+06 +en ||| characterised in ||| 0.1 0.605812 8.48644e-07 7.8041e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| characteristics to ||| 0.2 0.0247351 8.48644e-07 2.64218e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| characterized by ||| 0.0121951 0.0468744 8.48644e-07 1.53128e-08 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| charge levied when ||| 0.333333 0.142731 8.48644e-07 1.83028e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| charged by ||| 0.037037 0.0468744 8.48644e-07 1.41218e-07 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| charged on ||| 0.0909091 0.22993 8.48644e-07 1.3786e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| charges in ||| 0.0357143 0.605812 8.48644e-07 1.01592e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| cheap in ||| 0.0833333 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| cheating for the ||| 0.333333 0.0286209 8.48644e-07 7.76957e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| cheating for ||| 0.333333 0.0286209 8.48644e-07 1.26557e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| check on ||| 0.0163934 0.22993 8.48644e-07 2.54128e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| checked in ||| 0.0952381 0.605812 1.69729e-06 3.50954e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| checked with ||| 0.0588235 0.0535436 8.48644e-07 8.86076e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| checkpoint in ||| 0.333333 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| cheek by ||| 0.333333 0.0468744 8.48644e-07 1.87156e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| chief among these ||| 0.5 0.0422459 8.48644e-07 2.6095e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| chief among ||| 0.166667 0.0422459 8.48644e-07 2.51615e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| chiefly in ||| 0.05 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| chiefly on ||| 0.0555556 0.22993 8.48644e-07 2.65755e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| child on ||| 0.166667 0.22993 8.48644e-07 2.7489e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| child placed in ||| 1 0.605812 8.48644e-07 1.91368e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| child thinks of ||| 1 0.0116562 8.48644e-07 5.50689e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| childhood he ||| 0.5 0.008 8.48644e-07 1.7454e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| childhood ||| 0.00492611 0.008 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 203 1.17835e+06 +en ||| children found there were ||| 1 0.0117359 8.48644e-07 3.27459e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| children found there ||| 1 0.0117359 8.48644e-07 1.82795e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| children in a ||| 0.0714286 0.605812 8.48644e-07 1.52493e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| children in ||| 0.00673401 0.605812 3.39458e-06 3.44027e-05 2.718 ||| 0-1 ||| 594 1.17835e+06 +en ||| choice in ||| 0.0240964 0.605812 1.69729e-06 2.05954e-05 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| choices needed to be made in ||| 0.5 0.605812 8.48644e-07 1.50182e-15 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| choose in ||| 0.133333 0.605812 1.69729e-06 1.46385e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| choose within ||| 1 0.369196 8.48644e-07 3.51448e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| chopped off in ||| 1 0.605812 8.48644e-07 1.31561e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| chord in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| chosen in ||| 0.0344828 0.605812 8.48644e-07 1.11289e-05 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| church for ||| 0.5 0.0286209 8.48644e-07 4.14187e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| churned out in ||| 1 0.605812 8.48644e-07 7.07523e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| cigarettes and ||| 0.016129 0.0010182 8.48644e-07 1.29178e-09 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| cinema films shown in ||| 1 0.605812 8.48644e-07 3.3747e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| circles in ||| 0.05 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| circulation in the ||| 0.0434783 0.605812 8.48644e-07 1.92777e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| circulation in ||| 0.025641 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| circumstances in ||| 0.00462963 0.605812 8.48644e-07 2.49362e-05 2.718 ||| 0-1 ||| 216 1.17835e+06 +en ||| citizen in ||| 0.0123457 0.605812 8.48644e-07 7.98881e-06 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| citizens and in ||| 0.0526316 0.605812 8.48644e-07 6.3048e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| citizens dying in ||| 1 0.605812 8.48644e-07 1.81203e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| citizens for demonstrating were in fact aimed ||| 0.333333 0.0286209 8.48644e-07 1.16497e-22 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| citizens for demonstrating were in fact ||| 0.333333 0.0286209 8.48644e-07 1.67621e-18 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| citizens for demonstrating were in ||| 0.333333 0.0286209 8.48644e-07 5.72223e-16 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| citizens for demonstrating were ||| 0.333333 0.0286209 8.48644e-07 2.67338e-14 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| citizens for demonstrating ||| 0.333333 0.0286209 8.48644e-07 1.49234e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| citizens for ||| 0.0107527 0.0286209 8.48644e-07 1.25407e-06 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| citizens in order ||| 0.2 0.605812 8.48644e-07 2.6808e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| citizens in ||| 0.0109091 0.605812 7.6378e-06 5.03341e-05 2.718 ||| 0-1 ||| 825 1.17835e+06 +en ||| citizens of ||| 0.000246245 0.0116562 8.48644e-07 1.48643e-06 2.718 ||| 0-1 ||| 4061 1.17835e+06 +en ||| citizens on ||| 0.00847458 0.22993 8.48644e-07 9.05228e-06 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| city by ||| 0.2 0.0468744 8.48644e-07 1.74396e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| city of ||| 0.00711744 0.0116562 1.69729e-06 2.79559e-07 2.718 ||| 0-1 ||| 281 1.17835e+06 +en ||| city on ||| 0.125 0.22993 8.48644e-07 1.70249e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| city tunnel in ||| 1 0.605812 8.48644e-07 7.47854e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| civil liability in ||| 0.0294118 0.605812 8.48644e-07 1.37574e-10 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| civil society at ||| 0.125 0.321886 8.48644e-07 6.16087e-11 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| civil society in ||| 0.00290698 0.605812 8.48644e-07 7.11208e-10 2.718 ||| 0-2 ||| 344 1.17835e+06 +en ||| civil ||| 0.000384246 0.0001618 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 5205 1.17835e+06 +en ||| civilians , including over 300 ||| 0.5 0.157937 8.48644e-07 1.04171e-18 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| civilians , including over ||| 0.333333 0.157937 8.48644e-07 1.79605e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| civilians from ||| 0.0769231 0.0308834 8.48644e-07 1.36984e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| civilization in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| claim , they will know for ||| 1 0.0286209 8.48644e-07 4.708e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| claim on ||| 0.0625 0.22993 8.48644e-07 3.91158e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| claim to ||| 0.00374532 0.0247351 8.48644e-07 1.3239e-06 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| claimed by ||| 0.0454545 0.0468744 8.48644e-07 1.68441e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| claimed in ||| 0.0714286 0.605812 1.69729e-06 9.14327e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| claims for ||| 0.0188679 0.0286209 8.48644e-07 3.47457e-07 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| claims in ||| 0.0434783 0.605812 8.48644e-07 1.39458e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| claims on ||| 0.0322581 0.22993 8.48644e-07 2.50806e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| claims ||| 0.000571755 0.0004346 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1749 1.17835e+06 +en ||| clarification is needed in ||| 1 0.605812 8.48644e-07 2.36424e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| clarified ' in ||| 1 0.605812 8.48644e-07 1.25308e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| clarifying Lisbonisation ||| 0.0526316 0.0909091 8.48644e-07 1.75e-12 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| clarity in ||| 0.00714286 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| class in ||| 0.1 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| class when it comes to ||| 0.5 0.142731 8.48644e-07 3.23449e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| class when it comes ||| 0.5 0.142731 8.48644e-07 3.64006e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| class when it ||| 0.5 0.142731 8.48644e-07 9.10471e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| class when ||| 0.25 0.142731 8.48644e-07 5.11984e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| classes . unfortunately , however many ||| 1 0.0053256 8.48644e-07 1.66643e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| classes . unfortunately , however ||| 1 0.0053256 8.48644e-07 4.85415e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| classes in future : an ||| 1 0.605812 8.48644e-07 1.06489e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| classes in future : ||| 1 0.605812 8.48644e-07 2.39588e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| classes in future ||| 1 0.605812 8.48644e-07 7.11365e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| classes in ||| 0.166667 0.605812 1.69729e-06 2.67833e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| classified in ||| 0.125 0.605812 1.69729e-06 3.50954e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| clause is added to ||| 1 0.0247351 8.48644e-07 6.0927e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| clause on ||| 0.0117647 0.22993 8.48644e-07 8.05569e-07 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| clauses in ||| 0.0416667 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| clay tablets in Mesopotamia prove how ||| 0.5 0.605812 8.48644e-07 3.08179e-27 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| clay tablets in Mesopotamia prove ||| 0.5 0.605812 8.48644e-07 8.59873e-24 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| clay tablets in Mesopotamia ||| 0.5 0.605812 8.48644e-07 1.62547e-19 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| clay tablets in ||| 0.5 0.605812 8.48644e-07 4.06367e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| cleaning up ||| 0.0108696 0.0147069 8.48644e-07 1.518e-09 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| clear at ||| 0.0645161 0.321886 5.09187e-06 1.33167e-05 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| clear for ||| 0.0116279 0.0286209 8.48644e-07 3.83008e-06 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| clear from ||| 0.00824176 0.0308834 2.54593e-06 1.26672e-06 2.718 ||| 0-1 ||| 364 1.17835e+06 +en ||| clear in ||| 0.031185 0.605812 1.27297e-05 0.000153727 2.718 ||| 0-1 ||| 481 1.17835e+06 +en ||| clear of ||| 0.037037 0.0116562 8.48644e-07 4.53976e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| clear on ||| 0.00324675 0.22993 8.48644e-07 2.76468e-05 2.718 ||| 0-1 ||| 308 1.17835e+06 +en ||| clear progress has been made in ||| 1 0.605812 8.48644e-07 7.28982e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| clear provisions in ||| 0.5 0.605812 8.48644e-07 1.21137e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| clear statement in ||| 0.142857 0.605812 8.48644e-07 1.14527e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| clear that in ||| 0.0114943 0.605812 8.48644e-07 2.58593e-06 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| clear to ||| 0.0038059 0.0247351 3.39458e-06 9.35725e-06 2.718 ||| 0-1 ||| 1051 1.17835e+06 +en ||| clear up ||| 0.00675676 0.0147069 8.48644e-07 2.29701e-07 2.718 ||| 0-1 ||| 148 1.17835e+06 +en ||| cleared in ||| 0.111111 0.605812 8.48644e-07 5.4952e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| cleared out in favour ||| 0.25 0.605812 8.48644e-07 6.80929e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| cleared out in ||| 0.25 0.605812 8.48644e-07 2.10488e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| clearing in ||| 1 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| clearly at ||| 0.0322581 0.321886 8.48644e-07 7.30037e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| clearly being in a ||| 1 0.605812 8.48644e-07 1.06307e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| clearly being in ||| 1 0.605812 8.48644e-07 2.3983e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| clearly enough in ||| 0.2 0.605812 8.48644e-07 1.39222e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| clearly in ||| 0.0325733 0.605812 8.48644e-06 8.42751e-05 2.718 ||| 0-1 ||| 307 1.17835e+06 +en ||| clearly into ||| 0.0909091 0.525896 8.48644e-07 4.04006e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| clearly of the view , in the ||| 1 0.0011669 8.48644e-07 4.02324e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| clearly of the view , in ||| 1 0.0011669 8.48644e-07 6.55339e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| clearly of the view , ||| 1 0.0011669 8.48644e-07 3.06169e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| clearly of the view ||| 1 0.0011669 8.48644e-07 2.56735e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| clearly of the ||| 0.2 0.0011669 8.48644e-07 2.84219e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| clearly on ||| 0.0133333 0.22993 8.48644e-07 1.51563e-05 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| clearly the Secretary-General , ||| 1 0.0011669 8.48644e-07 8.72862e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| clearly the Secretary-General ||| 1 0.0011669 8.48644e-07 7.31931e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| clearly the ||| 0.00255754 0.0011669 8.48644e-07 5.22808e-07 2.718 ||| 0-1 ||| 391 1.17835e+06 +en ||| clearly ||| 5.42094e-05 4.42e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 18447 1.17835e+06 +en ||| clergyman Doucet in France ? why should ||| 1 0.605812 8.48644e-07 3.17208e-28 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| clergyman Doucet in France ? why ||| 1 0.605812 8.48644e-07 7.15884e-26 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| clergyman Doucet in France ? ||| 1 0.605812 8.48644e-07 2.9042e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| clergyman Doucet in France ||| 1 0.605812 8.48644e-07 1.69935e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| clergyman Doucet in ||| 1 0.605812 8.48644e-07 7.3885e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| clichés churned out in ||| 1 0.605812 8.48644e-07 4.95266e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| clicking on ||| 0.5 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| clients in a ||| 1 0.605812 8.48644e-07 2.25157e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| clients in ||| 0.0909091 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| climate change in ||| 0.00854701 0.605812 8.48644e-07 1.53801e-09 2.718 ||| 0-2 ||| 117 1.17835e+06 +en ||| climate change on ||| 0.015625 0.22993 8.48644e-07 2.76601e-10 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| climate when ||| 0.5 0.142731 8.48644e-07 1.62525e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| close at ||| 0.1 0.321886 8.48644e-07 5.9323e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| close attention to ||| 0.00793651 0.0247351 8.48644e-07 1.08922e-09 2.718 ||| 0-2 ||| 126 1.17835e+06 +en ||| close cooperation at European level ||| 1 0.321886 8.48644e-07 1.56281e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| close cooperation at European ||| 1 0.321886 8.48644e-07 1.82699e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| close cooperation at ||| 0.25 0.321886 8.48644e-07 5.46365e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| close eye on ||| 0.0120482 0.22993 8.48644e-07 7.00785e-10 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| close look at ||| 0.0294118 0.321886 8.48644e-07 1.72926e-09 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| close to becoming ||| 0.2 0.0247351 8.48644e-07 4.28935e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| close to ||| 0.00522778 0.0247351 5.94051e-06 4.16846e-06 2.718 ||| 0-1 ||| 1339 1.17835e+06 +en ||| closed doors where ||| 0.333333 0.247783 8.48644e-07 5.86802e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| closed in ||| 0.0857143 0.605812 2.54593e-06 2.67371e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| closed the ||| 0.016129 0.0011669 8.48644e-07 1.65866e-07 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| closely about ||| 1 0.0401564 8.48644e-07 2.5365e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| closely as possible in ||| 0.5 0.605812 8.48644e-07 3.34499e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| closely at ||| 0.0112994 0.321886 1.69729e-06 3.54018e-06 2.718 ||| 0-1 ||| 177 1.17835e+06 +en ||| closely in order ||| 0.0833333 0.605812 8.48644e-07 2.17661e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| closely in ||| 0.0451613 0.605812 5.94051e-06 4.08676e-05 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| closely monitored in ||| 0.333333 0.605812 8.48644e-07 4.98585e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| closely on ||| 0.04 0.22993 2.54593e-06 7.34978e-06 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| closely over ||| 0.111111 0.157937 8.48644e-07 3.54637e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| closely to ||| 0.00684932 0.0247351 8.48644e-07 2.48758e-06 2.718 ||| 0-1 ||| 146 1.17835e+06 +en ||| closely with ||| 0.00127877 0.0535436 8.48644e-07 1.03181e-06 2.718 ||| 0-1 ||| 782 1.17835e+06 +en ||| closely ||| 0.000189107 0.000522 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 5288 1.17835e+06 +en ||| closer in ||| 0.2 0.605812 8.48644e-07 9.83594e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| closer to ||| 0.00283286 0.0247351 2.54593e-06 5.98707e-06 2.718 ||| 0-1 ||| 1059 1.17835e+06 +en ||| closer together in ||| 0.333333 0.605812 3.39458e-06 5.90746e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| closer together within ||| 1 0.369196 8.48644e-07 1.4183e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| closer together ||| 0.0142857 0.0128468 1.69729e-06 3.44847e-08 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| clothing with ||| 1 0.0535436 8.48644e-07 4.66356e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| club class in ||| 0.5 0.605812 8.48644e-07 1.42967e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| clubs in ||| 0.0909091 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| cluster bombs - ||| 0.2 0.093981 8.48644e-07 5.71473e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| cluster bombs ||| 0.00793651 0.093981 8.48644e-07 1.515e-10 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| cluster ||| 0.00649351 0.093981 8.48644e-07 6.06e-05 2.718 ||| 0-0 ||| 154 1.17835e+06 +en ||| co-operation among its governments in ||| 1 0.605812 8.48644e-07 4.43523e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| co-operation in ||| 0.0263158 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| coach in ||| 0.142857 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| coast in ||| 0.166667 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| coastline known as ||| 1 0.066968 8.48644e-07 4.35703e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| coasts in ||| 0.166667 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| codified at ||| 1 0.321886 8.48644e-07 2.80014e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| coexistence in ||| 0.0555556 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| cofunded by ||| 0.2 0.0468744 8.48644e-07 3.40284e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| cohesion in ||| 0.010101 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| coin in order to meet the requirements ||| 1 0.605812 8.48644e-07 3.96447e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| coin in order to meet the ||| 1 0.605812 8.48644e-07 8.15734e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| coin in order to meet ||| 1 0.605812 8.48644e-07 1.32874e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| coin in order to ||| 1 0.605812 8.48644e-07 1.09271e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| coin in order ||| 1 0.605812 8.48644e-07 1.22972e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| coin in ||| 0.166667 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| coincide with ||| 0.015873 0.0535436 1.69729e-06 3.38108e-08 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| coincided with ||| 0.0212766 0.0535436 8.48644e-07 4.66356e-09 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| coincides with ||| 0.0175439 0.0535436 1.69729e-06 8.16123e-09 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| coins and notes in ||| 0.5 0.605812 8.48644e-07 4.49781e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| coins into ||| 0.5 0.525896 8.48644e-07 1.19541e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| coins ||| 0.00134589 0.0639835 8.48644e-07 4.22e-05 2.718 ||| 0-0 ||| 743 1.17835e+06 +en ||| cold feet when ||| 0.1 0.142731 8.48644e-07 1.28026e-12 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| cold water on ||| 0.0909091 0.22993 8.48644e-07 5.43427e-11 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| collaborated , in ||| 1 0.605812 8.48644e-07 2.20278e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| collapsed in ||| 0.0714286 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| collateral held under ||| 0.25 0.205566 8.48644e-07 2.59648e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| colleague from ||| 0.0227273 0.0308834 8.48644e-07 2.10803e-07 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| colleague of ||| 0.0243902 0.0116562 8.48644e-07 7.5549e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| colleagues in ||| 0.00428266 0.605812 3.39458e-06 1.02977e-05 2.718 ||| 0-1 ||| 934 1.17835e+06 +en ||| colleagues on ||| 0.00462963 0.22993 8.48644e-07 1.85198e-06 2.718 ||| 0-1 ||| 216 1.17835e+06 +en ||| collected at ||| 0.0909091 0.321886 8.48644e-07 5.20026e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| collected in ||| 0.0350877 0.605812 1.69729e-06 6.00315e-06 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| collected on ||| 0.1 0.22993 8.48644e-07 1.07963e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| collected within ||| 1 0.369196 8.48644e-07 1.44127e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| collective agreement into ||| 1 0.525896 8.48644e-07 3.95751e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| collectively ||| 0.00177305 0.0285261 8.48644e-07 1.22e-05 2.718 ||| 0-0 ||| 564 1.17835e+06 +en ||| colloquially as ||| 0.25 0.066968 8.48644e-07 1.25915e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| colours in ||| 0.2 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| column of ||| 0.5 0.0116562 8.48644e-07 9.5459e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| combination of the ||| 0.0212766 0.0116562 8.48644e-07 6.36272e-09 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| combination of ||| 0.00169779 0.0116562 8.48644e-07 1.03641e-07 2.718 ||| 0-1 ||| 589 1.17835e+06 +en ||| combined in ||| 0.0434783 0.317299 8.48644e-07 1.57006e-05 2.718 ||| 0-0 0-1 ||| 23 1.17835e+06 +en ||| combined into ||| 0.166667 0.525896 8.48644e-07 5.5786e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| combined production of ||| 0.0769231 0.0116562 8.48644e-07 2.8695e-11 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| combined to produce this success . in ||| 1 0.605812 8.48644e-07 1.06387e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| combined ||| 0.00433974 0.0287853 5.94051e-06 3.4e-05 2.718 ||| 0-0 ||| 1613 1.17835e+06 +en ||| combines in ||| 0.25 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| combines sanctions with the requirement ||| 1 0.0535436 8.48644e-07 5.3698e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| combines sanctions with the ||| 1 0.0535436 8.48644e-07 1.27549e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| combines sanctions with ||| 1 0.0535436 8.48644e-07 2.07762e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| come , as ||| 0.0833333 0.066968 8.48644e-07 1.82187e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| come , in ||| 0.2 0.605812 8.48644e-07 4.67706e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| come , on ||| 1 0.22993 8.48644e-07 8.41139e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| come about because ||| 0.1 0.0022788 8.48644e-07 1.26723e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| come about in ||| 0.0740741 0.605812 1.69729e-06 5.54675e-07 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| come about ||| 0.00320513 0.0401564 8.48644e-07 2.43418e-06 2.718 ||| 0-1 ||| 312 1.17835e+06 +en ||| come across it while doing ||| 1 0.274879 8.48644e-07 2.12307e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| come across it while ||| 1 0.274879 8.48644e-07 5.78337e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| come across it ||| 1 0.274879 8.48644e-07 3.10267e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| come across ||| 0.0243902 0.274879 2.54593e-06 1.74472e-06 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| come as an ||| 0.5 0.066968 8.48644e-07 6.79022e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| come as ||| 0.0246914 0.066968 1.69729e-06 1.52771e-05 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| come at ||| 0.0227273 0.321886 1.69729e-06 3.39737e-05 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| come back to us ||| 0.0555556 0.0247351 8.48644e-07 4.62782e-11 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| come back to ||| 0.00584795 0.0247351 1.69729e-06 1.60566e-08 2.718 ||| 0-2 ||| 342 1.17835e+06 +en ||| come back ||| 0.00185529 0.007257 8.48644e-07 6.30181e-08 2.718 ||| 0-1 ||| 539 1.17835e+06 +en ||| come before ||| 0.0204082 0.0175291 2.54593e-06 2.89526e-07 2.718 ||| 0-1 ||| 147 1.17835e+06 +en ||| come forward in ||| 0.111111 0.605812 8.48644e-07 2.18215e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| come forward with ||| 0.0178571 0.0535436 3.39458e-06 5.50942e-09 2.718 ||| 0-2 ||| 224 1.17835e+06 +en ||| come from , people ||| 0.333333 0.0308834 8.48644e-07 3.39222e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| come from , there are many ||| 1 0.0308834 8.48644e-07 6.15336e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| come from , there are ||| 1 0.0308834 8.48644e-07 1.79241e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| come from , there ||| 1 0.0308834 8.48644e-07 1.18134e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| come from , ||| 0.030303 0.0308834 1.69729e-06 3.85392e-07 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| come from in ||| 0.5 0.605812 1.69729e-06 6.31584e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| come from ||| 0.00338983 0.0308834 4.24322e-06 3.23167e-06 2.718 ||| 0-1 ||| 1475 1.17835e+06 +en ||| come here and ||| 0.0212766 0.0855319 8.48644e-07 3.19158e-08 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| come here ||| 0.00390625 0.0855319 8.48644e-07 2.54798e-06 2.718 ||| 0-1 ||| 256 1.17835e+06 +en ||| come in ||| 0.039801 0.605812 6.78915e-06 0.000392191 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| come into being in ||| 0.142857 0.605812 8.48644e-07 1.1459e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| come into being ||| 0.0125 0.525896 8.48644e-07 5.35045e-08 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| come into effect ||| 0.00869565 0.525896 8.48644e-07 6.27208e-09 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| come into focus ||| 1 0.525896 8.48644e-07 1.45521e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| come into force according to ||| 1 0.525896 8.48644e-07 2.51644e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| come into force according ||| 1 0.525896 8.48644e-07 2.83197e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| come into force immediately in ||| 1 0.605812 8.48644e-07 2.71391e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| come into force ||| 0.00453515 0.525896 1.69729e-06 3.19997e-09 2.718 ||| 0-1 ||| 441 1.17835e+06 +en ||| come into the industry , ||| 1 0.525896 8.48644e-07 1.81834e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| come into the industry ||| 0.5 0.525896 8.48644e-07 1.52475e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| come into the ||| 0.0217391 0.525896 8.48644e-07 1.15424e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| come into ||| 0.0286659 0.525896 2.20648e-05 1.88012e-05 2.718 ||| 0-1 ||| 907 1.17835e+06 +en ||| come on ||| 0.0229885 0.22993 1.69729e-06 7.0533e-05 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| come onto ||| 0.0833333 0.233333 1.69729e-06 1.69945e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| come out in the ||| 0.166667 0.605812 8.48644e-07 9.22257e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| come out in ||| 0.0540541 0.605812 1.69729e-06 1.50225e-06 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| come out of ||| 0.0103627 0.0116562 1.69729e-06 4.43633e-08 2.718 ||| 0-2 ||| 193 1.17835e+06 +en ||| come to grips with many of ||| 1 0.0116562 8.48644e-07 3.90844e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| come to its ||| 0.1 0.0247351 8.48644e-07 3.4011e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| come to light in ||| 0.1 0.605812 8.48644e-07 6.05682e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| come to light of ||| 0.25 0.0116562 8.48644e-07 1.78866e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| come to play ||| 0.142857 0.0247351 8.48644e-07 6.15907e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| come to the end of ||| 0.0425532 0.0247351 1.69729e-06 3.46662e-11 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| come to the end ||| 0.0357143 0.0247351 1.69729e-06 6.37669e-10 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| come to the ||| 0.00369686 0.0247351 1.69729e-06 1.46557e-06 2.718 ||| 0-1 ||| 541 1.17835e+06 +en ||| come to ||| 0.00803634 0.0247351 1.95188e-05 2.38724e-05 2.718 ||| 0-1 ||| 2862 1.17835e+06 +en ||| come true in ||| 0.333333 0.605812 8.48644e-07 6.3378e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| come under attack ||| 0.047619 0.205566 8.48644e-07 1.41672e-10 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| come under ||| 0.0216049 0.205566 5.94051e-06 4.80245e-06 2.718 ||| 0-1 ||| 324 1.17835e+06 +en ||| come up against ||| 0.00980392 0.153982 8.48644e-07 1.67967e-08 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| come up at ||| 0.4 0.321886 1.69729e-06 1.15867e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| come up for ||| 0.0416667 0.0286209 8.48644e-07 3.33252e-08 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| come up in ||| 0.0588235 0.605812 1.69729e-06 1.33757e-06 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| come up with a proposal in ||| 0.5 0.605812 8.48644e-07 7.57106e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| come up with a voluntary code of ||| 1 0.0535436 8.48644e-07 1.79665e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| come up with a voluntary code ||| 1 0.0535436 8.48644e-07 3.30486e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| come up with a voluntary ||| 1 0.0535436 8.48644e-07 1.99088e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| come up with a ||| 0.0030303 0.0535436 8.48644e-07 1.4969e-09 2.718 ||| 0-2 ||| 330 1.17835e+06 +en ||| come up with ||| 0.00918367 0.0535436 7.6378e-06 3.37704e-08 2.718 ||| 0-2 ||| 980 1.17835e+06 +en ||| come when ||| 0.142857 0.142731 3.39458e-06 5.05614e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| come within ||| 0.010989 0.369196 8.48644e-07 9.41593e-06 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| comes at ||| 0.0272727 0.321886 5.09187e-06 1.59928e-05 2.718 ||| 0-1 ||| 220 1.17835e+06 +en ||| comes back to ||| 0.0555556 0.0247351 8.48644e-07 7.55848e-09 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| comes behind ||| 1 0.0374138 8.48644e-07 9.30335e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| comes down to ||| 0.011236 0.0247351 8.48644e-07 7.84504e-09 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| comes first and ||| 0.1 0.138055 8.48644e-07 3.06075e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| comes first ||| 0.0243902 0.138055 8.48644e-07 2.44354e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| comes from ||| 0.00463679 0.0308834 2.54593e-06 1.52128e-06 2.718 ||| 0-1 ||| 647 1.17835e+06 +en ||| comes in ||| 0.00813008 0.605812 8.48644e-07 0.00018462 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| comes into being ||| 0.0416667 0.525896 8.48644e-07 2.51867e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| comes into ||| 0.00560224 0.525896 1.69729e-06 8.85049e-06 2.718 ||| 0-1 ||| 357 1.17835e+06 +en ||| comes to common ||| 1 0.0247351 8.48644e-07 2.59591e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| comes to cooperating at ||| 1 0.321886 8.48644e-07 3.55273e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| comes to looking at ||| 0.2 0.321886 8.48644e-07 1.50351e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| comes to mind ||| 0.0185185 0.0247351 8.48644e-07 2.83078e-09 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| comes to my ||| 0.111111 0.0247351 8.48644e-07 7.22696e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| comes to the ||| 0.00257732 0.0247351 1.69729e-06 6.89903e-07 2.718 ||| 0-1 ||| 776 1.17835e+06 +en ||| comes to ||| 0.00633747 0.0247351 2.03675e-05 1.12377e-05 2.718 ||| 0-1 ||| 3787 1.17835e+06 +en ||| comes under ||| 0.0114943 0.205566 1.69729e-06 2.26071e-06 2.718 ||| 0-1 ||| 174 1.17835e+06 +en ||| comes up with ||| 0.0294118 0.0535436 8.48644e-07 1.58971e-08 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| comes when ||| 0.307692 0.142731 3.39458e-06 2.38013e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| comes ||| 0.000171086 0.0001061 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 5845 1.17835e+06 +en ||| comfortable in ||| 0.181818 0.605812 1.69729e-06 1.66241e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| comfortably , in ||| 1 0.605812 8.48644e-07 6.05765e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| coming as a ||| 1 0.066968 8.48644e-07 1.54921e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| coming as they do at ||| 1 0.321886 8.48644e-07 8.89317e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| coming as they ||| 0.333333 0.066968 8.48644e-07 1.14078e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| coming as ||| 0.0769231 0.066968 1.69729e-06 3.49505e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| coming at ||| 0.307692 0.321886 3.39458e-06 7.77239e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| coming back to the ||| 0.0285714 0.012951 8.48644e-07 1.05231e-11 2.718 ||| 0-2 0-3 ||| 35 1.17835e+06 +en ||| coming before ||| 0.04 0.0175291 8.48644e-07 6.62369e-08 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| coming down hard on ||| 0.125 0.22993 8.48644e-07 1.18393e-12 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| coming down in ||| 0.5 0.605812 8.48644e-07 6.26364e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| coming forward in ||| 1 0.605812 1.69729e-06 4.99225e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| coming forward to ||| 0.25 0.0247351 8.48644e-07 3.03875e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| coming forwards in ||| 1 0.605812 8.48644e-07 1.09463e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| coming from a ||| 0.0107527 0.0308834 8.48644e-07 3.27714e-08 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| coming from ||| 0.00744048 0.0308834 4.24322e-06 7.39331e-07 2.718 ||| 0-1 ||| 672 1.17835e+06 +en ||| coming in ||| 0.032 0.605812 3.39458e-06 8.97241e-05 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| coming into being ||| 0.0322581 0.525896 8.48644e-07 1.22406e-08 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| coming into force in ||| 0.166667 0.605812 8.48644e-07 1.56788e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| coming into force ||| 0.00775194 0.525896 8.48644e-07 7.32077e-10 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| coming into ||| 0.0172911 0.525896 5.09187e-06 4.30128e-06 2.718 ||| 0-1 ||| 347 1.17835e+06 +en ||| coming on to ||| 0.2 0.22993 8.48644e-07 1.43384e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| coming on ||| 0.05 0.22993 8.48644e-07 1.61363e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| coming onto ||| 0.1 0.233333 1.69729e-06 3.88794e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| coming our ||| 1 0.0026592 8.48644e-07 1.77943e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| coming out of ||| 0.025 0.0116562 1.69729e-06 1.01493e-08 2.718 ||| 0-2 ||| 80 1.17835e+06 +en ||| coming over ||| 0.2 0.157937 1.69729e-06 7.78599e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| coming to fruition in ||| 1 0.605812 8.48644e-07 3.98636e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| coming to the view ||| 0.166667 0.0247351 8.48644e-07 3.02865e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| coming to the ||| 0.00628931 0.0247351 8.48644e-07 3.35288e-07 2.718 ||| 0-1 ||| 159 1.17835e+06 +en ||| coming to ||| 0.00700525 0.0247351 3.39458e-06 5.46144e-06 2.718 ||| 0-1 ||| 571 1.17835e+06 +en ||| coming under ||| 0.0153846 0.205566 8.48644e-07 1.09869e-06 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| coming up against ||| 0.0357143 0.153982 8.48644e-07 3.8427e-09 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| coming up with ||| 0.00892857 0.0535436 8.48644e-07 7.72589e-09 2.718 ||| 0-2 ||| 112 1.17835e+06 +en ||| coming up within ||| 0.25 0.369196 8.48644e-07 7.34671e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| coming up ||| 0.00456621 0.0026592 8.48644e-07 4.39955e-08 2.718 ||| 0-0 ||| 219 1.17835e+06 +en ||| coming ||| 0.00156709 0.0026592 6.78915e-06 1.29e-05 2.718 ||| 0-0 ||| 5105 1.17835e+06 +en ||| command in ||| 0.5 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| commend , in ||| 1 0.605812 8.48644e-07 3.19403e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| commend it : ||| 1 0.0080472 8.48644e-07 5.38739e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| commend it ||| 0.0344828 0.0080472 8.48644e-07 1.59958e-08 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| commended on ||| 0.142857 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| comment about this ||| 0.166667 0.0401564 8.48644e-07 8.46319e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| comment about ||| 0.0120482 0.0401564 8.48644e-07 1.30981e-07 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| comment in ||| 0.0714286 0.605812 3.39458e-06 2.11034e-05 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| comment often made in ||| 0.333333 0.605812 8.48644e-07 5.80885e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| comment on ||| 0.0046729 0.22993 5.09187e-06 3.79531e-06 2.718 ||| 0-1 ||| 1284 1.17835e+06 +en ||| commented on in ||| 0.2 0.417871 8.48644e-07 9.58755e-08 2.718 ||| 0-1 0-2 ||| 5 1.17835e+06 +en ||| commenting on a number of ||| 0.5 0.22993 8.48644e-07 3.96085e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| commenting on a number ||| 0.333333 0.22993 8.48644e-07 7.2858e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| commenting on a ||| 0.166667 0.22993 8.48644e-07 1.47247e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| commenting on ||| 0.00862069 0.22993 8.48644e-07 3.32194e-07 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| comments about ||| 0.00787402 0.0401564 8.48644e-07 1.43305e-07 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| comments in ||| 0.00980392 0.605812 8.48644e-07 2.30891e-05 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| comments into ||| 0.25 0.525896 8.48644e-07 1.10687e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| comments on it by myself would be ||| 1 0.22993 8.48644e-07 6.41178e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| comments on it by myself would ||| 1 0.22993 8.48644e-07 3.53794e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| comments on it by myself ||| 1 0.22993 8.48644e-07 6.0285e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| comments on it by ||| 1 0.22993 8.48644e-07 3.87685e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| comments on it ||| 0.125 0.22993 8.48644e-07 7.38433e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| comments on ||| 0.00306279 0.22993 1.69729e-06 4.15242e-06 2.718 ||| 0-1 ||| 653 1.17835e+06 +en ||| comments reminded her of ||| 0.2 0.0116562 8.48644e-07 2.00374e-15 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| comments to make on ||| 0.047619 0.22993 8.48644e-07 6.41207e-10 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| comments to ||| 0.00645161 0.0247351 8.48644e-07 1.40542e-06 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| commission a study in ||| 1 0.605812 8.48644e-07 2.49065e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| commission rates when ||| 1 0.142731 8.48644e-07 8.16555e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| commit us to ||| 0.0769231 0.0247351 8.48644e-07 1.92813e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| commitment at some ||| 0.0833333 0.321886 8.48644e-07 2.43144e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| commitment at ||| 0.0238095 0.321886 8.48644e-07 2.23211e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| commitment here ||| 0.2 0.0855319 8.48644e-07 1.67406e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| commitment in ||| 0.0106952 0.605812 1.69729e-06 2.57674e-05 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| commitment on ||| 0.00699301 0.22993 8.48644e-07 4.6341e-06 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| commitment to ||| 0.00233489 0.0247351 5.94051e-06 1.56844e-06 2.718 ||| 0-1 ||| 2998 1.17835e+06 +en ||| commitments in ||| 0.00617284 0.605812 8.48644e-07 9.14327e-06 2.718 ||| 0-1 ||| 162 1.17835e+06 +en ||| commitments on ||| 0.019802 0.22993 1.69729e-06 1.64436e-06 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| commitments within ||| 0.125 0.369196 8.48644e-07 2.19517e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| committed forms part of ||| 0.5 0.0116562 8.48644e-07 1.20078e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| committed in the name ||| 0.0769231 0.605812 8.48644e-07 2.05158e-10 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| committed in the ||| 0.015625 0.605812 8.48644e-07 2.34734e-06 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| committed in ||| 0.0528634 0.605812 1.01837e-05 3.82355e-05 2.718 ||| 0-1 ||| 227 1.17835e+06 +en ||| committed to ||| 0.00235405 0.0247351 4.24322e-06 2.32737e-06 2.718 ||| 0-1 ||| 2124 1.17835e+06 +en ||| committee , was , in ||| 1 0.605812 8.48644e-07 1.59253e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| committee in ||| 0.00714286 0.605812 8.48644e-07 3.57419e-05 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| committee on ||| 0.0103627 0.22993 1.69729e-06 6.42795e-06 2.718 ||| 0-1 ||| 193 1.17835e+06 +en ||| committee that it manages to ||| 1 0.0247351 8.48644e-07 2.34291e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| committee was in ||| 0.125 0.605812 8.48644e-07 1.11979e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| committing at ||| 0.5 0.321886 8.48644e-07 3.16016e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| committing himself to ||| 1 0.0247351 8.48644e-07 1.64543e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| committing ||| 0.00277778 0.0020284 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 360 1.17835e+06 +en ||| common among ||| 0.166667 0.0422459 8.48644e-07 7.35735e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| common currency , by ||| 1 0.0468744 8.48644e-07 8.76477e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| common economic policy on the ||| 0.5 0.22993 8.48644e-07 5.62445e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| common economic policy on ||| 0.5 0.22993 8.48644e-07 9.16156e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| common for ||| 0.047619 0.0286209 8.48644e-07 2.6577e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| common in ||| 0.0111111 0.605812 8.48644e-07 0.000106671 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| common interest within ||| 0.5 0.369196 8.48644e-07 2.87603e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| common position in ||| 0.0181818 0.605812 8.48644e-07 3.51269e-08 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| common practice in ||| 0.0454545 0.605812 8.48644e-07 1.12432e-08 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| common to ||| 0.00389105 0.0247351 8.48644e-07 6.49302e-06 2.718 ||| 0-1 ||| 257 1.17835e+06 +en ||| commonly held by ||| 1 0.0468744 8.48644e-07 1.17189e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| commonplace in ||| 0.05 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| commotion in ||| 0.111111 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| communication on ||| 0.00221239 0.22993 1.69729e-06 2.54128e-06 2.718 ||| 0-1 ||| 904 1.17835e+06 +en ||| communities in Western Europe , as referred ||| 1 0.605812 8.48644e-07 4.70497e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| communities in Western Europe , as ||| 1 0.605812 8.48644e-07 4.91637e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| communities in Western Europe , ||| 1 0.605812 8.48644e-07 4.81789e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| communities in Western Europe ||| 1 0.605812 8.48644e-07 4.04e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| communities in Western ||| 1 0.605812 8.48644e-07 7.9842e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| communities in ||| 0.0277778 0.605812 2.54593e-06 6.14169e-06 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| community in ||| 0.0576923 0.605812 2.54593e-06 1.75939e-05 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| community with ||| 0.0666667 0.0535436 8.48644e-07 4.44204e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| commuted in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| companies in such ||| 1 0.605812 8.48644e-07 6.70676e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| companies in ||| 0.0153509 0.605812 5.94051e-06 3.2417e-05 2.718 ||| 0-1 ||| 456 1.17835e+06 +en ||| companies with premises on ||| 0.5 0.22993 8.48644e-07 2.01312e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| companies you look at - is ||| 1 0.321886 8.48644e-07 3.12451e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| companies you look at - ||| 1 0.321886 8.48644e-07 9.96938e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| companies you look at ||| 1 0.321886 8.48644e-07 2.64293e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| company alone , ||| 1 0.0069465 8.48644e-07 1.4425e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| company alone ||| 0.5 0.0069465 8.48644e-07 1.2096e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| company in ||| 0.0206186 0.605812 1.69729e-06 1.74553e-05 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| company of ||| 0.0333333 0.0116562 8.48644e-07 5.15479e-07 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| company ||| 0.000210615 0.0002321 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 4748 1.17835e+06 +en ||| compared to other ||| 0.015873 0.216645 8.48644e-07 6.62722e-08 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| compared to the ||| 0.00223214 0.216645 8.48644e-07 3.14054e-06 2.718 ||| 0-0 ||| 448 1.17835e+06 +en ||| compared to those ||| 0.0222222 0.216645 8.48644e-07 3.70418e-08 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| compared to ||| 0.00444444 0.216645 4.24322e-06 5.11557e-05 2.718 ||| 0-0 ||| 1125 1.17835e+06 +en ||| compared with Member ||| 0.5 0.0535436 8.48644e-07 2.24693e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| compared with the ||| 0.00197628 0.0535436 8.48644e-07 2.67695e-08 2.718 ||| 0-1 ||| 506 1.17835e+06 +en ||| compared with ||| 0.00658376 0.135094 7.6378e-06 6.71203e-06 2.718 ||| 0-0 0-1 ||| 1367 1.17835e+06 +en ||| compared ||| 0.00976562 0.216645 1.69729e-05 0.0005757 2.718 ||| 0-0 ||| 2048 1.17835e+06 +en ||| compares favourably with the ||| 0.111111 0.0535436 8.48644e-07 7.15761e-16 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| compares favourably with ||| 0.1 0.0535436 8.48644e-07 1.16589e-14 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| comparison for ||| 1 0.0286209 8.48644e-07 1.61073e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| compatible with ||| 0.000949668 0.0535436 8.48644e-07 9.67689e-08 2.718 ||| 0-1 ||| 1053 1.17835e+06 +en ||| compel us as Europeans to launch an ||| 1 0.066968 8.48644e-07 6.7341e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| compel us as Europeans to launch ||| 1 0.066968 8.48644e-07 1.51508e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| compel us as Europeans to ||| 1 0.066968 8.48644e-07 7.65194e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| compel us as Europeans ||| 1 0.066968 8.48644e-07 8.61141e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| compel us as ||| 1 0.066968 8.48644e-07 5.70292e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| compensating seats in ||| 1 0.605812 8.48644e-07 6.27099e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| compensatory aid in ||| 0.2 0.605812 8.48644e-07 1.32679e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| compete against each other on ||| 0.5 0.22993 8.48644e-07 5.69257e-17 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| compete on ||| 0.0144928 0.22993 1.69729e-06 6.56082e-07 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| compete strongly against each ||| 1 0.153982 8.48644e-07 6.15957e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| compete strongly against ||| 1 0.153982 8.48644e-07 2.19436e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| competence for ||| 0.0117647 0.0286209 8.48644e-07 2.77275e-07 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| competence in ||| 0.026178 0.605812 4.24322e-06 1.11289e-05 2.718 ||| 0-1 ||| 191 1.17835e+06 +en ||| competence with ||| 0.047619 0.0535436 8.48644e-07 2.80979e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| competences in ||| 0.0136986 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| competent in ||| 0.0277778 0.605812 8.48644e-07 6.00315e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| competing in ||| 0.0285714 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| competition in ||| 0.00488599 0.605812 2.54593e-06 1.67627e-05 2.718 ||| 0-1 ||| 614 1.17835e+06 +en ||| competition on ||| 0.00680272 0.22993 8.48644e-07 3.01466e-06 2.718 ||| 0-1 ||| 147 1.17835e+06 +en ||| competition with entries ||| 1 0.0535436 8.48644e-07 7.61793e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| competition with ||| 0.00414938 0.0535436 8.48644e-07 4.23218e-07 2.718 ||| 0-1 ||| 241 1.17835e+06 +en ||| competition would interfere with ||| 0.333333 0.0535436 8.48644e-07 6.20935e-15 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| competitive at ||| 0.0285714 0.321886 8.48644e-07 7.64038e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| competitive in ||| 0.00497512 0.605812 8.48644e-07 8.82002e-06 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| competitive positions of the yards in question ||| 1 0.605812 8.48644e-07 1.15239e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| competitive positions of the yards in ||| 1 0.605812 8.48644e-07 1.39295e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| competitiveness . in ||| 1 0.605812 8.48644e-07 6.57405e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| competitiveness in ||| 0.00243902 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 410 1.17835e+06 +en ||| compiled in ||| 0.0909091 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| complacent behind ||| 1 0.0374138 8.48644e-07 9.308e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| complaints when ||| 1 0.142731 8.48644e-07 2.97665e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| complemented by the appointments ||| 0.333333 0.0468744 8.48644e-07 1.46235e-15 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| complemented by the ||| 0.04 0.0468744 8.48644e-07 3.65586e-10 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| complemented by ||| 0.0128205 0.0468744 8.48644e-07 5.95497e-09 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| complete change from ||| 1 0.0308834 8.48644e-07 3.32383e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| complete in respect of various important factors ||| 1 0.605812 8.48644e-07 1.37703e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| complete in respect of various important ||| 1 0.605812 8.48644e-07 4.60546e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| complete in respect of various ||| 1 0.605812 8.48644e-07 1.20059e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| complete in respect of ||| 0.5 0.605812 8.48644e-07 7.77584e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| complete in respect ||| 0.5 0.605812 8.48644e-07 1.43033e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| complete in ||| 0.0588235 0.605812 8.48644e-07 3.30635e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| completed at ||| 0.125 0.321886 1.69729e-06 1.22406e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| completed by ||| 0.010989 0.0468744 8.48644e-07 2.60317e-07 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| completed concerning ||| 1 0.0888235 8.48644e-07 3.70841e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| completed in ||| 0.0392157 0.605812 3.39458e-06 1.41305e-05 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| completed over ||| 0.5 0.157937 8.48644e-07 1.2262e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| completely after ||| 1 0.0144723 8.48644e-07 2.70177e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| completely happy with ||| 0.0769231 0.0535436 8.48644e-07 7.47732e-11 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| completely immersed ||| 0.5 0.0028353 8.48644e-07 9.52e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| completely liberalized ||| 0.166667 0.0028353 8.48644e-07 2.448e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| completely out of ||| 0.0185185 0.0120599 8.48644e-07 3.04661e-09 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| completely out ||| 0.0136986 0.0120599 8.48644e-07 5.60409e-08 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| completely within ||| 0.0833333 0.369196 8.48644e-07 1.12863e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| completely ||| 0.00150286 0.0028353 8.48644e-06 1.36e-05 2.718 ||| 0-0 ||| 6654 1.17835e+06 +en ||| completion by ||| 0.0714286 0.0468744 8.48644e-07 1.22502e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| completion of ||| 0.0045045 0.0116562 1.69729e-06 1.96373e-07 2.718 ||| 0-1 ||| 444 1.17835e+06 +en ||| complexity and contradiction of ||| 1 0.0116562 8.48644e-07 1.0898e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| compliance with ||| 0.000446828 0.0535436 8.48644e-07 2.68155e-07 2.718 ||| 0-1 ||| 2238 1.17835e+06 +en ||| complied with in ||| 0.0571429 0.605812 1.69729e-06 4.99033e-08 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| complied with ||| 0.00242131 0.0535436 1.69729e-06 1.97035e-07 2.718 ||| 0-1 ||| 826 1.17835e+06 +en ||| comply fully with ||| 0.0227273 0.0535436 8.48644e-07 6.18752e-11 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| comply resulting in ||| 0.5 0.605812 8.48644e-07 9.78994e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| comply with in ||| 0.25 0.605812 8.48644e-07 1.38194e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| comply with ||| 0.00145666 0.0535436 3.39458e-06 5.45637e-07 2.718 ||| 0-1 ||| 2746 1.17835e+06 +en ||| complying with ||| 0.0020284 0.0535436 8.48644e-07 5.82945e-08 2.718 ||| 0-1 ||| 493 1.17835e+06 +en ||| component in the ||| 0.1 0.605812 8.48644e-07 4.28079e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| component in ||| 0.130435 0.605812 2.54593e-06 6.97289e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| component of ||| 0.036036 0.0116562 3.39458e-06 2.05919e-07 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| components in ||| 0.0769231 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| composed of ||| 0.00490196 0.0116562 8.48644e-07 7.90946e-08 2.718 ||| 0-1 ||| 204 1.17835e+06 +en ||| comprehensive for ||| 0.25 0.0286209 8.48644e-07 2.89931e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| comprehensive in ||| 0.0357143 0.605812 8.48644e-07 1.16369e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| comprehensively and on ||| 1 0.22993 8.48644e-07 3.01674e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| comprehensively with ||| 0.0526316 0.0535436 8.48644e-07 3.38108e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| comprises the participants in ||| 1 0.605812 8.48644e-07 7.16677e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| compromise is , at ||| 1 0.321886 8.48644e-07 6.77282e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| compromise on ||| 0.00243309 0.22993 8.48644e-07 3.76209e-06 2.718 ||| 0-1 ||| 411 1.17835e+06 +en ||| compromised just for ||| 0.5 0.0286209 8.48644e-07 5.2258e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| compromises as part ||| 0.25 0.066968 8.48644e-07 1.15804e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| compromises as ||| 0.1 0.066968 8.48644e-07 9.71347e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| concentrate activity in ||| 1 0.605812 8.48644e-07 3.83648e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| concentrate on ||| 0.00496524 0.22993 4.24322e-06 1.28725e-06 2.718 ||| 0-1 ||| 1007 1.17835e+06 +en ||| concentrated at ||| 0.142857 0.321886 8.48644e-07 2.0001e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| concentrated in ||| 0.00649351 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| concentrated on ||| 0.0153846 0.22993 2.54593e-06 4.15242e-07 2.718 ||| 0-1 ||| 195 1.17835e+06 +en ||| concentrating on at ||| 1 0.275908 8.48644e-07 3.58787e-08 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| concentrating on ||| 0.0252101 0.22993 5.09187e-06 8.96923e-07 2.718 ||| 0-1 ||| 238 1.17835e+06 +en ||| concentration on ||| 0.00990099 0.22993 8.48644e-07 4.81681e-07 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| concentrations in ||| 0.0833333 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| concept , in ||| 1 0.605812 8.48644e-07 3.27113e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| concept for Europe as ||| 1 0.0286209 8.48644e-07 3.52873e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| concept for Europe ||| 1 0.0286209 8.48644e-07 3.45805e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| concept for ||| 0.0384615 0.0286209 8.48644e-07 6.83409e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| concept of European ||| 0.125 0.0116562 8.48644e-07 2.70869e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| concept of ||| 0.00170068 0.0116562 3.39458e-06 8.10038e-07 2.718 ||| 0-1 ||| 2352 1.17835e+06 +en ||| concept we ||| 0.142857 0.0054082 8.48644e-07 1.34476e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| concepts in ||| 0.105263 0.605812 1.69729e-06 3.14011e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| concern about ||| 0.00116686 0.0401564 8.48644e-07 3.82624e-07 2.718 ||| 0-1 ||| 857 1.17835e+06 +en ||| concern at ||| 0.00687285 0.321886 1.69729e-06 5.34027e-06 2.718 ||| 0-1 ||| 291 1.17835e+06 +en ||| concern in ||| 0.0215827 0.605812 5.09187e-06 6.16478e-05 2.718 ||| 0-1 ||| 278 1.17835e+06 +en ||| concern is growing in ||| 1 0.605812 8.48644e-07 7.30337e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| concern ourselves with in ||| 0.5 0.605812 8.48644e-07 1.25397e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| concern through ||| 0.333333 0.0366102 8.48644e-07 1.25543e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| concern to ||| 0.00556586 0.0247351 2.54593e-06 3.75246e-06 2.718 ||| 0-1 ||| 539 1.17835e+06 +en ||| concerned , and at ||| 1 0.321886 8.48644e-07 9.61201e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| concerned , in ||| 0.0555556 0.605812 2.54593e-06 8.85849e-05 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| concerned , there is ||| 0.0333333 0.0117359 8.48644e-07 6.74215e-09 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| concerned , there ||| 0.0263158 0.0117359 8.48644e-07 2.15122e-07 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| concerned , ||| 0.000245881 5.07e-05 8.48644e-07 8.34783e-08 2.718 ||| 0-0 ||| 4067 1.17835e+06 +en ||| concerned about ||| 0.00251889 0.0401564 3.39458e-06 4.61041e-06 2.718 ||| 0-1 ||| 1588 1.17835e+06 +en ||| concerned by ||| 0.00440529 0.0468744 8.48644e-07 1.36845e-05 2.718 ||| 0-1 ||| 227 1.17835e+06 +en ||| concerned consists ||| 1 0.201278 8.48644e-07 2.75875e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| concerned in the ||| 0.0384615 0.605812 1.69729e-06 4.56031e-05 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| concerned in ||| 0.104478 0.605812 1.1881e-05 0.000742821 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| concerned is in higher ||| 1 0.605812 8.48644e-07 9.80123e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| concerned is in ||| 0.5 0.605812 8.48644e-07 2.32808e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| concerned is one in ||| 1 0.605812 8.48644e-07 9.70345e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| concerned on ||| 0.0606061 0.22993 1.69729e-06 0.000133592 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| concerned over ||| 0.047619 0.157937 8.48644e-07 6.44598e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| concerned to ||| 0.00546448 0.0247351 1.69729e-06 4.5215e-05 2.718 ||| 0-1 ||| 366 1.17835e+06 +en ||| concerned with ensuring ||| 0.5 0.0535436 8.48644e-07 2.17927e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| concerned with imposing ||| 0.2 0.0535436 8.48644e-07 2.96321e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| concerned with in ||| 0.5 0.605812 8.48644e-07 4.74997e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| concerned with standards ||| 1 0.0535436 8.48644e-07 1.37095e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| concerned with ||| 0.0161453 0.0535436 1.35783e-05 1.87545e-05 2.718 ||| 0-1 ||| 991 1.17835e+06 +en ||| concerned ||| 7.33783e-05 5.07e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 13628 1.17835e+06 +en ||| concerning a ||| 0.00408163 0.0888235 8.48644e-07 5.37184e-05 2.718 ||| 0-0 ||| 245 1.17835e+06 +en ||| concerning both ||| 0.025641 0.0888235 8.48644e-07 2.00751e-06 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| concerning the shipyards package ||| 0.5 0.0888235 8.48644e-07 6.36126e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| concerning the shipyards ||| 0.333333 0.0888235 8.48644e-07 1.33921e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| concerning the whole ||| 0.25 0.0888235 8.48644e-07 4.20885e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| concerning the ||| 0.000999001 0.0888235 5.09187e-06 7.44007e-05 2.718 ||| 0-0 ||| 6006 1.17835e+06 +en ||| concerning these various funds . ||| 1 0.0888235 8.48644e-07 4.48496e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| concerning these various funds ||| 1 0.0888235 8.48644e-07 1.48067e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| concerning these various ||| 1 0.0888235 8.48644e-07 1.94059e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| concerning these ||| 0.0163934 0.0888235 8.48644e-07 1.25686e-06 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| concerning ||| 0.0139348 0.0888235 0.000168032 0.0012119 2.718 ||| 0-0 ||| 14209 1.17835e+06 +en ||| concerns as ||| 0.0212766 0.066968 8.48644e-07 1.34729e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| concerns in ||| 0.0372671 0.605812 5.09187e-06 3.45874e-05 2.718 ||| 0-1 ||| 161 1.17835e+06 +en ||| concerns which have been taken up over ||| 1 0.157937 8.48644e-07 3.16524e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| concerns ||| 0.000214301 0.0004433 2.54593e-06 6.1e-06 2.718 ||| 0-0 ||| 13999 1.17835e+06 +en ||| concert in ||| 1 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| concessions in ||| 0.0149254 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| conclude by making ||| 0.0769231 0.0468744 8.48644e-07 7.88716e-11 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| conclude by ||| 0.00398406 0.0468744 8.48644e-07 2.05021e-07 2.718 ||| 0-1 ||| 251 1.17835e+06 +en ||| concluded at ||| 0.016129 0.321886 8.48644e-07 1.42407e-06 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| concluded in ||| 0.00671141 0.605812 8.48644e-07 1.64394e-05 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| concluded with ||| 0.00724638 0.0535436 8.48644e-07 4.15057e-07 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| concluding in ||| 0.25 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| concluding the ||| 0.00671141 0.0011669 8.48644e-07 2.46364e-08 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| concluding with ||| 0.142857 0.0535436 8.48644e-07 1.00267e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| conclusion , on ||| 0.0588235 0.22993 8.48644e-07 8.76496e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| conclusion in ||| 0.121951 0.605812 4.24322e-06 4.08676e-05 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| conclusion to ||| 0.0120482 0.0247351 8.48644e-07 2.48758e-06 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| conclusions , which are as ||| 1 0.066968 8.48644e-07 6.96726e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| conclusions in ||| 0.0240964 0.605812 1.69729e-06 1.16369e-05 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| conclusions which the Committee on Fisheries has ||| 1 0.22993 8.48644e-07 5.57249e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| conclusions which the Committee on Fisheries ||| 1 0.22993 8.48644e-07 1.08256e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| conclusions which the Committee on ||| 1 0.22993 8.48644e-07 1.66548e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| concrete terms on ||| 1 0.22993 8.48644e-07 2.85312e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| concretely on ||| 0.5 0.193536 8.48644e-07 6.22863e-07 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| concur with ||| 0.00409836 0.0535436 8.48644e-07 3.38108e-08 2.718 ||| 0-1 ||| 244 1.17835e+06 +en ||| condemn as ||| 0.166667 0.066968 8.48644e-07 2.19452e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| condemned and decisive action taken against it ||| 0.333333 0.0080472 8.48644e-07 3.38043e-25 2.718 ||| 0-6 ||| 3 1.17835e+06 +en ||| condemned to ||| 0.00406504 0.0247351 8.48644e-07 3.42921e-07 2.718 ||| 0-1 ||| 246 1.17835e+06 +en ||| condition , rather than in ||| 1 0.605812 8.48644e-07 1.31877e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| conditional on that country ||| 1 0.22993 8.48644e-07 4.52505e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| conditional on that ||| 0.5 0.22993 8.48644e-07 1.25731e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| conditional on ||| 0.0142857 0.22993 1.69729e-06 7.47436e-07 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| conditions across ||| 0.333333 0.274879 8.48644e-07 2.45489e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| conditions as ||| 0.00806452 0.066968 8.48644e-07 2.14955e-06 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| conditions by ||| 0.0769231 0.0468744 8.48644e-07 1.0166e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| conditions for confidence in ||| 0.333333 0.605812 8.48644e-07 1.31053e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| conditions for ||| 0.000964785 0.0286209 1.69729e-06 1.37487e-06 2.718 ||| 0-1 ||| 2073 1.17835e+06 +en ||| conditions in rural ||| 1 0.605812 8.48644e-07 6.18048e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| conditions in ||| 0.0168224 0.605812 7.6378e-06 5.51828e-05 2.718 ||| 0-1 ||| 535 1.17835e+06 +en ||| conditions into ||| 0.5 0.525896 8.48644e-07 2.64541e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| conditions of ||| 0.000949668 0.0116562 8.48644e-07 1.62962e-06 2.718 ||| 0-1 ||| 1053 1.17835e+06 +en ||| conditions on ||| 0.00990099 0.22993 8.48644e-07 9.92428e-06 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| conditions to become ||| 0.333333 0.219193 8.48644e-07 4.06e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| condoned in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| conduct an anti-Israeli campaign in ||| 1 0.605812 8.48644e-07 1.52465e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| conduct in ||| 0.0727273 0.605812 3.39458e-06 2.7753e-05 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| conduct itself in ||| 0.2 0.605812 8.48644e-07 1.8836e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| conduct of ||| 0.00289855 0.0116562 8.48644e-07 8.19584e-07 2.718 ||| 0-1 ||| 345 1.17835e+06 +en ||| conduct the process of ||| 1 0.0116562 8.48644e-07 2.151e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| conducted at and ||| 1 0.321886 8.48644e-07 3.03142e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| conducted at ||| 0.0588235 0.321886 1.69729e-06 2.42012e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| conducted by ||| 0.00406504 0.0468744 8.48644e-07 5.1468e-07 2.718 ||| 0-1 ||| 246 1.17835e+06 +en ||| conducted in ||| 0.0540541 0.605812 1.1881e-05 2.79378e-05 2.718 ||| 0-1 ||| 259 1.17835e+06 +en ||| conducted on fishery resources in ||| 1 0.605812 8.48644e-07 4.81835e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| conducted on ||| 0.0769231 0.22993 3.39458e-06 5.02443e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| conducted the peace concert in ||| 1 0.605812 8.48644e-07 1.28739e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| conducted under ||| 0.0285714 0.205566 8.48644e-07 3.42103e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| conducted within ||| 0.0952381 0.369196 1.69729e-06 6.70745e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| conducting ||| 0.0100671 0.0149254 5.09187e-06 8.8e-06 2.718 ||| 0-0 ||| 596 1.17835e+06 +en ||| confer with ||| 0.142857 0.0535436 8.48644e-07 1.28248e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| conference in ||| 0.00766284 0.605812 1.69729e-06 8.12735e-06 2.718 ||| 0-1 ||| 261 1.17835e+06 +en ||| conference ||| 0.000181422 0.0002144 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 5512 1.17835e+06 +en ||| conferred on ||| 0.00813008 0.22993 8.48644e-07 3.90327e-07 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| confidence in ||| 0.00787402 0.605812 1.27297e-05 1.4269e-05 2.718 ||| 0-1 ||| 1905 1.17835e+06 +en ||| confidence of ||| 0.00240964 0.0116562 8.48644e-07 4.21383e-07 2.718 ||| 0-1 ||| 415 1.17835e+06 +en ||| confidence to ||| 0.00892857 0.0247351 8.48644e-07 8.68546e-07 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| confident in ||| 0.0322581 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| confident of ||| 0.0555556 0.148878 8.48644e-07 4.90932e-06 2.718 ||| 0-0 0-1 ||| 18 1.17835e+06 +en ||| confident ||| 0.0044484 0.286101 4.24322e-06 0.00036 2.718 ||| 0-0 ||| 1124 1.17835e+06 +en ||| confined to ||| 0.0208333 0.0247351 5.09187e-06 2.83894e-07 2.718 ||| 0-1 ||| 288 1.17835e+06 +en ||| confinement in ||| 0.25 0.605812 1.69729e-06 8.31206e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| confinement ||| 0.0163934 0.0454545 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| confirmed by ||| 0.00323625 0.0468744 8.48644e-07 1.65038e-07 2.718 ||| 0-1 ||| 309 1.17835e+06 +en ||| confirmed on paper ||| 1 0.22993 8.48644e-07 4.68841e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| confirmed on ||| 0.0625 0.22993 8.48644e-07 1.61114e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| confirmed some of ||| 0.5 0.0116562 8.48644e-07 2.88183e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| confirmed ||| 0.000459982 0.0003848 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2174 1.17835e+06 +en ||| confirms on ||| 0.5 0.22993 8.48644e-07 3.57108e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| conflict in ||| 0.00353357 0.605812 1.69729e-06 1.92563e-05 2.718 ||| 0-1 ||| 566 1.17835e+06 +en ||| conflict into ||| 0.0909091 0.525896 8.48644e-07 9.23125e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| conflict on ||| 0.0416667 0.22993 8.48644e-07 3.46312e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| conflict over ||| 0.03125 0.157937 8.48644e-07 1.671e-07 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| conflict will mean for ||| 1 0.0286209 8.48644e-07 1.0696e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| conflict with each other during ||| 1 0.226251 8.48644e-07 2.8036e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| conflict with ||| 0.00170068 0.0535436 8.48644e-07 4.86176e-07 2.718 ||| 0-1 ||| 588 1.17835e+06 +en ||| confront it in ||| 0.5 0.605812 8.48644e-07 2.05299e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| confronted on several occasions with ||| 1 0.0535436 8.48644e-07 1.37275e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| confronted with ||| 0.0070922 0.0535436 1.69729e-06 1.17755e-07 2.718 ||| 0-1 ||| 282 1.17835e+06 +en ||| confused by ||| 0.0588235 0.0468744 8.48644e-07 3.99834e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| confusion in ||| 0.025 0.605812 1.69729e-06 3.32482e-06 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| congratulations are also due to the Spanish ||| 1 0.0247351 8.48644e-07 8.47335e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| congratulations are also due to the ||| 0.25 0.0247351 8.48644e-07 3.79971e-16 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| congratulations are also due to ||| 0.0833333 0.0247351 8.48644e-07 6.18928e-15 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| conjunction with ||| 0.0013624 0.0535436 8.48644e-07 1.76049e-07 2.718 ||| 0-1 ||| 734 1.17835e+06 +en ||| connected to ||| 0.00961538 0.0247351 1.69729e-06 5.67788e-07 2.718 ||| 0-1 ||| 208 1.17835e+06 +en ||| connected with ||| 0.00642398 0.0535436 5.09187e-06 2.3551e-07 2.718 ||| 0-1 ||| 934 1.17835e+06 +en ||| connected ||| 0.00240964 0.012959 2.54593e-06 1.22e-05 2.718 ||| 0-0 ||| 1245 1.17835e+06 +en ||| connection with a Member ||| 1 0.0535436 8.48644e-07 4.06377e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| connection with a ||| 0.0188679 0.0535436 8.48644e-07 7.88622e-08 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| connection with transport operations , with regard ||| 1 0.0535436 8.48644e-07 2.39549e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| connection with transport operations , with ||| 1 0.0535436 8.48644e-07 3.51812e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| connection with ||| 0.00617665 0.0535436 1.69729e-05 1.77915e-06 2.718 ||| 0-1 ||| 3238 1.17835e+06 +en ||| conscience at ||| 0.333333 0.321886 8.48644e-07 1.16006e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| conscious way in ||| 0.5 0.605812 8.48644e-07 8.26195e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| consciously on ||| 1 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| consciousness , at ||| 1 0.321886 8.48644e-07 1.71735e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| consecutive ||| 0.0102041 0.0092593 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| consensus for ||| 0.0263158 0.0286209 8.48644e-07 1.78331e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| consensus in ||| 0.00364964 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-1 ||| 274 1.17835e+06 +en ||| consensus on ||| 0.00179856 0.22993 8.48644e-07 1.28725e-06 2.718 ||| 0-1 ||| 556 1.17835e+06 +en ||| consensus within ||| 0.015873 0.369196 8.48644e-07 1.71844e-07 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| consent given in error ||| 1 0.605812 8.48644e-07 2.47261e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| consent given in ||| 1 0.605812 8.48644e-07 2.63044e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| consequences for ||| 0.00453172 0.0286209 2.54593e-06 4.88971e-07 2.718 ||| 0-1 ||| 662 1.17835e+06 +en ||| consequences in this ||| 1 0.605812 8.48644e-07 1.26809e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| consequences in ||| 0.0224719 0.605812 1.69729e-06 1.96257e-05 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| consequences of ||| 0.000928074 0.0116562 1.69729e-06 5.79573e-07 2.718 ||| 0-1 ||| 2155 1.17835e+06 +en ||| consequently , at ||| 0.166667 0.321886 1.69729e-06 2.12761e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| consequently , even if we put an ||| 1 0.0178573 8.48644e-07 2.08779e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| consequently , even if we put ||| 1 0.0178573 8.48644e-07 4.69725e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| consequently , even if we ||| 1 0.0178573 8.48644e-07 4.26016e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| consequently , even if ||| 0.5 0.0178573 8.48644e-07 3.75268e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| consequently , on ||| 0.0526316 0.22993 8.48644e-07 4.41714e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| consequently , ||| 0.000382702 0.140903 8.48644e-07 8.35856e-05 2.718 ||| 0-0 ||| 2613 1.17835e+06 +en ||| consequently be ||| 0.0416667 0.140903 8.48644e-07 1.27023e-05 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| consequently for ||| 0.125 0.0286209 8.48644e-07 5.13132e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| consequently is in ||| 1 0.605812 8.48644e-07 6.45484e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| consequently ||| 0.00106411 0.140903 3.39458e-06 0.0007009 2.718 ||| 0-0 ||| 3759 1.17835e+06 +en ||| conservation area in ||| 1 0.605812 8.48644e-07 4.21911e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| consider . ||| 0.016129 0.0126304 8.48644e-07 3.66812e-07 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| consider here ||| 0.25 0.0855319 8.48644e-07 4.77316e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| consider in ||| 0.0377358 0.605812 1.69729e-06 7.34694e-05 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| consider that ||| 0.00107411 0.0126304 8.48644e-07 2.0371e-06 2.718 ||| 0-0 ||| 931 1.17835e+06 +en ||| consider to be ||| 0.00438596 0.0247351 8.48644e-07 8.10462e-08 2.718 ||| 0-1 ||| 228 1.17835e+06 +en ||| consider to ||| 0.00806452 0.0247351 8.48644e-07 4.47203e-06 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| consider ||| 0.00281976 0.0126304 2.12161e-05 0.0001211 2.718 ||| 0-0 ||| 8866 1.17835e+06 +en ||| considerable backwardness in ||| 0.25 0.605812 8.48644e-07 8.31206e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| considerable changes to ||| 0.166667 0.0247351 8.48644e-07 6.4635e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| considerable glimmer of hope , ||| 1 0.0005295 8.48644e-07 2.22599e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| considerable glimmer of hope ||| 1 0.0005295 8.48644e-07 1.86659e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| considerable light on ||| 0.166667 0.22993 8.48644e-07 6.49522e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| considerable time to ||| 0.25 0.0247351 8.48644e-07 2.07654e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| considerably at ||| 0.2 0.321886 8.48644e-07 7.36037e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| considerably in ||| 0.0144928 0.605812 8.48644e-07 8.49677e-06 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| considerably stricter in ||| 1 0.605812 8.48644e-07 7.6471e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| consideration as ||| 0.03125 0.066968 8.48644e-07 1.94269e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| consideration at ||| 0.0344828 0.321886 8.48644e-07 4.32022e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| consideration in a number ||| 1 0.605812 8.48644e-07 1.09382e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| consideration in a ||| 1 0.605812 8.48644e-07 2.21063e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| consideration in ||| 0.0324324 0.605812 5.09187e-06 4.98724e-05 2.718 ||| 0-1 ||| 185 1.17835e+06 +en ||| consideration to ||| 0.00617284 0.0247351 1.69729e-06 3.0357e-06 2.718 ||| 0-1 ||| 324 1.17835e+06 +en ||| consideration when ||| 0.0113636 0.142731 8.48644e-07 6.42956e-07 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| consideration ||| 0.000396747 0.0008654 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 5041 1.17835e+06 +en ||| considerations into ||| 0.142857 0.525896 8.48644e-07 5.82211e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| considerations of ||| 0.00862069 0.0116562 8.48644e-07 3.58653e-07 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| considerations ||| 0.000996016 0.0130416 1.69729e-06 2.11e-05 2.718 ||| 0-0 ||| 2008 1.17835e+06 +en ||| considered , in ||| 0.0909091 0.605812 8.48644e-07 5.92549e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| considered as ||| 0.00823045 0.066968 1.69729e-06 1.9355e-06 2.718 ||| 0-1 ||| 243 1.17835e+06 +en ||| considered at all ||| 0.111111 0.321886 8.48644e-07 2.03391e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| considered at ||| 0.0789474 0.321886 2.54593e-06 4.30422e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| considered by ||| 0.00598802 0.0468744 8.48644e-07 9.15364e-07 2.718 ||| 0-1 ||| 167 1.17835e+06 +en ||| considered in ||| 0.0412371 0.605812 6.78915e-06 4.96876e-05 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| considered within ||| 0.0526316 0.369196 8.48644e-07 1.19293e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| considered ||| 0.00282952 0.0169998 1.01837e-05 7.35e-05 2.718 ||| 0-0 ||| 4241 1.17835e+06 +en ||| considering , not least ||| 0.2 0.11575 8.48644e-07 2.9035e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| considering , not ||| 0.166667 0.11575 8.48644e-07 1.18317e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| considering , ||| 0.0338983 0.11575 1.69729e-06 3.46554e-05 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| considering at ||| 0.166667 0.321886 8.48644e-07 1.20806e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| considering during ||| 0.333333 0.226251 8.48644e-07 8.73173e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| considering is ||| 0.2 0.11575 1.69729e-06 9.10772e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| considering that we want ||| 1 0.11575 8.48644e-07 2.59435e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| considering that we ||| 0.125 0.11575 8.48644e-07 5.54941e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| considering that ||| 0.0034965 0.11575 8.48644e-07 4.88836e-06 2.718 ||| 0-0 ||| 286 1.17835e+06 +en ||| considering ||| 0.00670017 0.11575 1.69729e-05 0.0002906 2.718 ||| 0-0 ||| 2985 1.17835e+06 +en ||| consigned to ||| 0.0566038 0.0247351 2.54593e-06 7.02708e-08 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| consist in ||| 0.0333333 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| consist merely of ||| 0.166667 0.206133 8.48644e-07 2.85004e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| consist merely ||| 0.2 0.206133 8.48644e-07 5.24251e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| consist of nothing but ||| 0.5 0.0116562 8.48644e-07 1.31812e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| consist of nothing ||| 0.5 0.0116562 8.48644e-07 1.92876e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| consist of ||| 0.0201005 0.108895 3.39458e-06 1.12233e-06 2.718 ||| 0-0 0-1 ||| 199 1.17835e+06 +en ||| consist ||| 0.0177778 0.206133 3.39458e-06 8.23e-05 2.718 ||| 0-0 ||| 225 1.17835e+06 +en ||| consisted ||| 0.0227273 0.197044 1.69729e-06 2.72e-05 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| consistency ||| 0.00129955 0.0033306 1.69729e-06 2.7e-06 2.718 ||| 0-0 ||| 1539 1.17835e+06 +en ||| consistent in ||| 0.010929 0.605812 1.69729e-06 1.27913e-05 2.718 ||| 0-1 ||| 183 1.17835e+06 +en ||| consistent with ||| 0.00403633 0.0535436 3.39458e-06 3.22952e-07 2.718 ||| 0-1 ||| 991 1.17835e+06 +en ||| consistently applied to ||| 1 0.0247351 8.48644e-07 4.04869e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| consistently refused to enter into ||| 1 0.525896 8.48644e-07 1.53486e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| consistently succeeded in ||| 0.5 0.605812 8.48644e-07 1.1485e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| consistently to ||| 0.0384615 0.0247351 8.48644e-07 3.7384e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| consisting in ||| 0.1 0.605812 8.48644e-07 4.98724e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| consisting of ||| 0.0041841 0.0116562 8.48644e-07 1.4728e-07 2.718 ||| 0-1 ||| 239 1.17835e+06 +en ||| consisting ||| 0.0103627 0.0149573 1.69729e-06 4.8e-06 2.718 ||| 0-0 ||| 193 1.17835e+06 +en ||| consists more of ||| 0.5 0.0116562 8.48644e-07 3.02085e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| consists of ||| 0.0059761 0.201278 2.54593e-06 9.32343e-06 2.718 ||| 0-0 ||| 502 1.17835e+06 +en ||| consists ||| 0.0155945 0.201278 6.78915e-06 0.0001715 2.718 ||| 0-0 ||| 513 1.17835e+06 +en ||| consolidated in ||| 0.0322581 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| consolidation of Georgia ||| 0.333333 0.0116562 8.48644e-07 3.92746e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| consolidation of ||| 0.00209205 0.0116562 8.48644e-07 5.4548e-08 2.718 ||| 0-1 ||| 478 1.17835e+06 +en ||| constantly being claimed in ||| 0.5 0.605812 8.48644e-07 8.14423e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| constantly to ||| 0.027027 0.0247351 8.48644e-07 8.7979e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| constantly ||| 0.000406504 0.0130835 8.48644e-07 2.52e-05 2.718 ||| 0-0 ||| 2460 1.17835e+06 +en ||| constitute an economic and political threat to ||| 1 0.0247351 8.48644e-07 4.06436e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| constitute ||| 0.0017452 0.0024027 2.54593e-06 3.4e-06 2.718 ||| 0-0 ||| 1719 1.17835e+06 +en ||| constitutes a ||| 0.00131234 0.0015231 8.48644e-07 1.98584e-08 2.718 ||| 0-1 ||| 762 1.17835e+06 +en ||| constitution in ||| 0.0217391 0.605812 8.48644e-07 7.66557e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| constrained in ||| 0.5 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| constructed in ||| 0.0588235 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| constructed on ||| 0.0909091 0.22993 8.48644e-07 3.32194e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| construction in ||| 0.08 0.605812 1.69729e-06 7.8041e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| constructive positions in ||| 1 0.605812 8.48644e-07 1.514e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| consulted on ||| 0.00704225 0.22993 8.48644e-07 3.57108e-07 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| consume on the ||| 1 0.22993 8.48644e-07 1.27462e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| consume on ||| 0.333333 0.22993 8.48644e-07 2.07621e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| consumer in ||| 0.025 0.605812 8.48644e-07 1.36225e-05 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| consumers , on ||| 0.125 0.22993 8.48644e-07 3.70406e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| consumers in ||| 0.00578035 0.605812 1.69729e-06 1.72706e-05 2.718 ||| 0-1 ||| 346 1.17835e+06 +en ||| contact group in ||| 0.5 0.605812 8.48644e-07 1.13602e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| contact on ||| 0.166667 0.22993 8.48644e-07 1.58622e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| contact with ||| 0.0011236 0.0535436 8.48644e-07 2.22685e-07 2.718 ||| 0-1 ||| 890 1.17835e+06 +en ||| contacted ||| 0.0227273 0.197266 1.69729e-06 6.87e-05 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| contacts in universities ||| 1 0.605812 8.48644e-07 6.60347e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| contacts in ||| 0.0322581 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| contain ||| 0.00178253 0.0014677 2.54593e-06 2e-06 2.718 ||| 0-0 ||| 1683 1.17835e+06 +en ||| contained in ||| 0.014947 0.605812 2.6308e-05 3.14011e-05 2.718 ||| 0-1 ||| 2074 1.17835e+06 +en ||| contained within ||| 0.05 0.369196 3.39458e-06 7.53896e-07 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| containers in ||| 0.142857 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| containing ||| 0.00431406 0.006383 4.24322e-06 8.2e-06 2.718 ||| 0-0 ||| 1159 1.17835e+06 +en ||| contains into nothing ||| 1 0.525896 8.48644e-07 1.6891e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| contains into ||| 1 0.525896 8.48644e-07 9.07629e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| contains within ||| 0.333333 0.369196 8.48644e-07 4.54555e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| contains worrying ||| 1 0.0019905 8.48644e-07 6.048e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| contains ||| 0.00117336 0.0019905 3.39458e-06 5.4e-06 2.718 ||| 0-0 ||| 3409 1.17835e+06 +en ||| contaminated with ||| 0.0222222 0.0535436 8.48644e-07 2.91473e-08 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| contemplating during ||| 1 0.226251 8.48644e-07 6.36086e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| contend with ||| 0.00819672 0.0535436 8.48644e-07 9.21053e-08 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| content in ||| 0.0465116 0.605812 1.69729e-06 2.27658e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| content itself with ||| 0.0833333 0.0535436 8.48644e-07 3.90106e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| content of ||| 0.00151286 0.0116562 1.69729e-06 6.72304e-07 2.718 ||| 0-1 ||| 1322 1.17835e+06 +en ||| content on ||| 0.0588235 0.22993 8.48644e-07 4.09429e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| content over ||| 1 0.157937 8.48644e-07 1.97555e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| content with ||| 0.00900901 0.0535436 8.48644e-07 5.74784e-07 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| content ||| 0.000354799 0.0007726 1.69729e-06 2.7e-06 2.718 ||| 0-0 ||| 5637 1.17835e+06 +en ||| contention that at ||| 0.5 0.321886 8.48644e-07 1.9514e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| contents of ||| 0.00888889 0.0116562 1.69729e-06 1.4728e-07 2.718 ||| 0-1 ||| 225 1.17835e+06 +en ||| context in Central Asia ||| 1 0.605812 8.48644e-07 5.52782e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| context in Central ||| 1 0.605812 8.48644e-07 1.38195e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| context in ||| 0.0175439 0.605812 3.39458e-06 6.1971e-05 2.718 ||| 0-1 ||| 228 1.17835e+06 +en ||| context of ||| 0.000695088 0.0116562 2.54593e-06 1.83009e-06 2.718 ||| 0-1 ||| 4316 1.17835e+06 +en ||| context to ||| 0.0227273 0.0247351 8.48644e-07 3.77213e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| context within ||| 0.0769231 0.369196 8.48644e-07 1.48784e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| contexts in ||| 0.166667 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| continent in ||| 0.0232558 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| continuation of ||| 0.00134771 0.0116562 8.48644e-07 1.66371e-07 2.718 ||| 0-1 ||| 742 1.17835e+06 +en ||| continue along ||| 0.0070922 0.155535 8.48644e-07 1.84079e-07 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| continue and ||| 0.00584795 0.0010182 8.48644e-07 2.13513e-07 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| continue as ||| 0.0172414 0.066968 8.48644e-07 4.1624e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| continue during ||| 0.142857 0.226251 8.48644e-07 6.69047e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| continue in ||| 0.0229885 0.605812 5.09187e-06 0.000106856 2.718 ||| 0-1 ||| 261 1.17835e+06 +en ||| continue to be so in ||| 0.333333 0.605812 8.48644e-07 3.90565e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| continue to believe ||| 0.0454545 0.0247351 8.48644e-07 2.02478e-09 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| continue to ensure ||| 0.0434783 0.0247351 8.48644e-07 2.91651e-09 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| continue to live in ||| 0.0769231 0.605812 8.48644e-07 9.57101e-10 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| continue to only think of ||| 1 0.0116562 8.48644e-07 1.19384e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| continue to press for ||| 0.0909091 0.0286209 8.48644e-07 7.14434e-12 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| continue to put forward drastic remedies in ||| 1 0.605812 8.48644e-07 3.4601e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| continue to ||| 0.00156037 0.0247351 6.78915e-06 6.50426e-06 2.718 ||| 0-1 ||| 5127 1.17835e+06 +en ||| continue up to and in ||| 1 0.605812 8.48644e-07 4.05624e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| continue with ||| 0.00192308 0.0535436 8.48644e-07 2.69787e-06 2.718 ||| 0-1 ||| 520 1.17835e+06 +en ||| continue working on ||| 0.0714286 0.22993 1.69729e-06 3.65899e-09 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| continue working ||| 0.00813008 0.0029456 8.48644e-07 8.65436e-09 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| continues , in ||| 0.0714286 0.605812 8.48644e-07 2.53871e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| continues on ||| 0.0833333 0.22993 8.48644e-07 3.82853e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| continues to ||| 0.000639386 0.0247351 8.48644e-07 1.29579e-06 2.718 ||| 0-1 ||| 1564 1.17835e+06 +en ||| continuing in ||| 0.12 0.605812 2.54593e-06 2.85843e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| continuing on ||| 0.05 0.22993 8.48644e-07 5.1407e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| continuing right up to ||| 0.25 0.0247351 8.48644e-07 3.8268e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| continuing to do ||| 0.0666667 0.0247351 8.48644e-07 5.97709e-09 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| continuing to ||| 0.00455927 0.0247351 2.54593e-06 1.7399e-06 2.718 ||| 0-1 ||| 658 1.17835e+06 +en ||| continuously ||| 0.00268097 0.0020964 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 373 1.17835e+06 +en ||| contracts account ||| 0.333333 0.233636 8.48644e-07 8.09897e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| contracts in ||| 0.0612245 0.605812 2.54593e-06 1.13136e-05 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| contradiction of ||| 0.030303 0.0116562 8.48644e-07 3.00014e-08 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| contradictions in ||| 0.0444444 0.605812 1.69729e-06 8.31206e-07 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| contrary , what we have is ||| 1 0.0710493 8.48644e-07 1.87971e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| contrary , what we have ||| 0.333333 0.0710493 8.48644e-07 5.99758e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| contrary , what we ||| 0.5 0.0710493 8.48644e-07 5.01478e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| contrary , what ||| 0.0555556 0.0710493 8.48644e-07 4.41741e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| contrary , ||| 0.000443656 0.0710493 8.48644e-07 3.14832e-05 2.718 ||| 0-0 ||| 2254 1.17835e+06 +en ||| contrary . ||| 0.00507614 0.0710493 8.48644e-07 7.99656e-07 2.718 ||| 0-0 ||| 197 1.17835e+06 +en ||| contrary during ||| 1 0.226251 8.48644e-07 1.45722e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| contrary the ||| 0.142857 0.0710493 8.48644e-07 1.62074e-05 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| contrary to all ||| 0.0243902 0.0710493 8.48644e-07 1.10851e-07 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| contrary to ||| 0.00189753 0.0710493 2.54593e-06 2.34586e-05 2.718 ||| 0-0 ||| 1581 1.17835e+06 +en ||| contrary ||| 0.00202611 0.0710493 7.6378e-06 0.000264 2.718 ||| 0-0 ||| 4442 1.17835e+06 +en ||| contrasts in ||| 0.333333 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| contravene ||| 0.0124224 0.105991 1.69729e-06 1.57e-05 2.718 ||| 0-0 ||| 161 1.17835e+06 +en ||| contribute in ||| 0.0238095 0.605812 8.48644e-07 1.79633e-05 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| contribute to the construction of Europe must ||| 0.25 0.0247351 8.48644e-07 4.82326e-20 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| contribute to the construction of Europe ||| 0.2 0.0247351 8.48644e-07 3.12064e-17 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| contribute to the construction of ||| 0.125 0.0247351 8.48644e-07 6.16727e-14 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| contribute to the construction ||| 0.111111 0.0247351 8.48644e-07 1.13444e-12 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| contribute to the ||| 0.0010929 0.0247351 8.48644e-07 6.71266e-08 2.718 ||| 0-1 ||| 915 1.17835e+06 +en ||| contribute to ||| 0.00188041 0.0247351 4.24322e-06 1.09341e-06 2.718 ||| 0-1 ||| 2659 1.17835e+06 +en ||| contributed to maintaining ||| 0.5 0.0247351 8.48644e-07 4.75592e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| contributed to ||| 0.00240964 0.0247351 1.69729e-06 2.64218e-07 2.718 ||| 0-1 ||| 830 1.17835e+06 +en ||| contributes in some ||| 1 0.605812 8.48644e-07 2.16298e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| contributes in ||| 0.125 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| contributes to ||| 0.0020202 0.0247351 8.48644e-07 1.20866e-07 2.718 ||| 0-1 ||| 495 1.17835e+06 +en ||| contributing to ||| 0.00256082 0.0247351 1.69729e-06 3.0357e-07 2.718 ||| 0-1 ||| 781 1.17835e+06 +en ||| contribution in the immediate ||| 1 0.605812 8.48644e-07 6.60829e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| contribution in the ||| 0.0357143 0.605812 8.48644e-07 2.55146e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| contribution in ||| 0.0234375 0.605812 2.54593e-06 4.15603e-05 2.718 ||| 0-1 ||| 128 1.17835e+06 +en ||| contribution level of ||| 1 0.0116562 8.48644e-07 1.04986e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| contribution of ||| 0.00210526 0.0116562 8.48644e-07 1.22733e-06 2.718 ||| 0-1 ||| 475 1.17835e+06 +en ||| contribution to ||| 0.00275179 0.0247351 4.24322e-06 2.52975e-06 2.718 ||| 0-1 ||| 1817 1.17835e+06 +en ||| contribution towards both ||| 0.333333 0.0616136 8.48644e-07 1.48518e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| contribution towards ||| 0.0133333 0.0616136 1.69729e-06 8.9658e-08 2.718 ||| 0-1 ||| 150 1.17835e+06 +en ||| contributions to ||| 0.00655738 0.0247351 1.69729e-06 6.38058e-07 2.718 ||| 0-1 ||| 305 1.17835e+06 +en ||| control in ||| 0.0155039 0.605812 1.69729e-06 3.54186e-05 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| control measures employed to ||| 1 0.0247351 8.48644e-07 1.28464e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| control of the industry ||| 0.333333 0.0116562 8.48644e-07 8.48257e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| control of the ||| 0.00163934 0.0116562 8.48644e-07 6.42132e-08 2.718 ||| 0-1 ||| 610 1.17835e+06 +en ||| control of ||| 0.00151976 0.0116562 2.54593e-06 1.04596e-06 2.718 ||| 0-1 ||| 1974 1.17835e+06 +en ||| control over ||| 0.00151286 0.157937 8.48644e-07 3.07352e-07 2.718 ||| 0-1 ||| 661 1.17835e+06 +en ||| controlled as ||| 0.166667 0.066968 8.48644e-07 1.74483e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| controlled by ||| 0.00568182 0.0468744 1.69729e-06 8.25189e-08 2.718 ||| 0-1 ||| 352 1.17835e+06 +en ||| controlled in ||| 0.0344828 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| controlling interest in ||| 1 0.605812 8.48644e-07 2.22989e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| controls , in ||| 0.333333 0.605812 8.48644e-07 6.71849e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| controls in regard to neighbouring countries ||| 1 0.605812 8.48644e-07 7.89491e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| controls in regard to neighbouring ||| 1 0.605812 8.48644e-07 2.07925e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| controls in regard to ||| 1 0.605812 8.48644e-07 3.40861e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| controls in regard ||| 1 0.605812 8.48644e-07 3.83601e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| controls in ||| 0.00980392 0.605812 8.48644e-07 5.63373e-06 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| controls ||| 0.000226449 0.00588 8.48644e-07 1.97e-05 2.718 ||| 0-0 ||| 4416 1.17835e+06 +en ||| controversial in ||| 0.0333333 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| contrôle ||| 0.166667 0.2 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| convention on ||| 0.00684932 0.22993 8.48644e-07 9.88276e-07 2.718 ||| 0-1 ||| 146 1.17835e+06 +en ||| converted in ||| 0.25 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| converted into ||| 0.0204082 0.525896 1.69729e-06 9.51904e-08 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| converted to ||| 0.0263158 0.0247351 8.48644e-07 1.20866e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| conveyed clearly enough in ||| 1 0.605812 8.48644e-07 6.54345e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| conveyed in ||| 0.0526316 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| convinced of ||| 0.00361011 0.0116562 8.48644e-07 2.55012e-07 2.718 ||| 0-1 ||| 277 1.17835e+06 +en ||| convinced that ||| 0.000289185 0.0017499 8.48644e-07 1.95452e-08 2.718 ||| 0-1 ||| 3458 1.17835e+06 +en ||| cool on ||| 0.25 0.22993 8.48644e-07 2.65755e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| cooperate with a view ||| 0.2 0.0535436 8.48644e-07 4.20135e-12 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| cooperate with a ||| 0.0909091 0.0535436 8.48644e-07 4.65111e-09 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| cooperate with ||| 0.0013986 0.0535436 8.48644e-07 1.0493e-07 2.718 ||| 0-1 ||| 715 1.17835e+06 +en ||| cooperating at ||| 0.1 0.321886 8.48644e-07 1.00005e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| cooperation , on ' ||| 1 0.22993 8.48644e-07 3.13315e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| cooperation , on ||| 0.0769231 0.22993 8.48644e-07 9.1215e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| cooperation at European level ||| 0.0172414 0.321886 8.48644e-07 1.05381e-11 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| cooperation at European ||| 0.333333 0.321886 8.48644e-07 1.23195e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| cooperation at ||| 0.00348432 0.321886 8.48644e-07 3.68418e-06 2.718 ||| 0-1 ||| 287 1.17835e+06 +en ||| cooperation between national health authorities , where ||| 1 0.247783 8.48644e-07 1.75491e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| cooperation funded by ||| 0.2 0.0468744 8.48644e-07 7.05154e-12 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| cooperation in ||| 0.00336984 0.605812 6.78915e-06 4.253e-05 2.718 ||| 0-1 ||| 2374 1.17835e+06 +en ||| cooperation into ||| 0.166667 0.525896 8.48644e-07 2.03885e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| cooperation on ||| 0.0022779 0.22993 1.69729e-06 7.64876e-06 2.718 ||| 0-1 ||| 878 1.17835e+06 +en ||| cooperation with Europe behind ||| 1 0.0535436 8.48644e-07 4.86828e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| cooperation with Europe ||| 0.0416667 0.0535436 8.48644e-07 5.43335e-10 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| cooperation with ||| 0.000201735 0.0535436 8.48644e-07 1.07378e-06 2.718 ||| 0-1 ||| 4957 1.17835e+06 +en ||| cooperation zone in ||| 1 0.605812 8.48644e-07 6.12433e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| cooperative spirit in ||| 0.333333 0.605812 8.48644e-07 9.75836e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| coordinated at ||| 0.0163934 0.321886 8.48644e-07 2.72014e-07 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| coordinated from ||| 0.5 0.0308834 8.48644e-07 2.58747e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| coordination by ||| 0.0625 0.0468744 8.48644e-07 1.28457e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| coordination must take place within ||| 1 0.369196 8.48644e-07 6.26958e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| cope with in ||| 0.25 0.605812 1.69729e-06 6.70299e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| cope with ||| 0.00263852 0.0535436 1.69729e-06 2.64657e-07 2.718 ||| 0-1 ||| 758 1.17835e+06 +en ||| coping with ||| 0.0138889 0.0535436 1.69729e-06 2.91473e-08 2.718 ||| 0-1 ||| 144 1.17835e+06 +en ||| core areas in ||| 1 0.605812 8.48644e-07 1.5961e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| core of ||| 0.00315457 0.0116562 8.48644e-07 2.05919e-07 2.718 ||| 0-1 ||| 317 1.17835e+06 +en ||| corner in its fight ||| 0.5 0.605812 8.48644e-07 4.16878e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| corner in its ||| 0.5 0.605812 8.48644e-07 7.56584e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| corner in ||| 0.285714 0.605812 1.69729e-06 5.31048e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| corner of ||| 0.016129 0.0116562 8.48644e-07 1.56825e-07 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| cornerstones of ||| 0.00591716 0.0116562 8.48644e-07 9.5459e-09 2.718 ||| 0-1 ||| 169 1.17835e+06 +en ||| corps in ||| 0.25 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| corps within NATO ||| 0.125 0.369196 8.48644e-07 2.3149e-13 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| corps within ||| 0.125 0.369196 8.48644e-07 3.21514e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| correct for ||| 0.0833333 0.0286209 8.48644e-07 4.14187e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| correction put in ||| 1 0.605812 8.48644e-07 9.16488e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| correctly , I am talking about ||| 1 0.0401564 8.48644e-07 6.45376e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| correctly in ||| 0.0444444 0.605812 1.69729e-06 8.82002e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| corresponding figure in ||| 0.25 0.605812 8.48644e-07 7.61052e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| corroborated in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| cost , whether to ||| 0.5 0.0247351 8.48644e-07 7.29122e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| cost in ||| 0.0294118 0.605812 8.48644e-07 3.82355e-05 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| cost of water in ||| 0.25 0.605812 8.48644e-07 1.18274e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| cost of ||| 0.000478698 0.0116562 8.48644e-07 1.12914e-06 2.718 ||| 0-1 ||| 2089 1.17835e+06 +en ||| cost on ||| 0.142857 0.22993 8.48644e-07 6.87641e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| costs by ||| 0.0285714 0.0468744 8.48644e-07 6.39734e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| costs in ||| 0.0188679 0.605812 1.69729e-06 3.47259e-05 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| couched in ||| 0.0555556 0.605812 1.69729e-06 6.46494e-07 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| could , in the ||| 0.125 0.605812 8.48644e-07 2.4041e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| could , in ||| 0.0408163 0.605812 1.69729e-06 3.916e-05 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| could accept them in ||| 0.25 0.605812 8.48644e-07 9.53935e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| could affect ||| 0.0151515 0.0481375 8.48644e-07 1.21954e-07 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| could also help to ||| 0.0666667 0.0247351 8.48644e-07 1.92436e-11 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| could at the ||| 0.2 0.321886 8.48644e-07 1.74632e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| could at ||| 0.0294118 0.321886 8.48644e-07 2.84454e-05 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| could be activated in the ||| 1 0.605812 8.48644e-07 1.16911e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| could be activated in ||| 1 0.605812 8.48644e-07 1.90434e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| could be defined in ||| 1 0.605812 8.48644e-07 1.99361e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| could be further from the ||| 0.142857 0.0308834 8.48644e-07 1.45496e-12 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| could be further from ||| 0.142857 0.0308834 8.48644e-07 2.36996e-11 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| could be in ||| 0.0344828 0.605812 8.48644e-07 5.95106e-06 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| could be introduced in ||| 0.333333 0.605812 8.48644e-07 5.50473e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| could be made in ||| 0.2 0.605812 8.48644e-07 1.24663e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| could be neglected in ||| 1 0.605812 8.48644e-07 2.14238e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| could be of ||| 0.0204082 0.0116562 8.48644e-07 1.75743e-07 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| could be reduced by ||| 0.2 0.0468744 8.48644e-07 5.13081e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| could be reproduced in ||| 1 0.605812 8.48644e-07 6.54617e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| could be sufficient cause for ||| 0.5 0.0286209 8.48644e-07 1.30211e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| could be taken ||| 0.008 0.0042106 8.48644e-07 1.14825e-09 2.718 ||| 0-2 ||| 125 1.17835e+06 +en ||| could be the ||| 0.00591716 0.0011669 8.48644e-07 3.69179e-08 2.718 ||| 0-2 ||| 169 1.17835e+06 +en ||| could count on ||| 0.142857 0.22993 8.48644e-07 1.61222e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| could fall into ||| 0.25 0.525896 8.48644e-07 1.50649e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| could for ||| 0.142857 0.0286209 8.48644e-07 8.18135e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| could have been included in the ||| 0.5 0.605812 8.48644e-07 7.55978e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| could have been included in ||| 0.333333 0.605812 8.48644e-07 1.2314e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| could have in ||| 0.166667 0.605812 8.48644e-07 3.92727e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| could have on ||| 0.030303 0.22993 8.48644e-07 7.06295e-07 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| could in ||| 0.126984 0.605812 6.78915e-06 0.000328373 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| could not , in ||| 1 0.605812 8.48644e-07 1.33696e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| could of course provide you with ||| 1 0.0535436 8.48644e-07 5.43102e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| could remain within ||| 0.333333 0.369196 8.48644e-07 9.56299e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| could take into ||| 0.5 0.525896 8.48644e-07 2.53444e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| could take when ||| 1 0.142731 8.48644e-07 6.81576e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| could then move on to ||| 1 0.127333 8.48644e-07 4.08731e-13 2.718 ||| 0-3 0-4 ||| 1 1.17835e+06 +en ||| could under ||| 0.5 0.205566 8.48644e-07 4.02099e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| councillor , have during ||| 1 0.226251 8.48644e-07 4.53613e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| councils under ||| 0.25 0.205566 8.48644e-07 2.65766e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| count as ||| 0.027027 0.066968 8.48644e-07 4.9107e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| count for anything in ||| 0.5 0.605812 8.48644e-07 1.52022e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| count on you , ||| 0.2 0.22993 8.48644e-07 8.72966e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| count on you ||| 0.0714286 0.22993 8.48644e-07 7.32018e-09 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| count on ||| 0.00495049 0.22993 2.54593e-06 2.26722e-06 2.718 ||| 0-1 ||| 606 1.17835e+06 +en ||| counter ||| 0.00630631 0.145432 5.94051e-06 0.0001592 2.718 ||| 0-0 ||| 1110 1.17835e+06 +en ||| counter-demonstration ||| 0.25 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| countered to a ||| 1 0.0247351 8.48644e-07 2.24266e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| countered to ||| 1 0.0247351 8.48644e-07 5.05949e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| counterpart at ||| 1 0.321886 8.48644e-07 1.44007e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| counting on ||| 0.0142857 0.22993 8.48644e-07 6.56082e-07 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| countless ||| 0.00179533 0.0057252 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 557 1.17835e+06 +en ||| countries , in ||| 0.0124224 0.605812 1.69729e-06 2.09099e-05 2.718 ||| 0-2 ||| 161 1.17835e+06 +en ||| countries , places ||| 0.25 8.93e-05 8.48644e-07 3.40663e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| countries , ||| 0.000153186 8.93e-05 8.48644e-07 6.43975e-07 2.718 ||| 0-0 ||| 6528 1.17835e+06 +en ||| countries - and ||| 0.0243902 0.0010182 8.48644e-07 1.32155e-09 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| countries . in ||| 0.333333 0.605812 8.48644e-07 5.311e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| countries and are in ||| 1 0.605812 8.48644e-07 3.33233e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| countries and autonomous preferences in ||| 1 0.605812 8.48644e-07 1.97664e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| countries as ||| 0.00291545 0.066968 8.48644e-07 6.83001e-06 2.718 ||| 0-1 ||| 343 1.17835e+06 +en ||| countries face in ||| 1 0.605812 8.48644e-07 2.93341e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| countries have made in ||| 0.333333 0.605812 8.48644e-07 4.39282e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| countries in the ||| 0.000749064 0.605812 8.48644e-07 1.07643e-05 2.718 ||| 0-1 ||| 1335 1.17835e+06 +en ||| countries in ||| 0.00528169 0.605812 1.27297e-05 0.000175338 2.718 ||| 0-1 ||| 2840 1.17835e+06 +en ||| countries of ||| 0.000742574 0.0116562 2.54593e-06 5.17797e-06 2.718 ||| 0-1 ||| 4040 1.17835e+06 +en ||| countries on ||| 0.0144404 0.22993 3.39458e-06 3.15335e-05 2.718 ||| 0-1 ||| 277 1.17835e+06 +en ||| countries to be imported to ||| 1 0.0247351 8.48644e-07 6.8748e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| countries to move ||| 0.2 0.0247351 8.48644e-07 1.63186e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| countries to opt in ||| 0.25 0.605812 8.48644e-07 1.62035e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| countries to ||| 0.00129366 0.0247351 1.69729e-06 1.06727e-05 2.718 ||| 0-1 ||| 1546 1.17835e+06 +en ||| countries where it ||| 0.0357143 0.247783 8.48644e-07 5.75065e-08 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| countries where ||| 0.0045819 0.247783 3.39458e-06 3.23375e-06 2.718 ||| 0-1 ||| 873 1.17835e+06 +en ||| countries will become members at ||| 1 0.321886 8.48644e-07 5.53734e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| countries with ||| 0.000755858 0.0535436 8.48644e-07 4.42688e-06 2.718 ||| 0-1 ||| 1323 1.17835e+06 +en ||| countries within ||| 0.00854701 0.369196 8.48644e-07 4.20962e-06 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| countries ||| 4.43228e-05 8.93e-05 3.39458e-06 5.4e-06 2.718 ||| 0-0 ||| 90247 1.17835e+06 +en ||| country , again within the space of ||| 1 0.369196 8.48644e-07 3.8022e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| country , again within the space ||| 1 0.369196 8.48644e-07 6.99397e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| country , again within the ||| 1 0.369196 8.48644e-07 1.68936e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| country , again within ||| 1 0.369196 8.48644e-07 2.75177e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| country and a partner country under ||| 1 0.205566 8.48644e-07 1.02478e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| country being moved into - and can ||| 1 0.525896 8.48644e-07 1.01006e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| country being moved into - and ||| 1 0.525896 8.48644e-07 3.39596e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| country being moved into - ||| 1 0.525896 8.48644e-07 2.71115e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| country being moved into ||| 1 0.525896 8.48644e-07 7.18737e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| country experiencing the same disasters over and ||| 1 0.0261115 8.48644e-07 2.43206e-23 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country experiencing the same disasters over ||| 1 0.0261115 8.48644e-07 1.94163e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country experiencing the same disasters ||| 1 0.0261115 8.48644e-07 4.03245e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country experiencing the same ||| 1 0.0261115 8.48644e-07 4.4805e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country experiencing the ||| 1 0.0261115 8.48644e-07 5.56792e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country experiencing ||| 0.5 0.0261115 8.48644e-07 9.06948e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| country in a peculiar situation ||| 1 0.605812 8.48644e-07 1.63136e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country in a peculiar ||| 1 0.605812 8.48644e-07 3.16769e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country in a ||| 0.025641 0.605812 8.48644e-07 7.36673e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| country in question ||| 0.00934579 0.605812 8.48644e-07 1.37493e-07 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| country in that part of the world ||| 1 0.605812 8.48644e-07 2.53402e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country in that part of the ||| 1 0.605812 8.48644e-07 1.11239e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country in that part of ||| 1 0.605812 8.48644e-07 1.81195e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country in that part ||| 1 0.605812 8.48644e-07 3.33299e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country in that ||| 0.2 0.605812 8.48644e-07 2.79567e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| country in ||| 0.00991736 0.605812 1.01837e-05 0.000166195 2.718 ||| 0-1 ||| 1210 1.17835e+06 +en ||| country of ||| 0.000590667 0.0116562 8.48644e-07 4.90796e-06 2.718 ||| 0-1 ||| 1693 1.17835e+06 +en ||| country over ||| 0.0384615 0.157937 8.48644e-07 1.44219e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| country ruled by ||| 0.2 0.0468744 8.48644e-07 3.73528e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| country such as ||| 0.00617284 0.066968 8.48644e-07 1.33937e-08 2.718 ||| 0-2 ||| 162 1.17835e+06 +en ||| country to another ||| 0.00480769 0.0247351 8.48644e-07 2.43901e-09 2.718 ||| 0-1 ||| 208 1.17835e+06 +en ||| country to ||| 0.003861 0.0247351 3.39458e-06 1.01162e-05 2.718 ||| 0-1 ||| 1036 1.17835e+06 +en ||| country under way in the ||| 1 0.205566 8.48644e-07 5.76458e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country under way in ||| 1 0.205566 8.48644e-07 9.38981e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country under way ||| 1 0.205566 8.48644e-07 4.38684e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| country under ||| 0.047619 0.205566 1.69729e-06 2.03509e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| country where ||| 0.00180505 0.247783 8.48644e-07 3.06512e-06 2.718 ||| 0-1 ||| 554 1.17835e+06 +en ||| country with ||| 0.00166113 0.0535436 8.48644e-07 4.19604e-06 2.718 ||| 0-1 ||| 602 1.17835e+06 +en ||| counts as ||| 0.0434783 0.066968 8.48644e-07 1.0433e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| courage in ||| 0.0147059 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| course , acted in ||| 1 0.605812 8.48644e-07 1.34794e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| course , also in ||| 1 0.605812 8.48644e-07 3.50783e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| course , applies everywhere , in ||| 1 0.605812 8.48644e-07 1.29846e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| course , at ||| 0.25 0.321886 2.54593e-06 6.01885e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| course , in the ||| 0.047619 0.605812 8.48644e-07 4.26558e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| course , in ||| 0.233333 0.605812 1.1881e-05 6.94813e-05 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| course , largely created ||| 1 0.247761 8.48644e-07 1.34356e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| course , largely ||| 0.5 0.247761 8.48644e-07 1.27473e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| course , related to ||| 0.5 0.0247351 8.48644e-07 2.77018e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| course , when it ||| 0.5 0.142731 8.48644e-07 1.59294e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| course , when ||| 0.0909091 0.142731 8.48644e-07 8.95755e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| course , where ||| 0.5 0.247783 8.48644e-07 1.28144e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| course , with ||| 0.0540541 0.0535436 1.69729e-06 1.75424e-06 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| course - in ||| 1 0.605812 8.48644e-07 2.19774e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| course as ||| 0.0625 0.066968 8.48644e-07 2.26953e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| course at least ||| 0.5 0.321886 8.48644e-07 1.23855e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| course at ||| 0.153846 0.321886 1.69729e-06 5.04705e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| course be ||| 0.0117647 0.0001288 8.48644e-07 5.23605e-08 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| course by ||| 0.0526316 0.0468744 8.48644e-07 1.07334e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| course content in ||| 1 0.605812 8.48644e-07 2.87236e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| course fits in with ||| 1 0.329678 8.48644e-07 2.1737e-11 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| course for ||| 0.00952381 0.0286209 8.48644e-07 1.45161e-05 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| course in ||| 0.0786517 0.605812 5.94051e-06 0.000582629 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| course includes ||| 0.0909091 0.0068123 8.48644e-07 2.48555e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| course it also ||| 1 0.0080472 8.48644e-07 1.75673e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| course it is perfectly legitimate , in ||| 1 0.605812 8.48644e-07 1.65248e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| course it ||| 0.02 0.0080472 8.48644e-07 3.47964e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| course made in ||| 1 0.605812 8.48644e-07 1.22049e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| course of action at ||| 0.333333 0.321886 8.48644e-07 8.29445e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| course of the ||| 0.00155521 0.0011669 8.48644e-07 1.96493e-07 2.718 ||| 0-2 ||| 643 1.17835e+06 +en ||| course of ||| 0.00522739 0.0116562 8.48644e-06 1.72058e-05 2.718 ||| 0-1 ||| 1913 1.17835e+06 +en ||| course on ||| 0.125 0.22993 1.69729e-06 0.000104782 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| course over ||| 0.333333 0.157937 8.48644e-07 5.05588e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| course provide you with ||| 1 0.0535436 8.48644e-07 1.40488e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| courtesy in ||| 0.125 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| courts with ||| 0.1 0.0535436 8.48644e-07 1.38741e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| cover all manner of ||| 0.5 0.0116562 8.48644e-07 9.81393e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| cover at ||| 0.2 0.321886 8.48644e-07 3.12416e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| cover ||| 0.00062461 0.0013994 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 3202 1.17835e+06 +en ||| coverage in ||| 0.027027 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| coverage on ||| 1 0.22993 8.48644e-07 6.89302e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| covered , to ||| 0.333333 0.0247351 8.48644e-07 2.40007e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| covered by ||| 0.0106682 0.0468744 1.61242e-05 6.09108e-07 2.718 ||| 0-1 ||| 1781 1.17835e+06 +en ||| covered during ||| 0.333333 0.226251 8.48644e-07 2.07017e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| covered in just ||| 1 0.605812 8.48644e-07 4.17163e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| covered in ||| 0.0262172 0.605812 5.94051e-06 3.30635e-05 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| covered ||| 0.00317348 0.0084459 7.6378e-06 2.04e-05 2.718 ||| 0-0 ||| 2836 1.17835e+06 +en ||| covering ||| 0.00543478 0.0075067 5.94051e-06 9.5e-06 2.718 ||| 0-0 ||| 1288 1.17835e+06 +en ||| crashed at ||| 1 0.321886 8.48644e-07 5.60028e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| crawls flat on ||| 1 0.22993 8.48644e-07 1.06302e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| create internationally competitive ||| 1 0.0446927 8.48644e-07 1.16996e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| create internationally ||| 1 0.0446927 8.48644e-07 6.12544e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| create one in ||| 1 0.605812 8.48644e-07 2.16722e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| created along ||| 1 0.155535 8.48644e-07 8.38457e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| created at ||| 0.030303 0.321886 8.48644e-07 4.21621e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| created by EMU ||| 0.333333 0.0468744 8.48644e-07 7.71118e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| created by ||| 0.00147059 0.0468744 8.48644e-07 8.96648e-07 2.718 ||| 0-1 ||| 680 1.17835e+06 +en ||| created if ||| 0.333333 0.0178573 8.48644e-07 1.22211e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| created in ||| 0.0272109 0.605812 6.78915e-06 4.86717e-05 2.718 ||| 0-1 ||| 294 1.17835e+06 +en ||| created on ||| 0.0232558 0.22993 8.48644e-07 8.7533e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| created over ||| 0.0833333 0.157937 8.48644e-07 4.22359e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| created throughout ||| 0.5 0.309047 8.48644e-07 3.05744e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| created within ||| 0.0238095 0.369196 8.48644e-07 1.16854e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| created ||| 0.00020008 0.0003548 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 4998 1.17835e+06 +en ||| creating a sense ||| 0.1 0.0015231 8.48644e-07 8.55578e-12 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| creating a ||| 0.000414594 0.0015231 8.48644e-07 4.80392e-08 2.718 ||| 0-1 ||| 2412 1.17835e+06 +en ||| creating on ||| 1 0.22993 8.48644e-07 4.84172e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| creating ||| 0.000101225 0.0001576 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 9879 1.17835e+06 +en ||| creation of ||| 0.000379939 0.0116562 1.69729e-06 6.32757e-07 2.718 ||| 0-1 ||| 5264 1.17835e+06 +en ||| credit for that . now , in ||| 1 0.605812 8.48644e-07 1.59923e-15 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| credit to ||| 0.00540541 0.0247351 8.48644e-07 1.0119e-06 2.718 ||| 0-1 ||| 185 1.17835e+06 +en ||| creep into ||| 0.2 0.525896 8.48644e-07 1.54961e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| creeping in ||| 0.5 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| crews on ||| 0.111111 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| cries out ||| 0.0833333 0.0120599 8.48644e-07 9.909e-10 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| crime , in ||| 0.0454545 0.605812 8.48644e-07 2.31843e-06 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| crime against ||| 0.00598802 0.153982 8.48644e-07 2.44134e-07 2.718 ||| 0-1 ||| 167 1.17835e+06 +en ||| crime in ||| 0.0116279 0.605812 1.69729e-06 1.9441e-05 2.718 ||| 0-1 ||| 172 1.17835e+06 +en ||| crime reports in ||| 1 0.605812 8.48644e-07 9.66217e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| crimes against ||| 0.00229885 0.153982 8.48644e-07 1.64689e-07 2.718 ||| 0-1 ||| 435 1.17835e+06 +en ||| criminal law in ||| 0.027027 0.605812 8.48644e-07 3.39488e-09 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| criminal offence in ||| 0.0625 0.605812 8.48644e-07 2.00265e-10 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| criminal records , ||| 0.111111 0.024173 8.48644e-07 6.41507e-11 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| criminal records ||| 0.0106383 0.024173 8.48644e-07 5.3793e-10 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| crisis in ||| 0.00923077 0.605812 7.6378e-06 3.33868e-05 2.718 ||| 0-1 ||| 975 1.17835e+06 +en ||| criteria for ||| 0.00398936 0.0286209 2.54593e-06 3.52059e-07 2.718 ||| 0-1 ||| 752 1.17835e+06 +en ||| criteria in ||| 0.0263158 0.605812 1.69729e-06 1.41305e-05 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| criterion for ||| 0.00900901 0.0286209 8.48644e-07 7.01817e-08 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| critical failings during ||| 0.5 0.226251 8.48644e-07 1.02005e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| critical in ||| 0.0175439 0.605812 8.48644e-07 1.16369e-05 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| critically at Belarus ||| 1 0.321886 8.48644e-07 1.19006e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| critically at ||| 0.0625 0.321886 8.48644e-07 1.00005e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| criticised in ||| 0.0227273 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| criticised the ||| 0.00775194 0.0027959 8.48644e-07 1.22784e-07 2.718 ||| 0-0 ||| 129 1.17835e+06 +en ||| criticised ||| 0.00224972 0.0027959 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 889 1.17835e+06 +en ||| criticism of ||| 0.00188324 0.0116562 8.48644e-07 2.75467e-07 2.718 ||| 0-1 ||| 531 1.17835e+06 +en ||| cropping up almost unnoticed ||| 0.166667 0.0147069 8.48644e-07 1.12575e-19 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| cropping up almost ||| 0.166667 0.0147069 8.48644e-07 6.25416e-14 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| cropping up in ||| 0.1 0.605812 8.48644e-07 1.73239e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| cropping up ||| 0.0714286 0.0147069 8.48644e-07 7.59e-10 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| crops from ||| 0.125 0.0308834 8.48644e-07 6.43062e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| crops in ||| 0.1 0.605812 2.54593e-06 7.8041e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| cross ||| 0.00191205 0.0015361 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 523 1.17835e+06 +en ||| crossing business in ||| 0.5 0.605812 8.48644e-07 3.74897e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| crossing ||| 0.00355872 0.0037879 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 562 1.17835e+06 +en ||| crowd control measures employed to ||| 1 0.0247351 8.48644e-07 2.82622e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| crucial , in ||| 0.0714286 0.605812 8.48644e-07 2.09815e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| crucial points where ||| 0.5 0.247783 8.48644e-07 4.21503e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| crucial to ||| 0.000953289 0.0247351 8.48644e-07 1.07093e-06 2.718 ||| 0-1 ||| 1049 1.17835e+06 +en ||| crucially - in ||| 1 0.605812 8.48644e-07 5.05147e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| crucially needed in ||| 1 0.605812 8.48644e-07 1.79314e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| cruelty under ||| 1 0.205566 8.48644e-07 3.95822e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| crushing effect on ||| 0.5 0.22993 8.48644e-07 6.09509e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| cudgel in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| cue from ||| 0.125 0.0308834 8.48644e-07 5.32714e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| cultivated by ||| 0.0909091 0.0468744 8.48644e-07 4.93412e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| cultivated in ||| 0.105263 0.605812 1.69729e-06 2.67833e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| cultivation in ||| 0.1 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| cultural capital on ||| 1 0.22993 8.48644e-07 5.03323e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| cultural diversity , a factor which in ||| 1 0.605812 8.48644e-07 2.28736e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| cultural diversity and ||| 0.00362319 0.0010182 8.48644e-07 2.09434e-13 2.718 ||| 0-2 ||| 276 1.17835e+06 +en ||| cultural programme ambiguous , for ||| 1 0.0286209 8.48644e-07 1.18619e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| culture in ||| 0.00534759 0.605812 8.48644e-07 9.14327e-06 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| currencies experiencing difficulties should be automatic when ||| 1 0.142731 8.48644e-07 4.43505e-28 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| currency , by ||| 1 0.0468744 8.48644e-07 3.79427e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| currency becomes part ||| 1 0.162791 8.48644e-07 1.69926e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| currency becomes ||| 1 0.162791 8.48644e-07 1.42531e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| currency in our ||| 0.333333 0.605812 8.48644e-07 2.38231e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| currency in ||| 0.121212 0.605812 3.39458e-06 1.72706e-05 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| currency into euros at ||| 1 0.321886 8.48644e-07 9.36972e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| current cases in ||| 1 0.605812 8.48644e-07 9.74861e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| current events in ||| 0.0232558 0.605812 8.48644e-07 5.53258e-09 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| current practice in ||| 0.05 0.605812 8.48644e-07 8.0211e-09 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| current way of working ||| 1 0.0116562 8.48644e-07 9.22383e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| current way of ||| 0.333333 0.0116562 8.48644e-07 4.84445e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| current within ||| 1 0.369196 8.48644e-07 1.82709e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| current ||| 0.00170799 0.0052696 2.80053e-05 6.4e-05 2.718 ||| 0-0 ||| 19321 1.17835e+06 +en ||| currently a ||| 0.020202 0.104436 1.69729e-06 5.21183e-05 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| currently at ||| 0.0192308 0.321886 8.48644e-07 4.17621e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| currently being ||| 0.00856531 0.104436 3.39458e-06 3.34609e-06 2.718 ||| 0-0 ||| 467 1.17835e+06 +en ||| currently enduring ||| 0.5 0.104436 8.48644e-07 4.23288e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| currently engaged in ||| 0.0322581 0.605812 8.48644e-07 1.97661e-09 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| currently enjoy ||| 0.0833333 0.104436 8.48644e-07 4.57386e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| currently experiencing in ||| 0.333333 0.605812 8.48644e-07 9.01526e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| currently granted ||| 0.142857 0.104436 8.48644e-07 9.52398e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| currently hard ||| 1 0.104436 8.48644e-07 1.23577e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| currently have ||| 0.00613497 0.104436 8.48644e-07 1.40623e-05 2.718 ||| 0-0 ||| 163 1.17835e+06 +en ||| currently headed ||| 0.25 0.104436 8.48644e-07 9.28882e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| currently holds ||| 0.0434783 0.104436 8.48644e-07 3.33927e-08 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| currently in power in Croatia ||| 1 0.605812 8.48644e-07 6.62476e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| currently in power in ||| 0.142857 0.605812 8.48644e-07 1.54064e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| currently in power ||| 0.0555556 0.605812 8.48644e-07 7.19775e-09 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| currently in ||| 0.0265152 0.605812 1.1881e-05 4.82099e-05 2.718 ||| 0-1 ||| 528 1.17835e+06 +en ||| currently involved with ||| 0.25 0.0535436 8.48644e-07 4.20904e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| currently lie in ||| 1 0.605812 8.48644e-07 1.82234e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| currently make ||| 0.0714286 0.104436 8.48644e-07 2.04331e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| currently on the ||| 0.0135135 0.22993 8.48644e-07 5.32282e-07 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| currently on ||| 0.0121951 0.22993 8.48644e-07 8.67025e-06 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| currently playing in ||| 1 0.605812 8.48644e-07 3.17704e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| currently running ||| 0.2 0.104436 8.48644e-07 8.97135e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| currently suffering with ||| 1 0.104436 8.48644e-07 3.33076e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| currently suffering ||| 0.0909091 0.104436 8.48644e-07 5.20879e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| currently taking ||| 0.0327869 0.104436 1.69729e-06 4.99715e-07 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| currently under ||| 0.0167364 0.205566 3.39458e-06 5.9034e-07 2.718 ||| 0-1 ||| 239 1.17835e+06 +en ||| currently underway in ||| 0.25 0.605812 8.48644e-07 6.74939e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| currently ||| 0.0077299 0.104436 7.38321e-05 0.0011758 2.718 ||| 0-0 ||| 11255 1.17835e+06 +en ||| custody in ||| 0.125 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| customs in ||| 0.0357143 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| customs tariffs on ||| 0.2 0.22993 8.48644e-07 2.68412e-12 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| cut across ||| 0.025641 0.274879 8.48644e-07 1.55305e-07 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| cut back in ||| 0.2 0.605812 8.48644e-07 2.34809e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| cut by a ||| 0.125 0.0468744 8.48644e-07 2.85076e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| cut by ||| 0.0384615 0.0468744 2.54593e-06 6.43137e-07 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| cut down on ||| 0.0322581 0.22993 8.48644e-07 4.38299e-09 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| cut his way through ||| 0.5 0.0366102 8.48644e-07 4.60518e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| cut in ||| 0.0344828 0.605812 3.39458e-06 3.49107e-05 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| cut of meat on sale in ||| 1 0.605812 8.48644e-07 2.88007e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| cut of ||| 0.0192308 0.0116562 8.48644e-07 1.03096e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| cut off from ||| 0.0142857 0.0308834 8.48644e-07 1.1708e-10 2.718 ||| 0-2 ||| 70 1.17835e+06 +en ||| cut off ||| 0.000892061 0.0262428 8.48644e-07 1.26554e-08 2.718 ||| 0-1 ||| 1121 1.17835e+06 +en ||| cut on ||| 0.142857 0.22993 8.48644e-07 6.27846e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| cut out ||| 0.0357143 0.0120599 1.69729e-06 4.16178e-08 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| cut the amount of money spent on ||| 0.5 0.22993 8.48644e-07 5.33983e-20 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| cut-back in ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| cuts in ||| 0.00505051 0.605812 1.69729e-06 5.31048e-06 2.718 ||| 0-1 ||| 396 1.17835e+06 +en ||| cuts ||| 0.000984252 0.0018442 1.69729e-06 2.7e-06 2.718 ||| 0-0 ||| 2032 1.17835e+06 +en ||| cutting across ||| 0.047619 0.274879 8.48644e-07 3.04036e-08 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| cutting themselves in ||| 0.333333 0.605812 8.48644e-07 2.93672e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| cybercrime in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| daily basis in ||| 0.0714286 0.605812 8.48644e-07 6.22447e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| daily in the ||| 0.166667 0.605812 8.48644e-07 6.43535e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| daily in ||| 0.0384615 0.605812 8.48644e-07 1.04824e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| damage in ||| 0.0163934 0.605812 8.48644e-07 1.9441e-05 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| damage to ||| 0.00546448 0.0247351 2.54593e-06 1.18336e-06 2.718 ||| 0-1 ||| 549 1.17835e+06 +en ||| damaged by ||| 0.00961538 0.0468744 8.48644e-07 8.84738e-08 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| damages in the ||| 0.142857 0.605812 8.48644e-07 9.07186e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| damages in ||| 0.0714286 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| danger that ||| 0.00261097 0.0017499 8.48644e-07 5.11103e-08 2.718 ||| 0-1 ||| 383 1.17835e+06 +en ||| dangers at ||| 0.333333 0.321886 8.48644e-07 3.04015e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| dare to ||| 0.00413223 0.0247351 8.48644e-07 2.33299e-07 2.718 ||| 0-1 ||| 242 1.17835e+06 +en ||| data were collected in ||| 1 0.605812 8.48644e-07 4.87158e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| date in laying down ||| 1 0.605812 8.48644e-07 6.88575e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| date in laying ||| 1 0.605812 8.48644e-07 9.86355e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| date in the future ||| 0.333333 0.605812 8.48644e-07 7.6953e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| date in the ||| 0.0166667 0.605812 8.48644e-07 2.89733e-06 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| date in ||| 0.05 0.605812 6.78915e-06 4.7194e-05 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| date into ||| 0.5 0.525896 8.48644e-07 2.26243e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| date of ||| 0.00410678 0.0116562 1.69729e-06 1.3937e-06 2.718 ||| 0-1 ||| 487 1.17835e+06 +en ||| date under ||| 0.2 0.205566 8.48644e-07 5.779e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| date with ||| 0.0222222 0.0535436 8.48644e-07 1.19154e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| date within ||| 0.25 0.369196 8.48644e-07 1.13306e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| dates back to ||| 0.01 0.0247351 8.48644e-07 1.0209e-10 2.718 ||| 0-2 ||| 100 1.17835e+06 +en ||| dating back to ||| 0.0133333 0.0247351 8.48644e-07 2.51445e-10 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| dawn on ||| 0.142857 0.22993 8.48644e-07 1.82706e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| day , listening to ||| 1 0.0247351 8.48644e-07 1.08208e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| day at ||| 0.0555556 0.321886 1.69729e-06 1.02485e-05 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| day become a ||| 0.142857 0.219193 8.48644e-07 4.34207e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| day become ||| 0.0666667 0.219193 8.48644e-07 9.79581e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| day before yesterday , and where it ||| 0.5 0.247783 8.48644e-07 3.45009e-19 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| day before yesterday , and where ||| 0.5 0.247783 8.48644e-07 1.94008e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| day before ||| 0.00641026 0.0175291 8.48644e-07 8.73386e-08 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| day for ||| 0.00515464 0.0286209 8.48644e-07 2.94763e-06 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| day in ||| 0.0344828 0.605812 7.6378e-06 0.000118308 2.718 ||| 0-1 ||| 261 1.17835e+06 +en ||| day of ||| 0.00260417 0.0116562 8.48644e-07 3.4938e-06 2.718 ||| 0-1 ||| 384 1.17835e+06 +en ||| day on 15 May ||| 0.5 0.22993 8.48644e-07 4.02561e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| day on 15 ||| 0.333333 0.22993 8.48644e-07 4.68094e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| day on ||| 0.0175439 0.22993 1.69729e-06 2.1277e-05 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| day out in ||| 0.2 0.605812 8.48644e-07 4.53168e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| day when they ||| 0.25 0.142731 8.48644e-07 4.97837e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| day when ||| 0.0037594 0.142731 8.48644e-07 1.52524e-06 2.718 ||| 0-1 ||| 266 1.17835e+06 +en ||| days in ||| 0.035461 0.605812 4.24322e-06 2.94155e-05 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| days on ||| 0.025641 0.22993 8.48644e-07 5.29018e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| days ||| 0.000188218 0.0004937 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 5313 1.17835e+06 +en ||| dead in ||| 0.111111 0.605812 4.24322e-06 1.14522e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| deadlock in ||| 0.0172414 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| deadly impact on ||| 1 0.22993 8.48644e-07 2.46355e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| deal , in ||| 0.142857 0.605812 8.48644e-07 2.33825e-05 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| deal . ||| 0.00540541 6.3e-05 8.48644e-07 3.43926e-08 2.718 ||| 0-1 ||| 185 1.17835e+06 +en ||| deal about ||| 0.0222222 0.0401564 8.48644e-07 1.21695e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| deal at ||| 0.105263 0.321886 1.69729e-06 1.69848e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| deal both in ||| 1 0.605812 8.48644e-07 3.24794e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| deal fairly with ||| 0.125 0.0535436 8.48644e-07 1.60392e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| deal for ||| 0.0163934 0.0286209 8.48644e-07 4.88511e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| deal from ||| 0.0322581 0.0308834 8.48644e-07 1.61565e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| deal goes on up in ||| 0.5 0.605812 8.48644e-07 6.19691e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| deal in terms of ||| 0.333333 0.605812 8.48644e-07 1.16996e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| deal in terms ||| 0.333333 0.605812 8.48644e-07 2.15209e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| deal in ||| 0.084507 0.605812 1.01837e-05 0.000196072 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| deal of experience of ||| 0.333333 0.0116562 8.48644e-07 2.17515e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| deal of ||| 0.00482509 0.0116562 3.39458e-06 5.79027e-06 2.718 ||| 0-1 ||| 829 1.17835e+06 +en ||| deal on an ||| 0.5 0.22993 8.48644e-07 1.56731e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| deal on ||| 0.0540541 0.22993 3.39458e-06 3.52624e-05 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| deal to be desired ||| 0.166667 0.0247351 8.48644e-07 3.35254e-12 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| deal to be ||| 0.0909091 0.0247351 8.48644e-07 2.16293e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| deal to do in ||| 0.5 0.605812 8.48644e-07 5.9852e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| deal to teach us about ||| 1 0.0401564 8.48644e-07 9.03839e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| deal to their determination ||| 1 0.0247351 8.48644e-07 1.6462e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| deal to their ||| 1 0.0247351 8.48644e-07 1.38336e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| deal to ||| 0.0229008 0.0247351 2.54593e-06 1.19348e-05 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| deal with a ||| 0.00512821 0.0535436 8.48644e-07 2.19429e-07 2.718 ||| 0-1 ||| 195 1.17835e+06 +en ||| deal with in ||| 0.102564 0.605812 3.39458e-06 1.25378e-06 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| deal with it ||| 0.004329 0.0535436 8.48644e-07 8.80334e-08 2.718 ||| 0-1 ||| 231 1.17835e+06 +en ||| deal with may be passed on to ||| 1 0.127333 8.48644e-07 6.16156e-18 2.718 ||| 0-5 0-6 ||| 1 1.17835e+06 +en ||| deal with the ||| 0.00109951 0.0535436 1.69729e-06 3.03912e-07 2.718 ||| 0-1 ||| 1819 1.17835e+06 +en ||| deal with these problems , ||| 0.166667 0.0535436 8.48644e-07 8.21649e-14 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| deal with these problems ||| 0.0416667 0.0535436 8.48644e-07 6.88987e-13 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| deal with these ||| 0.00395257 0.0535436 8.48644e-07 5.13403e-09 2.718 ||| 0-1 ||| 253 1.17835e+06 +en ||| deal with ||| 0.00658317 0.0535436 3.47944e-05 4.95037e-06 2.718 ||| 0-1 ||| 6228 1.17835e+06 +en ||| dealing in this ||| 1 0.605812 8.48644e-07 3.08222e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| dealing in ||| 0.0425532 0.605812 1.69729e-06 4.7702e-05 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| dealing with issues ||| 0.0277778 0.0535436 8.48644e-07 3.02898e-10 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| dealing with them ||| 0.02 0.0535436 8.48644e-07 3.23059e-09 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| dealing with ||| 0.00586246 0.0535436 2.20648e-05 1.20436e-06 2.718 ||| 0-1 ||| 4435 1.17835e+06 +en ||| dealings in relation to Cyprus or ||| 1 0.605812 8.48644e-07 1.92302e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| dealings in relation to Cyprus ||| 1 0.605812 8.48644e-07 1.68199e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| dealings in relation to ||| 1 0.605812 8.48644e-07 1.03827e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| dealings in relation ||| 1 0.605812 8.48644e-07 1.16845e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| dealings in ||| 0.2 0.605812 8.48644e-07 4.80252e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| dealings with ||| 0.00387597 0.0535436 8.48644e-07 1.21253e-07 2.718 ||| 0-1 ||| 258 1.17835e+06 +en ||| deals with ||| 0.00528701 0.0535436 5.94051e-06 2.98468e-07 2.718 ||| 0-1 ||| 1324 1.17835e+06 +en ||| dealt in illegally and that ||| 1 0.605812 8.48644e-07 5.09365e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| dealt in illegally and ||| 1 0.605812 8.48644e-07 3.02804e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| dealt in illegally ||| 1 0.605812 8.48644e-07 2.41742e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| dealt in ||| 0.0909091 0.605812 8.48644e-07 4.83485e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| dealt with as ||| 0.0153846 0.0535436 8.48644e-07 1.24564e-08 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| dealt with at national ||| 0.333333 0.321886 8.48644e-07 3.44142e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| dealt with at ||| 0.0202703 0.321886 2.54593e-06 2.67815e-08 2.718 ||| 0-2 ||| 148 1.17835e+06 +en ||| dealt with by ||| 0.0133333 0.050209 3.39458e-06 1.03845e-08 2.718 ||| 0-1 0-2 ||| 300 1.17835e+06 +en ||| dealt with in detail ||| 0.166667 0.605812 8.48644e-07 1.57983e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| dealt with in other ||| 0.166667 0.605812 8.48644e-07 4.00522e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| dealt with in three different ways in ||| 0.5 0.329678 8.48644e-07 1.62123e-20 2.718 ||| 0-1 0-2 ||| 2 1.17835e+06 +en ||| dealt with in three different ways ||| 0.333333 0.329678 8.48644e-07 7.57423e-19 2.718 ||| 0-1 0-2 ||| 3 1.17835e+06 +en ||| dealt with in three different ||| 0.5 0.329678 8.48644e-07 7.85708e-15 2.718 ||| 0-1 0-2 ||| 2 1.17835e+06 +en ||| dealt with in three ||| 0.333333 0.329678 8.48644e-07 3.56816e-11 2.718 ||| 0-1 0-2 ||| 3 1.17835e+06 +en ||| dealt with in ||| 0.0220884 0.605812 9.33509e-06 3.09164e-07 2.718 ||| 0-2 ||| 498 1.17835e+06 +en ||| dealt with on ||| 0.0263158 0.141737 8.48644e-07 1.01376e-07 2.718 ||| 0-1 0-2 ||| 38 1.17835e+06 +en ||| dealt with through ||| 0.0625 0.0535436 1.69729e-06 5.61882e-10 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| dealt with ||| 0.006456 0.0535436 1.61242e-05 1.22069e-06 2.718 ||| 0-1 ||| 2943 1.17835e+06 +en ||| death due to ||| 0.2 0.0247351 8.48644e-07 4.21864e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| death for years ||| 0.5 0.0286209 8.48644e-07 1.06329e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| death for ||| 0.0140845 0.0286209 8.48644e-07 6.24732e-07 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| death in ||| 0.0294118 0.605812 3.39458e-06 2.50747e-05 2.718 ||| 0-1 ||| 136 1.17835e+06 +en ||| death inside ||| 1 0.188717 8.48644e-07 1.03822e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| death on ||| 0.0526316 0.22993 8.48644e-07 4.50953e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| death penalty in a ||| 0.142857 0.605812 8.48644e-07 1.55604e-11 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| death penalty in ||| 0.020202 0.605812 3.39458e-06 3.51046e-10 2.718 ||| 0-2 ||| 198 1.17835e+06 +en ||| deaths an achievement for ||| 1 0.0286209 8.48644e-07 1.05987e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| deaths at ||| 0.0625 0.321886 8.48644e-07 3.44017e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| debate at ||| 0.00552486 0.321886 8.48644e-07 7.9164e-06 2.718 ||| 0-1 ||| 181 1.17835e+06 +en ||| debate for ||| 0.00854701 0.0286209 8.48644e-07 2.27688e-06 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| debate in ||| 0.0102302 0.605812 1.01837e-05 9.13865e-05 2.718 ||| 0-1 ||| 1173 1.17835e+06 +en ||| debate into ||| 0.047619 0.525896 8.48644e-07 4.38097e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| debate on a ||| 0.00724638 0.22993 8.48644e-07 7.28507e-07 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| debate on ||| 0.00135204 0.22993 6.78915e-06 1.64353e-05 2.718 ||| 0-1 ||| 5917 1.17835e+06 +en ||| debate them as ||| 0.5 0.066968 8.48644e-07 9.54882e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| debate today ||| 0.00275482 0.0398284 8.48644e-07 2.38747e-07 2.718 ||| 0-1 ||| 363 1.17835e+06 +en ||| debate within ||| 0.0144928 0.369196 8.48644e-07 2.19406e-06 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| debated at ||| 0.0188679 0.321886 8.48644e-07 3.32017e-07 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| debated in ||| 0.00462963 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 216 1.17835e+06 +en ||| debated is to ||| 1 0.0247351 8.48644e-07 7.31184e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| debates are held in ||| 0.5 0.605812 8.48644e-07 3.09211e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| debates at EU level . at ||| 1 0.321886 8.48644e-07 3.7151e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| debates in ||| 0.00352113 0.605812 8.48644e-07 7.98881e-06 2.718 ||| 0-1 ||| 284 1.17835e+06 +en ||| debts in ||| 0.0526316 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| decide , at ||| 0.333333 0.321886 8.48644e-07 3.05784e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| decide all together what we ||| 0.5 0.0035633 8.48644e-07 8.06674e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| decide all together what ||| 0.5 0.0035633 8.48644e-07 7.10582e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| decide as ||| 0.111111 0.066968 8.48644e-07 1.15302e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| decide on ||| 0.00911458 0.22993 5.94051e-06 5.3234e-06 2.718 ||| 0-1 ||| 768 1.17835e+06 +en ||| decide where ||| 0.030303 0.247783 8.48644e-07 5.45914e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| decided at ||| 0.0144928 0.321886 1.69729e-06 2.73614e-06 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| decided beforehand against ||| 1 0.153982 8.48644e-07 2.14188e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| decided by ||| 0.00326797 0.0468744 8.48644e-07 5.81886e-07 2.718 ||| 0-1 ||| 306 1.17835e+06 +en ||| decided in ||| 0.0184049 0.605812 5.09187e-06 3.15858e-05 2.718 ||| 0-1 ||| 326 1.17835e+06 +en ||| decided on can enter into force along ||| 1 0.155535 8.48644e-07 9.32872e-24 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| decided on the global market , and ||| 1 0.22993 8.48644e-07 5.3803e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| decided on the global market , ||| 1 0.22993 8.48644e-07 4.29534e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| decided on the global market ||| 0.5 0.22993 8.48644e-07 3.60182e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| decided on the global ||| 1 0.22993 8.48644e-07 1.59373e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| decided on the ||| 0.0175439 0.22993 8.48644e-07 3.48737e-07 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| decided on ||| 0.0109649 0.22993 4.24322e-06 5.68051e-06 2.718 ||| 0-1 ||| 456 1.17835e+06 +en ||| decided to become ||| 0.5 0.0247351 8.48644e-07 5.49289e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| decided to play ||| 0.111111 0.0247351 8.48644e-07 4.96033e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| decided to ||| 0.00232775 0.0247351 4.24322e-06 1.92261e-06 2.718 ||| 0-1 ||| 2148 1.17835e+06 +en ||| decided upon at ||| 0.047619 0.321886 8.48644e-07 6.49012e-10 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| decided upon ||| 0.00454545 0.114601 8.48644e-07 6.04588e-08 2.718 ||| 0-1 ||| 220 1.17835e+06 +en ||| deciding factor in ||| 0.1 0.605812 8.48644e-07 3.4786e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| deciding in ||| 0.2 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| deciding on applications for kinds ||| 1 0.22993 8.48644e-07 6.57912e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| deciding on applications for ||| 1 0.22993 8.48644e-07 1.38508e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| deciding on applications ||| 1 0.22993 8.48644e-07 1.80215e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| deciding on ||| 0.00793651 0.22993 1.69729e-06 1.28725e-06 2.718 ||| 0-1 ||| 252 1.17835e+06 +en ||| decision , in ||| 0.0434783 0.605812 8.48644e-07 8.66244e-06 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| decision at the ||| 0.0454545 0.321886 8.48644e-07 3.86297e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| decision at ||| 0.0384615 0.321886 1.69729e-06 6.29231e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| decision here in ||| 0.5 0.605812 8.48644e-07 1.47296e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| decision in ||| 0.0143369 0.605812 3.39458e-06 7.26382e-05 2.718 ||| 0-1 ||| 279 1.17835e+06 +en ||| decision is taken at ||| 0.333333 0.321886 8.48644e-07 1.79755e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| decision it took in ||| 0.333333 0.605812 8.48644e-07 1.90532e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| decision made at ||| 0.111111 0.321886 8.48644e-07 1.31811e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| decision made by ||| 0.0208333 0.0468744 8.48644e-07 2.80319e-09 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| decision on infringement proceedings ||| 0.5 0.22993 8.48644e-07 3.08234e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| decision on infringement ||| 0.5 0.22993 8.48644e-07 8.49128e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| decision on that ||| 0.0714286 0.22993 8.48644e-07 2.19749e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| decision on ||| 0.00218182 0.22993 2.54593e-06 1.30635e-05 2.718 ||| 0-1 ||| 1375 1.17835e+06 +en ||| decision taken on ||| 0.04 0.22993 8.48644e-07 1.19074e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| decision-making in ||| 0.0123457 0.605812 1.69729e-06 7.48085e-06 2.718 ||| 0-1 ||| 162 1.17835e+06 +en ||| decision-making regarding ||| 0.333333 0.140669 8.48644e-07 3.06666e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| decisions already made by ||| 0.5 0.0468744 8.48644e-07 6.29685e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| decisions armed with ||| 1 0.0535436 8.48644e-07 7.65034e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| decisions at ||| 0.0181818 0.321886 8.48644e-07 3.05215e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| decisions in the ||| 0.0135135 0.605812 8.48644e-07 2.16307e-06 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| decisions in ||| 0.0186916 0.605812 5.09187e-06 3.52339e-05 2.718 ||| 0-1 ||| 321 1.17835e+06 +en ||| decisions on ||| 0.00431499 0.22993 3.39458e-06 6.33659e-06 2.718 ||| 0-1 ||| 927 1.17835e+06 +en ||| decisions reached in ||| 0.2 0.605812 8.48644e-07 3.80526e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| decisions when conducting ||| 1 0.142731 8.48644e-07 5.54169e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| decisions when ||| 0.0909091 0.142731 8.48644e-07 4.54237e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| decisive action taken against it ||| 0.333333 0.0080472 8.48644e-07 2.21209e-18 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| decisive in ||| 0.0206186 0.605812 1.69729e-06 5.63373e-06 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| decisive part to play in ||| 0.333333 0.605812 8.48644e-07 1.53979e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| declaration being made at ||| 1 0.321886 8.48644e-07 4.19702e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| declaration in ||| 0.0166667 0.605812 8.48644e-07 8.12735e-06 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| declaration on ||| 0.00558659 0.22993 8.48644e-07 1.46165e-06 2.718 ||| 0-1 ||| 179 1.17835e+06 +en ||| declaration ||| 0.000569476 0.0012808 1.69729e-06 2.7e-06 2.718 ||| 0-0 ||| 3512 1.17835e+06 +en ||| declared , during ||| 1 0.226251 8.48644e-07 8.82691e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| declared in ||| 0.0212766 0.605812 8.48644e-07 1.18216e-05 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| declared on ||| 0.0526316 0.22993 8.48644e-07 2.12604e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| declared this in ||| 1 0.605812 8.48644e-07 7.63841e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| declaring ||| 0.00302115 0.0035714 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 331 1.17835e+06 +en ||| decline in ||| 0.0030303 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 330 1.17835e+06 +en ||| decline of ||| 0.0116279 0.0116562 8.48644e-07 1.22733e-07 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| declined ||| 0.00689655 0.0111524 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 145 1.17835e+06 +en ||| declining ||| 0.00268097 0.124722 8.48644e-07 3.81e-05 2.718 ||| 0-0 ||| 373 1.17835e+06 +en ||| decrease by ||| 0.142857 0.0468744 8.48644e-07 4.93412e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| decrease for ||| 0.333333 0.0286209 8.48644e-07 6.67302e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| decrease in ||| 0.00505051 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 198 1.17835e+06 +en ||| decree in ||| 0.25 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| decrees ||| 0.00900901 0.0106952 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| dedicated to ||| 0.00265252 0.0247351 8.48644e-07 4.16003e-07 2.718 ||| 0-1 ||| 377 1.17835e+06 +en ||| deducted from ||| 0.0416667 0.0308834 8.48644e-07 1.21763e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| deep ||| 0.00148699 0.003123 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 1345 1.17835e+06 +en ||| deeper in ||| 0.125 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| deeper into ||| 0.0416667 0.525896 8.48644e-07 7.08394e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| deeply about ||| 0.0769231 0.0401564 8.48644e-07 6.70667e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| deeply into ||| 0.333333 0.525896 1.69729e-06 5.18013e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| deeply involved in it ||| 1 0.605812 8.48644e-07 6.64488e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| deeply involved in ||| 0.04 0.605812 8.48644e-07 3.7366e-09 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| defamed by ||| 1 0.0468744 8.48644e-07 3.40284e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| default of ||| 0.166667 0.0116562 8.48644e-07 3.00014e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| defeated in ||| 0.0416667 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| defective in terms of ||| 1 0.0116562 8.48644e-07 4.48535e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| defence missiles on ||| 1 0.22993 8.48644e-07 2.3021e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| defence policy on the one hand and ||| 1 0.22993 8.48644e-07 1.04736e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| defence policy on the one hand ||| 1 0.22993 8.48644e-07 8.36157e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| defence policy on the one ||| 1 0.22993 8.48644e-07 2.10831e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| defence policy on the ||| 1 0.22993 8.48644e-07 5.05834e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| defence policy on ||| 1 0.22993 8.48644e-07 8.23943e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| defend themselves at law to ||| 1 0.321886 8.48644e-07 5.62786e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| defend themselves at law ||| 0.5 0.321886 8.48644e-07 6.33353e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| defend themselves at ||| 1 0.321886 8.48644e-07 3.59247e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| defended in ||| 0.0333333 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| deficiencies in ||| 0.00757576 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| deficits in ||| 0.0138889 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| defined as ||| 0.00591716 0.066968 8.48644e-07 6.02595e-07 2.718 ||| 0-1 ||| 169 1.17835e+06 +en ||| defined at ||| 0.015873 0.321886 8.48644e-07 1.34007e-06 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| defined in very general terms in order ||| 1 0.605812 8.48644e-07 1.17798e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| defined in very general terms in ||| 1 0.605812 8.48644e-07 2.21175e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| defined in very general terms ||| 1 0.605812 8.48644e-07 1.03331e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| defined in very general ||| 1 0.605812 8.48644e-07 9.41429e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| defined in very ||| 1 0.605812 8.48644e-07 5.38267e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| defined in ||| 0.0168421 0.605812 6.78915e-06 1.54697e-05 2.718 ||| 0-1 ||| 475 1.17835e+06 +en ||| definitely be ||| 0.0169492 0.0234185 8.48644e-07 9.4964e-07 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| definitely on the table , ||| 1 0.22993 8.48644e-07 2.13224e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| definitely on the table ||| 1 0.22993 8.48644e-07 1.78797e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| definitely on the ||| 0.5 0.22993 8.48644e-07 2.64102e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| definitely on ||| 1 0.22993 8.48644e-07 4.30191e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| definitely ||| 0.0017192 0.0234185 2.54593e-06 5.24e-05 2.718 ||| 0-0 ||| 1745 1.17835e+06 +en ||| definition goes on to say that ||| 1 0.22993 8.48644e-07 4.48617e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| definition goes on to say ||| 1 0.22993 8.48644e-07 2.66691e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| definition goes on to ||| 1 0.22993 8.48644e-07 2.79024e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| definition goes on ||| 1 0.22993 8.48644e-07 3.1401e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| definition in ||| 0.0277778 0.605812 8.48644e-07 1.26066e-05 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| definitions given ||| 0.333333 0.0546585 8.48644e-07 2.90225e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| definitive ' ||| 0.2 0.0032578 8.48644e-07 1.66469e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| degree , within ||| 1 0.369196 8.48644e-07 1.83117e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| degree , ||| 0.00621118 0.0001187 8.48644e-07 2.7423e-08 2.718 ||| 0-1 ||| 161 1.17835e+06 +en ||| degree in ||| 0.225806 0.605812 5.94051e-06 6.39567e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| degree of ||| 0.00120555 0.0116562 1.69729e-06 1.88872e-06 2.718 ||| 0-1 ||| 1659 1.17835e+06 +en ||| degree with ||| 0.0769231 0.0535436 8.48644e-07 1.61476e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| degrees of ||| 0.0123457 0.0116562 8.48644e-07 5.4548e-08 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| delay in allowing ||| 0.5 0.605812 8.48644e-07 7.28469e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| delay in bringing ||| 0.166667 0.605812 8.48644e-07 1.16064e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| delay in ||| 0.00759013 0.605812 3.39458e-06 1.44537e-05 2.718 ||| 0-1 ||| 527 1.17835e+06 +en ||| delays in reaching ||| 0.333333 0.605812 8.48644e-07 8.4783e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| delays in ||| 0.00249377 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 401 1.17835e+06 +en ||| delegates of ||| 0.111111 0.0116562 8.48644e-07 8.31857e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| delegation in ||| 0.026087 0.605812 2.54593e-06 6.64965e-06 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| delegation on ||| 0.0909091 0.22993 8.48644e-07 1.1959e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| delegation will be properly heard at ||| 1 0.321886 8.48644e-07 5.3288e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| delete in ||| 1 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| deliberately being ||| 0.0909091 0.0043873 8.48644e-07 2.8365e-09 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| deliberately set aside in ||| 1 0.605812 8.48644e-07 2.94895e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| deliberation on ||| 0.25 0.22993 8.48644e-07 9.13532e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| deliberations in ||| 0.0212766 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| delicate hint in ||| 1 0.605812 8.48644e-07 7.94263e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| delicate product in ||| 1 0.605812 8.48644e-07 1.20728e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| delighted at ||| 0.0128205 0.321886 8.48644e-07 7.48037e-07 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| delighting in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| deliver in a sensible manner ||| 1 0.605812 8.48644e-07 2.19161e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| deliver in a sensible ||| 1 0.605812 8.48644e-07 1.1239e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| deliver in a ||| 0.5 0.605812 8.48644e-07 7.59393e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| deliver in ||| 0.04 0.605812 8.48644e-07 1.71321e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| delivered by ||| 0.00869565 0.0468744 8.48644e-07 2.93495e-07 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| delivered during voting time to a ||| 0.333333 0.226251 8.48644e-07 2.50905e-17 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| delivered during voting time to ||| 0.333333 0.226251 8.48644e-07 5.66048e-16 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| delivered during voting time ||| 0.333333 0.226251 8.48644e-07 6.37024e-15 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| delivered during voting ||| 0.333333 0.226251 8.48644e-07 3.88027e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| delivered during ||| 0.333333 0.226251 8.48644e-07 9.97498e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| delivered in ||| 0.0588235 0.605812 2.54593e-06 1.59314e-05 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| delivered into the ||| 1 0.525896 8.48644e-07 4.68872e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| delivered into ||| 0.5 0.525896 8.48644e-07 7.63737e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| delivered to a ||| 0.333333 0.0247351 8.48644e-07 4.29843e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| delivered to ||| 0.0208333 0.0247351 8.48644e-07 9.69736e-07 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| deliveries in ||| 0.5 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| delivering an opinion on ||| 0.25 0.22993 8.48644e-07 8.51483e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| delivering on ||| 0.0212766 0.22993 8.48644e-07 7.80655e-07 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| deluded into ||| 0.333333 0.525896 8.48644e-07 8.85492e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| demand contained within ||| 1 0.369196 8.48644e-07 4.04088e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| demand on ||| 0.0487805 0.22993 1.69729e-06 4.45139e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| demand the same for chocolate ||| 0.333333 0.0286209 8.48644e-07 1.76698e-16 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| demand the same for ||| 0.333333 0.0286209 8.48644e-07 3.04652e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| demanded in ||| 0.0540541 0.605812 1.69729e-06 4.15603e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| demanding ||| 0.00164114 0.0026042 2.54593e-06 3.4e-06 2.718 ||| 0-0 ||| 1828 1.17835e+06 +en ||| demands agreed in connection with cohesion . ||| 1 0.605812 8.48644e-07 6.36121e-23 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| demands agreed in connection with cohesion ||| 1 0.605812 8.48644e-07 2.1001e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| demands agreed in connection with ||| 1 0.605812 8.48644e-07 1.35491e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| demands agreed in connection ||| 1 0.605812 8.48644e-07 2.11886e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| demands agreed in ||| 1 0.605812 8.48644e-07 1.38851e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| demands of ||| 0.00179533 0.0116562 8.48644e-07 5.25024e-07 2.718 ||| 0-1 ||| 557 1.17835e+06 +en ||| demarches on ||| 0.333333 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| demise came at ||| 1 0.321886 8.48644e-07 7.05635e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| democracy and human rights . in ||| 1 0.605812 8.48644e-07 1.25892e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| democracy and the ||| 0.00106838 0.0010182 8.48644e-07 1.6484e-09 2.718 ||| 0-1 ||| 936 1.17835e+06 +en ||| democracy and ||| 0.000196464 0.0010182 8.48644e-07 2.68506e-08 2.718 ||| 0-1 ||| 5090 1.17835e+06 +en ||| democracy in ||| 0.000779423 0.605812 8.48644e-07 1.34378e-05 2.718 ||| 0-1 ||| 1283 1.17835e+06 +en ||| democratic in ||| 0.125 0.605812 1.69729e-06 1.38073e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| demonstrated at ||| 0.1 0.321886 8.48644e-07 1.08005e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| demonstrated by ||| 0.008 0.0468744 2.54593e-06 2.29692e-07 2.718 ||| 0-1 ||| 375 1.17835e+06 +en ||| demonstrated in ||| 0.0222222 0.605812 3.39458e-06 1.24681e-05 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| demonstrated that 30 000 arrivals per year ||| 1 0.0117312 8.48644e-07 5.2557e-30 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| demonstrated that 30 000 arrivals per ||| 1 0.0117312 8.48644e-07 2.10734e-26 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| demonstrating ||| 0.00132275 0.0011521 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 756 1.17835e+06 +en ||| demonstration have now ||| 1 0.0123946 8.48644e-07 7.36341e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| demonstration in ||| 0.02 0.605812 8.48644e-07 4.80252e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| denied in the ||| 0.333333 0.605812 8.48644e-07 4.28079e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| denied in ||| 0.142857 0.605812 8.48644e-07 6.97289e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| denounce ||| 0.00242131 0.0021142 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 413 1.17835e+06 +en ||| denounced by ||| 0.0454545 0.0468744 8.48644e-07 2.12678e-08 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| denounced in unequivocal ||| 1 0.605812 8.48644e-07 4.96415e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| denounced in ||| 0.0833333 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| denounced on ||| 1 0.22993 8.48644e-07 2.07621e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| depart for ||| 0.333333 0.0286209 8.48644e-07 2.07094e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| department in ||| 0.25 0.605812 2.54593e-06 3.00158e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| departments transferred to ||| 0.5 0.0247351 8.48644e-07 3.94641e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| departure in ||| 0.0833333 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| departure of the ||| 0.047619 0.0116562 8.48644e-07 9.37664e-09 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| departure of this ||| 0.25 0.0116562 8.48644e-07 9.86878e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| departure of ||| 0.0344828 0.0116562 1.69729e-06 1.52734e-07 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| depend for ||| 0.0769231 0.0286209 8.48644e-07 2.11696e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| depend on ||| 0.00227273 0.22993 1.69729e-06 1.52809e-06 2.718 ||| 0-1 ||| 880 1.17835e+06 +en ||| depended heavily on ||| 1 0.22993 8.48644e-07 1.27895e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| dependence on third countries ||| 0.1 0.22993 8.48644e-07 5.90307e-15 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| dependence on third ||| 0.0769231 0.22993 8.48644e-07 1.55467e-11 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| dependence on ||| 0.00414079 0.22993 1.69729e-06 3.32194e-07 2.718 ||| 0-1 ||| 483 1.17835e+06 +en ||| dependent on the ||| 0.0041841 0.22993 8.48644e-07 1.39189e-07 2.718 ||| 0-1 ||| 239 1.17835e+06 +en ||| dependent on ||| 0.00788955 0.22993 6.78915e-06 2.26722e-06 2.718 ||| 0-1 ||| 1014 1.17835e+06 +en ||| depending on ||| 0.00510856 0.22993 3.39458e-06 6.89302e-07 2.718 ||| 0-1 ||| 783 1.17835e+06 +en ||| depending ||| 0.00291545 0.166667 8.48644e-07 0.0001048 2.718 ||| 0-0 ||| 343 1.17835e+06 +en ||| depends on ||| 0.0041632 0.22993 4.24322e-06 1.25403e-06 2.718 ||| 0-1 ||| 1201 1.17835e+06 +en ||| depicted here ||| 0.125 0.0855319 8.48644e-07 1.50005e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| depicted on ||| 0.0625 0.22993 8.48644e-07 4.15242e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| depleted in ||| 1 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| deployed as ||| 0.111111 0.066968 8.48644e-07 2.39239e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| deployed here ||| 0.25 0.0855319 8.48644e-07 3.99013e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| deployed in ||| 0.0886076 0.605812 5.94051e-06 6.14169e-06 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| deployed on ||| 0.0833333 0.22993 8.48644e-07 1.10454e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| deployed throughout Europe ||| 1 0.309047 8.48644e-07 1.95218e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| deployed throughout ||| 0.25 0.309047 8.48644e-07 3.85806e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| depopulation - is dealt with in three ||| 0.5 0.329678 8.48644e-07 2.95284e-21 2.718 ||| 0-4 0-5 ||| 2 1.17835e+06 +en ||| depopulation - is dealt with in ||| 0.5 0.329678 8.48644e-07 4.66483e-17 2.718 ||| 0-4 0-5 ||| 2 1.17835e+06 +en ||| deposits in ||| 0.0769231 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| deprive working people ||| 0.5 0.0029456 8.48644e-07 9.54665e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| deprive working ||| 0.5 0.0029456 8.48644e-07 1.0846e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| depth with ||| 0.0588235 0.0535436 8.48644e-07 1.67888e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| deputising for ||| 0.0185185 0.0286209 8.48644e-07 2.07094e-08 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| derive from ||| 0.00909091 0.0308834 8.48644e-07 1.21763e-08 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| derived from ||| 0.00578035 0.0308834 1.69729e-06 3.42459e-08 2.718 ||| 0-1 ||| 346 1.17835e+06 +en ||| derived in ||| 0.5 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| derived must appear on ||| 1 0.22993 8.48644e-07 1.00968e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| deriving from ||| 0.00813008 0.0308834 8.48644e-07 9.51275e-09 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| des Europäischen Parlaments ' ||| 1 0.0096154 8.48644e-07 3.84709e-22 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| des Europäischen Parlaments ||| 1 0.0096154 8.48644e-07 1.12e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| des Europäischen ||| 1 0.0096154 8.48644e-07 2.8e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| des ||| 0.0103093 0.0096154 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 97 1.17835e+06 +en ||| descend into ||| 0.0416667 0.525896 8.48644e-07 3.09922e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| descended on ||| 0.2 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| describe it in ||| 0.333333 0.605812 8.48644e-07 2.01193e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| described as push ||| 0.5 0.066968 8.48644e-07 2.22226e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| described as ||| 0.0124481 0.066968 5.09187e-06 8.0226e-07 2.718 ||| 0-1 ||| 482 1.17835e+06 +en ||| described in ||| 0.0283019 0.605812 7.6378e-06 2.05954e-05 2.718 ||| 0-1 ||| 318 1.17835e+06 +en ||| describing in ||| 0.2 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| description used by ||| 1 0.0468744 8.48644e-07 4.59843e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| desert ' in ||| 1 0.605812 8.48644e-07 2.85511e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| deserves praise in ||| 1 0.605812 8.48644e-07 1.2542e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| designation in ||| 0.25 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| designed as ||| 0.037037 0.066968 8.48644e-07 1.40485e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| designed in such a way that they ||| 1 0.605812 8.48644e-07 3.91443e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| designed in such a way that ||| 0.1 0.605812 8.48644e-07 1.19927e-13 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| designed in such a way ||| 0.0555556 0.605812 8.48644e-07 7.12937e-12 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| designed in such a ||| 0.111111 0.605812 8.48644e-07 3.30737e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| designed in such ||| 0.0714286 0.605812 8.48644e-07 7.46151e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| designed in the ||| 0.25 0.605812 8.48644e-07 2.2141e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| designed in ||| 0.0454545 0.605812 1.69729e-06 3.60651e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| designed largely with ||| 1 0.0535436 8.48644e-07 2.97753e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| designed on the assumption ||| 1 0.22993 8.48644e-07 4.02174e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| designed on the ||| 0.333333 0.22993 8.48644e-07 3.98192e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| designed on ||| 0.142857 0.22993 8.48644e-07 6.48608e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| designed to do ||| 0.142857 0.0247351 8.48644e-07 7.54137e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| designed to give ||| 0.0217391 0.0247351 8.48644e-07 1.33033e-09 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| designed to ||| 0.00181736 0.0247351 3.39458e-06 2.19526e-06 2.718 ||| 0-1 ||| 2201 1.17835e+06 +en ||| desire , right across ||| 1 0.274879 8.48644e-07 7.39397e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| desire for ||| 0.00337268 0.0286209 1.69729e-06 5.38443e-07 2.718 ||| 0-1 ||| 593 1.17835e+06 +en ||| desire to ||| 0.00196464 0.0247351 2.54593e-06 1.31547e-06 2.718 ||| 0-1 ||| 1527 1.17835e+06 +en ||| desired ||| 0.001321 0.0009328 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 757 1.17835e+06 +en ||| desist from ||| 0.0285714 0.0308834 8.48644e-07 4.18561e-09 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| despair in ||| 0.111111 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| despair under the ||| 1 0.205566 8.48644e-07 4.86005e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| despair under ||| 1 0.205566 8.48644e-07 7.91644e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| desperately to ||| 0.1 0.0247351 8.48644e-07 3.09191e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| despite its ||| 0.0035461 0.0012296 8.48644e-07 1.83786e-08 2.718 ||| 0-0 ||| 282 1.17835e+06 +en ||| despite ||| 0.000215115 0.0012296 2.54593e-06 1.29e-05 2.718 ||| 0-0 ||| 13946 1.17835e+06 +en ||| despotic ||| 0.0285714 0.0263158 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| destroyed by fire ||| 0.166667 0.0468744 8.48644e-07 1.76097e-12 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| destroyed by ||| 0.00793651 0.0468744 8.48644e-07 9.78316e-08 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| destroyed in ||| 0.0285714 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| destruction with ||| 0.333333 0.0535436 8.48644e-07 1.21253e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| detail in committee ||| 0.5 0.605812 8.48644e-07 1.82641e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| detail in ||| 0.0454545 0.605812 5.09187e-06 2.3597e-05 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| detail on ||| 0.0211268 0.22993 2.54593e-06 4.24377e-06 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| detailed choices needed to be made in ||| 0.5 0.605812 8.48644e-07 3.78458e-20 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| detailed information on ||| 0.0222222 0.22993 8.48644e-07 3.46362e-10 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| detailing these in ||| 1 0.605812 8.48644e-07 6.70478e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| details concerning these various funds . ||| 1 0.0888235 8.48644e-07 1.24233e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| details concerning these various funds ||| 1 0.0888235 8.48644e-07 4.10147e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| details concerning these various ||| 1 0.0888235 8.48644e-07 5.37545e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| details concerning these ||| 1 0.0888235 8.48644e-07 3.48151e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| details concerning ||| 0.0454545 0.0888235 8.48644e-07 3.35696e-08 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| details in ||| 0.0285714 0.605812 8.48644e-07 1.27913e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| details of ||| 0.00156986 0.0116562 8.48644e-07 3.77745e-07 2.718 ||| 0-1 ||| 637 1.17835e+06 +en ||| detained in ||| 0.0135135 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| detected here ||| 1 0.0855319 8.48644e-07 1.41005e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| detention in ||| 0.030303 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| deterioration of ||| 0.00478469 0.0116562 8.48644e-07 2.45466e-08 2.718 ||| 0-1 ||| 209 1.17835e+06 +en ||| determination by ||| 0.0714286 0.0468744 8.48644e-07 1.01234e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| determination to ||| 0.00180832 0.0247351 8.48644e-07 3.34489e-07 2.718 ||| 0-1 ||| 553 1.17835e+06 +en ||| determine when ||| 0.0833333 0.142731 8.48644e-07 1.43475e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| determined by ||| 0.00958466 0.0468744 2.54593e-06 2.90943e-07 2.718 ||| 0-1 ||| 313 1.17835e+06 +en ||| determined in ||| 0.0128205 0.605812 8.48644e-07 1.57929e-05 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| determined more at ||| 0.5 0.321886 8.48644e-07 3.12426e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| determined on ||| 0.05 0.22993 8.48644e-07 2.84026e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| determined to ||| 0.00162075 0.0247351 8.48644e-07 9.61304e-07 2.718 ||| 0-1 ||| 617 1.17835e+06 +en ||| determining in ||| 0.333333 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| detriment of the ||| 0.00334448 0.0449658 8.48644e-07 1.04464e-07 2.718 ||| 0-0 ||| 299 1.17835e+06 +en ||| detriment of ||| 0.00393701 0.0449658 2.54593e-06 1.70159e-06 2.718 ||| 0-0 ||| 762 1.17835e+06 +en ||| detriment ||| 0.00514403 0.0449658 4.24322e-06 3.13e-05 2.718 ||| 0-0 ||| 972 1.17835e+06 +en ||| devastation in ||| 0.142857 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| develop as a parliament - in ||| 1 0.605812 8.48644e-07 1.16207e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| develop for ||| 0.111111 0.0286209 8.48644e-07 7.04118e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| develop into ||| 0.00952381 0.525896 8.48644e-07 1.3548e-06 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| develop on ||| 0.047619 0.22993 8.48644e-07 5.08256e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| developed and are now in place ||| 1 0.605812 8.48644e-07 1.86916e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| developed and are now in ||| 1 0.605812 8.48644e-07 1.24197e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| developed and come to ||| 0.5 0.0247351 8.48644e-07 2.05429e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| developed at ||| 0.030303 0.321886 8.48644e-07 2.74814e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| developed during such ||| 1 0.226251 8.48644e-07 4.1095e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| developed during ||| 0.2 0.226251 8.48644e-07 1.98632e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| developed further in ||| 0.0666667 0.605812 8.48644e-07 1.53324e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| developed in Latvia . ||| 0.5 0.605812 8.48644e-07 4.80465e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| developed in Latvia ||| 0.5 0.605812 8.48644e-07 1.58622e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| developed in ||| 0.0207612 0.605812 5.09187e-06 3.17244e-05 2.718 ||| 0-1 ||| 289 1.17835e+06 +en ||| developed into ||| 0.0121951 0.525896 8.48644e-07 1.52083e-06 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| developed on ||| 0.0263158 0.22993 8.48644e-07 5.70543e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| developed over time ||| 0.333333 0.157937 8.48644e-07 4.51951e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| developed over ||| 0.0444444 0.157937 1.69729e-06 2.75295e-07 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| developed where ||| 0.5 0.247783 8.48644e-07 5.8509e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| developed ||| 0.000182083 0.0003418 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 5492 1.17835e+06 +en ||| developing , ||| 0.0126582 0.279045 8.48644e-07 0.000550015 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| developing and implementing power generation projects based ||| 0.5 0.279045 8.48644e-07 5.05647e-26 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| developing and implementing power generation projects ||| 0.5 0.279045 8.48644e-07 2.15536e-22 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| developing and implementing power generation ||| 0.5 0.279045 8.48644e-07 4.37192e-18 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| developing and implementing power ||| 0.5 0.279045 8.48644e-07 2.48405e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| developing and implementing ||| 0.0212766 0.279045 8.48644e-07 1.6638e-09 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| developing and ||| 0.00746269 0.279045 1.69729e-06 5.77707e-05 2.718 ||| 0-0 ||| 268 1.17835e+06 +en ||| developing countries . in ||| 1 0.605812 8.48644e-07 2.88387e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| developing countries and autonomous preferences in ||| 1 0.605812 8.48644e-07 1.07332e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| developing countries ||| 0.000162048 0.279045 8.48644e-07 1.75121e-06 2.718 ||| 0-0 ||| 6171 1.17835e+06 +en ||| developing in ||| 0.0515464 0.605812 4.24322e-06 2.50747e-05 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| developing into ||| 0.0645161 0.525896 1.69729e-06 1.20206e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| developing on ||| 0.166667 0.22993 2.54593e-06 4.50953e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| developing too slowly ||| 0.5 0.279045 8.48644e-07 3.6407e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| developing too ||| 0.5 0.279045 8.48644e-07 6.27707e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| developing ||| 0.00357182 0.279045 2.80053e-05 0.0046121 2.718 ||| 0-0 ||| 9239 1.17835e+06 +en ||| development cooperation funded by ||| 0.111111 0.0468744 8.48644e-07 1.15998e-15 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| development in ||| 0.00788177 0.605812 6.78915e-06 7.5963e-05 2.718 ||| 0-1 ||| 1015 1.17835e+06 +en ||| development of ||| 0.000115567 0.0116562 8.48644e-07 2.24329e-06 2.718 ||| 0-1 ||| 8653 1.17835e+06 +en ||| development on ||| 0.0166667 0.22993 8.48644e-07 1.36615e-05 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| developments around ||| 0.333333 0.159384 8.48644e-07 3.45076e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| developments in the ||| 0.00207039 0.605812 8.48644e-07 8.47652e-07 2.718 ||| 0-1 ||| 483 1.17835e+06 +en ||| developments in ||| 0.00465116 0.605812 5.09187e-06 1.38073e-05 2.718 ||| 0-1 ||| 1290 1.17835e+06 +en ||| developments take place at ||| 1 0.321886 8.48644e-07 2.89811e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| device in ||| 0.25 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| devices in ||| 0.25 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| devices on ||| 0.25 0.22993 8.48644e-07 6.56082e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| devil in ||| 0.25 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| devising of ||| 0.0666667 0.0116562 8.48644e-07 3.40925e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| devote to ||| 0.0384615 0.0247351 8.48644e-07 2.72651e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| devoted to ||| 0.00581395 0.0247351 2.54593e-06 5.7622e-07 2.718 ||| 0-1 ||| 516 1.17835e+06 +en ||| did , in ||| 0.4 0.605812 1.69729e-06 2.50126e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| did , to ||| 0.333333 0.0247351 8.48644e-07 1.5225e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| did amid ||| 1 0.329114 8.48644e-07 1.60787e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| did at ||| 0.1875 0.321886 7.6378e-06 1.81689e-05 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| did come under ||| 1 0.205566 8.48644e-07 2.18127e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| did even in ||| 1 0.605812 8.48644e-07 1.27627e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| did for the ||| 0.0666667 0.0286209 8.48644e-07 3.20813e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| did for us in ||| 1 0.605812 8.48644e-07 4.64612e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| did for ||| 0.0204082 0.0286209 8.48644e-07 5.22566e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| did in the ||| 0.0133333 0.605812 8.48644e-07 1.28764e-05 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| did in ||| 0.15 0.605812 3.05512e-05 0.000209741 2.718 ||| 0-1 ||| 240 1.17835e+06 +en ||| did last ||| 0.04 0.0048275 8.48644e-07 5.2233e-08 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| did manage to ||| 0.111111 0.0247351 8.48644e-07 5.69399e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| did most recently at ||| 1 0.321886 8.48644e-07 5.33977e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| did not at ||| 0.0833333 0.321886 8.48644e-07 6.20305e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| did not belong with ||| 1 0.0535436 8.48644e-07 5.20683e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| did not in ||| 0.25 0.605812 8.48644e-07 7.16077e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| did not ||| 0.000142288 0.0008293 8.48644e-07 8.25281e-08 2.718 ||| 0-1 ||| 7028 1.17835e+06 +en ||| did notice in ||| 1 0.605812 8.48644e-07 8.07503e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| did open new prospects on all aspects ||| 0.5 0.22993 8.48644e-07 1.52554e-23 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| did open new prospects on all ||| 0.5 0.22993 8.48644e-07 2.16389e-19 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| did open new prospects on ||| 0.5 0.22993 8.48644e-07 4.57928e-17 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| did say at ||| 0.5 0.321886 8.48644e-07 1.73658e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| did so in ||| 0.0333333 0.605812 8.48644e-07 4.76049e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| did so under ||| 1 0.205566 8.48644e-07 5.82931e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| did so ||| 0.00974026 0.0087276 2.54593e-06 3.09356e-07 2.718 ||| 0-1 ||| 308 1.17835e+06 +en ||| did those of ||| 0.5 0.0116562 8.48644e-07 4.48502e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| did under ||| 0.333333 0.205566 8.48644e-07 2.56832e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| did when ||| 0.0555556 0.142731 8.48644e-07 2.70399e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| did with ||| 0.0350877 0.0535436 1.69729e-06 5.29547e-06 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| die in ||| 0.0410959 0.605812 2.54593e-06 5.31048e-06 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| die on ||| 0.0625 0.22993 8.48644e-07 9.55057e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| died down ||| 0.125 0.0183476 8.48644e-07 1.9845e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| died in ||| 0.0154639 0.605812 2.54593e-06 4.15603e-06 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| died of ||| 0.0181818 0.0116562 8.48644e-07 1.22733e-07 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| differ on ||| 0.0344828 0.22993 8.48644e-07 4.48461e-07 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| differ slightly in ||| 0.166667 0.605812 8.48644e-07 4.66307e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| difference between events there ||| 1 0.0117359 8.48644e-07 5.65621e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| difference does it make ||| 0.25 0.0080472 8.48644e-07 8.84097e-14 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| difference does it ||| 0.5 0.0080472 8.48644e-07 5.08745e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| difference in terms of ||| 0.0909091 0.605812 8.48644e-07 7.24682e-10 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| difference in terms ||| 0.125 0.605812 8.48644e-07 1.33302e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| difference in ||| 0.0104895 0.605812 2.54593e-06 1.21448e-05 2.718 ||| 0-1 ||| 286 1.17835e+06 +en ||| difference of opinion ||| 0.00917431 0.0116562 8.48644e-07 8.80135e-11 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| difference of ||| 0.0122699 0.0116562 1.69729e-06 3.58653e-07 2.718 ||| 0-1 ||| 163 1.17835e+06 +en ||| difference to ||| 0.0131579 0.0247351 8.48644e-07 7.39248e-07 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| differences in questions ||| 0.25 0.605812 8.48644e-07 9.56302e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| differences in ||| 0.00490196 0.605812 3.39458e-06 1.08057e-05 2.718 ||| 0-1 ||| 816 1.17835e+06 +en ||| differences inside ||| 0.5 0.188717 8.48644e-07 4.47408e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| differences with ||| 0.0285714 0.0535436 8.48644e-07 2.72818e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| different , and in some ||| 0.5 0.605812 8.48644e-07 1.65457e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| different , and in ||| 0.25 0.605812 8.48644e-07 1.51893e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| different APIs in ||| 1 0.605812 8.48644e-07 4.06737e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| different at ||| 0.333333 0.321886 8.48644e-07 8.80844e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| different commission rates when ||| 1 0.142731 8.48644e-07 1.79805e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| different from those ||| 0.0104167 0.0308834 8.48644e-07 6.06711e-10 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| different from ||| 0.00125 0.0308834 8.48644e-07 8.37883e-07 2.718 ||| 0-1 ||| 800 1.17835e+06 +en ||| different implications in an ||| 0.5 0.605812 8.48644e-07 9.44588e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| different implications in ||| 0.5 0.605812 8.48644e-07 2.1252e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| different in ||| 0.0181818 0.605812 2.54593e-06 0.000101684 2.718 ||| 0-1 ||| 165 1.17835e+06 +en ||| different sectors within ||| 1 0.369196 8.48644e-07 1.25727e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| different ways in ||| 0.05 0.605812 1.69729e-06 9.80236e-09 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| different ||| 4.8752e-05 9.66e-05 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 20512 1.17835e+06 +en ||| differing views in ||| 1 0.605812 8.48644e-07 2.02731e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| difficult , even with the help of ||| 0.25 0.0535436 8.48644e-07 6.68787e-17 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| difficult , even with the help ||| 0.25 0.0535436 8.48644e-07 1.2302e-15 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| difficult , even with the ||| 0.25 0.0535436 8.48644e-07 6.45098e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| difficult , even with ||| 0.166667 0.0535436 8.48644e-07 1.05079e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| difficult for ||| 0.00297619 0.0286209 1.69729e-06 1.42895e-06 2.718 ||| 0-1 ||| 672 1.17835e+06 +en ||| difficult in ||| 0.0178571 0.605812 1.69729e-06 5.73532e-05 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| difficult on ||| 0.142857 0.22993 8.48644e-07 1.03146e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| difficult to ||| 0.00032041 0.0247351 8.48644e-07 3.49105e-06 2.718 ||| 0-1 ||| 3121 1.17835e+06 +en ||| difficulties arising from ||| 0.0526316 0.0308834 8.48644e-07 2.26993e-12 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| difficulties in ||| 0.00163399 0.605812 8.48644e-07 9.46651e-06 2.718 ||| 0-1 ||| 612 1.17835e+06 +en ||| difficulties should be automatic when a ||| 1 0.142731 8.48644e-07 4.77849e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| difficulties should be automatic when ||| 1 0.142731 8.48644e-07 1.07804e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| difficulty in Amendment No 21 in relation ||| 1 0.605812 8.48644e-07 6.64026e-25 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| difficulty in Amendment No 21 in ||| 1 0.605812 8.48644e-07 2.72925e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| difficulty in identifying ||| 0.2 0.605812 8.48644e-07 2.65986e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| difficulty in making any ||| 0.333333 0.605812 8.48644e-07 4.83549e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| difficulty in making ||| 0.2 0.605812 8.48644e-07 3.19765e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| difficulty in ||| 0.00952381 0.605812 3.39458e-06 8.31206e-06 2.718 ||| 0-1 ||| 420 1.17835e+06 +en ||| difficulty involved in ||| 0.333333 0.605812 8.48644e-07 2.87431e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| digested in advance in the ||| 1 0.605812 8.48644e-07 8.56814e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| digested in advance in ||| 1 0.605812 8.48644e-07 1.39565e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| digital ||| 0.000665779 0.0006658 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1502 1.17835e+06 +en ||| dignity in order to ||| 1 0.605812 8.48644e-07 1.5735e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| dignity in order ||| 1 0.605812 8.48644e-07 1.7708e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| dignity in ||| 0.05 0.605812 2.54593e-06 3.32482e-06 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| dignity with ||| 0.0625 0.0535436 8.48644e-07 8.39441e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| diluted into ||| 1 0.525896 8.48644e-07 1.54961e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| dimension , with ||| 1 0.0535436 8.48644e-07 4.4075e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| dimension in ||| 0.0526316 0.605812 1.69729e-06 1.46385e-05 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| dimension into ||| 0.25 0.525896 1.69729e-06 7.01752e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| dimension of ||| 0.00641026 0.0116562 8.48644e-07 4.32293e-07 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| dimension over ||| 1 0.157937 8.48644e-07 1.27028e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| directed against ||| 0.00552486 0.153982 8.48644e-07 1.81506e-07 2.718 ||| 0-1 ||| 181 1.17835e+06 +en ||| directed at ||| 0.0115942 0.321886 3.39458e-06 1.25206e-06 2.718 ||| 0-1 ||| 345 1.17835e+06 +en ||| directed in ||| 0.0714286 0.605812 8.48644e-07 1.44537e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| directed towards ||| 0.00546448 0.0616136 8.48644e-07 3.11811e-08 2.718 ||| 0-1 ||| 183 1.17835e+06 +en ||| direction , the ||| 0.0769231 0.0011669 8.48644e-07 3.09857e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| direction at ||| 0.2 0.321886 8.48644e-07 3.62818e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| direction in ||| 0.00421941 0.605812 8.48644e-07 4.18835e-05 2.718 ||| 0-1 ||| 237 1.17835e+06 +en ||| direction into ||| 0.25 0.525896 8.48644e-07 2.00785e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| direction of ||| 0.00154321 0.0116562 8.48644e-07 1.23688e-06 2.718 ||| 0-1 ||| 648 1.17835e+06 +en ||| direction on ||| 0.025641 0.22993 8.48644e-07 7.53249e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| directive enters ||| 0.0714286 0.0933063 8.48644e-07 3.49308e-09 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| directive in ||| 0.0097561 0.605812 3.39458e-06 5.15348e-05 2.718 ||| 0-1 ||| 410 1.17835e+06 +en ||| directive into ||| 0.0126582 0.525896 8.48644e-07 2.47052e-06 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| directive on ||| 0.000350018 0.22993 8.48644e-07 9.2682e-06 2.718 ||| 0-1 ||| 2857 1.17835e+06 +en ||| directive with ||| 0.015873 0.0535436 8.48644e-07 1.30113e-06 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| directives in ||| 0.03125 0.605812 2.54593e-06 6.64965e-06 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| directives prepared in ||| 0.166667 0.605812 8.48644e-07 5.76524e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| directly , ' taken as ||| 1 0.066968 8.48644e-07 2.53874e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| directly in ||| 0.0163934 0.605812 1.69729e-06 1.74553e-05 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| directly into ||| 0.0243902 0.525896 8.48644e-07 8.3679e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| directly on ||| 0.0125 0.22993 8.48644e-07 3.13923e-06 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| disabilities into ||| 0.5 0.525896 8.48644e-07 5.53433e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| disadvantages ... in the ||| 1 0.605812 8.48644e-07 2.90215e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| disadvantages ... in ||| 1 0.605812 8.48644e-07 4.72725e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| disagree with ||| 0.00367197 0.102928 2.54593e-06 2.48335e-06 2.718 ||| 0-0 0-1 ||| 817 1.17835e+06 +en ||| disagree ||| 0.00242915 0.152311 2.54593e-06 0.000213 2.718 ||| 0-0 ||| 1235 1.17835e+06 +en ||| disappear in ||| 0.111111 0.605812 1.69729e-06 3.64807e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| disappear on ||| 1 0.22993 8.48644e-07 6.56082e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| disappear within ||| 0.25 0.369196 8.48644e-07 8.75849e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| disappeared during ||| 1 0.226251 8.48644e-07 1.35891e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| disappeared in ||| 0.0714286 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| disappointed when ||| 0.0555556 0.142731 8.48644e-07 2.97665e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| disaster for ||| 0.00900901 0.0286209 8.48644e-07 2.89931e-07 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| disaster in ||| 0.0131579 0.605812 1.69729e-06 1.16369e-05 2.718 ||| 0-1 ||| 152 1.17835e+06 +en ||| disaster on ||| 0.0714286 0.22993 8.48644e-07 2.09282e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| discharge in ||| 0.00595238 0.605812 8.48644e-07 1.13136e-05 2.718 ||| 0-1 ||| 168 1.17835e+06 +en ||| discharge more efficiently by equipping ||| 1 0.0468744 8.48644e-07 2.82731e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| discharge more efficiently by ||| 1 0.0468744 8.48644e-07 2.57028e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| discharge of ||| 0.016129 0.0116562 1.69729e-06 3.34106e-07 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| discharged in ||| 0.25 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| discharged into ||| 0.0526316 0.525896 8.48644e-07 7.08394e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| discretion in ||| 0.0454545 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| discrimination in ||| 0.00292398 0.605812 8.48644e-07 5.81844e-06 2.718 ||| 0-1 ||| 342 1.17835e+06 +en ||| discussed at ||| 0.0126984 0.321886 3.39458e-06 2.10011e-06 2.718 ||| 0-1 ||| 315 1.17835e+06 +en ||| discussed by ||| 0.00609756 0.0468744 8.48644e-07 4.46623e-07 2.718 ||| 0-1 ||| 164 1.17835e+06 +en ||| discussed in an adjoining room ||| 1 0.605812 8.48644e-07 2.82103e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| discussed in an adjoining ||| 1 0.605812 8.48644e-07 7.54286e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| discussed in an ||| 0.25 0.605812 8.48644e-07 1.07755e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| discussed in blanket ||| 0.166667 0.605812 8.48644e-07 1.69705e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| discussed in ||| 0.0174326 0.605812 9.33509e-06 2.42435e-05 2.718 ||| 0-1 ||| 631 1.17835e+06 +en ||| discussed on ||| 0.0172414 0.22993 8.48644e-07 4.36004e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| discussing at all ||| 1 0.321886 8.48644e-07 6.6726e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| discussing at ||| 0.0769231 0.321886 8.48644e-07 1.41207e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| discussing in ||| 0.025641 0.605812 8.48644e-07 1.63009e-05 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| discussing on ||| 0.166667 0.22993 8.48644e-07 2.93161e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| discussing ||| 0.000232829 0.0001802 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 4295 1.17835e+06 +en ||| discussion at ||| 0.0344828 0.321886 3.39458e-06 3.45617e-06 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| discussion here in ||| 0.0416667 0.605812 8.48644e-07 8.09049e-08 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| discussion in ||| 0.0150862 0.605812 5.94051e-06 3.98979e-05 2.718 ||| 0-1 ||| 464 1.17835e+06 +en ||| discussion now ||| 0.142857 0.0123946 8.48644e-07 5.11488e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| discussion of ||| 0.00414365 0.0116562 2.54593e-06 1.17824e-06 2.718 ||| 0-1 ||| 724 1.17835e+06 +en ||| discussion on ||| 0.00447427 0.22993 3.39458e-06 7.17538e-06 2.718 ||| 0-1 ||| 894 1.17835e+06 +en ||| discussion served as ||| 1 0.066968 8.48644e-07 3.52793e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| discussion where we start ||| 0.5 0.247783 8.48644e-07 1.16029e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| discussion where we ||| 0.5 0.247783 8.48644e-07 8.35341e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| discussion where ||| 0.0769231 0.247783 8.48644e-07 7.35834e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| discussions are taking place at ||| 1 0.321886 8.48644e-07 1.6072e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| discussions are under way at ||| 0.5 0.321886 8.48644e-07 1.94341e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| discussions at ||| 0.00943396 0.321886 8.48644e-07 1.65608e-06 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| discussions have now been completed concerning ||| 1 0.0888235 8.48644e-07 1.26299e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| discussions in ||| 0.00726392 0.605812 2.54593e-06 1.91177e-05 2.718 ||| 0-1 ||| 413 1.17835e+06 +en ||| discussions on ||| 0.00255102 0.22993 1.69729e-06 3.4382e-06 2.718 ||| 0-1 ||| 784 1.17835e+06 +en ||| disease in ||| 0.0337079 0.605812 2.54593e-06 1.36225e-05 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| disease of ||| 0.0434783 0.0116562 8.48644e-07 4.02291e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| disguised to a ||| 1 0.0247351 8.48644e-07 1.37052e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| disguised to ||| 1 0.0247351 8.48644e-07 3.09191e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| dismissal from ||| 0.2 0.0308834 8.48644e-07 6.84918e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| dismissed at ||| 0.2 0.321886 8.48644e-07 2.44012e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| dismissed in ||| 0.166667 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| dispensing with ||| 0.04 0.0535436 8.48644e-07 2.56496e-08 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| dispersion in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| displaced persons on ||| 1 0.22993 8.48644e-07 3.25051e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| display at ||| 1 0.321886 1.69729e-06 4.0402e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| display them in ||| 1 0.605812 8.48644e-07 1.25107e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| displayed in ||| 0.111111 0.605812 5.09187e-06 8.12735e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| displayed on ||| 0.269231 0.22993 5.94051e-06 1.46165e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| displaying at ||| 0.25 0.321886 8.48644e-07 1.60008e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| displaying with ||| 0.5 0.0535436 8.48644e-07 4.66356e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| displays to ||| 1 0.0247351 8.48644e-07 7.02708e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| disposal at ||| 0.2 0.321886 8.48644e-07 3.36817e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| disposal in ||| 0.0851064 0.605812 3.39458e-06 3.8882e-05 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| disproportionate in ||| 0.166667 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| dispute later in ||| 1 0.605812 8.48644e-07 6.71153e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| disputed by nobody here ||| 1 0.0468744 8.48644e-07 4.74739e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| disputed by nobody ||| 1 0.0468744 8.48644e-07 2.34115e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| disputed by ||| 0.0769231 0.0468744 8.48644e-07 2.72227e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| disputed ||| 0.00460829 0.0633803 8.48644e-07 1.22e-05 2.718 ||| 0-0 ||| 217 1.17835e+06 +en ||| disqualification when ||| 0.5 0.142731 8.48644e-07 2.38132e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| disruption that ||| 0.125 0.0017499 8.48644e-07 3.03108e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| disseminated and converted in ||| 0.5 0.605812 8.48644e-07 5.47188e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| dissolved in ||| 0.5 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| distance on ||| 0.5 0.22993 8.48644e-07 9.55057e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| distinction between these terms is ||| 1 0.0014765 8.48644e-07 9.89072e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| distinction between these terms ||| 1 0.0014765 8.48644e-07 3.15583e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| distinction between these ||| 0.25 0.0014765 8.48644e-07 2.87521e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| distorting effect on ||| 0.2 0.22993 8.48644e-07 3.87869e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| distortion of ||| 0.00246305 0.0116562 8.48644e-07 3.00014e-08 2.718 ||| 0-1 ||| 406 1.17835e+06 +en ||| distortions in ||| 0.00990099 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| distributed by ||| 0.016129 0.0468744 8.48644e-07 1.19099e-07 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| distributed in ||| 0.0204082 0.605812 8.48644e-07 6.46494e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| distribution department in ||| 1 0.605812 8.48644e-07 6.15323e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| disturbing in ||| 0.5 0.605812 1.69729e-06 2.49362e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| disturbing indictment on ||| 0.5 0.22993 8.48644e-07 8.0723e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| diversity , a factor which in turn ||| 1 0.605812 8.48644e-07 2.19157e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| diversity , a factor which in ||| 1 0.605812 8.48644e-07 9.77505e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| diversity and ||| 0.00254453 0.0010182 8.48644e-07 8.95019e-09 2.718 ||| 0-1 ||| 393 1.17835e+06 +en ||| diversity in ||| 0.017094 0.605812 1.69729e-06 4.47928e-06 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| diversity of agricultural output at EU level ||| 1 0.321886 8.48644e-07 1.38923e-24 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| diversity of agricultural output at EU ||| 1 0.321886 8.48644e-07 1.62407e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| diversity of agricultural output at ||| 1 0.321886 8.48644e-07 3.28227e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| diversity of ||| 0.00154083 0.0116562 8.48644e-07 1.32279e-07 2.718 ||| 0-1 ||| 649 1.17835e+06 +en ||| diverted by the ||| 0.333333 0.0468744 8.48644e-07 2.61133e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| diverted by ||| 0.2 0.0468744 8.48644e-07 4.25355e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| diverted to ||| 0.0526316 0.0247351 8.48644e-07 1.40542e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| divide it into ||| 0.5 0.525896 8.48644e-07 2.2833e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| divided into different ||| 0.5 0.525896 8.48644e-07 5.06962e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| divided into ||| 0.0180723 0.525896 2.54593e-06 2.30228e-07 2.718 ||| 0-1 ||| 166 1.17835e+06 +en ||| divided too on ||| 1 0.22993 8.48644e-07 1.1755e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| divisions comprising ||| 1 0.007215 8.48644e-07 1.36e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| divisions ||| 0.00371747 0.007215 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 538 1.17835e+06 +en ||| divorced from ||| 0.0181818 0.0308834 8.48644e-07 4.18561e-09 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| do , at ||| 0.2 0.321886 8.48644e-07 1.63878e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| do , in terms ||| 0.25 0.605812 8.48644e-07 2.07644e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| do , in ||| 0.12 0.605812 5.09187e-06 0.00018918 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| do , with ||| 0.0909091 0.0535436 8.48644e-07 4.77637e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| do , within ||| 0.333333 0.369196 8.48644e-07 4.54195e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| do I agree ||| 0.166667 0.071674 8.48644e-07 3.10354e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| do a great ||| 0.0434783 0.0015231 8.48644e-07 1.11246e-09 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| do a ||| 0.00943396 0.0015231 1.69729e-06 2.83069e-06 2.718 ||| 0-1 ||| 212 1.17835e+06 +en ||| do about ||| 0.0125 0.0401564 1.69729e-06 9.84591e-06 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| do actually ||| 0.0357143 0.125341 8.48644e-07 4.61429e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| do as a ||| 0.0588235 0.066968 8.48644e-07 2.73906e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| do as ||| 0.0127119 0.066968 2.54593e-06 6.17938e-05 2.718 ||| 0-1 ||| 236 1.17835e+06 +en ||| do at ||| 0.0917431 0.321886 8.48644e-06 0.000137419 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| do away with standards ||| 1 0.0535436 8.48644e-07 9.31329e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| do away with ||| 0.00787402 0.0535436 1.69729e-06 1.27405e-08 2.718 ||| 0-2 ||| 254 1.17835e+06 +en ||| do believe in ||| 0.2 0.605812 8.48644e-07 4.93833e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| do by ||| 0.0333333 0.0468744 8.48644e-07 2.92244e-05 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| do decide on ||| 0.5 0.22993 8.48644e-07 1.82875e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| do derive from ||| 0.125 0.0308834 8.48644e-07 4.18293e-11 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| do during ||| 0.125 0.226251 8.48644e-07 9.93248e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| do emphasize ||| 1 0.138965 8.48644e-07 3.57615e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| do even more in ||| 0.111111 0.605812 8.48644e-07 2.20445e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| do even ||| 0.027027 0.0045419 8.48644e-07 4.58269e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| do everything in ||| 0.00581395 0.605812 8.48644e-07 1.46738e-07 2.718 ||| 0-2 ||| 172 1.17835e+06 +en ||| do get down to ||| 1 0.0247351 8.48644e-07 2.94711e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| do have in ||| 0.333333 0.605812 8.48644e-07 1.89725e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| do here is important enough ||| 1 0.0855319 8.48644e-07 2.04693e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| do here is important ||| 1 0.0855319 8.48644e-07 1.23906e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| do here is ||| 0.047619 0.0855319 8.48644e-07 3.23009e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| do here ||| 0.0240964 0.0855319 1.69729e-06 1.03062e-05 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| do in fact ||| 0.015625 0.605812 8.48644e-07 4.64691e-06 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| do in terms ||| 0.047619 0.605812 8.48644e-07 1.74119e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| do in the context of ||| 1 0.605812 8.48644e-07 7.10518e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| do in the context ||| 0.25 0.605812 8.48644e-07 1.30696e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| do in the ||| 0.00520833 0.605812 8.48644e-07 9.73893e-05 2.718 ||| 0-1 ||| 192 1.17835e+06 +en ||| do in ||| 0.149733 0.605812 9.50482e-05 0.00158636 2.718 ||| 0-1 ||| 748 1.17835e+06 +en ||| do indeed ||| 0.00680272 0.0919982 8.48644e-07 5.60091e-06 2.718 ||| 0-1 ||| 147 1.17835e+06 +en ||| do is to ||| 0.00507614 0.0247351 8.48644e-07 3.02631e-06 2.718 ||| 0-2 ||| 197 1.17835e+06 +en ||| do it in ||| 0.0123457 0.605812 8.48644e-07 2.82105e-05 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| do likewise ||| 0.00909091 0.0085995 8.48644e-07 3.26353e-08 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| do little damage to ||| 1 0.0247351 8.48644e-07 6.58155e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| do more to ||| 0.00460829 0.0145151 8.48644e-07 3.21257e-08 2.718 ||| 0-1 0-2 ||| 217 1.17835e+06 +en ||| do not at ||| 0.166667 0.321886 8.48644e-07 4.69162e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| do not for ||| 0.142857 0.0286209 8.48644e-07 1.34938e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| do not go along with ||| 0.2 0.0535436 8.48644e-07 1.39541e-14 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| do not have a situation in ||| 1 0.605812 8.48644e-07 1.47865e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| do not have strength in numbers ||| 1 0.605812 8.48644e-07 7.85528e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| do not have strength in ||| 1 0.605812 8.48644e-07 1.6064e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| do not have ||| 0.00041511 0.0008293 8.48644e-07 7.46524e-09 2.718 ||| 0-1 ||| 2409 1.17835e+06 +en ||| do not in ||| 0.3125 0.605812 8.48644e-06 5.41598e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| do not invest in ||| 0.166667 0.605812 8.48644e-07 5.09102e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| do not seem to ||| 0.0144928 0.0247351 8.48644e-07 3.01316e-11 2.718 ||| 0-3 ||| 69 1.17835e+06 +en ||| do not wish to quote at length ||| 1 0.321886 8.48644e-07 2.10958e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| do not wish to quote at ||| 1 0.321886 8.48644e-07 5.47943e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| do not wish to ||| 0.00377358 0.0247351 8.48644e-07 9.71529e-11 2.718 ||| 0-3 ||| 265 1.17835e+06 +en ||| do not ||| 5.27273e-05 0.0008293 1.69729e-06 6.24194e-07 2.718 ||| 0-1 ||| 37931 1.17835e+06 +en ||| do on the ||| 0.05 0.22993 8.48644e-07 1.75148e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| do on ||| 0.148515 0.22993 1.27297e-05 0.000285296 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| do over ||| 0.111111 0.157937 1.69729e-06 1.37659e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| do point in ||| 1 0.605812 8.48644e-07 1.38774e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| do so , in ||| 0.0714286 0.605812 8.48644e-07 4.29383e-07 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| do so , ||| 0.001287 0.0087276 8.48644e-07 2.7903e-07 2.718 ||| 0-1 ||| 777 1.17835e+06 +en ||| do so at ||| 0.0140845 0.321886 8.48644e-07 3.119e-07 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| do so by ||| 0.0238095 0.0468744 1.69729e-06 6.63307e-08 2.718 ||| 0-2 ||| 84 1.17835e+06 +en ||| do so in view ||| 0.5 0.605812 8.48644e-07 3.25238e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| do so in ||| 0.0527778 0.605812 1.61242e-05 3.60055e-06 2.718 ||| 0-2 ||| 360 1.17835e+06 +en ||| do so on ||| 0.0655738 0.22993 3.39458e-06 6.47537e-07 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| do so over ||| 0.333333 0.157937 8.48644e-07 3.12445e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| do so to ||| 0.04 0.0247351 8.48644e-07 2.19163e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| do so ||| 0.0014193 0.0087276 5.94051e-06 2.33978e-06 2.718 ||| 0-1 ||| 4932 1.17835e+06 +en ||| do some thinking ||| 0.166667 0.0455702 8.48644e-07 5.47465e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| do something in the ||| 0.166667 0.605812 8.48644e-07 5.3905e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| do something in ||| 0.0434783 0.605812 8.48644e-07 8.78048e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| do take ||| 0.047619 0.0074151 8.48644e-07 1.00517e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| do that in ||| 0.025 0.605812 8.48644e-07 2.66851e-05 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| do that on ||| 0.0909091 0.22993 8.48644e-07 4.79914e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| do them in ||| 0.333333 0.605812 1.69729e-06 4.25524e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| do they experience difficulty in ||| 1 0.605812 8.48644e-07 6.44023e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| do this at ||| 0.0645161 0.321886 1.69729e-06 8.87918e-07 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| do this in ||| 0.02 0.605812 1.69729e-06 1.02501e-05 2.718 ||| 0-2 ||| 100 1.17835e+06 +en ||| do this on ||| 0.0454545 0.22993 8.48644e-07 1.84341e-06 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| do this to ||| 0.0625 0.0247351 8.48644e-07 6.23916e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| do this ||| 0.000529942 0.0013296 8.48644e-07 1.63864e-06 2.718 ||| 0-1 ||| 1887 1.17835e+06 +en ||| do under ||| 0.129032 0.205566 3.39458e-06 1.94252e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| do we focus competition on ||| 0.5 0.22993 8.48644e-07 9.09971e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| do we have over ||| 1 0.157937 8.48644e-07 1.86902e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| do we want to compromise on ||| 1 0.22993 8.48644e-07 6.09477e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| do what ||| 0.00225734 0.0035633 8.48644e-07 1.34183e-06 2.718 ||| 0-1 ||| 443 1.17835e+06 +en ||| do when ||| 0.0294118 0.142731 1.69729e-06 2.04514e-05 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| do with regard to ||| 0.125 0.0247351 8.48644e-07 4.20426e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| do with the ||| 0.00106724 0.0535436 8.48644e-07 2.45885e-06 2.718 ||| 0-1 ||| 937 1.17835e+06 +en ||| do with ||| 0.013296 0.0535436 3.22485e-05 4.00518e-05 2.718 ||| 0-1 ||| 2858 1.17835e+06 +en ||| do within ||| 0.136364 0.369196 2.54593e-06 3.80861e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| do ||| 3.6328e-05 9.7e-06 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 27527 1.17835e+06 +en ||| dock over this ||| 0.25 0.157937 8.48644e-07 1.81245e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| dock over ||| 0.25 0.157937 8.48644e-07 2.80504e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| doctorate in ||| 0.166667 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| doctors in ||| 0.0103093 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| doctrine in ||| 1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| document , ||| 0.0017301 0.0013046 8.48644e-07 6.43975e-07 2.718 ||| 0-0 ||| 578 1.17835e+06 +en ||| document carefully as well ||| 1 0.066968 8.48644e-07 3.74546e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| document carefully as ||| 1 0.066968 8.48644e-07 2.36217e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| document in a ||| 0.333333 0.605812 8.48644e-07 6.85705e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| document in ||| 0.0232558 0.605812 1.69729e-06 1.54697e-05 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| document is due to be adopted in ||| 1 0.605812 8.48644e-07 4.40239e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| document is ||| 0.00571429 0.0013046 8.48644e-07 1.69242e-07 2.718 ||| 0-0 ||| 175 1.17835e+06 +en ||| document on ||| 0.00549451 0.22993 8.48644e-07 2.78212e-06 2.718 ||| 0-1 ||| 182 1.17835e+06 +en ||| document still ||| 0.2 0.0013046 8.48644e-07 4.06728e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| document which ||| 0.00558659 0.0013046 8.48644e-07 4.58708e-08 2.718 ||| 0-0 ||| 179 1.17835e+06 +en ||| document ||| 0.000682687 0.0013046 4.24322e-06 5.4e-06 2.718 ||| 0-0 ||| 7324 1.17835e+06 +en ||| documented in ||| 0.03125 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| documents are , in ||| 1 0.605812 8.48644e-07 2.1056e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| documents in ||| 0.0326087 0.605812 2.54593e-06 1.16369e-05 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| does , after ||| 0.25 0.0144723 8.48644e-07 2.21994e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| does , at ||| 1 0.321886 8.48644e-07 3.34598e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| does , for ||| 0.166667 0.0286209 8.48644e-07 9.62355e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| does , in ||| 0.09375 0.605812 2.54593e-06 3.86258e-05 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| does amount to ||| 0.333333 0.0247351 8.48644e-07 4.7967e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| does appear to ||| 0.111111 0.0247351 8.48644e-07 1.72311e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| does as what ||| 1 0.066968 8.48644e-07 1.77025e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| does as ||| 0.0555556 0.066968 8.48644e-07 1.26167e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| does at ||| 0.125 0.321886 2.54593e-06 2.80574e-05 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| does from ||| 0.2 0.0308834 1.69729e-06 2.6689e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| does in ||| 0.19802 0.605812 1.69729e-05 0.000323893 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| does it cover ||| 0.25 0.0047233 8.48644e-07 6.57693e-12 2.718 ||| 0-1 0-2 ||| 4 1.17835e+06 +en ||| does it have as ||| 0.142857 0.066968 8.48644e-07 2.68337e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| does it lie in ||| 1 0.605812 8.48644e-07 2.17723e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| does it make ||| 0.0416667 0.0080472 8.48644e-07 3.36158e-09 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| does it ||| 0.00666667 0.0080472 1.69729e-06 1.93439e-06 2.718 ||| 0-1 ||| 300 1.17835e+06 +en ||| does not , under ||| 0.1 0.205566 8.48644e-07 1.6148e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| does not appear on ||| 0.0769231 0.22993 8.48644e-07 1.73814e-11 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| does not happen in ||| 0.05 0.605812 8.48644e-07 1.20201e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| does not in ||| 0.149254 0.605812 8.48644e-06 1.1058e-06 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| does not relate in ||| 1 0.605812 8.48644e-07 2.74239e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| does not under ||| 1 0.205566 8.48644e-07 1.35408e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| does on the ||| 0.166667 0.22993 8.48644e-07 3.57608e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| does on ||| 0.380952 0.22993 6.78915e-06 5.82501e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| does put it into ||| 0.25 0.525896 8.48644e-07 3.04452e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| does so , ||| 0.0357143 0.0087276 8.48644e-07 5.69708e-08 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| does so in ||| 0.0909091 0.605812 1.69729e-06 7.35141e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| does so on ||| 0.142857 0.22993 8.48644e-07 1.3221e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| does so ||| 0.00571429 0.0087276 8.48644e-07 4.77724e-07 2.718 ||| 0-1 ||| 175 1.17835e+06 +en ||| does start from ||| 1 0.0308834 8.48644e-07 3.7071e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| does throughout ||| 0.5 0.309047 8.48644e-07 2.03462e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| does to ||| 0.0178571 0.0247351 8.48644e-07 1.97152e-05 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| does today ||| 0.0769231 0.0398284 8.48644e-07 8.46169e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| does upon another ||| 1 0.114601 8.48644e-07 1.49474e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| does upon ||| 1 0.114601 8.48644e-07 6.19967e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| does within ||| 0.2 0.369196 8.48644e-07 7.77621e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| does ||| 0.00056844 0.0004478 4.24322e-06 1.43e-05 2.718 ||| 0-0 ||| 8796 1.17835e+06 +en ||| doggedly determined to ||| 0.333333 0.0247351 8.48644e-07 1.34583e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| doing - in ||| 0.5 0.605812 8.48644e-07 6.39446e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| doing a great deal in ||| 0.25 0.605812 8.48644e-07 1.25386e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| doing as ||| 0.03125 0.066968 8.48644e-07 6.60336e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| doing at the ||| 0.0294118 0.321886 8.48644e-07 9.01522e-07 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| doing at ||| 0.112903 0.321886 5.94051e-06 1.46847e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| doing everything it can to ||| 0.142857 0.0247351 8.48644e-07 5.04842e-14 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| doing for ||| 0.0222222 0.0286209 8.48644e-07 4.22356e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| doing here ||| 0.00961538 0.0855319 8.48644e-07 1.10134e-06 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| doing in ||| 0.0463918 0.605812 7.6378e-06 0.00016952 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| doing just the same in ||| 1 0.605812 8.48644e-07 1.05663e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| doing not only flies in ||| 0.166667 0.605812 8.48644e-07 3.02781e-15 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| doing quite well in ||| 0.333333 0.605812 8.48644e-07 1.04855e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| doing so in ||| 0.0384615 0.605812 1.69729e-06 3.84759e-07 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| doing so ||| 0.00251572 0.0087276 3.39458e-06 2.50032e-07 2.718 ||| 0-1 ||| 1590 1.17835e+06 +en ||| doing the same in the ||| 0.5 0.605812 8.48644e-07 5.14133e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| doing the same in ||| 0.125 0.605812 8.48644e-07 8.37462e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| doing this in ||| 0.136364 0.605812 2.54593e-06 1.09534e-06 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| doing to date in ||| 1 0.605812 8.48644e-07 1.53946e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| doing to ||| 0.00813008 0.0247351 8.48644e-07 1.03186e-05 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| domain of activity in connection with ||| 1 0.0535436 8.48644e-07 1.75328e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| domestically ||| 0.0126582 0.108696 8.48644e-07 1.02e-05 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| dominates in ||| 0.333333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| domination in industry , such as the ||| 1 0.605812 8.48644e-07 1.69717e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| domination in industry , such as ||| 1 0.605812 8.48644e-07 2.76448e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| domination in industry , such ||| 1 0.605812 8.48644e-07 2.70911e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| domination in industry , ||| 1 0.605812 8.48644e-07 1.30944e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| domination in industry ||| 1 0.605812 8.48644e-07 1.09802e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| domination in ||| 0.166667 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| done , given ||| 0.25 0.0546585 8.48644e-07 6.31299e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| done , partly ||| 0.333333 0.294632 8.48644e-07 4.48854e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| done about ||| 0.0144928 0.0401564 1.69729e-06 1.30694e-06 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| done according to ||| 0.0666667 0.0586463 8.48644e-07 1.71761e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| done according ||| 0.0555556 0.0586463 8.48644e-07 1.93298e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| done across ||| 0.5 0.274879 8.48644e-07 9.36761e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| done at the ||| 0.02 0.321886 8.48644e-07 1.11984e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| done at ||| 0.0212766 0.321886 3.39458e-06 1.82409e-05 2.718 ||| 0-1 ||| 188 1.17835e+06 +en ||| done away with ||| 0.00909091 0.0535436 8.48644e-07 1.69117e-09 2.718 ||| 0-2 ||| 110 1.17835e+06 +en ||| done by ||| 0.00488401 0.0468744 3.39458e-06 3.87924e-06 2.718 ||| 0-1 ||| 819 1.17835e+06 +en ||| done during ||| 0.0714286 0.226251 1.69729e-06 1.31843e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| done for the Community on ||| 1 0.22993 8.48644e-07 2.89292e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| done for ||| 0.011236 0.0286209 1.69729e-06 5.24637e-06 2.718 ||| 0-1 ||| 178 1.17835e+06 +en ||| done here ||| 0.0149254 0.0855319 8.48644e-07 1.36805e-06 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| done in all ||| 0.333333 0.605812 8.48644e-07 9.95038e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| done in an ||| 0.0869565 0.605812 1.69729e-06 9.3593e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| done in connection with ||| 0.125 0.0535436 8.48644e-07 1.73653e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| done in one ' ||| 0.5 0.605812 8.48644e-07 3.01469e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| done in one ||| 0.333333 0.605812 8.48644e-07 8.77665e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| done in relation to ||| 0.0714286 0.605812 8.48644e-07 4.5524e-09 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| done in relation ||| 0.0833333 0.605812 8.48644e-07 5.12322e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| done in such a way ||| 0.142857 0.605812 8.48644e-07 4.16261e-11 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| done in such a ||| 0.25 0.605812 8.48644e-07 1.93107e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| done in such ||| 0.142857 0.605812 8.48644e-07 4.35653e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| done in the ||| 0.00735294 0.605812 2.54593e-06 1.29274e-05 2.718 ||| 0-1 ||| 408 1.17835e+06 +en ||| done in ||| 0.0599174 0.605812 7.38321e-05 0.000210572 2.718 ||| 0-1 ||| 1452 1.17835e+06 +en ||| done on it in ||| 0.5 0.605812 8.48644e-07 2.50554e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| done on ||| 0.0223881 0.22993 1.01837e-05 3.78701e-05 2.718 ||| 0-1 ||| 536 1.17835e+06 +en ||| done only in ||| 0.333333 0.605812 8.48644e-07 2.34388e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| done over ||| 0.0206186 0.157937 1.69729e-06 1.82728e-06 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| done properly under ||| 0.25 0.205566 8.48644e-07 1.92098e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| done so in ||| 0.0434783 0.605812 1.69729e-06 4.77936e-07 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| done so ||| 0.00172414 0.0087276 8.48644e-07 3.10582e-07 2.718 ||| 0-1 ||| 580 1.17835e+06 +en ||| done through the ||| 0.0625 0.0366102 8.48644e-07 2.63262e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| done through ||| 0.0227273 0.0366102 1.69729e-06 4.28822e-07 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| done to the ||| 0.0208333 0.0247351 8.48644e-07 7.86882e-07 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| done to ||| 0.0109204 0.0247351 5.94051e-06 1.28174e-05 2.718 ||| 0-1 ||| 641 1.17835e+06 +en ||| done under the ||| 0.030303 0.205566 8.48644e-07 1.58299e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| done under ||| 0.0151515 0.205566 8.48644e-07 2.5785e-06 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| done whilst still providing a ||| 1 0.0125238 8.48644e-07 7.51894e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| done whilst still providing ||| 1 0.0125238 8.48644e-07 1.69629e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| done whilst still ||| 1 0.0125238 8.48644e-07 1.84781e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| done whilst ||| 0.5 0.0125238 8.48644e-07 2.45328e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| done with ||| 0.0070922 0.0535436 1.69729e-06 5.31646e-06 2.718 ||| 0-1 ||| 282 1.17835e+06 +en ||| done within ||| 0.0217391 0.369196 8.48644e-07 5.05554e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| donor in ||| 0.0526316 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| doomed at ||| 0.5 0.321886 8.48644e-07 1.16006e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| doomed to ||| 0.0070922 0.0247351 8.48644e-07 8.15141e-08 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| doors in ||| 0.166667 0.605812 8.48644e-07 5.4952e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| doors of ||| 0.0196078 0.0116562 8.48644e-07 1.6228e-07 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| doors where ||| 0.333333 0.247783 8.48644e-07 1.01348e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| doorstep in ||| 0.5 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| double in ||| 0.0333333 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| doubt about ||| 0.0037037 0.0401564 8.48644e-07 2.61962e-07 2.718 ||| 0-1 ||| 270 1.17835e+06 +en ||| doubt in ||| 0.0153846 0.605812 8.48644e-07 4.22068e-05 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| doubt it is ||| 0.2 0.0080472 8.48644e-07 7.90022e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| doubt it ||| 0.0217391 0.0080472 8.48644e-07 2.52072e-07 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| doubt on ||| 0.0165289 0.22993 1.69729e-06 7.59062e-06 2.718 ||| 0-1 ||| 121 1.17835e+06 +en ||| doubt the ||| 0.00543478 0.0011669 8.48644e-07 2.61834e-07 2.718 ||| 0-1 ||| 184 1.17835e+06 +en ||| doubt to set a precedent for , ||| 1 0.0247351 8.48644e-07 1.9519e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| doubt to set a precedent for ||| 1 0.0247351 8.48644e-07 1.63674e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| doubt to set a precedent ||| 1 0.0247351 8.48644e-07 2.1296e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| doubt to set a ||| 1 0.0247351 8.48644e-07 6.65499e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| doubt to set ||| 1 0.0247351 8.48644e-07 1.50138e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| doubt to ||| 0.0588235 0.0247351 8.48644e-07 2.5691e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| doubt upon ||| 0.05 0.114601 8.48644e-07 8.07885e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| doubts about ||| 0.00212314 0.0401564 8.48644e-07 2.57949e-08 2.718 ||| 0-1 ||| 471 1.17835e+06 +en ||| doubts cast on ||| 1 0.22993 8.48644e-07 2.52633e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| down a black ||| 1 0.0183476 8.48644e-07 1.36834e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| down a ||| 0.00884956 0.0183476 8.48644e-07 9.77384e-06 2.718 ||| 0-0 ||| 113 1.17835e+06 +en ||| down all in ||| 1 0.605812 8.48644e-07 1.52332e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| down at ||| 0.35 0.321886 5.94051e-06 2.79254e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| down by ||| 0.0314465 0.0468744 4.24322e-06 5.93881e-06 2.718 ||| 0-1 ||| 159 1.17835e+06 +en ||| down even though ||| 1 0.0183476 8.48644e-07 3.33155e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| down even ||| 0.333333 0.0183476 8.48644e-07 1.34174e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| down for ||| 0.0175439 0.0286209 8.48644e-07 8.03178e-06 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| down hard on ||| 0.0666667 0.22993 8.48644e-07 6.09329e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| down in 2008 ||| 1 0.605812 8.48644e-07 7.67239e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| down in Germany ||| 1 0.605812 8.48644e-07 8.34937e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| down in Venezuela ||| 0.333333 0.605812 8.48644e-07 3.54606e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| down in the ||| 0.00684932 0.605812 8.48644e-07 1.97908e-05 2.718 ||| 0-1 ||| 146 1.17835e+06 +en ||| down in writing in ||| 0.333333 0.605812 8.48644e-07 1.50699e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| down in ||| 0.327465 0.605812 7.89239e-05 0.000322369 2.718 ||| 0-1 ||| 284 1.17835e+06 +en ||| down into different areas of ||| 1 0.525896 8.48644e-07 4.23464e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| down into different areas ||| 1 0.525896 8.48644e-07 7.78942e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| down into different ||| 1 0.525896 8.48644e-07 3.40298e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| down into ||| 0.421053 0.525896 6.78915e-06 1.5454e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| down of roots in ||| 1 0.605812 8.48644e-07 2.52364e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| down on ||| 0.0948905 0.22993 1.10324e-05 5.79761e-05 2.718 ||| 0-1 ||| 137 1.17835e+06 +en ||| down provisions for ||| 0.5 0.0286209 8.48644e-07 6.32904e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| down the line ||| 0.0142857 0.00975725 8.48644e-07 1.85963e-10 2.718 ||| 0-0 0-1 ||| 70 1.17835e+06 +en ||| down the road ||| 0.0125 0.0011669 8.48644e-07 1.78386e-10 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| down the ||| 0.00673401 0.0011669 3.39458e-06 1.99985e-06 2.718 ||| 0-1 ||| 594 1.17835e+06 +en ||| down through the ||| 0.0833333 0.0366102 8.48644e-07 4.03033e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| down through ||| 0.05 0.0366102 8.48644e-07 6.56493e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| down to the fact ||| 0.0769231 0.0247351 8.48644e-07 3.5288e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| down to the ||| 0.0100503 0.0247351 1.69729e-06 1.20465e-06 2.718 ||| 0-1 ||| 199 1.17835e+06 +en ||| down to ||| 0.0297177 0.0247351 1.69729e-05 1.96224e-05 2.718 ||| 0-1 ||| 673 1.17835e+06 +en ||| down together in ||| 0.333333 0.605812 8.48644e-07 1.93615e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| down too well in my ||| 0.125 0.605812 8.48644e-07 4.47388e-13 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| down too well in ||| 0.125 0.605812 8.48644e-07 6.95674e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| down when ||| 0.0588235 0.142731 8.48644e-07 4.156e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| down with law ||| 0.333333 0.0535436 8.48644e-07 1.43492e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| down with ||| 0.0769231 0.0535436 2.54593e-06 8.13908e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| down ||| 0.0372427 0.0183476 9.67454e-05 0.0002205 2.718 ||| 0-0 ||| 3061 1.17835e+06 +en ||| downright repugnance in ||| 1 0.605812 8.48644e-07 5.9108e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| downstream , supplies of fresh ||| 0.333333 0.0116562 8.48644e-07 2.88046e-18 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| downstream , supplies of ||| 0.333333 0.0116562 8.48644e-07 1.06684e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| downwards into ||| 0.333333 0.525896 8.48644e-07 2.4351e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| draft agenda of ||| 0.5 0.0116562 8.48644e-07 7.10931e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| draft at its ||| 1 0.321886 8.48644e-07 2.99202e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| draft at ||| 0.2 0.321886 8.48644e-07 2.10011e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| draft resolution ; in ||| 1 0.605812 8.48644e-07 6.52616e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| drafted at ||| 0.166667 0.321886 8.48644e-07 1.12406e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| drafted by ||| 0.00404858 0.0468744 8.48644e-07 2.3905e-07 2.718 ||| 0-1 ||| 247 1.17835e+06 +en ||| drafted in ||| 0.0515464 0.605812 4.24322e-06 1.2976e-05 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| drafted to ||| 0.125 0.0247351 8.48644e-07 7.89843e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| drafting of ||| 0.00260417 0.0116562 8.48644e-07 2.01828e-07 2.718 ||| 0-1 ||| 384 1.17835e+06 +en ||| draftsman of ||| 0.00135501 0.0116562 8.48644e-07 3.832e-07 2.718 ||| 0-1 ||| 738 1.17835e+06 +en ||| dragged along in ||| 1 0.605812 8.48644e-07 4.02904e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| dragged on ||| 0.0714286 0.22993 8.48644e-07 4.15242e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| drama in and around ||| 1 0.605812 8.48644e-07 8.47504e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| drama in and ||| 1 0.605812 8.48644e-07 6.36265e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| drama in ||| 0.0666667 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| dramatically different implications in an ||| 0.5 0.605812 8.48644e-07 7.17887e-17 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| dramatically different implications in ||| 0.5 0.605812 8.48644e-07 1.61515e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| dramatically in ||| 0.0243902 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| drastic remedies in ||| 1 0.605812 8.48644e-07 2.74298e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| draught swept out ||| 1 0.0120599 8.48644e-07 2.13594e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| draw attention to ||| 0.00199601 0.0124773 8.48644e-07 8.98566e-12 2.718 ||| 0-1 0-2 ||| 501 1.17835e+06 +en ||| draw on ||| 0.0169492 0.22993 2.54593e-06 9.83293e-06 2.718 ||| 0-1 ||| 177 1.17835e+06 +en ||| draw up a new standard and ||| 1 0.0010182 8.48644e-07 4.64934e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| draw up a ||| 0.00143062 0.0147069 8.48644e-07 3.62124e-09 2.718 ||| 0-1 ||| 699 1.17835e+06 +en ||| draw up ||| 0.000603865 0.0147069 8.48644e-07 8.1696e-08 2.718 ||| 0-1 ||| 1656 1.17835e+06 +en ||| draw upon ||| 0.0909091 0.114601 8.48644e-07 1.04654e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| draw your attention to the ||| 0.00588235 0.0247351 8.48644e-07 1.36618e-14 2.718 ||| 0-3 ||| 170 1.17835e+06 +en ||| draw your attention to ||| 0.00342466 0.0247351 8.48644e-07 2.22534e-13 2.718 ||| 0-3 ||| 292 1.17835e+06 +en ||| draw ||| 0.00039604 0.0003994 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 2525 1.17835e+06 +en ||| drawing a parallel in ||| 1 0.605812 8.48644e-07 7.32456e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| drawing attention to the ||| 0.0149254 0.0247351 8.48644e-07 2.24099e-11 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| drawing attention to ||| 0.008 0.0247351 8.48644e-07 3.65032e-10 2.718 ||| 0-2 ||| 125 1.17835e+06 +en ||| drawing on ||| 0.0178571 0.22993 1.69729e-06 4.12751e-06 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| drawn by ||| 0.0208333 0.0468744 8.48644e-07 1.20886e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| drawn down in ||| 0.5 0.605812 8.48644e-07 4.58087e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| drawn from ||| 0.00478469 0.0308834 8.48644e-07 5.40705e-07 2.718 ||| 0-1 ||| 209 1.17835e+06 +en ||| drawn in ||| 0.0952381 0.605812 3.39458e-06 6.56191e-05 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| drawn instead ||| 0.142857 0.340662 8.48644e-07 4.79403e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| drawn into purchasing ||| 1 0.525896 8.48644e-07 9.12256e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| drawn into ||| 0.0625 0.525896 2.54593e-06 3.14571e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| drawn on ||| 0.0882353 0.22993 2.54593e-06 1.18012e-05 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| drawn to ||| 0.0133333 0.0247351 8.48644e-07 3.99419e-06 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| drawn up at ||| 0.0540541 0.321886 1.69729e-06 1.93863e-08 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| drawn up by ||| 0.0018315 0.0468744 8.48644e-07 4.12281e-09 2.718 ||| 0-2 ||| 546 1.17835e+06 +en ||| drawn up for ||| 0.0263158 0.0286209 8.48644e-07 5.57579e-09 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| drawn up in ||| 0.0201342 0.605812 2.54593e-06 2.23794e-07 2.718 ||| 0-2 ||| 149 1.17835e+06 +en ||| drawn up largely ||| 0.25 0.247761 8.48644e-07 4.1058e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| drawn up of ||| 0.333333 0.0116562 8.48644e-07 6.60893e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| drawn up on ||| 0.04 0.22993 2.54593e-06 4.02479e-08 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| drawn up under ||| 0.0384615 0.205566 8.48644e-07 2.7404e-09 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| dried ||| 0.0344828 0.0666667 1.69729e-06 5.4e-06 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| drink on ||| 0.5 0.22993 8.48644e-07 6.56082e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| drive home in ||| 1 0.605812 8.48644e-07 1.4155e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| drive through ||| 0.05 0.0366102 8.48644e-07 2.84001e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| driven by ||| 0.00395257 0.0468744 8.48644e-07 2.50959e-07 2.718 ||| 0-1 ||| 253 1.17835e+06 +en ||| driven forward within ||| 0.333333 0.369196 8.48644e-07 1.81975e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| driven into ||| 0.0909091 0.525896 8.48644e-07 6.5305e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| driven on ||| 0.25 0.22993 8.48644e-07 2.44993e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| driven out of ||| 0.0232558 0.0116562 8.48644e-07 1.54094e-09 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| driven to despair under the ||| 1 0.205566 8.48644e-07 1.27397e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| driven to despair under ||| 1 0.205566 8.48644e-07 2.07515e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| driving force in ||| 0.0185185 0.605812 8.48644e-07 2.6015e-09 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| driving them to ||| 0.111111 0.0247351 8.48644e-07 2.49566e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| drop by ||| 0.2 0.0468744 8.48644e-07 1.34412e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| dropped off at ||| 1 0.321886 8.48644e-07 1.87229e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| dropped something of ||| 0.5 0.0116562 8.48644e-07 8.68029e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| dropped to ||| 0.0416667 0.0247351 8.48644e-07 3.23245e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| drug in ||| 0.5 0.605812 8.48644e-07 7.29614e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| drug use ||| 0.00877193 0.0057143 8.48644e-07 5.93164e-09 2.718 ||| 0-0 ||| 114 1.17835e+06 +en ||| drug ||| 0.000952381 0.0057143 8.48644e-07 1.22e-05 2.718 ||| 0-0 ||| 1050 1.17835e+06 +en ||| dry in ||| 1 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| dry up in ||| 1 0.605812 8.48644e-07 1.41741e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| dubious in ||| 0.166667 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| due account ||| 0.004329 0.233636 8.48644e-07 9.13695e-07 2.718 ||| 0-1 ||| 231 1.17835e+06 +en ||| due attention in ||| 0.333333 0.605812 8.48644e-07 3.33514e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| due consideration ||| 0.00392157 0.0037976 8.48644e-07 2.9376e-09 2.718 ||| 0-0 ||| 255 1.17835e+06 +en ||| due here ||| 0.25 0.0855319 8.48644e-07 8.29228e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| due in no small way ||| 0.125 0.605812 8.48644e-07 2.74343e-14 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| due in no small ||| 0.0714286 0.605812 8.48644e-07 1.2727e-11 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| due in no ||| 0.0666667 0.605812 8.48644e-07 9.93521e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| due in particular to ||| 0.0909091 0.605812 8.48644e-07 6.97958e-09 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| due in particular ||| 0.0769231 0.605812 8.48644e-07 7.85474e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| due in ||| 0.050505 0.605812 4.24322e-06 0.000127636 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| due process under ||| 0.2 0.205566 8.48644e-07 6.68153e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| due regard for ||| 0.015873 0.0286209 8.48644e-07 2.16529e-09 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| due respect , we are going through ||| 1 0.0366102 8.48644e-07 1.97666e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| due respect to ||| 0.0104167 0.0247351 8.48644e-07 3.36093e-09 2.718 ||| 0-2 ||| 96 1.17835e+06 +en ||| due to be adopted in ||| 0.25 0.605812 8.48644e-07 4.19305e-11 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| due to be built in ||| 1 0.605812 8.48644e-07 1.02154e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| due to leave on Sunday ||| 1 0.22993 8.48644e-07 9.68859e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| due to leave on ||| 1 0.22993 8.48644e-07 1.93772e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| due to our ||| 0.025 0.0142664 8.48644e-07 1.05461e-09 2.718 ||| 0-0 0-1 ||| 40 1.17835e+06 +en ||| due to the Spanish Government . ||| 1 0.0247351 8.48644e-07 1.55287e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| due to the Spanish Government ||| 1 0.0247351 8.48644e-07 5.12666e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| due to the Spanish ||| 1 0.0247351 8.48644e-07 1.06362e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| due to the ||| 0.000438789 0.0247351 8.48644e-07 4.76961e-07 2.718 ||| 0-1 ||| 2279 1.17835e+06 +en ||| due to ||| 0.00427198 0.0247351 2.03675e-05 7.76913e-06 2.718 ||| 0-1 ||| 5618 1.17835e+06 +en ||| due ||| 0.0026253 0.0037976 1.86702e-05 2.72e-05 2.718 ||| 0-0 ||| 8380 1.17835e+06 +en ||| dug in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| duly framed within ||| 0.5 0.369196 8.48644e-07 2.99341e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| dumped in ||| 0.125 0.605812 2.54593e-06 1.4777e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| duplicated in ||| 0.25 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| duration of ||| 0.00442478 0.0116562 8.48644e-07 1.13187e-07 2.718 ||| 0-1 ||| 226 1.17835e+06 +en ||| during Euro 2000 ||| 0.125 0.226251 8.48644e-07 7.82733e-13 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| during Euro ||| 0.0833333 0.226251 8.48644e-07 2.71782e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| during Parliament ||| 0.5 0.226251 8.48644e-07 1.65961e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| during a meeting of ||| 0.166667 0.0116562 8.48644e-07 7.65289e-12 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| during a ||| 0.0190174 0.226251 1.01837e-05 0.000128159 2.718 ||| 0-0 ||| 631 1.17835e+06 +en ||| during an interesting hearing ||| 0.5 0.226251 8.48644e-07 3.51499e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| during an interesting ||| 0.333333 0.226251 8.48644e-07 1.3365e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| during an ||| 0.0283019 0.226251 2.54593e-06 1.2851e-05 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| during and ||| 0.015873 0.226251 8.48644e-07 3.62161e-05 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| during any of ||| 1 0.0116562 8.48644e-07 2.07868e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| during armed ||| 1 0.226251 8.48644e-07 2.48652e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| during discussions ||| 0.0196078 0.226251 8.48644e-07 1.197e-07 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| during his visit , ||| 0.25 0.226251 8.48644e-07 3.05658e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| during his visit ||| 0.027027 0.226251 8.48644e-07 2.56307e-11 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| during his ||| 0.00458716 0.226251 8.48644e-07 8.68836e-07 2.718 ||| 0-0 ||| 218 1.17835e+06 +en ||| during inquiries in ||| 1 0.226251 8.48644e-07 1.54717e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| during inquiries ||| 1 0.226251 8.48644e-07 7.22825e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| during investigations ||| 0.142857 0.226251 8.48644e-07 2.39978e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| during its Presidency in ||| 0.333333 0.226251 8.48644e-07 4.38206e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| during its Presidency ||| 0.0277778 0.226251 8.48644e-07 2.04726e-10 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| during its ||| 0.00643087 0.226251 1.69729e-06 4.11924e-06 2.718 ||| 0-0 ||| 311 1.17835e+06 +en ||| during my time ||| 0.0416667 0.226251 8.48644e-07 3.05257e-09 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| during my ||| 0.00840336 0.226251 1.69729e-06 1.8594e-06 2.718 ||| 0-0 ||| 238 1.17835e+06 +en ||| during sittings ||| 0.1 0.226251 8.48644e-07 1.35891e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| during such ||| 0.0588235 0.226251 8.48644e-07 5.98181e-06 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| during that ||| 0.00395257 0.226251 8.48644e-07 4.86363e-05 2.718 ||| 0-0 ||| 253 1.17835e+06 +en ||| during the Austrian Presidency ||| 0.03125 0.226251 8.48644e-07 1.01451e-13 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| during the Austrian ||| 1 0.226251 8.48644e-07 2.04127e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| during the course of the ||| 0.00735294 0.226251 8.48644e-07 7.47449e-10 2.718 ||| 0-0 ||| 136 1.17835e+06 +en ||| during the course of ||| 0.015748 0.226251 3.39458e-06 1.21751e-08 2.718 ||| 0-0 ||| 254 1.17835e+06 +en ||| during the course ||| 0.0157729 0.226251 4.24322e-06 2.23954e-07 2.718 ||| 0-0 ||| 317 1.17835e+06 +en ||| during the debate on ||| 0.00555556 0.22993 8.48644e-07 1.01706e-10 2.718 ||| 0-3 ||| 180 1.17835e+06 +en ||| during the vote in ||| 0.037037 0.605812 8.48644e-07 4.49506e-10 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| during the ||| 0.00384747 0.226251 3.8189e-05 0.000177502 2.718 ||| 0-0 ||| 11696 1.17835e+06 +en ||| during their ||| 0.00373134 0.226251 8.48644e-07 3.35131e-06 2.718 ||| 0-0 ||| 268 1.17835e+06 +en ||| during those ||| 0.0126582 0.226251 8.48644e-07 2.09359e-06 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| during today ||| 0.25 0.226251 1.69729e-06 1.30484e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| during trade ||| 1 0.226251 8.48644e-07 2.51832e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| during voting time to a ||| 0.333333 0.226251 8.48644e-07 7.27262e-13 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| during voting time to ||| 0.333333 0.226251 8.48644e-07 1.64072e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| during voting time ||| 0.0357143 0.226251 8.48644e-07 1.84645e-10 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| during voting ||| 0.0243902 0.226251 8.48644e-07 1.12472e-07 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| during what has been ||| 0.5 0.226251 8.48644e-07 6.97301e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| during what has ||| 0.5 0.226251 8.48644e-07 2.08823e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| during what is ||| 0.4 0.226251 1.69729e-06 1.27144e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| during what ||| 0.25 0.226251 2.54593e-06 4.05678e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| during which we ||| 0.0555556 0.226251 8.48644e-07 2.78817e-07 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| during which ||| 0.00503778 0.226251 1.69729e-06 2.45604e-05 2.718 ||| 0-0 ||| 397 1.17835e+06 +en ||| during ||| 0.178275 0.226251 0.0033496 0.0028913 2.718 ||| 0-0 ||| 22140 1.17835e+06 +en ||| dust in ||| 0.0666667 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| duties in accident ||| 0.166667 0.605812 8.48644e-07 1.29691e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| duties in ||| 0.0405405 0.605812 2.54593e-06 9.46651e-06 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| duties on ||| 0.0140845 0.22993 8.48644e-07 1.70249e-06 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| duties to the ||| 0.166667 0.0247351 8.48644e-07 3.53752e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| duties to ||| 0.0384615 0.0247351 8.48644e-07 5.7622e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| duty in ||| 0.016129 0.605812 8.48644e-07 3.44027e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| duty of care on ||| 0.5 0.22993 8.48644e-07 3.41401e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| duty to ||| 0.00129955 0.0247351 1.69729e-06 2.09407e-06 2.718 ||| 0-1 ||| 1539 1.17835e+06 +en ||| duty-free purchases ||| 0.05 0.0097087 8.48644e-07 1.566e-11 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| duty-free sales in ||| 0.25 0.605812 8.48644e-07 2.30336e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| dwarf in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| dwell on ||| 0.0176991 0.22993 1.69729e-06 2.07621e-07 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| dwelt on ||| 0.0909091 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| dying in ||| 0.0204082 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| dying on ||| 0.5 0.22993 8.48644e-07 2.98974e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| dynamic at ||| 0.166667 0.321886 8.48644e-07 1.72009e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| e in ||| 0.2 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| e-Economy on ||| 0.25 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| e.g. in the ||| 0.142857 0.605812 8.48644e-07 8.22138e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| e.g. in ||| 0.0666667 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| each consecutive ||| 1 0.0092593 8.48644e-07 1.9649e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| each in ||| 0.0833333 0.605812 1.69729e-06 0.000129622 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| each month in ||| 0.5 0.605812 8.48644e-07 1.68509e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| each of ||| 0.00172216 0.0116562 2.54593e-06 3.82791e-06 2.718 ||| 0-1 ||| 1742 1.17835e+06 +en ||| each other ' kept surfacing in ||| 1 0.605812 8.48644e-07 2.87884e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| each other , on ||| 0.5 0.22993 8.48644e-07 3.60153e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| each other again in ||| 1 0.605812 8.48644e-07 9.71112e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| each other as we did ||| 1 0.066968 8.48644e-07 3.37281e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| each other as we ||| 0.5 0.066968 8.48644e-07 7.42582e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| each other as ||| 0.0588235 0.066968 8.48644e-07 6.54124e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| each other at ||| 0.0714286 0.321886 8.48644e-07 1.45466e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| each other during ||| 0.5 0.226251 8.48644e-07 1.05141e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| each other in the ||| 0.0434783 0.605812 8.48644e-07 1.03092e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| each other in ||| 0.141509 0.605812 1.27297e-05 1.67925e-07 2.718 ||| 0-2 ||| 106 1.17835e+06 +en ||| each other on ||| 0.0526316 0.22993 1.69729e-06 3.02003e-08 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| each other through a ||| 1 0.0366102 8.48644e-07 1.51582e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| each other through ||| 0.333333 0.0366102 8.48644e-07 3.41973e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| each other ||| 0.000566251 0.0001099 8.48644e-07 1.8137e-09 2.718 ||| 0-0 ||| 1766 1.17835e+06 +en ||| each to account ||| 1 0.233636 8.48644e-07 8.24524e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| each way in ||| 1 0.605812 8.48644e-07 2.79413e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| each with ||| 0.025641 0.0535436 8.48644e-07 3.27265e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| each ||| 0.000145085 0.0001099 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 13785 1.17835e+06 +en ||| ear into ||| 1 0.525896 8.48644e-07 1.50534e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| earlier Commission under ||| 1 0.205566 8.48644e-07 2.30539e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| earlier have ||| 0.2 0.0045405 8.48644e-07 2.03317e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| earlier in the ||| 0.0149254 0.605812 8.48644e-07 1.9788e-06 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| earlier in ||| 0.057971 0.605812 6.78915e-06 3.22323e-05 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| earlier this ||| 0.00287356 0.0013296 8.48644e-07 3.32946e-08 2.718 ||| 0-1 ||| 348 1.17835e+06 +en ||| earlier today , in ||| 1 0.605812 8.48644e-07 1.73473e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| earlier ||| 0.00151877 0.0045405 5.94051e-06 1.7e-05 2.718 ||| 0-0 ||| 4609 1.17835e+06 +en ||| early as at ||| 0.375 0.321886 2.54593e-06 2.76349e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| early as in ||| 0.375 0.605812 2.54593e-06 3.19016e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| early as possible in ||| 0.0714286 0.605812 8.48644e-07 2.55883e-10 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| early as ||| 0.0473684 0.066968 7.6378e-06 1.21778e-06 2.718 ||| 0-1 ||| 190 1.17835e+06 +en ||| early in ||| 0.0258621 0.605812 2.54593e-06 3.12626e-05 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| early on ||| 0.00970874 0.22993 8.48644e-07 5.62238e-06 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| early warning system for ||| 0.0714286 0.0286209 8.48644e-07 3.0413e-15 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| earmarked for ||| 0.00215054 0.0286209 8.48644e-07 1.19654e-07 2.718 ||| 0-1 ||| 465 1.17835e+06 +en ||| earmarked in ||| 0.0555556 0.605812 8.48644e-07 4.80252e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| earned from ||| 0.142857 0.0308834 8.48644e-07 3.27239e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| earnest in this matter ||| 1 0.605812 8.48644e-07 8.97737e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| earnest in this ||| 1 0.605812 8.48644e-07 8.65288e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| earnest in ||| 0.166667 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| ears at ||| 0.25 0.321886 8.48644e-07 4.76024e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| ears of ||| 0.030303 0.0116562 8.48644e-07 1.6228e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| earthquakes in ||| 0.030303 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| ease of comparison for ||| 1 0.0286209 8.48644e-07 9.10682e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ease with which ||| 0.0285714 0.0535436 8.48644e-07 1.02999e-09 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| ease with ||| 0.0204082 0.0535436 8.48644e-07 1.21253e-07 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| easier for ||| 0.00949367 0.0286209 2.54593e-06 8.03063e-07 2.718 ||| 0-1 ||| 316 1.17835e+06 +en ||| easier in ||| 0.1 0.605812 1.69729e-06 3.22323e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| easier reading ||| 0.25 0.0006125 8.48644e-07 1.8846e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| easier throughout ||| 0.5 0.309047 8.48644e-07 2.02476e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| easily by ||| 0.142857 0.0468744 8.48644e-07 3.42836e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| easily carry on discussing until ||| 1 0.22993 8.48644e-07 1.05362e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| easily carry on discussing ||| 1 0.22993 8.48644e-07 2.16794e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| easily carry on ||| 1 0.22993 8.48644e-07 6.14147e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| easily in ||| 0.0588235 0.605812 8.48644e-07 1.86098e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| easily turn into ||| 0.333333 0.525896 8.48644e-07 2.00016e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| easing in ||| 0.142857 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| eastwards in recent years ||| 1 0.605812 8.48644e-07 4.2017e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| eastwards in recent ||| 1 0.605812 8.48644e-07 2.46868e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| eastwards in ||| 0.5 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| easy in ||| 0.0714286 0.605812 1.69729e-06 1.74553e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| easy on ||| 0.0909091 0.22993 8.48644e-07 3.13923e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| easy to sit back ||| 0.5 0.0247351 8.48644e-07 2.70131e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| easy to sit ||| 0.333333 0.0247351 8.48644e-07 4.01623e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| easy to ||| 0.0020555 0.0247351 1.69729e-06 1.06249e-06 2.718 ||| 0-1 ||| 973 1.17835e+06 +en ||| easy when it ||| 1 0.142731 8.48644e-07 4.00184e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| easy when ||| 0.0714286 0.142731 8.48644e-07 2.25035e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| eat into ||| 0.333333 0.525896 8.48644e-07 2.39083e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| ebb in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| economic and political threat to ||| 1 0.0247351 8.48644e-07 2.98833e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| economic governance in ||| 0.0078125 0.605812 8.48644e-07 1.40035e-10 2.718 ||| 0-2 ||| 128 1.17835e+06 +en ||| economic operators in ||| 0.0416667 0.605812 8.48644e-07 7.28183e-10 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| economic policy on the ||| 0.5 0.22993 8.48644e-07 2.43483e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| economic policy on ||| 0.5 0.22993 8.48644e-07 3.96604e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| economic power in ||| 0.0909091 0.605812 8.48644e-07 8.3629e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| economically ||| 0.00161464 0.0296509 2.54593e-06 4.22e-05 2.718 ||| 0-0 ||| 1858 1.17835e+06 +en ||| economies in ||| 0.0121951 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| economist ||| 0.0140845 0.0111111 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| economy , widely heard in ||| 0.5 0.605812 8.48644e-07 6.30648e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| economy in the ||| 0.0125 0.605812 8.48644e-07 1.47985e-06 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| economy in ||| 0.0175439 0.605812 3.39458e-06 2.4105e-05 2.718 ||| 0-1 ||| 228 1.17835e+06 +en ||| economy into ||| 0.0666667 0.525896 8.48644e-07 1.15557e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| economy of ||| 0.00330033 0.0116562 8.48644e-07 7.11851e-07 2.718 ||| 0-1 ||| 303 1.17835e+06 +en ||| economy ||| 0.00102114 0.0013996 1.4427e-05 1.36e-05 2.718 ||| 0-0 ||| 16648 1.17835e+06 +en ||| edge in knowledge-intensive ||| 1 0.605812 8.48644e-07 1.58853e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| edge in ||| 1 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| education at ||| 0.0232558 0.321886 8.48644e-07 1.35207e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| education in ||| 0.00833333 0.605812 1.69729e-06 1.56082e-05 2.718 ||| 0-1 ||| 240 1.17835e+06 +en ||| effect at ||| 0.0869565 0.321886 1.69729e-06 1.33447e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| effect in ||| 0.0898204 0.605812 1.27297e-05 0.00015405 2.718 ||| 0-1 ||| 167 1.17835e+06 +en ||| effect of ||| 0.00406504 0.0116562 2.54593e-06 4.5493e-06 2.718 ||| 0-1 ||| 738 1.17835e+06 +en ||| effect on the ||| 0.00507614 0.22993 8.48644e-07 1.70086e-06 2.718 ||| 0-1 ||| 197 1.17835e+06 +en ||| effect on ||| 0.0323625 0.22993 1.69729e-05 2.77049e-05 2.718 ||| 0-1 ||| 618 1.17835e+06 +en ||| effective advocates within ||| 0.166667 0.369196 8.48644e-07 4.42969e-12 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| effective in ||| 0.00595238 0.605812 2.54593e-06 3.02467e-05 2.718 ||| 0-1 ||| 504 1.17835e+06 +en ||| effectively , ||| 0.002079 0.0120168 8.48644e-07 7.87081e-06 2.718 ||| 0-0 ||| 481 1.17835e+06 +en ||| effectively both in ||| 0.5 0.605812 8.48644e-07 5.47697e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| effectively classes ||| 0.0666667 0.0120168 8.48644e-07 3.828e-10 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| effectively in ||| 0.0210526 0.605812 3.39458e-06 3.30635e-05 2.718 ||| 0-1 ||| 190 1.17835e+06 +en ||| effectively lead to ||| 0.333333 0.0120168 8.48644e-07 1.12894e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| effectively lead ||| 0.333333 0.0120168 8.48644e-07 1.2705e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| effectively ||| 0.00127592 0.0120168 6.78915e-06 6.6e-05 2.718 ||| 0-0 ||| 6270 1.17835e+06 +en ||| effects in the ||| 0.1 0.605812 8.48644e-07 1.53938e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| effects in ||| 0.0526316 0.605812 1.69729e-06 2.50747e-05 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| effects of ||| 0.00050025 0.0116562 8.48644e-07 7.40489e-07 2.718 ||| 0-1 ||| 1999 1.17835e+06 +en ||| effects on ||| 0.00419287 0.22993 1.69729e-06 4.50953e-06 2.718 ||| 0-1 ||| 477 1.17835e+06 +en ||| effects upon ||| 0.0526316 0.114601 8.48644e-07 4.79958e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| effects within ||| 0.333333 0.369196 8.48644e-07 6.02008e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| efficiency in buildings ||| 0.333333 0.605812 8.48644e-07 4.91335e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| efficiency in ||| 0.00607903 0.605812 1.69729e-06 6.46494e-06 2.718 ||| 0-1 ||| 329 1.17835e+06 +en ||| efficient as ||| 0.037037 0.066968 8.48644e-07 3.48965e-07 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| efficiently by equipping ||| 1 0.0468744 8.48644e-07 5.05322e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| efficiently by ||| 0.0588235 0.0468744 8.48644e-07 4.59383e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| effort and of meticulous training , with ||| 1 0.0535436 8.48644e-07 1.18313e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| effort for ||| 0.0333333 0.0286209 8.48644e-07 1.01821e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| effort in ||| 0.0352941 0.605812 5.09187e-06 4.08676e-05 2.718 ||| 0-1 ||| 170 1.17835e+06 +en ||| effort into ||| 0.0471698 0.525896 4.24322e-06 1.95915e-06 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| effort on ||| 0.04 0.22993 2.54593e-06 7.34978e-06 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| effort to deprive working people ||| 0.5 0.0029456 8.48644e-07 7.50744e-19 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| effort to deprive working ||| 0.5 0.0029456 8.48644e-07 8.52924e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| effort to prevent ||| 0.0454545 0.0247351 1.69729e-06 1.27116e-10 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| effort to ||| 0.00320513 0.0247351 4.24322e-06 2.48758e-06 2.718 ||| 0-1 ||| 1560 1.17835e+06 +en ||| efforts , during ||| 1 0.226251 8.48644e-07 4.19278e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| efforts in ||| 0.0126582 0.605812 6.78915e-06 5.61526e-05 2.718 ||| 0-1 ||| 632 1.17835e+06 +en ||| efforts initially ||| 1 0.144202 8.48644e-07 2.40768e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| efforts made in ||| 0.03125 0.605812 8.48644e-07 1.17628e-07 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| efforts of ||| 0.00103093 0.0116562 8.48644e-07 1.65826e-06 2.718 ||| 0-1 ||| 970 1.17835e+06 +en ||| efforts on ||| 0.00961538 0.22993 2.54593e-06 1.00987e-05 2.718 ||| 0-1 ||| 312 1.17835e+06 +en ||| efforts over ||| 0.0357143 0.157937 8.48644e-07 4.87276e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| efforts to be made ||| 0.0526316 0.0247351 8.48644e-07 1.29759e-10 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| efforts to be ||| 0.030303 0.0247351 8.48644e-07 6.19435e-08 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| efforts to ensure ||| 0.00671141 0.0247351 8.48644e-07 1.53262e-09 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| efforts to equalise ||| 0.25 0.0247351 8.48644e-07 2.39258e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| efforts to maintain ||| 0.047619 0.0247351 8.48644e-07 1.56201e-10 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| efforts to move towards ||| 0.5 0.0616136 8.48644e-07 1.64583e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| efforts to ||| 0.00276413 0.0247351 7.6378e-06 3.41797e-06 2.718 ||| 0-1 ||| 3256 1.17835e+06 +en ||| efforts towards ||| 0.00531915 0.0616136 8.48644e-07 1.21138e-07 2.718 ||| 0-1 ||| 188 1.17835e+06 +en ||| efforts within ||| 0.0625 0.369196 8.48644e-07 1.34814e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| eight conclusions which the Committee on Fisheries ||| 1 0.22993 8.48644e-07 5.08804e-24 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| eight conclusions which the Committee on ||| 1 0.22993 8.48644e-07 7.82776e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| eight soldiers were killed a few days ||| 1 0.0005269 8.48644e-07 6.94294e-29 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| eight soldiers were killed a few ||| 1 0.0005269 8.48644e-07 1.08994e-24 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| eight soldiers were killed a ||| 1 0.0005269 8.48644e-07 6.21759e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| eight soldiers were killed ||| 1 0.0005269 8.48644e-07 1.4027e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| eight soldiers were ||| 1 0.0005269 8.48644e-07 5.89371e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| eight soldiers ||| 0.333333 0.0005269 8.48644e-07 3.29e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| eight ||| 0.000490196 0.0005269 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2040 1.17835e+06 +en ||| either , at ||| 1 0.321886 8.48644e-07 4.13024e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| either , in ||| 0.2 0.605812 8.48644e-07 4.76792e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| either , on ||| 1 0.22993 8.48644e-07 8.57481e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| either , to ||| 0.2 0.0247351 8.48644e-07 2.9022e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| either above ||| 0.5 0.0146514 8.48644e-07 9.54112e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| either agreeing to them ||| 1 0.0247351 8.48644e-07 6.3321e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| either agreeing to ||| 1 0.0247351 8.48644e-07 2.36061e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| either as ||| 0.0140845 0.066968 8.48644e-07 1.55739e-05 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| either at ||| 0.08 0.321886 5.09187e-06 3.46337e-05 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| either before ||| 0.0714286 0.0175291 8.48644e-07 2.95151e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| either for ||| 0.00714286 0.0286209 8.48644e-07 9.9612e-06 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| either from ||| 0.0147059 0.0308834 8.48644e-07 3.29446e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| either in the ||| 0.0165289 0.605812 1.69729e-06 2.45451e-05 2.718 ||| 0-1 ||| 121 1.17835e+06 +en ||| either in this Chamber ||| 0.25 0.605812 8.48644e-07 6.79417e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| either in this ||| 0.0833333 0.605812 8.48644e-07 2.58333e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| either in ||| 0.133333 0.605812 4.24322e-05 0.00039981 2.718 ||| 0-1 ||| 375 1.17835e+06 +en ||| either inside their own country or across ||| 1 0.188717 8.48644e-07 1.37329e-23 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| either inside their own country or ||| 1 0.188717 8.48644e-07 1.33849e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| either inside their own country ||| 1 0.188717 8.48644e-07 1.17072e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| either inside their own ||| 1 0.188717 8.48644e-07 3.25292e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| either inside their ||| 1 0.188717 8.48644e-07 1.91879e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| either inside ||| 0.25 0.188717 8.48644e-07 1.65541e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| either on its ||| 0.5 0.22993 8.48644e-07 1.02441e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| either on the ||| 0.030303 0.22993 8.48644e-07 4.41427e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| either on ||| 0.0714286 0.22993 5.09187e-06 7.19033e-05 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| either under ||| 0.111111 0.205566 8.48644e-07 4.89575e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| either we can ||| 0.25 0.0167693 8.48644e-07 3.37651e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| either we ||| 0.02 0.0167693 8.48644e-07 1.13523e-06 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| either within ||| 0.0769231 0.369196 1.69729e-06 9.59886e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| either ||| 0.00935393 0.0167693 3.64917e-05 0.0001 2.718 ||| 0-0 ||| 4597 1.17835e+06 +en ||| elaborated in ||| 0.111111 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| elaborated upon in ||| 0.5 0.605812 8.48644e-07 1.53348e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| elaborating on ||| 0.125 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| elderly people in ||| 0.0384615 0.605812 8.48644e-07 2.92651e-09 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| elected councillor , have during ||| 1 0.226251 8.48644e-07 1.01156e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| elected on ||| 0.0175439 0.22993 8.48644e-07 1.85198e-06 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| elected representatives of a ||| 0.5 0.0116562 8.48644e-07 4.36742e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| elected representatives of ||| 0.00769231 0.0116562 8.48644e-07 9.85301e-12 2.718 ||| 0-2 ||| 130 1.17835e+06 +en ||| election in ||| 0.0319149 0.605812 2.54593e-06 1.09904e-05 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| elections in the ||| 0.0169492 0.605812 8.48644e-07 1.02058e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| elections in ||| 0.00875657 0.605812 4.24322e-06 1.66241e-05 2.718 ||| 0-1 ||| 571 1.17835e+06 +en ||| electricity in ||| 0.0217391 0.303061 8.48644e-07 3.23247e-07 2.718 ||| 0-0 0-1 ||| 46 1.17835e+06 +en ||| electricity used in ||| 0.5 0.605812 8.48644e-07 2.00085e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| electronic money market in ||| 1 0.605812 8.48644e-07 1.60297e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| element in ||| 0.0387597 0.605812 4.24322e-06 2.00875e-05 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| element of ||| 0.0104822 0.0116562 4.24322e-06 5.9321e-07 2.718 ||| 0-1 ||| 477 1.17835e+06 +en ||| elements of ||| 0.00162075 0.0116562 8.48644e-07 4.85477e-07 2.718 ||| 0-1 ||| 617 1.17835e+06 +en ||| elephants in ||| 0.142857 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| elevated to ||| 0.142857 0.0247351 8.48644e-07 3.93516e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| eligible under ||| 0.0434783 0.205566 8.48644e-07 4.86296e-08 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| eliminate misconceived ideas is to ||| 1 0.0247351 8.48644e-07 2.50334e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| eloquently at ||| 1 0.321886 8.48644e-07 4.40022e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| else , in ||| 0.333333 0.605812 8.48644e-07 6.49821e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| else . in ||| 1 0.605812 8.48644e-07 1.65051e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| else another as ||| 1 0.066968 8.48644e-07 5.11752e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| else in ||| 0.153061 0.605812 1.27297e-05 5.44902e-05 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| else on ||| 0.166667 0.22993 2.54593e-06 9.79971e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| else ||| 0.000337838 0.0001821 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2960 1.17835e+06 +en ||| elsewhere , ||| 0.00195312 0.226899 8.48644e-07 9.40443e-05 2.718 ||| 0-0 ||| 512 1.17835e+06 +en ||| elsewhere . if that is the case ||| 1 0.226899 8.48644e-07 6.91177e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| elsewhere . if that is the ||| 1 0.226899 8.48644e-07 6.46021e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| elsewhere . if that is ||| 1 0.226899 8.48644e-07 1.05229e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| elsewhere . if that ||| 1 0.226899 8.48644e-07 3.35754e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| elsewhere . if ||| 1 0.226899 8.48644e-07 1.99597e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| elsewhere . ||| 0.00139082 0.226899 8.48644e-07 2.38867e-06 2.718 ||| 0-0 ||| 719 1.17835e+06 +en ||| elsewhere as ||| 0.1 0.066968 8.48644e-07 6.67351e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| elsewhere in rural China ||| 0.333333 0.605812 8.48644e-07 5.04643e-15 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| elsewhere in rural ||| 0.333333 0.605812 8.48644e-07 1.91879e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| elsewhere in the ||| 0.00421941 0.605812 8.48644e-07 1.05177e-06 2.718 ||| 0-1 ||| 237 1.17835e+06 +en ||| elsewhere in ||| 0.0662252 0.605812 1.69729e-05 1.71321e-05 2.718 ||| 0-1 ||| 302 1.17835e+06 +en ||| elsewhere ||| 0.00465904 0.226899 9.33509e-06 0.0007886 2.718 ||| 0-0 ||| 2361 1.17835e+06 +en ||| embark on ||| 0.00414938 0.22993 8.48644e-07 6.56082e-07 2.718 ||| 0-1 ||| 241 1.17835e+06 +en ||| embark upon a ||| 0.0344828 0.114601 8.48644e-07 3.09519e-10 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| embark upon ||| 0.0224719 0.114601 1.69729e-06 6.98281e-09 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| embarked on ||| 0.00714286 0.22993 8.48644e-07 2.07621e-07 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| embarking upon ||| 0.0344828 0.114601 8.48644e-07 3.80077e-09 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| embedded in ||| 0.0163934 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| embodied in ||| 0.0125 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| embroiled in ||| 0.0416667 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| emerge from the 1994 reports tell a ||| 1 0.0308834 8.48644e-07 5.49427e-24 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| emerge from the 1994 reports tell ||| 1 0.0308834 8.48644e-07 1.23952e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| emerge from the 1994 reports ||| 1 0.0308834 8.48644e-07 1.26224e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| emerge from the 1994 ||| 1 0.0308834 8.48644e-07 2.53972e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| emerge from the ||| 0.00680272 0.0308834 8.48644e-07 7.05478e-09 2.718 ||| 0-1 ||| 147 1.17835e+06 +en ||| emerge from ||| 0.0130435 0.0308834 2.54593e-06 1.14914e-07 2.718 ||| 0-1 ||| 230 1.17835e+06 +en ||| emerge in ||| 0.192308 0.605812 4.24322e-06 1.39458e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| emerge reflect , in ||| 0.333333 0.605812 8.48644e-07 5.68781e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| emerged as ||| 0.04 0.066968 8.48644e-07 4.33508e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| emerged at ||| 0.1 0.321886 8.48644e-07 9.64048e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| emerged from ||| 0.0204082 0.0308834 3.39458e-06 9.17029e-08 2.718 ||| 0-1 ||| 196 1.17835e+06 +en ||| emerged in ||| 0.0144928 0.605812 8.48644e-07 1.11289e-05 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| emerged that ||| 0.0185185 0.0017499 8.48644e-07 2.51893e-08 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| emergent ||| 0.0263158 0.117647 8.48644e-07 4.1e-06 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| emerging and developing on ||| 0.5 0.22993 8.48644e-07 1.11842e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| emerging from a long period ||| 1 0.0308834 8.48644e-07 1.97145e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| emerging from a long ||| 1 0.0308834 8.48644e-07 1.12977e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| emerging from a ||| 0.1 0.0308834 8.48644e-07 3.33955e-09 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| emerging from ||| 0.015873 0.0308834 1.69729e-06 7.5341e-08 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| emerging in ||| 0.0612245 0.605812 2.54593e-06 9.14327e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| emerging ||| 0.00150038 0.0033069 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 1333 1.17835e+06 +en ||| emigrating in ever-increasing ||| 0.5 0.605812 8.48644e-07 5.35666e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| emigrating in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| eminently suitable for ||| 0.166667 0.0286209 8.48644e-07 6.2013e-13 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| emotion in ||| 0.0833333 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| emotionally in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| emphasis in ||| 0.0166667 0.605812 8.48644e-07 2.3597e-05 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| emphasis on the ||| 0.00238663 0.22993 8.48644e-07 2.60533e-07 2.718 ||| 0-1 ||| 419 1.17835e+06 +en ||| emphasis on those players to ||| 1 0.22993 8.48644e-07 4.61461e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| emphasis on those players ||| 1 0.22993 8.48644e-07 5.19323e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| emphasis on those ||| 0.125 0.22993 8.48644e-07 3.07292e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| emphasis on ||| 0.0150721 0.22993 1.95188e-05 4.24377e-06 2.718 ||| 0-1 ||| 1526 1.17835e+06 +en ||| emphasis will be placed in ||| 1 0.605812 8.48644e-07 4.63197e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| emphasis ||| 0.00191644 0.0033428 4.24322e-06 8.8e-06 2.718 ||| 0-0 ||| 2609 1.17835e+06 +en ||| emphasise that social policy is ||| 1 0.207288 8.48644e-07 1.91705e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| emphasise that social policy ||| 1 0.207288 8.48644e-07 6.11673e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| emphasise that social ||| 1 0.207288 8.48644e-07 1.55365e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| emphasise that ||| 0.00122249 0.207288 8.48644e-07 1.50402e-05 2.718 ||| 0-0 ||| 818 1.17835e+06 +en ||| emphasise ||| 0.00390778 0.207288 8.48644e-06 0.0008941 2.718 ||| 0-0 ||| 2559 1.17835e+06 +en ||| emphasised ||| 0.00300661 0.152435 4.24322e-06 0.0002769 2.718 ||| 0-0 ||| 1663 1.17835e+06 +en ||| emphasises ||| 0.00575374 0.22981 4.24322e-06 0.0002382 2.718 ||| 0-0 ||| 869 1.17835e+06 +en ||| emphasising to ||| 0.25 0.239496 8.48644e-07 1.37819e-05 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| emphasising ||| 0.0113269 0.239496 5.94051e-06 0.0001551 2.718 ||| 0-0 ||| 618 1.17835e+06 +en ||| emphasize once ||| 0.25 0.138965 8.48644e-07 4.25977e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| emphasize relates to ||| 1 0.138965 8.48644e-07 2.59929e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| emphasize relates ||| 1 0.138965 8.48644e-07 2.92521e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| emphasize the ||| 0.00952381 0.138965 8.48644e-07 6.39089e-06 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| emphasize ||| 0.0124481 0.138965 5.09187e-06 0.0001041 2.718 ||| 0-0 ||| 482 1.17835e+06 +en ||| emphasized , ||| 0.037037 0.111304 8.48644e-07 5.18758e-06 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| emphasized - ||| 0.0909091 0.111304 8.48644e-07 1.64086e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| emphasized in ||| 0.0277778 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| emphasized ||| 0.0224719 0.111304 6.78915e-06 4.35e-05 2.718 ||| 0-0 ||| 356 1.17835e+06 +en ||| emphasizes the ||| 0.0153846 0.135659 8.48644e-07 1.46112e-06 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| emphasizes ||| 0.00578035 0.135659 8.48644e-07 2.38e-05 2.718 ||| 0-0 ||| 173 1.17835e+06 +en ||| employ in ||| 0.333333 0.605812 1.69729e-06 3.14011e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| employed , as ||| 0.5 0.066968 1.69729e-06 6.17801e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| employed at ||| 0.0909091 0.321886 8.48644e-07 1.15206e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| employed by ||| 0.00699301 0.0468744 8.48644e-07 2.45004e-07 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| employed in ||| 0.0163934 0.605812 4.24322e-06 1.32993e-05 2.718 ||| 0-1 ||| 305 1.17835e+06 +en ||| employed on ||| 0.0344828 0.22993 8.48644e-07 2.39179e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| employed to ||| 0.0384615 0.0247351 8.48644e-07 8.09519e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| employees at ||| 0.047619 0.321886 8.48644e-07 5.48027e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| employees from ||| 0.0285714 0.0308834 8.48644e-07 5.21299e-08 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| employers in ||| 0.025641 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| employment compared to ||| 0.333333 0.0247351 8.48644e-07 5.14061e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| employment in ||| 0.00497512 0.605812 3.39458e-06 2.25811e-05 2.718 ||| 0-1 ||| 804 1.17835e+06 +en ||| employment opportunities in ||| 0.0526316 0.605812 8.48644e-07 7.72273e-10 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| empty ||| 0.00236407 0.0229167 1.69729e-06 1.5e-05 2.718 ||| 0-0 ||| 846 1.17835e+06 +en ||| en route ||| 0.0166667 0.433862 8.48644e-07 3.0132e-09 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| en ||| 0.510204 0.433862 8.48644e-05 0.0001116 2.718 ||| 0-0 ||| 196 1.17835e+06 +en ||| enable Member States to ||| 0.0588235 0.0247351 8.48644e-07 6.8151e-13 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| enable it to ||| 0.00671141 0.0247351 8.48644e-07 4.92858e-08 2.718 ||| 0-2 ||| 149 1.17835e+06 +en ||| enable us to ||| 0.0017301 0.0247351 8.48644e-07 7.98795e-09 2.718 ||| 0-2 ||| 578 1.17835e+06 +en ||| enabling her to ||| 1 0.0247351 8.48644e-07 2.58511e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| enabling it to intervene in ||| 1 0.605812 8.48644e-07 1.77579e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| enacted in the form ||| 1 0.605812 8.48644e-07 6.45236e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| enacted in the ||| 0.1 0.605812 8.48644e-07 1.41748e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| enacted in ||| 0.0909091 0.605812 1.69729e-06 2.30891e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| enclave in ||| 0.2 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| enclave with ||| 1 0.0535436 8.48644e-07 1.28248e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| encompassing ||| 0.0117647 0.0234742 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| encounter it in their ||| 1 0.605812 8.48644e-07 5.13997e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| encounter it in ||| 1 0.605812 8.48644e-07 4.43445e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| encountered by ||| 0.00925926 0.0468744 8.48644e-07 3.40284e-08 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| encourage in ||| 0.0714286 0.605812 8.48644e-07 1.77786e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| encouraged across ||| 0.333333 0.274879 8.48644e-07 3.69774e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| encouragement to ||| 0.00909091 0.0247351 8.48644e-07 2.64218e-07 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| encouraging ||| 0.000257202 0.0003207 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 3888 1.17835e+06 +en ||| encroach in even ||| 0.5 0.605812 8.48644e-07 1.12398e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| encroach in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| end - in a campaign ||| 0.5 0.605812 8.48644e-07 1.03806e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| end - in a ||| 0.5 0.605812 8.48644e-07 3.35943e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| end - in ||| 0.5 0.605812 8.48644e-07 7.57894e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| end in the ||| 0.0625 0.605812 8.48644e-07 1.23349e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| end in ||| 0.00875274 0.605812 3.39458e-06 0.000200921 2.718 ||| 0-1 ||| 457 1.17835e+06 +en ||| end is in sight ||| 0.142857 0.605812 8.48644e-07 1.44833e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| end is in ||| 0.111111 0.605812 8.48644e-07 6.29708e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| end of ||| 0.00185338 0.0116562 7.6378e-06 5.93346e-06 2.718 ||| 0-1 ||| 4856 1.17835e+06 +en ||| end on ||| 0.015625 0.22993 8.48644e-07 3.61344e-05 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| end to the kind of ||| 1 0.0247351 8.48644e-07 1.99189e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| end to the kind ||| 1 0.0247351 8.48644e-07 3.66399e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| end to the ||| 0.00120048 0.0247351 8.48644e-07 7.50817e-07 2.718 ||| 0-1 ||| 833 1.17835e+06 +en ||| end to this . as ||| 1 0.066968 8.48644e-07 1.36111e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| end to ||| 0.00356053 0.0247351 5.94051e-06 1.22299e-05 2.718 ||| 0-1 ||| 1966 1.17835e+06 +en ||| end up in the ||| 0.0163934 0.605812 8.48644e-07 4.20682e-08 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| end up in ||| 0.0348837 0.605812 5.09187e-06 6.85241e-07 2.718 ||| 0-2 ||| 172 1.17835e+06 +en ||| end up on the ||| 0.0526316 0.22993 8.48644e-07 7.56569e-09 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| end up on ||| 0.0606061 0.22993 1.69729e-06 1.23236e-07 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| end up where ||| 0.1 0.247783 8.48644e-07 1.26379e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| end up with ||| 0.0129032 0.0535436 1.69729e-06 1.73007e-08 2.718 ||| 0-2 ||| 155 1.17835e+06 +en ||| end up ||| 0.003517 0.0147069 2.54593e-06 3.00219e-07 2.718 ||| 0-1 ||| 853 1.17835e+06 +en ||| endanger ||| 0.00282486 0.312968 8.48644e-07 0.0001708 2.718 ||| 0-0 ||| 354 1.17835e+06 +en ||| endangered species ||| 0.00826446 0.272 8.48644e-07 1.369e-09 2.718 ||| 0-0 ||| 121 1.17835e+06 +en ||| endangered ||| 0.00970874 0.272 2.54593e-06 9.25e-05 2.718 ||| 0-0 ||| 309 1.17835e+06 +en ||| endeavour to implement ||| 0.333333 0.0247351 8.48644e-07 2.54088e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| endeavour to ||| 0.00225225 0.0247351 8.48644e-07 4.55354e-07 2.718 ||| 0-1 ||| 444 1.17835e+06 +en ||| endeavoured to drive home in ||| 1 0.605812 8.48644e-07 1.38356e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| ended in ||| 0.0291262 0.605812 2.54593e-06 9.14327e-06 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| ended up in ||| 0.0384615 0.605812 1.69729e-06 3.11831e-08 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| ending in ||| 0.025641 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| endowed with ||| 0.0289855 0.0535436 1.69729e-06 2.56496e-08 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| ends in ||| 0.0222222 0.605812 8.48644e-07 1.08057e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| ends up as ||| 0.2 0.066968 8.48644e-07 1.43554e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| ends up in ||| 0.0263158 0.605812 8.48644e-07 3.68528e-08 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| ends up on ||| 0.0833333 0.22993 8.48644e-07 6.62774e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| endure at ||| 1 0.321886 8.48644e-07 2.32012e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| endure in ||| 0.125 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| enduring belief in ||| 0.333333 0.605812 8.48644e-07 4.42202e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| energies into ||| 0.0714286 0.525896 8.48644e-07 1.50534e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| energies to ||| 0.0227273 0.0247351 8.48644e-07 1.91136e-07 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| energy , of ||| 1 0.0116562 8.48644e-07 1.44576e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| energy by ||| 0.0454545 0.0468744 8.48644e-07 7.56281e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| energy dependence on third countries ||| 0.25 0.22993 8.48644e-07 5.24783e-19 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| energy dependence on third ||| 0.25 0.22993 8.48644e-07 1.3821e-15 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| energy dependence on ||| 0.125 0.22993 8.48644e-07 2.9532e-11 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| energy efficiency in buildings ||| 0.0185185 0.605812 8.48644e-07 4.36797e-15 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| energy efficiency in ||| 0.00505051 0.605812 8.48644e-07 5.74733e-10 2.718 ||| 0-2 ||| 198 1.17835e+06 +en ||| energy in ||| 0.00444444 0.605812 8.48644e-07 4.10523e-05 2.718 ||| 0-1 ||| 225 1.17835e+06 +en ||| energy on ||| 0.0512821 0.22993 1.69729e-06 7.383e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| energy source in ||| 0.25 0.605812 8.48644e-07 2.61503e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| energy to ||| 0.00740741 0.0247351 8.48644e-07 2.49883e-06 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| enforced at ||| 0.1 0.321886 8.48644e-07 4.60023e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| enforced in ||| 0.0606061 0.605812 1.69729e-06 5.31048e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| enforced ||| 0.00140845 0.0148305 8.48644e-07 9.5e-06 2.718 ||| 0-0 ||| 710 1.17835e+06 +en ||| enforcement in ||| 0.0357143 0.605812 8.48644e-07 6.00315e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| enforcing ||| 0.00195695 0.0017986 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 511 1.17835e+06 +en ||| engage in a process ||| 0.166667 0.605812 8.48644e-07 4.2527e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| engage in a ||| 0.00735294 0.605812 8.48644e-07 9.94784e-07 2.718 ||| 0-1 ||| 136 1.17835e+06 +en ||| engage in discussions ||| 0.111111 0.605812 8.48644e-07 9.29122e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| engage in such activities ||| 0.25 0.605812 8.48644e-07 3.6913e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| engage in such ||| 0.0909091 0.605812 8.48644e-07 4.64314e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| engage in ||| 0.0152941 0.605812 1.10324e-05 2.24426e-05 2.718 ||| 0-1 ||| 850 1.17835e+06 +en ||| engage upon ||| 1 0.114601 8.48644e-07 4.29575e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| engage with ||| 0.00606061 0.0535436 8.48644e-07 5.66623e-07 2.718 ||| 0-1 ||| 165 1.17835e+06 +en ||| engaged in the ||| 0.0125 0.605812 8.48644e-07 1.16233e-06 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| engaged in ||| 0.0224599 0.605812 1.78215e-05 1.8933e-05 2.718 ||| 0-1 ||| 935 1.17835e+06 +en ||| engaging in a ||| 0.0384615 0.605812 8.48644e-07 2.72235e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| engaging in budget support ||| 1 0.605812 8.48644e-07 2.59121e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| engaging in budget ||| 1 0.605812 8.48644e-07 7.57884e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| engaging in ||| 0.0267857 0.605812 5.09187e-06 6.14169e-06 2.718 ||| 0-1 ||| 224 1.17835e+06 +en ||| engineers in ||| 0.333333 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| engulfed in ||| 0.0625 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| enhanced cooperation , on ' ||| 1 0.22993 8.48644e-07 3.72844e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| enhanced cooperation , on ||| 1 0.22993 8.48644e-07 1.08546e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| enhanced with ||| 0.166667 0.0535436 8.48644e-07 1.38741e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| enjoy as ||| 0.166667 0.066968 8.48644e-07 6.99729e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| enjoy during ||| 0.5 0.226251 8.48644e-07 1.12472e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| enjoy in ||| 0.142857 0.605812 8.48644e-07 1.79633e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| enjoy under ||| 0.2 0.205566 8.48644e-07 2.19964e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| enjoyed across ||| 1 0.274879 8.48644e-07 4.72489e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| enjoyed by ||| 0.00458716 0.0468744 8.48644e-07 1.95663e-07 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| enjoyed in certain ||| 1 0.605812 8.48644e-07 3.02698e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| enjoyed in the ||| 0.0769231 0.605812 8.48644e-07 6.5204e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| enjoyed in ||| 0.166667 0.605812 3.39458e-06 1.0621e-05 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| enjoys in ||| 0.5 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| enjoys ||| 0.0022779 0.0018939 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 439 1.17835e+06 +en ||| enlarged upon in ||| 0.5 0.605812 8.48644e-07 6.6816e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| enlargement in ||| 0.0118343 0.605812 1.69729e-06 1.39458e-05 2.718 ||| 0-1 ||| 169 1.17835e+06 +en ||| enlargement where ||| 1 0.247783 8.48644e-07 2.57201e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| enormous attention from ||| 1 0.0308834 8.48644e-07 2.86351e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| enough , in ||| 0.0909091 0.605812 8.48644e-07 9.09749e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| enough , while ||| 0.333333 0.0151276 8.48644e-07 5.38819e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| enough in ||| 0.0403226 0.605812 4.24322e-06 7.62862e-05 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| enough on ||| 0.016129 0.22993 8.48644e-07 1.37196e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| enough partly to blame ||| 0.5 0.294632 8.48644e-07 2.88369e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| enough partly to ||| 0.5 0.294632 8.48644e-07 1.21164e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| enough partly ||| 0.5 0.294632 8.48644e-07 1.36356e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| enough to make ||| 0.03125 0.0247351 8.48644e-07 8.06946e-09 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| enough to witness ||| 1 0.0247351 8.48644e-07 6.68663e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| enough to ||| 0.00279851 0.0247351 2.54593e-06 4.64349e-06 2.718 ||| 0-1 ||| 1072 1.17835e+06 +en ||| enough under ||| 0.5 0.205566 8.48644e-07 9.3414e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| enough votes in ||| 0.5 0.605812 8.48644e-07 2.76919e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| enquiries in ||| 0.25 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| enshrined as they are in ||| 1 0.605812 8.48644e-07 3.45381e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| enshrined in ||| 0.0126743 0.605812 8.48644e-06 6.83436e-06 2.718 ||| 0-1 ||| 789 1.17835e+06 +en ||| enshrined to ||| 1 0.0247351 8.48644e-07 4.16003e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ensue , in ||| 1 0.605812 8.48644e-07 1.37674e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ensure an ongoing supply of ||| 1 0.216817 8.48644e-07 2.74141e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ensure an ongoing supply ||| 1 0.216817 8.48644e-07 5.04269e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ensure an ongoing ||| 1 0.216817 8.48644e-07 9.79163e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ensure lasting stability in our continent . ||| 1 0.605812 8.48644e-07 2.10018e-24 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ensure lasting stability in our continent ||| 1 0.605812 8.48644e-07 6.93358e-22 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ensure lasting stability in our ||| 1 0.605812 8.48644e-07 6.0292e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ensure lasting stability in ||| 1 0.605812 8.48644e-07 4.37089e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ensure that at ||| 0.0588235 0.321886 8.48644e-07 3.01727e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| ensure that ||| 0.000123031 0.0017499 1.69729e-06 4.68668e-07 2.718 ||| 0-1 ||| 16256 1.17835e+06 +en ||| ensure they have the skills needed for ||| 1 0.0286209 8.48644e-07 1.97003e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| ensure ||| 3.44436e-05 0.0001945 8.48644e-07 4.1e-06 2.718 ||| 0-0 ||| 29033 1.17835e+06 +en ||| ensuring that ||| 0.000326264 0.0017499 8.48644e-07 1.21452e-07 2.718 ||| 0-1 ||| 3065 1.17835e+06 +en ||| ensuring ||| 0.000133369 0.0001554 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 7498 1.17835e+06 +en ||| entangled in ||| 0.0384615 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| enter , in ||| 1 0.605812 8.48644e-07 2.71493e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| enter good ||| 1 0.194429 8.48644e-07 2.53699e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| enter in ||| 0.0909091 0.605812 1.69729e-06 2.27658e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| enter into a competition of ||| 0.5 0.525896 8.48644e-07 9.54654e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| enter into a competition ||| 0.5 0.525896 8.48644e-07 1.75604e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| enter into a ||| 0.0134228 0.525896 1.69729e-06 4.83758e-08 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| enter into an ||| 0.0322581 0.525896 8.48644e-07 4.85081e-09 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| enter into discussion ||| 0.1 0.525896 8.48644e-07 9.42943e-11 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| enter into force along ||| 1 0.155535 8.48644e-07 6.85315e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| enter into force with regard to ||| 1 0.0247351 8.48644e-07 1.05433e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| enter into ||| 0.0134907 0.525896 1.35783e-05 1.09137e-06 2.718 ||| 0-1 ||| 1186 1.17835e+06 +en ||| enter its port ||| 1 0.194429 8.48644e-07 9.26961e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| enter its ||| 0.0833333 0.194429 8.48644e-07 6.96963e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| enter ||| 0.0217647 0.194429 3.13998e-05 0.0004892 2.718 ||| 0-0 ||| 1700 1.17835e+06 +en ||| entered for ||| 0.25 0.0803437 8.48644e-07 2.17678e-06 2.718 ||| 0-0 0-1 ||| 4 1.17835e+06 +en ||| entered in ||| 0.0337079 0.605812 2.54593e-06 1.4777e-05 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| entered into force in ||| 0.0178571 0.605812 8.48644e-07 2.5822e-12 2.718 ||| 0-3 ||| 56 1.17835e+06 +en ||| entered into ||| 0.00730689 0.525896 5.94051e-06 7.08394e-07 2.718 ||| 0-1 ||| 958 1.17835e+06 +en ||| entered on ||| 0.0555556 0.22993 8.48644e-07 2.65755e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| entered the Union , then drive through ||| 0.333333 0.0366102 8.48644e-07 5.9725e-21 2.718 ||| 0-6 ||| 3 1.17835e+06 +en ||| entered ||| 0.0343249 0.132067 2.54593e-05 0.0001892 2.718 ||| 0-0 ||| 874 1.17835e+06 +en ||| entering a ||| 0.0125 0.284907 8.48644e-07 1.52037e-05 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| entering into ||| 0.012605 0.525896 2.54593e-06 3.43128e-07 2.718 ||| 0-1 ||| 238 1.17835e+06 +en ||| entering ||| 0.024666 0.284907 2.03675e-05 0.000343 2.718 ||| 0-0 ||| 973 1.17835e+06 +en ||| enterprise in question ||| 0.2 0.605812 8.48644e-07 2.75063e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| enterprise in ||| 0.0714286 0.605812 2.54593e-06 3.32482e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| enterprise on ||| 1 0.22993 8.48644e-07 5.97948e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| enterprises and hence fitting in ||| 1 0.605812 8.48644e-07 1.7474e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| enterprises in ||| 0.00429185 0.605812 8.48644e-07 7.48085e-06 2.718 ||| 0-1 ||| 233 1.17835e+06 +en ||| enterprises where ||| 0.25 0.247783 8.48644e-07 1.37969e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| enters into force , there will be ||| 1 0.525896 8.48644e-07 9.2855e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| enters into force , there will ||| 1 0.525896 8.48644e-07 5.12363e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| enters into force , there ||| 1 0.525896 8.48644e-07 5.92245e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| enters into force , ||| 0.0175439 0.525896 8.48644e-07 1.93209e-12 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| enters into force ||| 0.00238095 0.525896 8.48644e-07 1.62014e-11 2.718 ||| 0-1 ||| 420 1.17835e+06 +en ||| enters into ||| 0.0097561 0.525896 1.69729e-06 9.51904e-08 2.718 ||| 0-1 ||| 205 1.17835e+06 +en ||| enters ||| 0.0128755 0.0933063 5.09187e-06 3.13e-05 2.718 ||| 0-0 ||| 466 1.17835e+06 +en ||| entertainment in ||| 0.333333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| enthusiasm to ||| 0.0666667 0.0247351 8.48644e-07 1.82704e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| enthusiastic about ||| 0.0104167 0.0401564 8.48644e-07 1.23242e-08 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| enthusiastically made at ||| 1 0.321886 8.48644e-07 2.68148e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| enthusiastically received by ||| 1 0.0468744 8.48644e-07 2.43916e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| entire word in ||| 0.125 0.605812 8.48644e-07 3.72314e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| entirely along the ||| 1 0.155535 8.48644e-07 3.23302e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| entirely along ||| 1 0.155535 8.48644e-07 5.26621e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| entirely around ||| 0.333333 0.159384 8.48644e-07 7.64014e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| entirely at ||| 0.0416667 0.321886 8.48644e-07 2.64813e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| entirely consistent with ||| 0.027027 0.0535436 8.48644e-07 2.13794e-11 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| entirely in ||| 0.0271739 0.605812 4.24322e-06 3.05699e-05 2.718 ||| 0-1 ||| 184 1.17835e+06 +en ||| entirely innocent in ||| 1 0.605812 8.48644e-07 1.65078e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| entirely on ||| 0.0224719 0.22993 1.69729e-06 5.4978e-06 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| entirely with ||| 0.015625 0.0535436 8.48644e-07 7.71819e-07 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| entirely ||| 0.000868056 0.0010046 3.39458e-06 3.4e-06 2.718 ||| 0-0 ||| 4608 1.17835e+06 +en ||| entities operating in ||| 0.333333 0.605812 1.69729e-06 1.12213e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| entitled & ||| 0.333333 0.0223684 8.48644e-07 5.6724e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| entitled ' ||| 0.00246305 0.0032578 8.48644e-07 1.33448e-08 2.718 ||| 0-1 ||| 406 1.17835e+06 +en ||| entitled , on ||| 1 0.22993 8.48644e-07 4.84301e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| entitled to ||| 0.00126183 0.0247351 1.69729e-06 1.3745e-06 2.718 ||| 0-1 ||| 1585 1.17835e+06 +en ||| entitlement of posted workers to annual holidays ||| 1 0.0247351 8.48644e-07 1.01916e-28 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| entitlement of posted workers to annual ||| 1 0.0247351 8.48644e-07 4.63253e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| entitlement of posted workers to ||| 1 0.0247351 8.48644e-07 1.60852e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| entity in ||| 0.176471 0.605812 2.54593e-06 2.49362e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| entity within ||| 0.5 0.369196 8.48644e-07 5.98682e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| entrants of ||| 0.333333 0.0116562 8.48644e-07 5.4548e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| entrenched in ||| 0.130435 0.605812 2.54593e-06 1.4777e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| entrenchment in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| entries ||| 0.0163934 0.0421053 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| entrusted to it by ||| 0.0714286 0.0468744 8.48644e-07 7.79681e-11 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| entrusted to our care ||| 0.25 0.0247351 8.48644e-07 2.28254e-14 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| entrusted to our ||| 0.25 0.0247351 8.48644e-07 2.24881e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| entrusted to ||| 0.00775194 0.0247351 8.48644e-07 1.63028e-07 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| entry in ||| 0.037037 0.605812 1.69729e-06 8.49677e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| entry into ||| 0.00111919 0.525896 1.69729e-06 4.07326e-07 2.718 ||| 0-1 ||| 1787 1.17835e+06 +en ||| entry on ||| 0.1 0.22993 8.48644e-07 1.52809e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| environment ] at ||| 1 0.321886 8.48644e-07 8.3481e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| environment in which to do ||| 1 0.605812 8.48644e-07 6.68152e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| environment in which to ||| 1 0.605812 8.48644e-07 1.94496e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| environment in which ||| 0.0294118 0.605812 1.69729e-06 2.18884e-07 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| environment in ||| 0.0163934 0.605812 5.09187e-06 2.57674e-05 2.718 ||| 0-1 ||| 366 1.17835e+06 +en ||| environment into subsequent ||| 0.5 0.525896 8.48644e-07 1.95171e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| environment into ||| 0.02 0.525896 8.48644e-07 1.23526e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| environment on ||| 0.0285714 0.22993 8.48644e-07 4.6341e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| environment were speaking about at ||| 1 0.321886 8.48644e-07 6.4922e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| environmental ||| 6.45203e-05 0.0019903 8.48644e-07 3.2e-05 2.718 ||| 0-0 ||| 15499 1.17835e+06 +en ||| environmentally speaking ||| 0.166667 0.0538225 8.48644e-07 2.0394e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| environmentally ||| 0.00121803 0.0035386 8.48644e-07 1.02e-05 2.718 ||| 0-0 ||| 821 1.17835e+06 +en ||| environments in ||| 0.142857 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| envisaged in ||| 0.0102041 0.605812 1.69729e-06 6.64965e-06 2.718 ||| 0-1 ||| 196 1.17835e+06 +en ||| envisages in the ||| 0.5 0.605812 8.48644e-07 6.23691e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| envisages in ||| 0.25 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| envisaging in ||| 1 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| equal , in ||| 0.5 0.605812 8.48644e-07 3.14998e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| equal partners in the ||| 0.166667 0.605812 8.48644e-07 4.15128e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| equal partners in ||| 0.0909091 0.605812 8.48644e-07 6.76195e-10 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| equality between men and women in ||| 0.0175439 0.605812 8.48644e-07 5.23883e-20 2.718 ||| 0-5 ||| 57 1.17835e+06 +en ||| equality for ||| 0.00806452 0.0286209 8.48644e-07 7.82354e-08 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| equally cooperative spirit in ||| 1 0.605812 8.48644e-07 3.40567e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| equally ||| 0.000278319 0.0004466 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 3593 1.17835e+06 +en ||| equipment at ||| 0.166667 0.321886 8.48644e-07 1.38007e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| equipment in ||| 0.0357143 0.605812 8.48644e-07 1.59314e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| equipment into ||| 0.333333 0.525896 8.48644e-07 7.63737e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| equipment within ||| 0.2 0.369196 8.48644e-07 3.82491e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| equipped for ||| 0.0277778 0.0286209 8.48644e-07 1.24256e-07 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| equipped with ||| 0.00507614 0.0535436 8.48644e-07 1.25916e-07 2.718 ||| 0-1 ||| 197 1.17835e+06 +en ||| equitable basis into ||| 1 0.525896 8.48644e-07 1.44596e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| equivalent and ||| 0.1 0.0010182 8.48644e-07 1.89154e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| equivalent in ||| 0.047619 0.605812 8.48644e-07 9.46651e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| equivalent to that of ||| 0.1 0.0116562 8.48644e-07 4.17866e-10 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| era where ||| 0.0357143 0.247783 8.48644e-07 5.79129e-08 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| erect borders around ||| 1 0.159384 8.48644e-07 6.98e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| erected on ||| 0.333333 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| error in ||| 0.0114943 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| error on a ||| 1 0.22993 8.48644e-07 3.46032e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| error on ||| 0.0588235 0.22993 8.48644e-07 7.80655e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| errors in ||| 0.0185185 0.605812 1.69729e-06 2.30891e-06 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| erupting ||| 0.0625 0.173913 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| es ) As ||| 0.333333 0.0034965 8.48644e-07 3.84334e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| escalation on ||| 0.166667 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| escape at ||| 0.5 0.321886 8.48644e-07 3.04015e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| especially , I would say ||| 0.5 0.13965 8.48644e-07 1.07538e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| especially , I would ||| 0.5 0.13965 8.48644e-07 1.12511e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| especially , I ||| 0.2 0.13965 8.48644e-07 1.91713e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| especially , for ||| 0.047619 0.0286209 8.48644e-07 1.10176e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| especially , give certain people any excuse ||| 1 0.13965 8.48644e-07 1.14642e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| especially , give certain people any ||| 1 0.13965 8.48644e-07 6.23054e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| especially , give certain people ||| 1 0.13965 8.48644e-07 4.12018e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| especially , give certain ||| 1 0.13965 8.48644e-07 4.68096e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| especially , give ||| 1 0.13965 8.48644e-07 1.64244e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| especially , ||| 0.00601202 0.13965 2.54593e-06 0.00027103 2.718 ||| 0-0 ||| 499 1.17835e+06 +en ||| especially Christians , ||| 0.5 0.13965 8.48644e-07 8.67297e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| especially Christians ||| 0.25 0.13965 8.48644e-07 7.27264e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| especially at ||| 0.0118577 0.321886 2.54593e-06 3.21216e-06 2.718 ||| 0-1 ||| 253 1.17835e+06 +en ||| especially be defended in ||| 1 0.605812 8.48644e-07 2.41926e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| especially bearing in mind ||| 0.0666667 0.605812 8.48644e-07 4.16596e-13 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| especially bearing in ||| 0.142857 0.605812 8.48644e-07 1.65381e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| especially for ||| 0.00115607 0.0841353 8.48644e-07 2.61479e-05 2.718 ||| 0-0 0-1 ||| 865 1.17835e+06 +en ||| especially from ||| 0.00666667 0.0852665 8.48644e-07 8.64785e-06 2.718 ||| 0-0 0-1 ||| 150 1.17835e+06 +en ||| especially glad ||| 0.0454545 0.13965 8.48644e-07 4.40904e-08 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| especially in relation to ||| 0.0169492 0.13965 1.69729e-06 1.05169e-09 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| especially in relation ||| 0.0169492 0.13965 8.48644e-07 1.18356e-08 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| especially in the ||| 0.00158228 0.605812 1.69729e-06 2.27647e-06 2.718 ||| 0-1 ||| 1264 1.17835e+06 +en ||| especially in this ||| 0.0212766 0.605812 8.48644e-07 2.39595e-07 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| especially in view ||| 0.00813008 0.605812 8.48644e-07 3.34953e-08 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| especially in ||| 0.00527623 0.605812 1.4427e-05 3.7081e-05 2.718 ||| 0-1 ||| 3222 1.17835e+06 +en ||| especially on ||| 0.00438596 0.18479 1.69729e-06 0.000188744 2.718 ||| 0-0 0-1 ||| 456 1.17835e+06 +en ||| especially over ||| 0.05 0.157937 8.48644e-07 3.21778e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| especially serious ||| 0.0526316 0.13965 8.48644e-07 2.61815e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| especially the news ||| 0.5 0.13965 8.48644e-07 5.06476e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| especially the ||| 0.000729395 0.13965 8.48644e-07 0.000139525 2.718 ||| 0-0 ||| 1371 1.17835e+06 +en ||| especially when ||| 0.00330033 0.142731 1.69729e-06 4.7805e-07 2.718 ||| 0-1 ||| 606 1.17835e+06 +en ||| especially where ||| 0.00641026 0.247783 8.48644e-07 6.83883e-07 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| especially with regard to ||| 0.0047619 0.0535436 8.48644e-07 5.6644e-11 2.718 ||| 0-1 ||| 210 1.17835e+06 +en ||| especially with regard ||| 0.00440529 0.0535436 8.48644e-07 6.37465e-10 2.718 ||| 0-1 ||| 227 1.17835e+06 +en ||| especially with ||| 0.00401606 0.0965966 1.69729e-06 2.64972e-05 2.718 ||| 0-0 0-1 ||| 498 1.17835e+06 +en ||| especially ||| 0.00164138 0.13965 2.80053e-05 0.0022727 2.718 ||| 0-0 ||| 20105 1.17835e+06 +en ||| essential for ||| 0.00129702 0.0286209 1.69729e-06 1.03547e-06 2.718 ||| 0-1 ||| 1542 1.17835e+06 +en ||| essential points here ||| 0.25 0.0855319 8.48644e-07 3.50742e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| essential to ||| 0.000854336 0.0247351 1.69729e-06 2.52975e-06 2.718 ||| 0-1 ||| 2341 1.17835e+06 +en ||| essentially , ||| 0.00383142 0.105697 8.48644e-07 2.49958e-05 2.718 ||| 0-0 ||| 261 1.17835e+06 +en ||| essentially been achieved ||| 0.5 0.105697 8.48644e-07 1.17093e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| essentially been ||| 0.125 0.105697 8.48644e-07 6.99896e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| essentially go along ||| 0.333333 0.105697 8.48644e-07 2.13892e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| essentially go ||| 0.25 0.105697 8.48644e-07 1.22574e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| essentially on ||| 0.0238095 0.22993 8.48644e-07 1.58622e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| essentially very ||| 0.25 0.105697 8.48644e-07 7.29303e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| essentially what ||| 0.0769231 0.0035633 8.48644e-07 7.46046e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| essentially ||| 0.00813397 0.105697 1.4427e-05 0.0002096 2.718 ||| 0-0 ||| 2090 1.17835e+06 +en ||| establish a model which ||| 1 0.0015231 8.48644e-07 2.05615e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| establish a model ||| 1 0.0015231 8.48644e-07 2.42054e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| establish a ||| 0.00058072 0.0015231 8.48644e-07 6.28712e-08 2.718 ||| 0-1 ||| 1722 1.17835e+06 +en ||| establish in ||| 0.0277778 0.605812 8.48644e-07 3.52339e-05 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| establish the ||| 0.00171821 0.0011669 8.48644e-07 2.18577e-07 2.718 ||| 0-1 ||| 582 1.17835e+06 +en ||| establish themselves in ||| 0.0526316 0.605812 8.48644e-07 1.514e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| established ( in ||| 1 0.605812 8.48644e-07 6.66677e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| established at ||| 0.037037 0.321886 3.39458e-06 5.9883e-06 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| established by ||| 0.00168067 0.0468744 8.48644e-07 1.27351e-06 2.718 ||| 0-1 ||| 595 1.17835e+06 +en ||| established in ||| 0.0289634 0.605812 1.61242e-05 6.91286e-05 2.718 ||| 0-1 ||| 656 1.17835e+06 +en ||| established on ||| 0.016129 0.22993 8.48644e-07 1.24323e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| established the ||| 0.00495049 0.0011669 8.48644e-07 4.28846e-07 2.718 ||| 0-1 ||| 202 1.17835e+06 +en ||| established to cover ||| 0.333333 0.0247351 8.48644e-07 3.2863e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| established to ||| 0.0163934 0.0247351 8.48644e-07 4.20781e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| established within ||| 0.0555556 0.369196 1.69729e-06 1.65968e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| establishing itself in ||| 0.25 0.605812 8.48644e-07 1.46676e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| establishing smoke-free environments in ||| 1 0.605812 8.48644e-07 3.32815e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| establishing the ||| 0.000884173 0.0011669 8.48644e-07 1.34068e-07 2.718 ||| 0-1 ||| 1131 1.17835e+06 +en ||| establishment in ||| 0.0454545 0.605812 1.69729e-06 2.07801e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| establishment of ||| 0.000697107 0.0116562 1.69729e-06 6.13665e-07 2.718 ||| 0-1 ||| 2869 1.17835e+06 +en ||| esteem and ||| 0.0416667 0.0010182 8.48644e-07 2.30675e-09 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| estimate proposed by Parliament was in excess ||| 1 0.605812 8.48644e-07 3.41568e-23 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| estimate proposed by Parliament was in ||| 1 0.605812 8.48644e-07 3.16267e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| estimated at ||| 0.00558659 0.321886 8.48644e-07 5.76029e-07 2.718 ||| 0-1 ||| 179 1.17835e+06 +en ||| estimated to ||| 0.00729927 0.0247351 8.48644e-07 4.0476e-07 2.718 ||| 0-1 ||| 137 1.17835e+06 +en ||| ethical ||| 0.000611621 0.0006329 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1635 1.17835e+06 +en ||| ethnic origin in ||| 0.333333 0.605812 8.48644e-07 1.35948e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| ethnicity and race , in counterterrorism , ||| 1 0.605812 8.48644e-07 3.76428e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| ethnicity and race , in counterterrorism ||| 1 0.605812 8.48644e-07 3.15651e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| ethnicity and race , in ||| 0.2 0.605812 8.48644e-07 7.89126e-15 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| eugenics in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| euro and in ||| 0.1 0.605812 8.48644e-07 3.39534e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| euro at ||| 0.047619 0.321886 8.48644e-07 2.34812e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| euro for ||| 0.0227273 0.0286209 8.48644e-07 6.75355e-07 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| euro in ||| 0.0103627 0.605812 1.69729e-06 2.71066e-05 2.718 ||| 0-1 ||| 193 1.17835e+06 +en ||| euros at ||| 0.111111 0.321886 8.48644e-07 2.44012e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| euros in ||| 0.0188679 0.605812 1.69729e-06 2.81686e-06 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| evaluated in ||| 0.03125 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| evaluation in ||| 0.025641 0.605812 8.48644e-07 6.83436e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| evaluation of ||| 0.00128041 0.0116562 8.48644e-07 2.01828e-07 2.718 ||| 0-1 ||| 781 1.17835e+06 +en ||| evaluation on ||| 0.111111 0.22993 8.48644e-07 1.22912e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| even , even on ||| 0.333333 0.22993 8.48644e-07 3.66714e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| even , in ||| 0.0333333 0.605812 8.48644e-07 3.35098e-05 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| even a step in ||| 1 0.605812 8.48644e-07 1.83715e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| even a ||| 0.0018315 0.0045419 8.48644e-07 5.91306e-06 2.718 ||| 0-0 ||| 546 1.17835e+06 +en ||| even as ||| 0.00564972 0.066968 8.48644e-07 1.09456e-05 2.718 ||| 0-1 ||| 177 1.17835e+06 +en ||| even at the ||| 0.0266667 0.321886 1.69729e-06 1.49435e-06 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| even at ||| 0.0304878 0.321886 8.48644e-06 2.43412e-05 2.718 ||| 0-1 ||| 328 1.17835e+06 +en ||| even before the ||| 0.00641026 0.0175291 8.48644e-07 1.2735e-08 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| even before ||| 0.00196464 0.0175291 1.69729e-06 2.07438e-07 2.718 ||| 0-1 ||| 1018 1.17835e+06 +en ||| even considered ||| 0.0714286 0.0169998 8.48644e-07 4.47247e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| even cutting lines of ||| 1 0.0045419 8.48644e-07 9.76721e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| even cutting lines ||| 1 0.0045419 8.48644e-07 1.79663e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| even cutting ||| 0.5 0.0045419 8.48644e-07 1.97432e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| even dropped to ||| 1 0.0247351 8.48644e-07 1.96695e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| even for the 15 old Member States ||| 1 0.0045419 8.48644e-07 2.62195e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| even for the 15 old Member ||| 1 0.0045419 8.48644e-07 5.49444e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| even for the 15 old ||| 1 0.0045419 8.48644e-07 1.06626e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| even for the 15 ||| 1 0.0045419 8.48644e-07 1.38475e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| even for the ||| 0.0131579 0.0045419 8.48644e-07 6.29433e-08 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| even for ||| 0.00306748 0.0045419 8.48644e-07 1.02527e-06 2.718 ||| 0-0 ||| 326 1.17835e+06 +en ||| even from ||| 0.0190476 0.0308834 1.69729e-06 2.3154e-06 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| even further during ||| 0.5 0.226251 8.48644e-07 8.50297e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| even got as far as ||| 1 0.066968 8.48644e-07 8.34211e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| even have ||| 0.00571429 0.0045419 8.48644e-07 1.59544e-06 2.718 ||| 0-0 ||| 175 1.17835e+06 +en ||| even here in ||| 0.03125 0.605812 8.48644e-07 5.69799e-07 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| even higher in ||| 0.0769231 0.605812 8.48644e-07 1.18298e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| even humanitarian crimes against ||| 1 0.153982 8.48644e-07 1.04222e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| even if we put an ||| 1 0.0178573 8.48644e-07 3.92533e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| even if we put ||| 1 0.0178573 8.48644e-07 8.83147e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| even if we ||| 0.00641026 0.0178573 8.48644e-07 8.00968e-09 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| even if ||| 0.000486973 0.0045419 1.69729e-06 1.11469e-07 2.718 ||| 0-0 ||| 4107 1.17835e+06 +en ||| even in ||| 0.03358 0.605812 5.007e-05 0.000280994 2.718 ||| 0-1 ||| 1757 1.17835e+06 +en ||| even look around for potential scapegoats ||| 1 0.159384 8.48644e-07 3.24111e-23 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| even look around for potential ||| 1 0.159384 8.48644e-07 8.10276e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| even look around for ||| 1 0.159384 8.48644e-07 1.57335e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| even look around ||| 1 0.159384 8.48644e-07 2.04712e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| even more in ||| 0.0571429 0.605812 1.69729e-06 6.41706e-07 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| even more on ||| 0.111111 0.22993 8.48644e-07 1.15407e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| even more so , in ||| 0.142857 0.605812 8.48644e-07 1.73692e-10 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| even now ||| 0.003367 0.0123946 8.48644e-07 3.60232e-07 2.718 ||| 0-1 ||| 297 1.17835e+06 +en ||| even on ||| 0.0214592 0.22993 4.24322e-06 5.0535e-05 2.718 ||| 0-1 ||| 233 1.17835e+06 +en ||| even one person in ||| 1 0.605812 8.48644e-07 1.50848e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| even out ||| 0.0294118 0.0045419 8.48644e-07 5.10975e-07 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| even released the latter in advance ||| 0.5 0.605812 8.48644e-07 1.13529e-18 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| even released the latter in ||| 0.5 0.605812 8.48644e-07 3.21612e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| even see ||| 0.2 0.0045419 8.48644e-07 9.39936e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| even so ||| 0.0027027 0.0087276 8.48644e-07 4.14449e-07 2.718 ||| 0-1 ||| 370 1.17835e+06 +en ||| even take ||| 0.0454545 0.0074151 8.48644e-07 1.78047e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| even the case in ||| 0.5 0.605812 8.48644e-07 1.84565e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| even the ||| 0.00109051 0.0045419 1.69729e-06 8.18967e-06 2.718 ||| 0-0 ||| 1834 1.17835e+06 +en ||| even though , in ||| 0.05 0.605812 8.48644e-07 8.32049e-09 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| even though as recently as Monday they ||| 1 0.066968 8.48644e-07 1.35421e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| even though as recently as Monday ||| 1 0.066968 8.48644e-07 4.14894e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| even though as recently as ||| 1 0.066968 8.48644e-07 1.88588e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| even though ||| 0.000502681 0.0045419 2.54593e-06 3.31232e-08 2.718 ||| 0-0 ||| 5968 1.17835e+06 +en ||| even to ||| 0.00632911 0.0247351 2.54593e-06 1.71039e-05 2.718 ||| 0-1 ||| 474 1.17835e+06 +en ||| even today , ||| 0.00625 0.0398284 8.48644e-07 8.75442e-08 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| even today ||| 0.00625 0.0045419 1.69729e-06 6.02034e-08 2.718 ||| 0-0 ||| 320 1.17835e+06 +en ||| even until ||| 0.2 0.0092136 8.48644e-07 3.55972e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| even when we are in ||| 0.333333 0.605812 8.48644e-07 2.41951e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| even when ||| 0.00176678 0.142731 8.48644e-07 3.62258e-06 2.718 ||| 0-1 ||| 566 1.17835e+06 +en ||| even where ||| 0.00854701 0.247783 8.48644e-07 5.18235e-06 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| even with the help of gene ||| 0.25 0.0535436 8.48644e-07 8.12762e-18 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| even with the help of ||| 0.125 0.0535436 8.48644e-07 4.51534e-12 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| even with the help ||| 0.125 0.0535436 8.48644e-07 8.30576e-11 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| even with the ||| 0.0078125 0.0535436 8.48644e-07 4.3554e-07 2.718 ||| 0-1 ||| 128 1.17835e+06 +en ||| even with ||| 0.00909091 0.0535436 3.39458e-06 7.09444e-06 2.718 ||| 0-1 ||| 440 1.17835e+06 +en ||| even within Europe ||| 0.0909091 0.186869 8.48644e-07 7.48357e-10 2.718 ||| 0-0 0-1 ||| 11 1.17835e+06 +en ||| even within the same airport according to ||| 1 0.369196 8.48644e-07 1.59874e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| even within the same airport according ||| 1 0.369196 8.48644e-07 1.7992e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| even within the same airport ||| 1 0.369196 8.48644e-07 2.033e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| even within the same ||| 0.142857 0.369196 8.48644e-07 3.33278e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| even within the ||| 0.00943396 0.369196 8.48644e-07 4.14165e-07 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| even within ||| 0.0234742 0.369196 4.24322e-06 6.74626e-06 2.718 ||| 0-1 ||| 213 1.17835e+06 +en ||| even worse in 1996 ||| 1 0.605812 8.48644e-07 1.01034e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| even worse in ||| 0.111111 0.605812 8.48644e-07 1.00034e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| even ||| 0.00290078 0.0045419 8.31671e-05 0.0001334 2.718 ||| 0-0 ||| 33784 1.17835e+06 +en ||| evening at ||| 0.0344828 0.321886 8.48644e-07 8.92045e-07 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| evening in ||| 0.0238095 0.605812 8.48644e-07 1.02977e-05 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| evening on ||| 0.04 0.22993 8.48644e-07 1.85198e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| evening together with ||| 0.5 0.0535436 8.48644e-07 1.56152e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| event in the ||| 0.25 0.605812 8.48644e-07 2.9597e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| event in ways ||| 0.5 0.605812 8.48644e-07 4.64744e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| event in ||| 0.0888889 0.605812 3.39458e-06 4.82099e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| event is on ||| 1 0.22993 8.48644e-07 2.71735e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| event took place in ||| 0.5 0.605812 8.48644e-07 1.0702e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| events in ||| 0.00736842 0.605812 5.94051e-06 3.35715e-05 2.718 ||| 0-1 ||| 950 1.17835e+06 +en ||| events of ||| 0.00160256 0.0116562 8.48644e-07 9.9141e-07 2.718 ||| 0-1 ||| 624 1.17835e+06 +en ||| events over ||| 0.0555556 0.157937 8.48644e-07 2.91323e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| events that took place in Moscow amidst ||| 1 0.605812 8.48644e-07 2.48217e-25 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| events that took place in Moscow ||| 1 0.605812 8.48644e-07 2.25652e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| events that took place in ||| 0.05 0.605812 8.48644e-07 1.25362e-13 2.718 ||| 0-4 ||| 20 1.17835e+06 +en ||| events there ||| 0.0555556 0.0117359 8.48644e-07 8.15258e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| events to take place in ||| 0.333333 0.605812 8.48644e-07 7.2282e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| events took place in ||| 0.5 0.605812 8.48644e-07 7.45245e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| events where ||| 0.166667 0.247783 8.48644e-07 6.19157e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| eventually , in ||| 0.333333 0.605812 8.48644e-07 1.52543e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| eventually , ||| 0.00699301 0.0418391 8.48644e-07 7.38187e-06 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| eventually come to ||| 0.25 0.0247351 8.48644e-07 6.61265e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| eventually give rise ||| 1 0.0418391 8.48644e-07 4.71143e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| eventually give ||| 1 0.0418391 8.48644e-07 3.75114e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| eventually ||| 0.00408497 0.0418391 4.24322e-06 6.19e-05 2.718 ||| 0-0 ||| 1224 1.17835e+06 +en ||| ever , in ||| 0.166667 0.605812 1.69729e-06 1.03476e-05 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| ever before in ||| 0.125 0.605812 8.48644e-07 2.17008e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| ever before ||| 0.003861 0.0175291 8.48644e-07 6.40551e-08 2.718 ||| 0-1 ||| 259 1.17835e+06 +en ||| ever carried out in ||| 1 0.605812 8.48644e-07 9.79461e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ever catch up with it ||| 0.166667 0.0535436 8.48644e-07 2.29857e-15 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| ever catch up with ||| 0.166667 0.0535436 8.48644e-07 1.29255e-13 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| ever come across ||| 0.333333 0.274879 8.48644e-07 3.27832e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| ever did in ||| 1 0.605812 8.48644e-07 3.94103e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ever faith in ||| 1 0.605812 8.48644e-07 1.28418e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ever freer flow of goods in ||| 1 0.605812 8.48644e-07 4.30567e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| ever further along ||| 1 0.155535 8.48644e-07 7.2241e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ever get in ||| 1 0.605812 8.48644e-07 3.79353e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ever happen again , where the ||| 1 0.247783 8.48644e-07 7.36481e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| ever happen again , where ||| 1 0.247783 8.48644e-07 1.19964e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| ever in the ||| 0.0555556 0.605812 8.48644e-07 5.32688e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| ever in ||| 0.0222222 0.605812 8.48644e-07 8.67687e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| ever more ||| 0.00137363 0.0042952 8.48644e-07 6.25143e-08 2.718 ||| 0-1 ||| 728 1.17835e+06 +en ||| ever over ||| 1 0.157937 8.48644e-07 7.52953e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ever seen in ||| 0.0909091 0.605812 8.48644e-07 1.82648e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| ever to affect ||| 0.5 0.0481375 8.48644e-07 2.86344e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| ever to ||| 0.00662252 0.0247351 8.48644e-07 5.28155e-06 2.718 ||| 0-1 ||| 151 1.17835e+06 +en ||| ever will be achieved through ||| 0.25 0.0366102 8.48644e-07 4.63489e-15 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| every activity in ||| 0.5 0.605812 8.48644e-07 4.02706e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| every confidence in ||| 0.04 0.605812 8.48644e-07 2.32157e-09 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| every country in ||| 0.0181818 0.605812 8.48644e-07 2.70399e-08 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| every day in ||| 0.0181818 0.605812 8.48644e-07 1.92488e-08 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| every effort into ||| 0.166667 0.525896 8.48644e-07 3.18754e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| every month in ||| 0.0666667 0.605812 8.48644e-07 9.76713e-10 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| every move in ||| 1 0.605812 8.48644e-07 1.14876e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| every now ||| 0.153846 0.0123946 3.39458e-06 9.63184e-08 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| every occasion in ||| 1 0.605812 8.48644e-07 3.67394e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| every opportunity to ||| 0.00735294 0.0247351 8.48644e-07 8.22722e-10 2.718 ||| 0-2 ||| 136 1.17835e+06 +en ||| every reason to include such matters in ||| 1 0.605812 8.48644e-07 7.91317e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| every so ||| 0.0555556 0.0087276 8.48644e-07 1.10815e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| every year by ||| 0.0526316 0.0468744 8.48644e-07 3.45196e-10 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| every year in ||| 0.0138889 0.605812 8.48644e-07 1.87379e-08 2.718 ||| 0-2 ||| 72 1.17835e+06 +en ||| every year ||| 0.000510986 0.0004296 8.48644e-07 1.69592e-09 2.718 ||| 0-0 ||| 1957 1.17835e+06 +en ||| every ||| 0.000215936 0.0004296 3.39458e-06 6.8e-06 2.718 ||| 0-0 ||| 18524 1.17835e+06 +en ||| everybody ' s mind , in ||| 1 0.605812 8.48644e-07 6.1637e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| everybody within ||| 1 0.369196 8.48644e-07 7.53896e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| everyday in ||| 0.333333 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| everyone at ||| 0.0714286 0.321886 8.48644e-07 2.69213e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| everyone in ||| 0.00235849 0.605812 8.48644e-07 3.10779e-05 2.718 ||| 0-1 ||| 424 1.17835e+06 +en ||| everyone involved in the information society ||| 1 0.605812 8.48644e-07 6.32213e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| everyone involved in the information ||| 1 0.605812 8.48644e-07 1.0919e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| everyone involved in the ||| 0.0625 0.605812 8.48644e-07 6.59761e-10 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| everyone involved in ||| 0.016129 0.605812 8.48644e-07 1.07467e-08 2.718 ||| 0-2 ||| 62 1.17835e+06 +en ||| everyone is basically ||| 0.5 0.1117 8.48644e-07 3.93165e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| everyone needs for living ||| 1 0.0286209 8.48644e-07 1.2867e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| everyone needs for ||| 0.5 0.0286209 8.48644e-07 1.53544e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| everyone on ||| 0.0140845 0.22993 8.48644e-07 5.58916e-06 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| everyone to ||| 0.00269542 0.0247351 8.48644e-07 1.89169e-06 2.718 ||| 0-1 ||| 371 1.17835e+06 +en ||| everyone would gain from ||| 0.25 0.0308834 8.48644e-07 8.38605e-14 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| everyone ||| 9.12076e-05 0.0001513 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 10964 1.17835e+06 +en ||| everything for ||| 0.0333333 0.0286209 8.48644e-07 1.06423e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| everything in ||| 0.0041841 0.605812 1.69729e-06 4.27148e-05 2.718 ||| 0-1 ||| 478 1.17835e+06 +en ||| everything into ||| 0.04 0.525896 8.48644e-07 2.0477e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| everything is in ||| 0.025 0.605812 8.48644e-07 1.33873e-06 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| everything it can to ||| 0.0178571 0.0247351 8.48644e-07 1.37522e-10 2.718 ||| 0-3 ||| 56 1.17835e+06 +en ||| everywhere , in ||| 0.0833333 0.605812 8.48644e-07 1.0298e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| everywhere , ||| 0.00404858 0.256283 8.48644e-07 5.87568e-05 2.718 ||| 0-0 ||| 247 1.17835e+06 +en ||| everywhere else in ||| 0.0909091 0.605812 8.48644e-07 1.01897e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| everywhere else ||| 0.0192308 0.256283 8.48644e-07 5.81386e-08 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| everywhere in ||| 0.0326087 0.605812 5.09187e-06 8.63531e-06 2.718 ||| 0-1 ||| 184 1.17835e+06 +en ||| everywhere within ||| 0.333333 0.256283 8.48644e-07 1.03024e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| everywhere ||| 0.0123692 0.256283 1.10324e-05 0.0004927 2.718 ||| 0-0 ||| 1051 1.17835e+06 +en ||| evidence has now been produced of Parliament ||| 1 0.0116562 8.48644e-07 1.61567e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| evidence has now been produced of ||| 1 0.0116562 8.48644e-07 2.81476e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| evidence in ||| 0.0361446 0.605812 2.54593e-06 2.54441e-05 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| evidence on ||| 0.0344828 0.22993 8.48644e-07 4.57597e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| evidence pointing to ||| 1 0.0247351 8.48644e-07 3.5157e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| evidenced by ||| 0.0106383 0.0468744 8.48644e-07 1.19099e-08 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| evidenced in a ||| 1 0.605812 8.48644e-07 2.86563e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| evidenced in ||| 0.0769231 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| evident at ||| 0.0588235 0.321886 8.48644e-07 7.48037e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| evident in ||| 0.0434783 0.605812 5.94051e-06 8.63531e-06 2.718 ||| 0-1 ||| 161 1.17835e+06 +en ||| evident over ||| 0.142857 0.157937 8.48644e-07 7.49346e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| evident to a ||| 0.5 0.0247351 8.48644e-07 2.32988e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| evident to ||| 0.030303 0.0247351 8.48644e-07 5.25625e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| evoked in ||| 0.25 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| evolving ||| 0.00803213 0.145631 1.69729e-06 3.06e-05 2.718 ||| 0-0 ||| 249 1.17835e+06 +en ||| ex ||| 0.0106383 0.0040984 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 94 1.17835e+06 +en ||| exactly , is ||| 1 0.0005032 8.48644e-07 3.42193e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| exactly as ||| 0.0107527 0.066968 8.48644e-07 1.80599e-06 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| exactly at ||| 0.0833333 0.321886 8.48644e-07 4.0162e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| exactly how ||| 0.00641026 0.0035231 8.48644e-07 1.22287e-08 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| exactly in ||| 0.0666667 0.605812 1.69729e-06 4.63628e-05 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| exactly on ||| 0.0588235 0.22993 8.48644e-07 8.33806e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| exactly the ||| 0.0010582 0.0011669 8.48644e-07 2.87616e-07 2.718 ||| 0-1 ||| 945 1.17835e+06 +en ||| exactly where ||| 0.012987 0.247783 8.48644e-07 8.55067e-07 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| examine the document carefully as well ||| 1 0.066968 8.48644e-07 4.55282e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| examine the document carefully as ||| 1 0.066968 8.48644e-07 2.87136e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| examine ||| 0.000467508 0.0003765 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2139 1.17835e+06 +en ||| examined in terms of their ||| 1 0.605812 8.48644e-07 5.62115e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| examined in terms of ||| 0.5 0.605812 8.48644e-07 4.84958e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| examined in terms ||| 0.166667 0.605812 8.48644e-07 8.92058e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| examined in ||| 0.0305344 0.605812 3.39458e-06 8.12735e-06 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| example , in ||| 0.0074813 0.605812 5.09187e-06 1.60308e-05 2.718 ||| 0-2 ||| 802 1.17835e+06 +en ||| example , of ||| 0.00392157 0.0116562 8.48644e-07 4.73409e-07 2.718 ||| 0-2 ||| 255 1.17835e+06 +en ||| example , with ||| 0.00584795 0.0535436 8.48644e-07 4.04739e-07 2.718 ||| 0-2 ||| 171 1.17835e+06 +en ||| example at ||| 0.0909091 0.321886 1.69729e-06 1.16446e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| example for ||| 0.00380228 0.0286209 8.48644e-07 3.34916e-06 2.718 ||| 0-1 ||| 263 1.17835e+06 +en ||| example from the municipality of ||| 0.5 0.0308834 8.48644e-07 2.58778e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| example from the municipality ||| 0.5 0.0308834 8.48644e-07 4.76011e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| example from the ||| 0.0357143 0.0308834 8.48644e-07 6.80015e-08 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| example from this building here ||| 1 0.0308834 8.48644e-07 8.46113e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| example from this building ||| 1 0.0308834 8.48644e-07 4.17257e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| example from this ||| 0.25 0.0308834 8.48644e-07 7.15706e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| example from ||| 0.0212766 0.0308834 1.69729e-06 1.10766e-06 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| example in ||| 0.0116883 0.605812 7.6378e-06 0.000134424 2.718 ||| 0-1 ||| 770 1.17835e+06 +en ||| example of Mr ||| 0.2 0.0116562 8.48644e-07 2.59144e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| example of the ||| 0.00316456 0.0116562 1.69729e-06 2.43709e-07 2.718 ||| 0-1 ||| 632 1.17835e+06 +en ||| example of this ||| 0.00234192 0.0116562 8.48644e-07 2.565e-08 2.718 ||| 0-1 ||| 427 1.17835e+06 +en ||| example of ||| 0.00303439 0.0116562 7.6378e-06 3.96973e-06 2.718 ||| 0-1 ||| 2966 1.17835e+06 +en ||| example on ||| 0.00900901 0.22993 8.48644e-07 2.41754e-05 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| example when ||| 0.0136986 0.142731 8.48644e-07 1.73301e-06 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| example with ||| 0.008 0.0535436 8.48644e-07 3.39391e-06 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| examples in ||| 0.0444444 0.605812 1.69729e-06 7.98881e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| examples over the ||| 1 0.157937 8.48644e-07 4.25596e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| examples over ||| 1 0.157937 8.48644e-07 6.93246e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| excavated from ||| 1 0.0308834 8.48644e-07 1.52204e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| exceeded on ||| 0.2 0.22993 8.48644e-07 5.39815e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| excellent day out in ||| 0.5 0.605812 8.48644e-07 1.69485e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| excellent opportunity to establish the necessary ||| 1 0.0247351 8.48644e-07 2.27936e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| excellent opportunity to establish the ||| 1 0.0247351 8.48644e-07 8.85875e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| excellent opportunity to establish ||| 1 0.0247351 8.48644e-07 1.44299e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| excellent opportunity to ||| 0.00884956 0.0247351 8.48644e-07 1.8912e-10 2.718 ||| 0-2 ||| 113 1.17835e+06 +en ||| excellent people on ||| 1 0.22993 8.48644e-07 2.73391e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| excellent position at ||| 0.333333 0.321886 8.48644e-07 4.92657e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| exceptional for this country ||| 1 0.0286209 8.48644e-07 1.63205e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| exceptional for this ||| 1 0.0286209 8.48644e-07 4.53472e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| exceptional for ||| 0.2 0.0286209 8.48644e-07 7.01817e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| exceptionally true in ||| 1 0.605812 8.48644e-07 4.02969e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| excess in relation ||| 1 0.605812 8.48644e-07 1.21339e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| excess in ||| 0.4 0.605812 1.69729e-06 4.98724e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| excessive crowd control measures employed to ||| 1 0.0247351 8.48644e-07 3.56103e-25 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| excessively strong inclination to indulge in ||| 0.5 0.605812 8.48644e-07 3.40623e-22 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| exchanged with ||| 0.333333 0.0535436 8.48644e-07 2.91473e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| exchanges on ||| 0.0909091 0.22993 8.48644e-07 4.15242e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| exclude from ||| 0.0769231 0.0308834 8.48644e-07 1.90255e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| exclusively in ||| 0.0344828 0.605812 1.69729e-06 6.14169e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| exclusively on ||| 0.00502513 0.22993 8.48644e-07 1.10454e-06 2.718 ||| 0-1 ||| 199 1.17835e+06 +en ||| exclusively responsible ||| 0.0833333 0.0007047 8.48644e-07 1.0353e-10 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| exclusively within ||| 0.0416667 0.369196 8.48644e-07 1.47453e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| exclusively ||| 0.000687758 0.0007047 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1454 1.17835e+06 +en ||| excuse for ||| 0.00393701 0.0286209 8.48644e-07 2.11696e-07 2.718 ||| 0-1 ||| 254 1.17835e+06 +en ||| executed in ||| 0.097561 0.605812 3.39458e-06 2.67833e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| execution at ||| 1 0.321886 8.48644e-07 1.60008e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| exemplified by ||| 0.0416667 0.0468744 1.69729e-06 1.19099e-08 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| exemption in ||| 0.0434783 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| exemptions in ||| 0.0416667 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| exercise at ||| 0.285714 0.321886 1.69729e-06 2.47612e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| exercise in the ||| 0.142857 0.605812 8.48644e-07 1.75484e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| exercise in ||| 0.0113636 0.605812 1.69729e-06 2.85843e-05 2.718 ||| 0-1 ||| 176 1.17835e+06 +en ||| exercise into ||| 0.2 0.525896 8.48644e-07 1.3703e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| exercise which took place in ||| 1 0.605812 8.48644e-07 5.39012e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| exercise with ||| 0.0769231 0.0535436 8.48644e-07 7.21686e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| exercised in ||| 0.0540541 0.605812 1.69729e-06 7.15761e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| exercised indiscriminately whenever ||| 0.142857 0.0380466 8.48644e-07 7.7748e-16 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| exercised within ||| 0.2 0.369196 8.48644e-07 1.71844e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| exercises ||| 0.00309598 0.0147929 8.48644e-07 3.4e-06 2.718 ||| 0-0 ||| 323 1.17835e+06 +en ||| exert in ||| 0.166667 0.605812 8.48644e-07 4.80252e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| exerted by ||| 0.010989 0.0468744 8.48644e-07 1.01234e-07 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| exerted on ||| 0.0232558 0.22993 8.48644e-07 9.88276e-07 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| exhibition in ||| 0.0625 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| exhibition on ||| 0.1 0.22993 8.48644e-07 2.07621e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| exist across ||| 0.25 0.274879 8.48644e-07 1.89201e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| exist as to ||| 1 0.0458515 8.48644e-07 4.65666e-08 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| exist at ||| 0.038961 0.321886 2.54593e-06 3.68418e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| exist in , for instance , ||| 1 0.605812 8.48644e-07 3.01235e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| exist in , for instance ||| 1 0.605812 8.48644e-07 2.52598e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| exist in , for ||| 1 0.605812 8.48644e-07 3.89812e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| exist in , ||| 1 0.605812 8.48644e-07 5.07191e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| exist in a ||| 0.04 0.605812 8.48644e-07 1.88518e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| exist in ||| 0.0450607 0.605812 2.20648e-05 4.253e-05 2.718 ||| 0-1 ||| 577 1.17835e+06 +en ||| exist on paper in ||| 1 0.605812 8.48644e-07 8.28094e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| exist on ||| 0.0212766 0.22993 8.48644e-07 7.64876e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| exist regarding ||| 0.166667 0.140669 8.48644e-07 1.74345e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| exist under ||| 0.1 0.205566 8.48644e-07 5.20789e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| exist within ||| 0.0410959 0.369196 2.54593e-06 1.02109e-06 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| existed in ||| 0.0574713 0.605812 4.24322e-06 6.83436e-06 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| existence at ||| 1 0.321886 8.48644e-07 2.76414e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| existence by ||| 0.285714 0.0468744 1.69729e-06 5.87841e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| existence in ||| 0.119048 0.605812 4.24322e-06 3.19091e-05 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| existence of ||| 0.00150489 0.0116562 1.69729e-06 9.42317e-07 2.718 ||| 0-1 ||| 1329 1.17835e+06 +en ||| existing in a ||| 1 0.605812 8.48644e-07 1.61294e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| existing in ||| 0.0377358 0.605812 3.39458e-06 3.63884e-05 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| existing side-byside in ||| 0.5 0.605812 8.48644e-07 1.45553e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| exists at ||| 0.0555556 0.321886 8.48644e-07 2.23211e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| exists in ||| 0.0228426 0.605812 7.6378e-06 2.57674e-05 2.718 ||| 0-1 ||| 394 1.17835e+06 +en ||| exists incidentally in ||| 0.5 0.605812 8.48644e-07 5.38538e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| exists to ||| 0.0192308 0.0247351 8.48644e-07 1.56844e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| exists within ||| 0.0384615 0.369196 8.48644e-07 6.18638e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| exists ||| 0.000425351 0.0010413 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 2351 1.17835e+06 +en ||| expanded in ||| 0.0769231 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| expanded so as to ||| 1 0.066968 8.48644e-07 2.21297e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| expanded so as ||| 1 0.066968 8.48644e-07 2.49046e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| expanding ||| 0.00143678 0.0707483 8.48644e-07 3.54e-05 2.718 ||| 0-0 ||| 696 1.17835e+06 +en ||| expect , at ||| 0.333333 0.321886 8.48644e-07 2.54264e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| expect on ||| 0.2 0.22993 8.48644e-07 4.42648e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| expect the investigation at ||| 0.25 0.321886 8.48644e-07 2.40845e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| expect to be ||| 0.0425532 0.0247351 1.69729e-06 2.71512e-08 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| expect to witness situations ||| 1 0.0247351 8.48644e-07 7.3782e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| expect to witness ||| 1 0.0247351 8.48644e-07 2.15737e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| expect to ||| 0.0165289 0.0247351 3.39458e-06 1.49817e-06 2.718 ||| 0-1 ||| 242 1.17835e+06 +en ||| expectancy in ||| 0.2 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| expectations in a ||| 0.25 0.605812 8.48644e-07 1.47375e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| expectations in ||| 0.0392157 0.605812 1.69729e-06 3.32482e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| expected from ||| 0.0175439 0.0308834 8.48644e-07 2.02812e-07 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| expected in ||| 0.0142857 0.605812 8.48644e-07 2.46129e-05 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| expected of ||| 0.0075188 0.0116562 8.48644e-07 7.26852e-07 2.718 ||| 0-1 ||| 133 1.17835e+06 +en ||| expected to register their misgivings when ||| 0.333333 0.142731 8.48644e-07 1.15628e-21 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| expected to ||| 0.00110375 0.0247351 8.48644e-07 1.49817e-06 2.718 ||| 0-1 ||| 906 1.17835e+06 +en ||| expected within ||| 0.25 0.369196 8.48644e-07 5.90921e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| expecting in ||| 0.333333 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| expecting them to ||| 0.142857 0.0247351 8.48644e-07 4.37307e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| expended on ||| 0.125 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| expending our energy on ||| 1 0.22993 8.48644e-07 7.12888e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| expenditure as a ||| 0.5 0.066968 8.48644e-07 2.40793e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| expenditure as ||| 0.0625 0.066968 8.48644e-07 5.43235e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| expenditure at ||| 0.0357143 0.321886 8.48644e-07 1.20806e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| expenditure by ||| 0.0416667 0.0468744 8.48644e-07 2.56914e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| expenditure in ||| 0.0202703 0.605812 2.54593e-06 1.39458e-05 2.718 ||| 0-1 ||| 148 1.17835e+06 +en ||| expenditure may impact on ||| 1 0.22993 8.48644e-07 1.54833e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| expenditure on ||| 0.00597015 0.22993 1.69729e-06 2.50806e-06 2.718 ||| 0-1 ||| 335 1.17835e+06 +en ||| expenditures in ||| 0.333333 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| expensive in the ||| 0.0769231 0.605812 8.48644e-07 3.2602e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| expensive in ||| 0.0294118 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| expensive study can turn into ||| 1 0.525896 8.48644e-07 5.73799e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| experience and best practice in ||| 0.5 0.605812 8.48644e-07 5.83463e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| experience difficulty in ||| 0.5 0.605812 8.48644e-07 5.74363e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| experience during ||| 0.133333 0.226251 1.69729e-06 1.99789e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| experience in ||| 0.0169851 0.605812 6.78915e-06 3.19091e-05 2.718 ||| 0-1 ||| 471 1.17835e+06 +en ||| experience of in ||| 1 0.605812 8.48644e-07 1.7347e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| experience of ||| 0.00206186 0.0116562 1.69729e-06 9.42317e-07 2.718 ||| 0-1 ||| 970 1.17835e+06 +en ||| experience on ||| 0.0487805 0.22993 1.69729e-06 5.73864e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| experience than we do at ||| 0.5 0.321886 8.48644e-07 3.29321e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| experience within ||| 0.5 0.369196 8.48644e-07 7.66091e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| experience ||| 0.000139101 0.0002328 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 7189 1.17835e+06 +en ||| experienced by companies in ||| 1 0.605812 8.48644e-07 4.16972e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| experienced by ||| 0.00359712 0.0468744 8.48644e-07 2.08424e-07 2.718 ||| 0-1 ||| 278 1.17835e+06 +en ||| experienced here ||| 0.2 0.0855319 8.48644e-07 7.35024e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| experienced in ||| 0.0299401 0.605812 4.24322e-06 1.13136e-05 2.718 ||| 0-1 ||| 167 1.17835e+06 +en ||| experiences in ||| 0.0126582 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| experiencing , ||| 0.0227273 0.0261115 8.48644e-07 3.00522e-06 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| experiencing an ||| 0.0285714 0.0261115 8.48644e-07 1.12006e-07 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| experiencing day ||| 0.333333 0.0261115 8.48644e-07 6.45624e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| experiencing difficulties should be automatic when a ||| 1 0.142731 8.48644e-07 8.93577e-24 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| experiencing difficulties should be automatic when ||| 1 0.142731 8.48644e-07 2.01593e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| experiencing has hung over ||| 1 0.157937 8.48644e-07 9.64315e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| experiencing here for ||| 1 0.0286209 8.48644e-07 4.36276e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| experiencing in ||| 0.0454545 0.605812 8.48644e-07 8.63531e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| experiencing now in ||| 0.5 0.605812 8.48644e-07 1.77879e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| experiencing on ||| 0.25 0.22993 8.48644e-07 1.55301e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| experiencing the same disasters over and over ||| 1 0.0261115 8.48644e-07 3.25379e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| experiencing the same disasters over and ||| 1 0.0261115 8.48644e-07 6.7576e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| experiencing the same disasters over ||| 1 0.0261115 8.48644e-07 5.3949e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| experiencing the same disasters ||| 1 0.0261115 8.48644e-07 1.12044e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| experiencing the same ||| 0.5 0.0261115 8.48644e-07 1.24493e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| experiencing the ||| 0.0185185 0.0261115 8.48644e-07 1.54707e-06 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| experiencing with ||| 0.1 0.0535436 8.48644e-07 2.18021e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| experiencing ||| 0.0151844 0.0261115 1.1881e-05 2.52e-05 2.718 ||| 0-0 ||| 922 1.17835e+06 +en ||| expert opinion on ||| 0.333333 0.22993 8.48644e-07 2.34371e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| expert witnesses under ||| 1 0.205566 8.48644e-07 1.6257e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| expertise of the ||| 0.030303 0.0116562 8.48644e-07 5.69296e-09 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| expertise of ||| 0.016129 0.0116562 8.48644e-07 9.27316e-08 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| experts on the United Nations ||| 1 0.22993 8.48644e-07 3.72711e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| experts on the United ||| 1 0.22993 8.48644e-07 9.86007e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| experts on the ||| 0.0333333 0.22993 8.48644e-07 8.05562e-08 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| experts on ||| 0.025641 0.22993 1.69729e-06 1.31216e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| explain in ||| 0.03125 0.605812 8.48644e-07 1.21448e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| explain it in ||| 0.142857 0.605812 8.48644e-07 2.15974e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| explain on ||| 0.111111 0.22993 8.48644e-07 2.18417e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| explained in terms of ||| 0.333333 0.605812 8.48644e-07 3.96784e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| explained in terms ||| 0.25 0.605812 8.48644e-07 7.29865e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| explained in ||| 0.0173913 0.605812 1.69729e-06 6.64965e-06 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| explained on ||| 0.1 0.22993 8.48644e-07 1.1959e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| explained our true intentions in ||| 1 0.605812 8.48644e-07 1.66015e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| explained when ||| 0.166667 0.142731 8.48644e-07 8.57275e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| explanation of vote in ||| 0.04 0.605812 8.48644e-07 7.66087e-11 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| explanation of ||| 0.00125945 0.0116562 8.48644e-07 2.64558e-07 2.718 ||| 0-1 ||| 794 1.17835e+06 +en ||| explicit in ||| 0.03125 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| explicitly at ||| 1 0.321886 8.48644e-07 3.04015e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| explicitly in ||| 0.03125 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| exploit rights to ||| 0.5 0.0247351 8.48644e-07 4.2746e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| exploited at will ||| 0.5 0.321886 8.48644e-07 3.25301e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| exploited at ||| 0.142857 0.321886 8.48644e-07 3.76019e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| exploited by the ||| 0.0833333 0.0468744 8.48644e-07 4.9093e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| exploited by ||| 0.00826446 0.0468744 8.48644e-07 7.99667e-08 2.718 ||| 0-1 ||| 121 1.17835e+06 +en ||| exploited during ||| 1 0.226251 8.48644e-07 2.71782e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| exploited in ||| 0.0285714 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| explore ways of ||| 0.0909091 0.0116562 8.48644e-07 3.81236e-12 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| explored in Mrs ||| 1 0.605812 8.48644e-07 4.7545e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| explored in ||| 0.111111 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| explored ||| 0.0078125 0.0047847 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 128 1.17835e+06 +en ||| explosion in ||| 0.0163934 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| exports around ||| 0.5 0.159384 8.48644e-07 7.50165e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| exposure in ||| 0.142857 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| exposure takes place in ||| 1 0.605812 8.48644e-07 5.83645e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| express , in ||| 0.333333 0.605812 8.48644e-07 5.58956e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| express our ||| 0.00228833 0.0004869 8.48644e-07 4.9735e-09 2.718 ||| 0-1 ||| 437 1.17835e+06 +en ||| express wish to ||| 0.5 0.0247351 8.48644e-07 8.40777e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| express with ||| 0.142857 0.0535436 8.48644e-07 1.18338e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| expressed , on ||| 0.333333 0.22993 8.48644e-07 9.6266e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| expressed a ||| 0.00763359 0.0015231 8.48644e-07 8.00928e-08 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| expressed as ||| 0.0294118 0.066968 8.48644e-07 1.74842e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| expressed at ||| 0.0133333 0.321886 8.48644e-07 3.88819e-06 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| expressed by ||| 0.00081367 0.0468744 8.48644e-07 8.2689e-07 2.718 ||| 0-1 ||| 1229 1.17835e+06 +en ||| expressed confidence in ||| 0.333333 0.605812 8.48644e-07 1.38695e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| expressed here in ||| 0.1 0.605812 8.48644e-07 9.10181e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| expressed in the form of ||| 0.25 0.605812 8.48644e-07 6.81909e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| expressed in the form ||| 0.25 0.605812 8.48644e-07 1.25434e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| expressed in the ||| 0.00221729 0.605812 8.48644e-07 2.75558e-06 2.718 ||| 0-1 ||| 451 1.17835e+06 +en ||| expressed in ||| 0.0223735 0.605812 1.95188e-05 4.48851e-05 2.718 ||| 0-1 ||| 1028 1.17835e+06 +en ||| expressed the ||| 0.00534759 0.0011669 8.48644e-07 2.78449e-07 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| expressed their opinion quite clearly in ||| 1 0.605812 8.48644e-07 9.08943e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| expressed their wishes within ||| 1 0.369196 8.48644e-07 6.60762e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| expresses regret at ||| 0.5 0.321886 8.48644e-07 4.83144e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| expression in ||| 0.0264901 0.605812 3.39458e-06 1.87945e-05 2.718 ||| 0-1 ||| 151 1.17835e+06 +en ||| expression of sympathy with a request for ||| 0.5 0.0286209 8.48644e-07 8.57808e-21 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| expression over ||| 0.5 0.157937 8.48644e-07 1.63093e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| expression through ||| 0.1 0.0366102 8.48644e-07 3.82743e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| expressly included in ||| 0.2 0.605812 8.48644e-07 2.94856e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| extend it ||| 0.0128205 0.0080472 8.48644e-07 1.19141e-07 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| extend to ||| 0.005 0.0247351 8.48644e-07 1.21428e-06 2.718 ||| 0-1 ||| 200 1.17835e+06 +en ||| extended in ||| 0.0384615 0.605812 8.48644e-07 1.67627e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| extended to all ||| 0.0163934 0.0247351 8.48644e-07 4.82147e-09 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| extended to ||| 0.00585938 0.0247351 2.54593e-06 1.02033e-06 2.718 ||| 0-1 ||| 512 1.17835e+06 +en ||| extending back over ||| 1 0.157937 8.48644e-07 5.52525e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| extension increase cultural diversity and ||| 1 0.0010182 8.48644e-07 4.57296e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| extension of ||| 0.0021164 0.0060403 1.69729e-06 9.5459e-09 2.718 ||| 0-0 0-1 ||| 945 1.17835e+06 +en ||| extensive ||| 0.00105541 0.0008873 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 1895 1.17835e+06 +en ||| extensively in ||| 0.0344828 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| extent , in ||| 0.09375 0.605812 2.54593e-06 1.05844e-05 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| extent , keep it in ||| 1 0.605812 8.48644e-07 2.93253e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| extent , on ||| 0.0285714 0.22993 8.48644e-07 1.90353e-06 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| extent , ||| 0.00318471 0.0400323 2.54593e-06 2.41014e-05 2.718 ||| 0-0 ||| 942 1.17835e+06 +en ||| extent and with what objectives ? or ||| 0.5 0.0535436 8.48644e-07 3.60128e-22 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| extent and with what objectives ? ||| 0.5 0.0535436 8.48644e-07 3.1499e-19 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| extent and with what objectives ||| 0.5 0.0535436 8.48644e-07 1.84312e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| extent and with what ||| 0.5 0.0535436 8.48644e-07 3.9383e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| extent and with ||| 0.25 0.0535436 8.48644e-07 2.80685e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| extent as ||| 0.03125 0.066968 8.48644e-07 3.45727e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| extent expelled ||| 0.5 0.0400323 8.48644e-07 8.084e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| extent fall within ||| 0.1 0.369196 8.48644e-07 2.03924e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| extent for ||| 0.2 0.0286209 8.48644e-07 2.2113e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| extent in ||| 0.0632911 0.605812 4.24322e-06 8.87543e-05 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| extent of making ||| 0.333333 0.0116562 8.48644e-07 1.00831e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| extent of ||| 0.00732064 0.0400323 4.24322e-06 1.0987e-05 2.718 ||| 0-0 ||| 683 1.17835e+06 +en ||| extent on these ||| 0.333333 0.22993 8.48644e-07 1.65541e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| extent on ||| 0.0192308 0.22993 1.69729e-06 1.59619e-05 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| extent to which one ||| 0.5 0.0400323 8.48644e-07 6.3582e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| extent to which ||| 0.00352734 0.0400323 1.69729e-06 1.52548e-07 2.718 ||| 0-0 ||| 567 1.17835e+06 +en ||| extent to ||| 0.00813008 0.0400323 3.39458e-06 1.79582e-05 2.718 ||| 0-0 ||| 492 1.17835e+06 +en ||| extent under ||| 0.333333 0.205566 8.48644e-07 1.08681e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| extent with regard to ||| 1 0.0247351 8.48644e-07 2.35222e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| extent within ||| 0.666667 0.369196 1.69729e-06 2.13086e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| extent ||| 0.00625711 0.0400323 2.80053e-05 0.0002021 2.718 ||| 0-0 ||| 5274 1.17835e+06 +en ||| external commitments on ||| 1 0.22993 8.48644e-07 3.07495e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| external factors ||| 0.0277778 0.0002812 8.48644e-07 4.186e-11 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| external ||| 0.000129299 0.0002812 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 7734 1.17835e+06 +en ||| extract from ||| 0.0666667 0.0308834 8.48644e-07 1.10348e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| extracted from ||| 0.015625 0.0308834 8.48644e-07 6.84918e-09 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| extracted in ||| 0.166667 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| extraordinary sitting on ||| 1 0.22993 8.48644e-07 4.55977e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| extremely concerned about ||| 0.0178571 0.0401564 8.48644e-07 4.37989e-10 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| extremely difficult , even with the help ||| 0.25 0.0535436 8.48644e-07 1.16869e-19 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| extremely difficult , even with the ||| 0.25 0.0535436 8.48644e-07 6.12843e-16 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| extremely difficult , even with ||| 0.25 0.0535436 8.48644e-07 9.98249e-15 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| extremely eloquently at ||| 1 0.321886 8.48644e-07 4.18021e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| extremely important to ||| 0.00367647 0.0247351 8.48644e-07 1.02432e-09 2.718 ||| 0-2 ||| 272 1.17835e+06 +en ||| extremism in ||| 0.0357143 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| extremist in ||| 0.25 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| eye on ||| 0.00985222 0.22993 1.69729e-06 4.72545e-06 2.718 ||| 0-1 ||| 203 1.17835e+06 +en ||| eye to ||| 0.0166667 0.0247351 2.54593e-06 1.59936e-06 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| eyes as a ||| 0.5 0.066968 8.48644e-07 4.64842e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| eyes as ||| 0.5 0.066968 8.48644e-07 1.04869e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| eyes have been fixed on ||| 0.25 0.22993 8.48644e-07 3.69317e-15 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| eyes on ||| 0.0625 0.22993 8.48644e-07 4.84172e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| fabric of ||| 0.015873 0.0116562 8.48644e-07 5.86391e-08 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| face challenges on ||| 1 0.22993 8.48644e-07 2.59818e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| face from ||| 0.1 0.0308834 8.48644e-07 6.36593e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| face gaps in ||| 0.25 0.605812 8.48644e-07 3.09024e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| face in third ||| 1 0.605812 8.48644e-07 3.61558e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| face in ||| 0.0285714 0.605812 4.24322e-06 7.7256e-05 2.718 ||| 0-1 ||| 175 1.17835e+06 +en ||| face of ||| 0.000914077 0.0116562 8.48644e-07 2.28147e-06 2.718 ||| 0-1 ||| 1094 1.17835e+06 +en ||| face to face ||| 0.0277778 0.0247351 8.48644e-07 7.86731e-10 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| face to ||| 0.0444444 0.0247351 1.69729e-06 4.70252e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| faced by what was ||| 1 0.0468744 8.48644e-07 2.3672e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| faced by what ||| 0.5 0.0468744 8.48644e-07 7.55569e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| faced by ||| 0.00149925 0.0468744 8.48644e-07 5.38499e-07 2.718 ||| 0-1 ||| 667 1.17835e+06 +en ||| faced in ||| 0.0212766 0.605812 8.48644e-07 2.92307e-05 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| faced with in ||| 0.25 0.605812 8.48644e-07 1.86916e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| faced with ||| 0.00531287 0.0535436 7.6378e-06 7.38008e-07 2.718 ||| 0-1 ||| 1694 1.17835e+06 +en ||| faces in ||| 0.0625 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| facet as ||| 0.0666667 0.066968 8.48644e-07 2.51831e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| facilitate , to ||| 1 0.0247351 8.48644e-07 8.07843e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| facilitated in ||| 0.25 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| facilitator in ||| 0.5 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| facilities from ||| 0.333333 0.0308834 8.48644e-07 5.89791e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| facilities on ||| 0.0833333 0.22993 8.48644e-07 1.28725e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| facility in ||| 0.1 0.605812 8.48644e-07 6.3264e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| facing a ||| 0.00557103 0.00499165 1.69729e-06 4.2024e-08 2.718 ||| 0-0 0-1 ||| 359 1.17835e+06 +en ||| facing at ||| 0.0909091 0.321886 8.48644e-07 2.13211e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| facing in ||| 0.136364 0.605812 2.54593e-06 2.46129e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| facing particularly severe transport ||| 0.5 0.183344 8.48644e-07 3.18409e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| facing particularly severe ||| 0.5 0.183344 8.48644e-07 3.09435e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| facing particularly ||| 0.5 0.183344 8.48644e-07 2.38027e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| facing the country of ||| 1 0.0116562 8.48644e-07 1.60597e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| facing trial in ||| 1 0.605812 8.48644e-07 3.10123e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| facing ||| 0.00681597 0.0084602 1.78215e-05 5.1e-05 2.718 ||| 0-0 ||| 3081 1.17835e+06 +en ||| fact , at ||| 0.0384615 0.321886 8.48644e-07 1.3974e-05 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| fact , in ||| 0.0328947 0.605812 4.24322e-06 0.000161315 2.718 ||| 0-2 ||| 152 1.17835e+06 +en ||| fact , there are ||| 0.0526316 0.0117359 8.48644e-07 5.94378e-09 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| fact , there ||| 0.0588235 0.0117359 8.48644e-07 3.91742e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| fact , throughout ||| 0.2 0.309047 8.48644e-07 1.01334e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| fact at ||| 0.047619 0.321886 8.48644e-07 0.000117178 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| fact be translated in ||| 1 0.605812 8.48644e-07 2.10827e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| fact been in ||| 1 0.605812 8.48644e-07 4.51692e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fact from ||| 0.0588235 0.0308834 8.48644e-07 1.11463e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| fact here in ||| 1 0.605812 8.48644e-07 2.743e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fact in ||| 0.111111 0.605812 9.33509e-06 0.0013527 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| fact into ||| 0.6 0.525896 2.54593e-06 6.48468e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| fact is that , in ||| 0.125 0.605812 1.69729e-06 8.50466e-08 2.718 ||| 0-4 ||| 16 1.17835e+06 +en ||| fact of ||| 0.00406504 0.0116562 8.48644e-07 3.99469e-05 2.718 ||| 0-1 ||| 246 1.17835e+06 +en ||| fact on ||| 0.0588235 0.22993 8.48644e-07 0.000243274 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| fact standing in ||| 1 0.605812 8.48644e-07 7.15576e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fact suffering at ||| 1 0.321886 8.48644e-07 5.19098e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fact that , as ||| 0.0123457 0.066968 8.48644e-07 1.05703e-07 2.718 ||| 0-3 ||| 81 1.17835e+06 +en ||| fact that , in ||| 0.0147059 0.605812 2.54593e-06 2.71358e-06 2.718 ||| 0-3 ||| 204 1.17835e+06 +en ||| fact that , on ||| 0.09375 0.22993 2.54593e-06 4.8802e-07 2.718 ||| 0-3 ||| 32 1.17835e+06 +en ||| fact that during ||| 0.0434783 0.226251 8.48644e-07 1.4247e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| fact that eight soldiers were killed a ||| 1 0.0005269 8.48644e-07 3.06375e-25 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fact that eight soldiers were killed ||| 1 0.0005269 8.48644e-07 6.91189e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fact that eight soldiers were ||| 1 0.0005269 8.48644e-07 2.90415e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fact that eight soldiers ||| 1 0.0005269 8.48644e-07 1.62116e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fact that eight ||| 1 0.0005269 8.48644e-07 3.44929e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fact that in ||| 0.00740741 0.605812 1.69729e-06 2.27545e-05 2.718 ||| 0-2 ||| 270 1.17835e+06 +en ||| fact that it is being held in ||| 0.333333 0.605812 8.48644e-07 9.20675e-15 2.718 ||| 0-6 ||| 3 1.17835e+06 +en ||| fact that it ||| 0.00271739 0.0080472 8.48644e-07 1.35897e-07 2.718 ||| 0-2 ||| 368 1.17835e+06 +en ||| fact that there are countries in ||| 0.333333 0.605812 8.48644e-07 4.01831e-13 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| fact that ||| 0.000248868 0.0017499 4.24322e-06 3.0617e-06 2.718 ||| 0-1 ||| 20091 1.17835e+06 +en ||| fact to ||| 0.0166667 0.0247351 8.48644e-07 8.23376e-05 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| fact which is highlighted in ||| 1 0.605812 8.48644e-07 7.27459e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| factor in ||| 0.0434783 0.605812 8.48644e-06 2.24426e-05 2.718 ||| 0-1 ||| 230 1.17835e+06 +en ||| factor into ||| 0.333333 0.525896 1.69729e-06 1.07587e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| factor we now consider ||| 1 0.0054082 8.48644e-07 3.60587e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| factor we now ||| 1 0.0054082 8.48644e-07 2.26642e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| factor we ||| 0.333333 0.0054082 8.48644e-07 1.10026e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| factor which in turn defines the European ||| 1 0.605812 8.48644e-07 1.22841e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| factor which in turn defines the ||| 1 0.605812 8.48644e-07 3.67358e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| factor which in turn defines ||| 1 0.605812 8.48644e-07 5.98383e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| factor which in turn ||| 1 0.605812 8.48644e-07 4.27416e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| factor which in ||| 0.5 0.605812 8.48644e-07 1.90641e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| factored in ||| 0.0909091 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| factories in ||| 0.0322581 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| factors in ||| 0.0379747 0.605812 2.54593e-06 1.38073e-05 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| factors into consideration ||| 0.142857 0.525896 8.48644e-07 7.14858e-11 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| factors into ||| 0.2 0.525896 1.69729e-06 6.61905e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| factory in ||| 0.0344828 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| factually speaking ||| 0.25 0.126437 8.48644e-07 8.61e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| factually ||| 0.06 0.126437 2.54593e-06 7.5e-06 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| fail in ||| 0.0789474 0.605812 2.54593e-06 2.49362e-05 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| fail to comply with ||| 0.0232558 0.0535436 8.48644e-07 2.61815e-12 2.718 ||| 0-3 ||| 43 1.17835e+06 +en ||| fail to ||| 0.000693001 0.0247351 8.48644e-07 1.51785e-06 2.718 ||| 0-1 ||| 1443 1.17835e+06 +en ||| failed at ||| 0.0588235 0.321886 8.48644e-07 1.85609e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| failed in ||| 0.00787402 0.605812 8.48644e-07 2.14266e-05 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| failed to respond ||| 0.1 0.0247351 8.48644e-07 3.704e-11 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| failed to ||| 0.00226757 0.0247351 2.54593e-06 1.30423e-06 2.718 ||| 0-1 ||| 1323 1.17835e+06 +en ||| failing to ||| 0.00343053 0.0285171 1.69729e-06 2.71906e-06 2.718 ||| 0-0 ||| 583 1.17835e+06 +en ||| failing ||| 0.00529101 0.0285171 5.09187e-06 3.06e-05 2.718 ||| 0-0 ||| 1134 1.17835e+06 +en ||| failings during ||| 0.5 0.226251 8.48644e-07 4.04782e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| fails in ||| 0.0588235 0.605812 8.48644e-07 6.97289e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| failure as ||| 0.125 0.066968 8.48644e-07 8.41834e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| failure from the social policy ||| 0.5 0.0308834 8.48644e-07 4.44619e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| failure from the social ||| 0.5 0.0308834 8.48644e-07 1.12933e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| failure from the ||| 0.25 0.0308834 8.48644e-07 1.09326e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| failure from ||| 0.25 0.0308834 8.48644e-07 1.78079e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| failure on ||| 0.0338983 0.22993 1.69729e-06 3.88667e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| failure to ||| 0.000740192 0.0247351 8.48644e-07 1.31547e-06 2.718 ||| 0-1 ||| 1351 1.17835e+06 +en ||| failures in ||| 0.0178571 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| fair and square on ||| 1 0.22993 8.48644e-07 3.87974e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| fair in ||| 0.0285714 0.605812 8.48644e-07 2.39203e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| fair number of ||| 0.0588235 0.0116562 8.48644e-07 3.49525e-10 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| fair return on ||| 0.166667 0.22993 8.48644e-07 2.86507e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| fair to ||| 0.00414938 0.0247351 8.48644e-07 1.45601e-06 2.718 ||| 0-1 ||| 241 1.17835e+06 +en ||| fair ||| 0.000150083 0.0001396 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 6663 1.17835e+06 +en ||| fairly and squarely in ||| 1 0.605812 8.48644e-07 5.99708e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| fairly in ||| 0.0606061 0.605812 1.69729e-06 1.49617e-05 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| fairly well in ||| 0.5 0.605812 8.48644e-07 2.37233e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| fairly with ||| 0.0344828 0.0535436 8.48644e-07 3.77748e-07 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| fait with ||| 0.1 0.0535436 8.48644e-07 8.16123e-09 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| faith in far-sighted ||| 1 0.605812 8.48644e-07 4.78405e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| faith in ||| 0.0143443 0.605812 5.94051e-06 6.83436e-06 2.718 ||| 0-1 ||| 488 1.17835e+06 +en ||| fall as ||| 0.25 0.066968 8.48644e-07 1.72144e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| fall back on ||| 0.0606061 0.22993 1.69729e-06 5.34564e-09 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| fall by ||| 0.0363636 0.0468744 1.69729e-06 8.14129e-07 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| fall in ||| 0.00773196 0.605812 2.54593e-06 4.41925e-05 2.718 ||| 0-1 ||| 388 1.17835e+06 +en ||| fall into discontent and annoyance ||| 0.5 0.525896 8.48644e-07 1.48605e-20 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| fall into discontent and ||| 0.5 0.525896 8.48644e-07 1.06146e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| fall into discontent ||| 0.5 0.525896 8.48644e-07 8.47416e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| fall into in ||| 1 0.605812 8.48644e-07 4.53724e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fall into ||| 0.0254237 0.525896 5.09187e-06 2.11854e-06 2.718 ||| 0-1 ||| 236 1.17835e+06 +en ||| fall of ||| 0.00628931 0.0116562 8.48644e-07 1.30506e-06 2.718 ||| 0-1 ||| 159 1.17835e+06 +en ||| fall on ||| 0.0416667 0.22993 1.69729e-06 7.94773e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| fall over themselves ||| 0.25 0.157937 8.48644e-07 1.64785e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| fall over ||| 0.0909091 0.157937 8.48644e-07 3.83489e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| fall under ||| 0.0120482 0.205566 1.69729e-06 5.41145e-07 2.718 ||| 0-1 ||| 166 1.17835e+06 +en ||| fall within the ||| 0.00367647 0.369196 8.48644e-07 6.51365e-08 2.718 ||| 0-1 ||| 272 1.17835e+06 +en ||| fall within ||| 0.0239234 0.369196 8.48644e-06 1.061e-06 2.718 ||| 0-1 ||| 418 1.17835e+06 +en ||| fallen behind in ||| 0.142857 0.605812 8.48644e-07 6.24771e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| fallen in , then ||| 0.5 0.605812 8.48644e-07 1.33913e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| fallen in , ||| 0.5 0.605812 8.48644e-07 8.3155e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| fallen in ||| 0.0357143 0.605812 8.48644e-07 6.97289e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| fallen into and been ||| 1 0.525896 8.48644e-07 1.39815e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fallen into and ||| 1 0.525896 8.48644e-07 4.18707e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fallen into ||| 0.047619 0.525896 1.69729e-06 3.34273e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| fallen over ||| 0.166667 0.157937 8.48644e-07 6.05087e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| fallen silent in ||| 0.5 0.605812 8.48644e-07 5.99669e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| fallen victim to ||| 0.0192308 0.0247351 8.48644e-07 7.63984e-12 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| falling apart on ||| 1 0.22993 8.48644e-07 1.32452e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| falling in ||| 0.0434783 0.605812 8.48644e-07 1.18216e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| falling into ||| 0.030303 0.525896 2.54593e-06 5.66715e-07 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| falling under ||| 0.0238095 0.205566 8.48644e-07 1.44758e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| falling within ||| 0.0181818 0.369196 8.48644e-07 2.8382e-07 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| falls in ||| 0.027027 0.605812 8.48644e-07 1.44537e-05 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| falls on ||| 0.0227273 0.22993 8.48644e-07 2.59941e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| falls to ||| 0.0144928 0.0247351 1.69729e-06 8.7979e-07 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| falls within ||| 0.0116732 0.369196 2.54593e-06 3.47014e-07 2.718 ||| 0-1 ||| 257 1.17835e+06 +en ||| false economy , widely heard in ||| 0.5 0.605812 8.48644e-07 3.4055e-20 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| false roadblock in ||| 0.333333 0.605812 8.48644e-07 9.97447e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| false ||| 0.000925926 0.0009497 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1080 1.17835e+06 +en ||| familiar - with Article 24 of the ||| 1 0.0535436 8.48644e-07 3.87398e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| familiar - with Article 24 of ||| 1 0.0535436 8.48644e-07 6.31026e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| familiar - with Article 24 ||| 1 0.0535436 8.48644e-07 1.16074e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| familiar - with Article ||| 1 0.0535436 8.48644e-07 1.3497e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| familiar - with ||| 1 0.0535436 8.48644e-07 6.81667e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| familiar in ||| 0.0769231 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| familiar with in a ||| 1 0.605812 8.48644e-07 2.02876e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| familiar with in ||| 0.166667 0.605812 8.48644e-07 4.57693e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| families , in ||| 0.111111 0.605812 8.48644e-07 4.57077e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| families in ||| 0.00854701 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| fans on in ||| 1 0.417871 8.48644e-07 2.68451e-08 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| fans on ||| 1 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| far advanced ||| 0.04 0.0028706 8.48644e-07 7.7552e-10 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| far apart over ||| 1 0.157937 8.48644e-07 1.70435e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| far as , at ||| 0.5 0.321886 8.48644e-07 3.32334e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| far as I ||| 0.00374532 0.066968 8.48644e-07 8.6865e-08 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| far as Loire-Atlantique is concerned ||| 1 0.066968 8.48644e-07 2.47647e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| far as Loire-Atlantique is ||| 1 0.066968 8.48644e-07 1.53952e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| far as Loire-Atlantique ||| 1 0.066968 8.48644e-07 4.91214e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| far as a ||| 0.05 0.066968 8.48644e-07 5.44336e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| far as is ||| 0.02 0.066968 8.48644e-07 3.84879e-07 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| far as possible ||| 0.00103842 0.066968 8.48644e-07 9.85006e-09 2.718 ||| 0-1 ||| 963 1.17835e+06 +en ||| far as regards ||| 1 0.066968 8.48644e-07 1.71925e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| far as the ||| 0.00113636 0.066968 8.48644e-07 7.53912e-07 2.718 ||| 0-1 ||| 880 1.17835e+06 +en ||| far as this is possible ||| 0.142857 0.066968 8.48644e-07 1.99471e-12 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| far as this is ||| 0.0294118 0.066968 8.48644e-07 2.48686e-09 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| far as this ||| 0.0106383 0.066968 8.48644e-07 7.93482e-08 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| far as we are ||| 0.00531915 0.066968 8.48644e-07 2.11523e-09 2.718 ||| 0-1 ||| 188 1.17835e+06 +en ||| far as we know at ||| 1 0.321886 8.48644e-07 8.16211e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| far as we ||| 0.004 0.066968 8.48644e-07 1.3941e-07 2.718 ||| 0-1 ||| 250 1.17835e+06 +en ||| far as ||| 0.0180471 0.066968 8.06212e-05 1.22803e-05 2.718 ||| 0-1 ||| 5264 1.17835e+06 +en ||| far away from ||| 0.02 0.0308834 8.48644e-07 8.26342e-10 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| far away in ||| 0.166667 0.605812 8.48644e-07 1.00284e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| far back as in ||| 1 0.605812 8.48644e-07 2.16377e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| far back as ||| 0.26 0.066968 1.10324e-05 8.25976e-09 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| far back into ||| 0.5 0.525896 8.48644e-07 1.01651e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| far behind when ||| 0.5 0.142731 8.48644e-07 3.64163e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| far from being ||| 0.00404858 0.0308834 8.48644e-07 7.39265e-09 2.718 ||| 0-1 ||| 247 1.17835e+06 +en ||| far from the ||| 0.00862069 0.0308834 8.48644e-07 1.5948e-07 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| far from their ||| 0.0526316 0.0308834 8.48644e-07 3.01104e-09 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| far from ||| 0.0032113 0.0308834 4.24322e-06 2.59774e-06 2.718 ||| 0-1 ||| 1557 1.17835e+06 +en ||| far greater ||| 0.00409836 0.0028706 8.48644e-07 6.90108e-09 2.718 ||| 0-0 ||| 244 1.17835e+06 +en ||| far in ||| 0.0307692 0.605812 6.78915e-06 0.000315258 2.718 ||| 0-1 ||| 260 1.17835e+06 +en ||| far into ||| 0.0952381 0.525896 1.69729e-06 1.51131e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| far more in ||| 0.0769231 0.605812 8.48644e-07 7.19955e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| far more on ||| 0.0625 0.22993 8.48644e-07 1.29479e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| far more ||| 0.000673854 0.0042952 8.48644e-07 2.27134e-07 2.718 ||| 0-1 ||| 1484 1.17835e+06 +en ||| far on ||| 0.0243902 0.22993 8.48644e-07 5.66971e-05 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| far that we are now already in ||| 1 0.605812 8.48644e-07 8.71367e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| far to ||| 0.012987 0.0247351 8.48644e-07 1.91895e-05 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| far ||| 0.000674764 0.0028706 8.48644e-06 5.24e-05 2.718 ||| 0-0 ||| 14820 1.17835e+06 +en ||| farm into virtually ||| 0.25 0.525896 8.48644e-07 2.64585e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| farm into ||| 0.25 0.525896 8.48644e-07 1.59389e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| farmers and amending ||| 1 0.0004602 8.48644e-07 3.53356e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| farmers in Austria are ||| 0.5 0.605812 8.48644e-07 2.93655e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| farmers in Austria ||| 0.5 0.605812 8.48644e-07 1.93542e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| farmers in ||| 0.00716846 0.605812 3.39458e-06 1.86098e-05 2.718 ||| 0-1 ||| 558 1.17835e+06 +en ||| farming in ||| 0.025641 0.605812 1.69729e-06 6.83436e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| farms from ||| 0.25 0.0308834 8.48644e-07 3.57679e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| farms in ||| 0.025 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| fashion in ||| 0.222222 0.605812 1.69729e-06 1.66241e-05 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| fashioned in ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| fast in ||| 0.04 0.605812 8.48644e-07 8.49677e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| fastidious ||| 0.25 0.166667 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| fault of ||| 0.0100503 0.0116562 1.69729e-06 2.15465e-07 2.718 ||| 0-1 ||| 199 1.17835e+06 +en ||| favour , as ||| 0.0434783 0.066968 8.48644e-07 6.93953e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| favour in future . in ||| 1 0.605812 8.48644e-07 2.57243e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| favour in ||| 0.0204082 0.605812 8.48644e-07 0.000149386 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| favour of in ||| 0.333333 0.605812 8.48644e-07 8.12123e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| favour of paedophilia on the Internet . ||| 1 0.22993 8.48644e-07 3.28905e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| favour of paedophilia on the Internet ||| 1 0.22993 8.48644e-07 1.08585e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| favour of paedophilia on the ||| 1 0.22993 8.48644e-07 6.27661e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| favour of paedophilia on ||| 1 0.22993 8.48644e-07 1.02239e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| favour of this in principle , ||| 1 0.605812 8.48644e-07 9.59326e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| favour of this in principle ||| 1 0.605812 8.48644e-07 8.04434e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| favour of this in ||| 0.285714 0.605812 1.69729e-06 5.24745e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| favour of ||| 6.90274e-05 0.0116562 8.48644e-07 4.41157e-06 2.718 ||| 0-1 ||| 14487 1.17835e+06 +en ||| favour within ||| 1 0.369196 8.48644e-07 3.58655e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| favourably with the ||| 0.1 0.0535436 8.48644e-07 1.7894e-09 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| favourably with ||| 0.05 0.0535436 8.48644e-07 2.91473e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| favoured in ||| 0.333333 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| feared through ||| 1 0.0366102 8.48644e-07 2.351e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fears for ||| 0.05 0.0286209 8.48644e-07 1.08149e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| feasible in ||| 0.0232558 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| feasible way to ||| 1 0.0247351 8.48644e-07 4.12014e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| feature in ||| 0.0508475 0.605812 5.09187e-06 1.24681e-05 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| feature of the ||| 0.046875 0.0257634 2.54593e-06 6.14101e-08 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| feature of ||| 0.0625 0.0187098 6.78915e-06 2.50921e-07 2.718 ||| 0-0 0-1 ||| 128 1.17835e+06 +en ||| feature on ||| 0.0322581 0.22993 8.48644e-07 2.24231e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| feature ||| 0.00995025 0.0257634 6.78915e-06 1.84e-05 2.718 ||| 0-0 ||| 804 1.17835e+06 +en ||| featured in ||| 0.0277778 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| features in ||| 0.0212766 0.605812 8.48644e-07 8.49677e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| features of ||| 0.00917431 0.0116562 8.48644e-07 2.50921e-07 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| featuring ||| 0.0350877 0.036036 1.69729e-06 2.7e-06 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| fed into ||| 0.0833333 0.525896 1.69729e-06 1.8374e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| feed into ||| 0.0263158 0.525896 8.48644e-07 4.13968e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| feed is banned in the EU ||| 1 0.605812 8.48644e-07 8.54999e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| feed is banned in the ||| 1 0.605812 8.48644e-07 1.72797e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| feed is banned in ||| 1 0.605812 8.48644e-07 2.81466e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| feedback on ||| 0.05 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| feeds through ||| 0.5 0.0366102 8.48644e-07 2.351e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| feel at ||| 0.0172414 0.321886 8.48644e-07 6.76434e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| feel complacent behind ||| 1 0.0374138 8.48644e-07 1.57398e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| feel in ||| 0.166667 0.605812 2.54593e-06 7.80872e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| feel is in ||| 1 0.605812 8.48644e-07 2.44734e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| feel sure , on ||| 1 0.22993 8.48644e-07 2.91742e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| feeling in ||| 0.0625 0.605812 1.69729e-06 1.67627e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| feelings in ||| 0.0833333 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| feels rather ||| 1 0.16257 8.48644e-07 3.17871e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| feet in ||| 0.176471 0.605812 2.54593e-06 8.63531e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| feet on a ||| 1 0.22993 8.48644e-07 6.88382e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| feet on ||| 0.125 0.22993 3.39458e-06 1.55301e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| feet when ||| 0.1 0.142731 8.48644e-07 1.11327e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| fell into bad ways a ||| 1 0.525896 8.48644e-07 6.39788e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fell into bad ways ||| 1 0.525896 8.48644e-07 1.44338e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fell into bad ||| 1 0.525896 8.48644e-07 1.49728e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fell into ||| 0.0625 0.525896 8.48644e-07 3.27632e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| fell victim to ||| 0.0416667 0.0247351 8.48644e-07 7.48805e-12 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| fell within the ||| 0.0833333 0.369196 8.48644e-07 1.00734e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| fell within ||| 0.0526316 0.369196 8.48644e-07 1.64083e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| fellow Members in paying ||| 0.5 0.605812 8.48644e-07 1.51716e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| fellow Members in ||| 0.021978 0.605812 1.69729e-06 4.48863e-09 2.718 ||| 0-2 ||| 91 1.17835e+06 +en ||| felt as such in ||| 0.5 0.605812 8.48644e-07 5.57647e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| felt by citizens and in ||| 1 0.605812 8.48644e-07 1.89337e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| felt by ||| 0.0165289 0.0468744 1.69729e-06 4.86606e-07 2.718 ||| 0-1 ||| 121 1.17835e+06 +en ||| felt in ||| 0.0882353 0.605812 7.6378e-06 2.64139e-05 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| felt that ||| 0.003125 0.0017499 8.48644e-07 5.97854e-08 2.718 ||| 0-1 ||| 320 1.17835e+06 +en ||| few adjustments : in ||| 1 0.605812 8.48644e-07 1.09056e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| few and ||| 0.0322581 0.0010182 8.48644e-07 1.61749e-07 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| few days on ||| 0.5 0.22993 8.48644e-07 9.27369e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| few have been through ||| 1 0.0366102 8.48644e-07 6.58356e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| few in ||| 0.0714286 0.605812 1.69729e-06 8.09502e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| few minutes in ||| 1 0.605812 8.48644e-07 1.31139e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| few moments ago , in ||| 1 0.605812 8.48644e-07 4.25149e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| few obvious points in ||| 1 0.605812 8.48644e-07 4.38494e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| few of ||| 0.00298507 0.0116562 8.48644e-07 2.39057e-06 2.718 ||| 0-1 ||| 335 1.17835e+06 +en ||| few part-time jobs in ||| 0.25 0.605812 8.48644e-07 9.22509e-15 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| few points in ||| 0.047619 0.605812 8.48644e-07 1.05154e-08 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| few rides on ||| 0.5 0.22993 8.48644e-07 2.62051e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| few standing a chance of survival in ||| 1 0.605812 8.48644e-07 4.42019e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| few steps taken in ||| 0.5 0.605812 8.48644e-07 4.35338e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| few who live comfortably , in ||| 1 0.605812 8.48644e-07 9.44094e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| few words about ||| 0.00714286 0.0401564 8.48644e-07 1.13549e-10 2.718 ||| 0-2 ||| 140 1.17835e+06 +en ||| few words on ||| 0.0102041 0.22993 8.48644e-07 3.29019e-09 2.718 ||| 0-2 ||| 98 1.17835e+06 +en ||| fewer in ||| 0.0625 0.605812 8.48644e-07 9.78976e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| fewer than ||| 0.003861 0.0013548 8.48644e-07 1.11088e-09 2.718 ||| 0-1 ||| 259 1.17835e+06 +en ||| field - with ||| 0.5 0.0535436 8.48644e-07 6.42526e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| field given ||| 0.5 0.0546585 8.48644e-07 1.69607e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| field in ||| 0.0203046 0.605812 3.39458e-06 6.74662e-05 2.718 ||| 0-1 ||| 197 1.17835e+06 +en ||| field of ||| 0.000400962 0.0116562 1.69729e-06 1.99237e-06 2.718 ||| 0-1 ||| 4988 1.17835e+06 +en ||| fields of ||| 0.00138504 0.0116562 8.48644e-07 5.05933e-07 2.718 ||| 0-1 ||| 722 1.17835e+06 +en ||| fifth part of ||| 0.333333 0.0345572 8.48644e-07 2.11938e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| fifth part ||| 0.333333 0.0345572 8.48644e-07 3.89849e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| fifth ||| 0.000893655 0.0345572 8.48644e-07 3.27e-05 2.718 ||| 0-0 ||| 1119 1.17835e+06 +en ||| fight against corruption ||| 0.00315457 0.153982 8.48644e-07 2.17273e-12 2.718 ||| 0-1 ||| 317 1.17835e+06 +en ||| fight against ||| 0.000133743 0.153982 8.48644e-07 3.19519e-07 2.718 ||| 0-1 ||| 7477 1.17835e+06 +en ||| fight in ||| 0.030303 0.605812 1.69729e-06 2.54441e-05 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| fight on ||| 0.0212766 0.22993 8.48644e-07 4.57597e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| fight their way into ||| 1 0.525896 8.48644e-07 3.04765e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| fighting for in ||| 1 0.605812 8.48644e-07 9.68907e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fighting in ||| 0.0140845 0.605812 8.48644e-07 1.26066e-05 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| fighting over in ||| 1 0.605812 8.48644e-07 6.07009e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fighting within its ||| 0.25 0.369196 8.48644e-07 4.3121e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| fighting within ||| 0.25 0.369196 8.48644e-07 3.02667e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| figure amongst ||| 0.166667 0.050508 8.48644e-07 9.03392e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| figure at ||| 0.285714 0.321886 1.69729e-06 3.05215e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| figure for GNP . ||| 1 0.0286209 8.48644e-07 4.7862e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| figure for GNP ||| 1 0.0286209 8.48644e-07 1.58012e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| figure for ||| 0.0405405 0.0286209 2.54593e-06 8.77847e-07 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| figure in ||| 0.0588235 0.605812 4.24322e-06 3.52339e-05 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| figure of ||| 0.00346021 0.0116562 8.48644e-07 1.0405e-06 2.718 ||| 0-1 ||| 289 1.17835e+06 +en ||| figure on both ||| 0.5 0.22993 8.48644e-07 1.04966e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| figure on ||| 0.0526316 0.22993 8.48644e-07 6.33659e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| figured in ||| 0.25 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| figures for ||| 0.00584795 0.0286209 8.48644e-07 5.3039e-07 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| figures here ||| 0.125 0.0855319 8.48644e-07 1.38305e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| figures in ||| 0.039604 0.605812 3.39458e-06 2.12881e-05 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| figures only by ||| 1 0.0468744 8.48644e-07 4.36533e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| filed for ||| 0.0666667 0.0286209 8.48644e-07 3.33651e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| filed in ||| 0.1 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| filled by ||| 0.0196078 0.0468744 8.48644e-07 8.84738e-08 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| filled in ||| 0.166667 0.605812 1.69729e-06 4.80252e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| fillet ' ||| 1 0.0032578 8.48644e-07 3.0019e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fills us with ||| 0.111111 0.0535436 8.48644e-07 9.74495e-11 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| films in ||| 0.142857 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| films on ||| 0.142857 0.22993 8.48644e-07 4.15242e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| films shown in ||| 1 0.605812 8.48644e-07 2.4105e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| films than to try their luck across ||| 1 0.274879 8.48644e-07 4.82787e-25 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| final days in ||| 1 0.605812 8.48644e-07 2.2444e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| final form in ||| 0.5 0.605812 8.48644e-07 1.60385e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| final impact of the crisis in ||| 1 0.605812 8.48644e-07 7.00564e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| final in ||| 0.25 0.605812 8.48644e-07 3.52339e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| final stages within a ||| 1 0.369196 8.48644e-07 5.66188e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| final stages within ||| 1 0.369196 8.48644e-07 1.27733e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| final ||| 0.000105175 0.0001071 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 9508 1.17835e+06 +en ||| finalised in ||| 0.05 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| finally agree on ||| 0.0714286 0.22993 8.48644e-07 1.55517e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| finally to ||| 0.00483092 0.0060298 8.48644e-07 1.07607e-05 2.718 ||| 0-0 ||| 207 1.17835e+06 +en ||| finally ||| 0.000435825 0.0060298 6.78915e-06 0.0001211 2.718 ||| 0-0 ||| 18356 1.17835e+06 +en ||| finance are with ||| 1 0.0535436 8.48644e-07 3.30797e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| finance research into ||| 0.5 0.525896 8.48644e-07 2.24784e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| financed by ||| 0.00269542 0.0468744 8.48644e-07 6.4654e-08 2.718 ||| 0-1 ||| 371 1.17835e+06 +en ||| financed it ||| 0.333333 0.0080472 8.48644e-07 2.096e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| financial framework as ||| 1 0.066968 8.48644e-07 2.61368e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| financial regulation and I shall shortly be ||| 1 0.248793 8.48644e-07 2.88349e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| financial regulation and I shall shortly ||| 1 0.248793 8.48644e-07 1.59107e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| financial resources in ||| 0.0434783 0.605812 8.48644e-07 4.03375e-09 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| financial services , a sector where consumers ||| 1 0.247783 8.48644e-07 3.37586e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| financial services , a sector where ||| 1 0.247783 8.48644e-07 9.02637e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| find expression in ||| 0.0666667 0.605812 8.48644e-07 6.25669e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| find for ||| 0.333333 0.0286209 8.48644e-07 3.83008e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| find from ||| 0.333333 0.0308834 8.48644e-07 1.26672e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| find himself in ||| 1 0.605812 8.48644e-07 1.13912e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| find in ||| 0.0543478 0.605812 4.24322e-06 0.000153727 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| find its way into ||| 0.0769231 0.525896 8.48644e-07 2.26324e-11 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| find on ||| 0.1 0.22993 8.48644e-07 2.76468e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| find ourselves at ||| 0.0454545 0.321886 8.48644e-07 4.23603e-09 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| find ourselves in a ||| 0.0136986 0.605812 8.48644e-07 2.16756e-09 2.718 ||| 0-2 ||| 73 1.17835e+06 +en ||| find ourselves in ||| 0.0337838 0.605812 4.24322e-06 4.89005e-08 2.718 ||| 0-2 ||| 148 1.17835e+06 +en ||| find out ||| 0.00132802 0.0120599 8.48644e-07 1.83261e-07 2.718 ||| 0-1 ||| 753 1.17835e+06 +en ||| find room in ||| 0.142857 0.605812 8.48644e-07 5.74939e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| find such alternative sources ? in ||| 1 0.605812 8.48644e-07 4.70081e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| find that , in ||| 0.333333 0.605812 8.48644e-07 3.08385e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| find that ||| 0.00198413 0.0017499 8.48644e-07 3.47947e-07 2.718 ||| 0-1 ||| 504 1.17835e+06 +en ||| find their way into ||| 0.04 0.525896 8.48644e-07 1.84131e-11 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| find themselves in ||| 0.0310078 0.605812 3.39458e-06 6.60565e-08 2.718 ||| 0-2 ||| 129 1.17835e+06 +en ||| find with ||| 0.142857 0.0535436 8.48644e-07 3.88125e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| find yourself in ||| 0.1 0.605812 8.48644e-07 6.91771e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| find yourself stuck in ||| 0.5 0.605812 8.48644e-07 6.98689e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| finding answers to ||| 0.1 0.0247351 8.48644e-07 3.23605e-11 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| finding in ||| 0.0714286 0.605812 8.48644e-07 2.46129e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| finding it hard to ||| 0.1 0.0247351 8.48644e-07 2.80011e-12 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| finding out where ||| 0.333333 0.247783 8.48644e-07 1.73875e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| finding ||| 0.000780031 0.0012469 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 2564 1.17835e+06 +en ||| finds ( as does the ||| 1 0.066968 8.48644e-07 9.11326e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| finds ( as does ||| 1 0.066968 8.48644e-07 1.48444e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| finds ( as ||| 1 0.066968 8.48644e-07 2.1164e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fine example of ||| 0.0294118 0.0116562 8.48644e-07 1.28619e-10 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| fine in ||| 0.0666667 0.605812 8.48644e-07 1.49617e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| finger during ||| 1 0.226251 8.48644e-07 5.08869e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| finger on ||| 0.0208333 0.22993 8.48644e-07 1.46165e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| finger where ||| 1 0.247783 8.48644e-07 1.49892e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fingerprints with those of ||| 1 0.0116562 8.48644e-07 8.83999e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| finished back in ||| 1 0.605812 8.48644e-07 2.45369e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| finished in ||| 0.0666667 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| fire in ||| 0.075 0.605812 2.54593e-06 8.31206e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| fires in ||| 0.0128205 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| firm belief in ||| 0.0769231 0.605812 8.48644e-07 4.508e-10 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| firm foothold in ||| 0.5 0.605812 8.48644e-07 2.37263e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| firm in ||| 0.0168067 0.605812 1.69729e-06 1.69474e-05 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| firm on ||| 0.0133333 0.22993 8.48644e-07 3.04788e-06 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| firm to ||| 0.0434783 0.0247351 8.48644e-07 1.03157e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| firmly anchored in ||| 0.0434783 0.605812 8.48644e-07 2.44375e-11 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| firmly at the heart of ||| 1 0.321886 8.48644e-07 4.06753e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| firmly at the heart ||| 1 0.321886 8.48644e-07 7.48202e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| firmly at the ||| 0.166667 0.321886 8.48644e-07 9.2829e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| firmly at ||| 0.222222 0.321886 1.69729e-06 1.51208e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| firmly established in ||| 0.0833333 0.605812 8.48644e-07 2.61306e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| firmly in ||| 0.0515464 0.605812 4.24322e-06 1.74553e-05 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| firmly into ||| 0.142857 0.525896 8.48644e-07 8.3679e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| firmly on ||| 0.0394737 0.22993 2.54593e-06 3.13923e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| firmly within ||| 0.111111 0.369196 8.48644e-07 4.19077e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| firms in ||| 0.0169492 0.605812 8.48644e-07 5.4952e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| firms on ||| 1 0.22993 8.48644e-07 9.88276e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| first , in ||| 0.0212766 0.605812 8.48644e-07 2.96495e-05 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| first , philosophise later ] ||| 1 0.138055 8.48644e-07 9.37739e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| first , philosophise later ||| 1 0.138055 8.48644e-07 2.50732e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| first , philosophise ||| 1 0.138055 8.48644e-07 2.91549e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| first , ||| 0.00100067 0.138055 2.54593e-06 0.000728873 2.718 ||| 0-0 ||| 2998 1.17835e+06 +en ||| first . ||| 0.00355872 0.138055 8.48644e-07 1.85129e-05 2.718 ||| 0-0 ||| 281 1.17835e+06 +en ||| first and foremost . to ||| 1 0.0247351 8.48644e-07 2.23356e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| first and foremost at ||| 0.0909091 0.321886 8.48644e-07 1.04941e-11 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| first and foremost ||| 0.00117165 0.138055 1.69729e-06 2.97807e-09 2.718 ||| 0-0 ||| 1707 1.17835e+06 +en ||| first and ||| 0.0644699 0.138055 0.000114567 7.6557e-05 2.718 ||| 0-0 ||| 2094 1.17835e+06 +en ||| first base , ||| 1 0.138055 8.48644e-07 2.46359e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| first base ||| 1 0.138055 8.48644e-07 2.06582e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| first broke ||| 0.25 0.138055 8.48644e-07 5.92854e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| first century ||| 0.1 0.138055 8.48644e-07 8.3733e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| first contact ||| 0.0434783 0.138055 8.48644e-07 1.16737e-07 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| first discussed some of the ||| 1 0.138055 8.48644e-07 1.16655e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| first discussed some of ||| 1 0.138055 8.48644e-07 1.90018e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| first discussed some ||| 1 0.138055 8.48644e-07 3.49529e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| first discussed ||| 0.0588235 0.138055 8.48644e-07 3.20875e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| first effective ||| 0.5 0.138055 8.48644e-07 4.00329e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| first half ||| 0.00333333 0.138055 8.48644e-07 1.76023e-07 2.718 ||| 0-0 ||| 300 1.17835e+06 +en ||| first hand ||| 0.00787402 0.138055 8.48644e-07 2.42398e-06 2.718 ||| 0-0 ||| 127 1.17835e+06 +en ||| first in ||| 0.0134529 0.605812 2.54593e-06 0.000248623 2.718 ||| 0-1 ||| 223 1.17835e+06 +en ||| first introduced ||| 0.0769231 0.138055 8.48644e-07 5.65351e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| first is ||| 0.000658328 0.138055 8.48644e-07 0.000191554 2.718 ||| 0-0 ||| 1519 1.17835e+06 +en ||| first item on ||| 0.1 0.22993 8.48644e-07 1.69016e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| first of all , at ||| 0.0833333 0.321886 8.48644e-07 6.598e-10 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| first of all , ||| 0.000943693 0.138055 2.54593e-06 1.87241e-07 2.718 ||| 0-0 ||| 3179 1.17835e+06 +en ||| first of all ensuring that there is ||| 1 0.138055 8.48644e-07 2.9484e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| first of all ensuring that there ||| 1 0.138055 8.48644e-07 9.40747e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| first of all ensuring that ||| 1 0.138055 8.48644e-07 3.06902e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| first of all ensuring ||| 1 0.138055 8.48644e-07 1.82445e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| first of all from ||| 0.166667 0.0308834 8.48644e-07 5.26285e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| first of all in ||| 0.0344828 0.605812 8.48644e-07 6.38692e-08 2.718 ||| 0-3 ||| 29 1.17835e+06 +en ||| first of all ||| 0.00113563 0.138055 5.94051e-06 1.5701e-06 2.718 ||| 0-0 ||| 6164 1.17835e+06 +en ||| first of ||| 0.00279401 0.138055 9.33509e-06 0.000332267 2.718 ||| 0-0 ||| 3937 1.17835e+06 +en ||| first on ||| 0.0114943 0.22993 8.48644e-07 4.47133e-05 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| first opportunity ||| 0.0128205 0.138055 8.48644e-07 1.09953e-06 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| first place in ||| 0.125 0.605812 8.48644e-07 3.74178e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| first place ||| 0.00463499 0.138055 3.39458e-06 9.19841e-06 2.718 ||| 0-0 ||| 863 1.17835e+06 +en ||| first put our own house in ||| 0.5 0.605812 8.48644e-07 1.38468e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| first reading , ||| 0.00110011 0.138055 8.48644e-07 2.09915e-08 2.718 ||| 0-0 ||| 909 1.17835e+06 +en ||| first reading ||| 0.000236016 0.138055 8.48644e-07 1.76023e-07 2.718 ||| 0-0 ||| 4237 1.17835e+06 +en ||| first round of ||| 0.0108696 0.138055 8.48644e-07 2.54849e-08 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| first round ||| 0.00609756 0.138055 8.48644e-07 4.68783e-07 2.718 ||| 0-0 ||| 164 1.17835e+06 +en ||| first saw the light of day in ||| 0.5 0.605812 8.48644e-07 1.98042e-18 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| first set ||| 0.0357143 0.138055 8.48644e-07 3.57179e-06 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| first signs ||| 0.0175439 0.138055 8.48644e-07 9.47344e-08 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| first studied in ||| 0.25 0.605812 8.48644e-07 7.95593e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| first time I have spoken in ||| 0.166667 0.605812 8.48644e-07 7.70013e-16 2.718 ||| 0-5 ||| 6 1.17835e+06 +en ||| first time in ||| 0.00631579 0.605812 2.54593e-06 4.08164e-07 2.718 ||| 0-2 ||| 475 1.17835e+06 +en ||| first time ||| 0.000538938 0.138055 1.69729e-06 1.00339e-05 2.718 ||| 0-0 ||| 3711 1.17835e+06 +en ||| first year ||| 0.00348432 0.138055 8.48644e-07 1.52431e-06 2.718 ||| 0-0 ||| 287 1.17835e+06 +en ||| first ||| 0.00637981 0.138055 0.000235923 0.0061119 2.718 ||| 0-0 ||| 43575 1.17835e+06 +en ||| firstly , in ||| 0.01875 0.605812 2.54593e-06 2.77551e-06 2.718 ||| 0-2 ||| 160 1.17835e+06 +en ||| firstly , to allow us to ||| 0.5 0.295867 8.48644e-07 3.52135e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| firstly , to allow us ||| 0.5 0.295867 8.48644e-07 3.96289e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| firstly , to allow ||| 0.333333 0.295867 8.48644e-07 1.37495e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| firstly , to ||| 0.00543478 0.295867 8.48644e-07 5.66757e-05 2.718 ||| 0-0 ||| 184 1.17835e+06 +en ||| firstly , ||| 0.000607312 0.295867 4.24322e-06 0.000637822 2.718 ||| 0-0 ||| 8233 1.17835e+06 +en ||| firstly in ||| 0.0238095 0.605812 8.48644e-07 2.32738e-05 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| firstly to ||| 0.00497512 0.295867 8.48644e-07 0.000475249 2.718 ||| 0-0 ||| 201 1.17835e+06 +en ||| firstly with a ||| 0.5 0.174705 8.48644e-07 2.764e-06 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| firstly with ||| 0.037037 0.174705 8.48644e-07 6.23565e-05 2.718 ||| 0-0 0-1 ||| 27 1.17835e+06 +en ||| firstly ||| 0.00217766 0.295867 2.03675e-05 0.0053484 2.718 ||| 0-0 ||| 11021 1.17835e+06 +en ||| fish in ||| 0.01875 0.605812 2.54593e-06 1.5285e-05 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| fish into low-value ||| 1 0.525896 8.48644e-07 2.93098e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fish into ||| 0.1 0.525896 8.48644e-07 7.32745e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| fish products into ||| 0.5 0.525896 8.48644e-07 7.62054e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| fisheries in ||| 0.0070922 0.605812 8.48644e-07 1.21448e-05 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| fishermen in ||| 0.00943396 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| fishery resources in ||| 0.0909091 0.605812 1.69729e-06 1.19029e-10 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| fit all new ||| 1 0.0006885 8.48644e-07 1.40981e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fit all ||| 0.0769231 0.0006885 8.48644e-07 2.35872e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| fit in with ||| 0.031746 0.605812 1.69729e-06 9.56726e-08 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| fit in ||| 0.047619 0.605812 3.39458e-06 1.49617e-05 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| fit into ||| 0.0140845 0.525896 8.48644e-07 7.17249e-07 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| fit through ||| 1 0.0366102 8.48644e-07 3.0469e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fit to express ||| 0.333333 0.0247351 8.48644e-07 9.2437e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| fit to ||| 0.0181818 0.0247351 1.69729e-06 9.10709e-07 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| fit with ||| 0.0769231 0.0535436 8.48644e-07 3.77748e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| fits in with ||| 0.03125 0.329678 8.48644e-07 1.72284e-08 2.718 ||| 0-1 0-2 ||| 32 1.17835e+06 +en ||| fitted in ||| 0.1 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| fitting in a ||| 0.333333 0.605812 8.48644e-07 1.47375e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| fitting in ||| 0.190476 0.605812 3.39458e-06 3.32482e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| five essential points here ||| 0.25 0.0855319 8.48644e-07 6.94469e-16 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| fixed by ||| 0.027027 0.0468744 8.48644e-07 1.62486e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| fixed in ||| 0.0909091 0.605812 1.69729e-06 8.82002e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| fixed on ||| 0.0454545 0.22993 8.48644e-07 1.58622e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| flare up ||| 0.0769231 0.0147069 8.48644e-07 2.76e-10 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| flares in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| flaring in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| flat on ||| 1 0.22993 8.48644e-07 2.65755e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| flats on ||| 1 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| flaw in ||| 0.05 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| flee , either inside their own country ||| 1 0.188717 8.48644e-07 5.02612e-23 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| flee , either inside their own ||| 1 0.188717 8.48644e-07 1.39653e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| flee , either inside their ||| 1 0.188717 8.48644e-07 8.23767e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| flee , either inside ||| 1 0.188717 8.48644e-07 7.10695e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| flexibility as regards ||| 0.125 0.066968 8.48644e-07 3.62636e-11 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| flexibility as ||| 0.025641 0.066968 8.48644e-07 2.59026e-07 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| flexibility on ||| 0.0224719 0.22993 1.69729e-06 1.1959e-06 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| flexible legislation in ||| 1 0.605812 8.48644e-07 5.19134e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| flies in ||| 0.075 0.605812 2.54593e-06 2.17037e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| flies into ||| 0.25 0.525896 8.48644e-07 1.04045e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| flight by ||| 0.333333 0.0468744 8.48644e-07 6.72061e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| flights , where ||| 0.5 0.247783 8.48644e-07 8.42985e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| flights by ||| 0.0666667 0.0468744 8.48644e-07 7.06089e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| flood to ||| 1 0.0247351 8.48644e-07 1.32109e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| floor of ||| 0.047619 0.0116562 1.69729e-06 5.79573e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| floor on ||| 0.0166667 0.22993 1.69729e-06 3.52956e-06 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| flourish in ||| 0.0416667 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| flourishing in ||| 0.25 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| flouted in ||| 0.1 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| flow instead to ||| 1 0.0247351 8.48644e-07 1.02151e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| flow of goods in ||| 0.25 0.605812 8.48644e-07 2.08315e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| flow of ||| 0.00201613 0.0116562 8.48644e-07 2.45466e-07 2.718 ||| 0-1 ||| 496 1.17835e+06 +en ||| flowing from ||| 0.0555556 0.0308834 8.48644e-07 8.37122e-09 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| flown in ||| 0.111111 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| flows , in actual fact ||| 1 0.605812 8.48644e-07 2.4276e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| flows , in actual ||| 1 0.605812 8.48644e-07 8.28731e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| flows , in ||| 1 0.605812 8.48644e-07 5.72723e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| flows abundantly in ||| 1 0.605812 8.48644e-07 1.72891e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| flows into ||| 0.0666667 0.525896 8.48644e-07 2.30228e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| flows to ||| 0.0454545 0.0247351 8.48644e-07 2.92326e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| fluoride in ||| 0.0769231 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| fly in the ||| 0.0322581 0.605812 8.48644e-07 3.2602e-07 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| fly in ||| 0.0508475 0.605812 2.54593e-06 5.31048e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| fly off ||| 0.2 0.0262428 8.48644e-07 1.9251e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| fly with ||| 0.333333 0.0535436 8.48644e-07 1.34077e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| flying in ||| 0.0833333 0.605812 1.69729e-06 7.15761e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| flying off in ||| 0.2 0.605812 8.48644e-07 2.91315e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| flying to the ||| 0.1 0.0247351 8.48644e-07 2.67471e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| flying to ||| 0.0588235 0.0247351 8.48644e-07 4.35679e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| focal point in ||| 0.1 0.605812 8.48644e-07 1.00992e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| focus competition on ||| 1 0.22993 8.48644e-07 2.33334e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| focus in ||| 0.0263158 0.605812 1.69729e-06 3.57419e-05 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| focus much more on ||| 0.142857 0.22993 8.48644e-07 1.47338e-11 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| focus of the ||| 0.00943396 0.0116562 8.48644e-07 6.47993e-08 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| focus of ||| 0.00255754 0.0116562 8.48644e-07 1.0555e-06 2.718 ||| 0-1 ||| 391 1.17835e+06 +en ||| focus on fiscal consolidation ||| 1 0.22993 8.48644e-07 1.38844e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| focus on fiscal ||| 1 0.22993 8.48644e-07 3.47109e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| focus on this ||| 0.0192308 0.22993 8.48644e-07 4.15335e-08 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| focus on ||| 0.0108941 0.22993 2.46107e-05 6.42795e-06 2.718 ||| 0-1 ||| 2662 1.17835e+06 +en ||| focus solely on ||| 0.0227273 0.22993 8.48644e-07 1.41415e-10 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| focus ||| 0.00129774 0.003879 5.94051e-06 2.04e-05 2.718 ||| 0-0 ||| 5394 1.17835e+06 +en ||| focused attention on ||| 0.0588235 0.22993 8.48644e-07 4.83922e-10 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| focused in ||| 0.0909091 0.605812 1.69729e-06 1.02977e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| focused on the man instead of stigmatising ||| 1 0.22993 8.48644e-07 3.17975e-23 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| focused on the man instead of ||| 1 0.22993 8.48644e-07 7.94939e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| focused on the man instead ||| 1 0.22993 8.48644e-07 1.46225e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| focused on the man ||| 1 0.22993 8.48644e-07 7.24246e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| focused on the ||| 0.0041841 0.22993 8.48644e-07 1.13696e-07 2.718 ||| 0-1 ||| 239 1.17835e+06 +en ||| focused on ||| 0.00522193 0.22993 3.39458e-06 1.85198e-06 2.718 ||| 0-1 ||| 766 1.17835e+06 +en ||| focused ||| 0.000760456 0.0031028 8.48644e-07 4.8e-06 2.718 ||| 0-0 ||| 1315 1.17835e+06 +en ||| focuses instead on ||| 0.5 0.22993 8.48644e-07 1.27433e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| focuses on ||| 0.00442478 0.22993 1.69729e-06 6.31168e-07 2.718 ||| 0-1 ||| 452 1.17835e+06 +en ||| focuses too much on ||| 0.0833333 0.22993 8.48644e-07 8.62198e-13 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| focusing on today can hardly be overestimated ||| 1 0.22993 8.48644e-07 1.01901e-24 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| focusing on today can hardly be ||| 1 0.22993 8.48644e-07 9.26374e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| focusing on today can hardly ||| 1 0.22993 8.48644e-07 5.11162e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| focusing on today can ||| 1 0.22993 8.48644e-07 2.25182e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| focusing on today ||| 0.5 0.22993 8.48644e-07 7.57091e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| focusing on ||| 0.011065 0.22993 6.78915e-06 1.67758e-06 2.718 ||| 0-1 ||| 723 1.17835e+06 +en ||| focusing them on ||| 0.5 0.22993 8.48644e-07 4.49993e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| focusing ||| 0.0010661 0.010479 8.48644e-07 9.5e-06 2.718 ||| 0-0 ||| 938 1.17835e+06 +en ||| focussing on ||| 0.0232558 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| fold in ||| 1 0.605812 1.69729e-06 1.84712e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| follow , in ||| 0.5 0.605812 8.48644e-07 5.45189e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| follow in ||| 0.0266667 0.605812 1.69729e-06 4.57163e-05 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| follow on ||| 0.0238095 0.22993 1.69729e-06 8.22179e-06 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| follow one another in ||| 1 0.605812 8.48644e-07 4.59406e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| follow this through in ||| 1 0.605812 8.48644e-07 1.35969e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| follow up in ||| 0.142857 0.605812 8.48644e-07 1.55916e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| follow up on ||| 0.0114943 0.22993 8.48644e-07 2.80404e-08 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| follow ||| 0.000645995 0.0003845 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 3096 1.17835e+06 +en ||| followed , in ||| 0.142857 0.605812 8.48644e-07 3.94298e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| followed at ||| 0.285714 0.321886 1.69729e-06 2.86414e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| followed by ||| 0.00461894 0.0468744 3.39458e-06 6.09108e-07 2.718 ||| 0-1 ||| 866 1.17835e+06 +en ||| followed in the ||| 0.0232558 0.605812 8.48644e-07 2.02983e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| followed in ||| 0.0808824 0.605812 9.33509e-06 3.30635e-05 2.718 ||| 0-1 ||| 136 1.17835e+06 +en ||| followed on ||| 0.0555556 0.22993 8.48644e-07 5.94627e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| followed throughout ||| 0.142857 0.309047 8.48644e-07 2.07697e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| followed to the ||| 0.111111 0.0247351 8.48644e-07 1.23554e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| followed to ||| 0.0344828 0.0247351 8.48644e-07 2.01255e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| followed up in ||| 0.0434783 0.605812 8.48644e-07 1.12763e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| followed up ||| 0.00303951 0.0147069 8.48644e-07 4.9404e-08 2.718 ||| 0-1 ||| 329 1.17835e+06 +en ||| following , in ||| 0.333333 0.605812 8.48644e-07 7.03789e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| following : where will ||| 1 0.247783 8.48644e-07 3.17136e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| following : where ||| 0.5 0.247783 8.48644e-07 3.6658e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| following a ||| 0.00155763 0.0089387 8.48644e-07 4.04251e-06 2.718 ||| 0-0 ||| 642 1.17835e+06 +en ||| following among ||| 0.5 0.0422459 8.48644e-07 4.07043e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| following be ||| 0.5 0.0089387 8.48644e-07 1.65281e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| following cases of ||| 0.5 0.0089387 8.48644e-07 6.35119e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| following cases ||| 0.111111 0.0089387 8.48644e-07 1.16827e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| following final ||| 0.5 0.0089387 8.48644e-07 6.95856e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| following in ||| 0.037037 0.605812 1.69729e-06 5.90156e-05 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| following on from ||| 0.00406504 0.130407 8.48644e-07 4.03858e-08 2.718 ||| 0-1 0-2 ||| 246 1.17835e+06 +en ||| following on ||| 0.0197628 0.22993 4.24322e-06 1.06136e-05 2.718 ||| 0-1 ||| 253 1.17835e+06 +en ||| following statement , in ||| 1 0.605812 8.48644e-07 5.24323e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| following the opening of ||| 0.2 0.0116562 8.48644e-07 3.00654e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| following the ||| 0.000665484 0.0089387 2.54593e-06 5.59893e-06 2.718 ||| 0-0 ||| 4508 1.17835e+06 +en ||| following words in ||| 0.5 0.605812 8.48644e-07 1.33375e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| following ||| 0.00363022 0.0089387 4.92214e-05 9.12e-05 2.718 ||| 0-0 ||| 15977 1.17835e+06 +en ||| follows in ||| 0.0769231 0.605812 8.48644e-07 2.44282e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| follows ||| 0.000487567 0.0006414 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 2051 1.17835e+06 +en ||| fond of , at ||| 1 0.321886 8.48644e-07 4.66811e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| food additives in ||| 0.125 0.605812 8.48644e-07 1.24681e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| food for ||| 0.00617284 0.0286209 8.48644e-07 6.21281e-07 2.718 ||| 0-1 ||| 162 1.17835e+06 +en ||| food in storage ||| 1 0.605812 8.48644e-07 1.34655e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| food in ||| 0.0126582 0.605812 8.48644e-07 2.49362e-05 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| fooled by ||| 0.0526316 0.0468744 8.48644e-07 5.95497e-09 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| foot in ||| 0.0526316 0.605812 1.69729e-06 1.02977e-05 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| foot its share of ||| 1 0.0116562 8.48644e-07 4.0553e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| football fans on ||| 1 0.22993 8.48644e-07 6.51099e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| foothold in ||| 0.105263 0.605812 1.69729e-06 6.46494e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| footing in ||| 0.142857 0.605812 1.69729e-06 9.97447e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| for " ||| 0.0416667 0.0286209 8.48644e-07 2.72443e-06 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| for , and support from ||| 1 0.0308834 8.48644e-07 1.4936e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| for , and what we need ||| 1 0.0286209 8.48644e-07 2.51e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for , and what we ||| 1 0.0286209 8.48644e-07 2.73748e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for , and what ||| 1 0.0286209 8.48644e-07 2.41139e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for , and ||| 0.00980392 0.0286209 8.48644e-07 1.71862e-05 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| for , in the ||| 0.0769231 0.605812 8.48644e-07 2.5984e-05 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| for , in ||| 0.0625 0.605812 2.54593e-06 0.000423248 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| for , ||| 0.0145903 0.0286209 1.10324e-05 0.00137205 2.718 ||| 0-0 ||| 891 1.17835e+06 +en ||| for 125 posts ||| 0.5 0.0286209 8.48644e-07 8.13418e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for 125 ||| 0.333333 0.0286209 8.48644e-07 8.05364e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for 32 ||| 0.0666667 0.0286209 8.48644e-07 4.94724e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| for ; it is ||| 1 0.0286209 8.48644e-07 1.97501e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for ; it ||| 0.5 0.0286209 8.48644e-07 6.30166e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for ; ||| 0.125 0.0286209 8.48644e-07 3.5436e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| for Austria ||| 0.0135135 0.0286209 8.48644e-07 1.19654e-07 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| for Cancer Research based in ||| 1 0.605812 8.48644e-07 1.13903e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| for Europe ( ALDE Group ) ||| 1 0.0286209 8.48644e-07 5.09255e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for Europe ( ALDE Group ||| 1 0.0286209 8.48644e-07 3.54313e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for Europe ( ALDE ||| 0.2 0.0286209 8.48644e-07 1.08919e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| for Europe ( ||| 0.0526316 0.0286209 8.48644e-07 5.61438e-09 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| for Europe , ||| 0.00145985 0.0286209 8.48644e-07 6.94257e-07 2.718 ||| 0-0 ||| 685 1.17835e+06 +en ||| for Europe as ||| 0.0147059 0.0286209 8.48644e-07 5.94063e-08 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| for Europe in ||| 0.0103093 0.605812 8.48644e-07 1.79585e-06 2.718 ||| 0-2 ||| 97 1.17835e+06 +en ||| for Europe ||| 0.00139373 0.0286209 5.09187e-06 5.82163e-06 2.718 ||| 0-0 ||| 4305 1.17835e+06 +en ||| for Europe ’ ||| 0.0222222 0.0286209 8.48644e-07 1.01419e-08 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| for GNP . ||| 1 0.0286209 8.48644e-07 6.27287e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for GNP ||| 1 0.0286209 8.48644e-07 2.07094e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for Internet ||| 0.25 0.0286209 8.48644e-07 1.9904e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| for Members of the European ||| 0.0909091 0.0286209 8.48644e-07 1.89392e-11 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| for Members of the ||| 0.0102041 0.0286209 8.48644e-07 5.6638e-09 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| for Members of ||| 0.0188679 0.0286209 8.48644e-07 9.22566e-08 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| for Members ||| 0.00253165 0.0286209 8.48644e-07 1.69702e-06 2.718 ||| 0-0 ||| 395 1.17835e+06 +en ||| for Thursday ||| 0.04 0.0286209 8.48644e-07 4.14187e-08 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| for a ' ||| 0.0144928 0.0286209 8.48644e-07 1.75172e-06 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| for a Europe of Nations ||| 0.00649351 0.0286209 8.48644e-07 5.30279e-13 2.718 ||| 0-0 ||| 154 1.17835e+06 +en ||| for a Europe of ||| 0.0041841 0.0286209 8.48644e-07 1.40285e-08 2.718 ||| 0-0 ||| 239 1.17835e+06 +en ||| for a Europe ||| 0.00311526 0.0286209 8.48644e-07 2.58048e-07 2.718 ||| 0-0 ||| 321 1.17835e+06 +en ||| for a broader transatlantic partnership ||| 1 0.0286209 8.48644e-07 3.32007e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for a broader transatlantic ||| 1 0.0286209 8.48644e-07 1.53707e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for a broader ||| 0.5 0.0286209 8.48644e-07 6.98669e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for a certain ||| 0.011236 0.0286209 8.48644e-07 1.45344e-07 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| for a directive ||| 0.000573723 0.0286209 8.48644e-07 5.69135e-08 2.718 ||| 0-0 ||| 1743 1.17835e+06 +en ||| for a full ||| 0.0588235 0.0286209 8.48644e-07 9.35808e-08 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| for a little while ||| 0.25 0.0286209 8.48644e-07 1.53902e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| for a little ||| 0.0333333 0.0286209 8.48644e-07 8.25653e-08 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| for a long while ||| 0.25 0.0286209 8.48644e-07 3.21587e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| for a long ||| 0.000891266 0.0286209 8.48644e-07 1.72525e-07 2.718 ||| 0-0 ||| 1122 1.17835e+06 +en ||| for a meeting in ||| 0.333333 0.605812 8.48644e-07 1.9759e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| for a moment about ||| 0.2 0.0286209 8.48644e-07 1.30332e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| for a moment agree ||| 1 0.0286209 8.48644e-07 1.46615e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for a moment on ||| 0.0555556 0.22993 8.48644e-07 5.11245e-09 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| for a moment ||| 0.0166667 0.0286209 3.39458e-06 9.21529e-08 2.718 ||| 0-0 ||| 240 1.17835e+06 +en ||| for a resolution ||| 0.000575374 0.0286209 1.69729e-06 4.4572e-08 2.718 ||| 0-0 ||| 3476 1.17835e+06 +en ||| for a ride , no longer ||| 1 0.0286209 8.48644e-07 5.14823e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for a ride , no ||| 1 0.0286209 8.48644e-07 2.74573e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for a ride , ||| 0.333333 0.0286209 8.48644e-07 3.5274e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for a ride ||| 0.0357143 0.0286209 8.48644e-07 2.95787e-09 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| for a truly integrated internal market in ||| 1 0.605812 8.48644e-07 2.00276e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| for a very , ||| 0.25 0.0286209 8.48644e-07 2.11613e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| for a very ||| 0.0121951 0.0286209 8.48644e-07 1.77447e-06 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| for a way ahead ||| 0.5 0.0073829 8.48644e-07 1.90199e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| for a ||| 0.00311184 0.0286209 7.21348e-05 0.000509977 2.718 ||| 0-0 ||| 27315 1.17835e+06 +en ||| for about ||| 0.0125 0.0286209 8.48644e-07 1.62718e-05 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| for accession lies with ||| 1 0.0410823 8.48644e-07 3.02756e-13 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| for achieving nominal convergence , however important ||| 1 0.0286209 8.48644e-07 7.64176e-25 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for achieving nominal convergence , however ||| 1 0.0286209 8.48644e-07 1.99212e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for achieving nominal convergence , ||| 1 0.0286209 8.48644e-07 1.79843e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for achieving nominal convergence ||| 1 0.0286209 8.48644e-07 1.50806e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for achieving nominal ||| 1 0.0286209 8.48644e-07 1.67562e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for achieving ||| 0.00161031 0.0286209 8.48644e-07 7.61644e-07 2.718 ||| 0-0 ||| 621 1.17835e+06 +en ||| for action in ||| 0.0263158 0.605812 1.69729e-06 1.0729e-06 2.718 ||| 0-2 ||| 76 1.17835e+06 +en ||| for activities ||| 0.0147059 0.0286209 8.48644e-07 9.14663e-07 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| for additional resources ||| 0.166667 0.0286209 8.48644e-07 4.35776e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| for additional ||| 0.047619 0.0286209 1.69729e-06 6.08625e-07 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| for agricultural ||| 0.04 0.0286209 8.48644e-07 4.47552e-07 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| for all of ||| 0.00127226 0.0286209 8.48644e-07 2.95559e-06 2.718 ||| 0-0 ||| 786 1.17835e+06 +en ||| for all the Council ||| 1 0.0286209 8.48644e-07 1.15417e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for all the ||| 0.000764526 0.0286209 8.48644e-07 3.33767e-06 2.718 ||| 0-0 ||| 1308 1.17835e+06 +en ||| for all to engage upon ||| 1 0.114601 8.48644e-07 1.38631e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| for all ||| 0.00122087 0.0286209 9.33509e-06 5.43667e-05 2.718 ||| 0-0 ||| 9010 1.17835e+06 +en ||| for an altogether ||| 1 0.0286209 8.48644e-07 1.39604e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for an extraordinary sitting on ||| 1 0.22993 8.48644e-07 1.55765e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| for an ||| 0.00199487 0.0286209 5.94051e-06 5.11372e-05 2.718 ||| 0-0 ||| 3509 1.17835e+06 +en ||| for any kind ||| 0.0588235 0.0286209 8.48644e-07 8.4903e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| for any ||| 0.00287356 0.0286209 2.54593e-06 1.73982e-05 2.718 ||| 0-0 ||| 1044 1.17835e+06 +en ||| for anything in ||| 0.5 0.605812 8.48644e-07 5.56856e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| for anything ||| 0.0147059 0.0286209 8.48644e-07 1.80517e-06 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| for as early as the ||| 1 0.0286209 8.48644e-07 4.9793e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for as early as ||| 0.5 0.0286209 8.48644e-07 8.11069e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for as early ||| 0.5 0.0286209 8.48644e-07 7.94823e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for as ||| 0.0452261 0.0286209 7.6378e-06 0.000117404 2.718 ||| 0-0 ||| 199 1.17835e+06 +en ||| for assistance ) in ||| 0.5 0.605812 8.48644e-07 2.53527e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| for at ||| 0.0296296 0.321886 6.78915e-06 0.000307443 2.718 ||| 0-1 ||| 270 1.17835e+06 +en ||| for attention ||| 0.047619 0.0286209 8.48644e-07 3.00631e-06 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| for avoidance by ||| 0.25 0.0468744 8.48644e-07 1.63458e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| for being ||| 0.003663 0.0286209 1.69729e-06 3.27415e-05 2.718 ||| 0-0 ||| 546 1.17835e+06 +en ||| for buildings ||| 0.0222222 0.0286209 8.48644e-07 8.74395e-08 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| for by the ||| 0.0178571 0.0286209 1.69729e-06 3.70828e-06 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| for by ||| 0.0506757 0.0286209 1.27297e-05 6.04035e-05 2.718 ||| 0-0 ||| 296 1.17835e+06 +en ||| for change ||| 0.0035461 0.0286209 8.48644e-07 1.40363e-06 2.718 ||| 0-0 ||| 282 1.17835e+06 +en ||| for chocolate ||| 0.0714286 0.0286209 8.48644e-07 6.67302e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| for citizens in ||| 0.0322581 0.605812 8.48644e-07 3.86853e-07 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| for clean and ||| 0.25 0.0286209 8.48644e-07 2.85344e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| for clean ||| 0.111111 0.0286209 8.48644e-07 2.27803e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| for closely ||| 1 0.0286209 8.48644e-07 1.01821e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for collaboration in ||| 0.5 0.0286209 8.48644e-07 1.23132e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for collaboration ||| 0.037037 0.0286209 8.48644e-07 5.7526e-08 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| for commercial activities ||| 0.333333 0.0286209 8.48644e-07 1.74701e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for commercial ||| 0.05 0.0286209 8.48644e-07 2.19749e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| for completion ||| 0.05 0.0286209 8.48644e-07 1.65675e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| for confidence in ||| 0.111111 0.605812 8.48644e-07 1.09668e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| for consideration to ||| 0.25 0.0286209 8.48644e-07 1.10412e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| for consideration ||| 0.00813008 0.0286209 8.48644e-07 1.24256e-06 2.718 ||| 0-0 ||| 123 1.17835e+06 +en ||| for consumers , I am all ||| 1 0.0286209 8.48644e-07 2.19117e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for consumers , I am ||| 1 0.0286209 8.48644e-07 4.63699e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for consumers , I ||| 0.5 0.0286209 8.48644e-07 3.62974e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for consumers , ||| 0.00434783 0.0286209 8.48644e-07 5.13146e-08 2.718 ||| 0-0 ||| 230 1.17835e+06 +en ||| for consumers ||| 0.00160643 0.0286209 1.69729e-06 4.30294e-07 2.718 ||| 0-0 ||| 1245 1.17835e+06 +en ||| for cooperation , that ||| 1 0.0286209 8.48644e-07 2.12567e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for cooperation , ||| 0.0238095 0.0286209 8.48644e-07 1.26366e-07 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| for cooperation in ||| 0.0116279 0.605812 8.48644e-07 3.26873e-07 2.718 ||| 0-2 ||| 86 1.17835e+06 +en ||| for cooperation ||| 0.00133511 0.0286209 8.48644e-07 1.05963e-06 2.718 ||| 0-0 ||| 749 1.17835e+06 +en ||| for creating ||| 0.00232019 0.0286209 8.48644e-07 6.70753e-07 2.718 ||| 0-0 ||| 431 1.17835e+06 +en ||| for criminal ||| 0.0357143 0.0286209 8.48644e-07 4.79767e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| for debate here very ||| 1 0.0286209 8.48644e-07 1.6065e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for debate here ||| 0.333333 0.0286209 8.48644e-07 4.61706e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for debate in ||| 0.0666667 0.605812 8.48644e-07 7.02369e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| for debate ||| 0.00395257 0.0286209 8.48644e-07 2.27688e-06 2.718 ||| 0-0 ||| 253 1.17835e+06 +en ||| for decisions ||| 0.00763359 0.0286209 8.48644e-07 8.77847e-07 2.718 ||| 0-0 ||| 131 1.17835e+06 +en ||| for demonstrating were in fact aimed at ||| 0.333333 0.0286209 8.48644e-07 4.4754e-21 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for demonstrating were in fact aimed ||| 0.333333 0.0286209 8.48644e-07 1.06878e-18 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for demonstrating were in fact ||| 0.333333 0.0286209 8.48644e-07 1.53781e-14 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for demonstrating were in ||| 0.333333 0.0286209 8.48644e-07 5.24975e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for demonstrating were ||| 0.333333 0.0286209 8.48644e-07 2.45264e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for demonstrating ||| 0.0454545 0.0286209 8.48644e-07 1.36912e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| for developing ||| 0.00208333 0.153833 8.48644e-07 5.30631e-05 2.718 ||| 0-0 0-1 ||| 480 1.17835e+06 +en ||| for discussion here in ||| 0.5 0.605812 8.48644e-07 6.21811e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| for discussion ||| 0.00223714 0.0286209 8.48644e-07 9.94049e-07 2.718 ||| 0-0 ||| 447 1.17835e+06 +en ||| for drawing ||| 0.012987 0.0286209 8.48644e-07 5.71808e-07 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| for dubbing ||| 0.142857 0.0286209 8.48644e-07 4.60208e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| for each individual ||| 0.0188679 0.0286209 8.48644e-07 4.56653e-10 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| for each of ||| 0.00617284 0.0286209 8.48644e-07 1.75569e-07 2.718 ||| 0-0 ||| 162 1.17835e+06 +en ||| for each ||| 0.00187793 0.0286209 1.69729e-06 3.22951e-06 2.718 ||| 0-0 ||| 1065 1.17835e+06 +en ||| for education is not ||| 1 0.0286209 8.48644e-07 4.16103e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for education is ||| 0.5 0.0286209 8.48644e-07 1.21878e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for education ||| 0.00448431 0.0286209 8.48644e-07 3.88876e-07 2.718 ||| 0-0 ||| 223 1.17835e+06 +en ||| for effectively in ||| 1 0.605812 8.48644e-07 2.54116e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| for election at ||| 0.25 0.0286209 8.48644e-07 1.14661e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| for election ||| 0.011236 0.0286209 8.48644e-07 2.73824e-07 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| for energy ||| 0.00352113 0.0286209 8.48644e-07 1.02281e-06 2.718 ||| 0-0 ||| 284 1.17835e+06 +en ||| for ensuring ||| 0.0016 0.0286209 8.48644e-07 1.3369e-06 2.718 ||| 0-0 ||| 625 1.17835e+06 +en ||| for entry to ||| 0.0344828 0.026678 8.48644e-07 5.95041e-09 2.718 ||| 0-0 0-2 ||| 29 1.17835e+06 +en ||| for ever ||| 0.00740741 0.0286209 8.48644e-07 2.16183e-06 2.718 ||| 0-0 ||| 135 1.17835e+06 +en ||| for everything ||| 0.00549451 0.0286209 8.48644e-07 1.06423e-06 2.718 ||| 0-0 ||| 182 1.17835e+06 +en ||| for examination ||| 0.0588235 0.0286209 8.48644e-07 1.57621e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| for examining ||| 0.00699301 0.0286209 8.48644e-07 7.82354e-08 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| for example , higher ||| 1 0.0286209 8.48644e-07 1.68149e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for example , in ||| 0.00529101 0.605812 3.39458e-06 1.23208e-07 2.718 ||| 0-3 ||| 756 1.17835e+06 +en ||| for example , the same fee is ||| 1 0.0286209 8.48644e-07 4.20513e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for example , the same fee ||| 1 0.0286209 8.48644e-07 1.34173e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for example , the same ||| 0.333333 0.0286209 8.48644e-07 1.97313e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for example , the ||| 0.000609385 0.0286209 8.48644e-07 2.45201e-08 2.718 ||| 0-0 ||| 1641 1.17835e+06 +en ||| for example , with horses , one ||| 1 0.0286209 8.48644e-07 2.79283e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for example , with horses , ||| 1 0.0286209 8.48644e-07 6.70065e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for example , with horses ||| 1 0.0286209 8.48644e-07 5.61877e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for example , with ||| 0.0124224 0.0286209 1.69729e-06 2.55399e-09 2.718 ||| 0-0 ||| 161 1.17835e+06 +en ||| for example , would ||| 0.0625 0.0286209 8.48644e-07 2.34398e-09 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| for example , ||| 0.000720617 0.0286209 8.48644e-06 3.99404e-07 2.718 ||| 0-0 ||| 13877 1.17835e+06 +en ||| for example in ||| 0.00487805 0.605812 2.54593e-06 1.03315e-06 2.718 ||| 0-2 ||| 615 1.17835e+06 +en ||| for example when ||| 0.0181818 0.142731 8.48644e-07 1.33194e-08 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| for example ||| 0.00102906 0.0286209 1.78215e-05 3.34916e-06 2.718 ||| 0-0 ||| 20407 1.17835e+06 +en ||| for expressing such an intention ||| 1 0.0286209 8.48644e-07 1.5721e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for expressing such an ||| 1 0.0286209 8.48644e-07 2.78248e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for expressing such ||| 1 0.0286209 8.48644e-07 6.26022e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for expressing ||| 0.02 0.0286209 8.48644e-07 3.02587e-07 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| for far ||| 0.0769231 0.0286209 8.48644e-07 7.8546e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| for fisheries ||| 0.00925926 0.0286209 8.48644e-07 3.02587e-07 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| for flexible legislation in ||| 1 0.605812 8.48644e-07 3.98991e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for foreign and defence policy on the ||| 1 0.22993 8.48644e-07 1.32942e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| for foreign and defence policy on ||| 1 0.22993 8.48644e-07 2.16547e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| for foreign investment in ||| 1 0.605812 8.48644e-07 2.37382e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for free ||| 0.00793651 0.0286209 8.48644e-07 1.34151e-06 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| for funding under ||| 0.111111 0.205566 8.48644e-07 2.31639e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| for further measures ||| 0.0454545 0.0286209 8.48644e-07 1.15046e-09 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| for further ||| 0.00276243 0.0286209 1.69729e-06 5.56046e-06 2.718 ||| 0-0 ||| 724 1.17835e+06 +en ||| for going down ||| 1 0.0234842 8.48644e-07 2.17108e-09 2.718 ||| 0-0 0-2 ||| 1 1.17835e+06 +en ||| for governments to ||| 0.0285714 0.0286209 8.48644e-07 3.49637e-08 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| for governments ||| 0.00769231 0.0286209 8.48644e-07 3.93478e-07 2.718 ||| 0-0 ||| 130 1.17835e+06 +en ||| for granted in today ||| 1 0.605812 8.48644e-07 1.29739e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| for granted in ||| 0.0769231 0.605812 8.48644e-07 2.87478e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| for granted ||| 0.00294985 0.0286209 8.48644e-07 9.31921e-07 2.718 ||| 0-0 ||| 339 1.17835e+06 +en ||| for greater investment in ||| 0.125 0.605812 8.48644e-07 1.14517e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| for guidance in ||| 1 0.605812 8.48644e-07 2.55536e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| for handling ||| 0.0138889 0.0286209 8.48644e-07 1.49568e-07 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| for having such a directive on ||| 1 0.22993 8.48644e-07 2.50127e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| for having supported the ||| 0.142857 0.0286209 8.48644e-07 1.40094e-11 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| for having supported ||| 0.047619 0.0286209 8.48644e-07 2.28197e-10 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| for having ||| 0.000748503 0.0286209 8.48644e-07 4.40534e-06 2.718 ||| 0-0 ||| 1336 1.17835e+06 +en ||| for help ||| 0.00847458 0.0286209 8.48644e-07 2.19404e-06 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| for her ||| 0.000988631 0.0286209 1.69729e-06 3.13056e-06 2.718 ||| 0-0 ||| 2023 1.17835e+06 +en ||| for high stakes in ||| 1 0.605812 8.48644e-07 2.11953e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for highly sensitive ||| 0.333333 0.0286209 8.48644e-07 1.35037e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for highly ||| 0.1 0.0286209 8.48644e-07 6.96065e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| for him in ||| 0.5 0.605812 8.48644e-07 1.13784e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| for him to ||| 0.0357143 0.0286209 1.69729e-06 3.27759e-07 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| for him ||| 0.00858369 0.0286209 1.69729e-06 3.68857e-06 2.718 ||| 0-0 ||| 233 1.17835e+06 +en ||| for his ||| 0.000218198 0.0286209 8.48644e-07 3.45731e-06 2.718 ||| 0-0 ||| 4583 1.17835e+06 +en ||| for human rights and ||| 0.00103413 0.0286209 8.48644e-07 3.55849e-12 2.718 ||| 0-0 ||| 967 1.17835e+06 +en ||| for human rights ||| 0.000764818 0.0286209 1.69729e-06 2.8409e-10 2.718 ||| 0-0 ||| 2615 1.17835e+06 +en ||| for human ||| 0.0206897 0.0286209 2.54593e-06 1.41974e-06 2.718 ||| 0-0 ||| 145 1.17835e+06 +en ||| for in a ||| 0.2 0.605812 8.48644e-07 0.000157317 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| for in relation to ||| 0.2 0.605812 8.48644e-07 7.67289e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| for in relation ||| 0.5 0.605812 8.48644e-07 8.63499e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| for in the directive ||| 0.142857 0.605812 8.48644e-07 2.43161e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| for in the ||| 0.0143885 0.605812 1.69729e-06 0.000217886 2.718 ||| 0-1 ||| 139 1.17835e+06 +en ||| for in ||| 0.436047 0.605812 0.000127297 0.00354911 2.718 ||| 0-1 ||| 344 1.17835e+06 +en ||| for increased ||| 0.00337838 0.0286209 8.48644e-07 5.71808e-07 2.718 ||| 0-0 ||| 296 1.17835e+06 +en ||| for information ||| 0.00328947 0.0286209 8.48644e-07 1.90411e-06 2.718 ||| 0-0 ||| 304 1.17835e+06 +en ||| for instance , to ||| 0.0192308 0.0286209 8.48644e-07 7.90027e-09 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| for instance , ||| 0.00216216 0.0286209 3.39458e-06 8.89088e-08 2.718 ||| 0-0 ||| 1850 1.17835e+06 +en ||| for instance Rwanda , and ||| 1 0.0286209 8.48644e-07 1.22503e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for instance Rwanda , ||| 1 0.0286209 8.48644e-07 9.77997e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for instance Rwanda ||| 1 0.0286209 8.48644e-07 8.20091e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for instance ||| 0.00239644 0.0286209 5.94051e-06 7.45537e-07 2.718 ||| 0-0 ||| 2921 1.17835e+06 +en ||| for international law ||| 0.0108696 0.0286209 8.48644e-07 1.56996e-10 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| for international ||| 0.0232558 0.0286209 8.48644e-07 8.90502e-07 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| for is ||| 0.0178571 0.0286209 8.48644e-07 0.000360586 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| for it at ||| 0.222222 0.321886 1.69729e-06 5.46733e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| for it from ||| 1 0.0308834 8.48644e-07 5.20067e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| for it in ||| 0.169231 0.605812 9.33509e-06 6.31146e-05 2.718 ||| 0-2 ||| 65 1.17835e+06 +en ||| for it is in ||| 0.0833333 0.605812 8.48644e-07 1.97808e-06 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| for it is something which is ||| 1 0.0286209 8.48644e-07 9.44916e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for it is something which ||| 1 0.0286209 8.48644e-07 3.01494e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for it is something ||| 1 0.0286209 8.48644e-07 3.54924e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for it is taking place ||| 0.5 0.0286209 8.48644e-07 4.10151e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for it is taking ||| 0.5 0.0286209 8.48644e-07 2.72526e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for it is ||| 0.00573066 0.0286209 1.69729e-06 6.41237e-06 2.718 ||| 0-0 ||| 349 1.17835e+06 +en ||| for it on ||| 0.111111 0.22993 8.48644e-07 1.13508e-05 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| for it ||| 0.00602894 0.0286209 1.27297e-05 0.000204599 2.718 ||| 0-0 ||| 2488 1.17835e+06 +en ||| for its comments ||| 0.25 0.0286209 8.48644e-07 8.19573e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| for its own sake ||| 0.0333333 0.0286209 8.48644e-07 2.78996e-12 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| for its own ||| 0.00552486 0.0286209 8.48644e-07 2.77884e-08 2.718 ||| 0-0 ||| 181 1.17835e+06 +en ||| for its ||| 0.00236718 0.0286209 7.6378e-06 1.63915e-05 2.718 ||| 0-0 ||| 3802 1.17835e+06 +en ||| for itself at ||| 1 0.175253 8.48644e-07 3.12359e-07 2.718 ||| 0-0 0-2 ||| 1 1.17835e+06 +en ||| for itself in ||| 0.176471 0.605812 2.54593e-06 2.40878e-06 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| for itself ||| 0.0121581 0.0286209 3.39458e-06 7.80858e-06 2.718 ||| 0-0 ||| 329 1.17835e+06 +en ||| for justice ||| 0.00757576 0.0286209 8.48644e-07 4.59057e-07 2.718 ||| 0-0 ||| 132 1.17835e+06 +en ||| for killings first in ||| 1 0.605812 8.48644e-07 3.43951e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for labels ||| 0.142857 0.0286209 8.48644e-07 6.67302e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| for light and small ||| 1 0.0286209 8.48644e-07 3.2085e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for light and ||| 0.2 0.0286209 8.48644e-07 2.50468e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| for light ||| 0.2 0.0286209 8.48644e-07 1.9996e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| for living ||| 0.0384615 0.0286209 8.48644e-07 9.64136e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| for long enough ||| 0.0555556 0.0286209 8.48644e-07 6.42993e-10 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| for long ||| 0.0113636 0.0286209 8.48644e-07 3.89221e-06 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| for management ||| 0.027027 0.0286209 8.48644e-07 5.05078e-07 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| for me , ||| 0.00364299 0.0286209 1.69729e-06 8.26111e-07 2.718 ||| 0-0 ||| 549 1.17835e+06 +en ||| for me in ||| 0.0666667 0.605812 8.48644e-07 2.13692e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| for me ||| 0.001997 0.0286209 3.39458e-06 6.92728e-06 2.718 ||| 0-0 ||| 2003 1.17835e+06 +en ||| for measures in ||| 0.0384615 0.605812 8.48644e-07 7.34311e-07 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| for media ||| 0.111111 0.0286209 8.48644e-07 3.3135e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| for men and women ||| 0.00408163 0.0286209 8.48644e-07 7.27626e-13 2.718 ||| 0-0 ||| 245 1.17835e+06 +en ||| for men and ||| 0.00384615 0.0286209 8.48644e-07 6.1248e-09 2.718 ||| 0-0 ||| 260 1.17835e+06 +en ||| for men ||| 0.0026455 0.0286209 8.48644e-07 4.88971e-07 2.718 ||| 0-0 ||| 378 1.17835e+06 +en ||| for monetary union ||| 0.0212766 0.0286209 8.48644e-07 3.81052e-12 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| for monetary ||| 0.25 0.0286209 8.48644e-07 1.65675e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| for money in ||| 0.5 0.605812 8.48644e-07 5.79925e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| for money ||| 0.00436681 0.0286209 8.48644e-07 1.87995e-06 2.718 ||| 0-0 ||| 229 1.17835e+06 +en ||| for more ||| 0.000785546 0.0286209 8.48644e-07 2.62744e-05 2.718 ||| 0-0 ||| 1273 1.17835e+06 +en ||| for moving in ||| 0.5 0.605812 8.48644e-07 2.10817e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| for my speech is ||| 1 0.0286209 8.48644e-07 1.04352e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for my speech ||| 0.125 0.0286209 8.48644e-07 3.32955e-10 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| for my ||| 0.000646412 0.0286209 8.48644e-07 7.39899e-06 2.718 ||| 0-0 ||| 1547 1.17835e+06 +en ||| for myself on ||| 0.25 0.22993 8.48644e-07 9.92533e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| for new jobs ||| 0.0333333 0.0286209 8.48644e-07 3.56211e-10 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| for new ||| 0.00151286 0.0286209 8.48644e-07 6.87666e-06 2.718 ||| 0-0 ||| 661 1.17835e+06 +en ||| for no other reason ||| 0.0526316 0.0286209 8.48644e-07 2.71372e-12 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| for no other ||| 0.0434783 0.0286209 8.48644e-07 1.1602e-08 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| for no ||| 0.00666667 0.0286209 8.48644e-07 8.95565e-06 2.718 ||| 0-0 ||| 150 1.17835e+06 +en ||| for now , ||| 0.0126582 0.0286209 8.48644e-07 2.82628e-06 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| for now ||| 0.00485437 0.0286209 8.48644e-07 2.36996e-05 2.718 ||| 0-0 ||| 206 1.17835e+06 +en ||| for of course ||| 0.2 0.0286209 8.48644e-07 7.89154e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| for of ||| 0.142857 0.0286209 8.48644e-07 0.000625469 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| for on ||| 0.210526 0.22993 3.39458e-06 0.000638285 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| for on-farm ||| 1 0.10181 8.48644e-07 5.5225e-08 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| for once ||| 0.00176991 0.0286209 8.48644e-07 4.70793e-06 2.718 ||| 0-0 ||| 565 1.17835e+06 +en ||| for one ||| 0.00269784 0.0286209 2.54593e-06 4.79537e-05 2.718 ||| 0-0 ||| 1112 1.17835e+06 +en ||| for operations so ||| 1 0.0286209 8.48644e-07 6.58056e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for operations ||| 0.0294118 0.0286209 8.48644e-07 2.89931e-07 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| for or envisaged in ||| 1 0.605812 8.48644e-07 5.84309e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for other issues we ||| 0.5 0.0286209 8.48644e-07 4.25553e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for other issues ||| 0.125 0.0286209 8.48644e-07 3.7486e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| for other ||| 0.00187266 0.0286209 1.69729e-06 1.4905e-05 2.718 ||| 0-0 ||| 1068 1.17835e+06 +en ||| for our lives in ||| 1 0.605812 8.48644e-07 2.52126e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for our part , ||| 0.00383142 0.0286209 8.48644e-07 2.25636e-09 2.718 ||| 0-0 ||| 261 1.17835e+06 +en ||| for our part ||| 0.0031348 0.0286209 8.48644e-07 1.89205e-08 2.718 ||| 0-0 ||| 319 1.17835e+06 +en ||| for our ||| 0.000212224 0.0286209 8.48644e-07 1.58703e-05 2.718 ||| 0-0 ||| 4712 1.17835e+06 +en ||| for ourselves in ||| 0.2 0.605812 1.69729e-06 1.12897e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| for ourselves ||| 0.00392157 0.0286209 8.48644e-07 3.6598e-06 2.718 ||| 0-0 ||| 255 1.17835e+06 +en ||| for outcome ||| 0.125 0.0286209 8.48644e-07 5.87916e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| for over ||| 0.00152439 0.157937 8.48644e-07 3.07981e-05 2.718 ||| 0-1 ||| 656 1.17835e+06 +en ||| for paragraph , ||| 1 0.0286209 8.48644e-07 2.16784e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for paragraph ||| 0.03125 0.0286209 8.48644e-07 1.81782e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| for particular ||| 0.025 0.0286209 8.48644e-07 7.0803e-06 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| for people when considered ||| 1 0.0286209 8.48644e-07 5.44717e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for people when ||| 0.333333 0.0286209 8.48644e-07 5.06243e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for people ||| 0.00141343 0.0286209 1.69729e-06 1.01269e-05 2.718 ||| 0-0 ||| 1415 1.17835e+06 +en ||| for polemics by ||| 0.5 0.0468744 8.48644e-07 2.61532e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| for political or economic reasons ||| 1 0.0286209 8.48644e-07 2.87942e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for political or economic ||| 1 0.0286209 8.48644e-07 2.84809e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for political or ||| 1 0.0286209 8.48644e-07 2.34797e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for political ||| 0.0196078 0.0286209 8.48644e-07 2.05368e-06 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| for primary ||| 0.25 0.0286209 8.48644e-07 1.65675e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| for processes of ||| 0.333333 0.0286209 8.48644e-07 1.01326e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for processes ||| 0.166667 0.0286209 8.48644e-07 1.86384e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| for producing consultation documents ||| 1 0.0286209 8.48644e-07 1.43748e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for producing consultation ||| 1 0.0286209 8.48644e-07 5.70428e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for producing ||| 0.00492611 0.0286209 8.48644e-07 3.85424e-07 2.718 ||| 0-0 ||| 203 1.17835e+06 +en ||| for productive investment , and that ||| 1 0.0286209 8.48644e-07 3.82477e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for productive investment , and ||| 1 0.0286209 8.48644e-07 2.27373e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for productive investment , ||| 0.5 0.0286209 8.48644e-07 1.81522e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for productive investment ||| 0.166667 0.0286209 8.48644e-07 1.52214e-12 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| for productive ||| 1 0.0286209 8.48644e-07 6.21281e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for profit ||| 0.00862069 0.0286209 8.48644e-07 1.49568e-07 2.718 ||| 0-0 ||| 116 1.17835e+06 +en ||| for public procurement . ||| 0.0714286 0.0286209 8.48644e-07 2.81582e-14 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| for public procurement ||| 0.0277778 0.0286209 8.48644e-07 9.2962e-12 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| for public transport ||| 0.0588235 0.0286209 8.48644e-07 1.91316e-10 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| for public ||| 0.0229885 0.0286209 1.69729e-06 1.85924e-06 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| for putting ||| 0.00649351 0.0286209 8.48644e-07 1.28743e-06 2.718 ||| 0-0 ||| 154 1.17835e+06 +en ||| for quite some time in ||| 1 0.605812 8.48644e-07 2.47592e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| for quite ||| 0.0227273 0.0286209 8.48644e-07 4.48818e-06 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| for reasons of ||| 0.00193798 0.0286209 8.48644e-07 6.32349e-08 2.718 ||| 0-0 ||| 516 1.17835e+06 +en ||| for reasons ||| 0.00113122 0.0286209 8.48644e-07 1.16318e-06 2.718 ||| 0-0 ||| 884 1.17835e+06 +en ||| for remote ||| 1 0.0286209 8.48644e-07 7.47838e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for respecting ||| 0.0384615 0.0286209 8.48644e-07 1.08149e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| for road ||| 0.0434783 0.0286209 8.48644e-07 1.02626e-06 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| for rung , and ||| 1 0.0286209 8.48644e-07 1.89048e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for rung , ||| 1 0.0286209 8.48644e-07 1.50925e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for rung ||| 1 0.0286209 8.48644e-07 1.26557e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for saying ||| 0.011236 0.0286209 8.48644e-07 2.04102e-06 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| for senior citizens were to ||| 1 0.0286209 8.48644e-07 2.4354e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for senior citizens were ||| 1 0.0286209 8.48644e-07 2.74077e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for senior citizens ||| 0.0769231 0.0286209 8.48644e-07 1.52996e-11 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| for senior ||| 0.0833333 0.0286209 8.48644e-07 1.40363e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| for six months ||| 0.0105263 0.0286209 8.48644e-07 8.02131e-12 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| for six ||| 0.00510204 0.0286209 8.48644e-07 1.9904e-07 2.718 ||| 0-0 ||| 196 1.17835e+06 +en ||| for small and ||| 0.0014771 0.0286209 8.48644e-07 1.84609e-08 2.718 ||| 0-0 ||| 677 1.17835e+06 +en ||| for small ||| 0.00114416 0.0286209 8.48644e-07 1.47382e-06 2.718 ||| 0-0 ||| 874 1.17835e+06 +en ||| for some ||| 0.00149254 0.0286209 2.54593e-06 1.25326e-05 2.718 ||| 0-0 ||| 2010 1.17835e+06 +en ||| for someone to ||| 0.04 0.0286209 8.48644e-07 5.59215e-08 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| for someone ||| 0.0222222 0.0286209 1.69729e-06 6.29334e-07 2.718 ||| 0-0 ||| 90 1.17835e+06 +en ||| for something ||| 0.00617284 0.0286209 8.48644e-07 6.36813e-06 2.718 ||| 0-0 ||| 162 1.17835e+06 +en ||| for stimulating ||| 0.0277778 0.0286209 8.48644e-07 2.8763e-08 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| for such a solution would still ||| 1 0.0286209 8.48644e-07 3.1714e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for such a solution would ||| 1 0.0286209 8.48644e-07 4.21057e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for such a solution ||| 0.166667 0.0286209 8.48644e-07 7.17462e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| for such a ||| 0.00355872 0.0286209 8.48644e-07 1.05509e-06 2.718 ||| 0-0 ||| 281 1.17835e+06 +en ||| for such occasions ||| 1 0.0286209 8.48644e-07 6.33163e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for such ||| 0.00627803 0.0286209 5.94051e-06 2.38031e-05 2.718 ||| 0-0 ||| 1115 1.17835e+06 +en ||| for sure ||| 0.015873 0.0286209 8.48644e-07 2.00421e-06 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| for sustainable agriculture in ||| 1 0.605812 8.48644e-07 7.15501e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for taking ||| 0.00210526 0.0286209 8.48644e-07 4.88971e-06 2.718 ||| 0-0 ||| 475 1.17835e+06 +en ||| for that . now , in ||| 1 0.605812 8.48644e-07 4.4423e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| for that is ||| 0.00529101 0.0286209 8.48644e-07 6.06563e-06 2.718 ||| 0-0 ||| 189 1.17835e+06 +en ||| for that matter , in ||| 0.2 0.605812 8.48644e-07 7.3867e-09 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| for that reason we must try to ||| 0.5 0.0247351 8.48644e-07 2.29677e-18 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| for that ||| 0.00344456 0.0286209 1.35783e-05 0.000193536 2.718 ||| 0-0 ||| 4645 1.17835e+06 +en ||| for the Community on ||| 1 0.22993 8.48644e-07 6.34413e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for the Convention ||| 0.0175439 0.0286209 8.48644e-07 2.28849e-08 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| for the EIB in ||| 1 0.605812 8.48644e-07 1.02407e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for the better from ||| 1 0.0308834 8.48644e-07 3.05038e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for the better in ||| 0.0769231 0.605812 8.48644e-07 3.70189e-08 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| for the country 's ||| 0.2 0.0286209 8.48644e-07 4.84111e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| for the country ||| 0.00680272 0.0286209 8.48644e-07 2.54206e-07 2.718 ||| 0-0 ||| 147 1.17835e+06 +en ||| for the development ||| 0.00106724 0.0286209 8.48644e-07 1.1619e-07 2.718 ||| 0-0 ||| 937 1.17835e+06 +en ||| for the fact ||| 0.0018018 0.0286209 8.48644e-07 2.06904e-06 2.718 ||| 0-0 ||| 555 1.17835e+06 +en ||| for the first time in ||| 0.00278552 0.605812 8.48644e-07 1.92588e-10 2.718 ||| 0-4 ||| 359 1.17835e+06 +en ||| for the future concerning ||| 1 0.0888235 8.48644e-07 1.51876e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for the last ||| 0.0026178 0.0286209 8.48644e-07 1.54261e-07 2.718 ||| 0-0 ||| 382 1.17835e+06 +en ||| for the local hunters ||| 1 0.0286209 8.48644e-07 1.44373e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for the local ||| 0.166667 0.0286209 8.48644e-07 3.60932e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| for the long-term ||| 0.2 0.0286209 8.48644e-07 1.80819e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| for the meat in ||| 1 0.605812 8.48644e-07 3.92195e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for the most part , in ||| 0.25 0.605812 8.48644e-07 1.33887e-11 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| for the most part on ||| 0.25 0.22993 8.48644e-07 2.01911e-11 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| for the number of ||| 0.0294118 0.0286209 8.48644e-07 1.89997e-08 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| for the number ||| 0.0277778 0.0286209 8.48644e-07 3.4949e-07 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| for the post ||| 0.0294118 0.0286209 8.48644e-07 1.7305e-08 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| for the preliminaries in January and February ||| 1 0.605812 8.48644e-07 4.6768e-23 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for the preliminaries in January and ||| 1 0.605812 8.48644e-07 1.29911e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for the preliminaries in January ||| 1 0.605812 8.48644e-07 1.03714e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for the preliminaries in ||| 1 0.605812 8.48644e-07 1.5252e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for the present , ||| 0.05 0.0286209 8.48644e-07 3.08291e-08 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| for the present ||| 0.0166667 0.0286209 1.69729e-06 2.58515e-07 2.718 ||| 0-0 ||| 120 1.17835e+06 +en ||| for the production of gas , ||| 1 0.0286209 8.48644e-07 5.35311e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for the production of gas ||| 1 0.0286209 8.48644e-07 4.4888e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for the production of ||| 0.00621118 0.0286209 8.48644e-07 3.20629e-09 2.718 ||| 0-0 ||| 161 1.17835e+06 +en ||| for the production ||| 0.00462963 0.0286209 8.48644e-07 5.89781e-08 2.718 ||| 0-0 ||| 216 1.17835e+06 +en ||| for the protection of ||| 0.00180832 0.0116562 8.48644e-07 6.53098e-10 2.718 ||| 0-3 ||| 553 1.17835e+06 +en ||| for the purpose ||| 0.0018797 0.0286209 8.48644e-07 1.27068e-07 2.718 ||| 0-0 ||| 532 1.17835e+06 +en ||| for the sake of it ||| 0.0416667 0.0286209 8.48644e-07 6.85582e-11 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| for the sake of ||| 0.000884956 0.0286209 8.48644e-07 3.85522e-09 2.718 ||| 0-0 ||| 1130 1.17835e+06 +en ||| for the sake ||| 0.000901713 0.0286209 8.48644e-07 7.0915e-08 2.718 ||| 0-0 ||| 1109 1.17835e+06 +en ||| for the same ||| 0.00222222 0.0286209 8.48644e-07 5.6838e-07 2.718 ||| 0-0 ||| 450 1.17835e+06 +en ||| for the specific ||| 0.125 0.0286209 8.48644e-07 1.06726e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| for the time being , ||| 0.00364964 0.0286209 8.48644e-07 3.9353e-10 2.718 ||| 0-0 ||| 274 1.17835e+06 +en ||| for the time being ||| 0.00176991 0.0286209 8.48644e-07 3.29991e-09 2.718 ||| 0-0 ||| 565 1.17835e+06 +en ||| for the time ||| 0.00746269 0.0286209 1.69729e-06 1.15957e-06 2.718 ||| 0-0 ||| 268 1.17835e+06 +en ||| for the treatment ||| 0.0121951 0.0286209 8.48644e-07 4.27327e-08 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| for the ultimate ||| 0.2 0.0286209 8.48644e-07 7.62831e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| for the very ||| 0.00714286 0.0286209 8.48644e-07 2.45766e-06 2.718 ||| 0-0 ||| 140 1.17835e+06 +en ||| for the vote in ||| 0.0588235 0.605812 8.48644e-07 3.42735e-08 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| for the way in ||| 0.00549451 0.605812 8.48644e-07 4.69676e-07 2.718 ||| 0-3 ||| 182 1.17835e+06 +en ||| for the whole of ||| 0.00289017 0.0116562 8.48644e-07 3.63998e-09 2.718 ||| 0-3 ||| 346 1.17835e+06 +en ||| for the ||| 0.00559534 0.0286209 0.000533797 0.000706325 2.718 ||| 0-0 ||| 112415 1.17835e+06 +en ||| for their pensions ||| 0.142857 0.0286209 8.48644e-07 6.66784e-11 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| for their ||| 0.00172549 0.0286209 9.33509e-06 1.33357e-05 2.718 ||| 0-0 ||| 6375 1.17835e+06 +en ||| for them , ||| 0.00357143 0.0286209 8.48644e-07 3.68038e-06 2.718 ||| 0-0 ||| 280 1.17835e+06 +en ||| for them at ||| 0.142857 0.175253 8.48644e-07 1.23452e-06 2.718 ||| 0-0 0-2 ||| 7 1.17835e+06 +en ||| for them for ||| 0.333333 0.0286209 8.48644e-07 2.37193e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| for them in ||| 0.138889 0.605812 4.24322e-06 9.52014e-06 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| for them to live in ||| 0.333333 0.605812 8.48644e-07 8.5271e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| for them to make ||| 0.111111 0.0286209 8.48644e-07 4.76557e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| for them to ||| 0.00627615 0.0286209 2.54593e-06 2.7423e-06 2.718 ||| 0-0 ||| 478 1.17835e+06 +en ||| for them ||| 0.00586643 0.0286209 1.10324e-05 3.08615e-05 2.718 ||| 0-0 ||| 2216 1.17835e+06 +en ||| for themselves . ||| 0.00549451 0.0286209 8.48644e-07 1.49747e-08 2.718 ||| 0-0 ||| 182 1.17835e+06 +en ||| for themselves in an ||| 1 0.605812 8.48644e-07 6.7784e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| for themselves in the ||| 0.166667 0.605812 8.48644e-07 9.36257e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| for themselves in ||| 0.391304 0.605812 7.6378e-06 1.52505e-06 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| for themselves on ||| 0.0769231 0.22993 8.48644e-07 2.74271e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| for themselves ||| 0.00145773 0.0286209 8.48644e-07 4.94378e-06 2.718 ||| 0-0 ||| 686 1.17835e+06 +en ||| for there to be ||| 0.004 0.0286209 8.48644e-07 5.67927e-08 2.718 ||| 0-0 ||| 250 1.17835e+06 +en ||| for there to ||| 0.0178571 0.0286209 1.69729e-06 3.13375e-06 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| for there ||| 0.00921659 0.0286209 1.69729e-06 3.52669e-05 2.718 ||| 0-0 ||| 217 1.17835e+06 +en ||| for these refugees in ||| 1 0.605812 8.48644e-07 4.12248e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| for this - though not the only ||| 1 0.0286209 8.48644e-07 1.62443e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for this - though not the ||| 1 0.0286209 8.48644e-07 1.45938e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for this - though not ||| 1 0.0286209 8.48644e-07 2.37715e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for this - though ||| 1 0.0286209 8.48644e-07 6.96275e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for this - ||| 0.0322581 0.0286209 8.48644e-07 2.80417e-07 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| for this as ||| 0.030303 0.0286209 8.48644e-07 7.58592e-07 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| for this at ||| 0.125 0.321886 1.69729e-06 1.98651e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| for this category ||| 0.0666667 0.0286209 8.48644e-07 1.25634e-09 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| for this country ||| 0.016129 0.0286209 8.48644e-07 2.67549e-08 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| for this in ||| 0.0540541 0.605812 3.39458e-06 2.29322e-05 2.718 ||| 0-2 ||| 74 1.17835e+06 +en ||| for this reason it is my earnest ||| 1 0.0286209 8.48644e-07 1.80739e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for this reason it is my ||| 1 0.0286209 8.48644e-07 6.23238e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for this reason it is ||| 0.0119048 0.0286209 8.48644e-07 9.69115e-12 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| for this reason it ||| 0.0149254 0.0286209 8.48644e-07 3.09215e-10 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| for this reason ||| 0.000274574 0.0286209 8.48644e-07 1.73881e-08 2.718 ||| 0-0 ||| 3642 1.17835e+06 +en ||| for this target population that ||| 0.5 0.0286209 8.48644e-07 2.90707e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for this target population ||| 0.5 0.0286209 8.48644e-07 1.72817e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for this target ||| 0.25 0.0286209 8.48644e-07 2.81004e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| for this ||| 0.000794718 0.0286209 1.10324e-05 7.43397e-05 2.718 ||| 0-0 ||| 16358 1.17835e+06 +en ||| for those of ||| 0.00862069 0.0286209 8.48644e-07 4.52902e-07 2.718 ||| 0-0 ||| 116 1.17835e+06 +en ||| for those ||| 0.000334336 0.0286209 8.48644e-07 8.33092e-06 2.718 ||| 0-0 ||| 2991 1.17835e+06 +en ||| for to a ||| 1 0.0286209 8.48644e-07 4.53157e-05 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for to ||| 0.0512821 0.0286209 1.69729e-06 0.00102233 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| for together under ||| 1 0.117093 8.48644e-07 3.90734e-08 2.718 ||| 0-0 0-2 ||| 1 1.17835e+06 +en ||| for together ||| 0.5 0.0286209 8.48644e-07 6.91002e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for traffic to ||| 1 0.0286209 8.48644e-07 2.90342e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for traffic ||| 0.0588235 0.0286209 8.48644e-07 3.26748e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| for two reasons ||| 0.00353357 0.0286209 8.48644e-07 2.74975e-10 2.718 ||| 0-0 ||| 283 1.17835e+06 +en ||| for two ||| 0.00225734 0.0286209 1.69729e-06 2.71983e-06 2.718 ||| 0-0 ||| 886 1.17835e+06 +en ||| for types of work ||| 1 0.0286209 8.48644e-07 1.8252e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for types of ||| 0.5 0.0286209 8.48644e-07 2.88341e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for types ||| 0.5 0.0286209 8.48644e-07 5.3039e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for under ||| 0.26087 0.205566 5.09187e-06 4.34596e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| for updating and ||| 0.333333 0.0286209 8.48644e-07 2.59403e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| for updating ||| 0.0526316 0.0286209 8.48644e-07 2.07094e-08 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| for us all in ||| 0.166667 0.605812 8.48644e-07 4.83373e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| for us all to ||| 0.027027 0.0247351 8.48644e-07 2.94226e-09 2.718 ||| 0-3 ||| 37 1.17835e+06 +en ||| for us and ||| 0.00833333 0.0286209 8.48644e-07 4.15362e-07 2.718 ||| 0-0 ||| 120 1.17835e+06 +en ||| for us at ||| 0.0588235 0.0286209 8.48644e-07 1.38855e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| for us in ||| 0.0744186 0.605812 1.35783e-05 1.02292e-05 2.718 ||| 0-2 ||| 215 1.17835e+06 +en ||| for us on ||| 0.125 0.22993 8.48644e-07 1.83967e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| for us to address the issue of ||| 0.5 0.0116562 8.48644e-07 9.51568e-17 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| for us to ||| 0.00529101 0.0286209 5.94051e-06 2.94656e-06 2.718 ||| 0-0 ||| 1323 1.17835e+06 +en ||| for us when ||| 0.2 0.0286209 8.48644e-07 1.65768e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| for us ||| 0.00629825 0.0286209 2.6308e-05 3.31603e-05 2.718 ||| 0-0 ||| 4922 1.17835e+06 +en ||| for use in ||| 0.0108696 0.605812 8.48644e-07 1.72558e-06 2.718 ||| 0-2 ||| 92 1.17835e+06 +en ||| for use ||| 0.003861 0.0286209 8.48644e-07 5.59383e-06 2.718 ||| 0-0 ||| 259 1.17835e+06 +en ||| for vessels ||| 0.0144928 0.0286209 8.48644e-07 1.65675e-07 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| for was to ||| 0.5 0.0286209 8.48644e-07 3.20296e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for was ||| 0.111111 0.0286209 8.48644e-07 3.60458e-05 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| for we ||| 0.00383142 0.0286209 8.48644e-07 0.00013061 2.718 ||| 0-0 ||| 261 1.17835e+06 +en ||| for what he has said ||| 0.1 0.0286209 8.48644e-07 2.98265e-14 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| for what he has ||| 0.05 0.0286209 8.48644e-07 7.25177e-11 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| for what he ||| 0.0294118 0.0286209 8.48644e-07 1.40879e-08 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| for what in ||| 0.166667 0.605812 8.48644e-07 4.97976e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| for what it ||| 0.0212766 0.0286209 8.48644e-07 2.87073e-07 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| for what ||| 0.00243309 0.0286209 2.54593e-06 1.61429e-05 2.718 ||| 0-0 ||| 1233 1.17835e+06 +en ||| for when I meet her in ||| 1 0.605812 8.48644e-07 4.1524e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| for when ||| 0.0123457 0.142731 8.48644e-07 4.57553e-05 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| for which the ||| 0.0058651 0.0286209 1.69729e-06 5.99995e-06 2.718 ||| 0-0 ||| 341 1.17835e+06 +en ||| for which there is ||| 0.015625 0.0286209 8.48644e-07 9.38911e-09 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| for which there ||| 0.0212766 0.0286209 8.48644e-07 2.99578e-07 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| for which ||| 0.00336907 0.0286209 9.33509e-06 9.77321e-05 2.718 ||| 0-0 ||| 3265 1.17835e+06 +en ||| for while ||| 0.1 0.0286209 8.48644e-07 2.14457e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| for why you ||| 1 0.0286209 8.48644e-07 9.1567e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for why ||| 0.0263158 0.0286209 8.48644e-07 2.83603e-06 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| for within ||| 1 0.369196 2.54593e-06 8.52091e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| for women ||| 0.000743494 0.0286209 8.48644e-07 1.36682e-06 2.718 ||| 0-0 ||| 1345 1.17835e+06 +en ||| for women ’ ||| 0.5 0.0286209 8.48644e-07 2.38113e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for word in ||| 0.25 0.605812 8.48644e-07 3.61299e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| for words , ||| 0.333333 0.0286209 1.69729e-06 3.10083e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| for words ||| 0.0571429 0.0286209 1.69729e-06 2.60018e-06 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| for work ||| 0.00404858 0.0286209 8.48644e-07 7.28279e-06 2.718 ||| 0-0 ||| 247 1.17835e+06 +en ||| for workers ||| 0.00326264 0.0286209 1.69729e-06 7.82354e-07 2.718 ||| 0-0 ||| 613 1.17835e+06 +en ||| for year ||| 0.166667 0.0286209 1.69729e-06 2.8694e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| for years in ||| 0.0232558 0.605812 8.48644e-07 6.04059e-07 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| for years to come ||| 0.025 0.0286209 8.48644e-07 1.47779e-10 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| for years to ||| 0.0192308 0.0286209 8.48644e-07 1.74001e-07 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| for years ||| 0.00206044 0.0286209 2.54593e-06 1.95819e-06 2.718 ||| 0-0 ||| 1456 1.17835e+06 +en ||| for you to stay and ||| 1 0.0286209 8.48644e-07 1.17421e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for you to stay ||| 0.5 0.0286209 8.48644e-07 9.37428e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| for you to ||| 0.00689655 0.0286209 8.48644e-07 3.3008e-06 2.718 ||| 0-0 ||| 145 1.17835e+06 +en ||| for you ||| 0.00782269 0.0286209 5.09187e-06 3.71468e-05 2.718 ||| 0-0 ||| 767 1.17835e+06 +en ||| for young unemployed ||| 0.25 0.0286209 8.48644e-07 3.15139e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| for young ||| 0.0238095 0.0286209 1.69729e-06 7.32881e-07 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| for your supplementary question ||| 0.25 0.0286209 8.48644e-07 2.19215e-14 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| for your supplementary ||| 1 0.0286209 8.48644e-07 2.64976e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| for your ||| 0.000318979 0.0286209 8.48644e-07 2.94418e-06 2.718 ||| 0-0 ||| 3135 1.17835e+06 +en ||| for yourself ||| 0.030303 0.0286209 8.48644e-07 5.17734e-07 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| for ||| 0.0224369 0.0286209 0.0103653 0.0115052 2.718 ||| 0-0 ||| 544372 1.17835e+06 +en ||| force , into ||| 1 0.525896 8.48644e-07 4.49324e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| force - in ||| 1 0.605812 8.48644e-07 2.96469e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| force along ||| 0.5 0.155535 8.48644e-07 1.35394e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| force at ||| 0.0169492 0.321886 8.48644e-07 6.80834e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| force for ||| 0.00483092 0.0286209 8.48644e-07 1.95819e-06 2.718 ||| 0-1 ||| 207 1.17835e+06 +en ||| force immediately in ||| 1 0.605812 8.48644e-07 3.11237e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| force in ||| 0.0282258 0.605812 1.1881e-05 7.85951e-05 2.718 ||| 0-1 ||| 496 1.17835e+06 +en ||| force on ||| 0.0056338 0.22993 1.69729e-06 1.41348e-05 2.718 ||| 0-1 ||| 355 1.17835e+06 +en ||| force when ||| 0.0416667 0.142731 8.48644e-07 1.01325e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| force with regard to ||| 0.333333 0.0247351 8.48644e-07 2.08298e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| forced into ||| 0.00719424 0.525896 8.48644e-07 1.56068e-06 2.718 ||| 0-1 ||| 139 1.17835e+06 +en ||| forced on people ||| 0.2 0.22993 8.48644e-07 5.15349e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| forced on ||| 0.025 0.22993 8.48644e-07 5.85491e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| forced to endure at ||| 1 0.321886 8.48644e-07 1.45344e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| forced to flee , either inside their ||| 1 0.188717 8.48644e-07 5.16049e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| forced to flee , either inside ||| 1 0.188717 8.48644e-07 4.45215e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| forced to ||| 0.0015528 0.0247351 1.69729e-06 1.98164e-06 2.718 ||| 0-1 ||| 1288 1.17835e+06 +en ||| forced upon ||| 0.0217391 0.114601 8.48644e-07 6.2315e-08 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| forcefully by ||| 0.2 0.0468744 8.48644e-07 4.59383e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| forcefully in ||| 0.0714286 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| forces as being ||| 1 0.066968 8.48644e-07 2.70795e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| forces as ||| 0.166667 0.066968 8.48644e-07 9.5156e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| forces at work in ||| 0.333333 0.605812 8.48644e-07 6.475e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| forces from ||| 0.037037 0.0308834 8.48644e-07 2.0129e-07 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| forces in ||| 0.0394737 0.605812 5.09187e-06 2.44282e-05 2.718 ||| 0-1 ||| 152 1.17835e+06 +en ||| forces more resolutely in ||| 1 0.605812 8.48644e-07 1.78518e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| forces within ||| 0.0833333 0.369196 8.48644e-07 5.86486e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| fore in ||| 0.037037 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| forefront in ||| 0.0192308 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| foreign and defence policy on the one ||| 1 0.22993 8.48644e-07 7.20953e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| foreign and defence policy on the ||| 1 0.22993 8.48644e-07 1.72973e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| foreign and defence policy on ||| 1 0.22993 8.48644e-07 2.81753e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| foreign investment in ||| 0.037037 0.605812 8.48644e-07 3.08862e-10 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| foreign policy must also be open . ||| 1 0.0008071 8.48644e-07 1.46798e-22 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| foreign policy must also be open ||| 1 0.0008071 8.48644e-07 4.84641e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| foreign policy must also be ||| 1 0.0008071 8.48644e-07 3.00646e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| foreign policy must also ||| 1 0.0008071 8.48644e-07 1.65893e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| foreign policy must ||| 0.111111 0.0008071 8.48644e-07 3.28591e-12 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| foreign policy ||| 0.000201654 0.0008071 8.48644e-07 2.12598e-09 2.718 ||| 0-0 ||| 4959 1.17835e+06 +en ||| foreign ||| 0.000333037 0.0008071 2.54593e-06 5.4e-06 2.718 ||| 0-0 ||| 9008 1.17835e+06 +en ||| foreigners in ||| 0.05 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| foremost . to ||| 1 0.0247351 8.48644e-07 3.31195e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| foremost at ||| 0.111111 0.321886 8.48644e-07 1.55608e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| foremost on ||| 0.027027 0.22993 8.48644e-07 3.23058e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| foremost take on ||| 0.5 0.22993 8.48644e-07 5.20124e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| foremost to ||| 0.0196078 0.0247351 8.48644e-07 1.09341e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| foreseen in ||| 0.00763359 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| forest fires in ||| 0.0121951 0.605812 8.48644e-07 2.92954e-11 2.718 ||| 0-2 ||| 82 1.17835e+06 +en ||| forever a thing ||| 1 0.0015231 8.48644e-07 1.9544e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| forever a ||| 0.5 0.0015231 8.48644e-07 5.356e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| forged in ||| 0.0833333 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| forget about ||| 0.00671141 0.0401564 8.48644e-07 5.35961e-08 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| forgiven for ||| 0.04 0.0286209 8.48644e-07 2.53114e-08 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| forgotten - in ||| 0.5 0.605812 8.48644e-07 1.01029e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| form a ||| 0.00204918 0.0015231 8.48644e-07 3.75085e-07 2.718 ||| 0-1 ||| 488 1.17835e+06 +en ||| form at ||| 0.166667 0.321886 8.48644e-07 1.82089e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| form by ||| 0.142857 0.0468744 8.48644e-07 3.87243e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| form in ||| 0.0648148 0.605812 5.94051e-06 0.000210203 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| form of inequality ||| 0.5 0.0116562 8.48644e-07 1.36566e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| form of legislation in ||| 1 0.605812 8.48644e-07 9.17625e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| form of trade with a ||| 1 0.0535436 8.48644e-07 1.1139e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| form of trade with ||| 1 0.0535436 8.48644e-07 2.51298e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| form of ||| 0.00441599 0.0116562 1.69729e-05 6.20756e-06 2.718 ||| 0-1 ||| 4529 1.17835e+06 +en ||| form or another in ||| 1 0.605812 8.48644e-07 5.79423e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| form over ||| 0.25 0.157937 8.48644e-07 1.82408e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| form part of ||| 0.0184758 0.0116562 6.78915e-06 7.40066e-09 2.718 ||| 0-2 ||| 433 1.17835e+06 +en ||| form part ||| 0.00183824 0.0009084 8.48644e-07 9.60472e-09 2.718 ||| 0-1 ||| 544 1.17835e+06 +en ||| form that is disguised to a ||| 1 0.0247351 8.48644e-07 3.28903e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| form that is disguised to ||| 1 0.0247351 8.48644e-07 7.42012e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| form the ||| 0.00179533 0.0011669 8.48644e-07 1.30401e-06 2.718 ||| 0-1 ||| 557 1.17835e+06 +en ||| form to ||| 0.0465116 0.0247351 1.69729e-06 1.27949e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| form ||| 0.00041365 0.0005197 3.39458e-06 4.1e-06 2.718 ||| 0-0 ||| 9670 1.17835e+06 +en ||| formal recommendation to ||| 1 0.0247351 8.48644e-07 7.36297e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| formally announced by ||| 1 0.0468744 8.48644e-07 1.35127e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| formally entitled & ||| 0.333333 0.0223684 8.48644e-07 4.31102e-15 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| format of ||| 0.0294118 0.0116562 8.48644e-07 5.86391e-08 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| formation in ||| 0.333333 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| formed , as ||| 0.333333 0.066968 8.48644e-07 4.16157e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| formed naturally , e.g. in the ||| 0.5 0.605812 8.48644e-07 1.204e-17 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| formed naturally , e.g. in ||| 0.5 0.605812 8.48644e-07 1.96117e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| former , in ||| 0.5 0.605812 8.48644e-07 2.49465e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| formerly indulge in ||| 0.125 0.605812 8.48644e-07 2.26088e-11 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| forming in ||| 0.2 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| forming part of ||| 0.0615385 0.0116562 3.39458e-06 1.46322e-10 2.718 ||| 0-2 ||| 65 1.17835e+06 +en ||| forming part ||| 0.0151515 0.0288462 8.48644e-07 1.45448e-08 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| forming ||| 0.016632 0.0288462 6.78915e-06 1.22e-05 2.718 ||| 0-0 ||| 481 1.17835e+06 +en ||| forms in which ||| 0.25 0.605812 8.48644e-07 3.499e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| forms in ||| 0.125 0.605812 1.69729e-06 4.11909e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| forms of ||| 0.000365631 0.0116562 8.48644e-07 1.21642e-06 2.718 ||| 0-1 ||| 2735 1.17835e+06 +en ||| forms on ||| 0.25 0.22993 8.48644e-07 7.40792e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| forms part of ||| 0.0026455 0.0116562 8.48644e-07 1.45022e-09 2.718 ||| 0-2 ||| 378 1.17835e+06 +en ||| formulate them in ||| 0.2 0.605812 8.48644e-07 6.19341e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| formulated at ||| 0.0769231 0.321886 8.48644e-07 3.88019e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| formulated for ||| 0.111111 0.0286209 8.48644e-07 1.116e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| formulated in ||| 0.00840336 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| formulated on the ||| 0.333333 0.22993 8.48644e-07 4.94554e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| formulated on ||| 0.111111 0.22993 8.48644e-07 8.05569e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| formulated within ||| 0.5 0.369196 8.48644e-07 1.07541e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| forth about compliance with ||| 0.333333 0.0535436 8.48644e-07 7.66087e-15 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| forth between various ||| 1 0.0021519 8.48644e-07 1.84062e-14 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| forth in ||| 0.416667 0.605812 4.24322e-06 9.32798e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| forthcoming at some point ||| 1 0.321886 8.48644e-07 1.68866e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| forthcoming at some ||| 1 0.321886 8.48644e-07 1.93034e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| forthcoming at ||| 0.5 0.321886 8.48644e-07 1.77209e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| forthcoming free trade agreement with South Korea ||| 1 0.0535436 8.48644e-07 1.27376e-28 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| forthcoming free trade agreement with South ||| 1 0.0535436 8.48644e-07 2.08813e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| forthcoming free trade agreement with ||| 1 0.0535436 8.48644e-07 9.66726e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| forthcoming in ||| 0.0625 0.605812 8.48644e-07 2.04569e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| forthcoming proposals on ||| 0.125 0.22993 8.48644e-07 3.57603e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| fortunately , trust ||| 1 0.192848 8.48644e-07 3.59418e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| forum ||| 0.000681663 0.0014164 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 1467 1.17835e+06 +en ||| forward as ||| 0.015873 0.066968 8.48644e-07 1.00085e-05 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| forward at ||| 0.117647 0.321886 3.39458e-06 2.22571e-05 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| forward by ||| 0.015544 0.0468744 2.54593e-06 4.73335e-06 2.718 ||| 0-1 ||| 193 1.17835e+06 +en ||| forward drastic remedies in ||| 1 0.605812 8.48644e-07 1.52619e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| forward for the ||| 0.0121951 0.0148939 8.48644e-07 1.83384e-08 2.718 ||| 0-1 0-2 ||| 82 1.17835e+06 +en ||| forward for ||| 0.0037594 0.0286209 8.48644e-07 6.40149e-06 2.718 ||| 0-1 ||| 266 1.17835e+06 +en ||| forward in a way that ||| 0.333333 0.605812 8.48644e-07 4.12967e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| forward in a way ||| 0.333333 0.605812 8.48644e-07 2.45498e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| forward in a ||| 0.0384615 0.605812 8.48644e-07 1.13888e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| forward in step ||| 1 0.605812 8.48644e-07 3.78979e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| forward in ||| 0.110754 0.605812 5.85565e-05 0.000256935 2.718 ||| 0-1 ||| 623 1.17835e+06 +en ||| forward into ||| 0.166667 0.525896 8.48644e-07 1.23172e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| forward nearly enough on ||| 1 0.22993 8.48644e-07 1.26717e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| forward on a ||| 0.25 0.22993 8.48644e-07 2.04821e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| forward on ||| 0.0733945 0.22993 6.78915e-06 4.62081e-05 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| forward over ||| 0.8 0.157937 3.39458e-06 2.22961e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| forward regarding ||| 0.25 0.140669 8.48644e-07 1.05327e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| forward through ||| 1 0.0366102 8.48644e-07 5.23239e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| forward to discuss ||| 1 0.0247351 8.48644e-07 6.52165e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| forward to ||| 0.00968054 0.0247351 8.48644e-06 1.56395e-05 2.718 ||| 0-1 ||| 1033 1.17835e+06 +en ||| forward under ||| 0.1 0.205566 8.48644e-07 3.14622e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| forward with ||| 0.0380952 0.0535436 6.78915e-06 6.48701e-06 2.718 ||| 0-1 ||| 210 1.17835e+06 +en ||| forward within ||| 0.2 0.369196 1.69729e-06 6.16864e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| forward ||| 0.000322165 0.0008492 1.69729e-06 1.16e-05 2.718 ||| 0-0 ||| 6208 1.17835e+06 +en ||| forwarding on ||| 1 0.22993 8.48644e-07 2.07621e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| forwards , in ||| 0.5 0.605812 8.48644e-07 6.71849e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| forwards in ||| 0.0588235 0.605812 1.69729e-06 5.63373e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| fostered in ||| 0.25 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| fought for ||| 0.00495049 0.0286209 8.48644e-07 1.81782e-07 2.718 ||| 0-1 ||| 202 1.17835e+06 +en ||| fought in ||| 0.030303 0.605812 8.48644e-07 7.29614e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| found , however , in ||| 1 0.605812 8.48644e-07 1.59168e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| found against ||| 0.166667 0.153982 1.69729e-06 1.2688e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| found among ||| 0.111111 0.0422459 8.48644e-07 6.96878e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| found at ||| 0.0833333 0.321886 2.54593e-06 8.75244e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| found expression through ||| 1 0.0366102 8.48644e-07 8.37441e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| found for these refugees in ||| 1 0.605812 8.48644e-07 9.01998e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| found for ||| 0.0192308 0.0286209 8.48644e-07 2.51734e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| found in South ||| 0.25 0.605812 8.48644e-07 2.18241e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| found in a ||| 0.0434783 0.605812 8.48644e-07 4.47858e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| found in favour ||| 0.125 0.605812 8.48644e-07 3.26857e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| found in mainstream ||| 0.333333 0.605812 8.48644e-07 3.63736e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| found in the ||| 0.00378788 0.605812 8.48644e-07 6.20289e-06 2.718 ||| 0-1 ||| 264 1.17835e+06 +en ||| found in these ||| 0.2 0.605812 8.48644e-07 1.04786e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| found in ||| 0.101124 0.605812 6.11024e-05 0.000101038 2.718 ||| 0-1 ||| 712 1.17835e+06 +en ||| found its feet in ||| 1 0.605812 8.48644e-07 2.69184e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| found its way into ||| 0.0769231 0.525896 8.48644e-07 1.48752e-11 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| found its way onto ||| 0.25 0.233333 8.48644e-07 1.34458e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| found itself in , ||| 1 0.605812 8.48644e-07 8.17781e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| found itself in ||| 0.166667 0.605812 2.54593e-06 6.85743e-08 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| found on ||| 0.111111 0.22993 5.09187e-06 1.8171e-05 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| found out at ||| 1 0.321886 8.48644e-07 3.35253e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| found that in ||| 0.111111 0.605812 8.48644e-07 1.69962e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| found there were ||| 1 0.0117359 8.48644e-07 4.39542e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| found there ||| 0.0833333 0.0117359 8.48644e-07 2.45362e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| found to ||| 0.00507614 0.0247351 8.48644e-07 6.1501e-06 2.718 ||| 0-1 ||| 197 1.17835e+06 +en ||| found within ||| 0.1 0.369196 2.54593e-06 2.42577e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| foundation stone in ||| 0.5 0.605812 8.48644e-07 6.52958e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| foundations in ||| 0.0555556 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| founded at ||| 0.5 0.321886 8.48644e-07 7.36037e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| founded in ||| 0.030303 0.605812 8.48644e-07 8.49677e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| founded on ||| 0.0110906 0.22993 5.09187e-06 1.52809e-06 2.718 ||| 0-1 ||| 541 1.17835e+06 +en ||| founded upon ||| 0.00704225 0.114601 8.48644e-07 1.62638e-08 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| four own-initiative reports in this ||| 1 0.605812 8.48644e-07 1.21185e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| four own-initiative reports in ||| 1 0.605812 8.48644e-07 1.87552e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| four square ||| 1 0.0002865 8.48644e-07 1.008e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| four ||| 0.000135593 0.0002865 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 7375 1.17835e+06 +en ||| fourthly and ||| 0.0263158 0.299082 8.48644e-07 7.21868e-06 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| fourthly ||| 0.000917431 0.299082 8.48644e-07 0.0005763 2.718 ||| 0-0 ||| 1090 1.17835e+06 +en ||| fr ) At ||| 0.333333 0.0814815 8.48644e-07 2.94287e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| fr ) In ||| 0.157895 0.0659459 2.54593e-06 1.62839e-12 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| fr ||| 0.000439947 0.0004139 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2273 1.17835e+06 +en ||| framed in ||| 0.047619 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| framed within ||| 0.111111 0.369196 8.48644e-07 2.77168e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| framework as ||| 0.047619 0.066968 8.48644e-07 2.14236e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| framework of ||| 0.000786576 0.0116562 2.54593e-06 1.62417e-06 2.718 ||| 0-1 ||| 3814 1.17835e+06 +en ||| frameworks into ||| 1 0.525896 8.48644e-07 3.09922e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| francs in ||| 0.166667 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| frankly , at ||| 0.25 0.321886 8.48644e-07 3.24389e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| fraud , in ||| 0.2 0.605812 8.48644e-07 8.53578e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| fraud at ||| 0.047619 0.321886 8.48644e-07 6.20031e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| fraud is in ||| 1 0.605812 8.48644e-07 2.24327e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fraud level of ||| 0.5 0.0116562 8.48644e-07 1.80809e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| fraud situation in ||| 1 0.605812 8.48644e-07 3.68617e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| free hand in ||| 0.0909091 0.605812 8.48644e-07 2.13544e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| free higher education ||| 1 0.0015298 8.48644e-07 2.67993e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| free higher ||| 1 0.0015298 8.48644e-07 7.9288e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| free of charge ||| 0.00520833 0.0116562 8.48644e-07 8.01397e-11 2.718 ||| 0-1 ||| 192 1.17835e+06 +en ||| free of ||| 0.00507614 0.0116562 1.69729e-06 1.59007e-06 2.718 ||| 0-1 ||| 394 1.17835e+06 +en ||| free roads in ||| 0.5 0.605812 8.48644e-07 6.4074e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| free to ||| 0.0015674 0.0247351 8.48644e-07 3.27743e-06 2.718 ||| 0-1 ||| 638 1.17835e+06 +en ||| free trade agreement with South Korea is ||| 1 0.0535436 8.48644e-07 9.01151e-26 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| free trade agreement with South Korea ||| 1 0.0535436 8.48644e-07 2.8753e-24 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| free trade agreement with South ||| 0.142857 0.0535436 8.48644e-07 4.71361e-19 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| free trade agreement with ||| 0.0114943 0.0535436 8.48644e-07 2.18223e-14 2.718 ||| 0-3 ||| 87 1.17835e+06 +en ||| free will in ||| 0.5 0.605812 8.48644e-07 4.65812e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| free-trade area on European ||| 1 0.22993 8.48644e-07 1.26864e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| free-trade area on ||| 1 0.22993 8.48644e-07 3.7939e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| freed up at ||| 1 0.321886 8.48644e-07 4.91137e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| freedom , under ||| 1 0.205566 8.48644e-07 5.7521e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| freedom in ||| 0.00555556 0.605812 8.48644e-07 3.93899e-05 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| freedom on ||| 0.0294118 0.22993 8.48644e-07 7.08403e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| freedoms within ||| 0.5 0.369196 8.48644e-07 4.43468e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| freely in ||| 0.0113636 0.605812 8.48644e-07 6.00315e-06 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| freely the conditions of ||| 1 0.0116562 8.48644e-07 1.30059e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| freely throughout ||| 0.0416667 0.309047 8.48644e-07 3.77104e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| freely when ||| 0.25 0.142731 8.48644e-07 7.73929e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| freer flow of goods in ||| 1 0.605812 8.48644e-07 2.29147e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| freeways with ||| 1 0.0535436 8.48644e-07 8.16123e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| freezing in this Chamber and ||| 1 0.605812 8.48644e-07 3.14541e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| freezing in this Chamber ||| 1 0.605812 8.48644e-07 2.51113e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| freezing in this ||| 1 0.605812 8.48644e-07 9.54801e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| freezing in ||| 0.166667 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| frequently as is ||| 1 0.066968 8.48644e-07 1.01477e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| frequently as ||| 0.25 0.066968 8.48644e-07 3.23782e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| fresh in ||| 0.0612245 0.605812 2.54593e-06 1.24681e-05 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| fresh start in ||| 0.25 0.605812 8.48644e-07 1.73182e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| friend in ||| 0.285714 0.605812 1.69729e-06 5.31048e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| friend of ||| 0.00625 0.0116562 8.48644e-07 1.56825e-07 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| friendly country and a partner country under ||| 1 0.205566 8.48644e-07 1.10676e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| fringes in ||| 1 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| from ' . in ||| 1 0.605812 8.48644e-07 7.73719e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| from , people ||| 0.333333 0.0308834 8.48644e-07 3.99414e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| from , there are many ||| 1 0.0308834 8.48644e-07 7.24521e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from , there are ||| 1 0.0308834 8.48644e-07 2.11046e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from , there ||| 1 0.0308834 8.48644e-07 1.39096e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from , ||| 0.0264901 0.0308834 3.39458e-06 0.000453776 2.718 ||| 0-0 ||| 151 1.17835e+06 +en ||| from China ||| 0.00347222 0.0308834 8.48644e-07 1.00074e-07 2.718 ||| 0-0 ||| 288 1.17835e+06 +en ||| from European ||| 0.037037 0.0308834 8.48644e-07 1.27239e-05 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| from Member ||| 0.0526316 0.0308834 8.48644e-07 1.96077e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| from Paris ||| 0.0196078 0.0308834 8.48644e-07 1.10348e-08 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| from a State where ||| 1 0.247783 8.48644e-07 7.30737e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| from a long period ||| 0.333333 0.0308834 8.48644e-07 9.95681e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| from a long ||| 0.0588235 0.0308834 8.48644e-07 5.70591e-08 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| from a ||| 0.00588713 0.0308834 2.46107e-05 0.000168664 2.718 ||| 0-0 ||| 4926 1.17835e+06 +en ||| from additional competition and , ||| 1 0.0308834 8.48644e-07 1.09147e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from additional competition and ||| 1 0.0308834 8.48644e-07 9.15245e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from additional competition ||| 1 0.0308834 8.48644e-07 7.30682e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from additional ||| 1 0.0308834 8.48644e-07 2.0129e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from all this ||| 0.0625 0.0308834 8.48644e-07 1.1618e-07 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| from all ||| 0.00253378 0.0308834 2.54593e-06 1.79806e-05 2.718 ||| 0-0 ||| 1184 1.17835e+06 +en ||| from an ||| 0.0047619 0.0308834 5.09187e-06 1.69125e-05 2.718 ||| 0-0 ||| 1260 1.17835e+06 +en ||| from another in ||| 0.166667 0.605812 8.48644e-07 1.79295e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| from any ||| 0.00520833 0.0308834 1.69729e-06 5.75407e-06 2.718 ||| 0-0 ||| 384 1.17835e+06 +en ||| from anything else , ||| 0.0204082 0.0308834 8.48644e-07 8.4013e-12 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| from anything else ||| 0.0136986 0.0308834 8.48644e-07 7.04484e-11 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| from anything ||| 0.0136986 0.0308834 8.48644e-07 5.9702e-07 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| from arising ||| 0.0357143 0.0308834 8.48644e-07 1.10728e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| from attending ||| 0.0769231 0.0308834 8.48644e-07 3.27239e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| from bad ||| 0.0322581 0.0308834 8.48644e-07 1.73893e-07 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| from becoming ||| 0.0322581 0.0308834 2.54593e-06 3.91545e-07 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| from being announced in ||| 1 0.605812 8.48644e-07 4.42304e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| from being claimed when ||| 0.5 0.0308834 8.48644e-07 1.07181e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| from being claimed ||| 0.5 0.0308834 8.48644e-07 2.14405e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| from being driven ||| 0.333333 0.0308834 8.48644e-07 3.19442e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| from being given ||| 0.333333 0.042771 8.48644e-07 1.25709e-08 2.718 ||| 0-0 0-2 ||| 3 1.17835e+06 +en ||| from being held up at ||| 1 0.321886 8.48644e-07 1.59495e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| from being placed on ||| 0.25 0.22993 8.48644e-07 4.76512e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| from being the ||| 0.0526316 0.0308834 8.48644e-07 6.64784e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| from being used ||| 0.0454545 0.0308834 8.48644e-07 4.64545e-09 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| from being ||| 0.0150685 0.0308834 9.33509e-06 1.08286e-05 2.718 ||| 0-0 ||| 730 1.17835e+06 +en ||| from case to ||| 0.2 0.0308834 8.48644e-07 3.61749e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| from case ||| 0.166667 0.0308834 8.48644e-07 4.07108e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| from certain ||| 0.00558659 0.0308834 8.48644e-07 1.08445e-06 2.718 ||| 0-0 ||| 179 1.17835e+06 +en ||| from close ||| 0.166667 0.0308834 8.48644e-07 5.64296e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| from comfortable ||| 1 0.0308834 8.48644e-07 1.36984e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from country ||| 0.0217391 0.0308834 8.48644e-07 1.36946e-06 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| from day to ||| 0.0833333 0.0308834 1.69729e-06 8.66249e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| from day ||| 0.0689655 0.0308834 1.69729e-06 9.74867e-07 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| from developing countries . in ||| 1 0.605812 8.48644e-07 4.64419e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| from entering ||| 0.0375 0.157895 2.54593e-06 1.30515e-06 2.718 ||| 0-0 0-1 ||| 80 1.17835e+06 +en ||| from escalating into ||| 1 0.0308834 8.48644e-07 5.46937e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from escalating ||| 0.111111 0.0308834 8.48644e-07 5.32714e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| from every possible ||| 0.5 0.0308834 8.48644e-07 4.96572e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| from every ||| 0.00666667 0.0308834 8.48644e-07 6.1909e-07 2.718 ||| 0-0 ||| 150 1.17835e+06 +en ||| from experience ||| 0.00746269 0.0308834 8.48644e-07 2.62932e-07 2.718 ||| 0-0 ||| 134 1.17835e+06 +en ||| from fruition ||| 1 0.0308834 8.48644e-07 1.90255e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from going ahead ||| 0.0909091 0.0308834 8.48644e-07 3.54948e-10 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| from going ||| 0.0483871 0.0308834 2.54593e-06 3.2564e-06 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| from happening again in ||| 0.333333 0.605812 8.48644e-07 2.33519e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| from having ||| 0.0239521 0.0308834 3.39458e-06 1.45697e-06 2.718 ||| 0-0 ||| 167 1.17835e+06 +en ||| from here in ||| 0.166667 0.605812 8.48644e-07 1.50798e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| from him ||| 0.0185185 0.0308834 8.48644e-07 1.21992e-06 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| from his post in ||| 0.25 0.605812 8.48644e-07 5.47495e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| from holding ||| 0.0714286 0.0308834 8.48644e-07 2.28687e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| from house ||| 0.111111 0.0308834 8.48644e-07 8.21902e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| from in ||| 0.25 0.605812 3.39458e-06 0.000743652 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| from inside ||| 0.03125 0.1098 8.48644e-07 7.27535e-07 2.718 ||| 0-0 0-1 ||| 32 1.17835e+06 +en ||| from it as a result ||| 0.5 0.0308834 8.48644e-07 1.61146e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| from it as a ||| 1 0.0308834 8.48644e-07 3.06069e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from it as ||| 0.5 0.0308834 8.48644e-07 6.905e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| from it in ||| 0.142857 0.605812 8.48644e-07 1.32245e-05 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| from it ||| 0.00196078 0.0308834 8.48644e-07 6.76669e-05 2.718 ||| 0-0 ||| 510 1.17835e+06 +en ||| from its bounty ||| 1 0.0308834 8.48644e-07 2.16845e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from its ||| 0.00153374 0.0308834 8.48644e-07 5.42113e-06 2.718 ||| 0-0 ||| 652 1.17835e+06 +en ||| from joining ||| 0.0588235 0.0611905 8.48644e-07 5.49076e-07 2.718 ||| 0-0 0-1 ||| 17 1.17835e+06 +en ||| from members ||| 0.0344828 0.0308834 8.48644e-07 5.61252e-07 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| from my position here in ||| 0.5 0.345672 8.48644e-07 4.72472e-13 2.718 ||| 0-3 0-4 ||| 2 1.17835e+06 +en ||| from now on , ||| 0.00361011 0.22993 8.48644e-07 3.28539e-08 2.718 ||| 0-2 ||| 277 1.17835e+06 +en ||| from now on that ||| 0.2 0.22993 8.48644e-07 4.63424e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| from now on ||| 0.00851064 0.22993 5.09187e-06 2.75493e-07 2.718 ||| 0-2 ||| 705 1.17835e+06 +en ||| from now ||| 0.00291121 0.0308834 1.69729e-06 7.83813e-06 2.718 ||| 0-0 ||| 687 1.17835e+06 +en ||| from office ||| 0.0434783 0.0308834 8.48644e-07 3.91545e-07 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| from one country to ||| 0.00552486 0.0308834 8.48644e-07 5.07193e-10 2.718 ||| 0-0 ||| 181 1.17835e+06 +en ||| from one country ||| 0.00465116 0.0308834 8.48644e-07 5.70789e-09 2.718 ||| 0-0 ||| 215 1.17835e+06 +en ||| from one side or the other ||| 0.333333 0.0308834 8.48644e-07 3.16113e-16 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| from one side or the ||| 0.5 0.0308834 8.48644e-07 2.44008e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| from one side or ||| 0.25 0.0308834 8.48644e-07 3.97461e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| from one side ||| 0.0333333 0.0308834 8.48644e-07 3.47644e-09 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| from one town to another in Bosnia ||| 1 0.605812 8.48644e-07 3.93243e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| from one town to another in ||| 1 0.605812 8.48644e-07 8.36687e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| from one ||| 0.00597907 0.0308834 6.78915e-06 1.58597e-05 2.718 ||| 0-0 ||| 1338 1.17835e+06 +en ||| from other ||| 0.00091659 0.0308834 8.48644e-07 4.92951e-06 2.718 ||| 0-0 ||| 1091 1.17835e+06 +en ||| from our high ||| 0.5 0.0308834 8.48644e-07 7.83639e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| from our point of ||| 0.00970874 0.0308834 8.48644e-07 2.49618e-10 2.718 ||| 0-0 ||| 103 1.17835e+06 +en ||| from our point ||| 0.00917431 0.0308834 8.48644e-07 4.59161e-09 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| from our ||| 0.00291333 0.0308834 3.39458e-06 5.24875e-06 2.718 ||| 0-0 ||| 1373 1.17835e+06 +en ||| from outside the ||| 0.00552486 0.0308834 8.48644e-07 9.32072e-09 2.718 ||| 0-0 ||| 181 1.17835e+06 +en ||| from outside ||| 0.00163132 0.0308834 8.48644e-07 1.51823e-07 2.718 ||| 0-0 ||| 613 1.17835e+06 +en ||| from people ||| 0.0105263 0.0308834 8.48644e-07 3.34925e-06 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| from personal experience ||| 0.08 0.0308834 1.69729e-06 1.11746e-11 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| from personal ||| 0.222222 0.0308834 1.69729e-06 1.61717e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| from political life ||| 0.166667 0.0308834 8.48644e-07 1.029e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| from political ||| 0.166667 0.0308834 8.48644e-07 6.7921e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| from prison ||| 0.0384615 0.0308834 8.48644e-07 4.64222e-08 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| from problem to ||| 0.5 0.0247351 8.48644e-07 1.01802e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| from pursuing ||| 0.125 0.0290132 8.48644e-07 9.85521e-08 2.718 ||| 0-0 0-1 ||| 8 1.17835e+06 +en ||| from reaching ||| 0.0238095 0.0308834 8.48644e-07 1.02738e-07 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| from serving ||| 0.0769231 0.0308834 8.48644e-07 4.26171e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| from sight ||| 0.1 0.0308834 8.48644e-07 8.75173e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| from somewhere other than ||| 1 0.0161191 8.48644e-07 5.29528e-15 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| from stating , in ||| 1 0.605812 8.48644e-07 2.07521e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| from taking part in ||| 0.0625 0.605812 8.48644e-07 3.76797e-10 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| from taking place ||| 0.047619 0.0308834 8.48644e-07 2.43384e-09 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| from taking ||| 0.00704225 0.0308834 8.48644e-07 1.61717e-06 2.718 ||| 0-0 ||| 142 1.17835e+06 +en ||| from technical and ||| 1 0.0308834 8.48644e-07 1.57762e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from technical ||| 0.5 0.0308834 8.48644e-07 1.25949e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| from tests in ||| 1 0.605812 8.48644e-07 1.23446e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| from that point of ||| 0.00793651 0.0308834 8.48644e-07 3.04406e-09 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| from that point ||| 0.00606061 0.0308834 8.48644e-07 5.59941e-08 2.718 ||| 0-0 ||| 165 1.17835e+06 +en ||| from that ||| 0.00442087 0.0308834 4.24322e-06 6.40079e-05 2.718 ||| 0-0 ||| 1131 1.17835e+06 +en ||| from the 1994 reports tell a different ||| 1 0.0308834 8.48644e-07 4.00609e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from the 1994 reports tell a ||| 1 0.0308834 8.48644e-07 1.8193e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from the 1994 reports tell ||| 1 0.0308834 8.48644e-07 4.10437e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from the 1994 reports ||| 1 0.0308834 8.48644e-07 4.17961e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from the 1994 ||| 1 0.0308834 8.48644e-07 8.40967e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from the Commission ||| 0.000345423 0.0308834 8.48644e-07 1.36447e-07 2.718 ||| 0-0 ||| 2895 1.17835e+06 +en ||| from the Directive . ||| 0.333333 0.0308834 8.48644e-07 5.44837e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| from the Directive ||| 0.111111 0.0308834 8.48644e-07 1.79873e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| from the fact ||| 0.0258621 0.0308834 7.6378e-06 6.8429e-07 2.718 ||| 0-0 ||| 348 1.17835e+06 +en ||| from the floor , ||| 1 0.0308834 8.48644e-07 1.18397e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from the floor of ||| 0.333333 0.0308834 8.48644e-07 5.3973e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| from the floor ||| 0.031746 0.0308834 1.69729e-06 9.92808e-09 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| from the imperative obligation ||| 0.25 0.0308834 8.48644e-07 5.50717e-14 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| from the imperative ||| 0.25 0.0308834 8.48644e-07 2.68642e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| from the municipality of ||| 0.5 0.0308834 8.48644e-07 8.88968e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| from the municipality ||| 0.5 0.0308834 8.48644e-07 1.63521e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| from the person concerned ||| 0.1 0.0308834 8.48644e-07 4.83994e-11 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| from the person ||| 0.0625 0.0308834 8.48644e-07 3.00879e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| from the perspective of ||| 0.00404858 0.0116562 8.48644e-07 4.36825e-11 2.718 ||| 0-3 ||| 247 1.17835e+06 +en ||| from the point of view of the ||| 0.00331126 0.0308834 8.48644e-07 3.34927e-14 2.718 ||| 0-0 ||| 302 1.17835e+06 +en ||| from the point of view of ||| 0.00203874 0.0308834 1.69729e-06 5.45557e-13 2.718 ||| 0-0 ||| 981 1.17835e+06 +en ||| from the point of view ||| 0.00195122 0.0308834 1.69729e-06 1.00353e-11 2.718 ||| 0-0 ||| 1025 1.17835e+06 +en ||| from the point of ||| 0.00921187 0.0308834 7.6378e-06 1.11096e-08 2.718 ||| 0-0 ||| 977 1.17835e+06 +en ||| from the point ||| 0.00772947 0.0308834 6.78915e-06 2.04355e-07 2.718 ||| 0-0 ||| 1035 1.17835e+06 +en ||| from the side ||| 0.1 0.0308834 8.48644e-07 5.12055e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| from the social policy ||| 0.5 0.0308834 8.48644e-07 9.50041e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| from the social ||| 0.0833333 0.0308834 8.48644e-07 2.41311e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| from the ||| 0.00179955 0.0308834 6.36483e-05 0.000233602 2.718 ||| 0-0 ||| 41677 1.17835e+06 +en ||| from their ||| 0.00102564 0.0308834 8.48644e-07 4.41049e-06 2.718 ||| 0-0 ||| 975 1.17835e+06 +en ||| from them in terms ||| 1 0.605812 8.48644e-07 2.18946e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| from them in ||| 0.166667 0.605812 8.48644e-07 1.99477e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| from them into ||| 1 0.525896 8.48644e-07 9.56273e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| from them ||| 0.00326797 0.0308834 8.48644e-07 1.02068e-05 2.718 ||| 0-0 ||| 306 1.17835e+06 +en ||| from themselves to ||| 0.5 0.0308834 8.48644e-07 1.45288e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| from themselves ||| 0.153846 0.0308834 1.69729e-06 1.63505e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| from there being ||| 1 0.0117359 8.48644e-07 5.13924e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| from there ||| 0.03125 0.0308834 2.54593e-06 1.16638e-05 2.718 ||| 0-0 ||| 96 1.17835e+06 +en ||| from these countries ||| 0.00917431 0.0308834 8.48644e-07 1.4984e-09 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| from these ||| 0.00151745 0.0308834 8.48644e-07 3.94627e-06 2.718 ||| 0-0 ||| 659 1.17835e+06 +en ||| from this building here ||| 1 0.0308834 8.48644e-07 2.90661e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from this building ||| 0.25 0.0308834 8.48644e-07 1.43338e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| from this in ||| 0.166667 0.605812 8.48644e-07 4.80503e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| from this with ||| 0.333333 0.0535436 8.48644e-07 1.21316e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| from this ||| 0.00181488 0.0308834 5.09187e-06 2.45863e-05 2.718 ||| 0-0 ||| 3306 1.17835e+06 +en ||| from those ||| 0.00156495 0.0308834 8.48644e-07 2.75527e-06 2.718 ||| 0-0 ||| 639 1.17835e+06 +en ||| from ticket ||| 1 0.0308834 8.48644e-07 1.10348e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from time to time ||| 0.00955414 0.0308834 2.54593e-06 9.11279e-10 2.718 ||| 0-0 ||| 314 1.17835e+06 +en ||| from time to ||| 0.0300429 0.0308834 5.94051e-06 5.55082e-07 2.718 ||| 0-0 ||| 233 1.17835e+06 +en ||| from time ||| 0.027668 0.0308834 5.94051e-06 6.24683e-06 2.718 ||| 0-0 ||| 253 1.17835e+06 +en ||| from to ||| 0.25 0.0308834 8.48644e-07 0.000338114 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| from us ||| 0.00606061 0.0308834 1.69729e-06 1.09671e-05 2.718 ||| 0-0 ||| 330 1.17835e+06 +en ||| from what was ||| 0.0333333 0.0172233 8.48644e-07 4.65649e-09 2.718 ||| 0-0 0-1 ||| 30 1.17835e+06 +en ||| from what ||| 0.00170648 0.0172233 8.48644e-07 1.48627e-06 2.718 ||| 0-0 0-1 ||| 586 1.17835e+06 +en ||| from where ||| 0.019802 0.139333 1.69729e-06 3.24065e-05 2.718 ||| 0-0 0-1 ||| 101 1.17835e+06 +en ||| from which has ||| 1 0.0308834 8.48644e-07 1.66382e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| from which ||| 0.00527983 0.0308834 4.24322e-06 3.23228e-05 2.718 ||| 0-0 ||| 947 1.17835e+06 +en ||| from within ||| 0.0337079 0.369196 5.09187e-06 1.7854e-05 2.718 ||| 0-1 ||| 178 1.17835e+06 +en ||| from you in ||| 0.142857 0.605812 8.48644e-07 2.40103e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| from you ||| 0.0128205 0.0308834 3.39458e-06 1.22855e-05 2.718 ||| 0-0 ||| 312 1.17835e+06 +en ||| from ||| 0.0351335 0.0308834 0.00335893 0.0038051 2.718 ||| 0-0 ||| 112656 1.17835e+06 +en ||| front , when ||| 1 0.142731 8.48644e-07 5.72227e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| front for ||| 0.0625 0.0286209 8.48644e-07 9.27319e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| front hailed him in ||| 1 0.605812 8.48644e-07 1.67056e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| front in ||| 0.173913 0.605812 3.39458e-06 3.72196e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| front line at ||| 0.333333 0.321886 8.48644e-07 9.49193e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| front of ||| 0.0121951 0.0116562 2.54593e-06 1.09914e-06 2.718 ||| 0-1 ||| 246 1.17835e+06 +en ||| front on ||| 0.166667 0.22993 1.69729e-06 6.6937e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| front page ||| 0.0285714 0.018018 8.48644e-07 7.657e-10 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| front-page ||| 0.1875 0.416667 2.54593e-06 3.4e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| frontiers within ||| 0.333333 0.369196 8.48644e-07 7.20635e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| fruit in ||| 0.0208333 0.605812 8.48644e-07 6.3264e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| fruition in ||| 0.285714 0.605812 1.69729e-06 2.30891e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| fuel duty in ||| 1 0.605812 8.48644e-07 6.4333e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| fuel in ||| 0.0384615 0.605812 8.48644e-07 8.63531e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| fuel on ||| 0.333333 0.22993 8.48644e-07 1.55301e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| fulfilled in ||| 0.0238095 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| fulfilling the ||| 0.00378788 0.0011669 8.48644e-07 1.86205e-08 2.718 ||| 0-1 ||| 264 1.17835e+06 +en ||| full competence in ||| 0.333333 0.605812 8.48644e-07 2.04216e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| full nor half ||| 0.25 0.0049763 8.48644e-07 1.54845e-13 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| full nor ||| 0.2 0.0049763 8.48644e-07 5.37655e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| full of ||| 0.00473186 0.0116562 2.54593e-06 2.50239e-06 2.718 ||| 0-1 ||| 634 1.17835e+06 +en ||| full part in all ||| 0.2 0.605812 8.48644e-07 4.77375e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| full part in ||| 0.0175439 0.605812 8.48644e-07 1.01023e-07 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| full potential in ||| 0.5 0.605812 8.48644e-07 4.36395e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| full version ||| 0.142857 0.0009569 8.48644e-07 2.569e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| fullest extent within ||| 0.5 0.369196 8.48644e-07 5.32716e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| fully aware of what ||| 0.0555556 0.0116562 8.48644e-07 3.01386e-13 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| fully aware of ||| 0.0031348 0.0116562 8.48644e-07 2.148e-10 2.718 ||| 0-2 ||| 319 1.17835e+06 +en ||| fully functional in ||| 0.333333 0.605812 8.48644e-07 2.25174e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| fully in the common foreign and security ||| 1 0.605812 8.48644e-07 2.07475e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fully in the common foreign and ||| 1 0.605812 8.48644e-07 2.53947e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fully in the common foreign ||| 1 0.605812 8.48644e-07 2.02738e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fully in the common ||| 1 0.605812 8.48644e-07 7.42628e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fully in the ||| 0.00813008 0.605812 8.48644e-07 3.21484e-06 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| fully in ||| 0.0120192 0.605812 4.24322e-06 5.2366e-05 2.718 ||| 0-1 ||| 416 1.17835e+06 +en ||| fully integrated members of ||| 0.333333 0.0116562 8.48644e-07 4.60761e-15 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| fully into account . all ||| 1 0.525896 8.48644e-07 1.03303e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| fully into account . ||| 0.111111 0.525896 8.48644e-07 2.18612e-12 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| fully into account ||| 0.0222222 0.525896 8.48644e-07 7.21731e-10 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| fully into line with ||| 0.2 0.525896 8.48644e-07 4.72587e-12 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| fully into line ||| 0.25 0.525896 8.48644e-07 7.39053e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| fully into ||| 0.0776699 0.525896 6.78915e-06 2.51037e-06 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| fully involved in ||| 0.0215054 0.605812 1.69729e-06 1.81082e-08 2.718 ||| 0-2 ||| 93 1.17835e+06 +en ||| fully on ||| 0.0322581 0.22993 8.48644e-07 9.41769e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| fully reflected in ||| 0.0833333 0.605812 8.48644e-07 1.05779e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| fully there ||| 0.5 0.0117359 8.48644e-07 1.27167e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| fully used in ||| 0.333333 0.605812 8.48644e-07 2.2465e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| fully utilise them during ||| 1 0.226251 8.48644e-07 1.58308e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| fully with ||| 0.00595238 0.0535436 8.48644e-07 1.32212e-06 2.718 ||| 0-1 ||| 168 1.17835e+06 +en ||| function in ||| 0.0121951 0.605812 8.48644e-07 1.14522e-05 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| function on ||| 0.047619 0.22993 8.48644e-07 2.0596e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| function properly at ||| 0.5 0.321886 8.48644e-07 7.39077e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| function within ||| 0.166667 0.369196 1.69729e-06 2.7495e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| functional in ||| 0.5 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| functioning of the WTO ||| 0.2 0.0116562 8.48644e-07 1.25873e-13 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| functioning of the ||| 0.00106496 0.0116562 8.48644e-07 1.29766e-08 2.718 ||| 0-1 ||| 939 1.17835e+06 +en ||| functioning of ||| 0.00252845 0.0116562 1.69729e-06 2.11374e-07 2.718 ||| 0-1 ||| 791 1.17835e+06 +en ||| functions in ||| 0.047619 0.605812 1.69729e-06 4.80252e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| fund in ||| 0.0222222 0.605812 8.48644e-07 1.75939e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| fundamental rights , both in ||| 1 0.605812 8.48644e-07 8.99906e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| fundamentally in favour of ||| 0.333333 0.605812 8.48644e-07 7.87759e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| fundamentally in favour ||| 0.25 0.605812 8.48644e-07 1.44905e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| fundamentally in ||| 0.0769231 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| fundamentally seek ||| 0.25 0.05919 8.48644e-07 3.59315e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| fundamentally ||| 0.00258176 0.05919 2.54593e-06 5.17e-05 2.718 ||| 0-0 ||| 1162 1.17835e+06 +en ||| funded by ||| 0.00325733 0.0468744 8.48644e-07 7.65639e-08 2.718 ||| 0-1 ||| 307 1.17835e+06 +en ||| funded to ||| 0.0526316 0.0247351 8.48644e-07 2.52975e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| funding for information ||| 0.333333 0.0286209 8.48644e-07 1.01489e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| funding for ||| 0.00146199 0.0286209 1.69729e-06 6.13227e-07 2.718 ||| 0-1 ||| 1368 1.17835e+06 +en ||| funding in ||| 0.0291971 0.605812 3.39458e-06 2.46129e-05 2.718 ||| 0-1 ||| 137 1.17835e+06 +en ||| funding on ||| 0.0344828 0.22993 8.48644e-07 4.42648e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| funding under ||| 0.0116279 0.205566 8.48644e-07 3.0139e-07 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| funds from ||| 0.00526316 0.0308834 8.48644e-07 2.90329e-07 2.718 ||| 0-1 ||| 190 1.17835e+06 +en ||| funds in ||| 0.00966184 0.605812 1.69729e-06 3.52339e-05 2.718 ||| 0-1 ||| 207 1.17835e+06 +en ||| funds to ||| 0.00213675 0.0247351 8.48644e-07 2.14466e-06 2.718 ||| 0-1 ||| 468 1.17835e+06 +en ||| furnishing ||| 0.0909091 0.0769231 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| furniture in ||| 0.6 0.605812 2.54593e-06 5.07959e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| further , even in ||| 1 0.605812 8.48644e-07 1.61953e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| further along ||| 0.192308 0.155535 4.24322e-06 3.84465e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| further amendment in ||| 1 0.605812 8.48644e-07 1.42165e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| further at ||| 0.125 0.321886 1.69729e-06 1.9333e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| further back in ||| 0.0833333 0.605812 8.48644e-07 1.5011e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| further by taking ||| 0.25 0.0468744 8.48644e-07 1.74738e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| further by ||| 0.0123457 0.0468744 8.48644e-07 4.11148e-06 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| further course of ||| 0.2 0.0116562 8.48644e-07 8.31556e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| further delay in ||| 0.047619 0.605812 8.48644e-07 6.9855e-09 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| further development in ||| 0.0833333 0.605812 8.48644e-07 3.67129e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| further discussion of ||| 0.0526316 0.0116562 8.48644e-07 5.69442e-10 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| further down the road ||| 0.0769231 0.0011669 8.48644e-07 8.62141e-14 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| further down the ||| 0.0285714 0.0011669 8.48644e-07 9.66526e-10 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| further down ||| 0.02 0.0183476 8.48644e-07 1.06568e-07 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| further during ||| 0.285714 0.226251 1.69729e-06 1.39737e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| further entertainment in ||| 1 0.605812 8.48644e-07 2.45497e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| further from the ||| 0.0185185 0.0308834 8.48644e-07 1.129e-07 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| further from ||| 0.0119048 0.0308834 8.48644e-07 1.839e-06 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| further in ||| 0.0716846 0.605812 1.69729e-05 0.000223179 2.718 ||| 0-1 ||| 279 1.17835e+06 +en ||| further into ||| 0.015873 0.525896 8.48644e-07 1.0699e-05 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| further involved in ||| 1 0.605812 8.48644e-07 7.71752e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| further off in ||| 1 0.605812 8.48644e-07 9.08338e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| further on ||| 0.00862069 0.22993 8.48644e-07 4.01373e-05 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| further storms on ||| 0.5 0.22993 8.48644e-07 5.61922e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| further to ||| 0.00761421 0.0247351 2.54593e-06 1.35847e-05 2.718 ||| 0-1 ||| 394 1.17835e+06 +en ||| further ||| 0.000103896 0.0004936 1.69729e-06 9.5e-06 2.718 ||| 0-0 ||| 19250 1.17835e+06 +en ||| furthermore , as ||| 0.00757576 0.066968 8.48644e-07 9.8891e-08 2.718 ||| 0-2 ||| 132 1.17835e+06 +en ||| furthermore , at ||| 0.037037 0.321886 8.48644e-07 2.19917e-07 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| furthermore , in ||| 0.00448431 0.605812 8.48644e-07 2.53871e-06 2.718 ||| 0-2 ||| 223 1.17835e+06 +en ||| furthermore , it is ||| 0.00454545 0.0017817 8.48644e-07 8.57412e-10 2.718 ||| 0-0 ||| 220 1.17835e+06 +en ||| furthermore , it ||| 0.00854701 0.0017817 8.48644e-07 2.73574e-08 2.718 ||| 0-0 ||| 117 1.17835e+06 +en ||| furthermore , ||| 0.000839631 0.0017817 5.09187e-06 1.53839e-06 2.718 ||| 0-0 ||| 7146 1.17835e+06 +en ||| furthermore ||| 0.00100997 0.0017817 6.78915e-06 1.29e-05 2.718 ||| 0-0 ||| 7921 1.17835e+06 +en ||| furthest along ||| 0.2 0.155535 8.48644e-07 1.4319e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| fuss in ||| 0.5 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| future , on ||| 0.0454545 0.22993 8.48644e-07 2.63048e-06 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| future . in ||| 0.5 0.605812 8.48644e-07 3.71504e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| future at ||| 0.047619 0.321886 8.48644e-07 1.06245e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| future concerning ||| 0.333333 0.0888235 8.48644e-07 3.21881e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| future in ||| 0.00526316 0.605812 1.69729e-06 0.000122649 2.718 ||| 0-1 ||| 380 1.17835e+06 +en ||| future lies in ||| 0.0333333 0.605812 8.48644e-07 7.54292e-09 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| future regarding ||| 0.166667 0.140669 8.48644e-07 5.02781e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| gain a foothold in ||| 0.111111 0.605812 8.48644e-07 1.59902e-12 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| gain from European ||| 1 0.0308834 8.48644e-07 7.09992e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| gain from ||| 0.0144928 0.0308834 2.54593e-06 2.12325e-07 2.718 ||| 0-1 ||| 207 1.17835e+06 +en ||| gain in strength ||| 1 0.605812 8.48644e-07 6.39031e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| gain in ||| 0.025 0.605812 8.48644e-07 2.57674e-05 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| gained by ||| 0.0175439 0.0468744 8.48644e-07 2.69675e-07 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| gained from having ||| 0.5 0.0308834 8.48644e-07 4.6186e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| gained from ||| 0.013245 0.0308834 1.69729e-06 1.20622e-07 2.718 ||| 0-1 ||| 151 1.17835e+06 +en ||| gained on ||| 0.25 0.22993 8.48644e-07 2.63263e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| gained with ||| 0.037037 0.0535436 8.48644e-07 3.69587e-07 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| gaining ground in ||| 0.0625 0.605812 8.48644e-07 6.21326e-10 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| gaining ||| 0.00461894 0.0078003 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 433 1.17835e+06 +en ||| gains employment in ||| 1 0.605812 8.48644e-07 1.94197e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| gains in terms ||| 0.125 0.605812 8.48644e-07 4.35892e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| gains in ||| 0.0172414 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| game in ||| 0.05 0.605812 1.69729e-06 1.32993e-05 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| game played on a window ||| 0.5 0.22993 8.48644e-07 5.8539e-17 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| game played on a ||| 0.5 0.22993 8.48644e-07 5.2267e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| game played on ||| 0.5 0.22993 8.48644e-07 1.17915e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| game that I have sometimes described as ||| 0.5 0.066968 8.48644e-07 1.85773e-21 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| game within ||| 0.5 0.369196 8.48644e-07 3.19297e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| games in ||| 0.0909091 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| gap in terms of ||| 0.5 0.605812 8.48644e-07 4.3536e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| gap in terms ||| 0.5 0.605812 8.48644e-07 8.00824e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| gap in ||| 0.0290698 0.605812 4.24322e-06 7.29614e-06 2.718 ||| 0-1 ||| 172 1.17835e+06 +en ||| gap seems to be ||| 0.5 0.0247351 8.48644e-07 9.6744e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| gap seems to ||| 0.5 0.0247351 8.48644e-07 5.33822e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| gaps in ||| 0.0103093 0.605812 1.69729e-06 1.84712e-06 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| gather in ||| 0.1 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| gathered in ||| 0.0454545 0.605812 1.69729e-06 2.81686e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| gathered into ||| 1 0.525896 8.48644e-07 1.35038e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| gathering force in ||| 1 0.605812 8.48644e-07 5.65885e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| gathering speed in ||| 0.5 0.605812 8.48644e-07 6.58315e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| gathering ||| 0.00224719 0.0024213 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 445 1.17835e+06 +en ||| gave as part ||| 0.333333 0.066968 8.48644e-07 1.79067e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| gave as ||| 0.333333 0.066968 8.48644e-07 1.50199e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| gave at ||| 0.2 0.321886 8.48644e-07 3.34017e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| gave birth in ||| 1 0.605812 8.48644e-07 4.16434e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| gave in ||| 0.0416667 0.605812 1.69729e-06 3.85587e-05 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| gave on ||| 0.0666667 0.22993 8.48644e-07 6.93454e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| gave rise to ||| 0.0116279 0.0247351 1.69729e-06 2.94789e-10 2.718 ||| 0-2 ||| 172 1.17835e+06 +en ||| gave to ||| 0.0224719 0.0247351 1.69729e-06 2.34704e-06 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| gave us in ||| 0.166667 0.605812 8.48644e-07 1.11134e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| gave way to ||| 0.0833333 0.0247351 8.48644e-07 5.05929e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| gazing , with ||| 1 0.0535436 8.48644e-07 9.73265e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| gear in ||| 0.2 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| geared to ||| 0.00346021 0.0247351 8.48644e-07 3.65408e-07 2.718 ||| 0-1 ||| 289 1.17835e+06 +en ||| geared towards ||| 0.00421941 0.0616136 8.48644e-07 1.29506e-08 2.718 ||| 0-1 ||| 237 1.17835e+06 +en ||| geared up to ||| 0.333333 0.0247351 8.48644e-07 1.24622e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| geared ||| 0.0104384 0.0209205 4.24322e-06 1.02e-05 2.718 ||| 0-0 ||| 479 1.17835e+06 +en ||| gel-forming food additives in ||| 1 0.605812 8.48644e-07 8.72766e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| general in ||| 0.0208333 0.605812 8.48644e-07 8.07655e-05 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| general to ||| 0.0192308 0.0247351 8.48644e-07 4.91614e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| generally , a common ||| 1 0.21041 8.48644e-07 1.11179e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| generally , a ||| 1 0.21041 8.48644e-07 4.81296e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| generally , ||| 0.00306748 0.21041 8.48644e-07 0.000108581 2.718 ||| 0-0 ||| 326 1.17835e+06 +en ||| generally adopted ||| 0.2 0.21041 8.48644e-07 1.85742e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| generally conscious of the ||| 0.25 0.21041 8.48644e-07 2.5222e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| generally conscious of ||| 0.25 0.21041 8.48644e-07 4.10837e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| generally conscious ||| 0.25 0.21041 8.48644e-07 7.55715e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| generally got ||| 1 0.21041 8.48644e-07 9.96087e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| generally in ||| 0.0416667 0.605812 1.69729e-06 1.91177e-05 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| generally involve cooperation ||| 0.166667 0.21041 8.48644e-07 4.13415e-12 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| generally involve ||| 0.166667 0.21041 8.48644e-07 4.48876e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| generally speaking ||| 0.00277008 0.21041 8.48644e-07 1.04525e-07 2.718 ||| 0-0 ||| 361 1.17835e+06 +en ||| generally to ||| 0.0263158 0.0247351 8.48644e-07 1.16368e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| generally ||| 0.00724399 0.21041 1.86702e-05 0.0009105 2.718 ||| 0-0 ||| 3037 1.17835e+06 +en ||| generated by ||| 0.00334448 0.0468744 8.48644e-07 1.13144e-07 2.718 ||| 0-1 ||| 299 1.17835e+06 +en ||| generated in order to ensure that ||| 0.5 0.605812 8.48644e-07 2.1924e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| generated in order to ensure ||| 0.5 0.605812 8.48644e-07 1.30332e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| generated in order to ||| 0.5 0.605812 8.48644e-07 2.90661e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| generated in order ||| 0.25 0.605812 8.48644e-07 3.27106e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| generated in ||| 0.06 0.605812 2.54593e-06 6.14169e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| generation in ||| 0.0714286 0.605812 8.48644e-07 8.12735e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| generation of ||| 0.00240385 0.0116562 8.48644e-07 2.40011e-07 2.718 ||| 0-1 ||| 416 1.17835e+06 +en ||| generation projects based on new technologies ||| 1 0.22993 8.48644e-07 8.38649e-23 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| generation projects based on new ||| 1 0.22993 8.48644e-07 1.01042e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| generation projects based on ||| 1 0.22993 8.48644e-07 1.69051e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| genocide in ||| 0.0147059 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| gentle breath of air into ||| 0.333333 0.525896 8.48644e-07 7.07542e-19 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| gentlemen , it ||| 0.0222222 0.0080472 8.48644e-07 2.27265e-08 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| gentlemen , will take place within ||| 1 0.369196 8.48644e-07 1.91511e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| gentlemen in ||| 0.0555556 0.605812 8.48644e-07 3.19091e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| genuine change in ||| 0.0769231 0.605812 8.48644e-07 1.9042e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| genuinely achieved in ||| 0.5 0.605812 8.48644e-07 2.64215e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| genuinely in ||| 0.0769231 0.605812 8.48644e-07 1.57929e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| genuinely take ||| 0.1 0.0074151 8.48644e-07 1.00069e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| gestures towards Israel . ||| 1 0.0616136 8.48644e-07 5.02714e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| gestures towards Israel ||| 1 0.0616136 8.48644e-07 1.65967e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| gestures towards ||| 0.2 0.0616136 8.48644e-07 6.9734e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| get a grip on ||| 0.0434783 0.22993 8.48644e-07 2.67163e-11 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| get a majority in ||| 0.166667 0.605812 8.48644e-07 3.60643e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| get a mention into ||| 0.333333 0.525896 8.48644e-07 4.16992e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| get anywhere with ||| 0.25 0.0535436 8.48644e-07 1.53938e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| get as ||| 0.0666667 0.066968 8.48644e-07 7.86431e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| get at ||| 0.0769231 0.321886 8.48644e-07 1.74889e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| get away with it ||| 0.05 0.0535436 8.48644e-07 2.88344e-11 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| get away with ||| 0.0142857 0.0535436 8.48644e-07 1.62144e-09 2.718 ||| 0-2 ||| 70 1.17835e+06 +en ||| get back in ||| 0.333333 0.605812 8.48644e-07 1.35792e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| get carried away in ||| 0.25 0.605812 8.48644e-07 1.89261e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| get caught in ||| 0.166667 0.605812 8.48644e-07 5.59237e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| get caught up in ||| 0.0909091 0.605812 8.48644e-07 1.90728e-11 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| get down to ||| 0.00917431 0.0247351 8.48644e-07 8.57892e-09 2.718 ||| 0-2 ||| 109 1.17835e+06 +en ||| get in the way once ||| 1 0.605812 8.48644e-07 1.09328e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| get in the way ||| 0.030303 0.605812 8.48644e-07 2.67174e-08 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| get in the ||| 0.0285714 0.605812 8.48644e-07 1.23944e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| get in ||| 0.0444444 0.605812 3.39458e-06 0.000201891 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| get into a ||| 0.0227273 0.525896 8.48644e-07 4.29004e-07 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| get into ||| 0.038961 0.525896 7.6378e-06 9.67843e-06 2.718 ||| 0-1 ||| 231 1.17835e+06 +en ||| get involved ||| 0.003003 0.0101887 8.48644e-07 4.43321e-08 2.718 ||| 0-1 ||| 333 1.17835e+06 +en ||| get it out in ||| 0.5 0.605812 8.48644e-07 1.37521e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| get lost in ||| 0.0625 0.605812 8.48644e-07 1.14876e-08 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| get mixed up in ||| 0.333333 0.605812 8.48644e-07 6.47235e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| get not only on ||| 1 0.22993 8.48644e-07 1.37982e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| get nowhere ||| 0.0625 0.121144 8.48644e-07 4.79171e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| get off the ||| 0.0294118 0.0262428 8.48644e-07 4.4931e-09 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| get off ||| 0.0142857 0.0262428 8.48644e-07 7.31873e-08 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| get on to ||| 0.166667 0.22993 8.48644e-07 3.22633e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| get on with it ||| 0.025641 0.22993 8.48644e-07 4.12884e-09 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| get on with ||| 0.015748 0.22993 1.69729e-06 2.32176e-07 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| get on ||| 0.0160428 0.22993 2.54593e-06 3.63088e-05 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| get rid of them in ||| 1 0.605812 8.48644e-07 6.88917e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| get right into ||| 0.25 0.525896 8.48644e-07 6.24162e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| get their act together in ||| 0.125 0.605812 8.48644e-07 2.3879e-14 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| get them back onto ||| 1 0.233333 8.48644e-07 1.57837e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| get thinner in ||| 0.5 0.605812 8.48644e-07 1.41323e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| get through , as the case may ||| 1 0.066968 8.48644e-07 2.12436e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| get through , as the case ||| 1 0.066968 8.48644e-07 2.83551e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| get through , as the ||| 1 0.066968 8.48644e-07 2.65025e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| get through , as ||| 0.5 0.066968 8.48644e-07 4.31695e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| get through ||| 0.00694444 0.0366102 8.48644e-07 4.11143e-07 2.718 ||| 0-1 ||| 144 1.17835e+06 +en ||| get tied up in ||| 0.5 0.605812 8.48644e-07 7.9183e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| get to grips with ||| 0.00671141 0.0535436 8.48644e-07 7.83576e-12 2.718 ||| 0-3 ||| 149 1.17835e+06 +en ||| get to ||| 0.00205339 0.0247351 8.48644e-07 1.22889e-05 2.718 ||| 0-1 ||| 487 1.17835e+06 +en ||| get under way ||| 0.0222222 0.205566 8.48644e-07 5.32906e-09 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| get under ||| 0.0512821 0.205566 1.69729e-06 2.47219e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| get used to ||| 0.0131579 0.0247351 8.48644e-07 5.27196e-09 2.718 ||| 0-2 ||| 76 1.17835e+06 +en ||| gets in ||| 0.25 0.605812 8.48644e-07 1.38073e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| gets to where it is ||| 0.333333 0.247783 8.48644e-07 1.26113e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| gets to where it ||| 0.5 0.247783 8.48644e-07 4.02388e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| gets to where ||| 0.5 0.247783 8.48644e-07 2.26274e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| gets up on ||| 1 0.22993 8.48644e-07 8.46877e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| getting at ||| 0.0526316 0.321886 8.48644e-07 4.64823e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| getting away with ||| 0.2 0.0535436 8.48644e-07 4.3095e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| getting caught in ||| 0.333333 0.605812 8.48644e-07 1.48635e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| getting deeply involved in it ||| 1 0.605812 8.48644e-07 7.72135e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| getting deeply involved in ||| 1 0.605812 8.48644e-07 4.34193e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| getting everyone involved in the information society ||| 1 0.605812 8.48644e-07 7.34631e-22 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| getting everyone involved in the information ||| 1 0.605812 8.48644e-07 1.26879e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| getting everyone involved in the ||| 1 0.605812 8.48644e-07 7.66642e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| getting everyone involved in ||| 1 0.605812 8.48644e-07 1.24877e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| getting in ||| 0.0714286 0.605812 8.48644e-07 5.3659e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| getting into ||| 0.0384615 0.525896 2.54593e-06 2.57235e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| getting major support take ||| 1 0.0074151 8.48644e-07 1.12527e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| getting off the coach in ||| 1 0.605812 8.48644e-07 5.76522e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| getting on ||| 0.030303 0.22993 8.48644e-07 9.65022e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| getting started . when ||| 1 0.142731 8.48644e-07 9.42922e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| getting this in ||| 1 0.605812 8.48644e-07 3.46712e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| getting under way ||| 0.0555556 0.205566 8.48644e-07 1.41637e-09 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| getting under ||| 0.0625 0.205566 8.48644e-07 6.57065e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| getting underway - to take stock ||| 1 0.268204 8.48644e-07 2.50866e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| getting underway - to take ||| 1 0.268204 8.48644e-07 9.43106e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| getting underway - to ||| 1 0.268204 8.48644e-07 5.8578e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| getting underway - ||| 1 0.268204 8.48644e-07 6.5923e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| getting underway ||| 0.25 0.268204 8.48644e-07 1.74765e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| giant in ||| 0.166667 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| gift by way ||| 1 0.0468744 8.48644e-07 9.16895e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| gift by ||| 1 0.0468744 8.48644e-07 4.25355e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| gifts on a ||| 0.5 0.22993 8.48644e-07 5.15366e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| gifts on ||| 0.5 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| gist of ||| 0.0294118 0.0116562 8.48644e-07 1.50007e-08 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| give a huge boost ||| 0.5 0.0015231 8.48644e-07 4.50938e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| give a huge ||| 1 0.0015231 8.48644e-07 2.60658e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| give a ||| 0.000864304 0.0015231 8.48644e-07 4.99344e-07 2.718 ||| 0-1 ||| 1157 1.17835e+06 +en ||| give at least ||| 0.166667 0.321886 8.48644e-07 5.94879e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| give at ||| 0.181818 0.321886 1.69729e-06 2.42412e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| give evidence on ||| 1 0.22993 8.48644e-07 2.77304e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| give for ||| 0.0909091 0.0286209 8.48644e-07 6.97215e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| give in ||| 0.00680272 0.605812 8.48644e-07 0.000279839 2.718 ||| 0-1 ||| 147 1.17835e+06 +en ||| give it back to them in ||| 0.333333 0.605812 8.48644e-07 7.97805e-13 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| give it ||| 0.00231481 0.0080472 8.48644e-07 1.67129e-06 2.718 ||| 0-1 ||| 432 1.17835e+06 +en ||| give itself scope in ||| 1 0.605812 8.48644e-07 1.89357e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| give just ||| 0.02 0.001725 8.48644e-07 3.17544e-08 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| give me an answer that talks ||| 0.25 0.0017499 8.48644e-07 3.33903e-21 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| give me an answer that ||| 0.25 0.0017499 8.48644e-07 1.26959e-16 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| give rise to the hope ||| 1 0.0247351 8.48644e-07 2.30244e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| give rise to the ||| 0.04 0.0247351 8.48644e-07 1.31343e-10 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| give rise to ||| 0.00448431 0.0247351 1.69729e-06 2.13942e-09 2.718 ||| 0-2 ||| 446 1.17835e+06 +en ||| give serious thought to ||| 0.0666667 0.0247351 8.48644e-07 1.63065e-13 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| give us the ||| 0.00515464 0.0011669 8.48644e-07 5.00352e-09 2.718 ||| 0-2 ||| 194 1.17835e+06 +en ||| give you both ||| 0.5 0.0015168 8.48644e-07 7.0633e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| give ||| 6.74718e-05 3.92e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 14821 1.17835e+06 +en ||| given a place in ||| 0.25 0.605812 8.48644e-07 2.11419e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| given a ||| 0.00632111 0.0546585 4.24322e-06 5.14578e-05 2.718 ||| 0-0 ||| 791 1.17835e+06 +en ||| given at ||| 0.0377358 0.321886 1.69729e-06 2.74534e-05 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| given attention ||| 0.0416667 0.0546585 8.48644e-07 3.03343e-07 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| given by ||| 0.00162866 0.0468744 8.48644e-07 5.83842e-06 2.718 ||| 0-1 ||| 614 1.17835e+06 +en ||| given concerning ||| 0.333333 0.0888235 8.48644e-07 8.31727e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| given consideration ||| 0.0454545 0.0546585 8.48644e-07 1.25377e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| given due attention in ||| 1 0.605812 8.48644e-07 2.2889e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| given fact ||| 0.5 0.0546585 8.48644e-07 3.40062e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| given for ||| 0.0222222 0.0286209 1.69729e-06 7.89602e-06 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| given in error ||| 1 0.605812 8.48644e-07 2.97905e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| given in practice in ||| 0.5 0.605812 8.48644e-07 7.14983e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| given in the past ||| 0.25 0.605812 8.48644e-07 2.49235e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| given in the ||| 0.00862069 0.605812 8.48644e-07 1.94563e-05 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| given in ||| 0.0599369 0.605812 1.61242e-05 0.00031692 2.718 ||| 0-1 ||| 317 1.17835e+06 +en ||| given me which , in ||| 1 0.605812 8.48644e-07 1.93302e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| given more ||| 0.0103093 0.0546585 8.48644e-07 2.65115e-06 2.718 ||| 0-0 ||| 97 1.17835e+06 +en ||| given much ||| 0.05 0.0546585 8.48644e-07 1.1652e-06 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| given on the numberplate in ||| 1 0.605812 8.48644e-07 9.11275e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| given on ||| 0.113636 0.22993 4.24322e-06 5.69961e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| given past ||| 0.5 0.0546585 8.48644e-07 1.48711e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| given rise to ||| 0.00746269 0.0546585 1.69729e-06 1.29563e-08 2.718 ||| 0-0 ||| 268 1.17835e+06 +en ||| given rise ||| 0.0136519 0.0546585 3.39458e-06 1.45809e-07 2.718 ||| 0-0 ||| 293 1.17835e+06 +en ||| given scope ||| 0.25 0.0546585 8.48644e-07 1.15742e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| given some ||| 0.0222222 0.0546585 8.48644e-07 1.26457e-06 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| given that it is in the ||| 1 0.605812 8.48644e-07 1.82411e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| given that it is in ||| 1 0.605812 8.48644e-07 2.97127e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| given that this is ||| 0.0181818 0.0546585 8.48644e-07 3.9546e-09 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| given that this ||| 0.00632911 0.0546585 8.48644e-07 1.26179e-07 2.718 ||| 0-0 ||| 158 1.17835e+06 +en ||| given that ||| 0.00191728 0.0546585 5.94051e-06 1.95282e-05 2.718 ||| 0-0 ||| 3651 1.17835e+06 +en ||| given the ||| 0.00118812 0.0546585 5.09187e-06 7.12697e-05 2.718 ||| 0-0 ||| 5050 1.17835e+06 +en ||| given to ensure ||| 0.2 0.0546585 8.48644e-07 4.62549e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| given to it ||| 0.0333333 0.0546585 8.48644e-07 1.83443e-06 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| given to the fact ||| 0.0909091 0.0546585 8.48644e-07 1.8551e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| given to the ||| 0.00271003 0.0546585 1.69729e-06 6.3329e-06 2.718 ||| 0-0 ||| 738 1.17835e+06 +en ||| given to them by ||| 0.166667 0.0468744 8.48644e-07 1.39161e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| given to them within ||| 1 0.369196 8.48644e-07 1.81358e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| given to ||| 0.0240154 0.0546585 4.24322e-05 0.000103155 2.718 ||| 0-0 ||| 2082 1.17835e+06 +en ||| given today ||| 0.0357143 0.0398284 8.48644e-07 8.27952e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| given us ||| 0.0108696 0.0546585 1.69729e-06 3.34595e-06 2.718 ||| 0-0 ||| 184 1.17835e+06 +en ||| given way to ||| 0.0512821 0.0546585 1.69729e-06 2.22362e-07 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| given way ||| 0.0392157 0.0546585 1.69729e-06 2.50244e-06 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| given what amounts to a facelift ||| 0.333333 0.0546585 8.48644e-07 1.55258e-19 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| given what amounts to a ||| 0.333333 0.0546585 8.48644e-07 3.88144e-13 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| given what amounts to ||| 0.333333 0.0546585 8.48644e-07 8.75662e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| given what amounts ||| 0.333333 0.0546585 8.48644e-07 9.8546e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| given what ||| 0.0151515 0.0546585 8.48644e-07 1.62886e-06 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| given within ||| 0.333333 0.369196 8.48644e-07 7.6088e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| given you ||| 0.0208333 0.0546585 8.48644e-07 3.7482e-06 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| given ||| 0.0183077 0.0546585 0.000352187 0.0011609 2.718 ||| 0-0 ||| 22668 1.17835e+06 +en ||| gives cause for ||| 0.0408163 0.0286209 1.69729e-06 1.64656e-10 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| gives cause to believe ||| 0.333333 0.0247351 8.48644e-07 1.25227e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| gives cause to ||| 0.125 0.0247351 8.48644e-07 4.0227e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| gives right of way in ||| 1 0.605812 8.48644e-07 2.76397e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| gives us good reason to ||| 0.166667 0.0247351 8.48644e-07 7.78299e-16 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| giving in ||| 0.0222222 0.605812 8.48644e-07 7.27767e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| giving into ||| 0.25 0.525896 8.48644e-07 3.48884e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| giving it at ||| 0.5 0.321886 8.48644e-07 1.12111e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| giving it ||| 0.00740741 0.0080472 8.48644e-07 4.34645e-07 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| giving my country its ||| 1 0.002535 8.48644e-07 1.14345e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| giving my country ||| 1 0.002535 8.48644e-07 8.02591e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| giving my ||| 0.0384615 0.002535 8.48644e-07 2.23004e-08 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| giving ourselves over to ||| 0.333333 0.0247351 8.48644e-07 6.78501e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| giving out in ||| 1 0.605812 8.48644e-07 2.78764e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| giving repeated consideration to ||| 1 0.0247351 8.48644e-07 9.47283e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| giving specific ||| 0.333333 0.001359 8.48644e-07 1.13325e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| giving support in ||| 1 0.605812 8.48644e-07 2.48824e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| giving the ||| 0.00146413 0.0011669 8.48644e-07 4.51477e-07 2.718 ||| 0-1 ||| 683 1.17835e+06 +en ||| giving ||| 0.00149573 0.001359 5.94051e-06 7.5e-06 2.718 ||| 0-0 ||| 4680 1.17835e+06 +en ||| glimmer of hope , ||| 0.166667 0.0005295 8.48644e-07 4.94665e-14 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| glimmer of hope ||| 0.0217391 0.0005295 8.48644e-07 4.14797e-13 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| globally in ||| 0.0588235 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| globally ||| 0.00417827 0.0620843 2.54593e-06 5.72e-05 2.718 ||| 0-0 ||| 718 1.17835e+06 +en ||| go ahead in the light ||| 1 0.605812 8.48644e-07 3.14073e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| go ahead in the ||| 1 0.605812 8.48644e-07 1.80709e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| go ahead in ||| 0.25 0.605812 1.69729e-06 2.94354e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| go ahead with ||| 0.00806452 0.0535436 8.48644e-07 7.43176e-10 2.718 ||| 0-2 ||| 124 1.17835e+06 +en ||| go along with it ||| 0.0588235 0.0535436 8.48644e-07 2.11578e-11 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| go along with ||| 0.0207469 0.0535436 4.24322e-06 1.18976e-09 2.718 ||| 0-2 ||| 241 1.17835e+06 +en ||| go along ||| 0.00858369 0.155535 1.69729e-06 4.65208e-07 2.718 ||| 0-1 ||| 233 1.17835e+06 +en ||| go and ||| 0.00529101 0.0010182 8.48644e-07 5.39595e-07 2.718 ||| 0-1 ||| 189 1.17835e+06 +en ||| go at ||| 0.0869565 0.321886 1.69729e-06 2.33932e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| go back to ||| 0.00625 0.0247351 1.69729e-06 1.1056e-08 2.718 ||| 0-2 ||| 320 1.17835e+06 +en ||| go before it can complete ||| 1 0.0080472 8.48644e-07 8.59008e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| go before it can ||| 0.333333 0.0080472 8.48644e-07 1.19973e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| go before it ||| 0.0555556 0.0080472 8.48644e-07 4.03366e-10 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| go by the ||| 0.0833333 0.0468744 8.48644e-07 3.05421e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| go by ||| 0.0133333 0.0468744 8.48644e-07 4.97495e-06 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| go down in ||| 0.0294118 0.605812 8.48644e-07 1.88522e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| go down too well in my ||| 0.125 0.605812 8.48644e-07 2.61632e-16 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| go down too well in ||| 0.125 0.605812 8.48644e-07 4.0683e-13 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| go far back into ||| 0.5 0.525896 8.48644e-07 5.94455e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| go for ||| 0.00606061 0.0286209 8.48644e-07 6.72824e-06 2.718 ||| 0-1 ||| 165 1.17835e+06 +en ||| go from one town to another in ||| 1 0.605812 8.48644e-07 4.89294e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| go hand in hand ||| 0.0153257 0.605812 3.39458e-06 4.24765e-11 2.718 ||| 0-2 ||| 261 1.17835e+06 +en ||| go hand in ||| 0.0127551 0.605812 4.24322e-06 1.07102e-07 2.718 ||| 0-2 ||| 392 1.17835e+06 +en ||| go in , ||| 0.111111 0.605812 8.48644e-07 3.22047e-05 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| go in and ||| 0.25 0.605812 8.48644e-07 3.38261e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| go in ||| 0.0594796 0.605812 1.35783e-05 0.00027005 2.718 ||| 0-1 ||| 269 1.17835e+06 +en ||| go into commercial ||| 0.333333 0.525896 8.48644e-07 2.47267e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| go into it ||| 0.133333 0.525896 1.69729e-06 2.30219e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| go into too much ||| 0.111111 0.525896 8.48644e-07 1.76846e-11 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| go into too ||| 0.125 0.525896 8.48644e-07 1.76194e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| go into ||| 0.0152439 0.525896 8.48644e-06 1.29459e-05 2.718 ||| 0-1 ||| 656 1.17835e+06 +en ||| go off on ||| 0.333333 0.22993 8.48644e-07 1.97666e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| go on a ||| 0.1 0.22993 8.48644e-07 2.15276e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| go on in ||| 0.105263 0.417871 1.69729e-06 2.24272e-05 2.718 ||| 0-1 0-2 ||| 19 1.17835e+06 +en ||| go on to say ||| 0.142857 0.22993 8.48644e-07 4.1248e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| go on to ||| 0.0235294 0.22993 1.69729e-06 4.31555e-06 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| go on ||| 0.0175 0.22993 1.1881e-05 4.85667e-05 2.718 ||| 0-1 ||| 800 1.17835e+06 +en ||| go out of their ||| 0.5 0.0116562 8.48644e-07 3.54072e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| go out of ||| 0.0434783 0.0116562 8.48644e-07 3.05471e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| go out ||| 0.00568182 0.0120599 8.48644e-07 3.21932e-07 2.718 ||| 0-1 ||| 176 1.17835e+06 +en ||| go over to that ||| 0.25 0.157937 8.48644e-07 3.50278e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| go over to ||| 0.0833333 0.157937 8.48644e-07 2.08231e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| go over ||| 0.0322581 0.157937 2.54593e-06 2.34341e-06 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| go round ||| 0.047619 0.0142196 8.48644e-07 1.71346e-08 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| go through on ||| 0.25 0.22993 8.48644e-07 2.23553e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| go through ||| 0.0078534 0.0366102 2.54593e-06 5.49946e-07 2.718 ||| 0-1 ||| 382 1.17835e+06 +en ||| go to a ||| 0.015873 0.0247351 8.48644e-07 7.28616e-07 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| go to ||| 0.00387898 0.0247351 4.24322e-06 1.64377e-05 2.718 ||| 0-1 ||| 1289 1.17835e+06 +en ||| go towards ||| 0.0243902 0.0616136 8.48644e-07 5.82578e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| go up in ||| 0.285714 0.605812 1.69729e-06 9.21004e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| go up ||| 0.0487805 0.0147069 1.69729e-06 4.03512e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| goal in ||| 0.0133333 0.605812 8.48644e-07 1.54697e-05 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| goals regarding one ||| 0.166667 0.140669 8.48644e-07 9.94143e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| goals regarding ||| 0.0909091 0.140669 8.48644e-07 2.38518e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| goes about preaching ||| 1 0.0401564 8.48644e-07 5.55737e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| goes about ||| 0.111111 0.0401564 8.48644e-07 3.96955e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| goes against the ||| 0.00628931 0.153982 8.48644e-07 4.93067e-08 2.718 ||| 0-1 ||| 159 1.17835e+06 +en ||| goes against ||| 0.00263158 0.153982 8.48644e-07 8.03148e-07 2.718 ||| 0-1 ||| 380 1.17835e+06 +en ||| goes by at ||| 0.5 0.321886 8.48644e-07 2.9087e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| goes for the production of gas , ||| 1 0.0286209 8.48644e-07 7.41405e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| goes for the production of gas ||| 1 0.0286209 8.48644e-07 6.21699e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| goes for the production of ||| 1 0.0286209 8.48644e-07 4.44071e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| goes for the production ||| 1 0.0286209 8.48644e-07 8.16847e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| goes for the ||| 0.00862069 0.0286209 8.48644e-07 9.7826e-08 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| goes for ||| 0.00406504 0.0286209 8.48644e-07 1.59347e-06 2.718 ||| 0-1 ||| 246 1.17835e+06 +en ||| goes in ||| 0.050505 0.605812 4.24322e-06 6.39567e-05 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| goes on in a ||| 0.5 0.417871 8.48644e-07 2.35436e-07 2.718 ||| 0-1 0-2 ||| 2 1.17835e+06 +en ||| goes on in ||| 0.0192308 0.417871 8.48644e-07 5.3115e-06 2.718 ||| 0-1 0-2 ||| 52 1.17835e+06 +en ||| goes on to explain that ||| 1 0.22993 8.48644e-07 4.5217e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| goes on to explain ||| 1 0.22993 8.48644e-07 2.68803e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| goes on to say that ||| 0.0526316 0.22993 8.48644e-07 1.64328e-11 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| goes on to say ||| 0.0434783 0.22993 8.48644e-07 9.7689e-10 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| goes on to ||| 0.0588235 0.22993 2.54593e-06 1.02207e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| goes on up in ||| 0.5 0.605812 8.48644e-07 1.45947e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| goes on ||| 0.0291777 0.22993 9.33509e-06 1.15022e-05 2.718 ||| 0-1 ||| 377 1.17835e+06 +en ||| goes out based on a ||| 0.333333 0.22993 8.48644e-07 4.58152e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| goes out based on ||| 0.333333 0.22993 8.48644e-07 1.0336e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| goes to show just ||| 0.2 0.0247351 8.48644e-07 6.5769e-13 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| goes to show ||| 0.0138889 0.0247351 8.48644e-07 5.21273e-10 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| goes to the four ||| 0.142857 0.0247351 8.48644e-07 5.42526e-12 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| goes to the ||| 0.00840336 0.0247351 8.48644e-07 2.38998e-07 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| goes to ||| 0.0147493 0.0247351 4.24322e-06 3.893e-06 2.718 ||| 0-1 ||| 339 1.17835e+06 +en ||| goes towards ||| 0.0909091 0.0616136 8.48644e-07 1.37974e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| goes without saying in ||| 0.5 0.605812 8.48644e-07 2.50745e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| going " cap in hand ||| 0.5 0.605812 8.48644e-07 1.59592e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| going " cap in ||| 0.5 0.605812 8.48644e-07 4.02401e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| going about ||| 0.0444444 0.0401564 1.69729e-06 2.45281e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| going around for several ||| 0.166667 0.159384 8.48644e-07 4.97211e-13 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| going around for ||| 0.166667 0.159384 8.48644e-07 7.591e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| going around ||| 0.2 0.159384 2.54593e-06 9.87679e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| going back on ||| 0.0294118 0.22993 8.48644e-07 4.78036e-08 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| going down in ||| 0.2 0.605812 8.48644e-07 2.75884e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| going down ||| 0.0126582 0.0183476 8.48644e-07 1.88704e-07 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| going from bad ||| 0.2 0.0308834 8.48644e-07 1.48818e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| going from ||| 0.0238095 0.0308834 8.48644e-07 3.2564e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| going in such ||| 1 0.605812 8.48644e-07 8.17613e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| going in ||| 0.08 0.605812 6.78915e-06 0.000395192 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| going into detail , ||| 0.0588235 0.525896 8.48644e-07 1.1545e-10 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| going into detail ||| 0.0322581 0.525896 8.48644e-07 9.68095e-10 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| going into the ||| 0.00943396 0.525896 8.48644e-07 1.16307e-06 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| going into ||| 0.0387324 0.525896 9.33509e-06 1.89451e-05 2.718 ||| 0-1 ||| 284 1.17835e+06 +en ||| going off ||| 0.0384615 0.0262428 8.48644e-07 1.43261e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| going on , ||| 0.0126582 0.22993 8.48644e-07 8.47577e-06 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| going on at ||| 0.047619 0.275908 8.48644e-07 2.84305e-06 2.718 ||| 0-1 0-2 ||| 21 1.17835e+06 +en ||| going on in ||| 0.0871795 0.417871 1.4427e-05 3.28201e-05 2.718 ||| 0-1 0-2 ||| 195 1.17835e+06 +en ||| going on since ||| 0.111111 0.118727 8.48644e-07 1.23311e-08 2.718 ||| 0-1 0-2 ||| 9 1.17835e+06 +en ||| going on to the ||| 0.2 0.22993 8.48644e-07 3.87714e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| going on to ||| 0.0357143 0.22993 8.48644e-07 6.3154e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| going on with ||| 0.0454545 0.141737 8.48644e-07 8.28631e-07 2.718 ||| 0-1 0-2 ||| 22 1.17835e+06 +en ||| going on within ||| 0.1 0.369196 8.48644e-07 6.34842e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| going on ||| 0.0264966 0.22993 2.29134e-05 7.10728e-05 2.718 ||| 0-1 ||| 1019 1.17835e+06 +en ||| going out on to ||| 1 0.22993 8.48644e-07 2.41905e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| going out on ||| 0.5 0.22993 8.48644e-07 2.72237e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| going over ||| 0.0540541 0.157937 1.69729e-06 3.42936e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| going through a ||| 0.00952381 0.0366102 8.48644e-07 3.56732e-08 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| going through at ||| 0.125 0.321886 8.48644e-07 1.57578e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| going through in ||| 0.166667 0.605812 8.48644e-07 1.81907e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| going through it ||| 1 0.0366102 8.48644e-07 1.43118e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| going through ||| 0.0203046 0.0366102 6.78915e-06 8.04794e-07 2.718 ||| 0-1 ||| 394 1.17835e+06 +en ||| going to be able to regard ||| 1 0.0247351 8.48644e-07 2.20217e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| going to be able to ||| 0.047619 0.0247351 1.69729e-06 3.2342e-11 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| going to be able ||| 0.0555556 0.0247351 1.69729e-06 3.63973e-10 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| going to be in ||| 0.1 0.605812 8.48644e-07 6.36405e-07 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| going to be ||| 0.00616333 0.0247351 3.39458e-06 4.35948e-07 2.718 ||| 0-1 ||| 649 1.17835e+06 +en ||| going to carry ||| 0.2 0.0247351 8.48644e-07 4.41411e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| going to do in ||| 0.0833333 0.605812 8.48644e-07 1.20634e-07 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| going to happen in ||| 0.111111 0.605812 8.48644e-07 3.81712e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| going to have in ||| 0.5 0.605812 8.48644e-07 4.19981e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| going to have to make ||| 1 0.0247351 8.48644e-07 4.44251e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| going to have to ||| 0.00813008 0.0247351 8.48644e-07 2.5564e-08 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| going to have ||| 0.010582 0.0247351 1.69729e-06 2.87694e-07 2.718 ||| 0-1 ||| 189 1.17835e+06 +en ||| going to look like in ||| 1 0.605812 8.48644e-07 1.81787e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| going to make ||| 0.0185185 0.0247351 8.48644e-07 4.18029e-08 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| going to the ||| 0.00909091 0.0247351 8.48644e-07 1.47678e-06 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| going to ||| 0.00837629 0.0247351 2.20648e-05 2.40551e-05 2.718 ||| 0-1 ||| 3104 1.17835e+06 +en ||| going too far in ||| 0.142857 0.605812 8.48644e-07 3.67195e-10 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| going towards ||| 0.0714286 0.0616136 8.48644e-07 8.52548e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| going ||| 0.00343782 0.0010158 1.4427e-05 1.29e-05 2.718 ||| 0-0 ||| 4945 1.17835e+06 +en ||| gone along ||| 0.0588235 0.155535 8.48644e-07 4.97983e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| gone by ||| 0.0147059 0.0468744 8.48644e-07 5.32544e-07 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| gone down ||| 0.0149254 0.0183476 8.48644e-07 1.38033e-08 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| gone in ||| 0.04 0.605812 8.48644e-07 2.89075e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| gone into ||| 0.0204082 0.525896 1.69729e-06 1.38579e-06 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| gone on in ||| 0.0909091 0.605812 8.48644e-07 1.9342e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| gone on to become ||| 1 0.22993 8.48644e-07 1.31982e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| gone on to ||| 0.0625 0.22993 8.48644e-07 4.61959e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| gone on ||| 0.0348837 0.22993 2.54593e-06 5.19883e-06 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| gone out ||| 0.0294118 0.0120599 8.48644e-07 3.44613e-08 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| gone ||| 0.000622278 0.0003618 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1607 1.17835e+06 +en ||| good account ||| 0.0689655 0.233636 1.69729e-06 1.71434e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| good and is something on ||| 0.5 0.22993 8.48644e-07 9.35846e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| good as one might wish ||| 1 0.066968 8.48644e-07 4.39999e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| good as one might ||| 1 0.066968 8.48644e-07 1.49304e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| good as one ||| 1 0.066968 8.48644e-07 3.88813e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| good as ||| 0.00606061 0.066968 8.48644e-07 9.32852e-06 2.718 ||| 0-1 ||| 165 1.17835e+06 +en ||| good at ||| 0.030303 0.321886 2.54593e-06 2.0745e-05 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| good component in ||| 1 0.605812 8.48644e-07 3.61614e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| good effect on ||| 0.142857 0.22993 8.48644e-07 1.43678e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| good enough to ||| 0.0181818 0.0247351 8.48644e-07 2.40811e-09 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| good example of ||| 0.00485437 0.0116562 1.69729e-06 2.0587e-09 2.718 ||| 0-2 ||| 412 1.17835e+06 +en ||| good for ||| 0.00116959 0.0286209 8.48644e-07 5.9666e-06 2.718 ||| 0-1 ||| 855 1.17835e+06 +en ||| good idea if ||| 0.0212766 0.0178573 8.48644e-07 1.34815e-10 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| good in ||| 0.00714286 0.605812 8.48644e-07 0.00023948 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| good job on ||| 0.1 0.22993 8.48644e-07 3.36368e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| good legislation on ||| 1 0.22993 8.48644e-07 3.45843e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| good luck , whatever ||| 0.25 0.0182897 8.48644e-07 4.65523e-14 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| good prospects in ||| 0.25 0.605812 8.48644e-07 3.01744e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| good reason to ||| 0.00645161 0.0247351 8.48644e-07 3.40955e-09 2.718 ||| 0-2 ||| 155 1.17835e+06 +en ||| good start in ||| 0.125 0.605812 8.48644e-07 3.32637e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| good to be ||| 0.0344828 0.0247351 8.48644e-07 2.64177e-07 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| good to ||| 0.00315457 0.0247351 8.48644e-07 1.4577e-05 2.718 ||| 0-1 ||| 317 1.17835e+06 +en ||| goods and services . in ||| 1 0.605812 1.69729e-06 7.14807e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| goods and services under ||| 1 0.205566 8.48644e-07 2.88972e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| goods at the end ||| 1 0.321886 8.48644e-07 4.92586e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| goods at the ||| 0.125 0.321886 8.48644e-07 1.13212e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| goods at ||| 0.0416667 0.321886 8.48644e-07 1.84409e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| goods in ||| 0.0183486 0.605812 1.69729e-06 2.12881e-05 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| goods on ||| 0.0227273 0.22993 8.48644e-07 3.82853e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| gossip in ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| got as far as ||| 0.111111 0.066968 8.48644e-07 1.37093e-11 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| got at ||| 0.5 0.321886 8.48644e-07 4.37622e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| got hold of ||| 0.0769231 0.0116562 8.48644e-07 2.59887e-10 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| got hopelessly embroiled in ||| 0.5 0.605812 8.48644e-07 2.47542e-17 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| got into in ||| 1 0.565854 8.48644e-07 1.11835e-06 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| got into ||| 0.0714286 0.525896 2.54593e-06 2.42182e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| got involved in ||| 0.142857 0.605812 8.48644e-07 1.74694e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| got itself into ||| 0.166667 0.525896 8.48644e-07 1.64369e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| got off scot-free when they ||| 0.5 0.142731 8.48644e-07 6.05644e-19 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| got off scot-free when ||| 0.5 0.142731 8.48644e-07 1.85553e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| got off the ||| 0.0909091 0.0262428 8.48644e-07 1.1243e-09 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| got off ||| 0.0178571 0.0262428 8.48644e-07 1.83136e-08 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| got on to ||| 0.25 0.22993 8.48644e-07 8.07321e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| got on ||| 0.142857 0.22993 1.69729e-06 9.08549e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| got to work ||| 0.125 0.0247351 8.48644e-07 1.94651e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| got to ||| 0.00943396 0.0247351 8.48644e-07 3.07505e-06 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| got under way again in ||| 1 0.605812 8.48644e-07 2.25958e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| got under ||| 0.0952381 0.205566 1.69729e-06 6.18613e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| got with ||| 0.285714 0.0535436 1.69729e-06 1.27548e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| governance in ||| 0.00531915 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 188 1.17835e+06 +en ||| governance ||| 0.000344353 0.0017023 1.69729e-06 4.8e-06 2.718 ||| 0-0 ||| 5808 1.17835e+06 +en ||| governed by ||| 0.00702988 0.0468744 3.39458e-06 1.87156e-07 2.718 ||| 0-1 ||| 569 1.17835e+06 +en ||| governing officials in ||| 1 0.605812 8.48644e-07 1.2542e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| governing the production , placing on ||| 0.5 0.22993 8.48644e-07 2.34413e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| governing ||| 0.00418141 0.0153238 1.10324e-05 2.11e-05 2.718 ||| 0-0 ||| 3109 1.17835e+06 +en ||| government and by ||| 0.333333 0.0468744 8.48644e-07 8.51407e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| government directly in ||| 1 0.605812 8.48644e-07 1.39468e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| government in ||| 0.00408163 0.605812 1.69729e-06 3.68963e-05 2.718 ||| 0-1 ||| 490 1.17835e+06 +en ||| governments in ||| 0.0111111 0.605812 2.54593e-06 1.57929e-05 2.718 ||| 0-1 ||| 270 1.17835e+06 +en ||| governments of ||| 0.00097371 0.0116562 8.48644e-07 4.66385e-07 2.718 ||| 0-1 ||| 1027 1.17835e+06 +en ||| gradually coming to the view ||| 0.166667 0.0247351 8.48644e-07 4.90642e-15 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| gradually coming to the ||| 0.142857 0.0247351 8.48644e-07 5.43166e-12 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| gradually coming to ||| 0.125 0.0247351 8.48644e-07 8.84754e-11 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| gradually in ||| 0.0769231 0.605812 8.48644e-07 7.48085e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| granted as a way ||| 1 0.066968 8.48644e-07 1.39216e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| granted as a ||| 0.5 0.066968 8.48644e-07 6.45836e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| granted as ||| 0.0769231 0.066968 8.48644e-07 1.45702e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| granted at ||| 0.0555556 0.321886 8.48644e-07 3.24016e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| granted in today ||| 1 0.605812 8.48644e-07 1.68805e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| granted in ||| 0.048 0.605812 5.09187e-06 3.74043e-05 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| granted until ||| 0.166667 0.0092136 8.48644e-07 4.7385e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| granted ||| 0.000320513 0.000267 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 3120 1.17835e+06 +en ||| granting of aids ||| 0.125 0.0116562 8.48644e-07 1.01241e-12 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| granting of ||| 0.00225734 0.0116562 8.48644e-07 3.49107e-07 2.718 ||| 0-1 ||| 443 1.17835e+06 +en ||| graphically in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| grapple with ||| 0.0322581 0.0535436 8.48644e-07 4.66356e-09 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| grasp for ||| 1 0.0286209 8.48644e-07 9.08911e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| grateful to ||| 0.00137363 0.0247351 8.48644e-07 6.38058e-07 2.718 ||| 0-1 ||| 728 1.17835e+06 +en ||| gratifying that ||| 0.00909091 0.0017499 8.48644e-07 2.29944e-09 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| great confidence in ||| 0.0454545 0.605812 8.48644e-07 5.60773e-09 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| great deal . ||| 0.0147059 6.3e-05 8.48644e-07 1.35163e-11 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| great deal about ||| 0.037037 0.0401564 8.48644e-07 4.7826e-10 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| great deal at ||| 0.25 0.321886 8.48644e-07 6.67505e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| great deal both in ||| 1 0.605812 8.48644e-07 1.27644e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| great deal in terms of ||| 0.5 0.605812 8.48644e-07 4.59795e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| great deal in terms ||| 0.5 0.605812 8.48644e-07 8.45771e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| great deal in ||| 0.0555556 0.605812 2.54593e-06 7.70564e-08 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| great deal of ||| 0.000715308 0.0116562 8.48644e-07 2.27558e-09 2.718 ||| 0-2 ||| 1398 1.17835e+06 +en ||| great deal on ||| 0.0526316 0.22993 8.48644e-07 1.38581e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| great deal to do in ||| 0.5 0.605812 8.48644e-07 2.35218e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| great deal to teach us about ||| 1 0.0401564 8.48644e-07 3.55209e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| great deal to ||| 0.00819672 0.0247351 8.48644e-07 4.69037e-09 2.718 ||| 0-2 ||| 122 1.17835e+06 +en ||| great extent as ||| 1 0.066968 8.48644e-07 1.35871e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| great figure at ||| 1 0.321886 8.48644e-07 1.1995e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| great healer ||| 0.5 1 8.48644e-07 2.751e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| great importance to ||| 0.00225225 0.0247351 8.48644e-07 1.43495e-09 2.718 ||| 0-2 ||| 444 1.17835e+06 +en ||| great in ||| 0.030303 0.605812 8.48644e-07 0.00018148 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| great length to ||| 0.333333 0.0247351 8.48644e-07 4.25293e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| great pleasure , on behalf of ||| 0.166667 0.22993 8.48644e-07 1.52984e-15 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| great pleasure , on behalf ||| 0.166667 0.22993 8.48644e-07 2.81407e-14 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| great pleasure , on ||| 0.333333 0.22993 1.69729e-06 8.83538e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| greater account would be taken ||| 0.5 0.233636 8.48644e-07 4.22061e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| greater account would be ||| 0.5 0.233636 8.48644e-07 4.6304e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| greater account would ||| 0.5 0.233636 8.48644e-07 2.555e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| greater account ||| 0.00900901 0.233636 8.48644e-07 4.35361e-07 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| greater attention in ||| 0.0714286 0.605812 8.48644e-07 1.58914e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| greater detail in ||| 0.0769231 0.605812 8.48644e-07 3.10773e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| greater importance in ||| 0.133333 0.605812 1.69729e-06 7.90007e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| greater in ||| 0.0243902 0.605812 8.48644e-07 6.08166e-05 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| greater investment in ||| 0.0192308 0.605812 8.48644e-07 1.49001e-09 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| greater numbers in ||| 0.5 0.605812 8.48644e-07 2.97393e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| greater role with ||| 1 0.0535436 8.48644e-07 3.40876e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| greatest importance to ||| 0.0196078 0.0247351 8.48644e-07 6.71833e-11 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| greatest respect for ||| 0.030303 0.0286209 8.48644e-07 9.15796e-11 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| greatly to have ||| 1 0.0247351 8.48644e-07 8.84126e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| greatly to ||| 0.0119048 0.0247351 8.48644e-07 7.39248e-07 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| greatly when ||| 0.5 0.142731 8.48644e-07 1.56572e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| greatly ||| 0.00170455 0.0787598 2.54593e-06 0.0001504 2.718 ||| 0-0 ||| 1760 1.17835e+06 +en ||| green light to squander ||| 1 0.0247351 8.48644e-07 3.24379e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| green light to ||| 0.00847458 0.0247351 8.48644e-07 8.10947e-11 2.718 ||| 0-2 ||| 118 1.17835e+06 +en ||| green table in ||| 0.2 0.605812 8.48644e-07 5.18959e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| green zone in ||| 0.5 0.605812 8.48644e-07 1.10384e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| grew in ||| 0.2 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| grief for ||| 0.111111 0.0286209 8.48644e-07 5.40744e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| grief on ||| 1 0.22993 8.48644e-07 3.90327e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| grip on the situation ||| 0.2 0.22993 8.48644e-07 4.3587e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| grip on the ||| 0.0344828 0.22993 8.48644e-07 8.46349e-08 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| grip on ||| 0.0212766 0.22993 1.69729e-06 1.3786e-06 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| grips with , to deal with these ||| 1 0.0535436 8.48644e-07 6.01844e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| grips with , to deal with ||| 1 0.0535436 8.48644e-07 5.80314e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| grips with many of ||| 1 0.0116562 8.48644e-07 5.17899e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| grips with ||| 0.0277778 0.0535436 4.24322e-06 2.01699e-07 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| ground although its scope is , in ||| 0.25 0.605812 8.48644e-07 3.07486e-18 2.718 ||| 0-6 ||| 4 1.17835e+06 +en ||| ground at ||| 0.133333 0.321886 1.69729e-06 4.68023e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| ground back into ||| 1 0.525896 8.48644e-07 1.74208e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ground for a broader transatlantic partnership ||| 1 0.0286209 8.48644e-07 3.88449e-23 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ground for a broader transatlantic ||| 1 0.0286209 8.48644e-07 1.79837e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ground for a broader ||| 1 0.0286209 8.48644e-07 8.17442e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ground for a ||| 0.0344828 0.0286209 8.48644e-07 5.96673e-08 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| ground for ||| 0.0107527 0.0286209 1.69729e-06 1.34611e-06 2.718 ||| 0-1 ||| 186 1.17835e+06 +en ||| ground in ||| 0.0506329 0.605812 6.78915e-06 5.40284e-05 2.718 ||| 0-1 ||| 158 1.17835e+06 +en ||| ground on ||| 0.103448 0.22993 2.54593e-06 9.71666e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| ground to ||| 0.0103093 0.0247351 8.48644e-07 3.28867e-06 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| ground vis-à-vis ||| 1 0.0566251 8.48644e-07 3.978e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| grounds for ||| 0.00337268 0.0286209 1.69729e-06 1.20459e-06 2.718 ||| 0-1 ||| 593 1.17835e+06 +en ||| grounds has been given ||| 1 0.0546585 8.48644e-07 2.0892e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| grounds in ||| 0.0769231 0.605812 8.48644e-07 4.83485e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| grounds of ||| 0.00151745 0.0116562 8.48644e-07 1.42779e-06 2.718 ||| 0-1 ||| 659 1.17835e+06 +en ||| grounds that ||| 0.003003 0.0017499 8.48644e-07 1.09432e-07 2.718 ||| 0-1 ||| 333 1.17835e+06 +en ||| group concerned consists ||| 1 0.201278 8.48644e-07 3.55327e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| group during ||| 0.5 0.226251 8.48644e-07 3.72399e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| group in ||| 0.0322581 0.605812 4.24322e-06 5.94774e-05 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| group led to ||| 1 0.0247351 8.48644e-07 3.32348e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| group of airlines ||| 1 0.0116562 8.48644e-07 1.14169e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| group of ||| 0.000687758 0.0116562 8.48644e-07 1.75645e-06 2.718 ||| 0-1 ||| 1454 1.17835e+06 +en ||| group voted against this , ||| 1 0.122467 8.48644e-07 5.2497e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| group voted against this ||| 0.333333 0.122467 8.48644e-07 4.40209e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| group voted against ||| 0.0263158 0.122467 8.48644e-07 6.81291e-11 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| group voted ||| 0.0181818 0.122467 8.48644e-07 2.85537e-07 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| group within ||| 0.142857 0.369196 8.48644e-07 1.42797e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| group ||| 0.000298493 0.0004718 5.09187e-06 6.1e-06 2.718 ||| 0-0 ||| 20101 1.17835e+06 +en ||| grouped together ||| 0.0384615 0.028169 8.48644e-07 8.4084e-10 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| grouped ||| 0.0243902 0.028169 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| grouping in ||| 0.333333 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| groups account ||| 0.333333 0.233636 8.48644e-07 2.18837e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| groups in the ||| 0.0102041 0.605812 8.48644e-07 1.87674e-06 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| groups in ||| 0.0201511 0.605812 6.78915e-06 3.05699e-05 2.718 ||| 0-1 ||| 397 1.17835e+06 +en ||| groups of ||| 0.00346021 0.0116562 1.69729e-06 9.02769e-07 2.718 ||| 0-1 ||| 578 1.17835e+06 +en ||| groups operating within ||| 1 0.369196 8.48644e-07 3.30273e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| groups to ||| 0.0052356 0.0247351 8.48644e-07 1.86077e-06 2.718 ||| 0-1 ||| 191 1.17835e+06 +en ||| groups within ||| 0.0263158 0.369196 8.48644e-07 7.3394e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| grow by ||| 0.0555556 0.0468744 1.69729e-06 2.08424e-07 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| grow into ||| 0.0357143 0.525896 8.48644e-07 5.42364e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| grow together into ||| 0.333333 0.525896 8.48644e-07 3.25744e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| grow under ||| 0.5 0.205566 8.48644e-07 1.38538e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| grow within ||| 0.166667 0.369196 8.48644e-07 2.71624e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| growers : in ||| 0.5 0.605812 8.48644e-07 6.22111e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| growing crops in ||| 1 0.605812 8.48644e-07 2.94995e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| growing in ||| 0.0379747 0.605812 2.54593e-06 1.74553e-05 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| growing up in ||| 0.0833333 0.605812 8.48644e-07 5.95314e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| growing ||| 0.000234192 0.0128846 8.48644e-07 4.56e-05 2.718 ||| 0-0 ||| 4270 1.17835e+06 +en ||| grown in ||| 0.0675676 0.605812 4.24322e-06 7.66557e-06 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| grows in ||| 0.166667 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| grows where ||| 0.25 0.247783 8.48644e-07 2.72531e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| growth in ||| 0.00221729 0.605812 1.69729e-06 2.22578e-05 2.718 ||| 0-1 ||| 902 1.17835e+06 +en ||| growth of ||| 0.00140252 0.0116562 8.48644e-07 6.57303e-07 2.718 ||| 0-1 ||| 713 1.17835e+06 +en ||| grudging acceptance ||| 0.5 0.0037831 8.48644e-07 1.64e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| guarantee against ||| 0.0285714 0.153982 8.48644e-07 3.50833e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| guaranteed . ||| 0.00625 6.3e-05 8.48644e-07 2.8593e-09 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| guaranteed by ||| 0.00342466 0.0468744 8.48644e-07 3.00301e-07 2.718 ||| 0-1 ||| 292 1.17835e+06 +en ||| guaranteed in ||| 0.0413223 0.605812 4.24322e-06 1.63009e-05 2.718 ||| 0-1 ||| 121 1.17835e+06 +en ||| guaranteed on ||| 0.2 0.22993 8.48644e-07 2.93161e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| guaranteed over ||| 0.333333 0.157937 8.48644e-07 1.41454e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| guaranteed places in ||| 1 0.605812 8.48644e-07 8.62316e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| guaranteed throughout ||| 0.166667 0.309047 8.48644e-07 1.02398e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| guaranteed when ||| 0.047619 0.142731 8.48644e-07 2.10151e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| guests here on ||| 1 0.22993 8.48644e-07 7.24144e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| guests of ||| 0.2 0.0116562 8.48644e-07 5.86391e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| guidance in ||| 0.0285714 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| guided by ||| 0.00680272 0.0468744 1.69729e-06 9.78316e-08 2.718 ||| 0-1 ||| 294 1.17835e+06 +en ||| guided in ||| 0.125 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| guideline when ||| 0.5 0.142731 8.48644e-07 8.33462e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| guidelines and ||| 0.00401606 0.0010182 8.48644e-07 1.95612e-08 2.718 ||| 0-1 ||| 249 1.17835e+06 +en ||| guidelines before ||| 0.0833333 0.0175291 8.48644e-07 7.22708e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| guidelines in ||| 0.0104167 0.605812 8.48644e-07 9.78976e-06 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| guidelines set down in ||| 0.5 0.31208 8.48644e-07 1.26151e-12 2.718 ||| 0-2 0-3 ||| 2 1.17835e+06 +en ||| guidelines ||| 0.000148038 0.0001361 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 6755 1.17835e+06 +en ||| guiding role in ||| 1 0.605812 8.48644e-07 9.63645e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| guilty of ||| 0.00297619 0.0116562 8.48644e-07 2.89104e-07 2.718 ||| 0-1 ||| 336 1.17835e+06 +en ||| guilty on ||| 0.333333 0.22993 8.48644e-07 1.76063e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| gun fire in ||| 0.5 0.605812 8.48644e-07 3.32482e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| gun on ||| 0.333333 0.22993 8.48644e-07 3.32194e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| gun rampage at ||| 1 0.321886 8.48644e-07 1.76009e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| guns on ||| 0.25 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| had , in ||| 0.111111 0.605812 1.69729e-06 5.52733e-05 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| had a hand in ||| 0.0833333 0.605812 8.48644e-07 8.14797e-09 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| had a raw deal in ||| 1 0.605812 8.48644e-07 1.00317e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| had adopted to ||| 0.5 0.0247351 8.48644e-07 5.75531e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| had already decided beforehand against ||| 1 0.153982 8.48644e-07 9.95575e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| had appropriate access to ||| 0.5 0.0247351 8.48644e-07 3.26574e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| had arisen in ||| 0.25 0.605812 8.48644e-07 6.85965e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| had at ||| 0.0454545 0.321886 1.69729e-06 4.015e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| had been added to ||| 0.5 0.0247351 8.48644e-07 6.71692e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| had been authorised in ||| 1 0.605812 8.48644e-07 1.11433e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| had been established by ||| 1 0.0468744 8.48644e-07 4.26825e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| had been for ||| 0.166667 0.0286209 8.48644e-07 3.85603e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| had been found to ||| 0.5 0.0247351 8.48644e-07 2.06124e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| had been given for ||| 0.333333 0.0286209 8.48644e-07 2.64639e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| had been given ||| 0.0243902 0.0546585 8.48644e-07 3.89082e-09 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| had been implemented in ||| 0.5 0.605812 8.48644e-07 1.35887e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| had been in place ||| 0.142857 0.605812 8.48644e-07 2.32927e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| had been in ||| 0.0980392 0.605812 4.24322e-06 1.54768e-06 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| had been living in ||| 0.25 0.605812 8.48644e-07 1.29696e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| had been on ||| 0.0666667 0.22993 8.48644e-07 2.78341e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| had been put in ||| 0.2 0.605812 8.48644e-07 1.70648e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| had been taken in ||| 0.25 0.605812 8.48644e-07 1.41071e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| had collapsed in ||| 1 0.605812 8.48644e-07 1.48317e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| had come into ||| 0.0909091 0.525896 8.48644e-07 1.88708e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| had control of ||| 0.25 0.0116562 8.48644e-07 1.04983e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| had created over ||| 1 0.157937 8.48644e-07 4.23922e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| had decided in ||| 0.333333 0.605812 8.48644e-07 3.17027e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| had done for ||| 0.5 0.0286209 8.48644e-07 5.26578e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| had fallen behind in ||| 0.333333 0.605812 8.48644e-07 6.27083e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| had first discussed some of the ||| 1 0.138055 8.48644e-07 1.17087e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| had first discussed some of ||| 1 0.138055 8.48644e-07 1.90721e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| had first discussed some ||| 1 0.138055 8.48644e-07 3.50822e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| had first discussed ||| 1 0.138055 8.48644e-07 3.22062e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| had first ||| 1 0.138055 8.48644e-07 6.13451e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| had forest fires in ||| 1 0.605812 8.48644e-07 2.94038e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| had from ||| 0.0322581 0.0308834 8.48644e-07 3.81918e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| had had with regard to ||| 1 0.0247351 8.48644e-07 1.23291e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| had himself in ||| 1 0.605812 8.48644e-07 3.43446e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| had in mind ||| 0.0222222 0.605812 8.48644e-07 1.16753e-07 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| had in the ||| 0.010101 0.605812 8.48644e-07 2.84545e-05 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| had in ||| 0.105431 0.605812 2.80053e-05 0.00046349 2.718 ||| 0-1 ||| 313 1.17835e+06 +en ||| had included in ||| 0.333333 0.605812 8.48644e-07 4.35217e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| had into ||| 0.5 0.525896 8.48644e-07 2.22192e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| had joined ||| 0.0555556 0.0581879 8.48644e-07 9.56526e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| had launched in ||| 1 0.605812 8.48644e-07 1.53415e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| had listed at ||| 1 0.321886 8.48644e-07 4.3362e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| had not given ||| 0.142857 0.0546585 8.48644e-07 3.97809e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| had occasion to say this in ||| 1 0.605812 8.48644e-07 1.24377e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| had on ||| 0.0454545 0.22993 5.09187e-06 8.33557e-05 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| had originally ||| 0.04 0.131774 8.48644e-07 1.57782e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| had played in ||| 0.5 0.605812 8.48644e-07 2.285e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| had previously been sited in ||| 1 0.605812 8.48644e-07 3.70516e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| had reached ||| 0.0151515 0.0055926 8.48644e-07 3.5531e-08 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| had shifted from ||| 0.333333 0.0308834 8.48644e-07 1.64225e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| had taken me to ||| 0.333333 0.0247351 8.48644e-07 1.54833e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| had taken over ||| 0.25 0.157937 8.48644e-07 3.66608e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| had taken place in ||| 0.0714286 0.605812 8.48644e-07 6.35819e-10 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| had talks in ||| 1 0.605812 8.48644e-07 1.21898e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| had this been ||| 0.0769231 0.0013296 8.48644e-07 1.59869e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| had this ||| 0.00699301 0.0013296 8.48644e-07 4.78765e-07 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| had through ||| 0.5 0.0366102 8.48644e-07 9.43879e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| had to be made to ||| 0.5 0.0247351 8.48644e-07 9.51714e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| had to consider whether we should ||| 1 0.0247351 8.48644e-07 5.93136e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| had to consider whether we ||| 1 0.0247351 8.48644e-07 1.33861e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| had to consider whether ||| 1 0.0247351 8.48644e-07 1.17915e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| had to consider ||| 0.0833333 0.0247351 8.48644e-07 4.48858e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| had to go on a ||| 1 0.22993 8.48644e-07 1.91998e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| had to go on ||| 1 0.22993 8.48644e-07 4.33152e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| had to send during ||| 1 0.226251 8.48644e-07 1.66066e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| had to structure the debate in ||| 1 0.605812 8.48644e-07 1.49611e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| had to ||| 0.000961847 0.0247351 2.54593e-06 2.82123e-05 2.718 ||| 0-1 ||| 3119 1.17835e+06 +en ||| had when ||| 0.142857 0.142731 8.48644e-07 5.97533e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| had with regard to ||| 0.2 0.0247351 8.48644e-07 1.22837e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| had with ||| 0.0160428 0.0535436 2.54593e-06 1.1702e-05 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| had ||| 4.32208e-05 7.88e-05 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 23137 1.17835e+06 +en ||| hailed by ||| 0.166667 0.0468744 8.48644e-07 1.19099e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| hailed him in ||| 1 0.605812 8.48644e-07 2.07266e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| half under ||| 0.25 0.205566 8.48644e-07 1.62852e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| halfway down ||| 0.333333 0.0183476 8.48644e-07 7.056e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| halfway point , in ||| 1 0.605812 8.48644e-07 1.5416e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| halfway ||| 0.00641026 0.0330189 8.48644e-07 9.5e-06 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| hallmark on ||| 1 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| halt at ||| 0.2 0.321886 8.48644e-07 8.0804e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| halt in ||| 0.153846 0.605812 1.69729e-06 9.32798e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| hampered by ||| 0.0102041 0.0468744 8.48644e-07 2.72227e-08 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| hand , as it were , ||| 1 0.066968 8.48644e-07 3.23211e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| hand , as it were ||| 1 0.066968 8.48644e-07 2.71026e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| hand , as it ||| 1 0.066968 8.48644e-07 1.51293e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| hand , as ||| 0.0172414 0.066968 8.48644e-07 8.50763e-07 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| hand , in ||| 0.031746 0.605812 1.69729e-06 2.18406e-05 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| hand , on ||| 0.0625 0.22993 8.48644e-07 3.92789e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| hand at ||| 0.125 0.321886 1.69729e-06 1.58648e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| hand in deciding in ||| 1 0.605812 8.48644e-07 6.07611e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| hand in hand ||| 0.0187266 0.605812 4.24322e-06 7.26343e-08 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| hand in ||| 0.057732 0.605812 2.3762e-05 0.000183142 2.718 ||| 0-1 ||| 485 1.17835e+06 +en ||| hand instances when ||| 1 0.142731 8.48644e-07 2.71524e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| hand over ||| 0.00526316 0.157937 8.48644e-07 1.58926e-06 2.718 ||| 0-1 ||| 190 1.17835e+06 +en ||| hand them over ||| 0.142857 0.157937 8.48644e-07 4.26302e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| hand when needed ||| 1 0.142731 8.48644e-07 3.16148e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hand when ||| 0.166667 0.142731 8.48644e-07 2.36108e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| hand with ||| 0.00292398 0.0535436 8.48644e-07 4.62392e-06 2.718 ||| 0-1 ||| 342 1.17835e+06 +en ||| handed down in ||| 0.12 0.605812 2.54593e-06 9.96121e-09 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| handed down through the ||| 0.25 0.0366102 8.48644e-07 1.24537e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| handed down through ||| 0.25 0.0366102 8.48644e-07 2.02856e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| handed down ||| 0.00934579 0.0183476 8.48644e-07 6.81345e-09 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| handed out at ||| 1 0.321886 8.48644e-07 4.73461e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| handed out somewhere that is ||| 0.333333 0.194113 8.48644e-07 1.03584e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| handed out somewhere that ||| 0.333333 0.194113 8.48644e-07 3.30505e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| handed out somewhere ||| 0.333333 0.194113 8.48644e-07 1.96477e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| handed out to ||| 0.0909091 0.0247351 8.48644e-07 3.32688e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| handed over ||| 0.00543478 0.157937 8.48644e-07 1.23822e-07 2.718 ||| 0-1 ||| 184 1.17835e+06 +en ||| handicap in ||| 0.166667 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| handle as ||| 1 0.066968 8.48644e-07 2.14056e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| handled after ||| 1 0.0144723 8.48644e-07 5.4407e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| handled in a ||| 0.111111 0.605812 8.48644e-07 4.19611e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| handled in ||| 0.0923077 0.605812 5.09187e-06 9.46651e-06 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| handling of ||| 0.00277778 0.0116562 8.48644e-07 1.77281e-07 2.718 ||| 0-1 ||| 360 1.17835e+06 +en ||| hands of ||| 0.00373483 0.0116562 3.39458e-06 1.37461e-06 2.718 ||| 0-1 ||| 1071 1.17835e+06 +en ||| hands on ||| 0.0238095 0.22993 8.48644e-07 8.37128e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| hang on to ||| 0.047619 0.22993 8.48644e-07 2.95181e-08 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| hang on ||| 0.0333333 0.22993 8.48644e-07 3.32194e-07 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| hang together like ||| 1 0.0128468 8.48644e-07 1.15007e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hang together ||| 0.125 0.0128468 8.48644e-07 6.476e-10 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| hanging in someone ' ||| 0.333333 0.605812 8.48644e-07 7.80872e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| hanging in someone ||| 0.333333 0.605812 8.48644e-07 2.27335e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| hanging in the ||| 0.0909091 0.605812 8.48644e-07 2.55146e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| hanging in ||| 0.210526 0.605812 3.39458e-06 4.15603e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| hangs over ||| 0.0454545 0.157937 8.48644e-07 8.81584e-09 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| happen . here in ||| 1 0.605812 8.48644e-07 3.08312e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| happen again , where the ||| 1 0.247783 8.48644e-07 3.91954e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| happen again , where ||| 1 0.247783 8.48644e-07 6.38446e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| happen at one ||| 1 0.321886 8.48644e-07 1.81234e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| happen at ||| 0.0428571 0.321886 2.54593e-06 4.34822e-06 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| happen in ||| 0.0382514 0.605812 1.1881e-05 5.01956e-05 2.718 ||| 0-1 ||| 366 1.17835e+06 +en ||| happen on ||| 0.0588235 0.22993 1.69729e-06 9.02736e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| happen to light upon ||| 1 0.114601 8.48644e-07 1.48382e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| happen to ||| 0.00947867 0.0247351 1.69729e-06 3.05537e-06 2.718 ||| 0-1 ||| 211 1.17835e+06 +en ||| happen within ||| 0.0769231 0.369196 8.48644e-07 1.20512e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| happened - the fact that eight soldiers ||| 1 0.0005269 8.48644e-07 2.32387e-24 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| happened - the fact that eight ||| 1 0.0005269 8.48644e-07 4.9444e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| happened in the ||| 0.00346021 0.605812 8.48644e-07 1.75484e-06 2.718 ||| 0-1 ||| 289 1.17835e+06 +en ||| happened in ||| 0.0189944 0.605812 1.4427e-05 2.85843e-05 2.718 ||| 0-1 ||| 895 1.17835e+06 +en ||| happened on ||| 0.025641 0.22993 1.69729e-06 5.1407e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| happened to ||| 0.00284091 0.0247351 8.48644e-07 1.7399e-06 2.718 ||| 0-1 ||| 352 1.17835e+06 +en ||| happened with ||| 0.00588235 0.0535436 8.48644e-07 7.21686e-07 2.718 ||| 0-1 ||| 170 1.17835e+06 +en ||| happening , in ||| 0.25 0.605812 8.48644e-07 2.99028e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| happening again in ||| 0.25 0.605812 8.48644e-07 1.45007e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| happening at present ||| 0.166667 0.321886 8.48644e-07 7.94992e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| happening at ||| 0.0454545 0.321886 3.39458e-06 2.17211e-06 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| happening for ||| 0.0416667 0.0286209 8.48644e-07 6.24732e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| happening in a ||| 0.0666667 0.605812 8.48644e-07 1.11146e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| happening in ||| 0.0289855 0.605812 1.69729e-05 2.50747e-05 2.718 ||| 0-1 ||| 690 1.17835e+06 +en ||| happening on the ||| 0.0294118 0.22993 8.48644e-07 2.76848e-07 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| happening on ||| 0.0196078 0.22993 8.48644e-07 4.50953e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| happens , in ||| 0.2 0.605812 8.48644e-07 3.28765e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| happens in a ||| 0.142857 0.605812 8.48644e-07 1.22199e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| happens in such ||| 0.0769231 0.605812 8.48644e-07 5.70361e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| happens in ||| 0.0165746 0.605812 5.09187e-06 2.75683e-05 2.718 ||| 0-1 ||| 362 1.17835e+06 +en ||| happens that , in ||| 0.5 0.605812 8.48644e-07 5.53036e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| happens that in ||| 1 0.605812 8.48644e-07 4.63743e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| happens to a ||| 0.1 0.0247351 8.48644e-07 7.43816e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| happens to ||| 0.00460829 0.0247351 8.48644e-07 1.67807e-06 2.718 ||| 0-1 ||| 217 1.17835e+06 +en ||| happy at ||| 0.142857 0.321886 8.48644e-07 2.52013e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| happy to ||| 0.00461361 0.0247351 3.39458e-06 1.77082e-06 2.718 ||| 0-1 ||| 867 1.17835e+06 +en ||| happy with ||| 0.00413223 0.0535436 1.69729e-06 7.34511e-07 2.718 ||| 0-1 ||| 484 1.17835e+06 +en ||| harassed in ||| 0.2 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| harassment in ||| 0.0625 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| hard about ||| 0.0434783 0.0401564 8.48644e-07 3.01227e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| hard for ||| 0.00657895 0.0286209 8.48644e-07 1.2092e-06 2.718 ||| 0-1 ||| 152 1.17835e+06 +en ||| hard in 2006 ||| 1 0.605812 8.48644e-07 4.56212e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hard in ||| 0.123288 0.605812 7.6378e-06 4.85332e-05 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| hard on ||| 0.0365854 0.22993 5.09187e-06 8.72839e-06 2.718 ||| 0-1 ||| 164 1.17835e+06 +en ||| hard to ||| 0.00370714 0.0247351 3.39458e-06 2.95418e-06 2.718 ||| 0-1 ||| 1079 1.17835e+06 +en ||| hard work on ||| 0.0147059 0.22993 8.48644e-07 5.52507e-09 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| hardening in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hardly say that it ||| 0.5 0.0080472 8.48644e-07 1.00656e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| hardship in rural ||| 1 0.605812 8.48644e-07 1.49987e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hardship in ||| 0.142857 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| harsh measures in ||| 0.5 0.605812 8.48644e-07 6.49689e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| harvested in ||| 0.142857 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| has , during ||| 0.333333 0.226251 8.48644e-07 1.77486e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| has , in ||| 0.0457516 0.605812 5.94051e-06 0.000283471 2.718 ||| 0-2 ||| 153 1.17835e+06 +en ||| has , on ||| 0.115385 0.22993 2.54593e-06 5.09804e-05 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| has , over ||| 0.166667 0.157937 8.48644e-07 2.45987e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| has , to ||| 0.0277778 0.0247351 8.48644e-07 1.72547e-05 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| has a commitment in ||| 1 0.605812 8.48644e-07 5.87927e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has a job to do in ||| 1 0.605812 8.48644e-07 2.5119e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| has a long way to go in ||| 0.5 0.605812 8.48644e-07 3.99268e-15 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| has a nasty ring to ||| 0.333333 0.0247351 8.48644e-07 8.01674e-17 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| has a ||| 0.000185494 0.0015231 8.48644e-07 4.24154e-06 2.718 ||| 0-1 ||| 5391 1.17835e+06 +en ||| has acknowledged in ||| 0.333333 0.605812 8.48644e-07 2.66226e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| has acquired in ||| 0.2 0.605812 8.48644e-07 3.42291e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| has actually taken ||| 0.166667 0.125341 8.48644e-07 6.30222e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| has actually ||| 0.0047619 0.125341 8.48644e-07 6.91412e-06 2.718 ||| 0-1 ||| 210 1.17835e+06 +en ||| has agreed upon ||| 1 0.114601 8.48644e-07 3.55345e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| has already been achieved in ||| 0.0666667 0.605812 8.48644e-07 6.14958e-13 2.718 ||| 0-4 ||| 15 1.17835e+06 +en ||| has already been in ||| 0.111111 0.605812 8.48644e-07 3.67578e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| has already been reduced by ||| 0.333333 0.0468744 8.48644e-07 3.16914e-15 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| has already been touched upon , ||| 0.5 0.114601 8.48644e-07 6.62856e-18 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| has already been touched upon ||| 0.166667 0.114601 8.48644e-07 5.55832e-17 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| has also been poorly prepared in ||| 1 0.605812 8.48644e-07 1.49394e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| has also stated in ||| 0.5 0.605812 8.48644e-07 7.47638e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| has any idea as ||| 0.333333 0.066968 8.48644e-07 3.13922e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| has arrived on ||| 0.0769231 0.22993 8.48644e-07 7.09636e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| has at a ||| 1 0.321886 8.48644e-07 9.12714e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| has at ||| 0.0336134 0.321886 3.39458e-06 0.00020591 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| has become a ||| 0.00164474 0.219193 8.48644e-07 8.72397e-07 2.718 ||| 0-1 ||| 608 1.17835e+06 +en ||| has become ||| 0.00260417 0.219193 5.09187e-06 1.96815e-05 2.718 ||| 0-1 ||| 2304 1.17835e+06 +en ||| has been , in ||| 0.2 0.605812 8.48644e-07 9.46565e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| has been achieved on ||| 0.142857 0.22993 8.48644e-07 2.38817e-10 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| has been achieved within ||| 0.25 0.369196 8.48644e-07 3.18814e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| has been added to ||| 0.0588235 0.0247351 8.48644e-07 3.44479e-11 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| has been applied to ||| 0.125 0.0247351 8.48644e-07 5.23241e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| has been around ||| 0.0434783 0.159384 8.48644e-07 1.98373e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| has been at ||| 0.0454545 0.321886 2.54593e-06 6.87576e-07 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| has been brought about ||| 0.0588235 0.0401564 8.48644e-07 1.37939e-11 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| has been brought into focus ||| 1 0.525896 8.48644e-07 8.24636e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been brought into ||| 0.1 0.525896 8.48644e-07 1.06542e-10 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| has been chosen in ||| 1 0.605812 8.48644e-07 1.9129e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been confirmed by ||| 0.0243902 0.0468744 8.48644e-07 2.83676e-12 2.718 ||| 0-3 ||| 41 1.17835e+06 +en ||| has been consolidated in ||| 0.142857 0.605812 8.48644e-07 4.60366e-11 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| has been covered in ||| 0.333333 0.605812 8.48644e-07 5.68313e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| has been created in ||| 0.0384615 0.605812 8.48644e-07 8.36596e-10 2.718 ||| 0-3 ||| 26 1.17835e+06 +en ||| has been disputed by nobody here ||| 1 0.0468744 8.48644e-07 8.16007e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been disputed by nobody ||| 1 0.0468744 8.48644e-07 4.0241e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been disputed by ||| 1 0.0468744 8.48644e-07 4.67919e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been done in ||| 0.0143885 0.605812 1.69729e-06 3.61943e-09 2.718 ||| 0-3 ||| 139 1.17835e+06 +en ||| has been enacted in the form ||| 1 0.605812 8.48644e-07 1.10907e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been enacted in the ||| 1 0.605812 8.48644e-07 2.43644e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been enacted in ||| 1 0.605812 8.48644e-07 3.96867e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been for ||| 0.0377358 0.0286209 1.69729e-06 1.97757e-07 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| has been formulated on the ||| 0.333333 0.22993 8.48644e-07 8.50065e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| has been formulated on ||| 0.333333 0.22993 8.48644e-07 1.38466e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| has been given in ||| 0.142857 0.605812 8.48644e-07 5.4474e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| has been given ||| 0.00361011 0.0546585 1.69729e-06 1.99542e-08 2.718 ||| 0-2 ||| 554 1.17835e+06 +en ||| has been going on ||| 0.0075188 0.22993 8.48644e-07 1.22164e-09 2.718 ||| 0-3 ||| 133 1.17835e+06 +en ||| has been implemented as ||| 0.333333 0.066968 8.48644e-07 2.71465e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| has been in existence for a long ||| 0.166667 0.605812 8.48644e-07 6.32113e-17 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| has been in existence for a ||| 0.166667 0.605812 8.48644e-07 1.8685e-13 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| has been in existence for ||| 0.0357143 0.605812 8.48644e-07 4.21538e-12 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| has been in existence ||| 0.0212766 0.605812 8.48644e-07 5.4847e-10 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| has been in place ||| 0.0166667 0.605812 8.48644e-07 1.19457e-08 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| has been in ||| 0.0745921 0.605812 2.71566e-05 7.93734e-06 2.718 ||| 0-2 ||| 429 1.17835e+06 +en ||| has been included in ||| 0.0192308 0.605812 8.48644e-07 7.45316e-10 2.718 ||| 0-3 ||| 52 1.17835e+06 +en ||| has been looking for ||| 0.25 0.0286209 8.48644e-07 2.09227e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| has been made in ||| 0.0393701 0.605812 4.24322e-06 1.66271e-08 2.718 ||| 0-3 ||| 127 1.17835e+06 +en ||| has been made to ||| 0.0172414 0.0247351 8.48644e-07 1.01208e-09 2.718 ||| 0-3 ||| 58 1.17835e+06 +en ||| has been made under ||| 0.25 0.205566 8.48644e-07 2.03603e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| has been making to ||| 0.25 0.0247351 8.48644e-07 1.85864e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| has been making under ||| 1 0.205566 8.48644e-07 3.73906e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been mentioned in ||| 0.02 0.605812 8.48644e-07 7.02455e-10 2.718 ||| 0-3 ||| 50 1.17835e+06 +en ||| has been over since ||| 1 0.157937 8.48644e-07 9.34673e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| has been over ||| 0.111111 0.157937 8.48644e-07 6.88779e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| has been performing at ||| 1 0.321886 8.48644e-07 5.43185e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been placed on ||| 0.0666667 0.22993 8.48644e-07 1.78721e-10 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| has been put in ||| 0.0645161 0.605812 1.69729e-06 8.75171e-09 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| has been put on ||| 0.04 0.22993 8.48644e-07 1.57394e-09 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| has been recorded over ||| 1 0.157937 8.48644e-07 1.43955e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been reiterating in ||| 1 0.605812 8.48644e-07 1.98433e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been reopened despite ||| 1 0.0012296 8.48644e-07 5.5433e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been said by ||| 0.00787402 0.0468744 8.48644e-07 6.01422e-11 2.718 ||| 0-3 ||| 127 1.17835e+06 +en ||| has been seen in ||| 0.0625 0.605812 8.48644e-07 1.67081e-09 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| has been set up in such ||| 0.125 0.605812 8.48644e-07 3.27298e-14 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| has been set up in ||| 0.0769231 0.605812 8.48644e-07 1.58199e-11 2.718 ||| 0-4 ||| 13 1.17835e+06 +en ||| has been speaking at ||| 1 0.321886 8.48644e-07 7.89337e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been stated in ||| 0.142857 0.605812 8.48644e-07 4.94496e-10 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| has been tabled , in ||| 0.285714 0.605812 1.69729e-06 7.73344e-11 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| has been taking in this ||| 1 0.605812 8.48644e-07 2.17967e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been taking in ||| 1 0.605812 8.48644e-07 3.37337e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has been the case for ||| 0.0625 0.0286209 8.48644e-07 1.29893e-11 2.718 ||| 0-4 ||| 16 1.17835e+06 +en ||| has been the case in ||| 0.097561 0.605812 3.39458e-06 5.21349e-10 2.718 ||| 0-4 ||| 41 1.17835e+06 +en ||| has been to ||| 0.00877193 0.0247351 1.69729e-06 4.8314e-07 2.718 ||| 0-2 ||| 228 1.17835e+06 +en ||| has been too long in ||| 0.5 0.605812 8.48644e-07 3.65456e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| has been used in ||| 0.05 0.605812 8.48644e-07 3.40512e-09 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| has been very positively received in Turkey ||| 1 0.605812 8.48644e-07 1.36542e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| has been very positively received in ||| 1 0.605812 8.48644e-07 2.3261e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| has been voiced over ||| 0.333333 0.157937 8.48644e-07 6.19901e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| has been where ||| 1 0.247783 8.48644e-07 1.46388e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| has been ||| 9.51e-05 0.0002262 3.39458e-06 1.13533e-07 2.718 ||| 0-0 ||| 42061 1.17835e+06 +en ||| has begun at ||| 1 0.321886 8.48644e-07 2.59447e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| has brought about , ||| 0.5 0.0401564 8.48644e-07 4.9263e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| has brought about ||| 0.0298507 0.0401564 1.69729e-06 4.13091e-09 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| has by ||| 0.0454545 0.0468744 8.48644e-07 4.37903e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| has called for in ||| 1 0.605812 8.48644e-07 3.17516e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has changed by ||| 1 0.0468744 8.48644e-07 1.43194e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| has come about because ||| 0.1 0.0022788 8.48644e-07 6.52306e-13 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| has come about in ||| 0.111111 0.605812 8.48644e-07 2.85519e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| has come as ||| 0.166667 0.066968 8.48644e-07 7.8639e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| has come at ||| 0.0185185 0.321886 8.48644e-07 1.7488e-07 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| has come before ||| 0.0588235 0.0175291 8.48644e-07 1.49034e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| has come to light of ||| 0.333333 0.0116562 8.48644e-07 9.20712e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| has come to ||| 0.00675676 0.0247351 1.69729e-06 1.22883e-07 2.718 ||| 0-2 ||| 296 1.17835e+06 +en ||| has conducted ||| 0.0204082 0.0002262 8.48644e-07 2.057e-09 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| has dealt with ||| 0.00854701 0.0535436 8.48644e-07 6.28349e-09 2.718 ||| 0-2 ||| 117 1.17835e+06 +en ||| has decided to become ||| 0.5 0.0247351 8.48644e-07 2.82747e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| has decided to ||| 0.0027248 0.0247351 8.48644e-07 9.89662e-09 2.718 ||| 0-2 ||| 367 1.17835e+06 +en ||| has declined ||| 0.0153846 0.0111524 8.48644e-07 1.0295e-08 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| has developed in Latvia . ||| 0.5 0.605812 8.48644e-07 2.4732e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| has developed in Latvia ||| 0.5 0.605812 8.48644e-07 8.16506e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| has developed in ||| 0.0204082 0.605812 8.48644e-07 1.63301e-07 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| has developed over time ||| 0.333333 0.157937 8.48644e-07 2.32642e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| has developed over ||| 0.0434783 0.157937 8.48644e-07 1.41708e-09 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| has devoted to ||| 0.125 0.0247351 8.48644e-07 2.96609e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| has displayed in ||| 0.2 0.605812 8.48644e-07 4.18355e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| has done during ||| 0.2 0.226251 8.48644e-07 6.78663e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| has done for the Community on ||| 1 0.22993 8.48644e-07 1.48913e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| has done in ||| 0.0604027 0.605812 7.6378e-06 1.08392e-06 2.718 ||| 0-2 ||| 149 1.17835e+06 +en ||| has done on ||| 0.0140845 0.22993 1.69729e-06 1.94936e-07 2.718 ||| 0-2 ||| 142 1.17835e+06 +en ||| has done over ||| 0.0416667 0.157937 8.48644e-07 9.40594e-09 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| has done so in ||| 0.0555556 0.605812 8.48644e-07 2.46017e-09 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| has drawn in ||| 0.333333 0.605812 8.48644e-07 3.37774e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| has during ||| 1 0.226251 8.48644e-07 1.4883e-05 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| has emerged from ||| 0.0204082 0.0308834 8.48644e-07 4.72041e-10 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| has enjoyed in certain ||| 1 0.605812 8.48644e-07 1.55814e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| has enjoyed in ||| 0.5 0.605812 8.48644e-07 5.46714e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| has essentially been achieved ||| 1 0.105697 8.48644e-07 6.02734e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| has essentially been ||| 0.142857 0.105697 8.48644e-07 3.60272e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| has essentially ||| 0.181818 0.105697 1.69729e-06 1.07892e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| has ever carried out in ||| 1 0.605812 8.48644e-07 5.04178e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| has existed in ||| 0.047619 0.605812 8.48644e-07 3.51799e-08 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| has fed into ||| 1 0.525896 8.48644e-07 9.458e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| has for ||| 0.00657895 0.0286209 8.48644e-07 5.9223e-05 2.718 ||| 0-1 ||| 152 1.17835e+06 +en ||| has found its way onto ||| 1 0.233333 8.48644e-07 6.92122e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| has generally ||| 0.0666667 0.21041 8.48644e-07 4.6868e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| has given in ||| 0.0769231 0.605812 8.48644e-07 1.63135e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| has given me which , in ||| 1 0.605812 8.48644e-07 9.95024e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| has given on ||| 0.5 0.22993 8.48644e-07 2.93388e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| has given to ensure ||| 0.333333 0.0546585 8.48644e-07 2.38097e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| has given to ||| 0.0344828 0.0546585 1.69729e-06 5.30993e-07 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| has given us ||| 0.00990099 0.0546585 1.69729e-06 1.72233e-08 2.718 ||| 0-1 ||| 202 1.17835e+06 +en ||| has given ||| 0.00609225 0.0546585 5.94051e-06 5.97573e-06 2.718 ||| 0-1 ||| 1149 1.17835e+06 +en ||| has gone into ||| 0.0131579 0.525896 8.48644e-07 7.13338e-09 2.718 ||| 0-2 ||| 76 1.17835e+06 +en ||| has gone on ||| 0.0153846 0.22993 8.48644e-07 2.6761e-08 2.718 ||| 0-2 ||| 65 1.17835e+06 +en ||| has got into in ||| 1 0.565854 8.48644e-07 5.75671e-09 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| has grown in ||| 0.047619 0.605812 8.48644e-07 3.94585e-08 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| has had in ||| 0.357143 0.605812 4.24322e-06 2.38581e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| has had on ||| 0.08 0.22993 1.69729e-06 4.29073e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| has had ||| 0.00119546 0.0002262 1.69729e-06 3.41258e-08 2.718 ||| 0-0 ||| 1673 1.17835e+06 +en ||| has happened in ||| 0.00797872 0.605812 2.54593e-06 1.47137e-07 2.718 ||| 0-2 ||| 376 1.17835e+06 +en ||| has happened on ||| 0.037037 0.22993 8.48644e-07 2.64617e-08 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| has hung over ||| 1 0.157937 8.48644e-07 5.15677e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| has implications for ||| 0.04 0.0286209 8.48644e-07 1.23776e-09 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| has in ||| 0.147147 0.605812 4.15836e-05 0.00237702 2.718 ||| 0-1 ||| 333 1.17835e+06 +en ||| has increased dramatically in ||| 0.2 0.605812 8.48644e-07 8.97847e-13 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| has insisted on ||| 0.0169492 0.22993 8.48644e-07 2.99244e-10 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| has it been solved at ||| 0.5 0.321886 8.48644e-07 1.32055e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| has it in ||| 0.166667 0.605812 8.48644e-07 4.2271e-05 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| has joined ||| 0.0181818 0.0581879 8.48644e-07 4.90557e-07 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| has just made on ||| 0.5 0.22993 8.48644e-07 1.12986e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| has just occurred in ||| 0.5 0.605812 8.48644e-07 1.27461e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| has led in ||| 0.5 0.605812 8.48644e-07 2.1821e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| has made a few adjustments : in ||| 1 0.605812 8.48644e-07 5.21249e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| has made in ||| 0.163636 0.605812 7.6378e-06 4.97938e-06 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| has made on ||| 0.166667 0.22993 2.54593e-06 8.95509e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| has made provision if ||| 0.25 0.0178573 8.48644e-07 1.48534e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| has made to ||| 0.0111111 0.0247351 8.48644e-07 3.03091e-07 2.718 ||| 0-2 ||| 90 1.17835e+06 +en ||| has made with regard ||| 0.5 0.0535436 8.48644e-07 8.56012e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| has made with ||| 0.0909091 0.0535436 8.48644e-07 1.25718e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| has made ||| 0.000321337 0.0033766 8.48644e-07 6.19759e-07 2.718 ||| 0-1 ||| 3112 1.17835e+06 +en ||| has managed to achieve in ||| 0.5 0.605812 8.48644e-07 2.70757e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| has not even got as far as ||| 1 0.066968 8.48644e-07 1.46605e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| has not in ||| 0.142857 0.605812 8.48644e-07 8.11538e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| has not yet been achieved on ||| 1 0.22993 8.48644e-07 2.15659e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| has nothing to do with ||| 0.00206186 0.0535436 8.48644e-07 3.40928e-12 2.718 ||| 0-4 ||| 485 1.17835e+06 +en ||| has nothing to ||| 0.00200803 0.0247351 8.48644e-07 2.69263e-08 2.718 ||| 0-2 ||| 498 1.17835e+06 +en ||| has now been produced of Parliament ||| 1 0.0116562 8.48644e-07 2.93225e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| has now been produced of ||| 1 0.0116562 8.48644e-07 5.10845e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| has now been restored on ||| 1 0.22993 8.48644e-07 5.08701e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| has occurred in ||| 0.0555556 0.605812 1.69729e-06 1.01023e-07 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| has on ||| 0.106509 0.22993 1.52756e-05 0.000427492 2.718 ||| 0-1 ||| 169 1.17835e+06 +en ||| has opted with ||| 1 0.0535436 8.48644e-07 3.48082e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| has our support in those efforts . ||| 1 0.605812 8.48644e-07 2.98988e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has our support in those efforts ||| 1 0.605812 8.48644e-07 9.87084e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has our support in those ||| 1 0.605812 8.48644e-07 8.11746e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has our support in ||| 1 0.605812 8.48644e-07 1.12104e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has over ||| 0.0540541 0.157937 1.69729e-06 2.06271e-05 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| has overall responsibility for these matters , ||| 1 0.135441 8.48644e-07 6.64424e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| has overall responsibility for these matters ||| 1 0.135441 8.48644e-07 5.57147e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| has overall responsibility for these ||| 1 0.135441 8.48644e-07 3.0116e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| has overall responsibility for ||| 0.25 0.135441 8.48644e-07 2.90387e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| has overall responsibility ||| 0.166667 0.135441 8.48644e-07 3.77828e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| has overall ||| 0.333333 0.135441 8.48644e-07 3.27124e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| has placed on ||| 0.125 0.22993 8.48644e-07 5.3522e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| has played in the ||| 0.0833333 0.605812 8.48644e-07 7.19432e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| has played in ||| 0.0555556 0.605812 1.69729e-06 1.17187e-07 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| has prepared in ||| 0.5 0.605812 8.48644e-07 2.06087e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| has presented four own-initiative reports in this ||| 1 0.605812 8.48644e-07 4.91553e-24 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| has presented four own-initiative reports in ||| 1 0.605812 8.48644e-07 7.60753e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| has promoted in ||| 1 0.605812 8.48644e-07 5.22944e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| has proposed in ||| 0.0714286 0.605812 8.48644e-07 2.65275e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| has proved difficult in ||| 1 0.605812 8.48644e-07 1.22223e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has proved to be a highly complex ||| 1 0.0247351 8.48644e-07 6.28818e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| has proved to be a highly ||| 1 0.0247351 8.48644e-07 2.91119e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| has proved to be a ||| 0.0222222 0.0247351 8.48644e-07 4.81189e-12 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| has proved to be ||| 0.00546448 0.0247351 8.48644e-07 1.08557e-10 2.718 ||| 0-2 ||| 183 1.17835e+06 +en ||| has proved to ||| 0.00515464 0.0247351 8.48644e-07 5.99006e-09 2.718 ||| 0-2 ||| 194 1.17835e+06 +en ||| has put forward in ||| 0.2 0.605812 8.48644e-07 1.45827e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| has put in ||| 0.0192308 0.605812 8.48644e-07 2.6209e-06 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| has put into ||| 0.0550459 0.525896 5.09187e-06 1.25643e-07 2.718 ||| 0-2 ||| 109 1.17835e+06 +en ||| has put on ||| 0.0714286 0.22993 8.48644e-07 4.71352e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| has really come into ||| 1 0.525896 8.48644e-07 4.68799e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has received in ||| 0.25 0.605812 1.69729e-06 2.12981e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| has regarding ||| 0.25 0.140669 8.48644e-07 9.74422e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| has research in ||| 0.333333 0.605812 8.48644e-07 1.29072e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| has said at ||| 1 0.321886 8.48644e-07 8.46909e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| has shown with ||| 0.1 0.0535436 8.48644e-07 6.26548e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| has something in common with ||| 0.142857 0.605812 8.48644e-07 1.94343e-12 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| has something in common ||| 0.2 0.605812 8.48644e-07 3.03922e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| has something in ||| 0.142857 0.605812 8.48644e-07 1.31568e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| has something to do with the ||| 0.166667 0.0535436 8.48644e-07 6.22507e-13 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| has something to do with ||| 0.03125 0.0535436 8.48644e-07 1.01399e-11 2.718 ||| 0-4 ||| 32 1.17835e+06 +en ||| has sought to achieve in ||| 1 0.605812 8.48644e-07 1.56373e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| has spoken in ||| 0.037037 0.605812 8.48644e-07 5.30075e-08 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| has still held in ||| 1 0.605812 8.48644e-07 4.56723e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| has still not subsided in ||| 0.333333 0.605812 8.48644e-07 4.27875e-15 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| has struck ||| 0.010101 0.0002262 8.48644e-07 8.704e-10 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| has succeeded in ||| 0.00537634 0.605812 8.48644e-07 4.44502e-08 2.718 ||| 0-2 ||| 186 1.17835e+06 +en ||| has such ||| 0.015625 0.0002262 8.48644e-07 7.03426e-08 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| has suffered in ||| 0.2 0.605812 8.48644e-07 8.1294e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| has tabled in ||| 0.166667 0.605812 8.48644e-07 1.94202e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| has taken in ||| 0.0588235 0.605812 1.69729e-06 2.16665e-06 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| has taken place in ||| 0.021978 0.605812 1.69729e-06 3.26081e-09 2.718 ||| 0-3 ||| 91 1.17835e+06 +en ||| has taken place over ||| 0.0625 0.157937 8.48644e-07 2.82964e-11 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| has taken place ||| 0.00170358 0.0042106 8.48644e-07 6.90257e-10 2.718 ||| 0-1 ||| 587 1.17835e+06 +en ||| has taken ||| 0.000814996 0.0042106 1.69729e-06 4.58642e-07 2.718 ||| 0-1 ||| 2454 1.17835e+06 +en ||| has the necessary skills to learn in ||| 1 0.605812 8.48644e-07 1.38565e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| has there been ||| 0.00877193 0.0117359 8.48644e-07 1.92752e-08 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| has there ||| 0.0212766 0.0117359 8.48644e-07 5.77241e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| has to a ||| 0.2 0.0247351 8.48644e-07 6.41339e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| has to achieve ||| 0.2 0.0247351 8.48644e-07 3.30611e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| has to be a willingness to ||| 1 0.0247351 8.48644e-07 1.34263e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| has to be at ||| 0.0833333 0.321886 8.48644e-07 3.31591e-07 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| has to be in ||| 0.0952381 0.605812 1.69729e-06 3.82787e-06 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| has to be made in ||| 0.25 0.605812 8.48644e-07 8.01863e-09 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| has to be on the ||| 0.1 0.22993 8.48644e-07 4.22633e-08 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| has to be on ||| 0.133333 0.22993 1.69729e-06 6.88419e-07 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| has to be one of ||| 0.2 0.0247351 8.48644e-07 5.94152e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| has to be one ||| 0.0909091 0.0247351 8.48644e-07 1.09291e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| has to be said , in ||| 0.5 0.605812 8.48644e-07 1.87755e-10 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| has to be said that in ||| 0.5 0.605812 8.48644e-07 2.6484e-11 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| has to be ||| 0.00229621 0.0247351 5.09187e-06 2.62216e-06 2.718 ||| 0-1 ||| 2613 1.17835e+06 +en ||| has to do with ||| 0.00455581 0.0535436 1.69729e-06 1.83196e-08 2.718 ||| 0-3 ||| 439 1.17835e+06 +en ||| has to go in ||| 0.333333 0.605812 8.48644e-07 1.2352e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| has to have ||| 0.0166667 0.0247351 8.48644e-07 1.73043e-06 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| has to in ||| 0.25 0.605812 8.48644e-07 0.000211218 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| has to live with ||| 0.333333 0.0535436 8.48644e-07 5.37541e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| has to offer ||| 0.02 0.0247351 8.48644e-07 1.65522e-08 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| has to play in ||| 0.0909091 0.605812 8.48644e-07 5.44941e-08 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| has to say in ||| 0.25 0.605812 8.48644e-07 2.01882e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| has to say ||| 0.00763359 0.0247351 8.48644e-07 1.38292e-07 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| has to think ||| 0.111111 0.0247351 8.48644e-07 5.5343e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| has to ||| 0.00364299 0.0247351 1.86702e-05 0.000144687 2.718 ||| 0-1 ||| 6039 1.17835e+06 +en ||| has turned it into ||| 0.25 0.525896 8.48644e-07 1.13683e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| has undertaken within ||| 1 0.369196 1.69729e-06 2.71077e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| has when it ||| 0.5 0.142731 8.48644e-07 5.44959e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| has when ||| 1 0.142731 1.69729e-06 3.06446e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| has with ||| 0.0681818 0.0535436 2.54593e-06 6.00142e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| has within ||| 0.2 0.369196 1.69729e-06 5.70688e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| has ||| 0.000229273 0.0002262 3.22485e-05 3.4e-05 2.718 ||| 0-0 ||| 165741 1.17835e+06 +en ||| haunt us in ||| 0.5 0.605812 8.48644e-07 1.86332e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| have , at the ||| 0.125 0.321886 8.48644e-07 3.50261e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| have , at ||| 0.136364 0.321886 2.54593e-06 5.70533e-05 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| have , by ||| 0.1 0.0468744 8.48644e-07 1.21334e-05 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| have , for example , in ||| 1 0.605812 8.48644e-07 1.75726e-10 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| have , in a ||| 0.2 0.605812 8.48644e-07 2.91939e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| have , in ||| 0.171233 0.605812 2.12161e-05 0.000658621 2.718 ||| 0-2 ||| 146 1.17835e+06 +en ||| have , of course , acted in ||| 1 0.605812 8.48644e-07 1.04515e-13 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| have , on ||| 0.1 0.22993 1.69729e-06 0.000118449 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| have , over the ||| 0.166667 0.157937 8.48644e-07 3.50874e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| have , over ||| 0.166667 0.157937 1.69729e-06 5.71532e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| have , where far and ||| 1 0.247783 8.48644e-07 1.03873e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have , where far ||| 1 0.247783 8.48644e-07 8.29269e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have , where ||| 0.25 0.247783 8.48644e-07 1.21469e-05 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| have a chance to speak in ||| 0.5 0.605812 8.48644e-07 1.93953e-13 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| have a difference of opinion ||| 0.5 0.0116562 8.48644e-07 4.66584e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have a difference of ||| 1 0.0116562 8.48644e-07 1.90132e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have a distorting effect on ||| 0.5 0.22993 8.48644e-07 2.0562e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| have a key role to play in ||| 0.0769231 0.605812 8.48644e-07 9.05777e-17 2.718 ||| 0-6 ||| 13 1.17835e+06 +en ||| have a landfill site in ||| 1 0.605812 8.48644e-07 1.35596e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have a look at ||| 0.03125 0.321886 8.48644e-07 6.1816e-09 2.718 ||| 0-3 ||| 32 1.17835e+06 +en ||| have a look in ||| 0.333333 0.605812 8.48644e-07 7.13601e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| have a period of ||| 0.0909091 0.0015231 8.48644e-07 9.34885e-11 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| have a period ||| 0.0714286 0.0015231 8.48644e-07 1.71968e-09 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| have a political value in themselves ||| 1 0.605812 8.48644e-07 1.6486e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have a political value in ||| 1 0.605812 8.48644e-07 3.83663e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have a presence in ||| 0.111111 0.605812 8.48644e-07 9.42491e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| have a problem with it in ||| 1 0.605812 8.48644e-07 6.2607e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| have a say in ||| 0.0172414 0.605812 8.48644e-07 2.33983e-07 2.718 ||| 0-3 ||| 58 1.17835e+06 +en ||| have a situation in ||| 0.015625 0.605812 8.48644e-07 1.26074e-07 2.718 ||| 0-3 ||| 64 1.17835e+06 +en ||| have a ||| 0.000747695 0.0015231 7.6378e-06 9.85488e-06 2.718 ||| 0-1 ||| 12037 1.17835e+06 +en ||| have access to ||| 0.00114943 0.0247351 8.48644e-07 2.89106e-08 2.718 ||| 0-2 ||| 870 1.17835e+06 +en ||| have acted in ||| 0.105263 0.605812 1.69729e-06 1.07143e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| have adopted in ||| 0.333333 0.605812 1.69729e-06 1.12665e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| have adopted towards ||| 0.25 0.0616136 8.48644e-07 2.43053e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| have agreed to in ||| 1 0.605812 8.48644e-07 3.83273e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have all ||| 0.00210084 0.0006885 8.48644e-07 8.70673e-07 2.718 ||| 0-1 ||| 476 1.17835e+06 +en ||| have already decided on ||| 0.166667 0.22993 8.48644e-07 3.1462e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| have already pointed out in ||| 0.2 0.605812 8.48644e-07 4.51627e-13 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| have already said in ||| 0.142857 0.605812 8.48644e-07 1.05195e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| have also become part of ||| 1 0.0009084 8.48644e-07 1.97879e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have also become part ||| 0.5 0.0009084 8.48644e-07 3.63988e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have also been agreed in ||| 1 0.605812 8.48644e-07 7.27151e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have also played a part here ||| 0.2 0.0855319 8.48644e-07 4.71936e-16 2.718 ||| 0-5 ||| 5 1.17835e+06 +en ||| have always , in ||| 1 0.605812 8.48644e-07 1.13283e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have always been underspent in ||| 1 0.605812 8.48644e-07 1.26879e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have amassed in ||| 1 0.605812 8.48644e-07 2.20912e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have an overall ||| 0.25 0.135441 8.48644e-07 3.37817e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| have anything to do with ||| 0.0344828 0.0535436 8.48644e-07 6.67831e-12 2.718 ||| 0-4 ||| 29 1.17835e+06 +en ||| have anywhere near ||| 0.5 0.213547 8.48644e-07 1.3174e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| have anywhere ||| 0.333333 0.213547 8.48644e-07 3.3607e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| have appeared in ||| 0.09375 0.605812 2.54593e-06 1.23159e-07 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| have applied to ||| 0.03125 0.0247351 8.48644e-07 3.64072e-08 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| have as a result are ||| 0.5 0.066968 8.48644e-07 7.61767e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| have as a result ||| 0.0833333 0.066968 8.48644e-07 5.02064e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| have as a ||| 0.0666667 0.066968 8.48644e-07 9.53588e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| have as well ||| 0.25 0.066968 8.48644e-07 3.41113e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| have as ||| 0.0362319 0.066968 4.24322e-06 0.000215132 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| have asked in ||| 0.2 0.605812 8.48644e-07 4.17524e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| have at its ||| 0.0666667 0.321886 8.48644e-07 6.81599e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| have at ||| 0.0681818 0.321886 1.27297e-05 0.000478416 2.718 ||| 0-1 ||| 220 1.17835e+06 +en ||| have attended ||| 0.037037 0.0505051 8.48644e-07 4.47297e-07 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| have become Members in ||| 1 0.605812 8.48644e-07 2.32735e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have become imperative ||| 0.333333 0.219193 8.48644e-07 5.25875e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| have become ||| 0.0030581 0.219193 2.54593e-06 4.57283e-05 2.718 ||| 0-1 ||| 981 1.17835e+06 +en ||| have been admitted in ||| 1 0.605812 8.48644e-07 1.53067e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have been applied to ||| 0.166667 0.0247351 8.48644e-07 1.21571e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| have been around long enough ||| 1 0.159384 8.48644e-07 2.57586e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have been around long ||| 1 0.159384 8.48644e-07 1.55924e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have been around ||| 0.0769231 0.159384 8.48644e-07 4.60903e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| have been at ||| 0.06 0.321886 2.54593e-06 1.59753e-06 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| have been broken down at ||| 1 0.321886 8.48644e-07 3.33455e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have been built up over ||| 0.111111 0.157937 8.48644e-07 2.71258e-14 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| have been carried out in ||| 0.0714286 0.605812 8.48644e-07 2.08174e-11 2.718 ||| 0-4 ||| 14 1.17835e+06 +en ||| have been carried out on ||| 0.0833333 0.22993 8.48644e-07 3.74388e-12 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| have been characterised by ||| 0.0909091 0.0468744 8.48644e-07 5.74162e-12 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| have been dealt with ||| 0.0138889 0.0535436 8.48644e-07 4.87495e-11 2.718 ||| 0-3 ||| 72 1.17835e+06 +en ||| have been evident to a ||| 0.5 0.0247351 8.48644e-07 9.30463e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have been evident to ||| 0.5 0.0247351 8.48644e-07 2.09915e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have been expressed , on ||| 1 0.22993 8.48644e-07 3.8445e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have been fixed on ||| 0.25 0.22993 8.48644e-07 6.33477e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| have been for ||| 0.03125 0.0286209 8.48644e-07 4.59474e-07 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| have been given in ||| 0.125 0.605812 8.48644e-07 1.26566e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| have been given scope ||| 1 0.0546585 8.48644e-07 4.62228e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have been given ||| 0.00498753 0.0546585 1.69729e-06 4.63619e-08 2.718 ||| 0-2 ||| 401 1.17835e+06 +en ||| have been going on ||| 0.0344828 0.22993 8.48644e-07 2.83838e-09 2.718 ||| 0-3 ||| 29 1.17835e+06 +en ||| have been identified at ||| 0.5 0.321886 8.48644e-07 6.15048e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have been identified during ||| 0.333333 0.226251 8.48644e-07 4.4455e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| have been imposed in ||| 1 0.605812 8.48644e-07 1.02905e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have been in force ||| 0.0416667 0.605812 8.48644e-07 3.13879e-09 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| have been in the ||| 0.015625 0.605812 8.48644e-07 1.13217e-06 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| have been in vain . ||| 0.125 0.605812 8.48644e-07 1.00548e-13 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| have been in vain ||| 0.0909091 0.605812 8.48644e-07 3.31952e-11 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| have been in ||| 0.115512 0.605812 2.97026e-05 1.84418e-05 2.718 ||| 0-2 ||| 303 1.17835e+06 +en ||| have been included as signatories ||| 0.5 0.066968 8.48644e-07 1.21419e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have been included as ||| 0.5 0.066968 8.48644e-07 6.74547e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have been included in the ||| 0.015873 0.605812 8.48644e-07 1.06311e-10 2.718 ||| 0-3 ||| 63 1.17835e+06 +en ||| have been included in ||| 0.0128205 0.605812 8.48644e-07 1.73168e-09 2.718 ||| 0-3 ||| 78 1.17835e+06 +en ||| have been incorporated into ||| 0.0212766 0.525896 8.48644e-07 1.78584e-11 2.718 ||| 0-3 ||| 47 1.17835e+06 +en ||| have been indicted in ||| 0.5 0.605812 8.48644e-07 2.02859e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have been installed for ||| 1 0.0286209 8.48644e-07 2.98658e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have been introduced and ||| 0.5 0.0010182 8.48644e-07 3.40854e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have been involved in an uprising , ||| 1 0.605812 8.48644e-07 7.43649e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have been involved in an uprising ||| 1 0.605812 8.48644e-07 6.23581e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have been involved in an ||| 1 0.605812 8.48644e-07 2.83446e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have been involved in ||| 0.00806452 0.605812 8.48644e-07 6.37716e-09 2.718 ||| 0-3 ||| 124 1.17835e+06 +en ||| have been killed in ||| 0.0344828 0.605812 8.48644e-07 4.38914e-10 2.718 ||| 0-3 ||| 29 1.17835e+06 +en ||| have been learnt in ||| 0.333333 0.605812 8.48644e-07 1.86262e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| have been left in ||| 0.0714286 0.605812 8.48644e-07 3.48365e-09 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| have been lifted when amounts ||| 0.333333 0.142731 8.48644e-07 1.91307e-16 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| have been lifted when ||| 0.333333 0.142731 8.48644e-07 3.1621e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| have been made - in ||| 0.5 0.605812 8.48644e-07 1.45723e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| have been made in ||| 0.0694444 0.605812 4.24322e-06 3.86318e-08 2.718 ||| 0-3 ||| 72 1.17835e+06 +en ||| have been made on ||| 0.0454545 0.22993 8.48644e-07 6.94769e-09 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| have been made to ||| 0.0322581 0.0247351 1.69729e-06 2.35149e-09 2.718 ||| 0-3 ||| 62 1.17835e+06 +en ||| have been managed in ||| 0.333333 0.605812 8.48644e-07 1.03458e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| have been more ||| 0.00724638 0.0042952 8.48644e-07 1.32868e-08 2.718 ||| 0-2 ||| 138 1.17835e+06 +en ||| have been obscured by ||| 0.5 0.0468744 8.48644e-07 3.73715e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have been on ||| 0.0634921 0.22993 3.39458e-06 3.31663e-06 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| have been out ||| 0.1 0.0120599 8.48644e-07 2.19849e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| have been provided in ||| 0.333333 0.605812 8.48644e-07 4.22685e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| have been put forward ||| 0.00724638 0.0008492 8.48644e-07 5.1079e-13 2.718 ||| 0-3 ||| 138 1.17835e+06 +en ||| have been put in ||| 0.0238095 0.605812 8.48644e-07 2.03339e-08 2.718 ||| 0-3 ||| 42 1.17835e+06 +en ||| have been put to flight by ||| 1 0.0468744 8.48644e-07 2.6296e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| have been reopened within ||| 1 0.369196 8.48644e-07 1.1069e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have been responsible for ||| 0.0322581 0.0286209 8.48644e-07 6.79561e-11 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| have been riots on ||| 1 0.22993 8.48644e-07 2.32164e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have been scheduled in ||| 1 0.605812 8.48644e-07 3.11666e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have been slow to ||| 0.166667 0.0247351 8.48644e-07 1.05519e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| have been smashed over ||| 1 0.157937 8.48644e-07 6.40129e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have been taken and ||| 0.0526316 0.0042106 8.48644e-07 4.45711e-11 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| have been taken into account ||| 0.0131579 0.525896 8.48644e-07 2.31678e-13 2.718 ||| 0-3 ||| 76 1.17835e+06 +en ||| have been taken into ||| 0.0102041 0.525896 8.48644e-07 8.05838e-10 2.718 ||| 0-3 ||| 98 1.17835e+06 +en ||| have been taken up in ||| 0.2 0.605812 8.48644e-07 5.73294e-11 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| have been taken up over ||| 1 0.157937 8.48644e-07 4.97487e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have been taken ||| 0.00128205 0.0042106 8.48644e-07 3.55831e-09 2.718 ||| 0-2 ||| 780 1.17835e+06 +en ||| have been there myself and was impressed ||| 1 0.0117359 8.48644e-07 8.74534e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have been there myself and was ||| 1 0.0117359 8.48644e-07 2.73292e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have been there myself and ||| 1 0.0117359 8.48644e-07 8.72301e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have been there myself ||| 1 0.0117359 8.48644e-07 6.96398e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have been there ||| 0.0384615 0.0117359 8.48644e-07 4.47844e-08 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| have been through ||| 0.0434783 0.0366102 8.48644e-07 3.7556e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| have been to ||| 0.0263158 0.0247351 1.69729e-06 1.12254e-06 2.718 ||| 0-2 ||| 76 1.17835e+06 +en ||| have been waged in ||| 1 0.605812 8.48644e-07 1.4569e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have been when it came to ||| 0.333333 0.142731 8.48644e-07 4.73371e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| have been when it came ||| 0.333333 0.142731 8.48644e-07 5.32727e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| have been when it ||| 0.25 0.142731 8.48644e-07 4.22799e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| have been when ||| 0.166667 0.142731 8.48644e-07 2.37752e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| have been within ||| 1 0.369196 8.48644e-07 4.4276e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have before us ||| 0.00595238 0.0175291 8.48644e-07 1.1751e-08 2.718 ||| 0-1 ||| 168 1.17835e+06 +en ||| have before ||| 0.0147059 0.0175291 1.69729e-06 4.0771e-06 2.718 ||| 0-1 ||| 136 1.17835e+06 +en ||| have better international coordination by ||| 1 0.0468744 8.48644e-07 2.0203e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have by ||| 0.0714286 0.0468744 8.48644e-07 0.000101743 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| have called for on ||| 0.5 0.22993 8.48644e-07 1.32675e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have called in ||| 0.333333 0.605812 1.69729e-06 9.59864e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| have changed here - in ||| 1 0.605812 8.48644e-07 1.38139e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have closed the ||| 0.166667 0.0011669 8.48644e-07 1.98373e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| have come about in ||| 0.125 0.605812 8.48644e-07 6.63381e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| have come back to us ||| 0.5 0.0247351 8.48644e-07 5.53478e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have come back to ||| 0.125 0.0247351 8.48644e-07 1.92033e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| have come to the end of ||| 0.181818 0.0247351 1.69729e-06 4.14601e-13 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| have come to the end ||| 0.166667 0.0247351 1.69729e-06 7.62639e-12 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| have come to the ||| 0.0416667 0.0247351 1.69729e-06 1.75279e-08 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| have come to ||| 0.00892857 0.0247351 2.54593e-06 2.85509e-07 2.718 ||| 0-2 ||| 336 1.17835e+06 +en ||| have come under attack ||| 0.2 0.205566 8.48644e-07 1.69437e-12 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| have come under ||| 0.0625 0.205566 8.48644e-07 5.74364e-08 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| have come up in ||| 0.142857 0.605812 8.48644e-07 1.5997e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| have committed forms part of ||| 0.5 0.0116562 8.48644e-07 1.43611e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| have committed in ||| 0.166667 0.605812 8.48644e-07 4.57289e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| have conducted in ||| 0.5 0.605812 8.48644e-07 3.3413e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| have confidence in ||| 0.00613497 0.605812 8.48644e-07 1.70655e-07 2.718 ||| 0-2 ||| 163 1.17835e+06 +en ||| have consistently succeeded in ||| 1 0.605812 8.48644e-07 1.37358e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have declared this in ||| 1 0.605812 8.48644e-07 9.13538e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have demonstrated that 30 000 arrivals per ||| 1 0.0117312 8.48644e-07 2.52034e-28 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| have developed in ||| 0.04 0.605812 8.48644e-07 3.79417e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| have died down ||| 0.166667 0.0183476 8.48644e-07 2.37342e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| have difficulty in ||| 0.02 0.605812 8.48644e-07 9.94106e-08 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| have disappeared during ||| 1 0.226251 8.48644e-07 1.62523e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have done during ||| 0.125 0.226251 8.48644e-07 1.57682e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| have done for ||| 0.0333333 0.0286209 8.48644e-07 6.27456e-08 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| have done in the ||| 0.0181818 0.605812 8.48644e-07 1.54609e-07 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| have done in ||| 0.114865 0.605812 1.4427e-05 2.5184e-06 2.718 ||| 0-2 ||| 148 1.17835e+06 +en ||| have done on ||| 0.0425532 0.22993 1.69729e-06 4.52918e-07 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| have done so in ||| 0.0555556 0.605812 8.48644e-07 5.71602e-09 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| have done so ||| 0.00409836 0.0087276 8.48644e-07 3.71449e-09 2.718 ||| 0-2 ||| 244 1.17835e+06 +en ||| have during ||| 0.111111 0.226251 8.48644e-07 3.45794e-05 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| have earmarked for ||| 0.5 0.0286209 8.48644e-07 1.43104e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| have either ||| 0.0178571 0.0167693 8.48644e-07 1.19598e-06 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| have emphasized ||| 0.0454545 0.111304 8.48644e-07 5.20251e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| have entered ||| 0.0416667 0.132067 4.24322e-06 2.26279e-06 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| have every confidence in ||| 0.2 0.605812 8.48644e-07 2.77655e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| have expressed a ||| 0.0344828 0.0015231 8.48644e-07 9.57894e-10 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| have failed to respond ||| 0.5 0.0247351 8.48644e-07 4.42991e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| have failed to ||| 0.00398406 0.0247351 8.48644e-07 1.55983e-08 2.718 ||| 0-2 ||| 251 1.17835e+06 +en ||| have faith in ||| 0.0169492 0.605812 8.48644e-07 8.17376e-08 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| have for the ||| 0.0140845 0.0286209 8.48644e-07 8.4475e-06 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| have for ||| 0.0228758 0.0286209 5.94051e-06 0.0001376 2.718 ||| 0-1 ||| 306 1.17835e+06 +en ||| have fought for ||| 0.0277778 0.0286209 8.48644e-07 2.17408e-09 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| have given in ||| 0.0909091 0.605812 8.48644e-07 3.7903e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| have given ||| 0.00251572 0.0546585 1.69729e-06 1.38841e-05 2.718 ||| 0-1 ||| 795 1.17835e+06 +en ||| have gone on to become ||| 1 0.22993 8.48644e-07 1.57847e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have gone on to ||| 0.2 0.22993 8.48644e-07 5.52493e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| have gone on ||| 0.047619 0.22993 8.48644e-07 6.2177e-08 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| have got into ||| 0.0833333 0.525896 8.48644e-07 2.89645e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| have got on to ||| 0.333333 0.22993 8.48644e-07 9.65539e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| have got on ||| 0.166667 0.22993 8.48644e-07 1.08661e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| have got with ||| 0.5 0.0535436 8.48644e-07 1.52545e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| have grown in ||| 0.166667 0.605812 8.48644e-07 9.16786e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| have had in ||| 0.057971 0.605812 3.39458e-06 5.54324e-06 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| have had occasion to say this in ||| 1 0.605812 8.48644e-07 1.48752e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| have had on ||| 0.0487805 0.22993 1.69729e-06 9.96917e-07 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| have had with ||| 0.0163934 0.0535436 8.48644e-07 1.39954e-07 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| have happened in ||| 0.0606061 0.605812 1.69729e-06 3.41862e-07 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| have heard in ||| 0.0909091 0.605812 2.54593e-06 4.37407e-07 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| have heard it on ||| 1 0.22993 8.48644e-07 1.39891e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have heard over ||| 0.142857 0.157937 8.48644e-07 3.79568e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| have here in ||| 0.125 0.605812 8.48644e-07 1.11992e-05 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| have imposed on themselves during ||| 1 0.226251 8.48644e-07 5.54763e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have in each other ||| 1 0.605812 8.48644e-07 2.00835e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| have in each ||| 1 0.605812 8.48644e-07 1.55025e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| have in front ||| 0.0333333 0.605812 8.48644e-07 4.45138e-07 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| have in mind ||| 0.0319149 0.605812 5.09187e-06 1.3912e-06 2.718 ||| 0-1 ||| 188 1.17835e+06 +en ||| have in place ||| 0.0425532 0.605812 1.69729e-06 8.31183e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| have in you ||| 0.5 0.605812 8.48644e-07 1.78315e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| have in ||| 0.219417 0.605812 0.000191794 0.00552281 2.718 ||| 0-1 ||| 1030 1.17835e+06 +en ||| have included in ||| 0.1 0.605812 8.48644e-07 5.18592e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| have increased in size ||| 1 0.605812 8.48644e-07 1.02657e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have increased in ||| 0.0769231 0.605812 8.48644e-07 2.74484e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| have insisted ||| 0.0227273 0.173861 8.48644e-07 1.18043e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| have into ||| 1 0.525896 8.48644e-07 0.000264758 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| have it in ||| 0.0625 0.605812 1.69729e-06 9.82132e-05 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| have it within ||| 0.5 0.369196 8.48644e-07 2.35796e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| have it worked out in ||| 1 0.605812 8.48644e-07 1.63645e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have joined ||| 0.00595238 0.0581879 8.48644e-07 1.13977e-06 2.718 ||| 0-1 ||| 168 1.17835e+06 +en ||| have led to ||| 0.00265957 0.0247351 8.48644e-07 3.08604e-08 2.718 ||| 0-2 ||| 376 1.17835e+06 +en ||| have left since ||| 0.333333 0.0075235 8.48644e-07 3.91972e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| have left their mark on ||| 0.166667 0.22993 8.48644e-07 1.18089e-14 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| have legal bases in ||| 0.5 0.605812 8.48644e-07 4.86714e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have liked to ||| 0.0188679 0.0247351 8.48644e-07 5.68127e-09 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| have made arrangements to ||| 0.333333 0.0247351 8.48644e-07 3.09147e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| have made during ||| 0.166667 0.226251 8.48644e-07 7.24369e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| have made here today , ||| 0.333333 0.0398284 8.48644e-07 7.30901e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| have made here today ||| 0.25 0.0398284 8.48644e-07 6.12891e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| have made here ||| 0.111111 0.0855319 8.48644e-07 7.51627e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| have made in the ||| 0.04 0.605812 8.48644e-07 7.10253e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| have made in ||| 0.0933333 0.605812 5.94051e-06 1.15692e-05 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| have made regarding ||| 0.2 0.140669 8.48644e-07 4.74261e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| have made the ||| 0.00917431 0.0033766 8.48644e-07 8.84017e-08 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| have made to ||| 0.0133333 0.0247351 8.48644e-07 7.04208e-07 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| have made ||| 0.00092081 0.0033766 1.69729e-06 1.43996e-06 2.718 ||| 0-1 ||| 2172 1.17835e+06 +en ||| have managed to achieve in ||| 0.333333 0.605812 8.48644e-07 6.29081e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| have meant that ||| 0.015873 0.0017499 8.48644e-07 9.9378e-10 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| have much more of it in ||| 1 0.605812 8.48644e-07 1.22384e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| have my name on ||| 0.333333 0.22993 8.48644e-07 5.58271e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| have no place in ||| 0.0185185 0.605812 8.48644e-07 6.46993e-09 2.718 ||| 0-3 ||| 54 1.17835e+06 +en ||| have no voice in ||| 0.333333 0.605812 8.48644e-07 1.87005e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| have not been fulfilled in ||| 1 0.605812 8.48644e-07 7.24063e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have not even considered ||| 1 0.0169998 8.48644e-07 1.8262e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have not to ||| 0.5 0.0247351 8.48644e-07 1.14772e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| have not yet been set up in ||| 1 0.605812 8.48644e-07 3.31919e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| have noted during ||| 1 0.226251 8.48644e-07 1.05813e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have now become ||| 0.0149254 0.219193 8.48644e-07 9.41957e-08 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| have now been completed concerning ||| 1 0.0888235 8.48644e-07 3.05071e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have now been completed ||| 0.111111 0.0123946 8.48644e-07 7.23452e-13 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| have now been printed in ||| 1 0.605812 8.48644e-07 2.31728e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have now been ||| 0.00367647 0.0123946 8.48644e-07 2.36422e-08 2.718 ||| 0-1 ||| 272 1.17835e+06 +en ||| have now in ||| 1 0.605812 8.48644e-07 1.13764e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have now reached ||| 0.0232558 0.0123946 8.48644e-07 7.64662e-10 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| have now ||| 0.00694444 0.0123946 4.24322e-06 7.0802e-06 2.718 ||| 0-1 ||| 720 1.17835e+06 +en ||| have occurred in ||| 0.025974 0.605812 1.69729e-06 2.34719e-07 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| have occurred with ||| 0.333333 0.0535436 8.48644e-07 5.92612e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| have of ||| 0.015873 0.0116562 1.69729e-06 0.000163096 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| have often been able to avoid ||| 1 0.0247351 8.48644e-07 4.34716e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have often been able to ||| 1 0.0247351 8.48644e-07 1.23149e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have on the ||| 0.00609756 0.22993 8.48644e-07 6.09769e-05 2.718 ||| 0-1 ||| 164 1.17835e+06 +en ||| have on ||| 0.141949 0.22993 5.68592e-05 0.000993242 2.718 ||| 0-1 ||| 472 1.17835e+06 +en ||| have one 's say in the EU ||| 1 0.605812 8.48644e-07 1.27278e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have one 's say in the ||| 1 0.605812 8.48644e-07 2.57231e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have one 's say in ||| 1 0.605812 8.48644e-07 4.18999e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have one in the ||| 1 0.605812 8.48644e-07 1.41318e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have one in ||| 0.142857 0.605812 8.48644e-07 2.30191e-05 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| have only relatively recently got under ||| 0.5 0.205566 8.48644e-07 8.28797e-21 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| have operated by means of ||| 0.333333 0.0468744 8.48644e-07 4.03087e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| have operated by means ||| 0.333333 0.0468744 8.48644e-07 7.41459e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| have operated by ||| 0.333333 0.0468744 8.48644e-07 1.17005e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| have over ||| 0.0789474 0.157937 2.54593e-06 4.79253e-05 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| have participated in ||| 0.0140845 0.605812 8.48644e-07 1.98821e-08 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| have played a part in ||| 0.111111 0.605812 8.48644e-07 1.43884e-11 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| have played in ||| 0.0714286 0.605812 8.48644e-07 2.72275e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| have problems in ||| 0.105263 0.605812 1.69729e-06 7.41161e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| have progressed in ||| 0.5 0.605812 8.48644e-07 1.3807e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| have proposed in ||| 0.0833333 0.605812 8.48644e-07 6.16346e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| have put forward in ||| 0.125 0.605812 8.48644e-07 3.38817e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| have put forward with ||| 1 0.0535436 8.48644e-07 8.55434e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have put in ||| 0.0487805 0.605812 1.69729e-06 6.08945e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| have raised in ||| 0.0666667 0.605812 8.48644e-07 6.36228e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| have raised it again on ||| 1 0.22993 8.48644e-07 1.17671e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have reached ||| 0.0123203 0.0055926 5.09187e-06 4.23377e-07 2.718 ||| 0-1 ||| 487 1.17835e+06 +en ||| have reactors at ||| 0.5 0.321886 8.48644e-07 5.26258e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| have recently been increased ||| 0.5 0.0095755 8.48644e-07 1.21471e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| have recently been ||| 0.0147059 0.0095755 8.48644e-07 2.44409e-09 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| have recently ||| 0.00628931 0.0095755 8.48644e-07 7.3194e-07 2.718 ||| 0-1 ||| 159 1.17835e+06 +en ||| have recognized ||| 0.0344828 0.0069541 8.48644e-07 4.06633e-08 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| have referred to that in ||| 0.5 0.605812 8.48644e-07 7.90018e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| have registered in ||| 1 0.605812 8.48644e-07 6.18555e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have reigned in ||| 0.333333 0.605812 8.48644e-07 6.07509e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| have remained caught up in ||| 1 0.605812 8.48644e-07 8.08704e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have reported different commission rates when ||| 1 0.142731 8.48644e-07 6.64485e-23 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| have resulted in ||| 0.0060241 0.605812 8.48644e-07 1.41384e-07 2.718 ||| 0-2 ||| 166 1.17835e+06 +en ||| have said in ||| 0.107143 0.605812 2.54593e-06 2.27153e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| have said on a ||| 1 0.22993 8.48644e-07 1.8108e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have said on ||| 0.0869565 0.22993 1.69729e-06 4.08521e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| have said to ||| 0.0277778 0.0247351 8.48644e-07 1.38267e-07 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| have said tonight in ||| 1 0.605812 8.48644e-07 2.13524e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have seen during Euro 2000 ||| 0.25 0.226251 8.48644e-07 1.97056e-18 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| have seen during Euro ||| 0.25 0.226251 8.48644e-07 6.84222e-14 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| have seen during ||| 0.2 0.226251 8.48644e-07 7.27896e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| have seen in ||| 0.025974 0.605812 1.69729e-06 1.16255e-06 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| have seen it in ||| 0.166667 0.605812 8.48644e-07 2.06739e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| have seen with ||| 0.0833333 0.0535436 8.48644e-07 2.93517e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| have shown on ||| 0.25 0.22993 8.48644e-07 1.03694e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| have so far ||| 0.00746269 0.0087276 8.48644e-07 5.56115e-09 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| have so ||| 0.0142857 0.0087276 1.69729e-06 8.14582e-06 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| have some situations in ||| 0.5 0.605812 8.48644e-07 2.05747e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have some truth in ||| 0.5 0.605812 8.48644e-07 1.47392e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have sometimes described as push ||| 0.5 0.066968 8.48644e-07 1.50165e-17 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have sometimes described as ||| 0.5 0.066968 8.48644e-07 5.4211e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have spoken in ||| 0.0117647 0.605812 8.48644e-07 1.23159e-07 2.718 ||| 0-2 ||| 85 1.17835e+06 +en ||| have stated in ||| 0.2 0.605812 1.69729e-06 3.44071e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| have stepped into ||| 0.5 0.525896 8.48644e-07 2.48872e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| have stepped out into ||| 0.5 0.525896 8.48644e-07 9.5328e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have stopped ringing in ||| 1 0.605812 8.48644e-07 1.6701e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have strength in numbers ||| 1 0.605812 8.48644e-07 6.69762e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have strength in ||| 0.25 0.605812 8.48644e-07 1.36966e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| have stressed factual information and education ||| 1 0.127203 8.48644e-07 4.73264e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| have stressed factual information and ||| 1 0.127203 8.48644e-07 1.40019e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| have stressed factual information ||| 1 0.127203 8.48644e-07 1.11784e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| have stressed factual ||| 1 0.127203 8.48644e-07 6.7543e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| have stressed ||| 0.00847458 0.127203 8.48644e-07 2.70172e-06 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| have subsequently ||| 0.0454545 0.0293803 8.48644e-07 4.47297e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| have suffered in ||| 0.0833333 0.605812 8.48644e-07 1.8888e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| have tabled this amendment ||| 0.5 0.0050742 8.48644e-07 3.39668e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have taken in ||| 0.0384615 0.605812 8.48644e-07 5.03404e-06 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| have taken on and ||| 1 0.22993 8.48644e-07 1.13402e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have taken on ||| 0.0175439 0.22993 8.48644e-07 9.0534e-07 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| have taken place at ||| 0.0526316 0.321886 8.48644e-07 6.56295e-10 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| have taken place in ||| 0.0558376 0.605812 9.33509e-06 7.57623e-09 2.718 ||| 0-3 ||| 197 1.17835e+06 +en ||| have taken place ||| 0.00140449 0.0042106 8.48644e-07 1.60376e-09 2.718 ||| 0-1 ||| 712 1.17835e+06 +en ||| have taken refuge in ||| 0.2 0.605812 8.48644e-07 1.25851e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| have taken their seats in ||| 0.105263 0.605812 1.69729e-06 5.65991e-14 2.718 ||| 0-4 ||| 19 1.17835e+06 +en ||| have taken when ||| 1 0.142731 8.48644e-07 6.48991e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have taken ||| 0.000548847 0.0042106 8.48644e-07 1.06562e-06 2.718 ||| 0-1 ||| 1822 1.17835e+06 +en ||| have that in ||| 0.25 0.605812 8.48644e-07 9.29025e-05 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| have that out in ||| 1 0.605812 8.48644e-07 3.55854e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have the skills needed for types of ||| 1 0.0286209 8.48644e-07 3.3734e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have the skills needed for types ||| 1 0.0286209 8.48644e-07 6.20522e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have the skills needed for ||| 1 0.0286209 8.48644e-07 1.34603e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have the upper hand in ||| 0.333333 0.605812 8.48644e-07 1.50606e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| have the ||| 0.000402685 0.0011669 2.54593e-06 3.42612e-05 2.718 ||| 0-1 ||| 7450 1.17835e+06 +en ||| have them , in ||| 0.5 0.605812 8.48644e-07 1.76668e-06 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have them in ||| 0.166667 0.605812 8.48644e-07 1.48144e-05 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| have therefore ||| 0.003367 0.0081305 8.48644e-07 1.03847e-05 2.718 ||| 0-1 ||| 297 1.17835e+06 +en ||| have this time schedule on ||| 1 0.22993 8.48644e-07 3.79296e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have thus focused on the man instead ||| 1 0.22993 8.48644e-07 2.9765e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have thus focused on the man ||| 1 0.22993 8.48644e-07 1.47424e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have thus focused on the ||| 1 0.22993 8.48644e-07 2.31435e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have thus focused on ||| 1 0.22993 8.48644e-07 3.76981e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have thus ||| 0.0142857 0.0107888 8.48644e-07 1.74972e-06 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| have time for ||| 0.1 0.0286209 8.48644e-07 2.25898e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| have to achieve in ||| 1 0.605812 8.48644e-07 1.12136e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| have to be discussed in ||| 0.333333 0.605812 8.48644e-07 4.66922e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| have to be made on ||| 0.25 0.22993 1.69729e-06 3.3506e-09 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| have to be primarily centred on ||| 1 0.22993 8.48644e-07 8.34932e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| have to be reduced ||| 0.0416667 0.0247351 8.48644e-07 2.85123e-10 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| have to be seen in relative terms ||| 1 0.605812 8.48644e-07 1.84937e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have to be seen in relative ||| 1 0.605812 8.48644e-07 1.68492e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have to be seen in ||| 0.333333 0.605812 8.48644e-07 1.87214e-09 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| have to be signed ||| 0.333333 0.0247351 8.48644e-07 1.88254e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| have to be ||| 0.00158165 0.0247351 3.39458e-06 6.09237e-06 2.718 ||| 0-1 ||| 2529 1.17835e+06 +en ||| have to break things down in ||| 0.5 0.605812 8.48644e-07 4.09742e-15 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| have to call ||| 0.111111 0.0247351 8.48644e-07 7.46297e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| have to cover ||| 0.125 0.0247351 8.48644e-07 2.62548e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| have to deal in ||| 0.333333 0.605812 8.48644e-07 2.08371e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| have to deal with ||| 0.00724638 0.0535436 8.48644e-07 5.26089e-09 2.718 ||| 0-3 ||| 138 1.17835e+06 +en ||| have to do in ||| 0.0909091 0.605812 8.48644e-07 1.68586e-06 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| have to do ||| 0.00257732 0.0247351 8.48644e-07 1.15484e-06 2.718 ||| 0-1 ||| 388 1.17835e+06 +en ||| have to offer ||| 0.0384615 0.0247351 8.48644e-07 3.84578e-08 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| have to pick up ||| 0.5 0.0247351 8.48644e-07 2.27008e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| have to pick ||| 0.333333 0.0247351 8.48644e-07 6.65616e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| have to play in ||| 0.4 0.605812 1.69729e-06 1.26613e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| have to put to ||| 0.5 0.0247351 8.48644e-07 3.29362e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| have to put ||| 0.0204082 0.0247351 8.48644e-07 3.70661e-07 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| have to report ||| 0.142857 0.0247351 8.48644e-07 1.37796e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| have to say , I regard ||| 0.5 0.0247351 8.48644e-07 1.84552e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| have to say , I ||| 0.5 0.0247351 8.48644e-07 2.71041e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| have to say , in ||| 0.5 0.605812 8.48644e-07 5.59371e-08 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| have to say , ||| 0.0192308 0.0247351 8.48644e-07 3.83178e-08 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| have to say on ||| 0.0833333 0.22993 8.48644e-07 8.43567e-08 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| have to say ||| 0.00208333 0.0247351 8.48644e-07 3.21311e-07 2.718 ||| 0-1 ||| 480 1.17835e+06 +en ||| have to set aside ||| 0.333333 0.0247351 8.48644e-07 1.38503e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| have to set ||| 0.0588235 0.0247351 8.48644e-07 1.96458e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| have to strike ||| 0.125 0.0247351 8.48644e-07 1.07574e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| have to take ||| 0.00324675 0.0247351 8.48644e-07 5.41233e-07 2.718 ||| 0-1 ||| 308 1.17835e+06 +en ||| have to think of ||| 0.0909091 0.0116562 8.48644e-07 5.54334e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| have to wait until ||| 0.0454545 0.0092136 8.48644e-07 1.67858e-12 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| have to ||| 0.00579683 0.0247351 5.34646e-05 0.00033617 2.718 ||| 0-1 ||| 10868 1.17835e+06 +en ||| have today ||| 0.00578035 0.0398284 8.48644e-07 1.44283e-05 2.718 ||| 0-1 ||| 173 1.17835e+06 +en ||| have tried to ||| 0.00460829 0.0247351 8.48644e-07 1.34132e-08 2.718 ||| 0-2 ||| 217 1.17835e+06 +en ||| have turned out ||| 0.04 0.0120599 8.48644e-07 3.69355e-10 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| have tutelage over the ||| 1 0.157937 8.48644e-07 1.17689e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have tutelage over ||| 1 0.157937 8.48644e-07 1.91701e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have undertaken in ||| 0.2 0.605812 8.48644e-07 2.62333e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| have undertaken within ||| 1 0.369196 8.48644e-07 6.29825e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| have us do , within ||| 1 0.369196 8.48644e-07 1.56563e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have various ||| 0.047619 0.0007052 8.48644e-07 8.13266e-08 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| have very serious consequences for ||| 0.2 0.0286209 8.48644e-07 2.3441e-15 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| have voted ||| 0.00137741 0.122467 8.48644e-07 2.65137e-05 2.718 ||| 0-1 ||| 726 1.17835e+06 +en ||| have wished for ||| 0.0769231 0.0286209 8.48644e-07 2.17408e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| have with ||| 0.0437158 0.0535436 6.78915e-06 0.000139438 2.718 ||| 0-1 ||| 183 1.17835e+06 +en ||| have within a ||| 0.333333 0.369196 8.48644e-07 5.87737e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| have within ||| 0.384615 0.369196 4.24322e-06 0.000132595 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| have worked at ||| 0.5 0.321886 8.48644e-07 2.08111e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| have worked in ||| 0.0232558 0.605812 8.48644e-07 2.40242e-07 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| have worked on ||| 0.0106383 0.22993 8.48644e-07 4.3206e-08 2.718 ||| 0-2 ||| 94 1.17835e+06 +en ||| have you take it on trust ||| 1 0.22993 8.48644e-07 1.75369e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have you take it on ||| 1 0.22993 8.48644e-07 9.18161e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| have ||| 3.18078e-05 4.66e-05 4.24322e-06 1.09e-05 2.718 ||| 0-0 ||| 157194 1.17835e+06 +en ||| haven where ||| 1 0.247783 8.48644e-07 2.72531e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| having , by ||| 0.5 0.0468744 8.48644e-07 3.88457e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| having a go at ||| 0.125 0.321886 8.48644e-07 3.97037e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| having a severe impact with ||| 1 0.0535436 8.48644e-07 2.11968e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| having an impact on ||| 0.0625 0.22993 8.48644e-07 1.16463e-11 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| having been at ||| 0.333333 0.321886 8.48644e-07 5.11457e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| having been in ||| 0.0526316 0.605812 8.48644e-07 5.90424e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| having been used to decide on ||| 0.5 0.22993 8.48644e-07 2.59461e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| having changed the mood in the EU ||| 1 0.605812 8.48644e-07 7.3321e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| having changed the mood in the ||| 1 0.605812 8.48644e-07 1.48183e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| having changed the mood in ||| 1 0.605812 8.48644e-07 2.41373e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| having come to ||| 0.1 0.0156452 8.48644e-07 1.83579e-09 2.718 ||| 0-0 0-2 ||| 10 1.17835e+06 +en ||| having had appropriate access to ||| 0.5 0.0247351 8.48644e-07 1.25045e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| having identified these excesses ||| 1 0.0065553 8.48644e-07 6.75508e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| having identified these ||| 1 0.0065553 8.48644e-07 3.07049e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| having identified ||| 0.2 0.0065553 8.48644e-07 2.96065e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| having in ||| 0.04 0.605812 8.48644e-07 0.000176816 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| having it ready for ||| 1 0.0286209 8.48644e-07 3.47051e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| having on ||| 0.173077 0.22993 7.6378e-06 3.17992e-05 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| having said ||| 0.000977517 0.0065553 8.48644e-07 3.1629e-08 2.718 ||| 0-0 ||| 1023 1.17835e+06 +en ||| having such a directive on ||| 1 0.22993 8.48644e-07 3.25444e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| having the ||| 0.00183486 0.0011669 8.48644e-07 1.09689e-06 2.718 ||| 0-1 ||| 545 1.17835e+06 +en ||| having to be taken of ||| 1 0.0116562 8.48644e-07 7.66454e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| having to endure ||| 0.0833333 0.0247351 8.48644e-07 6.24235e-11 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| having to foot a ||| 1 0.0247351 8.48644e-07 1.06385e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| having to foot ||| 0.166667 0.0247351 8.48644e-07 2.40007e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| having to go ||| 0.0555556 0.0065553 8.48644e-07 3.99605e-09 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| having to ||| 0.00591716 0.0247351 5.94051e-06 1.07627e-05 2.718 ||| 0-1 ||| 1183 1.17835e+06 +en ||| having ||| 0.00424929 0.0065553 4.58268e-05 7.69e-05 2.718 ||| 0-0 ||| 12708 1.17835e+06 +en ||| havoc in ||| 0.111111 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| hazardous substances in ||| 0.0169492 0.605812 8.48644e-07 2.49362e-11 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| he 's planning to ||| 0.5 0.0247351 8.48644e-07 1.3127e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| he , ||| 0.0204082 0.0056615 1.69729e-06 1.6314e-05 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| he adopted ||| 0.142857 0.0056615 8.48644e-07 2.79072e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| he also ||| 0.005 0.0056615 8.48644e-07 6.90648e-07 2.718 ||| 0-0 ||| 200 1.17835e+06 +en ||| he became a ||| 0.166667 0.137638 8.48644e-07 9.81778e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| he became ||| 0.0434783 0.137638 8.48644e-07 2.21491e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| he can , in ||| 1 0.605812 8.48644e-07 1.42943e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| he cannot be here now ||| 1 0.0855319 8.48644e-07 2.20209e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| he cannot be here ||| 0.25 0.0855319 8.48644e-07 1.06903e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| he deserved ||| 0.0769231 0.0056615 8.48644e-07 1.5048e-10 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| he did at ||| 0.5 0.321886 8.48644e-07 1.5856e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| he did for us in ||| 1 0.605812 8.48644e-07 4.05467e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| he did ||| 0.00389105 0.0056615 8.48644e-07 6.21346e-08 2.718 ||| 0-0 ||| 257 1.17835e+06 +en ||| he find such alternative sources ? in ||| 1 0.605812 8.48644e-07 4.10239e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| he gave on ||| 0.25 0.22993 8.48644e-07 6.05177e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| he gave to ||| 0.0625 0.0247351 8.48644e-07 2.04826e-09 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| he gave us in ||| 0.5 0.605812 8.48644e-07 9.69866e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| he goes on ||| 0.111111 0.22993 8.48644e-07 1.0038e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| he had already made ||| 0.166667 0.0056615 8.48644e-07 1.33201e-13 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| he had already ||| 0.125 0.0056615 8.48644e-07 6.35865e-11 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| he had in ||| 0.166667 0.605812 8.48644e-07 4.04487e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| he had played in ||| 0.5 0.605812 8.48644e-07 1.99412e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| he had ||| 0.00338409 0.0056615 1.69729e-06 1.37306e-07 2.718 ||| 0-0 ||| 591 1.17835e+06 +en ||| he has , to ||| 0.333333 0.0247351 8.48644e-07 1.50581e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| he has been ||| 0.00338983 0.0056615 8.48644e-07 2.35139e-09 2.718 ||| 0-0 ||| 295 1.17835e+06 +en ||| he has consistently adopted ||| 1 0.0056615 8.48644e-07 1.91058e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| he has consistently ||| 1 0.0056615 8.48644e-07 9.36557e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| he has done during ||| 0.333333 0.226251 8.48644e-07 5.92269e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| he has done for the Community on ||| 1 0.22993 8.48644e-07 1.29957e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| he has given in ||| 0.5 0.605812 8.48644e-07 1.42368e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| he has given me which , in ||| 1 0.605812 8.48644e-07 8.68357e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| he has in ||| 0.0909091 0.605812 8.48644e-07 2.07442e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| he has made in ||| 0.0526316 0.605812 8.48644e-07 4.3455e-09 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| he has made to ||| 0.0344828 0.0247351 8.48644e-07 2.64508e-10 2.718 ||| 0-3 ||| 29 1.17835e+06 +en ||| he has not yet answered this ||| 0.5 0.0056615 8.48644e-07 3.24592e-20 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| he has not yet answered ||| 0.5 0.0056615 8.48644e-07 5.02356e-18 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| he has not yet ||| 0.0833333 0.0056615 8.48644e-07 6.35893e-13 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| he has not ||| 0.00746269 0.0056615 8.48644e-07 2.40413e-09 2.718 ||| 0-0 ||| 134 1.17835e+06 +en ||| he has put into ||| 0.0277778 0.525896 1.69729e-06 1.09649e-10 2.718 ||| 0-3 ||| 72 1.17835e+06 +en ||| he has taken ||| 0.0123457 0.0042106 8.48644e-07 4.00257e-10 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| he has ||| 0.00106338 0.0056615 4.24322e-06 7.04178e-07 2.718 ||| 0-0 ||| 4702 1.17835e+06 +en ||| he in ||| 0.1 0.605812 8.48644e-07 0.000402996 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| he intend to do about ||| 0.25 0.0401564 8.48644e-07 6.1005e-14 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| he is in ||| 0.021978 0.605812 1.69729e-06 1.26303e-05 2.718 ||| 0-2 ||| 91 1.17835e+06 +en ||| he is right ||| 0.00719424 0.0071334 8.48644e-07 4.8959e-09 2.718 ||| 0-2 ||| 139 1.17835e+06 +en ||| he is ||| 0.000369822 0.0056615 8.48644e-07 4.28746e-06 2.718 ||| 0-0 ||| 2704 1.17835e+06 +en ||| he made to ||| 0.0526316 0.0247351 8.48644e-07 5.13857e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| he makes in ||| 0.2 0.605812 8.48644e-07 6.84691e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| he makes on as ||| 1 0.148449 8.48644e-07 2.21498e-10 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| he or ||| 0.0169492 0.0056615 1.69729e-06 1.56403e-07 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| he points out in ||| 1 0.605812 8.48644e-07 2.00518e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| he presented to ||| 0.333333 0.0247351 8.48644e-07 1.93297e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| he provided to ||| 1 0.0247351 8.48644e-07 5.6223e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| he puts on ||| 1 0.22993 8.48644e-07 2.39897e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| he received in ||| 0.5 0.605812 8.48644e-07 3.61085e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| he spoke in ||| 0.0769231 0.605812 8.48644e-07 1.05988e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| he was in ||| 0.0357143 0.605812 1.69729e-06 1.26259e-06 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| he was using to refer to ||| 1 0.0247351 8.48644e-07 4.14409e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| he will produce ||| 1 0.0056615 8.48644e-07 1.04738e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| he will ||| 0.0026178 0.0056615 8.48644e-07 1.18348e-06 2.718 ||| 0-0 ||| 382 1.17835e+06 +en ||| he wrote in ||| 0.1 0.605812 8.48644e-07 2.45828e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| he ||| 0.00304719 0.0056615 3.47944e-05 0.0001368 2.718 ||| 0-0 ||| 13455 1.17835e+06 +en ||| head at ||| 0.166667 0.321886 8.48644e-07 2.89214e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| head downwards into ||| 0.333333 0.525896 8.48644e-07 1.76058e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| head for ||| 0.0526316 0.0286209 8.48644e-07 8.31826e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| head in terms of the ||| 1 0.605812 8.48644e-07 1.22304e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| head in terms of ||| 1 0.605812 8.48644e-07 1.99219e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| head in terms ||| 1 0.605812 8.48644e-07 3.66453e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| head in the sand ||| 0.0294118 0.605812 8.48644e-07 5.12419e-12 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| head in the ||| 0.0188679 0.605812 8.48644e-07 2.04967e-06 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| head in ||| 0.0714286 0.605812 5.09187e-06 3.33868e-05 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| head of ||| 0.00172414 0.0116562 8.48644e-07 9.85955e-07 2.718 ||| 0-1 ||| 580 1.17835e+06 +en ||| head on ||| 0.0243902 0.22993 8.48644e-07 6.0044e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| head when ||| 0.142857 0.142731 8.48644e-07 4.30424e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| heading at ||| 0.2 0.321886 8.48644e-07 1.30807e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| heading in ||| 0.0804598 0.605812 5.94051e-06 1.51002e-05 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| headings ||| 0.00242131 0.0056711 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 413 1.17835e+06 +en ||| headline in ||| 0.0833333 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| heads in ||| 0.0410959 0.605812 2.54593e-06 1.34378e-05 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| heads of ||| 0.0016129 0.0116562 8.48644e-07 3.96837e-07 2.718 ||| 0-1 ||| 620 1.17835e+06 +en ||| heads with ||| 0.5 0.0535436 8.48644e-07 3.39274e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| healer ||| 0.5 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| health authorities , where ||| 1 0.247783 8.48644e-07 5.62104e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| health in ||| 0.0265487 0.605812 2.54593e-06 3.8374e-05 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| health of the poor at ||| 0.25 0.321886 8.48644e-07 3.27285e-13 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| health – in ||| 0.5 0.605812 8.48644e-07 1.5081e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| hear , in ||| 0.666667 0.605812 1.69729e-06 5.58956e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| hear complaints when ||| 1 0.142731 8.48644e-07 3.0213e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| hear from ||| 0.00606061 0.0308834 8.48644e-07 3.86218e-07 2.718 ||| 0-1 ||| 165 1.17835e+06 +en ||| hear in ||| 0.111111 0.605812 2.54593e-06 4.68708e-05 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| hear rumours on ||| 1 0.22993 8.48644e-07 1.85447e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| heard as ||| 0.153846 0.066968 1.69729e-06 1.42464e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| heard at ||| 0.0714286 0.321886 1.69729e-06 3.16816e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| heard correctly , I am talking about ||| 1 0.0401564 8.48644e-07 5.11138e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| heard in the ||| 0.0147059 0.605812 8.48644e-07 2.24529e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| heard in ||| 0.0553191 0.605812 1.10324e-05 3.65731e-05 2.718 ||| 0-1 ||| 235 1.17835e+06 +en ||| heard it on ||| 0.5 0.22993 8.48644e-07 1.16968e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| heard on ||| 0.0212766 0.22993 8.48644e-07 6.57743e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| heard over ||| 0.0833333 0.157937 8.48644e-07 3.1737e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| hearing in ||| 0.0384615 0.605812 2.54593e-06 1.21448e-05 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| hearing these in ||| 1 0.605812 8.48644e-07 1.25954e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| hearings on ||| 0.0625 0.22993 8.48644e-07 3.57108e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| heart in ||| 0.0769231 0.605812 8.48644e-07 3.72196e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| heart of ||| 0.00127389 0.0116562 1.69729e-06 1.09914e-06 2.718 ||| 0-1 ||| 1570 1.17835e+06 +en ||| heartened in ||| 1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| heated speeches in ||| 1 0.605812 8.48644e-07 1.20525e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| heaters in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| heavily in ||| 0.0172414 0.605812 8.48644e-07 1.01592e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| heavily on ||| 0.0543478 0.22993 4.24322e-06 1.82706e-06 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| hectares in ||| 0.0769231 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| hedged around with ||| 0.5 0.0535436 8.48644e-07 6.21186e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| heed ||| 0.003861 0.0883838 8.48644e-07 2.38e-05 2.718 ||| 0-0 ||| 259 1.17835e+06 +en ||| heeded instead ||| 0.5 0.141975 8.48644e-07 3.16983e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| heeded ||| 0.0229885 0.141975 1.69729e-06 1.57e-05 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| heel in ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| heels in ||| 0.333333 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| heels on ||| 0.25 0.22993 8.48644e-07 3.57108e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| held as ||| 0.05 0.066968 8.48644e-07 4.58871e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| held at ||| 0.0643275 0.321886 9.33509e-06 1.02045e-05 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| held back on ||| 0.333333 0.22993 8.48644e-07 1.42495e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| held by ||| 0.0126904 0.0468744 4.24322e-06 2.17016e-06 2.718 ||| 0-1 ||| 394 1.17835e+06 +en ||| held during ||| 0.0322581 0.226251 8.48644e-07 7.37571e-07 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| held in Cyprus ' ||| 1 0.605812 8.48644e-07 6.55505e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| held in Cyprus ||| 0.5 0.605812 8.48644e-07 1.90837e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| held in a ||| 0.0344828 0.605812 8.48644e-07 5.2216e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| held in high regard , ||| 0.333333 0.605812 8.48644e-07 1.42812e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| held in high regard ||| 0.166667 0.605812 8.48644e-07 1.19754e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| held in high ||| 0.111111 0.605812 8.48644e-07 1.75876e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| held in order to enable us ||| 1 0.605812 8.48644e-07 1.58433e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| held in order to enable ||| 1 0.605812 8.48644e-07 5.49696e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| held in order to ||| 0.2 0.605812 8.48644e-07 5.57501e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| held in order ||| 0.5 0.605812 8.48644e-07 6.27405e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| held in readiness ||| 1 0.605812 8.48644e-07 4.24081e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| held in ||| 0.0651261 0.605812 7.89239e-05 0.0001178 2.718 ||| 0-1 ||| 1428 1.17835e+06 +en ||| held to ||| 0.016 0.0247351 1.69729e-06 7.17043e-06 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| held under ||| 0.0166667 0.205566 8.48644e-07 1.44249e-06 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| held up at ||| 0.5 0.321886 8.48644e-07 3.48025e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| held up on ||| 0.333333 0.22993 8.48644e-07 7.22536e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| held with a view ||| 1 0.0535436 8.48644e-07 1.19085e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| held with a ||| 0.333333 0.0535436 8.48644e-07 1.31833e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| held with ||| 0.0138889 0.0535436 8.48644e-07 2.97419e-06 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| held within ||| 0.0487805 0.369196 1.69729e-06 2.82822e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| held ||| 0.00245329 0.0032035 1.10324e-05 1.77e-05 2.718 ||| 0-0 ||| 5299 1.17835e+06 +en ||| helm in ||| 0.25 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| help as ||| 0.0285714 0.066968 8.48644e-07 3.43029e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| help at ||| 0.0333333 0.321886 8.48644e-07 7.62838e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| help bring about more ||| 1 0.0222258 8.48644e-07 5.66075e-14 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| help from ||| 0.00588235 0.0308834 8.48644e-07 7.25633e-07 2.718 ||| 0-1 ||| 170 1.17835e+06 +en ||| help him in ||| 0.142857 0.605812 8.48644e-07 2.82326e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| help if Parliament ||| 0.5 0.0178573 8.48644e-07 1.26921e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| help if they are ||| 0.5 0.0178573 8.48644e-07 1.09505e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| help if they ||| 0.333333 0.0178573 8.48644e-07 7.21725e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| help if ||| 0.0606061 0.0178573 1.69729e-06 2.21117e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| help in ||| 0.00728597 0.605812 3.39458e-06 8.80617e-05 2.718 ||| 0-1 ||| 549 1.17835e+06 +en ||| help of which one jumps up in ||| 1 0.605812 8.48644e-07 2.31231e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| help on ||| 0.0555556 0.22993 8.48644e-07 1.58373e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| help thinking about ||| 0.333333 0.0428633 8.48644e-07 7.99625e-11 2.718 ||| 0-1 0-2 ||| 3 1.17835e+06 +en ||| help to ||| 0.000971817 0.0247351 1.69729e-06 5.36025e-06 2.718 ||| 0-1 ||| 2058 1.17835e+06 +en ||| help where help ||| 0.2 0.247783 8.48644e-07 3.09719e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| help where ||| 0.0666667 0.247783 8.48644e-07 1.62412e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| helped in ||| 0.0175439 0.605812 8.48644e-07 9.14327e-06 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| helped to ||| 0.00171527 0.0247351 8.48644e-07 5.56544e-07 2.718 ||| 0-1 ||| 583 1.17835e+06 +en ||| helpful in ||| 0.00900901 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| helping hand when needed ||| 1 0.142731 8.48644e-07 1.19504e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| helping hand when ||| 0.333333 0.142731 8.48644e-07 8.92488e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| helping to ||| 0.00120627 0.0247351 8.48644e-07 1.06249e-06 2.718 ||| 0-1 ||| 829 1.17835e+06 +en ||| hence adopt the ||| 0.333333 0.0011669 8.48644e-07 7.71636e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| hence fitting in ||| 1 0.605812 8.48644e-07 8.61129e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| hence to ||| 0.0169492 0.0247351 8.48644e-07 7.28005e-07 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| hence we in ||| 1 0.605812 8.48644e-07 1.35775e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| hence ||| 0.00149701 0.0144794 3.39458e-06 6.4e-05 2.718 ||| 0-0 ||| 2672 1.17835e+06 +en ||| henceforth places ||| 0.5 0.172628 8.48644e-07 3.99395e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| henceforth ||| 0.0130435 0.172628 2.54593e-06 7.55e-05 2.718 ||| 0-0 ||| 230 1.17835e+06 +en ||| her comment in ||| 1 0.605812 8.48644e-07 5.74223e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| her for ||| 0.0222222 0.0286209 8.48644e-07 3.13056e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| her here on a ||| 1 0.22993 8.48644e-07 2.03115e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| her here on ||| 1 0.22993 8.48644e-07 4.58231e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| her home in ||| 0.333333 0.605812 8.48644e-07 1.27535e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| her in ||| 0.194444 0.605812 1.1881e-05 0.000125651 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| her life in ||| 0.2 0.605812 8.48644e-07 1.90361e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| her of ||| 0.0769231 0.0116562 8.48644e-07 3.71063e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| her on ||| 0.0232558 0.22993 8.48644e-07 2.25975e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| her speech in ||| 0.125 0.605812 8.48644e-07 5.65428e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| her to ||| 0.00869565 0.0247351 8.48644e-07 7.64827e-06 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| her ||| 0.000186759 0.0003883 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 10709 1.17835e+06 +en ||| here , as a ||| 0.166667 0.066968 8.48644e-07 1.92814e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| here , as ||| 0.00862069 0.066968 8.48644e-07 4.34992e-06 2.718 ||| 0-2 ||| 116 1.17835e+06 +en ||| here , however , that ||| 0.333333 0.0855319 8.48644e-07 7.95017e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| here , however , ||| 0.0285714 0.0855319 8.48644e-07 4.72617e-08 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| here , however ||| 0.0526316 0.0855319 1.69729e-06 3.96309e-07 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| here , in the ||| 0.016129 0.605812 8.48644e-07 6.85563e-06 2.718 ||| 0-2 ||| 62 1.17835e+06 +en ||| here , in ||| 0.0566038 0.605812 1.01837e-05 0.00011167 2.718 ||| 0-2 ||| 212 1.17835e+06 +en ||| here , of ||| 0.04 0.0116562 8.48644e-07 3.29776e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| here , on ||| 0.238095 0.22993 4.24322e-06 2.00832e-05 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| here , was important ||| 0.5 0.0855319 8.48644e-07 4.29982e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| here , was ||| 0.2 0.0855319 8.48644e-07 1.12091e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| here , with ||| 0.027027 0.0535436 8.48644e-07 2.81941e-06 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| here , within ||| 0.333333 0.369196 8.48644e-07 2.68104e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| here , ||| 0.00559067 0.0855319 1.95188e-05 0.000357776 2.718 ||| 0-0 ||| 4114 1.17835e+06 +en ||| here - and ||| 0.015873 0.0855319 8.48644e-07 1.41752e-07 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| here - in ||| 0.181818 0.605812 1.69729e-06 3.53219e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| here - ||| 0.019802 0.0855319 6.78915e-06 1.13167e-05 2.718 ||| 0-0 ||| 404 1.17835e+06 +en ||| here . ||| 0.000276472 0.0427974 8.48644e-07 2.43008e-07 2.718 ||| 0-0 0-1 ||| 3617 1.17835e+06 +en ||| here I have ||| 0.0285714 0.0855319 8.48644e-07 2.53801e-07 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| here I ||| 0.00248756 0.0855319 8.48644e-07 2.12212e-05 2.718 ||| 0-0 ||| 402 1.17835e+06 +en ||| here a ||| 0.00840336 0.0855319 8.48644e-07 0.000132982 2.718 ||| 0-0 ||| 119 1.17835e+06 +en ||| here across ||| 1 0.274879 8.48644e-07 4.16571e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| here and everywhere else ||| 0.111111 0.256283 8.48644e-07 1.47672e-12 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| here and everywhere ||| 0.111111 0.256283 8.48644e-07 1.25146e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| here and now , in ||| 0.125 0.605812 8.48644e-07 2.88132e-09 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| here and now on ||| 0.2 0.22993 8.48644e-07 4.34522e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| here and there in ||| 0.142857 0.605812 1.69729e-06 3.59537e-08 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| here and there ||| 0.0182927 0.0855319 2.54593e-06 1.15191e-07 2.718 ||| 0-0 ||| 164 1.17835e+06 +en ||| here and ||| 0.0101146 0.0855319 1.27297e-05 3.7579e-05 2.718 ||| 0-0 ||| 1483 1.17835e+06 +en ||| here are ' at ||| 1 0.321886 8.48644e-07 4.2275e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| here are just a ||| 0.25 0.0855319 8.48644e-07 2.54572e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| here are just ||| 0.0833333 0.0855319 8.48644e-07 5.74321e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| here are ||| 0.00381679 0.0855319 8.48644e-07 4.55196e-05 2.718 ||| 0-0 ||| 262 1.17835e+06 +en ||| here as consisting of ||| 0.333333 0.0116562 8.48644e-07 3.04758e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| here as we did in ||| 1 0.605812 8.48644e-07 4.92697e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| here as well , in ||| 1 0.605812 8.48644e-07 1.80683e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| here as ||| 0.00724638 0.0762499 1.69729e-06 5.39655e-05 2.718 ||| 0-0 0-1 ||| 276 1.17835e+06 +en ||| here at all ||| 0.0625 0.0855319 8.48644e-07 5.93634e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| here at communal ||| 0.25 0.321886 8.48644e-07 2.35237e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| here at ||| 0.0995851 0.321886 2.03675e-05 8.11161e-05 2.718 ||| 0-1 ||| 241 1.17835e+06 +en ||| here before ||| 0.00970874 0.0855319 8.48644e-07 7.50325e-07 2.718 ||| 0-0 ||| 103 1.17835e+06 +en ||| here by ||| 0.00671141 0.0468744 8.48644e-07 1.72507e-05 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| here during ||| 0.0952381 0.226251 1.69729e-06 5.86298e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| here for the ||| 0.0114943 0.0286209 8.48644e-07 1.43229e-06 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| here for ||| 0.0168067 0.0286209 5.09187e-06 2.33302e-05 2.718 ||| 0-1 ||| 357 1.17835e+06 +en ||| here in Europe . ||| 0.0125 0.605812 8.48644e-07 1.4352e-09 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| here in Europe we ||| 0.166667 0.605812 8.48644e-07 5.37893e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| here in Europe ||| 0.00653595 0.605812 1.69729e-06 4.73818e-07 2.718 ||| 0-1 ||| 306 1.17835e+06 +en ||| here in Parliament ||| 0.00206398 0.605812 1.69729e-06 5.37493e-07 2.718 ||| 0-1 ||| 969 1.17835e+06 +en ||| here in Strasbourg ||| 0.0026738 0.605812 8.48644e-07 8.80216e-09 2.718 ||| 0-1 ||| 374 1.17835e+06 +en ||| here in our ||| 0.0357143 0.605812 8.48644e-07 1.29167e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| here in thinking ||| 1 0.345672 8.48644e-07 1.02657e-07 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| here in ||| 0.190087 0.605812 0.000592354 0.0009364 2.718 ||| 0-1 ||| 3672 1.17835e+06 +en ||| here is important enough ||| 1 0.0855319 8.48644e-07 5.95852e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| here is important ||| 0.5 0.0855319 8.48644e-07 3.60685e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| here is ||| 0.00130378 0.0855319 1.69729e-06 9.40264e-05 2.718 ||| 0-0 ||| 1534 1.17835e+06 +en ||| here it ||| 0.0196078 0.0855319 8.48644e-07 5.33514e-05 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| here nor there ||| 0.5 0.0855319 8.48644e-07 4.90158e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| here nor ||| 0.142857 0.0855319 8.48644e-07 1.59905e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| here now ||| 0.0178571 0.0855319 8.48644e-07 6.17991e-06 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| here of ||| 0.0507246 0.048594 5.94051e-06 4.09124e-05 2.718 ||| 0-0 0-1 ||| 138 1.17835e+06 +en ||| here on a ||| 0.05 0.22993 8.48644e-07 7.46471e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| here on the basis of ||| 0.333333 0.22993 8.48644e-07 3.33748e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| here on the basis ||| 0.2 0.22993 8.48644e-07 6.13913e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| here on the ||| 0.0142857 0.22993 8.48644e-07 1.03387e-05 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| here on ||| 0.0714286 0.22993 1.78215e-05 0.000168406 2.718 ||| 0-1 ||| 294 1.17835e+06 +en ||| here or somewhere else . in ||| 1 0.605812 8.48644e-07 7.84434e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| here over ||| 0.047619 0.157937 8.48644e-07 8.1258e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| here that I ||| 0.0555556 0.0017499 8.48644e-07 1.4992e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| here that ||| 0.0015949 0.0017499 8.48644e-07 2.11946e-06 2.718 ||| 0-1 ||| 627 1.17835e+06 +en ||| here the national state is ||| 1 0.0855319 8.48644e-07 1.87369e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| here the national state ||| 1 0.0855319 8.48644e-07 5.97837e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| here the national ||| 1 0.0855319 8.48644e-07 2.36673e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| here the ||| 0.00304878 0.0855319 8.48644e-07 0.000184182 2.718 ||| 0-0 ||| 328 1.17835e+06 +en ||| here through ||| 0.0666667 0.0366102 8.48644e-07 1.90694e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| here to gain master ||| 0.5 0.0855319 8.48644e-07 5.95014e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| here to gain master ’ ||| 0.5 0.0855319 8.48644e-07 1.03657e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| here to gain ||| 0.5 0.0855319 8.48644e-07 1.48754e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| here to introduce ||| 1 0.0855319 8.48644e-07 1.36224e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| here to ||| 0.0107843 0.0855319 9.33509e-06 0.000266583 2.718 ||| 0-0 ||| 1020 1.17835e+06 +en ||| here today , ||| 0.0026455 0.0398284 8.48644e-07 2.91737e-07 2.718 ||| 0-1 ||| 378 1.17835e+06 +en ||| here today in ||| 0.0188679 0.605812 8.48644e-07 4.22597e-07 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| here today ||| 0.000512295 0.0398284 8.48644e-07 2.44634e-06 2.718 ||| 0-1 ||| 1952 1.17835e+06 +en ||| here too ||| 0.00318471 0.0855319 1.69729e-06 4.08314e-06 2.718 ||| 0-0 ||| 628 1.17835e+06 +en ||| here we are in ||| 0.047619 0.605812 8.48644e-07 1.6129e-07 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| here what we did ||| 0.333333 0.0855319 8.48644e-07 2.17048e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| here what we ||| 0.333333 0.0855319 8.48644e-07 4.77868e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| here what ||| 0.0434783 0.0855319 8.48644e-07 4.20944e-06 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| here when he assumes ||| 1 0.142731 8.48644e-07 3.05524e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| here when he ||| 0.5 0.142731 8.48644e-07 1.05353e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| here when ||| 0.02 0.142731 8.48644e-07 1.20721e-05 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| here where ||| 0.0909091 0.166657 8.48644e-07 2.55507e-05 2.718 ||| 0-0 0-1 ||| 11 1.17835e+06 +en ||| here who stand ||| 1 0.0855319 8.48644e-07 4.36075e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| here who ||| 0.015625 0.0855319 8.48644e-07 2.64609e-06 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| here with ||| 0.00543478 0.0535436 1.69729e-06 2.36419e-05 2.718 ||| 0-1 ||| 368 1.17835e+06 +en ||| here within ||| 0.214286 0.369196 2.54593e-06 2.24816e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| here ||| 0.0141077 0.0855319 0.000386133 0.0030001 2.718 ||| 0-0 ||| 32252 1.17835e+06 +en ||| herein ||| 0.0714286 0.142857 8.48644e-07 3.4e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| heritage of ||| 0.0117647 0.0116562 8.48644e-07 1.28188e-07 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| heroin when ||| 1 0.142731 8.48644e-07 8.33462e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hesitate ||| 0.0075188 0.316436 8.48644e-07 0.0001402 2.718 ||| 0-0 ||| 133 1.17835e+06 +en ||| hidden away in ||| 0.0714286 0.605812 8.48644e-07 1.05763e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| hidden in ||| 0.027027 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| hiding behind ||| 0.00917431 0.0374138 8.48644e-07 1.76852e-09 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| hiding up ||| 1 0.0147069 8.48644e-07 5.244e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| high Representative for ||| 0.0833333 0.0286209 8.48644e-07 6.18381e-12 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| high and called ||| 0.5 0.0004659 8.48644e-07 1.04496e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| high and ||| 0.0148148 0.0004659 3.39458e-06 6.01243e-08 2.718 ||| 0-0 ||| 270 1.17835e+06 +en ||| high as ||| 0.0147059 0.066968 1.69729e-06 2.68559e-06 2.718 ||| 0-1 ||| 136 1.17835e+06 +en ||| high ground vis-à-vis ||| 1 0.0566251 8.48644e-07 5.93915e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| high in ||| 0.0192308 0.605812 1.69729e-06 6.89439e-05 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| high mass in ||| 1 0.605812 8.48644e-07 1.08931e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| high on ||| 0.0116732 0.22993 2.54593e-06 1.23991e-05 2.718 ||| 0-1 ||| 257 1.17835e+06 +en ||| high quality in ||| 0.166667 0.605812 2.54593e-06 3.39894e-09 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| high stakes in ||| 1 0.605812 8.48644e-07 2.75776e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| high up on ||| 0.0625 0.22993 8.48644e-07 4.22872e-08 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| high ||| 0.000329408 0.0004659 3.39458e-06 4.8e-06 2.718 ||| 0-0 ||| 12143 1.17835e+06 +en ||| high-level officials in ||| 0.166667 0.605812 8.48644e-07 2.32738e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| high-seas ||| 0.0588235 0.3 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| higher authorities ||| 0.2 0.0015298 8.48644e-07 4.5288e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| higher education ||| 0.00125786 0.0015298 8.48644e-07 2.2984e-10 2.718 ||| 0-0 ||| 795 1.17835e+06 +en ||| higher in ||| 0.0253165 0.605812 1.69729e-06 1.9441e-05 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| higher placing in ||| 0.333333 0.605812 8.48644e-07 4.62695e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| higher ||| 0.000873744 0.0015298 3.39458e-06 6.8e-06 2.718 ||| 0-0 ||| 4578 1.17835e+06 +en ||| highest in ||| 0.0217391 0.605812 8.48644e-07 1.01592e-05 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| highlight , in ||| 0.166667 0.605812 8.48644e-07 1.0298e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| highlight the need to ensure ||| 0.25 0.0247351 8.48644e-07 1.3267e-14 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| highlight the need to ||| 0.025 0.0247351 8.48644e-07 2.95875e-11 2.718 ||| 0-3 ||| 40 1.17835e+06 +en ||| highlighted as and ||| 0.25 0.066968 8.48644e-07 4.55136e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| highlighted as ||| 0.05 0.066968 8.48644e-07 3.63356e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| highlighted by ||| 0.00387597 0.0468744 8.48644e-07 1.71843e-07 2.718 ||| 0-1 ||| 258 1.17835e+06 +en ||| highlighted in ||| 0.0132013 0.605812 3.39458e-06 9.32798e-06 2.718 ||| 0-1 ||| 303 1.17835e+06 +en ||| highlights ||| 0.00125313 0.0050923 1.69729e-06 5.4e-06 2.718 ||| 0-0 ||| 1596 1.17835e+06 +en ||| highly regarded in ||| 0.25 0.605812 8.48644e-07 1.56731e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| hill and ||| 0.0697674 0.0769231 2.54593e-06 6.76399e-08 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| hill ||| 0.0520833 0.0769231 4.24322e-06 5.4e-06 2.718 ||| 0-0 ||| 96 1.17835e+06 +en ||| him at all ||| 0.25 0.321886 8.48644e-07 6.06016e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| him at meetings ||| 0.166667 0.321886 8.48644e-07 2.82142e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| him at ||| 0.166667 0.321886 3.39458e-06 1.28246e-05 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| him for saying ||| 0.5 0.0286209 8.48644e-07 6.54352e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| him for ||| 0.0298507 0.0286209 3.39458e-06 3.68857e-06 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| him in ||| 0.125714 0.605812 1.86702e-05 0.000148047 2.718 ||| 0-1 ||| 175 1.17835e+06 +en ||| him into ||| 0.166667 0.525896 1.69729e-06 7.09722e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| him of it in ||| 1 0.605812 8.48644e-07 1.43127e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| him on ||| 0.0729167 0.22993 5.94051e-06 2.66253e-05 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| him or her in ||| 0.5 0.605812 8.48644e-07 4.60562e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| him say in ||| 0.333333 0.605812 8.48644e-07 1.41503e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| him that our thoughts are with ||| 1 0.0535436 8.48644e-07 1.27648e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| him to ||| 0.003663 0.0247351 8.48644e-07 9.01152e-06 2.718 ||| 0-1 ||| 273 1.17835e+06 +en ||| him when ||| 0.0384615 0.142731 8.48644e-07 1.90863e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| himself at ||| 0.5 0.321886 8.48644e-07 2.96415e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| himself during ||| 1 0.226251 8.48644e-07 2.14245e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| himself in ||| 0.263158 0.605812 4.24322e-06 3.4218e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| himself into ||| 0.5 0.525896 1.69729e-06 1.64037e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| himself part of ||| 1 0.0116562 8.48644e-07 1.20472e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| himself portrayed on the ||| 0.5 0.22993 8.48644e-07 1.20895e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| himself portrayed on ||| 0.5 0.22993 8.48644e-07 1.96924e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| himself to ||| 0.0208333 0.0247351 8.48644e-07 2.08283e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| himself with ||| 0.0833333 0.0535436 8.48644e-07 8.63924e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| hinge on how the new decision-making procedures ||| 1 0.22993 8.48644e-07 5.35044e-25 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hinge on how the new decision-making ||| 1 0.22993 8.48644e-07 1.23853e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hinge on how the new ||| 1 0.22993 8.48644e-07 7.64524e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hinge on how the ||| 1 0.22993 8.48644e-07 1.27911e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hinge on how ||| 1 0.22993 8.48644e-07 2.08352e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hinge on ||| 0.0434783 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| hint in ||| 0.666667 0.605812 1.69729e-06 1.84712e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| hiring an aeroplane with an exemption by ||| 1 0.0535436 8.48644e-07 6.49116e-27 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| hiring an aeroplane with an exemption ||| 1 0.0535436 8.48644e-07 1.23639e-24 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| hiring an aeroplane with an ||| 1 0.0535436 8.48644e-07 2.02687e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| hiring an aeroplane with ||| 1 0.0535436 8.48644e-07 4.56019e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| his acts both in ||| 1 0.605812 8.48644e-07 1.30793e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| his attention to ||| 0.0344828 0.0247351 8.48644e-07 2.20708e-09 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| his case before ||| 1 0.0175291 8.48644e-07 1.09601e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| his commitment to ||| 0.00877193 0.0247351 8.48644e-07 4.71317e-10 2.718 ||| 0-2 ||| 114 1.17835e+06 +en ||| his concern about ||| 0.0454545 0.0401564 8.48644e-07 1.14979e-10 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| his contribution to ||| 0.03125 0.0247351 8.48644e-07 7.60189e-10 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| his current ||| 0.0909091 0.0052696 8.48644e-07 1.9232e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| his declaration on ||| 0.5 0.22993 8.48644e-07 4.39226e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| his finger during ||| 1 0.226251 8.48644e-07 1.52915e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| his finger on ||| 0.05 0.22993 8.48644e-07 4.39226e-10 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| his judgment on ||| 1 0.22993 8.48644e-07 3.86819e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| his life in ||| 0.2 0.605812 8.48644e-07 2.10229e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| his name on ||| 0.25 0.22993 8.48644e-07 2.18116e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| his own ||| 0.0011976 0.0001322 8.48644e-07 4.57731e-09 2.718 ||| 0-0 ||| 835 1.17835e+06 +en ||| his part in ||| 0.1 0.605812 8.48644e-07 1.65436e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| his post in ||| 0.142857 0.605812 8.48644e-07 3.39975e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| his report ||| 0.00033389 0.0004293 8.48644e-07 8.98495e-09 2.718 ||| 0-1 ||| 2995 1.17835e+06 +en ||| his safety in ||| 1 0.605812 8.48644e-07 7.0354e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| his seat in ||| 0.0588235 0.605812 8.48644e-07 2.248e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| his soul believes in ||| 1 0.605812 8.48644e-07 8.59234e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| his supporters in ||| 0.5 0.605812 8.48644e-07 8.04838e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| his view ||| 0.0101523 0.0001322 1.69729e-06 2.43891e-09 2.718 ||| 0-0 ||| 197 1.17835e+06 +en ||| his warning on ||| 1 0.22993 8.48644e-07 3.49385e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| his way through ||| 0.125 0.0366102 8.48644e-07 6.09151e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| his work in ||| 0.011236 0.605812 8.48644e-07 8.78384e-08 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| his works in ||| 1 0.605812 8.48644e-07 5.74488e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| his ||| 0.000129832 0.0001322 3.39458e-06 2.7e-06 2.718 ||| 0-0 ||| 30809 1.17835e+06 +en ||| history , from ||| 0.166667 0.0308834 8.48644e-07 1.63359e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| history of civilization in ||| 1 0.605812 8.48644e-07 6.32628e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| hit around ||| 0.5 0.159384 8.48644e-07 3.61233e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| hit by events in ||| 1 0.605812 8.48644e-07 5.51674e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| hit by ||| 0.00815217 0.0468744 2.54593e-06 2.66272e-07 2.718 ||| 0-1 ||| 368 1.17835e+06 +en ||| hitherto , in ||| 0.25 0.605812 8.48644e-07 8.1503e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| hitherto in ||| 0.117647 0.605812 1.69729e-06 6.83436e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| hits on ||| 0.2 0.22993 8.48644e-07 2.98974e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| hoist with ||| 0.5 0.0535436 8.48644e-07 1.28248e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| hold at ||| 0.25 0.321886 8.48644e-07 6.96835e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| hold back on ||| 0.2 0.22993 8.48644e-07 9.73053e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| hold forth about compliance with ||| 0.333333 0.0535436 8.48644e-07 1.33452e-18 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| hold in that ||| 1 0.605812 8.48644e-07 1.35317e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hold in ||| 0.118421 0.605812 7.6378e-06 8.04423e-05 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| hold of ||| 0.0612245 0.0116562 2.54593e-06 2.37557e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| hold on ||| 0.0352941 0.22993 2.54593e-06 1.4467e-05 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| hold over ||| 0.142857 0.157937 1.69729e-06 6.98054e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| hold quite different , and in some ||| 1 0.605812 8.48644e-07 1.12437e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| hold quite different , and in ||| 1 0.605812 8.48644e-07 1.0322e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| hold senior ||| 0.5 0.0008875 8.48644e-07 3.294e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| hold so ||| 0.2 0.0087276 8.48644e-07 1.18648e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| hold some ||| 0.142857 0.0009939 8.48644e-07 6.63702e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| hold their own in ||| 0.1 0.605812 8.48644e-07 1.58071e-10 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| hold up ||| 0.0172414 0.0147069 8.48644e-07 1.20198e-07 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| hold ||| 0.000719166 0.0008875 1.69729e-06 2.7e-06 2.718 ||| 0-0 ||| 2781 1.17835e+06 +en ||| holders of ||| 0.00787402 0.0116562 8.48644e-07 3.95473e-08 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| holding at ||| 0.333333 0.321886 8.48644e-07 2.40412e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| holding him at all ||| 0.333333 0.321886 8.48644e-07 3.64215e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| holding him at ||| 0.333333 0.321886 8.48644e-07 7.70761e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| holding him in ||| 1 0.605812 8.48644e-07 8.89763e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| holding in ||| 0.1875 0.605812 2.54593e-06 2.7753e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| holding into ||| 1 0.525896 8.48644e-07 1.33045e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| holding it up as ||| 0.125 0.066968 8.48644e-07 6.55666e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| holding out ||| 0.037037 0.0120599 8.48644e-07 3.3085e-08 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| holding ||| 0.0031185 0.0053942 5.09187e-06 8.8e-06 2.718 ||| 0-0 ||| 1924 1.17835e+06 +en ||| holdings in ||| 0.222222 0.605812 1.69729e-06 1.4777e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| holds a post within ||| 1 0.369196 8.48644e-07 3.41935e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| holds firm to ||| 1 0.0247351 8.48644e-07 2.92967e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| holds in ||| 0.111111 0.605812 8.48644e-07 1.31146e-05 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| holds to the ||| 0.333333 0.0247351 8.48644e-07 4.90076e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| holds to ||| 0.125 0.0247351 8.48644e-07 7.98276e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| holds up a ||| 1 0.0147069 8.48644e-07 8.68608e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| holds up ||| 0.125 0.0147069 8.48644e-07 1.9596e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| hole remains in place around ||| 0.333333 0.605812 8.48644e-07 2.97265e-17 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| hole remains in place ||| 0.333333 0.605812 8.48644e-07 2.23172e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| hole remains in ||| 0.333333 0.605812 8.48644e-07 1.48287e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| holes in ||| 0.05 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| holocausts all over ||| 1 0.157937 8.48644e-07 7.57425e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| home , in ||| 0.0434783 0.605812 8.48644e-07 5.58956e-06 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| home from ||| 0.0588235 0.0308834 8.48644e-07 3.86218e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| home front hailed him in ||| 1 0.605812 8.48644e-07 1.69562e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| home in on ||| 0.2 0.417871 8.48644e-07 3.89254e-06 2.718 ||| 0-1 0-2 ||| 5 1.17835e+06 +en ||| home in one ||| 0.5 0.605812 8.48644e-07 1.95357e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| home in ||| 0.161972 0.605812 1.95188e-05 4.68708e-05 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| home pages in ||| 0.5 0.605812 8.48644e-07 2.20293e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| home the message ||| 0.111111 0.0011669 8.48644e-07 1.4015e-11 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| home the point ||| 0.333333 0.0007826 8.48644e-07 1.3148e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| home the ||| 0.0344828 0.0011669 8.48644e-07 2.90767e-07 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| home to 50 ||| 0.333333 0.0247351 8.48644e-07 3.99419e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| home to me in ||| 1 0.605812 8.48644e-07 2.50766e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| home to us in ||| 0.2 0.605812 8.48644e-07 1.20039e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| home to ||| 0.004329 0.0247351 8.48644e-07 2.85299e-06 2.718 ||| 0-1 ||| 231 1.17835e+06 +en ||| home ||| 0.00020842 0.0003542 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 4798 1.17835e+06 +en ||| homeland ||| 0.00342466 0.0053908 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 292 1.17835e+06 +en ||| homes in ||| 0.037037 0.605812 1.69729e-06 4.66399e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| honour the ||| 0.00621118 0.0011669 8.48644e-07 5.35699e-08 2.718 ||| 0-1 ||| 161 1.17835e+06 +en ||| honourable Member for any ||| 1 0.0286209 8.48644e-07 4.67987e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| honourable Member for ||| 0.0204082 0.0286209 8.48644e-07 3.09474e-10 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| honourable Member in ||| 0.0344828 0.605812 8.48644e-07 1.24213e-08 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| honourable Members , on ||| 0.1 0.22993 8.48644e-07 7.62552e-11 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| honourable Members are to be commended on ||| 0.333333 0.22993 8.48644e-07 2.18731e-20 2.718 ||| 0-6 ||| 3 1.17835e+06 +en ||| honourable in ||| 0.2 0.605812 8.48644e-07 2.4105e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| honoured in ||| 0.0909091 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| hooliganism ||| 0.0151515 0.0559006 8.48644e-07 6.1e-06 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| hooligans in return ||| 1 0.605812 8.48644e-07 2.15282e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hooligans in ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| hope , all well known . in ||| 1 0.605812 8.48644e-07 2.41219e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| hope , developments in ||| 1 0.605812 8.48644e-07 2.88645e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| hope , therefore , that ||| 0.0909091 0.0017499 8.48644e-07 2.17919e-12 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| hope , ||| 0.00357782 0.0005295 1.69729e-06 1.29988e-06 2.718 ||| 0-0 ||| 559 1.17835e+06 +en ||| hope and trust that we will be ||| 1 0.192848 8.48644e-07 4.60789e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| hope and trust that we will ||| 1 0.192848 8.48644e-07 2.54258e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| hope and trust that we ||| 1 0.192848 8.48644e-07 2.93899e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| hope and trust that ||| 0.166667 0.192848 8.48644e-07 2.58889e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| hope and trust ||| 0.0666667 0.192848 8.48644e-07 1.53903e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| hope as well ||| 0.25 0.066968 8.48644e-07 4.99984e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| hope as ||| 0.111111 0.066968 8.48644e-07 3.15328e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| hope in ||| 0.0183486 0.605812 1.69729e-06 8.09502e-05 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| hope is ||| 0.00606061 0.0005295 8.48644e-07 3.41618e-07 2.718 ||| 0-0 ||| 165 1.17835e+06 +en ||| hope of ||| 0.00343643 0.0116562 1.69729e-06 2.39057e-06 2.718 ||| 0-1 ||| 582 1.17835e+06 +en ||| hope that the amendment on ||| 1 0.22993 8.48644e-07 9.57702e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| hope to ||| 0.00225225 0.0247351 8.48644e-07 4.92738e-06 2.718 ||| 0-1 ||| 444 1.17835e+06 +en ||| hope will itself be ||| 1 0.0245169 8.48644e-07 9.44363e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| hope will itself ||| 1 0.0245169 8.48644e-07 5.21088e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| hope ||| 0.000700841 0.0005295 5.94051e-06 1.09e-05 2.718 ||| 0-0 ||| 9988 1.17835e+06 +en ||| hoped at least to ||| 1 0.321886 8.48644e-07 1.69221e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hoped at least ||| 1 0.321886 8.48644e-07 1.9044e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hoped at ||| 1 0.321886 8.48644e-07 7.76039e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hopelessly embroiled in ||| 0.5 0.605812 8.48644e-07 2.26273e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| hopelessly light sleep in many parts ||| 0.166667 0.605812 8.48644e-07 5.62207e-24 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| hopelessly light sleep in many ||| 0.166667 0.605812 8.48644e-07 9.64335e-20 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| hopelessly light sleep in ||| 0.166667 0.605812 8.48644e-07 2.80901e-16 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| hopes of ||| 0.00421941 0.0116562 8.48644e-07 1.37734e-07 2.718 ||| 0-1 ||| 237 1.17835e+06 +en ||| hoping to ||| 0.0204082 0.0247351 8.48644e-07 3.23245e-07 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| hormones in meat ||| 0.333333 0.605812 8.48644e-07 1.16369e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| hormones in ||| 0.0333333 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| horror among ||| 1 0.0422459 8.48644e-07 1.7199e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| horror at ||| 0.037037 0.321886 8.48644e-07 2.16011e-07 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| horses in ||| 0.5 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| hospitals in Romania ||| 1 0.605812 8.48644e-07 1.8656e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| hospitals in ||| 0.0416667 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| host in ||| 0.666667 0.605812 1.69729e-06 8.95855e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| hostage in ||| 0.0454545 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| hosted and chaired by ||| 1 0.0468744 8.48644e-07 3.75088e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| hour in ||| 0.04 0.605812 8.48644e-07 6.46494e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| hours by ||| 0.142857 0.0468744 8.48644e-07 1.83753e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| hours in ||| 0.0125 0.605812 8.48644e-07 9.97447e-06 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| house in order ||| 0.0126582 0.605812 8.48644e-07 5.3124e-09 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| house in ||| 0.0344828 0.605812 3.39458e-06 9.97447e-06 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| housed in ||| 0.1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| household ||| 0.00327869 0.0090293 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 305 1.17835e+06 +en ||| how , at ||| 0.0769231 0.321886 8.48644e-07 1.70972e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| how , in the ||| 0.0434783 0.605812 8.48644e-07 1.21169e-06 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| how , in ||| 0.0379747 0.605812 2.54593e-06 1.97369e-05 2.718 ||| 0-2 ||| 79 1.17835e+06 +en ||| how far ||| 0.00209644 0.0035231 8.48644e-07 8.31529e-08 2.718 ||| 0-0 ||| 477 1.17835e+06 +en ||| how it wishes to ||| 0.25 0.0247351 8.48644e-07 9.47694e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| how it ||| 0.00151515 0.0080472 8.48644e-07 9.88431e-07 2.718 ||| 0-1 ||| 660 1.17835e+06 +en ||| how much I ||| 0.0140845 0.0060084 8.48644e-07 8.74098e-10 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| how much there is in ||| 1 0.605812 8.48644e-07 1.59586e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| how to ||| 0.000784929 0.0247351 1.69729e-06 1.0074e-05 2.718 ||| 0-1 ||| 2548 1.17835e+06 +en ||| how very ||| 0.0166667 0.0035231 8.48644e-07 4.23803e-07 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| how we , ||| 0.05 0.0054082 8.48644e-07 9.67611e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| how we ||| 0.000679348 0.0054082 8.48644e-07 8.11382e-07 2.718 ||| 0-1 ||| 1472 1.17835e+06 +en ||| how ||| 0.000586346 0.0035231 1.78215e-05 0.0001218 2.718 ||| 0-0 ||| 35815 1.17835e+06 +en ||| however , I can ||| 0.0121951 0.0053256 8.48644e-07 9.39106e-10 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| however , I ||| 0.00138696 0.0053256 1.69729e-06 3.1574e-07 2.718 ||| 0-0 ||| 1442 1.17835e+06 +en ||| however , all investment in ||| 1 0.605812 8.48644e-07 7.06218e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| however , and ||| 0.00555556 0.0010182 8.48644e-07 1.21887e-07 2.718 ||| 0-2 ||| 180 1.17835e+06 +en ||| however , are we in ||| 1 0.605812 8.48644e-07 1.0507e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| however , as it ||| 0.0909091 0.066968 8.48644e-07 4.2256e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| however , as ||| 0.002442 0.0053256 1.69729e-06 4.55494e-07 2.718 ||| 0-0 ||| 819 1.17835e+06 +en ||| however , at the ||| 0.00666667 0.321886 8.48644e-07 3.24407e-07 2.718 ||| 0-2 ||| 150 1.17835e+06 +en ||| however , at ||| 0.011976 0.321886 1.69729e-06 5.2842e-06 2.718 ||| 0-2 ||| 167 1.17835e+06 +en ||| however , be left to ||| 0.5 0.0247351 8.48644e-07 1.27114e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| however , for ||| 0.00896861 0.0286209 1.69729e-06 1.51982e-06 2.718 ||| 0-2 ||| 223 1.17835e+06 +en ||| however , given ||| 0.00869565 0.0546585 8.48644e-07 1.53353e-07 2.718 ||| 0-2 ||| 115 1.17835e+06 +en ||| however , if we are ||| 0.04 0.0178573 8.48644e-07 2.63825e-11 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| however , if we ||| 0.0222222 0.0178573 8.48644e-07 1.73881e-09 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| however , if ||| 0.00160256 0.0178573 8.48644e-07 1.53168e-07 2.718 ||| 0-2 ||| 624 1.17835e+06 +en ||| however , in ||| 0.0176416 0.605812 1.61242e-05 6.10006e-05 2.718 ||| 0-2 ||| 1077 1.17835e+06 +en ||| however , is not ||| 0.0263158 0.0053256 8.48644e-07 4.77624e-09 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| however , is ||| 0.00242131 0.0053256 8.48644e-07 1.39897e-06 2.718 ||| 0-0 ||| 413 1.17835e+06 +en ||| however , it is in ||| 0.0769231 0.605812 8.48644e-07 3.39984e-08 2.718 ||| 0-4 ||| 13 1.17835e+06 +en ||| however , on a number of occasions ||| 0.5 0.0053256 8.48644e-07 9.47252e-18 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| however , on a number of ||| 0.5 0.0053256 8.48644e-07 3.5611e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| however , on a number ||| 0.5 0.0053256 8.48644e-07 6.55047e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| however , on a ||| 0.125 0.0053256 8.48644e-07 1.32386e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| however , on ||| 0.0114943 0.0053256 1.69729e-06 2.98666e-07 2.718 ||| 0-0 ||| 174 1.17835e+06 +en ||| however , that , in ||| 0.0833333 0.605812 8.48644e-07 1.2237e-07 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| however , that at ||| 0.142857 0.321886 8.48644e-07 8.88887e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| however , to highlight two points ||| 1 0.0053256 8.48644e-07 2.27767e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| however , to highlight two ||| 1 0.0053256 8.48644e-07 1.7534e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| however , to highlight ||| 0.25 0.0053256 8.48644e-07 7.41711e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| however , to ||| 0.00569801 0.0053256 1.69729e-06 3.96637e-06 2.718 ||| 0-0 ||| 351 1.17835e+06 +en ||| however , towards ||| 0.333333 0.0616136 8.48644e-07 1.31596e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| however , when seen in ||| 1 0.249858 8.48644e-07 2.46945e-12 2.718 ||| 0-2 0-3 0-4 ||| 1 1.17835e+06 +en ||| however , with ||| 0.0107527 0.0535436 1.69729e-06 1.54012e-06 2.718 ||| 0-2 ||| 186 1.17835e+06 +en ||| however , ||| 0.00101223 0.0053256 4.07349e-05 4.4637e-05 2.718 ||| 0-0 ||| 47420 1.17835e+06 +en ||| however . ||| 0.00574713 6.3e-05 8.48644e-07 8.97237e-08 2.718 ||| 0-1 ||| 174 1.17835e+06 +en ||| however : ||| 0.0227273 0.0053256 8.48644e-07 1.26064e-07 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| however in ||| 0.0909091 0.605812 8.48644e-07 0.000511515 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| however many ||| 0.025641 0.0053256 8.48644e-07 1.28497e-07 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| however ||| 0.00150333 0.0053256 6.70429e-05 0.0003743 2.718 ||| 0-0 ||| 52550 1.17835e+06 +en ||| huge amount of ||| 0.00617284 0.0116562 8.48644e-07 1.73193e-10 2.718 ||| 0-2 ||| 162 1.17835e+06 +en ||| huge challenge for ||| 0.0833333 0.0286209 8.48644e-07 2.57045e-11 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| huge number ||| 0.00512821 0.0011038 8.48644e-07 1.06488e-09 2.718 ||| 0-1 ||| 195 1.17835e+06 +en ||| huge sums in ||| 0.125 0.605812 8.48644e-07 3.03723e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| human dignity in order to ||| 1 0.605812 8.48644e-07 1.9417e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| human dignity in order ||| 1 0.605812 8.48644e-07 2.18517e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| human dignity in ||| 0.04 0.605812 1.69729e-06 4.10283e-10 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| human dignity with ||| 0.166667 0.0535436 8.48644e-07 1.03587e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| human rights . in ||| 1 0.605812 8.48644e-07 3.4538e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| human rights in the ||| 0.00195695 0.605812 8.48644e-07 7.00017e-10 2.718 ||| 0-2 ||| 511 1.17835e+06 +en ||| human rights in ||| 0.0027533 0.605812 4.24322e-06 1.14025e-08 2.718 ||| 0-2 ||| 1816 1.17835e+06 +en ||| human suffering in ||| 0.2 0.605812 8.48644e-07 2.52438e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| human trafficking is the greatest scourge ||| 0.25 0.0011669 8.48644e-07 7.76289e-24 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| human trafficking is the greatest ||| 0.25 0.0011669 8.48644e-07 2.4259e-18 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| human trafficking is the ||| 0.0625 0.0011669 8.48644e-07 1.31843e-13 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| human-centred ||| 0.0769231 0.26087 8.48644e-07 4.1e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| humanitarian crimes against ||| 0.25 0.153982 8.48644e-07 1.71276e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| humanity and human dignity in ||| 0.5 0.605812 8.48644e-07 1.64453e-17 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| hundred and seventy countries ||| 0.5 0.0434783 8.48644e-07 2.02895e-16 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| hundred and seventy ||| 0.5 0.0434783 8.48644e-07 5.34355e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| hundred per ||| 0.0454545 0.0117312 8.48644e-07 7.5208e-10 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| hundreds of ||| 0.000511247 0.0116562 8.48644e-07 8.31857e-08 2.718 ||| 0-1 ||| 1956 1.17835e+06 +en ||| hung over ||| 0.125 0.157937 8.48644e-07 1.0018e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| hung up on ||| 0.666667 0.22993 1.69729e-06 7.08091e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| hunt with ||| 0.5 0.0535436 8.48644e-07 3.73085e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| hybrid force , into ||| 1 0.525896 8.48644e-07 3.14527e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| i ) on ||| 1 0.22993 8.48644e-07 7.75876e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| i .. e in ||| 0.2 0.605812 8.48644e-07 3.84202e-18 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| i.e. , over ||| 1 0.157937 8.48644e-07 2.80514e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| i.e. if ||| 0.333333 0.0178573 8.48644e-07 6.80626e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| i.e. in ||| 0.1 0.605812 4.24322e-06 2.71066e-05 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| i.e. ||| 0.000825764 0.0006629 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 2422 1.17835e+06 +en ||| ice in ||| 0.0833333 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| idea , contained in ||| 1 0.605812 8.48644e-07 8.39569e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| idea , ||| 0.00250627 0.0001187 8.48644e-07 4.43916e-08 2.718 ||| 0-1 ||| 399 1.17835e+06 +en ||| idea as ||| 0.0277778 0.066968 8.48644e-07 4.03289e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| idea at the NATO summit in ||| 0.333333 0.605812 8.48644e-07 6.1321e-18 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| idea if ||| 0.0204082 0.0178573 8.48644e-07 2.5996e-07 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| idea in ||| 0.0757576 0.605812 4.24322e-06 0.000103531 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| idea of impact assessments on ||| 0.5 0.22993 8.48644e-07 4.83764e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| idea of ||| 0.000544662 0.0116562 1.69729e-06 3.05742e-06 2.718 ||| 0-1 ||| 3672 1.17835e+06 +en ||| idea that ||| 0.000786163 0.0017499 8.48644e-07 2.34334e-07 2.718 ||| 0-1 ||| 1272 1.17835e+06 +en ||| idea to emerge from ||| 1 0.0308834 8.48644e-07 2.28932e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| idea to ||| 0.00363636 0.0247351 8.48644e-07 6.30188e-06 2.718 ||| 0-1 ||| 275 1.17835e+06 +en ||| idea very ||| 0.333333 0.0020657 8.48644e-07 3.03567e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| ideal solution in ||| 0.5 0.605812 8.48644e-07 2.9517e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| ideally , ||| 0.0105263 0.0540541 8.48644e-07 1.94385e-06 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| ideally ||| 0.00436681 0.0540541 8.48644e-07 1.63e-05 2.718 ||| 0-0 ||| 229 1.17835e+06 +en ||| ideas from ||| 0.0285714 0.0308834 8.48644e-07 1.3432e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| ideas in a ||| 0.166667 0.605812 8.48644e-07 7.22549e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| ideas in ||| 0.0194175 0.605812 1.69729e-06 1.63009e-05 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| ideas is to ||| 1 0.0247351 8.48644e-07 3.10974e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ideas of ||| 0.00662252 0.0116562 8.48644e-07 4.81386e-07 2.718 ||| 0-1 ||| 151 1.17835e+06 +en ||| identified , so as ||| 0.5 0.066968 8.48644e-07 1.8745e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| identified at ||| 0.0384615 0.321886 8.48644e-07 1.54008e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| identified during ||| 0.142857 0.226251 8.48644e-07 1.11315e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| identified from ||| 1 0.0308834 8.48644e-07 1.46496e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| identified in ||| 0.0306122 0.605812 5.09187e-06 1.77786e-05 2.718 ||| 0-1 ||| 196 1.17835e+06 +en ||| identify in ||| 0.125 0.605812 8.48644e-07 7.98881e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| identify with ||| 0.0122699 0.0535436 1.69729e-06 2.01699e-07 2.718 ||| 0-1 ||| 163 1.17835e+06 +en ||| identity in ||| 0.0714286 0.605812 8.48644e-07 9.32798e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| if , at the same ||| 0.0238095 0.321886 8.48644e-07 1.96925e-10 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| if , at the ||| 0.0140845 0.321886 8.48644e-07 2.44718e-07 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| if , at ||| 0.037037 0.321886 1.69729e-06 3.98617e-06 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| if , in fact ||| 0.0666667 0.605812 8.48644e-07 1.34795e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| if , in ||| 0.00732601 0.605812 1.69729e-06 4.60161e-05 2.718 ||| 0-2 ||| 273 1.17835e+06 +en ||| if , ||| 0.00164745 0.0178573 2.54593e-06 0.000138276 2.718 ||| 0-0 ||| 1821 1.17835e+06 +en ||| if I add a few words about ||| 1 0.0401564 8.48644e-07 2.43941e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| if I am being ||| 0.2 0.0178573 8.48644e-07 2.98174e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| if I am ||| 0.010989 0.0178573 1.69729e-06 1.04777e-08 2.718 ||| 0-0 ||| 182 1.17835e+06 +en ||| if I can put it ||| 0.0322581 0.0060084 8.48644e-07 1.18413e-13 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| if I can put ||| 0.111111 0.0060084 8.48644e-07 6.6587e-12 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| if I can ||| 0.00952381 0.0060084 8.48644e-07 6.03909e-09 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| if I could be the ||| 1 0.0011669 8.48644e-07 2.18208e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| if I did so ||| 0.142857 0.0087276 8.48644e-07 1.82848e-12 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| if I may , during ||| 0.5 0.226251 8.48644e-07 1.52686e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| if I see ||| 0.5 0.0178573 8.48644e-07 5.77893e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| if I should ||| 0.25 0.0178573 8.48644e-07 3.63418e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| if I take ||| 0.05 0.0178573 8.48644e-07 1.32048e-08 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| if I were a Member of ||| 0.2 0.0116562 8.48644e-07 3.29808e-15 2.718 ||| 0-5 ||| 5 1.17835e+06 +en ||| if I were ||| 0.0183486 0.0178573 1.69729e-06 1.46926e-08 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| if I ||| 0.0064554 0.0178573 9.33509e-06 8.20172e-06 2.718 ||| 0-0 ||| 1704 1.17835e+06 +en ||| if Parliament ||| 0.00210084 0.0178573 8.48644e-07 6.65553e-07 2.718 ||| 0-0 ||| 476 1.17835e+06 +en ||| if a ||| 0.00090009 0.0178573 8.48644e-07 5.13958e-05 2.718 ||| 0-0 ||| 1111 1.17835e+06 +en ||| if action is , in ||| 1 0.605812 8.48644e-07 4.35976e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| if an application made in ||| 1 0.605812 8.48644e-07 2.18435e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| if and to ||| 1 0.0178573 8.48644e-07 1.29056e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| if and ||| 0.0224719 0.0178573 1.69729e-06 1.45238e-05 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| if anything , ||| 0.00757576 0.0178573 8.48644e-07 2.16955e-08 2.718 ||| 0-0 ||| 132 1.17835e+06 +en ||| if anything ||| 0.00956938 0.0178573 1.69729e-06 1.81926e-07 2.718 ||| 0-0 ||| 209 1.17835e+06 +en ||| if asked to sum up in one ||| 1 0.0178573 8.48644e-07 9.97753e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| if asked to sum up in ||| 1 0.0178573 8.48644e-07 2.39384e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| if asked to sum up ||| 1 0.0178573 8.48644e-07 1.11838e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| if asked to sum ||| 1 0.0178573 8.48644e-07 3.27923e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| if asked to ||| 0.333333 0.0178573 8.48644e-07 7.78915e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| if asked ||| 0.0833333 0.0178573 8.48644e-07 8.76582e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| if at ||| 0.0153846 0.321886 2.54593e-06 3.34257e-05 2.718 ||| 0-1 ||| 195 1.17835e+06 +en ||| if he can , in ||| 1 0.605812 8.48644e-07 1.19443e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| if in ||| 0.0182927 0.605812 2.54593e-06 0.000385864 2.718 ||| 0-1 ||| 164 1.17835e+06 +en ||| if it does ||| 0.0215054 0.0178573 1.69729e-06 1.44626e-08 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| if it had been put in ||| 1 0.605812 8.48644e-07 2.53576e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| if it is involved in ||| 1 0.605812 8.48644e-07 7.43676e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| if it is taken away ||| 1 0.0080472 8.48644e-07 2.09417e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| if it is taken ||| 0.166667 0.0080472 8.48644e-07 6.58336e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| if it is to be ||| 0.0113636 0.0178573 8.48644e-07 1.04069e-09 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| if it is to ||| 0.00431034 0.0178573 8.48644e-07 5.74239e-08 2.718 ||| 0-0 ||| 232 1.17835e+06 +en ||| if it is ||| 0.00203046 0.0178573 3.39458e-06 6.46242e-07 2.718 ||| 0-0 ||| 1970 1.17835e+06 +en ||| if it makes a ||| 0.125 0.0178573 8.48644e-07 1.55285e-10 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| if it makes ||| 0.0625 0.0178573 8.48644e-07 3.50327e-09 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| if it were ||| 0.00449438 0.0178573 1.69729e-06 3.6938e-08 2.718 ||| 0-0 ||| 445 1.17835e+06 +en ||| if it ||| 0.00696621 0.0178573 1.69729e-05 2.06196e-05 2.718 ||| 0-0 ||| 2871 1.17835e+06 +en ||| if need be , on ||| 0.333333 0.22993 8.48644e-07 1.37517e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| if need ||| 0.0128205 0.0178573 8.48644e-07 1.06315e-06 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| if not , ||| 0.00187266 0.0178573 8.48644e-07 4.72087e-07 2.718 ||| 0-0 ||| 534 1.17835e+06 +en ||| if not by ||| 0.142857 0.0178573 8.48644e-07 2.07833e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| if not ||| 0.00140647 0.0178573 2.54593e-06 3.95865e-06 2.718 ||| 0-0 ||| 2133 1.17835e+06 +en ||| if nothing ||| 0.00847458 0.0178573 8.48644e-07 2.15783e-07 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| if one puts all ||| 0.5 0.0178573 8.48644e-07 7.55901e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| if one puts ||| 0.5 0.0178573 8.48644e-07 1.59966e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| if one ||| 0.00875274 0.0178573 3.39458e-06 4.8328e-06 2.718 ||| 0-0 ||| 457 1.17835e+06 +en ||| if only ||| 0.00226244 0.0178573 8.48644e-07 1.29064e-06 2.718 ||| 0-0 ||| 442 1.17835e+06 +en ||| if possible ||| 0.00318471 0.0178573 1.69729e-06 9.30035e-07 2.718 ||| 0-0 ||| 628 1.17835e+06 +en ||| if required , by ||| 1 0.0468744 8.48644e-07 1.34534e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| if she could ||| 0.2 0.0178573 8.48644e-07 2.34411e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| if she does so on ||| 1 0.22993 8.48644e-07 3.1408e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| if she ||| 0.0138889 0.0178573 8.48644e-07 3.29646e-07 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| if so , can you tell me ||| 1 0.0178573 8.48644e-07 1.782e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| if so , can you tell ||| 1 0.0178573 8.48644e-07 2.95964e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| if so , can you ||| 1 0.0178573 8.48644e-07 3.01389e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| if so , can ||| 0.166667 0.0178573 8.48644e-07 9.33468e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| if so , under ||| 0.111111 0.205566 8.48644e-07 1.27892e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| if so , ||| 0.00465116 0.0178573 2.54593e-06 3.13845e-07 2.718 ||| 0-0 ||| 645 1.17835e+06 +en ||| if so ||| 0.00578035 0.0178573 3.39458e-06 2.63172e-06 2.718 ||| 0-0 ||| 692 1.17835e+06 +en ||| if that is ||| 0.00550459 0.0178573 2.54593e-06 6.11297e-07 2.718 ||| 0-0 ||| 545 1.17835e+06 +en ||| if that were ||| 0.0107527 0.0178573 8.48644e-07 3.49406e-08 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| if that ||| 0.0034965 0.0178573 3.39458e-06 1.95046e-05 2.718 ||| 0-0 ||| 1144 1.17835e+06 +en ||| if the latter is ||| 0.111111 0.0178573 8.48644e-07 2.14397e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| if the latter ||| 0.025 0.0178573 8.48644e-07 6.84076e-09 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| if the ||| 0.000471165 0.0178573 4.24322e-06 7.11838e-05 2.718 ||| 0-0 ||| 10612 1.17835e+06 +en ||| if there is ||| 0.00130463 0.0178573 1.69729e-06 1.11393e-07 2.718 ||| 0-0 ||| 1533 1.17835e+06 +en ||| if there ||| 0.002457 0.0178573 1.69729e-06 3.55422e-06 2.718 ||| 0-0 ||| 814 1.17835e+06 +en ||| if they are , ||| 0.0416667 0.0178573 8.48644e-07 6.84793e-09 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| if they are ||| 0.00323276 0.0178573 2.54593e-06 5.74227e-08 2.718 ||| 0-0 ||| 928 1.17835e+06 +en ||| if they were scheduled for ||| 1 0.0232391 8.48644e-07 1.31824e-15 2.718 ||| 0-0 0-4 ||| 1 1.17835e+06 +en ||| if they were ||| 0.00342466 0.0178573 8.48644e-07 6.77975e-09 2.718 ||| 0-0 ||| 292 1.17835e+06 +en ||| if they ||| 0.00548446 0.0178573 7.6378e-06 3.78461e-06 2.718 ||| 0-0 ||| 1641 1.17835e+06 +en ||| if this is the ||| 0.0162602 0.0178573 1.69729e-06 1.44152e-08 2.718 ||| 0-0 ||| 123 1.17835e+06 +en ||| if this is true of ||| 0.333333 0.0147567 8.48644e-07 5.17454e-13 2.718 ||| 0-0 0-4 ||| 3 1.17835e+06 +en ||| if this is ||| 0.00934579 0.0178573 4.24322e-06 2.34807e-07 2.718 ||| 0-0 ||| 535 1.17835e+06 +en ||| if this word is ||| 1 0.0178573 8.48644e-07 2.39034e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| if this word ||| 1 0.0178573 8.48644e-07 7.62685e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| if this ||| 0.00267499 0.0178573 5.09187e-06 7.49199e-06 2.718 ||| 0-0 ||| 2243 1.17835e+06 +en ||| if we are ever ||| 0.125 0.0054082 8.48644e-07 5.39319e-12 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| if we are going ||| 0.00735294 0.0178573 8.48644e-07 1.70919e-10 2.718 ||| 0-0 ||| 136 1.17835e+06 +en ||| if we are to ||| 0.000606061 0.0247351 8.48644e-07 4.04557e-09 2.718 ||| 0-3 ||| 1650 1.17835e+06 +en ||| if we are ||| 0.00432666 0.0178573 6.78915e-06 1.99718e-07 2.718 ||| 0-0 ||| 1849 1.17835e+06 +en ||| if we can get it out in ||| 0.5 0.605812 8.48644e-07 3.88005e-16 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| if we can ||| 0.00197239 0.0178573 8.48644e-07 3.91507e-08 2.718 ||| 0-0 ||| 507 1.17835e+06 +en ||| if we cannot ||| 0.0041841 0.0178573 8.48644e-07 2.96562e-09 2.718 ||| 0-0 ||| 239 1.17835e+06 +en ||| if we could ||| 0.00396825 0.0178573 8.48644e-07 9.3602e-09 2.718 ||| 0-0 ||| 252 1.17835e+06 +en ||| if we do not invest in ||| 0.125 0.605812 8.48644e-07 4.82933e-16 2.718 ||| 0-5 ||| 8 1.17835e+06 +en ||| if we enter into ||| 0.333333 0.525896 8.48644e-07 1.03527e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| if we in ||| 0.0136986 0.605812 8.48644e-07 4.38045e-06 2.718 ||| 0-2 ||| 73 1.17835e+06 +en ||| if we look at ||| 0.00547945 0.321886 1.69729e-06 1.10612e-10 2.718 ||| 0-3 ||| 365 1.17835e+06 +en ||| if we make ||| 0.0119048 0.0178573 8.48644e-07 2.28746e-08 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| if we put an ||| 0.5 0.0178573 8.48644e-07 6.45082e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| if we put ||| 0.0344828 0.0178573 8.48644e-07 1.45135e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| if we want to ||| 0.000747943 0.0178573 8.48644e-07 5.46807e-10 2.718 ||| 0-0 ||| 1337 1.17835e+06 +en ||| if we want ||| 0.00172563 0.0178573 1.69729e-06 6.1537e-09 2.718 ||| 0-0 ||| 1159 1.17835e+06 +en ||| if we were in ||| 0.0833333 0.311835 8.48644e-07 1.08889e-08 2.718 ||| 0-0 0-3 ||| 12 1.17835e+06 +en ||| if we ||| 0.00466117 0.0178573 2.20648e-05 1.3163e-05 2.718 ||| 0-0 ||| 5578 1.17835e+06 +en ||| if you are ||| 0.00277008 0.0178573 8.48644e-07 5.68017e-08 2.718 ||| 0-0 ||| 361 1.17835e+06 +en ||| if you can brave ||| 1 0.0178573 8.48644e-07 3.56314e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| if you can ||| 0.00961538 0.0178573 8.48644e-07 1.11348e-08 2.718 ||| 0-0 ||| 104 1.17835e+06 +en ||| if you chose ||| 1 0.0178573 1.69729e-06 2.02159e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| if you do it in ||| 1 0.605812 8.48644e-07 7.61091e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| if you have ||| 0.00369004 0.0178573 8.48644e-07 4.47736e-08 2.718 ||| 0-0 ||| 271 1.17835e+06 +en ||| if you look at ||| 0.00763359 0.321886 1.69729e-06 3.14591e-11 2.718 ||| 0-3 ||| 262 1.17835e+06 +en ||| if you made ||| 1 0.0178573 8.48644e-07 7.84226e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| if you meet ||| 0.2 0.0178573 8.48644e-07 4.55231e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| if you ||| 0.00409417 0.0178573 1.01837e-05 3.74368e-06 2.718 ||| 0-0 ||| 2931 1.17835e+06 +en ||| if ||| 0.00591328 0.0178573 0.000497306 0.0011595 2.718 ||| 0-0 ||| 99099 1.17835e+06 +en ||| ignored in ||| 0.0196078 0.605812 8.48644e-07 4.80252e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| ignoring ||| 0.00171233 0.0013643 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 584 1.17835e+06 +en ||| ill afford to ||| 0.2 0.0247351 8.48644e-07 9.95202e-12 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| ill health in ||| 0.333333 0.605812 8.48644e-07 4.83513e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| illegal immigrants in ||| 0.0285714 0.605812 8.48644e-07 2.79784e-10 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| illicit trade in ||| 0.0416667 0.605812 8.48644e-07 1.16641e-10 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| illness in ||| 0.117647 0.605812 1.69729e-06 1.4777e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| illustration of this ||| 0.0204082 0.0116562 8.48644e-07 2.81965e-10 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| illustration of ||| 0.00775194 0.0116562 8.48644e-07 4.36384e-08 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| image in ||| 0.0625 0.605812 8.48644e-07 6.14169e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| image of ||| 0.00242131 0.0116562 8.48644e-07 1.81372e-07 2.718 ||| 0-1 ||| 413 1.17835e+06 +en ||| images , the music and the dancing ||| 0.5 0.0066116 8.48644e-07 1.438e-22 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| images , the music and the ||| 0.5 0.0066116 8.48644e-07 6.53638e-17 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| images , the music and ||| 0.5 0.0066116 8.48644e-07 1.0647e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| images , the music ||| 0.5 0.0066116 8.48644e-07 8.49998e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| imbalance in its ||| 0.5 0.605812 8.48644e-07 9.21059e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| imbalance in ||| 0.0113636 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| immediately , so ||| 0.0769231 0.0087276 8.48644e-07 3.21649e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| immediately available when ||| 0.5 0.142731 8.48644e-07 7.49923e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| immediately by ||| 0.0416667 0.0468744 8.48644e-07 3.36881e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| immediately in ||| 0.0384615 0.605812 2.54593e-06 1.82865e-05 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| immersed in ||| 0.0588235 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| immigrants in ||| 0.0131579 0.605812 8.48644e-07 8.63531e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| immigrants into ||| 0.0217391 0.525896 8.48644e-07 4.13968e-07 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| immunity from ||| 0.0232558 0.0308834 8.48644e-07 8.37122e-09 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| impact assessment until ||| 1 0.0092136 8.48644e-07 2.09687e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| impact assessments on ||| 0.0454545 0.22993 8.48644e-07 3.96905e-11 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| impact in ||| 0.0379747 0.605812 2.54593e-06 3.80508e-05 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| impact of the crisis in ||| 0.333333 0.605812 8.48644e-07 9.18171e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| impact on ||| 0.0130486 0.22993 1.86702e-05 6.84319e-06 2.718 ||| 0-1 ||| 1686 1.17835e+06 +en ||| impact through ||| 1 0.0366102 8.48644e-07 7.7489e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| impact upon ||| 0.030303 0.114601 8.48644e-07 7.28334e-08 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| impact with ||| 0.25 0.0535436 8.48644e-07 9.60693e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| impacted by ||| 0.142857 0.0468744 8.48644e-07 9.35781e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| impacts on ||| 0.0240964 0.22993 1.69729e-06 2.4084e-07 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| implement at ||| 0.0434783 0.321886 8.48644e-07 2.23211e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| implement the ||| 0.000562114 0.0011669 8.48644e-07 1.5985e-07 2.718 ||| 0-1 ||| 1779 1.17835e+06 +en ||| implement ||| 0.000138198 0.0004026 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 7236 1.17835e+06 +en ||| implementation in ||| 0.0122699 0.605812 1.69729e-06 3.58804e-05 2.718 ||| 0-1 ||| 163 1.17835e+06 +en ||| implementation of ||| 0.000429492 0.0116562 2.54593e-06 1.05959e-06 2.718 ||| 0-1 ||| 6985 1.17835e+06 +en ||| implementation rates in ||| 0.5 0.605812 8.48644e-07 1.36704e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| implemented , ||| 0.00234742 0.0703003 8.48644e-07 4.73083e-05 2.718 ||| 0-0 ||| 426 1.17835e+06 +en ||| implemented across Member ||| 0.333333 0.274879 8.48644e-07 9.29434e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| implemented across ||| 0.0714286 0.274879 1.69729e-06 1.80368e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| implemented as ||| 0.00568182 0.066968 8.48644e-07 1.57934e-06 2.718 ||| 0-1 ||| 176 1.17835e+06 +en ||| implemented in 2000 ||| 1 0.605812 8.48644e-07 1.16768e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| implemented in a way that puts the ||| 1 0.605812 8.48644e-07 1.32422e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| implemented in a way that puts ||| 1 0.605812 8.48644e-07 2.157e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| implemented in a way that ||| 0.166667 0.605812 8.48644e-07 6.51662e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| implemented in a way ||| 0.166667 0.605812 8.48644e-07 3.87396e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| implemented in a ||| 0.025 0.605812 8.48644e-07 1.79716e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| implemented in certain countries ||| 0.333333 0.605812 8.48644e-07 4.38749e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| implemented in certain ||| 0.333333 0.605812 8.48644e-07 1.15551e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| implemented in cooperation ||| 0.333333 0.605812 8.48644e-07 3.73414e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| implemented in ||| 0.0284006 0.605812 1.61242e-05 4.05444e-05 2.718 ||| 0-1 ||| 669 1.17835e+06 +en ||| implemented more slowly ||| 1 0.0703003 8.48644e-07 5.25447e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| implemented more ||| 0.0769231 0.0703003 8.48644e-07 9.05944e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| implemented within ||| 0.0714286 0.369196 2.54593e-06 9.73412e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| implemented ||| 0.00272362 0.0703003 1.61242e-05 0.0003967 2.718 ||| 0-0 ||| 6976 1.17835e+06 +en ||| implementing power generation projects based on new ||| 1 0.22993 8.48644e-07 4.34465e-26 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| implementing power generation projects based on ||| 1 0.22993 8.48644e-07 7.26894e-23 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| implementing the ||| 0.000560538 0.0011669 8.48644e-07 8.25034e-08 2.718 ||| 0-1 ||| 1784 1.17835e+06 +en ||| implicated in ||| 0.0652174 0.605812 2.54593e-06 6.46494e-07 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| implications for ||| 0.00306748 0.0286209 8.48644e-07 2.40459e-07 2.718 ||| 0-1 ||| 326 1.17835e+06 +en ||| implications in an ||| 0.5 0.605812 8.48644e-07 4.28968e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| implications in ||| 0.0869565 0.605812 1.69729e-06 9.65122e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| implications of their actions on ||| 0.25 0.22993 1.69729e-06 7.63423e-15 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| implications of ||| 0.00273973 0.0116562 8.48644e-07 2.85013e-07 2.718 ||| 0-1 ||| 365 1.17835e+06 +en ||| implications which are in ||| 1 0.605812 8.48644e-07 1.24391e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| implicitly in ||| 0.142857 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| importance , and in ||| 0.5 0.605812 8.48644e-07 8.96045e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| importance , but in ||| 0.5 0.605812 8.48644e-07 4.88873e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| importance for ||| 0.00165017 0.0286209 8.48644e-07 1.49453e-06 2.718 ||| 0-1 ||| 606 1.17835e+06 +en ||| importance in ||| 0.00806452 0.605812 2.54593e-06 5.99854e-05 2.718 ||| 0-1 ||| 372 1.17835e+06 +en ||| importance of ||| 0.00057496 0.0116562 3.39458e-06 1.77145e-06 2.718 ||| 0-1 ||| 6957 1.17835e+06 +en ||| importance throughout ||| 0.333333 0.309047 8.48644e-07 3.76814e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| importance to a ||| 0.0588235 0.0247351 8.48644e-07 1.61845e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| importance to ||| 0.00385356 0.0247351 5.09187e-06 3.65127e-06 2.718 ||| 0-1 ||| 1557 1.17835e+06 +en ||| important , in ||| 0.010101 0.605812 8.48644e-07 2.11247e-05 2.718 ||| 0-2 ||| 99 1.17835e+06 +en ||| important , on ||| 0.1 0.22993 8.48644e-07 3.79914e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| important and necessary ||| 0.0106383 0.0010182 8.48644e-07 9.10707e-11 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| important and ||| 0.000502008 0.0010182 8.48644e-07 3.53948e-07 2.718 ||| 0-1 ||| 1992 1.17835e+06 +en ||| important at ||| 0.011236 0.321886 8.48644e-07 1.53448e-05 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| important contribution towards both ||| 0.5 0.0616136 8.48644e-07 5.69717e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| important contribution towards ||| 0.030303 0.0616136 8.48644e-07 3.43928e-11 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| important element in ||| 0.00869565 0.605812 8.48644e-07 7.70556e-09 2.718 ||| 0-2 ||| 115 1.17835e+06 +en ||| important element of ||| 0.011236 0.0116562 8.48644e-07 2.27555e-10 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| important for our lives in ||| 1 0.605812 8.48644e-07 9.67154e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| important for ||| 0.000462856 0.0286209 1.69729e-06 4.41339e-06 2.718 ||| 0-1 ||| 4321 1.17835e+06 +en ||| important in the ||| 0.00306748 0.605812 8.48644e-07 1.08749e-05 2.718 ||| 0-1 ||| 326 1.17835e+06 +en ||| important in ||| 0.0100215 0.605812 1.1881e-05 0.000177139 2.718 ||| 0-1 ||| 1397 1.17835e+06 +en ||| important matters properly discussed at ||| 1 0.321886 8.48644e-07 1.11032e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| important on ||| 0.0434783 0.22993 8.48644e-07 3.18574e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| important part of ||| 0.00331126 0.0116562 8.48644e-07 6.23658e-09 2.718 ||| 0-2 ||| 302 1.17835e+06 +en ||| important partner of the European Union . ||| 0.25 0.0116562 8.48644e-07 4.56907e-20 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| important partner of the European Union ||| 0.1 0.0116562 8.48644e-07 1.50844e-17 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| important partner of the European ||| 1 0.0116562 8.48644e-07 2.70621e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| important partner of the ||| 0.0555556 0.0116562 8.48644e-07 8.09298e-12 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| important partner of ||| 0.047619 0.0116562 8.48644e-07 1.31825e-10 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| important point in ||| 0.0465116 0.605812 1.69729e-06 1.54961e-07 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| important reasons for producing consultation documents ||| 1 0.0286209 8.48644e-07 5.57482e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| important reasons for producing consultation ||| 1 0.0286209 8.48644e-07 2.21223e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| important reasons for producing ||| 1 0.0286209 8.48644e-07 1.49475e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| important reasons for ||| 0.1 0.0286209 8.48644e-07 4.46194e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| important report unassisted . on ||| 1 0.22993 8.48644e-07 1.58215e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| important role in ||| 0.0014771 0.605812 8.48644e-07 3.93249e-08 2.718 ||| 0-2 ||| 677 1.17835e+06 +en ||| important step towards improving road safety ||| 1 0.0616136 8.48644e-07 5.5061e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| important step towards improving road ||| 1 0.0616136 8.48644e-07 1.08601e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| important step towards improving ||| 0.0714286 0.0616136 8.48644e-07 1.21751e-15 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| important step towards ||| 0.00265957 0.0616136 8.48644e-07 5.6366e-11 2.718 ||| 0-2 ||| 376 1.17835e+06 +en ||| important thing in ||| 0.0384615 0.605812 8.48644e-07 6.46381e-08 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| important to emphasise that social policy is ||| 1 0.207288 8.48644e-07 6.53446e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| important to emphasise that social policy ||| 1 0.207288 8.48644e-07 2.08495e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| important to emphasise that social ||| 1 0.207288 8.48644e-07 5.29578e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| important to emphasise that ||| 0.00793651 0.207288 8.48644e-07 5.1266e-10 2.718 ||| 0-2 ||| 126 1.17835e+06 +en ||| important to emphasise ||| 0.00510204 0.207288 8.48644e-07 3.04763e-08 2.718 ||| 0-2 ||| 196 1.17835e+06 +en ||| important to undertake ||| 0.111111 0.0247351 8.48644e-07 2.79263e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| important to us ||| 0.00460829 0.0247351 8.48644e-07 3.10769e-08 2.718 ||| 0-1 ||| 217 1.17835e+06 +en ||| important to ||| 0.0012044 0.0247351 5.94051e-06 1.07823e-05 2.718 ||| 0-1 ||| 5812 1.17835e+06 +en ||| important when ||| 0.0128205 0.142731 8.48644e-07 2.28369e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| important ||| 1.33998e-05 1.37e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 74628 1.17835e+06 +en ||| imported back into ||| 0.5 0.525896 8.48644e-07 5.95582e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| imported to ||| 0.0714286 0.0247351 8.48644e-07 1.12433e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| imports 60 % of ||| 0.333333 0.0116562 8.48644e-07 4.08458e-17 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| imposed by ||| 0.00485437 0.0468744 2.54593e-06 4.74696e-07 2.718 ||| 0-1 ||| 618 1.17835e+06 +en ||| imposed for ||| 0.0285714 0.0286209 8.48644e-07 6.4199e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| imposed from ||| 0.0277778 0.0308834 8.48644e-07 2.12325e-07 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| imposed in ||| 0.0793651 0.605812 4.24322e-06 2.57674e-05 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| imposed on society ||| 1 0.22993 8.48644e-07 2.68314e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| imposed on themselves during ||| 1 0.226251 8.48644e-07 4.63857e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| imposed on ||| 0.00745157 0.22993 4.24322e-06 4.6341e-06 2.718 ||| 0-1 ||| 671 1.17835e+06 +en ||| imposed when ||| 0.142857 0.142731 8.48644e-07 3.32194e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| imposing in ||| 0.333333 0.605812 8.48644e-07 7.29614e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| imposing on ||| 0.0204082 0.22993 8.48644e-07 1.31216e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| impossible at ||| 0.111111 0.321886 8.48644e-07 2.14411e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| impossible in ||| 0.0454545 0.605812 1.69729e-06 2.47515e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| impossible under ||| 0.333333 0.205566 8.48644e-07 3.03087e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| impossible within ||| 0.333333 0.369196 8.48644e-07 5.94247e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| impressed by ||| 0.00925926 0.0468744 8.48644e-07 2.72227e-08 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| impression in ||| 0.0714286 0.605812 8.48644e-07 1.21448e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| impression over ||| 0.5 0.157937 8.48644e-07 1.05389e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| impression when ||| 0.333333 0.142731 8.48644e-07 1.56572e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| imprisoned in ||| 0.0240964 0.605812 1.69729e-06 1.98566e-06 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| imprisoning Chechens in ||| 1 0.605812 8.48644e-07 4.52545e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| imprisonment in ||| 0.0833333 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| improve prospects for ||| 0.25 0.0286209 8.48644e-07 6.306e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| improve their lot in society ||| 1 0.605812 8.48644e-07 1.74176e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| improve their lot in ||| 1 0.605812 8.48644e-07 3.00821e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| improved as ||| 0.05 0.066968 8.48644e-07 4.08325e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| improved matters in ||| 1 0.605812 8.48644e-07 1.93925e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| improvement in ||| 0.0031746 0.605812 2.54593e-06 9.65122e-06 2.718 ||| 0-1 ||| 945 1.17835e+06 +en ||| improvements at ||| 0.142857 0.321886 8.48644e-07 5.48027e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| improvements in ||| 0.00271739 0.605812 1.69729e-06 6.3264e-06 2.718 ||| 0-1 ||| 736 1.17835e+06 +en ||| improvements to ||| 0.002849 0.0247351 8.48644e-07 3.85084e-07 2.718 ||| 0-1 ||| 351 1.17835e+06 +en ||| improving conditions for ||| 0.0204082 0.0286209 8.48644e-07 2.96972e-11 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| improving conditions in rural ||| 1 0.605812 8.48644e-07 1.33498e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| improving conditions in ||| 0.166667 0.605812 8.48644e-07 1.19195e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| impudently displayed in ||| 0.333333 0.605812 8.48644e-07 3.25094e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| in [ addressing ] ||| 1 0.605812 8.48644e-07 1.09737e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in [ addressing ||| 1 0.605812 8.48644e-07 2.93416e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in [ ||| 1 0.605812 8.48644e-07 1.63009e-05 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in ' ||| 0.0285714 0.605812 7.6378e-06 0.00158617 2.718 ||| 0-0 ||| 315 1.17835e+06 +en ||| in " ||| 0.130435 0.605812 2.54593e-06 0.00010935 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in , and affected by , ||| 0.5 0.605812 8.48644e-07 2.87632e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in , and affected by ||| 0.5 0.605812 8.48644e-07 2.41192e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in , and affected ||| 0.5 0.605812 8.48644e-07 4.59404e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in , and ||| 0.0153846 0.605812 8.48644e-07 0.000689796 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| in , but has ||| 0.5 0.605812 8.48644e-07 1.93724e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in , but ||| 0.0588235 0.605812 8.48644e-07 3.76345e-05 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in , for example , ||| 0.0117647 0.605812 8.48644e-07 1.46931e-08 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| in , for example ||| 0.0238095 0.605812 8.48644e-07 1.23208e-07 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| in , for instance , ||| 0.285714 0.605812 1.69729e-06 3.27074e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in , for instance ||| 0.5 0.605812 1.69729e-06 2.74265e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in , for ||| 0.0909091 0.605812 3.39458e-06 0.000423248 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| in , in ||| 0.222222 0.605812 1.69729e-06 0.00117874 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| in , of course , ||| 0.5 0.605812 8.48644e-07 4.50458e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in , of course ||| 1 0.605812 8.48644e-07 3.77728e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in , of ||| 1 0.605812 8.48644e-07 0.0029938 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in , then ||| 0.166667 0.605812 8.48644e-07 8.8684e-05 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in , to ||| 0.333333 0.605812 8.48644e-07 0.00489338 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in , you ||| 0.5 0.605812 8.48644e-07 0.000177803 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in , ||| 0.228223 0.605812 0.000111172 0.0550696 2.718 ||| 0-0 ||| 574 1.17835e+06 +en ||| in - if you do not mind ||| 1 0.605812 8.48644e-07 1.3884e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in - if you do not ||| 1 0.605812 8.48644e-07 5.51171e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in - if you do ||| 1 0.605812 8.48644e-07 1.6144e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in - if you ||| 1 0.605812 8.48644e-07 4.69943e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in - if ||| 1 0.605812 8.48644e-07 1.45552e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in - ||| 0.222222 0.605812 3.39458e-06 0.00174188 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in ... ||| 0.0833333 0.605812 8.48644e-07 1.63009e-05 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in 1914 , ||| 1 0.605812 8.48644e-07 2.20278e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in 1914 ||| 0.25 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in 1982 following ||| 0.5 0.605812 8.48644e-07 4.13109e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in 1982 ||| 0.025 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| in 1988 in ||| 1 0.605812 8.48644e-07 1.38379e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| in 1992 and 1993 ||| 0.0625 0.605812 8.48644e-07 4.19356e-14 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in 1992 and ||| 0.0212766 0.605812 8.48644e-07 1.67742e-08 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| in 1992 ||| 0.00212766 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-0 ||| 470 1.17835e+06 +en ||| in 1996 ||| 0.00157233 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-0 ||| 636 1.17835e+06 +en ||| in 1997 and ||| 0.0131579 0.605812 8.48644e-07 5.6107e-08 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| in 1997 ||| 0.0025 0.605812 1.69729e-06 4.47928e-06 2.718 ||| 0-0 ||| 800 1.17835e+06 +en ||| in 1998 ||| 0.00143678 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-0 ||| 696 1.17835e+06 +en ||| in 1999 ||| 0.000985222 0.605812 8.48644e-07 7.29614e-06 2.718 ||| 0-0 ||| 1015 1.17835e+06 +en ||| in 2000 ||| 0.00160256 0.605812 8.48644e-07 1.32993e-05 2.718 ||| 0-0 ||| 624 1.17835e+06 +en ||| in 2006 ||| 0.00091659 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-0 ||| 1091 1.17835e+06 +en ||| in 2008 ||| 0.00104493 0.605812 8.48644e-07 1.09904e-05 2.718 ||| 0-0 ||| 957 1.17835e+06 +en ||| in 34 ||| 0.25 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in 36 ||| 0.333333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in 8 ||| 0.25 0.605812 8.48644e-07 5.81844e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in ? ? ? ||| 0.5 0.605812 8.48644e-07 2.30495e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in ? ? ||| 0.5 0.605812 8.48644e-07 1.34872e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in ? ||| 0.0333333 0.605812 8.48644e-07 7.89184e-05 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| in ASEAN ||| 0.0769231 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in Afghanistan ||| 0.000807102 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-0 ||| 1239 1.17835e+06 +en ||| in Africa and ||| 0.00526316 0.605812 8.48644e-07 1.9782e-07 2.718 ||| 0-0 ||| 190 1.17835e+06 +en ||| in Africa ||| 0.00145666 0.605812 1.69729e-06 1.57929e-05 2.718 ||| 0-0 ||| 1373 1.17835e+06 +en ||| in Albania ||| 0.00688073 0.605812 2.54593e-06 3.83278e-06 2.718 ||| 0-0 ||| 436 1.17835e+06 +en ||| in Amendment No 1 ||| 0.03125 0.605812 8.48644e-07 5.43659e-14 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| in Amendment No 21 in relation to ||| 1 0.605812 8.48644e-07 3.27801e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in Amendment No 21 in relation ||| 1 0.605812 8.48644e-07 3.68903e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in Amendment No 21 in ||| 1 0.605812 8.48644e-07 1.51625e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in Amendment No ||| 0.0022831 0.605812 8.48644e-07 8.53468e-10 2.718 ||| 0-0 ||| 438 1.17835e+06 +en ||| in Amendment ||| 0.00175439 0.605812 8.48644e-07 1.26066e-05 2.718 ||| 0-0 ||| 570 1.17835e+06 +en ||| in Amsterdam . I do not share ||| 1 0.605812 8.48644e-07 1.12959e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Amsterdam . I do not ||| 1 0.605812 8.48644e-07 1.20682e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Amsterdam . I do ||| 1 0.605812 8.48644e-07 3.53482e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Amsterdam . I ||| 1 0.605812 8.48644e-07 1.02897e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Amsterdam . ||| 0.0166667 0.605812 8.48644e-07 1.45468e-08 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| in Amsterdam ||| 0.00571429 0.605812 1.69729e-06 4.80252e-06 2.718 ||| 0-0 ||| 350 1.17835e+06 +en ||| in Arab ||| 0.25 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in Article 5 ||| 0.0166667 0.605812 8.48644e-07 1.48121e-10 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| in Article ||| 0.000791766 0.605812 8.48644e-07 9.14327e-06 2.718 ||| 0-0 ||| 1263 1.17835e+06 +en ||| in Asia ||| 0.00190476 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-0 ||| 525 1.17835e+06 +en ||| in Austria are ||| 0.125 0.605812 8.48644e-07 7.28672e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in Austria ||| 0.00423729 0.605812 2.54593e-06 4.80252e-06 2.718 ||| 0-0 ||| 708 1.17835e+06 +en ||| in Belarus ||| 0.000957854 0.605812 8.48644e-07 5.4952e-06 2.718 ||| 0-0 ||| 1044 1.17835e+06 +en ||| in Belgium ||| 0.00133333 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-0 ||| 750 1.17835e+06 +en ||| in Bosnia in ||| 0.25 0.605812 8.48644e-07 1.00224e-06 2.718 ||| 0-0 0-2 ||| 4 1.17835e+06 +en ||| in Bosnia ||| 0.00519031 0.605812 2.54593e-06 2.17037e-06 2.718 ||| 0-0 ||| 578 1.17835e+06 +en ||| in Britain ||| 0.00181488 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-0 ||| 551 1.17835e+06 +en ||| in Brittany ||| 0.047619 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| in Brussels ||| 0.00128 0.605812 3.39458e-06 5.17195e-06 2.718 ||| 0-0 ||| 3125 1.17835e+06 +en ||| in Burma ||| 0.00158983 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-0 ||| 629 1.17835e+06 +en ||| in Business ||| 1 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Cambridgeshire ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Canada . ||| 0.0243902 0.605812 8.48644e-07 6.99367e-09 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| in Canada ||| 0.00724638 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-0 ||| 138 1.17835e+06 +en ||| in Castilian ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Central Asia ||| 0.00925926 0.605812 8.48644e-07 4.11909e-11 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| in Central and Eastern ||| 0.0454545 0.605812 8.48644e-07 1.1093e-12 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| in Central and ||| 0.111111 0.605812 2.54593e-06 1.28988e-07 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| in Central ||| 0.162162 0.605812 5.09187e-06 1.02977e-05 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| in Chechnya ||| 0.00145138 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-0 ||| 689 1.17835e+06 +en ||| in China to the fore ||| 1 0.605812 8.48644e-07 7.61899e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in China to the ||| 0.5 0.605812 8.48644e-07 6.62521e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in China to ||| 0.0625 0.605812 8.48644e-07 1.07917e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in China ||| 0.0016142 0.605812 1.69729e-06 1.21448e-05 2.718 ||| 0-0 ||| 1239 1.17835e+06 +en ||| in City ||| 1 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Colombia ||| 0.00597015 0.605812 1.69729e-06 1.66241e-06 2.718 ||| 0-0 ||| 335 1.17835e+06 +en ||| in Colombia ’ ||| 0.5 0.605812 8.48644e-07 2.89609e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Committee ||| 0.0227273 0.605812 8.48644e-07 7.04678e-05 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| in Community countries ||| 0.2 0.605812 8.48644e-07 2.83873e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in Community ||| 0.037037 0.605812 8.48644e-07 7.47624e-05 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| in Constantinople ||| 0.125 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in Criminal ||| 0.545455 0.605812 5.09187e-06 3.50954e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in Croatia ||| 0.0060241 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-0 ||| 166 1.17835e+06 +en ||| in Cyprus ' ||| 1 0.605812 8.48644e-07 2.5696e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Cyprus ||| 0.00485437 0.605812 1.69729e-06 7.48085e-06 2.718 ||| 0-0 ||| 412 1.17835e+06 +en ||| in Côte ||| 0.00699301 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| in December ||| 0.00133067 0.605812 3.39458e-06 4.15603e-06 2.718 ||| 0-0 ||| 3006 1.17835e+06 +en ||| in Denmark , ||| 0.00671141 0.605812 8.48644e-07 4.3505e-07 2.718 ||| 0-0 ||| 149 1.17835e+06 +en ||| in Denmark ||| 0.00639659 0.605812 2.54593e-06 3.64807e-06 2.718 ||| 0-0 ||| 469 1.17835e+06 +en ||| in Development ||| 0.25 0.605812 8.48644e-07 2.02722e-05 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in Dublin ||| 0.00229358 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-0 ||| 436 1.17835e+06 +en ||| in Dutch , ||| 0.1 0.605812 8.48644e-07 9.14155e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in Dutch ||| 0.0638298 0.605812 2.54593e-06 7.66557e-06 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| in EU ||| 0.0254237 0.605812 2.54593e-06 0.000228489 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| in East ||| 0.025641 0.605812 8.48644e-07 1.38073e-05 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| in Eastern Europe ||| 0.00403226 0.605812 8.48644e-07 2.00949e-09 2.718 ||| 0-0 ||| 248 1.17835e+06 +en ||| in Eastern ||| 0.0135135 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| in Egypt ||| 0.00223714 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-0 ||| 447 1.17835e+06 +en ||| in Eldoret , in ||| 1 0.605812 8.48644e-07 4.71495e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Eldoret , ||| 1 0.605812 8.48644e-07 2.20278e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Eldoret ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in English , ||| 0.00884956 0.605812 8.48644e-07 8.53578e-07 2.718 ||| 0-0 ||| 113 1.17835e+06 +en ||| in English ||| 0.00483092 0.605812 1.69729e-06 7.15761e-06 2.718 ||| 0-0 ||| 414 1.17835e+06 +en ||| in Environmental ||| 0.5 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Estonia ||| 0.00699301 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| in Euro ' ||| 1 0.605812 8.48644e-07 1.491e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Euro ||| 0.0769231 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in Euronews ||| 0.1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in Europe ' ||| 0.0327869 0.605812 1.69729e-06 8.02603e-07 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| in Europe 's ||| 0.030303 0.605812 8.48644e-07 4.44984e-07 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| in Europe ( ||| 0.0120482 0.605812 8.48644e-07 2.25343e-07 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| in Europe , or new and old ||| 1 0.605812 8.48644e-07 1.83656e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Europe , or new and ||| 1 0.605812 8.48644e-07 2.38514e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Europe , or new ||| 1 0.605812 8.48644e-07 1.90417e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Europe , or ||| 0.0434783 0.605812 8.48644e-07 3.18583e-08 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in Europe , we ||| 0.0212766 0.605812 8.48644e-07 3.16334e-07 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| in Europe , ||| 0.00111576 0.605812 3.39458e-06 2.78652e-05 2.718 ||| 0-0 ||| 3585 1.17835e+06 +en ||| in Europe . ||| 0.000198807 0.605812 8.48644e-07 7.0776e-07 2.718 ||| 0-0 ||| 5030 1.17835e+06 +en ||| in Europe going to a ||| 1 0.605812 8.48644e-07 7.87613e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Europe going to ||| 1 0.605812 8.48644e-07 1.77687e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Europe going ||| 1 0.605812 8.48644e-07 1.99967e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Europe have are knowledge , ability ||| 1 0.605812 8.48644e-07 1.10724e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Europe have are knowledge , ||| 1 0.605812 8.48644e-07 2.40183e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Europe have are knowledge ||| 1 0.605812 8.48644e-07 2.01404e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Europe have are ||| 1 0.605812 8.48644e-07 4.24007e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Europe have ||| 0.0070922 0.605812 8.48644e-07 2.79454e-06 2.718 ||| 0-0 ||| 141 1.17835e+06 +en ||| in Europe of ||| 0.0333333 0.605812 8.48644e-07 1.27028e-05 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| in Europe we ||| 0.0217391 0.605812 8.48644e-07 2.65259e-06 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| in Europe within ||| 0.125 0.369196 8.48644e-07 1.20076e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| in Europe ||| 0.00219408 0.605812 3.73403e-05 0.000233661 2.718 ||| 0-0 ||| 20054 1.17835e+06 +en ||| in Europe ’ ||| 0.027027 0.605812 8.48644e-07 4.07061e-07 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| in European Union internal market legislation ||| 1 0.605812 8.48644e-07 7.24767e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in European Union internal market ||| 1 0.605812 8.48644e-07 9.02574e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in European Union internal ||| 1 0.605812 8.48644e-07 3.99369e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in European Union ||| 0.0625 0.605812 8.48644e-07 8.60709e-07 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in European history ||| 0.02 0.605812 8.48644e-07 5.55894e-08 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| in European ||| 0.032967 0.605812 5.09187e-06 0.00154415 2.718 ||| 0-0 ||| 182 1.17835e+06 +en ||| in Exchequer ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in FYROM ' ||| 1 0.605812 8.48644e-07 1.14204e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in FYROM ||| 0.02 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| in Finland placed on ||| 1 0.417871 8.48644e-07 2.06462e-11 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| in France ? why should ||| 1 0.605812 8.48644e-07 1.98255e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in France ? why ||| 1 0.605812 8.48644e-07 4.47428e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in France ? ||| 0.0909091 0.605812 8.48644e-07 1.81512e-09 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in France and the ||| 0.00540541 0.605812 8.48644e-07 8.16739e-09 2.718 ||| 0-0 ||| 185 1.17835e+06 +en ||| in France and ||| 0.0019685 0.605812 8.48644e-07 1.33037e-07 2.718 ||| 0-0 ||| 508 1.17835e+06 +en ||| in France ||| 0.00285578 0.605812 5.09187e-06 1.0621e-05 2.718 ||| 0-0 ||| 2101 1.17835e+06 +en ||| in GM products ||| 1 0.605812 8.48644e-07 6.72353e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in GM ||| 0.5 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Geneva ||| 0.0015456 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-0 ||| 647 1.17835e+06 +en ||| in Georgia , or rather on ||| 1 0.417871 8.48644e-07 1.15277e-14 2.718 ||| 0-0 0-5 ||| 1 1.17835e+06 +en ||| in Georgia ||| 0.00199601 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-0 ||| 501 1.17835e+06 +en ||| in Germany , ||| 0.00348432 0.605812 1.69729e-06 1.4263e-06 2.718 ||| 0-0 ||| 574 1.17835e+06 +en ||| in Germany - will have been spent ||| 1 0.605812 8.48644e-07 9.99125e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Germany - will have been ||| 1 0.605812 8.48644e-07 1.5587e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Germany - will have ||| 1 0.605812 8.48644e-07 4.66788e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Germany - will ||| 1 0.605812 8.48644e-07 3.90297e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Germany - ||| 0.0416667 0.605812 8.48644e-07 4.51148e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in Germany ||| 0.00429646 0.605812 6.78915e-06 1.19601e-05 2.718 ||| 0-0 ||| 1862 1.17835e+06 +en ||| in Greece , ||| 0.00258398 0.605812 8.48644e-07 8.3155e-07 2.718 ||| 0-0 ||| 387 1.17835e+06 +en ||| in Greece ||| 0.00153492 0.605812 1.69729e-06 6.97289e-06 2.718 ||| 0-0 ||| 1303 1.17835e+06 +en ||| in Hall ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Helsinki should ||| 1 0.605812 8.48644e-07 5.11538e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Helsinki ||| 0.00257732 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 388 1.17835e+06 +en ||| in Hungary , ||| 0.00662252 0.605812 8.48644e-07 1.76223e-07 2.718 ||| 0-0 ||| 151 1.17835e+06 +en ||| in Hungary ||| 0.00378072 0.605812 1.69729e-06 1.4777e-06 2.718 ||| 0-0 ||| 529 1.17835e+06 +en ||| in IT ||| 0.2 0.605812 8.48644e-07 1.18216e-05 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in Indonesia ||| 0.0041841 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-0 ||| 239 1.17835e+06 +en ||| in Iran ||| 0.00104822 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-0 ||| 954 1.17835e+06 +en ||| in Iraq remains precarious ||| 1 0.605812 8.48644e-07 5.70906e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Iraq remains ||| 0.5 0.605812 8.48644e-07 5.19005e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Iraq ||| 0.00128617 0.605812 1.69729e-06 5.81844e-06 2.718 ||| 0-0 ||| 1555 1.17835e+06 +en ||| in Ireland be ||| 1 0.605812 8.48644e-07 1.89972e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Ireland ||| 0.00135013 0.605812 2.54593e-06 1.04824e-05 2.718 ||| 0-0 ||| 2222 1.17835e+06 +en ||| in Irish terms ||| 0.2 0.605812 8.48644e-07 1.29754e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in Irish ||| 0.0666667 0.605812 1.69729e-06 1.18216e-05 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| in Israel ||| 0.00253165 0.605812 8.48644e-07 1.09904e-05 2.718 ||| 0-0 ||| 395 1.17835e+06 +en ||| in Israeli ||| 0.333333 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in Italian ||| 0.0285714 0.605812 8.48644e-07 8.63531e-06 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| in Italy ||| 0.00132188 0.605812 1.69729e-06 5.17195e-06 2.718 ||| 0-0 ||| 1513 1.17835e+06 +en ||| in Italy ’ ||| 1 0.605812 8.48644e-07 9.01005e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in January and February 2004 and then ||| 1 0.605812 8.48644e-07 3.5989e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in January and February 2004 and ||| 1 0.605812 8.48644e-07 2.23479e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in January and February 2004 ||| 0.5 0.605812 8.48644e-07 1.78413e-18 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in January and February ||| 0.125 0.605812 8.48644e-07 1.41598e-13 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in January and ||| 0.0222222 0.605812 8.48644e-07 3.93327e-08 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| in January ||| 0.00169779 0.605812 1.69729e-06 3.14011e-06 2.718 ||| 0-0 ||| 1178 1.17835e+06 +en ||| in June , at ||| 0.25 0.321886 8.48644e-07 8.78134e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| in June ||| 0.000486855 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-0 ||| 2054 1.17835e+06 +en ||| in Kosovo , ||| 0.00263852 0.605812 8.48644e-07 1.3492e-06 2.718 ||| 0-0 ||| 379 1.17835e+06 +en ||| in Kosovo . ||| 0.00284091 0.605812 8.48644e-07 3.4269e-08 2.718 ||| 0-0 ||| 352 1.17835e+06 +en ||| in Kosovo and ||| 0.00497512 0.605812 8.48644e-07 1.41713e-07 2.718 ||| 0-0 ||| 201 1.17835e+06 +en ||| in Kosovo ||| 0.00224972 0.605812 3.39458e-06 1.13136e-05 2.718 ||| 0-0 ||| 1778 1.17835e+06 +en ||| in Latvia . ||| 0.0344828 0.605812 8.48644e-07 6.99367e-09 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in Latvia ||| 0.00617284 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-0 ||| 162 1.17835e+06 +en ||| in Latvian ||| 0.333333 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in Lisbon over ||| 0.5 0.605812 8.48644e-07 5.11399e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Lisbon ||| 0.00406504 0.605812 2.54593e-06 1.0621e-05 2.718 ||| 0-0 ||| 738 1.17835e+06 +en ||| in Luxembourg on 13 June ||| 1 0.605812 8.48644e-07 2.07315e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Luxembourg on 13 ||| 0.5 0.605812 8.48644e-07 2.41064e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Luxembourg on ||| 0.025641 0.605812 8.48644e-07 2.56452e-08 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| in Luxembourg ||| 0.00229095 0.605812 1.69729e-06 3.83278e-06 2.718 ||| 0-0 ||| 873 1.17835e+06 +en ||| in Macedonia ||| 0.00440529 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-0 ||| 227 1.17835e+06 +en ||| in Manzoni ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Member States remain unchanged , ||| 1 0.605812 8.48644e-07 5.25633e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Member States remain unchanged ||| 1 0.605812 8.48644e-07 4.40765e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Member States remain ||| 1 0.605812 8.48644e-07 1.37739e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Member States ||| 0.00397614 0.605812 3.39458e-06 1.13553e-07 2.718 ||| 0-0 ||| 1006 1.17835e+06 +en ||| in Member ||| 0.157895 0.605812 5.09187e-06 0.000237956 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| in Members ||| 0.142857 0.605812 8.48644e-07 6.81127e-05 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in Mesopotamia prove how ||| 0.5 0.605812 8.48644e-07 3.50203e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Mesopotamia prove ||| 0.5 0.605812 8.48644e-07 9.77129e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Mesopotamia ||| 0.2 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in Monetary Union ||| 0.25 0.605812 8.48644e-07 2.96006e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in Monetary ||| 0.5 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Moscow amidst great media excitement are ||| 1 0.605812 8.48644e-07 1.09913e-28 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Moscow amidst great media excitement ||| 1 0.605812 8.48644e-07 7.2441e-27 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Moscow amidst great media ||| 1 0.605812 8.48644e-07 1.03487e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Moscow amidst great ||| 1 0.605812 8.48644e-07 3.5933e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Moscow amidst ||| 1 0.605812 8.48644e-07 9.14327e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Moscow ||| 0.00346021 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-0 ||| 289 1.17835e+06 +en ||| in Mr Bösch 's ||| 1 0.605812 8.48644e-07 8.03716e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Mr Bösch ||| 0.333333 0.605812 8.48644e-07 4.22031e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in Mr Monti ||| 1 0.605812 8.48644e-07 5.42611e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Mr ||| 0.0126582 0.605812 1.69729e-06 0.000301451 2.718 ||| 0-0 ||| 158 1.17835e+06 +en ||| in Mrs ||| 0.01 0.605812 8.48644e-07 4.32227e-05 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| in North ||| 0.00220264 0.605812 8.48644e-07 9.65122e-06 2.718 ||| 0-0 ||| 454 1.17835e+06 +en ||| in Northern Ireland ||| 0.00158228 0.605812 8.48644e-07 9.43419e-11 2.718 ||| 0-0 ||| 632 1.17835e+06 +en ||| in Northern ||| 0.00632911 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-0 ||| 158 1.17835e+06 +en ||| in November ||| 0.00128123 0.605812 1.69729e-06 2.49362e-06 2.718 ||| 0-0 ||| 1561 1.17835e+06 +en ||| in October ||| 0.00152091 0.605812 1.69729e-06 3.00158e-06 2.718 ||| 0-0 ||| 1315 1.17835e+06 +en ||| in Palestine ||| 0.00297619 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-0 ||| 336 1.17835e+06 +en ||| in Paris , ||| 0.0114943 0.605812 8.48644e-07 1.59702e-07 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| in Paris ||| 0.00284091 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-0 ||| 352 1.17835e+06 +en ||| in Parliament ' ||| 0.222222 0.605812 1.69729e-06 9.10463e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in Parliament , ||| 0.00127714 0.605812 8.48644e-07 3.16099e-05 2.718 ||| 0-0 ||| 783 1.17835e+06 +en ||| in Parliament in ||| 0.0147059 0.605812 8.48644e-07 5.67353e-06 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| in Parliament with ||| 0.037037 0.605812 8.48644e-07 1.69494e-06 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| in Parliament ||| 0.00419375 0.605812 1.69729e-05 0.000265062 2.718 ||| 0-0 ||| 4769 1.17835e+06 +en ||| in Parliament ’ ||| 0.3 0.605812 2.54593e-06 4.61765e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in Persons ||| 0.2 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in Peru , the so-called ' Shining ||| 1 0.605812 8.48644e-07 6.94909e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Peru , the so-called ' ||| 1 0.605812 8.48644e-07 1.73727e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Peru , the so-called ||| 1 0.605812 8.48644e-07 5.05771e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Peru , the ||| 0.5 0.605812 8.48644e-07 1.35233e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Peru , ||| 0.0666667 0.605812 8.48644e-07 2.20278e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in Peru ||| 0.0181818 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| in Poland at ||| 0.2 0.321886 8.48644e-07 5.22296e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| in Poland ||| 0.00105597 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-0 ||| 947 1.17835e+06 +en ||| in Portugal , ||| 0.00350877 0.605812 8.48644e-07 3.96501e-07 2.718 ||| 0-0 ||| 285 1.17835e+06 +en ||| in Portugal ||| 0.00108342 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-0 ||| 923 1.17835e+06 +en ||| in Portuguese ||| 0.0434783 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in Road ||| 0.5 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Romania ||| 0.00134228 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-0 ||| 745 1.17835e+06 +en ||| in Rome should have ||| 1 0.605812 8.48644e-07 6.11789e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Rome should ||| 1 0.605812 8.48644e-07 5.11538e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Rome ||| 0.002457 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 407 1.17835e+06 +en ||| in Russia to ||| 0.111111 0.605812 8.48644e-07 1.65363e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in Russia ||| 0.00145666 0.605812 1.69729e-06 1.86098e-05 2.718 ||| 0-0 ||| 1373 1.17835e+06 +en ||| in Saudi ||| 0.0147059 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| in Scotland ||| 0.00231481 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-0 ||| 432 1.17835e+06 +en ||| in September ||| 0.000708717 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-0 ||| 1411 1.17835e+06 +en ||| in Serbia ||| 0.00260417 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-0 ||| 384 1.17835e+06 +en ||| in Slovenia ||| 0.00917431 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| in Somalia , ||| 0.0181818 0.605812 8.48644e-07 3.85487e-08 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| in Somalia ||| 0.00581395 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 172 1.17835e+06 +en ||| in South ||| 0.0215054 0.605812 1.69729e-06 9.97447e-06 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| in Spain ||| 0.00235849 0.605812 2.54593e-06 7.48085e-06 2.718 ||| 0-0 ||| 1272 1.17835e+06 +en ||| in Stalinist ||| 1 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in State ||| 0.5 0.605812 8.48644e-07 5.55061e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Strasbourg ||| 0.00240096 0.605812 3.39458e-06 4.34074e-06 2.718 ||| 0-0 ||| 1666 1.17835e+06 +en ||| in Styria ||| 0.333333 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in Sweden will ||| 0.5 0.605812 8.48644e-07 6.91128e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in Sweden ||| 0.0011325 0.605812 8.48644e-07 7.98881e-06 2.718 ||| 0-0 ||| 883 1.17835e+06 +en ||| in Tunisia and ||| 0.00769231 0.605812 8.48644e-07 1.67742e-08 2.718 ||| 0-0 ||| 130 1.17835e+06 +en ||| in Tunisia ||| 0.00227273 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-0 ||| 440 1.17835e+06 +en ||| in Turkey , ||| 0.00353357 0.605812 8.48644e-07 3.23258e-06 2.718 ||| 0-0 ||| 283 1.17835e+06 +en ||| in Turkey in ||| 0.037037 0.605812 8.48644e-07 1.25173e-05 2.718 ||| 0-0 0-2 ||| 27 1.17835e+06 +en ||| in Turkey ||| 0.00431566 0.605812 5.94051e-06 2.71066e-05 2.718 ||| 0-0 ||| 1622 1.17835e+06 +en ||| in Turkish ||| 0.0625 0.605812 8.48644e-07 1.38073e-05 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in UV ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Ukraine ||| 0.00131234 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-0 ||| 762 1.17835e+06 +en ||| in Venezuela ||| 0.00549451 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 182 1.17835e+06 +en ||| in Vienna in ||| 0.04 0.605812 8.48644e-07 1.77915e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| in WTO ||| 0.111111 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in Western Europe , as referred ||| 1 0.605812 8.48644e-07 3.53757e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Western Europe , as ||| 1 0.605812 8.48644e-07 3.69652e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in Western Europe , ||| 0.03125 0.605812 8.48644e-07 3.62248e-10 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| in Western Europe ||| 0.00645161 0.605812 8.48644e-07 3.0376e-09 2.718 ||| 0-0 ||| 155 1.17835e+06 +en ||| in Western ||| 0.0229885 0.605812 1.69729e-06 6.00315e-06 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| in Yugoslavia ||| 0.00568182 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-0 ||| 176 1.17835e+06 +en ||| in a European ||| 0.0384615 0.605812 8.48644e-07 6.84457e-05 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in a basic ||| 1 0.605812 8.48644e-07 1.10532e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a big ||| 0.0909091 0.605812 8.48644e-07 9.64081e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in a campaign ||| 0.1 0.605812 8.48644e-07 6.32486e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in a care ||| 1 0.605812 8.48644e-07 2.07758e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a class of ||| 0.333333 0.605812 8.48644e-07 9.56979e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in a class ||| 0.2 0.605812 8.48644e-07 1.76032e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in a complete ||| 0.333333 0.605812 8.48644e-07 1.46557e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in a country such as ||| 0.025641 0.066968 8.48644e-07 1.27076e-11 2.718 ||| 0-4 ||| 39 1.17835e+06 +en ||| in a culture ||| 0.111111 0.605812 8.48644e-07 4.05283e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in a debate on ||| 0.0222222 0.417871 8.48644e-07 3.36411e-07 2.718 ||| 0-0 0-3 ||| 45 1.17835e+06 +en ||| in a determined manner ||| 0.125 0.605812 8.48644e-07 1.36507e-10 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in a determined ||| 0.1 0.605812 8.48644e-07 7.00034e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in a disorganised fashion ||| 0.25 0.605812 8.48644e-07 2.94751e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in a disorganised ||| 0.5 0.605812 8.48644e-07 8.18753e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a fair ||| 0.05 0.605812 8.48644e-07 1.06028e-06 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in a few ||| 0.00149254 0.605812 8.48644e-07 3.58818e-06 2.718 ||| 0-0 ||| 670 1.17835e+06 +en ||| in a field ||| 0.0135135 0.605812 8.48644e-07 2.99049e-06 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| in a first major ||| 1 0.605812 8.48644e-07 1.06678e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a first ||| 0.0555556 0.605812 8.48644e-07 1.10204e-05 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in a fit and ||| 1 0.605812 8.48644e-07 8.30705e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a fit ||| 0.5 0.605812 1.69729e-06 6.6319e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in a fixed location , as ||| 1 0.605812 8.48644e-07 5.47125e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a fixed location , ||| 1 0.605812 8.48644e-07 5.36166e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a fixed location ||| 1 0.605812 8.48644e-07 4.49598e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a fixed ||| 1 0.605812 8.48644e-07 3.90954e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a form that is disguised to ||| 1 0.0247351 8.48644e-07 7.04e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| in a framework which takes ||| 0.5 0.605812 8.48644e-07 2.67553e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a framework which ||| 0.25 0.605812 8.48644e-07 2.07084e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in a framework ||| 0.0222222 0.605812 8.48644e-07 2.43784e-06 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| in a full , ||| 1 0.605812 8.48644e-07 4.47924e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a full ||| 0.125 0.605812 8.48644e-07 3.75603e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in a global context . ||| 0.0714286 0.605812 8.48644e-07 3.80243e-13 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in a global context ||| 0.030303 0.605812 8.48644e-07 1.25534e-10 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| in a global ||| 0.125 0.605812 8.48644e-07 9.35425e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in a good ||| 0.0540541 0.605812 3.39458e-06 1.06151e-05 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| in a great ||| 0.0227273 0.605812 8.48644e-07 8.04424e-06 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| in a lawful ||| 0.25 0.605812 8.48644e-07 2.86563e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in a legal ||| 0.166667 0.605812 8.48644e-07 2.65276e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in a man ||| 1 0.605812 8.48644e-07 1.30386e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a manner that is ||| 0.0526316 0.605812 8.48644e-07 2.10431e-09 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in a manner that ||| 0.0454545 0.605812 2.54593e-06 6.71421e-08 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| in a manner which is ||| 0.0666667 0.605812 8.48644e-07 1.06264e-09 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in a manner which ||| 0.0166667 0.605812 8.48644e-07 3.39055e-08 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| in a manner ||| 0.0354331 0.605812 7.6378e-06 3.99142e-06 2.718 ||| 0-0 ||| 254 1.17835e+06 +en ||| in a market at ||| 1 0.605812 8.48644e-07 1.93707e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a market ||| 0.0140845 0.605812 8.48644e-07 4.62595e-06 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| in a more favourable light ||| 0.2 0.605812 8.48644e-07 1.5761e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in a more favourable ||| 0.25 0.605812 8.48644e-07 9.06846e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in a more ||| 0.016129 0.605812 1.69729e-06 4.67446e-05 2.718 ||| 0-0 ||| 124 1.17835e+06 +en ||| in a mould ||| 1 0.605812 8.48644e-07 2.25157e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a much better ||| 0.0909091 0.605812 8.48644e-07 3.49052e-09 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in a much ||| 0.0689655 0.605812 3.39458e-06 2.05446e-05 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| in a new ||| 0.00666667 0.605812 1.69729e-06 1.22342e-05 2.718 ||| 0-0 ||| 300 1.17835e+06 +en ||| in a number of areas ||| 0.00568182 0.605812 8.48644e-07 1.26032e-10 2.718 ||| 0-0 ||| 176 1.17835e+06 +en ||| in a number of ||| 0.0243337 0.605812 1.78215e-05 5.50597e-07 2.718 ||| 0-0 ||| 863 1.17835e+06 +en ||| in a number ||| 0.0273003 0.605812 2.29134e-05 1.0128e-05 2.718 ||| 0-0 ||| 989 1.17835e+06 +en ||| in a peculiar situation ||| 0.5 0.605812 8.48644e-07 4.53282e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a peculiar ||| 1 0.605812 8.48644e-07 8.80159e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a period of ||| 0.020202 0.605812 1.69729e-06 1.94178e-07 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| in a period ||| 0.0165289 0.605812 1.69729e-06 3.57181e-06 2.718 ||| 0-0 ||| 121 1.17835e+06 +en ||| in a person 's ||| 0.5 0.605812 8.48644e-07 5.02073e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a person ||| 0.333333 0.605812 8.48644e-07 2.63638e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in a police van ||| 1 0.605812 8.48644e-07 2.31052e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a police ||| 1 0.605812 8.48644e-07 3.39782e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a pool of ||| 0.333333 0.605812 8.48644e-07 5.23e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in a pool ||| 0.333333 0.605812 8.48644e-07 9.62034e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in a position off ||| 1 0.605812 8.48644e-07 2.74334e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a position to advance along ||| 1 0.155535 8.48644e-07 7.79589e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| in a position to incorporate ||| 0.25 0.605812 8.48644e-07 7.96588e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in a position to ||| 0.00703675 0.605812 7.6378e-06 5.98938e-07 2.718 ||| 0-0 ||| 1279 1.17835e+06 +en ||| in a position ||| 0.0118835 0.605812 1.69729e-05 6.74038e-06 2.718 ||| 0-0 ||| 1683 1.17835e+06 +en ||| in a previous life ||| 0.333333 0.605812 8.48644e-07 1.58462e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in a previous ||| 0.125 0.605812 8.48644e-07 1.04596e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in a process ||| 0.00892857 0.605812 8.48644e-07 8.75042e-06 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| in a range of ||| 0.0377358 0.605812 1.69729e-06 7.64471e-08 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| in a range ||| 0.0555556 0.605812 2.54593e-06 1.40621e-06 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| in a rather ||| 0.0625 0.605812 8.48644e-07 6.26755e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in a rocket ||| 1 0.605812 8.48644e-07 3.68439e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a secret location ||| 0.25 0.605812 8.48644e-07 2.44807e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in a secret ||| 0.25 0.605812 8.48644e-07 2.12876e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in a sense strengthened it ||| 0.5 0.605812 8.48644e-07 7.45529e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a sense strengthened ||| 0.5 0.605812 8.48644e-07 4.19232e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a sense ||| 0.00342466 0.605812 8.48644e-07 3.6455e-06 2.718 ||| 0-0 ||| 292 1.17835e+06 +en ||| in a sensible manner ||| 0.0526316 0.605812 8.48644e-07 5.9073e-11 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in a sensible ||| 0.333333 0.605812 8.48644e-07 3.02938e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in a set of ||| 0.142857 0.605812 8.48644e-07 6.50301e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in a set ||| 0.142857 0.605812 8.48644e-07 1.1962e-05 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in a single act ||| 0.142857 0.605812 8.48644e-07 5.51903e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in a single ||| 0.00361011 0.605812 8.48644e-07 3.2484e-06 2.718 ||| 0-0 ||| 277 1.17835e+06 +en ||| in a situation in ||| 0.00512821 0.605812 8.48644e-07 2.25634e-07 2.718 ||| 0-3 ||| 195 1.17835e+06 +en ||| in a situation of ||| 0.0280374 0.605812 2.54593e-06 5.73075e-07 2.718 ||| 0-0 ||| 107 1.17835e+06 +en ||| in a situation ||| 0.00924499 0.605812 5.09187e-06 1.05414e-05 2.718 ||| 0-0 ||| 649 1.17835e+06 +en ||| in a small ||| 0.0169492 0.605812 8.48644e-07 2.62206e-06 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| in a space ||| 0.111111 0.605812 8.48644e-07 8.47409e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in a specific corridor . ||| 1 0.605812 8.48644e-07 1.68628e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a specific corridor ||| 1 0.605812 8.48644e-07 5.56711e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a specific ||| 0.0769231 0.605812 8.48644e-07 3.09284e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in a spirit of ||| 0.0108696 0.605812 3.39458e-06 6.53194e-08 2.718 ||| 0-0 ||| 368 1.17835e+06 +en ||| in a spirit ||| 0.0130548 0.605812 4.24322e-06 1.20152e-06 2.718 ||| 0-0 ||| 383 1.17835e+06 +en ||| in a state of high agitation , ||| 0.333333 0.605812 8.48644e-07 3.50325e-18 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in a state of high agitation ||| 0.333333 0.605812 8.48644e-07 2.93762e-17 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in a state of high ||| 0.333333 0.605812 8.48644e-07 4.1966e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in a state of ||| 0.0220994 0.605812 3.39458e-06 2.81085e-07 2.718 ||| 0-0 ||| 181 1.17835e+06 +en ||| in a state ||| 0.0264317 0.605812 5.09187e-06 5.17042e-06 2.718 ||| 0-0 ||| 227 1.17835e+06 +en ||| in a strong ||| 0.0555556 0.605812 8.48644e-07 1.7378e-06 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in a supplement to ||| 1 0.605812 8.48644e-07 7.27529e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a supplement ||| 0.5 0.605812 8.48644e-07 8.18753e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a third country , again ||| 0.5 0.605812 8.48644e-07 2.37766e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a third country , ||| 0.0416667 0.605812 8.48644e-07 4.11146e-11 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in a third country ||| 0.0144928 0.605812 8.48644e-07 3.44763e-10 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| in a third ||| 0.0140845 0.605812 8.48644e-07 9.57941e-07 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| in a thorough manner ||| 0.333333 0.605812 8.48644e-07 7.0249e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in a thorough ||| 0.111111 0.605812 8.48644e-07 3.60251e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in a thriving democracy , ||| 1 0.605812 8.48644e-07 7.81365e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a thriving democracy ||| 1 0.605812 8.48644e-07 6.55207e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a thriving ||| 0.5 0.605812 8.48644e-07 2.25157e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a time of ||| 0.00833333 0.605812 8.48644e-07 1.82683e-06 2.718 ||| 0-0 ||| 120 1.17835e+06 +en ||| in a time ||| 0.00724638 0.605812 8.48644e-07 3.36037e-05 2.718 ||| 0-0 ||| 138 1.17835e+06 +en ||| in a travel ban ||| 1 0.605812 8.48644e-07 2.97883e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a travel ||| 0.5 0.605812 8.48644e-07 7.73721e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a uniform manner in ||| 0.333333 0.605812 8.48644e-07 7.34735e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| in a variety ||| 0.0151515 0.605812 8.48644e-07 4.70783e-07 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| in a very much ||| 0.5 0.605812 8.48644e-07 7.14848e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a very ||| 0.0287081 0.605812 5.09187e-06 7.12212e-05 2.718 ||| 0-0 ||| 209 1.17835e+06 +en ||| in a way , ||| 0.00636943 0.605812 8.48644e-07 5.26183e-06 2.718 ||| 0-0 ||| 157 1.17835e+06 +en ||| in a way that is ||| 0.0149254 0.605812 1.69729e-06 2.32618e-08 2.718 ||| 0-0 ||| 134 1.17835e+06 +en ||| in a way that puts the ACP ||| 1 0.605812 8.48644e-07 1.62888e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a way that puts the ||| 1 0.605812 8.48644e-07 1.50823e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a way that puts ||| 1 0.605812 8.48644e-07 2.45672e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a way that will ||| 0.0909091 0.605812 1.69729e-06 6.42103e-09 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| in a way that ||| 0.010101 0.605812 5.09187e-06 7.42212e-07 2.718 ||| 0-0 ||| 594 1.17835e+06 +en ||| in a way which is ||| 0.0222222 0.605812 8.48644e-07 1.17468e-08 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| in a way which ||| 0.0166667 0.605812 3.39458e-06 3.74804e-07 2.718 ||| 0-0 ||| 240 1.17835e+06 +en ||| in a way ||| 0.0131885 0.605812 1.4427e-05 4.41226e-05 2.718 ||| 0-0 ||| 1289 1.17835e+06 +en ||| in a well known incident when ||| 0.5 0.605812 8.48644e-07 1.92921e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a well known incident ||| 0.5 0.605812 8.48644e-07 3.8592e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a well known ||| 0.5 0.605812 8.48644e-07 3.57333e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in a well ||| 0.333333 0.605812 8.48644e-07 3.24554e-05 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in a while , to ||| 1 0.605812 8.48644e-07 4.04307e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in a while , ||| 0.125 0.605812 8.48644e-07 4.55003e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in a while ||| 0.0833333 0.605812 1.69729e-06 3.81539e-06 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in a whole ||| 0.0217391 0.605812 8.48644e-07 1.15792e-05 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| in a wide range of ||| 0.0344828 0.605812 8.48644e-07 3.16491e-12 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in a wide range ||| 0.03125 0.605812 8.48644e-07 5.8217e-11 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| in a wide ||| 0.0540541 0.605812 1.69729e-06 8.47409e-07 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| in a word ||| 0.0128205 0.605812 8.48644e-07 2.08373e-06 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| in a world of ||| 0.0144928 0.605812 8.48644e-07 2.53488e-07 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| in a world ||| 0.00315457 0.605812 8.48644e-07 4.6628e-06 2.718 ||| 0-0 ||| 317 1.17835e+06 +en ||| in a ||| 0.091329 0.605812 0.00248313 0.0204688 2.718 ||| 0-0 ||| 32038 1.17835e+06 +en ||| in aanmerking komen om het lidmaatschap ||| 1 0.605812 8.48644e-07 4.72864e-33 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in aanmerking komen om het ||| 1 0.605812 8.48644e-07 1.18216e-26 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in aanmerking komen om ||| 1 0.605812 8.48644e-07 2.9554e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in aanmerking komen ||| 1 0.605812 8.48644e-07 7.3885e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in aanmerking ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in about ||| 0.105263 0.605812 5.09187e-06 0.000653097 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| in absolutely ||| 0.2 0.605812 1.69729e-06 4.3546e-05 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in access ||| 0.00970874 0.605812 8.48644e-07 3.97132e-05 2.718 ||| 0-0 ||| 103 1.17835e+06 +en ||| in accessing and ||| 1 0.605812 8.48644e-07 8.09791e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in accessing ||| 0.0108696 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| in accident ||| 0.125 0.605812 8.48644e-07 6.3264e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in accordance with the instructions given by ||| 1 0.605812 8.48644e-07 1.6617e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in accordance with the instructions given ||| 1 0.605812 8.48644e-07 3.16508e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in accordance with the instructions ||| 0.166667 0.605812 8.48644e-07 4.6118e-14 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in accordance with the ||| 0.000769231 0.605812 1.69729e-06 1.44119e-08 2.718 ||| 0-0 ||| 2600 1.17835e+06 +en ||| in accordance with ||| 0.00463994 0.605812 2.12161e-05 2.34752e-07 2.718 ||| 0-0 ||| 5388 1.17835e+06 +en ||| in accordance ||| 0.00870925 0.605812 3.30971e-05 3.67116e-05 2.718 ||| 0-0 ||| 4478 1.17835e+06 +en ||| in achieving communication between people of ||| 1 0.605812 8.48644e-07 1.18082e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in achieving communication between people ||| 1 0.605812 8.48644e-07 2.17206e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in achieving communication between ||| 1 0.605812 8.48644e-07 2.46769e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in achieving communication ||| 1 0.605812 8.48644e-07 9.35439e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in achieving ||| 0.00998573 0.605812 5.94051e-06 3.05699e-05 2.718 ||| 0-0 ||| 701 1.17835e+06 +en ||| in across ||| 1 0.440346 8.48644e-07 0.000948637 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| in acting in ||| 0.166667 0.605812 8.48644e-07 5.83167e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| in action ||| 0.00793651 0.605812 8.48644e-07 0.000139596 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| in actual fact , ||| 0.00431034 0.605812 1.69729e-06 2.33423e-08 2.718 ||| 0-0 ||| 464 1.17835e+06 +en ||| in actual fact ||| 0.00948992 0.605812 6.78915e-06 1.95735e-07 2.718 ||| 0-0 ||| 843 1.17835e+06 +en ||| in actual ||| 0.052356 0.605812 8.48644e-06 6.68197e-05 2.718 ||| 0-0 ||| 191 1.17835e+06 +en ||| in actually ||| 0.153846 0.605812 1.69729e-06 0.000190623 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in adding ||| 0.0588235 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in addition , Parliament will receive ||| 1 0.605812 8.48644e-07 2.70714e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in addition , Parliament will ||| 0.5 0.605812 8.48644e-07 2.69635e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in addition , Parliament ||| 0.0588235 0.605812 8.48644e-07 3.11674e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in addition , at ||| 0.111111 0.605812 8.48644e-07 2.2737e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in addition , part-time work is ||| 1 0.605812 8.48644e-07 2.3699e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in addition , part-time work ||| 1 0.605812 8.48644e-07 7.56162e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in addition , part-time ||| 1 0.605812 8.48644e-07 1.19457e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in addition , ||| 0.00146812 0.605812 5.94051e-06 5.42986e-06 2.718 ||| 0-0 ||| 4768 1.17835e+06 +en ||| in addition to the ||| 0.00114811 0.605812 8.48644e-07 2.48382e-07 2.718 ||| 0-0 ||| 871 1.17835e+06 +en ||| in addition to ||| 0.00259548 0.605812 5.94051e-06 4.04586e-06 2.718 ||| 0-0 ||| 2697 1.17835e+06 +en ||| in addition ||| 0.00339026 0.605812 2.29134e-05 4.55316e-05 2.718 ||| 0-0 ||| 7964 1.17835e+06 +en ||| in addressing ||| 0.0134529 0.605812 2.54593e-06 8.31206e-06 2.718 ||| 0-0 ||| 223 1.17835e+06 +en ||| in administering ||| 0.0434783 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in adopting ||| 0.00636943 0.605812 1.69729e-06 2.25811e-05 2.718 ||| 0-0 ||| 314 1.17835e+06 +en ||| in adult ||| 0.5 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in advance , in ||| 0.125 0.605812 8.48644e-07 4.16094e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| in advance in the ||| 1 0.605812 8.48644e-07 2.14203e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| in advance in ||| 0.125 0.605812 8.48644e-07 3.48912e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| in advance of ||| 0.0157895 0.605812 2.54593e-06 8.86181e-07 2.718 ||| 0-0 ||| 190 1.17835e+06 +en ||| in advance ||| 0.0108803 0.605812 9.33509e-06 1.63009e-05 2.718 ||| 0-0 ||| 1011 1.17835e+06 +en ||| in advancing ||| 0.0153846 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| in advertising ||| 0.0181818 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| in ages ||| 0.5 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in agreeing on ||| 0.0625 0.605812 8.48644e-07 2.99708e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in agreeing ||| 0.0547945 0.605812 3.39458e-06 4.47928e-06 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| in agreement with ||| 0.00340715 0.605812 1.69729e-06 5.44212e-07 2.718 ||| 0-0 ||| 587 1.17835e+06 +en ||| in agreement ||| 0.00502092 0.605812 5.09187e-06 8.51063e-05 2.718 ||| 0-0 ||| 1195 1.17835e+06 +en ||| in agriculture in ||| 0.0769231 0.605812 8.48644e-07 1.42332e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in agriculture ||| 0.0030722 0.605812 1.69729e-06 6.64965e-06 2.718 ||| 0-0 ||| 651 1.17835e+06 +en ||| in aid ||| 0.00990099 0.605812 1.69729e-06 6.03086e-05 2.718 ||| 0-0 ||| 202 1.17835e+06 +en ||| in air ||| 0.0384615 0.605812 8.48644e-07 2.54441e-05 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in air-conditioned ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in all , I ||| 0.0714286 0.605812 8.48644e-07 1.84071e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in all , ||| 0.00653595 0.605812 1.69729e-06 0.000260226 2.718 ||| 0-0 ||| 306 1.17835e+06 +en ||| in all Member States ||| 0.00134409 0.605812 8.48644e-07 5.36581e-10 2.718 ||| 0-0 ||| 744 1.17835e+06 +en ||| in all Member ||| 0.2 0.605812 8.48644e-07 1.12444e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in all aspects of ||| 0.0181818 0.605812 8.48644e-07 8.36325e-09 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| in all aspects ||| 0.0120482 0.605812 8.48644e-07 1.53838e-07 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| in all candour ||| 0.333333 0.605812 8.48644e-07 8.7284e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in all countries in ||| 0.2 0.605812 8.48644e-07 1.77346e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| in all his glory ||| 0.5 0.605812 8.48644e-07 7.21293e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in all his ||| 0.125 0.605812 8.48644e-07 6.55721e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in all of the ||| 0.00943396 0.605812 8.48644e-07 7.28277e-06 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| in all of ||| 0.0220386 0.605812 6.78915e-06 0.000118628 2.718 ||| 0-0 ||| 363 1.17835e+06 +en ||| in all our countries ||| 0.0166667 0.605812 8.48644e-07 1.14289e-09 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| in all our ||| 0.00343643 0.605812 8.48644e-07 3.00999e-06 2.718 ||| 0-0 ||| 291 1.17835e+06 +en ||| in all parties . ||| 0.5 0.605812 8.48644e-07 4.85143e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in all parties ||| 0.333333 0.605812 8.48644e-07 1.60166e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in all parts of ||| 0.025641 0.605812 8.48644e-07 6.916e-09 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| in all parts ||| 0.0266667 0.605812 1.69729e-06 1.27216e-07 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| in all tax jurisdictions ||| 1 0.605812 8.48644e-07 1.5194e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in all tax ||| 1 0.605812 8.48644e-07 1.38127e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in all the languages ||| 0.0227273 0.605812 8.48644e-07 2.41134e-09 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| in all the ||| 0.00128866 0.605812 1.69729e-06 0.000133963 2.718 ||| 0-0 ||| 1552 1.17835e+06 +en ||| in all their ||| 0.0149254 0.605812 8.48644e-07 2.52927e-06 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| in all this ||| 0.00735294 0.605812 8.48644e-07 1.40994e-05 2.718 ||| 0-0 ||| 136 1.17835e+06 +en ||| in all ||| 0.0134875 0.605812 0.000106929 0.0021821 2.718 ||| 0-0 ||| 9342 1.17835e+06 +en ||| in allowing ||| 0.0142857 0.605812 8.48644e-07 2.32738e-05 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| in almost ||| 0.00540541 0.605812 8.48644e-07 3.80508e-05 2.718 ||| 0-0 ||| 185 1.17835e+06 +en ||| in along ||| 1 0.605812 1.69729e-06 8.05808e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in already ||| 0.666667 0.605812 1.69729e-06 0.000213851 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in an adjoining room ||| 1 0.605812 8.48644e-07 5.37339e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in an adjoining ||| 1 0.605812 8.48644e-07 1.43673e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in an annex , ||| 0.25 0.605812 8.48644e-07 6.11919e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in an annex ||| 0.0434783 0.605812 8.48644e-07 5.1312e-09 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in an appearance in ||| 0.333333 0.605812 8.48644e-07 4.92041e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| in an area ||| 0.00235294 0.605812 8.48644e-07 8.52394e-07 2.718 ||| 0-0 ||| 425 1.17835e+06 +en ||| in an article in ||| 0.0909091 0.605812 8.48644e-07 6.32625e-10 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| in an attempt to do things too ||| 1 0.605812 8.48644e-07 2.92636e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in an attempt to do things ||| 1 0.605812 8.48644e-07 2.15015e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in an attempt to do ||| 1 0.605812 8.48644e-07 5.23151e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in an attempt to ||| 0.00411523 0.605812 8.48644e-07 1.52287e-08 2.718 ||| 0-0 ||| 243 1.17835e+06 +en ||| in an attempt ||| 0.00934579 0.605812 1.69729e-06 1.71382e-07 2.718 ||| 0-0 ||| 214 1.17835e+06 +en ||| in an enclave with ||| 1 0.0535436 8.48644e-07 1.22011e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| in an episode ||| 0.2 0.605812 8.48644e-07 2.87347e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in an extremely ||| 0.0555556 0.605812 8.48644e-07 1.94985e-07 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in an immense ||| 1 0.605812 8.48644e-07 8.82566e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in an immensely ||| 1 0.605812 8.48644e-07 8.20991e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in an operation ||| 0.142857 0.605812 8.48644e-07 1.16786e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in an unambiguous manner ||| 0.25 0.605812 8.48644e-07 4.40257e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in an unambiguous ||| 0.2 0.605812 8.48644e-07 2.25773e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in an uprising , not ||| 1 0.605812 8.48644e-07 1.83846e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in an uprising , ||| 1 0.605812 8.48644e-07 5.38489e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in an uprising ||| 0.5 0.605812 8.48644e-07 4.51545e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in an ||| 0.0185116 0.605812 8.40158e-05 0.00205248 2.718 ||| 0-0 ||| 5348 1.17835e+06 +en ||| in and accession to ||| 1 0.605812 8.48644e-07 1.88629e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in and accession ||| 1 0.605812 8.48644e-07 2.12281e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in and around ||| 0.0384615 0.605812 8.48644e-07 7.70459e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in and by ||| 0.333333 0.605812 8.48644e-07 3.03678e-05 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in and day out ||| 0.105263 0.605812 1.69729e-06 5.67634e-09 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in and day ||| 0.0952381 0.605812 1.69729e-06 1.48192e-06 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| in and of ||| 0.375 0.605812 2.54593e-06 0.000314454 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in and on ||| 0.5 0.27892 8.48644e-07 3.53857e-05 2.718 ||| 0-0 0-1 0-2 ||| 2 1.17835e+06 +en ||| in and support ||| 0.0909091 0.605812 8.48644e-07 1.97763e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in and ||| 0.0477178 0.605812 1.95188e-05 0.00578422 2.718 ||| 0-0 ||| 482 1.17835e+06 +en ||| in annual ||| 0.5 0.605812 8.48644e-07 1.32993e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in another guise ||| 0.5 0.605812 8.48644e-07 3.56273e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in another ||| 0.00070922 0.605812 8.48644e-07 0.000111335 2.718 ||| 0-0 ||| 1410 1.17835e+06 +en ||| in answer to the ||| 0.0178571 0.605812 8.48644e-07 1.8868e-07 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| in answer to ||| 0.0104712 0.605812 1.69729e-06 3.07337e-06 2.718 ||| 0-0 ||| 191 1.17835e+06 +en ||| in answer ||| 0.01 0.605812 1.69729e-06 3.45874e-05 2.718 ||| 0-0 ||| 200 1.17835e+06 +en ||| in anticipation ||| 0.0150376 0.605812 1.69729e-06 1.4777e-06 2.718 ||| 0-0 ||| 133 1.17835e+06 +en ||| in antiquity ||| 0.2 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in any actions ||| 0.5 0.605812 8.48644e-07 4.87417e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in any case , ||| 0.00105152 0.605812 1.69729e-06 8.90972e-08 2.718 ||| 0-0 ||| 1902 1.17835e+06 +en ||| in any case ||| 0.00173461 0.605812 5.09187e-06 7.47117e-07 2.718 ||| 0-0 ||| 3459 1.17835e+06 +en ||| in any doubt about the matter ||| 1 0.605812 8.48644e-07 5.74952e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in any doubt about the ||| 0.25 0.605812 8.48644e-07 5.54171e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in any doubt about ||| 0.0833333 0.605812 8.48644e-07 9.02679e-11 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in any doubt ||| 0.0357143 0.605812 1.69729e-06 6.38251e-08 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| in any event my own ||| 1 0.605812 8.48644e-07 7.94824e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in any event my ||| 1 0.605812 8.48644e-07 4.6884e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in any event ||| 0.000768049 0.605812 8.48644e-07 7.29031e-08 2.718 ||| 0-0 ||| 1302 1.17835e+06 +en ||| in any fragile solidarity and further damage ||| 1 0.605812 8.48644e-07 1.49782e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in any fragile solidarity and further ||| 1 0.605812 8.48644e-07 3.55776e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in any fragile solidarity and ||| 1 0.605812 8.48644e-07 7.36139e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in any fragile solidarity ||| 1 0.605812 8.48644e-07 5.87694e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in any fragile ||| 1 0.605812 8.48644e-07 2.23458e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in any great ||| 0.2 0.605812 8.48644e-07 2.74434e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in any kind ||| 0.0588235 0.605812 8.48644e-07 3.40773e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in any of ||| 0.0230769 0.605812 2.54593e-06 3.79627e-05 2.718 ||| 0-0 ||| 130 1.17835e+06 +en ||| in any other , ||| 0.111111 0.605812 8.48644e-07 1.07884e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in any other way ||| 0.0232558 0.605812 8.48644e-07 1.95007e-09 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| in any other ||| 0.00816326 0.605812 1.69729e-06 9.04655e-07 2.718 ||| 0-0 ||| 245 1.17835e+06 +en ||| in any part of ||| 0.0555556 0.605812 8.48644e-07 4.52591e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in any part ||| 0.0243902 0.605812 8.48644e-07 8.3252e-07 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| in any way , shape , ||| 0.333333 0.605812 8.48644e-07 1.29515e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in any way , shape ||| 0.0833333 0.605812 8.48644e-07 1.08604e-11 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in any way , ||| 0.011236 0.605812 8.48644e-07 1.7951e-07 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| in any way in ||| 0.0555556 0.605812 8.48644e-07 3.22195e-08 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| in any way ||| 0.00514706 0.605812 5.94051e-06 1.50527e-06 2.718 ||| 0-0 ||| 1360 1.17835e+06 +en ||| in any ||| 0.0113202 0.605812 6.78915e-05 0.000698305 2.718 ||| 0-0 ||| 7067 1.17835e+06 +en ||| in anything and ||| 0.25 0.605812 8.48644e-07 9.07545e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in anything other ||| 0.333333 0.605812 8.48644e-07 9.38635e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in anything that can ||| 1 0.605812 8.48644e-07 3.62503e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in anything that ||| 1 0.605812 8.48644e-07 1.21878e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in anything ||| 0.16 0.605812 3.39458e-06 7.24535e-05 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| in applying ||| 0.00390625 0.605812 8.48644e-07 1.5285e-05 2.718 ||| 0-0 ||| 256 1.17835e+06 +en ||| in approving ||| 0.00925926 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| in are very ||| 1 0.605812 8.48644e-07 2.4379e-05 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in are ||| 0.285714 0.605812 1.69729e-06 0.00700647 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in areas of ||| 0.00900901 0.605812 8.48644e-07 5.74637e-06 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| in areas such ||| 0.012987 0.605812 8.48644e-07 2.18686e-07 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| in areas ||| 0.00398724 0.605812 4.24322e-06 0.000105702 2.718 ||| 0-0 ||| 1254 1.17835e+06 +en ||| in armed aggression ||| 0.2 0.605812 8.48644e-07 4.36845e-12 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in armed ||| 0.2 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in arms ||| 0.028169 0.605812 1.69729e-06 1.27913e-05 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| in around ||| 0.0833333 0.605812 1.69729e-06 6.15092e-05 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in arriving . when ||| 1 0.142731 8.48644e-07 1.92989e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| in arriving ||| 0.0588235 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in as close to ||| 1 0.605812 8.48644e-07 6.20958e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in as close ||| 0.5 0.605812 8.48644e-07 6.98819e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in as early ||| 1 0.605812 8.48644e-07 3.19016e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in as far as they are ||| 1 0.33639 8.48644e-07 2.86581e-12 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| in as far as they ||| 1 0.33639 8.48644e-07 1.88879e-10 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| in as far as ||| 0.1 0.33639 8.48644e-07 5.78674e-08 2.718 ||| 0-0 0-1 ||| 10 1.17835e+06 +en ||| in as far ||| 0.142857 0.33639 8.48644e-07 5.67083e-06 2.718 ||| 0-0 0-1 ||| 7 1.17835e+06 +en ||| in as many as ||| 0.222222 0.605812 1.69729e-06 1.65076e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in as many ||| 0.0483871 0.605812 2.54593e-06 1.6177e-06 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| in as wide ||| 1 0.605812 8.48644e-07 1.95085e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in as ||| 0.104396 0.33639 1.61242e-05 0.00830647 2.718 ||| 0-0 0-1 ||| 182 1.17835e+06 +en ||| in assisting ||| 0.0138889 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| in association ||| 0.016129 0.605812 8.48644e-07 7.29614e-06 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| in at all ||| 0.2 0.321886 8.48644e-07 4.046e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| in at least ||| 0.0122699 0.605812 1.69729e-06 4.74521e-07 2.718 ||| 0-0 ||| 163 1.17835e+06 +en ||| in at several ||| 1 0.605812 8.48644e-07 1.26655e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in at the ||| 0.0166667 0.605812 8.48644e-07 0.000118711 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| in at ||| 0.215385 0.463849 3.56431e-05 0.0184722 2.718 ||| 0-0 0-1 ||| 195 1.17835e+06 +en ||| in attendance ||| 0.0588235 0.605812 1.69729e-06 1.66241e-06 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| in attitude ||| 0.02 0.605812 8.48644e-07 2.4105e-05 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| in attractiveness ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in back ||| 0.2 0.605812 8.48644e-07 0.000310594 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in bad ||| 0.0178571 0.605812 8.48644e-07 2.11034e-05 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| in balancing ||| 0.0909091 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in bars ||| 0.166667 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in because ||| 0.0714286 0.605812 8.48644e-07 0.000151741 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in becoming lighter on our ||| 1 0.605812 8.48644e-07 6.13989e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in becoming lighter on ||| 1 0.605812 8.48644e-07 4.45113e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in becoming lighter ||| 1 0.605812 8.48644e-07 6.65242e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in becoming ||| 0.0322581 0.605812 8.48644e-07 4.75173e-05 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| in bed at home ||| 0.333333 0.605812 8.48644e-07 6.28053e-13 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in bed at ||| 0.333333 0.605812 8.48644e-07 6.18772e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in bed ||| 0.0714286 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in being able ||| 0.0588235 0.605812 8.48644e-07 1.09717e-06 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in being ||| 0.0758621 0.605812 9.33509e-06 0.00131414 2.718 ||| 0-0 ||| 145 1.17835e+06 +en ||| in believing that ||| 0.0434783 0.605812 8.48644e-07 6.44735e-08 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in believing ||| 0.0967742 0.605812 2.54593e-06 3.83278e-06 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| in binge drinking ||| 0.25 0.605812 8.48644e-07 1.07133e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in binge ||| 0.2 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in black and ||| 0.0217391 0.605812 8.48644e-07 8.09791e-08 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| in black ||| 0.0217391 0.605812 8.48644e-07 6.46494e-06 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| in blanket ||| 0.166667 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in blood is to have impartial observers ||| 1 0.605812 8.48644e-07 2.83657e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in blood is to have impartial ||| 1 0.605812 8.48644e-07 3.41756e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in blood is to have ||| 1 0.605812 8.48644e-07 1.55344e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in blood is to ||| 0.5 0.605812 8.48644e-07 1.29888e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in blood is ||| 0.333333 0.605812 8.48644e-07 1.46175e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in blood ||| 0.0232558 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| in blunt , ||| 1 0.605812 8.48644e-07 7.70974e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in blunt ||| 1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in bodies ||| 0.166667 0.605812 8.48644e-07 1.84251e-05 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in boom ||| 1 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in both Germany and France . ||| 1 0.605812 8.48644e-07 1.72887e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in both Germany and France ||| 0.5 0.605812 8.48644e-07 5.70774e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in both Germany and ||| 0.2 0.605812 8.48644e-07 2.48163e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in both Germany ||| 0.25 0.605812 8.48644e-07 1.9812e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in both having and ||| 1 0.605812 8.48644e-07 3.66878e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in both having ||| 1 0.605812 8.48644e-07 2.92896e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in both his ||| 0.2 0.605812 8.48644e-07 2.29865e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in both its contribution to ||| 1 0.605812 8.48644e-07 8.71547e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in both its contribution ||| 1 0.605812 8.48644e-07 9.8083e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in both its ||| 0.0666667 0.605812 8.48644e-07 1.08981e-06 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in both of ||| 0.25 0.605812 1.69729e-06 4.15852e-05 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in both our ||| 0.142857 0.605812 8.48644e-07 1.05516e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in both places ||| 0.166667 0.605812 8.48644e-07 4.04653e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in both the ||| 0.00600601 0.605812 1.69729e-06 4.69611e-05 2.718 ||| 0-0 ||| 333 1.17835e+06 +en ||| in both their ||| 0.111111 0.605812 8.48644e-07 8.86642e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in both ||| 0.0600364 0.605812 8.40158e-05 0.00076494 2.718 ||| 0-0 ||| 1649 1.17835e+06 +en ||| in breach ||| 0.00381679 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-0 ||| 262 1.17835e+06 +en ||| in bringing about ||| 0.012987 0.605812 8.48644e-07 5.24437e-08 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| in bringing into ||| 0.5 0.525896 8.48644e-07 3.80492e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| in bringing ||| 0.0128535 0.605812 4.24322e-06 3.7081e-05 2.718 ||| 0-0 ||| 389 1.17835e+06 +en ||| in budget support ||| 0.25 0.605812 8.48644e-07 1.94828e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in budget ||| 0.0833333 0.605812 8.48644e-07 5.69838e-05 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in building ||| 0.00277778 0.605812 8.48644e-07 2.69218e-05 2.718 ||| 0-0 ||| 360 1.17835e+06 +en ||| in buildings ||| 0.0196078 0.605812 1.69729e-06 3.50954e-06 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| in business ||| 0.0124224 0.605812 1.69729e-06 5.76765e-05 2.718 ||| 0-0 ||| 161 1.17835e+06 +en ||| in businesses , ||| 0.1 0.605812 8.48644e-07 1.46485e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in businesses ||| 0.0208333 0.605812 8.48644e-07 1.22834e-05 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| in by ||| 0.0616438 0.326343 7.6378e-06 0.00392842 2.718 ||| 0-0 0-1 ||| 146 1.17835e+06 +en ||| in calling for more ||| 0.2 0.605812 8.48644e-07 5.34126e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in calling for ||| 0.0104167 0.605812 8.48644e-07 2.33886e-07 2.718 ||| 0-0 ||| 96 1.17835e+06 +en ||| in calling ||| 0.0172414 0.605812 1.69729e-06 3.04314e-05 2.718 ||| 0-0 ||| 116 1.17835e+06 +en ||| in calls ||| 0.111111 0.605812 8.48644e-07 1.66241e-05 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in capable ||| 0.5 0.605812 8.48644e-07 2.42435e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in capitals too ||| 1 0.605812 8.48644e-07 1.13127e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in capitals ||| 0.2 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in car-producing ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in careful ||| 0.333333 0.605812 8.48644e-07 1.27913e-05 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in carrying out ||| 0.0253807 0.605812 4.24322e-06 1.07013e-07 2.718 ||| 0-0 ||| 197 1.17835e+06 +en ||| in carrying ||| 0.0451128 0.605812 5.09187e-06 2.79378e-05 2.718 ||| 0-0 ||| 133 1.17835e+06 +en ||| in case after case , for ||| 1 0.0286209 8.48644e-07 9.11025e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| in case of ||| 0.00408163 0.605812 8.48644e-07 2.68591e-05 2.718 ||| 0-0 ||| 245 1.17835e+06 +en ||| in case ||| 0.00507614 0.605812 2.54593e-06 0.00049406 2.718 ||| 0-0 ||| 591 1.17835e+06 +en ||| in cases of ||| 0.00906344 0.605812 2.54593e-06 3.21586e-06 2.718 ||| 0-0 ||| 331 1.17835e+06 +en ||| in cases ||| 0.0145903 0.605812 1.10324e-05 5.91542e-05 2.718 ||| 0-0 ||| 891 1.17835e+06 +en ||| in casting ||| 0.5 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in catching up ||| 0.333333 0.605812 8.48644e-07 7.87452e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in catching ||| 0.142857 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in category A ||| 0.166667 0.605812 8.48644e-07 9.28688e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in category ||| 0.0135135 0.605812 1.69729e-06 7.8041e-06 2.718 ||| 0-0 ||| 148 1.17835e+06 +en ||| in causing ||| 0.111111 0.605812 8.48644e-07 1.36225e-05 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in central ||| 0.0163934 0.605812 8.48644e-07 1.26066e-05 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| in certain Member States ||| 0.00438596 0.605812 8.48644e-07 3.23625e-11 2.718 ||| 0-0 ||| 228 1.17835e+06 +en ||| in certain Member ||| 0.5 0.605812 8.48644e-07 6.78174e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in certain clearly ||| 1 0.605812 8.48644e-07 2.40184e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in certain countries ||| 0.00392157 0.605812 8.48644e-07 4.99714e-08 2.718 ||| 0-0 ||| 255 1.17835e+06 +en ||| in certain equipment and ||| 0.25 0.605812 8.48644e-07 5.68734e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in certain equipment ||| 0.25 0.605812 8.48644e-07 4.54046e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in certain issues ||| 0.333333 0.605812 8.48644e-07 3.30993e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in certain ||| 0.0121043 0.605812 2.20648e-05 0.000131608 2.718 ||| 0-0 ||| 2148 1.17835e+06 +en ||| in chambers composed ||| 0.5 0.605812 8.48644e-07 1.87483e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in chambers ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in charge , ||| 0.1 0.605812 1.69729e-06 2.77551e-06 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in charge of is ||| 1 0.605812 8.48644e-07 3.96545e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in charge of ||| 0.0103806 0.605812 2.54593e-06 1.26526e-06 2.718 ||| 0-0 ||| 289 1.17835e+06 +en ||| in charge ||| 0.0205479 0.605812 7.6378e-06 2.32738e-05 2.718 ||| 0-0 ||| 438 1.17835e+06 +en ||| in check ||| 0.0178571 0.605812 8.48644e-07 1.41305e-05 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| in children ||| 0.0121212 0.605812 1.69729e-06 3.44027e-05 2.718 ||| 0-0 ||| 165 1.17835e+06 +en ||| in circumstances ||| 0.00819672 0.605812 8.48644e-07 2.49362e-05 2.718 ||| 0-0 ||| 122 1.17835e+06 +en ||| in claims ||| 0.2 0.605812 8.48644e-07 1.39458e-05 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in clauses ' ||| 1 0.605812 8.48644e-07 5.07575e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in clauses ||| 0.5 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in close ||| 0.00327332 0.605812 1.69729e-06 6.84821e-05 2.718 ||| 0-0 ||| 611 1.17835e+06 +en ||| in co-operation ||| 0.0526316 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in coastal areas , ||| 0.125 0.605812 8.48644e-07 7.31115e-11 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in coastal areas ||| 0.0333333 0.605812 8.48644e-07 6.1307e-10 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| in coastal ||| 0.25 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in cold blood of two young , ||| 0.333333 0.605812 8.48644e-07 5.23636e-21 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in cold blood of two young ||| 0.333333 0.605812 8.48644e-07 4.3909e-20 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in cold blood of two ||| 0.333333 0.605812 8.48644e-07 6.89309e-16 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in cold blood of ||| 0.333333 0.605812 8.48644e-07 2.91586e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in cold blood ||| 0.0588235 0.605812 8.48644e-07 5.36359e-11 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in cold ||| 0.142857 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in collection ||| 0.2 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in combination ||| 0.010101 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| in coming forward in ||| 1 0.605812 8.48644e-07 1.06857e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| in coming forwards in ||| 1 0.605812 8.48644e-07 2.34301e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| in coming ||| 0.0277778 0.605812 2.54593e-06 8.97241e-05 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| in command ||| 0.111111 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in commending ||| 0.0588235 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in commercial ||| 0.142857 0.605812 1.69729e-06 8.82002e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in committee with ||| 0.0588235 0.605812 8.48644e-07 2.28551e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in committee ||| 0.00229885 0.605812 3.39458e-06 3.57419e-05 2.718 ||| 0-0 ||| 1740 1.17835e+06 +en ||| in common with ||| 0.00487805 0.605812 8.48644e-07 6.8211e-07 2.718 ||| 0-0 ||| 205 1.17835e+06 +en ||| in common ||| 0.00556586 0.605812 2.54593e-06 0.000106671 2.718 ||| 0-0 ||| 539 1.17835e+06 +en ||| in commonly-used ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in communication ||| 0.025641 0.605812 8.48644e-07 1.41305e-05 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| in companies ||| 0.0075188 0.605812 8.48644e-07 3.2417e-05 2.718 ||| 0-0 ||| 133 1.17835e+06 +en ||| in comparison with ||| 0.00221239 0.605812 8.48644e-07 4.134e-08 2.718 ||| 0-0 ||| 452 1.17835e+06 +en ||| in comparison ||| 0.00883392 0.605812 4.24322e-06 6.46494e-06 2.718 ||| 0-0 ||| 566 1.17835e+06 +en ||| in compensation ||| 0.0238095 0.605812 8.48644e-07 6.97289e-06 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| in competition ||| 0.00833333 0.605812 1.69729e-06 1.67627e-05 2.718 ||| 0-0 ||| 240 1.17835e+06 +en ||| in competitions ||| 0.0769231 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in competitive ||| 0.1 0.605812 8.48644e-07 8.82002e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in complete ||| 0.0117188 0.605812 2.54593e-06 3.30635e-05 2.718 ||| 0-0 ||| 256 1.17835e+06 +en ||| in completely ||| 0.454545 0.605812 4.24322e-06 4.70093e-05 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in completing ||| 0.0222222 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| in complying ||| 0.111111 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in component ||| 0.333333 0.605812 8.48644e-07 6.97289e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in compound ||| 0.333333 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in concert with ||| 0.04 0.605812 8.48644e-07 5.31515e-09 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| in concert ||| 0.0232558 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| in concise form ||| 1 0.605812 8.48644e-07 5.25507e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in concise ||| 1 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in concluding ||| 0.0227273 0.605812 1.69729e-06 3.97132e-06 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| in conclusion , ||| 0.000494315 0.605812 8.48644e-07 4.87366e-06 2.718 ||| 0-0 ||| 2023 1.17835e+06 +en ||| in conclusion ||| 0.000428266 0.605812 8.48644e-07 4.08676e-05 2.718 ||| 0-0 ||| 2335 1.17835e+06 +en ||| in concrete ||| 0.0869565 0.605812 3.39458e-06 1.44537e-05 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| in conditions of ||| 0.02 0.605812 8.48644e-07 2.99996e-06 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| in conditions ||| 0.0125 0.605812 1.69729e-06 5.51828e-05 2.718 ||| 0-0 ||| 160 1.17835e+06 +en ||| in confined spaces ||| 0.333333 0.605812 8.48644e-07 5.13039e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in confined ||| 1 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in confirmed ||| 1 0.605812 8.48644e-07 8.95855e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in conflict ||| 0.00595238 0.605812 8.48644e-07 1.92563e-05 2.718 ||| 0-0 ||| 168 1.17835e+06 +en ||| in conjunction with ||| 0.0060241 0.605812 3.39458e-06 4.45882e-08 2.718 ||| 0-0 ||| 664 1.17835e+06 +en ||| in conjunction ||| 0.00770416 0.605812 4.24322e-06 6.97289e-06 2.718 ||| 0-0 ||| 649 1.17835e+06 +en ||| in connection with cohesion . ||| 1 0.605812 8.48644e-07 2.11557e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in connection with cohesion ||| 1 0.605812 8.48644e-07 6.9844e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in connection with this ||| 0.00448431 0.605812 8.48644e-07 2.91155e-09 2.718 ||| 0-0 ||| 223 1.17835e+06 +en ||| in connection with transport operations , ||| 0.333333 0.605812 8.48644e-07 1.39344e-16 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in connection with transport operations ||| 0.333333 0.605812 8.48644e-07 1.16846e-15 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in connection with transport ||| 0.333333 0.605812 8.48644e-07 4.63674e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in connection with ||| 0.0192517 0.605812 4.49781e-05 4.50606e-07 2.718 ||| 0-0 ||| 2753 1.17835e+06 +en ||| in connection ||| 0.0248993 0.605812 5.77078e-05 7.04678e-05 2.718 ||| 0-0 ||| 2731 1.17835e+06 +en ||| in consideration ||| 0.0212766 0.605812 8.48644e-07 4.98724e-05 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| in considering ||| 0.026087 0.605812 2.54593e-06 1.39458e-05 2.718 ||| 0-0 ||| 115 1.17835e+06 +en ||| in conspicuous ||| 1 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in contact with people working on a ||| 1 0.605812 8.48644e-07 2.80332e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in contact with people working on ||| 1 0.605812 8.48644e-07 6.32434e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in contact with people working ||| 1 0.605812 8.48644e-07 9.45202e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in contact with people ||| 0.5 0.605812 8.48644e-07 4.96429e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in contact with ||| 0.00526316 0.605812 8.48644e-07 5.63996e-08 2.718 ||| 0-0 ||| 190 1.17835e+06 +en ||| in contact ||| 0.00440529 0.605812 8.48644e-07 8.82002e-06 2.718 ||| 0-0 ||| 227 1.17835e+06 +en ||| in contempt of ||| 0.0625 0.605812 8.48644e-07 2.61084e-07 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in contempt ||| 0.0333333 0.605812 8.48644e-07 4.80252e-06 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| in continuation ||| 0.166667 0.605812 8.48644e-07 5.63373e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in continuing ||| 0.037037 0.605812 2.54593e-06 2.85843e-05 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| in continuous ||| 0.111111 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in contradiction ||| 0.012987 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| in contravention ||| 0.00884956 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-0 ||| 113 1.17835e+06 +en ||| in contributing to ||| 0.0357143 0.605812 8.48644e-07 4.43157e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| in contributing ||| 0.0238095 0.605812 8.48644e-07 4.98724e-06 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| in control ||| 0.0125 0.605812 8.48644e-07 3.54186e-05 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| in controlling ||| 0.0144928 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| in conversion ||| 0.333333 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in cooperation ||| 0.0023753 0.605812 1.69729e-06 4.253e-05 2.718 ||| 0-0 ||| 842 1.17835e+06 +en ||| in corporate meetings ||| 1 0.605812 8.48644e-07 3.25094e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in corporate ||| 0.25 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in corresponding ||| 0.2 0.605812 8.48644e-07 9.97447e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in counterterrorism , law enforcement , immigration ||| 1 0.605812 8.48644e-07 7.82683e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in counterterrorism , law enforcement , ||| 1 0.605812 8.48644e-07 6.02064e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in counterterrorism , law enforcement ||| 1 0.605812 8.48644e-07 5.04856e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in counterterrorism , law ||| 1 0.605812 8.48644e-07 3.88351e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in counterterrorism , ||| 1 0.605812 8.48644e-07 2.20278e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in counterterrorism ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in countries at ||| 0.142857 0.605812 8.48644e-07 7.34212e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in countries in ||| 0.0178571 0.605812 8.48644e-07 3.75303e-06 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| in countries like ||| 0.0126582 0.605812 8.48644e-07 3.11383e-07 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| in countries such as ||| 0.00487805 0.605812 8.48644e-07 3.70172e-09 2.718 ||| 0-0 ||| 205 1.17835e+06 +en ||| in countries such ||| 0.142857 0.605812 8.48644e-07 3.62757e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in countries ||| 0.00425532 0.605812 4.24322e-06 0.000175338 2.718 ||| 0-0 ||| 1175 1.17835e+06 +en ||| in court in connection ||| 0.5 0.605812 8.48644e-07 4.5099e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in court in ||| 0.142857 0.605812 8.48644e-07 2.95537e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in court ||| 0.0181818 0.605812 1.69729e-06 1.38073e-05 2.718 ||| 0-0 ||| 110 1.17835e+06 +en ||| in creating on ||| 1 0.22993 8.48644e-07 1.03635e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| in creating ||| 0.00184843 0.605812 8.48644e-07 2.69218e-05 2.718 ||| 0-0 ||| 541 1.17835e+06 +en ||| in criminal law ||| 0.0344828 0.605812 8.48644e-07 3.39488e-09 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in criminal ||| 0.0909091 0.605812 8.48644e-07 1.92563e-05 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in crisis ||| 0.00414938 0.605812 8.48644e-07 3.33868e-05 2.718 ||| 0-0 ||| 241 1.17835e+06 +en ||| in current abuse ||| 0.1 0.605812 8.48644e-07 1.33939e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in current ||| 0.0222222 0.605812 8.48644e-07 7.61015e-05 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| in custody , ||| 0.111111 0.605812 8.48644e-07 3.19403e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in custody ||| 0.0555556 0.605812 2.54593e-06 2.67833e-06 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| in daily ||| 0.0769231 0.605812 8.48644e-07 1.04824e-05 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in danger of being nothing ||| 1 0.605812 8.48644e-07 6.5014e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in danger of being ||| 0.0196078 0.605812 8.48644e-07 3.4935e-09 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| in danger of causing ||| 0.25 0.605812 8.48644e-07 3.62142e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in danger of falling ||| 0.25 0.605812 8.48644e-07 3.14265e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in danger of ||| 0.0102041 0.605812 3.39458e-06 1.2276e-06 2.718 ||| 0-0 ||| 392 1.17835e+06 +en ||| in danger ||| 0.0127186 0.605812 6.78915e-06 2.25811e-05 2.718 ||| 0-0 ||| 629 1.17835e+06 +en ||| in dat ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in daytime ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in dealing with both ||| 0.5 0.605812 8.48644e-07 5.05283e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in dealing with ||| 0.014433 0.605812 5.94051e-06 3.0503e-07 2.718 ||| 0-0 ||| 485 1.17835e+06 +en ||| in dealing ||| 0.03125 0.605812 6.78915e-06 4.7702e-05 2.718 ||| 0-0 ||| 256 1.17835e+06 +en ||| in dealings ||| 0.0769231 0.605812 8.48644e-07 4.80252e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in deciding in ||| 0.5 0.605812 8.48644e-07 1.53205e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| in deciding ||| 0.00892857 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| in decision making whenever it is ||| 1 0.605812 8.48644e-07 9.50038e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in decision making whenever it ||| 1 0.605812 8.48644e-07 3.03129e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in decision making whenever ||| 1 0.605812 8.48644e-07 1.70458e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in decision making ||| 0.0215054 0.605812 1.69729e-06 2.79439e-08 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| in decision ||| 0.020979 0.605812 2.54593e-06 7.26382e-05 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| in decision-making in ||| 0.0666667 0.605812 8.48644e-07 1.60124e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| in defence ||| 0.00344828 0.605812 8.48644e-07 1.16369e-05 2.718 ||| 0-0 ||| 290 1.17835e+06 +en ||| in demand on ||| 0.333333 0.22993 8.48644e-07 9.52799e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| in demand over ||| 1 0.605812 8.48644e-07 1.19178e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in demand ||| 0.0108696 0.605812 1.69729e-06 2.47515e-05 2.718 ||| 0-0 ||| 184 1.17835e+06 +en ||| in demanding the ||| 0.125 0.605812 8.48644e-07 3.88389e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in demanding ||| 0.0322581 0.605812 2.54593e-06 6.3264e-06 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| in depth at ||| 0.142857 0.463849 8.48644e-07 2.65999e-07 2.718 ||| 0-0 0-2 ||| 7 1.17835e+06 +en ||| in describing ||| 0.0454545 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| in detail , ||| 0.00862069 0.605812 8.48644e-07 2.81405e-06 2.718 ||| 0-0 ||| 116 1.17835e+06 +en ||| in detail at ||| 0.030303 0.463849 8.48644e-07 9.43928e-07 2.718 ||| 0-0 0-2 ||| 33 1.17835e+06 +en ||| in detail in ||| 0.0344828 0.605812 1.69729e-06 5.05082e-07 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| in detail ||| 0.00726141 0.605812 5.94051e-06 2.3597e-05 2.718 ||| 0-0 ||| 964 1.17835e+06 +en ||| in determining ||| 0.00540541 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-0 ||| 185 1.17835e+06 +en ||| in developing the ||| 0.00980392 0.605812 8.48644e-07 1.53938e-06 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| in developing ||| 0.0055325 0.605812 3.39458e-06 2.50747e-05 2.718 ||| 0-0 ||| 723 1.17835e+06 +en ||| in development ||| 0.00985222 0.605812 1.69729e-06 7.5963e-05 2.718 ||| 0-0 ||| 203 1.17835e+06 +en ||| in devising and implementing ||| 0.25 0.605812 8.48644e-07 4.16464e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in devising and ||| 0.2 0.605812 8.48644e-07 1.44606e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in devising ||| 0.0238095 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| in different ways ||| 0.00515464 0.605812 8.48644e-07 9.80236e-09 2.718 ||| 0-0 ||| 194 1.17835e+06 +en ||| in different ||| 0.00590319 0.605812 4.24322e-06 0.000101684 2.718 ||| 0-0 ||| 847 1.17835e+06 +en ||| in dire circumstances ||| 0.142857 0.605812 8.48644e-07 6.23404e-11 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in dire ||| 0.027027 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| in direct ||| 0.0851064 0.605812 3.39458e-06 2.27658e-05 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| in disaster ||| 0.0526316 0.605812 8.48644e-07 1.16369e-05 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in discharging ||| 0.111111 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in discouraging ||| 0.5 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in discussing ||| 0.016129 0.605812 1.69729e-06 1.63009e-05 2.718 ||| 0-0 ||| 124 1.17835e+06 +en ||| in discussion ||| 0.025641 0.605812 8.48644e-07 3.98979e-05 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| in discussions between ||| 0.5 0.304705 8.48644e-07 2.56178e-09 2.718 ||| 0-0 0-2 ||| 2 1.17835e+06 +en ||| in discussions ||| 0.00465116 0.605812 8.48644e-07 1.91177e-05 2.718 ||| 0-0 ||| 215 1.17835e+06 +en ||| in diverse ||| 0.333333 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in doing for ||| 1 0.605812 8.48644e-07 1.30288e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in doing so , ||| 0.00440529 0.605812 8.48644e-07 4.58843e-08 2.718 ||| 0-0 ||| 227 1.17835e+06 +en ||| in doing so ||| 0.0043956 0.605812 1.69729e-06 3.84759e-07 2.718 ||| 0-0 ||| 455 1.17835e+06 +en ||| in doing this in ||| 0.5 0.605812 8.48644e-07 2.34451e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| in doing to ||| 0.5 0.605812 8.48644e-07 1.50632e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in doing ||| 0.0471698 0.605812 1.27297e-05 0.00016952 2.718 ||| 0-0 ||| 318 1.17835e+06 +en ||| in drafting ||| 0.00840336 0.605812 2.54593e-06 6.83436e-06 2.718 ||| 0-0 ||| 357 1.17835e+06 +en ||| in dramatically ||| 0.2 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in drawing up ||| 0.00328947 0.605812 8.48644e-07 7.82728e-08 2.718 ||| 0-0 ||| 304 1.17835e+06 +en ||| in drawing ||| 0.0120482 0.605812 8.48644e-07 2.29505e-05 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| in driving ||| 0.0416667 0.605812 8.48644e-07 1.5285e-05 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in dry matter ||| 0.5 0.605812 8.48644e-07 4.31188e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in dry ||| 0.5 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in dubious ||| 1 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in due course , ||| 0.01 0.605812 8.48644e-07 1.92046e-08 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| in due course ||| 0.0150376 0.605812 5.09187e-06 1.61039e-07 2.718 ||| 0-0 ||| 399 1.17835e+06 +en ||| in due ||| 0.0364583 0.605812 5.94051e-06 0.000127636 2.718 ||| 0-0 ||| 192 1.17835e+06 +en ||| in during ||| 0.0909091 0.416032 8.48644e-07 0.00133515 2.718 ||| 0-0 0-1 ||| 11 1.17835e+06 +en ||| in each Member State ||| 0.00261097 0.605812 8.48644e-07 8.02866e-12 2.718 ||| 0-0 ||| 383 1.17835e+06 +en ||| in each Member ||| 0.0588235 0.605812 8.48644e-07 6.67942e-08 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in each area as ||| 1 0.605812 8.48644e-07 5.49323e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in each area ||| 0.166667 0.605812 8.48644e-07 5.3832e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in each case to ||| 0.333333 0.605812 8.48644e-07 1.23231e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in each case ||| 0.00826446 0.605812 8.48644e-07 1.38683e-07 2.718 ||| 0-0 ||| 121 1.17835e+06 +en ||| in each country ||| 0.00512821 0.605812 8.48644e-07 4.66509e-08 2.718 ||| 0-0 ||| 195 1.17835e+06 +en ||| in each of ||| 0.00326797 0.605812 8.48644e-07 7.04677e-06 2.718 ||| 0-0 ||| 306 1.17835e+06 +en ||| in each other ||| 0.0571429 0.605812 1.69729e-06 1.67925e-07 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| in each ||| 0.00923952 0.605812 1.10324e-05 0.000129622 2.718 ||| 0-0 ||| 1407 1.17835e+06 +en ||| in earlier ||| 0.0285714 0.605812 8.48644e-07 3.22323e-05 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| in early childhood ||| 0.285714 0.605812 1.69729e-06 6.87777e-11 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in early life for ||| 1 0.605812 8.48644e-07 3.64016e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in early life ||| 0.25 0.605812 8.48644e-07 4.73628e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in early ||| 0.00980392 0.605812 3.39458e-06 3.12626e-05 2.718 ||| 0-0 ||| 408 1.17835e+06 +en ||| in earnest ||| 0.0169492 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| in ecological ||| 0.166667 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in economic and ||| 0.0277778 0.605812 8.48644e-07 7.01626e-07 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| in economic ||| 0.00892857 0.605812 8.48644e-07 5.6014e-05 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| in effect , from the ||| 1 0.605812 8.48644e-07 1.81628e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in effect , from ||| 0.5 0.605812 8.48644e-07 2.9585e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in effect , ||| 0.00671141 0.605812 1.69729e-06 1.83712e-05 2.718 ||| 0-0 ||| 298 1.17835e+06 +en ||| in effect ||| 0.00988468 0.605812 5.09187e-06 0.00015405 2.718 ||| 0-0 ||| 607 1.17835e+06 +en ||| in efforts to ||| 0.0192308 0.605812 8.48644e-07 4.98962e-06 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| in efforts ||| 0.0153846 0.605812 8.48644e-07 5.61526e-05 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| in either a ||| 0.25 0.605812 8.48644e-07 1.77219e-05 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in either an ||| 0.333333 0.605812 8.48644e-07 1.77704e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in either form ||| 0.5 0.605812 8.48644e-07 1.81994e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in either ||| 0.176056 0.605812 2.12161e-05 0.00039981 2.718 ||| 0-0 ||| 142 1.17835e+06 +en ||| in emissions of ||| 0.0526316 0.605812 8.48644e-07 4.34304e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in emissions ||| 0.00913242 0.605812 1.69729e-06 7.98881e-06 2.718 ||| 0-0 ||| 219 1.17835e+06 +en ||| in emphasising ||| 0.08 0.605812 1.69729e-06 1.66241e-06 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| in employing ||| 0.125 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in employment ||| 0.00238095 0.605812 8.48644e-07 2.25811e-05 2.718 ||| 0-0 ||| 420 1.17835e+06 +en ||| in enabling us ||| 0.125 0.605812 8.48644e-07 4.4986e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in enabling ||| 0.0178571 0.605812 8.48644e-07 1.56082e-05 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| in encouraging both ||| 1 0.605812 8.48644e-07 1.82056e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in encouraging ||| 0.00591716 0.605812 8.48644e-07 1.09904e-05 2.718 ||| 0-0 ||| 169 1.17835e+06 +en ||| in energy , ||| 0.0238095 0.605812 8.48644e-07 4.89568e-06 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| in energy ||| 0.00534759 0.605812 8.48644e-07 4.10523e-05 2.718 ||| 0-0 ||| 187 1.17835e+06 +en ||| in enormous suffering ||| 0.333333 0.605812 8.48644e-07 5.89159e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in enormous ||| 0.111111 0.605812 8.48644e-07 1.32993e-05 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in ensuring that ||| 0.00802139 0.605812 2.54593e-06 9.0263e-07 2.718 ||| 0-0 ||| 374 1.17835e+06 +en ||| in ensuring ||| 0.0174966 0.605812 1.10324e-05 5.3659e-05 2.718 ||| 0-0 ||| 743 1.17835e+06 +en ||| in entirely ||| 0.625 0.605812 4.24322e-06 3.05699e-05 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in entrusting ||| 0.111111 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in equal measure ||| 0.03125 0.605812 8.48644e-07 1.9784e-09 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| in equal ||| 0.0163934 0.605812 8.48644e-07 2.64139e-05 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| in error ||| 0.0588235 0.605812 1.69729e-06 4.34074e-06 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| in essence ||| 0.00440529 0.605812 1.69729e-06 5.81844e-06 2.718 ||| 0-0 ||| 454 1.17835e+06 +en ||| in essential ||| 0.333333 0.605812 8.48644e-07 4.15603e-05 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in establishing smoke-free environments in ||| 1 0.605812 8.48644e-07 7.12374e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in establishing the ||| 0.0126582 0.605812 8.48644e-07 1.32676e-06 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| in establishing ||| 0.00446429 0.605812 1.69729e-06 2.16114e-05 2.718 ||| 0-0 ||| 448 1.17835e+06 +en ||| in euros ||| 0.0070922 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-0 ||| 141 1.17835e+06 +en ||| in even ||| 0.075 0.605812 2.54593e-06 0.000280994 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| in ever larger ||| 0.333333 0.605812 8.48644e-07 1.31021e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in ever ||| 0.1 0.605812 1.69729e-06 8.67687e-05 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in ever-increasing ||| 0.2 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in every country ||| 0.0106952 0.605812 1.69729e-06 2.70399e-08 2.718 ||| 0-0 ||| 187 1.17835e+06 +en ||| in every place , ||| 1 0.605812 8.48644e-07 1.34845e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in every place ||| 0.25 0.605812 8.48644e-07 1.13073e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in every single ||| 0.0212766 0.605812 8.48644e-07 1.19234e-08 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| in every way possible ||| 0.03125 0.605812 8.48644e-07 1.29903e-10 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| in every way ||| 0.00980392 0.605812 8.48644e-07 1.61954e-07 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| in every ||| 0.00492881 0.605812 7.6378e-06 7.51318e-05 2.718 ||| 0-0 ||| 1826 1.17835e+06 +en ||| in everyday practical ||| 1 0.605812 8.48644e-07 1.37851e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in everyday ||| 0.125 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in evidence among the Americans in ||| 0.5 0.605812 8.48644e-07 2.81604e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in evidence among the Americans ||| 0.5 0.605812 8.48644e-07 1.31563e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in evidence among the ||| 0.5 0.605812 8.48644e-07 1.39961e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in evidence among ||| 0.5 0.605812 8.48644e-07 2.27979e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in evidence ||| 0.0606061 0.605812 3.39458e-06 2.54441e-05 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| in exactly the ||| 0.0125 0.605812 8.48644e-07 2.8463e-06 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| in exactly ||| 0.0719424 0.605812 8.48644e-06 4.63628e-05 2.718 ||| 0-0 ||| 139 1.17835e+06 +en ||| in exceptional circumstances ||| 0.0105263 0.605812 8.48644e-07 1.52111e-10 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| in exceptional ||| 0.2 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in excess of the amount originally proposed ||| 1 0.605812 8.48644e-07 4.24831e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in excess of the amount originally ||| 1 0.605812 8.48644e-07 3.80673e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in excess of the amount ||| 1 0.605812 8.48644e-07 4.04971e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in excess of the ||| 0.0555556 0.605812 8.48644e-07 1.66449e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in excess of ||| 0.0143885 0.605812 1.69729e-06 2.71126e-07 2.718 ||| 0-0 ||| 139 1.17835e+06 +en ||| in excess ||| 0.0101523 0.605812 1.69729e-06 4.98724e-06 2.718 ||| 0-0 ||| 197 1.17835e+06 +en ||| in excessive ||| 0.111111 0.605812 8.48644e-07 5.81844e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in exchanging ||| 0.0434783 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in excise ||| 0.25 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in executing ||| 0.0588235 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in exercising its ||| 0.0714286 0.605812 8.48644e-07 6.38163e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in exercising ||| 0.030303 0.605812 1.69729e-06 4.47928e-06 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| in exerting ||| 0.0526316 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in existence by ||| 1 0.0468744 8.48644e-07 1.25824e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| in existence for a long time in ||| 1 0.605812 8.48644e-07 1.29228e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in existence for a long time ||| 0.5 0.605812 8.48644e-07 6.0374e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in existence for a long ||| 0.333333 0.605812 8.48644e-07 3.67753e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in existence for a ||| 0.25 0.605812 8.48644e-07 1.08706e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in existence for ||| 0.030303 0.605812 8.48644e-07 2.45244e-07 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| in existence in ||| 0.2 0.605812 1.69729e-06 1.4735e-05 2.718 ||| 0-0 0-2 ||| 10 1.17835e+06 +en ||| in existence ||| 0.0253165 0.605812 5.09187e-06 3.19091e-05 2.718 ||| 0-0 ||| 237 1.17835e+06 +en ||| in existing ||| 0.0416667 0.605812 8.48644e-07 3.63884e-05 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in expenditure at ||| 0.5 0.321886 8.48644e-07 2.58579e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| in expressing ||| 0.00847458 0.605812 8.48644e-07 1.21448e-05 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| in external ||| 0.5 0.605812 8.48644e-07 8.63531e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in face ||| 0.0285714 0.605812 8.48644e-07 7.7256e-05 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| in facing any ||| 0.5 0.605812 8.48644e-07 3.72197e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in facing ||| 0.107143 0.605812 2.54593e-06 2.46129e-05 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| in fact , I ||| 0.0142857 0.605812 8.48644e-07 1.14106e-06 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| in fact , in a ||| 0.142857 0.605812 8.48644e-07 1.53051e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in fact , in ||| 0.0258065 0.605812 3.39458e-06 3.45287e-06 2.718 ||| 0-3 ||| 155 1.17835e+06 +en ||| in fact , is to repeat ||| 1 0.605812 8.48644e-07 1.13211e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact , is to ||| 0.25 0.605812 8.48644e-07 4.49249e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in fact , is ||| 0.0392157 0.605812 1.69729e-06 5.0558e-06 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| in fact , means that very many ||| 1 0.605812 8.48644e-07 2.05408e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact , means that very ||| 1 0.605812 8.48644e-07 5.98334e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact , means that ||| 1 0.605812 8.48644e-07 1.7196e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact , means ||| 1 0.605812 8.48644e-07 1.02225e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact , so ||| 0.166667 0.605812 8.48644e-07 3.66137e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in fact , there was no such ||| 1 0.605812 8.48644e-07 2.49489e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact , there was no ||| 0.5 0.605812 8.48644e-07 1.2059e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in fact , there was ||| 0.1 0.605812 8.48644e-07 1.5492e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in fact , there ||| 0.05 0.605812 8.48644e-07 4.9448e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in fact , we are already doing ||| 1 0.605812 8.48644e-07 4.72369e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact , we are already ||| 0.5 0.605812 8.48644e-07 1.28676e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in fact , we are ||| 0.0227273 0.605812 8.48644e-07 2.77858e-08 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| in fact , we ||| 0.0147059 0.605812 8.48644e-07 1.8313e-06 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| in fact , ||| 0.0110318 0.605812 5.77078e-05 0.000161315 2.718 ||| 0-0 ||| 6164 1.17835e+06 +en ||| in fact . ||| 0.0136986 0.605812 8.48644e-07 4.09731e-06 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| in fact I am quite enthusiastic - ||| 1 0.605812 8.48644e-07 7.73433e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact I am quite enthusiastic ||| 1 0.605812 8.48644e-07 2.05041e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact I am quite ||| 1 0.605812 8.48644e-07 4.76838e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact I am ||| 0.0625 0.605812 8.48644e-07 1.22235e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in fact I ||| 0.0151515 0.605812 8.48644e-07 9.56829e-06 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| in fact a ||| 0.00543478 0.605812 8.48644e-07 5.99593e-05 2.718 ||| 0-0 ||| 184 1.17835e+06 +en ||| in fact among those ||| 1 0.605812 8.48644e-07 8.7762e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact among ||| 0.333333 0.605812 8.48644e-07 1.21202e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in fact appear ||| 0.5 0.605812 8.48644e-07 1.18226e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in fact be translated in ||| 1 0.605812 8.48644e-07 4.51265e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in fact be ||| 0.0254237 0.605812 2.54593e-06 2.45148e-05 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| in fact being used ||| 0.25 0.605812 8.48644e-07 1.65144e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in fact being ||| 0.0833333 0.605812 8.48644e-07 3.8495e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in fact consist ||| 0.5 0.605812 8.48644e-07 1.02805e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in fact end ||| 0.5 0.605812 8.48644e-07 5.88558e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in fact face is a turning ||| 0.5 0.605812 8.48644e-07 1.57194e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in fact face is a ||| 0.5 0.605812 8.48644e-07 3.14389e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in fact face is ||| 0.5 0.605812 8.48644e-07 7.09268e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in fact face ||| 0.5 0.605812 8.48644e-07 2.26306e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in fact in the ||| 0.0769231 0.605812 8.48644e-07 1.77752e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in fact in ||| 0.205128 0.605812 6.78915e-06 2.89538e-05 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| in fact look like ||| 1 0.605812 8.48644e-07 7.00256e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact look ||| 1 0.605812 8.48644e-07 3.94311e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact necessary , ||| 1 0.605812 8.48644e-07 4.15064e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact necessary ||| 0.2 0.605812 8.48644e-07 3.48049e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in fact on ||| 0.125 0.417871 1.69729e-06 0.000112339 2.718 ||| 0-0 0-2 ||| 16 1.17835e+06 +en ||| in fact produces ||| 0.5 0.605812 8.48644e-07 1.36622e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in fact relatively limited ||| 0.5 0.605812 8.48644e-07 7.78774e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in fact relatively ||| 0.5 0.605812 8.48644e-07 2.00199e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in fact seen ||| 0.333333 0.605812 8.48644e-07 2.84742e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in fact standing in ||| 1 0.605812 8.48644e-07 1.53165e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| in fact suffering at ||| 1 0.321886 8.48644e-07 1.1111e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| in fact that ||| 0.016129 0.605812 8.48644e-07 2.27545e-05 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| in fact the ||| 0.00302115 0.605812 8.48644e-07 8.30444e-05 2.718 ||| 0-0 ||| 331 1.17835e+06 +en ||| in fact to ||| 0.0327869 0.605812 1.69729e-06 0.000120198 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| in fact treated in ||| 1 0.605812 8.48644e-07 1.57219e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in fact treated ||| 0.333333 0.605812 8.48644e-07 7.34514e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in fact ||| 0.0150895 0.605812 0.00016888 0.0013527 2.718 ||| 0-0 ||| 13188 1.17835e+06 +en ||| in failing to notify ||| 1 0.605812 8.48644e-07 1.17765e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in failing to ||| 0.0666667 0.605812 8.48644e-07 8.41177e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in failing ||| 0.0555556 0.605812 8.48644e-07 9.46651e-06 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in falconry subject to ||| 1 0.605812 8.48644e-07 8.85985e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in falconry subject ||| 1 0.605812 8.48644e-07 9.97078e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in falconry ||| 0.333333 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in far-sighted ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in favour of debates and of ||| 1 0.605812 8.48644e-07 9.56728e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in favour of debates and ||| 1 0.605812 8.48644e-07 1.75985e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in favour of debates ||| 1 0.605812 8.48644e-07 1.40497e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in favour of establishing ||| 0.0175439 0.605812 8.48644e-07 3.80074e-10 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| in favour of having ||| 0.0384615 0.605812 8.48644e-07 3.10962e-09 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in favour of in ||| 0.333333 0.605812 8.48644e-07 1.73831e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| in favour of paedophilia ||| 1 0.605812 8.48644e-07 5.68486e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in favour of the EU Constitution ||| 1 0.605812 8.48644e-07 1.50484e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in favour of the EU ||| 0.0344828 0.605812 8.48644e-07 2.46696e-10 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in favour of the ||| 0.00018031 0.605812 8.48644e-07 4.98577e-07 2.718 ||| 0-0 ||| 5546 1.17835e+06 +en ||| in favour of this in principle , ||| 1 0.605812 8.48644e-07 2.05339e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in favour of this in principle ||| 1 0.605812 8.48644e-07 1.72185e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in favour of this in ||| 0.25 0.605812 1.69729e-06 1.12319e-09 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| in favour of us ||| 0.0625 0.605812 8.48644e-07 2.3407e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in favour of ||| 0.00279596 0.605812 3.47944e-05 8.12123e-06 2.718 ||| 0-0 ||| 14664 1.17835e+06 +en ||| in favour within ||| 1 0.369196 8.48644e-07 7.67683e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| in favour ||| 0.00524185 0.605812 8.57131e-05 0.000149386 2.718 ||| 0-0 ||| 19268 1.17835e+06 +en ||| in feed is banned in the EU ||| 1 0.605812 8.48644e-07 1.83008e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in feed is banned in the ||| 1 0.605812 8.48644e-07 3.69863e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in feed is banned in ||| 1 0.605812 8.48644e-07 6.02463e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in fighting ||| 0.0045045 0.605812 8.48644e-07 1.26066e-05 2.718 ||| 0-0 ||| 222 1.17835e+06 +en ||| in financial policy ||| 0.333333 0.605812 8.48644e-07 2.218e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in financial services ||| 0.0119048 0.605812 8.48644e-07 4.98585e-09 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| in financial ||| 0.0363636 0.605812 1.69729e-06 5.63373e-05 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| in finding ||| 0.00543478 0.605812 1.69729e-06 2.46129e-05 2.718 ||| 0-0 ||| 368 1.17835e+06 +en ||| in fine words ||| 0.0833333 0.605812 8.48644e-07 3.38135e-09 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in fine ||| 0.0833333 0.605812 8.48644e-07 1.49617e-05 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in fire ||| 0.25 0.605812 8.48644e-07 8.31206e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in firmer ground ||| 0.25 0.605812 8.48644e-07 7.56397e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in firmer ||| 0.25 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in fish in ||| 1 0.605812 8.48644e-07 3.27167e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| in fish ||| 0.0294118 0.605812 8.48644e-07 1.5285e-05 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| in fishery ||| 0.5 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in fishing ||| 0.0113636 0.605812 8.48644e-07 1.84251e-05 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| in flood-prone ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in food , ||| 0.0434783 0.605812 8.48644e-07 2.97376e-06 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in food ||| 0.00518135 0.605812 8.48644e-07 2.49362e-05 2.718 ||| 0-0 ||| 193 1.17835e+06 +en ||| in foodstuffs ||| 0.0136986 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| in football ||| 0.0277778 0.605812 1.69729e-06 5.17195e-06 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| in for any ||| 1 0.605812 8.48644e-07 5.36697e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in for ||| 0.0691489 0.605812 1.10324e-05 0.00354911 2.718 ||| 0-0 ||| 188 1.17835e+06 +en ||| in force in ||| 0.0154639 0.605812 2.54593e-06 1.68229e-06 2.718 ||| 0-2 ||| 194 1.17835e+06 +en ||| in force on ||| 0.0294118 0.22993 8.48644e-07 3.02549e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| in force ||| 0.00760043 0.605812 1.1881e-05 7.85951e-05 2.718 ||| 0-0 ||| 1842 1.17835e+06 +en ||| in forestry ||| 0.0666667 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in forms in which ||| 1 0.605812 8.48644e-07 7.48943e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| in forms in ||| 1 0.605812 8.48644e-07 8.8167e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| in forms ||| 0.1 0.605812 8.48644e-07 4.11909e-05 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in formulating ||| 0.0108696 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| in forwarding ||| 0.0769231 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in four stages . this follows ||| 0.333333 0.605812 8.48644e-07 1.63878e-19 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in four stages . this ||| 0.333333 0.605812 8.48644e-07 3.09788e-15 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in four stages . ||| 0.333333 0.605812 8.48644e-07 4.79444e-13 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in four stages ||| 0.2 0.605812 8.48644e-07 1.58285e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in four ||| 0.00350877 0.605812 8.48644e-07 1.04824e-05 2.718 ||| 0-0 ||| 285 1.17835e+06 +en ||| in free and democratic states it is ||| 0.5 0.605812 8.48644e-07 8.45195e-19 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in free and democratic states it ||| 0.5 0.605812 8.48644e-07 2.69676e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in free and democratic states ||| 0.5 0.605812 8.48644e-07 1.51647e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in free and democratic ||| 0.5 0.605812 8.48644e-07 2.01658e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in free and ||| 0.5 0.605812 8.48644e-07 6.74441e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in free ||| 0.037037 0.605812 8.48644e-07 5.38437e-05 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| in from ||| 0.04 0.605812 1.69729e-06 0.000743652 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| in front of ||| 0.00674157 0.605812 2.54593e-06 2.0234e-06 2.718 ||| 0-0 ||| 445 1.17835e+06 +en ||| in front ||| 0.025 0.605812 1.1881e-05 3.72196e-05 2.718 ||| 0-0 ||| 560 1.17835e+06 +en ||| in fulfilment of ||| 0.0909091 0.605812 8.48644e-07 9.03754e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in fulfilment ||| 0.0714286 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in full agreement ||| 0.011236 0.605812 8.48644e-07 1.5617e-08 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| in full ||| 0.00668577 0.605812 5.94051e-06 8.47368e-05 2.718 ||| 0-0 ||| 1047 1.17835e+06 +en ||| in fundamental ||| 0.166667 0.605812 1.69729e-06 2.27658e-05 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in further ||| 0.0412371 0.605812 3.39458e-06 0.000223179 2.718 ||| 0-0 ||| 97 1.17835e+06 +en ||| in future , as ||| 0.0625 0.605812 8.48644e-07 1.49254e-07 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in future , be a principle ||| 0.5 0.605812 8.48644e-07 1.80122e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in future , be a ||| 0.5 0.605812 8.48644e-07 1.17496e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in future , be ||| 0.0384615 0.605812 8.48644e-07 2.65074e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in future , ||| 0.00689127 0.605812 7.6378e-06 1.46265e-05 2.718 ||| 0-0 ||| 1306 1.17835e+06 +en ||| in future . in ||| 1 0.605812 8.48644e-07 7.95186e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| in future : an ||| 1 0.605812 8.48644e-07 1.83603e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in future : ||| 0.25 0.605812 8.48644e-07 4.13082e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in future under the terms ||| 1 0.605812 8.48644e-07 2.96532e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in future under the ||| 0.5 0.605812 8.48644e-07 2.70164e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in future under ||| 0.5 0.605812 8.48644e-07 4.40065e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in future we ||| 0.025 0.605812 8.48644e-07 1.39235e-06 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| in future ||| 0.00730503 0.605812 3.13998e-05 0.000122649 2.718 ||| 0-0 ||| 5065 1.17835e+06 +en ||| in general , ||| 0.000814996 0.605812 8.48644e-07 9.63167e-06 2.718 ||| 0-0 ||| 1227 1.17835e+06 +en ||| in general in ||| 0.0344828 0.605812 8.48644e-07 1.72875e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in general terms ||| 0.0058997 0.605812 1.69729e-06 8.86482e-08 2.718 ||| 0-0 ||| 339 1.17835e+06 +en ||| in general want to continue supporting the ||| 1 0.605812 8.48644e-07 1.52521e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in general want to continue supporting ||| 1 0.605812 8.48644e-07 2.48438e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in general want to continue ||| 1 0.605812 8.48644e-07 7.76369e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in general want to ||| 0.5 0.605812 8.48644e-07 3.3551e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in general want ||| 1 0.605812 8.48644e-07 3.77579e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in general ||| 0.00609756 0.605812 2.03675e-05 8.07655e-05 2.718 ||| 0-0 ||| 3936 1.17835e+06 +en ||| in generating ||| 0.0384615 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in geographical ||| 0.125 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in getting ||| 0.0116279 0.605812 2.54593e-06 5.3659e-05 2.718 ||| 0-0 ||| 258 1.17835e+06 +en ||| in giving credit to ||| 1 0.605812 8.48644e-07 2.32805e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in giving credit ||| 1 0.605812 8.48644e-07 2.61996e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in giving him ||| 1 0.605812 8.48644e-07 2.33322e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in giving ||| 0.0357143 0.605812 5.09187e-06 7.27767e-05 2.718 ||| 0-0 ||| 168 1.17835e+06 +en ||| in global competition ||| 0.0243902 0.605812 8.48644e-07 7.66053e-10 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| in global ||| 0.0384615 0.605812 8.48644e-07 2.11034e-05 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in going out and ||| 1 0.605812 8.48644e-07 1.8961e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in going out ||| 0.333333 0.605812 8.48644e-07 1.51374e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in going ||| 0.047619 0.605812 8.48644e-07 0.000395192 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| in good enough ||| 1 0.605812 8.48644e-07 3.9562e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in good time ||| 0.00598802 0.605812 2.54593e-06 3.93154e-07 2.718 ||| 0-0 ||| 501 1.17835e+06 +en ||| in good ||| 0.0131827 0.605812 5.94051e-06 0.00023948 2.718 ||| 0-0 ||| 531 1.17835e+06 +en ||| in government ||| 0.00657895 0.605812 8.48644e-07 3.68963e-05 2.718 ||| 0-0 ||| 152 1.17835e+06 +en ||| in great depth ||| 0.05 0.605812 8.48644e-07 2.61331e-09 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in great ||| 0.011976 0.605812 1.69729e-06 0.00018148 2.718 ||| 0-0 ||| 167 1.17835e+06 +en ||| in greater detail in ||| 0.125 0.605812 8.48644e-07 6.65193e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| in greater detail ||| 0.0131579 0.605812 1.69729e-06 3.10773e-09 2.718 ||| 0-0 ||| 152 1.17835e+06 +en ||| in greater ||| 0.015625 0.605812 3.39458e-06 6.08166e-05 2.718 ||| 0-0 ||| 256 1.17835e+06 +en ||| in groups in ||| 0.5 0.605812 8.48644e-07 6.54334e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in groups ||| 0.0526316 0.605812 8.48644e-07 3.05699e-05 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in hand , to close ||| 1 0.605812 8.48644e-07 2.87808e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in hand , to ||| 1 0.605812 8.48644e-07 1.94072e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in hand , ||| 0.0169492 0.605812 1.69729e-06 2.18406e-05 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| in hand with ||| 0.0141509 0.605812 2.54593e-06 1.1711e-06 2.718 ||| 0-0 ||| 212 1.17835e+06 +en ||| in hand ||| 0.0363924 0.605812 1.95188e-05 0.000183142 2.718 ||| 0-0 ||| 632 1.17835e+06 +en ||| in hard times ||| 0.333333 0.605812 8.48644e-07 4.92612e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in hard ||| 0.142857 0.605812 8.48644e-07 4.85332e-05 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in hardly ||| 0.5 0.605812 8.48644e-07 1.04824e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in harmony ||| 0.00724638 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-0 ||| 138 1.17835e+06 +en ||| in has ||| 0.5 0.605812 8.48644e-07 0.00237702 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in having ||| 0.0180995 0.605812 3.39458e-06 0.000176816 2.718 ||| 0-0 ||| 221 1.17835e+06 +en ||| in headline ||| 1 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in health ||| 0.0136054 0.605812 1.69729e-06 3.8374e-05 2.718 ||| 0-0 ||| 147 1.17835e+06 +en ||| in healthcare ||| 0.0204082 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| in hearing ||| 0.0333333 0.605812 8.48644e-07 1.21448e-05 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| in heavily ||| 1 0.605812 8.48644e-07 1.01592e-05 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in helping to ||| 0.0175439 0.605812 1.69729e-06 1.55105e-06 2.718 ||| 0-0 ||| 114 1.17835e+06 +en ||| in helping ||| 0.0219436 0.605812 5.94051e-06 1.74553e-05 2.718 ||| 0-0 ||| 319 1.17835e+06 +en ||| in her opinion ||| 0.0833333 0.605812 8.48644e-07 3.08347e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in her speech , not in my ||| 1 0.605812 8.48644e-07 3.16893e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in her speech , not in ||| 1 0.605812 8.48644e-07 4.92758e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in her speech , not ||| 1 0.605812 8.48644e-07 2.30213e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in her speech , ||| 0.0416667 0.605812 8.48644e-07 6.74299e-10 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in her speech ||| 0.01 0.605812 8.48644e-07 5.65428e-09 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| in her text ||| 0.2 0.605812 8.48644e-07 1.08562e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in her view ||| 0.2 0.605812 8.48644e-07 1.135e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in her ||| 0.00617829 0.605812 5.94051e-06 0.000125651 2.718 ||| 0-0 ||| 1133 1.17835e+06 +en ||| in here . ||| 0.111111 0.605812 8.48644e-07 2.83635e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in here ||| 0.030303 0.605812 1.69729e-06 0.0009364 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| in hiding or ||| 1 0.605812 8.48644e-07 4.01245e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in hiding ||| 0.125 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in high regard , ||| 0.25 0.605812 8.48644e-07 5.59828e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in high regard ||| 0.05 0.605812 8.48644e-07 4.69439e-08 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in high ||| 0.0149254 0.605812 8.48644e-07 6.89439e-05 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| in higher ||| 0.0512821 0.605812 1.69729e-06 1.9441e-05 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| in highlighting ||| 0.0238095 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| in highly ||| 0.2 0.605812 8.48644e-07 2.79378e-05 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in him ||| 0.0357143 0.605812 8.48644e-07 0.000148047 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| in his article ||| 0.111111 0.605812 8.48644e-07 1.99822e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in his efforts ||| 0.0277778 0.605812 8.48644e-07 1.68739e-08 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| in his eye , he said ||| 1 0.605812 8.48644e-07 3.37981e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in his eye , he ||| 1 0.605812 8.48644e-07 8.21738e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in his eye , ||| 1 0.605812 8.48644e-07 9.41604e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in his eye ||| 1 0.605812 8.48644e-07 7.89574e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in his fantasy about governing ||| 1 0.605812 8.48644e-07 1.52294e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in his fantasy about ||| 1 0.605812 8.48644e-07 7.85023e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in his fantasy ||| 1 0.605812 8.48644e-07 5.55061e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in his former ||| 0.5 0.605812 8.48644e-07 6.28606e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in his letters , ||| 0.25 0.605812 8.48644e-07 1.07565e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in his letters ||| 0.166667 0.605812 8.48644e-07 9.01974e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in his opinion ||| 0.0181818 0.605812 8.48644e-07 3.4053e-08 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| in his report ||| 0.00121951 0.605812 8.48644e-07 5.68799e-08 2.718 ||| 0-0 ||| 820 1.17835e+06 +en ||| in his ||| 0.00630418 0.605812 2.03675e-05 0.000138765 2.718 ||| 0-0 ||| 3807 1.17835e+06 +en ||| in history ||| 0.0115607 0.605812 3.39458e-06 1.66241e-05 2.718 ||| 0-0 ||| 346 1.17835e+06 +en ||| in horror at ||| 0.2 0.321886 8.48644e-07 4.6236e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| in how they ||| 0.0625 0.605812 8.48644e-07 5.402e-07 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in how ||| 0.0253807 0.605812 4.24322e-06 0.000165502 2.718 ||| 0-0 ||| 197 1.17835e+06 +en ||| in human rights in ||| 0.142857 0.605812 8.48644e-07 2.44064e-10 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| in identifying ||| 0.01 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| in ignorance as ||| 1 0.605812 8.48644e-07 6.59708e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in ignorance ||| 0.111111 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in illegally and that ||| 1 0.605812 8.48644e-07 4.865e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in illegally and ||| 1 0.605812 8.48644e-07 2.89211e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in illegally ||| 0.125 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in implementing it ||| 0.0555556 0.605812 8.48644e-07 2.36504e-07 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in implementing this agreement , ||| 1 0.605812 8.48644e-07 1.88867e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in implementing this agreement ||| 1 0.605812 8.48644e-07 1.58373e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in implementing this ||| 0.0163934 0.605812 8.48644e-07 8.59321e-08 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| in implementing ||| 0.00466418 0.605812 4.24322e-06 1.32993e-05 2.718 ||| 0-0 ||| 1072 1.17835e+06 +en ||| in importance ||| 0.0136986 0.605812 8.48644e-07 5.99854e-05 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| in important ways ||| 0.25 0.605812 8.48644e-07 1.70762e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in important ||| 0.0625 0.605812 1.69729e-06 0.000177139 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| in imposing ||| 0.030303 0.605812 8.48644e-07 7.29614e-06 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| in impossible ||| 0.25 0.605812 8.48644e-07 2.47515e-05 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in improving the ||| 0.00689655 0.605812 8.48644e-07 6.12351e-07 2.718 ||| 0-0 ||| 145 1.17835e+06 +en ||| in improving ||| 0.00817996 0.605812 3.39458e-06 9.97447e-06 2.718 ||| 0-0 ||| 489 1.17835e+06 +en ||| in in the ||| 0.125 0.605812 8.48644e-07 0.0130913 2.718 ||| 0-0 0-1 ||| 8 1.17835e+06 +en ||| in in ||| 0.457143 0.605812 1.35783e-05 0.213242 2.718 ||| 0-0 0-1 ||| 35 1.17835e+06 +en ||| in including a ||| 0.25 0.605812 8.48644e-07 2.13694e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in including ||| 0.0263158 0.605812 8.48644e-07 4.82099e-05 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| in increased ||| 0.0125 0.605812 8.48644e-07 2.29505e-05 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| in increasing ||| 0.00495049 0.605812 8.48644e-07 2.39203e-05 2.718 ||| 0-0 ||| 202 1.17835e+06 +en ||| in individual ||| 0.0179372 0.605812 3.39458e-06 6.52958e-05 2.718 ||| 0-0 ||| 223 1.17835e+06 +en ||| in indulging ||| 1 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in industry , such as the car ||| 1 0.605812 8.48644e-07 1.80088e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in industry , such as the ||| 1 0.605812 8.48644e-07 9.4287e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in industry , such as ||| 1 0.605812 8.48644e-07 1.53582e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in industry , such ||| 1 0.605812 8.48644e-07 1.50506e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in industry , ||| 0.0540541 0.605812 1.69729e-06 7.27469e-06 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| in industry and other areas , ||| 1 0.605812 8.48644e-07 2.70213e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in industry and other areas ||| 1 0.605812 8.48644e-07 2.26585e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in industry and other ||| 1 0.605812 8.48644e-07 9.89886e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in industry and ||| 0.0140845 0.605812 8.48644e-07 7.64096e-07 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| in industry ||| 0.012931 0.605812 2.54593e-06 6.10013e-05 2.718 ||| 0-0 ||| 232 1.17835e+06 +en ||| in information ||| 0.0243902 0.605812 8.48644e-07 7.64248e-05 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| in inhumane and ||| 0.333333 0.605812 8.48644e-07 2.31369e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in inhumane ||| 0.333333 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in injecting some ||| 1 0.605812 8.48644e-07 2.01207e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in injecting ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in insolvency ||| 0.333333 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in inspiration ||| 0.5 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in instances ||| 0.047619 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| in intensive ||| 0.111111 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in interest ||| 0.0232558 0.605812 8.48644e-07 5.1858e-05 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| in international organisations , ||| 0.0833333 0.605812 8.48644e-07 1.45774e-10 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in international organisations ||| 0.0163934 0.605812 8.48644e-07 1.22237e-09 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| in international ||| 0.037037 0.605812 1.69729e-06 3.57419e-05 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| in intractable ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in is essentially ||| 0.5 0.355754 8.48644e-07 3.03348e-06 2.718 ||| 0-0 0-2 ||| 2 1.17835e+06 +en ||| in is ||| 0.114286 0.605812 3.39458e-06 0.0144727 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| in isolation , deal ||| 1 0.605812 8.48644e-07 1.51986e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in isolation , ||| 0.027027 0.605812 8.48644e-07 3.57952e-07 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| in isolation ||| 0.00873362 0.605812 1.69729e-06 3.00158e-06 2.718 ||| 0-0 ||| 229 1.17835e+06 +en ||| in issuing ||| 0.0263158 0.605812 8.48644e-07 6.3264e-06 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| in it , ||| 0.012605 0.605812 2.54593e-06 0.000979313 2.718 ||| 0-0 ||| 238 1.17835e+06 +en ||| in it by means of ||| 1 0.605812 8.48644e-07 1.48528e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in it by means ||| 1 0.605812 8.48644e-07 2.7321e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in it by ||| 0.0909091 0.605812 8.48644e-07 4.31135e-05 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in it for ||| 0.0666667 0.605812 8.48644e-07 6.31146e-05 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in it in ||| 0.428571 0.406557 5.09187e-06 0.0005881 2.718 ||| 0-0 0-1 0-2 ||| 14 1.17835e+06 +en ||| in it is ||| 0.0526316 0.605812 8.48644e-07 0.000257371 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in it of ||| 0.25 0.605812 8.48644e-07 0.000446434 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in it with ||| 0.0833333 0.0535436 8.48644e-07 4.43785e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| in it ||| 0.0300462 0.605812 3.30971e-05 0.00821195 2.718 ||| 0-0 ||| 1298 1.17835e+06 +en ||| in item ||| 0.0277778 0.605812 8.48644e-07 1.74553e-05 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| in its attempts ||| 0.0454545 0.605812 8.48644e-07 2.08554e-08 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| in its electoral ||| 1 0.605812 8.48644e-07 4.01319e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in its face ||| 0.5 0.605812 8.48644e-07 1.10067e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in its fight ||| 0.0277778 0.605812 8.48644e-07 3.62503e-08 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| in its final form in ||| 0.5 0.605812 8.48644e-07 4.89093e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| in its heart with ||| 1 0.605812 8.48644e-07 3.39079e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in its heart ||| 0.333333 0.605812 8.48644e-07 5.30267e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in its most ||| 0.2 0.605812 8.48644e-07 2.84344e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in its original form , ||| 0.0625 0.605812 8.48644e-07 1.07856e-12 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in its original form ||| 0.0243902 0.605812 8.48644e-07 9.04417e-12 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| in its original ||| 0.166667 0.605812 8.48644e-07 1.98686e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in its own food security ||| 1 0.605812 8.48644e-07 4.92064e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in its own food ||| 1 0.605812 8.48644e-07 6.02282e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in its own hands ||| 0.142857 0.605812 8.48644e-07 1.12426e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in its own right ||| 0.00952381 0.605812 8.48644e-07 7.19281e-10 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| in its own ||| 0.00903614 0.605812 2.54593e-06 1.11534e-06 2.718 ||| 0-0 ||| 332 1.17835e+06 +en ||| in its proposal for ||| 0.0208333 0.0286209 8.48644e-07 7.00649e-11 2.718 ||| 0-3 ||| 48 1.17835e+06 +en ||| in its refusal to ||| 0.2 0.605812 8.48644e-07 3.39067e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in its refusal ||| 0.142857 0.605812 8.48644e-07 3.81582e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in its report , ||| 0.0163934 0.605812 8.48644e-07 3.21598e-08 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| in its report ||| 0.00306748 0.605812 8.48644e-07 2.69673e-07 2.718 ||| 0-0 ||| 326 1.17835e+06 +en ||| in its tracks in ||| 1 0.605812 8.48644e-07 8.16757e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| in its turn , ||| 0.0416667 0.605812 8.48644e-07 1.75902e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in its turn ||| 0.0212766 0.605812 8.48644e-07 1.47501e-07 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| in its view , ||| 0.0625 0.605812 8.48644e-07 7.08708e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in its view ||| 0.0196078 0.605812 8.48644e-07 5.94281e-07 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| in its wake ||| 0.0454545 0.605812 1.69729e-06 1.5658e-08 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| in its way ||| 0.0263158 0.605812 8.48644e-07 1.41817e-06 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| in its work ||| 0.00934579 0.605812 8.48644e-07 4.1645e-07 2.718 ||| 0-0 ||| 107 1.17835e+06 +en ||| in its ||| 0.0109817 0.605812 9.75941e-05 0.0006579 2.718 ||| 0-0 ||| 10472 1.17835e+06 +en ||| in itself , ||| 0.00252525 0.605812 8.48644e-07 3.73757e-05 2.718 ||| 0-0 ||| 396 1.17835e+06 +en ||| in itself a remarkable achievement , ||| 0.25 0.605812 8.48644e-07 2.87472e-16 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in itself a remarkable achievement ||| 0.25 0.605812 8.48644e-07 2.41057e-15 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in itself a remarkable ||| 0.25 0.605812 8.48644e-07 1.00024e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in itself a ||| 0.0128205 0.605812 8.48644e-07 1.38922e-05 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| in itself ||| 0.00460564 0.605812 6.78915e-06 0.000313411 2.718 ||| 0-0 ||| 1737 1.17835e+06 +en ||| in jeopardy ||| 0.00793651 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| in joining ||| 0.0222222 0.605812 8.48644e-07 6.46494e-06 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| in joint ||| 0.0454545 0.605812 8.48644e-07 3.00619e-05 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| in just a few ||| 0.0126582 0.605812 8.48644e-07 4.52721e-09 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| in just a ||| 0.0652174 0.605812 2.54593e-06 2.58255e-05 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| in just about ||| 0.181818 0.605812 1.69729e-06 8.24012e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in just that ||| 0.5 0.605812 8.48644e-07 9.80076e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in just ||| 0.130435 0.605812 2.54593e-05 0.000582629 2.718 ||| 0-0 ||| 230 1.17835e+06 +en ||| in keeping with ||| 0.00722022 0.0535436 3.39458e-06 1.46488e-08 2.718 ||| 0-2 ||| 554 1.17835e+06 +en ||| in keeping ||| 0.0143369 0.605812 6.78915e-06 2.71066e-05 2.718 ||| 0-0 ||| 558 1.17835e+06 +en ||| in key positions in ||| 0.5 0.605812 8.48644e-07 2.4288e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| in key ||| 0.0555556 0.605812 8.48644e-07 3.35715e-05 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in knowing ||| 0.0526316 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in knowledge-intensive ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in large parts of ||| 0.0526316 0.605812 8.48644e-07 2.24952e-10 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in large parts ||| 0.0322581 0.605812 8.48644e-07 4.13789e-09 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| in large ||| 0.00993378 0.605812 2.54593e-06 7.09758e-05 2.718 ||| 0-0 ||| 302 1.17835e+06 +en ||| in law ||| 0.00448431 0.605812 8.48644e-07 8.1412e-05 2.718 ||| 0-0 ||| 223 1.17835e+06 +en ||| in law-making ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in laying down ||| 0.0833333 0.605812 1.69729e-06 6.73752e-09 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in laying great ||| 1 0.605812 8.48644e-07 3.79293e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in laying ||| 0.157895 0.605812 2.54593e-06 9.65122e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in legal circles ||| 0.5 0.605812 8.48644e-07 3.65066e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in legal ||| 0.0740741 0.605812 1.69729e-06 5.98468e-05 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| in length ||| 0.037037 0.605812 8.48644e-07 1.77786e-05 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| in less than ||| 0.00757576 0.605812 8.48644e-07 2.40108e-08 2.718 ||| 0-0 ||| 132 1.17835e+06 +en ||| in less ||| 0.00598802 0.605812 8.48644e-07 7.85951e-05 2.718 ||| 0-0 ||| 167 1.17835e+06 +en ||| in light of the summit , does ||| 1 0.605812 8.48644e-07 7.16967e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in light of the summit , ||| 1 0.605812 8.48644e-07 1.02219e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in light of the summit ||| 1 0.605812 8.48644e-07 8.57152e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in light of the ||| 0.00249377 0.605812 8.48644e-07 2.6786e-07 2.718 ||| 0-0 ||| 401 1.17835e+06 +en ||| in light of this , with ||| 1 0.605812 8.48644e-07 2.14984e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in light of this , ||| 0.0232558 0.605812 8.48644e-07 3.36201e-09 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| in light of this ||| 0.011236 0.605812 8.48644e-07 2.81919e-08 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| in light of ||| 0.00860585 0.605812 4.24322e-06 4.36312e-06 2.718 ||| 0-0 ||| 581 1.17835e+06 +en ||| in light ||| 0.00842697 0.605812 5.09187e-06 8.02576e-05 2.718 ||| 0-0 ||| 712 1.17835e+06 +en ||| in line to ||| 0.125 0.605812 8.48644e-07 1.20801e-05 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in line with Parliament ||| 0.166667 0.605812 8.48644e-07 4.98991e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in line with an approach , ||| 1 0.605812 8.48644e-07 1.01004e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in line with an approach ||| 0.5 0.605812 8.48644e-07 8.46961e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in line with an ||| 0.111111 0.605812 8.48644e-07 3.86387e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in line with your wish ||| 1 0.605812 8.48644e-07 6.55588e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in line with your ||| 0.0769231 0.605812 8.48644e-07 2.22459e-10 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in line with ||| 0.0058862 0.605812 1.52756e-05 8.69322e-07 2.718 ||| 0-0 ||| 3058 1.17835e+06 +en ||| in line ||| 0.00974026 0.605812 2.29134e-05 0.000135948 2.718 ||| 0-0 ||| 2772 1.17835e+06 +en ||| in literally ||| 0.333333 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in living up ||| 1 0.605812 8.48644e-07 1.31977e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in living ||| 0.047619 0.605812 8.48644e-07 3.86973e-05 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| in looking for ||| 0.0384615 0.605812 8.48644e-07 3.75496e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in looking ||| 0.0540541 0.605812 1.69729e-06 4.88564e-05 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| in loss ||| 0.0769231 0.605812 8.48644e-07 1.9441e-05 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in mainstream ||| 0.166667 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in maintaining the status quo ||| 0.142857 0.605812 8.48644e-07 7.42904e-16 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in maintaining the status ||| 0.166667 0.605812 8.48644e-07 5.15906e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in maintaining the ||| 0.0357143 0.605812 8.48644e-07 5.10292e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| in maintaining ||| 0.0103093 0.605812 1.69729e-06 8.31206e-06 2.718 ||| 0-0 ||| 194 1.17835e+06 +en ||| in making a ||| 0.0588235 0.605812 1.69729e-06 7.87435e-06 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| in making any ||| 0.25 0.605812 8.48644e-07 2.68638e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in making out that ||| 0.25 0.605812 8.48644e-07 1.14464e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in making out ||| 0.2 0.605812 8.48644e-07 6.8046e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in making the fact ||| 1 0.605812 8.48644e-07 3.19472e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in making the ||| 0.010989 0.605812 8.48644e-07 1.09061e-05 2.718 ||| 0-0 ||| 91 1.17835e+06 +en ||| in making ||| 0.0260492 0.605812 1.52756e-05 0.000177647 2.718 ||| 0-0 ||| 691 1.17835e+06 +en ||| in many , ||| 0.142857 0.605812 8.48644e-07 1.89054e-05 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in many European ||| 0.25 0.605812 8.48644e-07 5.30107e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in many Member States ||| 0.00222222 0.605812 8.48644e-07 3.89826e-11 2.718 ||| 0-0 ||| 450 1.17835e+06 +en ||| in many Member ||| 0.2 0.605812 8.48644e-07 8.16902e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in many areas of ||| 0.0192308 0.605812 8.48644e-07 1.97273e-09 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| in many areas ||| 0.00212314 0.605812 8.48644e-07 3.62874e-08 2.718 ||| 0-0 ||| 471 1.17835e+06 +en ||| in many cases , ||| 0.00246914 0.605812 8.48644e-07 2.42178e-09 2.718 ||| 0-0 ||| 405 1.17835e+06 +en ||| in many cases ||| 0.00178571 0.605812 1.69729e-06 2.03076e-08 2.718 ||| 0-0 ||| 1120 1.17835e+06 +en ||| in many economies in ||| 0.5 0.605812 8.48644e-07 3.80043e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| in many instances ||| 0.0138889 0.605812 8.48644e-07 1.82309e-09 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| in many of ||| 0.0107143 0.605812 2.54593e-06 8.6183e-06 2.718 ||| 0-0 ||| 280 1.17835e+06 +en ||| in many parts of ||| 0.015625 0.605812 8.48644e-07 5.02447e-10 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| in many parts ||| 0.0141844 0.605812 1.69729e-06 9.24227e-09 2.718 ||| 0-0 ||| 141 1.17835e+06 +en ||| in many ways had been ||| 1 0.605812 8.48644e-07 5.12193e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in many ways had ||| 1 0.605812 8.48644e-07 1.53388e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in many ways ||| 0.00694444 0.605812 2.54593e-06 1.52822e-08 2.718 ||| 0-0 ||| 432 1.17835e+06 +en ||| in many ||| 0.00467472 0.605812 2.03675e-05 0.000158529 2.718 ||| 0-0 ||| 5134 1.17835e+06 +en ||| in mapping ||| 0.166667 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in market ||| 0.0769231 0.605812 8.48644e-07 0.000104363 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in material ||| 0.25 0.605812 8.48644e-07 1.2976e-05 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in matters of trade on behalf of ||| 1 0.605812 8.48644e-07 4.68651e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in matters of trade on behalf ||| 1 0.605812 8.48644e-07 8.62061e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in matters of trade on ||| 1 0.605812 8.48644e-07 2.70663e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in matters of trade ||| 0.5 0.605812 8.48644e-07 4.04518e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in matters of ||| 0.0160256 0.605812 4.24322e-06 4.64429e-06 2.718 ||| 0-0 ||| 312 1.17835e+06 +en ||| in matters ||| 0.00934579 0.605812 4.24322e-06 8.54295e-05 2.718 ||| 0-0 ||| 535 1.17835e+06 +en ||| in maybe ||| 0.666667 0.605812 1.69729e-06 9.32798e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in measures to ||| 0.047619 0.605812 8.48644e-07 8.48974e-06 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| in measures ||| 0.0169492 0.605812 8.48644e-07 9.55425e-05 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| in meat ||| 0.0344828 0.605812 8.48644e-07 8.31206e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in media ||| 0.0666667 0.605812 8.48644e-07 1.32993e-05 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in meetings of ||| 0.1 0.605812 8.48644e-07 5.52294e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in meetings ||| 0.028169 0.605812 1.69729e-06 1.01592e-05 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| in membership ||| 0.0625 0.605812 8.48644e-07 1.13136e-05 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in midfield ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in mind , for example , ||| 0.125 0.605812 8.48644e-07 3.70119e-12 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in mind , for example ||| 0.166667 0.605812 8.48644e-07 3.1036e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in mind , for ||| 0.111111 0.605812 8.48644e-07 1.06616e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in mind , ||| 0.00156006 0.605812 8.48644e-07 1.3872e-05 2.718 ||| 0-0 ||| 641 1.17835e+06 +en ||| in mind - we must ||| 1 0.605812 8.48644e-07 7.6989e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in mind - we ||| 1 0.605812 8.48644e-07 4.98117e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in mind - ||| 0.2 0.605812 3.39458e-06 4.38781e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in mind in all the other ||| 1 0.605812 8.48644e-07 9.35741e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in mind in all the ||| 1 0.605812 8.48644e-07 7.22301e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in mind in all ||| 1 0.605812 8.48644e-07 1.17654e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in mind in ||| 0.0491803 0.605812 2.54593e-06 2.48983e-06 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| in mind that ||| 0.000755287 0.605812 8.48644e-07 1.95673e-06 2.718 ||| 0-0 ||| 1324 1.17835e+06 +en ||| in mind the fact ||| 0.0151515 0.605812 8.48644e-07 2.09189e-08 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| in mind the ||| 0.0028169 0.605812 1.69729e-06 7.14126e-06 2.718 ||| 0-0 ||| 710 1.17835e+06 +en ||| in mind ||| 0.0125399 0.605812 5.007e-05 0.000116323 2.718 ||| 0-0 ||| 4705 1.17835e+06 +en ||| in moderation , ||| 0.142857 0.605812 8.48644e-07 1.21153e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in moderation ||| 0.0294118 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| in modest silence ||| 0.5 0.605812 8.48644e-07 9.23562e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in modest ||| 0.5 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in money ||| 0.0384615 0.605812 8.48644e-07 7.5455e-05 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in monitoring ||| 0.00389105 0.605812 8.48644e-07 1.75939e-05 2.718 ||| 0-0 ||| 257 1.17835e+06 +en ||| in more areas ||| 0.166667 0.605812 8.48644e-07 2.41391e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in more ||| 0.0334855 0.605812 1.86702e-05 0.00105457 2.718 ||| 0-0 ||| 657 1.17835e+06 +en ||| in most ||| 0.000711744 0.605812 8.48644e-07 0.000199582 2.718 ||| 0-0 ||| 1405 1.17835e+06 +en ||| in mothers ' ||| 1 0.605812 8.48644e-07 3.48958e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in mothers ||| 0.333333 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in motion in ||| 0.181818 0.605812 1.69729e-06 7.47245e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| in motion investigations by experts is ||| 1 0.605812 8.48644e-07 7.53312e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in motion investigations by experts ||| 1 0.605812 8.48644e-07 2.40359e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in motion investigations by ||| 1 0.605812 8.48644e-07 1.52126e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in motion investigations ||| 1 0.605812 8.48644e-07 2.89758e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in motion so ||| 0.333333 0.605812 8.48644e-07 7.92367e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in motion ||| 0.0155902 0.605812 5.94051e-06 3.49107e-05 2.718 ||| 0-0 ||| 449 1.17835e+06 +en ||| in motivation ||| 0.25 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in motorway service ||| 1 0.605812 8.48644e-07 9.88581e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in motorway ||| 1 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in moving ||| 0.0113636 0.605812 8.48644e-07 2.74298e-05 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| in much needed ||| 0.5 0.605812 8.48644e-07 6.20613e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in much of a ||| 0.5 0.605812 8.48644e-07 1.11688e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in much of ||| 0.0526316 0.605812 8.48644e-07 2.51972e-05 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in much ||| 0.0512821 0.605812 3.39458e-06 0.00046349 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| in multiple ||| 0.1 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in my capacity ||| 0.0314465 0.605812 4.24322e-06 2.17086e-08 2.718 ||| 0-0 ||| 159 1.17835e+06 +en ||| in my conclusion , ||| 0.2 0.605812 8.48644e-07 3.13425e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in my conclusion ||| 0.166667 0.605812 8.48644e-07 2.6282e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in my country , ||| 0.00154083 0.605812 8.48644e-07 1.27459e-08 2.718 ||| 0-0 ||| 649 1.17835e+06 +en ||| in my country production is low and ||| 1 0.605812 8.48644e-07 1.26127e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in my country production is low ||| 1 0.605812 8.48644e-07 1.00693e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in my country production is ||| 1 0.605812 8.48644e-07 2.79703e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in my country production ||| 1 0.605812 8.48644e-07 8.92448e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in my country ||| 0.00130634 0.605812 1.69729e-06 1.0688e-07 2.718 ||| 0-0 ||| 1531 1.17835e+06 +en ||| in my eyes ||| 0.0185185 0.605812 8.48644e-07 1.73134e-08 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| in my life ||| 0.0263158 0.605812 8.48644e-07 4.49912e-08 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| in my name , ||| 0.142857 0.605812 8.48644e-07 3.09529e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in my name ||| 0.0175439 0.605812 8.48644e-07 2.59553e-08 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| in my opinion , ||| 0.000825309 0.605812 2.54593e-06 8.6909e-09 2.718 ||| 0-0 ||| 3635 1.17835e+06 +en ||| in my opinion ||| 0.00134641 0.605812 5.94051e-06 7.28768e-08 2.718 ||| 0-0 ||| 5199 1.17835e+06 +en ||| in my own country , for example ||| 0.111111 0.605812 8.48644e-07 4.83442e-17 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in my own country , for ||| 0.0909091 0.605812 8.48644e-07 1.66074e-13 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in my own country , ||| 0.00285714 0.605812 8.48644e-07 2.16082e-11 2.718 ||| 0-0 ||| 350 1.17835e+06 +en ||| in my own country ||| 0.00126103 0.605812 8.48644e-07 1.81194e-10 2.718 ||| 0-0 ||| 793 1.17835e+06 +en ||| in my own language ||| 0.0588235 0.605812 8.48644e-07 2.35617e-11 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in my own ||| 0.00311042 0.605812 1.69729e-06 5.03456e-07 2.718 ||| 0-0 ||| 643 1.17835e+06 +en ||| in my thoughts ||| 1 0.605812 8.48644e-07 2.88062e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in my view , if ||| 0.0588235 0.605812 8.48644e-07 2.67313e-11 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in my view , ||| 0.00121249 0.605812 3.39458e-06 3.19906e-08 2.718 ||| 0-0 ||| 3299 1.17835e+06 +en ||| in my view ||| 0.0013558 0.605812 5.94051e-06 2.68254e-07 2.718 ||| 0-0 ||| 5163 1.17835e+06 +en ||| in my wide definition ||| 0.166667 0.605812 8.48644e-07 3.35643e-13 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in my wide ||| 0.166667 0.605812 8.48644e-07 1.22946e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in my ||| 0.00340633 0.605812 4.75241e-05 0.000296971 2.718 ||| 0-0 ||| 16440 1.17835e+06 +en ||| in name only ||| 0.1 0.605812 8.48644e-07 4.49243e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in name ||| 0.030303 0.605812 8.48644e-07 4.03597e-05 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| in national ||| 0.06 0.605812 2.54593e-06 5.93389e-05 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| in nature ||| 0.0141176 0.605812 5.09187e-06 6.52958e-05 2.718 ||| 0-0 ||| 425 1.17835e+06 +en ||| in neatly ||| 0.142857 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in need ; ||| 1 0.605812 8.48644e-07 1.30409e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in need of ||| 0.0096463 0.605812 2.54593e-06 2.30181e-05 2.718 ||| 0-0 ||| 311 1.17835e+06 +en ||| in need ||| 0.00747384 0.605812 4.24322e-06 0.000423407 2.718 ||| 0-0 ||| 669 1.17835e+06 +en ||| in needy ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in neighbouring ||| 0.015625 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| in new and ||| 0.125 0.605812 8.48644e-07 3.45723e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in new ||| 0.0128535 0.605812 4.24322e-06 0.000276007 2.718 ||| 0-0 ||| 389 1.17835e+06 +en ||| in newly created ||| 1 0.605812 8.48644e-07 3.50436e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in newly ||| 0.5 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in news and current ||| 0.333333 0.605812 8.48644e-07 3.46026e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in news and ||| 0.333333 0.605812 8.48644e-07 2.09967e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in news ||| 0.2 0.605812 8.48644e-07 1.67627e-05 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in nicely ||| 1 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in no less ||| 0.5 0.605812 8.48644e-07 6.11785e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in no longer ||| 1 0.605812 8.48644e-07 6.7397e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in no small way ||| 0.0769231 0.605812 8.48644e-07 9.92559e-11 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in no small ||| 0.025 0.605812 8.48644e-07 4.60456e-08 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| in no time , ||| 0.2 0.605812 8.48644e-07 7.03734e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in no time ||| 0.0555556 0.605812 8.48644e-07 5.9011e-07 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in no uncertain ||| 0.025 0.605812 8.48644e-07 2.73182e-09 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| in no ||| 0.0436893 0.605812 3.05512e-05 0.00035945 2.718 ||| 0-0 ||| 824 1.17835e+06 +en ||| in nobody 's ||| 0.333333 0.605812 8.48644e-07 7.56298e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in nobody ||| 0.1 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in not only ||| 0.05 0.605812 8.48644e-07 1.75488e-06 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in not ||| 0.0212766 0.605812 1.69729e-06 0.00157657 2.718 ||| 0-0 ||| 94 1.17835e+06 +en ||| in now ||| 0.0571429 0.605812 1.69729e-06 0.000951223 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| in number , ||| 0.0769231 0.605812 8.48644e-07 2.72484e-05 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in number - are ||| 0.5 0.605812 8.48644e-07 1.30771e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in number - ||| 0.2 0.605812 8.48644e-07 8.61884e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in number in ||| 1 0.404242 8.48644e-07 4.35013e-06 2.718 ||| 0-0 0-1 0-2 ||| 1 1.17835e+06 +en ||| in number ||| 0.0506329 0.605812 3.39458e-06 0.000228489 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| in numbered ||| 1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in numbers ||| 0.0408163 0.605812 1.69729e-06 2.25811e-05 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| in numerous ||| 0.00865801 0.605812 1.69729e-06 8.12735e-06 2.718 ||| 0-0 ||| 231 1.17835e+06 +en ||| in obtaining ||| 0.00609756 0.605812 8.48644e-07 6.83436e-06 2.718 ||| 0-0 ||| 164 1.17835e+06 +en ||| in odd paragraphs of ||| 1 0.605812 8.48644e-07 4.95056e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in odd paragraphs ||| 1 0.605812 8.48644e-07 9.10632e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in odd ||| 1 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in off ||| 1 0.605812 8.48644e-07 0.000187945 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in office , ||| 0.05 0.605812 1.69729e-06 5.66666e-06 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| in office . so much ||| 1 0.605812 8.48644e-07 3.27886e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in office . so ||| 1 0.605812 8.48644e-07 3.26678e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in office . ||| 0.0185185 0.605812 8.48644e-07 1.4393e-07 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| in office at the ||| 0.25 0.605812 8.48644e-07 1.22154e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in office at ||| 0.142857 0.605812 8.48644e-07 1.98974e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in office by means of ||| 1 0.605812 8.48644e-07 8.59437e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in office by means ||| 1 0.605812 8.48644e-07 1.58089e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in office by ||| 0.25 0.605812 8.48644e-07 2.4947e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in office however , have ||| 1 0.605812 8.48644e-07 7.50712e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in office however , ||| 1 0.605812 8.48644e-07 6.27696e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in office however ||| 1 0.605812 8.48644e-07 5.26349e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in office ||| 0.04329 0.605812 8.48644e-06 4.75173e-05 2.718 ||| 0-0 ||| 231 1.17835e+06 +en ||| in official ||| 0.333333 0.605812 8.48644e-07 1.79633e-05 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in on a ||| 0.125 0.417871 8.48644e-07 0.0016999 2.718 ||| 0-0 0-1 ||| 8 1.17835e+06 +en ||| in on the ||| 0.0833333 0.605812 1.69729e-06 0.000189687 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in on ||| 0.396552 0.417871 3.90376e-05 0.0383502 2.718 ||| 0-0 0-1 ||| 116 1.17835e+06 +en ||| in one ' ||| 0.5 0.605812 2.54593e-06 6.61116e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in one 's ||| 0.0232558 0.605812 8.48644e-07 3.66541e-06 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| in one Member State ||| 0.00414938 0.605812 8.48644e-07 1.19214e-10 2.718 ||| 0-0 ||| 241 1.17835e+06 +en ||| in one Member ||| 0.142857 0.605812 8.48644e-07 9.918e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in one after another of the ||| 1 0.605812 8.48644e-07 4.19713e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in one after another of ||| 1 0.605812 8.48644e-07 6.83663e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in one after another ||| 1 0.605812 8.48644e-07 1.25756e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in one after ||| 1 0.605812 8.48644e-07 5.21595e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in one and ||| 0.235294 0.605812 3.39458e-06 2.41086e-05 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in one go ||| 0.0666667 0.605812 1.69729e-06 1.12557e-06 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| in one of the ||| 0.00374532 0.605812 8.48644e-07 6.42371e-06 2.718 ||| 0-0 ||| 267 1.17835e+06 +en ||| in one of ||| 0.0117925 0.605812 4.24322e-06 0.000104635 2.718 ||| 0-0 ||| 424 1.17835e+06 +en ||| in one or ||| 0.0140845 0.605812 8.48644e-07 2.20051e-06 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| in one third ||| 0.125 0.605812 8.48644e-07 9.00761e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in one way ||| 0.00877193 0.605812 8.48644e-07 4.14889e-06 2.718 ||| 0-0 ||| 114 1.17835e+06 +en ||| in one year ||| 0.0151515 0.605812 8.48644e-07 4.80021e-07 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| in one ||| 0.0299325 0.605812 6.02537e-05 0.0019247 2.718 ||| 0-0 ||| 2372 1.17835e+06 +en ||| in one ’ ||| 0.625 0.605812 4.24322e-06 3.35303e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in only ||| 0.046729 0.605812 4.24322e-06 0.000514009 2.718 ||| 0-0 ||| 107 1.17835e+06 +en ||| in opening up ||| 0.0238095 0.605812 8.48644e-07 4.42548e-08 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| in opening ||| 0.0185185 0.605812 8.48644e-07 1.2976e-05 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| in operation even ||| 0.5 0.605812 8.48644e-07 1.59885e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in operation in a ||| 1 0.605812 8.48644e-07 2.49293e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in operation in ||| 0.0416667 0.605812 8.48644e-07 5.62411e-07 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in operation within ||| 1 0.605812 8.48644e-07 5.49417e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in operation ||| 0.0190114 0.605812 4.24322e-06 2.62753e-05 2.718 ||| 0-0 ||| 263 1.17835e+06 +en ||| in opposition here ||| 0.125 0.605812 8.48644e-07 2.39718e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in opposition to ||| 0.00970874 0.605812 8.48644e-07 1.05045e-06 2.718 ||| 0-0 ||| 103 1.17835e+06 +en ||| in opposition ||| 0.021164 0.605812 3.39458e-06 1.18216e-05 2.718 ||| 0-0 ||| 189 1.17835e+06 +en ||| in or ||| 0.0361446 0.605812 2.54593e-06 0.000527954 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| in order , this is ||| 1 0.605812 8.48644e-07 5.93955e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in order , this ||| 1 0.605812 8.48644e-07 1.89513e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in order , ||| 0.0144928 0.605812 1.69729e-06 2.93301e-05 2.718 ||| 0-0 ||| 138 1.17835e+06 +en ||| in order first ||| 0.0714286 0.605812 8.48644e-07 1.32417e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in order for ||| 0.00126743 0.605812 8.48644e-07 1.89026e-06 2.718 ||| 0-0 ||| 789 1.17835e+06 +en ||| in order in ||| 0.0666667 0.605812 8.48644e-07 5.26432e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| in order to achieve ||| 0.00171674 0.605812 1.69729e-06 4.99368e-09 2.718 ||| 0-0 ||| 1165 1.17835e+06 +en ||| in order to address them ||| 1 0.605812 8.48644e-07 4.47284e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in order to address ||| 0.00543478 0.605812 8.48644e-07 1.66748e-09 2.718 ||| 0-0 ||| 184 1.17835e+06 +en ||| in order to avoid putting too much ||| 1 0.605812 8.48644e-07 1.17924e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in order to avoid putting too ||| 1 0.605812 8.48644e-07 1.17489e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in order to avoid putting ||| 0.5 0.605812 8.48644e-07 8.63256e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in order to avoid ||| 0.00113507 0.605812 8.48644e-07 7.71453e-10 2.718 ||| 0-0 ||| 881 1.17835e+06 +en ||| in order to be able ||| 0.00746269 0.605812 8.48644e-07 3.30672e-10 2.718 ||| 0-0 ||| 134 1.17835e+06 +en ||| in order to be ||| 0.00213675 0.605812 8.48644e-07 3.96061e-07 2.718 ||| 0-0 ||| 468 1.17835e+06 +en ||| in order to deal with ||| 0.0078125 0.605812 8.48644e-07 5.93364e-11 2.718 ||| 0-0 ||| 128 1.17835e+06 +en ||| in order to deal ||| 0.0526316 0.605812 1.69729e-06 9.27929e-09 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| in order to do ||| 0.0121951 0.605812 8.48644e-07 7.50757e-08 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| in order to enable us ||| 0.166667 0.605812 8.48644e-07 6.21063e-12 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in order to enable ||| 0.00746269 0.605812 8.48644e-07 2.15482e-09 2.718 ||| 0-0 ||| 134 1.17835e+06 +en ||| in order to ensure that ||| 0.0014245 0.605812 8.48644e-07 1.64842e-10 2.718 ||| 0-0 ||| 702 1.17835e+06 +en ||| in order to ensure ||| 0.000623053 0.605812 8.48644e-07 9.79942e-09 2.718 ||| 0-0 ||| 1605 1.17835e+06 +en ||| in order to further our own ends ||| 0.5 0.605812 8.48644e-07 5.77969e-19 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in order to further our own ||| 0.5 0.605812 8.48644e-07 2.46995e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in order to further our ||| 0.5 0.605812 8.48644e-07 1.45694e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in order to further ||| 0.03125 0.605812 8.48644e-07 1.05621e-08 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| in order to guarantee that ||| 0.0140845 0.605812 8.48644e-07 2.22412e-11 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| in order to guarantee ||| 0.00168067 0.605812 8.48644e-07 1.32218e-09 2.718 ||| 0-0 ||| 595 1.17835e+06 +en ||| in order to illustrate the fact ||| 0.1 0.605812 8.48644e-07 1.96507e-14 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in order to illustrate the ||| 0.0909091 0.605812 8.48644e-07 6.70834e-12 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in order to illustrate ||| 0.0666667 0.605812 8.48644e-07 1.09271e-10 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in order to implement ||| 0.00628931 0.605812 8.48644e-07 1.21946e-09 2.718 ||| 0-0 ||| 159 1.17835e+06 +en ||| in order to maintain ||| 0.00434783 0.605812 8.48644e-07 9.98737e-10 2.718 ||| 0-0 ||| 230 1.17835e+06 +en ||| in order to meet the requirements of ||| 0.5 0.605812 8.48644e-07 4.31049e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in order to meet the requirements ||| 0.125 0.605812 8.48644e-07 7.92894e-15 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in order to meet the ||| 0.00613497 0.605812 8.48644e-07 1.63147e-10 2.718 ||| 0-0 ||| 163 1.17835e+06 +en ||| in order to meet ||| 0.0030581 0.605812 8.48644e-07 2.65747e-09 2.718 ||| 0-0 ||| 327 1.17835e+06 +en ||| in order to provide ||| 0.00299401 0.605812 8.48644e-07 6.46447e-09 2.718 ||| 0-0 ||| 334 1.17835e+06 +en ||| in order to recover ||| 0.0666667 0.605812 8.48644e-07 9.3973e-11 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in order to restore ||| 0.00943396 0.605812 8.48644e-07 2.99402e-10 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| in order to safeguard ||| 0.00364964 0.605812 8.48644e-07 4.48011e-10 2.718 ||| 0-0 ||| 274 1.17835e+06 +en ||| in order to show ||| 0.0208333 0.605812 8.48644e-07 2.92628e-09 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| in order to support ||| 0.00420168 0.605812 8.48644e-07 7.47195e-09 2.718 ||| 0-0 ||| 238 1.17835e+06 +en ||| in order to tackle ||| 0.00757576 0.605812 8.48644e-07 7.93307e-10 2.718 ||| 0-0 ||| 132 1.17835e+06 +en ||| in order to take sides in ||| 0.333333 0.605812 8.48644e-07 2.76396e-14 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| in order to take ||| 0.00409836 0.605812 8.48644e-07 3.51853e-08 2.718 ||| 0-0 ||| 244 1.17835e+06 +en ||| in order to try ||| 0.0333333 0.605812 8.48644e-07 3.36555e-09 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| in order to turn ||| 0.0416667 0.605812 8.48644e-07 4.89971e-09 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in order to ||| 0.00276478 0.605812 5.51619e-05 2.18542e-05 2.718 ||| 0-0 ||| 23510 1.17835e+06 +en ||| in order when it ||| 1 0.605812 8.48644e-07 2.1864e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in order when ||| 0.5 0.605812 8.48644e-07 1.22948e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in order ||| 0.0105806 0.605812 0.000132389 0.000245945 2.718 ||| 0-0 ||| 14744 1.17835e+06 +en ||| in other , ||| 0.0625 0.605812 8.48644e-07 7.13426e-05 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in other areas of ||| 0.0128205 0.605812 8.48644e-07 7.44442e-09 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| in other areas ||| 0.00330033 0.605812 1.69729e-06 1.36937e-07 2.718 ||| 0-0 ||| 606 1.17835e+06 +en ||| in other countries ||| 0.0011655 0.605812 8.48644e-07 2.27151e-07 2.718 ||| 0-0 ||| 858 1.17835e+06 +en ||| in other matters , ||| 0.166667 0.605812 8.48644e-07 1.31984e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in other matters ||| 0.0769231 0.605812 8.48644e-07 1.10674e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in other parliaments , ||| 0.333333 0.605812 8.48644e-07 7.99037e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in other parliaments ||| 0.1 0.605812 8.48644e-07 6.70026e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in other people ' s business ||| 1 0.605812 8.48644e-07 4.29745e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in other people ' s ||| 1 0.605812 8.48644e-07 3.44071e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in other people ' ||| 1 0.605812 8.48644e-07 1.80871e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in other people ||| 0.333333 0.605812 8.48644e-07 5.26569e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in other sectors besides ||| 1 0.605812 8.48644e-07 4.43653e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in other sectors ||| 0.00502513 0.605812 8.48644e-07 3.08092e-08 2.718 ||| 0-0 ||| 199 1.17835e+06 +en ||| in other words , it is ||| 0.0107527 0.605812 8.48644e-07 8.98632e-12 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| in other words , it ||| 0.00884956 0.605812 8.48644e-07 2.86726e-10 2.718 ||| 0-0 ||| 113 1.17835e+06 +en ||| in other words , ||| 0.00112057 0.605812 4.24322e-06 1.61234e-08 2.718 ||| 0-0 ||| 4462 1.17835e+06 +en ||| in other words a ||| 0.01 0.605812 8.48644e-07 5.99292e-09 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| in other words allowing ||| 0.5 0.605812 8.48644e-07 6.81416e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in other words eliminating monetary fluctuations , ||| 1 0.605812 8.48644e-07 2.0896e-24 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in other words eliminating monetary fluctuations ||| 1 0.605812 8.48644e-07 1.75221e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in other words eliminating monetary ||| 1 0.605812 8.48644e-07 7.00885e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in other words eliminating ||| 1 0.605812 8.48644e-07 4.86726e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in other words in the ||| 0.0588235 0.404264 8.48644e-07 1.78853e-10 2.718 ||| 0-0 0-3 0-4 ||| 17 1.17835e+06 +en ||| in other words to ||| 0.010101 0.605812 8.48644e-07 1.20138e-08 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| in other words using the ||| 1 0.605812 8.48644e-07 6.44931e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in other words using ||| 0.333333 0.605812 8.48644e-07 1.05052e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in other words ||| 0.00263049 0.605812 1.61242e-05 1.35202e-07 2.718 ||| 0-0 ||| 7223 1.17835e+06 +en ||| in other ||| 0.00977566 0.605812 6.61943e-05 0.000598237 2.718 ||| 0-0 ||| 7979 1.17835e+06 +en ||| in others ||| 0.00222717 0.605812 8.48644e-07 4.48851e-05 2.718 ||| 0-0 ||| 449 1.17835e+06 +en ||| in our actions ||| 0.03125 0.605812 8.48644e-07 4.44613e-08 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| in our construction ||| 0.5 0.605812 8.48644e-07 1.0765e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in our continent . ||| 0.0285714 0.605812 8.48644e-07 2.21883e-11 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| in our continent ||| 0.0125 0.605812 8.48644e-07 7.32528e-09 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| in our experience ||| 0.037037 0.605812 8.48644e-07 4.40154e-08 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| in our eyes ||| 0.0294118 0.605812 8.48644e-07 3.7136e-08 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| in our grasp ||| 0.333333 0.605812 8.48644e-07 5.03215e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in our heads to ||| 1 0.605812 8.48644e-07 1.64709e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in our heads ||| 0.125 0.605812 8.48644e-07 1.85361e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in our isolation ||| 0.5 0.605812 8.48644e-07 4.14038e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in our journey ||| 0.5 0.605812 8.48644e-07 6.43351e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in our opinion , ||| 0.00145985 0.605812 8.48644e-07 1.86413e-08 2.718 ||| 0-0 ||| 685 1.17835e+06 +en ||| in our opinion ||| 0.000986193 0.605812 8.48644e-07 1.56315e-07 2.718 ||| 0-0 ||| 1014 1.17835e+06 +en ||| in our own countries is not interfering ||| 1 0.605812 8.48644e-07 1.27234e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in our own countries is not ||| 1 0.605812 8.48644e-07 4.38737e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in our own countries is ||| 1 0.605812 8.48644e-07 1.28507e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in our own countries ||| 0.0047619 0.605812 8.48644e-07 4.10028e-10 2.718 ||| 0-0 ||| 210 1.17835e+06 +en ||| in our own ||| 0.00302115 0.605812 1.69729e-06 1.07987e-06 2.718 ||| 0-0 ||| 662 1.17835e+06 +en ||| in our power - ||| 1 0.605812 8.48644e-07 3.58731e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in our power ||| 0.00625 0.605812 8.48644e-07 9.51012e-08 2.718 ||| 0-0 ||| 160 1.17835e+06 +en ||| in our view , are ||| 0.2 0.605812 8.48644e-07 1.04111e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in our view , ||| 0.00124533 0.605812 8.48644e-07 6.86173e-08 2.718 ||| 0-0 ||| 803 1.17835e+06 +en ||| in our view ||| 0.00232919 0.605812 2.54593e-06 5.75385e-07 2.718 ||| 0-0 ||| 1288 1.17835e+06 +en ||| in our world to ||| 1 0.605812 8.48644e-07 1.28937e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in our world ||| 0.0181818 0.605812 8.48644e-07 1.45104e-07 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| in our ||| 0.00599645 0.605812 6.87402e-05 0.000636981 2.718 ||| 0-0 ||| 13508 1.17835e+06 +en ||| in over ||| 0.0588235 0.381874 5.09187e-06 0.00185045 2.718 ||| 0-0 0-1 ||| 102 1.17835e+06 +en ||| in pairs ||| 0.25 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in part , ||| 0.00374532 0.605812 8.48644e-07 6.56539e-05 2.718 ||| 0-0 ||| 267 1.17835e+06 +en ||| in part about ||| 1 0.605812 8.48644e-07 7.78622e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in part ||| 0.00278293 0.605812 2.54593e-06 0.000550535 2.718 ||| 0-0 ||| 1078 1.17835e+06 +en ||| in partial failure ||| 0.2 0.605812 8.48644e-07 7.78009e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in partial ||| 0.142857 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in particular , a strict economic embargo ||| 0.25 0.605812 8.48644e-07 7.82071e-21 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in particular , a strict economic ||| 0.25 0.605812 8.48644e-07 2.6968e-15 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in particular , a strict ||| 0.25 0.605812 8.48644e-07 2.22325e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in particular , a ||| 0.0140845 0.605812 8.48644e-07 1.50219e-06 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| in particular , and we have always ||| 0.5 0.605812 8.48644e-07 9.91321e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in particular , and we have ||| 0.5 0.605812 8.48644e-07 5.76349e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in particular , and we ||| 0.5 0.605812 8.48644e-07 4.81906e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in particular , and ||| 0.00729927 0.605812 8.48644e-07 4.245e-07 2.718 ||| 0-0 ||| 137 1.17835e+06 +en ||| in particular , give an ||| 0.333333 0.605812 8.48644e-07 9.12818e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in particular , give ||| 0.166667 0.605812 8.48644e-07 2.05372e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in particular , in ||| 0.004329 0.605812 8.48644e-07 7.25394e-07 2.718 ||| 0-3 ||| 231 1.17835e+06 +en ||| in particular , on ||| 0.00598802 0.605812 8.48644e-07 2.26757e-07 2.718 ||| 0-0 ||| 167 1.17835e+06 +en ||| in particular , to sing ||| 0.5 0.605812 8.48644e-07 9.63644e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in particular , to ||| 0.00208768 0.605812 8.48644e-07 3.01139e-06 2.718 ||| 0-0 ||| 479 1.17835e+06 +en ||| in particular , ||| 0.00241758 0.605812 1.86702e-05 3.38898e-05 2.718 ||| 0-0 ||| 9100 1.17835e+06 +en ||| in particular - ||| 0.00571429 0.605812 8.48644e-07 1.07196e-06 2.718 ||| 0-0 ||| 175 1.17835e+06 +en ||| in particular . ||| 0.00140449 0.605812 8.48644e-07 8.60781e-07 2.718 ||| 0-0 ||| 712 1.17835e+06 +en ||| in particular a ||| 0.0263158 0.605812 8.48644e-07 1.25965e-05 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| in particular about ||| 0.0263158 0.605812 8.48644e-07 4.01916e-07 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| in particular here to ||| 0.333333 0.605812 8.48644e-07 5.12055e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in particular here ||| 0.0769231 0.605812 8.48644e-07 5.7626e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in particular in ||| 0.0120069 0.605812 5.94051e-06 6.08273e-06 2.718 ||| 0-2 ||| 583 1.17835e+06 +en ||| in particular of ||| 0.0103448 0.605812 2.54593e-06 1.54492e-05 2.718 ||| 0-0 ||| 290 1.17835e+06 +en ||| in particular on ||| 0.00584795 0.22993 1.69729e-06 1.09394e-06 2.718 ||| 0-2 ||| 342 1.17835e+06 +en ||| in particular that ||| 0.00446429 0.605812 8.48644e-07 4.78036e-06 2.718 ||| 0-0 ||| 224 1.17835e+06 +en ||| in particular those which are least ||| 1 0.605812 8.48644e-07 6.50837e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in particular those which are ||| 0.5 0.605812 8.48644e-07 2.65215e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in particular those which ||| 0.0833333 0.605812 8.48644e-07 1.74797e-09 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in particular those women ||| 1 0.605812 8.48644e-07 2.4446e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in particular those ||| 0.00888889 0.605812 1.69729e-06 2.05775e-07 2.718 ||| 0-0 ||| 225 1.17835e+06 +en ||| in particular to ||| 0.00309278 0.605812 2.54593e-06 2.52517e-05 2.718 ||| 0-0 ||| 970 1.17835e+06 +en ||| in particular understand ||| 0.5 0.605812 8.48644e-07 2.21945e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in particular when it ||| 0.0909091 0.252197 8.48644e-07 4.66584e-09 2.718 ||| 0-0 0-2 0-3 ||| 11 1.17835e+06 +en ||| in particular with ||| 0.00588235 0.605812 1.69729e-06 1.81719e-06 2.718 ||| 0-0 ||| 340 1.17835e+06 +en ||| in particular ||| 0.00399938 0.605812 8.74104e-05 0.00028418 2.718 ||| 0-0 ||| 25754 1.17835e+06 +en ||| in particularly ||| 0.05 0.394578 8.48644e-07 0.00206222 2.718 ||| 0-0 0-1 ||| 20 1.17835e+06 +en ||| in partnership and assist it in ||| 1 0.605812 8.48644e-07 8.89315e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| in partnership with ||| 0.00694444 0.605812 8.48644e-07 6.37818e-08 2.718 ||| 0-0 ||| 144 1.17835e+06 +en ||| in partnership ||| 0.00478469 0.605812 8.48644e-07 9.97447e-06 2.718 ||| 0-0 ||| 209 1.17835e+06 +en ||| in parts of ||| 0.011236 0.605812 8.48644e-07 1.46358e-06 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| in parts ||| 0.0138889 0.605812 1.69729e-06 2.69218e-05 2.718 ||| 0-0 ||| 144 1.17835e+06 +en ||| in passing , ||| 0.0185185 0.605812 8.48644e-07 1.40978e-06 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| in passing ||| 0.00534759 0.605812 8.48644e-07 1.18216e-05 2.718 ||| 0-0 ||| 187 1.17835e+06 +en ||| in past debates ||| 0.333333 0.605812 8.48644e-07 1.02337e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in past ||| 0.0263158 0.605812 8.48644e-07 5.91542e-05 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| in pay ||| 0.0243902 0.605812 8.48644e-07 6.61271e-05 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| in paying ||| 0.0444444 0.605812 1.69729e-06 1.56082e-05 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| in people ' ||| 0.142857 0.605812 8.48644e-07 1.39615e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in people 's minds and to do ||| 1 0.605812 8.48644e-07 1.41769e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in people 's minds and to ||| 1 0.605812 8.48644e-07 4.12684e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in people 's minds and ||| 0.2 0.605812 8.48644e-07 4.6443e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in people 's minds ||| 0.0555556 0.605812 8.48644e-07 3.70776e-11 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in people 's ||| 0.0526316 0.605812 8.48644e-07 7.74062e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in people ||| 0.0612245 0.605812 1.27297e-05 0.00040646 2.718 ||| 0-0 ||| 245 1.17835e+06 +en ||| in people ’ s ||| 0.2 0.605812 8.48644e-07 1.34701e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in people ’ ||| 0.75 0.605812 2.54593e-06 7.08093e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in per ||| 0.166667 0.605812 8.48644e-07 2.04569e-05 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in peregrine ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in perfectly with ||| 0.2 0.605812 8.48644e-07 1.12504e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in perfectly ||| 0.166667 0.605812 8.48644e-07 1.75939e-05 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in permanent use ||| 0.166667 0.605812 8.48644e-07 4.53526e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in permanent ||| 0.125 0.605812 1.69729e-06 9.32798e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in person , as ||| 0.2 0.605812 8.48644e-07 7.23794e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in person , ||| 0.030303 0.605812 8.48644e-07 7.09296e-06 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| in person ||| 0.0204082 0.605812 2.54593e-06 5.94774e-05 2.718 ||| 0-0 ||| 147 1.17835e+06 +en ||| in personnel ||| 0.111111 0.605812 1.69729e-06 2.67833e-06 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in piecemeal fashion ||| 0.333333 0.605812 8.48644e-07 1.82865e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in piecemeal ||| 0.5 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in place , ||| 0.0163399 0.605812 4.24322e-06 8.28797e-05 2.718 ||| 0-0 ||| 306 1.17835e+06 +en ||| in place around ||| 0.333333 0.605812 8.48644e-07 9.25714e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in place as ||| 0.0344828 0.605812 8.48644e-07 7.09186e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in place at ||| 0.0555556 0.605812 1.69729e-06 2.91016e-06 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| in place by ||| 0.04 0.605812 2.54593e-06 3.64872e-06 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| in place for ||| 0.00552486 0.605812 8.48644e-07 5.34141e-06 2.718 ||| 0-0 ||| 181 1.17835e+06 +en ||| in place here , ||| 1 0.605812 8.48644e-07 1.68063e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in place here and ||| 1 0.605812 8.48644e-07 1.76525e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in place here ||| 1 0.605812 1.69729e-06 1.40928e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in place in the ||| 0.06 0.605812 2.54593e-06 9.13247e-07 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| in place in ||| 0.197605 0.605812 2.80053e-05 1.48757e-05 2.718 ||| 0-2 ||| 167 1.17835e+06 +en ||| in place of ||| 0.00699301 0.605812 8.48644e-07 3.77819e-05 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| in place since ||| 0.0540541 0.605812 1.69729e-06 9.43089e-08 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| in place so ||| 0.0434783 0.605812 8.48644e-07 1.5774e-06 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in place to ||| 0.0116279 0.605812 1.69729e-06 6.17547e-05 2.718 ||| 0-0 ||| 172 1.17835e+06 +en ||| in place which ||| 0.037037 0.605812 8.48644e-07 5.90358e-06 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| in place within a ||| 0.25 0.605812 8.48644e-07 6.44144e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in place within ||| 0.230769 0.369196 2.54593e-06 3.57144e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| in place ||| 0.0447383 0.605812 0.000134934 0.000694981 2.718 ||| 0-0 ||| 3554 1.17835e+06 +en ||| in places . the reinforcement should be ||| 1 0.605812 8.48644e-07 1.1673e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in places . the reinforcement should ||| 1 0.605812 8.48644e-07 6.441e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in places . the reinforcement ||| 1 0.605812 8.48644e-07 1.45362e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in places . the ||| 1 0.605812 8.48644e-07 4.54257e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in places . ||| 0.166667 0.605812 8.48644e-07 7.39931e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in places lends ||| 1 0.605812 8.48644e-07 7.81703e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in places like ||| 0.0322581 0.605812 8.48644e-07 4.33821e-08 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| in places such as ||| 0.0555556 0.33639 8.48644e-07 9.091e-10 2.718 ||| 0-0 0-3 ||| 18 1.17835e+06 +en ||| in places ||| 0.0274725 0.605812 4.24322e-06 2.44282e-05 2.718 ||| 0-0 ||| 182 1.17835e+06 +en ||| in plain ||| 0.037037 0.605812 8.48644e-07 6.83436e-06 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| in plenary to ||| 0.0714286 0.605812 8.48644e-07 3.85711e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in plenary ||| 0.000943396 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-0 ||| 1060 1.17835e+06 +en ||| in point is ||| 0.0555556 0.605812 8.48644e-07 1.26607e-05 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in point of ||| 0.16129 0.605812 4.24322e-06 2.19612e-05 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| in point ||| 0.0316092 0.605812 9.33509e-06 0.000403966 2.718 ||| 0-0 ||| 348 1.17835e+06 +en ||| in pointing ||| 0.0833333 0.605812 8.48644e-07 1.04824e-05 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in polarised ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in policy ||| 0.0116279 0.605812 8.48644e-07 0.000181803 2.718 ||| 0-0 ||| 86 1.17835e+06 +en ||| in poor ||| 0.0545455 0.605812 2.54593e-06 1.36225e-05 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| in poorer ||| 0.333333 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in popularity ||| 0.142857 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in ports ||| 0.00952381 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| in position ||| 0.0666667 0.605812 8.48644e-07 0.000152065 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in positions ||| 0.010101 0.605812 8.48644e-07 1.56082e-05 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| in possession ||| 0.010989 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-0 ||| 91 1.17835e+06 +en ||| in potentially ||| 1 0.605812 1.69729e-06 7.29614e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in poverty ||| 0.00298507 0.605812 8.48644e-07 6.97289e-06 2.718 ||| 0-0 ||| 335 1.17835e+06 +en ||| in power in Croatia ||| 1 0.605812 8.48644e-07 6.34555e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in power in Sudan ||| 1 0.605812 8.48644e-07 5.31256e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in power in ||| 0.0235294 0.605812 1.69729e-06 1.47571e-06 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| in power there ||| 0.111111 0.605812 8.48644e-07 2.11334e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in power ||| 0.0103306 0.605812 4.24322e-06 6.89439e-05 2.718 ||| 0-0 ||| 484 1.17835e+06 +en ||| in practical terms , is ||| 1 0.605812 8.48644e-07 8.31638e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in practical terms , ||| 0.00680272 0.605812 8.48644e-07 2.65351e-09 2.718 ||| 0-0 ||| 147 1.17835e+06 +en ||| in practical terms ||| 0.00621118 0.605812 1.69729e-06 2.22508e-08 2.718 ||| 0-0 ||| 322 1.17835e+06 +en ||| in practical ||| 0.0454545 0.605812 1.69729e-06 2.02722e-05 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| in practice , therefore ||| 0.5 0.605812 8.48644e-07 4.85416e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in practice , ||| 0.00240385 0.605812 1.69729e-06 5.80433e-06 2.718 ||| 0-0 ||| 832 1.17835e+06 +en ||| in practice in ||| 0.0625 0.605812 1.69729e-06 1.04179e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| in practice within ||| 1 0.325032 8.48644e-07 3.58374e-09 2.718 ||| 0-0 0-1 0-2 ||| 1 1.17835e+06 +en ||| in practice ||| 0.00262985 0.605812 6.78915e-06 4.86717e-05 2.718 ||| 0-0 ||| 3042 1.17835e+06 +en ||| in praise of ||| 0.166667 0.605812 8.48644e-07 3.5146e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in praise ||| 0.142857 0.605812 8.48644e-07 6.46494e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in precisely ||| 0.0520833 0.605812 4.24322e-06 4.55316e-05 2.718 ||| 0-0 ||| 96 1.17835e+06 +en ||| in premium ||| 0.5 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in preparation ||| 0.00392157 0.605812 8.48644e-07 5.63373e-06 2.718 ||| 0-0 ||| 255 1.17835e+06 +en ||| in preparing ||| 0.00603622 0.605812 2.54593e-06 6.83436e-06 2.718 ||| 0-0 ||| 497 1.17835e+06 +en ||| in presenting ||| 0.00819672 0.605812 8.48644e-07 1.01592e-05 2.718 ||| 0-0 ||| 122 1.17835e+06 +en ||| in principle , received a ||| 0.5 0.605812 8.48644e-07 3.35288e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in principle , received ||| 0.5 0.605812 8.48644e-07 7.56418e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in principle , ||| 0.00619195 0.605812 5.09187e-06 8.44216e-06 2.718 ||| 0-0 ||| 969 1.17835e+06 +en ||| in principle ||| 0.00369251 0.605812 9.33509e-06 7.0791e-05 2.718 ||| 0-0 ||| 2979 1.17835e+06 +en ||| in prison ever ||| 1 0.605812 8.48644e-07 1.05858e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in prison ||| 0.00497512 0.605812 2.54593e-06 5.63373e-06 2.718 ||| 0-0 ||| 603 1.17835e+06 +en ||| in private ||| 0.010989 0.605812 8.48644e-07 1.09904e-05 2.718 ||| 0-0 ||| 91 1.17835e+06 +en ||| in producing this report ||| 0.0384615 0.605812 8.48644e-07 4.09718e-11 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in producing this ||| 0.0238095 0.605812 8.48644e-07 9.99557e-08 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| in producing ||| 0.0205761 0.605812 4.24322e-06 1.54697e-05 2.718 ||| 0-0 ||| 243 1.17835e+06 +en ||| in progress in ||| 0.0434783 0.605812 8.48644e-07 1.30175e-06 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| in progress on ||| 0.0526316 0.22993 8.48644e-07 2.34111e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| in progress ||| 0.00478469 0.605812 1.69729e-06 6.08166e-05 2.718 ||| 0-0 ||| 418 1.17835e+06 +en ||| in promoting ||| 0.00254777 0.605812 1.69729e-06 1.31146e-05 2.718 ||| 0-0 ||| 785 1.17835e+06 +en ||| in proposed ||| 0.5 0.605812 8.48644e-07 5.15348e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in providing a ||| 0.0243902 0.605812 8.48644e-07 1.87904e-06 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| in providing ||| 0.00514139 0.605812 1.69729e-06 4.23915e-05 2.718 ||| 0-0 ||| 389 1.17835e+06 +en ||| in public ||| 0.0022779 0.605812 8.48644e-07 7.46238e-05 2.718 ||| 0-0 ||| 439 1.17835e+06 +en ||| in publicity terms , ||| 1 0.605812 8.48644e-07 1.93422e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in publicity terms ||| 0.1 0.605812 8.48644e-07 1.62192e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in publicity ||| 0.333333 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in pure ||| 0.2 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in pursuing ||| 0.0189873 0.605812 2.54593e-06 1.13136e-05 2.718 ||| 0-0 ||| 158 1.17835e+06 +en ||| in pursuit of ||| 0.00869565 0.605812 8.48644e-07 6.22586e-07 2.718 ||| 0-0 ||| 115 1.17835e+06 +en ||| in pursuit ||| 0.0243902 0.605812 2.54593e-06 1.14522e-05 2.718 ||| 0-0 ||| 123 1.17835e+06 +en ||| in pushing ||| 0.0384615 0.605812 8.48644e-07 6.14169e-06 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in putting across ||| 0.25 0.605812 8.48644e-07 5.30168e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in putting forward ||| 0.030303 0.605812 8.48644e-07 2.8751e-08 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| in putting in place ||| 0.142857 0.605812 8.48644e-07 1.66459e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in putting in ||| 0.142857 0.605812 8.48644e-07 1.10604e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in putting ||| 0.0239521 0.605812 3.39458e-06 5.16733e-05 2.718 ||| 0-0 ||| 167 1.17835e+06 +en ||| in question , ||| 0.00549451 0.605812 1.69729e-06 4.55591e-05 2.718 ||| 0-0 ||| 364 1.17835e+06 +en ||| in question as well as ||| 0.2 0.605812 8.48644e-07 6.30765e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in question as well ||| 0.5 0.605812 8.48644e-07 6.18131e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in question as ||| 0.111111 0.605812 8.48644e-07 3.8984e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in question at ||| 0.333333 0.463849 8.48644e-07 1.5282e-05 2.718 ||| 0-0 0-2 ||| 3 1.17835e+06 +en ||| in question concerned the ||| 0.5 0.605812 8.48644e-07 3.77275e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in question concerned ||| 0.5 0.605812 8.48644e-07 6.14536e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in question in ||| 0.037037 0.605812 8.48644e-07 8.17719e-06 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| in question is ||| 0.00704225 0.605812 8.48644e-07 1.19733e-05 2.718 ||| 0-0 ||| 142 1.17835e+06 +en ||| in question to ||| 0.0416667 0.605812 1.69729e-06 3.39466e-05 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| in question will ||| 0.125 0.605812 8.48644e-07 3.30503e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in question ||| 0.0211882 0.605812 4.32809e-05 0.000382032 2.718 ||| 0-0 ||| 2407 1.17835e+06 +en ||| in questions ||| 0.0277778 0.605812 8.48644e-07 4.08676e-05 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| in quite a ||| 0.1875 0.605812 2.54593e-06 7.98489e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in quite ||| 0.302326 0.605812 1.10324e-05 0.000180141 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| in raising awareness ||| 0.0714286 0.605812 8.48644e-07 3.17567e-10 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in raising ||| 0.02 0.605812 1.69729e-06 1.0621e-05 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| in rates within ||| 1 0.369196 8.48644e-07 9.04133e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| in rather ||| 0.0625 0.605812 8.48644e-07 0.000141397 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in raw ||| 0.25 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in reaching ||| 0.021978 0.605812 3.39458e-06 1.24681e-05 2.718 ||| 0-0 ||| 182 1.17835e+06 +en ||| in reaction ||| 0.027027 0.605812 8.48644e-07 1.04824e-05 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| in readiness ||| 0.0666667 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in real cities ||| 0.5 0.605812 8.48644e-07 1.58672e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in real terms ||| 0.00578035 0.605812 8.48644e-07 9.11825e-08 2.718 ||| 0-0 ||| 173 1.17835e+06 +en ||| in real time ||| 0.0107527 0.605812 8.48644e-07 1.36383e-07 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| in real ||| 0.0666667 0.605812 5.09187e-06 8.30744e-05 2.718 ||| 0-0 ||| 90 1.17835e+06 +en ||| in realising ||| 0.0322581 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| in realistic terms ||| 0.2 0.605812 8.48644e-07 2.93974e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in realistic ||| 0.125 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in reality be ||| 0.142857 0.605812 8.48644e-07 5.59874e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in reality ||| 0.00290065 0.605812 3.39458e-06 3.08932e-05 2.718 ||| 0-0 ||| 1379 1.17835e+06 +en ||| in receipt of ||| 0.027027 0.605812 8.48644e-07 1.1799e-07 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| in receipt ||| 0.0408163 0.605812 1.69729e-06 2.17037e-06 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| in recent days ||| 0.00359712 0.605812 8.48644e-07 1.42959e-09 2.718 ||| 0-0 ||| 278 1.17835e+06 +en ||| in recent months ||| 0.00185185 0.605812 8.48644e-07 9.04435e-10 2.718 ||| 0-0 ||| 540 1.17835e+06 +en ||| in recent years ||| 0.0008 0.605812 1.69729e-06 3.81972e-09 2.718 ||| 0-0 ||| 2500 1.17835e+06 +en ||| in recent ||| 0.00161987 0.605812 5.09187e-06 2.24426e-05 2.718 ||| 0-0 ||| 3704 1.17835e+06 +en ||| in recognising ||| 0.0136986 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| in recognition of work ||| 0.5 0.605812 8.48644e-07 4.46537e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in recognition of ||| 0.015625 0.605812 8.48644e-07 7.0543e-07 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| in recognition ||| 0.011236 0.605812 8.48644e-07 1.2976e-05 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| in recruiting ||| 0.0434783 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in reducing ||| 0.00280112 0.605812 8.48644e-07 1.22834e-05 2.718 ||| 0-0 ||| 357 1.17835e+06 +en ||| in regard to neighbouring countries ||| 1 0.605812 8.48644e-07 6.47124e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in regard to neighbouring ||| 1 0.605812 8.48644e-07 1.7043e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in regard to underpinning ||| 1 0.605812 8.48644e-07 3.91152e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in regard to ||| 0.0320856 0.605812 1.01837e-05 2.79394e-05 2.718 ||| 0-0 ||| 374 1.17835e+06 +en ||| in regard ||| 0.0453401 0.605812 1.52756e-05 0.000314427 2.718 ||| 0-0 ||| 397 1.17835e+06 +en ||| in regarding the activities ||| 1 0.605812 8.48644e-07 1.3951e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in regarding the ||| 0.166667 0.605812 8.48644e-07 1.75484e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in regarding ||| 0.0714286 0.605812 8.48644e-07 2.85843e-05 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in regions such as ||| 0.05 0.605812 8.48644e-07 8.03323e-10 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in regions such ||| 1 0.605812 8.48644e-07 7.87232e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in regions ||| 0.00401606 0.605812 8.48644e-07 3.80508e-05 2.718 ||| 0-0 ||| 249 1.17835e+06 +en ||| in related ||| 1 0.605812 1.69729e-06 3.02467e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in relation to Cyprus or ||| 1 0.605812 8.48644e-07 1.84906e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in relation to Cyprus ||| 0.0714286 0.605812 8.48644e-07 1.6173e-10 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in relation to property ||| 0.5 0.605812 8.48644e-07 1.90682e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in relation to the fact ||| 0.0714286 0.605812 8.48644e-07 1.79535e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in relation to the ||| 0.00069808 0.605812 1.69729e-06 6.12895e-07 2.718 ||| 0-0 ||| 2865 1.17835e+06 +en ||| in relation to ||| 0.0219008 0.605812 0.000134934 9.98334e-06 2.718 ||| 0-0 ||| 7260 1.17835e+06 +en ||| in relation ||| 0.0552598 0.605812 0.000185004 0.000112351 2.718 ||| 0-0 ||| 3945 1.17835e+06 +en ||| in relations ||| 0.0047619 0.605812 1.69729e-06 2.50747e-05 2.718 ||| 0-0 ||| 420 1.17835e+06 +en ||| in relative terms ||| 0.0188679 0.605812 8.48644e-07 4.56166e-09 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| in relative ||| 0.0666667 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in reliance ||| 1 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in relief ||| 1 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in reply to ||| 0.00290698 0.605812 8.48644e-07 1.18175e-06 2.718 ||| 0-0 ||| 344 1.17835e+06 +en ||| in reply ||| 0.00268097 0.605812 8.48644e-07 1.32993e-05 2.718 ||| 0-0 ||| 373 1.17835e+06 +en ||| in representing ||| 0.0454545 0.605812 8.48644e-07 4.98724e-06 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| in reserve . ||| 0.0333333 0.605812 8.48644e-07 1.20291e-08 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| in reserve ||| 0.00704225 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-0 ||| 142 1.17835e+06 +en ||| in resorting ||| 0.333333 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in respect in particular of conclusions ||| 1 0.605812 8.48644e-07 3.60493e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in respect in particular of ||| 1 0.605812 8.48644e-07 1.43053e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in respect in particular ||| 1 0.605812 8.48644e-07 2.63139e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in respect in ||| 1 0.605812 8.48644e-07 4.2759e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in respect of international requests ||| 1 0.605812 8.48644e-07 1.09274e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in respect of international ||| 1 0.605812 8.48644e-07 8.40572e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in respect of such ||| 0.166667 0.605812 8.48644e-07 2.24685e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in respect of the ||| 0.00130039 0.605812 8.48644e-07 6.66721e-07 2.718 ||| 0-0 ||| 769 1.17835e+06 +en ||| in respect of this agreement ||| 0.25 0.605812 8.48644e-07 1.29326e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in respect of this ||| 0.0217391 0.605812 8.48644e-07 7.01715e-08 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| in respect of various important factors ||| 1 0.605812 8.48644e-07 1.92323e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in respect of various important ||| 1 0.605812 8.48644e-07 6.43221e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in respect of various ||| 0.2 0.605812 8.48644e-07 1.6768e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in respect of ||| 0.0439073 0.605812 7.55293e-05 1.08601e-05 2.718 ||| 0-0 ||| 2027 1.17835e+06 +en ||| in respect to ||| 0.0322581 0.605812 8.48644e-07 1.77509e-05 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| in respect ||| 0.0528302 0.605812 0.000106929 0.000199767 2.718 ||| 0-0 ||| 2385 1.17835e+06 +en ||| in response to a ||| 0.016129 0.605812 1.69729e-06 1.81882e-07 2.718 ||| 0-0 ||| 124 1.17835e+06 +en ||| in response to the ||| 0.00176367 0.605812 8.48644e-07 2.51909e-07 2.718 ||| 0-0 ||| 567 1.17835e+06 +en ||| in response to ||| 0.00462963 0.605812 5.94051e-06 4.1033e-06 2.718 ||| 0-0 ||| 1512 1.17835e+06 +en ||| in response ||| 0.011534 0.605812 1.69729e-05 4.61781e-05 2.718 ||| 0-0 ||| 1734 1.17835e+06 +en ||| in restraint ||| 0.5 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in return for ||| 0.00507614 0.605812 8.48644e-07 2.36371e-07 2.718 ||| 0-0 ||| 197 1.17835e+06 +en ||| in return in ||| 0.333333 0.605812 8.48644e-07 6.58287e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| in return ||| 0.00672646 0.605812 2.54593e-06 3.07546e-05 2.718 ||| 0-0 ||| 446 1.17835e+06 +en ||| in revolutionary France ||| 1 0.605812 8.48644e-07 1.48694e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in revolutionary ||| 1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in road traffic accidents across ||| 1 0.605812 8.48644e-07 1.21224e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in road traffic accidents ||| 0.111111 0.605812 8.48644e-07 1.18152e-14 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in road traffic ||| 0.0714286 0.605812 8.48644e-07 1.16982e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in road ||| 0.0294118 0.605812 8.48644e-07 4.11909e-05 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| in rough ||| 0.25 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in rural China ||| 0.333333 0.605812 8.48644e-07 1.36022e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in rural areas ||| 0.00134228 0.605812 8.48644e-07 1.18386e-09 2.718 ||| 0-0 ||| 745 1.17835e+06 +en ||| in rural ||| 0.0909091 0.605812 3.39458e-06 5.17195e-06 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| in saying that it is ||| 0.111111 0.605812 8.48644e-07 7.68035e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in saying that it ||| 0.0833333 0.605812 8.48644e-07 2.45057e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in saying that we ||| 0.0666667 0.605812 8.48644e-07 1.56438e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in saying that ||| 0.0084507 0.605812 2.54593e-06 1.37802e-06 2.718 ||| 0-0 ||| 355 1.17835e+06 +en ||| in saying this ||| 0.0151515 0.605812 8.48644e-07 5.29318e-07 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| in saying ||| 0.0361446 0.605812 1.52756e-05 8.192e-05 2.718 ||| 0-0 ||| 498 1.17835e+06 +en ||| in scaling ||| 1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in school ||| 0.0535714 0.605812 2.54593e-06 9.65122e-06 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| in scope ||| 0.0111111 0.605812 8.48644e-07 4.60396e-05 2.718 ||| 0-0 ||| 90 1.17835e+06 +en ||| in search ||| 0.00574713 0.605812 8.48644e-07 6.46494e-06 2.718 ||| 0-0 ||| 174 1.17835e+06 +en ||| in secondary schools ||| 0.166667 0.605812 8.48644e-07 2.9517e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in secondary ||| 0.25 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in section ||| 0.04 0.605812 8.48644e-07 9.65122e-06 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| in sectors such as ||| 0.0114943 0.605812 8.48644e-07 5.02077e-10 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| in sectors such ||| 0.166667 0.605812 8.48644e-07 4.9202e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in sectors ||| 0.00568182 0.605812 8.48644e-07 2.37817e-05 2.718 ||| 0-0 ||| 176 1.17835e+06 +en ||| in secular ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in seeing ||| 0.0714286 0.605812 5.09187e-06 2.46129e-05 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| in seeking ||| 0.0153846 0.605812 3.39458e-06 2.34123e-05 2.718 ||| 0-0 ||| 260 1.17835e+06 +en ||| in segregated ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in sensible stages ||| 1 0.605812 8.48644e-07 1.03199e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in sensible ||| 1 0.605812 8.48644e-07 6.83436e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in sensitive ||| 0.333333 0.605812 8.48644e-07 8.95855e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in separate ||| 0.2 0.605812 8.48644e-07 1.66241e-05 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in seriously ||| 0.5 0.605812 8.48644e-07 1.92563e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in service at ||| 0.333333 0.321886 8.48644e-07 5.72813e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| in setting up ||| 0.00793651 0.605812 8.48644e-07 1.49616e-07 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| in setting ||| 0.0106383 0.605812 1.69729e-06 4.38692e-05 2.718 ||| 0-0 ||| 188 1.17835e+06 +en ||| in several Member States ||| 0.00806452 0.605812 8.48644e-07 7.43769e-12 2.718 ||| 0-0 ||| 124 1.17835e+06 +en ||| in several Member ||| 1 0.605812 8.48644e-07 1.55861e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in several of ||| 0.0344828 0.605812 8.48644e-07 1.64433e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in several ||| 0.00634518 0.605812 4.24322e-06 3.02467e-05 2.718 ||| 0-0 ||| 788 1.17835e+06 +en ||| in shady deals ||| 1 0.605812 8.48644e-07 1.30038e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in shady ||| 0.333333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in shaping ||| 0.0144231 0.605812 2.54593e-06 3.00158e-06 2.718 ||| 0-0 ||| 208 1.17835e+06 +en ||| in sharp ||| 0.05 0.605812 8.48644e-07 6.14169e-06 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in shock ||| 0.0714286 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in shops ||| 0.0434783 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in short , ||| 0.00166806 0.605812 1.69729e-06 7.77032e-06 2.718 ||| 0-0 ||| 1199 1.17835e+06 +en ||| in short by a ||| 1 0.605812 8.48644e-07 1.51631e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in short by ||| 1 0.605812 8.48644e-07 3.42082e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in short ||| 0.00627451 0.605812 6.78915e-06 6.51573e-05 2.718 ||| 0-0 ||| 1275 1.17835e+06 +en ||| in showing ||| 0.0175439 0.605812 8.48644e-07 1.4269e-05 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| in sight ||| 0.0337079 0.605812 2.54593e-06 1.0621e-05 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| in simple terms ||| 0.0227273 0.605812 8.48644e-07 2.1896e-08 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| in simple ||| 0.0357143 0.605812 8.48644e-07 1.99489e-05 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| in simpler terms ||| 0.111111 0.605812 8.48644e-07 2.0274e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in simpler ||| 0.5 0.605812 1.69729e-06 1.84712e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in situ in ||| 0.2 0.605812 8.48644e-07 3.95368e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| in situations of ||| 0.0333333 0.605812 1.69729e-06 8.58566e-07 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| in situations that ||| 0.0714286 0.605812 8.48644e-07 2.65662e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in situations ||| 0.0222222 0.605812 3.39458e-06 1.57929e-05 2.718 ||| 0-0 ||| 180 1.17835e+06 +en ||| in six months , it may be ||| 1 0.605812 8.48644e-07 9.27039e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in six months , it may ||| 1 0.605812 8.48644e-07 5.11529e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in six months , it ||| 1 0.605812 8.48644e-07 6.82767e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in six months , ||| 0.125 0.605812 1.69729e-06 3.8394e-11 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in six months ||| 0.0408163 0.605812 1.69729e-06 3.21949e-10 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| in six ||| 0.0212766 0.605812 2.54593e-06 7.98881e-06 2.718 ||| 0-0 ||| 141 1.17835e+06 +en ||| in size ||| 0.030303 0.605812 1.69729e-06 1.72706e-05 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| in slightly ||| 0.2 0.605812 8.48644e-07 8.63531e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in small and ||| 0.00970874 0.605812 8.48644e-07 7.40959e-07 2.718 ||| 0-0 ||| 103 1.17835e+06 +en ||| in small businesses and trades , which ||| 0.333333 0.605812 8.48644e-07 4.39255e-20 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in small businesses and trades , ||| 0.333333 0.605812 8.48644e-07 5.17099e-18 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in small businesses and trades ||| 0.333333 0.605812 8.48644e-07 4.33609e-17 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in small businesses and ||| 0.2 0.605812 8.48644e-07 1.97095e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in small businesses ||| 0.0588235 0.605812 8.48644e-07 1.5735e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in small ||| 0.00961538 0.605812 1.69729e-06 5.91542e-05 2.718 ||| 0-0 ||| 208 1.17835e+06 +en ||| in so doing acting in the ||| 1 0.605812 8.48644e-07 2.98302e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in so doing acting in ||| 1 0.605812 8.48644e-07 4.85899e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in so doing acting ||| 1 0.605812 8.48644e-07 2.27008e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in so doing ||| 0.00395257 0.605812 1.69729e-06 3.84759e-07 2.718 ||| 0-0 ||| 506 1.17835e+06 +en ||| in so far as ||| 0.00531915 0.605812 8.48644e-07 7.30167e-09 2.718 ||| 0-0 ||| 188 1.17835e+06 +en ||| in so far ||| 0.025 0.605812 3.39458e-06 7.15541e-07 2.718 ||| 0-0 ||| 160 1.17835e+06 +en ||| in so ||| 0.0815047 0.605812 2.20648e-05 0.0010481 2.718 ||| 0-0 ||| 319 1.17835e+06 +en ||| in so-called ||| 0.0322581 0.605812 8.48644e-07 1.72706e-05 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| in social ||| 0.0123457 0.605812 8.48644e-07 4.7702e-05 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| in society 's ||| 1 0.605812 8.48644e-07 5.09182e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in society are now ||| 0.5 0.605812 8.48644e-07 8.35649e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in society are ||| 0.0714286 0.605812 8.48644e-07 4.05674e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in society ||| 0.00363636 0.605812 2.54593e-06 2.67371e-05 2.718 ||| 0-0 ||| 825 1.17835e+06 +en ||| in sole charge ||| 0.5 0.605812 8.48644e-07 2.25756e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in sole ||| 0.5 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in solving ||| 0.00613497 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 163 1.17835e+06 +en ||| in some cases dramatically , ||| 1 0.605812 8.48644e-07 5.84012e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in some cases dramatically ||| 1 0.605812 8.48644e-07 4.89718e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in some cases ||| 0.000737463 0.605812 8.48644e-07 6.44366e-08 2.718 ||| 0-0 ||| 1356 1.17835e+06 +en ||| in some countries and it is ||| 1 0.605812 8.48644e-07 1.33339e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in some countries and it ||| 1 0.605812 8.48644e-07 4.25445e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in some countries and ||| 0.04 0.605812 8.48644e-07 2.3924e-09 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| in some countries ||| 0.0013947 0.605812 8.48644e-07 1.90996e-07 2.718 ||| 0-0 ||| 717 1.17835e+06 +en ||| in some detail ||| 0.04 0.605812 1.69729e-06 2.57042e-08 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| in some kind of ||| 0.0625 0.605812 8.48644e-07 1.33449e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in some kind ||| 0.0526316 0.605812 8.48644e-07 2.45473e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in some of ||| 0.0103627 0.605812 3.39458e-06 2.73461e-05 2.718 ||| 0-0 ||| 386 1.17835e+06 +en ||| in some quarters in ||| 0.5 0.605812 8.48644e-07 1.23819e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| in some respects as to ||| 1 0.605812 8.48644e-07 9.2134e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in some respects as ||| 1 0.605812 8.48644e-07 1.03687e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in some respects ||| 0.0128205 0.605812 2.54593e-06 1.0161e-08 2.718 ||| 0-0 ||| 234 1.17835e+06 +en ||| in some than ||| 0.125 0.605812 8.48644e-07 1.53672e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in some way ||| 0.00547945 0.605812 1.69729e-06 1.08431e-06 2.718 ||| 0-0 ||| 365 1.17835e+06 +en ||| in some ways ||| 0.00609756 0.605812 8.48644e-07 4.84909e-08 2.718 ||| 0-0 ||| 164 1.17835e+06 +en ||| in some ||| 0.0112484 0.605812 5.17673e-05 0.000503018 2.718 ||| 0-0 ||| 5423 1.17835e+06 +en ||| in someone ' ||| 0.166667 0.605812 8.48644e-07 8.67636e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in someone else ||| 0.666667 0.605812 1.69729e-06 2.98061e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in someone else ’ ||| 1 0.605812 8.48644e-07 5.19252e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in someone ||| 0.444444 0.605812 3.39458e-06 2.52594e-05 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in something of a mess ||| 1 0.605812 8.48644e-07 2.2173e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in something of a ||| 0.111111 0.605812 8.48644e-07 6.15916e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in something of ||| 0.125 0.605812 8.48644e-07 1.38952e-05 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in something ||| 0.0384615 0.605812 1.69729e-06 0.000255596 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| in south-western ||| 0.333333 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in space ||| 0.0196078 0.605812 8.48644e-07 1.91177e-05 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| in special ||| 0.25 0.605812 8.48644e-07 3.95285e-05 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in specific ||| 0.0178571 0.605812 8.48644e-07 6.97751e-05 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| in specifically ||| 0.333333 0.605812 8.48644e-07 2.59059e-05 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in specifying ||| 0.1 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in spite of the fact ||| 0.00497512 0.605812 8.48644e-07 8.62294e-11 2.718 ||| 0-0 ||| 201 1.17835e+06 +en ||| in spite of the ||| 0.0013245 0.605812 8.48644e-07 2.94368e-08 2.718 ||| 0-0 ||| 755 1.17835e+06 +en ||| in spite of ||| 0.000520833 0.605812 8.48644e-07 4.79492e-07 2.718 ||| 0-0 ||| 1920 1.17835e+06 +en ||| in spite ||| 0.00150602 0.605812 2.54593e-06 8.82002e-06 2.718 ||| 0-0 ||| 1992 1.17835e+06 +en ||| in stages and ||| 0.25 0.605812 8.48644e-07 8.73418e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in stages ||| 0.027027 0.605812 8.48644e-07 6.97289e-06 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| in starting ||| 0.0227273 0.605812 8.48644e-07 2.11034e-05 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| in stating ||| 0.03125 0.605812 1.69729e-06 1.08057e-05 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| in step ||| 0.0545455 0.605812 2.54593e-06 6.81127e-05 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| in still ||| 0.1 0.605812 8.48644e-07 0.000347814 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in stocks and ||| 0.2 0.605812 8.48644e-07 1.27253e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in stocks ||| 0.0625 0.605812 8.48644e-07 1.01592e-05 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in stone ||| 0.0434783 0.605812 2.54593e-06 6.46494e-06 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| in stopping ||| 0.05 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in storage ||| 0.0833333 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in store ||| 0.102564 0.605812 3.39458e-06 6.97289e-06 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| in strength ||| 0.0588235 0.605812 8.48644e-07 1.14522e-05 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in strict ||| 0.030303 0.605812 8.48644e-07 6.83436e-06 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| in structuring ||| 0.125 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in substance ||| 0.00719424 0.605812 8.48644e-07 1.36225e-05 2.718 ||| 0-0 ||| 139 1.17835e+06 +en ||| in succession ||| 0.0344828 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in succinct form ||| 1 0.605812 8.48644e-07 8.40811e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in succinct ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in such a quick and ||| 1 0.605812 8.48644e-07 6.47144e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in such a quick ||| 1 0.605812 8.48644e-07 5.16645e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in such a way as to ||| 0.00362319 0.605812 8.48644e-07 8.27724e-11 2.718 ||| 0-0 ||| 276 1.17835e+06 +en ||| in such a way as ||| 0.00833333 0.605812 1.69729e-06 9.31511e-10 2.718 ||| 0-0 ||| 240 1.17835e+06 +en ||| in such a way so as to ||| 1 0.605812 8.48644e-07 1.87868e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in such a way so as ||| 0.333333 0.605812 8.48644e-07 2.11425e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in such a way so ||| 0.25 0.605812 8.48644e-07 2.0719e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in such a way that different levels ||| 1 0.605812 8.48644e-07 4.47685e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in such a way that different ||| 1 0.605812 8.48644e-07 3.38131e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in such a way that everybody ||| 1 0.605812 8.48644e-07 1.04418e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in such a way that they can ||| 0.0833333 0.605812 8.48644e-07 1.49074e-14 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in such a way that they ||| 0.0625 0.605812 8.48644e-07 5.01208e-12 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in such a way that ||| 0.00529801 0.605812 3.39458e-06 1.53556e-09 2.718 ||| 0-0 ||| 755 1.17835e+06 +en ||| in such a way ||| 0.0120594 0.605812 1.10324e-05 9.12852e-08 2.718 ||| 0-0 ||| 1078 1.17835e+06 +en ||| in such a ||| 0.0218839 0.605812 1.95188e-05 4.23479e-05 2.718 ||| 0-0 ||| 1051 1.17835e+06 +en ||| in such activities ||| 0.1 0.605812 8.48644e-07 7.59526e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in such an appalling ||| 1 0.605812 8.48644e-07 3.99159e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in such an ||| 0.0105263 0.605812 8.48644e-07 4.24637e-06 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| in such cases they are ||| 0.333333 0.605812 8.48644e-07 6.06091e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in such cases they ||| 0.333333 0.605812 8.48644e-07 3.99462e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in such cases ||| 0.00651466 0.605812 1.69729e-06 1.22384e-07 2.718 ||| 0-0 ||| 307 1.17835e+06 +en ||| in such difficult ||| 1 0.605812 8.48644e-07 1.18658e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in such schemes ||| 0.2 0.605812 8.48644e-07 1.7579e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in such ||| 0.0995298 0.605812 0.000215556 0.000955379 2.718 ||| 0-0 ||| 2552 1.17835e+06 +en ||| in sufficient ||| 0.0243902 0.605812 8.48644e-07 2.24426e-05 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| in sugar ||| 0.0136986 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| in suitable ||| 1 0.605812 8.48644e-07 1.13136e-05 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in suitably ||| 1 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in supply ||| 0.0232558 0.605812 8.48644e-07 2.37817e-05 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| in supplying ||| 0.0384615 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in support at ||| 1 0.321886 8.48644e-07 2.92743e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| in support in the ||| 1 0.404264 8.48644e-07 2.08858e-07 2.718 ||| 0-0 0-2 0-3 ||| 1 1.17835e+06 +en ||| in support of ||| 0.00273224 0.605812 1.69729e-06 8.58315e-06 2.718 ||| 0-0 ||| 732 1.17835e+06 +en ||| in support ||| 0.004004 0.605812 3.39458e-06 0.000157883 2.718 ||| 0-0 ||| 999 1.17835e+06 +en ||| in supporting ||| 0.00460829 0.605812 1.69729e-06 1.4777e-05 2.718 ||| 0-0 ||| 434 1.17835e+06 +en ||| in surprise ||| 1 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in surviving ||| 0.333333 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in sympathy ||| 0.0454545 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| in tackling its responsibilities here ||| 1 0.605812 8.48644e-07 6.50902e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in tackling its responsibilities ||| 1 0.605812 8.48644e-07 3.20989e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in tackling its ||| 0.5 0.605812 8.48644e-07 1.34869e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in tackling ||| 0.0105634 0.605812 2.54593e-06 9.46651e-06 2.718 ||| 0-0 ||| 284 1.17835e+06 +en ||| in taking action ||| 0.0833333 0.605812 8.48644e-07 5.93285e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in taking comfort ||| 1 0.605812 8.48644e-07 9.81285e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in taking part in ||| 0.166667 0.605812 8.48644e-07 5.00817e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| in taking up ||| 0.0416667 0.605812 8.48644e-07 6.69334e-07 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in taking ||| 0.0394366 0.605812 1.1881e-05 0.000196257 2.718 ||| 0-0 ||| 355 1.17835e+06 +en ||| in tandem , ||| 0.111111 0.605812 8.48644e-07 1.59702e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in tandem ||| 0.0214286 0.605812 2.54593e-06 1.33917e-06 2.718 ||| 0-0 ||| 140 1.17835e+06 +en ||| in target ||| 0.5 0.605812 8.48644e-07 1.74553e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in task ||| 0.25 0.605812 8.48644e-07 5.81844e-05 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in technical sciences specialising ||| 0.5 0.605812 8.48644e-07 4.27979e-18 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in technical sciences ||| 0.5 0.605812 8.48644e-07 6.11398e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in technical ||| 0.0526316 0.605812 8.48644e-07 1.5285e-05 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in term of ||| 0.333333 0.605812 8.48644e-07 2.74641e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in term ||| 0.5 0.605812 8.48644e-07 5.05189e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in terms in ||| 0.333333 0.605812 8.48644e-07 1.08489e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| in terms of a ||| 0.00584795 0.605812 8.48644e-07 1.22137e-06 2.718 ||| 0-0 ||| 171 1.17835e+06 +en ||| in terms of both our ||| 0.333333 0.605812 8.48644e-07 6.29612e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in terms of both ||| 0.0326087 0.605812 5.09187e-06 4.56439e-08 2.718 ||| 0-0 ||| 184 1.17835e+06 +en ||| in terms of certain ||| 0.333333 0.605812 8.48644e-07 7.85302e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in terms of dealing ||| 0.333333 0.605812 8.48644e-07 2.84637e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in terms of greater ||| 0.133333 0.605812 1.69729e-06 3.62892e-09 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in terms of its ||| 0.0128617 0.605812 3.39458e-06 3.92568e-08 2.718 ||| 0-0 ||| 311 1.17835e+06 +en ||| in terms of minimizing the ||| 1 0.605812 8.48644e-07 6.76647e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in terms of minimizing ||| 1 0.605812 8.48644e-07 1.10218e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in terms of putting it ||| 0.5 0.605812 8.48644e-07 5.48317e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in terms of putting ||| 0.333333 0.605812 8.48644e-07 3.08334e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in terms of the criminal law ||| 0.333333 0.605812 8.48644e-07 1.24363e-14 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in terms of the criminal ||| 1 0.605812 8.48644e-07 7.05404e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in terms of the ||| 0.00624675 0.605812 1.01837e-05 1.69162e-06 2.718 ||| 0-0 ||| 1921 1.17835e+06 +en ||| in terms of their estimate ||| 1 0.605812 8.48644e-07 2.07599e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in terms of their ||| 0.00934579 0.605812 1.69729e-06 3.19384e-08 2.718 ||| 0-0 ||| 214 1.17835e+06 +en ||| in terms of whose role is more ||| 1 0.605812 8.48644e-07 3.45004e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in terms of whose role is ||| 1 0.605812 8.48644e-07 1.51072e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in terms of whose role ||| 1 0.605812 8.48644e-07 4.82026e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in terms of whose ||| 1 0.605812 8.48644e-07 2.17129e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in terms of ||| 0.0306716 0.605812 0.000291085 2.75544e-05 2.718 ||| 0-0 ||| 11183 1.17835e+06 +en ||| in terms ||| 0.0430134 0.605812 0.00045063 0.000506851 2.718 ||| 0-0 ||| 12345 1.17835e+06 +en ||| in that MEP ||| 1 0.605812 8.48644e-07 8.93308e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in that action is targeted ||| 1 0.605812 8.48644e-07 2.06806e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in that action is ||| 1 0.605812 8.48644e-07 7.35963e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in that action ||| 0.25 0.605812 8.48644e-07 2.34824e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in that conducted in ||| 1 0.605812 8.48644e-07 2.17018e-07 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| in that connection to ||| 0.5 0.605812 8.48644e-07 1.05331e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in that connection ||| 0.00588235 0.605812 8.48644e-07 1.18538e-06 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| in that context ||| 0.00240385 0.605812 8.48644e-07 1.04245e-06 2.718 ||| 0-0 ||| 416 1.17835e+06 +en ||| in that country ||| 0.00300903 0.605812 2.54593e-06 2.79567e-06 2.718 ||| 0-0 ||| 997 1.17835e+06 +en ||| in that it covers ||| 0.25 0.605812 8.48644e-07 1.83724e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in that it ||| 0.0047619 0.605812 8.48644e-07 0.000138138 2.718 ||| 0-0 ||| 210 1.17835e+06 +en ||| in that its subject matter is ||| 1 0.303781 8.48644e-07 1.20696e-14 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| in that its subject matter ||| 1 0.303781 8.48644e-07 3.85106e-13 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| in that its subject ||| 1 0.303781 8.48644e-07 3.71186e-10 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| in that its ||| 0.0714286 0.303781 8.48644e-07 6.87637e-07 2.718 ||| 0-0 0-1 ||| 14 1.17835e+06 +en ||| in that of ||| 0.0222222 0.605812 8.48644e-07 0.000422294 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| in that part of the world ||| 0.0136986 0.605812 8.48644e-07 7.0409e-12 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| in that part of the ||| 0.0123457 0.605812 8.48644e-07 3.09082e-08 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| in that part of ||| 0.0285714 0.605812 8.48644e-07 5.03459e-07 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| in that part ||| 0.00934579 0.605812 8.48644e-07 9.26089e-06 2.718 ||| 0-0 ||| 107 1.17835e+06 +en ||| in that policy ||| 0.166667 0.605812 8.48644e-07 3.05822e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in that respect ||| 0.00130719 0.605812 8.48644e-07 3.36039e-06 2.718 ||| 0-0 ||| 765 1.17835e+06 +en ||| in that there is ||| 0.0625 0.605812 8.48644e-07 7.46261e-07 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in that there ||| 0.111111 0.605812 8.48644e-07 2.38109e-05 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in that way , ||| 0.0101351 0.605812 2.54593e-06 1.99686e-06 2.718 ||| 0-0 ||| 296 1.17835e+06 +en ||| in that way ||| 0.00590842 0.605812 3.39458e-06 1.67445e-05 2.718 ||| 0-0 ||| 677 1.17835e+06 +en ||| in that we are ||| 0.0769231 0.605812 8.48644e-07 1.33798e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in that we ||| 0.0540541 0.605812 1.69729e-06 8.81835e-05 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| in that ||| 0.00960804 0.605812 7.46807e-05 0.0077679 2.718 ||| 0-0 ||| 9159 1.17835e+06 +en ||| in the Baltic , ||| 0.0322581 0.605812 8.48644e-07 5.00361e-08 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| in the Baltic ||| 0.00636943 0.605812 8.48644e-07 4.19574e-07 2.718 ||| 0-0 ||| 157 1.17835e+06 +en ||| in the Central and ||| 0.25 0.605812 8.48644e-07 7.91882e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in the Central ||| 0.2 0.605812 8.48644e-07 6.32195e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the Chamber of ||| 0.111111 0.605812 8.48644e-07 4.05335e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in the Chamber ||| 0.00126904 0.605812 8.48644e-07 7.45594e-07 2.718 ||| 0-0 ||| 788 1.17835e+06 +en ||| in the Chambers of ||| 0.5 0.605812 8.48644e-07 1.07884e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the Chambers ||| 0.5 0.605812 8.48644e-07 1.98447e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the Commission have , in addition ||| 1 0.605812 8.48644e-07 4.98443e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the Commission have , in ||| 1 0.605812 8.48644e-07 5.0552e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the Commission have , ||| 0.5 0.605812 8.48644e-07 2.36175e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the Commission have ||| 0.0454545 0.605812 8.48644e-07 1.98042e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| in the Commission ||| 0.001001 0.605812 1.69729e-06 1.6559e-05 2.718 ||| 0-0 ||| 1998 1.17835e+06 +en ||| in the Commission ’ s ||| 0.111111 0.605812 8.48644e-07 5.48764e-11 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in the Commission ’ ||| 0.047619 0.605812 8.48644e-07 2.88474e-08 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| in the Council ||| 0.000295334 0.605812 8.48644e-07 9.80328e-06 2.718 ||| 0-0 ||| 3386 1.17835e+06 +en ||| in the EU , that the ||| 1 0.605812 8.48644e-07 1.72755e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the EU , that ||| 0.333333 0.605812 8.48644e-07 2.81397e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in the EU , ||| 0.00106838 0.605812 8.48644e-07 1.67283e-06 2.718 ||| 0-0 ||| 936 1.17835e+06 +en ||| in the EU in ||| 0.012987 0.605812 8.48644e-07 3.00249e-07 2.718 ||| 0-3 ||| 77 1.17835e+06 +en ||| in the EU ||| 0.00123326 0.605812 5.94051e-06 1.40274e-05 2.718 ||| 0-0 ||| 5676 1.17835e+06 +en ||| in the Economic ||| 0.2 0.605812 8.48644e-07 8.76002e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the European Parliament , time and ||| 1 0.605812 8.48644e-07 1.33441e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the European Parliament , time ||| 1 0.605812 8.48644e-07 1.06532e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the European Parliament , ||| 0.00107643 0.605812 8.48644e-07 6.48914e-09 2.718 ||| 0-0 ||| 929 1.17835e+06 +en ||| in the European Parliament ||| 0.00134589 0.605812 5.09187e-06 5.44141e-08 2.718 ||| 0-0 ||| 4458 1.17835e+06 +en ||| in the European Union , ||| 0.00058309 0.605812 8.48644e-07 6.30148e-09 2.718 ||| 0-0 ||| 1715 1.17835e+06 +en ||| in the European Union and elsewhere ||| 0.5 0.605812 8.48644e-07 2.45555e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the European Union and ||| 0.00126582 0.605812 8.48644e-07 6.61875e-10 2.718 ||| 0-0 ||| 790 1.17835e+06 +en ||| in the European Union have ||| 0.010101 0.605812 8.48644e-07 6.31962e-10 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| in the European Union ||| 0.000395687 0.605812 3.39458e-06 5.28405e-08 2.718 ||| 0-0 ||| 10109 1.17835e+06 +en ||| in the European ||| 0.0164557 0.605812 1.10324e-05 9.47981e-05 2.718 ||| 0-0 ||| 790 1.17835e+06 +en ||| in the Federal Republic of ||| 0.0408163 0.605812 1.69729e-06 7.61351e-13 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| in the Federal Republic ||| 0.0327869 0.605812 1.69729e-06 1.40047e-11 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| in the Federal ||| 0.4 0.605812 1.69729e-06 2.94836e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the Former Yugoslav Republic of ||| 0.037037 0.605812 1.69729e-06 1.23134e-18 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| in the Former Yugoslav Republic ||| 0.0363636 0.605812 1.69729e-06 2.26499e-17 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| in the Former Yugoslav ||| 1 0.605812 1.69729e-06 4.7684e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the Former ||| 0.0338983 0.605812 1.69729e-06 8.22138e-08 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| in the German version of ||| 0.2 0.605812 8.48644e-07 1.378e-12 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the German version ||| 0.0294118 0.605812 8.48644e-07 2.53476e-11 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| in the German ||| 0.0666667 0.605812 8.48644e-07 6.83225e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in the House on ||| 0.0434783 0.417871 8.48644e-07 5.88832e-07 2.718 ||| 0-0 0-3 ||| 23 1.17835e+06 +en ||| in the House ||| 0.000747384 0.605812 8.48644e-07 7.09023e-06 2.718 ||| 0-0 ||| 1338 1.17835e+06 +en ||| in the Member States ||| 0.000272035 0.605812 8.48644e-07 6.97119e-09 2.718 ||| 0-0 ||| 3676 1.17835e+06 +en ||| in the Member ||| 0.0126582 0.605812 8.48644e-07 1.46085e-05 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| in the Netherlands ||| 0.00109051 0.605812 8.48644e-07 4.39418e-07 2.718 ||| 0-0 ||| 917 1.17835e+06 +en ||| in the North ||| 0.00840336 0.605812 8.48644e-07 5.92506e-07 2.718 ||| 0-0 ||| 119 1.17835e+06 +en ||| in the Republic of ||| 0.00469484 0.605812 8.48644e-07 7.32068e-08 2.718 ||| 0-0 ||| 213 1.17835e+06 +en ||| in the Republic ||| 0.00448431 0.605812 8.48644e-07 1.3466e-06 2.718 ||| 0-0 ||| 223 1.17835e+06 +en ||| in the States of ||| 0.111111 0.605812 8.48644e-07 7.35459e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in the States ||| 0.0454545 0.605812 8.48644e-07 1.35284e-05 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| in the Treaty ||| 0.000661813 0.605812 8.48644e-07 2.42672e-06 2.718 ||| 0-0 ||| 1511 1.17835e+06 +en ||| in the UK , but ||| 0.125 0.605812 8.48644e-07 3.99708e-11 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in the UK , ||| 0.00371747 0.605812 8.48644e-07 5.84882e-08 2.718 ||| 0-0 ||| 269 1.17835e+06 +en ||| in the UK ||| 0.00180995 0.605812 1.69729e-06 4.90448e-07 2.718 ||| 0-0 ||| 1105 1.17835e+06 +en ||| in the Union 's ||| 0.05 0.605812 8.48644e-07 3.00934e-08 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in the Union ||| 0.00057971 0.605812 8.48644e-07 1.58021e-05 2.718 ||| 0-0 ||| 1725 1.17835e+06 +en ||| in the United States ||| 0.00121877 0.605812 1.69729e-06 1.65588e-09 2.718 ||| 0-0 ||| 1641 1.17835e+06 +en ||| in the United ||| 0.00288739 0.605812 2.54593e-06 3.46999e-06 2.718 ||| 0-0 ||| 1039 1.17835e+06 +en ||| in the West African State of ||| 1 0.605812 8.48644e-07 4.74319e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the West African State ||| 1 0.605812 8.48644e-07 8.72487e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the West African ||| 1 0.605812 8.48644e-07 7.25862e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the West ||| 0.00416667 0.605812 8.48644e-07 4.19574e-07 2.718 ||| 0-0 ||| 240 1.17835e+06 +en ||| in the accounts any charge ||| 1 0.605812 8.48644e-07 6.67644e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the accounts any ||| 1 0.605812 8.48644e-07 1.32469e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the accounts ||| 0.025641 0.605812 8.48644e-07 8.76002e-07 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| in the action ||| 0.0333333 0.605812 8.48644e-07 8.57008e-06 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| in the air transport sector in the ||| 1 0.605812 8.48644e-07 3.9223e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| in the air transport sector in ||| 0.2 0.605812 8.48644e-07 6.38896e-16 2.718 ||| 0-5 ||| 5 1.17835e+06 +en ||| in the amount ||| 0.0140845 0.605812 8.48644e-07 6.89745e-06 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| in the area of ||| 0.0014218 0.605812 5.09187e-06 6.40059e-07 2.718 ||| 0-0 ||| 4220 1.17835e+06 +en ||| in the area ||| 0.00222132 0.605812 9.33509e-06 1.17736e-05 2.718 ||| 0-0 ||| 4952 1.17835e+06 +en ||| in the areas of ||| 0.00228833 0.605812 1.69729e-06 3.5278e-07 2.718 ||| 0-0 ||| 874 1.17835e+06 +en ||| in the areas ||| 0.00164204 0.605812 1.69729e-06 6.48922e-06 2.718 ||| 0-0 ||| 1218 1.17835e+06 +en ||| in the articles of ||| 0.166667 0.0116562 8.48644e-07 1.41567e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| in the autumn of ||| 0.0246914 0.605812 1.69729e-06 6.16478e-09 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| in the autumn ||| 0.00630915 0.605812 1.69729e-06 1.13398e-07 2.718 ||| 0-0 ||| 317 1.17835e+06 +en ||| in the back of our ||| 0.2 0.605812 8.48644e-07 1.4299e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the back of ||| 0.0769231 0.605812 8.48644e-07 1.03661e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in the back ||| 0.0487805 0.605812 1.69729e-06 1.90679e-05 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| in the balance ||| 0.0306122 0.605812 2.54593e-06 1.53088e-06 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| in the banking sector with ||| 1 0.329678 8.48644e-07 2.63927e-13 2.718 ||| 0-0 0-4 ||| 1 1.17835e+06 +en ||| in the best ||| 0.0071599 0.605812 2.54593e-06 3.92642e-06 2.718 ||| 0-0 ||| 419 1.17835e+06 +en ||| in the body of the text ||| 0.111111 0.605812 8.48644e-07 6.99771e-13 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in the body of the ||| 0.0666667 0.605812 8.48644e-07 8.0992e-09 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in the body of ||| 0.0555556 0.605812 8.48644e-07 1.31926e-07 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in the body ||| 0.0425532 0.605812 1.69729e-06 2.42672e-06 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| in the bosom ||| 0.25 0.605812 8.48644e-07 1.98447e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in the bud in ||| 0.5 0.605812 8.48644e-07 4.36902e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| in the budget , ||| 0.00917431 0.605812 8.48644e-07 4.17193e-07 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| in the budget ||| 0.00269179 0.605812 1.69729e-06 3.49834e-06 2.718 ||| 0-0 ||| 743 1.17835e+06 +en ||| in the building of ||| 0.0185185 0.605812 8.48644e-07 8.98517e-08 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| in the building ||| 0.00943396 0.605812 8.48644e-07 1.65278e-06 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| in the careful drafting of ||| 1 0.605812 8.48644e-07 6.31829e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the careful drafting ||| 1 0.605812 8.48644e-07 1.16222e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the careful ||| 0.5 0.605812 8.48644e-07 7.85283e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the case in point , are ||| 1 0.605812 8.48644e-07 1.02764e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the case in point , ||| 0.0625 0.605812 8.48644e-07 6.77297e-11 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in the case in point ||| 0.04 0.605812 8.48644e-07 5.67941e-10 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| in the case in ||| 0.0434783 0.605812 8.48644e-07 6.49224e-07 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in the case of Slovakia ||| 0.111111 0.605812 8.48644e-07 7.74995e-12 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in the case of Swedish customs officials ||| 1 0.605812 8.48644e-07 4.45332e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the case of Swedish customs ||| 1 0.605812 8.48644e-07 3.18094e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the case of Swedish ||| 1 0.605812 8.48644e-07 3.14945e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the case of the ||| 0.00129032 0.605812 8.48644e-07 1.01231e-07 2.718 ||| 0-0 ||| 775 1.17835e+06 +en ||| in the case of ||| 0.00962052 0.605812 3.05512e-05 1.64893e-06 2.718 ||| 0-0 ||| 3742 1.17835e+06 +en ||| in the case ||| 0.0118911 0.605812 4.41295e-05 3.03312e-05 2.718 ||| 0-0 ||| 4373 1.17835e+06 +en ||| in the cement of ||| 1 0.605812 8.48644e-07 1.69532e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the cement ||| 1 0.605812 8.48644e-07 3.11845e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the chain ||| 0.0135135 0.605812 8.48644e-07 2.94836e-07 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| in the city of ||| 0.047619 0.605812 1.69729e-06 3.15945e-08 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| in the city ||| 0.0215054 0.605812 1.69729e-06 5.81166e-07 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| in the clear ||| 0.142857 0.605812 8.48644e-07 9.43757e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in the cloak of ||| 1 0.605812 8.48644e-07 2.15767e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the cloak ||| 1 0.605812 8.48644e-07 3.96894e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the coming ||| 0.000841043 0.605812 8.48644e-07 5.50832e-06 2.718 ||| 0-0 ||| 1189 1.17835e+06 +en ||| in the common foreign and security policy ||| 1 0.605812 8.48644e-07 7.20307e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the common foreign and security ||| 0.25 0.605812 8.48644e-07 1.82958e-16 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in the common foreign and ||| 0.142857 0.605812 8.48644e-07 2.23939e-12 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in the common foreign ||| 0.2 0.605812 8.48644e-07 1.78781e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the common ||| 0.0857143 0.605812 2.54593e-06 6.54875e-06 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| in the company establishing its business ||| 1 0.605812 8.48644e-07 8.92422e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the company establishing its ||| 1 0.605812 8.48644e-07 7.14509e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the company establishing ||| 1 0.605812 8.48644e-07 5.01515e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the company ||| 0.016129 0.605812 8.48644e-07 1.07161e-06 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| in the conciliation procedure ||| 0.0121951 0.605812 8.48644e-07 1.42315e-11 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| in the conciliation ||| 0.0322581 0.605812 8.48644e-07 1.41748e-07 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| in the conditions ||| 0.0188679 0.605812 8.48644e-07 3.38777e-06 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| in the context of a ||| 0.00483092 0.605812 8.48644e-07 9.16784e-09 2.718 ||| 0-0 ||| 207 1.17835e+06 +en ||| in the context of our ||| 0.0151515 0.605812 8.48644e-07 2.85299e-10 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| in the context of quite a ||| 1 0.605812 8.48644e-07 3.57637e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the context of quite ||| 1 0.605812 8.48644e-07 8.06838e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the context of the ||| 0.000567537 0.605812 8.48644e-07 1.26976e-08 2.718 ||| 0-0 ||| 1762 1.17835e+06 +en ||| in the context of ||| 0.00292141 0.605812 8.48644e-06 2.06829e-07 2.718 ||| 0-0 ||| 3423 1.17835e+06 +en ||| in the context ||| 0.00267315 0.605812 9.33509e-06 3.80451e-06 2.718 ||| 0-0 ||| 4115 1.17835e+06 +en ||| in the countries of ||| 0.00221729 0.605812 8.48644e-07 5.85192e-07 2.718 ||| 0-0 ||| 451 1.17835e+06 +en ||| in the countries ||| 0.000818331 0.605812 8.48644e-07 1.07643e-05 2.718 ||| 0-0 ||| 1222 1.17835e+06 +en ||| in the country is ||| 0.0294118 0.605812 8.48644e-07 3.19774e-07 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| in the country of ||| 0.00657895 0.605812 8.48644e-07 5.54677e-07 2.718 ||| 0-0 ||| 152 1.17835e+06 +en ||| in the country where they ||| 0.0909091 0.605812 8.48644e-07 1.00907e-11 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in the country where ||| 0.0188679 0.605812 8.48644e-07 3.09151e-09 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| in the country ||| 0.00253004 0.605812 3.39458e-06 1.0203e-05 2.718 ||| 0-0 ||| 1581 1.17835e+06 +en ||| in the course of ||| 0.0343866 0.605812 3.13998e-05 1.94453e-06 2.718 ||| 0-0 ||| 1076 1.17835e+06 +en ||| in the course ||| 0.0321616 0.605812 3.64917e-05 3.57687e-05 2.718 ||| 0-0 ||| 1337 1.17835e+06 +en ||| in the curve of ||| 0.5 0.605812 8.48644e-07 2.15767e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the curve ||| 0.5 0.605812 8.48644e-07 3.96894e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the day in ||| 0.5 0.605812 8.48644e-07 1.55464e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| in the day ||| 0.0638298 0.605812 2.54593e-06 7.26316e-06 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| in the days of ||| 0.0344828 0.605812 8.48644e-07 9.81742e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in the days ||| 0.00900901 0.605812 8.48644e-07 1.80587e-06 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| in the debate in ||| 0.0169492 0.605812 8.48644e-07 1.20087e-07 2.718 ||| 0-3 ||| 59 1.17835e+06 +en ||| in the debate ||| 0.0017311 0.605812 2.54593e-06 5.61038e-06 2.718 ||| 0-0 ||| 1733 1.17835e+06 +en ||| in the direction of ||| 0.00257069 0.605812 8.48644e-07 1.39786e-07 2.718 ||| 0-0 ||| 389 1.17835e+06 +en ||| in the direction ||| 0.00176367 0.605812 8.48644e-07 2.57131e-06 2.718 ||| 0-0 ||| 567 1.17835e+06 +en ||| in the directive ||| 0.00179211 0.605812 8.48644e-07 3.16381e-06 2.718 ||| 0-0 ||| 558 1.17835e+06 +en ||| in the discussions , anxiety that the ||| 0.5 0.605812 8.48644e-07 5.78176e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the discussions , anxiety that ||| 0.5 0.605812 8.48644e-07 9.4178e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the discussions , anxiety ||| 0.5 0.605812 8.48644e-07 5.59864e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the discussions , ||| 0.0833333 0.605812 8.48644e-07 1.39966e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in the discussions ||| 0.003861 0.605812 8.48644e-07 1.17367e-06 2.718 ||| 0-0 ||| 259 1.17835e+06 +en ||| in the district ||| 0.125 0.605812 8.48644e-07 3.96894e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in the door ||| 0.0714286 0.605812 8.48644e-07 1.28424e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in the draft ||| 0.00109769 0.605812 8.48644e-07 1.48835e-06 2.718 ||| 0-0 ||| 911 1.17835e+06 +en ||| in the end , once ||| 1 0.605812 8.48644e-07 6.01931e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the end , ||| 0.00344828 0.605812 1.69729e-06 1.47099e-06 2.718 ||| 0-0 ||| 580 1.17835e+06 +en ||| in the end it is up to ||| 0.25 0.605812 8.48644e-07 2.08341e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in the end it is up ||| 0.2 0.605812 8.48644e-07 2.34465e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the end it is ||| 0.0588235 0.605812 8.48644e-07 6.87479e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in the end it ||| 0.0263158 0.605812 8.48644e-07 2.19354e-07 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| in the end ||| 0.00199601 0.605812 2.54593e-06 1.23349e-05 2.718 ||| 0-0 ||| 1503 1.17835e+06 +en ||| in the endless ||| 1 0.605812 8.48644e-07 1.02058e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the energy ||| 0.0344828 0.605812 8.48644e-07 2.52028e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in the environment ||| 0.00694444 0.605812 8.48644e-07 1.58191e-06 2.718 ||| 0-0 ||| 144 1.17835e+06 +en ||| in the euro ||| 0.00564972 0.605812 8.48644e-07 1.66412e-06 2.718 ||| 0-0 ||| 177 1.17835e+06 +en ||| in the event of ||| 0.000633312 0.605812 8.48644e-07 1.60901e-07 2.718 ||| 0-0 ||| 1579 1.17835e+06 +en ||| in the event ||| 0.00113058 0.605812 1.69729e-06 2.9597e-06 2.718 ||| 0-0 ||| 1769 1.17835e+06 +en ||| in the evolution ||| 0.0434783 0.605812 8.48644e-07 8.22138e-08 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in the explanatory statement ||| 0.00628931 0.605812 8.48644e-07 1.52067e-11 2.718 ||| 0-0 ||| 159 1.17835e+06 +en ||| in the explanatory statements , ||| 1 0.605812 8.48644e-07 7.78941e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the explanatory statements ||| 0.142857 0.605812 8.48644e-07 6.53174e-12 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in the explanatory ||| 0.00930233 0.605812 1.69729e-06 2.04117e-07 2.718 ||| 0-0 ||| 215 1.17835e+06 +en ||| in the extreme ||| 0.0238095 0.605812 8.48644e-07 5.21632e-07 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| in the eyes ||| 0.00465116 0.605812 1.69729e-06 1.65278e-06 2.718 ||| 0-0 ||| 430 1.17835e+06 +en ||| in the face of the ||| 0.00357143 0.605812 8.48644e-07 1.58294e-08 2.718 ||| 0-0 ||| 280 1.17835e+06 +en ||| in the face of this ||| 0.00980392 0.605812 8.48644e-07 1.66602e-09 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| in the face of ||| 0.00328228 0.605812 2.54593e-06 2.57842e-07 2.718 ||| 0-0 ||| 914 1.17835e+06 +en ||| in the face ||| 0.0040568 0.605812 3.39458e-06 4.74288e-06 2.718 ||| 0-0 ||| 986 1.17835e+06 +en ||| in the fact that it ||| 0.153846 0.605812 1.69729e-06 2.48421e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in the fact that ||| 0.00772201 0.605812 1.69729e-06 1.39694e-06 2.718 ||| 0-0 ||| 259 1.17835e+06 +en ||| in the fact ||| 0.103365 0.605812 3.64917e-05 8.30444e-05 2.718 ||| 0-0 ||| 416 1.17835e+06 +en ||| in the field , ||| 0.0114943 0.605812 8.48644e-07 4.93938e-07 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| in the field of research ||| 0.00909091 0.605812 8.48644e-07 1.22267e-11 2.718 ||| 0-0 ||| 110 1.17835e+06 +en ||| in the field of ||| 0.00141414 0.605812 5.94051e-06 2.25169e-07 2.718 ||| 0-0 ||| 4950 1.17835e+06 +en ||| in the field ||| 0.00235942 0.605812 1.01837e-05 4.14187e-06 2.718 ||| 0-0 ||| 5086 1.17835e+06 +en ||| in the fields ||| 0.00501672 0.605812 2.54593e-06 1.05177e-06 2.718 ||| 0-0 ||| 598 1.17835e+06 +en ||| in the fight against money laundering ||| 0.2 0.605812 8.48644e-07 1.52251e-19 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the fight against money ||| 0.333333 0.605812 8.48644e-07 6.09005e-14 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in the fight against ||| 0.000527704 0.605812 8.48644e-07 3.72708e-10 2.718 ||| 0-0 ||| 1895 1.17835e+06 +en ||| in the fight ||| 0.000537057 0.605812 8.48644e-07 1.56206e-06 2.718 ||| 0-0 ||| 1862 1.17835e+06 +en ||| in the final analysis , ||| 0.00373134 0.605812 8.48644e-07 8.71893e-12 2.718 ||| 0-0 ||| 268 1.17835e+06 +en ||| in the final analysis ||| 0.00286533 0.605812 8.48644e-07 7.31118e-11 2.718 ||| 0-0 ||| 349 1.17835e+06 +en ||| in the final vote ||| 0.00251889 0.605812 8.48644e-07 3.40251e-10 2.718 ||| 0-0 ||| 397 1.17835e+06 +en ||| in the final ||| 0.00733496 0.605812 2.54593e-06 2.16307e-06 2.718 ||| 0-0 ||| 409 1.17835e+06 +en ||| in the first place for the ||| 1 0.605812 8.48644e-07 1.08388e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the first place for ||| 0.25 0.605812 8.48644e-07 1.76552e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in the first place ||| 0.00428571 0.605812 2.54593e-06 2.29714e-08 2.718 ||| 0-0 ||| 700 1.17835e+06 +en ||| in the first ||| 0.0019861 0.605812 3.39458e-06 1.52634e-05 2.718 ||| 0-0 ||| 2014 1.17835e+06 +en ||| in the flesh of ||| 0.2 0.605812 8.48644e-07 9.4013e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the flesh ||| 0.1 0.605812 8.48644e-07 1.72932e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in the foreground ||| 0.166667 0.605812 8.48644e-07 1.98447e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in the form in ||| 0.0217391 0.605812 8.48644e-07 2.76219e-07 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| in the form of the ||| 0.00719424 0.605812 8.48644e-07 4.30696e-08 2.718 ||| 0-0 ||| 139 1.17835e+06 +en ||| in the form of ||| 0.0186615 0.605812 2.46107e-05 7.01553e-07 2.718 ||| 0-0 ||| 1554 1.17835e+06 +en ||| in the form ||| 0.0205023 0.605812 3.39458e-05 1.29047e-05 2.718 ||| 0-0 ||| 1951 1.17835e+06 +en ||| in the framework of the ||| 0.00176056 0.605812 8.48644e-07 1.12689e-08 2.718 ||| 0-0 ||| 568 1.17835e+06 +en ||| in the framework of ||| 0.00125471 0.605812 8.48644e-07 1.83556e-07 2.718 ||| 0-0 ||| 797 1.17835e+06 +en ||| in the framework ||| 0.000961538 0.605812 8.48644e-07 3.37643e-06 2.718 ||| 0-0 ||| 1040 1.17835e+06 +en ||| in the future ' ||| 0.25 0.605812 8.48644e-07 2.58636e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in the future , ||| 0.00317965 0.605812 3.39458e-06 8.97946e-07 2.718 ||| 0-0 ||| 1258 1.17835e+06 +en ||| in the future either ||| 0.125 0.605812 8.48644e-07 6.51917e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in the future ||| 0.00214072 0.605812 1.27297e-05 7.52965e-06 2.718 ||| 0-0 ||| 7007 1.17835e+06 +en ||| in the general run ||| 1 0.605812 8.48644e-07 5.26576e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the general ||| 0.0285714 0.605812 8.48644e-07 4.95834e-06 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| in the grand order of ||| 0.5 0.605812 8.48644e-07 4.10421e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the grand order ||| 0.5 0.605812 8.48644e-07 7.54949e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the grand ||| 0.142857 0.605812 8.48644e-07 1.41748e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in the grip of ||| 0.037037 0.605812 8.48644e-07 2.55839e-08 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| in the grip ||| 0.0384615 0.605812 8.48644e-07 4.70603e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in the happy ||| 0.111111 0.605812 8.48644e-07 1.78602e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in the history ||| 0.00341297 0.605812 1.69729e-06 1.02058e-06 2.718 ||| 0-0 ||| 586 1.17835e+06 +en ||| in the hope ||| 0.0013369 0.605812 8.48644e-07 4.96968e-06 2.718 ||| 0-0 ||| 748 1.17835e+06 +en ||| in the host countries are socially and ||| 1 0.605812 8.48644e-07 1.98441e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the host countries are socially ||| 1 0.605812 8.48644e-07 1.58424e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the host countries are ||| 1 0.605812 8.48644e-07 3.16849e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the host countries ||| 0.0714286 0.605812 8.48644e-07 2.08828e-10 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in the host ||| 0.25 0.605812 8.48644e-07 5.49982e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in the idea ||| 0.0243902 0.605812 8.48644e-07 6.35597e-06 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| in the immediate ||| 0.047619 0.605812 2.54593e-06 7.34254e-07 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| in the individual Member States ||| 0.00645161 0.605812 8.48644e-07 9.85727e-13 2.718 ||| 0-0 ||| 155 1.17835e+06 +en ||| in the individual Member ||| 0.142857 0.605812 8.48644e-07 2.06565e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in the individual ||| 0.00413223 0.605812 8.48644e-07 4.00863e-06 2.718 ||| 0-0 ||| 242 1.17835e+06 +en ||| in the infertile soil where ||| 1 0.247783 8.48644e-07 5.64043e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in the information society ||| 0.00729927 0.605812 8.48644e-07 2.71658e-10 2.718 ||| 0-0 ||| 137 1.17835e+06 +en ||| in the information ||| 0.0188679 0.605812 8.48644e-07 4.69185e-06 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| in the integration and development of ||| 1 0.605812 8.48644e-07 6.28779e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the integration and development ||| 1 0.605812 8.48644e-07 1.15661e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the integration and ||| 0.333333 0.605812 8.48644e-07 7.03106e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in the integration ||| 0.0232558 0.605812 8.48644e-07 5.61322e-07 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| in the interests of ||| 0.00108932 0.605812 1.69729e-06 2.11298e-07 2.718 ||| 0-0 ||| 1836 1.17835e+06 +en ||| in the interests ||| 0.00274574 0.605812 4.24322e-06 3.88673e-06 2.718 ||| 0-0 ||| 1821 1.17835e+06 +en ||| in the knowledge ||| 0.00416667 0.605812 8.48644e-07 1.3466e-06 2.718 ||| 0-0 ||| 240 1.17835e+06 +en ||| in the land ||| 0.037037 0.605812 8.48644e-07 1.09146e-06 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| in the last ||| 0.00297619 0.605812 3.39458e-06 6.19155e-06 2.718 ||| 0-0 ||| 1344 1.17835e+06 +en ||| in the latter ||| 0.00952381 0.605812 8.48644e-07 2.72439e-06 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| in the least ||| 0.015625 0.605812 8.48644e-07 6.95699e-06 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| in the level ||| 0.00719424 0.605812 8.48644e-07 2.42502e-05 2.718 ||| 0-0 ||| 139 1.17835e+06 +en ||| in the light of a ||| 0.0625 0.605812 8.48644e-07 1.18731e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in the light of ||| 0.00313761 0.605812 5.94051e-06 2.6786e-07 2.718 ||| 0-0 ||| 2231 1.17835e+06 +en ||| in the light ||| 0.00353635 0.605812 7.6378e-06 4.92716e-06 2.718 ||| 0-0 ||| 2545 1.17835e+06 +en ||| in the likes ||| 0.333333 0.605812 8.48644e-07 3.3736e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in the long run , ||| 0.00862069 0.605812 8.48644e-07 1.21464e-10 2.718 ||| 0-0 ||| 116 1.17835e+06 +en ||| in the long run with ||| 0.5 0.605812 8.48644e-07 6.51298e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the long run ||| 0.00600601 0.605812 1.69729e-06 1.01853e-09 2.718 ||| 0-0 ||| 333 1.17835e+06 +en ||| in the long term ||| 0.000773395 0.605812 8.48644e-07 1.04922e-09 2.718 ||| 0-0 ||| 1293 1.17835e+06 +en ||| in the long ||| 0.00326264 0.605812 3.39458e-06 9.59066e-06 2.718 ||| 0-0 ||| 1226 1.17835e+06 +en ||| in the longer term , ||| 0.0075188 0.605812 8.48644e-07 6.93491e-11 2.718 ||| 0-0 ||| 133 1.17835e+06 +en ||| in the longer term ||| 0.0030581 0.605812 8.48644e-07 5.81521e-10 2.718 ||| 0-0 ||| 327 1.17835e+06 +en ||| in the longer ||| 0.00384615 0.605812 8.48644e-07 5.31554e-06 2.718 ||| 0-0 ||| 260 1.17835e+06 +en ||| in the machinery ||| 0.125 0.605812 8.48644e-07 1.13398e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in the main ||| 0.0046729 0.605812 8.48644e-07 2.82645e-06 2.718 ||| 0-0 ||| 214 1.17835e+06 +en ||| in the manner ||| 0.00680272 0.605812 8.48644e-07 5.52817e-06 2.718 ||| 0-0 ||| 147 1.17835e+06 +en ||| in the matter of ||| 0.010929 0.605812 1.69729e-06 1.59899e-06 2.718 ||| 0-0 ||| 183 1.17835e+06 +en ||| in the matter ||| 0.00557103 0.605812 1.69729e-06 2.94127e-05 2.718 ||| 0-0 ||| 359 1.17835e+06 +en ||| in the meantime , in a ||| 0.5 0.605812 8.48644e-07 7.85868e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the meantime , in ||| 0.2 0.605812 8.48644e-07 1.77294e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the meantime , ||| 0.00181818 0.605812 8.48644e-07 8.28301e-08 2.718 ||| 0-0 ||| 550 1.17835e+06 +en ||| in the meantime ||| 0.00427807 0.605812 3.39458e-06 6.94565e-07 2.718 ||| 0-0 ||| 935 1.17835e+06 +en ||| in the message in ||| 1 0.605812 8.48644e-07 2.92482e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| in the middle fell ||| 1 0.605812 8.48644e-07 8.60126e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the middle of a ||| 0.0188679 0.605812 8.48644e-07 1.40045e-09 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| in the middle of ||| 0.0236686 0.605812 6.78915e-06 3.15945e-08 2.718 ||| 0-0 ||| 338 1.17835e+06 +en ||| in the middle ||| 0.02 0.605812 7.6378e-06 5.81166e-07 2.718 ||| 0-0 ||| 450 1.17835e+06 +en ||| in the midst of ||| 0.00540541 0.605812 8.48644e-07 1.44872e-08 2.718 ||| 0-0 ||| 185 1.17835e+06 +en ||| in the midst ||| 0.00546448 0.605812 8.48644e-07 2.66486e-07 2.718 ||| 0-0 ||| 183 1.17835e+06 +en ||| in the month of ||| 0.181818 0.605812 1.69729e-06 2.00356e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in the month ||| 0.105263 0.605812 1.69729e-06 3.68544e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in the most ||| 0.00645161 0.605812 8.48644e-07 1.22527e-05 2.718 ||| 0-0 ||| 155 1.17835e+06 +en ||| in the name ||| 0.00313152 0.605812 2.54593e-06 2.47775e-06 2.718 ||| 0-0 ||| 958 1.17835e+06 +en ||| in the nature of ||| 0.0142857 0.605812 8.48644e-07 2.17925e-07 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| in the nature ||| 0.0123457 0.605812 8.48644e-07 4.00863e-06 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| in the near future ||| 0.00104275 0.605812 8.48644e-07 2.95162e-10 2.718 ||| 0-0 ||| 959 1.17835e+06 +en ||| in the near ||| 0.0183486 0.605812 1.69729e-06 1.1113e-06 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| in the new proposal ||| 0.05 0.605812 8.48644e-07 3.38382e-09 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in the new ||| 0.00102093 0.605812 1.69729e-06 1.69445e-05 2.718 ||| 0-0 ||| 1959 1.17835e+06 +en ||| in the next ||| 0.000862813 0.605812 8.48644e-07 2.92851e-06 2.718 ||| 0-0 ||| 1159 1.17835e+06 +en ||| in the official languages of ||| 0.333333 0.605812 8.48644e-07 1.07915e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in the official languages ||| 0.2 0.605812 8.48644e-07 1.98504e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the official ||| 0.1 0.605812 8.48644e-07 1.1028e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in the old ones as ||| 0.333333 0.605812 8.48644e-07 4.92285e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in the old ones ||| 0.2 0.605812 8.48644e-07 4.82425e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the old ||| 0.00515464 0.605812 8.48644e-07 2.18292e-06 2.718 ||| 0-0 ||| 194 1.17835e+06 +en ||| in the ongoing ||| 0.0285714 0.605812 8.48644e-07 1.00924e-06 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| in the open in ||| 0.5 0.605812 8.48644e-07 9.78175e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| in the opposite direction to ||| 0.2 0.605812 8.48644e-07 4.84381e-12 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the opposite direction ||| 0.0121951 0.605812 8.48644e-07 5.45117e-11 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| in the opposite ||| 0.0869565 0.605812 1.69729e-06 6.01011e-07 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in the order ||| 0.0181818 0.605812 1.69729e-06 1.5099e-05 2.718 ||| 0-0 ||| 110 1.17835e+06 +en ||| in the original English version , ||| 0.5 0.605812 8.48644e-07 5.8713e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the original English version ||| 0.5 0.605812 8.48644e-07 4.92333e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the original English ||| 0.25 0.605812 8.48644e-07 1.32704e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in the original ||| 0.0454545 0.605812 8.48644e-07 8.56157e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| in the overall ||| 0.0212766 0.605812 8.48644e-07 1.79453e-06 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| in the part of the Community ||| 1 0.605812 8.48644e-07 1.82627e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the part of the ||| 0.125 0.605812 8.48644e-07 1.12802e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in the part of ||| 0.1 0.605812 8.48644e-07 1.83741e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in the part ||| 0.0322581 0.605812 8.48644e-07 3.37984e-05 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| in the parts of ||| 0.125 0.0116562 8.48644e-07 1.04473e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| in the past , ||| 0.00302419 0.605812 2.54593e-06 4.33083e-07 2.718 ||| 0-0 ||| 992 1.17835e+06 +en ||| in the past by ||| 0.030303 0.605812 8.48644e-07 1.90662e-08 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| in the past had a raw deal ||| 1 0.605812 8.48644e-07 7.88922e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the past had a raw ||| 1 0.605812 8.48644e-07 1.85804e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the past had a ||| 1 0.605812 8.48644e-07 1.61568e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the past had ||| 0.333333 0.605812 8.48644e-07 3.64502e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in the past have gone ||| 1 0.605812 8.48644e-07 2.7189e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the past have ||| 0.04 0.605812 8.48644e-07 4.3433e-08 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| in the past to ||| 0.0232558 0.605812 8.48644e-07 3.22696e-07 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| in the past ||| 0.00364583 0.605812 1.1881e-05 3.63158e-06 2.718 ||| 0-0 ||| 3840 1.17835e+06 +en ||| in the path of ||| 0.0625 0.605812 8.48644e-07 5.87196e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in the path ||| 0.03125 0.605812 8.48644e-07 1.08012e-06 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| in the performance of ||| 0.0192308 0.605812 8.48644e-07 3.49852e-08 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| in the performance ||| 0.0172414 0.605812 8.48644e-07 6.43535e-07 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| in the period ||| 0.00630915 0.605812 1.69729e-06 4.947e-06 2.718 ||| 0-0 ||| 317 1.17835e+06 +en ||| in the place ||| 0.0243902 0.605812 8.48644e-07 4.26661e-05 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| in the population of ||| 0.142857 0.605812 8.48644e-07 9.47836e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in the population ||| 0.0151515 0.605812 8.48644e-07 1.7435e-06 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| in the position of ||| 0.0153846 0.605812 8.48644e-07 5.07516e-07 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| in the position we adopt at ||| 1 0.321886 8.48644e-07 2.04365e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| in the position ||| 0.00757576 0.605812 8.48644e-07 9.33551e-06 2.718 ||| 0-0 ||| 132 1.17835e+06 +en ||| in the preamble ||| 0.010101 0.605812 8.48644e-07 3.96894e-08 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| in the precise ||| 0.333333 0.605812 8.48644e-07 9.49711e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in the process in ||| 0.142857 0.605812 8.48644e-07 2.59411e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| in the process of taking a ||| 0.5 0.605812 8.48644e-07 1.24119e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the process of taking ||| 0.111111 0.605812 8.48644e-07 2.80016e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in the process of ||| 0.00922509 0.605812 8.48644e-06 6.58861e-07 2.718 ||| 0-0 ||| 1084 1.17835e+06 +en ||| in the process ||| 0.00863061 0.605812 1.27297e-05 1.21194e-05 2.718 ||| 0-0 ||| 1738 1.17835e+06 +en ||| in the proposal , ||| 0.0172414 0.605812 8.48644e-07 6.7515e-07 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| in the proposal ||| 0.00181159 0.605812 8.48644e-07 5.66141e-06 2.718 ||| 0-0 ||| 552 1.17835e+06 +en ||| in the prospect ||| 0.142857 0.605812 8.48644e-07 6.83225e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in the provision of ||| 0.016129 0.605812 8.48644e-07 1.83094e-07 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| in the provision ||| 0.0140845 0.605812 8.48644e-07 3.36793e-06 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| in the public domain , but information ||| 1 0.605812 8.48644e-07 9.76323e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the public domain , but ||| 0.25 0.605812 8.48644e-07 5.89923e-15 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in the public domain , ||| 0.125 0.605812 8.48644e-07 8.63218e-12 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in the public domain ||| 0.0175439 0.605812 8.48644e-07 7.23844e-11 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| in the public ||| 0.0175439 0.605812 8.48644e-07 4.58129e-06 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| in the publication of ||| 0.0833333 0.605812 8.48644e-07 9.4013e-09 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in the publication ||| 0.0833333 0.605812 8.48644e-07 1.72932e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in the pure ||| 1 0.605812 8.48644e-07 2.35301e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the range of ||| 0.0666667 0.605812 8.48644e-07 1.0588e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in the range ||| 0.05 0.605812 8.48644e-07 1.94762e-06 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in the region of ||| 0.00675676 0.605812 8.48644e-07 1.50883e-07 2.718 ||| 0-0 ||| 148 1.17835e+06 +en ||| in the region ||| 0.000975293 0.605812 2.54593e-06 2.77542e-06 2.718 ||| 0-0 ||| 3076 1.17835e+06 +en ||| in the report ' s ||| 1 0.605812 8.48644e-07 7.59307e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the report ' ||| 0.5 0.605812 8.48644e-07 3.99152e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the report , ||| 0.00126582 0.605812 8.48644e-07 1.3858e-06 2.718 ||| 0-0 ||| 790 1.17835e+06 +en ||| in the report ||| 0.00115367 0.605812 4.24322e-06 1.16205e-05 2.718 ||| 0-0 ||| 4334 1.17835e+06 +en ||| in the rest of ||| 0.00892857 0.605812 8.48644e-07 1.16514e-07 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| in the rest ||| 0.00421941 0.605812 8.48644e-07 2.14323e-06 2.718 ||| 0-0 ||| 237 1.17835e+06 +en ||| in the right ||| 0.00312012 0.605812 1.69729e-06 1.82826e-05 2.718 ||| 0-0 ||| 641 1.17835e+06 +en ||| in the rise in recorded cases ||| 1 0.605812 8.48644e-07 2.0405e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the rise in recorded ||| 1 0.605812 8.48644e-07 1.5929e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the rise in ||| 0.5 0.605812 8.48644e-07 7.62151e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the rise ||| 0.166667 0.605812 8.48644e-07 3.56071e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in the run up ||| 0.0172414 0.605812 8.48644e-07 1.02681e-08 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| in the run ||| 0.0196078 0.605812 8.48644e-07 3.01072e-06 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| in the run-up to ||| 0.00235294 0.605812 8.48644e-07 1.99008e-08 2.718 ||| 0-0 ||| 425 1.17835e+06 +en ||| in the run-up ||| 0.0045045 0.605812 1.69729e-06 2.23962e-07 2.718 ||| 0-0 ||| 444 1.17835e+06 +en ||| in the sacred ||| 1 0.605812 8.48644e-07 6.23691e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the same way ||| 0.00171233 0.605812 1.69729e-06 4.91755e-08 2.718 ||| 0-0 ||| 1168 1.17835e+06 +en ||| in the same ||| 0.00160772 0.605812 3.39458e-06 2.28129e-05 2.718 ||| 0-0 ||| 2488 1.17835e+06 +en ||| in the sand ||| 0.00840336 0.605812 8.48644e-07 7.08739e-08 2.718 ||| 0-0 ||| 119 1.17835e+06 +en ||| in the scope of ||| 0.00980392 0.605812 8.48644e-07 1.53657e-07 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| in the scope ||| 0.00934579 0.605812 8.48644e-07 2.82645e-06 2.718 ||| 0-0 ||| 107 1.17835e+06 +en ||| in the sectors of research , technology ||| 1 0.605812 8.48644e-07 9.25152e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the sectors of research , ||| 0.333333 0.605812 8.48644e-07 5.13973e-13 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in the sectors of research ||| 0.25 0.605812 8.48644e-07 4.30988e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in the sectors of ||| 0.0344828 0.605812 8.48644e-07 7.93716e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in the sectors ||| 0.0102041 0.605812 8.48644e-07 1.46e-06 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| in the sense of ||| 0.0148148 0.605812 1.69729e-06 2.74487e-07 2.718 ||| 0-0 ||| 135 1.17835e+06 +en ||| in the sense that ||| 0.00350877 0.605812 8.48644e-07 8.49332e-08 2.718 ||| 0-0 ||| 285 1.17835e+06 +en ||| in the sense ||| 0.00721501 0.605812 4.24322e-06 5.04906e-06 2.718 ||| 0-0 ||| 693 1.17835e+06 +en ||| in the services ||| 0.0344828 0.605812 8.48644e-07 2.50894e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in the shape of ||| 0.0170455 0.605812 2.54593e-06 9.32424e-08 2.718 ||| 0-0 ||| 176 1.17835e+06 +en ||| in the shape ||| 0.0188679 0.605812 3.39458e-06 1.71515e-06 2.718 ||| 0-0 ||| 212 1.17835e+06 +en ||| in the sharing ||| 0.125 0.605812 8.48644e-07 3.3736e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in the short term for the ||| 0.5 0.605812 8.48644e-07 2.06483e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the short term for ||| 0.2 0.605812 8.48644e-07 3.36337e-12 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the short term ||| 0.00147059 0.605812 8.48644e-07 4.37614e-10 2.718 ||| 0-0 ||| 680 1.17835e+06 +en ||| in the short ||| 0.00117233 0.605812 8.48644e-07 4.00012e-06 2.718 ||| 0-0 ||| 853 1.17835e+06 +en ||| in the situation in ||| 0.0123457 0.605812 8.48644e-07 3.12506e-07 2.718 ||| 0-3 ||| 81 1.17835e+06 +en ||| in the sky , ||| 0.2 0.605812 8.48644e-07 1.69041e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the sky to imagine they might ||| 1 0.605812 8.48644e-07 2.90478e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the sky to imagine they ||| 1 0.605812 8.48644e-07 7.56453e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the sky to imagine ||| 1 0.605812 8.48644e-07 2.31756e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the sky to ||| 1 0.605812 8.48644e-07 1.25955e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the sky ||| 0.0465116 0.605812 1.69729e-06 1.41748e-07 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| in the so-called labour-intensive sectors , the ||| 1 0.605812 8.48644e-07 5.59679e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the so-called labour-intensive sectors , ||| 1 0.605812 8.48644e-07 9.11652e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the so-called labour-intensive sectors ||| 1 0.605812 8.48644e-07 7.64458e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the so-called labour-intensive ||| 1 0.605812 8.48644e-07 1.48438e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the so-called ||| 0.0078125 0.605812 8.48644e-07 1.06027e-06 2.718 ||| 0-0 ||| 128 1.17835e+06 +en ||| in the space of a ||| 0.047619 0.605812 8.48644e-07 2.82823e-09 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| in the space of one ||| 0.0769231 0.605812 8.48644e-07 2.65941e-10 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in the space of ||| 0.219298 0.605812 2.12161e-05 6.38055e-08 2.718 ||| 0-0 ||| 114 1.17835e+06 +en ||| in the space ||| 0.224 0.605812 2.3762e-05 1.17367e-06 2.718 ||| 0-0 ||| 125 1.17835e+06 +en ||| in the spotlight in the ||| 0.5 0.605812 8.48644e-07 1.49012e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| in the spotlight in ||| 0.5 0.605812 8.48644e-07 2.42723e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| in the spotlight ||| 0.047619 0.605812 8.48644e-07 1.13398e-07 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| in the spring of ||| 0.0102041 0.605812 8.48644e-07 2.00356e-08 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| in the spring ||| 0.00438596 0.605812 8.48644e-07 3.68544e-07 2.718 ||| 0-0 ||| 228 1.17835e+06 +en ||| in the state of ||| 0.0425532 0.605812 1.69729e-06 3.89306e-07 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| in the state ||| 0.0240964 0.605812 1.69729e-06 7.1611e-06 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| in the street ||| 0.00769231 0.605812 8.48644e-07 3.96894e-07 2.718 ||| 0-0 ||| 130 1.17835e+06 +en ||| in the strongest possible ||| 0.0714286 0.605812 8.48644e-07 1.63722e-10 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in the strongest ||| 0.0178571 0.605812 8.48644e-07 2.04117e-07 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| in the substance , ||| 0.333333 0.605812 8.48644e-07 9.97342e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in the substance ||| 0.0714286 0.605812 8.48644e-07 8.36312e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in the suitability ||| 1 0.605812 8.48644e-07 5.10292e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the summer of ||| 0.0140845 0.605812 8.48644e-07 1.21754e-08 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| in the summer ||| 0.00641026 0.605812 8.48644e-07 2.23962e-07 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| in the supervision , monitoring and ||| 1 0.605812 8.48644e-07 1.27463e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the supervision , monitoring ||| 1 0.605812 8.48644e-07 1.01759e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the supervision , ||| 1 0.605812 8.48644e-07 2.67085e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the supervision ||| 0.0666667 0.605812 8.48644e-07 2.23962e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in the suspension ||| 0.2 0.605812 8.48644e-07 1.13398e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the thick of ||| 0.166667 0.605812 8.48644e-07 4.46947e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in the thick ||| 0.111111 0.605812 8.48644e-07 8.22138e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in the traditional ||| 0.0833333 0.605812 8.48644e-07 2.74991e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in the treatment of ||| 0.0175439 0.605812 8.48644e-07 9.32424e-08 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| in the treatment ||| 0.0138889 0.605812 8.48644e-07 1.71515e-06 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| in the true sense ||| 0.0384615 0.605812 8.48644e-07 8.15928e-10 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in the true ||| 0.12 0.605812 2.54593e-06 4.58129e-06 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| in the various Member States , and ||| 0.5 0.605812 8.48644e-07 1.60783e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in the various Member States , ||| 0.0208333 0.605812 8.48644e-07 1.2836e-13 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| in the various Member States ||| 0.003003 0.605812 8.48644e-07 1.07635e-12 2.718 ||| 0-0 ||| 333 1.17835e+06 +en ||| in the various Member ||| 0.2 0.605812 8.48644e-07 2.25556e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in the various ||| 0.00104058 0.605812 8.48644e-07 4.37717e-06 2.718 ||| 0-0 ||| 961 1.17835e+06 +en ||| in the very ||| 0.0165289 0.605812 3.39458e-06 9.86423e-05 2.718 ||| 0-0 ||| 242 1.17835e+06 +en ||| in the vicinity of ||| 0.0149254 0.605812 8.48644e-07 4.93183e-09 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| in the vicinity ||| 0.010101 0.605812 8.48644e-07 9.07186e-08 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| in the view of ||| 0.00793651 0.605812 8.48644e-07 1.39216e-06 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| in the view ||| 0.00636943 0.605812 8.48644e-07 2.56082e-05 2.718 ||| 0-0 ||| 157 1.17835e+06 +en ||| in the vote ||| 0.00136612 0.605812 8.48644e-07 4.45939e-06 2.718 ||| 0-0 ||| 732 1.17835e+06 +en ||| in the wake ||| 0.0025641 0.605812 8.48644e-07 6.7472e-07 2.718 ||| 0-0 ||| 390 1.17835e+06 +en ||| in the waters ||| 0.0306122 0.605812 2.54593e-06 4.70603e-07 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| in the way of ||| 0.00307692 0.605812 8.48644e-07 3.3222e-06 2.718 ||| 0-0 ||| 325 1.17835e+06 +en ||| in the way once ||| 1 0.605812 8.48644e-07 2.50064e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the way ||| 0.00620767 0.605812 9.33509e-06 6.11103e-05 2.718 ||| 0-0 ||| 1772 1.17835e+06 +en ||| in the whole ||| 0.00229885 0.605812 8.48644e-07 1.60374e-05 2.718 ||| 0-0 ||| 435 1.17835e+06 +en ||| in the wings of ||| 0.333333 0.605812 8.48644e-07 2.77415e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in the wings ||| 0.0666667 0.605812 8.48644e-07 5.10292e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in the work ||| 0.00165563 0.605812 8.48644e-07 1.79453e-05 2.718 ||| 0-0 ||| 604 1.17835e+06 +en ||| in the world to ||| 0.0147059 0.605812 8.48644e-07 5.73849e-07 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| in the world ||| 0.000808407 0.605812 3.39458e-06 6.45803e-06 2.718 ||| 0-0 ||| 4948 1.17835e+06 +en ||| in the year , ||| 0.0769231 0.605812 8.48644e-07 8.43176e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in the year 2000 ||| 0.00404858 0.605812 8.48644e-07 2.03627e-10 2.718 ||| 0-0 ||| 247 1.17835e+06 +en ||| in the year ||| 0.00631579 0.605812 2.54593e-06 7.07038e-06 2.718 ||| 0-0 ||| 475 1.17835e+06 +en ||| in the years ||| 0.00257732 0.605812 8.48644e-07 4.8251e-06 2.718 ||| 0-0 ||| 388 1.17835e+06 +en ||| in the ||| 0.0385029 0.605812 0.00939619 0.0283496 2.718 ||| 0-0 ||| 287563 1.17835e+06 +en ||| in the ‘ everything but arms ||| 1 0.605812 8.48644e-07 5.57472e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the ‘ everything but arms ’ ||| 1 0.605812 8.48644e-07 9.71171e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the ‘ everything but ||| 1 0.605812 8.48644e-07 2.01253e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the ‘ everything ||| 1 0.605812 8.48644e-07 2.94488e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in the ‘ ||| 0.0434783 0.605812 8.48644e-07 3.18366e-06 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| in their belief ||| 0.333333 0.605812 8.48644e-07 1.42377e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in their capacity ||| 0.0416667 0.605812 8.48644e-07 3.91268e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in their current talks ||| 1 0.605812 8.48644e-07 2.3199e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in their current ||| 0.0833333 0.605812 8.48644e-07 8.82093e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in their demand ||| 0.5 0.605812 8.48644e-07 2.86894e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in their desperate ||| 0.25 0.605812 8.48644e-07 1.7128e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in their effect ||| 0.166667 0.605812 8.48644e-07 1.7856e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in their everyday lives ||| 0.025641 0.605812 8.48644e-07 1.87445e-13 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| in their everyday ||| 0.0526316 0.605812 8.48644e-07 3.6397e-09 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| in their hands ||| 0.0212766 0.605812 8.48644e-07 5.39532e-08 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| in their layouts , to ||| 1 0.605812 8.48644e-07 2.26877e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in their layouts , ||| 1 0.605812 8.48644e-07 2.55325e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in their layouts ||| 1 0.605812 8.48644e-07 2.141e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in their monitoring , ||| 1 0.605812 8.48644e-07 2.43197e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in their monitoring ||| 0.5 0.605812 8.48644e-07 2.0393e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in their new ||| 0.05 0.605812 8.48644e-07 3.19919e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in their number , ||| 0.333333 0.605812 8.48644e-07 3.15836e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in their number ||| 0.125 0.605812 8.48644e-07 2.64842e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in their own ||| 0.0021978 0.605812 1.69729e-06 9.0741e-07 2.718 ||| 0-0 ||| 910 1.17835e+06 +en ||| in their particular ||| 0.333333 0.605812 8.48644e-07 3.29393e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in their surroundings ||| 0.166667 0.605812 8.48644e-07 7.49351e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in their turn ||| 0.0357143 0.605812 8.48644e-07 1.20003e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| in their work ||| 0.0119048 0.605812 8.48644e-07 3.38814e-07 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| in their ||| 0.0085922 0.605812 5.51619e-05 0.00053525 2.718 ||| 0-0 ||| 7565 1.17835e+06 +en ||| in them ||| 0.0294118 0.605812 1.01837e-05 0.00123868 2.718 ||| 0-0 ||| 408 1.17835e+06 +en ||| in themselves ||| 0.0121581 0.605812 3.39458e-06 0.000198427 2.718 ||| 0-0 ||| 329 1.17835e+06 +en ||| in theory , ||| 0.00641026 0.605812 8.48644e-07 4.18529e-07 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| in theory ||| 0.00520833 0.605812 1.69729e-06 3.50954e-06 2.718 ||| 0-0 ||| 384 1.17835e+06 +en ||| in there . it is ||| 1 0.605812 8.48644e-07 2.38964e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in there . it ||| 1 0.605812 8.48644e-07 7.62462e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in there . ||| 0.125 0.605812 8.48644e-07 4.28754e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in there being ||| 0.142857 0.605812 8.48644e-07 4.02822e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in there ||| 0.0526316 0.605812 2.54593e-06 0.0014155 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| in these , ||| 0.125 0.605812 8.48644e-07 5.71126e-05 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in these areas ||| 0.00132802 0.605812 8.48644e-07 1.09623e-07 2.718 ||| 0-0 ||| 753 1.17835e+06 +en ||| in these circumstances ||| 0.00246914 0.605812 8.48644e-07 2.58613e-08 2.718 ||| 0-0 ||| 405 1.17835e+06 +en ||| in these fields ||| 0.0120482 0.605812 8.48644e-07 1.77677e-08 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| in these kind ||| 0.2 0.605812 8.48644e-07 2.3371e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in these negotiations ||| 0.00574713 0.605812 8.48644e-07 2.65318e-08 2.718 ||| 0-0 ||| 174 1.17835e+06 +en ||| in these ||| 0.00383342 0.605812 1.86702e-05 0.000478913 2.718 ||| 0-0 ||| 5739 1.17835e+06 +en ||| in third countries on ||| 1 0.417871 8.48644e-07 6.81481e-10 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| in third ||| 0.00424328 0.605812 2.54593e-06 2.16114e-05 2.718 ||| 0-0 ||| 707 1.17835e+06 +en ||| in this , ||| 0.00298507 0.605812 8.48644e-07 0.000355826 2.718 ||| 0-0 ||| 335 1.17835e+06 +en ||| in this Chamber and ||| 0.0128205 0.605812 8.48644e-07 9.82941e-10 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| in this Chamber that is ||| 1 0.605812 8.48644e-07 4.13714e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in this Chamber that ||| 0.0232558 0.605812 8.48644e-07 1.32004e-09 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| in this Chamber ||| 0.00166852 0.605812 2.54593e-06 7.84727e-08 2.718 ||| 0-0 ||| 1798 1.17835e+06 +en ||| in this House , ||| 0.000755287 0.605812 8.48644e-07 8.89922e-08 2.718 ||| 0-0 ||| 1324 1.17835e+06 +en ||| in this House are ||| 0.0140845 0.605812 8.48644e-07 1.13224e-08 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| in this House ||| 0.000705816 0.605812 4.24322e-06 7.46236e-07 2.718 ||| 0-0 ||| 7084 1.17835e+06 +en ||| in this Parliament be ||| 1 0.605812 8.48644e-07 3.10386e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in this Parliament ||| 0.00084317 0.605812 1.69729e-06 1.71267e-06 2.718 ||| 0-0 ||| 2372 1.17835e+06 +en ||| in this area as well ||| 0.0384615 0.605812 8.48644e-07 2.00496e-11 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in this area as ||| 0.0149254 0.605812 8.48644e-07 1.26448e-08 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| in this area ||| 0.00042058 0.605812 2.54593e-06 1.23915e-06 2.718 ||| 0-0 ||| 7133 1.17835e+06 +en ||| in this aspect ||| 0.0769231 0.605812 8.48644e-07 2.10355e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in this assessment ||| 0.0909091 0.605812 8.48644e-07 1.29793e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in this case , ||| 0.00168492 0.605812 1.69729e-06 3.80699e-07 2.718 ||| 0-0 ||| 1187 1.17835e+06 +en ||| in this case brother ) ||| 0.125 0.605812 8.48644e-07 1.46826e-14 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in this case brother ||| 0.125 0.605812 8.48644e-07 1.02154e-11 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in this case ||| 0.00258844 0.605812 7.6378e-06 3.19232e-06 2.718 ||| 0-0 ||| 3477 1.17835e+06 +en ||| in this connection , ||| 0.001287 0.605812 8.48644e-07 5.42991e-08 2.718 ||| 0-0 ||| 777 1.17835e+06 +en ||| in this connection ||| 0.00252366 0.605812 3.39458e-06 4.55321e-07 2.718 ||| 0-0 ||| 1585 1.17835e+06 +en ||| in this context , ||| 0.00049776 0.605812 8.48644e-07 4.77519e-08 2.718 ||| 0-0 ||| 2009 1.17835e+06 +en ||| in this context to ||| 0.0263158 0.0247351 8.48644e-07 5.21698e-10 2.718 ||| 0-3 ||| 38 1.17835e+06 +en ||| in this context ||| 0.00107498 0.605812 3.39458e-06 4.0042e-07 2.718 ||| 0-0 ||| 3721 1.17835e+06 +en ||| in this crisis ||| 0.00980392 0.605812 8.48644e-07 2.15725e-07 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| in this debate ||| 0.00054615 0.605812 8.48644e-07 5.90485e-07 2.718 ||| 0-0 ||| 1831 1.17835e+06 +en ||| in this direction is ||| 0.142857 0.605812 8.48644e-07 8.48173e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in this direction ||| 0.000997009 0.605812 8.48644e-07 2.70626e-07 2.718 ||| 0-0 ||| 1003 1.17835e+06 +en ||| in this field , ||| 0.00197239 0.605812 8.48644e-07 5.19863e-08 2.718 ||| 0-0 ||| 507 1.17835e+06 +en ||| in this field - with ||| 0.5 0.0535436 8.48644e-07 8.88634e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| in this field ||| 0.00157233 0.605812 3.39458e-06 4.35926e-07 2.718 ||| 0-0 ||| 2544 1.17835e+06 +en ||| in this instance , ||| 0.00555556 0.605812 8.48644e-07 2.30576e-08 2.718 ||| 0-0 ||| 180 1.17835e+06 +en ||| in this instance . in ||| 1 0.605812 8.48644e-07 1.25355e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in this instance ||| 0.00229885 0.605812 8.48644e-07 1.93347e-07 2.718 ||| 0-0 ||| 435 1.17835e+06 +en ||| in this light ||| 0.00595238 0.605812 8.48644e-07 5.18576e-07 2.718 ||| 0-0 ||| 168 1.17835e+06 +en ||| in this matter ||| 0.00215363 0.605812 2.54593e-06 3.09564e-06 2.718 ||| 0-0 ||| 1393 1.17835e+06 +en ||| in this on the ||| 1 0.605812 8.48644e-07 1.22564e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in this on ||| 0.333333 0.605812 8.48644e-07 1.99643e-05 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in this or ||| 0.0555556 0.605812 8.48644e-07 3.41132e-06 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in this outline ||| 1 0.605812 8.48644e-07 2.68538e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in this place ||| 0.00884956 0.605812 8.48644e-07 4.49055e-06 2.718 ||| 0-0 ||| 113 1.17835e+06 +en ||| in this protection ||| 1 0.605812 8.48644e-07 3.02851e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in this regard ||| 0.00100075 0.605812 3.39458e-06 2.03164e-06 2.718 ||| 0-0 ||| 3997 1.17835e+06 +en ||| in this report , he has consistently ||| 1 0.0056615 8.48644e-07 6.33168e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in this report , he has ||| 0.5 0.0056615 8.48644e-07 4.76066e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| in this report , he ||| 1 0.0056615 8.48644e-07 9.2485e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in this report ||| 0.000881834 0.605812 1.69729e-06 1.22304e-06 2.718 ||| 0-0 ||| 2268 1.17835e+06 +en ||| in this respect , ||| 0.000902527 0.605812 1.69729e-06 1.53931e-07 2.718 ||| 0-0 ||| 2216 1.17835e+06 +en ||| in this respect - ||| 0.0384615 0.605812 8.48644e-07 4.86892e-09 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in this respect at one or ||| 1 0.605812 8.48644e-07 2.57562e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in this respect at one ||| 1 0.605812 8.48644e-07 2.25279e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in this respect at ||| 0.1 0.605812 8.48644e-07 5.40498e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in this respect in ||| 0.0740741 0.404318 1.69729e-06 4.40025e-08 2.718 ||| 0-0 0-1 0-3 ||| 27 1.17835e+06 +en ||| in this respect over ||| 1 0.157937 8.48644e-07 2.3975e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| in this respect we in ||| 1 0.605812 8.48644e-07 3.13645e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| in this respect ||| 0.00155976 0.605812 6.78915e-06 1.29077e-06 2.718 ||| 0-0 ||| 5129 1.17835e+06 +en ||| in this sense in ||| 1 0.605812 8.48644e-07 1.13745e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| in this sense ||| 0.00189753 0.605812 8.48644e-07 5.31406e-07 2.718 ||| 0-0 ||| 527 1.17835e+06 +en ||| in this spirit in ||| 1 0.605812 8.48644e-07 3.74892e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| in this task ||| 0.0121951 0.605812 8.48644e-07 3.75953e-07 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| in this through ||| 0.2 0.605812 8.48644e-07 1.37342e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in this version the ||| 0.5 0.605812 8.48644e-07 6.7959e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in this version ||| 0.25 0.605812 8.48644e-07 1.10697e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in this way , as a ||| 0.333333 0.605812 8.48644e-07 3.46937e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in this way , as ||| 0.142857 0.605812 8.48644e-07 7.82697e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in this way , ||| 0.00203046 0.605812 1.69729e-06 7.6702e-07 2.718 ||| 0-0 ||| 985 1.17835e+06 +en ||| in this way being brought to bear ||| 0.5 0.605812 8.48644e-07 6.8173e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in this way being brought to ||| 0.5 0.605812 8.48644e-07 4.55398e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in this way being brought ||| 0.5 0.605812 8.48644e-07 5.12499e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in this way being ||| 0.5 0.605812 8.48644e-07 1.83036e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in this way will ||| 0.0384615 0.605812 8.48644e-07 5.56426e-08 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| in this way ||| 0.00317013 0.605812 7.6378e-06 6.43178e-06 2.718 ||| 0-0 ||| 2839 1.17835e+06 +en ||| in this ||| 0.00333673 0.605812 0.000183307 0.00298375 2.718 ||| 0-0 ||| 64734 1.17835e+06 +en ||| in those countries ||| 0.00283688 0.605812 1.69729e-06 1.26962e-07 2.718 ||| 0-0 ||| 705 1.17835e+06 +en ||| in those efforts . ||| 0.333333 0.605812 8.48644e-07 1.23159e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in those efforts ||| 0.125 0.605812 8.48644e-07 4.06601e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in those waters ||| 0.05 0.605812 8.48644e-07 5.55064e-09 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in those ||| 0.00751215 0.605812 1.4427e-05 0.000334376 2.718 ||| 0-0 ||| 2263 1.17835e+06 +en ||| in through the ||| 0.0333333 0.605812 8.48644e-07 1.30493e-05 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| in through ||| 0.0681818 0.605812 2.54593e-06 0.000212558 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| in tightening ||| 0.0714286 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in time , ||| 0.00440529 0.605812 8.48644e-07 9.04077e-05 2.718 ||| 0-0 ||| 227 1.17835e+06 +en ||| in time in ||| 0.25 0.605812 8.48644e-07 1.62269e-05 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| in time to ||| 0.0178571 0.0247351 8.48644e-07 9.87719e-07 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| in time ||| 0.0110922 0.605812 1.10324e-05 0.000758106 2.718 ||| 0-0 ||| 1172 1.17835e+06 +en ||| in times of ||| 0.0026178 0.605812 8.48644e-07 2.54808e-06 2.718 ||| 0-0 ||| 382 1.17835e+06 +en ||| in times to ||| 0.25 0.605812 8.48644e-07 4.16485e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in times ||| 0.00451467 0.605812 1.69729e-06 4.68708e-05 2.718 ||| 0-0 ||| 443 1.17835e+06 +en ||| in to a ||| 0.333333 0.605812 8.48644e-07 0.00181882 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in to bat ||| 0.333333 0.605812 8.48644e-07 4.51363e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in to deal ||| 1 0.605812 8.48644e-07 1.74226e-05 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in to is generally ||| 1 0.605812 8.48644e-07 5.32412e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in to is ||| 1 0.605812 8.48644e-07 0.00128602 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in to observe ||| 1 0.605812 8.48644e-07 7.83731e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in to protest on ||| 1 0.215304 8.48644e-07 7.54571e-10 2.718 ||| 0-0 0-1 0-2 0-3 ||| 1 1.17835e+06 +en ||| in to ||| 0.169279 0.605812 4.58268e-05 0.041033 2.718 ||| 0-0 ||| 319 1.17835e+06 +en ||| in today ' ||| 0.0833333 0.605812 8.48644e-07 7.15839e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in today 's ||| 0.0227273 0.605812 1.69729e-06 3.9688e-07 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| in today ||| 0.0791367 0.605812 9.33509e-06 0.000208402 2.718 ||| 0-0 ||| 139 1.17835e+06 +en ||| in together ||| 0.166667 0.605812 8.48644e-07 0.000277346 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in too great a ||| 0.333333 0.605812 8.48644e-07 1.09482e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in too great ||| 0.2 0.605812 8.48644e-07 2.46994e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in too ||| 0.173913 0.605812 6.78915e-06 0.000628484 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| in total ||| 0.0151976 0.605812 4.24322e-06 4.3546e-05 2.718 ||| 0-0 ||| 329 1.17835e+06 +en ||| in touch with ||| 0.008 0.329678 8.48644e-07 1.18445e-07 2.718 ||| 0-0 0-2 ||| 125 1.17835e+06 +en ||| in town and ||| 0.2 0.605812 1.69729e-06 7.28812e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in town ||| 0.166667 0.605812 2.54593e-06 5.81844e-06 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in toys do ||| 1 0.605812 8.48644e-07 6.34543e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in toys ||| 0.0105263 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| in transition ||| 0.0212766 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| in truly taking ||| 1 0.605812 8.48644e-07 1.1795e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in truly ||| 0.25 0.605812 8.48644e-07 2.7753e-05 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in trusting ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in trying to ensure ||| 0.0666667 0.605812 8.48644e-07 2.11959e-09 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| in trying to ||| 0.00740741 0.605812 1.69729e-06 4.72701e-06 2.718 ||| 0-0 ||| 270 1.17835e+06 +en ||| in trying ||| 0.03125 0.605812 2.54593e-06 5.31972e-05 2.718 ||| 0-0 ||| 96 1.17835e+06 +en ||| in tune with ||| 0.0117647 0.605812 8.48644e-07 8.82905e-08 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| in tune ||| 0.0116279 0.605812 8.48644e-07 1.38073e-05 2.718 ||| 0-0 ||| 86 1.17835e+06 +en ||| in turn , to ||| 0.0769231 0.605812 8.48644e-07 1.0971e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in turn , would ||| 0.5 0.605812 8.48644e-07 7.24585e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in turn , ||| 0.00581395 0.605812 2.54593e-06 1.23466e-05 2.718 ||| 0-0 ||| 516 1.17835e+06 +en ||| in turn defines the European Union . ||| 1 0.605812 8.48644e-07 5.02377e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in turn defines the European Union ||| 1 0.605812 8.48644e-07 1.65856e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in turn defines the European ||| 1 0.605812 8.48644e-07 2.97552e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in turn defines the ||| 1 0.605812 8.48644e-07 8.89836e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in turn defines ||| 1 0.605812 8.48644e-07 1.44944e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in turn have ||| 0.0714286 0.605812 8.48644e-07 1.23821e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| in turn lead to ||| 0.1 0.605812 8.48644e-07 1.77092e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in turn lead ||| 0.0909091 0.605812 8.48644e-07 1.99298e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in turn means that ||| 0.25 0.605812 8.48644e-07 1.10363e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in turn means ||| 0.0588235 0.605812 8.48644e-07 6.56078e-08 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in turn must ||| 0.2 0.605812 8.48644e-07 1.60018e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in turn represent ||| 1 0.605812 8.48644e-07 5.29045e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in turn ||| 0.00863931 0.605812 1.01837e-05 0.000103531 2.718 ||| 0-0 ||| 1389 1.17835e+06 +en ||| in two ||| 0.00417101 0.605812 3.39458e-06 0.000109165 2.718 ||| 0-0 ||| 959 1.17835e+06 +en ||| in unamended ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in under ||| 0.0416667 0.405689 8.48644e-07 0.00261119 2.718 ||| 0-0 0-1 ||| 24 1.17835e+06 +en ||| in understanding ||| 0.0238095 0.605812 8.48644e-07 1.56082e-05 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| in undertaking its actions , ||| 1 0.605812 8.48644e-07 1.63743e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in undertaking its actions ||| 1 0.605812 8.48644e-07 1.37305e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in undertaking its ||| 1 0.605812 8.48644e-07 1.96712e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in undertaking ||| 0.0689655 0.605812 1.69729e-06 1.38073e-05 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| in unemployment ||| 0.00395257 0.605812 8.48644e-07 8.49677e-06 2.718 ||| 0-0 ||| 253 1.17835e+06 +en ||| in unequivocal ||| 1 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in unfairness and inequality ||| 1 0.605812 8.48644e-07 1.39978e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in unfairness and ||| 1 0.605812 8.48644e-07 6.36265e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in unfairness ||| 1 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in unit . ||| 1 0.605812 8.48644e-07 1.66449e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in unit ||| 0.5 0.605812 8.48644e-07 5.4952e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in universities ||| 0.027027 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| in unmonitored ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in up to ||| 1 0.605812 8.48644e-07 0.000139943 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in up ||| 1 0.605812 8.48644e-07 0.0015749 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in us . ||| 0.0588235 0.605812 8.48644e-07 4.03143e-06 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in us ||| 0.027027 0.605812 2.54593e-06 0.00133095 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| in use in ||| 0.0454545 0.605812 8.48644e-07 4.80569e-06 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| in use on ||| 1 0.605812 8.48644e-07 1.50225e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in use ||| 0.025641 0.605812 3.39458e-06 0.000224518 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| in using ||| 0.00649351 0.605812 8.48644e-07 3.58804e-05 2.718 ||| 0-0 ||| 154 1.17835e+06 +en ||| in vain . ||| 0.00952381 0.605812 8.48644e-07 2.51772e-09 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| in vain in the ||| 1 0.605812 8.48644e-07 1.09226e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in vain in ||| 0.5 0.605812 8.48644e-07 1.77915e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in vain today for ||| 1 0.605812 8.48644e-07 2.88308e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in vain today ||| 0.5 0.605812 8.48644e-07 3.75123e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in vain ||| 0.0126582 0.605812 2.54593e-06 8.31206e-07 2.718 ||| 0-0 ||| 237 1.17835e+06 +en ||| in valleys ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in various parts of ||| 0.0322581 0.605812 8.48644e-07 2.25977e-10 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| in various parts ||| 0.0138889 0.605812 8.48644e-07 4.15673e-09 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| in various places ||| 0.037037 0.605812 8.48644e-07 3.77172e-09 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| in various quarters ||| 0.0416667 0.605812 8.48644e-07 8.19939e-10 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in various ways ||| 0.00943396 0.605812 8.48644e-07 6.87322e-09 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| in various ||| 0.0113339 0.605812 1.10324e-05 7.1299e-05 2.718 ||| 0-0 ||| 1147 1.17835e+06 +en ||| in vegetable ||| 0.5 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in very general terms in order ||| 1 0.605812 8.48644e-07 3.51636e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in very general terms in ||| 1 0.605812 8.48644e-07 6.60225e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in very general terms ||| 0.0588235 0.605812 8.48644e-07 3.08452e-10 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in very general ||| 0.166667 0.605812 8.48644e-07 2.81024e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in very much ||| 1 0.605812 8.48644e-07 1.61271e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in very poor ||| 0.142857 0.605812 8.48644e-07 4.73996e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in very practical terms just ||| 0.0833333 0.605812 8.48644e-07 9.76827e-14 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in very practical terms ||| 0.0555556 0.605812 8.48644e-07 7.74215e-11 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in very practical ||| 0.0769231 0.605812 8.48644e-07 7.05371e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in very strong terms ||| 0.5 0.605812 8.48644e-07 1.49729e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in very strong ||| 1 0.605812 8.48644e-07 1.36415e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in very ||| 0.201058 0.605812 3.22485e-05 0.00160677 2.718 ||| 0-0 ||| 189 1.17835e+06 +en ||| in view of the fact that ||| 0.00574713 0.605812 1.69729e-06 6.85995e-11 2.718 ||| 0-0 ||| 348 1.17835e+06 +en ||| in view of the fact ||| 0.00455581 0.605812 1.69729e-06 4.07806e-09 2.718 ||| 0-0 ||| 439 1.17835e+06 +en ||| in view of the ||| 0.00115473 0.605812 2.54593e-06 1.39216e-06 2.718 ||| 0-0 ||| 2598 1.17835e+06 +en ||| in view of ||| 0.0075979 0.605812 2.20648e-05 2.26767e-05 2.718 ||| 0-0 ||| 3422 1.17835e+06 +en ||| in view too ||| 0.333333 0.605812 8.48644e-07 5.6771e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in view ||| 0.0142923 0.605812 5.26159e-05 0.000417127 2.718 ||| 0-0 ||| 4338 1.17835e+06 +en ||| in violence on ||| 1 0.417871 8.48644e-07 8.70549e-07 2.718 ||| 0-0 0-2 ||| 1 1.17835e+06 +en ||| in ways which ||| 0.0454545 0.605812 8.48644e-07 3.78143e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| in ways ||| 0.02 0.605812 1.69729e-06 4.45157e-05 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| in weight ||| 0.0625 0.605812 8.48644e-07 1.41305e-05 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in western ||| 0.0740741 0.605812 1.69729e-06 1.84712e-06 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| in what are ||| 0.0357143 0.605812 8.48644e-07 9.83077e-06 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| in what follows ||| 1 0.605812 8.48644e-07 3.42752e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in what goes on here ||| 1 0.605812 8.48644e-07 1.21756e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in what goes on ||| 0.5 0.605812 8.48644e-07 6.00434e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in what goes ||| 0.5 0.605812 8.48644e-07 8.97376e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in what is , whichever way ||| 1 0.605812 8.48644e-07 2.61007e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in what is , whichever ||| 1 0.605812 8.48644e-07 1.21083e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in what is , ||| 0.1 0.605812 8.48644e-07 2.42167e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in what is known as the ' ||| 0.5 0.605812 8.48644e-07 4.81103e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in what is known as the ||| 0.1 0.605812 8.48644e-07 1.40063e-12 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| in what is known as ||| 0.0769231 0.605812 8.48644e-07 2.28146e-11 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| in what is known ||| 0.0833333 0.605812 8.48644e-07 2.23577e-09 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in what is now , to ||| 1 0.605812 8.48644e-07 4.4326e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in what is now , ||| 1 0.605812 8.48644e-07 4.98839e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in what is now ||| 0.0909091 0.605812 8.48644e-07 4.18297e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in what is otherwise ||| 0.333333 0.605812 8.48644e-07 1.20622e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in what is seen ||| 1 0.605812 8.48644e-07 4.27456e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in what is ||| 0.134615 0.605812 1.78215e-05 2.03067e-05 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| in what kind ||| 0.2 0.605812 8.48644e-07 3.16187e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in what might be termed ||| 1 0.605812 8.48644e-07 4.05813e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in what might be ||| 0.333333 0.605812 8.48644e-07 4.50904e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in what might ||| 0.5 0.605812 1.69729e-06 2.48803e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in what quantities ||| 0.166667 0.605812 8.48644e-07 9.33012e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in what region ||| 1 0.605812 8.48644e-07 6.34319e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in what was ||| 0.04 0.605812 8.48644e-07 2.02995e-06 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| in what we regard as ||| 0.333333 0.605812 8.48644e-07 5.11069e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in what we regard ||| 0.5 0.605812 8.48644e-07 5.00832e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in what we ||| 0.0888889 0.605812 3.39458e-06 7.35544e-06 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| in what were considered to be ||| 1 0.605812 8.48644e-07 2.0112e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in what were considered to ||| 1 0.605812 8.48644e-07 1.10976e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in what were considered ||| 1 0.605812 8.48644e-07 1.24891e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in what were ||| 0.4 0.605812 1.69729e-06 1.16069e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in what would ||| 0.25 0.605812 8.48644e-07 3.80248e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in what ||| 0.0441299 0.605812 4.49781e-05 0.000647925 2.718 ||| 0-0 ||| 1201 1.17835e+06 +en ||| in whatever ||| 0.0869565 0.605812 6.78915e-06 2.54441e-05 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| in when it ||| 0.333333 0.605812 8.48644e-07 4.10515e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in when ||| 0.0416667 0.605812 8.48644e-07 0.000230844 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in where ||| 0.111111 0.426797 8.48644e-07 0.0039328 2.718 ||| 0-0 0-1 ||| 9 1.17835e+06 +en ||| in which , ||| 0.00961538 0.605812 2.54593e-06 0.000467794 2.718 ||| 0-0 ||| 312 1.17835e+06 +en ||| in which America ||| 0.25 0.605812 8.48644e-07 1.08657e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in which European policy loses ||| 1 0.605812 8.48644e-07 1.13611e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in which European policy ||| 1 0.605812 8.48644e-07 5.16414e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in which European ||| 0.111111 0.605812 8.48644e-07 1.31169e-05 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| in which Zimbabwe ' s ||| 0.5 0.605812 8.48644e-07 1.10215e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in which Zimbabwe ' ||| 0.5 0.605812 8.48644e-07 5.79378e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in which Zimbabwe ||| 0.5 0.605812 8.48644e-07 1.68674e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in which attempts ||| 0.5 0.605812 8.48644e-07 1.24348e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in which case ||| 0.00510204 0.605812 8.48644e-07 4.19684e-06 2.718 ||| 0-0 ||| 196 1.17835e+06 +en ||| in which either the ||| 0.5 0.605812 8.48644e-07 2.085e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in which either ||| 0.142857 0.605812 8.48644e-07 3.39623e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in which he discussed ||| 0.5 0.605812 8.48644e-07 1.79723e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in which he ||| 0.00531915 0.605812 8.48644e-07 3.42329e-06 2.718 ||| 0-0 ||| 188 1.17835e+06 +en ||| in which it would also ||| 1 0.605812 8.48644e-07 2.06682e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in which it would ||| 0.333333 0.605812 8.48644e-07 4.09384e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in which it ||| 0.00294118 0.605812 8.48644e-07 6.97572e-05 2.718 ||| 0-0 ||| 340 1.17835e+06 +en ||| in which legislation is ||| 0.25 0.605812 8.48644e-07 9.87208e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in which legislation ||| 0.166667 0.605812 8.48644e-07 3.14988e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in which matters are ||| 1 0.605812 8.48644e-07 1.10107e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in which matters ||| 0.333333 0.605812 8.48644e-07 7.25689e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in which one of ||| 0.142857 0.605812 8.48644e-07 8.88829e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in which one ||| 0.0217391 0.605812 8.48644e-07 1.63496e-05 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| in which the use of these is ||| 1 0.605812 8.48644e-07 2.06895e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in which the use of these ||| 0.333333 0.605812 8.48644e-07 6.60141e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in which the use of ||| 0.142857 0.605812 8.48644e-07 6.36526e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| in which the use ||| 0.125 0.605812 8.48644e-07 1.17086e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in which the whole matter has been ||| 1 0.605812 8.48644e-07 2.42942e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in which the whole matter has ||| 1 0.605812 8.48644e-07 7.27545e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in which the whole matter ||| 1 0.605812 8.48644e-07 1.4134e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in which the whole ||| 0.166667 0.605812 8.48644e-07 1.36231e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in which the ||| 0.00180897 0.605812 4.24322e-06 0.000240818 2.718 ||| 0-0 ||| 2764 1.17835e+06 +en ||| in which they have been ||| 0.0454545 0.605812 8.48644e-07 5.11323e-10 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| in which they have ||| 0.0126582 0.605812 8.48644e-07 1.53127e-07 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| in which they were presented ||| 1 0.605812 8.48644e-07 1.80737e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in which they were ||| 0.0243902 0.605812 8.48644e-07 2.29362e-08 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| in which they would be made ||| 0.5 0.605812 8.48644e-07 2.8526e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in which they would be ||| 0.333333 0.605812 8.48644e-07 1.36175e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in which they would ||| 0.2 0.605812 8.48644e-07 7.514e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in which they ||| 0.0133779 0.605812 3.39458e-06 1.28035e-05 2.718 ||| 0-0 ||| 299 1.17835e+06 +en ||| in which to do ||| 0.125 0.605812 8.48644e-07 1.19741e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| in which to ||| 0.0175439 0.605812 2.54593e-06 0.000348559 2.718 ||| 0-0 ||| 171 1.17835e+06 +en ||| in which we are moving towards ||| 1 0.605812 8.48644e-07 5.09702e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in which we are moving ||| 0.166667 0.605812 8.48644e-07 4.0134e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in which we are ||| 0.00558659 0.605812 8.48644e-07 6.75656e-07 2.718 ||| 0-0 ||| 179 1.17835e+06 +en ||| in which we could take ||| 1 0.605812 8.48644e-07 5.09823e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in which we could ||| 0.03125 0.605812 8.48644e-07 3.1666e-08 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| in which we have ||| 0.0111111 0.605812 1.69729e-06 5.32582e-07 2.718 ||| 0-0 ||| 180 1.17835e+06 +en ||| in which we take ||| 0.25 0.605812 8.48644e-07 7.1695e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| in which we ||| 0.015896 0.605812 9.33509e-06 4.45311e-05 2.718 ||| 0-0 ||| 692 1.17835e+06 +en ||| in which you ||| 0.0141844 0.605812 1.69729e-06 1.2665e-05 2.718 ||| 0-0 ||| 141 1.17835e+06 +en ||| in which ||| 0.0136062 0.605812 0.000208766 0.00392265 2.718 ||| 0-0 ||| 18080 1.17835e+06 +en ||| in whichever way ||| 0.5 0.605812 8.48644e-07 4.97708e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in whichever ||| 0.05 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| in whom you have ||| 1 0.605812 8.48644e-07 1.18758e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in whom you ||| 1 0.605812 8.48644e-07 9.92974e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in whom ||| 0.0625 0.605812 8.48644e-07 3.07546e-05 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in whose ||| 0.0428571 0.605812 2.54593e-06 3.63884e-05 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| in will be like , ||| 1 0.605812 8.48644e-07 1.53332e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in will be like ||| 1 0.605812 8.48644e-07 1.28576e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in will be ||| 0.5 0.605812 8.48644e-07 7.24003e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in will ||| 0.333333 0.605812 8.48644e-07 0.00399496 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in wishing ||| 0.04 0.605812 8.48644e-07 6.83436e-06 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| in with a study ||| 1 0.605812 8.48644e-07 4.42401e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in with a ||| 0.0555556 0.605812 8.48644e-07 0.000130888 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| in with regard ||| 0.166667 0.605812 8.48644e-07 2.0106e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in with them when they ||| 1 0.605812 8.48644e-07 1.29241e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in with them when ||| 1 0.605812 8.48644e-07 3.95958e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in with them ||| 1 0.605812 8.48644e-07 7.92075e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in with ||| 0.126482 0.329678 2.71566e-05 0.00538386 2.718 ||| 0-0 0-1 ||| 253 1.17835e+06 +en ||| in women operating ||| 1 0.605812 8.48644e-07 2.46868e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in women ||| 0.0078125 0.605812 2.54593e-06 5.48596e-05 2.718 ||| 0-0 ||| 384 1.17835e+06 +en ||| in word ||| 0.030303 0.605812 8.48644e-07 4.70093e-05 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| in work by ||| 0.333333 0.0468744 8.48644e-07 1.15263e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| in work of ||| 1 0.605812 8.48644e-07 1.5891e-05 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in work to provide funds for social ||| 1 0.605812 8.48644e-07 4.65419e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in work to provide funds for ||| 1 0.605812 8.48644e-07 4.50551e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in work to provide funds ||| 1 0.605812 8.48644e-07 5.86219e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in work to provide ||| 1 0.605812 8.48644e-07 7.68308e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in work to ||| 0.2 0.605812 8.48644e-07 2.59739e-05 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| in work ||| 0.0186335 0.605812 2.54593e-06 0.000292307 2.718 ||| 0-0 ||| 161 1.17835e+06 +en ||| in working ||| 0.0133333 0.605812 1.69729e-06 8.79231e-05 2.718 ||| 0-0 ||| 150 1.17835e+06 +en ||| in workplaces ||| 0.047619 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| in world ||| 0.0833333 0.605812 1.69729e-06 0.000105194 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| in worrying about ||| 1 0.605812 8.48644e-07 7.31469e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in worrying ||| 1 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in writing ( ||| 0.0125 0.605812 8.48644e-07 9.72626e-08 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| in writing . ( es ) ||| 1 0.605812 8.48644e-07 8.08772e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in writing . ( es ||| 1 0.605812 8.48644e-07 5.62702e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in writing . ( sv ) In ||| 1 0.605812 8.48644e-07 6.36643e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in writing . ( sv ) ||| 0.333333 0.605812 8.48644e-07 4.10738e-18 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in writing . ( sv ||| 0.333333 0.605812 8.48644e-07 2.8577e-15 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| in writing . ( ||| 0.117647 0.605812 1.69729e-06 2.94608e-10 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| in writing . - ( BG ) ||| 0.0188679 0.605812 8.48644e-07 2.23617e-21 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| in writing . - ( BG ||| 0.0185185 0.605812 8.48644e-07 1.55581e-18 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| in writing . - ( CS ) ||| 0.0327869 0.605812 1.69729e-06 2.36395e-20 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| in writing . - ( CS ||| 0.0327869 0.605812 1.69729e-06 1.64471e-17 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| in writing . - ( DE ) ||| 0.00382409 0.605812 1.69729e-06 6.37307e-20 2.718 ||| 0-0 ||| 523 1.17835e+06 +en ||| in writing . - ( DE ||| 0.00380228 0.605812 1.69729e-06 4.43406e-17 2.718 ||| 0-0 ||| 526 1.17835e+06 +en ||| in writing . - ( EL ) ||| 0.008 0.605812 8.48644e-07 2.01255e-20 2.718 ||| 0-0 ||| 125 1.17835e+06 +en ||| in writing . - ( EL ||| 0.008 0.605812 8.48644e-07 1.40023e-17 2.718 ||| 0-0 ||| 125 1.17835e+06 +en ||| in writing . - ( ES ) ||| 0.030303 0.605812 8.48644e-07 1.32573e-20 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| in writing . - ( ES ||| 0.030303 0.605812 8.48644e-07 9.22373e-18 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| in writing . - ( HU ) ||| 0.00558659 0.605812 8.48644e-07 6.38904e-21 2.718 ||| 0-0 ||| 179 1.17835e+06 +en ||| in writing . - ( HU ||| 0.010989 0.605812 1.69729e-06 4.44517e-18 2.718 ||| 0-0 ||| 182 1.17835e+06 +en ||| in writing . - ( IT ) ||| 0.0128205 0.605812 3.39458e-06 4.08899e-20 2.718 ||| 0-0 ||| 312 1.17835e+06 +en ||| in writing . - ( IT ||| 0.0126984 0.605812 3.39458e-06 2.84491e-17 2.718 ||| 0-0 ||| 315 1.17835e+06 +en ||| in writing . - ( LT ) ||| 0.0166113 0.605812 4.24322e-06 1.83685e-20 2.718 ||| 0-0 ||| 301 1.17835e+06 +en ||| in writing . - ( LT ||| 0.0165563 0.605812 4.24322e-06 1.27799e-17 2.718 ||| 0-0 ||| 302 1.17835e+06 +en ||| in writing . - ( PL ) ||| 0.0167866 0.605812 5.94051e-06 5.17513e-20 2.718 ||| 0-0 ||| 417 1.17835e+06 +en ||| in writing . - ( PL ||| 0.0166271 0.605812 5.94051e-06 3.60059e-17 2.718 ||| 0-0 ||| 421 1.17835e+06 +en ||| in writing . - ( PT ) ||| 0.00718563 0.605812 5.09187e-06 1.53497e-19 2.718 ||| 0-0 ||| 835 1.17835e+06 +en ||| in writing . - ( PT ||| 0.00835322 0.605812 5.94051e-06 1.06795e-16 2.718 ||| 0-0 ||| 838 1.17835e+06 +en ||| in writing . - ( RO ) ||| 0.00284091 0.605812 8.48644e-07 1.90074e-20 2.718 ||| 0-0 ||| 352 1.17835e+06 +en ||| in writing . - ( RO ||| 0.0028169 0.605812 8.48644e-07 1.32244e-17 2.718 ||| 0-0 ||| 355 1.17835e+06 +en ||| in writing . - ( ||| 0.00702952 0.605812 2.97026e-05 1.11129e-12 2.718 ||| 0-0 ||| 4979 1.17835e+06 +en ||| in writing . - In ||| 0.0194175 0.605812 1.69729e-06 1.78609e-14 2.718 ||| 0-0 ||| 103 1.17835e+06 +en ||| in writing . - ||| 0.00461148 0.605812 3.39458e-05 1.15232e-09 2.718 ||| 0-0 ||| 8674 1.17835e+06 +en ||| in writing . in ||| 0.333333 0.605812 8.48644e-07 6.53873e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| in writing . ||| 0.0057853 0.605812 4.58268e-05 3.05484e-07 2.718 ||| 0-0 ||| 9334 1.17835e+06 +en ||| in writing in ||| 0.0588235 0.605812 8.48644e-07 2.15871e-06 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| in writing ||| 0.00679321 0.605812 5.77078e-05 0.000100853 2.718 ||| 0-0 ||| 10010 1.17835e+06 +en ||| in written ||| 0.0333333 0.605812 8.48644e-07 2.30891e-05 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| in x ||| 1 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in years to ||| 0.0816327 0.605812 3.39458e-06 6.98382e-06 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| in years ||| 0.0537634 0.605812 4.24322e-06 7.85951e-05 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| in yet ||| 0.272727 0.605812 2.54593e-06 0.000122141 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| in you at ||| 1 0.321886 8.48644e-07 2.76449e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| in you ||| 0.00925926 0.605812 8.48644e-07 0.00149095 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| in young ||| 0.166667 0.605812 8.48644e-07 2.94155e-05 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| in your famously ||| 1 0.605812 8.48644e-07 8.27188e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in your post ||| 1 0.605812 8.48644e-07 2.89516e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in your report ||| 0.00355872 0.605812 8.48644e-07 4.84378e-08 2.718 ||| 0-0 ||| 281 1.17835e+06 +en ||| in your ||| 0.00469145 0.605812 1.10324e-05 0.00011817 2.718 ||| 0-0 ||| 2771 1.17835e+06 +en ||| in youth ||| 0.0625 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| in zone ||| 0.5 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| in ||| 0.604935 0.605812 0.568295 0.461781 2.718 ||| 0-0 ||| 1.10698e+06 1.17835e+06 +en ||| in – ||| 0.25 0.605812 2.54593e-06 0.00018148 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| in ‘ coffee shops ||| 1 0.605812 8.48644e-07 9.85302e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in ‘ coffee ||| 1 0.605812 8.48644e-07 1.29645e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in ‘ ||| 0.107143 0.605812 2.54593e-06 5.1858e-05 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| in ‘ ’ ||| 1 0.605812 8.48644e-07 9.03419e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| in-depth debate ||| 0.0140845 0.181347 8.48644e-07 3.29899e-08 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| in-depth ||| 0.00342075 0.181347 2.54593e-06 0.0001667 2.718 ||| 0-0 ||| 877 1.17835e+06 +en ||| in-house at ||| 1 0.321886 8.48644e-07 2.80014e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| in-service trainee ships ||| 0.5 0.232877 8.48644e-07 2.06712e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| in-service trainee ||| 0.5 0.232877 8.48644e-07 1.276e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| inactive in ||| 0.166667 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| inadequacies in ||| 0.0714286 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| inadequately expressed in ||| 0.333333 0.605812 8.48644e-07 4.93736e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| inasfar ||| 0.5 0.2 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| inasmuch as ||| 0.00653595 0.279817 8.48644e-07 4.23483e-07 2.718 ||| 0-0 ||| 153 1.17835e+06 +en ||| inasmuch ||| 0.0485437 0.279817 4.24322e-06 4.15e-05 2.718 ||| 0-0 ||| 103 1.17835e+06 +en ||| incapable of ||| 0.00200803 0.0116562 8.48644e-07 6.8185e-08 2.718 ||| 0-1 ||| 498 1.17835e+06 +en ||| incarcerated in rough ||| 0.333333 0.605812 8.48644e-07 2.03184e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| incarcerated in ||| 0.222222 0.605812 1.69729e-06 5.07959e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| incentive for ||| 0.00754717 0.0286209 1.69729e-06 1.116e-07 2.718 ||| 0-1 ||| 265 1.17835e+06 +en ||| incentives in ||| 0.037037 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| incidence in ||| 0.2 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| incidentally , ||| 0.00238379 0.0055556 1.69729e-06 8.10932e-07 2.718 ||| 0-0 ||| 839 1.17835e+06 +en ||| incidentally in ||| 0.5 0.605812 8.48644e-07 9.65122e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| incidentally ||| 0.00379867 0.0055556 3.39458e-06 6.8e-06 2.718 ||| 0-0 ||| 1053 1.17835e+06 +en ||| incidents in question ||| 0.5 0.605812 8.48644e-07 3.43828e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| incidents in ||| 0.015873 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| incidents of ||| 0.0128205 0.0116562 8.48644e-07 1.22733e-07 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| inclination to indulge in ||| 0.5 0.605812 8.48644e-07 4.13613e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| include in the accounts any charge ||| 1 0.605812 8.48644e-07 8.8396e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| include in the accounts any ||| 1 0.605812 8.48644e-07 1.75389e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| include in the accounts ||| 1 0.605812 8.48644e-07 1.15983e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| include in the ||| 0.00952381 0.605812 8.48644e-07 3.75348e-06 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| include in ||| 0.00749064 0.605812 1.69729e-06 6.11398e-05 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| include it in ||| 0.016129 0.605812 8.48644e-07 1.08726e-06 2.718 ||| 0-2 ||| 62 1.17835e+06 +en ||| include more ||| 0.0322581 0.0042952 8.48644e-07 4.40495e-08 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| include on ||| 0.0833333 0.22993 8.48644e-07 1.09956e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| include provision for ||| 0.5 0.0286209 8.48644e-07 1.80967e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| include such matters in ||| 0.5 0.605812 8.48644e-07 2.34011e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| include those of ||| 0.2 0.0116562 8.48644e-07 1.30739e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| include ||| 0.000928613 0.0015517 6.78915e-06 1.09e-05 2.718 ||| 0-0 ||| 8615 1.17835e+06 +en ||| included , ||| 0.0097561 0.002128 1.69729e-06 1.2164e-06 2.718 ||| 0-0 ||| 205 1.17835e+06 +en ||| included among ||| 0.0181818 0.0422459 8.48644e-07 2.99071e-08 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| included anyway on ||| 0.5 0.22993 8.48644e-07 2.77618e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| included as signatories ||| 0.5 0.066968 8.48644e-07 3.04031e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| included as ||| 0.0131579 0.066968 8.48644e-07 1.68906e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| included in school ||| 1 0.605812 8.48644e-07 9.0625e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| included in the body of the text ||| 0.5 0.605812 8.48644e-07 6.57085e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| included in the body of the ||| 0.5 0.605812 8.48644e-07 7.60515e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| included in the body of ||| 0.5 0.605812 8.48644e-07 1.23879e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| included in the body ||| 0.5 0.605812 8.48644e-07 2.27869e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| included in the ||| 0.00235988 0.605812 3.39458e-06 2.66202e-06 2.718 ||| 0-1 ||| 1695 1.17835e+06 +en ||| included in ||| 0.024812 0.605812 5.60105e-05 4.33612e-05 2.718 ||| 0-1 ||| 2660 1.17835e+06 +en ||| included into ||| 0.0769231 0.525896 8.48644e-07 2.07869e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| included on ||| 0.025641 0.22993 2.54593e-06 7.79824e-06 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| included once again amongst ||| 1 0.050508 8.48644e-07 2.63091e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| included to ||| 0.2 0.0247351 8.48644e-07 2.63937e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| included under ||| 0.0454545 0.205566 8.48644e-07 5.30967e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| included ||| 0.000488918 0.002128 2.54593e-06 1.02e-05 2.718 ||| 0-0 ||| 6136 1.17835e+06 +en ||| includes on ||| 0.5 0.22993 8.48644e-07 2.41671e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| includes within it ||| 1 0.369196 8.48644e-07 5.73727e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| includes within ||| 0.5 0.369196 1.69729e-06 3.22623e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| includes ||| 0.00298954 0.0068123 1.01837e-05 1.97e-05 2.718 ||| 0-0 ||| 4014 1.17835e+06 +en ||| including , in ||| 0.0135135 0.605812 8.48644e-07 5.74926e-06 2.718 ||| 0-2 ||| 74 1.17835e+06 +en ||| including at ||| 0.0125 0.321886 8.48644e-07 4.17621e-06 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| including in ||| 0.0199501 0.605812 1.35783e-05 4.82099e-05 2.718 ||| 0-1 ||| 802 1.17835e+06 +en ||| including it in ||| 0.05 0.605812 8.48644e-07 8.57327e-07 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| including over 300 ||| 0.333333 0.157937 8.48644e-07 2.42644e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| including over ||| 0.0555556 0.157937 8.48644e-07 4.18352e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| including people in ||| 0.5 0.605812 8.48644e-07 4.24344e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| including the ||| 0.000230415 0.001249 8.48644e-07 4.86999e-08 2.718 ||| 0-0 0-1 ||| 4340 1.17835e+06 +en ||| including those in ||| 0.0107527 0.605812 8.48644e-07 3.49088e-08 2.718 ||| 0-2 ||| 93 1.17835e+06 +en ||| including through ||| 0.00714286 0.0366102 8.48644e-07 9.81778e-08 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| including voting ||| 0.5 0.0081975 8.48644e-07 6.46236e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| including ||| 0.000695346 0.0013311 1.27297e-05 1.7e-05 2.718 ||| 0-0 ||| 21572 1.17835e+06 +en ||| inclusion in ||| 0.0172911 0.605812 5.09187e-06 8.95855e-06 2.718 ||| 0-1 ||| 347 1.17835e+06 +en ||| inclusion of ||| 0.000801925 0.0116562 8.48644e-07 2.64558e-07 2.718 ||| 0-1 ||| 1247 1.17835e+06 +en ||| inclusive of ||| 0.142857 0.0116562 8.48644e-07 9.27316e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| income , as it were on behalf ||| 1 0.22993 8.48644e-07 2.25595e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| income , as it were on ||| 1 0.22993 8.48644e-07 7.08304e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| income at ||| 0.125 0.321886 8.48644e-07 8.80044e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| income in ||| 0.0327869 0.605812 1.69729e-06 1.01592e-05 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| incompatible on ||| 1 0.22993 8.48644e-07 4.15242e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| incompatible with ||| 0.00188679 0.0535436 8.48644e-07 5.82945e-08 2.718 ||| 0-1 ||| 530 1.17835e+06 +en ||| incomprehensible to me when ||| 1 0.142731 8.48644e-07 1.27404e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| incorporate into ||| 0.0140845 0.525896 8.48644e-07 2.94426e-07 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| incorporate them into ||| 0.0454545 0.525896 8.48644e-07 7.89769e-10 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| incorporated in ||| 0.0487805 0.605812 8.48644e-06 9.32798e-06 2.718 ||| 0-1 ||| 205 1.17835e+06 +en ||| incorporated into ||| 0.0212014 0.525896 1.01837e-05 4.47173e-07 2.718 ||| 0-1 ||| 566 1.17835e+06 +en ||| incorporated within ||| 0.142857 0.369196 8.48644e-07 2.23951e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| incorporates ||| 0.00796813 0.0070922 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 251 1.17835e+06 +en ||| incorporation in ||| 0.1 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| increase at ||| 0.111111 0.321886 8.48644e-07 5.16826e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| increase cultural diversity and ||| 1 0.0010182 8.48644e-07 2.70589e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| increase for ||| 0.0204082 0.0286209 8.48644e-07 1.48647e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| increase in competition ||| 0.2 0.605812 8.48644e-07 2.16573e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| increase in ||| 0.00576441 0.605812 1.95188e-05 5.96621e-05 2.718 ||| 0-1 ||| 3990 1.17835e+06 +en ||| increase of ||| 0.00214133 0.0116562 8.48644e-07 1.7619e-06 2.718 ||| 0-1 ||| 467 1.17835e+06 +en ||| increase over ||| 0.04 0.157937 8.48644e-07 5.1773e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| increase to such ||| 0.2 0.0247351 8.48644e-07 7.5134e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| increase to ||| 0.025641 0.0247351 1.69729e-06 3.63159e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| increase ||| 5.87199e-05 6.07e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 17030 1.17835e+06 +en ||| increased by ||| 0.01 0.0468744 2.54593e-06 4.22803e-07 2.718 ||| 0-1 ||| 300 1.17835e+06 +en ||| increased dramatically in ||| 0.142857 0.605812 8.48644e-07 1.74424e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| increased in size ||| 0.25 0.605812 8.48644e-07 8.58349e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| increased in ||| 0.00970874 0.605812 8.48644e-07 2.29505e-05 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| increasing expenditure on ||| 0.5 0.22993 8.48644e-07 1.29918e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| increasing in ||| 0.0704225 0.605812 4.24322e-06 2.39203e-05 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| increasing the ||| 0.000653595 0.0011669 8.48644e-07 1.48391e-07 2.718 ||| 0-1 ||| 1530 1.17835e+06 +en ||| increasingly becoming ||| 0.015873 0.163705 8.48644e-07 4.40525e-08 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| increasingly being denounced by ||| 0.5 0.0468744 8.48644e-07 3.48617e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| increasingly common among ||| 0.25 0.0422459 8.48644e-07 4.23783e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| increasingly commonplace in ||| 0.5 0.605812 8.48644e-07 3.7238e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| increasingly embedded in ||| 0.5 0.605812 8.48644e-07 6.64965e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| increasingly in keeping with ||| 0.25 0.0535436 8.48644e-07 8.43768e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| increasingly in ||| 0.025 0.605812 8.48644e-07 2.65986e-05 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| increasingly on ||| 0.0909091 0.22993 8.48644e-07 4.78359e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| increasingly threatening to take over ||| 1 0.157937 8.48644e-07 1.9152e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| incumbent on ||| 0.056338 0.22993 3.39458e-06 1.31216e-06 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| incur ||| 0.00943396 0.146789 8.48644e-07 2.18e-05 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| incurred for ||| 0.0384615 0.0286209 8.48644e-07 1.08149e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| incurred through ||| 0.142857 0.0366102 8.48644e-07 8.83976e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| incurred when ||| 0.25 0.142731 8.48644e-07 5.5961e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| incurring ||| 0.0243902 0.25 8.48644e-07 1.57e-05 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| indebted for ||| 0.5 0.124547 8.48644e-07 4.38348e-07 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| indeed , along ||| 0.5 0.155535 8.48644e-07 7.18998e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| indeed , at ||| 0.0789474 0.321886 2.54593e-06 3.61551e-06 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| indeed , being in ||| 1 0.605812 8.48644e-07 1.18776e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| indeed , continuing to do ||| 0.5 0.0247351 8.48644e-07 5.40228e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| indeed , continuing to ||| 0.5 0.0247351 8.48644e-07 1.57258e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| indeed , in ||| 0.044335 0.605812 7.6378e-06 4.17372e-05 2.718 ||| 0-2 ||| 203 1.17835e+06 +en ||| indeed , on ||| 0.0588235 0.22993 1.69729e-06 7.50617e-06 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| indeed , they are being abandoned in ||| 1 0.605812 8.48644e-07 7.41159e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| indeed , we ||| 0.0108696 0.0054082 8.48644e-07 2.04618e-07 2.718 ||| 0-2 ||| 92 1.17835e+06 +en ||| indeed , ||| 0.00140499 0.0919982 6.78915e-06 0.000194433 2.718 ||| 0-0 ||| 5694 1.17835e+06 +en ||| indeed around ||| 1 0.159384 8.48644e-07 8.74692e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| indeed at ||| 0.136364 0.321886 2.54593e-06 3.03175e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| indeed be the case ||| 1 0.0011669 8.48644e-07 4.2098e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| indeed be the ||| 0.2 0.0011669 8.48644e-07 3.93476e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| indeed carried ||| 0.166667 0.0919982 8.48644e-07 4.80479e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| indeed continue ||| 0.25 0.0919982 8.48644e-07 3.77275e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| indeed in future ||| 0.111111 0.605812 8.48644e-07 9.29557e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| indeed in that ||| 1 0.605812 8.48644e-07 5.88729e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| indeed in ||| 0.15 0.605812 1.78215e-05 0.000349984 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| indeed lodged in ||| 1 0.605812 8.48644e-07 1.25994e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| indeed merit ||| 1 0.0919982 8.48644e-07 8.80416e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| indeed not . ||| 0.2 0.0919982 8.48644e-07 1.68605e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| indeed not ||| 0.0333333 0.0919982 8.48644e-07 5.56635e-06 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| indeed on ||| 0.027027 0.22993 8.48644e-07 6.29424e-05 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| indeed place an ||| 0.25 0.0919982 8.48644e-07 1.09062e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| indeed place ||| 0.2 0.0919982 8.48644e-07 2.45375e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| indeed that ||| 0.0133333 0.0919982 8.48644e-07 2.74259e-05 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| indeed this ||| 0.0172414 0.0919982 8.48644e-07 1.05347e-05 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| indeed to ||| 0.00617284 0.0247351 8.48644e-07 2.13033e-05 2.718 ||| 0-1 ||| 162 1.17835e+06 +en ||| indeed we are demanding ||| 1 0.0919982 8.48644e-07 3.84735e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| indeed we are ||| 0.0714286 0.0919982 8.48644e-07 2.80828e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| indeed we ||| 0.0120482 0.0919982 8.48644e-07 1.85088e-05 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| indeed when ||| 0.142857 0.142731 8.48644e-07 4.51201e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| indeed you continue to do so ; ||| 1 0.0919982 8.48644e-07 2.59936e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| indeed you continue to do so ||| 1 0.0919982 8.48644e-07 8.43948e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| indeed you continue to do ||| 1 0.0919982 8.48644e-07 3.71833e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| indeed you continue to ||| 1 0.0919982 8.48644e-07 1.08239e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| indeed you continue ||| 1 0.0919982 8.48644e-07 1.21811e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| indeed you ||| 0.0666667 0.0919982 8.48644e-07 5.26407e-06 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| indeed ||| 0.0062239 0.0919982 6.70429e-05 0.0016304 2.718 ||| 0-0 ||| 12693 1.17835e+06 +en ||| independent channel . ||| 0.25 0.0035211 8.48644e-07 1.03895e-13 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| independent channel ||| 0.166667 0.0035211 8.48644e-07 3.43e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| index hit ||| 0.5 0.0118343 8.48644e-07 4.382e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| index ||| 0.00469484 0.0118343 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 213 1.17835e+06 +en ||| indicate on ||| 0.5 0.22993 8.48644e-07 1.82706e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| indicated by your agenda , on a ||| 1 0.22993 8.48644e-07 1.37046e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| indicated by your agenda , on ||| 1 0.22993 8.48644e-07 3.09179e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| indicated in ||| 0.0212766 0.605812 5.09187e-06 1.08057e-05 2.718 ||| 0-1 ||| 282 1.17835e+06 +en ||| indicated on ||| 0.0465116 0.22993 1.69729e-06 1.94333e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| indicating ||| 0.00366972 0.0064516 1.69729e-06 2.7e-06 2.718 ||| 0-0 ||| 545 1.17835e+06 +en ||| indication in ||| 0.333333 0.605812 8.48644e-07 9.97447e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| indication of ||| 0.00248756 0.0116562 8.48644e-07 2.94559e-07 2.718 ||| 0-1 ||| 402 1.17835e+06 +en ||| indication whatsoever of ||| 0.5 0.0986001 8.48644e-07 1.29404e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| indication whatsoever ||| 0.166667 0.0986001 8.48644e-07 2.38032e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| indication ||| 0.00092081 0.000878 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1086 1.17835e+06 +en ||| indicative of ||| 0.00746269 0.0116562 8.48644e-07 8.86405e-08 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| indicators in ||| 0.0333333 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| indicted in ||| 0.111111 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| indictment of ||| 0.0192308 0.0116562 8.48644e-07 2.45466e-08 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| indictment on ||| 0.25 0.22993 8.48644e-07 1.49487e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| indiscriminately whenever ||| 0.142857 0.0380466 8.48644e-07 5.016e-11 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| indispensable in ||| 0.025 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| individual in ||| 0.037037 0.605812 8.48644e-07 6.52958e-05 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| individual liable to tax in ||| 1 0.605812 8.48644e-07 6.20688e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| individuals in ||| 0.0166667 0.605812 8.48644e-07 1.49617e-05 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| individuals on ||| 0.047619 0.22993 8.48644e-07 2.69077e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| individuals portrayed in current abuse ||| 0.1 0.605812 8.48644e-07 1.38868e-19 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| individuals portrayed in current ||| 0.1 0.605812 8.48644e-07 7.89021e-15 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| individuals portrayed in ||| 0.1 0.605812 8.48644e-07 4.78775e-11 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| indoors , on ||| 0.333333 0.22993 8.48644e-07 3.96156e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| indoors ||| 0.0909091 0.2 8.48644e-07 3.4e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| indulge in ||| 0.0660377 0.605812 5.94051e-06 3.32482e-06 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| indulging in ||| 0.04 0.605812 1.69729e-06 2.17037e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| industries in ||| 0.0344828 0.605812 1.69729e-06 7.48085e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| industry as ||| 0.011236 0.066968 8.48644e-07 2.3762e-06 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| industry in ||| 0.0129199 0.605812 4.24322e-06 6.10013e-05 2.718 ||| 0-1 ||| 387 1.17835e+06 +en ||| industry into ||| 0.2 0.525896 8.48644e-07 2.92434e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| industry reach markets in ||| 1 0.605812 8.48644e-07 1.38845e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| inefficiency at ||| 0.25 0.321886 8.48644e-07 1.60008e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| inevitably , largely be ||| 0.25 0.247761 8.48644e-07 1.77607e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| inevitably , largely ||| 0.25 0.247761 8.48644e-07 9.80016e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| inevitably wield , given ||| 1 0.0546585 8.48644e-07 2.95437e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| infanticide takes place at ||| 1 0.321886 8.48644e-07 3.11129e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| infertile soil where ||| 1 0.247783 8.48644e-07 4.29237e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| infiltrate ||| 0.0769231 0.309524 8.48644e-07 8.8e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| infiltrating ||| 0.125 0.4 8.48644e-07 4.1e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| inflation . at ||| 1 0.321886 8.48644e-07 5.21014e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| influence in ||| 0.00980392 0.605812 1.69729e-06 1.57929e-05 2.718 ||| 0-1 ||| 204 1.17835e+06 +en ||| influence on ||| 0.0239521 0.22993 6.78915e-06 2.84026e-06 2.718 ||| 0-1 ||| 334 1.17835e+06 +en ||| influence over ||| 0.00699301 0.157937 8.48644e-07 1.37046e-07 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| influence the choice ||| 0.166667 0.108638 8.48644e-07 1.06374e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| influence the ||| 0.00334448 0.108638 8.48644e-07 2.38507e-05 2.718 ||| 0-0 ||| 299 1.17835e+06 +en ||| influence ||| 0.00470035 0.108638 1.69729e-05 0.0003885 2.718 ||| 0-0 ||| 4255 1.17835e+06 +en ||| influenced by ||| 0.00862069 0.0468744 1.69729e-06 4.59383e-08 2.718 ||| 0-1 ||| 232 1.17835e+06 +en ||| influenced ||| 0.00518135 0.116838 1.69729e-06 4.63e-05 2.718 ||| 0-0 ||| 386 1.17835e+06 +en ||| influences ||| 0.0119048 0.14902 1.69729e-06 2.59e-05 2.718 ||| 0-0 ||| 168 1.17835e+06 +en ||| influencing and ||| 0.25 0.314607 8.48644e-07 9.54474e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| influencing ||| 0.00469484 0.314607 8.48644e-07 7.62e-05 2.718 ||| 0-0 ||| 213 1.17835e+06 +en ||| informally referred to in ||| 1 0.605812 8.48644e-07 4.31955e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| information , however ||| 0.5 0.0053256 8.48644e-07 7.38743e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| information appears on ||| 1 0.22993 8.48644e-07 7.17463e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| information concerning ||| 0.00649351 0.0888235 8.48644e-07 2.00569e-07 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| information in ||| 0.00907029 0.605812 3.39458e-06 7.64248e-05 2.718 ||| 0-1 ||| 441 1.17835e+06 +en ||| information is required for ||| 0.5 0.0286209 8.48644e-07 9.47073e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| information note in ||| 1 0.605812 8.48644e-07 7.97875e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| information on where ||| 0.125 0.238856 8.48644e-07 1.17056e-07 2.718 ||| 0-1 0-2 ||| 8 1.17835e+06 +en ||| information on ||| 0.00256739 0.22993 5.09187e-06 1.37445e-05 2.718 ||| 0-1 ||| 2337 1.17835e+06 +en ||| information providers in ||| 0.5 0.605812 8.48644e-07 3.59196e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| informs us in ||| 0.333333 0.605812 8.48644e-07 1.46404e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| infrastructure in ||| 0.0183486 0.605812 1.69729e-06 3.32482e-06 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| infrastructures in ||| 0.0434783 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| infringement of ||| 0.00306748 0.0116562 8.48644e-07 8.86405e-08 2.718 ||| 0-1 ||| 326 1.17835e+06 +en ||| ingredient in ||| 0.142857 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| ingredients throughout ||| 1 0.309047 8.48644e-07 9.28256e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ingredients used in ||| 0.142857 0.605812 8.48644e-07 6.33933e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| inhabitants of ||| 0.00483092 0.0116562 1.69729e-06 1.07732e-07 2.718 ||| 0-1 ||| 414 1.17835e+06 +en ||| inhabited by ||| 0.0149254 0.0468744 8.48644e-07 1.87156e-08 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| inherent in ||| 0.019685 0.605812 4.24322e-06 5.63373e-06 2.718 ||| 0-1 ||| 254 1.17835e+06 +en ||| initial emphasis ||| 1 0.0033428 8.48644e-07 2.3144e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| initialled in ||| 0.333333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| initially , ||| 0.00628931 0.144202 8.48644e-07 2.36124e-05 2.718 ||| 0-0 ||| 159 1.17835e+06 +en ||| initially at ||| 0.2 0.321886 8.48644e-07 3.88019e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| initially in ||| 0.0357143 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| initially indicate ||| 1 0.144202 8.48644e-07 4.356e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| initially is to try ||| 0.25 0.144202 8.48644e-07 8.49176e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| initially is to ||| 0.25 0.144202 8.48644e-07 5.51413e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| initially is ||| 0.2 0.144202 8.48644e-07 6.20554e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| initially listed as ||| 0.25 0.066968 8.48644e-07 1.88441e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| initially on ||| 0.125 0.22993 8.48644e-07 8.05569e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| initially took ||| 0.125 0.144202 8.48644e-07 2.9205e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| initially ||| 0.00912547 0.144202 1.01837e-05 0.000198 2.718 ||| 0-0 ||| 1315 1.17835e+06 +en ||| initiated ||| 0.00203252 0.0459482 1.69729e-06 3.74e-05 2.718 ||| 0-0 ||| 984 1.17835e+06 +en ||| initiative by ||| 0.00529101 0.0468744 8.48644e-07 5.32544e-07 2.718 ||| 0-1 ||| 189 1.17835e+06 +en ||| initiative in ||| 0.00534759 0.605812 1.69729e-06 2.89075e-05 2.718 ||| 0-1 ||| 374 1.17835e+06 +en ||| initiative will come to ||| 1 0.0247351 8.48644e-07 1.29284e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| initiatives in third ||| 1 0.605812 8.48644e-07 6.8508e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| initiatives in ||| 0.00677966 0.605812 1.69729e-06 1.46385e-05 2.718 ||| 0-1 ||| 295 1.17835e+06 +en ||| initiatives under ||| 0.0666667 0.205566 8.48644e-07 1.79251e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| injected in commonly-used ||| 1 0.605812 8.48644e-07 1.29299e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| injected in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| injustice in ||| 0.0526316 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| inland waterway vessels report in ||| 0.5 0.605812 8.48644e-07 1.49913e-20 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| inmates of ||| 0.125 0.0116562 8.48644e-07 9.5459e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| innocent in ||| 0.142857 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| innovation , to ||| 0.0666667 0.0247351 8.48644e-07 3.85485e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| innovation in ||| 0.00457666 0.605812 1.69729e-06 5.31048e-06 2.718 ||| 0-1 ||| 437 1.17835e+06 +en ||| inordinately long time in ||| 1 0.605812 8.48644e-07 1.02587e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| input from ||| 0.012987 0.0308834 8.48644e-07 4.79443e-08 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| input to ||| 0.0384615 0.0247351 8.48644e-07 3.54165e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| inquiries before us in ||| 1 0.605812 8.48644e-07 8.32174e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| inquiry into ||| 0.00854701 0.525896 8.48644e-07 1.04045e-07 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| inroads into ||| 0.0833333 0.525896 8.48644e-07 2.4351e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| insert in ||| 0.166667 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| insert into ||| 0.111111 0.525896 8.48644e-07 3.98471e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| inserted in ||| 0.037037 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| inserted into ||| 0.0344828 0.525896 8.48644e-07 6.41982e-08 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| inside a ||| 0.0625 0.188717 8.48644e-07 8.47509e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| inside and ||| 0.00416667 0.188717 8.48644e-07 2.39495e-06 2.718 ||| 0-0 ||| 240 1.17835e+06 +en ||| inside of the fast track ||| 1 0.188717 8.48644e-07 4.64968e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| inside of the fast ||| 1 0.188717 8.48644e-07 1.17416e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| inside of the ||| 0.25 0.188717 8.48644e-07 6.38131e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| inside of ||| 0.333333 0.188717 8.48644e-07 1.03944e-05 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| inside out ||| 0.0434783 0.188717 8.48644e-07 7.32372e-07 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| inside their own country or across ||| 1 0.188717 8.48644e-07 1.58615e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| inside their own country or ||| 1 0.188717 8.48644e-07 1.54596e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| inside their own country ||| 0.5 0.188717 8.48644e-07 1.35219e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| inside their own ||| 0.333333 0.188717 8.48644e-07 3.75712e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| inside their ||| 0.142857 0.188717 8.48644e-07 2.2162e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| inside was ||| 0.333333 0.188717 8.48644e-07 5.9903e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| inside ||| 0.0900243 0.188717 0.000125599 0.0001912 2.718 ||| 0-0 ||| 1644 1.17835e+06 +en ||| insist , in ||| 0.5 0.605812 8.48644e-07 1.16747e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| insist on having in ||| 1 0.605812 8.48644e-07 2.50812e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| insist on ||| 0.0136426 0.22993 8.48644e-06 1.76063e-06 2.718 ||| 0-1 ||| 733 1.17835e+06 +en ||| insist ||| 0.00759301 0.221585 8.48644e-06 0.0004471 2.718 ||| 0-0 ||| 1317 1.17835e+06 +en ||| insisted on ||| 0.00673401 0.173861 1.69729e-06 6.60402e-07 2.718 ||| 0-0 ||| 297 1.17835e+06 +en ||| insisted ||| 0.00792079 0.173861 3.39458e-06 9.87e-05 2.718 ||| 0-0 ||| 505 1.17835e+06 +en ||| insistence on ||| 0.00632911 0.22993 8.48644e-07 2.4084e-07 2.718 ||| 0-1 ||| 158 1.17835e+06 +en ||| insistence ||| 0.00273224 0.0993072 8.48644e-07 2.93e-05 2.718 ||| 0-0 ||| 366 1.17835e+06 +en ||| insistent on ||| 0.111111 0.22993 8.48644e-07 9.13532e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| insisting on these things ||| 1 0.22993 8.48644e-07 1.13278e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| insisting on these ||| 0.5 0.22993 8.48644e-07 2.75614e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| insisting on ||| 0.015 0.220185 2.54593e-06 7.29165e-06 2.718 ||| 0-0 0-1 ||| 200 1.17835e+06 +en ||| insisting upon ||| 0.166667 0.210441 8.48644e-07 2.08262e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| insisting ||| 0.00295858 0.210441 8.48644e-07 8.78e-05 2.718 ||| 0-0 ||| 338 1.17835e+06 +en ||| insists on the rights ||| 1 0.22993 8.48644e-07 7.14146e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| insists on the ||| 0.0185185 0.22993 8.48644e-07 3.56894e-09 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| insists on ||| 0.0047619 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 210 1.17835e+06 +en ||| insists ||| 0.00857143 0.198745 2.54593e-06 6.46e-05 2.718 ||| 0-0 ||| 350 1.17835e+06 +en ||| insofar as it ||| 0.01 0.066968 8.48644e-07 4.95818e-09 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| insofar as ||| 0.0158103 0.066968 6.78915e-06 2.78812e-07 2.718 ||| 0-1 ||| 506 1.17835e+06 +en ||| insofar ||| 0.0726257 0.371166 2.20648e-05 0.0003293 2.718 ||| 0-0 ||| 358 1.17835e+06 +en ||| inspection , in ||| 0.5 0.605812 8.48644e-07 4.3505e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| inspection at ||| 0.2 0.321886 8.48644e-07 3.16016e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| inspection missions in Member States ||| 1 0.605812 8.48644e-07 2.24266e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| inspection missions in Member ||| 1 0.605812 8.48644e-07 4.69963e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| inspection missions in ||| 1 0.605812 8.48644e-07 9.12018e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| inspections take place in ||| 0.5 0.605812 8.48644e-07 6.04216e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| installed at long last on ||| 1 0.22993 8.48644e-07 1.6701e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| installed for ||| 0.5 0.0286209 8.48644e-07 7.47838e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| installed in ||| 0.0789474 0.605812 2.54593e-06 3.00158e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| instance , in ||| 0.0116279 0.605812 8.48644e-07 3.56851e-06 2.718 ||| 0-2 ||| 86 1.17835e+06 +en ||| instance . in ||| 0.5 0.605812 8.48644e-07 9.0638e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| instance for us ||| 1 0.0286209 8.48644e-07 2.14879e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| instance for ||| 0.1 0.0286209 8.48644e-07 7.45537e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| instance when ||| 0.111111 0.142731 8.48644e-07 3.85774e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| instances in ||| 0.0277778 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| instances when ||| 0.05 0.142731 8.48644e-07 6.84629e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| instead , he ||| 0.125 0.340662 8.48644e-07 3.51113e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| instead , ||| 0.00376547 0.340662 5.94051e-06 0.00040233 2.718 ||| 0-0 ||| 1859 1.17835e+06 +en ||| instead advised ||| 0.333333 0.104 8.48644e-07 7.14726e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| instead getting ||| 0.2 0.340662 8.48644e-07 3.92024e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| instead in the ||| 0.333333 0.605812 8.48644e-07 5.72378e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| instead in ||| 0.2 0.605812 1.69729e-06 9.32336e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| instead is ||| 0.0232558 0.340662 8.48644e-07 0.000105735 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| instead of ||| 0.000716161 0.0116562 2.54593e-06 2.75331e-06 2.718 ||| 0-1 ||| 4189 1.17835e+06 +en ||| instead on ||| 0.047619 0.22993 8.48644e-07 1.67675e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| instead the programme ||| 0.166667 0.340662 8.48644e-07 2.63868e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| instead the ||| 0.027027 0.340662 8.48644e-07 0.000207118 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| instead to ||| 0.0155039 0.340662 1.69729e-06 0.000299781 2.718 ||| 0-0 ||| 129 1.17835e+06 +en ||| instead under ||| 0.5 0.205566 8.48644e-07 1.14166e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| instead ||| 0.00425341 0.340662 3.22485e-05 0.0033737 2.718 ||| 0-0 ||| 8934 1.17835e+06 +en ||| instigated at ||| 0.1 0.321886 8.48644e-07 1.00005e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| institute in ||| 0.0666667 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| instituted against us in ||| 1 0.605812 8.48644e-07 6.9864e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| institution Standard & ||| 0.0769231 0.0223684 8.48644e-07 5.70024e-16 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| institution in ||| 0.043956 0.605812 3.39458e-06 1.26066e-05 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| institution of the ||| 0.00757576 0.0116562 8.48644e-07 2.28556e-08 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| institution of ||| 0.00512821 0.0116562 8.48644e-07 3.7229e-07 2.718 ||| 0-1 ||| 195 1.17835e+06 +en ||| institutionalisation in ||| 1 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| institutionalized in ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| institutions , including in ||| 0.5 0.605812 8.48644e-07 3.01836e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| institutions acquire information on ||| 1 0.22993 8.48644e-07 1.19783e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| institutions as ||| 0.0128205 0.066968 8.48644e-07 9.44365e-07 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| institutions had already decided beforehand against ||| 1 0.153982 8.48644e-07 5.22677e-23 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| institutions immediately in ||| 1 0.605812 8.48644e-07 9.60043e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| institutions in a ||| 0.111111 0.605812 8.48644e-07 1.07461e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| institutions in ||| 0.00711744 0.605812 1.69729e-06 2.42435e-05 2.718 ||| 0-1 ||| 281 1.17835e+06 +en ||| institutions take ||| 0.0909091 0.0074151 8.48644e-07 1.53615e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| instruction in ||| 0.0588235 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| instructions of ||| 0.047619 0.0116562 8.48644e-07 4.36384e-08 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| instrument in ||| 0.030303 0.605812 2.54593e-06 1.9441e-05 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| instruments by ||| 0.333333 0.0468744 8.48644e-07 2.20334e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| insufficient in ||| 0.0526316 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| insured in ||| 0.111111 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| integral part ||| 0.00273973 0.0009084 8.48644e-07 1.8146e-10 2.718 ||| 0-1 ||| 365 1.17835e+06 +en ||| integrated in to ||| 0.5 0.605812 8.48644e-07 8.28867e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| integrated in ||| 0.0181818 0.605812 8.48644e-07 9.32798e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| integrated internal market in energy , ||| 1 0.605812 8.48644e-07 1.03703e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| integrated internal market in energy ||| 1 0.605812 8.48644e-07 8.69592e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| integrated internal market in ||| 0.5 0.605812 8.48644e-07 9.78169e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| integrated into ||| 0.0110193 0.525896 3.39458e-06 4.47173e-07 2.718 ||| 0-1 ||| 363 1.17835e+06 +en ||| integrated members of ||| 0.333333 0.0116562 8.48644e-07 4.06314e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| integrating them into ||| 0.0769231 0.525896 8.48644e-07 2.13772e-10 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| integration in ||| 0.0135747 0.605812 2.54593e-06 9.14327e-06 2.718 ||| 0-1 ||| 221 1.17835e+06 +en ||| intellectual property in ||| 0.0526316 0.605812 8.48644e-07 5.11561e-11 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| intend , in ||| 0.333333 0.605812 8.48644e-07 4.40006e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| intend instead to ||| 0.5 0.340662 8.48644e-07 2.39525e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| intend instead ||| 0.5 0.340662 8.48644e-07 2.69559e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| intend to do about ||| 0.111111 0.0401564 8.48644e-07 6.99037e-11 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| intended for ||| 0.00129366 0.0286209 8.48644e-07 1.01016e-06 2.718 ||| 0-1 ||| 773 1.17835e+06 +en ||| intended to bring ||| 0.0454545 0.0247351 8.48644e-07 7.6826e-10 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| intended to enter in ||| 0.166667 0.605812 8.48644e-07 1.77613e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| intended to ||| 0.00131868 0.0247351 2.54593e-06 2.46791e-06 2.718 ||| 0-1 ||| 2275 1.17835e+06 +en ||| intends at ||| 0.25 0.321886 8.48644e-07 7.64038e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| intends to have over ||| 1 0.157937 8.48644e-07 8.13384e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| intends to ||| 0.00117994 0.0247351 1.69729e-06 5.36869e-07 2.718 ||| 0-1 ||| 1695 1.17835e+06 +en ||| intensify the effort to deprive working people ||| 0.5 0.0029456 8.48644e-07 1.15224e-25 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| intensify the effort to deprive working ||| 0.5 0.0029456 8.48644e-07 1.30906e-22 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| intensify this work in ||| 1 0.605812 8.48644e-07 4.72179e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| intensively in ||| 0.0909091 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| intent on ||| 0.00819672 0.22993 8.48644e-07 9.88276e-07 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| intention in ||| 0.027027 0.605812 8.48644e-07 2.60906e-05 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| intention of ||| 0.00129366 0.0116562 8.48644e-07 7.7049e-07 2.718 ||| 0-1 ||| 773 1.17835e+06 +en ||| intention to ||| 0.00129702 0.0247351 8.48644e-07 1.58812e-06 2.718 ||| 0-1 ||| 771 1.17835e+06 +en ||| intentions in ||| 0.0357143 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| inter alia within ||| 1 0.369196 8.48644e-07 1.98762e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| inter group in ||| 1 0.605812 8.48644e-07 6.42356e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| interest , by ||| 0.166667 0.0468744 8.48644e-07 1.1393e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| interest , on ||| 1 0.22993 8.48644e-07 1.11221e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| interest in regard to ||| 1 0.605812 8.48644e-07 3.13759e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| interest in regard ||| 1 0.605812 8.48644e-07 3.53101e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| interest in small businesses and trades , ||| 0.333333 0.605812 8.48644e-07 5.80703e-22 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| interest in small businesses and trades ||| 0.333333 0.605812 8.48644e-07 4.86943e-21 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| interest in small businesses and ||| 0.333333 0.605812 8.48644e-07 2.21338e-15 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| interest in small businesses ||| 0.333333 0.605812 8.48644e-07 1.76704e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| interest in small ||| 0.333333 0.605812 8.48644e-07 6.64301e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| interest in ||| 0.00921376 0.605812 1.27297e-05 5.1858e-05 2.718 ||| 0-1 ||| 1628 1.17835e+06 +en ||| interest of ||| 0.00138889 0.0116562 8.48644e-07 1.53144e-06 2.718 ||| 0-1 ||| 720 1.17835e+06 +en ||| interest to a political ||| 1 0.0247351 8.48644e-07 2.49752e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| interest to a ||| 0.166667 0.0247351 8.48644e-07 1.39917e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| interest to ||| 0.00362976 0.0247351 1.69729e-06 3.15656e-06 2.718 ||| 0-1 ||| 551 1.17835e+06 +en ||| interest within ||| 0.25 0.369196 1.69729e-06 1.24504e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| interested in ||| 0.00362319 0.605812 3.39458e-06 9.78976e-06 2.718 ||| 0-1 ||| 1104 1.17835e+06 +en ||| interests first ||| 0.0555556 0.138055 8.48644e-07 8.37941e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| interests in mind ||| 0.2 0.605812 8.48644e-07 1.59478e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| interests in ||| 0.018018 0.605812 3.39458e-06 6.33102e-05 2.718 ||| 0-1 ||| 222 1.17835e+06 +en ||| interests of ||| 0.00061703 0.0116562 2.54593e-06 1.86963e-06 2.718 ||| 0-1 ||| 4862 1.17835e+06 +en ||| interests when ||| 0.166667 0.142731 8.48644e-07 8.16197e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| interfere in ||| 0.00344828 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 290 1.17835e+06 +en ||| interfere less in ||| 1 0.605812 8.48644e-07 1.96488e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| interfere with ||| 0.00826446 0.0535436 1.69729e-06 2.91473e-08 2.718 ||| 0-1 ||| 242 1.17835e+06 +en ||| interfering with ||| 0.0166667 0.0535436 8.48644e-07 3.38108e-08 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| intergroup in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| internal fighting within its ||| 0.25 0.369196 8.48644e-07 2.00081e-14 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| internal fighting within ||| 0.25 0.369196 8.48644e-07 1.40437e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| internal market in energy , ||| 0.2 0.605812 8.48644e-07 5.13381e-14 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| internal market in energy ||| 0.0344828 0.605812 8.48644e-07 4.30491e-13 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| internal market in ||| 0.00287356 0.605812 8.48644e-07 4.84242e-09 2.718 ||| 0-2 ||| 348 1.17835e+06 +en ||| internally within ||| 0.117647 0.369196 1.69729e-06 3.54774e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| internally ||| 0.00154083 0.0629921 8.48644e-07 3.81e-05 2.718 ||| 0-0 ||| 649 1.17835e+06 +en ||| international coordination by ||| 1 0.0468744 8.48644e-07 9.94259e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| international ||| 3.09483e-05 0.0001012 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 32312 1.17835e+06 +en ||| internationally competitive ||| 0.0714286 0.0446927 8.48644e-07 1.03904e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| internationally ||| 0.0018018 0.0446927 1.69729e-06 5.44e-05 2.718 ||| 0-0 ||| 1110 1.17835e+06 +en ||| interpretation at ||| 0.25 0.321886 8.48644e-07 6.32032e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| interpretation of ||| 0.00218341 0.0116562 8.48644e-07 2.15465e-07 2.718 ||| 0-1 ||| 458 1.17835e+06 +en ||| interpreted in ||| 0.0240964 0.605812 1.69729e-06 4.80252e-06 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| interpreted into ||| 0.25 0.525896 8.48644e-07 2.30228e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| intervals at ||| 1 0.321886 8.48644e-07 1.16006e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| intervene in ||| 0.00746269 0.605812 2.54593e-06 3.32482e-06 2.718 ||| 0-1 ||| 402 1.17835e+06 +en ||| intervening in ||| 0.00869565 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| intervention at ||| 0.04 0.321886 8.48644e-07 1.06405e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| intervention in ||| 0.00914634 0.605812 2.54593e-06 1.22834e-05 2.718 ||| 0-1 ||| 328 1.17835e+06 +en ||| interviews on ||| 0.142857 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| into ' ||| 0.0588235 0.525896 8.48644e-07 7.60394e-05 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| into , ||| 0.115385 0.525896 2.54593e-06 0.00263998 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| into - and can some clear guidance ||| 1 0.525896 8.48644e-07 8.12261e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into - and can some clear ||| 1 0.525896 8.48644e-07 1.12814e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into - and can some ||| 1 0.525896 8.48644e-07 3.38882e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into - and can ||| 1 0.525896 8.48644e-07 3.11101e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into - and ||| 1 0.525896 8.48644e-07 1.04596e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into - ||| 0.2 0.525896 8.48644e-07 8.35041e-05 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| into Europe ||| 0.0134228 0.525896 3.39458e-06 1.12015e-05 2.718 ||| 0-0 ||| 298 1.17835e+06 +en ||| into Irish ||| 0.25 0.525896 8.48644e-07 5.66715e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| into Italy from ||| 1 0.525896 8.48644e-07 3.99279e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into Italy ||| 0.0769231 0.525896 8.48644e-07 2.47938e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| into Union ||| 1 0.525896 8.48644e-07 1.23393e-05 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into West ||| 0.333333 0.525896 8.48644e-07 3.27632e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| into a National ||| 1 0.525896 8.48644e-07 1.52094e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into a competition of ||| 0.5 0.525896 8.48644e-07 1.93642e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into a competition ||| 0.142857 0.525896 8.48644e-07 3.56195e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| into a department ||| 0.5 0.525896 8.48644e-07 6.37815e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into a holy ||| 1 0.525896 8.48644e-07 1.37375e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into a linchpin ||| 0.5 0.525896 8.48644e-07 6.86877e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into a number of ||| 0.0625 0.525896 8.48644e-07 2.6395e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| into a number ||| 0.05 0.525896 8.48644e-07 4.85524e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| into a period in ||| 1 0.605812 8.48644e-07 3.66718e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| into a state ||| 0.0322581 0.525896 8.48644e-07 2.47865e-07 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| into a synthesis in ||| 0.5 0.605812 8.48644e-07 2.31169e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| into a tight spot ||| 0.333333 0.525896 8.48644e-07 1.26366e-13 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| into a tight ||| 0.333333 0.525896 8.48644e-07 9.22378e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| into a western entitled ||| 0.166667 0.525896 8.48644e-07 1.91933e-13 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| into a western ||| 0.166667 0.525896 8.48644e-07 3.92501e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| into a world ||| 0.142857 0.525896 8.48644e-07 2.2353e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| into a ||| 0.0402494 0.525896 0.000120507 0.000981254 2.718 ||| 0-0 ||| 3528 1.17835e+06 +en ||| into account . all ||| 1 0.525896 8.48644e-07 9.10962e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into account . ||| 0.00222717 0.525896 8.48644e-07 1.9278e-08 2.718 ||| 0-0 ||| 449 1.17835e+06 +en ||| into account facts ||| 1 0.525896 8.48644e-07 1.30472e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into account in ||| 0.018595 0.605812 7.6378e-06 1.36307e-07 2.718 ||| 0-2 ||| 484 1.17835e+06 +en ||| into account when assessing ||| 0.25 0.525896 8.48644e-07 1.36809e-14 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| into account when considering ||| 0.2 0.525896 8.48644e-07 9.60843e-14 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| into account when ||| 0.00793651 0.525896 1.69729e-06 3.1816e-09 2.718 ||| 0-0 ||| 252 1.17835e+06 +en ||| into account where ||| 0.333333 0.247783 8.48644e-07 2.5139e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| into account ||| 0.00577617 0.525896 3.39458e-05 6.36447e-06 2.718 ||| 0-0 ||| 6925 1.17835e+06 +en ||| into action by ||| 0.125 0.0468744 8.48644e-07 2.64036e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| into action ||| 0.00573066 0.525896 1.69729e-06 6.69211e-06 2.718 ||| 0-0 ||| 349 1.17835e+06 +en ||| into actually achieving far-reaching ||| 0.5 0.525896 8.48644e-07 3.26675e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into actually achieving ||| 0.5 0.525896 8.48644e-07 6.04954e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into actually ||| 0.5 0.525896 8.48644e-07 9.13828e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into all of ||| 0.1 0.525896 8.48644e-07 5.68689e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| into all the ||| 0.02 0.525896 8.48644e-07 6.42205e-06 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| into all ||| 0.00940439 0.525896 2.54593e-06 0.000104608 2.718 ||| 0-0 ||| 319 1.17835e+06 +en ||| into an a-national sub-species ||| 1 0.525896 8.48644e-07 1.5743e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into an a-national ||| 1 0.525896 8.48644e-07 3.93575e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into an ||| 0.0278207 0.525896 1.52756e-05 9.83937e-05 2.718 ||| 0-0 ||| 647 1.17835e+06 +en ||| into and been ||| 1 0.525896 8.48644e-07 9.25925e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into and out of ||| 0.0454545 0.525896 8.48644e-07 5.77416e-08 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| into and out ||| 0.0526316 0.525896 8.48644e-07 1.06213e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| into and ||| 0.108696 0.525896 4.24322e-06 0.00027729 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| into any ||| 0.0212766 0.525896 8.48644e-07 3.3476e-05 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| into areas ||| 0.0238095 0.525896 8.48644e-07 5.06723e-06 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| into at ||| 0.375 0.423891 2.54593e-06 0.000885536 2.718 ||| 0-0 0-1 ||| 8 1.17835e+06 +en ||| into bad ways a ||| 1 0.525896 8.48644e-07 4.32289e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into bad ways ||| 1 0.525896 8.48644e-07 9.75254e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into bad ||| 0.0833333 0.525896 8.48644e-07 1.01167e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| into balance ||| 0.0714286 0.525896 8.48644e-07 1.19541e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| into being , ||| 0.05 0.525896 1.69729e-06 7.51285e-06 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| into being in ||| 0.153846 0.605812 1.69729e-06 1.34922e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| into being ||| 0.0803571 0.525896 1.52756e-05 6.29983e-05 2.718 ||| 0-0 ||| 224 1.17835e+06 +en ||| into both ||| 0.133333 0.525896 1.69729e-06 3.66704e-05 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| into buyer / seller ||| 1 0.525896 8.48644e-07 1.42564e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into buyer / ||| 1 0.525896 8.48644e-07 3.56411e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into buyer ||| 1 0.525896 8.48644e-07 1.54961e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into by ||| 0.125 0.525896 1.69729e-06 0.000116223 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| into carnivores , like ||| 0.333333 0.525896 8.48644e-07 1.87533e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| into carnivores , ||| 0.2 0.525896 8.48644e-07 1.05599e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| into carnivores ||| 0.166667 0.525896 8.48644e-07 8.85492e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| into certain ||| 0.0769231 0.525896 8.48644e-07 6.30913e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| into commercial ||| 0.166667 0.525896 8.48644e-07 4.22822e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| into concrete ||| 0.222222 0.525896 1.69729e-06 6.92897e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| into consideration in a number ||| 1 0.605812 8.48644e-07 1.12303e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| into consideration in a ||| 1 0.605812 8.48644e-07 2.26966e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| into consideration in ||| 0.03125 0.605812 2.54593e-06 5.1204e-08 2.718 ||| 0-2 ||| 96 1.17835e+06 +en ||| into consideration ||| 0.00587544 0.525896 8.48644e-06 2.39083e-06 2.718 ||| 0-0 ||| 1702 1.17835e+06 +en ||| into context ||| 0.047619 0.525896 8.48644e-07 2.97083e-06 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| into country ||| 0.333333 0.525896 8.48644e-07 7.96721e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| into decisions on ||| 0.166667 0.22993 8.48644e-07 6.50578e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| into detail , ||| 0.037037 0.525896 8.48644e-07 1.34903e-07 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| into detail ||| 0.0172414 0.525896 1.69729e-06 1.13122e-06 2.718 ||| 0-0 ||| 116 1.17835e+06 +en ||| into different areas of ||| 1 0.525896 8.48644e-07 6.06595e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into different areas ||| 0.166667 0.525896 8.48644e-07 1.1158e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| into different ||| 0.0740741 0.525896 1.69729e-06 4.87463e-06 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| into discontent and annoyance ||| 0.5 0.525896 8.48644e-07 1.55282e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into discontent and ||| 0.5 0.525896 8.48644e-07 1.10916e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into discontent ||| 0.5 0.525896 8.48644e-07 8.85492e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into discussion ||| 0.133333 0.525896 1.69729e-06 1.91266e-06 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| into disrepute ||| 0.0208333 0.525896 8.48644e-07 5.53433e-08 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| into doing so ||| 0.5 0.525896 8.48644e-07 1.8445e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into doing ||| 0.1 0.525896 8.48644e-07 8.1266e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| into each other ||| 0.333333 0.525896 8.48644e-07 8.05016e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| into each ||| 0.0833333 0.525896 8.48644e-07 6.21394e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| into earth ||| 1 0.525896 8.48644e-07 3.18777e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into effect , ||| 0.02 0.525896 8.48644e-07 8.80696e-07 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| into effect by ||| 0.2 0.525896 8.48644e-07 3.8772e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| into effect in ||| 0.136364 0.605812 2.54593e-06 1.58163e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| into effect on ||| 0.142857 0.22993 8.48644e-07 2.84447e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| into effect ||| 0.0229008 0.525896 1.01837e-05 7.385e-06 2.718 ||| 0-0 ||| 524 1.17835e+06 +en ||| into effective ||| 0.333333 0.525896 8.48644e-07 1.44999e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| into euros at ||| 1 0.321886 8.48644e-07 2.50527e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| into even ||| 0.0666667 0.525896 8.48644e-07 1.34705e-05 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| into ever ||| 0.5 0.525896 8.48644e-07 4.1596e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into everyday terms ||| 0.333333 0.525896 8.48644e-07 1.65226e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| into everyday ||| 0.2 0.525896 8.48644e-07 1.50534e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| into existence ||| 0.0232558 0.525896 8.48644e-07 1.52969e-06 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| into first ||| 0.142857 0.525896 8.48644e-07 1.19187e-05 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| into focus ||| 0.0833333 0.525896 2.54593e-06 1.71343e-06 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| into for ||| 0.5 0.525896 8.48644e-07 0.000170141 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into force , there will be ||| 1 0.525896 8.48644e-07 2.15942e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into force , there will ||| 1 0.525896 8.48644e-07 1.19154e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into force , there ||| 1 0.525896 8.48644e-07 1.37731e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into force , ||| 0.00438596 0.525896 8.48644e-07 4.49324e-07 2.718 ||| 0-0 ||| 228 1.17835e+06 +en ||| into force according to ||| 1 0.525896 8.48644e-07 2.96295e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into force according ||| 1 0.525896 8.48644e-07 3.33448e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into force along ||| 0.5 0.155535 8.48644e-07 1.39009e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| into force everywhere ||| 1 0.525896 8.48644e-07 7.04573e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into force immediately in ||| 1 0.605812 8.48644e-07 3.19547e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| into force in ||| 0.0392157 0.605812 3.39458e-06 8.06936e-08 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| into force with regard to ||| 0.5 0.0247351 8.48644e-07 2.13859e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| into force ||| 0.00301003 0.525896 7.6378e-06 3.76777e-06 2.718 ||| 0-0 ||| 2990 1.17835e+06 +en ||| into fully ||| 1 0.525896 8.48644e-07 2.51037e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into functional tyres ||| 0.5 0.525896 8.48644e-07 1.04709e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into functional ||| 0.5 0.525896 8.48644e-07 9.51904e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into genuine ||| 0.0833333 0.525896 8.48644e-07 7.48241e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| into hiding ||| 0.166667 0.525896 8.48644e-07 1.68243e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| into in ||| 0.736842 0.565854 1.1881e-05 0.0102226 2.718 ||| 0-0 0-1 ||| 19 1.17835e+06 +en ||| into international ||| 0.5 0.525896 8.48644e-07 1.71343e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into isolation ||| 0.0714286 0.525896 8.48644e-07 1.43892e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| into it ||| 0.0508475 0.525896 7.6378e-06 0.000393672 2.718 ||| 0-0 ||| 177 1.17835e+06 +en ||| into its own ||| 0.0512821 0.525896 1.69729e-06 5.34681e-08 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| into its ||| 0.0272374 0.525896 5.94051e-06 3.1539e-05 2.718 ||| 0-0 ||| 257 1.17835e+06 +en ||| into law in ||| 0.2 0.605812 8.48644e-07 8.35857e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| into legislation is ||| 0.5 0.525896 8.48644e-07 5.57127e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into legislation ||| 0.0333333 0.525896 8.48644e-07 1.77763e-06 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| into line in ||| 0.5 0.605812 8.48644e-07 1.39578e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| into line with one another ||| 0.5 0.525896 8.48644e-07 4.18788e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into line with one ||| 0.5 0.525896 8.48644e-07 1.73699e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into line with the annexes to the ||| 1 0.525896 8.48644e-07 1.53525e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into line with the annexes to ||| 1 0.525896 8.48644e-07 2.50075e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into line with the annexes ||| 1 0.525896 8.48644e-07 2.81431e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into line with the ||| 0.00684932 0.525896 8.48644e-07 2.55846e-09 2.718 ||| 0-0 ||| 146 1.17835e+06 +en ||| into line with ||| 0.0185185 0.525896 5.09187e-06 4.16744e-08 2.718 ||| 0-0 ||| 324 1.17835e+06 +en ||| into line ||| 0.0390625 0.525896 1.27297e-05 6.51722e-06 2.718 ||| 0-0 ||| 384 1.17835e+06 +en ||| into low-value ||| 1 0.525896 8.48644e-07 8.85492e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into mainstream ||| 0.5 0.525896 8.48644e-07 7.96943e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into making ||| 0.0357143 0.525896 8.48644e-07 8.51622e-06 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| into meeting ||| 0.25 0.525896 8.48644e-07 2.78044e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| into more ||| 0.0212766 0.525896 8.48644e-07 5.0555e-05 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| into much detail on ||| 1 0.377913 8.48644e-07 9.42933e-11 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| into my head ||| 0.5 0.525896 8.48644e-07 1.0293e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into my ||| 0.0322581 0.525896 8.48644e-07 1.42365e-05 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| into national ||| 0.0192308 0.525896 8.48644e-07 2.84464e-06 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| into nothing but ||| 0.333333 0.525896 8.48644e-07 2.81544e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| into nothing more than ||| 0.333333 0.525896 8.48644e-07 2.87423e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| into nothing more ||| 0.75 0.525896 2.54593e-06 9.40828e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| into nothing ||| 0.5 0.525896 4.24322e-06 4.11975e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| into oblivion ||| 0.0833333 0.525896 8.48644e-07 3.09922e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| into on ||| 0.4 0.377913 1.69729e-06 0.00183847 2.718 ||| 0-0 0-1 ||| 5 1.17835e+06 +en ||| into one ||| 0.00943396 0.525896 1.69729e-06 9.22683e-05 2.718 ||| 0-0 ||| 212 1.17835e+06 +en ||| into ones ||| 0.5 0.525896 8.48644e-07 4.89234e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into operation ||| 0.00625 0.525896 8.48644e-07 1.25961e-06 2.718 ||| 0-0 ||| 160 1.17835e+06 +en ||| into other ||| 0.00684932 0.525896 8.48644e-07 2.86789e-05 2.718 ||| 0-0 ||| 146 1.17835e+06 +en ||| into our ||| 0.0070922 0.525896 2.54593e-06 3.05362e-05 2.718 ||| 0-0 ||| 423 1.17835e+06 +en ||| into perspective ||| 0.0384615 0.525896 1.69729e-06 7.17249e-07 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| into place ||| 0.0365854 0.525896 2.54593e-06 3.33166e-05 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| into play at ||| 0.5 0.423891 8.48644e-07 2.28468e-07 2.718 ||| 0-0 0-2 ||| 2 1.17835e+06 +en ||| into play in ||| 0.2 0.605812 8.48644e-07 1.22321e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| into play too ||| 0.5 0.525896 8.48644e-07 7.77325e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into play ||| 0.025974 0.525896 3.39458e-06 5.71142e-06 2.718 ||| 0-0 ||| 154 1.17835e+06 +en ||| into practical ||| 0.181818 0.525896 1.69729e-06 9.71827e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| into practice through ||| 0.25 0.525896 8.48644e-07 1.074e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| into practice ||| 0.00875486 0.525896 7.6378e-06 2.33327e-06 2.718 ||| 0-0 ||| 1028 1.17835e+06 +en ||| into purchasing ||| 1 0.525896 8.48644e-07 6.41982e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into question at ||| 0.0833333 0.423891 8.48644e-07 7.32604e-07 2.718 ||| 0-0 0-2 ||| 12 1.17835e+06 +en ||| into question in a ||| 0.5 0.525896 8.48644e-07 1.7376e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into question in ||| 0.166667 0.525896 1.69729e-06 3.92006e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| into question ||| 0.00898876 0.525896 6.78915e-06 1.83142e-05 2.718 ||| 0-0 ||| 890 1.17835e+06 +en ||| into real and ||| 1 0.525896 8.48644e-07 4.98844e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into real ||| 0.1875 0.525896 2.54593e-06 3.9825e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| into reality ||| 0.00869565 0.525896 8.48644e-07 1.48099e-06 2.718 ||| 0-0 ||| 115 1.17835e+06 +en ||| into regular ||| 0.25 0.525896 8.48644e-07 3.89616e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| into rehabilitation ||| 1 0.525896 8.48644e-07 1.54961e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into round holes ||| 0.25 0.525896 8.48644e-07 3.05628e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| into round ||| 0.25 0.525896 8.48644e-07 1.69793e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| into serious strife ||| 1 0.525896 8.48644e-07 1.78515e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into serious ||| 0.0689655 0.525896 1.69729e-06 2.55022e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| into service ||| 0.0181818 0.525896 8.48644e-07 1.48099e-06 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| into serving ||| 1 0.525896 8.48644e-07 2.47938e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into several ||| 0.105263 0.525896 1.69729e-06 1.44999e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| into slavery in ||| 1 0.605812 8.48644e-07 8.53399e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| into some kind ||| 0.0714286 0.525896 8.48644e-07 1.17677e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| into some ||| 0.0535714 0.525896 2.54593e-06 2.41142e-05 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| into something coherent ||| 1 0.525896 8.48644e-07 8.82216e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into something ||| 0.0149254 0.525896 8.48644e-07 1.2253e-05 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| into specific ||| 0.2 0.525896 8.48644e-07 3.34495e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| into storage and will be ||| 1 0.525896 8.48644e-07 2.34764e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into storage and will ||| 1 0.525896 8.48644e-07 1.2954e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into storage and ||| 1 0.525896 8.48644e-07 1.49736e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into storage ||| 0.333333 0.525896 8.48644e-07 1.19541e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| into subsequent ||| 0.333333 0.525896 8.48644e-07 3.49769e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| into such a ||| 0.0714286 0.525896 8.48644e-07 2.03012e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| into such ||| 0.0263158 0.525896 8.48644e-07 4.57999e-05 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| into taking ||| 0.0526316 0.525896 8.48644e-07 9.40835e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| into the European Union ||| 0.00160256 0.525896 8.48644e-07 2.53312e-09 2.718 ||| 0-0 ||| 624 1.17835e+06 +en ||| into the European ||| 0.0192308 0.525896 8.48644e-07 4.54452e-06 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| into the air ||| 0.0416667 0.525896 8.48644e-07 7.48836e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| into the analysis , ||| 1 0.525896 8.48644e-07 5.47807e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into the analysis ||| 0.2 0.525896 8.48644e-07 4.59358e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| into the centre of ||| 0.111111 0.525896 8.48644e-07 2.36427e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| into the centre ||| 0.0666667 0.525896 8.48644e-07 4.34896e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| into the ditch , always a ||| 1 0.525896 8.48644e-07 4.9426e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into the ditch , always ||| 1 0.525896 8.48644e-07 1.11506e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into the ditch , ||| 1 0.525896 8.48644e-07 6.48292e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into the ditch ||| 1 0.525896 8.48644e-07 5.43619e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into the form of ||| 0.5 0.0116562 8.48644e-07 3.91269e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| into the industry , ||| 0.25 0.525896 8.48644e-07 2.14098e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| into the industry ||| 0.0666667 0.525896 8.48644e-07 1.7953e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| into the kind ||| 0.166667 0.525896 8.48644e-07 6.63216e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| into the picture as ||| 1 0.525896 8.48644e-07 4.74295e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into the picture ||| 0.0714286 0.525896 8.48644e-07 4.64795e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| into the question ||| 0.0625 0.0011669 8.48644e-07 2.43324e-09 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| into the ring related ||| 0.5 0.525896 8.48644e-07 4.45088e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into the ring ||| 0.2 0.525896 8.48644e-07 6.79524e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| into the room for the ||| 1 0.525896 8.48644e-07 2.39828e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into the room for ||| 0.5 0.525896 8.48644e-07 3.90652e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into the room ||| 0.5 0.525896 8.48644e-07 5.08284e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into the substance of ||| 0.2 0.525896 8.48644e-07 2.17956e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| into the substance ||| 0.125 0.525896 8.48644e-07 4.00919e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| into the survey ||| 1 0.525896 8.48644e-07 6.79524e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into the ||| 0.0167947 0.525896 0.000139178 0.00135905 2.718 ||| 0-0 ||| 9765 1.17835e+06 +en ||| into their heads ||| 0.25 0.525896 8.48644e-07 7.46687e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| into their ||| 0.00588235 0.525896 1.69729e-06 2.56593e-05 2.718 ||| 0-0 ||| 340 1.17835e+06 +en ||| into this matter ||| 0.0416667 0.525896 8.48644e-07 1.48402e-07 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| into this ||| 0.00335196 0.525896 2.54593e-06 0.000143038 2.718 ||| 0-0 ||| 895 1.17835e+06 +en ||| into to ||| 0.5 0.525896 8.48644e-07 0.00196708 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into too much ||| 0.142857 0.525896 8.48644e-07 3.02403e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| into too ||| 0.75 0.525896 2.54593e-06 3.01289e-05 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| into training ||| 0.2 0.525896 8.48644e-07 7.81447e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| into uniform ||| 1 0.525896 8.48644e-07 1.90381e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| into use been ||| 0.5 0.525896 8.48644e-07 3.59403e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into use ||| 0.0344828 0.525896 8.48644e-07 1.07632e-05 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| into utter ||| 0.333333 0.525896 8.48644e-07 1.35038e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| into very ||| 0.0645161 0.525896 1.69729e-06 7.70267e-05 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| into virtually ||| 0.2 0.525896 8.48644e-07 3.67479e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| into what I would call ||| 0.5 0.525896 8.48644e-07 2.86248e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into what I would ||| 0.5 0.525896 8.48644e-07 1.28941e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into what I ||| 0.5 0.525896 8.48644e-07 2.19709e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into what ||| 0.01 0.525896 8.48644e-07 3.10608e-05 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| into whipping boys - ||| 0.5 0.525896 8.48644e-07 1.87049e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into whipping boys ||| 0.5 0.525896 8.48644e-07 4.95876e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into whipping ||| 0.5 0.525896 8.48644e-07 1.54961e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into work ||| 0.0172414 0.525896 8.48644e-07 1.40129e-05 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| into yet ||| 0.5 0.525896 8.48644e-07 5.85532e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| into ||| 0.621233 0.525896 0.0236526 0.0221373 2.718 ||| 0-0 ||| 44864 1.17835e+06 +en ||| introduce an exemption in ||| 1 0.605812 8.48644e-07 6.39778e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| introduce in ||| 0.047619 0.605812 8.48644e-07 2.3597e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| introduce this in relation to ||| 1 0.605812 8.48644e-07 3.29627e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| introduce this in relation ||| 1 0.605812 8.48644e-07 3.70959e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| introduce this in ||| 1 0.605812 8.48644e-07 1.5247e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| introduced , for example , higher ||| 1 0.0286209 8.48644e-07 1.85486e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| introduced , for example , ||| 1 0.0286209 8.48644e-07 4.40584e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| introduced , for example ||| 1 0.0286209 8.48644e-07 3.69448e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| introduced , for ||| 0.333333 0.0286209 8.48644e-07 1.26915e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| introduced and ||| 0.0181818 0.0010182 8.48644e-07 8.53497e-08 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| introduced at ||| 0.015625 0.321886 8.48644e-07 3.70019e-06 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| introduced by means of ||| 0.333333 0.0116562 8.48644e-07 4.19674e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| introduced by ||| 0.00221729 0.0468744 8.48644e-07 7.86907e-07 2.718 ||| 0-1 ||| 451 1.17835e+06 +en ||| introduced in secondary schools ||| 0.25 0.605812 8.48644e-07 2.73033e-15 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| introduced in secondary ||| 0.25 0.605812 8.48644e-07 2.9046e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| introduced in ||| 0.0299003 0.605812 7.6378e-06 4.27148e-05 2.718 ||| 0-1 ||| 301 1.17835e+06 +en ||| introduced into ||| 0.0347826 0.525896 3.39458e-06 2.0477e-06 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| introduced on ||| 0.0731707 0.22993 2.54593e-06 7.68198e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| introduced there ||| 0.142857 0.0117359 8.48644e-07 1.0373e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| introduced with ||| 0.0333333 0.0535436 8.48644e-07 1.07845e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| introduced within ||| 0.181818 0.369196 1.69729e-06 1.02552e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| introducing into the survey ||| 1 0.525896 8.48644e-07 2.12691e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| introducing into the ||| 0.111111 0.525896 8.48644e-07 4.25382e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| introducing into ||| 0.0526316 0.525896 8.48644e-07 6.92897e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| introduction of the single currency in ||| 0.25 0.605812 8.48644e-07 4.80248e-16 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| introduction of ||| 0.000953592 0.0116562 2.54593e-06 7.15943e-07 2.718 ||| 0-1 ||| 3146 1.17835e+06 +en ||| introduction to ||| 0.0116279 0.0247351 8.48644e-07 1.47569e-06 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| intrusion in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| invariably staffed by ||| 0.125 0.0468744 8.48644e-07 2.05872e-14 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| inventions ||| 0.00289017 0.0824373 8.48644e-07 3.13e-05 2.718 ||| 0-0 ||| 346 1.17835e+06 +en ||| invest in ||| 0.00594732 0.605812 5.94051e-06 4.34074e-06 2.718 ||| 0-1 ||| 1177 1.17835e+06 +en ||| invested in ||| 0.0118577 0.605812 2.54593e-06 3.50954e-06 2.718 ||| 0-1 ||| 253 1.17835e+06 +en ||| invested into ||| 1 0.525896 8.48644e-07 1.68243e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| investigate in ||| 0.333333 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| investigated in ||| 0.0454545 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| investigation at ||| 0.25 0.321886 8.48644e-07 7.36037e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| investigations in ||| 0.0333333 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| investing for ||| 0.333333 0.0286209 8.48644e-07 3.68166e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| investing in ||| 0.00525624 0.605812 3.39458e-06 1.4777e-06 2.718 ||| 0-1 ||| 761 1.17835e+06 +en ||| investment in ||| 0.00347977 0.605812 6.78915e-06 1.13136e-05 2.718 ||| 0-1 ||| 2299 1.17835e+06 +en ||| investments in ||| 0.00332779 0.605812 1.69729e-06 3.00158e-06 2.718 ||| 0-1 ||| 601 1.17835e+06 +en ||| investor to another ||| 0.5 0.0247351 8.48644e-07 9.48768e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| investor to ||| 0.166667 0.0247351 8.48644e-07 3.93516e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| investors in ||| 0.0204082 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| invited and ||| 0.111111 0.0010182 8.48644e-07 5.99755e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| invited to ||| 0.00408163 0.0247351 8.48644e-07 1.82704e-07 2.718 ||| 0-1 ||| 245 1.17835e+06 +en ||| invites them back into ||| 1 0.525896 8.48644e-07 4.39337e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| invoked as the legal ||| 1 0.066968 8.48644e-07 6.1541e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| invoked as the ||| 0.5 0.066968 8.48644e-07 4.74853e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| invoked as ||| 0.333333 0.066968 8.48644e-07 7.7348e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| invoking ||| 0.00917431 0.0238095 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| involve in ||| 0.1 0.605812 8.48644e-07 2.27658e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| involve it in ||| 0.25 0.605812 8.48644e-07 4.04849e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| involve ||| 0.00497866 0.0184384 1.1881e-05 5.51e-05 2.718 ||| 0-0 ||| 2812 1.17835e+06 +en ||| involved , in ||| 0.0434783 0.605812 8.48644e-07 1.90431e-05 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| involved during ||| 0.5 0.226251 8.48644e-07 9.99812e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| involved for ||| 0.0153846 0.0286209 8.48644e-07 3.9785e-06 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| involved from ||| 0.0833333 0.0308834 8.48644e-07 1.3158e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| involved here ||| 0.0108696 0.0855319 8.48644e-07 1.03743e-06 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| involved in , ||| 0.0769231 0.605812 8.48644e-07 1.90431e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| involved in an uprising , not ||| 1 0.605812 8.48644e-07 6.35738e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| involved in an uprising , ||| 1 0.605812 8.48644e-07 1.86209e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| involved in an uprising ||| 1 0.605812 8.48644e-07 1.56144e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| involved in an ||| 0.03125 0.605812 8.48644e-07 7.09747e-07 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| involved in it ||| 0.0263158 0.605812 8.48644e-07 2.83969e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| involved in making ||| 0.0769231 0.605812 8.48644e-07 6.14304e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| involved in the case ||| 0.2 0.605812 8.48644e-07 1.04885e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| involved in the information society ||| 0.5 0.605812 8.48644e-07 9.39395e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| involved in the information ||| 0.333333 0.605812 8.48644e-07 1.62244e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| involved in the ||| 0.00220426 0.605812 2.54593e-06 9.80328e-06 2.718 ||| 0-1 ||| 1361 1.17835e+06 +en ||| involved in these negotiations ||| 0.142857 0.605812 8.48644e-07 9.17469e-12 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| involved in these ||| 0.0123457 0.605812 8.48644e-07 1.65608e-07 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| involved in work ||| 0.166667 0.605812 8.48644e-07 1.0108e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| involved in ||| 0.0278412 0.605812 0.000103535 0.000159684 2.718 ||| 0-1 ||| 4382 1.17835e+06 +en ||| involved to ||| 0.00657895 0.0247351 8.48644e-07 9.71985e-06 2.718 ||| 0-1 ||| 152 1.17835e+06 +en ||| involved when we come ||| 0.5 0.142731 8.48644e-07 1.98485e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| involved when we ||| 0.5 0.142731 8.48644e-07 2.33704e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| involved when ||| 0.0769231 0.142731 8.48644e-07 2.05865e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| involved with ||| 0.0282486 0.0535436 4.24322e-06 4.03165e-06 2.718 ||| 0-1 ||| 177 1.17835e+06 +en ||| involved ||| 0.00187126 0.0101887 1.69729e-05 0.0001014 2.718 ||| 0-0 ||| 10688 1.17835e+06 +en ||| involvement in ||| 0.02079 0.605812 8.48644e-06 1.38073e-05 2.718 ||| 0-1 ||| 481 1.17835e+06 +en ||| involves ||| 0.00294334 0.0273327 6.78915e-06 5.92e-05 2.718 ||| 0-0 ||| 2718 1.17835e+06 +en ||| involving , ||| 0.0666667 0.0505311 1.69729e-06 2.54847e-05 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| involving a ||| 0.00591716 0.0505311 8.48644e-07 9.47242e-06 2.718 ||| 0-0 ||| 169 1.17835e+06 +en ||| involving all ||| 0.00735294 0.0256098 8.48644e-07 1.55574e-08 2.718 ||| 0-0 0-1 ||| 136 1.17835e+06 +en ||| involving both ||| 0.025 0.0505311 8.48644e-07 3.53994e-07 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| involving cars ||| 0.2 0.0505311 8.48644e-07 3.61153e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| involving tens ||| 0.166667 0.0505311 8.48644e-07 1.38905e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| involving the ||| 0.00109649 0.0505311 8.48644e-07 1.31194e-05 2.718 ||| 0-0 ||| 912 1.17835e+06 +en ||| involving them in ||| 0.166667 0.605812 1.69729e-06 3.87707e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| involving ||| 0.0177134 0.0505311 5.60105e-05 0.0002137 2.718 ||| 0-0 ||| 3726 1.17835e+06 +en ||| irregularities in ||| 0.0131579 0.605812 1.69729e-06 1.84712e-06 2.718 ||| 0-1 ||| 152 1.17835e+06 +en ||| irritation at ||| 0.125 0.321886 8.48644e-07 1.60008e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| is , as a ||| 0.0769231 0.066968 8.48644e-07 2.98007e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| is , as ||| 0.00655738 0.066968 1.69729e-06 6.72311e-05 2.718 ||| 0-2 ||| 305 1.17835e+06 +en ||| is , at ||| 0.0413223 0.321886 4.24322e-06 0.00014951 2.718 ||| 0-2 ||| 121 1.17835e+06 +en ||| is , for example , with horses ||| 1 0.0286209 8.48644e-07 2.10006e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is , for example , with ||| 1 0.0286209 8.48644e-07 9.54571e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is , for example , ||| 0.0232558 0.0286209 8.48644e-07 1.4928e-09 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| is , for example ||| 0.0263158 0.0286209 8.48644e-07 1.25177e-08 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| is , for ||| 0.0322581 0.0286209 3.39458e-06 4.30015e-05 2.718 ||| 0-2 ||| 124 1.17835e+06 +en ||| is , having ||| 0.333333 0.0065553 8.48644e-07 2.87419e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is , in fact , ||| 0.00314465 0.605812 8.48644e-07 6.02928e-07 2.718 ||| 0-2 ||| 318 1.17835e+06 +en ||| is , in fact ||| 0.00322581 0.605812 8.48644e-07 5.0558e-06 2.718 ||| 0-2 ||| 310 1.17835e+06 +en ||| is , in the ||| 0.046875 0.605812 2.54593e-06 0.000105959 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| is , in ||| 0.0644876 0.605812 6.1951e-05 0.00172594 2.718 ||| 0-2 ||| 1132 1.17835e+06 +en ||| is , of course , ||| 0.000970874 0.0116562 8.48644e-07 7.66903e-09 2.718 ||| 0-2 ||| 1030 1.17835e+06 +en ||| is , of course ||| 0.0010917 0.0116562 8.48644e-07 6.4308e-08 2.718 ||| 0-2 ||| 916 1.17835e+06 +en ||| is , of ||| 0.0080429 0.0116562 2.54593e-06 5.09693e-05 2.718 ||| 0-2 ||| 373 1.17835e+06 +en ||| is , on ||| 0.060241 0.22993 4.24322e-06 0.000310399 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| is , to ||| 0.0169492 0.0247351 2.54593e-06 0.000105057 2.718 ||| 0-2 ||| 177 1.17835e+06 +en ||| is , today , at a standstill ||| 1 0.321886 8.48644e-07 2.56804e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is , today , at a ||| 1 0.321886 8.48644e-07 3.56672e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is , today , at ||| 1 0.321886 8.48644e-07 8.0466e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is , towards ||| 0.333333 0.0616136 8.48644e-07 3.72337e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is , when ||| 0.105263 0.142731 1.69729e-06 2.22509e-05 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| is , ||| 0.000125945 0.0005032 8.48644e-07 3.4083e-05 2.718 ||| 0-0 ||| 7940 1.17835e+06 +en ||| is Members from ||| 1 0.0308834 8.48644e-07 1.75903e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is a burden on ||| 0.0909091 0.22993 8.48644e-07 5.0187e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| is a city of ||| 0.25 0.0116562 8.48644e-07 3.88368e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| is a country in a peculiar situation ||| 1 0.605812 8.48644e-07 2.26632e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is a country in a peculiar ||| 1 0.605812 8.48644e-07 4.40062e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is a country in a ||| 0.25 0.605812 8.48644e-07 1.0234e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| is a country in ||| 0.025641 0.605812 8.48644e-07 2.30881e-07 2.718 ||| 0-3 ||| 39 1.17835e+06 +en ||| is a finding ||| 1 0.0012469 8.48644e-07 2.77844e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is a giant in ||| 0.166667 0.605812 8.48644e-07 7.05667e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| is a lack of influence on ||| 1 0.22993 8.48644e-07 2.60839e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is a long time coming in ||| 1 0.605812 8.48644e-07 6.9227e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is a long time in ||| 0.2 0.605812 8.48644e-07 3.56289e-10 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| is a major competitor on the ||| 0.5 0.0015231 8.48644e-07 7.18814e-19 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is a major competitor on ||| 0.5 0.0015231 8.48644e-07 1.17086e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is a major competitor ||| 0.5 0.0015231 8.48644e-07 1.74991e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is a major ||| 0.00263158 0.0015231 8.48644e-07 2.49987e-09 2.718 ||| 0-1 ||| 380 1.17835e+06 +en ||| is a matter in ||| 0.125 0.605812 8.48644e-07 6.65572e-07 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| is a matter of ||| 0.00198807 0.0116562 8.48644e-07 1.96552e-08 2.718 ||| 0-3 ||| 503 1.17835e+06 +en ||| is a member of ||| 0.00900901 0.0116562 8.48644e-07 3.1562e-09 2.718 ||| 0-3 ||| 111 1.17835e+06 +en ||| is a new departure in ||| 0.25 0.605812 8.48644e-07 4.29446e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| is a predominant feature of the ||| 1 0.0116562 8.48644e-07 3.45427e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is a predominant feature of ||| 1 0.0116562 8.48644e-07 5.6266e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is a pressing need for ||| 0.333333 0.0286209 8.48644e-07 2.00774e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| is a scarcity on ||| 1 0.22993 8.48644e-07 8.07607e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is a situation in ||| 0.0555556 0.605812 8.48644e-07 3.3038e-07 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| is a situation where ||| 0.0909091 0.247783 8.48644e-07 6.09318e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| is a sovereign matter for the ||| 1 0.0286209 8.48644e-07 6.21002e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is a sovereign matter for ||| 0.5 0.0286209 8.48644e-07 1.01154e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| is a translated extract from ||| 1 0.0308834 8.48644e-07 1.31836e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is a treadmill on ||| 1 0.22993 8.48644e-07 4.6149e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is a very good component in ||| 1 0.605812 8.48644e-07 1.74797e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is a ||| 0.000136506 0.0015231 5.09187e-06 2.58251e-05 2.718 ||| 0-1 ||| 43954 1.17835e+06 +en ||| is able to ||| 0.00152672 0.0247351 8.48644e-07 7.35501e-07 2.718 ||| 0-2 ||| 655 1.17835e+06 +en ||| is abolished in ||| 1 0.605812 8.48644e-07 1.66436e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is about the ||| 0.00306748 0.0401564 8.48644e-07 5.51462e-06 2.718 ||| 0-1 ||| 326 1.17835e+06 +en ||| is about to ||| 0.00588235 0.0401564 1.69729e-06 7.98184e-06 2.718 ||| 0-1 ||| 340 1.17835e+06 +en ||| is about ||| 0.00874126 0.0401564 1.69729e-05 8.98267e-05 2.718 ||| 0-1 ||| 2288 1.17835e+06 +en ||| is absent from ||| 0.0434783 0.0308834 8.48644e-07 4.29322e-10 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| is achieved in ||| 0.0833333 0.605812 8.48644e-07 2.42129e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| is actually deeply ||| 0.0833333 0.125341 8.48644e-07 9.85078e-10 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| is actually doing ||| 0.0625 0.125341 8.48644e-07 1.54539e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| is actually inside ||| 1 0.188717 8.48644e-07 2.47367e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is actually ||| 0.00341297 0.125341 3.39458e-06 4.20974e-05 2.718 ||| 0-1 ||| 1172 1.17835e+06 +en ||| is added to ||| 0.142857 0.0247351 8.48644e-07 6.28114e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| is adopted in ||| 0.0357143 0.605812 8.48644e-07 2.95244e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| is advisable , in ||| 1 0.605812 8.48644e-07 5.52301e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is advocated in ||| 0.1 0.605812 8.48644e-07 1.20124e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| is affected by ||| 0.0114943 0.0468744 8.48644e-07 1.7757e-08 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| is against this ||| 0.02 0.153982 8.48644e-07 1.17432e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| is against ||| 0.0508021 0.153982 1.61242e-05 0.000181744 2.718 ||| 0-1 ||| 374 1.17835e+06 +en ||| is all I have to ||| 0.047619 0.0247351 8.48644e-07 3.52165e-10 2.718 ||| 0-4 ||| 21 1.17835e+06 +en ||| is all about in ||| 1 0.605812 1.69729e-06 9.67232e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is all about ||| 0.00806452 0.0401564 1.69729e-06 4.24467e-07 2.718 ||| 0-2 ||| 248 1.17835e+06 +en ||| is all too present in ||| 1 0.605812 8.48644e-07 3.40666e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is allowed to ||| 0.00877193 0.0247351 8.48644e-07 1.42625e-07 2.718 ||| 0-2 ||| 114 1.17835e+06 +en ||| is along ||| 0.0793651 0.155535 4.24322e-06 2.49318e-05 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| is already in ||| 0.00666667 0.605812 8.48644e-07 6.70232e-06 2.718 ||| 0-2 ||| 150 1.17835e+06 +en ||| is also a member of ||| 0.0909091 0.0116562 8.48644e-07 1.59344e-11 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| is also at ||| 0.0277778 0.321886 8.48644e-07 6.32946e-06 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| is also ensure that ||| 0.5 0.0017499 8.48644e-07 7.41567e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is also from ||| 0.125 0.0308834 8.48644e-07 6.02076e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| is also guaranteed in ||| 0.5 0.605812 8.48644e-07 2.57927e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is also hanging in the ||| 0.5 0.605812 8.48644e-07 4.03714e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is also hanging in ||| 0.5 0.605812 8.48644e-07 6.57603e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is also important in ||| 0.037037 0.605812 8.48644e-07 2.80285e-08 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| is also in ||| 0.0120482 0.605812 1.69729e-06 7.3067e-05 2.718 ||| 0-2 ||| 166 1.17835e+06 +en ||| is also keen to ||| 0.2 0.0247351 8.48644e-07 1.1697e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| is also on ||| 0.0333333 0.22993 8.48644e-07 1.31406e-05 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| is also taken in the United States ||| 1 0.605812 8.48644e-07 2.3882e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is also taken in the United ||| 1 0.605812 8.48644e-07 5.00461e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is also taken in the ||| 1 0.605812 8.48644e-07 4.08873e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is also taken in ||| 1 0.605812 8.48644e-07 6.66006e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is always emphasized in ||| 1 0.605812 8.48644e-07 9.95724e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is always shared by ||| 1 0.0468744 8.48644e-07 1.23819e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is amiss with ||| 0.166667 0.0535436 8.48644e-07 1.05967e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| is among the most educated in the ||| 1 0.0422459 8.48644e-07 1.00933e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is among the most educated in ||| 1 0.0422459 8.48644e-07 1.64408e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is among the most educated ||| 1 0.0422459 8.48644e-07 7.68098e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is among the most ||| 0.0666667 0.0422459 8.48644e-07 2.64861e-10 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| is among the ||| 0.0116279 0.0422459 8.48644e-07 6.12822e-07 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| is among ||| 0.015625 0.0422459 1.69729e-06 9.98214e-06 2.718 ||| 0-1 ||| 128 1.17835e+06 +en ||| is an area in ||| 0.0149254 0.605812 1.69729e-06 2.6715e-08 2.718 ||| 0-3 ||| 134 1.17835e+06 +en ||| is an area on ||| 0.2 0.22993 8.48644e-07 4.80452e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| is an area where ||| 0.00909091 0.247783 8.48644e-07 4.92703e-10 2.718 ||| 0-3 ||| 110 1.17835e+06 +en ||| is an open process in which ||| 1 0.605812 8.48644e-07 3.76562e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is an open process in ||| 0.5 0.605812 8.48644e-07 4.43296e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| is an ||| 0.000154357 0.0003004 1.69729e-06 1.04366e-06 2.718 ||| 0-1 ||| 12957 1.17835e+06 +en ||| is any further delay in ||| 0.333333 0.605812 8.48644e-07 3.31071e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| is any ||| 0.00546448 0.0006 8.48644e-07 6.83236e-07 2.718 ||| 0-1 ||| 183 1.17835e+06 +en ||| is anything but ||| 0.0142857 0.001622 8.48644e-07 8.63499e-10 2.718 ||| 0-2 ||| 70 1.17835e+06 +en ||| is apparent from all ||| 0.5 0.0308834 8.48644e-07 2.00618e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is apparent from ||| 0.0285714 0.0308834 8.48644e-07 4.24551e-09 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| is appearing before ||| 0.25 0.0175291 8.48644e-07 1.0791e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is appropriate at ||| 0.2 0.321886 8.48644e-07 1.68749e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| is appropriate for ||| 0.0204082 0.0286209 8.48644e-07 4.85348e-08 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| is argued in ||| 0.666667 0.605812 1.69729e-06 1.46175e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is around ||| 0.0136986 0.159384 8.48644e-07 3.61708e-05 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| is as it stands ||| 0.5 0.066968 8.48644e-07 5.52403e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is as it ||| 0.047619 0.066968 8.48644e-07 1.00255e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| is as ||| 0.00271003 0.066968 2.54593e-06 0.000563761 2.718 ||| 0-1 ||| 1107 1.17835e+06 +en ||| is asking for in ||| 0.5 0.605812 8.48644e-07 4.80527e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is at a point ||| 1 0.321886 8.48644e-07 4.8614e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is at a ||| 0.00719424 0.321886 8.48644e-07 5.55716e-05 2.718 ||| 0-1 ||| 139 1.17835e+06 +en ||| is at issue as , when ||| 1 0.142731 8.48644e-07 7.19549e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is at issue ||| 0.00833333 0.321886 8.48644e-07 9.48805e-07 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| is at its ||| 0.0192308 0.321886 8.48644e-07 1.78616e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| is at stake in ||| 0.0344828 0.605812 8.48644e-07 1.83021e-09 2.718 ||| 0-3 ||| 29 1.17835e+06 +en ||| is at ||| 0.0441558 0.321886 8.65617e-05 0.00125371 2.718 ||| 0-1 ||| 2310 1.17835e+06 +en ||| is available in ||| 0.0222222 0.605812 8.48644e-07 4.60377e-06 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| is available on ||| 0.130435 0.22993 2.54593e-06 8.2796e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| is aware of ||| 0.00235849 0.0116562 8.48644e-07 5.93657e-08 2.718 ||| 0-2 ||| 424 1.17835e+06 +en ||| is banned in the EU ||| 0.5 0.605812 8.48644e-07 4.57218e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is banned in the ||| 0.2 0.605812 8.48644e-07 9.24047e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| is banned in ||| 0.03125 0.605812 8.48644e-07 1.50516e-07 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| is based in ||| 0.0263158 0.605812 8.48644e-07 3.3953e-06 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| is based on mere ||| 0.333333 0.22993 8.48644e-07 1.29452e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is based on partnership and is ||| 0.5 0.22993 8.48644e-07 5.17786e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is based on partnership and ||| 0.25 0.22993 8.48644e-07 1.6521e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is based on partnership ||| 0.333333 0.22993 8.48644e-07 1.31895e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is based on ||| 0.00454545 0.22993 7.6378e-06 6.10623e-07 2.718 ||| 0-2 ||| 1980 1.17835e+06 +en ||| is based ||| 0.0014985 0.0025292 2.54593e-06 7.89796e-07 2.718 ||| 0-1 ||| 2002 1.17835e+06 +en ||| is basically ||| 0.00460829 0.1117 8.48644e-07 5.84198e-06 2.718 ||| 0-1 ||| 217 1.17835e+06 +en ||| is bearing down on ||| 1 0.22993 8.48644e-07 8.10397e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is because in ||| 0.111111 0.605812 1.69729e-06 4.75574e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| is because of ||| 0.00806452 0.0069675 8.48644e-07 4.50906e-08 2.718 ||| 0-1 0-2 ||| 124 1.17835e+06 +en ||| is because ||| 0.00117096 0.0022788 1.69729e-06 3.30649e-06 2.718 ||| 0-1 ||| 1708 1.17835e+06 +en ||| is becoming ||| 0.00106383 0.163705 8.48644e-07 2.39697e-05 2.718 ||| 0-1 ||| 940 1.17835e+06 +en ||| is before ||| 0.0078125 0.0175291 8.48644e-07 1.06842e-05 2.718 ||| 0-1 ||| 128 1.17835e+06 +en ||| is being allocated to ||| 0.333333 0.0247351 8.48644e-07 1.11812e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| is being called into ||| 0.125 0.525896 8.48644e-07 3.43157e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| is being cultivated by ||| 0.5 0.0468744 8.48644e-07 4.40076e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is being demonstrated at ||| 1 0.321886 8.48644e-07 9.63306e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is being depicted here ||| 0.25 0.0855319 8.48644e-07 1.3379e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| is being discussed in an adjoining room ||| 1 0.605812 8.48644e-07 2.51609e-22 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is being discussed in an adjoining ||| 1 0.605812 8.48644e-07 6.72751e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is being discussed in an ||| 1 0.605812 8.48644e-07 9.61073e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is being discussed in ||| 0.0588235 0.605812 8.48644e-07 2.16229e-09 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| is being done about ||| 0.0833333 0.0401564 8.48644e-07 1.16567e-10 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| is being done in ||| 0.015873 0.605812 8.48644e-07 1.8781e-08 2.718 ||| 0-3 ||| 63 1.17835e+06 +en ||| is being elevated to ||| 1 0.0247351 8.48644e-07 3.50979e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is being established in ||| 1 0.605812 8.48644e-07 6.16562e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is being formed ||| 0.0769231 0.0043873 8.48644e-07 1.11267e-10 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| is being handled in ||| 0.5 0.605812 8.48644e-07 8.44323e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is being held in ||| 0.0344828 0.605812 8.48644e-07 1.05067e-08 2.718 ||| 0-3 ||| 29 1.17835e+06 +en ||| is being implemented , ||| 0.0666667 0.0703003 8.48644e-07 4.21945e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| is being implemented ||| 0.008 0.0703003 8.48644e-07 3.53819e-08 2.718 ||| 0-2 ||| 125 1.17835e+06 +en ||| is being made at ||| 0.166667 0.321886 8.48644e-07 7.47382e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| is being made in ||| 0.0833333 0.605812 8.48644e-07 8.62775e-08 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| is being put in place ||| 0.0909091 0.605812 8.48644e-07 6.83454e-11 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| is being put in ||| 0.0833333 0.605812 8.48644e-07 4.54122e-08 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| is being taken in ||| 0.2 0.605812 8.48644e-07 3.75415e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| is being taken ||| 0.00925926 0.0042106 8.48644e-07 7.94687e-09 2.718 ||| 0-2 ||| 108 1.17835e+06 +en ||| is being tried out in ||| 1 0.605812 8.48644e-07 6.29465e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is being turned into ||| 0.2 0.525896 1.69729e-06 1.10766e-10 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| is being ||| 0.000910056 0.0043873 5.09187e-06 5.73542e-06 2.718 ||| 0-1 ||| 6593 1.17835e+06 +en ||| is best to proceed slowly but surely ||| 1 0.0247351 8.48644e-07 9.85805e-25 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is best to proceed slowly but ||| 1 0.0247351 8.48644e-07 1.54757e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is best to proceed slowly ||| 1 0.0247351 8.48644e-07 2.26452e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is best to proceed ||| 0.5 0.0247351 8.48644e-07 3.90435e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is best to ||| 0.125 0.0247351 8.48644e-07 1.22011e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| is borne out by the ||| 0.0434783 0.0468744 8.48644e-07 2.00632e-12 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| is borne out by ||| 0.030303 0.0468744 8.48644e-07 3.26806e-11 2.718 ||| 0-3 ||| 33 1.17835e+06 +en ||| is both in ||| 0.5 0.605812 8.48644e-07 2.39741e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is both ||| 0.00173913 0.0015168 8.48644e-07 1.13141e-06 2.718 ||| 0-1 ||| 575 1.17835e+06 +en ||| is breaking out again to ||| 1 0.0247351 8.48644e-07 2.94661e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is brought to bear on ||| 1 0.22993 8.48644e-07 9.69444e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is building up ||| 0.0434783 0.0147069 8.48644e-07 1.26076e-09 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| is by no means limited to economic ||| 1 0.0468744 8.48644e-07 5.5143e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is by no means limited to ||| 0.333333 0.0468744 8.48644e-07 4.546e-16 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| is by no means limited ||| 0.333333 0.0468744 8.48644e-07 5.11602e-15 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| is by no means ||| 0.00444444 0.0468744 8.48644e-07 1.31517e-10 2.718 ||| 0-1 ||| 225 1.17835e+06 +en ||| is by no ||| 0.00729927 0.0468744 8.48644e-07 2.07538e-07 2.718 ||| 0-1 ||| 137 1.17835e+06 +en ||| is by ||| 0.028777 0.0468744 1.35783e-05 0.000266622 2.718 ||| 0-1 ||| 556 1.17835e+06 +en ||| is called upon ||| 0.0166667 0.114601 8.48644e-07 4.81468e-09 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| is carried out at ||| 0.166667 0.321886 8.48644e-07 1.41521e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| is carried out in ||| 0.0188679 0.605812 8.48644e-07 1.63371e-08 2.718 ||| 0-3 ||| 53 1.17835e+06 +en ||| is carried out on ||| 0.0909091 0.22993 8.48644e-07 2.93812e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| is carried through ||| 0.0769231 0.0366102 8.48644e-07 8.68574e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| is celebrating the ||| 0.2 0.0011669 8.48644e-07 2.87305e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| is centred on the ||| 0.5 0.22993 8.48644e-07 4.63398e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is centred on ||| 0.1 0.22993 8.48644e-07 7.5482e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| is certainly extremely difficult , even with ||| 0.25 0.0535436 8.48644e-07 7.8372e-20 2.718 ||| 0-6 ||| 4 1.17835e+06 +en ||| is certainly going to ||| 0.0909091 0.0247351 8.48644e-07 1.88855e-10 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| is certainly in ||| 0.0526316 0.605812 8.48644e-07 3.62542e-06 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| is certainly ||| 0.000691563 0.0129293 8.48644e-07 6.82296e-06 2.718 ||| 0-1 ||| 1446 1.17835e+06 +en ||| is characterised by ||| 0.00555556 0.0468744 8.48644e-07 4.50591e-09 2.718 ||| 0-2 ||| 180 1.17835e+06 +en ||| is characterized by ||| 0.0666667 0.0468744 8.48644e-07 4.79919e-10 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| is clear to ||| 0.0138889 0.0247351 8.48644e-07 2.93267e-07 2.718 ||| 0-2 ||| 72 1.17835e+06 +en ||| is coming down in ||| 1 0.605812 8.48644e-07 1.96309e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is coming ||| 0.00364964 0.0026592 8.48644e-07 4.043e-07 2.718 ||| 0-1 ||| 274 1.17835e+06 +en ||| is commented on in ||| 0.5 0.417871 8.48644e-07 3.00484e-09 2.718 ||| 0-2 0-3 ||| 2 1.17835e+06 +en ||| is commonly held by ||| 1 0.0468744 8.48644e-07 3.67282e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is completed at ||| 1 0.321886 8.48644e-07 3.83634e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is complied with ||| 0.0185185 0.0535436 8.48644e-07 6.17531e-09 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| is concerned , there is ||| 0.047619 0.0117359 8.48644e-07 2.11306e-10 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| is concerned , there ||| 0.0384615 0.0117359 8.48644e-07 6.74215e-09 2.718 ||| 0-3 ||| 26 1.17835e+06 +en ||| is concerned on ||| 1 0.22993 8.48644e-07 4.18691e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is concluded in ||| 0.2 0.605812 8.48644e-07 5.15229e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| is condoned in ||| 1 0.605812 8.48644e-07 5.78909e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is confined to ||| 0.0204082 0.0247351 8.48644e-07 8.89754e-09 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| is consensus on ||| 0.25 0.22993 8.48644e-07 4.03438e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is contained in ||| 0.0212766 0.605812 1.69729e-06 9.84145e-07 2.718 ||| 0-2 ||| 94 1.17835e+06 +en ||| is covered in just ||| 1 0.605812 8.48644e-07 1.30743e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is covered in ||| 0.0689655 0.605812 1.69729e-06 1.03625e-06 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| is creeping in ||| 0.5 0.605812 8.48644e-07 2.02618e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is crucial , in ||| 0.333333 0.605812 8.48644e-07 6.57583e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| is currently at ||| 0.03125 0.321886 8.48644e-07 1.30887e-07 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| is currently being ||| 0.00431034 0.104436 8.48644e-07 1.0487e-07 2.718 ||| 0-1 ||| 232 1.17835e+06 +en ||| is currently enduring ||| 0.25 0.104436 8.48644e-07 1.32663e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| is currently engaged in ||| 0.0666667 0.605812 8.48644e-07 6.19491e-11 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| is currently headed ||| 0.25 0.104436 8.48644e-07 2.91122e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| is currently in ||| 0.00671141 0.605812 8.48644e-07 1.51095e-06 2.718 ||| 0-2 ||| 149 1.17835e+06 +en ||| is currently playing in ||| 0.5 0.605812 8.48644e-07 9.95718e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is currently ||| 0.00441258 0.104436 6.78915e-06 3.68509e-05 2.718 ||| 0-1 ||| 1813 1.17835e+06 +en ||| is dealing with ||| 0.00854701 0.0535436 8.48644e-07 3.77461e-08 2.718 ||| 0-2 ||| 117 1.17835e+06 +en ||| is dealt with in three different ways ||| 0.5 0.329678 8.48644e-07 2.37385e-20 2.718 ||| 0-2 0-3 ||| 2 1.17835e+06 +en ||| is dealt with in three different ||| 0.5 0.329678 8.48644e-07 2.4625e-16 2.718 ||| 0-2 0-3 ||| 2 1.17835e+06 +en ||| is dealt with in three ||| 0.5 0.329678 8.48644e-07 1.1183e-12 2.718 ||| 0-2 0-3 ||| 2 1.17835e+06 +en ||| is dealt with in ||| 0.075 0.605812 2.54593e-06 9.68955e-09 2.718 ||| 0-3 ||| 40 1.17835e+06 +en ||| is decided on the global market , ||| 1 0.22993 8.48644e-07 1.34621e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is decided on the global market ||| 0.5 0.22993 8.48644e-07 1.12885e-16 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is decided on the global ||| 1 0.22993 8.48644e-07 4.99492e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is decided on the ||| 0.333333 0.22993 8.48644e-07 1.09298e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is decided on ||| 0.0588235 0.22993 8.48644e-07 1.78033e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| is definitely ||| 0.00458716 0.0234185 8.48644e-07 1.64227e-06 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| is derived in ||| 1 0.605812 8.48644e-07 1.30255e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is described as ||| 0.0344828 0.066968 8.48644e-07 2.51437e-08 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| is developed in ||| 0.111111 0.605812 8.48644e-07 9.94276e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| is developing in ||| 0.0344828 0.605812 8.48644e-07 7.85869e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| is developing ||| 0.00591716 0.279045 1.69729e-06 0.000144548 2.718 ||| 0-1 ||| 338 1.17835e+06 +en ||| is discretion in ||| 1 0.605812 8.48644e-07 7.23636e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is disguised to a ||| 1 0.0247351 8.48644e-07 4.29535e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is disguised to ||| 1 0.0247351 8.48644e-07 9.6904e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is displayed in ||| 0.25 0.605812 8.48644e-07 2.5472e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is disseminated and converted in ||| 0.5 0.605812 8.48644e-07 1.71495e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| is doing at ||| 0.25 0.321886 1.69729e-06 4.60236e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| is doing in ||| 0.0666667 0.605812 1.69729e-06 5.31294e-06 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| is doing to ||| 0.037037 0.0247351 8.48644e-07 3.23395e-07 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| is done in ||| 0.0519481 0.605812 3.39458e-06 6.59956e-06 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| is doomed at ||| 0.5 0.321886 8.48644e-07 3.63575e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is down to ||| 0.0188679 0.0247351 8.48644e-07 6.14988e-07 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| is drawn up in ||| 0.333333 0.605812 8.48644e-07 7.01395e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| is due to be adopted in ||| 0.25 0.605812 8.48644e-07 1.31415e-12 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| is due to be built in ||| 1 0.605812 8.48644e-07 3.20162e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is due to ||| 0.00306279 0.0247351 1.69729e-06 2.43493e-07 2.718 ||| 0-2 ||| 653 1.17835e+06 +en ||| is during ||| 0.25 0.226251 8.48644e-07 9.06165e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| is eminently suitable for ||| 0.25 0.0286209 8.48644e-07 1.94356e-14 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| is enshrined in ||| 0.00970874 0.605812 8.48644e-07 2.14196e-07 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| is essential to ||| 0.00177305 0.0247351 8.48644e-07 7.92851e-08 2.718 ||| 0-2 ||| 564 1.17835e+06 +en ||| is essentially ||| 0.00655738 0.105697 1.69729e-06 6.56909e-06 2.718 ||| 0-1 ||| 305 1.17835e+06 +en ||| is established in ||| 0.111111 0.605812 2.54593e-06 2.16657e-06 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| is estimated to ||| 0.02 0.0247351 8.48644e-07 1.26856e-08 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| is even one person in ||| 1 0.605812 8.48644e-07 4.72775e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is even the case in ||| 1 0.605812 8.48644e-07 5.78448e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is even ||| 0.00149925 0.0045419 8.48644e-07 4.1809e-06 2.718 ||| 0-1 ||| 667 1.17835e+06 +en ||| is evidenced in a ||| 1 0.605812 8.48644e-07 8.98121e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is evidenced in ||| 1 0.605812 8.48644e-07 2.02618e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is evident in ||| 0.0277778 0.605812 8.48644e-07 2.7064e-07 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| is exactly in ||| 0.5 0.605812 8.48644e-07 1.45306e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is exactly on ||| 1 0.22993 8.48644e-07 2.61324e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is exactly where ||| 0.0714286 0.247783 8.48644e-07 2.67987e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| is exceptional for this country ||| 1 0.0286209 8.48644e-07 5.11501e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is exceptional for this ||| 1 0.0286209 8.48644e-07 1.42123e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is exceptional for ||| 0.5 0.0286209 8.48644e-07 2.19957e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is exceptionally true in ||| 1 0.605812 8.48644e-07 1.26295e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is expected of ||| 0.0192308 0.0116562 8.48644e-07 2.27803e-08 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| is expected within ||| 0.5 0.369196 8.48644e-07 1.85201e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is experiencing ||| 0.00995025 0.0261115 1.69729e-06 7.89796e-07 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| is expressed in ||| 0.0172414 0.605812 8.48644e-07 1.40675e-06 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| is factually ||| 0.1 0.126437 8.48644e-07 2.35058e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| is fair to ||| 0.02 0.0247351 8.48644e-07 4.5633e-08 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| is far in ||| 0.333333 0.605812 8.48644e-07 9.88053e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is fashioned in ||| 1 0.605812 8.48644e-07 1.01309e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is feasible in ||| 0.0833333 0.605812 8.48644e-07 9.84145e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| is followed in ||| 0.5 0.605812 8.48644e-07 1.03625e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is following ||| 0.00440529 0.0089387 8.48644e-07 2.85831e-06 2.718 ||| 0-1 ||| 227 1.17835e+06 +en ||| is for the ||| 0.00182482 0.0286209 8.48644e-07 2.2137e-05 2.718 ||| 0-1 ||| 548 1.17835e+06 +en ||| is for this target population that ||| 0.5 0.0286209 8.48644e-07 9.11107e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is for this target population ||| 0.5 0.0286209 8.48644e-07 5.41629e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is for this target ||| 0.5 0.0286209 8.48644e-07 8.80698e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is for this ||| 0.00363636 0.0286209 8.48644e-07 2.32989e-06 2.718 ||| 0-1 ||| 275 1.17835e+06 +en ||| is for ||| 0.00619323 0.0286209 1.27297e-05 0.000360586 2.718 ||| 0-1 ||| 2422 1.17835e+06 +en ||| is forever a thing ||| 1 0.0015231 8.48644e-07 6.12532e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is forever a ||| 1 0.0015231 8.48644e-07 1.67863e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is forming in ||| 0.5 0.605812 8.48644e-07 1.30255e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is founded on ||| 0.00671141 0.22993 8.48644e-07 4.7892e-08 2.718 ||| 0-2 ||| 149 1.17835e+06 +en ||| is freezing in this Chamber and ||| 1 0.605812 8.48644e-07 9.85807e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is freezing in this Chamber ||| 1 0.605812 8.48644e-07 7.87015e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is freezing in this ||| 1 0.605812 8.48644e-07 2.99245e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is freezing in ||| 1 0.605812 8.48644e-07 4.63127e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is from ||| 0.0120482 0.0308834 1.69729e-06 0.000119256 2.718 ||| 0-1 ||| 166 1.17835e+06 +en ||| is full of ||| 0.008 0.0116562 8.48644e-07 7.84276e-08 2.718 ||| 0-2 ||| 125 1.17835e+06 +en ||| is generally ||| 0.00502513 0.21041 8.48644e-07 2.85361e-05 2.718 ||| 0-1 ||| 199 1.17835e+06 +en ||| is given a ||| 0.025 0.0546585 8.48644e-07 1.61274e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| is given consideration ||| 1 0.0546585 8.48644e-07 3.92946e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is given in ||| 0.0952381 0.605812 1.69729e-06 9.93263e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| is given on the numberplate in ||| 1 0.605812 8.48644e-07 2.85604e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is given to ||| 0.0186916 0.0546585 1.69729e-06 3.23301e-06 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| is given ||| 0.0070028 0.0546585 4.24322e-06 3.63839e-05 2.718 ||| 0-1 ||| 714 1.17835e+06 +en ||| is going on , ||| 0.0222222 0.22993 8.48644e-07 2.6564e-07 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| is going on in ||| 0.0322581 0.605812 4.24322e-06 8.28731e-08 2.718 ||| 0-3 ||| 155 1.17835e+06 +en ||| is going on ||| 0.00568182 0.22993 2.54593e-06 2.2275e-06 2.718 ||| 0-2 ||| 528 1.17835e+06 +en ||| is going to be in ||| 0.0833333 0.605812 8.48644e-07 1.99456e-08 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| is going to be ||| 0.00165837 0.0247351 8.48644e-07 1.36631e-08 2.718 ||| 0-2 ||| 603 1.17835e+06 +en ||| is going to have ||| 0.0116279 0.0247351 8.48644e-07 9.01665e-09 2.718 ||| 0-2 ||| 86 1.17835e+06 +en ||| is going to ||| 0.00234082 0.0247351 4.24322e-06 7.53913e-07 2.718 ||| 0-2 ||| 2136 1.17835e+06 +en ||| is good and is something on ||| 0.5 0.22993 8.48644e-07 2.93305e-13 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| is governed by ||| 0.0103093 0.0468744 8.48644e-07 5.86568e-09 2.718 ||| 0-2 ||| 97 1.17835e+06 +en ||| is gratifying that ||| 0.25 0.0017499 8.48644e-07 7.2067e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is growing in ||| 0.027027 0.605812 8.48644e-07 5.47069e-07 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| is guaranteed in ||| 0.0344828 0.605812 8.48644e-07 5.10887e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| is happening in ||| 0.0117302 0.605812 6.78915e-06 7.85869e-07 2.718 ||| 0-2 ||| 682 1.17835e+06 +en ||| is happening on the ||| 0.0294118 0.22993 8.48644e-07 8.67672e-09 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| is happening on ||| 0.0181818 0.22993 8.48644e-07 1.41334e-07 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| is having a severe impact with ||| 1 0.0535436 8.48644e-07 6.64331e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is having on ||| 0.142857 0.22993 4.24322e-06 9.96623e-07 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| is having ||| 0.00278552 0.0065553 8.48644e-07 2.41013e-06 2.718 ||| 0-1 ||| 359 1.17835e+06 +en ||| is heard at ||| 0.5 0.321886 8.48644e-07 9.92936e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is heard in ||| 0.0833333 0.605812 8.48644e-07 1.14624e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| is held in ||| 0.0952381 0.605812 1.69729e-06 3.69199e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| is here in ||| 0.0833333 0.605812 1.69729e-06 2.93478e-05 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| is here ||| 0.0043573 0.0855319 1.69729e-06 9.40264e-05 2.718 ||| 0-1 ||| 459 1.17835e+06 +en ||| is highlighted in ||| 0.0555556 0.605812 8.48644e-07 2.92349e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| is home to 50 ||| 0.5 0.0247351 8.48644e-07 1.25182e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is home to ||| 0.025 0.0247351 8.48644e-07 8.94159e-08 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| is important when ||| 0.125 0.142731 8.48644e-07 7.15732e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| is imposing in ||| 1 0.605812 8.48644e-07 2.28669e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is impossible within ||| 0.333333 0.369196 8.48644e-07 1.86244e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is in a ||| 0.00869565 0.605812 3.39458e-06 0.000641515 2.718 ||| 0-1 ||| 460 1.17835e+06 +en ||| is in aid ||| 0.333333 0.605812 8.48644e-07 1.89014e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| is in all ||| 0.0285714 0.605812 8.48644e-07 6.83894e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| is in any event my own ||| 1 0.605812 8.48644e-07 2.49107e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is in any event my ||| 1 0.605812 8.48644e-07 1.4694e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is in any event ||| 0.0714286 0.605812 8.48644e-07 2.28486e-09 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| is in any ||| 0.0119048 0.605812 8.48644e-07 2.18857e-05 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| is in both our ||| 0.5 0.605812 8.48644e-07 3.30698e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is in both ||| 0.166667 0.605812 8.48644e-07 2.39741e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| is in fact being used ||| 0.333333 0.605812 8.48644e-07 5.17578e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| is in fact being ||| 0.166667 0.605812 8.48644e-07 1.20648e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| is in fact necessary , ||| 1 0.605812 8.48644e-07 1.30086e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is in fact necessary ||| 0.2 0.605812 8.48644e-07 1.09082e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| is in fact ||| 0.00609756 0.605812 3.39458e-06 4.2395e-05 2.718 ||| 0-1 ||| 656 1.17835e+06 +en ||| is in higher ||| 1 0.605812 8.48644e-07 6.09302e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is in itself ||| 0.00952381 0.605812 8.48644e-07 9.82264e-06 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| is in jeopardy ||| 0.047619 0.605812 8.48644e-07 4.63127e-08 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| is in line with an approach , ||| 1 0.605812 8.48644e-07 3.16558e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is in line with an approach ||| 1 0.605812 8.48644e-07 2.65447e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is in line with an ||| 1 0.605812 8.48644e-07 1.21098e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is in line with ||| 0.00558659 0.605812 1.69729e-06 2.72455e-08 2.718 ||| 0-1 ||| 358 1.17835e+06 +en ||| is in line ||| 0.00347222 0.605812 8.48644e-07 4.26077e-06 2.718 ||| 0-1 ||| 288 1.17835e+06 +en ||| is in no ||| 0.0107527 0.605812 8.48644e-07 1.12656e-05 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| is in nobody 's ||| 0.333333 0.605812 8.48644e-07 2.37032e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| is in nobody ||| 0.166667 0.605812 8.48644e-07 1.24465e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| is in order ||| 0.0151515 0.605812 8.48644e-07 7.70817e-06 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| is in our ||| 0.0265487 0.605812 2.54593e-06 1.99637e-05 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| is in place , ||| 0.0454545 0.605812 8.48644e-07 2.59754e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| is in place here and ||| 1 0.605812 8.48644e-07 5.53249e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is in place here ||| 1 0.605812 8.48644e-07 4.41684e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is in place in ||| 0.5 0.605812 8.48644e-07 4.66221e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is in place ||| 0.0319149 0.605812 5.09187e-06 2.17815e-05 2.718 ||| 0-1 ||| 188 1.17835e+06 +en ||| is in restraint ||| 0.5 0.605812 8.48644e-07 4.19709e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is in sight ||| 0.0434783 0.605812 8.48644e-07 3.32873e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| is in specifically ||| 1 0.605812 8.48644e-07 8.1192e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is in the common ||| 0.5 0.605812 8.48644e-07 2.05245e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is in the interests ||| 0.00507614 0.605812 8.48644e-07 1.21814e-07 2.718 ||| 0-1 ||| 197 1.17835e+06 +en ||| is in the process ||| 0.0075188 0.605812 8.48644e-07 3.79837e-07 2.718 ||| 0-1 ||| 133 1.17835e+06 +en ||| is in the ||| 0.0320334 0.605812 3.90376e-05 0.000888507 2.718 ||| 0-1 ||| 1436 1.17835e+06 +en ||| is in their ||| 0.0322581 0.605812 8.48644e-07 1.67753e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| is in there . it is ||| 1 0.605812 8.48644e-07 7.4894e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is in there . it ||| 1 0.605812 8.48644e-07 2.38964e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is in there . ||| 0.25 0.605812 8.48644e-07 1.34376e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| is in there ||| 0.2 0.605812 8.48644e-07 4.43633e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| is in ||| 0.0983784 0.605812 0.000617813 0.0144727 2.718 ||| 0-1 ||| 7400 1.17835e+06 +en ||| is included in ||| 0.0145631 0.605812 2.54593e-06 1.35899e-06 2.718 ||| 0-2 ||| 206 1.17835e+06 +en ||| is included to ||| 1 0.0247351 8.48644e-07 8.27207e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is incompatible on ||| 1 0.22993 8.48644e-07 1.30141e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is increasing in ||| 0.025641 0.605812 8.48644e-07 7.49687e-07 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| is incumbent on ||| 0.0606061 0.22993 1.69729e-06 4.11247e-08 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| is indeed carried ||| 0.5 0.0919982 8.48644e-07 1.50587e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is indeed in that ||| 1 0.605812 8.48644e-07 1.84514e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is indeed in ||| 0.0769231 0.605812 8.48644e-07 1.09689e-05 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| is indeed ||| 0.00362976 0.0919982 3.39458e-06 5.10985e-05 2.718 ||| 0-1 ||| 1102 1.17835e+06 +en ||| is influenced by ||| 0.037037 0.0468744 8.48644e-07 1.43976e-09 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| is intended to enter in ||| 0.166667 0.605812 8.48644e-07 5.56659e-12 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| is introduced into ||| 0.5 0.525896 1.69729e-06 6.41772e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is investing in ||| 0.0555556 0.605812 8.48644e-07 4.63127e-08 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| is invited and ||| 0.5 0.0010182 8.48644e-07 1.8797e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is involved in these negotiations ||| 1 0.605812 8.48644e-07 2.87545e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is involved in these ||| 0.142857 0.605812 8.48644e-07 5.19034e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| is involved in ||| 0.0143541 0.605812 2.54593e-06 5.00467e-06 2.718 ||| 0-2 ||| 209 1.17835e+06 +en ||| is issued in the ||| 1 0.605812 8.48644e-07 5.49986e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is issued in ||| 1 0.605812 8.48644e-07 8.95862e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is it not possible for a ||| 0.5 0.0286209 8.48644e-07 7.78358e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| is it not possible for ||| 0.111111 0.0286209 8.48644e-07 1.75599e-11 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| is it progressive for ||| 1 0.0286209 8.48644e-07 4.16804e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is it that when ||| 0.125 0.142731 8.48644e-07 5.58148e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| is it ||| 0.00101078 0.0080472 2.54593e-06 8.64356e-05 2.718 ||| 0-1 ||| 2968 1.17835e+06 +en ||| is its relation to ||| 1 0.0247351 8.48644e-07 3.05362e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is joining ||| 0.0666667 0.0914976 8.48644e-07 4.52252e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| is judged in light of ||| 1 0.605812 8.48644e-07 1.47685e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is judged in light ||| 1 0.605812 8.48644e-07 2.71659e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is judged in ||| 0.5 0.605812 8.48644e-07 1.56305e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is just as ||| 0.00634921 0.066968 1.69729e-06 7.11297e-07 2.718 ||| 0-2 ||| 315 1.17835e+06 +en ||| is just by way ||| 0.5 0.0468744 8.48644e-07 7.25137e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is just by ||| 0.125 0.0468744 8.48644e-07 3.36397e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| is just dust in ||| 0.166667 0.605812 8.48644e-07 7.8519e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| is just that , at ||| 0.5 0.321886 8.48644e-07 3.17318e-09 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| is kept in ||| 0.142857 0.605812 8.48644e-07 1.03191e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| is known as the ||| 0.00675676 0.066968 8.48644e-07 3.81059e-09 2.718 ||| 0-2 ||| 148 1.17835e+06 +en ||| is known as ||| 0.011976 0.066968 3.39458e-06 6.207e-08 2.718 ||| 0-2 ||| 334 1.17835e+06 +en ||| is known colloquially as ||| 1 0.066968 8.48644e-07 4.3449e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is lacking in ||| 0.0188679 0.605812 8.48644e-07 2.50378e-07 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| is laid down in ||| 0.0131579 0.605812 8.48644e-07 1.10127e-09 2.718 ||| 0-3 ||| 76 1.17835e+06 +en ||| is leading in ||| 0.333333 0.605812 8.48644e-07 1.26057e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is like across ||| 0.5 0.274879 8.48644e-07 1.1434e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is like in ||| 0.5 0.605812 8.48644e-07 2.57021e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is little scope for ||| 1 0.0286209 8.48644e-07 5.82037e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is located at ||| 0.111111 0.321886 8.48644e-07 3.10919e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| is locked away in ||| 1 0.605812 8.48644e-07 3.49887e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is lying on ||| 0.333333 0.22993 8.48644e-07 3.74807e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is made , in ||| 1 0.605812 8.48644e-07 3.6155e-06 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is made conditional on that country ||| 1 0.22993 8.48644e-07 2.97084e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is made conditional on that ||| 1 0.22993 8.48644e-07 8.25464e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is made conditional on ||| 0.5 0.22993 8.48644e-07 4.90716e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is made in ||| 0.0666667 0.605812 2.54593e-06 3.03175e-05 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| is made on ||| 0.0833333 0.22993 8.48644e-07 5.4524e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| is made with ||| 0.111111 0.0535436 8.48644e-07 7.65446e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| is made ||| 0.000966184 0.0033766 8.48644e-07 3.77347e-06 2.718 ||| 0-1 ||| 1035 1.17835e+06 +en ||| is mainly in ||| 0.2 0.605812 8.48644e-07 6.77324e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| is maintained in ||| 0.0555556 0.605812 8.48644e-07 5.10887e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| is making in ||| 0.0909091 0.605812 8.48644e-07 5.56766e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| is meaningless as ||| 1 0.066968 8.48644e-07 2.64967e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is meant by ||| 0.0075188 0.0468744 8.48644e-07 2.11964e-08 2.718 ||| 0-2 ||| 133 1.17835e+06 +en ||| is mentioned in ||| 0.0149254 0.605812 8.48644e-07 1.28084e-06 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| is more , that is in ||| 1 0.605812 8.48644e-07 2.078e-09 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is more , ||| 0.00158479 0.0042952 8.48644e-07 1.24349e-06 2.718 ||| 0-1 ||| 631 1.17835e+06 +en ||| is more concerned with making a ||| 0.5 0.0042952 8.48644e-07 1.82894e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is more concerned with making ||| 0.5 0.0042952 8.48644e-07 4.12614e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is more concerned with ||| 0.0555556 0.0042952 8.48644e-07 1.07256e-10 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| is more concerned ||| 0.0625 0.0042952 8.48644e-07 1.67732e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| is more to ||| 0.0208333 0.0042952 8.48644e-07 9.26541e-07 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| is more ||| 0.00128949 0.0042952 3.39458e-06 1.04272e-05 2.718 ||| 0-1 ||| 3102 1.17835e+06 +en ||| is my ||| 0.000769823 0.002535 8.48644e-07 4.43477e-06 2.718 ||| 0-1 ||| 1299 1.17835e+06 +en ||| is natural that we should at ||| 1 0.321886 8.48644e-07 2.93852e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is necessary in ||| 0.0136986 0.605812 8.48644e-07 3.72383e-06 2.718 ||| 0-2 ||| 73 1.17835e+06 +en ||| is necessary over ||| 1 0.157937 8.48644e-07 3.23143e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is needed in Kosovo , ||| 1 0.605812 8.48644e-07 5.66204e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is needed in Kosovo ||| 0.5 0.605812 8.48644e-07 4.74785e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is needed in this ||| 0.0555556 0.605812 8.48644e-07 1.25215e-08 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| is needed in ||| 0.0353982 0.605812 3.39458e-06 1.9379e-06 2.718 ||| 0-2 ||| 113 1.17835e+06 +en ||| is needed to ||| 0.00558659 0.0247351 8.48644e-07 1.17959e-07 2.718 ||| 0-2 ||| 179 1.17835e+06 +en ||| is new in ||| 0.1 0.605812 8.48644e-07 8.65035e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| is no change in ||| 0.2 0.605812 8.48644e-07 1.3744e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| is no need for ||| 0.0166667 0.0286209 8.48644e-07 2.57355e-10 2.718 ||| 0-3 ||| 60 1.17835e+06 +en ||| is no one in ||| 0.5 0.605812 8.48644e-07 4.69549e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is no question of us in ||| 1 0.605812 8.48644e-07 1.46033e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is none or rather , through ||| 1 0.16257 8.48644e-07 1.01472e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is none or rather , ||| 1 0.16257 8.48644e-07 2.20448e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is none or rather ||| 1 0.16257 8.48644e-07 1.84855e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is normally broadcast in ||| 1 0.605812 8.48644e-07 1.05058e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is not an ||| 0.00104603 0.0008293 8.48644e-07 2.53111e-08 2.718 ||| 0-1 ||| 956 1.17835e+06 +en ||| is not applicable in ||| 0.166667 0.605812 8.48644e-07 1.19081e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| is not at ||| 0.008 0.321886 8.48644e-07 4.28028e-06 2.718 ||| 0-2 ||| 125 1.17835e+06 +en ||| is not by ||| 0.04 0.0468744 8.48644e-07 9.10274e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| is not currently involved with ||| 0.25 0.0535436 8.48644e-07 4.50374e-14 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| is not easy when it ||| 1 0.142731 8.48644e-07 4.28203e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is not easy when ||| 0.2 0.142731 8.48644e-07 2.40791e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| is not in ||| 0.00325203 0.605812 1.69729e-06 4.94113e-05 2.718 ||| 0-2 ||| 615 1.17835e+06 +en ||| is not on ||| 0.00763359 0.22993 8.48644e-07 8.88632e-06 2.718 ||| 0-2 ||| 131 1.17835e+06 +en ||| is not our ||| 0.0114943 0.0004869 8.48644e-07 5.24308e-09 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| is not so in ||| 0.333333 0.605812 8.48644e-07 1.12149e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| is not the case . in ||| 1 0.605812 8.48644e-07 9.83059e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is not the case at ||| 0.030303 0.321886 8.48644e-07 2.81142e-10 2.718 ||| 0-4 ||| 33 1.17835e+06 +en ||| is not usual in Dutch ||| 1 0.605812 8.48644e-07 1.41899e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is not usual in ||| 0.5 0.605812 8.48644e-07 8.54816e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is not ||| 8.63657e-05 0.0008293 2.54593e-06 5.69468e-06 2.718 ||| 0-1 ||| 34736 1.17835e+06 +en ||| is notably ||| 0.125 0.236083 8.48644e-07 9.76589e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| is noted first of all in ||| 1 0.605812 8.48644e-07 6.12529e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is noted in ||| 0.25 0.605812 8.48644e-07 4.42865e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is now , in the cement of ||| 1 0.605812 8.48644e-07 1.30523e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is now , in the cement ||| 1 0.605812 8.48644e-07 2.40091e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is now , in the ||| 0.5 0.605812 8.48644e-07 2.18264e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is now , in ||| 0.142857 0.605812 8.48644e-07 3.55527e-06 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| is now in ||| 0.00816326 0.605812 1.69729e-06 2.98124e-05 2.718 ||| 0-2 ||| 245 1.17835e+06 +en ||| is now within ||| 0.1 0.369196 8.48644e-07 7.15752e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| is now ||| 0.00165187 0.0123946 6.78915e-06 1.85539e-05 2.718 ||| 0-1 ||| 4843 1.17835e+06 +en ||| is of course ||| 0.00119332 0.0116562 8.48644e-07 5.39249e-07 2.718 ||| 0-1 ||| 838 1.17835e+06 +en ||| is of importance to a ||| 1 0.0247351 8.48644e-07 2.75757e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is of importance to ||| 0.125 0.0247351 8.48644e-07 6.22113e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| is of major importance , and in ||| 1 0.605812 8.48644e-07 1.47785e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| is of ||| 0.0044039 0.0116562 1.1881e-05 0.000427399 2.718 ||| 0-1 ||| 3179 1.17835e+06 +en ||| is on record ||| 0.125 0.22993 8.48644e-07 1.45238e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| is on that basis ||| 0.0769231 0.22993 8.48644e-07 2.59988e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| is on that ||| 0.0357143 0.22993 8.48644e-07 4.37837e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| is on the ||| 0.00592417 0.22993 4.24322e-06 0.000159792 2.718 ||| 0-1 ||| 844 1.17835e+06 +en ||| is on which ||| 0.5 0.22993 8.48644e-07 2.211e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is on ||| 0.0685748 0.22993 9.75941e-05 0.00260283 2.718 ||| 0-1 ||| 1677 1.17835e+06 +en ||| is one in which ||| 0.133333 0.605812 1.69729e-06 5.12414e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| is one in ||| 0.12766 0.605812 5.09187e-06 6.03223e-05 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| is one on which we ||| 0.5 0.22993 8.48644e-07 1.04616e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is one on which ||| 0.111111 0.22993 8.48644e-07 9.21544e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| is one on ||| 0.0769231 0.22993 8.48644e-07 1.08486e-05 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| is one to ||| 0.0434783 0.0247351 8.48644e-07 3.67178e-06 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| is one where ||| 0.111111 0.247783 1.69729e-06 1.11252e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| is one ||| 0.000139043 0.0025338 8.48644e-07 5.09606e-06 2.718 ||| 0-1 ||| 7192 1.17835e+06 +en ||| is ongoing in ||| 0.125 0.605812 8.48644e-07 5.15229e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| is only as ||| 0.05 0.066968 8.48644e-07 6.27522e-07 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| is only in ||| 0.0185185 0.605812 8.48644e-07 1.61096e-05 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| is otherwise ||| 0.0217391 0.0196799 8.48644e-07 5.13994e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| is our contention that at ||| 0.5 0.321886 8.48644e-07 8.43629e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| is out in ||| 0.25 0.605812 8.48644e-07 5.54363e-05 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is over ||| 0.00669643 0.157937 2.54593e-06 0.00012559 2.718 ||| 0-1 ||| 448 1.17835e+06 +en ||| is part of ||| 0.00241255 0.0116562 1.69729e-06 5.09545e-07 2.718 ||| 0-2 ||| 829 1.17835e+06 +en ||| is particularly relevant within the context of ||| 0.5 0.183344 8.48644e-07 1.41044e-18 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is particularly relevant within the context ||| 0.5 0.183344 8.48644e-07 2.59443e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is particularly relevant within the ||| 0.5 0.183344 8.48644e-07 1.93326e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is particularly relevant within ||| 0.5 0.183344 8.48644e-07 3.14905e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is particularly relevant ||| 0.015873 0.183344 8.48644e-07 1.506e-08 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| is particularly so ||| 0.0588235 0.183344 8.48644e-07 3.17674e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| is particularly ||| 0.00105764 0.183344 1.69729e-06 0.000139963 2.718 ||| 0-1 ||| 1891 1.17835e+06 +en ||| is partly ||| 0.00909091 0.294632 1.69729e-06 2.58689e-05 2.718 ||| 0-1 ||| 220 1.17835e+06 +en ||| is passed over in modest silence ||| 0.5 0.605812 8.48644e-07 9.97906e-21 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is passed over in modest ||| 0.5 0.605812 8.48644e-07 1.99581e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is passed over in ||| 0.333333 0.605812 8.48644e-07 4.98953e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| is perfectly legitimate , in a thriving ||| 1 0.605812 8.48644e-07 3.59102e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is perfectly legitimate , in a ||| 1 0.605812 8.48644e-07 3.26457e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is perfectly legitimate , in ||| 1 0.605812 8.48644e-07 7.36493e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is perhaps too ||| 0.25 0.0011116 8.48644e-07 1.25575e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is permissible in ||| 0.5 0.605812 8.48644e-07 1.14335e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is perverted to ||| 0.5 0.0247351 8.48644e-07 3.52378e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is placed at ||| 0.333333 0.321886 8.48644e-07 1.56964e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is placed on ||| 0.03125 0.22993 8.48644e-07 3.25874e-07 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| is placed where ||| 0.333333 0.247783 8.48644e-07 3.34183e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is planning with ||| 1 0.0535436 8.48644e-07 1.02678e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is played in ||| 0.5 0.605812 8.48644e-07 7.13505e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is possible in ||| 0.0714286 0.605812 2.54593e-06 1.16086e-05 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| is possible that in ||| 0.5 0.605812 8.48644e-07 1.95275e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is possible to travel , on a ||| 1 0.22993 8.48644e-07 3.70677e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is possible to travel , on ||| 1 0.22993 8.48644e-07 8.36255e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is precisely at ||| 0.166667 0.321886 8.48644e-07 1.23615e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| is precisely here ||| 0.166667 0.0855319 8.48644e-07 9.27101e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| is precisely in ||| 0.117647 0.605812 1.69729e-06 1.42701e-06 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| is precisely where ||| 0.0434783 0.247783 8.48644e-07 2.63183e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| is precisely with a view to ||| 0.5 0.0247351 8.48644e-07 2.22393e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| is present in ||| 0.0714286 0.605812 3.39458e-06 5.29702e-06 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| is presented , as it ||| 0.333333 0.066968 8.48644e-07 9.4212e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| is presented , as ||| 0.333333 0.066968 8.48644e-07 5.29781e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| is presented on ||| 1 0.22993 8.48644e-07 2.05103e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is prevailing here in ||| 1 0.605812 8.48644e-07 2.75869e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is primarily ||| 0.00334448 0.0814715 8.48644e-07 7.69737e-06 2.718 ||| 0-1 ||| 299 1.17835e+06 +en ||| is prioritised at ||| 0.5 0.321886 8.48644e-07 1.37908e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is proceeding in ||| 0.142857 0.605812 8.48644e-07 2.08407e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| is progressing in ||| 0.125 0.605812 8.48644e-07 1.14335e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| is promoted within ||| 1 0.369196 8.48644e-07 7.64433e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is proposed in the ||| 0.047619 0.605812 8.48644e-07 9.91574e-08 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| is proposed in ||| 0.04 0.605812 1.69729e-06 1.61516e-06 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| is proposing in ||| 0.0714286 0.605812 8.48644e-07 3.38662e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| is provided in ||| 0.117647 0.605812 1.69729e-06 3.31715e-06 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| is provided ||| 0.00332226 0.0005032 8.48644e-07 6.55054e-08 2.718 ||| 0-0 ||| 301 1.17835e+06 +en ||| is published in an unambiguous manner ||| 0.25 0.605812 8.48644e-07 3.07698e-19 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is published in an unambiguous ||| 0.25 0.605812 8.48644e-07 1.57794e-15 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is published in an ||| 0.2 0.605812 8.48644e-07 1.43449e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| is published in ||| 0.0666667 0.605812 8.48644e-07 3.22742e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| is pursuing in ||| 0.25 0.605812 8.48644e-07 3.54582e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is put in place ||| 0.025641 0.605812 8.48644e-07 2.40162e-08 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| is put in ||| 0.0350877 0.605812 1.69729e-06 1.59576e-05 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| is put to ||| 0.0689655 0.0247351 1.69729e-06 9.7133e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| is putting ||| 0.00520833 0.0013435 8.48644e-07 1.28499e-07 2.718 ||| 0-1 ||| 192 1.17835e+06 +en ||| is realised as ||| 0.0625 0.066968 8.48644e-07 6.87788e-09 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| is really establishing itself in ||| 1 0.605812 8.48644e-07 2.22678e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is really happening at ||| 1 0.321886 8.48644e-07 3.29761e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is reflected ||| 0.0031348 0.0024643 8.48644e-07 1.0656e-07 2.718 ||| 0-1 ||| 319 1.17835e+06 +en ||| is regarded by ||| 0.166667 0.0468744 8.48644e-07 1.49575e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| is relevant in ||| 0.142857 0.605812 8.48644e-07 1.55727e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| is reported sometimes in ||| 1 0.605812 8.48644e-07 2.52672e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is required by ||| 0.030303 0.0468744 8.48644e-07 4.23129e-08 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| is required for ||| 0.025 0.0286209 8.48644e-07 5.72249e-08 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| is required in ||| 0.025641 0.605812 8.48644e-07 2.29682e-06 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| is required on ||| 0.5 0.22993 8.48644e-07 4.13069e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is required so as ||| 0.5 0.066968 8.48644e-07 2.03067e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is respected according to ||| 0.5 0.0416907 8.48644e-07 9.1491e-12 2.718 ||| 0-2 0-3 ||| 2 1.17835e+06 +en ||| is responsible for what in ||| 0.25 0.605812 8.48644e-07 2.30829e-11 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| is responsible for ||| 0.00246002 0.0286209 1.69729e-06 5.33306e-08 2.718 ||| 0-2 ||| 813 1.17835e+06 +en ||| is revealed in ||| 0.111111 0.605812 8.48644e-07 2.08407e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| is right , in ||| 0.2 0.605812 8.48644e-07 1.11306e-06 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| is right at ||| 0.111111 0.321886 8.48644e-07 8.08515e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| is right in ||| 0.00854701 0.605812 8.48644e-07 9.33346e-06 2.718 ||| 0-2 ||| 117 1.17835e+06 +en ||| is right ||| 0.001875 0.0071334 2.54593e-06 5.61006e-06 2.718 ||| 0-1 ||| 1600 1.17835e+06 +en ||| is rolled out in ||| 1 0.605812 8.48644e-07 2.38376e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is said and done , ||| 0.0151515 0.0010182 8.48644e-07 6.46806e-13 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| is said and done ||| 0.0135135 0.0010182 8.48644e-07 5.42373e-12 2.718 ||| 0-2 ||| 74 1.17835e+06 +en ||| is said and ||| 0.010101 0.0010182 8.48644e-07 1.18942e-08 2.718 ||| 0-2 ||| 99 1.17835e+06 +en ||| is said in ||| 0.0731707 0.605812 2.54593e-06 5.95263e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| is scarcely to ||| 0.333333 0.0247351 8.48644e-07 2.81902e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is scarcely yet on ||| 1 0.22993 8.48644e-07 2.20303e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is scheduled to ||| 0.0243902 0.0247351 8.48644e-07 1.4888e-08 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| is scope for ||| 0.111111 0.0286209 8.48644e-07 3.59504e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| is second to ||| 0.333333 0.0247351 8.48644e-07 5.73495e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is seeking in ||| 0.5 0.605812 8.48644e-07 7.33767e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is set to ||| 0.00662252 0.0247351 8.48644e-07 5.14824e-07 2.718 ||| 0-2 ||| 151 1.17835e+06 +en ||| is shaped in ||| 1 0.605812 8.48644e-07 5.78909e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is shut down in 2008 ||| 1 0.605812 8.48644e-07 3.72715e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is shut down in ||| 1 0.605812 8.48644e-07 1.56603e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is simply removed from ||| 1 0.0308834 8.48644e-07 1.19769e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is sitting in ||| 0.0625 0.605812 8.48644e-07 1.00585e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| is so ||| 0.000564653 0.0087276 8.48644e-07 2.13464e-05 2.718 ||| 0-1 ||| 1771 1.17835e+06 +en ||| is some improvement in ||| 0.333333 0.605812 8.48644e-07 3.29491e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| is something in which ||| 0.142857 0.605812 8.48644e-07 6.80473e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| is something in ||| 0.1 0.605812 1.69729e-06 8.01065e-06 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| is something on which we ||| 0.125 0.22993 8.48644e-07 1.38928e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| is something on which ||| 0.04 0.22993 8.48644e-07 1.22379e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| is something on ||| 0.047619 0.22993 1.69729e-06 1.44067e-06 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| is something over ||| 0.25 0.157937 8.48644e-07 6.95141e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is something that , in ||| 0.5 0.605812 8.48644e-07 1.60698e-08 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| is something to be ||| 0.027027 0.0247351 8.48644e-07 8.83678e-09 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| is something to which ||| 0.0277778 0.0247351 8.48644e-07 4.14199e-09 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| is something to ||| 0.0196078 0.0247351 1.69729e-06 4.87603e-07 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| is something ||| 0.000332668 0.0005032 8.48644e-07 1.5819e-07 2.718 ||| 0-0 ||| 3006 1.17835e+06 +en ||| is soon ||| 0.0277778 0.0178344 8.48644e-07 3.58229e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| is speaking , ||| 0.25 0.0538225 8.48644e-07 8.46934e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| is speaking on ||| 0.333333 0.22993 8.48644e-07 2.98805e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is speaking ||| 0.0166667 0.0538225 8.48644e-07 7.10189e-06 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| is spent in ||| 0.0555556 0.605812 8.48644e-07 9.27702e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| is still guaranteed when ||| 0.0555556 0.142731 8.48644e-07 4.96086e-12 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| is still lying in ||| 0.5 0.605812 8.48644e-07 1.56972e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is still on ||| 0.0142857 0.22993 8.48644e-07 1.96045e-06 2.718 ||| 0-2 ||| 70 1.17835e+06 +en ||| is still relevant today ||| 0.333333 0.0398284 8.48644e-07 3.06428e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| is stopping ||| 0.0416667 0.00998 8.48644e-07 1.0656e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| is struggling to ||| 0.047619 0.0247351 8.48644e-07 4.7571e-09 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| is subject to ||| 0.00367647 0.0247351 8.48644e-07 4.75534e-07 2.718 ||| 0-2 ||| 272 1.17835e+06 +en ||| is supplied on ||| 0.5 0.22993 8.48644e-07 3.27956e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is supplied to ||| 0.333333 0.0247351 8.48644e-07 1.10999e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is taken at ||| 0.111111 0.321886 8.48644e-07 1.14275e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| is taken in ||| 0.0714286 0.605812 8.48644e-07 1.31919e-05 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| is taken of ||| 0.0238095 0.0116562 8.48644e-07 3.89574e-07 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| is taken to mean that ||| 1 0.0247351 8.48644e-07 3.48087e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is taken to mean ||| 0.333333 0.0247351 8.48644e-07 2.06928e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is taken to ||| 0.105263 0.0247351 1.69729e-06 8.02981e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| is taken ||| 0.00127065 0.0042106 8.48644e-07 2.79249e-06 2.718 ||| 0-1 ||| 787 1.17835e+06 +en ||| is taking in ||| 0.117647 0.605812 1.69729e-06 6.15091e-06 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| is taking off in ||| 0.5 0.605812 8.48644e-07 2.50342e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is taking place at ||| 0.0138889 0.321886 8.48644e-07 8.01902e-10 2.718 ||| 0-3 ||| 72 1.17835e+06 +en ||| is taking place in ||| 0.0238095 0.605812 2.54593e-06 9.25712e-09 2.718 ||| 0-3 ||| 126 1.17835e+06 +en ||| is taking place ||| 0.00128866 0.0153333 8.48644e-07 8.12239e-09 2.718 ||| 0-1 ||| 776 1.17835e+06 +en ||| is taking ||| 0.00261097 0.0153333 2.54593e-06 5.39694e-06 2.718 ||| 0-1 ||| 1149 1.17835e+06 +en ||| is tantamount to ||| 0.00833333 0.0247351 8.48644e-07 7.57613e-09 2.718 ||| 0-2 ||| 120 1.17835e+06 +en ||| is targeted at ||| 0.0357143 0.321886 8.48644e-07 3.52292e-08 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| is that , in ||| 0.0304569 0.605812 5.09187e-06 2.90331e-05 2.718 ||| 0-3 ||| 197 1.17835e+06 +en ||| is that at ||| 0.025641 0.321886 8.48644e-07 2.10894e-05 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| is that from which ||| 1 0.0308834 8.48644e-07 1.70408e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is that from ||| 0.125 0.0308834 8.48644e-07 2.00608e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| is that in ||| 0.0204082 0.605812 5.09187e-06 0.000243454 2.718 ||| 0-2 ||| 294 1.17835e+06 +en ||| is that of ||| 0.00140845 0.0116562 8.48644e-07 7.18953e-06 2.718 ||| 0-2 ||| 710 1.17835e+06 +en ||| is that they should ||| 0.05 0.0036976 8.48644e-07 6.8353e-10 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| is that they ||| 0.00662252 0.0036976 8.48644e-07 1.54261e-07 2.718 ||| 0-2 ||| 151 1.17835e+06 +en ||| is that ||| 0.000324525 0.0017499 5.94051e-06 3.27577e-05 2.718 ||| 0-1 ||| 21570 1.17835e+06 +en ||| is the case for ||| 0.0441176 0.0286209 2.54593e-06 2.36844e-08 2.718 ||| 0-3 ||| 68 1.17835e+06 +en ||| is the case in the ||| 0.0322581 0.605812 8.48644e-07 5.83599e-08 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| is the case in ||| 0.0677966 0.605812 1.01837e-05 9.50613e-07 2.718 ||| 0-3 ||| 177 1.17835e+06 +en ||| is the case that in ||| 0.5 0.605812 8.48644e-07 1.59908e-08 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| is the case with ||| 0.00507614 0.0535436 8.48644e-07 2.40008e-08 2.718 ||| 0-3 ||| 197 1.17835e+06 +en ||| is the greatest scourge ||| 0.166667 0.0011669 8.48644e-07 5.28641e-15 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| is the greatest ||| 0.00840336 0.0011669 8.48644e-07 1.652e-09 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| is the one ||| 0.00502513 0.0011669 8.48644e-07 3.74215e-07 2.718 ||| 0-1 ||| 199 1.17835e+06 +en ||| is the ||| 0.000549574 0.0011669 1.86702e-05 8.97828e-05 2.718 ||| 0-1 ||| 40031 1.17835e+06 +en ||| is then that ||| 0.0769231 0.013351 8.48644e-07 1.76878e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| is then ||| 0.02 0.013351 3.39458e-06 1.05149e-05 2.718 ||| 0-1 ||| 200 1.17835e+06 +en ||| is there any added value with regard ||| 1 0.0535436 8.48644e-07 7.21974e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is there any added value with ||| 1 0.0535436 8.48644e-07 1.06032e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is there in ||| 0.09375 0.605812 2.54593e-06 4.43633e-05 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| is there that ||| 0.047619 0.0117359 8.48644e-07 5.9121e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| is there ||| 0.000700771 0.0117359 8.48644e-07 3.51459e-05 2.718 ||| 0-1 ||| 1427 1.17835e+06 +en ||| is therefore important to emphasise that social ||| 1 0.207288 8.48644e-07 1.38805e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is therefore important to emphasise that ||| 1 0.207288 8.48644e-07 1.34371e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is therefore important to emphasise ||| 1 0.207288 8.48644e-07 7.98801e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is therefore in ||| 0.0357143 0.605812 8.48644e-07 1.21035e-05 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| is therefore revealing ||| 0.5 0.0081305 8.48644e-07 1.08854e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is therefore very ||| 0.0227273 0.0081305 8.48644e-07 9.46893e-08 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| is therefore ||| 0.000737735 0.0081305 1.69729e-06 2.72135e-05 2.718 ||| 0-1 ||| 2711 1.17835e+06 +en ||| is this , then , on ||| 1 0.22993 8.48644e-07 3.85174e-10 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is through ||| 0.00283286 0.0366102 8.48644e-07 2.94732e-05 2.718 ||| 0-1 ||| 353 1.17835e+06 +en ||| is to a ||| 0.030303 0.0247351 8.48644e-07 3.90486e-05 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| is to be adopted in ||| 0.166667 0.605812 8.48644e-07 4.75451e-09 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| is to be brought ||| 0.2 0.0247351 8.48644e-07 4.47028e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| is to be decided in ||| 0.25 0.605812 8.48644e-07 1.59416e-09 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| is to be dissolved in ||| 1 0.605812 8.48644e-07 3.2629e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is to be found in ||| 0.0181818 0.605812 8.48644e-07 5.09945e-09 2.718 ||| 0-4 ||| 55 1.17835e+06 +en ||| is to be hoped ||| 0.0365854 0.0247351 2.54593e-06 3.09726e-10 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| is to be included once again amongst ||| 1 0.050508 8.48644e-07 1.32784e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| is to be made in ||| 0.333333 0.605812 8.48644e-07 4.88223e-08 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| is to be made of ||| 0.25 0.0116562 8.48644e-07 1.44179e-09 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| is to be phased out in ||| 1 0.605812 8.48644e-07 4.19583e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is to be ||| 0.00334448 0.0247351 8.48644e-06 1.59653e-05 2.718 ||| 0-1 ||| 2990 1.17835e+06 +en ||| is to become ||| 0.00819672 0.219193 8.48644e-07 1.06481e-05 2.718 ||| 0-2 ||| 122 1.17835e+06 +en ||| is to create internationally competitive ||| 1 0.0446927 8.48644e-07 3.25823e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is to create internationally ||| 1 0.0446927 8.48644e-07 1.70588e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is to look in ||| 0.5 0.605812 8.48644e-07 3.74875e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is to put ||| 0.00943396 0.0247351 8.48644e-07 9.7133e-07 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| is to say , in ||| 0.2 0.605812 8.48644e-07 1.46585e-07 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| is to say in ||| 0.222222 0.605812 1.69729e-06 1.22918e-06 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| is to say into ||| 1 0.525896 8.48644e-07 5.89255e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is to say members ||| 0.5 0.0247351 8.48644e-07 1.24196e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is to say on ||| 0.0909091 0.22993 8.48644e-07 2.2106e-07 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| is to say the ||| 0.016129 0.0011669 8.48644e-07 7.62532e-09 2.718 ||| 0-3 ||| 62 1.17835e+06 +en ||| is to say ||| 0.00529101 0.0247351 2.54593e-06 8.42007e-07 2.718 ||| 0-1 ||| 567 1.17835e+06 +en ||| is to speak on ||| 0.5 0.22993 8.48644e-07 3.12925e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| is to take in ||| 0.333333 0.605812 8.48644e-07 2.07049e-06 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| is to take place in ||| 0.0540541 0.605812 1.69729e-06 3.11609e-09 2.718 ||| 0-4 ||| 37 1.17835e+06 +en ||| is to take ||| 0.00409836 0.0074151 8.48644e-07 8.14866e-07 2.718 ||| 0-2 ||| 244 1.17835e+06 +en ||| is to the ||| 0.0253165 0.0247351 3.39458e-06 5.40828e-05 2.718 ||| 0-1 ||| 158 1.17835e+06 +en ||| is to ||| 0.00557085 0.0247351 7.38321e-05 0.000880945 2.718 ||| 0-1 ||| 15617 1.17835e+06 +en ||| is towards ||| 0.04 0.0616136 8.48644e-07 3.1222e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| is transferred at once ||| 1 0.321886 8.48644e-07 1.10812e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is transferred at ||| 1 0.321886 8.48644e-07 2.70801e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is true for ||| 0.0120482 0.0286209 8.48644e-07 5.82706e-08 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| is true in ||| 0.0172414 0.605812 8.48644e-07 2.33879e-06 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| is true of ||| 0.0103093 0.0116562 1.69729e-06 6.90676e-08 2.718 ||| 0-2 ||| 194 1.17835e+06 +en ||| is true that I , at ||| 1 0.321886 8.48644e-07 2.87485e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is true that in ||| 0.2 0.605812 8.48644e-07 3.93422e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| is true ||| 0.000781861 0.0005032 8.48644e-07 4.61853e-08 2.718 ||| 0-0 ||| 1279 1.17835e+06 +en ||| is under discussion ||| 0.0188679 0.205566 8.48644e-07 1.53119e-08 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| is under pressure ||| 0.030303 0.205566 8.48644e-07 1.0651e-08 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| is under way ||| 0.005 0.205566 8.48644e-07 3.82018e-07 2.718 ||| 0-1 ||| 200 1.17835e+06 +en ||| is under ||| 0.0326264 0.205566 1.69729e-05 0.000177221 2.718 ||| 0-1 ||| 613 1.17835e+06 +en ||| is undergoing a ||| 0.037037 0.130682 8.48644e-07 6.52933e-08 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| is undergoing ||| 0.00934579 0.130682 8.48644e-07 1.47303e-06 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| is underway in ||| 0.25 0.605812 8.48644e-07 2.02618e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| is underway involving ||| 1 0.0505311 8.48644e-07 9.37663e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| is underway ||| 0.0128205 0.268204 8.48644e-07 4.7137e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| is up to us ||| 0.0149254 0.0247351 8.48644e-07 8.65946e-09 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| is up to ||| 0.00595238 0.0247351 1.69729e-06 3.00446e-06 2.718 ||| 0-2 ||| 336 1.17835e+06 +en ||| is upheld in ||| 0.166667 0.605812 8.48644e-07 1.50516e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| is upon ||| 0.0909091 0.114601 8.48644e-07 2.77024e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| is very important , in ||| 0.125 0.605812 8.48644e-07 2.30368e-09 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| is very important in ||| 0.00909091 0.605812 8.48644e-07 1.93173e-08 2.718 ||| 0-3 ||| 110 1.17835e+06 +en ||| is very much in a class of ||| 1 0.605812 8.48644e-07 1.04746e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is very much in a class ||| 1 0.605812 8.48644e-07 1.92675e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is very much in a ||| 1 0.605812 8.48644e-07 2.24041e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is very much in keeping with ||| 0.333333 0.0535436 8.48644e-07 1.60338e-15 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| is very much in ||| 0.0120482 0.605812 8.48644e-07 5.05442e-08 2.718 ||| 0-3 ||| 83 1.17835e+06 +en ||| is very much on ||| 0.0909091 0.22993 8.48644e-07 9.09005e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| is viewed throughout ||| 0.333333 0.309047 8.48644e-07 2.19103e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| is voted out ||| 0.5 0.122467 8.48644e-07 2.66137e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is voted ||| 0.0588235 0.122467 8.48644e-07 6.94801e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| is waging on its people in ||| 1 0.605812 8.48644e-07 4.85743e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is what is required on ||| 1 0.22993 8.48644e-07 1.81646e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is what the rapporteur means ; in ||| 1 0.605812 8.48644e-07 1.75923e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| is what ||| 0.000422386 0.0035633 1.69729e-06 1.22418e-05 2.718 ||| 0-1 ||| 4735 1.17835e+06 +en ||| is when , at the time of ||| 1 0.142731 8.48644e-07 5.10514e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is when , at the time ||| 1 0.142731 8.48644e-07 9.39066e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is when , at the ||| 1 0.142731 8.48644e-07 5.72008e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is when , at ||| 1 0.142731 8.48644e-07 9.31734e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is when , ||| 0.25 0.142731 8.48644e-07 2.22509e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| is when dealing ||| 0.5 0.142731 8.48644e-07 1.9274e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| is when ||| 0.0328947 0.142731 4.24322e-06 0.000186583 2.718 ||| 0-1 ||| 152 1.17835e+06 +en ||| is where ||| 0.035343 0.247783 2.88539e-05 0.00026692 2.718 ||| 0-1 ||| 962 1.17835e+06 +en ||| is wholly incompatible with ||| 0.333333 0.0535436 8.48644e-07 1.31545e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| is why , for some ||| 1 0.0286209 8.48644e-07 1.15464e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| is why , for ||| 0.125 0.0286209 8.48644e-07 1.05999e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| is why , in ||| 0.02 0.605812 8.48644e-07 4.25444e-07 2.718 ||| 0-3 ||| 50 1.17835e+06 +en ||| is why , over time ||| 0.333333 0.157937 8.48644e-07 6.06096e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| is why , over ||| 0.25 0.157937 8.48644e-07 3.69188e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| is why I should like to ||| 0.1 0.0247351 8.48644e-07 1.20871e-14 2.718 ||| 0-5 ||| 10 1.17835e+06 +en ||| is why it insists on the rights ||| 1 0.22993 8.48644e-07 9.81133e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is why it insists on the ||| 1 0.22993 8.48644e-07 4.90321e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is why it insists on ||| 1 0.22993 8.48644e-07 7.98676e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| is why we expect the investigation at ||| 0.25 0.321886 8.48644e-07 2.11228e-19 2.718 ||| 0-6 ||| 4 1.17835e+06 +en ||| is why we need nutrient profiling , ||| 0.5 0.0054082 8.48644e-07 2.31404e-24 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is why we need nutrient profiling ||| 0.5 0.0054082 8.48644e-07 1.94042e-23 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is why we need nutrient ||| 0.5 0.0054082 8.48644e-07 1.76402e-17 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is why we need ||| 0.00465116 0.0054082 8.48644e-07 1.60365e-11 2.718 ||| 0-2 ||| 215 1.17835e+06 +en ||| is why we ||| 0.00118624 0.0054082 8.48644e-07 1.74899e-08 2.718 ||| 0-2 ||| 843 1.17835e+06 +en ||| is why ||| 9.33794e-05 0.0005032 8.48644e-07 7.04497e-08 2.718 ||| 0-0 ||| 10709 1.17835e+06 +en ||| is with a ||| 0.0625 0.0535436 8.48644e-07 1.61968e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| is with reference to them ||| 1 0.0535436 8.48644e-07 7.4292e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| is with reference to ||| 0.142857 0.0535436 8.48644e-07 2.76961e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| is with reference ||| 0.142857 0.0535436 8.48644e-07 3.11689e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| is with satisfaction that we in ||| 1 0.605812 8.48644e-07 2.10308e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| is with ||| 0.0456274 0.0535436 2.03675e-05 0.000365403 2.718 ||| 0-1 ||| 526 1.17835e+06 +en ||| is within ||| 0.0958904 0.369196 1.1881e-05 0.000347469 2.718 ||| 0-1 ||| 146 1.17835e+06 +en ||| is written from ||| 0.5 0.0308834 8.48644e-07 5.9628e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| is written on ||| 0.0909091 0.22993 8.48644e-07 1.30141e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| is ||| 0.00050193 0.0005032 0.000218102 0.0002858 2.718 ||| 0-0 ||| 512024 1.17835e+06 +en ||| island of ||| 0.00374532 0.0116562 8.48644e-07 1.37734e-07 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| islands as ||| 1 0.066968 8.48644e-07 1.42104e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| islands within ||| 0.125 0.369196 8.48644e-07 8.75849e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| issue , however , in ||| 1 0.605812 8.48644e-07 5.50542e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| issue , we insist ||| 0.5 0.221585 8.48644e-07 4.58084e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| issue and focusing ||| 0.5 0.010479 8.48644e-07 9.00562e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| issue as , when ||| 1 0.142731 8.48644e-07 5.48279e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| issue as regards ||| 0.1 0.0372075 8.48644e-07 1.28781e-09 2.718 ||| 0-1 0-2 ||| 10 1.17835e+06 +en ||| issue as ||| 0.0046729 0.066968 8.48644e-07 1.36132e-05 2.718 ||| 0-1 ||| 214 1.17835e+06 +en ||| issue at ||| 0.0230263 0.321886 5.94051e-06 3.02735e-05 2.718 ||| 0-1 ||| 304 1.17835e+06 +en ||| issue back in ||| 0.333333 0.605812 8.48644e-07 2.35058e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| issue behind ||| 0.166667 0.0374138 8.48644e-07 1.76107e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| issue during ||| 0.0238095 0.226251 8.48644e-07 2.18814e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| issue for having supported the ||| 1 0.0286209 8.48644e-07 1.06023e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| issue for having supported ||| 1 0.0286209 8.48644e-07 1.72699e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| issue for having ||| 1 0.0286209 8.48644e-07 3.33396e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| issue for ||| 0.00872093 0.0286209 2.54593e-06 8.70714e-06 2.718 ||| 0-1 ||| 344 1.17835e+06 +en ||| issue from problem to ||| 0.5 0.0247351 8.48644e-07 7.7044e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| issue from ||| 0.0138889 0.0308834 8.48644e-07 2.8797e-06 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| issue has on ||| 1 0.22993 8.48644e-07 3.23526e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| issue here , ||| 0.0714286 0.0855319 8.48644e-07 2.70765e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| issue here ||| 0.008 0.0855319 1.69729e-06 2.27048e-06 2.718 ||| 0-1 ||| 250 1.17835e+06 +en ||| issue in the ||| 0.00420168 0.605812 8.48644e-07 2.1455e-05 2.718 ||| 0-1 ||| 238 1.17835e+06 +en ||| issue in ||| 0.0425258 0.605812 2.80053e-05 0.000349476 2.718 ||| 0-1 ||| 776 1.17835e+06 +en ||| issue into ||| 0.166667 0.525896 1.69729e-06 1.67535e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| issue is ||| 0.00143885 0.0005032 1.69729e-06 2.16293e-07 2.718 ||| 0-1 ||| 1390 1.17835e+06 +en ||| issue of active ||| 1 0.0116562 8.48644e-07 4.15915e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| issue of ||| 0.00162496 0.0116562 1.27297e-05 1.03205e-05 2.718 ||| 0-1 ||| 9231 1.17835e+06 +en ||| issue on ||| 0.0031746 0.22993 8.48644e-07 6.2851e-05 2.718 ||| 0-1 ||| 315 1.17835e+06 +en ||| issue raised by Mr ||| 0.047619 0.0468744 8.48644e-07 4.84167e-13 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| issue raised by ||| 0.0151515 0.0468744 8.48644e-07 7.41678e-10 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| issue with ||| 0.00325733 0.0535436 8.48644e-07 8.82346e-06 2.718 ||| 0-1 ||| 307 1.17835e+06 +en ||| issue within ||| 0.0243902 0.369196 8.48644e-07 8.39041e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| issued in the ||| 0.0714286 0.605812 8.48644e-07 1.75484e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| issued in ||| 0.038835 0.605812 3.39458e-06 2.85843e-05 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| issued it in ||| 1 0.605812 8.48644e-07 5.08319e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| issues and ||| 0.00176678 0.0010182 8.48644e-07 2.32059e-07 2.718 ||| 0-1 ||| 566 1.17835e+06 +en ||| issues are worth stressing ||| 1 0.152 8.48644e-07 1.78226e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| issues arising from ||| 0.0625 0.0308834 8.48644e-07 2.78482e-11 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| issues at ||| 0.00763359 0.321886 8.48644e-07 1.00605e-05 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| issues during ||| 0.0588235 0.226251 8.48644e-07 7.27162e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| issues in question ||| 0.0833333 0.605812 8.48644e-07 9.60809e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| issues in some of ||| 1 0.605812 8.48644e-07 6.87754e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| issues in some ||| 0.5 0.605812 8.48644e-07 1.26509e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| issues in the ||| 0.00847458 0.605812 8.48644e-07 7.12992e-06 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| issues in ||| 0.0342612 0.605812 1.35783e-05 0.000116138 2.718 ||| 0-1 ||| 467 1.17835e+06 +en ||| issues into ||| 0.111111 0.525896 8.48644e-07 5.56753e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| issues of ||| 0.000672947 0.0116562 8.48644e-07 3.42971e-06 2.718 ||| 0-1 ||| 1486 1.17835e+06 +en ||| issues relating ||| 0.00363636 0.0325028 8.48644e-07 5.42486e-08 2.718 ||| 0-1 ||| 275 1.17835e+06 +en ||| issues such as ||| 0.00163934 0.066968 8.48644e-07 9.35961e-09 2.718 ||| 0-2 ||| 610 1.17835e+06 +en ||| issues that are around in ||| 1 0.605812 8.48644e-07 3.94829e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| issues with ||| 0.00689655 0.0535436 8.48644e-07 2.93221e-06 2.718 ||| 0-1 ||| 145 1.17835e+06 +en ||| issues ||| 3.64259e-05 3.48e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 27453 1.17835e+06 +en ||| it , as ||| 0.00561798 0.066968 8.48644e-07 3.81475e-05 2.718 ||| 0-2 ||| 178 1.17835e+06 +en ||| it , at ||| 0.142857 0.321886 1.69729e-06 8.48334e-05 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| it , for , in ||| 1 0.605812 8.48644e-07 8.97595e-07 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it , having ||| 0.125 0.0065553 8.48644e-07 1.63084e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| it , in ||| 0.0392157 0.605812 3.39458e-06 0.000979313 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| it , that in ||| 0.5 0.605812 8.48644e-07 1.64736e-05 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it , ||| 0.000610998 0.0080472 2.54593e-06 0.000328893 2.718 ||| 0-0 ||| 4910 1.17835e+06 +en ||| it - in ||| 0.1 0.605812 8.48644e-07 3.09763e-05 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| it - that it is in ||| 1 0.605812 8.48644e-07 2.90416e-10 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it - ||| 0.0028169 0.0080472 8.48644e-07 1.04031e-05 2.718 ||| 0-0 ||| 355 1.17835e+06 +en ||| it . ||| 0.000103135 6.3e-05 8.48644e-07 1.44044e-06 2.718 ||| 0-1 ||| 9696 1.17835e+06 +en ||| it : ||| 0.00497512 0.0080472 8.48644e-07 9.28861e-07 2.718 ||| 0-0 ||| 201 1.17835e+06 +en ||| it a ||| 0.011257 0.0080472 5.09187e-06 0.000122246 2.718 ||| 0-0 ||| 533 1.17835e+06 +en ||| it about 1000 jobs in the area ||| 1 0.605812 8.48644e-07 1.07371e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it about 1000 jobs in the ||| 1 0.605812 8.48644e-07 2.58539e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it about 1000 jobs in ||| 1 0.605812 8.48644e-07 4.21129e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it about ||| 0.0172414 0.0401564 8.48644e-07 5.09684e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| it accordingly ||| 0.181818 0.0994049 1.69729e-06 1.31e-06 2.718 ||| 0-0 0-1 ||| 11 1.17835e+06 +en ||| it actually ||| 0.00671141 0.125341 8.48644e-07 2.38864e-05 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| it again on ||| 0.5 0.22993 8.48644e-07 8.54072e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it all depends on ||| 0.0666667 0.22993 8.48644e-07 1.0538e-10 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| it all with ||| 1 0.0535436 8.48644e-07 9.79729e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it all ||| 0.00263852 0.0080472 8.48644e-07 1.30322e-05 2.718 ||| 0-0 ||| 379 1.17835e+06 +en ||| it also stresses ||| 0.05 0.174236 8.48644e-07 1.28924e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| it also ||| 0.000909366 0.0080472 2.54593e-06 1.39235e-05 2.718 ||| 0-0 ||| 3299 1.17835e+06 +en ||| it among ||| 0.1 0.0422459 8.48644e-07 5.66395e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| it and hang it ||| 0.5 0.0080472 8.48644e-07 2.4573e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| it and hang ||| 0.5 0.0080472 8.48644e-07 1.38181e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| it and ||| 0.000761035 0.0080472 8.48644e-07 3.45452e-05 2.718 ||| 0-0 ||| 1314 1.17835e+06 +en ||| it appeared at ||| 0.5 0.321886 8.48644e-07 1.58634e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it appeared it might turn out to ||| 1 0.0247351 8.48644e-07 6.53688e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| it appears that in ||| 0.0909091 0.605812 8.48644e-07 7.21081e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| it appears to ||| 0.00793651 0.0163912 8.48644e-07 4.04654e-09 2.718 ||| 0-0 0-2 ||| 126 1.17835e+06 +en ||| it appears ||| 0.00131406 0.0080472 8.48644e-07 1.43962e-07 2.718 ||| 0-0 ||| 761 1.17835e+06 +en ||| it applies in ||| 0.142857 0.605812 8.48644e-07 6.88161e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| it appropriate ||| 0.0188679 0.0080472 8.48644e-07 3.71213e-07 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| it arises with ||| 0.333333 0.0535436 8.48644e-07 4.25032e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| it as a matter for ||| 1 0.0286209 8.48644e-07 9.60144e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it as a matter of ||| 0.125 0.066968 8.48644e-07 7.99736e-10 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| it as a matter ||| 0.1 0.066968 8.48644e-07 1.47108e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| it as a ||| 0.0123967 0.066968 2.54593e-06 1.4179e-05 2.718 ||| 0-1 ||| 242 1.17835e+06 +en ||| it as ||| 0.0171779 0.066968 1.1881e-05 0.000319882 2.718 ||| 0-1 ||| 815 1.17835e+06 +en ||| it at work in ||| 0.333333 0.605812 8.48644e-07 2.17668e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| it at ||| 0.223642 0.321886 5.94051e-05 0.000711364 2.718 ||| 0-1 ||| 313 1.17835e+06 +en ||| it attaches in ||| 1 0.605812 8.48644e-07 2.9563e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it avoids ||| 0.0357143 0.0080472 8.48644e-07 1.10316e-09 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| it back again in the ||| 1 0.605812 8.48644e-07 1.96095e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it back again in ||| 1 0.605812 8.48644e-07 3.19416e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it back in ||| 0.166667 0.605812 8.48644e-07 5.52335e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| it back on ||| 0.333333 0.22993 8.48644e-07 9.9334e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| it back to them in ||| 0.333333 0.605812 8.48644e-07 1.31651e-09 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| it back to ||| 0.0526316 0.0247351 8.48644e-07 3.36203e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| it be from ||| 0.166667 0.0308834 8.48644e-07 1.22632e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| it be guaranteed in ||| 1 0.605812 8.48644e-07 5.2535e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it be harmful ||| 0.25 0.0080472 8.48644e-07 5.94776e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| it be in the ||| 0.0714286 0.605812 8.48644e-07 9.13659e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| it be in ||| 0.108696 0.605812 4.24322e-06 0.000148824 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| it be on ||| 0.166667 0.22993 8.48644e-07 2.67651e-05 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| it be published in ||| 1 0.605812 8.48644e-07 3.31878e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it be ||| 0.00368098 0.0080472 2.54593e-06 4.99811e-05 2.718 ||| 0-0 ||| 815 1.17835e+06 +en ||| it became clear that in ||| 0.5 0.605812 8.48644e-07 1.22323e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| it became ||| 0.004329 0.137638 8.48644e-07 4.51338e-06 2.718 ||| 0-1 ||| 231 1.17835e+06 +en ||| it becomes clear at ||| 1 0.321886 8.48644e-07 9.70933e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it been solved at ||| 0.5 0.321886 8.48644e-07 2.56542e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it by ||| 0.0218978 0.0468744 5.09187e-06 0.000151283 2.718 ||| 0-1 ||| 274 1.17835e+06 +en ||| it calls for ||| 0.00390625 0.0286209 8.48644e-07 7.36557e-09 2.718 ||| 0-2 ||| 256 1.17835e+06 +en ||| it came to ||| 0.0104167 0.0247351 1.69729e-06 6.29818e-08 2.718 ||| 0-2 ||| 192 1.17835e+06 +en ||| it can be applied to ||| 0.142857 0.0247351 8.48644e-07 2.918e-12 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| it can be seen in ||| 0.25 0.605812 8.48644e-07 9.31774e-11 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| it can be seen ||| 0.0227273 0.0080472 8.48644e-07 3.12927e-11 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| it can be summarized in ||| 1 0.605812 8.48644e-07 1.77059e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it can be ||| 0.00111483 0.0080472 8.48644e-07 1.48659e-07 2.718 ||| 0-0 ||| 897 1.17835e+06 +en ||| it can complete ||| 1 0.0080472 8.48644e-07 5.87322e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it can in ||| 0.0666667 0.605812 8.48644e-07 2.44248e-05 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| it can still be of use in ||| 1 0.605812 8.48644e-07 8.81242e-15 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| it can to ||| 0.00584795 0.0247351 8.48644e-07 1.48672e-06 2.718 ||| 0-2 ||| 171 1.17835e+06 +en ||| it can ||| 0.000876168 0.0080472 2.54593e-06 8.20282e-06 2.718 ||| 0-0 ||| 3424 1.17835e+06 +en ||| it cannot be in ||| 0.111111 0.605812 8.48644e-07 3.35301e-08 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| it cannot be ||| 0.0027972 0.0080472 1.69729e-06 1.12608e-08 2.718 ||| 0-0 ||| 715 1.17835e+06 +en ||| it cannot in ||| 0.5 0.605812 8.48644e-07 1.85015e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it cannot just be about ||| 1 0.0401564 8.48644e-07 2.62571e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it cannot ||| 0.00160256 0.0080472 1.69729e-06 6.21355e-07 2.718 ||| 0-0 ||| 1248 1.17835e+06 +en ||| it challenges ||| 0.047619 0.0080472 8.48644e-07 5.15727e-08 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| it clear in ||| 0.125 0.605812 1.69729e-06 2.73376e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| it clear on ||| 0.2 0.22993 8.48644e-07 4.91649e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| it clear ||| 0.00352113 0.0080472 1.69729e-06 9.18105e-07 2.718 ||| 0-0 ||| 568 1.17835e+06 +en ||| it club class in ||| 0.5 0.605812 8.48644e-07 2.54242e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it comes at ||| 0.0454545 0.321886 1.69729e-06 2.84403e-07 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| it comes to cooperating at ||| 1 0.321886 8.48644e-07 6.31789e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it comes to the ||| 0.00134589 0.0247351 8.48644e-07 1.22687e-08 2.718 ||| 0-2 ||| 743 1.17835e+06 +en ||| it comes to ||| 0.00340619 0.0247351 1.01837e-05 1.99842e-07 2.718 ||| 0-2 ||| 3523 1.17835e+06 +en ||| it comes ||| 0.000765111 0.0080472 2.54593e-06 1.10261e-06 2.718 ||| 0-0 ||| 3921 1.17835e+06 +en ||| it concerned ||| 0.0227273 0.0080472 8.48644e-07 4.43636e-06 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| it conjures up ||| 0.5 0.0080472 8.48644e-07 3.76233e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| it conjures ||| 1 0.0080472 8.48644e-07 1.10316e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it contained ||| 0.0116279 0.0080472 8.48644e-07 1.87537e-07 2.718 ||| 0-0 ||| 86 1.17835e+06 +en ||| it could be a major environmental scandal ||| 1 0.0080472 8.48644e-07 2.08162e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it could be a major environmental ||| 1 0.0080472 8.48644e-07 4.16324e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it could be a major ||| 1 0.0080472 8.48644e-07 1.525e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it could be a ||| 0.0217391 0.0080472 8.48644e-07 1.57541e-09 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| it could be ||| 0.00197628 0.0080472 8.48644e-07 3.55416e-08 2.718 ||| 0-0 ||| 506 1.17835e+06 +en ||| it could ||| 0.00060241 0.0080472 8.48644e-07 1.96114e-06 2.718 ||| 0-0 ||| 1660 1.17835e+06 +en ||| it cover ||| 0.5 0.0047233 8.48644e-07 9.37686e-09 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| it deals in the ||| 1 0.0080472 8.48644e-07 9.27756e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it deals in ||| 0.25 0.0080472 8.48644e-07 1.51121e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| it deals with ||| 0.00526316 0.0307954 8.48644e-07 8.23144e-10 2.718 ||| 0-0 0-2 ||| 190 1.17835e+06 +en ||| it deals ||| 0.00892857 0.0080472 8.48644e-07 7.06022e-08 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| it decided a ||| 1 0.0080472 8.48644e-07 8.36163e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it decided ||| 0.0285714 0.0080472 8.48644e-07 1.8864e-07 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| it did at ||| 0.0666667 0.321886 8.48644e-07 3.23101e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| it did in ||| 0.125 0.605812 5.94051e-06 3.72987e-06 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| it did manage to ||| 0.333333 0.0247351 8.48644e-07 1.01257e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| it did not at ||| 1 0.321886 8.48644e-07 1.1031e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it did under ||| 0.5 0.205566 8.48644e-07 4.56729e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it did ||| 0.00555556 0.0080472 2.54593e-06 1.25264e-06 2.718 ||| 0-0 ||| 540 1.17835e+06 +en ||| it difficult for ||| 0.047619 0.0286209 8.48644e-07 2.54112e-08 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| it does , at ||| 1 0.321886 8.48644e-07 5.95022e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it does , for ||| 0.25 0.0286209 8.48644e-07 1.71138e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| it does , in ||| 0.142857 0.605812 8.48644e-07 6.8689e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| it does from ||| 0.166667 0.0308834 8.48644e-07 4.74615e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| it does in ||| 0.222222 0.605812 6.78915e-06 5.75986e-06 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| it does not in ||| 0.181818 0.605812 1.69729e-06 1.96647e-08 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| it does on the ||| 0.166667 0.22993 8.48644e-07 6.35942e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| it does on ||| 0.388889 0.22993 5.94051e-06 1.03587e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| it does so in ||| 0.0714286 0.605812 8.48644e-07 1.30732e-08 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| it does to ||| 0.0294118 0.0247351 8.48644e-07 3.50599e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| it does ||| 0.00291121 0.0080472 3.39458e-06 1.93439e-06 2.718 ||| 0-0 ||| 1374 1.17835e+06 +en ||| it during ||| 0.131579 0.226251 4.24322e-06 5.14166e-05 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| it easier ||| 0.00361011 0.0080472 8.48644e-07 1.92501e-07 2.718 ||| 0-0 ||| 277 1.17835e+06 +en ||| it emerged at ||| 0.5 0.321886 8.48644e-07 1.71439e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it encouraging ||| 0.2 0.0080472 8.48644e-07 6.5638e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| it ends up as ||| 0.5 0.066968 8.48644e-07 2.55284e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it entered into ||| 0.0357143 0.525896 8.48644e-07 1.25975e-08 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| it ever did in ||| 1 0.605812 8.48644e-07 7.00842e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it fail to ||| 0.25 0.0080472 8.48644e-07 1.32333e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| it fail ||| 0.2 0.0080472 8.48644e-07 1.48927e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| it focuses too much ||| 0.5 0.0080472 8.48644e-07 2.86322e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| it focuses too ||| 1 0.0080472 8.48644e-07 2.85266e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it focuses ||| 0.0196078 0.0080472 8.48644e-07 2.096e-08 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| it for the ||| 0.0483871 0.0286209 2.54593e-06 1.25607e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| it for when I meet her in ||| 1 0.605812 8.48644e-07 7.3843e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| it for ||| 0.0194175 0.0286209 6.78915e-06 0.000204599 2.718 ||| 0-1 ||| 412 1.17835e+06 +en ||| it from this ||| 0.25 0.0308834 8.48644e-07 4.37223e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| it from ||| 0.0244755 0.0308834 5.94051e-06 6.76669e-05 2.718 ||| 0-1 ||| 286 1.17835e+06 +en ||| it fully into line with ||| 0.333333 0.525896 8.48644e-07 8.40412e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| it fully into line ||| 0.333333 0.525896 8.48644e-07 1.31427e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| it fully into ||| 0.2 0.525896 8.48644e-07 4.46424e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| it further in ||| 0.5 0.605812 8.48644e-07 3.96883e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it gave as part ||| 0.333333 0.066968 8.48644e-07 3.18439e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| it gave as ||| 0.333333 0.066968 8.48644e-07 2.67102e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| it gave at ||| 1 0.321886 8.48644e-07 5.93989e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it gives me ||| 0.00729927 0.0080472 8.48644e-07 1.31514e-10 2.718 ||| 0-0 ||| 137 1.17835e+06 +en ||| it gives ||| 0.00308642 0.0080472 1.69729e-06 2.18426e-07 2.718 ||| 0-0 ||| 648 1.17835e+06 +en ||| it goes on ||| 0.0416667 0.22993 8.48644e-07 2.04546e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| it going on in ||| 1 0.417871 8.48644e-07 5.83646e-07 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| it had , in ||| 0.5 0.605812 8.48644e-07 9.82937e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it had adopted to ||| 1 0.0247351 8.48644e-07 1.02348e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it had been in ||| 0.142857 0.605812 8.48644e-07 2.75228e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| it had been put in ||| 1 0.605812 8.48644e-07 3.03466e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it had created over ||| 1 0.157937 8.48644e-07 7.53868e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it had had with regard to ||| 1 0.0247351 8.48644e-07 2.19251e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it had in ||| 0.0666667 0.605812 8.48644e-07 8.24233e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| it had launched in ||| 1 0.605812 8.48644e-07 2.72821e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it had taken over ||| 0.5 0.157937 8.48644e-07 6.51946e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it had ||| 0.00123305 0.0080472 8.48644e-07 2.7681e-06 2.718 ||| 0-0 ||| 811 1.17835e+06 +en ||| it hard to ||| 0.0238095 0.0247351 8.48644e-07 5.25348e-08 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| it has , in ||| 0.222222 0.605812 1.69729e-06 5.04101e-06 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| it has , on ||| 0.5 0.22993 8.48644e-07 9.06594e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it has , over ||| 1 0.157937 8.48644e-07 4.37444e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it has , to put it ||| 1 0.0080472 8.48644e-07 2.94969e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it has , to put ||| 1 0.0080472 8.48644e-07 1.65869e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it has , to ||| 0.25 0.0080472 8.48644e-07 1.50435e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| it has , ||| 0.00961538 0.0080472 8.48644e-07 1.69297e-06 2.718 ||| 0-0 ||| 104 1.17835e+06 +en ||| it has a ||| 0.00217865 0.0080472 8.48644e-07 6.29262e-07 2.718 ||| 0-0 ||| 459 1.17835e+06 +en ||| it has also been poorly prepared in ||| 1 0.605812 8.48644e-07 2.65671e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| it has been at ||| 0.166667 0.321886 8.48644e-07 1.22273e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| it has been created in ||| 0.5 0.605812 8.48644e-07 1.48773e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| it has been for ||| 0.08 0.0286209 1.69729e-06 3.51676e-09 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| it has been in ||| 0.0923077 0.605812 5.09187e-06 1.41151e-07 2.718 ||| 0-3 ||| 65 1.17835e+06 +en ||| it has been making under ||| 1 0.205566 8.48644e-07 6.64925e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it has been presented ||| 0.05 0.0080472 8.48644e-07 3.73546e-12 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| it has been put in ||| 0.5 0.605812 8.48644e-07 1.55633e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| it has been taking in this ||| 1 0.605812 8.48644e-07 3.87615e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it has been taking in ||| 1 0.605812 8.48644e-07 5.99893e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it has been ||| 0.000261575 0.0080472 8.48644e-07 4.74043e-08 2.718 ||| 0-0 ||| 3823 1.17835e+06 +en ||| it has by ||| 0.25 0.0468744 8.48644e-07 7.78732e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| it has done in ||| 0.0612245 0.605812 2.54593e-06 1.92756e-08 2.718 ||| 0-3 ||| 49 1.17835e+06 +en ||| it has done on ||| 0.0714286 0.22993 8.48644e-07 3.46659e-09 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| it has done so in ||| 0.125 0.605812 8.48644e-07 4.37498e-11 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| it has for ||| 0.0666667 0.0286209 8.48644e-07 1.05317e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| it has gone on ||| 0.2 0.22993 8.48644e-07 4.75896e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| it has grown in ||| 1 0.605812 8.48644e-07 7.01698e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it has had in ||| 0.125 0.605812 8.48644e-07 4.24274e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| it has implications for ||| 0.125 0.0286209 8.48644e-07 2.20114e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| it has in ||| 0.173913 0.605812 1.01837e-05 4.2271e-05 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| it has nothing to do with ||| 0.0144928 0.0535436 8.48644e-07 6.06279e-14 2.718 ||| 0-5 ||| 69 1.17835e+06 +en ||| it has on ||| 0.113636 0.22993 4.24322e-06 7.60217e-06 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| it has our support in those efforts ||| 1 0.605812 8.48644e-07 1.75535e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it has our support in those ||| 1 0.605812 8.48644e-07 1.44354e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it has our support in ||| 1 0.605812 8.48644e-07 1.99357e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it has proved difficult in ||| 1 0.605812 8.48644e-07 2.17352e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it has received in ||| 0.25 0.605812 8.48644e-07 3.78748e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| it has taken in ||| 0.0714286 0.605812 8.48644e-07 3.853e-08 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| it has to be said , in ||| 0.25 0.605812 8.48644e-07 3.33889e-12 2.718 ||| 0-6 ||| 4 1.17835e+06 +en ||| it has to be said that in ||| 0.2 0.605812 8.48644e-07 4.7097e-13 2.718 ||| 0-6 ||| 5 1.17835e+06 +en ||| it has to in ||| 0.2 0.605812 8.48644e-07 3.75612e-06 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| it has to ||| 0.000755858 0.0247351 8.48644e-07 2.57301e-06 2.718 ||| 0-2 ||| 1323 1.17835e+06 +en ||| it has with ||| 0.111111 0.0535436 8.48644e-07 1.06724e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| it has ||| 0.0010579 0.0080472 1.27297e-05 1.41963e-05 2.718 ||| 0-0 ||| 14179 1.17835e+06 +en ||| it have as ||| 0.142857 0.066968 8.48644e-07 3.82573e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| it here in ||| 0.214286 0.605812 2.54593e-06 1.66522e-05 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| it home ||| 0.1 0.0080472 8.48644e-07 2.79927e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| it if , at the same ||| 1 0.321886 8.48644e-07 3.50195e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it if , at the ||| 1 0.321886 8.48644e-07 4.35187e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it if , at ||| 0.5 0.321886 8.48644e-07 7.08868e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it implemented in ||| 1 0.605812 8.48644e-07 7.21009e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it important , on ||| 1 0.22993 8.48644e-07 6.75609e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it impossible ||| 0.00763359 0.0080472 8.48644e-07 1.47823e-07 2.718 ||| 0-0 ||| 131 1.17835e+06 +en ||| it in a ||| 0.039604 0.605812 3.39458e-06 0.000364001 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| it in at ||| 1 0.463849 8.48644e-07 0.000328494 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| it in blunt , ||| 1 0.605812 8.48644e-07 1.37104e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| it in blunt ||| 1 0.605812 8.48644e-07 1.14967e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| it in concrete ||| 0.5 0.605812 8.48644e-07 2.57034e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| it in joining ||| 1 0.605812 8.48644e-07 1.14967e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| it in simple terms ||| 0.25 0.605812 8.48644e-07 3.8938e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| it in simple ||| 0.25 0.605812 8.48644e-07 3.54756e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| it in the ||| 0.0317848 0.605812 1.10324e-05 0.000504146 2.718 ||| 0-1 ||| 409 1.17835e+06 +en ||| it in their ||| 0.0714286 0.605812 8.48644e-07 9.51847e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| it in two ||| 0.142857 0.605812 8.48644e-07 1.9413e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| it in ||| 0.363405 0.605812 0.000485425 0.00821195 2.718 ||| 0-1 ||| 1574 1.17835e+06 +en ||| it insists on the rights ||| 1 0.22993 8.48644e-07 1.26998e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it insists on the ||| 0.0769231 0.22993 8.48644e-07 6.34672e-11 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| it insists on ||| 0.03125 0.22993 8.48644e-07 1.03381e-09 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| it intends to have over ||| 1 0.157937 8.48644e-07 1.44646e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it intends to ||| 0.00568182 0.0247351 1.69729e-06 9.54724e-09 2.718 ||| 0-2 ||| 352 1.17835e+06 +en ||| it into a ||| 0.0166667 0.525896 8.48644e-07 1.74498e-05 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| it into line with ||| 0.0588235 0.525896 8.48644e-07 7.41104e-10 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| it into line ||| 0.0666667 0.525896 8.48644e-07 1.15897e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| it into our ||| 0.166667 0.525896 8.48644e-07 5.43031e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| it into ||| 0.28629 0.525896 6.02537e-05 0.000393672 2.718 ||| 0-1 ||| 248 1.17835e+06 +en ||| it is , as a ||| 0.5 0.066968 8.48644e-07 5.29952e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it is , as ||| 0.0322581 0.066968 8.48644e-07 1.19558e-06 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| it is , for example , with ||| 1 0.0286209 8.48644e-07 1.69753e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it is , for example , ||| 0.0555556 0.0286209 8.48644e-07 2.65468e-11 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| it is , for example ||| 0.0714286 0.0286209 8.48644e-07 2.22606e-10 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| it is , for ||| 0.0909091 0.0286209 1.69729e-06 7.64705e-07 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| it is , in the ||| 0.2 0.605812 1.69729e-06 1.88428e-06 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| it is , in ||| 0.164474 0.605812 2.12161e-05 3.06928e-05 2.718 ||| 0-3 ||| 152 1.17835e+06 +en ||| it is , on ||| 0.25 0.22993 1.69729e-06 5.5199e-06 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| it is , to ||| 0.0588235 0.0247351 8.48644e-07 1.86825e-06 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| it is , ||| 0.00167973 0.0080472 2.54593e-06 1.03079e-05 2.718 ||| 0-0 ||| 1786 1.17835e+06 +en ||| it is Members from ||| 1 0.0308834 8.48644e-07 3.12811e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it is a case of ||| 0.0178571 0.0080472 8.48644e-07 2.22846e-10 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| it is a case ||| 0.0144928 0.0080472 8.48644e-07 4.09914e-09 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| it is a matter ||| 0.00151286 0.0080472 8.48644e-07 3.975e-09 2.718 ||| 0-0 ||| 661 1.17835e+06 +en ||| it is a ||| 0.000744048 0.0080472 7.6378e-06 3.83133e-06 2.718 ||| 0-0 ||| 12096 1.17835e+06 +en ||| it is about ||| 0.00537057 0.0401564 4.24322e-06 1.59741e-06 2.718 ||| 0-2 ||| 931 1.17835e+06 +en ||| it is actually quite ||| 0.166667 0.0080472 8.48644e-07 1.3919e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| it is actually ||| 0.00347222 0.0080472 8.48644e-07 3.56806e-08 2.718 ||| 0-0 ||| 288 1.17835e+06 +en ||| it is advisable , in ||| 1 0.605812 8.48644e-07 9.82168e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it is against this ||| 0.0222222 0.153982 8.48644e-07 2.08832e-08 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| it is against ||| 0.147541 0.153982 1.52756e-05 3.23199e-06 2.718 ||| 0-2 ||| 122 1.17835e+06 +en ||| it is all about in ||| 1 0.605812 8.48644e-07 1.72005e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it is along ||| 0.4 0.155535 3.39458e-06 4.43368e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| it is also a ||| 0.00121951 0.0080472 8.48644e-07 1.93428e-08 2.718 ||| 0-0 ||| 820 1.17835e+06 +en ||| it is also ensure that ||| 0.5 0.0017499 8.48644e-07 1.31874e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| it is also from ||| 0.2 0.0308834 8.48644e-07 1.07068e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| it is also in ||| 0.025641 0.605812 1.69729e-06 1.29937e-06 2.718 ||| 0-3 ||| 78 1.17835e+06 +en ||| it is also keen to ||| 1 0.0247351 8.48644e-07 2.08011e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it is also ||| 0.000570369 0.0080472 3.39458e-06 4.36379e-07 2.718 ||| 0-0 ||| 7013 1.17835e+06 +en ||| it is always shared by ||| 1 0.0468744 8.48644e-07 2.2019e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it is among ||| 0.166667 0.0422459 8.48644e-07 1.77514e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| it is an open process in which ||| 1 0.605812 8.48644e-07 6.69648e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it is an open process in ||| 1 0.605812 8.48644e-07 7.88322e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it is appropriate for ||| 0.0243902 0.0286209 8.48644e-07 8.63104e-10 2.718 ||| 0-3 ||| 41 1.17835e+06 +en ||| it is at a point ||| 1 0.321886 8.48644e-07 8.64512e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it is at a ||| 0.0666667 0.321886 8.48644e-07 9.8824e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| it is at ||| 0.092827 0.321886 1.86702e-05 2.22949e-05 2.718 ||| 0-2 ||| 237 1.17835e+06 +en ||| it is based on mere ||| 0.333333 0.22993 8.48644e-07 2.30207e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| it is based on ||| 0.00320513 0.22993 8.48644e-07 1.08588e-08 2.718 ||| 0-3 ||| 312 1.17835e+06 +en ||| it is based ||| 0.00297619 0.0025292 8.48644e-07 1.40451e-08 2.718 ||| 0-2 ||| 336 1.17835e+06 +en ||| it is because of ||| 0.0103093 0.0069675 8.48644e-07 8.01854e-10 2.718 ||| 0-2 0-3 ||| 97 1.17835e+06 +en ||| it is because ||| 0.00148148 0.0022788 8.48644e-07 5.87999e-08 2.718 ||| 0-2 ||| 675 1.17835e+06 +en ||| it is being held in ||| 0.25 0.605812 8.48644e-07 1.86842e-10 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| it is best to proceed slowly but ||| 1 0.0247351 8.48644e-07 2.75208e-22 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it is best to proceed slowly ||| 1 0.0247351 8.48644e-07 4.02704e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it is best to proceed ||| 0.5 0.0247351 8.48644e-07 6.94318e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it is best to ||| 0.0434783 0.0247351 8.48644e-07 2.16974e-09 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| it is by ||| 0.0320513 0.0468744 4.24322e-06 4.74139e-06 2.718 ||| 0-2 ||| 156 1.17835e+06 +en ||| it is certainly true that ||| 0.0135135 0.0080472 8.48644e-07 5.88585e-14 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| it is certainly true ||| 0.0113636 0.0080472 8.48644e-07 3.49898e-12 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| it is certainly ||| 0.00203666 0.0080472 8.48644e-07 2.16521e-08 2.718 ||| 0-0 ||| 491 1.17835e+06 +en ||| it is clear that ||| 0.000396668 0.0080472 8.48644e-07 4.84032e-10 2.718 ||| 0-0 ||| 2521 1.17835e+06 +en ||| it is clear to ||| 0.012987 0.0247351 8.48644e-07 5.21522e-09 2.718 ||| 0-3 ||| 77 1.17835e+06 +en ||| it is clear ||| 0.00032457 0.0080472 8.48644e-07 2.87744e-08 2.718 ||| 0-0 ||| 3081 1.17835e+06 +en ||| it is compared ||| 0.25 0.0080472 8.48644e-07 3.23269e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| it is crucial , in ||| 0.166667 0.605812 8.48644e-07 1.16939e-09 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| it is cruel and ||| 0.5 0.0080472 8.48644e-07 3.89766e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| it is cruel ||| 0.333333 0.0080472 8.48644e-07 3.11168e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| it is currently ||| 0.015748 0.104436 1.69729e-06 6.55326e-07 2.718 ||| 0-2 ||| 127 1.17835e+06 +en ||| it is definitely ||| 0.0169492 0.0234185 8.48644e-07 2.92049e-08 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| it is doing at ||| 0.25 0.321886 8.48644e-07 8.18446e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| it is doing the ||| 0.2 0.0080472 8.48644e-07 1.94799e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| it is doing ||| 0.0145985 0.0080472 1.69729e-06 3.17305e-08 2.718 ||| 0-0 ||| 137 1.17835e+06 +en ||| it is done in ||| 0.166667 0.605812 1.69729e-06 1.17361e-07 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| it is during ||| 0.333333 0.226251 8.48644e-07 1.61145e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| it is essential to ||| 0.00114416 0.0247351 8.48644e-07 1.40994e-09 2.718 ||| 0-3 ||| 874 1.17835e+06 +en ||| it is exactly in ||| 0.333333 0.605812 8.48644e-07 2.58401e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| it is exactly on ||| 1 0.22993 8.48644e-07 4.64718e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it is faced with ||| 0.142857 0.0080472 8.48644e-07 3.49867e-11 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| it is faced ||| 0.2 0.0080472 8.48644e-07 5.47137e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| it is fair to ||| 0.00877193 0.0247351 8.48644e-07 8.115e-10 2.718 ||| 0-3 ||| 114 1.17835e+06 +en ||| it is for ||| 0.00388802 0.0286209 4.24322e-06 6.41237e-06 2.718 ||| 0-2 ||| 1286 1.17835e+06 +en ||| it is from ||| 0.0217391 0.0308834 8.48644e-07 2.12075e-06 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| it is going on in ||| 0.5 0.278919 8.48644e-07 2.75728e-10 2.718 ||| 0-2 0-3 0-4 ||| 2 1.17835e+06 +en ||| it is gratifying that ||| 0.0204082 0.0017499 8.48644e-07 1.28158e-12 2.718 ||| 0-3 ||| 49 1.17835e+06 +en ||| it is held in ||| 1 0.605812 8.48644e-07 6.56554e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it is here in ||| 0.0833333 0.605812 8.48644e-07 5.21898e-07 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| it is here ||| 0.00833333 0.0855319 8.48644e-07 1.67209e-06 2.718 ||| 0-2 ||| 120 1.17835e+06 +en ||| it is in fact necessary , ||| 1 0.605812 8.48644e-07 2.31334e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it is in fact necessary ||| 0.333333 0.605812 8.48644e-07 1.93983e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| it is in fact ||| 0.0114943 0.605812 1.69729e-06 7.53918e-07 2.718 ||| 0-2 ||| 174 1.17835e+06 +en ||| it is in nobody 's ||| 0.5 0.605812 8.48644e-07 4.21519e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it is in nobody ||| 0.333333 0.605812 8.48644e-07 2.21339e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| it is in restraint ||| 0.5 0.605812 8.48644e-07 7.46377e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it is in specifically ||| 1 0.605812 8.48644e-07 1.44385e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it is in the common ||| 1 0.605812 8.48644e-07 3.64991e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it is in the ||| 0.0520362 0.605812 1.95188e-05 1.58005e-05 2.718 ||| 0-2 ||| 442 1.17835e+06 +en ||| it is in ||| 0.14131 0.605812 0.000221496 0.000257371 2.718 ||| 0-2 ||| 1847 1.17835e+06 +en ||| it is indeed in that ||| 1 0.605812 8.48644e-07 3.28125e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it is indeed in ||| 0.5 0.605812 8.48644e-07 1.95062e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it is investing in ||| 0.5 0.605812 8.48644e-07 8.23589e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it is involved in ||| 0.111111 0.605812 8.48644e-07 8.8999e-08 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| it is is ||| 0.333333 0.0080472 8.48644e-07 2.70899e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| it is my great pleasure ||| 0.0263158 0.0080472 8.48644e-07 4.95895e-16 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| it is my great ||| 0.0322581 0.0080472 8.48644e-07 2.18456e-11 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| it is my ||| 0.0012285 0.0080472 8.48644e-07 5.55867e-08 2.718 ||| 0-0 ||| 814 1.17835e+06 +en ||| it is natural that we should at ||| 1 0.321886 8.48644e-07 5.22563e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| it is necessary in ||| 0.166667 0.605812 8.48644e-07 6.62217e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| it is necessary to ||| 0.00077101 0.0080472 8.48644e-07 1.9762e-09 2.718 ||| 0-0 ||| 1297 1.17835e+06 +en ||| it is necessary ||| 0.000428082 0.0080472 8.48644e-07 2.22399e-08 2.718 ||| 0-0 ||| 2336 1.17835e+06 +en ||| it is not at ||| 0.0238095 0.321886 8.48644e-07 7.61171e-08 2.718 ||| 0-3 ||| 42 1.17835e+06 +en ||| it is not by ||| 0.03125 0.0468744 8.48644e-07 1.61876e-08 2.718 ||| 0-3 ||| 32 1.17835e+06 +en ||| it is not ||| 7.90952e-05 0.0080472 8.48644e-07 2.951e-07 2.718 ||| 0-0 ||| 12643 1.17835e+06 +en ||| it is now in ||| 0.0714286 0.605812 8.48644e-07 5.30159e-07 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| it is now ||| 0.000585823 0.0123946 8.48644e-07 3.29948e-07 2.718 ||| 0-2 ||| 1707 1.17835e+06 +en ||| it is of importance to a ||| 1 0.0247351 8.48644e-07 4.90384e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it is of importance to ||| 0.5 0.0247351 8.48644e-07 1.10632e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| it is of ||| 0.00531209 0.0116562 3.39458e-06 7.60051e-06 2.718 ||| 0-2 ||| 753 1.17835e+06 +en ||| it is on that basis ||| 0.0555556 0.22993 8.48644e-07 4.62342e-10 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| it is on that ||| 0.0344828 0.22993 8.48644e-07 7.78615e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| it is on ||| 0.0869565 0.22993 2.54593e-05 4.62866e-05 2.718 ||| 0-2 ||| 345 1.17835e+06 +en ||| it is one ||| 0.00143266 0.0025338 8.48644e-07 9.06243e-08 2.718 ||| 0-2 ||| 698 1.17835e+06 +en ||| it is only in ||| 0.0208333 0.605812 8.48644e-07 2.8648e-07 2.718 ||| 0-3 ||| 48 1.17835e+06 +en ||| it is only ||| 0.000735294 0.0080472 8.48644e-07 9.62115e-08 2.718 ||| 0-0 ||| 1360 1.17835e+06 +en ||| it is our contention that at ||| 0.5 0.321886 8.48644e-07 1.50024e-15 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| it is out in ||| 0.5 0.605812 8.48644e-07 9.85835e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it is part of ||| 0.0142857 0.0116562 1.69729e-06 9.06133e-09 2.718 ||| 0-3 ||| 140 1.17835e+06 +en ||| it is perfectly legitimate , in a ||| 1 0.605812 8.48644e-07 5.80544e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it is perfectly legitimate , in ||| 1 0.605812 8.48644e-07 1.30972e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it is perverted to ||| 0.5 0.0247351 8.48644e-07 6.26641e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it is precisely at ||| 0.0384615 0.321886 8.48644e-07 2.19828e-09 2.718 ||| 0-3 ||| 26 1.17835e+06 +en ||| it is precisely here ||| 0.0625 0.0855319 8.48644e-07 1.64868e-10 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| it is precisely in ||| 0.0108696 0.605812 8.48644e-07 2.53768e-08 2.718 ||| 0-3 ||| 92 1.17835e+06 +en ||| it is precisely with a view to ||| 1 0.0247351 8.48644e-07 3.95486e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| it is pursuing ||| 0.0526316 0.0080472 8.48644e-07 2.11767e-09 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| it is put to ||| 0.0666667 0.0247351 8.48644e-07 1.72734e-08 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| it is responsible ||| 0.0175439 0.0080472 8.48644e-07 1.27838e-08 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| it is right , in ||| 0.5 0.605812 8.48644e-07 1.97938e-08 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| it is right ||| 0.00218579 0.0071334 1.69729e-06 9.97648e-08 2.718 ||| 0-2 ||| 915 1.17835e+06 +en ||| it is scarcely to ||| 1 0.0247351 8.48644e-07 5.01313e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it is significant not only as regards ||| 1 0.0080472 8.48644e-07 2.70297e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it is significant not only as ||| 1 0.0080472 8.48644e-07 1.93069e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it is significant not only ||| 1 0.0080472 8.48644e-07 1.89202e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it is significant not ||| 1 0.0080472 8.48644e-07 1.69978e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it is significant ||| 0.00925926 0.0080472 8.48644e-07 4.97869e-09 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| it is sufficient ||| 0.0192308 0.0080472 8.48644e-07 4.20077e-09 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| it is taken away ||| 1 0.0080472 8.48644e-07 2.50618e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it is taken ||| 0.030303 0.0080472 8.48644e-07 7.87861e-08 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| it is taking place at ||| 0.333333 0.321886 8.48644e-07 1.42604e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| it is that , in ||| 0.333333 0.605812 8.48644e-07 5.16301e-07 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| it is that in ||| 0.142857 0.605812 8.48644e-07 4.3294e-06 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| it is that of ||| 0.0555556 0.0116562 8.48644e-07 1.27853e-07 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| it is that ||| 0.00148368 0.0017499 8.48644e-07 5.82537e-07 2.718 ||| 0-2 ||| 674 1.17835e+06 +en ||| it is the case in ||| 0.375 0.605812 2.54593e-06 1.69049e-08 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| it is the case that in ||| 0.166667 0.605812 8.48644e-07 2.84368e-10 2.718 ||| 0-5 ||| 6 1.17835e+06 +en ||| it is the ||| 0.00156924 0.0011669 6.78915e-06 1.59663e-06 2.718 ||| 0-2 ||| 5098 1.17835e+06 +en ||| it is then ||| 0.03125 0.013351 1.69729e-06 1.86989e-07 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| it is therefore important to emphasise that ||| 0.25 0.207288 8.48644e-07 2.38955e-16 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| it is therefore important to emphasise ||| 0.166667 0.207288 8.48644e-07 1.42052e-14 2.718 ||| 0-5 ||| 6 1.17835e+06 +en ||| it is this , then , on ||| 1 0.22993 8.48644e-07 6.84963e-12 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| it is time to give up the ||| 1 0.0080472 8.48644e-07 1.59987e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it is time to give up ||| 0.2 0.0080472 8.48644e-07 2.606e-14 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| it is time to give ||| 0.111111 0.0080472 8.48644e-07 7.64111e-12 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| it is time to ||| 0.00165563 0.0080472 8.48644e-07 1.26091e-08 2.718 ||| 0-0 ||| 604 1.17835e+06 +en ||| it is time ||| 0.000531632 0.0080472 8.48644e-07 1.41901e-07 2.718 ||| 0-0 ||| 1881 1.17835e+06 +en ||| it is to say the ||| 0.333333 0.0011669 8.48644e-07 1.35603e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| it is to ||| 0.00630694 0.0247351 7.6378e-06 1.5666e-05 2.718 ||| 0-2 ||| 1427 1.17835e+06 +en ||| it is too ||| 0.00179211 0.0080472 8.48644e-07 1.17639e-07 2.718 ||| 0-0 ||| 558 1.17835e+06 +en ||| it is true that I , at ||| 1 0.321886 8.48644e-07 5.11239e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| it is under ||| 0.0447761 0.205566 2.54593e-06 3.15156e-06 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| it is very ||| 0.000291375 0.0080472 8.48644e-07 3.00753e-07 2.718 ||| 0-0 ||| 3432 1.17835e+06 +en ||| it is waging on its people in ||| 1 0.605812 8.48644e-07 8.63806e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| it is well documented ||| 0.5 0.0080472 8.48644e-07 3.01515e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| it is well ||| 0.00578035 0.0080472 8.48644e-07 1.37052e-07 2.718 ||| 0-0 ||| 173 1.17835e+06 +en ||| it is when ||| 0.037037 0.142731 8.48644e-07 3.31804e-06 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| it is with reference to them ||| 1 0.0535436 8.48644e-07 1.32115e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it is with reference to ||| 0.2 0.0535436 8.48644e-07 4.92525e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| it is with reference ||| 0.25 0.0535436 8.48644e-07 5.54282e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| it is with satisfaction that we in ||| 1 0.605812 8.48644e-07 3.73994e-15 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| it is with ||| 0.0365449 0.0535436 9.33509e-06 6.49803e-06 2.718 ||| 0-2 ||| 301 1.17835e+06 +en ||| it is within ||| 0.119403 0.369196 6.78915e-06 6.17912e-06 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| it is worth ||| 0.00126582 0.0080472 8.48644e-07 6.2493e-09 2.718 ||| 0-0 ||| 790 1.17835e+06 +en ||| it is written on ||| 0.0714286 0.22993 8.48644e-07 2.31433e-09 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| it is ||| 0.00230305 0.0080472 0.000286842 8.64356e-05 2.718 ||| 0-0 ||| 146762 1.17835e+06 +en ||| it knows that when dealing with ||| 1 0.0535436 8.48644e-07 3.76413e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it leads me to ||| 0.5 0.0247351 8.48644e-07 9.7512e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it led into ||| 0.5 0.525896 8.48644e-07 3.61391e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it lie in ||| 1 0.605812 8.48644e-07 3.10412e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it looked at ||| 0.25 0.321886 8.48644e-07 3.30073e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| it made ||| 0.00558659 0.0080472 8.48644e-07 5.77725e-06 2.718 ||| 0-0 ||| 179 1.17835e+06 +en ||| it make ||| 0.0384615 0.0080472 8.48644e-07 4.79268e-06 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| it makes ||| 0.00180343 0.0080472 1.69729e-06 4.68567e-07 2.718 ||| 0-0 ||| 1109 1.17835e+06 +en ||| it manages to ||| 0.0833333 0.0247351 8.48644e-07 1.79948e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| it may have ||| 0.0105263 0.0080472 8.48644e-07 2.47116e-08 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| it may to ||| 1 0.0247351 8.48644e-07 3.74492e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it may ||| 0.000487567 0.0080472 8.48644e-07 2.06622e-06 2.718 ||| 0-0 ||| 2051 1.17835e+06 +en ||| it means that ||| 0.00233645 0.00489855 8.48644e-07 1.82668e-09 2.718 ||| 0-0 0-2 ||| 428 1.17835e+06 +en ||| it might turn out to ||| 0.5 0.0247351 8.48644e-07 1.64837e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| it might ||| 0.0013089 0.0080472 8.48644e-07 1.05903e-06 2.718 ||| 0-0 ||| 764 1.17835e+06 +en ||| it must be reflected in ||| 0.75 0.605812 2.54593e-06 4.64646e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| it must under ||| 1 0.205566 8.48644e-07 1.55421e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it not possible for a ||| 0.5 0.0286209 8.48644e-07 2.48351e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it not possible for ||| 0.125 0.0286209 8.48644e-07 5.60285e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| it occurs in ||| 0.25 0.605812 8.48644e-07 1.03471e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| it off ||| 0.030303 0.017145 8.48644e-07 4.61672e-07 2.718 ||| 0-0 0-1 ||| 33 1.17835e+06 +en ||| it offers ||| 0.00299401 0.0080472 8.48644e-07 9.01833e-08 2.718 ||| 0-0 ||| 334 1.17835e+06 +en ||| it on a ||| 0.0526316 0.22993 8.48644e-07 6.54633e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| it on record ||| 0.142857 0.22993 8.48644e-07 8.24091e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| it on the ||| 0.01 0.22993 8.48644e-07 9.06675e-05 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| it on them in terms of ||| 1 0.605812 8.48644e-07 8.7946e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it on them in terms ||| 1 0.605812 8.48644e-07 1.61773e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it on them in ||| 1 0.605812 8.48644e-07 1.47387e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it on this basis ||| 1 0.22993 8.48644e-07 5.66641e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| it on this ||| 0.0833333 0.22993 8.48644e-07 9.54262e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| it on to ||| 0.111111 0.22993 1.69729e-06 0.000131232 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| it on trust ||| 0.25 0.22993 8.48644e-07 2.82081e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| it on ||| 0.183183 0.22993 5.17673e-05 0.00147687 2.718 ||| 0-1 ||| 333 1.17835e+06 +en ||| it once in ||| 1 0.605812 8.48644e-07 3.36033e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it only ||| 0.00296736 0.0080472 8.48644e-07 3.06982e-06 2.718 ||| 0-0 ||| 337 1.17835e+06 +en ||| it operates in the ||| 1 0.605812 8.48644e-07 5.99934e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it operates in ||| 0.111111 0.605812 8.48644e-07 9.77222e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| it or not ||| 0.0192308 0.0008293 8.48644e-07 3.69424e-09 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| it or ||| 0.00675676 0.0080472 8.48644e-07 3.15311e-06 2.718 ||| 0-0 ||| 148 1.17835e+06 +en ||| it out at ||| 0.5 0.321886 8.48644e-07 2.72481e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it out in ||| 0.142857 0.605812 8.48644e-07 3.1455e-05 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| it out ||| 0.030303 0.0100535 3.39458e-06 1.51822e-06 2.718 ||| 0-0 0-1 ||| 132 1.17835e+06 +en ||| it over ||| 0.0851064 0.157937 3.39458e-06 7.12608e-05 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| it persists in ||| 0.2 0.605812 8.48644e-07 2.38146e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| it played in ||| 0.125 0.605812 8.48644e-07 4.04849e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| it possible for ||| 0.00409836 0.0286209 8.48644e-07 1.64109e-07 2.718 ||| 0-2 ||| 244 1.17835e+06 +en ||| it possible to make ||| 0.166667 0.0247351 8.48644e-07 6.96743e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| it possible to ||| 0.0115607 0.0080472 3.39458e-06 1.96564e-07 2.718 ||| 0-0 ||| 346 1.17835e+06 +en ||| it possible ||| 0.00405405 0.0080472 2.54593e-06 2.21211e-06 2.718 ||| 0-0 ||| 740 1.17835e+06 +en ||| it primarily in ||| 1 0.605812 8.48644e-07 1.47815e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it progressive for ||| 1 0.0286209 8.48644e-07 1.3299e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it put it , at ||| 1 0.321886 8.48644e-07 1.66339e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it ready for ||| 0.5 0.0286209 8.48644e-07 9.06375e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it refers ||| 0.00529101 0.0080472 8.48644e-07 5.35033e-08 2.718 ||| 0-0 ||| 189 1.17835e+06 +en ||| it regards as ||| 0.0666667 0.066968 8.48644e-07 4.47835e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| it remains a ||| 0.0169492 0.0080472 8.48644e-07 1.09044e-08 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| it remains in ||| 0.0833333 0.605812 8.48644e-07 7.32506e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| it remains ||| 0.0022779 0.0080472 8.48644e-07 2.46005e-07 2.718 ||| 0-0 ||| 439 1.17835e+06 +en ||| it resolutely sets ||| 1 0.0080472 8.48644e-07 3.45951e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it resolutely ||| 0.125 0.0080472 8.48644e-07 8.82528e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| it says at ||| 1 0.321886 8.48644e-07 4.91552e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it says in ||| 0.0350877 0.605812 1.69729e-06 5.67445e-07 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| it says on ||| 0.0909091 0.22993 8.48644e-07 1.02051e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| it seem as ||| 1 0.066968 8.48644e-07 2.92373e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it seemed generally that ||| 0.5 0.0080472 8.48644e-07 2.20874e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| it seemed generally ||| 0.5 0.0080472 8.48644e-07 1.31304e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| it seemed ||| 0.00869565 0.0080472 8.48644e-07 3.17159e-08 2.718 ||| 0-0 ||| 115 1.17835e+06 +en ||| it seems , in ||| 0.5 0.605812 8.48644e-07 1.17713e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it seems to me , in ||| 0.25 0.605812 8.48644e-07 6.29785e-12 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| it seems to ||| 0.0244461 0.0247351 2.71566e-05 6.00826e-08 2.718 ||| 0-2 ||| 1309 1.17835e+06 +en ||| it seems ||| 0.000465766 0.0080472 8.48644e-07 3.315e-07 2.718 ||| 0-0 ||| 2147 1.17835e+06 +en ||| it should , in ||| 0.3 0.605812 2.54593e-06 4.33934e-06 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| it should , ||| 0.0105263 0.0080472 8.48644e-07 1.45732e-06 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| it should be calculated in ||| 1 0.605812 8.48644e-07 7.58356e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it should be in ||| 0.0416667 0.605812 8.48644e-07 6.5944e-07 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| it should be made clear in ||| 1 0.605812 8.48644e-07 4.59867e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it should be made to work in ||| 1 0.605812 8.48644e-07 7.76997e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| it should be placed on ||| 1 0.22993 8.48644e-07 1.48482e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it should be ||| 0.000947867 0.0080472 2.54593e-06 2.21466e-07 2.718 ||| 0-0 ||| 3165 1.17835e+06 +en ||| it should come under ||| 0.5 0.205566 8.48644e-07 3.78421e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it should have been learnt in ||| 1 0.605812 8.48644e-07 1.46769e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it should in ||| 0.15 0.605812 2.54593e-06 3.63871e-05 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| it should not in ||| 1 0.605812 8.48644e-07 1.24229e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it should ||| 0.00136356 0.0080472 6.78915e-06 1.22203e-05 2.718 ||| 0-0 ||| 5867 1.17835e+06 +en ||| it slightly in ||| 1 0.605812 8.48644e-07 1.53563e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it so happens that , in ||| 0.5 0.605812 8.48644e-07 2.23219e-12 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| it so happens that in ||| 0.5 0.605812 8.48644e-07 1.87179e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| it so in ||| 0.25 0.605812 8.48644e-07 1.86387e-05 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| it sought to divide it into ||| 1 0.525896 8.48644e-07 1.169e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it sounds ||| 0.0140845 0.0080472 8.48644e-07 1.1859e-08 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| it spans ||| 1 0.0080472 8.48644e-07 1.10316e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it stands at ||| 0.04 0.321886 8.48644e-07 3.91961e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| it states on ||| 1 0.22993 8.48644e-07 1.1106e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it steaming ||| 0.5 0.0080472 8.48644e-07 1.93053e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| it strikes ||| 0.00961538 0.0080472 8.48644e-07 2.86822e-08 2.718 ||| 0-0 ||| 104 1.17835e+06 +en ||| it struck me in ||| 1 0.605812 8.48644e-07 1.26577e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it substantially ||| 1 0.0080472 8.48644e-07 2.67516e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it suitable for ||| 0.5 0.0286209 8.48644e-07 5.01268e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it take before they are ||| 1 0.0080472 8.48644e-07 5.4996e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it take before they ||| 1 0.0080472 8.48644e-07 3.62467e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| it take before ||| 0.25 0.0080472 8.48644e-07 1.1105e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| it take ||| 0.0526316 0.0080472 1.69729e-06 4.44022e-06 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| it takes , in the ||| 0.5 0.605812 8.48644e-07 7.76774e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it takes , in ||| 0.5 0.605812 8.48644e-07 1.26527e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it takes to obtain ||| 0.5 0.0117268 8.48644e-07 5.16631e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| it takes to ||| 0.0222222 0.0117268 8.48644e-07 8.5962e-08 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| it takes ||| 0.00132802 0.0117268 8.48644e-07 9.67406e-07 2.718 ||| 0-1 ||| 753 1.17835e+06 +en ||| it taking ||| 0.111111 0.0116902 8.48644e-07 4.7491e-07 2.718 ||| 0-0 0-1 ||| 9 1.17835e+06 +en ||| it that , at ||| 1 0.321886 8.48644e-07 1.42703e-06 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it that in ||| 0.25 0.605812 8.48644e-07 0.000138138 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| it that is actually ||| 0.5 0.125341 8.48644e-07 1.25931e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it that when ||| 0.2 0.142731 8.48644e-07 1.78088e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| it that ||| 0.00374532 0.0080472 1.69729e-06 4.63923e-05 2.718 ||| 0-0 ||| 534 1.17835e+06 +en ||| it the case that we in ||| 1 0.605812 8.48644e-07 1.03003e-10 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it the ||| 0.0025974 0.0011669 8.48644e-07 5.09435e-05 2.718 ||| 0-1 ||| 385 1.17835e+06 +en ||| it then - ||| 1 0.013351 8.48644e-07 2.25053e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| it then ||| 0.00917431 0.013351 8.48644e-07 5.96626e-06 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| it there and then ||| 1 0.0010182 8.48644e-07 8.09985e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it there and ||| 0.25 0.0010182 8.48644e-07 5.02972e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| it threw out at ||| 0.5 0.321886 8.48644e-07 4.90465e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it through ||| 0.0229008 0.0366102 2.54593e-06 1.67233e-05 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| it to a ||| 0.0588235 0.0163912 1.69729e-06 3.43613e-06 2.718 ||| 0-0 0-1 ||| 34 1.17835e+06 +en ||| it to be in ||| 0.2 0.605812 8.48644e-07 1.32243e-05 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| it to intervene in ||| 0.2 0.605812 8.48644e-07 5.25383e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| it to the ||| 0.00363636 0.0247351 8.48644e-07 3.0687e-05 2.718 ||| 0-1 ||| 275 1.17835e+06 +en ||| it to ||| 0.0139358 0.0247351 2.80053e-05 0.000499856 2.718 ||| 0-1 ||| 2368 1.17835e+06 +en ||| it took in ||| 0.166667 0.605812 8.48644e-07 1.21126e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| it took ||| 0.00229358 0.0080472 8.48644e-07 4.0679e-07 2.718 ||| 0-0 ||| 436 1.17835e+06 +en ||| it turns into a ||| 0.111111 0.0080472 8.48644e-07 2.5353e-12 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| it turns into ||| 0.111111 0.0080472 8.48644e-07 5.7197e-11 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| it turns out that in ||| 0.333333 0.605812 8.48644e-07 1.06883e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| it turns ||| 0.0078125 0.0080472 8.48644e-07 5.57096e-08 2.718 ||| 0-0 ||| 128 1.17835e+06 +en ||| it under ||| 0.0357143 0.205566 1.69729e-06 0.000100557 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| it untreated into ||| 0.5 0.525896 8.48644e-07 8.66078e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it up as ||| 0.1 0.066968 8.48644e-07 1.09096e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| it up in ||| 0.230769 0.605812 2.54593e-06 2.80068e-05 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| it very clearly in ||| 1 0.605812 8.48644e-07 5.21466e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it wants to print ||| 0.333333 0.0247351 8.48644e-07 5.46542e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| it wants to ||| 0.00634921 0.0080472 1.69729e-06 1.21796e-08 2.718 ||| 0-0 ||| 315 1.17835e+06 +en ||| it wants ||| 0.00314465 0.0080472 8.48644e-07 1.37068e-07 2.718 ||| 0-0 ||| 318 1.17835e+06 +en ||| it was , after ||| 0.25 0.0144723 8.48644e-07 1.76338e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| it was , in ||| 0.272727 0.605812 2.54593e-06 3.06819e-06 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| it was actually in ||| 0.333333 0.605812 8.48644e-07 1.06205e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| it was against ||| 0.333333 0.153982 4.24322e-06 3.23084e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| it was also ||| 0.0028169 0.0080472 8.48644e-07 4.36224e-08 2.718 ||| 0-0 ||| 355 1.17835e+06 +en ||| it was as a ||| 0.2 0.066968 8.48644e-07 4.44229e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| it was as ||| 0.0555556 0.066968 8.48644e-07 1.00219e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| it was at ||| 0.131148 0.321886 6.78915e-06 2.2287e-06 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| it was back in ||| 0.25 0.605812 8.48644e-07 1.73047e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| it was called in ||| 0.333333 0.605812 8.48644e-07 4.47153e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| it was for ||| 0.0114943 0.0286209 8.48644e-07 6.4101e-07 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| it was here in ||| 0.25 0.605812 8.48644e-07 5.21713e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| it was important to us ||| 0.2 0.0247351 8.48644e-07 1.73144e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| it was important to ||| 0.0166667 0.0247351 8.48644e-07 6.00736e-10 2.718 ||| 0-3 ||| 60 1.17835e+06 +en ||| it was in ||| 0.2 0.605812 5.34646e-05 2.5728e-05 2.718 ||| 0-2 ||| 315 1.17835e+06 +en ||| it was mentioned , here and ||| 1 0.0855319 8.48644e-07 2.2097e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it was mentioned , here ||| 1 0.0855319 8.48644e-07 1.76411e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it was my view in ||| 1 0.605812 8.48644e-07 1.49457e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it was not easy in ||| 0.5 0.605812 8.48644e-07 3.32028e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| it was noted in ||| 0.5 0.605812 8.48644e-07 7.87278e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it was on that ||| 0.166667 0.22993 8.48644e-07 7.78339e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| it was on ||| 0.0952381 0.22993 5.09187e-06 4.62702e-06 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| it was once ||| 0.05 0.0080472 8.48644e-07 3.53569e-09 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| it was out ||| 0.0769231 0.0080472 8.48644e-07 3.30966e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| it was the ||| 0.00132275 0.00460705 8.48644e-07 2.47524e-08 2.718 ||| 0-0 0-2 ||| 756 1.17835e+06 +en ||| it was to ||| 0.0163934 0.0247351 1.69729e-06 1.56605e-06 2.718 ||| 0-2 ||| 122 1.17835e+06 +en ||| it was under ||| 0.0740741 0.205566 1.69729e-06 3.15045e-07 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| it was unfortunately wrong during ||| 0.25 0.226251 8.48644e-07 5.56402e-16 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| it was when ||| 0.0333333 0.142731 8.48644e-07 3.31687e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| it was within ||| 0.142857 0.369196 8.48644e-07 6.17693e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| it was ||| 0.00122806 0.0080472 1.4427e-05 8.6405e-06 2.718 ||| 0-0 ||| 13843 1.17835e+06 +en ||| it went up by ||| 1 0.0468744 8.48644e-07 3.28662e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it were , on ||| 0.285714 0.22993 1.69729e-06 3.15507e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| it were , within ||| 0.333333 0.369196 8.48644e-07 4.21192e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| it were on behalf of ||| 1 0.22993 8.48644e-07 4.58094e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it were on behalf ||| 1 0.22993 8.48644e-07 8.42642e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| it were on ||| 0.5 0.22993 8.48644e-07 2.64566e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| it were their ||| 0.2 0.0080472 8.48644e-07 5.72654e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| it were ||| 0.00221484 0.0080472 1.69729e-06 4.9405e-06 2.718 ||| 0-0 ||| 903 1.17835e+06 +en ||| it when it ||| 0.125 0.142731 8.48644e-07 1.88268e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| it when ||| 0.06 0.142731 5.09187e-06 0.000105869 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| it where it was , among ||| 1 0.247783 8.48644e-07 9.01633e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| it where it was , ||| 1 0.247783 8.48644e-07 1.00629e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| it where it was ||| 1 0.247783 8.48644e-07 8.43814e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| it where it ||| 1 0.247783 8.48644e-07 2.69331e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| it where ||| 0.0526316 0.247783 8.48644e-07 0.000151452 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| it will , at ||| 0.333333 0.321886 8.48644e-07 7.33911e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| it will , in ||| 0.314286 0.605812 9.33509e-06 8.47223e-06 2.718 ||| 0-3 ||| 35 1.17835e+06 +en ||| it will , ||| 0.00869565 0.0080472 8.48644e-07 2.84532e-06 2.718 ||| 0-0 ||| 115 1.17835e+06 +en ||| it will at ||| 0.190476 0.321886 3.39458e-06 6.15415e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| it will be at ||| 0.0526316 0.321886 8.48644e-07 1.11531e-07 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| it will be based in ||| 1 0.605812 8.48644e-07 3.02049e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it will be closed in ||| 1 0.605812 8.48644e-07 7.45467e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it will be for ||| 0.0222222 0.0286209 8.48644e-07 3.20781e-08 2.718 ||| 0-3 ||| 45 1.17835e+06 +en ||| it will be in ||| 0.0338983 0.605812 1.69729e-06 1.28751e-06 2.718 ||| 0-3 ||| 59 1.17835e+06 +en ||| it will be our ||| 0.0555556 0.0080472 8.48644e-07 5.96448e-10 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| it will be possible at ||| 0.5 0.321886 8.48644e-07 8.9459e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| it will be possible in ||| 0.285714 0.605812 1.69729e-06 1.03271e-09 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| it will be taken on ||| 0.5 0.22993 8.48644e-07 2.11058e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| it will be ||| 0.000691244 0.0080472 2.54593e-06 4.32397e-07 2.718 ||| 0-0 ||| 4340 1.17835e+06 +en ||| it will come to play ||| 0.5 0.0247351 8.48644e-07 9.47549e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it will come to ||| 0.111111 0.0247351 8.48644e-07 3.67267e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| it will have on ||| 0.0909091 0.22993 8.48644e-07 1.52806e-07 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| it will help bring about more ||| 1 0.0222258 8.48644e-07 8.70884e-18 2.718 ||| 0-4 0-5 ||| 1 1.17835e+06 +en ||| it will in the ||| 0.333333 0.605812 8.48644e-07 4.36147e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| it will in ||| 0.394737 0.605812 1.27297e-05 7.10432e-05 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| it will no ||| 0.0344828 0.0080472 8.48644e-07 1.8572e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| it will not prevent us , as ||| 0.333333 0.0080472 8.48644e-07 1.45995e-17 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| it will not prevent us , ||| 0.333333 0.0080472 8.48644e-07 1.43071e-15 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| it will not prevent us ||| 0.25 0.0080472 8.48644e-07 1.19971e-14 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| it will not prevent ||| 0.111111 0.0080472 8.48644e-07 4.16248e-12 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| it will not ||| 0.001321 0.0080472 8.48644e-07 8.14575e-08 2.718 ||| 0-0 ||| 757 1.17835e+06 +en ||| it will only be at ||| 1 0.321886 8.48644e-07 1.24145e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| it will put ||| 0.0416667 0.0080472 8.48644e-07 2.63071e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| it will remain ||| 0.0151515 0.0080472 8.48644e-07 2.89411e-09 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| it will take in ||| 0.2 0.605812 8.48644e-07 1.1438e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| it will take ||| 0.00294118 0.0074151 8.48644e-07 4.50153e-08 2.718 ||| 0-2 ||| 340 1.17835e+06 +en ||| it will then ||| 0.0263158 0.013351 8.48644e-07 5.16153e-08 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| it will ||| 0.00554201 0.0080472 2.12161e-05 2.38591e-05 2.718 ||| 0-0 ||| 4511 1.17835e+06 +en ||| it wishes to ||| 0.00564972 0.0247351 8.48644e-07 2.64424e-08 2.718 ||| 0-2 ||| 177 1.17835e+06 +en ||| it with regard to ||| 0.0909091 0.0247351 8.48644e-07 2.17638e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| it with ||| 0.0340136 0.0535436 1.27297e-05 0.000207333 2.718 ||| 0-1 ||| 441 1.17835e+06 +en ||| it within ||| 0.347826 0.369196 1.35783e-05 0.000197157 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| it worked out in ||| 1 0.605812 8.48644e-07 1.36829e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| it would , if ||| 0.5 0.0178573 8.48644e-07 1.44311e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| it would , in ||| 0.185185 0.605812 4.24322e-06 5.74729e-06 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| it would , ||| 0.0235294 0.0080472 1.69729e-06 1.93017e-06 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| it would at ||| 0.111111 0.321886 8.48644e-07 4.17478e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| it would be in ||| 0.0208333 0.605812 8.48644e-07 8.73405e-07 2.718 ||| 0-3 ||| 48 1.17835e+06 +en ||| it would be modelled on ||| 0.5 0.22993 8.48644e-07 2.19907e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| it would be ||| 0.000458786 0.0080472 2.54593e-06 2.93324e-07 2.718 ||| 0-0 ||| 6539 1.17835e+06 +en ||| it would certainly be possible for ||| 1 0.0286209 8.48644e-07 4.3723e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it would have to ||| 0.0285714 0.0247351 8.48644e-07 3.50841e-08 2.718 ||| 0-3 ||| 35 1.17835e+06 +en ||| it would in ||| 0.277778 0.605812 4.24322e-06 4.81934e-05 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| it would not , in ||| 0.25 0.605812 8.48644e-07 1.96218e-08 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| it would seem to ||| 0.047619 0.0163912 8.48644e-07 4.15816e-11 2.718 ||| 0-0 0-3 ||| 21 1.17835e+06 +en ||| it would still be ||| 0.0333333 0.0080472 8.48644e-07 2.20932e-10 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| it would still ||| 0.0454545 0.0080472 8.48644e-07 1.21908e-08 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| it would then be ISO in another ||| 1 0.605812 8.48644e-07 1.35646e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it would then be ISO in ||| 1 0.605812 8.48644e-07 5.62613e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| it would ||| 0.00755124 0.0080472 1.78215e-05 1.61853e-05 2.718 ||| 0-0 ||| 2781 1.17835e+06 +en ||| it ||| 0.00898901 0.0080472 0.00118216 0.0027579 2.718 ||| 0-0 ||| 154967 1.17835e+06 +en ||| item at ||| 0.333333 0.321886 8.48644e-07 1.51208e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| item in ||| 0.030303 0.605812 8.48644e-07 1.74553e-05 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| item is ||| 0.00036036 0.0005032 1.69729e-06 1.08032e-08 2.718 ||| 0-1 ||| 5550 1.17835e+06 +en ||| item on ||| 0.0362694 0.22993 5.94051e-06 3.13923e-06 2.718 ||| 0-1 ||| 193 1.17835e+06 +en ||| items on the ||| 0.015873 0.22993 8.48644e-07 1.37659e-07 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| items on ||| 0.0224719 0.22993 1.69729e-06 2.24231e-06 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| its ' national ' status , involves ||| 1 0.0273327 8.48644e-07 1.54171e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| its Committee on Budgetary Control ||| 0.047619 0.22993 8.48644e-07 7.53094e-19 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| its Committee on Budgetary ||| 0.25 0.22993 8.48644e-07 7.76386e-14 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| its Committee on ||| 0.0103093 0.22993 8.48644e-07 1.80555e-08 2.718 ||| 0-2 ||| 97 1.17835e+06 +en ||| its German equivalent in ||| 1 0.605812 8.48644e-07 3.25035e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| its ability in ||| 0.333333 0.605812 8.48644e-07 3.03292e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| its action in ||| 0.0434783 0.605812 8.48644e-07 1.98883e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| its action on ||| 0.0666667 0.22993 8.48644e-07 3.57679e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| its adoption at ||| 0.166667 0.321886 8.48644e-07 2.62728e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| its appointment coincides with ||| 1 0.0535436 8.48644e-07 1.33714e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| its approach on ||| 0.125 0.22993 8.48644e-07 2.59355e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| its arguments on ||| 1 0.22993 8.48644e-07 2.85149e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| its attention on ||| 0.0277778 0.22993 8.48644e-07 3.09168e-08 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| its banks in ||| 1 0.605812 8.48644e-07 9.93428e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| its being implemented in ||| 1 0.605812 8.48644e-07 1.64384e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| its case selected for discussion here in ||| 1 0.605812 8.48644e-07 4.07562e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| its case when ||| 1 0.142731 8.48644e-07 9.07453e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| its competences in ||| 0.166667 0.605812 8.48644e-07 3.81582e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| its conscience at ||| 1 0.321886 8.48644e-07 1.65273e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| its control in ||| 1 0.605812 8.48644e-07 5.04609e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| its cooperation in ||| 0.0769231 0.605812 8.48644e-07 6.05925e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| its coverage on ||| 1 0.22993 8.48644e-07 9.82048e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| its delegation will be properly heard at ||| 1 0.321886 8.48644e-07 7.59195e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| its disposal at ||| 0.5 0.321886 8.48644e-07 4.79863e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| its efforts in ||| 0.0144928 0.605812 8.48644e-07 8.00006e-08 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| its especially serious ||| 1 0.13965 8.48644e-07 3.73008e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| its especially ||| 1 0.13965 8.48644e-07 3.23792e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| its faith in far-sighted ||| 1 0.605812 8.48644e-07 6.81584e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| its faith in ||| 0.166667 0.605812 8.48644e-07 9.73691e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| its feet in ||| 0.5 0.605812 8.48644e-07 1.23027e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| its final form in ||| 0.5 0.605812 8.48644e-07 2.285e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| its final stages within a ||| 1 0.369196 8.48644e-07 8.06647e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| its final stages within ||| 1 0.369196 8.48644e-07 1.81981e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| its governments in ||| 1 0.605812 8.48644e-07 2.25002e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| its hands on ||| 0.166667 0.22993 8.48644e-07 1.19266e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| its head in ||| 0.037037 0.605812 8.48644e-07 4.75661e-08 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| its intervention in ||| 0.0833333 0.605812 8.48644e-07 1.75001e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| its kind in ||| 0.0454545 0.605812 8.48644e-07 3.21055e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| its level of ||| 0.0285714 0.0116562 8.48644e-07 1.66193e-08 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| its meeting in ||| 0.0172414 0.605812 8.48644e-07 8.26322e-08 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| its membership to ||| 0.111111 0.0247351 8.48644e-07 9.81124e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| its negative impact on ||| 0.0909091 0.22993 8.48644e-07 2.28138e-13 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| its objective in ||| 0.166667 0.605812 8.48644e-07 4.40135e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| its obligations under ||| 0.00925926 0.205566 8.48644e-07 1.07146e-10 2.718 ||| 0-2 ||| 108 1.17835e+06 +en ||| its opinion on ||| 0.00353357 0.22993 8.48644e-07 2.90355e-08 2.718 ||| 0-2 ||| 283 1.17835e+06 +en ||| its own at all ||| 1 0.321886 8.48644e-07 4.56552e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| its own at ||| 0.25 0.321886 8.48644e-07 9.66166e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| its own in ||| 0.0666667 0.605812 8.48644e-07 1.11534e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| its part in ||| 0.00746269 0.605812 8.48644e-07 7.84348e-07 2.718 ||| 0-2 ||| 134 1.17835e+06 +en ||| its partners in ||| 0.0344828 0.605812 8.48644e-07 1.68422e-08 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| its people in ||| 0.0588235 0.605812 8.48644e-07 5.79083e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| its performance in ||| 0.1 0.605812 8.48644e-07 1.49343e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| its place in ||| 0.047619 0.605812 2.54593e-06 9.90139e-07 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| its position to ||| 0.0909091 0.0247351 8.48644e-07 1.31871e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| its practical application on ||| 1 0.22993 8.48644e-07 3.15808e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| its presence felt in ||| 0.0769231 0.605812 8.48644e-07 1.44883e-12 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| its priorities towards ||| 0.166667 0.0616136 8.48644e-07 2.65407e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| its proposal for ||| 0.00568182 0.0286209 8.48644e-07 3.27337e-09 2.718 ||| 0-2 ||| 176 1.17835e+06 +en ||| its relation to ||| 0.25 0.0247351 8.48644e-07 9.74317e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| its role in a new ||| 1 0.605812 8.48644e-07 3.86948e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| its role in a ||| 0.166667 0.605812 8.48644e-07 6.47395e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| its role in ||| 0.00809717 0.605812 1.69729e-06 1.46054e-07 2.718 ||| 0-2 ||| 247 1.17835e+06 +en ||| its scope is , in ||| 0.25 0.605812 8.48644e-07 2.45157e-10 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| its share of ||| 0.0119048 0.0116562 8.48644e-07 1.81852e-09 2.718 ||| 0-2 ||| 84 1.17835e+06 +en ||| its staff at ||| 0.5 0.321886 8.48644e-07 2.29673e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| its strength ||| 0.0144928 0.000385 8.48644e-07 6.7456e-10 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| its strong-arm tactics in ||| 0.333333 0.605812 8.48644e-07 1.60527e-15 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| its tracks in ||| 1 0.605812 8.48644e-07 3.81582e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| its universities and ||| 1 0.000385 8.48644e-07 7.4955e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| its universities ||| 0.2 0.000385 8.48644e-07 5.984e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| its voice and ||| 0.125 0.0010182 8.48644e-07 5.71838e-11 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| its way into ||| 0.186047 0.525896 6.78915e-06 6.79855e-08 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| its way onto ||| 0.3 0.233333 2.54593e-06 6.14524e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| its work in this ||| 0.0666667 0.605812 8.48644e-07 2.69085e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| its work in ||| 0.0190476 0.605812 1.69729e-06 4.1645e-07 2.718 ||| 0-2 ||| 105 1.17835e+06 +en ||| its ||| 0.000190649 0.000385 1.69729e-05 2.72e-05 2.718 ||| 0-0 ||| 104905 1.17835e+06 +en ||| itself , in ||| 0.0625 0.605812 1.69729e-06 3.73757e-05 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| itself , ||| 0.00167224 0.0245169 1.69729e-06 4.09759e-05 2.718 ||| 0-0 ||| 1196 1.17835e+06 +en ||| itself a ||| 0.00641026 0.0245169 8.48644e-07 1.52303e-05 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| itself against culturally high ||| 0.5 0.153982 8.48644e-07 8.22643e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| itself against culturally ||| 0.5 0.153982 8.48644e-07 5.51e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| itself against ||| 0.0909091 0.153982 8.48644e-07 3.93571e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| itself along ||| 0.5 0.155535 8.48644e-07 5.39906e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| itself appear to be ||| 0.5 0.0247351 8.48644e-07 3.0217e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| itself appear to ||| 0.5 0.0247351 8.48644e-07 1.66734e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| itself as ||| 0.013986 0.066968 1.69729e-06 1.22084e-05 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| itself at ||| 0.545455 0.321886 5.09187e-06 2.71494e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| itself be ||| 0.0434783 0.0245169 8.48644e-07 6.22703e-06 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| itself down into ||| 0.5 0.525896 8.48644e-07 1.04887e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| itself during ||| 0.333333 0.226251 8.48644e-07 1.96233e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| itself heard in the ||| 1 0.605812 8.48644e-07 1.52388e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| itself heard in ||| 1 0.605812 8.48644e-07 2.48221e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| itself in , ||| 1 0.605812 8.48644e-07 3.73757e-05 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| itself in a ||| 0.0434783 0.605812 8.48644e-07 1.38922e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| itself in ||| 0.2 0.605812 3.05512e-05 0.000313411 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| itself into the air ||| 1 0.525896 8.48644e-07 5.08235e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| itself into the ||| 0.142857 0.525896 8.48644e-07 9.22386e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| itself into ||| 0.136364 0.525896 2.54593e-06 1.50246e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| itself is framed in ||| 0.5 0.0245169 8.48644e-07 5.76252e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| itself is framed ||| 0.5 0.0245169 8.48644e-07 2.6922e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| itself is ||| 0.00401606 0.0245169 8.48644e-07 1.07688e-05 2.718 ||| 0-0 ||| 249 1.17835e+06 +en ||| itself on ||| 0.136364 0.22993 5.09187e-06 5.63649e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| itself out in ||| 1 0.605812 8.48644e-07 1.20049e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| itself scope in ||| 1 0.605812 8.48644e-07 3.12471e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| itself through ||| 0.166667 0.0366102 8.48644e-07 6.38249e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| itself to be in ||| 1 0.605812 8.48644e-07 5.04707e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| itself to in ||| 1 0.605812 1.69729e-06 2.78491e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| itself to ||| 0.01875 0.0247351 5.09187e-06 1.90771e-05 2.718 ||| 0-1 ||| 320 1.17835e+06 +en ||| itself up as the ||| 0.5 0.066968 8.48644e-07 2.55615e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| itself up as ||| 0.125 0.066968 8.48644e-07 4.16367e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| itself when it became ||| 1 0.137638 8.48644e-07 1.53131e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| itself when ||| 0.142857 0.142731 8.48644e-07 4.0405e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| itself which is under ||| 1 0.205566 8.48644e-07 1.02173e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| itself with ||| 0.0631579 0.0535436 5.09187e-06 7.9129e-06 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| itself ||| 0.00217305 0.0245169 1.86702e-05 0.0003436 2.718 ||| 0-0 ||| 10124 1.17835e+06 +en ||| ivory tower mentality in ||| 1 0.605812 8.48644e-07 7.31461e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| jail in ||| 0.0769231 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| jailing on the ||| 0.333333 0.22993 8.48644e-07 2.0394e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| jailing on ||| 0.333333 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| jeopardise everything ||| 0.1 0.319512 8.48644e-07 2.47345e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| jeopardise ||| 0.00653595 0.319512 3.39458e-06 0.0002674 2.718 ||| 0-0 ||| 612 1.17835e+06 +en ||| jeopardised ||| 0.00588235 0.265033 8.48644e-07 8.1e-05 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| jeopardising ||| 0.0075 0.292264 2.54593e-06 0.0001388 2.718 ||| 0-0 ||| 400 1.17835e+06 +en ||| jeopardize ||| 0.0142857 0.259669 8.48644e-07 3.2e-05 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| jeopardy now ||| 0.333333 0.0123946 8.48644e-07 1.8944e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| job done in ||| 0.142857 0.605812 8.48644e-07 1.64457e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| job of ||| 0.0028169 0.0116562 8.48644e-07 1.06505e-06 2.718 ||| 0-1 ||| 355 1.17835e+06 +en ||| job on ||| 0.0588235 0.22993 1.69729e-06 6.48608e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| job security becomes ||| 1 0.162791 8.48644e-07 2.43171e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| job to do in ||| 0.25 0.605812 8.48644e-07 1.1009e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| job-creation ||| 0.0106383 0.0143885 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 94 1.17835e+06 +en ||| jobs as ||| 0.0163934 0.066968 8.48644e-07 9.31773e-07 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| jobs at ||| 0.012987 0.321886 8.48644e-07 2.0721e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| jobs being lost in ||| 0.333333 0.605812 8.48644e-07 3.87331e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| jobs in the area ||| 0.25 0.605812 8.48644e-07 6.09871e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| jobs in the ||| 0.0025974 0.605812 8.48644e-07 1.46851e-06 2.718 ||| 0-1 ||| 385 1.17835e+06 +en ||| jobs in ||| 0.00656045 0.605812 5.94051e-06 2.39203e-05 2.718 ||| 0-1 ||| 1067 1.17835e+06 +en ||| jobs within ||| 0.0333333 0.369196 8.48644e-07 5.74291e-07 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| join at present ||| 0.25 0.321886 8.48644e-07 6.85186e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| join at ||| 0.0714286 0.321886 8.48644e-07 1.87209e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| join forces more resolutely in ||| 1 0.605812 8.48644e-07 8.35462e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| join in dealing ||| 1 0.605812 8.48644e-07 2.23245e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| join in emphasising ||| 0.5 0.605812 8.48644e-07 7.78009e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| join in ||| 0.00824176 0.605812 2.54593e-06 2.16114e-05 2.718 ||| 0-1 ||| 364 1.17835e+06 +en ||| join possibly ||| 0.5 0.0315278 8.48644e-07 6.9525e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| join the ||| 0.000774593 0.0011669 8.48644e-07 1.34068e-07 2.718 ||| 0-1 ||| 1291 1.17835e+06 +en ||| join with them in ||| 0.142857 0.605812 8.48644e-07 3.70691e-10 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| join ||| 0.00049249 0.0315278 1.69729e-06 0.0001545 2.718 ||| 0-0 ||| 4061 1.17835e+06 +en ||| joined in ||| 0.015625 0.605812 8.48644e-07 5.81844e-06 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| joined with ||| 0.0357143 0.0535436 8.48644e-07 1.46902e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| joined ||| 0.00905433 0.0581879 7.6378e-06 9.53e-05 2.718 ||| 0-0 ||| 994 1.17835e+06 +en ||| joining us ||| 0.0204082 0.0914976 8.48644e-07 4.15901e-07 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| joining ||| 0.00854701 0.0914976 9.33509e-06 0.0001443 2.718 ||| 0-0 ||| 1287 1.17835e+06 +en ||| joint agreement along ||| 1 0.155535 8.48644e-07 9.54435e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| joint discussions in ||| 1 0.605812 8.48644e-07 1.24456e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| joint front on ||| 0.25 0.22993 8.48644e-07 4.3576e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| joint responsibility for ||| 0.0208333 0.0286209 8.48644e-07 8.65082e-11 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| jointly in ||| 0.0217391 0.605812 8.48644e-07 1.0621e-05 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| jointly responsible for ||| 0.0294118 0.0286209 8.48644e-07 3.91372e-11 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| jointly to ||| 0.0238095 0.0247351 8.48644e-07 6.46491e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| jointly ||| 0.000607533 0.0005461 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1646 1.17835e+06 +en ||| joke in ||| 0.142857 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| journey along it ||| 1 0.155535 8.48644e-07 1.4288e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| journey along ||| 0.5 0.155535 8.48644e-07 8.03455e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| journeys they take ||| 1 0.0074151 8.48644e-07 3.82019e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| journeys to us as ||| 1 0.066968 8.48644e-07 1.84273e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| judged by ||| 0.0119048 0.0468744 8.48644e-07 9.18767e-08 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| judged in light of ||| 1 0.605812 8.48644e-07 4.71217e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| judged in light ||| 1 0.605812 8.48644e-07 8.66782e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| judged in ||| 0.0526316 0.605812 8.48644e-07 4.98724e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| judgment on ||| 0.0434783 0.22993 2.54593e-06 1.28725e-06 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| judgments at ||| 0.2 0.321886 8.48644e-07 8.80044e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| judgments in ||| 0.012987 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| jumps up in ||| 1 0.605812 8.48644e-07 6.29962e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| jurisdiction over ||| 0.0232558 0.157937 8.48644e-07 3.32598e-08 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| just a ||| 0.000454959 0.0015231 8.48644e-07 1.03964e-06 2.718 ||| 0-1 ||| 2198 1.17835e+06 +en ||| just about ||| 0.00241546 0.0401564 8.48644e-07 3.61616e-06 2.718 ||| 0-1 ||| 414 1.17835e+06 +en ||| just among ||| 0.1 0.0422459 8.48644e-07 4.01851e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| just around the ||| 0.0232558 0.159384 8.48644e-07 8.93943e-08 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| just around ||| 0.0120482 0.159384 8.48644e-07 1.45613e-06 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| just as there are ||| 0.0769231 0.066968 8.48644e-07 1.05553e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| just as there ||| 0.030303 0.066968 8.48644e-07 6.9568e-08 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| just as well in ||| 0.5 0.605812 8.48644e-07 9.427e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| just as well too ||| 0.25 0.066968 8.48644e-07 4.89766e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| just as well ||| 0.025641 0.066968 1.69729e-06 3.59857e-08 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| just as ||| 0.00465686 0.066968 1.61242e-05 2.26953e-05 2.718 ||| 0-1 ||| 4080 1.17835e+06 +en ||| just at ||| 0.0491803 0.321886 5.09187e-06 5.04705e-05 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| just be about ||| 0.0909091 0.0401564 8.48644e-07 6.55353e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| just because of ||| 0.0185185 0.0116562 8.48644e-07 5.65383e-09 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| just becomes ||| 0.333333 0.162791 8.48644e-07 4.80834e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| just by way ||| 0.1 0.0468744 8.48644e-07 2.31369e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| just by ||| 0.0075188 0.0468744 8.48644e-07 1.07334e-05 2.718 ||| 0-1 ||| 133 1.17835e+06 +en ||| just clichés churned out in ||| 1 0.605812 8.48644e-07 6.24877e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| just come ||| 0.0666667 0.001725 8.48644e-07 4.45033e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| just concentrating on ||| 0.0625 0.22993 8.48644e-07 1.13165e-09 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| just dust in ||| 0.166667 0.605812 8.48644e-07 2.50531e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| just for ||| 0.00436681 0.0286209 2.54593e-06 1.45161e-05 2.718 ||| 0-1 ||| 687 1.17835e+06 +en ||| just given ||| 0.0357143 0.0546585 8.48644e-07 1.46471e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| just had with ||| 0.333333 0.0535436 8.48644e-07 1.47645e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| just happen to light upon ||| 1 0.114601 8.48644e-07 1.87213e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| just in ||| 0.0251323 0.605812 1.61242e-05 0.000582629 2.718 ||| 0-1 ||| 756 1.17835e+06 +en ||| just keep going ||| 0.5 0.001725 8.48644e-07 6.98668e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| just keep ||| 0.1 0.001725 8.48644e-07 8.16392e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| just like to add here ||| 0.5 0.0855319 8.48644e-07 4.89803e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| just look at ||| 0.0117647 0.321886 8.48644e-07 1.47122e-08 2.718 ||| 0-2 ||| 85 1.17835e+06 +en ||| just made on ||| 0.333333 0.22993 8.48644e-07 2.19498e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| just now in ||| 0.3 0.605812 2.54593e-06 1.20016e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| just occurred at ||| 1 0.321886 8.48644e-07 2.145e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| just occurred in ||| 0.333333 0.605812 8.48644e-07 2.47617e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| just on ||| 0.00471698 0.22993 8.48644e-07 0.000104782 2.718 ||| 0-1 ||| 212 1.17835e+06 +en ||| just one example from this building here ||| 1 0.0308834 8.48644e-07 4.44951e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| just one example from this building ||| 1 0.0308834 8.48644e-07 2.19426e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| just one example from this ||| 1 0.0308834 8.48644e-07 3.76373e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| just one example from ||| 0.333333 0.0308834 8.48644e-07 5.82495e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| just one of ||| 0.00917431 0.0116562 8.48644e-07 7.17138e-08 2.718 ||| 0-2 ||| 109 1.17835e+06 +en ||| just out of interest , on ||| 1 0.22993 8.48644e-07 2.92212e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| just over ||| 0.00940439 0.157937 2.54593e-06 5.05588e-06 2.718 ||| 0-1 ||| 319 1.17835e+06 +en ||| just reaping ||| 1 0.0166667 8.48644e-07 8.8319e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| just repeated that call in ||| 1 0.605812 8.48644e-07 4.30802e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| just started in ||| 1 0.605812 8.48644e-07 2.62183e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| just that , at ||| 0.5 0.321886 8.48644e-07 1.01247e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| just the same in ||| 0.666667 0.605812 1.69729e-06 2.8783e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| just through ||| 0.0181818 0.0366102 8.48644e-07 1.1865e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| just to be announced in ||| 1 0.605812 8.48644e-07 1.96094e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| just to ||| 0.00218102 0.0247351 1.69729e-06 3.54642e-05 2.718 ||| 0-1 ||| 917 1.17835e+06 +en ||| just under ||| 0.0119048 0.205566 8.48644e-07 7.13441e-06 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| just ||| 0.00156163 0.001725 3.8189e-05 5.24e-05 2.718 ||| 0-0 ||| 28816 1.17835e+06 +en ||| justice , on ||| 0.0769231 0.22993 8.48644e-07 3.95166e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| justice in ||| 0.00291545 0.605812 8.48644e-07 1.84251e-05 2.718 ||| 0-1 ||| 343 1.17835e+06 +en ||| keen to ||| 0.006 0.0247351 2.54593e-06 7.39248e-07 2.718 ||| 0-1 ||| 500 1.17835e+06 +en ||| keen ||| 0.001321 0.0149679 8.48644e-07 1.43e-05 2.718 ||| 0-0 ||| 757 1.17835e+06 +en ||| keep a sense ||| 0.0625 0.0015231 8.48644e-07 2.28643e-11 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| keep a ||| 0.00404858 0.0015231 8.48644e-07 1.28379e-07 2.718 ||| 0-1 ||| 247 1.17835e+06 +en ||| keep contributing to ||| 0.5 0.0247351 8.48644e-07 4.72961e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| keep in ||| 0.0145985 0.605812 1.69729e-06 7.19455e-05 2.718 ||| 0-1 ||| 137 1.17835e+06 +en ||| keep it in ||| 0.111111 0.605812 8.48644e-07 1.27942e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| keep records ||| 0.0833333 0.024173 8.48644e-07 2.00982e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| keep to ||| 0.00265957 0.0247351 8.48644e-07 4.37927e-06 2.718 ||| 0-1 ||| 376 1.17835e+06 +en ||| keep toeing ||| 1 0.166667 8.48644e-07 1.0906e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| keeping to ||| 0.01 0.0247351 8.48644e-07 1.64996e-06 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| keeping with the times ||| 0.2 0.0535436 8.48644e-07 4.26454e-12 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| keeping with the ||| 0.00304878 0.0535436 8.48644e-07 4.20152e-08 2.718 ||| 0-1 ||| 328 1.17835e+06 +en ||| keeping with ||| 0.00787402 0.0535436 3.39458e-06 6.84377e-07 2.718 ||| 0-1 ||| 508 1.17835e+06 +en ||| keeps on being hailed ||| 0.5 0.22993 8.48644e-07 2.97787e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| keeps on being ||| 0.333333 0.22993 8.48644e-07 2.12705e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| keeps on ||| 0.0588235 0.22993 8.48644e-07 7.47436e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| kept at ||| 0.0689655 0.321886 1.69729e-06 2.85214e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| kept current within ||| 1 0.369196 8.48644e-07 1.30271e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| kept in check ||| 0.0555556 0.605812 8.48644e-07 1.0075e-09 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| kept in ||| 0.0775194 0.605812 8.48644e-06 3.2925e-05 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| kept prisoner under ||| 0.5 0.205566 8.48644e-07 1.00793e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| kept surfacing in ||| 1 0.605812 8.48644e-07 2.30475e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| kept them lying on ||| 1 0.22993 8.48644e-07 2.28721e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| kept to the decisions already made by ||| 1 0.0468744 8.48644e-07 2.44918e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| kept to ||| 0.00909091 0.0247351 8.48644e-07 2.00412e-06 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| kept under ||| 0.0576923 0.205566 2.54593e-06 4.03173e-07 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| key action into ||| 1 0.525896 8.48644e-07 4.86516e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| key asset of ||| 1 0.0116562 8.48644e-07 2.47852e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| key factors in ||| 0.0172414 0.605812 8.48644e-07 1.00379e-09 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| key in ||| 0.015625 0.605812 8.48644e-07 3.35715e-05 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| key means of ||| 0.2 0.0116562 8.48644e-07 6.28256e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| key positions in ||| 0.333333 0.605812 8.48644e-07 1.13472e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| key role in ||| 0.00461894 0.605812 1.69729e-06 7.45287e-09 2.718 ||| 0-2 ||| 433 1.17835e+06 +en ||| key role to play in ||| 0.0384615 0.605812 8.48644e-07 1.7086e-13 2.718 ||| 0-4 ||| 26 1.17835e+06 +en ||| key to the problem ||| 0.2 0.0247351 8.48644e-07 2.82143e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| key to the ||| 0.00465116 0.0247351 8.48644e-07 1.25453e-07 2.718 ||| 0-1 ||| 215 1.17835e+06 +en ||| key to ||| 0.00180343 0.0247351 1.69729e-06 2.04347e-06 2.718 ||| 0-1 ||| 1109 1.17835e+06 +en ||| key words here are ' at ||| 1 0.321886 8.48644e-07 6.94587e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| kick in ||| 0.0526316 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| kicking in ||| 0.333333 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| killed by machine gun fire in ||| 0.5 0.605812 8.48644e-07 2.40958e-23 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| killed in ||| 0.0185185 0.605812 2.54593e-06 1.09904e-05 2.718 ||| 0-1 ||| 162 1.17835e+06 +en ||| killed on ||| 0.04 0.22993 8.48644e-07 1.97655e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| killed over ||| 0.0769231 0.157937 8.48644e-07 9.53714e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| killing in the space of ||| 1 0.605812 8.48644e-07 5.7425e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| killing in the space ||| 1 0.605812 8.48644e-07 1.05631e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| killing in the ||| 0.5 0.605812 8.48644e-07 2.55146e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| killing in ||| 0.153846 0.605812 1.69729e-06 4.15603e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| killings first in ||| 1 0.605812 8.48644e-07 4.47521e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| kind , in which ||| 0.2 0.605812 8.48644e-07 2.28283e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| kind , in ||| 0.142857 0.605812 8.48644e-07 2.68739e-05 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| kind , so that in ||| 1 0.605812 8.48644e-07 1.02605e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| kind and in ||| 0.333333 0.605812 8.48644e-07 2.8227e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| kind as to ||| 0.047619 0.066968 8.48644e-07 7.80006e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| kind as ||| 0.0222222 0.066968 8.48644e-07 8.7781e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| kind here in ||| 0.666667 0.605812 1.69729e-06 4.56963e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| kind in ||| 0.121739 0.605812 1.1881e-05 0.000225349 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| kind of area in ||| 0.5 0.605812 8.48644e-07 5.08779e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| kind of ||| 0.00100766 0.0116562 4.24322e-06 6.65486e-06 2.718 ||| 0-1 ||| 4962 1.17835e+06 +en ||| kind on the ||| 0.1 0.22993 8.48644e-07 2.48806e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| kind on ||| 0.04 0.22993 8.48644e-07 4.05276e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| kind used in ||| 0.333333 0.605812 8.48644e-07 9.66748e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| kinds of ||| 0.000896057 0.0116562 8.48644e-07 6.47758e-07 2.718 ||| 0-1 ||| 1116 1.17835e+06 +en ||| kinds on ||| 0.333333 0.22993 8.48644e-07 3.9448e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| knew in ||| 0.5 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| knock-on effect on ||| 0.0625 0.22993 8.48644e-07 1.19131e-10 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| knocked off their savings in ||| 1 0.605812 8.48644e-07 1.98894e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| knot at ||| 1 0.321886 8.48644e-07 4.40022e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| knots in ||| 0.25 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| know , back in early ||| 1 0.605812 8.48644e-07 6.46959e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| know , back in ||| 0.5 0.605812 8.48644e-07 9.55627e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| know - on ||| 1 0.22993 8.48644e-07 8.08229e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| know about these things will ||| 1 0.0401564 8.48644e-07 2.72678e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| know about these things ||| 0.333333 0.0401564 8.48644e-07 3.15191e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| know about these ||| 0.142857 0.0401564 8.48644e-07 7.66888e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| know about ||| 0.00362319 0.0401564 8.48644e-07 7.39454e-07 2.718 ||| 0-1 ||| 276 1.17835e+06 +en ||| know at ||| 0.047619 0.321886 8.48644e-07 1.03205e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| know for ||| 0.0322581 0.0286209 8.48644e-07 2.96834e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| know in his ||| 1 0.605812 8.48644e-07 3.58014e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| know in ||| 0.0869565 0.605812 3.39458e-06 0.00011914 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| know it was not easy in ||| 1 0.605812 8.48644e-07 8.56632e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| know it ||| 0.00970874 0.0080472 8.48644e-07 7.11538e-07 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| know that , in ||| 0.037037 0.605812 8.48644e-07 2.39e-07 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| know the Commission 's thinking in ||| 0.5 0.605812 8.48644e-07 6.02879e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| know what ||| 0.0018018 0.0035633 1.69729e-06 1.00775e-07 2.718 ||| 0-1 ||| 1110 1.17835e+06 +en ||| know-how in ||| 0.0344828 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| knowing in ||| 0.5 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| knowledge , so that we can ||| 0.333333 0.0054082 8.48644e-07 1.45629e-15 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| knowledge , so that we ||| 0.333333 0.0054082 8.48644e-07 4.89623e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| knowledge and expertise of the ||| 0.5 0.0116562 8.48644e-07 3.3872e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| knowledge and expertise of ||| 0.333333 0.0116562 8.48644e-07 5.51735e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| knowledge in ||| 0.0138889 0.605812 8.48644e-07 2.19346e-05 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| knowledge of them ||| 0.125 0.0116562 8.48644e-07 1.73754e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| knowledge of ||| 0.00415512 0.0116562 2.54593e-06 6.47758e-07 2.718 ||| 0-1 ||| 722 1.17835e+06 +en ||| known , in ||| 0.25 0.605812 8.48644e-07 6.06316e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| known . in ||| 1 0.605812 8.48644e-07 1.54001e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| known about ||| 0.0188679 0.0401564 8.48644e-07 3.15558e-07 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| known and appears in ||| 1 0.605812 8.48644e-07 3.32432e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| known as the ||| 0.00205339 0.066968 8.48644e-07 1.21584e-07 2.718 ||| 0-1 ||| 487 1.17835e+06 +en ||| known as ||| 0.00769231 0.066968 8.48644e-06 1.98047e-06 2.718 ||| 0-1 ||| 1300 1.17835e+06 +en ||| known at ||| 0.047619 0.321886 8.48644e-07 4.40422e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| known colloquially as ||| 0.333333 0.066968 8.48644e-07 1.38633e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| known in ||| 0.0208333 0.605812 1.69729e-06 5.08421e-05 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| known on ||| 0.166667 0.22993 8.48644e-07 9.14363e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| known to be ||| 0.0196078 0.0247351 8.48644e-07 5.60854e-08 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| known to ||| 0.00291545 0.0247351 8.48644e-07 3.09472e-06 2.718 ||| 0-1 ||| 343 1.17835e+06 +en ||| known under ||| 0.333333 0.205566 8.48644e-07 6.22571e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| knows in advance ||| 1 0.605812 8.48644e-07 3.40688e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| knows in ||| 0.25 0.605812 8.48644e-07 9.65122e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| knows nowadays ||| 1 0.221613 8.48644e-07 4.02534e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| knows that when dealing with ||| 1 0.0535436 8.48644e-07 2.11668e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| knows this from ||| 0.5 0.0308834 8.48644e-07 5.13853e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| label to ||| 0.0526316 0.0247351 8.48644e-07 3.85084e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| labelling on ||| 0.0384615 0.22993 8.48644e-07 1.10454e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| labelling within ||| 1 0.369196 8.48644e-07 1.47453e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| labels on ||| 0.1 0.22993 8.48644e-07 4.81681e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| laboratory ||| 0.00344828 0.0079365 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 290 1.17835e+06 +en ||| labour at ||| 0.142857 0.321886 8.48644e-07 1.72809e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| labour force - in ||| 1 0.605812 8.48644e-07 1.28074e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| labour in ||| 0.0232558 0.605812 8.48644e-07 1.99489e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| labour market in ||| 0.0114943 0.605812 8.48644e-07 4.50846e-09 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| labour will ||| 0.333333 0.0003996 8.48644e-07 2.33582e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| labour ||| 0.000185546 0.0003996 1.69729e-06 2.7e-06 2.718 ||| 0-0 ||| 10779 1.17835e+06 +en ||| lack any taste in ||| 1 0.605812 8.48644e-07 2.71725e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| lack of influence on ||| 0.5 0.22993 8.48644e-07 1.8776e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| lack of transparency within ||| 0.5 0.369196 8.48644e-07 1.00408e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| lack of ||| 0.000233019 0.0116562 1.69729e-06 1.65826e-06 2.718 ||| 0-1 ||| 8583 1.17835e+06 +en ||| lacking in ||| 0.0157729 0.605812 4.24322e-06 7.98881e-06 2.718 ||| 0-1 ||| 317 1.17835e+06 +en ||| lacking within ||| 1 0.369196 8.48644e-07 1.918e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lagging behind where ||| 0.0909091 0.247783 8.48644e-07 2.74711e-12 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| laid before ||| 0.05 0.0175291 8.48644e-07 3.71581e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| laid down at ||| 0.0344828 0.321886 1.69729e-06 3.04387e-09 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| laid down by ||| 0.0020284 0.0468744 8.48644e-07 6.4733e-10 2.718 ||| 0-2 ||| 493 1.17835e+06 +en ||| laid down for ||| 0.00813008 0.0286209 8.48644e-07 8.75464e-10 2.718 ||| 0-2 ||| 123 1.17835e+06 +en ||| laid down in Germany ||| 1 0.605812 8.48644e-07 9.10081e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| laid down in Venezuela ||| 0.333333 0.605812 8.48644e-07 3.86521e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| laid down in the ||| 0.00113636 0.605812 8.48644e-07 2.1572e-09 2.718 ||| 0-2 ||| 880 1.17835e+06 +en ||| laid down in ||| 0.0140281 0.605812 1.78215e-05 3.51383e-08 2.718 ||| 0-2 ||| 1497 1.17835e+06 +en ||| laid down ||| 0.00138122 0.0183476 3.39458e-06 2.40345e-08 2.718 ||| 0-1 ||| 2896 1.17835e+06 +en ||| laid in ||| 0.461538 0.605812 5.09187e-06 5.03341e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| laid off by ||| 0.5 0.0468744 8.48644e-07 3.774e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| laid out at ||| 0.5 0.321886 8.48644e-07 1.67014e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| laid out in ||| 0.0327869 0.605812 1.69729e-06 1.928e-07 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| laid plans in ||| 0.5 0.605812 8.48644e-07 2.11907e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| land around ||| 0.2 0.159384 8.48644e-07 4.44328e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| land the beneficiary in ||| 1 0.605812 8.48644e-07 3.49267e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| landfill is actually inside ||| 1 0.188717 8.48644e-07 7.17364e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| landfill site in ||| 1 0.605812 8.48644e-07 2.55781e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| landing in ||| 0.0434783 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| landmark by ||| 0.5 0.0468744 8.48644e-07 1.19099e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| language clearly does ||| 1 0.0066452 8.48644e-07 2.70092e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| language clearly ||| 1 0.0066452 8.48644e-07 3.85075e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| language in ||| 0.0555556 0.605812 3.39458e-06 2.16114e-05 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| language speakers in ||| 1 0.605812 8.48644e-07 4.36549e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| language ||| 0.00229841 0.0066452 1.01837e-05 2.11e-05 2.718 ||| 0-0 ||| 5221 1.17835e+06 +en ||| languages in ||| 0.0333333 0.605812 1.69729e-06 8.31206e-06 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| languages when Europe ||| 0.166667 0.142731 8.48644e-07 5.42227e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| languages when ||| 0.166667 0.142731 8.48644e-07 1.07159e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| lapse back into ||| 0.25 0.525896 8.48644e-07 5.36024e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| lapses back into ||| 1 0.525896 8.48644e-07 1.63785e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| large , at ||| 0.333333 0.321886 8.48644e-07 7.33215e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| large as at ||| 0.5 0.321886 8.48644e-07 6.27398e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| large degree , within ||| 1 0.369196 8.48644e-07 2.8145e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| large extent ||| 0.00464037 0.0400323 1.69729e-06 3.10628e-08 2.718 ||| 0-1 ||| 431 1.17835e+06 +en ||| large in ||| 0.0645161 0.605812 1.69729e-06 7.09758e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| large number of ||| 0.001443 0.0116562 1.69729e-06 1.0371e-09 2.718 ||| 0-2 ||| 1386 1.17835e+06 +en ||| large number ||| 0.000654022 0.0011038 8.48644e-07 3.13548e-09 2.718 ||| 0-1 ||| 1529 1.17835e+06 +en ||| large numbers of ||| 0.00288184 0.0116562 8.48644e-07 1.02495e-10 2.718 ||| 0-2 ||| 347 1.17835e+06 +en ||| large quantities in ||| 0.142857 0.605812 8.48644e-07 1.02205e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| large-scale ||| 0.00201613 0.0092205 1.69729e-06 1.5e-05 2.718 ||| 0-0 ||| 992 1.17835e+06 +en ||| largely achieved ||| 0.0909091 0.247761 8.48644e-07 1.41737e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| largely address ||| 0.333333 0.247761 8.48644e-07 6.46414e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| largely an ||| 0.0833333 0.247761 8.48644e-07 3.76555e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| largely be ||| 0.142857 0.247761 8.48644e-07 1.53537e-05 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| largely created ||| 0.5 0.247761 8.48644e-07 8.92949e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| largely fallen into and been ||| 1 0.525896 8.48644e-07 4.57194e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| largely fallen into and ||| 1 0.525896 8.48644e-07 1.36917e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| largely fallen into ||| 1 0.525896 8.48644e-07 1.09307e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| largely gone beyond ||| 0.125 0.247761 8.48644e-07 3.9723e-12 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| largely gone ||| 0.1 0.247761 8.48644e-07 5.30347e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| largely helping ||| 0.333333 0.247761 8.48644e-07 3.20242e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| largely in ||| 0.0285714 0.605812 1.69729e-06 1.51002e-05 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| largely responsible ||| 0.0149254 0.247761 8.48644e-07 1.25301e-07 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| largely spent ||| 0.25 0.247761 8.48644e-07 5.43055e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| largely thanks ||| 0.1 0.247761 8.48644e-07 6.86232e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| largely with ||| 0.2 0.0535436 8.48644e-07 3.81246e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| largely ||| 0.0142236 0.247761 3.05512e-05 0.0008472 2.718 ||| 0-0 ||| 2531 1.17835e+06 +en ||| larger extent , on ||| 0.5 0.22993 8.48644e-07 2.87433e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| largest in ||| 0.0416667 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| largest producer of ||| 0.0769231 0.0116562 8.48644e-07 4.40748e-13 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| last June on tourism and employment . ||| 1 0.22993 8.48644e-07 5.20921e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| last June on tourism and employment ||| 1 0.22993 8.48644e-07 1.71978e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| last June on tourism and ||| 1 0.22993 8.48644e-07 3.51693e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| last June on tourism ||| 1 0.22993 8.48644e-07 2.80773e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| last June on ||| 0.166667 0.22993 8.48644e-07 1.55985e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| last few hours , ||| 0.142857 0.0048275 8.48644e-07 5.19289e-14 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| last few hours ||| 0.0285714 0.0048275 8.48644e-07 4.35445e-13 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| last few ||| 0.000787402 0.0048275 8.48644e-07 2.01595e-08 2.718 ||| 0-0 ||| 1270 1.17835e+06 +en ||| last on ||| 0.0526316 0.22993 8.48644e-07 1.81378e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| last one ||| 0.0120482 0.0048275 8.48644e-07 4.7932e-07 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| last reign in ||| 1 0.605812 8.48644e-07 6.15203e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| last week in ||| 0.00578035 0.605812 8.48644e-07 3.0861e-09 2.718 ||| 0-2 ||| 173 1.17835e+06 +en ||| last word ||| 0.00578035 0.0048275 8.48644e-07 1.1707e-08 2.718 ||| 0-0 ||| 173 1.17835e+06 +en ||| last year in Dublin ||| 1 0.605812 8.48644e-07 5.5336e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| last year in ||| 0.00735294 0.605812 8.48644e-07 2.51527e-08 2.718 ||| 0-2 ||| 136 1.17835e+06 +en ||| last year ||| 0.000164663 0.0048275 8.48644e-07 2.8681e-08 2.718 ||| 0-0 ||| 6073 1.17835e+06 +en ||| last ||| 0.00270183 0.0048275 5.68592e-05 0.000115 2.718 ||| 0-0 ||| 24798 1.17835e+06 +en ||| lasting stability in our continent . ||| 1 0.605812 8.48644e-07 4.68372e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lasting stability in our continent ||| 1 0.605812 8.48644e-07 1.54629e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lasting stability in our ||| 1 0.605812 8.48644e-07 1.3446e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lasting stability in ||| 0.111111 0.605812 8.48644e-07 9.74774e-11 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| late as ||| 0.03125 0.066968 8.48644e-07 5.70216e-07 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| late in ||| 0.0162602 0.605812 1.69729e-06 1.46385e-05 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| later developed into ||| 0.5 0.525896 8.48644e-07 1.30792e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| later in ||| 0.0192308 0.605812 2.54593e-06 3.97132e-05 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| later on in ||| 0.0322581 0.417871 8.48644e-07 3.29812e-06 2.718 ||| 0-1 0-2 ||| 31 1.17835e+06 +en ||| later on ||| 0.0025 0.22993 8.48644e-07 7.14216e-06 2.718 ||| 0-1 ||| 400 1.17835e+06 +en ||| later proved to ||| 0.5 0.0247351 8.48644e-07 1.00077e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| later than in ||| 0.4 0.303583 1.69729e-06 2.08097e-09 2.718 ||| 0-1 0-2 ||| 5 1.17835e+06 +en ||| later than with ||| 1 0.0535436 8.48644e-07 3.06314e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| later today ||| 0.011236 0.0398284 8.48644e-07 1.0375e-07 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| later ||| 0.000226912 0.0001514 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 4407 1.17835e+06 +en ||| latest , at the ||| 1 0.321886 8.48644e-07 4.74441e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| latest , at ||| 0.5 0.321886 8.48644e-07 7.72809e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| latest on ||| 0.0714286 0.22993 8.48644e-07 1.34538e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| latter , in ||| 0.125 0.605812 8.48644e-07 5.29219e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| latter in advance ||| 0.5 0.605812 8.48644e-07 1.56651e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| latter in ||| 0.111111 0.605812 1.69729e-06 4.43772e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| latter incapable of ||| 1 0.0116562 8.48644e-07 6.55258e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| latter into ||| 0.5 0.525896 8.48644e-07 2.12739e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| latter is , today , at a ||| 1 0.321886 8.48644e-07 3.42762e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| latter is , today , at ||| 1 0.321886 8.48644e-07 7.73278e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| latter must bring about the ||| 1 0.0401564 8.48644e-07 8.13582e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| latter must bring about ||| 1 0.0401564 8.48644e-07 1.32523e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| latter would like to see ||| 1 0.0247351 8.48644e-07 1.98363e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| latter would like to ||| 1 0.0247351 8.48644e-07 2.81526e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| launch in ||| 0.0588235 0.605812 8.48644e-07 9.14327e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| launched , ||| 0.0142857 0.12071 8.48644e-07 2.54013e-05 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| launched and you should start ||| 1 0.12071 8.48644e-07 5.30176e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| launched and you should ||| 1 0.12071 8.48644e-07 3.81696e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| launched and you ||| 1 0.12071 8.48644e-07 8.61423e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| launched and ||| 0.037037 0.12071 8.48644e-07 2.66802e-06 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| launched at ||| 0.0277778 0.321886 8.48644e-07 1.32407e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| launched for ||| 0.111111 0.0746653 8.48644e-07 2.45061e-06 2.718 ||| 0-0 0-1 ||| 9 1.17835e+06 +en ||| launched in ||| 0.0157895 0.605812 2.54593e-06 1.5285e-05 2.718 ||| 0-1 ||| 190 1.17835e+06 +en ||| launched itself ||| 0.5 0.12071 8.48644e-07 1.44563e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| launched ||| 0.00508187 0.12071 7.6378e-06 0.000213 2.718 ||| 0-0 ||| 1771 1.17835e+06 +en ||| launching in ||| 1 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| launching ||| 0.00141044 0.0918728 8.48644e-07 5.31e-05 2.718 ||| 0-0 ||| 709 1.17835e+06 +en ||| law , as ||| 0.025 0.066968 8.48644e-07 3.78188e-07 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| law adopted recently ||| 1 0.0095755 8.48644e-07 2.20107e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| law for ||| 0.0140845 0.0286209 8.48644e-07 2.02837e-06 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| law in the ||| 0.0223881 0.605812 2.54593e-06 4.99803e-06 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| law in ||| 0.0286738 0.605812 1.35783e-05 8.1412e-05 2.718 ||| 0-1 ||| 558 1.17835e+06 +en ||| law into ||| 0.027027 0.525896 8.48644e-07 3.90281e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| law means in ||| 1 0.605812 8.48644e-07 5.15908e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| law of ||| 0.00277778 0.0116562 8.48644e-07 2.4042e-06 2.718 ||| 0-1 ||| 360 1.17835e+06 +en ||| law on ||| 0.00254453 0.22993 8.48644e-07 1.46414e-05 2.718 ||| 0-1 ||| 393 1.17835e+06 +en ||| law since ||| 0.25 0.0075235 8.48644e-07 3.0588e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| law under pressure ||| 1 0.205566 8.48644e-07 5.9914e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| law under ||| 0.0666667 0.205566 8.48644e-07 9.96906e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| law with ||| 0.0263158 0.0535436 8.48644e-07 2.05546e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| laws in ||| 0.0107527 0.605812 8.48644e-07 1.01592e-05 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| lawsuits in ||| 0.2 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| lay down in writing in ||| 0.5 0.605812 8.48644e-07 6.23896e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| lay in ||| 0.0869565 0.605812 1.69729e-06 1.91177e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| lay on ||| 0.333333 0.22993 8.48644e-07 3.4382e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| laying down ||| 0.00141443 0.0183476 8.48644e-07 4.60845e-09 2.718 ||| 0-1 ||| 707 1.17835e+06 +en ||| laying into each other ||| 0.5 0.525896 8.48644e-07 1.68248e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| laying into each ||| 0.5 0.525896 8.48644e-07 1.29871e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| laying into ||| 0.5 0.525896 8.48644e-07 4.6267e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| lays down ||| 0.00348432 0.0183476 1.69729e-06 2.0727e-09 2.718 ||| 0-1 ||| 574 1.17835e+06 +en ||| lead , in ||| 0.0666667 0.605812 8.48644e-07 1.06009e-05 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| lead at ||| 0.0833333 0.321886 8.48644e-07 7.70039e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| lead by example . it is ||| 1 0.0468744 8.48644e-07 8.04781e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lead by example . it ||| 1 0.0468744 8.48644e-07 2.56781e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lead by example . ||| 0.0384615 0.0468744 8.48644e-07 1.44396e-12 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| lead by example ||| 0.015625 0.0468744 8.48644e-07 4.7671e-10 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| lead by ||| 0.010989 0.0468744 8.48644e-07 1.63762e-06 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| lead in ||| 0.0107239 0.605812 3.39458e-06 8.88929e-05 2.718 ||| 0-1 ||| 373 1.17835e+06 +en ||| lead on the ||| 0.0909091 0.22993 8.48644e-07 9.81459e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| lead on ||| 0.0178571 0.22993 8.48644e-07 1.59868e-05 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| lead the way in the ||| 0.333333 0.605812 8.48644e-07 7.22197e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| lead the way in ||| 0.0243902 0.605812 8.48644e-07 1.17637e-08 2.718 ||| 0-3 ||| 41 1.17835e+06 +en ||| lead them in the ||| 1 0.605812 8.48644e-07 1.46386e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lead them in ||| 1 0.605812 8.48644e-07 2.38446e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lead to Morocco distributing fishing licences belonging ||| 1 0.0247351 8.48644e-07 2.03972e-31 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lead to Morocco distributing fishing licences ||| 1 0.0247351 8.48644e-07 7.55452e-27 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lead to Morocco distributing fishing ||| 1 0.0247351 8.48644e-07 2.09848e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lead to Morocco distributing ||| 1 0.0247351 8.48644e-07 5.25934e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lead to Morocco ||| 1 0.0247351 8.48644e-07 2.92186e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lead to additional ||| 1 0.0247351 8.48644e-07 2.86234e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lead to ||| 0.00506397 0.0247351 1.61242e-05 5.41085e-06 2.718 ||| 0-1 ||| 3752 1.17835e+06 +en ||| lead us to ||| 0.00598802 0.0247351 8.48644e-07 1.55951e-08 2.718 ||| 0-2 ||| 167 1.17835e+06 +en ||| leader in ||| 0.00877193 0.605812 8.48644e-07 5.4952e-06 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| leader of ||| 0.00260417 0.0116562 8.48644e-07 1.6228e-07 2.718 ||| 0-1 ||| 384 1.17835e+06 +en ||| leaders in the field , ||| 0.25 0.605812 8.48644e-07 8.19937e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| leaders in the field ||| 0.166667 0.605812 8.48644e-07 6.87551e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| leaders in the ||| 0.025 0.605812 8.48644e-07 4.70603e-07 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| leaders in ||| 0.0245902 0.605812 2.54593e-06 7.66557e-06 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| leaders to account ? ||| 1 0.233636 8.48644e-07 8.33319e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| leaders to account ||| 0.5 0.233636 8.48644e-07 4.87606e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| leadership in ||| 0.00854701 0.605812 8.48644e-07 7.66557e-06 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| leading ( in ||| 1 0.605812 8.48644e-07 3.87893e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| leading a ||| 0.0357143 0.0015231 8.48644e-07 7.17704e-08 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| leading in ||| 0.115385 0.605812 2.54593e-06 4.02211e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| leading light in ||| 0.5 0.605812 8.48644e-07 6.99043e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| leading role in ||| 0.00506329 0.605812 1.69729e-06 8.92909e-09 2.718 ||| 0-2 ||| 395 1.17835e+06 +en ||| leading to ||| 0.00439754 0.0247351 4.24322e-06 2.44823e-06 2.718 ||| 0-1 ||| 1137 1.17835e+06 +en ||| leads me to ||| 0.00578035 0.0247351 8.48644e-07 5.48338e-10 2.718 ||| 0-2 ||| 173 1.17835e+06 +en ||| leads on to my ||| 0.333333 0.22993 8.48644e-07 1.53763e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| leads on to ||| 0.1 0.22993 8.48644e-07 2.39097e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| leads on ||| 0.166667 0.22993 8.48644e-07 2.69077e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| leads to ||| 0.000798722 0.0247351 8.48644e-07 9.10709e-07 2.718 ||| 0-1 ||| 1252 1.17835e+06 +en ||| leap in ||| 0.0625 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| leaps and bounds at ||| 0.5 0.321886 8.48644e-07 5.18097e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| learn about ||| 0.0123457 0.0401564 8.48644e-07 1.00027e-07 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| learn at ||| 0.0625 0.321886 8.48644e-07 1.39607e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| learn from ||| 0.00163399 0.0308834 8.48644e-07 1.32798e-07 2.718 ||| 0-1 ||| 612 1.17835e+06 +en ||| learn in ||| 0.0769231 0.605812 8.48644e-07 1.61162e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| learned with horror ||| 0.25 0.0535436 8.48644e-07 9.94737e-13 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| learned with ||| 0.142857 0.0535436 8.48644e-07 1.84211e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| learning and speaking ||| 0.333333 0.0538225 8.48644e-07 4.08725e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| learnt at ||| 0.2 0.321886 8.48644e-07 4.0402e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| learnt in ||| 0.0689655 0.605812 1.69729e-06 4.66399e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| least , in ||| 0.0666667 0.605812 1.69729e-06 1.35141e-05 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| least as ||| 0.00261097 0.066968 8.48644e-07 4.41423e-06 2.718 ||| 0-1 ||| 383 1.17835e+06 +en ||| least at ||| 0.0106383 0.321886 8.48644e-07 9.81649e-06 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| least hint in ||| 1 0.605812 8.48644e-07 4.53284e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| least in the ||| 0.00303951 0.303489 8.48644e-07 3.24631e-07 2.718 ||| 0-1 0-2 ||| 329 1.17835e+06 +en ||| least in ||| 0.0154589 0.605812 1.35783e-05 0.000113321 2.718 ||| 0-1 ||| 1035 1.17835e+06 +en ||| least inside ||| 1 0.188717 8.48644e-07 4.69205e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| least managed to achieve something in ||| 1 0.605812 8.48644e-07 7.14455e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| least not in ||| 0.0416667 0.605812 8.48644e-07 3.8689e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| least of ||| 0.00869565 0.0116562 8.48644e-07 3.34652e-06 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| least on ||| 0.016129 0.22993 1.69729e-06 2.03801e-05 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| leave in the middle of ||| 1 0.605812 8.48644e-07 3.00148e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| leave in the middle ||| 1 0.605812 8.48644e-07 5.52108e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| leave in the ||| 0.0833333 0.605812 8.48644e-07 2.69321e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| leave in ||| 0.0434783 0.605812 8.48644e-07 4.38692e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| leave of ||| 0.0833333 0.0116562 8.48644e-07 1.29552e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| leave on Sunday ||| 1 0.22993 8.48644e-07 3.9448e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| leave on ||| 0.0625 0.22993 8.48644e-07 7.8896e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| leave something to ||| 0.142857 0.0247351 8.48644e-07 1.478e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| leaving them with ||| 0.25 0.0535436 8.48644e-07 7.44317e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| leaving to ||| 0.0769231 0.0247351 8.48644e-07 6.68978e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| led at ||| 0.2 0.321886 8.48644e-07 3.67218e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| led by ||| 0.00277008 0.0468744 1.69729e-06 7.80952e-07 2.718 ||| 0-1 ||| 722 1.17835e+06 +en ||| led in ||| 0.111111 0.605812 1.69729e-06 4.23915e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| led into ||| 0.235294 0.525896 3.39458e-06 2.0322e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| led to a ||| 0.00242718 0.0247351 8.48644e-07 1.14376e-07 2.718 ||| 0-1 ||| 412 1.17835e+06 +en ||| led to formal ||| 0.25 0.0247351 8.48644e-07 4.36078e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| led to ||| 0.00290577 0.0247351 5.94051e-06 2.58034e-06 2.718 ||| 0-1 ||| 2409 1.17835e+06 +en ||| led us to ||| 0.0140845 0.0247351 8.48644e-07 7.43706e-09 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| left Zimbabwe with a good impression ||| 1 0.0535436 8.48644e-07 5.72536e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| left Zimbabwe with a good ||| 1 0.0535436 8.48644e-07 2.17694e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| left Zimbabwe with a ||| 1 0.0535436 8.48644e-07 4.19773e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| left Zimbabwe with ||| 1 0.0535436 8.48644e-07 9.47017e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| left as the Commission has proposed with ||| 0.5 0.066968 8.48644e-07 4.47587e-19 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| left as the Commission has proposed ||| 0.5 0.066968 8.48644e-07 6.99956e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| left as the Commission has ||| 0.5 0.066968 8.48644e-07 6.272e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| left as the Commission ||| 0.5 0.066968 8.48644e-07 1.21846e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| left as the ||| 0.5 0.066968 8.48644e-07 2.08604e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| left as ||| 0.111111 0.066968 8.48644e-07 3.39791e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| left at all in ||| 1 0.605812 8.48644e-07 1.72604e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| left at such ||| 1 0.321886 8.48644e-07 1.56334e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| left at ||| 0.105263 0.321886 1.69729e-06 7.55638e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| left in it of ||| 1 0.605812 8.48644e-07 8.43314e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| left in it ||| 1 0.605812 8.48644e-07 1.55124e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| left in the ||| 0.011236 0.605812 8.48644e-07 5.35523e-06 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| left in ||| 0.135135 0.605812 2.12161e-05 8.72304e-05 2.718 ||| 0-1 ||| 185 1.17835e+06 +en ||| left on ||| 0.0416667 0.22993 8.48644e-07 1.56878e-05 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| left out of ||| 0.08 0.0116562 3.39458e-06 9.86722e-09 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| left since ||| 0.5 0.0075235 8.48644e-07 3.27742e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| left standing in ||| 0.5 0.605812 8.48644e-07 4.61449e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| left their mark on ||| 0.111111 0.22993 8.48644e-07 9.87379e-13 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| left to act ||| 0.333333 0.0247351 8.48644e-07 9.02111e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| left to the ||| 0.005 0.0247351 8.48644e-07 3.25969e-07 2.718 ||| 0-1 ||| 200 1.17835e+06 +en ||| left to ||| 0.00819672 0.0247351 4.24322e-06 5.30966e-06 2.718 ||| 0-1 ||| 610 1.17835e+06 +en ||| left until ||| 0.0434783 0.0092136 8.48644e-07 1.10507e-08 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| left with nothing but ||| 0.333333 0.0535436 8.48644e-07 2.80099e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| left with nothing ||| 0.142857 0.0535436 8.48644e-07 4.0986e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| left with ||| 0.0178571 0.0535436 1.69729e-06 2.20237e-06 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| left ||| 0.000478354 0.00062 1.69729e-06 2.7e-06 2.718 ||| 0-0 ||| 4181 1.17835e+06 +en ||| legal bases in ||| 0.0909091 0.605812 8.48644e-07 4.06958e-10 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| legal circles in ||| 0.333333 0.605812 8.48644e-07 3.65066e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| legal online ||| 0.25 0.37885 8.48644e-07 5.75035e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| legal standard in ||| 0.5 0.605812 8.48644e-07 2.81879e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| legalized status in ||| 0.333333 0.605812 8.48644e-07 1.86744e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| legislation in ||| 0.0102339 0.605812 5.94051e-06 3.7081e-05 2.718 ||| 0-1 ||| 684 1.17835e+06 +en ||| legislation introduced in ||| 0.333333 0.605812 8.48644e-07 3.42999e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| legislation on ||| 0.00112867 0.22993 8.48644e-07 6.66879e-06 2.718 ||| 0-1 ||| 886 1.17835e+06 +en ||| legislators in ||| 0.047619 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| legislatures to ||| 0.25 0.0247351 8.48644e-07 1.12433e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| legitimate , in a thriving democracy , ||| 1 0.605812 8.48644e-07 1.04363e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| legitimate , in a thriving democracy ||| 1 0.605812 8.48644e-07 8.75129e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| legitimate , in a thriving ||| 1 0.605812 8.48644e-07 3.00732e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| legitimate , in a ||| 1 0.605812 8.48644e-07 2.73392e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| legitimate , in ||| 0.333333 0.605812 8.48644e-07 6.16779e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| legs to ||| 0.333333 0.0247351 8.48644e-07 8.99466e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| lends itself ||| 0.025 0.0245169 8.48644e-07 1.09952e-09 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| lends ||| 0.0120482 0.0081967 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| length during ||| 0.2 0.226251 8.48644e-07 1.11315e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| length in ||| 0.0434783 0.605812 8.48644e-07 1.77786e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| length on ||| 0.272727 0.22993 2.54593e-06 3.19736e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| length to ||| 0.125 0.0247351 8.48644e-07 1.08217e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| lengthy discussions at ||| 0.333333 0.321886 8.48644e-07 8.94285e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| less agreed on ||| 0.5 0.22993 8.48644e-07 1.10393e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| less along ||| 0.5 0.155535 8.48644e-07 1.35394e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| less announcing ||| 0.166667 0.0014142 8.48644e-07 4.128e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| less back to ||| 0.25 0.0247351 8.48644e-07 3.21774e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| less care being taken to ||| 0.125 0.0247351 8.48644e-07 1.25957e-15 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| less competitive in ||| 0.25 0.605812 8.48644e-07 1.50117e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| less ensure ||| 0.333333 0.0014142 8.48644e-07 5.78436e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| less exhaustively ||| 1 0.0014142 8.48644e-07 5.16e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| less in ||| 0.0347826 0.605812 3.39458e-06 7.85951e-05 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| less lucrative trade in them ||| 1 0.605812 8.48644e-07 3.30529e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| less lucrative trade in ||| 1 0.605812 8.48644e-07 1.23221e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| less well in ||| 0.333333 0.605812 8.48644e-07 1.2462e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| less what ||| 0.0769231 0.0014142 8.48644e-07 1.81e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| less ||| 0.000958696 0.0014142 1.01837e-05 1.29e-05 2.718 ||| 0-0 ||| 12517 1.17835e+06 +en ||| lesson on ||| 0.125 0.22993 8.48644e-07 7.14216e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| let 's be ||| 0.111111 0.0046586 8.48644e-07 2.7231e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| let 's ||| 0.0227273 0.0046586 8.48644e-07 1.50257e-07 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| let a ||| 0.0526316 0.0046586 8.48644e-07 3.49731e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| let go by the ||| 1 0.0468744 8.48644e-07 1.24734e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| let go by ||| 1 0.0468744 8.48644e-07 2.03177e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| let loose in ||| 1 0.605812 8.48644e-07 1.09383e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| let me move ||| 0.0714286 0.0046586 8.48644e-07 7.26362e-12 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| let me once again , on ||| 0.5 0.22993 8.48644e-07 5.76302e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| let me put a question to you ||| 1 0.0046586 8.48644e-07 5.51072e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| let me put a question to ||| 0.333333 0.0046586 8.48644e-07 1.70679e-16 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| let me put a question ||| 0.25 0.0046586 8.48644e-07 1.9208e-15 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| let me put a ||| 0.166667 0.0046586 8.48644e-07 2.32178e-12 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| let me put ||| 0.0384615 0.0046586 8.48644e-07 5.23798e-11 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| let me say , on ||| 0.125 0.22993 8.48644e-07 2.32771e-12 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| let me ||| 0.00118501 0.0046586 6.78915e-06 4.75057e-08 2.718 ||| 0-0 ||| 6751 1.17835e+06 +en ||| let off ||| 0.0588235 0.0262428 8.48644e-07 6.83662e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| let them in ||| 0.5 0.605812 8.48644e-07 5.05878e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| let there be ||| 0.0106383 0.0117359 8.48644e-07 8.29992e-09 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| let there ||| 0.0172414 0.0117359 8.48644e-07 4.5798e-07 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| let up in ||| 0.0714286 0.605812 8.48644e-07 6.43191e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| let us , in ||| 0.333333 0.605812 2.54593e-06 6.48219e-08 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| let us also ||| 0.0123457 0.0046586 8.48644e-07 1.14808e-09 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| let us at ||| 0.03125 0.321886 8.48644e-07 4.7086e-08 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| let us consider ||| 0.00961538 0.0126304 8.48644e-07 1.42546e-10 2.718 ||| 0-2 ||| 104 1.17835e+06 +en ||| let us dare to ||| 0.2 0.0247351 8.48644e-07 2.74614e-13 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| let us do away with ||| 0.125 0.0535436 8.48644e-07 1.49967e-14 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| let us for ||| 0.2 0.0286209 8.48644e-07 1.35427e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| let us have ||| 0.00564972 0.0046586 8.48644e-07 2.71973e-09 2.718 ||| 0-0 ||| 177 1.17835e+06 +en ||| let us hold ||| 0.0769231 0.0046586 8.48644e-07 3.96141e-11 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| let us in ||| 0.111111 0.605812 8.48644e-07 5.43558e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| let us make ||| 0.00826446 0.0046586 8.48644e-07 3.95185e-10 2.718 ||| 0-0 ||| 121 1.17835e+06 +en ||| let us think ||| 0.0344828 0.0046586 8.48644e-07 8.69826e-11 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| let us try , ||| 0.166667 0.0046586 8.48644e-07 4.17635e-12 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| let us try ||| 0.0181818 0.0046586 8.48644e-07 3.50205e-11 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| let us ||| 0.00341686 0.0046586 7.6378e-06 2.27406e-07 2.718 ||| 0-0 ||| 2634 1.17835e+06 +en ||| let ||| 0.0119075 0.0046586 4.41295e-05 7.89e-05 2.718 ||| 0-0 ||| 4367 1.17835e+06 +en ||| letter in ||| 0.0384615 0.605812 8.48644e-07 1.19601e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| letter of the law in ||| 1 0.605812 8.48644e-07 7.03736e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| level , in ||| 0.0454545 0.605812 8.48644e-07 4.71065e-05 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| level , on ||| 0.142857 0.22993 8.48644e-07 8.47181e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| level , we provide the practical ||| 1 0.0054082 8.48644e-07 1.84109e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| level , we provide the ||| 1 0.0054082 8.48644e-07 4.19383e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| level , we provide ||| 1 0.0054082 8.48644e-07 6.83125e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| level , we ||| 0.2 0.0054082 8.48644e-07 2.30942e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| level . at ||| 1 0.321886 8.48644e-07 1.03645e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| level and in ||| 0.047619 0.605812 8.48644e-07 4.94783e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| level at which ||| 0.0227273 0.321886 8.48644e-07 2.90666e-07 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| level at ||| 0.0273973 0.321886 1.69729e-06 3.42177e-05 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| level by ||| 0.06 0.0468744 2.54593e-06 7.27697e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| level here in ||| 1 0.605812 8.48644e-07 8.00996e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| level in a ||| 0.25 0.605812 8.48644e-07 1.7509e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| level in the ||| 0.0185185 0.605812 8.48644e-07 2.42502e-05 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| level in ||| 0.128342 0.605812 2.03675e-05 0.000395008 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| level of being ||| 0.333333 0.0116562 8.48644e-07 3.31965e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| level of inflation . at ||| 1 0.321886 8.48644e-07 2.42287e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| level of ||| 0.00180269 0.0116562 9.33509e-06 1.16651e-05 2.718 ||| 0-1 ||| 6102 1.17835e+06 +en ||| level on ||| 0.09375 0.22993 2.54593e-06 7.10396e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| level the ||| 0.0588235 0.0011669 8.48644e-07 2.45046e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| level to ||| 0.0070922 0.0247351 8.48644e-07 2.40438e-05 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| level when ||| 0.111111 0.142731 8.48644e-07 5.09245e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| level where ||| 0.0526316 0.247783 8.48644e-07 7.2851e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| level within ||| 0.0555556 0.369196 8.48644e-07 9.48356e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| levelled at ||| 0.0273973 0.321886 1.69729e-06 2.88014e-07 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| levels are reduced by ||| 0.5 0.0468744 8.48644e-07 7.99794e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| levels at sea ||| 0.333333 0.321886 8.48644e-07 1.58358e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| levels at ||| 0.166667 0.321886 1.69729e-06 5.29626e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| levels falling in ||| 1 0.605812 8.48644e-07 1.56518e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| levels from ||| 0.111111 0.0308834 8.48644e-07 5.03795e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| levels in ||| 0.043956 0.605812 3.39458e-06 6.11398e-05 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| levels of ||| 0.00149551 0.0116562 2.54593e-06 1.80554e-06 2.718 ||| 0-1 ||| 2006 1.17835e+06 +en ||| levels over ||| 0.5 0.157937 8.48644e-07 5.30553e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| levels within ||| 0.0833333 0.369196 8.48644e-07 1.46788e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| leverage in ||| 0.0769231 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| levied at ||| 0.142857 0.321886 8.48644e-07 2.44012e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| levied in ||| 0.0909091 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| levied on ||| 0.025641 0.22993 8.48644e-07 5.06595e-07 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| levied when ||| 0.2 0.142731 8.48644e-07 3.63151e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| liabilities of ||| 0.111111 0.0116562 8.48644e-07 1.50007e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| liability in ||| 0.015873 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| liable for ||| 0.027027 0.0286209 1.69729e-06 1.94438e-07 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| liable to tax in ||| 1 0.605812 8.48644e-07 4.38959e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| liaison officer for senior citizens were to ||| 1 0.0286209 8.48644e-07 3.10757e-26 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| liaison officer for senior citizens were ||| 1 0.0286209 8.48644e-07 3.49723e-25 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| liaison officer for senior citizens ||| 1 0.0286209 8.48644e-07 1.95223e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| liaison officer for senior ||| 1 0.0286209 8.48644e-07 1.79104e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| liaison officer for ||| 1 0.0286209 8.48644e-07 1.46806e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| liberalization . in ||| 1 0.605812 8.48644e-07 3.07722e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| liberty in the ||| 1 0.605812 8.48644e-07 2.86331e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| liberty in ||| 0.0833333 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| liberty of calling on ||| 0.333333 0.22993 8.48644e-07 3.00503e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| libraries in other ||| 1 0.605812 8.48644e-07 8.37532e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| libraries in ||| 0.0555556 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| licence to ||| 0.0126582 0.0247351 8.48644e-07 2.64218e-07 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| licensing arrangements in ||| 0.5 0.605812 8.48644e-07 2.83811e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| lie at ||| 0.0111111 0.321886 8.48644e-07 1.51208e-06 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| lie elsewhere ||| 0.0344828 0.226899 8.48644e-07 2.98091e-08 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| lie in unmonitored ||| 0.5 0.605812 8.48644e-07 6.98213e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| lie in ||| 0.0497512 0.605812 8.48644e-06 1.74553e-05 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| lie in ‘ ||| 1 0.605812 8.48644e-07 1.96023e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lie in ‘ ’ ||| 1 0.605812 8.48644e-07 3.41492e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lie on ||| 0.166667 0.22993 1.69729e-06 3.13923e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| lie ||| 0.000961538 0.0006006 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1040 1.17835e+06 +en ||| lies , in ||| 0.1 0.605812 8.48644e-07 3.38678e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| lies ahead when ||| 1 0.142731 8.48644e-07 3.99079e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lies at ||| 0.00689655 0.321886 8.48644e-07 2.46012e-06 2.718 ||| 0-1 ||| 145 1.17835e+06 +en ||| lies in ||| 0.00591017 0.605812 4.24322e-06 2.83995e-05 2.718 ||| 0-1 ||| 846 1.17835e+06 +en ||| lies with ||| 0.00484262 0.0535436 1.69729e-06 7.17022e-07 2.718 ||| 0-1 ||| 413 1.17835e+06 +en ||| lies within ||| 0.02 0.369196 8.48644e-07 6.81832e-07 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| life expectancy in ||| 0.030303 0.605812 8.48644e-07 7.69558e-11 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| life in Albania ||| 0.5 0.605812 8.48644e-07 5.80667e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| life in ||| 0.0345745 0.605812 1.10324e-05 6.99598e-05 2.718 ||| 0-1 ||| 376 1.17835e+06 +en ||| life into ||| 0.0135135 0.525896 8.48644e-07 3.3538e-06 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| life on ||| 0.0266667 0.22993 1.69729e-06 1.25818e-05 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| life right across ||| 1 0.274879 8.48644e-07 2.0071e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lift into ||| 1 0.525896 8.48644e-07 1.68243e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lifted in ||| 0.2 0.605812 8.48644e-07 6.14169e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| lifted when amounts ||| 0.333333 0.142731 8.48644e-07 4.79032e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| lifted when ||| 0.166667 0.142731 8.48644e-07 7.91789e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| light , when ||| 1 0.142731 8.48644e-07 1.23391e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| light - and since we ||| 1 0.0054082 8.48644e-07 2.52278e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| light bulb in ||| 0.5 0.605812 8.48644e-07 3.2103e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| light in ||| 0.0823529 0.605812 5.94051e-06 8.02576e-05 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| light of day in ||| 0.111111 0.605812 8.48644e-07 1.11783e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| light of ||| 0.0015748 0.0116562 4.24322e-06 2.37011e-06 2.718 ||| 0-1 ||| 3175 1.17835e+06 +en ||| light on ||| 0.0109091 0.22993 2.54593e-06 1.44338e-05 2.718 ||| 0-1 ||| 275 1.17835e+06 +en ||| light sleep in many parts ||| 0.166667 0.605812 8.48644e-07 8.03153e-18 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| light sleep in many ||| 0.166667 0.605812 8.48644e-07 1.37762e-13 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| light sleep in ||| 0.166667 0.605812 8.48644e-07 4.01288e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| light to squander ||| 1 0.0247351 8.48644e-07 1.95409e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| light to ||| 0.0277778 0.0247351 8.48644e-07 4.88522e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| light upon ||| 0.166667 0.114601 8.48644e-07 1.53622e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| like , however , to highlight two ||| 1 0.0053256 8.48644e-07 3.71344e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| like , however , to highlight ||| 1 0.0053256 8.48644e-07 1.57083e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| like , however , to ||| 1 0.0053256 8.48644e-07 8.40015e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| like , however , ||| 0.5 0.0053256 8.48644e-07 9.45343e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| like , however ||| 0.5 0.0053256 8.48644e-07 7.92709e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| like , in ||| 0.0833333 0.605812 8.48644e-07 9.7798e-05 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| like , instead , ||| 0.5 0.340662 8.48644e-07 8.52071e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| like , instead ||| 0.5 0.340662 8.48644e-07 7.14497e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| like , on ||| 0.55 0.22993 9.33509e-06 1.75884e-05 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| like , speaking on ||| 1 0.22993 8.48644e-07 2.01914e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| like across ||| 0.5 0.274879 8.48644e-07 3.64823e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| like at ||| 0.176471 0.321886 2.54593e-06 7.10396e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| like firstly to ||| 0.2 0.295867 8.48644e-07 8.43995e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| like firstly ||| 0.111111 0.295867 8.48644e-07 9.49822e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| like for ||| 0.0588235 0.0286209 8.48644e-07 2.04321e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| like in ||| 0.205674 0.605812 2.46107e-05 0.000820077 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| like it or not ||| 0.0208333 0.0008293 8.48644e-07 6.5606e-12 2.718 ||| 0-3 ||| 48 1.17835e+06 +en ||| like on ||| 0.333333 0.22993 2.54593e-06 0.000147486 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| like others before it , ||| 0.5 0.0175291 8.48644e-07 1.24795e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| like others before it ||| 0.333333 0.0175291 8.48644e-07 1.04646e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| like others before ||| 0.2 0.0175291 8.48644e-07 5.88453e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| like particularly ||| 0.333333 0.183344 8.48644e-07 7.93081e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| like rats in ||| 0.0666667 0.605812 8.48644e-07 3.28031e-10 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| like some colleagues in ||| 0.142857 0.605812 8.48644e-07 1.99208e-11 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| like that by ||| 0.25 0.0468744 8.48644e-07 2.54137e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| like that in ||| 0.04 0.605812 8.48644e-07 1.3795e-05 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| like this in ||| 0.0625 0.605812 1.69729e-06 5.29885e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| like this when ||| 0.166667 0.142731 8.48644e-07 6.83129e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| like to add here ||| 0.5 0.0855319 8.48644e-07 3.88209e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| like to ask ||| 0.00408163 0.0247351 8.48644e-07 6.86366e-09 2.718 ||| 0-1 ||| 245 1.17835e+06 +en ||| like to be in ||| 0.5 0.605812 8.48644e-07 1.32063e-06 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| like to begin by ||| 0.0125 0.0247351 8.48644e-07 1.54622e-11 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| like to begin ||| 0.0116279 0.0247351 8.48644e-07 2.94513e-09 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| like to comment on ||| 0.0294118 0.22993 8.48644e-07 5.98913e-10 2.718 ||| 0-3 ||| 34 1.17835e+06 +en ||| like to emphasise ||| 0.00714286 0.207288 8.48644e-07 1.41092e-07 2.718 ||| 0-2 ||| 140 1.17835e+06 +en ||| like to explain ||| 0.111111 0.0247351 8.48644e-07 1.31283e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| like to extend ||| 0.0344828 0.0247351 8.48644e-07 2.15644e-09 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| like to look ||| 0.05 0.0247351 8.48644e-07 1.4551e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| like to make in respect ||| 1 0.605812 8.48644e-07 5.47821e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| like to make in ||| 0.5 0.605812 8.48644e-07 1.26634e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| like to make it clear ||| 0.03125 0.0080472 8.48644e-07 2.51772e-13 2.718 ||| 0-3 ||| 32 1.17835e+06 +en ||| like to make it ||| 0.0322581 0.0080472 8.48644e-07 7.563e-10 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| like to mention ||| 0.0111111 0.0247351 1.69729e-06 4.85198e-09 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| like to offer you ||| 0.2 0.0247351 8.48644e-07 1.84377e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| like to offer ||| 0.0333333 0.0247351 8.48644e-07 5.71057e-09 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| like to raise in this ||| 0.333333 0.605812 8.48644e-07 3.10287e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| like to raise in ||| 0.333333 0.605812 8.48644e-07 4.80217e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| like to register ||| 0.25 0.0247351 8.48644e-07 6.08994e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| like to reiterate ||| 0.0217391 0.0247351 8.48644e-07 4.49258e-10 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| like to say a ||| 0.0212766 0.0247351 8.48644e-07 2.11484e-09 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| like to say that at ||| 1 0.321886 8.48644e-07 1.01492e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| like to say to ||| 0.04 0.0247351 8.48644e-07 4.23953e-09 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| like to say ||| 0.00364964 0.0247351 1.69729e-06 4.77112e-08 2.718 ||| 0-1 ||| 548 1.17835e+06 +en ||| like to see greater ||| 0.333333 0.0247351 8.48644e-07 4.63214e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| like to see ||| 0.0159363 0.0247351 3.39458e-06 3.51719e-08 2.718 ||| 0-1 ||| 251 1.17835e+06 +en ||| like to state on ||| 1 0.22993 8.48644e-07 3.3104e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| like to take ||| 0.0137931 0.0247351 1.69729e-06 8.03672e-08 2.718 ||| 0-1 ||| 145 1.17835e+06 +en ||| like to talk about ||| 0.05 0.0401564 8.48644e-07 3.63181e-11 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| like to thank him for ||| 0.03125 0.0286209 8.48644e-07 6.15828e-14 2.718 ||| 0-4 ||| 32 1.17835e+06 +en ||| like to use ||| 0.0384615 0.0247351 8.48644e-07 2.42699e-08 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| like to ||| 0.0164046 0.0247351 6.11024e-05 4.99175e-05 2.718 ||| 0-1 ||| 4389 1.17835e+06 +en ||| like trying to ||| 0.0333333 0.0247351 8.48644e-07 5.7505e-09 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| like when it says : ||| 1 0.142731 8.48644e-07 4.37559e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| like when it says ||| 1 0.142731 8.48644e-07 1.29916e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| like when it ||| 0.5 0.142731 8.48644e-07 1.88012e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| like when ||| 0.0526316 0.142731 8.48644e-07 1.05725e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| like with ||| 0.0625 0.0535436 8.48644e-07 2.0705e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| like ||| 0.00015935 6e-05 3.39458e-06 4.1e-06 2.718 ||| 0-0 ||| 25102 1.17835e+06 +en ||| liked in ||| 0.25 0.605812 8.48644e-07 7.8041e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| liked to ||| 0.00380228 0.0247351 8.48644e-07 4.7503e-07 2.718 ||| 0-1 ||| 263 1.17835e+06 +en ||| likely to be ||| 0.00333333 0.0247351 8.48644e-07 4.32484e-08 2.718 ||| 0-1 ||| 300 1.17835e+06 +en ||| likely to ||| 0.00138889 0.0247351 1.69729e-06 2.38639e-06 2.718 ||| 0-1 ||| 1440 1.17835e+06 +en ||| likewise be ||| 0.142857 0.0085995 8.48644e-07 1.72168e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| likewise ||| 0.0040404 0.0085995 3.39458e-06 9.5e-06 2.718 ||| 0-0 ||| 990 1.17835e+06 +en ||| limit at ||| 0.1 0.321886 8.48644e-07 1.9441e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| limit in ||| 0.05 0.605812 8.48644e-07 2.24426e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| limit is being ||| 0.166667 0.0043873 8.48644e-07 2.78741e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| limit on ||| 0.0114943 0.22993 8.48644e-07 4.03615e-06 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| limit to ||| 0.0117647 0.0247351 8.48644e-07 1.36606e-06 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| limit within ||| 0.25 0.369196 8.48644e-07 5.38814e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| limited by ||| 0.0185185 0.0468744 8.48644e-07 3.30926e-07 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| limited in time to ||| 0.333333 0.0247351 8.48644e-07 3.84223e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| limited in ||| 0.00854701 0.605812 8.48644e-07 1.79633e-05 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| limited number of ||| 0.00531915 0.0116562 8.48644e-07 2.62481e-10 2.718 ||| 0-2 ||| 188 1.17835e+06 +en ||| limited to ||| 0.00347826 0.0247351 1.69729e-06 1.09341e-06 2.718 ||| 0-1 ||| 575 1.17835e+06 +en ||| limits of courtesy in ||| 0.333333 0.605812 8.48644e-07 7.45597e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| limits to ||| 0.00628931 0.0247351 8.48644e-07 7.58924e-07 2.718 ||| 0-1 ||| 159 1.17835e+06 +en ||| limits under ||| 0.2 0.205566 8.48644e-07 1.52674e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| line at ||| 0.0555556 0.321886 8.48644e-07 1.17766e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| line drawn in ||| 0.25 0.605812 8.48644e-07 1.93183e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| line during ||| 1 0.226251 8.48644e-07 8.51199e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| line here too ||| 0.333333 0.0855319 8.48644e-07 1.20208e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| line here ||| 0.111111 0.0855319 8.48644e-07 8.83229e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| line in terms of ||| 0.5 0.605812 8.48644e-07 8.11203e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| line in terms ||| 0.5 0.605812 8.48644e-07 1.49217e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| line in ||| 0.107143 0.605812 7.6378e-06 0.000135948 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| line of approach ||| 0.037037 0.0116562 8.48644e-07 8.80029e-10 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| line of ||| 0.00498753 0.0116562 1.69729e-06 4.01473e-06 2.718 ||| 0-1 ||| 401 1.17835e+06 +en ||| line on ||| 0.0151515 0.22993 8.48644e-07 2.44494e-05 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| line with all ||| 0.111111 0.0535436 8.48644e-07 1.62194e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| line with ||| 0.00397068 0.0535436 1.10324e-05 3.43238e-06 2.718 ||| 0-1 ||| 3274 1.17835e+06 +en ||| lines at ||| 0.2 0.321886 8.48644e-07 3.64018e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| lines in ||| 0.0666667 0.605812 3.39458e-06 4.20221e-05 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| lines of ||| 0.00209644 0.0116562 8.48644e-07 1.24097e-06 2.718 ||| 0-1 ||| 477 1.17835e+06 +en ||| lingua , which promotes ||| 1 0.0714286 8.48644e-07 2.26917e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| lingua , which ||| 1 0.0714286 8.48644e-07 7.09115e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| lingua , ||| 1 0.0714286 8.48644e-07 8.34783e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| lingua ||| 0.0909091 0.0714286 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| link - breach of Community environment law ||| 0.333333 0.0116562 8.48644e-07 2.24812e-26 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| link - breach of Community environment ||| 0.333333 0.0116562 8.48644e-07 1.27517e-22 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| link - breach of Community ||| 0.333333 0.0116562 8.48644e-07 2.28525e-18 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| link - breach of ||| 0.333333 0.0116562 8.48644e-07 1.41152e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| link in ||| 0.0135135 0.605812 8.48644e-07 1.13136e-05 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| link into ||| 0.125 0.525896 8.48644e-07 5.42364e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| link on ||| 0.5 0.22993 8.48644e-07 2.03469e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| link them into ||| 1 0.525896 8.48644e-07 1.45484e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| linked in with a study ||| 1 0.605812 8.48644e-07 1.84481e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| linked in with a ||| 1 0.605812 8.48644e-07 5.45802e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| linked in with ||| 0.25 0.605812 8.48644e-07 1.23134e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| linked in ||| 0.0454545 0.605812 8.48644e-07 1.92563e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| linked on ||| 0.333333 0.22993 8.48644e-07 3.46312e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| linked to other European measures ||| 0.0833333 0.0247351 8.48644e-07 1.05056e-15 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| linked to other European ||| 0.0833333 0.0247351 8.48644e-07 5.07763e-12 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| linked to other ||| 0.04 0.0247351 8.48644e-07 1.51848e-09 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| linked to ||| 0.00339703 0.0247351 6.78915e-06 1.17212e-06 2.718 ||| 0-1 ||| 2355 1.17835e+06 +en ||| linked up to each other through a ||| 1 0.0366102 8.48644e-07 1.91558e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| linked up to each other through ||| 1 0.0366102 8.48644e-07 4.3216e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| linked with use of ||| 1 0.0535436 8.48644e-07 1.28505e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| linked with use ||| 1 0.0535436 8.48644e-07 2.36379e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| linked with ||| 0.00985222 0.0535436 1.69729e-06 4.86176e-07 2.718 ||| 0-1 ||| 203 1.17835e+06 +en ||| linking ||| 0.00158983 0.0024096 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 629 1.17835e+06 +en ||| lip-service to ||| 0.05 0.0247351 8.48644e-07 8.15141e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| liquidity into ||| 0.25 0.525896 8.48644e-07 1.54961e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| list goes on ||| 0.03125 0.22993 8.48644e-07 8.40811e-10 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| list in ||| 0.02 0.605812 8.48644e-07 3.37562e-05 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| list with ||| 0.047619 0.0535436 8.48644e-07 8.52266e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| listed as ||| 0.0232558 0.066968 8.48644e-07 1.94269e-07 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| listed at ||| 1 0.321886 8.48644e-07 4.32022e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| listed in ||| 0.0225564 0.605812 5.09187e-06 4.98724e-06 2.718 ||| 0-1 ||| 266 1.17835e+06 +en ||| listed on them ||| 1 0.22993 8.48644e-07 2.40591e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| listed on ||| 0.111111 0.22993 8.48644e-07 8.96923e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| listed under ||| 0.0769231 0.205566 8.48644e-07 6.10697e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| listed within ||| 0.2 0.369196 8.48644e-07 1.19736e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| listed ||| 0.00265604 0.0492554 1.69729e-06 2.93e-05 2.718 ||| 0-0 ||| 753 1.17835e+06 +en ||| listen to ||| 0.00098912 0.0247351 8.48644e-07 4.24435e-07 2.718 ||| 0-1 ||| 1011 1.17835e+06 +en ||| listening to ||| 0.00153139 0.0247351 8.48644e-07 3.54165e-07 2.718 ||| 0-1 ||| 653 1.17835e+06 +en ||| lists for ||| 0.0769231 0.0286209 8.48644e-07 9.89447e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| lists in ||| 0.111111 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| literally in ||| 0.047619 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| literally ||| 0.0045977 0.040404 1.69729e-06 1.36e-05 2.718 ||| 0-0 ||| 435 1.17835e+06 +en ||| litigation in ||| 0.111111 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| little bit closer to ||| 1 0.0247351 8.48644e-07 7.67691e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| little bit taught to them in ||| 1 0.605812 8.48644e-07 1.07261e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| little but to which I would also ||| 1 0.0247351 8.48644e-07 5.53664e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| little but to which I would ||| 1 0.0247351 8.48644e-07 1.09667e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| little but to which I ||| 1 0.0247351 8.48644e-07 1.86867e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| little but to which ||| 1 0.0247351 8.48644e-07 2.6418e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| little but to ||| 1 0.0247351 8.48644e-07 3.10997e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| little by little ||| 0.0119048 0.0468744 8.48644e-07 2.22985e-10 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| little by ||| 0.0125 0.0468744 8.48644e-07 1.3773e-06 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| little damage to ||| 1 0.0247351 8.48644e-07 1.91586e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| little else in ||| 0.333333 0.605812 8.48644e-07 8.82196e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| little in relief ||| 1 0.605812 8.48644e-07 8.37338e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| little in ||| 0.0338983 0.605812 3.39458e-06 7.47624e-05 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| little into ||| 0.25 0.525896 8.48644e-07 3.58403e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| little late in ||| 0.25 0.605812 8.48644e-07 2.36997e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| little progress at ||| 0.5 0.321886 8.48644e-07 8.52932e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| little respect for ||| 0.0588235 0.0286209 8.48644e-07 8.05801e-10 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| little scope for ||| 0.0666667 0.0286209 8.48644e-07 1.8571e-10 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| live at ||| 0.0416667 0.321886 8.48644e-07 4.0322e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| live comfortably , in ||| 1 0.605812 8.48644e-07 6.10611e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| live in , ||| 0.125 0.605812 8.48644e-07 5.55101e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| live in dire circumstances ||| 0.2 0.605812 8.48644e-07 6.28392e-15 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| live in dire ||| 0.2 0.605812 8.48644e-07 1.16369e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| live in ||| 0.0114504 0.605812 1.52756e-05 4.65475e-05 2.718 ||| 0-1 ||| 1572 1.17835e+06 +en ||| live on ||| 0.00505051 0.22993 8.48644e-07 8.37128e-06 2.718 ||| 0-1 ||| 198 1.17835e+06 +en ||| live through ||| 0.0666667 0.0366102 8.48644e-07 9.47923e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| live under ||| 0.0142857 0.205566 8.48644e-07 5.69984e-07 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| live up to ||| 0.00289855 0.0147069 8.48644e-07 6.18027e-09 2.718 ||| 0-1 ||| 345 1.17835e+06 +en ||| live up ||| 0.00294118 0.0147069 8.48644e-07 6.9552e-08 2.718 ||| 0-1 ||| 340 1.17835e+06 +en ||| live with ||| 0.00294985 0.0535436 8.48644e-07 1.17522e-06 2.718 ||| 0-1 ||| 339 1.17835e+06 +en ||| live within safe borders ||| 0.5 0.369196 8.48644e-07 1.5642e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| live within safe ||| 1 0.369196 8.48644e-07 3.62083e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| live within ||| 0.0192308 0.369196 8.48644e-07 1.11754e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| lived during ||| 0.25 0.226251 8.48644e-07 3.1226e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| lived in an area ||| 1 0.605812 8.48644e-07 9.20586e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lived in an ||| 0.333333 0.605812 8.48644e-07 2.21668e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| lived in ||| 0.0495868 0.605812 5.09187e-06 4.98724e-06 2.718 ||| 0-1 ||| 121 1.17835e+06 +en ||| lived on this earth ||| 1 0.22993 8.48644e-07 8.34534e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lived on this ||| 0.5 0.22993 8.48644e-07 5.79538e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| lived on ||| 0.166667 0.22993 8.48644e-07 8.96923e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| lives in ||| 0.0220126 0.605812 5.94051e-06 2.37817e-05 2.718 ||| 0-1 ||| 318 1.17835e+06 +en ||| lives of ||| 0.00115473 0.0116562 8.48644e-07 7.02305e-07 2.718 ||| 0-1 ||| 866 1.17835e+06 +en ||| lives on ||| 0.0133333 0.22993 8.48644e-07 4.27699e-06 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| living in Community countries ||| 0.333333 0.605812 8.48644e-07 2.37885e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| living in Community ||| 0.333333 0.605812 8.48644e-07 6.26509e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| living in the open in ||| 0.25 0.605812 8.48644e-07 8.19711e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| living in times of ||| 0.5 0.605812 8.48644e-07 2.13529e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| living in times ||| 0.333333 0.605812 8.48644e-07 3.92777e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| living in what ||| 0.5 0.605812 8.48644e-07 5.42961e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| living in ||| 0.021608 0.605812 3.64917e-05 3.86973e-05 2.718 ||| 0-1 ||| 1990 1.17835e+06 +en ||| living on ||| 0.00636943 0.22993 8.48644e-07 6.95946e-06 2.718 ||| 0-1 ||| 157 1.17835e+06 +en ||| living through ||| 0.0208333 0.0366102 8.48644e-07 7.88055e-08 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| living under the illusion ||| 1 0.205566 8.48644e-07 1.57091e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| living under the ||| 0.0769231 0.205566 8.48644e-07 2.90908e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| living under ||| 0.0196078 0.205566 8.48644e-07 4.73855e-07 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| living with ||| 0.0127389 0.0535436 1.69729e-06 9.77016e-07 2.718 ||| 0-1 ||| 157 1.17835e+06 +en ||| loaded onto ||| 0.0666667 0.233333 8.48644e-07 1.4007e-10 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| loading equipment at ||| 1 0.321886 8.48644e-07 9.66048e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| local fishermen in ||| 0.166667 0.605812 8.48644e-07 1.10906e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| locally in ||| 0.0625 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| locally ||| 0.00263852 0.026087 8.48644e-07 1.22e-05 2.718 ||| 0-0 ||| 379 1.17835e+06 +en ||| located at ||| 0.0243902 0.321886 8.48644e-07 9.9205e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| located exclusively within ||| 0.166667 0.369196 8.48644e-07 3.65684e-12 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| located in ||| 0.0459016 0.605812 1.1881e-05 1.14522e-05 2.718 ||| 0-1 ||| 305 1.17835e+06 +en ||| located on ||| 0.0487805 0.22993 1.69729e-06 2.0596e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| location since then ||| 0.5 0.013351 8.48644e-07 5.23565e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| locations in ||| 0.0526316 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| locked away in ||| 0.4 0.605812 1.69729e-06 1.11638e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| locked in an enclave with ||| 1 0.0535436 8.48644e-07 9.27281e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| locked into ||| 0.153846 0.525896 1.69729e-06 1.68243e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| lodged in ||| 0.0666667 0.605812 1.69729e-06 1.66241e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| lodged with ||| 0.0526316 0.0535436 8.48644e-07 4.1972e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| logical to ||| 0.0126582 0.0247351 8.48644e-07 2.13623e-07 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| lone voice in ||| 0.333333 0.605812 8.48644e-07 1.40612e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| long . ||| 0.00277778 6.3e-05 8.48644e-07 2.74023e-08 2.718 ||| 0-1 ||| 360 1.17835e+06 +en ||| long ago as in ||| 1 0.605812 8.48644e-07 1.75514e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| long ago as the year ||| 1 0.066968 8.48644e-07 1.02583e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| long ago as the ||| 0.142857 0.066968 8.48644e-07 4.1132e-11 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| long ago as ||| 0.129032 0.066968 1.01837e-05 6.69992e-10 2.718 ||| 0-2 ||| 93 1.17835e+06 +en ||| long as at ||| 0.5 0.321886 8.48644e-07 1.38093e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| long as we engage in ||| 0.5 0.605812 8.48644e-07 8.7952e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| long as ||| 0.011378 0.066968 7.6378e-06 6.08531e-06 2.718 ||| 0-1 ||| 791 1.17835e+06 +en ||| long been in ||| 0.142857 0.605812 8.48644e-07 5.21652e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| long for ||| 0.0135135 0.0286209 8.48644e-07 3.89221e-06 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| long in ||| 0.0465116 0.605812 1.69729e-06 0.000156221 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| long last on ||| 0.333333 0.22993 8.48644e-07 6.13601e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| long on ||| 0.0625 0.22993 8.48644e-07 2.80953e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| long periods in ||| 0.333333 0.605812 8.48644e-07 2.31206e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| long there should be ||| 1 0.0117359 8.48644e-07 3.04644e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| long there should ||| 1 0.0117359 8.48644e-07 1.68099e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| long there ||| 1 0.0117359 8.48644e-07 3.7937e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| long time coming in ||| 1 0.605812 8.48644e-07 4.98316e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| long time in ||| 0.133333 0.605812 1.69729e-06 2.56467e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| long time to ||| 0.172414 0.0247351 4.24322e-06 1.5611e-08 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| long to ||| 0.0204082 0.0247351 1.69729e-06 9.50904e-06 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| long way away on ||| 1 0.22993 8.48644e-07 1.92648e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| long way even from ||| 0.166667 0.0308834 8.48644e-07 1.68848e-12 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| long way in ||| 0.025 0.605812 8.48644e-07 3.36749e-07 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| long way into ||| 0.333333 0.525896 8.48644e-07 1.61434e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| long way to go in ||| 0.0714286 0.605812 8.48644e-07 1.74989e-11 2.718 ||| 0-4 ||| 14 1.17835e+06 +en ||| long way towards ||| 0.02 0.0616136 8.48644e-07 7.26468e-10 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| long-term basis in ||| 0.166667 0.605812 8.48644e-07 7.01966e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| long-term institutionalisation in ||| 1 0.605812 8.48644e-07 1.30038e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| longer be guaranteed places in ||| 1 0.605812 8.48644e-07 2.93019e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| longer concerned with imposing ||| 0.333333 0.0535436 8.48644e-07 5.55602e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| longer concerned with ||| 0.333333 0.0535436 8.48644e-07 3.51647e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| longer cultivated in ||| 0.5 0.605812 8.48644e-07 5.02187e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| longer exist in ||| 0.5 0.605812 8.48644e-07 7.97438e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| longer have an overall ||| 0.333333 0.135441 8.48644e-07 6.33407e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| longer in a ||| 0.142857 0.605812 8.48644e-07 3.8379e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| longer in tune with ||| 0.5 0.605812 8.48644e-07 1.65545e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| longer in tune ||| 0.5 0.605812 8.48644e-07 2.58886e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| longer in ||| 0.0655738 0.605812 3.39458e-06 8.6584e-05 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| longer on ||| 0.117647 0.22993 1.69729e-06 1.55716e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| longer pays any heed ||| 0.5 0.0883838 8.48644e-07 5.80345e-17 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| longer pulling the wool over ||| 1 0.157937 8.48644e-07 5.35993e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| longer voting in ||| 1 0.605812 8.48644e-07 3.36812e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| look , in ||| 0.166667 0.605812 8.48644e-07 1.60528e-05 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| look after ||| 0.00303951 0.0144723 8.48644e-07 7.73641e-08 2.718 ||| 0-1 ||| 329 1.17835e+06 +en ||| look around for potential scapegoats ||| 1 0.159384 8.48644e-07 5.32639e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| look around for potential ||| 1 0.159384 8.48644e-07 1.3316e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| look around for ||| 0.333333 0.159384 8.48644e-07 2.58562e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| look around ||| 0.027027 0.159384 8.48644e-07 3.3642e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| look as ||| 0.0434783 0.066968 8.48644e-07 5.24347e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| look at - is ||| 1 0.321886 8.48644e-07 1.37853e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| look at - ||| 0.5 0.321886 8.48644e-07 4.39849e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| look at a ||| 0.0217391 0.321886 8.48644e-07 5.16865e-07 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| look at all ||| 0.0169492 0.321886 8.48644e-07 5.51009e-08 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| look at cheaper ||| 0.2 0.321886 8.48644e-07 4.66423e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| look at it from this ||| 1 0.0308834 8.48644e-07 5.33686e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| look at it from ||| 0.0555556 0.0308834 8.48644e-07 8.2596e-11 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| look at it ||| 0.00724638 0.321886 8.48644e-07 2.07362e-07 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| look at matters from ||| 1 0.321886 8.48644e-07 3.47397e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| look at matters ||| 0.5 0.321886 8.48644e-07 2.15721e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| look at that , if you do ||| 0.5 0.321886 8.48644e-07 2.16797e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| look at that , if you ||| 0.5 0.321886 8.48644e-07 6.31087e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| look at that , if ||| 0.5 0.321886 8.48644e-07 1.95462e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| look at that , ||| 0.2 0.321886 8.48644e-07 2.33918e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| look at that ||| 0.0123457 0.321886 8.48644e-07 1.9615e-07 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| look at the ||| 0.000609756 0.321886 8.48644e-07 7.15864e-07 2.718 ||| 0-1 ||| 1640 1.17835e+06 +en ||| look at their own record ||| 0.333333 0.321886 8.48644e-07 1.27856e-15 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| look at their own ||| 0.0909091 0.321886 8.48644e-07 2.29133e-11 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| look at their ||| 0.0416667 0.321886 8.48644e-07 1.35158e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| look at them from ||| 0.333333 0.0308834 8.48644e-07 1.24587e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| look at them on ||| 0.333333 0.22993 8.48644e-07 2.71918e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| look at things in ||| 0.5 0.605812 8.48644e-07 2.31665e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| look at two possibilities ||| 1 0.321886 8.48644e-07 3.96945e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| look at two ||| 0.5 0.321886 8.48644e-07 2.75656e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| look at ||| 0.0134875 0.321886 4.75241e-05 1.16606e-05 2.718 ||| 0-1 ||| 4152 1.17835e+06 +en ||| look back at ||| 0.05 0.321886 8.48644e-07 7.84291e-09 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| look in ||| 0.111111 0.605812 6.78915e-06 0.000134609 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| look into ||| 0.00966184 0.525896 5.09187e-06 6.45302e-06 2.718 ||| 0-1 ||| 621 1.17835e+06 +en ||| look like in ||| 0.545455 0.605812 5.09187e-06 2.39052e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| look on ||| 0.037037 0.22993 1.69729e-06 2.42086e-05 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| look one day in ||| 1 0.605812 8.48644e-07 1.43741e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| look particularly at ||| 0.25 0.321886 8.48644e-07 2.08141e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| look round ||| 0.0769231 0.0142196 8.48644e-07 8.54095e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| look to ||| 0.00797872 0.0247351 2.54593e-06 8.19357e-06 2.718 ||| 0-1 ||| 376 1.17835e+06 +en ||| look towards ||| 0.0204082 0.0616136 8.48644e-07 2.90392e-07 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| look very critically at Belarus ||| 1 0.321886 8.48644e-07 1.20705e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| look very critically at ||| 0.2 0.321886 8.48644e-07 1.01432e-13 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| looked at in ||| 0.0714286 0.605812 2.54593e-06 8.97219e-08 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| looked at ways ||| 0.25 0.321886 8.48644e-07 1.78927e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| looked at ||| 0.0190114 0.321886 8.48644e-06 1.85609e-06 2.718 ||| 0-1 ||| 526 1.17835e+06 +en ||| looked cool on ||| 0.333333 0.22993 8.48644e-07 1.2331e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| looked deeply into ||| 1 0.525896 8.48644e-07 2.40358e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| looked directly into ||| 1 0.525896 8.48644e-07 3.88271e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| looked forward to ||| 0.0666667 0.0247351 8.48644e-07 7.25671e-10 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| looked into in ||| 0.25 0.565854 8.48644e-07 4.74328e-07 2.718 ||| 0-1 0-2 ||| 4 1.17835e+06 +en ||| looked into ||| 0.00584795 0.525896 8.48644e-07 1.02717e-06 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| looked on ||| 0.0285714 0.22993 8.48644e-07 3.85345e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| looked upon ||| 0.05 0.114601 8.48644e-07 4.1013e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| looking ahead to ||| 0.0151515 0.0247351 8.48644e-07 3.24151e-10 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| looking at the big ||| 0.5 0.0818664 8.48644e-07 1.25939e-15 2.718 ||| 0-0 0-1 0-2 0-3 ||| 2 1.17835e+06 +en ||| looking at the matter from ||| 0.2 0.0308834 8.48644e-07 1.07373e-13 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| looking at them as a ||| 0.5 0.066968 8.48644e-07 9.47525e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| looking at them as ||| 0.5 0.066968 8.48644e-07 2.13764e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| looking at them from ||| 1 0.321886 8.48644e-07 1.8282e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| looking at them ||| 0.5 0.321886 8.48644e-07 1.13525e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| looking at ||| 0.0119284 0.321886 1.52756e-05 4.23221e-06 2.718 ||| 0-1 ||| 1509 1.17835e+06 +en ||| looking for the ||| 0.0263158 0.0286209 8.48644e-07 7.47292e-08 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| looking for ||| 0.00545455 0.0286209 2.54593e-06 1.21725e-06 2.718 ||| 0-1 ||| 550 1.17835e+06 +en ||| looking forward with ||| 0.2 0.0535436 8.48644e-07 6.86326e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| looking here at ||| 0.125 0.321886 8.48644e-07 8.58208e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| looking in greater ||| 0.5 0.605812 8.48644e-07 6.43439e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| looking in ||| 0.0909091 0.605812 1.69729e-06 4.88564e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| looking into ||| 0.00904977 0.525896 1.69729e-06 2.34213e-06 2.718 ||| 0-1 ||| 221 1.17835e+06 +en ||| looking to ||| 0.00858369 0.0144531 1.69729e-06 4.413e-07 2.718 ||| 0-0 0-1 ||| 233 1.17835e+06 +en ||| looking towards ||| 0.0243902 0.0616136 8.48644e-07 1.05398e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| looking ||| 0.00387382 0.0041712 5.94051e-06 1.57e-05 2.718 ||| 0-0 ||| 1807 1.17835e+06 +en ||| looks at ||| 0.01 0.321886 1.69729e-06 1.05205e-06 2.718 ||| 0-1 ||| 200 1.17835e+06 +en ||| loose in ||| 0.25 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| lorries in ||| 0.0526316 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| lorries weighing under 12 tonnes in Germany ||| 1 0.205566 8.48644e-07 1.02836e-29 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lorries weighing under 12 tonnes in ||| 1 0.205566 8.48644e-07 3.97049e-25 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lorries weighing under 12 tonnes ||| 1 0.205566 8.48644e-07 1.85498e-23 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lorries weighing under 12 ||| 1 0.205566 8.48644e-07 9.18307e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lorries weighing under ||| 1 0.205566 8.48644e-07 6.55934e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lorry in ||| 0.142857 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| lose all confidence in ||| 0.5 0.605812 8.48644e-07 2.23183e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| lose out ||| 0.00581395 0.0120599 8.48644e-07 1.82215e-08 2.718 ||| 0-1 ||| 172 1.17835e+06 +en ||| lose their places in ||| 0.5 0.605812 8.48644e-07 9.37218e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| losing out in ||| 0.2 0.605812 8.48644e-07 2.03413e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| loss in ||| 0.03125 0.605812 8.48644e-07 1.9441e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| loss of ||| 0.000529101 0.0116562 8.48644e-07 5.74118e-07 2.718 ||| 0-1 ||| 1890 1.17835e+06 +en ||| losses in ||| 0.0172414 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| losses when ||| 0.142857 0.142731 8.48644e-07 4.94124e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| losses ||| 0.000967118 0.0025407 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 2068 1.17835e+06 +en ||| lost at ||| 0.0357143 0.321886 8.48644e-07 2.27611e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| lost from ||| 0.1 0.0308834 8.48644e-07 2.1651e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| lost in ||| 0.0451613 0.605812 5.94051e-06 2.62753e-05 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| lost on ||| 0.0833333 0.22993 1.69729e-06 4.72545e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| lost to ||| 0.0232558 0.0247351 8.48644e-07 1.59936e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| lot in society ||| 1 0.605812 8.48644e-07 3.45444e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lot in ||| 0.133333 0.605812 3.39458e-06 5.96621e-05 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| lot of ||| 0.00162955 0.0116562 2.54593e-06 1.7619e-06 2.718 ||| 0-1 ||| 1841 1.17835e+06 +en ||| lot on ||| 0.0714286 0.22993 8.48644e-07 1.07299e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| lot to increase ||| 1 0.0247351 8.48644e-07 4.69202e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| lot to ||| 0.00943396 0.0247351 8.48644e-07 3.63159e-06 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| lot when ||| 1 0.142731 8.48644e-07 7.69166e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| loud in ||| 0.5 0.605812 8.48644e-07 4.80252e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| love for ||| 0.05 0.0286209 8.48644e-07 8.74395e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| love in ||| 0.2 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| low in ||| 0.0144928 0.605812 8.48644e-07 1.66241e-05 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| lower in ||| 0.037037 0.605812 8.48644e-07 1.18216e-05 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| lower than anticipated in ||| 1 0.605812 8.48644e-07 3.10589e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| lowered in ||| 0.111111 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| lowering in ||| 0.333333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| luck , whatever ||| 0.25 0.0182897 8.48644e-07 8.97654e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| luck across ||| 1 0.274879 8.48644e-07 1.99267e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| luck in ||| 0.03125 0.605812 1.69729e-06 4.47928e-06 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| lucky few who live comfortably , in ||| 1 0.605812 8.48644e-07 2.36024e-24 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| lucrative trade in them ||| 1 0.605812 8.48644e-07 1.94201e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lucrative trade in ||| 0.25 0.605812 8.48644e-07 7.2398e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| lump together under ||| 1 0.205566 8.48644e-07 6.11307e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| lurking in ||| 0.1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| lying around in ||| 0.5 0.605812 8.48644e-07 8.85733e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| lying at ||| 0.666667 0.321886 1.69729e-06 5.76029e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| lying for ||| 0.125 0.0286209 8.48644e-07 1.65675e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| lying in ||| 0.172414 0.605812 4.24322e-06 6.64965e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| lying on ||| 0.277778 0.22993 4.24322e-06 1.1959e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| lying to the ||| 0.142857 0.0247351 8.48644e-07 2.48489e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| lying to ||| 0.0833333 0.0247351 8.48644e-07 4.0476e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| machine , turning ||| 1 0.062605 8.48644e-07 7.01361e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| machine gun fire in ||| 0.5 0.605812 8.48644e-07 1.9284e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| made , in ||| 0.12 0.605812 2.54593e-06 0.00011536 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| made , with ||| 0.125 0.0535436 8.48644e-07 2.91257e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| made - in ||| 0.333333 0.605812 8.48644e-07 3.6489e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| made a few adjustments : in ||| 1 0.605812 8.48644e-07 1.01263e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| made a point of ||| 0.047619 0.0116562 8.48644e-07 1.10771e-09 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| made a ||| 0.000490918 0.0015231 8.48644e-07 1.72612e-06 2.718 ||| 0-1 ||| 2037 1.17835e+06 +en ||| made about ||| 0.0078125 0.0401564 8.48644e-07 6.00391e-06 2.718 ||| 0-1 ||| 128 1.17835e+06 +en ||| made after ||| 0.0212766 0.0144723 8.48644e-07 5.5596e-07 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| made arrangements to ||| 0.2 0.0247351 8.48644e-07 2.58489e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| made as regards ||| 0.0555556 0.0074471 8.48644e-07 2.02219e-09 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| made as ||| 0.0186916 0.066968 1.69729e-06 3.76811e-05 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| made at ||| 0.0856354 0.321886 2.6308e-05 8.37962e-05 2.718 ||| 0-1 ||| 362 1.17835e+06 +en ||| made available in ||| 0.0877193 0.605812 4.24322e-06 3.07711e-07 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| made before ||| 0.0163934 0.0175291 8.48644e-07 7.14117e-07 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| made by the ||| 0.000558659 0.0468744 8.48644e-07 1.09404e-06 2.718 ||| 0-1 ||| 1790 1.17835e+06 +en ||| made by ||| 0.00352467 0.0468744 1.1881e-05 1.78207e-05 2.718 ||| 0-1 ||| 3972 1.17835e+06 +en ||| made clear at ||| 0.333333 0.321886 1.69729e-06 2.78958e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| made clear in ||| 0.0851064 0.605812 3.39458e-06 3.22027e-07 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| made concerning ||| 0.0526316 0.0888235 1.69729e-06 2.53869e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| made conditional on that country ||| 1 0.22993 8.48644e-07 9.47906e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| made conditional on that ||| 1 0.22993 8.48644e-07 2.63381e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| made conditional on ||| 0.05 0.22993 8.48644e-07 1.56573e-09 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| made during ||| 0.0125786 0.226251 1.69729e-06 6.0567e-06 2.718 ||| 0-1 ||| 159 1.17835e+06 +en ||| made either in ||| 1 0.605812 8.48644e-07 8.37522e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| made for consumers ||| 1 0.0286209 8.48644e-07 9.01381e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| made for it in ||| 0.5 0.605812 8.48644e-07 1.32212e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| made for ||| 0.00550964 0.0286209 1.69729e-06 2.41011e-05 2.718 ||| 0-1 ||| 363 1.17835e+06 +en ||| made from ||| 0.00947867 0.0308834 1.69729e-06 7.97092e-06 2.718 ||| 0-1 ||| 211 1.17835e+06 +en ||| made have in ||| 0.5 0.605812 8.48644e-07 1.15692e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| made here in ||| 0.166667 0.605812 1.69729e-06 1.96157e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| made here today , ||| 0.166667 0.0398284 8.48644e-07 6.11131e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| made here today ||| 0.0434783 0.0398284 8.48644e-07 5.12459e-09 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| made here ||| 0.0122699 0.0855319 1.69729e-06 6.28461e-06 2.718 ||| 0-1 ||| 163 1.17835e+06 +en ||| made his declaration on ||| 1 0.22993 8.48644e-07 9.20091e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| made in building ||| 0.5 0.605812 8.48644e-07 5.63959e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| made in our ||| 0.037037 0.605812 8.48644e-07 1.33435e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| made in terms of ||| 0.0434783 0.605812 1.69729e-06 5.7721e-08 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| made in terms ||| 0.0408163 0.605812 1.69729e-06 1.06175e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| made in the process in ||| 1 0.605812 8.48644e-07 5.43413e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| made in the ||| 0.00495663 0.605812 3.39458e-06 5.93867e-05 2.718 ||| 0-1 ||| 807 1.17835e+06 +en ||| made in ||| 0.0876387 0.605812 0.00019434 0.000967339 2.718 ||| 0-1 ||| 2613 1.17835e+06 +en ||| made into functional tyres ||| 0.5 0.525896 8.48644e-07 2.19345e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| made into functional ||| 0.5 0.525896 8.48644e-07 1.99405e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| made into ||| 0.0294118 0.525896 8.48644e-07 4.63732e-05 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| made is for ||| 0.5 0.0286209 8.48644e-07 7.55355e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| made it at ||| 1 0.321886 8.48644e-07 1.49016e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| made it clear on ||| 0.2 0.22993 8.48644e-07 1.02991e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| made it possible for ||| 0.0120482 0.0286209 8.48644e-07 3.43776e-10 2.718 ||| 0-3 ||| 83 1.17835e+06 +en ||| made it seem as ||| 1 0.066968 8.48644e-07 6.12462e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| made it substantially ||| 1 0.0080472 8.48644e-07 5.60393e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| made it ||| 0.00164204 0.0080472 1.69729e-06 5.77725e-06 2.718 ||| 0-1 ||| 1218 1.17835e+06 +en ||| made known and appears in ||| 1 0.605812 8.48644e-07 6.96379e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| made liable for ||| 0.166667 0.0286209 8.48644e-07 4.07308e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| made of ||| 0.00652174 0.0116562 2.54593e-06 2.85668e-05 2.718 ||| 0-1 ||| 460 1.17835e+06 +en ||| made on the national ||| 1 0.22993 8.48644e-07 1.37242e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| made on the ||| 0.0102564 0.22993 1.69729e-06 1.06803e-05 2.718 ||| 0-1 ||| 195 1.17835e+06 +en ||| made on this subject ||| 0.111111 0.22993 8.48644e-07 6.06783e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| made on this ||| 0.02 0.22993 8.48644e-07 1.12409e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| made on ||| 0.0770416 0.22993 4.24322e-05 0.00017397 2.718 ||| 0-1 ||| 649 1.17835e+06 +en ||| made out in ||| 0.5 0.605812 8.48644e-07 3.7053e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| made over ||| 0.0235294 0.157937 1.69729e-06 8.39428e-06 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| made part ||| 0.0909091 0.0033766 8.48644e-07 1.43541e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| made plain in ||| 0.5 0.605812 8.48644e-07 1.43166e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| made promises at ||| 1 0.321886 8.48644e-07 6.36851e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| made provision if ||| 0.25 0.0178573 8.48644e-07 2.88556e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| made redundant by ||| 0.05 0.0468744 8.48644e-07 1.40783e-10 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| made regarding ||| 0.047619 0.140669 1.69729e-06 3.96546e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| made something ||| 1 0.0033766 8.48644e-07 6.66414e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| made the ||| 0.00139665 0.0033766 8.48644e-07 7.39157e-06 2.718 ||| 0-0 ||| 716 1.17835e+06 +en ||| made to foot its share of ||| 1 0.0116562 8.48644e-07 7.54854e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| made to work in ||| 1 0.605812 8.48644e-07 5.44102e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| made to ||| 0.0184275 0.0247351 2.54593e-05 5.88813e-05 2.718 ||| 0-1 ||| 1628 1.17835e+06 +en ||| made towards meeting ||| 0.5 0.0616136 8.48644e-07 2.62107e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| made towards ||| 0.00746269 0.0616136 8.48644e-07 2.08684e-06 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| made under ||| 0.0169492 0.205566 8.48644e-07 1.18453e-05 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| made up by Parliament anyway ||| 1 0.0468744 8.48644e-07 1.24195e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| made up by Parliament ||| 1 0.0468744 8.48644e-07 3.48862e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| made up by ||| 0.111111 0.0468744 8.48644e-07 6.07774e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| made up in ||| 0.333333 0.605812 8.48644e-07 3.29911e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| made up of ||| 0.00835073 0.0116562 3.39458e-06 9.7427e-08 2.718 ||| 0-2 ||| 479 1.17835e+06 +en ||| made up ||| 0.00182815 0.0147069 8.48644e-07 1.44541e-06 2.718 ||| 0-1 ||| 547 1.17835e+06 +en ||| made upon them , ||| 0.25 0.114601 8.48644e-07 5.92304e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| made upon them ||| 0.25 0.114601 8.48644e-07 4.96671e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| made upon ||| 0.0526316 0.114601 8.48644e-07 1.85159e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| made very forcefully by ||| 0.5 0.0468744 8.48644e-07 3.34838e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| made when ||| 0.0461538 0.142731 2.54593e-06 1.2471e-05 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| made with a ||| 0.125 0.0535436 8.48644e-07 1.08257e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| made with regard ||| 0.0204082 0.0535436 8.48644e-07 1.66297e-08 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| made with ||| 0.0505415 0.0535436 1.1881e-05 2.44231e-05 2.718 ||| 0-1 ||| 277 1.17835e+06 +en ||| made within ||| 0.0857143 0.369196 5.09187e-06 2.32244e-05 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| made ||| 0.00157893 0.0033766 3.98863e-05 0.0001204 2.718 ||| 0-0 ||| 29767 1.17835e+06 +en ||| mafia groups operating within ||| 1 0.369196 8.48644e-07 4.62382e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| maiden speech in ||| 0.0588235 0.605812 8.48644e-07 1.45461e-11 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| mail in ||| 0.333333 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| main body of the ||| 0.05 0.0116562 8.48644e-07 7.14493e-12 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| main body of ||| 0.0625 0.0116562 8.48644e-07 1.16383e-10 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| main concern through ||| 1 0.0366102 8.48644e-07 1.25167e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| main contexts in ||| 1 0.605812 8.48644e-07 2.6703e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| main outstanding obstacles to ||| 0.5 0.0247351 8.48644e-07 2.83771e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| main reasons for ||| 0.0117647 0.0286209 8.48644e-07 1.15969e-10 2.718 ||| 0-2 ||| 85 1.17835e+06 +en ||| main ||| 8.31947e-05 0.0004146 8.48644e-07 3.4e-06 2.718 ||| 0-0 ||| 12020 1.17835e+06 +en ||| mainly at ||| 0.02 0.321886 8.48644e-07 1.87209e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| mainly because , in ||| 1 0.605812 8.48644e-07 8.46886e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| mainly by a ||| 0.2 0.0468744 8.48644e-07 1.76475e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| mainly by ||| 0.00757576 0.0468744 8.48644e-07 3.98132e-07 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| mainly in ||| 0.016129 0.605812 3.39458e-06 2.16114e-05 2.718 ||| 0-1 ||| 248 1.17835e+06 +en ||| mainly living in ||| 0.25 0.605812 8.48644e-07 1.81103e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| mainly on ||| 0.0128205 0.22993 2.54593e-06 3.88667e-06 2.718 ||| 0-1 ||| 234 1.17835e+06 +en ||| mainly ||| 0.000223015 0.0031062 8.48644e-07 1.09e-05 2.718 ||| 0-0 ||| 4484 1.17835e+06 +en ||| mainstream of ||| 0.0555556 0.0116562 8.48644e-07 4.90932e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| maintained , in ||| 0.5 0.605812 8.48644e-07 1.94396e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| maintained by ||| 0.0185185 0.0468744 8.48644e-07 3.00301e-07 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| maintained in ||| 0.0434783 0.605812 3.39458e-06 1.63009e-05 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| maintained when ||| 0.166667 0.142731 8.48644e-07 2.10151e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| maintaining the ||| 0.0015748 0.0011669 8.48644e-07 5.15646e-08 2.718 ||| 0-1 ||| 635 1.17835e+06 +en ||| maintaining ||| 0.00103306 0.0018142 2.54593e-06 3.4e-06 2.718 ||| 0-0 ||| 2904 1.17835e+06 +en ||| maize to ||| 0.5 0.0247351 8.48644e-07 1.96758e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| major degree in ||| 1 0.605812 8.48644e-07 6.19101e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| major importance , and in ||| 1 0.605812 8.48644e-07 8.67371e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| major increase in ||| 0.1 0.605812 8.48644e-07 5.77529e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| major investors in ||| 0.333333 0.605812 8.48644e-07 2.59262e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| major part in ||| 0.0277778 0.605812 8.48644e-07 5.32918e-08 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| major problem in relation ||| 0.333333 0.605812 8.48644e-07 2.44592e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| major problem in ||| 0.0222222 0.605812 8.48644e-07 1.00531e-08 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| major problems are caused by ||| 1 0.0468744 8.48644e-07 1.42357e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| major support take ||| 1 0.0074151 8.48644e-07 9.68387e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| major ||| 0.000128766 0.0003198 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 15532 1.17835e+06 +en ||| majority , but very many places in ||| 1 0.605812 8.48644e-07 9.58381e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| majority in ||| 0.00280899 0.605812 2.54593e-06 1.86098e-05 2.718 ||| 0-1 ||| 1068 1.17835e+06 +en ||| majority of ||| 0.000421674 0.0116562 1.69729e-06 5.49571e-07 2.718 ||| 0-1 ||| 4743 1.17835e+06 +en ||| make a difference in ||| 0.0555556 0.605812 8.48644e-07 9.3551e-10 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| make a difference of ||| 0.25 0.0116562 8.48644e-07 2.76268e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| make a serious attempt to ||| 0.333333 0.0247351 8.48644e-07 2.08272e-14 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| make a start on ||| 0.0217391 0.22993 8.48644e-07 8.88566e-10 2.718 ||| 0-3 ||| 46 1.17835e+06 +en ||| make a ||| 0.0010068 0.0015231 3.39458e-06 1.43195e-06 2.718 ||| 0-1 ||| 3973 1.17835e+06 +en ||| make all ||| 0.0121951 0.0006885 8.48644e-07 1.26512e-07 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| make back in ||| 1 0.605812 8.48644e-07 5.3975e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| make during ||| 0.5 0.226251 8.48644e-07 5.0245e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| make good legislation on ||| 1 0.22993 8.48644e-07 6.01006e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| make in line ||| 1 0.605812 8.48644e-07 2.36251e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| make in respect ||| 0.5 0.605812 8.48644e-07 3.47154e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| make in this connection ||| 0.5 0.605812 8.48644e-07 7.91256e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| make in this ||| 0.037037 0.605812 8.48644e-07 5.18516e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| make in ||| 0.133803 0.605812 1.61242e-05 0.000802483 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| make is , in ||| 1 0.605812 8.48644e-07 2.99934e-06 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| make is about ||| 0.2 0.0401564 8.48644e-07 1.56101e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| make it clear ||| 0.000826446 0.0080472 8.48644e-07 1.59548e-09 2.718 ||| 0-1 ||| 1210 1.17835e+06 +en ||| make it difficult for ||| 0.05 0.0286209 8.48644e-07 4.41596e-11 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| make it in ||| 0.125 0.605812 8.48644e-07 1.42707e-05 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| make it possible to ||| 0.0031348 0.0080472 8.48644e-07 3.41589e-10 2.718 ||| 0-1 ||| 319 1.17835e+06 +en ||| make it possible ||| 0.00181818 0.0080472 8.48644e-07 3.84421e-09 2.718 ||| 0-1 ||| 550 1.17835e+06 +en ||| make it ||| 0.0017192 0.0080472 5.09187e-06 4.79268e-06 2.718 ||| 0-1 ||| 3490 1.17835e+06 +en ||| make its presence felt in ||| 0.166667 0.605812 8.48644e-07 2.51777e-15 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| make more ||| 0.00662252 0.0042952 8.48644e-07 5.78166e-07 2.718 ||| 0-1 ||| 151 1.17835e+06 +en ||| make on ||| 0.117647 0.22993 8.48644e-06 0.000144322 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| make one out at ||| 1 0.321886 8.48644e-07 1.10982e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| make our assessment in ||| 0.5 0.605812 8.48644e-07 4.81521e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| make over ||| 0.666667 0.157937 1.69729e-06 6.96371e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| make payments into ||| 0.333333 0.525896 8.48644e-07 1.27336e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| make progress in ||| 0.00303951 0.605812 8.48644e-07 1.05687e-07 2.718 ||| 0-2 ||| 329 1.17835e+06 +en ||| make regarding ||| 0.25 0.140669 8.48644e-07 3.28966e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| make some gains in terms ||| 0.5 0.605812 8.48644e-07 8.25137e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| make some gains in ||| 0.5 0.605812 8.48644e-07 7.51765e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| make sure they are taken into ||| 1 0.525896 8.48644e-07 3.02512e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| make the effort to ||| 0.0454545 0.0247351 8.48644e-07 2.65392e-10 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| make the ||| 0.000995025 0.0011669 2.54593e-06 4.97828e-06 2.718 ||| 0-1 ||| 3015 1.17835e+06 +en ||| make them at ||| 1 0.321886 8.48644e-07 1.86468e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| make them into ||| 0.166667 0.525896 8.48644e-07 1.03192e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| make themselves acceptable to ||| 0.333333 0.0247351 8.48644e-07 6.80056e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| make this a reality in ||| 1 0.605812 8.48644e-07 1.53761e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| make this available in ||| 1 0.605812 8.48644e-07 1.6494e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| make this fundamental objective ||| 1 0.0013296 8.48644e-07 2.73395e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| make this fundamental ||| 1 0.0013296 8.48644e-07 4.08663e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| make this ||| 0.00117509 0.0013296 8.48644e-07 8.28931e-07 2.718 ||| 0-1 ||| 851 1.17835e+06 +en ||| make to the ||| 0.0116279 0.0247351 8.48644e-07 2.99878e-06 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| make to ||| 0.0230769 0.0247351 5.09187e-06 4.88466e-05 2.718 ||| 0-1 ||| 260 1.17835e+06 +en ||| make towards ||| 0.0625 0.0616136 8.48644e-07 1.7312e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| make up the ships ' ||| 1 0.0011669 8.48644e-07 9.4477e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| make up the ships ||| 1 0.0011669 8.48644e-07 2.7505e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| make up the ||| 0.00492611 0.0011669 8.48644e-07 1.69784e-08 2.718 ||| 0-2 ||| 203 1.17835e+06 +en ||| make up ||| 0.00306279 0.0147069 1.69729e-06 1.19908e-06 2.718 ||| 0-1 ||| 653 1.17835e+06 +en ||| make use of ||| 0.00280505 0.0116562 1.69729e-06 1.15222e-08 2.718 ||| 0-2 ||| 713 1.17835e+06 +en ||| make when ||| 0.1 0.142731 8.48644e-07 1.03456e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| make ||| 0.000142167 0.0001342 3.39458e-06 5.4e-06 2.718 ||| 0-0 ||| 28136 1.17835e+06 +en ||| makes a point of ||| 0.166667 0.0116562 8.48644e-07 8.98416e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| makes against real ||| 0.142857 0.153982 8.48644e-07 1.77243e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| makes against ||| 0.0909091 0.153982 8.48644e-07 9.85233e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| makes in ||| 0.0625 0.605812 8.48644e-07 7.84566e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| makes it ||| 0.00084317 0.0080472 8.48644e-07 4.68567e-07 2.718 ||| 0-1 ||| 1186 1.17835e+06 +en ||| makes no mention of them ||| 0.333333 0.0116562 8.48644e-07 4.70224e-16 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| makes no mention of ||| 0.025 0.0116562 8.48644e-07 1.753e-13 2.718 ||| 0-3 ||| 40 1.17835e+06 +en ||| makes on as ||| 1 0.148449 8.48644e-07 2.53808e-07 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| makes provision for ||| 0.00704225 0.0286209 8.48644e-07 2.32222e-10 2.718 ||| 0-2 ||| 142 1.17835e+06 +en ||| makes to ||| 0.0588235 0.0247351 1.69729e-06 4.7756e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| makes ||| 0.000320821 0.0005277 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 6234 1.17835e+06 +en ||| making a ||| 0.00111982 0.0062242 8.48644e-07 3.40865e-06 2.718 ||| 0-0 ||| 893 1.17835e+06 +en ||| making any ||| 0.00833333 0.0062242 8.48644e-07 1.16288e-07 2.718 ||| 0-0 ||| 120 1.17835e+06 +en ||| making at ||| 0.0666667 0.321886 1.69729e-06 1.53888e-05 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| making available ||| 0.0166667 0.0062242 8.48644e-07 2.44619e-08 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| making in ||| 0.0545455 0.605812 5.09187e-06 0.000177647 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| making it easier ||| 0.00813008 0.0080472 8.48644e-07 7.40553e-11 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| making it ||| 0.00321543 0.0080472 2.54593e-06 1.06096e-06 2.718 ||| 0-1 ||| 933 1.17835e+06 +en ||| making my intervention ||| 1 0.002535 8.48644e-07 1.44797e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| making my ||| 0.0833333 0.002535 8.48644e-07 5.44351e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| making of ||| 0.015625 0.0116562 8.48644e-07 5.24615e-06 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| making on ||| 0.0357143 0.22993 8.48644e-07 3.19487e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| making purchases in ||| 0.25 0.605812 8.48644e-07 2.48706e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| making some ||| 0.027027 0.0009939 8.48644e-07 1.46571e-08 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| making their presence felt in ||| 1 0.605812 8.48644e-07 4.53457e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| making them part of ||| 0.5 0.0116562 8.48644e-07 1.6777e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| making things easier for ||| 0.25 0.0286209 8.48644e-07 1.26974e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| making this ||| 0.00352113 0.0013296 8.48644e-07 1.83502e-07 2.718 ||| 0-1 ||| 284 1.17835e+06 +en ||| making to ||| 0.0113636 0.0247351 8.48644e-07 1.08133e-05 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| making under ||| 1 0.205566 8.48644e-07 2.17532e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| making within ||| 0.25 0.369196 8.48644e-07 4.26505e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| making ||| 0.00253142 0.0062242 2.46107e-05 7.69e-05 2.718 ||| 0-0 ||| 11456 1.17835e+06 +en ||| maladministration in ||| 0.0384615 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| male domination in industry , such as ||| 1 0.605812 8.48644e-07 2.79213e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| male domination in industry , such ||| 1 0.605812 8.48644e-07 2.7362e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| male domination in industry , ||| 1 0.605812 8.48644e-07 1.32254e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| male domination in industry ||| 1 0.605812 8.48644e-07 1.109e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| male domination in ||| 1 0.605812 8.48644e-07 8.39518e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| man at ||| 0.142857 0.321886 8.48644e-07 2.54813e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| man get in the way once ||| 1 0.605812 8.48644e-07 6.96418e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| man get in the way ||| 1 0.605812 8.48644e-07 1.7019e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| man get in the ||| 1 0.605812 8.48644e-07 7.89525e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| man get in ||| 1 0.605812 8.48644e-07 1.28604e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| man in the street ||| 0.0222222 0.605812 8.48644e-07 2.52821e-11 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| man in the ||| 0.0454545 0.605812 1.69729e-06 1.80587e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| man in ||| 0.0273973 0.605812 1.69729e-06 2.94155e-05 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| man out in ||| 1 0.605812 8.48644e-07 1.12673e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| manage on ||| 0.0714286 0.22993 8.48644e-07 3.70396e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| manage to continue ||| 0.333333 0.0247351 8.48644e-07 2.9009e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| manage to ||| 0.00826446 0.0247351 2.54593e-06 1.25363e-06 2.718 ||| 0-1 ||| 363 1.17835e+06 +en ||| managed , as ||| 0.5 0.066968 8.48644e-07 1.20342e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| managed by the ||| 0.0075188 0.0468744 8.48644e-07 2.92991e-08 2.718 ||| 0-1 ||| 133 1.17835e+06 +en ||| managed by ||| 0.00384615 0.0468744 8.48644e-07 4.77248e-07 2.718 ||| 0-1 ||| 260 1.17835e+06 +en ||| managed from ||| 0.25 0.0308834 8.48644e-07 2.13466e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| managed in separate ||| 1 0.605812 8.48644e-07 9.32613e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| managed in ||| 0.0428571 0.605812 2.54593e-06 2.59059e-05 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| managed to achieve in ||| 0.333333 0.605812 1.69729e-06 5.25996e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| managed to achieve something in ||| 1 0.605812 8.48644e-07 2.91139e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| managed to achieve ||| 0.00813008 0.0247351 8.48644e-07 3.60316e-10 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| managed to ||| 0.00192061 0.0247351 2.54593e-06 1.57688e-06 2.718 ||| 0-1 ||| 1562 1.17835e+06 +en ||| management in ||| 0.016129 0.605812 8.48644e-07 2.02722e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| manages to ||| 0.0227273 0.0247351 1.69729e-06 1.0119e-07 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| mandate , in ||| 0.5 0.605812 8.48644e-07 1.22805e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| mandate from any ||| 0.333333 0.0308834 8.48644e-07 1.28316e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| mandate from ||| 0.0125 0.0308834 8.48644e-07 8.48537e-08 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| mandate into ||| 0.0909091 0.525896 8.48644e-07 4.93662e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| mandate that I received , ||| 1 0.0060084 8.48644e-07 9.73967e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| mandate that I received ||| 0.5 0.0060084 8.48644e-07 8.16711e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| mandate that I ||| 0.333333 0.0060084 8.48644e-07 9.11508e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| mandatory ! in ||| 1 0.605812 8.48644e-07 1.14956e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| mandatory requirement on ||| 1 0.22993 8.48644e-07 1.88802e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| manifest itself in ||| 0.125 0.605812 8.48644e-07 6.89504e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| manifestations on ||| 1 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| manifested in ||| 0.0555556 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| manner in the ||| 0.125 0.605812 8.48644e-07 5.52817e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| manner in ||| 0.0410448 0.605812 9.33509e-06 9.00473e-05 2.718 ||| 0-1 ||| 268 1.17835e+06 +en ||| manner of ||| 0.00442478 0.0116562 8.48644e-07 2.65922e-06 2.718 ||| 0-1 ||| 226 1.17835e+06 +en ||| manning ||| 0.0357143 0.0217391 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| manoeuvre in ||| 0.015873 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| manufacture of ||| 0.0037594 0.0116562 8.48644e-07 1.17278e-07 2.718 ||| 0-1 ||| 266 1.17835e+06 +en ||| manufactured in other countries ||| 0.333333 0.605812 8.48644e-07 9.76748e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| manufactured in other ||| 0.333333 0.605812 8.48644e-07 2.57242e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| manufactured in such ||| 1 0.605812 8.48644e-07 4.10813e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| manufactured in ||| 0.0229885 0.605812 1.69729e-06 1.98566e-06 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| manufacturer to the ||| 0.0714286 0.0247351 8.48644e-07 5.52198e-09 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| manufacturer to ||| 0.0555556 0.0247351 8.48644e-07 8.99466e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| many , ||| 0.00595238 0.0006409 1.69729e-06 2.51627e-06 2.718 ||| 0-0 ||| 336 1.17835e+06 +en ||| many as ||| 0.0143885 0.066968 1.69729e-06 6.17525e-06 2.718 ||| 0-1 ||| 139 1.17835e+06 +en ||| many citizens in ||| 0.05 0.605812 8.48644e-07 1.72797e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| many economies in ||| 0.333333 0.605812 8.48644e-07 1.77553e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| many in ||| 0.00448431 0.605812 8.48644e-07 0.000158529 2.718 ||| 0-1 ||| 223 1.17835e+06 +en ||| many of ||| 0.000280034 0.0116562 1.69729e-06 4.68158e-06 2.718 ||| 0-1 ||| 7142 1.17835e+06 +en ||| many people at ||| 0.5 0.321886 8.48644e-07 1.20875e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| many places in ||| 0.0714286 0.605812 8.48644e-07 8.38621e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| many reasons in ||| 1 0.605812 8.48644e-07 1.60273e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| many times in ||| 0.00925926 0.605812 8.48644e-07 1.60907e-08 2.718 ||| 0-2 ||| 108 1.17835e+06 +en ||| many times over for ||| 0.5 0.093279 8.48644e-07 1.60648e-12 2.718 ||| 0-2 0-3 ||| 2 1.17835e+06 +en ||| many years in ||| 0.037037 0.605812 1.69729e-06 2.69817e-08 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| many ||| 0.000192312 0.0006409 7.6378e-06 2.11e-05 2.718 ||| 0-0 ||| 46799 1.17835e+06 +en ||| marching outside ||| 1 0.0045581 8.48644e-07 3.43e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| marginalised in ||| 0.0454545 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| margins when it ||| 0.5 0.142731 8.48644e-07 6.14039e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| margins when ||| 0.5 0.142731 8.48644e-07 3.45291e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| maritime sector ||| 0.00699301 0.0005875 8.48644e-07 2.5998e-10 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| maritime ||| 0.000398248 0.0005875 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 2511 1.17835e+06 +en ||| mark in ||| 0.0833333 0.605812 1.69729e-06 2.50747e-05 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| mark of a ||| 0.1 0.0023852 8.48644e-07 6.50627e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| mark of ||| 0.0123457 0.0023852 8.48644e-07 1.46783e-07 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| mark on ||| 0.0217391 0.22993 8.48644e-07 4.50953e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| mark over ||| 0.0666667 0.157937 8.48644e-07 2.17591e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| mark ||| 0.0031881 0.0023852 2.54593e-06 2.7e-06 2.718 ||| 0-0 ||| 941 1.17835e+06 +en ||| marked by ||| 0.0178571 0.0468744 5.09187e-06 2.66272e-07 2.718 ||| 0-1 ||| 336 1.17835e+06 +en ||| marked in ||| 0.0555556 0.605812 8.48644e-07 1.44537e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| marked on ||| 0.25 0.22993 1.69729e-06 2.59941e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| marked out ||| 0.0285714 0.0120599 8.48644e-07 1.72307e-08 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| market , in ||| 0.0384615 0.605812 8.48644e-07 1.24457e-05 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| market ? in ||| 1 0.605812 8.48644e-07 1.78356e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| market as ||| 0.00925926 0.066968 8.48644e-07 4.06527e-06 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| market at an earlier ||| 0.5 0.321886 8.48644e-07 2.80471e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| market at an ||| 0.5 0.321886 8.48644e-07 4.01821e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| market at ||| 0.0263158 0.321886 8.48644e-07 9.04045e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| market economy in ||| 0.0263158 0.605812 8.48644e-07 5.44772e-09 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| market expenditure in ||| 0.5 0.605812 8.48644e-07 3.15175e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| market first ||| 0.2 0.138055 8.48644e-07 1.38129e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| market forces in ||| 0.125 0.605812 8.48644e-07 5.52078e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| market from ||| 0.0263158 0.0308834 8.48644e-07 8.59953e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| market in energy , ||| 1 0.605812 8.48644e-07 1.10642e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| market in energy ||| 0.166667 0.605812 8.48644e-07 9.27783e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| market in ||| 0.00864198 0.605812 5.94051e-06 0.000104363 2.718 ||| 0-1 ||| 810 1.17835e+06 +en ||| market on ||| 0.0196078 0.22993 8.48644e-07 1.87689e-05 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| market within ||| 0.0952381 0.369196 1.69729e-06 2.50559e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| market-based ||| 0.00689655 0.168067 8.48644e-07 4.08e-05 2.718 ||| 0-0 ||| 145 1.17835e+06 +en ||| marketed to clients in a ||| 1 0.605812 8.48644e-07 4.40155e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| marketed to clients in ||| 1 0.605812 8.48644e-07 9.93e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| markets in ||| 0.00809717 0.605812 1.69729e-06 1.2976e-05 2.718 ||| 0-1 ||| 247 1.17835e+06 +en ||| markets on ||| 0.0454545 0.22993 8.48644e-07 2.33366e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| marking ||| 0.00271003 0.0088889 1.69729e-06 5.4e-06 2.718 ||| 0-0 ||| 738 1.17835e+06 +en ||| marks in ||| 0.125 0.605812 8.48644e-07 6.83436e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| marooned in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| marshalling yards in ||| 1 0.605812 8.48644e-07 2.58597e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| mass exodus ||| 0.0344828 0.0408393 8.48644e-07 5.194e-11 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| mass in ||| 0.125 0.605812 8.48644e-07 7.29614e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| mass ||| 0.00209908 0.0408393 4.24322e-06 7.42e-05 2.718 ||| 0-0 ||| 2382 1.17835e+06 +en ||| massacres in ||| 0.0263158 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| massive scale in ||| 1 0.605812 8.48644e-07 4.20152e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| massively in ||| 0.0454545 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| massively into ||| 0.333333 0.525896 8.48644e-07 3.09922e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| masters in ||| 0.142857 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| match the ||| 0.00671141 0.0011669 8.48644e-07 3.2944e-08 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| material in which to ||| 1 0.605812 8.48644e-07 9.79451e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| material in which ||| 0.5 0.605812 8.48644e-07 1.10226e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| material in ||| 0.0625 0.605812 1.69729e-06 1.2976e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| materially ||| 0.028169 0.0864198 1.69729e-06 4.8e-06 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| matter , in ||| 0.0666667 0.605812 2.54593e-06 5.71347e-05 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| matter again in ||| 0.25 0.605812 8.48644e-07 2.77062e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| matter at some ||| 1 0.321886 8.48644e-07 4.52082e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| matter at ||| 0.0862069 0.321886 8.48644e-06 4.15021e-05 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| matter by staying up ||| 1 0.0468744 8.48644e-07 2.49842e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| matter by staying ||| 1 0.0468744 8.48644e-07 7.32568e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| matter by ||| 0.0227273 0.0468744 8.48644e-07 8.82612e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| matter down into different areas of ||| 1 0.525896 8.48644e-07 4.39344e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| matter down into different areas ||| 1 0.525896 8.48644e-07 8.08153e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| matter down into different ||| 1 0.525896 8.48644e-07 3.53059e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| matter down into ||| 1 0.525896 8.48644e-07 1.60336e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| matter for the ||| 0.00211416 0.0286209 8.48644e-07 7.32812e-07 2.718 ||| 0-1 ||| 473 1.17835e+06 +en ||| matter for ||| 0.00413223 0.0286209 3.39458e-06 1.19366e-05 2.718 ||| 0-1 ||| 968 1.17835e+06 +en ||| matter from ||| 0.0740741 0.0308834 1.69729e-06 3.94779e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| matter has in ||| 1 0.605812 8.48644e-07 2.46616e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| matter here in ||| 0.2 0.605812 8.48644e-07 9.71515e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| matter in ||| 0.0254237 0.605812 1.01837e-05 0.000479098 2.718 ||| 0-1 ||| 472 1.17835e+06 +en ||| matter into ||| 0.117647 0.525896 1.69729e-06 2.29674e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| matter of a ||| 0.0181818 0.0116562 8.48644e-07 6.27139e-07 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| matter of course , at ||| 1 0.321886 8.48644e-07 3.39479e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| matter of course ||| 0.011236 0.0116562 8.48644e-07 1.7851e-08 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| matter of fact in ||| 1 0.605812 8.48644e-07 7.62956e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| matter of urgency , in anticipation ||| 1 0.605812 8.48644e-07 2.57431e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| matter of urgency , in ||| 0.333333 0.605812 8.48644e-07 8.04472e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| matter of urgency today ||| 0.333333 0.0116562 8.48644e-07 1.65376e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| matter of urgency ||| 0.00212314 0.0116562 8.48644e-07 3.66443e-10 2.718 ||| 0-1 ||| 471 1.17835e+06 +en ||| matter of ||| 0.00415648 0.0116562 1.4427e-05 1.41484e-05 2.718 ||| 0-1 ||| 4090 1.17835e+06 +en ||| matter on ||| 0.00775194 0.22993 8.48644e-07 8.61627e-05 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| matter up with ||| 0.0909091 0.0535436 8.48644e-07 4.12538e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| matter when ||| 0.037037 0.142731 8.48644e-07 6.17655e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| matter where ||| 0.0535714 0.247783 2.54593e-06 8.83597e-06 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| matter whether it is in ||| 1 0.605812 8.48644e-07 7.01469e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| matters above ||| 0.2 0.0146514 8.48644e-07 2.0387e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| matters as ||| 0.02 0.066968 8.48644e-07 3.32776e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| matters at the ||| 0.0909091 0.321886 8.48644e-07 4.54322e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| matters at ||| 0.0851064 0.321886 3.39458e-06 7.40037e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| matters by means of ||| 0.5 0.0468744 8.48644e-07 5.42186e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| matters by means ||| 0.25 0.0468744 8.48644e-07 9.97326e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| matters by ||| 0.0588235 0.0468744 8.48644e-07 1.57381e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| matters in such ||| 0.5 0.605812 8.48644e-07 1.76745e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| matters in ||| 0.0298507 0.605812 5.09187e-06 8.54295e-05 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| matters of ||| 0.000985222 0.0116562 8.48644e-07 2.52284e-06 2.718 ||| 0-1 ||| 1015 1.17835e+06 +en ||| matters on ||| 0.0135135 0.22993 8.48644e-07 1.5364e-05 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| matters properly discussed at ||| 1 0.321886 8.48644e-07 2.89447e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| matters should , in ||| 1 0.605812 8.48644e-07 4.51425e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| matters where ||| 0.0714286 0.247783 8.48644e-07 1.57557e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| matters ||| 0.000185563 0.0005586 1.69729e-06 4.8e-06 2.718 ||| 0-0 ||| 10778 1.17835e+06 +en ||| mature along ||| 0.25 0.155535 8.48644e-07 1.4319e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| maturity - in ||| 1 0.605812 8.48644e-07 6.96754e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| maximum for ||| 0.333333 0.0286209 8.48644e-07 2.07094e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| maximum of ||| 0.00680272 0.0116562 1.69729e-06 2.45466e-07 2.718 ||| 0-1 ||| 294 1.17835e+06 +en ||| may , during ||| 0.333333 0.226251 8.48644e-07 2.58325e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| may I begin by saying a few ||| 1 0.0468744 8.48644e-07 3.66655e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| may I begin by saying a ||| 1 0.0468744 8.48644e-07 2.09159e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| may I begin by saying ||| 0.0625 0.0468744 8.48644e-07 4.71867e-16 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| may I begin by ||| 0.0285714 0.0468744 8.48644e-07 2.6599e-12 2.718 ||| 0-3 ||| 35 1.17835e+06 +en ||| may I ||| 0.001544 0.0060084 2.54593e-06 1.82048e-06 2.718 ||| 0-1 ||| 1943 1.17835e+06 +en ||| may appear in ||| 0.333333 0.605812 8.48644e-07 3.02375e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| may arise in ||| 0.05 0.605812 8.48644e-07 1.50495e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| may at last reign in ||| 1 0.605812 8.48644e-07 1.93002e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| may be , into ||| 1 0.525896 8.48644e-07 3.58448e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| may be granted in ||| 0.5 0.605812 8.48644e-07 5.07863e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| may be in ||| 0.0350877 0.605812 1.69729e-06 6.26991e-06 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| may be levied at ||| 1 0.321886 8.48644e-07 3.31312e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| may be made in ||| 0.5 0.605812 8.48644e-07 1.31342e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| may be mobilised in ||| 1 0.605812 8.48644e-07 8.77788e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| may be passed on to ||| 0.166667 0.127333 8.48644e-07 2.26936e-12 2.718 ||| 0-3 0-4 ||| 6 1.17835e+06 +en ||| may be to ||| 0.04 0.0247351 8.48644e-07 3.81645e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| may be used at ||| 1 0.321886 1.69729e-06 2.33005e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| may be used in ||| 0.125 0.605812 8.48644e-07 2.68979e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| may be ||| 0.000202265 0.0001288 8.48644e-07 3.10918e-08 2.718 ||| 0-1 ||| 4944 1.17835e+06 +en ||| may become ||| 0.00746269 0.219193 8.48644e-07 2.86457e-06 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| may bring us into ||| 0.333333 0.525896 8.48644e-07 1.48808e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| may contribute in ||| 0.333333 0.605812 8.48644e-07 1.34581e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| may for ||| 0.333333 0.0286209 8.48644e-07 8.6197e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| may have for ||| 0.0714286 0.0286209 8.48644e-07 1.0309e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| may have in ||| 0.2 0.605812 2.54593e-06 4.13769e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| may have taken refuge in ||| 1 0.605812 8.48644e-07 9.42876e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| may impact on ||| 0.25 0.22993 8.48644e-07 5.12692e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| may in ||| 0.0204082 0.605812 8.48644e-07 0.000345966 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| may mean that in ||| 1 0.605812 8.48644e-07 1.49974e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| may not be ||| 0.00243309 0.0008293 8.48644e-07 2.46706e-09 2.718 ||| 0-1 ||| 411 1.17835e+06 +en ||| may not ||| 0.00100806 0.0008293 8.48644e-07 1.3613e-07 2.718 ||| 0-1 ||| 992 1.17835e+06 +en ||| may run aground under ||| 1 0.205566 8.48644e-07 4.94899e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| may say in ||| 0.25 0.605812 8.48644e-07 3.30675e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| may say so , we in ||| 1 0.605812 8.48644e-07 1.01608e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| may somehow find themselves in ||| 1 0.605812 8.48644e-07 6.78006e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| may to ||| 0.333333 0.0247351 1.69729e-06 2.10587e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| may well be ||| 0.00302115 0.0008391 8.48644e-07 2.95993e-10 2.718 ||| 0-1 ||| 331 1.17835e+06 +en ||| may well ||| 0.00125156 0.0008391 8.48644e-07 1.63326e-08 2.718 ||| 0-1 ||| 799 1.17835e+06 +en ||| maybe over ||| 1 0.157937 8.48644e-07 8.09454e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| maybe ||| 0.000833333 0.0018809 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 1200 1.17835e+06 +en ||| me , during ||| 0.5 0.226251 8.48644e-07 2.07605e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| me , either on ||| 1 0.22993 8.48644e-07 5.16289e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| me , in ||| 0.115385 0.605812 2.54593e-06 3.31574e-05 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| me , on ||| 0.25 0.22993 1.69729e-06 5.96315e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| me a great deal . ||| 1 6.3e-05 8.48644e-07 3.6073e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| me about ||| 0.037037 0.0401564 8.48644e-07 1.72568e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| me along ||| 1 0.155535 8.48644e-07 4.78971e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| me an answer that talks ||| 0.25 0.0017499 8.48644e-07 5.50995e-18 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| me an answer that ||| 0.25 0.0017499 8.48644e-07 2.09504e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| me at first-hand how significant ||| 1 0.321886 8.48644e-07 1.09386e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| me at first-hand how ||| 1 0.321886 8.48644e-07 1.89907e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| me at first-hand ||| 1 0.321886 8.48644e-07 5.29874e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| me at ||| 0.205882 0.321886 5.94051e-06 2.40852e-05 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| me here - ||| 1 0.0855319 8.48644e-07 6.81377e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| me here ||| 0.0625 0.0855319 8.48644e-07 1.80636e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| me in particular ||| 0.166667 0.605812 8.48644e-07 1.71105e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| me in ||| 0.0780488 0.605812 1.35783e-05 0.000278038 2.718 ||| 0-1 ||| 205 1.17835e+06 +en ||| me now ||| 0.04 0.0123946 8.48644e-07 3.56443e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| me on the only ||| 1 0.22993 8.48644e-07 3.417e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| me on the ||| 0.111111 0.22993 8.48644e-07 3.0698e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| me on ||| 0.172414 0.22993 8.48644e-06 5.00034e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| me once again , on ||| 0.5 0.22993 8.48644e-07 1.41112e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| me say , on ||| 1 0.22993 8.48644e-07 5.69957e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| me say at ||| 0.25 0.321886 8.48644e-07 2.30206e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| me then move ||| 1 0.013351 8.48644e-07 3.08865e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| me then ||| 0.166667 0.013351 8.48644e-07 2.02005e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| me to be designed largely with ||| 1 0.0535436 8.48644e-07 2.88702e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| me to begin by ||| 0.142857 0.0247351 8.48644e-07 5.24231e-12 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| me to begin ||| 0.111111 0.0247351 8.48644e-07 9.98516e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| me to commission a study in ||| 1 0.605812 8.48644e-07 1.33253e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| me to say ||| 0.0238095 0.0247351 8.48644e-07 1.6176e-08 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| me to think ||| 0.2 0.0247351 8.48644e-07 6.47343e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| me to ||| 0.00661626 0.0247351 5.94051e-06 1.6924e-05 2.718 ||| 0-1 ||| 1058 1.17835e+06 +en ||| me when I say ||| 0.5 0.142731 8.48644e-07 2.42341e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| me when I ||| 0.25 0.142731 8.48644e-07 2.53548e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| me when ||| 0.1 0.142731 1.69729e-06 3.58448e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| me which , in ||| 1 0.605812 8.48644e-07 2.81659e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| me with ||| 0.0120482 0.0535436 8.48644e-07 7.01982e-06 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| me ||| 5.33561e-05 2.61e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 18742 1.17835e+06 +en ||| mean , in ||| 0.125 0.605812 8.48644e-07 1.41914e-05 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| mean also we in ||| 1 0.605812 8.48644e-07 6.82033e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| mean for ||| 0.0526316 0.0286209 1.69729e-06 2.96489e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| mean in real terms ||| 0.2 0.605812 8.48644e-07 2.34977e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| mean in real ||| 0.25 0.605812 8.48644e-07 2.14083e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| mean in the ||| 0.0625 0.605812 8.48644e-07 7.30568e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| mean in ||| 0.155172 0.605812 7.6378e-06 0.000119001 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| mean promoting that concept we ||| 1 0.0054082 8.48644e-07 1.65556e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| mean questioning ||| 1 0.128107 8.48644e-07 1.17511e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| mean that in ||| 0.0769231 0.605812 1.69729e-06 2.00179e-06 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| mean to ||| 0.0128205 0.0247351 8.48644e-07 7.24351e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| mean with ||| 0.333333 0.0535436 8.48644e-07 3.0045e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| mean ||| 0.000426136 0.0002899 2.54593e-06 2e-06 2.718 ||| 0-0 ||| 7040 1.17835e+06 +en ||| meaning of ||| 0.0030303 0.0116562 8.48644e-07 4.17292e-07 2.718 ||| 0-1 ||| 330 1.17835e+06 +en ||| meaning the delegates of ||| 0.5 0.0116562 8.48644e-07 1.56272e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| meaning ||| 0.00117302 0.0009158 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 1705 1.17835e+06 +en ||| meaningless as ||| 0.111111 0.066968 8.48644e-07 8.45431e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| meaningless in ||| 0.25 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| means , where ||| 1 0.247783 8.48644e-07 6.43614e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| means - as ||| 0.142857 0.066968 8.48644e-07 4.29979e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| means ; in ||| 1 0.605812 8.48644e-07 9.01303e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| means in a ||| 0.5 0.605812 8.48644e-07 1.29711e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| means in ||| 0.0465116 0.605812 5.09187e-06 0.000292631 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| means of the ||| 0.0026178 0.0011669 8.48644e-07 9.86903e-08 2.718 ||| 0-2 ||| 382 1.17835e+06 +en ||| means of which we want to ||| 0.333333 0.0116562 8.48644e-07 3.46185e-14 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| means of which we want ||| 0.5 0.0116562 8.48644e-07 3.89593e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| means of which we ||| 0.0909091 0.0116562 8.48644e-07 8.33354e-10 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| means of which ||| 0.015625 0.0116562 8.48644e-07 7.34084e-08 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| means of ||| 0.00244101 0.0116562 1.01837e-05 8.64177e-06 2.718 ||| 0-1 ||| 4916 1.17835e+06 +en ||| means that liberalisation must only be gradual ||| 1 0.0017499 8.48644e-07 1.18413e-24 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| means that liberalisation must only be ||| 1 0.0017499 8.48644e-07 1.25971e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| means that liberalisation must only ||| 1 0.0017499 8.48644e-07 6.95095e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| means that liberalisation must ||| 0.5 0.0017499 8.48644e-07 6.24468e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| means that liberalisation ||| 0.25 0.0017499 8.48644e-07 4.04029e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| means that ||| 0.000316907 0.0017499 1.69729e-06 6.62343e-07 2.718 ||| 0-1 ||| 6311 1.17835e+06 +en ||| means there is no ||| 0.2 0.0117359 8.48644e-07 1.73365e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| means there is ||| 0.03125 0.0117359 8.48644e-07 2.2272e-08 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| means there ||| 0.030303 0.0117359 8.48644e-07 7.10631e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| means to ||| 0.000967118 0.0247351 8.48644e-07 1.78122e-05 2.718 ||| 0-1 ||| 1034 1.17835e+06 +en ||| means we must ||| 0.0294118 0.0054082 8.48644e-07 2.21737e-09 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| means we ||| 0.00456621 0.0054082 8.48644e-07 1.43463e-06 2.718 ||| 0-1 ||| 219 1.17835e+06 +en ||| meant as ||| 0.125 0.066968 8.48644e-07 1.43004e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| meant by ||| 0.0193548 0.0468744 2.54593e-06 6.76314e-07 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| meant by ‘ public interest ||| 0.5 0.0468744 8.48644e-07 1.37832e-18 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| meant by ‘ public interest ’ , ||| 0.5 0.0468744 8.48644e-07 2.86351e-22 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| meant by ‘ public interest ’ ||| 0.5 0.0468744 8.48644e-07 2.40117e-21 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| meant by ‘ public ||| 0.5 0.0468744 8.48644e-07 1.22735e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| meant by ‘ ||| 0.111111 0.0468744 8.48644e-07 7.59501e-11 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| meant that ||| 0.00188679 0.0017499 8.48644e-07 8.30934e-08 2.718 ||| 0-1 ||| 530 1.17835e+06 +en ||| meant to be done through the ||| 1 0.0366102 8.48644e-07 3.37039e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| meant to be done through ||| 1 0.0366102 8.48644e-07 5.48997e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| meantime – in ||| 1 0.605812 8.48644e-07 4.44626e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| meanwhile , in ||| 0.0454545 0.605812 8.48644e-07 9.14155e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| meanwhile , ||| 0.0030581 0.0121873 1.69729e-06 1.53839e-06 2.718 ||| 0-0 ||| 654 1.17835e+06 +en ||| meanwhile in ||| 0.333333 0.605812 1.69729e-06 7.66557e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| meanwhile ||| 0.00446927 0.0121873 3.39458e-06 1.29e-05 2.718 ||| 0-0 ||| 895 1.17835e+06 +en ||| measure comes at ||| 0.333333 0.321886 8.48644e-07 1.19786e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| measure in situations that ||| 1 0.605812 8.48644e-07 1.98981e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| measure in situations ||| 1 0.605812 8.48644e-07 1.18289e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| measure in ||| 0.0689655 0.605812 3.39458e-06 3.45874e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| measure it in ||| 0.333333 0.605812 8.48644e-07 6.15075e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| measure of ||| 0.00298507 0.0116562 8.48644e-07 1.02141e-06 2.718 ||| 0-1 ||| 335 1.17835e+06 +en ||| measure to date under ||| 1 0.205566 8.48644e-07 3.8462e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| measure under ||| 0.1 0.205566 8.48644e-07 4.2353e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| measured by ||| 0.0357143 0.0468744 1.69729e-06 1.01234e-07 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| measured in terms of ||| 0.05 0.605812 8.48644e-07 3.27898e-10 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| measured in terms ||| 0.05 0.605812 8.48644e-07 6.03153e-09 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| measured in ||| 0.0625 0.605812 3.39458e-06 5.4952e-06 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| measurement within ||| 0.5 0.369196 8.48644e-07 1.55214e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| measures at ||| 0.00806452 0.321886 8.48644e-07 8.27641e-06 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| measures employed to ||| 1 0.0247351 8.48644e-07 1.67489e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| measures for ||| 0.00137741 0.0286209 8.48644e-07 2.38043e-06 2.718 ||| 0-1 ||| 726 1.17835e+06 +en ||| measures here in ||| 1 0.605812 8.48644e-07 1.93741e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| measures in place ||| 0.0344828 0.605812 1.69729e-06 1.43791e-07 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| measures in the areas of ||| 0.166667 0.605812 8.48644e-07 7.29901e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| measures in the areas ||| 0.125 0.605812 8.48644e-07 1.34262e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| measures in the ||| 0.00483092 0.605812 8.48644e-07 5.86553e-06 2.718 ||| 0-1 ||| 207 1.17835e+06 +en ||| measures in ||| 0.02 0.605812 1.27297e-05 9.55425e-05 2.718 ||| 0-1 ||| 750 1.17835e+06 +en ||| measures into ||| 0.0454545 0.525896 8.48644e-07 4.58021e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| measures it will ||| 0.25 0.0080472 8.48644e-07 4.93646e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| measures it ||| 0.0128205 0.0080472 8.48644e-07 5.7061e-07 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| measures on ||| 0.00961538 0.22993 2.54593e-06 1.71827e-05 2.718 ||| 0-1 ||| 312 1.17835e+06 +en ||| measures so as to ensure ||| 1 0.066968 8.48644e-07 3.36568e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| measures so as to ||| 0.2 0.066968 8.48644e-07 7.50597e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| measures so as ||| 0.333333 0.066968 8.48644e-07 8.44713e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| measures that would ||| 0.0769231 0.0017499 8.48644e-07 1.26912e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| measures that ||| 0.000793651 0.0017499 8.48644e-07 2.16252e-07 2.718 ||| 0-1 ||| 1260 1.17835e+06 +en ||| measures to ||| 0.000304599 0.0247351 8.48644e-07 5.81561e-06 2.718 ||| 0-1 ||| 3283 1.17835e+06 +en ||| measures undertaken in ||| 0.25 0.605812 8.48644e-07 4.53827e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| measures which are in ||| 0.166667 0.605812 8.48644e-07 1.23141e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| measures within ||| 0.025641 0.369196 8.48644e-07 2.29384e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| meat in ||| 0.0384615 0.605812 8.48644e-07 8.31206e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| meat of ||| 0.0454545 0.0116562 8.48644e-07 2.45466e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| meat on sale in ||| 1 0.605812 8.48644e-07 7.00762e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| meat on the ||| 0.125 0.22993 8.48644e-07 9.17728e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| meat on ||| 0.0909091 0.22993 8.48644e-07 1.49487e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| mechanism laid down in Venezuela ||| 0.333333 0.605812 8.48644e-07 7.92368e-19 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| mechanism laid down in ||| 0.25 0.605812 8.48644e-07 7.20334e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| meddles in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| media constitute ||| 0.5 0.0024027 8.48644e-07 9.792e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| media in keeping ||| 0.166667 0.605812 8.48644e-07 7.80669e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| media in ||| 0.00632911 0.605812 8.48644e-07 1.32993e-05 2.718 ||| 0-1 ||| 158 1.17835e+06 +en ||| mediated ||| 0.0833333 0.1 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| mediation in ||| 0.05 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| medicines - I am referring in this ||| 1 0.605812 8.48644e-07 3.77853e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| medicines - I am referring in ||| 1 0.605812 8.48644e-07 5.84786e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| medicines according to ||| 0.5 0.0247351 8.48644e-07 2.13932e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| medicines in ||| 0.0208333 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| medium sized enterprises in ||| 0.2 0.605812 8.48644e-07 1.366e-16 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| medium-sized enterprises and hence fitting in ||| 1 0.605812 8.48644e-07 2.00951e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| medium-sized enterprises where ||| 0.333333 0.247783 8.48644e-07 1.58664e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| meet at ||| 0.0238095 0.321886 8.48644e-07 4.86424e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| meet her in ||| 1 0.605812 8.48644e-07 1.52791e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| meet in ||| 0.0144231 0.605812 2.54593e-06 5.61526e-05 2.718 ||| 0-1 ||| 208 1.17835e+06 +en ||| meet on ||| 0.0285714 0.22993 8.48644e-07 1.00987e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| meet the criteria for ||| 0.0344828 0.0286209 8.48644e-07 2.62821e-12 2.718 ||| 0-3 ||| 29 1.17835e+06 +en ||| meet the people ||| 0.25 0.0011669 8.48644e-07 3.06615e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| meet the requirements ||| 0.00675676 0.0011669 8.48644e-07 1.69297e-11 2.718 ||| 0-1 ||| 148 1.17835e+06 +en ||| meet the ||| 0.000827472 0.0011669 1.69729e-06 3.48348e-07 2.718 ||| 0-1 ||| 2417 1.17835e+06 +en ||| meet with ||| 0.00304878 0.0535436 8.48644e-07 1.41772e-06 2.718 ||| 0-1 ||| 328 1.17835e+06 +en ||| meeting at ||| 0.0288462 0.321886 2.54593e-06 5.02425e-06 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| meeting during ||| 0.0714286 0.226251 8.48644e-07 3.63147e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| meeting in ||| 0.02849 0.605812 1.69729e-05 5.79997e-05 2.718 ||| 0-1 ||| 702 1.17835e+06 +en ||| meeting is taking place in ||| 0.5 0.605812 8.48644e-07 1.16269e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| meeting its obligations under ||| 1 0.205566 8.48644e-07 1.34576e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| meeting of ||| 0.00266193 0.0116562 2.54593e-06 1.71281e-06 2.718 ||| 0-1 ||| 1127 1.17835e+06 +en ||| meeting people at your ||| 0.5 0.321886 8.48644e-07 1.13168e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| meeting people at ||| 0.5 0.321886 8.48644e-07 4.42235e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| meeting soon to take place in ||| 1 0.605812 8.48644e-07 1.15013e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| meeting went ahead as ||| 1 0.066968 8.48644e-07 1.56869e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| meeting where ||| 0.111111 0.247783 8.48644e-07 1.06968e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| meeting ||| 7.99297e-05 0.0001736 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 12511 1.17835e+06 +en ||| meetings have a political value in themselves ||| 1 0.605812 8.48644e-07 3.62692e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| meetings have a political value in ||| 1 0.605812 8.48644e-07 8.44058e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| meetings in ||| 0.0363636 0.605812 3.39458e-06 1.01592e-05 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| meetings of the ||| 0.00389105 0.0011669 8.48644e-07 3.4262e-09 2.718 ||| 0-2 ||| 257 1.17835e+06 +en ||| meetings of ||| 0.00421941 0.0116562 8.48644e-07 3.00014e-07 2.718 ||| 0-1 ||| 237 1.17835e+06 +en ||| meetings ||| 0.000263574 0.0002333 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 3794 1.17835e+06 +en ||| meets with ||| 0.015625 0.0535436 8.48644e-07 1.0493e-07 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| member in ||| 0.125 0.605812 8.48644e-07 7.69327e-05 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| member may speak ||| 1 0.0007658 8.48644e-07 4.15604e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| member may ||| 1 0.0007658 8.48644e-07 3.07172e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| member of the Commission . - ||| 0.00052356 0.0007658 8.48644e-07 9.1322e-17 2.718 ||| 0-0 ||| 1910 1.17835e+06 +en ||| member of the Commission . on ||| 0.5 0.22993 8.48644e-07 8.16986e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| member of the Commission . ||| 0.000984252 0.0007658 1.69729e-06 2.42099e-14 2.718 ||| 0-0 ||| 2032 1.17835e+06 +en ||| member of the Commission ||| 0.000945626 0.0007658 1.69729e-06 7.99269e-12 2.718 ||| 0-0 ||| 2115 1.17835e+06 +en ||| member of the ||| 0.000731351 0.0116562 2.54593e-06 1.39478e-07 2.718 ||| 0-1 ||| 4102 1.17835e+06 +en ||| member of ||| 0.00519031 0.0116562 1.78215e-05 2.27192e-06 2.718 ||| 0-1 ||| 4046 1.17835e+06 +en ||| member ||| 0.000535834 0.0007658 3.39458e-06 4.1e-06 2.718 ||| 0-0 ||| 7465 1.17835e+06 +en ||| members as ||| 0.0588235 0.066968 8.48644e-07 2.65322e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| members at ||| 0.0769231 0.321886 8.48644e-07 5.9003e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| members in ||| 0.0186916 0.605812 1.69729e-06 6.81127e-05 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| members of ||| 0.00473613 0.0116562 1.78215e-05 2.01146e-06 2.718 ||| 0-1 ||| 4434 1.17835e+06 +en ||| members ||| 0.000362713 0.0006057 3.39458e-06 5.4e-06 2.718 ||| 0-0 ||| 11028 1.17835e+06 +en ||| membership of ||| 0.00193798 0.0116562 1.69729e-06 3.34106e-07 2.718 ||| 0-1 ||| 1032 1.17835e+06 +en ||| membership to ||| 0.0222222 0.0247351 8.48644e-07 6.88653e-07 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| men and women in matters of ||| 0.111111 0.605812 8.48644e-07 2.9372e-16 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| men and women in matters ||| 0.111111 0.605812 8.48644e-07 5.40284e-15 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| men and women in ||| 0.0147601 0.605812 3.39458e-06 2.92045e-11 2.718 ||| 0-3 ||| 271 1.17835e+06 +en ||| men at ||| 0.0909091 0.321886 8.48644e-07 1.70009e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| men in ||| 0.00452489 0.605812 8.48644e-07 1.96257e-05 2.718 ||| 0-1 ||| 221 1.17835e+06 +en ||| men into ||| 0.166667 0.525896 8.48644e-07 9.40835e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| men which , taken at ||| 0.5 0.321886 8.48644e-07 1.56981e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| mentality in ||| 0.25 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| mentality to ||| 0.333333 0.0247351 8.48644e-07 1.0119e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| mention in ||| 0.0471698 0.605812 4.24322e-06 4.48851e-05 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| mention into ||| 0.333333 0.525896 8.48644e-07 2.15175e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| mention of them ||| 0.25 0.0116562 8.48644e-07 3.55557e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| mention of ||| 0.00487805 0.0116562 1.69729e-06 1.32552e-06 2.718 ||| 0-1 ||| 410 1.17835e+06 +en ||| mention that in ||| 0.0588235 0.605812 8.48644e-07 7.5504e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| mention the ||| 0.0010582 0.0011669 8.48644e-07 2.78449e-07 2.718 ||| 0-1 ||| 945 1.17835e+06 +en ||| mention was that in ||| 1 0.605812 8.48644e-07 2.36554e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| mention ||| 0.000213356 0.0001339 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 4687 1.17835e+06 +en ||| mentioned , here and ||| 1 0.0855319 8.48644e-07 3.9661e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| mentioned , here ||| 0.5 0.0855319 8.48644e-07 3.16632e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| mentioned , that in ||| 0.5 0.605812 8.48644e-07 8.19827e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| mentioned , which was incurred when ||| 1 0.142731 8.48644e-07 1.57184e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| mentioned by ||| 0.00121803 0.0468744 8.48644e-07 7.52878e-07 2.718 ||| 0-1 ||| 821 1.17835e+06 +en ||| mentioned in the ||| 0.00173913 0.605812 8.48644e-07 2.50894e-06 2.718 ||| 0-1 ||| 575 1.17835e+06 +en ||| mentioned in ||| 0.0197694 0.605812 2.03675e-05 4.08676e-05 2.718 ||| 0-1 ||| 1214 1.17835e+06 +en ||| mentioned initially indicate ||| 1 0.144202 8.48644e-07 3.85506e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| mentioned initially ||| 0.5 0.144202 8.48644e-07 1.7523e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| mentioned the idea of impact assessments on ||| 0.5 0.22993 8.48644e-07 2.62837e-21 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| mentions in ||| 0.0666667 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| menu when ||| 1 0.142731 8.48644e-07 4.16731e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| mercy of ||| 0.0175439 0.0116562 8.48644e-07 4.90932e-08 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| merged into ||| 0.0666667 0.525896 8.48644e-07 3.98471e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| message across to the citizens ||| 0.5 0.274879 8.48644e-07 5.88769e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| message across to the ||| 0.25 0.274879 8.48644e-07 5.40155e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| message across to ||| 0.0833333 0.274879 8.48644e-07 8.7985e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| message across ||| 0.0363636 0.274879 1.69729e-06 9.90173e-08 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| message in ||| 0.0181818 0.605812 8.48644e-07 2.22578e-05 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| message of ||| 0.00276243 0.0116562 8.48644e-07 6.57303e-07 2.718 ||| 0-1 ||| 362 1.17835e+06 +en ||| message on ||| 0.0285714 0.22993 8.48644e-07 4.00293e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| messages in ||| 0.0588235 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| met and were able to ||| 0.333333 0.0247351 8.48644e-07 4.03893e-14 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| met at ||| 0.047619 0.321886 8.48644e-07 3.06815e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| met by ||| 0.0118343 0.0468744 1.69729e-06 6.52495e-07 2.718 ||| 0-1 ||| 169 1.17835e+06 +en ||| met in ||| 0.0409357 0.605812 5.94051e-06 3.54186e-05 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| met to ||| 0.0454545 0.0247351 8.48644e-07 2.15591e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| met with a ||| 0.0285714 0.0535436 8.48644e-07 3.96378e-08 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| met with ||| 0.0059761 0.0535436 2.54593e-06 8.94238e-07 2.718 ||| 0-1 ||| 502 1.17835e+06 +en ||| met within ||| 0.166667 0.369196 8.48644e-07 8.5035e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| metaphorically speaking , ||| 0.166667 0.2 8.48644e-07 5.61308e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| metaphorically speaking ||| 0.166667 0.2 8.48644e-07 4.7068e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| metaphorically ||| 0.1 0.2 8.48644e-07 4.1e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| meted out in ||| 0.333333 0.605812 8.48644e-07 1.02591e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| method can result in ||| 1 0.605812 8.48644e-07 3.0444e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| method in ||| 0.0625 0.605812 8.48644e-07 1.9441e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| method of ||| 0.00137741 0.0116562 8.48644e-07 5.74118e-07 2.718 ||| 0-1 ||| 726 1.17835e+06 +en ||| method used in ||| 0.166667 0.605812 8.48644e-07 8.34018e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| methods to be used in ||| 0.166667 0.605812 8.48644e-07 1.0113e-11 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| meticulous training , with ||| 1 0.0535436 8.48644e-07 1.96321e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| metres in ||| 0.133333 0.605812 1.69729e-06 1.15445e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| midlife ||| 1 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| midst in ||| 0.5 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| might , in ||| 0.111111 0.605812 8.48644e-07 2.11467e-05 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| might add , in ||| 1 0.605812 8.48644e-07 1.73403e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| might agree with him ||| 0.333333 0.0535436 8.48644e-07 2.28361e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| might agree with ||| 0.25 0.0535436 8.48644e-07 7.12294e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| might also say that in ||| 1 0.605812 8.48644e-07 1.43937e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| might at times be part ||| 1 0.321886 8.48644e-07 3.36865e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| might at times be ||| 1 0.321886 8.48644e-07 2.82557e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| might at times ||| 0.5 0.321886 8.48644e-07 1.55912e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| might at ||| 0.0555556 0.321886 8.48644e-07 1.53608e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| might be available in ||| 1 0.605812 8.48644e-07 1.02225e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| might be ended in ||| 1 0.605812 8.48644e-07 6.36298e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| might be in ||| 0.0526316 0.605812 8.48644e-07 3.21362e-06 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| might be to put into practice ||| 1 0.525896 8.48644e-07 1.59089e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| might be to put into ||| 1 0.525896 8.48644e-07 1.50938e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| might exist as to ||| 1 0.0458515 8.48644e-07 1.78816e-11 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| might exist in ||| 0.5 0.605812 8.48644e-07 1.63315e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| might have been riots on ||| 1 0.22993 8.48644e-07 8.91511e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| might have in each other ||| 1 0.605812 8.48644e-07 7.71207e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| might have in each ||| 1 0.605812 8.48644e-07 5.95297e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| might have in ||| 0.142857 0.605812 8.48644e-07 2.12076e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| might have on ||| 0.0625 0.22993 8.48644e-07 3.81405e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| might have within ||| 1 0.369196 8.48644e-07 5.09164e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| might in ||| 0.166667 0.605812 1.69729e-06 0.000177324 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| might jeopardise ||| 0.0454545 0.319512 8.48644e-07 1.02682e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| might result in a ||| 0.166667 0.605812 8.48644e-07 4.1383e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| might result in ||| 0.0588235 0.605812 1.69729e-06 9.33611e-08 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| might say - and as such ||| 1 0.066968 8.48644e-07 6.45372e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| might say - and as ||| 1 0.066968 8.48644e-07 3.1194e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| might turn out to ||| 0.142857 0.0247351 8.48644e-07 9.26927e-12 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| migrating ||| 0.0263158 0.05 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| militates ||| 0.0833333 0.24 8.48644e-07 4.1e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| million in the ||| 0.025 0.605812 8.48644e-07 2.06101e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| million in ||| 0.0469484 0.605812 8.48644e-06 3.35715e-05 2.718 ||| 0-1 ||| 213 1.17835e+06 +en ||| million respectively . in addition , Parliament ||| 1 0.605812 8.48644e-07 9.40275e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| million respectively . in addition , ||| 1 0.605812 8.48644e-07 1.63811e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| million respectively . in addition ||| 1 0.605812 8.48644e-07 1.37362e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| million respectively . in ||| 1 0.605812 8.48644e-07 1.39313e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| mind , in ||| 0.0588235 0.605812 8.48644e-07 1.3872e-05 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| mind at rest by ||| 1 0.321886 8.48644e-07 3.99944e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| mind at rest ||| 0.333333 0.321886 8.48644e-07 7.61784e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| mind at ||| 0.0454545 0.321886 8.48644e-07 1.00765e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| mind if a ||| 0.25 0.0178573 8.48644e-07 1.29466e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| mind if ||| 0.0344828 0.0178573 8.48644e-07 2.92078e-07 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| mind in the ||| 0.0454545 0.605812 8.48644e-07 7.14126e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| mind in ||| 0.0833333 0.605812 6.78915e-06 0.000116323 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| mind on ||| 0.025641 0.22993 8.48644e-07 2.09199e-05 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| mind set on ||| 0.5 0.22993 8.48644e-07 1.22256e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| mind when it ||| 0.1 0.142731 8.48644e-07 2.66683e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| mind when ||| 0.0169492 0.142731 1.69729e-06 1.49964e-06 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| mind within ||| 0.25 0.369196 8.48644e-07 2.79274e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| minds off ||| 0.333333 0.0262428 8.48644e-07 8.01846e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| minds regarding ||| 0.5 0.140669 8.48644e-07 9.06747e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| mine in ||| 0.111111 0.605812 1.69729e-06 8.31206e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| mined in ||| 0.2 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| minimised contained in ||| 1 0.605812 8.48644e-07 1.25604e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| minimum in the ||| 0.111111 0.605812 8.48644e-07 7.96623e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| minimum in ||| 0.0555556 0.605812 8.48644e-07 1.2976e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| minimum requirements for vessels ||| 0.25 0.0286209 8.48644e-07 2.26256e-16 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| minimum requirements for ||| 0.0114943 0.0286209 8.48644e-07 1.57122e-11 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| minister in ||| 0.030303 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| ministers to ||| 0.02 0.0247351 8.48644e-07 2.33299e-07 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| ministries in ||| 0.1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| minor extent ||| 0.333333 0.0400323 8.48644e-07 2.6273e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| minor impact in ||| 1 0.605812 8.48644e-07 4.9466e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| minor role to ||| 1 0.0247351 8.48644e-07 8.11206e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| minorities , into ||| 1 0.525896 8.48644e-07 3.32637e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| minorities in ||| 0.0102041 0.605812 1.69729e-06 5.81844e-06 2.718 ||| 0-1 ||| 196 1.17835e+06 +en ||| minority in ||| 0.0108696 0.605812 8.48644e-07 5.63373e-06 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| minutes in ||| 0.030303 0.605812 8.48644e-07 7.48085e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| misconceived ideas is to ||| 1 0.0247351 8.48644e-07 2.17682e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| misgivings when ||| 0.333333 0.142731 8.48644e-07 1.72646e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| misled ||| 0.0075188 0.0038314 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 133 1.17835e+06 +en ||| missed her in ||| 1 0.605812 8.48644e-07 1.18112e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| missed in ||| 0.111111 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| missed off at ||| 1 0.321886 8.48644e-07 1.5304e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| missed out from ||| 1 0.0308834 8.48644e-07 1.37006e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| missiles on ||| 0.333333 0.22993 8.48644e-07 9.13532e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| missing from ||| 0.0136986 0.0308834 8.48644e-07 5.47934e-08 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| missing in ||| 0.0333333 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| missing ||| 0.00302419 0.0418006 2.54593e-06 4.42e-05 2.718 ||| 0-0 ||| 992 1.17835e+06 +en ||| mission being sent to ||| 1 0.0247351 8.48644e-07 5.72085e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| mission in ||| 0.0131579 0.605812 8.48644e-07 5.4952e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| missionaries in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| missions in Member States ||| 1 0.605812 8.48644e-07 2.83881e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| missions in Member ||| 1 0.605812 8.48644e-07 5.9489e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| missions in ||| 0.0526316 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| mistake in ||| 0.0224719 0.605812 1.69729e-06 8.49677e-06 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| mistaken , as were others . ||| 0.5 0.066968 8.48644e-07 4.07302e-18 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| mistaken , as were others ||| 0.5 0.066968 8.48644e-07 1.34467e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| mistaken , as were ||| 0.5 0.066968 8.48644e-07 1.38341e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| mistaken , as ||| 0.5 0.066968 8.48644e-07 7.72251e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| mistaken about ||| 0.2 0.0401564 8.48644e-07 1.0318e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| mistakes of ||| 0.0125 0.0116562 8.48644e-07 6.8185e-08 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| mistakes with ||| 0.166667 0.0535436 8.48644e-07 5.82945e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| mix in ||| 0.125 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| mixed up in ||| 0.2 0.605812 1.69729e-06 1.48041e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| mobilised in ||| 0.0526316 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| mockery of ||| 0.0135135 0.0116562 8.48644e-07 4.36384e-08 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| model , outside the Union . to ||| 1 0.0247351 8.48644e-07 5.33728e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| model for ||| 0.00219298 0.0286209 8.48644e-07 4.4295e-07 2.718 ||| 0-1 ||| 456 1.17835e+06 +en ||| model in ||| 0.0169492 0.605812 8.48644e-07 1.77786e-05 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| modelled on ||| 0.0147059 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| models in ||| 0.0769231 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| moderate them by involving them in ||| 1 0.605812 8.48644e-07 1.96561e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| modern times ||| 0.0123457 0.0026686 8.48644e-07 1.14e-10 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| modest existence in ||| 1 0.605812 8.48644e-07 1.27636e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| modification as ||| 0.2 0.066968 8.48644e-07 3.23782e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| modifications needed to bring the requirements into ||| 1 0.525896 8.48644e-07 2.69105e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| modified in ||| 0.0434783 0.605812 8.48644e-07 5.63373e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| moment , when it ||| 0.333333 0.142731 8.48644e-07 2.2814e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| moment , when ||| 0.0294118 0.142731 8.48644e-07 1.2829e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| moment entirely in ||| 1 0.605812 8.48644e-07 5.52398e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| moment here ||| 1 0.0855319 8.48644e-07 5.42118e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| moment in ||| 0.0218579 0.605812 3.39458e-06 8.34438e-05 2.718 ||| 0-1 ||| 183 1.17835e+06 +en ||| moment on ||| 0.0588235 0.22993 3.39458e-06 1.50068e-05 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| moment they are entered into ||| 0.5 0.525896 8.48644e-07 6.33937e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| moment when ||| 0.00374532 0.142731 8.48644e-07 1.07576e-06 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| moments ago , in ||| 1 0.605812 8.48644e-07 2.42526e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| monastery in ||| 0.333333 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| monetary policy in ||| 0.0666667 0.605812 8.48644e-07 2.61797e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| money , on ||| 1 0.22993 8.48644e-07 1.6183e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| money allocated on ||| 1 0.22993 8.48644e-07 6.05227e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| money in ||| 0.0203488 0.605812 5.94051e-06 7.5455e-05 2.718 ||| 0-1 ||| 344 1.17835e+06 +en ||| money into ||| 0.00704225 0.525896 8.48644e-07 3.61723e-06 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| money market in ||| 1 0.605812 8.48644e-07 1.70528e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| money on it - ||| 1 0.22993 8.48644e-07 9.10283e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| money on it ||| 0.142857 0.22993 8.48644e-07 2.4132e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| money on the ||| 0.0178571 0.22993 8.48644e-07 8.33093e-07 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| money on ||| 0.0244755 0.22993 5.94051e-06 1.35701e-05 2.718 ||| 0-1 ||| 286 1.17835e+06 +en ||| money spent on ||| 0.0212766 0.22993 8.48644e-07 8.69844e-10 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| money spent to ||| 0.333333 0.0247351 8.48644e-07 2.94405e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| money vanish in ||| 1 0.605812 8.48644e-07 5.28185e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| money where it is ||| 0.333333 0.247783 8.48644e-07 7.75608e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| money where it ||| 0.5 0.247783 8.48644e-07 2.47473e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| money where you ||| 1 0.247783 8.48644e-07 4.4931e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| money where ||| 0.0277778 0.247783 1.69729e-06 1.39161e-06 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| money will not help if they are ||| 1 0.0178573 8.48644e-07 5.28493e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| money will not help if they ||| 1 0.0178573 8.48644e-07 3.48318e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| money will not help if ||| 1 0.0178573 8.48644e-07 1.06715e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| monitored in ||| 0.0869565 0.605812 1.69729e-06 5.63373e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| monitored with ||| 0.1 0.0535436 8.48644e-07 1.42239e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| month in ||| 0.0294118 0.605812 1.69729e-06 6.00315e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| month of ||| 0.0116279 0.0116562 8.48644e-07 1.77281e-07 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| monthly on ||| 0.25 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| months at ||| 0.0625 0.321886 8.48644e-07 1.61208e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| mood in the EU ||| 0.5 0.605812 8.48644e-07 9.53861e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| mood in the ||| 0.142857 0.605812 8.48644e-07 1.92777e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| mood in ||| 0.047619 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| moored at ||| 0.166667 0.321886 8.48644e-07 2.80014e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| mooted as ||| 0.5 0.066968 8.48644e-07 2.51831e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| moral of the story ||| 0.333333 0.0116562 8.48644e-07 7.36736e-14 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| moral of the ||| 0.25 0.0116562 8.48644e-07 4.186e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| moral of ||| 0.166667 0.0116562 8.48644e-07 6.8185e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| more , in ||| 0.0227273 0.605812 8.48644e-07 0.000125762 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| more , rather than less , ||| 0.5 0.16257 8.48644e-07 4.39999e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| more , rather than less ||| 0.5 0.16257 8.48644e-07 3.68958e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| more , rather than ||| 0.333333 0.16257 8.48644e-07 2.16779e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| more , rather ||| 0.2 0.16257 8.48644e-07 7.09587e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| more , that is in ||| 1 0.605812 8.48644e-07 6.63029e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| more , ||| 0.0010582 0.0042952 1.69729e-06 3.9676e-05 2.718 ||| 0-0 ||| 1890 1.17835e+06 +en ||| more ; instead ||| 0.5 0.340662 8.48644e-07 2.37299e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| more European ||| 0.0111111 0.0042952 8.48644e-07 1.11252e-06 2.718 ||| 0-0 ||| 90 1.17835e+06 +en ||| more about this ||| 0.02 0.0401564 8.48644e-07 4.22919e-08 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| more about ||| 0.00484262 0.0042952 1.69729e-06 4.70538e-07 2.718 ||| 0-0 ||| 413 1.17835e+06 +en ||| more account of ||| 0.0212766 0.122646 8.48644e-07 1.02949e-07 2.718 ||| 0-1 0-2 ||| 47 1.17835e+06 +en ||| more actively in , ||| 1 0.605812 8.48644e-07 2.62843e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| more actively in ||| 0.0540541 0.605812 1.69729e-06 2.20405e-08 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| more and more common for ||| 0.5 0.0286209 8.48644e-07 1.73617e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| more and more in ||| 0.0714286 0.605812 8.48644e-07 3.01664e-08 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| more and more of ||| 0.015873 0.0116562 8.48644e-07 8.90853e-10 2.718 ||| 0-3 ||| 63 1.17835e+06 +en ||| more and ||| 0.000412031 0.0042952 8.48644e-07 4.16737e-06 2.718 ||| 0-0 ||| 2427 1.17835e+06 +en ||| more appropriate to ||| 0.0131579 0.0247351 8.48644e-07 8.6401e-09 2.718 ||| 0-2 ||| 76 1.17835e+06 +en ||| more as ||| 0.034188 0.066968 3.39458e-06 4.1079e-05 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| more at ||| 0.0444444 0.321886 3.39458e-06 9.13526e-05 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| more call to ||| 0.5 0.0247351 8.48644e-07 1.42504e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| more careful study ||| 0.25 0.0042952 8.48644e-07 3.11494e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| more careful ||| 0.0144928 0.0042952 8.48644e-07 9.21579e-09 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| more clearly on ||| 0.111111 0.22993 8.48644e-07 3.46125e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| more closely in ||| 0.0169492 0.605812 8.48644e-07 9.33294e-08 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| more closely ||| 0.001443 0.0042952 8.48644e-07 2.94439e-08 2.718 ||| 0-0 ||| 693 1.17835e+06 +en ||| more common for ||| 0.5 0.0286209 8.48644e-07 6.06939e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| more concerned with making a ||| 0.5 0.0042952 8.48644e-07 5.83561e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| more concerned with making ||| 0.5 0.0042952 8.48644e-07 1.31653e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| more concerned with ||| 0.0149254 0.0042952 8.48644e-07 3.42222e-09 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| more concerned ||| 0.00840336 0.0042952 8.48644e-07 5.35181e-07 2.718 ||| 0-0 ||| 119 1.17835e+06 +en ||| more conscious way in ||| 0.5 0.605812 8.48644e-07 1.88678e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| more critical in ||| 0.0909091 0.605812 8.48644e-07 2.65752e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| more democratic in ||| 0.5 0.605812 8.48644e-07 3.15316e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| more detail on ||| 0.0357143 0.22993 8.48644e-07 9.6915e-09 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| more details concerning these various funds . ||| 1 0.0888235 8.48644e-07 2.83712e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| more details concerning these various funds ||| 1 0.0888235 8.48644e-07 9.36652e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| more details concerning these various ||| 1 0.0888235 8.48644e-07 1.22759e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| more details concerning these ||| 1 0.0888235 8.48644e-07 7.95072e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| more details concerning ||| 0.333333 0.0888235 8.48644e-07 7.6663e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| more easily in ||| 0.0769231 0.605812 8.48644e-07 4.24992e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| more effective ||| 0.000369822 0.0042952 8.48644e-07 2.17919e-08 2.718 ||| 0-0 ||| 2704 1.17835e+06 +en ||| more effectively ||| 0.000653168 0.0042952 8.48644e-07 2.38213e-08 2.718 ||| 0-0 ||| 1531 1.17835e+06 +en ||| more efficiently by equipping ||| 1 0.0468744 8.48644e-07 1.154e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| more efficiently by ||| 0.5 0.0468744 8.48644e-07 1.04909e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| more equally ||| 0.125 0.0042952 8.48644e-07 1.16112e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| more extremist in ||| 0.25 0.605812 8.48644e-07 1.4764e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| more flexibility on ||| 0.25 0.22993 1.69729e-06 2.73107e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| more for ||| 0.00557103 0.0286209 1.69729e-06 2.62744e-05 2.718 ||| 0-1 ||| 359 1.17835e+06 +en ||| more geared ||| 0.1 0.0209205 8.48644e-07 2.32937e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| more generally , a common ||| 1 0.21041 8.48644e-07 2.539e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| more generally , a ||| 0.25 0.21041 8.48644e-07 1.09914e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| more generally , ||| 0.00223714 0.21041 8.48644e-07 2.47967e-07 2.718 ||| 0-1 ||| 447 1.17835e+06 +en ||| more generally ||| 0.00145985 0.21041 8.48644e-07 2.07931e-06 2.718 ||| 0-1 ||| 685 1.17835e+06 +en ||| more here at ||| 1 0.321886 8.48644e-07 1.85245e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| more in new ||| 0.5 0.605812 8.48644e-07 6.30316e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| more in order ||| 0.125 0.605812 8.48644e-07 5.61664e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| more in ||| 0.0502336 0.605812 3.64917e-05 0.00105457 2.718 ||| 0-1 ||| 856 1.17835e+06 +en ||| more in-depth ||| 0.0126582 0.181347 8.48644e-07 3.80693e-07 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| more into ||| 0.0769231 0.525896 4.24322e-06 5.0555e-05 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| more likely ||| 0.0028169 0.0042952 8.48644e-07 2.82462e-08 2.718 ||| 0-0 ||| 355 1.17835e+06 +en ||| more of it in ||| 0.666667 0.605812 1.69729e-06 1.01952e-06 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| more of ||| 0.0045403 0.0116562 3.39458e-06 3.11428e-05 2.718 ||| 0-1 ||| 881 1.17835e+06 +en ||| more often than not ||| 0.0107527 0.0016154 8.48644e-07 6.00243e-14 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| more often than ||| 0.00854701 0.0016154 8.48644e-07 1.75813e-11 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| more often ||| 0.00378788 0.0016154 8.48644e-07 5.75492e-08 2.718 ||| 0-1 ||| 264 1.17835e+06 +en ||| more on ||| 0.0338346 0.22993 1.52756e-05 0.000189658 2.718 ||| 0-1 ||| 532 1.17835e+06 +en ||| more or less agreed on ||| 0.5 0.22993 8.48644e-07 2.88231e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| more or less along ||| 0.5 0.155535 8.48644e-07 3.53508e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| more or ||| 0.0020141 0.0042952 1.69729e-06 3.80376e-07 2.718 ||| 0-0 ||| 993 1.17835e+06 +en ||| more people ||| 0.00152207 0.0042952 8.48644e-07 2.92843e-07 2.718 ||| 0-0 ||| 657 1.17835e+06 +en ||| more possibilities in ||| 1 0.605812 8.48644e-07 1.51858e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| more powerful ||| 0.00675676 0.0042952 8.48644e-07 4.55799e-09 2.718 ||| 0-0 ||| 148 1.17835e+06 +en ||| more pronounced over ||| 1 0.157937 8.48644e-07 7.22948e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| more radical at ||| 1 0.321886 8.48644e-07 5.93792e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| more reason for ||| 0.0263158 0.0286209 8.48644e-07 6.14559e-09 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| more resolutely in ||| 1 0.605812 8.48644e-07 3.37462e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| more restrained when it comes to ||| 0.5 0.0080472 8.48644e-07 7.82959e-20 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| more restrained when it comes ||| 0.5 0.0080472 8.48644e-07 8.81133e-19 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| more restrained when it ||| 0.5 0.0080472 8.48644e-07 2.20393e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| more serious piece of ||| 1 0.0042952 8.48644e-07 1.99402e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| more serious piece ||| 1 0.0042952 8.48644e-07 3.6679e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| more serious ||| 0.00173913 0.0042952 8.48644e-07 3.8327e-08 2.718 ||| 0-0 ||| 575 1.17835e+06 +en ||| more so , in ||| 0.125 0.605812 8.48644e-07 2.85443e-07 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| more so - in ||| 1 0.605812 8.48644e-07 9.02873e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| more so as ||| 0.0169492 0.066968 8.48644e-07 9.32369e-08 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| more so ||| 0.00196464 0.0087276 8.48644e-07 1.55543e-06 2.718 ||| 0-1 ||| 509 1.17835e+06 +en ||| more specifically , ||| 0.00265957 0.0764729 8.48644e-07 2.72138e-08 2.718 ||| 0-0 0-1 ||| 376 1.17835e+06 +en ||| more specifically in ||| 0.0434783 0.605812 8.48644e-07 5.91613e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| more specifically with ||| 0.0714286 0.148651 8.48644e-07 1.00163e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| more specifically ||| 0.00558659 0.148651 3.39458e-06 1.56639e-06 2.718 ||| 0-1 ||| 716 1.17835e+06 +en ||| more sustainable . at ||| 1 0.321886 8.48644e-07 3.8739e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| more than ever , ||| 0.00352113 0.0042952 8.48644e-07 2.27754e-12 2.718 ||| 0-0 ||| 284 1.17835e+06 +en ||| more than ever ||| 0.00163666 0.0042952 8.48644e-07 1.90981e-11 2.718 ||| 0-0 ||| 611 1.17835e+06 +en ||| more than once in ||| 0.0909091 0.605812 8.48644e-07 1.31832e-10 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| more than ||| 0.000550704 0.0042952 5.94051e-06 1.0164e-07 2.718 ||| 0-0 ||| 12711 1.17835e+06 +en ||| more to the point , in ||| 0.25 0.605812 8.48644e-07 6.0016e-10 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| more to the ||| 0.00621118 0.0145151 8.48644e-07 5.74113e-07 2.718 ||| 0-0 0-1 ||| 161 1.17835e+06 +en ||| more to ||| 0.00643974 0.0247351 5.94051e-06 6.41909e-05 2.718 ||| 0-1 ||| 1087 1.17835e+06 +en ||| more towards ||| 0.0307692 0.0616136 1.69729e-06 2.27502e-06 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| more true at ||| 1 0.321886 8.48644e-07 1.47626e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| more urgency into ||| 0.5 0.525896 8.48644e-07 1.30937e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| more used to in ||| 1 0.605812 8.48644e-07 4.02004e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| more widely in ||| 0.166667 0.605812 1.69729e-06 2.92116e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| more widely throughout ||| 0.5 0.309047 8.48644e-07 1.835e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| more within ||| 0.25 0.369196 3.39458e-06 2.53187e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| more ||| 0.00282072 0.0042952 0.000246955 0.0003327 2.718 ||| 0-0 ||| 103165 1.17835e+06 +en ||| moreover , a quantified commitment to ||| 1 0.0247351 8.48644e-07 9.87693e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| moreover , by ||| 0.1 0.0468744 1.69729e-06 1.09872e-07 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| moreover , for ||| 0.04 0.0286209 8.48644e-07 1.48593e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| moreover , in ||| 0.0192308 0.605812 2.54593e-06 5.96403e-06 2.718 ||| 0-2 ||| 156 1.17835e+06 +en ||| moreover , on ||| 0.037037 0.22993 8.48644e-07 1.07259e-06 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| moreover , ||| 0.000160772 0.0002086 8.48644e-07 1.66957e-07 2.718 ||| 0-0 ||| 6220 1.17835e+06 +en ||| moreover ||| 0.0001514 0.0002086 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 6605 1.17835e+06 +en ||| morning , Mr Brok said in the ||| 0.333333 0.605812 8.48644e-07 2.2875e-20 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| morning , Mr Brok said in ||| 0.333333 0.605812 8.48644e-07 3.72607e-19 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| morning in ||| 0.01 0.605812 8.48644e-07 8.31206e-06 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| most , in ||| 0.333333 0.605812 8.48644e-07 2.38011e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| most affected by ||| 0.00636943 0.0468744 8.48644e-07 2.44873e-10 2.718 ||| 0-2 ||| 157 1.17835e+06 +en ||| most certainly ||| 0.0042735 0.0027412 8.48644e-07 2.02905e-08 2.718 ||| 0-0 ||| 234 1.17835e+06 +en ||| most clearly in ||| 0.0833333 0.605812 8.48644e-07 3.64237e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| most definitely ||| 0.0138889 0.0027412 8.48644e-07 4.1958e-09 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| most famous listing ||| 1 0.0027412 8.48644e-07 2.12463e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| most famous ||| 0.037037 0.0027412 8.48644e-07 4.941e-10 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| most immoral ||| 1 0.0027412 8.48644e-07 1.134e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| most importance to ||| 0.333333 0.0247351 8.48644e-07 1.57808e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| most important in ||| 0.025641 0.605812 8.48644e-07 7.65596e-08 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| most in my thoughts ||| 1 0.605812 8.48644e-07 1.24501e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| most in my ||| 0.5 0.605812 8.48644e-07 1.28351e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| most in ||| 0.0285714 0.605812 1.69729e-06 0.000199582 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| most interested in ||| 0.166667 0.605812 8.48644e-07 4.23113e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| most of all ||| 0.00249377 0.0116562 8.48644e-07 2.78511e-08 2.718 ||| 0-1 ||| 401 1.17835e+06 +en ||| most of the ||| 0.000457038 0.0027412 8.48644e-07 2.70338e-07 2.718 ||| 0-0 ||| 2188 1.17835e+06 +en ||| most of ||| 0.00170648 0.0116562 6.78915e-06 5.89391e-06 2.718 ||| 0-1 ||| 4688 1.17835e+06 +en ||| most part , in ||| 0.333333 0.605812 8.48644e-07 2.83756e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| most part on ||| 0.25 0.22993 8.48644e-07 4.27923e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| most particularly to ||| 0.2 0.0247351 8.48644e-07 2.16849e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| most recent ||| 0.00112994 0.0027412 8.48644e-07 3.9366e-09 2.718 ||| 0-0 ||| 885 1.17835e+06 +en ||| most recently at ||| 0.0555556 0.321886 8.48644e-07 1.17564e-09 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| most unreliable figure in ||| 0.047619 0.605812 8.48644e-07 1.06597e-14 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| most ||| 0.00153516 0.0027412 4.92214e-05 8.1e-05 2.718 ||| 0-0 ||| 37781 1.17835e+06 +en ||| mostly , on ||| 1 0.22993 8.48644e-07 8.22025e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| mostly , totally ||| 0.25 0.14495 8.48644e-07 6.58916e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| mostly , ||| 0.0833333 0.14495 8.48644e-07 1.52527e-05 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| mostly ||| 0.00727802 0.14495 4.24322e-06 0.0001279 2.718 ||| 0-0 ||| 687 1.17835e+06 +en ||| motion , in the ||| 0.5 0.605812 8.48644e-07 2.5559e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| motion , in ||| 0.5 0.605812 8.48644e-07 4.16326e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| motion at ||| 0.111111 0.321886 8.48644e-07 3.02415e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| motion for ||| 0.00123954 0.0286209 3.39458e-06 8.69793e-07 2.718 ||| 0-1 ||| 3227 1.17835e+06 +en ||| motion in ||| 0.157895 0.605812 5.09187e-06 3.49107e-05 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| motion ||| 0.000160026 0.0003039 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 6249 1.17835e+06 +en ||| motions during ||| 1 0.226251 8.48644e-07 1.67695e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| motivated by ||| 0.00581395 0.0468744 8.48644e-07 9.78316e-08 2.718 ||| 0-1 ||| 172 1.17835e+06 +en ||| motor launch in ||| 1 0.605812 8.48644e-07 4.93736e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| mountain regions in ||| 0.0588235 0.605812 8.48644e-07 3.42457e-10 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| mounted by ||| 0.0625 0.0468744 8.48644e-07 4.93412e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| mounted in ||| 0.315789 0.605812 5.09187e-06 2.67833e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| move ahead as ||| 0.2 0.066968 8.48644e-07 2.99788e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| move around ||| 0.0104167 0.159384 8.48644e-07 1.76462e-07 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| move in ||| 0.0254237 0.605812 7.6378e-06 7.06063e-05 2.718 ||| 0-1 ||| 354 1.17835e+06 +en ||| move into ||| 0.02 0.525896 1.69729e-06 3.38479e-06 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| move more in ||| 0.142857 0.605812 8.48644e-07 1.61244e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| move on to ||| 0.014218 0.127333 2.54593e-06 3.56922e-07 2.718 ||| 0-1 0-2 ||| 211 1.17835e+06 +en ||| move on ||| 0.0052356 0.22993 1.69729e-06 1.26981e-05 2.718 ||| 0-1 ||| 382 1.17835e+06 +en ||| move some way towards ||| 0.333333 0.0616136 8.48644e-07 3.57659e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| move to ||| 0.00606061 0.0247351 2.54593e-06 4.29776e-06 2.718 ||| 0-1 ||| 495 1.17835e+06 +en ||| move towards low ||| 0.25 0.0616136 8.48644e-07 5.48348e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| move towards ||| 0.00238379 0.0616136 1.69729e-06 1.52319e-07 2.718 ||| 0-1 ||| 839 1.17835e+06 +en ||| moved into - and can some clear ||| 1 0.525896 8.48644e-07 3.5762e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| moved into - and can some ||| 1 0.525896 8.48644e-07 1.07426e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| moved into - and can ||| 1 0.525896 8.48644e-07 9.86191e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| moved into - and ||| 1 0.525896 8.48644e-07 3.31571e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| moved into - ||| 1 0.525896 8.48644e-07 2.64708e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| moved into ||| 0.047619 0.525896 8.48644e-07 7.01752e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| moved to ||| 0.00649351 0.0247351 8.48644e-07 8.91033e-07 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| moved when ||| 0.5 0.142731 8.48644e-07 1.8872e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| movement for those of ||| 1 0.0286209 8.48644e-07 1.98824e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| movement for those ||| 0.142857 0.0286209 8.48644e-07 3.65727e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| movement for ||| 0.00373134 0.0286209 8.48644e-07 5.05078e-07 2.718 ||| 0-1 ||| 268 1.17835e+06 +en ||| movement in ||| 0.0239234 0.605812 4.24322e-06 2.02722e-05 2.718 ||| 0-1 ||| 209 1.17835e+06 +en ||| movements in ||| 0.0606061 0.605812 1.69729e-06 5.63373e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| moves in ||| 0.0117647 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| moves on to ||| 0.125 0.22993 8.48644e-07 1.14383e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| moves on ||| 0.047619 0.22993 8.48644e-07 1.28725e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| moving in ||| 0.0656566 0.605812 1.10324e-05 2.74298e-05 2.718 ||| 0-1 ||| 198 1.17835e+06 +en ||| moving into ||| 0.0192308 0.525896 8.48644e-07 1.31496e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| moving on to ||| 0.0137931 0.0240371 1.69729e-06 3.56136e-08 2.718 ||| 0-0 ||| 145 1.17835e+06 +en ||| moving on ||| 0.00913242 0.0240371 1.69729e-06 4.00791e-07 2.718 ||| 0-0 ||| 219 1.17835e+06 +en ||| moving to ||| 0.00666667 0.0247351 8.48644e-07 1.66963e-06 2.718 ||| 0-1 ||| 150 1.17835e+06 +en ||| moving towards ||| 0.00689655 0.0616136 1.69729e-06 5.91743e-08 2.718 ||| 0-1 ||| 290 1.17835e+06 +en ||| moving ||| 0.00469043 0.0240371 8.48644e-06 5.99e-05 2.718 ||| 0-0 ||| 2132 1.17835e+06 +en ||| much I ||| 0.011236 0.0060084 8.48644e-07 2.43889e-06 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| much a matter for ||| 0.5 0.0286209 8.48644e-07 5.31059e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| much about ||| 0.0394737 0.0401564 2.54593e-06 2.8767e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| much agreement in ||| 0.5 0.605812 8.48644e-07 8.54211e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| much as EUR ||| 0.1 0.066968 8.48644e-07 4.82776e-09 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| much as anyone - ||| 1 0.066968 8.48644e-07 3.26214e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| much as anyone ||| 0.2 0.066968 8.48644e-07 8.64808e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| much as in ||| 0.2 0.33639 8.48644e-07 8.33721e-06 2.718 ||| 0-1 0-2 ||| 5 1.17835e+06 +en ||| much as possible in ||| 0.037037 0.066968 8.48644e-07 3.09969e-10 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| much as possible ||| 0.00455581 0.066968 1.69729e-06 1.44815e-08 2.718 ||| 0-1 ||| 439 1.17835e+06 +en ||| much as ||| 0.0120087 0.066968 9.33509e-06 1.80545e-05 2.718 ||| 0-1 ||| 916 1.17835e+06 +en ||| much at ||| 0.129032 0.321886 3.39458e-06 4.015e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| much attention on ||| 1 0.22993 8.48644e-07 2.17808e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| much be in ||| 1 0.605812 8.48644e-07 8.39978e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| much better ||| 0.0014245 0.0007752 8.48644e-07 3.34703e-09 2.718 ||| 0-0 ||| 702 1.17835e+06 +en ||| much concern at ||| 1 0.321886 8.48644e-07 5.36003e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| much encouragement to ||| 1 0.0247351 8.48644e-07 2.65196e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| much energy to ||| 1 0.0247351 8.48644e-07 2.50807e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| much for your supplementary question ||| 1 0.0286209 8.48644e-07 2.20026e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| much for your supplementary ||| 1 0.0286209 8.48644e-07 2.65957e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| much for your ||| 0.0526316 0.0286209 8.48644e-07 2.95507e-09 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| much for ||| 0.00641026 0.0286209 1.69729e-06 1.15478e-05 2.718 ||| 0-1 ||| 312 1.17835e+06 +en ||| much from the perspective of ||| 1 0.0116562 8.48644e-07 4.38442e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| much greater role with ||| 1 0.0535436 8.48644e-07 3.42137e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| much grief for ||| 1 0.0286209 8.48644e-07 5.42745e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| much have the upper hand in ||| 1 0.605812 8.48644e-07 1.51163e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| much in Turkey ||| 1 0.605812 8.48644e-07 2.72068e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| much in a class of ||| 1 0.605812 8.48644e-07 9.6052e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| much in a class ||| 1 0.605812 8.48644e-07 1.76683e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| much in a ||| 0.166667 0.605812 8.48644e-07 2.05446e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| much in agreement ||| 0.1 0.605812 8.48644e-07 8.54211e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| much in demand ||| 0.0714286 0.605812 8.48644e-07 2.4843e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| much in keeping with ||| 0.25 0.0535436 8.48644e-07 1.4703e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| much in line ||| 0.04 0.605812 8.48644e-07 1.36451e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| much in the spotlight ||| 1 0.605812 8.48644e-07 1.13818e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| much in the ||| 0.0421053 0.605812 3.39458e-06 2.84545e-05 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| much in ||| 0.157459 0.605812 4.83727e-05 0.00046349 2.718 ||| 0-1 ||| 362 1.17835e+06 +en ||| much itself in ||| 1 0.605812 8.48644e-07 3.1457e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| much more of it in ||| 1 0.605812 8.48644e-07 1.02329e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| much more on ||| 0.0606061 0.22993 1.69729e-06 1.90359e-07 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| much more ||| 0.000486736 0.0042952 1.69729e-06 3.33931e-07 2.718 ||| 0-1 ||| 4109 1.17835e+06 +en ||| much of when ||| 1 0.142731 8.48644e-07 3.24843e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| much of ||| 0.00342173 0.0116562 3.39458e-06 1.36875e-05 2.718 ||| 0-1 ||| 1169 1.17835e+06 +en ||| much on an ||| 0.333333 0.22993 8.48644e-07 3.70491e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| much on everyone 's ||| 1 0.22993 8.48644e-07 1.06834e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| much on everyone ||| 1 0.22993 8.48644e-07 5.60984e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| much on the ||| 0.0363636 0.22993 1.69729e-06 5.11736e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| much on ||| 0.133858 0.22993 1.4427e-05 8.33557e-05 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| much opposition in the various Member States ||| 1 0.605812 8.48644e-07 2.76566e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| much opposition in the various Member ||| 1 0.605812 8.48644e-07 5.79559e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| much opposition in the various ||| 1 0.605812 8.48644e-07 1.1247e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| much opposition in the ||| 1 0.605812 8.48644e-07 7.28434e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| much opposition in ||| 1 0.605812 8.48644e-07 1.18653e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| much rhetoric ||| 0.2 0.0068337 8.48644e-07 4.11517e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| much there is in ||| 1 0.605812 8.48644e-07 4.45274e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| much time on ||| 0.25 0.22993 8.48644e-07 1.36845e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| much to their credit ||| 0.333333 0.0247351 8.48644e-07 1.17723e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| much to their ||| 0.5 0.0247351 8.48644e-07 3.27009e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| much to ||| 0.00799201 0.0247351 6.78915e-06 2.82123e-05 2.718 ||| 0-1 ||| 1001 1.17835e+06 +en ||| much we in ||| 0.5 0.605812 8.48644e-07 5.26167e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| much when it ||| 1 0.142731 8.48644e-07 1.0626e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| much when ||| 0.5 0.142731 1.69729e-06 5.97533e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| much ||| 0.000356107 0.0007752 5.94051e-06 1.97e-05 2.718 ||| 0-0 ||| 19657 1.17835e+06 +en ||| mud flats on ||| 1 0.22993 8.48644e-07 6.39473e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| mud on ||| 0.5 0.22993 8.48644e-07 9.13532e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| multiannual approach in ||| 1 0.605812 8.48644e-07 3.23912e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| murder in cold blood of two young ||| 0.333333 0.605812 8.48644e-07 1.58072e-25 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| murder in cold blood of two ||| 0.333333 0.605812 8.48644e-07 2.48151e-21 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| murder in cold blood of ||| 0.333333 0.605812 8.48644e-07 1.04971e-17 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| murder in cold blood ||| 0.333333 0.605812 8.48644e-07 1.93089e-16 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| murder in cold ||| 0.333333 0.605812 8.48644e-07 1.91177e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| murder in ||| 0.0416667 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| murdered in the ||| 0.1 0.605812 8.48644e-07 1.33243e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| murdered in ||| 0.0140845 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| murdered over ||| 0.0714286 0.157937 8.48644e-07 1.88338e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| music and the dancing tell the story ||| 0.5 0.0066116 8.48644e-07 4.84663e-25 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| music and the dancing tell the ||| 0.5 0.0066116 8.48644e-07 2.75377e-20 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| music and the dancing tell ||| 0.5 0.0066116 8.48644e-07 4.48557e-19 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| music and the dancing ||| 0.5 0.0066116 8.48644e-07 4.56779e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| music and the ||| 0.2 0.0066116 8.48644e-07 2.07627e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| music and ||| 0.00980392 0.0066116 8.48644e-07 3.38199e-08 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| music labels on ||| 0.5 0.22993 8.48644e-07 1.73405e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| music ||| 0.00223214 0.0066116 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 448 1.17835e+06 +en ||| must , in essence ||| 1 0.605812 8.48644e-07 1.07246e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| must , in the ||| 0.125 0.605812 8.48644e-07 5.2254e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| must , in ||| 0.0609756 0.605812 4.24322e-06 8.51155e-05 2.718 ||| 0-2 ||| 82 1.17835e+06 +en ||| must , to ||| 0.142857 0.0247351 8.48644e-07 5.18092e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| must also be seen that , in ||| 1 0.605812 8.48644e-07 2.75757e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| must also be supported , in ||| 1 0.605812 8.48644e-07 4.03401e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| must also come up with a voluntary ||| 1 0.0535436 8.48644e-07 1.55351e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| must also come up with a ||| 1 0.0535436 8.48644e-07 1.16805e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| must also come up with ||| 1 0.0535436 8.48644e-07 2.63515e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| must also consider ||| 0.04 0.0126304 8.48644e-07 9.44957e-10 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| must appear on ||| 0.333333 0.22993 8.48644e-07 1.12186e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| must at the same time note that ||| 1 0.321886 8.48644e-07 8.80612e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| must at the same time note ||| 1 0.321886 8.48644e-07 5.23501e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| must at the same time ||| 0.0833333 0.321886 8.48644e-07 5.01438e-12 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| must at the same ||| 0.142857 0.321886 8.48644e-07 3.05438e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| must at the ||| 0.1 0.321886 8.48644e-07 3.79568e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| must at ||| 0.0526316 0.321886 2.54593e-06 6.18271e-05 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| must be added in all ||| 1 0.605812 8.48644e-07 4.35802e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| must be added in ||| 1 0.605812 8.48644e-07 9.22254e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| must be discussed in ||| 0.0833333 0.605812 8.48644e-07 6.79079e-10 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| must be given ||| 0.00227273 0.0546585 1.69729e-06 3.25177e-08 2.718 ||| 0-2 ||| 880 1.17835e+06 +en ||| must be in ||| 0.0163934 0.605812 2.54593e-06 1.29348e-05 2.718 ||| 0-2 ||| 183 1.17835e+06 +en ||| must be involved in ||| 0.015625 0.605812 8.48644e-07 4.47287e-09 2.718 ||| 0-3 ||| 64 1.17835e+06 +en ||| must be kept current within ||| 1 0.369196 8.48644e-07 3.649e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| must be reflected in ||| 0.0526316 0.605812 2.54593e-06 2.61284e-10 2.718 ||| 0-3 ||| 57 1.17835e+06 +en ||| must be respected in ||| 0.0666667 0.605812 8.48644e-07 3.16904e-10 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| must be taken in ||| 0.0526316 0.605812 8.48644e-07 1.17901e-08 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| must be taken on ||| 0.0666667 0.22993 8.48644e-07 2.12038e-09 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| must be used for ||| 0.04 0.0286209 8.48644e-07 1.38254e-10 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| must be used on ||| 0.5 0.22993 8.48644e-07 9.97961e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| must become more ||| 0.0125 0.219193 8.48644e-07 1.34958e-08 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| must become ||| 0.00226244 0.219193 8.48644e-07 5.9096e-06 2.718 ||| 0-1 ||| 442 1.17835e+06 +en ||| must bring about the ||| 0.25 0.0401564 8.48644e-07 8.46599e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| must bring about ||| 0.111111 0.0401564 8.48644e-07 1.37901e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| must come up with ||| 0.0714286 0.0535436 8.48644e-07 5.21956e-11 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| must disagree ||| 0.142857 0.152311 8.48644e-07 3.29213e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| must do in ||| 0.166667 0.605812 8.48644e-07 2.45187e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| must do that in ||| 0.5 0.605812 8.48644e-07 4.12444e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| must ensure that ||| 0.00191571 0.0017499 8.48644e-07 7.24373e-10 2.718 ||| 0-2 ||| 522 1.17835e+06 +en ||| must first put our own house in ||| 1 0.605812 8.48644e-07 2.14016e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| must focus on ||| 0.00877193 0.22993 8.48644e-07 9.93503e-09 2.718 ||| 0-2 ||| 114 1.17835e+06 +en ||| must in ||| 0.0792079 0.605812 6.78915e-06 0.000713729 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| must keep a sense ||| 0.333333 0.0015231 8.48644e-07 3.53391e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| must keep a ||| 0.0833333 0.0015231 8.48644e-07 1.98423e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| must look at two possibilities ||| 1 0.321886 8.48644e-07 6.13518e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| must look at two ||| 1 0.321886 8.48644e-07 4.26054e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| must look at ||| 0.0222222 0.321886 8.48644e-07 1.80226e-08 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| must mention that in ||| 1 0.605812 8.48644e-07 1.16699e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| must not , on ||| 0.5 0.22993 8.48644e-07 5.22613e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| must not , under ||| 0.125 0.205566 8.48644e-07 3.55837e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| must on ||| 0.125 0.22993 1.69729e-06 0.00012836 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| must prevail at ||| 1 0.321886 8.48644e-07 1.47148e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| must prevail in ||| 0.0833333 0.605812 8.48644e-07 1.69867e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| must really be committed to ||| 1 0.0247351 8.48644e-07 3.15787e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| must rely on ||| 0.0666667 0.22993 8.48644e-07 2.54152e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| must retain during ||| 1 0.226251 8.48644e-07 6.92663e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| must say , in ||| 0.25 0.605812 8.48644e-07 8.13534e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| must say , of ||| 1 0.0116562 8.48644e-07 2.40247e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| must succeed in ||| 0.0833333 0.605812 8.48644e-07 2.71931e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| must switch in ||| 0.5 0.605812 8.48644e-07 8.99298e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| must take action in accordance with ||| 0.5 0.605812 8.48644e-07 1.76592e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| must take action in accordance ||| 0.5 0.605812 8.48644e-07 2.76162e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| must take action in ||| 0.0833333 0.605812 8.48644e-07 3.47374e-10 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| must take place within ||| 0.05 0.369196 8.48644e-07 4.15204e-11 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| must take with ||| 0.5 0.0535436 8.48644e-07 2.90122e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| must tell you in ||| 0.333333 0.605812 8.48644e-07 2.26294e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| must therefore be high on ||| 0.333333 0.22993 8.48644e-07 2.90454e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| must to ||| 0.0555556 0.0247351 8.48644e-07 4.34442e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| must try to reverse the trend , ||| 0.5 0.0247351 8.48644e-07 8.02965e-21 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| must try to reverse the trend ||| 0.5 0.0247351 8.48644e-07 6.7332e-20 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| must try to reverse the ||| 0.5 0.0247351 8.48644e-07 3.98414e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| must try to reverse ||| 0.5 0.0247351 8.48644e-07 6.48969e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| must try to ||| 0.0151515 0.0247351 8.48644e-07 6.69041e-09 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| must under ||| 0.181818 0.205566 1.69729e-06 8.73975e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| must ||| 2.564e-05 1.88e-05 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 78003 1.17835e+06 +en ||| muster to ||| 0.25 0.0247351 8.48644e-07 5.05949e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| my attention in ||| 0.25 0.605812 8.48644e-07 7.75986e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| my attention on ||| 0.142857 0.22993 8.48644e-07 1.39556e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| my breath ||| 0.2 0.002535 8.48644e-07 1.37255e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| my brief ||| 0.0192308 0.002535 8.48644e-07 3.41015e-09 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| my colleague ||| 0.000272405 0.002535 8.48644e-07 7.8391e-09 2.718 ||| 0-0 ||| 3671 1.17835e+06 +en ||| my commitment to ||| 0.02 0.0247351 8.48644e-07 1.00867e-09 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| my country its ||| 1 0.002535 8.48644e-07 7.25541e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| my country ||| 0.00031027 0.002535 8.48644e-07 5.09259e-08 2.718 ||| 0-0 ||| 3223 1.17835e+06 +en ||| my experience during ||| 0.5 0.226251 8.48644e-07 1.28484e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| my feet on ||| 0.5 0.22993 8.48644e-07 9.98738e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| my group , proposed by ||| 0.5 0.002535 8.48644e-07 1.27344e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| my group , proposed ||| 0.5 0.002535 8.48644e-07 2.42556e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| my group , ||| 0.000837521 0.002535 8.48644e-07 2.17344e-09 2.718 ||| 0-0 ||| 1194 1.17835e+06 +en ||| my group led to ||| 1 0.0247351 8.48644e-07 2.13733e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| my group ||| 0.000143472 0.002535 8.48644e-07 1.82252e-08 2.718 ||| 0-0 ||| 6970 1.17835e+06 +en ||| my guests here on ||| 1 0.22993 8.48644e-07 4.65697e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| my home in ||| 0.111111 0.605812 8.48644e-07 3.01426e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| my intervention ||| 0.00793651 0.002535 8.48644e-07 3.7639e-09 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| my knowledge of ||| 0.1 0.0116562 8.48644e-07 4.16573e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| my meeting in ||| 1 0.605812 8.48644e-07 3.72996e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| my name on ||| 0.0833333 0.22993 8.48644e-07 4.6679e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| my notice ||| 0.0769231 0.002535 8.48644e-07 5.44775e-09 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| my own eyes as a ||| 0.5 0.066968 8.48644e-07 5.06793e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| my own eyes as ||| 0.5 0.066968 8.48644e-07 1.14334e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| my own ||| 0.000331565 0.002535 8.48644e-07 2.39885e-07 2.718 ||| 0-0 ||| 3016 1.17835e+06 +en ||| my position here in ||| 0.5 0.345672 8.48644e-07 2.93388e-10 2.718 ||| 0-2 0-3 ||| 2 1.17835e+06 +en ||| my report to propose new rules on ||| 1 0.22993 8.48644e-07 4.56658e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| my right honourable friend ||| 1 0.0071334 8.48644e-07 6.91035e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| my right honourable ||| 1 0.0071334 8.48644e-07 6.009e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| my right ||| 0.0243902 0.0071334 8.48644e-07 1.15115e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| my view in ||| 0.25 0.605812 8.48644e-07 2.68254e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| my view ||| 0.000388123 0.002535 1.69729e-06 1.27817e-07 2.718 ||| 0-0 ||| 5153 1.17835e+06 +en ||| my way through ||| 1 0.0366102 8.48644e-07 1.30364e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| my ||| 0.00176473 0.002535 0.000117113 0.0001415 2.718 ||| 0-0 ||| 78199 1.17835e+06 +en ||| myself and ||| 0.00338983 0.0010182 8.48644e-07 1.4348e-07 2.718 ||| 0-1 ||| 295 1.17835e+06 +en ||| myself at the end ||| 1 0.321886 8.48644e-07 1.66154e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| myself at the ||| 0.2 0.321886 8.48644e-07 3.81876e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| myself at ||| 0.125 0.321886 1.69729e-06 6.22031e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| myself during ||| 0.2 0.226251 8.48644e-07 4.49597e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| myself from ||| 0.0833333 0.0308834 8.48644e-07 5.91693e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| myself in a ||| 0.25 0.605812 8.48644e-07 3.1829e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| myself in ||| 0.147541 0.605812 7.6378e-06 7.1807e-05 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| myself of ||| 0.142857 0.0116562 8.48644e-07 2.12055e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| myself on ||| 0.04 0.22993 8.48644e-07 1.2914e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| myself that in ||| 1 0.605812 8.48644e-07 1.20791e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| myself to ||| 0.0253165 0.0247351 1.69729e-06 4.37084e-06 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| myself with ||| 0.030303 0.0535436 8.48644e-07 1.81296e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| n ||| 0.0149254 0.0212766 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| name does not appear on ||| 0.142857 0.22993 8.48644e-07 1.51913e-15 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| name in ||| 0.0454545 0.605812 1.69729e-06 4.03597e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| name on ||| 0.1 0.22993 2.54593e-06 7.25843e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| named in ||| 0.0227273 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| namely , in ||| 0.166667 0.605812 8.48644e-07 8.80012e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| namely , ||| 0.00138122 0.0422783 8.48644e-07 4.09044e-05 2.718 ||| 0-0 ||| 724 1.17835e+06 +en ||| namely a maximum of ||| 1 0.0116562 8.48644e-07 1.7387e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| namely by ||| 0.0178571 0.0468744 8.48644e-07 1.35943e-06 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| namely in ||| 0.0438596 0.605812 4.24322e-06 7.37926e-05 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| namely on ||| 0.0294118 0.22993 8.48644e-07 1.32711e-05 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| namely one in ||| 0.5 0.605812 8.48644e-07 3.07568e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| namely that State aid ||| 1 0.0422783 8.48644e-07 9.05752e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| namely that State ||| 1 0.0422783 8.48644e-07 6.93531e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| namely that ||| 0.0015186 0.0422783 1.69729e-06 5.76981e-06 2.718 ||| 0-0 ||| 1317 1.17835e+06 +en ||| namely the Commission ' s proposal concerning ||| 0.5 0.0888235 8.48644e-07 9.06175e-21 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| namely the ||| 0.00052687 0.0011669 8.48644e-07 4.57779e-07 2.718 ||| 0-1 ||| 1898 1.17835e+06 +en ||| namely to ensure both ||| 1 0.0247351 8.48644e-07 3.33633e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| namely to ensure ||| 0.05 0.0247351 8.48644e-07 2.01408e-09 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| namely to ||| 0.00600601 0.0422783 1.69729e-06 3.04784e-05 2.718 ||| 0-0 ||| 333 1.17835e+06 +en ||| namely with ||| 0.0416667 0.0535436 8.48644e-07 1.86309e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| namely within ||| 0.166667 0.369196 8.48644e-07 1.77165e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| namely ||| 0.00213737 0.0422783 1.86702e-05 0.000343 2.718 ||| 0-0 ||| 10293 1.17835e+06 +en ||| names had been given for ||| 1 0.0286209 8.48644e-07 4.1813e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| names in ||| 0.111111 0.605812 1.69729e-06 7.29614e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| nasty ring to ||| 0.333333 0.0247351 8.48644e-07 3.51354e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| national ' status , involves ||| 1 0.0273327 8.48644e-07 3.1504e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| national - on ||| 1 0.22993 8.48644e-07 4.02548e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| national budget - in other words ||| 1 0.605812 8.48644e-07 8.08693e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| national budget - in other ||| 1 0.605812 8.48644e-07 3.57829e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| national budget - in ||| 1 0.605812 8.48644e-07 2.76209e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| national currency into euros at ||| 1 0.321886 8.48644e-07 1.20401e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| national health authorities , where ||| 1 0.247783 8.48644e-07 7.22304e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| national into ||| 0.5 0.525896 8.48644e-07 2.84464e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| national law , as ||| 0.333333 0.066968 8.48644e-07 4.85972e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| national legislators in ||| 1 0.605812 8.48644e-07 4.15372e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| nationalism on ||| 1 0.22993 8.48644e-07 1.49487e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| nationals on ||| 0.5 0.22993 8.48644e-07 9.30142e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| nations in ||| 0.0181818 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| nations must really be committed to ||| 1 0.0247351 8.48644e-07 4.89469e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| nations with ||| 0.0357143 0.0535436 8.48644e-07 1.80713e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| native country in ||| 1 0.605812 8.48644e-07 1.01379e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| natural for ||| 0.015625 0.0286209 8.48644e-07 3.18694e-07 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| natural right to avoid smoke in ||| 1 0.605812 8.48644e-07 1.50075e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| natural that we should at ||| 1 0.321886 8.48644e-07 9.37593e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| naturally , e.g. in the ||| 0.5 0.605812 8.48644e-07 6.20617e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| naturally , e.g. in ||| 0.5 0.605812 8.48644e-07 1.01091e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| nature conservation area in ||| 1 0.605812 8.48644e-07 5.96582e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| nature in ||| 0.0192308 0.605812 8.48644e-07 6.52958e-05 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| nature of the issue in ||| 1 0.605812 8.48644e-07 1.64926e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| nature of ||| 0.00248756 0.0116562 2.54593e-06 1.92827e-06 2.718 ||| 0-1 ||| 1206 1.17835e+06 +en ||| navies in ||| 0.333333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| near ||| 0.00279981 0.0180222 5.09187e-06 2.65e-05 2.718 ||| 0-0 ||| 2143 1.17835e+06 +en ||| nearly enough on ||| 1 0.22993 8.48644e-07 2.27745e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| necessarily have on ||| 1 0.22993 8.48644e-07 1.85736e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| necessarily in ||| 0.0333333 0.605812 8.48644e-07 8.63531e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| necessary , in ||| 0.0147059 0.605812 8.48644e-07 1.41694e-05 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| necessary at ||| 0.0517241 0.321886 2.54593e-06 1.02925e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| necessary by ||| 0.0222222 0.0468744 8.48644e-07 2.18888e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| necessary for ||| 0.0019305 0.0286209 2.54593e-06 2.96029e-06 2.718 ||| 0-1 ||| 1554 1.17835e+06 +en ||| necessary here in ||| 1 0.605812 8.48644e-07 2.40936e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| necessary in " ||| 1 0.605812 8.48644e-07 2.81357e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| necessary in ||| 0.0165746 0.605812 5.09187e-06 0.000118816 2.718 ||| 0-1 ||| 362 1.17835e+06 +en ||| necessary over ||| 1 0.157937 8.48644e-07 1.03105e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| necessary skills to learn in ||| 1 0.605812 8.48644e-07 4.38476e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| necessary to ||| 0.000242014 0.0247351 8.48644e-07 7.23227e-06 2.718 ||| 0-1 ||| 4132 1.17835e+06 +en ||| necessitated by ||| 0.0454545 0.0468744 8.48644e-07 3.40284e-09 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| need , in ||| 0.0263158 0.605812 8.48644e-07 5.04933e-05 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| need a certain transitional period here , ||| 1 0.0855319 8.48644e-07 4.19429e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| need a certain transitional period here ||| 1 0.0855319 8.48644e-07 3.51708e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| need an early warning system for ||| 1 0.0286209 8.48644e-07 1.23944e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| need be , on ||| 0.5 0.22993 8.48644e-07 1.64572e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| need economic governance in ||| 1 0.605812 8.48644e-07 1.28398e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| need for a ||| 0.000744048 0.0286209 8.48644e-07 4.67598e-07 2.718 ||| 0-1 ||| 1344 1.17835e+06 +en ||| need for increased ||| 0.0181818 0.0286209 8.48644e-07 5.24291e-10 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| need for ||| 0.00153948 0.0286209 1.1881e-05 1.05491e-05 2.718 ||| 0-1 ||| 9094 1.17835e+06 +en ||| need hardly say that it ||| 0.5 0.0080472 8.48644e-07 9.22913e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| need in ||| 0.0555556 0.605812 5.94051e-06 0.000423407 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| need to be clearly set ||| 1 0.0247351 8.48644e-07 4.98147e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| need to be clearly ||| 0.125 0.0247351 8.48644e-07 8.52407e-11 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| need to be highlighted ||| 0.0833333 0.0247351 8.48644e-07 9.43486e-12 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| need to be made within ||| 0.5 0.369196 8.48644e-07 3.42919e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| need to be realistic ||| 0.0909091 0.0247351 8.48644e-07 2.70902e-12 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| need to be ||| 0.00108548 0.0247351 3.39458e-06 4.67072e-07 2.718 ||| 0-1 ||| 3685 1.17835e+06 +en ||| need to bear in ||| 0.0588235 0.0247351 8.48644e-07 8.25816e-11 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| need to bear ||| 0.0322581 0.0247351 8.48644e-07 3.85814e-09 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| need to ensure ||| 0.00378788 0.0247351 1.69729e-06 1.15564e-08 2.718 ||| 0-1 ||| 528 1.17835e+06 +en ||| need to examine the document carefully as ||| 1 0.066968 8.48644e-07 2.33941e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| need to have ||| 0.00241546 0.0247351 8.48644e-07 3.08234e-07 2.718 ||| 0-1 ||| 414 1.17835e+06 +en ||| need to invent ||| 0.5 0.0167923 8.48644e-07 1.80408e-11 2.718 ||| 0-1 0-2 ||| 2 1.17835e+06 +en ||| need to involve it in ||| 1 0.605812 8.48644e-07 3.29847e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| need to know ||| 0.00666667 0.0247351 8.48644e-07 6.64931e-09 2.718 ||| 0-1 ||| 150 1.17835e+06 +en ||| need to look at them from ||| 1 0.0308834 8.48644e-07 1.01506e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| need to make ||| 0.00262467 0.0247351 8.48644e-07 4.47875e-08 2.718 ||| 0-1 ||| 381 1.17835e+06 +en ||| need to take action in ||| 0.2 0.605812 8.48644e-07 1.83113e-11 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| need to understand ||| 0.0166667 0.0247351 8.48644e-07 2.01283e-09 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| need to ||| 0.00165847 0.0247351 2.54593e-05 2.57725e-05 2.718 ||| 0-1 ||| 18089 1.17835e+06 +en ||| need when ||| 0.0714286 0.142731 8.48644e-07 5.45858e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| needed , it is sufficient ||| 1 0.0080472 8.48644e-07 6.70788e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| needed , it is ||| 1 0.0080472 8.48644e-07 1.38022e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| needed , it ||| 0.25 0.0080472 8.48644e-07 4.40387e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| needed at ||| 0.0175439 0.321886 8.48644e-07 5.35627e-06 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| needed by ||| 0.00980392 0.0468744 8.48644e-07 1.1391e-06 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| needed for types of work ||| 1 0.0286209 8.48644e-07 2.44394e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| needed for types of ||| 1 0.0286209 8.48644e-07 3.86089e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| needed for types ||| 1 0.0286209 8.48644e-07 7.10192e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| needed for ||| 0.0017331 0.0286209 8.48644e-07 1.54055e-06 2.718 ||| 0-1 ||| 577 1.17835e+06 +en ||| needed if ||| 0.0117647 0.0178573 8.48644e-07 1.55257e-07 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| needed in Kosovo , ||| 1 0.605812 8.48644e-07 1.80658e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| needed in Kosovo ||| 0.333333 0.605812 8.48644e-07 1.5149e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| needed in this ||| 0.025 0.605812 8.48644e-07 3.99524e-07 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| needed in ||| 0.0340314 0.605812 1.10324e-05 6.18325e-05 2.718 ||| 0-1 ||| 382 1.17835e+06 +en ||| needed on ||| 0.0517241 0.22993 2.54593e-06 1.11202e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| needed to be made in ||| 0.25 0.605812 8.48644e-07 2.08586e-10 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| needed to bring the requirements into line ||| 1 0.525896 8.48644e-07 7.20222e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| needed to bring the requirements into ||| 1 0.525896 8.48644e-07 2.44641e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| needed to ||| 0.00116891 0.0247351 1.69729e-06 3.7637e-06 2.718 ||| 0-1 ||| 1711 1.17835e+06 +en ||| needs for living ||| 1 0.0286209 8.48644e-07 1.91188e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| needs for ||| 0.010101 0.0286209 8.48644e-07 2.28148e-06 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| needs in ||| 0.02 0.605812 1.69729e-06 9.15712e-05 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| needs of the ||| 0.0012837 0.0116562 8.48644e-07 1.66017e-07 2.718 ||| 0-1 ||| 779 1.17835e+06 +en ||| needs of ||| 0.00118977 0.0116562 1.69729e-06 2.70422e-06 2.718 ||| 0-1 ||| 1681 1.17835e+06 +en ||| needs therefore ||| 0.125 0.0081305 8.48644e-07 1.72184e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| needs to be made to ||| 0.5 0.0247351 8.48644e-07 1.88029e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| needs to be sent out at ||| 1 0.321886 8.48644e-07 2.94068e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| needs to be ||| 0.000499251 0.0247351 1.69729e-06 1.01015e-07 2.718 ||| 0-1 ||| 4006 1.17835e+06 +en ||| needs to become ||| 0.0243902 0.219193 8.48644e-07 6.73723e-08 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| needs to ||| 0.001502 0.0247351 7.6378e-06 5.57388e-06 2.718 ||| 0-1 ||| 5992 1.17835e+06 +en ||| negative attitude towards ||| 0.0714286 0.0616136 8.48644e-07 1.21684e-12 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| negative effect on ||| 0.0104167 0.22993 8.48644e-07 6.48296e-10 2.718 ||| 0-2 ||| 96 1.17835e+06 +en ||| negative impact on ||| 0.00653595 0.22993 1.69729e-06 1.60131e-10 2.718 ||| 0-2 ||| 306 1.17835e+06 +en ||| neglected as ||| 0.111111 0.066968 8.48644e-07 6.47564e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| neglected in ||| 0.04 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| neglecting ||| 0.00505051 0.0055866 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 198 1.17835e+06 +en ||| negligence on ||| 0.1 0.22993 8.48644e-07 9.13532e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| negligible quantity in ||| 0.5 0.605812 8.48644e-07 5.55984e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| negotiate freely the conditions of ||| 1 0.0116562 8.48644e-07 1.07949e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| negotiating in ||| 0.037037 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| negotiations are continuing in ||| 0.5 0.605812 8.48644e-07 2.4027e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| negotiations as a ||| 0.0909091 0.066968 8.48644e-07 4.4172e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| negotiations as ||| 0.015625 0.066968 8.48644e-07 9.9653e-07 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| negotiations in ||| 0.00675676 0.605812 2.54593e-06 2.55827e-05 2.718 ||| 0-1 ||| 444 1.17835e+06 +en ||| negotiations on ||| 0.0013089 0.22993 1.69729e-06 4.60088e-06 2.718 ||| 0-1 ||| 1528 1.17835e+06 +en ||| negotiations were taking place ||| 0.142857 0.0153333 8.48644e-07 2.57201e-14 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| negotiations were taking ||| 0.5 0.0153333 8.48644e-07 1.70897e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| negotiations within ||| 0.015625 0.369196 8.48644e-07 6.14203e-07 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| negotiator in ||| 0.2 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| neighbourhood at ||| 0.5 0.321886 8.48644e-07 1.88009e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| neighbouring countries and are in ||| 1 0.605812 8.48644e-07 2.03272e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| neither in ||| 0.0212766 0.605812 8.48644e-07 1.02977e-05 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| neither ||| 0.00115075 0.0021409 3.39458e-06 6.8e-06 2.718 ||| 0-0 ||| 3476 1.17835e+06 +en ||| network in ||| 0.0322581 0.605812 8.48644e-07 1.14522e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| neuronal ||| 0.25 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| never before , with ||| 1 0.0535436 8.48644e-07 2.00295e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| never before seen in ||| 0.2 0.605812 8.48644e-07 1.40031e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| never to be seen again ||| 0.25 0.0247351 8.48644e-07 3.57182e-15 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| never to be seen ||| 0.333333 0.0247351 8.48644e-07 6.17642e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| never to be ||| 0.2 0.0247351 8.48644e-07 2.93417e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| never to ||| 0.0185185 0.0247351 8.48644e-07 1.61904e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| never ||| 0.000136147 0.0002113 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 7345 1.17835e+06 +en ||| nevertheless , as ||| 0.0123457 0.066968 8.48644e-07 2.63209e-07 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| nevertheless , at ||| 0.0666667 0.321886 8.48644e-07 5.85331e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| nevertheless ||| 0.000130617 0.0019569 8.48644e-07 1.7e-05 2.718 ||| 0-0 ||| 7656 1.17835e+06 +en ||| new Member States into ||| 0.04 0.525896 8.48644e-07 3.25363e-12 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| new Member of ||| 0.0384615 0.0116562 8.48644e-07 4.20013e-09 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| new Treaty across ||| 1 0.274879 8.48644e-07 1.05104e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| new approaches to ||| 0.0344828 0.0247351 8.48644e-07 1.81444e-10 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| new arguments , in ||| 0.5 0.605812 8.48644e-07 7.93253e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| new campaign to defend ||| 0.166667 0.0247351 8.48644e-07 1.08498e-14 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| new campaign to ||| 0.166667 0.0247351 8.48644e-07 5.1913e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| new chapter ||| 0.00806452 0.0097087 8.48644e-07 5.67815e-09 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| new currency becomes part ||| 1 0.162791 8.48644e-07 1.01565e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| new currency becomes ||| 1 0.162791 8.48644e-07 8.5191e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| new definition goes on to say that ||| 1 0.22993 8.48644e-07 2.68138e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| new definition goes on to say ||| 1 0.22993 8.48644e-07 1.59401e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| new definition goes on to ||| 1 0.22993 8.48644e-07 1.66773e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| new definition goes on ||| 1 0.22993 8.48644e-07 1.87684e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| new departure in ||| 0.111111 0.605812 8.48644e-07 3.09127e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| new factors into ||| 1 0.525896 8.48644e-07 3.95621e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| new form ||| 0.00529101 0.0005197 8.48644e-07 2.45057e-09 2.718 ||| 0-1 ||| 189 1.17835e+06 +en ||| new in ||| 0.0285714 0.605812 1.69729e-06 0.000276007 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| new jobs at ||| 0.142857 0.321886 8.48644e-07 1.2385e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| new law adopted recently ||| 1 0.0095755 8.48644e-07 1.31558e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| new light on ||| 0.1 0.22993 8.48644e-07 8.62709e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| new procedure is creeping in ||| 1 0.605812 8.48644e-07 1.21589e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| new prospects on all aspects ||| 0.5 0.22993 8.48644e-07 2.08359e-16 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| new prospects on all ||| 0.5 0.22993 8.48644e-07 2.95545e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| new prospects on ||| 0.5 0.22993 8.48644e-07 6.25439e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| new provisions on ||| 0.0212766 0.22993 8.48644e-07 3.91148e-09 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| new rules on its own authority , ||| 1 0.22993 8.48644e-07 7.06082e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| new rules on its own authority ||| 1 0.22993 8.48644e-07 5.92079e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| new rules on its own ||| 1 0.22993 8.48644e-07 1.39313e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| new rules on its ||| 1 0.22993 8.48644e-07 8.21758e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| new rules on ||| 0.0120482 0.22993 8.48644e-07 5.76794e-09 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| new security policy concept for Europe as ||| 1 0.0286209 8.48644e-07 6.78405e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| new security policy concept for Europe ||| 1 0.0286209 8.48644e-07 6.64817e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| new security policy concept for ||| 1 0.0286209 8.48644e-07 1.31387e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| new standard and ||| 1 0.0010182 8.48644e-07 2.59755e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| new to ||| 0.0194175 0.0247351 1.69729e-06 1.68003e-05 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| new way of securing ||| 1 0.0116562 8.48644e-07 2.28409e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| new way of ||| 0.0117647 0.0116562 8.48644e-07 1.75699e-08 2.718 ||| 0-2 ||| 85 1.17835e+06 +en ||| news concerning ||| 0.142857 0.0888235 8.48644e-07 4.3992e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| news if you are ||| 1 0.0178573 8.48644e-07 2.0619e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| news if you ||| 1 0.0178573 8.48644e-07 1.35895e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| news if ||| 0.166667 0.0178573 8.48644e-07 4.20899e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| news in ||| 0.0238095 0.605812 8.48644e-07 1.67627e-05 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| news of ||| 0.0075188 0.0116562 8.48644e-07 4.95023e-07 2.718 ||| 0-1 ||| 133 1.17835e+06 +en ||| newspaper ||| 0.00712251 0.0215343 4.24322e-06 1.09e-05 2.718 ||| 0-0 ||| 702 1.17835e+06 +en ||| newsreels showing wretched ||| 1 1 8.48644e-07 3.0282e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| newsreels showing ||| 1 1 8.48644e-07 2.163e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| newsreels ||| 1 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| next Intergovernmental Conference on ||| 1 0.22993 8.48644e-07 8.02127e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| next in ||| 0.0769231 0.605812 1.69729e-06 4.7702e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| next item ||| 0.000706215 0.001036 8.48644e-07 6.9552e-10 2.718 ||| 0-0 ||| 1416 1.17835e+06 +en ||| next to our ||| 0.142857 0.0247351 8.48644e-07 4.00521e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| next to ||| 0.0119048 0.0247351 1.69729e-06 2.90359e-06 2.718 ||| 0-1 ||| 168 1.17835e+06 +en ||| next we go on ||| 0.5 0.22993 8.48644e-07 5.69538e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| next ||| 0.000258171 0.001036 4.24322e-06 1.84e-05 2.718 ||| 0-0 ||| 19367 1.17835e+06 +en ||| nicely put in ||| 1 0.605812 8.48644e-07 1.2729e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| night at ||| 0.0909091 0.321886 8.48644e-07 3.88019e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| nip in ||| 0.125 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| no account ||| 0.00757576 0.233636 8.48644e-07 2.57316e-06 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| no change in ||| 0.0344828 0.605812 8.48644e-07 4.38529e-08 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| no doubt the ||| 0.0178571 0.0011669 8.48644e-07 2.03811e-10 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| no fewer than ||| 0.00961538 0.0013548 8.48644e-07 8.64709e-13 2.718 ||| 0-2 ||| 104 1.17835e+06 +en ||| no later than in ||| 0.333333 0.605812 8.48644e-07 9.44384e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| no later than with ||| 1 0.0535436 8.48644e-07 2.38435e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| no longer be guaranteed places in ||| 1 0.605812 8.48644e-07 2.28086e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| no longer exist in ||| 0.2 0.605812 8.48644e-07 6.20726e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| no longer have an overall ||| 0.333333 0.135441 8.48644e-07 4.93044e-15 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| no longer in tune with ||| 0.5 0.605812 8.48644e-07 1.2886e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| no longer in tune ||| 0.5 0.605812 8.48644e-07 2.01517e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| no longer in ||| 0.027027 0.605812 8.48644e-07 6.7397e-08 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| no longer on ||| 0.0666667 0.22993 8.48644e-07 1.21209e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| no longer voting in ||| 1 0.605812 8.48644e-07 2.62174e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| no matter in ||| 1 0.605812 8.48644e-07 3.7293e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| no matter where ||| 0.0263158 0.247783 8.48644e-07 6.87792e-09 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| no matter whether it is in ||| 1 0.605812 8.48644e-07 5.46023e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| no mention of them ||| 0.333333 0.0116562 8.48644e-07 2.76765e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| no mention of ||| 0.0149254 0.0116562 8.48644e-07 1.03178e-09 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| no more than ||| 0.00611621 0.0042952 1.69729e-06 7.91165e-11 2.718 ||| 0-1 ||| 327 1.17835e+06 +en ||| no more ||| 0.00134589 0.0042952 8.48644e-07 2.58974e-07 2.718 ||| 0-1 ||| 743 1.17835e+06 +en ||| no need for ||| 0.0183486 0.0286209 1.69729e-06 8.21143e-09 2.718 ||| 0-2 ||| 109 1.17835e+06 +en ||| no one in ||| 0.00787402 0.605812 8.48644e-07 1.49819e-06 2.718 ||| 0-2 ||| 127 1.17835e+06 +en ||| no one knows in advance ||| 1 0.605812 8.48644e-07 1.10532e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| no one knows in ||| 1 0.605812 8.48644e-07 3.13122e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| no place at ||| 1 0.321886 8.48644e-07 4.6862e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| no place in ||| 0.037037 0.605812 8.48644e-07 5.40973e-07 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| no question of us in ||| 1 0.605812 8.48644e-07 4.65948e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| no substitute in ||| 0.5 0.605812 8.48644e-07 1.54564e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| no such thing as a ||| 0.0666667 0.066968 8.48644e-07 4.68547e-13 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| no such thing as ||| 0.0192308 0.066968 8.48644e-07 1.05705e-11 2.718 ||| 0-3 ||| 52 1.17835e+06 +en ||| no voice in ||| 1 0.605812 8.48644e-07 1.56361e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| no ||| 1.90168e-05 7.69e-05 8.48644e-07 4.1e-06 2.718 ||| 0-0 ||| 52585 1.17835e+06 +en ||| no-one in regarding the activities ||| 1 0.605812 8.48644e-07 5.58039e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| no-one in regarding the ||| 1 0.605812 8.48644e-07 7.01935e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| no-one in regarding ||| 1 0.605812 8.48644e-07 1.14337e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| no-one in ||| 0.0666667 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| noise at ||| 0.0322581 0.321886 8.48644e-07 5.48027e-07 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| noise into ||| 0.5 0.525896 8.48644e-07 3.03281e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| non in ||| 0.166667 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| non-EU nationals on ||| 1 0.22993 8.48644e-07 1.02316e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| non-contribution-based benefit ||| 0.333333 1 8.48644e-07 9.219e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| non-contribution-based ||| 0.333333 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| non-discrimination in the Treaty ||| 0.5 0.605812 8.48644e-07 9.70689e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| non-discrimination in the ||| 0.04 0.605812 8.48644e-07 1.13398e-08 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| non-discrimination in ||| 0.0204082 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| non-managerial ||| 1 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| none or rather , through ||| 1 0.16257 8.48644e-07 3.23767e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| none or rather , ||| 1 0.16257 8.48644e-07 7.03383e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| none or rather ||| 1 0.16257 8.48644e-07 5.89816e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| nonetheless , in ||| 0.030303 0.605812 8.48644e-07 4.20181e-06 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| nonetheless in ||| 0.142857 0.605812 8.48644e-07 3.52339e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| nonetheless like , however , to highlight ||| 1 0.0053256 8.48644e-07 1.19854e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| nonetheless like , however , to ||| 1 0.0053256 8.48644e-07 6.40931e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| nonetheless like , however , ||| 1 0.0053256 8.48644e-07 7.21297e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| nonetheless like , however ||| 1 0.0053256 8.48644e-07 6.04837e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| nor , as a rule , are ||| 0.333333 0.066968 8.48644e-07 7.45536e-16 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| nor , as a rule , ||| 0.333333 0.066968 8.48644e-07 4.91367e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| nor , as a rule ||| 0.333333 0.066968 8.48644e-07 4.12031e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| nor , as a ||| 0.25 0.066968 8.48644e-07 5.06804e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| nor , as ||| 0.111111 0.066968 8.48644e-07 1.14336e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| nor , at ||| 1 0.321886 8.48644e-07 2.54264e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| nor are they ||| 0.0232558 0.0049763 8.48644e-07 1.45104e-09 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| nor are ||| 0.0227273 0.0049763 1.69729e-06 4.4456e-07 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| nor can ||| 0.011976 0.0049763 1.69729e-06 8.7147e-08 2.718 ||| 0-0 ||| 167 1.17835e+06 +en ||| nor half ||| 0.2 0.0049763 8.48644e-07 8.4384e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| nor ||| 0.00149254 0.0049763 9.33509e-06 2.93e-05 2.718 ||| 0-0 ||| 7370 1.17835e+06 +en ||| normal procedures , with ||| 1 0.0535436 8.48644e-07 9.97068e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| normally broadcast in ||| 1 0.605812 8.48644e-07 3.35207e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| normally coming in ||| 0.333333 0.605812 8.48644e-07 1.06772e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| normally moves in ||| 1 0.605812 8.48644e-07 8.51755e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| normally ||| 0.00199203 0.0185676 1.69729e-06 1.43e-05 2.718 ||| 0-0 ||| 1004 1.17835e+06 +en ||| normative at ||| 0.5 0.321886 8.48644e-07 2.80014e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| noses at ||| 1 0.321886 8.48644e-07 5.60028e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| not 's in ||| 1 0.605812 8.48644e-07 3.00241e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not , as ||| 0.00793651 0.066968 8.48644e-07 7.32373e-06 2.718 ||| 0-2 ||| 126 1.17835e+06 +en ||| not , in ||| 0.0545455 0.605812 2.54593e-06 0.000188013 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| not , on ||| 0.0909091 0.22993 8.48644e-07 3.38129e-05 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| not , under ||| 0.2 0.205566 2.54593e-06 2.30226e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| not a formal recommendation to ||| 1 0.0247351 8.48644e-07 1.11426e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| not a ||| 0.000345901 0.0008293 8.48644e-07 8.054e-06 2.718 ||| 0-0 ||| 2891 1.17835e+06 +en ||| not about whether ||| 0.5 0.0401564 8.48644e-07 2.57056e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| not about ||| 0.00555556 0.0401564 8.48644e-07 9.78515e-06 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| not acceptable ||| 0.00374532 0.0008293 8.48644e-07 5.88708e-09 2.718 ||| 0-0 ||| 267 1.17835e+06 +en ||| not achieved , the ||| 1 0.0008293 8.48644e-07 2.22555e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| not achieved , ||| 0.5 0.0008293 8.48644e-07 3.62515e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| not achieved ||| 0.0384615 0.0008293 8.48644e-07 3.03984e-08 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| not agree ||| 0.00438596 0.071674 8.48644e-07 4.36049e-06 2.718 ||| 0-1 ||| 228 1.17835e+06 +en ||| not all happy with ||| 0.166667 0.0535436 8.48644e-07 1.18499e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| not allowed to ||| 0.0172414 0.0247351 8.48644e-07 1.55367e-08 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| not always bear in ||| 1 0.605812 8.48644e-07 4.05941e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| not an ||| 0.00207039 0.0008293 8.48644e-07 8.07602e-07 2.718 ||| 0-0 ||| 483 1.17835e+06 +en ||| not appear on ||| 0.25 0.22993 8.48644e-07 2.4781e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| not applicable in ||| 0.5 0.605812 8.48644e-07 3.79953e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| not as ||| 0.00762195 0.066968 4.24322e-06 6.14125e-05 2.718 ||| 0-1 ||| 656 1.17835e+06 +en ||| not at all in ||| 0.333333 0.605812 8.48644e-07 3.11957e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| not at all surprising ||| 0.5 0.321886 8.48644e-07 3.22676e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| not at all ||| 0.00529101 0.321886 8.48644e-07 6.45352e-07 2.718 ||| 0-1 ||| 189 1.17835e+06 +en ||| not at ||| 0.0396975 0.321886 1.78215e-05 0.000136571 2.718 ||| 0-1 ||| 529 1.17835e+06 +en ||| not based on ||| 0.0208333 0.22993 8.48644e-07 6.65174e-08 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| not be able to become members of ||| 1 0.0116562 8.48644e-07 2.63789e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| not be allowed to conceal ||| 1 0.0247351 8.48644e-07 1.71757e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| not be allowed to ||| 0.00917431 0.0247351 8.48644e-07 2.81569e-10 2.718 ||| 0-3 ||| 109 1.17835e+06 +en ||| not be any doubts cast on ||| 1 0.22993 8.48644e-07 2.36376e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| not be diverted by the ||| 0.5 0.0468744 8.48644e-07 1.61572e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| not be diverted by ||| 0.5 0.0468744 8.48644e-07 2.63182e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| not be in ||| 0.0526316 0.605812 2.54593e-06 2.8572e-05 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| not be preferable ||| 0.333333 0.0008293 8.48644e-07 1.41596e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| not be required in ||| 0.25 0.605812 8.48644e-07 4.53437e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| not be ||| 0.00053135 0.0008293 2.54593e-06 3.29293e-06 2.718 ||| 0-0 ||| 5646 1.17835e+06 +en ||| not been fulfilled in ||| 1 0.605812 8.48644e-07 6.05414e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| not been recorded in ||| 0.5 0.605812 8.48644e-07 1.10027e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| not being taken on ||| 1 0.22993 1.69729e-06 7.35476e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| not belong with ||| 1 0.0535436 8.48644e-07 1.14637e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not by a ||| 0.0740741 0.0468744 1.69729e-06 1.2874e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| not by ||| 0.00792393 0.0468744 4.24322e-06 2.90441e-05 2.718 ||| 0-1 ||| 631 1.17835e+06 +en ||| not change that ||| 0.2 0.0017499 8.48644e-07 4.35347e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| not changed at ||| 1 0.321886 8.48644e-07 4.46587e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not come into the industry , ||| 1 0.525896 8.48644e-07 6.20799e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not come into the industry ||| 1 0.525896 8.48644e-07 5.20565e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not come into the ||| 1 0.525896 8.48644e-07 3.94069e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not come into ||| 0.0833333 0.525896 8.48644e-07 6.41892e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| not connected with ||| 0.0769231 0.0535436 8.48644e-07 8.04054e-10 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| not currently involved with ||| 0.25 0.0535436 8.48644e-07 1.43701e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| not decide on ||| 0.333333 0.22993 8.48644e-07 1.81746e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| not defined in ||| 1 0.605812 8.48644e-07 5.2815e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not delay in bringing ||| 1 0.605812 8.48644e-07 3.96253e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not delay in ||| 0.166667 0.605812 8.48644e-07 4.93465e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| not doomed to ||| 0.5 0.0247351 8.48644e-07 2.78297e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| not drawn down in ||| 0.5 0.605812 8.48644e-07 1.56395e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| not during ||| 0.0714286 0.226251 8.48644e-07 9.87119e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| not easy in ||| 1 0.605812 8.48644e-07 5.95942e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not easy when it ||| 1 0.142731 8.48644e-07 1.36627e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not easy when ||| 1 0.142731 8.48644e-07 7.68291e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not entirely innocent in ||| 1 0.605812 8.48644e-07 5.63591e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| not equipped with ||| 0.333333 0.0535436 8.48644e-07 4.2989e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| not even considered ||| 0.5 0.0169998 8.48644e-07 1.52695e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| not even got as far as ||| 1 0.066968 8.48644e-07 2.84808e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| not exist in ||| 0.125 0.605812 8.48644e-07 1.45202e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| not fall ||| 0.0188679 0.0008293 8.48644e-07 1.73887e-08 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| not feel in ||| 1 0.605812 8.48644e-07 2.66597e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not few in ||| 0.166667 0.605812 8.48644e-07 2.76372e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| not filled in ||| 0.5 0.605812 8.48644e-07 1.63963e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| not find its way into ||| 1 0.525896 8.48644e-07 7.72692e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| not for ||| 0.00277008 0.0286209 1.69729e-06 3.92799e-05 2.718 ||| 0-1 ||| 722 1.17835e+06 +en ||| not genuinely competitive ||| 1 0.0008293 8.48644e-07 1.1869e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| not genuinely ||| 1 0.0008293 8.48644e-07 6.21414e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| not get carried away in ||| 0.5 0.605812 8.48644e-07 6.46154e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| not given ||| 0.025974 0.0546585 1.69729e-06 3.96343e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| not go along with ||| 0.5 0.0535436 8.48644e-07 4.06197e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| not go into it ||| 0.2 0.266972 8.48644e-07 1.21895e-10 2.718 ||| 0-2 0-3 ||| 5 1.17835e+06 +en ||| not going ||| 0.00318471 0.0008293 8.48644e-07 1.55499e-07 2.718 ||| 0-0 ||| 314 1.17835e+06 +en ||| not good in ||| 1 0.605812 8.48644e-07 8.17608e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not happen in ||| 0.222222 0.605812 1.69729e-06 1.71373e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| not have a situation in ||| 1 0.605812 8.48644e-07 4.30428e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| not have a ||| 0.00735294 0.0015231 8.48644e-07 3.36455e-08 2.718 ||| 0-2 ||| 136 1.17835e+06 +en ||| not have strength in numbers ||| 1 0.605812 8.48644e-07 2.28664e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| not have strength in ||| 1 0.605812 8.48644e-07 4.67615e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| not have ||| 0.00073692 0.0008293 8.48644e-07 2.1731e-06 2.718 ||| 0-0 ||| 1357 1.17835e+06 +en ||| not help if Parliament ||| 1 0.0178573 8.48644e-07 4.33321e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not help if they are ||| 1 0.0178573 8.48644e-07 3.73861e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not help if they ||| 1 0.0178573 8.48644e-07 2.46404e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not help if ||| 1 0.0178573 1.69729e-06 7.54914e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| not helped in ||| 0.5 0.605812 8.48644e-07 3.1216e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| not here in ||| 0.0909091 0.605812 8.48644e-07 3.19696e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| not in any way ||| 0.0138889 0.605812 8.48644e-07 5.13913e-09 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| not in any ||| 0.0131579 0.605812 8.48644e-07 2.38408e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| not in the ||| 0.00506329 0.605812 1.69729e-06 9.67883e-05 2.718 ||| 0-1 ||| 395 1.17835e+06 +en ||| not in ||| 0.0510441 0.605812 7.46807e-05 0.00157657 2.718 ||| 0-1 ||| 1724 1.17835e+06 +en ||| not invest in ||| 0.5 0.605812 8.48644e-07 1.48197e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| not just in ||| 0.00772798 0.605812 4.24322e-06 1.98915e-06 2.718 ||| 0-2 ||| 647 1.17835e+06 +en ||| not know what ||| 0.030303 0.0035633 8.48644e-07 3.44055e-10 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| not lead to ||| 0.0363636 0.0247351 1.69729e-06 1.84732e-08 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| not least , in ||| 0.105263 0.605812 1.69729e-06 4.61384e-08 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| not least as ||| 0.015625 0.066968 8.48644e-07 1.50706e-08 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| not least in the ||| 0.00684932 0.303489 8.48644e-07 1.10832e-09 2.718 ||| 0-2 0-3 ||| 146 1.17835e+06 +en ||| not least in ||| 0.0155211 0.605812 5.94051e-06 3.8689e-07 2.718 ||| 0-2 ||| 451 1.17835e+06 +en ||| not least of ||| 0.0344828 0.0116562 8.48644e-07 1.14254e-08 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| not least on ||| 0.0217391 0.22993 8.48644e-07 6.95796e-08 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| not located exclusively within ||| 0.166667 0.369196 8.48644e-07 1.24848e-14 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| not mind if a ||| 0.25 0.0178573 8.48644e-07 4.4201e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| not mind if ||| 0.0833333 0.0178573 8.48644e-07 9.97184e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| not need to have ||| 0.5 0.0247351 8.48644e-07 1.05234e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| not need to ||| 0.0204082 0.0247351 8.48644e-07 8.79899e-08 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| not off ||| 0.25 0.0262428 8.48644e-07 5.7152e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| not on the ||| 0.00507614 0.22993 8.48644e-07 1.74068e-05 2.718 ||| 0-1 ||| 197 1.17835e+06 +en ||| not on ||| 0.0155039 0.22993 8.48644e-06 0.000283536 2.718 ||| 0-1 ||| 645 1.17835e+06 +en ||| not only as ||| 0.00625 0.066968 8.48644e-07 6.83582e-08 2.718 ||| 0-2 ||| 160 1.17835e+06 +en ||| not only at ||| 0.0114286 0.321886 1.69729e-06 1.52017e-07 2.718 ||| 0-2 ||| 175 1.17835e+06 +en ||| not only by ||| 0.00327869 0.0468744 8.48644e-07 3.2329e-08 2.718 ||| 0-2 ||| 305 1.17835e+06 +en ||| not only flies in ||| 0.166667 0.605812 8.48644e-07 8.24792e-12 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| not only for ||| 0.000856898 0.0286209 8.48644e-07 4.37225e-08 2.718 ||| 0-2 ||| 1167 1.17835e+06 +en ||| not only in Austria ||| 0.5 0.605812 8.48644e-07 1.82507e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| not only in doing ||| 0.2 0.605812 8.48644e-07 6.44215e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| not only in the ||| 0.00221239 0.605812 8.48644e-07 1.07735e-07 2.718 ||| 0-2 ||| 452 1.17835e+06 +en ||| not only in ||| 0.012266 0.605812 1.61242e-05 1.75488e-06 2.718 ||| 0-2 ||| 1549 1.17835e+06 +en ||| not only on ||| 0.00950119 0.22993 3.39458e-06 3.15603e-07 2.718 ||| 0-2 ||| 421 1.17835e+06 +en ||| not only through ||| 0.010989 0.0366102 8.48644e-07 3.57374e-09 2.718 ||| 0-2 ||| 91 1.17835e+06 +en ||| not only when ||| 0.0208333 0.142731 8.48644e-07 2.26239e-08 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| not only within ||| 0.0106383 0.369196 8.48644e-07 4.21321e-08 2.718 ||| 0-2 ||| 94 1.17835e+06 +en ||| not only ||| 0.000402878 0.0008293 5.94051e-06 2.0225e-07 2.718 ||| 0-0 ||| 17375 1.17835e+06 +en ||| not our ||| 0.0147059 0.0004869 8.48644e-07 1.67291e-07 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| not pay to be ||| 0.5 0.0247351 8.48644e-07 2.49047e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| not pay to ||| 0.5 0.0247351 8.48644e-07 1.37421e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| not permit them in ||| 1 0.605812 1.69729e-06 1.01918e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| not possible for a ||| 0.5 0.0286209 8.48644e-07 1.39655e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| not possible for ||| 0.0588235 0.0286209 8.48644e-07 3.15064e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| not put forward nearly enough on ||| 1 0.22993 8.48644e-07 4.77014e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| not put money on it - ||| 1 0.22993 8.48644e-07 3.42666e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| not put money on it ||| 1 0.22993 8.48644e-07 9.08422e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| not put money on ||| 1 0.22993 8.48644e-07 5.10831e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| not really ||| 0.0025974 0.007087 8.48644e-07 2.92588e-07 2.718 ||| 0-1 ||| 385 1.17835e+06 +en ||| not relate in ||| 1 0.605812 8.48644e-07 3.90989e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not resolved ||| 0.0344828 0.0008293 8.48644e-07 4.70603e-09 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| not seem to ||| 0.0384615 0.0247351 8.48644e-07 8.77116e-09 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| not share ||| 0.0285714 0.0008293 8.48644e-07 1.70071e-08 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| not so as ||| 0.25 0.066968 8.48644e-07 1.39388e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| not so in ||| 0.125 0.605812 8.48644e-07 3.57833e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| not speak out ||| 0.111111 0.0120599 8.48644e-07 2.54291e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| not subsided in ||| 0.333333 0.605812 8.48644e-07 1.1036e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| not take any initiatives ||| 1 0.0074151 8.48644e-07 4.78872e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| not take any ||| 0.125 0.0074151 8.48644e-07 1.51064e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| not take ||| 0.00887574 0.0074151 2.54593e-06 9.98966e-07 2.718 ||| 0-1 ||| 338 1.17835e+06 +en ||| not that ||| 0.00396825 0.0017499 8.48644e-07 3.56842e-06 2.718 ||| 0-1 ||| 252 1.17835e+06 +en ||| not the case . in ||| 1 0.605812 8.48644e-07 3.13664e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| not the case at ||| 0.25 0.321886 8.48644e-07 8.97039e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| not the ||| 0.000324254 0.0011669 8.48644e-07 9.78037e-06 2.718 ||| 0-1 ||| 3084 1.17835e+06 +en ||| not to abide by ||| 0.333333 0.0247351 8.48644e-07 3.62753e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| not to abide ||| 1 0.0247351 8.48644e-07 6.90945e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| not to specify at ||| 1 0.321886 8.48644e-07 8.73752e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| not to ||| 0.000660677 0.0247351 4.24322e-06 9.59645e-05 2.718 ||| 0-1 ||| 7568 1.17835e+06 +en ||| not too distant ||| 0.015873 0.0008293 8.48644e-07 8.90257e-13 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| not too ||| 0.00694444 0.0008293 8.48644e-07 2.47294e-07 2.718 ||| 0-0 ||| 144 1.17835e+06 +en ||| not try in ||| 0.25 0.605812 8.48644e-07 2.42791e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| not under ||| 0.0963855 0.205566 6.78915e-06 1.93054e-05 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| not understand about ||| 0.5 0.0401564 8.48644e-07 7.6422e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| not up to ||| 0.0222222 0.0247351 8.48644e-07 3.27287e-07 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| not upon ||| 0.166667 0.114601 8.48644e-07 3.01772e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| not usual in Dutch ||| 1 0.605812 8.48644e-07 4.52758e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not usual in ||| 1 0.605812 8.48644e-07 2.72746e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| not we ||| 0.0120482 0.0054082 8.48644e-07 7.72918e-06 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| not wish to quote at length here ||| 1 0.321886 8.48644e-07 1.24525e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| not wish to quote at length ||| 1 0.321886 8.48644e-07 6.14089e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| not wish to quote at ||| 1 0.321886 8.48644e-07 1.59504e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| not wish to ||| 0.0140845 0.0247351 8.48644e-07 2.82808e-08 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| not with more but with ||| 0.5 0.0535436 8.48644e-07 3.97241e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| not with more but ||| 0.5 0.0535436 8.48644e-07 6.21223e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| not with more ||| 0.333333 0.0535436 8.48644e-07 9.09019e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| not with ||| 0.0058997 0.0535436 1.69729e-06 3.98047e-05 2.718 ||| 0-1 ||| 339 1.17835e+06 +en ||| not without value in ||| 1 0.605812 8.48644e-07 3.05914e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| not worth the ||| 0.125 0.0011669 8.48644e-07 7.07121e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| not written in court ||| 0.25 0.605812 8.48644e-07 2.35697e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| not written in ||| 0.166667 0.605812 8.48644e-07 7.88283e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| not yet been achieved on ||| 1 0.22993 8.48644e-07 4.18959e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| not yet been set up in ||| 1 0.605812 8.48644e-07 2.77529e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| not yet over in ||| 1 0.605812 8.48644e-07 2.00786e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| not yet said what is to become ||| 1 0.219193 8.48644e-07 5.54909e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| not ||| 0.000850916 0.0008293 0.00018755 0.0001817 2.718 ||| 0-0 ||| 259720 1.17835e+06 +en ||| notably , ||| 0.0126582 0.236083 8.48644e-07 3.71598e-05 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| notably in ||| 0.0045045 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 222 1.17835e+06 +en ||| notably ||| 0.00557103 0.236083 6.78915e-06 0.0003116 2.718 ||| 0-0 ||| 1436 1.17835e+06 +en ||| note in ||| 0.0461538 0.605812 2.54593e-06 4.82099e-05 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| note of the ||| 0.00232558 0.0116562 8.48644e-07 8.74037e-08 2.718 ||| 0-1 ||| 430 1.17835e+06 +en ||| note of ||| 0.00221239 0.0116562 2.54593e-06 1.4237e-06 2.718 ||| 0-1 ||| 1356 1.17835e+06 +en ||| note that in ||| 0.0333333 0.605812 8.48644e-07 8.10968e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| note that ||| 0.00087184 0.0004135 8.48644e-07 3.36432e-08 2.718 ||| 0-0 ||| 1147 1.17835e+06 +en ||| note with a ||| 0.5 0.0535436 8.48644e-07 5.39529e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| note with ||| 0.00877193 0.0535436 8.48644e-07 1.21719e-06 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| note ||| 0.000212044 0.0004135 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 4716 1.17835e+06 +en ||| noted , I mean in the ||| 1 0.605812 8.48644e-07 1.88579e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| noted , I mean in ||| 1 0.605812 8.48644e-07 3.07172e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| noted during ||| 0.2 0.226251 8.48644e-07 8.84738e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| noted first of all in ||| 1 0.605812 8.48644e-07 1.9544e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| noted in ||| 0.0666667 0.605812 7.6378e-06 1.41305e-05 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| noted with sorrow in ||| 0.333333 0.605812 8.48644e-07 2.62037e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| noted ||| 0.000376223 0.0006035 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 2658 1.17835e+06 +en ||| notes in ||| 0.0454545 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| nothing at ||| 0.0222222 0.321886 8.48644e-07 7.44437e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| nothing but ||| 0.00408163 0.001622 8.48644e-07 3.26792e-08 2.718 ||| 0-1 ||| 245 1.17835e+06 +en ||| nothing could be further from the ||| 0.0294118 0.0308834 8.48644e-07 2.70768e-16 2.718 ||| 0-4 ||| 34 1.17835e+06 +en ||| nothing could be further from ||| 0.0277778 0.0308834 8.48644e-07 4.4105e-15 2.718 ||| 0-4 ||| 36 1.17835e+06 +en ||| nothing in ||| 0.0196078 0.605812 1.69729e-06 8.59375e-05 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| nothing so ||| 0.0714286 0.0087276 8.48644e-07 1.26753e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| nothing to do with ||| 0.00460829 0.0535436 8.48644e-07 6.62317e-10 2.718 ||| 0-3 ||| 217 1.17835e+06 +en ||| nothing to do ||| 0.00408163 0.0247351 8.48644e-07 1.79699e-08 2.718 ||| 0-1 ||| 245 1.17835e+06 +en ||| nothing to ||| 0.00395778 0.0247351 2.54593e-06 5.23095e-06 2.718 ||| 0-1 ||| 758 1.17835e+06 +en ||| notice in ||| 0.0769231 0.605812 8.48644e-07 1.77786e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| notice of it at ||| 1 0.321886 8.48644e-07 1.48889e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| notice of ||| 0.00584795 0.0116562 8.48644e-07 5.25024e-07 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| notice on ||| 0.125 0.22993 8.48644e-07 3.19736e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| noticed in ||| 0.03125 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| noting ||| 0.00287356 0.0025707 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 348 1.17835e+06 +en ||| notion that there will ||| 1 0.0017499 8.48644e-07 6.87386e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| notion that there ||| 0.5 0.0017499 8.48644e-07 7.94555e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| notion that ||| 0.00440529 0.0017499 8.48644e-07 2.5921e-08 2.718 ||| 0-1 ||| 227 1.17835e+06 +en ||| now , at this ||| 0.0555556 0.321886 8.48644e-07 6.34936e-08 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| now , at ||| 0.0434783 0.321886 4.24322e-06 9.8266e-06 2.718 ||| 0-2 ||| 115 1.17835e+06 +en ||| now , during ||| 0.142857 0.226251 8.48644e-07 7.10256e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| now , for ||| 0.0123457 0.0286209 8.48644e-07 2.82628e-06 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| now , here in ||| 0.333333 0.605812 8.48644e-07 2.30029e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| now , in the cement of ||| 1 0.605812 8.48644e-07 4.16459e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| now , in the cement ||| 1 0.605812 8.48644e-07 7.66057e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| now , in the ||| 0.0147059 0.605812 8.48644e-07 6.96415e-06 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| now , in ||| 0.0410448 0.605812 9.33509e-06 0.000113438 2.718 ||| 0-2 ||| 268 1.17835e+06 +en ||| now , it is also ||| 0.5 0.0080472 8.48644e-07 1.07198e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| now , it is ||| 0.015625 0.0080472 8.48644e-07 2.12331e-08 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| now , it ||| 0.0169492 0.0080472 8.48644e-07 6.77486e-07 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| now , on ||| 0.0322581 0.22993 8.48644e-07 2.04011e-05 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| now , we in ||| 0.5 0.605812 8.48644e-07 1.28778e-06 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| now , which ||| 0.0357143 0.0123946 8.48644e-07 5.99708e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| now , with ||| 0.0140845 0.0535436 1.69729e-06 2.86404e-06 2.718 ||| 0-2 ||| 142 1.17835e+06 +en ||| now , within ||| 0.2 0.369196 8.48644e-07 2.72348e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| now , ||| 0.00316233 0.0123946 1.52756e-05 7.05988e-05 2.718 ||| 0-0 ||| 5692 1.17835e+06 +en ||| now I would ||| 0.125 0.0123946 8.48644e-07 2.45753e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| now I ||| 0.0152672 0.0123946 1.69729e-06 4.18751e-06 2.718 ||| 0-0 ||| 131 1.17835e+06 +en ||| now able to ||| 0.0555556 0.0247351 8.48644e-07 4.83409e-08 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| now allowing ||| 0.25 0.0123946 8.48644e-07 2.98368e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| now already in ||| 0.5 0.605812 8.48644e-07 4.40511e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| now also in ||| 0.2 0.605812 8.48644e-07 4.80234e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| now also ||| 0.00353357 0.0123946 8.48644e-07 2.98877e-06 2.718 ||| 0-0 ||| 283 1.17835e+06 +en ||| now among ||| 0.333333 0.0422459 8.48644e-07 6.56078e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| now and in ||| 0.00495049 0.605812 8.48644e-07 1.19149e-05 2.718 ||| 0-2 ||| 202 1.17835e+06 +en ||| now and ||| 0.00286533 0.0123946 2.54593e-06 7.41533e-06 2.718 ||| 0-0 ||| 1047 1.17835e+06 +en ||| now approve ||| 0.25 0.0123946 8.48644e-07 1.32016e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| now are living in ||| 1 0.605812 8.48644e-07 1.20945e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| now as ||| 0.0162602 0.066968 1.69729e-06 3.70533e-05 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| now at least ||| 0.0384615 0.321886 8.48644e-07 2.0221e-08 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| now at ||| 0.0478469 0.321886 8.48644e-06 8.24001e-05 2.718 ||| 0-1 ||| 209 1.17835e+06 +en ||| now be in a ||| 0.142857 0.605812 8.48644e-07 7.64129e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| now be in ||| 0.0833333 0.605812 8.48644e-07 1.72389e-05 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| now become ||| 0.0124224 0.219193 1.69729e-06 7.87603e-06 2.718 ||| 0-1 ||| 161 1.17835e+06 +en ||| now been completed concerning ||| 1 0.0888235 8.48644e-07 2.5508e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| now been completed ||| 0.166667 0.0123946 8.48644e-07 6.04903e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| now been printed in ||| 1 0.605812 8.48644e-07 1.93756e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| now been produced of Parliament ||| 1 0.0116562 8.48644e-07 5.69646e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| now been produced of ||| 1 0.0116562 8.48644e-07 9.92414e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| now been restored on ||| 1 0.22993 8.48644e-07 9.88248e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| now been ||| 0.0020202 0.0123946 8.48644e-07 1.97681e-06 2.718 ||| 0-0 ||| 495 1.17835e+06 +en ||| now call on ||| 0.111111 0.22993 8.48644e-07 3.79779e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| now determine ||| 1 0.0123946 8.48644e-07 1.42672e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| now doing the same in the ||| 1 0.605812 8.48644e-07 1.05906e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| now doing the same in ||| 1 0.605812 8.48644e-07 1.72509e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| now due to ||| 0.142857 0.0247351 8.48644e-07 1.60036e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| now during ||| 0.117647 0.226251 1.69729e-06 5.95579e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| now entered ||| 0.05 0.132067 8.48644e-07 3.89733e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| now focus on ||| 0.125 0.22993 8.48644e-07 1.32409e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| now for ||| 0.004329 0.0286209 8.48644e-07 2.36996e-05 2.718 ||| 0-1 ||| 231 1.17835e+06 +en ||| now have it worked out in ||| 1 0.605812 8.48644e-07 3.37093e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| now have the ||| 0.0104167 0.0123946 8.48644e-07 4.34666e-07 2.718 ||| 0-0 ||| 96 1.17835e+06 +en ||| now have ||| 0.00375469 0.0123946 2.54593e-06 7.0802e-06 2.718 ||| 0-0 ||| 799 1.17835e+06 +en ||| now in a ||| 0.0144928 0.605812 8.48644e-07 4.21637e-05 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| now in danger ||| 0.0833333 0.605812 8.48644e-07 4.65148e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| now in force ||| 0.027027 0.605812 8.48644e-07 1.61898e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| now in place ||| 0.0357143 0.605812 8.48644e-07 1.43159e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| now in the ||| 0.0167364 0.605812 3.39458e-06 5.83973e-05 2.718 ||| 0-1 ||| 239 1.17835e+06 +en ||| now in ||| 0.0819113 0.605812 6.11024e-05 0.000951223 2.718 ||| 0-1 ||| 879 1.17835e+06 +en ||| now included under ||| 0.5 0.205566 8.48644e-07 1.09374e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| now involved in ||| 0.142857 0.605812 8.48644e-07 3.28933e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| now is to ||| 0.00757576 0.0247351 8.48644e-07 1.81466e-06 2.718 ||| 0-2 ||| 132 1.17835e+06 +en ||| now left in ||| 0.333333 0.605812 8.48644e-07 1.79686e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| now lie in ||| 0.25 0.605812 8.48644e-07 3.59562e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| now like to comment on ||| 0.333333 0.22993 8.48644e-07 1.2337e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| now like to look ||| 0.5 0.0247351 8.48644e-07 2.99735e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| now like to ||| 0.0224719 0.0247351 1.69729e-06 1.02825e-07 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| now live in ||| 0.1 0.605812 8.48644e-07 9.58833e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| now make the ||| 0.2 0.0123946 8.48644e-07 6.31585e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| now make ||| 0.0142857 0.0123946 8.48644e-07 1.02878e-06 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| now met in ||| 1 0.605812 8.48644e-07 7.29588e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| now need to ||| 0.0181818 0.0247351 8.48644e-07 5.30888e-08 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| now occurring on ||| 1 0.22993 8.48644e-07 3.31879e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| now on , ||| 0.00645161 0.22993 8.48644e-07 2.04011e-05 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| now on that ||| 0.25 0.22993 8.48644e-07 2.87769e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| now on ||| 0.0385757 0.22993 2.20648e-05 0.000171071 2.718 ||| 0-1 ||| 674 1.17835e+06 +en ||| now reached ||| 0.00909091 0.0123946 8.48644e-07 6.3936e-08 2.718 ||| 0-0 ||| 110 1.17835e+06 +en ||| now reciprocate in relation ||| 1 0.605812 8.48644e-07 9.2573e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| now reciprocate in ||| 1 0.605812 8.48644e-07 3.80489e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| now standing ||| 0.166667 0.0212625 8.48644e-07 4.49058e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| now state on ||| 1 0.22993 8.48644e-07 4.32126e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| now surrounding ||| 0.25 0.0985915 8.48644e-07 3.13929e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| now take us into ||| 0.5 0.525896 8.48644e-07 2.11602e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| now taking ||| 0.0294118 0.0138639 1.69729e-06 1.01942e-07 2.718 ||| 0-0 0-1 ||| 68 1.17835e+06 +en ||| now tell us ||| 0.25 0.0123946 8.48644e-07 1.67555e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| now tell ||| 0.2 0.0123946 8.48644e-07 5.81344e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| now that these are in ||| 1 0.605812 8.48644e-07 2.51787e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| now that we are well into ||| 1 0.525896 8.48644e-07 2.09497e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| now that ||| 0.000494071 0.0123946 8.48644e-07 9.95839e-06 2.718 ||| 0-0 ||| 2024 1.17835e+06 +en ||| now theirs with ||| 1 0.0535436 8.48644e-07 1.12876e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| now to a ||| 0.0555556 0.0247351 8.48644e-07 2.56648e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| now to ||| 0.00507614 0.0247351 4.24322e-06 5.79003e-05 2.718 ||| 0-1 ||| 985 1.17835e+06 +en ||| now turn from ||| 0.5 0.0308834 8.48644e-07 1.75731e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| now under our ||| 0.333333 0.205566 8.48644e-07 1.60671e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| now under ||| 0.0118343 0.205566 1.69729e-06 1.16479e-05 2.718 ||| 0-1 ||| 169 1.17835e+06 +en ||| now we ||| 0.00233645 0.0123946 8.48644e-07 6.72056e-06 2.718 ||| 0-0 ||| 428 1.17835e+06 +en ||| now with ||| 0.0140845 0.0535436 1.69729e-06 2.40162e-05 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| now within ||| 0.04 0.369196 8.48644e-07 2.28375e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| now working in ||| 0.25 0.605812 8.48644e-07 1.81113e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| now ||| 0.00360051 0.0123946 0.000178215 0.000592 2.718 ||| 0-0 ||| 58325 1.17835e+06 +en ||| nowadays , ||| 0.00392157 0.221613 8.48644e-07 2.29685e-05 2.718 ||| 0-0 ||| 255 1.17835e+06 +en ||| nowadays is ||| 0.0714286 0.221613 8.48644e-07 6.0363e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| nowadays used ||| 0.25 0.221613 8.48644e-07 8.26254e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| nowadays within ||| 1 0.369196 8.48644e-07 9.53456e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| nowadays ||| 0.0113475 0.221613 6.78915e-06 0.0001926 2.718 ||| 0-0 ||| 705 1.17835e+06 +en ||| nowhere in ||| 0.0555556 0.605812 1.69729e-06 4.98724e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| nowhere ||| 0.00506329 0.121144 1.69729e-06 0.0001096 2.718 ||| 0-0 ||| 395 1.17835e+06 +en ||| nuclear ||| 0.000219346 0.000191 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 9118 1.17835e+06 +en ||| number , ||| 0.0105263 0.0011038 8.48644e-07 2.4328e-06 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| number in ||| 0.153846 0.605812 3.39458e-06 0.000228489 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| number of amendments to ||| 0.0153846 0.0247351 8.48644e-07 5.769e-11 2.718 ||| 0-3 ||| 65 1.17835e+06 +en ||| number of news ||| 1 0.0116562 8.48644e-07 2.44937e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| number of people in favour of ||| 0.5 0.605812 8.48644e-07 1.92285e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| number of people in favour ||| 0.5 0.605812 8.48644e-07 3.53698e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| number of people in ||| 0.0243902 0.605812 8.48644e-07 1.09335e-08 2.718 ||| 0-3 ||| 41 1.17835e+06 +en ||| number of them in ||| 0.333333 0.605812 8.48644e-07 3.33197e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| number of users in ||| 1 0.605812 8.48644e-07 1.29185e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| number of ||| 0.00129152 0.0116562 2.12161e-05 6.74759e-06 2.718 ||| 0-1 ||| 19357 1.17835e+06 +en ||| number ||| 0.000820513 0.0011038 1.69729e-05 2.04e-05 2.718 ||| 0-0 ||| 24375 1.17835e+06 +en ||| numberplate in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| numbers in ||| 0.0930233 0.605812 3.39458e-06 2.25811e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| numbers of ||| 0.00159744 0.0116562 8.48644e-07 6.66849e-07 2.718 ||| 0-1 ||| 626 1.17835e+06 +en ||| numbers on ||| 0.181818 0.22993 1.69729e-06 4.06107e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| numerous ||| 0.000303306 0.0009852 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 3297 1.17835e+06 +en ||| objective in drafting ||| 1 0.605812 8.48644e-07 4.57219e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| objective in ||| 0.020979 0.605812 2.54593e-06 3.08932e-05 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| objectives along ||| 0.5 0.155535 8.48644e-07 3.72294e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| objectives within ||| 0.0666667 0.369196 8.48644e-07 5.18858e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| objects kept at ||| 1 0.321886 8.48644e-07 7.13036e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| obligation , within ||| 1 0.369196 8.48644e-07 2.71039e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| obligations in ||| 0.00787402 0.605812 8.48644e-07 6.14169e-06 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| obligations under ||| 0.00414938 0.205566 8.48644e-07 7.52062e-08 2.718 ||| 0-1 ||| 241 1.17835e+06 +en ||| obligatory for labels ||| 0.333333 0.0286209 8.48644e-07 4.80457e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| obligatory for ||| 0.0465116 0.0286209 1.69729e-06 8.28374e-08 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| obliged to undergo inspection , in ||| 0.5 0.605812 8.48644e-07 1.00154e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| obliged to ||| 0.000653168 0.0247351 8.48644e-07 1.07093e-06 2.718 ||| 0-1 ||| 1531 1.17835e+06 +en ||| obscured by ||| 0.0833333 0.0468744 8.48644e-07 9.35781e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| observation in ||| 0.0625 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| observation with us , ||| 0.166667 0.0535436 8.48644e-07 4.04742e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| observation with us ||| 0.166667 0.0535436 8.48644e-07 3.39393e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| observation with ||| 0.0714286 0.0535436 8.48644e-07 1.17755e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| observation ||| 0.00104822 0.0021802 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 1908 1.17835e+06 +en ||| observe around us in ||| 1 0.605812 8.48644e-07 3.38609e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| observe in its work ||| 1 0.605812 8.48644e-07 7.9542e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| observe in its ||| 1 0.605812 8.48644e-07 1.25659e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| observe in ||| 0.0666667 0.605812 8.48644e-07 8.82002e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| observed in ||| 0.0550459 0.605812 5.09187e-06 1.2976e-05 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| observed on ||| 0.0666667 0.22993 8.48644e-07 2.33366e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| observed ||| 0.00315457 0.002589 3.39458e-06 2.7e-06 2.718 ||| 0-0 ||| 1268 1.17835e+06 +en ||| observers at ||| 0.166667 0.321886 8.48644e-07 3.32017e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| observing ||| 0.00218818 0.0026042 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 457 1.17835e+06 +en ||| obstacles based on ||| 0.5 0.22993 8.48644e-07 1.18847e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| obstacles in ||| 0.00862069 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| obstacles to ||| 0.00139276 0.0247351 8.48644e-07 1.71461e-07 2.718 ||| 0-1 ||| 718 1.17835e+06 +en ||| obstructed by ||| 0.117647 0.0468744 1.69729e-06 2.46706e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| obstructed in ||| 0.333333 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| obtain funding on ||| 0.25 0.22993 8.48644e-07 2.66031e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| obtain in ||| 0.208333 0.605812 4.24322e-06 2.7753e-05 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| obtained at ||| 0.0833333 0.321886 8.48644e-07 1.26806e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| obtained in ||| 0.0319149 0.605812 2.54593e-06 1.46385e-05 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| obtained off the ||| 1 0.0137048 8.48644e-07 1.52018e-11 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| obtained under ||| 0.166667 0.205566 8.48644e-07 1.79251e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| obtaining an expert opinion on ||| 1 0.22993 8.48644e-07 1.54173e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| obtaining here ||| 0.25 0.0855319 8.48644e-07 4.44015e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| obtaining in ||| 0.142857 0.605812 1.69729e-06 6.83436e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| obvious from ||| 0.0285714 0.0308834 8.48644e-07 1.58673e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| obvious in ||| 0.0222222 0.605812 8.48644e-07 1.92563e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| obvious points in ||| 1 0.605812 8.48644e-07 2.50139e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| obviously , in ||| 0.0263158 0.605812 8.48644e-07 3.64561e-06 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| obviously at ||| 0.25 0.321886 8.48644e-07 2.64813e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| obviously continue to ||| 0.2 0.0247351 8.48644e-07 4.30582e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| obviously given ||| 0.5 0.0546585 8.48644e-07 7.68516e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| obviously in ||| 0.0285714 0.605812 8.48644e-07 3.05699e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| occasion during ||| 0.2 0.226251 8.48644e-07 1.41385e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| occasion in ||| 0.125 0.605812 3.39458e-06 2.25811e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| occasion to formulate ||| 0.25 0.0247351 8.48644e-07 6.87248e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| occasion to say this in ||| 1 0.605812 8.48644e-07 1.23919e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| occasion to ||| 0.00374532 0.0247351 8.48644e-07 1.3745e-06 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| occasionally accurate ||| 0.25 0.178626 8.48644e-07 8.2784e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| occasionally mooted ||| 1 0.178626 8.48644e-07 1.1144e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| occasionally over ||| 1 0.168282 8.48644e-07 3.18973e-07 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| occasionally things were ||| 1 0.178626 8.48644e-07 5.86067e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| occasionally things ||| 1 0.178626 8.48644e-07 3.27156e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| occasionally ||| 0.016129 0.178626 5.09187e-06 7.96e-05 2.718 ||| 0-0 ||| 372 1.17835e+06 +en ||| occasions in the ||| 0.0188679 0.605812 8.48644e-07 7.54099e-07 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| occasions in ||| 0.0206897 0.605812 2.54593e-06 1.22834e-05 2.718 ||| 0-1 ||| 145 1.17835e+06 +en ||| occasions when ||| 0.00892857 0.142731 8.48644e-07 1.58358e-07 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| occasions with ||| 0.0666667 0.0535436 8.48644e-07 3.10127e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| occupation in ||| 0.133333 0.605812 1.69729e-06 2.81686e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| occupying a ||| 0.125 0.01875 8.48644e-07 2.70387e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| occupying all our ||| 0.5 0.01875 8.48644e-07 3.97611e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| occupying all ||| 0.2 0.01875 8.48644e-07 2.88249e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| occupying power ||| 0.0208333 0.01875 8.48644e-07 9.1073e-10 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| occupying ||| 0.00797448 0.01875 4.24322e-06 6.1e-06 2.718 ||| 0-0 ||| 627 1.17835e+06 +en ||| occur during ||| 0.0588235 0.226251 8.48644e-07 1.28952e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| occur in ||| 0.0703518 0.605812 1.1881e-05 2.05954e-05 2.718 ||| 0-1 ||| 199 1.17835e+06 +en ||| occur to ||| 0.0526316 0.0247351 8.48644e-07 1.25363e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| occur while ||| 1 0.0151276 8.48644e-07 1.21981e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| occurred , in ||| 1 0.605812 8.48644e-07 2.34046e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| occurred at ||| 0.0869565 0.321886 1.69729e-06 1.70009e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| occurred during ||| 0.0571429 0.226251 1.69729e-06 1.2288e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| occurred in ||| 0.0599251 0.605812 1.35783e-05 1.96257e-05 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| occurred with ||| 0.1875 0.0535436 2.54593e-06 4.95503e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| occurrence in ||| 0.111111 0.605812 8.48644e-07 6.46494e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| occurrences : in ||| 1 0.605812 8.48644e-07 6.22111e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| occurring in ||| 0.0683761 0.605812 6.78915e-06 8.95855e-06 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| occurring on ||| 0.2 0.22993 2.54593e-06 1.61114e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| occurs at each ||| 1 0.321886 8.48644e-07 1.4148e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| occurs at ||| 0.0833333 0.321886 8.48644e-07 5.04025e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| occurs in ||| 0.0597015 0.605812 3.39458e-06 5.81844e-06 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| occurs when ||| 0.0625 0.142731 8.48644e-07 7.50116e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| odd man out in ||| 1 0.605812 8.48644e-07 7.66176e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| odds in ||| 0.25 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| of ' let 's ||| 1 0.0116562 8.48644e-07 3.64315e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of ' let ||| 0.25 0.0116562 8.48644e-07 1.91302e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of ' ||| 0.00180505 0.0116562 2.54593e-06 4.68417e-05 2.718 ||| 0-0 ||| 1662 1.17835e+06 +en ||| of , and in ||| 0.5 0.605812 8.48644e-07 3.75001e-05 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of , at ||| 0.333333 0.321886 8.48644e-07 0.000259339 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of , in ||| 0.2 0.605812 8.48644e-07 0.0029938 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| of , ||| 0.00112994 0.0116562 8.48644e-07 0.00162628 2.718 ||| 0-0 ||| 885 1.17835e+06 +en ||| of 65 ||| 0.0181818 0.0116562 8.48644e-07 2.45466e-08 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| of 70 ||| 0.0212766 0.0116562 8.48644e-07 3.00014e-08 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| of Agriculture in ||| 0.125 0.605812 8.48644e-07 3.43928e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| of Amendment No ||| 0.00149701 0.0116562 8.48644e-07 2.5204e-11 2.718 ||| 0-0 ||| 668 1.17835e+06 +en ||| of Amendment ||| 0.00335196 0.0116562 2.54593e-06 3.7229e-07 2.718 ||| 0-0 ||| 895 1.17835e+06 +en ||| of America ||| 0.00138313 0.0116562 8.48644e-07 3.77745e-07 2.718 ||| 0-0 ||| 723 1.17835e+06 +en ||| of Auditors ' opinion on ||| 1 0.22993 8.48644e-07 4.94737e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of Auditors ||| 0.000341763 0.0116562 8.48644e-07 1.77281e-07 2.718 ||| 0-0 ||| 2926 1.17835e+06 +en ||| of Belarus when ||| 1 0.142731 8.48644e-07 3.85138e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of Community environment law As part ||| 0.333333 0.0116562 8.48644e-07 1.57954e-22 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| of Community environment law As ||| 0.333333 0.0116562 8.48644e-07 1.3249e-19 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| of Community environment law ||| 0.166667 0.0116562 8.48644e-07 2.17196e-14 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| of Community environment ||| 0.25 0.0116562 8.48644e-07 1.23197e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of Community ||| 0.00429185 0.0116562 8.48644e-07 2.20783e-06 2.718 ||| 0-0 ||| 233 1.17835e+06 +en ||| of Cyprus in ||| 0.0434783 0.605812 8.48644e-07 4.06689e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| of Darfur have been involved in an ||| 1 0.605812 8.48644e-07 2.15729e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of Darfur have been involved in ||| 1 0.605812 8.48644e-07 4.85363e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of Director of ||| 0.5 0.0116562 8.48644e-07 1.03791e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of EU ||| 0.00111732 0.0116562 8.48644e-07 6.74759e-06 2.718 ||| 0-0 ||| 895 1.17835e+06 +en ||| of Europe , in ||| 0.0153846 0.605812 8.48644e-07 1.51486e-06 2.718 ||| 0-3 ||| 65 1.17835e+06 +en ||| of Europe ||| 0.000215765 0.0116562 2.54593e-06 6.90032e-06 2.718 ||| 0-0 ||| 13904 1.17835e+06 +en ||| of European ||| 0.00419463 0.0116562 4.24322e-06 4.56008e-05 2.718 ||| 0-0 ||| 1192 1.17835e+06 +en ||| of FIFG assistance in ||| 1 0.605812 8.48644e-07 4.99073e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of GDP in ||| 0.0333333 0.605812 1.69729e-06 1.25521e-07 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| of GMOs in ||| 0.0227273 0.605812 8.48644e-07 1.35563e-07 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| of Galician coastline known as ||| 1 0.066968 8.48644e-07 1.65806e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of Georgia . in ||| 1 0.605812 8.48644e-07 5.47494e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of Georgia ||| 0.00389105 0.0116562 8.48644e-07 9.81864e-08 2.718 ||| 0-0 ||| 257 1.17835e+06 +en ||| of Government and State discuss ||| 0.5 0.0116562 8.48644e-07 4.12682e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of Government and State ||| 0.2 0.0116562 8.48644e-07 9.89645e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| of Government and ||| 0.027027 0.0116562 8.48644e-07 8.23332e-09 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| of Government ||| 0.00201613 0.0116562 8.48644e-07 6.57303e-07 2.718 ||| 0-0 ||| 496 1.17835e+06 +en ||| of Human Rights in ||| 0.0163934 0.605812 8.48644e-07 8.41917e-11 2.718 ||| 0-3 ||| 61 1.17835e+06 +en ||| of Interior Ministers in Luxembourg on 13 ||| 1 0.605812 8.48644e-07 1.22665e-25 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of Interior Ministers in Luxembourg on ||| 1 0.605812 8.48644e-07 1.30495e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of Interior Ministers in Luxembourg ||| 1 0.605812 8.48644e-07 1.9503e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of Interior Ministers in ||| 1 0.605812 8.48644e-07 2.34976e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of Justice in ||| 0.00483092 0.605812 8.48644e-07 1.35563e-06 2.718 ||| 0-2 ||| 207 1.17835e+06 +en ||| of Justice ||| 0.000262054 0.0116562 8.48644e-07 7.36398e-07 2.718 ||| 0-0 ||| 3816 1.17835e+06 +en ||| of Kosovo ||| 0.00111982 0.0116562 8.48644e-07 3.34106e-07 2.718 ||| 0-0 ||| 893 1.17835e+06 +en ||| of Latin America at ||| 1 0.321886 8.48644e-07 6.50574e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of Living and Working Conditions in ||| 1 0.605812 8.48644e-07 4.55203e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of Macedonia ||| 0.00154799 0.0116562 8.48644e-07 8.86405e-08 2.718 ||| 0-0 ||| 646 1.17835e+06 +en ||| of Ministers ||| 0.000428266 0.0116562 8.48644e-07 3.19106e-07 2.718 ||| 0-0 ||| 2335 1.17835e+06 +en ||| of Mr ||| 0.000457247 0.0116562 8.48644e-07 8.90223e-06 2.718 ||| 0-0 ||| 2187 1.17835e+06 +en ||| of Nepal ||| 0.0243902 0.0116562 8.48644e-07 9.5459e-09 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| of November ||| 0.00355872 0.0116562 8.48644e-07 7.36398e-08 2.718 ||| 0-0 ||| 281 1.17835e+06 +en ||| of Parliament at ||| 0.0666667 0.321886 8.48644e-07 1.24826e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| of Parliament in ||| 0.00909091 0.605812 1.69729e-06 1.44098e-05 2.718 ||| 0-2 ||| 220 1.17835e+06 +en ||| of Parliament into ||| 0.2 0.525896 8.48644e-07 6.90793e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| of Parliament over ||| 0.142857 0.157937 8.48644e-07 1.25044e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| of Parliament ||| 0.000962464 0.0116562 4.24322e-06 7.82764e-06 2.718 ||| 0-0 ||| 5195 1.17835e+06 +en ||| of Parties in ||| 0.333333 0.308734 8.48644e-07 1.82622e-08 2.718 ||| 0-0 0-2 ||| 3 1.17835e+06 +en ||| of Prime ||| 0.0114943 0.0116562 8.48644e-07 2.05919e-07 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| of Procedure in ||| 0.1 0.605812 8.48644e-07 1.59914e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| of Procedure ||| 0.00128205 0.0116562 8.48644e-07 8.68677e-07 2.718 ||| 0-0 ||| 780 1.17835e+06 +en ||| of Rights in ||| 1 0.605812 8.48644e-07 2.06859e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of Roma in ||| 0.0434783 0.605812 8.48644e-07 2.81168e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| of Russians in ||| 0.333333 0.605812 8.48644e-07 8.03337e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of SMEs in ||| 0.0114943 0.605812 8.48644e-07 3.06272e-07 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| of Socialists and Democrats in ||| 0.00869565 0.605812 1.69729e-06 5.55922e-13 2.718 ||| 0-4 ||| 230 1.17835e+06 +en ||| of South ||| 0.047619 0.0116562 2.54593e-06 2.94559e-07 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| of State ||| 0.000441501 0.0116562 8.48644e-07 1.63917e-06 2.718 ||| 0-0 ||| 2265 1.17835e+06 +en ||| of Sunday as ||| 0.25 0.0116562 8.48644e-07 6.95787e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of Sunday ||| 0.0909091 0.0116562 8.48644e-07 6.8185e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| of Sweden ' ||| 0.5 0.0116562 8.48644e-07 8.10362e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of Sweden ||| 0.00606061 0.0116562 8.48644e-07 2.3592e-07 2.718 ||| 0-0 ||| 165 1.17835e+06 +en ||| of Workers ||| 0.00473934 0.0116562 8.48644e-07 7.36398e-08 2.718 ||| 0-0 ||| 211 1.17835e+06 +en ||| of a blot on ||| 0.166667 0.22993 8.48644e-07 1.40087e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| of a concern ||| 0.0909091 0.0116562 8.48644e-07 8.06969e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| of a decision in ||| 0.333333 0.605812 8.48644e-07 1.75038e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of a disastrous future ||| 0.5 0.0116562 8.48644e-07 6.4219e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of a disastrous ||| 0.5 0.0116562 8.48644e-07 2.41788e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of a mind ||| 0.25 0.0116562 8.48644e-07 1.52266e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of a ||| 0.00105406 0.0116562 3.8189e-05 0.000604471 2.718 ||| 0-0 ||| 42692 1.17835e+06 +en ||| of absolutely ||| 0.0909091 0.0116562 8.48644e-07 1.28597e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| of absurdity in ||| 0.333333 0.605812 8.48644e-07 1.7573e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of acting in ||| 0.0555556 0.605812 8.48644e-07 1.48115e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| of action at ||| 0.04 0.321886 8.48644e-07 6.57402e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| of action in ||| 0.0140845 0.605812 8.48644e-07 7.58902e-06 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| of action ||| 0.00108755 0.0116562 1.69729e-06 4.12247e-06 2.718 ||| 0-0 ||| 1839 1.17835e+06 +en ||| of active ||| 0.047619 0.0116562 8.48644e-07 5.49571e-07 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| of activity in connection with ||| 1 0.0535436 8.48644e-07 1.10967e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of adventure are ||| 0.5 0.0116562 8.48644e-07 2.27601e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of adventure ||| 0.25 0.0116562 8.48644e-07 1.50007e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of advertising especially in ||| 1 0.605812 8.48644e-07 1.73365e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of affairs and ||| 0.0555556 0.0116562 8.48644e-07 2.09078e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| of affairs as ||| 0.2 0.066968 8.48644e-07 1.19694e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| of affairs in ||| 0.097561 0.605812 3.39458e-06 3.07276e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| of affairs is at ||| 1 0.321886 8.48644e-07 8.34236e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of affairs with ||| 0.333333 0.0535436 8.48644e-07 7.75801e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of affairs ||| 0.0189076 0.0116562 7.6378e-06 1.66917e-06 2.718 ||| 0-0 ||| 476 1.17835e+06 +en ||| of again ||| 0.1 0.0116562 8.48644e-07 7.88628e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| of agricultural output at EU level ||| 1 0.321886 8.48644e-07 1.43219e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of agricultural output at EU ||| 1 0.321886 8.48644e-07 1.6743e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of agricultural output at ||| 1 0.321886 8.48644e-07 3.38378e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of aids ||| 0.0344828 0.0116562 8.48644e-07 3.95473e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| of air into ||| 0.333333 0.525896 8.48644e-07 6.63113e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of airlines ||| 0.0120482 0.0116562 8.48644e-07 8.86405e-08 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| of all , at ||| 0.166667 0.321886 8.48644e-07 1.22548e-06 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| of all , in ||| 0.0714286 0.605812 8.48644e-07 1.41469e-05 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| of all , on ||| 0.272727 0.22993 2.54593e-06 2.54423e-06 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| of all , ||| 0.000958773 0.0116562 8.48644e-07 7.68481e-06 2.718 ||| 0-0 ||| 1043 1.17835e+06 +en ||| of all by ||| 0.25 0.0468744 8.48644e-07 2.1854e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| of all for ||| 0.111111 0.0286209 8.48644e-07 2.95559e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| of all from ||| 0.2 0.0308834 8.48644e-07 9.77498e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| of all in ||| 0.177778 0.605812 6.78915e-06 0.000118628 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| of all of ||| 0.00211416 0.0116562 8.48644e-07 3.50323e-06 2.718 ||| 0-2 ||| 473 1.17835e+06 +en ||| of all people , including ||| 1 0.0116562 8.48644e-07 7.06179e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of all people , ||| 0.0322581 0.0116562 8.48644e-07 6.76417e-09 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| of all people ||| 0.0119048 0.0116562 8.48644e-07 5.67203e-08 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| of all take into ||| 1 0.525896 8.48644e-07 9.15589e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of all the ||| 0.000369413 0.0116562 8.48644e-07 3.9561e-06 2.718 ||| 0-0 ||| 2707 1.17835e+06 +en ||| of all to ||| 0.020979 0.0247351 2.54593e-06 7.22079e-06 2.718 ||| 0-2 ||| 143 1.17835e+06 +en ||| of all ||| 0.001746 0.0116562 1.95188e-05 6.44403e-05 2.718 ||| 0-0 ||| 13173 1.17835e+06 +en ||| of allowing ||| 0.00483092 0.0116562 8.48644e-07 6.87305e-07 2.718 ||| 0-0 ||| 207 1.17835e+06 +en ||| of amendments to ||| 0.00662252 0.0247351 8.48644e-07 1.16592e-07 2.718 ||| 0-2 ||| 151 1.17835e+06 +en ||| of an acceptable ||| 0.5 0.0002107 8.48644e-07 1.69142e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of an increased ||| 0.0714286 0.0116562 8.48644e-07 3.01243e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| of an ivory tower mentality in ||| 1 0.605812 8.48644e-07 1.76744e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of an opinion of the Committee on ||| 1 0.22993 8.48644e-07 2.50805e-15 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| of an ||| 0.00119861 0.0116562 8.48644e-06 6.06124e-05 2.718 ||| 0-0 ||| 8343 1.17835e+06 +en ||| of and utilise ||| 1 0.0116562 8.48644e-07 3.07468e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of and within ||| 1 0.369196 8.48644e-07 7.54958e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of and ||| 0.002079 0.0116562 8.48644e-07 0.000170816 2.718 ||| 0-0 ||| 481 1.17835e+06 +en ||| of animals in ||| 0.0175439 0.605812 8.48644e-07 1.02174e-06 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| of anti-Americanism ||| 0.1 0.0116562 8.48644e-07 5.4548e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| of any kind ||| 0.00425532 0.0116562 8.48644e-07 1.00635e-08 2.718 ||| 0-0 ||| 235 1.17835e+06 +en ||| of any ||| 0.000976562 0.0116562 2.54593e-06 2.06219e-05 2.718 ||| 0-0 ||| 3072 1.17835e+06 +en ||| of apology on behalf ||| 0.333333 0.22993 8.48644e-07 2.01317e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of apology on ||| 0.333333 0.22993 8.48644e-07 6.32078e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of applications ||| 0.00680272 0.0116562 8.48644e-07 1.90918e-07 2.718 ||| 0-0 ||| 147 1.17835e+06 +en ||| of approach , i.e. ||| 1 0.0116562 8.48644e-07 2.09254e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of approach , ||| 0.0714286 0.0116562 8.48644e-07 3.5648e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| of approach ||| 0.0133333 0.0116562 1.69729e-06 2.98923e-06 2.718 ||| 0-0 ||| 150 1.17835e+06 +en ||| of arbitrary measures ||| 0.25 0.0116562 8.48644e-07 9.02878e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of arbitrary ||| 0.1 0.0116562 8.48644e-07 4.36384e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| of area in ||| 0.5 0.605812 8.48644e-07 1.04258e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of areas ||| 0.00161031 0.0116562 8.48644e-07 3.12151e-06 2.718 ||| 0-0 ||| 621 1.17835e+06 +en ||| of argument in ||| 0.5 0.605812 8.48644e-07 8.13378e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of arriving at ||| 0.0666667 0.321886 8.48644e-07 1.08733e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| of art in ||| 0.125 0.605812 8.48644e-07 2.08365e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| of as ||| 0.0114943 0.066968 8.48644e-07 0.000977894 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| of assessing on a ||| 1 0.0116562 8.48644e-07 1.73914e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of assessing on ||| 1 0.0116562 8.48644e-07 3.92354e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of assessing ||| 0.00763359 0.0116562 8.48644e-07 5.86391e-08 2.718 ||| 0-0 ||| 131 1.17835e+06 +en ||| of asylum in ||| 0.0526316 0.605812 8.48644e-07 4.24262e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| of at least ||| 0.00383142 0.166771 8.48644e-07 1.33867e-07 2.718 ||| 0-0 0-1 ||| 261 1.17835e+06 +en ||| of at ||| 0.0285714 0.321886 5.94051e-06 0.00217467 2.718 ||| 0-1 ||| 245 1.17835e+06 +en ||| of attack in ||| 1 0.605812 8.48644e-07 7.40576e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of attacks ||| 0.00925926 0.0116562 8.48644e-07 1.77281e-07 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| of attention in ||| 0.0714286 0.605812 8.48644e-07 6.55975e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| of attention ||| 0.00328947 0.0116562 8.48644e-07 3.56335e-06 2.718 ||| 0-0 ||| 304 1.17835e+06 +en ||| of bananas in ||| 0.142857 0.605812 8.48644e-07 7.28024e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| of battery ||| 0.25 0.0710455 8.48644e-07 3.6138e-07 2.718 ||| 0-0 0-1 ||| 4 1.17835e+06 +en ||| of become ||| 0.5 0.219193 8.48644e-07 0.000207861 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| of becoming ||| 0.00383142 0.163705 8.48644e-07 4.15776e-05 2.718 ||| 0-1 ||| 261 1.17835e+06 +en ||| of beef ||| 0.00505051 0.0116562 8.48644e-07 1.96373e-07 2.718 ||| 0-0 ||| 198 1.17835e+06 +en ||| of behaving in ||| 1 0.605812 8.48644e-07 1.07948e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of being ||| 0.00167317 0.0116562 2.54593e-06 3.88082e-05 2.718 ||| 0-0 ||| 1793 1.17835e+06 +en ||| of benefit to do ||| 0.2 0.0116562 8.48644e-07 5.48235e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| of benefit to ||| 0.00917431 0.0116562 8.48644e-07 1.59589e-07 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| of benefit ||| 0.00588235 0.0116562 8.48644e-07 1.79599e-06 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| of birds ||| 0.0222222 0.0116562 8.48644e-07 7.36398e-08 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| of both ||| 0.00106895 0.0116562 1.69729e-06 2.25897e-05 2.718 ||| 0-0 ||| 1871 1.17835e+06 +en ||| of broken ||| 0.25 0.0116562 8.48644e-07 4.07746e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of bulkheads on ||| 1 0.22993 8.48644e-07 1.80594e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of by ||| 0.0408163 0.0468744 1.69729e-06 0.00046248 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| of caged beds in ||| 0.142857 0.605812 8.48644e-07 1.10459e-14 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| of calling on ||| 0.0384615 0.22993 8.48644e-07 2.97528e-07 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| of candidates for ||| 0.047619 0.0286209 8.48644e-07 5.37903e-09 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| of care on ||| 0.5 0.22993 8.48644e-07 4.58257e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of carrying out ||| 0.0075188 0.0116562 8.48644e-07 3.16023e-09 2.718 ||| 0-0 ||| 133 1.17835e+06 +en ||| of carrying ||| 0.0294118 0.0116562 2.54593e-06 8.25038e-07 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| of causing ||| 0.0142857 0.0116562 8.48644e-07 4.02291e-07 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| of certain ||| 0.000471921 0.0116562 8.48644e-07 3.88654e-06 2.718 ||| 0-0 ||| 2119 1.17835e+06 +en ||| of charge ||| 0.018018 0.0116562 1.69729e-06 6.87305e-07 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| of children in a ||| 0.5 0.605812 8.48644e-07 8.29011e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of children in ||| 0.00584795 0.605812 8.48644e-07 1.87027e-06 2.718 ||| 0-2 ||| 171 1.17835e+06 +en ||| of cigarettes and ||| 0.25 0.0010182 8.48644e-07 7.02263e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| of citizens on ||| 0.111111 0.22993 8.48644e-07 4.92118e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| of civilization in ||| 1 0.605812 8.48644e-07 1.7573e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of clarity in ||| 0.0263158 0.605812 8.48644e-07 2.15897e-07 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| of climate change on ||| 0.0185185 0.22993 8.48644e-07 1.50371e-11 2.718 ||| 0-3 ||| 54 1.17835e+06 +en ||| of comment really ||| 1 0.0116562 8.48644e-07 3.01883e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of comment ||| 0.0526316 0.0116562 8.48644e-07 6.23211e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| of committing words ||| 0.25 0.0116562 8.48644e-07 2.43475e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of committing ||| 0.0263158 0.0116562 8.48644e-07 1.07732e-07 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| of common ||| 0.00641026 0.0116562 8.48644e-07 3.15015e-06 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| of community ||| 0.0196078 0.0116562 8.48644e-07 5.1957e-07 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| of companies in ||| 0.0181818 0.605812 8.48644e-07 1.76232e-06 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| of comparison for ||| 1 0.0286209 8.48644e-07 8.75656e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of competence in ||| 0.0714286 0.605812 8.48644e-07 6.05013e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| of concern ||| 0.0011274 0.0116562 8.48644e-07 1.82054e-06 2.718 ||| 0-0 ||| 887 1.17835e+06 +en ||| of conclusion of ||| 1 0.0116562 8.48644e-07 6.56105e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of conclusion ||| 0.00877193 0.0116562 8.48644e-07 1.20687e-06 2.718 ||| 0-0 ||| 114 1.17835e+06 +en ||| of conditions into ||| 1 0.525896 8.48644e-07 1.43815e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of conduct in ||| 0.04 0.605812 8.48644e-07 1.50877e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| of conflicting statements ||| 0.5 0.0116562 8.48644e-07 1.57098e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of conflicting ||| 0.0714286 0.0116562 8.48644e-07 4.90932e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| of consent ||| 0.0178571 0.0116562 8.48644e-07 1.13187e-07 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| of consideration ||| 0.00813008 0.0116562 8.48644e-07 1.4728e-06 2.718 ||| 0-0 ||| 123 1.17835e+06 +en ||| of consumers in ||| 0.0163934 0.605812 8.48644e-07 9.389e-07 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| of content on ||| 0.166667 0.22993 8.48644e-07 2.22582e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| of control in ||| 0.0454545 0.605812 8.48644e-07 1.9255e-06 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| of conversations round ||| 0.5 0.0116562 8.48644e-07 1.46434e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of conversations ||| 0.125 0.0116562 8.48644e-07 1.90918e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| of course , acted in ||| 1 0.605812 8.48644e-07 7.32792e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of course , also means that more ||| 1 0.0116562 8.48644e-07 2.5218e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of course , also means that ||| 1 0.0116562 8.48644e-07 1.10426e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of course , also means ||| 0.5 0.0116562 8.48644e-07 6.56455e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of course , also ||| 0.00568182 0.0116562 8.48644e-07 1.03591e-08 2.718 ||| 0-0 ||| 176 1.17835e+06 +en ||| of course , applies everywhere , in ||| 1 0.605812 8.48644e-07 7.05895e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| of course , at ||| 0.0882353 0.321886 2.54593e-06 3.27209e-07 2.718 ||| 0-3 ||| 34 1.17835e+06 +en ||| of course , have ||| 0.00952381 0.0116562 8.48644e-07 2.454e-08 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| of course , in the ||| 0.0151515 0.605812 8.48644e-07 2.31894e-07 2.718 ||| 0-3 ||| 66 1.17835e+06 +en ||| of course , in ||| 0.0536585 0.605812 9.33509e-06 3.77728e-06 2.718 ||| 0-3 ||| 205 1.17835e+06 +en ||| of course , largely created ||| 1 0.247761 8.48644e-07 7.30415e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of course , largely ||| 0.5 0.247761 8.48644e-07 6.92993e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of course , where ||| 0.1 0.247783 8.48644e-07 6.96641e-08 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| of course , with ||| 0.0185185 0.0535436 1.69729e-06 9.53675e-08 2.718 ||| 0-3 ||| 108 1.17835e+06 +en ||| of course , ||| 0.000683107 0.0116562 8.48644e-06 2.05187e-06 2.718 ||| 0-0 ||| 14639 1.17835e+06 +en ||| of course as ||| 0.111111 0.066968 8.48644e-07 1.23381e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| of course be ||| 0.0037037 0.0116562 8.48644e-07 3.11819e-07 2.718 ||| 0-0 ||| 270 1.17835e+06 +en ||| of course by ||| 0.04 0.0468744 8.48644e-07 5.83511e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| of course even ||| 0.2 0.0116562 8.48644e-07 1.04697e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| of course in ||| 0.0185185 0.605812 1.69729e-06 3.16741e-05 2.718 ||| 0-2 ||| 108 1.17835e+06 +en ||| of course includes ||| 0.030303 0.0068123 8.48644e-07 1.35124e-09 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| of course it also ||| 0.142857 0.0080472 8.48644e-07 9.5503e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| of course it ||| 0.00436681 0.0080472 8.48644e-07 1.89167e-07 2.718 ||| 0-2 ||| 229 1.17835e+06 +en ||| of course made in ||| 0.333333 0.605812 8.48644e-07 6.63508e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of course make ||| 0.1 0.0116562 8.48644e-07 2.99002e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| of course on ||| 0.0322581 0.22993 8.48644e-07 5.69638e-06 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| of course one of ||| 0.0909091 0.0116562 8.48644e-07 9.77961e-10 2.718 ||| 0-0 0-3 ||| 11 1.17835e+06 +en ||| of course provide you with ||| 1 0.0535436 8.48644e-07 7.6375e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of course secrecy ||| 1 0.0116562 8.48644e-07 4.30145e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of course ||| 0.00156934 0.0116562 3.64917e-05 1.72058e-05 2.718 ||| 0-0 ||| 27400 1.17835e+06 +en ||| of courtesy in ||| 0.333333 0.605812 8.48644e-07 2.76147e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of criminals ||| 0.0138889 0.0116562 8.48644e-07 6.8185e-08 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| of cultural capital on ||| 1 0.22993 8.48644e-07 2.73627e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of current ||| 0.00649351 0.0116562 8.48644e-07 2.24738e-06 2.718 ||| 0-0 ||| 154 1.17835e+06 +en ||| of customs in ||| 0.142857 0.605812 8.48644e-07 2.53553e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| of customs tariffs on ||| 0.25 0.22993 8.48644e-07 1.4592e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| of cybercrime in ||| 1 0.605812 8.48644e-07 1.00417e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of damage ||| 0.00689655 0.0116562 8.48644e-07 5.74118e-07 2.718 ||| 0-0 ||| 145 1.17835e+06 +en ||| of day in ||| 0.166667 0.605812 8.48644e-07 6.43171e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| of day when they ||| 1 0.142731 8.48644e-07 2.70644e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of day when ||| 1 0.142731 8.48644e-07 8.29179e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of dealing with issues ||| 0.5 0.0535436 8.48644e-07 1.64667e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of dealing with ||| 0.00350877 0.0535436 8.48644e-07 6.54741e-08 2.718 ||| 0-2 ||| 285 1.17835e+06 +en ||| of debt ||| 0.00446429 0.0116562 8.48644e-07 2.70013e-07 2.718 ||| 0-0 ||| 224 1.17835e+06 +en ||| of decision-making in ||| 0.0714286 0.605812 8.48644e-07 4.06689e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| of degree in ||| 1 0.605812 1.69729e-06 3.47694e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of delegations of the ||| 0.5 0.0116562 8.48644e-07 2.27568e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of delegations of ||| 0.25 0.0116562 8.48644e-07 3.70681e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of delegations ||| 0.016129 0.0116562 8.48644e-07 6.8185e-08 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| of depopulation - is dealt with in ||| 0.5 0.329678 8.48644e-07 2.53599e-18 2.718 ||| 0-5 0-6 ||| 2 1.17835e+06 +en ||| of determination by ||| 0.5 0.0468744 8.48644e-07 5.50351e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of determining ||| 0.0128205 0.0116562 8.48644e-07 1.22733e-07 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| of developing in ||| 0.333333 0.605812 8.48644e-07 1.36316e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of developing ||| 0.00149031 0.145351 8.48644e-07 6.28952e-05 2.718 ||| 0-0 0-1 ||| 671 1.17835e+06 +en ||| of development in ||| 0.0125 0.605812 8.48644e-07 4.12965e-06 2.718 ||| 0-2 ||| 80 1.17835e+06 +en ||| of difference ||| 0.0163934 0.0116562 8.48644e-07 3.58653e-07 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| of direct ||| 0.0121951 0.0116562 8.48644e-07 6.72304e-07 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| of direction in ||| 0.047619 0.605812 8.48644e-07 2.27696e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| of discrimination ||| 0.00104493 0.0116562 8.48644e-07 1.71826e-07 2.718 ||| 0-0 ||| 957 1.17835e+06 +en ||| of discussion ||| 0.00324675 0.0116562 8.48644e-07 1.17824e-06 2.718 ||| 0-0 ||| 308 1.17835e+06 +en ||| of distinguishing ||| 0.0714286 0.0116562 8.48644e-07 1.50007e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| of doing this , by means of ||| 0.5 0.0116562 8.48644e-07 6.97699e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of doing this , by means ||| 0.5 0.0116562 8.48644e-07 1.28338e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of doing this , by ||| 0.5 0.0116562 8.48644e-07 2.02522e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of doing this , ||| 0.0769231 0.0116562 8.48644e-07 3.85749e-09 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| of doing this ||| 0.00990099 0.0116562 8.48644e-07 3.23467e-08 2.718 ||| 0-0 ||| 101 1.17835e+06 +en ||| of doing ||| 0.00895522 0.0116562 2.54593e-06 5.00614e-06 2.718 ||| 0-0 ||| 335 1.17835e+06 +en ||| of drafting ||| 0.00719424 0.0116562 8.48644e-07 2.01828e-07 2.718 ||| 0-0 ||| 139 1.17835e+06 +en ||| of each ||| 0.000569476 0.0116562 8.48644e-07 3.82791e-06 2.718 ||| 0-0 ||| 1756 1.17835e+06 +en ||| of economic and ||| 0.004329 0.0063372 8.48644e-07 1.5263e-09 2.718 ||| 0-0 0-2 ||| 231 1.17835e+06 +en ||| of economic ||| 0.002 0.0116562 8.48644e-07 1.65417e-06 2.718 ||| 0-0 ||| 500 1.17835e+06 +en ||| of education in ||| 0.0172414 0.605812 8.48644e-07 8.48524e-07 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| of effort into ||| 0.0833333 0.525896 1.69729e-06 1.06507e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| of elections ||| 0.00636943 0.0116562 8.48644e-07 4.90932e-07 2.718 ||| 0-0 ||| 157 1.17835e+06 +en ||| of emphasis on ||| 0.12 0.22993 2.54593e-06 2.30708e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| of emphasis ||| 0.0166667 0.0116562 8.48644e-07 6.96851e-07 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| of employment in ||| 0.00934579 0.605812 8.48644e-07 1.2276e-06 2.718 ||| 0-2 ||| 107 1.17835e+06 +en ||| of energy , of ||| 1 0.0116562 8.48644e-07 7.85973e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of energy ||| 0.000479846 0.0116562 8.48644e-07 1.21233e-06 2.718 ||| 0-0 ||| 2084 1.17835e+06 +en ||| of enforcement in ||| 1 0.605812 8.48644e-07 3.26355e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of entering into ||| 0.0625 0.0116562 8.48644e-07 2.17017e-10 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| of entering ||| 0.0540541 0.0116562 1.69729e-06 2.11374e-07 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| of equal opportunities ||| 0.00408163 0.0116562 8.48644e-07 2.66772e-11 2.718 ||| 0-0 ||| 245 1.17835e+06 +en ||| of equal ||| 0.000869565 0.0116562 8.48644e-07 7.80036e-07 2.718 ||| 0-0 ||| 1150 1.17835e+06 +en ||| of ethnicity and race , in counterterrorism ||| 1 0.605812 8.48644e-07 1.716e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of ethnicity and race , in ||| 0.5 0.605812 8.48644e-07 4.29001e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| of ever being able to ||| 0.5 0.0116562 8.48644e-07 5.40981e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of ever being able ||| 0.5 0.0116562 8.48644e-07 6.08814e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of ever being ||| 0.5 0.0116562 8.48644e-07 7.29206e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of ever ||| 0.0232558 0.0116562 8.48644e-07 2.56239e-06 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| of everything in ||| 0.2 0.605812 8.48644e-07 2.32214e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| of expenditure may impact on ||| 1 0.22993 8.48644e-07 8.41733e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of experience of ||| 0.0416667 0.0116562 8.48644e-07 5.12281e-08 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| of external ||| 0.0204082 0.0116562 8.48644e-07 2.55012e-07 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| of facing up to ||| 0.047619 0.0116562 8.48644e-07 2.20273e-10 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| of facing up ||| 0.0555556 0.0116562 8.48644e-07 2.47893e-09 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| of facing ||| 0.047619 0.0116562 8.48644e-07 7.26852e-07 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| of fact in ||| 0.25 0.605812 8.48644e-07 7.35379e-05 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| of figures only by ||| 1 0.0468744 8.48644e-07 2.37317e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of fish products into ||| 1 0.525896 8.48644e-07 4.14283e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of forest in ||| 0.0666667 0.308734 8.48644e-07 6.5492e-08 2.718 ||| 0-0 0-2 ||| 15 1.17835e+06 +en ||| of fraud is in ||| 1 0.605812 8.48644e-07 1.21953e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of fresh ||| 0.03125 0.0116562 8.48644e-07 3.68199e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| of fuel on ||| 1 0.22993 8.48644e-07 8.44276e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of fundamental ||| 0.00452489 0.0116562 8.48644e-07 6.72304e-07 2.718 ||| 0-0 ||| 221 1.17835e+06 +en ||| of genuinely ||| 0.166667 0.0116562 8.48644e-07 4.66385e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| of getting started . when ||| 1 0.142731 8.48644e-07 5.1261e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of getting to ||| 0.0625 0.0116562 8.48644e-07 1.40806e-07 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| of getting ||| 0.00325733 0.0116562 8.48644e-07 1.58462e-06 2.718 ||| 0-0 ||| 307 1.17835e+06 +en ||| of global ||| 0.0120482 0.0116562 8.48644e-07 6.23211e-07 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| of good practice should be presented ||| 1 0.0116562 8.48644e-07 4.7168e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of good practice should be ||| 1 0.0116562 8.48644e-07 5.98579e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of good practice should ||| 0.5 0.0116562 8.48644e-07 3.30289e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of good practice ||| 0.00558659 0.0116562 8.48644e-07 7.45404e-10 2.718 ||| 0-0 ||| 179 1.17835e+06 +en ||| of good ||| 0.000772798 0.0116562 8.48644e-07 7.07215e-06 2.718 ||| 0-0 ||| 1294 1.17835e+06 +en ||| of goods and services . in ||| 1 0.605812 1.69729e-06 3.88597e-15 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| of goods in ||| 0.0238095 0.605812 8.48644e-07 1.15731e-06 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| of great importance to ||| 0.00990099 0.0247351 8.48644e-07 7.80095e-11 2.718 ||| 0-3 ||| 101 1.17835e+06 +en ||| of great ||| 0.000749064 0.0116562 8.48644e-07 5.35934e-06 2.718 ||| 0-0 ||| 1335 1.17835e+06 +en ||| of grievance ||| 0.125 0.0116562 8.48644e-07 9.5459e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| of hand over ||| 0.5 0.157937 8.48644e-07 8.63983e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of hand ||| 0.00729927 0.0116562 8.48644e-07 5.40843e-06 2.718 ||| 0-0 ||| 137 1.17835e+06 +en ||| of harassment in ||| 0.5 0.605812 8.48644e-07 1.00417e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of having committed ||| 0.142857 0.0116562 8.48644e-07 4.32349e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| of having ||| 0.00316957 0.0116562 3.39458e-06 5.22161e-06 2.718 ||| 0-0 ||| 1262 1.17835e+06 +en ||| of help at ||| 0.5 0.321886 8.48644e-07 4.14709e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of her here on a ||| 1 0.22993 8.48644e-07 1.10421e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of her here on ||| 1 0.22993 8.48644e-07 2.49113e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of high quality in ||| 0.153846 0.605812 1.69729e-06 1.8478e-10 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| of him in ||| 0.333333 0.605812 8.48644e-07 8.04843e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of him was perhaps unfair ||| 1 0.0116562 8.48644e-07 1.67402e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of him was perhaps ||| 1 0.0116562 8.48644e-07 2.11901e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of him was ||| 0.5 0.0116562 8.48644e-07 1.36975e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of him ||| 0.0224719 0.0116562 1.69729e-06 4.37202e-06 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| of his acts both in ||| 1 0.605812 8.48644e-07 7.11043e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of hope , ||| 0.0204082 0.0005295 8.48644e-07 7.06665e-08 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| of hope ||| 0.00247525 0.0005295 8.48644e-07 5.92568e-07 2.718 ||| 0-1 ||| 404 1.17835e+06 +en ||| of horses ||| 0.0222222 0.0116562 8.48644e-07 3.00014e-08 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| of house ||| 0.166667 0.0116562 8.48644e-07 2.94559e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| of human rights ||| 0.000195465 0.0116562 8.48644e-07 3.36729e-10 2.718 ||| 0-0 ||| 5116 1.17835e+06 +en ||| of human ||| 0.00526316 0.0116562 1.69729e-06 1.68281e-06 2.718 ||| 0-0 ||| 380 1.17835e+06 +en ||| of identity in ||| 1 0.605812 8.48644e-07 5.07106e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of identity ||| 0.0147059 0.0116562 8.48644e-07 2.75467e-07 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| of impact assessments on ||| 0.5 0.22993 8.48644e-07 2.15773e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of implementation in ||| 0.0526316 0.605812 8.48644e-07 1.9506e-06 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| of implementation ||| 0.00191571 0.0116562 8.48644e-07 1.05959e-06 2.718 ||| 0-0 ||| 522 1.17835e+06 +en ||| of importance to a ||| 0.5 0.0247351 8.48644e-07 8.79856e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of importance to ||| 0.0117647 0.0247351 8.48644e-07 1.98498e-07 2.718 ||| 0-2 ||| 85 1.17835e+06 +en ||| of in , ||| 1 0.605812 8.48644e-07 0.0029938 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| of in terms ||| 0.2 0.605812 8.48644e-07 2.75544e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| of in the ||| 0.103448 0.605812 2.54593e-06 0.0015412 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| of in ||| 0.5 0.605812 5.09187e-05 0.0251043 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| of increase in ||| 0.0714286 0.605812 8.48644e-07 3.24347e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| of increasingly ||| 0.0833333 0.0116562 8.48644e-07 7.85491e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| of individual responsibility ||| 0.0454545 0.0116562 8.48644e-07 2.22715e-10 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| of individual ||| 0.00155039 0.0116562 8.48644e-07 1.92827e-06 2.718 ||| 0-0 ||| 645 1.17835e+06 +en ||| of industry here , ||| 1 0.0116562 8.48644e-07 4.35635e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of industry here ||| 1 0.0116562 8.48644e-07 3.65298e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of industry in ||| 0.04 0.605812 8.48644e-07 3.31627e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| of industry ||| 0.00180832 0.0116562 8.48644e-07 1.80145e-06 2.718 ||| 0-0 ||| 553 1.17835e+06 +en ||| of inequality ||| 0.0113636 0.0116562 8.48644e-07 3.00014e-08 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| of inflation . at ||| 1 0.321886 8.48644e-07 2.83244e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of influence on ||| 0.125 0.22993 8.48644e-07 1.54408e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| of infringement of ||| 0.0416667 0.0116562 8.48644e-07 4.81885e-09 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| of ingredients used in ||| 1 0.605812 8.48644e-07 3.44631e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of insistence ||| 0.166667 0.0116562 8.48644e-07 3.95473e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| of instruction in ||| 0.5 0.0116562 1.69729e-06 5.25408e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of instruction ||| 0.0526316 0.0116562 8.48644e-07 2.45466e-08 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| of instruments by ||| 0.5 0.0468744 8.48644e-07 1.19782e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of integration ||| 0.00162602 0.0116562 8.48644e-07 2.70013e-07 2.718 ||| 0-0 ||| 615 1.17835e+06 +en ||| of intellectual property in ||| 0.0769231 0.605812 8.48644e-07 2.78105e-12 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| of interest , on ||| 1 0.22993 8.48644e-07 6.04641e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of interest in ||| 0.00909091 0.605812 8.48644e-07 2.81921e-06 2.718 ||| 0-2 ||| 110 1.17835e+06 +en ||| of interests ||| 0.00301205 0.0116562 8.48644e-07 1.86963e-06 2.718 ||| 0-0 ||| 332 1.17835e+06 +en ||| of investor to another ||| 0.5 0.0247351 8.48644e-07 5.15788e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of investor to ||| 0.5 0.0247351 8.48644e-07 2.13931e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of inviting Mauritania ||| 1 0.0116562 8.48644e-07 1.71826e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of inviting ||| 0.05 0.0116562 8.48644e-07 2.45466e-08 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| of islands , which are in , ||| 1 0.308734 8.48644e-07 9.11883e-14 2.718 ||| 0-0 0-5 ||| 1 1.17835e+06 +en ||| of islands , which are in ||| 1 0.308734 8.48644e-07 7.64651e-13 2.718 ||| 0-0 0-5 ||| 1 1.17835e+06 +en ||| of it , ||| 0.00503778 0.0116562 1.69729e-06 2.89204e-05 2.718 ||| 0-0 ||| 397 1.17835e+06 +en ||| of it - in ||| 0.5 0.605812 8.48644e-07 1.68399e-06 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of it among ||| 1 0.0422459 8.48644e-07 3.07915e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of it at ||| 0.0769231 0.321886 8.48644e-07 3.86726e-05 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| of it being ||| 0.0192308 0.0116562 8.48644e-07 6.90134e-07 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| of it by ||| 0.0625 0.0468744 8.48644e-07 8.22437e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| of it during ||| 0.333333 0.226251 8.48644e-07 2.79521e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of it for the ||| 0.333333 0.0286209 8.48644e-07 6.82851e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of it for ||| 0.153846 0.0286209 1.69729e-06 1.11228e-05 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| of it from ||| 0.0909091 0.0308834 8.48644e-07 3.67864e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| of it going on in ||| 1 0.417871 8.48644e-07 3.17293e-08 2.718 ||| 0-3 0-4 ||| 1 1.17835e+06 +en ||| of it in the ||| 0.0434783 0.605812 8.48644e-07 2.74074e-05 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| of it in ||| 0.246914 0.605812 1.69729e-05 0.000446434 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| of it into ||| 0.333333 0.525896 8.48644e-07 2.14016e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of it is ||| 0.0192308 0.0116562 1.69729e-06 7.60051e-06 2.718 ||| 0-0 ||| 104 1.17835e+06 +en ||| of it primarily in ||| 1 0.605812 8.48644e-07 8.03582e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of it will be ||| 0.0909091 0.0116562 8.48644e-07 3.80218e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| of it will ||| 0.142857 0.0116562 8.48644e-07 2.098e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| of it ||| 0.00828001 0.0116562 1.86702e-05 0.000242509 2.718 ||| 0-0 ||| 2657 1.17835e+06 +en ||| of its adoption at ||| 1 0.321886 8.48644e-07 1.42829e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of its kind in ||| 0.0526316 0.605812 8.48644e-07 1.74538e-08 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| of its own ||| 0.00163399 0.0116562 8.48644e-07 3.29374e-08 2.718 ||| 0-0 ||| 612 1.17835e+06 +en ||| of its position ||| 0.0333333 0.0116562 8.48644e-07 6.39785e-09 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| of its staff at ||| 0.5 0.321886 8.48644e-07 1.24859e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of its ||| 0.000466027 0.0116562 4.24322e-06 1.94286e-05 2.718 ||| 0-0 ||| 10729 1.17835e+06 +en ||| of jobs ||| 0.000705716 0.0116562 8.48644e-07 7.06397e-07 2.718 ||| 0-0 ||| 1417 1.17835e+06 +en ||| of judicial decisions in ||| 0.2 0.0116562 8.48644e-07 2.89529e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| of judicial decisions ||| 0.0243902 0.0116562 8.48644e-07 1.35265e-11 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| of judicial ||| 0.0227273 0.0116562 8.48644e-07 1.77281e-07 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| of just ||| 0.00440529 0.0066906 8.48644e-07 7.14579e-07 2.718 ||| 0-0 0-1 ||| 227 1.17835e+06 +en ||| of knots in ||| 0.333333 0.605812 8.48644e-07 1.7573e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of land must ||| 1 0.0116562 8.48644e-07 8.11478e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of land ||| 0.00363636 0.0116562 8.48644e-07 5.25024e-07 2.718 ||| 0-0 ||| 275 1.17835e+06 +en ||| of law in ||| 0.00873362 0.605812 1.69729e-06 4.42588e-06 2.718 ||| 0-2 ||| 229 1.17835e+06 +en ||| of law under pressure ||| 1 0.205566 8.48644e-07 3.25717e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of law under ||| 0.2 0.205566 8.48644e-07 5.41958e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| of legislation in ||| 0.0246914 0.605812 1.69729e-06 2.01587e-06 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| of legislation introduced ||| 0.5 0.0116562 8.48644e-07 1.01292e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of legislation ||| 0.000670691 0.0116562 8.48644e-07 1.09505e-06 2.718 ||| 0-0 ||| 1491 1.17835e+06 +en ||| of life expectancy in ||| 1 0.605812 8.48644e-07 4.18363e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of life in ||| 0.0171429 0.605812 2.54593e-06 3.8033e-06 2.718 ||| 0-2 ||| 175 1.17835e+06 +en ||| of life ||| 0.000452489 0.0116562 8.48644e-07 2.06601e-06 2.718 ||| 0-0 ||| 2210 1.17835e+06 +en ||| of light in ||| 0.166667 0.605812 8.48644e-07 4.36312e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| of lip ||| 1 0.0116562 8.48644e-07 2.45466e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of locations in ||| 0.25 0.605812 8.48644e-07 9.03754e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| of lots ||| 0.25 0.0116562 8.48644e-07 5.86391e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of luck in ||| 0.117647 0.605812 1.69729e-06 2.43511e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| of maize to ||| 1 0.0247351 8.48644e-07 1.06966e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of major importance , and in ||| 1 0.605812 8.48644e-07 4.71538e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of making ||| 0.000914913 0.0116562 8.48644e-07 5.24615e-06 2.718 ||| 0-0 ||| 1093 1.17835e+06 +en ||| of maladministration in ||| 0.125 0.605812 8.48644e-07 3.5146e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| of management ||| 0.00578035 0.0116562 8.48644e-07 5.98664e-07 2.718 ||| 0-0 ||| 173 1.17835e+06 +en ||| of material ||| 0.0123457 0.0116562 8.48644e-07 3.832e-07 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| of measures to ||| 0.00564972 0.0116562 1.69729e-06 2.50713e-07 2.718 ||| 0-0 ||| 354 1.17835e+06 +en ||| of measures ||| 0.000493827 0.0116562 8.48644e-07 2.8215e-06 2.718 ||| 0-0 ||| 2025 1.17835e+06 +en ||| of meat on sale in ||| 1 0.605812 8.48644e-07 3.80962e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of members ||| 0.00288184 0.0006057 8.48644e-07 2.93566e-07 2.718 ||| 0-1 ||| 347 1.17835e+06 +en ||| of men which , taken at ||| 0.5 0.321886 8.48644e-07 8.53409e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| of methods ||| 0.0142857 0.0116562 8.48644e-07 4.32293e-07 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| of meticulous training , with ||| 1 0.0535436 8.48644e-07 1.06728e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of money being ||| 0.0526316 0.0116562 8.48644e-07 6.34126e-09 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| of money in ||| 0.0188679 0.605812 8.48644e-07 4.10204e-06 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| of money spent on ||| 0.0769231 0.22993 8.48644e-07 4.72882e-11 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| of money spent to ||| 1 0.0247351 8.48644e-07 1.6005e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of money will not help if they ||| 1 0.0178573 8.48644e-07 1.8936e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of money will not help if ||| 1 0.0178573 8.48644e-07 5.80146e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of money ||| 0.000593472 0.0116562 8.48644e-07 2.22829e-06 2.718 ||| 0-0 ||| 1685 1.17835e+06 +en ||| of more ||| 0.00327869 0.0116562 2.54593e-06 3.11428e-05 2.718 ||| 0-0 ||| 915 1.17835e+06 +en ||| of most ||| 0.00235294 0.0116562 8.48644e-07 5.89391e-06 2.718 ||| 0-0 ||| 425 1.17835e+06 +en ||| of movement ||| 0.000702247 0.0116562 8.48644e-07 5.98664e-07 2.718 ||| 0-0 ||| 1424 1.17835e+06 +en ||| of much ||| 0.00680272 0.0116562 8.48644e-07 1.36875e-05 2.718 ||| 0-0 ||| 147 1.17835e+06 +en ||| of my group ||| 0.000615006 0.0116562 8.48644e-07 1.12957e-09 2.718 ||| 0-0 ||| 1626 1.17835e+06 +en ||| of my ||| 0.000306138 0.0116562 1.69729e-06 8.76995e-06 2.718 ||| 0-0 ||| 6533 1.17835e+06 +en ||| of myself ||| 0.0526316 0.0116562 8.48644e-07 2.12055e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| of negligence on ||| 0.5 0.22993 8.48644e-07 4.96633e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of negotiations in ||| 0.0192308 0.605812 8.48644e-07 1.39078e-06 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| of new competences and exactly ||| 1 0.0116562 8.48644e-07 5.94529e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of new competences and ||| 1 0.0116562 8.48644e-07 5.9216e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of new competences ||| 0.333333 0.0116562 8.48644e-07 4.72748e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| of new members ||| 0.0416667 0.0116562 8.48644e-07 1.20225e-09 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| of new ||| 0.000716589 0.0116562 1.69729e-06 8.15083e-06 2.718 ||| 0-0 ||| 2791 1.17835e+06 +en ||| of news ||| 0.037037 0.0116562 8.48644e-07 4.95023e-07 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| of nitrogenous ||| 1 0.0116562 8.48644e-07 5.4548e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of no ||| 0.00263158 0.0116562 8.48644e-07 1.0615e-05 2.718 ||| 0-0 ||| 380 1.17835e+06 +en ||| of norms relating to ||| 0.5 0.0116562 8.48644e-07 1.51555e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of norms relating ||| 0.5 0.0116562 8.48644e-07 1.70558e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of norms ||| 0.04 0.0116562 8.48644e-07 1.50007e-08 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| of nothing but ||| 0.0769231 0.0116562 8.48644e-07 1.73436e-09 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| of nothing ||| 0.03125 0.0116562 8.48644e-07 2.53785e-06 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| of now in ||| 1 0.605812 8.48644e-07 5.17123e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of observers at ||| 0.333333 0.321886 8.48644e-07 1.80498e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of occupation in ||| 0.333333 0.605812 8.48644e-07 1.53136e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of offering ||| 0.01 0.0116562 8.48644e-07 2.94559e-07 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| of office , as ||| 0.166667 0.066968 8.48644e-07 1.2e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| of office , in ||| 0.5 0.605812 8.48644e-07 3.08062e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of office , ||| 0.025641 0.0116562 8.48644e-07 1.67344e-07 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| of office ||| 0.00966184 0.0116562 1.69729e-06 1.40325e-06 2.718 ||| 0-0 ||| 207 1.17835e+06 +en ||| of oil ||| 0.00196078 0.0116562 8.48644e-07 4.75931e-07 2.718 ||| 0-0 ||| 510 1.17835e+06 +en ||| of on ||| 0.0555556 0.22993 8.48644e-07 0.00451484 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| of one ' ||| 0.1 0.0116562 8.48644e-07 1.95236e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| of one mind when it ||| 0.5 0.142731 8.48644e-07 6.04275e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of one mind when ||| 0.5 0.142731 8.48644e-07 3.39801e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of one ||| 0.00225861 0.0116562 3.39458e-06 5.6839e-05 2.718 ||| 0-0 ||| 1771 1.17835e+06 +en ||| of openness in ||| 0.0714286 0.605812 8.48644e-07 1.90792e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| of operation ||| 0.00628931 0.0116562 8.48644e-07 7.75945e-07 2.718 ||| 0-0 ||| 159 1.17835e+06 +en ||| of operations , ||| 0.0416667 0.0116562 8.48644e-07 4.09822e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| of operations ||| 0.00714286 0.0116562 8.48644e-07 3.43652e-07 2.718 ||| 0-0 ||| 140 1.17835e+06 +en ||| of opinion in ||| 0.0178571 0.605812 8.48644e-07 6.16059e-06 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| of opinion that were expressed in ||| 0.5 0.605812 8.48644e-07 1.80446e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| of opinion within ||| 0.222222 0.369196 1.69729e-06 1.47907e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| of opinion ||| 0.00236686 0.0116562 1.69729e-06 3.34652e-06 2.718 ||| 0-0 ||| 845 1.17835e+06 +en ||| of opinions ||| 0.00564972 0.0116562 8.48644e-07 3.00014e-07 2.718 ||| 0-0 ||| 177 1.17835e+06 +en ||| of or the country being moved into ||| 1 0.525896 8.48644e-07 2.74253e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| of organic solvents in ||| 0.2 0.605812 8.48644e-07 4.97065e-13 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| of organisation ||| 0.0125 0.0116562 8.48644e-07 4.60931e-07 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| of origin , ||| 0.00280112 0.0116562 8.48644e-07 4.16327e-08 2.718 ||| 0-0 ||| 357 1.17835e+06 +en ||| of origin ||| 0.000400481 0.0116562 8.48644e-07 3.49107e-07 2.718 ||| 0-0 ||| 2497 1.17835e+06 +en ||| of other ||| 0.000404204 0.0116562 8.48644e-07 1.76667e-05 2.718 ||| 0-0 ||| 2474 1.17835e+06 +en ||| of our cultural heritage ||| 0.030303 0.0116562 8.48644e-07 4.13764e-15 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| of our cultural ||| 0.142857 0.0116562 8.48644e-07 4.40175e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| of our particular problems in ||| 1 0.605812 8.48644e-07 2.85988e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of our progress ||| 0.1 0.0116562 8.48644e-07 2.47739e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| of our ||| 0.000411899 0.0116562 7.6378e-06 1.88109e-05 2.718 ||| 0-0 ||| 21850 1.17835e+06 +en ||| of ours ||| 0.00390625 0.0116562 8.48644e-07 4.26838e-07 2.718 ||| 0-0 ||| 256 1.17835e+06 +en ||| of packaging , in ||| 1 0.605812 8.48644e-07 1.28733e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of paedophilia on the Internet . we ||| 1 0.22993 8.48644e-07 1.1542e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of paedophilia on the Internet . ||| 1 0.22993 8.48644e-07 1.01671e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of paedophilia on the Internet ||| 1 0.22993 8.48644e-07 3.35658e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of paedophilia on the ||| 1 0.22993 8.48644e-07 1.94022e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of paedophilia on ||| 0.5 0.22993 8.48644e-07 3.16039e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of participating , ||| 0.25 0.0116562 8.48644e-07 1.87022e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of participating ||| 0.0142857 0.0116562 8.48644e-07 1.56825e-07 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| of peace in the ||| 0.025 0.0116562 8.48644e-07 7.47258e-10 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| of peace in ||| 0.0133333 0.0116562 8.48644e-07 1.21719e-08 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| of peace ||| 0.000819672 0.0116562 8.48644e-07 5.68663e-07 2.718 ||| 0-0 ||| 1220 1.17835e+06 +en ||| of people in favour of ||| 0.25 0.605812 8.48644e-07 3.88611e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| of people in favour ||| 0.25 0.605812 8.48644e-07 7.14831e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| of people in ||| 0.00506329 0.605812 1.69729e-06 2.20968e-05 2.718 ||| 0-2 ||| 395 1.17835e+06 +en ||| of people living in ||| 0.0149254 0.605812 8.48644e-07 1.85171e-09 2.718 ||| 0-3 ||| 67 1.17835e+06 +en ||| of people on ||| 0.05 0.22993 1.69729e-06 3.97397e-06 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| of people taking part in ||| 1 0.605812 8.48644e-07 1.11961e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of people ||| 0.000186324 0.0116562 8.48644e-07 1.20033e-05 2.718 ||| 0-0 ||| 5367 1.17835e+06 +en ||| of people ’ ||| 0.142857 0.0116562 8.48644e-07 2.09109e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| of peoples ||| 0.00421941 0.0116562 8.48644e-07 1.90918e-07 2.718 ||| 0-0 ||| 237 1.17835e+06 +en ||| of persons in ||| 0.0263158 0.605812 8.48644e-07 1.29287e-06 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| of piracy ||| 0.0120482 0.0116562 8.48644e-07 1.50007e-08 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| of play at ||| 1 0.321886 8.48644e-07 5.61065e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of play in ||| 0.0714286 0.605812 8.48644e-07 6.4769e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| of pointing ||| 0.0714286 0.0116562 8.48644e-07 3.0956e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| of politics is ||| 0.111111 0.0116562 8.48644e-07 3.84659e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| of politics ||| 0.00340136 0.0116562 8.48644e-07 1.22733e-07 2.718 ||| 0-0 ||| 294 1.17835e+06 +en ||| of posted workers to annual holidays ||| 1 0.0247351 8.48644e-07 2.83099e-23 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of posted workers to annual ||| 1 0.0247351 8.48644e-07 1.28681e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of posted workers to ||| 1 0.0247351 8.48644e-07 4.4681e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of poverty by ||| 0.166667 0.0468744 8.48644e-07 6.98345e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| of power in ||| 0.0333333 0.605812 2.54593e-06 3.74807e-06 2.718 ||| 0-2 ||| 90 1.17835e+06 +en ||| of power ||| 0.00111607 0.0116562 8.48644e-07 2.036e-06 2.718 ||| 0-0 ||| 896 1.17835e+06 +en ||| of pressure in ||| 0.2 0.605812 8.48644e-07 1.50877e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| of pressure on ||| 0.0416667 0.22993 8.48644e-07 2.71342e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| of price increase ||| 0.111111 0.0116562 8.48644e-07 9.00331e-11 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| of price ||| 0.00917431 0.0116562 8.48644e-07 6.96851e-07 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| of proceedings ||| 0.00862069 0.0116562 8.48644e-07 4.95023e-07 2.718 ||| 0-0 ||| 116 1.17835e+06 +en ||| of produce in ||| 1 0.605812 8.48644e-07 2.22173e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of producers in ||| 0.1 0.605812 8.48644e-07 4.87023e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| of producing for ||| 0.25 0.0286209 8.48644e-07 2.09532e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| of programmes in ||| 0.0384615 0.605812 8.48644e-07 1.34559e-06 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| of progress ||| 0.00136426 0.0116562 8.48644e-07 1.79599e-06 2.718 ||| 0-0 ||| 733 1.17835e+06 +en ||| of projects in ||| 0.0227273 0.605812 8.48644e-07 1.23764e-06 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| of providing ||| 0.00144718 0.0116562 8.48644e-07 1.25188e-06 2.718 ||| 0-0 ||| 691 1.17835e+06 +en ||| of public deficits in ||| 0.333333 0.605812 8.48644e-07 1.29819e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of purpose ||| 0.0138889 0.0116562 8.48644e-07 2.4533e-06 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| of putting it into ||| 0.0909091 0.525896 8.48644e-07 2.39484e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| of putting ||| 0.00423729 0.0116562 8.48644e-07 1.52598e-06 2.718 ||| 0-0 ||| 236 1.17835e+06 +en ||| of quality education at ||| 1 0.321886 8.48644e-07 3.62374e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of radioactive ||| 0.0666667 0.0116562 8.48644e-07 2.45466e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| of raising ||| 0.00680272 0.0116562 8.48644e-07 3.13651e-07 2.718 ||| 0-0 ||| 147 1.17835e+06 +en ||| of real , ||| 0.333333 0.0116562 8.48644e-07 2.92567e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| of real ||| 0.00473934 0.0116562 8.48644e-07 2.4533e-06 2.718 ||| 0-0 ||| 211 1.17835e+06 +en ||| of realism ||| 0.0178571 0.0116562 8.48644e-07 9.5459e-09 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| of recognising in ||| 1 0.605812 8.48644e-07 1.25521e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of reference in ||| 0.0625 0.605812 8.48644e-07 2.14139e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| of reform ||| 0.00187266 0.0116562 8.48644e-07 5.59117e-07 2.718 ||| 0-0 ||| 534 1.17835e+06 +en ||| of reformulating ||| 0.333333 0.0116562 8.48644e-07 5.4548e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| of regulation in ||| 0.0909091 0.605812 8.48644e-07 1.75228e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| of remedial ||| 1 0.0116562 8.48644e-07 3.00014e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of repair ||| 0.0384615 0.0116562 8.48644e-07 4.90932e-08 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| of resigning oneself ||| 0.5 0.0116562 8.48644e-07 7.9231e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of resigning ||| 0.333333 0.0116562 8.48644e-07 9.5459e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| of respect for ||| 0.0013369 0.0286209 8.48644e-07 2.70578e-07 2.718 ||| 0-2 ||| 748 1.17835e+06 +en ||| of responsibility for ||| 0.00714286 0.0286209 8.48644e-07 7.22416e-08 2.718 ||| 0-2 ||| 140 1.17835e+06 +en ||| of restrictions in the ||| 1 0.605812 8.48644e-07 2.94368e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of restrictions in ||| 0.5 0.605812 8.48644e-07 4.79492e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of river ||| 0.166667 0.0116562 8.48644e-07 5.86391e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| of room to ||| 0.142857 0.0116562 8.48644e-07 4.53198e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| of room ||| 0.0178571 0.0116562 8.48644e-07 5.10024e-07 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| of roots in ||| 0.5 0.605812 8.48644e-07 3.61501e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of salmon in ||| 0.25 0.0116562 8.48644e-07 4.0865e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of salmon ||| 0.037037 0.0116562 8.48644e-07 1.90918e-08 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| of say on ||| 1 0.22993 8.48644e-07 4.31529e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of seats in ||| 0.0333333 0.605812 8.48644e-07 2.43511e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| of securing ||| 0.00632911 0.0116562 8.48644e-07 1.77281e-07 2.718 ||| 0-0 ||| 158 1.17835e+06 +en ||| of seeing things ||| 0.2 0.0116562 8.48644e-07 2.98736e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| of seeing ||| 0.00483092 0.0116562 8.48644e-07 7.26852e-07 2.718 ||| 0-0 ||| 207 1.17835e+06 +en ||| of sense to ||| 0.1 0.0116562 8.48644e-07 2.15814e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| of sense ||| 0.0212766 0.0116562 8.48644e-07 2.42875e-06 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| of service ||| 0.00309598 0.0116562 8.48644e-07 9.12315e-07 2.718 ||| 0-0 ||| 323 1.17835e+06 +en ||| of signal in ||| 1 0.605812 8.48644e-07 5.97482e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of so ||| 0.0178571 0.0116562 8.48644e-07 3.09519e-05 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| of solidarity in ||| 0.0153846 0.605812 8.48644e-07 6.60242e-07 2.718 ||| 0-2 ||| 65 1.17835e+06 +en ||| of some ||| 0.000436681 0.0116562 8.48644e-07 1.48548e-05 2.718 ||| 0-0 ||| 2290 1.17835e+06 +en ||| of something ||| 0.00452489 0.0116562 8.48644e-07 7.54808e-06 2.718 ||| 0-0 ||| 221 1.17835e+06 +en ||| of space that we have here in ||| 0.5 0.605812 8.48644e-07 4.81336e-15 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| of spare parts for ||| 0.2 0.0286209 8.48644e-07 3.68295e-13 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| of spectrum in ||| 1 0.605812 8.48644e-07 1.90792e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of step with ||| 0.0285714 0.0535436 8.48644e-07 9.34891e-08 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| of step ||| 0.027027 0.0116562 8.48644e-07 2.01146e-06 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| of stressing ||| 0.0714286 0.0818281 8.48644e-07 8.8095e-07 2.718 ||| 0-0 0-1 ||| 14 1.17835e+06 +en ||| of structure and , in ||| 1 0.605812 8.48644e-07 1.12125e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of studies ||| 0.00757576 0.0116562 8.48644e-07 1.07732e-07 2.718 ||| 0-0 ||| 132 1.17835e+06 +en ||| of subsidiarity must also ||| 0.5 0.0116562 8.48644e-07 5.7462e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of subsidiarity must ||| 0.0666667 0.0116562 8.48644e-07 1.13818e-10 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| of subsidiarity ||| 0.000469704 0.0116562 8.48644e-07 7.36398e-08 2.718 ||| 0-0 ||| 2129 1.17835e+06 +en ||| of substance in ||| 0.0909091 0.605812 8.48644e-07 7.40576e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| of substances above ||| 1 0.0146514 8.48644e-07 1.29404e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of success in ||| 0.027027 0.605812 8.48644e-07 1.49119e-06 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| of such sonars ||| 1 0.0116562 8.48644e-07 1.12854e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of such ||| 0.00207325 0.0116562 5.09187e-06 2.82136e-05 2.718 ||| 0-0 ||| 2894 1.17835e+06 +en ||| of suffering imposed ||| 0.2 0.0116562 8.48644e-07 3.37098e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| of suffering ||| 0.0105263 0.0116562 8.48644e-07 6.04119e-07 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| of suitability ||| 0.25 0.0116562 8.48644e-07 2.45466e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| of survival in ||| 0.166667 0.605812 8.48644e-07 1.63178e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| of sympathy with a request for ||| 0.5 0.0286209 8.48644e-07 2.10764e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| of taking part in ||| 0.030303 0.605812 8.48644e-07 1.272e-08 2.718 ||| 0-3 ||| 33 1.17835e+06 +en ||| of taking ||| 0.00172117 0.0153333 8.48644e-07 9.36148e-06 2.718 ||| 0-1 ||| 581 1.17835e+06 +en ||| of that at ||| 0.166667 0.321886 8.48644e-07 3.65814e-05 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| of that city by ||| 0.333333 0.0468744 8.48644e-07 1.59483e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of that disaster is ||| 1 0.0116562 8.48644e-07 1.81176e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of that disaster ||| 0.111111 0.0116562 8.48644e-07 5.78078e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| of that in terms ||| 0.166667 0.605812 8.48644e-07 4.6351e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| of that in ||| 0.127273 0.605812 5.94051e-06 0.000422294 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| of that money in ||| 0.5 0.605812 8.48644e-07 6.90028e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of that network in ||| 1 0.605812 8.48644e-07 1.04729e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of that sort on ||| 0.5 0.22993 8.48644e-07 1.21363e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of that strategy ||| 0.0333333 0.0116562 8.48644e-07 1.34656e-08 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| of that when it comes to ||| 1 0.142731 8.48644e-07 3.43943e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of that when it comes ||| 1 0.142731 8.48644e-07 3.8707e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of that when it ||| 1 0.142731 8.48644e-07 9.68158e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of that when ||| 0.125 0.142731 8.48644e-07 5.44423e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| of that ||| 0.00170329 0.0116562 8.48644e-06 0.000229396 2.718 ||| 0-0 ||| 5871 1.17835e+06 +en ||| of the ' ultimum ||| 1 0.0116562 8.48644e-07 1.15028e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of the ' ||| 0.00378072 0.0116562 1.69729e-06 2.8757e-06 2.718 ||| 0-0 ||| 529 1.17835e+06 +en ||| of the 50 cent coin in order ||| 1 0.605812 8.48644e-07 4.94146e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of the 50 cent coin in ||| 1 0.605812 8.48644e-07 9.278e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of the ACP sessions ||| 0.5 0.0116562 8.48644e-07 1.62752e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of the ACP ||| 0.0185185 0.0116562 8.48644e-07 9.04176e-09 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| of the ALDE Group . - ( ||| 0.00308642 0.0116562 8.48644e-07 5.82177e-20 2.718 ||| 0-0 ||| 324 1.17835e+06 +en ||| of the ALDE Group . - ||| 0.00130039 0.0116562 8.48644e-07 6.03667e-17 2.718 ||| 0-0 ||| 769 1.17835e+06 +en ||| of the ALDE Group . ||| 0.0012987 0.0116562 8.48644e-07 1.60035e-14 2.718 ||| 0-0 ||| 770 1.17835e+06 +en ||| of the ALDE Group ||| 0.00120048 0.0116562 8.48644e-07 5.28342e-12 2.718 ||| 0-0 ||| 833 1.17835e+06 +en ||| of the ALDE ||| 0.0434783 0.0116562 8.48644e-07 1.62417e-08 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| of the Commission , Mr ||| 0.00851064 0.0116562 1.69729e-06 3.80691e-11 2.718 ||| 0-0 ||| 235 1.17835e+06 +en ||| of the Commission , ||| 0.000590319 0.0116562 1.69729e-06 5.83166e-08 2.718 ||| 0-0 ||| 3388 1.17835e+06 +en ||| of the Commission . on ||| 0.5 0.22993 8.48644e-07 4.90388e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| of the Commission . ||| 0.000232721 0.0116562 8.48644e-07 1.48121e-09 2.718 ||| 0-0 ||| 4297 1.17835e+06 +en ||| of the Commission in ||| 0.00406504 0.605812 8.48644e-07 9.00213e-07 2.718 ||| 0-3 ||| 246 1.17835e+06 +en ||| of the Commission ||| 0.000209234 0.0116562 2.54593e-06 4.89009e-07 2.718 ||| 0-0 ||| 14338 1.17835e+06 +en ||| of the Committee on Women ' s ||| 1 0.22993 8.48644e-07 3.59289e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of the Committee on Women ' ||| 1 0.22993 8.48644e-07 1.88871e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of the Committee on Women ||| 0.5 0.22993 8.48644e-07 5.49858e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of the Committee on the Environment , ||| 0.00161812 0.22993 8.48644e-07 6.13139e-15 2.718 ||| 0-3 ||| 618 1.17835e+06 +en ||| of the Committee on the Environment ||| 0.00145773 0.22993 8.48644e-07 5.14142e-14 2.718 ||| 0-3 ||| 686 1.17835e+06 +en ||| of the Committee on the ||| 0.00546448 0.22993 8.48644e-07 2.59668e-09 2.718 ||| 0-3 ||| 183 1.17835e+06 +en ||| of the Committee on ||| 0.000362582 0.22993 2.54593e-06 4.22968e-08 2.718 ||| 0-3 ||| 8274 1.17835e+06 +en ||| of the Convention ||| 0.00103842 0.0116562 8.48644e-07 2.71253e-08 2.718 ||| 0-0 ||| 963 1.17835e+06 +en ||| of the Council on the other side ||| 1 0.22993 8.48644e-07 1.67096e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of the Council on the other ||| 1 0.22993 8.48644e-07 7.623e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of the Council on the ||| 0.0052356 0.22993 8.48644e-07 5.88421e-09 2.718 ||| 0-3 ||| 191 1.17835e+06 +en ||| of the Council on ||| 0.00222717 0.22993 8.48644e-07 9.58469e-08 2.718 ||| 0-3 ||| 449 1.17835e+06 +en ||| of the Council ||| 8.31255e-05 0.0116562 8.48644e-07 2.89504e-07 2.718 ||| 0-0 ||| 12030 1.17835e+06 +en ||| of the Czech Republic . at ||| 1 0.321886 8.48644e-07 1.45986e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of the ECB on ||| 0.333333 0.22993 8.48644e-07 2.3837e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of the EU should in ||| 1 0.605812 8.48644e-07 3.37901e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of the EU ||| 0.000154607 0.0116562 8.48644e-07 4.14247e-07 2.718 ||| 0-0 ||| 6468 1.17835e+06 +en ||| of the European Commission in ||| 0.02 0.605812 8.48644e-07 3.01022e-09 2.718 ||| 0-4 ||| 50 1.17835e+06 +en ||| of the European Commission ||| 0.000683527 0.0116562 8.48644e-07 1.6352e-09 2.718 ||| 0-0 ||| 1463 1.17835e+06 +en ||| of the European Parliament at 10 a.m. ||| 1 0.321886 8.48644e-07 7.47233e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of the European Parliament at 10 ||| 1 0.321886 8.48644e-07 4.1513e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of the European Parliament at ||| 0.0263158 0.321886 8.48644e-07 2.56253e-10 2.718 ||| 0-4 ||| 38 1.17835e+06 +en ||| of the European People 's Party ||| 0.000694444 0.0116562 8.48644e-07 4.71933e-17 2.718 ||| 0-0 ||| 1440 1.17835e+06 +en ||| of the European People 's ||| 0.0169492 0.0116562 8.48644e-07 3.12953e-13 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| of the European People ||| 0.0125 0.0116562 8.48644e-07 1.64331e-10 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| of the European Union . ||| 0.00021427 0.0116562 8.48644e-07 4.7266e-12 2.718 ||| 0-0 ||| 4667 1.17835e+06 +en ||| of the European Union ||| 0.000110601 0.0116562 1.69729e-06 1.56045e-09 2.718 ||| 0-0 ||| 18083 1.17835e+06 +en ||| of the European ||| 0.001772 0.0116562 5.09187e-06 2.79951e-06 2.718 ||| 0-0 ||| 3386 1.17835e+06 +en ||| of the House ||| 0.000792393 0.0116562 8.48644e-07 2.09384e-07 2.718 ||| 0-0 ||| 1262 1.17835e+06 +en ||| of the Member States in ||| 0.00495049 0.605812 8.48644e-07 3.78982e-10 2.718 ||| 0-4 ||| 202 1.17835e+06 +en ||| of the Members ||| 0.00210526 0.0116562 8.48644e-07 1.23487e-07 2.718 ||| 0-0 ||| 475 1.17835e+06 +en ||| of the Party ||| 0.00209644 0.0116562 8.48644e-07 1.2625e-07 2.718 ||| 0-0 ||| 477 1.17835e+06 +en ||| of the Presidency in ||| 0.1 0.605812 8.48644e-07 7.65975e-08 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| of the Treaty in ||| 0.0277778 0.605812 8.48644e-07 1.31926e-07 2.718 ||| 0-3 ||| 36 1.17835e+06 +en ||| of the WTO ||| 0.0014556 0.0116562 8.48644e-07 8.12084e-09 2.718 ||| 0-0 ||| 687 1.17835e+06 +en ||| of the Western Sahara in ||| 1 0.605812 8.48644e-07 1.22217e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of the amendments during ||| 1 0.226251 8.48644e-07 7.36274e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of the authorities in ||| 0.03125 0.605812 8.48644e-07 1.02644e-07 2.718 ||| 0-3 ||| 32 1.17835e+06 +en ||| of the blame ||| 0.027027 0.0116562 8.48644e-07 1.99254e-08 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| of the business ||| 0.0227273 0.0116562 8.48644e-07 1.04566e-07 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| of the changes ||| 0.00595238 0.0116562 8.48644e-07 4.27809e-08 2.718 ||| 0-0 ||| 168 1.17835e+06 +en ||| of the charges she ||| 0.5 0.0116562 8.48644e-07 5.23635e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of the charges ||| 0.0217391 0.0116562 8.48644e-07 1.84184e-08 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| of the cinema films shown in ||| 1 0.605812 8.48644e-07 1.12631e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of the content of ||| 0.0117647 0.0116562 8.48644e-07 2.24382e-09 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| of the content ||| 0.00588235 0.0116562 8.48644e-07 4.1274e-08 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| of the countries ||| 0.000751315 0.0116562 8.48644e-07 3.17885e-07 2.718 ||| 0-0 ||| 1331 1.17835e+06 +en ||| of the country at ||| 0.142857 0.0116562 8.48644e-07 1.2617e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| of the country in ||| 0.00917431 0.605812 8.48644e-07 5.54677e-07 2.718 ||| 0-3 ||| 109 1.17835e+06 +en ||| of the country ||| 0.000648508 0.0116562 8.48644e-07 3.01308e-07 2.718 ||| 0-0 ||| 1542 1.17835e+06 +en ||| of the crews on ||| 0.333333 0.22993 8.48644e-07 1.1087e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of the crime , in ||| 0.5 0.605812 8.48644e-07 7.73776e-09 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| of the criminal law in ||| 1 0.605812 8.48644e-07 1.13304e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of the crisis in ||| 0.0102041 0.605812 8.48644e-07 1.11428e-07 2.718 ||| 0-3 ||| 98 1.17835e+06 +en ||| of the current cases in ||| 1 0.605812 8.48644e-07 3.2536e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of the darkness of the current ||| 1 0.0116562 8.48644e-07 6.44668e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of the darkness of the ||| 1 0.0116562 8.48644e-07 3.91182e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of the darkness of ||| 1 0.0116562 8.48644e-07 6.3719e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of the darkness ||| 0.333333 0.0116562 8.48644e-07 1.17208e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| of the day , listening to ||| 1 0.0247351 8.48644e-07 3.61145e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of the demand contained within ||| 1 0.369196 8.48644e-07 1.34865e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of the different ||| 0.0019084 0.0116562 8.48644e-07 1.84351e-07 2.718 ||| 0-0 ||| 524 1.17835e+06 +en ||| of the draft strategy ||| 1 0.0116562 8.48644e-07 2.58004e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of the draft treaty ||| 0.111111 0.0116562 8.48644e-07 1.15596e-12 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| of the draft ||| 0.0019084 0.0116562 1.69729e-06 4.3953e-08 2.718 ||| 0-0 ||| 1048 1.17835e+06 +en ||| of the economy which are ||| 0.333333 0.0116562 8.48644e-07 5.63256e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| of the economy which ||| 0.0666667 0.0116562 8.48644e-07 3.7123e-10 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| of the economy ||| 0.00220264 0.0116562 1.69729e-06 4.37018e-08 2.718 ||| 0-0 ||| 908 1.17835e+06 +en ||| of the environment ] at ||| 1 0.321886 8.48644e-07 2.78618e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of the environment were speaking about at ||| 1 0.321886 8.48644e-07 2.16677e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| of the euro in ||| 0.0119048 0.605812 8.48644e-07 9.04682e-08 2.718 ||| 0-3 ||| 84 1.17835e+06 +en ||| of the events that took place in ||| 0.25 0.605812 8.48644e-07 4.18397e-16 2.718 ||| 0-6 ||| 4 1.17835e+06 +en ||| of the existence ||| 0.00621118 0.0116562 8.48644e-07 5.78505e-08 2.718 ||| 0-0 ||| 161 1.17835e+06 +en ||| of the fact that ||| 0.000559597 0.0116562 8.48644e-07 4.12535e-08 2.718 ||| 0-0 ||| 1787 1.17835e+06 +en ||| of the fact ||| 0.00127443 0.0116562 2.54593e-06 2.45241e-06 2.718 ||| 0-0 ||| 2354 1.17835e+06 +en ||| of the following ||| 0.0126582 0.0050528 8.48644e-07 1.42032e-08 2.718 ||| 0-1 0-2 ||| 79 1.17835e+06 +en ||| of the functioning ||| 0.015873 0.0116562 8.48644e-07 1.29766e-08 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| of the green ||| 0.166667 0.0116562 8.48644e-07 1.38975e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| of the ideas - which , ||| 1 0.0116562 8.48644e-07 1.12929e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of the ideas - which ||| 1 0.0116562 8.48644e-07 9.46957e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of the ideas - ||| 1 0.0116562 8.48644e-07 1.11477e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of the ideas ||| 0.00813008 0.0116562 8.48644e-07 2.95532e-08 2.718 ||| 0-0 ||| 123 1.17835e+06 +en ||| of the industry ||| 0.00438596 0.0116562 8.48644e-07 1.10594e-07 2.718 ||| 0-0 ||| 228 1.17835e+06 +en ||| of the investigations ||| 0.027027 0.0116562 8.48644e-07 6.94876e-09 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| of the issue in ||| 0.25 0.605812 1.69729e-06 1.16638e-06 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| of the issue ||| 0.00193798 0.0116562 8.48644e-07 6.33593e-07 2.718 ||| 0-0 ||| 516 1.17835e+06 +en ||| of the issues at ||| 0.0434783 0.321886 8.48644e-07 3.3577e-08 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| of the kind our ||| 0.5 0.0116562 8.48644e-07 5.63559e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of the kind ||| 0.00593472 0.0116562 1.69729e-06 4.08554e-07 2.718 ||| 0-0 ||| 337 1.17835e+06 +en ||| of the lack of ||| 0.00362319 0.0116562 8.48644e-07 5.53445e-09 2.718 ||| 0-3 ||| 276 1.17835e+06 +en ||| of the law in ||| 0.1 0.605812 1.69729e-06 2.71713e-07 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| of the law ||| 0.0015674 0.0116562 8.48644e-07 1.47598e-07 2.718 ||| 0-0 ||| 638 1.17835e+06 +en ||| of the mark in ||| 1 0.605812 8.48644e-07 8.3687e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of the matter ||| 0.00335008 0.0116562 1.69729e-06 8.68595e-07 2.718 ||| 0-0 ||| 597 1.17835e+06 +en ||| of the members of ||| 0.00966184 0.0116562 1.69729e-06 1.68399e-09 2.718 ||| 0-0 0-3 ||| 207 1.17835e+06 +en ||| of the most significant documents in ||| 1 0.0116562 8.48644e-07 1.1242e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of the most significant documents ||| 1 0.0116562 8.48644e-07 5.25215e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of the most significant ||| 0.047619 0.0116562 8.48644e-07 2.08419e-11 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| of the most ||| 0.00140845 0.0116562 8.48644e-07 3.61838e-07 2.718 ||| 0-0 ||| 710 1.17835e+06 +en ||| of the need for ||| 0.00187617 0.0286209 8.48644e-07 3.52077e-08 2.718 ||| 0-3 ||| 533 1.17835e+06 +en ||| of the new law adopted recently ||| 1 0.0095755 8.48644e-07 4.39075e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of the other ||| 0.000995025 0.0116562 8.48644e-07 1.08459e-06 2.718 ||| 0-0 ||| 1005 1.17835e+06 +en ||| of the paramilitaries in ||| 1 0.605812 8.48644e-07 1.69532e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of the past ||| 0.00133511 0.0116562 8.48644e-07 1.07245e-07 2.718 ||| 0-0 ||| 749 1.17835e+06 +en ||| of the peace ||| 0.0196078 0.0116562 8.48644e-07 3.49112e-08 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| of the people of ||| 0.00172712 0.0116562 8.48644e-07 4.0061e-08 2.718 ||| 0-0 ||| 579 1.17835e+06 +en ||| of the people over ||| 1 0.157937 8.48644e-07 1.17718e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of the people ||| 0.000418235 0.0116562 8.48644e-07 7.36903e-07 2.718 ||| 0-0 ||| 2391 1.17835e+06 +en ||| of the poor at ||| 0.2 0.321886 8.48644e-07 3.93845e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| of the port workers in ||| 1 0.605812 8.48644e-07 1.39386e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of the presence in the ||| 1 0.605812 8.48644e-07 3.64275e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of the presence in ||| 1 0.605812 8.48644e-07 5.93361e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of the processes ||| 0.0285714 0.0116562 8.48644e-07 1.35626e-08 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| of the programme for ||| 0.0357143 0.0286209 8.48644e-07 4.89199e-09 2.718 ||| 0-3 ||| 28 1.17835e+06 +en ||| of the programme in ||| 0.0454545 0.605812 8.48644e-07 1.96348e-07 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| of the provisions of ||| 0.00952381 0.0116562 8.48644e-07 3.58647e-09 2.718 ||| 0-3 ||| 105 1.17835e+06 +en ||| of the question in ||| 0.125 0.605812 8.48644e-07 1.27503e-06 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| of the rate in ||| 1 0.605812 8.48644e-07 1.54736e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of the reference to the Convention in ||| 1 0.605812 8.48644e-07 2.32359e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| of the report at ||| 0.2 0.321886 8.48644e-07 5.47244e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| of the report in just ||| 1 0.605812 8.48644e-07 7.97062e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of the report in ||| 0.0114943 0.605812 8.48644e-07 6.31736e-07 2.718 ||| 0-3 ||| 87 1.17835e+06 +en ||| of the report ||| 0.00021725 0.0116562 8.48644e-07 3.43168e-07 2.718 ||| 0-0 ||| 4603 1.17835e+06 +en ||| of the responsibility and emphasis on those ||| 1 0.22993 8.48644e-07 1.48376e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of the responsibility and emphasis on ||| 1 0.22993 8.48644e-07 2.04911e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of the responsibility for ||| 0.0131579 0.0286209 8.48644e-07 4.43504e-09 2.718 ||| 0-3 ||| 76 1.17835e+06 +en ||| of the rest of ||| 0.0277778 0.0116562 8.48644e-07 3.44082e-09 2.718 ||| 0-3 ||| 36 1.17835e+06 +en ||| of the review with ||| 0.25 0.0535436 8.48644e-07 1.47086e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| of the right kind and in ||| 1 0.605812 8.48644e-07 6.07546e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of the rule of ||| 0.00198807 0.0116562 8.48644e-07 3.70025e-09 2.718 ||| 0-0 ||| 503 1.17835e+06 +en ||| of the rule ||| 0.0018797 0.0116562 8.48644e-07 6.80644e-08 2.718 ||| 0-0 ||| 532 1.17835e+06 +en ||| of the single currency in ||| 0.125 0.605812 8.48644e-07 9.14759e-12 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| of the situation in ||| 0.002457 0.605812 8.48644e-07 7.93716e-07 2.718 ||| 0-3 ||| 407 1.17835e+06 +en ||| of the situation when the ||| 0.5 0.142731 8.48644e-07 6.28199e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of the situation when ||| 0.5 0.142731 8.48644e-07 1.02326e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of the sort , ||| 0.111111 0.0116562 8.48644e-07 1.59544e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| of the sort ||| 0.00990099 0.0116562 8.48644e-07 1.33785e-07 2.718 ||| 0-0 ||| 101 1.17835e+06 +en ||| of the statistics published by ||| 1 0.0468744 8.48644e-07 6.83804e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of the story ||| 0.0123457 0.0116562 8.48644e-07 1.47347e-08 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| of the supporting ||| 1 0.0116562 8.48644e-07 2.67904e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of the town ||| 0.0222222 0.0116562 8.48644e-07 1.05487e-08 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| of the use of spare parts for ||| 1 0.0286209 8.48644e-07 5.9763e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| of the victims ||| 0.00191205 0.0116562 8.48644e-07 2.95532e-08 2.718 ||| 0-0 ||| 523 1.17835e+06 +en ||| of the view , in the ||| 1 0.0011669 8.48644e-07 2.20452e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| of the view , in ||| 1 0.0011669 8.48644e-07 3.5909e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| of the view , ||| 0.5 0.0011669 8.48644e-07 1.67764e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| of the view ||| 0.0143885 0.0116562 1.69729e-06 7.56243e-07 2.718 ||| 0-0 ||| 139 1.17835e+06 +en ||| of the vote ||| 0.00141443 0.0116562 8.48644e-07 1.31692e-07 2.718 ||| 0-0 ||| 707 1.17835e+06 +en ||| of the voting on ||| 0.166667 0.22993 8.48644e-07 1.07821e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| of the water ||| 0.0217391 0.0116562 8.48644e-07 4.76367e-08 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| of the way in which ||| 0.00438596 0.605812 8.48644e-07 2.82208e-08 2.718 ||| 0-3 ||| 228 1.17835e+06 +en ||| of the way in ||| 0.00395257 0.605812 8.48644e-07 3.3222e-06 2.718 ||| 0-3 ||| 253 1.17835e+06 +en ||| of the way ||| 0.00143678 0.0116562 8.48644e-07 1.80467e-06 2.718 ||| 0-0 ||| 696 1.17835e+06 +en ||| of the word - in ||| 1 0.605812 8.48644e-07 5.91819e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of the work in ||| 0.0434783 0.605812 8.48644e-07 9.75577e-07 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| of the work of ||| 0.00442478 0.0116562 8.48644e-07 2.88101e-08 2.718 ||| 0-0 ||| 226 1.17835e+06 +en ||| of the work ||| 0.00111359 0.0116562 8.48644e-07 5.29948e-07 2.718 ||| 0-0 ||| 898 1.17835e+06 +en ||| of the world ||| 0.000282646 0.0116562 8.48644e-07 1.90714e-07 2.718 ||| 0-0 ||| 3538 1.17835e+06 +en ||| of the yards in question ||| 0.5 0.605812 8.48644e-07 1.78504e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of the yards in ||| 0.5 0.605812 8.48644e-07 2.15767e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of the ||| 0.000615154 0.0116562 0.000247804 0.0008372 2.718 ||| 0-0 ||| 474678 1.17835e+06 +en ||| of their actions on ||| 0.2 0.22993 1.69729e-06 3.65274e-10 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| of their bio-diversity in general ||| 0.25 0.605812 1.69729e-06 3.56251e-15 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| of their bio-diversity in ||| 0.25 0.605812 1.69729e-06 2.03688e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| of their choice ||| 0.0232558 0.0116562 8.48644e-07 7.04976e-10 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| of their efforts on ||| 0.5 0.0116562 8.48644e-07 1.28607e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of their efforts ||| 0.0526316 0.0116562 8.48644e-07 1.92209e-09 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| of their illegal immigrants in ||| 1 0.605812 8.48644e-07 1.76301e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of their life afloat ||| 0.5 0.0116562 8.48644e-07 1.67629e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of their life ||| 0.0344828 0.0116562 8.48644e-07 2.39471e-09 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| of their voices ||| 0.333333 0.0116562 8.48644e-07 1.53324e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| of their ||| 0.000899011 0.0116562 7.6378e-06 1.58066e-05 2.718 ||| 0-0 ||| 10011 1.17835e+06 +en ||| of them , was the ||| 1 0.0116562 8.48644e-07 8.39052e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of them , was ||| 1 0.0116562 8.48644e-07 1.36672e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of them , ||| 0.00168067 0.0116562 8.48644e-07 4.36232e-06 2.718 ||| 0-0 ||| 595 1.17835e+06 +en ||| of them are friendly ||| 0.111111 0.0116562 8.48644e-07 5.99417e-12 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| of them are ||| 0.00632911 0.0116562 1.69729e-06 5.55016e-07 2.718 ||| 0-0 ||| 316 1.17835e+06 +en ||| of them at the ||| 0.2 0.321886 8.48644e-07 3.58119e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| of them at ||| 0.0952381 0.321886 1.69729e-06 5.83333e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| of them by ||| 0.0666667 0.0468744 8.48644e-07 1.24056e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| of them have ||| 0.00495049 0.0116562 8.48644e-07 4.37488e-07 2.718 ||| 0-0 ||| 202 1.17835e+06 +en ||| of them in ||| 0.201183 0.605812 2.88539e-05 6.73397e-05 2.718 ||| 0-2 ||| 169 1.17835e+06 +en ||| of them into ||| 0.222222 0.525896 1.69729e-06 3.22819e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| of them now , in ||| 1 0.605812 8.48644e-07 1.65422e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of them on ||| 0.0952381 0.22993 1.69729e-06 1.21106e-05 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| of them under ||| 0.2 0.205566 8.48644e-07 8.24588e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| of them within ||| 0.25 0.369196 8.48644e-07 1.61673e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| of them ||| 0.00408799 0.0116562 1.78215e-05 3.65799e-05 2.718 ||| 0-0 ||| 5137 1.17835e+06 +en ||| of these citizens in ||| 1 0.605812 8.48644e-07 2.83788e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of these concerns in ||| 0.333333 0.605812 8.48644e-07 1.95007e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of these diseases ||| 0.0185185 0.0116562 8.48644e-07 1.52744e-10 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| of these in ||| 0.0526316 0.605812 8.48644e-07 2.60356e-05 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| of these is ||| 0.00383142 0.00656635 8.48644e-07 4.47914e-08 2.718 ||| 0-0 0-1 ||| 261 1.17835e+06 +en ||| of these measures ||| 0.00311526 0.0116562 8.48644e-07 2.92617e-09 2.718 ||| 0-0 ||| 321 1.17835e+06 +en ||| of these people in ||| 0.333333 0.605812 8.48644e-07 2.29166e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of these pictures could be ||| 1 0.0116562 8.48644e-07 4.55657e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of these pictures could ||| 1 0.0116562 8.48644e-07 2.51426e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of these pictures ||| 1 0.0116562 8.48644e-07 3.53573e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of these products ||| 0.00632911 0.0116562 8.48644e-07 1.47087e-09 2.718 ||| 0-0 ||| 158 1.17835e+06 +en ||| of these with ||| 0.333333 0.0535436 8.48644e-07 6.57339e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of these within ||| 0.2 0.369196 8.48644e-07 6.25078e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| of these ||| 0.000527218 0.0116562 6.78915e-06 1.41429e-05 2.718 ||| 0-0 ||| 15174 1.17835e+06 +en ||| of thing ||| 0.00995025 0.0116562 1.69729e-06 4.97614e-06 2.718 ||| 0-0 ||| 201 1.17835e+06 +en ||| of things in ||| 0.0952381 0.605812 1.69729e-06 1.03179e-05 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| of thinking , ||| 0.0294118 0.0455702 8.48644e-07 9.48487e-07 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| of thinking at ||| 0.5 0.321886 8.48644e-07 1.61143e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of thinking ||| 0.00350877 0.0455702 8.48644e-07 7.95345e-06 2.718 ||| 0-1 ||| 285 1.17835e+06 +en ||| of third-country nationals ||| 0.00353357 0.0116562 8.48644e-07 7.17852e-13 2.718 ||| 0-0 ||| 283 1.17835e+06 +en ||| of third-country ||| 0.0208333 0.0116562 8.48644e-07 6.40939e-08 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| of this , in ||| 0.047619 0.605812 8.48644e-07 1.93442e-05 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| of this , particularly in ||| 0.333333 0.605812 8.48644e-07 3.45293e-09 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| of this , ||| 0.00081103 0.0116562 8.48644e-07 1.0508e-05 2.718 ||| 0-0 ||| 1233 1.17835e+06 +en ||| of this - ||| 0.0121951 0.0116562 8.48644e-07 3.32375e-07 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| of this House who made ||| 0.166667 0.0013296 8.48644e-07 1.19827e-14 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| of this House who ||| 0.00934579 0.0013296 8.48644e-07 5.72021e-12 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| of this House ||| 0.000570288 0.0116562 1.69729e-06 2.20373e-08 2.718 ||| 0-0 ||| 3507 1.17835e+06 +en ||| of this aid on ||| 0.5 0.22993 8.48644e-07 3.80989e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of this approach in ||| 0.333333 0.605812 8.48644e-07 3.55562e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of this are ||| 0.0178571 0.0116562 8.48644e-07 1.33693e-06 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| of this beggars belief but , ||| 1 0.0116562 8.48644e-07 1.33714e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of this beggars belief but ||| 1 0.0116562 8.48644e-07 1.12124e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of this beggars belief ||| 1 0.0116562 8.48644e-07 1.64068e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of this beggars ||| 1 0.0116562 8.48644e-07 6.16799e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of this by ||| 0.111111 0.0468744 8.48644e-07 2.98827e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| of this convention ||| 0.0322581 0.0116562 8.48644e-07 1.04856e-09 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| of this draft resolution ; in ||| 1 0.605812 8.48644e-07 2.29243e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of this duty ||| 0.333333 0.0116562 8.48644e-07 6.5645e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| of this factor in ||| 1 0.605812 8.48644e-07 7.88334e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of this for ||| 0.037037 0.0286209 8.48644e-07 4.0414e-06 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| of this great figure at ||| 1 0.321886 8.48644e-07 4.21344e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of this hamlet , ||| 1 0.0116562 8.48644e-07 4.20321e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of this hamlet ||| 1 0.0116562 8.48644e-07 3.52456e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of this in principle , ||| 1 0.605812 8.48644e-07 2.96546e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of this in principle ||| 1 0.605812 8.48644e-07 2.48666e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of this in the ||| 0.0178571 0.605812 8.48644e-07 9.95829e-06 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| of this in ||| 0.0993789 0.605812 1.35783e-05 0.000162209 2.718 ||| 0-2 ||| 161 1.17835e+06 +en ||| of this information in ||| 1 0.605812 8.48644e-07 2.68455e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of this is ||| 0.00141643 0.0116562 8.48644e-07 2.76159e-06 2.718 ||| 0-0 ||| 706 1.17835e+06 +en ||| of this item on ||| 0.333333 0.22993 8.48644e-07 1.10271e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of this kind in ||| 0.0666667 0.605812 3.39458e-06 7.91579e-08 2.718 ||| 0-3 ||| 60 1.17835e+06 +en ||| of this kind ||| 0.00104167 0.0116562 1.69729e-06 4.29997e-08 2.718 ||| 0-0 ||| 1920 1.17835e+06 +en ||| of this myself in a ||| 0.5 0.605812 8.48644e-07 1.11805e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of this myself in ||| 0.5 0.605812 8.48644e-07 2.52235e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of this new Treaty across ||| 1 0.274879 8.48644e-07 3.69198e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of this on ||| 0.03125 0.22993 8.48644e-07 2.91722e-05 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| of this only a year on ||| 1 0.22993 8.48644e-07 3.58969e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of this picture when I listen to ||| 1 0.142731 8.48644e-07 6.78783e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of this picture when I listen ||| 1 0.142731 8.48644e-07 7.63894e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of this picture when I ||| 1 0.142731 8.48644e-07 5.0589e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of this picture when ||| 1 0.142731 8.48644e-07 7.15191e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of this process have been provided in ||| 1 0.605812 8.48644e-07 6.34733e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| of this sector into ||| 1 0.525896 8.48644e-07 1.44402e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of this through ||| 0.25 0.0366102 8.48644e-07 3.30332e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| of this word in ||| 1 0.605812 8.48644e-07 1.65128e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of this ||| 0.000832835 0.0116562 3.30971e-05 8.81141e-05 2.718 ||| 0-0 ||| 46828 1.17835e+06 +en ||| of those at ||| 0.125 0.321886 8.48644e-07 1.57468e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| of those in ||| 0.0373134 0.605812 4.24322e-06 1.8178e-05 2.718 ||| 0-2 ||| 134 1.17835e+06 +en ||| of those on ||| 0.0714286 0.22993 8.48644e-07 3.2692e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| of those present in ||| 0.142857 0.605812 8.48644e-07 6.65315e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| of those ||| 0.000300752 0.0116562 1.69729e-06 9.87455e-06 2.718 ||| 0-0 ||| 6650 1.17835e+06 +en ||| of thought regarding ||| 0.333333 0.140669 8.48644e-07 8.55191e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of throughout ||| 0.666667 0.309047 1.69729e-06 0.000157699 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| of time for ||| 0.025 0.0286209 8.48644e-07 1.02683e-06 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| of time in face ||| 0.5 0.605812 8.48644e-07 6.89505e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of time in ||| 0.0222222 0.605812 8.48644e-07 4.12137e-05 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| of time to reply , ||| 0.5 0.0247351 8.48644e-07 8.61604e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of time to reply ||| 0.5 0.0247351 8.48644e-07 7.22491e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of time to ||| 0.025974 0.0116562 1.69729e-06 1.98935e-06 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| of time ||| 0.00187529 0.0116562 3.39458e-06 2.23879e-05 2.718 ||| 0-0 ||| 2133 1.17835e+06 +en ||| of to ||| 0.0540541 0.0181957 1.69729e-06 0.000383313 2.718 ||| 0-0 0-1 ||| 37 1.17835e+06 +en ||| of track ||| 0.0909091 0.0116562 8.48644e-07 5.40025e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| of trade with a ||| 1 0.0535436 8.48644e-07 2.44705e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of trade with ||| 0.0263158 0.0535436 8.48644e-07 5.52061e-08 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| of trafficking in ||| 0.00680272 0.605812 8.48644e-07 2.98741e-07 2.718 ||| 0-2 ||| 147 1.17835e+06 +en ||| of training in ||| 0.0416667 0.605812 8.48644e-07 8.86181e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| of transparency within ||| 0.5 0.369196 8.48644e-07 8.25723e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of transport in ||| 0.015873 0.605812 8.48644e-07 2.58323e-06 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| of transport ||| 0.000522466 0.0116562 8.48644e-07 1.40325e-06 2.718 ||| 0-0 ||| 1914 1.17835e+06 +en ||| of true , ||| 1 0.0116562 8.48644e-07 2.62806e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of true ||| 0.016129 0.0116562 8.48644e-07 2.20374e-06 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| of trying to ||| 0.00543478 0.0247351 8.48644e-07 1.76035e-07 2.718 ||| 0-2 ||| 184 1.17835e+06 +en ||| of two ||| 0.000935454 0.0116562 8.48644e-07 3.22379e-06 2.718 ||| 0-0 ||| 1069 1.17835e+06 +en ||| of under ||| 0.0833333 0.205566 8.48644e-07 0.000307407 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| of unemployment in ||| 0.00970874 0.605812 8.48644e-07 4.61919e-07 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| of unequivocal ||| 1 0.0116562 8.48644e-07 5.86391e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of upholding them for ||| 1 0.0116562 8.48644e-07 6.18513e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of upholding them ||| 1 0.0116562 8.48644e-07 8.04758e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| of upholding ||| 0.0232558 0.0116562 8.48644e-07 3.00014e-08 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| of urgency , in anticipation ||| 1 0.605812 8.48644e-07 2.48126e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of urgency , in ||| 0.2 0.605812 8.48644e-07 7.75395e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| of urgency today ||| 0.333333 0.0116562 8.48644e-07 1.59398e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| of urgency ||| 0.00125786 0.0116562 8.48644e-07 3.53198e-07 2.718 ||| 0-0 ||| 795 1.17835e+06 +en ||| of us , ||| 0.00165563 0.0116562 8.48644e-07 4.68725e-06 2.718 ||| 0-0 ||| 604 1.17835e+06 +en ||| of us all ||| 0.00724638 0.0116562 8.48644e-07 1.8573e-07 2.718 ||| 0-0 ||| 138 1.17835e+06 +en ||| of us do in ||| 1 0.605812 8.48644e-07 2.48563e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of us here in ||| 0.166667 0.605812 5.09187e-06 1.46723e-07 2.718 ||| 0-3 ||| 36 1.17835e+06 +en ||| of us in ||| 0.152589 0.605812 4.75241e-05 7.23555e-05 2.718 ||| 0-2 ||| 367 1.17835e+06 +en ||| of us left in ||| 1 0.605812 8.48644e-07 1.3668e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of us on ||| 0.030303 0.22993 8.48644e-07 1.30127e-05 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| of us throughout ||| 1 0.309047 8.48644e-07 4.5452e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of us to ||| 0.00840336 0.0247351 8.48644e-07 4.40423e-06 2.718 ||| 0-2 ||| 119 1.17835e+06 +en ||| of us who ||| 0.00224215 0.0116562 8.48644e-07 3.46666e-08 2.718 ||| 0-0 ||| 446 1.17835e+06 +en ||| of us within ||| 0.4 0.369196 1.69729e-06 1.73715e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| of us ||| 0.00246914 0.0116562 1.10324e-05 3.93046e-05 2.718 ||| 0-0 ||| 5265 1.17835e+06 +en ||| of use in ||| 0.0833333 0.605812 8.48644e-07 1.22057e-05 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| of users in ||| 0.2 0.605812 8.48644e-07 2.61084e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| of using force ||| 0.2 0.0116562 8.48644e-07 1.80343e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| of using ||| 0.00148368 0.0116562 8.48644e-07 1.05959e-06 2.718 ||| 0-0 ||| 674 1.17835e+06 +en ||| of very ||| 0.00518135 0.0116562 8.48644e-07 4.74499e-05 2.718 ||| 0-0 ||| 193 1.17835e+06 +en ||| of vexed representation in ||| 1 0.605812 8.48644e-07 1.19496e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of view , in ||| 0.1 0.605812 8.48644e-07 2.7043e-06 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| of view , ||| 0.00253485 0.0116562 1.69729e-06 1.46902e-06 2.718 ||| 0-0 ||| 789 1.17835e+06 +en ||| of view and where ||| 1 0.247783 8.48644e-07 5.23864e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of view in ||| 0.111111 0.605812 2.54593e-06 2.26767e-05 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| of view into ||| 0.5 0.525896 8.48644e-07 1.0871e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of view ||| 0.000662252 0.0116562 2.54593e-06 1.23183e-05 2.718 ||| 0-0 ||| 4530 1.17835e+06 +en ||| of violence in ||| 0.008 0.605812 8.48644e-07 5.69867e-07 2.718 ||| 0-2 ||| 125 1.17835e+06 +en ||| of vote in ||| 0.0227273 0.605812 8.48644e-07 3.9489e-06 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| of votes at ||| 0.5 0.321886 8.48644e-07 7.89405e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of waging this ||| 1 0.0260104 8.48644e-07 1.94487e-10 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| of waging ||| 0.0769231 0.0116562 8.48644e-07 5.4548e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| of wanting to ||| 0.0151515 0.0247351 8.48644e-07 2.26156e-08 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| of war at ||| 0.5 0.321886 8.48644e-07 8.06802e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of war into ||| 0.5 0.525896 8.48644e-07 4.46488e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| of waste at ||| 0.166667 0.321886 8.48644e-07 1.51792e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| of waste in ||| 0.0333333 0.605812 8.48644e-07 1.75228e-06 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| of water in ||| 0.0333333 0.605812 8.48644e-07 1.42843e-06 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| of way in ||| 0.333333 0.605812 8.48644e-07 5.41148e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of ways ||| 0.00746269 0.0116562 8.48644e-07 1.31461e-06 2.718 ||| 0-0 ||| 134 1.17835e+06 +en ||| of welcome to ||| 0.0833333 0.0116562 8.48644e-07 1.33415e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| of welcome ||| 0.0285714 0.0116562 8.48644e-07 1.50143e-06 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| of what ||| 0.00167848 0.0116562 7.6378e-06 1.91341e-05 2.718 ||| 0-0 ||| 5362 1.17835e+06 +en ||| of when ||| 0.0566038 0.142731 5.09187e-06 0.000323645 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| of where ||| 0.010274 0.247783 2.54593e-06 0.000462996 2.718 ||| 0-1 ||| 292 1.17835e+06 +en ||| of whether ||| 0.000726744 0.0116562 8.48644e-07 3.58244e-06 2.718 ||| 0-0 ||| 1376 1.17835e+06 +en ||| of which , on ||| 0.5 0.22993 8.48644e-07 4.57363e-06 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of which , over ||| 0.333333 0.157937 8.48644e-07 2.20684e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of which are in ||| 0.0952381 0.605812 1.69729e-06 3.23559e-06 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| of which are ||| 0.00987654 0.0116562 3.39458e-06 1.75762e-06 2.718 ||| 0-0 ||| 405 1.17835e+06 +en ||| of which can ||| 0.0344828 0.0116562 8.48644e-07 3.44545e-07 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| of which has been ||| 0.0344828 0.0116562 8.48644e-07 1.99113e-09 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| of which has ||| 0.0133333 0.0116562 8.48644e-07 5.96291e-07 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| of which have ||| 0.00757576 0.0116562 8.48644e-07 1.38543e-06 2.718 ||| 0-0 ||| 132 1.17835e+06 +en ||| of which in ||| 0.333333 0.605812 3.39458e-06 0.000213251 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| of which is covered in just ||| 1 0.605812 8.48644e-07 6.03773e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of which is covered in ||| 1 0.605812 8.48644e-07 4.78539e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| of which is in ||| 0.111111 0.605812 8.48644e-07 6.68351e-06 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| of which is ||| 0.00147493 0.0116562 8.48644e-07 3.63058e-06 2.718 ||| 0-0 ||| 678 1.17835e+06 +en ||| of which on ||| 0.333333 0.22993 2.54593e-06 3.83518e-05 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| of which one jumps up in ||| 1 0.605812 8.48644e-07 1.21254e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of which was in ||| 0.666667 0.605812 1.69729e-06 6.68114e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of which we want to ||| 0.333333 0.0116562 8.48644e-07 5.46292e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| of which we want ||| 0.5 0.0116562 8.48644e-07 6.14791e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of which we ||| 0.00549451 0.0116562 8.48644e-07 1.31506e-06 2.718 ||| 0-0 ||| 182 1.17835e+06 +en ||| of which were in ||| 0.4 0.605812 1.69729e-06 3.82017e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| of which will in ||| 0.5 0.605812 8.48644e-07 1.84487e-06 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| of which ||| 0.00451581 0.0116562 2.29134e-05 0.000115841 2.718 ||| 0-0 ||| 5979 1.17835e+06 +en ||| of whom attended ||| 1 0.0310806 8.48644e-07 3.39676e-11 2.718 ||| 0-0 0-2 ||| 1 1.17835e+06 +en ||| of whom have ||| 0.0149254 0.0116562 8.48644e-07 1.08622e-08 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| of whom live on ||| 1 0.22993 8.48644e-07 3.03094e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| of whom were ||| 0.0344828 0.0116562 8.48644e-07 1.62699e-09 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| of whom ||| 0.00268817 0.0116562 1.69729e-06 9.08224e-07 2.718 ||| 0-0 ||| 744 1.17835e+06 +en ||| of wind ||| 0.0555556 0.0116562 8.48644e-07 2.94559e-07 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| of within ||| 0.166667 0.369196 8.48644e-07 0.000602717 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| of women in ||| 0.00175439 0.605812 1.69729e-06 2.98239e-06 2.718 ||| 0-2 ||| 1140 1.17835e+06 +en ||| of women to be put into ||| 1 0.525896 8.48644e-07 2.53861e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| of women when ||| 0.333333 0.142731 8.48644e-07 3.8449e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| of women ||| 0.000259943 0.0116562 8.48644e-07 1.62008e-06 2.718 ||| 0-0 ||| 3847 1.17835e+06 +en ||| of words ||| 0.00537634 0.0116562 8.48644e-07 3.08196e-06 2.718 ||| 0-0 ||| 186 1.17835e+06 +en ||| of work in ||| 0.0210526 0.605812 1.69729e-06 1.5891e-05 2.718 ||| 0-2 ||| 95 1.17835e+06 +en ||| of work on ||| 0.0294118 0.22993 1.69729e-06 2.8579e-06 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| of work to ||| 0.00680272 0.0247351 8.48644e-07 9.67274e-07 2.718 ||| 0-2 ||| 147 1.17835e+06 +en ||| of work will be required ||| 0.5 0.0116562 8.48644e-07 2.14785e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| of work will be ||| 0.333333 0.0116562 8.48644e-07 1.3534e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| of work will ||| 0.2 0.0116562 8.48644e-07 7.46791e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| of work ||| 0.000792079 0.0116562 1.69729e-06 8.63222e-06 2.718 ||| 0-0 ||| 2525 1.17835e+06 +en ||| of workers in ||| 0.00549451 0.605812 8.48644e-07 1.70709e-06 2.718 ||| 0-2 ||| 182 1.17835e+06 +en ||| of working in ||| 0.0540541 0.605812 1.69729e-06 4.77985e-06 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| of working ||| 0.00501672 0.0116562 2.54593e-06 2.59648e-06 2.718 ||| 0-0 ||| 598 1.17835e+06 +en ||| of worth in ||| 1 0.605812 8.48644e-07 1.81504e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of writing ||| 0.0454545 0.0116562 8.48644e-07 2.97832e-06 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| of year ||| 0.0540541 0.0116562 1.69729e-06 3.40107e-06 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| of you , on ||| 0.333333 0.22993 8.48644e-07 1.73838e-06 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of you in ||| 0.0967742 0.605812 2.54593e-06 8.10541e-05 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| of you on ||| 0.2 0.22993 8.48644e-07 1.45771e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| of you ||| 0.000488998 0.0116562 8.48644e-07 4.40298e-05 2.718 ||| 0-0 ||| 2045 1.17835e+06 +en ||| of your life in ||| 0.333333 0.605812 8.48644e-07 9.73264e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| of yours within ||| 1 0.369196 8.48644e-07 4.58065e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| of ||| 0.0113219 0.0116562 0.0136988 0.013637 2.718 ||| 0-0 ||| 1.42573e+06 1.17835e+06 +en ||| off against ||| 0.027027 0.153982 8.48644e-07 2.36015e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| off any ||| 0.333333 0.0262428 8.48644e-07 2.53142e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| off at ||| 0.375 0.321886 2.54593e-06 1.62808e-05 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| off by ||| 0.0408163 0.0468744 1.69729e-06 3.46239e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| off for ||| 0.0465116 0.0286209 1.69729e-06 4.68262e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| off from ||| 0.0163934 0.0308834 8.48644e-07 1.54868e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| off in ||| 0.304348 0.605812 1.1881e-05 0.000187945 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| off into Europe ||| 1 0.525896 8.48644e-07 4.559e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| off into ||| 0.142857 0.525896 1.69729e-06 9.00988e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| off on ||| 0.16 0.22993 3.39458e-06 3.38007e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| off onto anyone ||| 1 0.233333 8.48644e-07 3.90101e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| off onto ||| 0.166667 0.233333 8.48644e-07 8.14407e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| off scot-free when they ||| 0.5 0.142731 8.48644e-07 5.53605e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| off scot-free when ||| 0.5 0.142731 8.48644e-07 1.6961e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| off the coach in ||| 1 0.605812 8.48644e-07 4.96146e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| off the ground ||| 0.0194175 0.0262428 1.69729e-06 1.20241e-09 2.718 ||| 0-0 ||| 103 1.17835e+06 +en ||| off the ||| 0.0159509 0.0262428 1.10324e-05 1.0277e-05 2.718 ||| 0-0 ||| 815 1.17835e+06 +en ||| off their savings in ||| 1 0.605812 8.48644e-07 1.80813e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| off track on ||| 0.333333 0.22993 8.48644e-07 1.33851e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| off work on ||| 1 0.22993 8.48644e-07 2.13958e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| off ||| 0.0462925 0.0262428 9.58968e-05 0.0001674 2.718 ||| 0-0 ||| 2441 1.17835e+06 +en ||| offence in ||| 0.12 0.605812 2.54593e-06 4.80252e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| offer , in ||| 0.0909091 0.605812 8.48644e-07 6.29996e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| offer in ||| 0.0422535 0.605812 2.54593e-06 5.28278e-05 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| offer us more possibilities in ||| 1 0.605812 8.48644e-07 5.00712e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| offered by ||| 0.00330579 0.0468744 1.69729e-06 3.70059e-07 2.718 ||| 0-1 ||| 605 1.17835e+06 +en ||| offered in ||| 0.025 0.605812 8.48644e-07 2.00875e-05 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| offered to ||| 0.00413223 0.0247351 8.48644e-07 1.22271e-06 2.718 ||| 0-1 ||| 242 1.17835e+06 +en ||| offered under ||| 0.142857 0.205566 8.48644e-07 2.45975e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| offering ||| 0.00239425 0.0016009 2.54593e-06 2e-06 2.718 ||| 0-0 ||| 1253 1.17835e+06 +en ||| offers an excellent opportunity to establish the ||| 1 0.0247351 8.48644e-07 1.28755e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| offers an excellent opportunity to establish ||| 1 0.0247351 8.48644e-07 2.09726e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| offers an excellent opportunity to ||| 0.111111 0.0247351 8.48644e-07 2.7487e-17 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| offers an incentive for ||| 0.166667 0.0286209 8.48644e-07 1.62202e-14 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| offers in ||| 0.0555556 0.605812 8.48644e-07 1.51002e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| office , as ||| 0.0714286 0.066968 8.48644e-07 2.20735e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| office , in ||| 0.125 0.605812 8.48644e-07 5.66666e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| office at ||| 0.0416667 0.321886 8.48644e-07 4.11621e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| office in the ||| 0.0333333 0.605812 8.48644e-07 2.91717e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| office in ||| 0.03125 0.605812 5.09187e-06 4.75173e-05 2.718 ||| 0-1 ||| 192 1.17835e+06 +en ||| office is in ||| 0.5 0.605812 8.48644e-07 1.48924e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| office since ||| 0.125 0.0075235 8.48644e-07 1.78531e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| office with ||| 0.0526316 0.0535436 8.48644e-07 1.1997e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| officer for senior citizens were to ||| 1 0.0286209 8.48644e-07 1.41253e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| officer for senior citizens were ||| 1 0.0286209 8.48644e-07 1.58965e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| officer for senior citizens ||| 1 0.0286209 8.48644e-07 8.87378e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| officer for senior ||| 1 0.0286209 8.48644e-07 8.14108e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| officer for ||| 0.333333 0.0286209 8.48644e-07 6.67302e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| officer in ||| 0.142857 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| officers in situ in ||| 1 0.605812 8.48644e-07 1.58147e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| offices in the ||| 0.0714286 0.605812 8.48644e-07 2.66486e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| offices in ||| 0.06 0.605812 2.54593e-06 4.34074e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| official EU theory , on ||| 1 0.22993 8.48644e-07 1.44877e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| official for ||| 0.142857 0.0286209 8.48644e-07 4.47552e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| officials in ||| 0.0261438 0.605812 3.39458e-06 6.46494e-06 2.718 ||| 0-1 ||| 153 1.17835e+06 +en ||| offshore in ||| 1 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| offshore ||| 0.0106952 0.117207 1.69729e-06 3.2e-05 2.718 ||| 0-0 ||| 187 1.17835e+06 +en ||| often as possible in ||| 1 0.605812 8.48644e-07 4.96647e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| often as ||| 0.030303 0.066968 8.48644e-07 2.36361e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| often at ||| 0.0227273 0.321886 8.48644e-07 5.25626e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| often been able to avoid ||| 1 0.0247351 8.48644e-07 3.63481e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| often been able to ||| 1 0.0247351 8.48644e-07 1.02969e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| often enough , in ||| 0.5 0.605812 8.48644e-07 1.19541e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| often find that , in ||| 1 0.605812 8.48644e-07 4.05217e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| often hear complaints when ||| 1 0.142731 8.48644e-07 3.96999e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| often in a ||| 0.0769231 0.605812 8.48644e-07 2.6896e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| often in ||| 0.0287356 0.605812 4.24322e-06 6.0678e-05 2.718 ||| 0-1 ||| 174 1.17835e+06 +en ||| often made in ||| 0.2 0.605812 8.48644e-07 1.27108e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| often raised in ||| 0.5 0.605812 8.48644e-07 6.99011e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| often referred ||| 0.0625 0.0016154 8.48644e-07 2.41164e-09 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| often than not ||| 0.0120482 0.0016154 8.48644e-07 2.62838e-11 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| often than ||| 0.0111111 0.0016154 8.48644e-07 7.6986e-09 2.718 ||| 0-0 ||| 90 1.17835e+06 +en ||| often the ||| 0.00301205 0.0011669 8.48644e-07 3.76422e-07 2.718 ||| 0-1 ||| 332 1.17835e+06 +en ||| often ||| 0.000238247 0.0016154 2.54593e-06 2.52e-05 2.718 ||| 0-0 ||| 12592 1.17835e+06 +en ||| oil as far ||| 0.5 0.066968 8.48644e-07 4.28584e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| oil as ||| 0.1 0.066968 8.48644e-07 6.27778e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| oil in ||| 0.0111111 0.605812 8.48644e-07 1.61162e-05 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| old partly ||| 0.5 0.294632 8.48644e-07 6.35558e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| olive oil in ||| 0.0909091 0.605812 8.48644e-07 9.83086e-11 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| omitted from ||| 0.0454545 0.0308834 8.48644e-07 1.21763e-08 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| omitted in ||| 0.25 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| on ' ||| 0.0159744 0.22993 4.24322e-06 0.000285263 2.718 ||| 0-0 ||| 313 1.17835e+06 +en ||| on , but it ||| 1 0.22993 8.48644e-07 1.20363e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on , but ||| 0.0181818 0.22993 8.48644e-07 6.76833e-06 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| on , even ||| 0.142857 0.22993 8.48644e-07 6.02653e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on , in ||| 0.0714286 0.605812 8.48644e-07 0.00036847 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| on , though , is ||| 1 0.22993 8.48644e-07 9.19122e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on , though , ||| 0.5 0.22993 8.48644e-07 2.93264e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on , though ||| 1 0.22993 8.48644e-07 2.45914e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on , to ||| 0.0588235 0.22993 8.48644e-07 0.000880044 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on , ||| 0.039819 0.22993 3.73403e-05 0.00990391 2.718 ||| 0-0 ||| 1105 1.17835e+06 +en ||| on - provide ||| 0.5 0.22993 8.48644e-07 9.26643e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on - to be involved in ||| 1 0.605812 8.48644e-07 6.49024e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| on - ||| 0.0967742 0.22993 5.09187e-06 0.000313267 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| on . ||| 0.00737101 0.22993 5.09187e-06 0.000251554 2.718 ||| 0-0 ||| 814 1.17835e+06 +en ||| on 1 January ||| 0.00132626 0.22993 8.48644e-07 3.59732e-11 2.718 ||| 0-0 ||| 754 1.17835e+06 +en ||| on 1 ||| 0.00125078 0.22993 1.69729e-06 5.29018e-06 2.718 ||| 0-0 ||| 1599 1.17835e+06 +en ||| on 10 May ||| 0.0277778 0.22993 8.48644e-07 1.15703e-11 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| on 10 ||| 0.00211416 0.22993 8.48644e-07 1.34538e-06 2.718 ||| 0-0 ||| 473 1.17835e+06 +en ||| on 13 August 2002 they received notification ||| 1 0.22993 8.48644e-07 2.92926e-29 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on 13 August 2002 they received ||| 1 0.22993 8.48644e-07 1.33148e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on 13 August 2002 they ||| 1 0.22993 8.48644e-07 1.48603e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on 13 August 2002 ||| 1 0.22993 8.48644e-07 4.55278e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on 13 August ||| 0.111111 0.22993 8.48644e-07 2.81036e-12 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on 13 ||| 0.00621118 0.22993 2.54593e-06 7.80655e-07 2.718 ||| 0-0 ||| 483 1.17835e+06 +en ||| on 14 May ||| 0.0588235 0.22993 8.48644e-07 4.64241e-12 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on 14 ||| 0.00236967 0.22993 8.48644e-07 5.39815e-07 2.718 ||| 0-0 ||| 422 1.17835e+06 +en ||| on 15 May ||| 0.0222222 0.22993 8.48644e-07 1.57128e-11 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| on 15 ||| 0.002 0.22993 8.48644e-07 1.82706e-06 2.718 ||| 0-0 ||| 500 1.17835e+06 +en ||| on 19 ||| 0.00217865 0.22993 8.48644e-07 2.65755e-07 2.718 ||| 0-0 ||| 459 1.17835e+06 +en ||| on 24 / 24 ||| 1 0.22993 8.48644e-07 1.41272e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on 24 / ||| 0.2 0.22993 8.48644e-07 1.6427e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on 24 and ||| 0.0114943 0.22993 8.48644e-07 8.9462e-09 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| on 24 ||| 0.00511509 0.22993 1.69729e-06 7.14216e-07 2.718 ||| 0-0 ||| 391 1.17835e+06 +en ||| on 26 ||| 0.00280899 0.22993 8.48644e-07 4.15242e-07 2.718 ||| 0-0 ||| 356 1.17835e+06 +en ||| on 31 March ||| 0.0136986 0.22993 8.48644e-07 2.75721e-12 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| on 31 ||| 0.00271739 0.22993 8.48644e-07 6.89302e-07 2.718 ||| 0-0 ||| 368 1.17835e+06 +en ||| on Agriculture and Rural Development has already ||| 0.5 0.22993 8.48644e-07 3.32584e-23 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on Agriculture and Rural Development has ||| 0.02 0.22993 8.48644e-07 7.18169e-20 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| on Agriculture and Rural Development ||| 0.000720981 0.22993 8.48644e-07 1.39518e-17 2.718 ||| 0-0 ||| 1387 1.17835e+06 +en ||| on Agriculture and Rural ||| 0.02 0.22993 8.48644e-07 3.17809e-13 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| on Agriculture and ||| 0.000791766 0.22993 8.48644e-07 1.42515e-08 2.718 ||| 0-0 ||| 1263 1.17835e+06 +en ||| on Agriculture ||| 0.000549149 0.22993 8.48644e-07 1.13776e-06 2.718 ||| 0-0 ||| 1821 1.17835e+06 +en ||| on Amendment No 33 ||| 0.5 0.22993 8.48644e-07 5.52567e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on Amendment No ||| 0.00309598 0.22993 8.48644e-07 1.53491e-10 2.718 ||| 0-0 ||| 323 1.17835e+06 +en ||| on Amendment ||| 0.00156986 0.22993 8.48644e-07 2.26722e-06 2.718 ||| 0-0 ||| 637 1.17835e+06 +en ||| on Basic ||| 0.5 0.22993 8.48644e-07 1.49487e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on Belgium ||| 1 0.22993 8.48644e-07 5.39815e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on Britain ||| 0.166667 0.22993 8.48644e-07 9.30142e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on Budgetary Control ||| 0.00180723 0.22993 2.54593e-06 3.46395e-12 2.718 ||| 0-0 ||| 1660 1.17835e+06 +en ||| on Budgetary ||| 0.103448 0.22993 2.54593e-06 3.57108e-07 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| on Chinese ||| 1 0.22993 8.48644e-07 9.88276e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on Christian ||| 0.333333 0.22993 8.48644e-07 2.59941e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on Commercial Debt ||| 1 0.22993 8.48644e-07 2.32536e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on Commercial ||| 1 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on Cyprus ||| 0.00775194 0.22993 8.48644e-07 1.34538e-06 2.718 ||| 0-0 ||| 129 1.17835e+06 +en ||| on EU ||| 0.0135135 0.22993 8.48644e-07 4.10923e-05 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| on EUR ||| 0.333333 0.22993 8.48644e-07 2.22071e-05 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on Economic and Monetary Affairs and Industrial ||| 0.1 0.22993 8.48644e-07 3.42806e-24 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on Economic and Monetary Affairs and ||| 0.00225734 0.22993 8.48644e-07 4.13019e-19 2.718 ||| 0-0 ||| 443 1.17835e+06 +en ||| on Economic and Monetary Affairs ||| 0.000570776 0.22993 8.48644e-07 3.29732e-17 2.718 ||| 0-0 ||| 1752 1.17835e+06 +en ||| on Economic and Monetary ||| 0.0526316 0.22993 8.48644e-07 3.69655e-13 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| on Economic and ||| 0.000625 0.22993 8.48644e-07 3.21439e-08 2.718 ||| 0-0 ||| 1600 1.17835e+06 +en ||| on Economic ||| 0.000615006 0.22993 8.48644e-07 2.5662e-06 2.718 ||| 0-0 ||| 1626 1.17835e+06 +en ||| on Education ||| 0.0625 0.22993 8.48644e-07 2.48315e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| on Employment ||| 0.000981354 0.22993 8.48644e-07 8.63703e-07 2.718 ||| 0-0 ||| 1019 1.17835e+06 +en ||| on Europe ||| 0.00547945 0.22993 1.69729e-06 4.20225e-05 2.718 ||| 0-0 ||| 365 1.17835e+06 +en ||| on European Union ||| 0.00167504 0.22993 8.48644e-07 1.54793e-07 2.718 ||| 0-0 ||| 597 1.17835e+06 +en ||| on European ||| 0.0227273 0.22993 4.24322e-06 0.000277706 2.718 ||| 0-0 ||| 220 1.17835e+06 +en ||| on External Affairs ||| 0.0714286 0.22993 8.48644e-07 1.91865e-10 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| on External ||| 0.00515464 0.22993 8.48644e-07 2.15095e-06 2.718 ||| 0-0 ||| 194 1.17835e+06 +en ||| on Fisheries has added to it . ||| 1 0.22993 8.48644e-07 9.48281e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on Fisheries has added to it ||| 1 0.22993 8.48644e-07 3.13067e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on Fisheries has added to ||| 1 0.22993 8.48644e-07 1.76047e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on Fisheries has added ||| 1 0.22993 8.48644e-07 1.98121e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on Fisheries has ||| 0.025 0.22993 8.48644e-07 2.7787e-09 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| on Fisheries ||| 0.000895255 0.22993 8.48644e-07 5.39815e-07 2.718 ||| 0-0 ||| 1117 1.17835e+06 +en ||| on Foreign Affairs , Human Rights , ||| 0.00260417 0.22993 8.48644e-07 4.31051e-21 2.718 ||| 0-0 ||| 384 1.17835e+06 +en ||| on Foreign Affairs , Human Rights ||| 0.00254453 0.22993 8.48644e-07 3.61454e-20 2.718 ||| 0-0 ||| 393 1.17835e+06 +en ||| on Foreign Affairs , Human ||| 0.0285714 0.22993 8.48644e-07 4.38658e-16 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| on Foreign Affairs , ||| 0.00125471 0.22993 8.48644e-07 1.07778e-11 2.718 ||| 0-0 ||| 797 1.17835e+06 +en ||| on Foreign Affairs ||| 0.000653168 0.22993 8.48644e-07 9.03766e-11 2.718 ||| 0-0 ||| 1531 1.17835e+06 +en ||| on Foreign ||| 0.05 0.22993 8.48644e-07 1.01319e-06 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| on Human Rights , under ||| 1 0.22993 8.48644e-07 1.19174e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on Human Rights , ||| 0.00595238 0.22993 8.48644e-07 3.32146e-11 2.718 ||| 0-0 ||| 168 1.17835e+06 +en ||| on Human Rights ||| 0.000793651 0.22993 8.48644e-07 2.78518e-10 2.718 ||| 0-0 ||| 1260 1.17835e+06 +en ||| on Human ||| 0.047619 0.22993 8.48644e-07 3.38007e-06 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| on I know ||| 0.5 0.22993 8.48644e-07 1.5156e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on I ||| 0.5 0.22993 1.69729e-06 0.000587443 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on Industry , External ||| 0.0434783 0.22993 8.48644e-07 1.56472e-12 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| on Industry , ||| 0.00111607 0.22993 8.48644e-07 6.04139e-08 2.718 ||| 0-0 ||| 896 1.17835e+06 +en ||| on Industry ||| 0.000962464 0.22993 8.48644e-07 5.06595e-07 2.718 ||| 0-0 ||| 1039 1.17835e+06 +en ||| on Internal Market ||| 0.0102041 0.22993 8.48644e-07 6.87832e-11 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| on Internal ||| 0.0206186 0.22993 1.69729e-06 2.30044e-06 2.718 ||| 0-0 ||| 97 1.17835e+06 +en ||| on Legal Affairs , are ||| 1 0.22993 8.48644e-07 1.3538e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on Legal Affairs , ||| 0.00414938 0.22993 8.48644e-07 8.92263e-12 2.718 ||| 0-0 ||| 241 1.17835e+06 +en ||| on Legal Affairs ||| 0.000506842 0.22993 8.48644e-07 7.482e-11 2.718 ||| 0-0 ||| 1973 1.17835e+06 +en ||| on Legal ||| 0.0434783 0.22993 8.48644e-07 8.38789e-07 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| on New ||| 0.037037 0.22993 8.48644e-07 9.88276e-07 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| on Privileges and Immunities ||| 0.0588235 0.22993 8.48644e-07 4.73316e-15 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on Privileges and ||| 0.047619 0.22993 8.48644e-07 7.28179e-10 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| on Privileges ||| 0.0588235 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on Regional Policy , Transport and ||| 0.0027933 0.22993 8.48644e-07 2.59145e-18 2.718 ||| 0-0 ||| 358 1.17835e+06 +en ||| on Regional Policy , Transport ||| 0.00277778 0.22993 8.48644e-07 2.06887e-16 2.718 ||| 0-0 ||| 360 1.17835e+06 +en ||| on Regional Policy , ||| 0.00242131 0.22993 8.48644e-07 1.24631e-11 2.718 ||| 0-0 ||| 413 1.17835e+06 +en ||| on Regional Policy ||| 0.00172414 0.22993 8.48644e-07 1.04508e-10 2.718 ||| 0-0 ||| 580 1.17835e+06 +en ||| on Regional ||| 0.0526316 0.22993 8.48644e-07 1.07963e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| on Research ||| 0.00341297 0.22993 8.48644e-07 2.84026e-06 2.718 ||| 0-0 ||| 293 1.17835e+06 +en ||| on Russia ||| 0.00438596 0.22993 8.48644e-07 3.34685e-06 2.718 ||| 0-0 ||| 228 1.17835e+06 +en ||| on Sunday ||| 0.00645161 0.22993 8.48644e-07 4.15242e-07 2.718 ||| 0-0 ||| 155 1.17835e+06 +en ||| on Thursdays ||| 0.0555556 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| on Tiananmen ||| 0.333333 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on Turkey ||| 0.00298507 0.22993 8.48644e-07 4.87494e-06 2.718 ||| 0-0 ||| 335 1.17835e+06 +en ||| on UK ||| 0.2 0.22993 8.48644e-07 1.43674e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on Women ' s Rights and Equal ||| 0.0204082 0.22993 8.48644e-07 8.15496e-23 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| on Women ' s Rights and ||| 0.0204082 0.22993 8.48644e-07 7.28122e-18 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| on Women ' s Rights ||| 0.0153846 0.22993 8.48644e-07 5.81293e-16 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| on Women ' s ||| 1 0.22993 8.48644e-07 7.05452e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on Women ' ||| 1 0.22993 8.48644e-07 3.70842e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on Women ||| 0.0147059 0.22993 8.48644e-07 1.07963e-06 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| on a basis of ||| 0.0212766 0.22993 8.48644e-07 1.18834e-07 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| on a basis ||| 0.0144928 0.22993 8.48644e-07 2.18589e-06 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| on a building site ||| 0.0909091 0.22993 8.48644e-07 4.09911e-12 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| on a building ||| 0.111111 0.22993 8.48644e-07 2.14613e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on a certain occasion in ||| 1 0.605812 8.48644e-07 1.9087e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| on a clearly ||| 1 0.22993 8.48644e-07 6.71817e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a combination of ||| 0.0588235 0.22993 8.48644e-07 1.52094e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on a combination ||| 0.0625 0.22993 8.48644e-07 2.7977e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| on a common basis ||| 0.111111 0.22993 8.48644e-07 5.0494e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on a common ||| 0.0625 0.22993 8.48644e-07 8.50354e-07 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| on a completely ||| 0.111111 0.22993 8.48644e-07 3.74745e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on a desk , they were to ||| 1 0.22993 8.48644e-07 4.10559e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a desk , they were ||| 1 0.22993 8.48644e-07 4.62039e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a desk , they ||| 1 0.22993 8.48644e-07 2.57921e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a desk , ||| 1 0.22993 8.48644e-07 7.90198e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a desk ||| 0.5 0.22993 8.48644e-07 6.62614e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on a fair and ||| 0.333333 0.22993 8.48644e-07 2.38851e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on a fair ||| 0.125 0.22993 8.48644e-07 1.90685e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on a final note ||| 0.0238095 0.22993 8.48644e-07 2.93233e-11 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| on a final ||| 0.05 0.22993 8.48644e-07 2.80875e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| on a fully ||| 0.166667 0.22993 8.48644e-07 4.17447e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on a joint diplomatic service ||| 1 0.22993 8.48644e-07 7.53517e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a joint diplomatic ||| 1 0.22993 8.48644e-07 1.12633e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a joint ||| 0.166667 0.22993 8.48644e-07 2.39645e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on a kind of ||| 0.142857 0.22993 8.48644e-07 9.76605e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on a kind ||| 0.111111 0.22993 8.48644e-07 1.79642e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on a large scale ||| 0.00746269 0.22993 8.48644e-07 3.32124e-11 2.718 ||| 0-0 ||| 134 1.17835e+06 +en ||| on a large ||| 0.0204082 0.22993 8.48644e-07 5.65798e-07 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| on a monitoring role as soon as ||| 1 0.22993 8.48644e-07 2.98607e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a monitoring role as soon ||| 1 0.22993 8.48644e-07 2.92626e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a monitoring role as ||| 1 0.22993 8.48644e-07 3.17726e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a monitoring role ||| 1 0.22993 8.48644e-07 3.11362e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a monitoring ||| 1 0.22993 8.48644e-07 1.40253e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a more ||| 0.0606061 0.22993 5.09187e-06 8.40673e-06 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| on a much ||| 0.111111 0.22993 8.48644e-07 3.69481e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on a net basis , and ||| 1 0.22993 8.48644e-07 5.06109e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a net basis , ||| 1 0.22993 8.48644e-07 4.0405e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a net basis ||| 1 0.22993 8.48644e-07 3.38813e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a net ||| 1 0.22993 8.48644e-07 5.70584e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a network - ||| 1 0.22993 8.48644e-07 3.44368e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a network ||| 0.166667 0.22993 8.48644e-07 9.12934e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on a new ||| 0.00284091 0.22993 8.48644e-07 2.20025e-06 2.718 ||| 0-0 ||| 352 1.17835e+06 +en ||| on a number of ||| 0.0149925 0.22993 8.48644e-06 9.90214e-08 2.718 ||| 0-0 ||| 667 1.17835e+06 +en ||| on a number ||| 0.0199203 0.22993 1.27297e-05 1.82145e-06 2.718 ||| 0-0 ||| 753 1.17835e+06 +en ||| on a pack ||| 0.25 0.22993 8.48644e-07 1.17798e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on a plate ||| 0.0666667 0.22993 8.48644e-07 9.20297e-09 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| on a point ||| 0.00470958 0.22993 2.54593e-06 3.2203e-06 2.718 ||| 0-0 ||| 637 1.17835e+06 +en ||| on a position ||| 0.1 0.22993 8.48644e-07 1.21221e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on a reading of ||| 0.5 0.22993 8.48644e-07 5.76357e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on a reading ||| 0.333333 0.22993 8.48644e-07 1.06018e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on a regular basis ||| 0.00534759 0.22993 8.48644e-07 3.84716e-11 2.718 ||| 0-0 ||| 187 1.17835e+06 +en ||| on a regular ||| 0.04 0.22993 8.48644e-07 6.47889e-08 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| on a separate ||| 0.125 0.22993 8.48644e-07 1.32523e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on a set of ||| 0.04 0.22993 8.48644e-07 1.16952e-07 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| on a set ||| 0.0740741 0.22993 1.69729e-06 2.15129e-06 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| on a smaller ||| 0.125 0.22993 8.48644e-07 3.57075e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on a sound footing ||| 0.166667 0.22993 8.48644e-07 4.72311e-12 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on a sound ||| 0.0588235 0.22993 8.48644e-07 2.18662e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on a specific subject area , prior ||| 1 0.22993 8.48644e-07 2.73615e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a specific subject area , ||| 1 0.22993 8.48644e-07 1.48704e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a specific subject area ||| 1 0.22993 8.48644e-07 1.24694e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on a specific subject ||| 0.333333 0.22993 8.48644e-07 3.00252e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on a specific ||| 0.1 0.22993 8.48644e-07 5.56227e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on a subject ||| 0.00591716 0.22993 8.48644e-07 1.9871e-06 2.718 ||| 0-0 ||| 169 1.17835e+06 +en ||| on a very ||| 0.016129 0.22993 8.48644e-07 1.28087e-05 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| on a voluntary ||| 0.0555556 0.22993 8.48644e-07 4.89598e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| on a whole ||| 0.025641 0.22993 8.48644e-07 2.08245e-06 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| on a wider ||| 0.142857 0.22993 8.48644e-07 1.04546e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on a window ||| 0.5 0.22993 8.48644e-07 4.12293e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on a yearly basis ||| 0.0666667 0.22993 8.48644e-07 8.74355e-13 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| on a yearly ||| 0.25 0.22993 8.48644e-07 1.47247e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on a ||| 0.0507537 0.22993 0.000622905 0.00368119 2.718 ||| 0-0 ||| 14462 1.17835e+06 +en ||| on about ||| 0.203704 0.22993 9.33509e-06 0.000117455 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| on access ||| 0.00320513 0.22993 8.48644e-07 7.14216e-06 2.718 ||| 0-0 ||| 312 1.17835e+06 +en ||| on account of funding ||| 1 0.22993 8.48644e-07 6.91843e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on account of ||| 0.00854701 0.22993 4.24322e-06 1.29802e-06 2.718 ||| 0-0 ||| 585 1.17835e+06 +en ||| on account ||| 0.0169753 0.22993 9.33509e-06 2.38764e-05 2.718 ||| 0-0 ||| 648 1.17835e+06 +en ||| on acquired ||| 0.5 0.22993 8.48644e-07 1.1959e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on action ||| 0.0151515 0.22993 8.48644e-07 2.51055e-05 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| on adopting ||| 0.025 0.22993 8.48644e-07 4.06107e-06 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| on advantages gained in ||| 1 0.22993 8.48644e-07 4.28262e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on advantages gained ||| 1 0.22993 8.48644e-07 2.0008e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on advantages ||| 1 0.22993 8.48644e-07 6.31168e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on again ||| 0.125 0.22993 8.48644e-07 4.80269e-05 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on agencies ||| 0.0833333 0.22993 8.48644e-07 1.25403e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| on air ||| 0.027027 0.22993 8.48644e-07 4.57597e-06 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| on all accounts ||| 1 0.22993 8.48644e-07 1.21263e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on all aspects ||| 0.0169492 0.22993 8.48644e-07 2.76668e-08 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| on all fronts concerning ||| 1 0.22993 8.48644e-07 6.99911e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on all fronts ||| 0.0204082 0.22993 8.48644e-07 1.13807e-09 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| on all of us ||| 0.0357143 0.22993 8.48644e-07 6.14901e-08 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| on all of ||| 0.013986 0.22993 1.69729e-06 2.13344e-05 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| on all the ||| 0.00217391 0.22993 8.48644e-07 2.40924e-05 2.718 ||| 0-0 ||| 460 1.17835e+06 +en ||| on all ||| 0.00847817 0.22993 1.69729e-05 0.000392437 2.718 ||| 0-0 ||| 2359 1.17835e+06 +en ||| on an even ||| 0.0909091 0.22993 8.48644e-07 2.24613e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| on an everyday ||| 1 0.22993 8.48644e-07 2.51005e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on an issue at a ||| 1 0.22993 8.48644e-07 5.18508e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on an issue at ||| 1 0.22993 8.48644e-07 1.16977e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on an issue ||| 0.00487805 0.22993 8.48644e-07 2.79354e-07 2.718 ||| 0-0 ||| 205 1.17835e+06 +en ||| on an offer made on ||| 1 0.22993 8.48644e-07 5.9188e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on an offer made ||| 1 0.22993 8.48644e-07 8.84591e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on an offer ||| 1 0.22993 8.48644e-07 4.22279e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on an unequal ||| 1 0.22993 8.48644e-07 4.06038e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on an ||| 0.0258865 0.22993 6.1951e-05 0.000369125 2.718 ||| 0-0 ||| 2820 1.17835e+06 +en ||| on and ||| 0.00890208 0.22993 2.54593e-06 0.00104026 2.718 ||| 0-0 ||| 337 1.17835e+06 +en ||| on animal ||| 0.037037 0.22993 8.48644e-07 2.39179e-06 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| on another ||| 0.00440529 0.22993 8.48644e-07 2.0023e-05 2.718 ||| 0-0 ||| 227 1.17835e+06 +en ||| on any discard ||| 1 0.22993 8.48644e-07 8.79101e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on any set ||| 1 0.22993 8.48644e-07 7.33923e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on any ||| 0.0222672 0.22993 9.33509e-06 0.000125586 2.718 ||| 0-0 ||| 494 1.17835e+06 +en ||| on anything ||| 0.0192308 0.22993 8.48644e-07 1.30303e-05 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| on applications for kinds ||| 1 0.22993 8.48644e-07 4.2446e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on applications for ||| 0.2 0.22993 8.48644e-07 8.93599e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on applications ||| 0.1 0.22993 8.48644e-07 1.16268e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on are ||| 0.0588235 0.22993 8.48644e-07 0.00126007 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on areas ||| 0.0147059 0.22993 8.48644e-07 1.90098e-05 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| on around ||| 0.0909091 0.194657 8.48644e-07 9.58462e-05 2.718 ||| 0-0 0-1 ||| 11 1.17835e+06 +en ||| on as possible ||| 0.142857 0.22993 8.48644e-07 6.79747e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on as ||| 0.0490196 0.22993 4.24322e-06 0.000847459 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| on at the ||| 0.0204082 0.22993 8.48644e-07 2.13494e-05 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| on at ||| 0.339869 0.275908 4.41295e-05 0.0033221 2.718 ||| 0-0 0-1 ||| 153 1.17835e+06 +en ||| on average for ||| 0.25 0.0286209 8.48644e-07 1.90914e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| on average ||| 0.0045045 0.22993 1.69729e-06 2.0596e-06 2.718 ||| 0-0 ||| 444 1.17835e+06 +en ||| on aviation ||| 0.047619 0.22993 8.48644e-07 5.64729e-07 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| on be tempted ||| 1 0.22993 8.48644e-07 8.12742e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on be working ||| 1 0.22993 8.48644e-07 2.86567e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on be ||| 0.2 0.22993 1.69729e-06 0.00150508 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on behalf of the ALDE Group . ||| 0.00130378 0.0116562 8.48644e-07 3.41047e-20 2.718 ||| 0-2 ||| 767 1.17835e+06 +en ||| on behalf of the ALDE Group ||| 0.00123305 0.0116562 8.48644e-07 1.12594e-17 2.718 ||| 0-2 ||| 811 1.17835e+06 +en ||| on behalf of the ALDE ||| 0.0526316 0.0116562 8.48644e-07 3.46124e-14 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| on behalf of the IND / DEM ||| 0.1 0.22993 8.48644e-07 2.45602e-21 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on behalf of the IND / ||| 0.00246914 0.22993 8.48644e-07 2.19288e-16 2.718 ||| 0-0 ||| 405 1.17835e+06 +en ||| on behalf of the IND ||| 0.00246914 0.22993 8.48644e-07 9.53424e-13 2.718 ||| 0-0 ||| 405 1.17835e+06 +en ||| on behalf of the PSE Group ||| 0.00118064 0.22993 8.48644e-07 1.00224e-15 2.718 ||| 0-0 ||| 847 1.17835e+06 +en ||| on behalf of the PSE ||| 0.0285714 0.22993 8.48644e-07 3.08097e-12 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| on behalf of the ||| 0.000276587 0.22993 3.39458e-06 8.828e-08 2.718 ||| 0-0 ||| 14462 1.17835e+06 +en ||| on behalf of ||| 0.00160741 0.22993 1.4427e-05 1.43798e-06 2.718 ||| 0-0 ||| 10576 1.17835e+06 +en ||| on behalf ||| 0.00397465 0.22993 6.27997e-05 2.64509e-05 2.718 ||| 0-0 ||| 18618 1.17835e+06 +en ||| on being hailed ||| 0.5 0.22993 8.48644e-07 3.30875e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on being ||| 0.05 0.22993 4.24322e-06 0.000236339 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| on best ||| 0.0238095 0.22993 8.48644e-07 1.15022e-05 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| on board and will promote it in ||| 1 0.605812 8.48644e-07 5.09521e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| on board for ||| 0.25 0.0286209 8.48644e-07 1.0277e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| on board in ||| 0.0681818 0.605812 2.54593e-06 4.12485e-07 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| on board to a ||| 1 0.22993 8.48644e-07 4.36683e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on board to aid ||| 1 0.22993 8.48644e-07 1.28663e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on board to ||| 0.222222 0.22993 1.69729e-06 9.85167e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on board within ||| 1 0.369196 8.48644e-07 9.90318e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| on board ||| 0.016129 0.22993 1.78215e-05 1.1087e-05 2.718 ||| 0-0 ||| 1302 1.17835e+06 +en ||| on both the ||| 0.00826446 0.22993 8.48644e-07 8.44565e-06 2.718 ||| 0-0 ||| 121 1.17835e+06 +en ||| on both ||| 0.0133125 0.22993 1.4427e-05 0.00013757 2.718 ||| 0-0 ||| 1277 1.17835e+06 +en ||| on buttons ||| 1 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on by the ||| 0.0107527 0.138402 8.48644e-07 4.33734e-05 2.718 ||| 0-0 0-1 ||| 93 1.17835e+06 +en ||| on by ||| 0.0607477 0.138402 1.10324e-05 0.000706501 2.718 ||| 0-0 0-1 ||| 214 1.17835e+06 +en ||| on can enter into force along ||| 1 0.155535 8.48644e-07 1.36385e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| on certain ||| 0.00878477 0.22993 5.09187e-06 2.36688e-05 2.718 ||| 0-0 ||| 683 1.17835e+06 +en ||| on charges ||| 0.0357143 0.22993 8.48644e-07 1.82706e-06 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| on clearly ||| 1 0.22993 8.48644e-07 1.51563e-05 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on closer ||| 0.0645161 0.22993 1.69729e-06 1.76893e-05 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| on coming ||| 0.166667 0.22993 8.48644e-07 1.61363e-05 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on commenting closely ||| 0.5 0.22993 8.48644e-07 2.93991e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on commenting ||| 0.5 0.22993 8.48644e-07 3.32194e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on common law ||| 0.333333 0.22993 8.48644e-07 3.38217e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on common ||| 0.111111 0.22993 2.54593e-06 1.91842e-05 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| on concrete ||| 0.222222 0.22993 1.69729e-06 2.59941e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on considerations ||| 0.0833333 0.22993 8.48644e-07 2.18417e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| on consumer protection ||| 0.0114943 0.22993 8.48644e-07 2.48668e-10 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| on consumer ||| 0.142857 0.22993 8.48644e-07 2.44993e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on controlling ||| 0.027027 0.22993 8.48644e-07 3.57108e-07 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| on councils ||| 1 0.22993 8.48644e-07 3.90327e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on countries in ||| 0.142857 0.605812 8.48644e-07 1.17319e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| on course ||| 0.0125 0.22993 8.48644e-07 0.000104782 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| on creating ||| 0.00537634 0.22993 8.48644e-07 4.84172e-06 2.718 ||| 0-0 ||| 186 1.17835e+06 +en ||| on crisis ||| 0.333333 0.22993 8.48644e-07 6.0044e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on customary rights ||| 0.25 0.22993 8.48644e-07 8.30899e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on customary ||| 0.25 0.22993 8.48644e-07 4.15242e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on daft ||| 1 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on days of ||| 1 0.22993 8.48644e-07 2.87596e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on days ||| 0.142857 0.22993 8.48644e-07 5.29018e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on decisions ||| 0.0222222 0.22993 8.48644e-07 6.33659e-06 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| on democratic ||| 0.125 0.22993 8.48644e-07 2.48315e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on developing ||| 0.00803213 0.22993 1.69729e-06 4.50953e-06 2.718 ||| 0-0 ||| 249 1.17835e+06 +en ||| on discussing until ||| 1 0.22993 8.48644e-07 1.42476e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on discussing ||| 0.0909091 0.22993 8.48644e-07 2.93161e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| on display ||| 0.0526316 0.22993 8.48644e-07 8.38789e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| on documents ||| 0.0625 0.22993 8.48644e-07 2.09282e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| on domestic rules governing ||| 1 0.22993 8.48644e-07 2.621e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on domestic rules ||| 1 0.22993 8.48644e-07 1.35103e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on domestic ||| 0.166667 0.22993 8.48644e-07 1.16268e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on drivers ||| 0.1 0.22993 8.48644e-07 7.80655e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on driving time ||| 0.0714286 0.22993 8.48644e-07 4.51287e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| on driving ||| 0.0588235 0.22993 8.48644e-07 2.7489e-06 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on during ||| 0.0526316 0.228091 8.48644e-07 0.000240118 2.718 ||| 0-0 0-1 ||| 19 1.17835e+06 +en ||| on each draw ||| 0.5 0.22993 8.48644e-07 2.7601e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on each party ' ||| 1 0.22993 8.48644e-07 5.47701e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on each party ||| 0.5 0.22993 8.48644e-07 1.59452e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on each ||| 0.0137457 0.22993 3.39458e-06 2.33117e-05 2.718 ||| 0-0 ||| 291 1.17835e+06 +en ||| on earth do ||| 0.25 0.22993 8.48644e-07 4.10826e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on earth ||| 0.00471698 0.22993 8.48644e-07 1.1959e-06 2.718 ||| 0-0 ||| 212 1.17835e+06 +en ||| on either of ||| 0.5 0.22993 1.69729e-06 3.90895e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on either side ||| 0.0123457 0.22993 8.48644e-07 1.57612e-08 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| on either ||| 0.0512821 0.22993 5.09187e-06 7.19033e-05 2.718 ||| 0-0 ||| 117 1.17835e+06 +en ||| on election day ||| 0.0526316 0.22993 8.48644e-07 5.06393e-10 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| on election ||| 0.1 0.22993 8.48644e-07 1.97655e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on emphasising ||| 0.142857 0.234713 8.48644e-07 1.28808e-05 2.718 ||| 0-0 0-1 ||| 7 1.17835e+06 +en ||| on end before ||| 1 0.22993 8.48644e-07 9.0372e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on end to ||| 0.5 0.22993 8.48644e-07 3.21083e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on end ||| 0.0862069 0.22993 4.24322e-06 3.61344e-05 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| on ensuring it has ||| 1 0.22993 8.48644e-07 8.83372e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on ensuring it ||| 1 0.22993 8.48644e-07 1.71612e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on ensuring ||| 0.034965 0.22993 4.24322e-06 9.65022e-06 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| on entry ||| 0.0294118 0.22993 8.48644e-07 1.52809e-06 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| on every occasion in ||| 1 0.605812 8.48644e-07 2.45824e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| on everyone 's ||| 0.142857 0.22993 8.48644e-07 1.0644e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on everyone ||| 0.00847458 0.22993 8.48644e-07 5.58916e-06 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| on exactly ||| 0.0833333 0.22993 1.69729e-06 8.33806e-06 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| on existing , ||| 0.333333 0.22993 8.48644e-07 7.80428e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on existing ||| 0.03125 0.22993 8.48644e-07 6.54421e-06 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| on fair and just ||| 1 0.22993 8.48644e-07 6.7987e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on fair and ||| 1 0.22993 8.48644e-07 5.38853e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on fair ||| 0.0555556 0.22993 8.48644e-07 4.30191e-06 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| on finding ||| 0.0327869 0.22993 1.69729e-06 4.42648e-06 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| on fire ||| 0.0344828 0.22993 8.48644e-07 1.49487e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| on fiscal consolidation ||| 0.333333 0.22993 8.48644e-07 1.79385e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on fiscal ||| 0.25 0.22993 8.48644e-07 4.48461e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on fisheries ||| 0.00793651 0.22993 8.48644e-07 2.18417e-06 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| on fishery resources in ||| 1 0.605812 8.48644e-07 7.96421e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| on foods ||| 0.0208333 0.22993 8.48644e-07 8.05569e-07 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| on foot ||| 0.0322581 0.22993 8.48644e-07 1.85198e-06 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| on for the last ||| 0.5 0.22993 8.48644e-07 8.55811e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on for the ||| 0.0588235 0.22993 8.48644e-07 3.91855e-05 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on for this ||| 0.142857 0.22993 8.48644e-07 4.12422e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on for ||| 0.0292683 0.22993 5.09187e-06 0.000638285 2.718 ||| 0-0 ||| 205 1.17835e+06 +en ||| on foreign and security ||| 0.5 0.22993 8.48644e-07 2.3202e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on foreign and ||| 0.2 0.22993 8.48644e-07 2.8399e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on foreign ||| 0.04 0.22993 8.48644e-07 2.26722e-06 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| on forming a ||| 0.166667 0.22993 8.48644e-07 3.31307e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on forming ||| 0.1 0.22993 8.48644e-07 7.47436e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on freedom ||| 0.00348432 0.22993 8.48644e-07 7.08403e-06 2.718 ||| 0-0 ||| 287 1.17835e+06 +en ||| on from that ||| 0.0434783 0.22993 8.48644e-07 2.24974e-06 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| on from time ||| 1 0.22993 8.48644e-07 2.19563e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on from ||| 0.0314136 0.22993 1.01837e-05 0.000133741 2.718 ||| 0-0 ||| 382 1.17835e+06 +en ||| on fundamental ||| 0.0833333 0.22993 8.48644e-07 4.09429e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| on funding ||| 0.016129 0.22993 8.48644e-07 4.42648e-06 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| on further work ||| 0.333333 0.22993 8.48644e-07 2.54069e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on further ||| 0.00917431 0.22993 8.48644e-07 4.01373e-05 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| on getting ||| 0.0185185 0.22993 8.48644e-07 9.65022e-06 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| on global partnership ||| 1 0.22993 8.48644e-07 8.19787e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on global ||| 0.0714286 0.22993 8.48644e-07 3.79531e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| on going to ||| 0.2 0.22993 8.48644e-07 6.3154e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on going ||| 0.0909091 0.22993 8.48644e-07 7.10728e-05 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| on good , ||| 1 0.22993 8.48644e-07 5.13617e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on good ||| 0.025641 0.22993 1.69729e-06 4.30689e-05 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| on goodwill ||| 0.25 0.22993 8.48644e-07 3.32194e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on grounds of ||| 0.00408163 0.22993 8.48644e-07 4.72704e-07 2.718 ||| 0-0 ||| 245 1.17835e+06 +en ||| on grounds ||| 0.011194 0.22993 2.54593e-06 8.69517e-06 2.718 ||| 0-0 ||| 268 1.17835e+06 +en ||| on hard ||| 1 0.22993 8.48644e-07 8.72839e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on having in ||| 1 0.605812 8.48644e-07 1.18308e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| on having ||| 0.0103448 0.22993 2.54593e-06 3.17992e-05 2.718 ||| 0-0 ||| 290 1.17835e+06 +en ||| on health care ||| 0.0333333 0.22993 8.48644e-07 7.00484e-10 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| on health ||| 0.00233645 0.22993 8.48644e-07 6.90132e-06 2.718 ||| 0-0 ||| 428 1.17835e+06 +en ||| on healthy ||| 0.25 0.22993 8.48644e-07 7.47436e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on helping ||| 0.0277778 0.22993 8.48644e-07 3.13923e-06 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| on her ||| 0.00163399 0.22993 1.69729e-06 2.25975e-05 2.718 ||| 0-0 ||| 1224 1.17835e+06 +en ||| on him ||| 0.0178571 0.22993 8.48644e-07 2.66253e-05 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| on his ||| 0.000773395 0.22993 1.69729e-06 2.4956e-05 2.718 ||| 0-0 ||| 2586 1.17835e+06 +en ||| on hold for such ||| 0.333333 0.22993 8.48644e-07 2.30039e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on hold for ||| 0.125 0.22993 8.48644e-07 1.11189e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on hold ||| 0.0333333 0.22993 1.69729e-06 1.4467e-05 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| on how Europe and the European Union ||| 0.5 0.22993 8.48644e-07 2.15869e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on how Europe and the European ||| 0.5 0.22993 8.48644e-07 3.87278e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on how Europe and the ||| 0.5 0.22993 8.48644e-07 1.15816e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on how Europe and ||| 0.5 0.22993 8.48644e-07 1.88651e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on how Europe ||| 0.142857 0.22993 8.48644e-07 1.50609e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on how the new decision-making procedures work ||| 1 0.22993 8.48644e-07 4.83833e-22 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on how the new decision-making procedures ||| 1 0.22993 8.48644e-07 7.64349e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on how the new decision-making ||| 1 0.22993 8.48644e-07 1.76933e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on how the new ||| 0.25 0.22993 8.48644e-07 1.09218e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on how the proposal for a new ||| 0.5 0.22993 8.48644e-07 7.43038e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on how the proposal for a ||| 0.5 0.22993 8.48644e-07 1.24316e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on how the proposal for ||| 0.5 0.22993 8.48644e-07 2.8046e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on how the proposal ||| 0.5 0.22993 8.48644e-07 3.64912e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on how the ||| 0.0196078 0.22993 1.69729e-06 1.8273e-06 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| on how to ||| 0.00191571 0.22993 8.48644e-07 2.64482e-06 2.718 ||| 0-0 ||| 522 1.17835e+06 +en ||| on how well ||| 0.0357143 0.22993 8.48644e-07 4.71947e-08 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| on how ||| 0.0040965 0.22993 7.6378e-06 2.97645e-05 2.718 ||| 0-0 ||| 2197 1.17835e+06 +en ||| on human ||| 0.0263158 0.22993 8.48644e-07 1.02482e-05 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| on ice in ||| 1 0.605812 8.48644e-07 1.88476e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| on ice ||| 0.03125 0.22993 8.48644e-07 5.06595e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| on in a ||| 0.285714 0.417871 3.39458e-06 0.0016999 2.718 ||| 0-0 0-1 ||| 14 1.17835e+06 +en ||| on in exactly ||| 1 0.417871 8.48644e-07 3.85036e-06 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| on in the ||| 0.0359712 0.417871 4.24322e-06 0.00235439 2.718 ||| 0-0 0-1 ||| 139 1.17835e+06 +en ||| on in ||| 0.607724 0.417871 0.000253745 0.0383502 2.718 ||| 0-0 0-1 ||| 492 1.17835e+06 +en ||| on increased ||| 0.0166667 0.22993 8.48644e-07 4.12751e-06 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| on individual ||| 0.0133333 0.22993 8.48644e-07 1.1743e-05 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| on infringement proceedings ||| 0.5 0.22993 8.48644e-07 1.95953e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on infringement ||| 0.333333 0.22993 8.48644e-07 5.39815e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on inside ||| 0.333333 0.209324 8.48644e-07 1.58789e-05 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| on interest and ||| 0.166667 0.22993 1.69729e-06 1.16821e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| on interest ||| 0.09375 0.22993 2.54593e-06 9.32634e-06 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| on internal ||| 0.333333 0.22993 1.69729e-06 3.85345e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on into ||| 0.0833333 0.377913 8.48644e-07 0.00183847 2.718 ||| 0-0 0-1 ||| 12 1.17835e+06 +en ||| on invitations to ||| 0.333333 0.22993 8.48644e-07 1.32832e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on invitations ||| 0.333333 0.22993 8.48644e-07 1.49487e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on is all about ||| 1 0.22993 8.48644e-07 1.7395e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on is all ||| 1 0.22993 8.48644e-07 1.22994e-05 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on is this ||| 0.5 0.22993 8.48644e-07 1.68179e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on is ||| 0.148148 0.22993 6.78915e-06 0.00260283 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| on issues of ||| 0.00675676 0.22993 8.48644e-07 1.13548e-06 2.718 ||| 0-0 ||| 148 1.17835e+06 +en ||| on issues ||| 0.00155763 0.22993 8.48644e-07 2.08867e-05 2.718 ||| 0-0 ||| 642 1.17835e+06 +en ||| on it , having ||| 1 0.0065553 8.48644e-07 1.0912e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| on it , ||| 0.0117647 0.22993 1.69729e-06 0.000176123 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| on it - ||| 0.0952381 0.22993 1.69729e-06 5.57089e-06 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| on it as ||| 0.0769231 0.22993 8.48644e-07 1.50705e-05 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| on it at ||| 0.0588235 0.186621 8.48644e-07 9.16203e-06 2.718 ||| 0-0 0-1 0-2 ||| 17 1.17835e+06 +en ||| on it back in ||| 1 0.605812 8.48644e-07 3.69568e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| on it by myself would be ||| 1 0.22993 8.48644e-07 1.28236e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on it by myself would ||| 1 0.22993 8.48644e-07 7.07589e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on it by myself ||| 1 0.22993 8.48644e-07 1.2057e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on it by ||| 0.0869565 0.22993 1.69729e-06 7.7537e-06 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| on it from ||| 0.333333 0.22993 8.48644e-07 2.37835e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on it in a ||| 0.333333 0.605812 8.48644e-07 2.43553e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| on it in time , in ||| 1 0.3624 8.48644e-07 9.56206e-09 2.718 ||| 0-0 0-1 0-2 0-5 ||| 1 1.17835e+06 +en ||| on it in ||| 0.203704 0.605812 9.33509e-06 5.49461e-05 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| on it on ||| 0.333333 0.22993 8.48644e-07 0.000122651 2.718 ||| 0-0 0-2 ||| 3 1.17835e+06 +en ||| on it ||| 0.0191518 0.22993 2.3762e-05 0.00147687 2.718 ||| 0-0 ||| 1462 1.17835e+06 +en ||| on its hands ||| 0.0909091 0.22993 8.48644e-07 1.19266e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| on its long-standing dispute ||| 0.5 0.22993 8.48644e-07 6.39869e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on its long-standing ||| 0.5 0.22993 8.48644e-07 3.78621e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on its own authority , instead ||| 1 0.22993 8.48644e-07 2.05259e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on its own authority , ||| 1 0.22993 8.48644e-07 1.01664e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on its own authority ||| 0.125 0.22993 8.48644e-07 8.52492e-12 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on its own ||| 0.00631912 0.22993 3.39458e-06 2.00586e-07 2.718 ||| 0-0 ||| 633 1.17835e+06 +en ||| on its people in ||| 1 0.605812 8.48644e-07 3.87465e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| on its way ||| 0.011236 0.22993 8.48644e-07 2.55049e-07 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| on its web sites accessible via ||| 0.5 0.22993 8.48644e-07 2.88074e-24 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on its web sites accessible ||| 0.5 0.22993 8.48644e-07 1.02518e-19 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on its web sites ||| 0.5 0.22993 8.48644e-07 7.88597e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on its web ||| 0.5 0.22993 8.48644e-07 5.08772e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on its ||| 0.0110132 0.22993 2.54593e-05 0.000118319 2.718 ||| 0-0 ||| 2724 1.17835e+06 +en ||| on itself in ||| 0.25 0.605812 8.48644e-07 2.09703e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| on joining ||| 0.0769231 0.22993 8.48644e-07 1.16268e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| on just a ||| 0.285714 0.22993 3.39458e-06 4.64455e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| on just ||| 0.191176 0.22993 1.10324e-05 0.000104782 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| on keeping foreigners ||| 0.5 0.22993 8.48644e-07 6.82492e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on keeping ||| 0.0204082 0.22993 8.48644e-07 4.87494e-06 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| on labour - ||| 1 0.22993 8.48644e-07 1.35331e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on labour ||| 0.00925926 0.22993 8.48644e-07 3.58769e-06 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| on land cleared by ||| 0.5 0.22993 8.48644e-07 1.99759e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on land cleared ||| 0.5 0.22993 1.69729e-06 3.80486e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on land ||| 0.0186916 0.22993 1.69729e-06 3.19736e-06 2.718 ||| 0-0 ||| 107 1.17835e+06 +en ||| on learning ||| 0.0714286 0.22993 8.48644e-07 1.1959e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| on legal ||| 0.05 0.22993 8.48644e-07 1.07631e-05 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| on lifelong ||| 0.142857 0.22993 8.48644e-07 2.4084e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on like ||| 0.125 0.22993 8.48644e-07 0.000147486 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on limit ||| 0.5 0.22993 8.48644e-07 4.03615e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on line ||| 0.0555556 0.22993 1.69729e-06 2.44494e-05 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| on looking towards ||| 0.5 0.0985716 8.48644e-07 1.29891e-09 2.718 ||| 0-0 0-1 0-2 ||| 2 1.17835e+06 +en ||| on looking up he ||| 1 0.22993 8.48644e-07 2.61517e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on looking up ||| 1 0.22993 8.48644e-07 2.99664e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on looking ||| 0.0526316 0.22993 8.48644e-07 8.78652e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| on maintaining ||| 0.00943396 0.22993 8.48644e-07 1.49487e-06 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| on making ||| 0.00581395 0.22993 8.48644e-07 3.19487e-05 2.718 ||| 0-0 ||| 172 1.17835e+06 +en ||| on management boards ||| 0.166667 0.22993 8.48644e-07 1.3125e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on management ||| 0.0714286 0.22993 8.48644e-07 3.64582e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| on many sides of ||| 0.333333 0.22993 8.48644e-07 5.6883e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on many sides ||| 0.111111 0.22993 8.48644e-07 1.04634e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on many ||| 0.00321199 0.22993 2.54593e-06 2.85105e-05 2.718 ||| 0-0 ||| 934 1.17835e+06 +en ||| on matters of ||| 0.00617284 0.22993 1.69729e-06 8.35246e-07 2.718 ||| 0-0 ||| 324 1.17835e+06 +en ||| on matters such as this ||| 0.25 0.22993 8.48644e-07 2.09583e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on matters such as ||| 0.0208333 0.22993 8.48644e-07 3.24362e-10 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| on matters such ||| 0.1 0.22993 8.48644e-07 3.17865e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on matters ||| 0.00838926 0.22993 4.24322e-06 1.5364e-05 2.718 ||| 0-0 ||| 596 1.17835e+06 +en ||| on me ||| 0.0357143 0.22993 2.54593e-06 5.00034e-05 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| on measures in place ||| 1 0.605812 8.48644e-07 9.62109e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| on measures in ||| 0.25 0.605812 8.48644e-07 6.39275e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| on measures to ||| 0.0114943 0.22993 8.48644e-07 1.52683e-06 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| on measures ||| 0.0102041 0.22993 1.69729e-06 1.71827e-05 2.718 ||| 0-0 ||| 196 1.17835e+06 +en ||| on meeting one ||| 0.5 0.22993 8.48644e-07 4.34759e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on meeting ||| 0.0232558 0.22993 8.48644e-07 1.04309e-05 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| on men ' ||| 1 0.22993 8.48644e-07 1.21237e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on men ||| 0.0526316 0.22993 8.48644e-07 3.52956e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| on mere ||| 0.142857 0.22993 8.48644e-07 1.76063e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on more of ||| 0.166667 0.22993 8.48644e-07 1.03105e-05 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on more or less ||| 0.166667 0.22993 8.48644e-07 3.69054e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on more or ||| 0.166667 0.22993 8.48644e-07 2.16836e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on more ||| 0.030303 0.22993 5.94051e-06 0.000189658 2.718 ||| 0-0 ||| 231 1.17835e+06 +en ||| on mutual ||| 0.0344828 0.22993 8.48644e-07 1.82706e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| on my mind ||| 0.111111 0.22993 8.48644e-07 1.34536e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on my own account and ||| 0.166667 0.22993 8.48644e-07 3.26064e-13 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on my own account ||| 0.166667 0.22993 1.69729e-06 2.60312e-11 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| on my own ||| 0.0168067 0.22993 1.69729e-06 9.05433e-08 2.718 ||| 0-0 ||| 119 1.17835e+06 +en ||| on my ||| 0.0105882 0.22993 7.6378e-06 5.34084e-05 2.718 ||| 0-0 ||| 850 1.17835e+06 +en ||| on narrow country ||| 1 0.22993 8.48644e-07 2.27157e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on narrow ||| 1 0.22993 8.48644e-07 6.31168e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on new technologies ||| 0.0666667 0.22993 8.48644e-07 4.11996e-10 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| on new ||| 0.00816326 0.22993 1.69729e-06 4.9638e-05 2.718 ||| 0-0 ||| 245 1.17835e+06 +en ||| on non-discrimination in the Treaty ||| 1 0.605812 8.48644e-07 6.49488e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| on non-discrimination in the ||| 0.333333 0.605812 8.48644e-07 7.58748e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| on non-discrimination in ||| 0.333333 0.605812 8.48644e-07 1.23591e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| on non-governmental ||| 0.5 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on nuclear ||| 0.0625 0.22993 8.48644e-07 3.23058e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| on numerous occasions ||| 0.00512821 0.22993 8.48644e-07 3.88799e-11 2.718 ||| 0-0 ||| 195 1.17835e+06 +en ||| on numerous ||| 0.0046729 0.22993 8.48644e-07 1.46165e-06 2.718 ||| 0-0 ||| 214 1.17835e+06 +en ||| on observation ||| 0.25 0.22993 8.48644e-07 8.38789e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on occasion ||| 0.0078125 0.22993 8.48644e-07 4.06107e-06 2.718 ||| 0-0 ||| 128 1.17835e+06 +en ||| on of ||| 0.0555556 0.22993 8.48644e-07 0.00451484 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| on offer in ||| 0.0909091 0.605812 8.48644e-07 3.53471e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| on offer ||| 0.00657895 0.22993 8.48644e-07 9.50074e-06 2.718 ||| 0-0 ||| 152 1.17835e+06 +en ||| on on ||| 0.307692 0.22993 3.39458e-06 0.00689704 2.718 ||| 0-0 0-1 ||| 13 1.17835e+06 +en ||| on one and ||| 0.666667 0.22993 1.69729e-06 4.33579e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on one another ||| 0.0909091 0.22993 8.48644e-07 8.34557e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| on one occasion , ||| 0.0625 0.0025338 8.48644e-07 6.34448e-12 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| on one occasion during ||| 0.333333 0.226251 8.48644e-07 3.94295e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| on one occasion ||| 0.0277778 0.0025338 8.48644e-07 5.32011e-11 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| on one of ||| 0.008 0.22993 8.48644e-07 1.88179e-05 2.718 ||| 0-0 ||| 125 1.17835e+06 +en ||| on one point , that being ||| 1 0.22993 8.48644e-07 1.72868e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on one point , that ||| 1 0.22993 8.48644e-07 6.0745e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on one point , ||| 0.0222222 0.22993 8.48644e-07 3.61113e-08 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| on one point ||| 0.00578035 0.22993 8.48644e-07 3.02808e-07 2.718 ||| 0-0 ||| 173 1.17835e+06 +en ||| on one side ||| 0.00581395 0.22993 8.48644e-07 7.58751e-08 2.718 ||| 0-0 ||| 172 1.17835e+06 +en ||| on one ||| 0.00909918 0.22993 8.48644e-06 0.000346146 2.718 ||| 0-0 ||| 1099 1.17835e+06 +en ||| on only ||| 0.0645161 0.22993 1.69729e-06 9.24412e-05 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| on open ||| 0.0714286 0.22993 8.48644e-07 1.33874e-05 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| on operating in a ||| 1 0.605812 8.48644e-07 6.16306e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| on operating in ||| 0.5 0.605812 8.48644e-07 1.3904e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| on other ||| 0.00524934 0.22993 3.39458e-06 0.000107589 2.718 ||| 0-0 ||| 762 1.17835e+06 +en ||| on our agreements ||| 1 0.22993 8.48644e-07 4.25006e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on our behalf and on ||| 0.5 0.22993 8.48644e-07 3.79552e-11 2.718 ||| 0-0 0-4 ||| 2 1.17835e+06 +en ||| on our hands ||| 0.027027 0.22993 8.48644e-07 1.15473e-08 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| on our part is called ||| 1 0.22993 8.48644e-07 7.43934e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on our part is ||| 0.333333 0.22993 8.48644e-07 4.2804e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on our part ||| 0.0121457 0.22993 2.54593e-06 1.36575e-07 2.718 ||| 0-0 ||| 247 1.17835e+06 +en ||| on our shoulders , ||| 0.5 0.22993 8.48644e-07 2.11753e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on our shoulders ||| 0.0833333 0.22993 8.48644e-07 1.77563e-09 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| on our ||| 0.00527778 0.22993 1.61242e-05 0.000114557 2.718 ||| 0-0 ||| 3600 1.17835e+06 +en ||| on ourselves ||| 0.025 0.22993 8.48644e-07 2.64177e-05 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| on outright ||| 1 0.22993 8.48644e-07 4.15242e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on over ||| 0.266667 0.193934 3.39458e-06 0.000332792 2.718 ||| 0-0 0-1 ||| 15 1.17835e+06 +en ||| on packaging ||| 0.025641 0.22993 8.48644e-07 3.57108e-07 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| on page 9 of ||| 0.2 0.22993 8.48644e-07 1.26416e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on page 9 ||| 0.0666667 0.22993 8.48644e-07 2.32536e-12 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| on page ||| 0.012987 0.22993 1.69729e-06 2.07621e-07 2.718 ||| 0-0 ||| 154 1.17835e+06 +en ||| on paper in ||| 0.142857 0.605812 8.48644e-07 8.99125e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| on paper ||| 0.0043956 0.22993 1.69729e-06 2.41671e-06 2.718 ||| 0-0 ||| 455 1.17835e+06 +en ||| on paragraph ||| 0.00324675 0.22993 8.48644e-07 1.31216e-06 2.718 ||| 0-0 ||| 308 1.17835e+06 +en ||| on partnership and is ||| 0.5 0.22993 8.48644e-07 7.0422e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on partnership and ||| 0.0625 0.22993 8.48644e-07 2.24695e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| on partnership ||| 0.0444444 0.22993 1.69729e-06 1.79385e-06 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| on people ||| 0.0211864 0.22993 4.24322e-06 7.30992e-05 2.718 ||| 0-0 ||| 236 1.17835e+06 +en ||| on playing . ||| 1 0.22993 8.48644e-07 1.65774e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on playing ||| 0.1 0.22993 8.48644e-07 5.47289e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on points of order ||| 0.0769231 0.22993 8.48644e-07 3.12358e-10 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| on points of ||| 0.0384615 0.22993 8.48644e-07 5.86478e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| on points ||| 0.0217391 0.22993 8.48644e-07 1.0788e-05 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| on policy ||| 0.0163934 0.22993 8.48644e-07 3.26962e-05 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| on poorly ||| 1 0.22993 8.48644e-07 3.57108e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on popular ||| 0.25 0.22993 8.48644e-07 8.96923e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on portions ||| 1 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on possible courses ||| 0.25 0.22993 8.48644e-07 7.66051e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on possible ||| 0.0131579 0.22993 8.48644e-07 6.66131e-05 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| on pot ||| 0.166667 0.22993 8.48644e-07 3.57108e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on principle ||| 0.00505051 0.22993 8.48644e-07 1.27313e-05 2.718 ||| 0-0 ||| 198 1.17835e+06 +en ||| on product ||| 0.0833333 0.22993 8.48644e-07 5.04934e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| on proper ||| 0.0833333 0.22993 8.48644e-07 7.34978e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| on proposed ||| 0.166667 0.22993 8.48644e-07 9.2682e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on public access ||| 0.0116279 0.22993 8.48644e-07 1.15417e-09 2.718 ||| 0-0 ||| 86 1.17835e+06 +en ||| on public ||| 0.00943396 0.22993 8.48644e-07 1.34206e-05 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| on pure ||| 0.125 0.22993 8.48644e-07 6.89302e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on putting ||| 0.075 0.22993 2.54593e-06 9.29312e-06 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| on quite a few ||| 0.0666667 0.22993 8.48644e-07 2.51736e-10 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| on quite a ||| 0.214286 0.22993 2.54593e-06 1.43603e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| on quite different ||| 0.333333 0.22993 8.48644e-07 7.13386e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on quite ||| 0.352941 0.22993 5.09187e-06 3.23972e-05 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on record in ||| 0.166667 0.605812 8.48644e-07 1.7241e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| on record ||| 0.0159363 0.22993 3.39458e-06 4.6341e-06 2.718 ||| 0-0 ||| 251 1.17835e+06 +en ||| on reducing ||| 0.0037037 0.22993 8.48644e-07 2.20909e-06 2.718 ||| 0-0 ||| 270 1.17835e+06 +en ||| on reforming ||| 0.0119048 0.22993 8.48644e-07 1.49487e-07 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| on registration and land ||| 1 0.22993 8.48644e-07 2.00249e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on registration and ||| 0.142857 0.22993 8.48644e-07 5.20128e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on registration ||| 0.0769231 0.22993 1.69729e-06 4.15242e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| on related ||| 0.2 0.22993 8.48644e-07 5.43967e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on renewable energy , ||| 0.0666667 0.22993 8.48644e-07 6.95562e-12 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| on renewable energy ||| 0.00980392 0.22993 8.48644e-07 5.83257e-11 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| on renewable ||| 0.0135135 0.22993 8.48644e-07 6.56082e-07 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| on repatriation measures or even on ||| 1 0.22993 8.48644e-07 6.94931e-19 2.718 ||| 0-0 0-5 ||| 1 1.17835e+06 +en ||| on research and ||| 0.00515464 0.22993 8.48644e-07 5.64859e-08 2.718 ||| 0-0 ||| 194 1.17835e+06 +en ||| on research ||| 0.00539084 0.22993 1.69729e-06 4.50953e-06 2.718 ||| 0-0 ||| 371 1.17835e+06 +en ||| on respect being ||| 1 0.22993 8.48644e-07 1.0224e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on respect ||| 0.00643087 0.22993 1.69729e-06 3.59267e-05 2.718 ||| 0-0 ||| 311 1.17835e+06 +en ||| on responding to ||| 0.25 0.22993 8.48644e-07 2.65663e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on responding ||| 0.142857 0.22993 8.48644e-07 2.98974e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on reversing ||| 0.142857 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on roads ||| 0.0357143 0.22993 8.48644e-07 9.88276e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| on role ||| 0.5 0.22993 8.48644e-07 1.84367e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on sale in ||| 0.0833333 0.605812 8.48644e-07 3.89312e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| on sale ||| 0.0192308 0.22993 8.48644e-07 1.04641e-06 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| on saying ||| 0.133333 0.22993 1.69729e-06 1.47328e-05 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| on scope ||| 0.333333 0.22993 1.69729e-06 8.27993e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on security ||| 0.00487805 0.22993 8.48644e-07 6.78505e-06 2.718 ||| 0-0 ||| 205 1.17835e+06 +en ||| on selected ||| 0.2 0.22993 8.48644e-07 3.57108e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on separately ||| 0.0833333 0.22993 8.48644e-07 5.39815e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| on serious ||| 0.142857 0.22993 8.48644e-07 9.56718e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on seriously ||| 0.333333 0.22993 8.48644e-07 3.46312e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on serving ||| 0.2 0.22993 8.48644e-07 9.30142e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on setting ||| 0.0185185 0.22993 8.48644e-07 7.8896e-06 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| on settling a ||| 1 0.22993 8.48644e-07 1.06754e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on settling ||| 0.0769231 0.22993 8.48644e-07 2.4084e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| on several occasions with ||| 0.166667 0.0535436 8.48644e-07 1.35916e-13 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| on several occasions ||| 0.00157233 0.22993 8.48644e-07 1.44695e-10 2.718 ||| 0-0 ||| 636 1.17835e+06 +en ||| on several ||| 0.00387097 0.22993 2.54593e-06 5.43967e-06 2.718 ||| 0-0 ||| 775 1.17835e+06 +en ||| on shop and ||| 1 0.22993 8.48644e-07 1.35233e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on shop ||| 1 0.22993 8.48644e-07 1.07963e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on should ||| 0.111111 0.22993 8.48644e-07 0.000367987 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on sight in ||| 1 0.605812 8.48644e-07 7.10649e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| on since ||| 0.0625 0.118727 8.48644e-07 1.44089e-05 2.718 ||| 0-0 0-1 ||| 16 1.17835e+06 +en ||| on so many ||| 0.0227273 0.22993 8.48644e-07 6.47103e-08 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| on so ||| 0.075 0.22993 2.54593e-06 0.000188495 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| on society ||| 0.0243902 0.22993 1.69729e-06 4.8085e-06 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| on some of ||| 0.00961538 0.22993 1.69729e-06 4.91802e-06 2.718 ||| 0-0 ||| 208 1.17835e+06 +en ||| on some ||| 0.015528 0.22993 8.48644e-06 9.04646e-05 2.718 ||| 0-0 ||| 644 1.17835e+06 +en ||| on something ||| 0.0218978 0.22993 2.54593e-06 4.59673e-05 2.718 ||| 0-0 ||| 137 1.17835e+06 +en ||| on sound and ||| 1 0.22993 8.48644e-07 6.17912e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on sound ||| 0.0344828 0.22993 8.48644e-07 4.93307e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| on specific ||| 0.0222222 0.22993 8.48644e-07 1.25486e-05 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| on spirit ||| 1 0.22993 8.48644e-07 4.87494e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on stating here ||| 1 0.22993 8.48644e-07 3.94069e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on stating ||| 0.5 0.22993 8.48644e-07 1.94333e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on stereotyping , often ||| 0.333333 0.22993 8.48644e-07 5.2055e-13 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on stereotyping , ||| 0.333333 0.22993 8.48644e-07 3.96156e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on stereotyping ||| 0.333333 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on stream ||| 0.0357143 0.22993 8.48644e-07 3.32194e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| on strengthening ||| 0.00393701 0.22993 8.48644e-07 1.07963e-06 2.718 ||| 0-0 ||| 254 1.17835e+06 +en ||| on substantive ||| 0.111111 0.22993 8.48644e-07 3.90327e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on such a role ||| 0.333333 0.22993 8.48644e-07 1.69075e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on such a sensitive issue as ||| 0.111111 0.066968 8.48644e-07 1.62051e-16 2.718 ||| 0-5 ||| 9 1.17835e+06 +en ||| on such a ||| 0.0103093 0.22993 1.69729e-06 7.61601e-06 2.718 ||| 0-0 ||| 194 1.17835e+06 +en ||| on such things at ||| 1 0.321886 8.48644e-07 2.2759e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| on such ||| 0.0971429 0.22993 4.32809e-05 0.000171819 2.718 ||| 0-0 ||| 525 1.17835e+06 +en ||| on taking ||| 0.027027 0.22993 1.69729e-06 3.52956e-05 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| on target ||| 0.111111 0.22993 1.69729e-06 3.13923e-06 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| on temporary work ||| 0.047619 0.22993 8.48644e-07 8.14829e-10 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| on temporary ||| 0.1 0.22993 8.48644e-07 1.28725e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on that at ||| 0.111111 0.275908 8.48644e-07 5.58831e-05 2.718 ||| 0-0 0-2 ||| 9 1.17835e+06 +en ||| on that basis ||| 0.00257732 0.22993 8.48644e-07 8.29543e-07 2.718 ||| 0-0 ||| 388 1.17835e+06 +en ||| on that country ||| 0.0285714 0.22993 8.48644e-07 5.02783e-07 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| on that in ||| 0.037037 0.605812 8.48644e-07 5.1975e-05 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| on that score ||| 0.0125 0.22993 8.48644e-07 1.50877e-08 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| on that subject - and ||| 0.333333 0.22993 8.48644e-07 3.56306e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on that subject - ||| 0.333333 0.22993 8.48644e-07 2.84456e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on that subject ||| 0.0106383 0.22993 8.48644e-07 7.54104e-07 2.718 ||| 0-0 ||| 94 1.17835e+06 +en ||| on that to ||| 0.2 0.22993 8.48644e-07 0.000124136 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on that which ||| 0.2 0.22993 8.48644e-07 1.1867e-05 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on that ||| 0.0106762 0.22993 3.05512e-05 0.00139701 2.718 ||| 0-0 ||| 3372 1.17835e+06 +en ||| on the Community transit system ||| 0.142857 0.22993 8.48644e-07 1.15108e-15 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on the Community transit ||| 0.25 0.22993 8.48644e-07 4.12723e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on the Community ||| 0.0212766 0.22993 8.48644e-07 8.25446e-07 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| on the Environment , Public Health and ||| 0.00105708 0.22993 1.69729e-06 1.7168e-18 2.718 ||| 0-0 ||| 1892 1.17835e+06 +en ||| on the Environment , Public Health ||| 0.00104221 0.22993 1.69729e-06 1.3706e-16 2.718 ||| 0-0 ||| 1919 1.17835e+06 +en ||| on the Environment , Public ||| 0.00106157 0.22993 1.69729e-06 1.28695e-12 2.718 ||| 0-0 ||| 1884 1.17835e+06 +en ||| on the Environment , ||| 0.000997506 0.22993 1.69729e-06 1.20388e-08 2.718 ||| 0-0 ||| 2005 1.17835e+06 +en ||| on the Environment ||| 0.000770119 0.22993 1.69729e-06 1.0095e-07 2.718 ||| 0-0 ||| 2597 1.17835e+06 +en ||| on the European ||| 0.0133333 0.22993 1.69729e-06 1.70488e-05 2.718 ||| 0-0 ||| 150 1.17835e+06 +en ||| on the House ||| 0.0185185 0.22993 8.48644e-07 1.27513e-06 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| on the Internet . we have ||| 1 0.22993 8.48644e-07 3.62739e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the Internet . we ||| 1 0.22993 8.48644e-07 3.03299e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the Internet . ||| 0.00392157 0.22993 8.48644e-07 2.6717e-10 2.718 ||| 0-0 ||| 255 1.17835e+06 +en ||| on the Internet ||| 0.00105374 0.22993 8.48644e-07 8.82039e-08 2.718 ||| 0-0 ||| 949 1.17835e+06 +en ||| on the United Nations ||| 0.0588235 0.22993 8.48644e-07 2.35893e-11 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on the United ||| 0.0416667 0.22993 8.48644e-07 6.24055e-07 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| on the ability ||| 0.0196078 0.22993 8.48644e-07 2.3504e-07 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| on the added value ||| 0.0294118 0.22993 8.48644e-07 3.19173e-11 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| on the added ||| 1 0.22993 8.48644e-07 3.63522e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the agenda as ||| 0.0416667 0.066968 8.48644e-07 7.33721e-10 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| on the agenda during ||| 0.125 0.226251 8.48644e-07 1.17935e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| on the agenda ||| 0.00166875 0.22993 3.39458e-06 5.0628e-07 2.718 ||| 0-0 ||| 2397 1.17835e+06 +en ||| on the argument ||| 0.166667 0.22993 8.48644e-07 1.65191e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on the assumption ||| 0.00408163 0.22993 8.48644e-07 5.14948e-08 2.718 ||| 0-0 ||| 245 1.17835e+06 +en ||| on the attitudes ||| 1 0.22993 8.48644e-07 4.23175e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the automobile industry ||| 0.142857 0.22993 8.48644e-07 9.42915e-13 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on the automobile ||| 0.5 0.22993 8.48644e-07 7.13789e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on the back ||| 0.00704225 0.22993 8.48644e-07 3.42924e-06 2.718 ||| 0-0 ||| 142 1.17835e+06 +en ||| on the ball ||| 0.0909091 0.22993 8.48644e-07 4.79258e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| on the basis of ||| 0.00369523 0.22993 1.78215e-05 1.64586e-07 2.718 ||| 0-0 ||| 5683 1.17835e+06 +en ||| on the basis that we are ||| 0.333333 0.22993 8.48644e-07 8.77194e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on the basis that we ||| 0.5 0.22993 8.48644e-07 5.7814e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on the basis that ||| 0.00869565 0.22993 8.48644e-07 5.09271e-08 2.718 ||| 0-0 ||| 115 1.17835e+06 +en ||| on the basis ||| 0.00525259 0.22993 2.88539e-05 3.02748e-06 2.718 ||| 0-0 ||| 6473 1.17835e+06 +en ||| on the budget ? ||| 0.333333 0.22993 8.48644e-07 1.07522e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on the budget ||| 0.002457 0.22993 8.48644e-07 6.29154e-07 2.718 ||| 0-0 ||| 407 1.17835e+06 +en ||| on the cards ||| 0.0454545 0.22993 8.48644e-07 4.58864e-08 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| on the common ||| 0.0185185 0.22993 8.48644e-07 1.17775e-06 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| on the conditions of the external borders ||| 1 0.22993 8.48644e-07 1.64269e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the conditions of the external ||| 1 0.22993 8.48644e-07 3.80253e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the conditions of the ||| 1 0.22993 8.48644e-07 2.03344e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the conditions of ||| 0.0434783 0.22993 8.48644e-07 3.31223e-08 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| on the conditions ||| 0.00961538 0.22993 8.48644e-07 6.0927e-07 2.718 ||| 0-0 ||| 104 1.17835e+06 +en ||| on the content of ||| 0.0102041 0.22993 8.48644e-07 1.36647e-08 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| on the content ||| 0.00510204 0.22993 8.48644e-07 2.51356e-07 2.718 ||| 0-0 ||| 196 1.17835e+06 +en ||| on the countries of ||| 0.0384615 0.22993 8.48644e-07 1.05243e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| on the countries ||| 0.0102041 0.22993 8.48644e-07 1.9359e-06 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| on the euro ||| 0.00847458 0.22993 8.48644e-07 2.99281e-07 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| on the extension ||| 0.0212766 0.22993 8.48644e-07 8.61645e-08 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| on the face ||| 0.0169492 0.22993 8.48644e-07 8.52978e-07 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| on the fact that ||| 0.00242131 0.22993 8.48644e-07 2.51231e-07 2.718 ||| 0-0 ||| 413 1.17835e+06 +en ||| on the fact ||| 0.0667614 0.22993 3.98863e-05 1.4935e-05 2.718 ||| 0-0 ||| 704 1.17835e+06 +en ||| on the floor of the ||| 0.0434783 0.22993 8.48644e-07 7.2319e-10 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| on the floor of ||| 0.166667 0.22993 3.39458e-06 1.17799e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| on the floor ||| 0.0394737 0.22993 2.54593e-06 2.16686e-07 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| on the global market , and hence ||| 1 0.22993 8.48644e-07 2.03728e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the global market , and ||| 0.25 0.22993 8.48644e-07 7.86594e-14 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on the global market , ||| 0.0454545 0.22993 8.48644e-07 6.27974e-12 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| on the global market ||| 0.0116279 0.22993 8.48644e-07 5.26582e-11 2.718 ||| 0-0 ||| 86 1.17835e+06 +en ||| on the global ||| 0.2 0.22993 8.48644e-07 2.33001e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on the globe ||| 0.142857 0.22993 8.48644e-07 1.12167e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on the ground in ||| 0.0114943 0.605812 8.48644e-07 2.21934e-08 2.718 ||| 0-3 ||| 87 1.17835e+06 +en ||| on the ground ||| 0.00120482 0.22993 1.69729e-06 5.96523e-07 2.718 ||| 0-0 ||| 1660 1.17835e+06 +en ||| on the grounds of , for example ||| 1 0.22993 8.48644e-07 7.74285e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the grounds of , for ||| 1 0.22993 8.48644e-07 2.65986e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the grounds of , ||| 1 0.22993 8.48644e-07 3.46079e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the grounds of the best ||| 1 0.22993 8.48644e-07 2.46752e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the grounds of the ||| 0.04 0.22993 8.48644e-07 1.7816e-09 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| on the grounds of ||| 0.00651466 0.22993 1.69729e-06 2.90202e-08 2.718 ||| 0-0 ||| 307 1.17835e+06 +en ||| on the grounds ||| 0.0116618 0.22993 6.78915e-06 5.33812e-07 2.718 ||| 0-0 ||| 686 1.17835e+06 +en ||| on the idea ||| 0.0187793 0.22993 3.39458e-06 1.14308e-06 2.718 ||| 0-0 ||| 213 1.17835e+06 +en ||| on the implications of their actions on ||| 0.25 0.22993 1.69729e-06 3.13593e-18 2.718 ||| 0-6 ||| 8 1.17835e+06 +en ||| on the increase ||| 0.00444444 0.22993 8.48644e-07 6.58725e-07 2.718 ||| 0-0 ||| 225 1.17835e+06 +en ||| on the issue ||| 0.000583431 0.22993 8.48644e-07 3.85854e-06 2.718 ||| 0-0 ||| 1714 1.17835e+06 +en ||| on the issues ||| 0.00816326 0.22993 1.69729e-06 1.28227e-06 2.718 ||| 0-0 ||| 245 1.17835e+06 +en ||| on the journey ||| 0.0666667 0.22993 8.48644e-07 5.14948e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| on the justice ||| 1 0.22993 8.48644e-07 2.0343e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the kind of ||| 0.04 0.22993 8.48644e-07 1.35261e-07 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| on the kind ||| 0.0357143 0.22993 8.48644e-07 2.48806e-06 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| on the lines of ||| 0.047619 0.22993 8.48644e-07 2.52229e-08 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| on the lines ||| 0.027027 0.22993 8.48644e-07 4.63963e-07 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| on the list ||| 0.00218818 0.22993 8.48644e-07 3.727e-07 2.718 ||| 0-0 ||| 457 1.17835e+06 +en ||| on the loose ||| 0.5 0.22993 8.48644e-07 2.95712e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on the man instead of stigmatising the ||| 1 0.22993 8.48644e-07 8.75385e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the man instead of stigmatising ||| 1 0.22993 8.48644e-07 1.4259e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the man instead of ||| 1 0.22993 8.48644e-07 3.56475e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the man instead ||| 1 0.22993 8.48644e-07 6.55718e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the man ||| 1 0.22993 8.48644e-07 3.24774e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the market ||| 0.000922509 0.22993 8.48644e-07 1.15226e-06 2.718 ||| 0-0 ||| 1084 1.17835e+06 +en ||| on the matter at ||| 0.1 0.275908 8.48644e-07 2.11598e-07 2.718 ||| 0-0 0-3 ||| 10 1.17835e+06 +en ||| on the matter in ||| 0.0263158 0.605812 8.48644e-07 1.968e-07 2.718 ||| 0-3 ||| 38 1.17835e+06 +en ||| on the matter ||| 0.00320171 0.22993 2.54593e-06 5.28968e-06 2.718 ||| 0-0 ||| 937 1.17835e+06 +en ||| on the matters ||| 0.03125 0.22993 8.48644e-07 9.43221e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| on the model of Mr CFSP , ||| 0.5 0.22993 8.48644e-07 1.49535e-18 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on the model of Mr CFSP ||| 0.5 0.22993 8.48644e-07 1.25391e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on the model of Mr ||| 0.5 0.22993 8.48644e-07 6.96617e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on the model of ||| 0.0217391 0.22993 8.48644e-07 1.06712e-08 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| on the model ||| 0.0133333 0.22993 8.48644e-07 1.96292e-07 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| on the national ||| 0.1 0.22993 8.48644e-07 6.55156e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on the need to ||| 0.00439239 0.22993 2.54593e-06 4.15395e-07 2.718 ||| 0-0 ||| 683 1.17835e+06 +en ||| on the need ||| 0.0057377 0.22993 5.94051e-06 4.67481e-06 2.718 ||| 0-0 ||| 1220 1.17835e+06 +en ||| on the numberplate in ||| 1 0.605812 8.48644e-07 1.32781e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| on the occasion of ||| 0.0253807 0.22993 4.24322e-06 1.35538e-08 2.718 ||| 0-0 ||| 197 1.17835e+06 +en ||| on the occasion ||| 0.0215054 0.22993 5.09187e-06 2.49316e-07 2.718 ||| 0-0 ||| 279 1.17835e+06 +en ||| on the one hand and for freedom ||| 1 0.22993 8.48644e-07 6.92091e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the one hand and for ||| 0.2 0.22993 8.48644e-07 8.11362e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on the one hand and ||| 0.0026455 0.22993 8.48644e-07 1.05568e-10 2.718 ||| 0-0 ||| 378 1.17835e+06 +en ||| on the one hand ||| 0.000270197 0.22993 8.48644e-07 8.42795e-09 2.718 ||| 0-0 ||| 3701 1.17835e+06 +en ||| on the one ||| 0.000910747 0.22993 2.54593e-06 2.12505e-05 2.718 ||| 0-0 ||| 3294 1.17835e+06 +en ||| on the only ||| 0.04 0.22993 8.48644e-07 5.67513e-06 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| on the open ||| 0.142857 0.22993 8.48644e-07 8.21877e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on the opposite side of ||| 0.166667 0.22993 8.48644e-07 1.28804e-12 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on the opposite side ||| 0.142857 0.22993 8.48644e-07 2.36929e-11 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on the opposite ||| 0.111111 0.22993 8.48644e-07 1.08088e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on the origin of ingredients used in ||| 1 0.605812 8.48644e-07 3.62407e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| on the other , in ||| 0.0833333 0.605812 8.48644e-07 2.93056e-08 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| on the other hand , ||| 0.00101652 0.22993 3.39458e-06 3.12397e-10 2.718 ||| 0-0 ||| 3935 1.17835e+06 +en ||| on the other hand ||| 0.00108131 0.22993 4.24322e-06 2.61958e-09 2.718 ||| 0-0 ||| 4624 1.17835e+06 +en ||| on the other side of ||| 0.0113636 0.22993 8.48644e-07 7.87102e-11 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| on the other side ||| 0.003003 0.22993 8.48644e-07 1.44784e-09 2.718 ||| 0-0 ||| 333 1.17835e+06 +en ||| on the other ||| 0.00454545 0.22993 2.3762e-05 6.60509e-06 2.718 ||| 0-0 ||| 6160 1.17835e+06 +en ||| on the outside ||| 0.0285714 0.22993 8.48644e-07 2.0343e-07 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| on the part of ||| 0.00585418 0.22993 9.33509e-06 3.30447e-07 2.718 ||| 0-0 ||| 1879 1.17835e+06 +en ||| on the part ||| 0.0119736 0.22993 2.46107e-05 6.07842e-06 2.718 ||| 0-0 ||| 2422 1.17835e+06 +en ||| on the path ||| 0.00552486 0.22993 8.48644e-07 1.94252e-07 2.718 ||| 0-0 ||| 181 1.17835e+06 +en ||| on the question of ||| 0.00121212 0.22993 8.48644e-07 2.29306e-07 2.718 ||| 0-0 ||| 825 1.17835e+06 +en ||| on the question ||| 0.00201207 0.22993 1.69729e-06 4.21798e-06 2.718 ||| 0-0 ||| 994 1.17835e+06 +en ||| on the receiving end of ||| 0.0434783 0.22993 8.48644e-07 3.6059e-12 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| on the receiving end ||| 0.04 0.22993 8.48644e-07 6.63288e-11 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| on the receiving ||| 0.0714286 0.22993 8.48644e-07 1.52445e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| on the release of ||| 0.0588235 0.22993 8.48644e-07 6.29186e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on the release ||| 0.0555556 0.22993 8.48644e-07 1.15736e-07 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| on the right ||| 0.00169779 0.22993 8.48644e-07 3.28802e-06 2.718 ||| 0-0 ||| 589 1.17835e+06 +en ||| on the rights ||| 0.00332226 0.22993 8.48644e-07 1.02021e-06 2.718 ||| 0-0 ||| 301 1.17835e+06 +en ||| on the road ||| 0.00241546 0.22993 8.48644e-07 4.54785e-07 2.718 ||| 0-0 ||| 414 1.17835e+06 +en ||| on the rule of law ||| 0.00613497 0.22993 8.48644e-07 3.97279e-12 2.718 ||| 0-0 ||| 163 1.17835e+06 +en ||| on the rule of ||| 0.0126582 0.22993 1.69729e-06 2.25343e-08 2.718 ||| 0-0 ||| 158 1.17835e+06 +en ||| on the rule ||| 0.0120482 0.22993 1.69729e-06 4.14507e-07 2.718 ||| 0-0 ||| 166 1.17835e+06 +en ||| on the run in ||| 1 0.605812 8.48644e-07 2.01448e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| on the run ||| 0.125 0.22993 8.48644e-07 5.4146e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on the same ||| 0.00114025 0.22993 8.48644e-07 4.10276e-06 2.718 ||| 0-0 ||| 877 1.17835e+06 +en ||| on the sea ||| 0.0526316 0.22993 8.48644e-07 1.52445e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| on the sidelines ||| 0.0147059 0.22993 8.48644e-07 1.83546e-08 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| on the situation in ||| 0.001321 0.605812 8.48644e-07 9.76888e-08 2.718 ||| 0-3 ||| 757 1.17835e+06 +en ||| on the situation ||| 0.00160256 0.22993 1.69729e-06 2.62572e-06 2.718 ||| 0-0 ||| 1248 1.17835e+06 +en ||| on the spot ||| 0.00571429 0.22993 8.48644e-07 6.98493e-08 2.718 ||| 0-0 ||| 175 1.17835e+06 +en ||| on the staff of ||| 1 0.22993 8.48644e-07 1.11701e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the staff ||| 0.0833333 0.22993 8.48644e-07 2.05469e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| on the statute ||| 0.015625 0.22993 8.48644e-07 5.14948e-08 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| on the stock exchange lists of ||| 1 0.22993 8.48644e-07 1.75636e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the stock exchange lists ||| 1 0.22993 8.48644e-07 3.23074e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the stock exchange ||| 0.0344828 0.22993 8.48644e-07 3.75667e-12 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| on the stock ||| 0.125 0.22993 8.48644e-07 1.3562e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on the subject in ||| 0.0227273 0.605812 8.48644e-07 1.02393e-07 2.718 ||| 0-3 ||| 44 1.17835e+06 +en ||| on the subject of the WTO ||| 1 0.22993 8.48644e-07 8.9098e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on the subject of the ||| 0.00655738 0.22993 1.69729e-06 9.18536e-09 2.718 ||| 0-0 ||| 305 1.17835e+06 +en ||| on the subject of ||| 0.00148478 0.22993 1.69729e-06 1.49619e-07 2.718 ||| 0-0 ||| 1347 1.17835e+06 +en ||| on the subject ||| 0.00202347 0.22993 4.24322e-06 2.75217e-06 2.718 ||| 0-0 ||| 2471 1.17835e+06 +en ||| on the table , ||| 0.00584795 0.22993 8.48644e-07 4.11629e-08 2.718 ||| 0-0 ||| 171 1.17835e+06 +en ||| on the table in ||| 0.04 0.605812 1.69729e-06 1.28418e-08 2.718 ||| 0-3 ||| 50 1.17835e+06 +en ||| on the table ||| 0.00295203 0.22993 3.39458e-06 3.45168e-07 2.718 ||| 0-0 ||| 1355 1.17835e+06 +en ||| on the territory of ||| 0.0169492 0.22993 1.69729e-06 8.56469e-09 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| on the territory ||| 0.0150376 0.22993 1.69729e-06 1.57543e-07 2.718 ||| 0-0 ||| 133 1.17835e+06 +en ||| on the values ||| 0.0181818 0.22993 8.48644e-07 1.6876e-07 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| on the way ||| 0.00256739 0.22993 1.69729e-06 1.09903e-05 2.718 ||| 0-0 ||| 779 1.17835e+06 +en ||| on the whole ||| 0.002886 0.22993 1.69729e-06 2.88422e-06 2.718 ||| 0-0 ||| 693 1.17835e+06 +en ||| on the word ||| 0.0588235 0.22993 8.48644e-07 5.19026e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on the work ||| 0.00226757 0.22993 8.48644e-07 3.22734e-06 2.718 ||| 0-0 ||| 441 1.17835e+06 +en ||| on the ||| 0.0167113 0.22993 0.0020342 0.00509849 2.718 ||| 0-0 ||| 143436 1.17835e+06 +en ||| on their guard ||| 0.5 0.22993 8.48644e-07 9.33736e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on their heads again , as it ||| 0.5 0.22993 8.48644e-07 3.50567e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on their heads again , as ||| 0.5 0.22993 8.48644e-07 1.97134e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on their heads again , ||| 0.5 0.22993 8.48644e-07 1.93185e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on their heads again ||| 0.5 0.22993 8.48644e-07 1.61994e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on their heads ||| 0.125 0.22993 8.48644e-07 2.80121e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on their own two ||| 0.2 0.22993 8.48644e-07 3.85786e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on their own ||| 0.00210526 0.22993 8.48644e-07 1.63192e-07 2.718 ||| 0-0 ||| 475 1.17835e+06 +en ||| on their way ||| 0.027027 0.22993 1.69729e-06 2.07501e-07 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| on their ||| 0.0059775 0.22993 1.4427e-05 9.62614e-05 2.718 ||| 0-0 ||| 2844 1.17835e+06 +en ||| on them in terms of ||| 1 0.605812 8.48644e-07 4.94545e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| on them in terms ||| 1 0.605812 8.48644e-07 9.09693e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| on them in ||| 0.0689655 0.605812 1.69729e-06 8.28802e-06 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| on them ||| 0.0191327 0.22993 1.27297e-05 0.000222769 2.718 ||| 0-0 ||| 784 1.17835e+06 +en ||| on themselves during ||| 1 0.226251 8.48644e-07 8.31284e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| on themselves in ||| 1 0.605812 8.48644e-07 1.32768e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| on these at ||| 0.5 0.184431 8.48644e-07 3.48156e-07 2.718 ||| 0-0 0-1 0-2 ||| 2 1.17835e+06 +en ||| on these issues in ||| 0.0526316 0.417871 8.48644e-07 1.00029e-08 2.718 ||| 0-0 0-3 ||| 19 1.17835e+06 +en ||| on these matters by the time ||| 1 0.22993 8.48644e-07 8.43132e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on these matters by the ||| 1 0.22993 8.48644e-07 5.13572e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on these matters by ||| 0.5 0.22993 8.48644e-07 8.36549e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on these matters ||| 0.003663 0.22993 8.48644e-07 1.5934e-08 2.718 ||| 0-0 ||| 273 1.17835e+06 +en ||| on these points , we also ||| 1 0.22993 8.48644e-07 7.64701e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on these points , we ||| 1 0.22993 8.48644e-07 1.51468e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on these points , ||| 0.05 0.22993 8.48644e-07 1.33425e-09 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| on these points ||| 0.0217391 0.22993 1.69729e-06 1.11882e-08 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| on these things ||| 0.0833333 0.22993 8.48644e-07 3.53992e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| on these ||| 0.00325262 0.22993 7.6378e-06 8.61295e-05 2.718 ||| 0-0 ||| 2767 1.17835e+06 +en ||| on third countries ||| 0.0208333 0.22993 8.48644e-07 1.47577e-09 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| on third ||| 0.0222222 0.22993 8.48644e-07 3.88667e-06 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| on this , ||| 0.00940439 0.22993 5.09187e-06 6.39931e-05 2.718 ||| 0-0 ||| 638 1.17835e+06 +en ||| on this - ||| 0.00900901 0.22993 8.48644e-07 2.02414e-06 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| on this achievement ||| 0.0357143 0.22993 8.48644e-07 1.29323e-08 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| on this among ||| 0.5 0.0422459 8.48644e-07 1.37698e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| on this at ||| 0.0238095 0.184382 8.48644e-07 1.58464e-06 2.718 ||| 0-0 0-1 0-2 ||| 42 1.17835e+06 +en ||| on this basis ||| 0.00215983 0.22993 8.48644e-07 3.18638e-07 2.718 ||| 0-0 ||| 463 1.17835e+06 +en ||| on this document ||| 0.0192308 0.22993 8.48644e-07 1.79764e-08 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| on this earth ||| 0.030303 0.22993 8.48644e-07 7.72717e-09 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| on this facility intended to ||| 1 0.22993 8.48644e-07 5.73549e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on this facility intended ||| 1 0.22993 8.48644e-07 6.45465e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on this facility ||| 1 0.22993 8.48644e-07 7.35154e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on this in the ||| 0.0204082 0.605812 8.48644e-07 1.22564e-06 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| on this in ||| 0.041958 0.605812 5.09187e-06 1.99643e-05 2.718 ||| 0-2 ||| 143 1.17835e+06 +en ||| on this issue for having supported the ||| 1 0.0286209 8.48644e-07 4.58372e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| on this issue for having supported ||| 1 0.0286209 8.48644e-07 7.46635e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| on this issue for having ||| 1 0.0286209 8.48644e-07 1.44138e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| on this issue for ||| 0.0454545 0.0286209 8.48644e-07 3.76438e-10 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| on this issue ||| 0.00059312 0.22993 1.69729e-06 4.06106e-07 2.718 ||| 0-0 ||| 3372 1.17835e+06 +en ||| on this matter , but that is ||| 1 0.22993 8.48644e-07 2.39209e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on this matter , but that ||| 1 0.22993 8.48644e-07 7.63245e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on this matter , but ||| 0.0333333 0.22993 8.48644e-07 4.53729e-11 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| on this matter , ||| 0.0025974 0.22993 8.48644e-07 6.63929e-08 2.718 ||| 0-0 ||| 385 1.17835e+06 +en ||| on this matter ||| 0.00141777 0.22993 2.54593e-06 5.56732e-07 2.718 ||| 0-0 ||| 2116 1.17835e+06 +en ||| on this occasion to ||| 0.0555556 0.22993 8.48644e-07 2.33165e-09 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| on this occasion ||| 0.00352734 0.22993 1.69729e-06 2.62402e-08 2.718 ||| 0-0 ||| 567 1.17835e+06 +en ||| on this on ||| 0.230769 0.22993 2.54593e-06 3.59045e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| on this one ||| 0.03125 0.22993 8.48644e-07 2.23659e-06 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| on this over ||| 0.166667 0.22993 8.48644e-07 2.58377e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on this point in ||| 0.047619 0.605812 8.48644e-07 1.74648e-08 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| on this question ||| 0.00387597 0.22993 8.48644e-07 4.43937e-07 2.718 ||| 0-0 ||| 258 1.17835e+06 +en ||| on this subject as early as ||| 1 0.22993 8.48644e-07 2.04199e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on this subject as early ||| 0.5 0.22993 8.48644e-07 2.00109e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on this subject as ||| 0.0588235 0.22993 8.48644e-07 2.95582e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| on this subject ||| 0.00169492 0.22993 2.54593e-06 2.89662e-07 2.718 ||| 0-0 ||| 1770 1.17835e+06 +en ||| on this to Parliament ||| 0.5 0.22993 8.48644e-07 2.73695e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on this to ||| 0.0666667 0.22993 8.48644e-07 4.76821e-05 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| on this ||| 0.0028413 0.22993 5.26159e-05 0.000536609 2.718 ||| 0-0 ||| 21821 1.17835e+06 +en ||| on those in ||| 0.0909091 0.22993 8.48644e-07 1.28717e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| on those players to ||| 1 0.22993 8.48644e-07 9.03055e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on those players ||| 1 0.22993 8.48644e-07 1.01629e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on those premises ||| 0.333333 0.22993 8.48644e-07 3.24731e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on those ||| 0.00502513 0.22993 4.24322e-06 6.01353e-05 2.718 ||| 0-0 ||| 995 1.17835e+06 +en ||| on through ||| 0.142857 0.13327 1.69729e-06 7.80987e-05 2.718 ||| 0-0 0-1 ||| 14 1.17835e+06 +en ||| on tightening things ||| 1 0.22993 8.48644e-07 8.53322e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on tightening ||| 0.142857 0.22993 8.48644e-07 2.07621e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on time , in ||| 0.333333 0.605812 8.48644e-07 6.04918e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| on time ||| 0.0045045 0.22993 1.69729e-06 0.000136341 2.718 ||| 0-0 ||| 444 1.17835e+06 +en ||| on to be ||| 0.2 0.22993 8.48644e-07 0.000133739 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on to become ||| 0.2 0.22993 8.48644e-07 2.10833e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on to both in ||| 1 0.605812 8.48644e-07 4.54795e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| on to doing more of the same ||| 1 0.22993 8.48644e-07 1.66153e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on to doing more of the ||| 1 0.22993 8.48644e-07 2.06478e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on to doing more of ||| 1 0.22993 8.48644e-07 3.36328e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on to doing more ||| 1 0.22993 8.48644e-07 6.1866e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on to doing ||| 1 0.22993 8.48644e-07 2.70903e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on to explain that ||| 1 0.22993 8.48644e-07 3.26476e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on to explain ||| 0.333333 0.22993 8.48644e-07 1.94082e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on to fight ||| 0.25 0.22993 8.48644e-07 4.06612e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on to find ||| 0.5 0.22993 8.48644e-07 2.45665e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on to look ||| 0.285714 0.22993 1.69729e-06 2.15113e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on to make ||| 0.0769231 0.22993 8.48644e-07 1.28241e-05 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| on to my ||| 0.0333333 0.22993 8.48644e-07 4.74578e-06 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| on to say that ||| 0.0357143 0.22993 8.48644e-07 1.18649e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| on to say ||| 0.0588235 0.22993 2.54593e-06 7.05336e-06 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| on to the first item on ||| 1 0.22993 8.48644e-07 6.16917e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| on to the ||| 0.00568182 0.22993 2.54593e-06 0.000453043 2.718 ||| 0-0 ||| 528 1.17835e+06 +en ||| on to you ||| 0.142857 0.22993 8.48644e-07 2.38263e-05 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| on to ||| 0.132333 0.22993 0.000164637 0.00737953 2.718 ||| 0-0 ||| 1466 1.17835e+06 +en ||| on today can hardly be overestimated ||| 1 0.22993 8.48644e-07 5.04461e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on today can hardly be ||| 1 0.22993 8.48644e-07 4.58601e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on today can hardly ||| 1 0.22993 8.48644e-07 2.53051e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on today can ||| 1 0.22993 8.48644e-07 1.11476e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on today ||| 0.0222222 0.22993 2.54593e-06 3.74797e-05 2.718 ||| 0-0 ||| 135 1.17835e+06 +en ||| on together , ||| 0.333333 0.22993 8.48644e-07 5.94829e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on together ||| 0.0909091 0.22993 8.48644e-07 4.98789e-05 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| on too ||| 0.0714286 0.22993 8.48644e-07 0.000113029 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| on top of one another , ||| 1 0.22993 8.48644e-07 3.7387e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on top of one another ||| 1 0.22993 8.48644e-07 3.13506e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on top of one ||| 1 0.22993 8.48644e-07 1.30031e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on top of ||| 0.0142045 0.22993 4.24322e-06 3.11976e-07 2.718 ||| 0-0 ||| 352 1.17835e+06 +en ||| on top ||| 0.0167464 0.22993 5.94051e-06 5.73864e-06 2.718 ||| 0-0 ||| 418 1.17835e+06 +en ||| on tourism and employment . ||| 0.5 0.22993 8.48644e-07 2.77345e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on tourism and employment ||| 0.25 0.22993 8.48644e-07 9.15633e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on tourism and ||| 0.0357143 0.22993 8.48644e-07 1.87246e-08 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| on tourism ||| 0.00588235 0.22993 8.48644e-07 1.49487e-06 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| on track , we must ||| 1 0.22993 8.48644e-07 6.8815e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on track , we ||| 1 0.22993 8.48644e-07 4.45231e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on track , ||| 0.0384615 0.22993 8.48644e-07 3.92195e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| on track in ||| 0.142857 0.605812 8.48644e-07 1.22355e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| on track ||| 0.0189573 0.22993 3.39458e-06 3.28872e-06 2.718 ||| 0-0 ||| 211 1.17835e+06 +en ||| on trade in ||| 0.0128205 0.605812 8.48644e-07 2.6912e-07 2.718 ||| 0-2 ||| 78 1.17835e+06 +en ||| on training ||| 0.0116279 0.22993 8.48644e-07 2.93161e-06 2.718 ||| 0-0 ||| 86 1.17835e+06 +en ||| on trial ||| 0.0188679 0.22993 8.48644e-07 1.04641e-06 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| on trust ||| 0.0185185 0.22993 8.48644e-07 1.58622e-06 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| on trying ||| 0.1 0.22993 8.48644e-07 9.56718e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| on turning ||| 0.0909091 0.146267 8.48644e-07 8.42111e-06 2.718 ||| 0-0 0-1 ||| 11 1.17835e+06 +en ||| on two ||| 0.00117096 0.22993 8.48644e-07 1.96326e-05 2.718 ||| 0-0 ||| 854 1.17835e+06 +en ||| on two-wheeled ||| 0.5 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on uncertain ground ||| 1 0.22993 8.48644e-07 7.38466e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on uncertain ||| 1 0.22993 8.48644e-07 6.31168e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on under ||| 0.0909091 0.217748 8.48644e-07 0.000469605 2.718 ||| 0-0 0-1 ||| 11 1.17835e+06 +en ||| on unemployment benefits ||| 0.25 0.22993 8.48644e-07 6.05124e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on unemployment ||| 0.0151515 0.22993 8.48644e-07 1.52809e-06 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| on up in ||| 0.5 0.605812 8.48644e-07 1.05377e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| on urgency ||| 0.04 0.22993 8.48644e-07 2.15095e-06 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| on us , ||| 0.0232558 0.22993 8.48644e-07 2.85451e-05 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| on us - definitely ||| 1 0.22993 8.48644e-07 4.67701e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on us - ||| 0.25 0.22993 8.48644e-07 9.02898e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on us at ||| 1 0.321886 8.48644e-07 7.71431e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| on us in ||| 0.125 0.605812 1.69729e-06 8.90536e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| on us to ||| 0.0238095 0.22993 8.48644e-07 2.12693e-05 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| on us ||| 0.0357143 0.22993 1.1881e-05 0.000239362 2.718 ||| 0-0 ||| 392 1.17835e+06 +en ||| on using ||| 0.00925926 0.22993 8.48644e-07 6.45286e-06 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| on various matters ||| 0.125 0.22993 8.48644e-07 2.37219e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on various ||| 0.00684932 0.22993 1.69729e-06 1.28227e-05 2.718 ||| 0-0 ||| 292 1.17835e+06 +en ||| on very ||| 0.138889 0.22993 4.24322e-06 0.000288967 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| on veterinary medicine ||| 1 0.22993 8.48644e-07 1.41182e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on veterinary ||| 0.166667 0.22993 8.48644e-07 2.07621e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| on via ||| 0.2 0.121508 8.48644e-07 3.38837e-06 2.718 ||| 0-0 0-1 ||| 5 1.17835e+06 +en ||| on vulnerable ||| 1 0.22993 8.48644e-07 8.38789e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on was ||| 0.125 0.22993 8.48644e-07 0.000260191 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| on ways to ||| 0.0588235 0.127333 8.48644e-07 2.25031e-07 2.718 ||| 0-0 0-2 ||| 17 1.17835e+06 +en ||| on we will ||| 1 0.22993 8.48644e-07 8.15627e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on we ||| 0.0833333 0.22993 8.48644e-07 0.00094279 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| on well ||| 0.25 0.22993 8.48644e-07 0.000131682 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on what are ||| 0.04 0.22993 8.48644e-07 1.768e-06 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| on what is actually quite ||| 1 0.22993 8.48644e-07 5.88098e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on what is actually ||| 0.666667 0.22993 1.69729e-06 1.50756e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| on what is still ||| 0.5 0.22993 8.48644e-07 2.75071e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| on what is ||| 0.0274914 0.22993 6.78915e-06 3.65203e-06 2.718 ||| 0-0 ||| 291 1.17835e+06 +en ||| on what must be ||| 0.25 0.22993 8.48644e-07 3.26396e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| on what must ||| 0.2 0.22993 8.48644e-07 1.80101e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on what ||| 0.00548847 0.22993 8.48644e-06 0.000116525 2.718 ||| 0-0 ||| 1822 1.17835e+06 +en ||| on when it comes to the ||| 1 0.0247351 8.48644e-07 4.10366e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| on when it comes to ||| 0.5 0.0247351 8.48644e-07 6.68438e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| on when it ||| 0.25 0.186331 8.48644e-07 8.79223e-06 2.718 ||| 0-0 0-1 ||| 4 1.17835e+06 +en ||| on when ||| 0.0416667 0.186331 1.69729e-06 0.000494412 2.718 ||| 0-0 0-1 ||| 48 1.17835e+06 +en ||| on where ||| 0.0208333 0.238856 1.69729e-06 0.00070729 2.718 ||| 0-0 0-1 ||| 96 1.17835e+06 +en ||| on whether it is ||| 0.0526316 0.22993 8.48644e-07 1.21595e-08 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| on whether it ||| 0.0555556 0.22993 8.48644e-07 3.87973e-07 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| on whether the ||| 0.0185185 0.22993 8.48644e-07 1.33937e-06 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| on whether ||| 0.00728597 0.22993 3.39458e-06 2.18168e-05 2.718 ||| 0-0 ||| 549 1.17835e+06 +en ||| on which I ||| 0.00456621 0.22993 8.48644e-07 4.99009e-06 2.718 ||| 0-0 ||| 219 1.17835e+06 +en ||| on which it is ||| 0.0208333 0.22993 8.48644e-07 3.93186e-07 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| on which it ||| 0.0175439 0.22993 8.48644e-07 1.25454e-05 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| on which the ESA ||| 1 0.22993 8.48644e-07 7.79574e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on which the ||| 0.00631579 0.22993 2.54593e-06 4.33096e-05 2.718 ||| 0-0 ||| 475 1.17835e+06 +en ||| on which we subject ||| 1 0.22993 8.48644e-07 4.32306e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on which we ||| 0.0106762 0.22993 2.54593e-06 8.00863e-06 2.718 ||| 0-0 ||| 281 1.17835e+06 +en ||| on which ||| 0.00928601 0.22993 3.8189e-05 0.000705463 2.718 ||| 0-0 ||| 4846 1.17835e+06 +en ||| on who caught the most fish 30 ||| 1 0.22993 8.48644e-07 2.37003e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on who caught the most fish ||| 1 0.22993 8.48644e-07 1.78198e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on who caught the most ||| 1 0.22993 8.48644e-07 5.38362e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on who caught the ||| 1 0.22993 8.48644e-07 1.24563e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on who caught ||| 1 0.22993 8.48644e-07 2.02899e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on who is ||| 0.0666667 0.22993 8.48644e-07 2.29569e-06 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| on who ||| 0.025641 0.22993 1.69729e-06 7.32487e-05 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| on whom ||| 0.0212766 0.22993 8.48644e-07 5.53102e-06 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| on whose ||| 0.0352941 0.22993 2.54593e-06 6.54421e-06 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| on with his evil ||| 1 0.141737 8.48644e-07 2.73502e-12 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| on with his ||| 0.333333 0.141737 8.48644e-07 2.9096e-07 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| on with illegal ||| 1 0.22993 8.48644e-07 1.72061e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on with it ||| 0.0243902 0.22993 8.48644e-07 9.44382e-06 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| on with our ||| 0.111111 0.22993 8.48644e-07 7.32534e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| on with ||| 0.0836653 0.141737 1.78215e-05 0.000968253 2.718 ||| 0-0 0-1 ||| 251 1.17835e+06 +en ||| on within ||| 0.25 0.299563 3.39458e-06 0.000920733 2.718 ||| 0-0 0-1 ||| 16 1.17835e+06 +en ||| on without further ||| 0.2 0.22993 8.48644e-07 8.87034e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on without ||| 0.0555556 0.22993 8.48644e-07 1.83537e-05 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| on women ||| 0.00355872 0.22993 8.48644e-07 9.86615e-06 2.718 ||| 0-0 ||| 281 1.17835e+06 +en ||| on work ||| 0.015873 0.22993 8.48644e-07 5.25696e-05 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| on works ||| 0.0714286 0.22993 8.48644e-07 3.4382e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| on yesterday ||| 0.2 0.22993 8.48644e-07 1.97655e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| on you , ||| 0.0192308 0.22993 8.48644e-07 3.19768e-05 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| on you to provide them ||| 1 0.22993 8.48644e-07 1.89051e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on you to provide ||| 1 0.22993 8.48644e-07 7.04782e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on you to ||| 0.0212766 0.22993 8.48644e-07 2.38263e-05 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| on you ||| 0.016129 0.22993 2.54593e-06 0.000268138 2.718 ||| 0-0 ||| 186 1.17835e+06 +en ||| on your fork ||| 1 0.22993 8.48644e-07 8.50083e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| on your part ||| 0.0243902 0.22993 8.48644e-07 2.53367e-08 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| on your ||| 0.00527983 0.22993 4.24322e-06 2.12521e-05 2.718 ||| 0-0 ||| 947 1.17835e+06 +en ||| on ||| 0.234634 0.22993 0.0911537 0.0830484 2.718 ||| 0-0 ||| 457781 1.17835e+06 +en ||| on-going ||| 0.00662252 0.180851 8.48644e-07 3.47e-05 2.718 ||| 0-0 ||| 151 1.17835e+06 +en ||| on-line ||| 0.00657895 0.347222 8.48644e-07 6.8e-05 2.718 ||| 0-0 ||| 152 1.17835e+06 +en ||| on-the-job ||| 0.111111 0.222222 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| once , at ||| 0.5 0.321886 8.48644e-07 1.95206e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| once , that at ||| 1 0.321886 8.48644e-07 3.28367e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| once again , in ||| 0.027027 0.605812 8.48644e-07 1.30317e-08 2.718 ||| 0-3 ||| 37 1.17835e+06 +en ||| once again , on ||| 0.0333333 0.22993 8.48644e-07 2.34367e-09 2.718 ||| 0-3 ||| 30 1.17835e+06 +en ||| once again amongst ||| 1 0.050508 8.48644e-07 2.80182e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| once again been taking ||| 1 0.0153333 8.48644e-07 1.36071e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| once again during ||| 0.2 0.226251 8.48644e-07 6.84198e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| once again in ||| 0.0483871 0.605812 5.09187e-06 1.09276e-07 2.718 ||| 0-2 ||| 124 1.17835e+06 +en ||| once again on ||| 0.030303 0.22993 2.54593e-06 1.96526e-08 2.718 ||| 0-2 ||| 99 1.17835e+06 +en ||| once again ||| 8.8269e-05 0.0058612 8.48644e-07 6.21672e-08 2.718 ||| 0-0 ||| 11329 1.17835e+06 +en ||| once and for all ||| 0.000683527 0.0286209 8.48644e-07 2.78662e-10 2.718 ||| 0-2 ||| 1463 1.17835e+06 +en ||| once and for ||| 0.00239808 0.0286209 2.54593e-06 5.8971e-08 2.718 ||| 0-2 ||| 1251 1.17835e+06 +en ||| once at ||| 0.4 0.321886 1.69729e-06 1.63688e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| once before , in ||| 0.25 0.605812 8.48644e-07 5.63587e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| once called ||| 0.0769231 0.0058612 8.48644e-07 1.86835e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| once for ||| 0.0909091 0.0286209 8.48644e-07 4.70793e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| once found in ||| 1 0.605812 8.48644e-07 4.13446e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| once held in ||| 1 0.605812 8.48644e-07 4.82039e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| once in ||| 0.0496894 0.605812 6.78915e-06 0.000188961 2.718 ||| 0-1 ||| 161 1.17835e+06 +en ||| once it is perverted to ||| 0.5 0.0247351 8.48644e-07 2.56421e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| once it is ||| 0.0125 0.0069542 8.48644e-07 9.29183e-09 2.718 ||| 0-0 0-1 ||| 80 1.17835e+06 +en ||| once it ||| 0.00438596 0.0069542 8.48644e-07 2.96474e-07 2.718 ||| 0-0 0-1 ||| 228 1.17835e+06 +en ||| once more as ||| 0.166667 0.066968 8.48644e-07 1.68095e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| once more call to ||| 0.5 0.0247351 8.48644e-07 5.83126e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| once more here at ||| 1 0.321886 8.48644e-07 7.58021e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| once more on ||| 0.117647 0.22993 1.69729e-06 7.76079e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| once more to ||| 0.0210526 0.0247351 1.69729e-06 2.62669e-08 2.718 ||| 0-2 ||| 95 1.17835e+06 +en ||| once more within ||| 1 0.369196 8.48644e-07 1.03604e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| once more ||| 0.00165426 0.0042952 1.69729e-06 1.36141e-07 2.718 ||| 0-1 ||| 1209 1.17835e+06 +en ||| once one of ||| 0.166667 0.0116562 8.48644e-07 2.32585e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| once prevailed in ||| 0.25 0.605812 8.48644e-07 1.22825e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| once said way back in history ||| 0.25 0.605812 8.48644e-07 4.05656e-18 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| once said way back in ||| 0.25 0.605812 8.48644e-07 1.12682e-13 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| once upon a time in ||| 0.5 0.605812 8.48644e-07 3.26165e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| once upon ||| 0.4375 0.114601 5.94051e-06 3.61692e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| once we have achieved ||| 0.5 0.0058612 8.48644e-07 2.44181e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| once we have ||| 0.00414938 0.0058612 8.48644e-07 1.45954e-08 2.718 ||| 0-0 ||| 241 1.17835e+06 +en ||| once we ||| 0.00398406 0.0058612 8.48644e-07 1.22037e-06 2.718 ||| 0-0 ||| 251 1.17835e+06 +en ||| once were ||| 0.0909091 0.0058612 8.48644e-07 1.92576e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| once ||| 0.00226606 0.0058612 1.4427e-05 0.0001075 2.718 ||| 0-0 ||| 7502 1.17835e+06 +en ||| one ' s ||| 0.0178571 0.0025338 8.48644e-07 1.06246e-09 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| one ' ||| 0.0126582 0.0025338 8.48644e-07 5.58515e-07 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| one 's head in ||| 1 0.605812 8.48644e-07 2.65009e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one 's say in the EU , ||| 1 0.605812 8.48644e-07 1.26913e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one 's say in the EU ||| 1 0.605812 8.48644e-07 1.06421e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one 's say in the ||| 1 0.605812 8.48644e-07 2.1508e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one 's say in ||| 1 0.605812 8.48644e-07 3.50339e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one , I ||| 0.0769231 0.0060084 8.48644e-07 1.20779e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| one , and we shall continue ||| 1 0.0025338 8.48644e-07 3.48756e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| one , and we shall ||| 1 0.0025338 8.48644e-07 1.50716e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| one , and we ||| 0.125 0.0025338 8.48644e-07 2.75733e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| one , and ||| 0.00363636 0.0025338 8.48644e-07 2.42887e-07 2.718 ||| 0-0 ||| 275 1.17835e+06 +en ||| one , either in this Chamber ||| 0.5 0.605812 8.48644e-07 3.37706e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| one , either in this ||| 0.5 0.605812 8.48644e-07 1.28405e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| one , either in ||| 0.5 0.605812 8.48644e-07 1.98727e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| one , in ||| 0.0666667 0.605812 2.54593e-06 0.00022953 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| one , there is ||| 0.333333 0.0117359 8.48644e-07 1.74694e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| one , there ||| 0.333333 0.0117359 8.48644e-07 5.57396e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| one , using ||| 1 0.0119063 8.48644e-07 3.18114e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| one , ||| 0.00116279 0.0025338 1.69729e-06 1.93908e-05 2.718 ||| 0-0 ||| 1720 1.17835e+06 +en ||| one - in ||| 0.125 0.605812 8.48644e-07 7.26017e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| one I have ||| 0.0416667 0.0060084 8.48644e-07 1.21127e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| one I ||| 0.01 0.0060084 8.48644e-07 1.01278e-05 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| one Paragraph of ||| 1 0.0116562 8.48644e-07 3.97873e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| one about ||| 0.0185185 0.0401564 8.48644e-07 1.19459e-05 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| one after the other ||| 0.0263158 0.0144723 8.48644e-07 8.79785e-11 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| one after the ||| 0.0833333 0.0144723 8.48644e-07 6.79108e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| one after ||| 0.016129 0.0144723 8.48644e-07 1.10619e-06 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| one and with which ||| 1 0.0535436 8.48644e-07 5.17055e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| one and with ||| 1 0.0535436 8.48644e-07 6.08687e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| one another , each of them ||| 0.5 0.0009111 8.48644e-07 2.48222e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| one another , each of ||| 0.5 0.0009111 8.48644e-07 9.25373e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| one another , each ||| 0.5 0.0009111 8.48644e-07 1.70218e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| one another , ||| 0.00952381 0.0009111 8.48644e-07 6.06405e-09 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| one another in ||| 0.181818 0.605812 5.09187e-06 4.64046e-07 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| one another on ||| 0.2 0.22993 1.69729e-06 8.34557e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| one another ||| 0.00170068 0.0009111 8.48644e-07 5.08496e-08 2.718 ||| 0-1 ||| 588 1.17835e+06 +en ||| one area in which ||| 0.0212766 0.605812 8.48644e-07 6.78998e-09 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| one area in ||| 0.011236 0.605812 8.48644e-07 7.99329e-07 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| one at all as far as ||| 0.5 0.321886 8.48644e-07 5.60084e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| one at all as far ||| 0.5 0.321886 8.48644e-07 5.48865e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| one at all as ||| 0.5 0.321886 8.48644e-07 8.03962e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| one at all ||| 0.125 0.321886 8.48644e-07 7.87858e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| one at ||| 0.191011 0.321886 1.4427e-05 0.000166728 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| one available in ||| 0.5 0.605812 8.48644e-07 6.12248e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| one before us ||| 0.037037 0.0175291 8.48644e-07 4.09523e-09 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| one before ||| 0.0222222 0.0175291 8.48644e-07 1.42087e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| one by one ||| 0.00862069 0.0468744 8.48644e-07 1.47787e-07 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| one by ||| 0.011976 0.0468744 1.69729e-06 3.54576e-05 2.718 ||| 0-1 ||| 167 1.17835e+06 +en ||| one can say , during ||| 0.5 0.226251 8.48644e-07 4.08553e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| one can ||| 0.00178571 0.0025338 8.48644e-07 4.83621e-07 2.718 ||| 0-0 ||| 560 1.17835e+06 +en ||| one carried out by ||| 0.5 0.0468744 8.48644e-07 4.00252e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| one committed in ||| 1 0.605812 8.48644e-07 1.59365e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| one concerns ||| 0.0217391 0.0025338 8.48644e-07 1.21787e-08 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| one day become a ||| 0.25 0.219193 8.48644e-07 1.80977e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| one day become ||| 0.0625 0.219193 8.48644e-07 4.08289e-09 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| one day in ||| 0.153846 0.605812 1.69729e-06 4.93109e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| one during ||| 0.333333 0.226251 8.48644e-07 1.20509e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| one example from this building here ||| 1 0.0308834 8.48644e-07 3.5266e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| one example from this building ||| 1 0.0308834 8.48644e-07 1.73913e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| one example from this ||| 1 0.0308834 8.48644e-07 2.98306e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| one example from ||| 0.1 0.0308834 8.48644e-07 4.61675e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| one example of this ||| 0.0125 0.0116562 8.48644e-07 1.06909e-10 2.718 ||| 0-2 ||| 80 1.17835e+06 +en ||| one example of ||| 0.00492611 0.0116562 8.48644e-07 1.65458e-08 2.718 ||| 0-2 ||| 203 1.17835e+06 +en ||| one for ||| 0.0125 0.0286209 4.24322e-06 4.79537e-05 2.718 ||| 0-1 ||| 400 1.17835e+06 +en ||| one form or another in ||| 1 0.605812 8.48644e-07 2.41504e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| one further amendment in ||| 1 0.605812 8.48644e-07 5.92543e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one he presented to ||| 1 0.0247351 8.48644e-07 8.05663e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one illustration of this ||| 0.25 0.0116562 8.48644e-07 1.17523e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| one illustration of ||| 0.142857 0.0116562 8.48644e-07 1.81885e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| one in Amendment No 1 ||| 1 0.605812 8.48644e-07 2.26597e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| one in Amendment No ||| 0.5 0.605812 8.48644e-07 3.55726e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| one in Amendment ||| 0.5 0.605812 8.48644e-07 5.25444e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| one in relation to ||| 0.5 0.605812 8.48644e-07 4.16106e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| one in relation ||| 1 0.605812 8.48644e-07 4.6828e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| one in the ||| 0.0173913 0.605812 1.69729e-06 0.000118161 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| one in which ||| 0.0273973 0.605812 3.39458e-06 1.63496e-05 2.718 ||| 0-1 ||| 146 1.17835e+06 +en ||| one in ||| 0.12636 0.605812 0.000128145 0.0019247 2.718 ||| 0-1 ||| 1195 1.17835e+06 +en ||| one jumps up in ||| 1 0.605812 8.48644e-07 2.62568e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one knows in advance ||| 1 0.605812 8.48644e-07 1.41999e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| one knows in ||| 1 0.605812 8.48644e-07 4.02263e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| one man get in the way once ||| 1 0.605812 8.48644e-07 2.90267e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one man get in the way ||| 1 0.605812 8.48644e-07 7.09352e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one man get in the ||| 1 0.605812 8.48644e-07 3.29074e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one man get in ||| 1 0.605812 8.48644e-07 5.36023e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one mind when it ||| 0.333333 0.142731 8.48644e-07 1.11154e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| one mind when ||| 0.333333 0.142731 8.48644e-07 6.25048e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| one moment in ||| 0.333333 0.605812 8.48644e-07 3.47794e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| one occasion , ||| 0.0294118 0.0025338 8.48644e-07 9.48211e-10 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| one occasion during ||| 0.333333 0.226251 8.48644e-07 5.89291e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| one occasion ||| 0.00704225 0.0025338 8.48644e-07 7.95114e-09 2.718 ||| 0-0 ||| 142 1.17835e+06 +en ||| one of , in ||| 1 0.605812 8.48644e-07 1.24782e-05 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one of our particular problems in ||| 1 0.605812 8.48644e-07 1.192e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| one of the most significant documents in ||| 1 0.0116562 8.48644e-07 4.68565e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| one of the most significant documents ||| 1 0.0116562 8.48644e-07 2.1891e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| one of the most significant ||| 0.0434783 0.0116562 8.48644e-07 8.68689e-14 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| one of the most ||| 0.00194175 0.0116562 8.48644e-07 1.50814e-09 2.718 ||| 0-1 ||| 515 1.17835e+06 +en ||| one of the ||| 0.000120286 0.0116562 1.69729e-06 3.48945e-06 2.718 ||| 0-1 ||| 16627 1.17835e+06 +en ||| one of them in ||| 0.0909091 0.605812 8.48644e-07 2.80672e-07 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| one of ||| 0.00141661 0.0116562 2.80053e-05 5.6839e-05 2.718 ||| 0-1 ||| 23295 1.17835e+06 +en ||| one on from time ||| 1 0.22993 8.48644e-07 9.15138e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| one on from ||| 1 0.22993 8.48644e-07 5.57433e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| one on which we ||| 0.333333 0.22993 8.48644e-07 3.338e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| one on which ||| 0.0212766 0.22993 8.48644e-07 2.94037e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| one on ||| 0.0187668 0.22993 5.94051e-06 0.000346146 2.718 ||| 0-1 ||| 373 1.17835e+06 +en ||| one or ||| 0.000923361 0.0025338 8.48644e-07 1.85901e-07 2.718 ||| 0-0 ||| 1083 1.17835e+06 +en ||| one out at ||| 1 0.321886 8.48644e-07 6.38636e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| one over ||| 0.0769231 0.157937 8.48644e-07 1.6702e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| one particular action that might result in ||| 1 0.605812 8.48644e-07 1.21775e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| one person in ||| 0.0555556 0.605812 8.48644e-07 2.47902e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| one personally associated in ||| 1 0.605812 8.48644e-07 3.85586e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one place to ||| 0.0384615 0.0247351 8.48644e-07 1.76319e-07 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| one question which will be addressed in ||| 1 0.605812 8.48644e-07 1.13668e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| one reason why ||| 0.0102041 0.0025338 8.48644e-07 9.37492e-12 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| one reason ||| 0.00456621 0.0025338 8.48644e-07 3.80321e-08 2.718 ||| 0-0 ||| 219 1.17835e+06 +en ||| one that could be taken ||| 1 0.0042106 8.48644e-07 8.05065e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| one that is in place here and ||| 1 0.605812 8.48644e-07 3.87897e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one that is in place here ||| 1 0.605812 8.48644e-07 3.09676e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one that is in place ||| 1 0.605812 8.48644e-07 1.52715e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| one that is in ||| 0.142857 0.605812 8.48644e-07 1.01472e-06 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| one that is ||| 0.00341297 0.0017499 8.48644e-07 1.36534e-07 2.718 ||| 0-1 ||| 293 1.17835e+06 +en ||| one that ||| 0.00298359 0.0025338 5.09187e-06 2.73519e-06 2.718 ||| 0-0 ||| 2011 1.17835e+06 +en ||| one thing and someone else another as ||| 1 0.066968 8.48644e-07 5.33283e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| one thing in common ||| 0.0322581 0.605812 8.48644e-07 1.62237e-10 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| one thing in ||| 0.0322581 0.605812 1.69729e-06 7.02324e-07 2.718 ||| 0-2 ||| 62 1.17835e+06 +en ||| one thing one ||| 1 0.0025338 8.48644e-07 2.47299e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| one thing we welcome in ||| 1 0.605812 8.48644e-07 8.77827e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| one thing ||| 0.00140515 0.0025338 2.54593e-06 5.93327e-08 2.718 ||| 0-0 ||| 2135 1.17835e+06 +en ||| one thinks of ||| 0.05 0.0116562 8.48644e-07 6.93436e-10 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| one to be active in ||| 1 0.605812 8.48644e-07 1.24909e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| one to ||| 0.0140449 0.0247351 4.24322e-06 0.000117155 2.718 ||| 0-1 ||| 356 1.17835e+06 +en ||| one town to another in Bosnia ||| 1 0.605812 8.48644e-07 2.4419e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| one town to another in ||| 1 0.605812 8.48644e-07 5.19552e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| one voice , in ||| 0.5 0.605812 8.48644e-07 9.98455e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| one we are experiencing ||| 0.0555556 0.0261115 8.48644e-07 1.80915e-11 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| one when ||| 0.0909091 0.142731 8.48644e-07 2.48134e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| one where ||| 0.0944882 0.247783 1.01837e-05 3.54972e-05 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| one which gave rise to ||| 1 0.0247351 8.48644e-07 1.04371e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| one which is in ||| 0.333333 0.605812 8.48644e-07 5.12414e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| one which was pushing ||| 1 0.0025338 8.48644e-07 5.7554e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| one which was ||| 0.0625 0.0025338 8.48644e-07 4.32737e-09 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| one which ||| 0.00326797 0.0025338 2.54593e-06 1.38122e-06 2.718 ||| 0-0 ||| 918 1.17835e+06 +en ||| one wishes to ||| 0.0526316 0.0247351 8.48644e-07 6.19752e-09 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| one wishes whenever one wishes , ||| 0.2 0.0380466 8.48644e-07 2.64367e-19 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| one wishes whenever one wishes ||| 0.2 0.0380466 8.48644e-07 2.21683e-18 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| one wishes whenever one ||| 0.2 0.0380466 8.48644e-07 4.1906e-14 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| one wishes whenever ||| 0.2 0.0380466 8.48644e-07 1.00542e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| one with ||| 0.015 0.0535436 2.54593e-06 4.85943e-05 2.718 ||| 0-1 ||| 200 1.17835e+06 +en ||| one would be in ||| 0.5 0.605812 8.48644e-07 2.04707e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| one would ||| 0.00588235 0.0025338 8.48644e-07 9.54251e-07 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| one ||| 0.00137789 0.0025338 9.08049e-05 0.0001626 2.718 ||| 0-0 ||| 77655 1.17835e+06 +en ||| one-day ||| 0.037037 0.0526316 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| ones , of ||| 0.25 0.0116562 8.48644e-07 3.59407e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| ones as ||| 0.0909091 0.066968 8.48644e-07 3.97533e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| ones at ||| 0.0769231 0.321886 8.48644e-07 8.84044e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| ones being situated in ||| 1 0.605812 8.48644e-07 2.49765e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ones in ||| 0.111111 0.605812 3.39458e-06 0.000102054 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| ones out , in ||| 0.5 0.605812 8.48644e-07 4.66174e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| ones where ||| 0.166667 0.247783 1.69729e-06 1.88217e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| oneself via ||| 1 0.0130862 8.48644e-07 3.3864e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ongoing brutalisation ||| 0.5 0.216817 8.48644e-07 1.9652e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| ongoing in ||| 0.157895 0.605812 2.54593e-06 1.64394e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| ongoing process of ||| 0.0526316 0.216817 8.48644e-07 1.14181e-08 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| ongoing process ||| 0.0188679 0.216817 8.48644e-07 2.10031e-07 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| ongoing supply of ||| 0.333333 0.216817 8.48644e-07 1.37552e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| ongoing supply ||| 0.333333 0.216817 8.48644e-07 2.53019e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| ongoing ||| 0.0053148 0.216817 1.10324e-05 0.0004913 2.718 ||| 0-0 ||| 2446 1.17835e+06 +en ||| online ||| 0.00616333 0.37885 3.39458e-06 0.0004437 2.718 ||| 0-0 ||| 649 1.17835e+06 +en ||| only a few have been through ||| 1 0.0366102 8.48644e-07 3.24827e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| only a year on ||| 0.5 0.22993 8.48644e-07 1.02192e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| only a ||| 0.000481 0.0015231 8.48644e-07 9.17194e-07 2.718 ||| 0-1 ||| 2079 1.17835e+06 +en ||| only about ||| 0.00389105 0.0401564 8.48644e-07 3.19026e-06 2.718 ||| 0-1 ||| 257 1.17835e+06 +en ||| only affect ||| 0.0188679 0.0481375 8.48644e-07 1.90897e-07 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| only as ||| 0.00980392 0.066968 2.54593e-06 2.00223e-05 2.718 ||| 0-1 ||| 306 1.17835e+06 +en ||| only at ||| 0.0159236 0.321886 4.24322e-06 4.45262e-05 2.718 ||| 0-1 ||| 314 1.17835e+06 +en ||| only be at ||| 1 0.321886 8.48644e-07 8.06944e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| only be laid down at ||| 1 0.321886 8.48644e-07 6.14027e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| only by ||| 0.00277008 0.0468744 1.69729e-06 9.46925e-06 2.718 ||| 0-1 ||| 722 1.17835e+06 +en ||| only close cooperation at European level ||| 1 0.321886 8.48644e-07 1.73956e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| only close cooperation at European ||| 1 0.321886 8.48644e-07 2.03362e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| only close cooperation at ||| 1 0.321886 8.48644e-07 6.08158e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| only comprises the participants in ||| 1 0.605812 8.48644e-07 7.97733e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| only during ||| 0.027027 0.226251 8.48644e-07 3.21831e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| only flies in ||| 0.166667 0.605812 8.48644e-07 2.41584e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| only for ||| 0.00135318 0.0286209 1.69729e-06 1.28064e-05 2.718 ||| 0-1 ||| 1478 1.17835e+06 +en ||| only from ||| 0.00409836 0.0308834 8.48644e-07 4.23546e-06 2.718 ||| 0-1 ||| 244 1.17835e+06 +en ||| only have to ||| 0.00909091 0.0247351 8.48644e-07 3.7419e-07 2.718 ||| 0-2 ||| 110 1.17835e+06 +en ||| only if ||| 0.00291121 0.0178573 1.69729e-06 1.29064e-06 2.718 ||| 0-1 ||| 687 1.17835e+06 +en ||| only in Austria ||| 0.5 0.605812 8.48644e-07 5.34569e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| only in doing ||| 0.2 0.605812 8.48644e-07 1.88693e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| only in its most ||| 1 0.605812 8.48644e-07 3.16504e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| only in its ||| 0.0416667 0.605812 8.48644e-07 7.32308e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| only in the ||| 0.00156986 0.605812 8.48644e-07 3.15559e-05 2.718 ||| 0-1 ||| 637 1.17835e+06 +en ||| only in ||| 0.0220212 0.605812 4.75241e-05 0.000514009 2.718 ||| 0-1 ||| 2543 1.17835e+06 +en ||| only inside ||| 0.0769231 0.188717 8.48644e-07 2.12825e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| only into one ||| 1 0.525896 8.48644e-07 1.02704e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| only into ||| 0.1 0.525896 1.69729e-06 2.4641e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| only look at ||| 0.0434783 0.321886 8.48644e-07 1.29794e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| only of ||| 0.00183486 0.0116562 8.48644e-07 1.51793e-05 2.718 ||| 0-1 ||| 545 1.17835e+06 +en ||| only on ||| 0.0152582 0.22993 1.10324e-05 9.24412e-05 2.718 ||| 0-1 ||| 852 1.17835e+06 +en ||| only partly meeting its obligations under ||| 1 0.205566 8.48644e-07 5.06311e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| only possible on ||| 0.25 0.22993 8.48644e-07 7.41471e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| only recently in ||| 0.166667 0.605812 8.48644e-07 3.49526e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| only reflect the degree ||| 1 0.0011669 8.48644e-07 1.51039e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| only reflect the ||| 0.333333 0.0011669 8.48644e-07 1.09053e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| only relatively recently got under ||| 0.5 0.205566 8.48644e-07 6.92985e-19 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| only result in ||| 0.0769231 0.605812 8.48644e-07 2.70625e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| only sure way for ||| 1 0.0286209 8.48644e-07 4.80889e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| only think of ||| 0.0588235 0.0116562 8.48644e-07 5.8061e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| only through ||| 0.00265957 0.0366102 8.48644e-07 1.04676e-06 2.718 ||| 0-1 ||| 376 1.17835e+06 +en ||| only to a ||| 0.0208333 0.0247351 8.48644e-07 1.38684e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| only to be tackled within ||| 1 0.369196 8.48644e-07 3.13992e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| only to ||| 0.000909091 0.0247351 1.69729e-06 3.12873e-05 2.718 ||| 0-1 ||| 2200 1.17835e+06 +en ||| only under ||| 0.0123457 0.205566 8.48644e-07 6.29414e-06 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| only upon ||| 0.0714286 0.114601 8.48644e-07 9.83869e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| only very briefly in ||| 1 0.605812 8.48644e-07 2.57543e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| only when ||| 0.00207469 0.142731 8.48644e-07 6.62662e-06 2.718 ||| 0-1 ||| 482 1.17835e+06 +en ||| only within ||| 0.0241935 0.369196 2.54593e-06 1.23406e-05 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| only ||| 2.74198e-05 5.36e-05 1.69729e-06 2.7e-06 2.718 ||| 0-0 ||| 72940 1.17835e+06 +en ||| onto a ||| 0.0416667 0.233333 8.48644e-07 8.86959e-06 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| onto anyone ||| 1 0.233333 8.48644e-07 9.58479e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| onto boats ||| 0.111111 0.233333 8.48644e-07 9.4047e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| onto the ||| 0.00276243 0.233333 8.48644e-07 1.22845e-05 2.718 ||| 0-0 ||| 362 1.17835e+06 +en ||| onto ||| 0.289809 0.233333 0.000154453 0.0002001 2.718 ||| 0-0 ||| 628 1.17835e+06 +en ||| onwards in ||| 1 0.605812 8.48644e-07 1.11289e-05 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| open , including at ||| 1 0.321886 8.48644e-07 8.02828e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| open at ||| 0.285714 0.321886 1.69729e-06 6.44832e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| open in ||| 0.025974 0.605812 1.69729e-06 7.44391e-05 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| open new prospects on all aspects ||| 0.5 0.22993 8.48644e-07 3.35875e-20 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| open new prospects on all ||| 0.5 0.22993 8.48644e-07 4.76419e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| open new prospects on ||| 0.5 0.22993 8.48644e-07 1.00821e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| open process in which ||| 0.5 0.605812 8.48644e-07 2.70321e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| open process in ||| 0.2 0.605812 8.48644e-07 3.18227e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| open question to ||| 0.5 0.0247351 8.48644e-07 3.74854e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| open the doors of ||| 0.125 0.0116562 8.48644e-07 1.60598e-12 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| open to ||| 0.00355619 0.0247351 4.24322e-06 4.53106e-06 2.718 ||| 0-1 ||| 1406 1.17835e+06 +en ||| open up ||| 0.00105042 0.0147069 8.48644e-07 1.11228e-07 2.718 ||| 0-1 ||| 952 1.17835e+06 +en ||| open-sea ||| 0.333333 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| opened in ||| 0.0714286 0.605812 2.54593e-06 1.19601e-05 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| opened up ||| 0.00189394 0.0147069 8.48644e-07 1.7871e-08 2.718 ||| 0-1 ||| 528 1.17835e+06 +en ||| opening in ||| 0.0909091 0.605812 8.48644e-07 1.2976e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| opening of ||| 0.0011325 0.0116562 8.48644e-07 3.832e-07 2.718 ||| 0-1 ||| 883 1.17835e+06 +en ||| openness in ||| 0.00854701 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| operate across ||| 0.0243902 0.274879 8.48644e-07 9.9839e-08 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| operate in this ||| 0.04 0.605812 8.48644e-07 1.4501e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| operate in ||| 0.0216867 0.605812 7.6378e-06 2.24426e-05 2.718 ||| 0-1 ||| 415 1.17835e+06 +en ||| operate on ||| 0.00869565 0.22993 8.48644e-07 4.03615e-06 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| operate particularly in ||| 0.5 0.605812 8.48644e-07 4.006e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| operate throughout ||| 0.0666667 0.309047 8.48644e-07 1.40979e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| operate to the ||| 0.1 0.0247351 8.48644e-07 8.38651e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| operate to ||| 0.047619 0.0247351 8.48644e-07 1.36606e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| operate two policies in ||| 1 0.605812 8.48644e-07 3.49627e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| operate with ||| 0.0172414 0.0535436 8.48644e-07 5.66623e-07 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| operated by means of ||| 0.25 0.0468744 8.48644e-07 3.37035e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| operated by means ||| 0.25 0.0468744 8.48644e-07 6.19959e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| operated by ||| 0.0125 0.0468744 8.48644e-07 9.78316e-08 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| operated in ||| 0.0263158 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| operates at ||| 0.142857 0.321886 1.69729e-06 4.76024e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| operates in the ||| 0.0344828 0.605812 8.48644e-07 3.3736e-07 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| operates in ||| 0.0235294 0.605812 1.69729e-06 5.4952e-06 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| operates on ||| 0.03125 0.22993 8.48644e-07 9.88276e-07 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| operating across ||| 0.0769231 0.274879 8.48644e-07 9.24435e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| operating at those airports ||| 1 0.321886 8.48644e-07 7.55998e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| operating at those ||| 1 0.321886 8.48644e-07 1.30345e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| operating at ||| 0.1 0.321886 4.24322e-06 1.80009e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| operating behind closed ||| 0.5 0.0374138 8.48644e-07 6.063e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| operating behind ||| 0.25 0.0374138 8.48644e-07 1.04715e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| operating from ||| 0.111111 0.0308834 8.48644e-07 1.7123e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| operating in a ||| 0.0277778 0.605812 8.48644e-07 9.21097e-07 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| operating in the field ||| 0.142857 0.605812 8.48644e-07 1.86384e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| operating in the ||| 0.0037037 0.605812 8.48644e-07 1.27573e-06 2.718 ||| 0-1 ||| 270 1.17835e+06 +en ||| operating in ||| 0.0190476 0.605812 1.01837e-05 2.07801e-05 2.718 ||| 0-1 ||| 630 1.17835e+06 +en ||| operating on ||| 0.0114943 0.22993 8.48644e-07 3.73718e-06 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| operating under ||| 0.0175439 0.205566 8.48644e-07 2.54457e-07 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| operating within ||| 0.011236 0.369196 8.48644e-07 4.98902e-07 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| operating ||| 0.000410004 0.0075925 8.48644e-07 1.63e-05 2.718 ||| 0-0 ||| 2439 1.17835e+06 +en ||| operation at ||| 0.111111 0.321886 8.48644e-07 2.27611e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| operation consisting ||| 0.0833333 0.0149573 8.48644e-07 2.7312e-10 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| operation down in ||| 0.5 0.605812 8.48644e-07 1.83428e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| operation in a third country , again ||| 0.5 0.605812 8.48644e-07 1.35289e-18 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| operation in a third country , ||| 0.5 0.605812 8.48644e-07 2.33942e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| operation in a third country ||| 0.5 0.605812 8.48644e-07 1.9617e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| operation in a third ||| 0.5 0.605812 8.48644e-07 5.45068e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| operation in a ||| 0.2 0.605812 8.48644e-07 1.16468e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| operation in ||| 0.0454545 0.605812 3.39458e-06 2.62753e-05 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| operation of ||| 0.00112994 0.0116562 8.48644e-07 7.75945e-07 2.718 ||| 0-1 ||| 885 1.17835e+06 +en ||| operations , with regard to ||| 1 0.0535436 8.48644e-07 2.1199e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| operations , with regard ||| 1 0.0535436 8.48644e-07 2.38571e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| operations , with ||| 1 0.0535436 8.48644e-07 3.50375e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| operations at ||| 0.0769231 0.321886 8.48644e-07 1.00805e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| operations for the ||| 0.5 0.0286209 8.48644e-07 1.77994e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| operations for ||| 0.0666667 0.0286209 8.48644e-07 2.89931e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| operations get under ||| 0.25 0.205566 8.48644e-07 6.22992e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| operations in cases ||| 1 0.605812 8.48644e-07 1.49068e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| operations in ||| 0.0234375 0.605812 2.54593e-06 1.16369e-05 2.718 ||| 0-1 ||| 128 1.17835e+06 +en ||| operations whenever ||| 0.2 0.0380466 8.48644e-07 1.14912e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| operations within ||| 0.0714286 0.369196 8.48644e-07 2.79385e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| operators for ||| 0.2 0.0286209 8.48644e-07 1.49568e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| operators in ||| 0.0123457 0.605812 8.48644e-07 6.00315e-06 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| opinion , and in ||| 0.25 0.605812 8.48644e-07 1.69276e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| opinion , in relation to ||| 1 0.605812 8.48644e-07 2.92163e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| opinion , in relation ||| 1 0.605812 8.48644e-07 3.28797e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| opinion , in ||| 0.0588235 0.605812 1.69729e-06 1.35141e-05 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| opinion , which appears on ||| 1 0.22993 8.48644e-07 1.07769e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| opinion - and a unanimous one at ||| 1 0.321886 8.48644e-07 3.42762e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| opinion about ||| 0.0151515 0.0401564 8.48644e-07 7.03341e-07 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| opinion as I am on ||| 0.5 0.22993 8.48644e-07 1.87927e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| opinion at ||| 0.0217391 0.321886 8.48644e-07 9.81649e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| opinion in individual ||| 1 0.605812 8.48644e-07 1.60236e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| opinion in ||| 0.0364372 0.605812 7.6378e-06 0.000113321 2.718 ||| 0-1 ||| 247 1.17835e+06 +en ||| opinion into ||| 0.4 0.525896 1.69729e-06 5.43249e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| opinion of the Committee on Women ' ||| 1 0.22993 8.48644e-07 4.63489e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| opinion of the Committee on Women ||| 0.5 0.22993 8.48644e-07 1.34935e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| opinion of the Committee on ||| 0.0019084 0.22993 1.69729e-06 1.03796e-11 2.718 ||| 0-4 ||| 1048 1.17835e+06 +en ||| opinion of ||| 0.00052356 0.0116562 8.48644e-07 3.34652e-06 2.718 ||| 0-1 ||| 1910 1.17835e+06 +en ||| opinion on ||| 0.00717489 0.22993 6.78915e-06 2.03801e-05 2.718 ||| 0-1 ||| 1115 1.17835e+06 +en ||| opinion quite clearly in ||| 1 0.605812 8.48644e-07 8.0677e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| opinion that were expressed in ||| 0.5 0.605812 8.48644e-07 3.31923e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| opinion within ||| 0.105263 0.369196 1.69729e-06 2.72068e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| opinion ||| 0.000250853 0.000357 4.24322e-06 4.8e-06 2.718 ||| 0-0 ||| 19932 1.17835e+06 +en ||| opinions on ||| 0.00526316 0.22993 8.48644e-07 1.82706e-06 2.718 ||| 0-1 ||| 190 1.17835e+06 +en ||| opportunities in ||| 0.0201613 0.605812 4.24322e-06 1.57929e-05 2.718 ||| 0-1 ||| 248 1.17835e+06 +en ||| opportunities to ||| 0.00142045 0.0247351 8.48644e-07 9.61304e-07 2.718 ||| 0-1 ||| 704 1.17835e+06 +en ||| opportunity afforded by ||| 0.0416667 0.0468744 8.48644e-07 2.20382e-11 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| opportunity at ||| 0.0512821 0.321886 1.69729e-06 7.19636e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| opportunity for ||| 0.00115808 0.0286209 1.69729e-06 2.06979e-06 2.718 ||| 0-1 ||| 1727 1.17835e+06 +en ||| opportunity in ||| 0.0338983 0.605812 3.39458e-06 8.30744e-05 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| opportunity of ||| 0.00555556 0.0116562 3.39458e-06 2.4533e-06 2.718 ||| 0-1 ||| 720 1.17835e+06 +en ||| opportunity on ||| 0.2 0.22993 1.69729e-06 1.49404e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| opportunity to establish the necessary ||| 1 0.0247351 8.48644e-07 6.09453e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| opportunity to establish the ||| 0.2 0.0247351 8.48644e-07 2.36865e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| opportunity to establish ||| 0.027027 0.0247351 8.48644e-07 3.85825e-10 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| opportunity to have one 's say in ||| 1 0.605812 8.48644e-07 6.69795e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| opportunity to ||| 0.000449944 0.0247351 3.39458e-06 5.05668e-06 2.718 ||| 0-1 ||| 8890 1.17835e+06 +en ||| oppose on ||| 0.5 0.22993 8.48644e-07 4.48461e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| opposed on ||| 0.25 0.22993 8.48644e-07 1.73571e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| opposed ||| 0.000318878 0.0002365 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 3136 1.17835e+06 +en ||| opposite effect of ||| 0.25 0.0116562 8.48644e-07 9.64452e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| opposite numbers in ||| 0.1 0.605812 8.48644e-07 4.78719e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| opposite situation has developed in Latvia . ||| 0.5 0.605812 8.48644e-07 2.70024e-23 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| opposite situation has developed in Latvia ||| 0.5 0.605812 8.48644e-07 8.91461e-21 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| opposite situation has developed in ||| 0.5 0.605812 8.48644e-07 1.78292e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| opposition in the various Member States , ||| 1 0.605812 8.48644e-07 3.28602e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| opposition in the various Member States ||| 1 0.605812 8.48644e-07 2.75546e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| opposition in the various Member ||| 1 0.605812 8.48644e-07 5.77423e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| opposition in the various ||| 1 0.605812 8.48644e-07 1.12056e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| opposition in the ||| 0.0322581 0.605812 8.48644e-07 7.25749e-07 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| opposition in ||| 0.0136054 0.605812 1.69729e-06 1.18216e-05 2.718 ||| 0-1 ||| 147 1.17835e+06 +en ||| opposition parties in ||| 0.125 0.605812 8.48644e-07 8.67705e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| opt in to ||| 0.25 0.605812 8.48644e-07 4.26744e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| opt in ||| 0.0571429 0.605812 1.69729e-06 4.80252e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| opt to ||| 0.0434783 0.0247351 8.48644e-07 2.92326e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| opt-out from ||| 0.0526316 0.0308834 8.48644e-07 4.37587e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| opt-out in ||| 0.181818 0.605812 1.69729e-06 5.31048e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| opted in ||| 0.1 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| opted with ||| 1 0.0535436 8.48644e-07 6.76216e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| opting out ' in ||| 1 0.605812 8.48644e-07 2.43027e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| option before ||| 0.25 0.0175291 8.48644e-07 1.41133e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| option for ||| 0.00819672 0.0286209 8.48644e-07 4.76315e-07 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| option in view ||| 0.5 0.605812 8.48644e-07 1.72691e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| option in ||| 0.129032 0.605812 3.39458e-06 1.91177e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| option made within ||| 1 0.369196 8.48644e-07 9.61491e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| options : having identified these excesses ||| 1 0.0065553 8.48644e-07 2.77563e-26 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| options : having identified these ||| 1 0.0065553 8.48644e-07 1.26165e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| options : having identified ||| 1 0.0065553 8.48644e-07 1.21652e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| options : having ||| 1 0.0065553 8.48644e-07 3.15979e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| options are decided on ||| 1 0.22993 8.48644e-07 1.0515e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| options for avoidance by ||| 0.25 0.0468744 8.48644e-07 1.99418e-15 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| options in ||| 0.0204082 0.605812 8.48644e-07 5.63373e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| options on ||| 0.0588235 0.22993 8.48644e-07 1.01319e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| or , as ||| 0.00653595 0.066968 8.48644e-07 2.45254e-06 2.718 ||| 0-2 ||| 153 1.17835e+06 +en ||| or , at ||| 0.00632911 0.321886 8.48644e-07 5.45403e-06 2.718 ||| 0-2 ||| 158 1.17835e+06 +en ||| or , in ||| 0.0180995 0.605812 3.39458e-06 6.2961e-05 2.718 ||| 0-2 ||| 221 1.17835e+06 +en ||| or , ||| 0.00110011 0.0002065 1.69729e-06 1.70534e-06 2.718 ||| 0-0 ||| 1818 1.17835e+06 +en ||| or Government at ||| 0.0666667 0.321886 8.48644e-07 2.20439e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| or SMEs , in ||| 1 0.605812 8.48644e-07 7.68125e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| or another in ||| 0.0769231 0.605812 8.48644e-07 1.2729e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| or another ||| 0.00161551 0.0009111 8.48644e-07 1.39483e-08 2.718 ||| 0-1 ||| 619 1.17835e+06 +en ||| or appear to consider the sector of ||| 1 0.0002065 8.48644e-07 1.09509e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| or appear to consider the sector ||| 1 0.0002065 8.48644e-07 2.01436e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| or appear to consider the ||| 1 0.0002065 8.48644e-07 1.08474e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| or appear to consider ||| 1 0.0002065 8.48644e-07 1.76691e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| or appear to ||| 0.25 0.0002065 8.48644e-07 1.11057e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| or appear ||| 0.111111 0.0002065 8.48644e-07 1.24982e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| or at least ||| 0.00135685 0.321886 8.48644e-07 1.12232e-08 2.718 ||| 0-1 ||| 737 1.17835e+06 +en ||| or at ||| 0.0102249 0.321886 8.48644e-06 4.57343e-05 2.718 ||| 0-1 ||| 978 1.17835e+06 +en ||| or consent given in error ||| 1 0.605812 8.48644e-07 2.82694e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| or consent given in ||| 1 0.605812 8.48644e-07 3.00738e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| or criticised in ||| 0.5 0.605812 8.48644e-07 4.54041e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| or envisaged in ||| 0.5 0.605812 8.48644e-07 7.60254e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| or failing ||| 0.0526316 0.0285171 8.48644e-07 3.4985e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| or for the ||| 0.00555556 0.0286209 8.48644e-07 8.07541e-07 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| or for ||| 0.00238095 0.0286209 1.69729e-06 1.31539e-05 2.718 ||| 0-1 ||| 840 1.17835e+06 +en ||| or from ||| 0.00573066 0.0308834 1.69729e-06 4.35037e-06 2.718 ||| 0-1 ||| 349 1.17835e+06 +en ||| or her in ||| 0.666667 0.605812 1.69729e-06 1.43656e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| or hope , ||| 1 0.0005295 8.48644e-07 1.48615e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| or hope ||| 0.111111 0.0005295 8.48644e-07 1.2462e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| or hybrid force , into ||| 1 0.525896 8.48644e-07 3.59599e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| or in terms ||| 0.0222222 0.605812 8.48644e-07 5.79483e-07 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| or in this case brother ) ||| 0.125 0.605812 8.48644e-07 1.67866e-17 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| or in this case brother ||| 0.125 0.605812 8.48644e-07 1.16793e-14 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| or in this case ||| 0.0769231 0.605812 8.48644e-07 3.64978e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| or in this ||| 0.0357143 0.605812 8.48644e-07 3.41132e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| or in ||| 0.00831146 0.605812 1.61242e-05 0.000527954 2.718 ||| 0-1 ||| 2286 1.17835e+06 +en ||| or less agreed on ||| 0.5 0.22993 8.48644e-07 1.26212e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| or less along ||| 0.5 0.155535 8.48644e-07 1.54796e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| or less announcing ||| 0.166667 0.0014142 8.48644e-07 4.71954e-14 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| or less ensure ||| 0.333333 0.0014142 8.48644e-07 6.61326e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| or less exhaustively ||| 1 0.0014142 8.48644e-07 5.89943e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| or less in ||| 0.0344828 0.605812 8.48644e-07 8.98578e-08 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| or less what ||| 0.0833333 0.0014142 8.48644e-07 2.06937e-11 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| or less ||| 0.00384615 0.0014142 3.39458e-06 1.47486e-08 2.718 ||| 0-1 ||| 1040 1.17835e+06 +en ||| or more in new ||| 1 0.605812 8.48644e-07 7.2064e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| or more in ||| 0.0909091 0.605812 8.48644e-07 1.20569e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| or not being taken on ||| 1 0.22993 1.69729e-06 8.4087e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| or not in ||| 0.4 0.605812 1.69729e-06 1.80249e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| or not ||| 0.000547345 0.0008293 1.69729e-06 2.07738e-07 2.718 ||| 0-1 ||| 3654 1.17835e+06 +en ||| or on ||| 0.00158983 0.22993 8.48644e-07 9.49492e-05 2.718 ||| 0-1 ||| 629 1.17835e+06 +en ||| or other at the ||| 0.5 0.321886 8.48644e-07 3.63739e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| or other at ||| 0.5 0.321886 1.69729e-06 5.92488e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| or otherwise in ||| 0.2 0.605812 8.48644e-07 3.13605e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| or rather , through ||| 1 0.16257 8.48644e-07 1.63519e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| or rather , ||| 0.00934579 0.16257 8.48644e-07 3.55244e-07 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| or rather lack ||| 0.166667 0.16257 8.48644e-07 3.6223e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| or rather ||| 0.00966184 0.16257 5.09187e-06 2.97887e-06 2.718 ||| 0-1 ||| 621 1.17835e+06 +en ||| or reason to ||| 0.2 0.0247351 8.48644e-07 7.51666e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| or so on ||| 1 0.22993 8.48644e-07 2.15506e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| or somewhere else . in ||| 1 0.605812 8.48644e-07 3.8684e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| or status in ||| 1 0.605812 8.48644e-07 5.33762e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| or the country being moved into - ||| 1 0.525896 8.48644e-07 1.90293e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| or the country being moved into ||| 1 0.525896 8.48644e-07 5.04476e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| or the other , ||| 0.0384615 0.0011669 8.48644e-07 5.06002e-10 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| or the other ||| 0.00465116 0.0011669 8.48644e-07 4.24304e-09 2.718 ||| 0-1 ||| 215 1.17835e+06 +en ||| or the wider ||| 0.5 0.0186861 8.48644e-07 3.05323e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| or the world in ||| 1 0.605812 8.48644e-07 7.38347e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| or the ||| 0.00015569 0.0011669 8.48644e-07 3.27521e-06 2.718 ||| 0-1 ||| 6423 1.17835e+06 +en ||| or to put it ||| 0.0588235 0.0247351 8.48644e-07 6.30119e-10 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| or to put ||| 0.05 0.0247351 8.48644e-07 3.54334e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| or to ||| 0.000924214 0.0247351 1.69729e-06 3.21362e-05 2.718 ||| 0-1 ||| 2164 1.17835e+06 +en ||| or two small steps at ||| 1 0.321886 8.48644e-07 8.17129e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| or two ||| 0.00105374 0.0002996 8.48644e-07 8.57475e-09 2.718 ||| 0-1 ||| 949 1.17835e+06 +en ||| or vendor on ||| 0.5 0.22993 8.48644e-07 3.79797e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| or with ||| 0.00465116 0.0535436 1.69729e-06 1.33296e-05 2.718 ||| 0-1 ||| 430 1.17835e+06 +en ||| or woman in ||| 0.25 0.605812 8.48644e-07 9.13361e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| or ||| 0.000149961 0.0002065 1.52756e-05 1.43e-05 2.718 ||| 0-0 ||| 120031 1.17835e+06 +en ||| order , this is when ||| 1 0.142731 8.48644e-07 7.65729e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| order as ||| 0.0344828 0.066968 8.48644e-07 9.58036e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| order in ||| 0.0202429 0.605812 4.24322e-06 0.000245945 2.718 ||| 0-1 ||| 247 1.17835e+06 +en ||| order to take sides in ||| 0.333333 0.605812 8.48644e-07 1.2913e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| order to ||| 6.11958e-05 0.0247351 8.48644e-07 1.49705e-05 2.718 ||| 0-1 ||| 16341 1.17835e+06 +en ||| order within ||| 0.166667 0.369196 8.48644e-07 5.90478e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| organic farming in ||| 0.0769231 0.605812 8.48644e-07 6.15092e-11 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| organic solvents in ||| 0.2 0.605812 8.48644e-07 9.14327e-12 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| organisation in ||| 0.016129 0.605812 8.48644e-07 1.56082e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| organisations in ||| 0.023622 0.605812 2.54593e-06 1.57929e-05 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| organised crime in ||| 0.015625 0.605812 8.48644e-07 5.03521e-10 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| organised in ||| 0.015748 0.605812 1.69729e-06 1.19601e-05 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| organised on ||| 0.0238095 0.22993 8.48644e-07 2.15095e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| organised ||| 0.000361664 0.0002031 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2765 1.17835e+06 +en ||| organisms into ||| 0.5 0.525896 8.48644e-07 7.08394e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| organizations in ||| 0.0740741 0.605812 1.69729e-06 5.31048e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| organized at the ||| 0.5 0.321886 8.48644e-07 2.03831e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| organized at ||| 0.25 0.321886 8.48644e-07 3.32017e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| organizing in ||| 0.25 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| orientation is towards ||| 0.5 0.0616136 8.48644e-07 9.05438e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| oriented in just ||| 1 0.605812 8.48644e-07 1.28178e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| oriented in ||| 0.5 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| origin in ||| 0.0327869 0.605812 1.69729e-06 1.18216e-05 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| origin of ingredients used in ||| 1 0.605812 8.48644e-07 8.82256e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| original investigations in ||| 1 0.605812 8.48644e-07 1.1575e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| originally asserted ||| 0.25 0.131774 8.48644e-07 3.4584e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| originally blocked ||| 0.5 0.131774 8.48644e-07 1.35192e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| originally of ||| 0.25 0.131774 8.48644e-07 8.54602e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| originally set out ||| 0.333333 0.131774 8.48644e-07 3.5189e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| originally set ||| 0.125 0.131774 8.48644e-07 9.18677e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| originally shown ||| 0.5 0.131774 8.48644e-07 1.64117e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| originally ||| 0.00976801 0.131774 6.78915e-06 0.0001572 2.718 ||| 0-0 ||| 819 1.17835e+06 +en ||| originating in ||| 0.00990099 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| other ' kept surfacing in ||| 1 0.605812 8.48644e-07 1.02559e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| other , in ||| 0.0555556 0.605812 8.48644e-07 7.13426e-05 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| other , on ||| 0.125 0.22993 8.48644e-07 1.28305e-05 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| other , with ||| 0.125 0.0535436 8.48644e-07 1.80124e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| other Member States in ||| 0.0188679 0.605812 8.48644e-07 1.47107e-10 2.718 ||| 0-3 ||| 53 1.17835e+06 +en ||| other Members ||| 0.000944287 0.0001021 8.48644e-07 2.591e-09 2.718 ||| 0-1 ||| 1059 1.17835e+06 +en ||| other again in ||| 1 0.605812 8.48644e-07 3.45961e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| other as we did ||| 1 0.066968 8.48644e-07 1.20157e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| other as we ||| 0.5 0.066968 8.48644e-07 2.64546e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| other as ||| 0.0588235 0.066968 1.69729e-06 2.33033e-05 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| other aspects are dealt with in other ||| 1 0.605812 8.48644e-07 5.5503e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| other aspects are dealt with in ||| 1 0.605812 8.48644e-07 4.28429e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| other at the ||| 0.1 0.321886 8.48644e-07 3.18148e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| other at ||| 0.111111 0.321886 2.54593e-06 5.18226e-05 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| other day in ||| 0.0555556 0.605812 8.48644e-07 1.53268e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| other during ||| 0.25 0.226251 8.48644e-07 3.74568e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| other in the ||| 0.025 0.605812 8.48644e-07 3.67269e-05 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| other in ||| 0.137931 0.605812 2.03675e-05 0.000598237 2.718 ||| 0-1 ||| 174 1.17835e+06 +en ||| other occasions in the ||| 0.333333 0.605812 8.48644e-07 9.76935e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| other occasions in ||| 0.1 0.605812 8.48644e-07 1.59131e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| other on ||| 0.025974 0.22993 1.69729e-06 0.000107589 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| other or in ||| 0.5 0.605812 8.48644e-07 6.83965e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| other parts of ||| 0.00452489 0.0060433 8.48644e-07 2.47334e-11 2.718 ||| 0-1 0-2 ||| 221 1.17835e+06 +en ||| other places , in various ||| 1 0.605812 8.48644e-07 5.82709e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| other places , in ||| 0.2 0.605812 8.48644e-07 3.77402e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| other power in ||| 1 0.605812 8.48644e-07 8.93168e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| other reports , in ||| 0.5 0.605812 8.48644e-07 3.54573e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| other side of ||| 0.00465116 0.0116562 8.48644e-07 3.87255e-09 2.718 ||| 0-2 ||| 215 1.17835e+06 +en ||| other things , on ||| 0.027027 0.22993 8.48644e-07 5.27334e-09 2.718 ||| 0-3 ||| 37 1.17835e+06 +en ||| other things being ||| 0.2 0.0043873 8.48644e-07 9.74384e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| other things in ||| 0.0833333 0.605812 8.48644e-07 2.45876e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| other through a ||| 1 0.0366102 8.48644e-07 5.40016e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| other through ||| 0.1 0.0366102 8.48644e-07 1.21829e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| other to ||| 0.0136986 0.0247351 8.48644e-07 3.64143e-05 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| other words , if ||| 0.0125 0.0178573 8.48644e-07 4.04848e-11 2.718 ||| 0-3 ||| 80 1.17835e+06 +en ||| other-worldly we are ||| 0.125 0.0054082 8.48644e-07 1.37398e-11 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| other-worldly we ||| 0.125 0.0054082 8.48644e-07 9.0556e-10 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| others are responsible for ||| 1 0.0286209 8.48644e-07 2.50952e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| others at ||| 0.0416667 0.321886 8.48644e-07 3.88819e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| others before it , ||| 0.5 0.0175291 8.48644e-07 7.02714e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| others before it ||| 0.25 0.0175291 8.48644e-07 5.89255e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| others before ||| 0.0555556 0.0175291 8.48644e-07 3.31355e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| others in ||| 0.00576369 0.605812 1.69729e-06 4.48851e-05 2.718 ||| 0-1 ||| 347 1.17835e+06 +en ||| others under ||| 0.5 0.205566 8.48644e-07 5.49627e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| others within ||| 0.1 0.369196 8.48644e-07 1.07763e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| otherwise , are at ||| 0.5 0.321886 8.48644e-07 4.29939e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| otherwise , to ||| 0.125 0.0247351 8.48644e-07 1.99112e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| otherwise at ||| 0.333333 0.321886 8.48644e-07 2.37612e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| otherwise in ||| 0.0526316 0.605812 8.48644e-07 2.74298e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| otherwise ||| 0.00143796 0.0196799 5.94051e-06 0.000164 2.718 ||| 0-0 ||| 4868 1.17835e+06 +en ||| ought , in ||| 0.0909091 0.605812 8.48644e-07 4.61483e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| ought in ||| 0.125 0.605812 8.48644e-07 3.86973e-05 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| ought to be felt as such in ||| 0.5 0.605812 8.48644e-07 7.52538e-17 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| ought to ||| 0.0013369 0.0247351 1.69729e-06 2.35548e-06 2.718 ||| 0-1 ||| 1496 1.17835e+06 +en ||| our action on ||| 0.0666667 0.22993 8.48644e-07 3.46306e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| our activities in ||| 0.0322581 0.605812 8.48644e-07 5.064e-08 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| our ambitions in ||| 0.0454545 0.605812 8.48644e-07 2.73902e-09 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| our assessment in ||| 0.5 0.605812 8.48644e-07 2.77087e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| our attention in ||| 0.105263 0.605812 1.69729e-06 1.66443e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| our business in ||| 0.25 0.605812 8.48644e-07 7.95589e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| our conclusions , which are as ||| 1 0.066968 8.48644e-07 9.61064e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| our contention that at ||| 0.5 0.321886 8.48644e-07 2.69177e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| our current way of working ||| 1 0.0116562 8.48644e-07 1.27233e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| our current way of ||| 1 0.0116562 8.48644e-07 6.68243e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| our dealings with ||| 0.0102041 0.0535436 8.48644e-07 1.67256e-10 2.718 ||| 0-2 ||| 98 1.17835e+06 +en ||| our debates at EU level . at ||| 1 0.321886 8.48644e-07 5.12461e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| our disposal in ||| 0.0588235 0.605812 8.48644e-07 5.36338e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| our efforts in ||| 0.00952381 0.605812 8.48644e-07 7.74569e-08 2.718 ||| 0-2 ||| 105 1.17835e+06 +en ||| our efforts on ||| 0.0105263 0.22993 8.48644e-07 1.39301e-08 2.718 ||| 0-2 ||| 95 1.17835e+06 +en ||| our energies into ||| 0.1 0.525896 8.48644e-07 2.07646e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| our energy on ||| 0.111111 0.22993 8.48644e-07 1.01841e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| our expectations in ||| 0.111111 0.605812 8.48644e-07 4.58626e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| our experience than we do at ||| 0.5 0.321886 8.48644e-07 4.54265e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| our experience within ||| 1 0.369196 8.48644e-07 1.05675e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| our fellow Members in paying ||| 0.5 0.605812 8.48644e-07 2.09277e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| our fellow Members in ||| 0.0625 0.605812 8.48644e-07 6.19161e-12 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| our fellow ||| 0.00263158 0.0004869 8.48644e-07 3.2291e-09 2.718 ||| 0-0 ||| 380 1.17835e+06 +en ||| our insistence on ||| 0.0666667 0.22993 8.48644e-07 3.32215e-10 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| our institutions had already decided beforehand against ||| 1 0.153982 8.48644e-07 7.20981e-26 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| our journey along it ||| 1 0.155535 8.48644e-07 1.97089e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| our journey along ||| 1 0.155535 8.48644e-07 1.10829e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| our lives in ||| 0.0833333 0.605812 8.48644e-07 3.28045e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| our messages ||| 0.0434783 0.0004869 8.48644e-07 2.107e-10 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| our own business in ||| 0.5 0.605812 8.48644e-07 1.34876e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| our own house in ||| 0.0232558 0.605812 8.48644e-07 2.33253e-11 2.718 ||| 0-3 ||| 43 1.17835e+06 +en ||| our part in ||| 0.0117647 0.605812 8.48644e-07 7.59409e-07 2.718 ||| 0-2 ||| 85 1.17835e+06 +en ||| our particular problems in ||| 1 0.605812 8.48644e-07 5.26061e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| our people live in ||| 1 0.605812 8.48644e-07 5.65156e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| our place in ||| 0.0588235 0.605812 8.48644e-07 9.58656e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| our progress with ||| 1 0.0535436 8.48644e-07 2.11804e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| our responsibility as ||| 0.0277778 0.066968 8.48644e-07 2.86584e-09 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| our strategy along ||| 1 0.155535 8.48644e-07 6.44123e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| our support in those efforts . ||| 1 0.605812 8.48644e-07 5.8084e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| our support in those efforts ||| 1 0.605812 8.48644e-07 1.9176e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| our support in those ||| 1 0.605812 8.48644e-07 1.57697e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| our support in ||| 0.0149254 0.605812 8.48644e-07 2.17784e-07 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| our task over ||| 0.333333 0.157937 8.48644e-07 6.96469e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| our thoughts are with ||| 0.0294118 0.0535436 8.48644e-07 2.36691e-12 2.718 ||| 0-3 ||| 34 1.17835e+06 +en ||| our true intentions in ||| 1 0.605812 8.48644e-07 1.15288e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| our using ||| 0.125 0.0119063 8.48644e-07 8.82816e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| our way ahead in ||| 0.5 0.605812 8.48644e-07 1.49665e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| our way in ||| 0.2 0.605812 8.48644e-07 1.37308e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| our work on ||| 0.00578035 0.22993 8.48644e-07 7.25146e-08 2.718 ||| 0-2 ||| 173 1.17835e+06 +en ||| our ||| 0.000231251 0.0004869 2.97026e-05 4.9e-05 2.718 ||| 0-0 ||| 151351 1.17835e+06 +en ||| ourselves , as ||| 0.0344828 0.066968 8.48644e-07 6.8237e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| ourselves and ||| 0.003663 0.0010182 8.48644e-07 2.93511e-07 2.718 ||| 0-1 ||| 273 1.17835e+06 +en ||| ourselves are sitting in ||| 1 0.605812 8.48644e-07 1.54899e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ourselves at the time ||| 1 0.321886 8.48644e-07 1.28248e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ourselves at the ||| 0.125 0.321886 8.48644e-07 7.81188e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| ourselves at ||| 0.222222 0.321886 3.39458e-06 1.27246e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| ourselves in a ||| 0.0357143 0.605812 8.48644e-07 6.51113e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| ourselves in ||| 0.254335 0.605812 3.73403e-05 0.000146893 2.718 ||| 0-1 ||| 173 1.17835e+06 +en ||| ourselves on the fact ||| 1 0.115548 8.48644e-07 2.21686e-10 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| ourselves on the ||| 0.0714286 0.115548 8.48644e-07 7.56788e-08 2.718 ||| 0-1 0-2 ||| 14 1.17835e+06 +en ||| ourselves on ||| 0.0612245 0.22993 2.54593e-06 2.64177e-05 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| ourselves over to ||| 0.333333 0.0247351 8.48644e-07 4.30521e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| ourselves to considering ||| 0.5 0.11575 8.48644e-07 8.21404e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| ourselves to ||| 0.005 0.0247351 8.48644e-07 8.94125e-06 2.718 ||| 0-1 ||| 200 1.17835e+06 +en ||| ourselves with in ||| 1 0.605812 8.48644e-07 9.39305e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ourselves with ||| 0.0519481 0.0535436 3.39458e-06 3.7087e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| out ' in ||| 1 0.605812 8.48644e-07 6.07567e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| out , as we ||| 0.333333 0.0120599 8.48644e-07 7.60509e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| out , as ||| 0.0714286 0.0120599 1.69729e-06 6.69916e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| out , at ||| 0.5 0.321886 8.48644e-07 1.82726e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| out , if , at ||| 1 0.321886 8.48644e-07 1.82085e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| out , in ||| 0.12 0.605812 2.54593e-06 0.000210938 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| out , ||| 0.00455581 0.0120599 3.39458e-06 6.56497e-05 2.718 ||| 0-0 ||| 878 1.17835e+06 +en ||| out . in ||| 1 0.605812 8.48644e-07 5.35771e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| out a ||| 0.0027137 0.0120599 1.69729e-06 2.44014e-05 2.718 ||| 0-0 ||| 737 1.17835e+06 +en ||| out according to the ||| 0.166667 0.0247351 8.48644e-07 5.84968e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| out according to ||| 0.0769231 0.0247351 8.48644e-07 9.52844e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| out across ||| 0.0666667 0.274879 8.48644e-07 7.86879e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| out again to ||| 1 0.0247351 8.48644e-07 6.22633e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| out along ||| 0.25 0.155535 8.48644e-07 3.04708e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| out and ||| 0.00288184 0.00653905 8.48644e-07 5.07946e-07 2.718 ||| 0-0 0-1 ||| 347 1.17835e+06 +en ||| out anywhere in ||| 0.166667 0.605812 8.48644e-07 5.3418e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| out as early as ||| 0.5 0.066968 8.48644e-07 4.75993e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| out as part ||| 0.166667 0.066968 8.48644e-07 8.21436e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| out as ||| 0.025641 0.066968 2.54593e-06 6.89009e-05 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| out at long ||| 1 0.321886 8.48644e-07 5.18356e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out at some point in ||| 1 0.605812 8.48644e-07 7.05799e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| out at state ||| 1 0.321886 8.48644e-07 3.87043e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out at ||| 0.27027 0.321886 4.24322e-05 0.000153224 2.718 ||| 0-1 ||| 185 1.17835e+06 +en ||| out based on a ||| 0.333333 0.22993 8.48644e-07 3.30796e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| out based on ||| 0.333333 0.22993 8.48644e-07 7.46283e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| out because ||| 0.0540541 0.0022788 1.69729e-06 4.04107e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| out by others ||| 0.5 0.0468744 8.48644e-07 3.16732e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| out by police forces in ||| 1 0.605812 8.48644e-07 8.15477e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| out by the ||| 0.00468384 0.0468744 1.69729e-06 2.00049e-06 2.718 ||| 0-1 ||| 427 1.17835e+06 +en ||| out by ||| 0.0232288 0.0468744 1.69729e-05 3.25856e-05 2.718 ||| 0-1 ||| 861 1.17835e+06 +en ||| out core areas in ||| 1 0.605812 8.48644e-07 6.11368e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| out during ||| 0.0322581 0.226251 8.48644e-07 1.10748e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| out either in ||| 1 0.605812 8.48644e-07 1.53143e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| out everywhere ||| 0.5 0.256283 8.48644e-07 1.88724e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| out for ||| 0.0052356 0.0286209 8.48644e-07 4.40695e-05 2.718 ||| 0-1 ||| 191 1.17835e+06 +en ||| out from ||| 0.045977 0.0308834 3.39458e-06 1.45751e-05 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| out here ||| 0.0192308 0.0855319 8.48644e-07 1.14916e-05 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| out in a ||| 0.0363636 0.605812 1.69729e-06 7.84038e-05 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| out in conspicuous ||| 1 0.605812 8.48644e-07 3.89137e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out in drafting ||| 1 0.605812 8.48644e-07 2.61783e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out in favour ||| 0.0350877 0.605812 1.69729e-06 5.72209e-07 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| out in such ||| 0.2 0.605812 8.48644e-07 3.65948e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| out in the host countries are socially ||| 1 0.605812 8.48644e-07 6.06828e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out in the host countries are ||| 1 0.605812 8.48644e-07 1.21366e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out in the host countries ||| 1 0.605812 8.48644e-07 7.99895e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out in the host ||| 1 0.605812 8.48644e-07 2.10665e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out in the ||| 0.00873362 0.605812 3.39458e-06 0.00010859 2.718 ||| 0-1 ||| 458 1.17835e+06 +en ||| out in this field - with ||| 0.5 0.0535436 8.48644e-07 3.40382e-15 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| out in this field ||| 0.5 0.605812 8.48644e-07 1.66977e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| out in this ||| 0.0178571 0.605812 8.48644e-07 1.1429e-05 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| out in very strong terms ||| 1 0.605812 8.48644e-07 5.7352e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out in very strong ||| 1 0.605812 8.48644e-07 5.22522e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out in very ||| 1 0.605812 8.48644e-07 6.15456e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out in what is ||| 0.5 0.605812 8.48644e-07 7.77827e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| out in what ||| 0.25 0.605812 8.48644e-07 2.48181e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| out in your report ||| 0.2 0.605812 8.48644e-07 1.85536e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| out in your ||| 0.142857 0.605812 8.48644e-07 4.52638e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| out in ||| 0.342988 0.605812 0.00038189 0.00176881 2.718 ||| 0-1 ||| 1312 1.17835e+06 +en ||| out into the ||| 0.0277778 0.525896 8.48644e-07 5.2057e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| out into ||| 0.175439 0.525896 8.48644e-06 8.47947e-05 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| out joint ||| 0.25 0.0120599 8.48644e-07 3.58375e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| out more ||| 0.0138889 0.0042952 8.48644e-07 1.27437e-06 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| out of a ||| 0.005 0.0116562 8.48644e-07 2.31537e-06 2.718 ||| 0-1 ||| 200 1.17835e+06 +en ||| out of all ||| 0.015625 0.0116562 8.48644e-07 2.46832e-07 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| out of horses ||| 0.5 0.0116562 8.48644e-07 1.14917e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| out of interest , on ||| 1 0.22993 8.48644e-07 2.31602e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| out of it ||| 0.0142857 0.0116562 8.48644e-07 9.28908e-07 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| out of office , ||| 0.2 0.0116562 8.48644e-07 6.40994e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| out of office ||| 0.0833333 0.0116562 8.48644e-07 5.375e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| out of step ||| 0.0540541 0.0120599 1.69729e-06 4.41429e-09 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| out of the darkness of the current ||| 1 0.0116562 8.48644e-07 2.46934e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out of the darkness of the ||| 1 0.0116562 8.48644e-07 1.49838e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out of the darkness of ||| 1 0.0116562 8.48644e-07 2.44069e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out of the darkness ||| 1 0.0116562 8.48644e-07 4.48954e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out of the ||| 0.00385208 0.0116562 4.24322e-06 3.20681e-06 2.718 ||| 0-1 ||| 1298 1.17835e+06 +en ||| out of their ||| 0.0131579 0.0116562 8.48644e-07 6.05458e-08 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| out of true , ||| 1 0.0116562 8.48644e-07 1.00665e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out of true ||| 1 0.0116562 8.48644e-07 8.4412e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out of work in ||| 0.25 0.605812 8.48644e-07 6.08689e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| out of ||| 0.0267299 0.0116562 0.000105232 5.22352e-05 2.718 ||| 0-1 ||| 4639 1.17835e+06 +en ||| out on a number ||| 0.5 0.22993 8.48644e-07 6.97689e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| out on a ||| 0.03125 0.22993 8.48644e-07 1.41004e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| out on foot ||| 0.125 0.22993 8.48644e-07 7.09382e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| out on the ||| 0.0108696 0.22993 8.48644e-07 1.95293e-05 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| out on this issue for having supported ||| 1 0.0286209 8.48644e-07 2.85991e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| out on this issue for having ||| 1 0.0286209 8.48644e-07 5.52106e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| out on this issue for ||| 1 0.0286209 8.48644e-07 1.44191e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| out on to ||| 1 0.22993 1.69729e-06 2.82666e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| out on top ||| 0.142857 0.22993 8.48644e-07 2.19813e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| out on ||| 0.149425 0.22993 4.41295e-05 0.000318109 2.718 ||| 0-1 ||| 348 1.17835e+06 +en ||| out onto ||| 0.1 0.233333 8.48644e-07 7.66463e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| out our business in ||| 1 0.605812 8.48644e-07 3.04742e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| out over ||| 0.0810811 0.157937 2.54593e-06 1.53492e-05 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| out prices in ||| 1 0.605812 8.48644e-07 5.60712e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| out recognition by ||| 0.1 0.0468744 8.48644e-07 9.15655e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| out repeatedly in ||| 1 0.605812 8.48644e-07 3.18385e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| out somewhere that is ||| 0.333333 0.194113 8.48644e-07 3.35223e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| out somewhere that ||| 0.333333 0.194113 8.48644e-07 1.0696e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| out somewhere ||| 0.333333 0.194113 8.48644e-07 6.35846e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| out that at some point in ||| 1 0.605812 8.48644e-07 1.18727e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| out that in ||| 0.125 0.605812 8.48644e-07 2.97542e-05 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| out that ||| 0.00117371 0.0120599 8.48644e-07 9.26029e-06 2.718 ||| 0-0 ||| 852 1.17835e+06 +en ||| out the ground for a broader transatlantic ||| 1 0.0286209 8.48644e-07 4.22897e-22 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| out the ground for a broader ||| 1 0.0286209 8.48644e-07 1.92226e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| out the ground for a ||| 1 0.0286209 8.48644e-07 1.40311e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| out the ground for ||| 1 0.0286209 8.48644e-07 3.16544e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| out the guilty on ||| 1 0.22993 8.48644e-07 4.1402e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| out there in ||| 0.35 0.605812 5.94051e-06 5.42192e-06 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| out there ||| 0.0117647 0.0117359 1.69729e-06 4.29541e-06 2.718 ||| 0-1 ||| 170 1.17835e+06 +en ||| out these measures in ||| 1 0.605812 8.48644e-07 3.79543e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| out through ||| 0.0277778 0.0366102 8.48644e-07 3.60211e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| out to be Yanukovich , in ||| 1 0.605812 8.48644e-07 1.35875e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| out to be a ||| 0.0232558 0.0183975 8.48644e-07 1.24301e-08 2.718 ||| 0-0 0-1 ||| 43 1.17835e+06 +en ||| out to be to the ||| 1 0.0247351 8.48644e-07 1.06442e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| out to be to ||| 1 0.0247351 8.48644e-07 1.73382e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| out to be ||| 0.0746269 0.0247351 1.27297e-05 1.95122e-06 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| out to get ||| 0.5 0.0120599 8.48644e-07 2.13863e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| out to the ||| 0.016129 0.0247351 1.69729e-06 6.60981e-06 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| out to ||| 0.0480226 0.0247351 2.88539e-05 0.000107666 2.718 ||| 0-1 ||| 708 1.17835e+06 +en ||| out together on ||| 1 0.22993 8.48644e-07 1.91056e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| out under strict compliance ||| 1 0.205566 8.48644e-07 7.37285e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out under strict ||| 1 0.205566 8.48644e-07 3.20559e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| out under ||| 0.106667 0.205566 6.78915e-06 2.16594e-05 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| out voluntarily ||| 0.333333 0.0120599 8.48644e-07 9.909e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| out when price levels ||| 0.5 0.142731 8.48644e-07 1.5428e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| out when price ||| 0.5 0.142731 8.48644e-07 1.16526e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| out when ||| 0.0294118 0.142731 8.48644e-07 2.28035e-05 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| out where ||| 0.153846 0.247783 1.69729e-06 3.2622e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| out with the ||| 0.0121951 0.0535436 8.48644e-07 2.74165e-06 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| out with ||| 0.0444444 0.0535436 8.48644e-06 4.46583e-05 2.718 ||| 0-1 ||| 225 1.17835e+06 +en ||| out within a ||| 0.25 0.369196 8.48644e-07 1.88236e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| out within ||| 0.314286 0.369196 9.33509e-06 4.24665e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| out ||| 0.0181614 0.0120599 0.000219799 0.0005505 2.718 ||| 0-0 ||| 14261 1.17835e+06 +en ||| outbreaks of ||| 0.00699301 0.0116562 8.48644e-07 5.86391e-08 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| outcome in ||| 0.0227273 0.605812 8.48644e-07 2.3597e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| outcome of ||| 0.000563698 0.0116562 8.48644e-07 6.96851e-07 2.718 ||| 0-1 ||| 1774 1.17835e+06 +en ||| outcome will be decided by ||| 1 0.0468744 8.48644e-07 4.6619e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| outcome will hinge on how the new ||| 1 0.22993 8.48644e-07 3.37978e-22 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| outcome will hinge on how the ||| 1 0.22993 8.48644e-07 5.65464e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| outcome will hinge on how ||| 1 0.22993 8.48644e-07 9.21074e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| outcome will hinge on ||| 1 0.22993 8.48644e-07 2.56996e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| outcomes of ||| 0.0178571 0.0116562 8.48644e-07 3.00014e-08 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| outdo each other in ||| 0.2 0.605812 8.48644e-07 6.71701e-14 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| outlets found in ||| 0.125 0.605812 8.48644e-07 2.52594e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| outlets in ||| 0.285714 0.605812 1.69729e-06 1.15445e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| outline in the ||| 0.333333 0.605812 8.48644e-07 2.55146e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| outline in ||| 0.111111 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| outlined in ||| 0.00974026 0.605812 2.54593e-06 7.98881e-06 2.718 ||| 0-1 ||| 308 1.17835e+06 +en ||| outlines ||| 0.00675676 0.0079576 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 296 1.17835e+06 +en ||| outlining ||| 0.00865801 0.0630137 1.69729e-06 1.57e-05 2.718 ||| 0-0 ||| 231 1.17835e+06 +en ||| output at EU level ||| 1 0.321886 8.48644e-07 6.77237e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| output at EU ||| 1 0.321886 8.48644e-07 7.9172e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| output at ||| 0.333333 0.321886 8.48644e-07 1.60008e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| output in ||| 0.142857 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| outrages in ||| 0.142857 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| outset , when ||| 0.166667 0.142731 8.48644e-07 1.37732e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| outside Community ||| 1 0.0045581 8.48644e-07 3.96655e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| outside it ||| 0.00847458 0.0080472 8.48644e-07 1.1004e-07 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| outside the Union . to ||| 1 0.0247351 8.48644e-07 1.16248e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| outside world in ||| 0.166667 0.605812 8.48644e-07 4.19723e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| outside ||| 0.00107748 0.0045581 9.33509e-06 2.45e-05 2.718 ||| 0-0 ||| 10209 1.17835e+06 +en ||| outstanding obstacles to ||| 0.333333 0.0247351 8.48644e-07 2.84625e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| over , ||| 0.00896861 0.157937 1.69729e-06 0.000477877 2.718 ||| 0-0 ||| 223 1.17835e+06 +en ||| over 10 ||| 0.0166667 0.157937 8.48644e-07 6.49166e-08 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| over 30 months ||| 0.0188679 0.157937 8.48644e-07 2.14782e-12 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| over 30 ||| 0.0078125 0.157937 8.48644e-07 5.32958e-08 2.718 ||| 0-0 ||| 128 1.17835e+06 +en ||| over 300 ||| 0.0232558 0.157937 8.48644e-07 2.32418e-08 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| over EUR ||| 0.00714286 0.157937 8.48644e-07 1.07153e-06 2.718 ||| 0-0 ||| 140 1.17835e+06 +en ||| over Europe at ||| 0.333333 0.321886 8.48644e-07 9.74605e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| over Kurdistan ) ||| 1 0.157937 8.48644e-07 2.30382e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| over Kurdistan ||| 0.5 0.157937 8.48644e-07 1.60288e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| over a good decade and a ||| 1 0.157937 8.48644e-07 9.20594e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| over a good decade and ||| 1 0.157937 8.48644e-07 2.07688e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| over a good decade ||| 1 0.157937 8.48644e-07 1.65807e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| over a good ||| 0.25 0.157937 8.48644e-07 9.21149e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| over a number of ||| 0.0172414 0.157937 8.48644e-07 4.77792e-09 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| over a number ||| 0.0212766 0.157937 8.48644e-07 8.78875e-08 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| over a period of ||| 0.0258065 0.157937 3.39458e-06 1.68502e-09 2.718 ||| 0-0 ||| 155 1.17835e+06 +en ||| over a period ||| 0.0280899 0.157937 4.24322e-06 3.09951e-08 2.718 ||| 0-0 ||| 178 1.17835e+06 +en ||| over a ||| 0.0153846 0.157937 1.52756e-05 0.000177622 2.718 ||| 0-0 ||| 1170 1.17835e+06 +en ||| over about ||| 1 0.157937 8.48644e-07 5.66738e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| over again , in ||| 0.5 0.605812 8.48644e-07 1.53342e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| over again ||| 0.00515464 0.157937 8.48644e-07 2.31736e-06 2.718 ||| 0-0 ||| 194 1.17835e+06 +en ||| over against ||| 0.0625 0.15596 1.69729e-06 2.32374e-05 2.718 ||| 0-0 0-1 ||| 32 1.17835e+06 +en ||| over all ||| 0.0174419 0.157937 2.54593e-06 1.89356e-05 2.718 ||| 0-0 ||| 172 1.17835e+06 +en ||| over and over again , ||| 0.0217391 0.157937 8.48644e-07 1.66677e-12 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| over and over again during ||| 0.5 0.157937 8.48644e-07 1.40883e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| over and over again ||| 0.0232558 0.157937 2.54593e-06 1.39765e-11 2.718 ||| 0-0 ||| 129 1.17835e+06 +en ||| over and over ||| 0.0291262 0.157937 2.54593e-06 2.41683e-08 2.718 ||| 0-0 ||| 103 1.17835e+06 +en ||| over and ||| 0.0163488 0.157937 5.09187e-06 5.01938e-05 2.718 ||| 0-0 ||| 367 1.17835e+06 +en ||| over both ||| 0.153846 0.157937 1.69729e-06 6.63793e-06 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| over budget in ||| 1 0.605812 8.48644e-07 2.74377e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| over by ||| 0.0217391 0.157937 1.69729e-06 2.10382e-05 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| over coming ||| 0.0192308 0.157937 8.48644e-07 7.78599e-07 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| over for ||| 0.0526316 0.093279 8.48644e-07 4.61036e-05 2.718 ||| 0-0 0-1 ||| 19 1.17835e+06 +en ||| over from ||| 0.0306122 0.0944103 2.54593e-06 1.52478e-05 2.718 ||| 0-0 0-1 ||| 98 1.17835e+06 +en ||| over in modest silence ||| 0.5 0.605812 8.48644e-07 4.44695e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| over in modest ||| 0.5 0.605812 8.48644e-07 8.8939e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| over in ||| 0.212121 0.381874 1.1881e-05 0.00185045 2.718 ||| 0-0 0-1 ||| 66 1.17835e+06 +en ||| over individually to the ||| 0.0833333 0.157937 8.48644e-07 1.48648e-10 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| over individually to ||| 0.0833333 0.157937 8.48644e-07 2.42129e-09 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| over individually ||| 0.0833333 0.157937 8.48644e-07 2.7249e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| over into ||| 0.227273 0.341917 4.24322e-06 8.87086e-05 2.718 ||| 0-0 0-1 ||| 22 1.17835e+06 +en ||| over it , ||| 0.166667 0.157937 8.48644e-07 8.49819e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| over it ||| 0.0333333 0.157937 1.69729e-06 7.12608e-05 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| over on a ||| 0.5 0.193934 8.48644e-07 1.47513e-05 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| over on ||| 0.0588235 0.193934 8.48644e-07 0.000332792 2.718 ||| 0-0 0-1 ||| 17 1.17835e+06 +en ||| over ourselves ||| 0.25 0.157937 8.48644e-07 1.27469e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| over since ||| 0.333333 0.157937 8.48644e-07 5.43777e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| over some ||| 0.0263158 0.157937 8.48644e-07 4.36504e-06 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| over that ||| 0.0125 0.157937 8.48644e-07 6.74075e-05 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| over the course of ||| 0.00909091 0.157937 8.48644e-07 1.6874e-08 2.718 ||| 0-0 ||| 110 1.17835e+06 +en ||| over the course ||| 0.0238095 0.157937 2.54593e-06 3.1039e-07 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| over the deal , in ||| 1 0.605812 8.48644e-07 6.91191e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| over the last ||| 0.00148478 0.157937 1.69729e-06 5.37284e-08 2.718 ||| 0-0 ||| 1347 1.17835e+06 +en ||| over the much ||| 1 0.157937 8.48644e-07 2.46919e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| over the past ||| 0.00107181 0.157937 8.48644e-07 3.15138e-08 2.718 ||| 0-0 ||| 933 1.17835e+06 +en ||| over the space of a ||| 0.5 0.157937 8.48644e-07 2.45426e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| over the space of ||| 0.142857 0.157937 8.48644e-07 5.53685e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| over the space ||| 0.125 0.157937 8.48644e-07 1.01848e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| over the ||| 0.00594496 0.157937 5.26159e-05 0.000246009 2.718 ||| 0-0 ||| 10429 1.17835e+06 +en ||| over their ||| 0.00549451 0.157937 8.48644e-07 4.64475e-06 2.718 ||| 0-0 ||| 182 1.17835e+06 +en ||| over them ||| 0.0208333 0.157937 8.48644e-07 1.07489e-05 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| over themselves with ||| 0.5 0.157937 8.48644e-07 1.10107e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| over themselves ||| 0.133333 0.157937 1.69729e-06 1.72189e-06 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| over there ||| 0.0127389 0.157937 1.69729e-06 1.22833e-05 2.718 ||| 0-0 ||| 157 1.17835e+06 +en ||| over this in ||| 0.5 0.605812 1.69729e-06 1.43668e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| over this ||| 0.0027933 0.157937 8.48644e-07 2.58921e-05 2.718 ||| 0-0 ||| 358 1.17835e+06 +en ||| over time ||| 0.00882353 0.157937 2.54593e-06 6.57862e-06 2.718 ||| 0-0 ||| 340 1.17835e+06 +en ||| over to that ||| 0.2 0.157937 8.48644e-07 5.98971e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| over to ||| 0.097561 0.157937 2.03675e-05 0.000356073 2.718 ||| 0-0 ||| 246 1.17835e+06 +en ||| over us ||| 0.0555556 0.157937 8.48644e-07 1.15496e-05 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| over whether they have served ||| 1 0.157937 8.48644e-07 9.32827e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| over whether they have ||| 1 0.157937 8.48644e-07 4.10937e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| over whether they ||| 1 0.157937 8.48644e-07 3.43598e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| over whether ||| 0.030303 0.157937 1.69729e-06 1.05269e-06 2.718 ||| 0-0 ||| 66 1.17835e+06 +en ||| over ||| 0.155195 0.157937 0.00395723 0.0040072 2.718 ||| 0-0 ||| 30046 1.17835e+06 +en ||| overall , I ||| 0.0714286 0.135441 8.48644e-07 5.36075e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| overall , ||| 0.00653595 0.135441 3.39458e-06 7.57864e-05 2.718 ||| 0-0 ||| 612 1.17835e+06 +en ||| overall cut of ||| 1 0.0116562 8.48644e-07 6.52596e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| overall developments in the ||| 0.5 0.605812 8.48644e-07 5.36564e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| overall developments in ||| 0.5 0.605812 8.48644e-07 8.73999e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| overall effect ||| 0.0769231 0.135441 8.48644e-07 2.12003e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| overall in ||| 0.111111 0.605812 1.69729e-06 2.92307e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| overall increase in ||| 0.0833333 0.605812 8.48644e-07 3.77661e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| overall requirement ||| 0.25 0.135441 8.48644e-07 2.67545e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| overall responsibility for these matters , ||| 1 0.135441 8.48644e-07 1.29077e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| overall responsibility for these matters ||| 1 0.135441 8.48644e-07 1.08236e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| overall responsibility for these ||| 0.5 0.135441 8.48644e-07 5.85062e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| overall responsibility for ||| 0.0588235 0.135441 8.48644e-07 5.64132e-10 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| overall responsibility ||| 0.025641 0.135441 8.48644e-07 7.34003e-08 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| overall volume ||| 0.0714286 0.135441 8.48644e-07 9.1512e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| overall waste ||| 0.5 0.135441 8.48644e-07 4.43579e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| overall way ||| 0.25 0.135441 8.48644e-07 1.36988e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| overall ||| 0.00556881 0.135441 2.97026e-05 0.0006355 2.718 ||| 0-0 ||| 6285 1.17835e+06 +en ||| overcome , another initiative will come to ||| 1 0.0247351 8.48644e-07 6.95121e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| overcome at ||| 0.0769231 0.321886 8.48644e-07 7.48037e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| overcome by ||| 0.0277778 0.0468744 8.48644e-07 1.59083e-07 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| overcome their differences with ||| 1 0.0535436 8.48644e-07 5.91338e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| overcome through ||| 0.0909091 0.0366102 8.48644e-07 1.75855e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| overcrowded ||| 0.0142857 0.075 8.48644e-07 4.1e-06 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| overestimates in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| overload on it ||| 1 0.22993 8.48644e-07 2.06761e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| overload on ||| 0.333333 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| overlook the ||| 0.00436681 0.0011669 8.48644e-07 1.14588e-08 2.718 ||| 0-1 ||| 229 1.17835e+06 +en ||| overnight as ||| 0.5 0.066968 8.48644e-07 6.47564e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| overrides ||| 0.0666667 0.0434783 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| overrun that he cannot be here now ||| 1 0.0855319 8.48644e-07 6.66769e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| overrun that he cannot be here ||| 1 0.0855319 8.48644e-07 3.2369e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| overstepping ||| 0.0526316 0.0344828 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| overtaken by ||| 0.011236 0.0468744 8.48644e-07 2.12678e-08 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| overturned during ||| 0.333333 0.226251 8.48644e-07 1.15652e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| overview at ||| 0.5 0.321886 8.48644e-07 2.16011e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| owing to the ||| 0.00374532 0.0175915 8.48644e-07 8.28297e-09 2.718 ||| 0-0 0-1 ||| 267 1.17835e+06 +en ||| owing to ||| 0.00500835 0.0104478 2.54593e-06 4.26519e-07 2.718 ||| 0-0 ||| 599 1.17835e+06 +en ||| owing ||| 0.00162602 0.0104478 8.48644e-07 4.8e-06 2.718 ||| 0-0 ||| 615 1.17835e+06 +en ||| own Member States first . ||| 1 0.138055 8.48644e-07 7.71761e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| own Member States first ||| 1 0.138055 8.48644e-07 2.54791e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| own at all ||| 0.5 0.321886 8.48644e-07 3.20455e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| own at ||| 0.166667 0.321886 8.48644e-07 6.78154e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| own business in ||| 0.5 0.605812 8.48644e-07 9.77789e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| own citizens in ||| 0.25 0.605812 8.48644e-07 8.53315e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| own countries in the ||| 0.2 0.605812 8.48644e-07 1.82488e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| own countries in ||| 0.142857 0.605812 8.48644e-07 2.97251e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| own countries to move ||| 0.333333 0.0247351 8.48644e-07 2.76649e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| own countries to ||| 0.0833333 0.0247351 8.48644e-07 1.80935e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| own decisions when conducting ||| 1 0.142731 8.48644e-07 9.39483e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| own decisions when ||| 1 0.142731 8.48644e-07 7.70068e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| own devices in ||| 0.5 0.605812 8.48644e-07 6.18457e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| own devices on ||| 0.333333 0.22993 8.48644e-07 1.11226e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| own eyes as a ||| 0.5 0.066968 8.48644e-07 7.88047e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| own eyes as ||| 0.5 0.066968 8.48644e-07 1.77785e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| own free will in ||| 0.5 0.605812 8.48644e-07 7.89692e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| own higher ||| 1 0.0015298 8.48644e-07 1.1528e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| own house in ||| 0.016129 0.605812 8.48644e-07 1.69097e-08 2.718 ||| 0-2 ||| 62 1.17835e+06 +en ||| own in ||| 0.227273 0.605812 1.27297e-05 0.000782857 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| own legislation in ||| 0.142857 0.605812 8.48644e-07 6.28635e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| own mind in ||| 1 0.605812 8.48644e-07 1.97202e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| own on ||| 0.0909091 0.22993 8.48644e-07 0.000140792 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| own overall ||| 0.333333 0.135441 8.48644e-07 1.07736e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| own place in ||| 0.142857 0.605812 8.48644e-07 1.1782e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| own position in ||| 0.1 0.605812 8.48644e-07 2.57795e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| own purposes in ||| 1 0.605812 8.48644e-07 9.46475e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| own region in ||| 0.125 0.605812 8.48644e-07 7.66417e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| own right towards ||| 0.5 0.0616136 8.48644e-07 1.08914e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| own right ||| 0.00645161 0.0071334 8.48644e-07 3.03459e-07 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| own splendid contribution in ||| 0.5 0.605812 8.48644e-07 4.29789e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| own with ||| 0.111111 0.0535436 8.48644e-07 1.97653e-05 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| own within ||| 1 0.369196 8.48644e-07 1.87953e-05 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| own-initiative reports in this ||| 1 0.605812 8.48644e-07 5.33853e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| own-initiative reports in ||| 1 0.605812 8.48644e-07 8.26219e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| owned by ||| 0.00847458 0.0468744 8.48644e-07 5.78483e-08 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| pace at which traffic normally moves in ||| 1 0.605812 8.48644e-07 1.66925e-24 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| pace in ||| 0.142857 0.605812 1.69729e-06 8.95855e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| pace of reform ||| 0.0344828 0.0116562 8.48644e-07 1.08469e-11 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| pace of ||| 0.00352113 0.0116562 8.48644e-07 2.64558e-07 2.718 ||| 0-1 ||| 284 1.17835e+06 +en ||| pace with ||| 0.00694444 0.0535436 8.48644e-07 2.26183e-07 2.718 ||| 0-1 ||| 144 1.17835e+06 +en ||| package at ||| 0.0588235 0.321886 8.48644e-07 1.9001e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| package in ||| 0.028169 0.605812 1.69729e-06 2.19346e-05 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| package into ||| 0.5 0.525896 8.48644e-07 1.05152e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| package ||| 0.000115274 0.0001339 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 8675 1.17835e+06 +en ||| packaging , in ||| 0.25 0.605812 8.48644e-07 2.36799e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| pact agreed last year in Dublin ||| 1 0.605812 8.48644e-07 2.93879e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| pact agreed last year in ||| 1 0.605812 8.48644e-07 1.33581e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| paedophilia on the Internet . we have ||| 1 0.22993 8.48644e-07 2.53918e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| paedophilia on the Internet . we ||| 1 0.22993 8.48644e-07 2.12309e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| paedophilia on the Internet . ||| 1 0.22993 8.48644e-07 1.87019e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| paedophilia on the Internet ||| 0.5 0.22993 8.48644e-07 6.17427e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| paedophilia on the ||| 1 0.22993 8.48644e-07 3.56894e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| paedophilia on ||| 0.333333 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| page ||| 0.00389105 0.018018 1.69729e-06 9.5e-06 2.718 ||| 0-0 ||| 514 1.17835e+06 +en ||| pages in ||| 0.125 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| paid by ||| 0.00772201 0.0468744 1.69729e-06 1.14506e-06 2.718 ||| 0-1 ||| 259 1.17835e+06 +en ||| paid for at ||| 0.0909091 0.321886 8.48644e-07 4.13819e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| paid for ||| 0.0027027 0.0286209 8.48644e-07 1.5486e-06 2.718 ||| 0-1 ||| 370 1.17835e+06 +en ||| paid in ||| 0.0542636 0.605812 5.94051e-06 6.21557e-05 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| paid off for ||| 0.125 0.0286209 8.48644e-07 6.3028e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| paid out in ||| 0.047619 0.605812 8.48644e-07 2.38081e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| paid out of ||| 0.166667 0.0116562 8.48644e-07 7.03085e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| paid out within ||| 1 0.369196 8.48644e-07 5.71599e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| paid to ||| 0.0127971 0.0247351 5.94051e-06 3.78338e-06 2.718 ||| 0-1 ||| 547 1.17835e+06 +en ||| painted on ||| 0.25 0.22993 8.48644e-07 1.82706e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| painting by ||| 0.5 0.0468744 8.48644e-07 9.35781e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| pairs in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| pan into ||| 1 0.525896 8.48644e-07 3.09922e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| paper , ||| 0.00403226 0.0053591 8.48644e-07 1.2164e-06 2.718 ||| 0-0 ||| 248 1.17835e+06 +en ||| paper in ||| 0.04 0.605812 8.48644e-07 1.34378e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| paper ||| 0.000411015 0.0053591 8.48644e-07 1.02e-05 2.718 ||| 0-0 ||| 2433 1.17835e+06 +en ||| papers are not in ||| 1 0.605812 8.48644e-07 2.15287e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| paperwork in this ||| 1 0.605812 8.48644e-07 2.08863e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| paperwork in ||| 0.333333 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| par in ||| 0.333333 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| paragraph somewhere ||| 1 0.0058027 8.48644e-07 6.7035e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| paragraph ||| 0.000741427 0.0058027 3.39458e-06 3.27e-05 2.718 ||| 0-0 ||| 5395 1.17835e+06 +en ||| paragraphs ||| 0.000863558 0.0060569 8.48644e-07 6.8e-06 2.718 ||| 0-0 ||| 1158 1.17835e+06 +en ||| parallel in ||| 0.0384615 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| parallel to ||| 0.01 0.0247351 8.48644e-07 2.0238e-07 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| parameters in ||| 0.111111 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| parameters within ||| 0.111111 0.369196 8.48644e-07 7.20635e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| paramilitaries in ||| 0.333333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| parcel of ||| 0.0172414 0.0116562 8.48644e-07 8.31857e-08 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| parliament - in ||| 0.5 0.605812 8.48644e-07 4.19794e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| parliament in ||| 0.011236 0.605812 8.48644e-07 1.11289e-05 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| part , in ||| 0.0714286 0.605812 1.69729e-06 6.56539e-05 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| part , on ||| 0.0714286 0.22993 8.48644e-07 1.18074e-05 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| part , under ||| 0.5 0.205566 8.48644e-07 8.03945e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| part , ||| 0.000520833 0.0009084 8.48644e-07 2.51627e-06 2.718 ||| 0-0 ||| 1920 1.17835e+06 +en ||| part and parcel of ||| 0.0123457 0.0116562 8.48644e-07 1.24224e-12 2.718 ||| 0-3 ||| 81 1.17835e+06 +en ||| part and ||| 0.00495049 0.0010182 8.48644e-07 1.10004e-06 2.718 ||| 0-1 ||| 202 1.17835e+06 +en ||| part as well ||| 0.25 0.066968 8.48644e-07 3.40035e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| part as ||| 0.025641 0.066968 8.48644e-07 2.14452e-05 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| part at ||| 0.0666667 0.321886 8.48644e-07 4.76904e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| part for ||| 0.0625 0.0286209 1.69729e-06 1.37165e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| part here ||| 0.05 0.0855319 8.48644e-07 3.57672e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| part in all ||| 0.0714286 0.605812 8.48644e-07 2.6015e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| part in helping ||| 0.0714286 0.605812 8.48644e-07 2.08102e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| part in various ||| 0.166667 0.605812 8.48644e-07 8.50027e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| part in ||| 0.074005 0.605812 0.000100989 0.000550535 2.718 ||| 0-1 ||| 1608 1.17835e+06 +en ||| part into ||| 1 0.525896 8.48644e-07 2.63921e-05 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| part of an ||| 0.0037594 0.0116562 8.48644e-07 7.22621e-08 2.718 ||| 0-1 ||| 266 1.17835e+06 +en ||| part of and within ||| 1 0.369196 8.48644e-07 9.00061e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| part of in terms ||| 1 0.605812 8.48644e-07 3.28504e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| part of in ||| 1 0.605812 8.48644e-07 2.99293e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| part of our cultural heritage ||| 0.1 0.0116562 8.48644e-07 4.9329e-18 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| part of our cultural ||| 0.25 0.0116562 8.48644e-07 5.24776e-13 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| part of our ||| 0.00149477 0.0116562 8.48644e-07 2.24263e-08 2.718 ||| 0-1 ||| 669 1.17835e+06 +en ||| part of the ||| 0.000226091 0.0116562 1.69729e-06 9.9811e-07 2.718 ||| 0-1 ||| 8846 1.17835e+06 +en ||| part of ||| 0.00885409 0.0116562 0.000102686 1.6258e-05 2.718 ||| 0-1 ||| 13666 1.17835e+06 +en ||| part on ||| 0.05 0.22993 2.54593e-06 9.90103e-05 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| part played in ||| 0.111111 0.605812 8.48644e-07 2.71414e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| part stems from ||| 1 0.0308834 8.48644e-07 1.95067e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| part to play in ||| 0.0222222 0.605812 8.48644e-07 1.26213e-08 2.718 ||| 0-3 ||| 45 1.17835e+06 +en ||| part ||| 0.000520002 0.0009084 1.1881e-05 2.11e-05 2.718 ||| 0-0 ||| 26923 1.17835e+06 +en ||| part-time jobs in ||| 0.2 0.605812 8.48644e-07 5.26246e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| partially answered ||| 0.166667 0.159236 8.48644e-07 6.7229e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| partially coinciding ||| 0.5 0.159236 8.48644e-07 5.957e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| partially responsible ||| 0.125 0.159236 8.48644e-07 1.25863e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| partially ||| 0.00805153 0.159236 4.24322e-06 8.51e-05 2.718 ||| 0-0 ||| 621 1.17835e+06 +en ||| participant in ||| 0.0526316 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| participants in ||| 0.00434783 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 230 1.17835e+06 +en ||| participate , especially when ||| 1 0.142731 8.48644e-07 1.37393e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| participate in decision making whenever it is ||| 1 0.605812 8.48644e-07 2.28959e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| participate in decision making whenever it ||| 1 0.605812 8.48644e-07 7.3054e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| participate in decision making whenever ||| 1 0.605812 8.48644e-07 4.10803e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| participate in decision making ||| 0.2 0.605812 8.48644e-07 6.73448e-13 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| participate in decision ||| 0.0909091 0.605812 8.48644e-07 1.75058e-09 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| participate in decision-making in ||| 0.5 0.605812 8.48644e-07 3.85899e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| participate in the work ||| 0.0909091 0.605812 8.48644e-07 4.32481e-10 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| participate in the ||| 0.00178571 0.605812 8.48644e-07 6.83225e-07 2.718 ||| 0-1 ||| 560 1.17835e+06 +en ||| participate in ||| 0.00727032 0.605812 9.33509e-06 1.11289e-05 2.718 ||| 0-1 ||| 1513 1.17835e+06 +en ||| participated in ||| 0.00914634 0.605812 2.54593e-06 1.66241e-06 2.718 ||| 0-1 ||| 328 1.17835e+06 +en ||| participates fully in the common foreign and ||| 1 0.605812 8.48644e-07 3.55526e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| participates fully in the common foreign ||| 1 0.605812 8.48644e-07 2.83833e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| participates fully in the common ||| 1 0.605812 8.48644e-07 1.03968e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| participates fully in the ||| 1 0.605812 8.48644e-07 4.50078e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| participates fully in ||| 0.333333 0.605812 8.48644e-07 7.33124e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| participating , as we would then be ||| 0.25 0.066968 8.48644e-07 4.79668e-17 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| participating , as we would then ||| 0.25 0.066968 8.48644e-07 2.64675e-15 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| participating , as we would ||| 0.25 0.066968 8.48644e-07 1.64354e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| participating , as we ||| 0.2 0.066968 8.48644e-07 2.80051e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| participating , as ||| 0.2 0.066968 8.48644e-07 2.46691e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| participating in the ||| 0.00283286 0.605812 8.48644e-07 3.2602e-07 2.718 ||| 0-1 ||| 353 1.17835e+06 +en ||| participating in ||| 0.00930851 0.605812 5.94051e-06 5.31048e-06 2.718 ||| 0-1 ||| 752 1.17835e+06 +en ||| participation in ||| 0.00540958 0.605812 5.94051e-06 1.11289e-05 2.718 ||| 0-1 ||| 1294 1.17835e+06 +en ||| participation of ||| 0.000786163 0.0116562 8.48644e-07 3.28652e-07 2.718 ||| 0-1 ||| 1272 1.17835e+06 +en ||| particles in ||| 0.25 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| particular , at ||| 0.0357143 0.321886 8.48644e-07 2.93572e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| particular , in ||| 0.00456621 0.605812 8.48644e-07 3.38898e-05 2.718 ||| 0-2 ||| 219 1.17835e+06 +en ||| particular action that might result in a ||| 1 0.605812 8.48644e-07 1.29505e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| particular action that might result in ||| 1 0.605812 8.48644e-07 2.92165e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| particular at ||| 0.0120482 0.321886 8.48644e-07 2.46172e-05 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| particular attention in ||| 0.04 0.605812 8.48644e-07 7.42563e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| particular attention to the processing of applications ||| 1 0.0116562 8.48644e-07 2.41165e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| particular attention to the processing of ||| 1 0.0116562 8.48644e-07 1.72261e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| particular in ||| 0.0121951 0.605812 5.94051e-06 0.00028418 2.718 ||| 0-1 ||| 574 1.17835e+06 +en ||| particular issues are worth stressing ||| 1 0.152 8.48644e-07 1.0968e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| particular on ||| 0.00638978 0.22993 1.69729e-06 5.1108e-05 2.718 ||| 0-1 ||| 313 1.17835e+06 +en ||| particular problems in ||| 0.0714286 0.605812 8.48644e-07 3.8137e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| particular set of ||| 0.166667 0.0116562 8.48644e-07 4.90441e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| particular ||| 0.000177651 0.0003196 5.09187e-06 6.8e-06 2.718 ||| 0-0 ||| 33774 1.17835e+06 +en ||| particularly among ||| 0.0125 0.112795 8.48644e-07 1.42236e-06 2.718 ||| 0-0 0-1 ||| 80 1.17835e+06 +en ||| particularly as ||| 0.00275482 0.125156 1.69729e-06 8.03304e-05 2.718 ||| 0-0 0-1 ||| 726 1.17835e+06 +en ||| particularly at ||| 0.0299625 0.321886 6.78915e-06 7.14036e-06 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| particularly concerned ||| 0.0178571 0.183344 1.69729e-06 7.18369e-06 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| particularly depends on ||| 1 0.22993 8.48644e-07 2.23845e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| particularly for ||| 0.0027027 0.183344 1.69729e-06 3.43228e-05 2.718 ||| 0-0 ||| 740 1.17835e+06 +en ||| particularly from ||| 0.00662252 0.183344 8.48644e-07 7.19172e-06 2.718 ||| 0-0 ||| 151 1.17835e+06 +en ||| particularly in the ||| 0.000745156 0.605812 8.48644e-07 5.0604e-06 2.718 ||| 0-1 ||| 1342 1.17835e+06 +en ||| particularly in view ||| 0.0060241 0.605812 8.48644e-07 7.44571e-08 2.718 ||| 0-1 ||| 166 1.17835e+06 +en ||| particularly in ||| 0.00777897 0.605812 2.46107e-05 8.24279e-05 2.718 ||| 0-1 ||| 3728 1.17835e+06 +en ||| particularly into ||| 0.1 0.525896 8.48644e-07 3.95151e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| particularly liable ||| 0.142857 0.183344 8.48644e-07 7.5472e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| particularly like ||| 0.00925926 0.183344 8.48644e-07 7.93081e-06 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| particularly members of ||| 0.5 0.183344 8.48644e-07 3.58099e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| particularly members ||| 0.333333 0.183344 8.48644e-07 6.58705e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| particularly of ||| 0.0108108 0.0975003 1.69729e-06 6.09001e-05 2.718 ||| 0-0 0-1 ||| 185 1.17835e+06 +en ||| particularly on ||| 0.00177936 0.22993 8.48644e-07 1.48241e-05 2.718 ||| 0-1 ||| 562 1.17835e+06 +en ||| particularly quickly in ||| 1 0.605812 8.48644e-07 3.73399e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| particularly relevant within the context of ||| 0.5 0.183344 8.48644e-07 4.50028e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| particularly relevant within the context ||| 0.5 0.183344 8.48644e-07 8.27806e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| particularly relevant within the ||| 0.5 0.183344 8.48644e-07 6.16845e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| particularly relevant within ||| 0.5 0.183344 8.48644e-07 1.00477e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| particularly relevant ||| 0.00869565 0.183344 8.48644e-07 4.8052e-07 2.718 ||| 0-0 ||| 115 1.17835e+06 +en ||| particularly severe transport ||| 0.5 0.183344 8.48644e-07 5.9739e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| particularly severe ||| 0.0416667 0.183344 8.48644e-07 5.80554e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| particularly significant ||| 0.00813008 0.183344 8.48644e-07 2.5723e-07 2.718 ||| 0-0 ||| 123 1.17835e+06 +en ||| particularly since ||| 0.00515464 0.183344 8.48644e-07 6.06009e-07 2.718 ||| 0-0 ||| 194 1.17835e+06 +en ||| particularly so ||| 0.0277778 0.183344 8.48644e-07 1.0136e-05 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| particularly stress ||| 0.0666667 0.183344 8.48644e-07 1.58982e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| particularly swift in ||| 1 0.605812 8.48644e-07 4.45111e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| particularly to ||| 0.00478469 0.10404 1.69729e-06 0.000125526 2.718 ||| 0-0 0-1 ||| 418 1.17835e+06 +en ||| particularly true given that ||| 0.25 0.183344 8.48644e-07 8.33148e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| particularly true given ||| 0.166667 0.183344 8.48644e-07 4.95284e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| particularly true ||| 0.010582 0.183344 1.69729e-06 7.21673e-07 2.718 ||| 0-0 ||| 189 1.17835e+06 +en ||| particularly when ||| 0.00263158 0.142731 8.48644e-07 1.06266e-06 2.718 ||| 0-1 ||| 380 1.17835e+06 +en ||| particularly where ||| 0.00487805 0.247783 8.48644e-07 1.52021e-06 2.718 ||| 0-1 ||| 205 1.17835e+06 +en ||| particularly with regard ||| 0.00230415 0.0535436 8.48644e-07 1.41703e-09 2.718 ||| 0-1 ||| 434 1.17835e+06 +en ||| particularly with ||| 0.00539811 0.0535436 3.39458e-06 2.08111e-06 2.718 ||| 0-1 ||| 741 1.17835e+06 +en ||| particularly ||| 0.00272489 0.183344 6.53456e-05 0.0044658 2.718 ||| 0-0 ||| 28258 1.17835e+06 +en ||| parties , especially in ||| 1 0.605812 8.48644e-07 3.24581e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| parties at European ||| 1 0.321886 8.48644e-07 9.81818e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| parties at ||| 0.0344828 0.321886 8.48644e-07 2.93615e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| parties in the chain ||| 1 0.605812 8.48644e-07 2.16409e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| parties in the ||| 0.0075188 0.605812 8.48644e-07 2.08086e-06 2.718 ||| 0-1 ||| 133 1.17835e+06 +en ||| parties in ||| 0.01 0.605812 2.54593e-06 3.38947e-05 2.718 ||| 0-1 ||| 300 1.17835e+06 +en ||| parties involved ||| 0.00184162 0.0101887 8.48644e-07 7.44276e-09 2.718 ||| 0-1 ||| 543 1.17835e+06 +en ||| parties on ||| 0.0263158 0.22993 8.48644e-07 6.09575e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| parties to ||| 0.00146628 0.0247351 8.48644e-07 2.06315e-06 2.718 ||| 0-1 ||| 682 1.17835e+06 +en ||| partly , ||| 0.0434783 0.294632 8.48644e-07 9.84328e-05 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| partly because if ||| 0.5 0.294632 8.48644e-07 2.26637e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| partly because ||| 0.00289855 0.294632 8.48644e-07 2.71226e-07 2.718 ||| 0-0 ||| 345 1.17835e+06 +en ||| partly due ||| 0.0181818 0.294632 1.69729e-06 2.28141e-07 2.718 ||| 0-0 ||| 110 1.17835e+06 +en ||| partly for the ||| 0.142857 0.294632 8.48644e-07 3.89456e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| partly for ||| 0.0512821 0.294632 1.69729e-06 6.34378e-06 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| partly in my capacity ||| 0.5 0.605812 8.48644e-07 7.33751e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| partly in my ||| 0.333333 0.605812 8.48644e-07 1.00376e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| partly in ||| 0.0125 0.605812 8.48644e-07 1.56082e-05 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| partly meeting its obligations under ||| 1 0.205566 8.48644e-07 4.54866e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| partly on ||| 0.0163934 0.22993 8.48644e-07 2.80704e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| partly put up ||| 0.25 0.294632 8.48644e-07 3.10385e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| partly put ||| 0.25 0.294632 8.48644e-07 9.10086e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| partly so ||| 0.125 0.294632 8.48644e-07 1.87341e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| partly through ||| 0.0192308 0.294632 8.48644e-07 3.79932e-07 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| partly to blame ||| 0.0416667 0.294632 8.48644e-07 1.74558e-09 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| partly to ||| 0.0120482 0.294632 8.48644e-07 7.33436e-05 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| partly under ||| 0.0909091 0.294632 8.48644e-07 2.96154e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| partly ||| 0.0109726 0.294632 1.86702e-05 0.0008254 2.718 ||| 0-0 ||| 2005 1.17835e+06 +en ||| partner at ||| 0.333333 0.321886 8.48644e-07 1.00805e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| partner countries to ||| 0.0384615 0.0247351 8.48644e-07 2.68953e-10 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| partner country under ||| 1 0.205566 8.48644e-07 5.12843e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| partner in question ||| 0.5 0.605812 8.48644e-07 9.62719e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| partner in the ||| 0.0232558 0.605812 8.48644e-07 7.14409e-07 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| partner in ||| 0.0357143 0.605812 3.39458e-06 1.16369e-05 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| partner of the European Union . ||| 0.333333 0.0116562 8.48644e-07 1.1911e-16 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| partner of the European Union ||| 0.142857 0.0116562 8.48644e-07 3.93233e-14 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| partner of the European ||| 1 0.0116562 8.48644e-07 7.05477e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| partner of the ||| 0.0357143 0.0116562 8.48644e-07 2.10974e-08 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| partner of ||| 0.0697674 0.0116562 2.54593e-06 3.43652e-07 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| partner on ||| 0.133333 0.22993 1.69729e-06 2.09282e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| partners for ||| 0.0625 0.0286209 8.48644e-07 2.94533e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| partners in early childhood ||| 0.5 0.605812 8.48644e-07 1.76071e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| partners in early ||| 0.5 0.605812 8.48644e-07 8.00322e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| partners in seeking ||| 0.333333 0.605812 8.48644e-07 5.99355e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| partners in the ||| 0.00416667 0.605812 8.48644e-07 7.25749e-07 2.718 ||| 0-1 ||| 240 1.17835e+06 +en ||| partners in ||| 0.0190024 0.605812 6.78915e-06 1.18216e-05 2.718 ||| 0-1 ||| 421 1.17835e+06 +en ||| partners on numerous occasions ||| 0.5 0.22993 8.48644e-07 9.95326e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| partners on numerous ||| 0.5 0.22993 8.48644e-07 3.74183e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| partners on ||| 0.0322581 0.22993 8.48644e-07 2.12604e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| partnership and assist it in ||| 1 0.605812 8.48644e-07 4.1548e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| partnership in ||| 0.021978 0.605812 1.69729e-06 9.97447e-06 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| partnerships that will ensure lasting stability in ||| 1 0.605812 8.48644e-07 2.03546e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| parts for ||| 0.0333333 0.0286209 8.48644e-07 6.70753e-07 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| parts in ||| 0.1 0.605812 1.69729e-06 2.69218e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| parts of it ||| 0.0192308 0.0004304 8.48644e-07 1.35347e-09 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| parts of ||| 0.00489896 0.0116562 6.78915e-06 7.95037e-07 2.718 ||| 0-1 ||| 1633 1.17835e+06 +en ||| parts to ||| 0.03125 0.0247351 8.48644e-07 1.63871e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| parts ||| 0.000226655 0.0004304 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 4412 1.17835e+06 +en ||| party at ||| 0.0769231 0.321886 8.48644e-07 2.73614e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| party in ||| 0.0461538 0.605812 5.09187e-06 3.15858e-05 2.718 ||| 0-1 ||| 130 1.17835e+06 +en ||| party to ||| 0.0096463 0.0247351 2.54593e-06 1.92261e-06 2.718 ||| 0-1 ||| 311 1.17835e+06 +en ||| pass from ||| 0.0588235 0.0308834 8.48644e-07 2.17652e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| pass in ||| 0.214286 0.605812 2.54593e-06 2.64139e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| pass on to ||| 0.0153846 0.0247351 8.48644e-07 1.07578e-08 2.718 ||| 0-2 ||| 65 1.17835e+06 +en ||| pass on ||| 0.00821918 0.22993 2.54593e-06 4.75037e-06 2.718 ||| 0-1 ||| 365 1.17835e+06 +en ||| pass through ||| 0.00819672 0.0366102 8.48644e-07 5.37909e-08 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| pass us by in ||| 1 0.605812 8.48644e-07 3.99691e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| passage in ||| 0.0666667 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| passed by a ||| 0.0526316 0.0468744 8.48644e-07 2.69992e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| passed by ||| 0.00568182 0.0468744 8.48644e-07 6.09108e-07 2.718 ||| 0-1 ||| 176 1.17835e+06 +en ||| passed elsewhere ||| 1 0.226899 8.48644e-07 5.64638e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| passed for ||| 0.142857 0.0286209 8.48644e-07 8.23772e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| passed in ||| 0.103448 0.605812 7.6378e-06 3.30635e-05 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| passed on as ||| 0.25 0.22993 8.48644e-07 6.06781e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| passed on to ||| 0.0163934 0.22993 1.69729e-06 5.28374e-07 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| passed on ||| 0.0352113 0.22993 8.48644e-06 5.94627e-06 2.718 ||| 0-1 ||| 284 1.17835e+06 +en ||| passed over in modest silence ||| 0.5 0.605812 8.48644e-07 3.18402e-19 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| passed over in modest ||| 0.5 0.605812 8.48644e-07 6.36804e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| passed over in ||| 0.125 0.381874 1.69729e-06 1.32492e-07 2.718 ||| 0-1 0-2 ||| 16 1.17835e+06 +en ||| passengers at ||| 0.0666667 0.321886 8.48644e-07 2.72014e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| passengers on ||| 0.0163934 0.22993 8.48644e-07 5.64729e-07 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| passengers travel by ||| 1 0.0468744 8.48644e-07 2.18666e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| passing amusement at ||| 1 0.321886 8.48644e-07 4.0962e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| passing on to ||| 0.0833333 0.22993 8.48644e-07 1.88916e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| passing on ||| 0.0267857 0.22993 2.54593e-06 2.12604e-06 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| passing reference to ||| 0.2 0.0247351 8.48644e-07 6.13795e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| passing their final days in ||| 1 0.605812 8.48644e-07 6.6598e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| passing through ||| 0.0104167 0.0366102 8.48644e-07 2.40742e-08 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| passive in ||| 0.0555556 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| past had a raw deal in ||| 1 0.605812 8.48644e-07 1.28506e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| past in Western ||| 0.5 0.605812 8.48644e-07 7.69004e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| past in ||| 0.0410959 0.605812 2.54593e-06 5.91542e-05 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| past when ||| 0.0416667 0.142731 8.48644e-07 7.62618e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| patents in ||| 0.025641 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| path by ||| 0.2 0.0468744 8.48644e-07 3.24121e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| pay at ||| 0.0769231 0.321886 8.48644e-07 5.72829e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| pay damages in the ||| 1 0.605812 8.48644e-07 1.29909e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| pay damages in ||| 1 0.605812 8.48644e-07 2.11607e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| pay off in ||| 0.166667 0.605812 8.48644e-07 2.69137e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| pay sufficient attention to ||| 0.1 0.0247351 8.48644e-07 5.11156e-14 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| pay to be ||| 0.25 0.0247351 8.48644e-07 7.29466e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| pay to ||| 0.0123457 0.0247351 8.48644e-07 4.02511e-06 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| pay tribute in ||| 0.142857 0.605812 8.48644e-07 1.28286e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| pay tribute to ||| 0.00347222 0.0247351 8.48644e-07 7.80871e-11 2.718 ||| 0-2 ||| 288 1.17835e+06 +en ||| paying aid by ||| 1 0.0468744 8.48644e-07 3.75527e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| payment appropriations planned in ||| 1 0.605812 8.48644e-07 5.89013e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| payment requirements for ||| 1 0.0286209 8.48644e-07 1.40906e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| payments by partner countries to ||| 1 0.0247351 8.48644e-07 4.67381e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| payments in the ||| 0.0333333 0.605812 8.48644e-07 9.38371e-07 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| payments in ||| 0.016 0.605812 1.69729e-06 1.5285e-05 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| payments into ||| 0.2 0.525896 1.69729e-06 7.32745e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| payments within a specified time ||| 1 0.369196 8.48644e-07 2.99088e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| payments within a specified ||| 1 0.369196 8.48644e-07 1.82182e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| payments within a ||| 1 0.369196 8.48644e-07 1.62662e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| payments within ||| 0.1 0.369196 8.48644e-07 3.6697e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| pays any heed ||| 0.5 0.0883838 8.48644e-07 3.09517e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| pays particular attention to the processing of ||| 1 0.0116562 8.48644e-07 1.48144e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| peace at ||| 0.0344828 0.321886 8.48644e-07 1.66808e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| peace concert in ||| 1 0.605812 8.48644e-07 3.46613e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| peace in ||| 0.004329 0.605812 5.09187e-06 1.92563e-05 2.718 ||| 0-1 ||| 1386 1.17835e+06 +en ||| peace negotiations in ||| 0.1 0.605812 8.48644e-07 1.0668e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| peace process on ||| 0.125 0.22993 8.48644e-07 1.48048e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| penalty at ||| 0.25 0.321886 8.48644e-07 5.60028e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| penalty in a ||| 0.25 0.605812 8.48644e-07 2.86563e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| penalty in ||| 0.166667 0.605812 3.39458e-06 6.46494e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| pending US ||| 0.5 0.0928726 8.48644e-07 2.5038e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| pending ||| 0.00574713 0.0928726 5.09187e-06 5.85e-05 2.718 ||| 0-0 ||| 1044 1.17835e+06 +en ||| penetrate through ||| 1 0.323741 8.48644e-07 1.40852e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| penetrate ||| 0.0337079 0.323741 2.54593e-06 3.06e-05 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| penetrating ||| 0.0222222 0.183333 8.48644e-07 7.5e-06 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| pension liabilities of ||| 1 0.0116562 8.48644e-07 1.08005e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| people , not only in ||| 0.333333 0.605812 8.48644e-07 1.84206e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| people , particularly for ||| 1 0.183344 8.48644e-07 3.6028e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| people , particularly ||| 0.02 0.183344 8.48644e-07 4.68766e-07 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| people , too , in ||| 0.5 0.605812 8.48644e-07 7.86732e-09 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| people , who in ||| 0.5 0.605812 8.48644e-07 4.27525e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| people are being shot on sight in ||| 1 0.605812 8.48644e-07 3.02497e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| people are ||| 0.000478469 0.0006429 8.48644e-07 1.42504e-07 2.718 ||| 0-1 ||| 2090 1.17835e+06 +en ||| people at your ||| 0.5 0.321886 8.48644e-07 9.01018e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| people at ||| 0.0131579 0.321886 2.54593e-06 3.52098e-05 2.718 ||| 0-1 ||| 228 1.17835e+06 +en ||| people die in ||| 0.125 0.605812 8.48644e-07 4.67429e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| people elsewhere ||| 0.166667 0.226899 8.48644e-07 6.94126e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| people employed in ||| 0.0333333 0.605812 8.48644e-07 1.1706e-08 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| people for a ||| 0.2 0.0286209 8.48644e-07 4.48882e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| people for ||| 0.00613497 0.0286209 8.48644e-07 1.01269e-05 2.718 ||| 0-1 ||| 163 1.17835e+06 +en ||| people from ||| 0.00143062 0.0308834 8.48644e-07 3.34925e-06 2.718 ||| 0-1 ||| 699 1.17835e+06 +en ||| people had in ||| 1 0.605812 8.48644e-07 4.07964e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| people have , over the ||| 1 0.157937 8.48644e-07 3.08839e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| people have , over ||| 1 0.157937 8.48644e-07 5.03062e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| people have already decided on ||| 0.25 0.22993 8.48644e-07 2.76928e-14 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| people having ||| 0.0434783 0.0065553 8.48644e-07 6.76874e-08 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| people if it were ||| 1 0.0080472 8.48644e-07 3.63372e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| people if it ||| 0.5 0.0080472 8.48644e-07 2.02842e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| people in favour of ||| 0.0909091 0.605812 8.48644e-07 7.14831e-09 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| people in favour ||| 0.0769231 0.605812 8.48644e-07 1.3149e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| people in positions ||| 0.0666667 0.605812 8.48644e-07 1.37383e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| people in power in Sudan ||| 1 0.605812 8.48644e-07 4.67611e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| people in power in ||| 0.5 0.605812 8.48644e-07 1.29892e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| people in power ||| 0.0909091 0.605812 8.48644e-07 6.06844e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| people in the ||| 0.00104603 0.605812 8.48644e-07 2.49533e-05 2.718 ||| 0-1 ||| 956 1.17835e+06 +en ||| people in ||| 0.0204715 0.605812 5.60105e-05 0.00040646 2.718 ||| 0-1 ||| 3224 1.17835e+06 +en ||| people live in ||| 0.0166667 0.605812 8.48644e-07 4.09711e-08 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| people living in ||| 0.011194 0.605812 2.54593e-06 3.40613e-08 2.718 ||| 0-2 ||| 268 1.17835e+06 +en ||| people of Darfur have been involved in ||| 1 0.605812 8.48644e-07 4.27217e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| people of working ||| 0.333333 0.0116562 8.48644e-07 2.28543e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| people of ||| 0.00120627 0.0116562 4.24322e-06 1.20033e-05 2.718 ||| 0-1 ||| 4145 1.17835e+06 +en ||| people on the globe ||| 0.5 0.22993 8.48644e-07 9.87292e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| people on the ||| 0.00564972 0.22993 8.48644e-07 4.48769e-06 2.718 ||| 0-1 ||| 177 1.17835e+06 +en ||| people on ||| 0.015873 0.22993 5.09187e-06 7.30992e-05 2.718 ||| 0-1 ||| 378 1.17835e+06 +en ||| people over ||| 0.00970874 0.157937 8.48644e-07 3.52714e-06 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| people still refer to ||| 1 0.0247351 8.48644e-07 1.45538e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| people taking part in ||| 0.2 0.605812 8.48644e-07 2.05947e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| people to ||| 0.00181708 0.0247351 2.54593e-06 2.47409e-05 2.718 ||| 0-1 ||| 1651 1.17835e+06 +en ||| people we have to ||| 0.5 0.0247351 8.48644e-07 3.35911e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| people were executed in ||| 0.2 0.605812 8.48644e-07 4.22317e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| people when considered in ||| 1 0.605812 8.48644e-07 2.18632e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| people who implement the ||| 1 0.0011669 8.48644e-07 1.24098e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| people who make up the ships ' ||| 1 0.0011669 8.48644e-07 7.33459e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| people who make up the ships ||| 1 0.0011669 8.48644e-07 2.13532e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| people who make up the ||| 0.333333 0.0011669 8.48644e-07 1.3181e-14 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| people who make ||| 0.0294118 0.0001342 8.48644e-07 4.19222e-12 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| people who work out prices in ||| 1 0.605812 8.48644e-07 2.75545e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| people within ||| 0.029703 0.369196 2.54593e-06 9.75851e-06 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| per week ; in ||| 1 0.605812 8.48644e-07 1.92802e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| per year and per week ; in ||| 1 0.605812 8.48644e-07 2.66822e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| per year from the African coasts were ||| 1 0.0117312 8.48644e-07 1.05483e-25 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| per year from the African coasts ||| 1 0.0117312 8.48644e-07 5.88832e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| per year from the African ||| 1 0.0117312 8.48644e-07 2.03046e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| per year from the ||| 0.5 0.0117312 8.48644e-07 1.17367e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| per year from ||| 0.125 0.0117312 8.48644e-07 1.91178e-11 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| per year ||| 0.00131926 0.0117312 8.48644e-07 1.18714e-08 2.718 ||| 0-0 ||| 758 1.17835e+06 +en ||| per ||| 0.00805932 0.0117312 2.12161e-05 4.76e-05 2.718 ||| 0-0 ||| 3102 1.17835e+06 +en ||| perceived by ||| 0.0192308 0.0468744 8.48644e-07 1.13144e-07 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| perceived in ||| 0.272727 0.605812 2.54593e-06 6.14169e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| percentage in ||| 0.142857 0.605812 8.48644e-07 6.83436e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| percentage of ||| 0.00191205 0.0116562 8.48644e-07 2.01828e-07 2.718 ||| 0-1 ||| 523 1.17835e+06 +en ||| perceptible movement in ||| 1 0.605812 8.48644e-07 1.41905e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| perfectly in ||| 0.0232558 0.605812 8.48644e-07 1.75939e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| perfectly legitimate , in a thriving democracy ||| 1 0.605812 8.48644e-07 3.33424e-23 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| perfectly legitimate , in a thriving ||| 1 0.605812 8.48644e-07 1.14579e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| perfectly legitimate , in a ||| 1 0.605812 8.48644e-07 1.04162e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| perfectly legitimate , in ||| 1 0.605812 8.48644e-07 2.34993e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| perfectly within ||| 0.0909091 0.369196 8.48644e-07 4.22403e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| perform in ||| 0.0526316 0.605812 8.48644e-07 7.98881e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| perform within ||| 0.5 0.369196 8.48644e-07 1.918e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| performance at ||| 0.0833333 0.321886 8.48644e-07 9.08045e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| performance in ||| 0.0519481 0.605812 3.39458e-06 1.04824e-05 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| performance-based ||| 0.05 0.416667 8.48644e-07 6.8e-06 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| performed by ||| 0.0217391 0.0468744 1.69729e-06 1.07189e-07 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| performed in ||| 0.0357143 0.605812 8.48644e-07 5.81844e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| performing at ||| 1 0.321886 8.48644e-07 3.16016e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| performing in ||| 0.5 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| perhaps be in ||| 0.2 0.605812 8.48644e-07 1.29466e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| perhaps during ||| 0.2 0.226251 8.48644e-07 4.47284e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| perhaps going ||| 0.166667 0.0001996 8.48644e-07 1.7116e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| perhaps in ||| 0.037234 0.605812 5.94051e-06 7.14375e-05 2.718 ||| 0-1 ||| 188 1.17835e+06 +en ||| perhaps on ||| 0.04 0.22993 8.48644e-07 1.28476e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| perhaps too ||| 0.0357143 0.0011116 8.48644e-07 4.00673e-09 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| perhaps using ||| 0.2 0.0119063 8.48644e-07 9.9008e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| perhaps within ||| 0.142857 0.369196 8.48644e-07 1.71511e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| perhaps ||| 8.62962e-05 0.0001996 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 11588 1.17835e+06 +en ||| period , in ||| 0.166667 0.605812 8.48644e-07 9.60964e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| period during ||| 0.0144928 0.226251 8.48644e-07 5.04532e-07 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| period here , ||| 1 0.0855319 8.48644e-07 6.24319e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| period here ||| 0.333333 0.0855319 8.48644e-07 5.23517e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| period in addition to the ||| 1 0.605812 8.48644e-07 4.33427e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| period in addition to ||| 1 0.605812 8.48644e-07 7.06002e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| period in addition ||| 1 0.605812 8.48644e-07 7.94527e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| period in ||| 0.0138889 0.605812 2.54593e-06 8.05808e-05 2.718 ||| 0-1 ||| 216 1.17835e+06 +en ||| period of ||| 0.00176056 0.0116562 3.39458e-06 2.37966e-06 2.718 ||| 0-1 ||| 2272 1.17835e+06 +en ||| period spent in the ||| 0.5 0.605812 8.48644e-07 3.17103e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| period spent in ||| 0.333333 0.605812 8.48644e-07 5.16523e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| periods in ||| 0.0357143 0.605812 8.48644e-07 6.83436e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| peripheral to ||| 0.2 0.0247351 8.48644e-07 3.09191e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| permanently in ||| 0.0487805 0.605812 1.69729e-06 4.34074e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| permanently with ||| 0.5 0.0535436 8.48644e-07 1.09594e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| permeates ||| 0.136364 0.133333 2.54593e-06 2.7e-06 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| permissible in ||| 0.125 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| permission may be granted in ||| 1 0.605812 8.48644e-07 4.92627e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| permit me to say ||| 0.0714286 0.0247351 8.48644e-07 3.89841e-13 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| permit me to ||| 0.0243902 0.0247351 8.48644e-07 4.07869e-10 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| permit them in ||| 1 0.605812 1.69729e-06 2.98522e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| permits for ||| 0.04 0.0286209 8.48644e-07 2.53114e-08 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| permitted in relation ||| 0.2 0.605812 8.48644e-07 3.19078e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| permitted in ||| 0.025 0.605812 1.69729e-06 1.31146e-05 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| permitted on ||| 0.2 0.22993 8.48644e-07 2.35857e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| permitted under ||| 0.030303 0.205566 8.48644e-07 1.60591e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| permitted ||| 0.000940734 0.0007278 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1063 1.17835e+06 +en ||| perpetrated against him ||| 1 0.153982 8.48644e-07 2.93742e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| perpetrated against ||| 0.0136986 0.153982 8.48644e-07 9.16226e-08 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| perpetrated by ||| 0.00546448 0.0468744 8.48644e-07 1.34412e-07 2.718 ||| 0-1 ||| 183 1.17835e+06 +en ||| perpetrated in the ||| 0.0714286 0.605812 8.48644e-07 4.47923e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| perpetrated in ||| 0.0851064 0.605812 3.39458e-06 7.29614e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| perpetrated there , ||| 1 0.0117359 8.48644e-07 2.11297e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| perpetrated there ||| 1 0.0117359 8.48644e-07 1.77181e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| perpetuated in ||| 0.333333 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| persist just ||| 0.5 0.001725 8.48644e-07 3.1964e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| persistence of conflicting statements ||| 1 0.0116562 8.48644e-07 2.19938e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| persistence of conflicting ||| 1 0.0116562 8.48644e-07 6.87305e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| persistence of ||| 0.012987 0.0116562 8.48644e-07 1.90918e-08 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| persists in ||| 0.0181818 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| person at ||| 0.25 0.321886 1.69729e-06 5.15226e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| person during ||| 1 0.226251 8.48644e-07 3.72399e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| person going over ||| 0.5 0.157937 8.48644e-07 4.41702e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| person in ||| 0.035461 0.605812 4.24322e-06 5.94774e-05 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| person involved in the case ||| 0.5 0.605812 8.48644e-07 1.35092e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| person involved in the ||| 0.5 0.605812 8.48644e-07 1.26266e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| person involved in ||| 0.333333 0.605812 8.48644e-07 2.05673e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| person on ||| 0.037037 0.22993 8.48644e-07 1.06966e-05 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| person to say that those guilty of ||| 1 0.0247351 8.48644e-07 4.8577e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| person to say that those guilty ||| 1 0.0247351 8.48644e-07 8.93551e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| person to say that those ||| 1 0.0247351 8.48644e-07 4.21486e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| person to say that ||| 0.5 0.0247351 8.48644e-07 5.82083e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| person to say ||| 0.2 0.0247351 8.48644e-07 3.46033e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| person to ||| 0.0261438 0.0247351 3.39458e-06 3.62035e-06 2.718 ||| 0-1 ||| 153 1.17835e+06 +en ||| personally , as ||| 0.0238095 0.066968 8.48644e-07 8.3446e-08 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| personally and on ||| 0.0606061 0.22993 1.69729e-06 4.0466e-08 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| personally associated in ||| 1 0.605812 8.48644e-07 9.25109e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| personally do , in ||| 1 0.605812 8.48644e-07 7.35912e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| personally witness ||| 0.5 0.0039506 8.48644e-07 1.5696e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| personally ||| 0.00127307 0.0039506 3.39458e-06 1.09e-05 2.718 ||| 0-0 ||| 3142 1.17835e+06 +en ||| persons , insofar as ||| 1 0.066968 8.48644e-07 1.71236e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| persons are in ||| 0.5 0.605812 8.48644e-07 3.60833e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| persons entering ||| 0.111111 0.284907 8.48644e-07 1.76645e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| persons from ||| 0.030303 0.0308834 8.48644e-07 1.95963e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| persons in ||| 0.07 0.605812 5.94051e-06 2.37817e-05 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| persons on ||| 0.0833333 0.22993 8.48644e-07 4.27699e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| persons under ||| 0.0416667 0.205566 8.48644e-07 2.91212e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| persons with ||| 0.00438596 0.0535436 8.48644e-07 6.00433e-07 2.718 ||| 0-1 ||| 228 1.17835e+06 +en ||| persons within ||| 0.025 0.369196 8.48644e-07 5.70965e-07 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| perspective , to think ||| 0.5 0.0247351 8.48644e-07 4.15419e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| perspective , to ||| 0.25 0.0247351 8.48644e-07 1.08606e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| perspective during ||| 1 0.226251 8.48644e-07 9.36781e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| perspective in ||| 0.0384615 0.605812 8.48644e-07 1.49617e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| perspective of ||| 0.00263158 0.0116562 8.48644e-07 4.41839e-07 2.718 ||| 0-1 ||| 380 1.17835e+06 +en ||| persuaded to ||| 0.037037 0.0247351 8.48644e-07 1.32109e-07 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| pertaining to ||| 0.00966184 0.0166049 1.69729e-06 3.93516e-08 2.718 ||| 0-0 0-1 ||| 207 1.17835e+06 +en ||| perverted to ||| 0.5 0.0247351 8.48644e-07 1.12433e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| pessimistic in ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| pest in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| petty cash on ||| 1 0.22993 8.48644e-07 1.61446e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| phase in ||| 0.0192308 0.605812 1.69729e-06 1.08057e-05 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| phase of ||| 0.00197628 0.0116562 8.48644e-07 3.19106e-07 2.718 ||| 0-1 ||| 506 1.17835e+06 +en ||| phase-out of ||| 0.0833333 0.0116562 8.48644e-07 5.4548e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| phased into ||| 0.5 0.525896 8.48644e-07 1.04045e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| phased out in ||| 0.166667 0.605812 8.48644e-07 8.31339e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| phasing out at ||| 0.5 0.321886 8.48644e-07 4.90316e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| phenomenon has nothing to ||| 0.5 0.0247351 8.48644e-07 4.25436e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| phenomenon in ||| 0.04 0.605812 8.48644e-07 7.29614e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| phone in ||| 0.333333 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| phone to ||| 0.0769231 0.0247351 8.48644e-07 1.0119e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| phrase in ||| 0.0588235 0.605812 8.48644e-07 6.14169e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| piano in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| pick on ||| 0.0909091 0.22993 8.48644e-07 1.64436e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| pick or to ||| 0.5 0.0247351 8.48644e-07 6.36297e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| pick their way through ||| 0.5 0.0366102 8.48644e-07 4.65229e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| picking over ||| 1 0.157937 8.48644e-07 1.60288e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| picks out ||| 0.333333 0.0120599 8.48644e-07 3.8535e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| picture , in ||| 0.5 0.605812 8.48644e-07 1.88338e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| picture in my ||| 0.2 0.605812 8.48644e-07 1.01564e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| picture in ||| 0.0357143 0.605812 8.48644e-07 1.57929e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| picture shown in ||| 1 0.605812 8.48644e-07 1.64878e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| picture when I listen to Mr Tomlinson ||| 1 0.142731 8.48644e-07 3.65823e-24 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| picture when I listen to Mr ||| 1 0.142731 8.48644e-07 1.26146e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| picture when I listen to ||| 1 0.142731 8.48644e-07 1.93238e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| picture when I listen ||| 1 0.142731 8.48644e-07 2.17468e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| picture when I ||| 1 0.142731 8.48644e-07 1.44018e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| picture when ||| 0.5 0.142731 8.48644e-07 2.03603e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| piece in ||| 0.0833333 0.605812 8.48644e-07 4.41925e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| piece of ||| 0.00904977 0.0116562 5.09187e-06 1.30506e-06 2.718 ||| 0-1 ||| 663 1.17835e+06 +en ||| pig 's ear into ||| 1 0.525896 8.48644e-07 1.23271e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| pig in ||| 1 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| piling up in ||| 0.25 0.605812 8.48644e-07 1.73239e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| pilot ||| 0.000829876 0.0008929 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1205 1.17835e+06 +en ||| pipeline in ||| 0.125 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| pipeline on ||| 0.25 0.22993 8.48644e-07 1.1959e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| piqued description used by ||| 1 0.0468744 8.48644e-07 1.83937e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| piracy in ||| 0.0277778 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| pitted ||| 0.0588235 0.0208333 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| place , in a ||| 0.25 0.605812 8.48644e-07 3.67371e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| place , in ||| 0.037037 0.605812 8.48644e-07 8.28797e-05 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| place ; in ||| 0.5 0.605812 8.48644e-07 2.14054e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| place at a ||| 0.0238095 0.321886 8.48644e-07 2.66855e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| place at the ||| 0.003861 0.321886 8.48644e-07 3.69597e-06 2.718 ||| 0-1 ||| 259 1.17835e+06 +en ||| place at ||| 0.0467572 0.321886 2.6308e-05 6.0203e-05 2.718 ||| 0-1 ||| 663 1.17835e+06 +en ||| place by ||| 0.00847458 0.0468744 8.48644e-07 1.28032e-05 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| place during ||| 0.028169 0.226251 3.39458e-06 4.35141e-06 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| place for ||| 0.00775194 0.0286209 3.39458e-06 1.73153e-05 2.718 ||| 0-1 ||| 516 1.17835e+06 +en ||| place in January ||| 0.0833333 0.605812 8.48644e-07 4.72587e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| place in Moscow amidst great media excitement ||| 1 0.605812 8.48644e-07 1.09024e-29 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| place in Moscow amidst great media ||| 1 0.605812 8.48644e-07 1.55748e-23 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| place in Moscow amidst great ||| 1 0.605812 8.48644e-07 5.40792e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| place in Moscow amidst ||| 1 0.605812 8.48644e-07 1.37606e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| place in Moscow ||| 0.142857 0.605812 8.48644e-07 1.25096e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| place in forms in which ||| 1 0.605812 8.48644e-07 1.12716e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| place in forms in ||| 1 0.605812 8.48644e-07 1.32691e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| place in legal circles ||| 1 0.605812 8.48644e-07 5.49424e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| place in legal ||| 1 0.605812 8.48644e-07 9.00695e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| place in or ||| 0.333333 0.605812 8.48644e-07 7.94571e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| place in the ||| 0.00694444 0.605812 4.24322e-06 4.26661e-05 2.718 ||| 0-1 ||| 720 1.17835e+06 +en ||| place in ||| 0.111278 0.605812 0.000252047 0.000694981 2.718 ||| 0-1 ||| 2669 1.17835e+06 +en ||| place of a ||| 0.0588235 0.0116562 8.48644e-07 9.09729e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| place of ||| 0.00258398 0.0116562 1.69729e-06 2.05237e-05 2.718 ||| 0-1 ||| 774 1.17835e+06 +en ||| place on a ||| 0.08 0.22993 1.69729e-06 5.54019e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| place on ||| 0.0157729 0.22993 1.69729e-05 0.000124988 2.718 ||| 0-1 ||| 1268 1.17835e+06 +en ||| place over ||| 0.0555556 0.157937 2.54593e-06 6.03084e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| place there ||| 0.0172414 0.0117359 8.48644e-07 1.68771e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| place through ||| 0.0185185 0.0366102 8.48644e-07 1.4153e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| place to ||| 0.00361011 0.0247351 1.69729e-06 4.2303e-05 2.718 ||| 0-1 ||| 554 1.17835e+06 +en ||| place under ||| 0.0314961 0.205566 3.39458e-06 8.51017e-06 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| place up in ||| 1 0.605812 8.48644e-07 2.37023e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| place us in a ||| 0.5 0.605812 8.48644e-07 8.87878e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| place us in ||| 0.25 0.605812 8.48644e-07 2.00307e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| place when ||| 0.0238095 0.142731 8.48644e-07 8.95972e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| place where ||| 0.00632911 0.247783 1.69729e-06 1.28175e-05 2.718 ||| 0-1 ||| 316 1.17835e+06 +en ||| place with ||| 0.00617284 0.0535436 8.48644e-07 1.75466e-05 2.718 ||| 0-1 ||| 162 1.17835e+06 +en ||| place within ||| 0.0978261 0.369196 1.52756e-05 1.66855e-05 2.718 ||| 0-1 ||| 184 1.17835e+06 +en ||| placed at ||| 0.0625 0.321886 3.39458e-06 5.00825e-06 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| placed before the judicial authorities ||| 1 0.0011669 8.48644e-07 7.76631e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| placed before the judicial ||| 1 0.0011669 8.48644e-07 1.16611e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| placed before the ||| 0.25 0.0011669 8.48644e-07 8.9701e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| placed in ||| 0.100806 0.605812 2.12161e-05 5.7815e-05 2.718 ||| 0-1 ||| 248 1.17835e+06 +en ||| placed into ||| 0.285714 0.525896 1.69729e-06 2.77159e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| placed on a ||| 0.047619 0.22993 8.48644e-07 4.60885e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| placed on that ||| 0.25 0.22993 8.48644e-07 1.74905e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| placed on the agenda as ||| 0.5 0.066968 8.48644e-07 9.18619e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| placed on ||| 0.101633 0.22993 4.75241e-05 1.03977e-05 2.718 ||| 0-1 ||| 551 1.17835e+06 +en ||| placed one after the other ||| 1 0.0144723 8.48644e-07 1.10149e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| placed one after the ||| 1 0.0144723 8.48644e-07 8.50244e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| placed one after ||| 1 0.0144723 8.48644e-07 1.38495e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| placed under ||| 0.0384615 0.205566 1.69729e-06 7.07956e-07 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| placed where ||| 0.2 0.247783 8.48644e-07 1.06628e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| placed within ||| 0.111111 0.369196 8.48644e-07 1.38805e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| placed ||| 0.00299043 0.0080412 4.24322e-06 1.7e-05 2.718 ||| 0-0 ||| 1672 1.17835e+06 +en ||| places , in various ||| 1 0.605812 8.48644e-07 4.49795e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| places , in ||| 0.1 0.605812 8.48644e-07 2.91318e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| places a strong emphasis ||| 0.25 0.0033428 8.48644e-07 1.75187e-15 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| places in ||| 0.0603448 0.605812 5.94051e-06 2.44282e-05 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| places lends itself ||| 0.5 0.0245169 8.48644e-07 5.81646e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| places on record ||| 0.2 0.22993 8.48644e-07 2.45144e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| places on ||| 0.0925926 0.22993 4.24322e-06 4.39326e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| places such as ||| 0.0263158 0.066968 8.48644e-07 1.96868e-09 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| places where ||| 0.0123967 0.247783 2.54593e-06 4.50528e-07 2.718 ||| 0-1 ||| 242 1.17835e+06 +en ||| placing bets with ||| 1 0.0535436 8.48644e-07 1.10993e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| placing in ||| 0.0526316 0.605812 8.48644e-07 1.09904e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| placing it on ||| 0.0833333 0.22993 8.48644e-07 3.51494e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| placing on ||| 0.0136986 0.22993 8.48644e-07 1.97655e-06 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| placing ourselves at ||| 1 0.321886 8.48644e-07 3.02846e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| placing us in ||| 1 0.605812 8.48644e-07 3.16765e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| plain in ||| 0.1 0.605812 8.48644e-07 6.83436e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| plainly showed that ||| 1 0.0017499 8.48644e-07 6.42589e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| plan , of ||| 0.5 0.0116562 8.48644e-07 1.18881e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| plan for stimulating ||| 1 0.0286209 8.48644e-07 2.10258e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| plan for ||| 0.008 0.0286209 3.39458e-06 8.4103e-07 2.718 ||| 0-1 ||| 500 1.17835e+06 +en ||| plan in ||| 0.0238095 0.605812 1.69729e-06 3.37562e-05 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| plan that on ||| 1 0.22993 8.48644e-07 1.02121e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| plan with ||| 0.0416667 0.0535436 8.48644e-07 8.52266e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| planned according to ||| 0.333333 0.0416907 8.48644e-07 4.07497e-10 2.718 ||| 0-1 0-2 ||| 3 1.17835e+06 +en ||| planned for ||| 0.00609756 0.0286209 1.69729e-06 3.93478e-07 2.718 ||| 0-1 ||| 328 1.17835e+06 +en ||| planned in ||| 0.0416667 0.605812 3.39458e-06 1.57929e-05 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| planned to ||| 0.00833333 0.0247351 8.48644e-07 9.61304e-07 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| planning to do ||| 0.0666667 0.0247351 8.48644e-07 2.71335e-09 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| planning to ||| 0.010582 0.0247351 1.69729e-06 7.89843e-07 2.718 ||| 0-1 ||| 189 1.17835e+06 +en ||| planning with ||| 0.333333 0.0535436 1.69729e-06 3.27615e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| plans for ||| 0.00587084 0.0286209 2.54593e-06 4.84369e-07 2.718 ||| 0-1 ||| 511 1.17835e+06 +en ||| plans in ||| 0.0571429 0.605812 3.39458e-06 1.9441e-05 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| plans to ||| 0.00323102 0.0247351 1.69729e-06 1.18336e-06 2.718 ||| 0-1 ||| 619 1.17835e+06 +en ||| plant in ||| 0.0555556 0.605812 1.69729e-06 4.98724e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| planted on ||| 0.142857 0.22993 8.48644e-07 1.49487e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| play , in regard to underpinning ||| 1 0.605812 8.48644e-07 1.20348e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| play , in regard to ||| 1 0.605812 8.48644e-07 8.59631e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| play , in regard ||| 1 0.605812 8.48644e-07 9.67419e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| play , in ||| 0.333333 0.605812 8.48644e-07 1.42079e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| play a ||| 0.000457247 0.0015231 8.48644e-07 2.12592e-07 2.718 ||| 0-1 ||| 2187 1.17835e+06 +en ||| play at ||| 0.0333333 0.321886 8.48644e-07 1.03205e-05 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| play down ||| 0.031746 0.0183476 1.69729e-06 5.6889e-08 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| play for high stakes in ||| 1 0.605812 8.48644e-07 5.46839e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| play for ||| 0.03125 0.0286209 8.48644e-07 2.96834e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| play in a ||| 0.166667 0.605812 8.48644e-07 5.28095e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| play in all this ||| 0.5 0.605812 8.48644e-07 3.63765e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| play in all ||| 0.166667 0.605812 8.48644e-07 5.62982e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| play in creating ||| 0.0833333 0.605812 8.48644e-07 6.94583e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| play in the publication of ||| 1 0.605812 8.48644e-07 2.42553e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| play in the publication ||| 1 0.605812 8.48644e-07 4.46166e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| play in the ||| 0.00858369 0.605812 1.69729e-06 7.31419e-06 2.718 ||| 0-1 ||| 233 1.17835e+06 +en ||| play in ||| 0.152727 0.605812 0.000106929 0.00011914 2.718 ||| 0-1 ||| 825 1.17835e+06 +en ||| play on ||| 0.0363636 0.22993 1.69729e-06 2.14265e-05 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| play with regard to ||| 0.0909091 0.0535436 8.48644e-07 1.81994e-10 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| play with regard ||| 0.111111 0.0535436 8.48644e-07 2.04814e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| play with ||| 0.0169492 0.0535436 8.48644e-07 3.008e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| played a key role in ||| 0.0217391 0.605812 8.48644e-07 1.62865e-14 2.718 ||| 0-4 ||| 46 1.17835e+06 +en ||| played a part here ||| 0.2 0.0855319 8.48644e-07 7.81607e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| played a part in ||| 0.0222222 0.605812 8.48644e-07 1.20306e-09 2.718 ||| 0-3 ||| 45 1.17835e+06 +en ||| played at ||| 0.333333 0.321886 8.48644e-07 1.9721e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| played by ||| 0.00257732 0.0468744 1.69729e-06 4.194e-07 2.718 ||| 0-1 ||| 776 1.17835e+06 +en ||| played in the ||| 0.0277778 0.605812 8.48644e-07 1.39763e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| played in ||| 0.0704225 0.605812 8.48644e-06 2.27658e-05 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| played on a window ||| 0.5 0.22993 8.48644e-07 2.0326e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| played on a ||| 0.25 0.22993 8.48644e-07 1.81483e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| played on ||| 0.222222 0.22993 1.69729e-06 4.09429e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| played out in ||| 0.181818 0.605812 1.69729e-06 8.72022e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| player and should participate , especially when ||| 1 0.142731 8.48644e-07 5.49046e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| player in ||| 0.0377358 0.605812 1.69729e-06 3.32482e-06 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| player on ||| 0.0526316 0.22993 8.48644e-07 5.97948e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| player within ||| 0.5 0.369196 8.48644e-07 7.98242e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| players in ||| 0.00621118 0.605812 8.48644e-07 7.8041e-06 2.718 ||| 0-1 ||| 161 1.17835e+06 +en ||| players on ||| 0.0625 0.22993 8.48644e-07 1.40352e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| players when ||| 0.333333 0.142731 8.48644e-07 1.00611e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| playing an active role in ||| 0.0434783 0.605812 8.48644e-07 1.2101e-15 2.718 ||| 0-4 ||| 23 1.17835e+06 +en ||| playing around on ||| 1 0.22993 8.48644e-07 7.28989e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| playing field given ||| 0.5 0.0546585 8.48644e-07 1.11771e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| playing in ||| 0.0625 0.605812 1.69729e-06 3.04314e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| playing into the ||| 0.0454545 0.525896 8.48644e-07 8.95613e-08 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| playing into ||| 0.0714286 0.525896 1.69729e-06 1.45885e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| playing ||| 0.00160385 0.0012605 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 1247 1.17835e+06 +en ||| plays in ||| 0.0714286 0.605812 3.39458e-06 6.64965e-06 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| plays into ||| 0.0714286 0.525896 8.48644e-07 3.18777e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| please at ||| 0.2 0.321886 8.48644e-07 3.55618e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| please in ||| 0.333333 0.605812 8.48644e-07 4.10523e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| pleased at ||| 0.0217391 0.321886 8.48644e-07 1.62808e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| pleased that in ||| 0.0384615 0.605812 8.48644e-07 3.16153e-07 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| pleased to note that in ||| 0.2 0.605812 8.48644e-07 2.93289e-12 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| pleased to say that on ||| 0.5 0.22993 8.48644e-07 4.829e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| pleased to ||| 0.00210526 0.0247351 1.69729e-06 1.14401e-06 2.718 ||| 0-1 ||| 950 1.17835e+06 +en ||| pleasure , on behalf of ||| 0.166667 0.22993 8.48644e-07 3.89272e-12 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| pleasure , on behalf ||| 0.166667 0.22993 8.48644e-07 7.16048e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| pleasure , on ||| 0.333333 0.22993 1.69729e-06 2.24819e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| pleasure in ||| 0.0169492 0.605812 8.48644e-07 1.04824e-05 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| pleasure trip to ||| 0.5 0.0247351 8.48644e-07 3.89216e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| pledged by ||| 0.125 0.0468744 8.48644e-07 3.65805e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| plenty in ||| 1 0.605812 8.48644e-07 4.98724e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| plunged into ||| 0.030303 0.525896 8.48644e-07 4.87021e-08 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| plus in ||| 0.2 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| point , and clarification is needed in ||| 1 0.605812 8.48644e-07 3.08947e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| point , during ||| 0.5 0.226251 8.48644e-07 3.01632e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| point , in ||| 0.0689655 0.605812 1.69729e-06 4.81749e-05 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| point , to ||| 0.05 0.0247351 8.48644e-07 2.93237e-06 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| point - on ||| 0.125 0.22993 8.48644e-07 2.74046e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| point I personally do , in ||| 1 0.605812 8.48644e-07 4.55375e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| point at which it makes use ||| 0.5 0.321886 8.48644e-07 4.36668e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| point at which it makes ||| 0.5 0.321886 8.48644e-07 8.98125e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| point at which it ||| 0.125 0.321886 8.48644e-07 5.2862e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| point at which ||| 0.0194175 0.321886 1.69729e-06 2.97258e-07 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| point at ||| 0.0242718 0.321886 4.24322e-06 3.49937e-05 2.718 ||| 0-1 ||| 206 1.17835e+06 +en ||| point blank in ||| 1 0.605812 8.48644e-07 7.27139e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| point during ||| 0.105263 0.226251 1.69729e-06 2.52931e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| point either , in ||| 1 0.605812 8.48644e-07 4.17098e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| point for ||| 0.00613497 0.0286209 8.48644e-07 1.00647e-05 2.718 ||| 0-1 ||| 163 1.17835e+06 +en ||| point here , in the ||| 1 0.605812 8.48644e-07 5.9973e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| point here , in ||| 1 0.605812 8.48644e-07 9.7689e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| point in our ||| 0.0454545 0.605812 8.48644e-07 5.57231e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| point in the ||| 0.00420168 0.605812 8.48644e-07 2.48002e-05 2.718 ||| 0-1 ||| 238 1.17835e+06 +en ||| point in time ||| 0.011236 0.605812 1.69729e-06 6.63191e-07 2.718 ||| 0-1 ||| 178 1.17835e+06 +en ||| point in ||| 0.057508 0.605812 4.58268e-05 0.000403966 2.718 ||| 0-1 ||| 939 1.17835e+06 +en ||| point into ||| 0.5 0.525896 8.48644e-07 1.93657e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| point is that , in ||| 0.0588235 0.605812 8.48644e-07 2.53981e-08 2.718 ||| 0-4 ||| 17 1.17835e+06 +en ||| point is that ||| 0.001321 0.0017499 8.48644e-07 2.86565e-08 2.718 ||| 0-2 ||| 757 1.17835e+06 +en ||| point of the ||| 0.00934579 0.0116562 8.48644e-07 7.32383e-07 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| point of view , in ||| 0.111111 0.605812 8.48644e-07 2.36572e-09 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| point of view in ||| 0.0769231 0.605812 8.48644e-07 1.98376e-08 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| point of view into ||| 1 0.525896 8.48644e-07 9.50992e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| point of ||| 0.00183767 0.0116562 1.01837e-05 1.19296e-05 2.718 ||| 0-1 ||| 6530 1.17835e+06 +en ||| point on ||| 0.00763359 0.22993 2.54593e-06 7.26507e-05 2.718 ||| 0-1 ||| 393 1.17835e+06 +en ||| point out , if , at ||| 1 0.321886 8.48644e-07 1.59288e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| point out at ||| 0.111111 0.321886 8.48644e-07 1.3404e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| point out in your report ||| 0.5 0.605812 8.48644e-07 1.62307e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| point out in your ||| 0.166667 0.605812 8.48644e-07 3.95967e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| point out in ||| 0.0851064 0.605812 3.39458e-06 1.54735e-06 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| point out that at some point in ||| 1 0.605812 8.48644e-07 1.03862e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| point so as ||| 1 0.066968 8.48644e-07 3.57156e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| point the way to ||| 0.111111 0.0247351 8.48644e-07 3.25403e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| point to ||| 0.00503356 0.0247351 2.54593e-06 2.45891e-05 2.718 ||| 0-1 ||| 596 1.17835e+06 +en ||| point towards the ||| 0.25 0.0616136 8.48644e-07 5.35015e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| point towards ||| 0.0416667 0.0616136 8.48644e-07 8.71476e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| point when he ||| 0.5 0.142731 8.48644e-07 4.54498e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| point when ||| 0.0114943 0.142731 8.48644e-07 5.20795e-06 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| point where we ||| 0.025641 0.247783 8.48644e-07 8.45783e-08 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| point where ||| 0.0188088 0.247783 5.09187e-06 7.45032e-06 2.718 ||| 0-1 ||| 319 1.17835e+06 +en ||| point with ||| 0.0185185 0.0535436 8.48644e-07 1.01992e-05 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| point ||| 0.000499168 0.0007826 1.27297e-05 2.11e-05 2.718 ||| 0-0 ||| 30050 1.17835e+06 +en ||| pointed out . in ||| 1 0.605812 8.48644e-07 2.46991e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| pointed out at ||| 0.125 0.321886 1.69729e-06 7.06361e-09 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| pointed out in ||| 0.021978 0.605812 3.39458e-06 8.1542e-08 2.718 ||| 0-2 ||| 182 1.17835e+06 +en ||| pointed out ||| 0.000285551 0.0120599 8.48644e-07 2.53781e-08 2.718 ||| 0-1 ||| 3502 1.17835e+06 +en ||| pointed them in the right ||| 0.5 0.605812 8.48644e-07 2.26081e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| pointed them in the ||| 0.5 0.605812 8.48644e-07 3.50567e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| pointed them in ||| 0.5 0.605812 8.48644e-07 5.71032e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| pointing in ||| 0.0869565 0.605812 1.69729e-06 1.04824e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| pointing out in ||| 0.2 0.605812 8.48644e-07 4.01519e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| pointing out ||| 0.0019802 0.0120599 8.48644e-07 1.24963e-08 2.718 ||| 0-1 ||| 505 1.17835e+06 +en ||| pointing to ||| 0.02 0.0247351 8.48644e-07 6.38058e-07 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| points I made in ||| 0.5 0.605812 8.48644e-07 8.88837e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| points as a result ||| 1 0.066968 8.48644e-07 5.45311e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| points as a ||| 0.5 0.066968 8.48644e-07 1.03573e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| points as ||| 0.047619 0.066968 8.48644e-07 2.33663e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| points during ||| 0.5 0.226251 8.48644e-07 3.7558e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| points here ||| 0.0357143 0.0855319 8.48644e-07 3.89713e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| points in the ||| 0.00444444 0.605812 8.48644e-07 3.68261e-06 2.718 ||| 0-1 ||| 225 1.17835e+06 +en ||| points in ||| 0.0305499 0.605812 1.27297e-05 5.99854e-05 2.718 ||| 0-1 ||| 491 1.17835e+06 +en ||| points of ||| 0.000848176 0.0116562 8.48644e-07 1.77145e-06 2.718 ||| 0-1 ||| 1179 1.17835e+06 +en ||| points on the ||| 0.027027 0.22993 8.48644e-07 6.62294e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| points on ||| 0.00892857 0.22993 2.54593e-06 1.0788e-05 2.718 ||| 0-1 ||| 336 1.17835e+06 +en ||| points out in ||| 0.1 0.605812 8.48644e-07 2.29768e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| points that are in ||| 1 0.605812 8.48644e-07 1.531e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| points to the need ||| 0.0526316 0.0247351 8.48644e-07 2.0553e-10 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| points to the ||| 0.0103093 0.0247351 8.48644e-07 2.24158e-07 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| points to ||| 0.00282486 0.0247351 8.48644e-07 3.65127e-06 2.718 ||| 0-1 ||| 354 1.17835e+06 +en ||| points where ||| 0.0178571 0.247783 8.48644e-07 1.10631e-06 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| poised on ||| 1 0.22993 8.48644e-07 1.82706e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| polemics by ||| 0.5 0.0468744 8.48644e-07 3.40284e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| police force in ||| 0.125 0.605812 8.48644e-07 1.30468e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| police forces in ||| 0.0434783 0.605812 8.48644e-07 4.05508e-10 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| police in ||| 0.015873 0.605812 8.48644e-07 7.66557e-06 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| policies from ||| 0.0625 0.0308834 8.48644e-07 2.50756e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| policies in ||| 0.00869565 0.605812 1.69729e-06 3.04314e-05 2.718 ||| 0-1 ||| 230 1.17835e+06 +en ||| policies of solidarity in ||| 1 0.605812 8.48644e-07 4.351e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| policies on ||| 0.00588235 0.22993 1.69729e-06 5.47289e-06 2.718 ||| 0-1 ||| 340 1.17835e+06 +en ||| policies to move towards low ||| 0.25 0.0616136 8.48644e-07 3.21099e-17 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| policies to move towards ||| 0.25 0.0616136 8.48644e-07 8.91943e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| policies to ||| 0.00342466 0.0247351 8.48644e-07 1.85234e-06 2.718 ||| 0-1 ||| 292 1.17835e+06 +en ||| policy and ||| 0.00102459 0.0010182 8.48644e-07 3.63267e-07 2.718 ||| 0-1 ||| 976 1.17835e+06 +en ||| policy around the subject areas ||| 1 0.159384 8.48644e-07 3.44666e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| policy around the subject ||| 1 0.159384 8.48644e-07 1.50575e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| policy around the ||| 1 0.159384 8.48644e-07 2.78945e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| policy around ||| 1 0.159384 8.48644e-07 4.54369e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| policy at ||| 0.0103093 0.321886 8.48644e-07 1.57488e-05 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| policy cannot operate two policies in ||| 1 0.605812 8.48644e-07 3.10122e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| policy concept for Europe as ||| 1 0.0286209 8.48644e-07 1.38926e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| policy concept for Europe ||| 1 0.0286209 8.48644e-07 1.36143e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| policy concept for ||| 1 0.0286209 8.48644e-07 2.69058e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| policy for something ||| 1 0.0286209 8.48644e-07 2.50713e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| policy for ||| 0.00406504 0.0286209 1.69729e-06 4.5296e-06 2.718 ||| 0-1 ||| 492 1.17835e+06 +en ||| policy in the ||| 0.00613497 0.605812 8.48644e-07 1.11612e-05 2.718 ||| 0-1 ||| 163 1.17835e+06 +en ||| policy in ||| 0.0134128 0.605812 7.6378e-06 0.000181803 2.718 ||| 0-1 ||| 671 1.17835e+06 +en ||| policy is decided on the global market ||| 1 0.22993 8.48644e-07 4.44429e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| policy is decided on the global ||| 1 0.22993 8.48644e-07 1.9665e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| policy is decided on the ||| 1 0.22993 8.48644e-07 4.30306e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| policy is decided on ||| 1 0.22993 8.48644e-07 7.00918e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| policy on the one hand and for ||| 1 0.22993 8.48644e-07 3.19433e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| policy on the one hand and ||| 1 0.22993 8.48644e-07 4.1562e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| policy on the one hand ||| 1 0.22993 8.48644e-07 3.31808e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| policy on the one ||| 1 0.22993 8.48644e-07 8.36633e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| policy on the ||| 0.0136986 0.22993 1.69729e-06 2.00728e-06 2.718 ||| 0-1 ||| 146 1.17835e+06 +en ||| policy on ||| 0.00269058 0.22993 2.54593e-06 3.26962e-05 2.718 ||| 0-1 ||| 1115 1.17835e+06 +en ||| policy well in ||| 1 0.605812 8.48644e-07 2.88267e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| policy when it ||| 0.25 0.142731 8.48644e-07 4.16805e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| policy when ||| 0.0714286 0.142731 8.48644e-07 2.34381e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| policy ||| 2.09343e-05 6.04e-05 1.69729e-06 2.7e-06 2.718 ||| 0-0 ||| 95537 1.17835e+06 +en ||| political arena in ||| 0.2 0.605812 8.48644e-07 5.6051e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| political conflict in ||| 0.1 0.605812 8.48644e-07 3.43724e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| political existence by ||| 1 0.0468744 8.48644e-07 1.0493e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| political role in the ||| 0.0714286 0.605812 8.48644e-07 1.12341e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| political role in ||| 0.0434783 0.605812 8.48644e-07 1.8299e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| political threat to ||| 1 0.0247351 8.48644e-07 1.96679e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| political value in themselves ||| 1 0.605812 8.48644e-07 3.10981e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| political value in ||| 0.5 0.605812 8.48644e-07 7.23717e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| politically stronger on ||| 1 0.22993 8.48644e-07 1.65632e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| politically ||| 0.00100301 0.006782 2.54593e-06 1.36e-05 2.718 ||| 0-0 ||| 2991 1.17835e+06 +en ||| politicians on ||| 0.142857 0.22993 8.48644e-07 4.15242e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| politics in our own countries is not ||| 1 0.605812 8.48644e-07 3.94863e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| politics in our own countries is ||| 1 0.605812 8.48644e-07 1.15657e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| politics in our own countries ||| 1 0.605812 8.48644e-07 3.69025e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| politics in our own ||| 1 0.605812 8.48644e-07 9.71886e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| politics in our ||| 0.333333 0.605812 8.48644e-07 5.73283e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| politics in ||| 0.0147059 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| pollution as ||| 0.0555556 0.066968 8.48644e-07 3.30977e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| poor at ||| 0.1 0.321886 8.48644e-07 1.18006e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| poor local fishermen in ||| 1 0.605812 8.48644e-07 3.27173e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| poor regions in ||| 0.166667 0.605812 8.48644e-07 1.1225e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| poorly prepared in ||| 0.5 0.605812 8.48644e-07 1.72157e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| population consists of ||| 0.5 0.201278 8.48644e-07 5.73391e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| population consists ||| 0.5 0.201278 8.48644e-07 1.05473e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| population has increased dramatically in ||| 1 0.605812 8.48644e-07 5.52176e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| population in Europe ||| 0.0243902 0.605812 8.48644e-07 1.43702e-08 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| population in ||| 0.0117647 0.605812 2.54593e-06 2.83995e-05 2.718 ||| 0-1 ||| 255 1.17835e+06 +en ||| population increase in ||| 1 0.605812 8.48644e-07 3.66922e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| population is among the most educated in ||| 1 0.0422459 8.48644e-07 1.01111e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| population is among the most educated ||| 1 0.0422459 8.48644e-07 4.7238e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| population is among the most ||| 1 0.0422459 8.48644e-07 1.6289e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| population is among the ||| 1 0.0422459 8.48644e-07 3.76885e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| population is among ||| 1 0.0422459 8.48644e-07 6.13902e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| population of ||| 0.00284495 0.0116562 1.69729e-06 8.38676e-07 2.718 ||| 0-1 ||| 703 1.17835e+06 +en ||| population there , and ||| 0.5 0.0117359 8.48644e-07 1.0302e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| population there , ||| 0.2 0.0117359 8.48644e-07 8.22453e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| population there ||| 0.111111 0.0117359 8.48644e-07 6.89661e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| port workers in ||| 1 0.605812 8.48644e-07 4.17635e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| portion on a ||| 0.5 0.22993 8.48644e-07 1.17798e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| portion on ||| 0.5 0.22993 8.48644e-07 2.65755e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| portrayed in current abuse ||| 0.1 0.605812 8.48644e-07 4.28604e-15 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| portrayed in current ||| 0.1 0.605812 8.48644e-07 2.43525e-10 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| portrayed in ||| 0.0714286 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| portrayed on the ||| 0.5 0.22993 8.48644e-07 1.63152e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| portrayed on ||| 0.5 0.22993 8.48644e-07 2.65755e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| posed by ||| 0.00367647 0.0468744 1.69729e-06 1.10592e-07 2.718 ||| 0-1 ||| 544 1.17835e+06 +en ||| posed to ||| 0.027027 0.0247351 8.48644e-07 3.65408e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| poses risks to ||| 0.166667 0.0247351 8.48644e-07 3.54614e-12 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| position as ||| 0.00917431 0.066968 1.69729e-06 5.92342e-06 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| position at ||| 0.0666667 0.321886 4.24322e-06 1.31727e-05 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| position here in ||| 0.142857 0.345672 8.48644e-07 4.56209e-07 2.718 ||| 0-1 0-2 ||| 7 1.17835e+06 +en ||| position in which ||| 0.0357143 0.605812 8.48644e-07 1.29173e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| position in ||| 0.0436364 0.605812 2.03675e-05 0.000152065 2.718 ||| 0-1 ||| 550 1.17835e+06 +en ||| position is that in ||| 0.5 0.605812 8.48644e-07 8.01695e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| position is ||| 0.00276243 0.0005032 8.48644e-07 9.41139e-08 2.718 ||| 0-1 ||| 362 1.17835e+06 +en ||| position of ||| 0.000495295 0.0116562 8.48644e-07 4.49066e-06 2.718 ||| 0-1 ||| 2019 1.17835e+06 +en ||| position on ||| 0.0113314 0.22993 1.01837e-05 2.73478e-05 2.718 ||| 0-1 ||| 1059 1.17835e+06 +en ||| position to advance along ||| 1 0.155535 8.48644e-07 8.21683e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| position to comment in ||| 0.333333 0.605812 8.48644e-07 6.17507e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| position to ||| 0.00058309 0.0247351 8.48644e-07 9.25606e-06 2.718 ||| 0-1 ||| 1715 1.17835e+06 +en ||| position we adopt at ||| 1 0.321886 8.48644e-07 1.55522e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| position where ||| 0.0113636 0.247783 1.69729e-06 2.80452e-06 2.718 ||| 0-1 ||| 176 1.17835e+06 +en ||| positions among ||| 1 0.0422459 8.48644e-07 1.07653e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| positions at ||| 0.142857 0.321886 8.48644e-07 1.35207e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| positions in ||| 0.0666667 0.605812 5.09187e-06 1.56082e-05 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| positions of the yards in question ||| 1 0.605812 8.48644e-07 6.03345e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| positions of the yards in ||| 1 0.605812 8.48644e-07 7.29294e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| positive attitude towards ||| 0.037037 0.0616136 8.48644e-07 4.73215e-12 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| positive feedback on ||| 0.2 0.22993 8.48644e-07 1.05804e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| positively received in Turkey ||| 1 0.605812 8.48644e-07 2.28302e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| positively received in ||| 0.5 0.605812 8.48644e-07 3.88931e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| possession in ||| 1 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| possibilities in ||| 0.0277778 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| possibility in ||| 0.0555556 0.605812 8.48644e-07 3.95285e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| possibility of offering ||| 0.111111 0.0116562 8.48644e-07 2.52143e-11 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| possibility of participating , ||| 0.5 0.0116562 8.48644e-07 1.60091e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| possibility of participating ||| 0.1 0.0116562 8.48644e-07 1.34243e-11 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| possibility of ||| 0.000654736 0.0116562 2.54593e-06 1.16733e-06 2.718 ||| 0-1 ||| 4582 1.17835e+06 +en ||| possible , at ||| 0.0416667 0.321886 8.48644e-07 3.82636e-06 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| possible , especially in the ||| 0.333333 0.605812 8.48644e-07 2.17754e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| possible , especially in ||| 0.333333 0.605812 8.48644e-07 3.54696e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| possible , in ||| 0.0114943 0.605812 8.48644e-07 4.41713e-05 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| possible . indeed ||| 1 0.0919982 8.48644e-07 3.96116e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| possible . secondly ||| 1 0.303244 8.48644e-07 1.40623e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| possible as ||| 0.0357143 0.066968 8.48644e-07 1.44281e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| possible at a ||| 0.25 0.321886 8.48644e-07 1.42222e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| possible at ||| 0.0555556 0.321886 4.24322e-06 3.20856e-05 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| possible by ||| 0.00990099 0.0468744 8.48644e-07 6.82354e-06 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| possible degree in ||| 1 0.605812 8.48644e-07 5.12997e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| possible failures in ||| 0.5 0.605812 8.48644e-07 1.5927e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| possible for a ||| 0.0204082 0.0286209 8.48644e-07 4.09053e-07 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| possible for us ||| 0.011236 0.0286209 8.48644e-07 2.65979e-08 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| possible for ||| 0.00707547 0.0286209 7.6378e-06 9.22832e-06 2.718 ||| 0-1 ||| 1272 1.17835e+06 +en ||| possible from ||| 0.025641 0.0308834 8.48644e-07 3.05207e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| possible holders of ||| 0.5 0.0116562 8.48644e-07 3.17209e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| possible in order to ||| 0.0232558 0.605812 8.48644e-07 1.75293e-08 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| possible in order ||| 0.0454545 0.605812 8.48644e-07 1.97272e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| possible in ||| 0.0764331 0.605812 3.05512e-05 0.000370395 2.718 ||| 0-1 ||| 471 1.17835e+06 +en ||| possible mafia groups operating within ||| 1 0.369196 8.48644e-07 3.70877e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| possible on the ||| 0.0222222 0.22993 8.48644e-07 4.0895e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| possible on ||| 0.0537634 0.22993 4.24322e-06 6.66131e-05 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| possible that in ||| 0.1 0.605812 8.48644e-07 6.23063e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| possible to go over to that ||| 0.25 0.157937 8.48644e-07 2.49654e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| possible to go over to ||| 0.25 0.157937 8.48644e-07 1.48413e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| possible to go over ||| 0.25 0.157937 8.48644e-07 1.67022e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| possible to make some gains in terms ||| 0.5 0.605812 8.48644e-07 5.88101e-19 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| possible to make some gains in ||| 0.5 0.605812 8.48644e-07 5.35806e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| possible to make ||| 0.0075188 0.0247351 8.48644e-07 3.91799e-08 2.718 ||| 0-1 ||| 133 1.17835e+06 +en ||| possible to operate throughout ||| 1 0.309047 8.48644e-07 1.0048e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| possible to reach ||| 0.00628931 0.0247351 8.48644e-07 1.8262e-09 2.718 ||| 0-1 ||| 159 1.17835e+06 +en ||| possible to travel , on a ||| 1 0.22993 8.48644e-07 1.18272e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| possible to travel , on ||| 1 0.22993 8.48644e-07 2.66824e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| possible to ||| 0.00204778 0.0247351 7.6378e-06 2.25457e-05 2.718 ||| 0-1 ||| 4395 1.17835e+06 +en ||| possible under ||| 0.015625 0.205566 8.48644e-07 4.53555e-06 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| possible via ||| 0.125 0.0130862 8.48644e-07 3.27257e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| possible with ||| 0.00746269 0.0535436 8.48644e-07 9.3516e-06 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| possible within ||| 0.0169492 0.369196 8.48644e-07 8.89264e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| possible ||| 3.81112e-05 2.65e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 26239 1.17835e+06 +en ||| possible – in ||| 0.25 0.605812 8.48644e-07 1.45565e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| possibly beyond ||| 1 0.0007806 8.48644e-07 1.0486e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| possibly can with ||| 1 0.0535436 8.48644e-07 1.56047e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| possibly even in ||| 0.5 0.605812 8.48644e-07 1.26447e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| possibly in ||| 0.0204082 0.605812 8.48644e-07 2.07801e-05 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| possibly ||| 0.000596659 0.0007806 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 1676 1.17835e+06 +en ||| post in ||| 0.03125 0.605812 8.48644e-07 1.13136e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| post of Director of ||| 0.5 0.0116562 8.48644e-07 2.54287e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| post on ||| 0.5 0.22993 2.54593e-06 2.03469e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| post within ||| 0.166667 0.369196 8.48644e-07 2.71624e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| postal services at ||| 0.2 0.321886 8.48644e-07 2.69053e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| postal services in ||| 0.0285714 0.605812 8.48644e-07 3.10594e-10 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| posted in ||| 0.111111 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| posted workers to annual holidays ||| 1 0.0247351 8.48644e-07 5.20747e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| posted workers to annual ||| 1 0.0247351 8.48644e-07 2.36703e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| posted workers to ||| 0.5 0.0247351 8.48644e-07 8.21887e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| postponed in ||| 0.2 0.605812 1.69729e-06 2.81686e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| postponed to some very ||| 1 0.0247351 8.48644e-07 6.49873e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| postponed to some ||| 1 0.0247351 8.48644e-07 1.86772e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| postponed to ||| 0.0185185 0.0247351 8.48644e-07 1.71461e-07 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| postponed until ||| 0.00900901 0.0092136 8.48644e-07 3.5685e-10 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| posts in ||| 0.0338983 0.605812 1.69729e-06 4.66399e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| potential default of ||| 0.5 0.0116562 8.48644e-07 1.54507e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| potential for ||| 0.00116686 0.0286209 8.48644e-07 5.92518e-07 2.718 ||| 0-1 ||| 857 1.17835e+06 +en ||| potential in ||| 0.0149254 0.605812 1.69729e-06 2.37817e-05 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| poured into ||| 0.047619 0.525896 8.48644e-07 3.98471e-08 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| poured over ||| 1 0.157937 8.48644e-07 7.21296e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| poverty by ||| 0.0163934 0.0468744 8.48644e-07 1.28457e-07 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| powder ||| 0.021978 0.313187 1.69729e-06 3.88e-05 2.718 ||| 0-0 ||| 91 1.17835e+06 +en ||| power , on the ||| 0.166667 0.22993 8.48644e-07 9.07772e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| power , on ||| 0.142857 0.22993 8.48644e-07 1.47865e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| power at ||| 0.0172414 0.321886 8.48644e-07 5.9723e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| power do we have over ||| 1 0.157937 8.48644e-07 2.79044e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| power generation projects based on new technologies ||| 1 0.22993 8.48644e-07 1.2521e-26 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| power generation projects based on new ||| 1 0.22993 8.48644e-07 1.50856e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| power generation projects based on ||| 1 0.22993 8.48644e-07 2.52394e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| power in Indonesia ||| 0.2 0.605812 8.48644e-07 2.75776e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| power in ||| 0.0290456 0.605812 1.1881e-05 6.89439e-05 2.718 ||| 0-1 ||| 482 1.17835e+06 +en ||| power over ||| 0.00757576 0.157937 8.48644e-07 5.98275e-07 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| power to make ||| 0.025 0.0247351 8.48644e-07 7.2928e-09 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| power to ||| 0.000733138 0.0247351 8.48644e-07 4.19657e-06 2.718 ||| 0-1 ||| 1364 1.17835e+06 +en ||| power where ||| 0.333333 0.247783 8.48644e-07 1.27153e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| powers in ||| 0.00873362 0.605812 1.69729e-06 2.27658e-05 2.718 ||| 0-1 ||| 229 1.17835e+06 +en ||| powers include ||| 0.166667 0.0015517 8.48644e-07 5.3737e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| powers on ||| 0.025641 0.22993 8.48644e-07 4.09429e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| practical application on ||| 1 0.22993 8.48644e-07 2.21666e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| practical examples in ||| 1 0.605812 8.48644e-07 3.50709e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| practical expression over ||| 1 0.157937 8.48644e-07 7.15978e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| practical form in ||| 0.333333 0.605812 8.48644e-07 9.2279e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| practical measures in ||| 0.142857 0.605812 8.48644e-07 4.19432e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| practical purposes , being absorbed in ||| 1 0.605812 8.48644e-07 1.82991e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| practical ||| 0.000634216 0.0011259 3.39458e-06 4.8e-06 2.718 ||| 0-0 ||| 6307 1.17835e+06 +en ||| practicality , in ||| 0.333333 0.605812 8.48644e-07 6.05765e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| practically ||| 0.00255754 0.0180437 2.54593e-06 1.29e-05 2.718 ||| 0-0 ||| 1173 1.17835e+06 +en ||| practice , in ||| 0.03125 0.605812 8.48644e-07 5.80433e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| practice and on ||| 0.333333 0.22993 8.48644e-07 1.09643e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| practice by ||| 0.0243902 0.0468744 8.48644e-07 8.96648e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| practice in my own country , for ||| 1 0.605812 8.48644e-07 1.75042e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| practice in my own country , ||| 1 0.605812 8.48644e-07 2.2775e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| practice in my own country ||| 1 0.605812 8.48644e-07 1.90978e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| practice in my own ||| 1 0.605812 8.48644e-07 5.30642e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| practice in my ||| 0.5 0.605812 8.48644e-07 3.13008e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| practice in ||| 0.0376176 0.605812 1.01837e-05 4.86717e-05 2.718 ||| 0-1 ||| 319 1.17835e+06 +en ||| practice is required so as ||| 0.5 0.066968 8.48644e-07 2.14033e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| practice throughout ||| 0.125 0.309047 8.48644e-07 3.05744e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| practice with ||| 0.04 0.0535436 8.48644e-07 1.22885e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| practices in ||| 0.0136054 0.605812 1.69729e-06 1.64394e-05 2.718 ||| 0-1 ||| 147 1.17835e+06 +en ||| practices involving , ||| 0.5 0.0505311 8.48644e-07 9.07256e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| practices involving ||| 0.25 0.0505311 8.48644e-07 7.60772e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| practise a ||| 0.05 0.0015231 8.48644e-07 5.0264e-09 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| practise in ||| 0.0769231 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| practise organic farming in ||| 1 0.605812 8.48644e-07 3.75206e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| practised in ||| 0.0273973 0.605812 1.69729e-06 4.47928e-06 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| pragmatically ||| 0.00787402 0.0215827 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 127 1.17835e+06 +en ||| praise in ||| 0.125 0.605812 8.48644e-07 6.46494e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| prawn farming in ||| 0.2 0.605812 8.48644e-07 2.73374e-12 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| pre-accession ||| 0.00116686 0.0063341 8.48644e-07 5.4e-06 2.718 ||| 0-0 ||| 857 1.17835e+06 +en ||| pre-election campaign for the preliminaries in January ||| 1 0.605812 8.48644e-07 1.2819e-26 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| pre-election campaign for the preliminaries in ||| 1 0.605812 8.48644e-07 1.88515e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| pre-registrations on ||| 1 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| precise in ||| 0.0227273 0.605812 8.48644e-07 1.54697e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| precisely as ||| 0.0212766 0.066968 8.48644e-07 1.77361e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| precisely at ||| 0.0147059 0.321886 8.48644e-07 3.9442e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| precisely during ||| 0.0769231 0.226251 8.48644e-07 2.85082e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| precisely for use in ||| 0.333333 0.605812 8.48644e-07 1.70142e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| precisely here in ||| 1 0.605812 8.48644e-07 9.2329e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| precisely here ||| 0.166667 0.0855319 1.69729e-06 2.9581e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| precisely in ||| 0.0294118 0.605812 6.78915e-06 4.55316e-05 2.718 ||| 0-1 ||| 272 1.17835e+06 +en ||| precisely to ||| 0.00448431 0.0247351 8.48644e-07 2.77148e-06 2.718 ||| 0-1 ||| 223 1.17835e+06 +en ||| precisely where ||| 0.0273973 0.247783 1.69729e-06 8.39737e-07 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| precisely with a view to ||| 0.142857 0.0247351 8.48644e-07 7.09589e-13 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| precisely ||| 0.000372439 0.0005034 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 5370 1.17835e+06 +en ||| predicated on ||| 0.0285714 0.22993 8.48644e-07 9.13532e-08 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| predominant feature of the ||| 1 0.0116562 8.48644e-07 2.48648e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| predominant feature of ||| 1 0.0116562 8.48644e-07 4.05019e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| prefer on ||| 1 0.22993 8.48644e-07 2.18417e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| prefer to ||| 0.0052356 0.0247351 8.48644e-07 7.39248e-07 2.718 ||| 0-1 ||| 191 1.17835e+06 +en ||| preference in ||| 0.125 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| preferences in ||| 0.25 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| preferred instead ||| 0.5 0.340662 8.48644e-07 2.42906e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| preliminaries in January and February 2004 and ||| 1 0.605812 8.48644e-07 1.56435e-26 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| preliminaries in January and February 2004 ||| 1 0.605812 8.48644e-07 1.24889e-24 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| preliminaries in January and February ||| 1 0.605812 8.48644e-07 9.91185e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| preliminaries in January and ||| 1 0.605812 8.48644e-07 2.75329e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| preliminaries in January ||| 1 0.605812 8.48644e-07 2.19808e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| preliminaries in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| premises in ||| 0.0714286 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| premises on ||| 0.142857 0.22993 8.48644e-07 4.48461e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| premium on ||| 0.1875 0.22993 2.54593e-06 5.39815e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| preoccupied with ||| 0.0526316 0.0535436 1.69729e-06 8.16123e-09 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| preparation for ||| 0.00211864 0.0286209 8.48644e-07 1.40363e-07 2.718 ||| 0-1 ||| 472 1.17835e+06 +en ||| prepare an evaluation on ||| 1 0.22993 8.48644e-07 9.8335e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| prepare for ||| 0.00168919 0.0286209 8.48644e-07 2.07094e-07 2.718 ||| 0-1 ||| 592 1.17835e+06 +en ||| prepared in accordance with ||| 0.2 0.0535436 8.48644e-07 1.72008e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| prepared in ||| 0.0412371 0.605812 3.39458e-06 4.00364e-05 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| prepared to ||| 0.000259269 0.0247351 8.48644e-07 2.43699e-06 2.718 ||| 0-1 ||| 3857 1.17835e+06 +en ||| preparing for ||| 0.0018315 0.0286209 8.48644e-07 1.70277e-07 2.718 ||| 0-1 ||| 546 1.17835e+06 +en ||| prescribed in ||| 0.03125 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| presence felt in ||| 0.266667 0.605812 3.39458e-06 1.01693e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| presence in the ||| 0.00840336 0.605812 8.48644e-07 1.09146e-06 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| presence in ||| 0.021978 0.605812 5.09187e-06 1.77786e-05 2.718 ||| 0-1 ||| 273 1.17835e+06 +en ||| presence of observers at ||| 0.5 0.321886 8.48644e-07 6.94915e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| presence on ||| 0.0285714 0.22993 1.69729e-06 3.19736e-06 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| present , in ||| 0.047619 0.605812 8.48644e-07 2.01555e-05 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| present at ||| 0.0181818 0.321886 4.24322e-06 1.46407e-05 2.718 ||| 0-1 ||| 275 1.17835e+06 +en ||| present both in ||| 0.25 0.605812 8.48644e-07 2.79968e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| present during ||| 0.0204082 0.226251 8.48644e-07 1.05822e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| present in ||| 0.0459184 0.605812 3.05512e-05 0.000169012 2.718 ||| 0-1 ||| 784 1.17835e+06 +en ||| present inside ||| 1 0.188717 8.48644e-07 6.99792e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| present it to ||| 0.047619 0.0247351 8.48644e-07 1.82947e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| present on ||| 0.0188679 0.22993 1.69729e-06 3.03957e-05 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| present throughout ||| 0.0526316 0.309047 8.48644e-07 1.06169e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| present time in ||| 0.333333 0.605812 8.48644e-07 2.77467e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| present time with a view ||| 0.5 0.0535436 8.48644e-07 2.80492e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| present time with a ||| 0.5 0.0535436 8.48644e-07 3.1052e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| present time with ||| 0.142857 0.0535436 8.48644e-07 7.00539e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| present with ||| 0.037037 0.0535436 8.48644e-07 4.26716e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| presentation of ||| 0.00226757 0.0116562 8.48644e-07 2.15465e-07 2.718 ||| 0-1 ||| 441 1.17835e+06 +en ||| presented , as it ||| 0.333333 0.066968 8.48644e-07 3.00602e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| presented , as ||| 0.333333 0.066968 8.48644e-07 1.69037e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| presented at ||| 0.0106383 0.321886 8.48644e-07 3.15216e-06 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| presented by ||| 0.000694444 0.0468744 8.48644e-07 6.70359e-07 2.718 ||| 0-1 ||| 1440 1.17835e+06 +en ||| presented four own-initiative reports in this ||| 1 0.605812 8.48644e-07 9.54935e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| presented four own-initiative reports in ||| 1 0.605812 8.48644e-07 1.47791e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| presented in such a ||| 0.333333 0.605812 8.48644e-07 3.33702e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| presented in such ||| 0.25 0.605812 8.48644e-07 7.52839e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| presented in ||| 0.0139721 0.605812 5.94051e-06 3.63884e-05 2.718 ||| 0-1 ||| 501 1.17835e+06 +en ||| presented on ||| 0.010101 0.22993 8.48644e-07 6.54421e-06 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| presented right from the ||| 1 0.0308834 8.48644e-07 1.18712e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| presented right from ||| 1 0.0308834 8.48644e-07 1.93368e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| presented to ||| 0.00163132 0.0247351 8.48644e-07 2.21493e-06 2.718 ||| 0-1 ||| 613 1.17835e+06 +en ||| presented with ||| 0.00649351 0.0535436 8.48644e-07 9.18721e-07 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| presenting hang together like ||| 1 0.0128468 8.48644e-07 2.53016e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| presenting hang together ||| 1 0.0128468 8.48644e-07 1.42472e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| presenting in ||| 0.0909091 0.605812 8.48644e-07 1.01592e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| presently ||| 0.0226537 0.10987 5.94051e-06 4.01e-05 2.718 ||| 0-0 ||| 309 1.17835e+06 +en ||| preserved in ||| 0.0526316 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| presidency to pursue ||| 0.333333 0.0247351 8.48644e-07 2.77665e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| presidency to ||| 0.00666667 0.0247351 8.48644e-07 7.08329e-07 2.718 ||| 0-1 ||| 150 1.17835e+06 +en ||| presiding over ||| 0.0212766 0.157937 8.48644e-07 7.21296e-09 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| press , according to ||| 0.25 0.0586463 8.48644e-07 1.35657e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| press , according ||| 0.25 0.0586463 8.48644e-07 1.52667e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| press for ||| 0.00645161 0.0286209 1.69729e-06 3.47457e-07 2.718 ||| 0-1 ||| 310 1.17835e+06 +en ||| press of ||| 0.0909091 0.0116562 8.48644e-07 4.11837e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| pressed at ||| 0.5 0.321886 8.48644e-07 2.0001e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| pressing need for ||| 0.0294118 0.0286209 8.48644e-07 1.44523e-10 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| pressing need to ||| 0.027027 0.0247351 8.48644e-07 3.53083e-10 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| pressure in ||| 0.0493827 0.605812 3.39458e-06 2.7753e-05 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| pressure on ||| 0.00386997 0.22993 4.24322e-06 4.99121e-06 2.718 ||| 0-1 ||| 1292 1.17835e+06 +en ||| pressure upon ||| 0.0909091 0.114601 8.48644e-07 5.31224e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| pretext for ||| 0.0033557 0.0286209 8.48644e-07 5.7526e-08 2.718 ||| 0-1 ||| 298 1.17835e+06 +en ||| pretty much at ||| 1 0.321886 8.48644e-07 7.227e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| pretty much ||| 0.0208333 0.0238095 8.48644e-07 8.83256e-09 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| pretty ||| 0.00630915 0.0238095 1.69729e-06 8.8e-06 2.718 ||| 0-0 ||| 317 1.17835e+06 +en ||| prevail at ||| 0.222222 0.321886 1.69729e-06 9.52048e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| prevail in ||| 0.0471698 0.605812 4.24322e-06 1.09904e-05 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| prevailed in ||| 0.0285714 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| prevailing here in ||| 1 0.605812 8.48644e-07 8.80216e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| prevailing ||| 0.00928074 0.0297806 3.39458e-06 1.29e-05 2.718 ||| 0-0 ||| 431 1.17835e+06 +en ||| prevails at ||| 0.166667 0.321886 8.48644e-07 4.48022e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| prevails in ||| 0.0151515 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| prevalent among ||| 0.142857 0.0422459 8.48644e-07 9.2365e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| prevalent in ||| 0.0416667 0.605812 1.69729e-06 1.33917e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| prevent ships from ||| 1 0.0308834 8.48644e-07 3.14994e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| prevented from ||| 0.00374532 0.0308834 8.48644e-07 8.63758e-08 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| previously , during ||| 1 0.226251 8.48644e-07 1.17922e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| previously been in ||| 0.5 0.605812 8.48644e-07 5.27357e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| previously been sited in ||| 1 0.605812 8.48644e-07 3.6915e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| previously hesitated ||| 0.2 0.020202 8.48644e-07 1.416e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| previously in ||| 0.02 0.605812 8.48644e-07 1.57929e-05 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| previously qualified in ||| 0.333333 0.605812 8.48644e-07 2.16363e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| previously vested ||| 0.333333 0.020202 8.48644e-07 2.1594e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| previously ||| 0.0052687 0.020202 8.48644e-06 3.54e-05 2.718 ||| 0-0 ||| 1898 1.17835e+06 +en ||| prey to ||| 0.0350877 0.071827 1.69729e-06 4.21625e-07 2.718 ||| 0-0 0-1 ||| 57 1.17835e+06 +en ||| price in the ||| 0.0909091 0.605812 8.48644e-07 1.44866e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| price in ||| 0.0196078 0.605812 8.48644e-07 2.3597e-05 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| price on ||| 0.0322581 0.22993 8.48644e-07 4.24377e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| prices in ||| 0.017094 0.605812 1.69729e-06 1.46385e-05 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| prices passed on ||| 1 0.22993 8.48644e-07 1.88497e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| primarily a ||| 0.00632911 0.0814715 8.48644e-07 1.08864e-05 2.718 ||| 0-0 ||| 158 1.17835e+06 +en ||| primarily addressed ||| 0.125 0.0814715 8.48644e-07 1.31642e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| primarily be ||| 0.03125 0.0814715 8.48644e-07 4.45098e-06 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| primarily centred on ||| 0.5 0.22993 8.48644e-07 4.33513e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| primarily comprise ||| 1 0.0814715 8.48644e-07 1.05608e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| primarily in ||| 0.0172414 0.605812 1.69729e-06 8.31206e-06 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| primarily on ||| 0.00588235 0.22993 8.48644e-07 1.49487e-06 2.718 ||| 0-1 ||| 170 1.17835e+06 +en ||| primarily taken ||| 0.166667 0.0814715 8.48644e-07 2.23864e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| primarily ||| 0.00559211 0.0814715 1.4427e-05 0.0002456 2.718 ||| 0-0 ||| 3040 1.17835e+06 +en ||| primary ||| 0.000457247 0.0004509 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2187 1.17835e+06 +en ||| prime ||| 0.000917431 0.0008749 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1090 1.17835e+06 +en ||| principle of ||| 0.0002886 0.0116562 1.69729e-06 2.09055e-06 2.718 ||| 0-1 ||| 6930 1.17835e+06 +en ||| principle should apply here ||| 0.2 0.0855319 8.48644e-07 2.93252e-13 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| principle to ||| 0.00574713 0.0124253 8.48644e-07 3.93516e-08 2.718 ||| 0-0 0-1 ||| 174 1.17835e+06 +en ||| principles in ||| 0.0104167 0.605812 8.48644e-07 1.86098e-05 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| principles of ||| 0.000892061 0.0116562 1.69729e-06 5.49571e-07 2.718 ||| 0-1 ||| 2242 1.17835e+06 +en ||| principles on ||| 0.00555556 0.22993 8.48644e-07 3.34685e-06 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| principles ||| 8.65951e-05 9.32e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 11548 1.17835e+06 +en ||| printed above ||| 0.5 0.0146514 8.48644e-07 6.7222e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| printed in a ||| 0.5 0.605812 8.48644e-07 1.2486e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| printed in ||| 0.130435 0.605812 2.54593e-06 2.81686e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| prior to ||| 0.000890472 0.0247351 8.48644e-07 5.17193e-07 2.718 ||| 0-1 ||| 1123 1.17835e+06 +en ||| priorities in ||| 0.004 0.605812 8.48644e-07 8.63531e-06 2.718 ||| 0-1 ||| 250 1.17835e+06 +en ||| priorities towards ||| 0.111111 0.0616136 8.48644e-07 1.86289e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| priorities within ||| 0.047619 0.369196 8.48644e-07 2.07321e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| prioritised at ||| 0.5 0.321886 8.48644e-07 4.40022e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| priority be rectified at ||| 0.5 0.321886 8.48644e-07 1.01131e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| priority in ||| 0.00296736 0.605812 8.48644e-07 2.57674e-05 2.718 ||| 0-1 ||| 337 1.17835e+06 +en ||| priority of ||| 0.00277008 0.0116562 8.48644e-07 7.60945e-07 2.718 ||| 0-1 ||| 361 1.17835e+06 +en ||| priority over the ||| 0.0357143 0.157937 8.48644e-07 1.37273e-08 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| priority over ||| 0.00787402 0.157937 8.48644e-07 2.23602e-07 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| priority to ||| 0.00101626 0.0247351 8.48644e-07 1.56844e-06 2.718 ||| 0-1 ||| 984 1.17835e+06 +en ||| prison in ||| 0.0116279 0.605812 8.48644e-07 5.63373e-06 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| prisoner under ||| 0.5 0.205566 8.48644e-07 1.41365e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| private payments into ||| 1 0.525896 8.48644e-07 1.74393e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| private sector . in ||| 1 0.605812 8.48644e-07 6.18193e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| private to ||| 0.166667 0.0247351 8.48644e-07 6.68978e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| prize , at ||| 1 0.321886 8.48644e-07 3.95945e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| prize in ||| 0.05 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| pro-active in ||| 0.0769231 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| problem , as ||| 0.0188679 0.066968 8.48644e-07 4.82442e-07 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| problem areas in ||| 0.166667 0.605812 8.48644e-07 2.37723e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| problem at all in ||| 0.111111 0.605812 8.48644e-07 2.05498e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| problem at ||| 0.00641026 0.321886 8.48644e-07 8.99645e-06 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| problem facing ||| 0.015873 0.0084602 8.48644e-07 1.14699e-08 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| problem in particular ||| 0.333333 0.605812 8.48644e-07 6.39121e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| problem in relation ||| 0.111111 0.605812 8.48644e-07 2.52678e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| problem in ||| 0.0163265 0.605812 1.01837e-05 0.000103855 2.718 ||| 0-1 ||| 735 1.17835e+06 +en ||| problem is ||| 0.000502008 0.0005032 8.48644e-07 6.42764e-08 2.718 ||| 0-1 ||| 1992 1.17835e+06 +en ||| problem known in ||| 0.5 0.605812 8.48644e-07 1.14344e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| problem lies with ||| 0.0357143 0.0535436 8.48644e-07 1.61258e-10 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| problem of ||| 0.000231911 0.0116562 8.48644e-07 3.06696e-06 2.718 ||| 0-1 ||| 4312 1.17835e+06 +en ||| problem over ||| 0.0666667 0.157937 8.48644e-07 9.01219e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| problem to ||| 0.00746269 0.0247351 8.48644e-07 6.32156e-06 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| problem with it in ||| 0.5 0.605812 8.48644e-07 1.18098e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| problem with regard to ||| 0.0344828 0.0535436 8.48644e-07 1.58646e-10 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| problem with regard ||| 0.04 0.0535436 8.48644e-07 1.78538e-09 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| problem with ||| 0.00308008 0.0535436 2.54593e-06 2.62209e-06 2.718 ||| 0-1 ||| 974 1.17835e+06 +en ||| problematic , in that there is ||| 1 0.605812 8.48644e-07 2.84784e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| problematic , in that there ||| 1 0.605812 8.48644e-07 9.08661e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| problematic , in that ||| 1 0.605812 8.48644e-07 2.96435e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| problematic , in ||| 0.5 0.605812 8.48644e-07 1.76223e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| problems , in ||| 0.0454545 0.605812 8.48644e-07 7.39034e-06 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| problems : firstly ||| 0.166667 0.295867 8.48644e-07 2.4174e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| problems are caused by ||| 0.333333 0.0468744 8.48644e-07 1.47063e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| problems caused by ||| 0.00847458 0.0468744 8.48644e-07 9.69263e-11 2.718 ||| 0-2 ||| 118 1.17835e+06 +en ||| problems in ||| 0.00796178 0.605812 8.48644e-06 6.1971e-05 2.718 ||| 0-1 ||| 1256 1.17835e+06 +en ||| problems inherent in ||| 0.047619 0.605812 8.48644e-07 7.56046e-10 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| problems of ||| 0.000527983 0.0116562 8.48644e-07 1.83009e-06 2.718 ||| 0-1 ||| 1894 1.17835e+06 +en ||| problems on ||| 0.010101 0.22993 8.48644e-07 1.11451e-05 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| problems with ||| 0.00168492 0.0535436 1.69729e-06 1.56462e-06 2.718 ||| 0-1 ||| 1187 1.17835e+06 +en ||| procedure in - if you do not ||| 1 0.605812 8.48644e-07 5.53376e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| procedure in - if you do ||| 1 0.605812 8.48644e-07 1.62085e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| procedure in - if you ||| 1 0.605812 8.48644e-07 4.71823e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| procedure in - if ||| 1 0.605812 8.48644e-07 1.46134e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| procedure in - ||| 1 0.605812 8.48644e-07 1.74885e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| procedure in ||| 0.0310559 0.605812 4.24322e-06 4.63628e-05 2.718 ||| 0-1 ||| 161 1.17835e+06 +en ||| procedure is creeping in ||| 1 0.605812 8.48644e-07 2.03429e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| procedure of the ||| 0.0555556 0.0116562 8.48644e-07 8.40549e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| procedure of ||| 0.00757576 0.0116562 8.48644e-07 1.36915e-06 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| procedure will in ||| 0.5 0.605812 8.48644e-07 4.01094e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| procedure with ||| 0.0222222 0.0535436 8.48644e-07 1.17055e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| procedures , with ||| 0.5 0.0535436 8.48644e-07 6.00644e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| procedures as soon as they reach ||| 1 0.066968 8.48644e-07 1.93084e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| procedures as soon as they ||| 1 0.066968 8.48644e-07 2.38375e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| procedures as soon as ||| 1 0.066968 8.48644e-07 7.30317e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| procedures as soon ||| 1 0.066968 8.48644e-07 7.15688e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| procedures as ||| 0.0333333 0.066968 8.48644e-07 7.77077e-07 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| procedures in ||| 0.0148148 0.605812 1.69729e-06 1.99489e-05 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| procedures of ||| 0.0120482 0.0116562 8.48644e-07 5.89118e-07 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| proceed in a ||| 0.0416667 0.605812 8.48644e-07 6.55002e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| proceed in step ||| 0.333333 0.605812 8.48644e-07 2.17961e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| proceed in ||| 0.027972 0.605812 3.39458e-06 1.4777e-05 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| proceeding at ||| 0.166667 0.321886 8.48644e-07 5.76029e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| proceeding in a ||| 0.333333 0.605812 8.48644e-07 2.94751e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| proceeding in ||| 0.133333 0.605812 3.39458e-06 6.64965e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| proceedings in ||| 0.0294118 0.605812 1.69729e-06 1.67627e-05 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| proceedings throughout ||| 0.5 0.309047 8.48644e-07 1.05299e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| proceedings to be brought ||| 1 0.0247351 8.48644e-07 5.17758e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| proceedings to be ||| 0.0666667 0.0247351 8.48644e-07 1.84914e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| proceedings to ||| 0.027027 0.0247351 8.48644e-07 1.02033e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| process , in the course of ||| 1 0.605812 8.48644e-07 9.91347e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| process , in the course ||| 1 0.605812 8.48644e-07 1.82354e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| process , in the ||| 0.25 0.605812 8.48644e-07 1.4453e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| process , in ||| 0.0322581 0.605812 8.48644e-07 2.35422e-05 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| process , into ||| 1 0.525896 8.48644e-07 1.12859e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| process as ||| 0.01 0.066968 8.48644e-07 7.68983e-06 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| process by ||| 0.00877193 0.0468744 8.48644e-07 3.63679e-06 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| process could be introduced in ||| 1 0.605812 8.48644e-07 2.35327e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| process extending back over ||| 1 0.157937 8.48644e-07 2.36204e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| process for ||| 0.00395257 0.0286209 8.48644e-07 4.91847e-06 2.718 ||| 0-1 ||| 253 1.17835e+06 +en ||| process have been provided in ||| 1 0.605812 8.48644e-07 1.80698e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| process in connection with ||| 0.5 0.605812 8.48644e-07 1.92634e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| process in connection ||| 0.5 0.605812 8.48644e-07 3.0125e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| process in which ||| 0.02 0.605812 8.48644e-07 1.67693e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| process in ||| 0.0298103 0.605812 9.33509e-06 0.000197411 2.718 ||| 0-1 ||| 369 1.17835e+06 +en ||| process of ||| 0.000860215 0.0116562 3.39458e-06 5.82982e-06 2.718 ||| 0-1 ||| 4650 1.17835e+06 +en ||| process on ||| 0.0612245 0.22993 2.54593e-06 3.55032e-05 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| process to ||| 0.00714286 0.0247351 1.69729e-06 1.20163e-05 2.718 ||| 0-1 ||| 280 1.17835e+06 +en ||| process under ||| 0.0294118 0.205566 8.48644e-07 2.41734e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| process when " ||| 1 0.142731 8.48644e-07 6.02664e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| process when ||| 0.0588235 0.142731 8.48644e-07 2.54504e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| process within ||| 0.0769231 0.369196 8.48644e-07 4.73956e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| processed by ||| 0.0434783 0.0468744 8.48644e-07 6.72061e-08 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| processed within ||| 0.25 0.369196 8.48644e-07 8.75849e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| processes going in such ||| 1 0.605812 8.48644e-07 1.32453e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| processes going in ||| 1 0.605812 8.48644e-07 6.40211e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| processes in ||| 0.111111 0.605812 2.54593e-06 7.48085e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| processing in ||| 0.0666667 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| processing industry reach markets in ||| 1 0.605812 8.48644e-07 1.99937e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| processing of applications ||| 0.0909091 0.0116562 8.48644e-07 2.74922e-12 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| processing of ||| 0.00331126 0.0116562 8.48644e-07 1.96373e-07 2.718 ||| 0-1 ||| 302 1.17835e+06 +en ||| proclaim in ||| 0.333333 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| proclaimed in ||| 0.0434783 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| procrastinate on ||| 0.5 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| produce . I could ||| 1 0.0060084 8.48644e-07 4.63193e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| produce . I ||| 1 0.0060084 8.48644e-07 6.51375e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| produce any particularly ||| 1 0.183344 8.48644e-07 5.97657e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| produce as ||| 0.125 0.066968 8.48644e-07 1.59193e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| produce in ||| 0.0285714 0.605812 8.48644e-07 4.08676e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| produce this success . in ||| 1 0.605812 8.48644e-07 4.75107e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| produced as a ||| 0.0555556 0.066968 8.48644e-07 8.43573e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| produced as ||| 0.0344828 0.066968 8.48644e-07 1.90312e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| produced for ||| 0.0357143 0.0286209 8.48644e-07 1.21725e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| produced in what was ||| 0.333333 0.605812 8.48644e-07 2.14769e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| produced in what ||| 0.333333 0.605812 8.48644e-07 6.85505e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| produced in ||| 0.0151515 0.605812 5.94051e-06 4.88564e-05 2.718 ||| 0-1 ||| 462 1.17835e+06 +en ||| produced of Parliament ||| 1 0.0116562 8.48644e-07 8.28164e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| produced of ||| 1 0.0116562 8.48644e-07 1.44279e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| produced on ||| 0.0172414 0.22993 8.48644e-07 8.78652e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| produced this important report unassisted . on ||| 1 0.22993 8.48644e-07 1.08158e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| produced within ||| 0.0232558 0.369196 8.48644e-07 1.17297e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| producer of ||| 0.0227273 0.0116562 8.48644e-07 4.36384e-08 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| producers in ||| 0.0206186 0.605812 3.39458e-06 8.95855e-06 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| producing for ||| 0.111111 0.0286209 8.48644e-07 3.85424e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| producing in ||| 0.142857 0.605812 8.48644e-07 1.54697e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| product concerned in the ||| 1 0.605812 8.48644e-07 2.77267e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| product concerned in ||| 1 0.605812 8.48644e-07 4.51635e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| product in ||| 0.0444444 0.605812 1.69729e-06 2.80763e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| product of the ||| 0.016129 0.0116562 8.48644e-07 5.09018e-08 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| product of ||| 0.00361011 0.0116562 8.48644e-07 8.2913e-07 2.718 ||| 0-1 ||| 277 1.17835e+06 +en ||| product safety in ||| 0.2 0.605812 8.48644e-07 1.42347e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| production , placing on ||| 0.5 0.22993 8.48644e-07 1.9682e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| production in ||| 0.00465116 0.605812 1.69729e-06 3.85587e-05 2.718 ||| 0-1 ||| 430 1.17835e+06 +en ||| production of ||| 0.00131839 0.0116562 1.69729e-06 1.13869e-06 2.718 ||| 0-1 ||| 1517 1.17835e+06 +en ||| productive workforce in ||| 0.5 0.605812 8.48644e-07 1.62085e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| products as part ||| 1 0.066968 8.48644e-07 2.2303e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| products as ||| 0.025 0.066968 8.48644e-07 1.87074e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| products by following ||| 0.333333 0.0468744 8.48644e-07 1.1307e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| products by ||| 0.0344828 0.0468744 8.48644e-07 8.84738e-07 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| products in ||| 0.0221239 0.605812 4.24322e-06 4.80252e-05 2.718 ||| 0-1 ||| 226 1.17835e+06 +en ||| products into ||| 0.0833333 0.525896 1.69729e-06 2.30228e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| products on the market ||| 0.0222222 0.22993 8.48644e-07 1.19835e-10 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| products on the ||| 0.0126582 0.22993 8.48644e-07 5.30243e-07 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| products on ||| 0.00787402 0.22993 8.48644e-07 8.63703e-06 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| products ||| 5.94036e-05 4.77e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 16834 1.17835e+06 +en ||| profession over ||| 1 0.157937 8.48644e-07 2.32418e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| professionals in ||| 0.0204082 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| profile at the ||| 0.5 0.321886 8.48644e-07 2.21022e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| profile at ||| 0.333333 0.321886 8.48644e-07 3.60018e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| profile in ||| 0.037037 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| profit at ||| 0.047619 0.321886 8.48644e-07 5.20026e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| profit from ||| 0.00520833 0.0308834 8.48644e-07 4.94663e-08 2.718 ||| 0-1 ||| 192 1.17835e+06 +en ||| profit in ||| 0.0333333 0.605812 8.48644e-07 6.00315e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| profit-centred ||| 0.5 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| profiteering from ||| 0.0588235 0.0308834 8.48644e-07 5.32714e-09 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| profits up ||| 0.5 0.0147069 8.48644e-07 6.969e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| programme , ||| 0.00084246 0.0003232 8.48644e-07 5.72423e-07 2.718 ||| 0-0 ||| 1187 1.17835e+06 +en ||| programme ambiguous , for ||| 1 0.0286209 8.48644e-07 5.06917e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| programme as ||| 0.0172414 0.066968 8.48644e-07 2.29166e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| programme for ||| 0.00358423 0.0286209 1.69729e-06 1.46576e-06 2.718 ||| 0-1 ||| 558 1.17835e+06 +en ||| programme in ||| 0.0151515 0.605812 2.54593e-06 5.88309e-05 2.718 ||| 0-1 ||| 198 1.17835e+06 +en ||| programme of ||| 0.00117786 0.0116562 8.48644e-07 1.73735e-06 2.718 ||| 0-1 ||| 849 1.17835e+06 +en ||| programme was set ||| 1 0.0003232 8.48644e-07 8.78844e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| programme was ||| 0.0107527 0.0003232 8.48644e-07 1.50384e-08 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| programme with at least ||| 0.5 0.321886 8.48644e-07 7.9971e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| programme with at ||| 0.5 0.321886 8.48644e-07 3.2588e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| programme ||| 0.000265061 0.0003232 5.94051e-06 4.8e-06 2.718 ||| 0-0 ||| 26409 1.17835e+06 +en ||| programmed to use violence ||| 1 0.0247351 8.48644e-07 3.41246e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| programmed to use ||| 1 0.0247351 8.48644e-07 1.50329e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| programmed to ||| 0.142857 0.0247351 8.48644e-07 3.09191e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| programmes in ||| 0.0206612 0.605812 4.24322e-06 2.47515e-05 2.718 ||| 0-1 ||| 242 1.17835e+06 +en ||| programmes on ||| 0.0181818 0.22993 8.48644e-07 4.45139e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| progress along ||| 0.03125 0.155535 8.48644e-07 1.04767e-07 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| progress at ||| 0.0350877 0.321886 1.69729e-06 5.26826e-06 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| progress has been made in ||| 0.00847458 0.605812 8.48644e-07 2.18979e-12 2.718 ||| 0-4 ||| 118 1.17835e+06 +en ||| progress in becoming lighter on our ||| 1 0.605812 8.48644e-07 8.08624e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| progress in becoming lighter on ||| 1 0.605812 8.48644e-07 5.86214e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| progress in becoming lighter ||| 1 0.605812 8.48644e-07 8.76124e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| progress in becoming ||| 1 0.605812 8.48644e-07 6.25803e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| progress in reducing ||| 0.0909091 0.605812 8.48644e-07 1.61772e-09 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| progress in ||| 0.00952813 0.605812 1.78215e-05 6.08166e-05 2.718 ||| 0-1 ||| 2204 1.17835e+06 +en ||| progress made in ||| 0.00487805 0.605812 1.69729e-06 1.27399e-07 2.718 ||| 0-2 ||| 410 1.17835e+06 +en ||| progress made on ||| 0.0117647 0.22993 8.48644e-07 2.29118e-08 2.718 ||| 0-2 ||| 85 1.17835e+06 +en ||| progress made towards meeting ||| 1 0.0616136 8.48644e-07 3.45195e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| progress made towards ||| 0.0217391 0.0616136 8.48644e-07 2.74837e-10 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| progress on ||| 0.0060241 0.22993 4.24322e-06 1.09375e-05 2.718 ||| 0-1 ||| 830 1.17835e+06 +en ||| progress report ||| 0.0033557 0.0004293 8.48644e-07 3.93783e-09 2.718 ||| 0-1 ||| 298 1.17835e+06 +en ||| progress with ||| 0.0041841 0.0535436 8.48644e-07 1.53548e-06 2.718 ||| 0-1 ||| 239 1.17835e+06 +en ||| progressed in ||| 0.0769231 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| progressing at a pace that ||| 1 0.321886 8.48644e-07 4.57124e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| progressing at a pace ||| 1 0.321886 8.48644e-07 2.71748e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| progressing at a ||| 0.2 0.321886 8.48644e-07 1.40077e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| progressing at ||| 0.111111 0.321886 8.48644e-07 3.16016e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| progressing in ||| 0.0769231 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| progressive for ||| 0.5 0.0286209 8.48644e-07 7.47838e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| project can make is , in ||| 1 0.605812 8.48644e-07 5.45961e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| project in ||| 0.0285714 0.605812 2.54593e-06 2.8261e-05 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| project was incorporated in ||| 0.5 0.605812 8.48644e-07 1.78854e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| project within ||| 0.2 0.369196 8.48644e-07 6.78506e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| projects , in ||| 0.0833333 0.605812 8.48644e-07 2.71493e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| projects , ||| 0.00184843 0.0009883 8.48644e-07 9.77889e-07 2.718 ||| 0-0 ||| 541 1.17835e+06 +en ||| projects accepted at ||| 0.333333 0.321886 8.48644e-07 1.21284e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| projects based on new technologies ||| 1 0.22993 8.48644e-07 4.76505e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| projects based on new ||| 1 0.22993 8.48644e-07 5.74103e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| projects based on ||| 0.2 0.22993 8.48644e-07 9.6052e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| projects in ||| 0.0106101 0.605812 3.39458e-06 2.27658e-05 2.718 ||| 0-1 ||| 377 1.17835e+06 +en ||| projects including , in ||| 1 0.605812 8.48644e-07 2.83439e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| projects on ||| 0.0172414 0.22993 8.48644e-07 4.09429e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| projects ||| 0.000239885 0.0009883 2.54593e-06 8.2e-06 2.718 ||| 0-0 ||| 12506 1.17835e+06 +en ||| prominent party in ||| 1 0.605812 8.48644e-07 1.70563e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| prominently in ||| 0.0666667 0.605812 1.69729e-06 1.15445e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| promised as part ||| 0.333333 0.066968 8.48644e-07 1.93007e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| promised as ||| 0.333333 0.066968 8.48644e-07 1.61891e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| promises at ||| 0.5 0.321886 8.48644e-07 3.04015e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| promises on ||| 0.0555556 0.22993 8.48644e-07 6.31168e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| promote activities in ||| 0.2 0.605812 8.48644e-07 2.35321e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| promote in ||| 0.0645161 0.605812 1.69729e-06 2.96002e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| promote it in ||| 0.2 0.605812 8.48644e-07 5.26386e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| promoted in ||| 0.0181818 0.605812 8.48644e-07 1.01592e-05 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| promoted on ||| 0.166667 0.22993 8.48644e-07 1.82706e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| promoted within ||| 0.0769231 0.369196 8.48644e-07 2.43907e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| promoting that concept we ||| 1 0.0054082 8.48644e-07 6.42435e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| prompted by ||| 0.0263158 0.0468744 1.69729e-06 8.25189e-08 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| prompted in ||| 1 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| prompted me to commission a study in ||| 1 0.605812 8.48644e-07 1.29256e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| prompted to ||| 0.0666667 0.0247351 8.48644e-07 2.72651e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| pronounced in ||| 0.0714286 0.605812 1.69729e-06 3.64807e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| pronounced over ||| 1 0.157937 8.48644e-07 3.16569e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| proof in ||| 0.0416667 0.605812 1.69729e-06 1.08057e-05 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| proof of identity ||| 0.25 0.0116562 8.48644e-07 6.44594e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| proof of ||| 0.00191205 0.0116562 8.48644e-07 3.19106e-07 2.718 ||| 0-1 ||| 523 1.17835e+06 +en ||| proper account ||| 0.0147059 0.233636 8.48644e-07 2.92554e-07 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| properly at ||| 0.0769231 0.321886 8.48644e-07 2.98015e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| properly considered within ||| 1 0.369196 8.48644e-07 8.88732e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| properly discussed at ||| 1 0.321886 8.48644e-07 1.56458e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| properly heard at ||| 1 0.321886 8.48644e-07 2.36028e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| properly in ||| 0.0337079 0.605812 2.54593e-06 3.44027e-05 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| properly into account ||| 0.111111 0.525896 8.48644e-07 4.74153e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| properly into ||| 0.0769231 0.525896 8.48644e-07 1.64923e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| properly monitored with ||| 0.2 0.0535436 8.48644e-07 1.05968e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| properly under ||| 0.111111 0.205566 8.48644e-07 4.21268e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| properly when ||| 0.166667 0.142731 8.48644e-07 4.43521e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| property in ||| 0.027027 0.605812 8.48644e-07 8.82002e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| property on ||| 0.25 0.22993 1.69729e-06 1.58622e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| proportion in ||| 0.0833333 0.605812 8.48644e-07 1.39458e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| proportion of ||| 0.00193611 0.0116562 1.69729e-06 4.11837e-07 2.718 ||| 0-1 ||| 1033 1.17835e+06 +en ||| proposal as ||| 0.00373134 0.066968 8.48644e-07 3.59218e-06 2.718 ||| 0-1 ||| 268 1.17835e+06 +en ||| proposal at ||| 0.0175439 0.321886 1.69729e-06 7.9884e-06 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| proposal becomes ||| 0.333333 0.162791 8.48644e-07 7.61057e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| proposal by ||| 0.00242718 0.0468744 8.48644e-07 1.69887e-06 2.718 ||| 0-1 ||| 412 1.17835e+06 +en ||| proposal concerning the shipyards package ||| 0.5 0.0888235 8.48644e-07 1.27034e-18 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| proposal concerning the shipyards ||| 0.5 0.0888235 8.48644e-07 2.67441e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| proposal concerning the ||| 0.0178571 0.0888235 8.48644e-07 1.48578e-08 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| proposal concerning ||| 0.0075188 0.0888235 8.48644e-07 2.42016e-07 2.718 ||| 0-1 ||| 133 1.17835e+06 +en ||| proposal for ||| 0.000304878 0.0286209 1.69729e-06 2.29759e-06 2.718 ||| 0-1 ||| 6560 1.17835e+06 +en ||| proposal in ||| 0.0111732 0.605812 5.09187e-06 9.22177e-05 2.718 ||| 0-1 ||| 537 1.17835e+06 +en ||| proposal is , on ||| 1 0.22993 8.48644e-07 6.19868e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| proposal is therefore revealing ||| 0.5 0.0081305 8.48644e-07 2.17381e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| proposal is therefore ||| 0.0833333 0.0081305 8.48644e-07 5.43453e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| proposal of the Committee on the Environment ||| 0.2 0.22993 8.48644e-07 1.02674e-17 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| proposal of the Committee on the ||| 1 0.22993 8.48644e-07 5.18556e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| proposal of the Committee on ||| 0.0285714 0.22993 8.48644e-07 8.44667e-12 2.718 ||| 0-4 ||| 35 1.17835e+06 +en ||| proposal that ||| 0.00107066 0.0017499 8.48644e-07 2.08726e-07 2.718 ||| 0-1 ||| 934 1.17835e+06 +en ||| proposal to ||| 0.000793651 0.0247351 1.69729e-06 5.61323e-06 2.718 ||| 0-1 ||| 2520 1.17835e+06 +en ||| proposal upon ||| 0.25 0.114601 8.48644e-07 1.76515e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| proposal which the Commission presented right from ||| 1 0.0308834 8.48644e-07 1.17626e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| proposals as ||| 0.010989 0.066968 8.48644e-07 1.74842e-06 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| proposals for the ||| 0.00321543 0.0286209 8.48644e-07 6.86548e-08 2.718 ||| 0-1 ||| 311 1.17835e+06 +en ||| proposals for ||| 0.00154959 0.0286209 2.54593e-06 1.11831e-06 2.718 ||| 0-1 ||| 1936 1.17835e+06 +en ||| proposals on ||| 0.00458716 0.22993 3.39458e-06 8.0723e-06 2.718 ||| 0-1 ||| 872 1.17835e+06 +en ||| proposals when ||| 0.0833333 0.142731 8.48644e-07 5.78661e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| proposals which point in ||| 1 0.605812 8.48644e-07 3.33545e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| propose in ||| 0.0588235 0.605812 1.69729e-06 1.56082e-05 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| propose new rules on its own authority ||| 1 0.22993 8.48644e-07 2.00123e-23 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| propose new rules on its own ||| 1 0.22993 8.48644e-07 4.70877e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| propose new rules on its ||| 1 0.22993 8.48644e-07 2.77754e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| propose new rules on ||| 1 0.22993 8.48644e-07 1.94956e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| propose the introduction of ||| 0.1 0.0116562 8.48644e-07 1.48561e-12 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| propose to do so in ||| 1 0.605812 8.48644e-07 1.08139e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| proposed at ||| 0.0166667 0.321886 8.48644e-07 4.46422e-06 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| proposed by Parliament was in excess of ||| 1 0.605812 8.48644e-07 2.85677e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| proposed by Parliament was in excess ||| 1 0.605812 8.48644e-07 5.25489e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| proposed by Parliament was in ||| 1 0.605812 8.48644e-07 4.86564e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| proposed in the ||| 0.00176056 0.605812 8.48644e-07 3.16381e-06 2.718 ||| 0-1 ||| 568 1.17835e+06 +en ||| proposed in ||| 0.00940171 0.605812 9.33509e-06 5.15348e-05 2.718 ||| 0-1 ||| 1170 1.17835e+06 +en ||| proposed on ||| 0.0238095 0.22993 8.48644e-07 9.2682e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| proposed to ||| 0.00222222 0.0247351 8.48644e-07 3.13689e-06 2.718 ||| 0-1 ||| 450 1.17835e+06 +en ||| proposed ||| 5.63984e-05 5.65e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 17731 1.17835e+06 +en ||| proposes on ||| 0.142857 0.22993 8.48644e-07 8.05569e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| proposing in ||| 0.05 0.605812 8.48644e-07 1.08057e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| proposing to deliver " EC ||| 1 0.0247351 8.48644e-07 1.08056e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| proposing to deliver " ||| 1 0.0247351 8.48644e-07 5.77838e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| proposing to deliver ||| 1 0.0247351 8.48644e-07 2.44019e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| proposing to ||| 0.00469484 0.0247351 8.48644e-07 6.57734e-07 2.718 ||| 0-1 ||| 213 1.17835e+06 +en ||| proposition in ||| 0.25 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| prospect for ||| 0.030303 0.0286209 8.48644e-07 2.77275e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| prospects for such a solution would still ||| 1 0.0286209 8.48644e-07 3.99597e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| prospects for such a solution would ||| 1 0.0286209 8.48644e-07 5.30532e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| prospects for such a solution ||| 1 0.0286209 8.48644e-07 9.04003e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| prospects for such a ||| 0.5 0.0286209 8.48644e-07 1.32942e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| prospects for such ||| 0.5 0.0286209 8.48644e-07 2.99919e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| prospects for ||| 0.00587084 0.0286209 2.54593e-06 1.44966e-07 2.718 ||| 0-1 ||| 511 1.17835e+06 +en ||| prospects in ||| 0.0487805 0.605812 1.69729e-06 5.81844e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| prospects on all aspects ||| 0.5 0.22993 8.48644e-07 3.48602e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| prospects on all ||| 0.5 0.22993 8.48644e-07 4.94471e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| prospects on ||| 0.2 0.22993 8.48644e-07 1.04641e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| prosperity in ||| 0.00363636 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 275 1.17835e+06 +en ||| protected given ||| 1 0.0546585 8.48644e-07 2.76294e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| protected in ||| 0.0131579 0.605812 8.48644e-07 1.09904e-05 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| protection in ||| 0.00833333 0.605812 1.69729e-06 4.68708e-05 2.718 ||| 0-1 ||| 240 1.17835e+06 +en ||| protection of ||| 0.000150761 0.0116562 8.48644e-07 1.38416e-06 2.718 ||| 0-1 ||| 6633 1.17835e+06 +en ||| protein in feed is banned in the ||| 1 0.605812 8.48644e-07 8.13698e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| protein in feed is banned in ||| 1 0.605812 8.48644e-07 1.32542e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| protest in ||| 0.0512821 0.605812 1.69729e-06 4.66399e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| proud , in ||| 0.5 0.605812 8.48644e-07 3.19403e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| prove possible in ||| 0.333333 0.605812 8.48644e-07 1.95939e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| prove to be the ||| 0.0588235 0.0011669 8.48644e-07 2.44039e-10 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| prove to be very ||| 0.166667 0.0247351 8.48644e-07 9.37637e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| prove to be ||| 0.00790514 0.0247351 1.69729e-06 2.69475e-08 2.718 ||| 0-1 ||| 253 1.17835e+06 +en ||| prove to have ||| 0.142857 0.0247351 8.48644e-07 1.77834e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| prove to ||| 0.0152284 0.0247351 2.54593e-06 1.48693e-06 2.718 ||| 0-1 ||| 197 1.17835e+06 +en ||| prove yourself as ||| 1 0.066968 8.48644e-07 4.28202e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| proved difficult in ||| 1 0.605812 8.48644e-07 2.37442e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| proved in ||| 0.0769231 0.605812 8.48644e-07 1.91177e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| proved possible to ||| 0.0357143 0.0247351 8.48644e-07 9.33391e-10 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| proved to be a highly complex ||| 1 0.0247351 8.48644e-07 1.2216e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| proved to be a highly ||| 1 0.0247351 8.48644e-07 5.65555e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| proved to be a ||| 0.0107527 0.0247351 8.48644e-07 9.34801e-10 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| proved to be ||| 0.00470588 0.0247351 1.69729e-06 2.10893e-08 2.718 ||| 0-1 ||| 425 1.17835e+06 +en ||| proved to ||| 0.00590551 0.0247351 2.54593e-06 1.16368e-06 2.718 ||| 0-1 ||| 508 1.17835e+06 +en ||| proves to ||| 0.02 0.0247351 8.48644e-07 2.72651e-07 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| provide , in ||| 0.0909091 0.605812 8.48644e-07 1.62896e-05 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| provide an overview at ||| 0.5 0.321886 8.48644e-07 2.83999e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| provide appropriate funding for information ||| 0.5 0.0286209 8.48644e-07 4.04076e-18 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| provide appropriate funding for ||| 0.5 0.0286209 8.48644e-07 2.44154e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| provide as much ||| 0.0588235 0.066968 8.48644e-07 5.34051e-09 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| provide as ||| 0.111111 0.066968 8.48644e-07 5.32082e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| provide for a ||| 0.00854701 0.0286209 8.48644e-07 1.50851e-07 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| provide for ||| 0.00568828 0.0286209 4.24322e-06 3.40324e-06 2.718 ||| 0-1 ||| 879 1.17835e+06 +en ||| provide in order to ||| 0.166667 0.605812 8.48644e-07 6.46447e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| provide in order ||| 0.2 0.605812 8.48644e-07 7.27504e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| provide in ||| 0.075 0.605812 2.54593e-06 0.000136595 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| provide information on ||| 0.0105263 0.22993 8.48644e-07 4.06563e-09 2.718 ||| 0-2 ||| 95 1.17835e+06 +en ||| provide on ||| 0.0714286 0.22993 8.48644e-07 2.45657e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| provide through ||| 1 0.0366102 8.48644e-07 2.7817e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| provide you with a ||| 0.2 0.0535436 8.48644e-07 4.9356e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| provide you with ||| 0.04 0.0535436 1.69729e-06 1.11348e-08 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| provided an answer to ||| 0.5 0.0247351 8.48644e-07 2.14473e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| provided are as ||| 1 0.066968 8.48644e-07 6.25544e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| provided as part ||| 0.2 0.066968 8.48644e-07 4.91523e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| provided as ||| 0.05 0.066968 8.48644e-07 4.12283e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| provided by ||| 0.00290065 0.0468744 3.39458e-06 1.94983e-06 2.718 ||| 0-1 ||| 1379 1.17835e+06 +en ||| provided can be guaranteed over ||| 1 0.157937 8.48644e-07 1.7476e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| provided for an ||| 0.0909091 0.0286209 8.48644e-07 1.17206e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| provided for in a ||| 0.25 0.605812 8.48644e-07 3.60571e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| provided for in the directive ||| 0.0333333 0.605812 8.48644e-07 5.57325e-12 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| provided for in the ||| 0.00185529 0.605812 8.48644e-07 4.99395e-08 2.718 ||| 0-2 ||| 539 1.17835e+06 +en ||| provided for in ||| 0.0118906 0.605812 8.48644e-06 8.13456e-07 2.718 ||| 0-2 ||| 841 1.17835e+06 +en ||| provided for the ||| 0.0103093 0.0286209 8.48644e-07 1.6189e-07 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| provided for ||| 0.00124688 0.0286209 1.69729e-06 2.63699e-06 2.718 ||| 0-1 ||| 1604 1.17835e+06 +en ||| provided in relation to the fact ||| 1 0.605812 8.48644e-07 4.11495e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| provided in relation to the ||| 1 0.605812 8.48644e-07 1.40476e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| provided in relation to ||| 0.25 0.605812 8.48644e-07 2.28818e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| provided in relation ||| 1 0.605812 8.48644e-07 2.57509e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| provided in the ||| 0.00833333 0.605812 8.48644e-07 6.49772e-06 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| provided in ||| 0.062963 0.605812 1.4427e-05 0.00010584 2.718 ||| 0-1 ||| 270 1.17835e+06 +en ||| provided information on ||| 0.2 0.22993 8.48644e-07 3.15024e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| provided on ||| 0.0298507 0.22993 1.69729e-06 1.90347e-05 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| provided that ||| 0.00171233 0.0017499 1.69729e-06 2.3956e-07 2.718 ||| 0-1 ||| 1168 1.17835e+06 +en ||| provided to ||| 0.00392157 0.0247351 8.48644e-07 6.44242e-06 2.718 ||| 0-1 ||| 255 1.17835e+06 +en ||| provided with ||| 0.00913242 0.0535436 1.69729e-06 2.67222e-06 2.718 ||| 0-1 ||| 219 1.17835e+06 +en ||| provided ||| 0.000507679 0.0008796 3.39458e-06 6.1e-06 2.718 ||| 0-0 ||| 7879 1.17835e+06 +en ||| providers in ||| 0.0833333 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| provides , in ||| 0.2 0.605812 8.48644e-07 3.94298e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| provides for ||| 0.00220264 0.0286209 2.54593e-06 8.23772e-07 2.718 ||| 0-1 ||| 1362 1.17835e+06 +en ||| provides in ||| 0.1 0.605812 8.48644e-07 3.30635e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| provides the opportunity for ||| 0.0909091 0.0286209 8.48644e-07 9.09806e-12 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| provides us with ||| 0.00675676 0.0535436 8.48644e-07 2.40599e-09 2.718 ||| 0-2 ||| 148 1.17835e+06 +en ||| providing online ||| 1 0.37885 8.48644e-07 4.07317e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| proving to be a ||| 0.0555556 0.0247351 8.48644e-07 2.75473e-10 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| proving to be ||| 0.012987 0.0247351 8.48644e-07 6.21473e-09 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| proving to ||| 0.0128205 0.0247351 8.48644e-07 3.42921e-07 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| provision for ||| 0.00524476 0.0286209 2.54593e-06 1.36682e-06 2.718 ||| 0-1 ||| 572 1.17835e+06 +en ||| provision has , in ||| 1 0.605812 8.48644e-07 3.36763e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| provision has been made in ||| 0.5 0.605812 8.48644e-07 1.9753e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| provision has been made under ||| 1 0.205566 8.48644e-07 2.4188e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| provision if ||| 0.25 0.0178573 8.48644e-07 1.37749e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| provision in ||| 0.0322581 0.605812 2.54593e-06 5.48596e-05 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| provision is present in ||| 1 0.605812 8.48644e-07 6.29286e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| provision of ||| 0.00194301 0.0116562 2.54593e-06 1.62008e-06 2.718 ||| 0-1 ||| 1544 1.17835e+06 +en ||| provision should be made in ||| 0.25 0.605812 8.48644e-07 9.22836e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| provision ||| 0.00020004 0.0003698 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 4999 1.17835e+06 +en ||| provisions concerning ||| 0.00775194 0.0888235 8.48644e-07 9.54977e-08 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| provisions for ||| 0.00813008 0.0286209 1.69729e-06 9.0661e-07 2.718 ||| 0-1 ||| 246 1.17835e+06 +en ||| provisions in ||| 0.0230769 0.605812 5.09187e-06 3.63884e-05 2.718 ||| 0-1 ||| 260 1.17835e+06 +en ||| provisions of ||| 0.00180668 0.0116562 1.69729e-06 1.0746e-06 2.718 ||| 0-1 ||| 1107 1.17835e+06 +en ||| provisions on ||| 0.00934579 0.22993 4.24322e-06 6.54421e-06 2.718 ||| 0-1 ||| 535 1.17835e+06 +en ||| provisions relating to ||| 0.00757576 0.0247351 8.48644e-07 2.51838e-10 2.718 ||| 0-2 ||| 132 1.17835e+06 +en ||| provisions that exist in , for instance ||| 1 0.605812 8.48644e-07 3.34829e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| provisions that exist in , for ||| 1 0.605812 8.48644e-07 5.16712e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| provisions that exist in , ||| 1 0.605812 8.48644e-07 6.72303e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| provisions that exist in ||| 0.5 0.605812 8.48644e-07 5.63754e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| provisions to ||| 0.00714286 0.0247351 8.48644e-07 2.21493e-06 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| provisions were left in ||| 1 0.605812 8.48644e-07 1.23137e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| prudent ||| 0.00251889 0.0258216 8.48644e-07 7.5e-06 2.718 ||| 0-0 ||| 397 1.17835e+06 +en ||| public ' ||| 0.0181818 0.0032578 8.48644e-07 4.41006e-08 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| public 's views into ||| 1 0.525896 8.48644e-07 5.53879e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| public at risk ||| 0.5 0.321886 8.48644e-07 7.56326e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| public at ||| 0.00961538 0.321886 8.48644e-07 6.46432e-06 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| public contracts in ||| 0.0588235 0.605812 8.48644e-07 1.82828e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| public deficits in ||| 0.0833333 0.605812 8.48644e-07 2.38796e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| public in ||| 0.0146341 0.605812 2.54593e-06 7.46238e-05 2.718 ||| 0-1 ||| 205 1.17835e+06 +en ||| public opinion , and in ||| 1 0.605812 8.48644e-07 2.7355e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| public opinion in individual ||| 1 0.605812 8.48644e-07 2.58941e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| public opinion in ||| 0.00296736 0.605812 8.48644e-07 1.83127e-08 2.718 ||| 0-2 ||| 337 1.17835e+06 +en ||| public opinion on ||| 0.0178571 0.22993 8.48644e-07 3.29342e-09 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| public scrutiny at ||| 1 0.321886 8.48644e-07 9.76113e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| public services in ||| 0.015625 0.605812 8.48644e-07 6.60421e-09 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| public – us in ||| 0.5 0.605812 8.48644e-07 8.45268e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| publication of ||| 0.00239808 0.0116562 8.48644e-07 8.31857e-08 2.718 ||| 0-1 ||| 417 1.17835e+06 +en ||| published by ||| 0.00990099 0.0468744 1.69729e-06 1.89708e-07 2.718 ||| 0-1 ||| 202 1.17835e+06 +en ||| published in an unambiguous manner ||| 0.25 0.605812 8.48644e-07 9.81772e-18 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| published in an unambiguous ||| 0.25 0.605812 8.48644e-07 5.03473e-14 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| published in an ||| 0.0833333 0.605812 8.48644e-07 4.57703e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| published in ||| 0.0175 0.605812 5.94051e-06 1.02977e-05 2.718 ||| 0-1 ||| 400 1.17835e+06 +en ||| published on ||| 0.00847458 0.22993 8.48644e-07 1.85198e-06 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| published under the charge ||| 1 0.205566 8.48644e-07 3.90164e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| published under the ||| 0.5 0.205566 8.48644e-07 7.74136e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| published under ||| 0.25 0.205566 8.48644e-07 1.26098e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| pulling the wool over ||| 0.166667 0.157937 8.48644e-07 2.85863e-15 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| pumped dry in ||| 1 0.605812 8.48644e-07 4.57163e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| punches in ||| 0.111111 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| punishment in ||| 0.0322581 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| punishment into ||| 1 0.525896 8.48644e-07 1.74885e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| purchased in ||| 0.0625 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| purchases in ||| 0.1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| purchases ||| 0.00531915 0.0097087 1.69729e-06 2.7e-06 2.718 ||| 0-0 ||| 376 1.17835e+06 +en ||| purely and simply in ||| 0.5 0.605812 8.48644e-07 3.28285e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| purely in the ||| 0.2 0.605812 8.48644e-07 7.25749e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| purely in ||| 0.0714286 0.605812 1.69729e-06 1.18216e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| purely on ||| 0.0163934 0.22993 8.48644e-07 2.12604e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| purpose in ||| 0.0327869 0.605812 1.69729e-06 8.30744e-05 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| purpose of the ||| 0.00190114 0.0116562 8.48644e-07 1.50612e-07 2.718 ||| 0-1 ||| 526 1.17835e+06 +en ||| purpose of this ||| 0.00275482 0.0116562 8.48644e-07 1.58517e-08 2.718 ||| 0-1 ||| 363 1.17835e+06 +en ||| purpose of ||| 0.00475939 0.0116562 7.6378e-06 2.4533e-06 2.718 ||| 0-1 ||| 1891 1.17835e+06 +en ||| purposes , being absorbed in ||| 1 0.605812 8.48644e-07 4.16836e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| purposes in ||| 0.285714 0.605812 3.39458e-06 5.58293e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| purposes of ||| 0.00198807 0.0116562 8.48644e-07 1.64871e-06 2.718 ||| 0-1 ||| 503 1.17835e+06 +en ||| pursuant to ||| 0.0037831 0.0582073 7.6378e-06 4.55073e-06 2.718 ||| 0-0 0-1 ||| 2379 1.17835e+06 +en ||| pursuant ||| 0.00613497 0.0916795 3.39458e-06 0.0001619 2.718 ||| 0-0 ||| 652 1.17835e+06 +en ||| pursue in ||| 0.05 0.605812 8.48644e-07 1.81018e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| pursue to ||| 0.142857 0.0247351 8.48644e-07 1.10185e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| pursue ||| 0.00148295 0.008229 2.54593e-06 1.57e-05 2.718 ||| 0-0 ||| 2023 1.17835e+06 +en ||| pursued here for ||| 1 0.0286209 8.48644e-07 8.5622e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| pursued in ||| 0.015625 0.605812 1.69729e-06 1.69474e-05 2.718 ||| 0-1 ||| 128 1.17835e+06 +en ||| pursued ||| 0.000909918 0.0012706 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 1099 1.17835e+06 +en ||| pursuing from ||| 0.5 0.0308834 8.48644e-07 9.32249e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| pursuing in ||| 0.230769 0.605812 2.54593e-06 1.13136e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| pursuing its former ||| 0.5 0.0271429 8.48644e-07 1.67156e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| pursuing its ||| 0.0333333 0.0271429 8.48644e-07 3.68997e-08 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| pursuing so as ||| 0.5 0.066968 8.48644e-07 1.00026e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| pursuing ||| 0.00533808 0.0271429 5.09187e-06 2.59e-05 2.718 ||| 0-0 ||| 1124 1.17835e+06 +en ||| pursuit at the ||| 1 0.321886 8.48644e-07 6.09037e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| pursuit at ||| 1 0.321886 8.48644e-07 9.9205e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| pursuit of ||| 0.00175747 0.0116562 8.48644e-07 3.38198e-07 2.718 ||| 0-1 ||| 569 1.17835e+06 +en ||| push up ||| 0.0344828 0.0147069 8.48644e-07 1.9113e-08 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| pushed aside in ||| 0.333333 0.605812 8.48644e-07 5.99022e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| pushed into ||| 0.097561 0.525896 3.39458e-06 4.07326e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| pushed through , ||| 0.2 0.0366102 8.48644e-07 2.06351e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| pushed through in ||| 0.166667 0.605812 8.48644e-07 3.91106e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| pushed through ||| 0.0114943 0.0366102 8.48644e-07 1.73034e-08 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| pushing ahead with ||| 0.0434783 0.0535436 8.48644e-07 1.69019e-11 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| pushing down ||| 0.1 0.0183476 8.48644e-07 2.93265e-09 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| pushing forward with ||| 0.25 0.0535436 8.48644e-07 8.62773e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| pushing in exactly ||| 1 0.605812 8.48644e-07 6.16626e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| pushing in ||| 0.166667 0.605812 8.48644e-07 6.14169e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| put about both ||| 0.0833333 0.0401564 8.48644e-07 5.23481e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| put about ||| 0.0416667 0.0401564 8.48644e-07 3.16016e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| put an end to ||| 0.00095511 0.0247351 8.48644e-07 5.99355e-11 2.718 ||| 0-3 ||| 1047 1.17835e+06 +en ||| put aside in ||| 1 0.605812 8.48644e-07 3.58958e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| put aside on ||| 0.5 0.22993 8.48644e-07 6.45563e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| put at some ||| 1 0.321886 8.48644e-07 4.80449e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| put at ||| 0.0639269 0.321886 1.1881e-05 4.41062e-05 2.718 ||| 0-1 ||| 219 1.17835e+06 +en ||| put before us ||| 0.0136986 0.0175291 8.48644e-07 1.08335e-09 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| put before ||| 0.00458716 0.0175291 8.48644e-07 3.75876e-07 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| put down to the fact ||| 0.5 0.0247351 8.48644e-07 3.89085e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| put down to the ||| 0.2 0.0247351 8.48644e-07 1.32825e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| put down to ||| 0.117647 0.0183476 1.69729e-06 2.16035e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| put down ||| 0.00571429 0.0183476 8.48644e-07 2.43123e-07 2.718 ||| 0-1 ||| 175 1.17835e+06 +en ||| put every effort into ||| 0.333333 0.525896 8.48644e-07 3.51458e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| put forward at ||| 0.027027 0.321886 8.48644e-07 2.45407e-08 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| put forward by ||| 0.00103627 0.0468744 8.48644e-07 5.21899e-09 2.718 ||| 0-2 ||| 965 1.17835e+06 +en ||| put forward drastic remedies in ||| 1 0.605812 8.48644e-07 1.68278e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| put forward in ||| 0.0311419 0.605812 7.6378e-06 2.83297e-07 2.718 ||| 0-2 ||| 289 1.17835e+06 +en ||| put forward nearly enough on ||| 1 0.22993 8.48644e-07 1.39719e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| put forward on ||| 0.0384615 0.22993 8.48644e-07 5.09491e-08 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| put forward with ||| 0.1 0.0535436 8.48644e-07 7.15258e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| put forward ||| 0.000270416 0.0008492 8.48644e-07 1.27902e-08 2.718 ||| 0-1 ||| 3698 1.17835e+06 +en ||| put his case before ||| 1 0.0175291 8.48644e-07 1.20846e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| put in a ||| 0.0833333 0.605812 3.39458e-06 2.25689e-05 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| put in an appearance in ||| 0.5 0.605812 8.48644e-07 5.42525e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| put in order in ||| 0.2 0.605812 8.48644e-07 5.80444e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| put in place in ||| 0.0652174 0.605812 2.54593e-06 1.6402e-08 2.718 ||| 0-3 ||| 46 1.17835e+06 +en ||| put in place ||| 0.013089 0.605812 1.27297e-05 7.66286e-07 2.718 ||| 0-1 ||| 1146 1.17835e+06 +en ||| put in the machinery ||| 1 0.605812 8.48644e-07 1.25033e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| put in the ||| 0.0136986 0.605812 8.48644e-07 3.12582e-05 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| put in ||| 0.0571429 0.605812 6.11024e-05 0.00050916 2.718 ||| 0-1 ||| 1260 1.17835e+06 +en ||| put into a ||| 0.0625 0.525896 8.48644e-07 1.08193e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| put into effect in ||| 0.111111 0.605812 8.48644e-07 1.74391e-10 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| put into effect on ||| 0.5 0.22993 8.48644e-07 3.13631e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| put into place ||| 0.025641 0.525896 8.48644e-07 3.67349e-08 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| put into practice through ||| 0.333333 0.525896 8.48644e-07 1.1842e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| put into practice ||| 0.010582 0.525896 3.39458e-06 2.57267e-09 2.718 ||| 0-1 ||| 378 1.17835e+06 +en ||| put into ||| 0.0503388 0.525896 4.41295e-05 2.44086e-05 2.718 ||| 0-1 ||| 1033 1.17835e+06 +en ||| put it , at ||| 1 0.321886 8.48644e-07 9.35374e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| put it as ||| 0.25 0.066968 8.48644e-07 3.52702e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| put it at ||| 0.105263 0.321886 1.69729e-06 7.84349e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| put it back on ||| 0.333333 0.22993 8.48644e-07 1.09526e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| put it during ||| 1 0.226251 8.48644e-07 5.66919e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| put it in a ||| 0.0666667 0.605812 8.48644e-07 4.01348e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| put it in blunt , ||| 1 0.605812 8.48644e-07 1.51171e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| put it in blunt ||| 1 0.605812 8.48644e-07 1.26763e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| put it in concrete ||| 0.5 0.605812 8.48644e-07 2.83406e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| put it in simple terms ||| 0.25 0.605812 8.48644e-07 4.29331e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| put it in simple ||| 0.5 0.605812 8.48644e-07 3.91154e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| put it in the ||| 0.0588235 0.605812 8.48644e-07 5.55872e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| put it in ||| 0.141509 0.605812 1.27297e-05 9.05449e-06 2.718 ||| 0-2 ||| 106 1.17835e+06 +en ||| put it into ||| 0.0147059 0.525896 8.48644e-07 4.34063e-07 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| put it on record ||| 0.0833333 0.22993 8.48644e-07 9.08643e-11 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| put it on ||| 0.0178571 0.22993 8.48644e-07 1.62839e-06 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| put it then - ||| 1 0.013351 8.48644e-07 2.48144e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| put it then ||| 1 0.013351 8.48644e-07 6.5784e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| put it very clearly in ||| 1 0.605812 8.48644e-07 5.74968e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| put it ||| 0.0108696 0.0080472 1.01837e-05 3.04086e-06 2.718 ||| 0-1 ||| 1104 1.17835e+06 +en ||| put itself in a ||| 0.142857 0.605812 8.48644e-07 1.53175e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| put itself in ||| 0.142857 0.605812 8.48644e-07 3.45567e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| put money on it - ||| 1 0.22993 8.48644e-07 1.00368e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| put money on it ||| 1 0.22993 8.48644e-07 2.66079e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| put money on ||| 0.2 0.22993 8.48644e-07 1.49624e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| put obstacles based on ||| 0.5 0.22993 8.48644e-07 1.31041e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| put on Turkey ||| 0.5 0.22993 8.48644e-07 5.37511e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| put on a completely ||| 1 0.22993 8.48644e-07 4.13194e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| put on a ||| 0.030303 0.22993 8.48644e-07 4.05888e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| put on the ||| 0.00735294 0.22993 1.69729e-06 5.6216e-06 2.718 ||| 0-1 ||| 272 1.17835e+06 +en ||| put on ||| 0.0614334 0.22993 3.05512e-05 9.15692e-05 2.718 ||| 0-1 ||| 586 1.17835e+06 +en ||| put onto ||| 0.153846 0.233333 1.69729e-06 2.2063e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| put our own house in ||| 0.0909091 0.605812 8.48644e-07 2.57184e-14 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| put right in ||| 0.142857 0.605812 8.48644e-07 3.28357e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| put something in ||| 0.2 0.605812 8.48644e-07 2.8182e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| put that into ||| 0.125 0.525896 8.48644e-07 4.10591e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| put the case for ||| 0.0666667 0.0286209 8.48644e-07 8.33232e-10 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| put them in ||| 0.0645161 0.605812 1.69729e-06 1.36577e-06 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| put to death ||| 0.0555556 0.0247351 8.48644e-07 1.68288e-09 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| put to flight by ||| 1 0.0468744 8.48644e-07 6.58452e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| put to me in ||| 0.5 0.605812 8.48644e-07 2.72408e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| put to ||| 0.00975081 0.0247351 7.6378e-06 3.09922e-05 2.718 ||| 0-1 ||| 923 1.17835e+06 +en ||| put together in ||| 0.0714286 0.605812 8.48644e-07 3.05801e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| put up for ||| 0.125 0.0286209 8.48644e-07 4.32644e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| put ||| 0.000163908 0.0001764 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 12202 1.17835e+06 +en ||| puts an end to this . as ||| 1 0.066968 8.48644e-07 2.00246e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| puts in ||| 0.0416667 0.605812 8.48644e-07 1.5285e-05 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| puts on ||| 0.2 0.22993 1.69729e-06 2.7489e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| puts one on from time ||| 1 0.22993 8.48644e-07 3.02911e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| puts one on from ||| 1 0.22993 8.48644e-07 1.8451e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| puts one on ||| 1 0.22993 8.48644e-07 1.14574e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| puts them at a ||| 0.333333 0.321886 8.48644e-07 1.57431e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| puts them at ||| 0.125 0.321886 8.48644e-07 3.55168e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| putting at ||| 0.047619 0.321886 8.48644e-07 4.47622e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| putting both at great risk ||| 1 0.321886 8.48644e-07 3.40943e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| putting both at great ||| 1 0.321886 8.48644e-07 2.91404e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| putting both at ||| 1 0.321886 8.48644e-07 7.41486e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| putting forward in ||| 0.666667 0.605812 1.69729e-06 2.8751e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| putting in at ||| 0.333333 0.463849 8.48644e-07 2.06704e-06 2.718 ||| 0-1 0-2 ||| 3 1.17835e+06 +en ||| putting in ||| 0.00571429 0.605812 8.48644e-07 5.16733e-05 2.718 ||| 0-1 ||| 175 1.17835e+06 +en ||| putting into ||| 0.0208333 0.525896 1.69729e-06 2.47716e-06 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| putting it in ||| 0.0588235 0.605812 8.48644e-07 9.18917e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| putting it into ||| 0.0540541 0.525896 1.69729e-06 4.40519e-08 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| putting it ||| 0.00621118 0.0080472 8.48644e-07 3.08609e-07 2.718 ||| 0-1 ||| 161 1.17835e+06 +en ||| putting its faith in far-sighted ||| 1 0.605812 8.48644e-07 7.62692e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| putting its faith in ||| 0.5 0.605812 8.48644e-07 1.08956e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| putting myself in ||| 0.5 0.605812 8.48644e-07 8.0352e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| putting them in ||| 0.142857 0.605812 8.48644e-07 1.38608e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| putting these frameworks into ||| 1 0.525896 8.48644e-07 3.59669e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| putting together in ||| 1 0.605812 8.48644e-07 3.1035e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| putting ||| 0.00115518 0.0013435 2.54593e-06 4.1e-06 2.718 ||| 0-0 ||| 2597 1.17835e+06 +en ||| qua non in ||| 0.166667 0.605812 8.48644e-07 3.90667e-12 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| qualification-based ||| 1 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| qualifications to ||| 0.0526316 0.0247351 8.48644e-07 1.40542e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| qualified in ||| 0.125 0.605812 8.48644e-07 6.3264e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| qualify for ||| 0.00653595 0.0286209 8.48644e-07 6.67302e-08 2.718 ||| 0-1 ||| 153 1.17835e+06 +en ||| qualify this by ||| 1 0.0468744 8.48644e-07 3.18813e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| qualities in ||| 0.166667 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| quality books in ||| 1 0.605812 8.48644e-07 2.29935e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| quality education at ||| 1 0.321886 8.48644e-07 6.66569e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| quality in ||| 0.0232558 0.605812 3.39458e-06 2.27658e-05 2.718 ||| 0-1 ||| 172 1.17835e+06 +en ||| quality of goods and services . in ||| 1 0.605812 1.69729e-06 1.91579e-19 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| quality of projects in ||| 1 0.605812 8.48644e-07 6.10157e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| quality of ||| 0.000198059 0.0116562 8.48644e-07 6.72304e-07 2.718 ||| 0-1 ||| 5049 1.17835e+06 +en ||| quantified commitment to ||| 1 0.0247351 8.48644e-07 1.72529e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| quantities in ||| 0.0769231 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| quantities of ||| 0.00359712 0.0116562 8.48644e-07 1.96373e-07 2.718 ||| 0-1 ||| 278 1.17835e+06 +en ||| quantity in ||| 0.125 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| quarters in ||| 0.1 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| question , bearing in ||| 0.25 0.605812 8.48644e-07 2.03193e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| question , on ||| 0.0555556 0.22993 8.48644e-07 8.19351e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| question about ||| 0.00319489 0.0401564 8.48644e-07 2.37112e-06 2.718 ||| 0-1 ||| 313 1.17835e+06 +en ||| question as to ||| 0.00900901 0.066968 1.69729e-06 1.32233e-06 2.718 ||| 0-1 ||| 222 1.17835e+06 +en ||| question as ||| 0.0104167 0.066968 2.54593e-06 1.48814e-05 2.718 ||| 0-1 ||| 288 1.17835e+06 +en ||| question at ||| 0.0151515 0.321886 8.48644e-07 3.30937e-05 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| question because of ||| 0.333333 0.0022788 8.48644e-07 4.7449e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| question because ||| 0.0125 0.0022788 8.48644e-07 8.72801e-08 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| question by ||| 0.00632911 0.0468744 8.48644e-07 7.03792e-06 2.718 ||| 0-1 ||| 158 1.17835e+06 +en ||| question concerning ||| 0.011236 0.0888235 8.48644e-07 1.0026e-06 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| question during ||| 0.0714286 0.226251 8.48644e-07 2.39197e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| question from ||| 0.00729927 0.0308834 8.48644e-07 3.14796e-06 2.718 ||| 0-1 ||| 137 1.17835e+06 +en ||| question in ||| 0.0431894 0.605812 1.10324e-05 0.000382032 2.718 ||| 0-1 ||| 301 1.17835e+06 +en ||| question of acting in ||| 1 0.605812 8.48644e-07 1.22536e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| question of debt ||| 0.333333 0.0116562 8.48644e-07 2.23381e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| question of getting started . when ||| 1 0.142731 8.48644e-07 4.24082e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| question of in ||| 0.333333 0.605812 8.48644e-07 2.07688e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| question of us in ||| 1 0.605812 8.48644e-07 5.98597e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| question of ||| 0.00166548 0.0116562 1.1881e-05 1.12819e-05 2.718 ||| 0-1 ||| 8406 1.17835e+06 +en ||| question on 19 ||| 1 0.22993 8.48644e-07 2.19859e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| question on a point ||| 0.5 0.22993 8.48644e-07 2.66416e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| question on a ||| 0.0833333 0.22993 8.48644e-07 3.04545e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| question on ||| 0.00826446 0.22993 2.54593e-06 6.87059e-05 2.718 ||| 0-1 ||| 363 1.17835e+06 +en ||| question surrounding ||| 1 0.0985915 8.48644e-07 1.26081e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| question to ||| 0.00248447 0.0247351 1.69729e-06 2.3254e-05 2.718 ||| 0-1 ||| 805 1.17835e+06 +en ||| question which will be addressed in ||| 1 0.605812 8.48644e-07 2.72716e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| questioned ||| 0.00831025 0.12693 2.54593e-06 5.04e-05 2.718 ||| 0-0 ||| 361 1.17835e+06 +en ||| questioning or ||| 0.2 0.128107 8.48644e-07 5.21345e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| questioning ||| 0.00898204 0.128107 2.54593e-06 4.56e-05 2.718 ||| 0-0 ||| 334 1.17835e+06 +en ||| questions about it at ||| 0.5 0.321886 8.48644e-07 8.90382e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| questions at ||| 0.0217391 0.321886 8.48644e-07 3.54018e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| questions in ||| 0.00588235 0.605812 8.48644e-07 4.08676e-05 2.718 ||| 0-1 ||| 170 1.17835e+06 +en ||| questions need to ||| 0.0833333 0.0247351 8.48644e-07 2.28087e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| questions raised by ||| 0.0133333 0.0468744 8.48644e-07 8.67316e-11 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| questions when we apply this instrument , ||| 1 0.142731 8.48644e-07 2.79209e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| questions when we apply this instrument ||| 1 0.142731 8.48644e-07 2.34129e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| questions when we apply this ||| 1 0.142731 8.48644e-07 5.56125e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| questions when we apply ||| 1 0.142731 8.48644e-07 8.60688e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| questions when we ||| 0.5 0.142731 8.48644e-07 5.98115e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| questions when ||| 0.125 0.142731 8.48644e-07 5.26867e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| queue in ||| 0.5 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| quick look at a ||| 1 0.321886 8.48644e-07 6.30575e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| quick look at ||| 0.333333 0.321886 8.48644e-07 1.42259e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| quickly as possible in order to ||| 0.0526316 0.605812 8.48644e-07 8.10306e-15 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| quickly as possible in order ||| 0.0666667 0.605812 8.48644e-07 9.11909e-14 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| quickly as possible in ||| 0.0285714 0.605812 8.48644e-07 1.71218e-10 2.718 ||| 0-3 ||| 35 1.17835e+06 +en ||| quickly in ||| 0.0183486 0.605812 1.69729e-06 2.09187e-05 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| quickly than anywhere else in ||| 1 0.605812 8.48644e-07 2.27737e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| quite a ||| 0.00363636 0.0068312 1.69729e-06 3.98046e-06 2.718 ||| 0-0 ||| 550 1.17835e+06 +en ||| quite clearly in ||| 0.0666667 0.605812 1.69729e-06 3.28757e-08 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| quite closely on ||| 0.5 0.22993 8.48644e-07 2.86715e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| quite different , and in some ||| 1 0.605812 8.48644e-07 6.45448e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| quite different , and in ||| 1 0.605812 8.48644e-07 5.92535e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| quite easily carry on discussing until ||| 1 0.22993 8.48644e-07 4.11017e-22 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| quite easily carry on discussing ||| 1 0.22993 8.48644e-07 8.45713e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| quite easily carry on ||| 1 0.22993 8.48644e-07 2.39579e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| quite in ||| 0.25 0.605812 3.39458e-06 0.000180141 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| quite obvious ||| 0.01 0.0068312 8.48644e-07 3.74466e-09 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| quite rightly on ||| 0.166667 0.22993 8.48644e-07 1.71381e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| quite significant during ||| 0.5 0.226251 8.48644e-07 6.49668e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| quite simply in ||| 0.285714 0.605812 1.69729e-06 3.99372e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| quite some time in ||| 1 0.605812 8.48644e-07 3.22146e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| quite sure ||| 0.00259067 0.0068312 8.48644e-07 1.56432e-08 2.718 ||| 0-0 ||| 386 1.17835e+06 +en ||| quite to ||| 0.5 0.0247351 8.48644e-07 1.0965e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| quite well in ||| 0.0833333 0.605812 8.48644e-07 2.85631e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| quite ||| 0.00335925 0.0068312 2.97026e-05 8.98e-05 2.718 ||| 0-0 ||| 10419 1.17835e+06 +en ||| quotas of ||| 0.0263158 0.0116562 8.48644e-07 1.41825e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| quotation from ||| 0.0416667 0.0308834 8.48644e-07 6.84918e-09 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| quote : in ||| 1 0.605812 8.48644e-07 6.93654e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| quote at length here - ||| 1 0.321886 8.48644e-07 5.25395e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| quote at length here ||| 1 0.321886 8.48644e-07 1.39284e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| quote at length ||| 1 0.321886 8.48644e-07 6.86874e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| quote at ||| 0.5 0.321886 8.48644e-07 1.78409e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| quote directly , ' taken as ||| 1 0.066968 8.48644e-07 1.13228e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| quote from ||| 0.0212766 0.0308834 1.69729e-06 1.69707e-07 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| quote in English , ||| 0.5 0.605812 8.48644e-07 3.80696e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| quote in English ||| 0.25 0.605812 8.48644e-07 3.19229e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| quote in ||| 0.0666667 0.605812 8.48644e-07 2.05954e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| quote this price in the ||| 1 0.605812 8.48644e-07 4.17473e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| quote this price in ||| 1 0.605812 8.48644e-07 6.80015e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| quoted as saying in ||| 0.5 0.605812 8.48644e-07 1.01985e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| quoted in connection with ||| 0.5 0.605812 8.48644e-07 5.4974e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| quoted in connection ||| 0.5 0.605812 8.48644e-07 8.59707e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| quoted in ||| 0.0925926 0.605812 4.24322e-06 5.63373e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| quoted on ||| 0.0540541 0.22993 1.69729e-06 1.01319e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| race , in counterterrorism , law enforcement ||| 1 0.605812 8.48644e-07 6.26147e-23 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| race , in counterterrorism , law ||| 1 0.605812 8.48644e-07 4.81651e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| race , in counterterrorism , ||| 1 0.605812 8.48644e-07 2.732e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| race , in counterterrorism ||| 1 0.605812 8.48644e-07 2.29089e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| race , in ||| 0.333333 0.605812 8.48644e-07 5.72723e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| raced round ||| 1 0.181818 8.48644e-07 1.0738e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| raced ||| 0.333333 0.181818 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| radical at ||| 1 0.321886 8.48644e-07 2.60013e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| radical hold of ||| 1 0.0116562 8.48644e-07 1.54412e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| radicalisation is underway in ||| 1 0.605812 8.48644e-07 8.10473e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| raging in ||| 0.0833333 0.605812 1.69729e-06 2.17037e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| raid on ||| 0.0909091 0.22993 8.48644e-07 9.13532e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| rail project was incorporated in ||| 0.5 0.605812 8.48644e-07 2.12837e-17 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| rail within the ||| 0.5 0.369196 8.48644e-07 8.09953e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| rail within ||| 0.5 0.369196 8.48644e-07 1.31932e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| railroad in ||| 0.333333 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| rails are hardening in ||| 1 0.605812 8.48644e-07 8.1275e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| rails in ||| 0.25 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| raise in this ||| 0.1 0.605812 8.48644e-07 1.96629e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| raise in ||| 0.0465116 0.605812 1.69729e-06 3.04314e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| raise its voice and ||| 0.333333 0.0010182 8.48644e-07 3.76841e-15 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| raised , in ||| 0.125 0.605812 8.48644e-07 6.34401e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| raised again in ||| 0.5 0.605812 8.48644e-07 3.07639e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| raised at ||| 0.038961 0.321886 2.54593e-06 4.60823e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| raised before in ||| 1 0.605812 8.48644e-07 1.33046e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| raised by Mr ||| 0.00448431 0.0468744 8.48644e-07 6.39756e-10 2.718 ||| 0-1 ||| 223 1.17835e+06 +en ||| raised by me at ||| 1 0.321886 8.48644e-07 1.4567e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| raised by ||| 0.0022338 0.0468744 2.54593e-06 9.80018e-07 2.718 ||| 0-1 ||| 1343 1.17835e+06 +en ||| raised globally ||| 0.25 0.0620843 8.48644e-07 6.58944e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| raised in the ||| 0.00316456 0.605812 8.48644e-07 3.26587e-06 2.718 ||| 0-1 ||| 316 1.17835e+06 +en ||| raised in ||| 0.0201439 0.605812 1.1881e-05 5.31972e-05 2.718 ||| 0-1 ||| 695 1.17835e+06 +en ||| raised it again on ||| 1 0.22993 8.48644e-07 9.83891e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| raised on ||| 0.037037 0.22993 1.69729e-06 9.56718e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| raised to ||| 0.047619 0.0247351 1.69729e-06 3.23808e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| raised within ||| 0.05 0.369196 8.48644e-07 1.27719e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| raised ||| 0.000167504 0.0001256 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 5970 1.17835e+06 +en ||| raising , in this connection , ||| 0.5 0.605812 8.48644e-07 1.48935e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| raising , in this connection ||| 0.5 0.605812 8.48644e-07 1.24888e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| raising , in this ||| 0.5 0.605812 8.48644e-07 8.18401e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| raising , in ||| 0.5 0.605812 8.48644e-07 1.2666e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| raising awareness of it among ||| 1 0.0422459 8.48644e-07 2.11753e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| raising on ||| 1 0.22993 8.48644e-07 1.91011e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| raising ||| 0.000565291 0.0005305 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1769 1.17835e+06 +en ||| rampage at ||| 1 0.321886 8.48644e-07 4.40022e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ran in ||| 0.2 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| randomly collected on ||| 1 0.22993 8.48644e-07 4.31852e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ranging from ||| 0.00364964 0.0308834 8.48644e-07 3.42459e-08 2.718 ||| 0-1 ||| 274 1.17835e+06 +en ||| rapid progress on ||| 0.0833333 0.22993 8.48644e-07 1.96875e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| rapidly developing ||| 0.0125 0.279045 8.48644e-07 5.4884e-08 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| rapidly on ||| 0.0666667 0.22993 8.48644e-07 9.88276e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| rapidly things have changed here - in ||| 1 0.605812 8.48644e-07 6.75624e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| rapidly ||| 0.00202429 0.0051702 3.39458e-06 8.2e-06 2.718 ||| 0-0 ||| 1976 1.17835e+06 +en ||| rapporteur , in ||| 0.0243902 0.605812 8.48644e-07 3.98153e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| rapporteur for ||| 0.000424088 0.0286209 8.48644e-07 8.31826e-07 2.718 ||| 0-1 ||| 2358 1.17835e+06 +en ||| rapporteur in ||| 0.00277008 0.605812 8.48644e-07 3.33868e-05 2.718 ||| 0-1 ||| 361 1.17835e+06 +en ||| rapporteur means ; in ||| 1 0.605812 8.48644e-07 6.51642e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| rapporteur on behalf ||| 0.0526316 0.22993 8.48644e-07 1.9124e-09 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| rapporteur on ||| 0.00071582 0.22993 8.48644e-07 6.0044e-06 2.718 ||| 0-1 ||| 1397 1.17835e+06 +en ||| rarely , ||| 0.047619 0.0416667 8.48644e-07 3.00522e-06 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| rarely ||| 0.00248756 0.0416667 8.48644e-07 2.52e-05 2.718 ||| 0-0 ||| 402 1.17835e+06 +en ||| rate for ||| 0.012987 0.0286209 8.48644e-07 1.15512e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| rate in the ||| 0.0714286 0.605812 8.48644e-07 2.8463e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| rate in ||| 0.189655 0.605812 9.33509e-06 4.63628e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| rate of knots in ||| 1 0.605812 8.48644e-07 1.76433e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| rate on ||| 0.25 0.22993 8.48644e-07 8.33806e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| rates in ||| 0.0697674 0.605812 2.54593e-06 1.75939e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| rates of increase in ||| 0.5 0.605812 8.48644e-07 1.23576e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| rates when ||| 0.5 0.142731 8.48644e-07 2.26821e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| rates with ||| 0.333333 0.0535436 8.48644e-07 4.44204e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| rates within ||| 0.333333 0.369196 8.48644e-07 4.22403e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| rather , reinforced ||| 0.5 0.16257 8.48644e-07 2.01967e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| rather , through ||| 1 0.16257 8.48644e-07 1.43024e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| rather , to have ||| 0.333333 0.0247351 8.48644e-07 1.22755e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| rather , to ||| 0.0434783 0.0247351 8.48644e-07 1.0264e-06 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| rather , within ||| 1 0.369196 8.48644e-07 4.0484e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| rather , ||| 0.00232829 0.16257 1.69729e-06 0.000310718 2.718 ||| 0-0 ||| 859 1.17835e+06 +en ||| rather - to ||| 0.5 0.0247351 8.48644e-07 3.24656e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| rather at ||| 0.111111 0.321886 8.48644e-07 1.22486e-05 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| rather in ||| 0.03125 0.605812 8.48644e-07 0.000141397 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| rather lack ||| 0.125 0.16257 8.48644e-07 3.16829e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| rather led ||| 0.25 0.16257 8.48644e-07 2.39185e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| rather look into ||| 1 0.525896 8.48644e-07 1.97592e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| rather more extremist in ||| 0.25 0.605812 8.48644e-07 4.52073e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| rather odd ||| 0.025 0.16257 8.48644e-07 1.77174e-08 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| rather on ||| 0.0285714 0.22993 8.48644e-07 2.54294e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| rather sceptical ||| 0.0555556 0.16257 8.48644e-07 2.86605e-09 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| rather sense here in ||| 0.5 0.605812 8.48644e-07 5.10658e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| rather than basing ||| 1 0.16257 8.48644e-07 3.42272e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| rather than have you take it on ||| 1 0.22993 8.48644e-07 8.58885e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| rather than helping ||| 0.1 0.16257 8.48644e-07 3.00881e-11 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| rather than in ||| 0.00724638 0.605812 8.48644e-07 4.31969e-08 2.718 ||| 0-2 ||| 138 1.17835e+06 +en ||| rather than less , ||| 0.142857 0.16257 8.48644e-07 1.61561e-11 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| rather than less ||| 0.0526316 0.16257 8.48644e-07 1.35476e-10 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| rather than ||| 0.000907676 0.16257 5.94051e-06 7.9598e-07 2.718 ||| 0-0 ||| 7712 1.17835e+06 +en ||| rather that we ||| 0.2 0.16257 8.48644e-07 4.97556e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| rather that ||| 0.0243902 0.16257 8.48644e-07 4.38287e-05 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| rather ||| 0.00766744 0.16257 8.65617e-05 0.0026055 2.718 ||| 0-0 ||| 13303 1.17835e+06 +en ||| ratified at ||| 0.111111 0.321886 8.48644e-07 3.32017e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| rating at ||| 1 0.321886 8.48644e-07 2.88014e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ratio in ||| 0.142857 0.605812 8.48644e-07 4.80252e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| rats in ||| 0.166667 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| raw deal in ||| 1 0.605812 8.48644e-07 2.25483e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| re-emphasise , however , ||| 0.333333 0.084507 8.48644e-07 1.29178e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| re-emphasise , however ||| 0.333333 0.084507 8.48644e-07 1.08321e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| re-emphasise , ||| 0.333333 0.084507 8.48644e-07 9.77889e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| re-emphasise ||| 0.0294118 0.084507 8.48644e-07 8.2e-06 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| re-establish itself in ||| 0.5 0.605812 8.48644e-07 6.89504e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| re-established in ||| 0.333333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| re-integrated into ||| 1 0.525896 8.48644e-07 8.85492e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| re-introduced in ||| 0.25 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| reach a ||| 0.000799361 0.0015231 8.48644e-07 6.6744e-08 2.718 ||| 0-1 ||| 1251 1.17835e+06 +en ||| reach agreement on ||| 0.00471698 0.22993 8.48644e-07 1.23977e-09 2.718 ||| 0-2 ||| 212 1.17835e+06 +en ||| reach far into ||| 1 0.525896 8.48644e-07 1.22416e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| reach markets in ||| 1 0.605812 8.48644e-07 1.05106e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| reach maturity - in ||| 1 0.605812 8.48644e-07 5.64371e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| reached a ||| 0.00179211 0.0015231 8.48644e-07 8.8992e-08 2.718 ||| 0-1 ||| 558 1.17835e+06 +en ||| reached as ||| 0.0526316 0.066968 8.48644e-07 1.94269e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| reached at ||| 0.033557 0.321886 4.24322e-06 4.32022e-06 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| reached during the Austrian Presidency ||| 1 0.226251 8.48644e-07 1.09567e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reached during the Austrian ||| 1 0.226251 8.48644e-07 2.20458e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reached during the ||| 0.0416667 0.226251 8.48644e-07 1.91702e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| reached during ||| 0.0344828 0.226251 8.48644e-07 3.1226e-07 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| reached in 1988 in ||| 1 0.605812 8.48644e-07 1.49449e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| reached in ||| 0.0252294 0.605812 9.33509e-06 4.98724e-05 2.718 ||| 0-1 ||| 436 1.17835e+06 +en ||| reached on ||| 0.00456621 0.22993 8.48644e-07 8.96923e-06 2.718 ||| 0-1 ||| 219 1.17835e+06 +en ||| reached the ||| 0.00218818 0.0011669 8.48644e-07 3.09388e-07 2.718 ||| 0-1 ||| 457 1.17835e+06 +en ||| reached ||| 0.0039993 0.0055926 1.95188e-05 3.54e-05 2.718 ||| 0-0 ||| 5751 1.17835e+06 +en ||| reaches right to ||| 0.5 0.0247351 8.48644e-07 1.43204e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| react to an election victory by integrating ||| 1 0.0247351 8.48644e-07 2.70539e-27 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| react to an election victory by ||| 1 0.0247351 8.48644e-07 7.51498e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| react to an election victory ||| 1 0.0247351 8.48644e-07 1.4314e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| react to an election ||| 1 0.0247351 8.48644e-07 2.46793e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| react to an ||| 0.333333 0.0247351 8.48644e-07 1.03694e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| react to ||| 0.003367 0.0247351 8.48644e-07 2.33299e-07 2.718 ||| 0-1 ||| 297 1.17835e+06 +en ||| reacting with resistance . in turn , ||| 1 0.605812 8.48644e-07 2.47271e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| reacting with resistance . in turn ||| 1 0.605812 8.48644e-07 2.07347e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| reacting with resistance . in ||| 1 0.605812 8.48644e-07 9.24831e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| reaction in ||| 0.0344828 0.605812 8.48644e-07 1.04824e-05 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| reaction on ||| 0.0769231 0.22993 8.48644e-07 1.8852e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| reaction to ||| 0.0035461 0.0247351 8.48644e-07 6.38058e-07 2.718 ||| 0-1 ||| 282 1.17835e+06 +en ||| reactions in ||| 0.0454545 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| reactors at ||| 0.0625 0.321886 8.48644e-07 4.40022e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| read , in ||| 0.0588235 0.605812 8.48644e-07 2.65435e-06 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| read by ||| 0.04 0.0468744 8.48644e-07 4.10042e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| read from ||| 0.142857 0.0308834 8.48644e-07 1.83406e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| read in ||| 0.0257732 0.605812 4.24322e-06 2.22578e-05 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| read this in ||| 0.333333 0.605812 8.48644e-07 1.43817e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| reader-friendly ||| 1 0.111111 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| readily in ||| 0.5 0.605812 8.48644e-07 6.14169e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| reading in ||| 0.00436681 0.605812 8.48644e-07 1.32993e-05 2.718 ||| 0-1 ||| 229 1.17835e+06 +en ||| reading ||| 0.000422952 0.0006125 2.54593e-06 2.7e-06 2.718 ||| 0-0 ||| 7093 1.17835e+06 +en ||| reads as ||| 0.0232558 0.066968 8.48644e-07 9.71347e-08 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| ready for ||| 0.00203252 0.0286209 8.48644e-07 5.0968e-07 2.718 ||| 0-1 ||| 492 1.17835e+06 +en ||| ready in ||| 0.016129 0.605812 8.48644e-07 2.04569e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| ready to be launched ||| 0.333333 0.0247351 8.48644e-07 7.46954e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| ready to be ||| 0.0208333 0.0247351 8.48644e-07 2.25666e-08 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| ready to ||| 0.000488281 0.0247351 8.48644e-07 1.2452e-06 2.718 ||| 0-1 ||| 2048 1.17835e+06 +en ||| ready within the ||| 0.5 0.369196 8.48644e-07 3.0152e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ready within ||| 0.142857 0.369196 8.48644e-07 4.91141e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| real at ||| 1 0.321886 8.48644e-07 7.19636e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| real political role in the ||| 0.2 0.605812 8.48644e-07 2.02101e-13 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| real political role in ||| 0.2 0.605812 8.48644e-07 3.29199e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| real regulatory power over ||| 0.5 0.157937 8.48644e-07 1.54987e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| real situation is there in ||| 1 0.605812 8.48644e-07 4.11019e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| realise during ||| 1 0.226251 8.48644e-07 7.48847e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| realise in ||| 0.333333 0.605812 8.48644e-07 1.19601e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| realised as ||| 0.047619 0.066968 8.48644e-07 2.19452e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| realised in ||| 0.0333333 0.605812 8.48644e-07 5.63373e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| realised within ||| 0.2 0.369196 8.48644e-07 1.35258e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| realistically at ||| 0.166667 0.321886 8.48644e-07 5.60028e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| reality , at ||| 1 0.321886 8.48644e-07 3.19142e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| reality in ||| 0.0361991 0.605812 6.78915e-06 3.08932e-05 2.718 ||| 0-1 ||| 221 1.17835e+06 +en ||| realize that issues such as ||| 1 0.066968 8.48644e-07 9.13173e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| really anything like ||| 1 0.007087 8.48644e-07 2.38793e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| really anything ||| 1 0.007087 8.48644e-07 1.34463e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| really at ||| 0.0714286 0.321886 8.48644e-07 1.9377e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| really be able to ||| 0.2 0.0247351 8.48644e-07 2.06016e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| really be committed to ||| 1 0.0247351 8.48644e-07 2.04313e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| really be self-evident that ||| 0.25 0.0017499 8.48644e-07 2.6609e-14 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| really come into ||| 1 0.525896 8.48644e-07 9.10731e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| really did come under ||| 1 0.205566 8.48644e-07 1.05661e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| really do get down to ||| 1 0.0247351 8.48644e-07 1.42758e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| really establishing itself in ||| 1 0.605812 8.48644e-07 7.105e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| really happening at ||| 1 0.321886 8.48644e-07 1.05217e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| really in ||| 0.0588235 0.605812 1.69729e-06 0.000223687 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| really is in ||| 0.2 0.605812 1.69729e-06 7.01059e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| really is ||| 0.00121065 0.007087 8.48644e-07 2.68593e-06 2.718 ||| 0-0 ||| 826 1.17835e+06 +en ||| really just ||| 0.03125 0.007087 8.48644e-07 1.08128e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| really means nothing other ||| 0.333333 0.007087 8.48644e-07 1.30933e-14 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| really means nothing ||| 0.333333 0.007087 8.48644e-07 1.01067e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| really means ||| 0.0298507 0.007087 1.69729e-06 5.43081e-08 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| really must ||| 0.00518135 0.007087 8.48644e-07 1.32458e-07 2.718 ||| 0-0 ||| 193 1.17835e+06 +en ||| really put in ||| 1 0.605812 8.48644e-07 2.46637e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| really relevant here ||| 0.25 0.0855319 8.48644e-07 1.5637e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| really special in ||| 0.5 0.605812 8.48644e-07 1.91476e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| really thinking ||| 0.333333 0.0455702 8.48644e-07 7.08677e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| really to ||| 0.011236 0.0247351 8.48644e-07 1.36157e-05 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| really ||| 0.00109494 0.007087 1.4427e-05 8.57e-05 2.718 ||| 0-0 ||| 15526 1.17835e+06 +en ||| realm of ||| 0.00649351 0.0116562 8.48644e-07 9.27316e-08 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| reap all ||| 0.2 0.0006885 8.48644e-07 3.4216e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| reaping ||| 0.0188679 0.0166667 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| reared under ||| 0.2 0.205566 8.48644e-07 1.24401e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| reason , in ||| 0.0263158 0.605812 8.48644e-07 1.28808e-05 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| reason for putting ||| 0.166667 0.0286209 8.48644e-07 3.0113e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| reason for this - though not the ||| 1 0.0286209 8.48644e-07 3.41348e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reason for this - though not ||| 1 0.0286209 8.48644e-07 5.56016e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reason for this - though ||| 1 0.0286209 8.48644e-07 1.62859e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reason for this - ||| 1 0.0286209 8.48644e-07 6.55895e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reason for this ||| 0.00315457 0.0286209 8.48644e-07 1.73881e-08 2.718 ||| 0-1 ||| 317 1.17835e+06 +en ||| reason for ||| 0.00343446 0.0286209 5.09187e-06 2.69107e-06 2.718 ||| 0-1 ||| 1747 1.17835e+06 +en ||| reason in ||| 0.0416667 0.605812 8.48644e-07 0.000108011 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| reason on ||| 0.111111 0.22993 8.48644e-07 1.9425e-05 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| reason to include such matters in ||| 1 0.605812 8.48644e-07 4.86366e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| reason to ||| 0.00167785 0.0247351 1.69729e-06 6.57453e-06 2.718 ||| 0-1 ||| 1192 1.17835e+06 +en ||| reason we must try to reverse the ||| 0.5 0.0247351 8.48644e-07 1.05791e-20 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| reason we must try to reverse ||| 0.5 0.0247351 8.48644e-07 1.72321e-19 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| reason we must try to ||| 0.5 0.0247351 8.48644e-07 1.77651e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| reason why we in ||| 0.2 0.605812 8.48644e-07 3.02251e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| reasonable hearing in ||| 0.333333 0.605812 8.48644e-07 2.18607e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| reasonably , on ||| 1 0.22993 8.48644e-07 4.65484e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| reasons compel us as Europeans to launch ||| 1 0.066968 8.48644e-07 1.53175e-25 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| reasons compel us as Europeans to ||| 1 0.066968 8.48644e-07 7.73611e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| reasons compel us as Europeans ||| 1 0.066968 8.48644e-07 8.70613e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| reasons compel us as ||| 1 0.066968 8.48644e-07 5.76565e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| reasons for producing consultation documents ||| 1 0.0286209 8.48644e-07 1.45329e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reasons for producing consultation ||| 1 0.0286209 8.48644e-07 5.76703e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reasons for producing ||| 1 0.0286209 8.48644e-07 3.89664e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reasons for women ||| 0.5 0.0286209 8.48644e-07 1.38185e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| reasons for women ’ ||| 1 0.0286209 8.48644e-07 2.40733e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reasons for ||| 0.00283889 0.0286209 3.39458e-06 1.16318e-06 2.718 ||| 0-1 ||| 1409 1.17835e+06 +en ||| reasons in ||| 0.0434783 0.605812 8.48644e-07 4.66861e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| reassured us that the ||| 0.5 0.0017499 8.48644e-07 7.39765e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| reassured us that ||| 0.166667 0.0017499 8.48644e-07 1.20499e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| recall , here in ||| 1 0.605812 8.48644e-07 1.88722e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| recall the ||| 0.00740741 0.0011669 8.48644e-07 4.84134e-08 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| recalled from ||| 0.5 0.0308834 8.48644e-07 1.10348e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| receive a ||| 0.00301205 0.0015231 8.48644e-07 8.27296e-08 2.718 ||| 0-1 ||| 332 1.17835e+06 +en ||| receive greater attention in ||| 0.333333 0.605812 8.48644e-07 1.59549e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| receive more details concerning these various funds ||| 1 0.0888235 8.48644e-07 9.40398e-26 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| receive more details concerning these various ||| 1 0.0888235 8.48644e-07 1.2325e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| receive more details concerning these ||| 1 0.0888235 8.48644e-07 7.98252e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| receive more details concerning ||| 1 0.0888235 8.48644e-07 7.69696e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| receive my ||| 0.0909091 0.002535 8.48644e-07 1.42066e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| received according to ||| 0.166667 0.0247351 8.48644e-07 2.22888e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| received at ||| 0.117647 0.321886 1.69729e-06 3.58418e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| received by ||| 0.00364964 0.0468744 8.48644e-07 7.62236e-07 2.718 ||| 0-1 ||| 274 1.17835e+06 +en ||| received during ||| 0.0454545 0.226251 8.48644e-07 2.5906e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| received given ||| 1 0.0546585 8.48644e-07 1.04017e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| received in Turkey ||| 1 0.605812 8.48644e-07 2.42875e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| received in ||| 0.0441176 0.605812 5.09187e-06 4.13756e-05 2.718 ||| 0-1 ||| 136 1.17835e+06 +en ||| received temporary asylum in ||| 0.333333 0.605812 8.48644e-07 1.08383e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| received to ||| 0.0769231 0.0247351 8.48644e-07 2.5185e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| received ||| 0.000168379 0.0001421 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 5939 1.17835e+06 +en ||| receiving at ||| 1 0.321886 1.69729e-06 1.19606e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| receiving the ||| 0.00840336 0.0011669 8.48644e-07 8.56545e-08 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| recent OECD Industry Council which I chaired ||| 0.5 0.0060084 8.48644e-07 1.21883e-29 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| recent OECD Industry Council which I ||| 0.5 0.0060084 8.48644e-07 3.80886e-24 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| recent issues relating ||| 0.2 0.0007137 8.48644e-07 2.51641e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| recent issues ||| 0.125 0.0007137 8.48644e-07 2.2132e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| recent ||| 0.000159783 0.0007137 1.69729e-06 8.8e-06 2.718 ||| 0-0 ||| 12517 1.17835e+06 +en ||| recently , at ||| 0.0588235 0.321886 8.48644e-07 3.24389e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| recently , can ||| 0.25 0.0095755 8.48644e-07 2.17076e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| recently , however , these bodies have ||| 1 0.0095755 8.48644e-07 4.77136e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| recently , however , these bodies ||| 1 0.0095755 8.48644e-07 3.9895e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| recently , however , these ||| 1 0.0095755 8.48644e-07 9.99874e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| recently , however , ||| 0.111111 0.0095755 8.48644e-07 9.64106e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| recently , however ||| 0.333333 0.0095755 8.48644e-07 8.08442e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| recently , ||| 0.00207469 0.0095755 1.69729e-06 7.29839e-06 2.718 ||| 0-0 ||| 964 1.17835e+06 +en ||| recently addressed it ||| 1 0.0095755 8.48644e-07 5.83346e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| recently addressed ||| 0.142857 0.0095755 8.48644e-07 3.28032e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| recently as Monday they announced they were ||| 1 0.066968 8.48644e-07 1.07337e-24 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| recently as Monday they announced they ||| 1 0.066968 8.48644e-07 5.99182e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| recently as Monday they announced ||| 1 0.066968 8.48644e-07 1.83573e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| recently as Monday they ||| 1 0.066968 8.48644e-07 8.78339e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| recently as Monday ||| 1 0.066968 8.48644e-07 2.69099e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| recently as in ||| 1 0.605812 1.69729e-06 3.2043e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| recently as ||| 0.0804598 0.066968 5.94051e-06 1.22318e-06 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| recently at ||| 0.0277778 0.321886 8.48644e-07 2.72014e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| recently been increased ||| 1 0.0095755 8.48644e-07 1.01566e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| recently been ||| 0.00757576 0.0095755 8.48644e-07 2.04359e-07 2.718 ||| 0-0 ||| 132 1.17835e+06 +en ||| recently by ||| 0.010101 0.0468744 8.48644e-07 5.78483e-07 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| recently decided on ||| 0.5 0.22993 8.48644e-07 3.86275e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| recently got under ||| 0.5 0.205566 8.48644e-07 4.20657e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| recently in , ||| 1 0.605812 8.48644e-07 3.74473e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| recently in ||| 0.0343643 0.605812 8.48644e-06 3.14011e-05 2.718 ||| 0-1 ||| 291 1.17835e+06 +en ||| recently occurred in ||| 0.25 0.605812 8.48644e-07 1.33455e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| recently on ||| 0.0487805 0.22993 1.69729e-06 5.64729e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| recently ||| 0.00097561 0.0095755 5.94051e-06 6.12e-05 2.718 ||| 0-0 ||| 7175 1.17835e+06 +en ||| reception in ||| 0.0645161 0.605812 1.69729e-06 2.30891e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| reception of ||| 0.00943396 0.0116562 8.48644e-07 6.8185e-08 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| recipient of ||| 0.0294118 0.0116562 8.48644e-07 5.86391e-08 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| reciprocate in relation ||| 1 0.605812 8.48644e-07 4.49405e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reciprocate in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reckon with ||| 0.0384615 0.0535436 8.48644e-07 2.0986e-08 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| reckoned with on ||| 0.25 0.0535436 8.48644e-07 2.26228e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| reckoned with ||| 0.0384615 0.0535436 8.48644e-07 3.38108e-08 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| recognise themselves in ||| 0.2 0.605812 8.48644e-07 3.84949e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| recognised as ||| 0.00328947 0.066968 8.48644e-07 4.33508e-07 2.718 ||| 0-1 ||| 304 1.17835e+06 +en ||| recognised by ||| 0.00295858 0.0468744 8.48644e-07 2.05021e-07 2.718 ||| 0-1 ||| 338 1.17835e+06 +en ||| recognised that ||| 0.00294118 0.0017499 8.48644e-07 2.51893e-08 2.718 ||| 0-1 ||| 340 1.17835e+06 +en ||| recognised under ||| 0.0526316 0.205566 8.48644e-07 1.36276e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| recognised within ||| 0.111111 0.369196 8.48644e-07 2.67189e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| recognising in ||| 1 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| recognition at ||| 0.0833333 0.321886 8.48644e-07 1.12406e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| recognition by ||| 0.00961538 0.0468744 8.48644e-07 2.3905e-07 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| recognition in ||| 0.0204082 0.605812 8.48644e-07 1.2976e-05 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| recognition on ||| 0.1 0.22993 8.48644e-07 2.33366e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| recognition to ||| 0.0238095 0.0247351 8.48644e-07 7.89843e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| recognize the ||| 0.00675676 0.0011669 8.48644e-07 2.06258e-08 2.718 ||| 0-1 ||| 148 1.17835e+06 +en ||| recognized amongst ||| 1 0.050508 8.48644e-07 7.696e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| recognized ||| 0.00311042 0.0069541 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 643 1.17835e+06 +en ||| recommend in ||| 0.2 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| recommendation to ||| 0.00507614 0.0247351 8.48644e-07 4.35679e-07 2.718 ||| 0-1 ||| 197 1.17835e+06 +en ||| recommendations in ||| 0.0141844 0.605812 1.69729e-06 4.47928e-06 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| reconciliation on ||| 0.0909091 0.22993 8.48644e-07 1.82706e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| reconfirmed in ||| 0.333333 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| record as ||| 0.0384615 0.066968 8.48644e-07 1.00372e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| record in ||| 0.0289855 0.605812 1.69729e-06 2.57674e-05 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| record is ||| 0.0714286 0.0120746 8.48644e-07 7.05175e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| record listing ||| 0.25 0.0120746 8.48644e-07 9.675e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| record of ||| 0.00462963 0.0116562 8.48644e-07 7.60945e-07 2.718 ||| 0-1 ||| 216 1.17835e+06 +en ||| record within ||| 1 0.369196 8.48644e-07 6.18638e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| record ||| 0.00204813 0.0120746 3.39458e-06 2.25e-05 2.718 ||| 0-0 ||| 1953 1.17835e+06 +en ||| recorded in this ||| 0.2 0.605812 8.48644e-07 6.23604e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| recorded in ||| 0.0418848 0.605812 6.78915e-06 9.65122e-06 2.718 ||| 0-1 ||| 191 1.17835e+06 +en ||| recorded on ||| 0.047619 0.22993 8.48644e-07 1.73571e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| recorded over ||| 0.0588235 0.157937 8.48644e-07 8.37505e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| records , ||| 0.0322581 0.024173 8.48644e-07 1.53839e-06 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| records ||| 0.00953895 0.024173 5.09187e-06 1.29e-05 2.718 ||| 0-0 ||| 629 1.17835e+06 +en ||| recovered within ||| 1 0.369196 8.48644e-07 3.54774e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rectified at ||| 0.166667 0.321886 8.48644e-07 1.00005e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| redeemed in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| redeployed in ||| 0.333333 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| redistributed through ||| 1 0.0366102 8.48644e-07 1.03444e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| redress the balance in ||| 0.5 0.605812 8.48644e-07 4.89881e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| reduce as ||| 0.0666667 0.066968 8.48644e-07 6.85339e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| reduce road traffic in a specific corridor ||| 1 0.605812 8.48644e-07 5.37326e-25 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| reduce road traffic in a specific ||| 1 0.605812 8.48644e-07 2.98514e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| reduce road traffic in a ||| 1 0.605812 8.48644e-07 1.97561e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| reduce road traffic in ||| 1 0.605812 8.48644e-07 4.45702e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| reduced by ||| 0.0222222 0.0468744 3.39458e-06 3.98132e-07 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| reduced in industry and other areas , ||| 1 0.605812 8.48644e-07 1.2646e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reduced in industry and other areas ||| 1 0.605812 8.48644e-07 1.06042e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reduced in industry and other ||| 1 0.605812 8.48644e-07 4.63267e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reduced in industry and ||| 1 0.605812 8.48644e-07 3.57597e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reduced in industry ||| 1 0.605812 8.48644e-07 2.85486e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reduced in ||| 0.0163934 0.605812 8.48644e-07 2.16114e-05 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| reduced standards of service ||| 1 0.0116562 8.48644e-07 3.1211e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| reduced standards of ||| 1 0.0116562 8.48644e-07 4.66533e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| reduced to EUR 213 000 ||| 0.5 0.0247351 8.48644e-07 1.47316e-20 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| reduced to EUR 213 ||| 0.5 0.0247351 8.48644e-07 1.40703e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| reduced to EUR ||| 0.5 0.0247351 8.48644e-07 3.51756e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| reduced to ||| 0.0057971 0.0247351 1.69729e-06 1.31547e-06 2.718 ||| 0-1 ||| 345 1.17835e+06 +en ||| reducing funding in ||| 1 0.605812 8.48644e-07 6.54704e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| reduction for ||| 0.0434783 0.0286209 8.48644e-07 4.71713e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| reduction in ||| 0.00409277 0.605812 7.6378e-06 1.8933e-05 2.718 ||| 0-1 ||| 2199 1.17835e+06 +en ||| reduction is to take place in ||| 1 0.605812 8.48644e-07 1.2776e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| reductions in ||| 0.00291545 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 343 1.17835e+06 +en ||| redundant by ||| 0.1 0.0468744 8.48644e-07 6.72061e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| reexamined in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| refer here to ||| 0.0277778 0.0551335 8.48644e-07 6.58599e-09 2.718 ||| 0-1 0-2 ||| 36 1.17835e+06 +en ||| refer in ||| 0.0280374 0.605812 2.54593e-06 3.60651e-05 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| refer to this ||| 0.0208333 0.0247351 8.48644e-07 1.41844e-08 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| refer to ||| 0.0043057 0.0247351 6.78915e-06 2.19526e-06 2.718 ||| 0-1 ||| 1858 1.17835e+06 +en ||| reference in advance ||| 1 0.605812 8.48644e-07 1.39046e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reference in ||| 0.0359712 0.605812 4.24322e-06 3.93899e-05 2.718 ||| 0-1 ||| 139 1.17835e+06 +en ||| reference to it in ||| 0.166667 0.605812 8.48644e-07 6.22433e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| reference to the Convention in ||| 1 0.605812 8.48644e-07 6.96207e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| reference to ||| 0.00368399 0.0247351 7.6378e-06 2.39764e-06 2.718 ||| 0-1 ||| 2443 1.17835e+06 +en ||| reference under ||| 0.5 0.205566 8.48644e-07 4.82337e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| referred in that connection to ||| 1 0.605812 8.48644e-07 1.00802e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| referred in that connection ||| 1 0.605812 8.48644e-07 1.13441e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| referred in that ||| 1 0.605812 8.48644e-07 7.43388e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| referred in ||| 0.0571429 0.605812 1.69729e-06 4.41925e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| referred on ||| 0.2 0.22993 8.48644e-07 7.94773e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| referred to as ||| 0.00510204 0.066968 8.48644e-07 1.52964e-07 2.718 ||| 0-2 ||| 196 1.17835e+06 +en ||| referred to at ||| 0.333333 0.321886 8.48644e-07 3.40166e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| referred to by Mr Perry , suggests ||| 1 0.0468744 8.48644e-07 5.51916e-23 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| referred to by Mr Perry , ||| 1 0.0468744 8.48644e-07 3.94225e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| referred to by Mr Perry ||| 1 0.0468744 8.48644e-07 3.30574e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| referred to by Mr ||| 0.0169492 0.0468744 8.48644e-07 4.72249e-11 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| referred to by ||| 0.00429185 0.0468744 8.48644e-07 7.23421e-08 2.718 ||| 0-2 ||| 233 1.17835e+06 +en ||| referred to in written ||| 0.5 0.605812 8.48644e-07 1.96343e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| referred to in ||| 0.0184332 0.605812 6.78915e-06 3.92686e-06 2.718 ||| 0-2 ||| 434 1.17835e+06 +en ||| referred to that in ||| 0.25 0.605812 8.48644e-07 6.60561e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| referred to this in ||| 0.111111 0.605812 8.48644e-07 2.5373e-08 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| referred to ||| 0.00224972 0.0247351 5.09187e-06 2.68996e-06 2.718 ||| 0-1 ||| 2667 1.17835e+06 +en ||| referring back ||| 0.0416667 0.0167382 8.48644e-07 1.78239e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| referring here ||| 0.030303 0.0855319 8.48644e-07 1.29604e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| referring in particular here to ||| 0.5 0.605812 8.48644e-07 2.21208e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| referring in particular here ||| 0.333333 0.605812 8.48644e-07 2.48944e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| referring in particular ||| 0.0434783 0.605812 8.48644e-07 1.22766e-08 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| referring in this context to ||| 1 0.0247351 8.48644e-07 2.25373e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| referring in this context ||| 0.333333 0.605812 8.48644e-07 1.72981e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| referring in this ||| 0.25 0.605812 8.48644e-07 1.28898e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| referring in ||| 0.103448 0.605812 2.54593e-06 1.99489e-05 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| referring to ||| 0.00998004 0.0247351 8.48644e-06 1.21428e-06 2.718 ||| 0-1 ||| 1002 1.17835e+06 +en ||| referring ||| 0.00272294 0.0167382 3.39458e-06 2.65e-05 2.718 ||| 0-0 ||| 1469 1.17835e+06 +en ||| refers to ||| 0.000911577 0.0247351 8.48644e-07 5.45301e-07 2.718 ||| 0-1 ||| 1097 1.17835e+06 +en ||| reflect , in ||| 0.2 0.605812 8.48644e-07 1.88338e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| reflect on the ||| 0.00584795 0.22993 8.48644e-07 1.74368e-07 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| reflect on ||| 0.00646552 0.22993 2.54593e-06 2.84026e-06 2.718 ||| 0-1 ||| 464 1.17835e+06 +en ||| reflect the degree ||| 1 0.0011669 8.48644e-07 1.35692e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reflect the ||| 0.001443 0.0011669 8.48644e-07 9.79727e-08 2.718 ||| 0-1 ||| 693 1.17835e+06 +en ||| reflect upon ||| 0.0163934 0.114601 8.48644e-07 3.02294e-08 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| reflect ||| 0.00149869 0.0021194 3.39458e-06 4.1e-06 2.718 ||| 0-0 ||| 2669 1.17835e+06 +en ||| reflected as ||| 0.25 0.066968 8.48644e-07 3.63356e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| reflected in some ||| 0.166667 0.605812 8.48644e-07 1.0161e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| reflected in ||| 0.0177165 0.605812 1.52756e-05 9.32798e-06 2.718 ||| 0-1 ||| 1016 1.17835e+06 +en ||| reflected on ||| 0.0454545 0.22993 8.48644e-07 1.67758e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| reflected upon , ||| 0.5 0.114601 8.48644e-07 2.12927e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| reflected upon ||| 0.25 0.114601 8.48644e-07 1.78548e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| reflected ||| 0.00124922 0.0024643 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 1601 1.17835e+06 +en ||| reflecting the general ||| 0.25 0.0011669 8.48644e-07 1.25259e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| reflecting the ||| 0.00617284 0.0011669 8.48644e-07 7.16175e-09 2.718 ||| 0-1 ||| 162 1.17835e+06 +en ||| reflecting ||| 0.00190476 0.0114379 8.48644e-07 4.8e-06 2.718 ||| 0-0 ||| 525 1.17835e+06 +en ||| reflection in ||| 0.05 0.605812 8.48644e-07 6.3264e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| reflects ||| 0.0010983 0.0017857 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 1821 1.17835e+06 +en ||| reform on ||| 0.037037 0.22993 8.48644e-07 3.40498e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| reforms in ||| 0.00628931 0.605812 1.69729e-06 7.15761e-06 2.718 ||| 0-1 ||| 318 1.17835e+06 +en ||| reforms of the ||| 0.00694444 0.0116562 8.48644e-07 1.29766e-08 2.718 ||| 0-1 ||| 144 1.17835e+06 +en ||| reforms of ||| 0.00938967 0.0116562 1.69729e-06 2.11374e-07 2.718 ||| 0-1 ||| 213 1.17835e+06 +en ||| reforms to ||| 0.00621118 0.0247351 8.48644e-07 4.35679e-07 2.718 ||| 0-1 ||| 161 1.17835e+06 +en ||| refuge behind ||| 0.166667 0.0374138 8.48644e-07 5.8175e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| refuge in ||| 0.0128205 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| refugees in ||| 0.00458716 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| refuse to adopt our faith , etc ||| 1 0.0247351 8.48644e-07 1.06584e-24 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| refuse to adopt our faith , ||| 1 0.0247351 8.48644e-07 7.40165e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| refuse to adopt our faith ||| 1 0.0247351 8.48644e-07 6.20659e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| refuse to adopt our ||| 1 0.0247351 8.48644e-07 4.19364e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| refuse to adopt ||| 0.5 0.0247351 8.48644e-07 3.04019e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| refuse to ||| 0.00139276 0.0247351 8.48644e-07 2.92326e-07 2.718 ||| 0-1 ||| 718 1.17835e+06 +en ||| refused once in ||| 1 0.605812 8.48644e-07 2.24863e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| refused to enter into ||| 0.25 0.525896 8.48644e-07 1.15403e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| regain confidence in ||| 0.166667 0.605812 8.48644e-07 3.56726e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| regard , in ||| 0.0625 0.605812 8.48644e-07 3.74969e-05 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| regard as ||| 0.00660066 0.066968 1.69729e-06 1.2248e-05 2.718 ||| 0-1 ||| 303 1.17835e+06 +en ||| regard for ||| 0.0149254 0.0286209 3.39458e-06 7.83389e-06 2.718 ||| 0-1 ||| 268 1.17835e+06 +en ||| regard in ||| 0.0638298 0.605812 2.54593e-06 0.000314427 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| regard it as ||| 0.00735294 0.066968 8.48644e-07 2.17808e-07 2.718 ||| 0-2 ||| 136 1.17835e+06 +en ||| regard it is , in the ||| 1 0.605812 8.48644e-07 1.28301e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| regard it is , in ||| 1 0.605812 8.48644e-07 2.08987e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| regard on ||| 0.125 0.22993 8.48644e-07 5.65477e-05 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| regard this as ||| 0.0166667 0.066968 8.48644e-07 7.9139e-08 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| regard to the ||| 0.000705343 0.0247351 3.39458e-06 1.17497e-06 2.718 ||| 0-1 ||| 5671 1.17835e+06 +en ||| regard to ||| 0.00457213 0.0247351 5.09187e-05 1.91389e-05 2.718 ||| 0-1 ||| 13123 1.17835e+06 +en ||| regard ||| 5.48456e-05 0.0003828 8.48644e-07 6.8e-06 2.718 ||| 0-0 ||| 18233 1.17835e+06 +en ||| regarded as acceptable bearing in ||| 0.5 0.605812 8.48644e-07 3.82003e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| regarded as being ||| 0.037037 0.066968 8.48644e-07 2.87176e-09 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| regarded as in ||| 0.5 0.605812 8.48644e-07 2.64354e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| regarded as ||| 0.00913242 0.066968 6.78915e-06 1.00912e-06 2.718 ||| 0-1 ||| 876 1.17835e+06 +en ||| regarded by ||| 0.0487805 0.0468744 1.69729e-06 4.77248e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| regarded in ||| 0.0909091 0.605812 1.69729e-06 2.59059e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| regarding it as a ||| 0.5 0.140669 8.48644e-07 1.52267e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| regarding it as ||| 0.111111 0.140669 8.48644e-07 3.43517e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| regarding it ||| 0.0909091 0.140669 8.48644e-07 3.36636e-05 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| regarding one ||| 0.0833333 0.140669 8.48644e-07 7.89002e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| regarding the ||| 0.000180963 0.140669 8.48644e-07 0.000116215 2.718 ||| 0-0 ||| 5526 1.17835e+06 +en ||| regarding ||| 0.0237239 0.140669 0.000252047 0.001893 2.718 ||| 0-0 ||| 12519 1.17835e+06 +en ||| regardless of ||| 0.00134953 0.0116562 1.69729e-06 1.96373e-07 2.718 ||| 0-1 ||| 1482 1.17835e+06 +en ||| regards as ||| 0.0232558 0.066968 8.48644e-07 2.51831e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| regards the ||| 0.000331785 0.0074471 8.48644e-07 5.80766e-06 2.718 ||| 0-0 ||| 3014 1.17835e+06 +en ||| regards ||| 0.00189084 0.0074471 1.27297e-05 9.46e-05 2.718 ||| 0-0 ||| 7933 1.17835e+06 +en ||| regime in ||| 0.0131004 0.605812 2.54593e-06 1.2976e-05 2.718 ||| 0-1 ||| 229 1.17835e+06 +en ||| regimes in ||| 0.037037 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| region at dawn on ||| 0.333333 0.22993 8.48644e-07 7.48999e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| region in ||| 0.0105263 0.605812 2.54593e-06 4.52084e-05 2.718 ||| 0-1 ||| 285 1.17835e+06 +en ||| region of ||| 0.0035524 0.0116562 1.69729e-06 1.33506e-06 2.718 ||| 0-1 ||| 563 1.17835e+06 +en ||| regional competitiveness . in ||| 1 0.605812 8.48644e-07 1.61064e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| regions and islands as ||| 1 0.066968 8.48644e-07 1.46671e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| regions in order ||| 0.142857 0.605812 8.48644e-07 2.02658e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| regions in ||| 0.0168269 0.605812 5.94051e-06 3.80508e-05 2.718 ||| 0-1 ||| 416 1.17835e+06 +en ||| regions into ||| 0.0625 0.525896 8.48644e-07 1.82411e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| regions of ||| 0.00149477 0.0116562 8.48644e-07 1.12369e-06 2.718 ||| 0-1 ||| 669 1.17835e+06 +en ||| regions ||| 6.52869e-05 5.69e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 15317 1.17835e+06 +en ||| register their misgivings when ||| 0.333333 0.142731 8.48644e-07 2.44139e-16 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| registered in ||| 0.0142857 0.605812 1.69729e-06 5.17195e-06 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| regret at ||| 0.0163934 0.321886 8.48644e-07 7.9204e-07 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| regret over ||| 0.5 0.157937 8.48644e-07 7.93426e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| regrettable in my eyes ||| 1 0.605812 8.48644e-07 1.17731e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| regrettable in my ||| 1 0.605812 8.48644e-07 2.01941e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| regrettable in ||| 0.0714286 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| regretted , as we do in ||| 1 0.605812 8.48644e-07 5.47883e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| regretted in ||| 0.5 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| regular circulation in the ||| 0.333333 0.605812 8.48644e-07 3.39288e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| regular circulation in ||| 0.333333 0.605812 8.48644e-07 5.5266e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| regular practice throughout ||| 1 0.309047 8.48644e-07 5.3811e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| regularly abused in ||| 1 0.605812 8.48644e-07 2.96741e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| regularly available in ||| 1 0.605812 8.48644e-07 1.74802e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| regularly reports in ||| 0.333333 0.605812 8.48644e-07 2.73111e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| regularly stored at marshalling yards in ||| 1 0.605812 8.48644e-07 5.54095e-26 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| regularly taken aside at ||| 0.5 0.321886 8.48644e-07 3.05896e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| regulated in ||| 0.00917431 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| regulating ||| 0.00157356 0.0035545 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 1271 1.17835e+06 +en ||| regulation , such as ||| 0.0714286 0.066968 8.48644e-07 3.09778e-10 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| regulation and I shall shortly be reporting ||| 1 0.248793 8.48644e-07 3.07257e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| regulation and I shall shortly be ||| 1 0.248793 8.48644e-07 2.36351e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| regulation and I shall shortly ||| 1 0.248793 8.48644e-07 1.30416e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| regulation at ||| 0.0120482 0.321886 8.48644e-07 2.79214e-06 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| regulation in ||| 0.00357143 0.605812 8.48644e-07 3.22323e-05 2.718 ||| 0-1 ||| 280 1.17835e+06 +en ||| regulation into ||| 0.0555556 0.525896 8.48644e-07 1.54518e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| regulation should be passed in ||| 1 0.605812 8.48644e-07 1.85325e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| regulations , which was in the public ||| 1 0.605812 8.48644e-07 6.38309e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| regulations , which was in the ||| 1 0.605812 8.48644e-07 3.94993e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| regulations , which was in ||| 1 0.605812 8.48644e-07 6.43398e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| regulations contained in ||| 1 0.605812 8.48644e-07 1.37851e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| regulations in ||| 0.00943396 0.605812 1.69729e-06 2.02722e-05 2.718 ||| 0-1 ||| 212 1.17835e+06 +en ||| regulations on ||| 0.00220264 0.22993 8.48644e-07 3.64582e-06 2.718 ||| 0-1 ||| 454 1.17835e+06 +en ||| regulations should thus ||| 0.2 0.0107888 8.48644e-07 2.84584e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| regulations to ||| 0.00719424 0.0247351 8.48644e-07 1.23395e-06 2.718 ||| 0-1 ||| 139 1.17835e+06 +en ||| regulatory power over ||| 0.5 0.157937 8.48644e-07 8.61516e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| rehabilitation ||| 0.00145138 0.0017123 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 689 1.17835e+06 +en ||| reign in ||| 0.0666667 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| reigned in ||| 0.166667 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| reimbursed by ||| 0.111111 0.0468744 8.48644e-07 9.35781e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| reimbursement in ||| 0.047619 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| rein in ||| 0.030303 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| reinstating it on ||| 1 0.22993 8.48644e-07 5.90747e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| reintegrated back into ||| 0.333333 0.525896 8.48644e-07 5.95582e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| reiterated on ||| 0.0666667 0.22993 8.48644e-07 2.07621e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| reiterating in ||| 0.333333 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| rejected in ||| 0.0116959 0.605812 1.69729e-06 7.15761e-06 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| rejected within ||| 0.5 0.369196 8.48644e-07 1.71844e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| relate in ||| 0.0833333 0.605812 8.48644e-07 1.14522e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| relate to ||| 0.0031348 0.0247351 2.54593e-06 6.97086e-07 2.718 ||| 0-1 ||| 957 1.17835e+06 +en ||| related to something ||| 0.5 0.0247351 8.48644e-07 1.01905e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| related to the ||| 0.00120627 0.0247351 8.48644e-07 1.13028e-07 2.718 ||| 0-1 ||| 829 1.17835e+06 +en ||| related to ||| 0.00407056 0.0247351 7.6378e-06 1.84109e-06 2.718 ||| 0-1 ||| 2211 1.17835e+06 +en ||| related ||| 0.000894055 0.0042522 1.69729e-06 1.57e-05 2.718 ||| 0-0 ||| 2237 1.17835e+06 +en ||| relates in ||| 0.0555556 0.605812 8.48644e-07 1.2976e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| relates to ||| 0.00104932 0.0247351 1.69729e-06 7.89843e-07 2.718 ||| 0-1 ||| 1906 1.17835e+06 +en ||| relating to racial ||| 0.0833333 0.0247351 8.48644e-07 3.51551e-12 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| relating to ||| 0.00474246 0.0325028 3.05512e-05 1.91667e-05 2.718 ||| 0-0 ||| 7591 1.17835e+06 +en ||| relating ||| 0.00579605 0.0325028 2.71566e-05 0.0002157 2.718 ||| 0-0 ||| 5521 1.17835e+06 +en ||| relation to ||| 0.00202484 0.0247351 1.27297e-05 6.83875e-06 2.718 ||| 0-1 ||| 7408 1.17835e+06 +en ||| relations in the ||| 0.0645161 0.605812 1.69729e-06 1.53938e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| relations in ||| 0.0416667 0.605812 3.39458e-06 2.50747e-05 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| relations with ||| 0.000983607 0.0535436 2.54593e-06 6.33078e-07 2.718 ||| 0-1 ||| 3050 1.17835e+06 +en ||| relationship is upheld in ||| 1 0.605812 8.48644e-07 4.00374e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| relative issue ||| 0.2 0.030303 8.48644e-07 1.39251e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| relative to ||| 0.0114943 0.0247351 8.48644e-07 2.52975e-07 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| relative ||| 0.00598086 0.030303 4.24322e-06 1.84e-05 2.718 ||| 0-0 ||| 836 1.17835e+06 +en ||| relatively recently got under ||| 0.5 0.205566 8.48644e-07 6.22572e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| release in several Member States ||| 1 0.605812 8.48644e-07 1.68836e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| release in several Member ||| 1 0.605812 8.48644e-07 3.53805e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| release in several ||| 1 0.605812 8.48644e-07 6.86599e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| release in ||| 0.125 0.605812 8.48644e-07 1.04824e-05 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| released , ||| 0.0125 0.0790835 8.48644e-07 8.68174e-06 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| released for productive investment , and that ||| 1 0.0286209 8.48644e-07 7.42006e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| released for productive investment , and ||| 1 0.0286209 8.48644e-07 4.41103e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| released for productive investment , ||| 1 0.0286209 8.48644e-07 3.52153e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| released for productive investment ||| 1 0.0286209 8.48644e-07 2.95295e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| released for productive ||| 1 0.0286209 8.48644e-07 1.20528e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| released for ||| 0.0357143 0.0286209 8.48644e-07 2.23201e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| released into ||| 0.0789474 0.525896 2.54593e-06 4.29464e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| released the latter in advance ||| 0.5 0.605812 8.48644e-07 1.86572e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| released the latter in ||| 0.5 0.605812 8.48644e-07 5.28532e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| released ||| 0.00391773 0.0790835 3.39458e-06 7.28e-05 2.718 ||| 0-0 ||| 1021 1.17835e+06 +en ||| releases into ||| 0.2 0.525896 8.48644e-07 6.41982e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| releasing liquidity into ||| 1 0.525896 8.48644e-07 2.16946e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| relevance in ||| 0.037037 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| relevant here ||| 0.05 0.0855319 8.48644e-07 3.22811e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| relevant in ||| 0.0357143 0.605812 3.39458e-06 4.96876e-05 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| relevant to ||| 0.00625 0.0247351 2.54593e-06 3.02445e-06 2.718 ||| 0-1 ||| 480 1.17835e+06 +en ||| relevant today ||| 0.0243902 0.0398284 8.48644e-07 1.29809e-07 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| reliably sought in ||| 1 0.605812 8.48644e-07 2.09464e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| reliance is ||| 0.5 0.0005032 8.48644e-07 1.02888e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| reliance on customary rights ||| 0.25 0.22993 8.48644e-07 2.99124e-16 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| reliance on customary ||| 0.25 0.22993 8.48644e-07 1.49487e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| reliance on ||| 0.0120482 0.22993 8.48644e-07 2.98974e-07 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| reliant on any set ||| 1 0.22993 8.48644e-07 2.12838e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reliant on any ||| 1 0.22993 8.48644e-07 3.64199e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reliant on ||| 0.0377358 0.22993 1.69729e-06 2.4084e-07 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| relinquish any real regulatory power over ||| 0.5 0.157937 8.48644e-07 3.28119e-24 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| rely on global partnership ||| 1 0.22993 8.48644e-07 1.62318e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rely on global ||| 1 0.22993 8.48644e-07 7.51472e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rely on ||| 0.00595948 0.22993 4.24322e-06 1.64436e-06 2.718 ||| 0-1 ||| 839 1.17835e+06 +en ||| rely upon ||| 0.0294118 0.114601 8.48644e-07 1.75012e-08 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| rely very heavily on ||| 0.25 0.22993 8.48644e-07 1.25874e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| relying more on ||| 0.333333 0.22993 8.48644e-07 1.02415e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| relying on anything ||| 0.333333 0.22993 8.48644e-07 7.03636e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| relying on ||| 0.0168539 0.22993 2.54593e-06 4.48461e-07 2.718 ||| 0-1 ||| 178 1.17835e+06 +en ||| remain a ||| 0.00207039 0.0015231 8.48644e-07 9.99512e-08 2.718 ||| 0-1 ||| 483 1.17835e+06 +en ||| remain at the level of ||| 0.333333 0.321886 8.48644e-07 1.38527e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| remain at the level ||| 0.2 0.321886 8.48644e-07 2.54813e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| remain at the ||| 0.0163934 0.321886 8.48644e-07 2.97888e-07 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| remain at ||| 0.020979 0.321886 2.54593e-06 4.85224e-06 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| remain entrenched in ||| 0.5 0.605812 8.48644e-07 1.79245e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| remain in place , ||| 0.0833333 0.605812 8.48644e-07 1.00533e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| remain in place ||| 0.0125 0.605812 8.48644e-07 8.43011e-08 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| remain in ||| 0.020654 0.605812 1.01837e-05 5.6014e-05 2.718 ||| 0-1 ||| 581 1.17835e+06 +en ||| remain on ||| 0.0296296 0.22993 3.39458e-06 1.00738e-05 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| remain the ability of ||| 0.5 0.0116562 8.48644e-07 4.68156e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| remain to ||| 0.0142857 0.0247351 8.48644e-07 3.40954e-06 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| remain unheard at ||| 1 0.321886 8.48644e-07 5.33747e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| remain where ||| 0.125 0.247783 8.48644e-07 1.03306e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| remain with the ||| 0.0416667 0.0535436 8.48644e-07 8.68218e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| remain with ||| 0.0344828 0.0535436 1.69729e-06 1.41422e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| remain within ||| 0.0194175 0.369196 1.69729e-06 1.34482e-06 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| remain ||| 0.000141924 8.56e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 7046 1.17835e+06 +en ||| remained caught up in ||| 1 0.605812 8.48644e-07 6.76185e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| remaining in ||| 0.0204082 0.605812 8.48644e-07 1.51002e-05 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| remaining on ||| 0.111111 0.22993 8.48644e-07 2.71568e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| remaining out of ||| 0.333333 0.0120599 8.48644e-07 9.78625e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| remaining out ||| 0.333333 0.0120599 8.48644e-07 1.80013e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| remaining within ||| 0.0588235 0.369196 8.48644e-07 3.62535e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| remains available for ||| 0.5 0.0286209 8.48644e-07 3.26455e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| remains for ||| 0.012987 0.0286209 8.48644e-07 1.02626e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| remains imprisoned in ||| 0.166667 0.605812 8.48644e-07 1.77121e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| remains in a position to advance along ||| 1 0.155535 8.48644e-07 6.95394e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| remains in place around ||| 0.333333 0.605812 8.48644e-07 8.25737e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| remains in place ||| 0.0322581 0.605812 8.48644e-07 6.19923e-08 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| remains in ||| 0.0324675 0.605812 4.24322e-06 4.11909e-05 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| remains within ||| 0.0333333 0.369196 8.48644e-07 9.88934e-07 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| remark , made in ||| 1 0.605812 8.48644e-07 7.84446e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| remarkable in ||| 0.0625 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| remarked upon ||| 0.2 0.114601 8.48644e-07 3.18204e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| remarks directed at ||| 1 0.321886 8.48644e-07 3.83131e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| remedial role in ||| 1 0.605812 8.48644e-07 2.25534e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| remedies in ||| 0.142857 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| remember ||| 0.0010057 0.0014815 2.54593e-06 4.8e-06 2.718 ||| 0-0 ||| 2983 1.17835e+06 +en ||| remembered that in ||| 0.166667 0.605812 8.48644e-07 4.19466e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| remind myself of ||| 1 0.0116562 8.48644e-07 6.55251e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| remind us in ||| 1 0.605812 8.48644e-07 4.11262e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| reminded her of ||| 0.2 0.0116562 8.48644e-07 4.00748e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| reminded of this picture when I listen ||| 1 0.142731 8.48644e-07 8.25006e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| reminded of this picture when I ||| 1 0.142731 8.48644e-07 5.46361e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| reminded of this picture when ||| 1 0.142731 8.48644e-07 7.72406e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| reminded of ||| 0.0204082 0.0116562 1.69729e-06 1.4728e-07 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| remit of ||| 0.00938967 0.0116562 1.69729e-06 2.26374e-07 2.718 ||| 0-1 ||| 213 1.17835e+06 +en ||| removal of ||| 0.00148148 0.0116562 8.48644e-07 1.28188e-07 2.718 ||| 0-1 ||| 675 1.17835e+06 +en ||| remove from office ||| 1 0.0308834 8.48644e-07 7.47851e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| remove from ||| 0.0454545 0.0308834 8.48644e-07 7.26774e-08 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| removed from his post in ||| 0.333333 0.605812 8.48644e-07 2.48015e-16 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| removed from ||| 0.013289 0.0308834 3.39458e-06 1.72371e-07 2.718 ||| 0-1 ||| 301 1.17835e+06 +en ||| removed in ||| 0.111111 0.605812 1.69729e-06 2.09187e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| renaissance at ||| 1 0.321886 8.48644e-07 1.60008e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| renewal in ||| 0.111111 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| renewed consideration as ||| 0.5 0.066968 8.48644e-07 2.5255e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| renounced in ||| 0.25 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| reopened despite ||| 1 0.0012296 8.48644e-07 3.225e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reopened within ||| 1 0.369196 8.48644e-07 2.77168e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reorganised in ||| 0.0909091 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| reorienting ||| 0.0625 0.0714286 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| repackaging and ||| 0.333333 0.0769231 8.48644e-07 2.50518e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| repackaging ||| 0.0625 0.0769231 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| repeat , from ||| 0.5 0.0308834 8.48644e-07 1.14352e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| repeat of ||| 0.0258621 0.0116562 2.54593e-06 3.43652e-07 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| repeat the point ||| 0.166667 0.0007826 8.48644e-07 3.26432e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| repeat what I have ||| 0.0833333 0.0060084 8.48644e-07 1.02755e-12 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| repeat what I ||| 0.0181818 0.0060084 8.48644e-07 8.59167e-11 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| repeated attempts were made , in ||| 0.333333 0.605812 8.48644e-07 1.29709e-16 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| repeated consideration to ||| 1 0.0247351 8.48644e-07 6.01068e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| repeated that call in ||| 1 0.605812 8.48644e-07 3.41446e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| repeatedly confirmed to me ||| 0.5 0.0907029 8.48644e-07 1.69494e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| repeatedly confirmed to ||| 0.5 0.0907029 8.48644e-07 2.81505e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| repeatedly confirmed ||| 0.125 0.0907029 8.48644e-07 3.16802e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| repeatedly fed ||| 1 0.0907029 8.48644e-07 1.35539e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| repeatedly in ||| 0.05 0.605812 1.69729e-06 8.31206e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| repeatedly ||| 0.00259067 0.0907029 3.39458e-06 0.0001633 2.718 ||| 0-0 ||| 1544 1.17835e+06 +en ||| repeating themselves ||| 0.166667 0.024911 8.48644e-07 4.08215e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| repeating ||| 0.00511509 0.024911 1.69729e-06 9.5e-06 2.718 ||| 0-0 ||| 391 1.17835e+06 +en ||| repercussions for ||| 0.0119048 0.0286209 8.48644e-07 5.7526e-08 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| replace it with ||| 0.0120482 0.0535436 8.48644e-07 1.72086e-09 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| replace it ||| 0.0108696 0.0080472 8.48644e-07 2.28906e-08 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| replaced by a situation ||| 0.2 0.0468744 8.48644e-07 3.57325e-12 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| replaced by a ||| 0.00632911 0.0468744 8.48644e-07 6.93835e-09 2.718 ||| 0-1 ||| 158 1.17835e+06 +en ||| replaced by ||| 0.00483092 0.0468744 2.54593e-06 1.56531e-07 2.718 ||| 0-1 ||| 621 1.17835e+06 +en ||| replaced on ||| 0.25 0.22993 8.48644e-07 1.52809e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| replaced throughout ||| 0.5 0.309047 8.48644e-07 5.33747e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| reply , ' this is ||| 1 0.0013296 8.48644e-07 1.76366e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| reply , ' this ||| 1 0.0013296 8.48644e-07 5.62731e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| reply in ||| 0.031746 0.605812 1.69729e-06 1.32993e-05 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| report , he has consistently adopted ||| 1 0.0056615 8.48644e-07 9.33937e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| report , he has consistently ||| 1 0.0056615 8.48644e-07 4.57812e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| report , he has ||| 0.142857 0.0056615 8.48644e-07 3.4422e-11 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| report , he ||| 0.0909091 0.0056615 8.48644e-07 6.68713e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| report as one of the most significant ||| 1 0.0116562 8.48644e-07 3.63354e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| report as one of the most ||| 1 0.0116562 8.48644e-07 6.30822e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| report as one of the ||| 1 0.0116562 8.48644e-07 1.45956e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| report as one of ||| 1 0.0116562 8.48644e-07 2.37745e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| report at ||| 0.008 0.321886 8.48644e-07 1.63968e-05 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| report back in ||| 0.2 0.605812 8.48644e-07 1.27312e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| report by Mrs Schaffner , ||| 1 0.0468744 8.48644e-07 1.55694e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| report by Mrs Schaffner ||| 1 0.0468744 8.48644e-07 1.30556e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| report by Mrs ||| 0.00108578 0.0468744 8.48644e-07 3.26389e-10 2.718 ||| 0-1 ||| 921 1.17835e+06 +en ||| report by ||| 0.000226706 0.0468744 8.48644e-07 3.48706e-06 2.718 ||| 0-1 ||| 4411 1.17835e+06 +en ||| report calls for greater investment in ||| 1 0.605812 8.48644e-07 1.68986e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| report does ||| 0.0131579 0.0004293 8.48644e-07 2.09719e-08 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| report during ||| 0.0416667 0.226251 8.48644e-07 1.18514e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| report finds ( as does the ||| 1 0.066968 8.48644e-07 3.73552e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| report finds ( as does ||| 1 0.066968 8.48644e-07 6.08473e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| report finds ( as ||| 1 0.066968 8.48644e-07 8.67512e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| report from the Commission ||| 0.0135135 0.0308834 8.48644e-07 5.59296e-11 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| report from the ||| 0.003125 0.0308834 8.48644e-07 9.57534e-08 2.718 ||| 0-1 ||| 320 1.17835e+06 +en ||| report from ||| 0.00226244 0.0308834 8.48644e-07 1.55971e-06 2.718 ||| 0-1 ||| 442 1.17835e+06 +en ||| report in just ||| 1 0.605812 8.48644e-07 2.3882e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| report in question ||| 0.015625 0.605812 8.48644e-07 1.56595e-07 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| report in ||| 0.0109235 0.605812 9.33509e-06 0.000189284 2.718 ||| 0-1 ||| 1007 1.17835e+06 +en ||| report indicating ||| 0.25 0.0004293 8.48644e-07 1.9435e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| report is on ||| 0.0238095 0.22993 8.48644e-07 1.0669e-06 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| report is ||| 0.000321234 0.0004293 8.48644e-07 9.37099e-07 2.718 ||| 0-0 ||| 3113 1.17835e+06 +en ||| report on ||| 0.000470146 0.22993 2.54593e-06 3.40415e-05 2.718 ||| 0-1 ||| 6381 1.17835e+06 +en ||| report to propose new rules on its ||| 1 0.22993 8.48644e-07 1.01166e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| report to propose new rules on ||| 1 0.22993 8.48644e-07 7.10089e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| report to ||| 0.000868056 0.0247351 8.48644e-07 1.15216e-05 2.718 ||| 0-1 ||| 1152 1.17835e+06 +en ||| report unassisted . on ||| 1 0.22993 8.48644e-07 4.12447e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| report when ||| 0.0243902 0.142731 8.48644e-07 2.44026e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| report which ||| 0.000720981 0.0004293 8.48644e-07 2.53989e-07 2.718 ||| 0-0 ||| 1387 1.17835e+06 +en ||| report will explain how the plan is ||| 0.5 0.0004293 8.48644e-07 3.42936e-22 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| report will explain how the plan ||| 0.5 0.0004293 8.48644e-07 1.09421e-20 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| report will explain how the ||| 0.5 0.0004293 8.48644e-07 1.49686e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| report will explain how ||| 0.5 0.0004293 8.48644e-07 2.43821e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| report will explain ||| 0.5 0.0004293 8.48644e-07 6.80304e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| report will ||| 0.00578035 0.0004293 8.48644e-07 2.58671e-07 2.718 ||| 0-0 ||| 173 1.17835e+06 +en ||| report with a view ||| 0.125 0.0535436 8.48644e-07 1.91348e-10 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| report with a ||| 0.0238095 0.0535436 8.48644e-07 2.11832e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| report with ||| 0.00423729 0.0535436 8.48644e-07 4.77898e-06 2.718 ||| 0-1 ||| 236 1.17835e+06 +en ||| report ||| 0.000215616 0.0004293 2.03675e-05 2.99e-05 2.718 ||| 0-0 ||| 111309 1.17835e+06 +en ||| reported back to ||| 0.0769231 0.0247351 8.48644e-07 5.84184e-10 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| reported different commission rates when ||| 1 0.142731 8.48644e-07 5.55598e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| reported in ||| 0.0380952 0.605812 3.39458e-06 1.4269e-05 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| reported on ||| 0.010989 0.22993 8.48644e-07 2.5662e-06 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| reported sometimes in ||| 1 0.605812 8.48644e-07 8.06201e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| reportedly no longer be guaranteed places in ||| 1 0.605812 8.48644e-07 5.01789e-24 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| reportedly overturned during ||| 0.333333 0.226251 8.48644e-07 2.54434e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| reporting on this to Parliament ||| 1 0.22993 8.48644e-07 3.55804e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reporting on this to ||| 1 0.22993 8.48644e-07 6.19867e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reporting on this ||| 0.333333 0.22993 8.48644e-07 6.97592e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| reporting on ||| 0.010101 0.22993 8.48644e-07 1.07963e-06 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| reporting over ||| 0.2 0.157937 8.48644e-07 5.20936e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| reports , in ||| 0.0555556 0.605812 8.48644e-07 2.73696e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| reports for ||| 0.0263158 0.0286209 8.48644e-07 5.71808e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| reports in this ||| 0.0666667 0.605812 8.48644e-07 1.48292e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| reports in ||| 0.0176471 0.605812 2.54593e-06 2.29505e-05 2.718 ||| 0-1 ||| 170 1.17835e+06 +en ||| reports on ||| 0.0042735 0.22993 2.54593e-06 4.12751e-06 2.718 ||| 0-1 ||| 702 1.17835e+06 +en ||| represent it on ||| 1 0.22993 8.48644e-07 7.54679e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| representation in ||| 0.0168067 0.605812 1.69729e-06 5.4952e-06 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| representation on the part ||| 1 0.22993 8.48644e-07 7.23332e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| representation on the ||| 0.0833333 0.22993 8.48644e-07 6.0672e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| representation on ||| 0.0588235 0.22993 8.48644e-07 9.88276e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| representative in ||| 0.0555556 0.605812 1.69729e-06 1.08057e-05 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| representatives in ||| 0.0196078 0.605812 1.69729e-06 1.49617e-05 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| representatives of a ||| 0.037037 0.0116562 8.48644e-07 1.95849e-08 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| representatives of ||| 0.000405022 0.0116562 8.48644e-07 4.41839e-07 2.718 ||| 0-1 ||| 2469 1.17835e+06 +en ||| represented a ||| 0.00925926 0.0008237 8.48644e-07 6.20561e-08 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| represented at ||| 0.00990099 0.321886 8.48644e-07 1.41207e-06 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| represented by ||| 0.00165837 0.0468744 8.48644e-07 3.00301e-07 2.718 ||| 0-1 ||| 603 1.17835e+06 +en ||| represented in ||| 0.0164706 0.605812 5.94051e-06 1.63009e-05 2.718 ||| 0-1 ||| 425 1.17835e+06 +en ||| represented on ||| 0.0144928 0.22993 8.48644e-07 2.93161e-06 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| represented ||| 0.000423908 0.0008237 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 2359 1.17835e+06 +en ||| representing Member States at ||| 1 0.321886 8.48644e-07 1.06235e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| representing the ||| 0.00209644 0.0450358 8.48644e-07 3.67737e-06 2.718 ||| 0-0 ||| 477 1.17835e+06 +en ||| representing ||| 0.00637755 0.0450358 8.48644e-06 5.99e-05 2.718 ||| 0-0 ||| 1568 1.17835e+06 +en ||| represents , in ||| 0.0909091 0.605812 8.48644e-07 2.04308e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| represents in ||| 0.047619 0.605812 8.48644e-07 1.71321e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| represents the fly in the ||| 1 0.605812 8.48644e-07 7.42555e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| represents the fly in ||| 1 0.605812 8.48644e-07 1.20953e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| reproduced in ||| 0.0833333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| repugnance in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| repugnant at a ||| 0.5 0.321886 8.48644e-07 1.24118e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| repugnant at ||| 0.5 0.321886 8.48644e-07 2.80014e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| reputation in ||| 0.0625 0.605812 1.69729e-06 3.00158e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| request for ||| 0.000857633 0.0286209 8.48644e-07 8.82449e-07 2.718 ||| 0-1 ||| 1166 1.17835e+06 +en ||| request in ||| 0.0377358 0.605812 1.69729e-06 3.54186e-05 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| request its intervention in ||| 0.25 0.605812 8.48644e-07 1.34226e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| requested at ||| 0.1 0.321886 8.48644e-07 7.20036e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| requested in ||| 0.0111111 0.605812 8.48644e-07 8.31206e-06 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| requested to so ||| 1 0.0167313 8.48644e-07 3.44602e-10 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| require the ||| 0.00381679 0.0011669 8.48644e-07 1.34068e-07 2.718 ||| 0-1 ||| 262 1.17835e+06 +en ||| required , by ||| 1 0.0468744 8.48644e-07 1.61003e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| required , in ||| 0.0714286 0.605812 8.48644e-07 8.73954e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| required at ||| 0.030303 0.321886 8.48644e-07 6.34832e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| required by ||| 0.00234192 0.0468744 8.48644e-07 1.35008e-06 2.718 ||| 0-1 ||| 427 1.17835e+06 +en ||| required for ||| 0.00169492 0.0286209 8.48644e-07 1.82588e-06 2.718 ||| 0-1 ||| 590 1.17835e+06 +en ||| required from the person concerned ||| 0.1 0.0308834 8.48644e-07 7.68099e-15 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| required from the person ||| 0.1 0.0308834 8.48644e-07 4.77495e-12 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| required from the ||| 0.0555556 0.0308834 8.48644e-07 3.70726e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| required from ||| 0.0238095 0.0308834 8.48644e-07 6.03869e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| required in ||| 0.0502092 0.605812 1.01837e-05 7.32847e-05 2.718 ||| 0-1 ||| 239 1.17835e+06 +en ||| required on ||| 0.130435 0.22993 2.54593e-06 1.31798e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| required so as ||| 0.25 0.066968 8.48644e-07 6.47927e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| required to accept ||| 0.333333 0.0247351 8.48644e-07 4.83103e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| required to wear ||| 0.2 0.0247351 8.48644e-07 1.78431e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| required to ||| 0.00240192 0.0247351 2.54593e-06 4.46079e-06 2.718 ||| 0-1 ||| 1249 1.17835e+06 +en ||| requirement for additional resources ||| 1 0.0286209 8.48644e-07 1.83462e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| requirement for additional ||| 1 0.0286209 8.48644e-07 2.56231e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| requirement for ||| 0.00573614 0.0286209 2.54593e-06 4.84369e-07 2.718 ||| 0-1 ||| 523 1.17835e+06 +en ||| requirement in ||| 0.0869565 0.605812 3.39458e-06 1.9441e-05 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| requirement of ||| 0.00546448 0.0116562 8.48644e-07 5.74118e-07 2.718 ||| 0-1 ||| 183 1.17835e+06 +en ||| requirement on ||| 0.0666667 0.22993 8.48644e-07 3.49634e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| requirement when ||| 0.333333 0.142731 8.48644e-07 2.50634e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| requirements for vessels ||| 1 0.0286209 8.48644e-07 8.0518e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| requirements for ||| 0.00594059 0.0286209 2.54593e-06 5.59153e-07 2.718 ||| 0-1 ||| 505 1.17835e+06 +en ||| requirements in ||| 0.0169492 0.605812 1.69729e-06 2.24426e-05 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| requirements into line with the annexes to ||| 1 0.525896 8.48644e-07 1.21536e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| requirements into line with the annexes ||| 1 0.525896 8.48644e-07 1.36776e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| requirements into line with the ||| 1 0.525896 8.48644e-07 1.24341e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| requirements into line with ||| 1 0.525896 8.48644e-07 2.02537e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| requirements into line ||| 0.5 0.525896 8.48644e-07 3.16737e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| requirements into ||| 0.142857 0.525896 8.48644e-07 1.07587e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| requirements of ||| 0.00140845 0.0116562 8.48644e-07 6.62758e-07 2.718 ||| 0-1 ||| 710 1.17835e+06 +en ||| requirements on ||| 0.0408163 0.22993 1.69729e-06 4.03615e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| requiring proof of identity ||| 0.5 0.0116562 8.48644e-07 7.67067e-17 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| requiring proof of ||| 0.5 0.0116562 8.48644e-07 3.79736e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| research at ||| 0.0333333 0.321886 8.48644e-07 2.17211e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| research in ||| 0.00211416 0.605812 8.48644e-07 2.50747e-05 2.718 ||| 0-1 ||| 473 1.17835e+06 +en ||| research into ||| 0.00104822 0.525896 8.48644e-07 1.20206e-06 2.718 ||| 0-1 ||| 954 1.17835e+06 +en ||| researchers in ||| 0.0208333 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| reserve on ||| 0.0666667 0.22993 8.48644e-07 7.14216e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| reserved for ||| 0.00534759 0.0286209 8.48644e-07 7.47838e-08 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| reserved zone within the ||| 1 0.369196 8.48644e-07 6.37072e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| reserved zone within ||| 1 0.369196 8.48644e-07 1.03772e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| reservoir on ||| 1 0.22993 8.48644e-07 9.13532e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reshuffle in Germany , ||| 1 0.605812 8.48644e-07 5.70521e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reshuffle in Germany ||| 1 0.605812 8.48644e-07 4.78405e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reshuffle in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| residents are upheld and ||| 0.2 0.0010182 8.48644e-07 4.65915e-16 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| residing within ||| 0.2 0.369196 8.48644e-07 4.43468e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| resistance . in turn , ||| 1 0.605812 8.48644e-07 1.7577e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| resistance . in turn ||| 1 0.605812 8.48644e-07 1.4739e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| resistance . in ||| 1 0.605812 8.48644e-07 6.57405e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| resolutely in ||| 0.0588235 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| resolution , given ||| 0.166667 0.0546585 8.48644e-07 1.20999e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| resolution ; in ||| 1 0.605812 8.48644e-07 1.24308e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| resolution at ||| 0.025 0.321886 8.48644e-07 3.49617e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| resolution in ||| 0.00255754 0.605812 8.48644e-07 4.03597e-05 2.718 ||| 0-1 ||| 391 1.17835e+06 +en ||| resolution last year ||| 0.333333 0.0048275 8.48644e-07 2.50672e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| resolution last ||| 0.166667 0.0048275 8.48644e-07 1.0051e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| resolution on ||| 0.00042517 0.22993 8.48644e-07 7.25843e-06 2.718 ||| 0-1 ||| 2352 1.17835e+06 +en ||| resolution through debate ||| 1 0.0366102 8.48644e-07 1.62656e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| resolution through ||| 0.111111 0.0366102 8.48644e-07 8.2191e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| resolution within ||| 0.111111 0.369196 8.48644e-07 9.68978e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| resolved by ||| 0.00641026 0.0468744 8.48644e-07 2.20334e-07 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| resolved in ||| 0.0137931 0.605812 1.69729e-06 1.19601e-05 2.718 ||| 0-1 ||| 145 1.17835e+06 +en ||| resolved on the basis of ||| 0.5 0.22993 8.48644e-07 4.26278e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| resolved on the basis ||| 0.5 0.22993 8.48644e-07 7.84118e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| resolved on the ||| 0.333333 0.22993 8.48644e-07 1.32051e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| resolved on ||| 0.111111 0.22993 8.48644e-07 2.15095e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| resort to ||| 0.00274725 0.0247351 8.48644e-07 4.35679e-07 2.718 ||| 0-1 ||| 364 1.17835e+06 +en ||| resource , ||| 0.0188679 0.0037453 8.48644e-07 4.05466e-07 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| resource ||| 0.00139762 0.0037453 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 1431 1.17835e+06 +en ||| resources available for ||| 0.0204082 0.0286209 8.48644e-07 2.62042e-10 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| resources for ||| 0.00178253 0.0286209 8.48644e-07 8.23772e-07 2.718 ||| 0-1 ||| 561 1.17835e+06 +en ||| resources in ||| 0.0197368 0.605812 5.09187e-06 3.30635e-05 2.718 ||| 0-1 ||| 304 1.17835e+06 +en ||| respect , I should like , on ||| 1 0.22993 8.48644e-07 2.84396e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| respect , we are going through it ||| 1 0.0366102 8.48644e-07 1.27176e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| respect , we are going through ||| 1 0.0366102 8.48644e-07 7.15144e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| respect for her ||| 1 0.0286209 8.48644e-07 1.35428e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| respect for ||| 0.000529717 0.0286209 4.24322e-06 4.97715e-06 2.718 ||| 0-1 ||| 9439 1.17835e+06 +en ||| respect here in Europe . ||| 0.5 0.605812 8.48644e-07 6.20866e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| respect here in Europe ||| 0.5 0.605812 8.48644e-07 2.04974e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| respect here in ||| 0.5 0.605812 8.48644e-07 4.05087e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| respect in the ||| 0.04 0.605812 8.48644e-07 1.2264e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| respect in ||| 0.0632911 0.605812 4.24322e-06 0.000199767 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| respect into ||| 1 0.525896 8.48644e-07 9.5766e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| respect of ||| 0.000731261 0.0116562 1.69729e-06 5.89937e-06 2.718 ||| 0-1 ||| 2735 1.17835e+06 +en ||| respect over ||| 1 0.157937 8.48644e-07 1.73351e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| respect the ||| 0.000591017 0.0011669 8.48644e-07 1.23927e-06 2.718 ||| 0-1 ||| 1692 1.17835e+06 +en ||| respect to the ||| 0.00225225 0.0247351 8.48644e-07 7.46503e-07 2.718 ||| 0-1 ||| 444 1.17835e+06 +en ||| respect to ||| 0.00170213 0.0247351 1.69729e-06 1.21597e-05 2.718 ||| 0-1 ||| 1175 1.17835e+06 +en ||| respect we in ||| 1 0.605812 8.48644e-07 2.26781e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| respect when ||| 0.2 0.142731 8.48644e-07 2.5754e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| respectable in ||| 0.5 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| respected according to ||| 0.5 0.0416907 8.48644e-07 2.9192e-10 2.718 ||| 0-1 0-2 ||| 2 1.17835e+06 +en ||| respected in ||| 0.0526316 0.605812 5.09187e-06 1.13136e-05 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| respected within ||| 0.0833333 0.369196 8.48644e-07 2.71624e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| respectively . in addition , Parliament will ||| 1 0.605812 8.48644e-07 1.11891e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| respectively . in addition , Parliament ||| 1 0.605812 8.48644e-07 1.29336e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| respectively . in addition , ||| 1 0.605812 8.48644e-07 2.25324e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| respectively . in addition ||| 1 0.605812 8.48644e-07 1.88944e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| respectively . in ||| 1 0.605812 8.48644e-07 1.91627e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| respects in ||| 0.0909091 0.605812 8.48644e-07 9.32798e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| respond to ||| 0.000493097 0.0247351 8.48644e-07 7.98276e-07 2.718 ||| 0-1 ||| 2028 1.17835e+06 +en ||| response from ||| 0.00490196 0.0308834 8.48644e-07 3.8051e-07 2.718 ||| 0-1 ||| 204 1.17835e+06 +en ||| response in order to safeguard ||| 0.5 0.605812 8.48644e-07 4.48011e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| response in order to ||| 0.5 0.605812 8.48644e-07 2.18542e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| response in order ||| 0.5 0.605812 8.48644e-07 2.45945e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| response in ||| 0.0434783 0.605812 3.39458e-06 4.61781e-05 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| response to your ||| 0.0185185 0.0247351 8.48644e-07 7.19291e-10 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| response to ||| 0.000752729 0.0247351 1.69729e-06 2.81083e-06 2.718 ||| 0-1 ||| 2657 1.17835e+06 +en ||| response will be ||| 0.0625 0.0005314 8.48644e-07 1.7996e-10 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| response will ||| 0.125 0.0005314 8.48644e-07 9.93e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| responsibilities in ||| 0.00714286 0.605812 1.69729e-06 1.09904e-05 2.718 ||| 0-1 ||| 280 1.17835e+06 +en ||| responsibilities of ||| 0.00282486 0.0116562 8.48644e-07 3.24561e-07 2.718 ||| 0-1 ||| 354 1.17835e+06 +en ||| responsibilities with ||| 0.03125 0.0535436 8.48644e-07 2.77482e-07 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| responsibility and emphasis on those players to ||| 1 0.22993 8.48644e-07 6.67615e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| responsibility and emphasis on those players ||| 1 0.22993 8.48644e-07 7.51326e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| responsibility and emphasis on those ||| 1 0.22993 8.48644e-07 4.44572e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| responsibility and emphasis on ||| 1 0.22993 8.48644e-07 6.13964e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| responsibility as ||| 0.00840336 0.066968 8.48644e-07 2.0776e-06 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| responsibility for foreign and defence policy on ||| 1 0.22993 8.48644e-07 2.50112e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| responsibility for ||| 0.00108225 0.0286209 3.39458e-06 1.32885e-06 2.718 ||| 0-1 ||| 3696 1.17835e+06 +en ||| responsibility in relation to ||| 0.125 0.605812 8.48644e-07 1.15308e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| responsibility in relation ||| 0.25 0.605812 8.48644e-07 1.29766e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| responsibility in ||| 0.00588235 0.605812 2.54593e-06 5.33357e-05 2.718 ||| 0-1 ||| 510 1.17835e+06 +en ||| responsibility of ||| 0.00129116 0.0116562 1.69729e-06 1.57507e-06 2.718 ||| 0-1 ||| 1549 1.17835e+06 +en ||| responsibility with ||| 0.0142857 0.0535436 8.48644e-07 1.3466e-06 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| responsible for 32 ||| 1 0.0286209 8.48644e-07 7.31696e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| responsible for consumers , I am all ||| 1 0.0286209 8.48644e-07 3.24073e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| responsible for consumers , I am ||| 1 0.0286209 8.48644e-07 6.85811e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| responsible for consumers , I ||| 1 0.0286209 8.48644e-07 5.36839e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| responsible for consumers , ||| 1 0.0286209 8.48644e-07 7.58944e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| responsible for consumers ||| 1 0.0286209 8.48644e-07 6.36406e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| responsible for killings first in ||| 1 0.605812 8.48644e-07 5.08704e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| responsible for what in ||| 0.25 0.605812 8.48644e-07 7.36506e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| responsible for ||| 0.0018224 0.0286209 9.33509e-06 1.70162e-06 2.718 ||| 0-1 ||| 6036 1.17835e+06 +en ||| responsibly in ||| 0.0322581 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| rest in ||| 0.0588235 0.605812 8.48644e-07 3.49107e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| rest of ||| 0.00584307 0.0116562 5.94051e-06 1.03096e-06 2.718 ||| 0-1 ||| 1198 1.17835e+06 +en ||| rest on ||| 0.0352941 0.22993 2.54593e-06 6.27846e-06 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| restarting in ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| rested in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| resting in ||| 0.25 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| resting with ||| 0.333333 0.0535436 8.48644e-07 1.63225e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| restoration of ||| 0.00263852 0.0116562 8.48644e-07 5.86391e-08 2.718 ||| 0-1 ||| 379 1.17835e+06 +en ||| restored in ||| 0.125 0.605812 2.54593e-06 7.98881e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| restored on ||| 0.25 0.22993 8.48644e-07 1.43674e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| restored to ||| 0.0322581 0.0247351 1.69729e-06 4.86274e-07 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| restrained when it comes to ||| 0.5 0.0080472 8.48644e-07 3.42847e-17 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| restrained when it comes ||| 0.5 0.0080472 8.48644e-07 3.85836e-16 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| restrained when it ||| 0.5 0.0080472 8.48644e-07 9.65072e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| restricted by ||| 0.0131579 0.0468744 8.48644e-07 1.34412e-07 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| restricted in ||| 0.0227273 0.605812 8.48644e-07 7.29614e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| restricted to ||| 0.00357143 0.0247351 8.48644e-07 4.44111e-07 2.718 ||| 0-1 ||| 280 1.17835e+06 +en ||| restriction in ||| 0.1 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| restrictions in the ||| 0.0333333 0.605812 8.48644e-07 5.41477e-07 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| restrictions in ||| 0.0306122 0.605812 2.54593e-06 8.82002e-06 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| restrictions on ||| 0.00230415 0.22993 1.69729e-06 1.58622e-06 2.718 ||| 0-1 ||| 868 1.17835e+06 +en ||| restrictions were put on ||| 0.0769231 0.22993 8.48644e-07 3.13311e-12 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| result , in ||| 0.0416667 0.605812 8.48644e-07 2.89941e-05 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| result at all - ||| 1 0.321886 8.48644e-07 3.75407e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| result at all ||| 0.142857 0.321886 8.48644e-07 9.95219e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| result at ||| 0.0666667 0.321886 8.48644e-07 2.10611e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| result from ||| 0.00285714 0.0308834 8.48644e-07 2.00339e-06 2.718 ||| 0-1 ||| 350 1.17835e+06 +en ||| result in a ||| 0.0037594 0.605812 8.48644e-07 1.07768e-05 2.718 ||| 0-1 ||| 266 1.17835e+06 +en ||| result in impossible ||| 0.333333 0.605812 8.48644e-07 1.30316e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| result in partial failure ||| 0.2 0.605812 8.48644e-07 4.09622e-14 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| result in partial ||| 0.2 0.605812 8.48644e-07 8.7526e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| result in some ||| 0.111111 0.605812 8.48644e-07 2.64839e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| result in the ||| 0.00408163 0.605812 8.48644e-07 1.49261e-05 2.718 ||| 0-1 ||| 245 1.17835e+06 +en ||| result in ||| 0.0182894 0.605812 2.88539e-05 0.000243128 2.718 ||| 0-1 ||| 1859 1.17835e+06 +en ||| result of entering ||| 1 0.284907 8.48644e-07 9.81757e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| result of the ||| 0.000527426 0.0116562 8.48644e-07 4.40786e-07 2.718 ||| 0-1 ||| 1896 1.17835e+06 +en ||| result of their ||| 0.0151515 0.0116562 8.48644e-07 8.3222e-09 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| result of ||| 0.00238445 0.0116562 1.10324e-05 7.17988e-06 2.718 ||| 0-1 ||| 5452 1.17835e+06 +en ||| result that ||| 0.00221729 0.0017499 8.48644e-07 5.50298e-07 2.718 ||| 0-1 ||| 451 1.17835e+06 +en ||| result there ||| 0.0769231 0.0117359 8.48644e-07 5.90417e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| resulted in ||| 0.0109612 0.605812 1.10324e-05 1.18216e-05 2.718 ||| 0-1 ||| 1186 1.17835e+06 +en ||| resulting from ||| 0.00203252 0.0308834 1.69729e-06 1.72371e-07 2.718 ||| 0-1 ||| 984 1.17835e+06 +en ||| resulting in some ||| 0.2 0.605812 8.48644e-07 2.27867e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| resulting in ||| 0.00938967 0.605812 5.09187e-06 2.09187e-05 2.718 ||| 0-1 ||| 639 1.17835e+06 +en ||| results from ||| 0.0147601 0.0308834 3.39458e-06 2.94515e-07 2.718 ||| 0-1 ||| 271 1.17835e+06 +en ||| results here ||| 0.166667 0.0855319 8.48644e-07 2.32208e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| results in a travel ban ||| 1 0.605812 8.48644e-07 2.30561e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| results in a travel ||| 1 0.605812 8.48644e-07 5.9886e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| results in a ||| 0.0119048 0.605812 8.48644e-07 1.58429e-06 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| results in ||| 0.00993789 0.605812 6.78915e-06 3.57419e-05 2.718 ||| 0-1 ||| 805 1.17835e+06 +en ||| results into ||| 0.0769231 0.525896 8.48644e-07 1.71343e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| resume its role in a new ||| 1 0.605812 8.48644e-07 1.66388e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| resume its role in a ||| 1 0.605812 8.48644e-07 2.7838e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| resume its role in ||| 1 0.605812 8.48644e-07 6.28031e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| resurface in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| retain during ||| 1 0.226251 8.48644e-07 4.48152e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| retain ||| 0.000670241 0.0006223 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1492 1.17835e+06 +en ||| retained in ||| 0.121212 0.605812 3.39458e-06 4.34074e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| retention basin ||| 0.333333 0.0104167 8.48644e-07 2.8e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| return for ||| 0.00448431 0.0286209 8.48644e-07 7.66246e-07 2.718 ||| 0-1 ||| 223 1.17835e+06 +en ||| return in ||| 0.0285714 0.605812 8.48644e-07 3.07546e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| return of ||| 0.0019305 0.0116562 8.48644e-07 9.08224e-07 2.718 ||| 0-1 ||| 518 1.17835e+06 +en ||| return on ||| 0.0294118 0.22993 2.54593e-06 5.53102e-06 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| return the favour in future . in ||| 1 0.605812 8.48644e-07 1.05179e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| return them to ||| 0.0666667 0.0247351 8.48644e-07 5.02149e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| return to ||| 0.0023068 0.0247351 3.39458e-06 1.87201e-06 2.718 ||| 0-1 ||| 1734 1.17835e+06 +en ||| returned in ||| 0.117647 0.605812 1.69729e-06 6.14169e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| returned on ||| 0.25 0.22993 8.48644e-07 1.10454e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| returned to ||| 0.00304878 0.0247351 8.48644e-07 3.7384e-07 2.718 ||| 0-1 ||| 328 1.17835e+06 +en ||| reunification with countries ||| 1 0.0535436 8.48644e-07 9.73915e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| reunification with ||| 0.111111 0.0535436 8.48644e-07 2.56496e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| revealed in ||| 0.0909091 0.605812 3.39458e-06 6.64965e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| revealing in ||| 0.142857 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| review its performance in ||| 0.5 0.605812 8.48644e-07 5.64517e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| review of ||| 0.00159872 0.0116562 1.69729e-06 5.15479e-07 2.718 ||| 0-1 ||| 1251 1.17835e+06 +en ||| review with ||| 0.0833333 0.0535436 8.48644e-07 4.40706e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| reviewed in terms ||| 0.25 0.605812 8.48644e-07 3.44659e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| reviewed in ||| 0.0447761 0.605812 2.54593e-06 3.14011e-06 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| revised in ||| 0.0185185 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| revision of ||| 0.000865052 0.0116562 8.48644e-07 1.56825e-07 2.718 ||| 0-1 ||| 1156 1.17835e+06 +en ||| revolution in ||| 0.0102041 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| revolve ||| 0.027027 0.0196078 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| revolves ||| 0.0441176 0.325 2.54593e-06 2.65e-05 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| rewards in ||| 0.166667 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| reworded along ||| 1 0.155535 8.48644e-07 5.5685e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rhetoric ||| 0.00288184 0.0068337 1.69729e-06 4.1e-06 2.718 ||| 0-0 ||| 694 1.17835e+06 +en ||| rich to ||| 0.0909091 0.0247351 8.48644e-07 3.54165e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| rid of them in ||| 1 0.605812 8.48644e-07 1.57575e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| rides on ||| 0.5 0.22993 8.48644e-07 1.49487e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| riding roughshod over ||| 0.0357143 0.157937 8.48644e-07 3.60648e-14 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| rife in ||| 0.142857 0.605812 2.54593e-06 1.66241e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| right , in ||| 0.0588235 0.605812 1.69729e-06 3.55144e-05 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| right about ||| 0.0181818 0.0401564 8.48644e-07 1.84835e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| right across the ||| 0.0104712 0.274879 1.69729e-06 8.1333e-08 2.718 ||| 0-1 ||| 191 1.17835e+06 +en ||| right across ||| 0.0447761 0.274879 1.27297e-05 1.32482e-06 2.718 ||| 0-1 ||| 335 1.17835e+06 +en ||| right after ||| 0.04 0.0144723 8.48644e-07 1.71156e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| right and respect here in Europe . ||| 1 0.605812 8.48644e-07 5.01532e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| right and respect here in Europe ||| 1 0.605812 8.48644e-07 1.65577e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| right and respect here in ||| 1 0.605812 8.48644e-07 3.27227e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| right as such , in ||| 1 0.605812 8.48644e-07 7.49775e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| right as we have acted in ||| 1 0.605812 8.48644e-07 8.00434e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| right at the ||| 0.00564972 0.321886 8.48644e-07 1.58374e-06 2.718 ||| 0-1 ||| 177 1.17835e+06 +en ||| right at ||| 0.143836 0.321886 1.78215e-05 2.57973e-05 2.718 ||| 0-1 ||| 146 1.17835e+06 +en ||| right back to ||| 0.0909091 0.0247351 8.48644e-07 1.21922e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| right both ||| 0.166667 0.0071334 8.48644e-07 2.96513e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| right cannot in ||| 1 0.605812 8.48644e-07 6.70949e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| right differ slightly in ||| 1 0.605812 8.48644e-07 3.00721e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| right down to ||| 0.0232558 0.0247351 8.48644e-07 1.26545e-08 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| right enough , while ||| 1 0.0151276 8.48644e-07 3.47484e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| right environment in which to do ||| 1 0.605812 8.48644e-07 4.30891e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| right environment in which to ||| 1 0.605812 8.48644e-07 1.25431e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| right environment in which ||| 1 0.605812 8.48644e-07 1.41158e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| right environment in ||| 1 0.605812 8.48644e-07 1.66174e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| right first time ||| 0.333333 0.138055 8.48644e-07 6.47087e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| right first ||| 0.333333 0.138055 8.48644e-07 3.94156e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| right from the ||| 0.00626959 0.0308834 1.69729e-06 1.5065e-07 2.718 ||| 0-1 ||| 319 1.17835e+06 +en ||| right from ||| 0.0162602 0.0308834 5.09187e-06 2.45391e-06 2.718 ||| 0-1 ||| 369 1.17835e+06 +en ||| right here - in ||| 1 0.605812 8.48644e-07 2.27791e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| right here and ||| 0.2 0.0855319 8.48644e-07 2.42347e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| right here ||| 0.0190476 0.0855319 1.69729e-06 1.93476e-06 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| right honourable friend ||| 1 0.0071334 8.48644e-07 1.07454e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| right honourable ||| 0.5 0.0071334 8.48644e-07 9.3438e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| right in saying ||| 0.00625 0.0071334 8.48644e-07 6.79691e-10 2.718 ||| 0-0 ||| 160 1.17835e+06 +en ||| right in that ||| 0.0588235 0.605812 8.48644e-07 5.00952e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| right in ||| 0.0373514 0.605812 1.86702e-05 0.000297803 2.718 ||| 0-1 ||| 589 1.17835e+06 +en ||| right into the ||| 0.0909091 0.525896 8.48644e-07 8.76451e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| right into ||| 0.210526 0.525896 3.39458e-06 1.42763e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| right kind and in ||| 1 0.605812 8.48644e-07 1.82036e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| right level at which ||| 0.5 0.321886 8.48644e-07 1.8745e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| right level at ||| 0.5 0.321886 8.48644e-07 2.2067e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| right now , ||| 0.00655738 0.0071334 1.69729e-06 4.39718e-08 2.718 ||| 0-0 ||| 305 1.17835e+06 +en ||| right now in ||| 0.037037 0.605812 8.48644e-07 6.13444e-07 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| right now ||| 0.002997 0.0071334 2.54593e-06 3.68722e-07 2.718 ||| 0-0 ||| 1001 1.17835e+06 +en ||| right of way in ||| 1 0.605812 8.48644e-07 3.48986e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| right of ||| 0.00096494 0.0116562 2.54593e-06 8.7945e-06 2.718 ||| 0-1 ||| 3109 1.17835e+06 +en ||| right on ||| 0.0322581 0.22993 1.69729e-06 5.35579e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| right steps in ||| 0.2 0.605812 8.48644e-07 1.75704e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| right the way ||| 0.2 0.0071334 8.48644e-07 2.36882e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| right the ||| 0.0344828 0.0071334 8.48644e-07 1.09891e-05 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| right through ||| 0.0322581 0.0218718 1.69729e-06 1.68332e-07 2.718 ||| 0-0 0-1 ||| 62 1.17835e+06 +en ||| right to avoid smoke in ||| 1 0.605812 8.48644e-07 5.41787e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| right to it in ||| 0.5 0.605812 8.48644e-07 4.70583e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| right to live in ||| 0.0212766 0.605812 8.48644e-07 2.66739e-09 2.718 ||| 0-3 ||| 47 1.17835e+06 +en ||| right to organise ||| 0.142857 0.0247351 8.48644e-07 1.88521e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| right to say ||| 0.00333333 0.0071334 8.48644e-07 1.52026e-08 2.718 ||| 0-0 ||| 300 1.17835e+06 +en ||| right to ||| 0.00117265 0.0247351 1.10324e-05 1.8127e-05 2.718 ||| 0-1 ||| 11086 1.17835e+06 +en ||| right today ||| 0.142857 0.0071334 8.48644e-07 8.07827e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| right towards ||| 0.25 0.0616136 8.48644e-07 6.42449e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| right up in ||| 0.333333 0.605812 8.48644e-07 1.01566e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| right up to ||| 0.0212766 0.0247351 1.69729e-06 6.18223e-08 2.718 ||| 0-2 ||| 94 1.17835e+06 +en ||| right way up ||| 0.25 0.0071334 8.48644e-07 1.31595e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| right way ||| 0.00203252 0.0071334 8.48644e-07 3.85852e-07 2.718 ||| 0-0 ||| 492 1.17835e+06 +en ||| right ||| 0.00338454 0.0071334 9.92914e-05 0.000179 2.718 ||| 0-0 ||| 34569 1.17835e+06 +en ||| rightly , to ||| 0.142857 0.0247351 8.48644e-07 1.77323e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| rightly on ||| 0.25 0.22993 8.48644e-07 4.39326e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| rightly pointed out at ||| 1 0.321886 8.48644e-07 3.73665e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| rights , both in ||| 0.333333 0.605812 8.48644e-07 1.82537e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| rights . in ||| 1 0.605812 8.48644e-07 2.79887e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| rights at ||| 0.0169492 0.321886 8.48644e-07 8.0044e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| rights in Albania ||| 1 0.605812 8.48644e-07 7.6694e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rights in the Republic of ||| 1 0.605812 8.48644e-07 1.46487e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rights in the Republic ||| 1 0.605812 8.48644e-07 2.69456e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rights in the ||| 0.0283019 0.605812 2.54593e-06 5.67275e-06 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| rights in ||| 0.0469484 0.605812 1.69729e-05 9.24024e-05 2.718 ||| 0-1 ||| 426 1.17835e+06 +en ||| rights on ||| 0.0153846 0.22993 8.48644e-07 1.6618e-05 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| rights to ||| 0.00151286 0.0247351 8.48644e-07 5.62447e-06 2.718 ||| 0-1 ||| 661 1.17835e+06 +en ||| rights when ||| 0.0434783 0.142731 8.48644e-07 1.19126e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| rights within ||| 0.0322581 0.369196 8.48644e-07 2.21845e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| rigorous budget on ||| 1 0.22993 8.48644e-07 4.40671e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| rigorous in ||| 0.0204082 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| rigorously during ||| 1 0.226251 8.48644e-07 1.04087e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ring to it ||| 0.166667 0.0247351 8.48644e-07 2.49928e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| ring to ||| 0.285714 0.0247351 1.69729e-06 1.40542e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| ringing in ||| 0.25 0.605812 1.69729e-06 6.46494e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| riots on ||| 0.166667 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| rise above all ||| 0.5 0.0146514 8.48644e-07 6.54048e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| rise above ||| 0.0204082 0.0146514 8.48644e-07 1.38411e-08 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| rise by about ||| 0.5 0.0401564 8.48644e-07 1.88994e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| rise from ||| 0.0606061 0.0308834 1.69729e-06 4.77921e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| rise in ||| 0.00912647 0.605812 5.94051e-06 5.79997e-05 2.718 ||| 0-1 ||| 767 1.17835e+06 +en ||| rise over ||| 0.25 0.157937 8.48644e-07 5.03304e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| rise to protest in ||| 1 0.605812 8.48644e-07 5.20529e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| rise to the hope ||| 0.333333 0.0247351 8.48644e-07 3.79941e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| rise to the ||| 0.00416667 0.0247351 8.48644e-07 2.16738e-07 2.718 ||| 0-1 ||| 240 1.17835e+06 +en ||| rise to ||| 0.00616808 0.0247351 6.78915e-06 3.5304e-06 2.718 ||| 0-1 ||| 1297 1.17835e+06 +en ||| rise within ||| 0.5 0.369196 8.48644e-07 1.39249e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| risk . ||| 0.0020284 6.3e-05 8.48644e-07 9.477e-09 2.718 ||| 0-1 ||| 493 1.17835e+06 +en ||| risk at ||| 0.0714286 0.321886 8.48644e-07 4.68023e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| risk ignoring ||| 0.125 0.0013643 8.48644e-07 8.19e-11 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| risk in ||| 0.025 0.605812 1.69729e-06 5.40284e-05 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| risks to ||| 0.00355872 0.0247351 8.48644e-07 4.66598e-07 2.718 ||| 0-1 ||| 281 1.17835e+06 +en ||| river in ||| 0.111111 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| road in ||| 0.0606061 0.605812 1.69729e-06 4.11909e-05 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| road instead ||| 1 0.340662 8.48644e-07 3.00934e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| road traffic in a specific corridor . ||| 1 0.605812 8.48644e-07 4.27181e-23 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| road traffic in a specific corridor ||| 1 0.605812 8.48644e-07 1.4103e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| road traffic in a specific ||| 1 0.605812 8.48644e-07 7.83503e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| road traffic in a ||| 1 0.605812 8.48644e-07 5.18532e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| road traffic in ||| 0.125 0.605812 8.48644e-07 1.16982e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| road ||| 0.000580046 0.0093306 2.54593e-06 7.42e-05 2.718 ||| 0-0 ||| 5172 1.17835e+06 +en ||| roadblock in ||| 0.333333 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| roads and thus for the protection of ||| 1 0.0116562 8.48644e-07 1.65689e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| roads in ||| 0.025 0.605812 8.48644e-07 5.4952e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| roaming services , roughly ||| 0.333333 0.0508021 8.48644e-07 3.40368e-16 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| rocks on ||| 0.166667 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| role - in ||| 1 0.605812 8.48644e-07 3.86698e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| role at ||| 0.04 0.321886 8.48644e-07 8.88044e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| role here ||| 0.0277778 0.0855319 8.48644e-07 6.66022e-07 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| role in a new ||| 0.5 0.605812 8.48644e-07 2.716e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| role in a ||| 0.0526316 0.605812 8.48644e-07 4.54408e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| role in preparing ||| 0.125 0.605812 8.48644e-07 1.51723e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| role in the ||| 0.00230415 0.605812 8.48644e-07 6.29361e-06 2.718 ||| 0-1 ||| 434 1.17835e+06 +en ||| role in ||| 0.0455433 0.605812 5.94051e-05 0.000102515 2.718 ||| 0-1 ||| 1537 1.17835e+06 +en ||| role is to ||| 0.016129 0.0247351 8.48644e-07 1.9557e-07 2.718 ||| 0-2 ||| 62 1.17835e+06 +en ||| role on ||| 0.037037 0.22993 1.69729e-06 1.84367e-05 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| role that in ||| 1 0.605812 8.48644e-07 1.72447e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| role to play in ||| 0.00609756 0.605812 8.48644e-07 2.35021e-09 2.718 ||| 0-3 ||| 164 1.17835e+06 +en ||| role to ||| 0.00258065 0.0247351 1.69729e-06 6.24004e-06 2.718 ||| 0-1 ||| 775 1.17835e+06 +en ||| role with regard to ||| 0.111111 0.0247351 8.48644e-07 2.71692e-11 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| role with ||| 0.0384615 0.0535436 8.48644e-07 2.58828e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| roles in ||| 0.05 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| roll in the ||| 1 0.605812 8.48644e-07 3.2602e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| roll in ||| 1 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rolled out in ||| 1 0.605812 8.48644e-07 7.60587e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| rolling in ||| 0.111111 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| rolling of cigarettes and ||| 1 0.0010182 8.48644e-07 5.54788e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| rolling ||| 0.008 0.0334928 8.48644e-07 9.5e-06 2.718 ||| 0-0 ||| 125 1.17835e+06 +en ||| room at ||| 0.25 0.321886 8.48644e-07 1.49607e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| room for ||| 0.00156986 0.0286209 1.69729e-06 4.30294e-07 2.718 ||| 0-1 ||| 1274 1.17835e+06 +en ||| room in ||| 0.0357143 0.605812 8.48644e-07 1.72706e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| room next to our ||| 0.25 0.0247351 8.48644e-07 1.49795e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| room next to ||| 0.25 0.0247351 8.48644e-07 1.08594e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| room on ||| 0.25 0.22993 8.48644e-07 3.10601e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| root in ||| 0.0625 0.605812 8.48644e-07 8.31206e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| root on ||| 1 0.22993 8.48644e-07 1.49487e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rooted in ||| 0.00904977 0.605812 1.69729e-06 2.81686e-06 2.718 ||| 0-1 ||| 221 1.17835e+06 +en ||| rooted more in ||| 0.166667 0.605812 8.48644e-07 6.43287e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| roots in ||| 0.0350877 0.605812 1.69729e-06 6.64965e-06 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| roots within ||| 0.25 0.369196 8.48644e-07 1.59648e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| rose in ||| 0.25 0.605812 1.69729e-06 6.46494e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| rose ||| 0.00647249 0.10043 1.69729e-06 4.76e-05 2.718 ||| 0-0 ||| 309 1.17835e+06 +en ||| rosé ' ||| 0.142857 0.0032578 8.48644e-07 3.0019e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| roughly in line ||| 0.2 0.605812 8.48644e-07 7.885e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| roughly in ||| 0.125 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| roughly similar to ||| 1 0.0508021 8.48644e-07 4.61947e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| roughly similar ||| 1 0.0508021 8.48644e-07 5.1987e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| roughly ||| 0.018018 0.0508021 5.09187e-06 1.29e-05 2.718 ||| 0-0 ||| 333 1.17835e+06 +en ||| roughshod over ||| 0.0126582 0.157937 8.48644e-07 1.44259e-08 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| round about ||| 0.25 0.0401564 8.48644e-07 2.1983e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| round in ||| 0.0277778 0.605812 8.48644e-07 3.54186e-05 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| round to a single ||| 0.333333 0.0247351 8.48644e-07 1.51657e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| round to a ||| 0.25 0.0247351 8.48644e-07 9.55623e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| round to ||| 0.016129 0.0247351 8.48644e-07 2.15591e-06 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| round ||| 0.00696721 0.0142196 1.4427e-05 2.93e-05 2.718 ||| 0-0 ||| 2440 1.17835e+06 +en ||| route , under ||| 1 0.205566 8.48644e-07 1.82071e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| route in ||| 0.166667 0.605812 1.69729e-06 1.24681e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| routes in ||| 0.125 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| routes through ||| 0.1 0.0366102 8.48644e-07 6.77088e-09 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| row at ||| 0.2 0.321886 8.48644e-07 2.16011e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| royalties , on ||| 1 0.22993 8.48644e-07 3.96156e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| rue ||| 0.166667 0.0714286 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| rule at ||| 0.666667 0.321886 1.69729e-06 3.25216e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| rule in ||| 0.0851064 0.605812 6.78915e-06 3.75428e-05 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| ruled by ||| 0.00917431 0.0468744 8.48644e-07 1.03787e-07 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| ruled in ||| 0.03125 0.605812 8.48644e-07 5.63373e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| ruled out recognition by ||| 0.1 0.0468744 8.48644e-07 1.1171e-14 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| rules across ||| 0.0909091 0.274879 8.48644e-07 2.3871e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| rules in ||| 0.0058997 0.605812 1.69729e-06 5.3659e-05 2.718 ||| 0-1 ||| 339 1.17835e+06 +en ||| rules of ||| 0.000744048 0.0116562 8.48644e-07 1.58462e-06 2.718 ||| 0-1 ||| 1344 1.17835e+06 +en ||| rules on its own authority , instead ||| 1 0.22993 8.48644e-07 2.38511e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rules on its own authority , ||| 1 0.22993 8.48644e-07 1.18133e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rules on its own authority ||| 1 0.22993 8.48644e-07 9.90595e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rules on its own ||| 1 0.22993 8.48644e-07 2.33081e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rules on its ||| 0.5 0.22993 8.48644e-07 1.37487e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| rules on ||| 0.00311042 0.22993 3.39458e-06 9.65022e-06 2.718 ||| 0-1 ||| 1286 1.17835e+06 +en ||| rules towards ||| 1 0.0616136 8.48644e-07 1.15758e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| rules we laid down at ||| 1 0.321886 8.48644e-07 4.01528e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| ruling by ||| 0.0666667 0.0468744 8.48644e-07 1.68441e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| ruling stated that , given ||| 1 0.0546585 8.48644e-07 2.8727e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| ruling ||| 0.000825083 0.009299 8.48644e-07 8.8e-06 2.718 ||| 0-0 ||| 1212 1.17835e+06 +en ||| rumour ||| 0.015873 0.0116279 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| rumours about possible mafia groups operating within ||| 1 0.369196 8.48644e-07 1.15397e-28 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| rumours on ||| 1 0.22993 8.48644e-07 1.82706e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| run aground under ||| 1 0.205566 8.48644e-07 6.6057e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| run at ||| 0.1 0.321886 8.48644e-07 4.24821e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| run by ||| 0.00473934 0.0468744 8.48644e-07 9.03454e-07 2.718 ||| 0-1 ||| 211 1.17835e+06 +en ||| run in ||| 0.0930233 0.605812 3.39458e-06 4.90412e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| run into ||| 0.0410959 0.525896 2.54593e-06 2.35098e-06 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| run on ||| 0.0784314 0.22993 3.39458e-06 8.81974e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| run the ||| 0.00406504 0.0011669 8.48644e-07 3.04231e-07 2.718 ||| 0-1 ||| 246 1.17835e+06 +en ||| run through ||| 0.0416667 0.0366102 1.69729e-06 9.98705e-08 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| run ||| 0.000990099 0.0008889 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 2020 1.17835e+06 +en ||| running at ||| 0.0689655 0.321886 1.69729e-06 3.05215e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| running away from ||| 0.0454545 0.0308834 8.48644e-07 9.23537e-11 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| running away ||| 0.047619 0.0322154 8.48644e-07 1.58096e-08 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| running in a disorganised fashion ||| 0.5 0.605812 8.48644e-07 2.24895e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| running in a disorganised ||| 0.5 0.605812 8.48644e-07 6.24708e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| running in a ||| 0.333333 0.605812 8.48644e-07 1.56177e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| running in ||| 0.170732 0.605812 5.94051e-06 3.52339e-05 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| running on ||| 0.047619 0.22993 8.48644e-07 6.33659e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| running the length ||| 0.5 0.0011669 8.48644e-07 8.4152e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| running the ||| 0.00900901 0.0011669 8.48644e-07 2.18577e-07 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| running through ||| 0.0434783 0.0366102 1.69729e-06 7.17525e-08 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| running ||| 0.00403226 0.0322154 5.09187e-06 4.97e-05 2.718 ||| 0-0 ||| 1488 1.17835e+06 +en ||| runs throughout ||| 0.5 0.309047 8.48644e-07 6.67184e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| runs ||| 0.0184805 0.0301339 7.6378e-06 1.84e-05 2.718 ||| 0-0 ||| 487 1.17835e+06 +en ||| s activities and in ||| 1 0.605812 8.48644e-07 8.74765e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| s as ||| 0.333333 0.066968 8.48644e-07 3.42184e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| s conference in ||| 0.5 0.605812 8.48644e-07 1.54607e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| s contribution in ||| 1 0.605812 8.48644e-07 7.90602e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| s decision in ||| 0.25 0.605812 8.48644e-07 1.3818e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| s development in ||| 1 0.605812 8.48644e-07 1.44504e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| s events in ||| 1 0.605812 8.48644e-07 6.3863e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| s faith in ||| 0.2 0.605812 8.48644e-07 1.3001e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| s in ||| 0.333333 0.605812 8.48644e-07 0.000878446 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| s input to ||| 1 0.0247351 8.48644e-07 6.73727e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| s institutions in ||| 1 0.605812 8.48644e-07 4.61184e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| s joining ||| 0.333333 0.0914976 8.48644e-07 2.74502e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| s line in ||| 1 0.605812 8.48644e-07 2.58615e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| s mind , in ||| 1 0.605812 8.48644e-07 2.63888e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| s minds regarding ||| 1 0.140669 8.48644e-07 1.7249e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| s ongoing ||| 0.142857 0.216817 8.48644e-07 9.346e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| s operations for the ||| 1 0.0286209 8.48644e-07 3.38598e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| s operations for ||| 1 0.0286209 8.48644e-07 5.51536e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| s participating in ||| 1 0.605812 8.48644e-07 1.01021e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| s participation in ||| 0.2 0.605812 8.48644e-07 2.11706e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| s point of ||| 0.030303 0.0116562 8.48644e-07 2.26938e-08 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| s position in ||| 0.428571 0.605812 2.54593e-06 2.89272e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| s proposal concerning the shipyards package ||| 0.5 0.0888235 8.48644e-07 2.41658e-21 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| s proposal concerning the shipyards ||| 0.5 0.0888235 8.48644e-07 5.08753e-17 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| s proposal concerning the ||| 0.5 0.0888235 8.48644e-07 2.8264e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| s proposal concerning ||| 0.142857 0.0888235 8.48644e-07 4.60388e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| s proposal in ||| 0.5 0.605812 8.48644e-07 1.75426e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| s proposal upon ||| 1 0.114601 8.48644e-07 3.35784e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| s rights in ||| 0.25 0.605812 8.48644e-07 1.75777e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| s role in ||| 0.285714 0.605812 1.69729e-06 1.95015e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| s subsequent question , on ||| 0.5 0.22993 8.48644e-07 2.46267e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| s suggestions for ||| 1 0.0286209 8.48644e-07 1.96977e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| s targets in ||| 1 0.605812 8.48644e-07 2.0907e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| s time in ||| 0.166667 0.605812 8.48644e-07 1.44215e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| s way in ||| 1 0.605812 8.48644e-07 1.89358e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sack behind ||| 0.5 0.0374138 8.48644e-07 9.308e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| sacred at ||| 1 0.321886 8.48644e-07 8.80044e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sacrificed to ||| 0.0243902 0.0247351 8.48644e-07 6.18383e-08 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| sad to say ||| 0.0454545 0.0247351 8.48644e-07 2.12241e-10 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| sad to ||| 0.0138889 0.0247351 8.48644e-07 2.22056e-07 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| sadly , it ||| 0.0666667 0.0080472 8.48644e-07 4.6045e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| sadly , there were ||| 1 0.0005283 8.48644e-07 4.58394e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| sadly , there ||| 0.25 0.0005283 8.48644e-07 2.55886e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| sadly , ||| 0.0013986 0.0005283 8.48644e-07 8.34783e-08 2.718 ||| 0-0 ||| 715 1.17835e+06 +en ||| sadly ||| 0.000809062 0.0005283 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1236 1.17835e+06 +en ||| safe as long as they ||| 1 0.066968 8.48644e-07 6.56697e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| safe as long as ||| 0.5 0.066968 8.48644e-07 2.01194e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| safe as long ||| 0.5 0.066968 8.48644e-07 1.97164e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| safe as ||| 0.0144928 0.066968 8.48644e-07 5.82808e-07 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| safe haven where ||| 0.5 0.247783 8.48644e-07 8.83001e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| safe in ||| 0.0151515 0.605812 8.48644e-07 1.49617e-05 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| safe to ||| 0.0175439 0.0247351 8.48644e-07 9.10709e-07 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| safeguard the ||| 0.00134048 0.0011669 8.48644e-07 5.87263e-08 2.718 ||| 0-1 ||| 746 1.17835e+06 +en ||| safeguarded ||| 0.00192308 0.0083752 8.48644e-07 3.4e-06 2.718 ||| 0-0 ||| 520 1.17835e+06 +en ||| safeguarding of ||| 0.00434783 0.0116562 8.48644e-07 6.8185e-08 2.718 ||| 0-1 ||| 230 1.17835e+06 +en ||| safety in ||| 0.005 0.605812 2.54593e-06 2.34123e-05 2.718 ||| 0-1 ||| 600 1.17835e+06 +en ||| safety of ||| 0.000976086 0.0116562 1.69729e-06 6.91396e-07 2.718 ||| 0-1 ||| 2049 1.17835e+06 +en ||| said , in ||| 0.0119048 0.605812 8.48644e-07 2.26501e-05 2.718 ||| 0-2 ||| 84 1.17835e+06 +en ||| said - under ||| 1 0.205566 8.48644e-07 8.77291e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| said actually ||| 0.333333 0.125341 8.48644e-07 5.52458e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| said and done , ||| 0.0131579 0.0010182 8.48644e-07 2.06376e-11 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| said and done ||| 0.0142857 0.0010182 8.48644e-07 1.73055e-10 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| said and ||| 0.0034965 0.0010182 8.48644e-07 3.79507e-07 2.718 ||| 0-1 ||| 286 1.17835e+06 +en ||| said at ||| 0.036036 0.321886 3.39458e-06 1.64528e-05 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| said by ||| 0.0096463 0.0468744 2.54593e-06 3.49897e-06 2.718 ||| 0-1 ||| 311 1.17835e+06 +en ||| said for ||| 0.037037 0.0286209 1.69729e-06 4.73209e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| said in the debate ||| 0.030303 0.605812 8.48644e-07 2.30755e-09 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| said in the ||| 0.00578035 0.605812 8.48644e-07 1.16602e-05 2.718 ||| 0-1 ||| 173 1.17835e+06 +en ||| said in ||| 0.028777 0.605812 2.3762e-05 0.000189931 2.718 ||| 0-1 ||| 973 1.17835e+06 +en ||| said of ||| 0.0106383 0.0116562 8.48644e-07 5.6089e-06 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| said on a ||| 0.04 0.22993 8.48644e-07 1.51407e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| said on ||| 0.019084 0.22993 4.24322e-06 3.41578e-05 2.718 ||| 0-1 ||| 262 1.17835e+06 +en ||| said once at ||| 1 0.321886 8.48644e-07 6.7325e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| said party at ||| 1 0.321886 8.48644e-07 1.12537e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| said that in ||| 0.04 0.605812 2.54593e-06 3.19494e-06 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| said to complete it ||| 0.5 0.0247351 8.48644e-07 1.47203e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| said to complete ||| 0.5 0.0247351 8.48644e-07 8.27764e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| said to ||| 0.00814332 0.0247351 4.24322e-06 1.15609e-05 2.718 ||| 0-1 ||| 614 1.17835e+06 +en ||| said tonight in ||| 1 0.605812 8.48644e-07 1.78535e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| said way back in history ||| 0.25 0.605812 8.48644e-07 9.91339e-15 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| said way back in ||| 0.2 0.605812 8.48644e-07 2.75372e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| said what is to become ||| 1 0.219193 8.48644e-07 6.14498e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| said when I ||| 0.333333 0.142731 8.48644e-07 1.73201e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| said when ||| 0.0196078 0.142731 8.48644e-07 2.44859e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| sail off into ||| 1 0.525896 8.48644e-07 2.61287e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sailing anywhere in ||| 1 0.605812 8.48644e-07 6.97289e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sailing in ||| 0.0555556 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| sake of ||| 0.00112233 0.0116562 8.48644e-07 1.36915e-06 2.718 ||| 0-1 ||| 891 1.17835e+06 +en ||| salary paid out of ||| 1 0.0116562 8.48644e-07 3.3045e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| sale in ||| 0.0714286 0.605812 2.54593e-06 5.81844e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| sales in ||| 0.0384615 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| salt into ||| 0.333333 0.525896 1.69729e-06 5.53433e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| salt ||| 0.00662252 0.0068027 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 151 1.17835e+06 +en ||| same applies in the case ||| 0.111111 0.605812 8.48644e-07 2.04535e-12 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| same applies in the ||| 0.0714286 0.605812 8.48644e-07 1.91172e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| same applies in ||| 0.0454545 0.605812 8.48644e-07 3.11397e-08 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| same desire to ||| 0.125 0.0247351 8.48644e-07 1.05856e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| same direction on ||| 0.5 0.22993 8.48644e-07 6.06139e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| same for chocolate ||| 0.333333 0.0286209 8.48644e-07 5.36978e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| same for ||| 0.00404858 0.0286209 8.48644e-07 9.25823e-06 2.718 ||| 0-1 ||| 247 1.17835e+06 +en ||| same goes for the production of gas ||| 1 0.0286209 8.48644e-07 5.00281e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| same goes for the production of ||| 1 0.0286209 8.48644e-07 3.57344e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| same goes for the production ||| 1 0.0286209 8.48644e-07 6.57317e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| same goes for the ||| 0.0131579 0.0286209 8.48644e-07 7.87206e-11 2.718 ||| 0-2 ||| 76 1.17835e+06 +en ||| same goes for ||| 0.00649351 0.0286209 8.48644e-07 1.28227e-09 2.718 ||| 0-2 ||| 154 1.17835e+06 +en ||| same in all our countries ||| 0.142857 0.605812 8.48644e-07 9.19686e-13 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| same in all our ||| 0.142857 0.605812 8.48644e-07 2.42214e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| same in all ||| 0.0243902 0.605812 8.48644e-07 1.75594e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| same in the ||| 0.030303 0.605812 8.48644e-07 2.28129e-05 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| same in ||| 0.0793651 0.605812 1.27297e-05 0.000371595 2.718 ||| 0-1 ||| 189 1.17835e+06 +en ||| same is true ||| 0.0047619 0.0005032 8.48644e-07 3.71653e-11 2.718 ||| 0-1 ||| 210 1.17835e+06 +en ||| same is ||| 0.00617284 0.0005032 8.48644e-07 2.29983e-07 2.718 ||| 0-1 ||| 162 1.17835e+06 +en ||| same over ||| 1 0.157937 8.48644e-07 3.22459e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| same rules towards ||| 1 0.0616136 8.48644e-07 9.31508e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| same sentiments with ||| 1 0.0535436 8.48644e-07 4.4095e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| same table at the ||| 1 0.321886 8.48644e-07 1.33787e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| same table at ||| 1 0.321886 8.48644e-07 2.17924e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| same throughout ||| 0.0454545 0.309047 8.48644e-07 2.33427e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| same time , in ||| 0.0363636 0.605812 1.69729e-06 7.27511e-08 2.718 ||| 0-3 ||| 55 1.17835e+06 +en ||| same time participating in ||| 1 0.605812 8.48644e-07 7.01555e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| same time the differences inside ||| 1 0.188717 8.48644e-07 3.62862e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| same time within ||| 0.25 0.369196 8.48644e-07 1.46464e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| same time ||| 8.23113e-05 0.0007767 8.48644e-07 2.90497e-08 2.718 ||| 0-1 ||| 12149 1.17835e+06 +en ||| same view in ||| 0.125 0.605812 8.48644e-07 3.35662e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| same way , in ||| 0.142857 0.605812 8.48644e-07 9.55243e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| same way and on ||| 1 0.22993 8.48644e-07 1.80444e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| same way in all ||| 0.0769231 0.605812 8.48644e-07 3.7851e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| same way in ||| 0.0465116 0.605812 1.69729e-06 8.01011e-07 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| same way under ||| 1 0.205566 8.48644e-07 9.80853e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| same with ||| 0.0151515 0.0535436 8.48644e-07 9.38192e-06 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| same within ||| 0.2 0.369196 8.48644e-07 8.92147e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| samples in ||| 0.166667 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| sanctions against ||| 0.0058309 0.153982 1.69729e-06 9.39422e-08 2.718 ||| 0-1 ||| 343 1.17835e+06 +en ||| sanctions for ||| 0.00775194 0.0286209 8.48644e-07 1.86384e-07 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| sanctions in ||| 0.00934579 0.605812 8.48644e-07 7.48085e-06 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| sanctions with the requirement ||| 1 0.0535436 8.48644e-07 4.88163e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sanctions with the ||| 0.5 0.0535436 8.48644e-07 1.15953e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| sanctions with ||| 0.125 0.0535436 8.48644e-07 1.88874e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| sand in ||| 0.25 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| sat down together in ||| 1 0.605812 8.48644e-07 1.04552e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| sat in ||| 0.125 0.605812 1.69729e-06 2.49362e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| satisfaction in ||| 0.0277778 0.605812 8.48644e-07 5.4952e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| satisfaction that we in ||| 1 0.605812 8.48644e-07 1.04938e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| satisfied by the ||| 0.0526316 0.0468744 8.48644e-07 6.00606e-09 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| satisfied by ||| 0.025 0.0468744 8.48644e-07 9.78316e-08 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| satisfied on ||| 0.166667 0.22993 8.48644e-07 9.55057e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| saved from ||| 0.0526316 0.0308834 8.48644e-07 2.89188e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| saves money in ||| 1 0.605812 8.48644e-07 3.0182e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| saving on ||| 0.0625 0.22993 8.48644e-07 4.81681e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| savings in ||| 0.0188679 0.605812 1.69729e-06 3.83278e-06 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| savings into ||| 0.333333 0.525896 8.48644e-07 1.8374e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| saw as ||| 0.037037 0.066968 8.48644e-07 9.64151e-07 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| saw in 1992 and 1993 ||| 0.0833333 0.605812 8.48644e-07 2.24775e-18 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| saw in 1992 and ||| 0.0833333 0.605812 8.48644e-07 8.991e-13 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| saw in 1992 ||| 0.0833333 0.605812 8.48644e-07 7.17793e-11 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| saw in ||| 0.0722892 0.605812 5.09187e-06 2.47515e-05 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| saw it in ||| 0.166667 0.605812 8.48644e-07 4.4016e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| saw the light of day in ||| 0.2 0.605812 8.48644e-07 3.67834e-15 2.718 ||| 0-5 ||| 5 1.17835e+06 +en ||| say " at ||| 0.5 0.321886 8.48644e-07 9.05379e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| say , according to past precedent , ||| 0.5 0.0586463 8.48644e-07 2.09883e-19 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| say , according to past precedent ||| 0.5 0.0586463 8.48644e-07 1.75996e-18 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| say , according to past ||| 0.5 0.0586463 8.48644e-07 5.49987e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| say , according to ||| 0.5 0.0586463 8.48644e-07 4.29342e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| say , according ||| 0.5 0.0586463 8.48644e-07 4.83177e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| say , at ||| 0.166667 0.321886 8.48644e-07 4.55957e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| say , during ||| 0.2 0.226251 8.48644e-07 3.29561e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| say , however , that , in ||| 0.5 0.605812 8.48644e-07 1.39482e-11 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| say , in ||| 0.0340909 0.605812 2.54593e-06 5.26355e-05 2.718 ||| 0-2 ||| 88 1.17835e+06 +en ||| say , of ||| 0.111111 0.0116562 8.48644e-07 1.55439e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| say , on ||| 0.0149254 0.22993 8.48644e-07 9.46616e-06 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| say - and as such ||| 1 0.066968 8.48644e-07 1.68066e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| say - and as ||| 1 0.066968 8.48644e-07 8.12343e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| say a definitive ' ||| 0.5 0.0032578 8.48644e-07 7.05273e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| say a few words on ||| 0.012987 0.22993 8.48644e-07 1.39394e-13 2.718 ||| 0-4 ||| 77 1.17835e+06 +en ||| say a word in ||| 0.2 0.605812 8.48644e-07 1.99162e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| say about ||| 0.00268817 0.0401564 8.48644e-07 2.73942e-06 2.718 ||| 0-1 ||| 372 1.17835e+06 +en ||| say anything about ||| 0.0232558 0.0401564 8.48644e-07 4.29815e-10 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| say at home in ||| 1 0.605812 8.48644e-07 1.87592e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| say at ||| 0.048 0.321886 5.09187e-06 3.82339e-05 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| say has in ||| 1 0.605812 8.48644e-07 2.27195e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| say here that I ||| 0.333333 0.0017499 8.48644e-07 1.43293e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| say here that ||| 0.0285714 0.0017499 8.48644e-07 2.02578e-09 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| say how much I ||| 0.0769231 0.0060084 8.48644e-07 8.35463e-13 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| say in the EU , that the ||| 1 0.605812 8.48644e-07 1.65119e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| say in the EU , that ||| 1 0.605812 8.48644e-07 2.68959e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| say in the EU , ||| 1 0.605812 8.48644e-07 1.59889e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| say in the EU ||| 1 0.605812 8.48644e-07 1.34074e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| say in the ||| 0.013986 0.605812 1.69729e-06 2.70965e-05 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| say in what kind ||| 1 0.605812 8.48644e-07 3.02212e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| say in what ||| 0.0769231 0.605812 8.48644e-07 6.19287e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| say in ||| 0.060423 0.605812 3.39458e-05 0.00044137 2.718 ||| 0-1 ||| 662 1.17835e+06 +en ||| say into ||| 0.5 0.525896 1.69729e-06 2.11588e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| say it gives me ||| 1 0.0080472 8.48644e-07 1.25701e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| say it gives ||| 1 0.0080472 8.48644e-07 2.08771e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| say it ||| 0.00330033 0.0080472 8.48644e-07 2.636e-06 2.718 ||| 0-1 ||| 303 1.17835e+06 +en ||| say more on ||| 0.2 0.22993 8.48644e-07 1.81275e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| say now in ||| 0.5 0.605812 8.48644e-07 9.09179e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| say often enough , in ||| 0.5 0.605812 8.48644e-07 1.14257e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| say on the subject ||| 0.037037 0.22993 8.48644e-07 2.63052e-09 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| say on the ||| 0.00925926 0.22993 8.48644e-07 4.87314e-06 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| say on ||| 0.0371517 0.22993 1.01837e-05 7.93777e-05 2.718 ||| 0-1 ||| 323 1.17835e+06 +en ||| say so , we in ||| 0.5 0.605812 8.48644e-07 1.35622e-09 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| say something on ||| 0.0454545 0.22993 8.48644e-07 4.39355e-08 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| say something to ||| 0.0588235 0.0247351 8.48644e-07 1.48703e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| say thank you for the ||| 0.166667 0.0286209 8.48644e-07 2.30614e-13 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| say thank you for ||| 0.0588235 0.0286209 8.48644e-07 3.75642e-12 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| say that as far as ||| 0.0909091 0.066968 8.48644e-07 2.0148e-12 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| say that at ||| 0.0434783 0.321886 8.48644e-07 6.43156e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| say that in ||| 0.0188679 0.605812 2.54593e-06 7.42456e-06 2.718 ||| 0-2 ||| 159 1.17835e+06 +en ||| say that it ||| 0.00452489 0.0080472 8.48644e-07 4.43418e-08 2.718 ||| 0-2 ||| 221 1.17835e+06 +en ||| say that on ||| 0.0555556 0.22993 8.48644e-07 1.33526e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| say that ||| 9.42241e-05 0.0017499 8.48644e-07 9.99002e-07 2.718 ||| 0-1 ||| 10613 1.17835e+06 +en ||| say the ||| 0.00367647 0.0011669 1.69729e-06 2.73808e-06 2.718 ||| 0-1 ||| 544 1.17835e+06 +en ||| say this in ||| 0.0454545 0.605812 1.69729e-06 2.85187e-06 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| say this on ||| 0.0833333 0.22993 8.48644e-07 5.12891e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| say this to ||| 0.0181818 0.0247351 8.48644e-07 1.73591e-07 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| say to myself that in ||| 1 0.605812 8.48644e-07 1.02588e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| say to ||| 0.0017331 0.0247351 1.69729e-06 2.68659e-05 2.718 ||| 0-1 ||| 1154 1.17835e+06 +en ||| say where ||| 0.0454545 0.247783 8.48644e-07 8.14017e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| saying in ||| 0.0740741 0.605812 5.09187e-06 8.192e-05 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| saying much ||| 1 0.0007752 8.48644e-07 3.49478e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| saying that on ||| 0.5 0.22993 8.48644e-07 2.47829e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| saying the following in ||| 1 0.605812 8.48644e-07 6.42734e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| saying this to ||| 0.2 0.0247351 8.48644e-07 3.22192e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| says at ||| 1 0.321886 8.48644e-07 2.76414e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| says in ||| 0.0421053 0.605812 3.39458e-06 3.19091e-05 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| says on ||| 0.105263 0.22993 1.69729e-06 5.73864e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| says regarding ||| 0.25 0.140669 8.48644e-07 1.30806e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| says something about ||| 0.0714286 0.0401564 8.48644e-07 1.09619e-10 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| says ||| 0.000255689 0.0004386 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 3911 1.17835e+06 +en ||| scale , if ||| 1 0.0178573 8.48644e-07 8.11679e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| scale in ||| 0.129032 0.605812 3.39458e-06 2.71066e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| scale indicated in ||| 0.25 0.605812 8.48644e-07 6.34293e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| scale of this ||| 0.0178571 0.0116562 8.48644e-07 5.1723e-09 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| scale of ||| 0.00364299 0.0116562 1.69729e-06 8.00492e-07 2.718 ||| 0-1 ||| 549 1.17835e+06 +en ||| scale on ||| 0.142857 0.22993 8.48644e-07 4.87494e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| scandal first broke ||| 0.333333 0.138055 8.48644e-07 2.96427e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| scandal first ||| 0.333333 0.138055 8.48644e-07 3.05595e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| scandalously into ||| 1 0.525896 8.48644e-07 1.54961e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| scandals in ||| 0.0909091 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| scarcely to ||| 0.5 0.0247351 8.48644e-07 8.99466e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| scarcely yet on ||| 1 0.22993 8.48644e-07 7.02922e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| scarcity on ||| 0.333333 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| scenario in ||| 0.0384615 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| scene at ||| 1 0.321886 8.48644e-07 5.20026e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| scene of ||| 0.00980392 0.0116562 8.48644e-07 1.77281e-07 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| schedule on ||| 0.333333 0.22993 8.48644e-07 2.98974e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| scheduled in ||| 0.125 0.605812 8.48644e-07 7.8041e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| scheduled to participate ||| 1 0.0247351 8.48644e-07 1.14482e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| scheduled to ||| 0.0169492 0.0247351 1.69729e-06 4.7503e-07 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| scheme in ||| 0.03125 0.605812 8.48644e-07 1.63009e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| scheme into force everywhere ||| 1 0.525896 8.48644e-07 2.48714e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| scheme into force ||| 1 0.525896 8.48644e-07 1.33002e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| scheme into ||| 0.25 0.525896 8.48644e-07 7.81447e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| scheme under ||| 0.333333 0.205566 8.48644e-07 1.99607e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| scheme we ||| 0.333333 0.0054082 8.48644e-07 7.99157e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| scheme with more ||| 0.5 0.0535436 8.48644e-07 9.39878e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| scheme with ||| 0.0769231 0.0535436 8.48644e-07 4.11559e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| scheme ||| 0.000590493 0.002136 1.69729e-06 4.1e-06 2.718 ||| 0-0 ||| 3387 1.17835e+06 +en ||| school in ||| 0.0208333 0.605812 8.48644e-07 9.65122e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| school ||| 0.00160858 0.0286592 2.54593e-06 5.72e-05 2.718 ||| 0-0 ||| 1865 1.17835e+06 +en ||| sciences specialising in ||| 1 0.605812 8.48644e-07 1.29299e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| scope for ||| 0.00455581 0.0286209 3.39458e-06 1.14707e-06 2.718 ||| 0-1 ||| 878 1.17835e+06 +en ||| scope in ||| 0.0277778 0.605812 8.48644e-07 4.60396e-05 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| scope is , in ||| 0.25 0.605812 8.48644e-07 1.72076e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| scope of ||| 0.00148038 0.0116562 3.39458e-06 1.35961e-06 2.718 ||| 0-1 ||| 2702 1.17835e+06 +en ||| scope on ||| 0.333333 0.22993 8.48644e-07 8.27993e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| scope to ||| 0.00515464 0.0247351 8.48644e-07 2.8024e-06 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| score on ||| 1 0.22993 8.48644e-07 8.96923e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| score right ||| 1 0.0071334 8.48644e-07 1.9332e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| scot-free when they ||| 0.5 0.142731 8.48644e-07 1.36021e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| scot-free when ||| 0.5 0.142731 8.48644e-07 4.16731e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| scourge , in ||| 1 0.605812 8.48644e-07 1.76223e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| scramble to ||| 0.142857 0.0247351 8.48644e-07 1.12433e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| scrap of ||| 0.111111 0.0116562 8.48644e-07 7.36398e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| scrapped in ||| 0.222222 0.605812 1.69729e-06 2.49362e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| scribbled on ||| 0.5 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| scrutiny again in ||| 1 0.605812 8.48644e-07 4.03242e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| scrutiny at ||| 0.142857 0.321886 8.48644e-07 6.0403e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| scrutiny of the ||| 0.016129 0.0116562 8.48644e-07 1.26417e-08 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| scrutiny of ||| 0.00714286 0.0116562 8.48644e-07 2.05919e-07 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| sea aim to reduce road traffic in ||| 1 0.605812 8.48644e-07 1.62823e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| seal on ||| 0.0909091 0.22993 8.48644e-07 3.90327e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| seas in ||| 0.0769231 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| seat at ||| 0.0555556 0.321886 8.48644e-07 6.48032e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| seat in name only ||| 0.5 0.605812 8.48644e-07 7.27774e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| seat in name ||| 0.5 0.605812 8.48644e-07 6.53827e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| seat in ||| 0.025 0.605812 1.69729e-06 7.48085e-06 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| seat on ||| 0.0895522 0.22993 5.09187e-06 1.34538e-06 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| seated in the ||| 0.0322581 0.605812 8.48644e-07 1.02058e-07 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| seated in ||| 0.102564 0.605812 3.39458e-06 1.66241e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| seats in ||| 0.0392157 0.605812 5.09187e-06 4.47928e-06 2.718 ||| 0-1 ||| 153 1.17835e+06 +en ||| secession as ||| 0.333333 0.066968 8.48644e-07 1.97867e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| secession of ||| 0.0588235 0.0116562 8.48644e-07 1.50007e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| second , referred to by Mr Perry ||| 1 0.0468744 8.48644e-07 2.56641e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| second , referred to by Mr ||| 1 0.0468744 8.48644e-07 3.6663e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| second , referred to by ||| 1 0.0468744 8.48644e-07 5.61626e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| second event took place in ||| 1 0.605812 8.48644e-07 6.96701e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| second is to create internationally competitive ||| 1 0.0446927 8.48644e-07 2.12111e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| second is to create internationally ||| 1 0.0446927 8.48644e-07 1.11053e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| second is ||| 0.00193424 0.0400803 8.48644e-07 1.49058e-05 2.718 ||| 0-0 ||| 517 1.17835e+06 +en ||| second nature ||| 0.125 0.0400803 8.48644e-07 6.72498e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| second on ||| 0.0526316 0.22993 8.48644e-07 5.40645e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| second time ||| 0.002849 0.0400803 8.48644e-07 7.80793e-07 2.718 ||| 0-0 ||| 351 1.17835e+06 +en ||| second to ||| 0.0208333 0.0247351 8.48644e-07 1.82985e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| second ||| 0.00088334 0.0400803 1.27297e-05 0.0004756 2.718 ||| 0-0 ||| 16981 1.17835e+06 +en ||| secondary rewards in ||| 0.5 0.605812 8.48644e-07 5.6522e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| secondly , I cannot imagine ||| 0.333333 0.303244 8.48644e-07 2.02403e-14 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| secondly , I cannot ||| 0.1 0.303244 8.48644e-07 1.10002e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| secondly , I ||| 0.0031348 0.303244 8.48644e-07 4.88246e-06 2.718 ||| 0-0 ||| 319 1.17835e+06 +en ||| secondly , also in ||| 0.5 0.605812 8.48644e-07 1.00089e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| secondly , because – as ||| 0.5 0.066968 8.48644e-07 9.97283e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| secondly , on ||| 0.00746269 0.22993 8.48644e-07 3.56541e-07 2.718 ||| 0-2 ||| 134 1.17835e+06 +en ||| secondly , we ||| 0.00452489 0.303244 8.48644e-07 7.83588e-06 2.718 ||| 0-0 ||| 221 1.17835e+06 +en ||| secondly , with regard to ||| 0.0169492 0.303244 8.48644e-07 2.67049e-10 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| secondly , with regard ||| 0.0140845 0.303244 8.48644e-07 3.00534e-09 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| secondly , with ||| 0.0108696 0.303244 8.48644e-07 4.41378e-06 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| secondly , ||| 0.000569692 0.303244 5.09187e-06 0.000690246 2.718 ||| 0-0 ||| 10532 1.17835e+06 +en ||| secondly because , in ||| 1 0.605812 8.48644e-07 6.51451e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| secondly ||| 0.00127656 0.303244 1.1881e-05 0.005788 2.718 ||| 0-0 ||| 10967 1.17835e+06 +en ||| secret ||| 0.00256739 0.0109395 3.39458e-06 1.16e-05 2.718 ||| 0-0 ||| 1558 1.17835e+06 +en ||| secretively in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| secretly destroyed ||| 1 0.330709 8.48644e-07 3.289e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| secretly ||| 0.0344828 0.330709 1.69729e-06 2.86e-05 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| section ||| 0.00127226 0.0018927 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 1572 1.17835e+06 +en ||| sections at ||| 0.5 0.321886 8.48644e-07 4.16021e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| sector . in ||| 1 0.605812 8.48644e-07 2.59745e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sector and in ||| 0.111111 0.605812 8.48644e-07 1.07413e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| sector in the ||| 0.0138889 0.605812 8.48644e-07 5.26452e-06 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| sector in ||| 0.0410628 0.605812 1.4427e-05 8.57528e-05 2.718 ||| 0-1 ||| 414 1.17835e+06 +en ||| sector into ||| 0.230769 0.525896 2.54593e-06 4.1109e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| sector is currently enduring ||| 1 0.104436 8.48644e-07 2.46355e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sector is currently ||| 0.5 0.104436 8.48644e-07 6.84321e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| sector more sustainable . at ||| 1 0.321886 8.48644e-07 7.19383e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| sector of ||| 0.00277778 0.0116562 8.48644e-07 2.53239e-06 2.718 ||| 0-1 ||| 360 1.17835e+06 +en ||| sector to ||| 0.00374532 0.0247351 8.48644e-07 5.21971e-06 2.718 ||| 0-1 ||| 267 1.17835e+06 +en ||| sector together with the ||| 0.333333 0.0273552 8.48644e-07 3.72507e-12 2.718 ||| 0-2 0-3 ||| 3 1.17835e+06 +en ||| sector where absolutely ||| 0.5 0.247783 1.69729e-06 1.49139e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| sector where consumers are currently proving to ||| 1 0.247783 8.48644e-07 1.01571e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sector where consumers are currently proving ||| 1 0.247783 8.48644e-07 1.14307e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sector where consumers are currently ||| 1 0.247783 8.48644e-07 9.36943e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sector where consumers are ||| 1 0.247783 8.48644e-07 8.97455e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sector where consumers ||| 1 0.247783 8.48644e-07 5.91493e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sector where ||| 0.0714286 0.247783 2.54593e-06 1.58153e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| sector ||| 3.89408e-05 4.41e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 25680 1.17835e+06 +en ||| sectors having ||| 0.5 0.0065553 8.48644e-07 3.96035e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| sectors in ||| 0.0179372 0.605812 3.39458e-06 2.37817e-05 2.718 ||| 0-1 ||| 223 1.17835e+06 +en ||| sectors within ||| 0.0769231 0.369196 8.48644e-07 5.70965e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| secured enough votes in ||| 1 0.605812 8.48644e-07 3.68302e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| security , in ||| 0.0357143 0.605812 8.48644e-07 4.49918e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| security also particularly depends on ||| 1 0.22993 8.48644e-07 9.23293e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| security becomes ||| 0.333333 0.162791 8.48644e-07 3.11359e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| security in ||| 0.000992064 0.605812 8.48644e-07 3.77275e-05 2.718 ||| 0-1 ||| 1008 1.17835e+06 +en ||| security of ||| 0.000448229 0.0116562 8.48644e-07 1.11414e-06 2.718 ||| 0-1 ||| 2231 1.17835e+06 +en ||| security policy concept for Europe as ||| 1 0.0286209 8.48644e-07 1.13503e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| security policy concept for Europe ||| 1 0.0286209 8.48644e-07 1.11229e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| security policy concept for ||| 1 0.0286209 8.48644e-07 2.1982e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| security ||| 0.000102158 0.0001672 3.39458e-06 2.7e-06 2.718 ||| 0-0 ||| 39155 1.17835e+06 +en ||| see any evidence in ||| 1 0.605812 8.48644e-07 2.71106e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| see as ||| 0.00649351 0.066968 8.48644e-07 1.26743e-05 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| see at ||| 0.025 0.321886 8.48644e-07 2.81854e-05 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| see during ||| 0.333333 0.226251 8.48644e-07 2.03721e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| see eye to ||| 0.0344828 0.0247351 8.48644e-07 1.12691e-09 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| see for itself in ||| 1 0.605812 8.48644e-07 1.69723e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| see from ||| 0.0291262 0.0308834 2.54593e-06 2.68107e-06 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| see if ||| 0.0034965 0.0178573 8.48644e-07 8.16984e-07 2.718 ||| 0-1 ||| 286 1.17835e+06 +en ||| see in ||| 0.0495868 0.605812 1.01837e-05 0.000325371 2.718 ||| 0-1 ||| 242 1.17835e+06 +en ||| see it as a matter for ||| 1 0.0286209 8.48644e-07 6.76517e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| see it implemented in ||| 1 0.605812 8.48644e-07 5.08023e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| see it in ||| 0.0980392 0.605812 4.24322e-06 5.78614e-06 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| see it when it ||| 1 0.142731 8.48644e-07 1.32654e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| see it when ||| 0.5 0.142731 8.48644e-07 7.45951e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| see me about ||| 1 0.0401564 8.48644e-07 1.21591e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| see on ||| 0.0285714 0.22993 8.48644e-07 5.85159e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| see that , in ||| 0.0666667 0.605812 8.48644e-07 6.52712e-07 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| see them in ||| 0.125 0.605812 8.48644e-07 8.72775e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| see this salary paid out of ||| 1 0.0116562 8.48644e-07 1.50444e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| see this taking place in ||| 1 0.605812 8.48644e-07 1.34472e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| see to it in ||| 0.333333 0.605812 8.48644e-07 5.14146e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| see to ||| 0.00398406 0.0247351 8.48644e-07 1.98051e-05 2.718 ||| 0-1 ||| 251 1.17835e+06 +en ||| see within ||| 0.25 0.369196 8.48644e-07 7.81169e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| seed on ||| 0.166667 0.22993 8.48644e-07 4.15242e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| seeing , as ||| 0.5 0.066968 8.48644e-07 1.14336e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| seeing in ||| 0.0232558 0.605812 8.48644e-07 2.46129e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| seeing soon in ||| 1 0.605812 8.48644e-07 2.26685e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| seeing this at ||| 1 0.321886 8.48644e-07 1.37764e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| seek assistance under ||| 1 0.205566 8.48644e-07 1.95318e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| seek asylum in ||| 0.142857 0.605812 8.48644e-07 5.42385e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| seek at ||| 0.5 0.321886 8.48644e-07 2.78014e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| seek in the course of ||| 1 0.605812 8.48644e-07 1.35145e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| seek in the course ||| 1 0.605812 8.48644e-07 2.48592e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| seek in the ||| 1 0.605812 8.48644e-07 1.9703e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| seek in ||| 0.166667 0.605812 8.48644e-07 3.20938e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| seek them in ||| 1 0.605812 8.48644e-07 8.60884e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| seek to ||| 0.00257732 0.0247351 2.54593e-06 1.95353e-06 2.718 ||| 0-1 ||| 1164 1.17835e+06 +en ||| seeking in ||| 0.2 0.605812 8.48644e-07 2.34123e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| seeking to ensure ||| 0.0243902 0.0124648 8.48644e-07 5.84287e-12 2.718 ||| 0-1 0-2 ||| 41 1.17835e+06 +en ||| seeking to ||| 0.000801282 0.0247351 8.48644e-07 1.42509e-06 2.718 ||| 0-1 ||| 1248 1.17835e+06 +en ||| seeking with ||| 0.333333 0.0535436 8.48644e-07 5.91106e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| seem as ||| 0.0625 0.066968 8.48644e-07 1.64409e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| seem fitting in ||| 1 0.605812 8.48644e-07 3.03889e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| seem keen ||| 0.5 0.0149679 8.48644e-07 1.30702e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| seem particularly ||| 0.0769231 0.183344 8.48644e-07 4.08174e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| seem to go in ||| 0.5 0.605812 8.48644e-07 2.19325e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| seem to have ||| 0.00561798 0.0247351 8.48644e-07 3.07259e-08 2.718 ||| 0-1 ||| 178 1.17835e+06 +en ||| seem to ||| 0.00684932 0.0247351 7.6378e-06 2.5691e-06 2.718 ||| 0-1 ||| 1314 1.17835e+06 +en ||| seemed as ||| 0.0714286 0.066968 8.48644e-07 2.06861e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| seemed to have been left ||| 1 0.0247351 8.48644e-07 2.43854e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| seemed to have been ||| 0.125 0.0247351 8.48644e-07 1.29092e-11 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| seemed to have ||| 0.0416667 0.0247351 8.48644e-07 3.86595e-09 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| seemed to ||| 0.0047619 0.0247351 8.48644e-07 3.23245e-07 2.718 ||| 0-1 ||| 210 1.17835e+06 +en ||| seems , in ||| 0.2 0.605812 8.48644e-07 6.61936e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| seems to be pointing the other way ||| 1 0.0247351 8.48644e-07 2.38292e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| seems to be pointing the other ||| 1 0.0247351 8.48644e-07 1.10545e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| seems to be pointing the ||| 1 0.0247351 8.48644e-07 8.53302e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| seems to be pointing ||| 1 0.0247351 8.48644e-07 1.38993e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| seems to be ||| 0.00176678 0.0247351 1.69729e-06 6.12303e-08 2.718 ||| 0-1 ||| 1132 1.17835e+06 +en ||| seems to me , in ||| 0.333333 0.605812 8.48644e-07 3.54146e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| seems to ||| 0.0177815 0.0247351 3.56431e-05 3.37862e-06 2.718 ||| 0-1 ||| 2362 1.17835e+06 +en ||| seen , for example , in ||| 0.25 0.605812 8.48644e-07 3.09289e-12 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| seen a clear statement in ||| 1 0.605812 8.48644e-07 1.0686e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| seen as a ||| 0.00324675 0.0339988 8.48644e-07 5.42183e-09 2.718 ||| 0-0 0-1 ||| 308 1.17835e+06 +en ||| seen as people ||| 0.25 0.066968 8.48644e-07 3.33284e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| seen as ||| 0.0107527 0.066968 8.48644e-06 3.78645e-06 2.718 ||| 0-1 ||| 930 1.17835e+06 +en ||| seen at ||| 0.037037 0.321886 8.48644e-07 8.42042e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| seen by the ||| 0.0204082 0.0468744 8.48644e-07 1.09937e-07 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| seen by ||| 0.019802 0.0468744 1.69729e-06 1.79074e-06 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| seen during Euro 2000 ||| 0.25 0.226251 8.48644e-07 1.64765e-16 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| seen during Euro ||| 0.25 0.226251 8.48644e-07 5.72102e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| seen during ||| 0.0666667 0.226251 8.48644e-07 6.08619e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| seen from ||| 0.0104712 0.0159565 1.69729e-06 2.58747e-08 2.718 ||| 0-0 0-1 ||| 191 1.17835e+06 +en ||| seen here in ||| 0.2 0.605812 8.48644e-07 1.97112e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| seen in relative terms ||| 0.5 0.605812 8.48644e-07 9.60229e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| seen in relative ||| 1 0.605812 8.48644e-07 8.74844e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| seen in the last ||| 0.0909091 0.605812 8.48644e-07 1.30332e-09 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| seen in the ||| 0.00362319 0.605812 8.48644e-07 5.96759e-06 2.718 ||| 0-1 ||| 276 1.17835e+06 +en ||| seen in ||| 0.046832 0.605812 2.88539e-05 9.72049e-05 2.718 ||| 0-1 ||| 726 1.17835e+06 +en ||| seen it in ||| 0.0666667 0.605812 8.48644e-07 1.72861e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| seen on ||| 0.0425532 0.22993 1.69729e-06 1.74817e-05 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| seen that , in ||| 0.333333 0.605812 8.48644e-07 1.94998e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| seen throughout ||| 0.25 0.309047 8.48644e-07 6.10618e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| seen to ||| 0.00495049 0.0247351 8.48644e-07 5.9168e-06 2.718 ||| 0-1 ||| 202 1.17835e+06 +en ||| seen with ||| 0.0149254 0.0535436 8.48644e-07 2.4542e-06 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| seen within ||| 0.111111 0.369196 8.48644e-07 2.33375e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| seen ||| 0.000285225 0.0010295 1.69729e-06 6.8e-06 2.718 ||| 0-0 ||| 7012 1.17835e+06 +en ||| sees fit to express ||| 0.333333 0.0247351 8.48644e-07 1.56218e-15 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| sees fit to ||| 0.0526316 0.0247351 8.48644e-07 1.5391e-11 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| sees in ||| 0.0833333 0.605812 8.48644e-07 7.8041e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| seize every opportunity to ||| 0.142857 0.0247351 8.48644e-07 5.3477e-15 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| seize upon ||| 0.0588235 0.114601 8.48644e-07 5.74535e-09 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| seized off ||| 1 0.0262428 8.48644e-07 1.32246e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| selected for discussion here in ||| 1 0.605812 8.48644e-07 2.67379e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| selected in ||| 0.0714286 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| selected is ||| 0.0833333 0.0005032 8.48644e-07 1.22894e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| self-evident that ||| 0.00961538 0.0017499 8.48644e-07 3.03108e-09 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| self-sufficient in ||| 0.0181818 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| send during ||| 1 0.226251 8.48644e-07 1.862e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| send in ||| 0.0666667 0.605812 8.48644e-07 2.97387e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| send information on ||| 1 0.22993 8.48644e-07 8.85146e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| send shockwaves through ||| 0.333333 0.0366102 8.48644e-07 2.42247e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| sending ||| 0.000812348 0.0006969 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1231 1.17835e+06 +en ||| sends it in ||| 1 0.605812 8.48644e-07 7.06227e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sends up in ||| 1 0.605812 8.48644e-07 1.35442e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sense here in ||| 0.5 0.605812 8.48644e-07 1.66773e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| sense in ||| 0.0192308 0.605812 2.54593e-06 8.22432e-05 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| sense of grievance ||| 0.166667 0.0116562 8.48644e-07 1.70012e-12 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| sense of identity in ||| 1 0.605812 8.48644e-07 9.03156e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| sense of ||| 0.00131752 0.0116562 2.54593e-06 2.42875e-06 2.718 ||| 0-1 ||| 2277 1.17835e+06 +en ||| sense to do them in ||| 1 0.605812 8.48644e-07 6.7342e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| sensibly - by ||| 1 0.0468744 8.48644e-07 4.49255e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sensitive issue as ||| 0.0833333 0.066968 8.48644e-07 2.64097e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| sent in ||| 0.0333333 0.605812 8.48644e-07 2.7753e-05 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| sent into ||| 0.111111 0.525896 8.48644e-07 1.33045e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| sent out at ||| 0.5 0.321886 8.48644e-07 9.20874e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| sent to ||| 0.0103896 0.0247351 3.39458e-06 1.68931e-06 2.718 ||| 0-1 ||| 385 1.17835e+06 +en ||| sentiment , where ||| 1 0.247783 8.48644e-07 2.94537e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sentiments with ||| 1 0.0535436 8.48644e-07 5.47968e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| separate area . we have now ||| 1 0.0123946 8.48644e-07 3.63993e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| separate fact from ||| 0.25 0.0308834 8.48644e-07 4.01266e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| separate priority of ||| 1 0.0116562 8.48644e-07 2.7394e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| separate when ||| 0.333333 0.142731 8.48644e-07 2.14319e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| separated out according to the ||| 1 0.0247351 8.48644e-07 1.28693e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| separated out according to ||| 1 0.0247351 8.48644e-07 2.09626e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| separately in ||| 0.037037 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| separately of ||| 0.333333 0.0116562 8.48644e-07 8.86405e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| series of conversations round ||| 0.5 0.0116562 8.48644e-07 5.84272e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| series of conversations ||| 0.333333 0.0116562 8.48644e-07 7.61763e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| series of ||| 0.00111649 0.0116562 2.54593e-06 5.44116e-07 2.718 ||| 0-1 ||| 2687 1.17835e+06 +en ||| serious account in ||| 1 0.605812 8.48644e-07 1.52942e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| serious as ||| 0.0144928 0.066968 8.48644e-07 2.07221e-06 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| serious attempt to ||| 0.0434783 0.0247351 8.48644e-07 2.70379e-10 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| serious cases of ||| 0.0434783 0.0116562 8.48644e-07 2.01243e-10 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| serious consequences for ||| 0.00763359 0.0286209 8.48644e-07 5.63295e-11 2.718 ||| 0-2 ||| 131 1.17835e+06 +en ||| serious in ||| 0.0165289 0.605812 1.69729e-06 5.31972e-05 2.718 ||| 0-1 ||| 121 1.17835e+06 +en ||| serious thought to ||| 0.0625 0.0247351 8.48644e-07 2.69084e-10 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| serious ||| 6.40533e-05 6.19e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 15612 1.17835e+06 +en ||| seriously , ||| 0.00289855 0.276271 8.48644e-07 0.000183473 2.718 ||| 0-0 ||| 345 1.17835e+06 +en ||| seriously affected ||| 0.00980392 0.276271 8.48644e-07 1.02464e-07 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| seriously at ||| 0.0181818 0.321886 8.48644e-07 1.66808e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| seriously defamed by ||| 1 0.0468744 8.48644e-07 1.41898e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| seriously in ||| 0.0434783 0.605812 3.39458e-06 1.92563e-05 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| seriously over ||| 0.2 0.217104 8.48644e-07 6.16508e-06 2.718 ||| 0-0 0-1 ||| 5 1.17835e+06 +en ||| seriously tackled purely and simply in ||| 1 0.605812 8.48644e-07 2.16294e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| seriously under ||| 0.25 0.205566 8.48644e-07 2.35797e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| seriously ||| 0.00324737 0.276271 1.4427e-05 0.0015385 2.718 ||| 0-0 ||| 5235 1.17835e+06 +en ||| serve as a ||| 0.00227273 0.066968 8.48644e-07 5.45372e-08 2.718 ||| 0-1 ||| 440 1.17835e+06 +en ||| serve as ||| 0.00456621 0.066968 1.69729e-06 1.23037e-06 2.718 ||| 0-1 ||| 438 1.17835e+06 +en ||| serve in ||| 0.08 0.605812 1.69729e-06 3.15858e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| serve the ||| 0.00485437 0.0002545 1.69729e-06 4.29743e-08 2.718 ||| 0-0 ||| 412 1.17835e+06 +en ||| serve to illustrate ||| 0.125 0.0247351 8.48644e-07 9.61304e-12 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| serve to ||| 0.00529101 0.0247351 1.69729e-06 1.92261e-06 2.718 ||| 0-1 ||| 378 1.17835e+06 +en ||| serve ||| 0.000480538 0.0002545 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2081 1.17835e+06 +en ||| served as a place of ||| 1 0.066968 8.48644e-07 1.48085e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| served as a place ||| 1 0.066968 8.48644e-07 2.72395e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| served as a ||| 0.015873 0.066968 8.48644e-07 1.80993e-08 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| served as ||| 0.030303 0.066968 1.69729e-06 4.08325e-07 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| served at all ||| 0.25 0.321886 8.48644e-07 4.29088e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| served at ||| 0.0909091 0.321886 8.48644e-07 9.08045e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| served in ||| 0.0322581 0.605812 8.48644e-07 1.04824e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| served notice on ||| 0.5 0.22993 8.48644e-07 7.25801e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| serves as ||| 0.0206186 0.066968 1.69729e-06 3.5616e-07 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| serves to influence ||| 0.5 0.108638 8.48644e-07 6.83524e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| serves ||| 0.0013245 0.0007855 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 755 1.17835e+06 +en ||| service at all in ||| 1 0.605812 8.48644e-07 6.11287e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| service at ||| 0.0416667 0.321886 8.48644e-07 2.67613e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| service in ||| 0.040404 0.605812 3.39458e-06 3.08932e-05 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| service on ||| 0.1 0.22993 8.48644e-07 5.55594e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| services , a sector where consumers are ||| 1 0.247783 8.48644e-07 4.19844e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| services , a sector where consumers ||| 1 0.247783 8.48644e-07 2.7671e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| services , a sector where ||| 1 0.247783 8.48644e-07 7.39867e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| services , in the ||| 1 0.605812 8.48644e-07 2.99203e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| services , in ||| 0.0909091 0.605812 1.69729e-06 4.87366e-06 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| services , roughly ||| 0.333333 0.0508021 8.48644e-07 1.36147e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| services . in ||| 0.5 0.605812 1.69729e-06 1.23788e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| services at ||| 0.0327869 0.321886 1.69729e-06 3.54018e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| services in ||| 0.00961538 0.605812 3.39458e-06 4.08676e-05 2.718 ||| 0-1 ||| 416 1.17835e+06 +en ||| services on ||| 0.0142857 0.22993 8.48644e-07 7.34978e-06 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| services under ||| 0.0555556 0.205566 8.48644e-07 5.00432e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| services within ||| 0.0151515 0.369196 8.48644e-07 9.81173e-07 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| session in ||| 0.037037 0.605812 1.69729e-06 1.01592e-05 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| set about ||| 0.0123457 0.0401564 8.48644e-07 1.67495e-06 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| set against ||| 0.084507 0.153982 5.09187e-06 3.38888e-06 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| set an example for ||| 0.04 0.0286209 8.48644e-07 8.69939e-12 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| set aside in ||| 0.0769231 0.605812 1.69729e-06 1.90255e-08 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| set at ||| 0.0237154 0.321886 5.09187e-06 2.33772e-05 2.718 ||| 0-1 ||| 253 1.17835e+06 +en ||| set by ||| 0.00317965 0.0468744 1.69729e-06 4.97155e-06 2.718 ||| 0-1 ||| 629 1.17835e+06 +en ||| set down in ||| 0.03125 0.31208 1.69729e-06 5.95052e-08 2.718 ||| 0-1 0-2 ||| 64 1.17835e+06 +en ||| set eyes on ||| 0.5 0.22993 8.48644e-07 2.8295e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| set foot in ||| 0.0909091 0.605812 8.48644e-07 6.01799e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| set for ||| 0.00549451 0.0286209 1.69729e-06 6.72364e-06 2.718 ||| 0-1 ||| 364 1.17835e+06 +en ||| set forth in ||| 0.030303 0.605812 8.48644e-07 5.45127e-09 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| set in motion ||| 0.00980392 0.605812 1.69729e-06 2.04018e-08 2.718 ||| 0-1 ||| 204 1.17835e+06 +en ||| set in stone ||| 0.0363636 0.605812 1.69729e-06 3.77811e-09 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| set in the ||| 0.00645161 0.605812 8.48644e-07 1.65675e-05 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| set in ||| 0.0242718 0.605812 1.27297e-05 0.000269865 2.718 ||| 0-1 ||| 618 1.17835e+06 +en ||| set of words ||| 0.5 0.0116562 8.48644e-07 1.8011e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| set of ||| 0.00355114 0.0116562 4.24322e-06 7.96946e-06 2.718 ||| 0-1 ||| 1408 1.17835e+06 +en ||| set off for ||| 0.0588235 0.0286209 8.48644e-07 2.73652e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| set off on ||| 0.125 0.22993 8.48644e-07 1.97531e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| set on fire ||| 0.0833333 0.22993 8.48644e-07 8.73603e-10 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| set on ||| 0.0862069 0.22993 4.24322e-06 4.85335e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| set out at ||| 0.0526316 0.321886 8.48644e-07 8.95439e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| set out in ||| 0.0129955 0.605812 1.69729e-05 1.03369e-06 2.718 ||| 0-2 ||| 1539 1.17835e+06 +en ||| set out repeatedly in ||| 1 0.605812 8.48644e-07 1.86064e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| set out under ||| 0.0714286 0.205566 8.48644e-07 1.26577e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| set out ||| 0.000318066 0.0120599 8.48644e-07 3.21712e-07 2.718 ||| 0-1 ||| 3144 1.17835e+06 +en ||| set plans in ||| 0.5 0.605812 8.48644e-07 1.13613e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| set to ||| 0.0078329 0.0247351 2.54593e-06 1.64265e-05 2.718 ||| 0-1 ||| 383 1.17835e+06 +en ||| set up as ||| 0.037037 0.066968 1.69729e-06 3.58516e-08 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| set up at ||| 0.0227273 0.321886 8.48644e-07 7.97278e-08 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| set up for ||| 0.0151515 0.0286209 8.48644e-07 2.2931e-08 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| set up in such ||| 0.0833333 0.605812 8.48644e-07 1.90416e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| set up in ||| 0.0401606 0.605812 8.48644e-06 9.20374e-07 2.718 ||| 0-2 ||| 249 1.17835e+06 +en ||| set up within ||| 0.05 0.369196 8.48644e-07 2.20969e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| set up ||| 0.000216216 0.0147069 8.48644e-07 4.03236e-07 2.718 ||| 0-1 ||| 4625 1.17835e+06 +en ||| sets out ||| 0.00258732 0.0120599 1.69729e-06 2.15796e-08 2.718 ||| 0-1 ||| 773 1.17835e+06 +en ||| setting in ||| 0.0227273 0.605812 8.48644e-07 4.38692e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| setting out on foot ||| 0.125 0.22993 8.48644e-07 6.73913e-13 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| setting out on ||| 0.153846 0.22993 1.69729e-06 3.02203e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| setting out ||| 0.001321 0.0120599 8.48644e-07 5.22975e-08 2.718 ||| 0-1 ||| 757 1.17835e+06 +en ||| setting this in ||| 0.5 0.605812 8.48644e-07 2.83456e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| settle for ||| 0.0277778 0.0286209 8.48644e-07 9.08911e-08 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| settle in ||| 0.0169492 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| settled , they can ||| 1 0.0036976 8.48644e-07 1.72283e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| settled , they ||| 1 0.0036976 8.48644e-07 5.79239e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| settled by occupation in ||| 1 0.605812 8.48644e-07 2.45494e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| settled in this way ||| 1 0.605812 8.48644e-07 1.06767e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| settled in this ||| 1 0.605812 8.48644e-07 4.95303e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| settled in ||| 0.0526316 0.605812 1.69729e-06 7.66557e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| settling of ||| 0.0666667 0.0116562 8.48644e-07 3.95473e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| seven of ||| 0.0181818 0.0116562 8.48644e-07 6.8185e-08 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| seven ||| 0.000400641 0.0004421 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2496 1.17835e+06 +en ||| seventh ||| 0.00299401 0.0242588 8.48644e-07 6.1e-06 2.718 ||| 0-0 ||| 334 1.17835e+06 +en ||| seventy countries ||| 0.25 0.0434783 8.48644e-07 1.02519e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| seventy ||| 0.0147059 0.0434783 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| several occasions with ||| 0.142857 0.0535436 8.48644e-07 2.03133e-11 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| several times ||| 0.00102145 0.0026686 8.48644e-07 9.825e-10 2.718 ||| 0-1 ||| 979 1.17835e+06 +en ||| several ||| 0.000489237 0.0006221 4.24322e-06 4.1e-06 2.718 ||| 0-0 ||| 10220 1.17835e+06 +en ||| severe impact with ||| 1 0.0535436 8.48644e-07 1.2489e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| severely threatened has been disputed by nobody ||| 1 0.0468744 8.48644e-07 1.84384e-28 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| severely threatened has been disputed by ||| 1 0.0468744 8.48644e-07 2.144e-23 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| shaken by ||| 0.0263158 0.0468744 8.48644e-07 1.53128e-08 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| shall , at ||| 1 0.321886 8.48644e-07 2.60752e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| shall , in ||| 0.3 0.605812 2.54593e-06 3.0101e-05 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| shall , over ||| 1 0.157937 8.48644e-07 2.61208e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| shall act in line with ||| 1 0.0535436 8.48644e-07 6.82281e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| shall be , at ||| 1 0.321886 8.48644e-07 4.72557e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| shall be able to ||| 0.0166667 0.0247351 8.48644e-07 2.3247e-10 2.718 ||| 0-3 ||| 60 1.17835e+06 +en ||| shall be doing just the same in ||| 1 0.605812 8.48644e-07 1.04669e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| shall be looking in ||| 1 0.605812 8.48644e-07 4.83971e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| shall be on ||| 0.166667 0.22993 8.48644e-07 8.22676e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| shall consequently be ||| 0.333333 0.140903 8.48644e-07 6.9431e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| shall consequently ||| 0.2 0.140903 8.48644e-07 3.83112e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| shall end up ||| 0.2 0.0147069 8.48644e-07 1.641e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| shall focus on ||| 0.04 0.22993 8.48644e-07 3.51352e-09 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| shall give evidence on ||| 1 0.22993 8.48644e-07 1.51574e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| shall henceforth ||| 0.333333 0.172628 8.48644e-07 4.12683e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| shall in ||| 0.55 0.605812 9.33509e-06 0.00025241 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| shall look into ||| 0.0588235 0.525896 8.48644e-07 3.52722e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| shall mention in ||| 1 0.605812 8.48644e-07 2.45342e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| shall not go into it ||| 0.25 0.266972 8.48644e-07 6.66279e-14 2.718 ||| 0-3 0-4 ||| 4 1.17835e+06 +en ||| shall shortly be reporting ||| 1 0.248793 8.48644e-07 4.96824e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| shall shortly be ||| 0.166667 0.248793 8.48644e-07 3.82173e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| shall shortly ||| 0.1 0.248793 8.48644e-07 2.10878e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| shall then , in ||| 1 0.605812 8.48644e-07 4.84747e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| shall ||| 0.000504286 0.0002493 8.48644e-07 3.4e-06 2.718 ||| 0-0 ||| 1983 1.17835e+06 +en ||| shape in ||| 0.114286 0.605812 3.39458e-06 2.79378e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| shape of ||| 0.00566572 0.0116562 1.69729e-06 8.25038e-07 2.718 ||| 0-1 ||| 353 1.17835e+06 +en ||| shaped in ||| 0.166667 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| shaped into ||| 1 0.525896 8.48644e-07 8.85492e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| shaping of ||| 0.0136986 0.0116562 8.48644e-07 8.86405e-08 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| shaping ||| 0.00175439 0.001506 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 570 1.17835e+06 +en ||| share in the ||| 0.0120482 0.605812 8.48644e-07 2.65352e-06 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| share in ||| 0.0252525 0.605812 4.24322e-06 4.32227e-05 2.718 ||| 0-1 ||| 198 1.17835e+06 +en ||| share my view ||| 0.030303 0.002535 8.48644e-07 1.19637e-11 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| share my ||| 0.0153846 0.002535 8.48644e-07 1.32444e-08 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| share of ||| 0.00607533 0.0116562 4.24322e-06 1.27642e-06 2.718 ||| 0-1 ||| 823 1.17835e+06 +en ||| share with them ||| 0.1 0.0535436 8.48644e-07 2.92723e-09 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| share with you ||| 0.00934579 0.0535436 8.48644e-07 3.52339e-09 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| share with ||| 0.00995025 0.0535436 1.69729e-06 1.09127e-06 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| share would at ||| 1 0.321886 8.48644e-07 2.19735e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| shared by ||| 0.00194553 0.0468744 8.48644e-07 2.29692e-07 2.718 ||| 0-1 ||| 514 1.17835e+06 +en ||| shared with ||| 0.0138889 0.0535436 8.48644e-07 3.1479e-07 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| shares in ||| 0.0196078 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| sharp chord in ||| 1 0.605812 8.48644e-07 2.45668e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sharp rise in ||| 0.0333333 0.605812 8.48644e-07 7.71396e-10 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| sharply exemplified by ||| 0.5 0.0468744 8.48644e-07 4.28758e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| shattering news of ||| 1 0.0116562 8.48644e-07 3.46516e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| she chaired ||| 0.111111 0.0039394 8.48644e-07 8.48e-11 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| she does so on ||| 1 0.22993 8.48644e-07 3.75874e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| she expressed in ||| 0.5 0.605812 8.48644e-07 1.27608e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| she has been speaking at ||| 1 0.321886 8.48644e-07 2.24408e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| she has done ||| 0.00261097 0.0039394 8.48644e-07 6.22024e-11 2.718 ||| 0-0 ||| 383 1.17835e+06 +en ||| she has put into ||| 0.0612245 0.525896 2.54593e-06 3.57204e-11 2.718 ||| 0-3 ||| 49 1.17835e+06 +en ||| she has spoken in ||| 0.5 0.605812 8.48644e-07 1.507e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| she has ||| 0.00108578 0.0039394 1.69729e-06 1.36409e-07 2.718 ||| 0-0 ||| 1842 1.17835e+06 +en ||| she was , from ||| 1 0.0308834 8.48644e-07 4.04184e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| she was during ||| 0.5 0.226251 8.48644e-07 2.57532e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| she was in ||| 0.125 0.605812 8.48644e-07 4.11314e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| she was speaking in ||| 1 0.605812 8.48644e-07 4.72188e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| she would be in ||| 0.5 0.605812 8.48644e-07 1.39631e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| she would succeed in ||| 1 0.605812 8.48644e-07 2.93549e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| she ||| 0.0015015 0.0039394 5.09187e-06 2.65e-05 2.718 ||| 0-0 ||| 3996 1.17835e+06 +en ||| shed on ||| 0.4 0.22993 1.69729e-06 7.14216e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| sheep in ||| 0.0454545 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| sheep ||| 0.00112867 0.003337 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 886 1.17835e+06 +en ||| shelf at ||| 1 0.321886 8.48644e-07 8.80044e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| shelling of ||| 0.125 0.0116562 8.48644e-07 9.5459e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| shells in ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| shift from ||| 0.0149254 0.0308834 8.48644e-07 7.5341e-08 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| shift in ||| 0.00775194 0.605812 8.48644e-07 9.14327e-06 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| shift to ||| 0.0333333 0.0247351 1.69729e-06 5.56544e-07 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| shifted from ||| 0.0454545 0.0308834 8.48644e-07 1.63619e-08 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| shifted in ||| 0.125 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| shifting ||| 0.0028169 0.0173913 8.48644e-07 4.1e-06 2.718 ||| 0-0 ||| 355 1.17835e+06 +en ||| shifts in order ||| 1 0.605812 8.48644e-07 2.70539e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| shifts in ||| 0.0357143 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| shining on ||| 1 0.22993 8.48644e-07 1.82706e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ship at ||| 0.2 0.321886 8.48644e-07 6.0403e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| ship in ||| 0.0384615 0.605812 8.48644e-07 6.97289e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| shipbuilding pending US ||| 0.5 0.0928726 8.48644e-07 7.26102e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| shipbuilding pending ||| 0.5 0.0928726 8.48644e-07 1.6965e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| shipowners in ||| 0.2 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| shipping in ||| 0.025641 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| shipping on ||| 0.125 0.22993 8.48644e-07 6.56082e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| ships from ||| 0.0285714 0.0308834 8.48644e-07 6.16426e-08 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| ships in ||| 0.012987 0.605812 8.48644e-07 7.48085e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| ships ’ ||| 0.111111 0.0008797 8.48644e-07 3.8556e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| shocked to hear of no fewer than ||| 1 0.0247351 8.48644e-07 3.9096e-24 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| shocked to hear of no fewer ||| 1 0.0247351 8.48644e-07 1.27974e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| shocked to hear of no ||| 1 0.0247351 8.48644e-07 6.0365e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| shocked to hear of ||| 1 0.0247351 8.48644e-07 7.755e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| shocked to hear ||| 0.1 0.0247351 8.48644e-07 1.4265e-11 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| shocked to ||| 0.0416667 0.0247351 8.48644e-07 1.40542e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| shocking on ||| 1 0.22993 8.48644e-07 3.90327e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| shockwaves through ||| 0.1 0.0366102 8.48644e-07 3.7616e-10 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| shoemaking in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| shooting engaged in ||| 0.5 0.605812 8.48644e-07 8.89852e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| shooting in ||| 0.333333 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| shopping through ||| 1 0.0366102 8.48644e-07 5.07816e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| shore where they can ||| 1 0.247783 8.48644e-07 1.48824e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| shore where they ||| 1 0.247783 8.48644e-07 5.00367e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| shore where ||| 1 0.247783 8.48644e-07 1.53299e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| short on ||| 0.0294118 0.22993 8.48644e-07 1.17181e-05 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| short period of ||| 0.0217391 0.0116562 8.48644e-07 3.3577e-10 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| short while ||| 0.0133333 0.0151276 8.48644e-07 3.85908e-08 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| shortcomings in ||| 0.0060423 0.605812 1.69729e-06 4.98724e-06 2.718 ||| 0-1 ||| 331 1.17835e+06 +en ||| shortly be living in ||| 1 0.605812 8.48644e-07 8.55594e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| shortly be reporting ||| 1 0.248793 8.48644e-07 9.08936e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| shortly be ||| 0.0103093 0.248793 8.48644e-07 6.99181e-06 2.718 ||| 0-0 ||| 97 1.17835e+06 +en ||| shortly do on ||| 1 0.22993 8.48644e-07 3.48061e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| shortly submit ||| 1 0.248793 8.48644e-07 8.06322e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| shortly ||| 0.00334896 0.248793 4.24322e-06 0.0003858 2.718 ||| 0-0 ||| 1493 1.17835e+06 +en ||| shot dead in ||| 0.0434783 0.605812 8.48644e-07 1.28264e-10 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| shot on sight in ||| 1 0.605812 8.48644e-07 7.95927e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should , at ||| 0.117647 0.321886 1.69729e-06 2.11378e-05 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| should , in ||| 0.111801 0.605812 1.52756e-05 0.000244013 2.718 ||| 0-2 ||| 161 1.17835e+06 +en ||| should , on ||| 0.0909091 0.22993 1.69729e-06 4.38842e-05 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| should , to ||| 0.1 0.0247351 8.48644e-07 1.48529e-05 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| should , under ||| 0.125 0.205566 8.48644e-07 2.98799e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| should , within ||| 0.5 0.369196 8.48644e-07 5.85841e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| should accept in ||| 1 0.605812 8.48644e-07 2.21598e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| should actually be ||| 0.0163934 0.125341 8.48644e-07 1.07862e-07 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| should actually ||| 0.0188679 0.125341 1.69729e-06 5.95172e-06 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| should also like to mention ||| 0.0434783 0.0247351 8.48644e-07 1.08541e-13 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| should also like to ||| 0.00480769 0.0247351 8.48644e-07 1.11667e-09 2.718 ||| 0-3 ||| 208 1.17835e+06 +en ||| should also point out at ||| 1 0.321886 8.48644e-07 2.99852e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should always be borne in mind ||| 0.25 0.605812 8.48644e-07 5.14129e-17 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| should always be borne in ||| 0.25 0.605812 8.48644e-07 2.041e-13 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| should appear in ||| 0.0833333 0.605812 8.48644e-07 1.78834e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| should apply as they stand during ||| 0.5 0.226251 8.48644e-07 1.01193e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| should apply here ||| 0.0769231 0.0855319 8.48644e-07 1.91293e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| should as ||| 0.0769231 0.066968 8.48644e-07 7.97044e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| should at all - ||| 0.125 0.321886 8.48644e-07 3.1594e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| should at all ||| 0.111111 0.321886 8.48644e-07 8.37572e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| should at ||| 0.0666667 0.321886 5.09187e-06 0.000177249 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| should be as ||| 0.00854701 0.066968 8.48644e-07 1.44447e-06 2.718 ||| 0-2 ||| 117 1.17835e+06 +en ||| should be at ||| 0.0104167 0.321886 8.48644e-07 3.21226e-06 2.718 ||| 0-2 ||| 96 1.17835e+06 +en ||| should be automatic when a ||| 1 0.142731 8.48644e-07 2.33097e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should be automatic when ||| 1 0.142731 8.48644e-07 5.25872e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should be brought into ||| 0.0833333 0.525896 8.48644e-07 4.97751e-10 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| should be calculated in ||| 1 0.605812 8.48644e-07 4.26445e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should be carried out ||| 0.00558659 0.0120599 8.48644e-07 1.30277e-11 2.718 ||| 0-3 ||| 179 1.17835e+06 +en ||| should be covered by ||| 0.0185185 0.0468744 8.48644e-07 4.8913e-11 2.718 ||| 0-3 ||| 54 1.17835e+06 +en ||| should be dealt with at ||| 0.0172414 0.321886 8.48644e-07 2.15062e-12 2.718 ||| 0-4 ||| 58 1.17835e+06 +en ||| should be dealt with ||| 0.004329 0.0535436 8.48644e-07 9.80243e-11 2.718 ||| 0-3 ||| 231 1.17835e+06 +en ||| should be done in ||| 0.0149254 0.605812 8.48644e-07 1.69095e-08 2.718 ||| 0-3 ||| 67 1.17835e+06 +en ||| should be drawn up at ||| 0.25 0.321886 8.48644e-07 1.55677e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| should be enforced in ||| 1 0.605812 8.48644e-07 4.26445e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should be expanded in ||| 0.333333 0.605812 8.48644e-07 2.26201e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| should be familiar - with Article 24 ||| 1 0.0535436 8.48644e-07 9.32107e-24 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should be familiar - with Article ||| 1 0.0535436 8.48644e-07 1.08384e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should be familiar - with ||| 1 0.0535436 8.48644e-07 5.47396e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should be focused on ||| 0.03125 0.22993 8.48644e-07 1.48719e-10 2.718 ||| 0-3 ||| 32 1.17835e+06 +en ||| should be framed in ||| 1 0.605812 8.48644e-07 9.27055e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should be given to ||| 0.010101 0.0396968 8.48644e-07 2.62035e-09 2.718 ||| 0-2 0-3 ||| 99 1.17835e+06 +en ||| should be given ||| 0.00105932 0.0546585 8.48644e-07 9.32233e-08 2.718 ||| 0-2 ||| 944 1.17835e+06 +en ||| should be greater in ||| 0.333333 0.605812 8.48644e-07 4.88373e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| should be held in ||| 0.0909091 0.605812 8.48644e-07 9.45967e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| should be in a ||| 0.0285714 0.605812 8.48644e-07 1.6437e-06 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| should be in ||| 0.0512821 0.605812 8.48644e-06 3.70822e-05 2.718 ||| 0-2 ||| 195 1.17835e+06 +en ||| should be included in ||| 0.010582 0.605812 1.69729e-06 3.48202e-09 2.718 ||| 0-3 ||| 189 1.17835e+06 +en ||| should be incorporated into ||| 0.0204082 0.525896 8.48644e-07 3.59092e-11 2.718 ||| 0-3 ||| 49 1.17835e+06 +en ||| should be involved in ||| 0.0204082 0.605812 1.69729e-06 1.2823e-08 2.718 ||| 0-3 ||| 98 1.17835e+06 +en ||| should be laid down in ||| 0.125 0.605812 8.48644e-07 2.82169e-12 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| should be launched , ||| 0.0714286 0.12071 8.48644e-07 2.03979e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| should be launched ||| 0.0357143 0.12071 8.48644e-07 1.71044e-08 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| should be linked with ||| 0.333333 0.0535436 8.48644e-07 3.90412e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| should be looked at in ||| 0.2 0.463849 8.48644e-07 6.8828e-11 2.718 ||| 0-3 0-4 ||| 5 1.17835e+06 +en ||| should be made as regards ||| 1 0.0074471 8.48644e-07 1.62387e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should be made at ||| 0.1 0.321886 8.48644e-07 6.72905e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| should be made clear in ||| 1 0.605812 8.48644e-07 2.58596e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should be made in ||| 0.0909091 0.605812 8.48644e-07 7.76798e-08 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| should be made to work in ||| 1 0.605812 8.48644e-07 4.36928e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| should be maintained in ||| 0.1 0.605812 8.48644e-07 1.309e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| should be on ||| 0.0243902 0.22993 1.69729e-06 6.669e-06 2.718 ||| 0-2 ||| 82 1.17835e+06 +en ||| should be partners in seeking ||| 0.333333 0.605812 8.48644e-07 4.81297e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| should be partners in ||| 0.25 0.605812 8.48644e-07 9.49305e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| should be passed in ||| 1 0.605812 8.48644e-07 2.65509e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should be placed before the judicial authorities ||| 1 0.0011669 8.48644e-07 6.23655e-24 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should be placed before the judicial ||| 1 0.0011669 8.48644e-07 9.36418e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should be placed before the ||| 1 0.0011669 8.48644e-07 7.20322e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should be placed in ||| 0.0555556 0.605812 8.48644e-07 4.64269e-09 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| should be placed on ||| 0.025641 0.22993 8.48644e-07 8.34959e-10 2.718 ||| 0-3 ||| 39 1.17835e+06 +en ||| should be possible , especially in the ||| 1 0.605812 8.48644e-07 1.74862e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| should be possible , especially in ||| 1 0.605812 8.48644e-07 2.8483e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| should be posted in ||| 1 0.605812 8.48644e-07 1.59453e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should be prescribed in ||| 1 0.605812 8.48644e-07 2.92949e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should be promoted on ||| 0.5 0.22993 8.48644e-07 1.46718e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| should be quoted in ||| 1 0.605812 8.48644e-07 4.52403e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should be recorded in ||| 0.125 0.605812 8.48644e-07 7.75018e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| should be redistributed through ||| 1 0.0366102 8.48644e-07 8.30682e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should be reflected in ||| 0.0217391 0.605812 8.48644e-07 7.49061e-10 2.718 ||| 0-3 ||| 46 1.17835e+06 +en ||| should be regulated in ||| 0.25 0.605812 8.48644e-07 3.7453e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| should be remembered that in ||| 0.5 0.605812 8.48644e-07 3.36842e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| should be represented in ||| 0.0833333 0.605812 8.48644e-07 1.309e-09 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| should be restored in ||| 1 0.605812 8.48644e-07 6.41522e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should be right at ||| 1 0.321886 8.48644e-07 2.07159e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should be set at ||| 0.04 0.321886 8.48644e-07 1.87725e-09 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| should be spent at ||| 1 0.321886 8.48644e-07 2.05906e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should be taken by ||| 0.037037 0.0468744 8.48644e-07 6.22684e-10 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| should be taken into ||| 0.00462963 0.525896 8.48644e-07 1.62036e-09 2.718 ||| 0-3 ||| 216 1.17835e+06 +en ||| should be taken ||| 0.00122699 0.0042106 8.48644e-07 7.15496e-09 2.718 ||| 0-2 ||| 815 1.17835e+06 +en ||| should be to give ||| 0.2 0.0247351 8.48644e-07 1.36784e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| should be to ||| 0.00294118 0.0247351 8.48644e-07 2.25717e-06 2.718 ||| 0-2 ||| 340 1.17835e+06 +en ||| should be written into ||| 0.2 0.525896 8.48644e-07 8.88841e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| should be ||| 0.000109266 0.0004127 2.54593e-06 7.77472e-07 2.718 ||| 0-0 ||| 27456 1.17835e+06 +en ||| should bear in ||| 0.0196078 0.605812 8.48644e-07 3.06309e-07 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| should become a component of ||| 1 0.0116562 8.48644e-07 1.15549e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should become active , ||| 0.5 0.219193 8.48644e-07 8.14223e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| should become active ||| 0.333333 0.219193 8.48644e-07 6.8276e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| should become ||| 0.0148883 0.219193 5.09187e-06 1.69419e-05 2.718 ||| 0-1 ||| 403 1.17835e+06 +en ||| should body ||| 1 0.0004127 8.48644e-07 3.67224e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| should come here and ||| 0.5 0.0855319 8.48644e-07 1.41419e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| should come here ||| 0.2 0.0855319 8.48644e-07 1.12901e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| should come into force ||| 0.0454545 0.525896 8.48644e-07 1.4179e-11 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| should come into ||| 0.0294118 0.525896 8.48644e-07 8.33082e-08 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| should come under ||| 0.0555556 0.205566 8.48644e-07 2.12797e-08 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| should concentrate on ||| 0.00990099 0.22993 8.48644e-07 5.70381e-09 2.718 ||| 0-2 ||| 101 1.17835e+06 +en ||| should continue in ||| 0.0625 0.605812 8.48644e-07 4.7348e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| should cover ||| 0.00746269 0.0004127 8.48644e-07 3.35049e-09 2.718 ||| 0-0 ||| 134 1.17835e+06 +en ||| should depend on ||| 0.047619 0.22993 8.48644e-07 6.77097e-09 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| should do in ||| 0.1 0.605812 8.48644e-07 7.02915e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| should do so on ||| 0.333333 0.22993 8.48644e-07 2.86924e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| should form part of ||| 0.03125 0.0116562 8.48644e-07 3.27923e-11 2.718 ||| 0-3 ||| 32 1.17835e+06 +en ||| should go hand in hand ||| 0.0416667 0.605812 8.48644e-07 1.88213e-13 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| should go hand in ||| 0.0232558 0.605812 8.48644e-07 4.74567e-10 2.718 ||| 0-3 ||| 43 1.17835e+06 +en ||| should go out ||| 0.1 0.0120599 8.48644e-07 1.42648e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| should happen ||| 0.00719424 0.0004127 8.48644e-07 4.66323e-09 2.718 ||| 0-0 ||| 139 1.17835e+06 +en ||| should have been characterised by ||| 1 0.0468744 8.48644e-07 2.54411e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should have been learnt in ||| 0.5 0.605812 8.48644e-07 8.25326e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| should have been when it came to ||| 0.333333 0.142731 8.48644e-07 2.09751e-16 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| should have been when it came ||| 0.333333 0.142731 8.48644e-07 2.36051e-15 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| should have been when it ||| 0.333333 0.142731 8.48644e-07 1.87342e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| should have been when ||| 0.333333 0.142731 8.48644e-07 1.05348e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| should have in ||| 0.25 0.605812 1.69729e-06 2.44716e-05 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| should have stressed factual information and education ||| 1 0.127203 8.48644e-07 2.09703e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| should have stressed factual information and ||| 1 0.127203 8.48644e-07 6.20424e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| should have stressed factual information ||| 1 0.127203 8.48644e-07 4.95313e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| should have stressed factual ||| 1 0.127203 8.48644e-07 2.99283e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| should have stressed ||| 1 0.127203 8.48644e-07 1.19713e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| should in fact be translated in ||| 1 0.605812 8.48644e-07 1.99955e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| should in ||| 0.194444 0.605812 2.97026e-05 0.00204615 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| should interfere less in ||| 1 0.605812 8.48644e-07 8.70638e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should invest in ||| 0.0909091 0.605812 8.48644e-07 1.92338e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| should involve ||| 0.00869565 0.0184384 8.48644e-07 2.44148e-07 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| should just like to add here ||| 0.5 0.0855319 8.48644e-07 2.17032e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| should like , instead , ||| 0.5 0.340662 8.48644e-07 3.77553e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| should like , instead ||| 0.5 0.340662 8.48644e-07 3.16594e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| should like , on ||| 0.6 0.22993 5.09187e-06 7.7934e-08 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| should like in ||| 0.1 0.605812 8.48644e-07 3.63376e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| should like on ||| 0.75 0.22993 2.54593e-06 6.53509e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| should like to begin by ||| 0.00970874 0.0247351 8.48644e-07 6.85132e-14 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| should like to begin ||| 0.00621118 0.0247351 8.48644e-07 1.30499e-11 2.718 ||| 0-2 ||| 161 1.17835e+06 +en ||| should like to explain ||| 0.030303 0.0247351 8.48644e-07 5.81715e-12 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| should like to mention ||| 0.00847458 0.0247351 8.48644e-07 2.14991e-11 2.718 ||| 0-2 ||| 118 1.17835e+06 +en ||| should like to see ||| 0.00980392 0.0247351 8.48644e-07 1.55847e-10 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| should like to state on ||| 1 0.22993 8.48644e-07 1.46684e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should like to thank him for ||| 0.125 0.0286209 8.48644e-07 2.72873e-16 2.718 ||| 0-5 ||| 8 1.17835e+06 +en ||| should like to ||| 0.00959764 0.0247351 2.20648e-05 2.21185e-07 2.718 ||| 0-2 ||| 2709 1.17835e+06 +en ||| should look in ||| 0.166667 0.605812 8.48644e-07 5.96453e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| should look like in ||| 0.333333 0.605812 8.48644e-07 1.05924e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| should make in ||| 1 0.605812 8.48644e-07 3.5558e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| should make the ||| 0.0263158 0.0004127 8.48644e-07 4.57686e-09 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| should make ||| 0.00151057 0.0004127 8.48644e-07 7.45516e-08 2.718 ||| 0-0 ||| 662 1.17835e+06 +en ||| should nonetheless like , however , to ||| 1 0.0053256 8.48644e-07 2.83997e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should nonetheless like , however , ||| 1 0.0053256 8.48644e-07 3.19607e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should nonetheless like , however ||| 1 0.0053256 8.48644e-07 2.68003e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should not decide on ||| 0.333333 0.22993 8.48644e-07 8.05318e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| should not in ||| 0.0454545 0.605812 8.48644e-07 6.98577e-06 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| should not lead to ||| 0.0133333 0.0247351 8.48644e-07 8.18546e-11 2.718 ||| 0-3 ||| 75 1.17835e+06 +en ||| should not take ||| 0.0140845 0.0074151 8.48644e-07 4.42642e-09 2.718 ||| 0-2 ||| 71 1.17835e+06 +en ||| should now like to ||| 0.0263158 0.0247351 8.48644e-07 4.55618e-10 2.718 ||| 0-3 ||| 38 1.17835e+06 +en ||| should now ||| 0.00273973 0.0123946 8.48644e-07 2.62315e-06 2.718 ||| 0-1 ||| 365 1.17835e+06 +en ||| should on ||| 0.230769 0.22993 2.54593e-06 0.000367987 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| should participate , especially when ||| 1 0.142731 8.48644e-07 6.0879e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| should particularly like ||| 0.04 0.183344 8.48644e-07 3.51414e-08 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| should particularly ||| 0.0175439 0.183344 8.48644e-07 1.9788e-05 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| should pay tribute to ||| 0.333333 0.0247351 8.48644e-07 3.46004e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| should primarily comprise ||| 1 0.0814715 8.48644e-07 4.67949e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| should primarily ||| 0.0625 0.0814715 8.48644e-07 1.08825e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| should rather at ||| 1 0.321886 8.48644e-07 5.42736e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| should rather look into ||| 1 0.525896 8.48644e-07 8.75528e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should really be self-evident that ||| 0.25 0.0017499 8.48644e-07 1.17905e-16 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| should remain in ||| 0.0212766 0.605812 8.48644e-07 2.48198e-07 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| should retain ||| 0.015873 0.0006223 8.48644e-07 3.1017e-09 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| should say " at ||| 0.5 0.321886 8.48644e-07 4.01173e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| should say in ||| 0.2 0.605812 8.48644e-07 1.95571e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| should speak up in ||| 1 0.605812 8.48644e-07 9.44178e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should spread to areas ||| 1 0.0247351 8.48644e-07 8.09656e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| should spread to ||| 1 0.0247351 8.48644e-07 3.53716e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| should still feature in ||| 1 0.605812 8.48644e-07 4.16114e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| should take care of ||| 0.125 0.0074151 8.48644e-07 7.15408e-12 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| should take care ||| 0.037037 0.0074151 8.48644e-07 1.31596e-10 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| should take into account facts ||| 1 0.525896 8.48644e-07 9.30773e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| should take into account ||| 0.0114943 0.525896 8.48644e-07 4.54036e-11 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| should take into ||| 0.00980392 0.525896 8.48644e-07 1.57926e-07 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| should take on ||| 0.03125 0.22993 8.48644e-07 5.9246e-07 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| should take place at ||| 0.0833333 0.321886 8.48644e-07 4.29483e-10 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| should take place in ||| 0.0227273 0.605812 8.48644e-07 4.95793e-09 2.718 ||| 0-3 ||| 44 1.17835e+06 +en ||| should take place ||| 0.00396825 0.0074151 8.48644e-07 1.95125e-09 2.718 ||| 0-1 ||| 252 1.17835e+06 +en ||| should take ||| 0.00349895 0.0074151 4.24322e-06 1.29651e-06 2.718 ||| 0-1 ||| 1429 1.17835e+06 +en ||| should therefore be set up as ||| 1 0.066968 8.48644e-07 2.40769e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| should therefore realize that issues such as ||| 1 0.066968 8.48644e-07 3.3839e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| should this information ||| 1 0.0013296 8.48644e-07 3.49799e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| should this ||| 0.00909091 0.0013296 8.48644e-07 2.11359e-06 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| should thus ||| 0.0434783 0.0107888 8.48644e-07 6.48255e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| should use ||| 0.00465116 0.0005448 8.48644e-07 6.1347e-10 2.718 ||| 0-0 0-1 ||| 215 1.17835e+06 +en ||| should we need ||| 0.25 0.0054082 8.48644e-07 9.19774e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| should we ||| 0.000968992 0.0054082 8.48644e-07 1.00313e-05 2.718 ||| 0-1 ||| 1032 1.17835e+06 +en ||| should work ||| 0.00492611 0.0004127 8.48644e-07 2.71557e-08 2.718 ||| 0-0 ||| 203 1.17835e+06 +en ||| should ||| 0.000590254 0.0004127 3.64917e-05 4.29e-05 2.718 ||| 0-0 ||| 72850 1.17835e+06 +en ||| shoulder in ||| 0.1875 0.605812 2.54593e-06 8.95855e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| shoulder to shoulder in ||| 0.0909091 0.605812 8.48644e-07 1.54432e-11 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| shoulder to ||| 0.0149254 0.0247351 8.48644e-07 5.45301e-07 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| shoulder together in ||| 1 0.605812 8.48644e-07 5.38051e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| shoulders of ||| 0.0222222 0.0116562 8.48644e-07 2.11374e-07 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| show a ||| 0.00387597 0.0015231 8.48644e-07 1.10334e-07 2.718 ||| 0-1 ||| 258 1.17835e+06 +en ||| show at ||| 0.125 0.321886 8.48644e-07 5.35627e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| show in ||| 0.0689655 0.605812 1.69729e-06 6.18325e-05 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| show just ||| 0.0416667 0.001725 8.48644e-07 7.01636e-09 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| show me at first-hand how significant ||| 1 0.321886 8.48644e-07 1.46468e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| show me at first-hand how ||| 1 0.321886 8.48644e-07 2.54285e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| show me at first-hand ||| 1 0.321886 8.48644e-07 7.09502e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| show me at ||| 1 0.321886 8.48644e-07 3.22501e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| show on ||| 0.125 0.22993 8.48644e-07 1.11202e-05 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| show signs of ||| 0.0555556 0.0116562 8.48644e-07 2.83029e-11 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| show that we are concerned with standards ||| 1 0.0535436 8.48644e-07 5.31885e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| show that we are concerned with ||| 0.5 0.0535436 8.48644e-07 7.27613e-15 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| show ||| 0.000146972 0.0001249 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 6804 1.17835e+06 +en ||| showed in ||| 0.0384615 0.605812 8.48644e-07 9.78976e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| showed its strength ||| 1 0.000385 8.48644e-07 1.43007e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| showed its ||| 0.0434783 0.000385 8.48644e-07 5.7664e-10 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| showed that ||| 0.00253807 0.0017499 8.48644e-07 2.21582e-08 2.718 ||| 0-1 ||| 394 1.17835e+06 +en ||| showing us where ||| 1 0.247783 8.48644e-07 7.58488e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| showing ||| 0.00131839 0.0024284 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 1517 1.17835e+06 +en ||| shown by ||| 0.00369686 0.0468744 1.69729e-06 8.88141e-07 2.718 ||| 0-1 ||| 541 1.17835e+06 +en ||| shown due ||| 0.5 0.0037976 8.48644e-07 2.83968e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| shown following ||| 1 0.0089387 8.48644e-07 9.52128e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| shown in ||| 0.0271003 0.605812 8.48644e-06 4.82099e-05 2.718 ||| 0-1 ||| 369 1.17835e+06 +en ||| shown on ||| 0.107143 0.22993 5.09187e-06 8.67025e-06 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| shown through ||| 0.0625 0.0366102 8.48644e-07 9.81778e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| shown with ||| 0.0454545 0.0535436 8.48644e-07 1.21719e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| shreds by ||| 0.333333 0.0468744 8.48644e-07 3.40284e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| shrouded in ||| 0.0322581 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| shut down in 2008 ||| 1 0.605812 8.48644e-07 1.18922e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| shut down in ||| 0.111111 0.605812 8.48644e-07 4.99673e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| shut in ||| 0.333333 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| shut off in ||| 1 0.605812 8.48644e-07 2.91315e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| shy away from ||| 0.015873 0.0308834 8.48644e-07 2.17872e-12 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| side , in the ||| 0.25 0.605812 8.48644e-07 7.41076e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| side , in ||| 0.0666667 0.605812 8.48644e-07 1.20712e-05 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| side at ||| 0.2 0.321886 1.69729e-06 8.76844e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| side by side , in the ||| 0.333333 0.605812 8.48644e-07 8.52846e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| side by side , in ||| 0.333333 0.605812 8.48644e-07 1.38919e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| side by side ||| 0.00813008 0.0468744 8.48644e-07 4.08755e-10 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| side by ||| 0.0186916 0.0468744 1.69729e-06 1.86476e-06 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| side during ||| 0.2 0.226251 8.48644e-07 6.33773e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| side in ||| 0.111111 0.605812 5.94051e-06 0.000101222 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| side of ||| 0.00118765 0.0116562 8.48644e-07 2.98923e-06 2.718 ||| 0-1 ||| 842 1.17835e+06 +en ||| side on ||| 0.0555556 0.22993 8.48644e-07 1.82042e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| side-byside in ||| 0.5 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| sides and in a global context . ||| 1 0.605812 8.48644e-07 1.74798e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sides and in a global context ||| 1 0.605812 8.48644e-07 5.77081e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sides and in a global ||| 1 0.605812 8.48644e-07 4.30015e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sides and in a ||| 1 0.605812 8.48644e-07 9.40953e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sides and in ||| 0.2 0.605812 8.48644e-07 2.12281e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| sides in ||| 0.00980392 0.605812 8.48644e-07 1.69474e-05 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| sides ||| 0.000286944 0.0002508 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 3485 1.17835e+06 +en ||| sight in ||| 0.2 0.605812 8.48644e-07 1.0621e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| sight of the ||| 0.011236 0.0011669 8.48644e-07 3.58194e-09 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| sight of ||| 0.00497512 0.0116562 8.48644e-07 3.13651e-07 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| sighted at ||| 1 0.321886 8.48644e-07 2.80014e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sighted in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sign of this ||| 0.0416667 0.0116562 8.48644e-07 4.59956e-09 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| sign of ||| 0.00249688 0.0116562 1.69729e-06 7.11851e-07 2.718 ||| 0-1 ||| 801 1.17835e+06 +en ||| sign on with illegal ||| 1 0.22993 8.48644e-07 8.98159e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sign on with ||| 1 0.22993 8.48644e-07 2.7721e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sign on ||| 0.1 0.22993 8.48644e-07 4.33513e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| sign up to ||| 0.00675676 0.0247351 8.48644e-07 5.00407e-09 2.718 ||| 0-2 ||| 148 1.17835e+06 +en ||| signal against ||| 0.333333 0.153982 8.48644e-07 1.38014e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| signal in ||| 0.0322581 0.605812 8.48644e-07 1.09904e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| signals will be used as ||| 1 0.066968 8.48644e-07 9.19508e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| signed up at a ||| 1 0.321886 8.48644e-07 1.86859e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| signed up at ||| 1 0.321886 8.48644e-07 4.21559e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| signed up to ||| 0.00555556 0.0247351 8.48644e-07 2.96218e-09 2.718 ||| 0-2 ||| 180 1.17835e+06 +en ||| significance in ||| 0.0131579 0.605812 8.48644e-07 9.46651e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| significant during ||| 0.333333 0.226251 8.48644e-07 1.66539e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| significant in the ||| 0.0434783 0.605812 8.48644e-07 1.63294e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| significant in ||| 0.0263158 0.605812 2.54593e-06 2.65986e-05 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| significant increase in ||| 0.00813008 0.605812 8.48644e-07 3.43654e-09 2.718 ||| 0-2 ||| 123 1.17835e+06 +en ||| significant observation with us , ||| 0.166667 0.0535436 8.48644e-07 2.33132e-15 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| significant observation with us ||| 0.166667 0.0535436 8.48644e-07 1.9549e-14 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| significant observation with ||| 0.166667 0.0535436 8.48644e-07 6.78268e-12 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| significant step further down the road ||| 1 0.0011669 8.48644e-07 7.32475e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| significant step further down the ||| 1 0.0011669 8.48644e-07 8.21161e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| signs and ||| 0.030303 0.0010182 8.48644e-07 1.43019e-08 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| signs of ||| 0.00461894 0.0116562 1.69729e-06 2.11374e-07 2.718 ||| 0-1 ||| 433 1.17835e+06 +en ||| silent in ||| 0.0769231 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| silent on ||| 0.02 0.22993 8.48644e-07 7.14216e-07 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| silent ||| 0.00206612 0.126551 8.48644e-07 6.94e-05 2.718 ||| 0-0 ||| 484 1.17835e+06 +en ||| similar in ||| 0.0172414 0.605812 8.48644e-07 1.86098e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| similar process could be introduced in ||| 1 0.605812 8.48644e-07 9.48369e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| similar story with ||| 0.5 0.0535436 8.48644e-07 8.26942e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| similarly , in ||| 0.027027 0.605812 8.48644e-07 6.333e-07 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| similarly , ||| 0.00154321 0.0020284 1.69729e-06 4.88944e-07 2.718 ||| 0-0 ||| 1296 1.17835e+06 +en ||| similarly for ||| 0.166667 0.0286209 8.48644e-07 1.3231e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| similarly ||| 0.00167785 0.0020284 2.54593e-06 4.1e-06 2.718 ||| 0-0 ||| 1788 1.17835e+06 +en ||| simply a ||| 0.00220751 0.0015231 8.48644e-07 1.82681e-07 2.718 ||| 0-1 ||| 453 1.17835e+06 +en ||| simply amount to ||| 0.333333 0.0247351 8.48644e-07 1.51615e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| simply in a ||| 0.2 0.605812 8.48644e-07 4.53794e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| simply in ||| 0.0655738 0.605812 3.39458e-06 0.000102377 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| simply inherent in ||| 0.2 0.605812 8.48644e-07 1.249e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| simply move to ||| 0.5 0.0247351 8.48644e-07 9.52813e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| simply refer to ||| 0.111111 0.0247351 8.48644e-07 4.86689e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| simply removed from ||| 1 0.0308834 8.48644e-07 3.82147e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| simply to pass on ||| 1 0.22993 8.48644e-07 9.35816e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| simultaneously to ||| 0.0434783 0.0247351 8.48644e-07 2.13623e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| sin ||| 0.00925926 0.008547 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| since ' ||| 0.0909091 0.0075235 8.48644e-07 5.95955e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| since , in ||| 0.00793651 0.605812 8.48644e-07 7.47294e-06 2.718 ||| 0-2 ||| 126 1.17835e+06 +en ||| since I ||| 0.00175439 0.0075235 8.48644e-07 1.22725e-06 2.718 ||| 0-0 ||| 570 1.17835e+06 +en ||| since been ||| 0.0277778 0.0075235 8.48644e-07 5.79351e-07 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| since e-mails ||| 0.333333 0.0075235 8.48644e-07 1.9085e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| since in ||| 0.00719424 0.605812 8.48644e-07 6.26637e-05 2.718 ||| 0-1 ||| 139 1.17835e+06 +en ||| since the provisions on ||| 1 0.22993 8.48644e-07 5.4519e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| since the question is ||| 0.5 0.0075235 8.48644e-07 2.76177e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| since the question ||| 0.0454545 0.0075235 8.48644e-07 8.81197e-09 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| since the ||| 0.000163239 0.0075235 8.48644e-07 1.06515e-05 2.718 ||| 0-0 ||| 6126 1.17835e+06 +en ||| since then ||| 0.00309278 0.0075235 2.54593e-06 2.79404e-07 2.718 ||| 0-0 ||| 970 1.17835e+06 +en ||| since they feature in ||| 1 0.605812 8.48644e-07 5.52243e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| since they have done ||| 1 0.0075235 8.48644e-07 3.08843e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| since they have ||| 0.0217391 0.0075235 8.48644e-07 6.77288e-09 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| since they ||| 0.00174216 0.0075235 8.48644e-07 5.66304e-07 2.718 ||| 0-0 ||| 574 1.17835e+06 +en ||| since this makes ||| 0.111111 0.0075235 8.48644e-07 1.90467e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| since this ||| 0.00130378 0.0075235 8.48644e-07 1.12105e-06 2.718 ||| 0-0 ||| 767 1.17835e+06 +en ||| since we ||| 0.00100402 0.0054082 8.48644e-07 3.07211e-07 2.718 ||| 0-1 ||| 996 1.17835e+06 +en ||| since you ||| 0.00621118 0.0075235 8.48644e-07 5.60179e-07 2.718 ||| 0-0 ||| 161 1.17835e+06 +en ||| since ||| 0.00395761 0.0075235 0.00010014 0.0001735 2.718 ||| 0-0 ||| 29816 1.17835e+06 +en ||| sincerely hope that the amendment on ||| 1 0.22993 8.48644e-07 1.89625e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| sine qua non in ||| 0.166667 0.605812 8.48644e-07 5.46934e-18 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| sing in ||| 0.25 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| singing from ||| 0.1 0.0308834 8.48644e-07 1.63619e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| single ' in ||| 1 0.605812 8.48644e-07 2.51725e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| single currency in ||| 0.0238095 0.605812 8.48644e-07 2.74085e-09 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| single entity within ||| 1 0.369196 8.48644e-07 9.50108e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| single market as ||| 0.0714286 0.066968 8.48644e-07 6.45158e-10 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| single market in ||| 0.00471698 0.605812 8.48644e-07 1.65623e-08 2.718 ||| 0-2 ||| 212 1.17835e+06 +en ||| single out ||| 0.00917431 0.0120599 8.48644e-07 8.73643e-08 2.718 ||| 0-1 ||| 109 1.17835e+06 +en ||| single person on ||| 1 0.22993 8.48644e-07 1.69756e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| single reference in ||| 0.5 0.605812 8.48644e-07 6.25118e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| singled out , ||| 0.142857 0.0120599 8.48644e-07 2.36339e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| singled out ||| 0.0133333 0.0120599 8.48644e-07 1.9818e-09 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| singling out ||| 0.0212766 0.0120599 8.48644e-07 7.707e-10 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| sit in ||| 0.0425532 0.605812 3.39458e-06 1.74553e-05 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| sit on the ||| 0.0147059 0.22993 8.48644e-07 1.92723e-07 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| sit on ||| 0.0707071 0.22993 5.94051e-06 3.13923e-06 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| sit up ||| 0.0909091 0.0147069 8.48644e-07 2.6082e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| site in ||| 0.15 0.605812 2.54593e-06 8.82002e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| site on ||| 0.5 0.22993 1.69729e-06 1.58622e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| sited in ||| 0.125 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| sites in ||| 0.0294118 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| sites within ||| 1 0.369196 8.48644e-07 1.71844e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sitting , as ||| 0.0714286 0.066968 8.48644e-07 1.49087e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| sitting at ||| 0.09375 0.321886 2.54593e-06 2.78014e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| sitting here in ||| 0.142857 0.605812 1.69729e-06 6.50798e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| sitting in front ||| 0.111111 0.605812 8.48644e-07 2.58676e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| sitting in ||| 0.107143 0.605812 1.78215e-05 3.20938e-05 2.718 ||| 0-1 ||| 196 1.17835e+06 +en ||| sitting on ||| 0.034965 0.22993 4.24322e-06 5.77186e-06 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| sittings of ||| 0.025641 0.0116562 8.48644e-07 6.40939e-08 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| situ in ||| 0.125 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| situated in ||| 0.0657895 0.605812 4.24322e-06 3.97132e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| situated on ||| 0.0357143 0.22993 8.48644e-07 7.14216e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| situation , Turkey is a country in ||| 1 0.605812 8.48644e-07 8.32357e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| situation , as ||| 0.0243902 0.066968 8.48644e-07 1.10475e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| situation , in ||| 0.0322581 0.605812 8.48644e-07 2.83608e-05 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| situation as ||| 0.00301205 0.066968 8.48644e-07 9.26377e-06 2.718 ||| 0-1 ||| 332 1.17835e+06 +en ||| situation at ||| 0.0384615 0.321886 3.39458e-06 2.0601e-05 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| situation by pretending ||| 0.25 0.0468744 8.48644e-07 3.06681e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| situation by ||| 0.0149254 0.0468744 8.48644e-07 4.38116e-06 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| situation has developed in Latvia . ||| 0.5 0.605812 8.48644e-07 1.2737e-18 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| situation has developed in Latvia ||| 0.5 0.605812 8.48644e-07 4.205e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| situation has developed in ||| 0.333333 0.605812 8.48644e-07 8.41001e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| situation has occurred in ||| 1 0.605812 8.48644e-07 5.2027e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| situation here ||| 0.0263158 0.0855319 8.48644e-07 1.54505e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| situation in Iraq remains precarious ||| 1 0.605812 8.48644e-07 2.94016e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| situation in Iraq remains ||| 0.5 0.605812 8.48644e-07 2.67288e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| situation in Iraq ||| 0.00833333 0.605812 8.48644e-07 2.9965e-09 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| situation in that ||| 0.0123457 0.605812 8.48644e-07 4.00047e-06 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| situation in which either the ||| 0.5 0.605812 8.48644e-07 1.07378e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| situation in which either ||| 0.5 0.605812 8.48644e-07 1.74906e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| situation in which ||| 0.00606796 0.605812 4.24322e-06 2.02016e-06 2.718 ||| 0-1 ||| 824 1.17835e+06 +en ||| situation in ||| 0.0151492 0.605812 8.48644e-05 0.000237817 2.718 ||| 0-1 ||| 6601 1.17835e+06 +en ||| situation is exceptional for this country ||| 1 0.0286209 8.48644e-07 2.63423e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| situation is exceptional for this ||| 1 0.0286209 8.48644e-07 7.31934e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| situation is exceptional for ||| 1 0.0286209 8.48644e-07 1.13278e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| situation is on ||| 0.2 0.22993 8.48644e-07 1.34046e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| situation is there in ||| 0.5 0.605812 8.48644e-07 2.28471e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| situation on ||| 0.0122449 0.22993 2.54593e-06 4.27699e-05 2.718 ||| 0-1 ||| 245 1.17835e+06 +en ||| situation over ||| 0.0909091 0.157937 8.48644e-07 2.06371e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| situation throughout ||| 0.0909091 0.309047 8.48644e-07 1.49391e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| situation we find ourselves in ||| 0.0833333 0.605812 8.48644e-07 2.85894e-13 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| situation when in ||| 1 0.605812 8.48644e-07 1.18885e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| situation when the ||| 0.142857 0.142731 8.48644e-07 1.88224e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| situation when ||| 0.0175439 0.142731 8.48644e-07 3.06595e-06 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| situation where , when ||| 1 0.142731 8.48644e-07 1.10786e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| situation where ||| 0.0105871 0.247783 9.33509e-06 4.38605e-06 2.718 ||| 0-1 ||| 1039 1.17835e+06 +en ||| situation with ||| 0.00373134 0.0535436 8.48644e-07 6.00433e-06 2.718 ||| 0-1 ||| 268 1.17835e+06 +en ||| situations in which attempts ||| 1 0.605812 8.48644e-07 4.2527e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| situations in which ||| 0.0103093 0.605812 8.48644e-07 1.34154e-07 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| situations in ||| 0.00833333 0.605812 1.69729e-06 1.57929e-05 2.718 ||| 0-1 ||| 240 1.17835e+06 +en ||| situations where ||| 0.00520833 0.247783 8.48644e-07 2.91268e-07 2.718 ||| 0-1 ||| 192 1.17835e+06 +en ||| six groups account ||| 0.333333 0.233636 8.48644e-07 3.78589e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| size in ||| 0.166667 0.605812 8.48644e-07 1.72706e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| size of ||| 0.00330579 0.0116562 1.69729e-06 5.10024e-07 2.718 ||| 0-1 ||| 605 1.17835e+06 +en ||| sized enterprises in ||| 1 0.605812 8.48644e-07 1.64579e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| skies ||| 0.00584795 0.0047619 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 171 1.17835e+06 +en ||| skiing indoors , on ||| 0.333333 0.22993 8.48644e-07 1.58463e-15 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| skills in ||| 0.0277778 0.605812 8.48644e-07 5.4952e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| skills needed for types of work ||| 1 0.0286209 8.48644e-07 2.90829e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| skills needed for types of ||| 1 0.0286209 8.48644e-07 4.59446e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| skills needed for types ||| 1 0.0286209 8.48644e-07 8.45128e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| skills needed for ||| 0.333333 0.0286209 8.48644e-07 1.83325e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| skills to learn in ||| 1 0.605812 8.48644e-07 1.70414e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| slam on ||| 0.5 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| slapped in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| slaughtered for the ||| 1 0.0148939 8.48644e-07 1.31836e-10 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| slaughtered in ||| 0.157895 0.605812 2.54593e-06 1.84712e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| slavery in ||| 0.0434783 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| sleep in many parts ||| 0.166667 0.605812 8.48644e-07 4.62113e-14 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| sleep in many ||| 0.166667 0.605812 8.48644e-07 7.92647e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| sleep in ||| 0.0909091 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| sleeping easy in ||| 0.5 0.605812 8.48644e-07 2.44375e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| slid down ||| 0.25 0.0183476 8.48644e-07 8.82e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| slide in ||| 0.333333 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| slide into ||| 0.0555556 0.525896 8.48644e-07 7.96943e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| slightly in ||| 0.0952381 0.605812 1.69729e-06 8.63531e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| slim ' ||| 1 0.0032578 8.48644e-07 1.0916e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| slipped into ||| 0.166667 0.525896 8.48644e-07 4.87021e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| slipping in ||| 0.25 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| slogan written on ||| 1 0.22993 8.48644e-07 1.0381e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| slots in ||| 0.0909091 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| slots on ||| 0.1 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| slow in ||| 0.0192308 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| slow to ||| 0.0416667 0.0247351 2.54593e-06 2.64218e-07 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| small and medium sized enterprises in ||| 0.2 0.605812 8.48644e-07 2.19185e-22 2.718 ||| 0-5 ||| 5 1.17835e+06 +en ||| small businesses have in ||| 0.333333 0.605812 8.48644e-07 1.88188e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| small group ||| 0.00970874 0.0004718 8.48644e-07 7.8141e-10 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| small in ||| 0.0227273 0.605812 8.48644e-07 5.91542e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| small part in helping ||| 1 0.605812 8.48644e-07 2.66579e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| small part in ||| 0.5 0.605812 8.48644e-07 7.05236e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| small projects , in ||| 1 0.605812 8.48644e-07 3.47782e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| small room next to our ||| 0.25 0.0247351 8.48644e-07 1.91887e-17 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| small room next to ||| 0.25 0.0247351 8.48644e-07 1.39109e-14 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| small steps at ||| 0.5 0.321886 8.48644e-07 3.02331e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| small to ||| 0.0192308 0.0247351 8.48644e-07 3.60067e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| small ||| 6.30955e-05 5.84e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 15849 1.17835e+06 +en ||| smaller territories , and in ||| 1 0.605812 8.48644e-07 3.88079e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| smart to take ||| 0.333333 0.0074151 8.48644e-07 8.31997e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| smashed over ||| 1 0.157937 8.48644e-07 1.60288e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| smoke everywhere in ||| 1 0.605812 8.48644e-07 5.00848e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| smoke in ||| 0.0769231 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| smoke-free environments in ||| 0.5 0.605812 8.48644e-07 7.11143e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| smooth flow of ||| 0.0588235 0.0116562 8.48644e-07 1.93918e-12 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| smoothly in ||| 0.142857 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| smoothly with ||| 0.5 0.0535436 8.48644e-07 1.00267e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| snapshot interviews on ||| 0.5 0.22993 8.48644e-07 3.65413e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| so , at ||| 0.0714286 0.321886 8.48644e-07 1.08274e-05 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| so , but also in terms of ||| 1 0.605812 8.48644e-07 2.57325e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| so , but also in terms ||| 1 0.605812 8.48644e-07 4.73337e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| so , but also in ||| 1 0.605812 8.48644e-07 4.31247e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| so , in ||| 0.0594595 0.605812 9.33509e-06 0.000124991 2.718 ||| 0-2 ||| 185 1.17835e+06 +en ||| so , there is , in ||| 1 0.605812 8.48644e-07 1.432e-09 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| so , to put it ||| 0.333333 0.0080472 8.48644e-07 7.31371e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| so , to ||| 0.015625 0.0247351 8.48644e-07 7.60814e-06 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| so , under ||| 0.125 0.205566 8.48644e-07 1.53054e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| so , we in ||| 0.333333 0.605812 8.48644e-07 1.41894e-06 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| so , ||| 0.00127356 0.0087276 4.24322e-06 8.12244e-05 2.718 ||| 0-0 ||| 3926 1.17835e+06 +en ||| so - in ||| 0.25 0.605812 8.48644e-07 3.95356e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| so - ||| 0.00961538 0.0087276 8.48644e-07 2.56918e-06 2.718 ||| 0-0 ||| 104 1.17835e+06 +en ||| so again in ||| 0.166667 0.605812 8.48644e-07 6.06119e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| so ago ||| 0.0909091 0.0087276 8.48644e-07 7.49891e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| so as far as ||| 0.0769231 0.066968 8.48644e-07 2.84424e-10 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| so as to ensure ||| 0.00488998 0.066968 1.69729e-06 1.62672e-09 2.718 ||| 0-1 ||| 409 1.17835e+06 +en ||| so as to ||| 0.00118718 0.066968 2.54593e-06 3.62783e-06 2.718 ||| 0-1 ||| 2527 1.17835e+06 +en ||| so as ||| 0.0100625 0.066968 2.46107e-05 4.08271e-05 2.718 ||| 0-1 ||| 2882 1.17835e+06 +en ||| so at ||| 0.0206186 0.321886 1.69729e-06 9.07925e-05 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| so by ||| 0.04 0.0468744 2.54593e-06 1.93086e-05 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| so closely in ||| 0.5 0.605812 8.48644e-07 9.27573e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| so do something ||| 0.333333 0.0087276 8.48644e-07 1.29507e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| so do ||| 0.0105263 0.0087276 8.48644e-07 2.33978e-06 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| so during ||| 0.1 0.226251 8.48644e-07 6.56238e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| so early on ||| 0.166667 0.22993 8.48644e-07 1.27611e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| so easily turn into ||| 1 0.525896 8.48644e-07 4.53977e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| so enthusiastically made at ||| 1 0.321886 8.48644e-07 6.08615e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| so far , ||| 0.00117925 0.0087276 8.48644e-07 5.54519e-08 2.718 ||| 0-0 ||| 848 1.17835e+06 +en ||| so far as ||| 0.00911854 0.066968 5.09187e-06 2.78727e-08 2.718 ||| 0-2 ||| 658 1.17835e+06 +en ||| so far in ||| 0.0254237 0.605812 2.54593e-06 7.15541e-07 2.718 ||| 0-2 ||| 118 1.17835e+06 +en ||| so far on ||| 0.0454545 0.22993 8.48644e-07 1.28686e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| so far to ||| 0.0181818 0.0247351 8.48644e-07 4.35545e-08 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| so far ||| 0.00106451 0.0087276 4.24322e-06 4.64987e-07 2.718 ||| 0-0 ||| 4697 1.17835e+06 +en ||| so for ||| 0.00666667 0.0286209 8.48644e-07 2.61134e-05 2.718 ||| 0-1 ||| 150 1.17835e+06 +en ||| so forth - ||| 0.2 0.0087276 8.48644e-07 5.18974e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| so forth ||| 0.00625 0.0087276 8.48644e-07 1.37582e-08 2.718 ||| 0-0 ||| 160 1.17835e+06 +en ||| so given today ||| 1 0.0398284 8.48644e-07 1.8792e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| so happens that , in ||| 0.5 0.605812 8.48644e-07 1.25523e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| so happens that in ||| 1 0.605812 8.48644e-07 1.05256e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| so hard on ||| 0.142857 0.22993 8.48644e-07 1.98108e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| so in a ||| 0.04 0.605812 8.48644e-07 4.64581e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| so in relation to ||| 0.25 0.605812 8.48644e-07 2.26592e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| so in relation ||| 0.5 0.605812 8.48644e-07 2.55004e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| so in the ||| 0.00757576 0.605812 8.48644e-07 6.4345e-05 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| so in view ||| 0.0909091 0.605812 8.48644e-07 9.46753e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| so in ||| 0.214145 0.605812 9.25022e-05 0.0010481 2.718 ||| 0-1 ||| 509 1.17835e+06 +en ||| so it is , for example , ||| 1 0.0286209 8.48644e-07 6.02532e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| so it is , for example ||| 1 0.0286209 8.48644e-07 5.05248e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| so it is , for ||| 1 0.0286209 8.48644e-07 1.73565e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| so it is in ||| 0.25 0.605812 1.69729e-06 5.84156e-07 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| so it is ||| 0.00104493 0.0087276 8.48644e-07 3.79608e-07 2.718 ||| 0-0 ||| 957 1.17835e+06 +en ||| so it ||| 0.000716846 0.0087276 8.48644e-07 1.21121e-05 2.718 ||| 0-0 ||| 1395 1.17835e+06 +en ||| so kind as to ||| 0.0277778 0.066968 8.48644e-07 1.77038e-09 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| so kind as ||| 0.0222222 0.066968 8.48644e-07 1.99236e-08 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| so much about ||| 0.0238095 0.0401564 8.48644e-07 6.52926e-09 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| so much concern at ||| 1 0.321886 8.48644e-07 1.21657e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| so much grief for ||| 1 0.0286209 8.48644e-07 1.23187e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| so much in the ||| 0.0625 0.605812 8.48644e-07 6.45831e-08 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| so much in ||| 0.0736842 0.605812 5.94051e-06 1.05198e-06 2.718 ||| 0-2 ||| 95 1.17835e+06 +en ||| so much on ||| 0.02 0.22993 8.48644e-07 1.89192e-07 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| so much rhetoric ||| 0.166667 0.0068337 8.48644e-07 9.3402e-12 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| so much to ||| 0.0103093 0.0247351 8.48644e-07 6.40335e-08 2.718 ||| 0-2 ||| 97 1.17835e+06 +en ||| so much ||| 0.00127714 0.0087276 2.54593e-06 6.8362e-07 2.718 ||| 0-0 ||| 2349 1.17835e+06 +en ||| so nicely put in ||| 1 0.605812 8.48644e-07 2.8891e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| so on , but it ||| 1 0.22993 8.48644e-07 2.73187e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| so on , but ||| 0.0263158 0.22993 8.48644e-07 1.53621e-08 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| so on , ||| 0.00469484 0.22993 8.48644e-07 2.24789e-05 2.718 ||| 0-1 ||| 213 1.17835e+06 +en ||| so on - ||| 0.0238095 0.22993 8.48644e-07 7.11022e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| so on . ||| 0.00238095 0.22993 8.48644e-07 5.70951e-07 2.718 ||| 0-1 ||| 420 1.17835e+06 +en ||| so on should ||| 0.2 0.22993 8.48644e-07 8.35221e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| so on ||| 0.024565 0.22993 2.03675e-05 0.000188495 2.718 ||| 0-1 ||| 977 1.17835e+06 +en ||| so only at ||| 1 0.321886 8.48644e-07 1.01061e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| so over ||| 0.166667 0.157937 8.48644e-07 9.09514e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| so prominently in ||| 0.25 0.605812 8.48644e-07 2.62026e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| so regarding ||| 1 0.140669 8.48644e-07 4.29654e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| so successful in ||| 0.25 0.605812 8.48644e-07 5.77506e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| so than ||| 0.0117647 0.0087276 8.48644e-07 2.08076e-07 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| so that a ||| 0.00819672 0.0087276 8.48644e-07 5.07849e-07 2.718 ||| 0-0 ||| 122 1.17835e+06 +en ||| so that at ||| 0.0277778 0.321886 8.48644e-07 1.52728e-06 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| so that in ||| 0.0100503 0.605812 1.69729e-06 1.76308e-05 2.718 ||| 0-2 ||| 199 1.17835e+06 +en ||| so that it is ||| 0.00505051 0.0087276 8.48644e-07 6.38561e-09 2.718 ||| 0-0 ||| 198 1.17835e+06 +en ||| so that it ||| 0.0015674 0.0087276 8.48644e-07 2.03746e-07 2.718 ||| 0-0 ||| 638 1.17835e+06 +en ||| so that the ||| 0.00034638 0.0011669 8.48644e-07 1.09374e-07 2.718 ||| 0-2 ||| 2887 1.17835e+06 +en ||| so that there is a ||| 0.0232558 0.0117359 8.48644e-07 5.94795e-11 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| so that there is ||| 0.00675676 0.0117359 8.48644e-07 1.34187e-09 2.718 ||| 0-2 ||| 148 1.17835e+06 +en ||| so that there ||| 0.00657895 0.0117359 8.48644e-07 4.2815e-08 2.718 ||| 0-2 ||| 152 1.17835e+06 +en ||| so that we can ||| 0.000459348 0.0054082 8.48644e-07 2.57086e-10 2.718 ||| 0-2 ||| 2177 1.17835e+06 +en ||| so that we ||| 0.000820345 0.0054082 8.48644e-07 8.64357e-08 2.718 ||| 0-2 ||| 1219 1.17835e+06 +en ||| so that ||| 0.000277123 0.0087276 5.09187e-06 1.14572e-05 2.718 ||| 0-0 ||| 21651 1.17835e+06 +en ||| so there you are . it is ||| 1 0.0087276 8.48644e-07 1.72662e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| so there you are . it ||| 1 0.0087276 8.48644e-07 5.50914e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| so there you are . ||| 1 0.0087276 8.48644e-07 3.09795e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| so there you are ||| 1 0.0087276 8.48644e-07 1.02276e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| so there you ||| 0.333333 0.0087276 8.48644e-07 6.7408e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| so there ||| 0.00275482 0.0087276 8.48644e-07 2.08778e-06 2.718 ||| 0-0 ||| 363 1.17835e+06 +en ||| so to a ||| 0.25 0.0167313 1.69729e-06 8.48598e-07 2.718 ||| 0-0 0-1 ||| 8 1.17835e+06 +en ||| so to speak , in ||| 0.25 0.605812 8.48644e-07 1.50271e-09 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| so to speak , ||| 0.00495049 0.0247351 8.48644e-07 1.02938e-09 2.718 ||| 0-1 ||| 202 1.17835e+06 +en ||| so to speak ||| 0.00550964 0.0247351 1.69729e-06 8.63179e-09 2.718 ||| 0-1 ||| 363 1.17835e+06 +en ||| so to ||| 0.02 0.0167313 5.09187e-06 1.91446e-05 2.718 ||| 0-0 0-1 ||| 300 1.17835e+06 +en ||| so too ||| 0.00684932 0.0087276 8.48644e-07 9.26977e-07 2.718 ||| 0-0 ||| 146 1.17835e+06 +en ||| so under ||| 0.142857 0.205566 1.69729e-06 1.28342e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| so well in ||| 0.0555556 0.605812 8.48644e-07 1.66187e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| so well on ||| 0.5 0.22993 2.54593e-06 2.98878e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| so well ||| 0.00315457 0.0087276 8.48644e-07 1.07995e-06 2.718 ||| 0-0 ||| 317 1.17835e+06 +en ||| so when it ||| 0.25 0.142731 8.48644e-07 2.4029e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| so when ||| 0.00613497 0.142731 8.48644e-07 1.35122e-05 2.718 ||| 0-1 ||| 163 1.17835e+06 +en ||| so with regard to ||| 0.111111 0.0535436 8.48644e-07 1.60106e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| so with regard ||| 0.166667 0.0535436 8.48644e-07 1.80181e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| so with ||| 0.0283019 0.0535436 2.54593e-06 2.64622e-05 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| so within ||| 0.0714286 0.369196 8.48644e-07 2.51635e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| so ||| 0.0038052 0.0087276 0.00023168 0.0006811 2.718 ||| 0-0 ||| 71744 1.17835e+06 +en ||| social and ||| 0.000193761 0.0010182 8.48644e-07 9.53149e-08 2.718 ||| 0-1 ||| 5161 1.17835e+06 +en ||| social cohesion in ||| 0.015873 0.605812 8.48644e-07 7.39381e-10 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| social partners in ||| 0.0181818 0.605812 1.69729e-06 1.22117e-09 2.718 ||| 0-2 ||| 110 1.17835e+06 +en ||| social solidarity in ||| 0.0769231 0.605812 8.48644e-07 1.25456e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| socially ||| 0.000857633 0.0101523 8.48644e-07 8.2e-06 2.718 ||| 0-0 ||| 1166 1.17835e+06 +en ||| society at ||| 0.0166667 0.321886 8.48644e-07 2.31612e-06 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| society based on the ||| 0.142857 0.22993 8.48644e-07 6.92545e-11 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| society based on ||| 0.0322581 0.22993 8.48644e-07 1.12807e-09 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| society in which ||| 0.0133333 0.605812 8.48644e-07 2.27121e-07 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| society in ||| 0.00683371 0.605812 2.54593e-06 2.67371e-05 2.718 ||| 0-1 ||| 439 1.17835e+06 +en ||| society would in ||| 1 0.605812 8.48644e-07 1.56912e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| soft PVC not only in ||| 1 0.605812 8.48644e-07 1.05644e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| software in ||| 0.0769231 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| software on ||| 0.5 0.22993 8.48644e-07 5.97948e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| soil where ||| 0.5 0.247783 8.48644e-07 6.13195e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| sold in ||| 0.00813008 0.605812 8.48644e-07 6.46494e-06 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| sold into slavery in ||| 0.5 0.605812 8.48644e-07 1.19476e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| sold over ||| 0.166667 0.157937 8.48644e-07 5.61008e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| soldiers into ||| 0.5 0.525896 8.48644e-07 1.04045e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| solely at keeping certain ||| 0.25 0.321886 8.48644e-07 1.47227e-14 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| solely at keeping ||| 0.25 0.321886 8.48644e-07 5.16586e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| solely at ||| 0.0172414 0.321886 8.48644e-07 8.80044e-07 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| solely in the ||| 0.0285714 0.605812 8.48644e-07 6.23691e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| solely in ||| 0.0347826 0.605812 3.39458e-06 1.01592e-05 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| solely on the ||| 0.00689655 0.22993 8.48644e-07 1.12167e-07 2.718 ||| 0-1 ||| 145 1.17835e+06 +en ||| solely on ||| 0.0103896 0.22993 3.39458e-06 1.82706e-06 2.718 ||| 0-1 ||| 385 1.17835e+06 +en ||| solely where or because ||| 1 0.247783 8.48644e-07 7.03909e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| solely where or ||| 1 0.247783 8.48644e-07 2.14215e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| solely where ||| 1 0.247783 8.48644e-07 1.87365e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| solid in ||| 0.125 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| solidarity in ||| 0.00578035 0.605812 1.69729e-06 1.21448e-05 2.718 ||| 0-1 ||| 346 1.17835e+06 +en ||| solution across ||| 0.5 0.274879 8.48644e-07 1.39692e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| solution for ||| 0.00244499 0.0286209 8.48644e-07 7.82354e-07 2.718 ||| 0-1 ||| 409 1.17835e+06 +en ||| solution in ||| 0.0220994 0.605812 3.39458e-06 3.14011e-05 2.718 ||| 0-1 ||| 181 1.17835e+06 +en ||| solution through ||| 0.0454545 0.0366102 8.48644e-07 6.39472e-08 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| solutions at ||| 0.037037 0.321886 8.48644e-07 7.64038e-07 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| solutions with regard to ||| 0.142857 0.0247351 8.48644e-07 2.33753e-12 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| solved at ||| 0.0555556 0.321886 8.48644e-07 4.32022e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| solvents in ||| 0.125 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| some Member States in ||| 0.0434783 0.605812 8.48644e-07 1.23693e-10 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| some are studying at ||| 0.142857 0.321886 8.48644e-07 2.3801e-12 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| some cases will be implemented in ||| 1 0.605812 8.48644e-07 8.87016e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| some colleagues in ||| 0.0625 0.605812 8.48644e-07 1.12173e-08 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| some compromises as part ||| 0.25 0.066968 8.48644e-07 1.26145e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| some compromises as ||| 0.25 0.066968 8.48644e-07 1.05809e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| some date in ||| 1 0.605812 8.48644e-07 5.14085e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| some detail in committee ||| 1 0.605812 8.48644e-07 1.98951e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| some detail in ||| 0.166667 0.605812 8.48644e-07 2.57042e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| some development in ||| 1 0.605812 8.48644e-07 8.27465e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| some examples ||| 0.00684932 0.0009939 8.48644e-07 6.5913e-10 2.718 ||| 0-0 ||| 146 1.17835e+06 +en ||| some extent , in ||| 0.0769231 0.605812 8.48644e-07 1.15296e-08 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| some extent fall within ||| 0.1 0.369196 8.48644e-07 2.22134e-13 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| some extent in ||| 0.030303 0.605812 8.48644e-07 9.66801e-08 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| some gains in terms ||| 0.5 0.605812 8.48644e-07 4.74817e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| some gains in ||| 0.333333 0.605812 8.48644e-07 4.32596e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| some improvement in ||| 0.0588235 0.605812 8.48644e-07 1.05131e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| some in ||| 0.0263158 0.605812 3.39458e-06 0.000503018 2.718 ||| 0-1 ||| 152 1.17835e+06 +en ||| some influence over ||| 0.125 0.157937 8.48644e-07 1.49284e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| some members of ||| 0.0135135 0.00613095 8.48644e-07 8.02158e-11 2.718 ||| 0-1 0-2 ||| 74 1.17835e+06 +en ||| some of the responsibility and emphasis on ||| 1 0.22993 8.48644e-07 2.23209e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| some of these pictures could be ||| 1 0.0116562 8.48644e-07 4.96347e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| some of these pictures could ||| 1 0.0116562 8.48644e-07 2.73878e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| some of these pictures ||| 1 0.0116562 8.48644e-07 3.85147e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| some of these ||| 0.00118203 0.0116562 8.48644e-07 1.54059e-08 2.718 ||| 0-1 ||| 846 1.17835e+06 +en ||| some of those in ||| 0.2 0.605812 8.48644e-07 1.98013e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| some of ||| 0.000789543 0.0116562 7.6378e-06 1.48548e-05 2.718 ||| 0-1 ||| 11399 1.17835e+06 +en ||| some people are ||| 0.0114943 0.0006429 8.48644e-07 1.5523e-10 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| some people in ||| 0.0147059 0.605812 8.48644e-07 4.42757e-07 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| some point in the ||| 0.0227273 0.605812 8.48644e-07 2.70149e-08 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| some point in time ||| 0.2 0.605812 8.48644e-07 7.22414e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| some point in ||| 0.214286 0.605812 1.01837e-05 4.4004e-07 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| some progress in becoming lighter on our ||| 1 0.605812 8.48644e-07 8.80834e-23 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| some progress in becoming lighter on ||| 1 0.605812 8.48644e-07 6.38563e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| some progress in becoming lighter ||| 1 0.605812 8.48644e-07 9.54361e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| some progress in becoming ||| 1 0.605812 8.48644e-07 6.81687e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| some progress in ||| 0.0338983 0.605812 1.69729e-06 6.62475e-08 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| some quarters in ||| 0.5 0.605812 8.48644e-07 5.78471e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| some reference to ||| 0.0588235 0.0247351 8.48644e-07 2.61175e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| some respect in ||| 1 0.605812 8.48644e-07 2.17606e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| some right here ||| 1 0.0855319 8.48644e-07 2.10754e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| some situations in ||| 0.5 0.605812 8.48644e-07 1.72032e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| some space in ||| 0.5 0.605812 8.48644e-07 2.0825e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| some stage in ||| 0.0769231 0.605812 8.48644e-07 7.53018e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| some than in ||| 0.25 0.605812 8.48644e-07 1.53672e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| some thinking ||| 0.25 0.0455702 8.48644e-07 1.59365e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| some time during ||| 0.111111 0.226251 8.48644e-07 5.17052e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| some time in ||| 0.116883 0.605812 7.6378e-06 8.25805e-07 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| some time into ||| 1 0.525896 8.48644e-07 3.95882e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| some truth in ||| 0.111111 0.605812 8.48644e-07 1.23239e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| some way towards ||| 0.0344828 0.0616136 1.69729e-06 2.33917e-09 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| some ||| 0.000535916 0.0009939 2.46107e-05 3.81e-05 2.718 ||| 0-0 ||| 54113 1.17835e+06 +en ||| somebody in ||| 0.0666667 0.605812 8.48644e-07 3.83278e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| somebody over ||| 1 0.157937 8.48644e-07 3.32598e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| somehow find themselves in ||| 1 0.605812 8.48644e-07 9.04974e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| somehow ||| 0.012987 0.0619919 5.94051e-06 4.15e-05 2.718 ||| 0-0 ||| 539 1.17835e+06 +en ||| someone else another as ||| 1 0.066968 8.48644e-07 2.79928e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| someone else in ||| 0.2 0.605812 8.48644e-07 2.98061e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| someone in ||| 0.0208333 0.605812 8.48644e-07 2.52594e-05 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| someone transferred to ||| 1 0.0247351 8.48644e-07 3.32105e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| something about ||| 0.0011236 0.0401564 8.48644e-07 1.58639e-06 2.718 ||| 0-1 ||| 890 1.17835e+06 +en ||| something along ||| 0.0869565 0.155535 1.69729e-06 4.40309e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| something disturbing in ||| 1 0.605812 8.48644e-07 1.38022e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| something else on ||| 0.0769231 0.22993 8.48644e-07 5.42414e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| something established at ||| 1 0.321886 8.48644e-07 3.31452e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| something for ||| 0.00352113 0.0286209 8.48644e-07 6.36813e-06 2.718 ||| 0-1 ||| 284 1.17835e+06 +en ||| something in common with ||| 0.142857 0.605812 8.48644e-07 3.77548e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| something in common ||| 0.0625 0.605812 8.48644e-07 5.90426e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| something in the ||| 0.0222222 0.605812 8.48644e-07 1.56915e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| something in which ||| 0.047619 0.605812 8.48644e-07 2.17118e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| something in ||| 0.0478261 0.605812 9.33509e-06 0.000255596 2.718 ||| 0-1 ||| 230 1.17835e+06 +en ||| something into the ring related ||| 0.5 0.525896 8.48644e-07 2.46356e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| something into the ring ||| 0.5 0.525896 8.48644e-07 3.76117e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| something into the ||| 0.333333 0.525896 8.48644e-07 7.52233e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| something into ||| 0.125 0.525896 8.48644e-07 1.2253e-05 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| something like ||| 0.00265252 0.0004422 8.48644e-07 1.0833e-08 2.718 ||| 0-0 ||| 377 1.17835e+06 +en ||| something of ||| 0.00674157 0.0116562 2.54593e-06 7.54808e-06 2.718 ||| 0-1 ||| 445 1.17835e+06 +en ||| something on which we ||| 0.0769231 0.22993 8.48644e-07 4.43277e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| something on which ||| 0.0166667 0.22993 8.48644e-07 3.90474e-07 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| something on ||| 0.0310881 0.22993 5.09187e-06 4.59673e-05 2.718 ||| 0-1 ||| 193 1.17835e+06 +en ||| something over ||| 0.133333 0.157937 1.69729e-06 2.21799e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| something special in ||| 0.333333 0.605812 8.48644e-07 2.1879e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| something suggested by Germany ||| 0.166667 0.0468744 8.48644e-07 2.41471e-15 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| something suggested by ||| 0.166667 0.0468744 8.48644e-07 9.32319e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| something that , in ||| 0.142857 0.605812 8.48644e-07 5.12739e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| something that goes without saying in ||| 1 0.605812 8.48644e-07 2.33462e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| something that we in ||| 0.0769231 0.605812 8.48644e-07 4.88096e-08 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| something to be ||| 0.00980392 0.0247351 8.48644e-07 2.81955e-07 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| something to do with the ||| 0.05 0.0535436 8.48644e-07 1.20934e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| something to do with ||| 0.0138889 0.0535436 8.48644e-07 1.96987e-09 2.718 ||| 0-3 ||| 72 1.17835e+06 +en ||| something to which ||| 0.0105263 0.0247351 8.48644e-07 1.32159e-07 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| something to ||| 0.00484262 0.0247351 3.39458e-06 1.55579e-05 2.718 ||| 0-1 ||| 826 1.17835e+06 +en ||| something upon ||| 0.333333 0.114601 8.48644e-07 4.89239e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| something which is advocated in ||| 1 0.605812 8.48644e-07 5.64793e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| something which is very important in ||| 0.5 0.605812 8.48644e-07 9.08252e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| something which ||| 0.000615385 0.0004422 8.48644e-07 5.18171e-08 2.718 ||| 0-0 ||| 1625 1.17835e+06 +en ||| something ||| 0.000312793 0.0004422 4.24322e-06 6.1e-06 2.718 ||| 0-0 ||| 15985 1.17835e+06 +en ||| sometime , ||| 0.142857 0.134454 8.48644e-07 1.29988e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| sometime in ||| 0.333333 0.605812 2.54593e-06 1.01592e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| sometime ||| 0.0444444 0.134454 1.69729e-06 1.09e-05 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| sometimes claim ||| 0.5 0.105636 8.48644e-07 3.20186e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| sometimes described as push ||| 0.5 0.066968 8.48644e-07 1.25558e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| sometimes described as ||| 0.5 0.066968 8.48644e-07 4.53277e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| sometimes faced with ||| 0.5 0.0535436 8.48644e-07 4.16975e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| sometimes had ||| 0.0833333 0.105636 8.48644e-07 6.82315e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| sometimes in ||| 0.0298507 0.605812 1.69729e-06 2.60906e-05 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| sometimes look very critically at Belarus ||| 1 0.321886 8.48644e-07 6.81981e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| sometimes look very critically at ||| 1 0.321886 8.48644e-07 5.73094e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| sometimes needed ||| 0.25 0.105636 8.48644e-07 9.10252e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| sometimes on ||| 0.047619 0.22993 8.48644e-07 4.69223e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| sometimes seemed as ||| 0.333333 0.066968 8.48644e-07 1.16876e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| sometimes to the point of death ||| 1 0.0247351 8.48644e-07 2.51775e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sometimes to the point of ||| 1 0.0247351 8.48644e-07 4.63675e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sometimes to the point ||| 1 0.0247351 8.48644e-07 8.52908e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sometimes to the ||| 0.166667 0.0247351 8.48644e-07 9.74975e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| sometimes to ||| 0.0333333 0.0247351 8.48644e-07 1.58812e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| sometimes ||| 0.00265428 0.105636 1.35783e-05 0.0006798 2.718 ||| 0-0 ||| 6028 1.17835e+06 +en ||| somewhat at ||| 0.166667 0.321886 1.69729e-06 2.33212e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| somewhat lacking in ||| 0.2 0.605812 8.48644e-07 4.65748e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| somewhat ||| 0.00134469 0.0041505 2.54593e-06 1.02e-05 2.718 ||| 0-0 ||| 2231 1.17835e+06 +en ||| somewhere else . in ||| 1 0.605812 8.48644e-07 3.38354e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| somewhere in the region ||| 0.2 0.605812 8.48644e-07 5.68962e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| somewhere in the ||| 0.0217391 0.605812 8.48644e-07 5.81166e-07 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| somewhere in ||| 0.0434783 0.605812 3.39458e-06 9.46651e-06 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| somewhere inside ||| 0.5 0.194113 8.48644e-07 2.0252e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| somewhere on ||| 0.333333 0.22993 1.69729e-06 1.70249e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| somewhere out in ||| 1 0.605812 8.48644e-07 3.62605e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| somewhere that is ||| 0.25 0.194113 8.48644e-07 8.75164e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| somewhere that ||| 0.111111 0.194113 8.48644e-07 2.79239e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| somewhere ||| 0.0211082 0.194113 6.78915e-06 0.000166 2.718 ||| 0-0 ||| 379 1.17835e+06 +en ||| sonar in ||| 0.333333 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| soon - on ||| 1 0.22993 8.48644e-07 2.88519e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| soon as we in ||| 1 0.605812 8.48644e-07 4.92682e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| soon as ||| 0.00371978 0.066968 5.09187e-06 1.65669e-06 2.718 ||| 0-1 ||| 1613 1.17835e+06 +en ||| soon be published ||| 0.125 0.0178344 8.48644e-07 4.61933e-11 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| soon be up and ||| 0.333333 0.0010182 8.48644e-07 5.2525e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| soon be ||| 0.00660066 0.0178344 1.69729e-06 2.07145e-06 2.718 ||| 0-0 ||| 303 1.17835e+06 +en ||| soon became very ||| 0.333333 0.137638 8.48644e-07 8.13332e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| soon became ||| 0.25 0.137638 8.48644e-07 2.3375e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| soon find its way ||| 1 0.0178344 8.48644e-07 1.16856e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| soon find its ||| 1 0.0178344 8.48644e-07 5.42105e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| soon find ||| 0.0666667 0.0178344 8.48644e-07 3.80505e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| soon going to see signs ||| 1 0.0178344 8.48644e-07 9.49271e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| soon going to see ||| 1 0.0178344 8.48644e-07 6.12433e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| soon going to ||| 1 0.0178344 8.48644e-07 8.69193e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| soon going ||| 0.25 0.0178344 8.48644e-07 9.78179e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| soon in ||| 0.0384615 0.605812 8.48644e-07 4.253e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| soon may ||| 1 0.0178344 8.48644e-07 8.56336e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| soon strikes ||| 1 0.0178344 8.48644e-07 1.18872e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| soon to take place in ||| 0.5 0.605812 8.48644e-07 9.15705e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| soon ||| 0.00247015 0.0178344 1.52756e-05 0.0001143 2.718 ||| 0-0 ||| 7287 1.17835e+06 +en ||| sooner or ||| 0.00338983 0.0113744 8.48644e-07 9.37506e-09 2.718 ||| 0-0 ||| 295 1.17835e+06 +en ||| sooner the better , in fact . ||| 1 0.605812 8.48644e-07 2.39539e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| sooner the better , in fact ||| 1 0.605812 8.48644e-07 7.90819e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| sooner the better , in ||| 1 0.605812 8.48644e-07 2.69969e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| sooner we do ||| 1 0.0113744 8.48644e-07 3.19788e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| sooner we ||| 0.5 0.0113744 8.48644e-07 9.30889e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| sooner ||| 0.00322061 0.0113744 1.69729e-06 8.2e-06 2.718 ||| 0-0 ||| 621 1.17835e+06 +en ||| sorrow in ||| 0.166667 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| sort itself out in ||| 1 0.605812 8.48644e-07 1.91838e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| sort of advertising especially in ||| 1 0.605812 8.48644e-07 2.77037e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| sort of comment really ||| 1 0.0116562 8.48644e-07 4.8241e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sort of comment ||| 1 0.0116562 8.48644e-07 9.95891e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sort of ||| 0.000792079 0.0116562 1.69729e-06 2.17919e-06 2.718 ||| 0-1 ||| 2525 1.17835e+06 +en ||| sort on ||| 0.25 0.22993 8.48644e-07 1.32711e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| sort out ||| 0.00434783 0.0120599 8.48644e-07 8.79699e-08 2.718 ||| 0-1 ||| 230 1.17835e+06 +en ||| sort was involved in ||| 1 0.605812 8.48644e-07 7.99463e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| sorted by ||| 0.5 0.0468744 8.48644e-07 4.93412e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| sorts of ||| 0.00280112 0.0116562 8.48644e-07 2.11374e-07 2.718 ||| 0-1 ||| 357 1.17835e+06 +en ||| sought asylum in ||| 0.166667 0.605812 8.48644e-07 2.52853e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| sought in ||| 0.0851064 0.605812 3.39458e-06 1.49617e-05 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| sought on ||| 0.1 0.22993 8.48644e-07 2.69077e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| sought to achieve in ||| 1 0.605812 8.48644e-07 3.03784e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| sought to divide it into ||| 1 0.525896 8.48644e-07 6.57363e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| sought to ||| 0.00176991 0.0247351 8.48644e-07 9.10709e-07 2.718 ||| 0-1 ||| 565 1.17835e+06 +en ||| sought within ||| 0.166667 0.369196 8.48644e-07 3.59209e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| soul believes in ||| 1 0.605812 8.48644e-07 2.85935e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| soul of Europe ||| 0.04 0.0116562 8.48644e-07 2.96714e-11 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| soul of ||| 0.0243902 0.0116562 8.48644e-07 5.86391e-08 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| sound of ||| 0.0384615 0.0116562 8.48644e-07 8.10038e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| sound ||| 0.000316957 0.0002465 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 3155 1.17835e+06 +en ||| source in ||| 0.0714286 0.605812 8.48644e-07 2.94155e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| source of ||| 0.00167691 0.0116562 2.54593e-06 8.68677e-07 2.718 ||| 0-1 ||| 1789 1.17835e+06 +en ||| sourced from developing countries . in ||| 1 0.605812 8.48644e-07 3.25093e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| sources ? in ||| 1 0.605812 8.48644e-07 2.78582e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sources of energy ||| 0.00271003 0.0116562 8.48644e-07 4.27952e-11 2.718 ||| 0-1 ||| 369 1.17835e+06 +en ||| sources of ||| 0.00180995 0.0116562 1.69729e-06 4.81386e-07 2.718 ||| 0-1 ||| 1105 1.17835e+06 +en ||| sourcing from ||| 1 0.0308834 8.48644e-07 1.52204e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sovereign matter for the ||| 1 0.0286209 8.48644e-07 4.47015e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sovereign matter for ||| 0.333333 0.0286209 8.48644e-07 7.28135e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| space in ||| 0.0333333 0.605812 8.48644e-07 1.91177e-05 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| space of ||| 0.003367 0.0116562 8.48644e-07 5.64572e-07 2.718 ||| 0-1 ||| 297 1.17835e+06 +en ||| space that we have here in ||| 0.5 0.605812 8.48644e-07 8.85394e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| space where ||| 0.111111 0.247783 8.48644e-07 3.52587e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| space-based intelligence ||| 0.111111 0.318182 8.48644e-07 2.784e-11 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| space-based ||| 0.0416667 0.318182 8.48644e-07 4.8e-06 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| spare parts for ||| 0.04 0.0286209 8.48644e-07 6.77461e-12 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| sparked off by ||| 0.0666667 0.0468744 8.48644e-07 6.2323e-12 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| sparked unrest there ||| 1 0.0117359 8.48644e-07 5.0463e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| spatial planning with ||| 1 0.0535436 8.48644e-07 2.29331e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| speak , in ||| 0.333333 0.605812 1.69729e-06 7.45091e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| speak for themselves . ||| 0.012987 0.0286209 8.48644e-07 2.02608e-12 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| speak for themselves ||| 0.00675676 0.0286209 8.48644e-07 6.68894e-10 2.718 ||| 0-1 ||| 148 1.17835e+06 +en ||| speak for ||| 0.00257732 0.0286209 8.48644e-07 1.55665e-06 2.718 ||| 0-1 ||| 388 1.17835e+06 +en ||| speak here on the basis of ||| 1 0.22993 8.48644e-07 4.51561e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| speak here on the basis ||| 1 0.22993 8.48644e-07 8.30625e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| speak here on the ||| 1 0.22993 8.48644e-07 1.39883e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| speak here on ||| 0.333333 0.22993 8.48644e-07 2.27853e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| speak in ||| 0.0115473 0.605812 4.24322e-06 6.2479e-05 2.718 ||| 0-1 ||| 433 1.17835e+06 +en ||| speak on behalf ||| 0.00613497 0.22993 8.48644e-07 3.57881e-09 2.718 ||| 0-1 ||| 163 1.17835e+06 +en ||| speak on ||| 0.0223881 0.22993 1.01837e-05 1.12364e-05 2.718 ||| 0-1 ||| 536 1.17835e+06 +en ||| speak out , at ||| 1 0.321886 8.48644e-07 2.47229e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| speak out ||| 0.003125 0.0120599 8.48644e-07 7.44827e-08 2.718 ||| 0-1 ||| 320 1.17835e+06 +en ||| speak up in ||| 0.142857 0.605812 8.48644e-07 2.13085e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| speak up ||| 0.010989 0.0147069 8.48644e-07 9.3357e-08 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| speak with a ||| 0.0119048 0.0535436 8.48644e-07 6.99217e-08 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| speak with ||| 0.00209644 0.0535436 8.48644e-07 1.57745e-06 2.718 ||| 0-1 ||| 477 1.17835e+06 +en ||| speaker in this ||| 0.1 0.605812 8.48644e-07 5.57962e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| speaker in ||| 0.0344828 0.605812 1.69729e-06 8.63531e-06 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| speaker on ||| 0.0416667 0.22993 8.48644e-07 1.55301e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| speakers in ||| 0.00649351 0.605812 8.48644e-07 9.32798e-06 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| speaking , I ||| 0.25 0.0060084 8.48644e-07 3.32664e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| speaking , ||| 0.0121951 0.0538225 2.54593e-06 2.70231e-05 2.718 ||| 0-0 ||| 246 1.17835e+06 +en ||| speaking about at ||| 1 0.321886 8.48644e-07 6.49479e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| speaking against ||| 0.04 0.153982 8.48644e-07 6.65714e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| speaking any ||| 0.25 0.0538225 8.48644e-07 3.42665e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| speaking at ||| 0.173913 0.321886 3.39458e-06 4.59223e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| speaking from ||| 0.0625 0.042353 8.48644e-07 8.62236e-07 2.718 ||| 0-0 0-1 ||| 16 1.17835e+06 +en ||| speaking here in ||| 0.125 0.605812 8.48644e-07 1.07499e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| speaking in ||| 0.048951 0.605812 5.94051e-06 5.30125e-05 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| speaking of ||| 0.00671141 0.0327394 8.48644e-07 3.09014e-06 2.718 ||| 0-0 0-1 ||| 149 1.17835e+06 +en ||| speaking on behalf ||| 0.00414938 0.22993 8.48644e-07 3.03657e-09 2.718 ||| 0-1 ||| 241 1.17835e+06 +en ||| speaking on ||| 0.218391 0.141876 6.4497e-05 1.88188e-05 2.718 ||| 0-0 0-1 ||| 348 1.17835e+06 +en ||| speaking up in ||| 1 0.605812 8.48644e-07 1.80799e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| speaking ||| 0.0118806 0.0538225 3.47944e-05 0.0002266 2.718 ||| 0-0 ||| 3451 1.17835e+06 +en ||| speaks ||| 0.00189394 0.0115207 8.48644e-07 6.8e-06 2.718 ||| 0-0 ||| 528 1.17835e+06 +en ||| special appeal ||| 0.2 0.0004103 8.48644e-07 8.154e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| special campaigns in ||| 1 0.605812 8.48644e-07 2.41124e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| special difficulty involved in ||| 1 0.605812 8.48644e-07 2.46041e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| special in ||| 0.2 0.605812 1.69729e-06 3.95285e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| special permission may be granted in ||| 1 0.605812 8.48644e-07 4.21689e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| special ||| 0.000307882 0.0004103 2.54593e-06 2.7e-06 2.718 ||| 0-0 ||| 9744 1.17835e+06 +en ||| specialising in ||| 0.0178571 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| specialist ||| 0.00175131 0.001675 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 571 1.17835e+06 +en ||| species of ||| 0.00680272 0.0116562 8.48644e-07 2.01828e-07 2.718 ||| 0-1 ||| 147 1.17835e+06 +en ||| specific activities in ||| 0.111111 0.605812 8.48644e-07 5.54712e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| specific end - in a campaign ||| 0.5 0.605812 8.48644e-07 1.56851e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| specific end - in a ||| 0.5 0.605812 8.48644e-07 5.07609e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| specific end - in ||| 0.5 0.605812 8.48644e-07 1.14518e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| specific measures on ||| 0.1 0.22993 8.48644e-07 2.59631e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| specific on several ||| 1 0.22993 8.48644e-07 8.21934e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| specific on ||| 0.0588235 0.22993 8.48644e-07 1.25486e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| specific restrictions were put on ||| 0.0769231 0.22993 8.48644e-07 4.73412e-16 2.718 ||| 0-4 ||| 13 1.17835e+06 +en ||| specifically addressed at ||| 0.5 0.321886 8.48644e-07 1.20284e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| specifically aims ||| 0.25 0.148651 8.48644e-07 2.73674e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| specifically at ||| 0.0131579 0.321886 8.48644e-07 2.24411e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| specifically in the ||| 0.00961538 0.605812 8.48644e-07 1.59041e-06 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| specifically in ||| 0.0401338 0.605812 1.01837e-05 2.59059e-05 2.718 ||| 0-1 ||| 299 1.17835e+06 +en ||| specifically into real ||| 1 0.525896 8.48644e-07 2.23418e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| specifically into ||| 0.333333 0.525896 1.69729e-06 1.2419e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| specifically of ||| 0.0208333 0.148651 8.48644e-07 3.72883e-05 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| specifically relates to ||| 0.125 0.0247351 8.48644e-07 4.43102e-11 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| specifically to those actions at ||| 0.5 0.321886 8.48644e-07 1.00785e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| specifically with ||| 0.00746269 0.148651 8.48644e-07 4.38599e-06 2.718 ||| 0-0 ||| 134 1.17835e+06 +en ||| specifically ||| 0.00478632 0.148651 2.3762e-05 0.0006859 2.718 ||| 0-0 ||| 5850 1.17835e+06 +en ||| specified in ||| 0.013986 0.605812 1.69729e-06 5.17195e-06 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| specified quite clearly in ||| 0.5 0.605812 8.48644e-07 3.68208e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| specify at ||| 1 0.321886 8.48644e-07 2.88014e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| specify that under ||| 1 0.205566 8.48644e-07 6.8486e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| specifying in ||| 0.125 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| spectacles in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| spectrum in ||| 0.333333 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| speech in which he discussed ||| 0.5 0.605812 8.48644e-07 8.08753e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| speech in which he ||| 0.25 0.605812 8.48644e-07 1.54048e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| speech in which ||| 0.0833333 0.605812 8.48644e-07 1.76519e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| speech in ||| 0.0278884 0.605812 5.94051e-06 2.07801e-05 2.718 ||| 0-1 ||| 251 1.17835e+06 +en ||| speech to dwell on ||| 0.5 0.22993 8.48644e-07 8.30197e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| speeches in ||| 0.0142857 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| speeches to ||| 0.0434783 0.0247351 8.48644e-07 2.52975e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| speed in ||| 0.0217391 0.605812 8.48644e-07 9.14327e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| speed is of ||| 0.166667 0.0116562 8.48644e-07 8.46249e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| speed limit in ||| 0.333333 0.605812 8.48644e-07 4.44363e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| speedy decision on infringement proceedings ||| 0.5 0.22993 8.48644e-07 1.4487e-20 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| speedy decision on infringement ||| 0.5 0.22993 8.48644e-07 3.9909e-16 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| speedy decision on ||| 0.333333 0.22993 8.48644e-07 6.13985e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| spell disaster for ||| 0.166667 0.0286209 8.48644e-07 2.49341e-12 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| spell out in ||| 0.166667 0.605812 8.48644e-07 1.52117e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| spelled out in ||| 0.125 0.605812 8.48644e-07 3.18385e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| spend in ||| 0.0434783 0.605812 8.48644e-07 1.39458e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| spend on ||| 0.0240964 0.22993 1.69729e-06 2.50806e-06 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| spend the next ||| 0.166667 0.0037675 8.48644e-07 3.04405e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| spend the ||| 0.00900901 0.0037675 8.48644e-07 2.94681e-07 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| spend time in a ||| 0.25 0.605812 8.48644e-07 1.01483e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| spend time in ||| 0.375 0.605812 2.54593e-06 2.28948e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| spend ||| 0.0040678 0.0037675 5.09187e-06 4.8e-06 2.718 ||| 0-0 ||| 1475 1.17835e+06 +en ||| spending on a ||| 0.2 0.22993 8.48644e-07 7.80412e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| spending on ||| 0.00420168 0.22993 8.48644e-07 1.76063e-06 2.718 ||| 0-1 ||| 238 1.17835e+06 +en ||| spending throughout ||| 1 0.309047 8.48644e-07 6.1497e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| spending under ||| 0.037037 0.205566 8.48644e-07 1.19878e-07 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| spent at ||| 0.0625 0.321886 2.54593e-06 2.56413e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| spent by ||| 0.0119048 0.0468744 8.48644e-07 5.45305e-07 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| spent in the ||| 0.0434783 0.605812 1.69729e-06 1.81721e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| spent in ||| 0.0580645 0.605812 7.6378e-06 2.96002e-05 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| spent on ||| 0.0179372 0.22993 6.78915e-06 5.3234e-06 2.718 ||| 0-1 ||| 446 1.17835e+06 +en ||| spent to ||| 0.0769231 0.0247351 8.48644e-07 1.80174e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| spent within ||| 0.1 0.369196 8.48644e-07 7.10657e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| sphere which is aware of ||| 1 0.0116562 8.48644e-07 1.36158e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| sphere within ||| 0.5 0.369196 8.48644e-07 2.99341e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| spill in ||| 0.333333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| spin on ||| 0.111111 0.22993 8.48644e-07 2.4084e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| spin-off in ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| spiral in ||| 0.25 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| spirit in ||| 0.0165289 0.605812 1.69729e-06 2.71066e-05 2.718 ||| 0-1 ||| 121 1.17835e+06 +en ||| spirit of ||| 0.0014881 0.0116562 2.54593e-06 8.00492e-07 2.718 ||| 0-1 ||| 2016 1.17835e+06 +en ||| spiritual trends over ||| 1 0.157937 8.48644e-07 3.60648e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| splendid contribution in ||| 0.333333 0.605812 8.48644e-07 2.53518e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| splendid images , the music and the ||| 0.5 0.0066116 8.48644e-07 3.98719e-22 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| splendid images , the music and ||| 0.5 0.0066116 8.48644e-07 6.49467e-21 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| splendid images , the music ||| 0.5 0.0066116 8.48644e-07 5.18499e-19 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| splitting into ||| 0.166667 0.525896 8.48644e-07 8.85492e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| spoke in ||| 0.0263158 0.605812 2.54593e-06 1.21448e-05 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| spoken in ||| 0.0149254 0.605812 2.54593e-06 1.02977e-05 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| spoken out in ||| 0.0434783 0.605812 8.48644e-07 3.94444e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| sport in ||| 0.00775194 0.605812 8.48644e-07 6.97289e-06 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| spot in ||| 0.1 0.605812 1.69729e-06 6.3264e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| spotlight back on its long-standing dispute ||| 0.5 0.22993 8.48644e-07 1.7215e-23 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| spotlight back on its long-standing ||| 0.5 0.22993 8.48644e-07 1.01864e-18 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| spotlight back on its ||| 0.5 0.22993 8.48644e-07 3.18326e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| spotlight back on ||| 0.5 0.22993 8.48644e-07 2.23433e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| spotlight in the ||| 1 0.605812 8.48644e-07 1.13398e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| spotlight in ||| 1 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| spotted off ||| 1 0.0262428 8.48644e-07 6.696e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| spouses in ||| 0.0666667 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| sprayed by ||| 0.5 0.0468744 8.48644e-07 5.95497e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| spread across ||| 0.0384615 0.274879 1.69729e-06 5.83421e-08 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| spread between ||| 0.125 0.0035986 8.48644e-07 3.8056e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| spread of ||| 0.00154321 0.0116562 8.48644e-07 3.87291e-07 2.718 ||| 0-1 ||| 648 1.17835e+06 +en ||| spread over ||| 0.0116279 0.157937 8.48644e-07 1.13804e-07 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| spread throughout ||| 0.0238095 0.309047 8.48644e-07 8.23827e-08 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| spread to areas ||| 1 0.0247351 8.48644e-07 1.82725e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| spread to ||| 0.0348837 0.0247351 2.54593e-06 7.98276e-07 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| spreading to ||| 0.0434783 0.0247351 8.48644e-07 2.72651e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| spring in ||| 0.111111 0.605812 8.48644e-07 6.00315e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| spring to mind ||| 0.0263158 0.0247351 8.48644e-07 9.20463e-11 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| spring to ||| 0.0153846 0.0247351 8.48644e-07 3.65408e-07 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| square in ||| 0.142857 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| square on ||| 1 0.22993 8.48644e-07 5.97948e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| squarely in ||| 0.333333 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| squarely on ||| 0.142857 0.22993 8.48644e-07 2.65755e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| squarely with ||| 0.142857 0.0535436 8.48644e-07 3.73085e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| stab wounds in ||| 0.5 0.605812 8.48644e-07 3.55571e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| stability in our continent . ||| 0.0625 0.605812 8.48644e-07 4.63735e-16 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| stability in our continent ||| 0.0555556 0.605812 8.48644e-07 1.53098e-13 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| stability in our ||| 0.025641 0.605812 8.48644e-07 1.33129e-08 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| stability in ||| 0.00254453 0.605812 2.54593e-06 9.65122e-06 2.718 ||| 0-1 ||| 1179 1.17835e+06 +en ||| stability of ||| 0.00156986 0.0116562 8.48644e-07 2.85013e-07 2.718 ||| 0-1 ||| 637 1.17835e+06 +en ||| stability pact agreed last year in Dublin ||| 1 0.605812 8.48644e-07 6.14206e-28 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| stability pact agreed last year in ||| 1 0.605812 8.48644e-07 2.79185e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| stable in ||| 0.0666667 0.605812 8.48644e-07 6.14169e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| staff at ||| 0.0285714 0.321886 8.48644e-07 1.61208e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| staff between ||| 0.166667 0.0035986 8.48644e-07 5.4002e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| staff of ||| 0.0107527 0.0116562 1.69729e-06 5.49571e-07 2.718 ||| 0-1 ||| 186 1.17835e+06 +en ||| staffed by ||| 0.0625 0.0468744 8.48644e-07 9.35781e-09 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| stage in ||| 0.0178042 0.605812 5.09187e-06 6.91286e-05 2.718 ||| 0-1 ||| 337 1.17835e+06 +en ||| stage internationally ||| 1 0.0446927 8.48644e-07 8.14368e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| stage of ||| 0.0012987 0.0116562 8.48644e-07 2.04146e-06 2.718 ||| 0-1 ||| 770 1.17835e+06 +en ||| stage somewhere out in ||| 1 0.605812 8.48644e-07 5.4282e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| stage was to ||| 0.333333 0.0247351 8.48644e-07 1.31831e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| stage within ||| 1 0.369196 8.48644e-07 1.65968e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| staged in ||| 0.25 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| stages within a ||| 1 0.369196 8.48644e-07 7.42055e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| stages within ||| 0.5 0.369196 8.48644e-07 1.67409e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| staging a hunger ||| 1 0.0015231 8.48644e-07 4.15296e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| staging a ||| 0.0769231 0.0015231 8.48644e-07 1.1536e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| stagnated in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| stain on ||| 0.0666667 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| stake here ||| 0.00552486 0.0855319 8.48644e-07 9.0603e-08 2.718 ||| 0-1 ||| 181 1.17835e+06 +en ||| stake in ||| 0.038961 0.605812 5.09187e-06 1.39458e-05 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| stakes in companies ||| 1 0.605812 8.48644e-07 1.29668e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| stakes in ||| 0.285714 0.605812 1.69729e-06 1.84712e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| stakes ||| 0.020202 0.143382 1.69729e-06 2.65e-05 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| stalls , loaded onto ||| 1 0.233333 8.48644e-07 6.6816e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| stance in ||| 0.0869565 0.605812 1.69729e-06 1.21448e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| stance of ||| 0.0163934 0.0116562 8.48644e-07 3.58653e-07 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| stance on ||| 0.0222222 0.22993 1.69729e-06 2.18417e-06 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| stand at ||| 0.08 0.321886 6.78915e-06 6.59233e-06 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| stand by and ||| 0.0185185 0.0468744 8.48644e-07 1.75609e-08 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| stand by ||| 0.00623053 0.0468744 1.69729e-06 1.40197e-06 2.718 ||| 0-1 ||| 321 1.17835e+06 +en ||| stand during ||| 0.5 0.226251 8.48644e-07 4.76486e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| stand for in ||| 0.5 0.605812 8.48644e-07 5.84893e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| stand for the ||| 0.0588235 0.0286209 8.48644e-07 1.16402e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| stand for ||| 0.00847458 0.0286209 1.69729e-06 1.89606e-06 2.718 ||| 0-1 ||| 236 1.17835e+06 +en ||| stand here ||| 0.02 0.0855319 8.48644e-07 4.94416e-07 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| stand in opposition to ||| 0.25 0.605812 8.48644e-07 1.73113e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| stand in opposition ||| 0.25 0.605812 8.48644e-07 1.9482e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| stand in ||| 0.037037 0.605812 1.01837e-05 7.61015e-05 2.718 ||| 0-1 ||| 324 1.17835e+06 +en ||| stand on ||| 0.00985222 0.22993 1.69729e-06 1.36864e-05 2.718 ||| 0-1 ||| 203 1.17835e+06 +en ||| stand to suffer from it as a ||| 1 0.0308834 8.48644e-07 1.5956e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| stand to suffer from it as ||| 1 0.0308834 8.48644e-07 3.59972e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| stand to suffer from it ||| 1 0.0308834 8.48644e-07 3.52761e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| stand to suffer from ||| 1 0.0308834 8.48644e-07 1.98368e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| stand to ||| 0.0192308 0.0247351 1.69729e-06 4.63225e-06 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| stand up in ||| 0.0344828 0.605812 8.48644e-07 2.59544e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| stand up to be ||| 1 0.0247351 8.48644e-07 2.86311e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| stand up to ||| 0.00826446 0.0247351 8.48644e-07 1.57983e-08 2.718 ||| 0-2 ||| 121 1.17835e+06 +en ||| standard across ||| 0.333333 0.274879 8.48644e-07 9.67575e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| standard and ||| 0.0238095 0.0010182 8.48644e-07 4.34592e-08 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| standard at ||| 0.166667 0.321886 8.48644e-07 1.88409e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| standard for ||| 0.0149254 0.0286209 8.48644e-07 5.41895e-07 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| standard in ||| 0.0566038 0.605812 2.54593e-06 2.17499e-05 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| standard ||| 0.000637349 0.0006268 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 3138 1.17835e+06 +en ||| standardised rules across ||| 0.333333 0.274879 8.48644e-07 5.96774e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| standards at ||| 0.0285714 0.321886 8.48644e-07 2.92415e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| standards in the ||| 0.0142857 0.605812 8.48644e-07 2.07235e-06 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| standards in ||| 0.029304 0.605812 6.78915e-06 3.37562e-05 2.718 ||| 0-1 ||| 273 1.17835e+06 +en ||| standards of service ||| 0.0769231 0.0116562 8.48644e-07 6.66902e-11 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| standards of ||| 0.00138313 0.0116562 8.48644e-07 9.96865e-07 2.718 ||| 0-1 ||| 723 1.17835e+06 +en ||| standards which apply in ||| 0.333333 0.605812 8.48644e-07 4.12627e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| standards which are mandatory ! in ||| 1 0.605812 8.48644e-07 1.08306e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| standing a chance of survival in ||| 1 0.605812 8.48644e-07 2.5215e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| standing at ||| 0.075 0.321886 2.54593e-06 2.11611e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| standing by ||| 0.027027 0.0468744 8.48644e-07 4.50026e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| standing in ||| 0.0875912 0.605812 1.01837e-05 2.44282e-05 2.718 ||| 0-1 ||| 137 1.17835e+06 +en ||| standing on ||| 0.111111 0.22993 3.39458e-06 4.39326e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| standing were ||| 0.166667 0.0212625 8.48644e-07 3.90525e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| standing ||| 0.00764192 0.0212625 5.94051e-06 2.18e-05 2.718 ||| 0-0 ||| 916 1.17835e+06 +en ||| stands at ||| 0.0114286 0.321886 1.69729e-06 2.20411e-06 2.718 ||| 0-1 ||| 175 1.17835e+06 +en ||| stands in ||| 0.0869565 0.605812 5.09187e-06 2.54441e-05 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| starkly manifested in ||| 1 0.605812 8.48644e-07 2.03184e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| start at ||| 0.0263158 0.321886 1.69729e-06 5.55628e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| start being about people having ||| 1 0.0065553 8.48644e-07 3.78404e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| start by ||| 0.00493421 0.0468744 2.54593e-06 1.18164e-06 2.718 ||| 0-1 ||| 608 1.17835e+06 +en ||| start from ||| 0.0168067 0.0308834 1.69729e-06 5.28528e-07 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| start in Hall ||| 1 0.605812 8.48644e-07 4.4899e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| start in ||| 0.0327869 0.605812 3.39458e-06 6.41414e-05 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| start of ||| 0.000783085 0.0116562 8.48644e-07 1.89418e-06 2.718 ||| 0-1 ||| 1277 1.17835e+06 +en ||| start on ||| 0.0123457 0.22993 1.69729e-06 1.15354e-05 2.718 ||| 0-1 ||| 162 1.17835e+06 +en ||| start with ||| 0.00193798 0.0535436 8.48644e-07 1.61942e-06 2.718 ||| 0-1 ||| 516 1.17835e+06 +en ||| start-up of ||| 0.0555556 0.174455 8.48644e-07 2.07127e-06 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| start-up ||| 0.0042735 0.174455 8.48644e-07 3.81e-05 2.718 ||| 0-0 ||| 234 1.17835e+06 +en ||| started . when ||| 1 0.142731 8.48644e-07 8.11465e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| started along ||| 0.333333 0.155535 8.48644e-07 3.57975e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| started at all in ||| 1 0.605812 8.48644e-07 4.1118e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| started at ||| 0.0555556 0.321886 8.48644e-07 1.80009e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| started during ||| 0.142857 0.226251 8.48644e-07 1.30109e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| started in ||| 0.0236686 0.605812 3.39458e-06 2.07801e-05 2.718 ||| 0-1 ||| 169 1.17835e+06 +en ||| started thinking ||| 0.0588235 0.0455702 8.48644e-07 6.5835e-09 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| started to take hold in ||| 1 0.605812 8.48644e-07 5.17869e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| started to ||| 0.00473934 0.0247351 1.69729e-06 1.26487e-06 2.718 ||| 0-1 ||| 422 1.17835e+06 +en ||| started ||| 0.000386847 0.001365 8.48644e-07 3.4e-06 2.718 ||| 0-0 ||| 2585 1.17835e+06 +en ||| starting early in ||| 1 0.605812 8.48644e-07 1.4287e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| starting in ||| 0.0176991 0.605812 1.69729e-06 2.11034e-05 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| starting out ||| 0.0232558 0.0120599 8.48644e-07 2.51578e-08 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| starting to happen within ||| 1 0.369196 8.48644e-07 4.89379e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| state aid in ||| 0.0212766 0.605812 8.48644e-07 1.5234e-08 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| state at ||| 0.0666667 0.321886 8.48644e-07 1.01045e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| state for ||| 0.05 0.0286209 8.48644e-07 2.90621e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| state in ||| 0.0307692 0.605812 5.09187e-06 0.000116646 2.718 ||| 0-1 ||| 195 1.17835e+06 +en ||| state of ||| 0.000384172 0.0116562 8.48644e-07 3.44471e-06 2.718 ||| 0-1 ||| 2603 1.17835e+06 +en ||| state on ||| 0.129032 0.22993 3.39458e-06 2.0978e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| state under ||| 0.0909091 0.205566 1.69729e-06 1.42835e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| stated belief in ||| 1 0.605812 8.48644e-07 7.65254e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| stated in ||| 0.0234483 0.605812 1.4427e-05 2.8769e-05 2.718 ||| 0-1 ||| 725 1.17835e+06 +en ||| stated on a pack ||| 0.25 0.22993 8.48644e-07 7.33881e-13 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| stated on a ||| 0.125 0.22993 8.48644e-07 2.29338e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| stated on ||| 0.0166667 0.22993 8.48644e-07 5.17392e-06 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| stated that , given ||| 0.333333 0.0546585 8.48644e-07 1.45086e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| stated that , in ||| 0.166667 0.605812 8.48644e-07 5.77121e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| stated this at ||| 1 0.321886 8.48644e-07 1.61026e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| stated within ||| 0.5 0.369196 8.48644e-07 6.90701e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| stated ||| 0.000424989 0.0003244 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 4706 1.17835e+06 +en ||| statement , in ||| 0.153846 0.605812 1.69729e-06 4.10268e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| statement , ||| 0.00206612 0.000353 8.48644e-07 2.38509e-07 2.718 ||| 0-0 ||| 484 1.17835e+06 +en ||| statement along ||| 0.25 0.155535 8.48644e-07 5.92647e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| statement from ||| 0.00862069 0.0308834 8.48644e-07 2.8348e-07 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| statement in ||| 0.0197368 0.605812 2.54593e-06 3.44027e-05 2.718 ||| 0-1 ||| 152 1.17835e+06 +en ||| statement made in ||| 0.0666667 0.605812 8.48644e-07 7.20668e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| statement on ||| 0.00589391 0.22993 2.54593e-06 6.18711e-06 2.718 ||| 0-1 ||| 509 1.17835e+06 +en ||| statement was made at ||| 1 0.321886 8.48644e-07 1.95587e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| statement ||| 0.000212202 0.000353 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 9425 1.17835e+06 +en ||| statements in ||| 0.0322581 0.605812 1.69729e-06 1.4777e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| states , ||| 0.00137741 0.0010643 8.48644e-07 1.13292e-06 2.718 ||| 0-0 ||| 726 1.17835e+06 +en ||| states and so ||| 0.5 0.0087276 8.48644e-07 6.41561e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| states around ||| 0.1 0.159384 8.48644e-07 8.67883e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| states in ||| 0.0058651 0.605812 1.69729e-06 3.47259e-05 2.718 ||| 0-1 ||| 341 1.17835e+06 +en ||| states into ||| 0.166667 0.525896 8.48644e-07 1.66472e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| states on ||| 0.0357143 0.22993 8.48644e-07 6.24524e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| states that , in ||| 0.0555556 0.605812 8.48644e-07 6.96621e-08 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| states where ||| 0.027027 0.247783 8.48644e-07 6.40448e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| states ||| 0.00080064 0.0010643 8.48644e-06 9.5e-06 2.718 ||| 0-0 ||| 12490 1.17835e+06 +en ||| stating , in ||| 0.333333 0.605812 8.48644e-07 1.28863e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| stating ||| 0.0048216 0.0274678 4.24322e-06 2.18e-05 2.718 ||| 0-0 ||| 1037 1.17835e+06 +en ||| station in ||| 0.2 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| stationed at ||| 0.5 0.321886 8.48644e-07 4.40022e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| stations in ||| 0.333333 0.605812 2.54593e-06 5.63373e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| stations within a stretch of ||| 1 0.0116562 8.48644e-07 1.4495e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| statistics published by ||| 0.2 0.0468744 8.48644e-07 2.04885e-12 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| statistics speak for themselves . ||| 0.333333 0.0286209 8.48644e-07 2.18817e-17 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| statistics speak for themselves ||| 0.142857 0.0286209 8.48644e-07 7.22406e-15 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| statistics speak for ||| 0.142857 0.0286209 8.48644e-07 1.68119e-11 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| status , involves ||| 1 0.0273327 8.48644e-07 7.13754e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| status agreement on ||| 1 0.22993 8.48644e-07 1.54742e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| status in ||| 0.151899 0.605812 1.01837e-05 4.66861e-05 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| status of ||| 0.00174368 0.0116562 1.69729e-06 1.3787e-06 2.718 ||| 0-1 ||| 1147 1.17835e+06 +en ||| status within ||| 0.166667 0.369196 1.69729e-06 1.12087e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| statute books at ||| 1 0.321886 8.48644e-07 4.0806e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| stay at ||| 0.0235294 0.321886 1.69729e-06 1.13606e-06 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| stay connected to ||| 0.5 0.0247351 8.48644e-07 1.61252e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| stay in ||| 0.0170648 0.605812 4.24322e-06 1.31146e-05 2.718 ||| 0-1 ||| 293 1.17835e+06 +en ||| stay on ||| 0.0169492 0.22993 8.48644e-07 2.35857e-06 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| stay silent on ||| 0.333333 0.22993 8.48644e-07 2.02837e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| stay where they are ||| 0.2 0.247783 8.48644e-07 1.19784e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| stay where they ||| 1 0.247783 8.48644e-07 7.89468e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| stay where ||| 0.142857 0.247783 8.48644e-07 2.41871e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| stay with ||| 0.0714286 0.0535436 1.69729e-06 3.31113e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| stay within ||| 0.03125 0.369196 8.48644e-07 3.14862e-07 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| stayed in ||| 0.04 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| stayed with ||| 0.125 0.0535436 8.48644e-07 4.66356e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| staying in ||| 0.0869565 0.605812 3.39458e-06 3.83278e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| staying put ||| 0.125 0.0527523 8.48644e-07 1.73108e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| staying up for ||| 1 0.0286209 8.48644e-07 3.25679e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| staying ||| 0.0146341 0.0527523 2.54593e-06 1.57e-05 2.718 ||| 0-0 ||| 205 1.17835e+06 +en ||| steadily in ||| 0.0909091 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| steel in ||| 0.0909091 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| stems from ||| 0.0111732 0.0308834 1.69729e-06 1.63619e-08 2.718 ||| 0-1 ||| 179 1.17835e+06 +en ||| step at ||| 0.05 0.321886 8.48644e-07 5.9003e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| step away from ||| 0.05 0.0308834 8.48644e-07 1.78534e-10 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| step by step ||| 0.00606061 0.0468744 8.48644e-07 1.85083e-10 2.718 ||| 0-1 ||| 165 1.17835e+06 +en ||| step by ||| 0.00625 0.0468744 8.48644e-07 1.2548e-06 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| step closer to ||| 0.0232558 0.0247351 8.48644e-07 8.83093e-10 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| step further down the road ||| 0.333333 0.0011669 8.48644e-07 1.27166e-17 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| step further down the ||| 0.333333 0.0011669 8.48644e-07 1.42563e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| step further in ||| 0.0588235 0.605812 8.48644e-07 3.29189e-08 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| step in encouraging both ||| 1 0.605812 8.48644e-07 2.68532e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| step in encouraging ||| 1 0.605812 8.48644e-07 1.62108e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| step in ||| 0.0184453 0.605812 2.3762e-05 6.81127e-05 2.718 ||| 0-1 ||| 1518 1.17835e+06 +en ||| step on ||| 0.00854701 0.22993 8.48644e-07 1.22496e-05 2.718 ||| 0-1 ||| 117 1.17835e+06 +en ||| step towards improving road safety ||| 1 0.0616136 8.48644e-07 1.43537e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| step towards improving road ||| 1 0.0616136 8.48644e-07 2.83111e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| step towards improving ||| 0.0384615 0.0616136 8.48644e-07 3.17389e-12 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| step towards meeting ||| 0.25 0.0308936 8.48644e-07 2.05715e-13 2.718 ||| 0-1 0-2 ||| 4 1.17835e+06 +en ||| step towards ||| 0.00348432 0.0616136 3.39458e-06 1.4694e-07 2.718 ||| 0-1 ||| 1148 1.17835e+06 +en ||| step with ||| 0.0192308 0.0535436 1.69729e-06 1.71969e-06 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| stepped into ||| 0.25 0.525896 8.48644e-07 2.08091e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| stepped out into ||| 0.5 0.525896 8.48644e-07 7.9707e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| stepped outside ||| 0.333333 0.0045581 8.48644e-07 2.303e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| stepping into ||| 0.142857 0.525896 8.48644e-07 2.08091e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| stepping onto ||| 0.5 0.233333 8.48644e-07 1.88094e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| steps are taken in ||| 1 0.605812 8.48644e-07 3.76797e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| steps at ||| 0.0769231 0.321886 8.48644e-07 2.36012e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| steps in ||| 0.0210084 0.605812 4.24322e-06 2.72451e-05 2.718 ||| 0-1 ||| 238 1.17835e+06 +en ||| steps taken in ||| 0.0909091 0.605812 8.48644e-07 2.48339e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| steps towards ||| 0.00900901 0.0616136 1.69729e-06 5.87758e-08 2.718 ||| 0-1 ||| 222 1.17835e+06 +en ||| sterilised against their will in ||| 1 0.605812 8.48644e-07 4.41941e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| stick in ||| 0.181818 0.605812 1.69729e-06 9.32798e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| sticking to ||| 0.0125 0.0247351 8.48644e-07 1.63028e-07 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| sticks in the ||| 0.5 0.605812 8.48644e-07 3.96894e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| sticks in ||| 0.166667 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| still a great deal to do in ||| 0.5 0.605812 8.48644e-07 7.85304e-16 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| still applied in ||| 0.333333 0.605812 8.48644e-07 3.76682e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| still at ||| 0.0273973 0.321886 1.69729e-06 3.01295e-05 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| still be of use in ||| 1 0.605812 8.48644e-07 1.6661e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| still be permitted under ||| 1 0.205566 8.48644e-07 2.19209e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| still be required on ||| 1 0.22993 8.48644e-07 1.79906e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| still emerging from a long period ||| 1 0.0308834 8.48644e-07 1.48489e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| still emerging from a long ||| 1 0.0308834 8.48644e-07 8.50942e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| still emerging from a ||| 1 0.0308834 8.48644e-07 2.51535e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| still emerging from ||| 1 0.0308834 8.48644e-07 5.67468e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| still exist in ||| 0.0208333 0.605812 8.48644e-07 3.20336e-08 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| still feature in ||| 0.5 0.605812 8.48644e-07 9.39097e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| still further by taking ||| 0.5 0.0468744 8.48644e-07 1.31613e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| still further by ||| 0.2 0.0468744 8.48644e-07 3.09677e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| still guaranteed when ||| 0.0555556 0.142731 8.48644e-07 1.58286e-10 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| still happen in ||| 0.5 0.605812 8.48644e-07 3.78073e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| still have a landfill site in ||| 1 0.605812 8.48644e-07 1.02131e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| still held in ||| 0.142857 0.605812 8.48644e-07 8.87272e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| still in force ||| 0.0238095 0.605812 8.48644e-07 5.91979e-08 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| still in the ||| 0.0119048 0.605812 8.48644e-07 2.13529e-05 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| still in ||| 0.0482234 0.605812 1.61242e-05 0.000347814 2.718 ||| 0-1 ||| 394 1.17835e+06 +en ||| still insist on ||| 0.166667 0.225758 8.48644e-07 2.7967e-08 2.718 ||| 0-1 0-2 ||| 6 1.17835e+06 +en ||| still insist ||| 0.142857 0.221585 8.48644e-07 3.36756e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| still living in ||| 0.0434783 0.605812 8.48644e-07 2.91468e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| still lying in ||| 1 0.605812 8.48644e-07 5.00851e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| still makes no mention of them ||| 0.5 0.0116562 8.48644e-07 3.54173e-19 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| still makes no mention of ||| 0.5 0.0116562 8.48644e-07 1.32036e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| still needs to ||| 0.00943396 0.0247351 8.48644e-07 4.19824e-09 2.718 ||| 0-2 ||| 106 1.17835e+06 +en ||| still not subsided in ||| 0.333333 0.605812 8.48644e-07 8.31229e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| still on the ||| 0.012987 0.0002971 8.48644e-07 3.08079e-09 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| still on ||| 0.0551181 0.22993 5.94051e-06 6.25521e-05 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| still present in ||| 0.0769231 0.605812 8.48644e-07 1.273e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| still refer to ||| 1 0.0247351 8.48644e-07 1.65347e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| still relating to ||| 0.25 0.0286189 8.48644e-07 4.56662e-09 2.718 ||| 0-1 0-2 ||| 4 1.17835e+06 +en ||| still relevant today ||| 0.25 0.0398284 8.48644e-07 9.77719e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| still run ||| 0.166667 0.0008889 8.48644e-07 1.5064e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| still taken in by ||| 1 0.326343 8.48644e-07 2.69702e-09 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| still the ||| 0.00362319 0.000732 8.48644e-07 2.14853e-08 2.718 ||| 0-0 0-1 ||| 276 1.17835e+06 +en ||| still to ||| 0.00440529 0.0247351 8.48644e-07 2.11712e-05 2.718 ||| 0-1 ||| 227 1.17835e+06 +en ||| still washing in along ||| 1 0.605812 8.48644e-07 6.67628e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| still washing in ||| 1 0.605812 8.48644e-07 3.82595e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| still with us in ||| 0.25 0.605812 8.48644e-07 6.41028e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| still working in ||| 0.2 0.605812 8.48644e-07 6.62237e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| still ||| 0.000316713 0.0002971 5.94051e-06 7.5e-06 2.718 ||| 0-0 ||| 22102 1.17835e+06 +en ||| stint as ||| 0.5 0.066968 8.48644e-07 7.19516e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| stirring speech in ||| 1 0.605812 8.48644e-07 4.57163e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| stock , I would say ||| 0.5 0.0060084 8.48644e-07 4.32369e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| stock , I would ||| 0.5 0.0060084 8.48644e-07 4.52363e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| stock , I ||| 0.5 0.0060084 8.48644e-07 7.70807e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| stock in ||| 0.0588235 0.605812 8.48644e-07 1.22834e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| stock owned by ||| 0.25 0.0468744 8.48644e-07 1.53876e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| stocks at ||| 0.125 0.321886 8.48644e-07 8.80044e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| stocks in ||| 0.0444444 0.605812 3.39458e-06 1.01592e-05 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| stocktaking in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| stolen from ||| 0.0344828 0.0308834 8.48644e-07 1.36984e-08 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| stolen in ||| 0.125 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| stone for ||| 0.0625 0.0286209 8.48644e-07 1.61073e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| stone in ||| 0.0769231 0.605812 8.48644e-07 6.46494e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| stood here in ||| 1 0.605812 8.48644e-07 1.45142e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| stood in at ||| 1 0.463849 8.48644e-07 2.86319e-07 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| stood in ||| 0.0333333 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| stood on ||| 0.142857 0.22993 1.69729e-06 1.28725e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| stop at ||| 0.00490196 0.321886 8.48644e-07 2.76414e-06 2.718 ||| 0-1 ||| 204 1.17835e+06 +en ||| stop being ||| 0.015873 0.0043873 8.48644e-07 1.26453e-08 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| stop them in ||| 0.333333 0.605812 8.48644e-07 8.55929e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| stop to ||| 0.00242131 0.0247351 8.48644e-07 1.94228e-06 2.718 ||| 0-1 ||| 413 1.17835e+06 +en ||| stopped at ||| 0.0588235 0.321886 8.48644e-07 8.64043e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| stopped in ||| 0.05 0.605812 8.48644e-07 9.97447e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| stopped ringing in ||| 1 0.605812 8.48644e-07 1.39643e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| stopped to ||| 0.0588235 0.0247351 8.48644e-07 6.07139e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| stopping ||| 0.00260417 0.00998 8.48644e-07 3.4e-06 2.718 ||| 0-0 ||| 384 1.17835e+06 +en ||| storage in ||| 0.125 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| store shelf at ||| 1 0.321886 8.48644e-07 1.32887e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| stored as ||| 0.333333 0.066968 8.48644e-07 7.7348e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| stored at marshalling yards in ||| 1 0.605812 8.48644e-07 4.65626e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| stored in ||| 0.0217391 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| stored on ||| 0.0833333 0.22993 8.48644e-07 3.57108e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| stories from ||| 0.25 0.0308834 8.48644e-07 1.21763e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| storm on ||| 0.333333 0.22993 8.48644e-07 2.98974e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| storms on ||| 0.333333 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| story to ||| 0.0526316 0.0247351 8.48644e-07 4.94706e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| story with ||| 0.125 0.0535436 8.48644e-07 2.05197e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| straight away in ||| 0.111111 0.605812 8.48644e-07 5.49378e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| straight into ||| 0.0238095 0.525896 8.48644e-07 8.27935e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| strains in ||| 0.25 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| strategies in ||| 0.0277778 0.303757 8.48644e-07 1.57006e-06 2.718 ||| 0-0 0-1 ||| 36 1.17835e+06 +en ||| strategies ||| 0.00034904 0.001703 8.48644e-07 3.4e-06 2.718 ||| 0-0 ||| 2865 1.17835e+06 +en ||| strategy along ||| 0.5 0.155535 8.48644e-07 4.66958e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| strategy in ||| 0.00598802 0.605812 8.48644e-07 2.71066e-05 2.718 ||| 0-1 ||| 167 1.17835e+06 +en ||| streaming into ||| 0.166667 0.525896 8.48644e-07 8.85492e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| street names in ||| 0.5 0.605812 8.48644e-07 1.02146e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| street ||| 0.00187617 0.0068259 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 533 1.17835e+06 +en ||| strength in numbers ||| 1 0.605812 8.48644e-07 5.60011e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| strength in ||| 0.0338983 0.605812 1.69729e-06 1.14522e-05 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| strengthened in ||| 0.027027 0.605812 1.69729e-06 5.31048e-06 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| strengths in ||| 0.333333 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| stress , first of all ||| 1 0.138055 8.48644e-07 6.66579e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| stress , first of ||| 1 0.138055 8.48644e-07 1.41063e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| stress , first ||| 1 0.138055 8.48644e-07 2.59479e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| stress as ||| 0.5 0.0962778 8.48644e-07 1.14439e-05 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| stress at ||| 0.0769231 0.321886 8.48644e-07 1.42407e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| stress on ||| 0.0178571 0.22993 8.48644e-07 2.95652e-06 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| stress the fact ||| 0.0120482 0.125588 8.48644e-07 1.14411e-07 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| stress the ||| 0.00151286 0.125588 8.48644e-07 3.90575e-05 2.718 ||| 0-0 ||| 661 1.17835e+06 +en ||| stress this point in ||| 0.5 0.605812 8.48644e-07 9.29226e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| stress ||| 0.00505319 0.125588 1.61242e-05 0.0006362 2.718 ||| 0-0 ||| 3760 1.17835e+06 +en ||| stressed , and ||| 0.166667 0.127203 8.48644e-07 3.37443e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| stressed , ||| 0.00952381 0.127203 8.48644e-07 2.69396e-05 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| stressed - ||| 0.0526316 0.127203 8.48644e-07 8.52117e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| stressed by Parliament ||| 1 0.0468744 8.48644e-07 5.0784e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| stressed by ||| 0.025 0.0468744 8.48644e-07 8.84738e-08 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| stressed factual information and education ||| 1 0.127203 8.48644e-07 3.95713e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| stressed factual information and ||| 1 0.127203 8.48644e-07 1.17075e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| stressed factual information ||| 1 0.127203 8.48644e-07 9.34661e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| stressed factual ||| 1 0.127203 8.48644e-07 5.6475e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| stressed in ||| 0.0246914 0.605812 1.69729e-06 4.80252e-06 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| stressed ||| 0.00588235 0.127203 8.48644e-06 0.0002259 2.718 ||| 0-0 ||| 1700 1.17835e+06 +en ||| stresses that , under ||| 1 0.174236 8.48644e-07 1.03359e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| stresses that , ||| 0.25 0.174236 8.48644e-07 2.88069e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| stresses that ||| 0.00492611 0.174236 8.48644e-07 2.41558e-06 2.718 ||| 0-0 ||| 203 1.17835e+06 +en ||| stresses ||| 0.00696056 0.174236 5.09187e-06 0.0001436 2.718 ||| 0-0 ||| 862 1.17835e+06 +en ||| stressing ||| 0.00431965 0.152 1.69729e-06 6.46e-05 2.718 ||| 0-0 ||| 463 1.17835e+06 +en ||| stretch in ||| 1 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| stretch of Galician coastline known as ||| 1 0.066968 8.48644e-07 1.55858e-24 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| stretch of ||| 0.027027 0.0116562 8.48644e-07 1.28188e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| stretching right ||| 1 0.0071334 8.48644e-07 3.222e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| strict requirements on ||| 0.333333 0.22993 8.48644e-07 5.97351e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| stricter at ||| 0.333333 0.321886 8.48644e-07 3.60018e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| stricter in ||| 0.0666667 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| strictly in accordance with ||| 0.166667 0.0535436 8.48644e-07 2.3609e-13 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| strictly speaking , ||| 0.0119048 0.0538225 8.48644e-07 3.21575e-10 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| strictly speaking ||| 0.0078125 0.0538225 8.48644e-07 2.69654e-09 2.718 ||| 0-1 ||| 128 1.17835e+06 +en ||| strides ||| 0.0104167 0.0208333 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 96 1.17835e+06 +en ||| strike a sympathetic ||| 1 0.0015231 8.48644e-07 1.2393e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| strike a ||| 0.0028169 0.0015231 8.48644e-07 2.6368e-08 2.718 ||| 0-1 ||| 355 1.17835e+06 +en ||| strike at ||| 0.0208333 0.321886 8.48644e-07 1.28006e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| strike in ||| 0.04 0.605812 8.48644e-07 1.4777e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| strike is underway involving ||| 1 0.0505311 8.48644e-07 3.00052e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| strikes elsewhere ||| 0.0526316 0.226899 8.48644e-07 8.20144e-09 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| stringently in ||| 0.166667 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| strive , in ||| 1 0.605812 8.48644e-07 5.17654e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| strive to ||| 0.00322581 0.0247351 8.48644e-07 2.64218e-07 2.718 ||| 0-1 ||| 310 1.17835e+06 +en ||| strong emphasis ||| 0.0263158 0.0033428 8.48644e-07 7.4712e-10 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| strong enough in ||| 0.2 0.605812 8.48644e-07 6.4767e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| strong in ||| 0.0666667 0.605812 3.39458e-06 3.92052e-05 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| strong inclination to indulge in ||| 0.5 0.605812 8.48644e-07 3.51157e-17 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| strong points of ||| 0.0769231 0.0116562 8.48644e-07 1.50396e-10 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| strong position in ||| 0.0416667 0.605812 8.48644e-07 1.29103e-08 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| strong second ||| 0.5 0.0400803 8.48644e-07 4.03784e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| strong signal against ||| 0.5 0.153982 8.48644e-07 1.17174e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| strong terms for ||| 0.5 0.0286209 8.48644e-07 1.07213e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| strong-arm tactics in ||| 0.333333 0.605812 8.48644e-07 1.12675e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| stronger in ||| 0.0512821 0.605812 1.69729e-06 1.27913e-05 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| stronger on ||| 0.0769231 0.22993 8.48644e-07 2.30044e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| stronger partnership in ||| 1 0.605812 8.48644e-07 2.76293e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| strongly advocated in ||| 0.5 0.605812 8.48644e-07 1.8359e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| strongly against each ||| 1 0.153982 8.48644e-07 7.79693e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| strongly against ||| 0.0196078 0.153982 8.48644e-07 2.77767e-07 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| strongly emphasised ||| 0.0357143 0.152435 8.48644e-07 1.32635e-08 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| strongly in this ||| 0.111111 0.605812 8.48644e-07 1.42922e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| strongly in ||| 0.035461 0.605812 4.24322e-06 2.21193e-05 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| strongly on ||| 0.0425532 0.22993 1.69729e-06 3.97802e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| strongly that ||| 0.008 0.0017499 8.48644e-07 5.00651e-08 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| strongly ||| 0.00027027 0.0039167 8.48644e-07 1.29e-05 2.718 ||| 0-0 ||| 3700 1.17835e+06 +en ||| struck between ||| 0.05 0.0035986 8.48644e-07 3.4304e-09 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| struck by ||| 0.00649351 0.0468744 8.48644e-07 2.17782e-07 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| struck in ||| 0.0769231 0.605812 1.69729e-06 1.18216e-05 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| struck me in ||| 0.333333 0.605812 8.48644e-07 7.11778e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| structure and , in ||| 1 0.605812 8.48644e-07 2.06249e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| structure at ||| 0.2 0.321886 8.48644e-07 1.19606e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| structure in ||| 0.0645161 0.605812 1.69729e-06 1.38073e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| structure the debate in ||| 1 0.605812 8.48644e-07 1.6775e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| structures in ||| 0.0133333 0.605812 8.48644e-07 9.97447e-06 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| structures mounted in ||| 0.315789 0.605812 5.09187e-06 5.78519e-11 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| structures on ||| 0.0714286 0.22993 8.48644e-07 1.79385e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| struggle at ||| 0.142857 0.321886 8.48644e-07 5.48027e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| struggle for ||| 0.00387597 0.0286209 8.48644e-07 1.57621e-07 2.718 ||| 0-1 ||| 258 1.17835e+06 +en ||| struggling as ||| 0.25 0.0344031 8.48644e-07 1.25915e-08 2.718 ||| 0-0 0-1 ||| 4 1.17835e+06 +en ||| struggling to ||| 0.00806452 0.0247351 8.48644e-07 1.51785e-07 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| struggling with increased ||| 1 0.0535436 8.48644e-07 3.12902e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| struggling with ||| 0.0106383 0.0535436 8.48644e-07 6.29581e-08 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| stubbornly on ||| 0.5 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| stuck in to ||| 0.5 0.605812 8.48644e-07 4.14434e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| stuck in ||| 0.0603448 0.605812 5.94051e-06 4.66399e-06 2.718 ||| 0-1 ||| 116 1.17835e+06 +en ||| stuck on ||| 0.1 0.22993 8.48644e-07 8.38789e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| students , but also ||| 0.5 0.001622 8.48644e-07 8.03498e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| students , but ||| 0.0909091 0.001622 8.48644e-07 1.59153e-10 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| studied and ||| 0.0285714 0.00639145 8.48644e-07 3.78307e-09 2.718 ||| 0-0 0-1 ||| 35 1.17835e+06 +en ||| studied in ||| 0.0322581 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| studies ||| 0.00034626 0.0006274 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 2888 1.17835e+06 +en ||| study can turn into ||| 1 0.525896 8.48644e-07 4.98955e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| study in ||| 0.0283688 0.605812 3.39458e-06 1.56082e-05 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| study weeks during ||| 1 0.226251 8.48644e-07 1.05544e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| studying at ||| 0.0384615 0.321886 8.48644e-07 1.44007e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| style of ||| 0.015625 0.0116562 8.48644e-07 1.17278e-07 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| subject , but in ||| 0.333333 0.605812 8.48644e-07 2.03151e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| subject in some ||| 0.333333 0.605812 8.48644e-07 2.71529e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| subject in ||| 0.0421941 0.605812 8.48644e-06 0.000249269 2.718 ||| 0-1 ||| 237 1.17835e+06 +en ||| subject is dealt with in ||| 1 0.605812 8.48644e-07 5.23042e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| subject of our ||| 0.0128205 0.00607155 8.48644e-07 3.60701e-10 2.718 ||| 0-1 0-2 ||| 78 1.17835e+06 +en ||| subject of the ||| 0.00153374 0.00641155 8.48644e-07 2.10878e-08 2.718 ||| 0-1 0-2 ||| 652 1.17835e+06 +en ||| subject of ||| 0.00207147 0.0116562 6.78915e-06 7.36125e-06 2.718 ||| 0-1 ||| 3862 1.17835e+06 +en ||| subject prepared in ||| 1 0.605812 8.48644e-07 2.16117e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| subject since ||| 0.0769231 0.0075235 8.48644e-07 9.36553e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| subject to temporary ||| 1 0.0247351 8.48644e-07 2.35179e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| subject to the ||| 0.00127714 0.0247351 8.48644e-07 9.31489e-07 2.718 ||| 0-1 ||| 783 1.17835e+06 +en ||| subject to ||| 0.00740741 0.0247351 2.3762e-05 1.51729e-05 2.718 ||| 0-1 ||| 3780 1.17835e+06 +en ||| subject-matter in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| subjected to ||| 0.00161031 0.0247351 8.48644e-07 6.07139e-07 2.718 ||| 0-1 ||| 621 1.17835e+06 +en ||| subjecting them to ||| 0.0666667 0.0247351 8.48644e-07 2.41273e-10 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| subjects in ||| 0.0333333 0.605812 8.48644e-07 1.09904e-05 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| submission the ||| 1 0.0011669 8.48644e-07 2.46364e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| submissions to ||| 0.2 0.0247351 8.48644e-07 5.05949e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| submitted by ||| 0.00160772 0.0468744 8.48644e-07 4.38116e-07 2.718 ||| 0-1 ||| 622 1.17835e+06 +en ||| submitted following ||| 1 0.0089387 8.48644e-07 4.6968e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| submitted in ||| 0.0169492 0.605812 1.69729e-06 2.37817e-05 2.718 ||| 0-1 ||| 118 1.17835e+06 +en ||| submitted to ||| 0.00371058 0.0247351 1.69729e-06 1.44758e-06 2.718 ||| 0-1 ||| 539 1.17835e+06 +en ||| subsequent question , on ||| 0.5 0.22993 8.48644e-07 1.29457e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| subsequently , ||| 0.00473934 0.0293803 8.48644e-07 4.46013e-06 2.718 ||| 0-0 ||| 211 1.17835e+06 +en ||| subsequently enters ||| 1 0.0933063 8.48644e-07 5.2897e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| subsequently find ||| 1 0.0293803 8.48644e-07 1.24505e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| subsequently take ||| 0.0454545 0.0293803 8.48644e-07 6.0214e-08 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| subsequently used in ||| 1 0.605812 8.48644e-07 3.34796e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| subsequently ||| 0.00666667 0.0293803 7.6378e-06 3.74e-05 2.718 ||| 0-0 ||| 1350 1.17835e+06 +en ||| subsided in ||| 0.333333 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| subsidy in ||| 0.2 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| substance as ||| 0.125 0.066968 8.48644e-07 5.30643e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| substance in ||| 0.0232558 0.605812 8.48644e-07 1.36225e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| substance listed under ||| 1 0.205566 8.48644e-07 1.80156e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| substances . at ||| 1 0.321886 8.48644e-07 2.61719e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| substances above ||| 1 0.0146514 8.48644e-07 2.38032e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| substances in ||| 0.028169 0.605812 1.69729e-06 9.97447e-06 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| substantially in ||| 0.0238095 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| substantive points that are in ||| 1 0.605812 8.48644e-07 7.1957e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| substitute for ||| 0.0037594 0.0286209 8.48644e-07 4.94724e-08 2.718 ||| 0-1 ||| 266 1.17835e+06 +en ||| substitute in ||| 0.142857 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| substitute ||| 0.00229358 0.0096525 8.48644e-07 3.4e-06 2.718 ||| 0-0 ||| 436 1.17835e+06 +en ||| subsumed under ||| 0.166667 0.205566 8.48644e-07 3.95822e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| succeed in creating on ||| 1 0.22993 8.48644e-07 3.94848e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| succeed in this through ||| 0.333333 0.605812 8.48644e-07 5.23273e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| succeed in this ||| 0.0147059 0.605812 8.48644e-07 1.13681e-07 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| succeed in ||| 0.0157895 0.605812 7.6378e-06 1.75939e-05 2.718 ||| 0-1 ||| 570 1.17835e+06 +en ||| succeeded in driving ||| 1 0.605812 8.48644e-07 2.85829e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| succeeded in ||| 0.00829493 0.605812 7.6378e-06 8.63531e-06 2.718 ||| 0-1 ||| 1085 1.17835e+06 +en ||| succeeding in ||| 0.0212766 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| succeeding when ||| 0.125 0.142731 8.48644e-07 2.38132e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| success . in ||| 0.5 0.605812 8.48644e-07 8.30849e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| success in ||| 0.00655738 0.605812 5.09187e-06 2.74298e-05 2.718 ||| 0-1 ||| 915 1.17835e+06 +en ||| success when it ||| 0.333333 0.142731 8.48644e-07 6.2886e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| success when ||| 0.111111 0.142731 8.48644e-07 3.53626e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| successful countries on ||| 1 0.22993 8.48644e-07 1.73749e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| successful in ||| 0.0194444 0.605812 5.94051e-06 2.54441e-05 2.718 ||| 0-1 ||| 360 1.17835e+06 +en ||| successful one , in ||| 1 0.605812 8.48644e-07 1.26471e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| successful resolution through debate ||| 1 0.0366102 8.48644e-07 8.96234e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| successful resolution through ||| 1 0.0366102 8.48644e-07 4.52872e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| successfully between ||| 1 0.0035986 8.48644e-07 4.2478e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| successfully implemented ||| 0.037037 0.0703003 8.48644e-07 1.25754e-08 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| successfully in ||| 0.0333333 0.605812 1.69729e-06 1.46385e-05 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| successors in ||| 0.1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| such , in ||| 0.1 0.605812 8.48644e-07 0.000113933 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| such a ban ||| 0.0136986 0.0015231 8.48644e-07 6.56338e-11 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| such a directive on ||| 1 0.22993 8.48644e-07 8.49946e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| such a great extent as ||| 1 0.066968 8.48644e-07 1.24601e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| such a sensitive issue as ||| 0.0833333 0.066968 8.48644e-07 2.42192e-14 2.718 ||| 0-4 ||| 12 1.17835e+06 +en ||| such a success ||| 0.0384615 0.0015231 8.48644e-07 1.01264e-10 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| such a tax in ||| 0.5 0.605812 8.48644e-07 2.68062e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| such a ||| 0.000816771 0.0015231 5.09187e-06 1.70477e-06 2.718 ||| 0-1 ||| 7346 1.17835e+06 +en ||| such alternative sources ? in ||| 1 0.605812 8.48644e-07 1.41208e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| such areas is proposed in the ||| 1 0.605812 8.48644e-07 4.69581e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| such areas is proposed in ||| 1 0.605812 8.48644e-07 7.64892e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| such as Jordan , Egypt , ||| 1 0.066968 8.48644e-07 8.60051e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| such as Jordan , Egypt ||| 1 0.066968 8.48644e-07 7.21189e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| such as Jordan , ||| 0.333333 0.066968 8.48644e-07 1.10952e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| such as Jordan ||| 0.333333 0.066968 8.48644e-07 9.30379e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| such as NOW , on ||| 1 0.22993 8.48644e-07 8.36361e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| such as in ||| 0.0131579 0.605812 1.69729e-06 9.74907e-06 2.718 ||| 0-2 ||| 152 1.17835e+06 +en ||| such as still exist ||| 1 0.066968 8.48644e-07 2.58161e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| such as still ||| 1 0.066968 8.48644e-07 2.80305e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| such as the criteria ||| 0.5 0.066968 8.48644e-07 6.9912e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| such as the ||| 0.000161134 0.066968 8.48644e-07 2.28471e-06 2.718 ||| 0-1 ||| 6206 1.17835e+06 +en ||| such as this , to be very ||| 1 0.066968 8.48644e-07 1.60681e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| such as this , to be ||| 1 0.066968 8.48644e-07 4.61793e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| such as this , to ||| 0.5 0.066968 8.48644e-07 2.54812e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| such as this , ||| 0.00689655 0.066968 8.48644e-07 2.86762e-08 2.718 ||| 0-1 ||| 145 1.17835e+06 +en ||| such as this ||| 0.00160772 0.066968 8.48644e-07 2.40462e-07 2.718 ||| 0-1 ||| 622 1.17835e+06 +en ||| such as well ||| 0.166667 0.066968 8.48644e-07 5.90084e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| such as ||| 0.00231093 0.066968 5.26159e-05 3.72152e-05 2.718 ||| 0-1 ||| 26829 1.17835e+06 +en ||| such at ||| 0.5 0.321886 8.48644e-07 8.27601e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| such centres in ||| 0.333333 0.605812 8.48644e-07 1.16556e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| such comments in ||| 0.5 0.605812 8.48644e-07 4.77689e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| such concern in ||| 1 0.605812 8.48644e-07 1.27543e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| such examples over the ||| 1 0.157937 8.48644e-07 8.80515e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| such examples over ||| 1 0.157937 8.48644e-07 1.43426e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| such exchanges on ||| 1 0.22993 8.48644e-07 8.59094e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| such freeways with ||| 1 0.0535436 8.48644e-07 1.68848e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| such in ||| 0.222222 0.605812 8.48644e-06 0.000955379 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| such is the case in ||| 0.333333 0.605812 8.48644e-07 1.96672e-09 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| such matters as ||| 0.012987 0.066968 8.48644e-07 6.88481e-09 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| such matters in ||| 0.0625 0.605812 8.48644e-07 1.76745e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| such measures so as to ensure ||| 1 0.066968 8.48644e-07 6.96325e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| such measures so as to ||| 1 0.066968 8.48644e-07 1.55291e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| such measures so as ||| 1 0.066968 8.48644e-07 1.74763e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| such passengers travel by ||| 1 0.0468744 8.48644e-07 4.52399e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| such person to ||| 1 0.0247351 8.48644e-07 7.49014e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| such political conflict in ||| 1 0.605812 8.48644e-07 7.11132e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| such that ||| 0.00235849 0.0017499 8.48644e-07 2.16241e-06 2.718 ||| 0-1 ||| 424 1.17835e+06 +en ||| such thing as a ||| 0.0322581 0.066968 8.48644e-07 6.01936e-10 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| such thing as ||| 0.0133333 0.066968 8.48644e-07 1.35798e-08 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| such things at ||| 1 0.321886 8.48644e-07 3.40144e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| such time as ||| 0.015625 0.066968 8.48644e-07 6.10961e-08 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| such weapons integrated into ||| 1 0.525896 8.48644e-07 1.93358e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| such ||| 5.40599e-05 4.41e-05 1.69729e-06 2e-06 2.718 ||| 0-0 ||| 36996 1.17835e+06 +en ||| sucked in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| suddenly it ||| 0.125 0.0043899 8.48644e-07 1.93053e-09 2.718 ||| 0-0 0-1 ||| 8 1.17835e+06 +en ||| suddenly strike in ||| 1 0.605812 8.48644e-07 1.96534e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| suffer from it as a result ||| 1 0.0308834 8.48644e-07 5.73678e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| suffer from it as a ||| 1 0.0308834 8.48644e-07 1.08961e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| suffer from it as ||| 1 0.0308834 8.48644e-07 2.45818e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| suffer from it ||| 0.0714286 0.0308834 8.48644e-07 2.40894e-09 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| suffer from ||| 0.00449438 0.0308834 1.69729e-06 1.35462e-07 2.718 ||| 0-1 ||| 445 1.17835e+06 +en ||| suffer under ||| 0.0416667 0.205566 8.48644e-07 2.01304e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| suffered at ||| 0.166667 0.321886 1.69729e-06 1.36807e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| suffered by ||| 0.00498753 0.0468744 1.69729e-06 2.90943e-07 2.718 ||| 0-1 ||| 401 1.17835e+06 +en ||| suffered cruelty under ||| 1 0.205566 8.48644e-07 1.35371e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| suffered from ||| 0.015873 0.0308834 1.69729e-06 1.30134e-07 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| suffered in ||| 0.106383 0.605812 4.24322e-06 1.57929e-05 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| suffered on ||| 0.2 0.22993 8.48644e-07 2.84026e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| suffered the chains ||| 1 0.0011669 8.48644e-07 1.37162e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| suffered the ||| 0.0120482 0.0011669 8.48644e-07 9.79727e-08 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| suffering a ||| 0.0277778 0.0015231 8.48644e-07 3.65032e-08 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| suffering at ||| 0.0833333 0.321886 8.48644e-07 1.77209e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| suffering considerably at ||| 0.333333 0.321886 8.48644e-07 3.26064e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| suffering from ||| 0.00487805 0.0308834 2.54593e-06 1.68566e-07 2.718 ||| 0-1 ||| 615 1.17835e+06 +en ||| suffering greatly ||| 0.125 0.0787598 8.48644e-07 6.66272e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| suffering in ||| 0.0153846 0.605812 8.48644e-07 2.04569e-05 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| sufficient attention to ||| 0.0181818 0.0247351 8.48644e-07 3.56952e-10 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| sufficient cause for ||| 0.166667 0.0286209 8.48644e-07 1.01039e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| sufficiently as ||| 0.25 0.066968 8.48644e-07 3.36374e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| sufficiently in ||| 0.0434783 0.605812 1.69729e-06 8.63531e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| suffocating , as ||| 0.5 0.066968 8.48644e-07 1.5016e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| sugar at ||| 0.142857 0.321886 8.48644e-07 3.76019e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| suggested as an option ||| 0.25 0.066968 8.48644e-07 6.55373e-14 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| suggested as an ||| 0.2 0.066968 8.48644e-07 1.58303e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| suggested as ||| 0.0769231 0.066968 8.48644e-07 3.5616e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| suggested by Germany ||| 0.166667 0.0468744 8.48644e-07 4.36261e-12 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| suggested by ||| 0.00297619 0.0468744 8.48644e-07 1.68441e-07 2.718 ||| 0-1 ||| 336 1.17835e+06 +en ||| suggesting ||| 0.00197628 0.0015552 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 506 1.17835e+06 +en ||| suggestion in ||| 0.0238095 0.605812 8.48644e-07 7.66557e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| suggestions for ||| 0.0111111 0.0286209 8.48644e-07 1.03547e-07 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| suitability for ||| 0.0526316 0.0286209 8.48644e-07 2.07094e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| suitable for ||| 0.00881057 0.0286209 1.69729e-06 2.81877e-07 2.718 ||| 0-1 ||| 227 1.17835e+06 +en ||| suitable provision should be made in ||| 1 0.605812 8.48644e-07 2.26095e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| suitable to adaptation within ||| 0.5 0.369196 8.48644e-07 4.34449e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| suited for ||| 0.0526316 0.0286209 8.48644e-07 9.54932e-08 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| sulphur content in ||| 0.0666667 0.605812 8.48644e-07 4.09785e-11 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| summarized in ||| 0.166667 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| summed up in ||| 0.0571429 0.605812 1.69729e-06 7.40205e-09 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| summer with ||| 0.166667 0.0535436 8.48644e-07 9.21053e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| summit in ||| 0.00840336 0.605812 2.54593e-06 1.4777e-05 2.718 ||| 0-1 ||| 357 1.17835e+06 +en ||| summoned by ||| 0.25 0.0468744 8.48644e-07 5.95497e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| sums in ||| 0.0681818 0.605812 2.54593e-06 5.81844e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| sums of money being ||| 1 0.0116562 8.48644e-07 7.98998e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| sums of money ||| 0.00490196 0.0116562 8.48644e-07 2.80764e-11 2.718 ||| 0-1 ||| 204 1.17835e+06 +en ||| sums of ||| 0.0045045 0.0116562 8.48644e-07 1.71826e-07 2.718 ||| 0-1 ||| 222 1.17835e+06 +en ||| superbly on ||| 0.5 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| superior beings gathered into ||| 1 0.525896 8.48644e-07 3.68382e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| supplied on ||| 0.111111 0.22993 8.48644e-07 1.04641e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| supplied to ||| 0.0212766 0.0247351 8.48644e-07 3.54165e-07 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| supplies in ||| 0.333333 0.605812 1.69729e-06 9.46651e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| supplies of fresh ||| 0.333333 0.0116562 8.48644e-07 7.54808e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| supplies of ||| 0.00606061 0.0116562 8.48644e-07 2.79559e-07 2.718 ||| 0-1 ||| 165 1.17835e+06 +en ||| supplies within ||| 1 0.369196 8.48644e-07 2.27277e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| supply in ||| 0.016129 0.605812 8.48644e-07 2.37817e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| supply of ||| 0.00149701 0.0116562 8.48644e-07 7.02305e-07 2.718 ||| 0-1 ||| 668 1.17835e+06 +en ||| support at ||| 0.0266667 0.321886 1.69729e-06 1.36767e-05 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| support for ||| 0.000446229 0.0286209 2.54593e-06 3.93363e-06 2.718 ||| 0-1 ||| 6723 1.17835e+06 +en ||| support from ||| 0.00253165 0.0308834 1.69729e-06 1.30096e-06 2.718 ||| 0-1 ||| 790 1.17835e+06 +en ||| support in terms ||| 0.0666667 0.605812 8.48644e-07 1.73292e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| support in these fields ||| 0.333333 0.605812 8.48644e-07 6.07477e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| support in these ||| 0.0909091 0.605812 8.48644e-07 1.6374e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| support in those efforts . ||| 1 0.605812 8.48644e-07 4.21082e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| support in those efforts ||| 1 0.605812 8.48644e-07 1.39017e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| support in those ||| 0.5 0.605812 8.48644e-07 1.14323e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| support in ||| 0.0162095 0.605812 1.10324e-05 0.000157883 2.718 ||| 0-1 ||| 802 1.17835e+06 +en ||| support it in ||| 0.0188679 0.605812 8.48644e-07 2.80766e-06 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| support me here - ||| 1 0.0855319 8.48644e-07 2.32963e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| support me here ||| 1 0.0855319 8.48644e-07 6.17595e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| support of ||| 0.000704473 0.0116562 1.69729e-06 4.66249e-06 2.718 ||| 0-1 ||| 2839 1.17835e+06 +en ||| support on ||| 0.008 0.22993 8.48644e-07 2.83942e-05 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| support regional competitiveness . in ||| 1 0.605812 8.48644e-07 5.50679e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| support specific activities in ||| 0.166667 0.605812 8.48644e-07 1.89656e-12 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| support take ||| 0.333333 0.0074151 8.48644e-07 1.0004e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| support the EU in as far as ||| 1 0.33639 8.48644e-07 6.00998e-16 2.718 ||| 0-3 0-4 ||| 1 1.17835e+06 +en ||| support the EU in as far ||| 1 0.33639 8.48644e-07 5.8896e-14 2.718 ||| 0-3 0-4 ||| 1 1.17835e+06 +en ||| support the EU in as ||| 1 0.33639 8.48644e-07 8.62692e-11 2.718 ||| 0-3 0-4 ||| 1 1.17835e+06 +en ||| support them during ||| 0.333333 0.226251 8.48644e-07 2.65165e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| support them in ||| 0.0136986 0.605812 8.48644e-07 4.23505e-07 2.718 ||| 0-2 ||| 73 1.17835e+06 +en ||| support to ||| 0.00140056 0.0247351 1.69729e-06 9.61023e-06 2.718 ||| 0-1 ||| 1428 1.17835e+06 +en ||| support you on ||| 0.333333 0.22993 8.48644e-07 9.16765e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| supported , in ||| 0.142857 0.605812 8.48644e-07 2.8526e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| supported by ||| 0.00164745 0.0468744 2.54593e-06 4.40668e-07 2.718 ||| 0-1 ||| 1821 1.17835e+06 +en ||| supported in ||| 0.0157895 0.605812 2.54593e-06 2.39203e-05 2.718 ||| 0-1 ||| 190 1.17835e+06 +en ||| supporters in ||| 0.111111 0.605812 1.69729e-06 2.67833e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| supreme in ||| 0.166667 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| sure , on ||| 0.2 0.22993 8.48644e-07 1.72526e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| sure at ||| 0.333333 0.321886 8.48644e-07 6.96835e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| sure if ||| 0.0196078 0.0178573 8.48644e-07 2.01985e-07 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| sure in ||| 0.214286 0.605812 2.54593e-06 8.04423e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| sure that , even in ||| 0.5 0.605812 8.48644e-07 9.81946e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| sure that no ||| 0.111111 0.0017499 8.48644e-07 1.41726e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| sure that politics in our own countries ||| 1 0.605812 8.48644e-07 1.08136e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| sure that politics in our own ||| 1 0.605812 8.48644e-07 2.84794e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| sure that politics in our ||| 1 0.605812 8.48644e-07 1.6799e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| sure that politics in ||| 1 0.605812 8.48644e-07 1.21785e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| sure that ||| 0.000308642 0.0017499 8.48644e-07 1.82074e-07 2.718 ||| 0-1 ||| 3240 1.17835e+06 +en ||| sure there is consensus on ||| 1 0.22993 8.48644e-07 2.15426e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| sure they are taken into ||| 0.5 0.525896 8.48644e-07 1.74077e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| sure to ||| 0.021978 0.0247351 1.69729e-06 4.89647e-06 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| sure way for ||| 1 0.0286209 8.48644e-07 4.32027e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| surely , at ||| 1 0.321886 8.48644e-07 3.03876e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| surely for ||| 0.5 0.0286209 8.48644e-07 7.32881e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| surely in ||| 0.222222 0.605812 1.69729e-06 2.94155e-05 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| surely that cannot ||| 0.166667 0.0017499 8.48644e-07 1.50003e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| surely that ||| 0.0196078 0.0017499 8.48644e-07 6.65792e-08 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| surely ||| 0.000434405 0.0031453 8.48644e-07 1.02e-05 2.718 ||| 0-0 ||| 2302 1.17835e+06 +en ||| surface , as ||| 0.5 0.066968 8.48644e-07 2.70288e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| surfaced at ||| 1 0.321886 8.48644e-07 1.60008e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| surfacing in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| surplus of ||| 0.0138889 0.0116562 8.48644e-07 1.07732e-07 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| surprising as a ||| 1 0.066968 8.48644e-07 3.98664e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| surprising as ||| 0.166667 0.066968 8.48644e-07 8.99395e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| surrounded by ||| 0.00645161 0.0468744 8.48644e-07 3.65805e-08 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| surrounding area ||| 0.0238095 0.0985915 8.48644e-07 6.32917e-08 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| surrounding it in ||| 1 0.605812 8.48644e-07 1.24e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| surrounding ||| 0.020934 0.0985915 2.20648e-05 0.0001524 2.718 ||| 0-0 ||| 1242 1.17835e+06 +en ||| surveillance in ||| 0.111111 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| survey of ||| 0.0192308 0.0116562 8.48644e-07 6.8185e-08 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| survival in ||| 0.0833333 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| survive when ||| 0.1 0.142731 8.48644e-07 3.45291e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| survived in ||| 0.142857 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| surviving ||| 0.011236 0.0083333 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| suspects through ||| 0.333333 0.0366102 8.48644e-07 6.5828e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| suspend for six months ||| 0.2 0.0286209 8.48644e-07 3.44916e-17 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| suspend for six ||| 0.2 0.0286209 8.48644e-07 8.55872e-13 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| suspend for ||| 0.166667 0.0286209 8.48644e-07 4.94724e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| suspended in ||| 0.04 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| suspicion in ||| 0.0909091 0.605812 8.48644e-07 2.81686e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| sustainable . at ||| 1 0.321886 8.48644e-07 1.69632e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| sustainable agriculture in ||| 0.125 0.605812 8.48644e-07 9.30951e-11 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| sustained in ||| 0.05 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| swathe through ||| 0.5 0.0366102 8.48644e-07 1.03444e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| sweep over ||| 0.5 0.157937 8.48644e-07 1.44259e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| sweeping through the ||| 0.166667 0.0366102 8.48644e-07 2.88664e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| sweeping through ||| 0.142857 0.0366102 1.69729e-06 4.702e-09 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| swept out ||| 0.5 0.0120599 8.48644e-07 5.33985e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| swept together ||| 1 0.0128468 8.48644e-07 1.57043e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| swift , ||| 0.02 0.0001187 8.48644e-07 1.0692e-09 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| swift in ||| 0.5 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| switch in ||| 0.125 0.605812 8.48644e-07 5.81844e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| switch operators for ||| 1 0.0286209 8.48644e-07 1.88455e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| switch over to ||| 0.266667 0.157937 3.39458e-06 4.48651e-09 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| switch over ||| 0.294118 0.157937 4.24322e-06 5.04907e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| switched over ||| 1 0.157937 8.48644e-07 1.60288e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| switching on ||| 0.25 0.22993 8.48644e-07 2.07621e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| switching to ||| 0.0208333 0.0247351 8.48644e-07 7.02708e-08 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| sympathetic to ||| 0.0149254 0.0247351 8.48644e-07 1.32109e-07 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| sympathy with a request for ||| 0.5 0.0286209 8.48644e-07 3.8769e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| synthesis in ||| 0.333333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| system across the board on ||| 1 0.22993 8.48644e-07 1.94769e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| system as ||| 0.00892857 0.066968 8.48644e-07 5.01683e-06 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| system for ||| 0.00616333 0.0286209 3.39458e-06 3.2088e-06 2.718 ||| 0-1 ||| 649 1.17835e+06 +en ||| system in order ||| 0.111111 0.605812 8.48644e-07 6.8594e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| system in the ||| 0.0357143 0.605812 8.48644e-07 7.9067e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| system in ||| 0.0386905 0.605812 1.10324e-05 0.000128791 2.718 ||| 0-1 ||| 336 1.17835e+06 +en ||| system left ||| 1 0.00062 8.48644e-07 7.5303e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| system of ||| 0.000724113 0.0116562 1.69729e-06 3.80336e-06 2.718 ||| 0-1 ||| 2762 1.17835e+06 +en ||| system should become ||| 0.5 0.219193 8.48644e-07 4.7251e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| systematically riding roughshod over ||| 0.333333 0.157937 8.48644e-07 1.04588e-19 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| systems in ||| 0.025 0.605812 3.39458e-06 2.42435e-05 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| systems to ||| 0.00952381 0.0247351 8.48644e-07 1.47569e-06 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| systems ||| 8.12414e-05 0.0002556 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 12309 1.17835e+06 +en ||| table at the ||| 0.04 0.321886 8.48644e-07 1.66257e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| table at ||| 0.0769231 0.321886 1.69729e-06 2.70814e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| table in ||| 0.0886076 0.605812 5.94051e-06 3.12626e-05 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| tabled , in ||| 0.153846 0.605812 1.69729e-06 4.49918e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| tabled at ||| 0.0131579 0.321886 8.48644e-07 3.26816e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| tabled for ||| 0.0106383 0.0286209 8.48644e-07 9.39975e-07 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| tabled in ||| 0.0127226 0.605812 4.24322e-06 3.77275e-05 2.718 ||| 0-1 ||| 393 1.17835e+06 +en ||| tabled on ||| 0.0144928 0.22993 1.69729e-06 6.78505e-06 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| tabled this amendment ||| 0.0588235 0.0050742 8.48644e-07 2.84008e-11 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| tabled under ||| 0.0526316 0.205566 8.48644e-07 4.61981e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| tables turned on ||| 0.166667 0.22993 8.48644e-07 8.38623e-12 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| tablets in Mesopotamia prove how ||| 0.5 0.605812 8.48644e-07 7.70447e-21 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| tablets in Mesopotamia prove ||| 0.5 0.605812 8.48644e-07 2.14968e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| tablets in Mesopotamia ||| 0.5 0.605812 8.48644e-07 4.06367e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| tablets in ||| 0.666667 0.605812 1.69729e-06 1.01592e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| tackle them within ||| 1 0.369196 8.48644e-07 1.07952e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| tackled purely and simply in ||| 1 0.605812 8.48644e-07 5.1869e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| tackled rigorously during ||| 1 0.226251 8.48644e-07 1.64457e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| tackled within ||| 0.25 0.369196 8.48644e-07 1.7517e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| tackles the ||| 0.0227273 0.0011669 8.48644e-07 4.01058e-09 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| tactics in ||| 0.375 0.605812 2.54593e-06 2.81686e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| tag on ||| 0.5 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| tailored to ||| 0.00653595 0.0247351 8.48644e-07 6.18383e-08 2.718 ||| 0-1 ||| 153 1.17835e+06 +en ||| take , ||| 0.00393701 0.0074151 8.48644e-07 3.48939e-05 2.718 ||| 0-0 ||| 254 1.17835e+06 +en ||| take Ostend airport in ||| 1 0.605812 8.48644e-07 1.81406e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| take a position ||| 0.00833333 0.0074151 8.48644e-07 4.27093e-09 2.718 ||| 0-0 ||| 120 1.17835e+06 +en ||| take a stand ||| 0.0258621 0.0074151 2.54593e-06 2.13741e-09 2.718 ||| 0-0 ||| 116 1.17835e+06 +en ||| take a ||| 0.00299625 0.0074151 6.78915e-06 1.29697e-05 2.718 ||| 0-0 ||| 2670 1.17835e+06 +en ||| take account of it ||| 0.0666667 0.233636 8.48644e-07 5.1453e-09 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| take account of ||| 0.00245549 0.233636 3.39458e-06 2.89335e-07 2.718 ||| 0-1 ||| 1629 1.17835e+06 +en ||| take account ||| 0.00403587 0.233636 7.6378e-06 5.32218e-06 2.718 ||| 0-1 ||| 2230 1.17835e+06 +en ||| take action in accordance with ||| 0.25 0.605812 8.48644e-07 1.14255e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| take action in accordance ||| 0.25 0.605812 8.48644e-07 1.78676e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| take action in ||| 0.0294118 0.605812 4.24322e-06 2.2475e-07 2.718 ||| 0-2 ||| 170 1.17835e+06 +en ||| take action on ||| 0.00943396 0.22993 8.48644e-07 4.04199e-08 2.718 ||| 0-2 ||| 106 1.17835e+06 +en ||| take action ||| 0.00120337 0.0074151 1.69729e-06 8.8453e-08 2.718 ||| 0-0 ||| 1662 1.17835e+06 +en ||| take an active part in ||| 0.0227273 0.605812 8.48644e-07 1.58766e-13 2.718 ||| 0-4 ||| 44 1.17835e+06 +en ||| take any initiatives ||| 0.166667 0.0074151 8.48644e-07 1.40263e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| take any ||| 0.00431034 0.0074151 8.48644e-07 4.4247e-07 2.718 ||| 0-0 ||| 232 1.17835e+06 +en ||| take as ||| 0.0140845 0.066968 8.48644e-07 2.89605e-05 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| take at ||| 0.0322581 0.321886 8.48644e-07 6.44032e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| take away our ||| 0.2 0.0004869 8.48644e-07 2.50949e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| take care of ||| 0.00613497 0.0074151 8.48644e-07 1.61455e-09 2.718 ||| 0-0 ||| 163 1.17835e+06 +en ||| take care ||| 0.00211416 0.0074151 8.48644e-07 2.96989e-08 2.718 ||| 0-0 ||| 473 1.17835e+06 +en ||| take centre ||| 0.0714286 0.0074151 8.48644e-07 9.3632e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| take first place ||| 0.142857 0.138055 8.48644e-07 1.48094e-08 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| take first ||| 0.111111 0.138055 8.48644e-07 9.84016e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| take for the ||| 0.25 0.0286209 8.48644e-07 1.13718e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| take for ||| 0.0120482 0.0286209 8.48644e-07 1.85234e-05 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| take hold in ||| 0.333333 0.605812 1.69729e-06 1.29512e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| take hold on ||| 1 0.22993 8.48644e-07 2.32919e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| take in the ||| 0.0140845 0.605812 8.48644e-07 4.56428e-05 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| take in ||| 0.0791367 0.605812 1.86702e-05 0.000743468 2.718 ||| 0-1 ||| 278 1.17835e+06 +en ||| take into account facts ||| 1 0.525896 8.48644e-07 2.10059e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| take into account in ||| 0.05 0.605812 8.48644e-07 2.19454e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| take into account ||| 0.00199203 0.525896 2.54593e-06 1.02468e-08 2.718 ||| 0-1 ||| 1506 1.17835e+06 +en ||| take into ||| 0.00815376 0.525896 1.1881e-05 3.56411e-05 2.718 ||| 0-1 ||| 1717 1.17835e+06 +en ||| take it in ||| 0.2 0.605812 8.48644e-07 1.32212e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| take it on trust ||| 0.5 0.22993 8.48644e-07 4.54151e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| take it on ||| 0.0625 0.22993 8.48644e-07 2.37775e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| take just one example from this building ||| 1 0.0308834 8.48644e-07 3.53275e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| take just one example from this ||| 1 0.0308834 8.48644e-07 6.05961e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| take just one example from ||| 1 0.0308834 8.48644e-07 9.37817e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| take measures in ||| 0.0384615 0.605812 8.48644e-07 1.53823e-07 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| take note of ||| 0.00347222 0.0116562 8.48644e-07 2.29216e-09 2.718 ||| 0-2 ||| 288 1.17835e+06 +en ||| take off in ||| 0.2 0.605812 8.48644e-07 3.02591e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| take on more ||| 0.0555556 0.22993 8.48644e-07 3.05349e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| take on such a role ||| 0.25 0.22993 8.48644e-07 2.72211e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| take on such a ||| 0.2 0.22993 8.48644e-07 1.22618e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| take on such ||| 0.125 0.22993 8.48644e-07 2.76628e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| take on the ||| 0.00645161 0.22993 8.48644e-07 8.20857e-06 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| take on ||| 0.0191226 0.22993 1.4427e-05 0.000133708 2.718 ||| 0-1 ||| 889 1.17835e+06 +en ||| take out ||| 0.010101 0.0120599 8.48644e-07 8.86305e-07 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| take over in ||| 0.333333 0.381874 8.48644e-07 2.97922e-06 2.718 ||| 0-1 0-2 ||| 3 1.17835e+06 +en ||| take over ||| 0.00613497 0.157937 1.69729e-06 6.45159e-06 2.718 ||| 0-1 ||| 326 1.17835e+06 +en ||| take part , under ||| 1 0.205566 8.48644e-07 1.29435e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| take part in ||| 0.017842 0.605812 1.78215e-05 8.86362e-07 2.718 ||| 0-2 ||| 1177 1.17835e+06 +en ||| take part ||| 0.000664452 0.0074151 8.48644e-07 3.48838e-07 2.718 ||| 0-0 ||| 1505 1.17835e+06 +en ||| take place , then , ||| 1 0.0074151 8.48644e-07 1.00855e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| take place , then ||| 1 0.0074151 8.48644e-07 8.45707e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| take place , ||| 0.00769231 0.0074151 8.48644e-07 5.25154e-08 2.718 ||| 0-0 ||| 130 1.17835e+06 +en ||| take place at ||| 0.0425532 0.321886 5.09187e-06 9.69268e-08 2.718 ||| 0-2 ||| 141 1.17835e+06 +en ||| take place by ||| 0.05 0.0468744 8.48644e-07 2.06131e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| take place during ||| 0.0344828 0.226251 8.48644e-07 7.00576e-09 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| take place in the ||| 0.00990099 0.605812 8.48644e-07 6.86924e-08 2.718 ||| 0-2 ||| 101 1.17835e+06 +en ||| take place in ||| 0.0845324 0.605812 3.98863e-05 1.11892e-06 2.718 ||| 0-2 ||| 556 1.17835e+06 +en ||| take place on ||| 0.0168776 0.22993 3.39458e-06 2.0123e-07 2.718 ||| 0-2 ||| 237 1.17835e+06 +en ||| take place through ||| 0.0384615 0.0366102 8.48644e-07 2.27864e-09 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| take place when ||| 0.0666667 0.142731 8.48644e-07 1.44251e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| take place within ||| 0.0641026 0.369196 4.24322e-06 2.68636e-08 2.718 ||| 0-2 ||| 78 1.17835e+06 +en ||| take place ||| 0.00100033 0.0074151 2.54593e-06 4.40363e-07 2.718 ||| 0-0 ||| 2999 1.17835e+06 +en ||| take root in ||| 0.1 0.605812 8.48644e-07 1.33824e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| take sides in ||| 0.0833333 0.605812 8.48644e-07 2.72853e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| take steps towards ||| 0.0344828 0.0616136 8.48644e-07 9.4629e-11 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| take that into ||| 0.0294118 0.525896 8.48644e-07 5.9954e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| take the form of ||| 0.0294118 0.0116562 2.54593e-06 6.1356e-10 2.718 ||| 0-3 ||| 102 1.17835e+06 +en ||| take the helm in ||| 0.5 0.605812 8.48644e-07 1.14107e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| take the liberty of calling on ||| 0.5 0.22993 8.48644e-07 2.9702e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| take the necessary ||| 0.0294118 0.0074151 8.48644e-07 4.62194e-09 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| take the opportunity at ||| 0.2 0.321886 8.48644e-07 7.11294e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| take the view that at ||| 1 0.321886 8.48644e-07 6.00782e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| take the ||| 0.00283126 0.004291 8.48644e-06 8.38211e-07 2.718 ||| 0-0 0-1 ||| 3532 1.17835e+06 +en ||| take this opportunity ||| 0.00175439 0.0013296 8.48644e-07 1.38158e-10 2.718 ||| 0-1 ||| 570 1.17835e+06 +en ||| take this ||| 0.00159109 0.0074151 1.69729e-06 1.89061e-06 2.718 ||| 0-0 ||| 1257 1.17835e+06 +en ||| take to ||| 0.00928793 0.0160751 2.54593e-06 8.22449e-06 2.718 ||| 0-0 0-1 ||| 323 1.17835e+06 +en ||| take under ||| 0.5 0.205566 8.48644e-07 9.10391e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| take up at ||| 0.5 0.321886 8.48644e-07 2.19647e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| take up ||| 0.00520291 0.0074151 4.24322e-06 9.97912e-07 2.718 ||| 0-0 ||| 961 1.17835e+06 +en ||| take us in ||| 0.0526316 0.605812 8.48644e-07 2.14282e-06 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| take us into ||| 0.0769231 0.525896 8.48644e-07 1.02725e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| take very ||| 0.0144928 0.0074151 8.48644e-07 1.0181e-06 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| take when ||| 0.0833333 0.142731 8.48644e-07 9.58481e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| take with ||| 0.0555556 0.0535436 2.54593e-06 1.87708e-05 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| take you in ||| 1 0.605812 8.48644e-07 2.40043e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| take ||| 0.00628931 0.0074151 0.000171426 0.0002926 2.718 ||| 0-0 ||| 32118 1.17835e+06 +en ||| taken , by ||| 0.5 0.0468744 8.48644e-07 9.24727e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| taken , with ||| 0.5 0.0535436 8.48644e-07 1.26733e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| taken , ||| 0.0045045 0.0042106 1.69729e-06 1.06256e-05 2.718 ||| 0-0 ||| 444 1.17835e+06 +en ||| taken a great ||| 0.0357143 0.0042106 8.48644e-07 1.55213e-09 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| taken a ||| 0.00269542 0.0042106 1.69729e-06 3.94943e-06 2.718 ||| 0-0 ||| 742 1.17835e+06 +en ||| taken against it ||| 0.2 0.0080472 8.48644e-07 5.99799e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| taken against them ||| 0.125 0.153982 8.48644e-07 1.41784e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| taken against ||| 0.00746269 0.153982 8.48644e-07 5.2857e-06 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| taken and ||| 0.00396825 0.0042106 8.48644e-07 1.11606e-06 2.718 ||| 0-0 ||| 252 1.17835e+06 +en ||| taken any ||| 0.0153846 0.0042106 8.48644e-07 1.34737e-07 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| taken apart by ||| 0.25 0.0468744 8.48644e-07 4.83088e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| taken as a ||| 0.114286 0.066968 1.01837e-05 7.26765e-07 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| taken as ||| 0.157258 0.066968 3.30971e-05 1.6396e-05 2.718 ||| 0-1 ||| 248 1.17835e+06 +en ||| taken aside at ||| 0.5 0.321886 8.48644e-07 2.57056e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| taken at a ||| 0.0909091 0.321886 8.48644e-07 1.6162e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| taken at face ||| 1 0.321886 8.48644e-07 6.10006e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| taken at ||| 0.0397196 0.321886 1.4427e-05 3.64618e-05 2.718 ||| 0-1 ||| 428 1.17835e+06 +en ||| taken by ||| 0.00178811 0.0468744 3.39458e-06 7.75422e-06 2.718 ||| 0-1 ||| 2237 1.17835e+06 +en ||| taken down by ||| 1 0.0468744 8.48644e-07 5.41322e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| taken during ||| 0.0512821 0.226251 1.69729e-06 2.63542e-06 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| taken for the specific ||| 1 0.0286209 8.48644e-07 9.72805e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| taken for the ||| 0.0285714 0.0286209 8.48644e-07 6.43815e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| taken for ||| 0.0195122 0.0286209 3.39458e-06 1.0487e-05 2.718 ||| 0-1 ||| 205 1.17835e+06 +en ||| taken forward at ||| 0.5 0.321886 8.48644e-07 2.02874e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| taken forward in ||| 0.125 0.605812 8.48644e-07 2.34196e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| taken forward ||| 0.0135135 0.0042106 8.48644e-07 4.95752e-08 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| taken from ||| 0.0333333 0.0308834 3.39458e-06 3.46835e-06 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| taken further ||| 0.0526316 0.0042106 8.48644e-07 4.3062e-08 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| taken hold in ||| 0.333333 0.605812 8.48644e-07 7.33231e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| taken hostage in ||| 0.2 0.605812 8.48644e-07 3.19894e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| taken if ||| 0.0714286 0.0178573 8.48644e-07 1.05688e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| taken in a ||| 0.0967742 0.605812 2.54593e-06 1.86573e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| taken in by ||| 0.0555556 0.326343 8.48644e-07 3.58075e-06 2.718 ||| 0-1 0-2 ||| 18 1.17835e+06 +en ||| taken in the United States ||| 1 0.605812 8.48644e-07 1.50933e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| taken in the United ||| 0.5 0.605812 8.48644e-07 3.16289e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| taken in the ||| 0.00970874 0.605812 2.54593e-06 2.58406e-05 2.718 ||| 0-1 ||| 309 1.17835e+06 +en ||| taken in ||| 0.0695088 0.605812 6.36483e-05 0.000420913 2.718 ||| 0-1 ||| 1079 1.17835e+06 +en ||| taken into account in ||| 0.0108303 0.605812 2.54593e-06 1.24244e-10 2.718 ||| 0-3 ||| 277 1.17835e+06 +en ||| taken into account when assessing ||| 0.5 0.525896 8.48644e-07 1.24701e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| taken into account when considering ||| 0.5 0.525896 8.48644e-07 8.75809e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| taken into account when ||| 0.0227273 0.525896 1.69729e-06 2.90003e-12 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| taken into account where ||| 0.333333 0.247783 8.48644e-07 2.29142e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| taken into account ||| 0.00554187 0.525896 7.6378e-06 5.80122e-09 2.718 ||| 0-1 ||| 1624 1.17835e+06 +en ||| taken into consideration in a number ||| 1 0.605812 8.48644e-07 1.02364e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| taken into consideration in a ||| 1 0.605812 8.48644e-07 2.06879e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| taken into consideration in ||| 0.0172414 0.605812 8.48644e-07 4.66724e-11 2.718 ||| 0-3 ||| 58 1.17835e+06 +en ||| taken into consideration ||| 0.00198413 0.525896 8.48644e-07 2.17924e-09 2.718 ||| 0-1 ||| 504 1.17835e+06 +en ||| taken into service ||| 0.0769231 0.525896 8.48644e-07 1.34992e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| taken into ||| 0.0210416 0.525896 3.39458e-05 2.01781e-05 2.718 ||| 0-1 ||| 1901 1.17835e+06 +en ||| taken leave of ||| 0.333333 0.0116562 8.48644e-07 1.18086e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| taken me to ||| 0.333333 0.0247351 8.48644e-07 1.54262e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| taken of ||| 0.00833333 0.0116562 1.69729e-06 1.24301e-05 2.718 ||| 0-1 ||| 240 1.17835e+06 +en ||| taken off ||| 0.0102041 0.0262428 8.48644e-07 1.52585e-07 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| taken on a ||| 0.0140845 0.22993 8.48644e-07 3.3554e-06 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| taken on and ||| 0.333333 0.22993 8.48644e-07 9.48193e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| taken on board ||| 0.0128755 0.22993 2.54593e-06 1.01058e-08 2.718 ||| 0-1 ||| 233 1.17835e+06 +en ||| taken on by ||| 0.0434783 0.22993 8.48644e-07 3.97425e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| taken on them ||| 1 0.22993 8.48644e-07 2.03054e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| taken on ||| 0.0325694 0.22993 2.29134e-05 7.56986e-05 2.718 ||| 0-1 ||| 829 1.17835e+06 +en ||| taken out of ||| 0.0121951 0.0116562 8.48644e-07 4.76124e-08 2.718 ||| 0-2 ||| 82 1.17835e+06 +en ||| taken over by ||| 0.0111111 0.157937 8.48644e-07 1.91763e-08 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| taken over the ||| 0.0212766 0.157937 8.48644e-07 2.24237e-07 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| taken over ||| 0.0198413 0.157937 4.24322e-06 3.65256e-06 2.718 ||| 0-1 ||| 252 1.17835e+06 +en ||| taken part in ||| 0.0106952 0.605812 1.69729e-06 5.01813e-07 2.718 ||| 0-2 ||| 187 1.17835e+06 +en ||| taken place at ||| 0.0555556 0.321886 8.48644e-07 5.4875e-08 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| taken place during ||| 0.0909091 0.226251 8.48644e-07 3.96631e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| taken place in ||| 0.0897959 0.605812 1.86702e-05 6.33475e-07 2.718 ||| 0-2 ||| 245 1.17835e+06 +en ||| taken place over ||| 0.0416667 0.157937 8.48644e-07 5.49711e-09 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| taken place ||| 0.00189215 0.0042106 1.69729e-06 1.34095e-07 2.718 ||| 0-0 ||| 1057 1.17835e+06 +en ||| taken refuge in ||| 0.5 0.605812 8.48644e-07 1.05228e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| taken seriously in ||| 0.0606061 0.605812 1.69729e-06 1.75521e-08 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| taken their seats in ||| 0.08 0.605812 1.69729e-06 4.73244e-12 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| taken them into ||| 0.333333 0.525896 8.48644e-07 5.41259e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| taken to mean that ||| 0.142857 0.0247351 8.48644e-07 1.11064e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| taken to mean ||| 0.0625 0.0247351 8.48644e-07 6.60246e-09 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| taken to ||| 0.01649 0.0247351 1.1881e-05 2.56207e-05 2.718 ||| 0-1 ||| 849 1.17835e+06 +en ||| taken towards ||| 0.0147059 0.0616136 8.48644e-07 9.08036e-07 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| taken under ||| 0.0149254 0.205566 8.48644e-07 5.15417e-06 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| taken up again in ||| 0.5 0.605812 8.48644e-07 8.30164e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| taken up as a ||| 0.5 0.066968 8.48644e-07 2.47863e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| taken up as ||| 0.5 0.066968 8.48644e-07 5.59185e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| taken up by ||| 0.00628931 0.0468744 8.48644e-07 2.64458e-08 2.718 ||| 0-2 ||| 159 1.17835e+06 +en ||| taken up for ||| 0.25 0.0286209 8.48644e-07 3.57659e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| taken up in ||| 0.0886076 0.605812 5.94051e-06 1.43553e-06 2.718 ||| 0-2 ||| 79 1.17835e+06 +en ||| taken up on ||| 1 0.22993 8.48644e-07 2.5817e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| taken up over ||| 0.333333 0.157937 8.48644e-07 1.24571e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| taken up under ||| 0.142857 0.205566 8.48644e-07 1.75783e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| taken up ||| 0.00142045 0.0147069 8.48644e-07 6.28935e-07 2.718 ||| 0-1 ||| 704 1.17835e+06 +en ||| taken when ||| 0.125 0.142731 2.54593e-06 5.42643e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| taken with regard to ||| 0.0416667 0.0535436 8.48644e-07 6.42976e-10 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| taken with regard ||| 0.0416667 0.0535436 8.48644e-07 7.23598e-09 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| taken with ||| 0.010989 0.0535436 8.48644e-07 1.06271e-05 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| taken within ||| 0.0666667 0.369196 2.54593e-06 1.01055e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| taken ||| 0.00322749 0.0042106 5.77078e-05 8.91e-05 2.718 ||| 0-0 ||| 21069 1.17835e+06 +en ||| takes , in the ||| 0.5 0.605812 8.48644e-07 4.36802e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| takes , in ||| 0.5 0.605812 8.48644e-07 7.11499e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| takes account in ||| 0.5 0.605812 8.48644e-07 1.71529e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| takes account of ||| 0.0025 0.233636 8.48644e-07 2.32187e-08 2.718 ||| 0-1 ||| 400 1.17835e+06 +en ||| takes account ||| 0.00187617 0.233636 8.48644e-07 4.27096e-07 2.718 ||| 0-1 ||| 533 1.17835e+06 +en ||| takes in ||| 0.0882353 0.605812 2.54593e-06 5.96621e-05 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| takes into ||| 0.00327869 0.525896 8.48644e-07 2.86014e-06 2.718 ||| 0-1 ||| 305 1.17835e+06 +en ||| takes it untreated into ||| 0.5 0.525896 8.48644e-07 1.11897e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| takes on a monitoring role as soon ||| 1 0.22993 8.48644e-07 3.78073e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| takes on a monitoring role as ||| 1 0.22993 8.48644e-07 4.10502e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| takes on a monitoring role ||| 1 0.22993 8.48644e-07 4.0228e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| takes on a monitoring ||| 1 0.22993 8.48644e-07 1.81207e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| takes on a ||| 0.04 0.22993 8.48644e-07 4.75609e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| takes on ||| 0.00763359 0.22993 8.48644e-07 1.07299e-05 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| takes place at the ||| 0.142857 0.321886 8.48644e-07 4.77519e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| takes place at ||| 0.0714286 0.321886 2.54593e-06 7.77823e-09 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| takes place in or ||| 0.5 0.605812 8.48644e-07 1.02659e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| takes place in ||| 0.0382166 0.605812 5.09187e-06 8.97915e-08 2.718 ||| 0-2 ||| 157 1.17835e+06 +en ||| takes place within ||| 0.0588235 0.369196 8.48644e-07 2.15576e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| takes the form of ||| 0.0243902 0.0116562 8.48644e-07 4.92373e-11 2.718 ||| 0-3 ||| 41 1.17835e+06 +en ||| takes the form ||| 0.0232558 0.0117268 8.48644e-07 1.52024e-09 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| takes the view that those ||| 1 0.0117268 8.48644e-07 3.67458e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| takes the view that ||| 0.00465116 0.0117268 8.48644e-07 5.07468e-11 2.718 ||| 0-0 ||| 215 1.17835e+06 +en ||| takes the view ||| 0.0041841 0.0117268 8.48644e-07 3.01676e-09 2.718 ||| 0-0 ||| 239 1.17835e+06 +en ||| takes the ||| 0.0233766 0.0117268 7.6378e-06 3.33971e-06 2.718 ||| 0-0 ||| 385 1.17835e+06 +en ||| takes this ||| 0.0196078 0.0117268 8.48644e-07 3.515e-07 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| takes to obtain ||| 0.5 0.0117268 8.48644e-07 2.90517e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| takes to ||| 0.0172414 0.0117268 8.48644e-07 4.83389e-06 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| takes us in ||| 0.0833333 0.605812 8.48644e-07 1.71958e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| takes ||| 0.00754559 0.0117268 3.05512e-05 5.44e-05 2.718 ||| 0-0 ||| 4771 1.17835e+06 +en ||| taking a leading role in ||| 0.0526316 0.605812 8.48644e-07 1.6821e-13 2.718 ||| 0-4 ||| 19 1.17835e+06 +en ||| taking account ||| 0.00270636 0.233636 1.69729e-06 1.40492e-06 2.718 ||| 0-1 ||| 739 1.17835e+06 +en ||| taking action against ||| 0.0188679 0.153982 8.48644e-07 7.45028e-10 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| taking action at ||| 0.333333 0.321886 8.48644e-07 5.13936e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| taking all this into ||| 0.25 0.263613 8.48644e-07 2.12066e-11 2.718 ||| 0-2 0-3 ||| 4 1.17835e+06 +en ||| taking at ||| 0.2 0.321886 8.48644e-07 1.70009e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| taking centre stage ||| 0.125 0.0153333 8.48644e-07 8.24907e-13 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| taking centre ||| 0.333333 0.0153333 8.48644e-07 5.5104e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| taking everything into ||| 0.333333 0.525896 8.48644e-07 8.70273e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| taking in this ||| 0.25 0.605812 8.48644e-07 1.26809e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| taking in ||| 0.0588235 0.605812 4.24322e-06 0.000196257 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| taking into account ||| 0.000837521 0.525896 8.48644e-07 2.7049e-09 2.718 ||| 0-1 ||| 1194 1.17835e+06 +en ||| taking into ||| 0.0143824 0.525896 1.4427e-05 9.40835e-06 2.718 ||| 0-1 ||| 1182 1.17835e+06 +en ||| taking no account ||| 0.2 0.233636 8.48644e-07 1.09359e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| taking off in ||| 0.333333 0.605812 8.48644e-07 7.98766e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| taking on ||| 0.00983607 0.22993 2.54593e-06 3.52956e-05 2.718 ||| 0-1 ||| 305 1.17835e+06 +en ||| taking one 's ||| 1 0.0153333 8.48644e-07 1.36684e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| taking one ||| 0.0833333 0.0153333 8.48644e-07 7.1773e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| taking over ||| 0.00719424 0.157937 8.48644e-07 1.70306e-06 2.718 ||| 0-1 ||| 139 1.17835e+06 +en ||| taking part in ||| 0.0317073 0.605812 1.10324e-05 2.33978e-07 2.718 ||| 0-2 ||| 410 1.17835e+06 +en ||| taking part ||| 0.00184843 0.0153333 8.48644e-07 2.05297e-07 2.718 ||| 0-0 ||| 541 1.17835e+06 +en ||| taking place at a ||| 0.0384615 0.321886 8.48644e-07 1.13413e-09 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| taking place at ||| 0.0824742 0.321886 6.78915e-06 2.55863e-08 2.718 ||| 0-2 ||| 97 1.17835e+06 +en ||| taking place for ||| 0.125 0.0286209 8.48644e-07 7.35901e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| taking place in ||| 0.0696798 0.605812 3.13998e-05 2.95367e-07 2.718 ||| 0-2 ||| 531 1.17835e+06 +en ||| taking place up in ||| 1 0.605812 8.48644e-07 1.00735e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| taking place within ||| 0.0645161 0.369196 1.69729e-06 7.09133e-09 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| taking place ||| 0.00535906 0.0153333 8.48644e-06 2.59161e-07 2.718 ||| 0-0 ||| 1866 1.17835e+06 +en ||| taking refuge behind ||| 1 0.0374138 8.48644e-07 2.47244e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| taking root on ||| 1 0.22993 8.48644e-07 6.3532e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| taking shape in ||| 0.125 0.605812 8.48644e-07 1.18735e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| taking shape ||| 0.010989 0.0153333 8.48644e-07 1.04181e-08 2.718 ||| 0-0 ||| 91 1.17835e+06 +en ||| taking stock , I would say ||| 0.5 0.0060084 8.48644e-07 1.83757e-17 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| taking stock , I would ||| 0.5 0.0060084 8.48644e-07 1.92254e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| taking stock , I ||| 0.5 0.0060084 8.48644e-07 3.27593e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| taking the opportunity of ||| 0.2 0.0116562 8.48644e-07 6.40102e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| taking the ||| 0.00334821 0.0153333 2.54593e-06 1.05717e-05 2.718 ||| 0-0 ||| 896 1.17835e+06 +en ||| taking to ||| 0.0185185 0.0200342 1.69729e-06 4.84025e-06 2.718 ||| 0-0 0-1 ||| 108 1.17835e+06 +en ||| taking up ||| 0.00684932 0.0153333 1.69729e-06 5.87288e-07 2.718 ||| 0-0 ||| 292 1.17835e+06 +en ||| taking with ||| 0.0625 0.0535436 8.48644e-07 4.95503e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| taking ||| 0.0107826 0.0153333 0.000101837 0.0001722 2.718 ||| 0-0 ||| 11129 1.17835e+06 +en ||| tale in ||| 1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| talk about ||| 0.00165426 0.0401564 3.39458e-06 2.30148e-07 2.718 ||| 0-1 ||| 2418 1.17835e+06 +en ||| talk at ||| 0.125 0.321886 8.48644e-07 3.21216e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| talk in ||| 0.0243902 0.605812 1.69729e-06 3.7081e-05 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| talk of the town ||| 0.333333 0.0116562 8.48644e-07 8.47062e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| talk of the ||| 0.0117647 0.0116562 8.48644e-07 6.72272e-08 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| talk of ||| 0.00169492 0.0116562 8.48644e-07 1.09505e-06 2.718 ||| 0-1 ||| 590 1.17835e+06 +en ||| talking about a ||| 0.00246305 0.0401564 8.48644e-07 1.38984e-08 2.718 ||| 0-1 ||| 406 1.17835e+06 +en ||| talking about in ||| 0.0625 0.605812 8.48644e-07 7.14488e-08 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| talking about ||| 0.00176456 0.0401564 5.94051e-06 3.13551e-07 2.718 ||| 0-1 ||| 3967 1.17835e+06 +en ||| talking here ||| 0.0168067 0.0855319 1.69729e-06 3.28211e-07 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| talking in ||| 0.0697674 0.605812 2.54593e-06 5.05189e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| talking on ||| 0.0909091 0.22993 8.48644e-07 9.08549e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| talking to ||| 0.00502513 0.0247351 8.48644e-07 3.07505e-06 2.718 ||| 0-1 ||| 199 1.17835e+06 +en ||| talks at ||| 0.0384615 0.321886 8.48644e-07 1.05205e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| talks in ||| 0.0113636 0.605812 8.48644e-07 1.21448e-05 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| talks ||| 0.000282087 0.0002155 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 3545 1.17835e+06 +en ||| tantamount to ||| 0.00568182 0.0247351 8.48644e-07 2.41731e-07 2.718 ||| 0-1 ||| 176 1.17835e+06 +en ||| target date of ||| 0.0555556 0.0116562 8.48644e-07 5.26819e-11 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| target ||| 0.00084317 0.0020414 2.54593e-06 4.8e-06 2.718 ||| 0-0 ||| 3558 1.17835e+06 +en ||| targeted at ||| 0.00392157 0.321886 8.48644e-07 1.12406e-06 2.718 ||| 0-1 ||| 255 1.17835e+06 +en ||| targeted in ||| 0.0689655 0.605812 1.69729e-06 1.2976e-05 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| targeted specifically at ||| 0.25 0.321886 8.48644e-07 6.30596e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| targeting ||| 0.00817439 0.0508772 2.54593e-06 1.97e-05 2.718 ||| 0-0 ||| 367 1.17835e+06 +en ||| targets in ||| 0.016129 0.605812 8.48644e-07 1.09904e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| targets ||| 0.000405927 0.0004161 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 4927 1.17835e+06 +en ||| tariffs on ||| 0.0227273 0.22993 8.48644e-07 2.65755e-07 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| task at ||| 0.047619 0.321886 8.48644e-07 5.04025e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| task for being ||| 0.142857 0.0286209 8.48644e-07 4.12543e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| task for ||| 0.00446429 0.0286209 8.48644e-07 1.44966e-06 2.718 ||| 0-1 ||| 224 1.17835e+06 +en ||| task in ||| 0.015873 0.605812 1.69729e-06 5.81844e-05 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| task now is to ||| 0.0454545 0.0247351 8.48644e-07 2.28647e-10 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| task of ||| 0.00158856 0.0116562 1.69729e-06 1.71826e-06 2.718 ||| 0-1 ||| 1259 1.17835e+06 +en ||| task over ||| 0.2 0.157937 8.48644e-07 5.04907e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| task when it comes ||| 0.5 0.142731 8.48644e-07 5.33312e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| task when it ||| 0.5 0.142731 8.48644e-07 1.33395e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| task when ||| 0.2 0.142731 8.48644e-07 7.50116e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| tasks in ||| 0.025974 0.605812 1.69729e-06 7.48085e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| taste in ||| 0.0869565 0.605812 1.69729e-06 1.4777e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| taught in ||| 0.027027 0.605812 8.48644e-07 3.50954e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| taught to them in ||| 1 0.605812 8.48644e-07 8.36509e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| tax in ||| 0.0634921 0.605812 3.39458e-06 2.92307e-05 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| tax incentives in ||| 0.2 0.605812 8.48644e-07 1.9e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| tax within ||| 0.166667 0.369196 8.48644e-07 7.01788e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| taxes on ||| 0.00367647 0.22993 8.48644e-07 1.3786e-06 2.718 ||| 0-1 ||| 272 1.17835e+06 +en ||| taxpayers in ||| 0.02 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| teach us about ||| 0.5 0.0401564 8.48644e-07 2.3956e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| teaching ||| 0.00113766 0.0024969 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 879 1.17835e+06 +en ||| technical and ||| 0.00118906 0.0010182 8.48644e-07 3.05414e-08 2.718 ||| 0-1 ||| 841 1.17835e+06 +en ||| technical sciences specialising in ||| 1 0.605812 8.48644e-07 4.27979e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| technologies at ||| 0.142857 0.321886 8.48644e-07 3.32017e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| technology in the ||| 0.05 0.605812 8.48644e-07 5.10292e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| technology in ||| 0.0243902 0.605812 1.69729e-06 8.31206e-06 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| teetering on ||| 1 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| teeth into ||| 0.333333 0.525896 8.48644e-07 1.35038e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| teeth with ||| 0.2 0.0535436 8.48644e-07 7.11193e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| television ||| 0.000425351 0.0018188 8.48644e-07 3.4e-06 2.718 ||| 0-0 ||| 2351 1.17835e+06 +en ||| tell people in ||| 0.5 0.605812 8.48644e-07 3.99143e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| tell you in ||| 0.0666667 0.605812 8.48644e-07 1.46412e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| tempo in the ||| 1 0.605812 8.48644e-07 1.13398e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| tempo in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| temporarily by ||| 0.5 0.0468744 8.48644e-07 2.46706e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| temporary asylum in ||| 0.333333 0.605812 8.48644e-07 1.20964e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| tendency to ||| 0.0046729 0.0247351 8.48644e-07 3.0357e-07 2.718 ||| 0-1 ||| 214 1.17835e+06 +en ||| tenders for public procurement . ||| 0.5 0.0286209 8.48644e-07 7.03955e-20 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| tenders for public procurement ||| 0.5 0.0286209 8.48644e-07 2.32405e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| tenders for public ||| 0.5 0.0286209 8.48644e-07 4.6481e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| tenders for ||| 0.0769231 0.0286209 8.48644e-07 2.8763e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| tending to ||| 0.0285714 0.0247351 8.48644e-07 6.18383e-08 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| tending towards ||| 0.0526316 0.0616136 8.48644e-07 2.19164e-09 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| term , in ||| 0.0645161 0.605812 1.69729e-06 6.02461e-06 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| term at ||| 0.142857 0.321886 8.48644e-07 4.37622e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| term for ||| 0.0238095 0.0286209 8.48644e-07 1.25867e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| term in ||| 0.0294118 0.605812 1.69729e-06 5.05189e-05 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| term to you ||| 1 0.0247351 8.48644e-07 9.92841e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| term to ||| 0.0111111 0.0247351 8.48644e-07 3.07505e-06 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| term where ||| 1 0.247783 8.48644e-07 9.31716e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| term which is not usual in Dutch ||| 1 0.605812 8.48644e-07 1.31869e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| term which is not usual in ||| 1 0.605812 8.48644e-07 7.94389e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| terminate in ||| 0.333333 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| terminated at ||| 0.25 0.321886 8.48644e-07 4.40022e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| terms at ||| 0.5 0.321886 8.48644e-07 4.39062e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| terms but from ||| 1 0.0308834 8.48644e-07 2.8542e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| terms for ||| 0.0126582 0.0286209 8.48644e-07 1.26281e-05 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| terms in which ||| 0.04 0.605812 8.48644e-07 4.3055e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| terms in ||| 0.128571 0.605812 7.6378e-06 0.000506851 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| terms of putting it into ||| 0.333333 0.525896 8.48644e-07 2.62857e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| terms of the criminal law in ||| 1 0.605812 8.48644e-07 1.24363e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| terms of the ||| 0.000438982 0.0116562 8.48644e-07 9.18911e-07 2.718 ||| 0-1 ||| 2278 1.17835e+06 +en ||| terms of their bio-diversity in general ||| 0.25 0.605812 1.69729e-06 3.91021e-18 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| terms of their bio-diversity in ||| 0.25 0.605812 1.69729e-06 2.23568e-14 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| terms of ||| 0.00165736 0.0116562 1.61242e-05 1.4968e-05 2.718 ||| 0-1 ||| 11464 1.17835e+06 +en ||| terms on the subject in ||| 0.5 0.605812 8.48644e-07 1.12387e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| terms on ||| 0.0540541 0.22993 1.69729e-06 9.11539e-05 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| terms with in ||| 1 0.605812 8.48644e-07 3.24106e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| terms with ||| 0.016129 0.0535436 1.69729e-06 1.27968e-05 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| terms within ||| 0.142857 0.369196 8.48644e-07 1.21688e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| territories , and in ||| 1 0.605812 8.48644e-07 4.00082e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| territory in ||| 0.04 0.605812 1.69729e-06 1.4269e-05 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| terrorism in ||| 0.0107143 0.605812 2.54593e-06 1.19601e-05 2.718 ||| 0-1 ||| 280 1.17835e+06 +en ||| terrorists in ||| 0.0238095 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| test with ||| 0.111111 0.0535436 8.48644e-07 2.89141e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| testament to that ||| 0.166667 0.0247351 8.48644e-07 6.61957e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| testament to ||| 0.027027 0.0247351 8.48644e-07 3.93516e-08 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| tested in ||| 0.03125 0.605812 8.48644e-07 4.98724e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| testing in ||| 0.2 0.605812 1.69729e-06 3.32482e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| tests in ||| 0.105263 0.605812 1.69729e-06 7.66557e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| text , ||| 0.00238949 0.0008604 1.69729e-06 8.10932e-07 2.718 ||| 0-0 ||| 837 1.17835e+06 +en ||| text in ||| 0.0271739 0.605812 4.24322e-06 3.98979e-05 2.718 ||| 0-1 ||| 184 1.17835e+06 +en ||| text of ||| 0.00368098 0.0116562 2.54593e-06 1.17824e-06 2.718 ||| 0-1 ||| 815 1.17835e+06 +en ||| text proposed recognises that ||| 1 0.0008604 8.48644e-07 5.99982e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| text proposed recognises ||| 1 0.0008604 8.48644e-07 3.56674e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| text proposed ||| 0.0196078 0.0008604 8.48644e-07 7.5888e-10 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| text ||| 0.000478774 0.0008604 5.09187e-06 6.8e-06 2.718 ||| 0-0 ||| 12532 1.17835e+06 +en ||| textile sector in ||| 0.0833333 0.605812 8.48644e-07 3.68737e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| texts in ||| 0.0212766 0.605812 8.48644e-07 5.17195e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| than anticipated in ||| 0.5 0.605812 8.48644e-07 1.21324e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| than anywhere else in ||| 0.142857 0.605812 8.48644e-07 5.02732e-13 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| than as ||| 0.0104167 0.066968 8.48644e-07 5.4953e-06 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| than at present ||| 0.0147059 0.321886 8.48644e-07 4.47274e-09 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| than at ||| 0.00568182 0.321886 8.48644e-07 1.22206e-05 2.718 ||| 0-1 ||| 176 1.17835e+06 +en ||| than elsewhere ||| 0.025641 0.226899 8.48644e-07 2.40917e-07 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| than ever ||| 0.00084246 0.0013548 8.48644e-07 9.84596e-09 2.718 ||| 0-0 ||| 1187 1.17835e+06 +en ||| than have you take it on trust ||| 1 0.22993 8.48644e-07 5.35751e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| than have you take it on ||| 1 0.22993 8.48644e-07 2.80498e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| than in ||| 0.00912547 0.605812 1.01837e-05 0.000141074 2.718 ||| 0-1 ||| 1315 1.17835e+06 +en ||| than is ||| 0.00308642 0.0013548 8.48644e-07 1.64227e-06 2.718 ||| 0-0 ||| 324 1.17835e+06 +en ||| than it did in ||| 0.25 0.605812 8.48644e-07 1.13947e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| than men ||| 0.00396825 0.0013548 8.48644e-07 2.227e-09 2.718 ||| 0-0 ||| 252 1.17835e+06 +en ||| than more in ||| 1 0.605812 8.48644e-07 3.22171e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| than on ||| 0.00554017 0.22993 1.69729e-06 2.53713e-05 2.718 ||| 0-1 ||| 361 1.17835e+06 +en ||| than once in ||| 0.0833333 0.605812 8.48644e-07 5.77275e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| than stated in ||| 0.25 0.605812 8.48644e-07 8.78892e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| than the first half ||| 1 0.138055 8.48644e-07 3.30134e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| than the first ||| 0.0322581 0.138055 8.48644e-07 1.1463e-07 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| than this in ||| 0.5 0.605812 8.48644e-07 9.11536e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| than to try their luck across ||| 1 0.274879 8.48644e-07 9.65575e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| than upon winning ||| 0.2 0.114601 8.48644e-07 1.83621e-12 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| than upon ||| 0.0909091 0.114601 8.48644e-07 2.70031e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| than we do at ||| 0.0714286 0.321886 8.48644e-07 4.76586e-10 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| than we have today ||| 0.166667 0.0398284 8.48644e-07 5.00392e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| than with ||| 0.00462963 0.0535436 8.48644e-07 3.56179e-06 2.718 ||| 0-1 ||| 216 1.17835e+06 +en ||| than words ||| 0.0227273 0.0013548 8.48644e-07 1.18424e-08 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| than ||| 0.00054486 0.0013548 2.03675e-05 5.24e-05 2.718 ||| 0-0 ||| 44048 1.17835e+06 +en ||| thank him for ||| 0.00371747 0.0286209 8.48644e-07 3.9025e-10 2.718 ||| 0-2 ||| 269 1.17835e+06 +en ||| thank you for the ||| 0.00234192 0.0286209 8.48644e-07 2.41278e-10 2.718 ||| 0-2 ||| 427 1.17835e+06 +en ||| thank you for ||| 0.000340368 0.0286209 8.48644e-07 3.93014e-09 2.718 ||| 0-2 ||| 2938 1.17835e+06 +en ||| thank you very much for your supplementary ||| 1 0.0286209 8.48644e-07 3.16112e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| thank you very much for your ||| 0.00431034 0.0286209 8.48644e-07 3.51236e-18 2.718 ||| 0-4 ||| 232 1.17835e+06 +en ||| thank you very much for ||| 0.00209205 0.0286209 8.48644e-07 1.37255e-14 2.718 ||| 0-4 ||| 478 1.17835e+06 +en ||| thanks in ||| 0.030303 0.605812 8.48644e-07 3.74043e-05 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| thanks to ||| 0.00126614 0.0247351 4.24322e-06 2.27677e-06 2.718 ||| 0-1 ||| 3949 1.17835e+06 +en ||| that 's right ||| 0.5 0.0071334 8.48644e-07 5.73427e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| that 's ||| 0.025 0.0017499 8.48644e-07 1.99048e-06 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| that , as ||| 0.00196078 0.066968 3.39458e-06 3.60847e-05 2.718 ||| 0-2 ||| 2040 1.17835e+06 +en ||| that , at ||| 0.00793651 0.321886 5.09187e-06 8.02462e-05 2.718 ||| 0-2 ||| 756 1.17835e+06 +en ||| that , during ||| 0.00732601 0.226251 1.69729e-06 5.80011e-06 2.718 ||| 0-2 ||| 273 1.17835e+06 +en ||| that , even at ||| 0.0909091 0.321886 8.48644e-07 4.88298e-08 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| that , even in ||| 0.0188679 0.605812 8.48644e-07 5.63689e-07 2.718 ||| 0-3 ||| 53 1.17835e+06 +en ||| that , firstly , ||| 0.015873 0.295867 8.48644e-07 1.27951e-06 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| that , firstly ||| 0.0175439 0.295867 8.48644e-07 1.07292e-05 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| that , for the ||| 0.00431034 0.0286209 8.48644e-07 1.41693e-06 2.718 ||| 0-2 ||| 232 1.17835e+06 +en ||| that , for ||| 0.00105152 0.0286209 8.48644e-07 2.30801e-05 2.718 ||| 0-2 ||| 951 1.17835e+06 +en ||| that , given ||| 0.00444444 0.0546585 8.48644e-07 2.32883e-06 2.718 ||| 0-2 ||| 225 1.17835e+06 +en ||| that , in fact , is ||| 0.125 0.605812 8.48644e-07 1.01422e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| that , in fact , ||| 0.012987 0.605812 8.48644e-07 3.23607e-07 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| that , in fact ||| 0.0135135 0.605812 8.48644e-07 2.71358e-06 2.718 ||| 0-2 ||| 74 1.17835e+06 +en ||| that , in line with your wish ||| 1 0.605812 8.48644e-07 1.31515e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that , in line with your ||| 1 0.605812 8.48644e-07 4.46266e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that , in line with ||| 0.030303 0.605812 8.48644e-07 1.74391e-09 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| that , in line ||| 0.0357143 0.605812 8.48644e-07 2.7272e-07 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| that , in the ||| 0.00204638 0.605812 2.54593e-06 5.68708e-05 2.718 ||| 0-2 ||| 1466 1.17835e+06 +en ||| that , in this report , he ||| 1 0.0056615 8.48644e-07 1.8553e-15 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| that , in ||| 0.00852767 0.605812 4.15836e-05 0.000926358 2.718 ||| 0-2 ||| 5746 1.17835e+06 +en ||| that , inter alia , ||| 0.25 0.0017499 8.48644e-07 2.66491e-15 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| that , inter alia ||| 0.333333 0.0017499 8.48644e-07 2.23464e-14 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| that , inter ||| 0.5 0.0017499 8.48644e-07 1.34617e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| that , it will be in ||| 1 0.605812 8.48644e-07 2.58281e-09 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that , on ||| 0.0045045 0.22993 2.54593e-06 0.0001666 2.718 ||| 0-2 ||| 666 1.17835e+06 +en ||| that , over ||| 0.00840336 0.157937 8.48644e-07 8.03866e-06 2.718 ||| 0-2 ||| 119 1.17835e+06 +en ||| that , putting it in ||| 1 0.605812 8.48644e-07 1.8434e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that , to ||| 0.0106762 0.0247351 2.54593e-06 5.63868e-05 2.718 ||| 0-2 ||| 281 1.17835e+06 +en ||| that , ||| 0.000277726 0.0017499 7.6378e-06 0.000124645 2.718 ||| 0-0 ||| 32406 1.17835e+06 +en ||| that - in ||| 0.0714286 0.605812 8.48644e-07 2.93013e-05 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| that . now , in ||| 1 0.605812 8.48644e-07 5.77995e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that 30 000 arrivals per year from ||| 1 0.0117312 8.48644e-07 3.13473e-28 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that 30 000 arrivals per year ||| 1 0.0117312 8.48644e-07 1.94656e-25 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that 30 000 arrivals per ||| 1 0.0117312 8.48644e-07 7.80496e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that Europe on the ||| 1 0.22993 8.48644e-07 4.3397e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that Europe on ||| 1 0.22993 8.48644e-07 7.06886e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that I , at ||| 1 0.321886 8.48644e-07 5.67622e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that I consider ||| 0.00621118 0.0126304 8.48644e-07 1.44094e-08 2.718 ||| 0-2 ||| 161 1.17835e+06 +en ||| that I do in ||| 1 0.605812 8.48644e-07 1.88757e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that I have heard in ||| 0.25 0.605812 8.48644e-07 5.20459e-11 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| that I have in ||| 0.0833333 0.605812 8.48644e-07 6.57146e-07 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| that I have sometimes described as push ||| 0.5 0.066968 8.48644e-07 1.78677e-21 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| that I have sometimes described as ||| 0.5 0.066968 8.48644e-07 6.45044e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| that I received , ||| 0.5 0.0060084 8.48644e-07 4.36756e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| that I received ||| 0.0322581 0.0060084 8.48644e-07 3.66238e-09 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| that I refer here to ||| 1 0.0551335 8.48644e-07 7.83652e-13 2.718 ||| 0-3 0-4 ||| 1 1.17835e+06 +en ||| that I shall ||| 0.0149254 0.0060084 8.48644e-07 2.23422e-08 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| that I will be ||| 0.0217391 0.0060084 8.48644e-07 6.40855e-09 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| that I will ||| 0.0181818 0.0060084 2.54593e-06 3.53616e-07 2.718 ||| 0-1 ||| 165 1.17835e+06 +en ||| that I ||| 0.00200927 0.0060084 1.10324e-05 4.08748e-05 2.718 ||| 0-1 ||| 6470 1.17835e+06 +en ||| that Member was ||| 0.5 0.0017499 8.48644e-07 1.68741e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| that Member ||| 0.00980392 0.0017499 8.48644e-07 5.38592e-07 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| that a great ||| 0.0204082 0.0017499 8.48644e-07 1.82074e-08 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| that a whole week ' ||| 1 0.0017499 8.48644e-07 2.75472e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that a whole week ||| 1 0.0017499 8.48644e-07 8.0198e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that a whole ||| 0.0344828 0.0017499 8.48644e-07 2.62085e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| that a ||| 0.000363416 0.0017499 2.54593e-06 4.63293e-05 2.718 ||| 0-0 ||| 8255 1.17835e+06 +en ||| that about ||| 0.0144928 0.0401564 8.48644e-07 4.82124e-05 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| that achieved ||| 0.0416667 0.0017499 8.48644e-07 1.74862e-07 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| that action is targeted at ||| 0.2 0.321886 8.48644e-07 1.79146e-13 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| that affected ||| 0.0333333 0.0017499 8.48644e-07 6.96103e-08 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| that against ||| 0.1 0.153982 8.48644e-07 9.75468e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| that agreement is on ||| 1 0.22993 8.48644e-07 8.06934e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that already existed in ||| 1 0.605812 8.48644e-07 5.32402e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that amount in ||| 0.5 0.605812 8.48644e-07 1.88993e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| that amounts to ||| 0.025641 0.0247351 8.48644e-07 2.8606e-08 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| that applies in ||| 0.0333333 0.605812 8.48644e-07 6.5095e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| that approval in ||| 1 0.605812 8.48644e-07 2.3226e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that are actually ||| 0.0277778 0.125341 8.48644e-07 3.42824e-07 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| that are around in ||| 1 0.605812 8.48644e-07 1.56989e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that are at ||| 0.059322 0.321886 5.94051e-06 1.02097e-05 2.718 ||| 0-2 ||| 118 1.17835e+06 +en ||| that are being said in ||| 0.5 0.605812 8.48644e-07 1.37952e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| that are being ||| 0.00378788 0.0017499 8.48644e-07 4.51301e-08 2.718 ||| 0-0 ||| 264 1.17835e+06 +en ||| that are in the ||| 0.0666667 0.605812 2.54593e-06 7.23564e-06 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| that are in ||| 0.0717703 0.605812 1.27297e-05 0.00011786 2.718 ||| 0-2 ||| 209 1.17835e+06 +en ||| that are now occurring on ||| 1 0.22993 8.48644e-07 8.47051e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that are on the ||| 0.025 0.22993 8.48644e-07 1.30128e-06 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| that are on ||| 0.0487805 0.22993 1.69729e-06 2.11964e-05 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| that are piling up in ||| 1 0.605812 8.48644e-07 4.42158e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that are present both ||| 1 0.0017499 8.48644e-07 9.61468e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that are present ||| 0.0714286 0.0017499 8.48644e-07 5.80421e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| that are proposed in ||| 0.25 0.605812 8.48644e-07 1.31532e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| that are so ||| 0.0253165 0.0087276 1.69729e-06 1.73837e-07 2.718 ||| 0-2 ||| 79 1.17835e+06 +en ||| that are taking place in ||| 0.0384615 0.605812 8.48644e-07 7.53862e-11 2.718 ||| 0-4 ||| 26 1.17835e+06 +en ||| that are the ||| 0.0115607 0.0011669 1.69729e-06 7.31155e-07 2.718 ||| 0-2 ||| 173 1.17835e+06 +en ||| that are there ||| 0.0357143 0.0117359 8.48644e-07 2.86214e-07 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| that are to be covered by ||| 0.5 0.0468744 8.48644e-07 2.50351e-13 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| that are under ||| 0.0952381 0.205566 3.39458e-06 1.44322e-06 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| that are undergoing ||| 0.1 0.130682 8.48644e-07 1.19958e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| that are ||| 0.00300418 0.0017499 1.95188e-05 1.58585e-05 2.718 ||| 0-0 ||| 7656 1.17835e+06 +en ||| that arise in ||| 0.0384615 0.605812 8.48644e-07 3.37904e-07 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| that as an ||| 0.025 0.066968 8.48644e-07 1.3449e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| that as far as ||| 0.00909091 0.066968 8.48644e-07 2.10797e-09 2.718 ||| 0-3 ||| 110 1.17835e+06 +en ||| that as it ||| 0.0192308 0.066968 8.48644e-07 5.38093e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| that as ||| 0.0200308 0.066968 2.20648e-05 0.000302585 2.718 ||| 0-1 ||| 1298 1.17835e+06 +en ||| that at some point in ||| 1 0.605812 8.48644e-07 3.09959e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that at ||| 0.0193076 0.321886 2.46107e-05 0.000672898 2.718 ||| 0-1 ||| 1502 1.17835e+06 +en ||| that be in ||| 0.166667 0.605812 8.48644e-07 0.000140777 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| that be ||| 0.00840336 0.0017499 8.48644e-07 1.89421e-05 2.718 ||| 0-0 ||| 119 1.17835e+06 +en ||| that being the ||| 0.0128205 0.0011669 1.69729e-06 1.37136e-07 2.718 ||| 0-2 ||| 156 1.17835e+06 +en ||| that being ||| 0.0210084 0.0017499 8.48644e-06 2.97443e-06 2.718 ||| 0-0 ||| 476 1.17835e+06 +en ||| that by ||| 0.00651891 0.0468744 4.24322e-06 0.000143103 2.718 ||| 0-1 ||| 767 1.17835e+06 +en ||| that call in ||| 1 0.605812 8.48644e-07 1.72447e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that came forward at ||| 0.5 0.321886 8.48644e-07 4.71744e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that can be made ||| 0.0232558 0.0017499 8.48644e-07 1.1802e-10 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| that can be ||| 0.00109529 0.0017499 8.48644e-07 5.63394e-08 2.718 ||| 0-0 ||| 913 1.17835e+06 +en ||| that can ||| 0.000452284 0.0017499 8.48644e-07 3.10874e-06 2.718 ||| 0-0 ||| 2211 1.17835e+06 +en ||| that cannot ||| 0.00175131 0.0017499 8.48644e-07 2.35484e-07 2.718 ||| 0-0 ||| 571 1.17835e+06 +en ||| that city by ||| 0.25 0.0468744 8.48644e-07 2.93361e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| that comes from ||| 0.0185185 0.0308834 8.48644e-07 2.55903e-08 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| that comes up with ||| 0.25 0.0535436 8.48644e-07 2.67415e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| that committee that it manages to ||| 1 0.0247351 8.48644e-07 3.94115e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that concept we ||| 1 0.0054082 8.48644e-07 2.2621e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that consideration in ||| 1 0.605812 8.48644e-07 8.38933e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that could be taken ||| 0.04 0.0042106 8.48644e-07 1.93154e-11 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| that country in ||| 0.0454545 0.605812 1.69729e-06 2.79567e-06 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| that country under way in the ||| 1 0.205566 8.48644e-07 9.69694e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that country under way in ||| 1 0.205566 8.48644e-07 1.57952e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that country under way ||| 1 0.205566 8.48644e-07 7.37937e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that country under ||| 0.125 0.205566 8.48644e-07 3.42335e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| that currently ||| 0.00666667 0.104436 8.48644e-07 1.97788e-05 2.718 ||| 0-1 ||| 150 1.17835e+06 +en ||| that do not ||| 0.00106724 0.0012896 8.48644e-07 6.52408e-10 2.718 ||| 0-0 0-2 ||| 937 1.17835e+06 +en ||| that does not in ||| 0.2 0.605812 8.48644e-07 1.86014e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| that does not neglect ||| 1 0.0017499 8.48644e-07 1.45167e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that does not ||| 0.000611621 0.0017499 8.48644e-07 2.50289e-09 2.718 ||| 0-0 ||| 1635 1.17835e+06 +en ||| that does ||| 0.00462963 0.0017499 8.48644e-07 7.33103e-07 2.718 ||| 0-0 ||| 216 1.17835e+06 +en ||| that during ||| 0.00598802 0.226251 2.54593e-06 4.86363e-05 2.718 ||| 0-1 ||| 501 1.17835e+06 +en ||| that effect at ||| 0.25 0.321886 8.48644e-07 2.24479e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| that eight soldiers were killed a few ||| 1 0.0005269 8.48644e-07 1.83346e-26 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| that eight soldiers were killed a ||| 1 0.0005269 8.48644e-07 1.0459e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| that eight soldiers were killed ||| 1 0.0005269 8.48644e-07 2.35957e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| that eight soldiers were ||| 1 0.0005269 8.48644e-07 9.91416e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| that eight soldiers ||| 1 0.0005269 8.48644e-07 5.53431e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| that eight ||| 0.0833333 0.0005269 8.48644e-07 1.17751e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| that emerge from the 1994 reports tell ||| 1 0.0308834 8.48644e-07 2.08507e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that emerge from the 1994 reports ||| 1 0.0308834 8.48644e-07 2.12329e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that emerge from the 1994 ||| 1 0.0308834 8.48644e-07 4.27222e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that emerge from the ||| 0.5 0.0308834 8.48644e-07 1.18673e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| that emerge from ||| 0.1 0.0308834 8.48644e-07 1.93304e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| that entails ||| 0.016129 0.0015039 8.48644e-07 7.3164e-10 2.718 ||| 0-0 0-1 ||| 62 1.17835e+06 +en ||| that enter ||| 0.1 0.194429 8.48644e-07 8.22913e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| that even ||| 0.00125313 0.0031459 8.48644e-07 1.3943e-07 2.718 ||| 0-0 0-1 ||| 798 1.17835e+06 +en ||| that everyone needs for living ||| 1 0.0286209 8.48644e-07 2.16443e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that everyone needs for ||| 1 0.0286209 8.48644e-07 2.58285e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that exist in , for instance , ||| 1 0.605812 8.48644e-07 5.06725e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that exist in , for instance ||| 1 0.605812 8.48644e-07 4.2491e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that exist in , for ||| 1 0.605812 8.48644e-07 6.55725e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that exist in , ||| 1 0.605812 8.48644e-07 8.53176e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that exist in ||| 0.0177515 0.605812 2.54593e-06 7.15423e-07 2.718 ||| 0-2 ||| 169 1.17835e+06 +en ||| that existed in ||| 0.0526316 0.605812 8.48644e-07 1.14965e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| that expressed their wishes within ||| 1 0.369196 8.48644e-07 1.11151e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that extent ||| 0.00746269 0.0400323 8.48644e-07 3.39965e-06 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| that faces us ||| 0.04 0.0017499 8.48644e-07 2.9221e-11 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| that faces ||| 0.030303 0.0017499 8.48644e-07 1.01384e-08 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| that fact in ||| 0.333333 0.605812 8.48644e-07 2.27545e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| that fall under ||| 0.0909091 0.205566 8.48644e-07 9.10293e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| that falls within ||| 0.0526316 0.369196 8.48644e-07 5.83733e-09 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| that first ||| 0.00892857 0.138055 8.48644e-07 0.000102812 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| that for ||| 0.00184502 0.0286209 1.69729e-06 0.000193536 2.718 ||| 0-1 ||| 1084 1.17835e+06 +en ||| that from which ||| 1 0.0308834 8.48644e-07 5.43721e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| that from ||| 0.0194175 0.0308834 5.09187e-06 6.40079e-05 2.718 ||| 0-1 ||| 309 1.17835e+06 +en ||| that go along ||| 0.2 0.155535 8.48644e-07 7.82555e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| that go back to ||| 0.5 0.0247351 8.48644e-07 1.8598e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that go on in ||| 0.2 0.605812 8.48644e-07 3.0395e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| that goes on in a ||| 0.5 0.417871 8.48644e-07 3.96042e-09 2.718 ||| 0-2 0-3 ||| 2 1.17835e+06 +en ||| that goes on in ||| 0.142857 0.417871 8.48644e-07 8.93479e-08 2.718 ||| 0-2 0-3 ||| 7 1.17835e+06 +en ||| that goes out based on a ||| 0.333333 0.22993 8.48644e-07 7.70685e-15 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| that goes out based on ||| 0.333333 0.22993 8.48644e-07 1.73868e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| that goes without saying in ||| 0.5 0.605812 8.48644e-07 4.21793e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| that grows in ||| 1 0.605812 8.48644e-07 2.48573e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that had been ||| 0.00465116 0.0017499 8.48644e-07 3.50305e-09 2.718 ||| 0-0 ||| 215 1.17835e+06 +en ||| that had ||| 0.00492611 0.0017499 1.69729e-06 1.04907e-06 2.718 ||| 0-0 ||| 406 1.17835e+06 +en ||| that happens to a ||| 1 0.0247351 8.48644e-07 1.25122e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that happens to ||| 0.166667 0.0247351 8.48644e-07 2.82277e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| that has , during ||| 1 0.226251 8.48644e-07 2.9856e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that has become a ||| 0.1 0.219193 8.48644e-07 1.46751e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| that has become ||| 0.0175439 0.219193 8.48644e-07 3.31074e-07 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| that has been added to ||| 0.5 0.0247351 8.48644e-07 5.79469e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| that has been applied to ||| 0.333333 0.0247351 8.48644e-07 8.80175e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| that has been going on ||| 0.037037 0.22993 8.48644e-07 2.05499e-11 2.718 ||| 0-4 ||| 27 1.17835e+06 +en ||| that has been in ||| 0.0645161 0.605812 1.69729e-06 1.33519e-07 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| that has been made in ||| 0.0289855 0.605812 1.69729e-06 2.79695e-10 2.718 ||| 0-4 ||| 69 1.17835e+06 +en ||| that has been mentioned in ||| 0.142857 0.605812 8.48644e-07 1.18164e-11 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| that has been tabled , in ||| 1 0.605812 8.48644e-07 1.30089e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that has been used ||| 0.0909091 0.0017499 8.48644e-07 7.70718e-12 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| that has been ||| 0.000781555 0.0017499 1.69729e-06 1.79655e-08 2.718 ||| 0-0 ||| 2559 1.17835e+06 +en ||| that has come about in ||| 0.333333 0.605812 8.48644e-07 4.80289e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| that has come to light of ||| 0.333333 0.0116562 8.48644e-07 1.54878e-14 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| that has developed over time ||| 1 0.157937 8.48644e-07 3.91341e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that has developed over ||| 0.25 0.157937 8.48644e-07 2.38375e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| that has something to do with the ||| 0.5 0.0535436 8.48644e-07 1.04716e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| that has something to do with ||| 0.1 0.0535436 8.48644e-07 1.70569e-13 2.718 ||| 0-5 ||| 10 1.17835e+06 +en ||| that has taken place in ||| 0.0487805 0.605812 1.69729e-06 5.48521e-11 2.718 ||| 0-4 ||| 41 1.17835e+06 +en ||| that has taken place over ||| 0.111111 0.157937 8.48644e-07 4.7599e-13 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| that has to live with ||| 1 0.0535436 8.48644e-07 9.04231e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that has within ||| 1 0.369196 8.48644e-07 9.59988e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that has ||| 0.00112638 0.0017499 4.24322e-06 5.38017e-06 2.718 ||| 0-0 ||| 4439 1.17835e+06 +en ||| that have a distorting effect on ||| 1 0.22993 8.48644e-07 3.45886e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that have been broken down at ||| 1 0.321886 8.48644e-07 5.60924e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that have been built up over ||| 0.2 0.157937 8.48644e-07 4.56299e-16 2.718 ||| 0-5 ||| 5 1.17835e+06 +en ||| that have been made in ||| 0.0869565 0.605812 3.39458e-06 6.49849e-10 2.718 ||| 0-4 ||| 46 1.17835e+06 +en ||| that have been made ||| 0.00271739 0.0017499 8.48644e-07 8.74396e-11 2.718 ||| 0-0 ||| 368 1.17835e+06 +en ||| that have been ||| 0.000841397 0.0017499 1.69729e-06 4.17413e-08 2.718 ||| 0-0 ||| 2377 1.17835e+06 +en ||| that have come about in ||| 0.25 0.605812 8.48644e-07 1.11591e-10 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| that have happened in ||| 0.0909091 0.605812 8.48644e-07 5.75066e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| that have hit ||| 0.125 0.0017499 8.48644e-07 3.91262e-10 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| that have taken place in ||| 0.00961538 0.605812 8.48644e-07 1.27444e-10 2.718 ||| 0-4 ||| 104 1.17835e+06 +en ||| that have ||| 0.00123762 0.0017499 4.24322e-06 1.25004e-05 2.718 ||| 0-0 ||| 4040 1.17835e+06 +en ||| that he cannot be here now ||| 1 0.0855319 8.48644e-07 3.70427e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that he cannot be here ||| 0.25 0.0855319 8.48644e-07 1.79828e-13 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| that he is ||| 0.00176367 0.0017499 8.48644e-07 2.85877e-08 2.718 ||| 0-0 ||| 567 1.17835e+06 +en ||| that he will make available ||| 0.5 0.0017499 8.48644e-07 4.36219e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| that he will make ||| 0.125 0.0017499 8.48644e-07 1.37133e-11 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| that he will ||| 0.01 0.0017499 8.48644e-07 7.89116e-09 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| that he wrote in ||| 1 0.605812 8.48644e-07 4.13522e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that he ||| 0.00109051 0.0017499 1.69729e-06 9.12146e-07 2.718 ||| 0-0 ||| 1834 1.17835e+06 +en ||| that here at ||| 1 0.321886 8.48644e-07 1.3645e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that if we enter into ||| 0.5 0.525896 8.48644e-07 1.74149e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| that in a ||| 0.00687285 0.605812 1.69729e-06 0.000344318 2.718 ||| 0-1 ||| 291 1.17835e+06 +en ||| that in many ways had been ||| 1 0.605812 8.48644e-07 8.6159e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| that in many ways had ||| 1 0.605812 8.48644e-07 2.58023e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| that in many ways ||| 0.0909091 0.605812 8.48644e-07 2.57072e-10 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| that in many ||| 0.00526316 0.605812 8.48644e-07 2.66672e-06 2.718 ||| 0-1 ||| 190 1.17835e+06 +en ||| that in terms ||| 0.016129 0.605812 8.48644e-07 8.52604e-06 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| that in the endless ||| 1 0.605812 8.48644e-07 1.71679e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| that in the view of ||| 0.333333 0.605812 8.48644e-07 2.34184e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| that in the view ||| 0.25 0.605812 8.48644e-07 4.3077e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| that in the ||| 0.00195236 0.605812 4.24322e-06 0.000476885 2.718 ||| 0-1 ||| 2561 1.17835e+06 +en ||| that in ||| 0.0274229 0.605812 0.000224042 0.0077679 2.718 ||| 0-1 ||| 9627 1.17835e+06 +en ||| that includes ||| 0.00193424 0.0068123 8.48644e-07 3.31386e-07 2.718 ||| 0-1 ||| 517 1.17835e+06 +en ||| that indeed , ||| 0.2 0.0919982 8.48644e-07 3.27067e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| that indeed ||| 0.030303 0.0919982 8.48644e-07 2.74259e-05 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| that insofar as ||| 0.1 0.219067 8.48644e-07 9.96413e-08 2.718 ||| 0-1 0-2 ||| 10 1.17835e+06 +en ||| that internal market ||| 0.125 0.0017499 8.48644e-07 1.09604e-11 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| that internal ||| 0.25 0.0017499 8.48644e-07 4.84973e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| that into ||| 0.319444 0.525896 1.95188e-05 0.000372385 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| that is , to ||| 0.00900901 0.0247351 8.48644e-07 1.76722e-06 2.718 ||| 0-3 ||| 111 1.17835e+06 +en ||| that is , towards ||| 0.333333 0.0616136 8.48644e-07 6.26331e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| that is , ||| 0.000795862 0.0017499 1.69729e-06 3.90651e-06 2.718 ||| 0-0 ||| 2513 1.17835e+06 +en ||| that is a leading ||| 0.5 0.0017499 8.48644e-07 1.2647e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| that is a predominant feature of the ||| 1 0.0116562 8.48644e-07 5.81064e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that is a predominant feature of ||| 1 0.0116562 8.48644e-07 9.46484e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that is a ||| 0.000359971 0.0017499 8.48644e-07 1.45201e-06 2.718 ||| 0-0 ||| 2778 1.17835e+06 +en ||| that is actually ||| 0.0151515 0.125341 8.48644e-07 7.08145e-07 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| that is all too present in ||| 1 0.605812 8.48644e-07 5.73054e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that is an area in ||| 0.166667 0.605812 8.48644e-07 4.49389e-10 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| that is at issue as , when ||| 1 0.142731 8.48644e-07 1.2104e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| that is at ||| 0.0224719 0.321886 3.39458e-06 2.10894e-05 2.718 ||| 0-2 ||| 178 1.17835e+06 +en ||| that is because in ||| 0.5 0.605812 8.48644e-07 7.99991e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that is being ||| 0.00212766 0.0017499 8.48644e-07 9.32219e-08 2.718 ||| 0-0 ||| 470 1.17835e+06 +en ||| that is characterized by ||| 0.5 0.0468744 8.48644e-07 8.07301e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that is currently in ||| 0.0526316 0.605812 8.48644e-07 2.54166e-08 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| that is disguised to a ||| 1 0.0247351 8.48644e-07 7.22546e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that is disguised to ||| 1 0.0247351 8.48644e-07 1.63008e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that is fashioned in ||| 1 0.605812 8.48644e-07 1.70418e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that is given in ||| 1 0.605812 8.48644e-07 1.67083e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that is happening in ||| 0.133333 0.605812 1.69729e-06 1.32196e-08 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| that is held in ||| 1 0.605812 8.48644e-07 6.21052e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that is in place here and ||| 1 0.605812 8.48644e-07 9.30654e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that is in place here ||| 1 0.605812 8.48644e-07 7.42984e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that is in place ||| 0.25 0.605812 8.48644e-07 3.66399e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| that is in the ||| 0.0215054 0.605812 1.69729e-06 1.49461e-05 2.718 ||| 0-2 ||| 93 1.17835e+06 +en ||| that is in ||| 0.0606936 0.605812 1.78215e-05 0.000243454 2.718 ||| 0-2 ||| 346 1.17835e+06 +en ||| that is laid down in ||| 0.125 0.605812 8.48644e-07 1.85252e-11 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| that is not such ||| 0.5 0.0017499 8.48644e-07 2.31382e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| that is not ||| 0.000303306 0.0017499 8.48644e-07 1.11838e-07 2.718 ||| 0-0 ||| 3297 1.17835e+06 +en ||| that is on ||| 0.0238095 0.22993 1.69729e-06 4.37837e-05 2.718 ||| 0-2 ||| 84 1.17835e+06 +en ||| that is only ||| 0.00694444 0.0017499 8.48644e-07 3.64626e-08 2.718 ||| 0-0 ||| 144 1.17835e+06 +en ||| that is respected according to ||| 0.5 0.0416907 8.48644e-07 1.53902e-13 2.718 ||| 0-3 0-4 ||| 2 1.17835e+06 +en ||| that is responsible for ||| 0.0263158 0.0286209 8.48644e-07 8.97106e-10 2.718 ||| 0-3 ||| 38 1.17835e+06 +en ||| that is taken in ||| 0.5 0.605812 8.48644e-07 2.21909e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that is the date that was ||| 1 0.0017499 8.48644e-07 1.08318e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that is the date that ||| 1 0.0017499 8.48644e-07 3.45734e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that is the date ||| 0.333333 0.0017499 8.48644e-07 2.0553e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| that is the ||| 0.000361729 0.0017499 1.69729e-06 2.01106e-06 2.718 ||| 0-0 ||| 5529 1.17835e+06 +en ||| that is to say in ||| 0.0357143 0.605812 8.48644e-07 2.06767e-08 2.718 ||| 0-4 ||| 28 1.17835e+06 +en ||| that is to say into ||| 1 0.525896 8.48644e-07 9.91222e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that is to say ||| 0.000899281 0.0017499 1.69729e-06 2.78213e-09 2.718 ||| 0-0 ||| 2224 1.17835e+06 +en ||| that is to ||| 0.00957592 0.0247351 5.94051e-06 1.48189e-05 2.718 ||| 0-2 ||| 731 1.17835e+06 +en ||| that is true in ||| 0.0833333 0.605812 8.48644e-07 3.93422e-08 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| that is under ||| 0.0851064 0.205566 3.39458e-06 2.98115e-06 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| that is what ||| 0.000348797 0.0017499 8.48644e-07 4.59624e-08 2.718 ||| 0-0 ||| 2867 1.17835e+06 +en ||| that is where ||| 0.00683371 0.247783 2.54593e-06 4.49001e-06 2.718 ||| 0-2 ||| 439 1.17835e+06 +en ||| that is why , for some ||| 1 0.0286209 8.48644e-07 1.9423e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that is why , for ||| 0.0434783 0.0286209 8.48644e-07 1.78307e-10 2.718 ||| 0-4 ||| 23 1.17835e+06 +en ||| that is why , in ||| 0.00884956 0.605812 8.48644e-07 7.15666e-09 2.718 ||| 0-4 ||| 113 1.17835e+06 +en ||| that is why , over time ||| 0.333333 0.157937 8.48644e-07 1.01955e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| that is why , over ||| 0.333333 0.157937 8.48644e-07 6.21033e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| that is why it insists on the ||| 1 0.22993 8.48644e-07 8.24799e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that is why it insists on ||| 1 0.22993 8.48644e-07 1.3435e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that is why we need nutrient profiling ||| 0.5 0.0054082 8.48644e-07 3.2641e-25 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that is why we need nutrient ||| 0.5 0.0054082 8.48644e-07 2.96736e-19 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that is why we need ||| 0.0027933 0.0054082 8.48644e-07 2.6976e-13 2.718 ||| 0-3 ||| 358 1.17835e+06 +en ||| that is why we ||| 0.000717875 0.0054082 8.48644e-07 2.94209e-10 2.718 ||| 0-3 ||| 1393 1.17835e+06 +en ||| that is ||| 0.00238941 0.0017499 9.08049e-05 3.27577e-05 2.718 ||| 0-0 ||| 44781 1.17835e+06 +en ||| that issues such as ||| 0.0666667 0.066968 8.48644e-07 1.57444e-10 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| that it applies in ||| 0.5 0.605812 8.48644e-07 1.1576e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that it be published in ||| 1 0.605812 8.48644e-07 5.58272e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that it challenges ||| 1 0.0080472 8.48644e-07 8.67536e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| that it encourages ||| 0.111111 0.0017499 8.48644e-07 8.73589e-11 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| that it is always shared by ||| 1 0.0468744 8.48644e-07 3.70395e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that it is being held in ||| 0.333333 0.605812 8.48644e-07 3.14299e-12 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| that it is in fact necessary , ||| 1 0.605812 8.48644e-07 3.89141e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that it is in fact necessary ||| 0.5 0.605812 8.48644e-07 3.26311e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that it is in fact ||| 0.0333333 0.605812 8.48644e-07 1.26821e-08 2.718 ||| 0-3 ||| 30 1.17835e+06 +en ||| that it is in the ||| 0.0192308 0.605812 8.48644e-07 2.6579e-07 2.718 ||| 0-3 ||| 52 1.17835e+06 +en ||| that it is in ||| 0.0173913 0.605812 3.39458e-06 4.3294e-06 2.718 ||| 0-3 ||| 230 1.17835e+06 +en ||| that it is right ||| 0.00826446 0.0071334 8.48644e-07 1.6782e-09 2.718 ||| 0-3 ||| 121 1.17835e+06 +en ||| that it is ||| 0.000605739 0.0080472 6.78915e-06 1.45399e-06 2.718 ||| 0-1 ||| 13207 1.17835e+06 +en ||| that it manages to ||| 0.5 0.0247351 8.48644e-07 3.02701e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that it should also ||| 0.0588235 0.0017499 8.48644e-07 4.15798e-10 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| that it should ||| 0.00126743 0.0017499 8.48644e-07 8.2359e-08 2.718 ||| 0-0 ||| 789 1.17835e+06 +en ||| that it was ||| 0.000564334 0.0080472 8.48644e-07 1.45347e-07 2.718 ||| 0-1 ||| 1772 1.17835e+06 +en ||| that it will then ||| 0.333333 0.013351 8.48644e-07 8.68253e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| that it will ||| 0.00102354 0.0080472 8.48644e-07 4.01349e-07 2.718 ||| 0-1 ||| 977 1.17835e+06 +en ||| that it would ||| 0.00225734 0.0080472 8.48644e-07 2.72262e-07 2.718 ||| 0-1 ||| 443 1.17835e+06 +en ||| that it ||| 0.00172001 0.0080472 1.95188e-05 4.63923e-05 2.718 ||| 0-1 ||| 13372 1.17835e+06 +en ||| that its ||| 0.000757002 0.0017499 8.48644e-07 1.4891e-06 2.718 ||| 0-0 ||| 1321 1.17835e+06 +en ||| that job security becomes ||| 1 0.162791 8.48644e-07 4.09053e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that liberalisation must only be gradual , ||| 1 0.0017499 8.48644e-07 2.22839e-22 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that liberalisation must only be gradual ||| 1 0.0017499 8.48644e-07 1.8686e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that liberalisation must only be ||| 1 0.0017499 8.48644e-07 1.98787e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that liberalisation must only ||| 1 0.0017499 8.48644e-07 1.09688e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that liberalisation must ||| 0.2 0.0017499 8.48644e-07 9.85431e-12 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| that liberalisation ||| 0.00847458 0.0017499 8.48644e-07 6.37572e-09 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| that market expenditure in ||| 1 0.605812 8.48644e-07 5.30175e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that matter , in ||| 0.285714 0.605812 1.69729e-06 9.61097e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| that may be used in ||| 0.333333 0.605812 8.48644e-07 4.52466e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| that means ||| 0.000504541 0.0017499 8.48644e-07 6.62343e-07 2.718 ||| 0-0 ||| 1982 1.17835e+06 +en ||| that mentioned in ||| 0.25 0.605812 8.48644e-07 6.87459e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| that might result in a ||| 1 0.605812 8.48644e-07 6.96129e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that might result in ||| 0.5 0.605812 8.48644e-07 1.57048e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that money in ||| 0.166667 0.605812 8.48644e-07 1.26927e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| that must ||| 0.000876424 0.0017499 8.48644e-07 1.61546e-06 2.718 ||| 0-0 ||| 1141 1.17835e+06 +en ||| that neither ||| 0.00223714 0.0021409 8.48644e-07 1.14387e-07 2.718 ||| 0-1 ||| 447 1.17835e+06 +en ||| that network in ||| 1 0.605812 8.48644e-07 1.92644e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that no ||| 0.000658328 0.0017499 8.48644e-07 8.13584e-07 2.718 ||| 0-0 ||| 1519 1.17835e+06 +en ||| that objective in ||| 0.142857 0.605812 8.48644e-07 5.19672e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| that occur in ||| 0.04 0.605812 1.69729e-06 3.46448e-07 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| that occurs in ||| 0.0666667 0.605812 8.48644e-07 9.78755e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| that of the Members ||| 0.333333 0.0116562 8.48644e-07 2.07725e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| that of the ||| 0.00123229 0.0017499 1.69729e-06 3.48836e-06 2.718 ||| 0-0 ||| 1623 1.17835e+06 +en ||| that of ||| 0.00673479 0.0116562 2.46107e-05 0.000229396 2.718 ||| 0-1 ||| 4306 1.17835e+06 +en ||| that offer us more possibilities in ||| 1 0.605812 8.48644e-07 8.42277e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that on ||| 0.023 0.22993 1.95188e-05 0.00139701 2.718 ||| 0-1 ||| 1000 1.17835e+06 +en ||| that one ||| 0.000501253 0.0025338 8.48644e-07 2.73519e-06 2.718 ||| 0-1 ||| 1995 1.17835e+06 +en ||| that only in ||| 0.05 0.605812 8.48644e-07 8.64645e-06 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| that operate in this ||| 0.25 0.605812 8.48644e-07 2.43931e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| that operate in ||| 0.030303 0.605812 8.48644e-07 3.7752e-07 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| that opinion , which appears on ||| 1 0.22993 8.48644e-07 1.81285e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that our thoughts are with ||| 0.166667 0.0535436 8.48644e-07 3.98153e-14 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| that out in ||| 0.111111 0.605812 8.48644e-07 2.97542e-05 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| that out ||| 0.00961538 0.0120599 8.48644e-07 9.26029e-06 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| that participate in ||| 0.111111 0.605812 8.48644e-07 1.87206e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| that permeates ||| 0.5 0.133333 8.48644e-07 4.54183e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| that politics in our own countries is ||| 1 0.605812 8.48644e-07 1.94553e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that politics in our own countries ||| 1 0.605812 8.48644e-07 6.20759e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that politics in our own ||| 1 0.605812 8.48644e-07 1.63487e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that politics in our ||| 1 0.605812 8.48644e-07 9.64353e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that politics in ||| 0.5 0.605812 8.48644e-07 6.99111e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| that prevails at ||| 0.2 0.321886 8.48644e-07 7.53645e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| that prevails in ||| 0.037037 0.605812 8.48644e-07 8.70004e-08 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| that question in ||| 0.0588235 0.605812 8.48644e-07 6.42638e-06 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| that ran ||| 0.166667 0.0017499 8.48644e-07 7.94352e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| that reason we must try to reverse ||| 0.5 0.0247351 8.48644e-07 2.89872e-21 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| that reason we must try to ||| 0.5 0.0247351 8.48644e-07 2.98837e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| that recently occurred in ||| 0.5 0.605812 8.48644e-07 2.24492e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that reflect ||| 0.01 0.0017499 8.48644e-07 3.57458e-08 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| that remain in ||| 0.0625 0.605812 8.48644e-07 9.42246e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| that report is ||| 0.047619 0.0004293 8.48644e-07 1.57635e-08 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| that report ||| 0.003003 0.0004293 8.48644e-07 5.02966e-07 2.718 ||| 0-1 ||| 333 1.17835e+06 +en ||| that represents ||| 0.00396825 0.0017499 8.48644e-07 3.87769e-08 2.718 ||| 0-0 ||| 252 1.17835e+06 +en ||| that respect into ||| 1 0.525896 8.48644e-07 1.61094e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that respects the ||| 0.0178571 0.0014584 8.48644e-07 6.04825e-11 2.718 ||| 0-0 0-2 ||| 56 1.17835e+06 +en ||| that result from ||| 0.0232558 0.0308834 8.48644e-07 3.37001e-08 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| that schools ||| 0.0333333 0.0017499 8.48644e-07 9.82488e-09 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| that serve to illustrate ||| 1 0.0247351 8.48644e-07 1.61707e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that serve to ||| 0.0833333 0.0247351 8.48644e-07 3.23413e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| that she would succeed in ||| 1 0.605812 8.48644e-07 4.93796e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that should be done in ||| 0.25 0.605812 8.48644e-07 2.84445e-10 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| that should be taken by ||| 0.333333 0.0468744 8.48644e-07 1.04745e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| that should not be ||| 0.012987 0.0017499 8.48644e-07 2.86553e-10 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| that should not ||| 0.00526316 0.0017499 8.48644e-07 1.58117e-08 2.718 ||| 0-0 ||| 190 1.17835e+06 +en ||| that should ||| 0.00137268 0.0017499 1.69729e-06 4.63128e-06 2.718 ||| 0-0 ||| 1457 1.17835e+06 +en ||| that sort on ||| 0.5 0.22993 8.48644e-07 2.23242e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| that sticks in the ||| 0.5 0.605812 8.48644e-07 6.67639e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| that sticks in ||| 0.5 0.605812 8.48644e-07 1.08751e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| that suffered cruelty under ||| 1 0.205566 8.48644e-07 2.27716e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that support ||| 0.00352113 0.0017499 8.48644e-07 3.57354e-07 2.718 ||| 0-0 ||| 284 1.17835e+06 +en ||| that take place in ||| 0.0416667 0.605812 8.48644e-07 1.8822e-08 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| that taken in ||| 0.2 0.605812 8.48644e-07 7.08044e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| that takes into ||| 0.0169492 0.525896 8.48644e-07 4.81121e-08 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| that takes place at the ||| 0.5 0.321886 8.48644e-07 8.03264e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that takes place at ||| 0.142857 0.321886 8.48644e-07 1.30842e-10 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| that takes place in or ||| 0.5 0.605812 8.48644e-07 1.72688e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that takes place in ||| 0.0588235 0.605812 8.48644e-07 1.51044e-09 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| that takes place within ||| 0.333333 0.369196 8.48644e-07 3.62634e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| that takes the ||| 0.037037 0.00644685 8.48644e-07 2.62147e-09 2.718 ||| 0-1 0-2 ||| 27 1.17835e+06 +en ||| that takes ||| 0.00503778 0.0117268 1.69729e-06 9.15095e-07 2.718 ||| 0-1 ||| 397 1.17835e+06 +en ||| that talks ||| 0.0188679 0.0017499 8.48644e-07 2.74888e-08 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| that term , in ||| 1 0.605812 8.48644e-07 1.01344e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that the activities carried out in the ||| 1 0.605812 8.48644e-07 2.62734e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that the activities carried out in ||| 1 0.605812 8.48644e-07 4.27962e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that the amendment on ||| 0.111111 0.22993 8.48644e-07 5.46322e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| that the issue of active ||| 1 0.0116562 8.48644e-07 4.29519e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that the issue of ||| 0.00301205 0.0116562 8.48644e-07 1.0658e-08 2.718 ||| 0-3 ||| 332 1.17835e+06 +en ||| that the procedures under ||| 1 0.0017499 8.48644e-07 9.94594e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that the procedures ||| 0.0178571 0.0017499 8.48644e-07 2.772e-09 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| that the ||| 5.58203e-05 0.0017499 6.78915e-06 6.41667e-05 2.718 ||| 0-0 ||| 143317 1.17835e+06 +en ||| that there are countries in ||| 0.0625 0.605812 8.48644e-07 1.37177e-10 2.718 ||| 0-4 ||| 16 1.17835e+06 +en ||| that there are limits to ||| 0.0454545 0.0247351 8.48644e-07 5.93747e-13 2.718 ||| 0-4 ||| 22 1.17835e+06 +en ||| that there is a ||| 0.000412712 0.0117359 8.48644e-07 2.62059e-08 2.718 ||| 0-1 ||| 2423 1.17835e+06 +en ||| that there is ||| 0.00114304 0.0117359 5.94051e-06 5.9121e-07 2.718 ||| 0-1 ||| 6124 1.17835e+06 +en ||| that there should ||| 0.00193424 0.0117359 8.48644e-07 8.35852e-08 2.718 ||| 0-1 ||| 517 1.17835e+06 +en ||| that there will ||| 0.0114068 0.0117359 2.54593e-06 1.63194e-07 2.718 ||| 0-1 ||| 263 1.17835e+06 +en ||| that there ||| 0.0027248 0.0117359 1.1881e-05 1.88637e-05 2.718 ||| 0-1 ||| 5138 1.17835e+06 +en ||| that these are in ||| 0.25 0.605812 8.48644e-07 1.22233e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| that these are ||| 0.00187266 0.0017499 8.48644e-07 1.64469e-08 2.718 ||| 0-0 ||| 534 1.17835e+06 +en ||| that these developments take place at ||| 1 0.321886 8.48644e-07 5.05596e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that these ||| 0.000156814 0.0017499 8.48644e-07 1.08398e-06 2.718 ||| 0-0 ||| 6377 1.17835e+06 +en ||| that they are suffocating , as ||| 0.5 0.066968 8.48644e-07 1.25093e-15 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| that they are the same in ||| 1 0.605812 8.48644e-07 1.90047e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that they be made ||| 0.5 0.0036976 8.48644e-07 1.86858e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| that they be ||| 0.0106383 0.0036976 8.48644e-07 8.92009e-08 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| that they have taken on and ||| 1 0.22993 8.48644e-07 6.22642e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that they have taken on ||| 0.5 0.22993 8.48644e-07 4.97083e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| that they should ||| 0.00496278 0.0017499 1.69729e-06 1.51165e-08 2.718 ||| 0-0 ||| 403 1.17835e+06 +en ||| that they will have on ||| 1 0.22993 8.48644e-07 4.7179e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that they would ||| 0.00793651 0.0036976 8.48644e-07 2.88857e-08 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| that they ||| 0.00103075 0.0017499 5.09187e-06 3.41153e-06 2.718 ||| 0-0 ||| 5821 1.17835e+06 +en ||| that this also has an ||| 1 0.0013296 8.48644e-07 9.2682e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| that this also has ||| 0.333333 0.0013296 8.48644e-07 2.08523e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| that this also ||| 0.02 0.0013296 8.48644e-07 4.05095e-08 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| that this is a new departure in ||| 1 0.605812 8.48644e-07 4.66769e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| that this is happening on the ||| 1 0.22993 8.48644e-07 9.43082e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that this is happening on ||| 0.333333 0.22993 8.48644e-07 1.53617e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| that this is in ||| 0.0212766 0.605812 8.48644e-07 1.57306e-06 2.718 ||| 0-3 ||| 47 1.17835e+06 +en ||| that this new version would ||| 1 0.0013296 8.48644e-07 1.0442e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| that this new version ||| 0.25 0.0013296 8.48644e-07 1.77927e-13 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| that this new ||| 0.00413223 0.0013296 8.48644e-07 4.79589e-09 2.718 ||| 0-1 ||| 242 1.17835e+06 +en ||| that this will have in ||| 1 0.605812 8.48644e-07 5.19314e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that this ||| 6.81547e-05 0.0013296 1.69729e-06 8.0239e-06 2.718 ||| 0-1 ||| 29345 1.17835e+06 +en ||| that through ||| 0.00561798 0.0366102 8.48644e-07 1.5819e-05 2.718 ||| 0-1 ||| 178 1.17835e+06 +en ||| that throughout ||| 0.0163934 0.309047 8.48644e-07 4.87961e-05 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| that time , in ||| 0.0769231 0.605812 8.48644e-07 1.5208e-06 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| that time at ||| 0.5 0.321886 8.48644e-07 1.1047e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| that time in ||| 0.0769231 0.605812 8.48644e-07 1.27526e-05 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| that to ||| 0.00332963 0.0247351 2.54593e-06 0.000472827 2.718 ||| 0-1 ||| 901 1.17835e+06 +en ||| that took place in Moscow amidst great ||| 1 0.605812 8.48644e-07 1.34181e-24 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that took place in Moscow amidst ||| 1 0.605812 8.48644e-07 3.41426e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that took place in Moscow ||| 1 0.605812 8.48644e-07 3.10388e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that took place in ||| 0.0384615 0.605812 5.09187e-06 1.72438e-09 2.718 ||| 0-3 ||| 156 1.17835e+06 +en ||| that took place ||| 0.00238663 0.0029826 8.48644e-07 3.79748e-10 2.718 ||| 0-1 ||| 419 1.17835e+06 +en ||| that took ||| 0.00290698 0.0029826 8.48644e-07 2.52324e-07 2.718 ||| 0-1 ||| 344 1.17835e+06 +en ||| that training and ||| 0.142857 0.0017499 8.48644e-07 4.6215e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| that training ||| 0.0238095 0.0017499 8.48644e-07 3.68956e-08 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| that under ||| 0.0166667 0.205566 4.24322e-06 9.51194e-05 2.718 ||| 0-1 ||| 300 1.17835e+06 +en ||| that was , in ||| 0.5 0.605812 8.48644e-07 2.90228e-06 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that was a problem with regard to ||| 1 0.0535436 8.48644e-07 3.70606e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that was a problem with regard ||| 1 0.0535436 8.48644e-07 4.17075e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that was a problem with ||| 1 0.0535436 8.48644e-07 6.12536e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that was done in ||| 0.111111 0.605812 8.48644e-07 1.10976e-08 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| that was found at ||| 0.333333 0.321886 8.48644e-07 4.61272e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| that was held in ||| 0.0833333 0.605812 8.48644e-07 6.20832e-09 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| that was in ||| 0.0333333 0.605812 1.69729e-06 2.43368e-05 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| that was what ||| 0.0178571 0.0035633 8.48644e-07 2.05854e-08 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| that was ||| 0.00153335 0.0017499 5.09187e-06 3.27461e-06 2.718 ||| 0-0 ||| 3913 1.17835e+06 +en ||| that we , on ||| 0.166667 0.22993 8.48644e-07 1.89129e-06 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| that we adopt in ||| 0.25 0.605812 8.48644e-07 9.17108e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| that we are at ||| 0.0294118 0.321886 1.69729e-06 1.15903e-07 2.718 ||| 0-3 ||| 68 1.17835e+06 +en ||| that we are concerned with standards ||| 1 0.0535436 8.48644e-07 3.97225e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that we are concerned with ||| 0.142857 0.0535436 8.48644e-07 5.434e-11 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| that we are in ||| 0.00595238 0.605812 1.69729e-06 1.33798e-06 2.718 ||| 0-3 ||| 336 1.17835e+06 +en ||| that we are now already in ||| 1 0.605812 8.48644e-07 1.27635e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that we are now ||| 0.00456621 0.0123946 8.48644e-07 1.71528e-09 2.718 ||| 0-3 ||| 219 1.17835e+06 +en ||| that we are obviously in ||| 1 0.605812 8.48644e-07 8.85744e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that we are on the ||| 0.00900901 0.22993 8.48644e-07 1.47726e-08 2.718 ||| 0-3 ||| 111 1.17835e+06 +en ||| that we are on ||| 0.00675676 0.22993 8.48644e-07 2.40628e-07 2.718 ||| 0-3 ||| 148 1.17835e+06 +en ||| that we are participating in ||| 1 0.605812 8.48644e-07 1.53868e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that we are seeing in ||| 0.142857 0.605812 8.48644e-07 7.13144e-11 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| that we are speaking at ||| 1 0.321886 8.48644e-07 1.33057e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that we are well into ||| 1 0.525896 8.48644e-07 1.01703e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that we are ||| 0.000277971 0.00357905 1.69729e-06 3.59021e-08 2.718 ||| 0-0 0-1 ||| 7195 1.17835e+06 +en ||| that we can draw upon ||| 1 0.114601 8.48644e-07 5.94416e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that we can ||| 0.000400721 0.0017499 1.69729e-06 3.52913e-08 2.718 ||| 0-0 ||| 4991 1.17835e+06 +en ||| that we do ||| 0.00257069 0.0017499 8.48644e-07 4.07613e-08 2.718 ||| 0-0 ||| 389 1.17835e+06 +en ||| that we find in ||| 0.0833333 0.605812 8.48644e-07 2.93563e-08 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| that we had forest fires in ||| 1 0.605812 8.48644e-07 5.61506e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that we have at ||| 0.0238095 0.321886 8.48644e-07 9.13601e-08 2.718 ||| 0-3 ||| 42 1.17835e+06 +en ||| that we have here in ||| 0.111111 0.605812 8.48644e-07 2.13863e-09 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| that we have in you ||| 1 0.605812 8.48644e-07 3.40517e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that we have in ||| 0.0296296 0.605812 3.39458e-06 1.05466e-06 2.718 ||| 0-3 ||| 135 1.17835e+06 +en ||| that we have some situations in ||| 0.5 0.605812 8.48644e-07 3.92903e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| that we have to ||| 0.001638 0.0054082 1.69729e-06 4.04712e-08 2.718 ||| 0-1 ||| 1221 1.17835e+06 +en ||| that we have ||| 0.00031027 0.0054082 2.54593e-06 4.55458e-07 2.718 ||| 0-1 ||| 9669 1.17835e+06 +en ||| that we in the Commission have , ||| 1 0.605812 8.48644e-07 4.51008e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| that we in the Commission have ||| 0.25 0.605812 8.48644e-07 3.78189e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| that we in the Commission ||| 0.0588235 0.605812 8.48644e-07 3.16217e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| that we in the ||| 0.00321543 0.605812 8.48644e-07 5.41374e-06 2.718 ||| 0-2 ||| 311 1.17835e+06 +en ||| that we in ||| 0.0127298 0.605812 7.6378e-06 8.81835e-05 2.718 ||| 0-2 ||| 707 1.17835e+06 +en ||| that we must do in ||| 0.5 0.605812 8.48644e-07 4.68219e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| that we must look at two possibilities ||| 1 0.321886 8.48644e-07 1.1716e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that we must look at two ||| 1 0.321886 8.48644e-07 8.13609e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| that we must look at ||| 0.0625 0.321886 8.48644e-07 3.44166e-12 2.718 ||| 0-4 ||| 16 1.17835e+06 +en ||| that we must ||| 0.000517063 0.0017499 1.69729e-06 1.83392e-08 2.718 ||| 0-0 ||| 3868 1.17835e+06 +en ||| that we now ||| 0.00826446 0.0017499 8.48644e-07 2.44416e-08 2.718 ||| 0-0 ||| 121 1.17835e+06 +en ||| that we put something in ||| 0.333333 0.605812 8.48644e-07 5.38174e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| that we remain on ||| 1 0.22993 8.48644e-07 1.92373e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that we saw in ||| 0.0833333 0.605812 8.48644e-07 4.72664e-09 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| that we shall be able to ||| 0.0196078 0.0247351 8.48644e-07 4.43933e-14 2.718 ||| 0-5 ||| 51 1.17835e+06 +en ||| that we shall in ||| 1 0.605812 8.48644e-07 4.82011e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that we should at ||| 0.111111 0.321886 8.48644e-07 3.38481e-08 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| that we should be ||| 0.00243309 0.0017499 8.48644e-07 9.52824e-10 2.718 ||| 0-0 ||| 411 1.17835e+06 +en ||| that we should invest in ||| 0.125 0.605812 8.48644e-07 3.67297e-12 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| that we should look in ||| 0.5 0.605812 8.48644e-07 1.13901e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| that we should ||| 0.00175747 0.0017499 5.94051e-06 5.25757e-08 2.718 ||| 0-0 ||| 3983 1.17835e+06 +en ||| that we took at ||| 0.5 0.321886 8.48644e-07 1.12674e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that we want to ||| 0.0021097 0.0247351 8.48644e-07 2.50939e-09 2.718 ||| 0-3 ||| 474 1.17835e+06 +en ||| that we wanted to ||| 0.0232558 0.0247351 8.48644e-07 2.93612e-10 2.718 ||| 0-3 ||| 43 1.17835e+06 +en ||| that we will focus solely on ||| 1 0.22993 8.48644e-07 2.33627e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that we will ||| 0.00479386 0.00357905 4.24322e-06 2.04707e-08 2.718 ||| 0-0 0-1 ||| 1043 1.17835e+06 +en ||| that we would ||| 0.0077821 0.0017499 1.69729e-06 6.96346e-08 2.718 ||| 0-0 ||| 257 1.17835e+06 +en ||| that we ||| 0.00292683 0.0054082 5.09187e-05 3.80824e-05 2.718 ||| 0-1 ||| 20500 1.17835e+06 +en ||| that were being ||| 0.0909091 0.0017499 8.48644e-07 5.32839e-09 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| that were expressed in ||| 0.5 0.605812 8.48644e-07 1.35258e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that were not filled in ||| 0.5 0.605812 8.48644e-07 4.94089e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| that were posted ||| 1 0.0017499 8.48644e-07 8.0512e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that were present at ||| 1 0.321886 8.48644e-07 4.41187e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that were ||| 0.00253165 0.0017499 2.54593e-06 1.87237e-06 2.718 ||| 0-0 ||| 1185 1.17835e+06 +en ||| that when dealing with ||| 1 0.0535436 8.48644e-07 1.01276e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| that when it comes to ||| 0.011236 0.142731 8.48644e-07 6.32667e-11 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| that when it comes ||| 0.00990099 0.142731 8.48644e-07 7.11996e-10 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| that when it ||| 0.00833333 0.142731 8.48644e-07 1.78088e-06 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| that when ||| 0.00166945 0.142731 2.54593e-06 0.000100144 2.718 ||| 0-1 ||| 1797 1.17835e+06 +en ||| that where ||| 0.00518135 0.247783 8.48644e-07 0.000143263 2.718 ||| 0-1 ||| 193 1.17835e+06 +en ||| that will , in ||| 0.037037 0.605812 8.48644e-07 8.01411e-06 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| that will be given ||| 0.0769231 0.0546585 8.48644e-07 3.06172e-09 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| that will ensure lasting stability in our ||| 1 0.605812 8.48644e-07 8.77411e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that will ensure lasting stability in ||| 1 0.605812 8.48644e-07 6.36082e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that will follow one another in ||| 1 0.605812 8.48644e-07 6.68559e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| that will in ||| 0.05 0.605812 8.48644e-07 6.72016e-05 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| that will make things easier for ||| 1 0.0017499 8.48644e-07 3.46462e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that will make things easier ||| 1 0.0017499 8.48644e-07 4.50788e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| that will make things ||| 0.5 0.0017499 8.48644e-07 6.45829e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| that will make ||| 0.00675676 0.0017499 8.48644e-07 1.57136e-08 2.718 ||| 0-0 ||| 148 1.17835e+06 +en ||| that will provide ||| 0.0107527 0.0017499 8.48644e-07 2.67469e-09 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| that will take place on ||| 0.125 0.22993 8.48644e-07 2.92845e-11 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| that will ||| 0.0026892 0.0017499 5.94051e-06 9.04223e-06 2.718 ||| 0-0 ||| 2603 1.17835e+06 +en ||| that with ||| 0.00571429 0.0535436 4.24322e-06 0.000196121 2.718 ||| 0-1 ||| 875 1.17835e+06 +en ||| that within ||| 0.0083682 0.369196 1.69729e-06 0.000186496 2.718 ||| 0-1 ||| 239 1.17835e+06 +en ||| that word broadly - to ||| 0.5 0.0247351 8.48644e-07 2.03353e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| that works , ||| 0.0666667 0.0017499 8.48644e-07 5.1603e-09 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| that works to ||| 0.0625 0.0247351 8.48644e-07 1.9575e-08 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| that works ||| 0.00645161 0.0017499 8.48644e-07 4.32713e-08 2.718 ||| 0-0 ||| 155 1.17835e+06 +en ||| that would also be ||| 0.0526316 0.0017499 8.48644e-07 5.61229e-10 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| that would also ||| 0.0416667 0.0017499 8.48644e-07 3.09679e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| that would be ||| 0.00074184 0.0017499 8.48644e-07 1.11165e-07 2.718 ||| 0-0 ||| 1348 1.17835e+06 +en ||| that would in ||| 0.285714 0.605812 1.69729e-06 4.55875e-05 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| that would mean in ||| 0.25 0.605812 8.48644e-07 1.17479e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| that would ||| 0.00298686 0.0017499 4.24322e-06 6.13397e-06 2.718 ||| 0-0 ||| 1674 1.17835e+06 +en ||| that you place on ||| 0.5 0.22993 8.48644e-07 6.78833e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| that you should come here and ||| 0.333333 0.0855319 8.48644e-07 7.68073e-15 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| that you should come here ||| 0.5 0.0855319 8.48644e-07 6.13188e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| that you were ||| 0.0075188 0.0017499 8.48644e-07 6.04533e-09 2.718 ||| 0-0 ||| 133 1.17835e+06 +en ||| that you ||| 0.00019972 0.0017499 8.48644e-07 3.37464e-06 2.718 ||| 0-0 ||| 5007 1.17835e+06 +en ||| that ||| 0.0010151 0.0017499 0.000813001 0.0010452 2.718 ||| 0-0 ||| 943748 1.17835e+06 +en ||| the 25 posts in ||| 1 0.605812 8.48644e-07 2.69151e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the 50 cent coin in order to ||| 1 0.605812 8.48644e-07 8.07684e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the 50 cent coin in order ||| 1 0.605812 8.48644e-07 9.08959e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the 50 cent coin in ||| 1 0.605812 8.48644e-07 1.70664e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the 8th Conference of ||| 0.5 0.0116562 8.48644e-07 6.26226e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the CFO in ||| 0.5 0.605812 8.48644e-07 1.13398e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the Commission ' s proposal concerning the ||| 0.5 0.0888235 8.48644e-07 3.48134e-18 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| the Commission ' s proposal concerning ||| 0.2 0.0888235 8.48644e-07 5.67069e-17 2.718 ||| 0-5 ||| 5 1.17835e+06 +en ||| the Commission 's thinking in ||| 0.5 0.605812 8.48644e-07 2.33674e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| the Commission , on how the proposal ||| 0.5 0.22993 8.48644e-07 1.56049e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the Commission , on how the ||| 0.5 0.22993 8.48644e-07 7.81417e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the Commission , on how ||| 0.5 0.22993 8.48644e-07 1.27284e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the Commission , on ||| 0.00578035 0.22993 8.48644e-07 3.55144e-07 2.718 ||| 0-3 ||| 173 1.17835e+06 +en ||| the Commission . on ||| 0.333333 0.22993 8.48644e-07 9.02045e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| the Commission . ||| 0.000104943 0.0011669 8.48644e-07 5.06834e-09 2.718 ||| 0-0 ||| 9529 1.17835e+06 +en ||| the Commission in ||| 0.00195886 0.605812 3.39458e-06 1.6559e-05 2.718 ||| 0-2 ||| 2042 1.17835e+06 +en ||| the Commission is planning with ||| 1 0.0535436 8.48644e-07 3.68193e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the Commission must come up with ||| 0.166667 0.0535436 8.48644e-07 1.87168e-15 2.718 ||| 0-5 ||| 6 1.17835e+06 +en ||| the Commission participates fully in the common ||| 1 0.605812 8.48644e-07 3.72818e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the Commission participates fully in the ||| 1 0.605812 8.48644e-07 1.61393e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the Commission participates fully in ||| 0.5 0.605812 8.48644e-07 2.6289e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| the Commission presented right from the ||| 1 0.0308834 8.48644e-07 4.25689e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the Commission presented right from ||| 1 0.0308834 8.48644e-07 6.93397e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the Commission will so far as ||| 1 0.066968 8.48644e-07 8.64675e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the Commission ||| 1.25659e-05 0.0011669 1.69729e-06 1.67327e-06 2.718 ||| 0-0 ||| 159161 1.17835e+06 +en ||| the Committee on Economic and Monetary Affairs ||| 0.000646831 0.22993 8.48644e-07 3.08906e-22 2.718 ||| 0-2 ||| 1546 1.17835e+06 +en ||| the Committee on Economic and Monetary ||| 0.05 0.22993 8.48644e-07 3.46307e-18 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| the Committee on Economic and ||| 0.000643915 0.22993 8.48644e-07 3.01137e-13 2.718 ||| 0-2 ||| 1553 1.17835e+06 +en ||| the Committee on Economic ||| 0.000639386 0.22993 8.48644e-07 2.40411e-11 2.718 ||| 0-2 ||| 1564 1.17835e+06 +en ||| the Committee on Fisheries has added to ||| 1 0.22993 8.48644e-07 1.64927e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the Committee on Fisheries has added ||| 1 0.22993 8.48644e-07 1.85607e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the Committee on Fisheries has ||| 0.025641 0.22993 8.48644e-07 2.60319e-14 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| the Committee on Fisheries ||| 0.000932836 0.22993 8.48644e-07 5.05719e-12 2.718 ||| 0-2 ||| 1072 1.17835e+06 +en ||| the Committee on Foreign Affairs , Human ||| 0.03125 0.22993 8.48644e-07 4.10952e-21 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| the Committee on Foreign Affairs , ||| 0.00129534 0.22993 8.48644e-07 1.00971e-16 2.718 ||| 0-2 ||| 772 1.17835e+06 +en ||| the Committee on Foreign Affairs ||| 0.000690608 0.22993 8.48644e-07 8.46683e-16 2.718 ||| 0-2 ||| 1448 1.17835e+06 +en ||| the Committee on Foreign ||| 0.0714286 0.22993 8.48644e-07 9.49196e-12 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| the Committee on Women ' s Rights ||| 0.0192308 0.22993 8.48644e-07 5.44578e-21 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| the Committee on Women ' s ||| 0.5 0.22993 8.48644e-07 6.60895e-17 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the Committee on Women ' ||| 0.5 0.22993 8.48644e-07 3.47419e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the Committee on Women ||| 0.2 0.22993 8.48644e-07 1.01144e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| the Committee on the Environment , Public ||| 0.000576369 0.22993 8.48644e-07 1.20566e-17 2.718 ||| 0-2 ||| 1735 1.17835e+06 +en ||| the Committee on the Environment , ||| 0.00051282 0.22993 8.48644e-07 1.12784e-13 2.718 ||| 0-2 ||| 1950 1.17835e+06 +en ||| the Committee on the Environment ||| 0.000400641 0.22993 8.48644e-07 9.4574e-13 2.718 ||| 0-2 ||| 2496 1.17835e+06 +en ||| the Committee on the ||| 0.00220751 0.22993 8.48644e-07 4.77646e-08 2.718 ||| 0-2 ||| 453 1.17835e+06 +en ||| the Committee on ||| 0.000367857 0.22993 7.6378e-06 7.7803e-07 2.718 ||| 0-2 ||| 24466 1.17835e+06 +en ||| the Community on ||| 0.0588235 0.22993 8.48644e-07 8.25446e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| the Convention and ||| 0.00344828 0.0010182 8.48644e-07 1.83534e-09 2.718 ||| 0-2 ||| 290 1.17835e+06 +en ||| the Convention in ||| 0.0263158 0.605812 8.48644e-07 9.18526e-07 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| the Council , when ||| 0.037037 0.142731 8.48644e-07 1.50719e-08 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| the Council as ||| 0.00613497 0.066968 8.48644e-07 3.8187e-07 2.718 ||| 0-2 ||| 163 1.17835e+06 +en ||| the Council at ||| 0.00684932 0.321886 8.48644e-07 8.49214e-07 2.718 ||| 0-2 ||| 146 1.17835e+06 +en ||| the Council in ||| 0.00296296 0.605812 1.69729e-06 9.80328e-06 2.718 ||| 0-2 ||| 675 1.17835e+06 +en ||| the Council on the other side of ||| 1 0.22993 8.48644e-07 1.67096e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the Council on the other side ||| 1 0.22993 8.48644e-07 3.07365e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the Council on the other ||| 0.166667 0.22993 8.48644e-07 1.40221e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| the Council on the ||| 0.00425532 0.22993 8.48644e-07 1.08237e-07 2.718 ||| 0-2 ||| 235 1.17835e+06 +en ||| the Council on ||| 0.00126422 0.22993 8.48644e-07 1.76306e-06 2.718 ||| 0-2 ||| 791 1.17835e+06 +en ||| the Council ||| 3.80583e-05 0.0011669 1.69729e-06 9.90613e-07 2.718 ||| 0-0 ||| 52551 1.17835e+06 +en ||| the Court will adopt a position on ||| 1 0.22993 8.48644e-07 3.13361e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| the Court ||| 0.000211282 0.0011669 8.48644e-07 1.34068e-07 2.718 ||| 0-0 ||| 4733 1.17835e+06 +en ||| the Czech Republic . at ||| 1 0.321886 8.48644e-07 2.68534e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the ECB on ||| 0.111111 0.22993 8.48644e-07 4.3847e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| the EIB in ||| 0.0769231 0.605812 8.48644e-07 1.33243e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| the EU in as far as they ||| 1 0.33639 8.48644e-07 5.73752e-15 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| the EU in as far as ||| 1 0.33639 8.48644e-07 1.75782e-12 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| the EU in as far ||| 1 0.33639 8.48644e-07 1.72261e-10 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| the EU in as ||| 0.5 0.33639 8.48644e-07 2.52323e-07 2.718 ||| 0-2 0-3 ||| 2 1.17835e+06 +en ||| the EU in ||| 0.00350058 0.605812 2.54593e-06 1.40274e-05 2.718 ||| 0-2 ||| 857 1.17835e+06 +en ||| the EU into ||| 0.0168067 0.525896 1.69729e-06 6.72457e-07 2.718 ||| 0-2 ||| 119 1.17835e+06 +en ||| the EU should in ||| 0.333333 0.605812 8.48644e-07 6.21553e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| the EU ||| 3.9874e-05 0.0011669 1.69729e-06 1.41745e-06 2.718 ||| 0-0 ||| 50158 1.17835e+06 +en ||| the European Agreement and International Agreement on ||| 1 0.22993 8.48644e-07 2.72741e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| the European Commission in ||| 0.00416667 0.605812 8.48644e-07 5.53716e-08 2.718 ||| 0-3 ||| 240 1.17835e+06 +en ||| the European Commission ||| 8.50412e-05 0.0011669 8.48644e-07 5.59525e-09 2.718 ||| 0-0 ||| 11759 1.17835e+06 +en ||| the European Democrats ||| 0.0227273 0.0011669 8.48644e-07 1.02019e-09 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| the European Parliament , in ||| 0.00961538 0.605812 8.48644e-07 6.48914e-09 2.718 ||| 0-4 ||| 104 1.17835e+06 +en ||| the European Parliament at 10 a.m. regarding ||| 1 0.321886 8.48644e-07 8.50816e-24 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the European Parliament at 10 a.m. ||| 1 0.321886 8.48644e-07 1.3745e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the European Parliament at 10 ||| 1 0.321886 8.48644e-07 7.63611e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the European Parliament at ||| 0.00884956 0.321886 8.48644e-07 4.71365e-09 2.718 ||| 0-3 ||| 113 1.17835e+06 +en ||| the European Parliament in ||| 0.00189036 0.605812 8.48644e-07 5.44141e-08 2.718 ||| 0-3 ||| 529 1.17835e+06 +en ||| the European Parliament ||| 3.71499e-05 0.0011669 8.48644e-07 5.4985e-09 2.718 ||| 0-0 ||| 26918 1.17835e+06 +en ||| the European Union in ||| 0.00126422 0.605812 1.69729e-06 5.28405e-08 2.718 ||| 0-3 ||| 1582 1.17835e+06 +en ||| the European Union on ||| 0.0027027 0.22993 8.48644e-07 9.50303e-09 2.718 ||| 0-3 ||| 370 1.17835e+06 +en ||| the European Union when it ||| 0.0625 0.142731 8.48644e-07 1.21143e-11 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| the European Union when ||| 0.0172414 0.142731 8.48644e-07 6.81222e-10 2.718 ||| 0-3 ||| 58 1.17835e+06 +en ||| the European Union ||| 1.18221e-05 0.0011669 8.48644e-07 5.33949e-09 2.718 ||| 0-0 ||| 84587 1.17835e+06 +en ||| the European initiative in ||| 0.2 0.605812 8.48644e-07 5.93436e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| the European ||| 0.000767533 0.0011669 6.78915e-06 9.57927e-06 2.718 ||| 0-0 ||| 10423 1.17835e+06 +en ||| the Financial Regulation in ||| 0.166667 0.605812 8.48644e-07 6.49971e-12 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| the Generalised System ||| 0.0217391 0.0011669 8.48644e-07 4.9015e-13 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| the Generalised ||| 0.0204082 0.0011669 8.48644e-07 8.45086e-08 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| the Group of ||| 0.00078125 0.0116562 1.69729e-06 2.72341e-07 2.718 ||| 0-2 ||| 2560 1.17835e+06 +en ||| the Holy Land in blood is to ||| 1 0.605812 8.48644e-07 2.00946e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the Holy Land in blood is ||| 1 0.605812 8.48644e-07 2.26143e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the Holy Land in blood ||| 1 0.605812 8.48644e-07 7.21553e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the Holy Land in ||| 1 0.605812 8.48644e-07 7.14409e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the House at ||| 0.037037 0.321886 1.69729e-06 6.14194e-07 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| the House on ||| 0.0204082 0.22993 1.69729e-06 1.27513e-06 2.718 ||| 0-2 ||| 98 1.17835e+06 +en ||| the Knesset in ||| 1 0.605812 8.48644e-07 1.98447e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the Luxembourg Presidency ||| 0.00236407 0.0011669 8.48644e-07 1.18172e-12 2.718 ||| 0-0 ||| 423 1.17835e+06 +en ||| the Luxembourg ||| 0.015625 0.0011669 8.48644e-07 2.3777e-08 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| the Member States - in ||| 0.166667 0.605812 8.48644e-07 2.6296e-11 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| the Member States in ||| 0.00214592 0.605812 1.69729e-06 6.97119e-09 2.718 ||| 0-3 ||| 932 1.17835e+06 +en ||| the Members in ||| 0.0333333 0.605812 8.48644e-07 4.18156e-06 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| the Members of ||| 0.00102775 0.0116562 8.48644e-07 1.23487e-07 2.718 ||| 0-2 ||| 973 1.17835e+06 +en ||| the Minutes ||| 0.00164474 0.0011669 1.69729e-06 3.09388e-08 2.718 ||| 0-0 ||| 1216 1.17835e+06 +en ||| the NATO summit in ||| 0.1 0.605812 8.48644e-07 6.53174e-12 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| the Parliament , into ||| 1 0.525896 8.48644e-07 9.30299e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the Poles who refuse to adopt our ||| 1 0.0247351 8.48644e-07 3.17906e-24 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the Poles who refuse to adopt ||| 1 0.0247351 8.48644e-07 2.30467e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the Poles who refuse to ||| 1 0.0247351 8.48644e-07 2.21603e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the Presidency in ||| 0.0153846 0.605812 8.48644e-07 1.40897e-06 2.718 ||| 0-2 ||| 65 1.17835e+06 +en ||| the President of the European Parliament at ||| 0.333333 0.321886 8.48644e-07 2.28111e-15 2.718 ||| 0-6 ||| 3 1.17835e+06 +en ||| the Prime Minister of Belarus when ||| 1 0.142731 8.48644e-07 1.33529e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the Protocol . as was apparent in ||| 1 0.605812 8.48644e-07 1.09462e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| the SMEs ||| 0.00414938 0.0011669 8.48644e-07 3.49493e-08 2.718 ||| 0-0 ||| 241 1.17835e+06 +en ||| the Secretary-General , ||| 0.0277778 0.0011669 8.48644e-07 4.78281e-10 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| the Secretary-General ||| 0.00223214 0.0011669 8.48644e-07 4.01058e-09 2.718 ||| 0-0 ||| 448 1.17835e+06 +en ||| the Single Market in ||| 0.125 0.605812 8.48644e-07 6.69645e-12 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| the Socialist Group in ||| 0.00263852 0.605812 8.48644e-07 7.65436e-11 2.718 ||| 0-3 ||| 379 1.17835e+06 +en ||| the Supreme Court of Georgia . in ||| 1 0.605812 8.48644e-07 2.83144e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| the TEC to ||| 0.333333 0.0011669 8.48644e-07 1.01821e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| the TEC ||| 0.0222222 0.0011669 8.48644e-07 1.14588e-09 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| the TENs - in ||| 1 0.605812 8.48644e-07 3.10119e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the TV ||| 0.0526316 0.0109619 8.48644e-07 3.32305e-08 2.718 ||| 0-0 0-1 ||| 19 1.17835e+06 +en ||| the Treaty in ||| 0.0188679 0.605812 8.48644e-07 2.42672e-06 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| the Treaty ||| 0.00011605 0.0011669 8.48644e-07 2.45218e-07 2.718 ||| 0-0 ||| 8617 1.17835e+06 +en ||| the UN and the worldwide ||| 1 0.13372 8.48644e-07 8.96124e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the Union , then drive through ||| 0.333333 0.0366102 8.48644e-07 1.86641e-16 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| the Union . to ||| 1 0.0247351 8.48644e-07 2.91347e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the Union in ||| 0.00235849 0.605812 8.48644e-07 1.58021e-05 2.718 ||| 0-2 ||| 424 1.17835e+06 +en ||| the Union is viewed throughout ||| 0.333333 0.309047 8.48644e-07 7.49767e-14 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| the Union regarding ||| 0.333333 0.140669 8.48644e-07 6.47781e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| the Union under ||| 0.0625 0.205566 8.48644e-07 1.93499e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| the Union ||| 4.06075e-05 0.0011669 8.48644e-07 1.59678e-06 2.718 ||| 0-0 ||| 24626 1.17835e+06 +en ||| the Use ||| 0.125 0.0011669 8.48644e-07 8.30763e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| the Western Sahara in ||| 0.5 0.605812 8.48644e-07 2.24812e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the abandonment of ||| 0.00970874 0.0116562 8.48644e-07 2.093e-09 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| the ability of ||| 0.00280112 0.0116562 8.48644e-07 3.85949e-08 2.718 ||| 0-2 ||| 357 1.17835e+06 +en ||| the acceptance rate in ||| 1 0.605812 8.48644e-07 3.47248e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the achievement of ||| 0.00167224 0.0116562 8.48644e-07 2.01765e-08 2.718 ||| 0-2 ||| 598 1.17835e+06 +en ||| the activities carried out in the host ||| 1 0.605812 8.48644e-07 3.03005e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the activities carried out in the ||| 0.2 0.605812 8.48644e-07 1.56188e-13 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| the activities carried out in ||| 0.166667 0.605812 8.48644e-07 2.54412e-12 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| the advantage ||| 0.00250627 0.0011669 8.48644e-07 1.4524e-07 2.718 ||| 0-0 ||| 399 1.17835e+06 +en ||| the aforementioned signals will be used as ||| 1 0.066968 8.48644e-07 4.06442e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| the agency in ||| 0.025 0.605812 8.48644e-07 4.59263e-07 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| the agenda , in ||| 0.333333 0.605812 8.48644e-07 3.35715e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| the agenda as ||| 0.0217391 0.066968 8.48644e-07 1.09658e-07 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| the agenda during ||| 0.125 0.226251 8.48644e-07 1.7626e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| the agenda in ||| 0.00952381 0.605812 8.48644e-07 2.81511e-06 2.718 ||| 0-2 ||| 105 1.17835e+06 +en ||| the agenda of ||| 0.00246305 0.0116562 8.48644e-07 8.3134e-08 2.718 ||| 0-2 ||| 406 1.17835e+06 +en ||| the agreement of ||| 0.00364964 0.0116562 8.48644e-07 1.54296e-07 2.718 ||| 0-2 ||| 274 1.17835e+06 +en ||| the aim , in ||| 0.5 0.605812 8.48644e-07 4.64863e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the air in ||| 0.0909091 0.605812 8.48644e-07 1.56206e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| the air transport sector in the ||| 0.2 0.605812 8.48644e-07 1.83247e-15 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| the air transport sector in ||| 0.142857 0.605812 8.48644e-07 2.98487e-14 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| the amendment on ||| 0.00934579 0.22993 8.48644e-07 3.24774e-07 2.718 ||| 0-2 ||| 107 1.17835e+06 +en ||| the amendment ||| 0.000310463 0.0050742 8.48644e-07 3.30288e-06 2.718 ||| 0-1 ||| 3221 1.17835e+06 +en ||| the amendments during ||| 0.5 0.226251 8.48644e-07 1.35434e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the amendments in ||| 0.00840336 0.605812 8.48644e-07 2.16307e-06 2.718 ||| 0-2 ||| 119 1.17835e+06 +en ||| the amount involved ||| 0.111111 0.0101887 8.48644e-07 1.51457e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| the amount of money spent on ||| 0.142857 0.22993 8.48644e-07 7.06326e-16 2.718 ||| 0-5 ||| 7 1.17835e+06 +en ||| the answer ||| 0.000550358 0.0011669 8.48644e-07 2.14566e-07 2.718 ||| 0-0 ||| 1817 1.17835e+06 +en ||| the anticipated level of inflation . at ||| 1 0.321886 8.48644e-07 1.2792e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| the approaches taken at ||| 1 0.321886 8.48644e-07 2.41753e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the appropriations for sustainable agriculture in ||| 1 0.605812 8.48644e-07 6.50103e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the area of ||| 0.000205931 0.0116562 8.48644e-07 3.47689e-07 2.718 ||| 0-2 ||| 4856 1.17835e+06 +en ||| the areas of ||| 0.000895255 0.0116562 8.48644e-07 1.91635e-07 2.718 ||| 0-2 ||| 1117 1.17835e+06 +en ||| the argument ||| 0.00135501 0.00080055 8.48644e-07 2.00529e-09 2.718 ||| 0-0 0-1 ||| 738 1.17835e+06 +en ||| the articles of ||| 0.0434783 0.0116562 8.48644e-07 6.61388e-09 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| the attitudes ||| 0.0169492 0.0011669 8.48644e-07 2.3777e-08 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| the authorities in ||| 0.00211864 0.605812 8.48644e-07 1.88808e-06 2.718 ||| 0-2 ||| 472 1.17835e+06 +en ||| the authorities ||| 0.000391236 0.0011669 8.48644e-07 1.90789e-07 2.718 ||| 0-0 ||| 2556 1.17835e+06 +en ||| the average fine in ||| 0.25 0.605812 8.48644e-07 2.27794e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| the aviation industry as ||| 0.5 0.066968 8.48644e-07 9.91979e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the baby out with ||| 0.0208333 0.0535436 8.48644e-07 2.57715e-11 2.718 ||| 0-3 ||| 48 1.17835e+06 +en ||| the back of ||| 0.0107527 0.0116562 8.48644e-07 5.63101e-07 2.718 ||| 0-2 ||| 93 1.17835e+06 +en ||| the balance in ||| 0.0169492 0.605812 8.48644e-07 1.53088e-06 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| the ballot boxes in ||| 0.5 0.605812 8.48644e-07 2.83496e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the basis for ||| 0.00165837 0.0286209 1.69729e-06 4.19416e-07 2.718 ||| 0-2 ||| 1206 1.17835e+06 +en ||| the basis of ||| 0.000500167 0.0116562 2.54593e-06 4.97129e-07 2.718 ||| 0-2 ||| 5998 1.17835e+06 +en ||| the basis on ||| 0.00537634 0.22993 8.48644e-07 3.02748e-06 2.718 ||| 0-2 ||| 186 1.17835e+06 +en ||| the basis ||| 0.00012164 0.0011669 8.48644e-07 1.70106e-06 2.718 ||| 0-0 ||| 8221 1.17835e+06 +en ||| the belief ||| 0.00245098 0.0026178 8.48644e-07 1.65758e-07 2.718 ||| 0-1 ||| 408 1.17835e+06 +en ||| the beneficiary in ||| 1 0.605812 8.48644e-07 9.07186e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the benefit ||| 0.000625391 0.0011669 8.48644e-07 3.77281e-07 2.718 ||| 0-0 ||| 1599 1.17835e+06 +en ||| the benefits of ||| 0.00115473 0.0116562 8.48644e-07 3.31531e-08 2.718 ||| 0-2 ||| 866 1.17835e+06 +en ||| the best for ||| 0.0166667 0.0286209 8.48644e-07 9.7826e-08 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| the best in ||| 0.0333333 0.605812 1.69729e-06 3.92642e-06 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| the better , in fact . ||| 1 0.605812 8.48644e-07 5.09658e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the better , in fact ||| 1 0.605812 8.48644e-07 1.68259e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the better , in ||| 1 0.605812 8.48644e-07 5.74401e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the better from ||| 1 0.0308834 8.48644e-07 3.9689e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the better in ||| 0.0714286 0.605812 8.48644e-07 4.81659e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| the better of ||| 0.0434783 0.0116562 8.48644e-07 1.4224e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| the better ||| 0.00157729 0.0011669 8.48644e-07 4.86713e-07 2.718 ||| 0-0 ||| 634 1.17835e+06 +en ||| the birth of ||| 0.00900901 0.0011669 8.48644e-07 1.68195e-09 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| the birth ||| 0.00641026 0.0011669 8.48644e-07 3.09388e-08 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| the blame for ||| 0.011236 0.0286209 8.48644e-07 1.68105e-08 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| the board in ||| 0.0625 0.605812 8.48644e-07 3.78467e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| the board on ||| 0.5 0.22993 8.48644e-07 6.80649e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the border into ||| 0.047619 0.525896 8.48644e-07 3.18017e-08 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| the boundaries of ||| 0.00943396 0.0116562 8.48644e-07 6.61388e-09 2.718 ||| 0-2 ||| 106 1.17835e+06 +en ||| the brakes on ||| 0.0384615 0.22993 8.48644e-07 7.13789e-09 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| the brunt of ||| 0.0123457 0.0116562 8.48644e-07 2.67904e-09 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| the bud in ||| 0.5 0.605812 8.48644e-07 2.04117e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the budget for ||| 0.00177305 0.0286209 8.48644e-07 8.71605e-08 2.718 ||| 0-2 ||| 564 1.17835e+06 +en ||| the call came in ||| 1 0.605812 8.48644e-07 7.92994e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the calls ||| 0.00431034 0.00066485 8.48644e-07 2.00529e-09 2.718 ||| 0-0 0-1 ||| 232 1.17835e+06 +en ||| the case , ||| 0.000859845 0.0011669 8.48644e-07 3.65509e-07 2.718 ||| 0-0 ||| 1163 1.17835e+06 +en ||| the case . in ||| 0.5 0.605812 8.48644e-07 9.18732e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the case at ||| 0.0625 0.321886 5.94051e-06 2.62745e-06 2.718 ||| 0-2 ||| 112 1.17835e+06 +en ||| the case during ||| 0.0714286 0.226251 8.48644e-07 1.8991e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| the case for ||| 0.0137615 0.0286209 5.09187e-06 7.55697e-07 2.718 ||| 0-2 ||| 436 1.17835e+06 +en ||| the case in the ||| 0.00574713 0.605812 8.48644e-07 1.86209e-06 2.718 ||| 0-2 ||| 174 1.17835e+06 +en ||| the case in ||| 0.092562 0.605812 4.75241e-05 3.03312e-05 2.718 ||| 0-2 ||| 605 1.17835e+06 +en ||| the case may be , into ||| 1 0.525896 8.48644e-07 2.35439e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the case of ||| 0.000218627 0.0116562 8.48644e-07 8.9572e-07 2.718 ||| 0-2 ||| 4574 1.17835e+06 +en ||| the case on ||| 0.0555556 0.22993 8.48644e-07 5.45488e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| the case pending ||| 1 0.0928726 8.48644e-07 3.84246e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the case that in ||| 0.0555556 0.605812 8.48644e-07 5.10219e-07 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| the case that we in ||| 0.333333 0.605812 8.48644e-07 5.79216e-09 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| the case with ||| 0.0106157 0.0535436 4.24322e-06 7.65793e-07 2.718 ||| 0-2 ||| 471 1.17835e+06 +en ||| the case ||| 0.000499376 0.0011669 5.09187e-06 3.06494e-06 2.718 ||| 0-0 ||| 12015 1.17835e+06 +en ||| the chains ||| 0.1 0.0011669 8.48644e-07 4.01058e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| the changes in ||| 0.00495049 0.605812 8.48644e-07 1.44866e-06 2.718 ||| 0-2 ||| 202 1.17835e+06 +en ||| the child placed in ||| 1 0.605812 8.48644e-07 1.17484e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the choice ||| 0.00117371 0.0011669 8.48644e-07 1.27766e-07 2.718 ||| 0-0 ||| 852 1.17835e+06 +en ||| the cinema films shown in ||| 1 0.605812 8.48644e-07 2.07179e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the citizens in ||| 0.00724638 0.605812 8.48644e-07 3.0901e-06 2.718 ||| 0-2 ||| 138 1.17835e+06 +en ||| the city on ||| 0.2 0.22993 8.48644e-07 1.04519e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| the closing of ||| 0.0322581 0.0011669 8.48644e-07 1.29261e-09 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| the closing ||| 0.0204082 0.0011669 8.48644e-07 2.3777e-08 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| the coach in ||| 0.25 0.605812 8.48644e-07 1.21903e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| the coach ||| 0.1 0.0011669 8.48644e-07 1.23182e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| the common currency , by ||| 1 0.0468744 8.48644e-07 5.38085e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the concept of ||| 0.000606428 0.0116562 8.48644e-07 4.97297e-08 2.718 ||| 0-2 ||| 1649 1.17835e+06 +en ||| the concept ||| 0.000508906 0.0011669 8.48644e-07 1.70163e-07 2.718 ||| 0-0 ||| 1965 1.17835e+06 +en ||| the conditions in ||| 0.00420168 0.605812 8.48644e-07 3.38777e-06 2.718 ||| 0-2 ||| 238 1.17835e+06 +en ||| the conditions of ||| 0.00219298 0.0116562 8.48644e-07 1.00045e-07 2.718 ||| 0-2 ||| 456 1.17835e+06 +en ||| the consequences of ||| 0.000542594 0.0116562 8.48644e-07 3.5581e-08 2.718 ||| 0-2 ||| 1843 1.17835e+06 +en ||| the consultation procedure becomes a ||| 1 0.0011669 8.48644e-07 7.73597e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| the consultation procedure becomes ||| 1 0.0011669 8.48644e-07 1.74525e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| the consultation procedure ||| 0.0128205 0.0011669 8.48644e-07 4.25672e-12 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| the consultation ||| 0.00324675 0.0011669 8.48644e-07 4.23976e-08 2.718 ||| 0-0 ||| 308 1.17835e+06 +en ||| the context of ||| 0.0002531 0.0116562 8.48644e-07 1.12352e-07 2.718 ||| 0-2 ||| 3951 1.17835e+06 +en ||| the contrary . ||| 0.00555556 0.0710493 8.48644e-07 4.90923e-08 2.718 ||| 0-1 ||| 180 1.17835e+06 +en ||| the contrary during ||| 1 0.226251 8.48644e-07 8.94611e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the contrary ||| 0.00113572 0.0710493 1.69729e-06 1.62074e-05 2.718 ||| 0-1 ||| 1761 1.17835e+06 +en ||| the conviction ||| 0.0037037 0.0011669 8.48644e-07 2.17717e-08 2.718 ||| 0-0 ||| 270 1.17835e+06 +en ||| the cooperation in ||| 0.0454545 0.605812 8.48644e-07 2.611e-06 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| the core of ||| 0.00373134 0.0116562 8.48644e-07 1.26417e-08 2.718 ||| 0-2 ||| 268 1.17835e+06 +en ||| the countries of ||| 0.000713012 0.0116562 1.69729e-06 3.17885e-07 2.718 ||| 0-2 ||| 2805 1.17835e+06 +en ||| the country being moved into - and ||| 1 0.525896 8.48644e-07 2.08484e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the country being moved into - ||| 1 0.525896 8.48644e-07 1.66442e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the country being moved into ||| 1 0.525896 8.48644e-07 4.41246e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the country in ||| 0.00749064 0.605812 1.69729e-06 1.0203e-05 2.718 ||| 0-2 ||| 267 1.17835e+06 +en ||| the country of ||| 0.00202429 0.0116562 8.48644e-07 3.01308e-07 2.718 ||| 0-2 ||| 494 1.17835e+06 +en ||| the course of ||| 0.000650195 0.0116562 8.48644e-07 1.0563e-06 2.718 ||| 0-2 ||| 1538 1.17835e+06 +en ||| the course ||| 0.000987167 0.0011669 1.69729e-06 3.61439e-06 2.718 ||| 0-0 ||| 2026 1.17835e+06 +en ||| the creation ||| 0.000164609 0.0011669 8.48644e-07 1.32922e-07 2.718 ||| 0-0 ||| 6075 1.17835e+06 +en ||| the credit ||| 0.00578035 0.0011669 8.48644e-07 1.03129e-07 2.718 ||| 0-0 ||| 173 1.17835e+06 +en ||| the crews on ||| 0.333333 0.22993 8.48644e-07 2.0394e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| the crime , in ||| 0.333333 0.605812 8.48644e-07 1.42333e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| the criminal law in ||| 0.333333 0.605812 8.48644e-07 2.08418e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| the crisis in ||| 0.0015873 0.605812 8.48644e-07 2.04967e-06 2.718 ||| 0-2 ||| 630 1.17835e+06 +en ||| the criteria for ||| 0.00207039 0.0286209 8.48644e-07 2.16135e-08 2.718 ||| 0-2 ||| 483 1.17835e+06 +en ||| the crucial issues ||| 0.0333333 0.0011669 8.48644e-07 2.745e-11 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| the crucial points where ||| 1 0.247783 8.48644e-07 2.58768e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the crucial thing is ||| 0.0769231 0.0011669 8.48644e-07 1.24822e-12 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| the crucial thing ||| 0.0357143 0.0011669 8.48644e-07 3.9827e-11 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| the crucial ||| 0.0112994 0.0011669 1.69729e-06 1.09145e-07 2.718 ||| 0-0 ||| 177 1.17835e+06 +en ||| the current cases in ||| 1 0.605812 8.48644e-07 5.98484e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the current ||| 0.000183925 0.00321825 8.48644e-07 1.83341e-07 2.718 ||| 0-0 0-1 ||| 5437 1.17835e+06 +en ||| the damage in ||| 0.0909091 0.605812 8.48644e-07 1.19352e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| the danger ||| 0.002331 0.0011669 1.69729e-06 1.40084e-07 2.718 ||| 0-0 ||| 858 1.17835e+06 +en ||| the data were collected in ||| 1 0.605812 8.48644e-07 2.99075e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the date in ||| 0.125 0.605812 8.48644e-07 2.89733e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| the date of ||| 0.00269542 0.0116562 8.48644e-07 8.55618e-08 2.718 ||| 0-2 ||| 371 1.17835e+06 +en ||| the date ||| 0.0010627 0.0011669 8.48644e-07 2.92772e-07 2.718 ||| 0-0 ||| 941 1.17835e+06 +en ||| the day , listening to ||| 1 0.0247351 8.48644e-07 6.64309e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the day in ||| 0.125 0.605812 8.48644e-07 7.26316e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| the day on ||| 0.0232558 0.22993 8.48644e-07 1.30623e-06 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| the deal , in ||| 1 0.605812 8.48644e-07 1.4355e-06 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the death penalty in a ||| 0.142857 0.605812 8.48644e-07 9.55281e-13 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| the death penalty in ||| 0.0160428 0.605812 2.54593e-06 2.15513e-11 2.718 ||| 0-3 ||| 187 1.17835e+06 +en ||| the debate in ||| 0.00791557 0.605812 2.54593e-06 5.61038e-06 2.718 ||| 0-2 ||| 379 1.17835e+06 +en ||| the debate on ||| 0.000332447 0.22993 8.48644e-07 1.00899e-06 2.718 ||| 0-2 ||| 3008 1.17835e+06 +en ||| the decision is taken at ||| 0.333333 0.321886 8.48644e-07 1.10355e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| the decision made by ||| 0.0294118 0.0468744 8.48644e-07 1.72093e-10 2.718 ||| 0-3 ||| 34 1.17835e+06 +en ||| the decisions already made by ||| 0.5 0.0468744 8.48644e-07 3.86575e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| the definition in ||| 0.0416667 0.605812 8.48644e-07 7.73943e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| the degree ||| 0.00214133 0.0011669 8.48644e-07 3.96761e-07 2.718 ||| 0-0 ||| 467 1.17835e+06 +en ||| the delegates of ||| 0.142857 0.0116562 8.48644e-07 5.10692e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| the demand contained within ||| 1 0.369196 8.48644e-07 2.48077e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the destination ||| 0.0178571 0.0011669 8.48644e-07 1.54694e-08 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| the development of ||| 0.000163345 0.0116562 8.48644e-07 1.37719e-07 2.718 ||| 0-2 ||| 6122 1.17835e+06 +en ||| the developments in ||| 0.00564972 0.605812 8.48644e-07 8.47652e-07 2.718 ||| 0-2 ||| 177 1.17835e+06 +en ||| the devil in ||| 0.333333 0.605812 8.48644e-07 1.98447e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| the differences in ||| 0.00465116 0.605812 8.48644e-07 6.6338e-07 2.718 ||| 0-2 ||| 215 1.17835e+06 +en ||| the differences inside ||| 0.5 0.188717 8.48644e-07 2.74672e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the different ways in ||| 0.04 0.605812 8.48644e-07 6.01784e-10 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| the direction of ||| 0.00185874 0.0116562 8.48644e-07 7.5934e-08 2.718 ||| 0-2 ||| 538 1.17835e+06 +en ||| the directive in ||| 0.00421941 0.605812 8.48644e-07 3.16381e-06 2.718 ||| 0-2 ||| 237 1.17835e+06 +en ||| the directive into ||| 0.0192308 0.525896 8.48644e-07 1.5167e-07 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| the directive with ||| 0.0666667 0.0535436 8.48644e-07 7.98789e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| the disaster in ||| 0.0142857 0.605812 8.48644e-07 7.14409e-07 2.718 ||| 0-2 ||| 70 1.17835e+06 +en ||| the discredit ||| 0.25 0.0011669 8.48644e-07 6.30234e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| the discussion of ||| 0.00537634 0.0116562 8.48644e-07 7.23341e-08 2.718 ||| 0-2 ||| 186 1.17835e+06 +en ||| the discussion served as ||| 1 0.066968 8.48644e-07 2.16586e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the discussion ||| 0.000583431 0.0011669 8.48644e-07 2.4751e-07 2.718 ||| 0-0 ||| 1714 1.17835e+06 +en ||| the distinction between these terms is ||| 1 0.0014765 8.48644e-07 6.07209e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the distinction between these terms ||| 1 0.0014765 8.48644e-07 1.93742e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the distinction between these ||| 0.5 0.0014765 8.48644e-07 1.76514e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the distortion of ||| 0.0147059 0.0116562 8.48644e-07 1.84184e-09 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| the document carefully as well ||| 1 0.066968 8.48644e-07 2.2994e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the document carefully as ||| 1 0.066968 8.48644e-07 1.45018e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the document is ||| 0.0217391 0.0013046 8.48644e-07 1.03901e-08 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| the document ||| 0.000809062 0.0013046 8.48644e-07 3.31516e-07 2.718 ||| 0-1 ||| 1236 1.17835e+06 +en ||| the documents are , in ||| 1 0.605812 8.48644e-07 1.29266e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the doors of ||| 0.02 0.0116562 8.48644e-07 9.96268e-09 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| the draft agenda of ||| 0.5 0.0116562 8.48644e-07 4.36453e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the economic operators in ||| 1 0.605812 8.48644e-07 4.47044e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the economy ||| 0.000539084 0.0011669 1.69729e-06 1.49537e-07 2.718 ||| 0-0 ||| 3710 1.17835e+06 +en ||| the effect of ||| 0.00177305 0.0116562 8.48644e-07 2.7929e-07 2.718 ||| 0-2 ||| 564 1.17835e+06 +en ||| the effect ||| 0.000522739 0.0011669 8.48644e-07 9.55664e-07 2.718 ||| 0-0 ||| 1913 1.17835e+06 +en ||| the effects on ||| 0.00543478 0.22993 8.48644e-07 2.76848e-07 2.718 ||| 0-2 ||| 184 1.17835e+06 +en ||| the effort to deprive working people ||| 0.5 0.0029456 8.48644e-07 4.60895e-20 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| the effort to deprive working ||| 0.5 0.0029456 8.48644e-07 5.23625e-17 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| the effort to ||| 0.00694444 0.0247351 8.48644e-07 1.52717e-07 2.718 ||| 0-2 ||| 144 1.17835e+06 +en ||| the eight conclusions which the Committee on ||| 1 0.22993 8.48644e-07 4.8056e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| the elected representatives of a ||| 0.5 0.0116562 8.48644e-07 2.68124e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the elected representatives of ||| 0.011236 0.0116562 8.48644e-07 6.04894e-13 2.718 ||| 0-3 ||| 89 1.17835e+06 +en ||| the electricity used in ||| 0.5 0.605812 8.48644e-07 1.22836e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the emphasis on the ||| 0.0113636 0.22993 8.48644e-07 1.59946e-08 2.718 ||| 0-2 ||| 88 1.17835e+06 +en ||| the emphasis on ||| 0.00280112 0.22993 8.48644e-07 2.60533e-07 2.718 ||| 0-2 ||| 357 1.17835e+06 +en ||| the end of ||| 0.000908403 0.0116562 5.09187e-06 3.64266e-07 2.718 ||| 0-2 ||| 6605 1.17835e+06 +en ||| the end ||| 0.000116509 0.0011669 8.48644e-07 1.24643e-06 2.718 ||| 0-0 ||| 8583 1.17835e+06 +en ||| the environment ] at ||| 1 0.321886 8.48644e-07 5.12505e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the environment were speaking about at ||| 1 0.321886 8.48644e-07 3.98568e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the establishment in ||| 0.0769231 0.605812 8.48644e-07 1.27573e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| the establishment of ||| 0.000365764 0.0116562 8.48644e-07 3.7674e-08 2.718 ||| 0-2 ||| 2734 1.17835e+06 +en ||| the establishment ||| 0.000607165 0.0011669 1.69729e-06 1.28911e-07 2.718 ||| 0-0 ||| 3294 1.17835e+06 +en ||| the estimate proposed by Parliament was in ||| 1 0.605812 8.48644e-07 1.94162e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| the euro in ||| 0.012987 0.605812 8.48644e-07 1.66412e-06 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| the event is on ||| 1 0.22993 8.48644e-07 1.66823e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the events of ||| 0.0021097 0.0116562 8.48644e-07 6.08644e-08 2.718 ||| 0-2 ||| 474 1.17835e+06 +en ||| the events that took place in Moscow ||| 1 0.605812 8.48644e-07 1.38532e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the events that took place in ||| 0.0769231 0.605812 8.48644e-07 7.69621e-15 2.718 ||| 0-5 ||| 13 1.17835e+06 +en ||| the events to take place in ||| 0.333333 0.605812 8.48644e-07 4.43753e-13 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| the exception rather than ||| 0.1 0.0011669 8.48644e-07 5.01115e-15 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| the exception rather ||| 0.111111 0.0011669 8.48644e-07 1.64031e-11 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| the exception ||| 0.00188679 0.0011669 8.48644e-07 5.35699e-08 2.718 ||| 0-0 ||| 530 1.17835e+06 +en ||| the existence in ||| 0.142857 0.605812 8.48644e-07 1.95896e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| the existence of ||| 0.000812348 0.0116562 8.48644e-07 5.78505e-08 2.718 ||| 0-2 ||| 1231 1.17835e+06 +en ||| the experience in ||| 0.03125 0.605812 8.48644e-07 1.95896e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| the extension of ||| 0.00180832 0.0116562 8.48644e-07 1.41487e-08 2.718 ||| 0-2 ||| 553 1.17835e+06 +en ||| the extent of making ||| 0.333333 0.0116562 8.48644e-07 6.1902e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| the extent of ||| 0.00369004 0.0258442 1.69729e-06 1.69198e-07 2.718 ||| 0-1 0-2 ||| 542 1.17835e+06 +en ||| the extent to which ||| 0.00183486 0.0400323 8.48644e-07 9.3652e-09 2.718 ||| 0-1 ||| 545 1.17835e+06 +en ||| the extent to ||| 0.00182149 0.0400323 8.48644e-07 1.10249e-06 2.718 ||| 0-1 ||| 549 1.17835e+06 +en ||| the extent ||| 0.00290529 0.0400323 4.24322e-06 1.24073e-05 2.718 ||| 0-1 ||| 1721 1.17835e+06 +en ||| the fact is that , in ||| 0.133333 0.605812 1.69729e-06 5.22116e-09 2.718 ||| 0-5 ||| 15 1.17835e+06 +en ||| the fact of ||| 0.00862069 0.0116562 8.48644e-07 2.45241e-06 2.718 ||| 0-2 ||| 116 1.17835e+06 +en ||| the fact that , on ||| 0.037037 0.22993 8.48644e-07 2.99604e-08 2.718 ||| 0-4 ||| 27 1.17835e+06 +en ||| the fact that eight soldiers were killed ||| 1 0.0005269 8.48644e-07 4.24333e-25 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the fact that eight soldiers were ||| 1 0.0005269 8.48644e-07 1.78291e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the fact that eight soldiers ||| 1 0.0005269 8.48644e-07 9.95262e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the fact that eight ||| 1 0.0005269 8.48644e-07 2.11758e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the fact that in ||| 0.0047619 0.605812 8.48644e-07 1.39694e-06 2.718 ||| 0-3 ||| 210 1.17835e+06 +en ||| the fact that it will be forming ||| 0.5 0.0011669 8.48644e-07 3.54215e-18 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| the fact that it will be ||| 0.0909091 0.0011669 8.48644e-07 3.93572e-13 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| the fact that it will ||| 0.1 0.0011669 8.48644e-07 2.17168e-11 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| the fact that it ||| 0.00647249 0.0011669 1.69729e-06 2.51027e-09 2.718 ||| 0-0 ||| 309 1.17835e+06 +en ||| the fact that there are countries in ||| 0.5 0.605812 8.48644e-07 2.46691e-14 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| the fact that ||| 0.00018216 0.0011669 2.54593e-06 1.4116e-07 2.718 ||| 0-0 ||| 16469 1.17835e+06 +en ||| the fact ||| 0.000890567 0.0011669 2.12161e-05 8.39157e-06 2.718 ||| 0-0 ||| 28072 1.17835e+06 +en ||| the factory in ||| 0.142857 0.605812 8.48644e-07 1.02058e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| the fans on in ||| 1 0.417871 8.48644e-07 1.64807e-09 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| the fault of ||| 0.0166667 0.0116562 1.69729e-06 1.32278e-08 2.718 ||| 0-2 ||| 120 1.17835e+06 +en ||| the favour in future . in ||| 1 0.605812 8.48644e-07 1.57926e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the feeling in ||| 0.0833333 0.605812 8.48644e-07 1.02909e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| the field ||| 0.000188218 0.0011669 8.48644e-07 4.18533e-07 2.718 ||| 0-0 ||| 5313 1.17835e+06 +en ||| the fifth part of ||| 0.333333 0.0345572 8.48644e-07 1.30112e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| the fifth part ||| 0.333333 0.0345572 8.48644e-07 2.39336e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| the fifth ||| 0.00175747 0.0345572 8.48644e-07 2.00751e-06 2.718 ||| 0-1 ||| 569 1.17835e+06 +en ||| the figure for ||| 0.0188679 0.0286209 8.48644e-07 5.38926e-08 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| the first base , ||| 1 0.138055 8.48644e-07 1.51244e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| the first base ||| 1 0.138055 8.48644e-07 1.26825e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| the first century ||| 0.125 0.138055 8.48644e-07 5.14052e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| the first half ||| 0.00350877 0.138055 8.48644e-07 1.08064e-08 2.718 ||| 0-1 ||| 285 1.17835e+06 +en ||| the first is ||| 0.000619963 0.138055 8.48644e-07 1.17598e-05 2.718 ||| 0-1 ||| 1613 1.17835e+06 +en ||| the first item on ||| 0.142857 0.22993 8.48644e-07 1.03762e-10 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| the first place ||| 0.00152905 0.138055 8.48644e-07 5.64707e-07 2.718 ||| 0-1 ||| 654 1.17835e+06 +en ||| the first time I have spoken in ||| 0.166667 0.605812 8.48644e-07 4.72725e-17 2.718 ||| 0-6 ||| 6 1.17835e+06 +en ||| the first time in ||| 0.00246305 0.605812 8.48644e-07 2.50579e-08 2.718 ||| 0-3 ||| 406 1.17835e+06 +en ||| the first year ||| 0.0045045 0.138055 8.48644e-07 9.358e-08 2.718 ||| 0-1 ||| 222 1.17835e+06 +en ||| the first ||| 0.000543693 0.138055 9.33509e-06 0.000375221 2.718 ||| 0-1 ||| 20232 1.17835e+06 +en ||| the floor of ||| 0.0294118 0.0116562 8.48644e-07 3.5581e-08 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| the floor on ||| 0.00769231 0.22993 8.48644e-07 2.16686e-07 2.718 ||| 0-2 ||| 130 1.17835e+06 +en ||| the fly in the ||| 0.5 0.605812 8.48644e-07 2.0015e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the fly in ||| 0.333333 0.605812 8.48644e-07 3.2602e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| the following , in ||| 1 0.605812 8.48644e-07 4.32069e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the following in ||| 0.0666667 0.605812 8.48644e-07 3.62308e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| the following statement , in ||| 1 0.605812 8.48644e-07 3.21891e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the following words in ||| 1 0.605812 8.48644e-07 8.18815e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the following ||| 0.000267308 0.0050528 8.48644e-07 2.61261e-07 2.718 ||| 0-0 0-1 ||| 3741 1.17835e+06 +en ||| the forefront in ||| 0.0212766 0.605812 8.48644e-07 2.66486e-07 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| the form of ||| 0.00323799 0.0116562 5.09187e-06 3.81093e-07 2.718 ||| 0-2 ||| 1853 1.17835e+06 +en ||| the form ||| 0.000411523 0.0011669 8.48644e-07 1.30401e-06 2.718 ||| 0-0 ||| 2430 1.17835e+06 +en ||| the framework of ||| 0.000292912 0.0116562 8.48644e-07 9.97105e-08 2.718 ||| 0-2 ||| 3414 1.17835e+06 +en ||| the freezing ||| 0.00909091 0.0011669 8.48644e-07 9.16704e-09 2.718 ||| 0-0 ||| 110 1.17835e+06 +en ||| the functioning of the WTO ||| 0.166667 0.0116562 8.48644e-07 7.72757e-15 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| the functioning of the ||| 0.00188324 0.0116562 8.48644e-07 7.96657e-10 2.718 ||| 0-2 ||| 531 1.17835e+06 +en ||| the functioning of ||| 0.00234742 0.0116562 8.48644e-07 1.29766e-08 2.718 ||| 0-2 ||| 426 1.17835e+06 +en ||| the fundamental objective ||| 0.0285714 0.0011669 8.48644e-07 9.44827e-12 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| the fundamental ||| 0.00355872 0.0011669 8.48644e-07 1.4123e-07 2.718 ||| 0-0 ||| 281 1.17835e+06 +en ||| the funds ||| 0.000504286 0.0011669 8.48644e-07 2.18577e-07 2.718 ||| 0-0 ||| 1983 1.17835e+06 +en ||| the furniture in ||| 0.75 0.605812 2.54593e-06 3.11845e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| the future , on ||| 0.0909091 0.22993 8.48644e-07 1.6149e-07 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| the future concerning ||| 1 0.0888235 8.48644e-07 1.97608e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the future regarding ||| 0.333333 0.140669 8.48644e-07 3.08666e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| the game within ||| 1 0.369196 8.48644e-07 1.96022e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the general ||| 0.00148588 0.0011669 8.48644e-07 5.01036e-07 2.718 ||| 0-0 ||| 673 1.17835e+06 +en ||| the generation of ||| 0.0125 0.0116562 8.48644e-07 1.47347e-08 2.718 ||| 0-2 ||| 80 1.17835e+06 +en ||| the given ||| 0.0434783 0.0546585 8.48644e-07 7.12697e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| the goods in ||| 0.142857 0.605812 8.48644e-07 1.30692e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| the governments in ||| 0.010101 0.605812 8.48644e-07 9.69555e-07 2.718 ||| 0-2 ||| 99 1.17835e+06 +en ||| the governments of ||| 0.00101112 0.0116562 8.48644e-07 2.86322e-08 2.718 ||| 0-2 ||| 989 1.17835e+06 +en ||| the greatest attention ||| 0.0344828 0.0011669 8.48644e-07 1.37732e-11 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| the greatest scourge ||| 0.142857 0.0011669 8.48644e-07 1.68674e-13 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| the greatest ||| 0.000791139 0.0011669 1.69729e-06 5.27105e-08 2.718 ||| 0-0 ||| 2528 1.17835e+06 +en ||| the ground at ||| 0.125 0.321886 8.48644e-07 2.87328e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| the ground for a broader transatlantic partnership ||| 1 0.0286209 8.48644e-07 2.38476e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the ground for a broader transatlantic ||| 1 0.0286209 8.48644e-07 1.10405e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the ground for a broader ||| 1 0.0286209 8.48644e-07 5.01843e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the ground for a ||| 0.04 0.0286209 8.48644e-07 3.66308e-09 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| the ground for ||| 0.008 0.0286209 8.48644e-07 8.264e-08 2.718 ||| 0-2 ||| 125 1.17835e+06 +en ||| the ground in ||| 0.0319149 0.605812 2.54593e-06 3.3169e-06 2.718 ||| 0-2 ||| 94 1.17835e+06 +en ||| the ground ||| 0.00049776 0.0011669 8.48644e-07 3.3517e-07 2.718 ||| 0-0 ||| 2009 1.17835e+06 +en ||| the grounds that ||| 0.00460829 0.0017499 8.48644e-07 6.71825e-09 2.718 ||| 0-2 ||| 217 1.17835e+06 +en ||| the group concerned consists ||| 1 0.201278 8.48644e-07 2.18142e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the guilty on ||| 1 0.22993 8.48644e-07 1.08088e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the gun on ||| 1 0.22993 8.48644e-07 2.0394e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the halfway point , in ||| 1 0.605812 8.48644e-07 9.46413e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the head of ||| 0.00374532 0.0116562 8.48644e-07 6.05296e-08 2.718 ||| 0-2 ||| 267 1.17835e+06 +en ||| the head when ||| 0.2 0.142731 8.48644e-07 2.64245e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| the heads of ||| 0.00321543 0.0116562 8.48644e-07 2.43625e-08 2.718 ||| 0-2 ||| 311 1.17835e+06 +en ||| the heart of ||| 0.000744048 0.0116562 8.48644e-07 6.74783e-08 2.718 ||| 0-2 ||| 1344 1.17835e+06 +en ||| the helm in ||| 0.25 0.605812 8.48644e-07 7.08739e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| the history of civilization in ||| 1 0.605812 8.48644e-07 3.88381e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the hits on ||| 0.5 0.22993 8.48644e-07 1.83546e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the idea in ||| 0.05 0.605812 8.48644e-07 6.35597e-06 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| the idea of impact assessments on ||| 0.5 0.22993 8.48644e-07 2.96991e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| the idea of ||| 0.000313381 0.00641155 8.48644e-07 8.75858e-09 2.718 ||| 0-0 0-2 ||| 3191 1.17835e+06 +en ||| the idea ||| 0.000162681 0.0011669 8.48644e-07 6.42266e-07 2.718 ||| 0-0 ||| 6147 1.17835e+06 +en ||| the impact on ||| 0.0122699 0.22993 3.39458e-06 4.20116e-07 2.718 ||| 0-2 ||| 326 1.17835e+06 +en ||| the implications of their actions on ||| 0.25 0.22993 1.69729e-06 4.68679e-16 2.718 ||| 0-5 ||| 8 1.17835e+06 +en ||| the importance of ||| 0.000292184 0.0116562 1.69729e-06 1.08752e-07 2.718 ||| 0-2 ||| 6845 1.17835e+06 +en ||| the inclusion in ||| 0.0116279 0.605812 8.48644e-07 5.49982e-07 2.718 ||| 0-2 ||| 86 1.17835e+06 +en ||| the incorporation in ||| 0.333333 0.605812 8.48644e-07 7.08739e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| the increase in ||| 0.000981354 0.605812 8.48644e-07 3.66276e-06 2.718 ||| 0-2 ||| 1019 1.17835e+06 +en ||| the increase to ||| 0.0909091 0.0247351 8.48644e-07 2.2295e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| the industry into ||| 0.5 0.525896 8.48644e-07 1.7953e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the inescapable ||| 0.125 0.0011669 8.48644e-07 2.00529e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| the infertile soil where ||| 1 0.247783 8.48644e-07 2.63516e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the information appears on ||| 1 0.22993 8.48644e-07 4.40464e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the institution of the ||| 0.00813008 0.0116562 8.48644e-07 1.40314e-09 2.718 ||| 0-2 ||| 123 1.17835e+06 +en ||| the institution of ||| 0.00675676 0.0116562 8.48644e-07 2.28556e-08 2.718 ||| 0-2 ||| 148 1.17835e+06 +en ||| the intention in ||| 0.125 0.605812 8.48644e-07 1.60175e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| the intention was that ||| 0.166667 0.0011669 8.48644e-07 8.53012e-12 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| the intention was ||| 0.0227273 0.0011669 8.48644e-07 5.07093e-10 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| the intention ||| 0.000818331 0.0011669 8.48644e-07 1.61856e-07 2.718 ||| 0-0 ||| 1222 1.17835e+06 +en ||| the interests of ||| 0.000202716 0.0116562 8.48644e-07 1.1478e-07 2.718 ||| 0-2 ||| 4933 1.17835e+06 +en ||| the introduction of ||| 0.000659413 0.0116562 1.69729e-06 4.3953e-08 2.718 ||| 0-2 ||| 3033 1.17835e+06 +en ||| the investigation at ||| 0.25 0.321886 8.48644e-07 4.51866e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| the issue at ||| 0.00900901 0.321886 8.48644e-07 1.85855e-06 2.718 ||| 0-2 ||| 111 1.17835e+06 +en ||| the issue in the ||| 0.0333333 0.605812 8.48644e-07 1.31716e-06 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| the issue in ||| 0.02 0.605812 2.54593e-06 2.1455e-05 2.718 ||| 0-2 ||| 150 1.17835e+06 +en ||| the issue of active ||| 1 0.0116562 8.48644e-07 2.55338e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the issue of ||| 0.000877303 0.0116562 5.94051e-06 6.33593e-07 2.718 ||| 0-2 ||| 7979 1.17835e+06 +en ||| the issue ||| 0.000241975 0.0011669 2.54593e-06 2.168e-06 2.718 ||| 0-0 ||| 12398 1.17835e+06 +en ||| the issues and ||| 0.0117647 0.0010182 8.48644e-07 1.42465e-08 2.718 ||| 0-2 ||| 85 1.17835e+06 +en ||| the issues at ||| 0.0192308 0.321886 8.48644e-07 6.17632e-07 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| the issues in some of ||| 1 0.605812 8.48644e-07 4.22224e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the issues in some ||| 1 0.605812 8.48644e-07 7.76662e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the issues in ||| 0.0153846 0.605812 8.48644e-07 7.12992e-06 2.718 ||| 0-2 ||| 65 1.17835e+06 +en ||| the issues that are around in ||| 1 0.605812 8.48644e-07 2.42392e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the judicial authorities ||| 0.00763359 0.0011669 8.48644e-07 2.48026e-12 2.718 ||| 0-0 ||| 131 1.17835e+06 +en ||| the judicial ||| 0.0212766 0.0011669 8.48644e-07 3.72411e-08 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| the knowledge ||| 0.00215983 0.0011669 8.48644e-07 1.36073e-07 2.718 ||| 0-0 ||| 463 1.17835e+06 +en ||| the lack of ||| 0.000289519 0.0116562 8.48644e-07 1.01804e-07 2.718 ||| 0-2 ||| 3454 1.17835e+06 +en ||| the language ||| 0.00176991 0.0066452 8.48644e-07 1.29537e-06 2.718 ||| 0-1 ||| 565 1.17835e+06 +en ||| the last one ||| 0.0121951 0.0048275 8.48644e-07 2.94263e-08 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| the last ||| 0.000118245 0.0048275 8.48644e-07 7.06006e-06 2.718 ||| 0-1 ||| 8457 1.17835e+06 +en ||| the latter in advance ||| 0.5 0.605812 8.48644e-07 9.61711e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the latter in ||| 0.142857 0.605812 1.69729e-06 2.72439e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| the latter is , today , at ||| 1 0.321886 8.48644e-07 4.74729e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| the latter must bring about the ||| 1 0.0401564 8.48644e-07 4.99473e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the latter must bring about ||| 1 0.0401564 8.48644e-07 8.13582e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the latter ||| 0.000458085 0.0011669 8.48644e-07 2.75298e-07 2.718 ||| 0-0 ||| 2183 1.17835e+06 +en ||| the law in ||| 0.0196078 0.605812 1.69729e-06 4.99803e-06 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| the lead in ||| 0.00442478 0.605812 8.48644e-07 5.45729e-06 2.718 ||| 0-2 ||| 226 1.17835e+06 +en ||| the leader ||| 0.0028169 0.0011669 8.48644e-07 3.40899e-08 2.718 ||| 0-0 ||| 355 1.17835e+06 +en ||| the leaders in ||| 0.027027 0.605812 8.48644e-07 4.70603e-07 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| the legislation , ||| 0.00606061 0.0011669 8.48644e-07 2.74328e-08 2.718 ||| 0-0 ||| 165 1.17835e+06 +en ||| the legislation ||| 0.000458926 0.0011669 8.48644e-07 2.30035e-07 2.718 ||| 0-0 ||| 2179 1.17835e+06 +en ||| the length ||| 0.00539084 0.0011669 1.69729e-06 1.10291e-07 2.718 ||| 0-0 ||| 371 1.17835e+06 +en ||| the letter of the law in ||| 1 0.605812 8.48644e-07 4.32036e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the level of being ||| 0.5 0.0116562 8.48644e-07 2.03799e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the level of ||| 0.000377216 0.0116562 8.48644e-07 7.16141e-07 2.718 ||| 0-2 ||| 2651 1.17835e+06 +en ||| the liberty of calling on ||| 0.333333 0.22993 8.48644e-07 1.84484e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| the light of day in ||| 0.111111 0.605812 8.48644e-07 6.86257e-11 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| the like in ||| 0.1 0.605812 8.48644e-07 5.0346e-05 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| the loading equipment at ||| 1 0.321886 8.48644e-07 5.93074e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the main country ||| 0.2 0.0011669 8.48644e-07 1.02791e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| the main ||| 0.000350754 0.0011669 1.69729e-06 2.85611e-07 2.718 ||| 0-0 ||| 5702 1.17835e+06 +en ||| the man in the street ||| 0.0222222 0.605812 8.48644e-07 1.55212e-12 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| the man in the ||| 0.0454545 0.605812 1.69729e-06 1.10865e-07 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| the man in ||| 0.0392157 0.605812 1.69729e-06 1.80587e-06 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| the management ||| 0.000572082 0.0011669 8.48644e-07 1.2576e-07 2.718 ||| 0-0 ||| 1748 1.17835e+06 +en ||| the mandate that I received , ||| 1 0.0060084 8.48644e-07 5.97936e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the mandate that I received ||| 1 0.0060084 8.48644e-07 5.01394e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the mandate that I ||| 1 0.0060084 8.48644e-07 5.59591e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the maritime sector ||| 0.011236 0.0005875 8.48644e-07 1.59606e-11 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| the maritime ||| 0.0333333 0.0005875 8.48644e-07 8.59485e-08 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| the mark in ||| 0.125 0.605812 1.69729e-06 1.53938e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| the market economy in ||| 0.0555556 0.605812 8.48644e-07 3.34446e-10 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| the matter again in ||| 0.333333 0.605812 8.48644e-07 1.70094e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| the matter at ||| 0.0208333 0.321886 8.48644e-07 2.54789e-06 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| the matter by staying up ||| 1 0.0468744 8.48644e-07 1.53383e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the matter by staying ||| 1 0.0468744 8.48644e-07 4.49736e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the matter by ||| 0.0909091 0.0468744 8.48644e-07 5.41851e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| the matter from ||| 0.111111 0.0308834 8.48644e-07 2.42362e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| the matter has in ||| 1 0.605812 8.48644e-07 1.51402e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the matter in ||| 0.0222222 0.605812 3.39458e-06 2.94127e-05 2.718 ||| 0-2 ||| 180 1.17835e+06 +en ||| the matter up with ||| 0.2 0.0535436 8.48644e-07 2.53264e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| the matter ||| 0.000199005 0.0011669 8.48644e-07 2.97213e-06 2.718 ||| 0-0 ||| 5025 1.17835e+06 +en ||| the measure of ||| 0.0208333 0.0116562 8.48644e-07 6.27063e-08 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| the measures in ||| 0.0106383 0.605812 8.48644e-07 5.86553e-06 2.718 ||| 0-2 ||| 94 1.17835e+06 +en ||| the meat in ||| 0.333333 0.605812 8.48644e-07 5.10292e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| the meeting in ||| 0.00657895 0.605812 8.48644e-07 3.56071e-06 2.718 ||| 0-2 ||| 152 1.17835e+06 +en ||| the members of ||| 0.00259067 0.0116562 3.39458e-06 1.23487e-07 2.718 ||| 0-2 ||| 1544 1.17835e+06 +en ||| the mention in ||| 0.5 0.605812 8.48644e-07 2.75558e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the message in ||| 0.0769231 0.605812 8.48644e-07 1.36645e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| the message ||| 0.000718907 0.0011669 8.48644e-07 1.38079e-07 2.718 ||| 0-0 ||| 1391 1.17835e+06 +en ||| the midst ||| 0.00588235 0.0011669 8.48644e-07 2.69282e-08 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| the moment in ||| 0.0294118 0.605812 1.69729e-06 5.12277e-06 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| the money in ||| 0.0232558 0.605812 8.48644e-07 4.63232e-06 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| the month of ||| 0.0222222 0.0116562 8.48644e-07 1.08836e-08 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| the mood in the EU ||| 0.5 0.605812 8.48644e-07 5.85592e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the mood in the ||| 0.166667 0.605812 8.48644e-07 1.18349e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| the mood in ||| 0.0833333 0.605812 8.48644e-07 1.92777e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| the more reason for ||| 0.0454545 0.0286209 8.48644e-07 3.77289e-10 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| the more so ||| 0.00568182 0.0087276 8.48644e-07 9.54905e-08 2.718 ||| 0-2 ||| 176 1.17835e+06 +en ||| the more ||| 0.000812018 0.0042952 1.69729e-06 2.04251e-05 2.718 ||| 0-1 ||| 2463 1.17835e+06 +en ||| the most immoral ||| 1 0.0027412 8.48644e-07 6.96183e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| the most important in ||| 0.0588235 0.605812 8.48644e-07 4.70013e-09 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| the most part , in ||| 0.25 0.605812 8.48644e-07 1.74203e-09 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| the most part on ||| 0.25 0.22993 8.48644e-07 2.62709e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| the most recent calculations , ||| 1 0.0011669 8.48644e-07 1.5787e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| the most recent calculations ||| 0.5 0.0011669 8.48644e-07 1.3238e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| the most recent ||| 0.0027248 0.0011669 8.48644e-07 6.01728e-11 2.718 ||| 0-0 ||| 367 1.17835e+06 +en ||| the most ||| 0.000332668 0.0011669 1.69729e-06 1.23812e-06 2.718 ||| 0-0 ||| 6012 1.17835e+06 +en ||| the motion , in the ||| 1 0.605812 8.48644e-07 1.56911e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the motion , in ||| 1 0.605812 8.48644e-07 2.5559e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the motion for ||| 0.0012987 0.0286209 1.69729e-06 5.33982e-08 2.718 ||| 0-2 ||| 1540 1.17835e+06 +en ||| the motion in ||| 0.111111 0.605812 8.48644e-07 2.14323e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| the music and the dancing tell the ||| 0.5 0.0066116 8.48644e-07 1.69059e-21 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| the music and the dancing tell ||| 0.5 0.0066116 8.48644e-07 2.75377e-20 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| the music and the dancing ||| 0.5 0.0066116 8.48644e-07 2.80425e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| the music and the ||| 0.5 0.0066116 8.48644e-07 1.27466e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| the music and ||| 0.0416667 0.0066116 8.48644e-07 2.07627e-09 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| the music ||| 0.0222222 0.0066116 8.48644e-07 1.65758e-07 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| the name on ||| 0.142857 0.22993 8.48644e-07 4.45608e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| the nature of the issue in ||| 1 0.605812 8.48644e-07 1.01251e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the nature of ||| 0.00137174 0.0116562 8.48644e-07 1.1838e-07 2.718 ||| 0-2 ||| 729 1.17835e+06 +en ||| the necessary skills to learn in ||| 1 0.605812 8.48644e-07 2.69188e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the need for ||| 0.000429861 0.0286209 2.54593e-06 6.47629e-07 2.718 ||| 0-2 ||| 6979 1.17835e+06 +en ||| the need to ensure ||| 0.00296736 0.0247351 8.48644e-07 7.09468e-10 2.718 ||| 0-2 ||| 337 1.17835e+06 +en ||| the need to ||| 0.000532978 0.0247351 3.39458e-06 1.58222e-06 2.718 ||| 0-2 ||| 7505 1.17835e+06 +en ||| the new law adopted recently ||| 1 0.0095755 8.48644e-07 8.07658e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the new ||| 4.88448e-05 0.0011669 8.48644e-07 1.71223e-06 2.718 ||| 0-0 ||| 20473 1.17835e+06 +en ||| the next Intergovernmental Conference on ||| 1 0.22993 8.48644e-07 4.9244e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the next discussions we have about ||| 1 0.0206617 8.48644e-07 4.76737e-18 2.718 ||| 0-0 0-5 ||| 1 1.17835e+06 +en ||| the next in ||| 1 0.605812 8.48644e-07 2.92851e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the number of users in ||| 1 0.605812 8.48644e-07 7.93087e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the number ||| 0.000194099 0.0011669 8.48644e-07 1.41745e-06 2.718 ||| 0-0 ||| 5152 1.17835e+06 +en ||| the numberplate in ||| 1 0.605812 8.48644e-07 1.98447e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the objective ||| 0.000374252 0.0011669 8.48644e-07 1.91648e-07 2.718 ||| 0-0 ||| 2672 1.17835e+06 +en ||| the observation ||| 0.00704225 0.0021802 8.48644e-07 1.22784e-07 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| the occasionally accurate ||| 0.25 0.178626 8.48644e-07 5.08226e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| the occasionally ||| 0.2 0.178626 8.48644e-07 4.88679e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| the on ||| 0.0769231 0.22993 8.48644e-07 0.00509849 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| the one at ||| 0.0833333 0.321886 8.48644e-07 1.02358e-05 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| the one he presented to ||| 1 0.0247351 8.48644e-07 4.94611e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the one in Amendment No 1 ||| 1 0.605812 8.48644e-07 1.39112e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the one in Amendment No ||| 0.5 0.605812 8.48644e-07 2.18386e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the one in Amendment ||| 0.5 0.605812 8.48644e-07 3.2258e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the one in ||| 0.04 0.605812 4.24322e-06 0.000118161 2.718 ||| 0-2 ||| 125 1.17835e+06 +en ||| the one that is in place here ||| 1 0.605812 8.48644e-07 1.90115e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the one that is in place ||| 1 0.605812 8.48644e-07 9.37545e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the one that is in ||| 1 0.605812 8.48644e-07 6.22954e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the one with ||| 0.0322581 0.0535436 8.48644e-07 2.98329e-06 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| the one ||| 0.000396511 0.0011669 1.69729e-06 1.19401e-05 2.718 ||| 0-0 ||| 5044 1.17835e+06 +en ||| the ones ||| 0.00183824 0.0011669 8.48644e-07 6.33099e-07 2.718 ||| 0-0 ||| 544 1.17835e+06 +en ||| the only sure way for ||| 1 0.0286209 8.48644e-07 2.95226e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the open in ||| 0.4 0.605812 1.69729e-06 4.56995e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| the opening of ||| 0.00175439 0.0116562 8.48644e-07 2.35253e-08 2.718 ||| 0-2 ||| 570 1.17835e+06 +en ||| the opinion of the Committee on Women ||| 0.5 0.22993 8.48644e-07 8.28392e-18 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| the opinion of the Committee on ||| 0.00101112 0.22993 8.48644e-07 6.37225e-13 2.718 ||| 0-5 ||| 989 1.17835e+06 +en ||| the opinion of ||| 0.000568505 0.0116562 8.48644e-07 2.05449e-07 2.718 ||| 0-2 ||| 1759 1.17835e+06 +en ||| the opinion ||| 0.000274574 0.00076195 8.48644e-07 1.37506e-08 2.718 ||| 0-0 0-1 ||| 3642 1.17835e+06 +en ||| the opportunity at ||| 0.0833333 0.321886 1.69729e-06 4.41797e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| the opportunity for ||| 0.0057971 0.0286209 1.69729e-06 1.27068e-07 2.718 ||| 0-2 ||| 345 1.17835e+06 +en ||| the opportunity in ||| 0.08 0.605812 1.69729e-06 5.10009e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| the opportunity of ||| 0.0017762 0.0116562 8.48644e-07 1.50612e-07 2.718 ||| 0-2 ||| 563 1.17835e+06 +en ||| the opposite being the ||| 1 0.0011669 8.48644e-07 1.06104e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| the opposite being ||| 1 0.0011669 8.48644e-07 1.7283e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| the opposite ||| 0.000933707 0.0011669 8.48644e-07 6.07316e-08 2.718 ||| 0-0 ||| 1071 1.17835e+06 +en ||| the organizations in ||| 1 0.605812 8.48644e-07 3.2602e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the origin of ingredients used in ||| 1 0.605812 8.48644e-07 5.41633e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the other , in ||| 0.0666667 0.605812 8.48644e-07 4.37985e-06 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| the other , ||| 0.000909918 0.0011669 8.48644e-07 4.4258e-07 2.718 ||| 0-0 ||| 1099 1.17835e+06 +en ||| the other day in ||| 0.0454545 0.605812 8.48644e-07 9.40942e-09 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| the other in ||| 0.030303 0.605812 8.48644e-07 3.67269e-05 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| the other to ||| 0.0285714 0.0247351 8.48644e-07 2.23554e-06 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| the other ||| 6.24532e-05 0.0011669 8.48644e-07 3.71122e-06 2.718 ||| 0-0 ||| 16012 1.17835e+06 +en ||| the outcome will be decided by ||| 1 0.0468744 8.48644e-07 2.86202e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the outcome will hinge on how the ||| 1 0.22993 8.48644e-07 3.47149e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the outcome will hinge on how ||| 1 0.22993 8.48644e-07 5.65464e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the outcome will hinge on ||| 1 0.22993 8.48644e-07 1.57775e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the outside world in ||| 0.142857 0.605812 8.48644e-07 2.57676e-10 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| the paramilitaries in ||| 0.5 0.605812 8.48644e-07 3.11845e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the parliamentarians ||| 0.0188679 0.0011669 8.48644e-07 8.30763e-09 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| the part of ||| 0.000480077 0.0116562 8.48644e-07 9.9811e-07 2.718 ||| 0-2 ||| 2083 1.17835e+06 +en ||| the participants in ||| 0.012987 0.605812 8.48644e-07 2.23962e-07 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| the participation of ||| 0.001001 0.0116562 8.48644e-07 2.01765e-08 2.718 ||| 0-2 ||| 999 1.17835e+06 +en ||| the parties involved ||| 0.00265957 0.0101887 8.48644e-07 4.56924e-10 2.718 ||| 0-2 ||| 376 1.17835e+06 +en ||| the parties to ||| 0.00343643 0.0247351 8.48644e-07 1.2666e-07 2.718 ||| 0-2 ||| 291 1.17835e+06 +en ||| the partner on ||| 1 0.22993 8.48644e-07 1.28482e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the partners for ||| 1 0.0286209 8.48644e-07 1.80819e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the parts of it ||| 0.5 0.0004304 8.48644e-07 8.30921e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| the parts of ||| 0.0540541 0.0004304 1.69729e-06 4.67251e-09 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| the parts ||| 0.0078125 0.0004304 8.48644e-07 8.59485e-08 2.718 ||| 0-1 ||| 128 1.17835e+06 +en ||| the past had a raw deal in ||| 1 0.605812 8.48644e-07 7.88922e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| the past in ||| 0.0208333 0.605812 8.48644e-07 3.63158e-06 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| the patient ||| 0.00543478 0.0011669 8.48644e-07 1.14588e-08 2.718 ||| 0-0 ||| 184 1.17835e+06 +en ||| the peace concert in ||| 1 0.605812 8.48644e-07 2.12792e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the penalty at ||| 1 0.321886 8.48644e-07 3.43811e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the people in ||| 0.00707965 0.605812 3.39458e-06 2.49533e-05 2.718 ||| 0-2 ||| 565 1.17835e+06 +en ||| the people living in ||| 0.0140845 0.605812 8.48644e-07 2.09109e-09 2.718 ||| 0-3 ||| 71 1.17835e+06 +en ||| the people of ||| 0.000266099 0.0116562 8.48644e-07 7.36903e-07 2.718 ||| 0-2 ||| 3758 1.17835e+06 +en ||| the people over ||| 0.111111 0.157937 8.48644e-07 2.16537e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| the people ||| 8.52588e-05 0.0011669 8.48644e-07 2.52151e-06 2.718 ||| 0-0 ||| 11729 1.17835e+06 +en ||| the perception ||| 0.00645161 0.0015111 8.48644e-07 2.00529e-09 2.718 ||| 0-0 0-1 ||| 155 1.17835e+06 +en ||| the perspective of ||| 0.00296736 0.0116562 8.48644e-07 2.71253e-08 2.718 ||| 0-2 ||| 337 1.17835e+06 +en ||| the pig 's ear into ||| 1 0.525896 8.48644e-07 7.56782e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the plans for ||| 0.010989 0.0286209 8.48644e-07 2.97363e-08 2.718 ||| 0-2 ||| 91 1.17835e+06 +en ||| the point , during ||| 1 0.226251 8.48644e-07 1.85177e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the point , in ||| 0.142857 0.605812 8.48644e-07 2.95754e-06 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| the point at ||| 0.00943396 0.321886 8.48644e-07 2.14833e-06 2.718 ||| 0-2 ||| 106 1.17835e+06 +en ||| the point is that , in ||| 0.5 0.605812 8.48644e-07 1.55924e-09 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| the point is that ||| 0.00909091 0.0017499 8.48644e-07 1.75927e-09 2.718 ||| 0-3 ||| 110 1.17835e+06 +en ||| the point of ||| 0.000618429 0.0116562 8.48644e-07 7.32383e-07 2.718 ||| 0-2 ||| 1617 1.17835e+06 +en ||| the point where ||| 0.0107527 0.247783 1.69729e-06 4.57389e-07 2.718 ||| 0-2 ||| 186 1.17835e+06 +en ||| the point ||| 0.00219298 0.0007826 7.6378e-06 1.29537e-06 2.718 ||| 0-1 ||| 4104 1.17835e+06 +en ||| the policy for ||| 0.0151515 0.0286209 8.48644e-07 2.7808e-07 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| the political arena in ||| 0.2 0.605812 8.48644e-07 3.44107e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| the poor at ||| 0.2 0.321886 8.48644e-07 7.24459e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| the population of ||| 0.0021978 0.0116562 8.48644e-07 5.14878e-08 2.718 ||| 0-2 ||| 455 1.17835e+06 +en ||| the port workers in ||| 1 0.605812 8.48644e-07 2.56394e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the position is defensive ||| 1 0.0011669 8.48644e-07 5.32179e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| the position is ||| 0.0163934 0.0011669 8.48644e-07 2.95655e-08 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| the position we adopt at ||| 1 0.321886 8.48644e-07 9.54775e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the position ||| 0.000266383 0.0011669 8.48644e-07 9.43346e-07 2.718 ||| 0-0 ||| 3754 1.17835e+06 +en ||| the possibility of ||| 0.000233809 0.0116562 8.48644e-07 7.16643e-08 2.718 ||| 0-2 ||| 4277 1.17835e+06 +en ||| the power plant ||| 0.0625 0.0011669 8.48644e-07 4.61916e-12 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| the power to make ||| 0.04 0.0247351 8.48644e-07 4.47718e-10 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| the power to ||| 0.00210526 0.0247351 8.48644e-07 2.57635e-07 2.718 ||| 0-2 ||| 475 1.17835e+06 +en ||| the power ||| 0.000784314 0.0011669 8.48644e-07 4.277e-07 2.718 ||| 0-0 ||| 1275 1.17835e+06 +en ||| the practice in ||| 0.0333333 0.605812 8.48644e-07 2.98804e-06 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| the practice with ||| 0.5 0.0535436 8.48644e-07 7.54412e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the preliminaries in January and February 2004 ||| 1 0.605812 8.48644e-07 7.66718e-26 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the preliminaries in January and February ||| 1 0.605812 8.48644e-07 6.08506e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the preliminaries in January and ||| 1 0.605812 8.48644e-07 1.69029e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the preliminaries in January ||| 1 0.605812 8.48644e-07 1.34944e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the preliminaries in ||| 1 0.605812 8.48644e-07 1.98447e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the prelude ||| 0.05 0.0011669 8.48644e-07 1.14588e-09 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| the presence in the ||| 0.0526316 0.605812 8.48644e-07 6.70066e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| the presence in ||| 0.0487805 0.605812 1.69729e-06 1.09146e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| the presence on ||| 0.0833333 0.22993 8.48644e-07 1.96292e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| the presence ||| 0.000757576 0.0011669 8.48644e-07 1.10291e-07 2.718 ||| 0-0 ||| 1320 1.17835e+06 +en ||| the present time in ||| 0.25 0.605812 8.48644e-07 1.70342e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| the prevailing ||| 0.027027 0.0297806 8.48644e-07 7.91954e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| the principles on ||| 0.00714286 0.22993 8.48644e-07 2.05469e-07 2.718 ||| 0-2 ||| 140 1.17835e+06 +en ||| the problem in ||| 0.00505051 0.605812 8.48644e-07 6.37582e-06 2.718 ||| 0-2 ||| 198 1.17835e+06 +en ||| the procedure ||| 0.000507357 0.0011669 8.48644e-07 2.87616e-07 2.718 ||| 0-0 ||| 1971 1.17835e+06 +en ||| the process in ||| 0.0196078 0.605812 8.48644e-07 1.21194e-05 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| the process of ||| 0.000336474 0.0116562 8.48644e-07 3.57903e-07 2.718 ||| 0-2 ||| 2972 1.17835e+06 +en ||| the processing of applications ||| 0.111111 0.0116562 8.48644e-07 1.6878e-13 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| the processing of ||| 0.00625 0.0116562 8.48644e-07 1.20557e-08 2.718 ||| 0-2 ||| 160 1.17835e+06 +en ||| the production , placing on ||| 0.5 0.22993 8.48644e-07 1.20832e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| the production of ||| 0.000845309 0.0116562 8.48644e-07 6.99062e-08 2.718 ||| 0-2 ||| 1183 1.17835e+06 +en ||| the programme for ||| 0.00763359 0.0286209 8.48644e-07 8.99858e-08 2.718 ||| 0-2 ||| 131 1.17835e+06 +en ||| the programme in ||| 0.0204082 0.605812 8.48644e-07 3.61174e-06 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| the progress made on ||| 0.0153846 0.22993 8.48644e-07 1.4066e-09 2.718 ||| 0-3 ||| 65 1.17835e+06 +en ||| the proposal in ||| 0.012605 0.605812 2.54593e-06 5.66141e-06 2.718 ||| 0-2 ||| 238 1.17835e+06 +en ||| the proposal is , on ||| 1 0.22993 8.48644e-07 3.80548e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the proposed ||| 0.000551572 0.0011669 8.48644e-07 3.19701e-07 2.718 ||| 0-0 ||| 1813 1.17835e+06 +en ||| the prospects in ||| 0.111111 0.605812 8.48644e-07 3.57205e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| the protection of ||| 0.000215146 0.0116562 8.48644e-07 8.49758e-08 2.718 ||| 0-2 ||| 4648 1.17835e+06 +en ||| the provision of ||| 0.000873362 0.0116562 8.48644e-07 9.94594e-08 2.718 ||| 0-2 ||| 1145 1.17835e+06 +en ||| the provisions of ||| 0.00103199 0.0116562 8.48644e-07 6.59714e-08 2.718 ||| 0-2 ||| 969 1.17835e+06 +en ||| the provisions on ||| 0.00406504 0.22993 8.48644e-07 4.01761e-07 2.718 ||| 0-2 ||| 246 1.17835e+06 +en ||| the public ' ||| 0.0333333 0.0032578 8.48644e-07 2.70742e-09 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| the public 's views into ||| 1 0.525896 8.48644e-07 3.40036e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the public at risk ||| 0.5 0.321886 8.48644e-07 4.64322e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the public at ||| 0.0133333 0.321886 8.48644e-07 3.96856e-07 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| the public in ||| 0.00714286 0.605812 8.48644e-07 4.58129e-06 2.718 ||| 0-2 ||| 140 1.17835e+06 +en ||| the public ||| 0.000207039 0.0011669 8.48644e-07 4.62936e-07 2.718 ||| 0-0 ||| 4830 1.17835e+06 +en ||| the publication of ||| 0.00306748 0.0116562 8.48644e-07 5.10692e-09 2.718 ||| 0-2 ||| 326 1.17835e+06 +en ||| the purpose of ||| 0.00335796 0.0116562 4.24322e-06 1.50612e-07 2.718 ||| 0-2 ||| 1489 1.17835e+06 +en ||| the purpose ||| 0.000504541 0.0011669 8.48644e-07 5.1536e-07 2.718 ||| 0-0 ||| 1982 1.17835e+06 +en ||| the purposes ||| 0.00214133 0.0011669 8.48644e-07 3.46342e-07 2.718 ||| 0-0 ||| 467 1.17835e+06 +en ||| the pursuit at the ||| 1 0.321886 8.48644e-07 3.73899e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the pursuit at ||| 1 0.321886 8.48644e-07 6.09037e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the pursuit of ||| 0.00307692 0.0116562 8.48644e-07 2.07626e-08 2.718 ||| 0-2 ||| 325 1.17835e+06 +en ||| the question as ||| 0.00540541 0.066968 8.48644e-07 9.13595e-07 2.718 ||| 0-2 ||| 185 1.17835e+06 +en ||| the question because of ||| 1 0.0022788 8.48644e-07 2.91298e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the question because ||| 0.0666667 0.0022788 8.48644e-07 5.35829e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| the question in ||| 0.0465116 0.605812 1.69729e-06 2.34536e-05 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| the question of ||| 0.000865801 0.0116562 4.24322e-06 6.92616e-07 2.718 ||| 0-2 ||| 5775 1.17835e+06 +en ||| the question ||| 0.000346741 0.0011669 3.39458e-06 2.36997e-06 2.718 ||| 0-0 ||| 11536 1.17835e+06 +en ||| the questions ||| 0.000582411 0.0011669 8.48644e-07 2.53526e-07 2.718 ||| 0-0 ||| 1717 1.17835e+06 +en ||| the rapporteur means ; in ||| 1 0.605812 8.48644e-07 4.00055e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the rate in ||| 0.2 0.605812 8.48644e-07 2.8463e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| the reason for ||| 0.00134048 0.0286209 8.48644e-07 1.65209e-07 2.718 ||| 0-2 ||| 746 1.17835e+06 +en ||| the reason why we in ||| 0.5 0.605812 8.48644e-07 1.85557e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| the reference to the Convention in ||| 1 0.605812 8.48644e-07 4.27414e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the regulation ||| 0.000303767 0.0011669 8.48644e-07 1.99956e-07 2.718 ||| 0-0 ||| 3292 1.17835e+06 +en ||| the regulations contained in ||| 1 0.605812 8.48644e-07 8.46291e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the reinstatement ||| 0.0285714 0.0011669 8.48644e-07 1.14588e-09 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| the release ||| 0.00155039 0.0011669 8.48644e-07 6.50287e-08 2.718 ||| 0-0 ||| 645 1.17835e+06 +en ||| the remit of ||| 0.00645161 0.0116562 8.48644e-07 1.38975e-08 2.718 ||| 0-2 ||| 155 1.17835e+06 +en ||| the reply , ' this is ||| 1 0.0013296 8.48644e-07 1.08274e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the reply , ' this ||| 1 0.0013296 8.48644e-07 3.4547e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the report at ||| 0.0322581 0.321886 8.48644e-07 1.00663e-06 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| the report finds ( as does the ||| 1 0.066968 8.48644e-07 2.29331e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the report finds ( as does ||| 1 0.066968 8.48644e-07 3.73552e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the report finds ( as ||| 1 0.066968 8.48644e-07 5.32581e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the report in just ||| 1 0.605812 8.48644e-07 1.46616e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the report in ||| 0.00593472 0.605812 1.69729e-06 1.16205e-05 2.718 ||| 0-2 ||| 337 1.17835e+06 +en ||| the report ||| 0.000108932 0.0004293 2.54593e-06 1.83561e-06 2.718 ||| 0-1 ||| 27540 1.17835e+06 +en ||| the requirement for ||| 0.00350877 0.0286209 8.48644e-07 2.97363e-08 2.718 ||| 0-2 ||| 285 1.17835e+06 +en ||| the requirements into line with the annexes ||| 1 0.525896 8.48644e-07 8.3969e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the requirements into line with the ||| 1 0.525896 8.48644e-07 7.63354e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the requirements into line with ||| 1 0.525896 8.48644e-07 1.24341e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the requirements into line ||| 1 0.525896 8.48644e-07 1.94451e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the requirements into ||| 1 0.525896 8.48644e-07 6.60498e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the requirements ||| 0.000618429 0.0011669 8.48644e-07 1.39224e-07 2.718 ||| 0-0 ||| 1617 1.17835e+06 +en ||| the resolution in ||| 0.0102041 0.605812 8.48644e-07 2.47775e-06 2.718 ||| 0-2 ||| 98 1.17835e+06 +en ||| the resources available for ||| 0.037037 0.0286209 8.48644e-07 1.60872e-11 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| the responsibility and emphasis on those players ||| 1 0.22993 8.48644e-07 4.61252e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the responsibility and emphasis on those ||| 1 0.22993 8.48644e-07 2.7293e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the responsibility and emphasis on ||| 1 0.22993 8.48644e-07 3.76924e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the responsibility for ||| 0.00207039 0.0286209 8.48644e-07 8.15805e-08 2.718 ||| 0-2 ||| 483 1.17835e+06 +en ||| the responsibility of ||| 0.00087108 0.0116562 8.48644e-07 9.66966e-08 2.718 ||| 0-2 ||| 1148 1.17835e+06 +en ||| the rest of ||| 0.00281426 0.0116562 2.54593e-06 6.32923e-08 2.718 ||| 0-2 ||| 1066 1.17835e+06 +en ||| the result of ||| 0.000458505 0.0116562 8.48644e-07 4.40786e-07 2.718 ||| 0-2 ||| 2181 1.17835e+06 +en ||| the review of ||| 0.00208333 0.0116562 8.48644e-07 3.16462e-08 2.718 ||| 0-2 ||| 480 1.17835e+06 +en ||| the review with ||| 0.25 0.0535436 8.48644e-07 2.70558e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| the right kind and in ||| 1 0.605812 8.48644e-07 1.11755e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the right steps in ||| 0.2 0.605812 8.48644e-07 1.07868e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| the right to live in ||| 0.0243902 0.605812 8.48644e-07 1.63756e-10 2.718 ||| 0-4 ||| 41 1.17835e+06 +en ||| the right ||| 9.273e-05 0.0071334 8.48644e-07 1.09891e-05 2.718 ||| 0-1 ||| 10784 1.17835e+06 +en ||| the road in ||| 0.1 0.605812 8.48644e-07 2.52878e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| the road ||| 0.00075188 0.0011669 8.48644e-07 2.55531e-07 2.718 ||| 0-0 ||| 1330 1.17835e+06 +en ||| the rolling of cigarettes and ||| 1 0.0010182 8.48644e-07 3.40594e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the rules of ||| 0.00105374 0.0116562 8.48644e-07 9.72826e-08 2.718 ||| 0-2 ||| 949 1.17835e+06 +en ||| the rules we laid down at ||| 1 0.321886 8.48644e-07 2.46505e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the run in ||| 1 0.605812 8.48644e-07 3.01072e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the safety of ||| 0.00136893 0.0116562 1.69729e-06 4.2446e-08 2.718 ||| 0-2 ||| 1461 1.17835e+06 +en ||| the sale ||| 0.00209644 0.0011669 8.48644e-07 3.60952e-08 2.718 ||| 0-0 ||| 477 1.17835e+06 +en ||| the same for chocolate ||| 0.333333 0.0286209 8.48644e-07 3.2966e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| the same for ||| 0.00438596 0.0286209 8.48644e-07 5.6838e-07 2.718 ||| 0-2 ||| 228 1.17835e+06 +en ||| the same in the ||| 0.0322581 0.605812 8.48644e-07 1.40053e-06 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| the same in ||| 0.0377358 0.605812 5.09187e-06 2.28129e-05 2.718 ||| 0-2 ||| 159 1.17835e+06 +en ||| the same practice ||| 0.166667 0.0011669 8.48644e-07 2.42971e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| the same rules towards ||| 1 0.0616136 8.48644e-07 5.7187e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the same table at the ||| 1 0.321886 8.48644e-07 8.21344e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the same table at ||| 1 0.321886 8.48644e-07 1.33787e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the same thing ||| 0.00163132 0.0011669 8.48644e-07 8.41176e-10 2.718 ||| 0-0 ||| 613 1.17835e+06 +en ||| the same time , in ||| 0.285714 0.605812 1.69729e-06 4.46632e-09 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| the same time participating in ||| 1 0.605812 8.48644e-07 4.30697e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the same time the differences inside ||| 1 0.188717 8.48644e-07 2.22768e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the same time within ||| 0.333333 0.369196 8.48644e-07 8.99167e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| the same way , in ||| 0.25 0.605812 8.48644e-07 5.86441e-09 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| the same with ||| 0.0185185 0.0535436 8.48644e-07 5.75973e-07 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| the same within ||| 0.166667 0.369196 8.48644e-07 5.47705e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| the same ||| 9.23745e-05 0.0011669 1.69729e-06 2.30522e-06 2.718 ||| 0-0 ||| 21651 1.17835e+06 +en ||| the scope of ||| 0.000465333 0.0116562 8.48644e-07 8.34688e-08 2.718 ||| 0-2 ||| 2149 1.17835e+06 +en ||| the seal on ||| 0.142857 0.22993 8.48644e-07 2.39629e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| the second , referred to by Mr ||| 1 0.0468744 8.48644e-07 2.25081e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the second , referred to by ||| 1 0.0468744 8.48644e-07 3.44793e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the second is ||| 0.00192308 0.0400803 8.48644e-07 9.15096e-07 2.718 ||| 0-1 ||| 520 1.17835e+06 +en ||| the second on ||| 0.0714286 0.22993 8.48644e-07 3.31912e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| the second ||| 0.000111932 0.0400803 8.48644e-07 2.91979e-05 2.718 ||| 0-1 ||| 8934 1.17835e+06 +en ||| the session in ||| 0.1 0.605812 8.48644e-07 6.23691e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| the shape of ||| 0.0037594 0.0116562 8.48644e-07 5.06506e-08 2.718 ||| 0-2 ||| 266 1.17835e+06 +en ||| the share of ||| 0.00502513 0.0116562 8.48644e-07 7.83619e-08 2.718 ||| 0-2 ||| 199 1.17835e+06 +en ||| the ships ' ||| 0.25 0.0011669 8.48644e-07 1.59407e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| the ships ||| 0.010101 0.0011669 8.48644e-07 4.64081e-08 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| the single currency in ||| 0.037037 0.605812 8.48644e-07 1.68265e-10 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| the siting ||| 0.0416667 0.0011669 8.48644e-07 1.14588e-09 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| the sitting in ||| 0.181818 0.605812 1.69729e-06 1.9703e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| the situation at ||| 0.0222222 0.321886 1.69729e-06 1.26473e-06 2.718 ||| 0-2 ||| 90 1.17835e+06 +en ||| the situation in ||| 0.00340353 0.605812 1.35783e-05 1.46e-05 2.718 ||| 0-2 ||| 4701 1.17835e+06 +en ||| the situation is exceptional for this country ||| 1 0.0286209 8.48644e-07 1.6172e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the situation is exceptional for this ||| 1 0.0286209 8.48644e-07 4.49348e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the situation is exceptional for ||| 1 0.0286209 8.48644e-07 6.95434e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the situation is on ||| 0.2 0.22993 8.48644e-07 8.2293e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| the situation when in ||| 1 0.605812 8.48644e-07 7.29856e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the situation when the ||| 0.166667 0.142731 8.48644e-07 1.15554e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| the situation when ||| 0.047619 0.142731 8.48644e-07 1.88224e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| the situation where , when ||| 1 0.142731 8.48644e-07 6.80132e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| the situation ||| 5.78269e-05 0.0011669 8.48644e-07 1.47532e-06 2.718 ||| 0-0 ||| 17293 1.17835e+06 +en ||| the skills needed for types of work ||| 1 0.0286209 8.48644e-07 1.78545e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the skills needed for types of ||| 1 0.0286209 8.48644e-07 2.82062e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the skills needed for types ||| 1 0.0286209 8.48644e-07 5.18839e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the skills needed for ||| 1 0.0286209 8.48644e-07 1.12547e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the sooner the better , in fact ||| 1 0.605812 8.48644e-07 4.85498e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the sooner the better , in ||| 1 0.605812 8.48644e-07 1.65739e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the space of ||| 0.00719424 0.0116562 8.48644e-07 3.46601e-08 2.718 ||| 0-2 ||| 139 1.17835e+06 +en ||| the spark that ||| 0.166667 0.0011669 8.48644e-07 8.67399e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| the spark ||| 0.0833333 0.0011669 8.48644e-07 5.15646e-09 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| the spirit of ||| 0.00087108 0.0116562 8.48644e-07 4.91436e-08 2.718 ||| 0-2 ||| 1148 1.17835e+06 +en ||| the spirit ||| 0.000561167 0.0011669 8.48644e-07 1.68158e-07 2.718 ||| 0-0 ||| 1782 1.17835e+06 +en ||| the spotlight in the ||| 1 0.605812 8.48644e-07 6.96173e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the spotlight in ||| 1 0.605812 8.48644e-07 1.13398e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the staff of ||| 0.00990099 0.0116562 8.48644e-07 3.37392e-08 2.718 ||| 0-2 ||| 101 1.17835e+06 +en ||| the standards which apply in ||| 0.333333 0.605812 8.48644e-07 2.53319e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| the start of ||| 0.00101215 0.0116562 8.48644e-07 1.16287e-07 2.718 ||| 0-2 ||| 988 1.17835e+06 +en ||| the statistics published by ||| 0.333333 0.0468744 8.48644e-07 1.25783e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| the statute ||| 0.00440529 0.0011669 8.48644e-07 2.89335e-08 2.718 ||| 0-0 ||| 227 1.17835e+06 +en ||| the stretch of Galician coastline known as ||| 1 0.066968 8.48644e-07 9.56837e-26 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| the subject - ||| 0.0833333 0.0011669 8.48644e-07 5.83304e-09 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| the subject in ||| 0.030303 0.605812 1.69729e-06 1.53031e-05 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| the subject of ||| 0.000579542 0.0116562 1.69729e-06 4.51921e-07 2.718 ||| 0-2 ||| 3451 1.17835e+06 +en ||| the subject ||| 0.000716332 0.0011669 3.39458e-06 1.54637e-06 2.718 ||| 0-0 ||| 5584 1.17835e+06 +en ||| the subjects in ||| 0.25 0.605812 8.48644e-07 6.7472e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| the suitability for ||| 1 0.0286209 8.48644e-07 1.27138e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the support of ||| 0.000633714 0.0011669 8.48644e-07 5.32463e-08 2.718 ||| 0-0 ||| 1578 1.17835e+06 +en ||| the support ||| 0.00030581 0.0011669 8.48644e-07 9.79441e-07 2.718 ||| 0-0 ||| 3270 1.17835e+06 +en ||| the surface , as ||| 0.5 0.066968 8.48644e-07 1.65935e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the table in ||| 0.0384615 0.605812 1.69729e-06 1.91927e-06 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| the table ||| 0.000620347 0.0011669 8.48644e-07 1.9394e-07 2.718 ||| 0-0 ||| 1612 1.17835e+06 +en ||| the talk of the town ||| 0.333333 0.0116562 8.48644e-07 5.20027e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| the talk of the ||| 0.25 0.0116562 8.48644e-07 4.1272e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| the talk of ||| 0.047619 0.0116562 8.48644e-07 6.72272e-08 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| the task ||| 0.000640205 0.0011669 8.48644e-07 3.60952e-07 2.718 ||| 0-0 ||| 1562 1.17835e+06 +en ||| the terms in which ||| 0.0434783 0.605812 8.48644e-07 2.64322e-07 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| the terms in ||| 0.0344828 0.605812 8.48644e-07 3.11165e-05 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| the test ||| 0.00307692 0.0011669 8.48644e-07 7.10446e-08 2.718 ||| 0-0 ||| 325 1.17835e+06 +en ||| the text in ||| 0.0125 0.605812 8.48644e-07 2.4494e-06 2.718 ||| 0-2 ||| 80 1.17835e+06 +en ||| the text of ||| 0.00147275 0.0116562 8.48644e-07 7.23341e-08 2.718 ||| 0-2 ||| 679 1.17835e+06 +en ||| the textile sector in ||| 0.142857 0.605812 8.48644e-07 2.26374e-11 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| the thinking ||| 0.00497512 0.0455702 8.48644e-07 8.98162e-06 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| the time being ||| 0.00180505 0.0011669 8.48644e-07 1.33837e-08 2.718 ||| 0-0 ||| 554 1.17835e+06 +en ||| the time of ||| 0.00235571 0.0116562 1.69729e-06 1.37443e-06 2.718 ||| 0-2 ||| 849 1.17835e+06 +en ||| the time taken ||| 0.0232558 0.0042106 8.48644e-07 8.98011e-09 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| the time ||| 0.000411523 0.0011669 2.54593e-06 4.70298e-06 2.718 ||| 0-0 ||| 7290 1.17835e+06 +en ||| the times , ||| 0.0416667 0.0011669 8.48644e-07 3.46753e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| the times ||| 0.00480769 0.0011669 8.48644e-07 2.90767e-07 2.718 ||| 0-0 ||| 208 1.17835e+06 +en ||| the tune of ||| 0.00571429 0.0068382 8.48644e-07 5.8604e-10 2.718 ||| 0-1 0-2 ||| 175 1.17835e+06 +en ||| the tune ||| 0.00469484 0.0011669 8.48644e-07 8.56545e-08 2.718 ||| 0-0 ||| 213 1.17835e+06 +en ||| the two as one ||| 1 0.066968 8.48644e-07 1.08809e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the two as ||| 0.5 0.066968 8.48644e-07 2.61059e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the two points ||| 0.0243902 0.0011669 8.48644e-07 8.79702e-11 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| the two systems to ||| 0.333333 0.0247351 8.48644e-07 2.14167e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| the two ||| 0.000152486 0.0011669 8.48644e-07 6.77215e-07 2.718 ||| 0-0 ||| 6558 1.17835e+06 +en ||| the undertaking in ||| 0.5 0.605812 8.48644e-07 8.47652e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the upper hand in ||| 0.25 0.605812 1.69729e-06 1.25927e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| the use of caged beds in ||| 0.166667 0.605812 8.48644e-07 3.29705e-19 2.718 ||| 0-5 ||| 6 1.17835e+06 +en ||| the use of spare parts for ||| 1 0.0286209 8.48644e-07 1.09931e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| the use of ||| 0.00045565 0.0116562 2.54593e-06 4.07047e-07 2.718 ||| 0-2 ||| 6584 1.17835e+06 +en ||| the utmost ||| 0.00122399 0.0011669 8.48644e-07 3.49493e-08 2.718 ||| 0-0 ||| 817 1.17835e+06 +en ||| the value of ||| 0.0013245 0.0011669 8.48644e-07 1.36737e-08 2.718 ||| 0-0 ||| 755 1.17835e+06 +en ||| the value ||| 0.000999001 0.0011669 8.48644e-07 2.51521e-07 2.718 ||| 0-0 ||| 1001 1.17835e+06 +en ||| the various regions of ||| 0.0416667 0.0116562 8.48644e-07 1.06513e-11 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| the various ||| 0.000149745 0.0011669 8.48644e-07 4.4231e-07 2.718 ||| 0-0 ||| 6678 1.17835e+06 +en ||| the very concept of ||| 0.025641 0.0116562 8.48644e-07 1.73034e-10 2.718 ||| 0-3 ||| 39 1.17835e+06 +en ||| the very ||| 0.00104849 0.0011669 3.39458e-06 9.96772e-06 2.718 ||| 0-0 ||| 3815 1.17835e+06 +en ||| the victim at ||| 1 0.321886 8.48644e-07 4.42043e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the view , in the ||| 1 0.0011669 8.48644e-07 4.05511e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| the view , in ||| 0.5 0.0011669 8.48644e-07 6.60529e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| the view , ||| 0.0222222 0.0011669 8.48644e-07 3.08593e-07 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| the view in ||| 0.1 0.605812 8.48644e-07 2.56082e-05 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| the view of ||| 0.00197239 0.0116562 8.48644e-07 7.56243e-07 2.718 ||| 0-2 ||| 507 1.17835e+06 +en ||| the view that at ||| 0.333333 0.321886 8.48644e-07 3.73157e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| the view that ||| 0.000705219 0.0017499 8.48644e-07 5.79618e-08 2.718 ||| 0-2 ||| 1418 1.17835e+06 +en ||| the view ||| 0.00585309 0.0012176 1.69729e-05 7.79198e-08 2.718 ||| 0-0 0-1 ||| 3417 1.17835e+06 +en ||| the views expressed in ||| 0.025 0.605812 8.48644e-07 2.24029e-10 2.718 ||| 0-3 ||| 40 1.17835e+06 +en ||| the vision of ||| 0.00775194 0.00602025 8.48644e-07 5.8604e-10 2.718 ||| 0-1 0-2 ||| 129 1.17835e+06 +en ||| the vote in ||| 0.00570342 0.605812 2.54593e-06 4.45939e-06 2.718 ||| 0-2 ||| 526 1.17835e+06 +en ||| the vote on ||| 0.000434216 0.22993 8.48644e-07 8.01993e-07 2.718 ||| 0-2 ||| 2303 1.17835e+06 +en ||| the vote ||| 7.59186e-05 0.0011669 8.48644e-07 4.50617e-07 2.718 ||| 0-0 ||| 13172 1.17835e+06 +en ||| the votes of ||| 0.0172414 0.0116562 8.48644e-07 3.03904e-08 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| the voting on ||| 0.0263158 0.22993 8.48644e-07 1.98331e-07 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| the war , in ||| 1 0.605812 8.48644e-07 1.25428e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the way , in ||| 0.0909091 0.605812 8.48644e-07 7.2877e-06 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| the way at ||| 0.142857 0.321886 8.48644e-07 5.29371e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| the way for ||| 0.00100301 0.0286209 8.48644e-07 1.52255e-06 2.718 ||| 0-2 ||| 997 1.17835e+06 +en ||| the way in the ||| 0.0769231 0.605812 8.48644e-07 3.75167e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| the way in which ||| 0.00150943 0.605812 3.39458e-06 5.19108e-07 2.718 ||| 0-2 ||| 2650 1.17835e+06 +en ||| the way in ||| 0.0047619 0.605812 1.1881e-05 6.11103e-05 2.718 ||| 0-2 ||| 2940 1.17835e+06 +en ||| the way on ||| 0.0526316 0.22993 8.48644e-07 1.09903e-05 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| the way such content is ||| 1 0.0011669 8.48644e-07 1.974e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| the way such content ||| 1 0.0011669 8.48644e-07 6.29845e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| the way such ||| 0.5 0.0011669 8.48644e-07 1.27758e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| the way through ||| 0.0526316 0.0366102 8.48644e-07 1.24449e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| the way to ||| 0.000992064 0.0247351 8.48644e-07 3.71974e-06 2.718 ||| 0-2 ||| 1008 1.17835e+06 +en ||| the way ||| 0.000541712 0.0011669 5.94051e-06 6.17515e-06 2.718 ||| 0-0 ||| 12922 1.17835e+06 +en ||| the ways in ||| 0.00460829 0.605812 8.48644e-07 2.7329e-06 2.718 ||| 0-2 ||| 217 1.17835e+06 +en ||| the weak points in ||| 0.142857 0.605812 8.48644e-07 3.57213e-11 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| the wheels in ||| 0.5 0.605812 8.48644e-07 9.07186e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| the whistle on ||| 0.166667 0.22993 8.48644e-07 3.56894e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| the whole of the ||| 0.00137363 0.0116562 8.48644e-07 2.90754e-08 2.718 ||| 0-2 ||| 728 1.17835e+06 +en ||| the whole of ||| 0.00115407 0.0116562 1.69729e-06 4.73604e-07 2.718 ||| 0-2 ||| 1733 1.17835e+06 +en ||| the whole thing ||| 0.00571429 0.0011669 8.48644e-07 5.91343e-10 2.718 ||| 0-0 ||| 175 1.17835e+06 +en ||| the whole ||| 0.000343053 0.0011669 2.54593e-06 1.62056e-06 2.718 ||| 0-0 ||| 8745 1.17835e+06 +en ||| the wider ||| 0.00315457 0.0186861 8.48644e-07 2.67054e-06 2.718 ||| 0-1 ||| 317 1.17835e+06 +en ||| the wool over ||| 0.0666667 0.157937 8.48644e-07 3.44413e-10 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| the word - in ||| 1 0.605812 8.48644e-07 1.08862e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the word in ||| 0.125 0.605812 8.48644e-07 2.88599e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| the word via ||| 1 0.0130862 8.48644e-07 2.54987e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| the word ||| 0.000652316 0.0011669 8.48644e-07 2.91626e-07 2.718 ||| 0-0 ||| 1533 1.17835e+06 +en ||| the wording adopted in ||| 0.5 0.605812 8.48644e-07 8.09664e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the wording ||| 0.00122399 0.0011669 8.48644e-07 4.01058e-08 2.718 ||| 0-0 ||| 817 1.17835e+06 +en ||| the words " as ||| 0.5 0.066968 8.48644e-07 5.90991e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| the words of ||| 0.00181818 0.0116562 8.48644e-07 1.89207e-07 2.718 ||| 0-2 ||| 550 1.17835e+06 +en ||| the work in ||| 0.0142857 0.605812 1.69729e-06 1.79453e-05 2.718 ||| 0-2 ||| 140 1.17835e+06 +en ||| the work of ||| 0.000804505 0.0116562 1.69729e-06 5.29948e-07 2.718 ||| 0-2 ||| 2486 1.17835e+06 +en ||| the world , in ||| 0.027027 0.605812 8.48644e-07 7.70151e-07 2.718 ||| 0-3 ||| 37 1.17835e+06 +en ||| the world in ||| 0.0128755 0.605812 2.54593e-06 6.45803e-06 2.718 ||| 0-2 ||| 233 1.17835e+06 +en ||| the worldwide ||| 0.0454545 0.13372 8.48644e-07 2.79455e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| the wrong tree on ||| 1 0.22993 8.48644e-07 7.11239e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| the yards in question ||| 0.333333 0.605812 8.48644e-07 3.2835e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| the yards in ||| 0.333333 0.605812 8.48644e-07 3.96894e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| the year in ||| 0.0108696 0.605812 8.48644e-07 7.07038e-06 2.718 ||| 0-2 ||| 92 1.17835e+06 +en ||| the year ||| 0.000300933 0.0011669 8.48644e-07 7.14456e-07 2.718 ||| 0-0 ||| 3323 1.17835e+06 +en ||| the ||| 0.000658132 0.0011669 0.00188823 0.0028647 2.718 ||| 0-0 ||| 3.38078e+06 1.17835e+06 +en ||| theft , in ||| 1 0.605812 8.48644e-07 6.05765e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| their act together in ||| 0.2 0.605812 8.48644e-07 5.4618e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| their actions on ||| 0.117647 0.22993 1.69729e-06 6.71905e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| their advantage for ||| 1 0.0286209 8.48644e-07 6.76119e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| their aims in ||| 1 0.605812 8.48644e-07 2.13565e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| their application on ||| 0.5 0.22993 8.48644e-07 5.85269e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| their backs to ||| 0.5 0.0247351 8.48644e-07 2.57385e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| their bio-diversity in general ||| 0.25 0.605812 1.69729e-06 6.55307e-14 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| their bio-diversity in ||| 0.25 0.605812 1.69729e-06 3.74675e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| their boats onto ||| 1 0.233333 8.48644e-07 1.0901e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| their colleagues in ||| 0.0869565 0.605812 1.69729e-06 1.19361e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| their commitment to ||| 0.00462963 0.0247351 8.48644e-07 1.81798e-09 2.718 ||| 0-2 ||| 216 1.17835e+06 +en ||| their determination to ||| 0.0169492 0.0247351 8.48644e-07 3.87706e-10 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| their differences with ||| 0.333333 0.0535436 8.48644e-07 3.16224e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| their effect on ||| 0.0322581 0.22993 8.48644e-07 3.21128e-08 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| their efforts to ||| 0.0030581 0.0247351 8.48644e-07 3.96177e-09 2.718 ||| 0-2 ||| 327 1.17835e+06 +en ||| their families in ||| 0.05 0.605812 8.48644e-07 4.44258e-09 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| their final days in ||| 1 0.605812 8.48644e-07 2.60148e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| their hope is ||| 0.333333 0.0005295 8.48644e-07 3.95969e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| their hope ||| 0.0333333 0.0005295 8.48644e-07 1.26342e-08 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| their hopelessly light sleep in many parts ||| 0.166667 0.605812 8.48644e-07 6.51654e-27 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| their hopelessly light sleep in many ||| 0.166667 0.605812 8.48644e-07 1.11776e-22 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| their hopelessly light sleep in ||| 0.166667 0.605812 8.48644e-07 3.25593e-19 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| their illegal immigrants in ||| 1 0.605812 8.48644e-07 3.24298e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| their inclusion in ||| 0.03125 0.605812 8.48644e-07 1.03839e-08 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| their involvement in ||| 0.0149254 0.605812 8.48644e-07 1.6004e-08 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| their lot in society ||| 1 0.605812 8.48644e-07 4.00404e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| their lot in ||| 0.5 0.605812 8.48644e-07 6.91544e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| their luck across ||| 1 0.274879 8.48644e-07 2.3097e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| their mark on ||| 0.0625 0.22993 8.48644e-07 5.22699e-09 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| their measure in ||| 1 0.605812 8.48644e-07 4.00903e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| their mind within ||| 0.5 0.369196 8.48644e-07 3.23706e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| their misgivings when ||| 0.333333 0.142731 8.48644e-07 2.00114e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| their operations at ||| 1 0.321886 8.48644e-07 1.16843e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| their opinion quite clearly in ||| 1 0.605812 8.48644e-07 9.35127e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| their opinion ||| 0.00431034 0.000357 8.48644e-07 5.56368e-09 2.718 ||| 0-1 ||| 232 1.17835e+06 +en ||| their own in ||| 0.0909091 0.605812 8.48644e-07 9.0741e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| their own purposes in ||| 1 0.605812 8.48644e-07 1.09706e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| their own right ||| 0.0192308 0.0071334 8.48644e-07 3.51739e-10 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| their patents in ||| 1 0.605812 8.48644e-07 2.30158e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| their place in ||| 0.0172414 0.605812 8.48644e-07 8.05552e-07 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| their places in ||| 0.25 0.605812 8.48644e-07 2.83148e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| their presence felt in ||| 1 0.605812 8.48644e-07 1.17873e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| their savings in ||| 0.2 0.605812 8.48644e-07 4.44258e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| their seats in ||| 0.0697674 0.605812 2.54593e-06 5.19193e-09 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| their share of ||| 0.0104167 0.0116562 8.48644e-07 1.4795e-09 2.718 ||| 0-2 ||| 96 1.17835e+06 +en ||| their stance of ||| 0.5 0.0116562 8.48644e-07 4.15715e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| their way in ||| 0.0833333 0.605812 8.48644e-07 1.15379e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| their way into ||| 0.0714286 0.525896 3.39458e-06 5.53113e-08 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| their way through ||| 0.0625 0.0366102 8.48644e-07 2.34964e-09 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| their will in ||| 0.2 0.605812 8.48644e-07 4.63056e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| their wishes within ||| 1 0.369196 8.48644e-07 6.79796e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| their words , in ||| 0.5 0.605812 8.48644e-07 1.44258e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| their work first ||| 1 1.81e-05 8.48644e-07 4.36842e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| their work in ||| 0.0120482 0.605812 8.48644e-07 3.38814e-07 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| their work ||| 0.000775795 1.81e-05 8.48644e-07 8.1137e-10 2.718 ||| 0-1 ||| 1289 1.17835e+06 +en ||| their worth in ||| 0.0909091 0.605812 8.48644e-07 3.86986e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| theirs with ||| 1 0.0535436 8.48644e-07 5.47968e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| them , as ||| 0.0128205 0.066968 8.48644e-07 5.75413e-06 2.718 ||| 0-2 ||| 78 1.17835e+06 +en ||| them , in ||| 0.0153846 0.605812 8.48644e-07 0.000147719 2.718 ||| 0-2 ||| 65 1.17835e+06 +en ||| them , namely in ||| 1 0.605812 8.48644e-07 2.36054e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| them a second ||| 1 0.0400803 8.48644e-07 5.65486e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| them actually to enter ||| 0.2 0.194429 8.48644e-07 4.81335e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| them as a result of ||| 0.333333 0.0116562 8.48644e-07 8.71134e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| them as a ||| 0.0294118 0.066968 8.48644e-07 2.13875e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| them as ||| 0.013986 0.066968 3.39458e-06 4.82507e-05 2.718 ||| 0-1 ||| 286 1.17835e+06 +en ||| them at a ||| 0.0625 0.321886 8.48644e-07 4.75622e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| them at any rate ||| 0.5 0.321886 8.48644e-07 1.6291e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| them at any ||| 0.142857 0.321886 8.48644e-07 1.62261e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| them at the ||| 0.027027 0.321886 8.48644e-07 6.58742e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| them at this ||| 0.2 0.321886 8.48644e-07 6.93317e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| them at ||| 0.133333 0.321886 1.52756e-05 0.000107301 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| them back into ||| 0.166667 0.525896 8.48644e-07 3.99397e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| them back onto ||| 1 0.233333 8.48644e-07 3.61017e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| them before ||| 0.0555556 0.0175291 8.48644e-07 9.1443e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| them by involving them in ||| 1 0.605812 8.48644e-07 5.46003e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| them by ||| 0.0258065 0.0468744 3.39458e-06 2.28194e-05 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| them during ||| 0.0833333 0.226251 1.69729e-06 7.75562e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| them for ||| 0.00448431 0.0286209 8.48644e-07 3.08615e-05 2.718 ||| 0-1 ||| 223 1.17835e+06 +en ||| them from ||| 0.00591716 0.0308834 8.48644e-07 1.02068e-05 2.718 ||| 0-1 ||| 169 1.17835e+06 +en ||| them if ||| 0.015873 0.0178573 8.48644e-07 3.11024e-06 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| them in a ||| 0.0153846 0.605812 8.48644e-07 5.49056e-05 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| them in committee ||| 0.5 0.605812 8.48644e-07 9.5874e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| them in terms of ||| 0.1875 0.605812 2.54593e-06 7.3912e-08 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| them in terms ||| 0.210526 0.605812 3.39458e-06 1.35958e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| them in the right ||| 0.5 0.605812 8.48644e-07 4.90414e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| them in the ||| 0.0191388 0.605812 3.39458e-06 7.60449e-05 2.718 ||| 0-1 ||| 209 1.17835e+06 +en ||| them in ||| 0.247357 0.605812 0.000198583 0.00123868 2.718 ||| 0-1 ||| 946 1.17835e+06 +en ||| them into genuine ||| 0.333333 0.525896 8.48644e-07 2.00708e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| them into ||| 0.307143 0.525896 3.64917e-05 5.93811e-05 2.718 ||| 0-1 ||| 140 1.17835e+06 +en ||| them involved in ||| 0.5 0.605812 8.48644e-07 4.28336e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| them lying on ||| 1 0.22993 8.48644e-07 3.20787e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| them more in ||| 0.25 0.605812 8.48644e-07 2.82878e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| them now , in ||| 1 0.605812 8.48644e-07 3.04286e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| them now ||| 0.0227273 0.0123946 8.48644e-07 1.58798e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| them on , ||| 0.5 0.22993 8.48644e-07 2.65663e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| them on their guard ||| 1 0.22993 8.48644e-07 2.50465e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| them on their ||| 0.0454545 0.22993 8.48644e-07 2.58212e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| them on ||| 0.115942 0.22993 2.03675e-05 0.000222769 2.718 ||| 0-1 ||| 207 1.17835e+06 +en ||| them onto ||| 0.333333 0.233333 8.48644e-07 5.36748e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| them out in ||| 1 0.605812 1.69729e-06 4.74465e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| them over ||| 0.0454545 0.157937 1.69729e-06 1.07489e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| them part of ||| 0.333333 0.0116562 8.48644e-07 4.36105e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| them they remain a ||| 1 0.0015231 8.48644e-07 8.75108e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| them to be ||| 0.00331126 0.0247351 8.48644e-07 1.36643e-06 2.718 ||| 0-1 ||| 302 1.17835e+06 +en ||| them to become ||| 0.0555556 0.219193 8.48644e-07 9.11344e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| them to have ||| 0.0166667 0.0247351 8.48644e-07 9.01741e-07 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| them to live in ||| 0.2 0.605812 8.48644e-07 1.10948e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| them to the ||| 0.0224719 0.0247351 1.69729e-06 4.6288e-06 2.718 ||| 0-1 ||| 89 1.17835e+06 +en ||| them to ||| 0.0101695 0.0247351 1.78215e-05 7.53977e-05 2.718 ||| 0-1 ||| 2065 1.17835e+06 +en ||| them under ||| 0.230769 0.205566 7.6378e-06 1.51679e-05 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| them up in the ||| 1 0.605812 8.48644e-07 2.59351e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| them up in ||| 0.2 0.605812 8.48644e-07 4.22452e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| them up one by one ||| 0.166667 0.0468744 8.48644e-07 1.35201e-12 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| them up one by ||| 0.166667 0.0468744 8.48644e-07 3.24378e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| them were along ||| 1 0.155535 8.48644e-07 3.82258e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| them when ||| 0.0344828 0.142731 1.69729e-06 1.59691e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| them with ||| 0.0117188 0.0535436 2.54593e-06 3.12738e-05 2.718 ||| 0-1 ||| 256 1.17835e+06 +en ||| them within ||| 0.225806 0.369196 5.94051e-06 2.9739e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| themes in ||| 0.2 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| themselves , in the form ||| 0.5 0.605812 8.48644e-07 6.61286e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| themselves , in the ||| 0.5 0.605812 8.48644e-07 1.45274e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| themselves , in ||| 0.214286 0.605812 2.54593e-06 2.36634e-05 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| themselves acceptable to ||| 0.333333 0.0247351 8.48644e-07 3.91332e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| themselves as ||| 0.0133333 0.066968 8.48644e-07 7.7294e-06 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| themselves at law to ||| 1 0.321886 8.48644e-07 2.69276e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| themselves at law ||| 0.5 0.321886 8.48644e-07 3.0304e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| themselves at ||| 0.0714286 0.321886 8.48644e-07 1.71889e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| themselves during ||| 0.5 0.226251 8.48644e-07 1.24239e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| themselves in an ||| 0.25 0.605812 8.48644e-07 8.8195e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| themselves in at ||| 1 0.463849 8.48644e-07 7.93749e-06 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| themselves in it ||| 1 0.605812 8.48644e-07 3.52867e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| themselves in the ||| 0.0625 0.605812 1.69729e-06 1.21818e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| themselves in too ||| 1 0.605812 8.48644e-07 2.7006e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| themselves in ||| 0.2375 0.605812 3.22485e-05 0.000198427 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| themselves into line ||| 0.5 0.525896 8.48644e-07 2.80045e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| themselves into ||| 0.178571 0.525896 4.24322e-06 9.5124e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| themselves on ||| 0.0869565 0.22993 3.39458e-06 3.56859e-05 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| themselves rather ||| 0.125 0.16257 8.48644e-07 1.11958e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| themselves to be put in ||| 0.5 0.605812 8.48644e-07 3.52326e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| themselves to taking a leading role in ||| 0.333333 0.605812 8.48644e-07 6.42267e-18 2.718 ||| 0-6 ||| 3 1.17835e+06 +en ||| themselves to themselves ||| 1 0.0247351 8.48644e-07 5.18998e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| themselves to ||| 0.0116279 0.0247351 2.54593e-06 1.20781e-05 2.718 ||| 0-1 ||| 258 1.17835e+06 +en ||| themselves up in ||| 1 0.605812 8.48644e-07 6.76736e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| themselves with ||| 0.0128205 0.0535436 8.48644e-07 5.00983e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| themselves within ||| 0.25 0.369196 8.48644e-07 4.76395e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| then , at ||| 0.04 0.321886 8.48644e-07 7.68229e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| then , in ||| 0.0725806 0.605812 7.6378e-06 8.8684e-05 2.718 ||| 0-2 ||| 124 1.17835e+06 +en ||| then , on ||| 0.0689655 0.22993 1.69729e-06 1.59493e-05 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| then , that ||| 0.00568182 0.013351 8.48644e-07 6.73031e-07 2.718 ||| 0-0 ||| 176 1.17835e+06 +en ||| then , when ||| 0.0294118 0.142731 1.69729e-06 1.14332e-06 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| then , with ||| 0.0487805 0.0535436 1.69729e-06 2.23907e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| then , ||| 0.00351906 0.013351 1.01837e-05 4.001e-05 2.718 ||| 0-0 ||| 3410 1.17835e+06 +en ||| then - ||| 0.03125 0.013351 8.48644e-07 1.26554e-06 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| then I would say ||| 0.0666667 0.0060084 8.48644e-07 2.19498e-11 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| then I would ||| 0.0333333 0.0060084 8.48644e-07 2.29649e-08 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| then I ||| 0.00257732 0.0060084 8.48644e-07 3.91311e-06 2.718 ||| 0-1 ||| 388 1.17835e+06 +en ||| then a ||| 0.0078125 0.013351 8.48644e-07 1.48713e-05 2.718 ||| 0-0 ||| 128 1.17835e+06 +en ||| then all ||| 0.0120482 0.013351 8.48644e-07 1.58537e-06 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| then an ||| 0.0416667 0.013351 8.48644e-07 1.4912e-06 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| then at ||| 0.0405405 0.321886 2.54593e-06 6.44192e-05 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| then be ISO in another guise ||| 1 0.605812 8.48644e-07 4.15915e-21 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| then be ISO in another ||| 1 0.605812 8.48644e-07 1.29973e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| then be ISO in ||| 1 0.605812 8.48644e-07 5.39085e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| then be in ||| 0.111111 0.605812 8.48644e-07 1.34771e-05 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| then by ||| 0.0175439 0.0468744 8.48644e-07 1.36998e-05 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| then drive through ||| 0.333333 0.0366102 8.48644e-07 4.57355e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| then during ||| 0.142857 0.226251 8.48644e-07 4.65615e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| then for ||| 0.016129 0.0209859 8.48644e-07 3.85999e-06 2.718 ||| 0-0 0-1 ||| 62 1.17835e+06 +en ||| then found itself in , ||| 1 0.605812 8.48644e-07 1.31695e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| then found itself in ||| 1 0.605812 8.48644e-07 1.10432e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| then grow into ||| 1 0.525896 8.48644e-07 8.73423e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| then handing out ||| 0.25 0.013351 8.48644e-07 7.83911e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| then handing ||| 0.25 0.013351 8.48644e-07 2.04655e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| then have ||| 0.00617284 0.013351 8.48644e-07 4.01251e-06 2.718 ||| 0-0 ||| 162 1.17835e+06 +en ||| then in fact ||| 0.333333 0.605812 8.48644e-07 2.17838e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| then in the case ||| 0.333333 0.605812 8.48644e-07 4.88454e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| then in the ||| 0.0363636 0.605812 1.69729e-06 4.56542e-05 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| then in ||| 0.166667 0.605812 3.22485e-05 0.000743652 2.718 ||| 0-1 ||| 228 1.17835e+06 +en ||| then it did ||| 0.25 0.013351 8.48644e-07 2.70988e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| then it will in ||| 1 0.605812 8.48644e-07 1.14408e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| then it ||| 0.00226757 0.013351 8.48644e-07 5.96626e-06 2.718 ||| 0-0 ||| 441 1.17835e+06 +en ||| then let them in ||| 0.5 0.605812 8.48644e-07 8.14665e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| then move on to ||| 0.0555556 0.127333 8.48644e-07 5.74787e-10 2.718 ||| 0-2 0-3 ||| 18 1.17835e+06 +en ||| then move ||| 0.0344828 0.013351 8.48644e-07 5.1298e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| then on , ||| 0.1 0.22993 8.48644e-07 1.59493e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| then on ||| 0.0285714 0.22993 2.54593e-06 0.000133741 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| then only ||| 0.0196078 0.013351 8.48644e-07 3.73445e-07 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| then people in ||| 1 0.605812 8.48644e-07 6.54563e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| then spreading to ||| 1 0.0247351 8.48644e-07 4.39076e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| then that is ||| 0.00900901 0.013351 8.48644e-07 1.76878e-07 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| then that ||| 0.00546448 0.013351 1.69729e-06 5.64365e-06 2.718 ||| 0-0 ||| 366 1.17835e+06 +en ||| then there is ||| 0.00180505 0.0117359 8.48644e-07 5.6599e-08 2.718 ||| 0-1 ||| 554 1.17835e+06 +en ||| then there ||| 0.008 0.013351 2.54593e-06 1.02841e-06 2.718 ||| 0-0 ||| 375 1.17835e+06 +en ||| then they must be ||| 0.142857 0.013351 8.48644e-07 3.06738e-11 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| then they must ||| 0.0384615 0.013351 8.48644e-07 1.69254e-09 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| then they ||| 0.00769231 0.013351 8.48644e-07 1.09507e-06 2.718 ||| 0-0 ||| 130 1.17835e+06 +en ||| then through ||| 0.0625 0.0366102 8.48644e-07 1.51442e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| then to ||| 0.00990099 0.0247351 2.54593e-06 4.52656e-05 2.718 ||| 0-1 ||| 303 1.17835e+06 +en ||| then turn to ||| 0.25 0.0247351 8.48644e-07 1.01485e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| then under ||| 0.133333 0.205566 1.69729e-06 9.10617e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| then we have ||| 0.00383142 0.013351 8.48644e-07 4.55513e-08 2.718 ||| 0-0 ||| 261 1.17835e+06 +en ||| then we in ||| 0.285714 0.605812 1.69729e-06 8.44216e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| then we shall in ||| 1 0.605812 8.48644e-07 4.61449e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| then we will , ||| 0.142857 0.013351 8.48644e-07 3.92942e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| then we will ||| 0.00704225 0.013351 8.48644e-07 3.29498e-08 2.718 ||| 0-0 ||| 142 1.17835e+06 +en ||| then we would manage ||| 0.25 0.013351 8.48644e-07 9.96904e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| then we would ||| 0.0222222 0.013351 8.48644e-07 2.23521e-08 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| then we ||| 0.00586166 0.013351 4.24322e-06 3.8087e-06 2.718 ||| 0-0 ||| 853 1.17835e+06 +en ||| then when ||| 0.0294118 0.142731 8.48644e-07 9.58719e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| then will be used by ||| 1 0.0468744 8.48644e-07 9.2146e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| then with ||| 0.0181818 0.0535436 8.48644e-07 1.87755e-05 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| then your ||| 0.0769231 0.013351 8.48644e-07 8.58545e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| then ||| 0.00439916 0.013351 8.31671e-05 0.0003355 2.718 ||| 0-0 ||| 22277 1.17835e+06 +en ||| theoretically , retire ||| 0.333333 0.264249 8.48644e-07 4.55195e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| theoretically , ||| 0.0285714 0.264249 8.48644e-07 4.13814e-06 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| theoretically ||| 0.0205479 0.264249 2.54593e-06 3.47e-05 2.718 ||| 0-0 ||| 146 1.17835e+06 +en ||| theory , on ||| 0.25 0.22993 8.48644e-07 7.52697e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| there , and to ||| 0.166667 0.0247351 8.48644e-07 1.28704e-07 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| there , and ||| 0.00420168 0.0117359 8.48644e-07 1.67512e-06 2.718 ||| 0-0 ||| 238 1.17835e+06 +en ||| there , then ||| 0.0909091 0.0117359 8.48644e-07 2.15362e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| there , ||| 0.00986842 0.0117359 1.27297e-05 0.000133732 2.718 ||| 0-0 ||| 1520 1.17835e+06 +en ||| there and then ||| 0.0625 0.0010182 8.48644e-07 4.55478e-09 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| there and ||| 0.00585938 0.0010182 2.54593e-06 2.82835e-06 2.718 ||| 0-1 ||| 512 1.17835e+06 +en ||| there any added value with regard to ||| 1 0.0535436 8.48644e-07 2.04694e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| there any added value with regard ||| 1 0.0535436 8.48644e-07 2.3036e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| there any added value with ||| 1 0.0535436 8.48644e-07 3.38317e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| there any ||| 0.00162866 0.0117359 8.48644e-07 1.69578e-06 2.718 ||| 0-0 ||| 614 1.17835e+06 +en ||| there are , in ||| 0.111111 0.605812 3.39458e-06 2.56122e-06 2.718 ||| 0-3 ||| 36 1.17835e+06 +en ||| there are , ||| 0.00413223 0.0117359 1.69729e-06 2.02908e-06 2.718 ||| 0-0 ||| 484 1.17835e+06 +en ||| there are a ||| 0.00464684 0.0117359 4.24322e-06 7.54189e-07 2.718 ||| 0-0 ||| 1076 1.17835e+06 +en ||| there are also consequences in this ||| 1 0.605812 8.48644e-07 2.97755e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| there are also consequences in ||| 0.333333 0.605812 8.48644e-07 4.60821e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| there are ample resources in ||| 1 0.605812 8.48644e-07 4.45947e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| there are aspects of ||| 0.0714286 0.0116562 8.48644e-07 4.4714e-11 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| there are at ||| 0.0795455 0.321886 5.94051e-06 1.86045e-06 2.718 ||| 0-2 ||| 88 1.17835e+06 +en ||| there are countries in ||| 0.025641 0.605812 8.48644e-07 8.15479e-09 2.718 ||| 0-3 ||| 39 1.17835e+06 +en ||| there are four banks , the European ||| 1 0.0117359 8.48644e-07 1.42779e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| there are four banks , the ||| 1 0.0117359 8.48644e-07 4.26984e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| there are four banks , ||| 1 0.0117359 8.48644e-07 6.95507e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| there are four banks ||| 1 0.0117359 8.48644e-07 5.83212e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| there are four ||| 0.00833333 0.0117359 8.48644e-07 3.86233e-10 2.718 ||| 0-0 ||| 120 1.17835e+06 +en ||| there are in ||| 0.111111 0.605812 6.78915e-06 2.14769e-05 2.718 ||| 0-2 ||| 72 1.17835e+06 +en ||| there are just a ||| 0.111111 0.0117359 8.48644e-07 9.5156e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| there are just ||| 0.0142857 0.0117359 8.48644e-07 2.14674e-08 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| there are limits to ||| 0.0232558 0.0247351 8.48644e-07 3.52967e-11 2.718 ||| 0-3 ||| 43 1.17835e+06 +en ||| there are living in ||| 0.5 0.605812 8.48644e-07 1.79977e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| there are many reasons in ||| 1 0.605812 8.48644e-07 7.45413e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| there are of ||| 0.0454545 0.0116562 8.48644e-07 6.34242e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| there are one or ||| 0.027027 0.0117359 8.48644e-07 8.10796e-11 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| there are one ||| 0.0232558 0.0117359 8.48644e-07 7.09171e-08 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| there are others in ||| 0.111111 0.605812 8.48644e-07 2.08756e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| there are problems on ||| 0.166667 0.22993 8.48644e-07 5.18346e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| there are quite ||| 0.0344828 0.0117359 8.48644e-07 6.63742e-09 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| there are several ||| 0.00411523 0.0117359 8.48644e-07 1.11446e-09 2.718 ||| 0-0 ||| 243 1.17835e+06 +en ||| there are those in ||| 0.142857 0.605812 8.48644e-07 1.55514e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| there are times when you have to ||| 1 0.142731 8.48644e-07 9.64292e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| there are times when you have ||| 1 0.142731 8.48644e-07 1.0852e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| there are times when you ||| 1 0.142731 8.48644e-07 9.07376e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| there are times when ||| 0.0188679 0.142731 8.48644e-07 2.81035e-11 2.718 ||| 0-3 ||| 53 1.17835e+06 +en ||| there are ||| 0.00332032 0.0117359 7.72266e-05 1.70147e-05 2.718 ||| 0-0 ||| 27407 1.17835e+06 +en ||| there as ||| 0.00943396 0.066968 8.48644e-07 5.51383e-05 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| there at close ||| 1 0.321886 8.48644e-07 1.81843e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| there at ||| 0.0588235 0.321886 3.39458e-06 0.000122618 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| there be such a ||| 0.5 0.0117359 8.48644e-07 1.86374e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| there be such ||| 1 0.0117359 8.48644e-07 4.20463e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| there be ||| 0.007109 0.0117359 2.54593e-06 2.0323e-05 2.718 ||| 0-0 ||| 422 1.17835e+06 +en ||| there been ||| 0.011236 0.0117359 8.48644e-07 3.74458e-06 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| there being ||| 0.00330033 0.0117359 8.48644e-07 3.19128e-06 2.718 ||| 0-0 ||| 303 1.17835e+06 +en ||| there can be ||| 0.00123916 0.0117359 8.48644e-07 6.04468e-08 2.718 ||| 0-0 ||| 807 1.17835e+06 +en ||| there can ||| 0.00113636 0.0117359 8.48644e-07 3.33538e-06 2.718 ||| 0-0 ||| 880 1.17835e+06 +en ||| there certainly ||| 0.04 0.0117359 8.48644e-07 2.80911e-07 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| there comes ||| 0.0769231 0.0117359 1.69729e-06 4.48336e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| there continues to ||| 0.111111 0.0247351 8.48644e-07 3.97199e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| there exist in ||| 1 0.605812 8.48644e-07 1.30367e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| there exists in ||| 0.5 0.605812 8.48644e-07 7.89848e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| there for ||| 0.00458716 0.0286209 8.48644e-07 3.52669e-05 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| there had been ||| 0.00740741 0.0117359 8.48644e-07 3.75843e-09 2.718 ||| 0-0 ||| 135 1.17835e+06 +en ||| there had ||| 0.00641026 0.0117359 8.48644e-07 1.12555e-06 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| there has been ||| 0.000333556 0.0117359 8.48644e-07 1.92752e-08 2.718 ||| 0-0 ||| 2998 1.17835e+06 +en ||| there has generally ||| 0.5 0.21041 8.48644e-07 1.43664e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| there has to be ||| 0.00314465 0.0247351 8.48644e-07 8.0377e-09 2.718 ||| 0-2 ||| 318 1.17835e+06 +en ||| there has to ||| 0.00357143 0.0247351 8.48644e-07 4.43511e-07 2.718 ||| 0-2 ||| 280 1.17835e+06 +en ||| there has ||| 0.000863931 0.0117359 1.69729e-06 5.77241e-06 2.718 ||| 0-0 ||| 2315 1.17835e+06 +en ||| there have , in ||| 0.5 0.605812 8.48644e-07 2.01887e-06 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| there have been in ||| 0.125 0.605812 1.69729e-06 5.65295e-08 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| there have been ||| 0.00493692 0.0117359 7.6378e-06 4.47844e-08 2.718 ||| 0-0 ||| 1823 1.17835e+06 +en ||| there have in ||| 0.2 0.605812 8.48644e-07 1.69291e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| there have to be changes ||| 0.333333 0.0117359 8.48644e-07 1.10365e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| there have to be ||| 0.0153846 0.0117359 8.48644e-07 2.15978e-08 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| there have to ||| 0.0188679 0.0117359 8.48644e-07 1.19174e-06 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| there have ||| 0.00972591 0.0117359 9.33509e-06 1.34117e-05 2.718 ||| 0-0 ||| 1131 1.17835e+06 +en ||| there he ||| 0.125 0.0117359 8.48644e-07 9.78646e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| there in order to present the amendments ||| 1 0.308774 8.48644e-07 4.20157e-17 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| there in order to present the ||| 1 0.308774 8.48644e-07 5.50664e-13 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| there in order to present ||| 1 0.308774 8.48644e-07 8.96967e-12 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| there in order to ||| 0.0909091 0.308774 8.48644e-07 2.45073e-08 2.718 ||| 0-0 0-1 ||| 11 1.17835e+06 +en ||| there in order ||| 0.142857 0.308774 8.48644e-07 2.75802e-07 2.718 ||| 0-0 0-1 ||| 7 1.17835e+06 +en ||| there in ||| 0.178899 0.605812 3.30971e-05 0.0014155 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| there into ||| 0.2 0.525896 8.48644e-07 6.78575e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| there is , in ||| 0.12963 0.605812 5.94051e-06 5.29053e-06 2.718 ||| 0-3 ||| 54 1.17835e+06 +en ||| there is , ||| 0.00320513 0.0117359 1.69729e-06 4.19131e-06 2.718 ||| 0-0 ||| 624 1.17835e+06 +en ||| there is a risk ||| 0.00173611 0.0117359 8.48644e-07 1.82271e-10 2.718 ||| 0-0 ||| 576 1.17835e+06 +en ||| there is a scarcity on ||| 1 0.22993 8.48644e-07 2.47556e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| there is a spirit of ||| 0.25 0.0117359 8.48644e-07 4.97142e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| there is a spirit ||| 0.25 0.0117359 8.48644e-07 9.1447e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| there is a ||| 0.00115669 0.0117359 1.10324e-05 1.55787e-06 2.718 ||| 0-0 ||| 11239 1.17835e+06 +en ||| there is an ||| 0.000568828 0.0117359 8.48644e-07 1.56213e-07 2.718 ||| 0-0 ||| 1758 1.17835e+06 +en ||| there is any further delay in ||| 0.333333 0.605812 8.48644e-07 1.01483e-15 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| there is any ||| 0.00280899 0.0117359 8.48644e-07 5.31476e-08 2.718 ||| 0-0 ||| 356 1.17835e+06 +en ||| there is at ||| 0.0566038 0.321886 2.54593e-06 3.84299e-06 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| there is consensus on ||| 0.0714286 0.22993 8.48644e-07 1.23666e-10 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| there is growing ||| 0.0208333 0.0117359 8.48644e-07 1.32852e-09 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| there is in ||| 0.0701754 0.605812 6.78915e-06 4.43633e-05 2.718 ||| 0-2 ||| 114 1.17835e+06 +en ||| there is little scope for ||| 0.142857 0.0286209 8.48644e-07 1.78412e-14 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| there is much ||| 0.00299401 0.0117359 8.48644e-07 3.52759e-08 2.718 ||| 0-0 ||| 334 1.17835e+06 +en ||| there is no change in ||| 0.0666667 0.605812 8.48644e-07 4.21295e-12 2.718 ||| 0-4 ||| 15 1.17835e+06 +en ||| there is no need for ||| 0.005 0.0286209 8.48644e-07 7.88871e-13 2.718 ||| 0-4 ||| 200 1.17835e+06 +en ||| there is no one in ||| 0.1 0.605812 8.48644e-07 1.43931e-10 2.718 ||| 0-4 ||| 10 1.17835e+06 +en ||| there is no question of us in ||| 1 0.605812 8.48644e-07 4.47636e-15 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| there is no ||| 0.000302419 0.0117359 2.54593e-06 2.73576e-08 2.718 ||| 0-0 ||| 9920 1.17835e+06 +en ||| there is one ||| 0.000986193 0.0117359 8.48644e-07 1.46488e-07 2.718 ||| 0-0 ||| 1014 1.17835e+06 +en ||| there is scope for ||| 0.0196078 0.0286209 8.48644e-07 1.10199e-10 2.718 ||| 0-3 ||| 51 1.17835e+06 +en ||| there is to say on ||| 0.2 0.22993 8.48644e-07 6.77615e-10 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| there is within ||| 0.25 0.369196 8.48644e-07 1.0651e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| there is ||| 0.00294985 0.0117359 0.000113718 3.51459e-05 2.718 ||| 0-0 ||| 45426 1.17835e+06 +en ||| there might be ||| 0.00735294 0.0117359 8.48644e-07 7.80404e-09 2.718 ||| 0-0 ||| 136 1.17835e+06 +en ||| there might have been ||| 0.0769231 0.0117359 8.48644e-07 1.71972e-11 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| there might have ||| 0.142857 0.0117359 8.48644e-07 5.1501e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| there might ||| 0.0190476 0.0117359 1.69729e-06 4.30618e-07 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| there must be ||| 0.00256575 0.0117359 3.39458e-06 3.14113e-08 2.718 ||| 0-0 ||| 1559 1.17835e+06 +en ||| there must ||| 0.00330688 0.0117359 4.24322e-06 1.73324e-06 2.718 ||| 0-0 ||| 1512 1.17835e+06 +en ||| there myself and was impressed ||| 1 0.0117359 8.48644e-07 2.18983e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| there myself and was ||| 1 0.0117359 8.48644e-07 6.84322e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| there myself and ||| 1 0.0117359 8.48644e-07 2.18424e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| there myself ||| 0.5 0.0117359 8.48644e-07 1.74378e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| there of ||| 0.0909091 0.011696 8.48644e-07 1.52925e-05 2.718 ||| 0-0 0-1 ||| 11 1.17835e+06 +en ||| there on ||| 0.0289855 0.22993 1.69729e-06 0.000254568 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| there particularly with regard ||| 1 0.0535436 8.48644e-07 4.34362e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| there particularly with ||| 1 0.0535436 8.48644e-07 6.37924e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| there remain a ||| 0.111111 0.0117359 8.48644e-07 6.02945e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| there remain ||| 0.0133333 0.0117359 8.48644e-07 1.36026e-07 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| there should be a ||| 0.00211864 0.0117359 8.48644e-07 3.9916e-09 2.718 ||| 0-0 ||| 472 1.17835e+06 +en ||| there should be on ||| 1 0.22993 8.48644e-07 2.04425e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| there should be ||| 0.00442758 0.0117359 5.94051e-06 9.00513e-08 2.718 ||| 0-0 ||| 1581 1.17835e+06 +en ||| there should in ||| 0.125 0.605812 8.48644e-07 6.27207e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| there should ||| 0.0084507 0.0117359 1.01837e-05 4.96892e-06 2.718 ||| 0-0 ||| 1420 1.17835e+06 +en ||| there straight ||| 0.25 0.0117359 8.48644e-07 4.19404e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| there that ||| 0.0078125 0.0117359 8.48644e-07 1.88637e-05 2.718 ||| 0-0 ||| 128 1.17835e+06 +en ||| there to be ||| 0.00249377 0.0117359 8.48644e-07 1.80587e-06 2.718 ||| 0-0 ||| 401 1.17835e+06 +en ||| there to ||| 0.00496689 0.0117359 2.54593e-06 9.96456e-05 2.718 ||| 0-0 ||| 604 1.17835e+06 +en ||| there today - ||| 0.333333 0.0257822 8.48644e-07 5.10311e-09 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| there today ||| 0.0625 0.0257822 8.48644e-07 1.35286e-06 2.718 ||| 0-0 0-1 ||| 16 1.17835e+06 +en ||| there was , ||| 0.0185185 0.0117359 8.48644e-07 4.18983e-07 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| there was a ||| 0.000721501 0.0117359 8.48644e-07 1.55732e-07 2.718 ||| 0-0 ||| 1386 1.17835e+06 +en ||| there was in ||| 0.0952381 0.605812 1.69729e-06 4.43475e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| there was ||| 0.00124121 0.0117359 5.09187e-06 3.51335e-06 2.718 ||| 0-0 ||| 4834 1.17835e+06 +en ||| there were Members of ||| 1 0.011696 8.48644e-07 4.04077e-12 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| there were glad ||| 1 0.0117359 8.48644e-07 3.89722e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| there were in the ||| 0.5 0.605812 8.48644e-07 1.55673e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| there were in ||| 0.307692 0.605812 3.39458e-06 2.53572e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| there were on ||| 0.5 0.22993 1.69729e-06 4.56034e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| there were ||| 0.0028954 0.0117359 6.78915e-06 2.00888e-06 2.718 ||| 0-0 ||| 2763 1.17835e+06 +en ||| there whenever ||| 0.25 0.0248913 8.48644e-07 5.11358e-08 2.718 ||| 0-0 0-1 ||| 4 1.17835e+06 +en ||| there will , in ||| 0.428571 0.605812 2.54593e-06 1.46036e-06 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| there will always in ||| 1 0.605812 8.48644e-07 2.10627e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| there will be on ||| 0.25 0.22993 8.48644e-07 3.99124e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| there will be something ||| 0.0625 0.0117359 8.48644e-07 9.73155e-11 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| there will be ||| 0.00156152 0.0117359 4.24322e-06 1.75819e-07 2.718 ||| 0-0 ||| 3202 1.17835e+06 +en ||| there will in ||| 0.142857 0.605812 8.48644e-07 1.22458e-05 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| there will only be ||| 0.025 0.0117359 8.48644e-07 1.95704e-10 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| there will only ||| 0.0909091 0.0117359 8.48644e-07 1.07987e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| there will under ||| 1 0.205566 8.48644e-07 1.49952e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| there will ||| 0.00904977 0.0117359 8.48644e-06 9.70146e-06 2.718 ||| 0-0 ||| 1105 1.17835e+06 +en ||| there with ||| 0.0153846 0.0535436 8.48644e-07 3.5738e-05 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| there within ||| 0.333333 0.369196 8.48644e-07 3.39841e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| there would , ||| 0.166667 0.0117359 8.48644e-07 7.84834e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| there would be ||| 0.00333333 0.0117359 1.69729e-06 1.1927e-07 2.718 ||| 0-0 ||| 600 1.17835e+06 +en ||| there would in ||| 0.5 0.605812 8.48644e-07 8.30713e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| there would on ||| 1 0.22993 8.48644e-07 1.49398e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| there would ||| 0.00887574 0.0117359 2.54593e-06 6.58116e-06 2.718 ||| 0-0 ||| 338 1.17835e+06 +en ||| there you are ||| 0.0588235 0.0117359 8.48644e-07 5.49353e-08 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| there you ||| 0.0243902 0.0117359 8.48644e-07 3.62066e-06 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| there ||| 0.0181482 0.0117359 0.000633937 0.0011214 2.718 ||| 0-0 ||| 41161 1.17835e+06 +en ||| thereby concluding the ||| 1 0.0011669 8.48644e-07 1.08154e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| thereby in ||| 1 0.605812 8.48644e-07 2.02722e-05 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| thereby jeopardize ||| 0.333333 0.259669 8.48644e-07 1.4048e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| thereby laying down ||| 0.25 0.0183476 8.48644e-07 2.02311e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| thereby working ||| 1 0.0029456 8.48644e-07 1.64186e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| therefore , be in a ||| 1 0.605812 8.48644e-07 3.69963e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| therefore , be in ||| 0.25 0.605812 8.48644e-07 8.34644e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| therefore , in ||| 0.00271739 0.605812 8.48644e-07 4.60547e-05 2.718 ||| 0-2 ||| 368 1.17835e+06 +en ||| therefore , that ||| 0.00238663 0.0017499 8.48644e-07 1.04241e-07 2.718 ||| 0-2 ||| 419 1.17835e+06 +en ||| therefore , to ||| 0.00769231 0.0247351 1.69729e-06 2.80332e-06 2.718 ||| 0-2 ||| 260 1.17835e+06 +en ||| therefore , upon ||| 0.5 0.114601 8.48644e-07 8.81537e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| therefore , with ||| 0.0185185 0.0535436 8.48644e-07 1.16277e-06 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| therefore , ||| 0.000212706 0.0081305 2.54593e-06 0.000103549 2.718 ||| 0-0 ||| 14104 1.17835e+06 +en ||| therefore a ||| 0.00222717 0.0015231 8.48644e-07 6.89111e-07 2.718 ||| 0-1 ||| 449 1.17835e+06 +en ||| therefore be high on ||| 0.333333 0.22993 8.48644e-07 1.87923e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| therefore be set up as ||| 1 0.066968 8.48644e-07 5.43374e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| therefore enable us to ||| 0.5 0.0247351 8.48644e-07 6.68033e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| therefore expressed ||| 0.2 0.0081305 8.48644e-07 8.43988e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| therefore focusing on ||| 1 0.22993 8.48644e-07 1.40296e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| therefore important to emphasise that social policy ||| 1 0.207288 8.48644e-07 1.74364e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| therefore important to emphasise that social ||| 1 0.207288 8.48644e-07 4.42886e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| therefore important to emphasise that ||| 1 0.207288 8.48644e-07 4.28738e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| therefore important to emphasise ||| 1 0.207288 8.48644e-07 2.54873e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| therefore in a ||| 0.0714286 0.605812 8.48644e-07 1.71181e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| therefore in favour of ||| 0.0555556 0.605812 8.48644e-07 6.79179e-09 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| therefore in favour ||| 0.0454545 0.605812 8.48644e-07 1.24932e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| therefore in ||| 0.043956 0.605812 6.78915e-06 0.000386188 2.718 ||| 0-1 ||| 182 1.17835e+06 +en ||| therefore need , in ||| 1 0.605812 8.48644e-07 4.22275e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| therefore only partly meeting its obligations under ||| 1 0.205566 8.48644e-07 4.23428e-25 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| therefore realize that issues such as ||| 1 0.066968 8.48644e-07 7.63687e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| therefore revealing ||| 0.5 0.0081305 8.48644e-07 3.4732e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| therefore settled by occupation in ||| 1 0.605812 8.48644e-07 2.05307e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| therefore to ||| 0.0035461 0.0247351 8.48644e-07 2.3507e-05 2.718 ||| 0-1 ||| 282 1.17835e+06 +en ||| therefore under ||| 0.2 0.205566 8.48644e-07 4.72894e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| therefore very ||| 0.0106383 0.0081305 8.48644e-07 3.02125e-06 2.718 ||| 0-0 ||| 94 1.17835e+06 +en ||| therefore wish to see clear wording ||| 1 0.0247351 8.48644e-07 2.27489e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| therefore wish to see clear ||| 1 0.0247351 8.48644e-07 1.62492e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| therefore wish to see ||| 0.5 0.0247351 8.48644e-07 4.88112e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| therefore wish to ||| 0.047619 0.0247351 8.48644e-07 6.9275e-09 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| therefore ||| 0.000596788 0.0081305 2.80053e-05 0.0008683 2.718 ||| 0-0 ||| 55296 1.17835e+06 +en ||| therein ||| 0.012987 0.172619 1.69729e-06 3.95e-05 2.718 ||| 0-0 ||| 154 1.17835e+06 +en ||| thereof in ||| 0.0769231 0.605812 8.48644e-07 6.00315e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| these , in ||| 0.0454545 0.605812 8.48644e-07 5.71126e-05 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| these , ||| 0.00165837 0.0014765 8.48644e-07 1.24979e-05 2.718 ||| 0-0 ||| 603 1.17835e+06 +en ||| these accidents ||| 0.0217391 0.0019967 8.48644e-07 4.25211e-09 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| these are , to be ||| 1 0.0014765 8.48644e-07 3.05369e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| these are , to ||| 1 0.0014765 8.48644e-07 1.68499e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| these are , ||| 0.0116279 0.0014765 8.48644e-07 1.89627e-07 2.718 ||| 0-0 ||| 86 1.17835e+06 +en ||| these are at ||| 0.285714 0.321886 1.69729e-06 6.29456e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| these are in ||| 0.0625 0.605812 1.69729e-06 7.26641e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| these are on ||| 0.125 0.22993 8.48644e-07 1.30682e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| these are points on ||| 1 0.22993 8.48644e-07 1.69756e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| these are ||| 0.000879379 0.0014765 5.09187e-06 1.5901e-06 2.718 ||| 0-0 ||| 6823 1.17835e+06 +en ||| these areas in ||| 0.0294118 0.605812 8.48644e-07 1.09623e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| these as ||| 0.0175439 0.066968 8.48644e-07 1.86553e-05 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| these at ||| 0.0526316 0.321886 8.48644e-07 4.14861e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| these being the ||| 0.0909091 0.0014765 8.48644e-07 1.83095e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| these being ||| 0.012987 0.0014765 8.48644e-07 2.9824e-07 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| these can ||| 0.0113636 0.0014765 8.48644e-07 3.11707e-07 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| these citizens in ||| 0.5 0.605812 8.48644e-07 5.22015e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| these concerns in ||| 0.0666667 0.605812 8.48644e-07 3.58706e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| these conditions ||| 0.00182149 0.0014765 8.48644e-07 1.25236e-08 2.718 ||| 0-0 ||| 549 1.17835e+06 +en ||| these consist ||| 0.111111 0.206133 8.48644e-07 8.53533e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| these countries face in ||| 0.333333 0.605812 8.48644e-07 3.04224e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| these countries on ||| 0.0769231 0.22993 8.48644e-07 3.27034e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| these countries ||| 0.000415541 0.0014765 1.69729e-06 3.97926e-08 2.718 ||| 0-0 ||| 4813 1.17835e+06 +en ||| these developments take place at ||| 1 0.321886 8.48644e-07 3.00563e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| these direct ||| 0.5 0.0014765 8.48644e-07 5.16664e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| these directives in ||| 0.142857 0.605812 8.48644e-07 6.89635e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| these drinks ||| 0.0909091 0.0014765 8.48644e-07 3.0392e-10 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| these factors in ||| 0.25 0.605812 8.48644e-07 1.43195e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| these frameworks into ||| 1 0.525896 8.48644e-07 3.2142e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| these have been doing ||| 1 0.0014765 8.48644e-07 1.53643e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| these have been ||| 0.00735294 0.0014765 8.48644e-07 4.18531e-09 2.718 ||| 0-0 ||| 136 1.17835e+06 +en ||| these have no place in ||| 1 0.605812 8.48644e-07 6.70996e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| these have not been fulfilled in ||| 1 0.605812 8.48644e-07 7.50926e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| these have ||| 0.00318471 0.0014765 8.48644e-07 1.25339e-06 2.718 ||| 0-0 ||| 314 1.17835e+06 +en ||| these in terms ||| 0.5 0.605812 8.48644e-07 5.25655e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| these in the form of ||| 1 0.605812 8.48644e-07 7.2758e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| these in the form ||| 0.5 0.605812 8.48644e-07 1.33835e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| these in the ||| 0.04 0.605812 8.48644e-07 2.94013e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| these in ||| 0.11828 0.605812 9.33509e-06 0.000478913 2.718 ||| 0-1 ||| 93 1.17835e+06 +en ||| these into ||| 0.105263 0.525896 1.69729e-06 2.29586e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| these inventions ||| 1 0.0824373 8.48644e-07 3.24612e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| these issues into ||| 0.2 0.525896 8.48644e-07 5.77409e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| these issues ||| 0.000328407 0.0014765 8.48644e-07 2.63572e-08 2.718 ||| 0-0 ||| 3045 1.17835e+06 +en ||| these measures in ||| 0.0357143 0.605812 8.48644e-07 9.90871e-08 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| these obviously do not loosen their purse ||| 1 0.0014765 8.48644e-07 1.20723e-28 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| these obviously do not loosen their ||| 1 0.0014765 8.48644e-07 3.7726e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| these obviously do not loosen ||| 1 0.0014765 8.48644e-07 3.25477e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| these obviously do not ||| 1 0.0014765 8.48644e-07 8.13692e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| these obviously do ||| 1 0.0014765 8.48644e-07 2.38333e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| these obviously ||| 1 0.0014765 8.48644e-07 6.93776e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| these on ||| 0.0416667 0.22993 8.48644e-07 8.61295e-05 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| these people , with ||| 1 0.0014765 8.48644e-07 7.03436e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| these people , ||| 0.00699301 0.0014765 8.48644e-07 1.10006e-08 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| these people have , over the ||| 1 0.157937 8.48644e-07 3.20297e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| these people have , over ||| 1 0.157937 8.48644e-07 5.21726e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| these people in ||| 0.0294118 0.605812 8.48644e-07 4.21539e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| these people ||| 0.000568828 0.0014765 8.48644e-07 9.2245e-08 2.718 ||| 0-0 ||| 1758 1.17835e+06 +en ||| these problems , in ||| 0.2 0.605812 8.48644e-07 7.66452e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| these products into ||| 0.25 0.525896 8.48644e-07 2.38769e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| these reasons compel us as Europeans to ||| 1 0.066968 8.48644e-07 8.02312e-24 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| these reasons compel us as Europeans ||| 1 0.066968 8.48644e-07 9.02913e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| these reasons compel us as ||| 1 0.066968 8.48644e-07 5.97956e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| these receive my ||| 1 0.002535 8.48644e-07 1.47337e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| these refugees in ||| 0.5 0.605812 8.48644e-07 5.36383e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| these terms is ||| 0.5 0.0014765 8.48644e-07 3.60512e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| these terms ||| 0.0114943 0.0014765 8.48644e-07 1.15028e-07 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| these things are in ||| 0.25 0.605812 8.48644e-07 2.98649e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| these things in ||| 0.0454545 0.605812 8.48644e-07 1.96833e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| these things ||| 0.00101523 0.0014765 8.48644e-07 4.30728e-08 2.718 ||| 0-0 ||| 985 1.17835e+06 +en ||| these under ||| 0.2 0.205566 8.48644e-07 5.86439e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| these which ||| 0.0588235 0.0014765 8.48644e-07 8.90234e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| these will include ||| 0.0625 0.0014765 8.48644e-07 1.2004e-10 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| these will ||| 0.00649351 0.0014765 8.48644e-07 9.06646e-07 2.718 ||| 0-0 ||| 154 1.17835e+06 +en ||| these with ||| 0.05 0.0535436 8.48644e-07 1.20914e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| these within ||| 0.166667 0.369196 1.69729e-06 1.1498e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| these ||| 0.000656886 0.0014765 5.85565e-05 0.0001048 2.718 ||| 0-0 ||| 105041 1.17835e+06 +en ||| they , in ||| 0.142857 0.605812 3.39458e-06 0.000179747 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| they account ||| 0.0714286 0.233636 8.48644e-07 1.07898e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| they affect ||| 0.00934579 0.0481375 8.48644e-07 5.59776e-07 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| they agree on ||| 0.142857 0.22993 8.48644e-07 4.31272e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| they agree ||| 0.02 0.071674 8.48644e-07 4.16878e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| they already have ||| 0.0294118 0.0036976 8.48644e-07 1.62059e-09 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| they already ||| 0.0178571 0.0036976 8.48644e-07 1.35503e-07 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| they also become ||| 0.166667 0.219193 8.48644e-07 6.3006e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| they approach ||| 0.04 0.0044306 8.48644e-07 1.86701e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| they are , in ||| 0.0416667 0.605812 8.48644e-07 2.72725e-06 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| they are about ||| 0.0217391 0.0401564 8.48644e-07 1.4194e-07 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| they are addressed under ||| 1 0.205566 8.48644e-07 1.501e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they are all up and ||| 1 0.0147069 8.48644e-07 2.0226e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they are all up ||| 1 0.0147069 8.48644e-07 1.61473e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they are also ||| 0.00236407 0.0036976 8.48644e-07 2.24134e-08 2.718 ||| 0-0 ||| 423 1.17835e+06 +en ||| they are at ||| 0.0245902 0.321886 2.54593e-06 1.98105e-06 2.718 ||| 0-2 ||| 122 1.17835e+06 +en ||| they are being abandoned in Canada . ||| 1 0.605812 8.48644e-07 1.24192e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| they are being abandoned in Canada ||| 1 0.605812 8.48644e-07 4.1001e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| they are being abandoned in ||| 1 0.605812 8.48644e-07 8.20019e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| they are being neglected as ||| 0.142857 0.066968 8.48644e-07 9.12642e-15 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| they are bound to ||| 0.125 0.0247351 8.48644e-07 7.16894e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| they are called in ||| 0.142857 0.605812 8.48644e-07 3.97465e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| they are covered in ||| 0.333333 0.605812 8.48644e-07 1.63743e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| they are entered into ||| 0.5 0.525896 8.48644e-07 3.50823e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| they are for ||| 0.0769231 0.0286209 3.39458e-06 5.6978e-07 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| they are happening at ||| 1 0.321886 8.48644e-07 1.07571e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they are helping to ||| 0.111111 0.0247351 8.48644e-07 5.26186e-11 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| they are in , to ||| 0.5 0.605812 8.48644e-07 2.42338e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| they are in , ||| 0.2 0.605812 8.48644e-07 2.72725e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| they are in - ||| 1 0.605812 8.48644e-07 8.62646e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| they are in many ||| 0.2 0.605812 8.48644e-07 7.85096e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| they are in the ||| 0.0117647 0.605812 8.48644e-07 1.40398e-06 2.718 ||| 0-2 ||| 85 1.17835e+06 +en ||| they are in themselves ||| 0.333333 0.605812 8.48644e-07 9.82685e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| they are in ||| 0.0985916 0.605812 4.15836e-05 2.28691e-05 2.718 ||| 0-2 ||| 497 1.17835e+06 +en ||| they are interlinked ||| 0.333333 0.0036976 8.48644e-07 7.99116e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| they are living in ||| 0.0333333 0.605812 8.48644e-07 1.91643e-09 2.718 ||| 0-3 ||| 30 1.17835e+06 +en ||| they are on ||| 0.0277778 0.22993 1.69729e-06 4.11286e-06 2.718 ||| 0-2 ||| 72 1.17835e+06 +en ||| they are perpetrated in the ||| 1 0.605812 8.48644e-07 2.21828e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they are perpetrated in ||| 1 0.605812 8.48644e-07 3.61332e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they are reacting with resistance . in ||| 1 0.605812 8.48644e-07 4.58011e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| they are suffocating , as ||| 0.5 0.066968 8.48644e-07 7.43647e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| they are taken into ||| 0.166667 0.525896 8.48644e-07 9.99296e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| they are the same in ||| 1 0.605812 8.48644e-07 1.12978e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| they are to the rest of ||| 1 0.0247351 8.48644e-07 3.5123e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| they are to the rest ||| 1 0.0247351 8.48644e-07 6.4607e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| they are to the ||| 0.125 0.0247351 8.48644e-07 8.5459e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| they are to ||| 0.00358423 0.0247351 8.48644e-07 1.39203e-06 2.718 ||| 0-2 ||| 279 1.17835e+06 +en ||| they are using ||| 0.0217391 0.0119063 8.48644e-07 3.16952e-09 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| they are ||| 0.000525403 0.0036976 8.48644e-06 4.43953e-06 2.718 ||| 0-0 ||| 19033 1.17835e+06 +en ||| they at ||| 0.0666667 0.321886 8.48644e-07 0.000130567 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| they be in ||| 0.0588235 0.605812 8.48644e-07 2.73158e-05 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| they be made ||| 0.333333 0.0036976 8.48644e-07 1.11082e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| they be used to ||| 0.166667 0.0247351 8.48644e-07 7.13296e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| they be ||| 0.0033557 0.0036976 8.48644e-07 5.30276e-06 2.718 ||| 0-0 ||| 298 1.17835e+06 +en ||| they become ||| 0.00578035 0.219193 8.48644e-07 1.24799e-05 2.718 ||| 0-1 ||| 173 1.17835e+06 +en ||| they believe in ||| 0.0454545 0.605812 8.48644e-07 4.69208e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| they came about in ||| 1 0.605812 8.48644e-07 2.68595e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they can , in ||| 0.2 0.605812 8.48644e-07 5.34622e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| they can be discussed in ||| 0.333333 0.605812 8.48644e-07 4.26538e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| they can get not only on ||| 1 0.22993 8.48644e-07 1.33954e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| they can vote ' ||| 0.333333 0.0032578 8.48644e-07 4.16742e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| they can ||| 0.000891266 0.0036976 2.54593e-06 8.7028e-07 2.718 ||| 0-0 ||| 3366 1.17835e+06 +en ||| they cannot bring into ||| 0.25 0.525896 8.48644e-07 5.06775e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| they cannot understand why progress is speeding ||| 1 0.0036976 8.48644e-07 7.33384e-27 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| they cannot understand why progress is ||| 1 0.0036976 8.48644e-07 5.23846e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| they cannot understand why progress ||| 1 0.0036976 8.48644e-07 1.67143e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| they cannot understand why ||| 0.142857 0.0036976 8.48644e-07 1.26912e-15 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| they cannot understand ||| 0.0909091 0.0036976 8.48644e-07 5.14857e-12 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| they cannot ||| 0.00109769 0.0036976 8.48644e-07 6.59228e-08 2.718 ||| 0-0 ||| 911 1.17835e+06 +en ||| they constitute an ||| 0.0833333 0.0036976 8.48644e-07 3.97959e-11 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| they constitute ||| 0.0113636 0.0036976 8.48644e-07 8.95356e-09 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| they contribute to ||| 0.0178571 0.0247351 8.48644e-07 3.5689e-09 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| they created ||| 0.0526316 0.0036976 8.48644e-07 3.084e-08 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| they did in ||| 0.0625 0.605812 2.54593e-06 6.84595e-07 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| they did most recently at ||| 1 0.321886 8.48644e-07 1.7429e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| they do at ||| 0.214286 0.321886 2.54593e-06 4.48535e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| they do in ||| 0.340909 0.605812 1.27297e-05 5.17787e-06 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| they do not in ||| 0.5 0.605812 8.48644e-07 1.76778e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| they do on ||| 0.333333 0.22993 8.48644e-07 9.31207e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| they do with ||| 0.0909091 0.0535436 8.48644e-07 1.30729e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| they do ||| 0.00512164 0.0036976 3.39458e-06 1.00517e-06 2.718 ||| 0-0 ||| 781 1.17835e+06 +en ||| they embark on ||| 0.25 0.22993 8.48644e-07 2.14145e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| they enjoy during ||| 1 0.226251 8.48644e-07 3.67107e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| they even look around for potential scapegoats ||| 1 0.159384 8.48644e-07 1.0579e-25 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they even look around for potential ||| 1 0.159384 8.48644e-07 2.64474e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they even look around for ||| 1 0.159384 8.48644e-07 5.13542e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they even look around ||| 1 0.159384 8.48644e-07 6.68179e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they even released the latter in advance ||| 0.5 0.605812 8.48644e-07 3.70559e-21 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| they even released the latter in ||| 0.5 0.605812 8.48644e-07 1.04974e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| they exist in ||| 0.0625 0.605812 8.48644e-07 1.38818e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| they experience difficulty in ||| 1 0.605812 8.48644e-07 1.87472e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they feature in ||| 0.333333 0.605812 8.48644e-07 4.06958e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| they feel ||| 0.0047619 0.0036976 8.48644e-07 4.94787e-08 2.718 ||| 0-0 ||| 210 1.17835e+06 +en ||| they find in ||| 0.25 0.605812 8.48644e-07 5.01765e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| they get mixed up in ||| 0.5 0.605812 8.48644e-07 2.11258e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| they had in ||| 0.307692 0.605812 3.39458e-06 1.51283e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| they had through ||| 0.5 0.0366102 8.48644e-07 3.08082e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| they had ||| 0.00241546 0.0036976 1.69729e-06 2.93683e-07 2.718 ||| 0-0 ||| 828 1.17835e+06 +en ||| they have , in ||| 0.0909091 0.605812 8.48644e-07 2.14974e-06 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| they have agreed to in ||| 0.5 0.605812 8.48644e-07 1.251e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| they have been in the ||| 0.0588235 0.605812 8.48644e-07 3.69541e-09 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| they have been in ||| 0.235294 0.605812 6.78915e-06 6.01939e-08 2.718 ||| 0-3 ||| 34 1.17835e+06 +en ||| they have come to the end of ||| 0.333333 0.0247351 1.69729e-06 1.35326e-15 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| they have come to the end ||| 0.333333 0.0247351 1.69729e-06 2.48925e-14 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| they have come to the ||| 0.222222 0.0247351 1.69729e-06 5.72111e-11 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| they have come to ||| 0.0769231 0.0247351 1.69729e-06 9.31901e-10 2.718 ||| 0-3 ||| 26 1.17835e+06 +en ||| they have confidence in ||| 0.166667 0.605812 8.48644e-07 5.57017e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| they have done in the ||| 0.05 0.605812 8.48644e-07 5.04644e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| they have done in ||| 0.0694444 0.605812 4.24322e-06 8.22006e-09 2.718 ||| 0-3 ||| 72 1.17835e+06 +en ||| they have done on ||| 0.0204082 0.22993 8.48644e-07 1.47833e-09 2.718 ||| 0-3 ||| 49 1.17835e+06 +en ||| they have in ||| 0.108108 0.605812 6.78915e-06 1.80265e-05 2.718 ||| 0-2 ||| 74 1.17835e+06 +en ||| they have made here today , ||| 0.333333 0.0398284 8.48644e-07 2.38566e-14 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| they have made here today ||| 0.25 0.0398284 8.48644e-07 2.00047e-13 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| they have made to ||| 0.0357143 0.0247351 8.48644e-07 2.29854e-09 2.718 ||| 0-3 ||| 28 1.17835e+06 +en ||| they have shown on ||| 0.333333 0.22993 8.48644e-07 3.38459e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| they have taken on and ||| 1 0.22993 8.48644e-07 3.70144e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they have taken on ||| 0.125 0.22993 8.48644e-07 2.95503e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| they have taken when ||| 1 0.142731 8.48644e-07 2.11831e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they have the skills needed for types ||| 1 0.0286209 8.48644e-07 2.02538e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| they have the skills needed for ||| 1 0.0286209 8.48644e-07 4.39345e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| they have ||| 0.000328192 0.0036976 2.54593e-06 3.49944e-06 2.718 ||| 0-0 ||| 9141 1.17835e+06 +en ||| they home in on ||| 1 0.417871 8.48644e-07 1.27053e-08 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| they in ||| 0.151515 0.605812 4.24322e-06 0.00150725 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| they insert in ||| 1 0.605812 8.48644e-07 2.71306e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| they interested in ||| 0.25 0.605812 8.48644e-07 3.19538e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| they live in , ||| 0.25 0.605812 8.48644e-07 1.81185e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| they live in ||| 0.0151515 0.605812 8.48644e-07 1.51931e-07 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| they make in ||| 0.0909091 0.605812 8.48644e-07 2.61931e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| they make ||| 0.00332226 0.0036976 8.48644e-07 5.0848e-07 2.718 ||| 0-0 ||| 301 1.17835e+06 +en ||| they meet in ||| 0.111111 0.605812 8.48644e-07 1.83282e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| they must be discussed in ||| 1 0.605812 8.48644e-07 2.21651e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| they must in ||| 1 0.605812 8.48644e-07 2.32961e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| they need to ||| 0.0018315 0.0247351 8.48644e-07 8.41214e-08 2.718 ||| 0-2 ||| 546 1.17835e+06 +en ||| they once held in ||| 1 0.605812 8.48644e-07 1.57338e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they once were ||| 0.125 0.0058612 8.48644e-07 6.28566e-10 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| they once ||| 0.0714286 0.0058612 8.48644e-07 3.5088e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| they own in ||| 1 0.605812 8.48644e-07 2.55525e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| they play in the publication of ||| 1 0.605812 8.48644e-07 7.91694e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| they play in the publication ||| 1 0.605812 8.48644e-07 1.45628e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| they play in the ||| 0.111111 0.605812 8.48644e-07 2.38735e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| they play in ||| 0.0454545 0.605812 8.48644e-07 3.88871e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| they prefer on ||| 1 0.22993 8.48644e-07 7.12914e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| they remain a ||| 0.166667 0.0015231 8.48644e-07 3.26241e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| they result in impossible ||| 0.333333 0.605812 8.48644e-07 4.25353e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| they result in ||| 0.0714286 0.605812 8.48644e-07 7.93569e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| they result ||| 0.05 0.0036976 8.48644e-07 1.54054e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| they say on ||| 1 0.22993 8.48644e-07 2.59089e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| they set off on ||| 1 0.22993 8.48644e-07 6.44742e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they should be in ||| 0.0714286 0.605812 8.48644e-07 1.21036e-07 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| they should ||| 0.000449035 0.0036976 8.48644e-07 1.29651e-06 2.718 ||| 0-0 ||| 2227 1.17835e+06 +en ||| they stand during ||| 0.5 0.226251 8.48644e-07 1.55525e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| they take place in ||| 0.2 0.605812 8.48644e-07 3.65215e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| they take ||| 0.0042735 0.0074151 8.48644e-07 9.55046e-07 2.718 ||| 0-1 ||| 234 1.17835e+06 +en ||| they themselves in ||| 1 0.605812 8.48644e-07 6.47667e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| they trusted ||| 0.5 0.213198 8.48644e-07 9.33504e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| they undergo change in ||| 1 0.605812 8.48644e-07 1.25042e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they used to be in ||| 0.5 0.605812 8.48644e-07 1.04128e-09 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| they want to on ||| 0.5 0.22993 8.48644e-07 1.12606e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| they wear in ||| 0.333333 0.605812 8.48644e-07 6.02901e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| they were , in fact , ||| 0.25 0.605812 8.48644e-07 1.12485e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| they were , in fact ||| 0.5 0.605812 8.48644e-07 9.43231e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| they were , in ||| 0.333333 0.605812 8.48644e-07 3.21999e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| they were getting off the coach in ||| 1 0.605812 8.48644e-07 3.371e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| they were in the ||| 0.0357143 0.605812 8.48644e-07 1.65764e-07 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| they were in ||| 0.120879 0.605812 9.33509e-06 2.70009e-06 2.718 ||| 0-2 ||| 91 1.17835e+06 +en ||| they were only to be tackled within ||| 1 0.369196 8.48644e-07 1.83595e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| they were under ||| 0.166667 0.205566 8.48644e-07 3.30632e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| they were when ||| 0.0833333 0.142731 8.48644e-07 3.48097e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| they were ||| 0.000737191 0.0036976 1.69729e-06 5.24164e-07 2.718 ||| 0-0 ||| 2713 1.17835e+06 +en ||| they will at ||| 0.0769231 0.321886 8.48644e-07 1.12956e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| they will be in ||| 0.0666667 0.605812 8.48644e-07 2.36314e-07 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| they will be made in ||| 0.5 0.605812 8.48644e-07 4.95032e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| they will be noted in ||| 0.5 0.605812 8.48644e-07 7.23122e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| they will be required , in ||| 0.5 0.605812 8.48644e-07 4.47242e-12 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| they will end up in ||| 0.25 0.605812 8.48644e-07 1.93495e-11 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| they will have on ||| 0.25 0.22993 8.48644e-07 2.80467e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| they will have to cover ||| 1 0.0247351 8.48644e-07 7.41372e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they will have to ||| 0.0114943 0.0247351 1.69729e-06 9.4926e-09 2.718 ||| 0-3 ||| 174 1.17835e+06 +en ||| they will in ||| 0.25 0.605812 1.69729e-06 1.30396e-05 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| they will know for ||| 1 0.0286209 8.48644e-07 8.38186e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| they will ||| 0.00246002 0.0036976 3.39458e-06 2.53134e-06 2.718 ||| 0-0 ||| 1626 1.17835e+06 +en ||| they work under ||| 1 0.205566 8.48644e-07 1.1683e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| they would constitute a ||| 0.166667 0.0036976 8.48644e-07 2.32913e-12 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| they would constitute ||| 0.111111 0.0036976 8.48644e-07 5.25458e-11 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| they would in ||| 0.142857 0.605812 8.48644e-07 8.84562e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| they would ||| 0.00433839 0.0036976 1.69729e-06 1.71718e-06 2.718 ||| 0-0 ||| 461 1.17835e+06 +en ||| they ||| 0.00216158 0.0036976 7.46807e-05 0.0002926 2.718 ||| 0-0 ||| 40711 1.17835e+06 +en ||| thing , in ||| 0.142857 0.605812 8.48644e-07 2.00949e-05 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| thing about ||| 0.0350877 0.0401564 1.69729e-06 1.04584e-06 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| thing and someone else another as ||| 1 0.066968 8.48644e-07 1.27947e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| thing as a ||| 0.025641 0.066968 8.48644e-07 2.90945e-07 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| thing as ||| 0.00900901 0.066968 8.48644e-07 6.56378e-06 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| thing at ||| 0.333333 0.321886 7.6378e-06 1.45967e-05 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| thing if ||| 0.0555556 0.0178573 8.48644e-07 4.23102e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| thing in common ||| 0.037037 0.605812 8.48644e-07 3.89244e-08 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| thing in our ||| 1 0.605812 8.48644e-07 2.32434e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| thing in ||| 0.185185 0.605812 2.12161e-05 0.000168504 2.718 ||| 0-1 ||| 135 1.17835e+06 +en ||| thing of all ||| 0.047619 0.0116562 8.48644e-07 2.35143e-08 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| thing of the past ||| 0.00980392 0.0116562 8.48644e-07 3.91338e-11 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| thing of the ||| 0.00877193 0.0116562 8.48644e-07 3.05494e-07 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| thing of ||| 0.0298507 0.0116562 1.69729e-06 4.97614e-06 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| thing on ||| 0.04 0.22993 8.48644e-07 3.03044e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| thing once again in ||| 1 0.605812 8.48644e-07 3.98748e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| thing one ||| 0.25 0.0025338 8.48644e-07 5.93327e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| thing that he is ||| 1 0.0017499 8.48644e-07 1.04316e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| thing that he ||| 0.5 0.0017499 8.48644e-07 3.32842e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| thing that ||| 0.00246914 0.0017499 8.48644e-07 3.81393e-07 2.718 ||| 0-1 ||| 405 1.17835e+06 +en ||| thing we can do in ||| 0.5 0.605812 8.48644e-07 1.95453e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| thing we welcome in ||| 1 0.605812 8.48644e-07 2.10611e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| thing when ||| 0.125 0.142731 8.48644e-07 2.17236e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| thing with ||| 0.117647 0.0535436 1.69729e-06 4.25433e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| things , for me , ||| 1 0.0286209 8.48644e-07 4.04907e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| things , for me ||| 1 0.0286209 8.48644e-07 3.39532e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| things , for ||| 0.04 0.0286209 8.48644e-07 5.63912e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| things , in ||| 0.0344828 0.605812 8.48644e-07 2.26336e-05 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| things , on ||| 0.025641 0.22993 8.48644e-07 4.07051e-06 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| things are done in ||| 0.111111 0.605812 8.48644e-07 1.31312e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| things are in ||| 0.1 0.605812 1.69729e-06 2.87966e-06 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| things at ||| 0.0285714 0.321886 8.48644e-07 1.64408e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| things being ||| 0.0666667 0.0043873 8.48644e-07 7.5213e-08 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| things by ||| 0.0238095 0.0468744 8.48644e-07 3.49642e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| things down in ||| 0.5 0.605812 8.48644e-07 1.32494e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| things easier for ||| 0.0526316 0.0286209 8.48644e-07 3.30059e-10 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| things have changed here - in ||| 1 0.605812 8.48644e-07 5.67751e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| things in ||| 0.0397727 0.605812 1.1881e-05 0.000189792 2.718 ||| 0-1 ||| 352 1.17835e+06 +en ||| things into ||| 0.030303 0.525896 8.48644e-07 9.09843e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| things stand at ||| 0.0892857 0.321886 4.24322e-06 2.70945e-09 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| things that ||| 0.000909091 0.0017499 8.48644e-07 4.29577e-07 2.718 ||| 0-1 ||| 1100 1.17835e+06 +en ||| things the ||| 0.0384615 0.0011669 8.48644e-07 1.17739e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| things to ||| 0.0031746 0.0247351 8.48644e-07 1.15525e-05 2.718 ||| 0-1 ||| 315 1.17835e+06 +en ||| things up as we go along ||| 0.333333 0.066968 8.48644e-07 2.92097e-17 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| things up as we go ||| 0.333333 0.066968 8.48644e-07 1.67391e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| things up as we ||| 0.333333 0.066968 8.48644e-07 2.86236e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| things up as ||| 0.333333 0.066968 8.48644e-07 2.52139e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| things with ||| 0.025 0.0535436 8.48644e-07 4.79181e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| think , at ||| 0.666667 0.321886 1.69729e-06 1.82469e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| think , in ||| 0.0909091 0.605812 8.48644e-07 2.10641e-05 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| think I will take ||| 1 0.0074151 8.48644e-07 6.84883e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| think along ||| 0.0666667 0.155535 8.48644e-07 3.04279e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| think hard for ||| 1 0.0286209 8.48644e-07 4.62518e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| think in terms ||| 0.0263158 0.605812 8.48644e-07 1.9387e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| think in ||| 0.0283019 0.605812 2.54593e-06 0.000176631 2.718 ||| 0-1 ||| 106 1.17835e+06 +en ||| think of ||| 0.00763359 0.0116562 4.24322e-06 5.21615e-06 2.718 ||| 0-1 ||| 655 1.17835e+06 +en ||| think that ||| 0.000290023 0.0017499 8.48644e-07 3.99789e-07 2.718 ||| 0-1 ||| 3448 1.17835e+06 +en ||| think there is a ||| 0.05 0.0117359 8.48644e-07 5.95885e-10 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| think there is ||| 0.0131579 0.0117359 8.48644e-07 1.34433e-08 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| think there should be ||| 0.125 0.0117359 8.48644e-07 3.44446e-11 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| think there should ||| 0.166667 0.0117359 8.48644e-07 1.90061e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| think there ||| 0.021978 0.0117359 1.69729e-06 4.28936e-07 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| thinking , in ||| 0.111111 0.605812 8.48644e-07 4.08065e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| thinking , ||| 0.00531915 0.0455702 8.48644e-07 1.7447e-05 2.718 ||| 0-0 ||| 188 1.17835e+06 +en ||| thinking . ||| 0.00840336 0.0455702 8.48644e-07 4.43143e-07 2.718 ||| 0-0 ||| 119 1.17835e+06 +en ||| thinking about the ||| 0.00970874 0.0401564 8.48644e-07 1.30383e-08 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| thinking about ||| 0.0121951 0.0428633 4.24322e-06 4.1931e-07 2.718 ||| 0-0 0-1 ||| 410 1.17835e+06 +en ||| thinking at ||| 0.0909091 0.321886 8.48644e-07 2.96415e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| thinking behind the ||| 0.0344828 0.0455702 8.48644e-07 8.04753e-10 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| thinking behind ||| 0.0120482 0.0455702 8.48644e-07 1.31085e-08 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| thinking here in ||| 0.5 0.605812 8.48644e-07 6.93872e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| thinking in the ||| 0.0434783 0.605812 8.48644e-07 2.1007e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| thinking in ||| 0.026455 0.605812 4.24322e-06 3.4218e-05 2.718 ||| 0-1 ||| 189 1.17835e+06 +en ||| thinking of ||| 0.0249042 0.0286132 1.10324e-05 1.99509e-06 2.718 ||| 0-0 0-1 ||| 522 1.17835e+06 +en ||| thinking on ||| 0.0229885 0.13775 1.69729e-06 1.215e-05 2.718 ||| 0-0 0-1 ||| 87 1.17835e+06 +en ||| thinking particularly of ||| 0.0625 0.0975003 8.48644e-07 4.5127e-09 2.718 ||| 0-1 0-2 ||| 16 1.17835e+06 +en ||| thinking revolves ||| 0.2 0.325 8.48644e-07 1.96365e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| thinking to force a ||| 1 0.0455702 8.48644e-07 9.80749e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| thinking to force ||| 1 0.0455702 8.48644e-07 2.21259e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| thinking to ||| 0.0833333 0.0455702 8.48644e-07 1.3e-05 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| thinking was to maintain ||| 0.5 0.0455702 8.48644e-07 1.86131e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| thinking was to ||| 0.5 0.0455702 8.48644e-07 4.07289e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| thinking was ||| 0.142857 0.0455702 8.48644e-07 4.58358e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| thinking ||| 0.0116484 0.0455702 2.80053e-05 0.0001463 2.718 ||| 0-0 ||| 2833 1.17835e+06 +en ||| thinks of ||| 0.0384615 0.0116562 1.69729e-06 1.66371e-07 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| thinner in ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| third countries without ||| 0.0625 0.0174595 8.48644e-07 1.51296e-11 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| third countries would promise ||| 1 0.0174595 8.48644e-07 3.77664e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| third countries would ||| 0.25 0.0174595 8.48644e-07 4.01771e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| third countries ||| 0.000301205 0.0174595 1.69729e-06 6.84599e-08 2.718 ||| 0-0 ||| 6640 1.17835e+06 +en ||| third country , again within the space ||| 1 0.369196 8.48644e-07 3.27318e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| third country , again within the ||| 1 0.369196 8.48644e-07 7.90622e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| third country , again within ||| 1 0.369196 8.48644e-07 1.28783e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| third country ||| 0.00083682 0.0174595 8.48644e-07 6.489e-08 2.718 ||| 0-0 ||| 1195 1.17835e+06 +en ||| third parties , especially in ||| 1 0.605812 8.48644e-07 1.51904e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| third there ||| 0.25 0.0117359 8.48644e-07 5.24815e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| third ||| 0.000664319 0.0174595 8.48644e-06 0.0001803 2.718 ||| 0-0 ||| 15053 1.17835e+06 +en ||| thirdly , ||| 0.000244678 0.305869 8.48644e-07 0.000275335 2.718 ||| 0-0 ||| 4087 1.17835e+06 +en ||| thirdly ||| 0.000474383 0.305869 1.69729e-06 0.0023088 2.718 ||| 0-0 ||| 4216 1.17835e+06 +en ||| this , in ||| 0.036 0.605812 7.6378e-06 0.000355826 2.718 ||| 0-2 ||| 250 1.17835e+06 +en ||| this , into ||| 1 0.525896 8.48644e-07 1.70579e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this , namely ||| 0.0588235 0.0013296 8.48644e-07 9.09014e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| this , particularly in ||| 0.125 0.605812 8.48644e-07 6.3515e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| this , then , on ||| 1 0.22993 8.48644e-07 1.22897e-08 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| this , too ||| 0.00714286 0.0013296 8.48644e-07 7.74198e-08 2.718 ||| 0-0 ||| 140 1.17835e+06 +en ||| this , when ||| 0.0238095 0.142731 8.48644e-07 4.58733e-06 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| this , ||| 0.000786782 0.0013296 5.94051e-06 5.68845e-05 2.718 ||| 0-0 ||| 8897 1.17835e+06 +en ||| this - ||| 0.00138122 0.0013296 8.48644e-07 1.79929e-06 2.718 ||| 0-0 ||| 724 1.17835e+06 +en ||| this . as ||| 1 0.066968 8.48644e-07 3.52052e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this . ||| 0.000132223 0.0013296 8.48644e-07 1.44483e-06 2.718 ||| 0-0 ||| 7563 1.17835e+06 +en ||| this 44 000 into ||| 1 0.525896 8.48644e-07 2.69569e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this House have died down ||| 1 0.0183476 8.48644e-07 3.83544e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| this House in ||| 0.0070922 0.605812 1.69729e-06 7.46236e-07 2.718 ||| 0-2 ||| 282 1.17835e+06 +en ||| this House representing the ||| 1 0.0450358 8.48644e-07 5.94261e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this House representing ||| 0.5 0.0450358 8.48644e-07 9.67982e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this House who made ||| 0.166667 0.0013296 8.48644e-07 2.20416e-13 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| this House who ||| 0.0046729 0.0013296 8.48644e-07 1.05221e-10 2.718 ||| 0-0 ||| 214 1.17835e+06 +en ||| this House ||| 0.00011217 0.0013296 1.69729e-06 1.19298e-07 2.718 ||| 0-0 ||| 17830 1.17835e+06 +en ||| this Pact into ||| 1 0.525896 8.48644e-07 2.15987e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this Regulation in ||| 0.166667 0.605812 8.48644e-07 6.77312e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| this Rule in ||| 0.333333 0.605812 8.48644e-07 3.64018e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| this a reality in ||| 1 0.605812 8.48644e-07 8.84801e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this a ||| 0.00232558 0.0013296 8.48644e-07 2.11434e-05 2.718 ||| 0-0 ||| 430 1.17835e+06 +en ||| this abuse entails , amongst other things ||| 1 0.0013296 8.48644e-07 1.85722e-25 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this abuse entails , amongst other ||| 1 0.0013296 8.48644e-07 4.51879e-22 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this abuse entails , amongst ||| 1 0.0013296 8.48644e-07 3.48807e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this abuse entails , ||| 1 0.0013296 8.48644e-07 1.04121e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this abuse entails ||| 1 0.0013296 8.48644e-07 8.73101e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this abuse ||| 0.0357143 0.0013296 8.48644e-07 8.3952e-09 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| this against ||| 0.0588235 0.153982 8.48644e-07 3.7469e-05 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| this agreement ||| 0.000306654 0.0013296 8.48644e-07 8.79111e-08 2.718 ||| 0-0 ||| 3261 1.17835e+06 +en ||| this aid on ||| 0.333333 0.22993 8.48644e-07 7.00811e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| this also from ||| 0.5 0.0308834 8.48644e-07 1.24126e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this also has an ||| 0.166667 0.0013296 8.48644e-07 5.5097e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| this also has ||| 0.0416667 0.0013296 8.48644e-07 1.23961e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| this also ||| 0.00261097 0.0013296 1.69729e-06 2.40818e-06 2.718 ||| 0-0 ||| 766 1.17835e+06 +en ||| this amendment ||| 0.000559284 0.0050742 8.48644e-07 3.47623e-07 2.718 ||| 0-1 ||| 1788 1.17835e+06 +en ||| this among ||| 0.166667 0.0422459 8.48644e-07 2.05796e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| this amount for ||| 0.125 0.0286209 8.48644e-07 1.80868e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| this amount ||| 0.00543478 0.0013296 8.48644e-07 1.16054e-07 2.718 ||| 0-0 ||| 184 1.17835e+06 +en ||| this applies in ||| 0.0517241 0.605812 2.54593e-06 2.50038e-07 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| this applies to some ||| 0.333333 0.0247351 8.48644e-07 1.65788e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| this applies to ||| 0.0041841 0.0247351 8.48644e-07 1.52197e-08 2.718 ||| 0-2 ||| 239 1.17835e+06 +en ||| this approach in ||| 0.0333333 0.605812 8.48644e-07 6.54039e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| this area ||| 0.000125565 0.0013296 8.48644e-07 1.98098e-07 2.718 ||| 0-0 ||| 7964 1.17835e+06 +en ||| this article concerns ||| 0.333333 0.0077164 8.48644e-07 1.28976e-12 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| this article ||| 0.0042735 0.0077164 8.48644e-07 1.72197e-08 2.718 ||| 0-0 0-1 ||| 234 1.17835e+06 +en ||| this as , in ||| 1 0.605812 8.48644e-07 3.631e-06 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this as an invitation - ||| 1 0.066968 8.48644e-07 1.26662e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| this as an invitation ||| 0.5 0.066968 8.48644e-07 3.35786e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| this as an ||| 0.00746269 0.066968 8.48644e-07 5.16594e-07 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| this as clearly inappropriate ||| 0.333333 0.066968 8.48644e-07 1.2939e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| this as clearly ||| 0.25 0.066968 8.48644e-07 2.12114e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| this as ||| 0.00442478 0.066968 4.24322e-06 0.000116227 2.718 ||| 0-1 ||| 1130 1.17835e+06 +en ||| this aspect again in ||| 1 0.605812 8.48644e-07 1.21648e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this aspect in mind in all the ||| 1 0.605812 8.48644e-07 3.29029e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this aspect in mind in all ||| 1 0.605812 8.48644e-07 5.35949e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this aspect in mind in ||| 0.5 0.605812 8.48644e-07 1.13419e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this aspect in mind ||| 0.5 0.605812 8.48644e-07 5.29883e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this aspect in ||| 0.0333333 0.605812 8.48644e-07 2.10355e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| this at a ||| 0.0166667 0.321886 8.48644e-07 1.14568e-05 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| this at an ||| 0.2 0.321886 8.48644e-07 1.14882e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| this at the ||| 0.00854701 0.161526 8.48644e-07 7.40436e-07 2.718 ||| 0-1 0-2 ||| 117 1.17835e+06 +en ||| this at ||| 0.0924855 0.321886 2.71566e-05 0.000258469 2.718 ||| 0-1 ||| 346 1.17835e+06 +en ||| this available in ||| 1 0.605812 8.48644e-07 9.49132e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this back in ||| 0.2 0.605812 8.48644e-07 2.00687e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| this be ||| 0.00446429 0.0013296 8.48644e-07 8.64462e-06 2.718 ||| 0-0 ||| 224 1.17835e+06 +en ||| this becomes ||| 0.015625 0.162791 8.48644e-07 2.46244e-06 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| this been ||| 0.0454545 0.0013296 8.48644e-07 1.5928e-06 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| this being in ||| 0.2 0.605812 8.48644e-07 8.49116e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| this being what one might call ||| 1 0.0013296 8.48644e-07 6.76742e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this being what one might ||| 1 0.0013296 8.48644e-07 3.04839e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this being what one ||| 1 0.0013296 8.48644e-07 7.93851e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this being what ||| 1 0.0013296 8.48644e-07 1.90463e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this being ||| 0.0347072 0.0013296 1.35783e-05 1.35745e-06 2.718 ||| 0-0 ||| 461 1.17835e+06 +en ||| this by ||| 0.0141509 0.0468744 2.54593e-06 5.49678e-05 2.718 ||| 0-1 ||| 212 1.17835e+06 +en ||| this can be ||| 0.00230947 0.0013296 8.48644e-07 2.57117e-08 2.718 ||| 0-0 ||| 433 1.17835e+06 +en ||| this can ||| 0.00124688 0.0013296 8.48644e-07 1.41874e-06 2.718 ||| 0-0 ||| 802 1.17835e+06 +en ||| this category in ||| 0.166667 0.605812 8.48644e-07 5.04254e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| this chiefly ||| 0.166667 0.0013296 8.48644e-07 1.5264e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| this concept , in ||| 1 0.605812 8.48644e-07 2.11361e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this context to ||| 0.0294118 0.0247351 8.48644e-07 2.43733e-08 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| this could in ||| 1 0.605812 8.48644e-07 2.12175e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this country to ||| 0.025 0.0247351 8.48644e-07 6.53647e-08 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| this declaration in ||| 0.142857 0.605812 8.48644e-07 5.2514e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| this development on ||| 0.333333 0.22993 8.48644e-07 8.82722e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| this discussion where we start ||| 0.5 0.247783 8.48644e-07 7.49709e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this discussion where we ||| 0.5 0.247783 8.48644e-07 5.39747e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this discussion where ||| 0.5 0.247783 8.48644e-07 4.75452e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this done in the ||| 1 0.605812 8.48644e-07 8.35291e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this done in ||| 0.333333 0.605812 8.48644e-07 1.36059e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| this draft resolution ; in ||| 1 0.605812 8.48644e-07 4.21681e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| this during ||| 0.0517241 0.226251 2.54593e-06 1.86818e-05 2.718 ||| 0-1 ||| 58 1.17835e+06 +en ||| this effect in ||| 0.125 0.605812 1.69729e-06 9.9538e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| this explosion in ||| 1 0.605812 8.48644e-07 6.56426e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this fact into ||| 0.25 0.525896 8.48644e-07 4.19001e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| this factor in ||| 1 0.605812 8.48644e-07 1.4501e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this field - with ||| 0.5 0.0535436 8.48644e-07 4.15162e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| this fine ||| 0.0192308 0.0013296 8.48644e-07 1.54548e-08 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| this fish into low-value ||| 1 0.525896 8.48644e-07 1.89382e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this fish into ||| 0.333333 0.525896 8.48644e-07 4.73456e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| this for ||| 0.0142349 0.0286209 3.39458e-06 7.43397e-05 2.718 ||| 0-1 ||| 281 1.17835e+06 +en ||| this forthcoming free trade agreement with South ||| 1 0.0535436 8.48644e-07 1.34922e-25 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| this forthcoming free trade agreement with ||| 1 0.0535436 8.48644e-07 6.2464e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| this from ||| 0.0194805 0.0308834 2.54593e-06 2.45863e-05 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| this fundamental objective ||| 0.2 0.0013296 8.48644e-07 1.57323e-12 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| this fundamental ||| 0.0909091 0.0013296 8.48644e-07 2.35161e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| this great figure at ||| 1 0.321886 8.48644e-07 7.75042e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this growth in ||| 0.166667 0.605812 8.48644e-07 1.43817e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| this happening in ||| 0.0666667 0.605812 8.48644e-07 1.62018e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| this has already been touched upon , ||| 0.5 0.114601 8.48644e-07 4.28298e-20 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| this has already been touched upon ||| 0.5 0.114601 8.48644e-07 3.59145e-19 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| this has been the case in ||| 0.25 0.605812 1.69729e-06 3.36864e-12 2.718 ||| 0-5 ||| 8 1.17835e+06 +en ||| this has been ||| 0.00159109 0.0013296 1.69729e-06 8.19893e-09 2.718 ||| 0-0 ||| 1257 1.17835e+06 +en ||| this has on ||| 0.0357143 0.22993 8.48644e-07 2.76219e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| this has ||| 0.00138937 0.0013296 3.39458e-06 2.45536e-06 2.718 ||| 0-0 ||| 2879 1.17835e+06 +en ||| this himself during ||| 1 0.226251 8.48644e-07 1.38432e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this important report unassisted . on ||| 1 0.22993 8.48644e-07 1.02229e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| this in June , at ||| 1 0.321886 8.48644e-07 5.67397e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| this in a way ||| 0.2 0.605812 8.48644e-07 2.85094e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| this in a ||| 0.00934579 0.605812 8.48644e-07 0.000132257 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| this in mind in ||| 0.142857 0.605812 8.48644e-07 1.60878e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| this in principle , ||| 0.25 0.605812 8.48644e-07 5.45482e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| this in principle ||| 0.0909091 0.605812 8.48644e-07 4.57409e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| this in relation to ||| 0.0909091 0.605812 8.48644e-07 6.45063e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| this in relation ||| 0.166667 0.605812 8.48644e-07 7.25947e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| this in the ||| 0.00564972 0.605812 2.54593e-06 0.000183178 2.718 ||| 0-1 ||| 531 1.17835e+06 +en ||| this in to ||| 1 0.605812 8.48644e-07 0.000265131 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| this in ||| 0.114493 0.605812 0.000213858 0.00298375 2.718 ||| 0-1 ||| 2201 1.17835e+06 +en ||| this includes ||| 0.00575816 0.0013296 2.54593e-06 1.38807e-08 2.718 ||| 0-0 ||| 521 1.17835e+06 +en ||| this information in ||| 0.111111 0.605812 8.48644e-07 4.93811e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| this information ||| 0.00137363 0.0013296 8.48644e-07 7.89435e-08 2.718 ||| 0-0 ||| 728 1.17835e+06 +en ||| this instance . in ||| 1 0.605812 8.48644e-07 5.85649e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this into ||| 0.104545 0.525896 1.95188e-05 0.000143038 2.718 ||| 0-1 ||| 220 1.17835e+06 +en ||| this is , as ||| 0.0909091 0.066968 8.48644e-07 4.34407e-07 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| this is , in ||| 0.0365854 0.605812 2.54593e-06 1.1152e-05 2.718 ||| 0-3 ||| 82 1.17835e+06 +en ||| this is , ||| 0.00321543 0.0013296 1.69729e-06 1.78282e-06 2.718 ||| 0-0 ||| 622 1.17835e+06 +en ||| this is a new departure in ||| 1 0.605812 8.48644e-07 2.77482e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| this is a serious matter ||| 0.0526316 0.0013296 8.48644e-07 7.92008e-14 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| this is a serious ||| 0.0204082 0.0013296 8.48644e-07 7.63382e-11 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| this is a ||| 9.49668e-05 0.0013296 8.48644e-07 6.62658e-07 2.718 ||| 0-0 ||| 10530 1.17835e+06 +en ||| this is about ||| 0.00221729 0.0401564 8.48644e-07 5.80406e-07 2.718 ||| 0-2 ||| 451 1.17835e+06 +en ||| this is at ||| 0.015873 0.321886 8.48644e-07 8.1007e-06 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| this is because in ||| 0.0625 0.605812 8.48644e-07 3.07287e-08 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| this is borne out by the ||| 0.0666667 0.0468744 8.48644e-07 1.29636e-14 2.718 ||| 0-4 ||| 15 1.17835e+06 +en ||| this is borne out by ||| 0.0555556 0.0468744 8.48644e-07 2.11162e-13 2.718 ||| 0-4 ||| 18 1.17835e+06 +en ||| this is dealt with in ||| 0.333333 0.605812 8.48644e-07 6.26081e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| this is due to ||| 0.00862069 0.0247351 8.48644e-07 1.57331e-09 2.718 ||| 0-3 ||| 116 1.17835e+06 +en ||| this is even the case in ||| 0.5 0.605812 8.48644e-07 3.73759e-12 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| this is exceptionally true in ||| 1 0.605812 8.48644e-07 8.16041e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| this is happening on the ||| 0.2 0.22993 8.48644e-07 5.60638e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| this is happening on ||| 0.1 0.22993 8.48644e-07 9.13213e-10 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| this is having on ||| 0.0909091 0.22993 8.48644e-07 6.43958e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| this is in any event my own ||| 1 0.605812 8.48644e-07 1.60958e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this is in any event my ||| 1 0.605812 8.48644e-07 9.49435e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this is in any event ||| 0.5 0.605812 8.48644e-07 1.47634e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this is in any ||| 0.2 0.605812 8.48644e-07 1.41412e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| this is in the ||| 0.012987 0.605812 8.48644e-07 5.741e-06 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| this is in ||| 0.0293333 0.605812 9.33509e-06 9.35141e-05 2.718 ||| 0-2 ||| 375 1.17835e+06 +en ||| this is just by way ||| 1 0.0468744 8.48644e-07 4.6854e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this is just by ||| 0.5 0.0468744 8.48644e-07 2.17359e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| this is made ||| 0.0384615 0.0013296 8.48644e-07 3.13166e-08 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| this is not so in ||| 0.5 0.605812 8.48644e-07 7.24639e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| this is not the case . in ||| 1 0.605812 8.48644e-07 6.35194e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| this is not ||| 0.000327869 0.0013296 1.69729e-06 5.10398e-08 2.718 ||| 0-0 ||| 6100 1.17835e+06 +en ||| this is notably ||| 0.333333 0.236083 8.48644e-07 6.31013e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| this is of course ||| 0.0107527 0.0116562 8.48644e-07 3.4843e-09 2.718 ||| 0-2 ||| 93 1.17835e+06 +en ||| this is of ||| 0.00518135 0.0116562 8.48644e-07 2.76159e-06 2.718 ||| 0-2 ||| 193 1.17835e+06 +en ||| this is particularly relevant within the context ||| 0.5 0.183344 8.48644e-07 1.67637e-19 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this is particularly relevant within the ||| 0.5 0.183344 8.48644e-07 1.24916e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this is particularly relevant within ||| 0.5 0.183344 8.48644e-07 2.03473e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this is particularly relevant ||| 0.047619 0.183344 8.48644e-07 9.73089e-11 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| this is particularly ||| 0.00220264 0.183344 8.48644e-07 9.04357e-07 2.718 ||| 0-2 ||| 454 1.17835e+06 +en ||| this is partly ||| 0.0243902 0.294632 8.48644e-07 1.6715e-07 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| this is something ||| 0.000823723 0.0013296 8.48644e-07 8.27466e-09 2.718 ||| 0-0 ||| 1214 1.17835e+06 +en ||| this is the case in ||| 0.0238095 0.605812 8.48644e-07 6.14229e-09 2.718 ||| 0-4 ||| 42 1.17835e+06 +en ||| this is the ||| 0.000149925 0.0013296 8.48644e-07 9.17789e-07 2.718 ||| 0-0 ||| 6670 1.17835e+06 +en ||| this is what makes ||| 0.03125 0.0013296 8.48644e-07 3.56381e-12 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| this is what ||| 0.000649351 0.0013296 8.48644e-07 2.09759e-08 2.718 ||| 0-0 ||| 1540 1.17835e+06 +en ||| this is when ||| 0.05 0.142731 8.48644e-07 1.20559e-06 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| this is ||| 0.00114783 0.0013296 5.68592e-05 1.49497e-05 2.718 ||| 0-0 ||| 58371 1.17835e+06 +en ||| this issue , however , in ||| 1 0.605812 8.48644e-07 3.55727e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| this issue for having supported the ||| 1 0.0286209 8.48644e-07 6.85058e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this issue for having supported ||| 1 0.0286209 8.48644e-07 1.11588e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this issue for having ||| 1 0.0286209 8.48644e-07 2.15421e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this issue for ||| 0.0188679 0.0286209 8.48644e-07 5.62603e-08 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| this issue has on ||| 1 0.22993 8.48644e-07 2.09043e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this issue in ||| 0.00503778 0.605812 1.69729e-06 2.2581e-06 2.718 ||| 0-2 ||| 397 1.17835e+06 +en ||| this item on ||| 0.0227273 0.22993 8.48644e-07 2.02838e-08 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| this kind in ||| 0.0793651 0.605812 4.24322e-06 1.45607e-06 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| this matter in ||| 0.00490196 0.605812 8.48644e-07 3.09564e-06 2.718 ||| 0-2 ||| 204 1.17835e+06 +en ||| this matter ||| 0.000150466 0.0013296 8.48644e-07 4.94887e-07 2.718 ||| 0-0 ||| 6646 1.17835e+06 +en ||| this means ||| 0.000263922 0.0013296 8.48644e-07 3.02275e-07 2.718 ||| 0-0 ||| 3789 1.17835e+06 +en ||| this measure should ||| 0.0833333 0.0013296 8.48644e-07 1.58308e-10 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| this measure ||| 0.000924214 0.0013296 8.48644e-07 3.57273e-08 2.718 ||| 0-0 ||| 1082 1.17835e+06 +en ||| this might ||| 0.004 0.0013296 8.48644e-07 1.83168e-07 2.718 ||| 0-0 ||| 250 1.17835e+06 +en ||| this morning in ||| 0.00952381 0.605812 8.48644e-07 5.37075e-08 2.718 ||| 0-2 ||| 105 1.17835e+06 +en ||| this motion in ||| 0.25 0.605812 8.48644e-07 2.25572e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| this multiannual approach in ||| 1 0.605812 8.48644e-07 2.09292e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this must in ||| 0.5 0.605812 8.48644e-07 4.61169e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this must ||| 0.000892061 0.0013296 8.48644e-07 7.37251e-07 2.718 ||| 0-0 ||| 1121 1.17835e+06 +en ||| this myself in a ||| 0.5 0.605812 8.48644e-07 2.0566e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this myself in ||| 0.5 0.605812 8.48644e-07 4.63973e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this new Treaty across ||| 1 0.274879 8.48644e-07 6.79122e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this new version would ||| 1 0.0013296 8.48644e-07 6.20751e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this new version ||| 0.047619 0.0013296 8.48644e-07 1.05773e-11 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| this new ||| 0.000344234 0.0013296 8.48644e-07 2.85103e-07 2.718 ||| 0-0 ||| 2905 1.17835e+06 +en ||| this now in the ||| 1 0.605812 8.48644e-07 3.77328e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this now in ||| 0.5 0.605812 8.48644e-07 6.14623e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this now on ||| 0.5 0.22993 8.48644e-07 1.10536e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this on a ||| 0.0454545 0.22993 8.48644e-07 2.37856e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| this on the ||| 0.0277778 0.22993 1.69729e-06 3.29434e-05 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| this on ||| 0.0944625 0.22993 2.46107e-05 0.000536609 2.718 ||| 0-1 ||| 307 1.17835e+06 +en ||| this one ||| 0.00148588 0.0019317 8.48644e-07 7.75602e-08 2.718 ||| 0-0 0-1 ||| 673 1.17835e+06 +en ||| this only a year on ||| 1 0.22993 8.48644e-07 6.60306e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| this opinion in ||| 0.333333 0.605812 8.48644e-07 7.32213e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| this opinion into ||| 0.5 0.525896 8.48644e-07 3.51015e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this opportunity on ||| 0.333333 0.22993 8.48644e-07 9.65359e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| this opportunity ||| 0.000398565 0.0013296 8.48644e-07 8.58123e-08 2.718 ||| 0-0 ||| 2509 1.17835e+06 +en ||| this ourselves in ||| 0.333333 0.605812 8.48644e-07 9.49132e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| this out - is ||| 0.5 0.0013296 8.48644e-07 2.16003e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| this out - ||| 0.0714286 0.0013296 8.48644e-07 6.89201e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| this out at ||| 0.333333 0.321886 8.48644e-07 9.90039e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| this out in ||| 0.0769231 0.605812 8.48644e-07 1.1429e-05 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| this out ||| 0.00440529 0.0013296 8.48644e-07 1.8271e-06 2.718 ||| 0-0 ||| 227 1.17835e+06 +en ||| this outline in the ||| 0.5 0.605812 8.48644e-07 1.6486e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this outline in ||| 0.5 0.605812 8.48644e-07 2.68538e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this over a ||| 0.166667 0.157937 8.48644e-07 1.14769e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| this over the ||| 0.0384615 0.157937 8.48644e-07 1.58956e-06 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| this over ||| 0.105263 0.157937 3.39458e-06 2.58921e-05 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| this package in ||| 0.0769231 0.605812 8.48644e-07 1.41728e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| this part into ||| 1 0.525896 8.48644e-07 1.7053e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this picture when I listen to Mr ||| 1 0.142731 8.48644e-07 8.15079e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this picture when I listen to ||| 1 0.142731 8.48644e-07 1.24859e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this picture when I listen ||| 1 0.142731 8.48644e-07 1.40515e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this picture when I ||| 1 0.142731 8.48644e-07 9.30561e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this picture when ||| 1 0.142731 8.48644e-07 1.31556e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this point , to ||| 0.125 0.0247351 8.48644e-07 1.89472e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| this point I personally do , in ||| 1 0.605812 8.48644e-07 2.94236e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| this point in time ||| 0.00862069 0.605812 8.48644e-07 4.28514e-09 2.718 ||| 0-2 ||| 116 1.17835e+06 +en ||| this point in ||| 0.0253165 0.605812 3.39458e-06 2.61019e-06 2.718 ||| 0-2 ||| 158 1.17835e+06 +en ||| this policy ||| 0.000578369 0.0013296 8.48644e-07 1.87795e-07 2.718 ||| 0-0 ||| 1729 1.17835e+06 +en ||| this price in the ||| 1 0.605812 8.48644e-07 9.36039e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this price in ||| 1 0.605812 8.48644e-07 1.5247e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this problem in ||| 0.0120482 0.605812 8.48644e-07 6.71046e-07 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| this process have been provided in ||| 1 0.605812 8.48644e-07 1.16756e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| this process on ||| 0.0909091 0.22993 8.48644e-07 2.294e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| this progress ||| 0.00518135 0.0013296 8.48644e-07 6.28209e-08 2.718 ||| 0-0 ||| 193 1.17835e+06 +en ||| this proposal to ||| 0.00578035 0.0247351 8.48644e-07 3.62693e-08 2.718 ||| 0-2 ||| 173 1.17835e+06 +en ||| this question in ||| 0.0108696 0.605812 8.48644e-07 2.46846e-06 2.718 ||| 0-2 ||| 92 1.17835e+06 +en ||| this regard in ||| 0.0285714 0.605812 8.48644e-07 2.03164e-06 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| this regard it is , in the ||| 1 0.605812 8.48644e-07 8.29003e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| this regard it is , in ||| 1 0.605812 8.48644e-07 1.35035e-10 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| this relates in ||| 0.125 0.605812 8.48644e-07 8.38434e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| this report , he has consistently adopted ||| 1 0.0056615 8.48644e-07 6.03454e-22 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this report , he has consistently ||| 1 0.0056615 8.48644e-07 2.95811e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this report , he has ||| 0.5 0.0056615 8.48644e-07 2.22414e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| this report , he ||| 0.333333 0.0056615 8.48644e-07 4.32082e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| this report as one of the most ||| 1 0.0116562 8.48644e-07 4.076e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| this report as one of the ||| 1 0.0116562 8.48644e-07 9.43081e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| this report as one of ||| 1 0.0116562 8.48644e-07 1.53617e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| this report calls for greater investment in ||| 1 0.605812 8.48644e-07 1.09189e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| this report is on ||| 0.027027 0.22993 8.48644e-07 6.89366e-09 2.718 ||| 0-3 ||| 37 1.17835e+06 +en ||| this report ||| 4.20433e-05 0.0004293 8.48644e-07 1.93196e-07 2.718 ||| 0-1 ||| 23785 1.17835e+06 +en ||| this represents , in ||| 0.5 0.605812 8.48644e-07 1.32012e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| this respect in ||| 0.0416667 0.605812 8.48644e-07 1.29077e-06 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| this respect over ||| 1 0.157937 8.48644e-07 1.12009e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this respect we in ||| 1 0.605812 8.48644e-07 1.46532e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this role ||| 0.00398406 0.00068695 8.48644e-07 3.339e-10 2.718 ||| 0-0 0-1 ||| 251 1.17835e+06 +en ||| this runs ||| 0.0277778 0.0157317 8.48644e-07 8.7768e-09 2.718 ||| 0-0 0-1 ||| 36 1.17835e+06 +en ||| this salary paid out of ||| 1 0.0116562 8.48644e-07 2.13517e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| this sector in ||| 0.0123457 0.605812 8.48644e-07 5.54083e-07 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| this sector into ||| 0.666667 0.525896 1.69729e-06 2.65621e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| this security also particularly depends on ||| 1 0.22993 8.48644e-07 5.96576e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| this sense in ||| 1 0.605812 8.48644e-07 5.31406e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this should , first and ||| 1 0.0013296 8.48644e-07 1.69985e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this should , first ||| 1 0.0013296 8.48644e-07 1.35707e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this should , ||| 0.0555556 0.0013296 8.48644e-07 2.52055e-07 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| this should be enforced in ||| 1 0.605812 8.48644e-07 2.75543e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| this should be in ||| 0.5 0.605812 8.48644e-07 2.39603e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| this should ||| 0.000596303 0.0013296 8.48644e-07 2.11359e-06 2.718 ||| 0-0 ||| 1677 1.17835e+06 +en ||| this situation in ||| 0.0142857 0.605812 8.48644e-07 1.53663e-06 2.718 ||| 0-2 ||| 70 1.17835e+06 +en ||| this situation ||| 0.000264131 0.0013296 8.48644e-07 2.45655e-07 2.718 ||| 0-0 ||| 3786 1.17835e+06 +en ||| this speech to dwell on ||| 0.5 0.22993 8.48644e-07 5.36424e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| this spirit in ||| 0.125 0.605812 8.48644e-07 1.75146e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| this stage within ||| 1 0.369196 8.48644e-07 1.07238e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this subject in ||| 0.00952381 0.605812 8.48644e-07 1.61063e-06 2.718 ||| 0-2 ||| 105 1.17835e+06 +en ||| this subject is dealt with in ||| 1 0.605812 8.48644e-07 3.37958e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| this success . in ||| 1 0.605812 8.48644e-07 5.36844e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this system of minimum ||| 1 0.0013296 8.48644e-07 2.03229e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this system of ||| 0.0117647 0.0013296 8.48644e-07 7.23233e-09 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| this system ||| 0.000878735 0.0013296 8.48644e-07 1.33035e-07 2.718 ||| 0-0 ||| 1138 1.17835e+06 +en ||| this taking place in ||| 1 0.605812 8.48644e-07 1.90848e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this through in ||| 0.166667 0.605812 8.48644e-07 1.37342e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| this through ||| 0.023622 0.0366102 2.54593e-06 6.0763e-06 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| this time on ||| 0.047619 0.22993 8.48644e-07 8.80951e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| this time schedule on ||| 1 0.22993 8.48644e-07 3.17142e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this time ||| 0.000342114 0.0013296 8.48644e-07 7.83091e-07 2.718 ||| 0-0 ||| 2923 1.17835e+06 +en ||| this to be a fallacious viewpoint ||| 1 0.0130323 8.48644e-07 4.04972e-20 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| this to be a fallacious ||| 1 0.0130323 8.48644e-07 4.30821e-15 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| this to be a ||| 0.00925926 0.0130323 8.48644e-07 1.07705e-08 2.718 ||| 0-0 0-1 ||| 108 1.17835e+06 +en ||| this to be ||| 0.00194175 0.0130323 8.48644e-07 2.42986e-07 2.718 ||| 0-0 0-1 ||| 515 1.17835e+06 +en ||| this to have on ||| 0.333333 0.22993 8.48644e-07 5.70268e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| this to ||| 0.00547945 0.0247351 6.78915e-06 0.000181619 2.718 ||| 0-1 ||| 1460 1.17835e+06 +en ||| this training within ||| 1 0.369196 8.48644e-07 2.52874e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this transparency into ||| 1 0.525896 8.48644e-07 1.95962e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this type of ||| 0.00054615 0.0116562 8.48644e-07 1.03094e-08 2.718 ||| 0-2 ||| 1831 1.17835e+06 +en ||| this under ||| 0.0740741 0.205566 1.69729e-06 3.65366e-05 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| this very city of ||| 0.333333 0.0116562 8.48644e-07 6.28516e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| this very ||| 0.00083612 0.0013296 8.48644e-07 1.65972e-06 2.718 ||| 0-0 ||| 1196 1.17835e+06 +en ||| this vision in ||| 1 0.605812 8.48644e-07 3.64018e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| this war in ||| 0.142857 0.605812 8.48644e-07 1.10697e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| this was at ||| 0.125 0.321886 8.48644e-07 8.09783e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| this was in ||| 0.0277778 0.605812 8.48644e-07 9.3481e-06 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| this was mainly because , in ||| 1 0.605812 8.48644e-07 1.7144e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| this was reduced ||| 0.5 0.0013296 8.48644e-07 6.99398e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| this was revealed in ||| 1 0.605812 8.48644e-07 1.34613e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| this was to ||| 0.030303 0.0130323 8.48644e-07 4.20062e-08 2.718 ||| 0-0 0-2 ||| 33 1.17835e+06 +en ||| this was ||| 0.00076297 0.0013296 2.54593e-06 1.49444e-06 2.718 ||| 0-0 ||| 3932 1.17835e+06 +en ||| this way in ||| 0.0322581 0.605812 8.48644e-07 6.43178e-06 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| this when , ||| 0.5 0.142731 8.48644e-07 4.58733e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| this when ||| 0.0201342 0.142731 2.54593e-06 3.84667e-05 2.718 ||| 0-1 ||| 149 1.17835e+06 +en ||| this whole question of who is ||| 1 0.0013296 8.48644e-07 3.35476e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this whole question of who ||| 1 0.0013296 8.48644e-07 1.0704e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| this whole question of ||| 0.0909091 0.0013296 8.48644e-07 1.21361e-11 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| this whole question ||| 0.0357143 0.0013296 8.48644e-07 2.23238e-10 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| this whole ||| 0.00167224 0.0013296 8.48644e-07 2.69839e-07 2.718 ||| 0-0 ||| 598 1.17835e+06 +en ||| this will , in ||| 0.0555556 0.605812 8.48644e-07 3.07833e-06 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| this will happen in ||| 0.0769231 0.605812 8.48644e-07 2.80588e-09 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| this will have in ||| 0.333333 0.605812 8.48644e-07 3.08719e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| this will have ||| 0.00495049 0.0013296 8.48644e-07 4.93536e-08 2.718 ||| 0-0 ||| 202 1.17835e+06 +en ||| this will in ||| 0.047619 0.605812 8.48644e-07 2.5813e-05 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| this will mean , in ||| 0.5 0.605812 8.48644e-07 7.93285e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| this will provide you with a ||| 1 0.0535436 8.48644e-07 2.75894e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| this will provide you with ||| 0.5 0.0535436 8.48644e-07 6.22424e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| this will ||| 0.00109729 0.0013296 2.54593e-06 4.12662e-06 2.718 ||| 0-0 ||| 2734 1.17835e+06 +en ||| this with ||| 0.0172745 0.0535436 7.6378e-06 7.53328e-05 2.718 ||| 0-1 ||| 521 1.17835e+06 +en ||| this within ||| 0.115385 0.369196 7.6378e-06 7.16356e-05 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| this word in ||| 0.5 0.605812 8.48644e-07 3.03746e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| this work in ||| 0.0357143 0.605812 8.48644e-07 1.88872e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| this work must be ||| 0.25 0.0013296 8.48644e-07 8.4576e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| this work must ||| 0.0666667 0.0013296 8.48644e-07 4.6668e-10 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| this work ||| 0.000834028 0.0013296 8.48644e-07 3.01941e-07 2.718 ||| 0-0 ||| 1199 1.17835e+06 +en ||| this would be a step in ||| 0.25 0.605812 8.48644e-07 2.07482e-12 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| this would in ||| 0.0714286 0.605812 8.48644e-07 1.75107e-05 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| this would ||| 0.000630915 0.0013296 8.48644e-07 2.79937e-06 2.718 ||| 0-0 ||| 1585 1.17835e+06 +en ||| this year in ||| 0.00934579 0.605812 8.48644e-07 7.44148e-07 2.718 ||| 0-2 ||| 107 1.17835e+06 +en ||| this year ||| 0.000127779 0.00068045 8.48644e-07 3.339e-10 2.718 ||| 0-0 0-1 ||| 7826 1.17835e+06 +en ||| this ||| 0.000785648 0.0013296 0.000342852 0.000477 2.718 ||| 0-0 ||| 514225 1.17835e+06 +en ||| thorough as ||| 0.2 0.066968 8.48644e-07 3.16587e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| thorough in ||| 0.0714286 0.605812 8.48644e-07 8.12735e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| thoroughgoing revision of ||| 1 0.0116562 8.48644e-07 1.72508e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| those actions at ||| 0.5 0.321886 8.48644e-07 2.02179e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| those areas where ||| 0.00757576 0.247783 8.48644e-07 1.4116e-09 2.718 ||| 0-2 ||| 132 1.17835e+06 +en ||| those at ||| 0.038835 0.321886 3.39458e-06 2.89654e-05 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| those carried out in ||| 0.1 0.605812 8.48644e-07 3.7745e-10 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| those caught up in ||| 0.5 0.605812 8.48644e-07 3.15888e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| those concerning economic ||| 1 0.0002321 8.48644e-07 7.08695e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| those concerning ||| 0.0121951 0.0002321 1.69729e-06 5.8425e-10 2.718 ||| 0-0 ||| 164 1.17835e+06 +en ||| those for ||| 0.00381679 0.0286209 8.48644e-07 8.33092e-06 2.718 ||| 0-1 ||| 262 1.17835e+06 +en ||| those from ||| 0.00704225 0.0308834 1.69729e-06 2.75527e-06 2.718 ||| 0-1 ||| 284 1.17835e+06 +en ||| those in ||| 0.0412574 0.605812 5.34646e-05 0.000334376 2.718 ||| 0-1 ||| 1527 1.17835e+06 +en ||| those laid down in the ||| 0.05 0.605812 8.48644e-07 1.56203e-12 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| those laid down in ||| 0.0333333 0.605812 8.48644e-07 2.54436e-11 2.718 ||| 0-3 ||| 30 1.17835e+06 +en ||| those lines at ||| 0.333333 0.321886 8.48644e-07 2.63586e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| those living in ||| 0.0168067 0.605812 1.69729e-06 2.80207e-08 2.718 ||| 0-2 ||| 119 1.17835e+06 +en ||| those measures in ||| 0.25 0.605812 8.48644e-07 6.91823e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| those minorities in ||| 0.5 0.605812 8.48644e-07 4.21313e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| those of a ||| 0.0166667 0.0116562 8.48644e-07 4.37697e-07 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| those of the ||| 0.00102987 0.0116562 8.48644e-07 6.06217e-07 2.718 ||| 0-1 ||| 971 1.17835e+06 +en ||| those of us here in ||| 0.2 0.605812 8.48644e-07 1.06242e-10 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| those of us in ||| 0.150943 0.605812 6.78915e-06 5.23926e-08 2.718 ||| 0-3 ||| 53 1.17835e+06 +en ||| those of us within ||| 1 0.369196 8.48644e-07 1.25787e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| those of ||| 0.00397614 0.0116562 1.01837e-05 9.87455e-06 2.718 ||| 0-1 ||| 3018 1.17835e+06 +en ||| those on ||| 0.0208877 0.22993 6.78915e-06 6.01353e-05 2.718 ||| 0-1 ||| 383 1.17835e+06 +en ||| those paid in ||| 0.333333 0.605812 8.48644e-07 4.5007e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| those persons are in ||| 1 0.605812 8.48644e-07 2.61279e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| those present in ||| 0.133333 0.605812 1.69729e-06 1.22382e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| those related to ||| 0.0151515 0.0247351 8.48644e-07 1.33314e-09 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| those relating to ||| 0.00373134 0.0325028 8.48644e-07 1.38786e-08 2.718 ||| 0-1 ||| 268 1.17835e+06 +en ||| those relating ||| 0.00938967 0.0325028 1.69729e-06 1.56188e-07 2.718 ||| 0-1 ||| 213 1.17835e+06 +en ||| those relations in the ||| 1 0.605812 8.48644e-07 1.11467e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| those relations in ||| 1 0.605812 8.48644e-07 1.81566e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| those set at ||| 1 0.321886 8.48644e-07 1.69274e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| those sitting on ||| 1 0.22993 8.48644e-07 4.17941e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| those six groups account ||| 0.333333 0.233636 8.48644e-07 2.74136e-15 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| those taken at ||| 0.333333 0.321886 8.48644e-07 2.6402e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| those taken on ||| 1 0.22993 8.48644e-07 5.48134e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| those taking ||| 0.037037 0.0153333 8.48644e-07 1.2469e-07 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| those that ||| 0.000744602 0.0017499 8.48644e-07 7.56829e-07 2.718 ||| 0-1 ||| 1343 1.17835e+06 +en ||| those three parts of ||| 0.5 0.0116562 8.48644e-07 3.64409e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| those to be put in ||| 1 0.605812 8.48644e-07 5.93715e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| those to ||| 0.0166667 0.0247351 1.69729e-06 2.03532e-05 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| those under ||| 0.0181818 0.205566 8.48644e-07 4.0945e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| those we face ||| 0.5 0.0054082 8.48644e-07 2.74253e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| those we saw ||| 0.25 0.0054082 8.48644e-07 8.78659e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| those we ||| 0.011976 0.0054082 1.69729e-06 1.63929e-06 2.718 ||| 0-1 ||| 167 1.17835e+06 +en ||| those which apply in ||| 0.4 0.605812 1.69729e-06 4.08732e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| those who actually ||| 0.0555556 0.125341 8.48644e-07 8.57843e-10 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| those who have participated in ||| 0.0714286 0.605812 8.48644e-07 1.26978e-14 2.718 ||| 0-4 ||| 14 1.17835e+06 +en ||| those who took part in ||| 0.0285714 0.605812 8.48644e-07 5.18614e-14 2.718 ||| 0-4 ||| 35 1.17835e+06 +en ||| those with ||| 0.00353982 0.0535436 1.69729e-06 8.44221e-06 2.718 ||| 0-1 ||| 565 1.17835e+06 +en ||| those ||| 0.000188874 0.0002321 9.33509e-06 9.5e-06 2.718 ||| 0-0 ||| 58240 1.17835e+06 +en ||| though , in ||| 0.142857 0.605812 2.54593e-06 1.36738e-05 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| though , on ||| 0.0909091 0.22993 8.48644e-07 2.45914e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| though about ||| 0.333333 0.0401564 8.48644e-07 7.11653e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| though as recently as Monday they announced ||| 1 0.066968 8.48644e-07 4.65128e-25 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| though as recently as Monday they ||| 1 0.066968 8.48644e-07 2.22549e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| though as recently as Monday ||| 1 0.066968 8.48644e-07 6.8183e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| though as recently as ||| 1 0.066968 8.48644e-07 3.09923e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| though in ||| 0.025641 0.605812 8.48644e-07 0.00011466 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| though some Member States in ||| 1 0.605812 8.48644e-07 3.07129e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| though ||| 0.000135153 8.04e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 7399 1.17835e+06 +en ||| thought I would get a mention into ||| 0.333333 0.525896 8.48644e-07 1.43848e-19 2.718 ||| 0-6 ||| 3 1.17835e+06 +en ||| thought for ||| 0.016129 0.0286209 8.48644e-07 9.56082e-07 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| thought into ||| 0.25 0.525896 8.48644e-07 1.83961e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| thought regarding ||| 0.333333 0.140669 8.48644e-07 1.57308e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| thought to be up to ||| 1 0.0247351 8.48644e-07 1.28286e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| thought to the ||| 0.0434783 0.0247351 8.48644e-07 1.43399e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| thought to ||| 0.0113636 0.0247351 1.69729e-06 2.3358e-06 2.718 ||| 0-1 ||| 176 1.17835e+06 +en ||| thoughts are with ||| 0.037037 0.0535436 8.48644e-07 1.7159e-09 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| thoughts of ||| 0.025641 0.0116562 8.48644e-07 1.32279e-07 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| thoughts turned to ||| 0.333333 0.0247351 8.48644e-07 1.52957e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| thread running through ||| 0.0833333 0.0366102 8.48644e-07 2.29608e-13 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| threat by dispersion in ||| 0.5 0.605812 8.48644e-07 3.80145e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| threat to ||| 0.000682594 0.0247351 8.48644e-07 1.10185e-06 2.718 ||| 0-1 ||| 1465 1.17835e+06 +en ||| threaten to ||| 0.00990099 0.0634648 8.48644e-07 4.47845e-06 2.718 ||| 0-0 ||| 101 1.17835e+06 +en ||| threaten ||| 0.00114548 0.0634648 8.48644e-07 5.04e-05 2.718 ||| 0-0 ||| 873 1.17835e+06 +en ||| threatened from ||| 0.5 0.0308834 8.48644e-07 3.00603e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| threatened has been disputed by nobody here ||| 1 0.0468744 8.48644e-07 6.44646e-26 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| threatened has been disputed by nobody ||| 1 0.0468744 8.48644e-07 3.17904e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| threatened has been disputed by ||| 1 0.0468744 8.48644e-07 3.69656e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| threatened in ||| 0.0333333 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| threatened ||| 0.000660939 0.0052049 8.48644e-07 5.4e-06 2.718 ||| 0-0 ||| 1513 1.17835e+06 +en ||| threatening to take over ||| 1 0.157937 8.48644e-07 3.32501e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| three particular issues are worth stressing ||| 1 0.152 8.48644e-07 6.94277e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| three parts of ||| 0.111111 0.0116562 8.48644e-07 5.03258e-11 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| three times ||| 0.00238095 0.0026686 8.48644e-07 9.495e-10 2.718 ||| 0-1 ||| 420 1.17835e+06 +en ||| three years in ||| 0.0212766 0.605812 8.48644e-07 4.97507e-09 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| threshold in ||| 0.25 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| threw out at ||| 0.5 0.321886 8.48644e-07 2.75803e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| throat in ||| 1 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| through , as the case may be ||| 1 0.066968 8.48644e-07 8.80594e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| through , as the case may ||| 1 0.066968 8.48644e-07 4.85902e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| through , as the case ||| 1 0.066968 8.48644e-07 6.48561e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| through , as the ||| 1 0.066968 8.48644e-07 6.06188e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| through , as ||| 0.25 0.066968 8.48644e-07 9.87409e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| through , in ||| 0.25 0.605812 8.48644e-07 2.53485e-05 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| through , ||| 0.00546448 0.0366102 8.48644e-07 0.000112147 2.718 ||| 0-0 ||| 183 1.17835e+06 +en ||| through a process of ||| 0.0454545 0.0366102 8.48644e-07 9.68761e-10 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| through a process ||| 0.0384615 0.0366102 8.48644e-07 1.78199e-08 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| through a ||| 0.00534759 0.0366102 6.78915e-06 4.1684e-05 2.718 ||| 0-0 ||| 1496 1.17835e+06 +en ||| through all ||| 0.00943396 0.0366102 8.48644e-07 4.44377e-06 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| through an ||| 0.0058309 0.0366102 1.69729e-06 4.1798e-06 2.718 ||| 0-0 ||| 343 1.17835e+06 +en ||| through at ||| 0.227273 0.321886 4.24322e-06 1.84129e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| through by ||| 0.0625 0.0468744 8.48644e-07 3.91582e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| through changes ||| 0.0714286 0.0366102 8.48644e-07 4.80544e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| through contact on ||| 1 0.22993 8.48644e-07 7.30139e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| through debate ||| 0.333333 0.0366102 8.48644e-07 1.86105e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| through direct ||| 0.2 0.0366102 1.69729e-06 4.63617e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| through either ||| 0.2 0.0366102 8.48644e-07 8.14198e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| through health ||| 0.5 0.0366102 8.48644e-07 7.81472e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| through him for ||| 1 0.0286209 8.48644e-07 1.69785e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| through in ||| 0.263736 0.605812 2.03675e-05 0.000212558 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| through institutional channels , ||| 0.25 0.0366102 8.48644e-07 1.14771e-14 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| through institutional channels ||| 0.25 0.0366102 8.48644e-07 9.62405e-14 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| through institutional ||| 0.25 0.0366102 8.48644e-07 1.11908e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| through into ||| 0.166667 0.525896 8.48644e-07 1.01898e-05 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| through investment ||| 0.0212766 0.0366102 8.48644e-07 2.30398e-08 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| through it ||| 0.04 0.0366102 1.69729e-06 1.67233e-05 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| through its implementation ||| 0.5 0.0366102 8.48644e-07 1.04102e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| through its ||| 0.00146843 0.0366102 8.48644e-07 1.33979e-06 2.718 ||| 0-0 ||| 681 1.17835e+06 +en ||| through on ||| 0.111111 0.22993 2.54593e-06 3.82272e-05 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| through over ||| 0.333333 0.157937 8.48644e-07 1.84451e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| through pursuit of ||| 1 0.0241332 8.48644e-07 3.18041e-10 2.718 ||| 0-0 0-2 ||| 1 1.17835e+06 +en ||| through the occasionally accurate ||| 0.25 0.178626 8.48644e-07 2.33936e-14 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| through the occasionally ||| 0.25 0.178626 8.48644e-07 2.24939e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| through the ||| 0.00213643 0.0366102 1.1881e-05 5.77328e-05 2.718 ||| 0-0 ||| 6553 1.17835e+06 +en ||| through these ||| 0.00645161 0.0366102 8.48644e-07 9.75289e-07 2.718 ||| 0-0 ||| 155 1.17835e+06 +en ||| through this ourselves in ||| 1 0.605812 8.48644e-07 4.36885e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| through this ||| 0.00125471 0.0366102 8.48644e-07 6.0763e-06 2.718 ||| 0-0 ||| 797 1.17835e+06 +en ||| through to the ||| 0.00990099 0.0366102 8.48644e-07 5.13004e-06 2.718 ||| 0-0 ||| 101 1.17835e+06 +en ||| through to ||| 0.00826446 0.0366102 1.69729e-06 8.35623e-05 2.718 ||| 0-0 ||| 242 1.17835e+06 +en ||| through under ||| 0.5 0.121088 8.48644e-07 5.31759e-06 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| through which ||| 0.00271003 0.0366102 8.48644e-07 7.98832e-06 2.718 ||| 0-0 ||| 369 1.17835e+06 +en ||| through with ||| 0.030303 0.0535436 8.48644e-07 5.36659e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| through ||| 0.0297373 0.0366102 0.000823185 0.0009404 2.718 ||| 0-0 ||| 32619 1.17835e+06 +en ||| throughout Europe ||| 0.000627746 0.309047 8.48644e-07 1.4678e-06 2.718 ||| 0-0 ||| 1593 1.17835e+06 +en ||| throughout both ||| 1 0.309047 8.48644e-07 4.80518e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| throughout most ||| 0.111111 0.309047 8.48644e-07 1.25373e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| throughout that ||| 0.0344828 0.309047 8.48644e-07 4.87961e-05 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| throughout the supply ||| 1 0.309047 8.48644e-07 9.17139e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| throughout the whole of ||| 0.0108696 0.309047 8.48644e-07 5.47679e-09 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| throughout the whole process of ||| 1 0.309047 8.48644e-07 2.34133e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| throughout the whole process ||| 0.0625 0.309047 8.48644e-07 4.30676e-11 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| throughout the whole ||| 0.00921659 0.309047 1.69729e-06 1.00743e-07 2.718 ||| 0-0 ||| 217 1.17835e+06 +en ||| throughout the world , including ||| 0.0833333 0.309047 8.48644e-07 5.05077e-13 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| throughout the world , ||| 0.00373134 0.309047 8.48644e-07 4.83791e-09 2.718 ||| 0-0 ||| 268 1.17835e+06 +en ||| throughout the world ||| 0.00077101 0.309047 8.48644e-07 4.05678e-08 2.718 ||| 0-0 ||| 1297 1.17835e+06 +en ||| throughout the ||| 0.00315706 0.309047 1.35783e-05 0.000178085 2.718 ||| 0-0 ||| 5068 1.17835e+06 +en ||| throughout ||| 0.0793668 0.309047 0.000612721 0.0029008 2.718 ||| 0-0 ||| 9097 1.17835e+06 +en ||| throw something into the ring related ||| 0.5 0.525896 8.48644e-07 5.6662e-21 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| throw something into the ring ||| 0.5 0.525896 8.48644e-07 8.65068e-17 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| throw something into the ||| 0.5 0.525896 8.48644e-07 1.73014e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| throw something into ||| 0.5 0.525896 8.48644e-07 2.81819e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| throwing all our energies into ||| 1 0.525896 8.48644e-07 1.05971e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| throwing into ||| 0.25 0.525896 8.48644e-07 2.39083e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| throwing the baby out with ||| 0.0625 0.0535436 8.48644e-07 2.78332e-16 2.718 ||| 0-4 ||| 16 1.17835e+06 +en ||| thrown away in ||| 0.5 0.605812 8.48644e-07 4.06892e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| thrown in ||| 0.153846 0.605812 1.69729e-06 1.27913e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| thrown into ||| 0.109589 0.525896 6.78915e-06 6.13203e-07 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| thrown onto ||| 0.2 0.233333 8.48644e-07 5.54277e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| thrown out into ||| 0.5 0.525896 8.48644e-07 2.34881e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| thrown out ||| 0.0105263 0.0120599 8.48644e-07 1.52488e-08 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| thrown straight into ||| 0.2 0.525896 8.48644e-07 2.29338e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| thus , for ||| 0.0181818 0.0286209 8.48644e-07 2.33523e-07 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| thus , in ||| 0.0581395 0.605812 4.24322e-06 9.37284e-06 2.718 ||| 0-2 ||| 86 1.17835e+06 +en ||| thus , on ||| 0.0909091 0.22993 8.48644e-07 1.68565e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| thus , with ||| 0.047619 0.0535436 8.48644e-07 2.36642e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| thus become ||| 0.0263158 0.219193 8.48644e-07 6.5076e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| thus confusing ||| 0.2 0.0107888 8.48644e-07 3.6575e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| thus enables ||| 0.142857 0.0107888 8.48644e-07 2.53099e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| thus enabling her to ||| 0.5 0.0247351 8.48644e-07 4.39987e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| thus far in ||| 0.111111 0.605812 8.48644e-07 5.36569e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| thus focused on the man instead of ||| 1 0.22993 8.48644e-07 1.35299e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| thus focused on the man instead ||| 1 0.22993 8.48644e-07 2.48875e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| thus focused on the man ||| 1 0.22993 8.48644e-07 1.23267e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| thus focused on the ||| 1 0.22993 8.48644e-07 1.93511e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| thus focused on ||| 1 0.22993 8.48644e-07 3.15207e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| thus following in ||| 1 0.605812 8.48644e-07 1.00445e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| thus for the protection of ||| 1 0.0116562 8.48644e-07 1.11157e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| thus going to ||| 0.2 0.0247351 8.48644e-07 4.09418e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| thus having ||| 0.333333 0.0065553 8.48644e-07 1.30884e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| thus in ||| 0.0322581 0.605812 1.69729e-06 7.85951e-05 2.718 ||| 0-1 ||| 62 1.17835e+06 +en ||| thus running ||| 0.333333 0.0215021 8.48644e-07 7.27111e-09 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| thus somewhat ||| 0.333333 0.0107888 8.48644e-07 8.52929e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| thus within ||| 0.25 0.369196 8.48644e-07 1.88696e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| thus ||| 0.00187551 0.0107888 1.35783e-05 0.0001463 2.718 ||| 0-0 ||| 8531 1.17835e+06 +en ||| ticking away in ||| 0.5 0.605812 8.48644e-07 5.8757e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| tide in ||| 0.333333 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| tied by a ||| 0.333333 0.0468744 8.48644e-07 4.33647e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| tied by ||| 0.333333 0.0468744 8.48644e-07 9.78316e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| tied down in ||| 0.5 0.605812 8.48644e-07 3.70725e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| tied together in ||| 1 0.605812 8.48644e-07 3.18948e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| tied up in ||| 0.08 0.605812 1.69729e-06 1.81114e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| tied up with difficulties arising from ||| 1 0.0308834 8.48644e-07 5.69292e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| ties in neatly ||| 0.125 0.605812 8.48644e-07 8.70457e-12 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| ties in ||| 0.0384615 0.605812 1.69729e-06 3.00158e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| tight ship in ||| 0.166667 0.605812 8.48644e-07 6.55452e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| tight spot in ||| 0.5 0.605812 8.48644e-07 5.94682e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| tighter while they are in ||| 1 0.605812 8.48644e-07 2.8987e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| time , in ||| 0.031746 0.605812 5.09187e-06 9.04077e-05 2.718 ||| 0-2 ||| 189 1.17835e+06 +en ||| time , these direct ||| 1 0.0014765 8.48644e-07 1.01153e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| time , these ||| 0.025 0.0014765 8.48644e-07 2.05178e-08 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| time - just over ||| 1 0.157937 8.48644e-07 3.13094e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| time I have spoken in ||| 0.166667 0.605812 8.48644e-07 1.43019e-12 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| time and again to ||| 0.333333 0.0247351 8.48644e-07 3.34265e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| time and ||| 0.0013947 0.0007767 2.54593e-06 4.52185e-07 2.718 ||| 0-0 ||| 2151 1.17835e+06 +en ||| time as ||| 0.00725689 0.066968 4.24322e-06 2.95307e-05 2.718 ||| 0-1 ||| 689 1.17835e+06 +en ||| time at ||| 0.0457516 0.321886 5.94051e-06 6.56713e-05 2.718 ||| 0-1 ||| 153 1.17835e+06 +en ||| time before taking action against ||| 0.25 0.153982 8.48644e-07 3.059e-16 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| time being , in ||| 0.142857 0.605812 8.48644e-07 2.57282e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| time being at ||| 0.4 0.321886 1.69729e-06 1.86887e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| time being in the ||| 1 0.605812 8.48644e-07 1.32448e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| time being in ||| 0.25 0.605812 8.48644e-07 2.15742e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| time bringing ||| 0.25 0.0007767 8.48644e-07 2.89883e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| time by ||| 0.0136986 0.0468744 1.69729e-06 1.39661e-05 2.718 ||| 0-1 ||| 146 1.17835e+06 +en ||| time coming in ||| 1 0.605812 8.48644e-07 1.473e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| time during ||| 0.0666667 0.226251 4.24322e-06 4.74665e-06 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| time for ||| 0.0016632 0.0286209 3.39458e-06 1.88881e-05 2.718 ||| 0-1 ||| 2405 1.17835e+06 +en ||| time in a ||| 0.0227273 0.605812 8.48644e-07 3.36037e-05 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| time in face ||| 0.5 0.605812 8.48644e-07 1.26831e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| time in the future ||| 0.0212766 0.605812 8.48644e-07 1.23614e-08 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| time in the ||| 0.00325733 0.605812 8.48644e-07 4.65415e-05 2.718 ||| 0-1 ||| 307 1.17835e+06 +en ||| time in ||| 0.0485044 0.605812 5.09187e-05 0.000758106 2.718 ||| 0-1 ||| 1237 1.17835e+06 +en ||| time into ||| 0.142857 0.525896 8.48644e-07 3.63428e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| time is needed to ||| 0.333333 0.0247351 8.48644e-07 1.93653e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| time it takes to obtain ||| 1 0.0117268 8.48644e-07 8.48154e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| time it takes to ||| 0.0666667 0.0117268 8.48644e-07 1.41124e-10 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| time it takes ||| 0.0384615 0.0117268 8.48644e-07 1.58819e-09 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| time key in ||| 0.333333 0.605812 8.48644e-07 5.51143e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| time left to ||| 0.0714286 0.0247351 8.48644e-07 8.71687e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| time limit to ||| 0.0909091 0.0247351 8.48644e-07 2.24267e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| time machine , turning ||| 1 0.062605 8.48644e-07 1.15142e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| time nor ||| 0.0238095 0.0049763 8.48644e-07 4.81018e-08 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| time of it in ||| 1 0.605812 8.48644e-07 7.32911e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| time of ||| 0.00342969 0.0116562 5.94051e-06 2.23879e-05 2.718 ||| 0-1 ||| 2041 1.17835e+06 +en ||| time on ||| 0.0218182 0.22993 5.09187e-06 0.000136341 2.718 ||| 0-1 ||| 275 1.17835e+06 +en ||| time over ||| 0.0625 0.157937 8.48644e-07 6.57862e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| time participating in ||| 0.5 0.605812 8.48644e-07 8.71822e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| time scale indicated in ||| 0.25 0.605812 8.48644e-07 1.04132e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| time schedule on ||| 1 0.22993 8.48644e-07 4.90826e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| time soon may ||| 1 0.0178344 8.48644e-07 1.40585e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| time soon ||| 0.0588235 0.0178344 8.48644e-07 1.87646e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| time taken ||| 0.0140845 0.0042106 8.48644e-07 1.46275e-07 2.718 ||| 0-1 ||| 71 1.17835e+06 +en ||| time than the first half ||| 1 0.138055 8.48644e-07 5.41981e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| time than the first ||| 1 0.138055 8.48644e-07 1.88188e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| time the differences inside ||| 1 0.188717 8.48644e-07 4.50929e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| time to give me a ||| 1 0.0247351 8.48644e-07 7.46322e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| time to give me ||| 1 0.0247351 8.48644e-07 1.68372e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| time to give ||| 0.0285714 0.0247351 8.48644e-07 2.79641e-08 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| time to reply , ||| 0.5 0.0247351 8.48644e-07 1.58488e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| time to reply ||| 0.166667 0.0247351 8.48644e-07 1.32899e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| time to ||| 0.00324826 0.0247351 1.1881e-05 4.61454e-05 2.718 ||| 0-1 ||| 4310 1.17835e+06 +en ||| time when ||| 0.0021797 0.142731 7.6378e-06 9.77353e-06 2.718 ||| 0-1 ||| 4129 1.17835e+06 +en ||| time which we experience during ||| 0.25 0.226251 8.48644e-07 3.16295e-14 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| time with a view ||| 0.142857 0.0535436 8.48644e-07 7.66373e-10 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| time with a ||| 0.047619 0.0535436 8.48644e-07 8.48414e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| time with ||| 0.00680272 0.0535436 8.48644e-07 1.91404e-05 2.718 ||| 0-1 ||| 147 1.17835e+06 +en ||| time within ||| 0.0238095 0.369196 8.48644e-07 1.8201e-05 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| time ||| 0.000311255 0.0007767 1.69729e-05 3.61e-05 2.718 ||| 0-0 ||| 64256 1.17835e+06 +en ||| times as ||| 0.0136986 0.066968 8.48644e-07 1.82577e-06 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| times in ||| 0.0268456 0.605812 6.78915e-06 4.68708e-05 2.718 ||| 0-1 ||| 298 1.17835e+06 +en ||| times over for ||| 0.5 0.093279 8.48644e-07 4.67952e-09 2.718 ||| 0-1 0-2 ||| 2 1.17835e+06 +en ||| times over in ||| 0.2 0.605812 8.48644e-07 2.25683e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| times over ||| 0.0169492 0.157937 8.48644e-07 4.06731e-07 2.718 ||| 0-1 ||| 59 1.17835e+06 +en ||| times were ||| 0.0714286 0.0026686 8.48644e-07 2.6871e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| times when you have to accept ||| 1 0.142731 8.48644e-07 2.24544e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| times when you have to ||| 1 0.142731 8.48644e-07 2.07335e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| times when you have ||| 1 0.142731 8.48644e-07 2.33333e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| times when you ||| 0.125 0.142731 8.48644e-07 1.95097e-09 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| times when ||| 0.00796813 0.142731 1.69729e-06 6.0426e-07 2.718 ||| 0-1 ||| 251 1.17835e+06 +en ||| times with ||| 0.0333333 0.0535436 8.48644e-07 1.18338e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| times ||| 0.00172054 0.0026686 1.1881e-05 1.5e-05 2.718 ||| 0-0 ||| 8137 1.17835e+06 +en ||| tirelessly in ||| 0.142857 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| tirelessly on ||| 0.1 0.22993 8.48644e-07 9.13532e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| title in ||| 0.1 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| title on ' ||| 0.25 0.22993 8.48644e-07 1.65453e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| title on ||| 0.125 0.22993 8.48644e-07 4.81681e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| to ' from ' . in ||| 1 0.605812 8.48644e-07 2.36154e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to , however , in ||| 1 0.605812 8.48644e-07 6.46408e-07 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to , to ||| 0.142857 0.0247351 8.48644e-07 0.000297857 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| to , ||| 0.0128068 0.0247351 1.01837e-05 0.00335205 2.718 ||| 0-0 ||| 937 1.17835e+06 +en ||| to 100 ||| 0.0163934 0.0247351 8.48644e-07 3.85084e-07 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| to 31 ||| 0.0337079 0.0247351 2.54593e-06 2.33299e-07 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| to 44 in ||| 0.25 0.605812 8.48644e-07 7.38595e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to 50 ||| 0.00869565 0.0247351 8.48644e-07 3.93516e-07 2.718 ||| 0-0 ||| 115 1.17835e+06 +en ||| to 8 % fall in ||| 0.333333 0.605812 8.48644e-07 2.81532e-15 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| to EUR 213 000 ||| 0.5 0.0247351 8.48644e-07 3.14777e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to EUR 213 ||| 0.5 0.0247351 8.48644e-07 3.00646e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to EUR ||| 0.00411523 0.0247351 8.48644e-07 7.51616e-06 2.718 ||| 0-0 ||| 243 1.17835e+06 +en ||| to Europe in ||| 0.0465116 0.605812 1.69729e-06 2.07627e-05 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| to European ||| 0.00970874 0.0247351 1.69729e-06 9.39913e-05 2.718 ||| 0-0 ||| 206 1.17835e+06 +en ||| to Justice in Environmental ||| 1 0.605812 8.48644e-07 5.53946e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to Justice in ||| 0.125 0.605812 8.48644e-07 2.21578e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| to Marpol ||| 1 0.0247351 8.48644e-07 1.12433e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to Member State , ||| 0.166667 0.0247351 8.48644e-07 2.07623e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to Member State ||| 0.0526316 0.0247351 8.48644e-07 1.741e-09 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| to Member ||| 0.0238095 0.0247351 8.48644e-07 1.44842e-05 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| to Morocco distributing fishing licences belonging to ||| 1 0.0247351 8.48644e-07 9.41537e-29 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to Morocco distributing fishing licences belonging ||| 1 0.0247351 8.48644e-07 1.0596e-27 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to Morocco distributing fishing licences ||| 1 0.0247351 8.48644e-07 3.92443e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to Morocco distributing fishing ||| 1 0.0247351 8.48644e-07 1.09012e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to Morocco distributing ||| 1 0.0247351 8.48644e-07 2.73213e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to Morocco ||| 0.0117647 0.0247351 8.48644e-07 1.51785e-07 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| to Parliament , ||| 0.00286533 0.0247351 8.48644e-07 1.92407e-06 2.718 ||| 0-0 ||| 349 1.17835e+06 +en ||| to Parliament to ||| 0.00961538 0.0247351 8.48644e-07 1.43365e-06 2.718 ||| 0-0 ||| 104 1.17835e+06 +en ||| to Parliament ||| 0.0010453 0.0247351 2.54593e-06 1.61342e-05 2.718 ||| 0-0 ||| 2870 1.17835e+06 +en ||| to Russia at ||| 0.2 0.321886 8.48644e-07 1.43247e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to Seville where we are ||| 0.5 0.247783 8.48644e-07 9.12449e-14 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to Seville where we ||| 0.5 0.247783 8.48644e-07 6.01375e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to Seville where ||| 0.5 0.247783 8.48644e-07 5.29739e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to South ||| 0.03125 0.0247351 8.48644e-07 6.07139e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| to a certain extent ||| 0.00298507 0.0400323 8.48644e-07 2.26864e-10 2.718 ||| 0-3 ||| 335 1.17835e+06 +en ||| to a certain ||| 0.00737101 0.0247351 2.54593e-06 3.55088e-07 2.718 ||| 0-0 ||| 407 1.17835e+06 +en ||| to a close at ||| 0.333333 0.321886 8.48644e-07 2.33656e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to a close ||| 0.00571429 0.0247351 8.48644e-07 1.8477e-07 2.718 ||| 0-0 ||| 175 1.17835e+06 +en ||| to a conclusion in ||| 0.142857 0.605812 8.48644e-07 1.60966e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| to a fairly ||| 0.5 0.0247351 8.48644e-07 4.03679e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to a far ||| 0.0555556 0.0247351 8.48644e-07 8.50592e-07 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| to a halt at ||| 0.333333 0.321886 8.48644e-07 3.18264e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to a halt ||| 0.00990099 0.0247351 8.48644e-07 2.51676e-08 2.718 ||| 0-0 ||| 101 1.17835e+06 +en ||| to a large extent ||| 0.00338983 0.0400323 1.69729e-06 1.22347e-10 2.718 ||| 0-3 ||| 590 1.17835e+06 +en ||| to a lesser ||| 0.0135135 0.0247351 8.48644e-07 4.48532e-09 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| to a level ||| 0.0172414 0.0247351 8.48644e-07 1.06576e-06 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| to a minimum ||| 0.00531915 0.0247351 8.48644e-07 3.50104e-08 2.718 ||| 0-0 ||| 188 1.17835e+06 +en ||| to a much ||| 0.0487805 0.0247351 1.69729e-06 1.25053e-06 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| to a place within ||| 1 0.369196 8.48644e-07 6.57193e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to a policy ||| 0.011236 0.0247351 8.48644e-07 4.9052e-07 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| to a political ||| 0.2 0.0247351 8.48644e-07 2.22397e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| to a priority ||| 0.333333 0.0015231 8.48644e-07 4.08563e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| to a problem in ||| 0.333333 0.605812 8.48644e-07 4.09053e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to a significantly ||| 0.25 0.0247351 8.48644e-07 1.84397e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to a single ||| 0.011236 0.0247351 8.48644e-07 1.97728e-07 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| to a small ||| 0.0277778 0.0247351 8.48644e-07 1.59603e-07 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| to a target date of ||| 0.5 0.0116562 8.48644e-07 2.07499e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to a value ||| 0.0625 0.0247351 8.48644e-07 1.09392e-07 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| to a very great extent ||| 0.0909091 0.0247351 8.48644e-07 3.27457e-13 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| to a very great ||| 0.0833333 0.0247351 8.48644e-07 1.70373e-09 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| to a very minor extent ||| 0.5 0.0400323 8.48644e-07 3.60065e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to a very ||| 0.0705882 0.0247351 5.09187e-06 4.33519e-06 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| to a ||| 0.0319269 0.0247351 0.000527857 0.00124592 2.718 ||| 0-0 ||| 19482 1.17835e+06 +en ||| to abide by ||| 0.00561798 0.0247351 8.48644e-07 1.06251e-09 2.718 ||| 0-0 ||| 178 1.17835e+06 +en ||| to abide ||| 0.0107527 0.0247351 8.48644e-07 2.0238e-07 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| to above in ||| 1 0.605812 8.48644e-07 5.31788e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to accede to ||| 0.00869565 0.0247351 8.48644e-07 8.99155e-09 2.718 ||| 0-2 ||| 115 1.17835e+06 +en ||| to accept ||| 0.000941324 0.0247351 2.54593e-06 3.04413e-06 2.718 ||| 0-0 ||| 3187 1.17835e+06 +en ||| to access and ||| 0.0909091 0.0247351 8.48644e-07 3.0279e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| to access treatment ||| 1 0.0247351 8.48644e-07 1.46247e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to access ||| 0.00305344 0.0247351 1.69729e-06 2.41731e-06 2.718 ||| 0-0 ||| 655 1.17835e+06 +en ||| to accord ||| 0.0185185 0.0247351 8.48644e-07 3.85084e-07 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| to account ? ||| 0.5 0.233636 8.48644e-07 5.01999e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| to account by ||| 0.5 0.0247351 8.48644e-07 4.24268e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to account ||| 0.0137931 0.233636 3.39458e-06 0.000293739 2.718 ||| 0-1 ||| 290 1.17835e+06 +en ||| to achieve by ||| 0.047619 0.0468744 8.48644e-07 1.72729e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| to achieve in ||| 0.0833333 0.605812 5.09187e-06 9.37605e-06 2.718 ||| 0-2 ||| 72 1.17835e+06 +en ||| to achieve something in ||| 0.142857 0.605812 8.48644e-07 5.18964e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| to achieve their objective ||| 0.25 0.0247351 8.48644e-07 4.98044e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to achieve their ||| 0.0144928 0.0247351 8.48644e-07 7.44461e-09 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| to achieve this , when ||| 0.333333 0.142731 8.48644e-07 9.31416e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| to achieve this at ||| 1 0.321886 8.48644e-07 5.24798e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to achieve ||| 0.00226576 0.0247351 1.4427e-05 6.42275e-06 2.718 ||| 0-0 ||| 7503 1.17835e+06 +en ||| to achieving ||| 0.00242424 0.0247351 1.69729e-06 1.86077e-06 2.718 ||| 0-0 ||| 825 1.17835e+06 +en ||| to act in more areas ||| 1 0.605812 8.48644e-07 3.64428e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to act in more ||| 1 0.605812 8.48644e-07 1.59208e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to act in this ||| 0.025641 0.605812 8.48644e-07 4.50457e-08 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| to act in ||| 0.0101266 0.605812 3.39458e-06 6.97151e-06 2.718 ||| 0-2 ||| 395 1.17835e+06 +en ||| to act with ||| 0.0131579 0.0535436 8.48644e-07 1.76015e-07 2.718 ||| 0-2 ||| 76 1.17835e+06 +en ||| to act ||| 0.00058548 0.0247351 1.69729e-06 4.7756e-06 2.718 ||| 0-0 ||| 3416 1.17835e+06 +en ||| to actual ||| 0.0434783 0.0247351 8.48644e-07 4.06727e-06 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| to actually implement ||| 0.0384615 0.125341 8.48644e-07 6.65997e-09 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| to actually ||| 0.0121951 0.0247351 1.69729e-06 1.16031e-05 2.718 ||| 0-0 ||| 164 1.17835e+06 +en ||| to adaptation within ||| 0.5 0.369196 8.48644e-07 1.77326e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to add here ||| 0.142857 0.0855319 8.48644e-07 2.18598e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| to additional ||| 0.047619 0.0247351 8.48644e-07 1.48693e-06 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| to address the issue of ||| 0.0105263 0.0116562 8.48644e-07 4.29568e-12 2.718 ||| 0-4 ||| 95 1.17835e+06 +en ||| to address ||| 0.001241 0.0247351 4.24322e-06 2.14466e-06 2.718 ||| 0-0 ||| 4029 1.17835e+06 +en ||| to adhere ||| 0.00662252 0.0247351 8.48644e-07 2.83894e-07 2.718 ||| 0-0 ||| 151 1.17835e+06 +en ||| to adjust ||| 0.00309598 0.0247351 8.48644e-07 1.32109e-07 2.718 ||| 0-0 ||| 323 1.17835e+06 +en ||| to adopt , in ||| 0.2 0.605812 8.48644e-07 5.08912e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to adopt in ||| 0.05 0.605812 8.48644e-07 4.26744e-06 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| to adopt our faith , etc . ||| 1 0.0247351 8.48644e-07 3.10425e-22 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to adopt our faith , etc ||| 1 0.0247351 8.48644e-07 1.02484e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to adopt our faith , ||| 1 0.0247351 8.48644e-07 7.11697e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to adopt our faith ||| 1 0.0247351 8.48644e-07 5.96788e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to adopt our ||| 0.0526316 0.0247351 8.48644e-07 4.03235e-09 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| to adopt such a ||| 0.0769231 0.0247351 8.48644e-07 2.6808e-10 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| to adopt such ||| 0.0588235 0.0247351 8.48644e-07 6.04794e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| to adopt ||| 0.00131822 0.0247351 4.24322e-06 2.92326e-06 2.718 ||| 0-0 ||| 3793 1.17835e+06 +en ||| to advance along ||| 0.2 0.155535 8.48644e-07 2.49524e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to advantage in ||| 1 0.605812 8.48644e-07 2.08037e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to advise on ||| 0.2 0.22993 8.48644e-07 4.28013e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to advise ||| 0.0119048 0.0247351 8.48644e-07 1.63028e-07 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| to affect ||| 0.016 0.0481375 1.69729e-06 1.52392e-05 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| to affirm ||| 0.00884956 0.0247351 8.48644e-07 8.99466e-08 2.718 ||| 0-0 ||| 113 1.17835e+06 +en ||| to again get to grips with ||| 1 0.0535436 8.48644e-07 4.02654e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to agree upon ||| 0.0416667 0.0247351 8.48644e-07 1.06077e-09 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| to agree ||| 0.0020562 0.071674 2.54593e-06 0.00011349 2.718 ||| 0-1 ||| 1459 1.17835e+06 +en ||| to aim , in ||| 1 0.605812 8.48644e-07 6.7284e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to aim at ||| 0.0357143 0.321886 8.48644e-07 4.88745e-07 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| to all of us in ||| 0.0769231 0.605812 8.48644e-07 3.03814e-08 2.718 ||| 0-4 ||| 13 1.17835e+06 +en ||| to all of ||| 0.00318471 0.0247351 1.69729e-06 7.22079e-06 2.718 ||| 0-0 ||| 628 1.17835e+06 +en ||| to all ||| 0.00127623 0.0247351 7.6378e-06 0.000132823 2.718 ||| 0-0 ||| 7052 1.17835e+06 +en ||| to allow ||| 0.000310174 0.0247351 8.48644e-07 6.81907e-06 2.718 ||| 0-0 ||| 3224 1.17835e+06 +en ||| to also in ||| 1 0.605812 8.48644e-07 0.000207159 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to also ||| 0.00555556 0.0247351 8.48644e-07 0.000141908 2.718 ||| 0-0 ||| 180 1.17835e+06 +en ||| to amend ||| 0.000960615 0.0247351 8.48644e-07 1.71461e-07 2.718 ||| 0-0 ||| 1041 1.17835e+06 +en ||| to an arbitrary and ||| 0.333333 0.0247351 8.48644e-07 5.00767e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| to an arbitrary ||| 0.5 0.0247351 8.48644e-07 3.99785e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to an area ||| 0.0232558 0.0247351 8.48644e-07 5.18847e-08 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| to an election victory by integrating ||| 1 0.0247351 8.48644e-07 3.25951e-22 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to an election victory by ||| 1 0.0247351 8.48644e-07 9.05419e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to an election victory ||| 1 0.0247351 8.48644e-07 1.72457e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to an election ||| 0.166667 0.0247351 8.48644e-07 2.9734e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to an evaluation ||| 0.0833333 0.0247351 8.48644e-07 1.84901e-09 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| to an even ||| 0.171429 0.0146385 5.09187e-06 1.66661e-08 2.718 ||| 0-0 0-2 ||| 35 1.17835e+06 +en ||| to an individual liable to tax in ||| 1 0.605812 8.48644e-07 2.4514e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| to an overall increase in ||| 0.5 0.605812 8.48644e-07 1.49157e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to an ||| 0.00503718 0.0247351 1.78215e-05 0.000124933 2.718 ||| 0-0 ||| 4169 1.17835e+06 +en ||| to and in ||| 0.166667 0.605812 8.48644e-07 0.000513976 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| to and on ||| 0.333333 0.22993 8.48644e-07 9.24353e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| to and ||| 0.00494234 0.0247351 2.54593e-06 0.000352082 2.718 ||| 0-0 ||| 607 1.17835e+06 +en ||| to animals ||| 0.00699301 0.0247351 8.48644e-07 1.14401e-06 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| to annual holidays ||| 1 0.0247351 8.48644e-07 1.78094e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to annual ||| 0.2 0.0247351 8.48644e-07 8.09519e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| to another , ||| 0.00465116 0.0247351 8.48644e-07 8.08179e-07 2.718 ||| 0-0 ||| 215 1.17835e+06 +en ||| to another at ||| 0.5 0.321886 8.48644e-07 8.56991e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to another in Bosnia ||| 1 0.605812 8.48644e-07 4.64974e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to another in ||| 0.08 0.605812 1.69729e-06 9.89307e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| to another ||| 0.0040678 0.0247351 5.09187e-06 6.77691e-06 2.718 ||| 0-0 ||| 1475 1.17835e+06 +en ||| to answer my ||| 0.05 0.0247351 8.48644e-07 1.35393e-09 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| to answer ||| 0.000632911 0.0247351 8.48644e-07 2.10531e-06 2.718 ||| 0-0 ||| 1580 1.17835e+06 +en ||| to any deadline ||| 0.5 0.0247351 8.48644e-07 4.12302e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to any ||| 0.00355114 0.0247351 4.24322e-06 4.25054e-05 2.718 ||| 0-0 ||| 1408 1.17835e+06 +en ||| to anything more ||| 0.25 0.0247351 8.48644e-07 1.00716e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to anything ||| 0.0153846 0.0247351 8.48644e-07 4.41019e-06 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| to appeal ||| 0.00292398 0.0247351 8.48644e-07 8.48871e-07 2.718 ||| 0-0 ||| 342 1.17835e+06 +en ||| to appear in ||| 0.105263 0.605812 3.39458e-06 3.58629e-06 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| to appear ||| 0.00440529 0.0247351 8.48644e-07 2.45667e-06 2.718 ||| 0-0 ||| 227 1.17835e+06 +en ||| to apply at ||| 0.333333 0.321886 8.48644e-07 5.11493e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| to apply common ||| 1 0.0247351 8.48644e-07 9.34345e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to apply in ||| 0.0666667 0.605812 1.69729e-06 5.90465e-06 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| to apply to ||| 0.0060241 0.0247351 8.48644e-07 1.13692e-07 2.718 ||| 0-0 0-2 ||| 166 1.17835e+06 +en ||| to apply ||| 0.00228102 0.0247351 4.24322e-06 4.04478e-06 2.718 ||| 0-0 ||| 2192 1.17835e+06 +en ||| to areas ||| 0.00595238 0.0247351 8.48644e-07 6.43399e-06 2.718 ||| 0-0 ||| 168 1.17835e+06 +en ||| to argue that ||| 0.02 0.0017499 8.48644e-07 2.04324e-09 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| to arise , ||| 0.142857 0.0247351 8.48644e-07 1.45814e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| to arise ||| 0.0136986 0.0247351 8.48644e-07 1.22271e-06 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| to arrange for it ||| 0.5 0.0286209 8.48644e-07 1.83621e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to arrange for ||| 0.027027 0.0286209 8.48644e-07 1.03255e-08 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| to as ' ||| 0.04 0.066968 8.48644e-07 5.49025e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| to as a ||| 0.0357143 0.066968 8.48644e-07 7.08491e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| to as great an ||| 1 0.066968 8.48644e-07 2.79198e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to as great ||| 0.5 0.066968 8.48644e-07 6.2816e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| to as regards ||| 1 0.0372075 8.48644e-07 1.51206e-07 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| to as ||| 0.0320285 0.066968 7.6378e-06 0.00159837 2.718 ||| 0-1 ||| 281 1.17835e+06 +en ||| to ask ||| 0.000222321 0.0247351 8.48644e-07 3.86489e-06 2.718 ||| 0-0 ||| 4498 1.17835e+06 +en ||| to aspire to when it ||| 1 0.142731 8.48644e-07 9.19508e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to aspire to when ||| 1 0.142731 8.48644e-07 5.17065e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to assist in ||| 0.00740741 0.605812 8.48644e-07 7.67318e-07 2.718 ||| 0-2 ||| 135 1.17835e+06 +en ||| to assist them in ||| 0.047619 0.605812 8.48644e-07 2.05825e-09 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| to assist ||| 0.00291545 0.0247351 2.54593e-06 5.25625e-07 2.718 ||| 0-0 ||| 1029 1.17835e+06 +en ||| to at least ||| 0.00490196 0.173311 8.48644e-07 2.75925e-07 2.718 ||| 0-0 0-1 ||| 204 1.17835e+06 +en ||| to at ||| 0.106599 0.321886 1.78215e-05 0.00355451 2.718 ||| 0-1 ||| 197 1.17835e+06 +en ||| to attend ||| 0.004 0.0247351 1.69729e-06 6.38058e-07 2.718 ||| 0-0 ||| 500 1.17835e+06 +en ||| to attention in ||| 1 0.605812 8.48644e-07 1.07219e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to avoid , when ||| 1 0.142731 8.48644e-07 2.22692e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to avoid smoke in ||| 0.5 0.605812 8.48644e-07 8.4011e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to avoid ||| 0.000854701 0.0247351 2.54593e-06 9.92223e-07 2.718 ||| 0-0 ||| 3510 1.17835e+06 +en ||| to back it at ||| 1 0.321886 8.48644e-07 4.25154e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to back up ||| 0.0185185 0.010982 8.48644e-07 4.54936e-09 2.718 ||| 0-1 0-2 ||| 54 1.17835e+06 +en ||| to back ||| 0.00473934 0.0247351 8.48644e-07 1.89056e-05 2.718 ||| 0-0 ||| 211 1.17835e+06 +en ||| to ban ||| 0.00158479 0.0247351 8.48644e-07 1.08217e-06 2.718 ||| 0-0 ||| 631 1.17835e+06 +en ||| to bankside ||| 0.5 0.512368 8.48644e-07 1.96758e-08 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| to bathe the Holy Land in blood ||| 1 0.605812 8.48644e-07 2.56464e-26 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to bathe the Holy Land in ||| 1 0.605812 8.48644e-07 2.53924e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to be , during ||| 1 0.226251 8.48644e-07 5.55257e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be , in the ||| 0.5 0.605812 8.48644e-07 5.44436e-06 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to be , in ||| 0.2 0.605812 2.54593e-06 8.86823e-05 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| to be , ||| 0.00588235 0.0247351 8.48644e-07 6.07488e-05 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| to be Yanukovich , in ||| 1 0.605812 8.48644e-07 3.54729e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to be a highly complex ||| 1 0.0247351 8.48644e-07 2.95072e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be a highly ||| 0.5 0.0247351 8.48644e-07 1.36607e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to be a willingness to ||| 0.2 0.0247351 8.48644e-07 2.60831e-11 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| to be a ||| 0.00276817 0.0247351 6.78915e-06 2.25797e-05 2.718 ||| 0-0 ||| 2890 1.17835e+06 +en ||| to be able to enjoy ||| 0.0833333 0.0247351 8.48644e-07 1.47009e-12 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| to be able to in ||| 0.5 0.605812 8.48644e-07 5.51688e-08 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to be able to regard ||| 1 0.0247351 8.48644e-07 2.57322e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be able to ||| 0.00164745 0.0247351 4.24322e-06 3.77915e-08 2.718 ||| 0-0 ||| 3035 1.17835e+06 +en ||| to be able ||| 0.00382263 0.0247351 4.24322e-06 4.25301e-07 2.718 ||| 0-0 ||| 1308 1.17835e+06 +en ||| to be accepted at ||| 0.5 0.321886 8.48644e-07 3.9617e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to be achieved in ||| 0.0434783 0.605812 8.48644e-07 1.24411e-07 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| to be achieved ||| 0.00224719 0.0247351 8.48644e-07 8.52233e-08 2.718 ||| 0-0 ||| 445 1.17835e+06 +en ||| to be active in ||| 0.0625 0.605812 8.48644e-07 2.99686e-08 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| to be added to ||| 0.0285714 0.0247351 8.48644e-07 3.22737e-09 2.718 ||| 0-3 ||| 35 1.17835e+06 +en ||| to be added ||| 0.00952381 0.0247351 8.48644e-07 3.63205e-08 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| to be addressed in ||| 0.0243902 0.605812 8.48644e-07 3.9859e-08 2.718 ||| 0-3 ||| 41 1.17835e+06 +en ||| to be addressed will be ||| 0.5 0.0247351 8.48644e-07 4.28086e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to be addressed will ||| 1 0.0247351 8.48644e-07 2.36213e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be addressed with ||| 0.1 0.0535436 8.48644e-07 1.00635e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| to be addressed ||| 0.0030303 0.0247351 8.48644e-07 2.7304e-08 2.718 ||| 0-0 ||| 330 1.17835e+06 +en ||| to be adopted in ||| 0.0428571 0.605812 2.54593e-06 1.51702e-07 2.718 ||| 0-3 ||| 70 1.17835e+06 +en ||| to be adopted ||| 0.0027248 0.0247351 1.69729e-06 1.03918e-07 2.718 ||| 0-0 ||| 734 1.17835e+06 +en ||| to be afforded when ||| 0.5 0.142731 8.48644e-07 1.38053e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to be an element of ||| 0.5 0.0116562 8.48644e-07 4.24596e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to be announced in ||| 0.25 0.605812 8.48644e-07 1.5542e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to be applied in practice in ||| 1 0.605812 8.48644e-07 1.81692e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to be applied to ||| 0.0144928 0.0247351 8.48644e-07 4.90217e-09 2.718 ||| 0-3 ||| 69 1.17835e+06 +en ||| to be applied under ||| 1 0.205566 8.48644e-07 9.86179e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be applied ||| 0.002 0.0247351 8.48644e-07 5.51684e-08 2.718 ||| 0-0 ||| 500 1.17835e+06 +en ||| to be appreciated ||| 0.2 0.0247351 8.48644e-07 2.95454e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| to be as ||| 0.00526316 0.066968 8.48644e-07 2.89671e-05 2.718 ||| 0-2 ||| 190 1.17835e+06 +en ||| to be assisted ||| 0.125 0.0247351 8.48644e-07 1.83385e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| to be associated with ||| 0.025 0.0535436 8.48644e-07 9.66919e-10 2.718 ||| 0-3 ||| 40 1.17835e+06 +en ||| to be at ||| 0.00787402 0.321886 8.48644e-07 6.4418e-05 2.718 ||| 0-2 ||| 127 1.17835e+06 +en ||| to be attached ||| 0.04 0.0247351 8.48644e-07 1.63009e-08 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| to be available by ||| 0.25 0.0468744 8.48644e-07 4.35783e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to be aware of ||| 0.0075188 0.0181957 8.48644e-07 9.64902e-10 2.718 ||| 0-0 0-3 ||| 133 1.17835e+06 +en ||| to be based on ||| 0.00662252 0.22993 8.48644e-07 3.13751e-08 2.718 ||| 0-3 ||| 151 1.17835e+06 +en ||| to be broadcast on ||| 1 0.22993 8.48644e-07 8.15805e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be brought before ||| 0.1 0.0175291 8.48644e-07 1.53713e-10 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| to be brought to ||| 0.0181818 0.0247351 8.48644e-07 1.26741e-08 2.718 ||| 0-3 ||| 55 1.17835e+06 +en ||| to be brought within ||| 0.25 0.369196 8.48644e-07 4.99903e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to be brought ||| 0.0129032 0.0247351 1.69729e-06 1.42633e-07 2.718 ||| 0-0 ||| 155 1.17835e+06 +en ||| to be built for ||| 1 0.0286209 8.48644e-07 9.20822e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be built in ||| 0.166667 0.605812 8.48644e-07 3.69588e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| to be called out-and-out ||| 0.5 0.0247351 8.48644e-07 1.23948e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to be called ||| 0.0126582 0.0247351 8.48644e-07 8.85344e-08 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| to be carried out at ||| 0.272727 0.321886 2.54593e-06 7.27162e-11 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| to be carried out in ||| 0.0576923 0.605812 2.54593e-06 8.39432e-10 2.718 ||| 0-4 ||| 52 1.17835e+06 +en ||| to be carried out on ||| 0.125 0.22993 8.48644e-07 1.50967e-10 2.718 ||| 0-4 ||| 8 1.17835e+06 +en ||| to be changed ||| 0.00719424 0.0247351 8.48644e-07 1.66575e-08 2.718 ||| 0-0 ||| 139 1.17835e+06 +en ||| to be classified in ||| 1 0.605812 8.48644e-07 5.65165e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be clearly set ||| 1 0.0247351 8.48644e-07 5.43295e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be clearly ||| 0.0344828 0.0247351 8.48644e-07 9.29662e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| to be commended on ||| 0.142857 0.22993 8.48644e-07 1.87234e-10 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| to be committed ||| 0.0588235 0.0247351 1.69729e-06 4.21786e-08 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| to be conditional on ||| 0.2 0.22993 8.48644e-07 1.20365e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to be conducted in ||| 0.0625 0.605812 8.48644e-07 4.49901e-08 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| to be connected with ||| 0.5 0.0535436 8.48644e-07 3.79257e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to be considered in ||| 0.0689655 0.605812 1.69729e-06 8.00154e-08 2.718 ||| 0-3 ||| 29 1.17835e+06 +en ||| to be controlled as ||| 1 0.066968 8.48644e-07 2.80981e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be coordinated at ||| 0.333333 0.321886 8.48644e-07 4.38042e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to be covered by ||| 0.0212766 0.0468744 8.48644e-07 9.80889e-10 2.718 ||| 0-3 ||| 47 1.17835e+06 +en ||| to be created in ||| 0.0666667 0.605812 8.48644e-07 7.83794e-08 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| to be dealt with in ||| 0.025 0.605812 8.48644e-07 4.97868e-10 2.718 ||| 0-4 ||| 40 1.17835e+06 +en ||| to be dealt with on ||| 0.166667 0.141737 8.48644e-07 1.63253e-10 2.718 ||| 0-3 0-4 ||| 6 1.17835e+06 +en ||| to be dealt with ||| 0.00617284 0.0535436 1.69729e-06 1.96576e-09 2.718 ||| 0-3 ||| 324 1.17835e+06 +en ||| to be decided in ||| 0.125 0.605812 8.48644e-07 5.08648e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| to be declared on ||| 1 0.22993 8.48644e-07 3.42371e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be deluded into ||| 0.5 0.525896 8.48644e-07 1.42597e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to be described as ||| 0.142857 0.066968 8.48644e-07 1.29193e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| to be designed in the ||| 1 0.605812 8.48644e-07 3.56552e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be designed in ||| 0.333333 0.605812 8.48644e-07 5.80781e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to be designed largely with ||| 1 0.0535436 8.48644e-07 4.79492e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to be desired ||| 0.00724638 0.0247351 1.69729e-06 7.89576e-09 2.718 ||| 0-0 ||| 276 1.17835e+06 +en ||| to be developed further in ||| 0.333333 0.605812 8.48644e-07 2.46908e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| to be developed into ||| 0.5 0.275316 8.48644e-07 7.74718e-10 2.718 ||| 0-0 0-3 ||| 2 1.17835e+06 +en ||| to be devoted ||| 0.047619 0.0247351 8.48644e-07 1.04428e-08 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| to be discussed in ||| 0.0232558 0.605812 8.48644e-07 3.9041e-08 2.718 ||| 0-3 ||| 43 1.17835e+06 +en ||| to be displayed in ||| 1 0.605812 8.48644e-07 1.3088e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be dissolved in ||| 1 0.605812 8.48644e-07 1.04109e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be done in relation to ||| 0.25 0.605812 8.48644e-07 7.33104e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to be done in relation ||| 0.333333 0.605812 8.48644e-07 8.25027e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to be done in ||| 0.0300752 0.605812 6.78915e-06 3.39099e-07 2.718 ||| 0-3 ||| 266 1.17835e+06 +en ||| to be done on ||| 0.0140845 0.22993 8.48644e-07 6.09848e-08 2.718 ||| 0-3 ||| 71 1.17835e+06 +en ||| to be done there ||| 0.142857 0.0247351 8.48644e-07 7.12033e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| to be done through the ||| 1 0.0366102 8.48644e-07 4.23948e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be done through ||| 0.25 0.0366102 8.48644e-07 6.90562e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to be done with ||| 0.0357143 0.0535436 8.48644e-07 8.56146e-09 2.718 ||| 0-3 ||| 28 1.17835e+06 +en ||| to be done ||| 0.00222321 0.0247351 4.24322e-06 2.32288e-07 2.718 ||| 0-0 ||| 2249 1.17835e+06 +en ||| to be drawn up by ||| 0.0909091 0.0468744 8.48644e-07 6.63925e-12 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| to be drawn up ||| 0.00884956 0.0247351 8.48644e-07 2.46873e-10 2.718 ||| 0-0 ||| 113 1.17835e+06 +en ||| to be drawn ||| 0.00877193 0.0247351 8.48644e-07 7.23863e-08 2.718 ||| 0-0 ||| 114 1.17835e+06 +en ||| to be effective in ||| 0.0416667 0.605812 8.48644e-07 4.87083e-08 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| to be engaged in ||| 0.0666667 0.605812 8.48644e-07 3.04891e-08 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| to be established in ||| 0.0909091 0.605812 1.69729e-06 1.11323e-07 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| to be established ||| 0.00346021 0.0247351 8.48644e-07 7.62578e-08 2.718 ||| 0-0 ||| 289 1.17835e+06 +en ||| to be examined in ||| 0.0526316 0.605812 8.48644e-07 1.3088e-08 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| to be extended in ||| 0.125 0.605812 8.48644e-07 2.6994e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| to be fair , ||| 0.0163934 0.0247351 8.48644e-07 3.14679e-09 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| to be fair ||| 0.00892857 0.0247351 8.48644e-07 2.63871e-08 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| to be felt as such in ||| 0.5 0.605812 8.48644e-07 8.98017e-13 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| to be followed , in ||| 0.333333 0.605812 8.48644e-07 6.34965e-09 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| to be followed in the ||| 0.166667 0.605812 8.48644e-07 3.26877e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| to be followed in ||| 0.135135 0.605812 4.24322e-06 5.32445e-08 2.718 ||| 0-3 ||| 37 1.17835e+06 +en ||| to be followed up ||| 0.0344828 0.0147069 8.48644e-07 7.95586e-11 2.718 ||| 0-3 ||| 29 1.17835e+06 +en ||| to be for us to ||| 0.5 0.0247351 8.48644e-07 1.00269e-09 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to be forged in ||| 1 0.605812 8.48644e-07 1.85909e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be found in ||| 0.131579 0.605812 1.69729e-05 1.62708e-07 2.718 ||| 0-3 ||| 152 1.17835e+06 +en ||| to be found on ||| 0.166667 0.22993 8.48644e-07 2.9262e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| to be found ||| 0.00656455 0.0247351 2.54593e-06 1.11458e-07 2.718 ||| 0-0 ||| 457 1.17835e+06 +en ||| to be gained from having ||| 0.5 0.0308834 8.48644e-07 7.43765e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to be gained from ||| 0.0384615 0.0308834 8.48644e-07 1.94245e-10 2.718 ||| 0-3 ||| 26 1.17835e+06 +en ||| to be given more ||| 0.0714286 0.0546585 8.48644e-07 4.26932e-09 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| to be given to him ||| 1 0.0247351 8.48644e-07 9.95949e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be given to ||| 0.00714286 0.0247351 8.48644e-07 3.10652e-08 2.718 ||| 0-0 ||| 140 1.17835e+06 +en ||| to be given ||| 0.00744048 0.0546585 4.24322e-06 1.86948e-06 2.718 ||| 0-2 ||| 672 1.17835e+06 +en ||| to be granted ||| 0.00746269 0.0247351 8.48644e-07 4.12617e-08 2.718 ||| 0-0 ||| 134 1.17835e+06 +en ||| to be had in ||| 0.5 0.605812 8.48644e-07 7.46389e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to be handled in ||| 0.2 0.605812 8.48644e-07 1.52446e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to be heard in ||| 0.0666667 0.605812 8.48644e-07 5.88961e-08 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| to be held at ||| 0.0952381 0.321886 1.69729e-06 1.6433e-08 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| to be held in Cyprus ' ||| 1 0.605812 8.48644e-07 1.0556e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be held in Cyprus ||| 1 0.605812 8.48644e-07 3.07317e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be held in ||| 0.0283401 0.605812 5.94051e-06 1.89702e-07 2.718 ||| 0-3 ||| 247 1.17835e+06 +en ||| to be here ||| 0.00429185 0.0855319 8.48644e-07 4.83127e-06 2.718 ||| 0-2 ||| 233 1.17835e+06 +en ||| to be highlighted as and ||| 0.25 0.066968 8.48644e-07 7.32936e-12 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to be highlighted as ||| 0.25 0.066968 8.48644e-07 5.85136e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to be highlighted ||| 0.0208333 0.0247351 8.48644e-07 1.029e-08 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| to be hoped ||| 0.0153061 0.0247351 2.54593e-06 9.88244e-09 2.718 ||| 0-0 ||| 196 1.17835e+06 +en ||| to be implemented in ||| 0.0246914 0.605812 1.69729e-06 6.52914e-08 2.718 ||| 0-3 ||| 81 1.17835e+06 +en ||| to be imported to ||| 1 0.0247351 8.48644e-07 1.81059e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be in a ||| 0.0107527 0.605812 8.48644e-07 3.29623e-05 2.718 ||| 0-2 ||| 93 1.17835e+06 +en ||| to be in an ||| 0.25 0.605812 1.69729e-06 3.30525e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| to be in the ||| 0.010989 0.605812 8.48644e-07 4.56533e-05 2.718 ||| 0-2 ||| 91 1.17835e+06 +en ||| to be in ||| 0.0733945 0.605812 3.39458e-05 0.000743638 2.718 ||| 0-2 ||| 545 1.17835e+06 +en ||| to be included in ||| 0.0353535 0.605812 5.94051e-06 6.98276e-08 2.718 ||| 0-3 ||| 198 1.17835e+06 +en ||| to be included on ||| 0.0555556 0.22993 8.48644e-07 1.2558e-08 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| to be included once again amongst ||| 1 0.050508 8.48644e-07 4.23674e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to be included ||| 0.00248756 0.0247351 8.48644e-07 4.7833e-08 2.718 ||| 0-0 ||| 402 1.17835e+06 +en ||| to be incorporated into ||| 0.0208333 0.525896 8.48644e-07 7.20114e-10 2.718 ||| 0-3 ||| 48 1.17835e+06 +en ||| to be installed in ||| 0.333333 0.605812 8.48644e-07 4.83364e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to be integrated into ||| 0.037037 0.0247351 1.69729e-06 1.05647e-11 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| to be integrated ||| 0.0105263 0.0247351 8.48644e-07 1.029e-08 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| to be introduced at ||| 0.111111 0.321886 8.48644e-07 5.95866e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| to be introduced on ||| 0.166667 0.22993 8.48644e-07 1.23708e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| to be introduced ||| 0.0046729 0.0247351 8.48644e-07 4.71199e-08 2.718 ||| 0-0 ||| 214 1.17835e+06 +en ||| to be involved in ||| 0.012766 0.605812 2.54593e-06 2.5715e-07 2.718 ||| 0-3 ||| 235 1.17835e+06 +en ||| to be job ||| 1 0.0247351 8.48644e-07 3.97844e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be launched at ||| 0.142857 0.321886 8.48644e-07 2.13223e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| to be launched ||| 0.0144928 0.0247351 8.48644e-07 1.68613e-08 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| to be lifted temporarily ||| 1 0.0247351 8.48644e-07 1.96477e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be lifted ||| 0.0119048 0.0247351 8.48644e-07 6.77507e-09 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| to be limited by ||| 0.333333 0.0468744 8.48644e-07 5.32913e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to be located in ||| 0.1 0.605812 8.48644e-07 1.84422e-08 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| to be looked at in ||| 0.0909091 0.605812 8.48644e-07 1.44485e-10 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| to be looking ||| 0.0666667 0.0247351 8.48644e-07 5.38949e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| to be made , in ||| 0.5 0.605812 8.48644e-07 1.85772e-07 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to be made at ||| 0.0833333 0.321886 8.48644e-07 1.34943e-07 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| to be made available in ||| 0.25 0.605812 8.48644e-07 4.95527e-10 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| to be made good ||| 0.25 0.0247351 8.48644e-07 5.53398e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to be made in ||| 0.205882 0.605812 1.78215e-05 1.55777e-06 2.718 ||| 0-3 ||| 102 1.17835e+06 +en ||| to be made of ||| 0.0645161 0.0116562 1.69729e-06 4.6003e-08 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| to be made on ||| 0.108108 0.22993 3.39458e-06 2.80155e-07 2.718 ||| 0-3 ||| 37 1.17835e+06 +en ||| to be made to ||| 0.060241 0.0247351 4.24322e-06 9.48205e-08 2.718 ||| 0-3 ||| 83 1.17835e+06 +en ||| to be made with ||| 0.2 0.0535436 1.69729e-06 3.93301e-08 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| to be made within ||| 0.166667 0.369196 8.48644e-07 3.73999e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| to be made ||| 0.00689127 0.0247351 7.6378e-06 1.0671e-06 2.718 ||| 0-0 ||| 1306 1.17835e+06 +en ||| to be maintained when ||| 1 0.142731 8.48644e-07 3.38421e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be manufactured there ||| 0.5 0.0247351 8.48644e-07 6.71435e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to be manufactured ||| 0.0833333 0.0247351 8.48644e-07 2.19044e-09 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| to be miserable ||| 1 0.0247351 8.48644e-07 5.60344e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be more ||| 0.00238379 0.0042952 1.69729e-06 5.3577e-07 2.718 ||| 0-2 ||| 839 1.17835e+06 +en ||| to be moved ||| 0.0333333 0.0247351 8.48644e-07 1.61481e-08 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| to be necessary ||| 0.00970874 0.0247351 8.48644e-07 1.3107e-07 2.718 ||| 0-0 ||| 103 1.17835e+06 +en ||| to be of ||| 0.00520833 0.0247351 8.48644e-07 2.76932e-05 2.718 ||| 0-0 ||| 192 1.17835e+06 +en ||| to be omitted ||| 0.25 0.0247351 8.48644e-07 1.63009e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to be on a ||| 0.0909091 0.22993 8.48644e-07 5.92807e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to be on the ||| 0.0128205 0.22993 8.48644e-07 8.21045e-06 2.718 ||| 0-2 ||| 78 1.17835e+06 +en ||| to be on ||| 0.0434783 0.22993 5.09187e-06 0.000133739 2.718 ||| 0-2 ||| 138 1.17835e+06 +en ||| to be one in ||| 0.5 0.605812 2.54593e-06 3.09948e-06 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| to be one of the ||| 0.00909091 0.0116562 8.48644e-07 5.6193e-09 2.718 ||| 0-3 ||| 110 1.17835e+06 +en ||| to be one of ||| 0.0141844 0.0247351 1.69729e-06 1.15425e-07 2.718 ||| 0-0 ||| 141 1.17835e+06 +en ||| to be one ||| 0.0107527 0.0247351 1.69729e-06 2.1232e-06 2.718 ||| 0-0 ||| 186 1.17835e+06 +en ||| to be paid for at ||| 1 0.321886 8.48644e-07 6.66401e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to be paid ||| 0.00766284 0.0247351 1.69729e-06 6.85658e-08 2.718 ||| 0-0 ||| 261 1.17835e+06 +en ||| to be part ||| 0.0117647 0.0247351 1.69729e-06 6.07311e-07 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| to be phased out in ||| 0.333333 0.605812 8.48644e-07 1.33876e-11 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| to be placed in ||| 0.0833333 0.605812 8.48644e-07 9.31034e-08 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| to be placed on the agenda as ||| 1 0.066968 8.48644e-07 1.47931e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| to be placed on ||| 0.1 0.22993 2.54593e-06 1.67441e-08 2.718 ||| 0-3 ||| 30 1.17835e+06 +en ||| to be pointing the other way ||| 1 0.0247351 8.48644e-07 1.98246e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be pointing the other ||| 1 0.0247351 8.48644e-07 9.19678e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be pointing the ||| 1 0.0247351 8.48644e-07 7.09902e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be pointing ||| 1 0.0247351 8.48644e-07 1.15635e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be present throughout ||| 0.333333 0.309047 8.48644e-07 1.70972e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to be primarily centred on ||| 1 0.22993 8.48644e-07 6.98115e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to be provided by ||| 0.0384615 0.0468744 8.48644e-07 3.13994e-09 2.718 ||| 0-3 ||| 26 1.17835e+06 +en ||| to be provided in ||| 0.142857 0.605812 8.48644e-07 1.70442e-07 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| to be published in ||| 0.04 0.605812 8.48644e-07 1.65831e-08 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| to be put in place ||| 0.0120482 0.605812 8.48644e-07 1.234e-09 2.718 ||| 0-3 ||| 83 1.17835e+06 +en ||| to be put in ||| 0.0309278 0.605812 2.54593e-06 8.19935e-07 2.718 ||| 0-3 ||| 97 1.17835e+06 +en ||| to be put into ||| 0.0487805 0.525896 3.39458e-06 3.93068e-08 2.718 ||| 0-3 ||| 82 1.17835e+06 +en ||| to be put on ||| 0.0243902 0.22993 8.48644e-07 1.4746e-07 2.718 ||| 0-3 ||| 41 1.17835e+06 +en ||| to be put to ||| 0.0135135 0.0247351 8.48644e-07 4.99089e-08 2.718 ||| 0-3 ||| 74 1.17835e+06 +en ||| to be put ||| 0.0052356 0.0247351 1.69729e-06 5.61669e-07 2.718 ||| 0-0 ||| 382 1.17835e+06 +en ||| to be reached in ||| 0.222222 0.605812 1.69729e-06 8.03129e-08 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| to be reached on ||| 0.125 0.22993 8.48644e-07 1.44438e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| to be reached ||| 0.00714286 0.0247351 8.48644e-07 5.50156e-08 2.718 ||| 0-0 ||| 140 1.17835e+06 +en ||| to be realistic ||| 0.00884956 0.0247351 8.48644e-07 2.95454e-09 2.718 ||| 0-0 ||| 113 1.17835e+06 +en ||| to be received in ||| 0.142857 0.605812 8.48644e-07 6.66299e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| to be redeployed in ||| 1 0.605812 8.48644e-07 1.04109e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be reduced ||| 0.00606061 0.0247351 8.48644e-07 2.38401e-08 2.718 ||| 0-0 ||| 165 1.17835e+06 +en ||| to be reimbursed , ||| 1 0.0247351 8.48644e-07 6.68237e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be reimbursed ||| 0.0526316 0.0247351 8.48644e-07 5.60344e-10 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| to be reinforced ||| 0.0333333 0.0247351 8.48644e-07 3.31113e-09 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| to be repaid ||| 0.0384615 0.0247351 8.48644e-07 7.13165e-10 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| to be respected in ||| 0.333333 0.605812 8.48644e-07 1.82191e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to be respected within ||| 1 0.369196 8.48644e-07 4.37415e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be retained in ||| 1 0.605812 8.48644e-07 6.99019e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be returned to ||| 0.0454545 0.0247351 8.48644e-07 1.90436e-10 2.718 ||| 0-0 0-3 ||| 22 1.17835e+06 +en ||| to be said , in ||| 0.25 0.605812 8.48644e-07 3.6475e-08 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| to be said that in ||| 0.25 0.605812 8.48644e-07 5.14502e-09 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| to be said ||| 0.00159744 0.0247351 8.48644e-07 2.09518e-07 2.718 ||| 0-0 ||| 626 1.17835e+06 +en ||| to be seen again ||| 0.166667 0.0247351 8.48644e-07 6.20108e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to be seen in relative terms ||| 1 0.605812 8.48644e-07 1.54632e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be seen in relative ||| 1 0.605812 8.48644e-07 1.40882e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be seen in ||| 0.0408163 0.605812 1.69729e-06 1.56536e-07 2.718 ||| 0-3 ||| 49 1.17835e+06 +en ||| to be seen ||| 0.00701754 0.0247351 1.69729e-06 1.0723e-07 2.718 ||| 0-0 ||| 285 1.17835e+06 +en ||| to be sent out at ||| 1 0.321886 8.48644e-07 1.48295e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to be set up ||| 0.00617284 0.0247351 8.48644e-07 1.01529e-09 2.718 ||| 0-0 ||| 162 1.17835e+06 +en ||| to be set ||| 0.00625 0.0247351 8.48644e-07 2.97696e-07 2.718 ||| 0-0 ||| 160 1.17835e+06 +en ||| to be shown on ||| 0.5 0.22993 8.48644e-07 1.39623e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to be signed ||| 0.010989 0.0247351 8.48644e-07 1.57406e-08 2.718 ||| 0-0 ||| 91 1.17835e+06 +en ||| to be slaughtered in ||| 0.5 0.605812 8.48644e-07 2.97455e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to be so , but also in ||| 1 0.605812 8.48644e-07 6.94466e-13 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| to be so in ||| 0.333333 0.605812 1.69729e-06 1.68783e-06 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| to be spent ||| 0.00961538 0.0247351 8.48644e-07 3.26528e-08 2.718 ||| 0-0 ||| 104 1.17835e+06 +en ||| to be submitted to ||| 0.05 0.0247351 8.48644e-07 2.33113e-09 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| to be tackled within ||| 0.333333 0.369196 8.48644e-07 2.82088e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to be taken at ||| 0.0344828 0.163048 1.69729e-06 5.73964e-09 2.718 ||| 0-2 0-3 ||| 58 1.17835e+06 +en ||| to be taken for the specific ||| 1 0.0286209 8.48644e-07 1.56657e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be taken for the ||| 0.333333 0.0286209 8.48644e-07 1.03678e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to be taken for ||| 0.047619 0.0286209 8.48644e-07 1.68879e-08 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| to be taken from ||| 0.0714286 0.0308834 8.48644e-07 5.58532e-09 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| to be taken in a ||| 0.2 0.605812 8.48644e-07 3.00452e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to be taken in ||| 0.0743802 0.605812 7.6378e-06 6.77826e-07 2.718 ||| 0-3 ||| 121 1.17835e+06 +en ||| to be taken into account when assessing ||| 0.5 0.525896 8.48644e-07 2.00815e-20 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to be taken into account when ||| 0.0526316 0.525896 8.48644e-07 4.67011e-15 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| to be taken into account ||| 0.00416667 0.525896 8.48644e-07 9.3421e-12 2.718 ||| 0-3 ||| 240 1.17835e+06 +en ||| to be taken into ||| 0.0037037 0.525896 8.48644e-07 3.24943e-08 2.718 ||| 0-3 ||| 270 1.17835e+06 +en ||| to be taken of ||| 0.0322581 0.0116562 8.48644e-07 2.00171e-08 2.718 ||| 0-3 ||| 31 1.17835e+06 +en ||| to be taken under ||| 0.333333 0.205566 8.48644e-07 8.30011e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to be taken when ||| 0.2 0.142731 8.48644e-07 8.73856e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to be taken ||| 0.000592768 0.0042106 8.48644e-07 1.43484e-07 2.718 ||| 0-2 ||| 1687 1.17835e+06 +en ||| to be the case again ||| 1 0.0247351 8.48644e-07 1.93495e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to be the case in ||| 0.25 0.605812 8.48644e-07 4.88444e-08 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| to be the case ||| 0.00704225 0.0247351 8.48644e-07 3.34592e-08 2.718 ||| 0-0 ||| 142 1.17835e+06 +en ||| to be the most ||| 0.0238095 0.0247351 8.48644e-07 1.35163e-08 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| to be the ||| 0.00476948 0.0247351 5.09187e-06 3.12732e-05 2.718 ||| 0-0 ||| 1258 1.17835e+06 +en ||| to be to the ||| 0.25 0.0247351 8.48644e-07 2.77888e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to be to ||| 0.0454545 0.0247351 1.69729e-06 4.52647e-05 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| to be together with ||| 1 0.0535436 8.48644e-07 1.12763e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to be transferred into a department ||| 0.5 0.525896 8.48644e-07 2.21857e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to be transferred into a ||| 0.5 0.525896 8.48644e-07 3.41319e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to be transferred into ||| 0.6 0.525896 2.54593e-06 7.70023e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to be transferred ||| 0.0113636 0.0247351 8.48644e-07 1.10031e-08 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| to be undertaken within ||| 1 0.196966 8.48644e-07 2.68261e-10 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| to be up to ||| 0.047619 0.0247351 8.48644e-07 1.54375e-07 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| to be upon ||| 1 0.114601 8.48644e-07 1.4234e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to be used in ||| 0.00970874 0.605812 8.48644e-07 3.19021e-07 2.718 ||| 0-3 ||| 103 1.17835e+06 +en ||| to be used ||| 0.00127551 0.0247351 8.48644e-07 2.18534e-07 2.718 ||| 0-0 ||| 784 1.17835e+06 +en ||| to be very ||| 0.0018315 0.0247351 8.48644e-07 1.77247e-06 2.718 ||| 0-0 ||| 546 1.17835e+06 +en ||| to be voted on in ||| 0.0909091 0.605812 8.48644e-07 2.0052e-10 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| to be welcomed ||| 0.00327332 0.0247351 1.69729e-06 1.21238e-08 2.718 ||| 0-0 ||| 611 1.17835e+06 +en ||| to be within ||| 0.2 0.369196 8.48644e-07 1.78537e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to be ||| 0.00828222 0.0247351 0.000402257 0.000509404 2.718 ||| 0-0 ||| 57231 1.17835e+06 +en ||| to bear fruit ||| 0.0227273 0.0247351 8.48644e-07 5.7647e-11 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| to bear in ||| 0.0298013 0.605812 7.6378e-06 6.14265e-06 2.718 ||| 0-2 ||| 302 1.17835e+06 +en ||| to bear on it ||| 0.333333 0.22993 8.48644e-07 1.96454e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| to bear on the ||| 0.0196078 0.22993 8.48644e-07 6.78205e-08 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| to bear on them ||| 1 0.22993 8.48644e-07 2.96329e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to bear on ||| 0.0833333 0.22993 5.94051e-06 1.10472e-06 2.718 ||| 0-2 ||| 84 1.17835e+06 +en ||| to bear them in ||| 0.5 0.605812 8.48644e-07 1.6477e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to bear ||| 0.0060241 0.0247351 5.09187e-06 4.20781e-06 2.718 ||| 0-0 ||| 996 1.17835e+06 +en ||| to become further involved in ||| 0.5 0.605812 8.48644e-07 1.95923e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to become involved in ||| 0.0117647 0.605812 8.48644e-07 4.05386e-09 2.718 ||| 0-3 ||| 85 1.17835e+06 +en ||| to become just ||| 0.333333 0.121964 8.48644e-07 1.35598e-07 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| to become members of ||| 0.0243902 0.0116562 8.48644e-07 5.10644e-11 2.718 ||| 0-3 ||| 41 1.17835e+06 +en ||| to become no more ||| 1 0.219193 8.48644e-07 6.03949e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to become no ||| 1 0.219193 8.48644e-07 2.64461e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to become ||| 0.0116162 0.219193 1.95188e-05 0.000339749 2.718 ||| 0-1 ||| 1980 1.17835e+06 +en ||| to becoming ||| 0.016129 0.0247351 8.48644e-07 2.89234e-06 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| to beef up ||| 0.1 0.0247351 8.48644e-07 1.38043e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| to beef ||| 0.0526316 0.0247351 8.48644e-07 4.0476e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| to begin by ||| 0.00295421 0.0247351 1.69729e-06 8.70671e-09 2.718 ||| 0-0 ||| 677 1.17835e+06 +en ||| to begin ||| 0.00134771 0.0247351 2.54593e-06 1.65839e-06 2.718 ||| 0-0 ||| 2226 1.17835e+06 +en ||| to behave in ||| 0.03125 0.605812 8.48644e-07 3.52884e-07 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| to believe in ||| 0.0192308 0.605812 8.48644e-07 1.27736e-05 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| to believe ||| 0.00328228 0.0247351 2.54593e-06 8.75011e-06 2.718 ||| 0-0 ||| 914 1.17835e+06 +en ||| to belong to ||| 0.02 0.0247351 8.48644e-07 7.19324e-08 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| to benefit from ||| 0.00232019 0.0308834 8.48644e-07 4.45297e-08 2.718 ||| 0-2 ||| 431 1.17835e+06 +en ||| to bits ||| 0.25 0.0247351 8.48644e-07 1.32109e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to boost ||| 0.00174216 0.0247351 8.48644e-07 4.86274e-07 2.718 ||| 0-0 ||| 574 1.17835e+06 +en ||| to both in ||| 0.5 0.605812 8.48644e-07 6.79712e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to bottom ||| 0.0833333 0.0247351 8.48644e-07 4.0476e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| to break things down in ||| 0.5 0.605812 8.48644e-07 3.42599e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to bring about ||| 0.00178571 0.0401564 1.69729e-06 7.92808e-08 2.718 ||| 0-2 ||| 1120 1.17835e+06 +en ||| to bring in ||| 0.0116279 0.605812 1.69729e-06 1.27736e-05 2.718 ||| 0-2 ||| 172 1.17835e+06 +en ||| to bring into ||| 0.0344828 0.525896 8.48644e-07 6.12352e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| to bring our ||| 0.03125 0.0247351 8.48644e-07 1.20699e-08 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| to bring the case ||| 0.25 0.0247351 8.48644e-07 5.74734e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to bring the requirements into line with ||| 1 0.525896 8.48644e-07 3.43948e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to bring the requirements into line ||| 1 0.525896 8.48644e-07 5.3788e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to bring the requirements into ||| 1 0.525896 8.48644e-07 1.82704e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to bring the ||| 0.00209644 0.0247351 8.48644e-07 5.37185e-07 2.718 ||| 0-0 ||| 477 1.17835e+06 +en ||| to bring them into ||| 0.181818 0.525896 1.69729e-06 1.64257e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| to bring up in ||| 0.2 0.605812 8.48644e-07 4.35643e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to bring ||| 0.00239489 0.0247351 7.6378e-06 8.75011e-06 2.718 ||| 0-0 ||| 3758 1.17835e+06 +en ||| to build on ||| 0.00591716 0.22993 8.48644e-07 2.92229e-07 2.718 ||| 0-2 ||| 169 1.17835e+06 +en ||| to build up ||| 0.00492611 0.0247351 8.48644e-07 3.79619e-09 2.718 ||| 0-0 ||| 203 1.17835e+06 +en ||| to build ||| 0.000530504 0.0247351 8.48644e-07 1.11309e-06 2.718 ||| 0-0 ||| 1885 1.17835e+06 +en ||| to by Mr Perry , suggests ||| 1 0.0468744 8.48644e-07 5.76714e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to by Mr Perry , ||| 1 0.0468744 8.48644e-07 4.11939e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to by Mr Perry ||| 1 0.0468744 8.48644e-07 3.45428e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to by Mr ||| 0.027027 0.0468744 8.48644e-07 4.93468e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| to by ||| 0.0307692 0.0468744 6.78915e-06 0.000755926 2.718 ||| 0-1 ||| 260 1.17835e+06 +en ||| to call ||| 0.00137836 0.0247351 1.69729e-06 6.24004e-06 2.718 ||| 0-0 ||| 1451 1.17835e+06 +en ||| to carcass ratio ||| 1 0.0247351 8.48644e-07 7.30816e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to carcass ||| 0.5 0.0247351 8.48644e-07 7.02708e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to carry on ||| 0.00465116 0.22993 8.48644e-07 1.35414e-06 2.718 ||| 0-2 ||| 215 1.17835e+06 +en ||| to carry out in ||| 0.0833333 0.605812 8.48644e-07 2.88412e-08 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| to carry out ||| 0.00153925 0.0247351 2.54593e-06 1.97567e-08 2.718 ||| 0-0 ||| 1949 1.17835e+06 +en ||| to carry ||| 0.00366032 0.0247351 4.24322e-06 5.15787e-06 2.718 ||| 0-0 ||| 1366 1.17835e+06 +en ||| to case law in ||| 0.333333 0.605812 8.48644e-07 7.73979e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to cast ||| 0.0149254 0.0247351 8.48644e-07 9.50061e-07 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| to certain selected ||| 1 0.0247351 8.48644e-07 3.44467e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to certain ||| 0.00121803 0.0247351 8.48644e-07 8.01087e-06 2.718 ||| 0-0 ||| 821 1.17835e+06 +en ||| to challenge in ||| 1 0.605812 8.48644e-07 1.75621e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to change national currency into euros at ||| 1 0.321886 8.48644e-07 1.30523e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| to change ||| 0.000380373 0.0247351 8.48644e-07 3.42921e-06 2.718 ||| 0-0 ||| 2629 1.17835e+06 +en ||| to chase ||| 0.2 0.0247351 8.48644e-07 1.96758e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| to check ||| 0.0015083 0.0247351 8.48644e-07 8.60114e-07 2.718 ||| 0-0 ||| 663 1.17835e+06 +en ||| to chief ||| 1 0.0247351 8.48644e-07 2.22056e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to choose ||| 0.00227273 0.0247351 1.69729e-06 8.91033e-07 2.718 ||| 0-0 ||| 880 1.17835e+06 +en ||| to claim ||| 0.0031348 0.0247351 8.48644e-07 1.3239e-06 2.718 ||| 0-0 ||| 319 1.17835e+06 +en ||| to clearly say ||| 0.5 0.0247351 8.48644e-07 4.90303e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to clearly ||| 0.0149254 0.0247351 8.48644e-07 5.12976e-06 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| to clients in a ||| 1 0.605812 8.48644e-07 2.0007e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to clients in ||| 1 0.605812 8.48644e-07 4.51363e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to close ||| 0.00218102 0.0247351 1.69729e-06 4.16846e-06 2.718 ||| 0-0 ||| 917 1.17835e+06 +en ||| to closely follow ||| 0.333333 0.0247351 8.48644e-07 2.46271e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| to closely ||| 0.0344828 0.0247351 8.48644e-07 2.48758e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| to collate ||| 0.0434783 0.0239955 8.48644e-07 1.96758e-08 2.718 ||| 0-0 0-1 ||| 23 1.17835e+06 +en ||| to combat ||| 0.000234742 0.0247351 8.48644e-07 5.45301e-07 2.718 ||| 0-0 ||| 4260 1.17835e+06 +en ||| to combine ||| 0.00255102 0.0247351 8.48644e-07 2.22056e-07 2.718 ||| 0-0 ||| 392 1.17835e+06 +en ||| to come , as ||| 0.25 0.066968 8.48644e-07 1.61888e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to come , in ||| 0.25 0.605812 8.48644e-07 4.15595e-06 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to come , on ||| 1 0.22993 8.48644e-07 7.47421e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to come , ||| 0.00636943 0.0247351 8.48644e-07 2.84689e-06 2.718 ||| 0-0 ||| 157 1.17835e+06 +en ||| to come and ||| 0.00699301 0.0247351 8.48644e-07 2.99023e-07 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| to come back ||| 0.00347222 0.007257 8.48644e-07 5.59967e-09 2.718 ||| 0-2 ||| 288 1.17835e+06 +en ||| to come forward with ||| 0.00806452 0.0535436 8.48644e-07 4.89557e-10 2.718 ||| 0-3 ||| 124 1.17835e+06 +en ||| to come forward ||| 0.00909091 0.0247351 8.48644e-07 1.32826e-08 2.718 ||| 0-0 ||| 110 1.17835e+06 +en ||| to come from ||| 0.00980392 0.0308834 8.48644e-07 2.87161e-07 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| to come into effect ||| 0.03125 0.525896 8.48644e-07 5.57326e-10 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| to come into ||| 0.0111732 0.525896 1.69729e-06 1.67064e-06 2.718 ||| 0-2 ||| 179 1.17835e+06 +en ||| to come to grips with many of ||| 1 0.0116562 8.48644e-07 3.47297e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| to come to ||| 0.00158228 0.0247351 8.48644e-07 2.12126e-06 2.718 ||| 0-2 ||| 632 1.17835e+06 +en ||| to come up with a proposal in ||| 0.5 0.605812 8.48644e-07 6.72751e-15 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| to come up with ||| 0.00618557 0.0535436 2.54593e-06 3.00078e-09 2.718 ||| 0-3 ||| 485 1.17835e+06 +en ||| to come ||| 0.00395431 0.0247351 7.6378e-06 2.38724e-05 2.718 ||| 0-0 ||| 2276 1.17835e+06 +en ||| to commend ||| 0.00438596 0.0247351 8.48644e-07 1.63028e-07 2.718 ||| 0-0 ||| 228 1.17835e+06 +en ||| to comment in ||| 0.04 0.605812 8.48644e-07 1.87521e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| to comment on ||| 0.00273224 0.22993 1.69729e-06 3.37245e-07 2.718 ||| 0-2 ||| 732 1.17835e+06 +en ||| to commenting on a number of ||| 1 0.22993 8.48644e-07 3.51954e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to commenting on a number ||| 1 0.22993 8.48644e-07 6.47404e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to commenting on a ||| 0.5 0.22993 8.48644e-07 1.30841e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to commenting on ||| 0.2 0.22993 8.48644e-07 2.95181e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to commission a study in ||| 1 0.605812 8.48644e-07 2.21314e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to commit themselves to taking a leading ||| 0.166667 0.0247351 8.48644e-07 4.1912e-20 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to commit themselves to taking a ||| 0.166667 0.0247351 8.48644e-07 4.81194e-16 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to commit themselves to taking ||| 0.166667 0.0247351 8.48644e-07 1.08558e-14 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to commit themselves to ||| 0.025 0.0247351 8.48644e-07 2.55431e-11 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| to commit themselves ||| 0.0178571 0.0247351 8.48644e-07 2.8746e-10 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| to commit ||| 0.00301205 0.0247351 8.48644e-07 6.68978e-07 2.718 ||| 0-0 ||| 332 1.17835e+06 +en ||| to common ||| 0.0588235 0.0247351 8.48644e-07 6.49302e-06 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| to complete it ||| 0.047619 0.0247351 8.48644e-07 3.57897e-08 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| to complete ||| 0.00263852 0.0247351 1.69729e-06 2.01255e-06 2.718 ||| 0-0 ||| 758 1.17835e+06 +en ||| to comply fully with ||| 0.0333333 0.0535436 8.48644e-07 5.49812e-12 2.718 ||| 0-3 ||| 30 1.17835e+06 +en ||| to comply with ||| 0.0026178 0.0535436 2.54593e-06 4.84843e-08 2.718 ||| 0-2 ||| 1146 1.17835e+06 +en ||| to comply ||| 0.00363636 0.0247351 1.69729e-06 1.31547e-06 2.718 ||| 0-0 ||| 550 1.17835e+06 +en ||| to compromise on ||| 0.027027 0.22993 8.48644e-07 3.34293e-07 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| to conceal ||| 0.00719424 0.0247351 8.48644e-07 1.71461e-07 2.718 ||| 0-0 ||| 139 1.17835e+06 +en ||| to conduct an anti-Israeli campaign in ||| 1 0.605812 8.48644e-07 1.35478e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to conduct ||| 0.00141443 0.0247351 8.48644e-07 1.68931e-06 2.718 ||| 0-0 ||| 707 1.17835e+06 +en ||| to confer with ||| 0.166667 0.0535436 8.48644e-07 1.13959e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| to confirm that ||| 0.00543478 0.0247351 8.48644e-07 8.70001e-09 2.718 ||| 0-0 ||| 184 1.17835e+06 +en ||| to confirm ||| 0.00181488 0.0247351 8.48644e-07 5.17193e-07 2.718 ||| 0-0 ||| 551 1.17835e+06 +en ||| to conflicts ||| 0.015873 0.0247351 8.48644e-07 2.83894e-07 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| to conscience ||| 0.333333 0.0247351 8.48644e-07 8.15141e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| to consider whether we should ||| 0.333333 0.0247351 8.48644e-07 5.9095e-14 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| to consider whether we ||| 0.25 0.0247351 8.48644e-07 1.33367e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to consider whether ||| 0.00621118 0.0247351 8.48644e-07 1.1748e-09 2.718 ||| 0-0 ||| 161 1.17835e+06 +en ||| to consider ||| 0.00126984 0.0247351 3.39458e-06 4.47203e-06 2.718 ||| 0-0 ||| 3150 1.17835e+06 +en ||| to considering ||| 0.015625 0.11575 8.48644e-07 2.58222e-05 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| to construct ||| 0.0047619 0.0136903 8.48644e-07 1.96758e-08 2.718 ||| 0-0 0-1 ||| 210 1.17835e+06 +en ||| to consumers , on ||| 1 0.22993 8.48644e-07 3.29136e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to contain ||| 0.00571429 0.0247351 8.48644e-07 9.61304e-07 2.718 ||| 0-0 ||| 175 1.17835e+06 +en ||| to contemplate ||| 0.0125 0.0247351 8.48644e-07 8.15141e-08 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| to contend with ||| 0.00909091 0.0535436 8.48644e-07 8.18431e-09 2.718 ||| 0-2 ||| 110 1.17835e+06 +en ||| to contend ||| 0.0133333 0.0247351 8.48644e-07 2.22056e-07 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| to continue along ||| 0.012987 0.155535 8.48644e-07 1.63569e-08 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| to continue in ||| 0.0175439 0.605812 1.69729e-06 9.49504e-06 2.718 ||| 0-2 ||| 114 1.17835e+06 +en ||| to continue to operate ||| 0.0909091 0.0247351 8.48644e-07 2.80887e-11 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| to continue to ||| 0.000949668 0.0247351 8.48644e-07 5.77957e-07 2.718 ||| 0-0 ||| 1053 1.17835e+06 +en ||| to continue ||| 0.000580215 0.0247351 1.69729e-06 6.50426e-06 2.718 ||| 0-0 ||| 3447 1.17835e+06 +en ||| to contribute to ||| 0.00137174 0.0247351 8.48644e-07 9.71587e-08 2.718 ||| 0-2 ||| 729 1.17835e+06 +en ||| to cool themselves ||| 1 0.0247351 8.48644e-07 3.865e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to cool ||| 0.25 0.0247351 8.48644e-07 8.99466e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to cooperate ||| 0.000729395 0.0247351 8.48644e-07 2.52975e-07 2.718 ||| 0-0 ||| 1371 1.17835e+06 +en ||| to cooperating at ||| 1 0.321886 8.48644e-07 8.88626e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to coordinate ||| 0.00120627 0.0247351 8.48644e-07 7.02708e-08 2.718 ||| 0-0 ||| 829 1.17835e+06 +en ||| to cope with in ||| 0.25 0.605812 8.48644e-07 5.95616e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to cope ||| 0.00578035 0.0247351 8.48644e-07 6.38058e-07 2.718 ||| 0-0 ||| 173 1.17835e+06 +en ||| to corruption ||| 0.015873 0.0247351 8.48644e-07 1.91136e-07 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| to count for anything in ||| 1 0.605812 8.48644e-07 1.35084e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to count on you , ||| 1 0.22993 8.48644e-07 7.75701e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to count on you ||| 0.5 0.22993 8.48644e-07 6.50458e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to count on ||| 0.015625 0.22993 8.48644e-07 2.01461e-07 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| to counter ||| 0.00240385 0.145432 8.48644e-07 1.41462e-05 2.718 ||| 0-1 ||| 416 1.17835e+06 +en ||| to country , ||| 0.0833333 0.0247351 8.48644e-07 1.2064e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| to country ||| 0.012987 0.0247351 8.48644e-07 1.01162e-05 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| to cover all manner of ||| 0.5 0.0116562 8.48644e-07 8.72048e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to cover up ||| 0.0136986 0.0247351 8.48644e-07 7.48693e-09 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| to cover ||| 0.00749625 0.0247351 8.48644e-06 2.19526e-06 2.718 ||| 0-0 ||| 1334 1.17835e+06 +en ||| to create 46 posts ( 21 ||| 1 0.0247351 8.48644e-07 1.79113e-25 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to create 46 posts ( ||| 1 0.0247351 8.48644e-07 2.15799e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to create 46 posts ||| 1 0.0247351 8.48644e-07 2.23765e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to create 46 ||| 1 0.0247351 8.48644e-07 2.2155e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to create internationally competitive ||| 1 0.0446927 8.48644e-07 1.0396e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to create internationally ||| 1 0.0446927 8.48644e-07 5.44296e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to create ||| 0.000499251 0.0247351 2.54593e-06 3.16499e-06 2.718 ||| 0-0 ||| 6009 1.17835e+06 +en ||| to cross ||| 0.00657895 0.0247351 8.48644e-07 3.65408e-07 2.718 ||| 0-0 ||| 152 1.17835e+06 +en ||| to cut a long story ||| 0.4 0.0247351 1.69729e-06 5.60825e-16 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| to cut a long ||| 0.5 0.0247351 1.69729e-06 3.18651e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to cut a ||| 0.4 0.0247351 1.69729e-06 9.41918e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| to cut down on ||| 0.0714286 0.22993 8.48644e-07 3.89465e-10 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| to cut ||| 0.00724638 0.0247351 3.39458e-06 2.12499e-06 2.718 ||| 0-0 ||| 552 1.17835e+06 +en ||| to date , ||| 0.0015528 0.0247351 8.48644e-07 3.42579e-07 2.718 ||| 0-0 ||| 644 1.17835e+06 +en ||| to date in laying down ||| 1 0.605812 8.48644e-07 6.11855e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to date in laying ||| 1 0.605812 8.48644e-07 8.76457e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to date in ||| 0.0597015 0.605812 3.39458e-06 4.19358e-06 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| to date under ||| 0.333333 0.205566 8.48644e-07 5.13512e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| to date with ||| 0.0322581 0.0535436 8.48644e-07 1.05878e-07 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| to date ||| 0.00140384 0.0247351 2.54593e-06 2.87267e-06 2.718 ||| 0-0 ||| 2137 1.17835e+06 +en ||| to deal fairly with ||| 0.125 0.0535436 8.48644e-07 1.42521e-11 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| to deal in ||| 0.037037 0.605812 8.48644e-07 1.74226e-05 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| to deal with in ||| 0.0869565 0.605812 1.69729e-06 1.11409e-07 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| to deal with these problems , ||| 0.142857 0.0535436 8.48644e-07 7.30102e-15 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| to deal with these problems ||| 0.047619 0.0535436 8.48644e-07 6.12221e-14 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| to deal with these ||| 0.00568182 0.0535436 8.48644e-07 4.562e-10 2.718 ||| 0-2 ||| 176 1.17835e+06 +en ||| to deal with ||| 0.00453454 0.0535436 1.4427e-05 4.39881e-07 2.718 ||| 0-2 ||| 3749 1.17835e+06 +en ||| to deal ||| 0.00430108 0.0247351 5.09187e-06 1.19348e-05 2.718 ||| 0-0 ||| 1395 1.17835e+06 +en ||| to death for years ||| 0.5 0.0286209 8.48644e-07 9.44824e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to death for ||| 0.0357143 0.0286209 8.48644e-07 5.55126e-08 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| to death in ||| 0.025641 0.605812 8.48644e-07 2.22809e-06 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| to death ||| 0.00210084 0.0247351 8.48644e-07 1.52628e-06 2.718 ||| 0-0 ||| 476 1.17835e+06 +en ||| to decide between ||| 0.05 0.0247351 8.48644e-07 4.753e-10 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| to decide on ||| 0.00464037 0.22993 1.69729e-06 4.73028e-07 2.718 ||| 0-2 ||| 431 1.17835e+06 +en ||| to decide the ||| 0.016129 0.0247351 8.48644e-07 1.10612e-07 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| to decide ||| 0.00231589 0.0247351 4.24322e-06 1.80174e-06 2.718 ||| 0-0 ||| 2159 1.17835e+06 +en ||| to declining ||| 0.0833333 0.0747283 8.48644e-07 1.07093e-06 2.718 ||| 0-0 0-1 ||| 12 1.17835e+06 +en ||| to defend themselves at law to ||| 1 0.321886 8.48644e-07 5.00081e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to defend themselves at law ||| 0.5 0.321886 8.48644e-07 5.62786e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to defend themselves at ||| 1 0.321886 8.48644e-07 3.19221e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to defend ||| 0.000583771 0.0247351 8.48644e-07 5.87463e-07 2.718 ||| 0-0 ||| 1713 1.17835e+06 +en ||| to delete in ||| 1 0.605812 8.48644e-07 7.38595e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to deliver " EC ||| 1 0.0247351 8.48644e-07 4.61776e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to deliver " ||| 1 0.0247351 8.48644e-07 2.46939e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to deliver ||| 0.0031185 0.0247351 2.54593e-06 1.04282e-06 2.718 ||| 0-0 ||| 962 1.17835e+06 +en ||| to demand the same for chocolate ||| 0.333333 0.0286209 8.48644e-07 1.57011e-17 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| to demand the same for ||| 0.333333 0.0286209 8.48644e-07 2.70708e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| to democracy ||| 0.00148588 0.0247351 8.48644e-07 8.17952e-07 2.718 ||| 0-0 ||| 673 1.17835e+06 +en ||| to deny ||| 0.0037037 0.0247351 8.48644e-07 2.22056e-07 2.718 ||| 0-0 ||| 270 1.17835e+06 +en ||| to deprive working people ||| 0.5 0.0029456 8.48644e-07 8.48298e-15 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to deprive working ||| 0.5 0.0029456 8.48644e-07 9.63756e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to despair under the ||| 1 0.205566 8.48644e-07 4.31855e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to despair under ||| 1 0.205566 8.48644e-07 7.03441e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to destroy ||| 0.00271739 0.0247351 8.48644e-07 2.52975e-07 2.718 ||| 0-0 ||| 368 1.17835e+06 +en ||| to determine ||| 0.00201816 0.0247351 1.69729e-06 6.7741e-07 2.718 ||| 0-0 ||| 991 1.17835e+06 +en ||| to develop there ||| 1 0.0247351 8.48644e-07 5.27301e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to develop ||| 0.000689022 0.0247351 2.54593e-06 1.72023e-06 2.718 ||| 0-0 ||| 4354 1.17835e+06 +en ||| to devote to ||| 0.111111 0.0247351 8.48644e-07 2.42272e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| to diminish ||| 0.0140845 0.0247351 8.48644e-07 5.05949e-08 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| to disappear in ||| 0.166667 0.605812 8.48644e-07 3.24161e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| to disappear on ||| 1 0.22993 8.48644e-07 5.82983e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to disappear ||| 0.00934579 0.0247351 8.48644e-07 2.22056e-07 2.718 ||| 0-0 ||| 107 1.17835e+06 +en ||| to disclose ||| 0.0126582 0.0247351 8.48644e-07 1.12433e-08 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| to discuss ||| 0.000889944 0.0247351 2.54593e-06 1.17212e-06 2.718 ||| 0-0 ||| 3371 1.17835e+06 +en ||| to dispel ||| 0.0102041 0.0247351 8.48644e-07 1.96758e-08 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| to display them in ||| 1 0.605812 8.48644e-07 1.11168e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to divide it into ||| 1 0.525896 8.48644e-07 2.0289e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to do about ||| 0.00806452 0.0401564 8.48644e-07 8.7489e-07 2.718 ||| 0-2 ||| 124 1.17835e+06 +en ||| to do all ||| 0.00485437 0.0247351 8.48644e-07 4.56287e-07 2.718 ||| 0-0 ||| 206 1.17835e+06 +en ||| to do at ||| 0.0681818 0.321886 2.54593e-06 1.22108e-05 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| to do by ||| 0.047619 0.0468744 8.48644e-07 2.59683e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| to do even more in ||| 0.333333 0.605812 8.48644e-07 1.95884e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| to do here ||| 0.0169492 0.0247351 8.48644e-07 1.95805e-07 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| to do in the context of ||| 0.5 0.605812 8.48644e-07 6.31354e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to do in the context ||| 0.333333 0.605812 8.48644e-07 1.16134e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| to do in the ||| 0.011236 0.605812 8.48644e-07 8.65384e-06 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| to do in ||| 0.0757946 0.605812 2.6308e-05 0.000140961 2.718 ||| 0-2 ||| 409 1.17835e+06 +en ||| to do is to ||| 0.00909091 0.0247351 8.48644e-07 2.68913e-07 2.718 ||| 0-3 ||| 110 1.17835e+06 +en ||| to do more to ||| 0.0116279 0.0145151 8.48644e-07 2.85463e-09 2.718 ||| 0-2 0-3 ||| 86 1.17835e+06 +en ||| to do on the ||| 0.0909091 0.22993 8.48644e-07 1.55634e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to do on ||| 0.0727273 0.22993 3.39458e-06 2.53509e-05 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| to do over ||| 0.0909091 0.157937 8.48644e-07 1.22322e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to do so , ||| 0.00192678 0.0247351 8.48644e-07 2.61362e-08 2.718 ||| 0-0 ||| 519 1.17835e+06 +en ||| to do so at ||| 0.027027 0.321886 8.48644e-07 2.77148e-08 2.718 ||| 0-3 ||| 37 1.17835e+06 +en ||| to do so even though I only ||| 1 0.0247351 8.48644e-07 2.6072e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to do so even though I ||| 1 0.0247351 8.48644e-07 2.34228e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to do so even though ||| 1 0.0247351 8.48644e-07 3.31135e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to do so even ||| 0.25 0.0247351 8.48644e-07 1.33361e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to do so in ||| 0.043956 0.605812 6.78915e-06 3.19939e-07 2.718 ||| 0-3 ||| 182 1.17835e+06 +en ||| to do so on ||| 0.0714286 0.22993 1.69729e-06 5.75389e-08 2.718 ||| 0-3 ||| 28 1.17835e+06 +en ||| to do so ||| 0.00470219 0.0247351 1.27297e-05 2.19163e-07 2.718 ||| 0-0 ||| 3190 1.17835e+06 +en ||| to do some thinking ||| 0.142857 0.0455702 8.48644e-07 4.86468e-11 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| to do something in the ||| 0.25 0.605812 8.48644e-07 4.7899e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to do something in ||| 0.0526316 0.605812 8.48644e-07 7.80218e-08 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| to do that , ||| 0.00598802 0.0247351 8.48644e-07 1.93706e-07 2.718 ||| 0-0 ||| 167 1.17835e+06 +en ||| to do that on ||| 0.333333 0.22993 8.48644e-07 4.26443e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to do that ||| 0.00273973 0.0247351 1.69729e-06 1.6243e-06 2.718 ||| 0-0 ||| 730 1.17835e+06 +en ||| to do them in ||| 1 0.605812 1.69729e-06 3.78113e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to do this at ||| 0.142857 0.321886 1.69729e-06 7.88988e-08 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| to do this in ||| 0.0188679 0.605812 8.48644e-07 9.10804e-07 2.718 ||| 0-3 ||| 53 1.17835e+06 +en ||| to do this ||| 0.00251046 0.0247351 2.54593e-06 6.23916e-07 2.718 ||| 0-0 ||| 1195 1.17835e+06 +en ||| to do under ||| 0.0952381 0.205566 1.69729e-06 1.72609e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| to do with the ||| 0.00110132 0.0535436 8.48644e-07 2.18489e-07 2.718 ||| 0-2 ||| 908 1.17835e+06 +en ||| to do with ||| 0.00703443 0.0535436 1.61242e-05 3.55893e-06 2.718 ||| 0-2 ||| 2701 1.17835e+06 +en ||| to do your ||| 0.0909091 0.0247351 8.48644e-07 2.47098e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| to do ||| 0.0081332 0.0247351 8.99563e-05 9.65604e-05 2.718 ||| 0-0 ||| 13033 1.17835e+06 +en ||| to documents in ||| 0.0625 0.605812 8.48644e-07 1.03403e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| to doing this ||| 0.0625 0.0247351 8.48644e-07 6.66723e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| to doing ||| 0.0105263 0.0247351 8.48644e-07 1.03186e-05 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| to dominate ||| 0.0175439 0.0247351 8.48644e-07 8.15141e-08 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| to draw up Parliament ||| 0.5 0.0247351 8.48644e-07 6.51503e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to draw up a new standard and ||| 1 0.0010182 8.48644e-07 4.13132e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| to draw up ||| 0.00183655 0.0247351 1.69729e-06 1.13502e-08 2.718 ||| 0-0 ||| 1089 1.17835e+06 +en ||| to draw ||| 0.00192519 0.0247351 5.94051e-06 3.32802e-06 2.718 ||| 0-0 ||| 3636 1.17835e+06 +en ||| to drive home in ||| 1 0.605812 8.48644e-07 1.25779e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to drive over ||| 0.166667 0.0247351 8.48644e-07 4.08731e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to drive ||| 0.00383142 0.0247351 8.48644e-07 8.48871e-07 2.718 ||| 0-0 ||| 261 1.17835e+06 +en ||| to dry up in ||| 1 0.605812 8.48644e-07 1.25949e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to during ||| 0.0833333 0.226251 8.48644e-07 0.000256916 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| to dwell on ||| 0.012987 0.22993 8.48644e-07 1.84488e-08 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| to each other in ||| 0.25 0.605812 1.69729e-06 1.49215e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| to each other through a ||| 1 0.0366102 8.48644e-07 1.34693e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to each other through ||| 1 0.0366102 8.48644e-07 3.03871e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to each other ||| 0.0117647 0.0247351 1.69729e-06 1.02215e-08 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| to each ||| 0.00451128 0.0247351 2.54593e-06 7.89e-06 2.718 ||| 0-0 ||| 665 1.17835e+06 +en ||| to earlier ||| 0.0123457 0.0247351 8.48644e-07 1.96196e-06 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| to eliminate misconceived ideas is to ||| 1 0.0247351 8.48644e-07 2.22442e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to embark upon a ||| 0.0909091 0.114601 8.48644e-07 2.75033e-11 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to embark upon ||| 0.0232558 0.114601 8.48644e-07 6.2048e-10 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| to emerge from ||| 0.0128205 0.0308834 8.48644e-07 1.02111e-08 2.718 ||| 0-2 ||| 78 1.17835e+06 +en ||| to emerge in ||| 0.285714 0.605812 1.69729e-06 1.2392e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| to emerge ||| 0.0305344 0.0247351 3.39458e-06 8.48871e-07 2.718 ||| 0-0 ||| 131 1.17835e+06 +en ||| to emphasise that social policy is ||| 1 0.207288 8.48644e-07 1.70346e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to emphasise that social policy ||| 1 0.207288 8.48644e-07 5.43521e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to emphasise that social ||| 1 0.207288 8.48644e-07 1.38055e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to emphasise that ||| 0.000909918 0.207288 8.48644e-07 1.33644e-06 2.718 ||| 0-1 ||| 1099 1.17835e+06 +en ||| to emphasise ||| 0.00173671 0.207288 4.24322e-06 7.94481e-05 2.718 ||| 0-1 ||| 2879 1.17835e+06 +en ||| to emphasize relates to ||| 1 0.138965 8.48644e-07 2.30968e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to emphasize relates ||| 1 0.138965 8.48644e-07 2.59929e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to emphasize ||| 0.00207039 0.138965 8.48644e-07 9.25014e-06 2.718 ||| 0-1 ||| 483 1.17835e+06 +en ||| to employment in ||| 0.0526316 0.605812 8.48644e-07 2.00652e-06 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| to enable Member States to ||| 0.0625 0.0247351 8.48644e-07 6.05577e-14 2.718 ||| 0-4 ||| 16 1.17835e+06 +en ||| to enable them to adapt to ||| 0.2 0.0247351 8.48644e-07 3.58063e-16 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| to enable them to adapt ||| 0.142857 0.0247351 8.48644e-07 4.0296e-15 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| to enable them to ||| 0.00555556 0.0247351 8.48644e-07 6.60591e-10 2.718 ||| 0-0 ||| 180 1.17835e+06 +en ||| to enable them ||| 0.00813008 0.0247351 8.48644e-07 7.43421e-09 2.718 ||| 0-0 ||| 123 1.17835e+06 +en ||| to enable ||| 0.000496032 0.0247351 8.48644e-07 2.77148e-06 2.718 ||| 0-0 ||| 2016 1.17835e+06 +en ||| to encroach in even ||| 0.5 0.605812 8.48644e-07 9.98744e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to encroach in ||| 0.5 0.605812 8.48644e-07 1.64132e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to end up in the ||| 0.166667 0.605812 8.48644e-07 3.7381e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| to end up in ||| 0.0666667 0.605812 8.48644e-07 6.08893e-08 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| to endure at ||| 1 0.321886 8.48644e-07 2.06161e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to endure ||| 0.0107527 0.0247351 8.48644e-07 1.63028e-07 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| to engage in ||| 0.00392927 0.605812 1.69729e-06 1.99421e-06 2.718 ||| 0-2 ||| 509 1.17835e+06 +en ||| to engage upon ||| 1 0.114601 8.48644e-07 3.81713e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to engage with ||| 0.00970874 0.0535436 8.48644e-07 5.03491e-08 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| to engage ||| 0.00132275 0.0247351 8.48644e-07 1.36606e-06 2.718 ||| 0-0 ||| 756 1.17835e+06 +en ||| to enjoy ||| 0.00227273 0.0247351 8.48644e-07 1.09341e-06 2.718 ||| 0-0 ||| 440 1.17835e+06 +en ||| to ensure an ongoing supply of ||| 1 0.216817 8.48644e-07 2.43596e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to ensure an ongoing supply ||| 1 0.216817 8.48644e-07 4.48084e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to ensure an ongoing ||| 1 0.216817 8.48644e-07 8.70066e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to ensure both ||| 0.0526316 0.0247351 8.48644e-07 2.08781e-08 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| to ensure that at ||| 0.0625 0.321886 8.48644e-07 2.68109e-08 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| to ensure that their ||| 0.0185185 0.0247351 8.48644e-07 2.45747e-10 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| to ensure that ||| 0.000343672 0.0247351 3.39458e-06 2.12015e-07 2.718 ||| 0-0 ||| 11639 1.17835e+06 +en ||| to ensure ||| 0.00153759 0.0247351 2.54593e-05 1.26038e-05 2.718 ||| 0-0 ||| 19511 1.17835e+06 +en ||| to enter in ||| 0.1 0.605812 8.48644e-07 2.02293e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| to enter into that kind ||| 0.5 0.0247351 8.48644e-07 1.16792e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to enter into that ||| 0.333333 0.0247351 8.48644e-07 2.39327e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| to enter into ||| 0.00385356 0.0247351 1.69729e-06 1.42274e-09 2.718 ||| 0-0 ||| 519 1.17835e+06 +en ||| to enter its port ||| 1 0.194429 8.48644e-07 8.23681e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to enter its ||| 0.25 0.194429 8.48644e-07 6.19309e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| to enter ||| 0.0245902 0.194429 1.78215e-05 4.34694e-05 2.718 ||| 0-1 ||| 854 1.17835e+06 +en ||| to equalise ||| 0.1 0.0247351 8.48644e-07 1.96758e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| to establish , ||| 0.025641 0.0247351 8.48644e-07 2.55761e-07 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| to establish both ||| 0.333333 0.0247351 8.48644e-07 3.55263e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| to establish the necessary ||| 0.333333 0.0247351 8.48644e-07 3.38773e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| to establish the ||| 0.00234192 0.0247351 8.48644e-07 1.31665e-07 2.718 ||| 0-0 ||| 427 1.17835e+06 +en ||| to establish ||| 0.000649913 0.0247351 2.54593e-06 2.14466e-06 2.718 ||| 0-0 ||| 4616 1.17835e+06 +en ||| to establishing ||| 0.00337838 0.0247351 8.48644e-07 1.31547e-06 2.718 ||| 0-0 ||| 296 1.17835e+06 +en ||| to ever happen again , ||| 1 0.0247351 8.48644e-07 3.95931e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to ever happen again ||| 0.25 0.0247351 8.48644e-07 3.32005e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to ever happen ||| 1 0.0247351 8.48644e-07 5.74104e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to ever ||| 0.0526316 0.0247351 8.48644e-07 5.28155e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| to everyone on ||| 0.5 0.22993 8.48644e-07 4.96642e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to examine the document carefully as well ||| 1 0.066968 8.48644e-07 4.04555e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to examine the document carefully as ||| 1 0.066968 8.48644e-07 2.55143e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to excess in ||| 1 0.605812 8.48644e-07 4.43157e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to exercise ||| 0.00134771 0.0247351 8.48644e-07 1.7399e-06 2.718 ||| 0-0 ||| 742 1.17835e+06 +en ||| to exist in a ||| 0.25 0.605812 8.48644e-07 1.67514e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to exist in ||| 0.129032 0.605812 3.39458e-06 3.77914e-06 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| to exist on ||| 0.25 0.22993 8.48644e-07 6.79655e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to existing ||| 0.0208333 0.0247351 8.48644e-07 2.21493e-06 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| to experience ||| 0.00740741 0.0247351 8.48644e-07 1.94228e-06 2.718 ||| 0-0 ||| 135 1.17835e+06 +en ||| to explain ||| 0.00222717 0.0247351 2.54593e-06 7.39248e-07 2.718 ||| 0-0 ||| 1347 1.17835e+06 +en ||| to express , in ||| 0.333333 0.605812 8.48644e-07 4.96678e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to express ||| 0.000623571 0.0247351 2.54593e-06 2.85299e-06 2.718 ||| 0-0 ||| 4811 1.17835e+06 +en ||| to extend ||| 0.00266241 0.0247351 4.24322e-06 1.21428e-06 2.718 ||| 0-0 ||| 1878 1.17835e+06 +en ||| to face in ||| 0.0322581 0.605812 8.48644e-07 6.86483e-06 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| to face ||| 0.00297619 0.0247351 2.54593e-06 4.70252e-06 2.718 ||| 0-0 ||| 1008 1.17835e+06 +en ||| to fall back on ||| 0.0625 0.22993 8.48644e-07 4.75004e-10 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| to farmers in ||| 0.0238095 0.605812 8.48644e-07 1.65363e-06 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| to feel is in ||| 1 0.605812 8.48644e-07 2.17466e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to female entrepreneurs ||| 1 0.0247351 8.48644e-07 1.49986e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to female ||| 0.0714286 0.0247351 8.48644e-07 5.17193e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| to fight their way into ||| 1 0.525896 8.48644e-07 2.70809e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to find from ||| 1 0.0308834 8.48644e-07 1.12558e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to find in ||| 0.047619 0.605812 8.48644e-07 1.36599e-05 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| to find ||| 0.00104341 0.0247351 4.24322e-06 9.35725e-06 2.718 ||| 0-0 ||| 4792 1.17835e+06 +en ||| to finding answers to ||| 0.5 0.0247351 8.48644e-07 2.8755e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to fish in ||| 0.0243902 0.605812 8.48644e-07 1.35819e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| to fit a ||| 0.2 0.0247351 8.48644e-07 4.03679e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| to fit ||| 0.011236 0.0247351 8.48644e-07 9.10709e-07 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| to flee , either inside their own ||| 1 0.188717 8.48644e-07 1.24093e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to flee , either inside their ||| 1 0.188717 8.48644e-07 7.31985e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to flee , either inside ||| 1 0.188717 8.48644e-07 6.31511e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to flight by ||| 0.5 0.0468744 8.48644e-07 5.97181e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to flourish in ||| 0.125 0.605812 8.48644e-07 1.76442e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| to flow where it will ||| 1 0.0247351 8.48644e-07 2.3585e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to flow where it ||| 1 0.0247351 8.48644e-07 2.72621e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to flow where ||| 1 0.0247351 8.48644e-07 1.53303e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to flow ||| 0.0357143 0.0247351 8.48644e-07 5.05949e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| to focus on ||| 0.00302725 0.22993 2.54593e-06 5.71176e-07 2.718 ||| 0-2 ||| 991 1.17835e+06 +en ||| to focus ||| 0.000616143 0.003879 8.48644e-07 1.81271e-06 2.718 ||| 0-1 ||| 1623 1.17835e+06 +en ||| to follow , in ||| 0.5 0.605812 8.48644e-07 4.84445e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to follow in ||| 0.0327869 0.605812 1.69729e-06 4.06227e-06 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| to follow this through in ||| 1 0.605812 8.48644e-07 1.20819e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to follow ||| 0.00182482 0.0247351 2.54593e-06 2.78272e-06 2.718 ||| 0-0 ||| 1644 1.17835e+06 +en ||| to foot a ||| 0.5 0.0247351 8.48644e-07 2.77841e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to foot its share of ||| 1 0.0116562 8.48644e-07 3.60347e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to foot ||| 0.0153846 0.0247351 8.48644e-07 6.26815e-07 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| to form part of ||| 0.0555556 0.0247351 1.69729e-06 8.29273e-10 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| to form part ||| 0.025641 0.0247351 8.48644e-07 1.52541e-08 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| to form ||| 0.0132159 0.0247351 5.09187e-06 1.27949e-05 2.718 ||| 0-0 ||| 454 1.17835e+06 +en ||| to formal ||| 0.166667 0.0247351 8.48644e-07 4.7503e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to formulate ||| 0.00283286 0.0247351 8.48644e-07 1.40542e-07 2.718 ||| 0-0 ||| 353 1.17835e+06 +en ||| to from ||| 0.142857 0.0308834 8.48644e-07 0.000338114 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| to fruition in ||| 0.25 0.605812 8.48644e-07 2.05165e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to fulfil ||| 0.00198216 0.0247351 1.69729e-06 7.19572e-07 2.718 ||| 0-0 ||| 1009 1.17835e+06 +en ||| to function properly at ||| 0.5 0.321886 8.48644e-07 6.5673e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to gain a foothold in ||| 0.2 0.605812 8.48644e-07 1.42086e-13 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| to genuinely ||| 0.0294118 0.0247351 8.48644e-07 9.61304e-07 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| to get a laugh , ||| 1 0.0247351 8.48644e-07 7.14561e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to get a laugh ||| 1 0.0247351 8.48644e-07 5.99189e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to get a ||| 0.00307692 0.0247351 8.48644e-07 5.44717e-07 2.718 ||| 0-0 ||| 325 1.17835e+06 +en ||| to get back to ||| 0.015873 0.0247351 8.48644e-07 7.34462e-10 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| to get back ||| 0.00917431 0.0247351 8.48644e-07 8.26555e-09 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| to get down to ||| 0.0208333 0.0247351 8.48644e-07 7.62307e-10 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| to get down ||| 0.0238095 0.0247351 8.48644e-07 8.57892e-09 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| to get into ||| 0.0238095 0.525896 1.69729e-06 8.60008e-07 2.718 ||| 0-2 ||| 84 1.17835e+06 +en ||| to get on ||| 0.010989 0.22993 8.48644e-07 3.22633e-06 2.718 ||| 0-2 ||| 91 1.17835e+06 +en ||| to get round ||| 0.027027 0.0247351 8.48644e-07 9.42562e-10 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| to get such ||| 0.5 0.0247351 8.48644e-07 2.54246e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to get their act together in ||| 0.25 0.605812 8.48644e-07 2.12184e-15 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| to get things moving ||| 0.0526316 0.0247351 8.48644e-07 3.00015e-13 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| to get things ||| 0.0285714 0.0247351 8.48644e-07 5.05076e-09 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| to get up and ||| 0.111111 0.0247351 8.48644e-07 5.24979e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| to get up ||| 0.0555556 0.0247351 8.48644e-07 4.19115e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| to get ||| 0.0035506 0.0247351 1.1881e-05 1.22889e-05 2.718 ||| 0-0 ||| 3943 1.17835e+06 +en ||| to give a high ||| 0.25 0.0247351 8.48644e-07 1.12726e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to give a ||| 0.0015528 0.0247351 8.48644e-07 7.55029e-07 2.718 ||| 0-0 ||| 644 1.17835e+06 +en ||| to give at least ||| 0.2 0.321886 8.48644e-07 5.28599e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to give at ||| 0.111111 0.321886 8.48644e-07 2.15403e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| to give her ||| 0.0769231 0.0247351 8.48644e-07 4.63485e-09 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| to give in ||| 0.0196078 0.605812 8.48644e-07 2.4866e-05 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| to give it ||| 0.00584795 0.0080472 8.48644e-07 1.48508e-07 2.718 ||| 0-2 ||| 171 1.17835e+06 +en ||| to give itself scope in ||| 1 0.605812 8.48644e-07 1.68259e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to give me a ||| 0.0769231 0.0247351 8.48644e-07 4.54603e-10 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| to give me ||| 0.0166667 0.0247351 8.48644e-07 1.02559e-08 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| to give the speech ||| 0.333333 0.0247351 8.48644e-07 4.70576e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| to give the ||| 0.00123001 0.0247351 8.48644e-07 1.04573e-06 2.718 ||| 0-0 ||| 813 1.17835e+06 +en ||| to give up ||| 0.00396825 0.0247351 8.48644e-07 5.80932e-08 2.718 ||| 0-0 ||| 252 1.17835e+06 +en ||| to give us cause to experience ||| 0.333333 0.0247351 8.48644e-07 5.4471e-17 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| to give us cause to ||| 0.25 0.0247351 8.48644e-07 7.88292e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to give us cause ||| 0.25 0.0247351 8.48644e-07 8.87135e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to give us ||| 0.0060423 0.0247351 1.69729e-06 4.90943e-08 2.718 ||| 0-0 ||| 331 1.17835e+06 +en ||| to give you an ||| 0.0128205 0.0247351 8.48644e-07 2.44443e-10 2.718 ||| 0-0 ||| 78 1.17835e+06 +en ||| to give you ||| 0.00506329 0.0247351 1.69729e-06 5.49965e-08 2.718 ||| 0-0 ||| 395 1.17835e+06 +en ||| to give ||| 0.00290216 0.0247351 1.78215e-05 1.70336e-05 2.718 ||| 0-0 ||| 7236 1.17835e+06 +en ||| to giving my country its ||| 1 0.002535 8.48644e-07 1.01605e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to giving my country ||| 1 0.002535 8.48644e-07 7.13168e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to giving my ||| 1 0.002535 8.48644e-07 1.98157e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to go ahead in ||| 0.2 0.605812 8.48644e-07 2.61558e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to go back and ||| 0.0625 0.0247351 8.48644e-07 1.38487e-10 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| to go back ||| 0.00436681 0.0247351 8.48644e-07 1.1056e-08 2.718 ||| 0-0 ||| 229 1.17835e+06 +en ||| to go forward ||| 0.0142857 0.0247351 8.48644e-07 9.14596e-09 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| to go in ||| 0.0277778 0.605812 2.54593e-06 2.39961e-05 2.718 ||| 0-2 ||| 108 1.17835e+06 +en ||| to go into ||| 0.00358423 0.525896 8.48644e-07 1.15035e-06 2.718 ||| 0-2 ||| 279 1.17835e+06 +en ||| to go off on ||| 1 0.22993 8.48644e-07 1.75643e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to go on a ||| 0.2 0.22993 8.48644e-07 1.9129e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to go on ||| 0.00552486 0.22993 8.48644e-07 4.31555e-06 2.718 ||| 0-2 ||| 181 1.17835e+06 +en ||| to go over to that ||| 0.25 0.157937 8.48644e-07 3.11251e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to go over to ||| 0.142857 0.157937 8.48644e-07 1.85031e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| to go over ||| 0.0392157 0.157937 1.69729e-06 2.08231e-07 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| to go through on ||| 1 0.22993 8.48644e-07 1.98645e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to go to ||| 0.00803213 0.0247351 3.39458e-06 1.46063e-06 2.718 ||| 0-2 ||| 498 1.17835e+06 +en ||| to go ||| 0.00297177 0.0247351 8.48644e-06 1.64377e-05 2.718 ||| 0-0 ||| 3365 1.17835e+06 +en ||| to good account ||| 0.222222 0.233636 1.69729e-06 1.52333e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| to good effect on ||| 0.5 0.22993 8.48644e-07 1.2767e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to govern ||| 0.020979 0.0247351 2.54593e-06 2.52975e-07 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| to grant ||| 0.00101626 0.0247351 8.48644e-07 8.91033e-07 2.718 ||| 0-0 ||| 984 1.17835e+06 +en ||| to greatly ||| 0.111111 0.0517475 8.48644e-07 4.22749e-06 2.718 ||| 0-0 0-1 ||| 9 1.17835e+06 +en ||| to grief on ||| 1 0.22993 8.48644e-07 3.46838e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to grief ||| 0.1 0.0247351 8.48644e-07 1.32109e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| to grips with , to deal with ||| 1 0.0535436 8.48644e-07 5.15657e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| to grips with many of ||| 1 0.0116562 8.48644e-07 4.60196e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to grips with ||| 0.00684932 0.0535436 8.48644e-07 1.79226e-08 2.718 ||| 0-2 ||| 146 1.17835e+06 +en ||| to ground in ||| 0.5 0.605812 8.48644e-07 4.80087e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to grow up ||| 0.0277778 0.0247351 8.48644e-07 2.34865e-09 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| to grow ||| 0.00218818 0.0247351 8.48644e-07 6.88653e-07 2.718 ||| 0-0 ||| 457 1.17835e+06 +en ||| to hand ||| 0.0166667 0.0247351 1.69729e-06 1.11478e-05 2.718 ||| 0-0 ||| 120 1.17835e+06 +en ||| to happen , ||| 0.00564972 0.0247351 8.48644e-07 3.64367e-07 2.718 ||| 0-0 ||| 177 1.17835e+06 +en ||| to happen . here in ||| 1 0.605812 8.48644e-07 2.7396e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to happen at ||| 0.0666667 0.321886 8.48644e-07 3.86375e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| to happen in ||| 0.0289855 0.605812 1.69729e-06 4.46029e-06 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| to happen on ||| 0.0769231 0.22993 8.48644e-07 8.02155e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| to happen within ||| 0.25 0.369196 8.48644e-07 1.07085e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to happen ||| 0.00220507 0.0247351 1.69729e-06 3.05537e-06 2.718 ||| 0-0 ||| 907 1.17835e+06 +en ||| to hark back ||| 0.0909091 0.0247351 8.48644e-07 7.56226e-12 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| to hark ||| 0.1 0.0247351 8.48644e-07 1.12433e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| to haunt us in ||| 0.5 0.605812 8.48644e-07 1.65572e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to have a much regretted place ||| 1 0.0247351 8.48644e-07 5.62724e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to have a much regretted ||| 1 0.0247351 8.48644e-07 3.73903e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to have a much ||| 0.5 0.0247351 8.48644e-07 1.49561e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to have a ||| 0.00196078 0.0247351 4.24322e-06 1.4901e-05 2.718 ||| 0-0 ||| 2550 1.17835e+06 +en ||| to have adopted in ||| 1 0.605812 8.48644e-07 1.00112e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to have an early night ||| 0.5 0.0247351 8.48644e-07 9.81209e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to have an early ||| 0.5 0.0247351 8.48644e-07 1.01156e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to have an ||| 0.00421053 0.0247351 1.69729e-06 1.49417e-06 2.718 ||| 0-0 ||| 475 1.17835e+06 +en ||| to have any ||| 0.00917431 0.0247351 8.48644e-07 5.08356e-07 2.718 ||| 0-0 ||| 109 1.17835e+06 +en ||| to have at its ||| 0.25 0.321886 8.48644e-07 6.05657e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to have at ||| 0.0555556 0.321886 8.48644e-07 4.25112e-05 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| to have been issued ||| 1 0.0247351 8.48644e-07 6.94851e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to have been left ||| 1 0.0247351 8.48644e-07 2.12047e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to have been ||| 0.00909091 0.0247351 4.24322e-06 1.12254e-06 2.718 ||| 0-0 ||| 550 1.17835e+06 +en ||| to have committed forms part of ||| 0.5 0.0116562 8.48644e-07 1.2761e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| to have done so no ||| 0.5 0.0247351 8.48644e-07 2.70829e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to have done so ||| 0.125 0.0247351 8.48644e-07 3.4793e-10 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| to have done ||| 0.0232558 0.0247351 8.48644e-07 1.53293e-07 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| to have found ||| 0.2 0.0247351 8.48644e-07 7.35539e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| to have in ||| 0.0555556 0.605812 1.69729e-06 0.000490747 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| to have included ||| 0.125 0.0247351 8.48644e-07 3.15663e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| to have on ||| 0.0571429 0.22993 1.69729e-06 8.82577e-05 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| to have one 's say in the ||| 1 0.605812 8.48644e-07 2.28571e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to have one 's say in ||| 1 0.605812 8.48644e-07 3.72315e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to have over ||| 0.2 0.157937 8.48644e-07 4.25856e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to have reached ||| 0.0769231 0.0247351 8.48644e-07 3.63063e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| to have some ||| 0.00925926 0.0247351 8.48644e-07 3.6619e-07 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| to have struck ||| 1 0.0247351 8.48644e-07 8.60594e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to have that ||| 0.025 0.0247351 8.48644e-07 5.65491e-06 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| to have to make ||| 0.111111 0.0247351 8.48644e-07 5.19106e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| to have to ||| 0.00402414 0.0247351 1.69729e-06 2.98714e-05 2.718 ||| 0-0 ||| 497 1.17835e+06 +en ||| to have us approve the results of ||| 1 0.0181957 8.48644e-07 1.4001e-18 2.718 ||| 0-0 0-6 ||| 1 1.17835e+06 +en ||| to have ||| 0.00593521 0.0247351 6.11024e-05 0.00033617 2.718 ||| 0-0 ||| 12131 1.17835e+06 +en ||| to having ||| 0.00606061 0.0247351 8.48644e-07 1.07627e-05 2.718 ||| 0-0 ||| 165 1.17835e+06 +en ||| to hear cases ||| 0.25 0.0247351 8.48644e-07 3.65468e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to hear in ||| 0.0952381 0.605812 1.69729e-06 4.16485e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| to hear of no fewer than ||| 1 0.0247351 8.48644e-07 7.81919e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to hear of no fewer ||| 1 0.0247351 8.48644e-07 2.55947e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to hear of no ||| 1 0.0247351 8.48644e-07 1.2073e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to hear of ||| 0.0454545 0.0247351 8.48644e-07 1.551e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| to hear ||| 0.0024558 0.0247351 4.24322e-06 2.85299e-06 2.718 ||| 0-0 ||| 2036 1.17835e+06 +en ||| to heel in ||| 0.5 0.605812 8.48644e-07 2.87231e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to help achieve ||| 0.025 0.0247351 8.48644e-07 1.22482e-09 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| to help him in ||| 0.166667 0.605812 8.48644e-07 2.5087e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| to help in ||| 0.010101 0.605812 8.48644e-07 7.825e-06 2.718 ||| 0-2 ||| 99 1.17835e+06 +en ||| to help ||| 0.000777907 0.0247351 3.39458e-06 5.36025e-06 2.718 ||| 0-0 ||| 5142 1.17835e+06 +en ||| to her in ||| 0.5 0.605812 8.48644e-07 1.11651e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to here in ||| 0.25 0.605812 8.48644e-07 8.32068e-05 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to highlight , in ||| 0.333333 0.605812 8.48644e-07 9.15063e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to highlight ||| 0.000847099 0.0247351 1.69729e-06 5.25625e-07 2.718 ||| 0-0 ||| 2361 1.17835e+06 +en ||| to him at ||| 0.5 0.321886 8.48644e-07 1.13957e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to him in ||| 0.363636 0.605812 3.39458e-06 1.31552e-05 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to him on ||| 0.3 0.22993 2.54593e-06 2.36588e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| to him ||| 0.00301659 0.0247351 1.69729e-06 9.01152e-06 2.718 ||| 0-0 ||| 663 1.17835e+06 +en ||| to hold on ||| 0.0344828 0.22993 8.48644e-07 1.28551e-06 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| to hold their own in ||| 0.166667 0.605812 8.48644e-07 1.40459e-11 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| to hold ||| 0.00431655 0.0247351 5.09187e-06 4.89647e-06 2.718 ||| 0-0 ||| 1390 1.17835e+06 +en ||| to home in ||| 0.166667 0.605812 1.69729e-06 4.16485e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| to honour the ||| 0.0104167 0.0247351 8.48644e-07 3.22691e-08 2.718 ||| 0-0 ||| 96 1.17835e+06 +en ||| to honour ||| 0.00539084 0.0247351 1.69729e-06 5.25625e-07 2.718 ||| 0-0 ||| 371 1.17835e+06 +en ||| to hormones in meat ||| 1 0.605812 8.48644e-07 1.03403e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to hormones in ||| 1 0.605812 8.48644e-07 5.74463e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to host in ||| 1 0.605812 8.48644e-07 7.96041e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to illustrate ||| 0.00558659 0.0247351 8.48644e-07 1.40542e-07 2.718 ||| 0-0 ||| 179 1.17835e+06 +en ||| to imagine ||| 0.00367647 0.0247351 8.48644e-07 5.17193e-07 2.718 ||| 0-0 ||| 272 1.17835e+06 +en ||| to implement ||| 0.000739463 0.0247351 2.54593e-06 1.56844e-06 2.718 ||| 0-0 ||| 4057 1.17835e+06 +en ||| to improve ||| 0.000568101 0.0247351 3.39458e-06 1.22271e-06 2.718 ||| 0-0 ||| 7041 1.17835e+06 +en ||| to in a ||| 0.117647 0.605812 1.69729e-06 0.00181882 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| to in it ||| 0.5 0.605812 8.48644e-07 0.000729699 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| to in terms of ||| 0.333333 0.605812 8.48644e-07 2.44844e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| to in terms ||| 0.5 0.605812 8.48644e-07 4.50379e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| to in the ||| 0.00518135 0.605812 8.48644e-07 0.00251909 2.718 ||| 0-1 ||| 193 1.17835e+06 +en ||| to in written ||| 0.5 0.605812 8.48644e-07 2.05165e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| to in ||| 0.562823 0.605812 0.000277507 0.041033 2.718 ||| 0-1 ||| 581 1.17835e+06 +en ||| to include a number ||| 0.0714286 0.0247351 8.48644e-07 8.16223e-11 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| to include a ||| 0.00555556 0.0247351 8.48644e-07 1.6496e-07 2.718 ||| 0-0 ||| 180 1.17835e+06 +en ||| to include such matters in ||| 0.5 0.605812 8.48644e-07 2.07938e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to include ||| 0.00229961 0.0247351 5.94051e-06 3.72154e-06 2.718 ||| 0-0 ||| 3044 1.17835e+06 +en ||| to increase ||| 0.000874891 0.0247351 3.39458e-06 3.63159e-06 2.718 ||| 0-0 ||| 4572 1.17835e+06 +en ||| to increasing ||| 0.00254453 0.0247351 8.48644e-07 1.45601e-06 2.718 ||| 0-0 ||| 393 1.17835e+06 +en ||| to individual ||| 0.00819672 0.0247351 8.48644e-07 3.97451e-06 2.718 ||| 0-0 ||| 122 1.17835e+06 +en ||| to indulge in ||| 0.0294118 0.605812 8.48644e-07 2.95438e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| to influence ||| 0.0121655 0.108638 4.24322e-06 3.45214e-05 2.718 ||| 0-1 ||| 411 1.17835e+06 +en ||| to insist on ||| 0.00958466 0.22993 2.54593e-06 1.56446e-07 2.718 ||| 0-2 ||| 313 1.17835e+06 +en ||| to insist ||| 0.00179533 0.221585 8.48644e-07 3.97285e-05 2.718 ||| 0-1 ||| 557 1.17835e+06 +en ||| to instil ||| 0.0416667 0.0247351 8.48644e-07 1.96758e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| to interfere ||| 0.00454545 0.0247351 8.48644e-07 7.02708e-08 2.718 ||| 0-0 ||| 220 1.17835e+06 +en ||| to intervene in ||| 0.00332226 0.605812 8.48644e-07 2.95438e-07 2.718 ||| 0-2 ||| 301 1.17835e+06 +en ||| to introduce in ||| 0.1 0.605812 8.48644e-07 2.09679e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| to introduce private ||| 0.25 0.0247351 8.48644e-07 3.41848e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to introduce this in relation to ||| 1 0.605812 8.48644e-07 2.92901e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to introduce this in relation ||| 1 0.605812 8.48644e-07 3.29627e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to introduce this in ||| 1 0.605812 8.48644e-07 1.35482e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to introduce ||| 0.000780336 0.0247351 1.69729e-06 1.43633e-06 2.718 ||| 0-0 ||| 2563 1.17835e+06 +en ||| to invent ||| 0.0178571 0.0167923 8.48644e-07 1.96758e-08 2.718 ||| 0-0 0-1 ||| 56 1.17835e+06 +en ||| to invest in ||| 0.00166945 0.605812 8.48644e-07 3.85711e-07 2.718 ||| 0-2 ||| 599 1.17835e+06 +en ||| to investigate ||| 0.00170648 0.0247351 8.48644e-07 1.51785e-07 2.718 ||| 0-0 ||| 586 1.17835e+06 +en ||| to involve it in ||| 0.5 0.605812 8.48644e-07 3.59741e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to is ||| 0.010101 0.0247351 8.48644e-07 0.000880945 2.718 ||| 0-0 ||| 99 1.17835e+06 +en ||| to issues linked to ||| 1 0.0247351 8.48644e-07 2.61943e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to issues linked ||| 1 0.0247351 8.48644e-07 2.94787e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to issues relating ||| 0.0769231 0.0325028 8.48644e-07 4.82043e-09 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| to issues ||| 0.00487805 0.0247351 8.48644e-07 7.06924e-06 2.718 ||| 0-0 ||| 205 1.17835e+06 +en ||| to it , in ||| 0.125 0.605812 8.48644e-07 8.702e-05 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| to it , ||| 0.00251256 0.0163912 8.48644e-07 9.24461e-06 2.718 ||| 0-0 0-1 ||| 398 1.17835e+06 +en ||| to it . ||| 0.00118624 6.3e-05 8.48644e-07 1.27995e-07 2.718 ||| 0-2 ||| 843 1.17835e+06 +en ||| to it at ||| 0.0833333 0.321886 1.69729e-06 6.32105e-05 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| to it by ||| 0.0138889 0.0468744 8.48644e-07 1.34428e-05 2.718 ||| 0-2 ||| 72 1.17835e+06 +en ||| to it in ||| 0.220339 0.605812 2.20648e-05 0.000729699 2.718 ||| 0-2 ||| 118 1.17835e+06 +en ||| to it on ||| 0.0714286 0.22993 8.48644e-07 0.000131232 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| to it out at ||| 1 0.321886 8.48644e-07 2.42121e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to it that ||| 0.00454545 0.0247351 8.48644e-07 8.40837e-06 2.718 ||| 0-0 ||| 220 1.17835e+06 +en ||| to it within ||| 0.333333 0.369196 8.48644e-07 1.7519e-05 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| to it ||| 0.00394789 0.0247351 8.48644e-06 0.000499856 2.718 ||| 0-0 ||| 2533 1.17835e+06 +en ||| to its conducting a ||| 1 0.0247351 8.48644e-07 2.16558e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to its conducting ||| 1 0.0247351 8.48644e-07 4.8856e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to its task ||| 0.142857 0.0247351 8.48644e-07 5.04578e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| to its ||| 0.00229621 0.0247351 6.78915e-06 4.00459e-05 2.718 ||| 0-0 ||| 3484 1.17835e+06 +en ||| to join ||| 0.00199104 0.0247351 3.39458e-06 1.31547e-06 2.718 ||| 0-0 ||| 2009 1.17835e+06 +en ||| to just ||| 0.00584795 0.0247351 8.48644e-07 3.54642e-05 2.718 ||| 0-0 ||| 171 1.17835e+06 +en ||| to keep in ||| 0.0175439 0.605812 8.48644e-07 6.39295e-06 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| to keep to ||| 0.00588235 0.0247351 8.48644e-07 3.89134e-07 2.718 ||| 0-2 ||| 170 1.17835e+06 +en ||| to keep ||| 0.00180375 0.0247351 4.24322e-06 4.37927e-06 2.718 ||| 0-0 ||| 2772 1.17835e+06 +en ||| to know the Commission 's thinking in ||| 1 0.605812 8.48644e-07 5.35707e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| to know ||| 0.00135823 0.0247351 3.39458e-06 7.25194e-06 2.718 ||| 0-0 ||| 2945 1.17835e+06 +en ||| to lapse back into ||| 1 0.525896 8.48644e-07 4.76301e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to large-scale ||| 0.0769231 0.0092205 8.48644e-07 1.33287e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| to lay on ||| 0.5 0.22993 8.48644e-07 3.05513e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to lead by example . it is ||| 1 0.0468744 8.48644e-07 7.15114e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to lead by example . it ||| 1 0.0468744 8.48644e-07 2.28171e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to lead by example . ||| 0.0666667 0.0468744 8.48644e-07 1.28307e-13 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| to lead by example ||| 0.04 0.0468744 8.48644e-07 4.23596e-11 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| to lead by ||| 0.037037 0.0468744 8.48644e-07 1.45516e-07 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| to lead to ||| 0.0106952 0.0247351 1.69729e-06 1.5209e-07 2.718 ||| 0-0 0-2 ||| 187 1.17835e+06 +en ||| to learn about ||| 0.0232558 0.0401564 8.48644e-07 8.88821e-09 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| to learn at ||| 0.0909091 0.321886 8.48644e-07 1.24052e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to learn in ||| 0.0909091 0.605812 8.48644e-07 1.43205e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to learn ||| 0.00114025 0.0247351 8.48644e-07 9.8098e-07 2.718 ||| 0-0 ||| 877 1.17835e+06 +en ||| to leave behind ||| 0.05 0.0247351 8.48644e-07 2.39258e-10 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| to leave it ||| 0.016129 0.0247351 8.48644e-07 4.74863e-08 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| to leave on Sunday ||| 1 0.22993 8.48644e-07 3.50528e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to leave on ||| 0.333333 0.22993 8.48644e-07 7.01055e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| to leave ||| 0.00249792 0.0247351 2.54593e-06 2.67029e-06 2.718 ||| 0-0 ||| 1201 1.17835e+06 +en ||| to less ||| 0.00943396 0.0247351 8.48644e-07 4.78403e-06 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| to levy ||| 0.03125 0.0247351 8.48644e-07 1.71461e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| to life in ||| 0.0909091 0.605812 8.48644e-07 6.21651e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to light , when ||| 1 0.142731 8.48644e-07 1.09643e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to light - and since we ||| 1 0.0054082 8.48644e-07 2.24169e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to light in ||| 0.0689655 0.605812 1.69729e-06 7.13154e-06 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| to light of ||| 0.25 0.0116562 8.48644e-07 2.10604e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to light upon ||| 1 0.114601 8.48644e-07 1.36506e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to light ||| 0.0028169 0.0247351 8.48644e-07 4.88522e-06 2.718 ||| 0-0 ||| 355 1.17835e+06 +en ||| to limit ||| 0.00125945 0.0247351 8.48644e-07 1.36606e-06 2.718 ||| 0-0 ||| 794 1.17835e+06 +en ||| to link them into ||| 1 0.525896 8.48644e-07 1.29274e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to listen to ||| 0.00190476 0.0247351 8.48644e-07 3.77146e-08 2.718 ||| 0-2 ||| 525 1.17835e+06 +en ||| to listen ||| 0.00404858 0.0247351 1.69729e-06 4.24435e-07 2.718 ||| 0-0 ||| 494 1.17835e+06 +en ||| to live in ||| 0.0117302 0.605812 3.39458e-06 4.13613e-06 2.718 ||| 0-2 ||| 341 1.17835e+06 +en ||| to live under ||| 0.047619 0.205566 8.48644e-07 5.06477e-08 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| to live with ||| 0.00645161 0.0535436 8.48644e-07 1.04428e-07 2.718 ||| 0-2 ||| 155 1.17835e+06 +en ||| to look after ||| 0.00653595 0.0144723 8.48644e-07 6.87443e-09 2.718 ||| 0-2 ||| 153 1.17835e+06 +en ||| to look at their own record ||| 0.333333 0.321886 8.48644e-07 1.13611e-16 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| to look at their own ||| 0.25 0.321886 8.48644e-07 2.03604e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to look at their ||| 0.1 0.321886 8.48644e-07 1.20099e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| to look at them from ||| 1 0.0308834 8.48644e-07 1.10706e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to look at things in ||| 1 0.605812 8.48644e-07 2.05854e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to look at ||| 0.00386847 0.321886 5.09187e-06 1.03614e-06 2.718 ||| 0-2 ||| 1551 1.17835e+06 +en ||| to look in ||| 0.0285714 0.605812 8.48644e-07 1.19611e-05 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| to look into ||| 0.00306748 0.525896 8.48644e-07 5.73404e-07 2.718 ||| 0-2 ||| 326 1.17835e+06 +en ||| to look like in ||| 1 0.605812 8.48644e-07 2.12418e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to look towards ||| 0.0833333 0.0616136 8.48644e-07 2.58037e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| to look ||| 0.00205058 0.0247351 2.54593e-06 8.19357e-06 2.718 ||| 0-0 ||| 1463 1.17835e+06 +en ||| to looking at ||| 0.0714286 0.321886 8.48644e-07 3.76067e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| to lorries weighing under 12 tonnes in ||| 1 0.205566 8.48644e-07 3.52811e-26 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to lorries weighing under 12 tonnes ||| 1 0.205566 8.48644e-07 1.6483e-24 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to lorries weighing under 12 ||| 1 0.205566 8.48644e-07 8.15991e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to lorries weighing under ||| 1 0.205566 8.48644e-07 5.82851e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to lose all confidence in ||| 0.5 0.605812 8.48644e-07 1.98316e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to lose their character ||| 1 0.0247351 8.48644e-07 1.43428e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to lose their ||| 0.030303 0.0247351 8.48644e-07 1.07841e-09 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| to lose ||| 0.00235849 0.0247351 8.48644e-07 9.30385e-07 2.718 ||| 0-0 ||| 424 1.17835e+06 +en ||| to maintain ||| 0.000385802 0.0247351 8.48644e-07 1.28455e-06 2.718 ||| 0-0 ||| 2592 1.17835e+06 +en ||| to maintaining ||| 0.00495049 0.0247351 8.48644e-07 5.05949e-07 2.718 ||| 0-0 ||| 202 1.17835e+06 +en ||| to make a ||| 0.00150716 0.0247351 3.39458e-06 2.16516e-06 2.718 ||| 0-0 ||| 2654 1.17835e+06 +en ||| to make any mistake about ||| 1 0.0247351 8.48644e-07 1.92222e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to make any mistake ||| 0.5 0.0247351 8.48644e-07 1.35913e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to make any ||| 0.00552486 0.0247351 8.48644e-07 7.38658e-08 2.718 ||| 0-0 ||| 181 1.17835e+06 +en ||| to make back in ||| 1 0.605812 8.48644e-07 4.79612e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to make bio ||| 0.2 0.0247351 8.48644e-07 5.37313e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| to make good legislation on ||| 1 0.22993 8.48644e-07 5.34043e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to make in line ||| 1 0.605812 8.48644e-07 2.09928e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to make in respect ||| 0.5 0.605812 8.48644e-07 3.08475e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to make in ||| 0.0779221 0.605812 5.09187e-06 7.13072e-05 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| to make is about ||| 0.166667 0.0401564 8.48644e-07 1.38708e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| to make it a ||| 0.0131579 0.0247351 8.48644e-07 3.85036e-08 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| to make it clear ||| 0.0016129 0.0080472 8.48644e-07 1.41772e-10 2.718 ||| 0-2 ||| 620 1.17835e+06 +en ||| to make it ||| 0.00266489 0.0247351 3.39458e-06 8.68649e-07 2.718 ||| 0-0 ||| 1501 1.17835e+06 +en ||| to make its presence felt in ||| 0.2 0.605812 8.48644e-07 2.23725e-16 2.718 ||| 0-5 ||| 5 1.17835e+06 +en ||| to make on ||| 0.0645161 0.22993 3.39458e-06 1.28241e-05 2.718 ||| 0-2 ||| 62 1.17835e+06 +en ||| to make over ||| 0.5 0.157937 8.48644e-07 6.18783e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to make some gains in terms ||| 0.5 0.605812 8.48644e-07 7.33202e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to make some gains in ||| 0.5 0.605812 8.48644e-07 6.68005e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to make some ||| 0.00436681 0.0247351 8.48644e-07 5.32086e-08 2.718 ||| 0-0 ||| 229 1.17835e+06 +en ||| to make the ||| 0.000511247 0.0247351 8.48644e-07 2.99878e-06 2.718 ||| 0-0 ||| 1956 1.17835e+06 +en ||| to make their own ||| 0.0188679 0.0247351 8.48644e-07 9.59847e-11 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| to make their ||| 0.00588235 0.0247351 8.48644e-07 5.66181e-08 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| to make these ||| 0.00877193 0.0247351 8.48644e-07 5.06588e-08 2.718 ||| 0-0 ||| 114 1.17835e+06 +en ||| to make this fundamental objective ||| 1 0.0013296 8.48644e-07 2.42934e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to make this fundamental ||| 1 0.0013296 8.48644e-07 3.6313e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to make this ||| 0.0017331 0.0013296 8.48644e-07 7.36573e-08 2.718 ||| 0-2 ||| 577 1.17835e+06 +en ||| to make to ||| 0.0123457 0.0247351 8.48644e-07 4.34042e-06 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| to make up our ||| 0.111111 0.0247351 8.48644e-07 2.29796e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| to make up ||| 0.0075188 0.0247351 8.48644e-07 1.66591e-07 2.718 ||| 0-0 ||| 133 1.17835e+06 +en ||| to make use of it ||| 0.0555556 0.0247351 8.48644e-07 2.29599e-11 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| to make use of ||| 0.00607903 0.0247351 1.69729e-06 1.2911e-09 2.718 ||| 0-0 ||| 329 1.17835e+06 +en ||| to make use ||| 0.00246914 0.0247351 8.48644e-07 2.37492e-08 2.718 ||| 0-0 ||| 405 1.17835e+06 +en ||| to make way ||| 0.0416667 0.0247351 8.48644e-07 1.05294e-07 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| to make ||| 0.00300903 0.0247351 4.83727e-05 4.88466e-05 2.718 ||| 0-0 ||| 18943 1.17835e+06 +en ||| to many times in ||| 0.333333 0.605812 8.48644e-07 1.42979e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to mark ||| 0.00649351 0.0135601 8.48644e-07 7.58924e-08 2.718 ||| 0-0 0-1 ||| 154 1.17835e+06 +en ||| to maximise ||| 0.00657895 0.0247351 8.48644e-07 3.09191e-08 2.718 ||| 0-0 ||| 152 1.17835e+06 +en ||| to me , in ||| 0.142857 0.605812 8.48644e-07 2.94631e-06 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| to me : ||| 0.0588235 0.0247351 8.48644e-07 5.70001e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| to me at ||| 0.2 0.321886 1.69729e-06 2.14017e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| to me in ||| 0.0882353 0.605812 2.54593e-06 2.4706e-05 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| to me on ||| 0.2 0.22993 1.69729e-06 4.44322e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| to me that ||| 0.00387597 0.0247351 8.48644e-07 2.84689e-07 2.718 ||| 0-0 ||| 258 1.17835e+06 +en ||| to me to be designed largely with ||| 1 0.0535436 8.48644e-07 2.56536e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| to me to be ||| 0.0163934 0.0247351 8.48644e-07 2.72539e-08 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| to me to ||| 0.00558659 0.0247351 8.48644e-07 1.50384e-06 2.718 ||| 0-0 ||| 179 1.17835e+06 +en ||| to me when ||| 0.166667 0.142731 8.48644e-07 3.18511e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| to me ||| 0.00240746 0.0247351 6.78915e-06 1.6924e-05 2.718 ||| 0-0 ||| 3323 1.17835e+06 +en ||| to mean that ||| 0.0125 0.0247351 8.48644e-07 1.21847e-07 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| to mean ||| 0.0117188 0.0247351 2.54593e-06 7.24351e-06 2.718 ||| 0-0 ||| 256 1.17835e+06 +en ||| to measure it in ||| 1 0.605812 8.48644e-07 5.46544e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to meet the people ||| 0.5 0.0247351 1.69729e-06 1.84697e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to meet the requirements ||| 0.0175439 0.0011669 8.48644e-07 1.50434e-12 2.718 ||| 0-2 ||| 57 1.17835e+06 +en ||| to meet the ||| 0.00224888 0.0011669 2.54593e-06 3.09535e-08 2.718 ||| 0-2 ||| 1334 1.17835e+06 +en ||| to meet ||| 0.000570613 0.0247351 1.69729e-06 3.41797e-06 2.718 ||| 0-0 ||| 3505 1.17835e+06 +en ||| to meeting ||| 0.00578035 0.0001736 8.48644e-07 1.24401e-07 2.718 ||| 0-1 ||| 173 1.17835e+06 +en ||| to mention ||| 0.00223642 0.0247351 5.94051e-06 2.73213e-06 2.718 ||| 0-0 ||| 3130 1.17835e+06 +en ||| to mind , ||| 0.166667 0.0247351 1.69729e-06 8.44381e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| to mind in the ||| 1 0.605812 8.48644e-07 6.34559e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to mind in ||| 0.111111 0.605812 8.48644e-07 1.03362e-05 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| to mind is ||| 0.0714286 0.0247351 8.48644e-07 2.2191e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| to mind ||| 0.027027 0.0247351 5.94051e-06 7.08048e-06 2.718 ||| 0-0 ||| 259 1.17835e+06 +en ||| to miss ||| 0.0138889 0.0247351 8.48644e-07 2.33299e-07 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| to monitor ||| 0.000549753 0.0247351 8.48644e-07 4.24435e-07 2.718 ||| 0-0 ||| 1819 1.17835e+06 +en ||| to more ||| 0.00364299 0.0145151 1.69729e-06 9.35163e-06 2.718 ||| 0-0 0-1 ||| 549 1.17835e+06 +en ||| to motions ||| 0.142857 0.0247351 8.48644e-07 1.63028e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| to move and ||| 0.0185185 0.0247351 8.48644e-07 5.38333e-08 2.718 ||| 0-0 ||| 54 1.17835e+06 +en ||| to move in ||| 0.026087 0.605812 2.54593e-06 6.27395e-06 2.718 ||| 0-2 ||| 115 1.17835e+06 +en ||| to move into ||| 0.0285714 0.525896 8.48644e-07 3.00767e-07 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| to move on to ||| 0.0131579 0.127333 8.48644e-07 3.17154e-08 2.718 ||| 0-2 0-3 ||| 76 1.17835e+06 +en ||| to move to ||| 0.0078125 0.0247351 8.48644e-07 3.81891e-07 2.718 ||| 0-2 ||| 128 1.17835e+06 +en ||| to move towards low ||| 0.25 0.0616136 8.48644e-07 4.87252e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to move towards ||| 0.00630915 0.0616136 1.69729e-06 1.35348e-08 2.718 ||| 0-2 ||| 317 1.17835e+06 +en ||| to move ||| 0.00257334 0.0247351 4.24322e-06 4.29776e-06 2.718 ||| 0-0 ||| 1943 1.17835e+06 +en ||| to my home in ||| 0.2 0.605812 8.48644e-07 2.67842e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to my ||| 0.000594884 0.0247351 1.69729e-06 1.80764e-05 2.718 ||| 0-0 ||| 3362 1.17835e+06 +en ||| to myself that in ||| 1 0.605812 8.48644e-07 1.07333e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to neighbouring countries and are in ||| 1 0.605812 8.48644e-07 1.80624e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to no ||| 0.00662252 0.0247351 8.48644e-07 2.18795e-05 2.718 ||| 0-0 ||| 151 1.17835e+06 +en ||| to note that in ||| 0.0526316 0.605812 8.48644e-07 7.20612e-08 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| to note ||| 0.0016142 0.0247351 1.69729e-06 2.93451e-06 2.718 ||| 0-0 ||| 1239 1.17835e+06 +en ||| to nothing , but ||| 1 0.0247351 8.48644e-07 4.26316e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to nothing , ||| 0.0588235 0.0247351 8.48644e-07 6.23816e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| to nothing ||| 0.00492611 0.0247351 8.48644e-07 5.23095e-06 2.718 ||| 0-0 ||| 203 1.17835e+06 +en ||| to nought ||| 0.166667 0.0247351 8.48644e-07 1.12433e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to now , ||| 0.0384615 0.0247351 8.48644e-07 6.90488e-06 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| to now ||| 0.0238095 0.0247351 2.54593e-06 5.79003e-05 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| to obstruct ||| 0.0188679 0.0247351 8.48644e-07 3.93516e-08 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| to obtain funding on ||| 0.5 0.22993 8.48644e-07 2.36391e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to obtain in ||| 0.2 0.605812 1.69729e-06 2.46609e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| to obtain ||| 0.000599161 0.0247351 8.48644e-07 1.68931e-06 2.718 ||| 0-0 ||| 1669 1.17835e+06 +en ||| to obtaining an expert opinion on ||| 1 0.22993 8.48644e-07 1.36995e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to occur in ||| 0.3 0.605812 2.54593e-06 1.83007e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| to occur ||| 0.0138889 0.0247351 8.48644e-07 1.25363e-06 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| to offer , in ||| 0.25 0.605812 8.48644e-07 5.59803e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to offer you ||| 0.0204082 0.0247351 8.48644e-07 1.03822e-08 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| to offer ||| 0.001868 0.0247351 2.54593e-06 3.21559e-06 2.718 ||| 0-0 ||| 1606 1.17835e+06 +en ||| to office in ||| 0.125 0.605812 8.48644e-07 4.2223e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| to official ||| 0.030303 0.0247351 8.48644e-07 1.09341e-06 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| to on a ||| 0.4 0.22993 1.69729e-06 0.000327104 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| to on ||| 0.272727 0.22993 7.6378e-06 0.00737953 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| to one another ||| 0.0298507 0.0247351 1.69729e-06 2.82462e-08 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| to one of ||| 0.00344828 0.0181957 8.48644e-07 1.59765e-06 2.718 ||| 0-0 0-2 ||| 290 1.17835e+06 +en ||| to one part of ||| 0.25 0.0181957 8.48644e-07 1.90472e-09 2.718 ||| 0-0 0-3 ||| 4 1.17835e+06 +en ||| to one ||| 0.00565428 0.0247351 5.94051e-06 0.000117155 2.718 ||| 0-0 ||| 1238 1.17835e+06 +en ||| to only think of ||| 1 0.0116562 8.48644e-07 5.1592e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to operate from ||| 0.111111 0.0247351 8.48644e-07 2.19991e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| to operate in ||| 0.0241935 0.605812 2.54593e-06 1.99421e-06 2.718 ||| 0-2 ||| 124 1.17835e+06 +en ||| to operate on ||| 0.0294118 0.22993 8.48644e-07 3.58645e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| to operate particularly in ||| 0.5 0.605812 8.48644e-07 3.55966e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to operate through ||| 0.25 0.0247351 8.48644e-07 6.28799e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to operate throughout ||| 0.25 0.309047 8.48644e-07 1.25271e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to operate ||| 0.00231481 0.0247351 1.69729e-06 1.36606e-06 2.718 ||| 0-0 ||| 864 1.17835e+06 +en ||| to opt in to ||| 0.5 0.605812 8.48644e-07 3.79197e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to opt in ||| 0.142857 0.605812 1.69729e-06 4.26744e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| to order , ||| 0.142857 0.0247351 8.48644e-07 1.7853e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| to order ||| 0.00884956 0.0247351 8.48644e-07 1.49705e-05 2.718 ||| 0-0 ||| 113 1.17835e+06 +en ||| to organise ||| 0.0014245 0.0247351 8.48644e-07 2.92326e-07 2.718 ||| 0-0 ||| 702 1.17835e+06 +en ||| to other European measures ||| 0.0833333 0.0247351 8.48644e-07 2.51933e-11 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| to other European ||| 0.0769231 0.0247351 8.48644e-07 1.21766e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| to other parts ||| 0.0142857 0.0247351 8.48644e-07 2.12295e-09 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| to other ||| 0.00191388 0.0247351 3.39458e-06 3.64143e-05 2.718 ||| 0-0 ||| 2090 1.17835e+06 +en ||| to our attention in ||| 1 0.605812 8.48644e-07 1.47898e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to our care ||| 0.25 0.0247351 8.48644e-07 3.93542e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to our hearts ||| 0.025 0.0247351 8.48644e-07 4.61394e-10 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| to our own ||| 0.00421941 0.0247351 8.48644e-07 6.57312e-08 2.718 ||| 0-0 ||| 237 1.17835e+06 +en ||| to our ||| 0.00104712 0.0247351 5.94051e-06 3.87726e-05 2.718 ||| 0-0 ||| 6685 1.17835e+06 +en ||| to outdo each other in ||| 0.5 0.605812 8.48644e-07 5.96861e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to overlook ||| 0.0131579 0.0247351 8.48644e-07 1.12433e-07 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| to participate in decision making whenever it ||| 1 0.605812 8.48644e-07 6.49144e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to participate in decision making whenever ||| 1 0.605812 8.48644e-07 3.65032e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to participate in decision making ||| 0.125 0.605812 8.48644e-07 5.98414e-14 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| to participate in decision ||| 0.0833333 0.605812 8.48644e-07 1.55553e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| to participate in the work ||| 0.0714286 0.605812 8.48644e-07 3.84295e-11 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| to participate in the ||| 0.0026738 0.605812 8.48644e-07 6.07101e-08 2.718 ||| 0-2 ||| 374 1.17835e+06 +en ||| to participate in ||| 0.00203874 0.605812 1.69729e-06 9.88896e-07 2.718 ||| 0-2 ||| 981 1.17835e+06 +en ||| to participate ||| 0.000648929 0.0247351 8.48644e-07 6.7741e-07 2.718 ||| 0-0 ||| 1541 1.17835e+06 +en ||| to pass from ||| 0.0909091 0.0308834 8.48644e-07 1.93401e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to pass in ||| 0.166667 0.605812 8.48644e-07 2.34709e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| to pass on ||| 0.011976 0.22993 1.69729e-06 4.22109e-07 2.718 ||| 0-2 ||| 167 1.17835e+06 +en ||| to pass ||| 0.00209644 0.0247351 8.48644e-07 1.60779e-06 2.718 ||| 0-0 ||| 477 1.17835e+06 +en ||| to pay at ||| 0.2 0.321886 8.48644e-07 5.09005e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to pay damages in the ||| 1 0.605812 8.48644e-07 1.15435e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to pay damages in ||| 1 0.605812 8.48644e-07 1.8803e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to pay ||| 0.0011107 0.0247351 2.54593e-06 4.02511e-06 2.718 ||| 0-0 ||| 2701 1.17835e+06 +en ||| to penetrate through ||| 1 0.323741 8.48644e-07 1.25158e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to penetrate ||| 0.0882353 0.323741 2.54593e-06 2.71906e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| to people 's ||| 0.0357143 0.0247351 8.48644e-07 4.71166e-08 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| to people living in ||| 0.142857 0.605812 8.48644e-07 3.02663e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| to people ||| 0.00337079 0.0247351 2.54593e-06 2.47409e-05 2.718 ||| 0-0 ||| 890 1.17835e+06 +en ||| to people ’ ||| 0.25 0.0247351 8.48644e-07 4.31012e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to perform ||| 0.00282486 0.0129351 8.48644e-07 1.96758e-08 2.718 ||| 0-0 0-1 ||| 354 1.17835e+06 +en ||| to perhaps ||| 0.0357143 0.0247351 8.48644e-07 4.34835e-06 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| to persist ||| 0.0178571 0.0247351 8.48644e-07 1.71461e-07 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| to pick or to ||| 0.5 0.0247351 8.48644e-07 5.65402e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to pick up ||| 0.00680272 0.0247351 8.48644e-07 1.89809e-09 2.718 ||| 0-0 ||| 147 1.17835e+06 +en ||| to pick ||| 0.00943396 0.0247351 8.48644e-07 5.56544e-07 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| to place ||| 0.00179856 0.0247351 8.48644e-07 4.2303e-05 2.718 ||| 0-0 ||| 556 1.17835e+06 +en ||| to plan for ||| 0.0243902 0.0286209 8.48644e-07 7.47324e-08 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| to plan in ||| 0.1 0.605812 8.48644e-07 2.99952e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| to play , and ||| 0.0625 0.0247351 8.48644e-07 1.08328e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| to play , ||| 0.0131579 0.0247351 8.48644e-07 8.64828e-07 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| to play for high stakes in ||| 1 0.605812 8.48644e-07 4.85911e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to play for ||| 0.05 0.0286209 8.48644e-07 2.63761e-07 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| to play in a ||| 0.333333 0.605812 8.48644e-07 4.69256e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| to play in all this ||| 0.5 0.605812 8.48644e-07 3.23235e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to play in all ||| 0.2 0.605812 8.48644e-07 5.00256e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to play in creating ||| 0.0909091 0.605812 8.48644e-07 6.17194e-10 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to play in ||| 0.166324 0.605812 6.87402e-05 1.05865e-05 2.718 ||| 0-2 ||| 487 1.17835e+06 +en ||| to play on ||| 0.0588235 0.22993 8.48644e-07 1.90392e-06 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| to play ||| 0.00353913 0.0247351 7.6378e-06 7.25194e-06 2.718 ||| 0-0 ||| 2543 1.17835e+06 +en ||| to point out in your report ||| 1 0.605812 8.48644e-07 1.44223e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to point out in your ||| 0.333333 0.605812 8.48644e-07 3.51849e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to point out in ||| 0.0952381 0.605812 1.69729e-06 1.37495e-07 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| to point this out ||| 0.0333333 0.0247351 8.48644e-07 6.08575e-10 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| to point this ||| 0.0769231 0.0247351 8.48644e-07 1.5888e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| to point ||| 0.00424628 0.0247351 1.69729e-06 2.45891e-05 2.718 ||| 0-0 ||| 471 1.17835e+06 +en ||| to power in ||| 0.037037 0.605812 8.48644e-07 6.12623e-06 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| to power ||| 0.00362319 0.0247351 8.48644e-07 4.19657e-06 2.718 ||| 0-0 ||| 276 1.17835e+06 +en ||| to practically ||| 0.0833333 0.0180437 8.48644e-07 1.14627e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| to practise organic farming in ||| 1 0.605812 8.48644e-07 3.33402e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to prefer ||| 0.0454545 0.0247351 8.48644e-07 7.39248e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| to prepare ||| 0.00162866 0.0247351 1.69729e-06 5.05949e-07 2.718 ||| 0-0 ||| 1228 1.17835e+06 +en ||| to present a majority ||| 1 0.0247351 8.48644e-07 1.83771e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to present a ||| 0.00220264 0.0247351 8.48644e-07 4.56008e-07 2.718 ||| 0-0 ||| 454 1.17835e+06 +en ||| to present in ||| 0.05 0.605812 8.48644e-07 1.50181e-05 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| to present it ||| 0.0243902 0.0247351 8.48644e-07 1.82947e-07 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| to present to ||| 0.0121951 0.0247351 8.48644e-07 9.14141e-07 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| to present ||| 0.00144928 0.0247351 2.54593e-06 1.02876e-05 2.718 ||| 0-0 ||| 2070 1.17835e+06 +en ||| to preserve ||| 0.00111235 0.0247351 8.48644e-07 3.23245e-07 2.718 ||| 0-0 ||| 899 1.17835e+06 +en ||| to press for ||| 0.00653595 0.0286209 8.48644e-07 3.08744e-08 2.718 ||| 0-2 ||| 153 1.17835e+06 +en ||| to prevent ||| 0.000486697 0.0247351 2.54593e-06 1.43633e-06 2.718 ||| 0-0 ||| 6164 1.17835e+06 +en ||| to print ||| 0.0526316 0.0247351 8.48644e-07 6.18383e-08 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| to prioritise ||| 0.00546448 0.0247351 8.48644e-07 5.05949e-08 2.718 ||| 0-0 ||| 183 1.17835e+06 +en ||| to proceed slowly but surely . ||| 1 0.0247351 8.48644e-07 6.87901e-22 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to proceed slowly but surely ||| 1 0.0247351 8.48644e-07 2.27105e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to proceed slowly but ||| 1 0.0247351 8.48644e-07 3.56523e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to proceed slowly ||| 1 0.0247351 8.48644e-07 5.2169e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to proceed to ||| 0.0131579 0.0247351 8.48644e-07 7.99249e-08 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| to proceed ||| 0.00238949 0.0247351 1.69729e-06 8.99466e-07 2.718 ||| 0-0 ||| 837 1.17835e+06 +en ||| to procrastinate on ||| 1 0.22993 8.48644e-07 2.95181e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to produce this success . in ||| 1 0.605812 8.48644e-07 4.22172e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to produce ||| 0.00161031 0.0247351 2.54593e-06 2.48758e-06 2.718 ||| 0-0 ||| 1863 1.17835e+06 +en ||| to product safety in ||| 1 0.605812 8.48644e-07 1.26487e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to progress in ||| 0.025974 0.605812 1.69729e-06 5.40405e-06 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| to promote in ||| 0.0588235 0.605812 8.48644e-07 2.63022e-06 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| to promote the necessary mutual trust amongst ||| 1 0.0247351 8.48644e-07 4.0063e-25 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to promote the necessary mutual trust ||| 1 0.0247351 8.48644e-07 1.19591e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to promote the necessary mutual ||| 1 0.0247351 8.48644e-07 6.26131e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to promote the necessary ||| 0.5 0.0247351 8.48644e-07 2.84605e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to promote the ||| 0.000906618 0.0247351 8.48644e-07 1.10612e-07 2.718 ||| 0-0 ||| 1103 1.17835e+06 +en ||| to promote ||| 0.000911439 0.0247351 5.09187e-06 1.80174e-06 2.718 ||| 0-0 ||| 6583 1.17835e+06 +en ||| to propose new rules on its own ||| 1 0.22993 8.48644e-07 4.18413e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to propose new rules on its ||| 1 0.22993 8.48644e-07 2.46807e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to propose new rules on ||| 1 0.22993 8.48644e-07 1.73235e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to protect themselves during ||| 1 0.125493 8.48644e-07 1.20479e-12 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| to protect ||| 0.000159872 0.0247351 8.48644e-07 9.69736e-07 2.718 ||| 0-0 ||| 6255 1.17835e+06 +en ||| to protest in ||| 0.111111 0.605812 8.48644e-07 4.14434e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| to provide appropriate funding for information ||| 0.5 0.0286209 8.48644e-07 3.59054e-19 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to provide appropriate funding for ||| 0.5 0.0286209 8.48644e-07 2.16951e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to provide it ||| 0.037037 0.0247351 8.48644e-07 1.47857e-07 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| to provide on ||| 0.25 0.22993 8.48644e-07 2.18287e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to provide virtually free of ||| 0.166667 0.0247351 8.48644e-07 8.74885e-16 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to provide virtually free ||| 0.166667 0.0247351 8.48644e-07 1.60931e-14 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to provide virtually ||| 0.166667 0.0247351 8.48644e-07 1.3802e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to provide ||| 0.000806322 0.0247351 4.24322e-06 8.31444e-06 2.718 ||| 0-0 ||| 6201 1.17835e+06 +en ||| to public ||| 0.00653595 0.0247351 8.48644e-07 4.5423e-06 2.718 ||| 0-0 ||| 153 1.17835e+06 +en ||| to purchase ||| 0.00662252 0.0247351 8.48644e-07 1.82704e-07 2.718 ||| 0-0 ||| 151 1.17835e+06 +en ||| to pursue ||| 0.00246711 0.0247351 2.54593e-06 1.10185e-06 2.718 ||| 0-0 ||| 1216 1.17835e+06 +en ||| to push back ||| 0.0833333 0.0247351 8.48644e-07 5.23686e-10 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| to push ||| 0.00531915 0.0247351 1.69729e-06 7.786e-07 2.718 ||| 0-0 ||| 376 1.17835e+06 +en ||| to put forward drastic remedies in ||| 1 0.605812 8.48644e-07 1.49529e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to put into practice ||| 0.0153846 0.525896 8.48644e-07 2.28602e-10 2.718 ||| 0-2 ||| 65 1.17835e+06 +en ||| to put into ||| 0.00826446 0.525896 8.48644e-07 2.1689e-06 2.718 ||| 0-2 ||| 121 1.17835e+06 +en ||| to put it as ||| 0.5 0.066968 8.48644e-07 3.13405e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to put it back on ||| 0.5 0.22993 8.48644e-07 9.73226e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to put it in a ||| 0.285714 0.0247351 1.69729e-06 5.22907e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| to put it in concrete ||| 0.5 0.605812 8.48644e-07 2.51829e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to put it in the ||| 0.2 0.605812 8.48644e-07 4.93937e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to put it in ||| 0.166667 0.605812 8.48644e-06 8.04566e-07 2.718 ||| 0-3 ||| 60 1.17835e+06 +en ||| to put it on record ||| 0.0833333 0.22993 8.48644e-07 8.07404e-12 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| to put it on ||| 0.047619 0.22993 8.48644e-07 1.44696e-07 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| to put it ||| 0.0313043 0.0080472 1.52756e-05 2.70205e-07 2.718 ||| 0-2 ||| 575 1.17835e+06 +en ||| to put on ||| 0.0240964 0.22993 1.69729e-06 8.13667e-06 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| to put the case for ||| 0.2 0.0286209 8.48644e-07 7.40395e-11 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| to put to ||| 0.010989 0.0247351 8.48644e-07 2.75391e-06 2.718 ||| 0-2 ||| 91 1.17835e+06 +en ||| to put ||| 0.00516553 0.0247351 1.86702e-05 3.09922e-05 2.718 ||| 0-0 ||| 4259 1.17835e+06 +en ||| to quote at length here - ||| 1 0.321886 8.48644e-07 4.66856e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to quote at length here ||| 1 0.321886 8.48644e-07 1.23766e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to quote at length ||| 1 0.321886 8.48644e-07 6.10344e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to quote at ||| 0.5 0.321886 8.48644e-07 1.58531e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to quote ||| 0.00254453 0.0247351 8.48644e-07 1.25363e-06 2.718 ||| 0-0 ||| 393 1.17835e+06 +en ||| to racial ||| 0.0666667 0.0247351 8.48644e-07 3.09191e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| to raise a ||| 0.00617284 0.0247351 8.48644e-07 8.21063e-08 2.718 ||| 0-0 ||| 162 1.17835e+06 +en ||| to raise in this ||| 0.125 0.605812 8.48644e-07 1.74721e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| to raise in ||| 0.047619 0.605812 8.48644e-07 2.70408e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| to raise its voice and ||| 0.5 0.0010182 8.48644e-07 3.34854e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to raise ||| 0.000942951 0.0247351 1.69729e-06 1.85234e-06 2.718 ||| 0-0 ||| 2121 1.17835e+06 +en ||| to ransom ||| 0.0238095 0.0247351 8.48644e-07 7.02708e-08 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| to reach ||| 0.00133869 0.0247351 3.39458e-06 2.27677e-06 2.718 ||| 0-0 ||| 2988 1.17835e+06 +en ||| to read ||| 0.00156495 0.0247351 8.48644e-07 1.35482e-06 2.718 ||| 0-0 ||| 639 1.17835e+06 +en ||| to realise during ||| 1 0.226251 8.48644e-07 6.65412e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to realise in ||| 0.5 0.605812 8.48644e-07 1.06276e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to realise ||| 0.000948767 0.0247351 8.48644e-07 7.28005e-07 2.718 ||| 0-0 ||| 1054 1.17835e+06 +en ||| to realize ||| 0.00632911 0.0247351 8.48644e-07 1.63028e-07 2.718 ||| 0-0 ||| 158 1.17835e+06 +en ||| to really getting ||| 1 0.0247351 8.48644e-07 1.58214e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to really ||| 0.0188679 0.0247351 1.69729e-06 1.36157e-05 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| to recall ||| 0.00229358 0.0247351 8.48644e-07 4.7503e-07 2.718 ||| 0-0 ||| 436 1.17835e+06 +en ||| to receive ||| 0.00276753 0.0247351 2.54593e-06 2.82207e-06 2.718 ||| 0-0 ||| 1084 1.17835e+06 +en ||| to recognise themselves in ||| 0.5 0.605812 8.48644e-07 3.42059e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to reduce road traffic in a specific ||| 1 0.605812 8.48644e-07 2.65255e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to reduce road traffic in a ||| 1 0.605812 8.48644e-07 1.75549e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to reduce road traffic in ||| 1 0.605812 8.48644e-07 3.96043e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to reduce ||| 0.000220216 0.0247351 8.48644e-07 1.07093e-06 2.718 ||| 0-0 ||| 4541 1.17835e+06 +en ||| to refer to ||| 0.00322061 0.0247351 1.69729e-06 1.95067e-07 2.718 ||| 0-2 ||| 621 1.17835e+06 +en ||| to referring in ||| 1 0.605812 8.48644e-07 1.77263e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to region ||| 0.0666667 0.0247351 8.48644e-07 2.7518e-06 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| to register their misgivings when ||| 0.333333 0.142731 8.48644e-07 2.16937e-17 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| to register ||| 0.00446429 0.0247351 8.48644e-07 3.42921e-07 2.718 ||| 0-0 ||| 224 1.17835e+06 +en ||| to regulate ||| 0.00117647 0.0247351 8.48644e-07 1.91136e-07 2.718 ||| 0-0 ||| 850 1.17835e+06 +en ||| to reiterate ||| 0.00148588 0.0247351 8.48644e-07 2.52975e-07 2.718 ||| 0-0 ||| 673 1.17835e+06 +en ||| to relinquish any real regulatory power over ||| 0.5 0.157937 8.48644e-07 2.91561e-25 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| to rely upon ||| 0.2 0.114601 8.48644e-07 1.55513e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to remain in place , ||| 0.5 0.605812 8.48644e-07 8.93319e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to remain in place ||| 0.0588235 0.605812 8.48644e-07 7.49085e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| to remain in ||| 0.0143885 0.605812 1.69729e-06 4.97731e-06 2.718 ||| 0-2 ||| 139 1.17835e+06 +en ||| to remain on ||| 0.0526316 0.22993 8.48644e-07 8.95137e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| to remain with ||| 0.111111 0.0535436 8.48644e-07 1.25665e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| to remain ||| 0.00177462 0.0247351 1.69729e-06 3.40954e-06 2.718 ||| 0-0 ||| 1127 1.17835e+06 +en ||| to remove ||| 0.000877963 0.0247351 8.48644e-07 5.36869e-07 2.718 ||| 0-0 ||| 1139 1.17835e+06 +en ||| to reply , ||| 0.0344828 0.0247351 8.48644e-07 9.6539e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| to reply ||| 0.00186567 0.0247351 8.48644e-07 8.09519e-07 2.718 ||| 0-0 ||| 536 1.17835e+06 +en ||| to report ||| 0.00269542 0.0247351 1.69729e-06 1.15216e-05 2.718 ||| 0-0 ||| 742 1.17835e+06 +en ||| to reporting ||| 0.0714286 0.0247351 8.48644e-07 3.65408e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| to request ||| 0.00193424 0.0247351 8.48644e-07 2.15591e-06 2.718 ||| 0-0 ||| 517 1.17835e+06 +en ||| to resemble ||| 0.05 0.0247351 8.48644e-07 7.02708e-08 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| to resolve ||| 0.00106157 0.0247351 1.69729e-06 7.28005e-07 2.718 ||| 0-0 ||| 1884 1.17835e+06 +en ||| to resolving ||| 0.00471698 0.0127443 8.48644e-07 1.96758e-08 2.718 ||| 0-0 0-1 ||| 212 1.17835e+06 +en ||| to respond ||| 0.000393546 0.0247351 8.48644e-07 7.98276e-07 2.718 ||| 0-0 ||| 2541 1.17835e+06 +en ||| to rest in ||| 0.333333 0.605812 8.48644e-07 3.1021e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| to restrict the ||| 0.00641026 0.0247351 8.48644e-07 2.17428e-08 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| to restrict ||| 0.00211864 0.0247351 8.48644e-07 3.54165e-07 2.718 ||| 0-0 ||| 472 1.17835e+06 +en ||| to return on ||| 0.5 0.22993 8.48644e-07 4.91477e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to return them to ||| 0.2 0.0247351 8.48644e-07 4.462e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to return to ||| 0.00136612 0.0247351 8.48644e-07 1.66344e-07 2.718 ||| 0-2 ||| 732 1.17835e+06 +en ||| to reveal ||| 0.0119048 0.0247351 8.48644e-07 2.13623e-07 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| to reverse the trend , ||| 0.25 0.0247351 8.48644e-07 3.37349e-14 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to reverse the trend ||| 0.0416667 0.0247351 8.48644e-07 2.82881e-13 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| to reverse the ||| 0.00689655 0.0247351 8.48644e-07 1.67385e-08 2.718 ||| 0-0 ||| 145 1.17835e+06 +en ||| to reverse ||| 0.00318471 0.0247351 8.48644e-07 2.72651e-07 2.718 ||| 0-0 ||| 314 1.17835e+06 +en ||| to rid ||| 0.0263158 0.0247351 8.48644e-07 6.57734e-07 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| to rise in ||| 0.0769231 0.605812 8.48644e-07 5.15375e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| to rise up ||| 0.1 0.0247351 8.48644e-07 1.20404e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| to rise ||| 0.00369004 0.0247351 8.48644e-07 3.5304e-06 2.718 ||| 0-0 ||| 271 1.17835e+06 +en ||| to rule ||| 0.0162602 0.0247351 1.69729e-06 2.2852e-06 2.718 ||| 0-0 ||| 123 1.17835e+06 +en ||| to run on ||| 0.0666667 0.22993 8.48644e-07 7.83706e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| to safeguard ||| 0.000729395 0.0247351 8.48644e-07 5.7622e-07 2.718 ||| 0-0 ||| 1371 1.17835e+06 +en ||| to say , I regard ||| 0.5 0.0247351 8.48644e-07 1.5431e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to say , I ||| 0.0243902 0.0247351 8.48644e-07 2.26627e-08 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| to say , according to past precedent ||| 0.5 0.0586463 8.48644e-07 1.56387e-19 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to say , according to past ||| 0.5 0.0586463 8.48644e-07 4.88709e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to say , according to ||| 0.25 0.0586463 8.48644e-07 3.81506e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to say , according ||| 0.25 0.0586463 8.48644e-07 4.29342e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to say , eventually ||| 0.5 0.0247351 8.48644e-07 8.87477e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to say , in ||| 0.0240964 0.605812 1.69729e-06 4.6771e-06 2.718 ||| 0-3 ||| 83 1.17835e+06 +en ||| to say , ||| 0.0014437 0.0247351 2.54593e-06 3.20389e-06 2.718 ||| 0-0 ||| 2078 1.17835e+06 +en ||| to say a few words on ||| 0.00833333 0.22993 8.48644e-07 1.23863e-14 2.718 ||| 0-5 ||| 120 1.17835e+06 +en ||| to say a word in ||| 0.333333 0.605812 8.48644e-07 1.76972e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| to say a ||| 0.0026455 0.0247351 8.48644e-07 1.19085e-06 2.718 ||| 0-0 ||| 378 1.17835e+06 +en ||| to say has in ||| 1 0.605812 8.48644e-07 2.01882e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to say how much I ||| 0.0434783 0.0060084 8.48644e-07 7.42378e-14 2.718 ||| 0-4 ||| 23 1.17835e+06 +en ||| to say in ||| 0.0260417 0.605812 4.24322e-06 3.92194e-05 2.718 ||| 0-2 ||| 192 1.17835e+06 +en ||| to say into ||| 0.333333 0.525896 8.48644e-07 1.88014e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| to say it gives me ||| 1 0.0080472 8.48644e-07 1.11696e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to say it gives ||| 1 0.0080472 8.48644e-07 1.8551e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to say it ||| 0.00980392 0.0080472 8.48644e-07 2.3423e-07 2.718 ||| 0-2 ||| 102 1.17835e+06 +en ||| to say members ||| 0.333333 0.0247351 8.48644e-07 3.96272e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| to say on ||| 0.0168539 0.22993 2.54593e-06 7.05336e-06 2.718 ||| 0-2 ||| 178 1.17835e+06 +en ||| to say that I ||| 0.00282486 0.0247351 8.48644e-07 3.19671e-09 2.718 ||| 0-0 ||| 354 1.17835e+06 +en ||| to say that as far as ||| 0.2 0.066968 8.48644e-07 1.79032e-13 2.718 ||| 0-5 ||| 5 1.17835e+06 +en ||| to say that at ||| 0.0555556 0.321886 8.48644e-07 5.71496e-08 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| to say that in ||| 0.00813008 0.605812 8.48644e-07 6.59733e-07 2.718 ||| 0-3 ||| 123 1.17835e+06 +en ||| to say that on ||| 0.0833333 0.22993 8.48644e-07 1.18649e-07 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| to say that those guilty of such ||| 1 0.0247351 8.48644e-07 7.80287e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to say that those guilty of ||| 1 0.0247351 8.48644e-07 3.77151e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to say that those guilty ||| 1 0.0247351 8.48644e-07 6.93751e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to say that those ||| 0.0625 0.0247351 8.48644e-07 3.27241e-10 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| to say that ||| 0.000569638 0.0247351 3.39458e-06 4.51928e-07 2.718 ||| 0-0 ||| 7022 1.17835e+06 +en ||| to say the ||| 0.00187266 0.0011669 8.48644e-07 2.43301e-07 2.718 ||| 0-2 ||| 534 1.17835e+06 +en ||| to say this in ||| 0.125 0.605812 8.48644e-07 2.53412e-07 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| to say to ||| 0.00127226 0.0247351 8.48644e-07 2.38726e-06 2.718 ||| 0-2 ||| 786 1.17835e+06 +en ||| to say ||| 0.00207349 0.0247351 3.05512e-05 2.68659e-05 2.718 ||| 0-0 ||| 17362 1.17835e+06 +en ||| to secure ||| 0.000662691 0.0247351 8.48644e-07 1.41666e-06 2.718 ||| 0-0 ||| 1509 1.17835e+06 +en ||| to see , ||| 0.00943396 0.0247351 8.48644e-07 2.36185e-06 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| to see clear wording ||| 1 0.0247351 8.48644e-07 9.23037e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to see clear ||| 0.2 0.0247351 8.48644e-07 6.59312e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| to see greater ||| 0.0588235 0.0247351 8.48644e-07 2.60833e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| to see in ||| 0.0375 0.605812 2.54593e-06 2.89119e-05 2.718 ||| 0-2 ||| 80 1.17835e+06 +en ||| to see it in ||| 0.166667 0.605812 1.69729e-06 5.14146e-07 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| to see them in ||| 0.2 0.605812 8.48644e-07 7.75532e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to see this salary paid out of ||| 1 0.0116562 8.48644e-07 1.33682e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| to see to it in ||| 0.5 0.605812 8.48644e-07 4.56861e-08 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to see what happens ||| 0.047619 0.0247351 8.48644e-07 1.65898e-12 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| to see what ||| 0.00266667 0.0247351 8.48644e-07 2.77885e-08 2.718 ||| 0-0 ||| 375 1.17835e+06 +en ||| to see whether ||| 0.00352113 0.0247351 8.48644e-07 5.2028e-09 2.718 ||| 0-0 ||| 284 1.17835e+06 +en ||| to see ||| 0.00345125 0.0247351 2.3762e-05 1.98051e-05 2.718 ||| 0-0 ||| 8113 1.17835e+06 +en ||| to seek to ||| 0.00724638 0.0247351 8.48644e-07 1.73587e-07 2.718 ||| 0-2 ||| 138 1.17835e+06 +en ||| to send during ||| 1 0.226251 8.48644e-07 1.65454e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to send in ||| 0.111111 0.605812 8.48644e-07 2.64253e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| to send out ||| 0.0041841 0.0247351 8.48644e-07 6.93369e-09 2.718 ||| 0-0 ||| 239 1.17835e+06 +en ||| to send something ||| 0.5 0.0247351 8.48644e-07 1.00193e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to send ||| 0.00248344 0.0247351 2.54593e-06 1.81017e-06 2.718 ||| 0-0 ||| 1208 1.17835e+06 +en ||| to serve the ||| 0.010929 0.0002545 1.69729e-06 3.81862e-09 2.718 ||| 0-1 ||| 183 1.17835e+06 +en ||| to serve ||| 0.00527241 0.0247351 2.54593e-06 1.92261e-06 2.718 ||| 0-0 ||| 569 1.17835e+06 +en ||| to services ||| 0.00584795 0.0247351 8.48644e-07 2.48758e-06 2.718 ||| 0-0 ||| 171 1.17835e+06 +en ||| to set a good example and being ||| 0.5 0.0247351 8.48644e-07 3.91823e-18 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to set a good example and ||| 0.166667 0.0247351 8.48644e-07 1.37684e-15 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to set a good example ||| 0.0454545 0.0247351 8.48644e-07 1.0992e-13 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| to set a good ||| 0.047619 0.0247351 8.48644e-07 3.77602e-10 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| to set a precedent for , ||| 1 0.0247351 8.48644e-07 2.13555e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to set a precedent for ||| 1 0.0247351 8.48644e-07 1.79075e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to set a precedent ||| 0.125 0.0247351 8.48644e-07 2.32998e-12 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| to set a ||| 0.00925926 0.0247351 1.69729e-06 7.28117e-07 2.718 ||| 0-0 ||| 216 1.17835e+06 +en ||| to set about ||| 0.0357143 0.0401564 8.48644e-07 1.48833e-07 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| to set aside ||| 0.0107527 0.0247351 8.48644e-07 1.15807e-09 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| to set off in ||| 1 0.315273 8.48644e-07 3.08728e-09 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| to set out under ||| 1 0.205566 8.48644e-07 1.12474e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to set plans in ||| 0.5 0.605812 8.48644e-07 1.00955e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to set up ||| 0.00138696 0.0247351 1.69729e-06 5.60225e-08 2.718 ||| 0-0 ||| 1442 1.17835e+06 +en ||| to set ||| 0.00489396 0.0247351 7.6378e-06 1.64265e-05 2.718 ||| 0-0 ||| 1839 1.17835e+06 +en ||| to shape ||| 0.00355872 0.0247351 8.48644e-07 1.70055e-06 2.718 ||| 0-0 ||| 281 1.17835e+06 +en ||| to shaping ||| 0.0454545 0.0247351 8.48644e-07 1.82704e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| to share ||| 0.00154321 0.0247351 8.48644e-07 2.63094e-06 2.718 ||| 0-0 ||| 648 1.17835e+06 +en ||| to shed ||| 0.0136986 0.0247351 8.48644e-07 2.41731e-07 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| to shoulder in ||| 0.230769 0.605812 2.54593e-06 7.96041e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| to show for ||| 0.030303 0.0247351 8.48644e-07 2.89267e-08 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| to show just ||| 0.1 0.0247351 8.48644e-07 4.74866e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| to show ||| 0.00128315 0.0247351 2.54593e-06 3.7637e-06 2.718 ||| 0-0 ||| 2338 1.17835e+06 +en ||| to sign ||| 0.0014556 0.0247351 8.48644e-07 1.46725e-06 2.718 ||| 0-0 ||| 687 1.17835e+06 +en ||| to sit back ||| 0.0526316 0.0247351 8.48644e-07 7.14633e-10 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| to sit in ||| 0.05 0.605812 8.48644e-07 1.55105e-06 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| to sit on the ||| 0.0714286 0.22993 8.48644e-07 1.7125e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| to sit on ||| 0.214286 0.22993 2.54593e-06 2.78946e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| to sit ||| 0.00757576 0.0247351 8.48644e-07 1.06249e-06 2.718 ||| 0-0 ||| 132 1.17835e+06 +en ||| to slam on ||| 1 0.22993 8.48644e-07 5.16567e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to so in ||| 1 0.605812 8.48644e-07 9.31327e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to so ||| 0.04 0.0167313 8.48644e-07 1.91446e-05 2.718 ||| 0-0 0-1 ||| 25 1.17835e+06 +en ||| to solve ||| 0.001657 0.0247351 1.69729e-06 4.35679e-07 2.718 ||| 0-0 ||| 1207 1.17835e+06 +en ||| to some extent , in ||| 0.0769231 0.605812 8.48644e-07 1.0245e-09 2.718 ||| 0-4 ||| 13 1.17835e+06 +en ||| to some extent fall within ||| 0.1 0.369196 8.48644e-07 1.97384e-14 2.718 ||| 0-4 ||| 10 1.17835e+06 +en ||| to some extent in ||| 0.030303 0.605812 8.48644e-07 8.59082e-09 2.718 ||| 0-3 ||| 33 1.17835e+06 +en ||| to some extent ||| 0.00106383 0.0247351 8.48644e-07 5.88485e-09 2.718 ||| 0-0 ||| 940 1.17835e+06 +en ||| to some of the ||| 0.00341297 0.0247351 8.48644e-07 1.02189e-07 2.718 ||| 0-0 ||| 293 1.17835e+06 +en ||| to some of ||| 0.00232019 0.0247351 8.48644e-07 1.66454e-06 2.718 ||| 0-0 ||| 431 1.17835e+06 +en ||| to some very ||| 0.333333 0.0247351 8.48644e-07 1.06537e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| to some ||| 0.00324224 0.0247351 5.94051e-06 3.06184e-05 2.718 ||| 0-0 ||| 2159 1.17835e+06 +en ||| to something ||| 0.00584795 0.0247351 8.48644e-07 1.55579e-05 2.718 ||| 0-0 ||| 171 1.17835e+06 +en ||| to sort out ||| 0.00833333 0.0120599 8.48644e-07 7.81685e-09 2.718 ||| 0-2 ||| 120 1.17835e+06 +en ||| to sort ||| 0.0111111 0.0247351 8.48644e-07 4.49171e-06 2.718 ||| 0-0 ||| 90 1.17835e+06 +en ||| to sound out ||| 0.0714286 0.0247351 8.48644e-07 6.39536e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| to sound ||| 0.0105263 0.0247351 8.48644e-07 1.66963e-06 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| to speak , and ||| 0.0344828 0.0247351 8.48644e-07 5.6809e-09 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| to speak , in ||| 0.2 0.605812 1.69729e-06 6.62075e-07 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| to speak , ||| 0.00537634 0.0247351 1.69729e-06 4.53532e-07 2.718 ||| 0-0 ||| 372 1.17835e+06 +en ||| to speak in ||| 0.00722022 0.605812 1.69729e-06 5.55177e-06 2.718 ||| 0-2 ||| 277 1.17835e+06 +en ||| to speak on ||| 0.0104167 0.22993 3.39458e-06 9.98451e-07 2.718 ||| 0-2 ||| 384 1.17835e+06 +en ||| to speak with a ||| 0.0232558 0.0535436 8.48644e-07 6.21312e-09 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| to speak with ||| 0.00409836 0.0535436 8.48644e-07 1.40169e-07 2.718 ||| 0-2 ||| 244 1.17835e+06 +en ||| to speak ||| 0.00298426 0.0247351 9.33509e-06 3.80305e-06 2.718 ||| 0-0 ||| 3686 1.17835e+06 +en ||| to specific ||| 0.0123457 0.0247351 8.48644e-07 4.24716e-06 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| to specify at ||| 1 0.321886 8.48644e-07 2.55924e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to specify that under ||| 1 0.205566 8.48644e-07 6.08554e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to sport in ||| 0.142857 0.605812 8.48644e-07 6.19599e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| to squander ||| 0.0833333 0.0247351 8.48644e-07 1.12433e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| to stabilise ||| 0.00328947 0.0134545 8.48644e-07 1.96758e-08 2.718 ||| 0-0 0-1 ||| 304 1.17835e+06 +en ||| to stand by and ||| 0.142857 0.0468744 8.48644e-07 1.56043e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| to stand by ||| 0.0135135 0.0468744 8.48644e-07 1.24577e-07 2.718 ||| 0-2 ||| 74 1.17835e+06 +en ||| to stand in ||| 0.0517241 0.605812 2.54593e-06 6.76224e-06 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| to stand up to ||| 0.0147059 0.0247351 8.48644e-07 1.40381e-09 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| to stand up ||| 0.00881057 0.0247351 1.69729e-06 1.57983e-08 2.718 ||| 0-0 ||| 227 1.17835e+06 +en ||| to stand ||| 0.00548446 0.0247351 2.54593e-06 4.63225e-06 2.718 ||| 0-0 ||| 547 1.17835e+06 +en ||| to start by ||| 0.00177936 0.0468744 8.48644e-07 1.04998e-07 2.718 ||| 0-2 ||| 562 1.17835e+06 +en ||| to start in Hall ||| 1 0.605812 8.48644e-07 3.98964e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to start in ||| 0.0434783 0.605812 8.48644e-07 5.69949e-06 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| to start with ||| 0.00343643 0.0535436 8.48644e-07 1.43899e-07 2.718 ||| 0-2 ||| 291 1.17835e+06 +en ||| to start ||| 0.00066335 0.0247351 1.69729e-06 3.90424e-06 2.718 ||| 0-0 ||| 3015 1.17835e+06 +en ||| to state on ||| 0.333333 0.22993 1.69729e-06 1.86407e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| to state ||| 0.00288739 0.0247351 2.54593e-06 7.10016e-06 2.718 ||| 0-0 ||| 1039 1.17835e+06 +en ||| to statements ||| 0.0333333 0.0247351 8.48644e-07 8.99466e-07 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| to stay connected to ||| 0.5 0.0247351 8.48644e-07 1.43285e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to stay in ||| 0.02 0.605812 1.69729e-06 1.16534e-06 2.718 ||| 0-2 ||| 100 1.17835e+06 +en ||| to stay on ||| 0.0416667 0.22993 8.48644e-07 2.09579e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| to stay with ||| 0.0625 0.0535436 8.48644e-07 2.94221e-08 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| to stay within ||| 0.04 0.369196 8.48644e-07 2.79781e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| to step ||| 0.00595238 0.0247351 8.48644e-07 4.14597e-06 2.718 ||| 0-0 ||| 168 1.17835e+06 +en ||| to stop ||| 0.000405515 0.0247351 8.48644e-07 1.94228e-06 2.718 ||| 0-0 ||| 2466 1.17835e+06 +en ||| to strength in ||| 1 0.605812 8.48644e-07 1.01762e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to stress the fact ||| 0.0142857 0.0247351 8.48644e-07 1.79953e-10 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| to stress the ||| 0.00158983 0.0247351 8.48644e-07 6.1432e-08 2.718 ||| 0-0 ||| 629 1.17835e+06 +en ||| to stress ||| 0.0013836 0.125588 3.39458e-06 5.65316e-05 2.718 ||| 0-1 ||| 2891 1.17835e+06 +en ||| to strike a ||| 0.00462963 0.0247351 8.48644e-07 3.98695e-08 2.718 ||| 0-0 ||| 216 1.17835e+06 +en ||| to strike ||| 0.00438596 0.0247351 1.69729e-06 8.99466e-07 2.718 ||| 0-0 ||| 456 1.17835e+06 +en ||| to structure the debate in ||| 1 0.605812 8.48644e-07 1.4906e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to style ||| 0.5 0.0247351 8.48644e-07 2.41731e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to success in ||| 0.025641 0.605812 8.48644e-07 2.43736e-06 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| to success ||| 0.00735294 0.0247351 8.48644e-07 1.66963e-06 2.718 ||| 0-0 ||| 136 1.17835e+06 +en ||| to such a great extent as ||| 1 0.066968 8.48644e-07 1.10718e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to such a ||| 0.00555556 0.0247351 8.48644e-07 2.57769e-06 2.718 ||| 0-0 ||| 180 1.17835e+06 +en ||| to such and such ||| 0.25 0.0247351 8.48644e-07 1.50703e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to such and ||| 0.25 0.0247351 8.48644e-07 7.28422e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to such ||| 0.0117647 0.0247351 8.48644e-06 5.81533e-05 2.718 ||| 0-0 ||| 850 1.17835e+06 +en ||| to suffer from it as a result ||| 1 0.0308834 8.48644e-07 5.0976e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to suffer from it as a ||| 1 0.0308834 8.48644e-07 9.68206e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to suffer from it as ||| 1 0.0308834 8.48644e-07 2.18429e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to suffer from it ||| 1 0.0308834 8.48644e-07 2.14054e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to suffer from ||| 0.03125 0.0308834 8.48644e-07 1.20369e-08 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| to sum up ||| 0.00263158 0.0247351 8.48644e-07 4.03585e-09 2.718 ||| 0-0 ||| 380 1.17835e+06 +en ||| to sum ||| 0.0163934 0.0247351 8.48644e-07 1.18336e-06 2.718 ||| 0-0 ||| 61 1.17835e+06 +en ||| to supply them direct ||| 1 0.0247351 8.48644e-07 1.91431e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to supply them ||| 0.25 0.0247351 8.48644e-07 3.88298e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to supply ||| 0.00296736 0.0247351 8.48644e-07 1.44758e-06 2.718 ||| 0-0 ||| 337 1.17835e+06 +en ||| to support the ||| 0.000403877 0.0247351 8.48644e-07 5.89989e-07 2.718 ||| 0-0 ||| 2476 1.17835e+06 +en ||| to support them ||| 0.00613497 0.0247351 8.48644e-07 2.57785e-08 2.718 ||| 0-0 ||| 163 1.17835e+06 +en ||| to support ||| 0.000665041 0.0247351 5.09187e-06 9.61023e-06 2.718 ||| 0-0 ||| 9022 1.17835e+06 +en ||| to suspend for six months ||| 0.2 0.0286209 8.48644e-07 3.06486e-18 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to suspend for six ||| 0.2 0.0286209 8.48644e-07 7.60512e-14 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to suspend for ||| 0.166667 0.0286209 8.48644e-07 4.39602e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| to sustain the ||| 0.0188679 0.012951 8.48644e-07 5.23392e-10 2.718 ||| 0-0 0-2 ||| 53 1.17835e+06 +en ||| to sustain us , ||| 0.5 0.0247351 8.48644e-07 6.27983e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to sustain us ||| 0.5 0.0247351 8.48644e-07 5.26589e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to sustain ||| 0.00862069 0.0247351 1.69729e-06 1.82704e-07 2.718 ||| 0-0 ||| 232 1.17835e+06 +en ||| to switch ||| 0.00769231 0.0247351 8.48644e-07 3.54165e-07 2.718 ||| 0-0 ||| 130 1.17835e+06 +en ||| to tackle that ||| 0.0454545 0.0247351 8.48644e-07 1.71636e-08 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| to tackle them within ||| 1 0.369196 8.48644e-07 9.59246e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to tackle ||| 0.00201613 0.0247351 4.24322e-06 1.02033e-06 2.718 ||| 0-0 ||| 2480 1.17835e+06 +en ||| to tackling ||| 0.00595238 0.0247351 8.48644e-07 5.7622e-07 2.718 ||| 0-0 ||| 168 1.17835e+06 +en ||| to take a ||| 0.00141143 0.0074151 1.69729e-06 1.15247e-06 2.718 ||| 0-1 ||| 1417 1.17835e+06 +en ||| to take account of it ||| 0.111111 0.233636 8.48644e-07 4.57202e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| to take account of ||| 0.00387597 0.233636 2.54593e-06 2.57098e-08 2.718 ||| 0-2 ||| 774 1.17835e+06 +en ||| to take account ||| 0.00288739 0.233636 2.54593e-06 4.72919e-07 2.718 ||| 0-2 ||| 1039 1.17835e+06 +en ||| to take action in ||| 0.0280374 0.605812 2.54593e-06 1.99709e-08 2.718 ||| 0-3 ||| 107 1.17835e+06 +en ||| to take action ||| 0.00103842 0.0247351 8.48644e-07 1.36804e-08 2.718 ||| 0-0 ||| 963 1.17835e+06 +en ||| to take an active part in ||| 0.0357143 0.605812 8.48644e-07 1.41077e-14 2.718 ||| 0-5 ||| 28 1.17835e+06 +en ||| to take away our ||| 0.5 0.0004869 8.48644e-07 2.22989e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to take for the ||| 0.25 0.0286209 8.48644e-07 1.01048e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to take for ||| 0.1 0.0286209 8.48644e-07 1.64595e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| to take hold in ||| 1 0.605812 1.69729e-06 1.15082e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to take hold on ||| 1 0.22993 8.48644e-07 2.06968e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to take in ||| 0.0529801 0.605812 6.78915e-06 6.60632e-05 2.718 ||| 0-2 ||| 151 1.17835e+06 +en ||| to take into ||| 0.00430416 0.525896 2.54593e-06 3.167e-06 2.718 ||| 0-2 ||| 697 1.17835e+06 +en ||| to take on such a role ||| 0.333333 0.22993 8.48644e-07 2.41882e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| to take on such a ||| 0.2 0.22993 8.48644e-07 1.08956e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| to take on such ||| 0.166667 0.22993 8.48644e-07 2.45807e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| to take on the ||| 0.0107527 0.22993 8.48644e-07 7.29399e-07 2.718 ||| 0-2 ||| 93 1.17835e+06 +en ||| to take on ||| 0.0114943 0.22993 4.24322e-06 1.1881e-05 2.718 ||| 0-2 ||| 435 1.17835e+06 +en ||| to take over ||| 0.00671141 0.157937 8.48644e-07 5.73277e-07 2.718 ||| 0-2 ||| 149 1.17835e+06 +en ||| to take part in ||| 0.00651466 0.605812 3.39458e-06 7.87605e-08 2.718 ||| 0-3 ||| 614 1.17835e+06 +en ||| to take place , ||| 0.0208333 0.0247351 8.48644e-07 8.12218e-09 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| to take place at ||| 0.027027 0.321886 8.48644e-07 8.61275e-09 2.718 ||| 0-3 ||| 37 1.17835e+06 +en ||| to take place by ||| 0.333333 0.0468744 8.48644e-07 1.83165e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to take place in the ||| 0.0384615 0.605812 8.48644e-07 6.10389e-09 2.718 ||| 0-3 ||| 26 1.17835e+06 +en ||| to take place in ||| 0.0974026 0.605812 1.27297e-05 9.94251e-08 2.718 ||| 0-3 ||| 154 1.17835e+06 +en ||| to take place within ||| 0.142857 0.369196 1.69729e-06 2.38705e-09 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| to take place ||| 0.00406504 0.0247351 2.54593e-06 6.81078e-08 2.718 ||| 0-0 ||| 738 1.17835e+06 +en ||| to take sides in ||| 0.125 0.605812 8.48644e-07 2.42452e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| to take that into ||| 0.0555556 0.525896 8.48644e-07 5.3274e-08 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| to take the necessary ||| 0.0714286 0.0074151 8.48644e-07 4.10697e-10 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| to take the ||| 0.00180723 0.0247351 2.54593e-06 2.77825e-06 2.718 ||| 0-0 ||| 1660 1.17835e+06 +en ||| to take these last ||| 1 0.0247351 8.48644e-07 1.02502e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to take these ||| 0.016129 0.0247351 8.48644e-07 4.69333e-08 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| to take this opportunity ||| 0.00109529 0.0013296 8.48644e-07 1.22765e-11 2.718 ||| 0-2 ||| 913 1.17835e+06 +en ||| to take this ||| 0.000846024 0.0013296 8.48644e-07 6.82404e-08 2.718 ||| 0-2 ||| 1182 1.17835e+06 +en ||| to take up ||| 0.00386847 0.0160751 1.69729e-06 2.80496e-08 2.718 ||| 0-0 0-1 ||| 517 1.17835e+06 +en ||| to take us in ||| 0.25 0.605812 8.48644e-07 1.90407e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to take with ||| 0.0357143 0.0535436 8.48644e-07 1.66794e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| to take ||| 0.00425424 0.0247351 5.68592e-05 4.52544e-05 2.718 ||| 0-0 ||| 15749 1.17835e+06 +en ||| to taking a leading role in ||| 0.333333 0.605812 8.48644e-07 1.49469e-14 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| to taking ||| 0.00537634 0.0247351 8.48644e-07 1.1946e-05 2.718 ||| 0-0 ||| 186 1.17835e+06 +en ||| to talk about ||| 0.000971817 0.0401564 8.48644e-07 2.04505e-08 2.718 ||| 0-2 ||| 1029 1.17835e+06 +en ||| to talk ||| 0.00100402 0.0247351 8.48644e-07 2.2571e-06 2.718 ||| 0-0 ||| 996 1.17835e+06 +en ||| to tax in ||| 1 0.605812 8.48644e-07 2.59739e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to teach us about ||| 0.5 0.0401564 8.48644e-07 2.12868e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to tell the ||| 0.0138408 0.0247351 3.39458e-06 1.69456e-07 2.718 ||| 0-0 ||| 289 1.17835e+06 +en ||| to tell us what ||| 0.0238095 0.0247351 8.48644e-07 1.11624e-11 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| to tell us ||| 0.0034965 0.0247351 8.48644e-07 7.95555e-09 2.718 ||| 0-0 ||| 286 1.17835e+06 +en ||| to tell ||| 0.00594732 0.0247351 5.94051e-06 2.76024e-06 2.718 ||| 0-0 ||| 1177 1.17835e+06 +en ||| to temporary ||| 0.0714286 0.0247351 8.48644e-07 4.35679e-07 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| to tender ||| 0.00990099 0.0247351 8.48644e-07 2.13623e-07 2.718 ||| 0-0 ||| 101 1.17835e+06 +en ||| to terms ||| 0.016129 0.0247351 8.48644e-07 3.08517e-05 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| to thank him for ||| 0.00689655 0.0286209 8.48644e-07 3.46769e-11 2.718 ||| 0-3 ||| 145 1.17835e+06 +en ||| to thank ||| 8.03988e-05 0.0247351 8.48644e-07 2.97386e-06 2.718 ||| 0-0 ||| 12438 1.17835e+06 +en ||| to that effect at ||| 0.25 0.321886 8.48644e-07 1.99468e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to that in ||| 0.0681818 0.605812 5.09187e-06 0.000690241 2.718 ||| 0-2 ||| 88 1.17835e+06 +en ||| to that of ||| 0.00568182 0.0181957 1.69729e-06 6.44794e-06 2.718 ||| 0-0 0-2 ||| 352 1.17835e+06 +en ||| to that question in ||| 0.2 0.605812 8.48644e-07 5.71037e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to that wish ||| 1 0.0247351 8.48644e-07 1.39342e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to that ||| 0.00147348 0.0247351 5.09187e-06 0.000472827 2.718 ||| 0-0 ||| 4072 1.17835e+06 +en ||| to the 8th Conference of ||| 1 0.0116562 8.48644e-07 5.56453e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to the Commission ||| 0.000164555 0.0247351 8.48644e-07 1.00793e-06 2.718 ||| 0-0 ||| 6077 1.17835e+06 +en ||| to the Community system ||| 0.25 0.0247351 8.48644e-07 7.79185e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to the Community ||| 0.00549451 0.0247351 8.48644e-07 2.79378e-07 2.718 ||| 0-0 ||| 182 1.17835e+06 +en ||| to the Convention in ||| 0.25 0.605812 8.48644e-07 8.16186e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| to the Council a few months ||| 0.5 0.0247351 8.48644e-07 1.86859e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to the Council a few ||| 0.5 0.0247351 8.48644e-07 4.63669e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to the Council a ||| 0.0294118 0.0247351 8.48644e-07 2.64501e-08 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| to the Council as ||| 0.0769231 0.066968 8.48644e-07 3.39323e-08 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| to the Council ||| 0.000566893 0.0247351 1.69729e-06 5.96719e-07 2.718 ||| 0-0 ||| 3528 1.17835e+06 +en ||| to the European Union when it ||| 1 0.142731 8.48644e-07 1.07645e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to the European Union when ||| 0.25 0.142731 8.48644e-07 6.05321e-11 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| to the European ||| 0.00225225 0.0247351 8.48644e-07 5.7703e-06 2.718 ||| 0-0 ||| 444 1.17835e+06 +en ||| to the Knesset in ||| 1 0.605812 8.48644e-07 1.76336e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to the Resolution , ||| 1 0.0247351 8.48644e-07 2.88103e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to the Resolution ||| 0.25 0.0247351 8.48644e-07 2.41587e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to the Spanish Government . ||| 0.25 0.0247351 8.48644e-07 5.61819e-15 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to the Spanish Government ||| 0.0714286 0.0247351 8.48644e-07 1.8548e-12 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| to the Spanish ||| 0.0666667 0.0247351 8.48644e-07 3.84813e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| to the actions ||| 0.0169492 0.0247351 8.48644e-07 1.20448e-07 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| to the appearance of ||| 0.0909091 0.0247351 8.48644e-07 1.05069e-09 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| to the appearance ||| 0.0833333 0.0247351 8.48644e-07 1.93269e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| to the attention , ||| 1 0.0247351 8.48644e-07 5.37725e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to the attention ||| 0.00584795 0.0247351 8.48644e-07 4.50904e-07 2.718 ||| 0-0 ||| 171 1.17835e+06 +en ||| to the ballot boxes in ||| 1 0.605812 8.48644e-07 2.51909e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to the best of ||| 0.0181818 0.0247351 8.48644e-07 1.29929e-08 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| to the best ||| 0.00657895 0.0247351 8.48644e-07 2.38998e-07 2.718 ||| 0-0 ||| 152 1.17835e+06 +en ||| to the city on ||| 0.2 0.22993 8.48644e-07 9.28738e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| to the closure ||| 0.025 0.0247351 8.48644e-07 1.17342e-08 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| to the concept ||| 0.00680272 0.0247351 8.48644e-07 1.02502e-07 2.718 ||| 0-0 ||| 147 1.17835e+06 +en ||| to the conclusion ||| 0.00164474 0.0247351 8.48644e-07 1.52717e-07 2.718 ||| 0-0 ||| 608 1.17835e+06 +en ||| to the construction of Europe must have ||| 0.25 0.0247351 8.48644e-07 1.48291e-17 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to the construction of Europe must ||| 0.2 0.0247351 8.48644e-07 1.23991e-15 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| to the construction of Europe ||| 0.0588235 0.0247351 8.48644e-07 8.0222e-13 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| to the construction of ||| 0.0123457 0.0247351 8.48644e-07 1.58542e-09 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| to the construction ||| 0.00943396 0.0247351 8.48644e-07 2.9163e-08 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| to the crisis ||| 0.00229358 0.0247351 8.48644e-07 1.24762e-07 2.718 ||| 0-0 ||| 436 1.17835e+06 +en ||| to the cultivation of ||| 0.111111 0.0181957 8.48644e-07 1.95318e-10 2.718 ||| 0-0 0-3 ||| 9 1.17835e+06 +en ||| to the death penalty in ||| 0.0909091 0.605812 8.48644e-07 1.91501e-12 2.718 ||| 0-4 ||| 11 1.17835e+06 +en ||| to the decisions already made by ||| 1 0.0468744 8.48644e-07 3.43504e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to the effect ||| 0.00630252 0.0247351 5.09187e-06 5.75667e-07 2.718 ||| 0-0 ||| 952 1.17835e+06 +en ||| to the end of ||| 0.00947867 0.0247351 1.69729e-06 4.08174e-08 2.718 ||| 0-0 ||| 211 1.17835e+06 +en ||| to the end ||| 0.00543478 0.0247351 1.69729e-06 7.50817e-07 2.718 ||| 0-0 ||| 368 1.17835e+06 +en ||| to the endangerment of ||| 1 0.0247351 8.48644e-07 3.75246e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to the endangerment ||| 1 0.0247351 8.48644e-07 6.90248e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to the environment ||| 0.00137741 0.0247351 8.48644e-07 9.62895e-08 2.718 ||| 0-0 ||| 726 1.17835e+06 +en ||| to the eventual ||| 0.0714286 0.012951 8.48644e-07 4.91183e-10 2.718 ||| 0-0 0-1 ||| 14 1.17835e+06 +en ||| to the extent of ||| 0.0222222 0.0247351 8.48644e-07 1.80306e-08 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| to the extent ||| 0.0056926 0.0400323 2.54593e-06 1.10249e-06 2.718 ||| 0-2 ||| 527 1.17835e+06 +en ||| to the fact that ||| 0.000679348 0.0247351 8.48644e-07 8.50308e-08 2.718 ||| 0-0 ||| 1472 1.17835e+06 +en ||| to the fact ||| 0.00773528 0.0247351 1.52756e-05 5.05486e-06 2.718 ||| 0-0 ||| 2327 1.17835e+06 +en ||| to the field ||| 0.0204082 0.0247351 8.48644e-07 2.52113e-07 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| to the first base , ||| 1 0.138055 8.48644e-07 1.34393e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to the first base ||| 1 0.138055 8.48644e-07 1.12694e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to the first item on ||| 0.5 0.22993 8.48644e-07 9.22011e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to the first ||| 0.00210526 0.138055 8.48644e-07 3.33414e-05 2.718 ||| 0-2 ||| 475 1.17835e+06 +en ||| to the fore of ||| 0.333333 0.0181957 8.48644e-07 2.70621e-10 2.718 ||| 0-0 0-3 ||| 3 1.17835e+06 +en ||| to the four ||| 0.011236 0.0247351 8.48644e-07 3.91716e-08 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| to the furniture in ||| 1 0.605812 1.69729e-06 2.771e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to the great ||| 0.00680272 0.0247351 8.48644e-07 6.78168e-07 2.718 ||| 0-0 ||| 147 1.17835e+06 +en ||| to the greater ||| 0.03125 0.0247351 8.48644e-07 2.27264e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| to the ground at ||| 1 0.321886 8.48644e-07 2.55314e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to the ground ||| 0.0208333 0.0247351 8.48644e-07 2.01897e-07 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| to the hope ||| 0.0588235 0.0247351 8.48644e-07 3.02501e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| to the increase in ||| 0.0131579 0.605812 8.48644e-07 3.25467e-07 2.718 ||| 0-3 ||| 76 1.17835e+06 +en ||| to the jet ||| 1 0.0247351 8.48644e-07 6.90248e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to the key ||| 0.0666667 0.0247351 8.48644e-07 1.25453e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| to the kind of ||| 0.0277778 0.0247351 8.48644e-07 4.578e-08 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| to the kind ||| 0.0204082 0.0247351 8.48644e-07 8.42102e-07 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| to the letter of the law in ||| 1 0.605812 8.48644e-07 3.839e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| to the liking ||| 0.111111 0.0247351 8.48644e-07 5.0043e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| to the man in the street ||| 0.5 0.605812 8.48644e-07 1.37918e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to the man in the ||| 0.5 0.605812 8.48644e-07 9.85131e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to the man in ||| 0.333333 0.605812 8.48644e-07 1.60466e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to the matter at ||| 0.333333 0.321886 8.48644e-07 2.26401e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| to the matter in ||| 0.037037 0.605812 8.48644e-07 2.61356e-06 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| to the need ||| 0.00114679 0.0247351 8.48644e-07 1.58222e-06 2.718 ||| 0-0 ||| 872 1.17835e+06 +en ||| to the next ||| 0.00194932 0.0247351 8.48644e-07 1.78256e-07 2.718 ||| 0-0 ||| 513 1.17835e+06 +en ||| to the one in Amendment No 1 ||| 1 0.605812 8.48644e-07 1.23613e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to the one in Amendment No ||| 1 0.605812 8.48644e-07 1.94054e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to the one in Amendment ||| 1 0.605812 8.48644e-07 2.86638e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to the one in ||| 0.0769231 0.605812 8.48644e-07 1.04996e-05 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| to the point , in ||| 0.5 0.605812 8.48644e-07 2.62802e-07 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to the point of death ||| 1 0.0247351 8.48644e-07 4.4562e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to the point of ||| 0.00900901 0.0247351 8.48644e-07 8.20664e-08 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| to the point ||| 0.00156006 0.0247351 8.48644e-07 1.50957e-06 2.718 ||| 0-0 ||| 641 1.17835e+06 +en ||| to the possibility ||| 0.00531915 0.0247351 8.48644e-07 1.47713e-07 2.718 ||| 0-0 ||| 188 1.17835e+06 +en ||| to the principle whereby costs are borne ||| 1 0.0247351 8.48644e-07 3.12941e-22 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to the principle whereby costs are ||| 1 0.0247351 8.48644e-07 9.77941e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to the principle whereby costs ||| 1 0.0247351 8.48644e-07 6.4454e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to the principle whereby ||| 0.25 0.0247351 8.48644e-07 8.57101e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to the principle ||| 0.00203666 0.0247351 8.48644e-07 2.64537e-07 2.718 ||| 0-0 ||| 491 1.17835e+06 +en ||| to the problem ||| 0.0011976 0.0247351 8.48644e-07 3.88092e-07 2.718 ||| 0-0 ||| 835 1.17835e+06 +en ||| to the processing of applications ||| 1 0.0116562 8.48644e-07 1.49974e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to the processing of ||| 0.0833333 0.0116562 8.48644e-07 1.07125e-09 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| to the production of ||| 0.0131579 0.0116562 8.48644e-07 6.21174e-09 2.718 ||| 0-3 ||| 76 1.17835e+06 +en ||| to the regions of ||| 0.0909091 0.0247351 8.48644e-07 7.73007e-09 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| to the regions ||| 0.00840336 0.0247351 8.48644e-07 1.42191e-07 2.718 ||| 0-0 ||| 119 1.17835e+06 +en ||| to the responsibility of ||| 0.0416667 0.0181957 8.48644e-07 2.71798e-09 2.718 ||| 0-0 0-3 ||| 24 1.17835e+06 +en ||| to the rest of ||| 0.0104167 0.0247351 8.48644e-07 7.09215e-09 2.718 ||| 0-0 ||| 96 1.17835e+06 +en ||| to the rest ||| 0.00381679 0.0247351 8.48644e-07 1.30457e-07 2.718 ||| 0-0 ||| 262 1.17835e+06 +en ||| to the same topic ||| 0.5 0.0247351 8.48644e-07 2.59669e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to the same ||| 0.00154083 0.0247351 8.48644e-07 1.38861e-06 2.718 ||| 0-0 ||| 649 1.17835e+06 +en ||| to the situation ||| 0.00150376 0.0247351 8.48644e-07 8.88694e-07 2.718 ||| 0-0 ||| 665 1.17835e+06 +en ||| to the talks ||| 0.0666667 0.0247351 8.48644e-07 4.53838e-08 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| to the task ||| 0.00621118 0.0247351 8.48644e-07 2.17428e-07 2.718 ||| 0-0 ||| 161 1.17835e+06 +en ||| to the test ||| 0.0104167 0.0011669 8.48644e-07 6.31289e-09 2.718 ||| 0-1 ||| 96 1.17835e+06 +en ||| to the text ||| 0.00414938 0.0247351 8.48644e-07 1.49093e-07 2.718 ||| 0-0 ||| 241 1.17835e+06 +en ||| to the tune of ||| 0.00735294 0.0247351 8.48644e-07 2.80497e-09 2.718 ||| 0-0 ||| 136 1.17835e+06 +en ||| to the tune ||| 0.015544 0.0247351 2.54593e-06 5.1596e-08 2.718 ||| 0-0 ||| 193 1.17835e+06 +en ||| to the view ||| 0.00900901 0.0247351 8.48644e-07 1.55875e-06 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| to the vote ||| 0.000834725 0.0247351 8.48644e-07 2.7144e-07 2.718 ||| 0-0 ||| 1198 1.17835e+06 +en ||| to the way in which ||| 0.00617284 0.605812 8.48644e-07 4.6127e-08 2.718 ||| 0-3 ||| 162 1.17835e+06 +en ||| to the way in ||| 0.00598802 0.605812 8.48644e-07 5.43015e-06 2.718 ||| 0-3 ||| 167 1.17835e+06 +en ||| to the work of ||| 0.00414938 0.0116562 8.48644e-07 4.70902e-08 2.718 ||| 0-3 ||| 241 1.17835e+06 +en ||| to the year ||| 0.0166667 0.0247351 8.48644e-07 4.30369e-07 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| to the ||| 0.00589046 0.0247351 0.000852888 0.00172562 2.718 ||| 0-0 ||| 170615 1.17835e+06 +en ||| to their advantage for ||| 1 0.0286209 8.48644e-07 6.00787e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to their credit ||| 0.0454545 0.0247351 8.48644e-07 1.17289e-09 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| to their determination ||| 0.5 0.0247351 8.48644e-07 3.87706e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to their measure in ||| 1 0.605812 8.48644e-07 3.56235e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to their ||| 0.00161476 0.0247351 5.94051e-06 3.25803e-05 2.718 ||| 0-0 ||| 4335 1.17835e+06 +en ||| to them , creating ||| 1 0.0247351 8.48644e-07 5.24206e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to them , ||| 0.00359712 0.0247351 8.48644e-07 8.99153e-06 2.718 ||| 0-0 ||| 278 1.17835e+06 +en ||| to them and ||| 0.00819672 0.0247351 8.48644e-07 9.44424e-07 2.718 ||| 0-0 ||| 122 1.17835e+06 +en ||| to them as a result of ||| 1 0.0116562 8.48644e-07 7.74074e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to them at this ||| 1 0.321886 8.48644e-07 6.16069e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to them at ||| 0.25 0.321886 2.54593e-06 9.53461e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| to them by ||| 0.03125 0.0468744 8.48644e-07 2.02769e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| to them in the ||| 0.0555556 0.605812 8.48644e-07 6.75721e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| to them in ||| 0.16092 0.605812 1.1881e-05 0.000110067 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| to them on ||| 0.0909091 0.22993 8.48644e-07 1.97949e-05 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to them that ||| 0.02 0.0247351 8.48644e-07 1.26831e-06 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| to them to do , ||| 1 0.0247351 8.48644e-07 2.74471e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to them to do ||| 1 0.0247351 8.48644e-07 2.30155e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to them to ||| 0.0333333 0.0247351 1.69729e-06 6.6997e-06 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| to them was through this ||| 1 0.0247351 8.48644e-07 7.02564e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to them was through ||| 1 0.0247351 8.48644e-07 1.08733e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to them was ||| 0.5 0.0247351 8.48644e-07 2.36221e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to them when ||| 0.0833333 0.142731 8.48644e-07 1.41899e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| to them within ||| 0.5 0.369196 8.48644e-07 2.64255e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to them ||| 0.00554895 0.0247351 1.1881e-05 7.53977e-05 2.718 ||| 0-0 ||| 2523 1.17835e+06 +en ||| to themselves ||| 0.0140845 0.0247351 8.48644e-07 1.20781e-05 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| to think along ||| 0.0909091 0.155535 8.48644e-07 2.70377e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to think hard for ||| 1 0.0286209 8.48644e-07 4.10985e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to think in terms ||| 0.04 0.605812 8.48644e-07 1.7227e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| to think in ||| 0.0454545 0.605812 1.69729e-06 1.56951e-05 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| to think of ||| 0.00680272 0.0116562 8.48644e-07 4.63498e-07 2.718 ||| 0-2 ||| 147 1.17835e+06 +en ||| to think ||| 0.00452489 0.0247351 5.09187e-06 1.07514e-05 2.718 ||| 0-0 ||| 1326 1.17835e+06 +en ||| to this . as ||| 1 0.066968 8.48644e-07 3.12827e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to this area ||| 0.0106383 0.0013296 8.48644e-07 1.76026e-08 2.718 ||| 0-1 ||| 94 1.17835e+06 +en ||| to this at ||| 0.142857 0.321886 1.69729e-06 2.29671e-05 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| to this effect in ||| 0.0769231 0.605812 8.48644e-07 8.84477e-08 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| to this effect ||| 0.00307692 0.0247351 8.48644e-07 6.05881e-08 2.718 ||| 0-0 ||| 325 1.17835e+06 +en ||| to this end ||| 0.0015528 0.0247351 1.69729e-06 7.90224e-08 2.718 ||| 0-0 ||| 1288 1.17835e+06 +en ||| to this for ||| 0.111111 0.0286209 8.48644e-07 6.60569e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| to this in June , at ||| 1 0.321886 8.48644e-07 5.04179e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to this in ||| 0.111111 0.605812 1.01837e-05 0.000265131 2.718 ||| 0-2 ||| 108 1.17835e+06 +en ||| to this issue , however , ||| 0.5 0.0247351 8.48644e-07 2.16529e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to this issue , however ||| 0.333333 0.0247351 8.48644e-07 1.81568e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| to this issue , ||| 0.00892857 0.0247351 8.48644e-07 1.63915e-08 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| to this issue ||| 0.0015873 0.0247351 8.48644e-07 1.37449e-07 2.718 ||| 0-0 ||| 630 1.17835e+06 +en ||| to this kind ||| 0.0181818 0.0247351 8.48644e-07 8.86301e-08 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| to this multiannual approach in ||| 1 0.605812 8.48644e-07 1.85973e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to this on ||| 0.5 0.22993 8.48644e-07 4.76821e-05 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to this problem in ||| 0.0833333 0.605812 8.48644e-07 5.96279e-08 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| to this question ||| 0.00327869 0.0247351 8.48644e-07 1.50253e-07 2.718 ||| 0-0 ||| 305 1.17835e+06 +en ||| to this when ||| 0.0769231 0.142731 8.48644e-07 3.41808e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| to this ||| 0.00128566 0.0247351 1.78215e-05 0.000181619 2.718 ||| 0-0 ||| 16334 1.17835e+06 +en ||| to those actions at ||| 0.5 0.321886 8.48644e-07 1.79652e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to those in ||| 0.016129 0.605812 1.69729e-06 2.9712e-05 2.718 ||| 0-2 ||| 124 1.17835e+06 +en ||| to those laid down in the ||| 0.2 0.605812 8.48644e-07 1.38799e-13 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| to those laid down in ||| 0.111111 0.605812 8.48644e-07 2.26087e-12 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| to those living in ||| 0.1 0.605812 8.48644e-07 2.48987e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| to those of ||| 0.0031746 0.0247351 8.48644e-07 1.10648e-06 2.718 ||| 0-0 ||| 315 1.17835e+06 +en ||| to those to be put in ||| 1 0.605812 8.48644e-07 5.27564e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| to those ||| 0.000729395 0.0247351 2.54593e-06 2.03532e-05 2.718 ||| 0-0 ||| 4113 1.17835e+06 +en ||| to throw something into the ring related ||| 0.5 0.525896 8.48644e-07 5.03488e-22 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to throw something into the ring ||| 0.5 0.525896 8.48644e-07 7.68684e-18 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to throw something into the ||| 0.5 0.525896 8.48644e-07 1.53737e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to throw something into ||| 0.5 0.525896 8.48644e-07 2.50419e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to timeless ||| 1 0.0247351 8.48644e-07 1.12433e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to to be able ||| 1 0.0247351 8.48644e-07 3.77915e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to to be ||| 1 0.0247351 8.48644e-07 4.52647e-05 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| to to ||| 0.04 0.0247351 8.48644e-07 0.00249765 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| to translate ||| 0.00529101 0.0247351 8.48644e-07 1.32109e-07 2.718 ||| 0-0 ||| 189 1.17835e+06 +en ||| to travel , on a ||| 1 0.22993 8.48644e-07 1.47453e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| to travel , on ||| 0.5 0.22993 8.48644e-07 3.32657e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to travel through ||| 0.0909091 0.0366102 8.48644e-07 3.15865e-09 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to travel ||| 0.00164204 0.0247351 8.48644e-07 1.06249e-06 2.718 ||| 0-0 ||| 609 1.17835e+06 +en ||| to treat the two as one ||| 1 0.066968 8.48644e-07 1.60499e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to treat the two as ||| 1 0.066968 8.48644e-07 3.85074e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to treatment in ||| 0.166667 0.605812 8.48644e-07 2.4825e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| to treatment ||| 0.0131579 0.0247351 8.48644e-07 1.70055e-06 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| to trust ||| 0.0102041 0.192848 8.48644e-07 6.22807e-05 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| to try and ||| 0.00169492 0.0247351 8.48644e-07 5.42206e-08 2.718 ||| 0-0 ||| 590 1.17835e+06 +en ||| to try their luck across ||| 1 0.274879 8.48644e-07 3.16064e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| to try to ||| 0.00136799 0.0247351 1.69729e-06 3.84639e-07 2.718 ||| 0-2 ||| 1462 1.17835e+06 +en ||| to try ||| 0.002002 0.0247351 1.69729e-06 4.32868e-06 2.718 ||| 0-0 ||| 999 1.17835e+06 +en ||| to turn its attention ||| 0.125 0.0247351 8.48644e-07 2.34603e-12 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| to turn its ||| 0.0588235 0.0247351 8.48644e-07 8.97829e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| to turn ||| 0.00193986 0.0247351 1.69729e-06 6.30188e-06 2.718 ||| 0-0 ||| 1031 1.17835e+06 +en ||| to under ||| 0.115385 0.205566 2.54593e-06 0.000502458 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| to undergo inspection , in ||| 0.5 0.605812 8.48644e-07 2.62873e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to understand ||| 0.00151899 0.0247351 2.54593e-06 2.19526e-06 2.718 ||| 0-0 ||| 1975 1.17835e+06 +en ||| to undertake a ||| 0.0104167 0.0247351 8.48644e-07 3.22694e-08 2.718 ||| 0-0 ||| 96 1.17835e+06 +en ||| to undertake ||| 0.00466563 0.0247351 2.54593e-06 7.28005e-07 2.718 ||| 0-0 ||| 643 1.17835e+06 +en ||| to us as ||| 0.0142857 0.066968 8.48644e-07 4.60683e-06 2.718 ||| 0-2 ||| 70 1.17835e+06 +en ||| to us at ||| 0.368421 0.321886 5.94051e-06 1.02448e-05 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| to us by ||| 0.00769231 0.0468744 8.48644e-07 2.17873e-06 2.718 ||| 0-2 ||| 130 1.17835e+06 +en ||| to us here in ||| 0.125 0.605812 1.69729e-06 2.39819e-07 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| to us in exactly the ||| 1 0.605812 8.48644e-07 7.28957e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to us in exactly ||| 1 0.605812 8.48644e-07 1.18738e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to us in ||| 0.158228 0.605812 2.12161e-05 0.000118265 2.718 ||| 0-2 ||| 158 1.17835e+06 +en ||| to us on ||| 0.117647 0.22993 3.39458e-06 2.12693e-05 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| to us there , ||| 1 0.0247351 8.48644e-07 2.96147e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to us there ||| 0.5 0.0247351 8.48644e-07 2.48331e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to us to make it a ||| 1 0.0247351 8.48644e-07 9.86103e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to us to make it ||| 1 0.0247351 8.48644e-07 2.22467e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to us to make ||| 0.0909091 0.0247351 8.48644e-07 1.251e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| to us to ||| 0.00440529 0.0247351 8.48644e-07 7.19874e-06 2.718 ||| 0-0 ||| 227 1.17835e+06 +en ||| to us today ||| 0.0142857 0.0247351 8.48644e-07 3.65615e-08 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| to us what ||| 0.166667 0.0247351 8.48644e-07 1.1367e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| to us when ||| 0.111111 0.142731 8.48644e-07 1.52468e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| to us within ||| 0.25 0.369196 8.48644e-07 2.83938e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to us ||| 0.00405597 0.0247351 1.69729e-05 8.10137e-05 2.718 ||| 0-0 ||| 4931 1.17835e+06 +en ||| to use here ||| 0.5 0.0247351 8.48644e-07 2.77124e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to use in ||| 0.0555556 0.605812 2.54593e-06 1.99503e-05 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| to use my ||| 0.0181818 0.0247351 8.48644e-07 8.78877e-09 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| to use on documents ||| 1 0.22993 8.48644e-07 9.04158e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to use on ||| 0.25 0.22993 8.48644e-07 3.58793e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to use the ||| 0.00194175 0.0247351 1.69729e-06 8.38996e-07 2.718 ||| 0-0 ||| 1030 1.17835e+06 +en ||| to use violence ||| 0.0588235 0.0247351 8.48644e-07 3.10224e-10 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| to use ||| 0.00356618 0.0247351 1.4427e-05 1.36663e-05 2.718 ||| 0-0 ||| 4767 1.17835e+06 +en ||| to violate what ||| 1 0.0035633 8.48644e-07 1.00653e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to visit in ||| 1 0.605812 8.48644e-07 1.21047e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| to visit ||| 0.00210526 0.0127545 8.48644e-07 3.93516e-08 2.718 ||| 0-0 0-1 ||| 475 1.17835e+06 +en ||| to vote ||| 0.000264831 0.0247351 8.48644e-07 4.42144e-06 2.718 ||| 0-0 ||| 3776 1.17835e+06 +en ||| to wage ||| 0.0138889 0.0247351 8.48644e-07 1.71461e-07 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| to wait . otherwise , ||| 1 0.0247351 8.48644e-07 1.62839e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to wait . otherwise ||| 1 0.0247351 8.48644e-07 1.36548e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to wait . ||| 0.0588235 0.0247351 8.48644e-07 2.29878e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| to wait until ||| 0.0104712 0.0092136 1.69729e-06 1.40352e-10 2.718 ||| 0-2 ||| 191 1.17835e+06 +en ||| to wait ||| 0.00152207 0.0247351 8.48644e-07 7.58924e-07 2.718 ||| 0-0 ||| 657 1.17835e+06 +en ||| to wear ||| 0.0120482 0.0247351 8.48644e-07 1.12433e-07 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| to welcome the ||| 0.00206612 0.0247351 8.48644e-07 1.89991e-07 2.718 ||| 0-0 ||| 484 1.17835e+06 +en ||| to welcome this report as one of ||| 1 0.0116562 8.48644e-07 1.50288e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| to welcome you to ||| 0.05 0.0247351 8.48644e-07 8.87865e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| to welcome ||| 0.00122249 0.0247351 1.69729e-06 3.09472e-06 2.718 ||| 0-0 ||| 1636 1.17835e+06 +en ||| to what extent and with what objectives ||| 0.5 0.0535436 8.48644e-07 2.29795e-19 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to what extent and with what ||| 0.5 0.0535436 8.48644e-07 4.91015e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to what extent and with ||| 0.5 0.0535436 8.48644e-07 3.4995e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| to what extent ||| 0.00149254 0.0247351 8.48644e-07 7.58013e-09 2.718 ||| 0-0 ||| 670 1.17835e+06 +en ||| to what is ||| 0.0031348 0.0247351 8.48644e-07 1.23605e-06 2.718 ||| 0-0 ||| 319 1.17835e+06 +en ||| to what was to be done with ||| 1 0.0535436 8.48644e-07 3.34421e-15 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| to what we suppose ||| 0.5 0.0247351 8.48644e-07 3.40268e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| to what we ||| 0.011236 0.0247351 8.48644e-07 4.47721e-07 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| to what ||| 0.00198525 0.0247351 5.94051e-06 3.94388e-05 2.718 ||| 0-0 ||| 3526 1.17835e+06 +en ||| to when it ||| 0.25 0.142731 8.48644e-07 9.4073e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| to when ||| 0.021978 0.142731 1.69729e-06 0.000529 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| to where it is ||| 0.0666667 0.247783 8.48644e-07 4.21782e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| to where it ||| 0.0714286 0.247783 8.48644e-07 1.34578e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| to where we were ||| 0.333333 0.247783 8.48644e-07 1.53901e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| to where we ||| 0.0769231 0.247783 8.48644e-07 8.59108e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| to where ||| 0.0190476 0.247783 3.39458e-06 0.00075677 2.718 ||| 0-1 ||| 210 1.17835e+06 +en ||| to whether , in ||| 0.166667 0.605812 8.48644e-07 1.28549e-06 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| to whether ||| 0.00204918 0.0247351 1.69729e-06 7.38405e-06 2.718 ||| 0-0 ||| 976 1.17835e+06 +en ||| to which I have referred ||| 0.0217391 0.0060084 8.48644e-07 2.09925e-12 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| to which I have ||| 0.0135135 0.0060084 8.48644e-07 2.19358e-08 2.718 ||| 0-2 ||| 74 1.17835e+06 +en ||| to which I would also ||| 1 0.0247351 8.48644e-07 5.00409e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to which I would ||| 0.0909091 0.0247351 8.48644e-07 9.91183e-09 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| to which I ||| 0.00657895 0.0247351 1.69729e-06 1.68893e-06 2.718 ||| 0-0 ||| 304 1.17835e+06 +en ||| to which we in ||| 0.166667 0.605812 8.48644e-07 3.95695e-06 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| to which we ||| 0.00401606 0.0247351 8.48644e-07 2.71057e-06 2.718 ||| 0-0 ||| 249 1.17835e+06 +en ||| to which ||| 0.00145161 0.0247351 7.6378e-06 0.000238769 2.718 ||| 0-0 ||| 6200 1.17835e+06 +en ||| to whom we will always ||| 1 0.0247351 8.48644e-07 3.16226e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to whom we will ||| 1 0.0247351 8.48644e-07 1.83852e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to whom we ||| 0.0217391 0.0247351 8.48644e-07 2.12517e-08 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| to whom ||| 0.00172712 0.0247351 8.48644e-07 1.87201e-06 2.718 ||| 0-0 ||| 579 1.17835e+06 +en ||| to wind up ||| 0.00735294 0.0247351 8.48644e-07 2.07065e-09 2.718 ||| 0-0 ||| 136 1.17835e+06 +en ||| to wind ||| 0.0196078 0.0247351 8.48644e-07 6.07139e-07 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| to withdraw this misleading and ||| 0.25 0.0247351 8.48644e-07 1.00507e-16 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to withdraw this misleading ||| 0.25 0.0247351 8.48644e-07 8.02393e-15 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| to withdraw this ||| 0.0227273 0.0247351 8.48644e-07 1.70722e-09 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| to withdraw ||| 0.00131234 0.0247351 8.48644e-07 2.64218e-07 2.718 ||| 0-0 ||| 762 1.17835e+06 +en ||| to within ||| 0.0526316 0.369196 8.48644e-07 0.000985144 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| to witness situations ||| 1 0.0247351 8.48644e-07 1.38428e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| to witness ||| 0.0206897 0.0247351 2.54593e-06 4.0476e-07 2.718 ||| 0-0 ||| 145 1.17835e+06 +en ||| to women in ||| 0.0344828 0.605812 8.48644e-07 4.87472e-06 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| to work in ||| 0.00970874 0.605812 3.39458e-06 2.59739e-05 2.718 ||| 0-2 ||| 412 1.17835e+06 +en ||| to work out at ||| 0.5 0.321886 8.48644e-07 8.61841e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to work together ||| 0.00138504 0.0247351 8.48644e-07 1.06862e-08 2.718 ||| 0-0 ||| 722 1.17835e+06 +en ||| to work well together ||| 0.333333 0.0247351 8.48644e-07 1.69441e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| to work well ||| 0.0357143 0.0247351 8.48644e-07 2.82119e-08 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| to work within ||| 0.0243902 0.369196 8.48644e-07 6.23596e-07 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| to work ||| 0.000941442 0.0247351 4.24322e-06 1.77926e-05 2.718 ||| 0-0 ||| 5311 1.17835e+06 +en ||| to wrap ourselves in ||| 0.5 0.605812 8.48644e-07 1.82737e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| to write ||| 0.00460829 0.0247351 8.48644e-07 2.72651e-07 2.718 ||| 0-0 ||| 217 1.17835e+06 +en ||| to yet ||| 0.125 0.0247351 8.48644e-07 7.43465e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| to you , Commissioner , in ||| 0.5 0.605812 8.48644e-07 1.66181e-10 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| to you , ||| 0.00330033 0.0247351 1.69729e-06 1.08228e-05 2.718 ||| 0-0 ||| 606 1.17835e+06 +en ||| to you at ||| 0.363636 0.321886 3.39458e-06 1.14764e-05 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| to you during ||| 0.666667 0.226251 1.69729e-06 8.29504e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| to you in ||| 0.292135 0.605812 2.20648e-05 0.000132483 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| to you on ||| 0.0689655 0.22993 3.39458e-06 2.38263e-05 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| to you through ||| 0.25 0.0366102 8.48644e-07 2.69797e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| to you with ||| 0.105263 0.0535436 1.69729e-06 3.3449e-06 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| to you within ||| 0.5 0.369196 8.48644e-07 3.18074e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| to you ||| 0.00542345 0.0247351 1.10324e-05 9.07533e-05 2.718 ||| 0-0 ||| 2397 1.17835e+06 +en ||| to your ||| 0.00131148 0.0247351 1.69729e-06 7.19291e-06 2.718 ||| 0-0 ||| 1525 1.17835e+06 +en ||| to ||| 0.0275836 0.0247351 0.0262146 0.0281083 2.718 ||| 0-0 ||| 1.11987e+06 1.17835e+06 +en ||| tobacco in ||| 0.03125 0.605812 8.48644e-07 1.02977e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| today , as well as ||| 0.05 0.066968 8.48644e-07 1.5664e-11 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| today , as well ||| 0.047619 0.066968 8.48644e-07 1.53502e-09 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| today , as ||| 0.00518135 0.066968 8.48644e-07 9.68102e-07 2.718 ||| 0-2 ||| 193 1.17835e+06 +en ||| today , at a standstill . ||| 1 0.321886 8.48644e-07 2.08119e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| today , at a standstill ||| 1 0.321886 8.48644e-07 6.87087e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| today , at a ||| 0.0526316 0.321886 8.48644e-07 9.54287e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| today , at ||| 0.037037 0.321886 2.54593e-06 2.15289e-06 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| today , for ||| 0.015625 0.0286209 8.48644e-07 6.19206e-07 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| today , in ||| 0.0162602 0.605812 3.39458e-06 2.48529e-05 2.718 ||| 0-2 ||| 246 1.17835e+06 +en ||| today , on ||| 0.0365854 0.22993 2.54593e-06 4.46964e-06 2.718 ||| 0-2 ||| 82 1.17835e+06 +en ||| today , ||| 0.000856374 0.0398284 5.94051e-06 0.000143869 2.718 ||| 0-0 ||| 8174 1.17835e+06 +en ||| today - can be traced back to ||| 0.5 0.0247351 8.48644e-07 6.93925e-21 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| today - ||| 0.00749064 0.0398284 1.69729e-06 4.55066e-06 2.718 ||| 0-0 ||| 267 1.17835e+06 +en ||| today and ||| 0.00106383 0.0398284 8.48644e-07 1.51112e-05 2.718 ||| 0-0 ||| 940 1.17835e+06 +en ||| today at ||| 0.00363636 0.321886 8.48644e-07 1.80529e-05 2.718 ||| 0-1 ||| 275 1.17835e+06 +en ||| today being ||| 0.0263158 0.0398284 8.48644e-07 3.43317e-06 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| today by ||| 0.004 0.0468744 8.48644e-07 3.83925e-06 2.718 ||| 0-1 ||| 250 1.17835e+06 +en ||| today claiming ||| 1 0.0398284 8.48644e-07 7.8416e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| today compared ||| 1 0.216645 8.48644e-07 2.59813e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| today for ||| 0.0153846 0.0342247 1.69729e-06 1.38799e-05 2.718 ||| 0-0 0-1 ||| 130 1.17835e+06 +en ||| today from ||| 0.0232558 0.0308834 8.48644e-07 1.71724e-06 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| today goes to the four ||| 0.142857 0.0247351 8.48644e-07 2.44842e-15 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| today goes to the ||| 0.142857 0.0247351 8.48644e-07 1.0786e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| today goes to ||| 0.142857 0.0247351 8.48644e-07 1.75691e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| today have entered ||| 0.2 0.132067 8.48644e-07 1.0212e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| today in terms of ||| 0.333333 0.605812 8.48644e-07 1.24353e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| today in terms ||| 0.5 0.605812 1.69729e-06 2.28742e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| today in ||| 0.0308483 0.605812 2.03675e-05 0.000208402 2.718 ||| 0-1 ||| 778 1.17835e+06 +en ||| today is one which ||| 1 0.0398284 8.48644e-07 1.33868e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| today is one ||| 0.0322581 0.0398284 8.48644e-07 1.57592e-07 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| today is ||| 0.000650195 0.0398284 8.48644e-07 3.78099e-05 2.718 ||| 0-0 ||| 1538 1.17835e+06 +en ||| today on the ||| 0.00806452 0.22993 8.48644e-07 2.30095e-06 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| today on ||| 0.0103806 0.22993 2.54593e-06 3.74797e-05 2.718 ||| 0-1 ||| 289 1.17835e+06 +en ||| today to ||| 0.00207469 0.0398284 8.48644e-07 0.000107199 2.718 ||| 0-0 ||| 482 1.17835e+06 +en ||| today we ||| 0.00271003 0.0398284 8.48644e-07 1.36954e-05 2.718 ||| 0-0 ||| 369 1.17835e+06 +en ||| today where ||| 0.0769231 0.143806 8.48644e-07 1.02744e-05 2.718 ||| 0-0 0-1 ||| 13 1.17835e+06 +en ||| today will ||| 0.0123457 0.0398284 8.48644e-07 1.04368e-05 2.718 ||| 0-0 ||| 81 1.17835e+06 +en ||| today with ||| 0.0152672 0.0535436 1.69729e-06 5.26166e-06 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| today within ||| 0.333333 0.369196 8.48644e-07 5.00343e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| today ||| 0.00151943 0.0398284 5.94051e-05 0.0012064 2.718 ||| 0-0 ||| 46070 1.17835e+06 +en ||| toeing ||| 0.333333 0.166667 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| together , in ||| 0.0588235 0.605812 1.69729e-06 3.30748e-05 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| together across ||| 0.0454545 0.274879 8.48644e-07 1.23381e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| together and very soon ||| 1 0.0178344 8.48644e-07 2.99197e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| together as ||| 0.0126582 0.066968 8.48644e-07 1.08035e-05 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| together at ||| 0.179104 0.321886 1.01837e-05 2.40252e-05 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| together by us under ||| 1 0.205566 8.48644e-07 5.139e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| together by ||| 0.0294118 0.0468744 8.48644e-07 5.10936e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| together can take root in ||| 1 0.605812 8.48644e-07 2.39059e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| together in a ||| 0.012987 0.605812 8.48644e-07 1.22936e-05 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| together in such ||| 0.1 0.605812 8.48644e-07 5.73801e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| together in ||| 0.118333 0.605812 6.02537e-05 0.000277346 2.718 ||| 0-1 ||| 600 1.17835e+06 +en ||| together into ||| 0.636364 0.525896 5.94051e-06 1.32957e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| together like ||| 1 0.0128468 8.48644e-07 2.87518e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| together on this on ||| 1 0.22993 8.48644e-07 2.15642e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| together on ||| 0.0216607 0.22993 5.09187e-06 4.98789e-05 2.718 ||| 0-1 ||| 277 1.17835e+06 +en ||| together to adopt ||| 0.5 0.0247351 8.48644e-07 1.75571e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| together to form ||| 0.111111 0.0126274 8.48644e-07 6.92156e-11 2.718 ||| 0-1 0-2 ||| 9 1.17835e+06 +en ||| together to ||| 0.00544959 0.0247351 3.39458e-06 1.68818e-05 2.718 ||| 0-1 ||| 734 1.17835e+06 +en ||| together towards ||| 0.0277778 0.0616136 8.48644e-07 5.98318e-07 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| together under ||| 0.103448 0.205566 2.54593e-06 3.39615e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| together very ||| 0.1 0.0128468 8.48644e-07 5.63331e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| together what we ||| 0.5 0.0035633 8.48644e-07 2.66319e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| together what ||| 0.0714286 0.0035633 8.48644e-07 2.34594e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| together with a ||| 0.0045045 0.0331952 8.48644e-07 8.36683e-08 2.718 ||| 0-0 0-1 ||| 222 1.17835e+06 +en ||| together with me on ||| 0.5 0.22993 8.48644e-07 1.9204e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| together with my ||| 0.00617284 0.002535 8.48644e-07 5.43436e-10 2.718 ||| 0-2 ||| 162 1.17835e+06 +en ||| together with the ||| 0.000455789 0.0273552 8.48644e-07 2.00596e-08 2.718 ||| 0-1 0-2 ||| 2194 1.17835e+06 +en ||| together with ||| 0.00271897 0.0535436 1.1881e-05 7.00234e-06 2.718 ||| 0-1 ||| 5149 1.17835e+06 +en ||| together within ||| 0.125 0.369196 2.54593e-06 6.65867e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| together ||| 0.002207 0.0128468 2.46107e-05 0.0001619 2.718 ||| 0-0 ||| 13140 1.17835e+06 +en ||| tolerate a situation in ||| 0.0588235 0.605812 8.48644e-07 4.53282e-11 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| tolerated within ||| 0.25 0.369196 8.48644e-07 5.21075e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| tones where ||| 0.5 0.247783 8.48644e-07 5.96162e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| tonight in ||| 0.0344828 0.605812 8.48644e-07 4.34074e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| tonne in ||| 0.5 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| tonnes in ||| 0.0163934 0.605812 8.48644e-07 9.32798e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| tonnes of maize to ||| 1 0.0247351 8.48644e-07 2.1607e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| tonnes within ||| 0.5 0.369196 8.48644e-07 2.23951e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| too , as regards ||| 1 0.066968 8.48644e-07 4.08735e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| too , as ||| 0.0243902 0.066968 8.48644e-07 2.91954e-06 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| too , in ||| 0.0684932 0.605812 4.24322e-06 7.49497e-05 2.718 ||| 0-2 ||| 73 1.17835e+06 +en ||| too , into ||| 0.5 0.525896 8.48644e-07 3.59301e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| too , must ||| 0.012987 0.0011116 8.48644e-07 4.77389e-09 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| too , on the ||| 0.25 0.22993 8.48644e-07 8.27514e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| too , on ||| 0.111111 0.22993 1.69729e-06 1.34792e-05 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| too , to ||| 0.0108696 0.0247351 8.48644e-07 4.56214e-06 2.718 ||| 0-2 ||| 92 1.17835e+06 +en ||| too , when in ||| 1 0.605812 8.48644e-07 3.74673e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| too , within ||| 0.5 0.369196 8.48644e-07 1.79943e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| too , ||| 0.000903546 0.0011116 3.39458e-06 3.0887e-06 2.718 ||| 0-0 ||| 4427 1.17835e+06 +en ||| too - at ||| 1 0.321886 8.48644e-07 2.05363e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| too . we can do so ||| 1 0.0087276 8.48644e-07 3.25688e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| too : that we ||| 1 0.0054082 8.48644e-07 1.74564e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| too at ||| 0.25 0.321886 1.69729e-06 5.44427e-05 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| too big for ||| 0.111111 0.0286209 8.48644e-07 7.37519e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| too can move around ||| 1 0.159384 8.48644e-07 7.14322e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| too easily ||| 0.015625 0.0011116 8.48644e-07 1.04377e-09 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| too far in ||| 0.0149254 0.605812 8.48644e-07 4.29066e-07 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| too in the ||| 0.0454545 0.605812 8.48644e-07 3.85838e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| too in ||| 0.164179 0.605812 9.33509e-06 0.000628484 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| too little in ||| 0.0714286 0.605812 8.48644e-07 1.01752e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| too long in ||| 0.0833333 0.605812 8.48644e-07 2.12616e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| too long there should be ||| 1 0.0117359 8.48644e-07 4.1462e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| too long there should ||| 1 0.0117359 8.48644e-07 2.28782e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| too long there ||| 1 0.0117359 8.48644e-07 5.16322e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| too much from the perspective of ||| 0.5 0.0116562 8.48644e-07 5.96719e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| too much in ||| 0.0425532 0.605812 1.69729e-06 6.30809e-07 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| too much of ||| 0.015748 0.0116562 1.69729e-06 1.86286e-08 2.718 ||| 0-2 ||| 127 1.17835e+06 +en ||| too much on ||| 0.0185185 0.22993 1.69729e-06 1.13447e-07 2.718 ||| 0-2 ||| 108 1.17835e+06 +en ||| too often in ||| 0.0526316 0.605812 8.48644e-07 8.25828e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| too often put narrow ||| 1 0.0011116 8.48644e-07 2.85185e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| too often put ||| 0.333333 0.0011116 8.48644e-07 3.75243e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| too often ||| 0.00116686 0.0011116 8.48644e-07 3.40326e-09 2.718 ||| 0-0 ||| 857 1.17835e+06 +en ||| too on ||| 0.166667 0.22993 1.69729e-06 0.000113029 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| too present in ||| 1 0.605812 8.48644e-07 2.30025e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| too well in my ||| 0.125 0.605812 8.48644e-07 6.40865e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| too well in ||| 0.111111 0.605812 8.48644e-07 9.96524e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| too well under ||| 1 0.205566 8.48644e-07 1.22026e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| too when it ||| 0.5 0.142731 8.48644e-07 1.44087e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| too when ||| 0.166667 0.142731 1.69729e-06 8.10244e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| too where ||| 0.5 0.247783 8.48644e-07 1.15911e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| too ||| 0.000922731 0.0011116 1.95188e-05 2.59e-05 2.718 ||| 0-0 ||| 24926 1.17835e+06 +en ||| took a long time to ||| 0.142857 0.0247351 8.48644e-07 1.02066e-13 2.718 ||| 0-4 ||| 7 1.17835e+06 +en ||| took account ||| 0.0131579 0.233636 8.48644e-07 4.87591e-07 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| took at ||| 0.153846 0.321886 1.69729e-06 5.9003e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| took back in ||| 1 0.605812 8.48644e-07 4.58126e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| took in ||| 0.0930233 0.605812 3.39458e-06 6.81127e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| took on ||| 0.0210526 0.22993 1.69729e-06 1.22496e-05 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| took over ||| 0.0190476 0.157937 1.69729e-06 5.91062e-07 2.718 ||| 0-1 ||| 105 1.17835e+06 +en ||| took part in ||| 0.0179856 0.605812 4.24322e-06 8.1204e-08 2.718 ||| 0-2 ||| 278 1.17835e+06 +en ||| took place at ||| 0.037037 0.321886 1.69729e-06 8.87994e-09 2.718 ||| 0-2 ||| 54 1.17835e+06 +en ||| took place in Moscow amidst great media ||| 1 0.605812 8.48644e-07 2.29729e-27 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| took place in Moscow amidst great ||| 1 0.605812 8.48644e-07 7.97668e-23 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| took place in Moscow amidst ||| 1 0.605812 8.48644e-07 2.02969e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| took place in Moscow ||| 0.333333 0.605812 8.48644e-07 1.84517e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| took place in the ||| 0.0120482 0.605812 8.48644e-07 6.29325e-09 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| took place in ||| 0.047259 0.605812 2.12161e-05 1.0251e-07 2.718 ||| 0-2 ||| 529 1.17835e+06 +en ||| took place on ||| 0.00735294 0.22993 8.48644e-07 1.84357e-08 2.718 ||| 0-2 ||| 136 1.17835e+06 +en ||| took place ||| 0.00163043 0.0029826 2.54593e-06 2.2575e-08 2.718 ||| 0-0 ||| 1840 1.17835e+06 +en ||| took the ||| 0.00383877 0.0011669 1.69729e-06 4.22543e-07 2.718 ||| 0-1 ||| 521 1.17835e+06 +en ||| took when ||| 0.111111 0.142731 8.48644e-07 8.78112e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| took ||| 0.00242718 0.0029826 8.48644e-06 1.5e-05 2.718 ||| 0-0 ||| 4120 1.17835e+06 +en ||| tool in achieving communication between people of ||| 1 0.605812 8.48644e-07 1.35794e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| tool in achieving communication between people ||| 1 0.605812 8.48644e-07 2.49787e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| tool in achieving communication between ||| 1 0.605812 8.48644e-07 2.83784e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| tool in achieving communication ||| 1 0.605812 8.48644e-07 1.07576e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| tool in achieving ||| 0.5 0.605812 8.48644e-07 3.51554e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| tool in ||| 0.0181818 0.605812 8.48644e-07 5.31048e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| top of it , ||| 1 0.0116562 8.48644e-07 1.9984e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| top of it ||| 0.2 0.0116562 8.48644e-07 1.67574e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| top of ||| 0.00362976 0.0116562 1.69729e-06 9.42317e-07 2.718 ||| 0-1 ||| 551 1.17835e+06 +en ||| top positions among ||| 1 0.0422459 8.48644e-07 7.43882e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| top to bottom ||| 0.111111 0.0247351 8.48644e-07 2.79689e-11 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| top to ||| 0.0909091 0.0247351 8.48644e-07 1.94228e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| topic at ||| 0.111111 0.321886 8.48644e-07 7.48037e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| topic on which ||| 0.25 0.22993 8.48644e-07 1.31922e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| topic on ||| 0.04 0.22993 8.48644e-07 1.55301e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| total labour force - in ||| 1 0.605812 8.48644e-07 1.20774e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| total of ||| 0.00327869 0.0116562 1.69729e-06 1.28597e-06 2.718 ||| 0-1 ||| 610 1.17835e+06 +en ||| total present in ||| 1 0.605812 8.48644e-07 1.59378e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| totalitarian in nature ||| 0.333333 0.605812 8.48644e-07 4.57071e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| totalitarian in ||| 0.166667 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| totally at ||| 0.0869565 0.321886 1.69729e-06 1.72809e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| totally committed to ||| 0.0526316 0.0247351 8.48644e-07 1.00542e-10 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| totally in ||| 0.0285714 0.605812 1.69729e-06 1.99489e-05 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| totally into the ||| 1 0.525896 8.48644e-07 5.87109e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| totally into ||| 0.5 0.525896 8.48644e-07 9.56331e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| totally ||| 0.000761808 0.0007698 2.54593e-06 2e-06 2.718 ||| 0-0 ||| 3938 1.17835e+06 +en ||| touch on ||| 0.0060241 0.22993 8.48644e-07 1.82706e-06 2.718 ||| 0-1 ||| 166 1.17835e+06 +en ||| touched on in ||| 0.0454545 0.605812 8.48644e-07 2.44092e-08 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| touched on it ||| 0.25 0.22993 8.48644e-07 1.16672e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| touched on ||| 0.00520833 0.22993 8.48644e-07 6.56082e-07 2.718 ||| 0-1 ||| 192 1.17835e+06 +en ||| touched upon , ||| 0.111111 0.114601 8.48644e-07 8.32733e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| touched upon during ||| 0.5 0.226251 8.48644e-07 5.41795e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| touched upon ||| 0.00571429 0.114601 8.48644e-07 6.98281e-09 2.718 ||| 0-1 ||| 175 1.17835e+06 +en ||| toward ||| 0.00985222 0.0423453 1.69729e-06 8.8e-06 2.718 ||| 0-0 ||| 203 1.17835e+06 +en ||| towards , in ||| 1 0.605812 8.48644e-07 6.99383e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| towards , ||| 0.047619 0.0616136 8.48644e-07 0.000118802 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| towards Israel . ||| 0.1 0.0616136 8.48644e-07 7.18163e-11 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| towards Israel ||| 0.0384615 0.0616136 8.48644e-07 2.37096e-08 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| towards achieving ||| 0.00288184 0.0616136 8.48644e-07 6.59484e-08 2.718 ||| 0-0 ||| 347 1.17835e+06 +en ||| towards attractive ||| 0.25 0.0616136 8.48644e-07 1.0759e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| towards becoming ||| 0.0540541 0.0616136 1.69729e-06 1.02509e-07 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| towards both ||| 0.0357143 0.0616136 8.48644e-07 1.65021e-06 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| towards foreigners in ||| 1 0.605812 8.48644e-07 8.21047e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| towards greater ||| 0.00518135 0.0616136 8.48644e-07 1.312e-07 2.718 ||| 0-0 ||| 193 1.17835e+06 +en ||| towards humanity and human dignity in ||| 0.5 0.605812 8.48644e-07 2.08856e-21 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| towards implementing the ||| 0.0416667 0.0616136 8.48644e-07 1.76137e-09 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| towards implementing ||| 0.0153846 0.0616136 8.48644e-07 2.86906e-08 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| towards improving conditions in rural ||| 1 0.605812 8.48644e-07 1.69543e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| towards improving conditions in ||| 1 0.605812 8.48644e-07 1.51378e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| towards improving road safety ||| 0.25 0.0616136 8.48644e-07 9.73135e-17 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| towards improving road ||| 1 0.0616136 8.48644e-07 1.9194e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| towards improving ||| 0.00495049 0.0616136 8.48644e-07 2.15179e-08 2.718 ||| 0-0 ||| 202 1.17835e+06 +en ||| towards low ||| 0.25 0.0616136 8.48644e-07 3.58632e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| towards meeting ||| 0.0344828 0.0616136 2.54593e-06 1.25123e-07 2.718 ||| 0-0 ||| 87 1.17835e+06 +en ||| towards mutual ||| 0.25 0.0616136 8.48644e-07 2.19164e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| towards reaching ||| 0.0294118 0.0616136 8.48644e-07 2.68974e-08 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| towards redressing ||| 0.5 0.0616136 8.48644e-07 3.9848e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| towards such measures so as to ensure ||| 1 0.066968 8.48644e-07 8.84333e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| towards such measures so as to ||| 1 0.066968 8.48644e-07 1.9722e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| towards such measures so as ||| 1 0.066968 8.48644e-07 2.21949e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| towards tackling ||| 0.125 0.0616136 8.48644e-07 2.04221e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| towards that end ||| 0.0555556 0.0616136 8.48644e-07 7.29127e-09 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| towards that ||| 0.00854701 0.0616136 8.48644e-07 1.67577e-05 2.718 ||| 0-0 ||| 117 1.17835e+06 +en ||| towards the ||| 0.000285959 0.0616136 8.48644e-07 6.11585e-05 2.718 ||| 0-0 ||| 3497 1.17835e+06 +en ||| towards ||| 0.028804 0.0616136 0.000462511 0.0009962 2.718 ||| 0-0 ||| 18921 1.17835e+06 +en ||| tower mentality in ||| 1 0.605812 8.48644e-07 1.82865e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| town councils under ||| 0.25 0.205566 8.48644e-07 3.34865e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| town of ||| 0.00645161 0.0116562 8.48644e-07 1.71826e-07 2.718 ||| 0-1 ||| 155 1.17835e+06 +en ||| town to another in Bosnia ||| 1 0.605812 8.48644e-07 5.85867e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| town to another in ||| 1 0.605812 8.48644e-07 1.24653e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| toys in ||| 0.0714286 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| traced back to ||| 0.0357143 0.0247351 8.48644e-07 7.56226e-11 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| traced back ||| 0.0333333 0.007257 8.48644e-07 2.968e-10 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| track , on a ||| 0.5 0.22993 8.48644e-07 1.73844e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| track , on ||| 0.5 0.22993 8.48644e-07 3.92195e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| track in ||| 0.0869565 0.605812 1.69729e-06 1.82865e-05 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| track on ||| 0.1 0.22993 8.48644e-07 3.28872e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| tracks in ||| 0.25 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| trade agreement with South Korea is ||| 0.5 0.0535436 8.48644e-07 7.72857e-22 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| trade agreement with South Korea ||| 0.333333 0.0535436 8.48644e-07 2.46595e-20 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| trade agreement with South ||| 1 0.0535436 8.48644e-07 4.04254e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| trade agreement with ||| 0.0196078 0.0535436 8.48644e-07 1.87155e-10 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| trade agreements , in ||| 0.5 0.605812 8.48644e-07 1.77952e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| trade in them ||| 0.0666667 0.605812 8.48644e-07 1.07889e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| trade in ||| 0.00221402 0.605812 2.54593e-06 4.02211e-05 2.718 ||| 0-1 ||| 1355 1.17835e+06 +en ||| trade on ||| 0.0212766 0.22993 8.48644e-07 7.23352e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| trade union by ||| 1 0.0468744 8.48644e-07 1.70423e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| trade union representing ||| 0.142857 0.0450358 8.48644e-07 1.19998e-13 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| trade with a ||| 0.2 0.0535436 8.48644e-07 4.50124e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| trade with ||| 0.00311526 0.0535436 8.48644e-07 1.01549e-06 2.718 ||| 0-1 ||| 321 1.17835e+06 +en ||| traded away in the ||| 1 0.605812 8.48644e-07 9.9198e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| traded away in ||| 1 0.605812 8.48644e-07 1.61582e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| traditions on ||| 0.25 0.22993 8.48644e-07 5.06595e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| traffic in a specific corridor . ||| 1 0.605812 8.48644e-07 4.78903e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| traffic in a specific corridor ||| 1 0.605812 8.48644e-07 1.58106e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| traffic in a specific ||| 1 0.605812 8.48644e-07 8.78366e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| traffic in a ||| 1 0.605812 8.48644e-07 5.81314e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| traffic in ||| 0.00515464 0.605812 8.48644e-07 1.31146e-05 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| traffic normally moves in ||| 1 0.605812 8.48644e-07 2.41898e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| traffic on ||| 0.037037 0.22993 8.48644e-07 2.35857e-06 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| traffic ||| 0.00026441 0.0001999 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 3782 1.17835e+06 +en ||| trafficking in ||| 0.000825764 0.605812 8.48644e-07 5.4952e-06 2.718 ||| 0-1 ||| 1211 1.17835e+06 +en ||| trafficking is the greatest scourge ||| 0.25 0.0011669 8.48644e-07 6.29083e-20 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| trafficking is the greatest ||| 0.25 0.0011669 8.48644e-07 1.96589e-14 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| trafficking is the ||| 0.166667 0.0011669 8.48644e-07 1.06842e-09 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| tragedy in ||| 0.015748 0.605812 1.69729e-06 3.14011e-06 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| train by ||| 0.166667 0.0468744 8.48644e-07 1.47173e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| trained at ||| 0.166667 0.321886 8.48644e-07 2.88014e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| trained in ||| 0.0238095 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| trained on ||| 0.125 0.22993 8.48644e-07 5.97948e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| trained there ||| 0.5 0.0117359 8.48644e-07 8.07408e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| trainee ships ||| 0.5 0.232877 8.48644e-07 1.8792e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| trainee ||| 0.03125 0.232877 8.48644e-07 1.16e-05 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| training , with ||| 0.166667 0.0535436 8.48644e-07 4.90804e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| training given ||| 0.166667 0.0546585 8.48644e-07 4.09798e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| training in ||| 0.00938967 0.605812 1.69729e-06 1.63009e-05 2.718 ||| 0-1 ||| 213 1.17835e+06 +en ||| training on ||| 0.0208333 0.22993 8.48644e-07 2.93161e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| training them in ||| 0.5 0.605812 8.48644e-07 4.37255e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| training within ||| 0.0714286 0.369196 8.48644e-07 3.91361e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| transaction of ||| 0.5 0.0116562 8.48644e-07 4.90932e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| transfer in ||| 0.166667 0.605812 8.48644e-07 9.46651e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| transferred at once ||| 1 0.321886 8.48644e-07 3.53566e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| transferred at ||| 0.5 0.321886 8.48644e-07 8.64043e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| transferred from ||| 0.0123457 0.0308834 8.48644e-07 8.21902e-08 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| transferred into a department ||| 0.5 0.525896 8.48644e-07 1.37768e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| transferred into a ||| 0.5 0.525896 8.48644e-07 2.11951e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| transferred into ||| 0.214286 0.525896 2.54593e-06 4.78166e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| transferred to chief ||| 1 0.0247351 8.48644e-07 4.7964e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| transferred to ||| 0.018315 0.0247351 4.24322e-06 6.07139e-07 2.718 ||| 0-1 ||| 273 1.17835e+06 +en ||| transformation to ||| 0.0769231 0.0247351 8.48644e-07 7.02708e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| transformed into national ||| 0.5 0.525896 8.48644e-07 1.02407e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| transformed into ||| 0.00819672 0.525896 8.48644e-07 7.96943e-08 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| transitional measure in ||| 0.5 0.605812 8.48644e-07 2.00607e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| transitional period here , ||| 1 0.0855319 8.48644e-07 3.62105e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| transitional period here ||| 0.5 0.0855319 8.48644e-07 3.0364e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| transitional ||| 0.000362582 0.0004812 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 2758 1.17835e+06 +en ||| translated extract from ||| 1 0.0308834 8.48644e-07 9.48992e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| translated in ||| 0.0434783 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| translated into ||| 0.0149254 0.525896 4.24322e-06 1.90381e-07 2.718 ||| 0-1 ||| 335 1.17835e+06 +en ||| transparency in ||| 0.00093985 0.605812 8.48644e-07 6.3264e-06 2.718 ||| 0-1 ||| 1064 1.17835e+06 +en ||| transparency into ||| 0.05 0.525896 8.48644e-07 3.03281e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| transparency within ||| 0.0434783 0.369196 8.48644e-07 1.51888e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| transparently , in ||| 0.5 0.605812 8.48644e-07 1.21153e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| transport in ||| 0.00609756 0.605812 8.48644e-07 4.75173e-05 2.718 ||| 0-1 ||| 164 1.17835e+06 +en ||| transport on ||| 0.0217391 0.22993 8.48644e-07 8.54568e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| transport operations , with regard to ||| 1 0.0535436 8.48644e-07 2.18137e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| transport operations , with regard ||| 1 0.0535436 8.48644e-07 2.45489e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| transport operations , with ||| 1 0.0535436 8.48644e-07 3.60536e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| transport sector in the ||| 0.333333 0.605812 8.48644e-07 5.41719e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| transport sector in ||| 0.0588235 0.605812 8.48644e-07 8.82396e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| transport within ||| 0.0555556 0.369196 8.48644e-07 1.14082e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| traps which are at ||| 0.5 0.321886 8.48644e-07 2.42318e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| travel , on a ||| 1 0.22993 8.48644e-07 1.65942e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| travel , on ||| 0.333333 0.22993 8.48644e-07 3.74368e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| travel by ||| 0.0119048 0.0468744 8.48644e-07 3.21568e-07 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| travel in ||| 0.0333333 0.605812 1.69729e-06 1.74553e-05 2.718 ||| 0-1 ||| 60 1.17835e+06 +en ||| travel through ||| 0.0322581 0.0366102 8.48644e-07 3.55471e-08 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| travel together to ||| 1 0.0247351 8.48644e-07 6.38134e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| travelling on ||| 0.0555556 0.22993 8.48644e-07 7.47436e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| travelling through ||| 0.0263158 0.0366102 8.48644e-07 8.4636e-09 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| travelling within ||| 0.0555556 0.369196 8.48644e-07 9.97803e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| treadmill on ||| 1 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| treat the two as one ||| 1 0.066968 8.48644e-07 1.80623e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| treat the two as ||| 1 0.066968 8.48644e-07 4.33358e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| treated as ||| 0.00737101 0.066968 2.54593e-06 9.76743e-07 2.718 ||| 0-1 ||| 407 1.17835e+06 +en ||| treated by ||| 0.025641 0.0468744 8.48644e-07 4.61936e-07 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| treated in ||| 0.0195122 0.605812 3.39458e-06 2.50747e-05 2.718 ||| 0-1 ||| 205 1.17835e+06 +en ||| treated less well in ||| 0.333333 0.605812 8.48644e-07 6.76689e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| treated was essentially very ||| 1 0.105697 8.48644e-07 1.2407e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| treated was essentially ||| 1 0.105697 8.48644e-07 3.56576e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| treated with profound ||| 0.0833333 0.0535436 8.48644e-07 2.97547e-12 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| treated with ||| 0.00534759 0.0535436 8.48644e-07 6.33078e-07 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| treatment as ||| 0.0188679 0.066968 8.48644e-07 1.08827e-06 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| treatment at ||| 0.03125 0.321886 8.48644e-07 2.42012e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| treatment in ||| 0.0128755 0.605812 2.54593e-06 2.79378e-05 2.718 ||| 0-1 ||| 233 1.17835e+06 +en ||| treaty appear in ||| 1 0.605812 8.48644e-07 1.06146e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| tree on ||| 0.333333 0.22993 8.48644e-07 2.07621e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| tremendously in ||| 0.142857 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| trends in ||| 0.00900901 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| trends over ||| 1 0.157937 8.48644e-07 2.0036e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| trial in ||| 0.015625 0.605812 8.48644e-07 5.81844e-06 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| trial on ||| 0.0416667 0.22993 8.48644e-07 1.04641e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| tribute in ||| 0.0666667 0.605812 8.48644e-07 8.95855e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| tribute to ||| 0.00139082 0.0247351 8.48644e-07 5.45301e-07 2.718 ||| 0-1 ||| 719 1.17835e+06 +en ||| tricked into ||| 0.111111 0.525896 8.48644e-07 8.85492e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| tried for ||| 0.0526316 0.0286209 8.48644e-07 4.59057e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| tried in ||| 0.0208333 0.605812 8.48644e-07 1.84251e-05 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| tried out in ||| 0.25 0.605812 8.48644e-07 7.05754e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| tried to ||| 0.000626174 0.0247351 8.48644e-07 1.12152e-06 2.718 ||| 0-1 ||| 1597 1.17835e+06 +en ||| triggered not only through ||| 0.25 0.0366102 8.48644e-07 1.53671e-14 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| trimmed from ||| 1 0.0308834 8.48644e-07 1.52204e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| trip off ||| 0.5 0.0262428 8.48644e-07 1.02114e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| trip to ||| 0.0126582 0.0247351 8.48644e-07 1.71461e-07 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| trips in ||| 0.333333 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| trodden underfoot in ||| 1 0.605812 8.48644e-07 4.36845e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| troops being ||| 1 0.0043873 8.48644e-07 8.601e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| troubled times in ||| 1 0.605812 8.48644e-07 1.17177e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| true at ||| 0.0434783 0.321886 8.48644e-07 6.46432e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| true during a ||| 0.5 0.226251 8.48644e-07 2.07105e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| true during ||| 0.5 0.226251 8.48644e-07 4.67234e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| true for ||| 0.00952381 0.0286209 1.69729e-06 1.85924e-06 2.718 ||| 0-1 ||| 210 1.17835e+06 +en ||| true homeland ||| 1 0.0053908 8.48644e-07 2.2624e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| true in ||| 0.0594595 0.605812 9.33509e-06 7.46238e-05 2.718 ||| 0-1 ||| 185 1.17835e+06 +en ||| true intentions in ||| 1 0.605812 8.48644e-07 8.35787e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| true of ||| 0.0107239 0.0116562 3.39458e-06 2.20374e-06 2.718 ||| 0-1 ||| 373 1.17835e+06 +en ||| true that I , at ||| 1 0.321886 8.48644e-07 9.17276e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| true that in ||| 0.0138889 0.605812 8.48644e-07 1.25529e-06 2.718 ||| 0-2 ||| 72 1.17835e+06 +en ||| true with the German Government . ||| 0.333333 0.0535436 8.48644e-07 4.0698e-19 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| true with the German Government ||| 0.333333 0.0535436 8.48644e-07 1.34361e-16 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| true with the German ||| 0.333333 0.0535436 8.48644e-07 2.78757e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| true with the ||| 0.2 0.0535436 8.48644e-07 1.15667e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| true with ||| 0.047619 0.0535436 8.48644e-07 1.88408e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| true ||| 0.000327869 0.000398 2.54593e-06 2.7e-06 2.718 ||| 0-0 ||| 9150 1.17835e+06 +en ||| truly at ||| 0.222222 0.321886 1.69729e-06 2.40412e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| truly in ||| 0.0625 0.605812 8.48644e-07 2.7753e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| truly integrated internal market in energy , ||| 1 0.605812 8.48644e-07 6.23255e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| truly integrated internal market in energy ||| 1 0.605812 8.48644e-07 5.22625e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| truly integrated internal market in ||| 1 0.605812 8.48644e-07 5.8788e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| trust , ||| 0.00502513 0.192848 8.48644e-07 8.35856e-05 2.718 ||| 0-0 ||| 199 1.17835e+06 +en ||| trust and ||| 0.00268817 0.192848 8.48644e-07 8.7794e-06 2.718 ||| 0-0 ||| 372 1.17835e+06 +en ||| trust in how ||| 0.5 0.605812 8.48644e-07 3.16109e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| trust in ||| 0.00888889 0.605812 3.39458e-06 8.82002e-06 2.718 ||| 0-1 ||| 450 1.17835e+06 +en ||| trust that we will be able to ||| 1 0.192848 8.48644e-07 1.55684e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| trust that we will be able ||| 0.5 0.192848 8.48644e-07 1.75205e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| trust that we will be ||| 1 0.192848 8.48644e-07 2.09851e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| trust that we will ||| 0.5 0.192848 8.48644e-07 1.15793e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| trust that we ||| 0.25 0.192848 8.48644e-07 1.33847e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| trust that ||| 0.00414938 0.192848 8.48644e-07 1.17903e-05 2.718 ||| 0-0 ||| 241 1.17835e+06 +en ||| trust ||| 0.0047433 0.192848 1.4427e-05 0.0007009 2.718 ||| 0-0 ||| 3584 1.17835e+06 +en ||| trusted with ||| 0.166667 0.0535436 8.48644e-07 1.63225e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| trusted ||| 0.00840336 0.213198 8.48644e-07 2.86e-05 2.718 ||| 0-0 ||| 119 1.17835e+06 +en ||| trusting ||| 0.0277778 0.239669 1.69729e-06 1.97e-05 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| truth about ||| 0.00884956 0.0401564 8.48644e-07 7.02194e-08 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| truth in ||| 0.019802 0.605812 1.69729e-06 1.13136e-05 2.718 ||| 0-1 ||| 101 1.17835e+06 +en ||| truth of the charges she ||| 0.5 0.0116562 8.48644e-07 1.28291e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| truth of the charges ||| 0.5 0.0116562 8.48644e-07 4.51251e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| truth of the ||| 0.0188679 0.0116562 8.48644e-07 2.05114e-08 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| truth of ||| 0.0277778 0.0116562 1.69729e-06 3.34106e-07 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| try at ||| 0.25 0.321886 8.48644e-07 6.16031e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| try desperately to ||| 0.5 0.0247351 8.48644e-07 4.76155e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| try in ||| 0.0909091 0.605812 8.48644e-07 7.11143e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| try their luck across ||| 1 0.274879 8.48644e-07 3.55695e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| try to ensure ||| 0.00775194 0.0247351 8.48644e-07 1.94098e-09 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| try to reverse the trend , ||| 0.5 0.0247351 8.48644e-07 5.19517e-18 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| try to reverse the trend ||| 0.333333 0.0247351 8.48644e-07 4.35636e-17 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| try to reverse the ||| 0.0769231 0.0247351 8.48644e-07 2.57773e-12 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| try to reverse ||| 0.125 0.0247351 8.48644e-07 4.19882e-11 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| try to ||| 0.00263939 0.0247351 6.78915e-06 4.32868e-06 2.718 ||| 0-1 ||| 3031 1.17835e+06 +en ||| try where ||| 0.2 0.247783 8.48644e-07 1.31156e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| trying to avoid ||| 0.0434783 0.0247351 8.48644e-07 1.14304e-10 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| trying to make in ||| 0.25 0.605812 8.48644e-07 8.21459e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| trying to outdo each other in ||| 1 0.605812 8.48644e-07 6.87584e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| trying to penetrate ||| 0.5 0.323741 8.48644e-07 3.13236e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| trying to ||| 0.00133085 0.0247351 4.24322e-06 3.23808e-06 2.718 ||| 0-1 ||| 3757 1.17835e+06 +en ||| tucked away in ||| 0.1 0.605812 8.48644e-07 1.61582e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| tune of ||| 0.00510204 0.0068382 8.48644e-07 9.5459e-09 2.718 ||| 0-0 0-1 ||| 196 1.17835e+06 +en ||| tunnel in ||| 0.1 0.605812 8.48644e-07 3.64807e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| turn allowances into ||| 1 0.525896 8.48644e-07 3.77202e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| turn around ||| 0.030303 0.159384 8.48644e-07 2.58749e-07 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| turn from ||| 0.1 0.0308834 8.48644e-07 8.53103e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| turn him into ||| 0.125 0.525896 8.48644e-07 1.5912e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| turn in ||| 0.0263158 0.605812 8.48644e-07 0.000103531 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| turn into ||| 0.0196078 0.525896 3.39458e-06 4.96318e-06 2.718 ||| 0-1 ||| 204 1.17835e+06 +en ||| turn on ||| 0.0357143 0.22993 8.48644e-07 1.86195e-05 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| turn out to ||| 0.00970874 0.0247351 8.48644e-07 2.41387e-08 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| turn out with ||| 1 0.0535436 8.48644e-07 1.00124e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| turn the fans on in ||| 1 0.417871 8.48644e-07 3.69497e-13 2.718 ||| 0-3 0-4 ||| 1 1.17835e+06 +en ||| turn them into ||| 0.0217391 0.525896 8.48644e-07 1.33132e-08 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| turn to ||| 0.00501672 0.0247351 2.54593e-06 6.30188e-06 2.718 ||| 0-1 ||| 598 1.17835e+06 +en ||| turn up as ||| 1 0.066968 8.48644e-07 1.37542e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| turn up in ||| 0.222222 0.605812 1.69729e-06 3.53094e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| turned in ||| 0.142857 0.605812 8.48644e-07 2.59059e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| turned into action by ||| 1 0.0468744 8.48644e-07 1.48124e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| turned into ||| 0.0286738 0.525896 6.78915e-06 1.2419e-06 2.718 ||| 0-1 ||| 279 1.17835e+06 +en ||| turned it into ||| 0.0526316 0.525896 8.48644e-07 2.2085e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| turned on their heads again , as ||| 0.5 0.22993 8.48644e-07 1.10592e-19 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| turned on their heads again , ||| 0.5 0.22993 8.48644e-07 1.08377e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| turned on their heads again ||| 0.5 0.22993 8.48644e-07 9.08785e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| turned on their heads ||| 0.333333 0.22993 8.48644e-07 1.57148e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| turned on their ||| 0.333333 0.22993 8.48644e-07 5.40026e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| turned on ||| 0.0833333 0.22993 1.69729e-06 4.65902e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| turned out at some point in ||| 1 0.605812 8.48644e-07 3.95953e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| turned out at ||| 1 0.321886 8.48644e-07 8.59585e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| turned out in ||| 0.111111 0.605812 8.48644e-07 9.923e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| turned out ||| 0.00392157 0.0120599 8.48644e-07 3.08831e-08 2.718 ||| 0-1 ||| 255 1.17835e+06 +en ||| turned to ||| 0.0153846 0.0247351 8.48644e-07 1.57688e-06 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| turned up in ||| 0.142857 0.605812 8.48644e-07 8.83521e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| turned up there ||| 0.5 0.0117359 8.48644e-07 2.14556e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| turned up ||| 0.0384615 0.0147069 8.48644e-07 3.8709e-08 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| turning a blind eye to ||| 0.0238095 0.062605 8.48644e-07 3.52238e-16 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| turning a blind eye ||| 0.0121951 0.062605 8.48644e-07 3.96404e-15 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| turning a blind ||| 0.0243902 0.062605 8.48644e-07 6.96669e-11 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| turning a ||| 0.0125 0.062605 8.48644e-07 4.49464e-06 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| turning into a western entitled ||| 0.166667 0.525896 8.48644e-07 9.59666e-18 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| turning into a western ||| 0.166667 0.525896 8.48644e-07 1.96251e-13 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| turning into a ||| 0.0133333 0.525896 8.48644e-07 4.90627e-08 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| turning into ||| 0.02 0.525896 2.54593e-06 1.10687e-06 2.718 ||| 0-1 ||| 150 1.17835e+06 +en ||| turning now to ||| 0.0151515 0.062605 1.69729e-06 1.85602e-08 2.718 ||| 0-0 ||| 132 1.17835e+06 +en ||| turning now ||| 0.0107527 0.062605 1.69729e-06 2.08874e-07 2.718 ||| 0-0 ||| 186 1.17835e+06 +en ||| turning out ||| 0.117647 0.062605 1.69729e-06 3.88403e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| turning over ||| 0.2 0.157937 8.48644e-07 2.0036e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| turning point ||| 0.00390625 0.062605 8.48644e-07 8.87047e-08 2.718 ||| 0-0 ||| 256 1.17835e+06 +en ||| turning to ||| 0.00950872 0.062605 5.09187e-06 9.01022e-06 2.718 ||| 0-0 ||| 631 1.17835e+06 +en ||| turning up to ||| 0.333333 0.062605 8.48644e-07 3.07294e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| turning up ||| 0.0909091 0.062605 8.48644e-07 3.45825e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| turning ||| 0.0121029 0.062605 2.03675e-05 0.0001014 2.718 ||| 0-0 ||| 1983 1.17835e+06 +en ||| turns out that in ||| 1 0.605812 8.48644e-07 6.01034e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| turns out to be Yanukovich , in ||| 1 0.605812 8.48644e-07 2.74468e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| turns out to be ||| 0.0357143 0.0247351 8.48644e-07 3.94147e-11 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| turns out to ||| 0.0344828 0.0247351 8.48644e-07 2.17485e-09 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| turns out ||| 0.010989 0.0120599 8.48644e-07 1.11201e-08 2.718 ||| 0-1 ||| 91 1.17835e+06 +en ||| tutelage over the ||| 0.5 0.157937 8.48644e-07 9.84037e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| tutelage over ||| 0.5 0.157937 8.48644e-07 1.60288e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| twelve ||| 0.00126103 0.0067568 8.48644e-07 3.4e-06 2.718 ||| 0-0 ||| 793 1.17835e+06 +en ||| twice about forcing ||| 0.5 0.0401564 8.48644e-07 1.96041e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| twice about ||| 0.0909091 0.0401564 8.48644e-07 2.17824e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| twice in ||| 0.025974 0.605812 1.69729e-06 3.50954e-06 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| twice ||| 0.000928505 0.0060044 8.48644e-07 7.5e-06 2.718 ||| 0-0 ||| 1077 1.17835e+06 +en ||| two as one ||| 1 0.066968 8.48644e-07 1.77238e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| two as ||| 0.111111 0.066968 8.48644e-07 4.25234e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| two classes in future : an ||| 1 0.605812 8.48644e-07 2.51741e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| two classes in future : ||| 1 0.605812 8.48644e-07 5.66385e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| two classes in future ||| 1 0.605812 8.48644e-07 1.68167e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| two classes in ||| 0.5 0.605812 8.48644e-07 6.33157e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| two countries in ||| 0.0227273 0.605812 8.48644e-07 4.145e-08 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| two countries to opt in ||| 0.25 0.605812 8.48644e-07 3.8305e-14 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| two further ||| 0.0136986 0.0002996 8.48644e-07 3.62475e-09 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| two on ||| 0.0769231 0.22993 8.48644e-07 1.96326e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| two part-sessions ago ||| 0.5 0.0002996 8.48644e-07 2.9727e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| two part-sessions ||| 0.0909091 0.0002996 8.48644e-07 2.7e-11 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| two policies in ||| 1 0.605812 8.48644e-07 7.19398e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| two small steps at ||| 1 0.321886 8.48644e-07 7.14711e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| two systems to ||| 0.5 0.0247351 8.48644e-07 3.48852e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| two ||| 0.000157625 0.0002996 5.09187e-06 7.5e-06 2.718 ||| 0-0 ||| 38065 1.17835e+06 +en ||| twofold increase in ||| 0.333333 0.605812 8.48644e-07 4.17635e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| type in ||| 0.047619 0.605812 8.48644e-07 5.40284e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| type of ||| 0.00188798 0.0116562 5.09187e-06 1.59553e-06 2.718 ||| 0-1 ||| 3178 1.17835e+06 +en ||| type out on ||| 1 0.22993 8.48644e-07 3.72187e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| typified for ||| 1 0.0286209 8.48644e-07 8.05364e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| tyre ||| 0.0208333 0.0220588 2.54593e-06 4.1e-06 2.718 ||| 0-0 ||| 144 1.17835e+06 +en ||| ultimate breakthrough to ||| 1 0.0247351 8.48644e-07 1.42678e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ultimately be addressed to ||| 1 0.199943 8.48644e-07 8.29926e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| ultimately be addressed ||| 1 0.199943 8.48644e-07 9.33989e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| ultimately be ||| 0.016129 0.199943 8.48644e-07 1.74252e-05 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| ultimately become ||| 0.142857 0.199943 8.48644e-07 2.74701e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| ultimately in ||| 0.0769231 0.605812 8.48644e-07 2.83995e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| ultimately let our ||| 1 0.199943 8.48644e-07 5.41658e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| ultimately let ||| 1 0.199943 8.48644e-07 3.92677e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| ultimately responsible ||| 0.027027 0.199943 8.48644e-07 1.42206e-07 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| ultimately ||| 0.00673509 0.199943 1.78215e-05 0.0009615 2.718 ||| 0-0 ||| 3118 1.17835e+06 +en ||| unable to do in ||| 0.25 0.605812 8.48644e-07 3.84823e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| unable to ||| 0.00107124 0.0247351 1.69729e-06 7.67357e-07 2.718 ||| 0-1 ||| 1867 1.17835e+06 +en ||| unacceptable in terms of ||| 0.125 0.605812 8.48644e-07 6.64062e-10 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| unacceptable in terms ||| 0.125 0.605812 8.48644e-07 1.22151e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| unacceptable in ||| 0.00724638 0.605812 8.48644e-07 1.11289e-05 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| unanimous one at ||| 0.5 0.321886 8.48644e-07 6.66913e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| unanimously approved in ||| 0.0833333 0.605812 8.48644e-07 1.224e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| unassisted . on ||| 1 0.22993 8.48644e-07 1.00621e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| unbelievable in ||| 0.5 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| uncertain of ||| 0.2 0.0116562 8.48644e-07 1.03641e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| unchallenged , ||| 0.25 0.0147059 8.48644e-07 8.34783e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| unchallenged ||| 0.05 0.0147059 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| under 12 tonnes in Germany ||| 1 0.205566 8.48644e-07 8.86515e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under 12 tonnes in ||| 1 0.205566 8.48644e-07 3.42284e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under 12 tonnes ||| 0.333333 0.205566 8.48644e-07 1.59912e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| under 12 ||| 0.0714286 0.205566 8.48644e-07 7.91644e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| under European ||| 0.0625 0.205566 8.48644e-07 1.89084e-05 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| under a ||| 0.0105448 0.205566 5.09187e-06 0.000250645 2.718 ||| 0-0 ||| 569 1.17835e+06 +en ||| under all ||| 0.0133333 0.205566 8.48644e-07 2.67202e-05 2.718 ||| 0-0 ||| 75 1.17835e+06 +en ||| under another ||| 0.05 0.205566 8.48644e-07 1.36332e-06 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| under any ||| 0.00456621 0.205566 1.69729e-06 8.55089e-06 2.718 ||| 0-0 ||| 438 1.17835e+06 +en ||| under attack ||| 0.0238095 0.205566 1.69729e-06 1.66811e-07 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| under basically ||| 1 0.158633 8.48644e-07 1.05402e-06 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| under certain ||| 0.00490196 0.205566 8.48644e-07 1.61156e-06 2.718 ||| 0-0 ||| 204 1.17835e+06 +en ||| under clearly ||| 1 0.205566 8.48644e-07 1.03196e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under consideration , the ||| 0.125 0.205566 8.48644e-07 4.47107e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| under consideration , ||| 0.030303 0.205566 8.48644e-07 7.28285e-08 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| under consideration ||| 0.00684932 0.205566 1.69729e-06 6.10697e-07 2.718 ||| 0-0 ||| 292 1.17835e+06 +en ||| under constant ||| 0.0384615 0.205566 8.48644e-07 9.38664e-08 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| under construction in ||| 0.2 0.605812 8.48644e-07 2.80011e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| under construction were also ||| 1 0.205566 8.48644e-07 8.64275e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under construction were ||| 1 0.205566 8.48644e-07 1.71191e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under construction ||| 0.0204082 0.205566 8.48644e-07 9.55627e-08 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| under control to a ||| 1 0.205566 8.48644e-07 1.70825e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under control to ||| 1 0.205566 8.48644e-07 3.85385e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under control ||| 0.00420168 0.205566 8.48644e-07 4.33708e-07 2.718 ||| 0-0 ||| 238 1.17835e+06 +en ||| under discussion ||| 0.00198216 0.205566 1.69729e-06 4.88557e-07 2.718 ||| 0-0 ||| 1009 1.17835e+06 +en ||| under harsh ||| 1 0.205566 8.48644e-07 3.84513e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under heading VII and to add ||| 1 0.205566 8.48644e-07 1.85636e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under heading VII and to ||| 1 0.205566 8.48644e-07 2.26386e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under heading VII and ||| 1 0.205566 8.48644e-07 2.54772e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under heading VII ||| 1 0.205566 8.48644e-07 2.03396e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under heading ||| 0.011236 0.205566 8.48644e-07 1.84905e-07 2.718 ||| 0-0 ||| 89 1.17835e+06 +en ||| under house arrest ||| 0.0103093 0.205566 8.48644e-07 1.67331e-12 2.718 ||| 0-0 ||| 97 1.17835e+06 +en ||| under house ||| 0.0116279 0.205566 8.48644e-07 1.22139e-07 2.718 ||| 0-0 ||| 86 1.17835e+06 +en ||| under in order to try ||| 0.5 0.605812 8.48644e-07 1.20756e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| under in order to ||| 0.5 0.605812 8.48644e-07 7.84129e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| under in order ||| 0.5 0.605812 8.48644e-07 8.82449e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| under in ||| 0.333333 0.605812 8.48644e-07 0.000165687 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| under increasing ||| 0.0909091 0.205566 8.48644e-07 2.92908e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| under it ||| 0.0357143 0.205566 8.48644e-07 0.000100557 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| under just ||| 1 0.205566 8.48644e-07 7.13441e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under operating ||| 1 0.205566 8.48644e-07 2.54457e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under our breath ||| 1 0.205566 8.48644e-07 7.56596e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under our ||| 0.0179641 0.205566 2.54593e-06 7.79996e-06 2.718 ||| 0-0 ||| 167 1.17835e+06 +en ||| under pressure ||| 0.00483092 0.205566 1.69729e-06 3.39841e-07 2.718 ||| 0-0 ||| 414 1.17835e+06 +en ||| under quite ||| 1 0.205566 8.48644e-07 2.20586e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under rather ||| 0.5 0.205566 8.48644e-07 1.73144e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| under review ||| 0.0352941 0.205566 2.54593e-06 2.13744e-07 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| under strict compliance ||| 1 0.205566 8.48644e-07 1.92483e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under strict ||| 0.05 0.205566 8.48644e-07 8.36881e-08 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| under such ||| 0.0196078 0.205566 1.69729e-06 1.16988e-05 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| under the French banner ||| 1 0.205566 8.48644e-07 2.85632e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under the French ||| 0.2 0.205566 8.48644e-07 1.29833e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| under the charge ||| 1 0.205566 8.48644e-07 1.74962e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under the conditions of ||| 0.0666667 0.205566 8.48644e-07 2.25523e-09 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| under the conditions ||| 0.0136986 0.205566 8.48644e-07 4.1484e-08 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| under the illusion ||| 0.0416667 0.205566 8.48644e-07 1.87459e-09 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| under the influence ||| 0.0140845 0.205566 8.48644e-07 1.18724e-08 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| under the remit of ||| 0.0625 0.205566 8.48644e-07 3.13279e-10 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| under the remit ||| 0.0555556 0.205566 8.48644e-07 5.76262e-09 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| under the scope of ||| 0.0416667 0.205566 8.48644e-07 1.88156e-09 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| under the scope ||| 0.0384615 0.205566 8.48644e-07 3.46105e-08 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| under the sea ||| 0.166667 0.205566 8.48644e-07 1.03797e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| under the table ||| 0.111111 0.0011669 8.48644e-07 6.95857e-11 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| under the third pillar ||| 0.00546448 0.205566 8.48644e-07 2.11204e-13 2.718 ||| 0-0 ||| 183 1.17835e+06 +en ||| under the third ||| 0.00598802 0.205566 8.48644e-07 1.62464e-08 2.718 ||| 0-0 ||| 167 1.17835e+06 +en ||| under the ||| 0.00559945 0.205566 6.1951e-05 0.000347146 2.718 ||| 0-0 ||| 13037 1.17835e+06 +en ||| under these circumstances , and with a ||| 1 0.205566 8.48644e-07 1.3408e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| under these circumstances , and with ||| 0.5 0.205566 8.48644e-07 3.02487e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| under these circumstances , and ||| 0.2 0.205566 8.48644e-07 4.73043e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| under these circumstances , ||| 0.00671141 0.205566 8.48644e-07 3.77652e-11 2.718 ||| 0-0 ||| 149 1.17835e+06 +en ||| under these circumstances ||| 0.00423729 0.205566 8.48644e-07 3.16677e-10 2.718 ||| 0-0 ||| 236 1.17835e+06 +en ||| under these ||| 0.00215517 0.205566 8.48644e-07 5.86439e-06 2.718 ||| 0-0 ||| 464 1.17835e+06 +en ||| under threat , immediately ||| 0.5 0.205566 8.48644e-07 1.04679e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| under threat , ||| 0.0175439 0.205566 8.48644e-07 2.6434e-08 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| under threat would ||| 0.5 0.205566 8.48644e-07 1.30086e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| under threat ||| 0.00515464 0.205566 1.69729e-06 2.2166e-07 2.718 ||| 0-0 ||| 388 1.17835e+06 +en ||| under to ||| 0.0909091 0.115151 8.48644e-07 0.000158941 2.718 ||| 0-0 0-1 ||| 11 1.17835e+06 +en ||| under very ||| 0.333333 0.205566 2.54593e-06 1.96752e-05 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| under way , on ||| 0.333333 0.22993 8.48644e-07 7.65998e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| under way again in ||| 1 0.605812 8.48644e-07 2.06543e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| under way at ||| 0.04 0.321886 8.48644e-07 3.09387e-08 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| under way in the ||| 0.0263158 0.205566 8.48644e-07 1.60172e-08 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| under way in ||| 0.0413223 0.405689 4.24322e-06 5.62868e-06 2.718 ||| 0-0 0-2 ||| 121 1.17835e+06 +en ||| under way on ||| 0.0333333 0.22993 8.48644e-07 6.42321e-08 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| under way to ||| 0.0454545 0.205566 8.48644e-07 1.0831e-06 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| under way will ||| 0.333333 0.205566 8.48644e-07 1.0545e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| under way ||| 0.0196581 0.205566 1.95188e-05 1.21891e-05 2.718 ||| 0-0 ||| 1170 1.17835e+06 +en ||| under what ||| 0.00645161 0.205566 8.48644e-07 7.93397e-06 2.718 ||| 0-0 ||| 155 1.17835e+06 +en ||| under which ||| 0.0078125 0.205566 5.09187e-06 4.80336e-05 2.718 ||| 0-0 ||| 768 1.17835e+06 +en ||| under ||| 0.154463 0.205566 0.00445963 0.0056546 2.718 ||| 0-0 ||| 34021 1.17835e+06 +en ||| underdeveloped ||| 0.00460829 0.0228137 8.48644e-07 4.1e-06 2.718 ||| 0-0 ||| 217 1.17835e+06 +en ||| underfoot across ||| 1 0.274879 8.48644e-07 1.7667e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| underfoot in ||| 1 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| undergo change in ||| 1 0.605812 8.48644e-07 3.83094e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| undergo inspection , in ||| 0.5 0.605812 8.48644e-07 2.95834e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| undergoing a ||| 0.0714286 0.130682 3.39458e-06 2.08331e-06 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| undergoing ||| 0.0703812 0.130682 2.03675e-05 4.7e-05 2.718 ||| 0-0 ||| 341 1.17835e+06 +en ||| underground option in view ||| 1 0.605812 8.48644e-07 4.31726e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| underground option in ||| 1 0.605812 8.48644e-07 4.77943e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| underground rail project was incorporated in ||| 0.5 0.605812 8.48644e-07 5.32091e-23 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| underlined by ||| 0.0125 0.0468744 8.48644e-07 3.06256e-08 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| underlines ||| 0.00289855 0.0083218 1.69729e-06 4.1e-06 2.718 ||| 0-0 ||| 690 1.17835e+06 +en ||| underlying ||| 0.0013132 0.0082873 1.69729e-06 8.2e-06 2.718 ||| 0-0 ||| 1523 1.17835e+06 +en ||| undermine seriously ||| 1 0.276271 8.48644e-07 1.72312e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| undermined by a ||| 0.0833333 0.0468744 8.48644e-07 5.43001e-09 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| undermined by ||| 0.0163934 0.0468744 1.69729e-06 1.22502e-07 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| underpinned ||| 0.00588235 0.0173913 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| underspent in ||| 1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| understand about ||| 0.333333 0.0401564 8.48644e-07 2.23842e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| understand from ||| 0.0322581 0.0308834 8.48644e-07 2.97178e-07 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| understand in ||| 0.0909091 0.605812 8.48644e-07 3.60651e-05 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| understanding in ||| 0.0232558 0.605812 8.48644e-07 1.56082e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| understanding of ||| 0.00258732 0.0116562 1.69729e-06 4.60931e-07 2.718 ||| 0-1 ||| 773 1.17835e+06 +en ||| understood across ||| 0.333333 0.274879 8.48644e-07 4.80706e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| undertake in ||| 0.047619 0.605812 8.48644e-07 1.19601e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| undertaken at ||| 0.0333333 0.321886 8.48644e-07 1.9001e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| undertaken by ||| 0.0022779 0.0468744 8.48644e-07 4.04087e-07 2.718 ||| 0-1 ||| 439 1.17835e+06 +en ||| undertaken for ||| 0.0434783 0.0286209 8.48644e-07 5.46497e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| undertaken in ||| 0.0357143 0.605812 5.94051e-06 2.19346e-05 2.718 ||| 0-1 ||| 196 1.17835e+06 +en ||| undertaken on ||| 0.0714286 0.22993 2.54593e-06 3.9448e-06 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| undertaken within ||| 0.263158 0.369196 4.24322e-06 5.26618e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| undertakes in ||| 0.25 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| undertaking a course of ||| 0.333333 0.0116562 8.48644e-07 2.28036e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| undertaking approach ||| 0.25 0.0044306 8.48644e-07 1.71028e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| undertaking for ||| 0.111111 0.0286209 8.48644e-07 3.44005e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| undertaking in ||| 0.0833333 0.605812 1.69729e-06 1.38073e-05 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| undertaking relying on ||| 0.25 0.22993 8.48644e-07 1.3409e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| undertakings as ||| 0.0526316 0.066968 8.48644e-07 2.46434e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| undertakings in ||| 0.0163934 0.605812 8.48644e-07 6.3264e-06 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| undertook at ||| 1 0.321886 8.48644e-07 1.44007e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| underway - to take stock ||| 1 0.268204 8.48644e-07 2.15892e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| underway - to take ||| 1 0.268204 8.48644e-07 8.11623e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| underway - to ||| 1 0.268204 8.48644e-07 5.04114e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| underway - ||| 0.5 0.268204 8.48644e-07 5.67324e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| underway do not appear ||| 1 0.268204 8.48644e-07 1.5417e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| underway do not ||| 1 0.268204 8.48644e-07 1.76396e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| underway do ||| 1 0.268204 8.48644e-07 5.16669e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| underway in ||| 0.0793651 0.605812 4.24322e-06 6.46494e-06 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| underway involving ||| 1 0.0505311 8.48644e-07 2.9918e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| underway ||| 0.0204604 0.268204 6.78915e-06 0.0001504 2.718 ||| 0-0 ||| 391 1.17835e+06 +en ||| undoubtedly be on ||| 1 0.22993 8.48644e-07 5.58384e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| undoubtedly in ||| 0.0833333 0.605812 8.48644e-07 1.71321e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| unemployment . in ||| 0.5 0.605812 8.48644e-07 2.57367e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| unemployment in ||| 0.00479616 0.605812 1.69729e-06 8.49677e-06 2.718 ||| 0-1 ||| 417 1.17835e+06 +en ||| unemployment on ||| 0.0833333 0.22993 8.48644e-07 1.52809e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| unequivocally in ||| 0.0769231 0.605812 8.48644e-07 1.98566e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| unfolding , ||| 0.333333 0.016 8.48644e-07 3.21988e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| unfolding ||| 0.01 0.016 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| unfortunate at ||| 1 0.321886 8.48644e-07 4.0402e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| unfortunate that we have some situations in ||| 0.5 0.605812 8.48644e-07 3.96832e-19 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| unfortunately , however many ||| 1 0.0053256 8.48644e-07 9.48549e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| unfortunately , however ||| 0.011236 0.0053256 8.48644e-07 2.76303e-09 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| unfortunately , on ||| 0.0909091 0.22993 8.48644e-07 6.13052e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| unfortunately , ||| 0.000157555 6.63e-05 8.48644e-07 8.34783e-08 2.718 ||| 0-0 ||| 6347 1.17835e+06 +en ||| unfortunately be called on ||| 0.5 0.22993 8.48644e-07 1.6192e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| unfortunately it is part of ||| 1 0.0116562 8.48644e-07 5.60897e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| unfortunately seems to ||| 0.333333 0.0247351 8.48644e-07 2.09136e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| unfortunately wrong during ||| 0.25 0.226251 8.48644e-07 9.98661e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| unfortunately ||| 9.19287e-05 6.63e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 10878 1.17835e+06 +en ||| unheard at ||| 1 0.321886 8.48644e-07 4.40022e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| uniform manner in ||| 0.5 0.605812 8.48644e-07 7.74407e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| union by ||| 1 0.0468744 8.48644e-07 1.95663e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| union of ||| 0.00452489 0.0116562 8.48644e-07 3.13651e-07 2.718 ||| 0-1 ||| 221 1.17835e+06 +en ||| union representing ||| 0.166667 0.0450358 8.48644e-07 1.3777e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| unions , at ||| 1 0.321886 8.48644e-07 1.90817e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| unit in ||| 0.0625 0.605812 8.48644e-07 5.4952e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| unit of beef ||| 1 0.0116562 8.48644e-07 2.33684e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| unit of ||| 0.02 0.0116562 8.48644e-07 1.6228e-07 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| unit technology in ||| 1 0.605812 8.48644e-07 9.89135e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| united in ||| 0.00854701 0.605812 2.54593e-06 8.63531e-06 2.718 ||| 0-1 ||| 351 1.17835e+06 +en ||| universally ||| 0.003861 0.002551 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 259 1.17835e+06 +en ||| universities are in ||| 1 0.605812 8.48644e-07 1.54142e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| unknown in ||| 0.0588235 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| unleashed on ||| 0.111111 0.22993 8.48644e-07 1.49487e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| unlike in ||| 0.0175439 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| unprecedented debate in ||| 1 0.605812 8.48644e-07 2.65021e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| unreliable figure in ||| 0.047619 0.605812 8.48644e-07 2.46637e-11 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| unrest in ||| 0.0147059 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| unrest there ||| 0.5 0.0117359 8.48644e-07 2.8035e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| unskilled workers ; in ||| 1 0.605812 8.48644e-07 1.35402e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| until its trunk attains ||| 1 0.0092136 8.48644e-07 2.33366e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| until its trunk ||| 1 0.0092136 8.48644e-07 5.83415e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| until its ||| 0.0555556 0.0092136 8.48644e-07 8.3345e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| until such time as ||| 0.0045045 0.066968 8.48644e-07 2.96927e-12 2.718 ||| 0-3 ||| 222 1.17835e+06 +en ||| until such time ||| 0.010582 0.0092136 1.69729e-06 1.98696e-10 2.718 ||| 0-0 ||| 189 1.17835e+06 +en ||| until such ||| 0.0117647 0.0092136 1.69729e-06 1.21031e-07 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| until the middle of ||| 0.142857 0.0104349 8.48644e-07 1.00401e-12 2.718 ||| 0-0 0-3 ||| 7 1.17835e+06 +en ||| until the ||| 0.000759301 0.0092136 8.48644e-07 3.59142e-06 2.718 ||| 0-0 ||| 1317 1.17835e+06 +en ||| until we can ||| 0.0769231 0.0092136 1.69729e-06 1.97526e-09 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| until we ||| 0.00453515 0.0092136 1.69729e-06 6.6411e-07 2.718 ||| 0-0 ||| 441 1.17835e+06 +en ||| until ||| 0.00424288 0.0092136 3.8189e-05 5.85e-05 2.718 ||| 0-0 ||| 10606 1.17835e+06 +en ||| unto ||| 0.0909091 0.0147059 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| untreated into ||| 0.333333 0.525896 8.48644e-07 4.87021e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| unturned in ||| 0.04 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| unwelcome trends in ||| 0.333333 0.605812 8.48644e-07 2.5398e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| up " ||| 0.2 0.0147069 8.48644e-07 1.63392e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| up , determine when ||| 1 0.142731 8.48644e-07 5.83537e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| up , for ||| 0.166667 0.0286209 8.48644e-07 4.67937e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| up , moreover , by ||| 1 0.0468744 8.48644e-07 4.46868e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| up , within ||| 1 0.369196 8.48644e-07 4.50916e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| up , ||| 0.00357143 0.0147069 1.69729e-06 8.22857e-05 2.718 ||| 0-0 ||| 560 1.17835e+06 +en ||| up . ||| 0.00154083 0.0147069 8.48644e-07 2.09001e-06 2.718 ||| 0-0 ||| 649 1.17835e+06 +en ||| up a new standard and ||| 1 0.0010182 8.48644e-07 3.9268e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| up a ||| 0.00297619 0.0147069 1.69729e-06 3.05848e-05 2.718 ||| 0-0 ||| 672 1.17835e+06 +en ||| up after ||| 0.047619 0.0144723 8.48644e-07 9.05147e-07 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| up again after ||| 1 0.0147069 8.48644e-07 1.08136e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| up again at ||| 0.333333 0.321886 8.48644e-07 7.88956e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| up again in ||| 0.0769231 0.605812 8.48644e-07 9.10767e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| up again within ||| 1 0.369196 8.48644e-07 2.18662e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| up again ||| 0.0104167 0.0147069 8.48644e-07 3.99027e-07 2.718 ||| 0-0 ||| 96 1.17835e+06 +en ||| up against one another on ||| 1 0.22993 8.48644e-07 6.79117e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| up against ||| 0.0361446 0.153982 5.09187e-06 1.97771e-05 2.718 ||| 0-1 ||| 166 1.17835e+06 +en ||| up almost unnoticed ||| 0.166667 0.0147069 8.48644e-07 1.02341e-13 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| up almost ||| 0.0769231 0.0147069 8.48644e-07 5.6856e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| up an inquiry into ||| 0.5 0.525896 8.48644e-07 1.57719e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| up an ||| 0.00740741 0.0147069 8.48644e-07 3.06684e-06 2.718 ||| 0-0 ||| 135 1.17835e+06 +en ||| up and claim ||| 0.25 0.0147069 8.48644e-07 4.07079e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| up and running in ||| 0.0625 0.605812 8.48644e-07 1.50518e-09 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| up and ||| 0.0735524 0.0147069 3.98863e-05 8.64287e-06 2.718 ||| 0-0 ||| 639 1.17835e+06 +en ||| up any ||| 0.05 0.0147069 8.48644e-07 1.04342e-06 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| up around ||| 0.0625 0.159384 8.48644e-07 3.93606e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| up as a matter ||| 0.333333 0.066968 8.48644e-07 2.82126e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| up as a ||| 0.0444444 0.066968 1.69729e-06 2.71929e-06 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| up as an example , in ||| 1 0.605812 8.48644e-07 2.47972e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| up as the ||| 0.125 0.066968 1.69729e-06 3.76625e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| up as we go along ||| 0.333333 0.066968 8.48644e-07 7.10698e-14 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| up as we go ||| 0.333333 0.066968 8.48644e-07 4.07277e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| up as we ||| 0.25 0.066968 8.48644e-07 6.96438e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| up as ||| 0.103825 0.066968 1.61242e-05 6.13477e-05 2.718 ||| 0-1 ||| 183 1.17835e+06 +en ||| up at a ||| 0.142857 0.321886 8.48644e-07 6.04723e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| up at ||| 0.324324 0.321886 3.05512e-05 0.000136427 2.718 ||| 0-1 ||| 111 1.17835e+06 +en ||| up by Parliament anyway ||| 1 0.0468744 8.48644e-07 5.92873e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up by Parliament ||| 0.0909091 0.0468744 8.48644e-07 1.66537e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| up by any ||| 1 0.0468744 8.48644e-07 4.38742e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up by ||| 0.0375 0.0468744 1.78215e-05 2.90135e-05 2.718 ||| 0-1 ||| 560 1.17835e+06 +en ||| up considerable ||| 0.2 0.0147069 8.48644e-07 3.105e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| up during the course of the ||| 1 0.226251 8.48644e-07 2.54917e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up during the course of ||| 1 0.226251 8.48644e-07 4.1523e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up during the course ||| 1 0.226251 8.48644e-07 7.63797e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up during the ||| 0.142857 0.226251 8.48644e-07 6.05371e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| up during ||| 0.333333 0.226251 4.24322e-06 9.86078e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| up empty-handed ||| 0.2 0.0147069 8.48644e-07 2.76e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| up for ||| 0.0304114 0.0286209 1.4427e-05 3.92385e-05 2.718 ||| 0-1 ||| 559 1.17835e+06 +en ||| up front in ||| 1 0.605812 8.48644e-07 1.26937e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| up here in ||| 0.166667 0.605812 8.48644e-07 3.19359e-06 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| up in a situation in ||| 0.333333 0.605812 8.48644e-07 7.69526e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| up in all his glory ||| 0.5 0.605812 8.48644e-07 2.45997e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| up in all his ||| 0.5 0.605812 8.48644e-07 2.23634e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| up in all ||| 0.125 0.605812 8.48644e-07 7.44205e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| up in arms ||| 0.0555556 0.605812 8.48644e-07 4.36249e-08 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| up in such a way that ||| 0.2 0.605812 8.48644e-07 5.23704e-12 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| up in such a way ||| 0.166667 0.605812 8.48644e-07 3.11328e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| up in such a ||| 0.5 0.605812 8.48644e-07 1.44428e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| up in such ||| 0.133333 0.605812 1.69729e-06 3.25832e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| up in the ||| 0.0224215 0.605812 4.24322e-06 9.66862e-05 2.718 ||| 0-1 ||| 223 1.17835e+06 +en ||| up in ||| 0.354193 0.605812 0.000240166 0.0015749 2.718 ||| 0-1 ||| 799 1.17835e+06 +en ||| up into ||| 0.55 0.525896 9.33509e-06 7.54993e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| up its ||| 0.0186916 0.0147069 1.69729e-06 9.83043e-07 2.718 ||| 0-0 ||| 107 1.17835e+06 +en ||| up largely ||| 0.25 0.247761 8.48644e-07 2.88938e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| up my ||| 0.0512821 0.002535 1.69729e-06 4.82586e-07 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| up of ||| 0.0215385 0.0116562 5.94051e-06 4.6509e-05 2.718 ||| 0-1 ||| 325 1.17835e+06 +en ||| up on , even ||| 0.5 0.22993 8.48644e-07 2.05535e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| up on , ||| 0.25 0.22993 8.48644e-07 3.37773e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| up on in ||| 1 0.417871 8.48644e-07 0.000130793 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| up on points of order ||| 0.5 0.22993 8.48644e-07 1.0653e-12 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| up on points of ||| 0.5 0.22993 8.48644e-07 2.00018e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| up on points ||| 0.5 0.22993 8.48644e-07 3.67924e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| up on the ||| 0.00840336 0.22993 8.48644e-07 1.73884e-05 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| up on very ||| 1 0.22993 8.48644e-07 9.85522e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up on ||| 0.193452 0.22993 5.51619e-05 0.000283237 2.718 ||| 0-1 ||| 336 1.17835e+06 +en ||| up one by one ||| 0.142857 0.0468744 8.48644e-07 5.04028e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| up one by ||| 0.142857 0.0468744 8.48644e-07 1.20928e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| up over ||| 0.108108 0.157937 3.39458e-06 1.36666e-05 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| up quite in ||| 1 0.605812 8.48644e-07 6.1437e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| up sectors ||| 0.2 0.0147069 8.48644e-07 3.5535e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| up the ships ' ||| 1 0.0011669 8.48644e-07 5.43659e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up the ships ||| 1 0.0011669 8.48644e-07 1.58275e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up the ||| 0.000720981 0.0011669 8.48644e-07 9.77006e-06 2.718 ||| 0-1 ||| 1387 1.17835e+06 +en ||| up there in ||| 0.230769 0.605812 2.54593e-06 4.82755e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| up there ||| 0.02 0.0117359 8.48644e-07 3.82453e-06 2.718 ||| 0-1 ||| 50 1.17835e+06 +en ||| up to a ||| 0.00584795 0.0247351 8.48644e-07 4.24922e-06 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| up to and in ||| 1 0.605812 8.48644e-07 1.75291e-06 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| up to be ||| 0.25 0.0247351 1.69729e-06 1.73732e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| up to date in ||| 0.285714 0.605812 1.69729e-06 1.43022e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| up to each other through a ||| 1 0.0366102 8.48644e-07 4.59372e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| up to each other through ||| 1 0.0366102 8.48644e-07 1.03635e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| up to in ||| 0.2 0.605812 8.48644e-07 0.000139943 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| up to neighbouring countries and are in ||| 1 0.605812 8.48644e-07 6.16019e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| up to the Council ||| 0.0222222 0.0247351 8.48644e-07 2.03511e-09 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| up to the ||| 0.00148038 0.0247351 1.69729e-06 5.88522e-06 2.718 ||| 0-1 ||| 1351 1.17835e+06 +en ||| up to this at ||| 1 0.321886 8.48644e-07 7.83292e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| up to us to make it a ||| 1 0.0247351 8.48644e-07 3.36311e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up to us to make it ||| 1 0.0247351 8.48644e-07 7.58724e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up to us to make ||| 0.2 0.0247351 8.48644e-07 4.26652e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| up to us to ||| 0.0125 0.0247351 8.48644e-07 2.45513e-08 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| up to us ||| 0.0106952 0.0247351 1.69729e-06 2.76297e-07 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| up to ||| 0.0151515 0.0247351 7.12861e-05 9.58634e-05 2.718 ||| 0-1 ||| 5544 1.17835e+06 +en ||| up under ||| 0.0645161 0.205566 1.69729e-06 1.9285e-05 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| up until ||| 0.00185185 0.0092136 8.48644e-07 1.99514e-07 2.718 ||| 0-1 ||| 540 1.17835e+06 +en ||| up where ||| 0.0833333 0.247783 8.48644e-07 2.90459e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| up with , ||| 0.166667 0.0535436 8.48644e-07 4.74189e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| up with a proposal in ||| 0.5 0.605812 8.48644e-07 8.91447e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| up with a voluntary code of conduct ||| 1 0.0535436 8.48644e-07 1.27139e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up with a voluntary code of ||| 1 0.0535436 8.48644e-07 2.11545e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up with a voluntary code ||| 1 0.0535436 8.48644e-07 3.89128e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up with a voluntary ||| 1 0.0535436 8.48644e-07 2.34414e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| up with a ||| 0.00414938 0.0535436 8.48644e-07 1.76251e-06 2.718 ||| 0-1 ||| 241 1.17835e+06 +en ||| up with by ||| 1 0.050209 8.48644e-07 3.38265e-07 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| up with difficulties arising from ||| 1 0.0308834 8.48644e-07 4.95037e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| up with in ||| 1 0.605812 8.48644e-07 1.00707e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| up with it with ||| 0.1 0.0535436 8.48644e-07 4.5216e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| up with it ||| 0.1 0.0535436 8.48644e-07 7.07108e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| up with the ||| 0.00847458 0.0535436 1.69729e-06 2.4411e-06 2.718 ||| 0-1 ||| 236 1.17835e+06 +en ||| up with this ||| 0.0434783 0.0535436 8.48644e-07 2.56923e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| up with ||| 0.0422535 0.0535436 3.56431e-05 3.97627e-05 2.718 ||| 0-1 ||| 994 1.17835e+06 +en ||| up within ||| 0.375 0.369196 7.6378e-06 3.78112e-05 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| up ||| 0.0213523 0.0147069 0.000188399 0.00069 2.718 ||| 0-0 ||| 10397 1.17835e+06 +en ||| updated along ||| 0.5 0.155535 8.48644e-07 2.8638e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| updated in ||| 0.0454545 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| upgraded to ||| 0.1 0.0247351 8.48644e-07 8.15141e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| upheld and ||| 0.0454545 0.0010182 8.48644e-07 9.59608e-09 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| upheld in ||| 0.0540541 0.605812 1.69729e-06 4.80252e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| upon , ||| 0.108696 0.114601 4.24322e-06 0.000105409 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| upon a time in ||| 0.5 0.605812 8.48644e-07 7.97079e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| upon a ||| 0.0136986 0.114601 1.69729e-06 3.91796e-05 2.718 ||| 0-0 ||| 146 1.17835e+06 +en ||| upon again in ||| 1 0.605812 8.48644e-07 6.33438e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| upon and ||| 0.05 0.114601 8.48644e-07 1.10716e-05 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| upon another ||| 0.5 0.114601 8.48644e-07 2.13108e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| upon any ||| 0.166667 0.114601 8.48644e-07 1.33663e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| upon as ||| 0.1 0.114601 8.48644e-07 9.01967e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| upon at ||| 0.5 0.321886 4.24322e-06 9.48847e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| upon both ||| 0.222222 0.114601 1.69729e-06 1.46418e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| upon by ||| 0.0625 0.0807376 1.69729e-06 7.51943e-06 2.718 ||| 0-0 0-1 ||| 32 1.17835e+06 +en ||| upon during ||| 0.25 0.226251 8.48644e-07 6.85816e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| upon himself to undermine various ||| 0.333333 0.114601 8.48644e-07 1.00643e-17 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| upon himself to undermine ||| 0.333333 0.114601 8.48644e-07 6.51834e-14 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| upon himself to ||| 0.2 0.114601 8.48644e-07 5.81994e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| upon himself ||| 0.1 0.114601 8.48644e-07 6.5497e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| upon in exceptional circumstances ||| 1 0.605812 8.48644e-07 3.60807e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| upon in exceptional ||| 1 0.605812 8.48644e-07 6.6816e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| upon in ||| 0.357143 0.605812 8.48644e-06 0.000109534 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| upon it ||| 0.0178571 0.114601 8.48644e-07 1.57186e-05 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| upon on the basis ||| 1 0.22993 8.48644e-07 7.18119e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| upon on the ||| 1 0.22993 8.48644e-07 1.20936e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| upon on ||| 0.333333 0.22993 8.48644e-07 1.96991e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| upon over ||| 1 0.136269 8.48644e-07 3.54196e-06 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| upon people ||| 0.142857 0.114601 8.48644e-07 7.78009e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| upon recalling ||| 1 0.114601 8.48644e-07 1.23746e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| upon terrorism and ||| 1 0.114601 8.48644e-07 2.86756e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| upon terrorism ||| 0.5 0.114601 8.48644e-07 2.2893e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| upon the demand ||| 1 0.114601 8.48644e-07 2.90856e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| upon the fact ||| 0.0769231 0.114601 8.48644e-07 1.58956e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| upon the ||| 0.00203666 0.114601 1.69729e-06 5.42642e-05 2.718 ||| 0-0 ||| 982 1.17835e+06 +en ||| upon them , ||| 0.05 0.114601 8.48644e-07 2.8275e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| upon them ||| 0.0144928 0.114601 8.48644e-07 2.37097e-06 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| upon themselves in ||| 1 0.605812 8.48644e-07 4.7067e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| upon this in ||| 1 0.605812 8.48644e-07 7.07746e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| upon to do in ||| 1 0.605812 8.48644e-07 3.34359e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| upon to undertake ||| 0.333333 0.114601 8.48644e-07 2.03423e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| upon to ||| 0.0322581 0.114601 3.39458e-06 7.85418e-05 2.718 ||| 0-0 ||| 124 1.17835e+06 +en ||| upon us in ||| 0.5 0.605812 8.48644e-07 3.157e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| upon which all of us , ||| 1 0.114601 8.48644e-07 6.62973e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| upon which all of us ||| 1 0.114601 8.48644e-07 5.5593e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| upon which all of ||| 1 0.114601 8.48644e-07 1.92884e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| upon which all ||| 0.5 0.114601 8.48644e-07 3.54801e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| upon which further ||| 1 0.114601 8.48644e-07 3.6288e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| upon which ||| 0.0202429 0.114601 4.24322e-06 7.50838e-06 2.718 ||| 0-0 ||| 247 1.17835e+06 +en ||| upon winning ||| 0.2 0.114601 8.48644e-07 6.01052e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| upon within ||| 0.75 0.369196 2.54593e-06 2.62977e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| upon you ||| 0.0434783 0.114601 8.48644e-07 2.85385e-06 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| upon ||| 0.20041 0.114601 0.000664488 0.0008839 2.718 ||| 0-0 ||| 3907 1.17835e+06 +en ||| upper hand in ||| 0.25 0.605812 2.54593e-06 2.05119e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| uppermost in ||| 0.0357143 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| uprising in ||| 0.0357143 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| upstream of ||| 0.142857 0.105727 8.48644e-07 8.86133e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| upstream ||| 0.035461 0.105727 4.24322e-06 1.63e-05 2.718 ||| 0-0 ||| 141 1.17835e+06 +en ||| upsurge in motivation ||| 0.5 0.605812 8.48644e-07 9.14327e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| upsurge in ||| 0.0178571 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| urge to push back ||| 0.5 0.0247351 8.48644e-07 1.71245e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| urge to push ||| 0.5 0.0247351 8.48644e-07 2.54602e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| urge to ||| 0.027027 0.0247351 8.48644e-07 9.19141e-07 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| urgency , in anticipation ||| 1 0.605812 8.48644e-07 4.56417e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| urgency , in ||| 0.142857 0.605812 8.48644e-07 1.4263e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| urgency in ||| 0.025641 0.605812 8.48644e-07 1.19601e-05 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| urgency into ||| 0.25 0.525896 8.48644e-07 5.73356e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| urgent problem in particular ||| 1 0.605812 8.48644e-07 1.97488e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| urgent problem in ||| 0.5 0.605812 8.48644e-07 3.20911e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| us , as ||| 0.00641026 0.066968 8.48644e-07 6.18273e-06 2.718 ||| 0-2 ||| 156 1.17835e+06 +en ||| us , in ||| 0.0674157 0.605812 5.09187e-06 0.000158722 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| us , on ||| 0.0384615 0.22993 8.48644e-07 2.85451e-05 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| us , where ||| 0.125 0.247783 8.48644e-07 2.92729e-06 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| us , with ||| 0.0434783 0.0535436 8.48644e-07 4.00735e-06 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| us about ||| 0.0204082 0.0401564 8.48644e-07 8.26067e-06 2.718 ||| 0-1 ||| 49 1.17835e+06 +en ||| us all in ||| 0.0526316 0.605812 8.48644e-07 6.28925e-06 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| us all to ||| 0.0125 0.0247351 8.48644e-07 3.82822e-07 2.718 ||| 0-2 ||| 80 1.17835e+06 +en ||| us all ||| 0.00102669 0.0006885 8.48644e-07 2.09824e-07 2.718 ||| 0-1 ||| 974 1.17835e+06 +en ||| us and ||| 0.001001 0.0010182 8.48644e-07 2.65941e-06 2.718 ||| 0-1 ||| 999 1.17835e+06 +en ||| us as Europeans to launch an initiative ||| 1 0.066968 8.48644e-07 3.83231e-22 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| us as Europeans to launch an ||| 1 0.066968 8.48644e-07 6.12191e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| us as Europeans to launch ||| 1 0.066968 8.48644e-07 1.37735e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| us as Europeans to ||| 0.25 0.066968 8.48644e-07 6.95631e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| us as Europeans ||| 0.0333333 0.066968 8.48644e-07 7.82855e-10 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| us as ||| 0.0205279 0.066968 5.94051e-06 5.18447e-05 2.718 ||| 0-1 ||| 341 1.17835e+06 +en ||| us at ||| 0.163121 0.321886 1.95188e-05 0.000115294 2.718 ||| 0-1 ||| 141 1.17835e+06 +en ||| us by in ||| 1 0.605812 8.48644e-07 6.9876e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| us by ||| 0.00851064 0.0468744 1.69729e-06 2.45192e-05 2.718 ||| 0-1 ||| 235 1.17835e+06 +en ||| us consider ||| 0.0416667 0.0126304 8.48644e-07 3.49034e-07 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| us dare to ||| 1 0.0247351 8.48644e-07 6.72414e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| us do , within ||| 1 0.369196 8.48644e-07 1.30908e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| us do away with ||| 0.25 0.0535436 8.48644e-07 3.67206e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| us do in ||| 1 0.605812 8.48644e-07 4.5722e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| us during ||| 0.111111 0.226251 8.48644e-07 8.3333e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| us entrenched in ||| 1 0.605812 8.48644e-07 4.25903e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| us for ||| 0.00497512 0.0286209 8.48644e-07 3.31603e-05 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| us get on with it ||| 0.333333 0.22993 8.48644e-07 1.19001e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| us get on with ||| 0.333333 0.22993 8.48644e-07 6.69179e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| us get on ||| 0.5 0.22993 8.48644e-07 1.04649e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| us good reason to ||| 0.2 0.0247351 8.48644e-07 9.82701e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| us have them in ||| 1 0.605812 8.48644e-07 4.2698e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| us here in ||| 0.106796 0.605812 9.33509e-06 2.69889e-06 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| us here ||| 0.0043956 0.0855319 1.69729e-06 8.64689e-06 2.718 ||| 0-1 ||| 455 1.17835e+06 +en ||| us in Europe ||| 0.0103093 0.605812 8.48644e-07 6.73458e-07 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| us in a ||| 0.0285714 0.605812 8.48644e-07 5.89952e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| us in exactly the ||| 0.5 0.605812 8.48644e-07 8.2036e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| us in exactly ||| 0.333333 0.605812 8.48644e-07 1.33627e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| us in the ||| 0.00653595 0.605812 2.54593e-06 8.17091e-05 2.718 ||| 0-1 ||| 459 1.17835e+06 +en ||| us in trying ||| 0.25 0.605812 8.48644e-07 1.53325e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| us in very ||| 1 0.605812 8.48644e-07 4.63102e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| us in ||| 0.165042 0.605812 0.000215556 0.00133095 2.718 ||| 0-1 ||| 1539 1.17835e+06 +en ||| us into ||| 0.0652174 0.525896 2.54593e-06 6.38041e-05 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| us left in ||| 1 0.605812 8.48644e-07 2.51416e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| us making some ||| 0.5 0.0009939 8.48644e-07 4.22446e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| us more possibilities in ||| 1 0.605812 8.48644e-07 4.37685e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| us on a plate ||| 1 0.22993 8.48644e-07 2.65248e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| us on a ||| 0.0714286 0.22993 8.48644e-07 1.06099e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| us on ||| 0.0532319 0.22993 1.1881e-05 0.000239362 2.718 ||| 0-1 ||| 263 1.17835e+06 +en ||| us over ||| 0.04 0.157937 8.48644e-07 1.15496e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| us present during ||| 1 0.226251 8.48644e-07 3.04999e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| us rely on ||| 0.25 0.22993 8.48644e-07 4.73937e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| us superbly on ||| 0.5 0.22993 8.48644e-07 9.57448e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| us that the ||| 0.0121951 0.0017499 8.48644e-07 1.84941e-07 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| us that ||| 0.00177305 0.0017499 8.48644e-07 3.01248e-06 2.718 ||| 0-1 ||| 564 1.17835e+06 +en ||| us the ||| 0.00342466 0.0011669 8.48644e-07 8.25664e-06 2.718 ||| 0-1 ||| 292 1.17835e+06 +en ||| us throughout ||| 0.0909091 0.309047 8.48644e-07 8.36069e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| us to address the issue of ||| 1 0.0116562 8.48644e-07 1.2381e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| us to do ||| 0.008 0.0247351 8.48644e-07 2.78307e-07 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| us to ensure ||| 0.0119048 0.0247351 8.48644e-07 3.63266e-08 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| us to provide it ||| 0.5 0.0247351 8.48644e-07 4.26154e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| us to provide ||| 0.04 0.0247351 8.48644e-07 2.39639e-08 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| us to reach ||| 0.0217391 0.0247351 8.48644e-07 6.56211e-09 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| us to take a ||| 0.05 0.0074151 8.48644e-07 3.32164e-09 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| us to take ||| 0.00625 0.0074151 8.48644e-07 7.49369e-08 2.718 ||| 0-2 ||| 160 1.17835e+06 +en ||| us to ||| 0.00807848 0.0247351 2.3762e-05 8.10137e-05 2.718 ||| 0-1 ||| 3466 1.17835e+06 +en ||| us today in ||| 0.111111 0.605812 8.48644e-07 6.00656e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| us today ||| 0.00229358 0.0398284 8.48644e-07 3.47709e-06 2.718 ||| 0-1 ||| 436 1.17835e+06 +en ||| us towards ||| 0.0714286 0.0616136 8.48644e-07 2.87125e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| us under ||| 0.0625 0.205566 8.48644e-07 1.62977e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| us when ||| 0.0392157 0.142731 1.69729e-06 1.71586e-05 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| us where ||| 0.133333 0.247783 1.69729e-06 2.45465e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| us with ||| 0.0192771 0.0535436 6.78915e-06 3.36033e-05 2.718 ||| 0-1 ||| 415 1.17835e+06 +en ||| us within ||| 0.307692 0.369196 3.39458e-06 3.19541e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| usage in ||| 0.333333 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| use , with ||| 0.166667 0.0535436 8.48644e-07 6.76002e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| use accordingly ||| 1 0.190763 8.48644e-07 2.30945e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| use at ||| 0.03125 0.321886 8.48644e-07 1.9449e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| use in ||| 0.0349076 0.605812 1.4427e-05 0.000224518 2.718 ||| 0-1 ||| 487 1.17835e+06 +en ||| use of caged beds in ||| 0.166667 0.605812 8.48644e-07 5.37051e-18 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| use of it in the ||| 0.5 0.605812 8.48644e-07 1.33255e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| use of it in ||| 0.166667 0.605812 8.48644e-07 2.17056e-07 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| use of organic solvents in ||| 0.333333 0.605812 8.48644e-07 2.41673e-16 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| use of spare parts for ||| 0.5 0.0286209 8.48644e-07 1.79065e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| use of transport ||| 0.111111 0.0116562 8.48644e-07 6.82259e-10 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| use of ||| 0.000947867 0.0116562 8.48644e-06 6.63031e-06 2.718 ||| 0-1 ||| 10550 1.17835e+06 +en ||| use on documents ||| 1 0.22993 8.48644e-07 1.01753e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| use on ||| 0.0606061 0.22993 1.69729e-06 4.03781e-05 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| use that term , in ||| 1 0.605812 8.48644e-07 4.92733e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| use that word broadly - to ||| 0.5 0.0247351 8.48644e-07 9.88703e-19 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| use the market economy in ||| 1 0.605812 8.48644e-07 1.62607e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| use the ||| 0.000459982 0.0006769 8.48644e-07 8.77903e-07 2.718 ||| 0-0 ||| 2174 1.17835e+06 +en ||| use this speech to dwell on ||| 0.5 0.22993 8.48644e-07 2.60809e-18 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| use to us in ||| 0.166667 0.605812 8.48644e-07 5.75006e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| use within ||| 0.0526316 0.369196 8.48644e-07 5.39035e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| use ||| 0.000366985 0.0006769 9.33509e-06 1.43e-05 2.718 ||| 0-0 ||| 29974 1.17835e+06 +en ||| used across ||| 0.2 0.274879 8.48644e-07 8.81295e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| used as a cudgel ||| 1 0.066968 8.48644e-07 1.36821e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| used as a ||| 0.00821918 0.066968 2.54593e-06 3.42054e-07 2.718 ||| 0-1 ||| 365 1.17835e+06 +en ||| used as an ||| 0.030303 0.066968 1.69729e-06 3.42989e-08 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| used as ||| 0.018732 0.066968 1.10324e-05 7.71681e-06 2.718 ||| 0-1 ||| 694 1.17835e+06 +en ||| used at some ||| 0.333333 0.321886 8.48644e-07 1.86933e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| used at ||| 0.137255 0.321886 5.94051e-06 1.71609e-05 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| used by ||| 0.00335946 0.0468744 2.54593e-06 3.64955e-06 2.718 ||| 0-1 ||| 893 1.17835e+06 +en ||| used for the vote in ||| 1 0.605812 8.48644e-07 1.47033e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| used for the ||| 0.00497512 0.0286209 8.48644e-07 3.03013e-07 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| used for ||| 0.00553797 0.0286209 5.94051e-06 4.93573e-06 2.718 ||| 0-1 ||| 1264 1.17835e+06 +en ||| used in a lawful ||| 1 0.605812 8.48644e-07 1.22936e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| used in a ||| 0.0192308 0.605812 8.48644e-07 8.78112e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| used in order ||| 0.111111 0.605812 8.48644e-07 1.0551e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| used in ||| 0.0295334 0.605812 4.24322e-05 0.000198104 2.718 ||| 0-1 ||| 1693 1.17835e+06 +en ||| used into ||| 1 0.525896 8.48644e-07 9.4969e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| used on ||| 0.0246914 0.22993 1.69729e-06 3.56278e-05 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| used throughout ||| 0.05 0.309047 8.48644e-07 1.24444e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| used to be called out-and-out ||| 0.5 0.0247351 8.48644e-07 5.31738e-17 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| used to be called ||| 0.125 0.0247351 8.48644e-07 3.79813e-11 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| used to be in ||| 0.2 0.605812 8.48644e-07 3.19021e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| used to be ||| 0.0106952 0.0247351 1.69729e-06 2.18534e-07 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| used to decide on ||| 0.5 0.22993 8.48644e-07 2.02929e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| used to exist in ||| 0.333333 0.605812 8.48644e-07 1.62125e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| used to in ||| 0.2 0.605812 8.48644e-07 1.76032e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| used to refer to ||| 0.2 0.0247351 8.48644e-07 8.36836e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| used to state ||| 0.166667 0.0247351 8.48644e-07 3.04597e-09 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| used to tackle ||| 0.166667 0.0247351 8.48644e-07 4.37722e-10 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| used to ||| 0.00668338 0.0247351 1.35783e-05 1.20585e-05 2.718 ||| 0-1 ||| 2394 1.17835e+06 +en ||| used ||| 0.000150659 0.0002986 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 13275 1.17835e+06 +en ||| useful at ||| 0.0625 0.321886 8.48644e-07 1.26806e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| useful for ||| 0.00346021 0.0286209 8.48644e-07 3.64715e-07 2.718 ||| 0-1 ||| 289 1.17835e+06 +en ||| useful in places like ||| 0.25 0.605812 8.48644e-07 1.37521e-12 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| useful in places ||| 0.25 0.605812 8.48644e-07 7.74375e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| useful in ||| 0.00732601 0.605812 1.69729e-06 1.46385e-05 2.718 ||| 0-1 ||| 273 1.17835e+06 +en ||| useful role in ||| 0.0588235 0.605812 8.48644e-07 3.24974e-09 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| useless piece of ||| 0.5 0.0116562 8.48644e-07 6.13379e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| users in ||| 0.04 0.605812 8.48644e-07 4.80252e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| uses the ||| 0.00840336 0.0011669 8.48644e-07 5.27105e-08 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| uses where ||| 1 0.247783 8.48644e-07 1.56705e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| using a ||| 0.00555556 0.0119063 1.69729e-06 2.83685e-06 2.718 ||| 0-0 ||| 360 1.17835e+06 +en ||| using all ||| 0.00558659 0.0119063 8.48644e-07 3.02426e-07 2.718 ||| 0-0 ||| 179 1.17835e+06 +en ||| using as a foundation ||| 1 0.066968 8.48644e-07 6.25719e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| using as a ||| 0.166667 0.066968 8.48644e-07 6.19524e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| using as ||| 0.0625 0.066968 8.48644e-07 1.39766e-06 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| using exactly ||| 0.142857 0.0119063 8.48644e-07 6.4256e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| using it ||| 0.00884956 0.0080472 8.48644e-07 2.14289e-07 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| using the ||| 0.000666223 0.0119063 8.48644e-07 3.92908e-06 2.718 ||| 0-0 ||| 1501 1.17835e+06 +en ||| using to refer to ||| 1 0.0247351 8.48644e-07 1.51567e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| using ||| 0.00624512 0.0119063 4.75241e-05 6.4e-05 2.718 ||| 0-0 ||| 8967 1.17835e+06 +en ||| usual in Dutch ||| 1 0.605812 8.48644e-07 1.32614e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| usual in ||| 0.0294118 0.605812 8.48644e-07 7.98881e-06 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| usually fail ||| 0.333333 0.0132053 8.48644e-07 8.1e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| usually happens in such ||| 0.1 0.605812 8.48644e-07 8.8406e-13 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| usually happens in ||| 0.0555556 0.605812 8.48644e-07 4.27309e-10 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| usually ||| 0.00178571 0.0132053 1.69729e-06 1.5e-05 2.718 ||| 0-0 ||| 1120 1.17835e+06 +en ||| utilise them during ||| 1 0.226251 8.48644e-07 1.39601e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| utilized under ||| 0.5 0.205566 8.48644e-07 3.95822e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| vacancies in ||| 0.1 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| validated in ||| 0.333333 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| valuable in ||| 0.0175439 0.605812 8.48644e-07 6.64965e-06 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| value , even for the 15 old ||| 1 0.0045419 8.48644e-07 1.11643e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| value , even for the 15 ||| 1 0.0045419 8.48644e-07 1.44991e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| value , even for the ||| 1 0.0045419 8.48644e-07 6.59052e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| value , even for ||| 1 0.0045419 8.48644e-07 1.07352e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| value , even ||| 1 0.0045419 8.48644e-07 1.39677e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| value . that will make things easier ||| 1 0.0017499 8.48644e-07 1.19885e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| value . that will make things ||| 1 0.0017499 8.48644e-07 1.71756e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| value . that will make ||| 1 0.0017499 8.48644e-07 4.17897e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| value . that will ||| 1 0.0017499 8.48644e-07 2.40475e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| value . that ||| 1 0.0017499 8.48644e-07 2.77967e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| value for money in ||| 0.25 0.605812 8.48644e-07 5.09174e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| value for ||| 0.00342466 0.0286209 8.48644e-07 1.01016e-06 2.718 ||| 0-1 ||| 292 1.17835e+06 +en ||| value in themselves ||| 0.2 0.605812 8.48644e-07 1.74219e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| value in ||| 0.032 0.605812 3.39458e-06 4.05444e-05 2.718 ||| 0-1 ||| 125 1.17835e+06 +en ||| value knocked off their savings in ||| 1 0.605812 8.48644e-07 1.74629e-22 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| value to ||| 0.0041841 0.0247351 8.48644e-07 2.46791e-06 2.718 ||| 0-1 ||| 239 1.17835e+06 +en ||| value with regard to guarantees ||| 1 0.0535436 8.48644e-07 1.25108e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| value with regard to ||| 0.25 0.0535436 8.48644e-07 6.19345e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| value with regard ||| 0.25 0.0535436 8.48644e-07 6.97004e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| value with ||| 0.1 0.0535436 8.48644e-07 1.02365e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| valued by ||| 0.0434783 0.0468744 8.48644e-07 2.12678e-08 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| valued in ||| 0.166667 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| values in question ||| 0.333333 0.605812 8.48644e-07 1.26452e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| values in ||| 0.00763359 0.605812 8.48644e-07 1.5285e-05 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| vanish in ||| 0.5 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| vanished from sight ||| 0.333333 0.0308834 8.48644e-07 6.12621e-14 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| vanished from ||| 0.142857 0.0308834 8.48644e-07 2.66357e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| varies ||| 0.0138889 0.0529532 2.54593e-06 1.77e-05 2.718 ||| 0-0 ||| 216 1.17835e+06 +en ||| varieties in ||| 1 0.605812 8.48644e-07 1.15445e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| variety of locations in ||| 0.5 0.605812 8.48644e-07 2.07863e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| variety of ||| 0.00124533 0.0116562 8.48644e-07 3.13651e-07 2.718 ||| 0-1 ||| 803 1.17835e+06 +en ||| various parts of ||| 0.0144928 0.0116562 8.48644e-07 1.22754e-10 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| various projects including , in ||| 1 0.605812 8.48644e-07 4.37629e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| various regions of ||| 0.025 0.0116562 8.48644e-07 1.73498e-10 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| various ways in ||| 0.05 0.605812 8.48644e-07 6.87322e-09 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| various ||| 0.000278668 0.0007052 3.39458e-06 6.8e-06 2.718 ||| 0-0 ||| 14354 1.17835e+06 +en ||| vary from ||| 0.00961538 0.0308834 8.48644e-07 1.36984e-08 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| vegetables in ||| 0.04 0.605812 8.48644e-07 1.01592e-06 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| vehicles from ||| 0.05 0.0308834 8.48644e-07 7.00138e-08 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| vehicles in ||| 0.0192308 0.605812 8.48644e-07 8.49677e-06 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| veil over ||| 0.0555556 0.157937 8.48644e-07 4.40792e-09 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| vendor on ||| 0.5 0.22993 8.48644e-07 3.32194e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| verbatim in ||| 1 0.605812 8.48644e-07 8.31206e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| verdict in ||| 0.125 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| verifying that the activities carried out in ||| 1 0.605812 8.48644e-07 2.99573e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| version at this point ||| 1 0.321886 8.48644e-07 8.38863e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| version at this ||| 1 0.321886 8.48644e-07 9.5892e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| version at ||| 0.25 0.321886 8.48644e-07 1.48407e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| version ||| 0.00101574 0.0009569 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 1969 1.17835e+06 +en ||| versions in ||| 0.0833333 0.605812 8.48644e-07 2.30891e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| versions of ||| 0.0344828 0.0659537 8.48644e-07 1.36997e-06 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| versions ||| 0.00568182 0.0659537 1.69729e-06 2.52e-05 2.718 ||| 0-0 ||| 352 1.17835e+06 +en ||| very badly during ||| 1 0.226251 8.48644e-07 1.44868e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very briefly in ||| 0.142857 0.605812 8.48644e-07 2.31374e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| very carefully to see ||| 0.25 0.0247351 8.48644e-07 2.70135e-12 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| very carefully to ||| 0.00694444 0.0247351 8.48644e-07 3.83387e-09 2.718 ||| 0-2 ||| 144 1.17835e+06 +en ||| very city of ||| 0.333333 0.0116562 8.48644e-07 9.72724e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| very clear message ||| 0.0108696 0.0020657 8.48644e-07 2.1726e-12 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| very clear ||| 0.00038432 0.0020657 8.48644e-07 4.50747e-08 2.718 ||| 0-0 ||| 2602 1.17835e+06 +en ||| very clearly at ||| 0.0833333 0.321886 8.48644e-07 2.54016e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| very clearly in ||| 0.0375 0.605812 2.54593e-06 2.93235e-07 2.718 ||| 0-2 ||| 80 1.17835e+06 +en ||| very close to ||| 0.00409836 0.0247351 8.48644e-07 1.45042e-08 2.718 ||| 0-2 ||| 244 1.17835e+06 +en ||| very closely at ||| 0.0227273 0.321886 8.48644e-07 1.2318e-08 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| very closely in order ||| 0.333333 0.605812 8.48644e-07 7.57351e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| very closely in ||| 0.0666667 0.605812 8.48644e-07 1.42199e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| very closely monitored in ||| 1 0.605812 8.48644e-07 1.73483e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| very concept of ||| 0.0188679 0.0116562 8.48644e-07 2.81853e-09 2.718 ||| 0-2 ||| 53 1.17835e+06 +en ||| very conditions in ||| 0.25 0.605812 8.48644e-07 1.92009e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| very critically at Belarus ||| 1 0.321886 8.48644e-07 4.14081e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very critically at ||| 0.1 0.321886 8.48644e-07 3.47967e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| very different in ||| 0.0344828 0.605812 8.48644e-07 3.5381e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| very domain of activity in connection with ||| 1 0.0535436 8.48644e-07 6.10053e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| very far from the ||| 0.1 0.0308834 8.48644e-07 5.54911e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| very far from ||| 0.0169492 0.0308834 8.48644e-07 9.03884e-09 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| very forcefully by ||| 0.333333 0.0468744 8.48644e-07 1.59842e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| very freely in ||| 1 0.605812 8.48644e-07 2.0888e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very good at ||| 0.0238095 0.321886 8.48644e-07 7.21824e-08 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| very good component in ||| 1 0.605812 8.48644e-07 1.25824e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| very good job on ||| 0.2 0.22993 8.48644e-07 1.17039e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| very graphically in ||| 1 0.605812 8.48644e-07 1.12474e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very hard in ||| 0.0833333 0.605812 1.69729e-06 1.68871e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| very heartened in ||| 1 0.605812 8.48644e-07 2.24947e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very heavily on ||| 0.0555556 0.22993 8.48644e-07 6.35727e-09 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| very high on ||| 0.0196078 0.22993 8.48644e-07 4.31428e-08 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| very idea in ||| 1 0.605812 8.48644e-07 3.60237e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very important , in ||| 0.0416667 0.605812 8.48644e-07 7.35033e-08 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| very important in ||| 0.00340136 0.605812 8.48644e-07 6.16356e-07 2.718 ||| 0-2 ||| 294 1.17835e+06 +en ||| very important matters properly discussed at ||| 1 0.321886 8.48644e-07 3.86335e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| very important part of ||| 0.0181818 0.0116562 8.48644e-07 2.17002e-11 2.718 ||| 0-3 ||| 55 1.17835e+06 +en ||| very issue at ||| 1 0.321886 8.48644e-07 1.05337e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very largely ||| 0.0147059 0.247761 8.48644e-07 2.94783e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| very many places in ||| 1 0.605812 8.48644e-07 2.91798e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| very meeting where ||| 1 0.247783 8.48644e-07 3.72197e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very minor extent ||| 0.5 0.0400323 8.48644e-07 9.14169e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| very minor role to ||| 1 0.0247351 8.48644e-07 2.82259e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| very much a matter for ||| 0.5 0.0286209 8.48644e-07 1.84782e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| very much at ||| 0.0645161 0.321886 1.69729e-06 1.39702e-07 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| very much for your supplementary question ||| 1 0.0286209 8.48644e-07 7.6558e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very much for your supplementary ||| 1 0.0286209 8.48644e-07 9.25396e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very much for your ||| 0.0555556 0.0286209 8.48644e-07 1.02822e-11 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| very much for ||| 0.00564972 0.0286209 8.48644e-07 4.01805e-08 2.718 ||| 0-2 ||| 177 1.17835e+06 +en ||| very much in Turkey ||| 1 0.605812 8.48644e-07 9.46662e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very much in a class of ||| 1 0.605812 8.48644e-07 3.34213e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very much in a class ||| 1 0.605812 8.48644e-07 6.14769e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very much in a ||| 0.333333 0.605812 8.48644e-07 7.14848e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| very much in keeping with ||| 0.25 0.0535436 8.48644e-07 5.11589e-14 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| very much in line ||| 0.0277778 0.605812 8.48644e-07 4.74783e-10 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| very much in the ||| 0.0185185 0.303489 8.48644e-07 4.61994e-09 2.718 ||| 0-2 0-3 ||| 54 1.17835e+06 +en ||| very much in ||| 0.0495495 0.605812 1.86702e-05 1.61271e-06 2.718 ||| 0-2 ||| 444 1.17835e+06 +en ||| very much on everyone 's ||| 1 0.22993 8.48644e-07 3.71728e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very much on everyone ||| 1 0.22993 8.48644e-07 1.95194e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very much on the ||| 0.0181818 0.22993 8.48644e-07 1.78058e-08 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| very much on ||| 0.057554 0.22993 6.78915e-06 2.90036e-07 2.718 ||| 0-2 ||| 139 1.17835e+06 +en ||| very much support ||| 0.0238095 0.0020657 8.48644e-07 4.64645e-11 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| very much to ||| 0.0328947 0.0247351 4.24322e-06 9.81647e-08 2.718 ||| 0-2 ||| 152 1.17835e+06 +en ||| very much ||| 0.000833507 0.0020657 3.39458e-06 1.35901e-07 2.718 ||| 0-0 ||| 4799 1.17835e+06 +en ||| very people in power in Sudan ||| 1 0.605812 8.48644e-07 1.62705e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very people in power in ||| 1 0.605812 8.48644e-07 4.51959e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very people in power ||| 1 0.605812 8.48644e-07 2.11151e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very people in ||| 1 0.605812 8.48644e-07 1.41428e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very pleased that in ||| 1 0.605812 8.48644e-07 1.10006e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| very position will ||| 1 0.0020657 8.48644e-07 3.85733e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| very position ||| 1 0.0020657 8.48644e-07 4.45872e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| very positively received in Turkey ||| 1 0.605812 8.48644e-07 7.94378e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| very positively received in ||| 1 0.605812 8.48644e-07 1.35328e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| very prevalent among ||| 1 0.0422459 8.48644e-07 3.21384e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very rapidly on ||| 0.1 0.22993 8.48644e-07 3.43871e-09 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| very recently , can ||| 0.25 0.0095755 8.48644e-07 7.55316e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| very recently , ||| 0.015625 0.0095755 8.48644e-07 2.53947e-08 2.718 ||| 0-1 ||| 64 1.17835e+06 +en ||| very recently in ||| 0.125 0.605812 8.48644e-07 1.0926e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| very recently ||| 0.00398406 0.0095755 8.48644e-07 2.12945e-07 2.718 ||| 0-1 ||| 251 1.17835e+06 +en ||| very serious consequences for ||| 0.0588235 0.0286209 8.48644e-07 1.95998e-13 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| very soon be published ||| 1 0.0178344 8.48644e-07 1.6073e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| very soon be ||| 0.0454545 0.0178344 8.48644e-07 7.2076e-09 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| very soon ||| 0.00458015 0.0178344 2.54593e-06 3.97707e-07 2.718 ||| 0-1 ||| 655 1.17835e+06 +en ||| very special ||| 0.00384615 0.0020657 8.48644e-07 1.15902e-08 2.718 ||| 0-0 ||| 260 1.17835e+06 +en ||| very specifically into real ||| 1 0.525896 8.48644e-07 7.77384e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very specifically into ||| 1 0.525896 8.48644e-07 4.3212e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| very strong terms for ||| 1 0.0286209 8.48644e-07 3.73046e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| very strongly in ||| 0.0416667 0.605812 8.48644e-07 7.69642e-08 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| very strongly that ||| 0.0138889 0.0017499 8.48644e-07 1.74201e-10 2.718 ||| 0-2 ||| 72 1.17835e+06 +en ||| very welcome every now ||| 1 0.0123946 8.48644e-07 3.68989e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| very well ||| 0.000507614 0.0020657 8.48644e-07 2.1469e-07 2.718 ||| 0-0 ||| 1970 1.17835e+06 +en ||| very ||| 0.00118165 0.0020657 6.87402e-05 0.0001354 2.718 ||| 0-0 ||| 68548 1.17835e+06 +en ||| vessel in ||| 0.0833333 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| vessels in ||| 0.0447761 0.605812 2.54593e-06 6.64965e-06 2.718 ||| 0-1 ||| 67 1.17835e+06 +en ||| vessels report in ||| 0.5 0.605812 8.48644e-07 2.72569e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| vested in ||| 0.0434783 0.605812 1.69729e-06 2.81686e-06 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| vested interest in small businesses and trades ||| 0.333333 0.605812 8.48644e-07 2.97035e-26 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| vested interest in small businesses and ||| 0.333333 0.605812 8.48644e-07 1.35016e-20 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| vested interest in small businesses ||| 0.333333 0.605812 8.48644e-07 1.0779e-18 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| vested interest in small ||| 0.333333 0.605812 8.48644e-07 4.05224e-14 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| vested interest in ||| 0.0208333 0.605812 8.48644e-07 3.16334e-10 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| vestiges of ||| 0.0555556 0.0116562 8.48644e-07 9.5459e-09 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| vexed representation in ||| 1 0.605812 8.48644e-07 2.19808e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| via another route in ||| 1 0.605812 8.48644e-07 8.44702e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| via ||| 0.00894584 0.0130862 3.13998e-05 4.08e-05 2.718 ||| 0-0 ||| 4136 1.17835e+06 +en ||| victim at ||| 1 0.321886 8.48644e-07 7.20036e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| victim of ||| 0.00265252 0.0116562 8.48644e-07 2.45466e-07 2.718 ||| 0-1 ||| 377 1.17835e+06 +en ||| victim to ||| 0.0133333 0.0247351 2.54593e-06 5.05949e-07 2.718 ||| 0-1 ||| 225 1.17835e+06 +en ||| victims by ||| 0.0714286 0.0468744 8.48644e-07 3.00301e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| victims of ||| 0.000713267 0.0116562 1.69729e-06 4.81386e-07 2.718 ||| 0-1 ||| 2804 1.17835e+06 +en ||| victorious in ||| 0.285714 0.605812 1.69729e-06 3.23247e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| view , in ||| 0.0232558 0.605812 8.48644e-07 4.97443e-05 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| view , takes us in ||| 1 0.605812 8.48644e-07 1.85238e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| view and where ||| 1 0.247783 8.48644e-07 9.63623e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| view during ||| 0.333333 0.226251 8.48644e-07 2.61171e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| view expressed in ||| 0.0425532 0.605812 1.69729e-06 4.05447e-08 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| view for the ||| 1 0.0286209 8.48644e-07 6.38023e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| view for ||| 0.0526316 0.0286209 8.48644e-07 1.03926e-05 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| view in ||| 0.12963 0.605812 1.1881e-05 0.000417127 2.718 ||| 0-1 ||| 108 1.17835e+06 +en ||| view into line ||| 0.5 0.525896 8.48644e-07 5.88701e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| view into ||| 0.5 0.525896 1.69729e-06 1.99966e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| view of ||| 0.00152207 0.0116562 6.78915e-06 1.23183e-05 2.718 ||| 0-1 ||| 5256 1.17835e+06 +en ||| view on ||| 0.015528 0.22993 4.24322e-06 7.50176e-05 2.718 ||| 0-1 ||| 322 1.17835e+06 +en ||| view that at ||| 0.25 0.321886 8.48644e-07 6.07828e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| view that ||| 0.0005 0.0017499 8.48644e-07 9.44129e-07 2.718 ||| 0-1 ||| 2000 1.17835e+06 +en ||| view to increasing ||| 0.047619 0.0247351 8.48644e-07 1.31521e-09 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| view to obtaining an expert opinion on ||| 1 0.22993 8.48644e-07 1.23748e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| view to the ||| 0.00769231 0.0247351 8.48644e-07 1.55875e-06 2.718 ||| 0-1 ||| 130 1.17835e+06 +en ||| view to ||| 0.00348606 0.0247351 5.94051e-06 2.53902e-05 2.718 ||| 0-1 ||| 2008 1.17835e+06 +en ||| view try desperately to ||| 0.5 0.0247351 8.48644e-07 4.3011e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| view with ||| 0.025641 0.0535436 8.48644e-07 1.05315e-05 2.718 ||| 0-1 ||| 39 1.17835e+06 +en ||| view ||| 0.000359238 0.0012683 7.6378e-06 2.72e-05 2.718 ||| 0-0 ||| 25053 1.17835e+06 +en ||| viewed from ||| 0.0294118 0.0308834 8.48644e-07 9.17029e-08 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| viewed in ||| 0.0196078 0.605812 8.48644e-07 1.11289e-05 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| viewed over ||| 1 0.0803971 8.48644e-07 5.61008e-09 2.718 ||| 0-0 0-1 ||| 1 1.17835e+06 +en ||| viewed throughout ||| 0.333333 0.309047 8.48644e-07 6.99093e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| views as ||| 0.0243902 0.066968 8.48644e-07 1.46242e-06 2.718 ||| 0-1 ||| 41 1.17835e+06 +en ||| views expressed in ||| 0.0227273 0.605812 8.48644e-07 3.64916e-09 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| views in relation ||| 0.2 0.605812 8.48644e-07 9.13416e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| views in ||| 0.0326087 0.605812 2.54593e-06 3.75428e-05 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| views into ||| 0.25 0.525896 8.48644e-07 1.79976e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| views on ||| 0.00539811 0.22993 3.39458e-06 6.75183e-06 2.718 ||| 0-1 ||| 741 1.17835e+06 +en ||| vigilant with ||| 0.0714286 0.0535436 8.48644e-07 4.1972e-08 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| vigorously in ||| 0.0833333 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| vine cultivation in ||| 1 0.605812 8.48644e-07 5.3659e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| violate in ||| 0.333333 0.605812 8.48644e-07 1.33917e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| violate what ||| 1 0.0035633 8.48644e-07 1.13274e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| violations in ||| 0.0277778 0.605812 8.48644e-07 6.46494e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| violence in ||| 0.00773196 0.605812 2.54593e-06 1.04824e-05 2.718 ||| 0-1 ||| 388 1.17835e+06 +en ||| violent storm on ||| 1 0.22993 8.48644e-07 1.94333e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| virtue of ||| 0.00295858 0.0116562 8.48644e-07 3.00014e-07 2.718 ||| 0-1 ||| 338 1.17835e+06 +en ||| virus in ||| 0.111111 0.605812 8.48644e-07 2.17037e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| virus which might exist in ||| 1 0.605812 8.48644e-07 6.5203e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| vis the ||| 0.125 0.0011669 8.48644e-07 1.74747e-08 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| vis ||| 0.0666667 0.0307692 1.69729e-06 1.4e-06 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| vis-à-vis ||| 0.0166667 0.0566251 7.6378e-06 3.4e-05 2.718 ||| 0-0 ||| 540 1.17835e+06 +en ||| visa in ||| 0.142857 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| visible in ||| 0.0263158 0.605812 1.69729e-06 6.83436e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| visible on ||| 0.05 0.22993 8.48644e-07 1.22912e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| visible vestiges of ||| 1 0.0116562 8.48644e-07 1.41279e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| vision in ||| 0.0344828 0.605812 8.48644e-07 5.63373e-06 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| vision of ||| 0.004 0.00602025 1.69729e-06 9.5459e-09 2.718 ||| 0-0 0-1 ||| 500 1.17835e+06 +en ||| visit in ||| 0.0555556 0.605812 8.48644e-07 1.36225e-05 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| visit to ||| 0.0039604 0.0247351 1.69729e-06 8.29195e-07 2.718 ||| 0-1 ||| 505 1.17835e+06 +en ||| visit ||| 0.000396668 0.000774 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 2521 1.17835e+06 +en ||| visited ||| 0.00192123 0.0041806 1.69729e-06 3.4e-06 2.718 ||| 0-0 ||| 1041 1.17835e+06 +en ||| visiting ||| 0.00618557 0.0051458 2.54593e-06 2e-06 2.718 ||| 0-0 ||| 485 1.17835e+06 +en ||| vital contribution to ||| 0.0333333 0.0247351 8.48644e-07 7.91811e-11 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| vital in ||| 0.00724638 0.605812 8.48644e-07 1.44537e-05 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| vital step on ||| 0.333333 0.22993 8.48644e-07 3.83414e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| vivid picture in my ||| 0.25 0.605812 8.48644e-07 1.4219e-14 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| vivid picture in ||| 0.25 0.605812 8.48644e-07 2.21101e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| vociferous ||| 0.0526316 0.0606061 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| voice , in ||| 0.5 0.605812 8.48644e-07 2.39553e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| voice and ||| 0.00512821 0.0010182 8.48644e-07 4.01375e-08 2.718 ||| 0-1 ||| 195 1.17835e+06 +en ||| voice at ||| 0.0416667 0.321886 8.48644e-07 1.74009e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| voice in ||| 0.0342857 0.605812 5.09187e-06 2.00875e-05 2.718 ||| 0-1 ||| 175 1.17835e+06 +en ||| voice on ||| 0.0192308 0.22993 1.69729e-06 3.61261e-06 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| voiced in ||| 0.0454545 0.605812 1.69729e-06 4.15603e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| voiced over ||| 0.2 0.157937 8.48644e-07 3.60648e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| voices heard in ||| 1 0.605812 8.48644e-07 3.54759e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| void from now on ||| 1 0.22993 8.48644e-07 1.79071e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| vote ' ||| 0.00833333 0.0032578 8.48644e-07 4.29272e-08 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| vote against ||| 0.000424989 0.153982 8.48644e-07 9.12167e-07 2.718 ||| 0-1 ||| 2353 1.17835e+06 +en ||| vote at ||| 0.00680272 0.321886 8.48644e-07 6.29231e-06 2.718 ||| 0-1 ||| 147 1.17835e+06 +en ||| vote during which ||| 0.5 0.226251 8.48644e-07 3.86336e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| vote during ||| 0.0454545 0.226251 8.48644e-07 4.54801e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| vote in favour of ||| 0.00162602 0.605812 1.69729e-06 1.27747e-09 2.718 ||| 0-1 ||| 1230 1.17835e+06 +en ||| vote in favour ||| 0.0015213 0.605812 2.54593e-06 2.34984e-08 2.718 ||| 0-1 ||| 1972 1.17835e+06 +en ||| vote in ||| 0.00568752 0.605812 1.4427e-05 7.26382e-05 2.718 ||| 0-1 ||| 2989 1.17835e+06 +en ||| vote on ||| 0.00101471 0.22993 3.39458e-06 1.30635e-05 2.718 ||| 0-1 ||| 3942 1.17835e+06 +en ||| vote today will ||| 0.333333 0.0398284 8.48644e-07 1.64171e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| vote today ||| 0.0047619 0.0398284 8.48644e-07 1.89767e-07 2.718 ||| 0-1 ||| 210 1.17835e+06 +en ||| vote with my ||| 0.25 0.0535436 8.48644e-07 1.17941e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| vote with ||| 0.0135135 0.0535436 8.48644e-07 1.83394e-06 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| vote ||| 3.10328e-05 2.88e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 32224 1.17835e+06 +en ||| voted ' ||| 0.0070922 0.122467 8.48644e-07 7.61483e-06 2.718 ||| 0-0 ||| 141 1.17835e+06 +en ||| voted against this , ||| 0.25 0.122467 8.48644e-07 4.07585e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| voted against this ||| 0.0013624 0.122467 8.48644e-07 3.41777e-09 2.718 ||| 0-0 ||| 734 1.17835e+06 +en ||| voted against ||| 0.000378931 0.122467 1.69729e-06 5.28952e-07 2.718 ||| 0-0 ||| 5278 1.17835e+06 +en ||| voted down , ||| 0.0833333 0.122467 8.48644e-07 1.84561e-07 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| voted down ||| 0.015625 0.122467 8.48644e-07 1.54762e-06 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| voted in the ||| 0.0185185 0.605812 8.48644e-07 1.14249e-06 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| voted in ||| 0.000632411 0.605812 3.39458e-06 1.86098e-05 2.718 ||| 0-1 ||| 6325 1.17835e+06 +en ||| voted on in ||| 0.0208333 0.605812 1.69729e-06 1.24518e-07 2.718 ||| 0-2 ||| 96 1.17835e+06 +en ||| voted once ||| 0.333333 0.122467 8.48644e-07 9.07155e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| voted out ||| 0.0416667 0.122467 8.48644e-07 8.49161e-06 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| voted to ||| 0.003125 0.122467 8.48644e-07 0.00019699 2.718 ||| 0-0 ||| 320 1.17835e+06 +en ||| voted with ||| 0.0188679 0.122467 8.48644e-07 1.4176e-05 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| voted ||| 0.00149477 0.122467 2.12161e-05 0.0022169 2.718 ||| 0-0 ||| 16725 1.17835e+06 +en ||| voted ‘ ||| 0.0285714 0.122467 8.48644e-07 2.48958e-07 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| voters in ||| 0.00892857 0.605812 8.48644e-07 2.67833e-06 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| votes at ||| 0.05 0.321886 8.48644e-07 1.45207e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| votes in France and the ||| 0.333333 0.605812 8.48644e-07 2.96476e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| votes in France and ||| 0.2 0.605812 8.48644e-07 4.82925e-12 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| votes in France ||| 0.2 0.605812 8.48644e-07 3.85541e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| votes in ||| 0.015873 0.605812 5.09187e-06 1.67627e-05 2.718 ||| 0-1 ||| 378 1.17835e+06 +en ||| votes of ||| 0.0147059 0.0116562 8.48644e-07 4.95023e-07 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| votes on ||| 0.00537634 0.22993 8.48644e-07 3.01466e-06 2.718 ||| 0-1 ||| 186 1.17835e+06 +en ||| voting as ||| 0.05 0.066968 8.48644e-07 6.99729e-07 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| voting cards were distributed ||| 0.333333 0.0081975 8.48644e-07 1.39718e-17 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| voting cards were ||| 0.333333 0.0081975 8.48644e-07 9.97989e-13 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| voting cards ||| 0.1 0.0081975 8.48644e-07 5.571e-10 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| voting decisions ||| 0.5 0.0081975 8.48644e-07 4.72297e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| voting in ||| 0.00567376 0.605812 3.39458e-06 1.79633e-05 2.718 ||| 0-1 ||| 705 1.17835e+06 +en ||| voting itself ||| 0.25 0.0081975 8.48644e-07 4.20115e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| voting on ||| 0.00116686 0.22993 8.48644e-07 3.23058e-06 2.718 ||| 0-1 ||| 857 1.17835e+06 +en ||| voting ||| 0.0012647 0.0081975 8.48644e-06 6.19e-05 2.718 ||| 0-0 ||| 7907 1.17835e+06 +en ||| vulnerable in ||| 0.0147059 0.605812 8.48644e-07 4.66399e-06 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| wade into ||| 1 0.525896 8.48644e-07 1.54961e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| wage war during ||| 1 0.226251 8.48644e-07 6.5433e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| waged at ||| 0.333333 0.321886 8.48644e-07 3.16016e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| waged in the ||| 0.2 0.605812 8.48644e-07 2.23962e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| waged in ||| 0.157895 0.605812 2.54593e-06 3.64807e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| waged war on one another ||| 1 0.22993 8.48644e-07 2.446e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| waged war on one ||| 1 0.22993 8.48644e-07 1.01452e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| waged war on ||| 0.25 0.22993 8.48644e-07 2.43407e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| wages in ||| 0.0666667 0.605812 1.69729e-06 3.00158e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| wages on us at ||| 1 0.321886 8.48644e-07 5.0143e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| waging a ||| 0.0384615 0.0506912 8.48644e-07 3.32444e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| waging on its people in ||| 1 0.605812 8.48644e-07 1.54986e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| waging this ||| 0.4 0.0260104 1.69729e-06 3.5775e-09 2.718 ||| 0-0 0-1 ||| 5 1.17835e+06 +en ||| waging ||| 0.0106383 0.0506912 8.48644e-07 7.5e-06 2.718 ||| 0-0 ||| 94 1.17835e+06 +en ||| wait until ||| 0.00631579 0.0092136 2.54593e-06 1.5795e-09 2.718 ||| 0-1 ||| 475 1.17835e+06 +en ||| waiting at ||| 0.1 0.321886 8.48644e-07 1.06405e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| waiting for public transport ||| 0.5 0.0286209 8.48644e-07 5.089e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| waiting for public ||| 0.5 0.0286209 8.48644e-07 4.94558e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| waiting for ||| 0.0025641 0.0286209 2.54593e-06 3.06038e-07 2.718 ||| 0-1 ||| 1170 1.17835e+06 +en ||| waiting to be ||| 0.0138889 0.0247351 8.48644e-07 1.35501e-08 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| waiting to ||| 0.00392157 0.0247351 8.48644e-07 7.47681e-07 2.718 ||| 0-1 ||| 255 1.17835e+06 +en ||| walk out voluntarily ||| 1 0.0120599 8.48644e-07 6.73812e-15 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| walk out ||| 0.1 0.0120599 8.48644e-07 3.7434e-09 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| walking ||| 0.00925926 0.0129032 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| wall in ||| 0.0434783 0.605812 8.48644e-07 3.32482e-06 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| want , during ||| 1 0.226251 8.48644e-07 1.61195e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| want a rigorous budget on ||| 1 0.22993 8.48644e-07 9.13173e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| want in ||| 0.0606061 0.605812 1.69729e-06 0.000215883 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| want to clearly say ||| 1 0.0247351 8.48644e-07 2.29217e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| want to clearly ||| 1 0.0247351 8.48644e-07 2.39817e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| want to compromise on ||| 1 0.22993 8.48644e-07 1.56282e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| want to keep ||| 0.0163934 0.0247351 8.48644e-07 2.04731e-09 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| want to on ||| 1 0.22993 8.48644e-07 3.44993e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| want to return to ||| 0.0555556 0.0247351 8.48644e-07 7.77657e-11 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| want to say that in ||| 0.5 0.605812 8.48644e-07 3.08425e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| want to use ||| 0.0131579 0.012706 8.48644e-07 1.87911e-10 2.718 ||| 0-1 0-2 ||| 76 1.17835e+06 +en ||| want to ||| 0.00183124 0.0247351 1.10324e-05 1.31406e-05 2.718 ||| 0-1 ||| 7099 1.17835e+06 +en ||| want when ||| 1 0.142731 8.48644e-07 2.78317e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| wanted in ||| 0.0454545 0.605812 8.48644e-07 2.52594e-05 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| wanted to go ||| 0.0263158 0.0247351 8.48644e-07 8.99144e-10 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| wanted to make is about ||| 0.5 0.0401564 8.48644e-07 7.58735e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| wanted to make ||| 0.00869565 0.0247351 8.48644e-07 2.67191e-09 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| wanted to say ||| 0.00763359 0.0124602 8.48644e-07 1.88061e-11 2.718 ||| 0-0 0-1 ||| 131 1.17835e+06 +en ||| wanted to try to ||| 1 0.0247351 8.48644e-07 2.10397e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| wanted to ||| 0.00236967 0.0247351 3.39458e-06 1.53752e-06 2.718 ||| 0-1 ||| 1688 1.17835e+06 +en ||| wanting to ||| 0.00222717 0.0247351 8.48644e-07 4.16003e-07 2.718 ||| 0-1 ||| 449 1.17835e+06 +en ||| wants into ||| 0.5 0.525896 8.48644e-07 1.10022e-06 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| wants to print ||| 0.333333 0.0247351 8.48644e-07 3.07336e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| wants to ||| 0.000845666 0.0247351 1.69729e-06 1.39698e-06 2.718 ||| 0-1 ||| 2365 1.17835e+06 +en ||| war , in ||| 0.0714286 0.605812 8.48644e-07 2.04308e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| war at ||| 0.0909091 0.321886 8.48644e-07 1.48407e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| war during ||| 0.25 0.226251 8.48644e-07 1.07267e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| war in ||| 0.00382653 0.605812 2.54593e-06 1.71321e-05 2.718 ||| 0-1 ||| 784 1.17835e+06 +en ||| war into ||| 0.0769231 0.525896 8.48644e-07 8.21294e-07 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| war on one another ||| 1 0.22993 8.48644e-07 3.09621e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| war on one ||| 1 0.22993 8.48644e-07 1.2842e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| war on ||| 0.00261097 0.22993 8.48644e-07 3.0811e-06 2.718 ||| 0-1 ||| 383 1.17835e+06 +en ||| warfare in ||| 0.25 0.605812 8.48644e-07 1.84712e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| warmly to ||| 0.0625 0.0247351 8.48644e-07 8.7979e-07 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| warned against ||| 0.037037 0.153982 8.48644e-07 1.68168e-08 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| warning on ||| 0.142857 0.22993 8.48644e-07 1.16268e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| warning system for ||| 0.333333 0.0286209 8.48644e-07 4.49232e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| warring parties in ||| 0.25 0.605812 8.48644e-07 2.37263e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| was , after ||| 0.0526316 0.0144723 8.48644e-07 9.91601e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| was , from ||| 0.2 0.0308834 1.69729e-06 1.42168e-06 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| was , in ||| 0.0754717 0.605812 6.78915e-06 0.000172533 2.718 ||| 0-2 ||| 106 1.17835e+06 +en ||| was , to ||| 0.125 0.0247351 8.48644e-07 1.0502e-05 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| was a problem with regard to ||| 1 0.0535436 8.48644e-07 2.20315e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was a problem with regard ||| 1 0.0535436 8.48644e-07 2.4794e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was a problem with ||| 1 0.0535436 8.48644e-07 3.64136e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was a reference in ||| 1 0.605812 8.48644e-07 5.47019e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was a successful one , in ||| 1 0.605812 8.48644e-07 1.75634e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| was a ||| 0.000235405 0.0015231 8.48644e-07 2.58159e-06 2.718 ||| 0-1 ||| 4248 1.17835e+06 +en ||| was actually in ||| 0.142857 0.605812 8.48644e-07 5.97223e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| was against ||| 0.0625 0.153982 4.24322e-06 1.8168e-05 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| was agreed in ||| 0.011236 0.605812 8.48644e-07 1.12992e-07 2.718 ||| 0-2 ||| 89 1.17835e+06 +en ||| was already being challenged by ||| 1 0.0468744 8.48644e-07 1.26451e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| was also included in ||| 0.125 0.605812 8.48644e-07 6.85856e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| was also involved in ||| 0.111111 0.605812 8.48644e-07 2.52576e-09 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| was also made in the ||| 1 0.605812 8.48644e-07 9.39335e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was also made in ||| 0.333333 0.605812 8.48644e-07 1.53007e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| was also on ||| 0.25 0.22993 8.48644e-07 1.3136e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| was an excellent day out in ||| 0.5 0.605812 8.48644e-07 2.36012e-16 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| was and is in ||| 0.333333 0.605812 8.48644e-07 5.67963e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| was apparent in ||| 0.111111 0.605812 8.48644e-07 5.15047e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| was appearing in the ||| 1 0.605812 8.48644e-07 8.97074e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was appearing in ||| 1 0.605812 8.48644e-07 1.46123e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was as a ||| 0.0909091 0.066968 8.48644e-07 2.49803e-06 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| was as early as ||| 1 0.066968 1.69729e-06 3.89329e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| was as early ||| 1 0.066968 1.69729e-06 3.81531e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| was as high as ||| 0.5 0.066968 8.48644e-07 8.58595e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| was as high ||| 0.5 0.066968 8.48644e-07 8.41396e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| was as ||| 0.045977 0.066968 3.39458e-06 5.63561e-05 2.718 ||| 0-1 ||| 87 1.17835e+06 +en ||| was assassinated in ||| 0.333333 0.605812 8.48644e-07 1.01273e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| was at issue in ||| 0.5 0.605812 8.48644e-07 4.58482e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| was at its peak ||| 0.2 0.321886 8.48644e-07 2.49973e-13 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| was at its ||| 0.0555556 0.321886 8.48644e-07 1.78552e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| was at the ||| 0.00869565 0.321886 8.48644e-07 7.69401e-06 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| was at ||| 0.111111 0.321886 2.3762e-05 0.000125326 2.718 ||| 0-1 ||| 252 1.17835e+06 +en ||| was attending ||| 0.333333 0.084022 8.48644e-07 1.30019e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| was available for ||| 0.166667 0.0286209 8.48644e-07 1.14662e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| was available in ||| 0.333333 0.605812 8.48644e-07 4.60214e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| was back in ||| 0.142857 0.605812 8.48644e-07 9.73091e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| was based on ||| 0.005 0.22993 8.48644e-07 6.10407e-08 2.718 ||| 0-2 ||| 200 1.17835e+06 +en ||| was becoming ||| 0.142857 0.163705 8.48644e-07 2.39612e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| was begun in the middle of ||| 1 0.605812 8.48644e-07 1.24722e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was begun in the middle ||| 1 0.605812 8.48644e-07 2.2942e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was begun in the ||| 0.333333 0.605812 8.48644e-07 1.11912e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| was begun in ||| 0.1 0.605812 8.48644e-07 1.82292e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| was brought home to me in ||| 1 0.605812 8.48644e-07 2.19982e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| was brought in at ||| 1 0.463849 8.48644e-07 1.62045e-08 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| was built by means of ||| 0.25 0.0468744 8.48644e-07 4.56345e-14 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| was built by means ||| 0.25 0.0468744 8.48644e-07 8.39425e-13 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| was built by ||| 0.111111 0.0468744 8.48644e-07 1.32464e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| was by ||| 0.0178571 0.0468744 8.48644e-07 2.66527e-05 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| was called in ||| 0.333333 0.605812 8.48644e-07 2.51447e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| was called into question ||| 0.04 0.525896 8.48644e-07 9.97236e-12 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| was called into ||| 0.0714286 0.525896 8.48644e-07 1.20541e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| was claimed by ||| 0.5 0.0468744 8.48644e-07 5.27724e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| was codified at ||| 1 0.321886 8.48644e-07 8.77284e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was collected in ||| 0.142857 0.605812 8.48644e-07 1.88079e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| was committed in ||| 0.285714 0.605812 1.69729e-06 1.19792e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| was continuing in ||| 0.5 0.605812 8.48644e-07 8.95545e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| was dealt with in ||| 0.181818 0.605812 1.69729e-06 9.68612e-10 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| was deducted from ||| 0.333333 0.0308834 8.48644e-07 3.81484e-11 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| was developing , ||| 0.333333 0.279045 8.48644e-07 1.7232e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| was developing ||| 0.0714286 0.279045 8.48644e-07 1.44497e-05 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| was discussed in ||| 0.0166667 0.605812 8.48644e-07 7.59549e-08 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| was done at ||| 0.0666667 0.321886 8.48644e-07 5.71488e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| was done in ||| 0.0666667 0.605812 3.39458e-06 6.59723e-07 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| was due in ||| 0.142857 0.605812 8.48644e-07 3.99885e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| was during ||| 0.0571429 0.226251 1.69729e-06 9.05844e-06 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| was enshrined in ||| 0.0833333 0.605812 8.48644e-07 2.14121e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| was enthusiastically received by ||| 1 0.0468744 8.48644e-07 7.64187e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was entirely consistent with ||| 1 0.0535436 8.48644e-07 6.69816e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was entitled , on ||| 1 0.22993 8.48644e-07 1.51732e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was essentially very ||| 1 0.105697 8.48644e-07 2.28491e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| was essentially ||| 0.04 0.105697 8.48644e-07 6.56677e-07 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| was established in ||| 0.0151515 0.605812 8.48644e-07 2.1658e-07 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| was ever faith in ||| 1 0.605812 8.48644e-07 4.02332e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was explained on ||| 1 0.22993 8.48644e-07 3.74675e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was expressed in ||| 0.117647 0.605812 1.69729e-06 1.40625e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| was finally ||| 0.0131579 0.0060298 8.48644e-07 3.79406e-07 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| was followed in ||| 0.142857 0.605812 8.48644e-07 1.03588e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| was for ||| 0.0041841 0.0286209 8.48644e-07 3.60458e-05 2.718 ||| 0-1 ||| 239 1.17835e+06 +en ||| was found at ||| 0.333333 0.321886 8.48644e-07 2.74214e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| was given ||| 0.00220751 0.0546585 8.48644e-07 3.6371e-06 2.718 ||| 0-1 ||| 453 1.17835e+06 +en ||| was handled after ||| 1 0.0144723 8.48644e-07 1.70457e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was held at ||| 0.0714286 0.321886 8.48644e-07 3.19707e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| was held in ||| 0.0232558 0.605812 2.54593e-06 3.69069e-07 2.718 ||| 0-2 ||| 129 1.17835e+06 +en ||| was here at ||| 0.25 0.321886 8.48644e-07 2.54137e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| was here in ||| 0.0526316 0.605812 8.48644e-07 2.93374e-06 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| was identified in ||| 0.25 0.605812 8.48644e-07 5.57003e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| was important to us ||| 0.25 0.0247351 8.48644e-07 9.73638e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| was important to ||| 0.03125 0.0247351 8.48644e-07 3.37811e-08 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| was impossible at ||| 1 0.321886 8.48644e-07 6.71749e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was in excess of the amount originally ||| 1 0.605812 8.48644e-07 1.19265e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| was in excess of the amount ||| 1 0.605812 8.48644e-07 1.26877e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| was in excess of the ||| 1 0.605812 8.48644e-07 5.21485e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| was in excess of ||| 1 0.605812 8.48644e-07 8.49438e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| was in excess ||| 0.333333 0.605812 8.48644e-07 1.5625e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| was in fact ||| 0.00775194 0.605812 8.48644e-07 4.23799e-06 2.718 ||| 0-1 ||| 129 1.17835e+06 +en ||| was in in ||| 0.5 0.605812 8.48644e-07 0.000668087 2.718 ||| 0-1 0-2 ||| 2 1.17835e+06 +en ||| was in place ||| 0.0666667 0.605812 8.48644e-07 2.17737e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| was in the public domain , but ||| 1 0.605812 8.48644e-07 1.84823e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| was in the public domain , ||| 1 0.605812 8.48644e-07 2.70446e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| was in the public domain ||| 1 0.605812 8.48644e-07 2.2678e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| was in the public ||| 1 0.605812 8.48644e-07 1.43532e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| was in the ||| 0.0142857 0.605812 2.54593e-06 8.88192e-05 2.718 ||| 0-1 ||| 210 1.17835e+06 +en ||| was in ||| 0.10837 0.605812 0.000104383 0.00144676 2.718 ||| 0-1 ||| 1135 1.17835e+06 +en ||| was incorporated in ||| 0.142857 0.605812 8.48644e-07 2.92246e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| was incurred when ||| 1 0.142731 8.48644e-07 1.75326e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was initiated ||| 0.0238095 0.0459482 8.48644e-07 1.17174e-07 2.718 ||| 0-1 ||| 42 1.17835e+06 +en ||| was instead ||| 0.125 0.340662 8.48644e-07 1.05698e-05 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| was involved in ||| 0.0410959 0.605812 2.54593e-06 5.0029e-07 2.718 ||| 0-2 ||| 73 1.17835e+06 +en ||| was it in ||| 0.2 0.605812 8.48644e-07 2.5728e-05 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| was it on ||| 1 0.22993 8.48644e-07 4.62702e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was known about ||| 1 0.0401564 8.48644e-07 9.88642e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was lost from ||| 1 0.0308834 8.48644e-07 6.78326e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was made at ||| 0.12 0.321886 2.54593e-06 2.62533e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| was made in ||| 0.0142857 0.605812 8.48644e-07 3.03067e-06 2.718 ||| 0-2 ||| 70 1.17835e+06 +en ||| was made up by Parliament anyway ||| 1 0.0468744 8.48644e-07 3.89103e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was made up by Parliament ||| 1 0.0468744 8.48644e-07 1.09299e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was made up by ||| 1 0.0468744 8.48644e-07 1.90416e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was made up in ||| 1 0.605812 8.48644e-07 1.03361e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was mainly because , in ||| 1 0.605812 8.48644e-07 2.65329e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| was mentioned , here and ||| 1 0.0855319 8.48644e-07 1.24258e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was mentioned , here ||| 1 0.0855319 8.48644e-07 9.92007e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was my view in ||| 1 0.605812 8.48644e-07 8.40441e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was necessary in ||| 0.125 0.605812 8.48644e-07 3.72251e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| was not easy in ||| 0.5 0.605812 8.48644e-07 1.86709e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| was not genuinely competitive ||| 1 0.0008293 8.48644e-07 3.71856e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| was not genuinely ||| 1 0.0008293 8.48644e-07 1.94689e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| was not ||| 0.000219877 0.0008293 8.48644e-07 5.69266e-07 2.718 ||| 0-1 ||| 4548 1.17835e+06 +en ||| was noted in ||| 0.125 0.605812 8.48644e-07 4.42709e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| was of ||| 0.00684932 0.0116562 8.48644e-07 4.27247e-05 2.718 ||| 0-1 ||| 146 1.17835e+06 +en ||| was often the ||| 0.25 0.0011669 8.48644e-07 1.17933e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| was on being ||| 1 0.22993 8.48644e-07 7.40451e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| was on that ||| 0.166667 0.22993 8.48644e-07 4.37682e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| was on ||| 0.0498339 0.22993 1.27297e-05 0.000260191 2.718 ||| 0-1 ||| 301 1.17835e+06 +en ||| was one of ||| 0.0017762 0.0116562 8.48644e-07 1.78077e-07 2.718 ||| 0-2 ||| 563 1.17835e+06 +en ||| was painted on ||| 1 0.22993 8.48644e-07 5.72419e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was partially responsible ||| 1 0.159236 8.48644e-07 3.94328e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| was partially ||| 0.333333 0.159236 8.48644e-07 2.66618e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| was perceived in ||| 1 0.605812 8.48644e-07 1.92419e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was planned according to ||| 1 0.0416907 8.48644e-07 1.27669e-12 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| was pointed out in ||| 0.111111 0.605812 8.48644e-07 2.55471e-10 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| was possible in ||| 0.25 0.605812 8.48644e-07 1.16045e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| was published on ||| 0.05 0.22993 8.48644e-07 5.80225e-09 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| was put on ||| 0.125 0.22993 2.54593e-06 2.86886e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| was quoted as saying in ||| 0.5 0.605812 8.48644e-07 3.1952e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| was recorded in ||| 0.111111 0.605812 8.48644e-07 3.02373e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| was removed in ||| 0.333333 0.605812 8.48644e-07 6.55382e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| was revealed in ||| 0.5 0.605812 8.48644e-07 2.08333e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| was right to say ||| 0.05 0.0071334 8.48644e-07 4.76297e-11 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| was right to ||| 0.00613497 0.0071334 8.48644e-07 4.98323e-08 2.718 ||| 0-1 ||| 163 1.17835e+06 +en ||| was right ||| 0.0025974 0.0071334 8.48644e-07 5.60807e-07 2.718 ||| 0-1 ||| 385 1.17835e+06 +en ||| was saying in ||| 0.25 0.605812 8.48644e-07 2.56655e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| was seriously ||| 0.0714286 0.276271 8.48644e-07 4.82012e-06 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| was set up in ||| 0.0147059 0.605812 8.48644e-07 2.88353e-09 2.718 ||| 0-3 ||| 68 1.17835e+06 +en ||| was shown on ||| 0.111111 0.22993 8.48644e-07 2.71639e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| was speaking in ||| 0.125 0.605812 8.48644e-07 1.66088e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| was speaking ||| 0.0377358 0.0538225 1.69729e-06 7.09938e-07 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| was started during ||| 0.5 0.226251 8.48644e-07 4.0763e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| was stolen from ||| 1 0.0308834 8.48644e-07 4.2917e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| was strongly emphasised ||| 0.25 0.152435 8.48644e-07 4.15546e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| was taken at ||| 0.0714286 0.321886 8.48644e-07 1.14235e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| was taken for ||| 0.2 0.0286209 8.48644e-07 3.28557e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| was taken in ||| 0.142857 0.605812 4.24322e-06 1.31872e-06 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| was taken ||| 0.00185529 0.0042106 8.48644e-07 2.7915e-07 2.718 ||| 0-1 ||| 539 1.17835e+06 +en ||| was taking place in ||| 1 0.605812 8.48644e-07 9.25384e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was that in ||| 0.111111 0.605812 8.48644e-07 2.43368e-05 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| was the case at ||| 0.0666667 0.321886 8.48644e-07 8.23182e-09 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| was the case in ||| 0.0666667 0.605812 4.24322e-06 9.50277e-08 2.718 ||| 0-3 ||| 75 1.17835e+06 +en ||| was the reply , ' this is ||| 1 0.0013296 8.48644e-07 3.39223e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| was the reply , ' this ||| 1 0.0013296 8.48644e-07 1.08236e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| was the subject ||| 0.00813008 0.0011669 8.48644e-07 4.84476e-09 2.718 ||| 0-1 ||| 123 1.17835e+06 +en ||| was the ||| 0.00022831 0.0011669 8.48644e-07 8.97511e-06 2.718 ||| 0-1 ||| 4380 1.17835e+06 +en ||| was to be done with ||| 0.5 0.0535436 8.48644e-07 2.6823e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| was to ||| 0.0056391 0.0247351 7.6378e-06 8.80633e-05 2.718 ||| 0-1 ||| 1596 1.17835e+06 +en ||| was turned into action by ||| 1 0.0468744 8.48644e-07 4.64073e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| was under ||| 0.038961 0.205566 2.54593e-06 1.77159e-05 2.718 ||| 0-1 ||| 77 1.17835e+06 +en ||| was unfortunately wrong during ||| 0.25 0.226251 8.48644e-07 3.1288e-14 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| was using to refer to ||| 1 0.0247351 8.48644e-07 4.74859e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| was very heartened in ||| 1 0.605812 8.48644e-07 7.0476e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| was what ||| 0.00892857 0.0035633 8.48644e-07 1.22375e-06 2.718 ||| 0-1 ||| 112 1.17835e+06 +en ||| was when ||| 0.0246914 0.142731 1.69729e-06 1.86517e-05 2.718 ||| 0-1 ||| 81 1.17835e+06 +en ||| was with ||| 0.0175439 0.0535436 1.69729e-06 3.65273e-05 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| was within ||| 0.0769231 0.369196 8.48644e-07 3.47346e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| was ||| 4.26379e-05 3.88e-05 2.54593e-06 3.4e-06 2.718 ||| 0-0 ||| 70360 1.17835e+06 +en ||| wash in ||| 1 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| washing in along ||| 1 0.605812 8.48644e-07 8.86389e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| washing in ||| 1 0.605812 8.48644e-07 5.07959e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| waste at ||| 0.0322581 0.321886 8.48644e-07 2.79214e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| waste in ||| 0.00961538 0.605812 8.48644e-07 3.22323e-05 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| waste to be ||| 0.0588235 0.0247351 8.48644e-07 3.55564e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| waste to ||| 0.0113636 0.0247351 8.48644e-07 1.96196e-06 2.718 ||| 0-1 ||| 88 1.17835e+06 +en ||| wasted in ||| 0.0833333 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| watch in ||| 0.333333 0.605812 8.48644e-07 8.31206e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| watching from ||| 0.2 0.0308834 8.48644e-07 4.10951e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| water in ||| 0.0105263 0.605812 8.48644e-07 2.62753e-05 2.718 ||| 0-1 ||| 95 1.17835e+06 +en ||| water on ||| 0.2 0.22993 2.54593e-06 4.72545e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| water pipeline in ||| 1 0.605812 8.48644e-07 3.78365e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| waterway vessels report in ||| 0.5 0.605812 8.48644e-07 5.99652e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| wave with ||| 0.125 0.0535436 8.48644e-07 1.09594e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| way , here in ||| 1 0.605812 8.48644e-07 2.40716e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| way , in ||| 0.0576923 0.605812 2.54593e-06 0.000118708 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| way , on ||| 0.0625 0.22993 8.48644e-07 2.13489e-05 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| way , within ||| 0.5 0.369196 8.48644e-07 2.85001e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| way Mr ||| 0.04 0.0001675 8.48644e-07 5.71234e-08 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| way again in ||| 1 0.605812 8.48644e-07 5.75649e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| way ahead in ||| 0.0833333 0.605812 8.48644e-07 1.085e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| way ahead ||| 0.00704225 0.0073829 8.48644e-07 5.583e-08 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| way and on ||| 1 0.22993 8.48644e-07 2.24238e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| way as to give ||| 0.142857 0.066968 8.48644e-07 2.08794e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| way as to ||| 0.00495049 0.066968 8.48644e-07 3.44545e-06 2.718 ||| 0-1 ||| 202 1.17835e+06 +en ||| way as ||| 0.00734394 0.066968 5.09187e-06 3.87747e-05 2.718 ||| 0-1 ||| 817 1.17835e+06 +en ||| way at ||| 0.140351 0.321886 6.78915e-06 8.62283e-05 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| way away on ||| 1 0.22993 8.48644e-07 5.6946e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| way back in history ||| 0.2 0.605812 8.48644e-07 2.41026e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| way back in ||| 0.266667 0.605812 3.39458e-06 6.69516e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| way by ||| 0.0102041 0.0468744 8.48644e-07 1.83379e-05 2.718 ||| 0-1 ||| 98 1.17835e+06 +en ||| way during ||| 0.142857 0.226251 8.48644e-07 6.23249e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| way even from ||| 0.111111 0.0308834 8.48644e-07 4.99108e-09 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| way for them to live in ||| 0.5 0.605812 8.48644e-07 1.8381e-13 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| way for us ||| 0.0294118 0.0286209 8.48644e-07 7.14803e-08 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| way for ||| 0.00300075 0.0286209 3.39458e-06 2.48006e-05 2.718 ||| 0-1 ||| 1333 1.17835e+06 +en ||| way forward in ||| 0.0652174 0.605812 2.54593e-06 5.53849e-07 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| way from fruition ||| 1 0.0308834 8.48644e-07 4.10114e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| way from ||| 0.00735294 0.0308834 8.48644e-07 8.20227e-06 2.718 ||| 0-1 ||| 136 1.17835e+06 +en ||| way grew in ||| 0.5 0.605812 8.48644e-07 3.5835e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| way in all ||| 0.1 0.605812 8.48644e-07 4.70374e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| way in the ||| 0.0176991 0.605812 1.69729e-06 6.11103e-05 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| way in which the use of these ||| 0.5 0.605812 8.48644e-07 1.423e-14 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| way in which the use of ||| 0.5 0.605812 8.48644e-07 1.37209e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| way in which the use ||| 0.5 0.605812 8.48644e-07 2.5239e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| way in which the ||| 0.00378072 0.605812 1.69729e-06 5.19108e-07 2.718 ||| 0-1 ||| 529 1.17835e+06 +en ||| way in which we ||| 0.0198676 0.605812 2.54593e-06 9.59911e-08 2.718 ||| 0-1 ||| 151 1.17835e+06 +en ||| way in which ||| 0.00640205 0.605812 1.69729e-05 8.45566e-06 2.718 ||| 0-1 ||| 3124 1.17835e+06 +en ||| way in ||| 0.0315121 0.605812 0.000105232 0.000995415 2.718 ||| 0-1 ||| 3935 1.17835e+06 +en ||| way into it ||| 0.333333 0.525896 8.48644e-07 8.48599e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| way into ||| 0.237179 0.525896 3.13998e-05 4.77192e-05 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| way involving ||| 1 0.0505311 8.48644e-07 4.60652e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| way it can in ||| 1 0.605812 8.48644e-07 5.26501e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| way it is is ||| 0.5 0.0080472 8.48644e-07 5.83949e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| way it is ||| 0.00833333 0.0080472 8.48644e-07 1.86321e-07 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| way it ||| 0.00250627 0.0080472 8.48644e-07 5.94493e-06 2.718 ||| 0-1 ||| 399 1.17835e+06 +en ||| way motivated by ||| 1 0.0468744 8.48644e-07 2.10886e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| way of apology on behalf ||| 0.5 0.22993 8.48644e-07 4.33959e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| way of apology on ||| 0.5 0.22993 8.48644e-07 1.36251e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| way of life in ||| 0.1 0.605812 8.48644e-07 8.19839e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| way of securing ||| 0.0714286 0.0116562 8.48644e-07 3.82147e-10 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| way of working ||| 0.0116279 0.0116562 8.48644e-07 5.59698e-09 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| way of ||| 0.00148994 0.0116562 5.09187e-06 2.93959e-05 2.718 ||| 0-1 ||| 4027 1.17835e+06 +en ||| way off ||| 0.0175439 0.0262428 8.48644e-07 3.60847e-07 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| way on ||| 0.0654206 0.22993 5.94051e-06 0.000179019 2.718 ||| 0-1 ||| 107 1.17835e+06 +en ||| way onto ||| 0.294118 0.233333 4.24322e-06 4.31336e-07 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| way round ||| 0.0263158 0.0142196 8.48644e-07 6.31591e-08 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| way so that a ||| 1 0.0087276 8.48644e-07 1.09472e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| way so that ||| 0.0344828 0.0087276 8.48644e-07 2.46971e-08 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| way so ||| 0.03125 0.0087276 8.48644e-07 1.46818e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| way through on ||| 0.5 0.22993 8.48644e-07 8.24025e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| way through ||| 0.0507246 0.0366102 5.94051e-06 2.02713e-06 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| way to eliminate misconceived ideas is to ||| 1 0.0247351 8.48644e-07 4.79496e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| way to go in ||| 0.0344828 0.605812 8.48644e-07 5.1726e-08 2.718 ||| 0-3 ||| 29 1.17835e+06 +en ||| way to ||| 0.0017439 0.0247351 5.94051e-06 6.05903e-05 2.718 ||| 0-1 ||| 4014 1.17835e+06 +en ||| way towards ||| 0.0180505 0.0616136 4.24322e-06 2.14741e-06 2.718 ||| 0-1 ||| 277 1.17835e+06 +en ||| way under ||| 0.142857 0.205566 8.48644e-07 1.21891e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| way were in ||| 0.5 0.605812 8.48644e-07 1.78319e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| way when it ||| 0.111111 0.142731 8.48644e-07 2.28211e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| way when ||| 0.03125 0.142731 8.48644e-07 1.28329e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| way with ||| 0.0175439 0.0535436 1.69729e-06 2.51319e-05 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| way within ||| 0.0625 0.369196 8.48644e-07 2.38985e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| way you look at ||| 0.142857 0.321886 8.48644e-07 8.11552e-11 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| ways at ||| 0.125 0.321886 8.48644e-07 3.85619e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| ways in which ||| 0.00222717 0.605812 8.48644e-07 3.78143e-07 2.718 ||| 0-1 ||| 449 1.17835e+06 +en ||| ways in ||| 0.0140598 0.605812 6.78915e-06 4.45157e-05 2.718 ||| 0-1 ||| 569 1.17835e+06 +en ||| ways of doing this , by means ||| 0.5 0.0116562 8.48644e-07 1.23718e-18 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ways of doing this , by ||| 0.5 0.0116562 8.48644e-07 1.95232e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| ways of doing this , ||| 0.2 0.0116562 8.48644e-07 3.71863e-13 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| ways of doing this ||| 0.0625 0.0116562 8.48644e-07 3.11822e-12 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| ways of doing ||| 0.0769231 0.0116562 1.69729e-06 4.82592e-10 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| ways of thinking at ||| 0.5 0.321886 8.48644e-07 1.55342e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| ways of ||| 0.00195695 0.0116562 2.54593e-06 1.31461e-06 2.718 ||| 0-1 ||| 1533 1.17835e+06 +en ||| ways to ||| 0.00167785 0.0247351 8.48644e-07 2.70964e-06 2.718 ||| 0-1 ||| 596 1.17835e+06 +en ||| we , as the ||| 0.00806452 0.066968 8.48644e-07 1.49503e-06 2.718 ||| 0-2 ||| 124 1.17835e+06 +en ||| we , as ||| 0.00769231 0.066968 3.39458e-06 2.43523e-05 2.718 ||| 0-2 ||| 520 1.17835e+06 +en ||| we , at ||| 0.266667 0.321886 3.39458e-06 5.41553e-05 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| we , especially in ||| 0.5 0.605812 8.48644e-07 5.02008e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we , for ||| 0.0212766 0.0286209 8.48644e-07 1.55759e-05 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| we , here in ||| 0.117647 0.605812 1.69729e-06 1.26771e-06 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| we , in ||| 0.360153 0.605812 7.97726e-05 0.000625166 2.718 ||| 0-2 ||| 261 1.17835e+06 +en ||| we , on ||| 0.121951 0.22993 4.24322e-06 0.000112432 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| we , ||| 0.0111163 0.0054082 2.03675e-05 0.000269981 2.718 ||| 0-0 ||| 2159 1.17835e+06 +en ||| we Finns should ||| 0.5 0.0054082 8.48644e-07 1.40439e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| we Finns ||| 0.0769231 0.0054082 8.48644e-07 3.16946e-09 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| we Members of Europe ||| 1 0.0116562 8.48644e-07 1.15543e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we Members of ||| 0.047619 0.0116562 8.48644e-07 2.28347e-08 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| we adopt at ||| 1 0.321886 8.48644e-07 4.72279e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we adopt in ||| 0.0833333 0.605812 8.48644e-07 5.45197e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| we adopt ||| 0.00253165 0.0054082 8.48644e-07 2.35446e-07 2.718 ||| 0-0 ||| 395 1.17835e+06 +en ||| we agree on ||| 0.0116279 0.22993 1.69729e-06 1.49998e-07 2.718 ||| 0-2 ||| 172 1.17835e+06 +en ||| we agree ||| 0.000680272 0.071674 8.48644e-07 1.44992e-05 2.718 ||| 0-1 ||| 1470 1.17835e+06 +en ||| we agreed in ||| 0.025641 0.605812 8.48644e-07 4.09422e-07 2.718 ||| 0-2 ||| 39 1.17835e+06 +en ||| we all need to understand ||| 0.5 0.0247351 8.48644e-07 1.07977e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we all need to ||| 0.0117647 0.0247351 8.48644e-07 1.38254e-09 2.718 ||| 0-3 ||| 85 1.17835e+06 +en ||| we already have in ||| 0.03125 0.605812 8.48644e-07 2.90348e-08 2.718 ||| 0-3 ||| 32 1.17835e+06 +en ||| we already have problems in ||| 0.5 0.605812 8.48644e-07 3.89647e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| we also have ||| 0.000831947 0.0054082 8.48644e-07 1.36695e-07 2.718 ||| 0-0 ||| 1202 1.17835e+06 +en ||| we also ||| 0.000572574 0.0054082 1.69729e-06 1.14295e-05 2.718 ||| 0-0 ||| 3493 1.17835e+06 +en ||| we apply in ||| 0.166667 0.605812 8.48644e-07 7.54364e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| we are , in ||| 0.244444 0.605812 9.33509e-06 9.48546e-06 2.718 ||| 0-3 ||| 45 1.17835e+06 +en ||| we are , on the ||| 0.2 0.22993 8.48644e-07 1.04728e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| we are , on ||| 0.285714 0.22993 1.69729e-06 1.7059e-06 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| we are , ||| 0.00173913 0.0054082 8.48644e-07 4.09634e-06 2.718 ||| 0-0 ||| 575 1.17835e+06 +en ||| we are able ||| 0.00184843 0.0054082 8.48644e-07 2.86784e-08 2.718 ||| 0-0 ||| 541 1.17835e+06 +en ||| we are about ||| 0.00763359 0.0401564 1.69729e-06 4.93672e-07 2.718 ||| 0-2 ||| 262 1.17835e+06 +en ||| we are actually , ||| 0.5 0.125341 8.48644e-07 2.75907e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we are actually ||| 0.0138889 0.125341 1.69729e-06 2.3136e-07 2.718 ||| 0-2 ||| 144 1.17835e+06 +en ||| we are again faced with ||| 0.2 0.0535436 8.48644e-07 7.35125e-14 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| we are all in ||| 0.00729927 0.605812 8.48644e-07 3.75856e-07 2.718 ||| 0-3 ||| 137 1.17835e+06 +en ||| we are at ||| 0.0201005 0.321886 6.78915e-06 6.89015e-06 2.718 ||| 0-2 ||| 398 1.17835e+06 +en ||| we are back to ||| 0.0526316 0.0247351 8.48644e-07 3.2564e-09 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| we are concentrating on ||| 0.0909091 0.22993 8.48644e-07 1.5449e-10 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| we are concerned in ||| 0.25 0.605812 8.48644e-07 1.27947e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| we are concerned with in ||| 0.333333 0.605812 8.48644e-07 8.18159e-10 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| we are concerned with standards ||| 1 0.0535436 8.48644e-07 2.3614e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we are concerned with ||| 0.010101 0.0535436 8.48644e-07 3.23037e-09 2.718 ||| 0-3 ||| 99 1.17835e+06 +en ||| we are confronted with ||| 0.016129 0.0535436 8.48644e-07 2.02827e-11 2.718 ||| 0-3 ||| 62 1.17835e+06 +en ||| we are doing at ||| 0.030303 0.321886 8.48644e-07 2.52937e-09 2.718 ||| 0-3 ||| 33 1.17835e+06 +en ||| we are doing to date in ||| 1 0.605812 8.48644e-07 2.65165e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| we are ever ||| 0.0769231 0.0054082 8.48644e-07 6.45427e-09 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| we are experiencing ||| 0.00682594 0.0261115 1.69729e-06 4.34058e-09 2.718 ||| 0-2 ||| 293 1.17835e+06 +en ||| we are extremely active ||| 0.5 0.0054082 8.48644e-07 1.31507e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| we are extremely ||| 0.0111111 0.0054082 8.48644e-07 3.2632e-09 2.718 ||| 0-0 ||| 90 1.17835e+06 +en ||| we are facing in ||| 0.0232558 0.605812 8.48644e-07 4.23946e-09 2.718 ||| 0-3 ||| 43 1.17835e+06 +en ||| we are getting at ||| 1 0.321886 8.48644e-07 8.00635e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we are going through it ||| 1 0.0366102 8.48644e-07 2.46514e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we are going through ||| 0.01 0.0366102 8.48644e-07 1.38622e-10 2.718 ||| 0-3 ||| 100 1.17835e+06 +en ||| we are going ||| 0.000539665 0.0054082 8.48644e-07 2.93963e-08 2.718 ||| 0-0 ||| 1853 1.17835e+06 +en ||| we are here ||| 0.00369004 0.0054082 8.48644e-07 6.96539e-08 2.718 ||| 0-0 ||| 271 1.17835e+06 +en ||| we are in fact ||| 0.0133333 0.605812 8.48644e-07 2.32995e-07 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| we are in the ||| 0.00299401 0.605812 8.48644e-07 4.88307e-06 2.718 ||| 0-2 ||| 334 1.17835e+06 +en ||| we are in ||| 0.0146444 0.605812 2.3762e-05 7.95395e-05 2.718 ||| 0-2 ||| 1912 1.17835e+06 +en ||| we are investing in ||| 0.0769231 0.605812 8.48644e-07 2.54526e-10 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| we are lacking in ||| 0.333333 0.605812 8.48644e-07 1.37603e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| we are making in ||| 0.0714286 0.605812 8.48644e-07 3.05988e-08 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| we are not in ||| 0.00578035 0.605812 8.48644e-07 2.71556e-07 2.718 ||| 0-3 ||| 173 1.17835e+06 +en ||| we are now already in ||| 0.5 0.605812 8.48644e-07 7.58759e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| we are now at ||| 0.0172414 0.321886 8.48644e-07 1.4193e-08 2.718 ||| 0-3 ||| 58 1.17835e+06 +en ||| we are now in ||| 0.0052356 0.605812 8.48644e-07 1.63843e-07 2.718 ||| 0-3 ||| 191 1.17835e+06 +en ||| we are now ||| 0.00373832 0.0123946 5.09187e-06 1.01969e-07 2.718 ||| 0-2 ||| 1605 1.17835e+06 +en ||| we are obviously in ||| 0.125 0.605812 8.48644e-07 5.26552e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| we are of ||| 0.0283019 0.0116562 2.54593e-06 2.34891e-06 2.718 ||| 0-2 ||| 106 1.17835e+06 +en ||| we are on that subject - and ||| 0.333333 0.22993 8.48644e-07 6.1372e-15 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| we are on that subject - ||| 0.333333 0.22993 8.48644e-07 4.89961e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| we are on that subject ||| 0.25 0.22993 8.48644e-07 1.29891e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| we are on that ||| 0.2 0.22993 8.48644e-07 2.40628e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| we are on the ||| 0.00638978 0.22993 1.69729e-06 8.7819e-07 2.718 ||| 0-2 ||| 313 1.17835e+06 +en ||| we are on ||| 0.0138249 0.22993 5.09187e-06 1.43047e-05 2.718 ||| 0-2 ||| 434 1.17835e+06 +en ||| we are participating in ||| 0.2 0.605812 8.48644e-07 9.14704e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| we are promised ||| 0.0833333 0.0054082 8.48644e-07 3.09145e-10 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| we are proposing to deliver " EC ||| 1 0.0247351 8.48644e-07 1.86121e-23 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we are proposing to deliver " ||| 1 0.0247351 8.48644e-07 9.95297e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we are proposing to deliver ||| 1 0.0247351 8.48644e-07 4.20311e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we are proposing to ||| 0.0185185 0.0247351 8.48644e-07 1.13291e-10 2.718 ||| 0-3 ||| 54 1.17835e+06 +en ||| we are proud , in ||| 1 0.605812 8.48644e-07 5.50157e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| we are putting together in ||| 1 0.605812 8.48644e-07 5.34562e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| we are right at ||| 0.5 0.321886 8.48644e-07 4.44346e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we are running ||| 0.0149254 0.0322154 8.48644e-07 8.56058e-09 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| we are seeing in ||| 0.0294118 0.605812 8.48644e-07 4.23946e-09 2.718 ||| 0-3 ||| 34 1.17835e+06 +en ||| we are setting ||| 0.0153846 0.0054082 8.48644e-07 3.2632e-09 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| we are soon going to see signs ||| 1 0.0178344 8.48644e-07 1.63507e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we are soon going to see ||| 1 0.0178344 8.48644e-07 1.05489e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we are soon going to ||| 1 0.0178344 8.48644e-07 1.49714e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we are soon going ||| 1 0.0178344 8.48644e-07 1.68487e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we are soon ||| 0.25 0.0178344 8.48644e-07 1.96876e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| we are speaking at ||| 1 0.321886 8.48644e-07 7.90989e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we are tabling ||| 0.0208333 0.0054082 8.48644e-07 2.61056e-10 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| we are taking on ||| 0.0769231 0.22993 8.48644e-07 6.07949e-09 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| we are taking to ||| 0.0666667 0.0200342 8.48644e-07 8.33709e-10 2.718 ||| 0-2 0-3 ||| 15 1.17835e+06 +en ||| we are taking ||| 0.00289017 0.0153333 8.48644e-07 2.96606e-08 2.718 ||| 0-2 ||| 346 1.17835e+06 +en ||| we are talking about a ||| 0.00353357 0.0401564 8.48644e-07 2.39393e-12 2.718 ||| 0-3 ||| 283 1.17835e+06 +en ||| we are talking about ||| 0.000455373 0.0401564 8.48644e-07 5.40077e-11 2.718 ||| 0-3 ||| 2196 1.17835e+06 +en ||| we are talking here ||| 0.00917431 0.0855319 8.48644e-07 5.65327e-11 2.718 ||| 0-3 ||| 109 1.17835e+06 +en ||| we are talking ||| 0.00208333 0.0054082 8.48644e-07 3.75783e-09 2.718 ||| 0-0 ||| 480 1.17835e+06 +en ||| we are therefore focusing on ||| 1 0.22993 8.48644e-07 2.41653e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| we are to adhere ||| 1 0.0247351 8.48644e-07 4.88993e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we are to ||| 0.00144509 0.0247351 2.54593e-06 4.84152e-06 2.718 ||| 0-2 ||| 2076 1.17835e+06 +en ||| we are under ||| 0.04 0.205566 8.48644e-07 9.73977e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| we are very good at ||| 0.25 0.321886 8.48644e-07 1.24331e-11 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| we are viewing the ||| 1 0.0054082 8.48644e-07 2.31965e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| we are viewing ||| 1 0.0054082 8.48644e-07 3.77844e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| we are well into ||| 1 0.525896 8.48644e-07 6.04596e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we are ||| 0.00143948 0.0054082 6.11024e-05 3.43495e-05 2.718 ||| 0-0 ||| 50018 1.17835e+06 +en ||| we as ||| 0.0208333 0.066968 8.48644e-06 0.000204204 2.718 ||| 0-1 ||| 480 1.17835e+06 +en ||| we at the ||| 0.0344828 0.321886 8.48644e-07 2.78789e-05 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| we at ||| 0.122222 0.321886 9.33509e-06 0.000454115 2.718 ||| 0-1 ||| 90 1.17835e+06 +en ||| we be sure that politics in our ||| 1 0.605812 8.48644e-07 3.45618e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| we be sure that politics in ||| 1 0.605812 8.48644e-07 2.50556e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| we believe , in ||| 0.125 0.605812 8.48644e-07 1.94614e-07 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| we believe in ||| 0.00588235 0.0054082 8.48644e-07 1.50849e-08 2.718 ||| 0-0 ||| 170 1.17835e+06 +en ||| we believe ||| 0.000187864 0.0054082 8.48644e-07 7.04752e-07 2.718 ||| 0-0 ||| 5323 1.17835e+06 +en ||| we by ||| 0.5 0.0468744 8.48644e-07 9.65752e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| we call for an ||| 0.0344828 0.0286209 8.48644e-07 1.28876e-10 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| we call for in ||| 0.25 0.605812 8.48644e-07 8.94451e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| we call for ||| 0.0023753 0.0286209 8.48644e-07 2.89955e-08 2.718 ||| 0-2 ||| 421 1.17835e+06 +en ||| we call in ||| 0.272727 0.605812 2.54593e-06 1.16379e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| we call it in ||| 0.125 0.605812 8.48644e-07 2.06958e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| we call on ||| 0.00189753 0.22993 8.48644e-07 2.09299e-07 2.718 ||| 0-2 ||| 527 1.17835e+06 +en ||| we called in ||| 0.666667 0.605812 1.69729e-06 9.11108e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| we can afford the ||| 1 0.00328755 8.48644e-07 5.42035e-13 2.718 ||| 0-0 0-3 ||| 1 1.17835e+06 +en ||| we can assist , ||| 0.25 0.0054082 8.48644e-07 1.50162e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| we can assist ||| 0.0625 0.0054082 8.48644e-07 1.25917e-10 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| we can at ||| 0.1 0.321886 2.54593e-06 1.35067e-06 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| we can deal with ||| 0.0151515 0.0535436 8.48644e-07 1.6715e-10 2.718 ||| 0-3 ||| 66 1.17835e+06 +en ||| we can do in ||| 0.025641 0.605812 8.48644e-07 5.35636e-08 2.718 ||| 0-3 ||| 39 1.17835e+06 +en ||| we can do so ||| 0.02 0.0087276 8.48644e-07 7.90031e-11 2.718 ||| 0-3 ||| 50 1.17835e+06 +en ||| we can draw upon ||| 1 0.114601 8.48644e-07 3.53365e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we can get it out in ||| 0.5 0.605812 8.48644e-07 4.64343e-13 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| we can give ||| 0.00531915 0.0054082 8.48644e-07 4.08051e-09 2.718 ||| 0-0 ||| 188 1.17835e+06 +en ||| we can have ||| 0.00243902 0.0054082 8.48644e-07 8.05315e-08 2.718 ||| 0-0 ||| 410 1.17835e+06 +en ||| we can in ||| 0.075 0.605812 2.54593e-06 1.55921e-05 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| we can insist on ||| 0.25 0.22993 8.48644e-07 5.94478e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| we can see this taking place in ||| 1 0.605812 8.48644e-07 4.54046e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| we can take at ||| 0.2 0.321886 8.48644e-07 2.17458e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| we can take in the ||| 0.333333 0.605812 8.48644e-07 1.54114e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| we can take in ||| 0.25 0.605812 8.48644e-07 2.51033e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| we can take on ||| 0.142857 0.22993 8.48644e-07 4.51467e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| we can take ||| 0.00280112 0.0074151 8.48644e-07 9.87968e-09 2.718 ||| 0-2 ||| 357 1.17835e+06 +en ||| we can ||| 0.00052682 0.0054082 9.33509e-06 6.73352e-06 2.718 ||| 0-0 ||| 20880 1.17835e+06 +en ||| we cannot ||| 9.68992e-05 0.0054082 8.48644e-07 5.10057e-07 2.718 ||| 0-0 ||| 10320 1.17835e+06 +en ||| we carry out our business in ||| 1 0.605812 8.48644e-07 6.34823e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| we come up against ||| 0.0384615 0.153982 8.48644e-07 1.90682e-10 2.718 ||| 0-3 ||| 26 1.17835e+06 +en ||| we conduct in ||| 1 0.605812 8.48644e-07 3.15061e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we consider in ||| 0.333333 0.605812 8.48644e-07 8.34046e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| we could accept them in ||| 0.25 0.605812 8.48644e-07 1.08294e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| we could cite ||| 0.166667 0.0054082 8.48644e-07 7.56634e-12 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| we could fall into ||| 1 0.525896 8.48644e-07 1.71022e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we could ||| 0.000259673 0.0054082 8.48644e-07 1.60986e-06 2.718 ||| 0-0 ||| 3851 1.17835e+06 +en ||| we deal in ||| 0.2 0.605812 8.48644e-07 2.22587e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| we decide on ||| 0.0238095 0.22993 8.48644e-07 6.04329e-08 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| we demanded in ||| 0.5 0.605812 8.48644e-07 4.71805e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we did , in ||| 1 0.605812 8.48644e-07 2.83951e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we did at ||| 0.111111 0.321886 1.69729e-06 2.06259e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| we did in ||| 0.0803571 0.605812 7.6378e-06 2.38104e-06 2.718 ||| 0-2 ||| 112 1.17835e+06 +en ||| we did so in ||| 0.0909091 0.605812 8.48644e-07 5.40425e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| we did so ||| 0.0114943 0.0087276 8.48644e-07 3.5119e-09 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| we did with ||| 0.0204082 0.0535436 8.48644e-07 6.01158e-08 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| we did ||| 0.00222387 0.0054082 2.54593e-06 1.02826e-06 2.718 ||| 0-0 ||| 1349 1.17835e+06 +en ||| we differ on ||| 0.333333 0.22993 8.48644e-07 5.09107e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| we do , in ||| 0.333333 0.605812 1.69729e-06 2.14763e-06 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| we do at ||| 0.047619 0.321886 8.48644e-07 1.56002e-06 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| we do believe in ||| 0.142857 0.605812 8.48644e-07 5.60614e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| we do decide on ||| 0.5 0.22993 8.48644e-07 2.07605e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we do have in ||| 0.5 0.605812 8.48644e-07 2.15382e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we do here is important enough ||| 1 0.0855319 8.48644e-07 2.32374e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we do here is important ||| 1 0.0855319 8.48644e-07 1.40662e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we do here is ||| 0.333333 0.0855319 8.48644e-07 3.6669e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| we do here ||| 0.0322581 0.0855319 8.48644e-07 1.17e-07 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| we do in ||| 0.0426829 0.605812 5.94051e-06 1.80088e-05 2.718 ||| 0-2 ||| 164 1.17835e+06 +en ||| we do not and ||| 0.25 0.0054082 8.48644e-07 3.32588e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| we do not have a situation in ||| 1 0.605812 8.48644e-07 1.67861e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| we do not in ||| 0.25 0.605812 8.48644e-07 6.14838e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| we do not invest in ||| 0.111111 0.605812 8.48644e-07 5.77948e-13 2.718 ||| 0-4 ||| 9 1.17835e+06 +en ||| we do not want a fortress Europe ||| 1 0.0054082 8.48644e-07 1.94888e-22 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| we do not want a fortress ||| 1 0.0054082 8.48644e-07 3.85154e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| we do not want a ||| 0.0075188 0.0054082 8.48644e-07 5.5022e-13 2.718 ||| 0-0 ||| 133 1.17835e+06 +en ||| we do not want ||| 0.00088968 0.0054082 8.48644e-07 1.24131e-11 2.718 ||| 0-0 ||| 1124 1.17835e+06 +en ||| we do not ||| 0.000527704 0.0054082 1.69729e-06 2.65521e-08 2.718 ||| 0-0 ||| 3790 1.17835e+06 +en ||| we do on ||| 0.0357143 0.22993 8.48644e-07 3.23877e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| we do with regard to ||| 0.5 0.0247351 8.48644e-07 4.7728e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| we do with ||| 0.0151515 0.0535436 8.48644e-07 4.5468e-07 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| we do ||| 0.00197368 0.0054082 5.09187e-06 7.77718e-06 2.718 ||| 0-0 ||| 3040 1.17835e+06 +en ||| we end up in ||| 0.142857 0.605812 8.48644e-07 7.77906e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| we engage in ||| 0.0454545 0.605812 8.48644e-07 2.54775e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| we enter , in ||| 1 0.605812 8.48644e-07 3.08207e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we enter into ||| 0.0645161 0.525896 1.69729e-06 1.23895e-08 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| we eventually come to ||| 0.5 0.0247351 8.48644e-07 7.50688e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we expect - ||| 0.333333 0.0054082 8.48644e-07 4.55164e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| we expect the investigation at ||| 0.25 0.321886 8.48644e-07 2.73414e-14 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| we expect ||| 0.00068918 0.0054082 8.48644e-07 1.20666e-07 2.718 ||| 0-0 ||| 1451 1.17835e+06 +en ||| we experience during ||| 0.25 0.226251 8.48644e-07 2.26806e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| we expressed the ||| 0.142857 0.0011669 8.48644e-07 3.16103e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| we face in ||| 0.00925926 0.605812 8.48644e-07 8.77033e-07 2.718 ||| 0-2 ||| 108 1.17835e+06 +en ||| we face ||| 0.00104167 0.0054082 8.48644e-07 3.7875e-07 2.718 ||| 0-0 ||| 960 1.17835e+06 +en ||| we fail ||| 0.00327869 0.0054082 8.48644e-07 1.22251e-07 2.718 ||| 0-0 ||| 305 1.17835e+06 +en ||| we failed at ||| 0.5 0.321886 8.48644e-07 2.10709e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we feel in ||| 0.5 0.605812 8.48644e-07 8.86469e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we find in ||| 0.0344828 0.605812 8.48644e-07 1.74515e-06 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| we find ourselves in ||| 0.010101 0.605812 8.48644e-07 5.55134e-10 2.718 ||| 0-3 ||| 99 1.17835e+06 +en ||| we first ||| 0.015873 0.138055 8.48644e-07 6.93841e-05 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| we focus competition on ||| 0.5 0.22993 8.48644e-07 2.64888e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we found ||| 0.00518135 0.0054082 8.48644e-07 4.95341e-07 2.718 ||| 0-0 ||| 193 1.17835e+06 +en ||| we get to ||| 0.0196078 0.0247351 8.48644e-07 1.39508e-07 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| we get ||| 0.00160256 0.0054082 8.48644e-07 9.89777e-07 2.718 ||| 0-0 ||| 624 1.17835e+06 +en ||| we give ||| 0.0021692 0.0054082 8.48644e-07 1.37192e-06 2.718 ||| 0-0 ||| 461 1.17835e+06 +en ||| we go into it ||| 1 0.525896 8.48644e-07 2.61352e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we go into ||| 0.0666667 0.525896 1.69729e-06 1.46966e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| we go on ||| 0.0294118 0.22993 8.48644e-07 5.51344e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| we going to be able to ||| 0.2 0.0247351 8.48644e-07 3.67156e-13 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| we going to be able ||| 0.166667 0.0247351 8.48644e-07 4.13193e-12 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| we going to be ||| 0.142857 0.0247351 8.48644e-07 4.94901e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| we going to ||| 0.00675676 0.0247351 8.48644e-07 2.73081e-07 2.718 ||| 0-2 ||| 148 1.17835e+06 +en ||| we had first discussed some of the ||| 1 0.138055 8.48644e-07 1.32921e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we had first discussed some of ||| 1 0.138055 8.48644e-07 2.16512e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we had first discussed some ||| 1 0.138055 8.48644e-07 3.98264e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we had first discussed ||| 1 0.138055 8.48644e-07 3.65614e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we had first ||| 1 0.138055 8.48644e-07 6.96408e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we had forest fires in ||| 1 0.605812 8.48644e-07 3.33801e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| we had in ||| 0.0173913 0.605812 1.69729e-06 5.26167e-06 2.718 ||| 0-2 ||| 115 1.17835e+06 +en ||| we had to structure the debate in ||| 1 0.605812 8.48644e-07 1.69843e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| we had with ||| 0.0196078 0.0535436 8.48644e-07 1.32845e-07 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| we had ||| 0.000248386 0.0054082 8.48644e-07 2.27228e-06 2.718 ||| 0-0 ||| 4026 1.17835e+06 +en ||| we have , for example , in ||| 0.5 0.605812 8.48644e-07 1.9949e-12 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| we have , in a ||| 1 0.605812 8.48644e-07 3.31418e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we have , in ||| 0.184211 0.605812 5.94051e-06 7.47686e-06 2.718 ||| 0-3 ||| 38 1.17835e+06 +en ||| we have , ||| 0.00191939 0.0054082 8.48644e-07 3.22892e-06 2.718 ||| 0-0 ||| 521 1.17835e+06 +en ||| we have acted in ||| 0.1 0.605812 8.48644e-07 1.21631e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| we have adopted ||| 0.00266667 0.0054082 8.48644e-07 5.52346e-09 2.718 ||| 0-0 ||| 375 1.17835e+06 +en ||| we have also , ||| 0.0769231 0.0054082 8.48644e-07 1.63015e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| we have also noted Parliament 's view ||| 0.25 0.0054082 8.48644e-07 4.13024e-21 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| we have also noted Parliament 's ||| 0.25 0.0054082 8.48644e-07 4.57239e-18 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| we have also noted Parliament ||| 0.25 0.0054082 8.48644e-07 2.40096e-15 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| we have also noted ||| 0.0454545 0.0054082 8.48644e-07 4.18286e-12 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| we have also ||| 0.00173461 0.0054082 1.69729e-06 1.36695e-07 2.718 ||| 0-0 ||| 1153 1.17835e+06 +en ||| we have always been ||| 0.0178571 0.0054082 8.48644e-07 1.55508e-11 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| we have always ||| 0.00207469 0.0054082 8.48644e-07 4.65704e-09 2.718 ||| 0-0 ||| 482 1.17835e+06 +en ||| we have at ||| 0.0273224 0.321886 4.24322e-06 5.43112e-06 2.718 ||| 0-2 ||| 183 1.17835e+06 +en ||| we have been at ||| 0.166667 0.321886 8.48644e-07 1.81356e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| we have been on ||| 0.166667 0.22993 8.48644e-07 3.76514e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| we have been ||| 0.000417014 0.0054082 8.48644e-07 9.04115e-08 2.718 ||| 0-0 ||| 2398 1.17835e+06 +en ||| we have before us ||| 0.00323625 0.0175291 8.48644e-07 1.33401e-10 2.718 ||| 0-2 ||| 309 1.17835e+06 +en ||| we have before ||| 0.00429185 0.0175291 8.48644e-07 4.62844e-08 2.718 ||| 0-2 ||| 233 1.17835e+06 +en ||| we have conducted in ||| 1 0.605812 8.48644e-07 3.79314e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we have done in ||| 0.0510204 0.605812 4.24322e-06 2.85896e-08 2.718 ||| 0-3 ||| 98 1.17835e+06 +en ||| we have done something ||| 0.1 0.0054082 8.48644e-07 6.83382e-12 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| we have done ||| 0.00104712 0.0054082 8.48644e-07 1.23466e-08 2.718 ||| 0-0 ||| 955 1.17835e+06 +en ||| we have for ||| 0.00970874 0.0286209 8.48644e-07 1.56208e-06 2.718 ||| 0-2 ||| 103 1.17835e+06 +en ||| we have gained ||| 0.010989 0.0054082 8.48644e-07 8.58303e-10 2.718 ||| 0-0 ||| 91 1.17835e+06 +en ||| we have given in ||| 0.142857 0.605812 8.48644e-07 4.30287e-08 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| we have got on to ||| 0.333333 0.22993 8.48644e-07 1.09611e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| we have got on ||| 0.2 0.22993 8.48644e-07 1.23355e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| we have had in ||| 0.0238095 0.605812 1.69729e-06 6.29286e-08 2.718 ||| 0-3 ||| 84 1.17835e+06 +en ||| we have had on ||| 0.0526316 0.22993 1.69729e-06 1.13173e-08 2.718 ||| 0-3 ||| 38 1.17835e+06 +en ||| we have had with ||| 0.0169492 0.0535436 8.48644e-07 1.5888e-09 2.718 ||| 0-3 ||| 59 1.17835e+06 +en ||| we have had ||| 0.000486145 0.0054082 8.48644e-07 2.7176e-08 2.718 ||| 0-0 ||| 2057 1.17835e+06 +en ||| we have heard in ||| 0.0232558 0.605812 8.48644e-07 4.96557e-09 2.718 ||| 0-3 ||| 43 1.17835e+06 +en ||| we have here in ||| 0.0769231 0.605812 8.48644e-07 1.27136e-07 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| we have in place ||| 0.0416667 0.605812 8.48644e-07 9.43584e-08 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| we have in you ||| 0.5 0.605812 8.48644e-07 2.02428e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we have in ||| 0.0710383 0.605812 3.30971e-05 6.26966e-05 2.718 ||| 0-2 ||| 549 1.17835e+06 +en ||| we have included in ||| 0.0714286 0.605812 8.48644e-07 5.88721e-09 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| we have is ||| 0.00740741 0.0054082 8.48644e-07 8.48585e-07 2.718 ||| 0-0 ||| 135 1.17835e+06 +en ||| we have just witnessed ||| 0.0555556 0.0054082 8.48644e-07 5.29504e-13 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| we have just ||| 0.000729395 0.0054082 8.48644e-07 3.41615e-08 2.718 ||| 0-0 ||| 1371 1.17835e+06 +en ||| we have made during ||| 0.5 0.226251 8.48644e-07 8.22325e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we have made in ||| 0.0227273 0.605812 8.48644e-07 1.31337e-07 2.718 ||| 0-3 ||| 44 1.17835e+06 +en ||| we have many ||| 0.00847458 0.0054082 8.48644e-07 9.29512e-09 2.718 ||| 0-0 ||| 118 1.17835e+06 +en ||| we have now ||| 0.0019305 0.0123946 8.48644e-07 8.03766e-08 2.718 ||| 0-2 ||| 518 1.17835e+06 +en ||| we have on ||| 0.0512821 0.22993 3.39458e-06 1.12756e-05 2.718 ||| 0-2 ||| 78 1.17835e+06 +en ||| we have over ||| 0.0344828 0.157937 8.48644e-07 5.44063e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| we have put forward with ||| 0.5 0.0535436 8.48644e-07 9.71115e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| we have put in ||| 0.0555556 0.605812 8.48644e-07 6.91293e-08 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| we have reached ||| 0.00356506 0.0054082 1.69729e-06 2.92419e-09 2.718 ||| 0-0 ||| 561 1.17835e+06 +en ||| we have said ||| 0.0034965 0.0054082 8.48644e-07 1.11363e-08 2.718 ||| 0-0 ||| 286 1.17835e+06 +en ||| we have seen during Euro 2000 ||| 0.25 0.226251 8.48644e-07 2.23704e-20 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| we have seen during Euro ||| 0.25 0.226251 8.48644e-07 7.76749e-16 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| we have seen during ||| 0.0769231 0.226251 8.48644e-07 8.26329e-11 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| we have seen in ||| 0.00952381 0.605812 1.69729e-06 1.31976e-08 2.718 ||| 0-3 ||| 210 1.17835e+06 +en ||| we have seen ||| 0.00229568 0.0054082 4.24322e-06 5.69945e-09 2.718 ||| 0-0 ||| 2178 1.17835e+06 +en ||| we have some situations in ||| 0.5 0.605812 8.48644e-07 2.3357e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| we have taken ||| 0.00152905 0.0054082 8.48644e-07 2.46796e-08 2.718 ||| 0-0 ||| 654 1.17835e+06 +en ||| we have therefore ||| 0.00202429 0.0081305 8.48644e-07 1.1789e-07 2.718 ||| 0-2 ||| 494 1.17835e+06 +en ||| we have this time schedule on ||| 1 0.22993 8.48644e-07 4.30588e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| we have to achieve in ||| 1 0.605812 8.48644e-07 1.273e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| we have to be ||| 0.0014556 0.0247351 8.48644e-07 6.91624e-08 2.718 ||| 0-2 ||| 687 1.17835e+06 +en ||| we have to deal with ||| 0.00854701 0.0535436 8.48644e-07 5.97232e-11 2.718 ||| 0-4 ||| 117 1.17835e+06 +en ||| we have to put ||| 0.0166667 0.0247351 8.48644e-07 4.20785e-09 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| we have to ||| 0.00100514 0.0247351 7.6378e-06 3.8163e-06 2.718 ||| 0-2 ||| 8954 1.17835e+06 +en ||| we have today ||| 0.00465116 0.0398284 8.48644e-07 1.63794e-07 2.718 ||| 0-2 ||| 215 1.17835e+06 +en ||| we have tried to ||| 0.00401606 0.0247351 8.48644e-07 1.5227e-10 2.718 ||| 0-3 ||| 249 1.17835e+06 +en ||| we have with ||| 0.0143885 0.0535436 1.69729e-06 1.58294e-06 2.718 ||| 0-2 ||| 139 1.17835e+06 +en ||| we have within ||| 0.0434783 0.369196 8.48644e-07 1.50525e-06 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| we have ||| 0.000845551 0.0054082 5.007e-05 2.70758e-05 2.718 ||| 0-0 ||| 69777 1.17835e+06 +en ||| we here in ||| 0.15942 0.605812 9.33509e-06 1.06303e-05 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| we honoured ||| 0.0833333 0.0054082 8.48644e-07 2.19598e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| we hope to ||| 0.0037037 0.0054082 8.48644e-07 3.52644e-08 2.718 ||| 0-0 ||| 270 1.17835e+06 +en ||| we hope ||| 0.000903887 0.0054082 2.54593e-06 3.96862e-07 2.718 ||| 0-0 ||| 3319 1.17835e+06 +en ||| we improved matters in ||| 1 0.605812 8.48644e-07 2.20149e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we in Europe ||| 0.00240385 0.605812 8.48644e-07 2.65259e-06 2.718 ||| 0-1 ||| 416 1.17835e+06 +en ||| we in Sweden will ||| 0.5 0.605812 8.48644e-07 7.84589e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| we in Sweden ||| 0.0909091 0.605812 8.48644e-07 9.06914e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| we in the Commission have , in ||| 1 0.605812 8.48644e-07 5.73881e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| we in the Commission have , ||| 1 0.605812 8.48644e-07 2.68112e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| we in the Commission have ||| 0.0666667 0.605812 8.48644e-07 2.24823e-09 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| we in the Commission ||| 0.00961538 0.605812 8.48644e-07 1.87983e-07 2.718 ||| 0-1 ||| 104 1.17835e+06 +en ||| we in the ||| 0.00117786 0.605812 1.69729e-06 0.000321833 2.718 ||| 0-1 ||| 1698 1.17835e+06 +en ||| we in ||| 0.454836 0.605812 0.00120932 0.00524228 2.718 ||| 0-1 ||| 3133 1.17835e+06 +en ||| we insist ||| 0.00448431 0.221585 8.48644e-07 5.07561e-06 2.718 ||| 0-1 ||| 223 1.17835e+06 +en ||| we joined in ||| 0.5 0.605812 8.48644e-07 6.60527e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we know at ||| 0.333333 0.321886 8.48644e-07 1.17162e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| we laid down at ||| 0.333333 0.321886 8.48644e-07 3.45549e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| we like it or not ||| 0.0714286 0.0008293 8.48644e-07 7.44779e-14 2.718 ||| 0-4 ||| 14 1.17835e+06 +en ||| we live in ||| 0.00694444 0.605812 1.69729e-06 5.28422e-07 2.718 ||| 0-2 ||| 288 1.17835e+06 +en ||| we look at it from this ||| 1 0.0308834 8.48644e-07 6.05856e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| we look at it from ||| 0.2 0.0308834 8.48644e-07 9.37655e-13 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| we look at them on ||| 0.5 0.22993 8.48644e-07 3.08689e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| we look at ||| 0.00765697 0.321886 4.24322e-06 1.32374e-07 2.718 ||| 0-2 ||| 653 1.17835e+06 +en ||| we made in ||| 0.0263158 0.605812 8.48644e-07 1.09815e-05 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| we maintain ||| 0.00512821 0.0054082 8.48644e-07 1.0346e-07 2.718 ||| 0-0 ||| 195 1.17835e+06 +en ||| we make in ||| 0.0416667 0.605812 8.48644e-07 9.11003e-06 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| we make such ||| 0.25 0.0054082 8.48644e-07 8.13948e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| we make ||| 0.00154321 0.0054082 8.48644e-07 3.93421e-06 2.718 ||| 0-0 ||| 648 1.17835e+06 +en ||| we may to ||| 1 0.0247351 8.48644e-07 2.39065e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we might ||| 0.00101833 0.0054082 8.48644e-07 8.69338e-07 2.718 ||| 0-0 ||| 982 1.17835e+06 +en ||| we must , in essence ||| 1 0.605812 8.48644e-07 1.21748e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we must , in the ||| 0.25 0.605812 8.48644e-07 5.93203e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| we must , in ||| 0.125 0.605812 2.54593e-06 9.66257e-07 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| we must also come up with a ||| 1 0.0535436 8.48644e-07 1.32601e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| we must also come up with ||| 0.5 0.0535436 8.48644e-07 2.9915e-15 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| we must at the same time note ||| 1 0.321886 8.48644e-07 5.94294e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we must at the same time ||| 0.0555556 0.321886 8.48644e-07 5.69247e-14 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| we must at the same ||| 0.5 0.321886 8.48644e-07 3.46742e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we must at the ||| 0.333333 0.321886 8.48644e-07 4.30897e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| we must at ||| 0.0344828 0.321886 8.48644e-07 7.0188e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| we must do in ||| 0.2 0.605812 8.48644e-07 2.78344e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| we must look at two possibilities ||| 1 0.321886 8.48644e-07 6.96484e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we must look at two ||| 1 0.321886 8.48644e-07 4.8367e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we must look at ||| 0.00775194 0.321886 8.48644e-07 2.04598e-10 2.718 ||| 0-3 ||| 129 1.17835e+06 +en ||| we must make ||| 0.00135685 0.0054082 8.48644e-07 6.08071e-09 2.718 ||| 0-0 ||| 737 1.17835e+06 +en ||| we must not , on ||| 1 0.22993 8.48644e-07 5.93286e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| we must rely on ||| 0.0555556 0.22993 8.48644e-07 2.88521e-11 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| we must succeed in ||| 0.0526316 0.605812 8.48644e-07 3.08704e-10 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| we must try to reverse the trend ||| 0.5 0.0247351 8.48644e-07 7.64373e-22 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we must try to reverse the ||| 0.5 0.0247351 8.48644e-07 4.52291e-17 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we must try to reverse ||| 0.5 0.0247351 8.48644e-07 7.36729e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we must try to ||| 0.0052356 0.0247351 8.48644e-07 7.59515e-11 2.718 ||| 0-3 ||| 191 1.17835e+06 +en ||| we must ||| 0.000149548 0.0054082 5.09187e-06 3.49908e-06 2.718 ||| 0-0 ||| 40121 1.17835e+06 +en ||| we need a certain transitional period here ||| 1 0.0855319 8.48644e-07 3.9927e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| we need an early warning system for ||| 0.5 0.0286209 8.48644e-07 1.40704e-22 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| we need economic governance in ||| 0.5 0.605812 8.48644e-07 1.45761e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| we need in ||| 0.0210526 0.605812 1.69729e-06 4.80664e-06 2.718 ||| 0-2 ||| 95 1.17835e+06 +en ||| we need nutrient profiling , real nutrient ||| 0.5 0.0054082 8.48644e-07 5.9274e-29 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| we need nutrient profiling , real ||| 0.5 0.0054082 8.48644e-07 5.38854e-23 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| we need nutrient profiling , ||| 0.5 0.0054082 8.48644e-07 2.9953e-19 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| we need nutrient profiling ||| 0.5 0.0054082 8.48644e-07 2.51168e-18 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| we need nutrient ||| 0.5 0.0054082 8.48644e-07 2.28335e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| we need to look at them from ||| 1 0.0308834 8.48644e-07 1.15233e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| we need to ||| 0.000255864 0.0247351 2.54593e-06 2.92577e-07 2.718 ||| 0-2 ||| 11725 1.17835e+06 +en ||| we need when ||| 0.25 0.142731 8.48644e-07 6.19674e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| we need ||| 0.000148214 0.0054082 3.39458e-06 2.07577e-06 2.718 ||| 0-0 ||| 26988 1.17835e+06 +en ||| we not only provide ||| 1 0.0054082 8.48644e-07 2.54487e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| we not only ||| 0.00980392 0.0054082 8.48644e-07 8.60335e-09 2.718 ||| 0-0 ||| 102 1.17835e+06 +en ||| we not ||| 0.0021097 0.0054082 8.48644e-07 7.72918e-06 2.718 ||| 0-0 ||| 474 1.17835e+06 +en ||| we now are living in ||| 1 0.605812 8.48644e-07 1.37301e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| we now consider ||| 0.2 0.0054082 8.48644e-07 7.41948e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| we now ||| 0.00108696 0.0054082 8.48644e-07 4.66341e-06 2.718 ||| 0-0 ||| 920 1.17835e+06 +en ||| we of ||| 0.0384615 0.0116562 8.48644e-07 0.000154811 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| we on ||| 0.319444 0.22993 1.95188e-05 0.00094279 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| we originally set out ||| 0.333333 0.131774 8.48644e-07 3.99476e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| we originally set ||| 0.25 0.131774 8.48644e-07 1.04291e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| we originally ||| 0.0833333 0.131774 8.48644e-07 1.78458e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| we ought in ||| 0.5 0.605812 8.48644e-07 4.39303e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we ourselves ||| 0.00301205 0.0054082 8.48644e-07 7.20147e-07 2.718 ||| 0-0 ||| 332 1.17835e+06 +en ||| we owe ||| 0.00321543 0.0054082 8.48644e-07 2.19598e-08 2.718 ||| 0-0 ||| 311 1.17835e+06 +en ||| we practise in ||| 0.5 0.605812 8.48644e-07 3.19779e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we provide the practical ||| 1 0.0054082 8.48644e-07 1.80481e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| we provide the ||| 0.0555556 0.0054082 8.48644e-07 4.11117e-08 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| we provide through ||| 0.5 0.0366102 8.48644e-07 3.15787e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we provide ||| 0.00571429 0.0054082 8.48644e-07 6.69662e-07 2.718 ||| 0-0 ||| 175 1.17835e+06 +en ||| we provided the ||| 0.5 0.0054082 8.48644e-07 3.18553e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| we provided ||| 0.0344828 0.0054082 8.48644e-07 5.18886e-07 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| we put into ||| 0.1 0.525896 8.48644e-07 2.77094e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| we put it then - ||| 1 0.013351 8.48644e-07 2.817e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we put it then ||| 1 0.013351 8.48644e-07 7.468e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we put something in ||| 0.333333 0.605812 8.48644e-07 3.1993e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| we reached ||| 0.00446429 0.0054082 8.48644e-07 2.44501e-07 2.718 ||| 0-0 ||| 224 1.17835e+06 +en ||| we read in ||| 0.1 0.605812 1.69729e-06 2.52678e-07 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| we really do get down to ||| 1 0.0247351 8.48644e-07 1.62063e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| we refer to this ||| 0.25 0.0247351 8.48644e-07 1.61026e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| we refer to ||| 0.0212766 0.0054082 1.69729e-06 1.57111e-08 2.718 ||| 0-0 ||| 94 1.17835e+06 +en ||| we refer ||| 0.0075188 0.0054082 8.48644e-07 1.76811e-07 2.718 ||| 0-0 ||| 133 1.17835e+06 +en ||| we referred on ||| 1 0.22993 8.48644e-07 9.0225e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we regard , in ||| 1 0.605812 8.48644e-07 4.25676e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we regard ||| 0.00363636 0.0054082 8.48644e-07 1.54149e-06 2.718 ||| 0-0 ||| 275 1.17835e+06 +en ||| we rely on global partnership ||| 1 0.22993 8.48644e-07 1.84268e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we rely on global ||| 1 0.22993 8.48644e-07 8.53093e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we rely on ||| 0.0294118 0.22993 8.48644e-07 1.86672e-08 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| we remain at ||| 0.5 0.321886 8.48644e-07 5.50841e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we remain on ||| 0.5 0.22993 8.48644e-07 1.1436e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we saw in ||| 0.0379747 0.605812 2.54593e-06 2.80986e-07 2.718 ||| 0-2 ||| 79 1.17835e+06 +en ||| we saw it in ||| 0.0909091 0.605812 8.48644e-07 4.99683e-09 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| we saw ||| 0.00130719 0.0054082 8.48644e-07 1.21345e-07 2.718 ||| 0-0 ||| 765 1.17835e+06 +en ||| we say at ||| 0.333333 0.321886 8.48644e-07 4.34043e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| we say in ||| 0.0254237 0.605812 2.54593e-06 5.01057e-06 2.718 ||| 0-2 ||| 118 1.17835e+06 +en ||| we see it in ||| 0.157895 0.605812 2.54593e-06 6.5686e-08 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| we see it when it ||| 1 0.142731 8.48644e-07 1.50593e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we see it when ||| 1 0.142731 8.48644e-07 8.46826e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we see ||| 0.00140449 0.0054082 2.54593e-06 1.59514e-06 2.718 ||| 0-0 ||| 2136 1.17835e+06 +en ||| we seek them in ||| 1 0.605812 8.48644e-07 9.77301e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we serious in ||| 0.5 0.605812 8.48644e-07 6.0391e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we set out in ||| 0.0555556 0.605812 8.48644e-07 1.17348e-08 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| we shall , at ||| 1 0.321886 8.48644e-07 2.96013e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we shall , in ||| 0.25 0.605812 1.69729e-06 3.41716e-07 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| we shall act in line with ||| 1 0.0535436 8.48644e-07 7.74546e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| we shall be able to ||| 0.00628931 0.0247351 8.48644e-07 2.63907e-12 2.718 ||| 0-4 ||| 159 1.17835e+06 +en ||| we shall be looking in ||| 0.5 0.605812 8.48644e-07 5.49418e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| we shall be on ||| 0.0833333 0.22993 8.48644e-07 9.33926e-09 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| we shall end up ||| 0.0625 0.0147069 8.48644e-07 1.86291e-12 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| we shall in ||| 0.277778 0.605812 4.24322e-06 2.86543e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| we shall look into ||| 0.025641 0.525896 8.48644e-07 4.00421e-11 2.718 ||| 0-3 ||| 39 1.17835e+06 +en ||| we shall ||| 0.00207727 0.0054082 4.24322e-06 1.23745e-06 2.718 ||| 0-0 ||| 2407 1.17835e+06 +en ||| we should , at ||| 0.2 0.321886 8.48644e-07 2.39962e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| we should , on ||| 0.5 0.22993 8.48644e-07 4.98187e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we should , to ||| 0.333333 0.0247351 8.48644e-07 1.68615e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| we should , within ||| 1 0.369196 8.48644e-07 6.65064e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we should also look ||| 0.0666667 0.0054082 8.48644e-07 1.47628e-11 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| we should also ||| 0.000823045 0.0054082 8.48644e-07 5.06442e-08 2.718 ||| 0-0 ||| 1215 1.17835e+06 +en ||| we should at ||| 0.0689655 0.321886 1.69729e-06 2.01218e-06 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| we should be focused on ||| 1 0.22993 8.48644e-07 1.6883e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| we should combat ||| 0.0769231 0.0054082 8.48644e-07 1.94608e-10 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| we should concentrate on ||| 0.0144928 0.22993 8.48644e-07 6.47513e-11 2.718 ||| 0-3 ||| 69 1.17835e+06 +en ||| we should do so on ||| 0.5 0.22993 8.48644e-07 3.25724e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| we should follow ||| 0.0153846 0.0054082 8.48644e-07 9.93103e-10 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| we should in ||| 0.192308 0.605812 4.24322e-06 2.32285e-05 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| we should invest in ||| 0.047619 0.605812 8.48644e-07 2.18348e-10 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| we should like to ||| 0.00632911 0.0247351 8.48644e-07 2.51095e-09 2.718 ||| 0-3 ||| 158 1.17835e+06 +en ||| we should look in ||| 0.5 0.605812 8.48644e-07 6.77112e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we should not decide on ||| 0.333333 0.22993 8.48644e-07 9.14221e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| we should not ||| 0.000529521 0.0054082 1.69729e-06 3.4248e-08 2.718 ||| 0-0 ||| 3777 1.17835e+06 +en ||| we should on ||| 1 0.22993 8.48644e-07 4.1775e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we should remember that ||| 0.004 0.0054082 8.48644e-07 6.311e-12 2.718 ||| 0-0 ||| 250 1.17835e+06 +en ||| we should remember ||| 0.0025 0.0054082 8.48644e-07 3.75172e-10 2.718 ||| 0-0 ||| 400 1.17835e+06 +en ||| we should say ||| 0.0138889 0.0054082 8.48644e-07 9.58796e-09 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| we should ||| 0.00079034 0.0054082 1.52756e-05 1.00313e-05 2.718 ||| 0-0 ||| 22775 1.17835e+06 +en ||| we sing in ||| 1 0.605812 8.48644e-07 1.67753e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we sometimes look very critically at Belarus ||| 1 0.321886 8.48644e-07 7.74206e-25 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| we sometimes look very critically at ||| 1 0.321886 8.48644e-07 6.50593e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| we spend on ||| 0.0454545 0.22993 8.48644e-07 2.84723e-08 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| we spoke in ||| 0.2 0.605812 8.48644e-07 1.37872e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| we stand on ||| 0.0454545 0.22993 8.48644e-07 1.55372e-07 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| we started in ||| 0.1 0.605812 8.48644e-07 2.35902e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| we started ||| 0.00406504 0.0054082 8.48644e-07 1.01876e-07 2.718 ||| 0-0 ||| 246 1.17835e+06 +en ||| we stated in ||| 0.0416667 0.605812 8.48644e-07 3.26594e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| we stay at ||| 0.5 0.321886 8.48644e-07 1.28969e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we stayed with ||| 0.333333 0.0535436 8.48644e-07 5.29421e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| we stood on ||| 0.5 0.22993 8.48644e-07 1.46133e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| we strongly demand ||| 1 0.0054082 8.48644e-07 5.81243e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| we strongly ||| 0.0175439 0.0054082 8.48644e-07 1.08441e-07 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| we subsequently ||| 0.0909091 0.0293803 8.48644e-07 4.24576e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| we succeed in ||| 0.00806452 0.605812 8.48644e-07 1.99731e-07 2.718 ||| 0-2 ||| 124 1.17835e+06 +en ||| we support regional competitiveness . in ||| 1 0.605812 8.48644e-07 6.25147e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| we take in ||| 0.0555556 0.605812 8.48644e-07 8.44007e-06 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| we take the view that at ||| 1 0.321886 8.48644e-07 6.82026e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| we take ||| 0.000690131 0.0074151 8.48644e-07 3.32168e-06 2.718 ||| 0-1 ||| 1449 1.17835e+06 +en ||| we talk about ||| 0.00381194 0.0401564 2.54593e-06 2.61271e-09 2.718 ||| 0-2 ||| 787 1.17835e+06 +en ||| we talk ||| 0.00271003 0.0054082 8.48644e-07 1.81791e-07 2.718 ||| 0-0 ||| 369 1.17835e+06 +en ||| we then ||| 0.00649351 0.0054082 8.48644e-07 3.64578e-06 2.718 ||| 0-0 ||| 154 1.17835e+06 +en ||| we therefore think ||| 0.027027 0.0054082 8.48644e-07 7.24187e-10 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| we therefore wish to see clear wording ||| 1 0.0247351 8.48644e-07 2.58253e-22 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we therefore wish to see clear ||| 1 0.0247351 8.48644e-07 1.84466e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we therefore wish to see ||| 0.333333 0.0247351 8.48644e-07 5.54119e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| we therefore wish to ||| 0.0434783 0.0247351 8.48644e-07 7.86431e-11 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| we therefore ||| 0.000546448 0.0054082 8.48644e-07 1.8933e-06 2.718 ||| 0-0 ||| 1830 1.17835e+06 +en ||| we to think in ||| 1 0.605812 8.48644e-07 1.78176e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we to ||| 0.01 0.0247351 8.48644e-07 0.000319094 2.718 ||| 0-1 ||| 100 1.17835e+06 +en ||| we took at ||| 0.285714 0.321886 1.69729e-06 6.69819e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| we took in ||| 0.0769231 0.605812 8.48644e-07 7.73236e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| we took on ||| 0.0555556 0.22993 8.48644e-07 1.39062e-07 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| we use in ||| 0.0769231 0.605812 8.48644e-07 2.5488e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| we use ||| 0.00215517 0.0054082 8.48644e-07 1.10071e-06 2.718 ||| 0-0 ||| 464 1.17835e+06 +en ||| we used to ||| 0.0133333 0.0247351 8.48644e-07 1.36891e-07 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| we used ||| 0.00869565 0.0028534 8.48644e-07 7.69726e-09 2.718 ||| 0-0 0-1 ||| 115 1.17835e+06 +en ||| we voted in ||| 0.00342466 0.605812 8.48644e-07 2.11264e-07 2.718 ||| 0-2 ||| 292 1.17835e+06 +en ||| we wait until ||| 0.0909091 0.0092136 8.48644e-07 1.7931e-11 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| we want is ||| 0.00892857 0.0054082 8.48644e-07 3.31706e-08 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| we want to compromise on ||| 1 0.22993 8.48644e-07 1.77416e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| we want to ||| 0.000209074 0.0247351 8.48644e-07 1.49176e-07 2.718 ||| 0-2 ||| 4783 1.17835e+06 +en ||| we want ||| 0.00014637 0.0054082 8.48644e-07 1.05837e-06 2.718 ||| 0-0 ||| 6832 1.17835e+06 +en ||| we wanted to ||| 0.00292398 0.0247351 8.48644e-07 1.74544e-08 2.718 ||| 0-2 ||| 342 1.17835e+06 +en ||| we welcome in ||| 0.125 0.605812 8.48644e-07 5.77175e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| we were against ||| 0.1 0.153982 8.48644e-07 1.17929e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| we were all seriously defamed by ||| 1 0.0468744 8.48644e-07 1.36362e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| we were at ||| 0.0540541 0.321886 1.69729e-06 8.13501e-07 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| we were certainly under ||| 1 0.205566 8.48644e-07 2.88062e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we were dealing in this ||| 1 0.605812 8.48644e-07 6.26815e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we were dealing in ||| 1 0.605812 8.48644e-07 9.70092e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we were in ||| 0.0326797 0.605812 4.24322e-06 9.39102e-06 2.718 ||| 0-2 ||| 153 1.17835e+06 +en ||| we were promised as part ||| 0.333333 0.066968 8.48644e-07 3.92508e-15 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| we were promised as ||| 0.333333 0.066968 8.48644e-07 3.2923e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| we were to demand the same for ||| 0.333333 0.0286209 8.48644e-07 5.50525e-17 2.718 ||| 0-6 ||| 3 1.17835e+06 +en ||| we were ||| 0.000842933 0.0054082 2.54593e-06 4.05555e-06 2.718 ||| 0-0 ||| 3559 1.17835e+06 +en ||| we will , at ||| 0.0909091 0.321886 8.48644e-07 4.68508e-07 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| we will , in ||| 0.306122 0.605812 1.27297e-05 5.40844e-06 2.718 ||| 0-3 ||| 49 1.17835e+06 +en ||| we will , over ||| 0.5 0.157937 8.48644e-07 4.69328e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| we will , ||| 0.0127389 0.0054082 1.69729e-06 2.33566e-06 2.718 ||| 0-0 ||| 157 1.17835e+06 +en ||| we will again be ||| 0.25 0.0054082 8.48644e-07 2.05265e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| we will again ||| 0.0526316 0.0054082 8.48644e-07 1.13263e-08 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| we will at ||| 0.176471 0.321886 2.54593e-06 3.92864e-06 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| we will be able to ||| 0.00120048 0.0247351 8.48644e-07 4.17693e-11 2.718 ||| 0-4 ||| 833 1.17835e+06 +en ||| we will be on ||| 0.0769231 0.22993 8.48644e-07 1.47815e-07 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| we will be ||| 0.00112549 0.0054082 1.69729e-06 3.54945e-07 2.718 ||| 0-0 ||| 1777 1.17835e+06 +en ||| we will consider ||| 0.0138889 0.0054082 8.48644e-07 3.11605e-09 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| we will decide all together what we ||| 0.5 0.0035633 8.48644e-07 7.92243e-20 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| we will decide all together what ||| 0.5 0.0035633 8.48644e-07 6.9787e-18 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| we will focus on ||| 0.05 0.22993 8.48644e-07 6.31295e-10 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| we will focus solely on ||| 1 0.22993 8.48644e-07 1.38885e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| we will have to ||| 0.000824402 0.0247351 8.48644e-07 3.30156e-08 2.718 ||| 0-3 ||| 1213 1.17835e+06 +en ||| we will have ||| 0.000333444 0.0054082 8.48644e-07 2.34238e-07 2.718 ||| 0-0 ||| 2999 1.17835e+06 +en ||| we will in fact ||| 0.166667 0.605812 8.48644e-07 1.3285e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| we will in ||| 0.375 0.605812 7.6378e-06 4.5352e-05 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| we will look , in ||| 1 0.605812 8.48644e-07 1.57656e-09 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| we will move in ||| 0.166667 0.605812 8.48644e-07 6.93432e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| we will not in ||| 0.2 0.605812 8.48644e-07 1.54836e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| we will not need to have ||| 1 0.0247351 8.48644e-07 1.03352e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| we will not need to ||| 0.2 0.0247351 8.48644e-07 8.64158e-12 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| we will not permit them in ||| 0.666667 0.605812 1.69729e-06 1.00095e-14 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| we will pay ||| 0.025641 0.0054082 8.48644e-07 2.80464e-09 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| we will see during ||| 1 0.226251 8.48644e-07 2.00076e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we will ultimately let our ||| 1 0.199943 8.48644e-07 5.31968e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we will ultimately let ||| 1 0.199943 8.48644e-07 3.85652e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| we will ultimately ||| 0.2 0.199943 8.48644e-07 9.44299e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| we will ||| 0.00392894 0.0054082 1.95188e-05 1.95855e-05 2.718 ||| 0-0 ||| 5854 1.17835e+06 +en ||| we witnessed , during ||| 1 0.226251 8.48644e-07 6.06714e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| we worked hard ||| 0.0833333 0.0054082 8.48644e-07 1.03502e-11 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| we worked ||| 0.00680272 0.0054082 8.48644e-07 9.84797e-08 2.718 ||| 0-0 ||| 147 1.17835e+06 +en ||| we would , in ||| 0.235294 0.605812 3.39458e-06 3.66891e-06 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| we would , ||| 0.0333333 0.0054082 1.69729e-06 1.58444e-06 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| we would actually ||| 0.0714286 0.125341 8.48644e-07 8.94883e-08 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| we would have better international coordination by ||| 1 0.0468744 8.48644e-07 1.34599e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| we would in ||| 0.714286 0.605812 4.24322e-06 3.07654e-05 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| we would like in ||| 0.333333 0.605812 8.48644e-07 5.46362e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| we would like ||| 0.00110803 0.0054082 1.69729e-06 2.35949e-08 2.718 ||| 0-0 ||| 1805 1.17835e+06 +en ||| we would make ||| 0.0416667 0.0054082 8.48644e-07 2.30887e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| we would refer to ||| 0.166667 0.0247351 8.48644e-07 1.46255e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| we would stress that ||| 0.05 0.0054082 8.48644e-07 7.9564e-12 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| we would stress ||| 0.0227273 0.0054082 8.48644e-07 4.72987e-10 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| we would ||| 0.00479094 0.0054082 9.33509e-06 1.32861e-05 2.718 ||| 0-0 ||| 2296 1.17835e+06 +en ||| we ||| 0.00677125 0.0054082 0.000921628 0.0022639 2.718 ||| 0-0 ||| 160384 1.17835e+06 +en ||| weak points in ||| 0.0454545 0.605812 8.48644e-07 5.81858e-10 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| weakened by ||| 0.0181818 0.0468744 8.48644e-07 2.46706e-08 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| weapons in ||| 0.030303 0.605812 1.69729e-06 9.65122e-06 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| weapons integrated into ||| 1 0.525896 8.48644e-07 9.34593e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| wear a ||| 0.047619 0.0277778 8.48644e-07 1.81736e-07 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| wear in ||| 0.333333 0.605812 8.48644e-07 1.84712e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| wear ||| 0.025641 0.0277778 3.39458e-06 4.1e-06 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| wearer ||| 1 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| wearing ||| 0.0261438 0.019685 3.39458e-06 3.4e-06 2.718 ||| 0-0 ||| 153 1.17835e+06 +en ||| week ; in ||| 1 0.605812 8.48644e-07 4.35219e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| week in ||| 0.00643087 0.605812 1.69729e-06 1.41305e-05 2.718 ||| 0-1 ||| 311 1.17835e+06 +en ||| weekend in ||| 0.0555556 0.605812 1.69729e-06 1.15445e-06 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| weeks during ||| 0.2 0.226251 8.48644e-07 3.1226e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| weeks in ||| 0.0121951 0.605812 8.48644e-07 4.98724e-06 2.718 ||| 0-1 ||| 82 1.17835e+06 +en ||| weighed in ||| 0.285714 0.605812 1.69729e-06 2.17037e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| weighing under 12 tonnes in Germany ||| 1 0.205566 8.48644e-07 2.57089e-24 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| weighing under 12 tonnes in ||| 1 0.205566 8.48644e-07 9.92623e-20 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| weighing under 12 tonnes ||| 1 0.205566 8.48644e-07 4.63745e-18 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| weighing under 12 ||| 1 0.205566 8.48644e-07 2.29577e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| weighing under ||| 1 0.205566 8.48644e-07 1.63983e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| weight at ||| 0.111111 0.321886 8.48644e-07 1.22406e-06 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| weight in balancing ||| 1 0.605812 8.48644e-07 6.07612e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| weight in ||| 0.0125 0.605812 8.48644e-07 1.41305e-05 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| weight of the 50 cent coin in ||| 1 0.605812 8.48644e-07 2.83907e-23 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| weight throughout ||| 0.333333 0.309047 8.48644e-07 8.87645e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| weight to ||| 0.0149254 0.0247351 1.69729e-06 8.60114e-07 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| welcome Belarus into ||| 1 0.525896 8.48644e-07 2.90041e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| welcome every now ||| 1 0.0123946 8.48644e-07 1.06047e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| welcome in ||| 0.0393701 0.605812 4.24322e-06 5.08421e-05 2.718 ||| 0-1 ||| 127 1.17835e+06 +en ||| welcome this report as one of the ||| 1 0.0116562 8.48644e-07 1.03833e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| welcome this report as one of ||| 1 0.0116562 8.48644e-07 1.69132e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| welcome to ||| 0.00496278 0.0247351 1.69729e-06 3.09472e-06 2.718 ||| 0-1 ||| 403 1.17835e+06 +en ||| welcome you to ||| 0.0204082 0.0247351 8.48644e-07 9.99193e-09 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| welcomed into ||| 0.0909091 0.525896 8.48644e-07 5.26868e-07 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| welcomes in ||| 0.1 0.605812 8.48644e-07 3.14011e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| welcomes the ||| 0.00130208 0.0011669 8.48644e-07 1.948e-08 2.718 ||| 0-1 ||| 768 1.17835e+06 +en ||| welcoming to ||| 0.0384615 0.0247351 8.48644e-07 1.12433e-07 2.718 ||| 0-1 ||| 26 1.17835e+06 +en ||| well , Mr ||| 0.0151515 0.0001675 8.48644e-07 5.01089e-09 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| well , in ||| 0.08 0.605812 5.09187e-06 8.73183e-05 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| well , when it acts ||| 1 0.142731 8.48644e-07 1.13907e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| well , when it ||| 0.5 0.142731 8.48644e-07 2.00187e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| well , when ||| 0.142857 0.142731 8.48644e-07 1.12571e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| well ahead in ||| 0.25 0.605812 8.48644e-07 7.98098e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| well and working in ||| 1 0.605812 8.48644e-07 1.74625e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| well as at ||| 0.0416667 0.321886 8.48644e-07 6.47236e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| well as for ||| 0.0134228 0.0286209 1.69729e-06 1.86155e-07 2.718 ||| 0-2 ||| 149 1.17835e+06 +en ||| well as he should ||| 1 0.066968 8.48644e-07 1.10291e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| well as he ||| 0.2 0.066968 8.48644e-07 2.48908e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| well as in ||| 0.0134529 0.605812 2.54593e-06 7.47166e-06 2.718 ||| 0-2 ||| 223 1.17835e+06 +en ||| well as of ||| 0.016129 0.0393121 8.48644e-07 3.88949e-07 2.718 ||| 0-1 0-2 ||| 62 1.17835e+06 +en ||| well as on the basis ||| 1 0.22993 8.48644e-07 4.8985e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| well as on the ||| 0.0232558 0.22993 8.48644e-07 8.24941e-08 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| well as on ||| 0.0104167 0.22993 8.48644e-07 1.34373e-06 2.718 ||| 0-2 ||| 96 1.17835e+06 +en ||| well as the issue of ||| 0.333333 0.066968 8.48644e-07 7.20405e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| well as the issue ||| 0.25 0.066968 8.48644e-07 1.32515e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| well as the ||| 0.00191939 0.066968 1.69729e-06 1.75099e-06 2.718 ||| 0-1 ||| 1042 1.17835e+06 +en ||| well as through ||| 0.0769231 0.0366102 8.48644e-07 1.52158e-08 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| well as to ||| 0.00510204 0.0458515 8.48644e-07 8.01694e-07 2.718 ||| 0-1 0-2 ||| 196 1.17835e+06 +en ||| well as with ||| 0.0416667 0.0535436 1.69729e-06 1.88642e-07 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| well as within Europe in ||| 0.25 0.605812 8.48644e-07 7.90536e-13 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| well as ||| 0.00702277 0.066968 2.80053e-05 2.85216e-05 2.718 ||| 0-1 ||| 4699 1.17835e+06 +en ||| well at ||| 0.0666667 0.321886 1.69729e-06 6.34272e-05 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| well be on ||| 0.5 0.22993 8.48644e-07 2.38645e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| well be ||| 0.00321543 0.0008391 8.48644e-07 3.95079e-07 2.718 ||| 0-0 ||| 311 1.17835e+06 +en ||| well beyond that in ||| 1 0.605812 8.48644e-07 9.22527e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| well for ||| 0.0117647 0.0286209 1.69729e-06 1.82426e-05 2.718 ||| 0-1 ||| 170 1.17835e+06 +en ||| well in advance of ||| 0.0454545 0.605812 8.48644e-07 1.40513e-09 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| well in advance ||| 0.027027 0.605812 8.48644e-07 2.58467e-08 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| well in my ||| 0.111111 0.605812 8.48644e-07 4.70878e-07 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| well in the ||| 0.010101 0.605812 8.48644e-07 4.49511e-05 2.718 ||| 0-1 ||| 99 1.17835e+06 +en ||| well in ||| 0.0843091 0.605812 3.05512e-05 0.0007322 2.718 ||| 0-1 ||| 427 1.17835e+06 +en ||| well into ||| 0.186047 0.525896 6.78915e-06 3.51009e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| well known . in ||| 1 0.605812 8.48644e-07 2.44184e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| well off ||| 0.0333333 0.0262428 8.48644e-07 2.65429e-07 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| well on the ||| 0.047619 0.22993 2.54593e-06 8.08417e-06 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| well on ||| 0.176991 0.22993 1.69729e-05 0.000131682 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| well under ||| 0.0967742 0.205566 2.54593e-06 8.96593e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| well within ||| 0.0416667 0.369196 8.48644e-07 1.75791e-05 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| well ||| 0.000683394 0.0008391 1.1881e-05 2.18e-05 2.718 ||| 0-0 ||| 20486 1.17835e+06 +en ||| well-known to ||| 0.0526316 0.0247351 8.48644e-07 1.40542e-07 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| went ahead as ||| 1 0.066968 8.48644e-07 1.24895e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| went along ||| 0.0769231 0.155535 8.48644e-07 5.06733e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| went into hiding ||| 0.333333 0.525896 8.48644e-07 1.07171e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| went into ||| 0.027027 0.525896 1.69729e-06 1.41015e-06 2.718 ||| 0-1 ||| 74 1.17835e+06 +en ||| went more in ||| 1 0.605812 8.48644e-07 6.71761e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| went on in a ||| 1 0.417871 8.48644e-07 1.08284e-07 2.718 ||| 0-1 0-2 ||| 1 1.17835e+06 +en ||| went on in ||| 0.142857 0.417871 8.48644e-07 2.44291e-06 2.718 ||| 0-1 0-2 ||| 7 1.17835e+06 +en ||| went on to fight ||| 1 0.22993 8.48644e-07 2.59012e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| went on to ||| 0.0555556 0.22993 2.54593e-06 4.70076e-07 2.718 ||| 0-1 ||| 54 1.17835e+06 +en ||| went on ||| 0.0441176 0.22993 5.09187e-06 5.29018e-06 2.718 ||| 0-1 ||| 136 1.17835e+06 +en ||| went through in ||| 0.2 0.605812 8.48644e-07 1.35399e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| went to ||| 0.00653595 0.0247351 1.69729e-06 1.7905e-06 2.718 ||| 0-1 ||| 306 1.17835e+06 +en ||| went up by ||| 0.2 0.0468744 8.48644e-07 1.84816e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| were , in fact , ||| 0.05 0.605812 8.48644e-07 3.44622e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| were , in fact ||| 0.0714286 0.605812 8.48644e-07 2.8898e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| were , in ||| 0.0588235 0.605812 2.54593e-06 9.86516e-05 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| were , on ||| 0.117647 0.22993 1.69729e-06 1.77419e-05 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| were , within ||| 0.333333 0.369196 8.48644e-07 2.36848e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| were a Member of ||| 0.125 0.0116562 8.48644e-07 5.57992e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| were able to ||| 0.00254453 0.0247351 8.48644e-07 4.20399e-08 2.718 ||| 0-2 ||| 393 1.17835e+06 +en ||| were achieved in ||| 0.2 0.605812 8.48644e-07 1.38396e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| were active in ||| 0.142857 0.605812 8.48644e-07 3.33376e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| were actually ||| 0.0119048 0.125341 8.48644e-07 2.40621e-06 2.718 ||| 0-1 ||| 84 1.17835e+06 +en ||| were against ||| 0.0136986 0.153982 8.48644e-07 1.03881e-05 2.718 ||| 0-1 ||| 73 1.17835e+06 +en ||| were all seriously defamed by ||| 1 0.0468744 8.48644e-07 1.20118e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| were along ||| 0.166667 0.155535 8.48644e-07 1.42506e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| were always called by ||| 0.25 0.0468744 8.48644e-07 4.55567e-13 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| were at ||| 0.056338 0.321886 6.78915e-06 7.16596e-05 2.718 ||| 0-1 ||| 142 1.17835e+06 +en ||| were available everywhere , ||| 0.2 0.256283 8.48644e-07 3.34822e-11 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| were available everywhere ||| 0.2 0.256283 8.48644e-07 2.80762e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| were based on ||| 0.0416667 0.22993 1.69729e-06 3.49021e-08 2.718 ||| 0-2 ||| 48 1.17835e+06 +en ||| were being sterilised against their will in ||| 1 0.605812 8.48644e-07 2.253e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| were being ||| 0.00364964 0.0043873 8.48644e-07 3.27826e-07 2.718 ||| 0-1 ||| 274 1.17835e+06 +en ||| were brought up in ||| 0.5 0.605812 8.48644e-07 7.89959e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| were carried in ||| 0.5 0.605812 8.48644e-07 2.43786e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| were certainly under ||| 1 0.205566 8.48644e-07 2.53748e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| were collected in ||| 0.333333 0.605812 8.48644e-07 1.07541e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| were contemplating during ||| 1 0.226251 8.48644e-07 1.13948e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| were contrary to ||| 0.166667 0.0710493 8.48644e-07 4.20237e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| were contrary ||| 0.166667 0.0710493 8.48644e-07 4.7293e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| were dealing in this ||| 1 0.605812 8.48644e-07 5.52148e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| were dealing in ||| 1 0.605812 8.48644e-07 8.54533e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| were depicted on ||| 0.0833333 0.22993 8.48644e-07 7.43865e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| were deployed in ||| 0.5 0.605812 1.69729e-06 1.10022e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| were designed to give ||| 1 0.0247351 8.48644e-07 2.38315e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| were designed to ||| 0.0526316 0.0247351 8.48644e-07 3.93259e-09 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| were developed over ||| 1 0.157937 8.48644e-07 4.93163e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| were developing ||| 0.333333 0.279045 8.48644e-07 8.26212e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| were endangered ||| 0.1 0.272 8.48644e-07 1.65704e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| were examined in terms of their ||| 1 0.605812 8.48644e-07 1.00697e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| were examined in terms of ||| 1 0.605812 8.48644e-07 8.68754e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| were examined in terms ||| 1 0.605812 8.48644e-07 1.59803e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| were examined in ||| 0.142857 0.605812 8.48644e-07 1.45593e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| were executed in ||| 0.25 0.605812 1.69729e-06 4.79796e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| were expressed in ||| 0.142857 0.605812 8.48644e-07 8.04072e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| were flaring in ||| 1 0.605812 8.48644e-07 5.79064e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| were for ||| 0.0333333 0.0286209 8.48644e-07 2.06104e-05 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| were found in ||| 0.2 0.605812 1.69729e-06 1.80999e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| were found within ||| 0.5 0.369196 8.48644e-07 4.34552e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| were getting off the coach in ||| 1 0.605812 8.48644e-07 1.03278e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| were given at ||| 0.25 0.321886 8.48644e-07 4.918e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| were given ||| 0.0103448 0.0546585 2.54593e-06 2.07964e-06 2.718 ||| 0-1 ||| 290 1.17835e+06 +en ||| were held in ||| 0.0487805 0.605812 1.69729e-06 2.11028e-07 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| were implemented ||| 0.0327869 0.0703003 1.69729e-06 7.10648e-07 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| were in a ||| 0.05 0.605812 8.48644e-07 3.66678e-05 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| were in favour ||| 0.0128205 0.605812 8.48644e-07 2.6761e-07 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| were in place ||| 0.0555556 0.605812 8.48644e-07 1.24499e-06 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| were in the ||| 0.0294118 0.605812 2.54593e-06 5.07854e-05 2.718 ||| 0-1 ||| 102 1.17835e+06 +en ||| were in ||| 0.0753065 0.605812 3.64917e-05 0.000827235 2.718 ||| 0-1 ||| 571 1.17835e+06 +en ||| were included into ||| 0.5 0.525896 8.48644e-07 3.72377e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| were launched ||| 0.0263158 0.12071 8.48644e-07 3.81568e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| were left in ||| 0.5 0.605812 8.48644e-07 1.56265e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| were left out of ||| 0.166667 0.0116562 8.48644e-07 1.76761e-11 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| were lost in ||| 0.125 0.605812 8.48644e-07 4.70697e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| were made , in ||| 0.333333 0.605812 8.48644e-07 2.06655e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| were made in ||| 0.025 0.605812 8.48644e-07 1.73289e-06 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| were made to ||| 0.0344828 0.0247351 8.48644e-07 1.0548e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| were made ||| 0.00193424 0.0033766 8.48644e-07 2.15685e-07 2.718 ||| 0-1 ||| 517 1.17835e+06 +en ||| were murdered in the ||| 0.2 0.605812 8.48644e-07 2.38691e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| were murdered in ||| 0.0625 0.605812 8.48644e-07 3.888e-09 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| were necessary at ||| 0.5 0.321886 8.48644e-07 1.8438e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| were not filled in ||| 0.5 0.605812 8.48644e-07 2.93723e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| were on behalf of ||| 1 0.22993 8.48644e-07 2.57599e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| were on behalf ||| 1 0.22993 8.48644e-07 4.73842e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| were on ||| 0.0897436 0.22993 5.94051e-06 0.000148773 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| were only to be tackled within ||| 1 0.369196 8.48644e-07 5.62486e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| were placed on ||| 0.333333 0.22993 8.48644e-07 1.86264e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| were present at ||| 0.0666667 0.321886 8.48644e-07 2.62274e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| were present inside ||| 1 0.188717 8.48644e-07 1.25361e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| were promised as part ||| 0.333333 0.066968 8.48644e-07 3.45752e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| were promised as ||| 0.333333 0.066968 8.48644e-07 2.90012e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| were put in ||| 0.1 0.605812 8.48644e-07 9.12109e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| were put on ||| 0.0416667 0.22993 8.48644e-07 1.64037e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| were raised in ||| 0.0526316 0.605812 8.48644e-07 9.52974e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| were reached in ||| 0.333333 0.605812 8.48644e-07 8.93413e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| were right in that ||| 1 0.605812 8.48644e-07 8.97405e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| were right in ||| 0.166667 0.605812 8.48644e-07 5.33484e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| were seen by the ||| 0.5 0.0468744 8.48644e-07 1.96941e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| were seen by ||| 0.5 0.0468744 8.48644e-07 3.20794e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| were so enthusiastically made at ||| 1 0.321886 8.48644e-07 1.09027e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| were so successful in ||| 1 0.605812 8.48644e-07 1.03454e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| were speaking about at ||| 1 0.321886 8.48644e-07 1.16348e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| were spelled out in ||| 1 0.605812 8.48644e-07 5.70355e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| were still in ||| 0.0666667 0.605812 8.48644e-07 6.23073e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| were subjected to ||| 0.030303 0.0247351 8.48644e-07 1.08763e-09 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| were taken by ||| 0.142857 0.0468744 8.48644e-07 1.38909e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| were taken down by ||| 1 0.0468744 8.48644e-07 9.69725e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| were taking place in ||| 0.333333 0.605812 8.48644e-07 5.2912e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| were taking place ||| 0.0416667 0.0153333 8.48644e-07 4.64261e-10 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| were taking ||| 0.0285714 0.0153333 8.48644e-07 3.08479e-07 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| were this to ||| 0.333333 0.0002481 8.48644e-07 5.45441e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| were this ||| 0.0416667 0.0002481 8.48644e-07 6.13833e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| were thus ||| 0.0833333 0.0107888 8.48644e-07 2.62082e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| were to be placed in ||| 1 0.605812 8.48644e-07 1.66785e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| were to be put into ||| 1 0.525896 8.48644e-07 7.04142e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| were to demand the same for chocolate ||| 0.333333 0.0286209 8.48644e-07 2.81269e-20 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| were to demand the same for ||| 0.333333 0.0286209 8.48644e-07 4.84946e-15 2.718 ||| 0-5 ||| 3 1.17835e+06 +en ||| were to do ||| 0.0357143 0.0247351 8.48644e-07 1.72978e-07 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| were to get such ||| 0.5 0.0247351 8.48644e-07 4.55456e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| were to get ||| 0.0909091 0.0247351 8.48644e-07 2.20144e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| were to move in ||| 1 0.605812 8.48644e-07 1.12392e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| were to take ||| 0.0188679 0.0160751 8.48644e-07 1.47333e-08 2.718 ||| 0-1 0-2 ||| 53 1.17835e+06 +en ||| were to ||| 0.00840336 0.0247351 8.48644e-06 5.03532e-05 2.718 ||| 0-1 ||| 1190 1.17835e+06 +en ||| were turning out ||| 1 0.062605 8.48644e-07 6.95784e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| were turning ||| 1 0.062605 8.48644e-07 1.81648e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| were under ||| 0.0588235 0.205566 2.54593e-06 1.01297e-05 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| were waiting for ||| 0.125 0.0286209 8.48644e-07 5.48237e-10 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| were when ||| 0.0625 0.142731 8.48644e-07 1.06647e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| were within ||| 0.142857 0.369196 8.48644e-07 1.98607e-05 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| were working on ||| 0.111111 0.22993 8.48644e-07 2.83264e-08 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| were ||| 0.000211178 0.0002481 5.09187e-06 9.5e-06 2.718 ||| 0-0 ||| 28412 1.17835e+06 +en ||| what 's more ||| 0.0666667 0.0035633 8.48644e-07 1.69875e-09 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| what 's ||| 0.0555556 0.0035633 8.48644e-07 7.43859e-07 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| what , in ||| 0.0196078 0.605812 8.48644e-07 7.72681e-05 2.718 ||| 0-2 ||| 51 1.17835e+06 +en ||| what , on ||| 0.142857 0.22993 8.48644e-07 1.38962e-05 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| what I am talking about ||| 0.00833333 0.0060084 8.48644e-07 6.73902e-16 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| what I am talking ||| 0.166667 0.0060084 8.48644e-07 4.76492e-13 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| what I am ||| 0.00326797 0.0060084 8.48644e-07 4.3555e-09 2.718 ||| 0-1 ||| 306 1.17835e+06 +en ||| what I have said that we are ||| 1 0.0060084 8.48644e-07 4.8593e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| what I have said that we ||| 0.5 0.0060084 8.48644e-07 3.20266e-15 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| what I have said that ||| 0.333333 0.0060084 8.48644e-07 2.82116e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| what I have said ||| 0.00724638 0.0060084 8.48644e-07 1.6771e-11 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| what I have ||| 0.00373832 0.0060084 1.69729e-06 4.07757e-08 2.718 ||| 0-1 ||| 535 1.17835e+06 +en ||| what I would like to say is ||| 0.0769231 0.0035633 8.48644e-07 7.66489e-17 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| what I would like to say ||| 0.025 0.0035633 8.48644e-07 2.44563e-15 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| what I would like to ||| 0.0138889 0.0035633 8.48644e-07 2.55873e-12 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| what I would like ||| 0.00446429 0.0035633 8.48644e-07 2.87957e-11 2.718 ||| 0-0 ||| 224 1.17835e+06 +en ||| what I would ||| 0.0120482 0.0035633 8.48644e-07 1.62147e-08 2.718 ||| 0-0 ||| 83 1.17835e+06 +en ||| what I ||| 0.00181984 0.0060084 3.39458e-06 3.40939e-06 2.718 ||| 0-1 ||| 2198 1.17835e+06 +en ||| what about ||| 0.00243902 0.0401564 8.48644e-07 4.02142e-06 2.718 ||| 0-1 ||| 410 1.17835e+06 +en ||| what amounts to ||| 0.0416667 0.0035633 8.48644e-07 2.09983e-09 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| what amounts ||| 0.025641 0.0035633 8.48644e-07 2.36313e-08 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| what are on ||| 1 0.22993 8.48644e-07 1.768e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| what are we to think in ||| 1 0.605812 8.48644e-07 3.79315e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| what are ||| 0.00155885 0.0035633 1.69729e-06 5.92646e-06 2.718 ||| 0-0 ||| 1283 1.17835e+06 +en ||| what can be decided at ||| 0.333333 0.321886 8.48644e-07 2.06937e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| what emerged from ||| 0.0909091 0.0308834 8.48644e-07 1.28668e-10 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| what extent and with what objectives ? ||| 0.5 0.0535436 8.48644e-07 4.41962e-22 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| what extent and with what objectives ||| 0.5 0.0535436 8.48644e-07 2.58609e-18 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| what extent and with what ||| 0.5 0.0535436 8.48644e-07 5.52583e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| what extent and with ||| 0.5 0.0535436 8.48644e-07 3.9383e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| what happened in ||| 0.00322581 0.605812 8.48644e-07 4.01066e-08 2.718 ||| 0-2 ||| 310 1.17835e+06 +en ||| what happened to ||| 0.00952381 0.0247351 8.48644e-07 2.44126e-09 2.718 ||| 0-2 ||| 105 1.17835e+06 +en ||| what happens in ||| 0.0105263 0.605812 1.69729e-06 3.86811e-08 2.718 ||| 0-2 ||| 190 1.17835e+06 +en ||| what has been done in ||| 0.03125 0.605812 8.48644e-07 5.07842e-12 2.718 ||| 0-4 ||| 32 1.17835e+06 +en ||| what has been said by ||| 0.0119048 0.0468744 8.48644e-07 8.43855e-14 2.718 ||| 0-4 ||| 84 1.17835e+06 +en ||| what has come to ||| 0.166667 0.0247351 8.48644e-07 1.72417e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| what has ||| 0.000595238 0.0035633 8.48644e-07 2.01061e-06 2.718 ||| 0-0 ||| 1680 1.17835e+06 +en ||| what impact ||| 0.0144928 0.0035633 8.48644e-07 3.21854e-08 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| what in ||| 0.0625 0.605812 4.24322e-06 0.000647925 2.718 ||| 0-1 ||| 80 1.17835e+06 +en ||| what is at stake in ||| 0.047619 0.605812 8.48644e-07 2.56797e-12 2.718 ||| 0-4 ||| 21 1.17835e+06 +en ||| what is at ||| 0.00759494 0.321886 2.54593e-06 1.75908e-06 2.718 ||| 0-2 ||| 395 1.17835e+06 +en ||| what is available on ||| 0.5 0.22993 8.48644e-07 1.16171e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| what is being done about ||| 0.166667 0.0401564 8.48644e-07 1.63555e-13 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| what is being ||| 0.0026178 0.0035633 8.48644e-07 3.48378e-08 2.718 ||| 0-0 ||| 382 1.17835e+06 +en ||| what is best ||| 0.0142857 0.0035633 8.48644e-07 1.69549e-09 2.718 ||| 0-0 ||| 70 1.17835e+06 +en ||| what is factually ||| 0.25 0.126437 8.48644e-07 3.2981e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| what is going on in ||| 0.00714286 0.605812 8.48644e-07 1.16279e-10 2.718 ||| 0-4 ||| 140 1.17835e+06 +en ||| what is happening in ||| 0.00169492 0.605812 8.48644e-07 1.10265e-09 2.718 ||| 0-3 ||| 590 1.17835e+06 +en ||| what is in ||| 0.0176471 0.605812 2.54593e-06 2.03067e-05 2.718 ||| 0-2 ||| 170 1.17835e+06 +en ||| what is known colloquially as ||| 1 0.066968 8.48644e-07 6.09633e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| what is more , I ||| 0.0833333 0.0035633 8.48644e-07 2.35828e-11 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| what is more , that is in ||| 1 0.605812 8.48644e-07 2.91565e-12 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| what is more , ||| 0.00204918 0.0035633 1.69729e-06 3.33396e-09 2.718 ||| 0-0 ||| 976 1.17835e+06 +en ||| what is more ||| 0.00179533 0.0035633 1.69729e-06 2.79567e-08 2.718 ||| 0-0 ||| 1114 1.17835e+06 +en ||| what is needed in Kosovo , ||| 1 0.605812 8.48644e-07 7.9444e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| what is needed in Kosovo ||| 0.5 0.605812 8.48644e-07 6.66171e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| what is needed in this ||| 0.142857 0.605812 8.48644e-07 1.7569e-11 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| what is needed in ||| 0.0625 0.605812 1.69729e-06 2.71907e-09 2.718 ||| 0-3 ||| 32 1.17835e+06 +en ||| what is new in ||| 0.166667 0.605812 8.48644e-07 1.21373e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| what is on ||| 0.015625 0.22993 8.48644e-07 3.65203e-06 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| what is reflected ||| 0.333333 0.0024643 8.48644e-07 1.49514e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| what is required on ||| 1 0.22993 8.48644e-07 5.79577e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| what is said in ||| 0.030303 0.605812 8.48644e-07 8.35214e-09 2.718 ||| 0-3 ||| 33 1.17835e+06 +en ||| what is to be decided in ||| 0.25 0.605812 8.48644e-07 2.23676e-12 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| what is to become ||| 0.0526316 0.219193 8.48644e-07 1.49404e-08 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| what is very much on ||| 1 0.22993 8.48644e-07 1.27542e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| what is ||| 0.000847386 0.0035633 8.48644e-06 1.22418e-05 2.718 ||| 0-0 ||| 11801 1.17835e+06 +en ||| what it says in ||| 0.0666667 0.605812 8.48644e-07 7.96183e-10 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| what it says on ||| 0.0833333 0.22993 8.48644e-07 1.43188e-10 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| what it wants and we shall be ||| 0.142857 0.0035633 8.48644e-07 4.86283e-19 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| what it wants and we shall ||| 0.142857 0.0035633 8.48644e-07 2.68325e-17 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| what it wants and we ||| 0.142857 0.0035633 8.48644e-07 4.90898e-14 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| what it wants and ||| 0.0526316 0.0035633 8.48644e-07 4.32422e-12 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| what it wants ||| 0.0149254 0.0035633 8.48644e-07 3.45222e-10 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| what it ||| 0.00240577 0.0080472 2.54593e-06 3.86961e-06 2.718 ||| 0-1 ||| 1247 1.17835e+06 +en ||| what matters above ||| 0.25 0.0146514 8.48644e-07 2.8605e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| what matters at the ||| 0.5 0.321886 8.48644e-07 6.37459e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| what matters at ||| 0.333333 0.321886 8.48644e-07 1.03835e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| what needs to be ||| 0.00775194 0.0247351 8.48644e-07 1.41734e-10 2.718 ||| 0-2 ||| 129 1.17835e+06 +en ||| what needs to ||| 0.00546448 0.0247351 8.48644e-07 7.82071e-09 2.718 ||| 0-2 ||| 183 1.17835e+06 +en ||| what power do we have over ||| 1 0.157937 8.48644e-07 3.91527e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| what strikes ||| 0.142857 0.0035633 8.48644e-07 4.06224e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| what the distinction between these terms is ||| 1 0.0014765 8.48644e-07 8.51975e-22 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| what the distinction between these terms ||| 1 0.0014765 8.48644e-07 2.71839e-20 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| what the distinction between these ||| 1 0.0014765 8.48644e-07 2.47667e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| what the rapporteur means ; in ||| 1 0.605812 8.48644e-07 5.61317e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| what they are in ||| 0.0833333 0.605812 8.48644e-07 3.20876e-08 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| what they feel are ||| 1 0.0035633 8.48644e-07 3.27106e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| what they feel ||| 0.2 0.0035633 8.48644e-07 2.15589e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| what they say on ||| 1 0.22993 8.48644e-07 3.63527e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| what they ||| 0.00112233 0.0035633 8.48644e-07 1.27492e-06 2.718 ||| 0-0 ||| 891 1.17835e+06 +en ||| what this in ||| 0.5 0.605812 8.48644e-07 4.1865e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| what to ||| 0.00515464 0.0141492 8.48644e-07 1.09791e-05 2.718 ||| 0-0 0-1 ||| 194 1.17835e+06 +en ||| what usually happens in such ||| 0.1 0.605812 8.48644e-07 1.24042e-15 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| what usually happens in ||| 0.0714286 0.605812 8.48644e-07 5.99557e-13 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| what was at issue in ||| 0.5 0.605812 8.48644e-07 6.43296e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| what was done at ||| 0.2 0.321886 8.48644e-07 8.01854e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| what was done in ||| 0.0769231 0.605812 8.48644e-07 9.25657e-10 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| what was possible ||| 0.0625 0.0035633 8.48644e-07 9.8157e-10 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| what was to be done with ||| 0.5 0.0535436 8.48644e-07 3.76354e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| what was ||| 0.000714796 0.0035633 8.48644e-07 1.22375e-06 2.718 ||| 0-0 ||| 1399 1.17835e+06 +en ||| what we are getting at ||| 1 0.321886 8.48644e-07 1.12337e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| what we are taking ||| 0.333333 0.0153333 8.48644e-07 4.16168e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| what we are ||| 0.00109051 0.0035633 1.69729e-06 6.72789e-08 2.718 ||| 0-0 ||| 1834 1.17835e+06 +en ||| what we do ||| 0.0027933 0.00448575 8.48644e-07 3.03776e-09 2.718 ||| 0-0 0-1 ||| 358 1.17835e+06 +en ||| what we have ||| 0.0011274 0.0035633 1.69729e-06 5.30322e-08 2.718 ||| 0-0 ||| 1774 1.17835e+06 +en ||| what we in ||| 0.0238095 0.605812 8.48644e-07 7.35544e-06 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| what we say at ||| 0.5 0.321886 8.48644e-07 6.09006e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| what we ||| 0.00169683 0.0035633 5.09187e-06 4.43421e-06 2.718 ||| 0-0 ||| 3536 1.17835e+06 +en ||| what will in ||| 0.5 0.605812 8.48644e-07 5.60533e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| what would be recorded in ||| 1 0.605812 8.48644e-07 1.44026e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| what you get ||| 0.0909091 0.0035633 8.48644e-07 5.51366e-10 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| what you ||| 0.000684463 0.0035633 8.48644e-07 1.26113e-06 2.718 ||| 0-0 ||| 1461 1.17835e+06 +en ||| what ||| 0.00116874 0.0035633 8.57131e-05 0.0003906 2.718 ||| 0-0 ||| 86418 1.17835e+06 +en ||| whatever it takes , in the ||| 1 0.605812 8.48644e-07 4.28002e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| whatever it takes , in ||| 1 0.605812 8.48644e-07 6.97165e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| whatever to do ||| 0.333333 0.0247351 8.48644e-07 5.32048e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| whatever to ||| 0.05 0.0247351 8.48644e-07 1.54877e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| whatever ||| 0.00358774 0.0182897 9.33509e-06 7.76e-05 2.718 ||| 0-0 ||| 3066 1.17835e+06 +en ||| whatsoever , ||| 0.0138889 0.0986001 8.48644e-07 1.31419e-05 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| whatsoever applied within ||| 1 0.369196 8.48644e-07 6.69985e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| whatsoever in ||| 0.0961538 0.605812 4.24322e-06 2.57674e-05 2.718 ||| 0-1 ||| 52 1.17835e+06 +en ||| whatsoever of ||| 0.0208333 0.0986001 8.48644e-07 5.99091e-06 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| whatsoever on ||| 0.133333 0.22993 3.39458e-06 4.6341e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| whatsoever ||| 0.0107759 0.0986001 8.48644e-06 0.0001102 2.718 ||| 0-0 ||| 928 1.17835e+06 +en ||| wheels in ||| 0.333333 0.605812 8.48644e-07 1.4777e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| when " ||| 1 0.142731 8.48644e-07 1.40974e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when , and in ||| 0.25 0.605812 8.48644e-07 3.44829e-07 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| when , as ||| 0.015625 0.142731 8.48644e-07 7.24471e-06 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| when , at the time of ||| 1 0.142731 8.48644e-07 1.6289e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when , at the time ||| 1 0.142731 8.48644e-07 2.99628e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when , at the ||| 0.03125 0.142731 8.48644e-07 1.82511e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| when , at ||| 0.0208333 0.142731 8.48644e-07 2.97288e-06 2.718 ||| 0-0 ||| 48 1.17835e+06 +en ||| when , in ||| 0.0106952 0.605812 1.69729e-06 2.75293e-05 2.718 ||| 0-2 ||| 187 1.17835e+06 +en ||| when , ||| 0.0137131 0.142731 1.10324e-05 0.000709959 2.718 ||| 0-0 ||| 948 1.17835e+06 +en ||| when - and this is ||| 1 0.142731 8.48644e-07 5.69627e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when - and this ||| 1 0.142731 8.48644e-07 1.81751e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when - and ||| 0.25 0.142731 8.48644e-07 2.81287e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| when - ||| 0.0625 0.142731 8.48644e-07 2.24564e-05 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| when Côte ||| 0.5 0.142731 8.48644e-07 1.48833e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when Europe ||| 0.00478469 0.142731 8.48644e-07 3.01237e-06 2.718 ||| 0-0 ||| 209 1.17835e+06 +en ||| when I am in ||| 0.0769231 0.605812 8.48644e-07 2.086e-09 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| when I attended ||| 0.125 0.142731 8.48644e-07 4.71639e-10 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| when I bought ||| 0.25 0.142731 8.48644e-07 1.9792e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| when I hear it ||| 1 0.142731 8.48644e-07 7.60095e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when I hear ||| 0.00775194 0.142731 8.48644e-07 4.27423e-09 2.718 ||| 0-0 ||| 129 1.17835e+06 +en ||| when I listen to Mr Tomlinson ||| 1 0.142731 8.48644e-07 1.06966e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when I listen to Mr ||| 1 0.142731 8.48644e-07 3.68847e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when I listen to ||| 0.0454545 0.142731 8.48644e-07 5.65024e-11 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| when I listen ||| 0.047619 0.142731 8.48644e-07 6.35871e-10 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| when I look back at ||| 0.5 0.321886 8.48644e-07 2.77329e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| when I make ||| 0.166667 0.142731 8.48644e-07 7.31799e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| when I meet her in ||| 1 0.605812 8.48644e-07 5.40276e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| when I meet you ||| 0.5 0.142731 8.48644e-07 1.65331e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when I meet ||| 0.0588235 0.142731 8.48644e-07 5.12066e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| when I presented ||| 0.0645161 0.142731 1.69729e-06 3.31832e-09 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| when I say that ||| 0.00485437 0.142731 8.48644e-07 6.77059e-10 2.718 ||| 0-0 ||| 206 1.17835e+06 +en ||| when I say ||| 0.0295858 0.142731 8.48644e-06 4.02494e-08 2.718 ||| 0-0 ||| 338 1.17835e+06 +en ||| when I voted for it in ||| 1 0.196303 8.48644e-07 2.4866e-14 2.718 ||| 0-0 0-3 0-4 0-5 ||| 1 1.17835e+06 +en ||| when I was ||| 0.00303951 0.142731 8.48644e-07 1.31933e-07 2.718 ||| 0-0 ||| 329 1.17835e+06 +en ||| when I ||| 0.0228571 0.142731 2.3762e-05 4.21107e-05 2.718 ||| 0-0 ||| 1225 1.17835e+06 +en ||| when Union ||| 0.166667 0.142731 8.48644e-07 3.31837e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| when a ||| 0.00740741 0.142731 5.09187e-06 0.000263885 2.718 ||| 0-0 ||| 810 1.17835e+06 +en ||| when addressing ||| 0.03125 0.142731 8.48644e-07 1.07159e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| when all is said and done , ||| 0.0163934 0.0010182 8.48644e-07 1.5279e-18 2.718 ||| 0-4 ||| 61 1.17835e+06 +en ||| when all is said and done ||| 0.0243902 0.142731 1.69729e-06 2.0713e-15 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| when all is said and ||| 0.0212766 0.142731 1.69729e-06 4.54233e-12 2.718 ||| 0-0 ||| 94 1.17835e+06 +en ||| when all is said ||| 0.0243902 0.142731 1.69729e-06 3.62635e-10 2.718 ||| 0-0 ||| 82 1.17835e+06 +en ||| when all is ||| 0.025 0.142731 1.69729e-06 8.81679e-07 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| when all ||| 0.00653595 0.142731 1.69729e-06 2.81317e-05 2.718 ||| 0-0 ||| 306 1.17835e+06 +en ||| when amounts ||| 0.25 0.142731 8.48644e-07 3.60175e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| when an institution is called upon ||| 1 0.142731 8.48644e-07 9.33344e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when an institution is called ||| 1 0.142731 8.48644e-07 3.93484e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when an institution is ||| 1 0.142731 8.48644e-07 2.264e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when an institution ||| 0.333333 0.142731 8.48644e-07 7.22375e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| when an ||| 0.00833333 0.142731 8.48644e-07 2.64606e-05 2.718 ||| 0-0 ||| 120 1.17835e+06 +en ||| when and ||| 0.0119048 0.142731 1.69729e-06 7.45704e-05 2.718 ||| 0-0 ||| 168 1.17835e+06 +en ||| when asked ||| 0.03125 0.142731 8.48644e-07 4.50069e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| when back home in ||| 1 0.605812 8.48644e-07 1.57595e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| when being ||| 0.2 0.142731 8.48644e-07 1.69419e-05 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| when carrying out ||| 0.0526316 0.142731 1.69729e-06 1.37961e-09 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| when carrying ||| 0.0714286 0.142731 1.69729e-06 3.60175e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| when combating violence against ||| 0.5 0.142731 8.48644e-07 1.61222e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when combating violence ||| 0.5 0.142731 8.48644e-07 6.757e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when combating ||| 0.047619 0.142731 8.48644e-07 2.97665e-08 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| when conducting ||| 0.2 0.142731 8.48644e-07 7.26303e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| when confronted with ||| 0.0434783 0.0535436 8.48644e-07 5.88657e-11 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| when considered in ||| 0.333333 0.605812 8.48644e-07 2.48389e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| when considered within ||| 1 0.176309 8.48644e-07 4.85118e-09 2.718 ||| 0-0 0-1 0-2 ||| 1 1.17835e+06 +en ||| when considering ||| 0.00371747 0.142731 8.48644e-07 1.7979e-07 2.718 ||| 0-0 ||| 269 1.17835e+06 +en ||| when dealing with ||| 0.0286885 0.0535436 5.94051e-06 6.02062e-10 2.718 ||| 0-2 ||| 244 1.17835e+06 +en ||| when dealing ||| 0.0285714 0.142731 2.54593e-06 6.14976e-07 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| when decisions ||| 0.0222222 0.142731 8.48644e-07 4.54237e-07 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| when devising ||| 0.0625 0.142731 8.48644e-07 1.48833e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| when discussing ||| 0.0077821 0.142731 1.69729e-06 2.10151e-07 2.718 ||| 0-0 ||| 257 1.17835e+06 +en ||| when drafting ||| 0.0105263 0.142731 8.48644e-07 8.81088e-08 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| when drawing up ||| 0.00645161 0.142731 8.48644e-07 1.0091e-09 2.718 ||| 0-0 ||| 155 1.17835e+06 +en ||| when drawing ||| 0.04 0.142731 8.48644e-07 2.95879e-07 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| when driftnets are ||| 1 0.142731 8.48644e-07 6.32293e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when driftnets ||| 1 0.142731 8.48644e-07 4.16731e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when exposure takes place in ||| 1 0.605812 8.48644e-07 2.91764e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| when faced ||| 0.0166667 0.142731 8.48644e-07 3.76844e-07 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| when feelings are ||| 1 0.142731 8.48644e-07 8.4908e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when feelings ||| 1 0.142731 8.48644e-07 5.5961e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when formulating ||| 0.0192308 0.142731 8.48644e-07 6.54863e-09 2.718 ||| 0-0 ||| 52 1.17835e+06 +en ||| when given ||| 0.5 0.142731 8.48644e-07 4.08575e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when he assumes ||| 1 0.142731 8.48644e-07 1.50668e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when he comes ||| 0.0625 0.142731 8.48644e-07 2.07714e-09 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| when he delivers ||| 1 0.142731 8.48644e-07 5.71499e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when he insists ||| 1 0.170738 8.48644e-07 3.35626e-10 2.718 ||| 0-0 0-2 ||| 1 1.17835e+06 +en ||| when he responds ||| 0.166667 0.142731 8.48644e-07 1.29886e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| when he says ||| 0.0189573 0.142731 3.39458e-06 3.59005e-10 2.718 ||| 0-0 ||| 211 1.17835e+06 +en ||| when he states ||| 0.025641 0.142731 8.48644e-07 3.90697e-10 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| when he was ||| 0.00826446 0.142731 8.48644e-07 1.62773e-08 2.718 ||| 0-0 ||| 121 1.17835e+06 +en ||| when he ||| 0.035524 0.142731 1.69729e-05 5.19544e-06 2.718 ||| 0-0 ||| 563 1.17835e+06 +en ||| when huge influxes ||| 0.5 0.142731 8.48644e-07 1.24305e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when huge ||| 0.5 0.142731 8.48644e-07 3.10762e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when in ||| 0.0416667 0.374272 7.6378e-06 0.00274912 2.718 ||| 0-0 0-1 ||| 216 1.17835e+06 +en ||| when it acts ||| 0.0714286 0.142731 8.48644e-07 6.02393e-09 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| when it addresses the ||| 0.5 0.142731 8.48644e-07 3.24974e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when it addresses ||| 0.2 0.142731 8.48644e-07 5.29344e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| when it became ||| 0.0454545 0.137638 8.48644e-07 2.25624e-09 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| when it came down to it ||| 0.25 0.142731 8.48644e-07 1.47151e-14 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| when it came down to ||| 0.2 0.142731 8.48644e-07 8.27472e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| when it came down ||| 0.166667 0.142731 8.48644e-07 9.31228e-12 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| when it came to ||| 0.0368421 0.142731 5.94051e-06 1.18532e-09 2.718 ||| 0-0 ||| 190 1.17835e+06 +en ||| when it came ||| 0.0361991 0.142731 6.78915e-06 1.33395e-08 2.718 ||| 0-0 ||| 221 1.17835e+06 +en ||| when it comes down to ||| 0.0322581 0.142731 8.48644e-07 2.62558e-12 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| when it comes down ||| 0.0263158 0.142731 8.48644e-07 2.9548e-11 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| when it comes to putting ||| 0.047619 0.142731 8.48644e-07 4.2086e-13 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| when it comes to state ||| 1 0.142731 8.48644e-07 9.50039e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when it comes to success ||| 1 0.142731 8.48644e-07 2.23406e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when it comes to the water in ||| 1 0.142731 8.48644e-07 2.81213e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when it comes to the water ||| 1 0.142731 8.48644e-07 1.3138e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when it comes to the ||| 0.00387597 0.142731 2.54593e-06 2.30897e-10 2.718 ||| 0-0 ||| 774 1.17835e+06 +en ||| when it comes to ||| 0.0257732 0.142731 9.33509e-05 3.76104e-09 2.718 ||| 0-0 ||| 4268 1.17835e+06 +en ||| when it comes ||| 0.0287492 0.142731 0.000113718 4.23263e-08 2.718 ||| 0-0 ||| 4661 1.17835e+06 +en ||| when it discusses ||| 0.25 0.142731 8.48644e-07 1.90564e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| when it goes to ||| 0.5 0.0837332 8.48644e-07 4.12147e-10 2.718 ||| 0-0 0-3 ||| 2 1.17835e+06 +en ||| when it held out ||| 0.25 0.142731 8.48644e-07 1.03448e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| when it held ||| 0.142857 0.142731 8.48644e-07 2.70071e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| when it is a ||| 0.0357143 0.142731 1.69729e-06 1.47075e-07 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| when it is becoming ||| 0.5 0.142731 8.48644e-07 3.41427e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when it is done in ||| 1 0.605812 8.48644e-07 5.86689e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| when it is needed , ||| 0.25 0.142731 8.48644e-07 5.29832e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| when it is needed ||| 0.0555556 0.142731 8.48644e-07 4.44286e-10 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| when it is put to ||| 0.5 0.142731 1.69729e-06 3.25085e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| when it is put ||| 0.142857 0.142731 8.48644e-07 3.65847e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| when it is ||| 0.0104275 0.142731 8.48644e-06 3.31804e-06 2.718 ||| 0-0 ||| 959 1.17835e+06 +en ||| when it makes ||| 0.0526316 0.142731 8.48644e-07 1.79871e-08 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| when it proposed ||| 0.0769231 0.142731 8.48644e-07 1.18149e-08 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| when it really ||| 0.25 0.142731 8.48644e-07 5.12828e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| when it says : ||| 0.5 0.142731 8.48644e-07 2.46387e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when it says ||| 0.0217391 0.142731 8.48644e-07 7.31553e-09 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| when it should be ||| 0.047619 0.142731 8.48644e-07 8.50153e-09 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| when it should ||| 0.0666667 0.142731 1.69729e-06 4.69104e-07 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| when it was a ||| 0.1 0.142731 8.48644e-07 1.47023e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| when it was noted in ||| 1 0.605812 8.48644e-07 3.9356e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| when it was ||| 0.00719424 0.142731 1.69729e-06 3.31687e-07 2.718 ||| 0-0 ||| 278 1.17835e+06 +en ||| when it works out ||| 1 0.142731 8.48644e-07 1.67885e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when it works ||| 0.5 0.142731 8.48644e-07 4.38297e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when it ||| 0.101792 0.142731 0.000496457 0.000105869 2.718 ||| 0-0 ||| 5747 1.17835e+06 +en ||| when left at such ||| 1 0.321886 8.48644e-07 7.81513e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| when left at ||| 1 0.321886 8.48644e-07 3.77743e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| when living in ||| 1 0.605812 8.48644e-07 1.93448e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| when measured against normal ||| 1 0.142731 8.48644e-07 2.80597e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when measured against ||| 0.125 0.142731 8.48644e-07 1.69034e-11 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| when measured ||| 0.0833333 0.142731 8.48644e-07 7.08443e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| when meting ||| 0.5 0.142731 8.48644e-07 2.38132e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when more ||| 0.04 0.142731 1.69729e-06 1.35956e-05 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| when needed ||| 0.05 0.142731 8.48644e-07 7.97147e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| when on ||| 0.0555556 0.142731 8.48644e-07 3.98335e-05 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| when one of ||| 0.0294118 0.142731 8.48644e-07 1.34895e-06 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| when one visits such ||| 1 0.142731 8.48644e-07 2.56682e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when one visits ||| 1 0.142731 8.48644e-07 1.24067e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when one ||| 0.0127551 0.142731 4.24322e-06 2.48134e-05 2.718 ||| 0-0 ||| 392 1.17835e+06 +en ||| when over ||| 0.125 0.142731 8.48644e-07 2.86651e-06 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| when people in ||| 1 0.374272 8.48644e-07 2.41978e-06 2.718 ||| 0-0 0-2 ||| 1 1.17835e+06 +en ||| when phasing ||| 1 0.142731 8.48644e-07 1.90506e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when planning ||| 0.0172414 0.142731 8.48644e-07 1.67288e-07 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| when preliminary ||| 1 0.142731 8.48644e-07 5.35797e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when preparing ||| 0.00793651 0.142731 8.48644e-07 8.81088e-08 2.718 ||| 0-0 ||| 126 1.17835e+06 +en ||| when previously in ||| 0.5 0.605812 8.48644e-07 7.89488e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| when price levels ||| 0.5 0.142731 8.48644e-07 4.02779e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when price ||| 0.5 0.142731 8.48644e-07 3.04214e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when pursuing all ||| 0.5 0.142731 8.48644e-07 6.89227e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when pursuing ||| 0.1 0.142731 8.48644e-07 1.45856e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| when reorganizing ||| 1 0.142731 8.48644e-07 2.38132e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when securities are offered ||| 0.2 0.142731 8.48644e-07 5.50095e-15 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| when securities are ||| 0.166667 0.142731 8.48644e-07 1.26459e-10 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| when securities ||| 0.166667 0.142731 8.48644e-07 8.33462e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| when seeing ||| 0.25 0.142731 8.48644e-07 3.17311e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| when seen in ||| 0.5 0.249858 8.48644e-07 1.8694e-08 2.718 ||| 0-0 0-1 0-2 ||| 2 1.17835e+06 +en ||| when sending ||| 1 0.142731 8.48644e-07 1.36926e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when set ||| 0.222222 0.142731 1.69729e-06 3.47911e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| when she says ||| 0.0322581 0.142731 1.69729e-06 1.16953e-10 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| when she stresses ||| 0.333333 0.158484 8.48644e-07 2.43046e-10 2.718 ||| 0-0 0-2 ||| 3 1.17835e+06 +en ||| when she ||| 0.0222222 0.142731 2.54593e-06 1.69252e-06 2.718 ||| 0-0 ||| 135 1.17835e+06 +en ||| when small and ||| 0.25 0.142731 8.48644e-07 9.55247e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| when small ||| 0.142857 0.142731 8.48644e-07 7.62618e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| when so ||| 0.037037 0.142731 8.48644e-07 1.35122e-05 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| when something goes ||| 0.0714286 0.142731 8.48644e-07 4.56378e-10 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| when something ||| 0.0285714 0.142731 8.48644e-07 3.29515e-06 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| when speaking in ||| 0.25 0.605812 8.48644e-07 2.65009e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| when speaking ||| 0.0350877 0.142731 1.69729e-06 6.83439e-07 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| when striving ||| 0.333333 0.142731 8.48644e-07 4.04824e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| when such ||| 0.0125 0.142731 8.48644e-07 1.23168e-05 2.718 ||| 0-0 ||| 80 1.17835e+06 +en ||| when tackling ||| 0.0384615 0.142731 8.48644e-07 1.22043e-07 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| when taking on ||| 0.5 0.142731 8.48644e-07 1.69293e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when taking ||| 0.0108696 0.142731 8.48644e-07 2.53015e-06 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| when that country was found guilty ||| 1 0.142731 8.48644e-07 5.23782e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when that country was found ||| 1 0.142731 8.48644e-07 2.47067e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when that country was ||| 1 0.142731 8.48644e-07 1.12919e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when that country ||| 0.166667 0.142731 8.48644e-07 3.60418e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| when that ||| 0.00540541 0.142731 8.48644e-07 0.000100144 2.718 ||| 0-0 ||| 185 1.17835e+06 +en ||| when the House is in ||| 1 0.374272 8.48644e-07 1.32292e-09 2.718 ||| 0-0 0-4 ||| 1 1.17835e+06 +en ||| when the data were collected in ||| 1 0.605812 8.48644e-07 1.49508e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| when the express desire ||| 1 0.142731 8.48644e-07 1.73612e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when the express ||| 1 0.142731 8.48644e-07 3.70966e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when the policy ||| 0.25 0.142731 8.48644e-07 1.43891e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| when the time comes ||| 0.00478469 0.142731 8.48644e-07 2.39886e-10 2.718 ||| 0-0 ||| 209 1.17835e+06 +en ||| when the time ||| 0.0116279 0.142731 8.48644e-07 6.00015e-07 2.718 ||| 0-0 ||| 86 1.17835e+06 +en ||| when the ||| 0.00260018 0.142731 1.4427e-05 0.000365484 2.718 ||| 0-0 ||| 6538 1.17835e+06 +en ||| when there has ||| 0.0625 0.142731 8.48644e-07 9.39349e-08 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| when there is ||| 0.00607287 0.142731 2.54593e-06 5.71933e-07 2.718 ||| 0-0 ||| 494 1.17835e+06 +en ||| when there ||| 0.0114613 0.142731 3.39458e-06 1.82487e-05 2.718 ||| 0-0 ||| 349 1.17835e+06 +en ||| when these ||| 0.00462963 0.142731 8.48644e-07 6.17417e-06 2.718 ||| 0-0 ||| 216 1.17835e+06 +en ||| when they affect ||| 0.111111 0.142731 8.48644e-07 4.54699e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| when they are at ||| 0.0769231 0.321886 8.48644e-07 9.90325e-10 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| when they are in ||| 0.037037 0.605812 8.48644e-07 1.14323e-08 2.718 ||| 0-3 ||| 27 1.17835e+06 +en ||| when they are ||| 0.00688468 0.142731 3.39458e-06 2.94829e-07 2.718 ||| 0-0 ||| 581 1.17835e+06 +en ||| when they concern ||| 0.0769231 0.142731 8.48644e-07 2.59411e-09 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| when they live ||| 0.142857 0.142731 8.48644e-07 1.9587e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| when they pointed ||| 0.5 0.142731 8.48644e-07 8.95795e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when they took ||| 0.2 0.142731 8.48644e-07 2.86616e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| when they wish ||| 0.125 0.142731 8.48644e-07 5.72648e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| when they ||| 0.01748 0.142731 2.03675e-05 1.94316e-05 2.718 ||| 0-0 ||| 1373 1.17835e+06 +en ||| when things ||| 0.0105263 0.142731 8.48644e-07 2.44681e-06 2.718 ||| 0-0 ||| 95 1.17835e+06 +en ||| when this aspect is debated ||| 1 0.142731 8.48644e-07 7.05449e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when this aspect is ||| 1 0.142731 8.48644e-07 8.49939e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when this aspect ||| 1 0.142731 8.48644e-07 2.7119e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when this concerned ||| 1 0.142731 8.48644e-07 6.18775e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when this ideal is put ||| 0.5 0.142731 8.48644e-07 1.24952e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when this ideal is ||| 0.5 0.142731 8.48644e-07 1.13325e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when this ideal ||| 0.5 0.142731 8.48644e-07 3.61587e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when this ||| 0.00785855 0.142731 3.39458e-06 3.84667e-05 2.718 ||| 0-0 ||| 509 1.17835e+06 +en ||| when threatened ||| 0.5 0.142731 8.48644e-07 4.70311e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when undertaking ||| 0.117647 0.142731 1.69729e-06 1.78004e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| when using ||| 0.0140845 0.142731 8.48644e-07 4.62571e-07 2.718 ||| 0-0 ||| 71 1.17835e+06 +en ||| when viewed in ||| 0.125 0.250467 8.48644e-07 3.84877e-09 2.718 ||| 0-0 0-1 0-2 ||| 8 1.17835e+06 +en ||| when we , ||| 0.0769231 0.142731 1.69729e-06 8.05967e-06 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| when we apply this instrument , ||| 1 0.142731 8.48644e-07 3.15491e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when we apply this instrument ||| 1 0.142731 8.48644e-07 2.64552e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when we apply this ||| 0.5 0.142731 8.48644e-07 6.2839e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when we apply ||| 0.111111 0.142731 8.48644e-07 9.72529e-09 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| when we are discussing ||| 0.00952381 0.142731 8.48644e-07 3.61976e-11 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| when we are in ||| 0.0285714 0.605812 8.48644e-07 3.97618e-08 2.718 ||| 0-3 ||| 35 1.17835e+06 +en ||| when we are ||| 0.00572246 0.142731 3.39458e-06 1.02543e-06 2.718 ||| 0-0 ||| 699 1.17835e+06 +en ||| when we ask ||| 0.0526316 0.142731 8.48644e-07 9.29275e-09 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| when we come back to a ||| 1 0.142731 8.48644e-07 1.5206e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when we come back to ||| 0.25 0.142731 8.48644e-07 3.4305e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| when we come back ||| 0.125 0.142731 8.48644e-07 3.86064e-11 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| when we come to ||| 0.00574713 0.142731 8.48644e-07 5.10035e-09 2.718 ||| 0-0 ||| 174 1.17835e+06 +en ||| when we come up ||| 0.5 0.142731 8.48644e-07 1.95759e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when we come ||| 0.0362694 0.142731 5.94051e-06 5.73988e-08 2.718 ||| 0-0 ||| 193 1.17835e+06 +en ||| when we discuss ||| 0.00440529 0.142731 8.48644e-07 2.81824e-09 2.718 ||| 0-0 ||| 227 1.17835e+06 +en ||| when we experience ||| 0.5 0.142731 8.48644e-07 4.67003e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when we have a ||| 0.015873 0.142731 8.48644e-07 3.5828e-08 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| when we have ||| 0.00576923 0.142731 2.54593e-06 8.08287e-07 2.718 ||| 0-0 ||| 520 1.17835e+06 +en ||| when we hold ||| 0.142857 0.142731 1.69729e-06 1.17731e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| when we implement ||| 0.0666667 0.142731 8.48644e-07 3.77117e-09 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| when we in ||| 0.04 0.605812 8.48644e-07 2.62061e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| when we listened to ||| 1 0.142731 8.48644e-07 4.08365e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when we listened ||| 0.125 0.142731 8.48644e-07 4.59569e-10 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| when we look at them on ||| 0.5 0.22993 8.48644e-07 1.54314e-15 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| when we look at ||| 0.00434783 0.321886 8.48644e-07 6.6174e-11 2.718 ||| 0-3 ||| 230 1.17835e+06 +en ||| when we look ||| 0.010989 0.142731 8.48644e-07 1.97006e-08 2.718 ||| 0-0 ||| 91 1.17835e+06 +en ||| when we now are living in ||| 1 0.605812 8.48644e-07 6.86367e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| when we ought ||| 0.2 0.142731 8.48644e-07 5.66351e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| when we put forward ||| 0.142857 0.142731 8.48644e-07 4.14617e-11 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| when we put ||| 0.0833333 0.142731 8.48644e-07 7.45177e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| when we read ||| 0.0454545 0.142731 8.48644e-07 3.25753e-09 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| when we say ||| 0.0126582 0.142731 8.48644e-07 6.45965e-08 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| when we see ||| 0.0078125 0.142731 8.48644e-07 4.76194e-08 2.718 ||| 0-0 ||| 128 1.17835e+06 +en ||| when we talk about ||| 0.00223214 0.0401564 8.48644e-07 1.30609e-12 2.718 ||| 0-3 ||| 448 1.17835e+06 +en ||| when we talk ||| 0.0114943 0.142731 1.69729e-06 5.42697e-09 2.718 ||| 0-0 ||| 174 1.17835e+06 +en ||| when we think of ||| 0.047619 0.142731 8.48644e-07 1.40535e-09 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| when we think ||| 0.0263158 0.142731 8.48644e-07 2.58507e-08 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| when we were in ||| 0.0333333 0.605812 8.48644e-07 4.69457e-09 2.718 ||| 0-3 ||| 30 1.17835e+06 +en ||| when we were ||| 0.0177515 0.142731 2.54593e-06 1.21069e-07 2.718 ||| 0-0 ||| 169 1.17835e+06 +en ||| when we will have ||| 0.027027 0.142731 8.48644e-07 6.99265e-09 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| when we will ||| 0.0294118 0.142731 8.48644e-07 5.8468e-07 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| when we ||| 0.0186047 0.142731 5.77078e-05 6.75836e-05 2.718 ||| 0-0 ||| 3655 1.17835e+06 +en ||| when working on ||| 0.0434783 0.22993 8.48644e-07 7.90463e-09 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| when working ||| 0.0232558 0.142731 8.48644e-07 1.13351e-06 2.718 ||| 0-0 ||| 43 1.17835e+06 +en ||| when world ||| 0.333333 0.142731 8.48644e-07 1.35616e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| when writing ||| 0.166667 0.142731 8.48644e-07 1.3002e-06 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| when you are in ||| 0.0714286 0.605812 8.48644e-07 1.13086e-08 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| when you are ||| 0.00862069 0.142731 8.48644e-07 2.91641e-07 2.718 ||| 0-0 ||| 116 1.17835e+06 +en ||| when you gave ||| 0.333333 0.142731 8.48644e-07 1.60499e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| when you have to accept ||| 1 0.142731 8.48644e-07 2.21226e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when you have to ||| 0.1 0.142731 8.48644e-07 2.04271e-08 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| when you have ||| 0.00884956 0.142731 8.48644e-07 2.29884e-07 2.718 ||| 0-0 ||| 113 1.17835e+06 +en ||| when you look at ||| 0.0135135 0.142731 8.48644e-07 2.34622e-11 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| when you look ||| 0.025 0.142731 8.48644e-07 5.60304e-09 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| when you say ||| 0.00943396 0.142731 8.48644e-07 1.83718e-08 2.718 ||| 0-0 ||| 106 1.17835e+06 +en ||| when you visit an ||| 1 0.142731 8.48644e-07 2.52029e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| when you visit ||| 0.5 0.142731 8.48644e-07 5.67032e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| when you ||| 0.0128558 0.142731 1.1881e-05 1.92214e-05 2.718 ||| 0-0 ||| 1089 1.17835e+06 +en ||| when ||| 0.099477 0.142731 0.00600501 0.0059533 2.718 ||| 0-0 ||| 71132 1.17835e+06 +en ||| whenever necessary ||| 0.0322581 0.0380466 8.48644e-07 1.17329e-08 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| whenever one wishes , ||| 0.2 0.0380466 8.48644e-07 1.19901e-12 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| whenever one wishes ||| 0.2 0.0380466 8.48644e-07 1.00542e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| whenever one ||| 0.0909091 0.0380466 8.48644e-07 1.90061e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| whenever they ||| 0.0285714 0.0380466 8.48644e-07 1.48838e-07 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| whenever ||| 0.0143627 0.0380466 1.35783e-05 4.56e-05 2.718 ||| 0-0 ||| 1114 1.17835e+06 +en ||| where , as ||| 0.0277778 0.247783 1.69729e-06 1.0364e-05 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| where , at ||| 0.0909091 0.247783 8.48644e-07 4.25291e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| where , when ||| 0.0625 0.142731 8.48644e-07 2.15118e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| where , ||| 0.024173 0.247783 1.61242e-05 0.00101564 2.718 ||| 0-0 ||| 786 1.17835e+06 +en ||| where European ||| 0.142857 0.247783 8.48644e-07 2.84787e-05 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| where I come ||| 0.03125 0.247783 8.48644e-07 5.11637e-08 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| where I had most ||| 1 0.247783 8.48644e-07 2.6133e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where I had ||| 0.111111 0.247783 8.48644e-07 6.04651e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| where I thought ||| 0.25 0.247783 8.48644e-07 5.00612e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where I voted ||| 1 0.122467 8.48644e-07 4.75142e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| where I would ||| 0.1 0.247783 8.48644e-07 3.53543e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| where I ||| 0.0169492 0.247783 5.94051e-06 6.02422e-05 2.718 ||| 0-0 ||| 413 1.17835e+06 +en ||| where a decision was ||| 1 0.247783 8.48644e-07 1.86042e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where a decision ||| 1 0.247783 8.48644e-07 5.93816e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where a ||| 0.00647948 0.247783 2.54593e-06 0.000377505 2.718 ||| 0-0 ||| 463 1.17835e+06 +en ||| where absolutely ||| 0.2 0.247783 1.69729e-06 8.03115e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| where access to ||| 0.0833333 0.247783 8.48644e-07 6.50822e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| where access ||| 0.0666667 0.247783 8.48644e-07 7.32428e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| where action ||| 0.0625 0.247783 8.48644e-07 2.57457e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| where actual ||| 0.2 0.247783 8.48644e-07 1.23235e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| where all ||| 0.00854701 0.247783 8.48644e-07 4.02443e-05 2.718 ||| 0-0 ||| 117 1.17835e+06 +en ||| where an appeal ||| 1 0.247783 8.48644e-07 1.14318e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where an ||| 0.0102041 0.247783 8.48644e-07 3.78537e-05 2.718 ||| 0-0 ||| 98 1.17835e+06 +en ||| where appropriate , ||| 0.00869565 0.247783 8.48644e-07 1.36706e-07 2.718 ||| 0-0 ||| 115 1.17835e+06 +en ||| where appropriate ||| 0.00502513 0.247783 8.48644e-07 1.14633e-06 2.718 ||| 0-0 ||| 199 1.17835e+06 +en ||| where arms exports are ||| 0.5 0.247783 8.48644e-07 2.3266e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| where arms exports ||| 0.5 0.247783 8.48644e-07 1.53341e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| where arms ||| 0.333333 0.247783 8.48644e-07 2.3591e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| where at ||| 0.0588235 0.284834 8.48644e-07 0.000340681 2.718 ||| 0-0 0-1 ||| 17 1.17835e+06 +en ||| where attention ||| 0.333333 0.247783 8.48644e-07 2.22539e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| where carcass inspections reveal ||| 0.2 0.247783 8.48644e-07 8.73803e-19 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| where carcass inspections ||| 0.2 0.247783 8.48644e-07 1.14974e-13 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| where carcass ||| 0.2 0.247783 8.48644e-07 2.12915e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| where children ||| 0.0454545 0.247783 8.48644e-07 6.34487e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| where clearly ||| 0.5 0.247783 8.48644e-07 1.55428e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| where collectively , ||| 1 0.247783 8.48644e-07 4.77353e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where collectively ||| 1 0.247783 8.48644e-07 4.0028e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where communal ||| 0.333333 0.247783 8.48644e-07 2.46981e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| where consumers are currently proving to be ||| 1 0.247783 8.48644e-07 9.91257e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where consumers are currently proving to ||| 1 0.247783 8.48644e-07 5.46964e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where consumers are currently proving ||| 1 0.247783 8.48644e-07 6.15547e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where consumers are currently ||| 1 0.247783 8.48644e-07 5.04547e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where consumers are ||| 0.2 0.247783 8.48644e-07 4.83282e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| where consumers ||| 0.0243902 0.247783 8.48644e-07 3.18521e-07 2.718 ||| 0-0 ||| 41 1.17835e+06 +en ||| where cultivation takes place as ||| 1 0.247783 8.48644e-07 1.40259e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where cultivation takes place ||| 1 0.247783 8.48644e-07 1.3745e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where cultivation takes ||| 1 0.247783 8.48644e-07 9.13286e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where cultivation ||| 1 0.247783 8.48644e-07 7.06878e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where drug ||| 0.333333 0.247783 8.48644e-07 1.34562e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| where each ||| 0.027027 0.247783 8.48644e-07 2.39061e-06 2.718 ||| 0-0 ||| 37 1.17835e+06 +en ||| where even ||| 0.037037 0.247783 8.48644e-07 5.18235e-06 2.718 ||| 0-0 ||| 27 1.17835e+06 +en ||| where exactly ||| 0.0526316 0.247783 8.48644e-07 8.55067e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| where far and ||| 1 0.247783 8.48644e-07 7.28291e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where far ||| 0.5 0.247783 8.48644e-07 5.81428e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| where flights are ||| 0.25 0.247783 8.48644e-07 1.07252e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where flights ||| 0.25 0.247783 8.48644e-07 7.06878e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where good ||| 0.2 0.247783 8.48644e-07 4.41671e-06 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| where he or ||| 0.2 0.247783 8.48644e-07 8.49751e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| where he took part ||| 1 0.247783 8.48644e-07 1.30699e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where he took ||| 1 0.247783 8.48644e-07 1.09628e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where he ||| 0.0144928 0.247783 1.69729e-06 7.43244e-06 2.718 ||| 0-0 ||| 138 1.17835e+06 +en ||| where healthy ||| 0.25 0.247783 8.48644e-07 7.66494e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where help ||| 0.142857 0.247783 8.48644e-07 1.62412e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| where in ||| 0.0512821 0.426797 3.39458e-06 0.0039328 2.718 ||| 0-0 0-1 ||| 78 1.17835e+06 +en ||| where it has proved difficult in ||| 1 0.605812 8.48644e-07 6.58578e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| where it is ||| 0.013468 0.247783 6.78915e-06 4.74668e-06 2.718 ||| 0-0 ||| 594 1.17835e+06 +en ||| where it seems ||| 0.25 0.247783 1.69729e-06 1.82046e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| where it was , among ||| 1 0.247783 8.48644e-07 5.07014e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where it was , ||| 0.5 0.247783 8.48644e-07 5.65864e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| where it was ||| 0.0215054 0.247783 1.69729e-06 4.745e-07 2.718 ||| 0-0 ||| 93 1.17835e+06 +en ||| where it ||| 0.0215983 0.247783 1.69729e-05 0.000151452 2.718 ||| 0-0 ||| 926 1.17835e+06 +en ||| where literally ||| 0.166667 0.247783 8.48644e-07 8.60177e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| where members ||| 0.0909091 0.247783 8.48644e-07 1.2562e-06 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| where money ||| 0.0588235 0.247783 8.48644e-07 1.39161e-06 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| where more ||| 0.0434783 0.247783 1.69729e-06 1.94494e-05 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| where necessary ||| 0.00416667 0.247783 1.69729e-06 2.19132e-06 2.718 ||| 0-0 ||| 480 1.17835e+06 +en ||| where no doubt ||| 0.333333 0.247783 8.48644e-07 6.0592e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| where no ||| 0.0113636 0.247783 8.48644e-07 6.62932e-06 2.718 ||| 0-0 ||| 88 1.17835e+06 +en ||| where not ||| 0.0666667 0.247783 1.69729e-06 2.90765e-05 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| where on closer ||| 1 0.22993 8.48644e-07 5.35986e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| where on ||| 0.333333 0.238856 1.69729e-06 0.00070729 2.718 ||| 0-0 0-1 ||| 6 1.17835e+06 +en ||| where only six thousand Roma remained out ||| 1 0.247783 8.48644e-07 1.2214e-27 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where only six thousand Roma remained ||| 1 0.247783 8.48644e-07 3.1887e-25 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where only six thousand Roma ||| 1 0.247783 8.48644e-07 2.05723e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where only six thousand ||| 1 0.247783 8.48644e-07 1.83681e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where only six ||| 1 0.247783 8.48644e-07 1.64001e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where only ||| 0.0238095 0.247783 8.48644e-07 9.47983e-06 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| where or because ||| 1 0.247783 8.48644e-07 3.19959e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where or ||| 0.142857 0.247783 8.48644e-07 9.73703e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| where other points are ||| 1 0.247783 8.48644e-07 2.17458e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where other points ||| 1 0.247783 8.48644e-07 1.43322e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where other ||| 0.0526316 0.247783 8.48644e-07 1.10333e-05 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| where over ||| 0.0454545 0.20286 8.48644e-07 3.41277e-05 2.718 ||| 0-0 0-1 ||| 22 1.17835e+06 +en ||| where political ||| 0.5 0.247783 8.48644e-07 1.52021e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| where possible ||| 0.00334448 0.247783 8.48644e-07 6.83116e-06 2.718 ||| 0-0 ||| 299 1.17835e+06 +en ||| where protected ||| 0.166667 0.247783 8.48644e-07 2.02695e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| where relevant , ||| 0.0588235 0.247783 8.48644e-07 1.09283e-07 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| where relevant ||| 0.0526316 0.247783 8.48644e-07 9.16386e-07 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| where representatives ||| 0.111111 0.247783 8.48644e-07 2.75938e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| where restructuring ||| 0.25 0.247783 8.48644e-07 6.47262e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where security ||| 0.0769231 0.247783 8.48644e-07 6.95806e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| where smokers can ||| 0.166667 0.247783 8.48644e-07 1.77316e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| where smokers ||| 0.166667 0.247783 8.48644e-07 5.96162e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| where so many ||| 0.142857 0.247783 8.48644e-07 6.63603e-09 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| where so ||| 0.105263 0.247783 1.69729e-06 1.93301e-05 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| where some ||| 0.0104167 0.247783 8.48644e-07 9.27713e-06 2.718 ||| 0-0 ||| 96 1.17835e+06 +en ||| where subsequent work ||| 1 0.247783 8.48644e-07 8.51779e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where subsequent ||| 1 0.247783 8.48644e-07 1.34562e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where such ||| 0.010989 0.247783 8.48644e-07 1.762e-05 2.718 ||| 0-0 ||| 91 1.17835e+06 +en ||| where that can be ||| 1 0.247783 8.48644e-07 7.72229e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where that can ||| 0.111111 0.247783 8.48644e-07 4.26107e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| where that ||| 0.0103093 0.247783 8.48644e-07 0.000143263 2.718 ||| 0-0 ||| 97 1.17835e+06 +en ||| where the ||| 0.00174588 0.247783 7.6378e-06 0.000522849 2.718 ||| 0-0 ||| 5155 1.17835e+06 +en ||| where there are regulations ||| 1 0.247783 8.48644e-07 1.73887e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where there are ||| 0.00831601 0.247783 3.39458e-06 3.96098e-07 2.718 ||| 0-0 ||| 481 1.17835e+06 +en ||| where there is a serious risk ||| 0.333333 0.247783 8.48644e-07 4.88819e-16 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| where there is a serious ||| 0.5 0.247783 8.48644e-07 4.17794e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| where there is a ||| 0.0107527 0.247783 2.54593e-06 3.62669e-08 2.718 ||| 0-0 ||| 279 1.17835e+06 +en ||| where there is no regulation ||| 0.142857 0.247783 8.48644e-07 4.44541e-14 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| where there is no ||| 0.00558659 0.247783 8.48644e-07 6.36878e-10 2.718 ||| 0-0 ||| 179 1.17835e+06 +en ||| where there is simply ||| 0.25 0.247783 8.48644e-07 1.81392e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where there is supposed ||| 1 0.247783 8.48644e-07 4.80277e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where there is ||| 0.00883002 0.247783 6.78915e-06 8.18189e-07 2.718 ||| 0-0 ||| 906 1.17835e+06 +en ||| where there ||| 0.0186246 0.247783 1.10324e-05 2.61059e-05 2.718 ||| 0-0 ||| 698 1.17835e+06 +en ||| where they are placed ||| 0.333333 0.247783 8.48644e-07 5.2806e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| where they are still able to do ||| 1 0.247783 8.48644e-07 8.09629e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where they are still able to ||| 1 0.247783 8.48644e-07 2.35679e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where they are still able ||| 1 0.247783 8.48644e-07 2.65231e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where they are still ||| 0.1 0.247783 8.48644e-07 3.1768e-10 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| where they are ||| 0.00831025 0.247783 2.54593e-06 4.21773e-07 2.718 ||| 0-0 ||| 361 1.17835e+06 +en ||| where they can earn ||| 0.25 0.247783 8.48644e-07 7.11049e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where they can ||| 0.0178571 0.247783 1.69729e-06 8.26801e-08 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| where they fund ||| 1 0.247783 8.48644e-07 1.05911e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where they lived now ||| 0.333333 0.247783 8.48644e-07 6.18424e-13 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| where they lived ||| 0.111111 0.247783 8.48644e-07 3.0022e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| where they ||| 0.0119332 0.247783 8.48644e-06 2.77982e-05 2.718 ||| 0-0 ||| 838 1.17835e+06 +en ||| where this very ||| 1 0.247783 8.48644e-07 1.91474e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where this ||| 0.00503778 0.247783 1.69729e-06 5.50292e-05 2.718 ||| 0-0 ||| 397 1.17835e+06 +en ||| where troublesome ||| 0.333333 0.247783 8.48644e-07 5.96162e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| where two ||| 0.0526316 0.247783 8.48644e-07 2.01332e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| where undertaken within ||| 1 0.369196 8.48644e-07 1.59565e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| where very ||| 0.0714286 0.247783 8.48644e-07 2.96335e-05 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| where violations are paid ||| 1 0.247783 8.48644e-07 2.43502e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where violations are ||| 0.333333 0.247783 8.48644e-07 1.80908e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| where violations ||| 0.25 0.247783 8.48644e-07 1.19232e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where we are ||| 0.00859599 0.247783 2.54593e-06 1.46694e-06 2.718 ||| 0-0 ||| 349 1.17835e+06 +en ||| where we call ||| 0.333333 0.247783 8.48644e-07 2.14636e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| where we can adopt ||| 0.5 0.247783 8.48644e-07 2.99067e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| where we can ||| 0.00383142 0.247783 8.48644e-07 2.87564e-07 2.718 ||| 0-0 ||| 261 1.17835e+06 +en ||| where we draw ||| 0.25 0.247783 8.48644e-07 1.14473e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where we have lost ||| 0.333333 0.247783 8.48644e-07 6.5794e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| where we have ||| 0.00396825 0.247783 1.69729e-06 1.15631e-06 2.718 ||| 0-0 ||| 504 1.17835e+06 +en ||| where we in ||| 0.111111 0.605812 8.48644e-07 1.58841e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| where we like ||| 1 0.247783 8.48644e-07 1.71699e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where we need ||| 0.00666667 0.247783 8.48644e-07 8.86486e-08 2.718 ||| 0-0 ||| 150 1.17835e+06 +en ||| where we ought to ||| 0.5 0.247783 8.48644e-07 7.19932e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| where we ought ||| 0.25 0.247783 8.48644e-07 8.10204e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where we start ||| 0.111111 0.247783 8.48644e-07 1.34293e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| where we then ||| 0.25 0.247783 8.48644e-07 1.55698e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where we were ||| 0.0238095 0.247783 8.48644e-07 1.73198e-07 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| where we will be briefed by ||| 1 0.247783 8.48644e-07 8.75416e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where we will be briefed ||| 1 0.247783 8.48644e-07 1.66743e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| where we will be ||| 0.25 0.247783 8.48644e-07 1.51584e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where we will have ||| 0.166667 0.247783 1.69729e-06 1.00035e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| where we will ||| 0.09375 0.247783 2.54593e-06 8.36424e-07 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| where we ||| 0.0146497 0.247783 1.95188e-05 9.6683e-05 2.718 ||| 0-0 ||| 1570 1.17835e+06 +en ||| where what happens ||| 0.5 0.247783 8.48644e-07 7.13394e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| where what ||| 0.1 0.247783 8.48644e-07 1.19496e-05 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| where will it end ||| 0.2 0.247783 8.48644e-07 5.70088e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| where will it ||| 0.142857 0.247783 8.48644e-07 1.31025e-06 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| where will ||| 0.0357143 0.247783 1.69729e-06 7.36788e-05 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| where women were ||| 0.25 0.247783 8.48644e-07 1.81249e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where women ||| 0.00925926 0.247783 8.48644e-07 1.01177e-06 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| where work ||| 0.0588235 0.247783 8.48644e-07 5.39101e-06 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| where you yourself are ||| 0.25 0.247783 8.48644e-07 1.87745e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where you yourself ||| 0.25 0.247783 8.48644e-07 1.23739e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| where you ||| 0.0259067 0.247783 4.24322e-06 2.74975e-05 2.718 ||| 0-0 ||| 193 1.17835e+06 +en ||| where ||| 0.105802 0.247783 0.00365851 0.0085166 2.718 ||| 0-0 ||| 40746 1.17835e+06 +en ||| where ’ ||| 1 0.247783 8.48644e-07 1.48368e-05 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| whereas in ||| 0.0233918 0.605812 3.39458e-06 8.82002e-06 2.718 ||| 0-1 ||| 171 1.17835e+06 +en ||| whereas ||| 0.00450653 0.0154721 8.48644e-06 3.33e-05 2.718 ||| 0-0 ||| 2219 1.17835e+06 +en ||| whereby a country ||| 0.333333 0.0882153 8.48644e-07 2.81089e-09 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| whereby a small shop ||| 0.333333 0.0882153 8.48644e-07 1.30063e-14 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| whereby a small ||| 0.25 0.0882153 8.48644e-07 1.00049e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| whereby a ||| 0.0307692 0.0882153 1.69729e-06 7.81021e-06 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| whereby it was the ||| 1 0.0882153 8.48644e-07 6.0268e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| whereby it was ||| 0.2 0.0882153 8.48644e-07 9.81694e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| whereby it ||| 0.04 0.0882153 8.48644e-07 3.1334e-06 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| whereby third countries would promise ||| 1 0.0174595 8.48644e-07 1.22363e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| whereby third countries would ||| 1 0.0174595 8.48644e-07 1.30174e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| whereby third countries ||| 0.333333 0.0174595 8.48644e-07 2.2181e-12 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| whereby third ||| 0.5 0.0174595 8.48644e-07 5.84172e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| whereby ||| 0.0138285 0.0882153 2.97026e-05 0.0001762 2.718 ||| 0-0 ||| 2531 1.17835e+06 +en ||| whereupon we ||| 0.111111 0.0054082 8.48644e-07 4.07502e-09 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| whereupon ||| 0.0285714 0.0081301 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| wherever ||| 0.0081103 0.082172 8.48644e-06 0.0001164 2.718 ||| 0-0 ||| 1233 1.17835e+06 +en ||| whether , in ||| 0.00862069 0.605812 8.48644e-07 1.44668e-05 2.718 ||| 0-2 ||| 116 1.17835e+06 +en ||| whether in relation ||| 0.1 0.605812 8.48644e-07 2.95147e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| whether in terms ||| 0.0294118 0.605812 8.48644e-07 1.3315e-07 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| whether in ||| 0.0429799 0.605812 1.27297e-05 0.00012131 2.718 ||| 0-1 ||| 349 1.17835e+06 +en ||| whether it be harmful ||| 0.333333 0.0080472 8.48644e-07 1.56248e-13 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| whether it be on ||| 0.2 0.22993 8.48644e-07 7.03119e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| whether it be ||| 0.00387597 0.0080472 8.48644e-07 1.313e-08 2.718 ||| 0-1 ||| 258 1.17835e+06 +en ||| whether it is in ||| 0.075 0.605812 2.54593e-06 6.76115e-08 2.718 ||| 0-3 ||| 40 1.17835e+06 +en ||| whether it spans ||| 1 0.0080472 8.48644e-07 2.898e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| whether it ||| 0.00234742 0.0080472 1.69729e-06 7.245e-07 2.718 ||| 0-1 ||| 852 1.17835e+06 +en ||| whether they be in ||| 0.0625 0.605812 8.48644e-07 7.17586e-09 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| whether to start ||| 0.2 0.0247351 8.48644e-07 1.02564e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| whether to ||| 0.00516796 0.0247351 1.69729e-06 7.38405e-06 2.718 ||| 0-1 ||| 387 1.17835e+06 +en ||| whether under ||| 0.0833333 0.205566 8.48644e-07 1.48546e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| whether we stay at ||| 1 0.321886 8.48644e-07 3.388e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| whether within ||| 0.105263 0.369196 1.69729e-06 2.91248e-06 2.718 ||| 0-1 ||| 19 1.17835e+06 +en ||| whether ||| 4.0563e-05 7.81e-05 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 24653 1.17835e+06 +en ||| which ' in ||| 1 0.605812 8.48644e-07 1.34739e-05 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which , at ||| 0.00534759 0.321886 8.48644e-07 4.05229e-05 2.718 ||| 0-2 ||| 187 1.17835e+06 +en ||| which , by ||| 0.00487805 0.0468744 8.48644e-07 8.61787e-06 2.718 ||| 0-2 ||| 205 1.17835e+06 +en ||| which , during ||| 0.0714286 0.226251 8.48644e-07 2.92895e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| which , in turn ||| 0.00847458 0.605812 8.48644e-07 1.04879e-07 2.718 ||| 0-2 ||| 118 1.17835e+06 +en ||| which , in ||| 0.00216216 0.605812 3.39458e-06 0.000467794 2.718 ||| 0-2 ||| 1850 1.17835e+06 +en ||| which , on ||| 0.00966184 0.22993 1.69729e-06 8.41298e-05 2.718 ||| 0-2 ||| 207 1.17835e+06 +en ||| which , over ||| 0.0322581 0.157937 8.48644e-07 4.05938e-06 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| which , taken at ||| 0.333333 0.321886 8.48644e-07 3.69366e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| which , when ||| 0.00934579 0.142731 8.48644e-07 6.03082e-06 2.718 ||| 0-2 ||| 107 1.17835e+06 +en ||| which , within ||| 0.047619 0.369196 8.48644e-07 1.12311e-05 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| which - at ||| 0.25 0.321886 8.48644e-07 1.28176e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| which I and ||| 0.0322581 0.0060084 8.48644e-07 2.58547e-07 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| which I chaired . ||| 0.5 0.0060084 8.48644e-07 2.00069e-13 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| which I chaired ||| 0.1 0.0060084 8.48644e-07 6.60513e-11 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| which I come in ||| 1 0.605812 8.48644e-07 2.35654e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which I have referred ||| 0.0116279 0.0060084 8.48644e-07 2.36247e-11 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| which I have ||| 0.000891266 0.0060084 8.48644e-07 2.46863e-07 2.718 ||| 0-1 ||| 1122 1.17835e+06 +en ||| which I mean also we in ||| 1 0.605812 8.48644e-07 4.0981e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| which I will quote in English , ||| 0.5 0.605812 8.48644e-07 1.97894e-17 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| which I will quote in English ||| 0.5 0.605812 8.48644e-07 1.65942e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| which I will quote in ||| 0.5 0.605812 8.48644e-07 1.07059e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| which I will say in ||| 0.5 0.605812 8.48644e-07 2.29433e-10 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| which I ||| 0.000483325 0.0060084 2.54593e-06 2.0641e-05 2.718 ||| 0-1 ||| 6207 1.17835e+06 +en ||| which Parliament has in ||| 1 0.605812 8.48644e-07 1.15901e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which actually belonged ||| 0.166667 0.125341 8.48644e-07 2.85249e-11 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| which actually ||| 0.00689655 0.125341 8.48644e-07 1.14099e-05 2.718 ||| 0-1 ||| 145 1.17835e+06 +en ||| which already looks at ||| 1 0.321886 8.48644e-07 4.13862e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which appeared at ||| 0.5 0.321886 8.48644e-07 7.57756e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| which appeared to be omitted ||| 1 0.0247351 8.48644e-07 3.08788e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which appeared to be ||| 0.166667 0.0247351 8.48644e-07 9.64962e-11 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| which appeared to ||| 0.125 0.0247351 8.48644e-07 5.32454e-09 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| which appears on ||| 0.333333 0.22993 8.48644e-07 3.68252e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| which apply in ||| 0.103448 0.605812 2.54593e-06 5.64469e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| which are a step in ||| 0.25 0.605812 8.48644e-07 3.89126e-10 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| which are about ||| 0.05 0.0401564 8.48644e-07 3.694e-07 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| which are active in ||| 0.0769231 0.605812 8.48644e-07 2.39854e-09 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| which are actually ||| 0.0333333 0.125341 8.48644e-07 1.7312e-07 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| which are aimed at ||| 0.0116279 0.321886 8.48644e-07 3.58321e-10 2.718 ||| 0-3 ||| 86 1.17835e+06 +en ||| which are also clear from ||| 1 0.0308834 8.48644e-07 8.24246e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which are also touched on in ||| 1 0.605812 8.48644e-07 1.58829e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| which are as ||| 0.0192308 0.066968 8.48644e-07 2.31839e-06 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| which are at ||| 0.075 0.321886 7.6378e-06 5.1557e-06 2.718 ||| 0-2 ||| 120 1.17835e+06 +en ||| which are being ||| 0.00823045 0.0043873 1.69729e-06 2.35861e-08 2.718 ||| 0-2 ||| 243 1.17835e+06 +en ||| which are developing too slowly ||| 1 0.279045 8.48644e-07 4.69235e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which are developing too ||| 1 0.279045 8.48644e-07 8.09026e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which are developing ||| 0.0588235 0.279045 8.48644e-07 5.94435e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| which are important for ||| 0.025 0.0286209 8.48644e-07 5.68825e-10 2.718 ||| 0-3 ||| 40 1.17835e+06 +en ||| which are in a ||| 0.04 0.605812 8.48644e-07 2.63814e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| which are in the ||| 0.0465116 0.605812 1.69729e-06 3.65386e-06 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| which are in ||| 0.0930233 0.605812 2.03675e-05 5.95171e-05 2.718 ||| 0-2 ||| 258 1.17835e+06 +en ||| which are intended to ||| 0.015873 0.0247351 8.48644e-07 3.18079e-10 2.718 ||| 0-3 ||| 63 1.17835e+06 +en ||| which are mandatory ! in ||| 1 0.605812 8.48644e-07 1.48162e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which are not at ||| 0.2 0.321886 8.48644e-07 1.76021e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| which are now in ||| 0.0526316 0.605812 8.48644e-07 1.22599e-07 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| which are now theirs with ||| 1 0.0535436 8.48644e-07 1.45481e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which are of ||| 0.00534759 0.0116562 8.48644e-07 1.75762e-06 2.718 ||| 0-2 ||| 187 1.17835e+06 +en ||| which are on the ||| 0.0243902 0.115548 8.48644e-07 3.06631e-08 2.718 ||| 0-2 0-3 ||| 41 1.17835e+06 +en ||| which are producing in ||| 1 0.605812 8.48644e-07 1.99382e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which are quite obvious ||| 0.333333 0.0068312 8.48644e-07 4.82634e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| which are quite ||| 0.0434783 0.0068312 8.48644e-07 1.1574e-08 2.718 ||| 0-2 ||| 23 1.17835e+06 +en ||| which are right as such , in ||| 1 0.605812 8.48644e-07 9.66355e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| which are struggling with increased ||| 1 0.0535436 8.48644e-07 4.03286e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which are struggling with ||| 0.2 0.0535436 8.48644e-07 8.11441e-12 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| which are taken in ||| 1 0.605812 8.48644e-07 5.42499e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which are taking place in ||| 0.0666667 0.605812 8.48644e-07 3.80686e-11 2.718 ||| 0-4 ||| 15 1.17835e+06 +en ||| which are to close ||| 1 0.0247351 8.48644e-07 5.37256e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which are to ||| 0.00645161 0.0247351 8.48644e-07 3.62277e-06 2.718 ||| 0-2 ||| 155 1.17835e+06 +en ||| which are under ||| 0.129032 0.205566 3.39458e-06 7.28799e-07 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| which are ||| 0.000852919 0.0006429 7.6378e-06 1.37528e-06 2.718 ||| 0-1 ||| 10552 1.17835e+06 +en ||| which arose out of ||| 0.333333 0.0116562 8.48644e-07 3.99345e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| which attention will focus much more on ||| 0.5 0.22993 8.48644e-07 2.82927e-19 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| which by ||| 0.0178571 0.0468744 8.48644e-07 7.22644e-05 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| which came before us ||| 0.5 0.0175291 8.48644e-07 1.05163e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| which came before ||| 0.2 0.0175291 8.48644e-07 3.64872e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| which can on ||| 0.5 0.22993 8.48644e-07 2.09826e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| which come under ||| 0.0294118 0.205566 8.48644e-07 4.07949e-08 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| which comes to ||| 0.05 0.0247351 8.48644e-07 9.54598e-08 2.718 ||| 0-2 ||| 20 1.17835e+06 +en ||| which concerns ||| 0.00229358 0.0004433 8.48644e-07 5.18171e-08 2.718 ||| 0-1 ||| 436 1.17835e+06 +en ||| which currently holds ||| 0.0769231 0.104436 8.48644e-07 2.83658e-10 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| which currently ||| 0.0047619 0.104436 8.48644e-07 9.98795e-06 2.718 ||| 0-1 ||| 210 1.17835e+06 +en ||| which deals with ||| 0.0031348 0.0535436 8.48644e-07 2.53536e-09 2.718 ||| 0-2 ||| 319 1.17835e+06 +en ||| which dominates in ||| 0.5 0.605812 8.48644e-07 4.31491e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| which engage in such activities ||| 0.25 0.605812 8.48644e-07 3.13561e-14 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| which engage in such ||| 0.25 0.605812 8.48644e-07 3.94416e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| which engage in ||| 0.142857 0.605812 8.48644e-07 1.90641e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| which enjoys ||| 0.0178571 0.0018939 8.48644e-07 5.94622e-09 2.718 ||| 0-1 ||| 56 1.17835e+06 +en ||| which exist within ||| 0.047619 0.369196 8.48644e-07 8.67371e-09 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| which exists in ||| 0.0517241 0.605812 2.54593e-06 2.18884e-07 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| which form part of ||| 0.0344828 0.0009084 8.48644e-07 4.43546e-12 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| which form part ||| 0.0238095 0.0009084 8.48644e-07 8.15883e-11 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| which from ||| 0.03125 0.0308834 8.48644e-07 3.23228e-05 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| which gave rise to ||| 0.0263158 0.0247351 8.48644e-07 2.50411e-12 2.718 ||| 0-3 ||| 38 1.17835e+06 +en ||| which goes in ||| 0.1 0.605812 8.48644e-07 5.43286e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| which had been authorised in ||| 1 0.605812 8.48644e-07 9.46581e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which had previously been sited in ||| 1 0.605812 8.48644e-07 3.14738e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| which has been achieved on ||| 0.25 0.22993 8.48644e-07 2.02866e-12 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| which has been chosen in ||| 1 0.605812 8.48644e-07 1.62493e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which has been in ||| 0.162791 0.605812 5.94051e-06 6.74245e-08 2.718 ||| 0-3 ||| 43 1.17835e+06 +en ||| which has been placed on ||| 1 0.22993 8.48644e-07 1.51816e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which has been set up in such ||| 0.125 0.605812 8.48644e-07 2.78026e-16 2.718 ||| 0-5 ||| 8 1.17835e+06 +en ||| which has been set up in ||| 0.111111 0.605812 8.48644e-07 1.34384e-13 2.718 ||| 0-5 ||| 9 1.17835e+06 +en ||| which has been very positively received in ||| 1 0.605812 8.48644e-07 1.97593e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| which has been ||| 0.000398565 0.0002262 8.48644e-07 9.64416e-10 2.718 ||| 0-1 ||| 2509 1.17835e+06 +en ||| which has come as ||| 1 0.066968 8.48644e-07 6.68007e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which has fed into ||| 1 0.525896 8.48644e-07 8.03419e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which has occurred in ||| 0.0769231 0.605812 8.48644e-07 8.58152e-10 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| which has taken place ||| 0.0163934 0.0042106 8.48644e-07 5.86345e-12 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| which has taken ||| 0.00833333 0.0042106 8.48644e-07 3.89598e-09 2.718 ||| 0-2 ||| 120 1.17835e+06 +en ||| which has ||| 0.000406835 0.0002262 2.54593e-06 2.88816e-07 2.718 ||| 0-1 ||| 7374 1.17835e+06 +en ||| which have appeared in ||| 0.1 0.605812 8.48644e-07 1.04618e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| which have been expressed , on ||| 1 0.22993 8.48644e-07 3.26575e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| which have been given in ||| 1 0.605812 8.48644e-07 1.07513e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which have been in ||| 0.1 0.605812 1.69729e-06 1.56655e-07 2.718 ||| 0-3 ||| 20 1.17835e+06 +en ||| which have been installed for ||| 1 0.0286209 8.48644e-07 2.53698e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which have been on ||| 0.25 0.22993 8.48644e-07 2.81735e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| which have been taken up over ||| 1 0.157937 8.48644e-07 4.22596e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| which have been waged in ||| 1 0.605812 8.48644e-07 1.23758e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which have happened in ||| 0.5 0.605812 8.48644e-07 2.90398e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| which have in ||| 0.25 0.605812 8.48644e-07 4.69141e-05 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| which have now been completed ||| 0.333333 0.0123946 8.48644e-07 6.14543e-15 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| which have now been ||| 0.0333333 0.0123946 8.48644e-07 2.00831e-10 2.718 ||| 0-2 ||| 30 1.17835e+06 +en ||| which have now ||| 0.0212766 0.0123946 8.48644e-07 6.01435e-08 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| which have occurred with ||| 0.5 0.0535436 8.48644e-07 5.034e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| which have only relatively recently got under ||| 0.5 0.205566 8.48644e-07 7.0403e-23 2.718 ||| 0-6 ||| 2 1.17835e+06 +en ||| which have resulted in ||| 0.047619 0.605812 8.48644e-07 1.201e-09 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| which have taken place in ||| 0.0714286 0.605812 2.54593e-06 6.43571e-11 2.718 ||| 0-4 ||| 42 1.17835e+06 +en ||| which have to be made on ||| 1 0.22993 8.48644e-07 2.8462e-11 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| which have to ||| 0.00628931 0.0247351 8.48644e-07 2.85563e-06 2.718 ||| 0-2 ||| 159 1.17835e+06 +en ||| which in the ||| 0.00757576 0.605812 8.48644e-07 0.000240818 2.718 ||| 0-1 ||| 132 1.17835e+06 +en ||| which in turn defines the European Union ||| 1 0.605812 8.48644e-07 1.40888e-19 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| which in turn defines the European ||| 1 0.605812 8.48644e-07 2.52759e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| which in turn defines the ||| 1 0.605812 8.48644e-07 7.5588e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| which in turn defines ||| 1 0.605812 8.48644e-07 1.23124e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| which in turn ||| 0.00552486 0.605812 8.48644e-07 8.79457e-07 2.718 ||| 0-1 ||| 181 1.17835e+06 +en ||| which in ||| 0.0349829 0.605812 3.47944e-05 0.00392265 2.718 ||| 0-1 ||| 1172 1.17835e+06 +en ||| which include ||| 0.0026178 0.0015517 8.48644e-07 9.25911e-08 2.718 ||| 0-1 ||| 382 1.17835e+06 +en ||| which includes ||| 0.00124688 0.0068123 8.48644e-07 1.67344e-07 2.718 ||| 0-1 ||| 802 1.17835e+06 +en ||| which involve ||| 0.00793651 0.0184384 8.48644e-07 4.68052e-07 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| which involves ||| 0.00261097 0.0273327 8.48644e-07 5.0288e-07 2.718 ||| 0-1 ||| 383 1.17835e+06 +en ||| which is a city of ||| 1 0.0116562 8.48644e-07 3.29903e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which is a major competitor on the ||| 1 0.0015231 8.48644e-07 6.10603e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which is a major competitor on ||| 1 0.0015231 8.48644e-07 9.94601e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which is a major competitor ||| 1 0.0015231 8.48644e-07 1.48648e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which is a major ||| 0.0285714 0.0015231 8.48644e-07 2.12354e-11 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| which is a very good component in ||| 1 0.605812 8.48644e-07 1.48483e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| which is a ||| 0.000454339 0.0015231 8.48644e-07 2.19374e-07 2.718 ||| 0-2 ||| 2201 1.17835e+06 +en ||| which is advocated in ||| 0.333333 0.605812 8.48644e-07 1.0204e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| which is also on ||| 0.5 0.22993 8.48644e-07 1.11624e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| which is also taken in the United ||| 1 0.605812 8.48644e-07 4.25121e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which is also taken in the ||| 1 0.605812 8.48644e-07 3.47321e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which is also taken in ||| 1 0.605812 8.48644e-07 5.65745e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which is always emphasized in ||| 1 0.605812 8.48644e-07 8.45827e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which is as ||| 0.0114943 0.066968 8.48644e-07 4.78892e-06 2.718 ||| 0-2 ||| 87 1.17835e+06 +en ||| which is at ||| 0.00641026 0.321886 8.48644e-07 1.06497e-05 2.718 ||| 0-2 ||| 156 1.17835e+06 +en ||| which is available in ||| 0.333333 0.605812 8.48644e-07 3.91072e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| which is available on ||| 0.0714286 0.22993 8.48644e-07 7.03319e-09 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| which is aware of ||| 0.25 0.0116562 8.48644e-07 5.04288e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| which is based on partnership and is ||| 0.5 0.22993 8.48644e-07 4.39839e-17 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| which is based on partnership and ||| 0.5 0.22993 8.48644e-07 1.40339e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| which is based on partnership ||| 0.5 0.22993 8.48644e-07 1.12039e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| which is based on ||| 0.00352113 0.22993 8.48644e-07 5.187e-09 2.718 ||| 0-3 ||| 284 1.17835e+06 +en ||| which is before ||| 0.0384615 0.0175291 8.48644e-07 9.07578e-08 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| which is being called into ||| 0.5 0.525896 8.48644e-07 2.91498e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| which is being ||| 0.00229358 0.0043873 8.48644e-07 4.87201e-08 2.718 ||| 0-2 ||| 436 1.17835e+06 +en ||| which is covered in just ||| 1 0.605812 8.48644e-07 1.11061e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which is covered in ||| 0.285714 0.605812 1.69729e-06 8.80251e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| which is currently being ||| 0.0144928 0.104436 8.48644e-07 8.9083e-10 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| which is currently ||| 0.00381679 0.104436 8.48644e-07 3.13033e-07 2.718 ||| 0-2 ||| 262 1.17835e+06 +en ||| which is essentially ||| 0.02 0.105697 8.48644e-07 5.58018e-08 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| which is for ||| 0.027027 0.0286209 8.48644e-07 3.06303e-06 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| which is generally ||| 0.0526316 0.21041 8.48644e-07 2.42403e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| which is highlighted in ||| 0.25 0.605812 8.48644e-07 2.48339e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| which is in both our ||| 0.333333 0.605812 8.48644e-07 2.80915e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| which is in both ||| 0.333333 0.605812 8.48644e-07 2.0365e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| which is in fact ||| 0.0149254 0.605812 8.48644e-07 3.60128e-07 2.718 ||| 0-2 ||| 67 1.17835e+06 +en ||| which is in itself ||| 0.0666667 0.605812 8.48644e-07 8.34394e-08 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| which is in line with ||| 0.0178571 0.0535436 8.48644e-07 1.95595e-11 2.718 ||| 0-4 ||| 56 1.17835e+06 +en ||| which is in the ||| 0.0588235 0.605812 4.24322e-06 7.54751e-06 2.718 ||| 0-2 ||| 85 1.17835e+06 +en ||| which is in ||| 0.0637363 0.605812 2.46107e-05 0.00012294 2.718 ||| 0-2 ||| 455 1.17835e+06 +en ||| which is not an ||| 0.0384615 0.0008293 8.48644e-07 2.15008e-10 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| which is not usual in Dutch ||| 1 0.605812 8.48644e-07 1.20538e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which is not usual in ||| 1 0.605812 8.48644e-07 7.26132e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which is not ||| 0.000698812 0.0008293 8.48644e-07 4.8374e-08 2.718 ||| 0-2 ||| 1431 1.17835e+06 +en ||| which is now in ||| 0.0294118 0.605812 8.48644e-07 2.53244e-07 2.718 ||| 0-3 ||| 34 1.17835e+06 +en ||| which is now ||| 0.00209644 0.0123946 8.48644e-07 1.57608e-07 2.718 ||| 0-2 ||| 477 1.17835e+06 +en ||| which is on ||| 0.0120482 0.22993 8.48644e-07 2.211e-05 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| which is ongoing in ||| 1 0.605812 8.48644e-07 4.37667e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which is perhaps too ||| 0.333333 0.0011116 8.48644e-07 1.06671e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| which is present in ||| 0.2 0.605812 8.48644e-07 4.49961e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| which is prevailing here in ||| 1 0.605812 8.48644e-07 2.3434e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which is realised as ||| 0.0625 0.066968 8.48644e-07 5.84248e-11 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| which is so ||| 0.00303951 0.0087276 8.48644e-07 1.81329e-07 2.718 ||| 0-2 ||| 329 1.17835e+06 +en ||| which is taking place in ||| 0.0625 0.605812 8.48644e-07 7.86355e-11 2.718 ||| 0-4 ||| 16 1.17835e+06 +en ||| which is taking place ||| 0.0147059 0.0153333 8.48644e-07 6.89965e-11 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| which is taking ||| 0.0136986 0.0153333 8.48644e-07 4.58448e-08 2.718 ||| 0-2 ||| 73 1.17835e+06 +en ||| which is to the ||| 0.0625 0.0247351 8.48644e-07 4.59412e-07 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| which is to ||| 0.00441501 0.0247351 3.39458e-06 7.48328e-06 2.718 ||| 0-2 ||| 906 1.17835e+06 +en ||| which is under ||| 0.0684932 0.205566 4.24322e-06 1.50542e-06 2.718 ||| 0-2 ||| 73 1.17835e+06 +en ||| which is undergoing a ||| 0.5 0.130682 8.48644e-07 5.54641e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| which is undergoing ||| 0.0909091 0.130682 8.48644e-07 1.25128e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| which is very important in ||| 0.0384615 0.605812 8.48644e-07 1.64093e-10 2.718 ||| 0-4 ||| 26 1.17835e+06 +en ||| which is why I should like to ||| 1 0.0247351 8.48644e-07 1.02675e-16 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| which is why ||| 0.000610874 0.0005032 8.48644e-07 5.98442e-10 2.718 ||| 0-1 ||| 1637 1.17835e+06 +en ||| which is ||| 0.000650548 0.0005032 1.52756e-05 2.42776e-06 2.718 ||| 0-1 ||| 27669 1.17835e+06 +en ||| which it did in ||| 0.5 0.605812 8.48644e-07 3.16837e-08 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| which it does on the ||| 1 0.22993 8.48644e-07 5.40207e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which it does on ||| 1 0.22993 8.48644e-07 8.79934e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which it has on ||| 0.333333 0.22993 8.48644e-07 6.45774e-08 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| which it is ||| 0.000924214 0.0080472 8.48644e-07 7.34236e-07 2.718 ||| 0-1 ||| 1082 1.17835e+06 +en ||| which it regards as ||| 0.125 0.066968 8.48644e-07 3.80418e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| which it ||| 0.000548847 0.0080472 8.48644e-07 2.34273e-05 2.718 ||| 0-1 ||| 1822 1.17835e+06 +en ||| which just ||| 0.0196078 0.001725 8.48644e-07 4.45117e-07 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| which led to ||| 0.003861 0.0247351 8.48644e-07 2.1919e-08 2.718 ||| 0-2 ||| 259 1.17835e+06 +en ||| which lies in ||| 0.0588235 0.605812 8.48644e-07 2.41243e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| which may allow ||| 0.25 0.000102 8.48644e-07 3.58059e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| which may ||| 0.00074184 0.000102 8.48644e-07 1.47592e-08 2.718 ||| 0-0 ||| 1348 1.17835e+06 +en ||| which means that liberalisation must only be ||| 1 0.0017499 8.48644e-07 1.07008e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which means that liberalisation must only ||| 1 0.0017499 8.48644e-07 5.90455e-20 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which means that liberalisation must ||| 1 0.0017499 8.48644e-07 5.3046e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which means that liberalisation ||| 1 0.0017499 8.48644e-07 3.43207e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which means that ||| 0.000554324 0.0017499 8.48644e-07 5.62634e-09 2.718 ||| 0-2 ||| 1804 1.17835e+06 +en ||| which means ||| 0.000345066 0.000102 8.48644e-07 1.24839e-08 2.718 ||| 0-0 ||| 2898 1.17835e+06 +en ||| which might be available in ||| 1 0.605812 8.48644e-07 8.68364e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which might exist in ||| 0.5 0.605812 8.48644e-07 1.3873e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| which must be used for ||| 0.333333 0.0286209 8.48644e-07 1.17441e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| which need to be made within ||| 1 0.369196 8.48644e-07 2.91296e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| which needs to be sent out at ||| 1 0.321886 8.48644e-07 2.49799e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| which no one knows in advance ||| 1 0.605812 8.48644e-07 9.38924e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which no one knows in ||| 1 0.605812 8.48644e-07 2.65984e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which occur in ||| 0.0769231 0.605812 8.48644e-07 1.7495e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| which occurred at ||| 0.2 0.321886 8.48644e-07 1.44415e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| which occurred in ||| 0.0204082 0.605812 8.48644e-07 1.66712e-07 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| which of ||| 0.00393701 0.0116562 8.48644e-07 0.000115841 2.718 ||| 0-1 ||| 254 1.17835e+06 +en ||| which on ||| 0.0877193 0.22993 4.24322e-06 0.000705463 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| which one jumps up in ||| 1 0.605812 8.48644e-07 2.23041e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which one wishes to ||| 1 0.0247351 8.48644e-07 5.26455e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which overrides ||| 0.2 0.0434783 8.48644e-07 5.94622e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| which passed for ||| 1 0.0286209 8.48644e-07 6.99762e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which permeates ||| 0.0833333 0.133333 8.48644e-07 2.29354e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| which point in ||| 0.2 0.605812 8.48644e-07 3.43153e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| which provision has been made under ||| 1 0.205566 8.48644e-07 2.05467e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| which represented a ||| 0.0833333 0.0008237 8.48644e-07 5.27142e-10 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| which represented ||| 0.03125 0.0008237 8.48644e-07 1.18924e-08 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| which ruled in ||| 1 0.605812 8.48644e-07 4.78563e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which runs ||| 0.060241 0.0301339 4.24322e-06 1.56301e-07 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| which seek to ||| 0.00561798 0.0247351 8.48644e-07 1.65944e-08 2.718 ||| 0-2 ||| 178 1.17835e+06 +en ||| which seem to ||| 0.0232558 0.0247351 8.48644e-07 2.18235e-08 2.718 ||| 0-2 ||| 43 1.17835e+06 +en ||| which she has put into ||| 0.2 0.525896 8.48644e-07 3.0343e-13 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| which some of these pictures could be ||| 1 0.0116562 8.48644e-07 4.21627e-21 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which some of these pictures could ||| 1 0.0116562 8.48644e-07 2.32649e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which some of these pictures ||| 1 0.0116562 8.48644e-07 3.27167e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which some of these ||| 1 0.0116562 8.48644e-07 1.30867e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which some of ||| 0.0151515 0.0116562 8.48644e-07 1.26185e-07 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| which sparked unrest there ||| 1 0.0117359 8.48644e-07 4.28663e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which specifically relates to ||| 0.125 0.0247351 8.48644e-07 3.76397e-13 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| which started along ||| 1 0.155535 8.48644e-07 3.04085e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which started at ||| 0.166667 0.321886 8.48644e-07 1.5291e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| which states ||| 0.00166667 0.0010643 8.48644e-07 8.06987e-08 2.718 ||| 0-1 ||| 600 1.17835e+06 +en ||| which take into account ||| 0.030303 0.525896 8.48644e-07 8.70425e-11 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| which take into ||| 0.0294118 0.525896 8.48644e-07 3.02756e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| which takes the ||| 0.037037 0.0117268 8.48644e-07 2.83695e-08 2.718 ||| 0-1 ||| 27 1.17835e+06 +en ||| which takes ||| 0.00220751 0.0117268 8.48644e-07 4.62106e-07 2.718 ||| 0-1 ||| 453 1.17835e+06 +en ||| which the Commission is planning with ||| 1 0.0535436 8.48644e-07 3.12765e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| which the Commission presented right from the ||| 1 0.0308834 8.48644e-07 3.61606e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| which the Commission presented right from ||| 1 0.0308834 8.48644e-07 5.89013e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| which the Committee on Fisheries has added ||| 1 0.22993 8.48644e-07 1.57666e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which the Committee on Fisheries has ||| 0.5 0.22993 8.48644e-07 2.21131e-16 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| which the Committee on Fisheries ||| 0.166667 0.22993 8.48644e-07 4.29588e-14 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| which the Committee on ||| 0.0070922 0.22993 8.48644e-07 6.60905e-09 2.718 ||| 0-3 ||| 141 1.17835e+06 +en ||| which the ||| 0.000217045 0.0011669 2.54593e-06 2.43345e-05 2.718 ||| 0-1 ||| 13822 1.17835e+06 +en ||| which they have shown on ||| 1 0.22993 8.48644e-07 2.87507e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which they result ||| 0.333333 0.0036976 8.48644e-07 1.30863e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| which they ||| 0.000693001 0.0036976 8.48644e-07 2.48552e-06 2.718 ||| 0-1 ||| 1443 1.17835e+06 +en ||| which to ||| 0.00090009 0.0247351 8.48644e-07 0.000238769 2.718 ||| 0-1 ||| 1111 1.17835e+06 +en ||| which took place in the ||| 0.0434783 0.605812 8.48644e-07 5.34586e-11 2.718 ||| 0-3 ||| 23 1.17835e+06 +en ||| which took place in ||| 0.0272727 0.605812 5.09187e-06 8.70778e-10 2.718 ||| 0-3 ||| 220 1.17835e+06 +en ||| which took the ||| 0.0714286 0.0011669 1.69729e-06 3.58934e-09 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| which traffic normally moves in ||| 1 0.605812 8.48644e-07 2.05483e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which unfortunately seems to ||| 0.333333 0.0247351 8.48644e-07 1.77653e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| which was a successful one , in ||| 1 0.605812 8.48644e-07 1.49194e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| which was already being challenged by ||| 1 0.0468744 8.48644e-07 1.07415e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| which was also on ||| 1 0.22993 8.48644e-07 1.11585e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which was at the ||| 0.1 0.321886 8.48644e-07 6.53575e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| which was at ||| 0.1875 0.321886 2.54593e-06 1.0646e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| which was deducted from ||| 0.5 0.0308834 8.48644e-07 3.24055e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| which was held at ||| 0.25 0.321886 8.48644e-07 2.71579e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| which was in the public domain , ||| 1 0.605812 8.48644e-07 2.29733e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which was in the public domain ||| 1 0.605812 8.48644e-07 1.92641e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which was in the public ||| 1 0.605812 8.48644e-07 1.21925e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which was in the ||| 0.0833333 0.605812 8.48644e-07 7.54484e-07 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| which was in ||| 0.133333 0.605812 5.09187e-06 1.22896e-05 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| which was incurred when ||| 1 0.142731 8.48644e-07 1.48932e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which was not genuinely competitive ||| 1 0.0008293 8.48644e-07 3.15877e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which was not genuinely ||| 1 0.0008293 8.48644e-07 1.65381e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| which was not ||| 0.00414938 0.0008293 8.48644e-07 4.83569e-09 2.718 ||| 0-2 ||| 241 1.17835e+06 +en ||| which was published on ||| 0.111111 0.22993 8.48644e-07 4.92878e-11 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| which was started during ||| 1 0.226251 8.48644e-07 3.46265e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which was taken for ||| 1 0.0286209 8.48644e-07 2.79096e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which way in ||| 0.25 0.605812 8.48644e-07 8.45566e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| which we , in ||| 0.111111 0.605812 8.48644e-07 5.31054e-06 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| which we already have in ||| 0.25 0.605812 8.48644e-07 2.46639e-10 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| which we experience during ||| 0.25 0.226251 8.48644e-07 1.92663e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| which we feel in ||| 1 0.605812 8.48644e-07 7.5302e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which we have conducted in ||| 1 0.605812 8.48644e-07 3.22212e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which we in ||| 0.034965 0.605812 4.24322e-06 4.45311e-05 2.718 ||| 0-2 ||| 143 1.17835e+06 +en ||| which we provide through ||| 1 0.0366102 8.48644e-07 2.68249e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which we shall ||| 0.0120482 0.0054082 8.48644e-07 1.05116e-08 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| which we ||| 0.000303444 0.0054082 1.69729e-06 1.92309e-05 2.718 ||| 0-1 ||| 6591 1.17835e+06 +en ||| which went on in a ||| 1 0.417871 8.48644e-07 9.19827e-10 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| which went on in ||| 1 0.417871 8.48644e-07 2.07515e-08 2.718 ||| 0-2 0-3 ||| 1 1.17835e+06 +en ||| which were in ||| 0.0714286 0.605812 1.69729e-06 7.02703e-06 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| which were made to ||| 1 0.0247351 8.48644e-07 8.9601e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which will attract enormous attention from ||| 1 0.0308834 8.48644e-07 1.43096e-20 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| which will be addressed in ||| 0.25 0.605812 8.48644e-07 3.29646e-11 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| which will be of ||| 0.0526316 0.0116562 8.48644e-07 1.81621e-08 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| which will become ||| 0.0163934 0.219193 8.48644e-07 2.80983e-07 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| which will continue up to and in ||| 1 0.605812 8.48644e-07 2.98087e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| which will form ||| 0.027027 0.0005197 8.48644e-07 3.01303e-10 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| which will in ||| 0.0178571 0.605812 8.48644e-07 3.39356e-05 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| which will include it in ||| 1 0.605812 8.48644e-07 7.99012e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which will lead in ||| 1 0.605812 8.48644e-07 6.5326e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which will push up ||| 0.166667 0.0147069 8.48644e-07 1.40459e-12 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| which will take place during ||| 0.2 0.226251 8.48644e-07 5.14843e-13 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| which will take ||| 0.00387597 0.0074151 8.48644e-07 2.15027e-08 2.718 ||| 0-2 ||| 258 1.17835e+06 +en ||| which will ||| 0.00117619 0.0005314 4.24322e-06 8.43514e-07 2.718 ||| 0-1 ||| 4251 1.17835e+06 +en ||| which within ||| 0.2 0.369196 8.48644e-07 9.41771e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| which would be in ||| 0.111111 0.605812 8.48644e-07 4.17204e-07 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| which would be of ||| 0.0294118 0.0116562 8.48644e-07 1.23206e-08 2.718 ||| 0-3 ||| 34 1.17835e+06 +en ||| which would be to the ||| 0.333333 0.0247351 8.48644e-07 1.55904e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| which would be to ||| 0.0555556 0.0247351 8.48644e-07 2.53949e-08 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| which would become ||| 0.1 0.219193 8.48644e-07 1.9061e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| which would fall within ||| 1 0.369196 8.48644e-07 5.28931e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which would have the ||| 0.0384615 0.0011669 8.48644e-07 1.708e-09 2.718 ||| 0-3 ||| 26 1.17835e+06 +en ||| which would take the ||| 0.25 0.004291 8.48644e-07 4.17867e-11 2.718 ||| 0-2 0-3 ||| 4 1.17835e+06 +en ||| which would then ||| 0.0285714 0.013351 8.48644e-07 1.67254e-08 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| which yield added value for ||| 1 0.0286209 8.48644e-07 4.83335e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| which you made in ||| 0.25 0.605812 8.48644e-07 2.65307e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| which you stressed in ||| 1 0.605812 8.48644e-07 1.31716e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| which ||| 7.74812e-05 0.000102 2.12161e-05 1.97e-05 2.718 ||| 0-0 ||| 322659 1.17835e+06 +en ||| whichever way you look at ||| 0.0666667 0.321886 8.48644e-07 4.05776e-16 2.718 ||| 0-4 ||| 15 1.17835e+06 +en ||| while I am ||| 0.00952381 0.0151276 8.48644e-07 2.47145e-09 2.718 ||| 0-0 ||| 105 1.17835e+06 +en ||| while I ||| 0.00544959 0.0151276 1.69729e-06 1.9346e-06 2.718 ||| 0-0 ||| 367 1.17835e+06 +en ||| while addressing ||| 0.0666667 0.0151276 8.48644e-07 4.923e-09 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| while at the same time ||| 0.00143472 0.321886 8.48644e-07 6.04736e-13 2.718 ||| 0-1 ||| 697 1.17835e+06 +en ||| while at the same ||| 0.00554017 0.168507 1.69729e-06 5.40485e-10 2.718 ||| 0-0 0-1 ||| 361 1.17835e+06 +en ||| while at the ||| 0.00464037 0.168507 1.69729e-06 6.7166e-07 2.718 ||| 0-0 0-1 ||| 431 1.17835e+06 +en ||| while at ||| 0.03125 0.321886 5.09187e-06 7.45637e-06 2.718 ||| 0-1 ||| 192 1.17835e+06 +en ||| while before he ||| 1 0.0175291 8.48644e-07 5.54546e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| while before ||| 0.2 0.0175291 8.48644e-07 6.35438e-08 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| while carrying ||| 0.0909091 0.0151276 8.48644e-07 1.65467e-08 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| while catch levels for ||| 1 0.0151276 8.48644e-07 4.81476e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| while catch levels ||| 1 0.0151276 8.48644e-07 6.26457e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| while catch ||| 1 0.0151276 8.48644e-07 4.73155e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| while creating ||| 0.0714286 0.0151276 8.48644e-07 1.5945e-08 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| while driving ||| 0.25 0.0151276 8.48644e-07 9.05285e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| while he ||| 0.0416667 0.0056615 8.48644e-07 2.54995e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| while in ||| 0.00673401 0.605812 1.69729e-06 8.6076e-05 2.718 ||| 0-1 ||| 297 1.17835e+06 +en ||| while making ||| 0.015873 0.0151276 8.48644e-07 1.05215e-07 2.718 ||| 0-0 ||| 63 1.17835e+06 +en ||| while moving in ||| 1 0.605812 8.48644e-07 5.11291e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| while necessary , ||| 0.166667 0.0151276 8.48644e-07 8.39214e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| while necessary ||| 0.2 0.0151276 8.48644e-07 7.03715e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| while nevertheless ||| 0.142857 0.0151276 8.48644e-07 3.35584e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| while not without value in ||| 1 0.605812 8.48644e-07 5.70223e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| while not ||| 0.00763359 0.0151276 8.48644e-07 9.33756e-07 2.718 ||| 0-0 ||| 131 1.17835e+06 +en ||| while on ||| 0.0229008 0.22993 2.54593e-06 1.54802e-05 2.718 ||| 0-1 ||| 131 1.17835e+06 +en ||| while other aspects are dealt with in ||| 1 0.605812 8.48644e-07 7.98592e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| while our people live ||| 1 0.0151276 8.48644e-07 3.34726e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| while our people ||| 1 0.0151276 8.48644e-07 3.32069e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| while our ||| 0.0144928 0.0151276 8.48644e-07 3.77266e-07 2.718 ||| 0-0 ||| 69 1.17835e+06 +en ||| while sailing ||| 0.5 0.0151276 8.48644e-07 1.3675e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| while still in ||| 0.333333 0.605812 8.48644e-07 6.48324e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| while still ||| 0.0322581 0.0151276 1.69729e-06 2.06e-07 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| while they are in ||| 0.125 0.605812 8.48644e-07 4.2628e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| while they are still ||| 0.2 0.0151276 8.48644e-07 1.02019e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| while they are ||| 0.0217391 0.0151276 8.48644e-07 1.35447e-08 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| while they ||| 0.0326087 0.0151276 2.54593e-06 8.92704e-07 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| while watching ||| 0.2 0.0151276 8.48644e-07 2.9538e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| while we are in the ||| 0.166667 0.0151276 8.48644e-07 6.19041e-11 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| while we are in ||| 0.181818 0.0151276 1.69729e-06 1.00834e-09 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| while we are on the ||| 0.04 0.0151276 8.48644e-07 1.93511e-11 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| while we are on ||| 0.0625 0.0151276 1.69729e-06 3.15206e-10 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| while we are ||| 0.011236 0.0151276 1.69729e-06 4.7109e-08 2.718 ||| 0-0 ||| 178 1.17835e+06 +en ||| while we ||| 0.0105634 0.0151276 5.09187e-06 3.10485e-06 2.718 ||| 0-0 ||| 568 1.17835e+06 +en ||| while working on ||| 0.0833333 0.22993 8.48644e-07 2.94743e-09 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| while ||| 0.00907716 0.0151276 0.000132389 0.0002735 2.718 ||| 0-0 ||| 17186 1.17835e+06 +en ||| whilst adding the ||| 0.25 0.0125238 8.48644e-07 4.75615e-11 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| whilst adding ||| 0.25 0.0125238 8.48644e-07 7.7472e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| whilst also boosting information ||| 0.5 0.0125238 8.48644e-07 1.61828e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| whilst also boosting ||| 0.5 0.0125238 8.48644e-07 9.77813e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| whilst also ||| 0.0104167 0.0125238 8.48644e-07 2.71615e-07 2.718 ||| 0-0 ||| 96 1.17835e+06 +en ||| whilst at the same ||| 0.0120482 0.321886 8.48644e-07 1.0454e-10 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| whilst at the ||| 0.00884956 0.321886 8.48644e-07 1.29912e-07 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| whilst at ||| 0.0784314 0.321886 3.39458e-06 2.11611e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| whilst fully ||| 0.125 0.0125238 8.48644e-07 6.10092e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| whilst in ||| 0.0196078 0.605812 8.48644e-07 2.44282e-05 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| whilst increasing expenditure on ||| 1 0.22993 8.48644e-07 6.87264e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| whilst maintaining ||| 0.04 0.0125238 1.69729e-06 9.684e-10 2.718 ||| 0-0 ||| 50 1.17835e+06 +en ||| whilst on ||| 0.0769231 0.121227 1.69729e-06 4.468e-06 2.718 ||| 0-0 0-1 ||| 26 1.17835e+06 +en ||| whilst still providing a ||| 1 0.0125238 8.48644e-07 1.64889e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| whilst still providing ||| 1 0.0125238 8.48644e-07 3.71993e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| whilst still ||| 0.0588235 0.0125238 8.48644e-07 4.05222e-08 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| whilst the ||| 0.00204499 0.0125238 8.48644e-07 3.30288e-06 2.718 ||| 0-0 ||| 489 1.17835e+06 +en ||| whilst ||| 0.00679447 0.0125238 2.3762e-05 5.38e-05 2.718 ||| 0-0 ||| 4121 1.17835e+06 +en ||| whistle on ||| 0.166667 0.22993 8.48644e-07 5.81339e-08 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| white in ||| 0.2 0.605812 8.48644e-07 4.15603e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| who , in ||| 0.00308642 0.605812 8.48644e-07 4.85714e-05 2.718 ||| 0-2 ||| 324 1.17835e+06 +en ||| who actually ||| 0.0181818 0.125341 8.48644e-07 1.1847e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| who apparently belonged to ||| 0.25 0.0247351 8.48644e-07 1.20239e-15 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| who are at ||| 0.0144928 0.321886 8.48644e-07 5.3532e-07 2.718 ||| 0-2 ||| 69 1.17835e+06 +en ||| who are either in ||| 1 0.605812 8.48644e-07 5.35039e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| who are having to endure ||| 1 0.0247351 8.48644e-07 8.35371e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| who are having to ||| 0.111111 0.0247351 8.48644e-07 1.44029e-10 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| who are in ||| 0.0199336 0.605812 5.09187e-06 6.1797e-06 2.718 ||| 0-2 ||| 301 1.17835e+06 +en ||| who are involved in ||| 0.0138889 0.605812 8.48644e-07 2.13694e-09 2.718 ||| 0-3 ||| 72 1.17835e+06 +en ||| who are on ||| 0.0227273 0.22993 8.48644e-07 1.11138e-06 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| who are suffering greatly ||| 1 0.0787598 8.48644e-07 8.91627e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| who are ||| 0.000800512 0.0006429 4.24322e-06 1.42796e-07 2.718 ||| 0-1 ||| 6246 1.17835e+06 +en ||| who as ||| 0.0625 0.066968 8.48644e-07 1.58653e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| who asks to make ||| 1 0.0247351 8.48644e-07 2.02489e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| who asks to ||| 1 0.0247351 8.48644e-07 1.1652e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| who attended ||| 0.0217391 0.0505051 8.48644e-07 3.29868e-08 2.718 ||| 0-1 ||| 46 1.17835e+06 +en ||| who came to ||| 0.0217391 0.0247351 8.48644e-07 3.12373e-09 2.718 ||| 0-2 ||| 46 1.17835e+06 +en ||| who contribute to the construction of Europe ||| 0.25 0.0247351 8.48644e-07 2.7524e-20 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| who contribute to the construction of ||| 0.25 0.0247351 8.48644e-07 5.43953e-17 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| who contribute to the construction ||| 0.25 0.0247351 8.48644e-07 1.00058e-15 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| who contribute to the ||| 0.0769231 0.0247351 8.48644e-07 5.92056e-11 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| who contribute to ||| 0.0454545 0.0247351 8.48644e-07 9.6439e-10 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| who find themselves in ||| 0.027027 0.605812 8.48644e-07 5.82618e-11 2.718 ||| 0-3 ||| 37 1.17835e+06 +en ||| who had been in ||| 0.333333 0.605812 8.48644e-07 1.36506e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| who hang on to ||| 0.0833333 0.22993 8.48644e-07 2.6035e-11 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| who hang on ||| 0.0833333 0.22993 8.48644e-07 2.92995e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| who have been indicted in ||| 1 0.605812 8.48644e-07 1.78922e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| who have participated in ||| 0.0222222 0.605812 8.48644e-07 1.7536e-11 2.718 ||| 0-3 ||| 45 1.17835e+06 +en ||| who have registered in ||| 1 0.605812 8.48644e-07 5.45565e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| who have to pick up ||| 1 0.0247351 8.48644e-07 2.00221e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| who have to pick ||| 1 0.0247351 8.48644e-07 5.87073e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| who have to ||| 0.00381679 0.0247351 8.48644e-07 2.96502e-07 2.718 ||| 0-2 ||| 262 1.17835e+06 +en ||| who implement the ||| 1 0.0011669 8.48644e-07 1.40988e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| who in ||| 0.0337838 0.605812 4.24322e-06 0.000407291 2.718 ||| 0-1 ||| 148 1.17835e+06 +en ||| who is at ||| 0.0416667 0.321886 8.48644e-07 1.10577e-06 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| who is in ||| 0.00689655 0.605812 8.48644e-07 1.27649e-05 2.718 ||| 0-2 ||| 145 1.17835e+06 +en ||| who is speaking on ||| 1 0.22993 8.48644e-07 2.63546e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| who is to speak on ||| 1 0.22993 8.48644e-07 2.76e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| who is ||| 0.000706964 0.0002783 1.69729e-06 7.7166e-10 2.718 ||| 0-0 0-1 ||| 2829 1.17835e+06 +en ||| who live comfortably , in ||| 1 0.605812 8.48644e-07 5.38559e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| who make up the ships ' ||| 1 0.0011669 8.48644e-07 8.33287e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| who make up the ships ||| 1 0.0011669 8.48644e-07 2.42594e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| who make up the ||| 0.04 0.0011669 8.48644e-07 1.4975e-11 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| who make ||| 0.00657895 0.0001342 8.48644e-07 4.7628e-09 2.718 ||| 0-1 ||| 152 1.17835e+06 +en ||| who referred in that connection to ||| 1 0.605812 8.48644e-07 8.8907e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| who referred in that connection ||| 1 0.605812 8.48644e-07 1.00055e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| who referred in that ||| 1 0.605812 8.48644e-07 6.55668e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| who referred in ||| 1 0.605812 8.48644e-07 3.89777e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| who refuse to adopt our faith , ||| 1 0.0247351 8.48644e-07 6.52826e-23 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| who refuse to adopt our faith ||| 1 0.0247351 8.48644e-07 5.47421e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| who refuse to adopt our ||| 1 0.0247351 8.48644e-07 3.69879e-17 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| who refuse to adopt ||| 1 0.0247351 8.48644e-07 2.68145e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| who refuse to ||| 0.0238095 0.0247351 8.48644e-07 2.57832e-10 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| who said in ||| 0.1 0.605812 8.48644e-07 1.67519e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| who sit in ||| 0.0909091 0.605812 8.48644e-07 1.53956e-08 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| who sit on ||| 0.0714286 0.22993 1.69729e-06 2.7688e-09 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| who stand to ||| 0.0555556 0.0247351 8.48644e-07 4.08564e-09 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| who stay at ||| 0.333333 0.321886 8.48644e-07 1.002e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| who suffered on ||| 0.5 0.22993 8.48644e-07 2.50511e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| who took part in ||| 0.00840336 0.605812 8.48644e-07 7.16219e-11 2.718 ||| 0-3 ||| 119 1.17835e+06 +en ||| who took ||| 0.00438596 0.0029826 8.48644e-07 1.323e-08 2.718 ||| 0-1 ||| 228 1.17835e+06 +en ||| who went on ||| 0.25 0.22993 8.48644e-07 4.66594e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| who will be speaking on ||| 1 0.22993 8.48644e-07 1.3184e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| who will die in ||| 1 0.605812 8.48644e-07 4.05209e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| who will speak on ||| 0.294118 0.22993 4.24322e-06 8.57381e-11 2.718 ||| 0-3 ||| 17 1.17835e+06 +en ||| who work out prices in ||| 1 0.605812 8.48644e-07 3.13049e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| who ||| 1.46026e-05 5.34e-05 8.48644e-07 2.7e-06 2.718 ||| 0-0 ||| 68481 1.17835e+06 +en ||| whole area of intellectual property in ||| 1 0.605812 8.48644e-07 6.53367e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| whole company of ||| 0.5 0.0116562 8.48644e-07 2.91606e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| whole in ||| 0.175439 0.605812 8.48644e-06 0.00026123 2.718 ||| 0-1 ||| 57 1.17835e+06 +en ||| whole issue of ||| 0.0172414 0.0116562 8.48644e-07 5.8383e-09 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| whole of the ||| 0.00114943 0.0116562 8.48644e-07 4.73604e-07 2.718 ||| 0-1 ||| 870 1.17835e+06 +en ||| whole of ||| 0.00244738 0.0116562 4.24322e-06 7.71445e-06 2.718 ||| 0-1 ||| 2043 1.17835e+06 +en ||| whole to ||| 0.0133333 0.0247351 8.48644e-07 1.59009e-05 2.718 ||| 0-1 ||| 75 1.17835e+06 +en ||| whole undertaking relying on ||| 0.25 0.22993 8.48644e-07 7.58547e-15 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| whole ||| 0.000111105 0.0003749 1.69729e-06 4.8e-06 2.718 ||| 0-0 ||| 18001 1.17835e+06 +en ||| wholly incompatible with ||| 0.166667 0.0535436 8.48644e-07 4.1972e-13 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| whom I mean ||| 0.25 0.0060084 8.48644e-07 4.17039e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| whom I ||| 0.00176056 0.0060084 8.48644e-07 1.61831e-07 2.718 ||| 0-1 ||| 568 1.17835e+06 +en ||| whom have worked at ||| 1 0.321886 8.48644e-07 1.38602e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| whom live on ||| 1 0.22993 8.48644e-07 5.57527e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| whom lived in ||| 0.5 0.605812 8.48644e-07 3.3215e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| whom we deal in ||| 1 0.605812 8.48644e-07 1.48243e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| whose approach would ||| 1 0.0044306 8.48644e-07 2.64523e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| whose approach ||| 0.142857 0.0044306 8.48644e-07 4.50736e-09 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| whose role is to ||| 0.111111 0.0247351 8.48644e-07 1.54109e-11 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| whose very position will ||| 1 0.0020657 8.48644e-07 3.03958e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| whose very position ||| 1 0.0020657 8.48644e-07 3.51347e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| whose very ||| 0.0588235 0.0020657 8.48644e-07 1.06695e-08 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| whose ||| 0.000136911 0.0004412 8.48644e-07 2e-06 2.718 ||| 0-0 ||| 7304 1.17835e+06 +en ||| why , for some ||| 1 0.0286209 8.48644e-07 3.68412e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| why , for ||| 0.0172414 0.0286209 8.48644e-07 3.3821e-07 2.718 ||| 0-2 ||| 58 1.17835e+06 +en ||| why , given ||| 0.142857 0.0546585 8.48644e-07 3.41261e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| why , in ||| 0.00877193 0.605812 8.48644e-07 1.35746e-05 2.718 ||| 0-2 ||| 114 1.17835e+06 +en ||| why , over time ||| 0.333333 0.157937 8.48644e-07 1.93387e-10 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| why , over ||| 0.166667 0.157937 8.48644e-07 1.17797e-07 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| why - in ||| 1 0.605812 8.48644e-07 4.29375e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| why I cannot for ||| 1 0.0286209 8.48644e-07 4.51967e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| why I should like to ||| 0.166667 0.0247351 8.48644e-07 3.85661e-13 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| why it insists on the rights ||| 1 0.22993 8.48644e-07 3.1305e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| why it insists on the ||| 1 0.22993 8.48644e-07 1.56447e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| why it insists on ||| 1 0.22993 8.48644e-07 2.54833e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| why we expect the investigation at ||| 0.25 0.321886 8.48644e-07 6.73966e-18 2.718 ||| 0-5 ||| 4 1.17835e+06 +en ||| why we in ||| 0.0277778 0.605812 8.48644e-07 1.29222e-06 2.718 ||| 0-2 ||| 36 1.17835e+06 +en ||| why we need nutrient profiling , real ||| 0.5 0.0054082 8.48644e-07 1.32828e-26 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| why we need nutrient profiling , ||| 0.5 0.0054082 8.48644e-07 7.38341e-23 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| why we need nutrient profiling ||| 0.5 0.0054082 8.48644e-07 6.1913e-22 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| why we need nutrient ||| 0.5 0.0054082 8.48644e-07 5.62845e-16 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| why we need ||| 0.00383142 0.0054082 8.48644e-07 5.11677e-10 2.718 ||| 0-1 ||| 261 1.17835e+06 +en ||| why we ||| 0.00088574 0.0054082 8.48644e-07 5.58051e-07 2.718 ||| 0-1 ||| 1129 1.17835e+06 +en ||| why you should be familiar - with ||| 1 0.0535436 8.48644e-07 4.35659e-20 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| widely , depending on ||| 0.5 0.22993 8.48644e-07 2.27701e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| widely from ||| 0.166667 0.0308834 8.48644e-07 1.05401e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| widely heard in ||| 0.5 0.605812 8.48644e-07 1.01307e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| widely in ||| 0.08 0.605812 1.69729e-06 1.27913e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| widely into ||| 1 0.525896 8.48644e-07 6.13203e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| widely spread over ||| 1 0.157937 8.48644e-07 3.15238e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| widely throughout ||| 0.333333 0.309047 8.48644e-07 8.03522e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| widen it in ||| 1 0.605812 8.48644e-07 3.28478e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| wider ||| 0.000971345 0.0186861 1.69729e-06 4.35e-05 2.718 ||| 0-0 ||| 2059 1.17835e+06 +en ||| widespread concern in ||| 0.333333 0.605812 8.48644e-07 1.37475e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| widespread in the ||| 0.0833333 0.605812 8.48644e-07 6.32195e-07 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| widespread in ||| 0.0232558 0.605812 8.48644e-07 1.02977e-05 2.718 ||| 0-1 ||| 43 1.17835e+06 +en ||| widespread on ||| 0.333333 0.22993 8.48644e-07 1.85198e-06 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| wield , given ||| 1 0.0546585 8.48644e-07 3.04574e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| wields in ||| 1 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| will , as a ||| 0.0909091 0.066968 8.48644e-07 8.226e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| will , as ||| 0.0125 0.066968 8.48644e-07 1.8558e-05 2.718 ||| 0-2 ||| 80 1.17835e+06 +en ||| will , at ||| 0.0535714 0.321886 2.54593e-06 4.12699e-05 2.718 ||| 0-2 ||| 56 1.17835e+06 +en ||| will , for ||| 0.0181818 0.0286209 8.48644e-07 1.18699e-05 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| will , in future , be a ||| 0.5 0.605812 8.48644e-07 1.2122e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| will , in future , be ||| 0.0666667 0.605812 8.48644e-07 2.73476e-10 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| will , in future , ||| 0.047619 0.605812 1.69729e-06 1.50901e-08 2.718 ||| 0-2 ||| 42 1.17835e+06 +en ||| will , in future ||| 0.0454545 0.605812 1.69729e-06 1.26537e-07 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| will , in ||| 0.162844 0.605812 6.02537e-05 0.000476418 2.718 ||| 0-2 ||| 436 1.17835e+06 +en ||| will , of course ||| 0.0031348 0.0116562 8.48644e-07 1.77512e-08 2.718 ||| 0-2 ||| 319 1.17835e+06 +en ||| will , of ||| 0.0266667 0.0116562 1.69729e-06 1.40692e-05 2.718 ||| 0-2 ||| 75 1.17835e+06 +en ||| will , on ||| 0.047619 0.22993 8.48644e-07 8.56807e-05 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| will , once ||| 0.25 0.0058612 8.48644e-07 1.10907e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| will , over ||| 0.0769231 0.157937 8.48644e-07 4.13421e-06 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| will , that is ||| 0.5 0.0017499 8.48644e-07 3.3796e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| will , that ||| 0.2 0.0017499 8.48644e-07 1.07833e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| will , to ||| 0.125 0.0247351 2.54593e-06 2.89992e-05 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| will , ||| 0.000555864 0.0005314 8.48644e-07 1.1842e-05 2.718 ||| 0-0 ||| 1799 1.17835e+06 +en ||| will actually ||| 0.00534759 0.125341 8.48644e-07 1.16203e-05 2.718 ||| 0-1 ||| 187 1.17835e+06 +en ||| will adopt a position on ||| 0.333333 0.22993 8.48644e-07 1.09066e-12 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| will adopt during ||| 0.5 0.226251 8.48644e-07 2.60137e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| will affect ||| 0.00772201 0.0481375 1.69729e-06 1.48368e-06 2.718 ||| 0-1 ||| 259 1.17835e+06 +en ||| will agree , ||| 0.0333333 0.071674 8.48644e-07 1.31768e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| will agree with ||| 0.015873 0.0535436 8.48644e-07 1.60474e-08 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| will agree ||| 0.00274725 0.071674 8.48644e-07 1.10493e-05 2.718 ||| 0-1 ||| 364 1.17835e+06 +en ||| will also focus on ||| 0.125 0.22993 8.48644e-07 2.8075e-10 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| will always in ||| 1 0.605812 8.48644e-07 6.87133e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will an extension increase cultural diversity and ||| 1 0.0010182 8.48644e-07 1.75839e-26 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| will appear in ||| 0.0344828 0.605812 8.48644e-07 3.4916e-07 2.718 ||| 0-2 ||| 29 1.17835e+06 +en ||| will arise ||| 0.00769231 0.0005314 8.48644e-07 4.31955e-09 2.718 ||| 0-0 ||| 130 1.17835e+06 +en ||| will at ||| 0.0652174 0.321886 1.01837e-05 0.000346065 2.718 ||| 0-1 ||| 184 1.17835e+06 +en ||| will attract enormous attention from ||| 1 0.0308834 8.48644e-07 1.68455e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will base it on ||| 1 0.22993 8.48644e-07 4.31851e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will be , in ||| 0.1 0.605812 8.48644e-07 8.63407e-06 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| will be a significant increase in ||| 0.5 0.605812 8.48644e-07 2.38826e-14 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| will be able to ||| 0.000993049 0.0247351 1.69729e-06 3.67937e-09 2.718 ||| 0-3 ||| 2014 1.17835e+06 +en ||| will be achieved through ||| 0.025641 0.0366102 8.48644e-07 2.46668e-11 2.718 ||| 0-3 ||| 39 1.17835e+06 +en ||| will be addressed in ||| 0.047619 0.605812 8.48644e-07 3.88065e-09 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| will be addressing in ||| 1 0.605812 8.48644e-07 1.3032e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will be at ||| 0.0225564 0.321886 2.54593e-06 6.27171e-06 2.718 ||| 0-2 ||| 133 1.17835e+06 +en ||| will be badly affected in ||| 1 0.605812 8.48644e-07 6.94348e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will be based in ||| 0.25 0.605812 8.48644e-07 1.69851e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| will be carried out in ||| 0.0434783 0.605812 8.48644e-07 8.17268e-11 2.718 ||| 0-4 ||| 23 1.17835e+06 +en ||| will be closed in ||| 1 0.605812 8.48644e-07 4.19198e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will be coming forward in ||| 1 0.605812 8.48644e-07 7.82709e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will be completed by ||| 0.0454545 0.0468744 8.48644e-07 4.08138e-11 2.718 ||| 0-3 ||| 22 1.17835e+06 +en ||| will be complied with in ||| 0.5 0.605812 8.48644e-07 7.82408e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| will be dealt with by ||| 0.0714286 0.050209 8.48644e-07 1.62813e-12 2.718 ||| 0-3 0-4 ||| 14 1.17835e+06 +en ||| will be decided by ||| 0.0333333 0.0468744 8.48644e-07 9.12308e-11 2.718 ||| 0-3 ||| 30 1.17835e+06 +en ||| will be done across ||| 0.5 0.274879 8.48644e-07 1.4687e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| will be driven into ||| 0.5 0.525896 8.48644e-07 1.02388e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| will be elected on ||| 1 0.22993 8.48644e-07 2.90362e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will be for ||| 0.0588235 0.0286209 3.39458e-06 1.80384e-06 2.718 ||| 0-2 ||| 68 1.17835e+06 +en ||| will be found for ||| 1 0.0286209 8.48644e-07 3.9468e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will be from now ||| 1 0.0308834 8.48644e-07 1.2289e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will be from ||| 0.0909091 0.0308834 8.48644e-07 5.96582e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| will be given ||| 0.0026455 0.0546585 8.48644e-07 1.82012e-07 2.718 ||| 0-2 ||| 378 1.17835e+06 +en ||| will be going about ||| 1 0.0401564 8.48644e-07 3.84563e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will be gone in ||| 0.333333 0.605812 8.48644e-07 4.53226e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| will be held ||| 0.0025 0.0032035 8.48644e-07 2.77509e-09 2.718 ||| 0-2 ||| 400 1.17835e+06 +en ||| will be implemented in ||| 0.0357143 0.605812 8.48644e-07 6.35674e-09 2.718 ||| 0-3 ||| 28 1.17835e+06 +en ||| will be in demand over ||| 1 0.605812 8.48644e-07 1.86854e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will be in demand ||| 0.5 0.605812 8.48644e-07 3.88065e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| will be in the ||| 0.00892857 0.605812 8.48644e-07 4.44478e-06 2.718 ||| 0-2 ||| 112 1.17835e+06 +en ||| will be in ||| 0.054386 0.605812 2.6308e-05 7.24003e-05 2.718 ||| 0-2 ||| 570 1.17835e+06 +en ||| will be incorporated in ||| 0.142857 0.605812 8.48644e-07 1.46249e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| will be led by ||| 0.1 0.0468744 8.48644e-07 1.22441e-10 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| will be like in ||| 0.384615 0.605812 4.24322e-06 1.28576e-07 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| will be lost in ||| 0.1 0.605812 8.48644e-07 4.11958e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| will be made in the process in ||| 1 0.605812 8.48644e-07 8.5199e-14 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| will be made in ||| 0.0333333 0.605812 8.48644e-07 1.51664e-07 2.718 ||| 0-3 ||| 30 1.17835e+06 +en ||| will be noted in ||| 0.125 0.605812 8.48644e-07 2.21545e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| will be of ||| 0.00638978 0.0116562 1.69729e-06 2.13807e-06 2.718 ||| 0-2 ||| 313 1.17835e+06 +en ||| will be on ||| 0.0447761 0.22993 7.6378e-06 1.30207e-05 2.718 ||| 0-2 ||| 201 1.17835e+06 +en ||| will be once more ||| 1 0.0042952 8.48644e-07 2.13448e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will be over ||| 0.0294118 0.157937 8.48644e-07 6.28268e-07 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| will be placed in ||| 0.125 0.605812 8.48644e-07 9.06451e-09 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| will be possible at ||| 0.333333 0.321886 8.48644e-07 5.03054e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| will be possible for ||| 0.047619 0.0286209 8.48644e-07 1.44686e-09 2.718 ||| 0-3 ||| 21 1.17835e+06 +en ||| will be possible in ||| 0.214286 0.605812 2.54593e-06 5.80723e-08 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| will be possible with ||| 0.25 0.0535436 8.48644e-07 1.46619e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| will be present in ||| 0.0714286 0.605812 8.48644e-07 2.64985e-08 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| will be presented in ||| 0.025641 0.605812 8.48644e-07 5.70514e-09 2.718 ||| 0-3 ||| 39 1.17835e+06 +en ||| will be properly heard at ||| 1 0.321886 8.48644e-07 3.70056e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will be put in ||| 0.0416667 0.605812 8.48644e-07 7.98285e-08 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| will be put up for ||| 1 0.0286209 8.48644e-07 6.78319e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will be raised by me at ||| 1 0.321886 8.48644e-07 2.28389e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| will be re-integrated into ||| 1 0.525896 8.48644e-07 1.38832e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will be reached at ||| 0.333333 0.321886 8.48644e-07 6.77344e-10 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| will be reflected in ||| 0.0166667 0.605812 8.48644e-07 1.46249e-09 2.718 ||| 0-3 ||| 60 1.17835e+06 +en ||| will be required , in ||| 0.333333 0.605812 8.48644e-07 1.37023e-09 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| will be seen as ||| 0.0357143 0.066968 8.48644e-07 5.93658e-10 2.718 ||| 0-3 ||| 28 1.17835e+06 +en ||| will be selected in ||| 1 0.605812 8.48644e-07 3.11321e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will be speaking on ||| 0.166667 0.22993 8.48644e-07 1.49478e-09 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| will be taken into ||| 0.00595238 0.525896 8.48644e-07 3.16363e-09 2.718 ||| 0-3 ||| 168 1.17835e+06 +en ||| will be taken on ||| 0.030303 0.22993 8.48644e-07 1.18684e-08 2.718 ||| 0-3 ||| 33 1.17835e+06 +en ||| will be that there will ||| 0.5 0.0117359 8.48644e-07 2.55863e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| will be that there ||| 1 0.0117359 8.48644e-07 2.95755e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will be the case in ||| 0.166667 0.605812 8.48644e-07 4.75547e-09 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| will be tied down in ||| 1 0.605812 8.48644e-07 5.8124e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will be to ||| 0.00251256 0.0247351 8.48644e-07 4.40696e-06 2.718 ||| 0-2 ||| 398 1.17835e+06 +en ||| will be two classes in future : ||| 1 0.605812 8.48644e-07 8.88006e-21 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will be two classes in future ||| 1 0.605812 8.48644e-07 2.6366e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will be two classes in ||| 1 0.605812 8.48644e-07 9.92695e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will be up to ||| 0.03125 0.0247351 8.48644e-07 1.50299e-08 2.718 ||| 0-3 ||| 32 1.17835e+06 +en ||| will be upon us in ||| 1 0.605812 8.48644e-07 4.9497e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will be used as ||| 0.0416667 0.066968 8.48644e-07 1.20988e-09 2.718 ||| 0-3 ||| 24 1.17835e+06 +en ||| will be used by ||| 0.0625 0.0468744 8.48644e-07 5.72193e-10 2.718 ||| 0-3 ||| 16 1.17835e+06 +en ||| will be used for ||| 0.016129 0.0286209 8.48644e-07 7.73848e-10 2.718 ||| 0-3 ||| 62 1.17835e+06 +en ||| will be used ||| 0.00250627 0.0005314 8.48644e-07 7.7203e-10 2.718 ||| 0-0 ||| 399 1.17835e+06 +en ||| will be very different in ||| 0.5 0.605812 8.48644e-07 5.54721e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| will be very largely ||| 0.2 0.247761 8.48644e-07 4.62175e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| will be with ||| 0.03125 0.0535436 8.48644e-07 1.82794e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| will be ||| 0.000273357 0.0005314 7.6378e-06 1.7996e-06 2.718 ||| 0-0 ||| 32924 1.17835e+06 +en ||| will bear this out - is ||| 1 0.0013296 8.48644e-07 2.79742e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will bear this out - ||| 1 0.0013296 8.48644e-07 8.92573e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will bear this out ||| 0.333333 0.0013296 8.48644e-07 2.36625e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| will bear this ||| 0.0833333 0.0013296 8.48644e-07 6.17755e-10 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| will become members at ||| 1 0.321886 8.48644e-07 1.45835e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will become ||| 0.00578512 0.219193 5.94051e-06 3.30779e-05 2.718 ||| 0-1 ||| 1210 1.17835e+06 +en ||| will bring about ||| 0.00724638 0.0401564 8.48644e-07 7.71875e-09 2.718 ||| 0-2 ||| 138 1.17835e+06 +en ||| will bring to ||| 0.0322581 0.0247351 8.48644e-07 7.5699e-08 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| will bring ||| 0.00252525 0.0005314 1.69729e-06 3.09121e-08 2.718 ||| 0-0 ||| 792 1.17835e+06 +en ||| will call for ||| 0.0227273 0.0286209 8.48644e-07 2.20965e-08 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| will certainly be in ||| 0.25 0.605812 8.48644e-07 1.81363e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| will come in ||| 0.111111 0.605812 2.54593e-06 3.39292e-06 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| will come into ||| 0.00763359 0.525896 8.48644e-07 1.62653e-07 2.718 ||| 0-2 ||| 131 1.17835e+06 +en ||| will come to its ||| 0.5 0.0247351 8.48644e-07 2.94236e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| will come to play ||| 0.25 0.0247351 8.48644e-07 5.32834e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| will come to ||| 0.0210526 0.0247351 3.39458e-06 2.06525e-07 2.718 ||| 0-2 ||| 190 1.17835e+06 +en ||| will come up for ||| 0.5 0.0286209 8.48644e-07 2.88303e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| will come up with ||| 0.025641 0.0535436 8.48644e-07 2.92155e-10 2.718 ||| 0-3 ||| 39 1.17835e+06 +en ||| will come when ||| 0.0454545 0.142731 8.48644e-07 4.37417e-08 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| will continue during ||| 0.2 0.226251 8.48644e-07 5.78806e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| will continue in ||| 0.0151515 0.605812 8.48644e-07 9.24434e-07 2.718 ||| 0-2 ||| 66 1.17835e+06 +en ||| will continue to be so in ||| 0.0909091 0.605812 8.48644e-07 3.37885e-12 2.718 ||| 0-5 ||| 11 1.17835e+06 +en ||| will continue up to and in ||| 1 0.605812 8.48644e-07 3.50914e-12 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| will decide all together what we ||| 0.5 0.0035633 8.48644e-07 6.9787e-18 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| will decide all together what ||| 0.5 0.0035633 8.48644e-07 6.14739e-16 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| will die in ||| 0.166667 0.605812 8.48644e-07 4.5942e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| will do about ||| 0.333333 0.0401564 8.48644e-07 8.5179e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| will do in ||| 0.0666667 0.605812 8.48644e-07 1.37239e-05 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| will easily ||| 0.1 0.0005314 8.48644e-07 4.00179e-09 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| will end up in ||| 0.04 0.605812 8.48644e-07 5.92816e-09 2.718 ||| 0-3 ||| 25 1.17835e+06 +en ||| will ensure lasting stability in our continent ||| 1 0.605812 8.48644e-07 5.99838e-24 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will ensure lasting stability in our ||| 1 0.605812 8.48644e-07 5.21598e-19 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will ensure lasting stability in ||| 1 0.605812 8.48644e-07 3.78134e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will ensure ||| 0.000807102 0.0005314 8.48644e-07 4.45261e-08 2.718 ||| 0-0 ||| 1239 1.17835e+06 +en ||| will enter into force with regard to ||| 1 0.0247351 8.48644e-07 9.12118e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| will face challenges on ||| 1 0.22993 8.48644e-07 2.24774e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will fail in ||| 0.1 0.605812 8.48644e-07 2.15728e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| will fall by ||| 0.0357143 0.0468744 8.48644e-07 7.0432e-09 2.718 ||| 0-2 ||| 28 1.17835e+06 +en ||| will figure in ||| 1 0.605812 8.48644e-07 3.04815e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will find on ||| 1 0.22993 8.48644e-07 2.39178e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will focus much more on ||| 0.5 0.22993 8.48644e-07 1.27465e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| will focus on ||| 0.00515464 0.22993 8.48644e-07 5.56094e-08 2.718 ||| 0-2 ||| 194 1.17835e+06 +en ||| will focus solely on ||| 0.333333 0.22993 8.48644e-07 1.22341e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| will follow one another in ||| 1 0.605812 8.48644e-07 3.97441e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will for ||| 0.0196078 0.0286209 8.48644e-07 9.95338e-05 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| will form ||| 0.00518135 0.0005197 8.48644e-07 3.54699e-08 2.718 ||| 0-1 ||| 193 1.17835e+06 +en ||| will gain from European ||| 1 0.0308834 8.48644e-07 6.14228e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will gain from ||| 0.0666667 0.0308834 8.48644e-07 1.83686e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| will go over ||| 0.333333 0.157937 8.48644e-07 2.02733e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| will go up ||| 0.25 0.0147069 8.48644e-07 3.49086e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| will grow by ||| 0.142857 0.0468744 8.48644e-07 1.80312e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| will happen in ||| 0.00854701 0.605812 8.48644e-07 4.34252e-07 2.718 ||| 0-2 ||| 117 1.17835e+06 +en ||| will have a look in ||| 1 0.605812 8.48644e-07 6.1735e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will have a ||| 0.000959693 0.0015231 8.48644e-07 8.52565e-08 2.718 ||| 0-2 ||| 1042 1.17835e+06 +en ||| will have at ||| 0.0588235 0.321886 8.48644e-07 4.13887e-06 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| will have disappeared during ||| 1 0.226251 8.48644e-07 1.40602e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will have in ||| 0.0909091 0.605812 2.54593e-06 4.77789e-05 2.718 ||| 0-2 ||| 33 1.17835e+06 +en ||| will have on ||| 0.0895522 0.22993 1.01837e-05 8.59274e-06 2.718 ||| 0-2 ||| 134 1.17835e+06 +en ||| will have to be made on ||| 0.111111 0.22993 8.48644e-07 2.89867e-11 2.718 ||| 0-5 ||| 9 1.17835e+06 +en ||| will have to be primarily centred on ||| 1 0.22993 8.48644e-07 7.22316e-19 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| will have to cover ||| 0.2 0.0247351 8.48644e-07 2.27136e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| will have to deal in ||| 0.5 0.605812 8.48644e-07 1.80266e-09 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| will have to play in ||| 0.333333 0.605812 8.48644e-07 1.09535e-09 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| will have to wait until ||| 0.0769231 0.0092136 8.48644e-07 1.45217e-14 2.718 ||| 0-4 ||| 13 1.17835e+06 +en ||| will have to ||| 0.00170116 0.0247351 5.09187e-06 2.90827e-06 2.718 ||| 0-2 ||| 3527 1.17835e+06 +en ||| will have with ||| 0.142857 0.0535436 8.48644e-07 1.20631e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| will help bring about more ||| 1 0.0222258 8.48644e-07 4.89723e-16 2.718 ||| 0-3 0-4 ||| 1 1.17835e+06 +en ||| will help us confront ||| 1 0.0005314 8.48644e-07 1.36447e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| will help us ||| 0.003003 0.0005314 8.48644e-07 5.45788e-11 2.718 ||| 0-0 ||| 333 1.17835e+06 +en ||| will help ||| 0.00043802 0.0005314 8.48644e-07 1.89365e-08 2.718 ||| 0-0 ||| 2283 1.17835e+06 +en ||| will hinge on how the new decision-making ||| 1 0.22993 8.48644e-07 1.07148e-22 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will hinge on how the new ||| 1 0.22993 8.48644e-07 6.61405e-18 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will hinge on how the ||| 1 0.22993 8.48644e-07 1.10658e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will hinge on how ||| 1 0.22993 8.48644e-07 1.80249e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will hinge on ||| 0.2 0.22993 8.48644e-07 5.02928e-10 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| will honour the ||| 0.142857 0.0011669 8.48644e-07 4.63444e-10 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| will impact upon ||| 0.5 0.114601 8.48644e-07 6.30096e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| will in all ||| 0.0625 0.605812 8.48644e-07 1.88778e-05 2.718 ||| 0-1 ||| 16 1.17835e+06 +en ||| will in fact ||| 0.0131579 0.605812 8.48644e-07 1.17024e-05 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| will in future ||| 0.0131579 0.605812 8.48644e-07 1.06106e-06 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| will in the ||| 0.0120482 0.605812 8.48644e-07 0.000245258 2.718 ||| 0-1 ||| 83 1.17835e+06 +en ||| will in ||| 0.213755 0.605812 9.75941e-05 0.00399496 2.718 ||| 0-1 ||| 538 1.17835e+06 +en ||| will include it in ||| 0.333333 0.605812 8.48644e-07 9.40612e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| will include ||| 0.0028169 0.0015517 8.48644e-07 9.42981e-08 2.718 ||| 0-1 ||| 355 1.17835e+06 +en ||| will instead ||| 0.0263158 0.340662 8.48644e-07 2.91866e-05 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| will it ||| 0.0022831 0.0080472 8.48644e-07 2.38591e-05 2.718 ||| 0-1 ||| 438 1.17835e+06 +en ||| will itself be ||| 0.333333 0.0245169 8.48644e-07 5.38713e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| will itself ||| 0.142857 0.0245169 8.48644e-07 2.97255e-06 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| will know for ||| 1 0.0286209 8.48644e-07 2.56797e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will lead in ||| 0.1 0.605812 8.48644e-07 7.6903e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| will lead them in the ||| 1 0.605812 8.48644e-07 1.26642e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will lead them in ||| 1 0.605812 8.48644e-07 2.06285e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will lead to ||| 0.00285987 0.0247351 2.54593e-06 4.68103e-08 2.718 ||| 0-2 ||| 1049 1.17835e+06 +en ||| will lead ||| 0.000821018 0.0005314 8.48644e-07 1.91152e-08 2.718 ||| 0-0 ||| 1218 1.17835e+06 +en ||| will lie in ||| 0.2 0.605812 1.69729e-06 1.5101e-07 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| will look , in ||| 1 0.605812 8.48644e-07 1.38876e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will look like in ||| 0.333333 0.605812 8.48644e-07 2.06809e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| will look one day in ||| 1 0.605812 8.48644e-07 1.24353e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will lose their places in ||| 0.5 0.605812 8.48644e-07 8.10806e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| will make a ||| 0.00342466 0.0015231 8.48644e-07 1.23881e-08 2.718 ||| 0-2 ||| 292 1.17835e+06 +en ||| will make during ||| 1 0.226251 8.48644e-07 4.3468e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will make to ||| 0.0714286 0.0247351 8.48644e-07 4.22582e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| will mean , in ||| 0.333333 0.605812 8.48644e-07 1.22773e-07 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| will mean for ||| 0.125 0.0286209 8.48644e-07 2.56499e-08 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| will mean ||| 0.00127389 0.0005314 8.48644e-07 2.55896e-08 2.718 ||| 0-0 ||| 785 1.17835e+06 +en ||| will move in ||| 0.0909091 0.605812 8.48644e-07 6.10829e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| will not be diverted by the ||| 0.5 0.0468744 8.48644e-07 1.39779e-15 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| will not be diverted by ||| 0.5 0.0468744 8.48644e-07 2.27684e-14 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| will not change that ||| 0.0833333 0.0017499 8.48644e-07 3.76627e-12 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| will not help if they are ||| 1 0.0178573 8.48644e-07 3.23435e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will not help if they ||| 1 0.0178573 8.48644e-07 2.13169e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will not help if ||| 0.5 0.0178573 8.48644e-07 6.53092e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| will not in ||| 0.111111 0.605812 1.69729e-06 1.36392e-05 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| will not need to have ||| 0.333333 0.0247351 8.48644e-07 9.10402e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| will not need to ||| 0.0526316 0.0247351 8.48644e-07 7.61218e-10 2.718 ||| 0-3 ||| 19 1.17835e+06 +en ||| will not permit them in ||| 1 0.605812 1.69729e-06 8.81717e-13 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| will not take ||| 0.0103093 0.0074151 8.48644e-07 8.64225e-09 2.718 ||| 0-2 ||| 97 1.17835e+06 +en ||| will not under ||| 0.5 0.205566 1.69729e-06 1.67015e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| will now at least ||| 0.166667 0.321886 8.48644e-07 1.74936e-10 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| will now at ||| 0.142857 0.321886 8.48644e-07 7.1286e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| will now determine ||| 1 0.0123946 8.48644e-07 1.23428e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| will now state on ||| 1 0.22993 8.48644e-07 3.73841e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will now take us into ||| 0.5 0.525896 8.48644e-07 1.83062e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| will now ||| 0.002 0.0123946 8.48644e-07 5.12151e-06 2.718 ||| 0-1 ||| 500 1.17835e+06 +en ||| will obviously continue to ||| 0.166667 0.0247351 8.48644e-07 3.72505e-12 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| will often find that , in ||| 1 0.605812 8.48644e-07 3.50562e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| will on the whole ||| 0.25 0.0011669 8.48644e-07 9.38065e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| will on the ||| 0.02 0.0011669 8.48644e-07 1.65824e-07 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| will only be at ||| 1 0.321886 8.48644e-07 6.98104e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will over ||| 0.25 0.157937 8.48644e-07 3.46671e-05 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| will play a ||| 0.0047619 0.0015231 8.48644e-07 1.83918e-09 2.718 ||| 0-2 ||| 210 1.17835e+06 +en ||| will present in ||| 0.0416667 0.605812 8.48644e-07 1.46216e-06 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| will prevail in ||| 0.1 0.605812 8.48644e-07 9.50801e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| will promote it in ||| 1 0.605812 8.48644e-07 4.55387e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will provide , in ||| 0.5 0.605812 8.48644e-07 1.40924e-07 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| will provide you with a ||| 0.5 0.0535436 8.48644e-07 4.26989e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| will provide you with ||| 0.0909091 0.0535436 8.48644e-07 9.63296e-11 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| will pursue in ||| 0.25 0.605812 8.48644e-07 1.56602e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| will pursue to ||| 1 0.0247351 8.48644e-07 9.53228e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will push up ||| 0.0769231 0.0147069 8.48644e-07 1.6535e-10 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| will quote in English , ||| 0.5 0.605812 8.48644e-07 3.29348e-13 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| will quote in English ||| 0.333333 0.605812 8.48644e-07 2.76172e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| will quote in ||| 0.333333 0.605812 8.48644e-07 1.78175e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| will result in ||| 0.00169205 0.605812 8.48644e-07 2.10335e-06 2.718 ||| 0-2 ||| 591 1.17835e+06 +en ||| will rise by about ||| 0.25 0.0401564 8.48644e-07 1.63503e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| will rise from ||| 0.0555556 0.0308834 8.48644e-07 4.13459e-09 2.718 ||| 0-2 ||| 18 1.17835e+06 +en ||| will say here that I ||| 0.5 0.0017499 8.48644e-07 1.23966e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| will say here that ||| 0.5 0.0017499 8.48644e-07 1.75254e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| will say in ||| 0.2 0.605812 8.48644e-07 3.81838e-06 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| will say more on ||| 0.5 0.22993 8.48644e-07 1.56824e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| will see during ||| 1 0.226251 8.48644e-07 1.76243e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will see from ||| 0.2 0.0308834 8.48644e-07 2.31945e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| will see in ||| 0.125 0.605812 1.69729e-06 2.81485e-06 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| will seek in the course of ||| 1 0.605812 8.48644e-07 1.16916e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will seek in the course ||| 1 0.605812 8.48644e-07 2.15062e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will seek in the ||| 1 0.605812 8.48644e-07 1.70454e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will seek in ||| 1 0.605812 8.48644e-07 2.7765e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| will seize every opportunity to ||| 1 0.0247351 8.48644e-07 4.6264e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will set off for ||| 1 0.0286209 8.48644e-07 2.36742e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will shortly be living in ||| 1 0.605812 8.48644e-07 7.40191e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will shortly ||| 0.00877193 0.248793 8.48644e-07 3.33763e-06 2.718 ||| 0-1 ||| 114 1.17835e+06 +en ||| will so far as ||| 1 0.066968 8.48644e-07 2.41132e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will sooner or ||| 0.0333333 0.0113744 8.48644e-07 8.11055e-11 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| will sooner ||| 0.04 0.0113744 8.48644e-07 7.09398e-08 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| will sort itself out in ||| 1 0.605812 8.48644e-07 1.65963e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will speak in ||| 0.0769231 0.605812 8.48644e-07 5.40518e-07 2.718 ||| 0-2 ||| 13 1.17835e+06 +en ||| will speak on ||| 0.208333 0.22993 4.24322e-06 9.72088e-08 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| will spend in ||| 0.333333 0.605812 8.48644e-07 1.20648e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| will stand for in ||| 1 0.605812 8.48644e-07 5.06003e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will still be visible ||| 0.333333 0.0005314 8.48644e-07 2.00608e-14 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| will still be ||| 0.00465116 0.0005314 8.48644e-07 1.35546e-09 2.718 ||| 0-0 ||| 215 1.17835e+06 +en ||| will still ||| 0.00393701 0.0005314 8.48644e-07 7.47928e-08 2.718 ||| 0-0 ||| 254 1.17835e+06 +en ||| will struggle at ||| 0.25 0.321886 8.48644e-07 4.74109e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| will succeed in this through ||| 0.333333 0.605812 8.48644e-07 4.52694e-13 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| will succeed in this ||| 0.111111 0.605812 8.48644e-07 9.83477e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| will succeed in ||| 0.0119048 0.605812 8.48644e-07 1.52208e-07 2.718 ||| 0-2 ||| 84 1.17835e+06 +en ||| will take in ||| 0.157895 0.605812 2.54593e-06 6.43189e-06 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| will take over ||| 0.0181818 0.157937 8.48644e-07 5.5814e-08 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| will take place during ||| 0.0119048 0.226251 8.48644e-07 6.06083e-11 2.718 ||| 0-3 ||| 84 1.17835e+06 +en ||| will take place in ||| 0.00970874 0.605812 2.54593e-06 9.67999e-09 2.718 ||| 0-3 ||| 309 1.17835e+06 +en ||| will take place on ||| 0.00219298 0.22993 1.69729e-06 1.74088e-09 2.718 ||| 0-3 ||| 912 1.17835e+06 +en ||| will take place when ||| 0.2 0.142731 8.48644e-07 1.24795e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| will take place within ||| 0.0909091 0.369196 8.48644e-07 2.32403e-10 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| will take ||| 0.00143495 0.0074151 7.6378e-06 2.53134e-06 2.718 ||| 0-1 ||| 6272 1.17835e+06 +en ||| will then be in ||| 0.111111 0.605812 8.48644e-07 1.16593e-07 2.718 ||| 0-3 ||| 9 1.17835e+06 +en ||| will then in ||| 0.5 0.605812 8.48644e-07 6.43348e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| will then ||| 0.00301205 0.013351 8.48644e-07 2.90248e-06 2.718 ||| 0-1 ||| 332 1.17835e+06 +en ||| will therefore in ||| 0.25 0.605812 8.48644e-07 3.34099e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| will therefore need , in ||| 1 0.605812 8.48644e-07 3.65319e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| will they play in the publication of ||| 1 0.605812 8.48644e-07 6.84911e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will they play in the publication ||| 1 0.605812 8.48644e-07 1.25986e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will they play in the ||| 1 0.605812 8.48644e-07 2.06535e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| will they play in ||| 0.5 0.605812 8.48644e-07 3.3642e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| will to a ||| 0.666667 0.0247351 1.69729e-06 1.07787e-05 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| will to ||| 0.00377358 0.0247351 1.69729e-06 0.000243171 2.718 ||| 0-1 ||| 530 1.17835e+06 +en ||| will trust ||| 0.125 0.192848 8.48644e-07 6.06363e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| will ultimately become ||| 0.333333 0.199943 8.48644e-07 2.37649e-09 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| will ultimately let our ||| 1 0.199943 8.48644e-07 4.68599e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| will ultimately let ||| 1 0.199943 8.48644e-07 3.39712e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| will ultimately ||| 0.0168067 0.199943 1.69729e-06 8.31813e-06 2.718 ||| 0-1 ||| 119 1.17835e+06 +en ||| will under ||| 1 0.205566 1.69729e-06 4.89191e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| will work in ||| 0.0294118 0.605812 8.48644e-07 2.52881e-06 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| will yet ||| 0.25 0.0005314 8.48644e-07 2.62648e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| will ||| 0.00148673 0.0005314 7.72266e-05 9.93e-05 2.718 ||| 0-0 ||| 61208 1.17835e+06 +en ||| willing to listen ||| 0.0769231 0.0247351 8.48644e-07 1.60437e-11 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| willing to ||| 0.00114416 0.0247351 1.69729e-06 1.06249e-06 2.718 ||| 0-1 ||| 1748 1.17835e+06 +en ||| willingness to ||| 0.000874126 0.0247351 8.48644e-07 3.65408e-07 2.718 ||| 0-1 ||| 1144 1.17835e+06 +en ||| winds in ||| 1 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| wine in ||| 0.0416667 0.605812 8.48644e-07 7.8041e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| winning over ||| 0.0416667 0.157937 8.48644e-07 2.7249e-08 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| wish , in ||| 0.25 0.605812 8.48644e-07 1.6229e-05 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| wish , with ||| 0.2 0.0535436 8.48644e-07 4.09745e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| wish in ||| 0.0588235 0.605812 8.48644e-07 0.000136087 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| wish list with ||| 1 0.0535436 8.48644e-07 2.51163e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| wish to emphasize relates to ||| 1 0.138965 8.48644e-07 6.80663e-15 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| wish to emphasize relates ||| 1 0.138965 8.48644e-07 7.6601e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| wish to emphasize ||| 0.0625 0.138965 8.48644e-07 2.72602e-09 2.718 ||| 0-2 ||| 16 1.17835e+06 +en ||| wish to know ||| 0.0357143 0.0247351 8.48644e-07 2.13715e-09 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| wish to leave ||| 0.0833333 0.0247351 8.48644e-07 7.86934e-10 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| wish to make ||| 0.00689655 0.0247351 8.48644e-07 1.43951e-08 2.718 ||| 0-1 ||| 145 1.17835e+06 +en ||| wish to quote at length here - ||| 1 0.321886 8.48644e-07 1.37583e-20 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| wish to quote at length here ||| 1 0.321886 8.48644e-07 3.64737e-18 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| wish to quote at length ||| 1 0.321886 8.48644e-07 1.79868e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| wish to quote at ||| 1 0.321886 8.48644e-07 4.67191e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| wish to see clear wording ||| 1 0.0247351 8.48644e-07 2.72019e-17 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| wish to see clear ||| 1 0.0247351 8.48644e-07 1.94299e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| wish to see ||| 0.0045045 0.0247351 8.48644e-07 5.83657e-09 2.718 ||| 0-1 ||| 222 1.17835e+06 +en ||| wish to take an active part in ||| 1 0.605812 8.48644e-07 4.15754e-18 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| wish to ||| 0.00233318 0.0247351 8.48644e-06 8.28352e-06 2.718 ||| 0-1 ||| 4286 1.17835e+06 +en ||| wished for ||| 0.0188679 0.0286209 8.48644e-07 1.81782e-07 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| wishes on ||| 0.125 0.22993 8.48644e-07 4.39326e-06 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| wishes to specify that under ||| 1 0.205566 8.48644e-07 3.21925e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| wishes to ||| 0.00120919 0.0247351 1.69729e-06 1.48693e-06 2.718 ||| 0-1 ||| 1654 1.17835e+06 +en ||| wishes whenever one wishes , ||| 0.2 0.0380466 8.48644e-07 6.34278e-17 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| wishes whenever one wishes ||| 0.2 0.0380466 8.48644e-07 5.31868e-16 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| wishes whenever one ||| 0.2 0.0380466 8.48644e-07 1.00542e-11 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| wishes whenever ||| 0.2 0.0380466 8.48644e-07 2.41224e-09 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| wishes within ||| 1 0.369196 8.48644e-07 5.86486e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| with , across ||| 1 0.274879 8.48644e-07 1.56656e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| with , that ||| 0.2 0.0535436 8.48644e-07 2.33884e-05 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| with , to deal with these problems ||| 1 0.0535436 8.48644e-07 4.66864e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| with , to deal with these ||| 1 0.0535436 8.48644e-07 3.47887e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| with , to deal with ||| 1 0.0535436 8.48644e-07 3.35442e-10 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| with , ||| 0.0199336 0.0535436 1.01837e-05 0.00139038 2.718 ||| 0-0 ||| 602 1.17835e+06 +en ||| with - ||| 0.0333333 0.0535436 8.48644e-07 4.39785e-05 2.718 ||| 0-0 ||| 30 1.17835e+06 +en ||| with 2 , ||| 0.2 0.0535436 8.48644e-07 5.10269e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| with 2 ||| 0.05 0.0535436 8.48644e-07 4.27882e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| with 700 Members to properly represent approximately ||| 1 0.0535436 8.48644e-07 9.84294e-27 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with 700 Members to properly represent ||| 1 0.0535436 8.48644e-07 1.04712e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with 700 Members to properly ||| 1 0.0535436 8.48644e-07 2.04916e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with 700 Members to ||| 1 0.0535436 8.48644e-07 2.75055e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with 700 Members ||| 0.333333 0.0535436 8.48644e-07 3.09544e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| with 700 ||| 0.2 0.0535436 8.48644e-07 2.0986e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| with Article 24 of the Spanish Constitution ||| 1 0.0535436 8.48644e-07 9.01317e-25 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with Article 24 of the Spanish ||| 1 0.0535436 8.48644e-07 1.47757e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with Article 24 of the ||| 0.333333 0.0535436 8.48644e-07 6.62587e-15 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| with Article 24 of ||| 1 0.0535436 8.48644e-07 1.07928e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with Article 24 ||| 0.25 0.0535436 8.48644e-07 1.98528e-12 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| with Article ||| 0.00276243 0.0535436 8.48644e-07 2.30846e-07 2.718 ||| 0-0 ||| 362 1.17835e+06 +en ||| with Europe behind ||| 1 0.0535436 8.48644e-07 5.28587e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with Europe ||| 0.00246914 0.0535436 8.48644e-07 5.8994e-06 2.718 ||| 0-0 ||| 405 1.17835e+06 +en ||| with Member ||| 0.0625 0.0535436 8.48644e-07 6.00783e-06 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| with Mr ||| 0.000549149 0.0535436 8.48644e-07 7.61093e-06 2.718 ||| 0-0 ||| 1821 1.17835e+06 +en ||| with Romania in a ||| 1 0.605812 8.48644e-07 1.32197e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| with Romania in ||| 0.333333 0.605812 8.48644e-07 2.98239e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| with South Korea is ||| 0.166667 0.0535436 8.48644e-07 4.81455e-14 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| with South Korea ||| 0.0135135 0.0535436 8.48644e-07 1.53618e-12 2.718 ||| 0-0 ||| 74 1.17835e+06 +en ||| with South ||| 0.0588235 0.0535436 1.69729e-06 2.51832e-07 2.718 ||| 0-0 ||| 34 1.17835e+06 +en ||| with Turkey in ||| 0.0416667 0.605812 8.48644e-07 1.73333e-07 2.718 ||| 0-2 ||| 24 1.17835e+06 +en ||| with Turkey ||| 0.00094518 0.0535436 8.48644e-07 6.84377e-07 2.718 ||| 0-0 ||| 1058 1.17835e+06 +en ||| with a Member ||| 0.0909091 0.0535436 8.48644e-07 2.66302e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| with a case ||| 0.142857 0.0535436 8.48644e-07 5.52914e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| with a clearly ||| 0.5 0.0535436 8.48644e-07 9.43142e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with a degree ||| 0.0153846 0.0535436 8.48644e-07 7.15754e-08 2.718 ||| 0-0 ||| 65 1.17835e+06 +en ||| with a good impression ||| 1 0.0535436 8.48644e-07 7.04859e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with a good ||| 0.0147059 0.0535436 8.48644e-07 2.68007e-07 2.718 ||| 0-0 ||| 68 1.17835e+06 +en ||| with a number of ||| 0.00409836 0.0535436 8.48644e-07 1.39013e-08 2.718 ||| 0-0 ||| 244 1.17835e+06 +en ||| with a number ||| 0.00350877 0.0535436 8.48644e-07 2.55708e-07 2.718 ||| 0-0 ||| 285 1.17835e+06 +en ||| with a proposal in ||| 0.25 0.605812 8.48644e-07 2.61383e-08 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| with a rapid ||| 0.5 0.0535436 8.48644e-07 9.30222e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with a reduction ||| 0.0263158 0.0535436 8.48644e-07 2.11884e-08 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| with a reference to ||| 0.0588235 0.0535436 8.48644e-07 3.91706e-09 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| with a reference ||| 0.0588235 0.0535436 8.48644e-07 4.40822e-08 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| with a request for ||| 0.0909091 0.0286209 8.48644e-07 2.50122e-10 2.718 ||| 0-3 ||| 11 1.17835e+06 +en ||| with a sick feeling ||| 1 0.0535436 8.48644e-07 6.75341e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with a sick ||| 1 0.0535436 8.48644e-07 1.86044e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with a view in ||| 0.2 0.605812 8.48644e-07 1.18231e-07 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| with a view to ||| 0.00174115 0.0535436 5.09187e-06 4.14805e-08 2.718 ||| 0-0 ||| 3446 1.17835e+06 +en ||| with a view ||| 0.0061082 0.0535436 1.78215e-05 4.66816e-07 2.718 ||| 0-0 ||| 3438 1.17835e+06 +en ||| with a voluntary code of conduct to ||| 1 0.0535436 8.48644e-07 3.31251e-20 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with a voluntary code of conduct ||| 1 0.0535436 8.48644e-07 3.72786e-19 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with a voluntary code of ||| 1 0.0535436 8.48644e-07 6.20276e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with a voluntary code ||| 1 0.0535436 8.48644e-07 1.14097e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with a voluntary ||| 1 0.0535436 8.48644e-07 6.87331e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with a ||| 0.00850495 0.0535436 0.00011881 0.00051679 2.718 ||| 0-0 ||| 16461 1.17835e+06 +en ||| with all due respect to ||| 0.0138889 0.0535436 8.48644e-07 5.85354e-13 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| with all due respect ||| 0.00505051 0.0535436 8.48644e-07 6.5875e-12 2.718 ||| 0-0 ||| 198 1.17835e+06 +en ||| with all due ||| 0.00546448 0.0535436 8.48644e-07 1.52277e-08 2.718 ||| 0-0 ||| 183 1.17835e+06 +en ||| with all its ||| 0.00617284 0.0535436 8.48644e-07 7.84909e-08 2.718 ||| 0-0 ||| 162 1.17835e+06 +en ||| with all possible ||| 0.166667 0.0535436 8.48644e-07 4.41901e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| with all ||| 0.00350058 0.0535436 1.01837e-05 5.5093e-05 2.718 ||| 0-0 ||| 3428 1.17835e+06 +en ||| with along ||| 1 0.155535 8.48644e-07 5.08682e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| with an enormous ||| 0.0625 0.0535436 8.48644e-07 1.49243e-09 2.718 ||| 0-0 ||| 16 1.17835e+06 +en ||| with an exemption by another airline ||| 1 0.0535436 8.48644e-07 2.72084e-21 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with an exemption by another ||| 1 0.0535436 8.48644e-07 4.00124e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with an exemption by ||| 1 0.0535436 8.48644e-07 1.65958e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with an exemption ||| 0.333333 0.0535436 8.48644e-07 3.16104e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| with an ||| 0.00480769 0.0535436 1.10324e-05 5.18203e-05 2.718 ||| 0-0 ||| 2704 1.17835e+06 +en ||| with and ||| 0.00411523 0.0535436 8.48644e-07 0.000146038 2.718 ||| 0-0 ||| 243 1.17835e+06 +en ||| with any luck ||| 0.0833333 0.0535436 8.48644e-07 1.71017e-10 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| with any ||| 0.00213675 0.0535436 8.48644e-07 1.76306e-05 2.718 ||| 0-0 ||| 468 1.17835e+06 +en ||| with arrangements ||| 0.125 0.0535436 8.48644e-07 5.11826e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| with as ||| 0.0145985 0.0535436 1.69729e-06 0.000118972 2.718 ||| 0-0 ||| 137 1.17835e+06 +en ||| with at a ||| 0.166667 0.187715 8.48644e-07 2.06726e-05 2.718 ||| 0-0 0-1 ||| 6 1.17835e+06 +en ||| with at least ||| 0.0208333 0.321886 8.48644e-07 6.27716e-08 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| with at national ||| 0.333333 0.321886 8.48644e-07 3.28694e-08 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| with at ||| 0.217742 0.321886 2.29134e-05 0.000255793 2.718 ||| 0-1 ||| 124 1.17835e+06 +en ||| with autonomous ||| 0.25 0.0535436 8.48644e-07 4.1972e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| with bees ||| 0.333333 0.0535436 8.48644e-07 1.63225e-08 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| with both sectors having ||| 0.5 0.0065553 8.48644e-07 4.195e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| with both ||| 0.00512821 0.0535436 1.69729e-06 1.9313e-05 2.718 ||| 0-0 ||| 390 1.17835e+06 +en ||| with by means ||| 0.166667 0.0535436 8.48644e-07 3.8789e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| with by the ||| 0.0166667 0.0535436 8.48644e-07 3.75782e-06 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| with by ||| 0.12 0.050209 1.52756e-05 9.91834e-05 2.718 ||| 0-0 0-1 ||| 150 1.17835e+06 +en ||| with concerns about ||| 0.2 0.0535436 8.48644e-07 1.23504e-09 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| with concerns ||| 0.166667 0.0535436 8.48644e-07 8.73252e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| with confidence ||| 0.00900901 0.0535436 8.48644e-07 3.6026e-07 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| with conviction ||| 0.0108696 0.0535436 8.48644e-07 8.86076e-08 2.718 ||| 0-0 ||| 92 1.17835e+06 +en ||| with countries ||| 0.00214133 0.0535436 8.48644e-07 4.42688e-06 2.718 ||| 0-0 ||| 467 1.17835e+06 +en ||| with dangerous ||| 0.1 0.0535436 8.48644e-07 2.59993e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| with debts ||| 0.125 0.0535436 8.48644e-07 5.47968e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| with demand ||| 0.0769231 0.0535436 8.48644e-07 6.24917e-07 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| with developing countries and autonomous preferences in ||| 1 0.605812 8.48644e-07 6.86333e-24 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| with difficulties arising from ||| 1 0.0308834 8.48644e-07 1.45151e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| with disabilities into ||| 0.111111 0.525896 8.48644e-07 3.53892e-10 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| with disgraceful ||| 0.5 0.0535436 8.48644e-07 3.38108e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with during ||| 0.166667 0.226251 1.69729e-06 1.84884e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| with dwindling ||| 0.125 0.0535436 8.48644e-07 1.28248e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| with each consecutive ||| 0.333333 0.0535436 8.48644e-07 1.30906e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| with each other , ||| 0.0172414 0.0535436 8.48644e-07 5.05607e-10 2.718 ||| 0-0 ||| 58 1.17835e+06 +en ||| with each other at ||| 0.2 0.321886 8.48644e-07 9.30182e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| with each other during ||| 0.5 0.226251 8.48644e-07 6.72325e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| with each other in ||| 0.142857 0.605812 1.69729e-06 1.0738e-09 2.718 ||| 0-3 ||| 14 1.17835e+06 +en ||| with each other ||| 0.0210843 0.0535436 5.94051e-06 4.23972e-09 2.718 ||| 0-0 ||| 332 1.17835e+06 +en ||| with each ||| 0.0189753 0.0535436 8.48644e-06 3.27265e-06 2.718 ||| 0-0 ||| 527 1.17835e+06 +en ||| with effect ||| 0.00892857 0.0535436 8.48644e-07 3.88941e-06 2.718 ||| 0-0 ||| 112 1.17835e+06 +en ||| with either ||| 0.0227273 0.0535436 8.48644e-07 1.00943e-05 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| with enlargement impending , ||| 1 0.0535436 8.48644e-07 1.34366e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with enlargement impending ||| 1 0.0535436 8.48644e-07 1.12672e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with enlargement ||| 0.003861 0.0535436 8.48644e-07 3.52099e-07 2.718 ||| 0-0 ||| 259 1.17835e+06 +en ||| with ensuring ||| 0.025641 0.0535436 8.48644e-07 1.35476e-06 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| with entries ||| 1 0.0535436 8.48644e-07 2.0986e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with equal ||| 0.00617284 0.0535436 8.48644e-07 6.66889e-07 2.718 ||| 0-0 ||| 162 1.17835e+06 +en ||| with exactly ||| 0.0526316 0.0535436 8.48644e-07 1.17055e-06 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| with extending ||| 0.0454545 0.0535436 8.48644e-07 2.39007e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| with for ||| 0.0416667 0.0410823 8.48644e-07 0.000134138 2.718 ||| 0-0 0-1 ||| 24 1.17835e+06 +en ||| with fuel duty ||| 1 0.0535436 8.48644e-07 1.62426e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with fuel ||| 0.166667 0.0535436 8.48644e-07 2.18021e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| with fully ||| 0.25 0.0535436 8.48644e-07 1.32212e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| with future developments ||| 0.333333 0.0535436 8.48644e-07 9.25885e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| with future ||| 0.0384615 0.0535436 8.48644e-07 3.0966e-06 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| with good ||| 0.00816326 0.0535436 1.69729e-06 6.04631e-06 2.718 ||| 0-0 ||| 245 1.17835e+06 +en ||| with great ||| 0.000775194 0.0535436 8.48644e-07 4.58195e-06 2.718 ||| 0-0 ||| 1290 1.17835e+06 +en ||| with greater emphasis ||| 0.2 0.0535436 8.48644e-07 7.84629e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| with greater ||| 0.00540541 0.0535436 1.69729e-06 1.53548e-06 2.718 ||| 0-0 ||| 370 1.17835e+06 +en ||| with have to ||| 0.5 0.0535436 8.48644e-07 1.23902e-05 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with have ||| 0.333333 0.0535436 8.48644e-07 0.000139438 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| with having ||| 0.0277778 0.0535436 8.48644e-07 4.46419e-06 2.718 ||| 0-0 ||| 36 1.17835e+06 +en ||| with her ||| 0.00200401 0.0535436 8.48644e-07 3.17239e-06 2.718 ||| 0-0 ||| 499 1.17835e+06 +en ||| with here in ||| 0.142857 0.605812 8.48644e-07 5.98781e-06 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| with here ||| 0.025 0.0535436 8.48644e-07 2.36419e-05 2.718 ||| 0-0 ||| 40 1.17835e+06 +en ||| with him on ||| 0.0681818 0.22993 2.54593e-06 1.70256e-07 2.718 ||| 0-2 ||| 44 1.17835e+06 +en ||| with him ||| 0.00648508 0.0535436 4.24322e-06 3.73784e-06 2.718 ||| 0-0 ||| 771 1.17835e+06 +en ||| with horror ||| 0.0344828 0.0535436 8.48644e-07 6.29581e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| with ideas ||| 0.0322581 0.0535436 8.48644e-07 4.11559e-07 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| with imposing ||| 0.0666667 0.0535436 8.48644e-07 1.84211e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| with in a ||| 0.0416667 0.605812 8.48644e-07 0.000130888 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| with in any other way ||| 0.5 0.605812 8.48644e-07 1.24697e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| with in any other ||| 0.5 0.605812 8.48644e-07 5.78481e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| with in any ||| 0.2 0.605812 8.48644e-07 4.46531e-06 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| with in detail ||| 0.25 0.605812 8.48644e-07 1.50891e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| with in other ||| 0.25 0.605812 8.48644e-07 3.82543e-06 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| with in that ||| 0.2 0.605812 8.48644e-07 4.96718e-05 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| with in the ||| 0.0136986 0.0535436 8.48644e-07 1.53205e-05 2.718 ||| 0-0 ||| 73 1.17835e+06 +en ||| with in three different ways in Agenda ||| 0.5 0.329678 8.48644e-07 7.27771e-22 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| with in three different ways in ||| 0.5 0.329678 8.48644e-07 1.54845e-16 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| with in three different ways ||| 0.5 0.329678 8.48644e-07 7.23422e-15 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| with in three different ||| 0.5 0.329678 8.48644e-07 7.50438e-11 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| with in three ||| 0.5 0.329678 8.48644e-07 3.40798e-07 2.718 ||| 0-0 0-1 ||| 2 1.17835e+06 +en ||| with in ||| 0.465909 0.605812 0.000104383 0.00295286 2.718 ||| 0-1 ||| 264 1.17835e+06 +en ||| with increased ||| 0.0126582 0.0535436 8.48644e-07 5.79447e-07 2.718 ||| 0-0 ||| 79 1.17835e+06 +en ||| with intent ||| 0.166667 0.0535436 8.48644e-07 1.38741e-07 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| with internal ||| 0.2 0.0535436 8.48644e-07 5.40973e-07 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| with international ||| 0.0222222 0.0535436 8.48644e-07 9.02399e-07 2.718 ||| 0-0 ||| 45 1.17835e+06 +en ||| with is ||| 0.0377358 0.0535436 1.69729e-06 0.000365403 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| with issues of ||| 0.1 0.0535436 8.48644e-07 1.59407e-07 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| with issues ||| 0.025974 0.0535436 1.69729e-06 2.93221e-06 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| with it about 1000 jobs in the ||| 1 0.605812 8.48644e-07 1.65323e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| with it about 1000 jobs in ||| 1 0.605812 8.48644e-07 2.69291e-18 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| with it as ||| 0.0666667 0.0602558 8.48644e-07 3.72948e-06 2.718 ||| 0-0 0-2 ||| 15 1.17835e+06 +en ||| with it being particularly necessary ||| 1 0.0535436 8.48644e-07 2.70988e-14 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with it being particularly ||| 1 0.0535436 8.48644e-07 1.0532e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with it being ||| 0.0666667 0.0535436 8.48644e-07 5.90027e-07 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| with it in ||| 0.16 0.605812 3.39458e-06 5.25113e-05 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| with it with ||| 0.0666667 0.0535436 8.48644e-07 1.32579e-06 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| with it ||| 0.0147887 0.0535436 1.78215e-05 0.000207333 2.718 ||| 0-0 ||| 1420 1.17835e+06 +en ||| with its desire ||| 0.2 0.0535436 8.48644e-07 7.77368e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| with its rich ||| 0.2 0.0535436 8.48644e-07 2.09291e-10 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| with its terrible ||| 1 0.0535436 8.48644e-07 2.45834e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with its ||| 0.00276413 0.0535436 7.6378e-06 1.66104e-05 2.718 ||| 0-0 ||| 3256 1.17835e+06 +en ||| with itself ||| 0.025641 0.0535436 8.48644e-07 7.9129e-06 2.718 ||| 0-0 ||| 39 1.17835e+06 +en ||| with lack ||| 0.1 0.0535436 8.48644e-07 1.41772e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| with law ||| 0.0833333 0.0535436 8.48644e-07 2.05546e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| with levels in ||| 0.5 0.605812 8.48644e-07 3.90959e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| with liberalisation to be ||| 1 0.0535436 8.48644e-07 1.14528e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with liberalisation to ||| 1 0.0535436 8.48644e-07 6.31953e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with liberalisation ||| 0.0434783 0.0535436 8.48644e-07 7.11193e-08 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| with libraries in other ||| 1 0.605812 8.48644e-07 5.3556e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| with libraries in ||| 1 0.605812 8.48644e-07 4.134e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| with lobbying ||| 0.5 0.0535436 8.48644e-07 2.56496e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with low population density , harsh ||| 1 0.0535436 8.48644e-07 2.30257e-23 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with low population density , ||| 1 0.0535436 8.48644e-07 3.38613e-18 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with low population density ||| 0.2 0.0535436 8.48644e-07 2.83941e-17 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| with low population ||| 1 0.0535436 8.48644e-07 2.58128e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with low ||| 0.00813008 0.0535436 8.48644e-07 4.1972e-07 2.718 ||| 0-0 ||| 123 1.17835e+06 +en ||| with many of ||| 0.00641026 0.0116562 8.48644e-07 2.99364e-08 2.718 ||| 0-2 ||| 156 1.17835e+06 +en ||| with may be passed on to ||| 1 0.127333 8.48644e-07 1.45115e-14 2.718 ||| 0-4 0-5 ||| 1 1.17835e+06 +en ||| with me in ||| 0.0384615 0.605812 1.69729e-06 1.77792e-06 2.718 ||| 0-2 ||| 52 1.17835e+06 +en ||| with me on ||| 0.031746 0.22993 1.69729e-06 3.19747e-07 2.718 ||| 0-2 ||| 63 1.17835e+06 +en ||| with me ||| 0.00760456 0.0535436 5.09187e-06 7.01982e-06 2.718 ||| 0-0 ||| 789 1.17835e+06 +en ||| with more but with ||| 0.5 0.0535436 8.48644e-07 1.16353e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with more but ||| 0.5 0.0535436 8.48644e-07 1.81958e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with more ||| 0.00441176 0.0535436 2.54593e-06 2.66254e-05 2.718 ||| 0-0 ||| 680 1.17835e+06 +en ||| with my fellow ||| 0.0131579 0.0535436 8.48644e-07 4.94108e-10 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| with my group ||| 0.0196078 0.0535436 8.48644e-07 9.65722e-10 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| with my ||| 0.00338696 0.0535436 3.39458e-06 7.49784e-06 2.718 ||| 0-0 ||| 1181 1.17835e+06 +en ||| with no security , ||| 1 0.0535436 8.48644e-07 8.84215e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with no security ||| 1 0.0535436 8.48644e-07 7.41451e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with no such system ||| 1 0.0535436 8.48644e-07 5.23659e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with no such ||| 0.5 0.0535436 8.48644e-07 1.87759e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with no ||| 0.00226586 0.0535436 2.54593e-06 9.07529e-06 2.718 ||| 0-0 ||| 1324 1.17835e+06 +en ||| with none of ||| 0.166667 0.0535436 8.48644e-07 1.25497e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| with none ||| 0.142857 0.0535436 8.48644e-07 2.30846e-07 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| with nothing but ||| 0.125 0.0535436 8.48644e-07 1.48279e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| with nothing ||| 0.0178571 0.0535436 8.48644e-07 2.16972e-06 2.718 ||| 0-0 ||| 56 1.17835e+06 +en ||| with on ||| 0.216216 0.22993 6.78915e-06 0.000531053 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| with one ' s ||| 1 0.0535436 1.69729e-06 3.17525e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with one ' ||| 1 0.0535436 1.69729e-06 1.66917e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with one another in ||| 0.2 0.605812 1.69729e-06 2.96734e-09 2.718 ||| 0-3 ||| 10 1.17835e+06 +en ||| with one another ||| 0.00606061 0.0535436 8.48644e-07 1.17161e-08 2.718 ||| 0-0 ||| 165 1.17835e+06 +en ||| with one or two ||| 0.0322581 0.0535436 8.48644e-07 1.31339e-11 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| with one or ||| 0.0227273 0.0535436 8.48644e-07 5.55579e-08 2.718 ||| 0-0 ||| 44 1.17835e+06 +en ||| with one ||| 0.00584036 0.0535436 7.6378e-06 4.85943e-05 2.718 ||| 0-0 ||| 1541 1.17835e+06 +en ||| with only ||| 0.00452489 0.0535436 8.48644e-07 1.29775e-05 2.718 ||| 0-0 ||| 221 1.17835e+06 +en ||| with open ||| 0.03125 0.0535436 8.48644e-07 1.87941e-06 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| with operations in ||| 0.333333 0.605812 8.48644e-07 7.44121e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| with or without ||| 0.00813008 0.0535436 8.48644e-07 2.94585e-09 2.718 ||| 0-0 ||| 123 1.17835e+06 +en ||| with or ||| 0.00606061 0.0535436 8.48644e-07 1.33296e-05 2.718 ||| 0-0 ||| 165 1.17835e+06 +en ||| with our ||| 0.000612745 0.0535436 1.69729e-06 1.60823e-05 2.718 ||| 0-0 ||| 3264 1.17835e+06 +en ||| with ourselves ||| 0.0117647 0.0535436 8.48644e-07 3.7087e-06 2.718 ||| 0-0 ||| 85 1.17835e+06 +en ||| with over ||| 0.0235294 0.10574 3.39458e-06 4.67195e-05 2.718 ||| 0-0 0-1 ||| 170 1.17835e+06 +en ||| with particular ||| 0.00265252 0.0535436 8.48644e-07 7.17489e-06 2.718 ||| 0-0 ||| 377 1.17835e+06 +en ||| with past ||| 0.333333 0.0535436 8.48644e-07 1.49351e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| with precisely ||| 0.111111 0.0535436 8.48644e-07 1.14957e-06 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| with premises on ||| 0.5 0.22993 8.48644e-07 2.86769e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| with preventive ||| 0.2 0.0535436 8.48644e-07 2.91473e-08 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| with problems ||| 0.00900901 0.0535436 8.48644e-07 1.56462e-06 2.718 ||| 0-0 ||| 111 1.17835e+06 +en ||| with profound ||| 0.0357143 0.0535436 8.48644e-07 5.47968e-08 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| with reduced ||| 0.0454545 0.0535436 8.48644e-07 5.45637e-07 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| with redundant skills ||| 0.2 0.0535436 8.48644e-07 1.09605e-12 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| with redundant ||| 0.25 0.0535436 8.48644e-07 9.21053e-08 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| with reference in ||| 0.5 0.605812 8.48644e-07 2.51879e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| with reference to them ||| 0.333333 0.0535436 8.48644e-07 2.37043e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| with reference to ||| 0.00510204 0.0535436 1.69729e-06 8.83699e-08 2.718 ||| 0-0 ||| 392 1.17835e+06 +en ||| with reference ||| 0.0113636 0.0535436 4.24322e-06 9.94504e-07 2.718 ||| 0-0 ||| 440 1.17835e+06 +en ||| with regard , ||| 0.05 0.0535436 8.48644e-07 9.46709e-07 2.718 ||| 0-0 ||| 20 1.17835e+06 +en ||| with regard both to ||| 0.0555556 0.0535436 8.48644e-07 1.1685e-09 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| with regard both ||| 0.08 0.0535436 1.69729e-06 1.31502e-08 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| with regard to Member States , ||| 0.5 0.0535436 8.48644e-07 2.06859e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with regard to Member States ||| 0.166667 0.0535436 8.48644e-07 1.7346e-13 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| with regard to Member ||| 1 0.0535436 8.48644e-07 3.63495e-10 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with regard to a ||| 0.00757576 0.0535436 8.48644e-07 3.12676e-08 2.718 ||| 0-0 ||| 132 1.17835e+06 +en ||| with regard to both ||| 0.0169492 0.0535436 8.48644e-07 1.1685e-09 2.718 ||| 0-0 ||| 59 1.17835e+06 +en ||| with regard to giving proper ||| 1 0.0535436 8.48644e-07 9.8387e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with regard to giving ||| 0.25 0.0535436 8.48644e-07 1.11172e-10 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| with regard to guarantees ||| 0.5 0.0535436 8.48644e-07 1.42492e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with regard to our own willingness ||| 0.5 0.0535436 8.48644e-07 2.14446e-17 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with regard to our own ||| 0.125 0.0535436 8.48644e-07 1.64959e-12 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| with regard to our ||| 0.0119048 0.0535436 8.48644e-07 9.73035e-10 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| with regard to the development ||| 0.0454545 0.0535436 8.48644e-07 7.12385e-12 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| with regard to the ||| 0.000650936 0.0535436 3.39458e-06 4.33061e-08 2.718 ||| 0-0 ||| 6145 1.17835e+06 +en ||| with regard to ||| 0.0167566 0.0535436 0.000197734 7.05405e-07 2.718 ||| 0-0 ||| 13905 1.17835e+06 +en ||| with regard ||| 0.0175663 0.0535436 0.000209615 7.93855e-06 2.718 ||| 0-0 ||| 14061 1.17835e+06 +en ||| with renewed vigour ||| 0.0555556 0.0535436 8.48644e-07 7.12359e-13 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| with renewed ||| 0.0833333 0.0535436 1.69729e-06 1.51566e-07 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| with resistance . in turn , ||| 1 0.605812 8.48644e-07 1.12396e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| with resistance . in turn ||| 1 0.605812 8.48644e-07 9.42487e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| with resistance . in ||| 1 0.605812 8.48644e-07 4.20378e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| with respect to ||| 0.00820633 0.0535436 5.94051e-06 4.48169e-07 2.718 ||| 0-0 ||| 853 1.17835e+06 +en ||| with respect ||| 0.00755034 0.0535436 7.6378e-06 5.04364e-06 2.718 ||| 0-0 ||| 1192 1.17835e+06 +en ||| with satisfaction that we in ||| 1 0.605812 8.48644e-07 6.71028e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| with scant ||| 0.0909091 0.0535436 8.48644e-07 4.66356e-09 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| with shorter hours ||| 1 0.0535436 8.48644e-07 6.29581e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with shorter ||| 0.5 0.0535436 8.48644e-07 2.91473e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with some of ||| 0.00408163 0.0535436 8.48644e-07 6.90425e-07 2.718 ||| 0-0 ||| 245 1.17835e+06 +en ||| with some vigour , to ||| 0.5 0.0535436 8.48644e-07 6.32522e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with some vigour , ||| 0.333333 0.0535436 8.48644e-07 7.11834e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| with some vigour ||| 0.2 0.0535436 8.48644e-07 5.96902e-11 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| with some ||| 0.00638978 0.0535436 6.78915e-06 1.27e-05 2.718 ||| 0-0 ||| 1252 1.17835e+06 +en ||| with someone in ||| 0.5 0.605812 8.48644e-07 1.61521e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| with someone using a ||| 0.5 0.0535436 8.48644e-07 2.19646e-12 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with someone using ||| 0.5 0.0535436 8.48644e-07 4.95525e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with someone ||| 0.0714286 0.0535436 1.69729e-06 6.37742e-07 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| with something more ||| 0.142857 0.0535436 8.48644e-07 1.47372e-08 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| with something ||| 0.00724638 0.0535436 8.48644e-07 6.4532e-06 2.718 ||| 0-0 ||| 138 1.17835e+06 +en ||| with sorrow in ||| 0.333333 0.605812 8.48644e-07 8.56329e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| with spent ||| 0.333333 0.0535436 8.48644e-07 7.47335e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| with standards ||| 0.0689655 0.0535436 1.69729e-06 8.52266e-07 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| with still ||| 0.5 0.0535436 8.48644e-07 8.78148e-06 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with such a ||| 0.00699301 0.0535436 8.48644e-07 1.06919e-06 2.718 ||| 0-0 ||| 143 1.17835e+06 +en ||| with such ||| 0.0154905 0.0535436 7.6378e-06 2.41211e-05 2.718 ||| 0-0 ||| 581 1.17835e+06 +en ||| with that country in ||| 0.166667 0.605812 8.48644e-07 1.78769e-08 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| with that in ||| 0.0078125 0.605812 8.48644e-07 4.96718e-05 2.718 ||| 0-2 ||| 128 1.17835e+06 +en ||| with that ||| 0.00217984 0.0535436 3.39458e-06 0.000196121 2.718 ||| 0-0 ||| 1835 1.17835e+06 +en ||| with the EU ||| 0.00157233 0.0535436 8.48644e-07 3.54158e-07 2.718 ||| 0-0 ||| 636 1.17835e+06 +en ||| with the Environment Committee ||| 0.2 0.0535436 8.48644e-07 2.16266e-12 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| with the Environment ||| 1 0.0535436 8.48644e-07 1.41721e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with the European Union ||| 0.000978474 0.0535436 8.48644e-07 1.3341e-09 2.718 ||| 0-0 ||| 1022 1.17835e+06 +en ||| with the European ||| 0.0070922 0.0535436 8.48644e-07 2.39343e-06 2.718 ||| 0-0 ||| 141 1.17835e+06 +en ||| with the German Government . ||| 0.111111 0.0535436 8.48644e-07 2.51844e-15 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| with the German Government ||| 0.0588235 0.0535436 8.48644e-07 8.31442e-13 2.718 ||| 0-0 ||| 17 1.17835e+06 +en ||| with the German ||| 0.111111 0.0535436 8.48644e-07 1.72498e-08 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| with the MEDA ||| 1 0.0535436 8.48644e-07 1.57467e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with the Prime Minister of Belarus when ||| 1 0.142731 8.48644e-07 8.5385e-22 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| with the US ||| 0.00328947 0.0535436 8.48644e-07 3.06346e-08 2.718 ||| 0-0 ||| 304 1.17835e+06 +en ||| with the aim ||| 0.000860585 0.0535436 8.48644e-07 9.84171e-08 2.718 ||| 0-0 ||| 1162 1.17835e+06 +en ||| with the benefit of ||| 0.0357143 0.0535436 8.48644e-07 5.12466e-09 2.718 ||| 0-0 ||| 28 1.17835e+06 +en ||| with the benefit ||| 0.0322581 0.0535436 8.48644e-07 9.42657e-08 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| with the choice ||| 0.047619 0.0535436 8.48644e-07 3.19229e-08 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| with the comment that was expressed ||| 1 0.0535436 8.48644e-07 1.67563e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with the comment that was ||| 1 0.0535436 8.48644e-07 1.7239e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with the comment that ||| 0.125 0.0535436 8.48644e-07 5.50239e-10 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| with the comment ||| 0.0434783 0.0535436 8.48644e-07 3.27103e-08 2.718 ||| 0-0 ||| 23 1.17835e+06 +en ||| with the corresponding ||| 0.04 0.0535436 8.48644e-07 1.54604e-08 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| with the effects of ||| 0.0344828 0.0535436 8.48644e-07 2.1129e-09 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| with the effects ||| 0.0263158 0.0535436 8.48644e-07 3.88658e-08 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| with the fact ||| 0.00606061 0.0535436 2.54593e-06 2.09668e-06 2.718 ||| 0-0 ||| 495 1.17835e+06 +en ||| with the following words in ||| 1 0.605812 8.48644e-07 5.23591e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| with the goal ||| 0.0175439 0.0535436 8.48644e-07 2.3978e-08 2.718 ||| 0-0 ||| 57 1.17835e+06 +en ||| with the help of gene ||| 0.25 0.0535436 8.48644e-07 1.33568e-14 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| with the help of ||| 0.00242131 0.0535436 8.48644e-07 7.42045e-09 2.718 ||| 0-0 ||| 413 1.17835e+06 +en ||| with the help ||| 0.00194553 0.0535436 8.48644e-07 1.36496e-07 2.718 ||| 0-0 ||| 514 1.17835e+06 +en ||| with the idea ||| 0.00647249 0.0535436 1.69729e-06 1.60474e-07 2.718 ||| 0-0 ||| 309 1.17835e+06 +en ||| with the message ||| 0.0416667 0.0535436 8.48644e-07 3.44997e-08 2.718 ||| 0-0 ||| 24 1.17835e+06 +en ||| with the need and with ||| 1 0.0535436 8.48644e-07 5.25661e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with the need and ||| 0.5 0.0535436 8.48644e-07 8.22051e-09 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with the need ||| 0.00326797 0.0535436 8.48644e-07 6.56281e-07 2.718 ||| 0-0 ||| 306 1.17835e+06 +en ||| with the opportunity to ||| 0.0263158 0.0535436 8.48644e-07 1.14419e-08 2.718 ||| 0-0 ||| 38 1.17835e+06 +en ||| with the opportunity ||| 0.0188679 0.0535436 8.48644e-07 1.28765e-07 2.718 ||| 0-0 ||| 53 1.17835e+06 +en ||| with the participation of ||| 0.00729927 0.0116562 8.48644e-07 1.29019e-10 2.718 ||| 0-3 ||| 137 1.17835e+06 +en ||| with the point ||| 0.0392157 0.0535436 1.69729e-06 6.26148e-07 2.718 ||| 0-0 ||| 51 1.17835e+06 +en ||| with the principal objective ||| 0.25 0.0535436 8.48644e-07 2.7773e-13 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| with the principal ||| 0.125 0.0535436 8.48644e-07 4.15141e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| with the question ||| 0.00641026 0.0535436 8.48644e-07 5.92149e-07 2.718 ||| 0-0 ||| 156 1.17835e+06 +en ||| with the requirement ||| 0.0322581 0.0535436 8.48644e-07 3.01335e-08 2.718 ||| 0-0 ||| 31 1.17835e+06 +en ||| with the result ||| 0.002 0.0535436 8.48644e-07 3.76848e-07 2.718 ||| 0-0 ||| 500 1.17835e+06 +en ||| with the same ||| 0.00175439 0.0535436 8.48644e-07 5.75973e-07 2.718 ||| 0-0 ||| 570 1.17835e+06 +en ||| with the statement ||| 0.0103093 0.0535436 8.48644e-07 5.33242e-08 2.718 ||| 0-0 ||| 97 1.17835e+06 +en ||| with the threat ||| 0.0181818 0.0535436 8.48644e-07 2.80578e-08 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| with the time ||| 0.0714286 0.0535436 8.48644e-07 1.17506e-06 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| with the times ||| 0.0344828 0.0535436 8.48644e-07 7.26497e-08 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| with the title ||| 0.0454545 0.0535436 8.48644e-07 4.15141e-09 2.718 ||| 0-0 ||| 22 1.17835e+06 +en ||| with the view ||| 0.0078125 0.0535436 8.48644e-07 6.46547e-07 2.718 ||| 0-0 ||| 128 1.17835e+06 +en ||| with the ||| 0.00155122 0.0535436 0.000107778 0.000715761 2.718 ||| 0-0 ||| 81871 1.17835e+06 +en ||| with their colleagues in ||| 0.2 0.605812 8.48644e-07 7.63253e-11 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| with their families in ||| 0.25 0.605812 8.48644e-07 2.84081e-11 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| with their ||| 0.000484261 0.0535436 8.48644e-07 1.35138e-05 2.718 ||| 0-0 ||| 2065 1.17835e+06 +en ||| with them in ||| 0.1 0.605812 5.94051e-06 7.92075e-06 2.718 ||| 0-2 ||| 70 1.17835e+06 +en ||| with them on ||| 0.0625 0.22993 1.69729e-06 1.4245e-06 2.718 ||| 0-2 ||| 32 1.17835e+06 +en ||| with them ||| 0.00480769 0.0535436 5.94051e-06 3.12738e-05 2.718 ||| 0-0 ||| 1456 1.17835e+06 +en ||| with these in the form of ||| 1 0.605812 8.48644e-07 4.65251e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| with these in the form ||| 1 0.605812 8.48644e-07 8.55807e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| with these in the ||| 1 0.605812 8.48644e-07 1.88007e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| with these in ||| 0.5 0.605812 8.48644e-07 3.06241e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| with these problems , ||| 0.142857 0.0535436 8.48644e-07 1.93511e-10 2.718 ||| 0-0 ||| 7 1.17835e+06 +en ||| with these problems ||| 0.04 0.0535436 8.48644e-07 1.62267e-09 2.718 ||| 0-0 ||| 25 1.17835e+06 +en ||| with these ||| 0.00243457 0.0535436 3.39458e-06 1.20914e-05 2.718 ||| 0-0 ||| 1643 1.17835e+06 +en ||| with third parties , especially in ||| 1 0.605812 8.48644e-07 9.7135e-17 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| with this in ||| 0.00746269 0.605812 2.54593e-06 1.90796e-05 2.718 ||| 0-2 ||| 402 1.17835e+06 +en ||| with this matter ||| 0.0119048 0.0535436 8.48644e-07 7.81578e-08 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| with this situation ||| 0.0212766 0.0535436 8.48644e-07 3.87964e-08 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| with this state of ||| 0.125 0.0535436 8.48644e-07 1.0345e-09 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| with this state ||| 0.125 0.0535436 8.48644e-07 1.90291e-08 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| with this ||| 0.00120828 0.0535436 6.78915e-06 7.53328e-05 2.718 ||| 0-0 ||| 6621 1.17835e+06 +en ||| with those of ||| 0.0042735 0.0116562 8.48644e-07 6.31428e-08 2.718 ||| 0-2 ||| 234 1.17835e+06 +en ||| with those ||| 0.00128205 0.0535436 1.69729e-06 8.44221e-06 2.718 ||| 0-0 ||| 1560 1.17835e+06 +en ||| with thought ||| 1 0.0535436 8.48644e-07 9.68855e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with through the media close ||| 1 0.0535436 8.48644e-07 1.40716e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with through the media ||| 1 0.0535436 8.48644e-07 9.48858e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| with through the ||| 0.111111 0.0535436 8.48644e-07 3.29465e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| with through ||| 0.114286 0.0535436 3.39458e-06 5.36659e-06 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| with to a ||| 0.333333 0.0535436 8.48644e-07 4.5921e-05 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| with to ||| 0.142857 0.0535436 1.69729e-06 0.00103599 2.718 ||| 0-0 ||| 14 1.17835e+06 +en ||| with transport operations , with regard to ||| 1 0.0535436 8.48644e-07 1.39488e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| with transport operations , with regard ||| 1 0.0535436 8.48644e-07 1.56978e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| with transport operations , with ||| 1 0.0535436 8.48644e-07 2.30545e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| with under ||| 0.173913 0.129555 3.39458e-06 6.59264e-05 2.718 ||| 0-0 0-1 ||| 23 1.17835e+06 +en ||| with up to ||| 0.0769231 0.0535436 1.69729e-06 3.53324e-06 2.718 ||| 0-0 ||| 26 1.17835e+06 +en ||| with up ||| 0.166667 0.0535436 2.54593e-06 3.97627e-05 2.718 ||| 0-0 ||| 18 1.17835e+06 +en ||| with us , with ||| 0.125 0.0535436 8.48644e-07 2.5625e-08 2.718 ||| 0-3 ||| 8 1.17835e+06 +en ||| with us , ||| 0.00425532 0.0535436 8.48644e-07 4.00735e-06 2.718 ||| 0-0 ||| 235 1.17835e+06 +en ||| with us in ||| 0.0359281 0.605812 5.09187e-06 8.51073e-06 2.718 ||| 0-2 ||| 167 1.17835e+06 +en ||| with us on ||| 0.012987 0.22993 8.48644e-07 1.5306e-06 2.718 ||| 0-2 ||| 77 1.17835e+06 +en ||| with us over ||| 0.0833333 0.157937 8.48644e-07 7.38536e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| with us to ||| 0.0163934 0.0247351 8.48644e-07 5.18042e-07 2.718 ||| 0-2 ||| 61 1.17835e+06 +en ||| with us ||| 0.00493692 0.0535436 7.6378e-06 3.36033e-05 2.718 ||| 0-0 ||| 1823 1.17835e+06 +en ||| with use of ||| 0.25 0.0535436 8.48644e-07 3.08165e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| with use ||| 0.25 0.0535436 8.48644e-07 5.66856e-06 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| with what happened in ||| 0.166667 0.605812 8.48644e-07 2.56461e-10 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| with what objectives ? or does ||| 0.5 0.0535436 8.48644e-07 1.0492e-19 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with what objectives ? or ||| 0.5 0.0535436 8.48644e-07 1.49587e-16 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with what objectives ? ||| 0.5 0.0535436 8.48644e-07 1.30838e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with what objectives ||| 0.5 0.0535436 8.48644e-07 7.65583e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with what you said about ||| 0.125 0.04685 8.48644e-07 6.22621e-14 2.718 ||| 0-0 0-4 ||| 8 1.17835e+06 +en ||| with what ||| 0.00124456 0.0535436 1.69729e-06 1.63586e-05 2.718 ||| 0-0 ||| 1607 1.17835e+06 +en ||| with when ||| 0.1 0.142731 8.48644e-07 3.80684e-05 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| with which he has ||| 0.0238095 0.0535436 8.48644e-07 4.44899e-10 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| with which he ||| 0.030303 0.0535436 8.48644e-07 8.64302e-08 2.718 ||| 0-0 ||| 33 1.17835e+06 +en ||| with which the ||| 0.00285714 0.0535436 8.48644e-07 6.0801e-06 2.718 ||| 0-0 ||| 350 1.17835e+06 +en ||| with which to ||| 0.0130719 0.0535436 1.69729e-06 8.80031e-06 2.718 ||| 0-0 ||| 153 1.17835e+06 +en ||| with which ||| 0.00553566 0.0535436 1.4427e-05 9.90377e-05 2.718 ||| 0-0 ||| 3071 1.17835e+06 +en ||| with whom I ||| 0.0166667 0.0535436 8.48644e-07 5.49245e-09 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| with whom we have ||| 0.015625 0.0535436 8.48644e-07 1.05424e-10 2.718 ||| 0-0 ||| 64 1.17835e+06 +en ||| with whom we ||| 0.00862069 0.0535436 8.48644e-07 8.81487e-09 2.718 ||| 0-0 ||| 116 1.17835e+06 +en ||| with whom ||| 0.00392927 0.0535436 1.69729e-06 7.76483e-07 2.718 ||| 0-0 ||| 509 1.17835e+06 +en ||| with within ||| 0.2 0.369196 2.54593e-06 7.08939e-05 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| with you , ||| 0.00869565 0.0535436 2.54593e-06 4.48912e-06 2.718 ||| 0-0 ||| 345 1.17835e+06 +en ||| with you at some ||| 0.5 0.0535436 8.48644e-07 1.71703e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| with you at ||| 0.0909091 0.0535436 8.48644e-07 1.57627e-07 2.718 ||| 0-0 ||| 11 1.17835e+06 +en ||| with you for the ||| 0.2 0.0286209 8.48644e-07 1.45827e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| with you for ||| 0.047619 0.0286209 8.48644e-07 2.37535e-07 2.718 ||| 0-2 ||| 21 1.17835e+06 +en ||| with you in ||| 0.017094 0.605812 1.69729e-06 9.5339e-06 2.718 ||| 0-2 ||| 117 1.17835e+06 +en ||| with you on ||| 0.0149254 0.22993 1.69729e-06 1.71461e-06 2.718 ||| 0-2 ||| 134 1.17835e+06 +en ||| with you ||| 0.0055788 0.0535436 1.01837e-05 3.76431e-05 2.718 ||| 0-0 ||| 2151 1.17835e+06 +en ||| with your ||| 0.000949668 0.0268022 8.48644e-07 1.63225e-08 2.718 ||| 0-0 0-1 ||| 1053 1.17835e+06 +en ||| with ||| 0.054735 0.0535436 0.012857 0.0116589 2.718 ||| 0-0 ||| 276788 1.17835e+06 +en ||| withdrawn in ||| 0.0833333 0.605812 8.48644e-07 3.97132e-06 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| within , which is ||| 1 0.369196 8.48644e-07 3.51994e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within , which ||| 0.2 0.369196 8.48644e-07 1.12311e-05 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| within , ||| 0.119048 0.369196 4.24322e-06 0.00132214 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| within ? ? ? ||| 0.5 0.369196 8.48644e-07 5.53386e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| within ? ? ||| 0.5 0.369196 8.48644e-07 3.23807e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| within ? ||| 0.333333 0.369196 8.48644e-07 1.89472e-06 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| within Europe , ||| 0.00833333 0.369196 8.48644e-07 6.69003e-07 2.718 ||| 0-0 ||| 120 1.17835e+06 +en ||| within Europe in ||| 0.0833333 0.605812 8.48644e-07 4.88586e-08 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| within Europe ||| 0.00162338 0.369196 8.48644e-07 5.60987e-06 2.718 ||| 0-0 ||| 616 1.17835e+06 +en ||| within European ||| 0.157895 0.369196 2.54593e-06 3.70728e-05 2.718 ||| 0-0 ||| 19 1.17835e+06 +en ||| within MEDA ||| 0.5 0.369196 8.48644e-07 2.43907e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| within NATO ||| 0.0181818 0.369196 8.48644e-07 7.98242e-08 2.718 ||| 0-0 ||| 55 1.17835e+06 +en ||| within Parliament ||| 0.00442478 0.369196 8.48644e-07 6.36377e-06 2.718 ||| 0-0 ||| 226 1.17835e+06 +en ||| within Parliament ’ ||| 1 0.369196 8.48644e-07 1.10863e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within a framework of ||| 0.0131579 0.369196 8.48644e-07 3.18187e-09 2.718 ||| 0-0 ||| 76 1.17835e+06 +en ||| within a framework ||| 0.00854701 0.369196 8.48644e-07 5.85289e-08 2.718 ||| 0-0 ||| 117 1.17835e+06 +en ||| within a holy order . ||| 0.5 0.369196 8.48644e-07 1.10991e-15 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| within a holy order ||| 0.5 0.369196 8.48644e-07 3.66428e-13 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| within a holy ||| 0.5 0.369196 8.48644e-07 6.87998e-10 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| within a mere ||| 0.5 0.369196 8.48644e-07 1.04182e-08 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| within a specified time ||| 1 0.369196 8.48644e-07 9.03589e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within a specified ||| 1 0.369196 8.48644e-07 5.50398e-09 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within a stretch of ||| 1 0.0116562 8.48644e-07 1.18811e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| within a zone ||| 0.25 0.369196 8.48644e-07 7.07655e-09 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| within a ||| 0.0306972 0.369196 5.007e-05 0.000491427 2.718 ||| 0-0 ||| 1922 1.17835e+06 +en ||| within all European ||| 0.5 0.369196 8.48644e-07 1.75184e-07 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| within all ||| 0.0149254 0.369196 8.48644e-07 5.23891e-05 2.718 ||| 0-0 ||| 67 1.17835e+06 +en ||| within an ||| 0.00645161 0.369196 8.48644e-07 4.92771e-05 2.718 ||| 0-0 ||| 155 1.17835e+06 +en ||| within and ||| 0.00384615 0.369196 8.48644e-07 0.000138871 2.718 ||| 0-0 ||| 260 1.17835e+06 +en ||| within area ||| 1 0.369196 8.48644e-07 4.60431e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within both ||| 0.047619 0.369196 8.48644e-07 1.83651e-05 2.718 ||| 0-0 ||| 21 1.17835e+06 +en ||| within each Member ||| 0.166667 0.369196 8.48644e-07 1.60363e-09 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| within each ||| 0.00769231 0.369196 8.48644e-07 3.11204e-06 2.718 ||| 0-0 ||| 130 1.17835e+06 +en ||| within home ||| 1 0.369196 8.48644e-07 1.1253e-06 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within in a ||| 1 0.605812 8.48644e-07 4.28003e-06 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| within in ||| 0.5 0.605812 8.48644e-07 9.65584e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| within it ||| 0.0216216 0.369196 3.39458e-06 0.000197157 2.718 ||| 0-0 ||| 185 1.17835e+06 +en ||| within its ||| 0.00229358 0.369196 8.48644e-07 1.57952e-05 2.718 ||| 0-0 ||| 436 1.17835e+06 +en ||| within just ||| 0.2 0.369196 8.48644e-07 1.39881e-05 2.718 ||| 0-0 ||| 5 1.17835e+06 +en ||| within one and ||| 0.333333 0.369196 8.48644e-07 5.78814e-07 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| within one ||| 0.00877193 0.369196 8.48644e-07 4.62094e-05 2.718 ||| 0-0 ||| 114 1.17835e+06 +en ||| within organisations commissioned by ||| 0.166667 0.369196 8.48644e-07 2.78692e-15 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| within organisations commissioned ||| 0.166667 0.369196 8.48644e-07 5.30831e-13 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| within organisations dedicated to ||| 1 0.369196 8.48644e-07 4.98641e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within organisations dedicated ||| 1 0.369196 8.48644e-07 5.61164e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within organisations ||| 0.25 0.369196 1.69729e-06 3.79165e-07 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| within our countries ||| 0.0769231 0.369196 8.48644e-07 5.80675e-09 2.718 ||| 0-0 ||| 13 1.17835e+06 +en ||| within our group ||| 0.03125 0.369196 8.48644e-07 1.96974e-09 2.718 ||| 0-0 ||| 32 1.17835e+06 +en ||| within our ||| 0.00589102 0.369196 3.39458e-06 1.5293e-05 2.718 ||| 0-0 ||| 679 1.17835e+06 +en ||| within ourselves ||| 0.1 0.369196 8.48644e-07 3.52668e-06 2.718 ||| 0-0 ||| 10 1.17835e+06 +en ||| within road traffic ||| 1 0.369196 8.48644e-07 2.80857e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within road ||| 1 0.369196 8.48644e-07 9.88934e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within safe borders ||| 0.5 0.369196 8.48644e-07 1.55178e-11 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| within safe ||| 1 0.369196 8.48644e-07 3.59209e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within such ||| 0.333333 0.369196 4.24322e-06 2.29373e-05 2.718 ||| 0-0 ||| 15 1.17835e+06 +en ||| within that ||| 0.00738007 0.369196 1.69729e-06 0.000186496 2.718 ||| 0-0 ||| 271 1.17835e+06 +en ||| within the Council itself ||| 0.125 0.369196 8.48644e-07 1.59741e-10 2.718 ||| 0-0 ||| 8 1.17835e+06 +en ||| within the Council ||| 0.00191205 0.369196 8.48644e-07 2.35363e-07 2.718 ||| 0-0 ||| 523 1.17835e+06 +en ||| within the EU ||| 0.000576369 0.369196 8.48644e-07 3.36777e-07 2.718 ||| 0-0 ||| 1735 1.17835e+06 +en ||| within the European Union in ||| 0.030303 0.605812 8.48644e-07 1.10489e-11 2.718 ||| 0-4 ||| 33 1.17835e+06 +en ||| within the European ||| 0.0110497 0.369196 1.69729e-06 2.27597e-06 2.718 ||| 0-0 ||| 181 1.17835e+06 +en ||| within the boundaries ||| 0.0571429 0.369196 1.69729e-06 5.377e-09 2.718 ||| 0-0 ||| 35 1.17835e+06 +en ||| within the context of ||| 0.00181159 0.369196 8.48644e-07 4.96566e-09 2.718 ||| 0-0 ||| 552 1.17835e+06 +en ||| within the context ||| 0.00313972 0.369196 1.69729e-06 9.13409e-08 2.718 ||| 0-0 ||| 637 1.17835e+06 +en ||| within the framework of ||| 0.00157916 0.369196 3.39458e-06 4.40693e-09 2.718 ||| 0-0 ||| 2533 1.17835e+06 +en ||| within the framework ||| 0.000622471 0.369196 1.69729e-06 8.10633e-08 2.718 ||| 0-0 ||| 3213 1.17835e+06 +en ||| within the limits of what is ||| 0.5 0.369196 8.48644e-07 4.3933e-14 2.718 ||| 0-0 ||| 2 1.17835e+06 +en ||| within the limits of what ||| 0.333333 0.369196 8.48644e-07 1.40177e-12 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| within the limits of ||| 0.0119048 0.369196 8.48644e-07 9.99051e-10 2.718 ||| 0-0 ||| 84 1.17835e+06 +en ||| within the limits ||| 0.00613497 0.369196 8.48644e-07 1.83771e-08 2.718 ||| 0-0 ||| 163 1.17835e+06 +en ||| within the next ||| 0.00568182 0.369196 8.48644e-07 7.03093e-08 2.718 ||| 0-0 ||| 176 1.17835e+06 +en ||| within the same airport according to ||| 1 0.369196 8.48644e-07 2.62735e-17 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within the same airport according ||| 1 0.369196 8.48644e-07 2.95679e-16 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within the same airport ||| 1 0.369196 8.48644e-07 3.341e-12 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within the same ||| 0.012987 0.369196 8.48644e-07 5.47705e-07 2.718 ||| 0-0 ||| 77 1.17835e+06 +en ||| within the scope of ||| 0.00628931 0.369196 2.54593e-06 3.68909e-09 2.718 ||| 0-0 ||| 477 1.17835e+06 +en ||| within the scope ||| 0.00559701 0.369196 2.54593e-06 6.78591e-08 2.718 ||| 0-0 ||| 536 1.17835e+06 +en ||| within the space of a ||| 0.166667 0.369196 1.69729e-06 6.79018e-11 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| within the space of ||| 0.130435 0.369196 5.09187e-06 1.53188e-09 2.718 ||| 0-0 ||| 46 1.17835e+06 +en ||| within the space ||| 0.148936 0.369196 5.94051e-06 2.81782e-08 2.718 ||| 0-0 ||| 47 1.17835e+06 +en ||| within the sphere ||| 0.0238095 0.369196 8.48644e-07 1.83771e-08 2.718 ||| 0-0 ||| 42 1.17835e+06 +en ||| within the ||| 0.00418857 0.369196 7.97726e-05 0.000680632 2.718 ||| 0-0 ||| 22442 1.17835e+06 +en ||| within their undertaking ||| 0.666667 0.369196 1.69729e-06 3.84233e-10 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| within their ||| 0.00824176 0.369196 2.54593e-06 1.28506e-05 2.718 ||| 0-0 ||| 364 1.17835e+06 +en ||| within them ||| 0.02 0.369196 1.69729e-06 2.9739e-05 2.718 ||| 0-0 ||| 100 1.17835e+06 +en ||| within those ||| 0.016129 0.369196 8.48644e-07 8.02788e-06 2.718 ||| 0-0 ||| 62 1.17835e+06 +en ||| within three years ||| 0.0204082 0.369196 8.48644e-07 1.19444e-10 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| within three ||| 0.00833333 0.369196 8.48644e-07 7.01788e-07 2.718 ||| 0-0 ||| 120 1.17835e+06 +en ||| within what is , when all is ||| 1 0.369196 8.48644e-07 4.30444e-15 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within what is , when all ||| 1 0.369196 8.48644e-07 1.37342e-13 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within what is , when ||| 1 0.369196 8.48644e-07 2.90646e-11 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within what is , ||| 1 0.369196 8.48644e-07 5.81408e-08 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| within what is ||| 0.25 0.369196 8.48644e-07 4.87534e-07 2.718 ||| 0-0 ||| 4 1.17835e+06 +en ||| within what ||| 0.0344828 0.369196 8.48644e-07 1.55557e-05 2.718 ||| 0-0 ||| 29 1.17835e+06 +en ||| within which ||| 0.00597015 0.369196 1.69729e-06 9.41771e-05 2.718 ||| 0-0 ||| 335 1.17835e+06 +en ||| within whose ||| 0.111111 0.369196 8.48644e-07 8.73632e-07 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| within ||| 0.373741 0.369196 0.0115594 0.0110867 2.718 ||| 0-0 ||| 36445 1.17835e+06 +en ||| without actually doing anything ||| 1 0.125341 8.48644e-07 1.70978e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| without actually doing ||| 1 0.125341 8.48644e-07 1.08973e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| without actually ||| 0.0666667 0.125341 8.48644e-07 2.96847e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| without going " cap in hand ||| 0.5 0.605812 8.48644e-07 3.52698e-20 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| without going " cap in ||| 0.5 0.605812 8.48644e-07 8.89305e-17 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| without great ||| 0.0833333 0.0016497 8.48644e-07 1.28511e-08 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| without it in ||| 0.333333 0.605812 8.48644e-07 1.81484e-06 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| without it taking ||| 0.25 0.0116902 8.48644e-07 1.04955e-10 2.718 ||| 0-1 0-2 ||| 4 1.17835e+06 +en ||| without really thinking ||| 0.5 0.0455702 8.48644e-07 1.56618e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| without saying in ||| 0.1 0.605812 8.48644e-07 1.81043e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| without some action ||| 0.333333 0.0016497 8.48644e-07 1.0768e-11 2.718 ||| 0-0 ||| 3 1.17835e+06 +en ||| without some ||| 0.0204082 0.0016497 8.48644e-07 3.56201e-08 2.718 ||| 0-0 ||| 49 1.17835e+06 +en ||| without splitting into ||| 0.333333 0.525896 8.48644e-07 1.95694e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| without supplies in ||| 1 0.605812 8.48644e-07 2.0921e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| without the ||| 0.000486855 0.0014083 8.48644e-07 9.36757e-08 2.718 ||| 0-0 0-1 ||| 2054 1.17835e+06 +en ||| without their ||| 0.00925926 0.0016497 8.48644e-07 3.79026e-08 2.718 ||| 0-0 ||| 108 1.17835e+06 +en ||| without value in ||| 1 0.605812 8.48644e-07 8.96031e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| without ||| 0.00112546 0.0016497 2.88539e-05 3.27e-05 2.718 ||| 0-0 ||| 30210 1.17835e+06 +en ||| witnessed , during ||| 1 0.226251 8.48644e-07 5.34442e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| witnessed in recent months ||| 0.333333 0.605812 8.48644e-07 1.40187e-14 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| witnessed in recent ||| 0.0666667 0.605812 8.48644e-07 3.4786e-10 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| witnessed in ||| 0.0138889 0.605812 8.48644e-07 7.15761e-06 2.718 ||| 0-1 ||| 72 1.17835e+06 +en ||| witnessed over ||| 0.0909091 0.157937 8.48644e-07 6.21116e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| witnessed the birth of ||| 1 0.0011669 8.48644e-07 2.60703e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| witnessed the birth ||| 1 0.0011669 8.48644e-07 4.79551e-13 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| witnessed the ||| 0.00699301 0.0011669 8.48644e-07 4.44029e-08 2.718 ||| 0-1 ||| 143 1.17835e+06 +en ||| witnesses under ||| 0.5 0.205566 8.48644e-07 1.41365e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| witnessing in ||| 0.1 0.605812 2.54593e-06 4.47928e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| woman in ||| 0.031746 0.605812 1.69729e-06 7.98881e-06 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| woman working in ||| 0.5 0.605812 8.48644e-07 1.52107e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| women at ||| 0.00884956 0.321886 8.48644e-07 4.75224e-06 2.718 ||| 0-1 ||| 113 1.17835e+06 +en ||| women in matters of ||| 0.1 0.605812 8.48644e-07 5.51742e-10 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| women in matters ||| 0.1 0.605812 8.48644e-07 1.0149e-08 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| women in ||| 0.00468933 0.605812 1.01837e-05 5.48596e-05 2.718 ||| 0-1 ||| 2559 1.17835e+06 +en ||| women to be put into ||| 1 0.525896 8.48644e-07 4.66965e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| women when ||| 0.0454545 0.142731 8.48644e-07 7.07252e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| won in ||| 0.047619 0.605812 8.48644e-07 1.02977e-05 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| wood in ||| 0.0769231 0.605812 8.48644e-07 2.49362e-06 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| wool over ||| 0.0769231 0.157937 8.48644e-07 5.61008e-09 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| word - in ||| 1 0.605812 8.48644e-07 1.77324e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| word broadly - to ||| 0.5 0.0247351 8.48644e-07 1.20888e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| word from ||| 0.0454545 0.0308834 8.48644e-07 3.87359e-07 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| word in ||| 0.144737 0.605812 9.33509e-06 4.70093e-05 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| word on the budget ? ||| 1 0.22993 8.48644e-07 1.09458e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| word on the budget ||| 0.333333 0.22993 8.48644e-07 6.40479e-11 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| word on the ||| 0.0117647 0.22993 8.48644e-07 5.19026e-07 2.718 ||| 0-1 ||| 85 1.17835e+06 +en ||| word on ||| 0.00917431 0.22993 1.69729e-06 8.45433e-06 2.718 ||| 0-1 ||| 218 1.17835e+06 +en ||| word via ||| 1 0.0130862 8.48644e-07 4.15344e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| worded in ||| 0.027027 0.605812 8.48644e-07 1.66241e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| wording adopted in ||| 0.5 0.605812 8.48644e-07 1.31885e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| wording on the outside ||| 1 0.22993 8.48644e-07 2.84802e-12 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| wording on the ||| 0.0833333 0.22993 8.48644e-07 7.13789e-08 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| wording on ||| 0.0227273 0.22993 8.48644e-07 1.16268e-06 2.718 ||| 0-1 ||| 44 1.17835e+06 +en ||| words ' ||| 0.00294118 0.0032578 8.48644e-07 6.16754e-08 2.718 ||| 0-1 ||| 340 1.17835e+06 +en ||| words " as ||| 0.5 0.066968 8.48644e-07 9.62655e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| words , if ||| 0.0142857 0.0178573 8.48644e-07 3.12503e-08 2.718 ||| 0-2 ||| 70 1.17835e+06 +en ||| words , in ||| 0.0166667 0.605812 8.48644e-07 1.24457e-05 2.718 ||| 0-2 ||| 60 1.17835e+06 +en ||| words about ||| 0.00219298 0.0401564 8.48644e-07 6.47739e-07 2.718 ||| 0-1 ||| 456 1.17835e+06 +en ||| words constitute ||| 1 0.0024027 8.48644e-07 7.684e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| words here are ' at ||| 1 0.321886 8.48644e-07 9.55415e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| words in Germany ||| 0.5 0.605812 8.48644e-07 2.70299e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| words in ||| 0.0217391 0.605812 2.54593e-06 0.000104363 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| words into the ||| 0.5 0.525896 1.69729e-06 3.07145e-07 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| words into ||| 0.0154639 0.525896 2.54593e-06 5.00303e-06 2.718 ||| 0-1 ||| 194 1.17835e+06 +en ||| words of ||| 0.00122699 0.0116562 8.48644e-07 3.08196e-06 2.718 ||| 0-1 ||| 815 1.17835e+06 +en ||| words on ||| 0.00819672 0.22993 2.54593e-06 1.87689e-05 2.718 ||| 0-1 ||| 366 1.17835e+06 +en ||| words over ||| 0.125 0.157937 8.48644e-07 9.05627e-07 2.718 ||| 0-1 ||| 8 1.17835e+06 +en ||| work accordingly ||| 0.5 0.190763 8.48644e-07 3.00675e-07 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| work again in ||| 1 0.605812 8.48644e-07 1.69041e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| work along ||| 0.03125 0.155535 8.48644e-07 5.03551e-07 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| work as ||| 0.00429185 0.066968 1.69729e-06 1.13863e-05 2.718 ||| 0-1 ||| 466 1.17835e+06 +en ||| work at ||| 0.00925926 0.321886 1.69729e-06 2.53213e-05 2.718 ||| 0-1 ||| 216 1.17835e+06 +en ||| work based on ||| 0.25 0.22993 8.48644e-07 1.23328e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| work by ||| 0.00465116 0.0468744 8.48644e-07 5.38499e-06 2.718 ||| 0-1 ||| 215 1.17835e+06 +en ||| work first ||| 0.111111 1.81e-05 8.48644e-07 3.7688e-10 2.718 ||| 0-0 ||| 9 1.17835e+06 +en ||| work for ||| 0.00115607 0.0286209 8.48644e-07 7.28279e-06 2.718 ||| 0-1 ||| 865 1.17835e+06 +en ||| work from ||| 0.025 0.0308834 8.48644e-07 2.40863e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| work hard in ||| 0.1 0.605812 8.48644e-07 3.07215e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| work here in ||| 0.037037 0.605812 8.48644e-07 5.92741e-07 2.718 ||| 0-2 ||| 27 1.17835e+06 +en ||| work in promoting ||| 0.0714286 0.605812 8.48644e-07 8.30153e-09 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| work in the ||| 0.00146413 0.605812 8.48644e-07 1.79453e-05 2.718 ||| 0-1 ||| 683 1.17835e+06 +en ||| work in this ||| 0.00395257 0.605812 8.48644e-07 1.88872e-06 2.718 ||| 0-1 ||| 253 1.17835e+06 +en ||| work in ||| 0.0174555 0.605812 4.41295e-05 0.000292307 2.718 ||| 0-1 ||| 2979 1.17835e+06 +en ||| work is in ||| 0.0909091 0.605812 8.48644e-07 9.16124e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| work of ||| 0.00186567 0.0116562 5.09187e-06 8.63222e-06 2.718 ||| 0-1 ||| 3216 1.17835e+06 +en ||| work on a ||| 0.00552486 0.22993 8.48644e-07 2.33019e-06 2.718 ||| 0-1 ||| 181 1.17835e+06 +en ||| work on the ||| 0.0010846 0.22993 8.48644e-07 3.22734e-06 2.718 ||| 0-1 ||| 922 1.17835e+06 +en ||| work on ||| 0.00679852 0.22993 1.86702e-05 5.25696e-05 2.718 ||| 0-1 ||| 3236 1.17835e+06 +en ||| work out at ||| 0.25 0.321886 8.48644e-07 9.69906e-08 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| work out prices in ||| 1 0.605812 8.48644e-07 3.5493e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| work through ||| 0.0151515 0.0366102 8.48644e-07 5.95273e-07 2.718 ||| 0-1 ||| 66 1.17835e+06 +en ||| work to the ||| 0.0212766 0.0247351 8.48644e-07 1.09232e-06 2.718 ||| 0-1 ||| 47 1.17835e+06 +en ||| work to ||| 0.00308642 0.0247351 3.39458e-06 1.77926e-05 2.718 ||| 0-1 ||| 1296 1.17835e+06 +en ||| work together across ||| 0.0909091 0.274879 8.48644e-07 7.81003e-10 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| work together in ||| 0.00581395 0.605812 8.48644e-07 1.7556e-07 2.718 ||| 0-2 ||| 172 1.17835e+06 +en ||| work together to ||| 0.00239808 0.0247351 8.48644e-07 1.06862e-08 2.718 ||| 0-2 ||| 417 1.17835e+06 +en ||| work together towards ||| 0.0384615 0.0616136 8.48644e-07 3.78735e-10 2.718 ||| 0-2 ||| 26 1.17835e+06 +en ||| work together ||| 0.000566251 0.0128468 8.48644e-07 1.02483e-07 2.718 ||| 0-1 ||| 1766 1.17835e+06 +en ||| work towards ||| 0.00124224 0.0616136 8.48644e-07 6.30595e-07 2.718 ||| 0-1 ||| 805 1.17835e+06 +en ||| work trying to penetrate ||| 1 0.323741 8.48644e-07 1.98278e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| work under ||| 0.0194175 0.205566 1.69729e-06 3.57936e-06 2.718 ||| 0-1 ||| 103 1.17835e+06 +en ||| work we do here is important enough ||| 1 0.0855319 8.48644e-07 1.47093e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| work we do here is important ||| 1 0.0855319 8.48644e-07 8.90391e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| work we do here is ||| 0.333333 0.0855319 8.48644e-07 2.32114e-12 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| work we do here ||| 0.333333 0.0855319 8.48644e-07 7.40607e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| work we have put in ||| 0.5 0.605812 8.48644e-07 4.37588e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| work well in ||| 0.125 0.605812 8.48644e-07 4.63483e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| work when it ||| 0.5 0.142731 8.48644e-07 6.70149e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| work when ||| 0.03125 0.142731 8.48644e-07 3.76844e-06 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| work with dangerous ||| 0.333333 0.0535436 8.48644e-07 1.64576e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| work with ||| 0.00214133 0.0535436 2.54593e-06 7.38008e-06 2.718 ||| 0-1 ||| 1401 1.17835e+06 +en ||| work within ||| 0.0128205 0.369196 1.69729e-06 7.01788e-06 2.718 ||| 0-1 ||| 156 1.17835e+06 +en ||| work ||| 1.73952e-05 1.81e-05 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 57487 1.17835e+06 +en ||| workable with regard to ||| 1 0.0247351 8.48644e-07 4.89536e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| worked at ||| 0.047619 0.321886 8.48644e-07 1.74009e-06 2.718 ||| 0-1 ||| 21 1.17835e+06 +en ||| worked hard on ||| 0.0526316 0.22993 1.69729e-06 3.79685e-10 2.718 ||| 0-2 ||| 38 1.17835e+06 +en ||| worked hard to ||| 0.00952381 0.0247351 8.48644e-07 1.28507e-10 2.718 ||| 0-2 ||| 105 1.17835e+06 +en ||| worked in ||| 0.0171429 0.605812 2.54593e-06 2.00875e-05 2.718 ||| 0-1 ||| 175 1.17835e+06 +en ||| worked on ||| 0.0058997 0.22993 1.69729e-06 3.61261e-06 2.718 ||| 0-1 ||| 339 1.17835e+06 +en ||| worked out in what is ||| 0.5 0.605812 8.48644e-07 3.38355e-12 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| worked out in what ||| 0.5 0.605812 8.48644e-07 1.07959e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| worked out in ||| 0.136364 0.605812 2.54593e-06 7.69431e-08 2.718 ||| 0-2 ||| 22 1.17835e+06 +en ||| worked out on ||| 0.2 0.22993 8.48644e-07 1.38377e-08 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| workers ; in ||| 0.5 0.605812 8.48644e-07 9.67154e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| workers in ||| 0.0129683 0.605812 7.6378e-06 3.14011e-05 2.718 ||| 0-1 ||| 694 1.17835e+06 +en ||| workers into ||| 0.030303 0.525896 8.48644e-07 1.50534e-06 2.718 ||| 0-1 ||| 33 1.17835e+06 +en ||| workers to annual holidays ||| 1 0.0247351 8.48644e-07 1.21104e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| workers to annual ||| 1 0.0247351 8.48644e-07 5.50473e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| workers to ||| 0.00383142 0.0247351 8.48644e-07 1.91136e-06 2.718 ||| 0-1 ||| 261 1.17835e+06 +en ||| workforce in ||| 0.0208333 0.605812 8.48644e-07 3.00158e-06 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| working against ||| 0.0263158 0.153982 8.48644e-07 1.10411e-06 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| working as ||| 0.0108696 0.066968 8.48644e-07 3.4249e-06 2.718 ||| 0-1 ||| 92 1.17835e+06 +en ||| working at ||| 0.00793651 0.321886 8.48644e-07 7.61638e-06 2.718 ||| 0-1 ||| 126 1.17835e+06 +en ||| working classes . unfortunately , however many ||| 1 0.0053256 8.48644e-07 3.17288e-24 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| working classes . unfortunately , however ||| 1 0.0053256 8.48644e-07 9.2423e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| working for ||| 0.00189753 0.0286209 8.48644e-07 2.19059e-06 2.718 ||| 0-1 ||| 527 1.17835e+06 +en ||| working in partnership with ||| 0.0909091 0.605812 8.48644e-07 1.2144e-11 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| working in partnership ||| 0.0588235 0.605812 8.48644e-07 1.89914e-09 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| working in ||| 0.0197657 0.605812 2.29134e-05 8.79231e-05 2.718 ||| 0-1 ||| 1366 1.17835e+06 +en ||| working of ||| 0.0166667 0.0029456 8.48644e-07 2.03321e-06 2.718 ||| 0-0 ||| 60 1.17835e+06 +en ||| working on in ||| 0.125 0.417871 8.48644e-07 7.30187e-06 2.718 ||| 0-1 0-2 ||| 8 1.17835e+06 +en ||| working on the issues ||| 0.2 0.22993 8.48644e-07 2.44144e-10 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| working on the ||| 0.00328947 0.22993 8.48644e-07 9.70753e-07 2.718 ||| 0-1 ||| 304 1.17835e+06 +en ||| working on them ||| 0.111111 0.22993 8.48644e-07 4.24152e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| working on ||| 0.0143149 0.22993 1.78215e-05 1.58124e-05 2.718 ||| 0-1 ||| 1467 1.17835e+06 +en ||| working order within ||| 1 0.369196 8.48644e-07 1.12427e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| working out at ||| 0.5 0.321886 8.48644e-07 2.91738e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| working people ||| 0.0037594 0.0029456 8.48644e-07 3.29195e-08 2.718 ||| 0-0 ||| 266 1.17835e+06 +en ||| working properly ||| 0.0138889 0.0029456 8.48644e-07 2.7863e-09 2.718 ||| 0-0 ||| 72 1.17835e+06 +en ||| working time ||| 0.000843882 0.0029456 8.48644e-07 6.13996e-08 2.718 ||| 0-0 ||| 1185 1.17835e+06 +en ||| working to ||| 0.00251889 0.0247351 8.48644e-07 5.35182e-06 2.718 ||| 0-1 ||| 397 1.17835e+06 +en ||| working together in ||| 0.025 0.605812 8.48644e-07 5.28066e-08 2.718 ||| 0-2 ||| 40 1.17835e+06 +en ||| working together on ||| 0.0243902 0.22993 8.48644e-07 9.49694e-09 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| working with me in ||| 0.5 0.605812 8.48644e-07 3.38515e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| working ||| 0.00148688 0.0029456 2.6308e-05 3.74e-05 2.718 ||| 0-0 ||| 20849 1.17835e+06 +en ||| works being in ||| 0.5 0.605812 8.48644e-07 5.44053e-08 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| works for ||| 0.0116279 0.0286209 8.48644e-07 4.76315e-07 2.718 ||| 0-1 ||| 86 1.17835e+06 +en ||| works in ||| 0.0333333 0.605812 3.39458e-06 1.91177e-05 2.718 ||| 0-1 ||| 120 1.17835e+06 +en ||| works on ||| 0.025 0.22993 8.48644e-07 3.4382e-06 2.718 ||| 0-1 ||| 40 1.17835e+06 +en ||| works out at ||| 0.0666667 0.321886 8.48644e-07 6.34346e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| works to ||| 0.015873 0.0247351 8.48644e-07 1.16368e-06 2.718 ||| 0-1 ||| 63 1.17835e+06 +en ||| world , in ||| 0.015625 0.605812 8.48644e-07 1.25448e-05 2.718 ||| 0-2 ||| 64 1.17835e+06 +en ||| world , managed , as ||| 1 0.066968 8.48644e-07 3.26925e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| world airlines in ||| 1 0.605812 8.48644e-07 6.83759e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| world consists of ||| 0.5 0.201278 8.48644e-07 2.12388e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| world consists ||| 0.5 0.201278 8.48644e-07 3.90677e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| world in ||| 0.0129151 0.605812 5.94051e-06 0.000105194 2.718 ||| 0-1 ||| 542 1.17835e+06 +en ||| worldwide ' ||| 0.0833333 0.13372 8.48644e-07 1.56357e-06 2.718 ||| 0-0 ||| 12 1.17835e+06 +en ||| worldwide fight ||| 0.166667 0.13372 8.48644e-07 2.50815e-08 2.718 ||| 0-0 ||| 6 1.17835e+06 +en ||| worldwide ||| 0.002849 0.13372 5.09187e-06 0.0004552 2.718 ||| 0-0 ||| 2106 1.17835e+06 +en ||| worried that ||| 0.0147059 0.0017499 8.48644e-07 6.06216e-09 2.718 ||| 0-1 ||| 68 1.17835e+06 +en ||| worrying me a great deal . ||| 1 6.3e-05 8.48644e-07 4.04018e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| worse by ||| 0.03125 0.0468744 8.48644e-07 3.02853e-07 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| worse in 1996 ||| 1 0.605812 8.48644e-07 1.66038e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| worse in ||| 0.0416667 0.605812 1.69729e-06 1.64394e-05 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| worse position in ||| 0.333333 0.605812 8.48644e-07 5.4135e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| worse rather ||| 0.111111 0.16257 8.48644e-07 9.27558e-08 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| worth considering ||| 0.00625 0.11575 8.48644e-07 2.10104e-08 2.718 ||| 0-1 ||| 160 1.17835e+06 +en ||| worth in terms ||| 1 0.605812 8.48644e-07 3.66453e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| worth in ||| 0.138889 0.605812 4.24322e-06 3.33868e-05 2.718 ||| 0-1 ||| 36 1.17835e+06 +en ||| worth of EU ||| 1 0.0116562 8.48644e-07 4.87851e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| worth of direct ||| 1 0.0116562 8.48644e-07 4.86076e-11 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| worth of material ||| 0.5 0.0116562 8.48644e-07 2.77053e-11 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| worth of ||| 0.0434783 0.0116562 4.24322e-06 9.85955e-07 2.718 ||| 0-1 ||| 115 1.17835e+06 +en ||| worth stressing ||| 0.03125 0.152 8.48644e-07 4.67058e-09 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| worth the ||| 0.0144928 0.0011669 8.48644e-07 2.07118e-07 2.718 ||| 0-1 ||| 69 1.17835e+06 +en ||| worthwhile in ||| 0.0588235 0.605812 8.48644e-07 4.47928e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| would , as ||| 0.0588235 0.066968 8.48644e-07 1.25892e-05 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| would , during ||| 1 0.226251 8.48644e-07 2.02353e-06 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| would , for ||| 0.04 0.0286209 8.48644e-07 8.05214e-06 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| would , if ||| 0.0666667 0.0178573 8.48644e-07 8.11499e-07 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| would , in fact , ||| 0.0204082 0.605812 8.48644e-07 1.129e-07 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| would , in fact ||| 0.02 0.605812 8.48644e-07 9.46711e-07 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| would , in my ||| 0.04 0.605812 8.48644e-07 2.07841e-07 2.718 ||| 0-2 ||| 25 1.17835e+06 +en ||| would , in the future , ||| 1 0.605812 8.48644e-07 6.28445e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| would , in the future ||| 1 0.605812 8.48644e-07 5.26977e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| would , in the ||| 0.0588235 0.605812 8.48644e-07 1.9841e-05 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| would , in theory , ||| 0.5 0.605812 8.48644e-07 2.92916e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| would , in theory ||| 0.5 0.605812 8.48644e-07 2.45622e-09 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| would , in ||| 0.15311 0.605812 2.71566e-05 0.000323187 2.718 ||| 0-2 ||| 209 1.17835e+06 +en ||| would , theoretically , retire ||| 0.333333 0.264249 8.48644e-07 3.18577e-15 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| would , theoretically , ||| 0.333333 0.264249 8.48644e-07 2.89616e-09 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| would , theoretically ||| 0.333333 0.264249 8.48644e-07 2.42855e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| would actually be ||| 0.0294118 0.125341 8.48644e-07 1.4286e-07 2.718 ||| 0-1 ||| 34 1.17835e+06 +en ||| would actually ||| 0.025641 0.125341 1.69729e-06 7.88284e-06 2.718 ||| 0-1 ||| 78 1.17835e+06 +en ||| would agree with ||| 0.00787402 0.0535436 8.48644e-07 1.0886e-08 2.718 ||| 0-2 ||| 127 1.17835e+06 +en ||| would agree ||| 0.00641026 0.071674 1.69729e-06 7.4955e-06 2.718 ||| 0-1 ||| 312 1.17835e+06 +en ||| would also , on ||| 1 0.22993 8.48644e-07 2.9344e-07 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would also be totally in ||| 1 0.605812 8.48644e-07 1.07118e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would also like , speaking on ||| 1 0.22993 8.48644e-07 5.98246e-14 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| would also like to ||| 0.0020202 0.0247351 8.48644e-07 1.47899e-09 2.718 ||| 0-3 ||| 495 1.17835e+06 +en ||| would amount to ||| 0.0123457 0.0247351 8.48644e-07 4.01346e-08 2.718 ||| 0-2 ||| 81 1.17835e+06 +en ||| would appear on ||| 1 0.22993 8.48644e-07 4.25975e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| would ask for ||| 0.0204082 0.0286209 8.48644e-07 9.28408e-09 2.718 ||| 0-2 ||| 49 1.17835e+06 +en ||| would at ||| 0.197368 0.321886 1.27297e-05 0.00023476 2.718 ||| 0-1 ||| 76 1.17835e+06 +en ||| would be a step in ||| 0.0666667 0.605812 8.48644e-07 3.2111e-10 2.718 ||| 0-4 ||| 15 1.17835e+06 +en ||| would be addressed in the ||| 1 0.605812 8.48644e-07 1.61615e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would be addressed in ||| 0.5 0.605812 8.48644e-07 2.63251e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| would be attended to in ||| 1 0.605812 8.48644e-07 4.88789e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would be brought into line ||| 1 0.525896 8.48644e-07 1.94084e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would be brought into ||| 1 0.525896 8.48644e-07 6.59253e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would be created if ||| 0.333333 0.0178573 8.48644e-07 1.29981e-11 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| would be for ||| 0.00869565 0.0286209 8.48644e-07 1.22367e-06 2.718 ||| 0-2 ||| 115 1.17835e+06 +en ||| would be given to ||| 0.166667 0.0546585 8.48644e-07 1.09714e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| would be given ||| 0.0116279 0.0546585 8.48644e-07 1.23471e-07 2.718 ||| 0-2 ||| 86 1.17835e+06 +en ||| would be hanging in ||| 1 0.605812 8.48644e-07 4.42026e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would be if ||| 0.0222222 0.0178573 8.48644e-07 1.23322e-07 2.718 ||| 0-2 ||| 45 1.17835e+06 +en ||| would be implemented more slowly ||| 1 0.0703003 8.48644e-07 5.58855e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| would be implemented more ||| 1 0.0703003 8.48644e-07 9.63542e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| would be implemented ||| 0.0322581 0.0703003 8.48644e-07 4.21922e-08 2.718 ||| 0-2 ||| 31 1.17835e+06 +en ||| would be in existence by ||| 1 0.0468744 8.48644e-07 1.33824e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would be in the ||| 0.0851064 0.605812 3.39458e-06 3.0152e-06 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| would be in ||| 0.0765957 0.605812 1.52756e-05 4.91141e-05 2.718 ||| 0-2 ||| 235 1.17835e+06 +en ||| would be like in ||| 1 0.605812 8.48644e-07 8.72216e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would be limited in time to ||| 0.5 0.0247351 8.48644e-07 4.08651e-15 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| would be made to ||| 0.142857 0.0247351 8.48644e-07 6.26249e-09 2.718 ||| 0-3 ||| 7 1.17835e+06 +en ||| would be modelled on ||| 0.5 0.22993 8.48644e-07 1.2366e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| would be of ||| 0.00990099 0.0116562 8.48644e-07 1.4504e-06 2.718 ||| 0-2 ||| 101 1.17835e+06 +en ||| would be placed in ||| 0.5 0.605812 8.48644e-07 6.14908e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| would be placed on ||| 0.2 0.22993 8.48644e-07 1.10587e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| would be possible within ||| 1 0.369196 8.48644e-07 9.45802e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would be recorded in ||| 0.333333 0.605812 8.48644e-07 1.02648e-09 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| would be required in ||| 0.5 0.605812 8.48644e-07 7.7944e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| would be to the ||| 0.0588235 0.0247351 8.48644e-07 1.83533e-07 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| would be to ||| 0.00369004 0.0247351 1.69729e-06 2.98954e-06 2.718 ||| 0-2 ||| 542 1.17835e+06 +en ||| would be worth in terms ||| 1 0.605812 8.48644e-07 3.89752e-12 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would be worth in ||| 1 0.605812 8.48644e-07 3.55095e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would be ||| 0.000143041 0.0001288 1.69729e-06 2.43551e-07 2.718 ||| 0-1 ||| 13982 1.17835e+06 +en ||| would become ||| 0.0142857 0.219193 2.54593e-06 2.2439e-05 2.718 ||| 0-1 ||| 210 1.17835e+06 +en ||| would by ||| 0.166667 0.0468744 1.69729e-06 4.99256e-05 2.718 ||| 0-1 ||| 12 1.17835e+06 +en ||| would call in ||| 1 0.605812 8.48644e-07 6.01632e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| would certainly be possible for ||| 1 0.0286209 8.48644e-07 2.45867e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would come into ||| 0.0714286 0.525896 8.48644e-07 1.10339e-07 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| would come when ||| 0.333333 0.142731 8.48644e-07 2.9673e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| would do at ||| 1 0.321886 8.48644e-07 8.0647e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| would do in ||| 0.5 0.605812 8.48644e-07 9.30985e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| would effectively ||| 0.0344828 0.0120168 8.48644e-07 3.87334e-07 2.718 ||| 0-1 ||| 29 1.17835e+06 +en ||| would emerge in ||| 1 0.605812 8.48644e-07 8.18437e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| would emphasise ||| 0.0126582 0.207288 8.48644e-07 5.2472e-06 2.718 ||| 0-1 ||| 79 1.17835e+06 +en ||| would exist in ||| 1 0.605812 8.48644e-07 2.49596e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| would face from ||| 1 0.0308834 8.48644e-07 3.73597e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| would fall within ||| 0.2 0.369196 8.48644e-07 6.22667e-09 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| would find in ||| 0.333333 0.605812 8.48644e-07 9.02177e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| would gain from ||| 0.0666667 0.0308834 8.48644e-07 1.24607e-09 2.718 ||| 0-2 ||| 15 1.17835e+06 +en ||| would get a mention into ||| 0.333333 0.525896 8.48644e-07 2.4472e-13 2.718 ||| 0-4 ||| 3 1.17835e+06 +en ||| would go on to say ||| 0.25 0.22993 8.48644e-07 2.42072e-11 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| would go on to ||| 0.1 0.22993 8.48644e-07 2.53267e-08 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| would go on ||| 0.0909091 0.22993 8.48644e-07 2.85023e-07 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| would have been smashed over ||| 1 0.157937 8.48644e-07 3.75672e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would have better international coordination by ||| 1 0.0468744 8.48644e-07 1.18566e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| would have in ||| 0.166667 0.605812 8.48644e-07 3.24117e-05 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| would have on ||| 0.0540541 0.22993 1.69729e-06 5.82904e-06 2.718 ||| 0-2 ||| 37 1.17835e+06 +en ||| would have taken place in ||| 1 0.605812 8.48644e-07 4.44626e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would have the ||| 0.00675676 0.0011669 8.48644e-07 2.01069e-07 2.718 ||| 0-2 ||| 148 1.17835e+06 +en ||| would have to call ||| 0.25 0.0247351 8.48644e-07 4.37979e-10 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| would have to ||| 0.0046225 0.0247351 2.54593e-06 1.97288e-06 2.718 ||| 0-2 ||| 649 1.17835e+06 +en ||| would have very serious consequences for ||| 0.5 0.0286209 8.48644e-07 1.37568e-17 2.718 ||| 0-5 ||| 2 1.17835e+06 +en ||| would hope , developments in ||| 1 0.605812 8.48644e-07 1.69397e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would in ||| 0.263682 0.605812 4.49781e-05 0.00271005 2.718 ||| 0-1 ||| 201 1.17835e+06 +en ||| would indeed be the case ||| 0.333333 0.0011669 8.48644e-07 2.47061e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| would indeed be the ||| 0.25 0.0011669 8.48644e-07 2.3092e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| would indeed place an ||| 0.25 0.0919982 8.48644e-07 6.40052e-11 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| would indeed place ||| 0.25 0.0919982 8.48644e-07 1.44003e-08 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| would indeed ||| 0.0416667 0.0919982 8.48644e-07 9.56833e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| would inevitably wield , given ||| 1 0.0546585 8.48644e-07 1.73383e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would interfere with ||| 0.0909091 0.0535436 8.48644e-07 1.71056e-10 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| would lead to ||| 0.00206612 0.0247351 8.48644e-07 3.17546e-08 2.718 ||| 0-2 ||| 484 1.17835e+06 +en ||| would lead us to ||| 0.0769231 0.0247351 8.48644e-07 9.15232e-11 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| would let ||| 0.166667 0.0046586 8.48644e-07 4.6304e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| would like , in ||| 0.0555556 0.605812 8.48644e-07 5.73947e-07 2.718 ||| 0-3 ||| 18 1.17835e+06 +en ||| would like , on ||| 0.384615 0.22993 4.24322e-06 1.03221e-07 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| would like in ||| 0.357143 0.605812 4.24322e-06 4.81279e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| would like particularly ||| 0.166667 0.183344 8.48644e-07 4.65436e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| would like to ask ||| 0.00167224 0.0247351 8.48644e-07 4.02808e-11 2.718 ||| 0-2 ||| 598 1.17835e+06 +en ||| would like to extend ||| 0.0153846 0.0247351 8.48644e-07 1.26555e-11 2.718 ||| 0-2 ||| 65 1.17835e+06 +en ||| would like to make it clear ||| 0.0243902 0.0080472 8.48644e-07 1.47758e-15 2.718 ||| 0-4 ||| 41 1.17835e+06 +en ||| would like to make it ||| 0.0149254 0.0080472 8.48644e-07 4.4385e-12 2.718 ||| 0-4 ||| 67 1.17835e+06 +en ||| would like to raise in this ||| 0.25 0.605812 8.48644e-07 1.82098e-13 2.718 ||| 0-4 ||| 4 1.17835e+06 +en ||| would like to raise in ||| 0.2 0.605812 8.48644e-07 2.81825e-11 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| would like to register ||| 0.142857 0.0247351 8.48644e-07 3.574e-12 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| would like to say a ||| 0.02 0.0247351 8.48644e-07 1.24113e-11 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| would like to say that at ||| 1 0.321886 8.48644e-07 5.95626e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| would like to say ||| 0.00102775 0.0247351 8.48644e-07 2.80003e-10 2.718 ||| 0-2 ||| 973 1.17835e+06 +en ||| would like to see greater ||| 0.111111 0.0247351 8.48644e-07 2.71846e-14 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| would like to see ||| 0.00347625 0.0247351 2.54593e-06 2.06413e-10 2.718 ||| 0-2 ||| 863 1.17835e+06 +en ||| would like to take ||| 0.00724638 0.0247351 1.69729e-06 4.71651e-10 2.718 ||| 0-2 ||| 276 1.17835e+06 +en ||| would like to ||| 0.00391032 0.0247351 2.54593e-05 2.92951e-07 2.718 ||| 0-2 ||| 7672 1.17835e+06 +en ||| would make it possible to ||| 0.0113636 0.0080472 8.48644e-07 2.00469e-12 2.718 ||| 0-2 ||| 88 1.17835e+06 +en ||| would make it possible ||| 0.00775194 0.0080472 8.48644e-07 2.25605e-11 2.718 ||| 0-2 ||| 129 1.17835e+06 +en ||| would make it ||| 0.00666667 0.0080472 8.48644e-07 2.81268e-08 2.718 ||| 0-2 ||| 150 1.17835e+06 +en ||| would mean in ||| 0.125 0.605812 8.48644e-07 6.98381e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| would mean questioning ||| 1 0.128107 8.48644e-07 6.89638e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| would mean ||| 0.00109051 0.0002899 8.48644e-07 1.17374e-08 2.718 ||| 0-1 ||| 917 1.17835e+06 +en ||| would necessarily have on ||| 1 0.22993 8.48644e-07 1.09003e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would not , in ||| 0.333333 0.605812 8.48644e-07 1.10339e-06 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| would not be preferable ||| 1 0.0008293 8.48644e-07 8.30985e-14 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| would not be ||| 0.000961538 0.0008293 8.48644e-07 1.93252e-08 2.718 ||| 0-1 ||| 1040 1.17835e+06 +en ||| would not in ||| 0.142857 0.605812 1.69729e-06 9.2524e-06 2.718 ||| 0-2 ||| 14 1.17835e+06 +en ||| would not put money on it - ||| 1 0.22993 8.48644e-07 2.011e-17 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would not put money on it ||| 1 0.22993 8.48644e-07 5.33125e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would not put money on ||| 1 0.22993 8.48644e-07 2.99792e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would not ||| 0.00102459 0.0008293 1.69729e-06 1.06634e-06 2.718 ||| 0-1 ||| 1952 1.17835e+06 +en ||| would now call on ||| 0.5 0.22993 8.48644e-07 2.22881e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| would now like to comment on ||| 0.166667 0.22993 8.48644e-07 7.24022e-15 2.718 ||| 0-5 ||| 6 1.17835e+06 +en ||| would now like to look ||| 0.333333 0.0247351 8.48644e-07 1.75906e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| would now like to ||| 0.0172414 0.0247351 8.48644e-07 6.0345e-10 2.718 ||| 0-3 ||| 58 1.17835e+06 +en ||| would on ||| 0.25 0.22993 8.48644e-07 0.000487386 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| would otherwise ||| 0.00769231 0.0196799 8.48644e-07 9.62467e-07 2.718 ||| 0-1 ||| 130 1.17835e+06 +en ||| would perform in ||| 0.333333 0.605812 8.48644e-07 4.68839e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| would point to ||| 0.111111 0.0247351 8.48644e-07 1.44306e-07 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| would refer to ||| 0.0243902 0.0247351 8.48644e-07 1.28833e-08 2.718 ||| 0-2 ||| 41 1.17835e+06 +en ||| would result in ||| 0.00448431 0.605812 8.48644e-07 1.42684e-06 2.718 ||| 0-2 ||| 223 1.17835e+06 +en ||| would run ||| 0.0188679 0.0008889 8.48644e-07 1.17374e-08 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| would say that in ||| 0.2 0.605812 8.48644e-07 4.35725e-08 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| would say to ||| 0.00775194 0.0247351 8.48644e-07 1.57668e-07 2.718 ||| 0-2 ||| 129 1.17835e+06 +en ||| would show that we are concerned with ||| 1 0.0535436 8.48644e-07 4.27014e-17 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| would still be permitted under ||| 1 0.205566 8.48644e-07 1.28647e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would still be required on ||| 1 0.22993 8.48644e-07 1.05582e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would stress ||| 0.00724638 0.125588 8.48644e-07 3.73367e-06 2.718 ||| 0-1 ||| 138 1.17835e+06 +en ||| would succeed in ||| 0.333333 0.605812 8.48644e-07 1.03253e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| would take part in ||| 0.25 0.605812 8.48644e-07 5.20179e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| would take the ||| 0.0333333 0.004291 8.48644e-07 4.91921e-09 2.718 ||| 0-1 0-2 ||| 30 1.17835e+06 +en ||| would take ||| 0.00595238 0.0074151 1.69729e-06 1.71718e-06 2.718 ||| 0-1 ||| 336 1.17835e+06 +en ||| would then be ISO in another guise ||| 1 0.605812 8.48644e-07 2.44088e-23 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would then be ISO in another ||| 1 0.605812 8.48644e-07 7.62775e-18 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would then be ISO in ||| 1 0.605812 8.48644e-07 3.16373e-14 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| would then ||| 0.00414938 0.013351 8.48644e-07 1.96895e-06 2.718 ||| 0-1 ||| 241 1.17835e+06 +en ||| would to ||| 0.181818 0.0247351 1.69729e-06 0.000164959 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| would turn allowances into ||| 1 0.525896 8.48644e-07 2.21368e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would turn out with ||| 1 0.0535436 8.48644e-07 5.87597e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would under ||| 1 0.205566 1.69729e-06 3.31852e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| would wish to emphasize relates to ||| 1 0.138965 8.48644e-07 3.99461e-17 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would wish to emphasize relates ||| 1 0.138965 8.48644e-07 4.49549e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| would wish to emphasize ||| 1 0.138965 8.48644e-07 1.59982e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| wounds in ||| 0.166667 0.605812 8.48644e-07 3.23247e-07 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| wrap ourselves in ||| 0.5 0.605812 8.48644e-07 2.0565e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| wrecked by ||| 0.0909091 0.0468744 8.48644e-07 1.19099e-08 2.718 ||| 0-1 ||| 11 1.17835e+06 +en ||| wretched country experiencing the same disasters over ||| 1 0.0261115 8.48644e-07 2.71828e-27 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| wretched country experiencing the same disasters ||| 1 0.0261115 8.48644e-07 5.64543e-24 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| wretched country experiencing the same ||| 1 0.0261115 8.48644e-07 6.2727e-19 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| wretched country experiencing the ||| 1 0.0261115 8.48644e-07 7.79508e-16 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| wretched country experiencing ||| 1 0.0261115 8.48644e-07 1.26973e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| wretchedness wrought on ||| 1 0.22993 8.48644e-07 4.65071e-14 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| writer with ||| 1 0.0535436 8.48644e-07 8.16123e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| writes in ||| 0.0714286 0.605812 8.48644e-07 6.46494e-07 2.718 ||| 0-1 ||| 14 1.17835e+06 +en ||| writing . - ( PT ) In ||| 0.2 0.0659459 8.48644e-07 1.37947e-23 2.718 ||| 0-6 ||| 5 1.17835e+06 +en ||| writing . in ||| 0.333333 0.605812 8.48644e-07 3.05484e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| writing in ||| 0.0625 0.605812 1.69729e-06 0.000100853 2.718 ||| 0-1 ||| 32 1.17835e+06 +en ||| written about ||| 0.0666667 0.0401564 8.48644e-07 1.43305e-07 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| written from a ||| 0.333333 0.0155251 8.48644e-07 1.18065e-10 2.718 ||| 0-0 0-1 ||| 3 1.17835e+06 +en ||| written from ||| 0.4 0.0155251 1.69729e-06 2.66357e-09 2.718 ||| 0-0 0-1 ||| 5 1.17835e+06 +en ||| written in court ||| 0.25 0.605812 8.48644e-07 6.90363e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| written in ||| 0.0362694 0.605812 5.94051e-06 2.30891e-05 2.718 ||| 0-1 ||| 193 1.17835e+06 +en ||| written into ||| 0.0571429 0.525896 3.39458e-06 1.10687e-06 2.718 ||| 0-1 ||| 70 1.17835e+06 +en ||| written on ||| 0.108108 0.22993 3.39458e-06 4.15242e-06 2.718 ||| 0-1 ||| 37 1.17835e+06 +en ||| written submissions to ||| 0.333333 0.0247351 8.48644e-07 2.52975e-12 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| wrong approach ||| 0.0163934 0.0044306 8.48644e-07 3.19176e-09 2.718 ||| 0-1 ||| 61 1.17835e+06 +en ||| wrong during ||| 0.1 0.226251 8.48644e-07 1.61335e-07 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| wrong in ||| 0.0078125 0.605812 8.48644e-07 2.57674e-05 2.718 ||| 0-1 ||| 128 1.17835e+06 +en ||| wrong tree on ||| 1 0.22993 8.48644e-07 1.15853e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| wrote earlier this ||| 1 0.0013296 8.48644e-07 2.03097e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| wrote in ||| 0.0645161 0.605812 1.69729e-06 2.81686e-06 2.718 ||| 0-1 ||| 31 1.17835e+06 +en ||| wrought on ||| 0.2 0.22993 8.48644e-07 1.16268e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| yards in question ||| 0.333333 0.605812 8.48644e-07 5.34844e-10 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| yards in ||| 0.285714 0.605812 1.69729e-06 6.46494e-07 2.718 ||| 0-1 ||| 7 1.17835e+06 +en ||| year . in ||| 0.25 0.605812 8.48644e-07 3.48844e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| year and per week ; in ||| 1 0.605812 8.48644e-07 6.02306e-19 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| year as ||| 0.00909091 0.066968 8.48644e-07 4.48618e-06 2.718 ||| 0-1 ||| 110 1.17835e+06 +en ||| year by ||| 0.0220588 0.0468744 2.54593e-06 2.12167e-06 2.718 ||| 0-1 ||| 136 1.17835e+06 +en ||| year for ||| 0.00813008 0.0286209 1.69729e-06 2.8694e-06 2.718 ||| 0-1 ||| 246 1.17835e+06 +en ||| year in Dublin ||| 0.5 0.605812 8.48644e-07 2.5337e-10 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| year in which ||| 0.00769231 0.605812 8.48644e-07 9.78308e-07 2.718 ||| 0-1 ||| 130 1.17835e+06 +en ||| year in ||| 0.0174419 0.605812 1.01837e-05 0.000115168 2.718 ||| 0-1 ||| 688 1.17835e+06 +en ||| year is ||| 0.00454545 0.0005032 8.48644e-07 7.12785e-08 2.718 ||| 0-1 ||| 220 1.17835e+06 +en ||| year on ||| 0.00380228 0.22993 8.48644e-07 2.07123e-05 2.718 ||| 0-1 ||| 263 1.17835e+06 +en ||| year when ||| 0.0253165 0.142731 3.39458e-06 1.48475e-06 2.718 ||| 0-1 ||| 158 1.17835e+06 +en ||| years 1996 to ||| 0.5 0.0247351 8.48644e-07 4.83187e-11 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| years ago , is still relevant today ||| 1 0.0398284 8.48644e-07 6.84779e-21 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| years as ||| 0.00746269 0.066968 8.48644e-07 3.06154e-06 2.718 ||| 0-1 ||| 134 1.17835e+06 +en ||| years in the ||| 0.00666667 0.605812 8.48644e-07 4.8251e-06 2.718 ||| 0-1 ||| 150 1.17835e+06 +en ||| years in ||| 0.0167095 0.605812 1.10324e-05 7.85951e-05 2.718 ||| 0-1 ||| 778 1.17835e+06 +en ||| years of ||| 0.000452284 0.0116562 8.48644e-07 2.32102e-06 2.718 ||| 0-1 ||| 2211 1.17835e+06 +en ||| yesterday , and where it is ||| 0.5 0.247783 8.48644e-07 1.68753e-13 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| yesterday , and where it ||| 0.5 0.247783 8.48644e-07 5.3844e-12 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| yesterday , and where ||| 0.5 0.247783 8.48644e-07 3.0278e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| yesterday evening in ||| 0.0526316 0.605812 8.48644e-07 2.45086e-10 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| yesterday in ||| 0.00473934 0.605812 8.48644e-07 1.09904e-05 2.718 ||| 0-1 ||| 211 1.17835e+06 +en ||| yet , at ||| 0.0833333 0.321886 8.48644e-07 1.26178e-06 2.718 ||| 0-2 ||| 12 1.17835e+06 +en ||| yet , in ||| 0.0338983 0.605812 1.69729e-06 1.45659e-05 2.718 ||| 0-2 ||| 59 1.17835e+06 +en ||| yet , we are now at ||| 1 0.321886 8.48644e-07 4.47688e-13 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| yet , with ||| 0.0526316 0.0535436 8.48644e-07 3.67755e-07 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| yet , within ||| 0.125 0.369196 8.48644e-07 3.49706e-07 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| yet again , in ||| 0.2 0.605812 8.48644e-07 8.42346e-09 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| yet at ||| 0.0857143 0.321886 2.54593e-06 1.05805e-05 2.718 ||| 0-1 ||| 35 1.17835e+06 +en ||| yet been achieved on ||| 1 0.22993 8.48644e-07 1.22714e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| yet been set up in ||| 1 0.605812 8.48644e-07 8.12891e-13 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| yet for there to ||| 1 0.0286209 8.48644e-07 8.28877e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| yet for there ||| 1 0.0286209 8.48644e-07 9.32809e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| yet for ||| 0.0454545 0.0286209 8.48644e-07 3.04313e-06 2.718 ||| 0-1 ||| 22 1.17835e+06 +en ||| yet in a ||| 0.0416667 0.605812 8.48644e-07 5.414e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| yet in ||| 0.025974 0.605812 3.39458e-06 0.000122141 2.718 ||| 0-1 ||| 154 1.17835e+06 +en ||| yet it goes on ||| 1 0.22993 8.48644e-07 5.41024e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| yet on ||| 0.0444444 0.22993 1.69729e-06 2.19663e-05 2.718 ||| 0-1 ||| 45 1.17835e+06 +en ||| yet over in ||| 1 0.605812 8.48644e-07 5.88109e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| yet said what is to become ||| 1 0.219193 8.48644e-07 1.62535e-15 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| yet subsequently enters ||| 1 0.0933063 8.48644e-07 1.39913e-13 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| yet taken a ||| 0.25 0.0042106 8.48644e-07 1.04462e-09 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| yet taken ||| 0.0769231 0.0042106 8.48644e-07 2.35669e-08 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| yet ||| 0.000127722 0.0002626 1.69729e-06 4.1e-06 2.718 ||| 0-0 ||| 15659 1.17835e+06 +en ||| yield added value for ||| 1 0.0286209 8.48644e-07 5.68991e-16 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| you , Commissioner , in ||| 0.2 0.605812 8.48644e-07 1.87018e-09 2.718 ||| 0-4 ||| 5 1.17835e+06 +en ||| you , Mr President , on ||| 0.2 0.22993 8.48644e-07 3.60959e-13 2.718 ||| 0-5 ||| 5 1.17835e+06 +en ||| you , in the ||| 0.0588235 0.605812 8.48644e-07 1.09157e-05 2.718 ||| 0-2 ||| 17 1.17835e+06 +en ||| you , in ||| 0.0240964 0.605812 1.69729e-06 0.000177803 2.718 ||| 0-2 ||| 83 1.17835e+06 +en ||| you , on ||| 0.0588235 0.22993 1.69729e-06 3.19768e-05 2.718 ||| 0-2 ||| 34 1.17835e+06 +en ||| you are at ||| 0.111111 0.321886 8.48644e-07 1.95962e-06 2.718 ||| 0-2 ||| 9 1.17835e+06 +en ||| you are doing at ||| 0.5 0.321886 8.48644e-07 7.19377e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| you are going to ||| 0.0045045 0.0247351 8.48644e-07 1.17841e-09 2.718 ||| 0-3 ||| 222 1.17835e+06 +en ||| you are in ||| 0.0277778 0.605812 3.39458e-06 2.26218e-05 2.718 ||| 0-2 ||| 144 1.17835e+06 +en ||| you are interested in ||| 0.0769231 0.605812 8.48644e-07 4.79582e-10 2.718 ||| 0-3 ||| 13 1.17835e+06 +en ||| you are making within ||| 0.5 0.369196 8.48644e-07 2.08937e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| you are not few in ||| 0.166667 0.605812 8.48644e-07 1.35389e-11 2.718 ||| 0-4 ||| 6 1.17835e+06 +en ||| you are within ||| 0.5 0.369196 8.48644e-07 5.43116e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| you are ||| 0.000168492 0.0006429 8.48644e-07 5.22727e-07 2.718 ||| 0-1 ||| 5935 1.17835e+06 +en ||| you at home , ||| 0.5 0.321886 8.48644e-07 1.56333e-09 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| you at home ||| 0.5 0.321886 8.48644e-07 1.31092e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| you at ||| 0.246154 0.321886 1.35783e-05 0.000129154 2.718 ||| 0-1 ||| 65 1.17835e+06 +en ||| you back in ||| 0.25 0.605812 8.48644e-07 1.00281e-06 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| you both in ||| 0.5 0.605812 8.48644e-07 2.46976e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| you both ||| 0.0434783 0.0015168 8.48644e-07 1.16556e-07 2.718 ||| 0-1 ||| 23 1.17835e+06 +en ||| you can on ||| 0.5 0.22993 8.48644e-07 7.97524e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| you cannot do so in view ||| 1 0.605812 8.48644e-07 2.36587e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| you cannot do so in ||| 1 0.605812 8.48644e-07 2.61914e-12 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| you carry in ||| 1 0.605812 8.48644e-07 2.7359e-07 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| you could for ||| 1 0.0286209 8.48644e-07 2.64151e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| you did at ||| 0.333333 0.321886 8.48644e-07 5.8662e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| you do it in ||| 1 0.605812 8.48644e-07 9.10832e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| you during ||| 0.2 0.226251 1.69729e-06 9.33514e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| you end up in ||| 0.5 0.605812 8.48644e-07 2.21244e-09 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| you engaged in ||| 0.0526316 0.605812 8.48644e-07 6.11291e-08 2.718 ||| 0-2 ||| 19 1.17835e+06 +en ||| you for the ||| 0.0363636 0.0286209 1.69729e-06 2.28051e-06 2.718 ||| 0-1 ||| 55 1.17835e+06 +en ||| you for ||| 0.00826446 0.0286209 2.54593e-06 3.71468e-05 2.718 ||| 0-1 ||| 363 1.17835e+06 +en ||| you go in ||| 0.333333 0.605812 8.48644e-07 8.71909e-07 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| you have , in ||| 0.25 0.605812 8.48644e-07 2.12649e-06 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| you have applied to ||| 1 0.0247351 8.48644e-07 1.17548e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| you have been in ||| 0.133333 0.605812 1.69729e-06 5.95429e-08 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| you have in ||| 0.0909091 0.605812 4.24322e-06 1.78315e-05 2.718 ||| 0-2 ||| 55 1.17835e+06 +en ||| you have ||| 0.000112982 0.0002342 8.48644e-07 2.84643e-07 2.718 ||| 0-0 ||| 8851 1.17835e+06 +en ||| you hold in ||| 0.25 0.605812 8.48644e-07 2.59724e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| you in having ||| 1 0.605812 8.48644e-07 5.70886e-07 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| you in ||| 0.136452 0.605812 5.94051e-05 0.00149095 2.718 ||| 0-1 ||| 513 1.17835e+06 +en ||| you know , back in early ||| 1 0.605812 8.48644e-07 2.08884e-15 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| you know , back in ||| 0.5 0.605812 8.48644e-07 3.08543e-11 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| you left Zimbabwe with a good impression ||| 1 0.0535436 8.48644e-07 1.84855e-23 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| you left Zimbabwe with a good ||| 1 0.0535436 8.48644e-07 7.0287e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| you left Zimbabwe with a ||| 1 0.0535436 8.48644e-07 1.35532e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| you left Zimbabwe with ||| 1 0.0535436 8.48644e-07 3.05764e-14 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| you look at - is ||| 1 0.321886 8.48644e-07 4.45087e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| you look at - ||| 1 0.321886 8.48644e-07 1.42014e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| you look at ||| 0.0230548 0.321886 6.78915e-06 3.76485e-08 2.718 ||| 0-2 ||| 347 1.17835e+06 +en ||| you looked at ||| 0.142857 0.321886 8.48644e-07 5.99277e-09 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| you made in ||| 0.0909091 0.605812 8.48644e-07 3.12325e-06 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| you make when ||| 0.333333 0.142731 8.48644e-07 3.3403e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| you on ||| 0.048048 0.22993 1.35783e-05 0.000268138 2.718 ||| 0-1 ||| 333 1.17835e+06 +en ||| you over ||| 0.0769231 0.157937 8.48644e-07 1.2938e-05 2.718 ||| 0-1 ||| 13 1.17835e+06 +en ||| you place on ||| 0.4 0.22993 1.69729e-06 4.03548e-07 2.718 ||| 0-2 ||| 5 1.17835e+06 +en ||| you put to me in ||| 1 0.605812 8.48644e-07 8.79525e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| you reassured us that the ||| 0.5 0.0017499 8.48644e-07 2.38848e-15 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| you reassured us that ||| 0.5 0.0017499 8.48644e-07 3.89055e-14 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| you referred to this in ||| 1 0.605812 8.48644e-07 8.19219e-11 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| you should be familiar - with Article ||| 1 0.0535436 8.48644e-07 3.49941e-21 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| you should be familiar - with ||| 1 0.0535436 8.48644e-07 1.76738e-16 2.718 ||| 0-5 ||| 1 1.17835e+06 +en ||| you should come here and ||| 0.333333 0.0855319 8.48644e-07 4.56599e-13 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| you should come here ||| 0.5 0.0855319 8.48644e-07 3.64524e-11 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| you should use ||| 0.142857 0.0005448 8.48644e-07 1.98071e-12 2.718 ||| 0-1 0-2 ||| 7 1.17835e+06 +en ||| you stressed in ||| 1 0.605812 8.48644e-07 1.55059e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| you take it on trust ||| 1 0.22993 8.48644e-07 1.46632e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| you take it on ||| 1 0.22993 8.48644e-07 7.67706e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| you take ||| 0.0045045 0.0074151 8.48644e-07 9.44718e-07 2.718 ||| 0-1 ||| 222 1.17835e+06 +en ||| you through ||| 0.166667 0.0366102 8.48644e-07 3.03627e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| you to do ||| 0.0263158 0.0247351 8.48644e-07 3.11765e-07 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| you to ||| 0.00796524 0.0247351 9.33509e-06 9.07533e-05 2.718 ||| 0-1 ||| 1381 1.17835e+06 +en ||| you today in ||| 0.142857 0.605812 8.48644e-07 6.72867e-07 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| you trust ||| 0.5 0.192848 2.54593e-06 2.263e-06 2.718 ||| 0-1 ||| 6 1.17835e+06 +en ||| you very much for your supplementary question ||| 1 0.0286209 8.48644e-07 2.47183e-22 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| you very much for your supplementary ||| 1 0.0286209 8.48644e-07 2.98783e-19 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| you very much for your ||| 0.333333 0.0286209 8.48644e-07 3.31981e-14 2.718 ||| 0-3 ||| 3 1.17835e+06 +en ||| you very much for ||| 0.2 0.0286209 8.48644e-07 1.29731e-10 2.718 ||| 0-3 ||| 5 1.17835e+06 +en ||| you want in ||| 0.25 0.605812 8.48644e-07 6.9702e-07 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| you were in ||| 0.0212766 0.605812 8.48644e-07 2.67089e-06 2.718 ||| 0-2 ||| 47 1.17835e+06 +en ||| you were right in that ||| 1 0.605812 8.48644e-07 2.89745e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| you were right in ||| 0.25 0.605812 8.48644e-07 1.72246e-09 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| you were to ||| 0.0285714 0.0247351 8.48644e-07 1.62575e-07 2.718 ||| 0-2 ||| 35 1.17835e+06 +en ||| you when ||| 0.0188679 0.142731 8.48644e-07 1.92214e-05 2.718 ||| 0-1 ||| 53 1.17835e+06 +en ||| you where ||| 0.111111 0.247783 8.48644e-07 2.74975e-05 2.718 ||| 0-1 ||| 9 1.17835e+06 +en ||| you will , in ||| 0.5 0.605812 2.54593e-06 1.53821e-06 2.718 ||| 0-3 ||| 6 1.17835e+06 +en ||| you will at ||| 0.5 0.321886 8.48644e-07 1.11734e-06 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| you will in ||| 0.125 0.605812 8.48644e-07 1.28985e-05 2.718 ||| 0-2 ||| 8 1.17835e+06 +en ||| you will often find that , in ||| 1 0.605812 8.48644e-07 1.13186e-15 2.718 ||| 0-6 ||| 1 1.17835e+06 +en ||| you will see from ||| 0.0833333 0.0308834 8.48644e-07 7.48881e-11 2.718 ||| 0-3 ||| 12 1.17835e+06 +en ||| you will see in ||| 0.0666667 0.605812 8.48644e-07 9.0883e-09 2.718 ||| 0-3 ||| 15 1.17835e+06 +en ||| you with a ||| 0.0588235 0.0535436 8.48644e-07 1.66856e-06 2.718 ||| 0-1 ||| 17 1.17835e+06 +en ||| you with ||| 0.0618557 0.0535436 5.09187e-06 3.76431e-05 2.718 ||| 0-1 ||| 97 1.17835e+06 +en ||| you within ||| 0.5 0.369196 8.48644e-07 3.57956e-05 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| you would do in ||| 1 0.605812 8.48644e-07 3.00587e-08 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| you ||| 8.2605e-05 0.0002342 4.24322e-06 2.38e-05 2.718 ||| 0-0 ||| 60529 1.17835e+06 +en ||| young people , who in ||| 0.5 0.605812 8.48644e-07 2.72333e-12 2.718 ||| 0-4 ||| 2 1.17835e+06 +en ||| young people in ||| 0.00497512 0.605812 1.69729e-06 2.58915e-08 2.718 ||| 0-2 ||| 402 1.17835e+06 +en ||| your Presidency at ||| 0.5 0.321886 8.48644e-07 5.08755e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| your actions in ||| 0.25 0.605812 8.48644e-07 8.24825e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| your agenda , on a new ||| 1 0.22993 8.48644e-07 6.66755e-15 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| your agenda , on a ||| 1 0.22993 8.48644e-07 1.11553e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| your agenda , on ||| 1 0.22993 8.48644e-07 2.51667e-10 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| your attention to the ||| 0.00232558 0.0247351 8.48644e-07 1.15386e-10 2.718 ||| 0-2 ||| 430 1.17835e+06 +en ||| your attention to ||| 0.00263158 0.0247351 1.69729e-06 1.87951e-09 2.718 ||| 0-2 ||| 760 1.17835e+06 +en ||| your colleague from ||| 1 0.0308834 8.48644e-07 5.39444e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| your company in ||| 1 0.605812 8.48644e-07 4.46682e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| your decision on that ||| 1 0.22993 8.48644e-07 5.62338e-11 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| your decision on ||| 0.25 0.22993 8.48644e-07 3.34295e-09 2.718 ||| 0-2 ||| 4 1.17835e+06 +en ||| your life in ||| 0.333333 0.605812 8.48644e-07 1.79027e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| your plans for ||| 0.1 0.0286209 8.48644e-07 1.2395e-10 2.718 ||| 0-2 ||| 10 1.17835e+06 +en ||| your position in ||| 0.142857 0.605812 8.48644e-07 3.89133e-08 2.718 ||| 0-2 ||| 7 1.17835e+06 +en ||| your position on ||| 0.02 0.22993 8.48644e-07 6.99831e-09 2.718 ||| 0-2 ||| 50 1.17835e+06 +en ||| your side in ||| 0.166667 0.605812 8.48644e-07 2.59028e-08 2.718 ||| 0-2 ||| 6 1.17835e+06 +en ||| your understanding of ||| 0.0909091 0.0116562 8.48644e-07 1.17952e-10 2.718 ||| 0-2 ||| 11 1.17835e+06 +en ||| your view ||| 0.00359712 0.0012683 8.48644e-07 6.96048e-09 2.718 ||| 0-1 ||| 278 1.17835e+06 +en ||| your ||| 3.11061e-05 6.08e-05 8.48644e-07 1.4e-06 2.718 ||| 0-0 ||| 32148 1.17835e+06 +en ||| yours within ||| 1 0.369196 8.48644e-07 8.42589e-08 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| yourself as ||| 0.0555556 0.066968 8.48644e-07 8.09456e-07 2.718 ||| 0-1 ||| 18 1.17835e+06 +en ||| yourself in ||| 0.16 0.605812 3.39458e-06 2.07801e-05 2.718 ||| 0-1 ||| 25 1.17835e+06 +en ||| yourself into ||| 0.4 0.525896 1.69729e-06 9.96179e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| yourself stuck in ||| 0.5 0.605812 8.48644e-07 2.0988e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| yourself to ||| 0.0333333 0.0247351 8.48644e-07 1.26487e-06 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| zealous advocate in ||| 1 0.605812 8.48644e-07 2.12419e-12 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| zone in ||| 0.125 0.605812 2.54593e-06 6.64965e-06 2.718 ||| 0-1 ||| 24 1.17835e+06 +en ||| zone within the ||| 1 0.369196 8.48644e-07 9.80111e-09 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| zone within ||| 0.2 0.369196 8.48644e-07 1.59648e-07 2.718 ||| 0-1 ||| 5 1.17835e+06 +en ||| Öçalan was in ||| 0.5 0.605812 8.48644e-07 5.78704e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| én ||| 1 1 8.48644e-07 7e-07 2.718 ||| 0-0 ||| 1 1.17835e+06 +en ||| – In this ||| 0.25 0.0659459 8.48644e-07 1.05382e-10 2.718 ||| 0-1 ||| 4 1.17835e+06 +en ||| – In ||| 0.0789474 0.0659459 2.54593e-06 1.63095e-08 2.718 ||| 0-1 ||| 38 1.17835e+06 +en ||| – a ||| 0.00189753 0.0015231 8.48644e-07 3.23832e-07 2.718 ||| 0-1 ||| 527 1.17835e+06 +en ||| – admittedly in the ||| 1 0.605812 8.48644e-07 2.48453e-10 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| – admittedly in ||| 1 0.605812 8.48644e-07 4.047e-09 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| – and I ||| 0.00448431 0.0060084 8.48644e-07 1.19616e-08 2.718 ||| 0-2 ||| 223 1.17835e+06 +en ||| – and ||| 0.000303122 0.0010182 8.48644e-07 3.62621e-07 2.718 ||| 0-1 ||| 3299 1.17835e+06 +en ||| – as ||| 0.00229095 0.066968 1.69729e-06 7.06924e-06 2.718 ||| 0-1 ||| 873 1.17835e+06 +en ||| – at ||| 0.00819672 0.321886 8.48644e-07 1.57208e-05 2.718 ||| 0-1 ||| 122 1.17835e+06 +en ||| – in those ||| 0.333333 0.605812 8.48644e-07 1.3141e-07 2.718 ||| 0-1 ||| 3 1.17835e+06 +en ||| – in which ||| 0.0357143 0.605812 8.48644e-07 1.5416e-06 2.718 ||| 0-1 ||| 28 1.17835e+06 +en ||| – in ||| 0.0258993 0.605812 1.52756e-05 0.00018148 2.718 ||| 0-1 ||| 695 1.17835e+06 +en ||| – in – ||| 1 0.605812 1.69729e-06 7.13216e-08 2.718 ||| 0-1 ||| 2 1.17835e+06 +en ||| – its practical application on ||| 1 0.22993 8.48644e-07 1.24112e-16 2.718 ||| 0-4 ||| 1 1.17835e+06 +en ||| – linked to ||| 0.5 0.0247351 8.48644e-07 4.60642e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| – on ||| 0.0150754 0.22993 2.54593e-06 3.2638e-05 2.718 ||| 0-1 ||| 199 1.17835e+06 +en ||| – us in ||| 0.5 0.605812 8.48644e-07 5.23062e-07 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| – when ||| 0.0392157 0.142731 1.69729e-06 2.33965e-06 2.718 ||| 0-1 ||| 51 1.17835e+06 +en ||| — in ||| 0.3 0.605812 2.54593e-06 1.98566e-06 2.718 ||| 0-1 ||| 10 1.17835e+06 +en ||| — ||| 0.0294906 0.0296128 9.33509e-06 8.8e-06 2.718 ||| 0-0 ||| 373 1.17835e+06 +en ||| ‘ in ||| 0.0208333 0.605812 8.48644e-07 5.1858e-05 2.718 ||| 0-1 ||| 48 1.17835e+06 +en ||| ‘ on ||| 0.0666667 0.22993 8.48644e-07 9.32634e-06 2.718 ||| 0-1 ||| 15 1.17835e+06 +en ||| ‘ to create 46 posts ( 21 ||| 1 0.0247351 8.48644e-07 2.01144e-29 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ‘ to create 46 posts ( ||| 1 0.0247351 8.48644e-07 2.42342e-24 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ‘ to create 46 posts ||| 1 0.0247351 8.48644e-07 2.51288e-21 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ‘ to create 46 ||| 1 0.0247351 8.48644e-07 2.488e-16 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ‘ to create ||| 1 0.0247351 8.48644e-07 3.55429e-10 2.718 ||| 0-1 ||| 1 1.17835e+06 +en ||| ‘ to ||| 0.05 0.0247351 8.48644e-07 3.15656e-06 2.718 ||| 0-1 ||| 20 1.17835e+06 +en ||| ’ in ||| 0.0372671 0.605812 5.09187e-06 0.000804469 2.718 ||| 0-1 ||| 161 1.17835e+06 +en ||| ’ on ||| 0.0666667 0.22993 1.69729e-06 0.000144679 2.718 ||| 0-1 ||| 30 1.17835e+06 +en ||| ’ s as ||| 0.333333 0.066968 8.48644e-07 5.96118e-08 2.718 ||| 0-2 ||| 3 1.17835e+06 +en ||| ’ s faith in ||| 1 0.605812 8.48644e-07 2.2649e-11 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ’ s joining ||| 0.5 0.0914976 8.48644e-07 4.7821e-10 2.718 ||| 0-2 ||| 2 1.17835e+06 +en ||| ’ s minds regarding ||| 1 0.140669 8.48644e-07 3.00496e-13 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ’ s proposal in ||| 0.5 0.605812 8.48644e-07 3.05609e-10 2.718 ||| 0-3 ||| 2 1.17835e+06 +en ||| ’ s role in ||| 0.25 0.605812 8.48644e-07 3.39736e-10 2.718 ||| 0-3 ||| 4 1.17835e+06 +en ||| ’ s view ||| 0.0350877 0.001074 1.69729e-06 1.23147e-12 2.718 ||| 0-0 0-2 ||| 57 1.17835e+06 +en ||| ’ s way in ||| 1 0.605812 8.48644e-07 3.2988e-09 2.718 ||| 0-3 ||| 1 1.17835e+06 +en ||| ’ s ||| 0.000118287 0.0008797 8.48644e-07 4.52747e-08 2.718 ||| 0-0 ||| 8454 1.17835e+06 +en ||| ’ time to ||| 1 0.0247351 8.48644e-07 8.03899e-08 2.718 ||| 0-2 ||| 1 1.17835e+06 +en ||| ’ to ||| 0.00436681 0.0247351 8.48644e-07 4.89675e-05 2.718 ||| 0-1 ||| 229 1.17835e+06 +en ||| ’ ||| 0.000854867 0.0008797 1.86702e-05 2.38e-05 2.718 ||| 0-0 ||| 25735 1.17835e+06 +lados del Atlántico ||| across the Atlantic ||| 0.00645161 3.52917e-05 0.00909091 0.00184691 2.718 ||| 0-0 1-1 1-2 2-2 ||| 155 110 +lados del Atlántico ||| shores of the Atlantic ||| 0.333333 0.00101861 0.00909091 0.000778136 2.718 ||| 0-0 1-1 1-2 2-3 ||| 3 110 +lados del Atlántico ||| side of the Atlantic ||| 0.0648148 0.000440373 0.0636364 0.00606947 2.718 ||| 0-0 1-1 1-2 2-3 ||| 108 110 +lados del Atlántico ||| sides of the Atlantic Ocean ||| 0.5 0.00363174 0.0181818 0.000429027 2.718 ||| 0-0 1-1 1-2 2-3 2-4 ||| 4 110 +lados del Atlántico ||| sides of the Atlantic about ||| 1 0.00702384 0.00909091 9.7286e-05 2.718 ||| 0-0 1-1 1-2 2-3 ||| 1 110 +lados del Atlántico ||| sides of the Atlantic and ||| 0.111111 0.00702384 0.00909091 0.000861624 2.718 ||| 0-0 1-1 1-2 2-3 ||| 9 110 +lados del Atlántico ||| sides of the Atlantic come together ||| 1 0.00702384 0.00909091 3.50877e-08 2.718 ||| 0-0 1-1 1-2 2-3 ||| 1 110 +lados del Atlántico ||| sides of the Atlantic come ||| 1 0.00702384 0.00909091 5.84211e-05 2.718 ||| 0-0 1-1 1-2 2-3 ||| 1 110 +lados del Atlántico ||| sides of the Atlantic to ||| 0.333333 0.00702384 0.0181818 0.00611232 2.718 ||| 0-0 1-1 1-2 2-3 ||| 6 110 +lados del Atlántico ||| sides of the Atlantic ||| 0.62585 0.00702384 0.836364 0.0687874 2.718 ||| 0-0 1-1 1-2 2-3 ||| 147 110 +lados del Atlántico ||| way in which the 1995 ||| 1 3.72207e-10 0.00909091 4.71561e-11 2.718 ||| 0-0 1-1 2-4 ||| 1 110 +lados del ||| shores of the ||| 0.0641026 0.00163922 0.0284091 0.000826233 2.718 ||| 0-0 1-1 1-2 ||| 78 176 +lados del ||| side of the ||| 0.0131265 0.00070868 0.0625 0.00644463 2.718 ||| 0-0 1-1 1-2 ||| 838 176 +lados del ||| sides in the ||| 0.037037 0.00507864 0.0113636 0.00667695 2.718 ||| 0-0 1-1 1-2 ||| 54 176 +lados del ||| sides of the ||| 0.291585 0.0113033 0.846591 0.0730392 2.718 ||| 0-0 1-1 1-2 ||| 511 176 +lados del ||| sides of this ||| 0.0169492 0.0144811 0.00568182 0.00135881 2.718 ||| 0-0 1-1 ||| 59 176 +lados del ||| sides of ||| 0.00790514 0.0144811 0.0227273 0.210296 2.718 ||| 0-0 1-1 ||| 506 176 +lados del ||| sides ||| 0.000286944 0.000980526 0.00568182 0.712903 2.718 ||| 0-0 ||| 3485 176 +lados del ||| way in which the ||| 0.00189036 7.7527e-07 0.00568182 4.53642e-08 2.718 ||| 0-0 1-1 ||| 529 176 +lados del ||| way in which ||| 0.000320102 7.7527e-07 0.00568182 7.3893e-07 2.718 ||| 0-0 1-1 ||| 3124 176 +lados del ||| way in ||| 0.00025413 7.7527e-07 0.00568182 8.69882e-05 2.718 ||| 0-0 1-1 ||| 3935 176 +lados ||| across ||| 0.000151355 0.0006373 0.00180505 0.0112903 2.718 ||| 0-0 ||| 6607 554 +lados ||| and sundry ||| 0.0454545 0.025 0.00180505 2.0203e-05 2.718 ||| 0-1 ||| 22 554 +lados ||| aspects ||| 0.000105441 0.0003845 0.00180505 0.0064516 2.718 ||| 0-0 ||| 9484 554 +lados ||| board ||| 0.000480538 0.0003113 0.00180505 0.0016129 2.718 ||| 0-0 ||| 2081 554 +lados ||| borders ||| 0.000139198 0.0001114 0.00180505 0.0016129 2.718 ||| 0-0 ||| 7184 554 +lados ||| camps ||| 0.00178731 0.0019305 0.00361011 0.0032258 2.718 ||| 0-0 ||| 1119 554 +lados ||| directions ||| 0.00573066 0.0080214 0.00361011 0.0048387 2.718 ||| 0-0 ||| 349 554 +lados ||| ends ||| 0.00455235 0.0031949 0.00541516 0.0048387 2.718 ||| 0-0 ||| 659 554 +lados ||| extremes ||| 0.0078125 0.0060241 0.00180505 0.0016129 2.718 ||| 0-0 ||| 128 554 +lados ||| front ||| 0.000958773 0.0005102 0.00180505 0.0016129 2.718 ||| 0-0 ||| 1043 554 +lados ||| including a ||| 0.00229358 5.32e-05 0.00180505 7.14931e-05 2.718 ||| 0-0 ||| 436 554 +lados ||| including ||| 4.63564e-05 5.32e-05 0.00180505 0.0016129 2.718 ||| 0-0 ||| 21572 554 +lados ||| over ||| 6.65646e-05 8.05e-05 0.00361011 0.0048387 2.718 ||| 0-0 ||| 30046 554 +lados ||| parties ||| 9.994e-05 7.67e-05 0.00180505 0.0016129 2.718 ||| 0-0 ||| 10006 554 +lados ||| parts ||| 0.000226655 0.0002152 0.00180505 0.0016129 2.718 ||| 0-0 ||| 4412 554 +lados ||| people ||| 1.52033e-05 2.21e-05 0.00180505 0.0032258 2.718 ||| 0-0 ||| 65775 554 +lados ||| points ||| 7.4107e-05 0.0001376 0.00180505 0.0032258 2.718 ||| 0-0 ||| 13494 554 +lados ||| quarters , and of ||| 1 0.0167785 0.00180505 1.30979e-06 2.718 ||| 0-0 ||| 1 554 +lados ||| quarters , and ||| 0.2 0.0167785 0.00180505 2.40931e-05 2.718 ||| 0-0 ||| 5 554 +lados ||| quarters , ||| 0.02 0.0167785 0.00180505 0.00192346 2.718 ||| 0-0 ||| 50 554 +lados ||| quarters ||| 0.0243309 0.0167785 0.0180505 0.016129 2.718 ||| 0-0 ||| 411 554 +lados ||| results ||| 8.52951e-05 8.28e-05 0.00180505 0.0016129 2.718 ||| 0-0 ||| 11724 554 +lados ||| round , ||| 0.008 0.0003307 0.00180505 0.000192346 2.718 ||| 0-0 ||| 125 554 +lados ||| round ||| 0.000409836 0.0003307 0.00180505 0.0016129 2.718 ||| 0-0 ||| 2440 554 +lados ||| shores ||| 0.0177936 0.0160772 0.00902527 0.0080645 2.718 ||| 0-0 ||| 281 554 +lados ||| side , ||| 0.00209205 0.0069506 0.00180505 0.0075015 2.718 ||| 0-0 ||| 478 554 +lados ||| side all the time ||| 1 0.0069506 0.00180505 2.99582e-08 2.718 ||| 0-0 ||| 1 554 +lados ||| side all the ||| 0.5 0.0069506 0.00180505 1.82483e-05 2.718 ||| 0-0 ||| 2 554 +lados ||| side all ||| 0.5 0.0069506 0.00180505 0.000297243 2.718 ||| 0-0 ||| 2 554 +lados ||| side ||| 0.00770635 0.0069506 0.0685921 0.0629032 2.718 ||| 0-0 ||| 4931 554 +lados ||| sides , ||| 0.0111111 0.11086 0.00722022 0.0850171 2.718 ||| 0-0 ||| 360 554 +lados ||| sides and land ||| 0.166667 0.11086 0.00180505 3.43796e-07 2.718 ||| 0-0 ||| 6 554 +lados ||| sides and ||| 0.00740741 0.11086 0.00180505 0.00892975 2.718 ||| 0-0 ||| 135 554 +lados ||| sides can be ||| 0.333333 0.11086 0.00180505 3.84276e-05 2.718 ||| 0-0 ||| 3 554 +lados ||| sides can ||| 0.0588235 0.11086 0.00180505 0.00212039 2.718 ||| 0-0 ||| 17 554 +lados ||| sides of it ||| 0.333333 0.11086 0.00180505 0.00068921 2.718 ||| 0-0 ||| 3 554 +lados ||| sides of the argument ||| 0.0384615 0.11086 0.00180505 7.70899e-08 2.718 ||| 0-0 ||| 26 554 +lados ||| sides of the ||| 0.00195695 0.11086 0.00180505 0.00237932 2.718 ||| 0-0 ||| 511 554 +lados ||| sides of ||| 0.00395257 0.11086 0.00361011 0.0387563 2.718 ||| 0-0 ||| 506 554 +lados ||| sides that ||| 0.027027 0.11086 0.00180505 0.0119922 2.718 ||| 0-0 ||| 37 554 +lados ||| sides there ||| 1 0.11086 0.00180505 0.00218526 2.718 ||| 0-0 ||| 1 554 +lados ||| sides to it ||| 0.2 0.11086 0.00180505 0.00112652 2.718 ||| 0-0 ||| 5 554 +lados ||| sides to succeed ||| 1 0.0556088 0.00180505 0.000102173 2.718 ||| 0-0 0-2 ||| 1 554 +lados ||| sides to ||| 0.0138249 0.11086 0.00541516 0.0633473 2.718 ||| 0-0 ||| 217 554 +lados ||| sides with an ||| 1 0.11086 0.00180505 2.02619e-05 2.718 ||| 0-0 ||| 1 554 +lados ||| sides with ||| 0.0588235 0.11086 0.00180505 0.00455866 2.718 ||| 0-0 ||| 17 554 +lados ||| sides ||| 0.123673 0.11086 0.777978 0.712903 2.718 ||| 0-0 ||| 3485 554 +lados ||| single discussion ||| 0.5 9.415e-05 0.00180505 2.60145e-06 2.718 ||| 0-0 0-1 ||| 2 554 +lados ||| sorts ||| 0.0025 0.0020619 0.00180505 0.0016129 2.718 ||| 0-0 ||| 400 554 +lados ||| sundry ||| 0.04 0.025 0.00180505 0.0016129 2.718 ||| 0-0 ||| 25 554 +lados ||| then ||| 4.48893e-05 2.71e-05 0.00180505 0.0016129 2.718 ||| 0-0 ||| 22277 554 +lados ||| three sides and land ||| 0.166667 0.11086 0.00180505 2.17623e-11 2.718 ||| 0-1 ||| 6 554 +lados ||| three sides and ||| 0.166667 0.11086 0.00180505 5.65253e-07 2.718 ||| 0-1 ||| 6 554 +lados ||| three sides ||| 0.047619 0.11086 0.00180505 4.51268e-05 2.718 ||| 0-1 ||| 21 554 +lados ||| together ||| 0.000152207 0.000108 0.00361011 0.0032258 2.718 ||| 0-0 ||| 13140 554 +lados ||| total ||| 0.000170126 0.0001807 0.00180505 0.0016129 2.718 ||| 0-0 ||| 5878 554 +lados ||| trump cards lies ||| 1 0.0192308 0.00180505 8.9274e-13 2.718 ||| 0-0 ||| 1 554 +lados ||| trump cards ||| 0.05 0.0192308 0.00180505 1.45161e-08 2.718 ||| 0-0 ||| 20 554 +lados ||| trump ||| 0.25 0.0192308 0.00180505 0.0016129 2.718 ||| 0-0 ||| 4 554 +lados ||| way ||| 5.28625e-05 4.23e-05 0.00361011 0.0032258 2.718 ||| 0-0 ||| 37834 554 +lados ||| ways ||| 0.000187864 0.0001815 0.00180505 0.0016129 2.718 ||| 0-0 ||| 5323 554 +los políticos en ||| political ||| 1.91402e-05 0.000134092 0.0357143 0.674458 2.718 ||| 1-0 ||| 52246 28 +los políticos en ||| politicians and policy-makers in ||| 1 0.0491754 0.0357143 2.87684e-08 2.718 ||| 0-0 1-2 2-3 ||| 1 28 +los políticos en ||| politicians at ||| 0.0833333 0.0580815 0.0357143 0.00384905 2.718 ||| 0-0 1-0 2-1 ||| 12 28 +los políticos en ||| politicians in ||| 0.109677 0.109313 0.607143 0.0444332 2.718 ||| 0-0 1-0 2-1 ||| 155 28 +los políticos en ||| politicians put forward in ||| 1 0.109313 0.0357143 2.72592e-08 2.718 ||| 0-0 1-0 2-3 ||| 1 28 +los políticos en ||| politicians ||| 0.000272777 0.00638878 0.0357143 0.0962213 2.718 ||| 0-0 1-0 ||| 3666 28 +los políticos en ||| politics in ||| 0.0147059 0.000130884 0.0357143 0.00167943 2.718 ||| 0-0 1-0 2-1 ||| 68 28 +los políticos en ||| the politicians in ||| 0.0769231 0.0446881 0.107143 0.0378396 2.718 ||| 0-0 1-1 2-2 ||| 39 28 +los políticos en ||| the politicians to ||| 0.0769231 0.00314392 0.0357143 0.00116016 2.718 ||| 0-0 0-1 1-1 2-2 ||| 13 28 +los políticos en ||| those in ||| 0.000654879 2.86313e-06 0.0357143 0.00387035 2.718 ||| 0-0 1-0 2-1 ||| 1527 28 +los políticos ||| ' politicians ||| 0.5 0.103626 0.000520021 0.000511821 2.718 ||| 0-0 0-1 1-1 ||| 2 1923 +los políticos ||| 's decision-makers ||| 0.25 0.00345018 0.00104004 4.51054e-06 2.718 ||| 0-0 0-1 1-1 ||| 8 1923 +los políticos ||| 's politicians ||| 0.333333 0.100771 0.00468019 0.000589567 2.718 ||| 0-0 0-1 1-1 ||| 27 1923 +los políticos ||| 's senior politicians ||| 1 0.180441 0.000520021 2.23558e-09 2.718 ||| 0-2 1-2 ||| 1 1923 +los políticos ||| , amongst politicians ||| 1 0.0943354 0.000520021 5.24401e-07 2.718 ||| 0-1 0-2 1-2 ||| 1 1923 +los políticos ||| , as politicians , ||| 0.0217391 0.090501 0.000520021 4.88256e-07 2.718 ||| 0-1 0-2 1-2 ||| 46 1923 +los políticos ||| , as politicians ||| 0.0163934 0.090501 0.000520021 4.09423e-06 2.718 ||| 0-1 0-2 1-2 ||| 61 1923 +los políticos ||| , politicians ||| 0.0373832 0.180441 0.00208008 0.0114748 2.718 ||| 0-1 1-1 ||| 107 1923 +los políticos ||| , the politicians , to ||| 0.25 0.127104 0.000520021 5.21595e-05 2.718 ||| 0-1 0-2 1-2 ||| 4 1923 +los políticos ||| , the politicians , ||| 0.111111 0.127104 0.00104004 0.000586996 2.718 ||| 0-1 0-2 1-2 ||| 18 1923 +los políticos ||| , the politicians ||| 0.105263 0.127104 0.00208008 0.00492221 2.718 ||| 0-1 0-2 1-2 ||| 38 1923 +los políticos ||| . as politicians ||| 1 0.090501 0.000520021 1.03991e-07 2.718 ||| 0-1 0-2 1-2 ||| 1 1923 +los políticos ||| . politicians ||| 0.2 0.180441 0.000520021 0.000291454 2.718 ||| 0-1 1-1 ||| 5 1923 +los políticos ||| . politics ||| 0.5 0.000216048 0.000520021 1.1016e-05 2.718 ||| 0-1 1-1 ||| 2 1923 +los políticos ||| America , politicians ||| 1 0.180441 0.000520021 3.17853e-07 2.718 ||| 0-2 1-2 ||| 1 1923 +los políticos ||| Czech politicians ||| 0.1 0.180441 0.000520021 7.31282e-07 2.718 ||| 0-1 1-1 ||| 10 1923 +los políticos ||| European politicians ||| 0.00819672 0.00206104 0.000520021 0.000217677 2.718 ||| 0-0 1-1 ||| 122 1923 +los políticos ||| European politics ||| 0.00390625 0.000216048 0.000520021 1.21613e-05 2.718 ||| 0-1 1-1 ||| 256 1923 +los políticos ||| Hoppenstedt ||| 0.00884956 1.98147e-07 0.000520021 1e-06 2.718 ||| 0-0 ||| 113 1923 +los políticos ||| MEPs to ||| 0.00609756 2.89837e-05 0.000520021 7.51607e-05 2.718 ||| 0-0 1-0 ||| 164 1923 +los políticos ||| MEPs ||| 0.000256805 2.89837e-05 0.000520021 0.00084585 2.718 ||| 0-0 1-0 ||| 3894 1923 +los políticos ||| Members of the ||| 0.000535045 3.92548e-06 0.000520021 3.43967e-06 2.718 ||| 0-2 ||| 1869 1923 +los políticos ||| Members ||| 5.60193e-05 1.81886e-06 0.000520021 0.0001953 2.718 ||| 1-0 ||| 17851 1923 +los políticos ||| Mr Hoppenstedt ||| 0.01 1.98147e-07 0.000520021 6.528e-10 2.718 ||| 0-1 ||| 100 1923 +los políticos ||| South America , politicians ||| 1 0.180441 0.000520021 6.86563e-12 2.718 ||| 0-3 1-3 ||| 1 1923 +los políticos ||| Ukrainian politician ||| 0.25 0.000224554 0.000520021 5.47549e-09 2.718 ||| 0-0 1-1 ||| 4 1923 +los políticos ||| a politician use ||| 0.25 0.000942738 0.000520021 4.06908e-08 2.718 ||| 1-1 ||| 4 1923 +los políticos ||| a politician ||| 0.00938967 0.000942738 0.00104004 8.36915e-05 2.718 ||| 1-1 ||| 213 1923 +los políticos ||| all policymakers ||| 0.5 0.00573191 0.000520021 8.40148e-06 2.718 ||| 0-0 1-1 ||| 2 1923 +los políticos ||| all politicians ||| 0.108108 0.0107327 0.00208008 0.000513541 2.718 ||| 0-0 1-1 ||| 37 1923 +los políticos ||| all senior politicians ||| 1 0.0107327 0.000520021 6.2652e-09 2.718 ||| 0-0 1-2 ||| 1 1923 +los políticos ||| all the politicians , ||| 0.5 0.0883133 0.000520021 1.32324e-05 2.718 ||| 0-0 0-1 0-2 1-2 ||| 2 1923 +los políticos ||| all the politicians ||| 0.0666667 0.0883133 0.000520021 0.000110959 2.718 ||| 0-0 0-1 0-2 1-2 ||| 15 1923 +los políticos ||| among both politicians ||| 1 0.180441 0.000520021 1.42814e-08 2.718 ||| 0-2 1-2 ||| 1 1923 +los políticos ||| among politicians ||| 0.333333 0.012197 0.000520021 4.16059e-05 2.718 ||| 0-0 1-1 ||| 3 1923 +los políticos ||| amongst politicians ||| 0.5 0.0943354 0.000520021 4.39732e-06 2.718 ||| 0-0 0-1 1-1 ||| 2 1923 +los políticos ||| and politicians ||| 0.00502513 0.180441 0.000520021 0.00120526 2.718 ||| 0-1 1-1 ||| 199 1923 +los políticos ||| any policy ||| 0.0149254 0.000206101 0.000520021 4.60627e-05 2.718 ||| 0-0 1-1 ||| 67 1923 +los políticos ||| any politician ||| 0.047619 0.0009426 0.000520021 1.74385e-06 2.718 ||| 0-0 1-1 ||| 21 1923 +los políticos ||| are all the politicians , ||| 1 0.0883133 0.000520021 2.00771e-07 2.718 ||| 0-1 0-2 0-3 1-3 ||| 1 1923 +los políticos ||| are all the politicians ||| 1 0.0883133 0.000520021 1.68355e-06 2.718 ||| 0-1 0-2 0-3 1-3 ||| 1 1923 +los políticos ||| as politicians , we ||| 0.333333 0.090501 0.000520021 4.64789e-08 2.718 ||| 0-0 0-1 1-1 ||| 3 1923 +los políticos ||| as politicians , ||| 0.0581395 0.090501 0.0026001 4.09423e-06 2.718 ||| 0-0 0-1 1-1 ||| 86 1923 +los políticos ||| as politicians are concerned ||| 1 0.180441 0.000520021 2.39646e-08 2.718 ||| 0-1 1-1 ||| 1 1923 +los políticos ||| as politicians are ||| 0.2 0.180441 0.000520021 1.48978e-05 2.718 ||| 0-1 1-1 ||| 5 1923 +los políticos ||| as politicians ||| 0.0634328 0.090501 0.00884035 3.43318e-05 2.718 ||| 0-0 0-1 1-1 ||| 268 1923 +los políticos ||| as the political ||| 0.166667 0.0259978 0.000520021 0.00295227 2.718 ||| 0-1 1-2 ||| 6 1923 +los políticos ||| both politicians ||| 0.125 0.180441 0.000520021 0.000159391 2.718 ||| 0-1 1-1 ||| 8 1923 +los políticos ||| by policy makers ||| 0.0833333 0.00146208 0.000520021 1.23277e-08 2.718 ||| 0-0 1-1 0-2 ||| 12 1923 +los políticos ||| by politicians , ||| 0.0833333 0.180441 0.000520021 6.02441e-05 2.718 ||| 0-1 1-1 ||| 12 1923 +los políticos ||| by politicians ||| 0.171053 0.0921046 0.00676027 0.000155859 2.718 ||| 0-0 0-1 1-1 ||| 76 1923 +los políticos ||| by the politicians ||| 0.111111 0.127104 0.000520021 0.000216697 2.718 ||| 0-1 0-2 1-2 ||| 9 1923 +los políticos ||| can politicians ||| 1 0.180441 0.000520021 0.000286191 2.718 ||| 0-1 1-1 ||| 1 1923 +los políticos ||| citizens ||| 2.63151e-05 9.42366e-06 0.000520021 0.0151372 2.718 ||| 0-0 ||| 38001 1923 +los políticos ||| decision makers ||| 0.00578035 0.0251498 0.000520021 3.44849e-07 2.718 ||| 0-1 1-1 ||| 173 1923 +los políticos ||| decision-makers ||| 0.00497512 0.00573246 0.00104004 0.00073615 2.718 ||| 0-0 1-0 ||| 402 1923 +los políticos ||| expediently ||| 0.1 0.0035629 0.000520021 6.51e-05 2.718 ||| 1-0 ||| 10 1923 +los políticos ||| experts ||| 0.000296648 8.66538e-05 0.000520021 0.0003349 2.718 ||| 0-0 1-0 ||| 3371 1923 +los políticos ||| far as politicians are concerned ||| 1 0.180441 0.000520021 1.63606e-11 2.718 ||| 0-2 1-2 ||| 1 1923 +los políticos ||| far as politicians are ||| 1 0.180441 0.000520021 1.01707e-08 2.718 ||| 0-2 1-2 ||| 1 1923 +los políticos ||| far as politicians ||| 1 0.180441 0.000520021 6.7033e-07 2.718 ||| 0-2 1-2 ||| 1 1923 +los políticos ||| for politicians ||| 0.0588235 0.000926104 0.00208008 0.000168449 2.718 ||| 0-0 1-1 ||| 68 1923 +los políticos ||| give politicians like ourselves ||| 1 0.180441 0.000520021 3.29402e-11 2.718 ||| 0-1 1-1 ||| 1 1923 +los políticos ||| give politicians like ||| 1 0.180441 0.000520021 1.03553e-07 2.718 ||| 0-1 1-1 ||| 1 1923 +los políticos ||| give politicians ||| 0.5 0.180441 0.000520021 5.83101e-05 2.718 ||| 0-1 1-1 ||| 2 1923 +los políticos ||| guiding politicians ||| 1 0.180441 0.000520021 9.04481e-07 2.718 ||| 0-1 1-1 ||| 1 1923 +los políticos ||| have politicians ||| 0.5 0.180441 0.000520021 0.00115079 2.718 ||| 0-1 1-1 ||| 2 1923 +los políticos ||| help politicians ||| 0.333333 0.180441 0.000520021 1.83494e-05 2.718 ||| 0-1 1-1 ||| 3 1923 +los políticos ||| into the policies ||| 0.25 0.000187763 0.000520021 9.74934e-07 2.718 ||| 0-1 1-2 ||| 4 1923 +los políticos ||| it should give politicians like ourselves ||| 1 0.180441 0.000520021 2.5956e-15 2.718 ||| 0-3 1-3 ||| 1 1923 +los políticos ||| it should give politicians like ||| 1 0.180441 0.000520021 8.1597e-12 2.718 ||| 0-3 1-3 ||| 1 1923 +los políticos ||| it should give politicians ||| 1 0.180441 0.000520021 4.59468e-09 2.718 ||| 0-3 1-3 ||| 1 1923 +los políticos ||| its policies ||| 0.00327869 3.24539e-05 0.000520021 4.72647e-06 2.718 ||| 0-0 1-1 ||| 305 1923 +los políticos ||| leaders in ||| 0.00819672 0.00130355 0.000520021 3.20693e-05 2.718 ||| 0-0 1-0 ||| 122 1923 +los políticos ||| leaders ||| 0.000223115 0.00130355 0.000520021 0.00149825 2.718 ||| 0-0 1-0 ||| 4482 1923 +los políticos ||| make politicians ||| 0.5 0.180441 0.000520021 0.000167213 2.718 ||| 0-1 1-1 ||| 2 1923 +los políticos ||| makers ||| 0.00406504 0.0251498 0.000520021 0.0021923 2.718 ||| 0-0 1-0 ||| 246 1923 +los políticos ||| namely politicians ||| 1 0.000303594 0.000520021 1.10796e-06 2.718 ||| 0-0 1-1 ||| 1 1923 +los políticos ||| national politicians ||| 0.030303 0.094137 0.00104004 4.11635e-05 2.718 ||| 0-0 0-1 1-1 ||| 66 1923 +los políticos ||| of politicians ' ||| 1 0.180441 0.000520021 1.79679e-05 2.718 ||| 0-1 1-1 ||| 1 1923 +los políticos ||| of politicians ||| 0.0216216 0.00119357 0.00208008 0.000631845 2.718 ||| 0-0 1-1 ||| 185 1923 +los políticos ||| of the political ones ||| 1 0.0259978 0.000520021 3.47593e-06 2.718 ||| 0-1 1-2 ||| 1 1923 +los políticos ||| of the political ||| 0.0142857 0.0259978 0.000520021 0.0157282 2.718 ||| 0-1 1-2 ||| 70 1923 +los políticos ||| of the role of politics ||| 0.5 0.00273341 0.000520021 2.03398e-09 2.718 ||| 0-1 1-4 ||| 2 1923 +los políticos ||| of the ||| 2.10669e-06 3.92548e-06 0.000520021 0.0233198 2.718 ||| 0-1 ||| 474678 1923 +los políticos ||| other politician ||| 0.333333 0.000203677 0.000520021 5.36032e-07 2.718 ||| 0-0 1-1 ||| 3 1923 +los políticos ||| other politicians ||| 0.0384615 0.00232162 0.000520021 5.42329e-05 2.718 ||| 0-0 1-1 ||| 26 1923 +los políticos ||| our politicians ||| 0.0384615 0.0149818 0.000520021 0.00068218 2.718 ||| 0-0 1-1 ||| 26 1923 +los políticos ||| our ||| 6.60716e-06 7.97264e-07 0.000520021 0.0035711 2.718 ||| 0-0 ||| 151351 1923 +los políticos ||| parties , ||| 0.00176678 4.25947e-06 0.000520021 0.000200467 2.718 ||| 0-0 ||| 566 1923 +los políticos ||| parties ||| 9.994e-05 4.25947e-06 0.000520021 0.001681 2.718 ||| 0-0 ||| 10006 1923 +los políticos ||| policies ||| 0.000151248 2.73524e-05 0.00156006 0.0022137 2.718 ||| 1-0 ||| 19835 1923 +los políticos ||| policy makers with ||| 0.25 0.0140008 0.000520021 6.99153e-07 2.718 ||| 1-0 0-1 1-1 ||| 4 1923 +los políticos ||| policy makers ||| 0.116279 0.0140008 0.00520021 0.000109337 2.718 ||| 1-0 0-1 1-1 ||| 86 1923 +los políticos ||| policy reports ||| 0.2 0.00100535 0.000520021 4.90252e-05 2.718 ||| 1-0 0-1 ||| 5 1923 +los políticos ||| policy-makers ||| 0.1 0.0709073 0.00676027 0.00178325 2.718 ||| 0-0 1-0 ||| 130 1923 +los políticos ||| policymakers ||| 0.121495 0.0843205 0.00676027 0.00158155 2.718 ||| 0-0 1-0 ||| 107 1923 +los políticos ||| political decision-makers ||| 0.0172414 0.0365024 0.000520021 7.08181e-05 2.718 ||| 1-0 0-1 ||| 58 1923 +los políticos ||| political figures ||| 0.03125 0.00127889 0.000520021 1.70638e-05 2.718 ||| 1-0 0-1 ||| 32 1923 +los políticos ||| political friends ||| 0.04 0.00677167 0.000520021 4.65376e-05 2.718 ||| 1-0 0-1 ||| 25 1923 +los políticos ||| political ones ||| 0.0333333 0.0183069 0.000520021 0.000247189 2.718 ||| 1-0 0-1 ||| 30 1923 +los políticos ||| political operators ||| 1 0.0701971 0.000520021 0.000920028 2.718 ||| 1-0 0-1 ||| 1 1923 +los políticos ||| political removal ||| 0.5 0.00378723 0.000520021 6.33991e-06 2.718 ||| 1-0 ||| 2 1923 +los políticos ||| political rights ||| 0.00921659 0.000655869 0.00104004 0.000102922 2.718 ||| 1-0 0-1 ||| 217 1923 +los políticos ||| political ||| 0.000248823 0.00378723 0.00676027 0.674458 2.718 ||| 1-0 ||| 52246 1923 +los políticos ||| politician has a ||| 0.5 0.000942738 0.000520021 4.30802e-07 2.718 ||| 1-0 ||| 2 1923 +los políticos ||| politician has ||| 0.2 0.000942738 0.000520021 9.71899e-06 2.718 ||| 1-0 ||| 5 1923 +los políticos ||| politician use ||| 0.25 0.000942738 0.000520021 9.17994e-07 2.718 ||| 1-0 ||| 4 1923 +los políticos ||| politician ||| 0.0100334 0.000942738 0.00312012 0.0018881 2.718 ||| 1-0 ||| 598 1923 +los políticos ||| politicians ' ||| 0.0714286 0.180441 0.00104004 0.000330511 2.718 ||| 0-0 1-0 ||| 28 1923 +los políticos ||| politicians , namely ||| 0.333333 0.180441 0.000520021 1.83368e-06 2.718 ||| 0-0 1-0 ||| 3 1923 +los políticos ||| politicians , need ||| 1 0.180441 0.000520021 1.05213e-05 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians , ||| 0.025463 0.180441 0.00572023 0.0114748 2.718 ||| 0-0 1-0 ||| 432 1923 +los políticos ||| politicians and policy-makers ||| 1 0.0811727 0.000520021 6.22987e-08 2.718 ||| 0-0 1-2 ||| 1 1923 +los políticos ||| politicians apparently ||| 1 0.180441 0.000520021 1.86669e-06 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians appear to ||| 0.333333 0.180441 0.000520021 7.47275e-07 2.718 ||| 0-0 1-0 ||| 3 1923 +los políticos ||| politicians appear ||| 0.25 0.180441 0.000520021 8.40975e-06 2.718 ||| 0-0 1-0 ||| 4 1923 +los políticos ||| politicians are concerned ||| 1 0.180441 0.000520021 2.34846e-06 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians are ||| 0.105263 0.180441 0.00416017 0.00145994 2.718 ||| 0-0 1-0 ||| 76 1923 +los políticos ||| politicians by ||| 0.333333 0.180441 0.000520021 0.000505172 2.718 ||| 0-0 1-0 ||| 3 1923 +los políticos ||| politicians change ||| 1 0.180441 0.000520021 1.1739e-05 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians conduct ||| 1 0.180441 0.000520021 5.7829e-06 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians crashing ||| 0.5 0.180441 0.000520021 1.73198e-07 2.718 ||| 0-0 1-0 ||| 2 1923 +los políticos ||| politicians do ||| 0.2 0.180441 0.000520021 0.000330549 2.718 ||| 0-0 1-0 ||| 5 1923 +los políticos ||| politicians easier ||| 1 0.180441 0.000520021 6.71625e-06 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians either ||| 1 0.180441 0.000520021 8.33084e-05 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians especially , ||| 1 0.180441 0.000520021 9.2143e-07 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians especially ||| 0.5 0.180441 0.000520021 7.72657e-06 2.718 ||| 0-0 1-0 ||| 2 1923 +los políticos ||| politicians feel a ||| 1 0.180441 0.000520021 7.21226e-07 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians feel ||| 0.5 0.180441 0.000520021 1.6271e-05 2.718 ||| 0-0 1-0 ||| 2 1923 +los políticos ||| politicians from ||| 0.0227273 0.180441 0.000520021 0.000154955 2.718 ||| 0-0 1-0 ||| 44 1923 +los políticos ||| politicians have brought ||| 1 0.180441 0.000520021 3.22221e-07 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians have ||| 0.0285714 0.180441 0.00104004 0.00115079 2.718 ||| 0-0 1-0 ||| 70 1923 +los políticos ||| politicians here ||| 0.2 0.180441 0.000520021 0.000195118 2.718 ||| 0-0 1-0 ||| 5 1923 +los políticos ||| politicians in ||| 0.0129032 0.180441 0.00104004 0.00205957 2.718 ||| 0-0 1-0 ||| 155 1923 +los políticos ||| politicians is ||| 0.0740741 0.180441 0.00104004 0.00301568 2.718 ||| 0-0 1-0 ||| 27 1923 +los políticos ||| politicians know ||| 1 0.180441 0.000520021 2.48251e-05 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians like ourselves ||| 0.25 0.180441 0.000520021 5.43568e-08 2.718 ||| 0-0 1-0 ||| 4 1923 +los políticos ||| politicians like ||| 0.2 0.180441 0.00156006 0.000170879 2.718 ||| 0-0 1-0 ||| 15 1923 +los políticos ||| politicians of ||| 0.0357143 0.180441 0.000520021 0.00523098 2.718 ||| 0-0 1-0 ||| 28 1923 +los políticos ||| politicians preach ||| 1 0.180441 0.000520021 1.05843e-07 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians put forward ||| 1 0.180441 0.000520021 5.90305e-08 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians put ||| 1 0.180441 0.000520021 0.000106094 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians that ||| 0.1 0.180441 0.000520021 0.0016186 2.718 ||| 0-0 1-0 ||| 10 1923 +los políticos ||| politicians to be ||| 0.333333 0.180441 0.000520021 0.000154952 2.718 ||| 0-0 1-0 ||| 3 1923 +los políticos ||| politicians to ||| 0.150442 0.180441 0.00884035 0.00855006 2.718 ||| 0-0 1-0 ||| 113 1923 +los políticos ||| politicians too are ||| 1 0.180441 0.000520021 1.98698e-06 2.718 ||| 0-0 1-0 ||| 1 1923 +los políticos ||| politicians too ||| 0.2 0.180441 0.000520021 0.000130957 2.718 ||| 0-0 1-0 ||| 5 1923 +los políticos ||| politicians very well ||| 0.5 0.180441 0.000520021 5.30862e-07 2.718 ||| 0-0 1-0 ||| 2 1923 +los políticos ||| politicians very ||| 0.5 0.180441 0.000520021 0.000334802 2.718 ||| 0-0 1-0 ||| 2 1923 +los políticos ||| politicians who ||| 0.00671141 0.180441 0.000520021 8.48672e-05 2.718 ||| 0-0 1-0 ||| 149 1923 +los políticos ||| politicians will ||| 0.111111 0.180441 0.000520021 0.00083243 2.718 ||| 0-0 1-0 ||| 9 1923 +los políticos ||| politicians ||| 0.33497 0.180441 0.638586 0.0962213 2.718 ||| 0-0 1-0 ||| 3666 1923 +los políticos ||| politics is ||| 0.00704225 0.000216048 0.000520021 0.000113983 2.718 ||| 0-0 1-0 ||| 142 1923 +los políticos ||| politics ||| 0.0112198 0.000216048 0.0202808 0.00363685 2.718 ||| 0-0 1-0 ||| 3476 1923 +los políticos ||| s politicians ||| 0.666667 0.100522 0.00104004 0.000151645 2.718 ||| 0-0 0-1 1-1 ||| 3 1923 +los políticos ||| see politicians ||| 1 0.180441 0.000520021 6.77976e-05 2.718 ||| 0-1 1-1 ||| 1 1923 +los políticos ||| senior politicians ||| 0.0769231 0.180441 0.000520021 1.1739e-06 2.718 ||| 0-1 1-1 ||| 13 1923 +los políticos ||| should give politicians like ourselves ||| 1 0.180441 0.000520021 1.45958e-13 2.718 ||| 0-2 1-2 ||| 1 1923 +los políticos ||| should give politicians like ||| 1 0.180441 0.000520021 4.58843e-10 2.718 ||| 0-2 1-2 ||| 1 1923 +los políticos ||| should give politicians ||| 1 0.180441 0.000520021 2.58372e-07 2.718 ||| 0-2 1-2 ||| 1 1923 +los políticos ||| so that the politicians ||| 0.2 0.127104 0.000520021 1.57587e-06 2.718 ||| 0-2 0-3 1-3 ||| 5 1923 +los políticos ||| that the politicians ||| 0.0333333 0.127104 0.000520021 0.000694307 2.718 ||| 0-1 0-2 1-2 ||| 30 1923 +los políticos ||| the Members ||| 0.000337838 1.24857e-05 0.000520021 8.37752e-05 2.718 ||| 0-0 1-1 ||| 2960 1923 +los políticos ||| the decision-makers ||| 0.0149254 0.00408278 0.000520021 0.000586512 2.718 ||| 0-0 1-1 ||| 67 1923 +los políticos ||| the elected ||| 0.0232558 0.000170679 0.000520021 0.000167593 2.718 ||| 0-0 1-1 ||| 43 1923 +los políticos ||| the established politicians ||| 0.25 0.0737657 0.000520021 1.22668e-05 2.718 ||| 0-0 1-2 ||| 4 1923 +los políticos ||| the leaders ||| 0.00136612 0.000704202 0.000520021 0.000809912 2.718 ||| 0-0 1-1 ||| 732 1923 +los políticos ||| the national politicians ||| 0.0769231 0.180441 0.000520021 7.59075e-07 2.718 ||| 0-2 1-2 ||| 13 1923 +los políticos ||| the police ||| 0.000882613 0.000185219 0.000520021 0.000223443 2.718 ||| 0-0 1-1 ||| 1133 1923 +los políticos ||| the policies ||| 0.00277778 0.000187763 0.00156006 0.000949581 2.718 ||| 0-0 1-1 ||| 1080 1923 +los políticos ||| the policy makers , ||| 0.5 0.00141501 0.000520021 9.18452e-09 2.718 ||| 0-0 1-1 ||| 2 1923 +los políticos ||| the policy makers ||| 0.333333 0.00141501 0.00104004 7.7016e-08 2.718 ||| 0-0 1-1 ||| 6 1923 +los políticos ||| the policy ||| 0.000814996 0.00141501 0.00104004 0.0213933 2.718 ||| 0-0 1-1 ||| 2454 1923 +los políticos ||| the policy-makers ||| 0.0769231 0.033184 0.000520021 0.00150817 2.718 ||| 0-0 1-1 ||| 13 1923 +los políticos ||| the policymakers ||| 0.285714 0.0393952 0.00104004 0.00134057 2.718 ||| 0-0 1-1 ||| 7 1923 +los políticos ||| the political criteria ||| 0.00478469 0.0259978 0.000520021 8.85298e-06 2.718 ||| 0-0 1-1 ||| 209 1923 +los políticos ||| the political leadership ||| 0.0172414 0.0259978 0.000520021 4.8026e-06 2.718 ||| 0-0 1-1 ||| 58 1923 +los políticos ||| the political office-holders ||| 0.5 0.0259978 0.000520021 1.15725e-07 2.718 ||| 0-0 1-1 ||| 2 1923 +los políticos ||| the political ones , ||| 0.333333 0.0259978 0.000520021 7.62493e-06 2.718 ||| 0-0 1-1 ||| 3 1923 +los políticos ||| the political ones ||| 0.428571 0.0259978 0.00156006 6.39382e-05 2.718 ||| 0-0 1-1 ||| 7 1923 +los políticos ||| the political world ||| 0.03125 0.0259978 0.000520021 6.59055e-05 2.718 ||| 0-0 1-1 ||| 32 1923 +los políticos ||| the political ||| 0.0235457 0.0259978 0.00884035 0.289313 2.718 ||| 0-0 1-1 ||| 722 1923 +los políticos ||| the politician ||| 0.1 0.00647151 0.000520021 0.000809912 2.718 ||| 0-0 1-1 ||| 10 1923 +los políticos ||| the politicians ' ||| 0.142857 0.0737657 0.000520021 0.000281465 2.718 ||| 0-0 1-1 ||| 7 1923 +los políticos ||| the politicians , to ||| 0.2 0.127104 0.000520021 0.000437379 2.718 ||| 0-0 0-1 1-1 ||| 5 1923 +los políticos ||| the politicians , ||| 0.136364 0.127104 0.00312012 0.00492221 2.718 ||| 0-0 0-1 1-1 ||| 44 1923 +los políticos ||| the politicians already ||| 1 0.0737657 0.000520021 3.79477e-05 2.718 ||| 0-0 1-1 ||| 1 1923 +los políticos ||| the politicians do ||| 1 0.0737657 0.000520021 0.000281498 2.718 ||| 0-0 1-1 ||| 1 1923 +los políticos ||| the politicians has ||| 1 0.0737657 0.000520021 0.0004218 2.718 ||| 0-0 1-1 ||| 1 1923 +los políticos ||| the politicians in ||| 0.025641 0.0737657 0.000520021 0.00175394 2.718 ||| 0-0 1-1 ||| 39 1923 +los políticos ||| the politicians of ||| 0.0588235 0.0737657 0.000520021 0.00445473 2.718 ||| 0-0 1-1 ||| 17 1923 +los políticos ||| the politicians to ||| 0.538462 0.0737657 0.00364015 0.00728128 2.718 ||| 0-0 1-1 ||| 13 1923 +los políticos ||| the politicians ||| 0.665689 0.0737657 0.118045 0.0819427 2.718 ||| 0-0 1-1 ||| 341 1923 +los políticos ||| the politics ||| 0.0206897 0.00273341 0.00156006 0.00310007 2.718 ||| 0-0 1-1 ||| 145 1923 +los políticos ||| the role of politics ||| 0.333333 0.00273341 0.000520021 3.74141e-08 2.718 ||| 0-0 1-3 ||| 3 1923 +los políticos ||| the shoulders of politicians ||| 1 0.0371621 0.000520021 2.90003e-07 2.718 ||| 0-0 1-1 1-3 ||| 1 1923 +los políticos ||| the simple policy of ||| 1 0.00141501 0.000520021 5.02428e-08 2.718 ||| 0-0 1-2 ||| 1 1923 +los políticos ||| the simple policy ||| 1 0.00141501 0.000520021 9.24192e-07 2.718 ||| 0-0 1-2 ||| 1 1923 +los políticos ||| the ||| 8.87369e-07 3.92548e-06 0.00156006 0.428956 2.718 ||| 0-0 ||| 3.38078e+06 1923 +los políticos ||| their political ||| 0.0294118 0.00503234 0.000520021 0.00154296 2.718 ||| 0-0 1-1 ||| 34 1923 +los políticos ||| this , the politicians ||| 1 0.127104 0.000520021 3.18044e-05 2.718 ||| 0-2 0-3 1-3 ||| 1 1923 +los políticos ||| those in politics ||| 1 0.00636374 0.000520021 2.58296e-06 2.718 ||| 0-0 1-2 ||| 1 1923 +los políticos ||| those politicians ||| 0.55 0.171736 0.00572023 0.00318971 2.718 ||| 0-0 1-1 ||| 20 1923 +los políticos ||| those ||| 1.71703e-05 4.72611e-06 0.000520021 0.00838135 2.718 ||| 0-0 1-0 ||| 58240 1923 +los políticos ||| us politicians ||| 0.0769231 0.180441 0.00104004 0.000277329 2.718 ||| 0-1 1-1 ||| 26 1923 +los políticos ||| we as politicians ||| 0.0588235 0.000878571 0.00156006 1.69806e-06 2.718 ||| 0-0 1-2 ||| 51 1923 +los políticos ||| we politicians really ||| 1 0.000878571 0.000520021 8.06064e-08 2.718 ||| 0-0 1-1 ||| 1 1923 +los políticos ||| we politicians will ||| 0.5 0.000878571 0.000520021 1.4396e-06 2.718 ||| 0-0 1-1 ||| 2 1923 +los políticos ||| we politicians ||| 0.212121 0.000878571 0.00728029 0.000166405 2.718 ||| 0-0 1-1 ||| 66 1923 +los políticos ||| what the politicians ||| 0.333333 0.0859664 0.000520021 3.95701e-05 2.718 ||| 0-0 0-1 0-2 1-2 ||| 3 1923 +los políticos ||| will politicians ||| 1 0.180441 0.000520021 0.00083243 2.718 ||| 0-1 1-1 ||| 1 1923 +los políticos ||| win politicians ||| 0.5 0.180441 0.000520021 1.55879e-06 2.718 ||| 0-1 1-1 ||| 2 1923 +los políticos ||| ’ politicians ||| 1 0.0944355 0.000520021 5.20173e-05 2.718 ||| 0-0 0-1 1-1 ||| 1 1923 +los políticos ||| ’ s politicians ||| 0.5 0.180441 0.000520021 3.18877e-07 2.718 ||| 0-2 1-2 ||| 2 1923 +los ||| # x02BC ; s ||| 0.0196078 0.0341558 1.90631e-06 7.12021e-16 2.718 ||| 0-3 ||| 51 524574 +los ||| $ ||| 0.00980392 0.0192926 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 102 524574 +los ||| % of Ireland 's ||| 1 0.0349814 1.90631e-06 4.30241e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| % of the Community average . ||| 0.111111 0.122289 1.90631e-06 1.61374e-17 2.718 ||| 0-2 ||| 9 524574 +los ||| % of the Community average ||| 0.0285714 0.122289 1.90631e-06 5.32764e-15 2.718 ||| 0-2 ||| 35 524574 +los ||| % of the Community ||| 0.333333 0.122289 1.90631e-06 2.14824e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| % of the ||| 0.00207684 0.122289 3.81262e-06 1.3269e-06 2.718 ||| 0-2 ||| 963 524574 +los ||| & # x02BC ; s ||| 0.0204082 0.0341558 1.90631e-06 3.22545e-20 2.718 ||| 0-4 ||| 49 524574 +los ||| & # x02BC ; ||| 0.0273973 0.0039474 3.81262e-06 1.31019e-18 2.718 ||| 0-0 ||| 73 524574 +los ||| & # x02BC ||| 0.0508475 0.0039474 5.71893e-06 4.25386e-15 2.718 ||| 0-0 ||| 59 524574 +los ||| & # ||| 0.0545455 0.0039474 5.71893e-06 1.1049e-10 2.718 ||| 0-0 ||| 55 524574 +los ||| & ||| 0.00550459 0.0039474 5.71893e-06 2.9e-06 2.718 ||| 0-0 ||| 545 524574 +los ||| ' ( the ||| 0.25 0.122289 1.90631e-06 1.42097e-06 2.718 ||| 0-2 ||| 4 524574 +los ||| ' , which have ||| 0.5 0.0444479 1.90631e-06 6.44449e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| ' , which ||| 0.00166667 0.0444479 1.90631e-06 5.38846e-06 2.718 ||| 0-0 ||| 600 524574 +los ||| ' , ||| 0.000203666 0.0444479 1.90631e-06 0.00063434 2.718 ||| 0-0 ||| 4910 524574 +los ||| ' A ||| 0.00704225 0.0444479 1.90631e-06 6.32985e-08 2.718 ||| 0-0 ||| 142 524574 +los ||| ' Association , the ||| 1 0.122289 1.90631e-06 1.51113e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| ' Association , ||| 0.5 0.0444479 1.90631e-06 5.45532e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| ' Association ||| 0.0434783 0.0444479 1.90631e-06 4.57451e-08 2.718 ||| 0-0 ||| 23 524574 +los ||| ' No ||| 0.00649351 0.0444479 1.90631e-06 3.6011e-07 2.718 ||| 0-0 ||| 154 524574 +los ||| ' Picobello ||| 1 0.0444479 1.90631e-06 2.12768e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| ' The ||| 0.0017762 0.0444479 1.90631e-06 2.31385e-07 2.718 ||| 0-0 ||| 563 524574 +los ||| ' Vision ||| 1 0.0444479 1.90631e-06 2.12768e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| ' War , ||| 1 0.0444479 1.90631e-06 3.42543e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| ' War ||| 0.2 0.0444479 1.90631e-06 2.87237e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| ' air ||| 0.25 0.0321658 1.90631e-06 8.84583e-07 2.718 ||| 0-0 0-1 ||| 4 524574 +los ||| ' and ||| 0.0009995 0.0444479 3.81262e-06 6.66278e-05 2.718 ||| 0-0 ||| 2001 524574 +los ||| ' any ||| 0.0357143 0.0178119 1.90631e-06 3.17247e-06 2.718 ||| 0-1 ||| 28 524574 +los ||| ' be ' the ||| 1 0.122289 1.90631e-06 9.1721e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| ' be ||| 0.0227273 0.0444479 1.90631e-06 9.63993e-05 2.718 ||| 0-0 ||| 44 524574 +los ||| ' category ||| 0.2 0.0444479 1.90631e-06 8.98945e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| ' clean ||| 0.0526316 0.0444479 1.90631e-06 1.0532e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| ' collapse of the ||| 1 0.122289 1.90631e-06 8.33052e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| ' conclusion ||| 0.333333 0.0444479 1.90631e-06 4.70749e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| ' conduct ||| 0.25 0.0444479 1.90631e-06 3.19684e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| ' contracts ||| 0.0526316 0.0444479 1.90631e-06 1.3032e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| ' current ||| 0.0555556 0.0444479 1.90631e-06 8.76604e-07 2.718 ||| 0-0 ||| 18 524574 +los ||| ' debate ||| 0.0625 0.0444479 1.90631e-06 1.05267e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| ' enshrined ||| 0.5 0.0444479 1.90631e-06 7.87242e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| ' export ||| 0.142857 0.0273133 1.90631e-06 2.12236e-07 2.718 ||| 0-0 0-1 ||| 7 524574 +los ||| ' financial ||| 0.0128205 0.0226975 1.90631e-06 1.60108e-07 2.718 ||| 0-0 0-1 ||| 78 524574 +los ||| ' first come , ||| 1 0.0444479 1.90631e-06 2.9006e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| ' first come ||| 0.333333 0.0444479 1.90631e-06 2.43227e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| ' first ||| 0.0454545 0.0444479 3.81262e-06 2.86386e-06 2.718 ||| 0-0 ||| 44 524574 +los ||| ' fiscal ||| 0.142857 0.0239641 1.90631e-06 4.6809e-08 2.718 ||| 0-0 0-1 ||| 7 524574 +los ||| ' fundamental ||| 0.025 0.0693278 1.90631e-06 7.88146e-06 2.718 ||| 0-0 0-1 ||| 40 524574 +los ||| ' gigaliners ' ||| 0.5 0.26087 1.90631e-06 6.84315e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| ' gigaliners ||| 0.5 0.26087 1.90631e-06 1.99224e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| ' graves ||| 0.5 0.0444479 1.90631e-06 7.44688e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| ' green job ' ||| 0.5 0.0444479 1.90631e-06 2.36875e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| ' heavy-handed ||| 1 0.0444479 1.90631e-06 2.12768e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| ' homeopathic medicinal ||| 0.142857 0.0444479 1.90631e-06 2.51598e-14 2.718 ||| 0-0 ||| 7 524574 +los ||| ' homeopathic ||| 0.142857 0.0444479 1.90631e-06 5.85112e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| ' interest ||| 0.0175439 0.0444479 1.90631e-06 5.97346e-07 2.718 ||| 0-0 ||| 57 524574 +los ||| ' interests ||| 0.00520833 0.0444479 1.90631e-06 7.29262e-07 2.718 ||| 0-0 ||| 192 524574 +los ||| ' lamentable ||| 0.5 0.0444479 1.90631e-06 7.44688e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| ' mainstream ' the ||| 1 0.0833685 1.90631e-06 2.82147e-11 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| ' nationals are ||| 0.5 0.287174 1.90631e-06 3.84569e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| ' nationals ||| 0.1 0.287174 1.90631e-06 2.53461e-06 2.718 ||| 0-1 ||| 10 524574 +los ||| ' need ||| 0.037037 0.0444479 1.90631e-06 4.87717e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| ' new ||| 0.00729927 0.0444479 1.90631e-06 3.17929e-06 2.718 ||| 0-0 ||| 137 524574 +los ||| ' no comment ' ||| 1 0.0444479 1.90631e-06 6.49949e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| ' own biologists ||| 1 0.333333 1.90631e-06 1.07729e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| ' papers ||| 0.125 0.0444479 1.90631e-06 4.78728e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| ' phone call ||| 0.25 0.0444479 1.90631e-06 4.2511e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| ' phone ||| 0.166667 0.0444479 1.90631e-06 1.91491e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| ' representatives ||| 0.00943396 0.135512 1.90631e-06 3.30953e-06 2.718 ||| 0-1 ||| 106 524574 +los ||| ' requirement ||| 0.2 0.0444479 1.90631e-06 2.23938e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| ' running ||| 1 0.0444479 1.90631e-06 4.05855e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| ' s Rights ||| 0.142857 0.0444479 1.90631e-06 8.33782e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| ' s accession to the ||| 0.2 0.122289 1.90631e-06 9.1405e-12 2.718 ||| 0-4 ||| 5 524574 +los ||| ' s chairmen , in today passing ||| 1 0.183633 1.90631e-06 1.72273e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| ' s chairmen , in today ||| 1 0.183633 1.90631e-06 6.7294e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| ' s chairmen , in ||| 1 0.183633 1.90631e-06 1.49112e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| ' s chairmen , ||| 1 0.183633 1.90631e-06 6.96636e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| ' s chairmen ||| 1 0.183633 1.90631e-06 5.84158e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| ' s corrupt administration ||| 0.25 0.0444479 1.90631e-06 6.54074e-16 2.718 ||| 0-0 ||| 4 524574 +los ||| ' s corrupt ||| 0.25 0.0444479 1.90631e-06 3.23799e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| ' s decision ||| 0.0178571 0.0444479 1.90631e-06 1.59167e-09 2.718 ||| 0-0 ||| 56 524574 +los ||| ' s failure ||| 0.166667 0.0444479 1.90631e-06 4.73556e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| ' s henchmen ||| 0.333333 0.0444479 1.90631e-06 4.04749e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| ' s life ||| 0.0833333 0.0444479 1.90631e-06 1.53299e-09 2.718 ||| 0-0 ||| 12 524574 +los ||| ' s markets - ||| 1 0.239993 1.90631e-06 6.99748e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| ' s markets ||| 1 0.239993 1.90631e-06 1.85506e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| ' s members will be ||| 0.5 0.154615 1.90631e-06 2.03397e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| ' s members will ||| 0.5 0.154615 1.90631e-06 1.12232e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| ' s members ||| 0.25 0.154615 1.90631e-06 1.2973e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| ' s programmes will ||| 1 0.0444479 1.90631e-06 4.69209e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| ' s programmes ||| 0.125 0.0444479 1.90631e-06 5.42363e-10 2.718 ||| 0-0 ||| 8 524574 +los ||| ' s question ||| 0.0140845 0.0444479 1.90631e-06 8.37121e-09 2.718 ||| 0-0 ||| 71 524574 +los ||| ' s records to ||| 0.5 0.148855 1.90631e-06 6.60743e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| ' s records ||| 0.25 0.148855 1.90631e-06 7.43593e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| ' s treatment ||| 0.2 0.0444479 1.90631e-06 6.12182e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| ' s very ||| 0.0833333 0.0444479 1.90631e-06 3.52081e-08 2.718 ||| 0-0 ||| 12 524574 +los ||| ' s victims ||| 0.5 0.0444479 1.90631e-06 3.57191e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| ' s ||| 0.022412 0.0444479 0.000280227 1.01187e-05 2.718 ||| 0-0 ||| 6559 524574 +los ||| ' salaries ||| 0.0166667 0.16098 1.90631e-06 1.50001e-06 2.718 ||| 0-0 0-1 ||| 60 524574 +los ||| ' shops , ||| 1 0.0929293 1.90631e-06 1.83104e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| ' shops ||| 0.333333 0.0929293 1.90631e-06 1.5354e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| ' superiors ||| 1 0.0444479 1.90631e-06 3.72344e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| ' surplus ||| 0.5 0.0322165 1.90631e-06 8.34681e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| ' the ||| 0.00728408 0.0833685 1.33442e-05 0.0022817 2.718 ||| 0-0 0-1 ||| 961 524574 +los ||| ' time , be allowed ||| 0.5 0.0444479 1.90631e-06 3.05556e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| ' time , be ||| 0.5 0.0444479 1.90631e-06 1.88731e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| ' time , is wrong ||| 1 0.0444479 1.90631e-06 1.82123e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| ' time , is ||| 1 0.0444479 1.90631e-06 3.26385e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| ' time , ||| 0.0454545 0.0444479 9.53154e-06 1.0414e-06 2.718 ||| 0-0 ||| 110 524574 +los ||| ' time because of ||| 1 0.0444479 1.90631e-06 1.55998e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| ' time because ||| 1 0.0444479 1.90631e-06 2.86951e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| ' time ||| 0.025641 0.0444479 2.09694e-05 8.73253e-06 2.718 ||| 0-0 ||| 429 524574 +los ||| ' to recourse to private security contractors ||| 1 0.270936 1.90631e-06 3.44209e-23 2.718 ||| 0-6 ||| 1 524574 +los ||| ' very ||| 0.0714286 0.0444479 1.90631e-06 1.85082e-05 2.718 ||| 0-0 ||| 14 524574 +los ||| ' voters from Great ||| 1 0.235256 1.90631e-06 9.07342e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| ' voters from ||| 1 0.235256 1.90631e-06 1.93052e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| ' voters ||| 0.333333 0.235256 1.90631e-06 1.19878e-06 2.718 ||| 0-1 ||| 3 524574 +los ||| ' ||| 0.0112729 0.0444479 0.00193681 0.0053192 2.718 ||| 0-0 ||| 90128 524574 +los ||| 's Day ||| 0.0666667 0.0349814 1.90631e-06 2.45088e-08 2.718 ||| 0-0 ||| 15 524574 +los ||| 's European Union ||| 0.0285714 0.0349814 1.90631e-06 1.14204e-08 2.718 ||| 0-0 ||| 35 524574 +los ||| 's European ||| 0.00854701 0.0349814 1.90631e-06 2.04887e-05 2.718 ||| 0-0 ||| 117 524574 +los ||| 's Minutes ||| 0.0138889 0.0349814 1.90631e-06 6.61738e-08 2.718 ||| 0-0 ||| 72 524574 +los ||| 's Party ||| 0.0227273 0.0349814 1.90631e-06 9.23982e-07 2.718 ||| 0-0 ||| 44 524574 +los ||| 's Wedding ||| 0.333333 0.0349814 1.90631e-06 2.45088e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| 's and ||| 0.00438596 0.0349814 1.90631e-06 7.67487e-05 2.718 ||| 0-0 ||| 228 524574 +los ||| 's aspirations ||| 0.0416667 0.0349814 1.90631e-06 2.20579e-08 2.718 ||| 0-0 ||| 24 524574 +los ||| 's assets ||| 0.0384615 0.0349814 1.90631e-06 6.86246e-08 2.718 ||| 0-0 ||| 26 524574 +los ||| 's because of ||| 0.5 0.0349814 1.90631e-06 1.09456e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| 's because ||| 0.25 0.0349814 1.90631e-06 2.0134e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| 's best ||| 0.03125 0.0349814 1.90631e-06 8.48617e-07 2.718 ||| 0-0 ||| 32 524574 +los ||| 's busy ||| 0.5 0.0349814 1.90631e-06 5.75957e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| 's challenges ||| 0.027027 0.145386 1.90631e-06 2.28109e-06 2.718 ||| 0-1 ||| 37 524574 +los ||| 's citizens ||| 0.0037831 0.164277 5.71893e-06 9.27487e-05 2.718 ||| 0-0 0-1 ||| 793 524574 +los ||| 's congratulations ||| 0.125 0.0349814 1.90631e-06 6.37229e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| 's court ||| 0.0140845 0.0578966 1.90631e-06 1.35227e-06 2.718 ||| 0-0 0-1 ||| 71 524574 +los ||| 's debates ||| 0.025 0.122803 1.90631e-06 1.06094e-06 2.718 ||| 0-1 ||| 40 524574 +los ||| 's domestic ||| 0.0625 0.0243188 1.90631e-06 2.62244e-07 2.718 ||| 0-0 0-1 ||| 16 524574 +los ||| 's due ||| 0.5 0.0349814 1.90631e-06 1.69356e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| 's efforts ||| 0.0025641 0.101547 1.90631e-06 3.23291e-06 2.718 ||| 0-1 ||| 390 524574 +los ||| 's eligibility ||| 0.166667 0.0349814 1.90631e-06 1.34798e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| 's energies and resources , ||| 0.333333 0.21958 1.90631e-06 9.3775e-14 2.718 ||| 0-3 ||| 3 524574 +los ||| 's energies and resources ||| 0.333333 0.21958 1.90631e-06 7.86343e-13 2.718 ||| 0-3 ||| 3 524574 +los ||| 's entrepreneurs ||| 0.166667 0.315279 1.90631e-06 7.22148e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| 's house ||| 0.0434783 0.0349814 1.90631e-06 1.32348e-07 2.718 ||| 0-0 ||| 23 524574 +los ||| 's huge ||| 0.125 0.0349814 1.90631e-06 3.1984e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| 's in the Parliament ||| 0.333333 0.0349814 1.90631e-06 4.62157e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| 's in the ||| 0.333333 0.0349814 1.90631e-06 8.05151e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| 's in ||| 0.0666667 0.0349814 1.90631e-06 0.00013115 2.718 ||| 0-0 ||| 15 524574 +los ||| 's individual ||| 0.1 0.072666 1.90631e-06 7.87529e-06 2.718 ||| 0-0 0-1 ||| 10 524574 +los ||| 's interest ||| 0.00444444 0.0023774 1.90631e-06 5.56085e-08 2.718 ||| 0-1 ||| 225 524574 +los ||| 's issues , as well as ||| 1 0.0349814 1.90631e-06 3.0342e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| 's issues , as well ||| 1 0.0349814 1.90631e-06 2.97342e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| 's issues , as ||| 1 0.0349814 1.90631e-06 1.87527e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| 's issues , ||| 0.5 0.0349814 1.90631e-06 1.8377e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| 's issues ||| 0.0434783 0.0349814 1.90631e-06 1.54099e-06 2.718 ||| 0-0 ||| 23 524574 +los ||| 's local municipal ||| 1 0.0190862 1.90631e-06 2.07214e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| 's local ||| 0.0666667 0.0190862 1.90631e-06 3.57265e-07 2.718 ||| 0-1 ||| 15 524574 +los ||| 's more spectacular achievements ||| 1 0.0349814 1.90631e-06 1.9142e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| 's more spectacular ||| 1 0.0349814 1.90631e-06 2.51868e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| 's more ||| 0.0416667 0.0349814 1.90631e-06 1.39927e-05 2.718 ||| 0-0 ||| 24 524574 +los ||| 's national ||| 0.025641 0.0239833 1.90631e-06 2.62122e-06 2.718 ||| 0-0 0-1 ||| 39 524574 +los ||| 's next ||| 0.0454545 0.0349814 1.90631e-06 6.3294e-07 2.718 ||| 0-0 ||| 22 524574 +los ||| 's officials ||| 0.0232558 0.221009 1.90631e-06 1.49972e-06 2.718 ||| 0-1 ||| 43 524574 +los ||| 's own activities ||| 0.5 0.0349814 1.90631e-06 8.25802e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| 's own ||| 0.00744879 0.0349814 7.62523e-06 1.03874e-05 2.718 ||| 0-0 ||| 537 524574 +los ||| 's pass ||| 0.5 0.0349814 1.90631e-06 3.50476e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| 's people ||| 0.037037 0.0622243 3.81262e-06 4.82535e-05 2.718 ||| 0-0 0-1 ||| 54 524574 +los ||| 's personal ||| 0.05 0.0210885 1.90631e-06 2.4999e-07 2.718 ||| 0-0 0-1 ||| 20 524574 +los ||| 's point ||| 0.00675676 0.0349814 1.90631e-06 5.36007e-06 2.718 ||| 0-0 ||| 148 524574 +los ||| 's prejudices ||| 0.2 0.191781 1.90631e-06 1.03599e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| 's proposal of ||| 0.1 0.0349814 1.90631e-06 6.65199e-08 2.718 ||| 0-0 ||| 10 524574 +los ||| 's proposal ||| 0.000578369 0.0349814 3.81262e-06 1.2236e-06 2.718 ||| 0-0 ||| 3458 524574 +los ||| 's proposals considerably ||| 1 0.0349814 1.90631e-06 1.09584e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| 's proposals ||| 0.000909091 0.0349814 1.90631e-06 5.95564e-07 2.718 ||| 0-0 ||| 1100 524574 +los ||| 's questions ||| 0.0204082 0.0349814 1.90631e-06 5.42257e-07 2.718 ||| 0-0 ||| 49 524574 +los ||| 's raw ||| 0.5 0.0349814 1.90631e-06 7.04628e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| 's representatives ||| 0.0163934 0.135512 1.90631e-06 1.83489e-06 2.718 ||| 0-1 ||| 61 524574 +los ||| 's requirements ||| 0.0178571 0.0676225 1.90631e-06 5.66521e-06 2.718 ||| 0-0 0-1 ||| 56 524574 +los ||| 's research ||| 0.0142857 0.0349814 1.90631e-06 3.32707e-07 2.718 ||| 0-0 ||| 70 524574 +los ||| 's status ||| 0.0126582 0.0349814 1.90631e-06 6.1946e-07 2.718 ||| 0-0 ||| 79 524574 +los ||| 's supporters ||| 0.1 0.0349814 1.90631e-06 3.55378e-08 2.718 ||| 0-0 ||| 10 524574 +los ||| 's time ||| 0.00980392 0.0349814 1.90631e-06 1.0059e-05 2.718 ||| 0-0 ||| 102 524574 +los ||| 's to the ||| 0.5 0.122289 1.90631e-06 7.25887e-05 2.718 ||| 0-2 ||| 2 524574 +los ||| 's truly ||| 0.333333 0.0349814 1.90631e-06 3.68245e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| 's use of ||| 0.166667 0.0349814 1.90631e-06 1.61953e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| 's use ||| 0.0588235 0.0349814 1.90631e-06 2.97904e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| 's very ||| 0.0166667 0.0349814 1.90631e-06 2.13196e-05 2.718 ||| 0-0 ||| 60 524574 +los ||| 's ||| 0.0211401 0.0349814 0.00191584 0.0061272 2.718 ||| 0-0 ||| 47540 524574 +los ||| " smugglers ||| 0.5 0.198718 1.90631e-06 7.12768e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| " the town ||| 0.2 0.122289 1.90631e-06 1.27987e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| " the ||| 0.00507614 0.122289 1.90631e-06 0.000101577 2.718 ||| 0-1 ||| 197 524574 +los ||| ( 2001 ) 547 - C5-0684 / ||| 1 1 1.90631e-06 1.63311e-29 2.718 ||| 0-5 ||| 1 524574 +los ||| ( 2001 ) 547 - C5-0684 ||| 1 1 1.90631e-06 7.10048e-26 2.718 ||| 0-5 ||| 1 524574 +los ||| ( ACP ) ||| 0.028169 0.0780389 3.81262e-06 3.62474e-10 2.718 ||| 0-1 ||| 71 524574 +los ||| ( ACP ||| 0.0307692 0.0780389 3.81262e-06 2.52191e-07 2.718 ||| 0-1 ||| 65 524574 +los ||| ( ECAs ) ||| 0.166667 0.163934 3.81262e-06 1.34455e-11 2.718 ||| 0-1 ||| 12 524574 +los ||| ( ECAs ||| 0.166667 0.163934 3.81262e-06 9.35468e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| ( EPA ) ||| 0.0555556 0.0625 1.90631e-06 2.28712e-11 2.718 ||| 0-1 ||| 18 524574 +los ||| ( EPA ||| 0.0588235 0.0625 1.90631e-06 1.59126e-08 2.718 ||| 0-1 ||| 17 524574 +los ||| ( ILO ) ||| 0.0178571 0.0375276 1.90631e-06 4.5881e-11 2.718 ||| 0-1 ||| 56 524574 +los ||| ( ILO ||| 0.0188679 0.0375276 1.90631e-06 3.19216e-08 2.718 ||| 0-1 ||| 53 524574 +los ||| ( LDCs ) ||| 0.0588235 0.18306 1.90631e-06 9.02372e-11 2.718 ||| 0-1 ||| 17 524574 +los ||| ( LDCs ||| 0.0625 0.18306 1.90631e-06 6.27824e-08 2.718 ||| 0-1 ||| 16 524574 +los ||| ( LT ) The ||| 0.0222222 0.0025284 1.90631e-06 2.48672e-16 2.718 ||| 0-3 ||| 45 524574 +los ||| ( Lt ) ||| 0.00229358 0.0022573 1.90631e-06 1.38613e-12 2.718 ||| 0-1 ||| 436 524574 +los ||| ( Lt ||| 0.00232019 0.0022573 1.90631e-06 9.644e-10 2.718 ||| 0-1 ||| 431 524574 +los ||| ( NL ) The ||| 0.00675676 0.0025284 1.90631e-06 9.79552e-16 2.718 ||| 0-3 ||| 148 524574 +los ||| ( RO ) The ||| 0.00290698 0.0025284 1.90631e-06 2.57322e-16 2.718 ||| 0-3 ||| 344 524574 +los ||| ( SSGIs ) ||| 1 0.285714 1.90631e-06 1.08118e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| ( SSGIs ||| 1 0.285714 1.90631e-06 7.52232e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| ( beklagar ) the ||| 1 0.122289 1.90631e-06 2.37836e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| ( fr ) The ||| 0.00980392 0.0025284 1.90631e-06 5.90326e-16 2.718 ||| 0-3 ||| 102 524574 +los ||| ( non-LDCs ) ||| 0.153846 0.157895 3.81262e-06 1.2198e-11 2.718 ||| 0-1 ||| 13 524574 +los ||| ( non-LDCs ||| 0.166667 0.157895 3.81262e-06 8.48672e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| ( of those ||| 0.166667 0.284705 1.90631e-06 8.75432e-07 2.718 ||| 0-2 ||| 6 524574 +los ||| ( the ||| 0.000942211 0.122289 5.71893e-06 0.000413685 2.718 ||| 0-1 ||| 3184 524574 +los ||| ) 547 - C5-0684 / 2001 - ||| 1 1 1.90631e-06 6.38765e-29 2.718 ||| 0-3 ||| 1 524574 +los ||| ) 547 - C5-0684 / 2001 ||| 1 1 1.90631e-06 1.69339e-26 2.718 ||| 0-3 ||| 1 524574 +los ||| ) 547 - C5-0684 / ||| 1 1 1.90631e-06 8.72884e-22 2.718 ||| 0-3 ||| 1 524574 +los ||| ) 547 - C5-0684 ||| 1 1 1.90631e-06 3.79515e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| ) As a result of the ||| 0.25 0.122289 1.90631e-06 4.77152e-15 2.718 ||| 0-5 ||| 4 524574 +los ||| ) One of the ||| 0.030303 0.122289 1.90631e-06 1.07256e-10 2.718 ||| 0-3 ||| 33 524574 +los ||| ) The ||| 0.00143885 0.0025284 7.62523e-06 2.24219e-08 2.718 ||| 0-1 ||| 2780 524574 +los ||| ) it was accrued in ||| 0.5 0.0816327 1.90631e-06 6.68478e-15 2.718 ||| 0-3 ||| 2 524574 +los ||| ) it was accrued ||| 0.5 0.0816327 1.90631e-06 3.12307e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| ) models ||| 1 0.133333 1.90631e-06 2.54402e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| ) the ||| 0.00892857 0.122289 1.90631e-06 0.000616539 2.718 ||| 0-1 ||| 112 524574 +los ||| + ||| 0.00118203 0.001171 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 846 524574 +los ||| , ' Vision ||| 1 0.0444479 1.90631e-06 2.53736e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| , ' ||| 0.000990589 0.0444479 3.81262e-06 0.00063434 2.718 ||| 0-1 ||| 2019 524574 +los ||| , Finance ||| 0.25 0.0411877 1.90631e-06 4.98485e-06 2.718 ||| 0-1 ||| 4 524574 +los ||| , Human Rights , ||| 0.00263852 0.179508 1.90631e-06 1.02198e-09 2.718 ||| 0-1 ||| 379 524574 +los ||| , Human Rights ||| 0.00773196 0.179508 5.71893e-06 8.56977e-09 2.718 ||| 0-1 ||| 388 524574 +los ||| , Human ||| 0.075 0.179508 5.71893e-06 0.000104002 2.718 ||| 0-1 ||| 40 524574 +los ||| , I mean the ||| 0.04 0.122289 1.90631e-06 9.32475e-08 2.718 ||| 0-3 ||| 25 524574 +los ||| , Latin America ||| 0.0106383 0.0803391 1.90631e-06 4.98437e-10 2.718 ||| 0-2 ||| 94 524574 +los ||| , Madam President-in-Office of the ||| 0.00403226 0.122289 1.90631e-06 2.73024e-12 2.718 ||| 0-4 ||| 248 524574 +los ||| , Members of the ||| 0.0117647 0.122289 1.90631e-06 4.10197e-07 2.718 ||| 0-3 ||| 85 524574 +los ||| , Mr President , the ||| 0.00555556 0.122289 1.90631e-06 5.77447e-10 2.718 ||| 0-4 ||| 180 524574 +los ||| , Mr President ||| 0.000132961 0.000743 1.90631e-06 2.9085e-09 2.718 ||| 0-1 ||| 7521 524574 +los ||| , Mr ||| 3.42231e-05 0.000743 1.90631e-06 2.00586e-05 2.718 ||| 0-1 ||| 29220 524574 +los ||| , about the ||| 0.00204499 0.122289 1.90631e-06 7.23486e-05 2.718 ||| 0-2 ||| 489 524574 +los ||| , above all , about ||| 0.125 0.0177928 1.90631e-06 7.0077e-12 2.718 ||| 0-2 ||| 8 524574 +los ||| , above all , ||| 0.000334001 0.0177928 1.90631e-06 4.95489e-09 2.718 ||| 0-2 ||| 2994 524574 +los ||| , above all ||| 0.000602047 0.0177928 3.81262e-06 4.15488e-08 2.718 ||| 0-2 ||| 3322 524574 +los ||| , accepted the ||| 0.125 0.122289 1.90631e-06 3.14604e-06 2.718 ||| 0-2 ||| 8 524574 +los ||| , according to ||| 0.00044603 0.0007531 1.90631e-06 8.26547e-08 2.718 ||| 0-1 ||| 2242 524574 +los ||| , according ||| 0.000571755 0.0007531 1.90631e-06 9.30187e-07 2.718 ||| 0-1 ||| 1749 524574 +los ||| , acknowledge the ||| 0.5 0.122289 1.90631e-06 7.92903e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| , acting purely on the ||| 0.25 0.122289 1.90631e-06 5.16977e-13 2.718 ||| 0-4 ||| 4 524574 +los ||| , adults ||| 0.0666667 0.304716 1.90631e-06 2.92174e-05 2.718 ||| 0-1 ||| 15 524574 +los ||| , after all , the ||| 0.0232558 0.122289 1.90631e-06 7.81217e-09 2.718 ||| 0-4 ||| 43 524574 +los ||| , after police ||| 0.5 0.0015146 1.90631e-06 2.52081e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| , after the ||| 0.00141643 0.122289 1.90631e-06 1.3863e-05 2.718 ||| 0-2 ||| 706 524574 +los ||| , aid agreements must include a commitment ||| 1 0.199336 1.90631e-06 2.48553e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| , aid agreements must include a ||| 1 0.199336 1.90631e-06 4.45435e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| , aid agreements must include ||| 1 0.199336 1.90631e-06 1.00491e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| , aid agreements must ||| 1 0.199336 1.90631e-06 7.58996e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| , aid agreements ||| 1 0.199336 1.90631e-06 4.91069e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| , aircraft and ||| 0.0909091 0.163127 1.90631e-06 4.90854e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| , aircraft ||| 0.0384615 0.163127 1.90631e-06 3.91871e-05 2.718 ||| 0-1 ||| 26 524574 +los ||| , all of the ||| 0.0138889 0.122289 1.90631e-06 1.31413e-05 2.718 ||| 0-3 ||| 72 524574 +los ||| , all of ||| 0.00159236 0.0177928 1.90631e-06 1.74287e-05 2.718 ||| 0-1 ||| 628 524574 +los ||| , all the ||| 0.00495049 0.122289 9.53154e-06 0.000241728 2.718 ||| 0-2 ||| 1010 524574 +los ||| , all ||| 0.00213119 0.0177928 1.71568e-05 0.000320592 2.718 ||| 0-1 ||| 4223 524574 +los ||| , along come the ||| 1 0.122289 1.90631e-06 7.58132e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| , also , there is ||| 1 0.0026918 1.90631e-06 8.26977e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| , also , there ||| 0.5 0.0026918 1.90631e-06 2.63863e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| , although such countries ||| 0.333333 0.0957208 1.90631e-06 2.20484e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| , among the ||| 0.00699301 0.122289 1.90631e-06 4.58349e-06 2.718 ||| 0-2 ||| 143 524574 +los ||| , among ||| 0.00265393 0.0202203 9.53154e-06 2.59737e-05 2.718 ||| 0-1 ||| 1884 524574 +los ||| , amongst other things , ||| 0.002849 0.013643 1.90631e-06 3.46056e-13 2.718 ||| 0-1 ||| 351 524574 +los ||| , amongst other things ||| 0.00240964 0.013643 1.90631e-06 2.90182e-12 2.718 ||| 0-1 ||| 415 524574 +los ||| , amongst other ||| 0.00211416 0.013643 1.90631e-06 7.0604e-09 2.718 ||| 0-1 ||| 473 524574 +los ||| , amongst ||| 0.00117925 0.013643 1.90631e-06 5.44994e-06 2.718 ||| 0-1 ||| 848 524574 +los ||| , and applied to the ||| 1 0.122289 1.90631e-06 6.16628e-09 2.718 ||| 0-4 ||| 1 524574 +los ||| , and between the ||| 0.0357143 0.122289 1.90631e-06 1.69033e-07 2.718 ||| 0-3 ||| 28 524574 +los ||| , and consequently the ||| 0.047619 0.122289 1.90631e-06 2.8578e-08 2.718 ||| 0-3 ||| 21 524574 +los ||| , and large groups of ||| 0.25 0.143803 1.90631e-06 2.47685e-11 2.718 ||| 0-3 ||| 4 524574 +los ||| , and large groups ||| 0.25 0.143803 1.90631e-06 4.55604e-10 2.718 ||| 0-3 ||| 4 524574 +los ||| , and most sincerely , the ||| 1 0.122289 1.90631e-06 6.53917e-13 2.718 ||| 0-5 ||| 1 524574 +los ||| , and of times ||| 1 0.0019787 1.90631e-06 5.01491e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| , and of ||| 0.00105708 0.0019787 1.90631e-06 4.9408e-06 2.718 ||| 0-2 ||| 946 524574 +los ||| , and public right ||| 1 0.0160961 1.90631e-06 5.6856e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| , and public ||| 0.25 0.0160961 1.90631e-06 8.81624e-07 2.718 ||| 0-2 ||| 4 524574 +los ||| , and since the ||| 0.0454545 0.122289 1.90631e-06 8.69516e-08 2.718 ||| 0-3 ||| 22 524574 +los ||| , and that is the ||| 0.00255754 0.122289 1.90631e-06 3.37815e-07 2.718 ||| 0-4 ||| 391 524574 +los ||| , and that young researchers ||| 1 0.304775 1.90631e-06 6.75466e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| , and the fats ||| 1 0.122289 1.90631e-06 1.40968e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| , and the point is best dealt ||| 1 0.122289 1.90631e-06 2.54752e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| , and the point is best ||| 1 0.122289 1.90631e-06 2.43316e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| , and the point is ||| 0.5 0.122289 1.90631e-06 1.75679e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| , and the point ||| 0.111111 0.122289 1.90631e-06 5.6054e-07 2.718 ||| 0-2 ||| 9 524574 +los ||| , and the use of ||| 0.0333333 0.122289 1.90631e-06 1.69365e-08 2.718 ||| 0-2 ||| 30 524574 +los ||| , and the use ||| 0.0277778 0.122289 1.90631e-06 3.11539e-07 2.718 ||| 0-2 ||| 36 524574 +los ||| , and the ||| 0.000689608 0.122289 1.90631e-05 0.000640763 2.718 ||| 0-2 ||| 14501 524574 +los ||| , and these contacts will continue ||| 1 0.17185 1.90631e-06 9.83114e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| , and these contacts will ||| 1 0.17185 1.90631e-06 4.24855e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| , and these contacts ||| 0.333333 0.17185 1.90631e-06 4.91094e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| , and these ||| 0.00173611 0.0240362 1.90631e-06 3.64107e-06 2.718 ||| 0-2 ||| 576 524574 +los ||| , and those ||| 0.00217865 0.284705 1.90631e-06 2.49424e-05 2.718 ||| 0-2 ||| 459 524574 +los ||| , and we from them , ||| 0.5 0.038218 1.90631e-06 6.55443e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| , and we from them ||| 0.5 0.038218 1.90631e-06 5.49616e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| , and which still go on ||| 1 0.0006914 1.90631e-06 1.99421e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| , and ||| 5.37308e-06 3e-05 1.90631e-06 4.63901e-06 2.718 ||| 0-1 ||| 186113 524574 +los ||| , any ||| 0.00235571 0.0178119 3.81262e-06 0.000110144 2.718 ||| 0-1 ||| 849 524574 +los ||| , anyone ||| 0.00934579 0.031024 1.90631e-06 1.89019e-05 2.718 ||| 0-1 ||| 107 524574 +los ||| , apart from anything else , there ||| 0.5 0.01311 1.90631e-06 4.8036e-20 2.718 ||| 0-4 ||| 2 524574 +los ||| , apart from anything else , ||| 0.0263158 0.01311 1.90631e-06 1.56709e-17 2.718 ||| 0-4 ||| 38 524574 +los ||| , apart from anything else ||| 0.0181818 0.01311 1.90631e-06 1.31407e-16 2.718 ||| 0-4 ||| 55 524574 +los ||| , appropriate fiscal reform and the fight ||| 1 0.122289 1.90631e-06 1.05214e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| , appropriate fiscal reform and the ||| 1 0.122289 1.90631e-06 1.9095e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| , approximately the ||| 0.5 0.122289 1.90631e-06 4.80858e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| , are the ||| 0.0136986 0.122289 9.53154e-06 0.00077616 2.718 ||| 0-2 ||| 365 524574 +los ||| , are ||| 0.000282087 0.0005024 3.81262e-06 2.15612e-05 2.718 ||| 0-1 ||| 7090 524574 +los ||| , as are the ||| 0.0120482 0.122289 1.90631e-06 7.92025e-06 2.718 ||| 0-3 ||| 83 524574 +los ||| , as citizens ||| 0.0357143 0.293572 1.90631e-06 1.84208e-05 2.718 ||| 0-2 ||| 28 524574 +los ||| , as early ||| 0.037037 0.0061936 1.90631e-06 4.13754e-08 2.718 ||| 0-2 ||| 27 524574 +los ||| , as established in the ||| 0.125 0.122289 1.90631e-06 1.67264e-09 2.718 ||| 0-4 ||| 8 524574 +los ||| , as is the case now ||| 0.142857 0.122289 1.90631e-06 3.60562e-11 2.718 ||| 0-3 ||| 7 524574 +los ||| , as is the case ||| 0.00321543 0.122289 1.90631e-06 1.75038e-08 2.718 ||| 0-3 ||| 311 524574 +los ||| , as is the ||| 0.00221239 0.122289 1.90631e-06 1.63603e-05 2.718 ||| 0-3 ||| 452 524574 +los ||| , as such , the ||| 0.125 0.122289 1.90631e-06 1.28793e-07 2.718 ||| 0-4 ||| 8 524574 +los ||| , as the ||| 0.00171772 0.122289 1.14379e-05 0.000522007 2.718 ||| 0-2 ||| 3493 524574 +los ||| , as they lie on the ||| 1 0.122289 1.90631e-06 4.30932e-13 2.718 ||| 0-5 ||| 1 524574 +los ||| , as well as the ||| 0.00094162 0.122289 3.81262e-06 8.44612e-09 2.718 ||| 0-4 ||| 2124 524574 +los ||| , as ||| 2.97872e-05 0.0009297 3.81262e-06 4.25501e-05 2.718 ||| 0-1 ||| 67143 524574 +los ||| , at both ||| 0.010101 0.0352574 1.90631e-06 5.98142e-07 2.718 ||| 0-2 ||| 99 524574 +los ||| , at the end ||| 0.00162075 0.122289 1.90631e-06 9.32013e-08 2.718 ||| 0-2 ||| 617 524574 +los ||| , at the same time , ||| 0.000960615 0.122289 3.81262e-06 3.37471e-11 2.718 ||| 0-2 ||| 2082 524574 +los ||| , at the same time ||| 0.000856898 0.122289 3.81262e-06 2.82983e-10 2.718 ||| 0-2 ||| 2334 524574 +los ||| , at the same ||| 0.000985707 0.122289 3.81262e-06 1.72372e-07 2.718 ||| 0-2 ||| 2029 524574 +los ||| , at the ||| 0.00110051 0.122289 1.14379e-05 0.000214207 2.718 ||| 0-2 ||| 5452 524574 +los ||| , back into the ||| 0.2 0.122289 1.90631e-06 3.53256e-08 2.718 ||| 0-3 ||| 5 524574 +los ||| , based on ||| 0.000641437 0.0006914 1.90631e-06 9.98225e-09 2.718 ||| 0-2 ||| 1559 524574 +los ||| , be at the ||| 0.142857 0.122289 1.90631e-06 3.88205e-06 2.718 ||| 0-3 ||| 7 524574 +los ||| , be heard at all ||| 1 0.0177928 1.90631e-06 1.92686e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| , be preventing ||| 1 0.0027894 1.90631e-06 1.68577e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| , be the ||| 0.0246914 0.122289 3.81262e-06 0.000927078 2.718 ||| 0-2 ||| 81 524574 +los ||| , because we entered the ||| 0.5 0.122289 1.90631e-06 6.10647e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| , besides , hold public debates ||| 1 0.122803 1.90631e-06 3.21171e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| , both at ||| 0.00346021 0.0352574 1.90631e-06 5.98142e-07 2.718 ||| 0-1 ||| 289 524574 +los ||| , both in respect of ||| 0.0909091 0.0019787 1.90631e-06 6.05023e-12 2.718 ||| 0-4 ||| 11 524574 +los ||| , both men ||| 0.0384615 0.21664 1.90631e-06 3.15559e-07 2.718 ||| 0-2 ||| 26 524574 +los ||| , both non-member states ||| 1 0.161074 1.90631e-06 3.46131e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| , both non-member ||| 1 0.161074 1.90631e-06 4.60281e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| , both ||| 0.0010981 0.0352574 1.14379e-05 0.000142843 2.718 ||| 0-1 ||| 5464 524574 +los ||| , breast ||| 0.125 0.0414013 1.90631e-06 4.51975e-06 2.718 ||| 0-1 ||| 8 524574 +los ||| , but cannot set aside its proposal ||| 0.5 0.0211371 1.90631e-06 3.22558e-22 2.718 ||| 0-5 ||| 2 524574 +los ||| , but cannot set aside its ||| 0.5 0.0211371 1.90631e-06 1.61521e-18 2.718 ||| 0-5 ||| 2 524574 +los ||| , but not necessarily at national level ||| 1 0.0129851 1.90631e-06 7.97302e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| , but not necessarily at national ||| 1 0.0129851 1.90631e-06 9.32081e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| , but previous ||| 0.25 0.0133636 1.90631e-06 7.92167e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| , but the ||| 0.000384468 0.122289 3.81262e-06 3.49594e-05 2.718 ||| 0-2 ||| 5202 524574 +los ||| , by our inability ||| 1 0.0248369 1.90631e-06 7.15476e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| , by our ||| 0.0333333 0.0248369 1.90631e-06 2.23586e-06 2.718 ||| 0-2 ||| 30 524574 +los ||| , by setting out targets for ||| 1 0.0015353 1.90631e-06 4.78143e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| , by the ||| 0.00596252 0.122289 1.33442e-05 0.000268569 2.718 ||| 0-2 ||| 1174 524574 +los ||| , by those ||| 0.1 0.284705 1.90631e-06 1.04544e-05 2.718 ||| 0-2 ||| 10 524574 +los ||| , by ||| 0.000119574 0.0062464 1.90631e-06 0.000193169 2.718 ||| 0-1 ||| 8363 524574 +los ||| , can the Commission ||| 0.0344828 0.122289 1.90631e-06 8.88711e-08 2.718 ||| 0-2 ||| 29 524574 +los ||| , can the ||| 0.0126582 0.122289 1.90631e-06 0.00015215 2.718 ||| 0-2 ||| 79 524574 +los ||| , care ||| 0.0178571 0.0149101 1.90631e-06 1.18301e-05 2.718 ||| 0-1 ||| 56 524574 +los ||| , certain capital resources ||| 1 0.21958 1.90631e-06 4.26733e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| , civil ||| 0.0169492 0.043844 1.90631e-06 6.28472e-05 2.718 ||| 0-1 ||| 59 524574 +los ||| , combined ||| 0.00438596 0.0028785 1.90631e-06 5.84348e-07 2.718 ||| 0-1 ||| 228 524574 +los ||| , commercial ||| 0.00917431 0.004526 1.90631e-06 2.08696e-06 2.718 ||| 0-1 ||| 109 524574 +los ||| , compromises ||| 0.0714286 0.0637219 1.90631e-06 1.02082e-05 2.718 ||| 0-1 ||| 14 524574 +los ||| , concerning the ||| 0.00333333 0.122289 1.90631e-06 3.14604e-06 2.718 ||| 0-2 ||| 300 524574 +los ||| , conflicts ||| 0.025 0.214045 1.90631e-06 9.57734e-05 2.718 ||| 0-1 ||| 40 524574 +los ||| , consider the ||| 0.05 0.122289 1.90631e-06 8.13877e-06 2.718 ||| 0-2 ||| 20 524574 +los ||| , consumers ||| 0.00215983 0.420328 1.90631e-06 0.000990649 2.718 ||| 0-1 ||| 463 524574 +los ||| , contracts could result ||| 0.0666667 0.245913 1.90631e-06 3.19949e-11 2.718 ||| 0-1 ||| 15 524574 +los ||| , contracts could ||| 0.0666667 0.245913 1.90631e-06 6.07691e-08 2.718 ||| 0-1 ||| 15 524574 +los ||| , contracts ||| 0.0277778 0.245913 1.90631e-06 8.54579e-05 2.718 ||| 0-1 ||| 36 524574 +los ||| , current ||| 0.0238095 0.0024666 1.90631e-06 5.1041e-06 2.718 ||| 0-1 ||| 42 524574 +los ||| , deployable ||| 0.25 0.1 1.90631e-06 1.19255e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| , deregulating the labour market and making ||| 1 0.122289 1.90631e-06 9.62658e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| , deregulating the labour market and ||| 1 0.122289 1.90631e-06 2.50236e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| , deregulating the labour market ||| 0.5 0.122289 1.90631e-06 1.99775e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| , deregulating the labour ||| 1 0.122289 1.90631e-06 8.83959e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| , deregulating the ||| 0.5 0.122289 1.90631e-06 2.0462e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| , developed ||| 0.03125 0.005811 3.81262e-06 3.94733e-06 2.718 ||| 0-1 ||| 64 524574 +los ||| , did we have the ||| 1 0.122289 1.90631e-06 3.15459e-09 2.718 ||| 0-4 ||| 1 524574 +los ||| , discussions ||| 0.015873 0.0717203 1.90631e-06 6.51608e-05 2.718 ||| 0-1 ||| 63 524574 +los ||| , disregarding the three ||| 1 0.122289 1.90631e-06 5.82861e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| , disregarding the ||| 0.0588235 0.122289 1.90631e-06 9.20791e-08 2.718 ||| 0-2 ||| 17 524574 +los ||| , drawing our attention to the ||| 0.5 0.122289 1.90631e-06 8.14277e-14 2.718 ||| 0-5 ||| 2 524574 +los ||| , economic ||| 0.000742942 0.0006735 1.90631e-06 3.58957e-06 2.718 ||| 0-1 ||| 1346 524574 +los ||| , efforts on ||| 0.5 0.101547 1.90631e-06 1.35457e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| , efforts ||| 0.0273973 0.101547 3.81262e-06 0.000202447 2.718 ||| 0-1 ||| 73 524574 +los ||| , either , the ||| 0.3 0.122289 5.71893e-06 5.2818e-06 2.718 ||| 0-3 ||| 10 524574 +los ||| , either in the ||| 0.0204082 0.122289 1.90631e-06 9.48006e-07 2.718 ||| 0-3 ||| 49 524574 +los ||| , enabling the models already ||| 1 0.133333 1.90631e-06 2.02839e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| , enabling the models ||| 1 0.133333 1.90631e-06 4.38002e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| , established the ||| 0.142857 0.122289 1.90631e-06 7.65791e-06 2.718 ||| 0-2 ||| 7 524574 +los ||| , even the ||| 0.004329 0.122289 1.90631e-06 3.11279e-05 2.718 ||| 0-2 ||| 231 524574 +los ||| , every ||| 0.00226244 0.144232 3.81262e-06 0.000389235 2.718 ||| 0-1 ||| 884 524574 +los ||| , expressing our ||| 0.111111 0.0248369 1.90631e-06 1.12004e-08 2.718 ||| 0-2 ||| 9 524574 +los ||| , extending beyond all ||| 0.5 0.0177928 1.90631e-06 4.92254e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| , fine ||| 0.030303 0.0063694 1.90631e-06 1.74112e-06 2.718 ||| 0-1 ||| 33 524574 +los ||| , food ||| 0.00552486 0.123536 1.90631e-06 0.000262849 2.718 ||| 0-1 ||| 181 524574 +los ||| , food-safety standards ||| 0.0833333 0.0495175 1.90631e-06 3.97452e-11 2.718 ||| 0-2 ||| 12 524574 +los ||| , for a number ||| 0.025 0.0015353 1.90631e-06 2.30639e-09 2.718 ||| 0-1 ||| 40 524574 +los ||| , for a ||| 0.0013245 0.0015353 1.90631e-06 4.66125e-06 2.718 ||| 0-1 ||| 755 524574 +los ||| , for example , the ||| 0.0021097 0.122289 3.81262e-06 1.36486e-08 2.718 ||| 0-4 ||| 948 524574 +los ||| , for example , ||| 0.000106667 0.0015353 1.90631e-06 3.65059e-09 2.718 ||| 0-1 ||| 9375 524574 +los ||| , for example ||| 7.00624e-05 0.0015353 1.90631e-06 3.06117e-08 2.718 ||| 0-1 ||| 14273 524574 +los ||| , for the ||| 0.0008 0.122289 7.62523e-06 0.000393162 2.718 ||| 0-2 ||| 5000 524574 +los ||| , for ||| 0.000129665 0.0015353 9.53154e-06 0.000105159 2.718 ||| 0-1 ||| 38561 524574 +los ||| , from the ||| 0.000694927 0.122289 1.90631e-06 8.23801e-05 2.718 ||| 0-2 ||| 1439 524574 +los ||| , given the ||| 0.00117855 0.122289 3.81262e-06 3.51077e-05 2.718 ||| 0-2 ||| 1697 524574 +los ||| , going through the ||| 0.333333 0.122289 1.90631e-06 2.01512e-08 2.718 ||| 0-3 ||| 3 524574 +los ||| , had left by the ||| 1 0.122289 1.90631e-06 5.09204e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| , have the ||| 0.010101 0.122289 3.81262e-06 0.000611804 2.718 ||| 0-2 ||| 198 524574 +los ||| , helping the ||| 0.0714286 0.122289 1.90631e-06 1.93366e-06 2.718 ||| 0-2 ||| 14 524574 +los ||| , his expert ||| 1 0.07 1.90631e-06 2.9278e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| , hold public debates ||| 1 0.122803 1.90631e-06 1.87024e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| , how they ||| 0.0526316 0.0072404 1.90631e-06 3.49877e-08 2.718 ||| 0-2 ||| 19 524574 +los ||| , however , move away from the ||| 1 0.122289 1.90631e-06 5.29287e-16 2.718 ||| 0-6 ||| 1 524574 +los ||| , however , the ||| 0.00512821 0.122289 3.81262e-06 6.7575e-06 2.718 ||| 0-3 ||| 390 524574 +los ||| , however , those ||| 0.2 0.284705 1.90631e-06 2.63043e-07 2.718 ||| 0-3 ||| 5 524574 +los ||| , human ||| 0.025 0.319795 5.71893e-06 0.00232612 2.718 ||| 0-1 ||| 120 524574 +los ||| , i.e. , the ||| 0.0909091 0.122289 1.90631e-06 3.58098e-07 2.718 ||| 0-3 ||| 11 524574 +los ||| , i.e. the ||| 0.0127119 0.122289 5.71893e-06 3.0028e-06 2.718 ||| 0-2 ||| 236 524574 +los ||| , if the ||| 0.000765111 0.122289 1.90631e-06 4.27452e-05 2.718 ||| 0-2 ||| 1307 524574 +los ||| , in Cairo , in the presence ||| 1 0.122289 1.90631e-06 7.53239e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| , in Cairo , in the ||| 1 0.122289 1.90631e-06 1.95647e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| , in fact , in the ||| 0.166667 0.122289 1.90631e-06 8.18725e-09 2.718 ||| 0-5 ||| 6 524574 +los ||| , in fact , the ||| 0.0180723 0.122289 5.71893e-06 3.82501e-07 2.718 ||| 0-4 ||| 166 524574 +los ||| , in fact , those ||| 0.5 0.284705 1.90631e-06 1.48893e-08 2.718 ||| 0-4 ||| 2 524574 +los ||| , in future ||| 0.00171527 0.0001268 1.90631e-06 4.37419e-09 2.718 ||| 0-1 ||| 583 524574 +los ||| , in its arrangements ||| 1 0.0211371 1.90631e-06 2.39256e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| , in its ||| 0.00194553 0.0211371 3.81262e-06 5.45003e-06 2.718 ||| 0-2 ||| 1028 524574 +los ||| , in more concrete terms , the ||| 1 0.122289 1.90631e-06 1.02446e-14 2.718 ||| 0-6 ||| 1 524574 +los ||| , in my opinion , ||| 0.000733676 0.0086409 1.90631e-06 5.14919e-11 2.718 ||| 0-2 ||| 1363 524574 +los ||| , in my opinion ||| 0.000605693 0.0086409 1.90631e-06 4.31781e-10 2.718 ||| 0-2 ||| 1651 524574 +los ||| , in my ||| 0.000261849 0.0086409 1.90631e-06 1.7595e-06 2.718 ||| 0-2 ||| 3819 524574 +los ||| , in our ||| 0.000884173 0.0248369 1.90631e-06 9.11554e-06 2.718 ||| 0-2 ||| 1131 524574 +los ||| , in particular , the ||| 0.00125471 0.122289 1.90631e-06 8.03575e-08 2.718 ||| 0-4 ||| 797 524574 +los ||| , in terms of the enormous issue ||| 1 0.122289 1.90631e-06 1.42404e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| , in terms of the enormous ||| 1 0.122289 1.90631e-06 1.88166e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| , in terms of the ||| 0.00625 0.122289 1.90631e-06 6.53355e-08 2.718 ||| 0-4 ||| 160 524574 +los ||| , in that case , the ||| 0.2 0.122289 1.90631e-06 2.35006e-09 2.718 ||| 0-5 ||| 5 524574 +los ||| , in that order ||| 0.25 5.13e-05 1.90631e-06 5.95464e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| , in that ||| 0.0011325 5.13e-05 1.90631e-06 1.11803e-07 2.718 ||| 0-2 ||| 883 524574 +los ||| , in the aim ||| 0.0322581 0.122289 1.90631e-06 1.50555e-07 2.718 ||| 0-2 ||| 31 524574 +los ||| , in the case of ||| 0.00190114 0.122289 1.90631e-06 6.36866e-08 2.718 ||| 0-2 ||| 526 524574 +los ||| , in the case ||| 0.00166945 0.122289 1.90631e-06 1.17149e-06 2.718 ||| 0-2 ||| 599 524574 +los ||| , in the future too , ||| 0.0384615 0.122289 1.90631e-06 4.72015e-11 2.718 ||| 0-2 ||| 26 524574 +los ||| , in the future too ||| 0.04 0.122289 1.90631e-06 3.95804e-10 2.718 ||| 0-2 ||| 25 524574 +los ||| , in the future ||| 0.00271003 0.122289 1.90631e-06 2.90818e-07 2.718 ||| 0-2 ||| 369 524574 +los ||| , in the meantime , the ||| 0.0833333 0.122289 1.90631e-06 1.96402e-10 2.718 ||| 0-5 ||| 12 524574 +los ||| , in the presence of Commissioner Bangemann ||| 1 0.122289 1.90631e-06 2.22345e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| , in the presence of Commissioner ||| 0.333333 0.122289 1.90631e-06 2.02132e-13 2.718 ||| 0-2 ||| 3 524574 +los ||| , in the presence of ||| 0.0344828 0.122289 1.90631e-06 2.29174e-09 2.718 ||| 0-2 ||| 29 524574 +los ||| , in the presence ||| 0.0192308 0.122289 1.90631e-06 4.21555e-08 2.718 ||| 0-2 ||| 52 524574 +los ||| , in the ||| 0.00111932 0.122289 2.85946e-05 0.00109495 2.718 ||| 0-2 ||| 13401 524574 +los ||| , in their statements , ||| 1 0.0236713 1.90631e-06 2.22846e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| , in their statements ||| 0.5 0.0236713 1.90631e-06 1.86866e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| , in their ||| 0.00295858 0.0236713 1.90631e-06 5.83955e-06 2.718 ||| 0-2 ||| 338 524574 +los ||| , in wider consumer uses involving daily ||| 1 0.184092 1.90631e-06 3.01778e-24 2.718 ||| 0-3 ||| 1 524574 +los ||| , in wider consumer uses involving ||| 1 0.184092 1.90631e-06 1.32942e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| , in wider consumer uses ||| 1 0.184092 1.90631e-06 4.24734e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| , in wider consumer ||| 1 0.184092 1.90631e-06 2.30834e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| , in ||| 2.45212e-05 0.0001268 3.81262e-06 1.64691e-05 2.718 ||| 0-1 ||| 81562 524574 +los ||| , incidentally , of the ||| 0.25 0.122289 1.90631e-06 6.93141e-09 2.718 ||| 0-4 ||| 4 524574 +los ||| , including fish auctions ||| 0.25 0.0906807 1.90631e-06 3.05901e-15 2.718 ||| 0-2 ||| 4 524574 +los ||| , including fish ||| 0.2 0.0906807 1.90631e-06 4.37002e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| , including those ||| 0.00126263 0.284705 1.90631e-06 2.07888e-07 2.718 ||| 0-2 ||| 792 524574 +los ||| , including ||| 6.05327e-05 0.0014375 1.90631e-06 3.1364e-06 2.718 ||| 0-1 ||| 16520 524574 +los ||| , increasing the competences of ||| 0.5 0.122289 1.90631e-06 8.35522e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| , increasing the competences ||| 0.333333 0.122289 1.90631e-06 1.5369e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| , increasing the ||| 0.00892857 0.122289 1.90631e-06 2.64983e-06 2.718 ||| 0-2 ||| 112 524574 +los ||| , indeed , the ||| 0.0238095 0.122289 5.71893e-06 4.62355e-06 2.718 ||| 0-3 ||| 126 524574 +los ||| , individual buildings ||| 0.5 0.283826 1.90631e-06 1.05577e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| , involving the ||| 0.00806452 0.122289 1.90631e-06 1.60115e-06 2.718 ||| 0-2 ||| 124 524574 +los ||| , irradiated ||| 0.5 0.039604 1.90631e-06 4.65093e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| , is less use of ||| 1 0.0019787 1.90631e-06 1.023e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| , is the ||| 0.00188088 0.122289 5.71893e-06 0.00160326 2.718 ||| 0-2 ||| 1595 524574 +los ||| , issues ||| 0.00806452 0.0401532 1.90631e-06 0.000133685 2.718 ||| 0-1 ||| 124 524574 +los ||| , it is the answers to the ||| 1 0.122289 1.90631e-06 3.3595e-12 2.718 ||| 0-6 ||| 1 524574 +los ||| , it is the other ||| 0.333333 0.122289 1.90631e-06 3.6936e-08 2.718 ||| 0-3 ||| 3 524574 +los ||| , it is the ||| 0.00224215 0.122289 3.81262e-06 2.8511e-05 2.718 ||| 0-3 ||| 892 524574 +los ||| , it is up to the ||| 0.0121951 0.122289 1.90631e-06 8.64029e-09 2.718 ||| 0-5 ||| 82 524574 +los ||| , it outlines the ||| 0.5 0.122289 1.90631e-06 2.27425e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| , it was those ||| 1 0.284705 1.90631e-06 1.10943e-07 2.718 ||| 0-3 ||| 1 524574 +los ||| , it would give the ||| 0.333333 0.122289 1.90631e-06 3.23529e-09 2.718 ||| 0-4 ||| 3 524574 +los ||| , it ||| 6.24025e-05 0.0002879 1.90631e-06 1.68149e-05 2.718 ||| 0-1 ||| 16025 524574 +los ||| , its legitimacy ||| 0.111111 0.0211371 1.90631e-06 1.93512e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| , its technical ||| 1 0.0012609 1.90631e-06 1.81795e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| , its ||| 0.00239578 0.0211371 9.53154e-06 0.000254621 2.718 ||| 0-1 ||| 2087 524574 +los ||| , journalists ||| 0.00694444 0.259054 1.90631e-06 5.97108e-05 2.718 ||| 0-1 ||| 144 524574 +los ||| , large ||| 0.00719424 0.0004525 1.90631e-06 6.91677e-07 2.718 ||| 0-1 ||| 139 524574 +los ||| , last but not least , the ||| 0.125 0.122289 1.90631e-06 7.62856e-16 2.718 ||| 0-6 ||| 8 524574 +los ||| , lawyers , journalists ||| 0.142857 0.259054 1.90631e-06 2.06503e-11 2.718 ||| 0-3 ||| 7 524574 +los ||| , let the ||| 0.030303 0.122289 1.90631e-06 2.08917e-05 2.718 ||| 0-2 ||| 33 524574 +los ||| , licence fees ||| 0.5 0.0569211 1.90631e-06 4.79786e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| , like fish ||| 1 0.0906807 1.90631e-06 7.43363e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| , like many others ||| 0.0222222 0.0378884 1.90631e-06 2.89449e-11 2.718 ||| 0-2 0-3 ||| 45 524574 +los ||| , like my colleagues ||| 0.04 0.0749603 1.90631e-06 1.06208e-10 2.718 ||| 0-3 ||| 25 524574 +los ||| , looking at the ||| 0.0151515 0.122289 1.90631e-06 2.26631e-08 2.718 ||| 0-3 ||| 66 524574 +los ||| , make the ||| 0.03125 0.122289 1.90631e-06 8.88973e-05 2.718 ||| 0-2 ||| 32 524574 +los ||| , male or ||| 0.5 0.0575397 1.90631e-06 3.8449e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| , male ||| 0.181818 0.0575397 3.81262e-06 3.36298e-06 2.718 ||| 0-1 ||| 11 524574 +los ||| , marriages and deaths ||| 0.25 0.276243 1.90631e-06 1.24867e-12 2.718 ||| 0-1 ||| 4 524574 +los ||| , marriages and ||| 0.2 0.276243 1.90631e-06 1.45195e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| , marriages ||| 0.166667 0.276243 1.90631e-06 1.15916e-05 2.718 ||| 0-1 ||| 6 524574 +los ||| , meaning the ||| 0.0416667 0.122289 1.90631e-06 1.56534e-06 2.718 ||| 0-2 ||| 24 524574 +los ||| , means that the ||| 0.0454545 0.122289 1.90631e-06 5.45305e-07 2.718 ||| 0-3 ||| 22 524574 +los ||| , meets the ||| 0.0714286 0.122289 1.90631e-06 4.60395e-07 2.718 ||| 0-2 ||| 14 524574 +los ||| , methods ||| 0.0212766 0.156921 1.90631e-06 9.24105e-05 2.718 ||| 0-1 ||| 47 524574 +los ||| , mobile ||| 0.0625 0.0620985 1.90631e-06 1.00889e-05 2.718 ||| 0-1 ||| 16 524574 +los ||| , moderate ||| 0.0769231 0.0048232 1.90631e-06 3.45839e-07 2.718 ||| 0-1 ||| 13 524574 +los ||| , moreover , the ||| 0.0212766 0.122289 1.90631e-06 6.60682e-07 2.718 ||| 0-3 ||| 47 524574 +los ||| , most definitely , ||| 1 0.0021653 1.90631e-06 6.73328e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| , most definitely ||| 0.5 0.0021653 1.90631e-06 5.64614e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| , most ||| 0.000654022 0.0021653 1.90631e-06 1.08999e-05 2.718 ||| 0-1 ||| 1529 524574 +los ||| , move away from the ||| 1 0.122289 1.90631e-06 4.00676e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| , namely the ||| 0.00121803 0.122289 3.81262e-06 8.17458e-06 2.718 ||| 0-2 ||| 1642 524574 +los ||| , nation ||| 0.2 0.0124283 1.90631e-06 3.01714e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| , national governments ||| 0.0285714 0.273393 1.90631e-06 5.45466e-08 2.718 ||| 0-2 ||| 35 524574 +los ||| , not least , the ||| 0.03125 0.122289 1.90631e-06 5.11111e-09 2.718 ||| 0-4 ||| 32 524574 +los ||| , not to mention the ||| 0.0037594 0.122289 1.90631e-06 1.50844e-09 2.718 ||| 0-4 ||| 266 524574 +los ||| , now is the time ||| 0.025 0.122289 1.90631e-06 5.42179e-09 2.718 ||| 0-3 ||| 40 524574 +los ||| , now is the ||| 0.0238095 0.122289 1.90631e-06 3.30255e-06 2.718 ||| 0-3 ||| 42 524574 +los ||| , of all groups , ||| 1 0.143803 1.90631e-06 7.24987e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| , of all groups ||| 1 0.143803 1.90631e-06 6.07932e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| , of course , of the ||| 0.027027 0.122289 1.90631e-06 2.2748e-08 2.718 ||| 0-5 ||| 37 524574 +los ||| , of course , we do need ||| 1 0.0019787 1.90631e-06 2.12222e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| , of course , we do ||| 0.25 0.0019787 1.90631e-06 2.31456e-12 2.718 ||| 0-1 ||| 4 524574 +los ||| , of course , we ||| 0.0149254 0.0019787 1.90631e-06 6.73758e-10 2.718 ||| 0-1 ||| 67 524574 +los ||| , of course , with ||| 0.0108696 0.0019787 1.90631e-06 3.79513e-10 2.718 ||| 0-1 ||| 92 524574 +los ||| , of course , ||| 0.000195217 0.0019787 3.81262e-06 5.93499e-08 2.718 ||| 0-1 ||| 10245 524574 +los ||| , of course ||| 0.000183722 0.0019787 3.81262e-06 4.97674e-07 2.718 ||| 0-1 ||| 10886 524574 +los ||| , of the ||| 0.0057923 0.122289 2.66883e-05 0.00278099 2.718 ||| 0-2 ||| 2417 524574 +los ||| , of workers ||| 0.0625 0.364501 1.90631e-06 4.73504e-05 2.718 ||| 0-2 ||| 16 524574 +los ||| , of ||| 0.000169377 0.0019787 3.81262e-06 0.000394447 2.718 ||| 0-1 ||| 11808 524574 +los ||| , often the ||| 0.0909091 0.122289 1.90631e-06 6.72177e-06 2.718 ||| 0-2 ||| 11 524574 +los ||| , on the basis ||| 0.000993049 0.122289 1.90631e-06 2.03245e-07 2.718 ||| 0-2 ||| 1007 524574 +los ||| , on the one hand , the ||| 0.00970874 0.122289 1.90631e-06 4.14234e-12 2.718 ||| 0-6 ||| 103 524574 +los ||| , on the one ||| 0.000877193 0.122289 1.90631e-06 1.42662e-06 2.718 ||| 0-2 ||| 1140 524574 +los ||| , on the other , the ||| 0.0138889 0.122289 1.90631e-06 3.24641e-09 2.718 ||| 0-5 ||| 72 524574 +los ||| , on the other , ||| 0.00175439 0.122289 1.90631e-06 5.28801e-08 2.718 ||| 0-2 ||| 570 524574 +los ||| , on the other ||| 0.000688705 0.122289 1.90631e-06 4.43422e-07 2.718 ||| 0-2 ||| 1452 524574 +los ||| , on the ||| 0.000659506 0.122289 1.33442e-05 0.000342278 2.718 ||| 0-2 ||| 10614 524574 +los ||| , only the ||| 0.00854701 0.122289 1.90631e-06 5.69407e-05 2.718 ||| 0-2 ||| 117 524574 +los ||| , only those ||| 0.0909091 0.284705 1.90631e-06 2.21648e-06 2.718 ||| 0-2 ||| 11 524574 +los ||| , or reweighting , ||| 1 0.181818 1.90631e-06 3.08933e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| , or reweighting ||| 1 0.181818 1.90631e-06 2.59053e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| , our ||| 0.000565824 0.0248369 5.71893e-06 0.00042587 2.718 ||| 0-1 ||| 5302 524574 +los ||| , over and above the ||| 0.0116279 0.122289 1.90631e-06 3.99852e-11 2.718 ||| 0-4 ||| 86 524574 +los ||| , particularly the by ||| 1 0.0642678 1.90631e-06 1.47907e-08 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| , particularly those managed directly by the ||| 1 0.284705 1.90631e-06 2.42941e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| , particularly those managed directly by ||| 1 0.284705 1.90631e-06 3.95722e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| , particularly those managed directly ||| 1 0.284705 1.90631e-06 7.53742e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| , particularly those managed ||| 0.5 0.284705 1.90631e-06 1.99403e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| , particularly those ||| 0.00226757 0.284705 1.90631e-06 3.55441e-07 2.718 ||| 0-2 ||| 441 524574 +los ||| , people are living longer , ||| 1 0.0894672 1.90631e-06 2.67009e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| , people are living longer ||| 0.333333 0.0894672 1.90631e-06 2.23898e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| , people are living ||| 0.25 0.0894672 1.90631e-06 1.19412e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| , people are ||| 0.00877193 0.0894672 1.90631e-06 1.42497e-05 2.718 ||| 0-1 ||| 114 524574 +los ||| , people in ||| 0.0416667 0.0894672 3.81262e-06 2.01024e-05 2.718 ||| 0-1 ||| 48 524574 +los ||| , people want to receive their information ||| 1 0.0894672 1.90631e-06 7.51405e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| , people want to receive their ||| 1 0.0894672 1.90631e-06 4.54021e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| , people want to receive ||| 1 0.0894672 1.90631e-06 3.91702e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| , people want to ||| 0.5 0.0894672 1.90631e-06 3.90141e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| , people want ||| 0.142857 0.0894672 1.90631e-06 4.3906e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| , people ||| 0.0044964 0.0894672 9.53154e-06 0.000939167 2.718 ||| 0-1 ||| 1112 524574 +los ||| , points ||| 0.0454545 0.0213308 3.81262e-06 3.59434e-05 2.718 ||| 0-1 ||| 44 524574 +los ||| , poses the ||| 0.5 0.122289 1.90631e-06 3.88778e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| , precisely , with ||| 1 0.0007437 1.90631e-06 3.24482e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| , presented by ||| 0.0133333 0.0062464 1.90631e-06 1.52217e-08 2.718 ||| 0-2 ||| 75 524574 +los ||| , price ||| 0.0434783 0.0802296 1.90631e-06 6.64368e-05 2.718 ||| 0-1 ||| 23 524574 +los ||| , problems still persist ||| 0.5 0.106249 1.90631e-06 1.68019e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| , problems still ||| 0.5 0.106249 1.90631e-06 2.75441e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| , problems ||| 0.0192308 0.106249 5.71893e-06 0.000365695 2.718 ||| 0-1 ||| 156 524574 +los ||| , processes ||| 0.0416667 0.199138 1.90631e-06 8.03538e-05 2.718 ||| 0-1 ||| 24 524574 +los ||| , produce the ||| 0.2 0.122289 1.90631e-06 4.52722e-06 2.718 ||| 0-2 ||| 5 524574 +los ||| , products ||| 0.010989 0.245259 1.90631e-06 0.000596774 2.718 ||| 0-1 ||| 91 524574 +los ||| , promptly cut the ||| 0.333333 0.122289 1.90631e-06 2.24305e-11 2.718 ||| 0-3 ||| 3 524574 +los ||| , propaganda by the European ||| 1 0.122289 1.90631e-06 2.87382e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| , propaganda by the ||| 1 0.122289 1.90631e-06 8.59421e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| , protected ||| 0.0285714 0.0032727 1.90631e-06 1.04944e-06 2.718 ||| 0-1 ||| 35 524574 +los ||| , public ||| 0.00970874 0.0160961 3.81262e-06 7.03841e-05 2.718 ||| 0-1 ||| 206 524574 +los ||| , reaching those ||| 0.5 0.284705 1.90631e-06 5.37642e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| , reducing the supply and demand of ||| 1 0.122289 1.90631e-06 2.55778e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| , reducing the supply and demand ||| 1 0.122289 1.90631e-06 4.70491e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| , reducing the supply and ||| 1 0.122289 1.90631e-06 8.77781e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| , reducing the supply ||| 1 0.122289 1.90631e-06 7.00773e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| , reducing the ||| 0.00990099 0.122289 1.90631e-06 1.36072e-06 2.718 ||| 0-2 ||| 101 524574 +los ||| , respectively , the ||| 0.333333 0.122289 1.90631e-06 8.35766e-08 2.718 ||| 0-3 ||| 3 524574 +los ||| , robs those very people ||| 1 0.0894672 1.90631e-06 2.60286e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| , salaries ||| 0.0416667 0.277512 1.90631e-06 3.36298e-05 2.718 ||| 0-1 ||| 24 524574 +los ||| , see the ||| 0.04 0.122289 1.90631e-06 3.60439e-05 2.718 ||| 0-2 ||| 25 524574 +los ||| , severely damage ||| 0.25 0.0626363 1.90631e-06 2.12483e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| , since the ||| 0.000611621 0.122289 1.90631e-06 6.94174e-06 2.718 ||| 0-2 ||| 1635 524574 +los ||| , so can those of ||| 1 0.284705 1.90631e-06 7.30793e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| , so can those ||| 1 0.284705 1.90631e-06 1.34426e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| , so to speak , the ||| 0.142857 0.122289 1.90631e-06 1.66467e-10 2.718 ||| 0-5 ||| 7 524574 +los ||| , stands by the ||| 1 0.122289 1.90631e-06 1.47982e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| , stressing the urgent need ||| 1 0.122289 1.90631e-06 5.79734e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| , stressing the urgent ||| 1 0.122289 1.90631e-06 6.32276e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| , stressing the ||| 0.0322581 0.122289 1.90631e-06 2.0462e-07 2.718 ||| 0-2 ||| 31 524574 +los ||| , subscribers have ||| 0.5 0.303797 1.90631e-06 3.32319e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| , subscribers ||| 0.5 0.303797 1.90631e-06 2.77863e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| , such authors ||| 1 0.15724 1.90631e-06 3.33327e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| , taken together , are the ||| 0.333333 0.122289 1.90631e-06 5.06721e-11 2.718 ||| 0-5 ||| 3 524574 +los ||| , that are ||| 0.00884956 0.0005024 1.90631e-06 3.62695e-07 2.718 ||| 0-2 ||| 113 524574 +los ||| , that people ||| 0.027027 0.0894672 1.90631e-06 1.57983e-05 2.718 ||| 0-2 ||| 37 524574 +los ||| , that the ||| 0.00147095 0.122289 1.14379e-05 0.00086051 2.718 ||| 0-2 ||| 4079 524574 +los ||| , the 49 least developed ||| 1 0.122289 1.90631e-06 1.20739e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| , the 49 least ||| 1 0.122289 1.90631e-06 1.75748e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| , the 49 ||| 1 0.122289 1.90631e-06 7.16171e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| , the Commission ||| 0.000137637 0.122289 3.81262e-06 2.98797e-05 2.718 ||| 0-1 ||| 14531 524574 +los ||| , the Court makes mention of the ||| 1 0.122289 1.90631e-06 1.31952e-16 2.718 ||| 0-6 ||| 1 524574 +los ||| , the European ||| 0.00372439 0.122289 3.81262e-06 0.000171057 2.718 ||| 0-1 ||| 537 524574 +los ||| , the Group of the ||| 0.00564972 0.122289 3.81262e-06 5.55385e-08 2.718 ||| 0-4 ||| 354 524574 +los ||| , the MGPs , ||| 0.5 0.122289 1.90631e-06 2.44019e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| , the MGPs ||| 0.5 0.122289 1.90631e-06 2.0462e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| , the Member States would have ||| 0.333333 0.122289 1.90631e-06 8.82907e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| , the Member States would ||| 0.142857 0.122289 1.90631e-06 7.38229e-11 2.718 ||| 0-1 ||| 7 524574 +los ||| , the Member States ||| 0.000845309 0.122289 1.90631e-06 1.25791e-08 2.718 ||| 0-1 ||| 1183 524574 +los ||| , the Member ||| 0.0120482 0.122289 1.90631e-06 2.63602e-05 2.718 ||| 0-1 ||| 83 524574 +los ||| , the Social ||| 0.25 0.122289 1.90631e-06 1.10495e-06 2.718 ||| 0-1 ||| 4 524574 +los ||| , the Structural ||| 0.25 0.0996062 1.90631e-06 2.45186e-05 2.718 ||| 0-1 0-2 ||| 4 524574 +los ||| , the attacks ||| 0.0333333 0.122289 1.90631e-06 6.65016e-07 2.718 ||| 0-1 ||| 30 524574 +los ||| , the conditions ||| 0.00884956 0.122289 1.90631e-06 6.11303e-06 2.718 ||| 0-1 ||| 113 524574 +los ||| , the consequence will be ||| 1 0.122289 1.90631e-06 2.83118e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| , the consequence will ||| 1 0.122289 1.90631e-06 1.56221e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| , the consequence ||| 0.0232558 0.122289 1.90631e-06 1.80577e-06 2.718 ||| 0-1 ||| 43 524574 +los ||| , the consideration ||| 0.166667 0.122289 1.90631e-06 5.52475e-06 2.718 ||| 0-1 ||| 6 524574 +los ||| , the constituent ||| 0.333333 0.122289 1.90631e-06 3.47854e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| , the cooperation between ||| 0.0909091 0.122289 1.90631e-06 1.24286e-09 2.718 ||| 0-1 ||| 11 524574 +los ||| , the cooperation ||| 0.0208333 0.122289 1.90631e-06 4.71138e-06 2.718 ||| 0-1 ||| 48 524574 +los ||| , the end of ||| 0.0166667 0.122289 1.90631e-06 1.21001e-06 2.718 ||| 0-1 ||| 60 524574 +los ||| , the end ||| 0.0123457 0.122289 1.90631e-06 2.22576e-05 2.718 ||| 0-1 ||| 81 524574 +los ||| , the environment , safety and the ||| 1 0.122289 1.90631e-06 1.32717e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| , the environment , safety and ||| 1 0.122289 1.90631e-06 2.1618e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| , the environment , safety ||| 0.333333 0.122289 1.90631e-06 1.72586e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| , the environment , ||| 0.00369004 0.122289 1.90631e-06 3.40407e-07 2.718 ||| 0-1 ||| 271 524574 +los ||| , the environment ||| 0.00176678 0.122289 1.90631e-06 2.85445e-06 2.718 ||| 0-1 ||| 566 524574 +los ||| , the existence ||| 0.0128205 0.122289 1.90631e-06 3.53481e-06 2.718 ||| 0-1 ||| 78 524574 +los ||| , the fact ||| 0.000805153 0.122289 1.90631e-06 0.000149849 2.718 ||| 0-1 ||| 1242 524574 +los ||| , the first ||| 0.00110988 0.122289 1.90631e-06 2.75419e-05 2.718 ||| 0-1 ||| 901 524574 +los ||| , the funds are still ||| 0.5 0.122289 1.90631e-06 4.46053e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| , the funds are ||| 0.111111 0.122289 1.90631e-06 5.9221e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| , the funds ||| 0.0135135 0.122289 1.90631e-06 3.90313e-06 2.718 ||| 0-1 ||| 74 524574 +los ||| , the initial ||| 0.0833333 0.122289 1.90631e-06 1.34538e-06 2.718 ||| 0-1 ||| 12 524574 +los ||| , the intention is ||| 0.0294118 0.122289 1.90631e-06 9.05839e-08 2.718 ||| 0-1 ||| 34 524574 +los ||| , the intention ||| 0.0106383 0.122289 1.90631e-06 2.89026e-06 2.718 ||| 0-1 ||| 94 524574 +los ||| , the issue of ||| 0.00208768 0.122289 1.90631e-06 2.10466e-06 2.718 ||| 0-1 ||| 479 524574 +los ||| , the issue ||| 0.00140056 0.122289 1.90631e-06 3.87141e-05 2.718 ||| 0-1 ||| 714 524574 +los ||| , the latter tend to ||| 1 0.122289 1.90631e-06 1.0047e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| , the latter tend ||| 1 0.122289 1.90631e-06 1.13068e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| , the latter ||| 0.00671141 0.122289 1.90631e-06 4.916e-06 2.718 ||| 0-1 ||| 149 524574 +los ||| , the leader of the Liberal Group ||| 0.5 0.122289 1.90631e-06 4.29591e-18 2.718 ||| 0-1 ||| 2 524574 +los ||| , the leader of the Liberal ||| 1 0.122289 1.90631e-06 1.3206e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| , the leader of the ||| 0.02 0.122289 1.90631e-06 2.03169e-09 2.718 ||| 0-1 ||| 50 524574 +los ||| , the leader of ||| 0.0212766 0.122289 1.90631e-06 3.30938e-08 2.718 ||| 0-1 ||| 47 524574 +los ||| , the leader ||| 0.0138889 0.122289 1.90631e-06 6.08745e-07 2.718 ||| 0-1 ||| 72 524574 +los ||| , the market in ||| 0.166667 0.122289 1.90631e-06 2.47458e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| , the market ||| 0.0105263 0.122289 1.90631e-06 1.1561e-05 2.718 ||| 0-1 ||| 95 524574 +los ||| , the means ||| 0.0232558 0.122289 1.90631e-06 3.2417e-05 2.718 ||| 0-1 ||| 43 524574 +los ||| , the missing pieces ||| 0.5 0.122289 1.90631e-06 1.67216e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| , the missing ||| 0.5 0.122289 1.90631e-06 7.36633e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| , the most ||| 0.0027933 0.0622272 1.90631e-06 4.67557e-06 2.718 ||| 0-1 0-2 ||| 358 524574 +los ||| , the motions ||| 0.25 0.122289 1.90631e-06 2.96699e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| , the nonsensical ||| 0.5 0.122289 1.90631e-06 1.12541e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| , the notion ||| 0.030303 0.122289 1.90631e-06 1.26865e-06 2.718 ||| 0-1 ||| 33 524574 +los ||| , the only thing left to apply ||| 1 0.122289 1.90631e-06 5.01865e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| , the only thing left to ||| 1 0.122289 1.90631e-06 3.4876e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| , the only thing left ||| 1 0.122289 1.90631e-06 3.9249e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| , the only thing ||| 0.016129 0.122289 1.90631e-06 2.07777e-08 2.718 ||| 0-1 ||| 62 524574 +los ||| , the only ||| 0.00168067 0.122289 1.90631e-06 5.69407e-05 2.718 ||| 0-1 ||| 595 524574 +los ||| , the opposite is true ||| 0.0666667 0.122289 1.90631e-06 5.49263e-12 2.718 ||| 0-1 ||| 15 524574 +los ||| , the opposite is ||| 0.0833333 0.122289 1.90631e-06 3.3989e-08 2.718 ||| 0-1 ||| 12 524574 +los ||| , the opposite ||| 0.047619 0.122289 1.90631e-06 1.08449e-06 2.718 ||| 0-1 ||| 21 524574 +los ||| , the overcoming of ||| 0.5 0.122289 1.90631e-06 8.06488e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| , the overcoming ||| 0.5 0.122289 1.90631e-06 1.4835e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| , the partial regulation ||| 1 0.122289 1.90631e-06 1.28542e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| , the partial ||| 0.5 0.122289 1.90631e-06 1.84158e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| , the people ||| 0.00215517 0.105878 1.90631e-06 0.000402861 2.718 ||| 0-1 0-2 ||| 464 524574 +los ||| , the price of ||| 0.0240964 0.122289 3.81262e-06 1.42109e-07 2.718 ||| 0-1 ||| 83 524574 +los ||| , the price ||| 0.016129 0.122289 3.81262e-06 2.61402e-06 2.718 ||| 0-1 ||| 124 524574 +los ||| , the prime ||| 0.0384615 0.122289 1.90631e-06 7.72441e-07 2.718 ||| 0-1 ||| 26 524574 +los ||| , the prospect ||| 0.0204082 0.122289 1.90631e-06 1.23284e-06 2.718 ||| 0-1 ||| 49 524574 +los ||| , the rapporteur , ||| 0.003125 0.122289 1.90631e-06 4.41065e-07 2.718 ||| 0-1 ||| 320 524574 +los ||| , the rapporteur ||| 0.000870322 0.122289 1.90631e-06 3.69851e-06 2.718 ||| 0-1 ||| 1149 524574 +los ||| , the reason ||| 0.00892857 0.122289 1.90631e-06 1.19652e-05 2.718 ||| 0-1 ||| 112 524574 +los ||| , the relationship ||| 0.0144928 0.122289 1.90631e-06 1.36072e-06 2.718 ||| 0-1 ||| 69 524574 +los ||| , the report ||| 0.000466418 0.122289 1.90631e-06 2.09685e-05 2.718 ||| 0-1 ||| 2144 524574 +los ||| , the representatives ||| 0.010101 0.122289 1.90631e-06 1.65742e-06 2.718 ||| 0-1 ||| 99 524574 +los ||| , the result ||| 0.00371747 0.122289 1.90631e-06 2.69331e-05 2.718 ||| 0-1 ||| 269 524574 +los ||| , the results ||| 0.00421941 0.122289 1.90631e-06 3.9594e-06 2.718 ||| 0-1 ||| 237 524574 +los ||| , the rule is ||| 0.0769231 0.122289 1.90631e-06 1.30345e-07 2.718 ||| 0-1 ||| 13 524574 +los ||| , the rule ||| 0.0021322 0.122289 1.90631e-06 4.15891e-06 2.718 ||| 0-1 ||| 469 524574 +los ||| , the speakers ||| 0.25 0.122289 1.90631e-06 1.03333e-06 2.718 ||| 0-1 ||| 4 524574 +los ||| , the supply ||| 0.0285714 0.122289 1.90631e-06 2.63449e-06 2.718 ||| 0-1 ||| 35 524574 +los ||| , the terms of the ||| 0.142857 0.122289 1.90631e-06 1.87393e-07 2.718 ||| 0-4 ||| 7 524574 +los ||| , the thing that really matters ||| 1 0.122289 1.90631e-06 2.81388e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| , the thing that really ||| 1 0.122289 1.90631e-06 1.52102e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| , the thing that ||| 0.0909091 0.122289 1.90631e-06 3.14e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| , the thing ||| 0.0769231 0.122289 1.90631e-06 1.86665e-05 2.718 ||| 0-1 ||| 13 524574 +los ||| , the three ||| 0.00719424 0.122289 1.90631e-06 3.23811e-06 2.718 ||| 0-1 ||| 139 524574 +los ||| , the true ||| 0.0434783 0.122289 1.90631e-06 8.26666e-06 2.718 ||| 0-1 ||| 23 524574 +los ||| , the truth ||| 0.00980392 0.122289 1.90631e-06 1.2533e-06 2.718 ||| 0-1 ||| 102 524574 +los ||| , the various ||| 0.00900901 0.0668568 1.90631e-06 8.05692e-06 2.718 ||| 0-1 0-2 ||| 111 524574 +los ||| , the very ||| 0.00578035 0.122289 1.90631e-06 0.000177994 2.718 ||| 0-1 ||| 173 524574 +los ||| , the way in ||| 0.00704225 0.122289 1.90631e-06 2.36027e-06 2.718 ||| 0-1 ||| 142 524574 +los ||| , the way ||| 0.00302115 0.122289 1.90631e-06 0.00011027 2.718 ||| 0-1 ||| 331 524574 +los ||| , the whole is far greater ||| 1 0.122289 1.90631e-06 8.15464e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| , the whole is far ||| 1 0.122289 1.90631e-06 6.19183e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| , the whole is ||| 1 0.122289 1.90631e-06 9.06962e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| , the whole ||| 0.0033557 0.122289 1.90631e-06 2.89384e-05 2.718 ||| 0-1 ||| 298 524574 +los ||| , the wrong ||| 0.166667 0.122289 1.90631e-06 2.85445e-06 2.718 ||| 0-1 ||| 6 524574 +los ||| , the ||| 0.00863038 0.122289 0.00276605 0.0511551 2.718 ||| 0-1 ||| 168127 524574 +los ||| , their personal ||| 1 0.0236713 1.90631e-06 1.15948e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| , their respective ||| 0.25 0.0236713 1.90631e-06 8.73021e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| , their ||| 0.00176263 0.0236713 5.71893e-06 0.000272819 2.718 ||| 0-1 ||| 1702 524574 +los ||| , then , apart from anything else ||| 0.5 0.01311 1.90631e-06 2.52364e-20 2.718 ||| 0-6 ||| 2 524574 +los ||| , then , the ||| 0.02 0.122289 1.90631e-06 9.82421e-06 2.718 ||| 0-3 ||| 50 524574 +los ||| , then our numbers shall dwindle ||| 1 0.0248369 1.90631e-06 1.28318e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| , then our numbers shall ||| 1 0.0248369 1.90631e-06 1.83312e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| , then our numbers ||| 1 0.0248369 1.90631e-06 3.35367e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| , then our ||| 0.04 0.0248369 1.90631e-06 6.85822e-07 2.718 ||| 0-2 ||| 25 524574 +los ||| , then the ||| 0.00148588 0.122289 1.90631e-06 8.23801e-05 2.718 ||| 0-2 ||| 673 524574 +los ||| , there are ||| 0.000248756 0.0026918 1.90631e-06 6.6496e-07 2.718 ||| 0-1 ||| 4020 524574 +los ||| , there is the ||| 0.00151057 0.122289 1.90631e-06 4.91446e-06 2.718 ||| 0-3 ||| 662 524574 +los ||| , there is ||| 0.000150263 0.0026918 1.90631e-06 1.37356e-06 2.718 ||| 0-1 ||| 6655 524574 +los ||| , there were the ||| 0.166667 0.0416781 1.90631e-06 5.45185e-11 2.718 ||| 0-1 0-2 0-3 ||| 6 524574 +los ||| , there ||| 0.000957488 0.0026918 9.53154e-06 4.38261e-05 2.718 ||| 0-1 ||| 5222 524574 +los ||| , thereby revealing the ||| 0.5 0.122289 1.90631e-06 8.98283e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| , therefore , the ||| 0.00571429 0.122289 1.90631e-06 5.10183e-06 2.718 ||| 0-3 ||| 175 524574 +los ||| , these amendments would make it ||| 1 0.0240362 1.90631e-06 4.0225e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| , these amendments would make ||| 1 0.0240362 1.90631e-06 2.26197e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| , these amendments would ||| 1 0.0240362 1.90631e-06 1.30163e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| , these amendments ||| 0.0175439 0.0240362 1.90631e-06 2.21791e-08 2.718 ||| 0-1 ||| 57 524574 +los ||| , these barrels ||| 1 0.0240362 1.90631e-06 1.16273e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| , these management ||| 0.5 0.0240362 1.90631e-06 1.2761e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| , these must be ||| 0.125 0.0240362 1.90631e-06 8.14226e-09 2.718 ||| 0-1 ||| 8 524574 +los ||| , these must ||| 0.0588235 0.0240362 1.90631e-06 4.4928e-07 2.718 ||| 0-1 ||| 17 524574 +los ||| , these ||| 0.00390273 0.0240362 2.4782e-05 0.000290683 2.718 ||| 0-1 ||| 3331 524574 +los ||| , they are the ||| 0.0149254 0.122289 1.90631e-06 2.53339e-06 2.718 ||| 0-3 ||| 67 524574 +los ||| , they are ||| 0.00126263 0.0072404 3.81262e-06 1.48119e-06 2.718 ||| 0-1 ||| 1584 524574 +los ||| , they at least ||| 0.2 0.0072404 1.90631e-06 1.00315e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| , they at ||| 0.2 0.0072404 1.90631e-06 4.08782e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| , they do the ||| 0.5 0.122289 1.90631e-06 5.73592e-07 2.718 ||| 0-3 ||| 2 524574 +los ||| , they have ||| 0.00138313 0.0072404 1.90631e-06 1.16754e-06 2.718 ||| 0-1 ||| 723 524574 +los ||| , they were ||| 0.00564972 0.0072404 1.90631e-06 1.7488e-07 2.718 ||| 0-1 ||| 177 524574 +los ||| , they ||| 0.00207285 0.0072404 1.33442e-05 9.76219e-05 2.718 ||| 0-1 ||| 3377 524574 +los ||| , those Members ||| 0.125 0.226792 1.90631e-06 9.60667e-06 2.718 ||| 0-1 0-2 ||| 8 524574 +los ||| , those of us ||| 0.0277778 0.284705 1.90631e-06 3.12008e-07 2.718 ||| 0-1 ||| 36 524574 +los ||| , those of ||| 0.00641026 0.284705 1.90631e-06 0.000108253 2.718 ||| 0-1 ||| 156 524574 +los ||| , those ||| 0.0310486 0.284705 0.000101034 0.00199127 2.718 ||| 0-1 ||| 1707 524574 +los ||| , though , for ||| 0.0625 0.0015353 1.90631e-06 3.11385e-09 2.718 ||| 0-3 ||| 16 524574 +los ||| , though , the ||| 0.0222222 0.122289 1.90631e-06 1.51475e-06 2.718 ||| 0-3 ||| 45 524574 +los ||| , through agreements , ||| 0.5 0.199336 1.90631e-06 2.06403e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| , through agreements ||| 0.5 0.199336 1.90631e-06 1.73077e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| , to allow new ||| 0.5 0.0005876 1.90631e-06 1.00003e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| , to apply them ||| 0.5 0.038218 1.90631e-06 3.06896e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| , to assist the ||| 0.111111 0.122289 1.90631e-06 8.50017e-08 2.718 ||| 0-3 ||| 9 524574 +los ||| , to discover what the problem is ||| 0.5 0.122289 1.90631e-06 2.42757e-16 2.718 ||| 0-4 ||| 2 524574 +los ||| , to discover what the problem ||| 0.5 0.122289 1.90631e-06 7.74565e-15 2.718 ||| 0-4 ||| 2 524574 +los ||| , to discover what the ||| 0.5 0.122289 1.90631e-06 3.44404e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| , to go through the ||| 1 0.122289 1.90631e-06 1.22359e-09 2.718 ||| 0-4 ||| 1 524574 +los ||| , to other parties ||| 1 0.132694 1.90631e-06 2.30769e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| , to realize that although the ||| 1 0.122289 1.90631e-06 4.75419e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| , to the best of ||| 0.0833333 0.122289 1.90631e-06 3.42253e-08 2.718 ||| 0-2 ||| 12 524574 +los ||| , to the best ||| 0.0625 0.122289 1.90631e-06 6.29558e-07 2.718 ||| 0-2 ||| 16 524574 +los ||| , to the point ||| 0.0123457 0.122289 1.90631e-06 3.97644e-06 2.718 ||| 0-2 ||| 81 524574 +los ||| , to the ||| 0.000890472 0.122289 5.71893e-06 0.00454555 2.718 ||| 0-2 ||| 3369 524574 +los ||| , together with the ||| 0.000782473 0.122289 1.90631e-06 1.96463e-07 2.718 ||| 0-3 ||| 1278 524574 +los ||| , too , those ||| 0.5 0.284705 1.90631e-06 3.23194e-07 2.718 ||| 0-3 ||| 2 524574 +los ||| , trade needs ||| 0.5 0.0307203 1.90631e-06 1.77503e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| , trade ||| 0.00238095 0.0307203 1.90631e-06 8.95126e-05 2.718 ||| 0-1 ||| 420 524574 +los ||| , we , the Commission ||| 0.142857 0.122289 1.90631e-06 4.04515e-08 2.718 ||| 0-3 ||| 7 524574 +los ||| , we , the ||| 0.0322581 0.122289 3.81262e-06 6.92545e-05 2.718 ||| 0-3 ||| 62 524574 +los ||| , we acquired ||| 1 0.0150188 1.90631e-06 1.58396e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| , we are talking about the development ||| 1 0.122289 1.90631e-06 2.24264e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| , we are talking about the ||| 0.0163934 0.122289 1.90631e-06 1.36331e-12 2.718 ||| 0-5 ||| 61 524574 +los ||| , we are trying to identify those ||| 1 0.284705 1.90631e-06 6.07397e-17 2.718 ||| 0-6 ||| 1 524574 +los ||| , we in the ||| 0.00346021 0.122289 1.90631e-06 1.24302e-05 2.718 ||| 0-3 ||| 289 524574 +los ||| , we opponents ||| 1 0.186889 1.90631e-06 2.51403e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| , we see first ||| 1 0.0014565 1.90631e-06 3.94086e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| , we see the ||| 0.0208333 0.122289 1.90631e-06 4.09181e-07 2.718 ||| 0-3 ||| 48 524574 +los ||| , we see ||| 0.00246305 0.0014565 1.90631e-06 7.31958e-08 2.718 ||| 0-1 ||| 406 524574 +los ||| , we the ||| 0.05 0.122289 1.90631e-06 0.000580728 2.718 ||| 0-2 ||| 20 524574 +los ||| , we use the ||| 0.1 0.122289 1.90631e-06 2.8235e-07 2.718 ||| 0-3 ||| 10 524574 +los ||| , we ||| 4.81093e-05 0.0014565 1.90631e-06 0.000103883 2.718 ||| 0-1 ||| 20786 524574 +los ||| , what criteria she must ||| 1 0.0061209 1.90631e-06 1.53728e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| , what criteria she ||| 1 0.0061209 1.90631e-06 9.94618e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| , what criteria ||| 0.25 0.0061209 1.90631e-06 3.49848e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| , what is in many ways ||| 1 0.0029977 1.90631e-06 1.52574e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| , what is in many ||| 1 0.0029977 1.90631e-06 1.58271e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| , what is ||| 0.00220264 0.0061209 3.81262e-06 3.58321e-06 2.718 ||| 0-1 ||| 908 524574 +los ||| , what the ||| 0.00662252 0.064205 1.90631e-06 4.90424e-05 2.718 ||| 0-1 0-2 ||| 151 524574 +los ||| , what ||| 0.0005923 0.0061209 5.71893e-06 0.000114329 2.718 ||| 0-1 ||| 5065 524574 +los ||| , when advanced ||| 1 0.002271 1.90631e-06 1.72885e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| , when we have ||| 0.0107527 0.0014565 1.90631e-06 6.21084e-10 2.718 ||| 0-2 ||| 93 524574 +los ||| , when we ||| 0.00194553 0.0014565 1.90631e-06 5.1931e-08 2.718 ||| 0-2 ||| 514 524574 +los ||| , when ||| 8.2802e-05 0.0006199 1.90631e-06 4.4005e-06 2.718 ||| 0-1 ||| 12077 524574 +los ||| , where I tried ||| 0.5 0.0449398 1.90631e-06 7.42823e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| , where I ||| 0.00793651 0.0449398 1.90631e-06 1.86171e-06 2.718 ||| 0-1 ||| 126 524574 +los ||| , where different rules apply ||| 1 0.0449398 1.90631e-06 9.69085e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| , where different rules ||| 1 0.0449398 1.90631e-06 6.73444e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| , where different ||| 0.125 0.0449398 1.90631e-06 5.79556e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| , where intermodal transport ||| 1 0.0449398 1.90631e-06 2.97911e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| , where intermodal ||| 1 0.0449398 1.90631e-06 2.89515e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| , where there is ||| 0.00438596 0.0449398 1.90631e-06 2.52851e-08 2.718 ||| 0-1 ||| 228 524574 +los ||| , where there ||| 0.00568182 0.0449398 1.90631e-06 8.06772e-07 2.718 ||| 0-1 ||| 176 524574 +los ||| , where ||| 0.000721947 0.0449398 1.33442e-05 0.000263195 2.718 ||| 0-1 ||| 9696 524574 +los ||| , whereas the amount ||| 0.5 0.122289 1.90631e-06 2.37719e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| , whereas the ||| 0.00324675 0.122289 1.90631e-06 9.77062e-07 2.718 ||| 0-2 ||| 308 524574 +los ||| , whereby the ||| 0.00662252 0.122289 1.90631e-06 1.65742e-06 2.718 ||| 0-2 ||| 151 524574 +los ||| , which all ||| 0.0178571 0.0177928 1.90631e-06 2.7233e-06 2.718 ||| 0-2 ||| 56 524574 +los ||| , which is the ||| 0.000678426 0.122289 1.90631e-06 1.3619e-05 2.718 ||| 0-3 ||| 1474 524574 +los ||| , which means they ||| 0.0555556 0.0072404 1.90631e-06 5.25501e-10 2.718 ||| 0-3 ||| 18 524574 +los ||| , which the ||| 0.0020141 0.122289 3.81262e-06 0.000434542 2.718 ||| 0-2 ||| 993 524574 +los ||| , who are ||| 0.000898473 0.0016142 1.90631e-06 2.12787e-07 2.718 ||| 0-1 ||| 1113 524574 +los ||| , who have taken their seats ||| 0.111111 0.0935673 1.90631e-06 1.03401e-16 2.718 ||| 0-5 ||| 9 524574 +los ||| , who ||| 0.00022383 0.0016142 5.71893e-06 1.40244e-05 2.718 ||| 0-1 ||| 13403 524574 +los ||| , whom ||| 0.0026178 0.153643 3.81262e-06 0.00010783 2.718 ||| 0-1 ||| 764 524574 +los ||| , will demonstrate . the ||| 1 0.122289 1.90631e-06 3.32442e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| , with a steady hand , ||| 1 0.0007437 1.90631e-06 2.71908e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| , with a steady hand ||| 1 0.0007437 1.90631e-06 2.28006e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| , with a steady ||| 1 0.0007437 1.90631e-06 5.74901e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| , with a ||| 0.000433276 0.0007437 1.90631e-06 1.22319e-06 2.718 ||| 0-1 ||| 2308 524574 +los ||| , with the southern countries ||| 1 0.122289 1.90631e-06 3.97453e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| , with the southern ||| 1 0.122289 1.90631e-06 1.04676e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| , with the ||| 0.000794029 0.122289 9.53154e-06 0.000327111 2.718 ||| 0-2 ||| 6297 524574 +los ||| , with time , the ||| 1 0.122289 1.90631e-06 6.40419e-08 2.718 ||| 0-4 ||| 1 524574 +los ||| , with ||| 7.83668e-05 0.0007437 3.81262e-06 2.75955e-05 2.718 ||| 0-1 ||| 25521 524574 +los ||| , would those ||| 0.25 0.284705 1.90631e-06 1.16862e-05 2.718 ||| 0-2 ||| 4 524574 +los ||| , writers ||| 0.0833333 0.119266 1.90631e-06 1.50261e-06 2.718 ||| 0-1 ||| 12 524574 +los ||| , yes , the ||| 0.0588235 0.122289 1.90631e-06 1.95215e-07 2.718 ||| 0-3 ||| 17 524574 +los ||| , you arrive at the ||| 0.5 0.122289 1.90631e-06 1.39705e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| , ||| 8.74042e-07 1.2e-06 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 2.28822e+06 524574 +los ||| - ( LT ) The ||| 0.0222222 0.0025284 1.90631e-06 9.38016e-19 2.718 ||| 0-4 ||| 45 524574 +los ||| - , the ||| 1 0.122289 1.90631e-06 0.000192962 2.718 ||| 0-2 ||| 1 524574 +los ||| - C5-0684 / 2001 - 2001 / ||| 1 1 1.90631e-06 2.83286e-28 2.718 ||| 0-1 ||| 1 524574 +los ||| - C5-0684 / 2001 - 2001 ||| 1 1 1.90631e-06 1.23168e-24 2.718 ||| 0-1 ||| 1 524574 +los ||| - C5-0684 / 2001 - ||| 1 1 1.90631e-06 6.34886e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| - C5-0684 / 2001 ||| 1 1 1.90631e-06 1.68311e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| - C5-0684 / ||| 1 1 1.90631e-06 8.67583e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| - C5-0684 ||| 1 1 1.90631e-06 3.7721e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| - I am sure - necessary ||| 1 0.0003466 1.90631e-06 1.97103e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| - I stress - the ||| 1 0.122289 1.90631e-06 1.53696e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| - all ||| 0.00298507 0.0177928 1.90631e-06 1.01405e-05 2.718 ||| 0-1 ||| 335 524574 +los ||| - among ||| 0.0238095 0.0202203 1.90631e-06 8.21563e-07 2.718 ||| 0-1 ||| 42 524574 +los ||| - amongst other things ||| 0.25 0.013643 1.90631e-06 9.17865e-14 2.718 ||| 0-1 ||| 4 524574 +los ||| - amongst other ||| 0.142857 0.013643 1.90631e-06 2.23325e-10 2.718 ||| 0-1 ||| 7 524574 +los ||| - amongst ||| 0.0666667 0.013643 1.90631e-06 1.72385e-07 2.718 ||| 0-1 ||| 15 524574 +los ||| - as the ||| 0.00934579 0.122289 1.90631e-06 1.65114e-05 2.718 ||| 0-2 ||| 107 524574 +los ||| - between the ||| 0.0588235 0.122289 1.90631e-06 4.26846e-07 2.718 ||| 0-2 ||| 17 524574 +los ||| - by the ||| 0.025641 0.122289 1.90631e-06 8.49501e-06 2.718 ||| 0-2 ||| 39 524574 +los ||| - competitiveness , the environment , safety ||| 1 0.122289 1.90631e-06 3.05976e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| - competitiveness , the environment , ||| 0.5 0.122289 1.90631e-06 6.03503e-15 2.718 ||| 0-3 ||| 2 524574 +los ||| - competitiveness , the environment ||| 0.5 0.122289 1.90631e-06 5.06062e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| - competitiveness , the ||| 0.5 0.122289 1.90631e-06 9.06921e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| - concerns the ||| 0.125 0.122289 1.90631e-06 1.21193e-07 2.718 ||| 0-2 ||| 8 524574 +los ||| - countries ||| 0.0833333 0.0957208 1.90631e-06 3.1445e-05 2.718 ||| 0-1 ||| 12 524574 +los ||| - demonstrate the ||| 0.25 0.122289 1.90631e-06 4.0128e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| - from the very ||| 0.25 0.122289 1.90631e-06 9.06665e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| - from the ||| 0.01 0.122289 1.90631e-06 2.60573e-06 2.718 ||| 0-2 ||| 100 524574 +los ||| - give the ||| 0.5 0.122289 1.90631e-06 9.80548e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| - if such ingredients ||| 1 0.140684 1.90631e-06 7.03627e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| - including the ||| 0.00775194 0.122289 1.90631e-06 1.68926e-07 2.718 ||| 0-2 ||| 129 524574 +los ||| - including ||| 0.00146628 0.0014375 1.90631e-06 9.92062e-08 2.718 ||| 0-1 ||| 682 524574 +los ||| - necessary ||| 0.333333 0.0003466 1.90631e-06 3.31945e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| - of the ||| 0.0230769 0.122289 5.71893e-06 8.79645e-05 2.718 ||| 0-2 ||| 130 524574 +los ||| - our ||| 0.016129 0.0248369 3.81262e-06 1.34705e-05 2.718 ||| 0-1 ||| 124 524574 +los ||| - products ||| 0.5 0.245259 1.90631e-06 1.88763e-05 2.718 ||| 0-1 ||| 2 524574 +los ||| - quite the reverse ||| 0.0625 0.122289 1.90631e-06 6.12271e-12 2.718 ||| 0-2 ||| 16 524574 +los ||| - quite the ||| 0.0212766 0.122289 1.90631e-06 6.31208e-07 2.718 ||| 0-2 ||| 47 524574 +los ||| - see the ||| 0.2 0.122289 1.90631e-06 1.14009e-06 2.718 ||| 0-2 ||| 5 524574 +los ||| - that is , those of us ||| 1 0.284705 1.90631e-06 6.20483e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| - that is , those of ||| 1 0.284705 1.90631e-06 2.15281e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| - that is , those ||| 0.166667 0.284705 1.90631e-06 3.95999e-09 2.718 ||| 0-4 ||| 6 524574 +los ||| - that of ||| 0.0138889 0.0019787 1.90631e-06 2.09876e-07 2.718 ||| 0-2 ||| 72 524574 +los ||| - the Member ||| 0.333333 0.122289 1.90631e-06 8.33789e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| - the problem ||| 0.05 0.122289 1.90631e-06 3.63903e-07 2.718 ||| 0-1 ||| 20 524574 +los ||| - the very ||| 0.0625 0.122289 1.90631e-06 5.63006e-06 2.718 ||| 0-1 ||| 16 524574 +los ||| - the ||| 0.00902165 0.122289 8.57839e-05 0.00161807 2.718 ||| 0-1 ||| 4988 524574 +los ||| - their implementation ||| 0.2 0.0236713 1.90631e-06 6.70507e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| - their ||| 0.0222222 0.0236713 1.90631e-06 8.62943e-06 2.718 ||| 0-1 ||| 45 524574 +los ||| - those of ||| 0.0555556 0.284705 1.90631e-06 3.42412e-06 2.718 ||| 0-1 ||| 18 524574 +los ||| - those ||| 0.0232558 0.284705 5.71893e-06 6.2985e-05 2.718 ||| 0-1 ||| 129 524574 +los ||| - to the ||| 0.0168067 0.122289 3.81262e-06 0.000143778 2.718 ||| 0-2 ||| 119 524574 +los ||| - took the initiative ||| 0.333333 0.122289 1.90631e-06 1.49404e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| - took the ||| 0.333333 0.122289 1.90631e-06 2.38665e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| - we must be patient ||| 0.333333 0.135371 1.90631e-06 2.5309e-13 2.718 ||| 0-4 ||| 3 524574 +los ||| - ||| 2.17578e-05 1.46e-05 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 91921 524574 +los ||| . ( NL ) The ||| 0.0384615 0.0025284 1.90631e-06 2.96706e-18 2.718 ||| 0-4 ||| 26 524574 +los ||| . ( NL ) ||| 0.0113636 4.2e-06 1.90631e-06 4.89776e-16 2.718 ||| 0-0 ||| 88 524574 +los ||| . ( NL ||| 0.011236 4.2e-06 1.90631e-06 3.40761e-13 2.718 ||| 0-0 ||| 89 524574 +los ||| . ( fr ) The ||| 0.0384615 0.0025284 1.90631e-06 1.7881e-18 2.718 ||| 0-4 ||| 26 524574 +los ||| . ( ||| 0.00199601 4.2e-06 1.90631e-06 7.52232e-09 2.718 ||| 0-0 ||| 501 524574 +los ||| . - ( PT ) ||| 0.000952381 4.2e-06 1.90631e-06 3.91928e-18 2.718 ||| 0-0 ||| 1050 524574 +los ||| . - ( PT ||| 0.00095511 4.2e-06 1.90631e-06 2.72683e-15 2.718 ||| 0-0 ||| 1047 524574 +los ||| . - ( ||| 9.7924e-05 4.2e-06 1.90631e-06 2.83749e-11 2.718 ||| 0-0 ||| 10212 524574 +los ||| . - ||| 5.17197e-05 4.2e-06 1.90631e-06 2.94224e-08 2.718 ||| 0-0 ||| 19335 524574 +los ||| . I have no intention of questioning ||| 1 0.0019787 1.90631e-06 1.08099e-22 2.718 ||| 0-5 ||| 1 524574 +los ||| . I have no intention of ||| 1 0.0019787 1.90631e-06 3.72754e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| . I mentioned the two ||| 1 0.122289 1.90631e-06 1.92281e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| . I mentioned the ||| 1 0.122289 1.90631e-06 8.13373e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| . I see them ||| 1 0.038218 1.90631e-06 3.03832e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| . according to these studies , the ||| 0.5 0.122289 1.90631e-06 9.98335e-18 2.718 ||| 0-6 ||| 2 524574 +los ||| . after all ||| 0.0119048 0.0177928 1.90631e-06 2.20672e-09 2.718 ||| 0-2 ||| 84 524574 +los ||| . all ||| 0.00952381 0.0177928 1.90631e-06 8.14286e-06 2.718 ||| 0-1 ||| 105 524574 +los ||| . as the ||| 0.0434783 0.122289 1.90631e-06 1.32587e-05 2.718 ||| 0-2 ||| 23 524574 +los ||| . events concerning ||| 0.5 0.140095 1.90631e-06 2.02118e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| . events ||| 0.25 0.140095 1.90631e-06 3.28646e-06 2.718 ||| 0-1 ||| 4 524574 +los ||| . indeed , only the ||| 1 0.122289 1.90631e-06 1.30718e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| . it is clear that standards vary ||| 1 0.0495175 1.90631e-06 2.83567e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| . it is clear that standards ||| 1 0.0495175 1.90631e-06 7.87687e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| . politicians ||| 0.4 0.299137 3.81262e-06 4.28482e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| . that , ||| 0.0588235 4.2e-06 1.90631e-06 1.56472e-08 2.718 ||| 0-0 ||| 17 524574 +los ||| . that ||| 0.000887311 4.2e-06 1.90631e-06 1.31208e-07 2.718 ||| 0-0 ||| 1127 524574 +los ||| . the Commission has tried to ||| 1 0.122289 1.90631e-06 1.38505e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| . the Commission has tried ||| 1 0.122289 1.90631e-06 1.55872e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| . the Commission has ||| 0.0434783 0.122289 1.90631e-06 3.90657e-09 2.718 ||| 0-1 ||| 23 524574 +los ||| . the Commission is of the ||| 0.333333 0.122289 1.90631e-06 7.93845e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| . the Commission is of ||| 0.333333 0.122289 1.90631e-06 1.29308e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| . the Commission is ||| 0.04 0.122289 1.90631e-06 2.37856e-08 2.718 ||| 0-1 ||| 25 524574 +los ||| . the Commission ||| 0.01 0.122289 3.81262e-06 7.58926e-07 2.718 ||| 0-1 ||| 200 524574 +los ||| . the Union for Europe of the ||| 1 0.122289 1.90631e-06 9.40015e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| . the Union for Europe of ||| 1 0.122289 1.90631e-06 1.53117e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| . the Union for Europe ||| 1 0.122289 1.90631e-06 2.81652e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| . the Union for ||| 1 0.122289 1.90631e-06 5.56625e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| . the Union ||| 0.047619 0.122289 1.90631e-06 7.24235e-07 2.718 ||| 0-1 ||| 21 524574 +los ||| . the commissioner will ||| 1 0.122289 1.90631e-06 7.86841e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| . the commissioner ||| 1 0.122289 1.90631e-06 9.09516e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| . the committee called ||| 1 0.122289 1.90631e-06 1.74785e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| . the committee ||| 0.0526316 0.122289 1.90631e-06 1.00566e-07 2.718 ||| 0-1 ||| 19 524574 +los ||| . the international community is discerning and ||| 1 0.122289 1.90631e-06 1.6546e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| . the international community is discerning ||| 1 0.122289 1.90631e-06 1.32095e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| . the international community is ||| 1 0.122289 1.90631e-06 1.20086e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| . the international community ||| 0.333333 0.122289 1.90631e-06 3.83158e-12 2.718 ||| 0-1 ||| 3 524574 +los ||| . the international ||| 1 0.122289 1.90631e-06 1.00566e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| . the matter is ||| 0.333333 0.122289 1.90631e-06 4.22488e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| . the matter ||| 0.1 0.122289 1.90631e-06 1.34803e-06 2.718 ||| 0-1 ||| 10 524574 +los ||| . the original ||| 0.333333 0.122289 1.90631e-06 3.92391e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| . the proposal ||| 0.0384615 0.122289 1.90631e-06 2.59472e-07 2.718 ||| 0-1 ||| 26 524574 +los ||| . the ||| 0.0127911 0.122289 7.4346e-05 0.00129931 2.718 ||| 0-1 ||| 3049 524574 +los ||| . then our ||| 1 0.0248369 1.90631e-06 1.74195e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| . there are a great many ||| 1 0.0026918 1.90631e-06 1.01005e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| . there are a great ||| 1 0.0026918 1.90631e-06 2.94218e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| . there are a ||| 0.2 0.0026918 1.90631e-06 7.48645e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| . there are ||| 0.00763359 0.0026918 1.90631e-06 1.68896e-08 2.718 ||| 0-1 ||| 131 524574 +los ||| . there ||| 0.00289855 0.0026918 1.90631e-06 1.11316e-06 2.718 ||| 0-1 ||| 345 524574 +los ||| . these contacts are inadequate ||| 0.5 0.17185 1.90631e-06 2.11529e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| . these contacts are ||| 0.5 0.17185 1.90631e-06 1.51092e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| . these contacts ||| 0.5 0.17185 1.90631e-06 9.95816e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| . these conventions ||| 1 0.0240362 1.90631e-06 3.17477e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| . these ||| 0.00650406 0.0240362 7.62523e-06 7.38319e-06 2.718 ||| 0-1 ||| 615 524574 +los ||| . those regulations will , ||| 1 0.0587004 1.90631e-06 1.23414e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| . those regulations will ||| 1 0.0587004 1.90631e-06 1.03488e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| . those regulations ||| 1 0.0587004 1.90631e-06 1.19623e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| . we need the ||| 0.166667 0.122289 1.90631e-06 1.35244e-08 2.718 ||| 0-3 ||| 6 524574 +los ||| . when the Commission included in the ||| 1 0.0614546 1.90631e-06 3.45547e-18 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| . when the Commission included in ||| 1 0.0614546 1.90631e-06 5.62855e-17 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| . when the Commission included ||| 1 0.0614546 1.90631e-06 2.62961e-15 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| . when the Commission ||| 1 0.0614546 1.90631e-06 2.80044e-11 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| . when the ||| 0.0714286 0.0614546 1.90631e-06 4.79445e-08 2.718 ||| 0-1 0-2 ||| 14 524574 +los ||| . would the ||| 1 0.122289 1.90631e-06 7.62525e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| . ||| 3.06154e-06 4.2e-06 1.14379e-05 7.8e-06 2.718 ||| 0-0 ||| 1.9598e+06 524574 +los ||| ... the list ||| 0.333333 0.122289 1.90631e-06 1.10689e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| ... the ||| 0.0208333 0.122289 1.90631e-06 1.51422e-05 2.718 ||| 0-1 ||| 48 524574 +los ||| / 38 / EC on the ||| 0.1 0.122289 1.90631e-06 3.12316e-21 2.718 ||| 0-5 ||| 10 524574 +los ||| / EC on the ||| 0.0133333 0.122289 1.90631e-06 1.23445e-11 2.718 ||| 0-3 ||| 75 524574 +los ||| / US ||| 0.0294118 0.119294 1.90631e-06 2.75287e-07 2.718 ||| 0-1 ||| 34 524574 +los ||| / her family ||| 1 0.0019712 1.90631e-06 7.88546e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| / or counterfeit ||| 0.5 0.0074488 1.90631e-06 1.02554e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| 000 children ||| 0.0208333 0.293415 1.90631e-06 5.77389e-07 2.718 ||| 0-1 ||| 48 524574 +los ||| 10 % of Ireland 's ||| 1 0.0349814 1.90631e-06 6.9699e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| 10 billion . the ||| 1 0.122289 1.90631e-06 4.77808e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| 100 ||| 0.000331126 0.000352 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 3020 524574 +los ||| 11 applicant countries - the ||| 1 0.122289 1.90631e-06 6.78214e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| 120 million every year , practically half ||| 1 0.144232 1.90631e-06 1.45325e-27 2.718 ||| 0-2 ||| 1 524574 +los ||| 120 million every year , practically ||| 1 0.144232 1.90631e-06 5.04602e-23 2.718 ||| 0-2 ||| 1 524574 +los ||| 120 million every year , ||| 1 0.144232 1.90631e-06 7.76311e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| 120 million every year ||| 1 0.144232 1.90631e-06 6.50969e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| 120 million every ||| 1 0.144232 1.90631e-06 2.61014e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| 15 ||| 0.000160051 0.0001724 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 6248 524574 +los ||| 18 billion , approximately the ||| 1 0.122289 1.90631e-06 5.89435e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| 1990 ||| 0.000888099 0.0052466 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 1126 524574 +los ||| 1998 the ||| 0.0212766 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-1 ||| 47 524574 +los ||| 1999 and costs EUR 120 million every ||| 1 0.144232 1.90631e-06 1.03875e-27 2.718 ||| 0-6 ||| 1 524574 +los ||| 20 ||| 0.000273448 0.0005892 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 7314 524574 +los ||| 2001 ) 547 - C5-0684 / 2001 ||| 1 1 1.90631e-06 3.28519e-31 2.718 ||| 0-4 ||| 1 524574 +los ||| 2001 ) 547 - C5-0684 / ||| 1 1 1.90631e-06 1.69339e-26 2.718 ||| 0-4 ||| 1 524574 +los ||| 2001 ) 547 - C5-0684 ||| 1 1 1.90631e-06 7.36259e-23 2.718 ||| 0-4 ||| 1 524574 +los ||| 2004 / 38 / EC on the ||| 0.125 0.122289 1.90631e-06 3.93518e-26 2.718 ||| 0-6 ||| 8 524574 +los ||| 2006 was the first ||| 0.5 0.122289 1.90631e-06 6.80153e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| 2006 was the ||| 0.142857 0.122289 1.90631e-06 1.26328e-08 2.718 ||| 0-2 ||| 7 524574 +los ||| 2008 , will demonstrate . the ||| 1 0.122289 1.90631e-06 7.91212e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| 25 Member ||| 0.0769231 0.0007388 1.90631e-06 1.04152e-09 2.718 ||| 0-1 ||| 13 524574 +los ||| 38 / EC on the ||| 0.1 0.122289 1.90631e-06 1.3579e-17 2.718 ||| 0-4 ||| 10 524574 +los ||| 547 - C5-0684 / 2001 - 2001 ||| 1 1 1.90631e-06 8.62176e-31 2.718 ||| 0-2 ||| 1 524574 +los ||| 547 - C5-0684 / 2001 - ||| 1 1 1.90631e-06 4.4442e-26 2.718 ||| 0-2 ||| 1 524574 +los ||| 547 - C5-0684 / 2001 ||| 1 1 1.90631e-06 1.17818e-23 2.718 ||| 0-2 ||| 1 524574 +los ||| 547 - C5-0684 / ||| 1 1 1.90631e-06 6.07308e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| 547 - C5-0684 ||| 1 1 1.90631e-06 2.64047e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| 6 100 ||| 0.25 0.000352 1.90631e-06 1.04e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| 63 ||| 0.0034965 0.0034364 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 286 524574 +los ||| 75 , presented by ||| 1 0.0062464 1.90631e-06 1.67439e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| 90 % of the Community average . ||| 0.5 0.122289 1.90631e-06 2.90474e-23 2.718 ||| 0-3 ||| 2 524574 +los ||| 90 % of the Community average ||| 0.0666667 0.122289 1.90631e-06 9.58976e-21 2.718 ||| 0-3 ||| 15 524574 +los ||| 90 % of the Community ||| 1 0.122289 1.90631e-06 3.86684e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| 90 % of the ||| 0.00995025 0.122289 3.81262e-06 2.38841e-12 2.718 ||| 0-3 ||| 201 524574 +los ||| : the ||| 0.000962927 0.122289 1.52505e-05 0.000144472 2.718 ||| 0-1 ||| 8308 524574 +los ||| : their ||| 0.0126582 0.0236713 1.90631e-06 7.70497e-07 2.718 ||| 0-1 ||| 79 524574 +los ||| ; I would merely thank the rapporteur ||| 1 0.122289 1.90631e-06 2.67241e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| ; I would merely thank the ||| 1 0.122289 1.90631e-06 3.69628e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| ; it accelerated the proceedings ||| 0.333333 0.122289 1.90631e-06 1.53516e-16 2.718 ||| 0-3 ||| 3 524574 +los ||| ; it accelerated the ||| 0.333333 0.122289 1.90631e-06 4.22908e-12 2.718 ||| 0-3 ||| 3 524574 +los ||| ; s ||| 0.015625 0.0341558 1.90631e-06 4.85408e-07 2.718 ||| 0-1 ||| 64 524574 +los ||| ; some of the money for these ||| 1 0.0240362 1.90631e-06 3.42768e-18 2.718 ||| 0-6 ||| 1 524574 +los ||| ; that is the soul ||| 1 0.122289 1.90631e-06 2.99512e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| ; that is the ||| 0.0166667 0.122289 1.90631e-06 6.96539e-08 2.718 ||| 0-3 ||| 60 524574 +los ||| ; the capital collected should be ||| 0.5 0.122289 1.90631e-06 3.5722e-18 2.718 ||| 0-1 ||| 2 524574 +los ||| ; the capital collected should ||| 0.5 0.122289 1.90631e-06 1.9711e-16 2.718 ||| 0-1 ||| 2 524574 +los ||| ; the capital collected ||| 0.5 0.122289 1.90631e-06 4.44843e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| ; the capital ||| 0.5 0.122289 1.90631e-06 3.42187e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| ; the differences in pay ||| 1 0.122289 1.90631e-06 9.47606e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| ; the differences in ||| 1 0.122289 1.90631e-06 6.61736e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| ; the differences ||| 0.333333 0.122289 1.90631e-06 3.09157e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| ; the overall ||| 1 0.0611575 1.90631e-06 2.71529e-11 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| ; the ||| 0.00361882 0.122289 1.71568e-05 0.000132119 2.718 ||| 0-1 ||| 2487 524574 +los ||| ? the ||| 0.0357143 0.122289 1.90631e-06 7.33086e-05 2.718 ||| 0-1 ||| 28 524574 +los ||| ACP ) ||| 0.028169 0.0780389 3.81262e-06 3.75854e-07 2.718 ||| 0-0 ||| 71 524574 +los ||| ACP ||| 0.00204221 0.0780389 1.14379e-05 0.0002615 2.718 ||| 0-0 ||| 2938 524574 +los ||| Accompanying ||| 0.166667 0.206897 3.81262e-06 1.75e-05 2.718 ||| 0-0 ||| 12 524574 +los ||| Advisory Councils ||| 0.1 0.108999 1.90631e-06 3.9292e-10 2.718 ||| 0-1 ||| 10 524574 +los ||| Affairs , Human Rights ||| 0.25 0.179508 1.90631e-06 7.64423e-13 2.718 ||| 0-2 ||| 4 524574 +los ||| Affairs , Human ||| 0.25 0.179508 1.90631e-06 9.27698e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| Afghan ||| 0.00131062 0.0013889 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 763 524574 +los ||| Africa ' s ||| 0.0769231 0.0444479 1.90631e-06 3.4606e-10 2.718 ||| 0-1 ||| 13 524574 +los ||| Africa ' ||| 0.0217391 0.0444479 1.90631e-06 1.81917e-07 2.718 ||| 0-1 ||| 46 524574 +los ||| Africa remains the poorest ||| 1 0.122289 1.90631e-06 9.94529e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| Africa remains the ||| 0.5 0.122289 1.90631e-06 1.30859e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| African , Caribbean and Pacific ( ||| 0.0714286 0.0136742 1.90631e-06 1.96725e-21 2.718 ||| 0-0 ||| 14 524574 +los ||| African , Caribbean and Pacific ||| 0.008 0.0136742 1.90631e-06 2.03987e-18 2.718 ||| 0-0 ||| 125 524574 +los ||| African , Caribbean and ||| 0.0144928 0.0136742 5.71893e-06 4.34016e-13 2.718 ||| 0-0 ||| 207 524574 +los ||| African , Caribbean ||| 0.0144231 0.0136742 5.71893e-06 3.46495e-11 2.718 ||| 0-0 ||| 208 524574 +los ||| African , ||| 0.0117994 0.0136742 7.62523e-06 5.33069e-06 2.718 ||| 0-0 ||| 339 524574 +los ||| African Americans gave ||| 1 0.0821836 1.90631e-06 1.92414e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| African Americans ||| 0.5 0.0821836 1.90631e-06 2.30436e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| African delegates ||| 0.333333 0.0136742 1.90631e-06 2.7267e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| African ||| 0.0029146 0.0136742 1.90631e-05 4.47e-05 2.718 ||| 0-0 ||| 3431 524574 +los ||| Africans ||| 0.00438596 0.296392 1.90631e-06 0.0001118 2.718 ||| 0-0 ||| 228 524574 +los ||| Aim ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| Air Passenger ||| 0.333333 0.0519481 1.90631e-06 2.106e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| Air ||| 0.00416667 0.0032051 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 240 524574 +los ||| Albania to bring the ||| 1 0.122289 1.90631e-06 9.84845e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| Albanians ||| 0.00561798 0.144681 3.81262e-06 6.61e-05 2.718 ||| 0-0 ||| 356 524574 +los ||| Alpine ||| 0.00425532 0.176849 1.90631e-06 5.35e-05 2.718 ||| 0-0 ||| 235 524574 +los ||| Alternative ||| 0.111111 0.0416667 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| America 's ||| 0.0238095 0.0576602 1.90631e-06 2.37123e-06 2.718 ||| 0-0 0-1 ||| 42 524574 +los ||| America , Latin America ||| 0.333333 0.0803391 1.90631e-06 1.38067e-14 2.718 ||| 0-0 ||| 3 524574 +los ||| America , Latin ||| 0.333333 0.0803391 1.90631e-06 4.98437e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| America , ||| 0.00325203 0.0803391 3.81262e-06 4.61516e-05 2.718 ||| 0-0 ||| 615 524574 +los ||| America ||| 0.00433025 0.0803391 2.85946e-05 0.000387 2.718 ||| 0-0 ||| 3464 524574 +los ||| America ’ ||| 0.05 0.0803391 1.90631e-06 6.74193e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| American Embassy ||| 0.2 0.0389377 1.90631e-06 6.728e-11 2.718 ||| 0-0 ||| 5 524574 +los ||| American States Observation Mission and the ||| 1 0.122289 1.90631e-06 3.21631e-23 2.718 ||| 0-5 ||| 1 524574 +los ||| American cases ||| 1 0.136512 1.90631e-06 4.26112e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| American media ||| 0.5 0.139163 1.90631e-06 3.09376e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| American venture ||| 0.25 0.0389377 1.90631e-06 1.74928e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| American ||| 0.00276869 0.0389377 2.09694e-05 0.0001682 2.718 ||| 0-0 ||| 3973 524574 +los ||| Americans anyway , ||| 0.25 0.0821836 1.90631e-06 5.65496e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| Americans anyway ||| 0.25 0.0821836 1.90631e-06 4.74192e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| Americans are ||| 0.0151515 0.0821836 1.90631e-06 2.021e-06 2.718 ||| 0-0 ||| 66 524574 +los ||| Americans gave ||| 1 0.0821836 1.90631e-06 1.11222e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| Americans ||| 0.00285103 0.0821836 7.62523e-06 0.0001332 2.718 ||| 0-0 ||| 1403 524574 +los ||| Animal ||| 0.0254237 0.0881057 5.71893e-06 1.94e-05 2.718 ||| 0-0 ||| 118 524574 +los ||| Arab ||| 0.00198544 0.0074124 5.71893e-06 1.07e-05 2.718 ||| 0-0 ||| 1511 524574 +los ||| Armed ||| 0.0512821 0.125 3.81262e-06 8.8e-06 2.718 ||| 0-0 ||| 39 524574 +los ||| Armenia 's ||| 0.142857 0.0349814 1.90631e-06 8.57808e-09 2.718 ||| 0-1 ||| 7 524574 +los ||| Articles ||| 0.00128041 0.445042 1.90631e-06 0.0005629 2.718 ||| 0-0 ||| 781 524574 +los ||| As a result of the ||| 0.166667 0.122289 1.90631e-06 3.31978e-12 2.718 ||| 0-4 ||| 6 524574 +los ||| Asian ||| 0.000937207 0.0173913 1.90631e-06 1.56e-05 2.718 ||| 0-0 ||| 1067 524574 +los ||| Association , the ||| 0.125 0.122289 1.90631e-06 4.39933e-07 2.718 ||| 0-2 ||| 8 524574 +los ||| Bahrain , back into the ||| 1 0.122289 1.90631e-06 2.47279e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| Balkans , and since the ||| 1 0.122289 1.90631e-06 5.04319e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| Balkans was also noted ||| 1 0.0014104 1.90631e-06 1.88763e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| Balkans was also ||| 1 0.0014104 1.90631e-06 6.16873e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| Balkans was ||| 0.333333 0.0014104 1.90631e-06 1.22187e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| Balkans ||| 0.000333667 0.0014104 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 2997 524574 +los ||| Bank and the President of the ||| 0.5 0.122289 1.90631e-06 7.20264e-14 2.718 ||| 0-5 ||| 2 524574 +los ||| Based ||| 0.111111 0.030303 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| Belarusians ||| 0.00990099 0.384615 1.90631e-06 5.83e-05 2.718 ||| 0-0 ||| 101 524574 +los ||| Belts off ||| 0.5 0.2 1.90631e-06 7.733e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| Belts ||| 0.125 0.2 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| Beneš ||| 0.0333333 0.0208333 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| Bodies ||| 0.0454545 0.0384615 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 22 524574 +los ||| Bourlanges produced their ||| 1 0.0236713 1.90631e-06 2.66243e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| Britain 's ||| 0.0833333 0.0349814 3.81262e-06 6.86246e-08 2.718 ||| 0-1 ||| 24 524574 +los ||| British ||| 0.00104995 0.002405 1.33442e-05 1.46e-05 2.718 ||| 0-0 ||| 6667 524574 +los ||| Britons ||| 0.037037 0.215686 1.90631e-06 1.07e-05 2.718 ||| 0-0 ||| 27 524574 +los ||| Buddhist ||| 0.011236 0.0079365 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 89 524574 +los ||| Budgets of the European Union ||| 1 0.122289 1.90631e-06 4.39002e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| Budgets of the European ||| 1 0.122289 1.90631e-06 7.87588e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| Budgets of the ||| 0.166667 0.122289 1.90631e-06 2.3553e-07 2.718 ||| 0-2 ||| 6 524574 +los ||| Burma 's ||| 0.0416667 0.0349814 1.90631e-06 4.1665e-08 2.718 ||| 0-1 ||| 24 524574 +los ||| C ||| 0.00636943 0.0123153 3.81262e-06 4.9e-06 2.718 ||| 0-0 ||| 314 524574 +los ||| C5-0684 / 2001 - 2001 / 0265 ||| 1 1 1.90631e-06 3.00402e-32 2.718 ||| 0-0 ||| 1 524574 +los ||| C5-0684 / 2001 - 2001 / ||| 1 1 1.90631e-06 7.51004e-26 2.718 ||| 0-0 ||| 1 524574 +los ||| C5-0684 / 2001 - 2001 ||| 1 1 1.90631e-06 3.26524e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| C5-0684 / 2001 - ||| 1 1 1.90631e-06 1.68311e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| C5-0684 / 2001 ||| 1 1 1.90631e-06 4.462e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| C5-0684 / ||| 1 1 1.90631e-06 2.3e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| C5-0684 ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| CDS ||| 0.0526316 0.0588235 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 19 524574 +los ||| CFCs - would ||| 1 0.27957 1.90631e-06 5.60074e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| CFCs - ||| 0.5 0.27957 1.90631e-06 9.54341e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| CFCs ||| 0.0147059 0.27957 1.90631e-06 2.53e-05 2.718 ||| 0-0 ||| 68 524574 +los ||| CIS States ||| 0.142857 0.224121 1.90631e-06 1.97308e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| CO2 ||| 0.000619579 0.0005554 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1614 524574 +los ||| COM ( 2001 ) 547 - C5-0684 ||| 1 1 1.90631e-06 7.17148e-31 2.718 ||| 0-6 ||| 1 524574 +los ||| Cairo , in the presence of Commissioner ||| 1 0.122289 1.90631e-06 1.41492e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| Cairo , in the presence of ||| 1 0.122289 1.90631e-06 1.60422e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| Cairo , in the presence ||| 1 0.122289 1.90631e-06 2.95089e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| Cairo , in the ||| 1 0.122289 1.90631e-06 7.66464e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| Cavalry ||| 0.5 0.166667 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| Central American ||| 0.0106383 0.0389377 1.90631e-06 3.75086e-09 2.718 ||| 0-1 ||| 94 524574 +los ||| Central Bank and the President of the ||| 0.5 0.122289 1.90631e-06 1.60619e-18 2.718 ||| 0-6 ||| 2 524574 +los ||| Centres ||| 0.0178571 0.108696 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 56 524574 +los ||| Chad and Sudan ||| 0.047619 0.0020243 1.90631e-06 4.50932e-14 2.718 ||| 0-0 ||| 21 524574 +los ||| Chad and ||| 0.00613497 0.0020243 1.90631e-06 1.25259e-08 2.718 ||| 0-0 ||| 163 524574 +los ||| Chad ||| 0.00169492 0.0020243 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 590 524574 +los ||| Charles ||| 0.00675676 0.0064935 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 148 524574 +los ||| Children and Young People , the ||| 1 0.122289 1.90631e-06 2.10632e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| Children ||| 0.0124224 0.249123 3.81262e-06 6.9e-05 2.718 ||| 0-0 ||| 161 524574 +los ||| Christian Democrat ||| 0.0114943 0.0023055 1.90631e-06 4.212e-10 2.718 ||| 0-0 ||| 87 524574 +los ||| Christian ||| 0.00391389 0.0023055 1.14379e-05 7.8e-06 2.718 ||| 0-0 ||| 1533 524574 +los ||| Christians ||| 0.00097561 0.340321 1.90631e-06 0.0004735 2.718 ||| 0-0 ||| 1025 524574 +los ||| Citizens ' ||| 0.00340715 0.219025 3.81262e-06 4.19951e-06 2.718 ||| 0-0 0-1 ||| 587 524574 +los ||| Citizens ||| 0.00649351 0.393602 1.90631e-06 0.0007895 2.718 ||| 0-0 ||| 154 524574 +los ||| Citizens ’ Freedoms and Rights ||| 0.2 0.0139748 1.90631e-06 1.51657e-19 2.718 ||| 0-1 ||| 5 524574 +los ||| Citizens ’ Freedoms and ||| 0.333333 0.0139748 1.90631e-06 1.84049e-15 2.718 ||| 0-1 ||| 3 524574 +los ||| Citizens ’ Freedoms ||| 0.333333 0.0139748 1.90631e-06 1.46935e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| Citizens ’ ||| 0.0909091 0.0139748 1.90631e-06 1.63261e-08 2.718 ||| 0-1 ||| 11 524574 +los ||| Civil Guard officers ||| 1 0.149241 1.90631e-06 4.68112e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| Collective ||| 0.111111 0.166667 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| Commercial Debt Directive ||| 0.2 0.0001733 1.90631e-06 5.32e-19 2.718 ||| 0-2 ||| 5 524574 +los ||| Commission 's ||| 0.00195312 0.0349814 5.71893e-06 3.5789e-06 2.718 ||| 0-1 ||| 1536 524574 +los ||| Commission paper on the European ||| 0.5 0.122289 1.90631e-06 1.63131e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| Commission paper on the ||| 0.5 0.122289 1.90631e-06 4.87848e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| Commission point of view are ||| 1 0.0005024 1.90631e-06 4.53668e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| Commission will be coming in and a ||| 1 0.0093772 1.90631e-06 7.08505e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| Commission will be coming in and ||| 1 0.0093772 1.90631e-06 1.5984e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| Commission will be coming in ||| 1 0.0093772 1.90631e-06 1.27608e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| Commission will be coming ||| 1 0.0093772 1.90631e-06 5.96173e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| Commissioners , thereby revealing the ||| 1 0.122289 1.90631e-06 6.82695e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| Commissioners ||| 0.000905524 0.12491 5.71893e-06 0.0005056 2.718 ||| 0-0 ||| 3313 524574 +los ||| Community applies the ||| 1 0.122289 1.90631e-06 5.81974e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| Community funds . ||| 0.0131579 0.220459 1.90631e-06 1.83516e-09 2.718 ||| 0-1 ||| 76 524574 +los ||| Community funds ||| 0.00255102 0.220459 1.90631e-06 6.05862e-07 2.718 ||| 0-1 ||| 392 524574 +los ||| Community law , ||| 0.00263158 0.000733 1.90631e-06 4.28902e-10 2.718 ||| 0-0 ||| 380 524574 +los ||| Community law ||| 0.000382995 0.000733 1.90631e-06 3.59652e-09 2.718 ||| 0-0 ||| 2611 524574 +los ||| Community official ||| 0.5 0.0037271 1.90631e-06 2.03994e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| Community products against producers ||| 1 0.36135 1.90631e-06 1.01597e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| Community resources ||| 0.00813008 0.21958 1.90631e-06 7.84843e-07 2.718 ||| 0-1 ||| 123 524574 +los ||| Community taxation , which would give a ||| 1 0.058762 1.90631e-06 7.06345e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| Community taxation , which would give ||| 1 0.058762 1.90631e-06 1.59353e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| Community taxation , which would ||| 1 0.058762 1.90631e-06 2.62959e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| Community taxation , which ||| 0.5 0.058762 1.90631e-06 4.4807e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| Community taxation , ||| 0.5 0.058762 1.90631e-06 5.27476e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| Community taxation ||| 0.2 0.058762 1.90631e-06 4.42311e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| Community treaties ||| 0.0714286 0.135783 1.90631e-06 4.0135e-08 2.718 ||| 0-1 ||| 14 524574 +los ||| Community ||| 0.000482058 0.000733 3.05009e-05 2.04e-05 2.718 ||| 0-0 ||| 33191 524574 +los ||| Congressmen ||| 0.111111 0.357143 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| Conservatives ||| 0.00170648 0.209424 1.90631e-06 0.0001945 2.718 ||| 0-0 ||| 586 524574 +los ||| Construction ||| 0.111111 0.222222 5.71893e-06 7.8e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| Consumer ||| 0.00415369 0.0270588 7.62523e-06 0.0001118 2.718 ||| 0-0 ||| 963 524574 +los ||| Consumers ' Association , ||| 0.333333 0.0444479 1.90631e-06 2.18213e-15 2.718 ||| 0-1 ||| 3 524574 +los ||| Consumers ' Association ||| 0.125 0.0444479 1.90631e-06 1.8298e-14 2.718 ||| 0-1 ||| 8 524574 +los ||| Consumers ' ||| 0.0454545 0.0444479 1.90631e-06 2.12768e-09 2.718 ||| 0-1 ||| 22 524574 +los ||| Convention ' s members will be ||| 0.5 0.154615 1.90631e-06 6.59007e-17 2.718 ||| 0-3 ||| 2 524574 +los ||| Convention ' s members will ||| 0.5 0.154615 1.90631e-06 3.63632e-15 2.718 ||| 0-3 ||| 2 524574 +los ||| Convention ' s members ||| 0.5 0.154615 1.90631e-06 4.20326e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| Cooperation at the External Borders ||| 0.25 0.122289 1.90631e-06 1.1463e-18 2.718 ||| 0-2 ||| 4 524574 +los ||| Cooperation at the External ||| 0.25 0.122289 1.90631e-06 8.18785e-13 2.718 ||| 0-2 ||| 4 524574 +los ||| Cooperation at the ||| 0.25 0.122289 1.90631e-06 3.16133e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| Council and the Commission ||| 0.000303674 0.122289 1.90631e-06 1.08526e-09 2.718 ||| 0-2 ||| 3293 524574 +los ||| Council and the ||| 0.000235516 0.122289 1.90631e-06 1.85801e-06 2.718 ||| 0-2 ||| 4246 524574 +los ||| Councils and summits ||| 1 0.108999 1.90631e-06 3.03678e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| Councils and ||| 0.2 0.108999 1.90631e-06 1.04717e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| Councils ||| 0.00515464 0.108999 5.71893e-06 8.36e-05 2.718 ||| 0-0 ||| 582 524574 +los ||| Countries ||| 0.0162602 0.0342857 3.81262e-06 5.8e-06 2.718 ||| 0-0 ||| 123 524574 +los ||| Court makes mention of the ||| 1 0.122289 1.90631e-06 1.80231e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| Court ’ s Opinion on the ||| 1 0.122289 1.90631e-06 1.78058e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| Court ’ s Opinion on the ‘ ||| 1 0.122289 1.90631e-06 1.99959e-23 2.718 ||| 0-5 ||| 1 524574 +los ||| Credit Default ||| 0.5 0.666667 1.90631e-06 2.09e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| Croatia 's ||| 0.0196078 0.0349814 1.90631e-06 2.6347e-08 2.718 ||| 0-1 ||| 51 524574 +los ||| Croatian ||| 0.00239234 0.0057803 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 418 524574 +los ||| Cubans ||| 0.015625 0.324074 1.90631e-06 3.4e-05 2.718 ||| 0-0 ||| 64 524574 +los ||| Cultural ||| 0.00632911 0.0057471 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 158 524574 +los ||| Culture in the near future . ||| 1 0.122289 1.90631e-06 1.5636e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| Culture in the near future ||| 1 0.122289 1.90631e-06 5.1621e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| Culture in the near ||| 1 0.122289 1.90631e-06 1.94356e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| Culture in the ||| 0.5 0.122289 1.90631e-06 4.95806e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| Cypriots ||| 0.00884956 0.25082 1.90631e-06 0.0001488 2.718 ||| 0-0 ||| 113 524574 +los ||| Czech Republic ||| 0.000629327 0.0010442 1.90631e-06 1.3775e-10 2.718 ||| 0-0 ||| 1589 524574 +los ||| Czech ||| 0.00100301 0.0010442 5.71893e-06 2.9e-06 2.718 ||| 0-0 ||| 2991 524574 +los ||| Czechs ||| 0.00641026 0.141304 1.90631e-06 2.53e-05 2.718 ||| 0-0 ||| 156 524574 +los ||| DNA ||| 0.00497512 0.0048077 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 201 524574 +los ||| Danish ||| 0.000481232 0.000495 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2078 524574 +los ||| Debt Directive ||| 0.2 0.0001733 1.90631e-06 7.6e-13 2.718 ||| 0-1 ||| 5 524574 +los ||| Default ||| 0.5 0.666667 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| Defenders ||| 0.0769231 0.533333 1.90631e-06 1.56e-05 2.718 ||| 0-0 ||| 13 524574 +los ||| Democrat and Reform Party ' s ||| 1 0.0444479 1.90631e-06 3.97365e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| Democrat and Reform Party ' ||| 1 0.0444479 1.90631e-06 2.08887e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| Democratic and Reform Party ||| 0.0769231 0.0077519 1.90631e-06 6.39961e-16 2.718 ||| 0-0 ||| 13 524574 +los ||| Democratic and Reform ||| 0.5 0.0077519 1.90631e-06 4.24377e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| Democratic and ||| 0.0192308 0.0077519 1.90631e-06 1.10228e-07 2.718 ||| 0-0 ||| 52 524574 +los ||| Democratic ||| 0.00110132 0.0077519 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 908 524574 +los ||| Democrats ||| 0.00202634 0.0596369 7.62523e-06 0.0004152 2.718 ||| 0-0 ||| 1974 524574 +los ||| Developing ||| 0.0740741 0.2 3.81262e-06 1.17e-05 2.718 ||| 0-0 ||| 27 524574 +los ||| Directive ( of those ||| 0.166667 0.284705 1.90631e-06 6.74083e-11 2.718 ||| 0-3 ||| 6 524574 +los ||| Directive , standard terms ||| 0.25 0.0001733 1.90631e-06 1.17137e-14 2.718 ||| 0-0 ||| 4 524574 +los ||| Directive , standard ||| 0.25 0.0001733 1.90631e-06 1.06721e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| Directive , ||| 0.00195312 0.0001733 1.90631e-06 2.26584e-07 2.718 ||| 0-0 ||| 512 524574 +los ||| Directive ||| 0.000194628 0.0001733 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 10276 524574 +los ||| Dutch ||| 0.00177305 0.0339335 9.53154e-06 9.53e-05 2.718 ||| 0-0 ||| 2820 524574 +los ||| EC on the ||| 0.0126582 0.122289 1.90631e-06 5.36717e-08 2.718 ||| 0-2 ||| 79 524574 +los ||| ECAs ) ||| 0.166667 0.163934 3.81262e-06 1.39418e-08 2.718 ||| 0-0 ||| 12 524574 +los ||| ECAs ||| 0.0444444 0.163934 3.81262e-06 9.7e-06 2.718 ||| 0-0 ||| 45 524574 +los ||| ECU 1000 million ||| 0.333333 0.024017 1.90631e-06 5.04829e-15 2.718 ||| 0-0 ||| 3 524574 +los ||| ECU 1000 ||| 0.142857 0.024017 1.90631e-06 6.944e-11 2.718 ||| 0-0 ||| 7 524574 +los ||| ECU ||| 0.00883392 0.024017 3.81262e-05 9.92e-05 2.718 ||| 0-0 ||| 2264 524574 +los ||| EIB is mandated by the Council ||| 1 0.122289 1.90631e-06 8.03e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| EIB is mandated by the ||| 1 0.122289 1.90631e-06 2.32215e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| EMU ||| 0.000585823 0.0003196 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1707 524574 +los ||| EPA ) ||| 0.0625 0.0625 1.90631e-06 2.37155e-08 2.718 ||| 0-0 ||| 16 524574 +los ||| EPA ||| 0.00485437 0.0625 1.90631e-06 1.65e-05 2.718 ||| 0-0 ||| 206 524574 +los ||| ESF resources are ||| 0.5 0.21958 1.90631e-06 1.02974e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| ESF resources ||| 0.2 0.21958 1.90631e-06 6.78678e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| EU ' s ||| 0.00534759 0.0444479 1.90631e-06 5.00674e-09 2.718 ||| 0-1 ||| 187 524574 +los ||| EU ' ||| 0.00221729 0.0444479 1.90631e-06 2.63194e-06 2.718 ||| 0-1 ||| 451 524574 +los ||| EU 's ||| 0.00102093 0.0349814 3.81262e-06 3.03174e-06 2.718 ||| 0-1 ||| 1959 524574 +los ||| EU , ||| 0.000221926 0.004319 1.90631e-06 6.44691e-05 2.718 ||| 0-0 ||| 4506 524574 +los ||| EU . it is clear that standards ||| 1 0.0495175 1.90631e-06 3.89748e-18 2.718 ||| 0-6 ||| 1 524574 +los ||| EU / US ||| 0.0333333 0.119294 1.90631e-06 1.36212e-10 2.718 ||| 0-2 ||| 30 524574 +los ||| EU Member ||| 0.000930233 0.004319 1.90631e-06 2.78571e-07 2.718 ||| 0-0 ||| 1075 524574 +los ||| EU Members ||| 0.0714286 0.0865989 1.90631e-06 2.60807e-06 2.718 ||| 0-0 0-1 ||| 14 524574 +los ||| EU and ||| 0.000172087 0.004319 1.90631e-06 6.7715e-06 2.718 ||| 0-0 ||| 5811 524574 +los ||| EU citizens money ' ||| 1 0.0444479 1.90631e-06 4.68764e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| EU consultants ||| 0.2 0.105556 1.90631e-06 9.1538e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| EU countries - mentioning no ||| 1 0.004319 1.90631e-06 3.49567e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| EU countries - mentioning ||| 1 0.004319 1.90631e-06 4.49084e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| EU countries - ||| 0.0769231 0.004319 1.90631e-06 7.74283e-10 2.718 ||| 0-0 ||| 13 524574 +los ||| EU countries ||| 0.000846024 0.004319 1.90631e-06 2.05266e-07 2.718 ||| 0-0 ||| 1182 524574 +los ||| EU expenditure ||| 0.0277778 0.174161 1.90631e-06 5.86932e-07 2.718 ||| 0-1 ||| 36 524574 +los ||| EU forests and other wooded land cover ||| 1 0.004319 1.90631e-06 5.27551e-29 2.718 ||| 0-0 ||| 1 524574 +los ||| EU forests and other wooded land ||| 1 0.004319 1.90631e-06 6.75481e-25 2.718 ||| 0-0 ||| 1 524574 +los ||| EU forests and other wooded ||| 1 0.004319 1.90631e-06 1.7545e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| EU forests and other ||| 0.5 0.004319 1.90631e-06 4.38624e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| EU forests and ||| 0.5 0.004319 1.90631e-06 3.38575e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| EU forests ||| 0.25 0.004319 1.90631e-06 2.703e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| EU gross domestic product ||| 0.125 0.0136561 1.90631e-06 1.0687e-17 2.718 ||| 0-2 ||| 8 524574 +los ||| EU gross domestic ||| 0.166667 0.0136561 1.90631e-06 1.75773e-13 2.718 ||| 0-2 ||| 6 524574 +los ||| EU is ||| 0.000463822 0.004319 1.90631e-06 1.6943e-05 2.718 ||| 0-0 ||| 2156 524574 +los ||| EU membership ||| 0.0020284 0.004319 1.90631e-06 1.32447e-08 2.718 ||| 0-0 ||| 493 524574 +los ||| EU national ||| 0.0625 0.00865205 1.90631e-06 2.31269e-07 2.718 ||| 0-0 0-1 ||| 16 524574 +los ||| EU nationals their ||| 1 0.0236713 1.90631e-06 1.26779e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| EU ||| 0.00223322 0.004319 0.000432732 0.0005406 2.718 ||| 0-0 ||| 101647 524574 +los ||| EU ’ s ||| 0.00442478 0.0341558 3.81262e-06 1.3585e-09 2.718 ||| 0-2 ||| 452 524574 +los ||| EUR 120 million every year , practically ||| 1 0.144232 1.90631e-06 1.34931e-26 2.718 ||| 0-3 ||| 1 524574 +los ||| EUR 120 million every year , ||| 1 0.144232 1.90631e-06 2.07586e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| EUR 120 million every year ||| 0.5 0.144232 1.90631e-06 1.74069e-20 2.718 ||| 0-3 ||| 2 524574 +los ||| EUR 120 million every ||| 0.5 0.144232 1.90631e-06 6.97952e-17 2.718 ||| 0-3 ||| 2 524574 +los ||| EUR 18 billion , approximately the ||| 1 0.122289 1.90631e-06 1.57615e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| EUR 200 per capita a half ||| 0.5 0.0343255 1.90631e-06 5.80943e-25 2.718 ||| 0-0 ||| 2 524574 +los ||| EUR 200 per capita a ||| 0.5 0.0343255 1.90631e-06 2.01716e-20 2.718 ||| 0-0 ||| 2 524574 +los ||| EUR 200 per capita ||| 0.5 0.0343255 1.90631e-06 4.55076e-19 2.718 ||| 0-0 ||| 2 524574 +los ||| EUR 200 per ||| 0.166667 0.0343255 1.90631e-06 1.2641e-13 2.718 ||| 0-0 ||| 6 524574 +los ||| EUR 200 ||| 0.0140845 0.0343255 1.90631e-06 2.8535e-09 2.718 ||| 0-0 ||| 71 524574 +los ||| EUR ||| 0.0223031 0.0343255 0.000455608 0.0005707 2.718 ||| 0-0 ||| 10716 524574 +los ||| EUR ° ||| 1 0.0343255 1.90631e-06 1.02726e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| Eastern ||| 0.000320821 0.0129741 1.90631e-06 5.06e-05 2.718 ||| 0-0 ||| 3117 524574 +los ||| Embassy bombings ||| 0.0666667 0.185771 1.90631e-06 1.828e-11 2.718 ||| 0-1 ||| 15 524574 +los ||| Employers ' ||| 0.166667 0.0444479 1.90631e-06 2.12768e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| Energy ||| 0.00138504 0.0017986 7.62523e-06 4.9e-06 2.718 ||| 0-0 ||| 2888 524574 +los ||| Estonian ||| 0.00490196 0.006135 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 204 524574 +los ||| Euro ||| 0.0023068 0.0050761 3.81262e-06 5.8e-06 2.718 ||| 0-0 ||| 867 524574 +los ||| Euroopean ||| 0.5 0.5 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| Europe ' s ||| 0.0424242 0.0263334 1.33442e-05 2.93407e-10 2.718 ||| 0-0 0-1 0-2 ||| 165 524574 +los ||| Europe ' ||| 0.00340136 0.0444479 5.71893e-06 2.69152e-06 2.718 ||| 0-1 ||| 882 524574 +los ||| Europe 's ||| 0.00796813 0.0349814 2.66883e-05 3.10036e-06 2.718 ||| 0-1 ||| 1757 524574 +los ||| Europe , ||| 9.18358e-05 0.0003966 1.90631e-06 4.17391e-06 2.718 ||| 0-0 ||| 10889 524574 +los ||| Europe . politicians ||| 1 0.299137 1.90631e-06 2.16812e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| Europe . ||| 7.29076e-05 0.0003966 1.90631e-06 1.06015e-07 2.718 ||| 0-0 ||| 13716 524574 +los ||| Europe and the ||| 0.000801282 0.122289 1.90631e-06 2.71877e-06 2.718 ||| 0-2 ||| 1248 524574 +los ||| Europe do we , the ||| 0.5 0.122289 1.90631e-06 1.00946e-09 2.718 ||| 0-4 ||| 2 524574 +los ||| Europe is ||| 0.000288184 0.0003966 1.90631e-06 1.09694e-06 2.718 ||| 0-0 ||| 3470 524574 +los ||| Europe ||| 8.8466e-05 0.0003966 1.71568e-05 3.5e-05 2.718 ||| 0-0 ||| 101734 524574 +los ||| Europe ’ s ||| 0.0116279 0.0240653 5.71893e-06 4.31105e-10 2.718 ||| 0-1 0-2 ||| 258 524574 +los ||| Europe ’ ||| 0.000743494 0.0139748 1.90631e-06 2.73544e-07 2.718 ||| 0-1 ||| 1345 524574 +los ||| European Coal and ||| 0.0114943 0.0034168 1.90631e-06 2.56919e-11 2.718 ||| 0-0 ||| 87 524574 +los ||| European Coal ||| 0.0128205 0.0034168 1.90631e-06 2.0511e-09 2.718 ||| 0-0 ||| 78 524574 +los ||| European Commission 's ||| 0.00340136 0.0349814 1.90631e-06 1.19675e-08 2.718 ||| 0-2 ||| 294 524574 +los ||| European Councils and summits ||| 1 0.108999 1.90631e-06 1.01547e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| European Councils and ||| 0.0833333 0.108999 1.90631e-06 3.50162e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| European Councils ||| 0.00444444 0.108999 1.90631e-06 2.7955e-07 2.718 ||| 0-1 ||| 225 524574 +los ||| European Democrats ||| 0.000529101 0.0596369 1.90631e-06 1.38839e-06 2.718 ||| 0-1 ||| 1890 524574 +los ||| European Herbal Practitioners ' Association , the ||| 1 0.122289 1.90631e-06 2.22335e-24 2.718 ||| 0-6 ||| 1 524574 +los ||| European Parliament ||| 2.43214e-05 0.0034168 1.90631e-06 6.54073e-07 2.718 ||| 0-0 ||| 41116 524574 +los ||| European Union has got a fine record ||| 1 0.0063694 1.90631e-06 3.79033e-23 2.718 ||| 0-5 ||| 1 524574 +los ||| European Union has got a fine ||| 1 0.0063694 1.90631e-06 6.79271e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| European Union ||| 4.85479e-05 0.0034168 9.53154e-06 6.35157e-07 2.718 ||| 0-0 ||| 102991 524574 +los ||| European added value ||| 0.00287356 0.0034168 1.90631e-06 7.13343e-12 2.718 ||| 0-0 ||| 348 524574 +los ||| European added ||| 0.00395257 0.0034168 1.90631e-06 8.12464e-08 2.718 ||| 0-0 ||| 253 524574 +los ||| European buildings ||| 0.166667 0.143621 1.90631e-06 7.13441e-07 2.718 ||| 0-0 0-1 ||| 6 524574 +los ||| European citizens ||| 0.000204876 0.293572 1.90631e-06 5.06173e-05 2.718 ||| 0-1 ||| 4881 524574 +los ||| European countries ||| 0.000428266 0.0957208 1.90631e-06 2.78754e-05 2.718 ||| 0-1 ||| 2335 524574 +los ||| European farmers if we vote for this ||| 0.333333 0.380089 1.90631e-06 1.21685e-18 2.718 ||| 0-1 ||| 3 524574 +los ||| European farmers if we vote for ||| 0.333333 0.380089 1.90631e-06 1.88325e-16 2.718 ||| 0-1 ||| 3 524574 +los ||| European farmers if we vote ||| 0.333333 0.380089 1.90631e-06 2.45033e-14 2.718 ||| 0-1 ||| 3 524574 +los ||| European farmers if we ||| 0.333333 0.380089 1.90631e-06 1.55775e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| European farmers if ||| 0.333333 0.380089 1.90631e-06 1.37219e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| European farmers ||| 0.00213675 0.380089 1.90631e-06 1.64216e-05 2.718 ||| 0-1 ||| 468 524574 +los ||| European military ||| 0.0217391 0.00202585 1.90631e-06 5.58355e-09 2.718 ||| 0-0 0-1 ||| 46 524574 +los ||| European pension ||| 0.0185185 0.0543335 1.90631e-06 8.0287e-07 2.718 ||| 0-1 ||| 54 524574 +los ||| European politicians have joined in and even ||| 1 0.299137 1.90631e-06 1.16294e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| European politicians have joined in and ||| 1 0.299137 1.90631e-06 1.91115e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| European politicians have joined in ||| 1 0.299137 1.90631e-06 1.52576e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| European politicians have joined ||| 1 0.299137 1.90631e-06 7.12822e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| European politicians have ||| 0.25 0.299137 1.90631e-06 5.65732e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| European politicians ||| 0.00819672 0.299137 1.90631e-06 4.73028e-06 2.718 ||| 0-1 ||| 122 524574 +los ||| European taxpayers ||| 0.00315457 0.396994 1.90631e-06 4.72393e-06 2.718 ||| 0-1 ||| 317 524574 +los ||| European ||| 0.00603463 0.0034168 0.00196731 0.0011395 2.718 ||| 0-0 ||| 171013 524574 +los ||| Europeans at ||| 0.0588235 0.354859 1.90631e-06 1.1432e-05 2.718 ||| 0-0 ||| 17 524574 +los ||| Europeans have ||| 0.00769231 0.354859 1.90631e-06 3.26514e-05 2.718 ||| 0-0 ||| 130 524574 +los ||| Europeans that ||| 0.0185185 0.354859 1.90631e-06 4.59247e-05 2.718 ||| 0-0 ||| 54 524574 +los ||| Europeans ||| 0.00209884 0.354859 2.09694e-05 0.0027301 2.718 ||| 0-0 ||| 5241 524574 +los ||| Europhiles ||| 0.0625 0.309524 1.90631e-06 1.26e-05 2.718 ||| 0-0 ||| 16 524574 +los ||| Europol 's ||| 0.0232558 0.0349814 1.90631e-06 5.26939e-08 2.718 ||| 0-1 ||| 43 524574 +los ||| Euros ||| 0.0344828 0.0322581 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 29 524574 +los ||| Exchequer records ||| 1 0.148855 1.90631e-06 4.552e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| Ferries ||| 0.04 0.0526316 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 25 524574 +los ||| Finance ||| 0.0030349 0.0411877 3.81262e-06 4.18e-05 2.718 ||| 0-0 ||| 659 524574 +los ||| Financial Instruments ||| 0.0952381 0.178571 3.81262e-06 9.797e-11 2.718 ||| 0-1 ||| 21 524574 +los ||| Fish ||| 0.0666667 0.0833333 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| French , English and ||| 0.111111 0.0001578 1.90631e-06 2.31535e-14 2.718 ||| 0-0 ||| 9 524574 +los ||| French , English ||| 0.1 0.0001578 1.90631e-06 1.84845e-12 2.718 ||| 0-0 ||| 10 524574 +los ||| French , ||| 0.00277778 0.0001578 1.90631e-06 1.19255e-07 2.718 ||| 0-0 ||| 360 524574 +los ||| French ||| 0.000139762 0.0001578 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 7155 524574 +los ||| Fridays ||| 0.0104167 0.278761 1.90631e-06 6.13e-05 2.718 ||| 0-0 ||| 96 524574 +los ||| Fundamental Freedoms ||| 0.0107527 0.384364 5.71893e-06 1.23471e-08 2.718 ||| 0-0 ||| 279 524574 +los ||| Fundamental Rights ||| 0.000732064 0.384364 3.81262e-06 1.13045e-07 2.718 ||| 0-0 ||| 2732 524574 +los ||| Fundamental ||| 0.0128458 0.384364 2.4782e-05 0.0013719 2.718 ||| 0-0 ||| 1012 524574 +los ||| Funds appropriations ||| 0.111111 0.189378 1.90631e-06 2.65802e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| Funds to the new ||| 1 0.122289 1.90631e-06 8.52051e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| Funds to the ||| 1 0.122289 1.90631e-06 1.42555e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| Funds ||| 0.000822368 0.0005972 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1216 524574 +los ||| GBP ||| 0.00408163 0.005298 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 245 524574 +los ||| GCC ||| 0.0128205 0.0347222 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 78 524574 +los ||| GMO ||| 0.00263852 0.134146 1.90631e-06 6.42e-05 2.718 ||| 0-0 ||| 379 524574 +los ||| GMOs . ||| 0.00409836 0.258789 1.90631e-06 1.56084e-06 2.718 ||| 0-0 ||| 244 524574 +los ||| GMOs can ||| 0.0454545 0.258789 1.90631e-06 1.53266e-06 2.718 ||| 0-0 ||| 22 524574 +los ||| GMOs that contain ||| 1 0.258789 1.90631e-06 2.96451e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| GMOs that ||| 0.0625 0.258789 1.90631e-06 8.66817e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| GMOs ||| 0.00482315 0.258789 1.14379e-05 0.0005153 2.718 ||| 0-0 ||| 1244 524574 +los ||| Geneva Refugee ||| 0.111111 0.314159 1.90631e-06 6.4907e-10 2.718 ||| 0-1 ||| 9 524574 +los ||| German providers ||| 1 0.315424 1.90631e-06 1.59566e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| German ||| 0.000180897 0.0002068 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 5528 524574 +los ||| Germans ||| 0.00243309 0.176605 1.90631e-06 7.49e-05 2.718 ||| 0-0 ||| 411 524574 +los ||| Germany ' s ||| 0.111111 0.0393018 1.90631e-06 2.17121e-10 2.718 ||| 0-1 0-2 ||| 9 524574 +los ||| Germany and the ||| 0.00694444 0.122289 1.90631e-06 1.39162e-07 2.718 ||| 0-2 ||| 144 524574 +los ||| God 's ||| 0.027027 0.0349814 1.90631e-06 5.08558e-08 2.718 ||| 0-1 ||| 37 524574 +los ||| Government attending . we need the ||| 1 0.122289 1.90631e-06 5.60614e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| Governments and Ministers ||| 1 0.127711 1.90631e-06 1.5095e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| Governments and ||| 0.0833333 0.127711 1.90631e-06 6.45084e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| Governments ||| 0.0104439 0.127711 7.62523e-06 5.15e-05 2.718 ||| 0-0 ||| 383 524574 +los ||| Great Lakes region ||| 0.00934579 0.390449 1.90631e-06 6.21636e-14 2.718 ||| 0-1 ||| 107 524574 +los ||| Great Lakes ||| 0.00291545 0.390449 1.90631e-06 6.3497e-10 2.718 ||| 0-1 ||| 343 524574 +los ||| Greens / European Free Alliance , ||| 0.004329 0.0980871 1.90631e-06 2.53578e-21 2.718 ||| 0-0 ||| 231 524574 +los ||| Greens / European Free Alliance ||| 0.00123305 0.0980871 1.90631e-06 2.12635e-20 2.718 ||| 0-0 ||| 811 524574 +los ||| Greens / European Free ||| 0.0833333 0.0980871 1.90631e-06 7.20798e-16 2.718 ||| 0-0 ||| 12 524574 +los ||| Greens / European ||| 0.125 0.0980871 1.90631e-06 1.80199e-10 2.718 ||| 0-0 ||| 8 524574 +los ||| Greens / ||| 0.00120919 0.0980871 1.90631e-06 5.3889e-08 2.718 ||| 0-0 ||| 827 524574 +los ||| Greens ||| 0.000965717 0.0980871 3.81262e-06 0.0002343 2.718 ||| 0-0 ||| 2071 524574 +los ||| Group of the European ||| 0.00137363 0.062134 1.90631e-06 1.54335e-09 2.718 ||| 0-1 0-2 ||| 728 524574 +los ||| Group of the Party of ||| 0.00249377 0.122289 1.90631e-06 6.21901e-11 2.718 ||| 0-2 ||| 401 524574 +los ||| Group of the Party ||| 0.00483092 0.122289 3.81262e-06 1.14396e-09 2.718 ||| 0-2 ||| 414 524574 +los ||| Group of the ||| 0.00308748 0.122289 1.71568e-05 7.58592e-06 2.718 ||| 0-2 ||| 2915 524574 +los ||| Groups ||| 0.00425532 0.102426 1.90631e-06 3.69e-05 2.718 ||| 0-0 ||| 235 524574 +los ||| Guard officers ||| 1 0.149241 1.90631e-06 6.884e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| Health Risks ||| 0.333333 0.307692 1.90631e-06 8.307e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| Herbal Practitioners ' Association , the ||| 1 0.122289 1.90631e-06 6.64896e-22 2.718 ||| 0-5 ||| 1 524574 +los ||| Hindu ||| 0.025641 0.0188679 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 39 524574 +los ||| Hmong people ||| 0.25 0.0894672 3.81262e-06 1.10254e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| Hong ||| 0.00483092 0.0007348 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 207 524574 +los ||| Hoppenstedt ||| 0.00884956 0.0061728 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 113 524574 +los ||| House , and which still go on ||| 1 0.0006914 1.90631e-06 4.98751e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| House of the ||| 0.0135135 0.122289 1.90631e-06 5.83228e-06 2.718 ||| 0-2 ||| 74 524574 +los ||| House should always uphold the ||| 1 0.122289 1.90631e-06 8.50335e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| Human Rights , ||| 0.00120048 0.179508 1.90631e-06 8.56977e-09 2.718 ||| 0-0 ||| 833 524574 +los ||| Human Rights and ||| 0.00147493 0.179508 1.90631e-06 9.00124e-10 2.718 ||| 0-0 ||| 678 524574 +los ||| Human Rights ||| 0.000667557 0.179508 7.62523e-06 7.1861e-08 2.718 ||| 0-0 ||| 5992 524574 +los ||| Human ||| 0.00337933 0.179508 2.28757e-05 0.0008721 2.718 ||| 0-0 ||| 3551 524574 +los ||| Hänsch and Mrs Méndez de ||| 1 0.0566667 1.90631e-06 4.63119e-22 2.718 ||| 0-3 ||| 1 524574 +los ||| Hänsch and Mrs Méndez ||| 1 0.0566667 1.90631e-06 1.35415e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| I am referring to the ||| 0.00492611 0.122289 1.90631e-06 1.48795e-11 2.718 ||| 0-4 ||| 203 524574 +los ||| I am sure - necessary ||| 1 0.0003466 1.90631e-06 5.22528e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| I am sure that in the short ||| 1 0.122289 1.90631e-06 3.43049e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| I am sure that in the ||| 0.142857 0.122289 1.90631e-06 2.43125e-13 2.718 ||| 0-5 ||| 7 524574 +los ||| I are ||| 0.00943396 0.0005024 1.90631e-06 1.27889e-06 2.718 ||| 0-1 ||| 106 524574 +los ||| I believe that the ||| 0.000548396 0.122289 3.81262e-06 1.58889e-08 2.718 ||| 0-3 ||| 3647 524574 +los ||| I believe the ||| 0.00114548 0.122289 1.90631e-06 9.44553e-07 2.718 ||| 0-2 ||| 873 524574 +los ||| I can tell you that the ||| 0.00854701 0.122289 1.90631e-06 4.81325e-14 2.718 ||| 0-5 ||| 117 524574 +los ||| I do not know whether all Members ||| 1 0.168879 1.90631e-06 1.28185e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| I feel that the ||| 0.00244499 0.122289 1.90631e-06 8.63094e-09 2.718 ||| 0-3 ||| 409 524574 +los ||| I found the ||| 0.047619 0.122289 1.90631e-06 6.63888e-07 2.718 ||| 0-2 ||| 21 524574 +los ||| I have in ||| 0.00571429 1.51e-05 1.90631e-06 2.25274e-09 2.718 ||| 0-0 ||| 175 524574 +los ||| I have no intention of questioning that ||| 1 0.0019787 1.90631e-06 6.00327e-22 2.718 ||| 0-4 ||| 1 524574 +los ||| I have no intention of questioning ||| 1 0.0019787 1.90631e-06 3.56879e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| I have no intention of ||| 0.0285714 0.0019787 1.90631e-06 1.23062e-14 2.718 ||| 0-4 ||| 35 524574 +los ||| I have ||| 3.33923e-05 1.51e-05 1.90631e-06 1.05246e-07 2.718 ||| 0-0 ||| 29947 524574 +los ||| I heard both ||| 1 0.0352574 1.90631e-06 6.71033e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| I hope that ||| 0.000104395 1.51e-05 1.90631e-06 2.59497e-11 2.718 ||| 0-0 ||| 9579 524574 +los ||| I hope the ||| 0.00116959 0.122289 1.90631e-06 5.31899e-07 2.718 ||| 0-2 ||| 855 524574 +los ||| I hope ||| 6.09347e-05 1.51e-05 1.90631e-06 1.54264e-09 2.718 ||| 0-0 ||| 16411 524574 +los ||| I mean our ||| 0.1 0.0248369 1.90631e-06 6.50955e-09 2.718 ||| 0-2 ||| 10 524574 +los ||| I mean the law ||| 0.333333 0.122289 1.90631e-06 1.37852e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| I mean the ||| 0.0189873 0.122289 5.71893e-06 7.81919e-07 2.718 ||| 0-2 ||| 158 524574 +los ||| I mentioned the two ||| 0.333333 0.122289 1.90631e-06 6.34802e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| I mentioned the ||| 0.0243902 0.122289 1.90631e-06 2.68529e-07 2.718 ||| 0-2 ||| 41 524574 +los ||| I myself had that experience with the ||| 1 0.122289 1.90631e-06 3.51993e-18 2.718 ||| 0-6 ||| 1 524574 +los ||| I now take the opportunity ||| 0.5 0.122289 1.90631e-06 1.8103e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| I now take the ||| 0.333333 0.122289 1.90631e-06 1.00628e-08 2.718 ||| 0-3 ||| 3 524574 +los ||| I put the ||| 0.0277778 0.122289 1.90631e-06 3.34553e-06 2.718 ||| 0-2 ||| 36 524574 +los ||| I quote : the ||| 0.25 0.122289 1.90631e-06 4.55779e-11 2.718 ||| 0-3 ||| 4 524574 +los ||| I read the ||| 0.0196078 0.122289 1.90631e-06 1.4625e-07 2.718 ||| 0-2 ||| 51 524574 +los ||| I refer to the ||| 0.0031348 0.122289 1.90631e-06 2.1057e-08 2.718 ||| 0-3 ||| 319 524574 +los ||| I regret to say , by those ||| 1 0.284705 1.90631e-06 1.24354e-16 2.718 ||| 0-6 ||| 1 524574 +los ||| I say that the ||| 0.0181818 0.122289 1.90631e-06 4.87845e-08 2.718 ||| 0-3 ||| 55 524574 +los ||| I see the ||| 0.00568182 0.122289 1.90631e-06 2.13791e-06 2.718 ||| 0-2 ||| 176 524574 +los ||| I see them ||| 0.142857 0.038218 1.90631e-06 1.00308e-08 2.718 ||| 0-2 ||| 7 524574 +los ||| I share the ||| 0.00181159 0.122289 1.90631e-06 2.84003e-07 2.718 ||| 0-2 ||| 552 524574 +los ||| I should like to give him my ||| 0.25 0.0086409 1.90631e-06 6.62364e-19 2.718 ||| 0-6 ||| 4 524574 +los ||| I stress - the ||| 1 0.122289 1.90631e-06 4.07456e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| I think the ||| 0.000791766 0.122289 1.90631e-06 1.16059e-06 2.718 ||| 0-2 ||| 1263 524574 +los ||| I took them ||| 0.5 0.038218 1.90631e-06 2.09983e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| I turn next to the ||| 1 0.122289 1.90631e-06 6.24426e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| I want to highlight the ||| 0.037037 0.122289 1.90631e-06 2.35705e-12 2.718 ||| 0-4 ||| 27 524574 +los ||| I would merely thank the rapporteur , ||| 1 0.122289 1.90631e-06 1.03473e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| I would merely thank the rapporteur ||| 1 0.122289 1.90631e-06 8.67666e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| I would merely thank the ||| 1 0.122289 1.90631e-06 1.20009e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| I would point out that the ||| 0.00884956 0.122289 1.90631e-06 1.00371e-12 2.718 ||| 0-5 ||| 113 524574 +los ||| I would ||| 7.75916e-05 1.51e-05 1.90631e-06 5.16446e-08 2.718 ||| 0-0 ||| 12888 524574 +los ||| I ||| 3.74612e-05 1.51e-05 1.33442e-05 8.8e-06 2.718 ||| 0-0 ||| 186860 524574 +los ||| ILO ) ||| 0.0357143 0.0375276 3.81262e-06 4.75746e-08 2.718 ||| 0-0 ||| 56 524574 +los ||| ILO ||| 0.00237248 0.0375276 3.81262e-06 3.31e-05 2.718 ||| 0-0 ||| 843 524574 +los ||| In the absence ||| 0.5 0.122289 1.90631e-06 1.72205e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| In the ||| 0.0110497 0.122289 3.81262e-06 6.64882e-06 2.718 ||| 0-1 ||| 181 524574 +los ||| Independent Members ||| 0.08 0.168879 3.81262e-06 1.73678e-08 2.718 ||| 0-1 ||| 25 524574 +los ||| Independents ||| 0.0121951 0.0078125 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 82 524574 +los ||| Industrial and Employers ' ||| 0.2 0.0444479 1.90631e-06 2.21204e-16 2.718 ||| 0-3 ||| 5 524574 +los ||| Information Centres ||| 0.333333 0.108696 1.90631e-06 3.88e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| Inquiry 's ||| 0.111111 0.0349814 1.90631e-06 1.34798e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| Instruments ||| 0.0545455 0.178571 5.71893e-06 9.7e-06 2.718 ||| 0-0 ||| 55 524574 +los ||| Intellectual ||| 0.142857 0.0943396 9.53154e-06 4.9e-06 2.718 ||| 0-0 ||| 35 524574 +los ||| International Rail Passengers ’ ||| 1 0.221273 1.90631e-06 1.04232e-19 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| Internet ||| 0.000354359 0.0006522 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 2822 524574 +los ||| Iranian ||| 0.00172712 0.0019361 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 1158 524574 +los ||| Iraq 's ||| 0.0222222 0.0349814 1.90631e-06 7.72027e-08 2.718 ||| 0-1 ||| 45 524574 +los ||| Iraq ’ s ||| 0.25 0.0139748 3.81262e-06 1.29576e-11 2.718 ||| 0-1 ||| 8 524574 +los ||| Iraq ’ ||| 0.0217391 0.0139748 1.90631e-06 6.81156e-09 2.718 ||| 0-1 ||| 46 524574 +los ||| Iraqi people ||| 0.0030303 0.0894672 1.90631e-06 3.93765e-08 2.718 ||| 0-1 ||| 330 524574 +los ||| Iraqis ||| 0.0045045 0.2 1.90631e-06 5.64e-05 2.718 ||| 0-0 ||| 222 524574 +los ||| Ireland 's ||| 0.0169492 0.0349814 1.90631e-06 1.39087e-07 2.718 ||| 0-1 ||| 59 524574 +los ||| Irish ||| 0.00017331 0.0003895 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 5770 524574 +los ||| Islamist ||| 0.00653595 0.0185185 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 153 524574 +los ||| Island Developing ||| 0.5 0.2 1.90631e-06 1.287e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| Italian prisoners ||| 1 0.26413 1.90631e-06 1.32546e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| Italians ||| 0.00490196 0.241007 1.90631e-06 6.51e-05 2.718 ||| 0-0 ||| 204 524574 +los ||| JEREMIE ||| 0.0434783 0.0454545 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 23 524574 +los ||| Jewish ||| 0.00621118 0.0123457 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 322 524574 +los ||| Jews but holocausts all ||| 0.125 0.190341 1.90631e-06 8.4092e-17 2.718 ||| 0-0 ||| 8 524574 +los ||| Jews but holocausts ||| 0.125 0.190341 1.90631e-06 1.77957e-14 2.718 ||| 0-0 ||| 8 524574 +los ||| Jews but ||| 0.125 0.190341 1.90631e-06 4.44893e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| Jews ||| 0.00325733 0.190341 1.90631e-06 6.51e-05 2.718 ||| 0-0 ||| 307 524574 +los ||| Kashmiri ||| 0.0188679 0.0243902 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 53 524574 +los ||| Kosovar ||| 0.00869565 0.0145985 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 115 524574 +los ||| Kurdish people ||| 0.00862069 0.0894672 1.90631e-06 2.28384e-08 2.718 ||| 0-1 ||| 116 524574 +los ||| LDCs ) ||| 0.0625 0.18306 1.90631e-06 9.35682e-08 2.718 ||| 0-0 ||| 16 524574 +los ||| LDCs ||| 0.00606061 0.18306 1.90631e-06 6.51e-05 2.718 ||| 0-0 ||| 165 524574 +los ||| LGBT ||| 0.025641 0.0952381 1.90631e-06 1.17e-05 2.718 ||| 0-0 ||| 39 524574 +los ||| LT ) The ||| 0.0222222 0.0025284 1.90631e-06 2.57852e-13 2.718 ||| 0-2 ||| 45 524574 +los ||| La ||| 0.00595238 0.0050505 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 168 524574 +los ||| Labour ||| 0.000773994 0.0141629 1.90631e-06 2.72e-05 2.718 ||| 0-0 ||| 1292 524574 +los ||| Lake ||| 0.0169492 0.0543478 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 59 524574 +los ||| Lakes region ||| 0.25 0.390449 1.90631e-06 1.32263e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| Lakes ||| 0.0105263 0.390449 1.90631e-06 0.0001351 2.718 ||| 0-0 ||| 95 524574 +los ||| Lamassoure and Mr Bourlanges produced their ||| 1 0.0236713 1.90631e-06 1.52393e-24 2.718 ||| 0-5 ||| 1 524574 +los ||| Lange , Mr ||| 0.25 0.006734 1.90631e-06 1.47914e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| Lange , ||| 0.0208333 0.006734 1.90631e-06 2.26584e-07 2.718 ||| 0-0 ||| 48 524574 +los ||| Lange ||| 0.00404858 0.006734 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 247 524574 +los ||| Latin America ||| 0.00123457 0.0803391 3.81262e-06 4.1796e-09 2.718 ||| 0-1 ||| 1620 524574 +los ||| Latvia 's ||| 0.0666667 0.0349814 1.90631e-06 3.0636e-08 2.718 ||| 0-1 ||| 15 524574 +los ||| Latvia eight months before the ||| 1 0.122289 1.90631e-06 1.01601e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| Learning ' , which have ||| 1 0.0444479 1.90631e-06 1.8689e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| Learning ' , which ||| 1 0.0444479 1.90631e-06 1.56265e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| Learning ' , ||| 0.5 0.0444479 1.90631e-06 1.83958e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| Learning ' ||| 0.333333 0.0444479 1.90631e-06 1.54257e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| Lebanese ||| 0.00284091 0.0135135 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 352 524574 +los ||| Lifelong Learning ' , which have ||| 1 0.0444479 1.90631e-06 3.36402e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| Lifelong Learning ' , which ||| 1 0.0444479 1.90631e-06 2.81278e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| Lifelong Learning ' , ||| 0.5 0.0444479 1.90631e-06 3.31125e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| Lifelong Learning ' ||| 0.125 0.0444479 1.90631e-06 2.77662e-14 2.718 ||| 0-2 ||| 8 524574 +los ||| Lisbon objectives ||| 0.0031348 0.0591921 1.90631e-06 1.79561e-08 2.718 ||| 0-1 ||| 319 524574 +los ||| Living Resources ||| 0.25 0.226415 1.90631e-06 1.638e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| Lt ) ||| 0.00229885 0.0022573 1.90631e-06 1.4373e-09 2.718 ||| 0-0 ||| 435 524574 +los ||| Lt ||| 0.00232558 0.0022573 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 430 524574 +los ||| MEP 's in the Parliament ||| 0.333333 0.0349814 1.90631e-06 5.3148e-14 2.718 ||| 0-1 ||| 3 524574 +los ||| MEP 's in the ||| 0.333333 0.0349814 1.90631e-06 9.25924e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| MEP 's in ||| 0.333333 0.0349814 1.90631e-06 1.50822e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| MEP 's ||| 0.0526316 0.0349814 1.90631e-06 7.04628e-08 2.718 ||| 0-1 ||| 19 524574 +los ||| MEP ’ s ||| 0.25 0.0139748 1.90631e-06 1.18264e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| MEP ’ ||| 0.25 0.0139748 1.90631e-06 6.2169e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| MEPs are only ||| 0.5 0.152546 1.90631e-06 2.63718e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| MEPs are ||| 0.010101 0.152546 1.90631e-06 2.36922e-05 2.718 ||| 0-0 ||| 99 524574 +los ||| MEPs as holding ||| 0.125 0.152546 1.90631e-06 9.57644e-10 2.718 ||| 0-0 ||| 8 524574 +los ||| MEPs as ||| 0.0526316 0.152546 1.90631e-06 1.59342e-05 2.718 ||| 0-0 ||| 19 524574 +los ||| MEPs to demonstrate - as ||| 0.25 0.152546 1.90631e-06 1.32453e-13 2.718 ||| 0-0 ||| 4 524574 +los ||| MEPs to demonstrate - ||| 0.25 0.152546 1.90631e-06 1.298e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| MEPs to demonstrate ||| 0.25 0.152546 1.90631e-06 3.44105e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| MEPs to ||| 0.00609756 0.152546 1.90631e-06 0.000138752 2.718 ||| 0-0 ||| 164 524574 +los ||| MEPs who will ||| 0.5 0.152546 1.90631e-06 1.19148e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| MEPs who ||| 0.0046729 0.152546 1.90631e-06 1.37724e-06 2.718 ||| 0-0 ||| 214 524574 +los ||| MEPs ||| 0.00385208 0.152546 2.85946e-05 0.0015615 2.718 ||| 0-0 ||| 3894 524574 +los ||| MPs ||| 0.00444444 0.208955 1.90631e-06 8.17e-05 2.718 ||| 0-0 ||| 225 524574 +los ||| Madam President-in-Office of the ||| 0.00315457 0.122289 1.90631e-06 2.28942e-11 2.718 ||| 0-3 ||| 317 524574 +los ||| Masera , Callum McCarthy ||| 0.5 1 1.90631e-06 1.90808e-20 2.718 ||| 0-0 ||| 2 524574 +los ||| Masera , Callum ||| 0.5 1 1.90631e-06 4.77019e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| Masera , ||| 0.5 1 1.90631e-06 1.19255e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| Masera ||| 0.5 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| May , in Cairo , in the ||| 1 0.122289 1.90631e-06 1.68256e-17 2.718 ||| 0-6 ||| 1 524574 +los ||| Measuring Instruments ||| 0.0769231 0.178571 1.90631e-06 2.134e-11 2.718 ||| 0-1 ||| 13 524574 +los ||| Mediterranean ||| 0.000196309 0.0003527 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 5094 524574 +los ||| Member State to ||| 0.00460829 0.0736271 5.71893e-06 9.12613e-08 2.718 ||| 0-1 ||| 651 524574 +los ||| Member State ||| 0.000706964 0.0736271 1.90631e-05 1.02704e-06 2.718 ||| 0-1 ||| 14145 524574 +los ||| Member States ' current ||| 0.2 0.0444479 1.90631e-06 2.15558e-13 2.718 ||| 0-2 ||| 5 524574 +los ||| Member States ' ||| 0.00114482 0.0444479 3.81262e-06 1.308e-09 2.718 ||| 0-2 ||| 1747 524574 +los ||| Member States , i.e. the ||| 1 0.122289 1.90631e-06 7.38392e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| Member States have ||| 0.000430478 0.0007388 1.90631e-06 6.3236e-10 2.718 ||| 0-0 ||| 2323 524574 +los ||| Member States or ||| 0.00266667 0.224121 1.90631e-06 1.66061e-08 2.718 ||| 0-1 ||| 375 524574 +los ||| Member States that had not ||| 0.333333 0.224121 1.90631e-06 8.3725e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| Member States that had ||| 0.0714286 0.224121 1.90631e-06 2.45233e-10 2.718 ||| 0-1 ||| 14 524574 +los ||| Member States that ||| 0.000672947 0.224121 1.90631e-06 2.44329e-07 2.718 ||| 0-1 ||| 1486 524574 +los ||| Member States to sign or ratify it ||| 1 0.0007388 1.90631e-06 2.49315e-23 2.718 ||| 0-0 ||| 1 524574 +los ||| Member States to sign or ratify ||| 0.5 0.0007388 1.90631e-06 1.40197e-21 2.718 ||| 0-0 ||| 2 524574 +los ||| Member States to sign or ||| 0.333333 0.0007388 1.90631e-06 2.80394e-16 2.718 ||| 0-0 ||| 3 524574 +los ||| Member States to sign ||| 0.0384615 0.0007388 1.90631e-06 2.4525e-13 2.718 ||| 0-0 ||| 26 524574 +los ||| Member States to ||| 0.000165865 0.0007388 1.90631e-06 4.69827e-09 2.718 ||| 0-0 ||| 6029 524574 +los ||| Member States which ||| 0.0010917 0.224121 1.90631e-06 1.23382e-07 2.718 ||| 0-1 ||| 916 524574 +los ||| Member States ||| 0.000251433 0.224121 4.57514e-05 1.45247e-05 2.718 ||| 0-1 ||| 95453 524574 +los ||| Member of the ||| 0.00240385 0.0416689 1.90631e-06 1.57205e-07 2.718 ||| 0-0 0-1 0-2 ||| 416 524574 +los ||| Member will ||| 0.0833333 0.0007388 1.90631e-06 9.58553e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| Member ||| 0.000747743 0.0007388 5.33766e-05 0.0001108 2.718 ||| 0-0 ||| 37446 524574 +los ||| Member-State ||| 0.0833333 0.15625 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 12 524574 +los ||| Members ' ||| 0.00389105 0.168879 1.90631e-06 1.65713e-05 2.718 ||| 0-0 ||| 257 524574 +los ||| Members , " ||| 0.5 0.168879 1.90631e-06 1.36239e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| Members , ||| 0.0018315 0.168879 3.81262e-06 0.000575332 2.718 ||| 0-0 ||| 1092 524574 +los ||| Members . ||| 0.00170068 0.168879 1.90631e-06 1.46131e-05 2.718 ||| 0-0 ||| 588 524574 +los ||| Members from these ||| 0.5 0.0240362 1.90631e-06 5.78989e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| Members have a great deal of ||| 0.25 0.168879 1.90631e-06 2.32011e-14 2.718 ||| 0-0 ||| 4 524574 +los ||| Members have a great deal ||| 0.25 0.168879 1.90631e-06 4.26772e-13 2.718 ||| 0-0 ||| 4 524574 +los ||| Members have a great ||| 0.25 0.168879 1.90631e-06 1.00512e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| Members have a ||| 0.1 0.168879 1.90631e-06 2.55755e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| Members have now received this opinion ||| 1 0.168879 1.90631e-06 1.68858e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| Members have now received this ||| 1 0.168879 1.90631e-06 6.88094e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| Members have now received ||| 1 0.168879 1.90631e-06 1.06493e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| Members have now ||| 1 0.168879 1.90631e-06 1.18854e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| Members have ||| 0.00383142 0.168879 3.81262e-06 5.76989e-05 2.718 ||| 0-0 ||| 522 524574 +los ||| Members of the European Parliament ||| 0.000765697 0.168879 1.90631e-06 3.09051e-11 2.718 ||| 0-0 ||| 1306 524574 +los ||| Members of the European ||| 0.0153846 0.168879 1.90631e-06 5.38417e-08 2.718 ||| 0-0 ||| 65 524574 +los ||| Members of the ||| 0.00374532 0.122289 1.33442e-05 3.43967e-06 2.718 ||| 0-2 ||| 1869 524574 +los ||| Members of this ||| 0.00118413 0.168879 3.81262e-06 1.69466e-06 2.718 ||| 0-0 ||| 1689 524574 +los ||| Members of ||| 0.00295946 0.168879 1.90631e-05 0.000262274 2.718 ||| 0-0 ||| 3379 524574 +los ||| Members present ||| 0.00952381 0.168879 1.90631e-06 1.76573e-06 2.718 ||| 0-0 ||| 105 524574 +los ||| Members who are still here in the ||| 1 0.122289 1.90631e-06 2.76807e-17 2.718 ||| 0-6 ||| 1 524574 +los ||| Members ||| 0.00364125 0.168879 0.00012391 0.0048244 2.718 ||| 0-0 ||| 17851 524574 +los ||| Ministers ||| 0.00121531 0.0166786 1.14379e-05 6.81e-05 2.718 ||| 0-0 ||| 4937 524574 +los ||| Mission and the ||| 1 0.122289 1.90631e-06 3.76114e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| Morocco ' ||| 0.0555556 0.0444479 1.90631e-06 2.87237e-08 2.718 ||| 0-1 ||| 18 524574 +los ||| Mr Barroso , who do ||| 1 0.000743 1.90631e-06 2.43105e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| Mr Barroso , who ||| 0.0588235 0.000743 1.90631e-06 7.07669e-14 2.718 ||| 0-0 ||| 17 524574 +los ||| Mr Barroso , ||| 0.000937207 0.000743 1.90631e-06 8.02346e-11 2.718 ||| 0-0 ||| 1067 524574 +los ||| Mr Barroso ||| 0.00045977 0.000743 1.90631e-06 6.728e-10 2.718 ||| 0-0 ||| 2175 524574 +los ||| Mr Bourlanges produced their ||| 1 0.0236713 1.90631e-06 1.73803e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| Mr Cunha , Mr Aparicio and other ||| 1 0.000743 1.90631e-06 3.39976e-26 2.718 ||| 0-0 ||| 1 524574 +los ||| Mr Cunha , Mr Aparicio and ||| 1 0.000743 1.90631e-06 2.62428e-23 2.718 ||| 0-0 ||| 1 524574 +los ||| Mr Cunha , Mr Aparicio ||| 1 0.000743 1.90631e-06 2.09508e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| Mr Cunha , Mr ||| 0.166667 0.000743 1.90631e-06 5.23771e-15 2.718 ||| 0-0 ||| 6 524574 +los ||| Mr Cunha , ||| 0.027027 0.000743 1.90631e-06 8.02346e-12 2.718 ||| 0-0 ||| 37 524574 +los ||| Mr Cunha ||| 0.00625 0.000743 1.90631e-06 6.728e-11 2.718 ||| 0-0 ||| 160 524574 +los ||| Mr Gasòliba i Böhm and Mr von ||| 1 0.000743 1.90631e-06 9.01133e-33 2.718 ||| 0-0 ||| 1 524574 +los ||| Mr Gasòliba i Böhm and Mr ||| 0.25 0.000743 1.90631e-06 2.50315e-27 2.718 ||| 0-0 ||| 4 524574 +los ||| Mr Gasòliba i Böhm and ||| 0.0769231 0.000743 1.90631e-06 3.83448e-24 2.718 ||| 0-0 ||| 13 524574 +los ||| Mr Gasòliba i Böhm ||| 0.0217391 0.000743 1.90631e-06 3.06124e-22 2.718 ||| 0-0 ||| 46 524574 +los ||| Mr Gasòliba i ||| 0.0196078 0.000743 1.90631e-06 7.6531e-16 2.718 ||| 0-0 ||| 51 524574 +los ||| Mr Gasòliba ||| 0.0107527 0.000743 1.90631e-06 1.1774e-10 2.718 ||| 0-0 ||| 93 524574 +los ||| Mr Goebbels and ||| 0.0416667 0.000743 1.90631e-06 2.31754e-12 2.718 ||| 0-0 ||| 24 524574 +los ||| Mr Goebbels ||| 0.00469484 0.000743 1.90631e-06 1.8502e-10 2.718 ||| 0-0 ||| 213 524574 +los ||| Mr Hoppenstedt ||| 0.01 0.0061728 1.90631e-06 6.528e-10 2.718 ||| 0-1 ||| 100 524574 +los ||| Mr Hänsch and Mrs Méndez de ||| 1 0.0566667 1.90631e-06 3.02324e-25 2.718 ||| 0-4 ||| 1 524574 +los ||| Mr Hänsch and Mrs Méndez ||| 1 0.0566667 1.90631e-06 8.83989e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| Mr Lange , Mr ||| 0.333333 0.006734 1.90631e-06 9.65583e-14 2.718 ||| 0-1 ||| 3 524574 +los ||| Mr Lange , ||| 0.0208333 0.006734 1.90631e-06 1.47914e-10 2.718 ||| 0-1 ||| 48 524574 +los ||| Mr Lange ||| 0.00485437 0.006734 1.90631e-06 1.24032e-09 2.718 ||| 0-1 ||| 206 524574 +los ||| Mr Manisco and ||| 0.142857 0.000743 1.90631e-06 8.42743e-13 2.718 ||| 0-0 ||| 7 524574 +los ||| Mr Manisco ||| 0.0357143 0.000743 1.90631e-06 6.728e-11 2.718 ||| 0-0 ||| 28 524574 +los ||| Mr President , the ||| 0.000382604 0.122289 5.71893e-06 4.84213e-09 2.718 ||| 0-3 ||| 7841 524574 +los ||| Mr President ||| 1.07126e-05 0.000743 1.90631e-06 2.4389e-08 2.718 ||| 0-0 ||| 93348 524574 +los ||| Mr Samland and all on the ||| 1 0.122289 1.90631e-06 4.436e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| Mr Schulz and ||| 0.0138889 0.000743 1.90631e-06 6.10988e-12 2.718 ||| 0-0 ||| 72 524574 +los ||| Mr Schulz ||| 0.000956938 0.000743 1.90631e-06 4.8778e-10 2.718 ||| 0-0 ||| 1045 524574 +los ||| Mr Tsatsos for their ||| 1 0.0236713 1.90631e-06 8.03453e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| Mr Watson , the leader of the ||| 0.5 0.122289 1.90631e-06 1.8568e-18 2.718 ||| 0-3 ||| 2 524574 +los ||| Mr Watson , the leader of ||| 1 0.122289 1.90631e-06 3.02451e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| Mr Watson , the leader ||| 0.5 0.122289 1.90631e-06 5.56344e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| Mr Watson , the ||| 0.0909091 0.122289 1.90631e-06 4.67516e-11 2.718 ||| 0-3 ||| 11 524574 +los ||| Mr White and ||| 0.5 0.0011638 1.90631e-06 3.18899e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| Mr White ||| 0.0172414 0.0011638 1.90631e-06 2.54592e-09 2.718 ||| 0-1 ||| 58 524574 +los ||| Mr ||| 0.000237727 0.000743 8.0065e-05 0.0001682 2.718 ||| 0-0 ||| 176673 524574 +los ||| Mrs Méndez de ||| 0.5 0.0566667 1.90631e-06 5.28185e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| Mrs Méndez ||| 1 0.0566667 1.90631e-06 1.5444e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| Mrs Schörling 's questions ||| 0.2 0.0349814 1.90631e-06 2.03021e-17 2.718 ||| 0-2 ||| 5 524574 +los ||| Mrs Schörling 's ||| 0.166667 0.0349814 1.90631e-06 2.29402e-13 2.718 ||| 0-2 ||| 6 524574 +los ||| Muslim Countries ( ||| 0.5 0.0159363 1.90631e-06 1.24118e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| Muslim Countries ||| 0.5 0.0159363 1.90631e-06 1.287e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| Muslim ||| 0.00395778 0.0159363 5.71893e-06 1.17e-05 2.718 ||| 0-0 ||| 758 524574 +los ||| Muslims ||| 0.00188324 0.296081 1.90631e-06 0.0001983 2.718 ||| 0-0 ||| 531 524574 +los ||| Méndez de ||| 0.00416667 0.0566667 1.90631e-06 5.643e-10 2.718 ||| 0-0 ||| 240 524574 +los ||| Méndez ||| 0.166667 0.0566667 1.90631e-06 1.65e-05 2.718 ||| 0-0 ||| 6 524574 +los ||| NAMA ( ||| 0.25 0.0872093 1.90631e-06 1.40802e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| NAMA ||| 0.0192308 0.0872093 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 52 524574 +los ||| NL ) The ||| 0.00662252 0.0025284 1.90631e-06 1.01571e-12 2.718 ||| 0-2 ||| 151 524574 +los ||| NSAs - ||| 1 0.333333 1.90631e-06 7.16699e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| NSAs ||| 0.5 0.333333 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| Name ||| 0.157895 0.335664 5.71893e-06 4.67e-05 2.718 ||| 0-0 ||| 19 524574 +los ||| National ||| 0.000643501 0.0013559 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1554 524574 +los ||| Nazi atrocities ||| 0.111111 0.0232558 1.90631e-06 1.044e-11 2.718 ||| 0-0 ||| 9 524574 +los ||| Nazi ||| 0.00833333 0.0232558 3.81262e-06 5.8e-06 2.718 ||| 0-0 ||| 240 524574 +los ||| Nazis ||| 0.0123457 0.0686275 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 81 524574 +los ||| No 75 , presented by ||| 1 0.0062464 1.90631e-06 1.13356e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| Norway - took the initiative ||| 0.333333 0.122289 1.90631e-06 3.7351e-17 2.718 ||| 0-3 ||| 3 524574 +los ||| Norway - took the ||| 0.333333 0.122289 1.90631e-06 5.96662e-13 2.718 ||| 0-3 ||| 3 524574 +los ||| Objective ||| 0.000919963 0.0077841 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 1087 524574 +los ||| Observation Mission and the ||| 1 0.122289 1.90631e-06 2.6328e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| Olympic Games - ||| 0.2 0.0205255 1.90631e-06 6.96631e-13 2.718 ||| 0-0 ||| 5 524574 +los ||| Olympic Games ||| 0.00189753 0.0205255 1.90631e-06 1.8468e-10 2.718 ||| 0-0 ||| 527 524574 +los ||| Olympic teams ||| 1 0.153417 1.90631e-06 3.4208e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| Olympic ||| 0.0170576 0.0205255 1.52505e-05 2.43e-05 2.718 ||| 0-0 ||| 469 524574 +los ||| One of the ||| 0.0192308 0.122289 1.90631e-06 7.46233e-08 2.718 ||| 0-2 ||| 52 524574 +los ||| Opinion on the ||| 0.5 0.122289 1.90631e-06 1.14806e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| Opinion on the ‘ single audit ||| 1 0.122289 1.90631e-06 1.32995e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| Opinion on the ‘ single audit ’ ||| 1 0.122289 1.90631e-06 2.3169e-25 2.718 ||| 0-2 ||| 1 524574 +los ||| Opinion on the ‘ single ||| 1 0.122289 1.90631e-06 2.04607e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| Opinion on the ‘ ||| 1 0.122289 1.90631e-06 1.28927e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| Oslo ||| 0.00215517 0.0057971 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 464 524574 +los ||| PAHs ||| 0.0666667 0.194444 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| PCB-containing ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| PNR ||| 0.00387597 0.159742 3.81262e-06 0.0001682 2.718 ||| 0-0 ||| 516 524574 +los ||| PPP ) models ||| 1 0.133333 1.90631e-06 1.01761e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| Palestinians ||| 0.00126984 0.140124 3.81262e-06 0.0002421 2.718 ||| 0-0 ||| 1575 524574 +los ||| Parliament ' s ||| 0.00265957 0.0444479 1.90631e-06 5.80814e-09 2.718 ||| 0-1 ||| 376 524574 +los ||| Parliament ' ||| 0.00463679 0.0444479 5.71893e-06 3.05322e-06 2.718 ||| 0-1 ||| 647 524574 +los ||| Parliament 's ||| 0.000944584 0.0349814 5.71893e-06 3.51701e-06 2.718 ||| 0-1 ||| 3176 524574 +los ||| Parliament , and the ||| 0.0192308 0.122289 1.90631e-06 3.67798e-07 2.718 ||| 0-3 ||| 52 524574 +los ||| Parliament for all ||| 0.333333 0.0177928 1.90631e-06 1.18597e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| Parliament in the ||| 0.00325733 0.122289 1.90631e-06 5.27024e-06 2.718 ||| 0-2 ||| 307 524574 +los ||| Parliaments ||| 0.0105263 0.219512 3.81262e-06 5.25e-05 2.718 ||| 0-0 ||| 190 524574 +los ||| Party ' s ||| 0.25 0.0444479 1.90631e-06 1.5259e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| Party ' ||| 0.2 0.0444479 1.90631e-06 8.02135e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| Party , the Group of the ||| 1 0.122289 1.90631e-06 8.37521e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| Passenger ||| 0.037037 0.0519481 1.90631e-06 1.17e-05 2.718 ||| 0-0 ||| 27 524574 +los ||| Passengers ’ ||| 1 0.221273 1.90631e-06 4.75728e-09 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| Pensioners ' ||| 0.0833333 0.302682 1.90631e-06 2.638e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| Pensioners ||| 0.0555556 0.302682 1.90631e-06 7.68e-05 2.718 ||| 0-0 ||| 18 524574 +los ||| People 's ||| 0.000531915 0.0349814 1.90631e-06 3.59667e-07 2.718 ||| 0-1 ||| 1880 524574 +los ||| People , the ||| 1 0.122289 1.90631e-06 3.0028e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| Performing ||| 0.666667 0.25 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| Peru ||| 0.00414938 0.0037879 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 241 524574 +los ||| Plans ||| 0.0125 0.154472 1.90631e-06 1.85e-05 2.718 ||| 0-0 ||| 80 524574 +los ||| Polish ||| 0.00145138 0.002633 5.71893e-06 4.9e-06 2.718 ||| 0-0 ||| 2067 524574 +los ||| Political ||| 0.0222222 0.025 1.14379e-05 7.8e-06 2.718 ||| 0-0 ||| 270 524574 +los ||| Poor ||| 0.2 0.133333 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| Practitioners ' Association , the ||| 1 0.122289 1.90631e-06 6.04451e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| President , the Structural ||| 0.5 0.0996062 1.90631e-06 3.5552e-09 2.718 ||| 0-2 0-3 ||| 2 524574 +los ||| President , the ||| 0.000426212 0.122289 7.62523e-06 7.41748e-06 2.718 ||| 0-2 ||| 9385 524574 +los ||| President of the ||| 0.000155958 0.122289 1.90631e-06 3.38137e-06 2.718 ||| 0-2 ||| 6412 524574 +los ||| President or the ||| 0.1 0.122289 1.90631e-06 7.11117e-08 2.718 ||| 0-2 ||| 10 524574 +los ||| President-in-Office of the ||| 0.00020024 0.122289 1.90631e-06 1.22429e-06 2.718 ||| 0-2 ||| 4994 524574 +los ||| Prime Ministers ||| 0.0070922 0.0166786 1.90631e-06 1.02831e-09 2.718 ||| 0-1 ||| 141 524574 +los ||| Procedure at the ||| 1 0.122289 1.90631e-06 1.14419e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| Product ||| 0.0421053 0.245989 1.52505e-05 4.47e-05 2.718 ||| 0-0 ||| 190 524574 +los ||| Public finance in ||| 1 0.0048977 1.90631e-06 3.77543e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| Public finance ||| 1 0.0048977 1.90631e-06 1.76385e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| Quaestors ||| 0.00411523 0.0989761 1.90631e-06 2.82e-05 2.718 ||| 0-0 ||| 243 524574 +los ||| RO ) The ||| 0.00290698 0.0025284 1.90631e-06 2.6682e-13 2.718 ||| 0-2 ||| 344 524574 +los ||| Rail Passengers ’ ||| 1 0.221273 1.90631e-06 3.3301e-15 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| Reform Party ' s ||| 1 0.0444479 1.90631e-06 5.87472e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| Reform Party ' ||| 1 0.0444479 1.90631e-06 3.08822e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| Reform Party , the Group of the ||| 0.5 0.122289 1.90631e-06 3.22446e-16 2.718 ||| 0-6 ||| 2 524574 +los ||| Refugee ||| 0.00581395 0.314159 1.90631e-06 0.0001381 2.718 ||| 0-0 ||| 172 524574 +los ||| Refugees ||| 0.00398406 0.43913 1.90631e-06 0.0001964 2.718 ||| 0-0 ||| 251 524574 +los ||| Regional Advisory Councils ||| 0.030303 0.108999 1.90631e-06 5.10796e-15 2.718 ||| 0-2 ||| 33 524574 +los ||| Resources ||| 0.128205 0.226415 9.53154e-06 1.17e-05 2.718 ||| 0-0 ||| 39 524574 +los ||| Risks ||| 0.0714286 0.307692 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| Roma people with the ||| 0.5 0.122289 1.90631e-06 2.70408e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| Roma ||| 0.00191816 0.0718321 1.14379e-05 0.0003461 2.718 ||| 0-0 ||| 3128 524574 +los ||| Romanian ||| 0.000918274 0.0010215 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1089 524574 +los ||| Russia ' s treatment ||| 0.5 0.0444479 1.90631e-06 2.46709e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| Russia ' s ||| 0.0434783 0.0444479 1.90631e-06 4.07784e-10 2.718 ||| 0-1 ||| 23 524574 +los ||| Russia ' ||| 0.0175439 0.0444479 1.90631e-06 2.14364e-07 2.718 ||| 0-1 ||| 57 524574 +los ||| Russia , the ||| 0.00740741 0.122289 1.90631e-06 2.06155e-06 2.718 ||| 0-2 ||| 135 524574 +los ||| Russia where agreed deadlines are ||| 1 0.109218 1.90631e-06 1.98381e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| Russia where agreed deadlines ||| 1 0.109218 1.90631e-06 1.30748e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| Russian ||| 0.000263644 0.0002628 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 3793 524574 +los ||| SEPA ||| 0.00787402 0.0375 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 127 524574 +los ||| SSGIs ) ||| 1 0.285714 1.90631e-06 1.12109e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| SSGIs ||| 0.2 0.285714 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| SUVs ( sport utility ||| 1 0.181818 1.90631e-06 2.04457e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| SUVs ( sport ||| 1 0.181818 1.90631e-06 1.13587e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| SUVs ( ||| 1 0.181818 1.90631e-06 7.52232e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| SUVs ||| 0.0833333 0.181818 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 12 524574 +los ||| Saint ||| 0.010101 0.018018 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 99 524574 +los ||| Samland and all on the ||| 1 0.122289 1.90631e-06 6.79535e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| Scandinavian ||| 0.00456621 0.0433071 1.90631e-06 1.07e-05 2.718 ||| 0-0 ||| 219 524574 +los ||| Schörling 's questions ||| 0.2 0.0349814 1.90631e-06 2.16903e-13 2.718 ||| 0-1 ||| 5 524574 +los ||| Schörling 's ||| 0.2 0.0349814 1.90631e-06 2.45088e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| Scots ||| 0.0142857 0.126437 1.90631e-06 1.07e-05 2.718 ||| 0-0 ||| 70 524574 +los ||| Serbian ||| 0.001287 0.002809 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 777 524574 +los ||| Serbs ||| 0.0037037 0.155143 3.81262e-06 8.94e-05 2.718 ||| 0-0 ||| 540 524574 +los ||| Serfs ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| Sexual ||| 0.5 0.148936 1.14379e-05 6.8e-06 2.718 ||| 0-0 ||| 12 524574 +los ||| Shiite extremists , ||| 1 0.303725 1.90631e-06 9.83136e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| Shiite extremists ||| 1 0.303725 1.90631e-06 8.244e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| Silicon ||| 0.0909091 0.0909091 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| Small Island Developing ||| 0.5 0.2 1.90631e-06 1.8018e-17 2.718 ||| 0-2 ||| 2 524574 +los ||| South Americans are ||| 1 0.0821836 1.90631e-06 4.36537e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| South Americans ||| 0.333333 0.0821836 1.90631e-06 2.87712e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| Spanish colleagues , and I mean it ||| 1 0.0749603 1.90631e-06 8.42037e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| Spanish colleagues , and I mean ||| 1 0.0749603 1.90631e-06 4.73501e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| Spanish colleagues , and I ||| 1 0.0749603 1.90631e-06 1.83741e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| Spanish colleagues , and ||| 1 0.0749603 1.90631e-06 2.5976e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| Spanish colleagues , ||| 0.166667 0.0749603 1.90631e-06 2.07378e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| Spanish colleagues ||| 0.0212766 0.0749603 1.90631e-06 1.73895e-08 2.718 ||| 0-1 ||| 47 524574 +los ||| Speaking Countries ||| 0.25 0.0342857 1.90631e-06 2.32e-12 2.718 ||| 0-1 ||| 4 524574 +los ||| Staff ||| 0.00273224 0.0187166 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 366 524574 +los ||| State 's ||| 0.05 0.0543042 1.90631e-06 1.22121e-05 2.718 ||| 0-0 0-1 ||| 20 524574 +los ||| State Control ||| 0.0833333 0.0736271 1.90631e-06 1.93331e-08 2.718 ||| 0-0 ||| 12 524574 +los ||| State and ||| 0.000698812 0.0736271 1.90631e-06 2.49654e-05 2.718 ||| 0-0 ||| 1431 524574 +los ||| State basis ||| 0.5 0.0736271 1.90631e-06 1.1835e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| State to ||| 0.029703 0.0736271 5.71893e-06 0.000177103 2.718 ||| 0-0 ||| 101 524574 +los ||| State ||| 0.00256791 0.0736271 3.62199e-05 0.0019931 2.718 ||| 0-0 ||| 7399 524574 +los ||| States ' current ||| 0.333333 0.0444479 1.90631e-06 4.18316e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| States ' ||| 0.00252525 0.0444479 7.62523e-06 2.53832e-06 2.718 ||| 0-1 ||| 1584 524574 +los ||| States , i.e. the ||| 1 0.122289 1.90631e-06 1.43294e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| States Observation Mission and the ||| 1 0.122289 1.90631e-06 1.25637e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| States are impossible ||| 1 0.224121 1.90631e-06 2.29232e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| States are ||| 0.00315457 0.224121 1.90631e-06 0.000427671 2.718 ||| 0-0 ||| 317 524574 +los ||| States or ||| 0.0227273 0.224121 1.90631e-06 3.22261e-05 2.718 ||| 0-0 ||| 44 524574 +los ||| States that had not ||| 1 0.224121 1.90631e-06 1.62478e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| States that had ||| 0.5 0.224121 1.90631e-06 4.75903e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| States that ||| 0.00495049 0.224121 1.90631e-06 0.000474149 2.718 ||| 0-0 ||| 202 524574 +los ||| States the ||| 0.0294118 0.122289 1.90631e-06 0.000204698 2.718 ||| 0-1 ||| 34 524574 +los ||| States which ||| 0.0138889 0.224121 3.81262e-06 0.000239436 2.718 ||| 0-0 ||| 144 524574 +los ||| States ||| 0.00128158 0.224121 9.91281e-05 0.0281869 2.718 ||| 0-0 ||| 40575 524574 +los ||| Statute is ||| 0.047619 0.0007353 1.90631e-06 3.13411e-08 2.718 ||| 0-0 ||| 21 524574 +los ||| Statute ||| 0.000644745 0.0007353 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1551 524574 +los ||| Structural Funds would have ||| 1 0.0769231 1.90631e-06 1.25819e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| Structural Funds would ||| 0.5 0.0769231 1.90631e-06 1.05201e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| Structural Funds ||| 0.000297442 0.0769231 1.90631e-06 1.79258e-08 2.718 ||| 0-0 ||| 3362 524574 +los ||| Structural ||| 0.0214669 0.0769231 2.28757e-05 0.0004793 2.718 ||| 0-0 ||| 559 524574 +los ||| Sundays ||| 0.0384615 0.303797 1.90631e-06 2.33e-05 2.718 ||| 0-0 ||| 26 524574 +los ||| Swedish ||| 0.000269906 0.0002976 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 3705 524574 +los ||| Swiss ||| 0.00205339 0.0041322 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 487 524574 +los ||| Switzerland should not cause congestion ||| 0.5 0.0297872 1.90631e-06 2.00756e-19 2.718 ||| 0-4 ||| 2 524574 +los ||| Systems ||| 0.0217391 0.0666667 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 46 524574 +los ||| TACs ||| 0.00543478 0.245614 1.90631e-06 6.81e-05 2.718 ||| 0-0 ||| 184 524574 +los ||| TV ||| 0.0039604 0.015873 3.81262e-06 1.26e-05 2.718 ||| 0-0 ||| 505 524574 +los ||| Tamil ||| 0.016129 0.0216216 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 124 524574 +los ||| Territories ) One of the ||| 1 0.122289 1.90631e-06 1.50158e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| The ||| 0.00253678 0.0025284 2.85946e-05 1.56e-05 2.718 ||| 0-0 ||| 5913 524574 +los ||| These redundancies ||| 1 0.174269 1.90631e-06 1.0143e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| Third-country ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| Times ||| 0.00534759 0.0457317 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 187 524574 +los ||| Total ||| 0.0196078 0.0175439 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 51 524574 +los ||| Trade-Related ||| 0.5 0.153846 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| Treaties ||| 0.000362319 0.0117739 1.90631e-06 2.92e-05 2.718 ||| 0-0 ||| 2760 524574 +los ||| Treaty , Members of the ||| 0.5 0.122289 1.90631e-06 3.51128e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| Tsatsos for their ||| 1 0.0236713 1.90631e-06 1.23078e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| Tunisia with ||| 0.142857 0.0007437 1.90631e-06 6.7106e-10 2.718 ||| 0-1 ||| 7 524574 +los ||| Turkish Cypriots ||| 0.00429185 0.25082 1.90631e-06 4.44912e-09 2.718 ||| 0-1 ||| 233 524574 +los ||| Turkish administrators ||| 0.333333 0.193333 1.90631e-06 8.4318e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| Turkish ||| 0.00026295 0.0005392 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 3803 524574 +los ||| U.S. ||| 0.0952381 0.181818 7.62523e-06 9.7e-06 2.718 ||| 0-0 ||| 42 524574 +los ||| UK football ||| 1 0.0399485 1.90631e-06 1.04319e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| UNICEF , the European ||| 1 0.062853 1.90631e-06 4.08038e-11 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| US ||| 0.00148588 0.119294 2.09694e-05 0.0011969 2.718 ||| 0-0 ||| 7403 524574 +los ||| US-bound ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| USA ’ ||| 0.05 0.0139748 1.90631e-06 6.81156e-09 2.718 ||| 0-1 ||| 20 524574 +los ||| USD 10 billion . the ||| 1 0.122289 1.90631e-06 7.07155e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| USD ||| 0.00131752 0.0316426 1.90631e-06 6.61e-05 2.718 ||| 0-0 ||| 759 524574 +los ||| Ukrainian ||| 0.00242424 0.0042433 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 825 524574 +los ||| Union ' ||| 0.00369004 0.0444479 1.90631e-06 2.96492e-06 2.718 ||| 0-1 ||| 271 524574 +los ||| Union 's house ||| 1 0.0349814 1.90631e-06 7.37705e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| Union 's ||| 0.00482315 0.0349814 5.71893e-06 3.4153e-06 2.718 ||| 0-1 ||| 622 524574 +los ||| Union has got a fine record ||| 1 0.0063694 1.90631e-06 1.13351e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| Union has got a fine ||| 1 0.0063694 1.90631e-06 2.03137e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| United States ||| 0.000233445 0.224121 5.71893e-06 3.45008e-06 2.718 ||| 0-1 ||| 12851 524574 +los ||| Uzbek ||| 0.010989 0.0210526 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 91 524574 +los ||| VAT levels ||| 1 0.222552 1.90631e-06 1.63253e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| VAT taxpayers ||| 0.333333 0.396994 1.90631e-06 1.17254e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| Vice-Presidents ||| 0.00854701 0.153846 1.90631e-06 2.33e-05 2.718 ||| 0-0 ||| 117 524574 +los ||| Watson , the leader of the Liberal ||| 1 0.122289 1.90631e-06 1.84884e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| Watson , the leader of the ||| 0.5 0.122289 1.90631e-06 2.84436e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| Watson , the leader of ||| 1 0.122289 1.90631e-06 4.63314e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| Watson , the leader ||| 0.5 0.122289 1.90631e-06 8.52243e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| Watson , the ||| 0.0909091 0.122289 1.90631e-06 7.16171e-08 2.718 ||| 0-2 ||| 11 524574 +los ||| West ||| 0.00097561 0.00049 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1025 524574 +los ||| Western European ||| 0.00574713 0.0161392 1.90631e-06 1.65857e-07 2.718 ||| 0-0 ||| 174 524574 +los ||| Western Sahara ||| 0.00204499 0.0161392 1.90631e-06 3.0256e-10 2.718 ||| 0-0 ||| 489 524574 +los ||| Western ||| 0.00372755 0.0161392 2.09694e-05 4.96e-05 2.718 ||| 0-0 ||| 2951 524574 +los ||| Westerners seen ||| 1 0.272727 1.90631e-06 1.2209e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| Westerners ||| 0.047619 0.272727 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| White and ||| 0.125 0.0011638 1.90631e-06 4.8851e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| White ||| 0.00369686 0.0011638 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 541 524574 +los ||| Workers , ||| 0.25 0.251256 1.90631e-06 1.73873e-05 2.718 ||| 0-0 ||| 4 524574 +los ||| Workers ||| 0.00530504 0.251256 3.81262e-06 0.0001458 2.718 ||| 0-0 ||| 377 524574 +los ||| World ' ||| 0.0588235 0.0444479 1.90631e-06 1.22342e-07 2.718 ||| 0-1 ||| 17 524574 +los ||| Young People , the ||| 1 0.122289 1.90631e-06 4.20392e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| a ' first come , ||| 1 0.0444479 1.90631e-06 1.28571e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| a ' first come ||| 1 0.0444479 1.90631e-06 1.07812e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| a ' first ||| 0.333333 0.0444479 1.90631e-06 1.26943e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| a ' green job ' ||| 0.5 0.0444479 1.90631e-06 1.04997e-15 2.718 ||| 0-4 ||| 2 524574 +los ||| a ' ||| 0.0013245 0.0444479 3.81262e-06 0.000235778 2.718 ||| 0-1 ||| 1510 524574 +los ||| a Christian ||| 0.0175439 0.0023055 1.90631e-06 3.45741e-07 2.718 ||| 0-1 ||| 57 524574 +los ||| a Member State ||| 0.000898876 0.0007388 3.81262e-06 5.90338e-10 2.718 ||| 0-1 ||| 2225 524574 +los ||| a Member ||| 0.000739645 0.0007388 1.90631e-06 4.9113e-06 2.718 ||| 0-1 ||| 1352 524574 +los ||| a US ||| 0.0277778 0.119294 1.90631e-06 5.30536e-05 2.718 ||| 0-1 ||| 36 524574 +los ||| a balance in the name ||| 1 0.122289 1.90631e-06 1.92079e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| a balance in the ||| 0.0526316 0.122289 1.90631e-06 2.1977e-08 2.718 ||| 0-3 ||| 19 524574 +los ||| a basis of ||| 0.0142857 0.0019787 1.90631e-06 8.70582e-08 2.718 ||| 0-2 ||| 70 524574 +los ||| a better response to the ||| 0.5 0.122289 1.90631e-06 2.87052e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| a better service ||| 0.0285714 0.0130347 1.90631e-06 8.05059e-10 2.718 ||| 0-2 ||| 35 524574 +los ||| a better targeted application , of the ||| 1 0.122289 1.90631e-06 3.57816e-17 2.718 ||| 0-6 ||| 1 524574 +los ||| a blind eye ||| 0.00651466 0.103393 3.81262e-06 3.13754e-10 2.718 ||| 0-1 ||| 307 524574 +los ||| a blind ||| 0.0320513 0.103393 9.53154e-06 5.51413e-06 2.718 ||| 0-1 ||| 156 524574 +los ||| a building site with the ||| 1 0.122289 1.90631e-06 1.35387e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| a business person ||| 0.25 0.057606 1.90631e-06 3.49172e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| a business ||| 0.00373134 0.057606 1.90631e-06 2.71097e-05 2.718 ||| 0-1 ||| 268 524574 +los ||| a candidate country , ||| 0.037037 0.0335599 1.90631e-06 2.92217e-10 2.718 ||| 0-1 ||| 27 524574 +los ||| a candidate country ||| 0.0041841 0.0335599 1.90631e-06 2.45036e-09 2.718 ||| 0-1 ||| 239 524574 +los ||| a candidate ||| 0.00810811 0.0335599 5.71893e-06 6.80844e-06 2.718 ||| 0-1 ||| 370 524574 +los ||| a case of the ||| 0.037037 0.122289 1.90631e-06 1.10592e-06 2.718 ||| 0-3 ||| 27 524574 +los ||| a central ||| 0.00763359 0.0063457 1.90631e-06 1.46718e-06 2.718 ||| 0-1 ||| 131 524574 +los ||| a certain amount of frustration on reading ||| 1 0.0019787 1.90631e-06 1.37132e-24 2.718 ||| 0-3 ||| 1 524574 +los ||| a certain amount of frustration on ||| 1 0.0019787 1.90631e-06 4.76152e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| a certain amount of frustration ||| 1 0.0019787 1.90631e-06 7.11631e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| a certain amount of ||| 0.0037594 0.0019787 1.90631e-06 1.01662e-11 2.718 ||| 0-3 ||| 266 524574 +los ||| a certain ||| 0.000364166 0.0030672 1.90631e-06 2.80139e-06 2.718 ||| 0-1 ||| 2746 524574 +los ||| a check of those ||| 1 0.284705 1.90631e-06 1.23124e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| a close ||| 0.00233645 0.0006977 1.90631e-06 2.5709e-07 2.718 ||| 0-1 ||| 428 524574 +los ||| a coach and ||| 0.166667 0.0062305 1.90631e-06 1.05492e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| a coach ||| 0.117647 0.0062305 3.81262e-06 8.4219e-08 2.718 ||| 0-1 ||| 17 524574 +los ||| a conservative government - ||| 0.5 0.0232558 1.90631e-06 1.29586e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| a conservative government ||| 0.166667 0.0232558 1.90631e-06 3.43538e-11 2.718 ||| 0-1 ||| 6 524574 +los ||| a conservative ||| 0.25 0.0232558 1.90631e-06 4.2996e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| a convergence ||| 0.0227273 0.0017354 1.90631e-06 1.72871e-07 2.718 ||| 0-1 ||| 44 524574 +los ||| a cost-effectiveness ||| 1 0.052356 1.90631e-06 4.2996e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| a country ||| 0.000205297 0.0001095 1.90631e-06 1.72871e-07 2.718 ||| 0-1 ||| 4871 524574 +los ||| a course of ||| 0.0163934 0.0019787 1.90631e-06 1.8498e-07 2.718 ||| 0-2 ||| 61 524574 +los ||| a critical finger ||| 0.5 0.0019092 1.90631e-06 6.86518e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| a critical mass of ||| 0.0434783 0.00454875 1.90631e-06 6.83505e-14 2.718 ||| 0-2 0-3 ||| 23 524574 +los ||| a critical ||| 0.00763359 0.0019092 1.90631e-06 3.90067e-07 2.718 ||| 0-1 ||| 131 524574 +los ||| a cross-section of ||| 0.142857 0.0019787 1.90631e-06 1.61273e-10 2.718 ||| 0-2 ||| 7 524574 +los ||| a daily basis , by the ||| 0.5 0.122289 1.90631e-06 1.60464e-13 2.718 ||| 0-5 ||| 2 524574 +los ||| a dialogue initiated by the ||| 1 0.122289 1.90631e-06 5.47837e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| a different assessment is made ||| 1 0.0053114 1.90631e-06 1.35326e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| a different assessment is ||| 1 0.0053114 1.90631e-06 6.46008e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| a different assessment ||| 0.5 0.0053114 1.90631e-06 2.06122e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| a different ||| 0.00282486 0.0053114 5.71893e-06 4.73843e-06 2.718 ||| 0-1 ||| 1062 524574 +los ||| a directive on the coordination of procedures ||| 1 0.219824 1.90631e-06 3.96363e-18 2.718 ||| 0-6 ||| 1 524574 +los ||| a donor , ||| 0.111111 0.0887513 1.90631e-06 4.41915e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| a donor ||| 0.027027 0.0887513 1.90631e-06 3.70564e-06 2.718 ||| 0-1 ||| 37 524574 +los ||| a driving ||| 0.0238095 0.06629 1.90631e-06 7.58414e-06 2.718 ||| 0-1 ||| 42 524574 +los ||| a duty to regulate the ||| 1 0.122289 1.90631e-06 8.55918e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| a fact that these ||| 0.166667 0.0240362 1.90631e-06 5.32393e-09 2.718 ||| 0-3 ||| 6 524574 +los ||| a fact which the ||| 0.333333 0.122289 1.90631e-06 4.73126e-07 2.718 ||| 0-3 ||| 3 524574 +los ||| a familiar concept to those in ||| 1 0.284705 1.90631e-06 1.29608e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| a familiar concept to those ||| 1 0.284705 1.90631e-06 6.05517e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| a few staff ||| 0.5 0.0154407 1.90631e-06 5.43922e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| a few ||| 9.64785e-05 0.0003093 1.90631e-06 2.5709e-07 2.718 ||| 0-1 ||| 10365 524574 +los ||| a fine record ||| 0.25 0.0063694 1.90631e-06 3.61113e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| a fine ||| 0.00643087 0.0063694 3.81262e-06 6.47157e-07 2.718 ||| 0-1 ||| 311 524574 +los ||| a fixed ||| 0.0263158 0.0072072 1.90631e-06 3.45741e-07 2.718 ||| 0-1 ||| 38 524574 +los ||| a fundamental ||| 0.0168776 0.0942078 7.62523e-06 6.56775e-05 2.718 ||| 0-1 ||| 237 524574 +los ||| a further EUR ||| 0.037037 0.0343255 1.90631e-06 1.22259e-08 2.718 ||| 0-2 ||| 27 524574 +los ||| a general appreciation of the ||| 1 0.122289 1.90631e-06 2.35025e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| a general guide ||| 0.333333 0.0006907 1.90631e-06 2.75086e-12 2.718 ||| 0-1 ||| 3 524574 +los ||| a general ||| 0.00492611 0.0006907 3.81262e-06 4.74286e-07 2.718 ||| 0-1 ||| 406 524574 +los ||| a good EUR ||| 1 0.0343255 1.90631e-06 1.31189e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| a good deal has been said both ||| 1 0.0352574 1.90631e-06 8.26515e-20 2.718 ||| 0-6 ||| 1 524574 +los ||| a good job of balancing the ||| 1 0.122289 1.90631e-06 1.80025e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| a good ||| 0.000129988 0.0001139 1.90631e-06 1.72871e-07 2.718 ||| 0-1 ||| 7693 524574 +los ||| a great deal of poor ||| 1 0.0167739 1.90631e-06 4.04404e-15 2.718 ||| 0-3 0-4 ||| 1 524574 +los ||| a great deal of the ||| 0.0294118 0.122289 1.90631e-06 1.72486e-10 2.718 ||| 0-4 ||| 34 524574 +los ||| a half is given to group representatives ||| 1 0.135512 1.90631e-06 3.02791e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| a healthy ||| 0.025641 0.0027447 5.71893e-06 2.5709e-07 2.718 ||| 0-1 ||| 117 524574 +los ||| a holiday ||| 0.0238095 0.0079745 1.90631e-06 2.17196e-07 2.718 ||| 0-1 ||| 42 524574 +los ||| a huge ||| 0.000551572 0.0013546 1.90631e-06 3.45741e-07 2.718 ||| 0-1 ||| 1813 524574 +los ||| a human cost , whether ||| 1 0.319795 1.90631e-06 2.24274e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| a human cost , ||| 1 0.319795 1.90631e-06 8.53728e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| a human cost ||| 1 0.319795 1.90631e-06 7.15886e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| a human ||| 0.0108696 0.319795 1.90631e-06 0.000864597 2.718 ||| 0-1 ||| 92 524574 +los ||| a killing over the ||| 0.25 0.122289 1.90631e-06 8.23964e-11 2.718 ||| 0-3 ||| 4 524574 +los ||| a level of ||| 0.00431034 0.0019787 1.90631e-06 1.25412e-07 2.718 ||| 0-2 ||| 232 524574 +los ||| a little bit like stating the ||| 1 0.122289 1.90631e-06 1.01316e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| a little the position ||| 0.125 0.122289 1.90631e-06 1.0137e-09 2.718 ||| 0-2 ||| 8 524574 +los ||| a little the ||| 0.0909091 0.122289 1.90631e-06 3.07834e-06 2.718 ||| 0-2 ||| 11 524574 +los ||| a long time ||| 0.000528262 4.75e-05 1.90631e-06 7.27697e-11 2.718 ||| 0-1 ||| 1893 524574 +los ||| a long ||| 0.000263852 4.75e-05 1.90631e-06 4.43258e-08 2.718 ||| 0-1 ||| 3790 524574 +los ||| a long-term commitment for the whole of ||| 1 0.0619123 1.90631e-06 7.36566e-19 2.718 ||| 0-3 0-4 ||| 1 524574 +los ||| a long-term commitment for the whole ||| 1 0.0619123 1.90631e-06 1.35488e-17 2.718 ||| 0-3 0-4 ||| 1 524574 +los ||| a long-term commitment for the ||| 1 0.0619123 1.90631e-06 2.39505e-14 2.718 ||| 0-3 0-4 ||| 1 524574 +los ||| a lot of the ||| 0.00917431 0.122289 1.90631e-06 1.3355e-07 2.718 ||| 0-3 ||| 109 524574 +los ||| a lot of ||| 0.00037679 0.0019787 1.90631e-06 1.89423e-08 2.718 ||| 0-2 ||| 2654 524574 +los ||| a major boost ||| 0.0666667 0.0097205 1.90631e-06 1.13338e-10 2.718 ||| 0-1 ||| 15 524574 +los ||| a major ||| 0.000335345 0.0097205 1.90631e-06 6.55135e-06 2.718 ||| 0-1 ||| 2982 524574 +los ||| a market no different ||| 1 0.0053114 1.90631e-06 8.33577e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| a massive ||| 0.00704225 0.0023518 3.81262e-06 2.17196e-07 2.718 ||| 0-1 ||| 284 524574 +los ||| a material ||| 0.037037 0.0015032 1.90631e-06 1.72871e-07 2.718 ||| 0-1 ||| 27 524574 +los ||| a matter for the ||| 0.00426439 0.122289 3.81262e-06 1.51615e-07 2.718 ||| 0-3 ||| 469 524574 +los ||| a matter for ||| 0.00108932 0.0015353 1.90631e-06 4.05522e-08 2.718 ||| 0-2 ||| 918 524574 +los ||| a matter of the ||| 0.00892857 0.122289 1.90631e-06 1.07243e-06 2.718 ||| 0-3 ||| 112 524574 +los ||| a matter of ||| 0.000598444 0.0019787 3.81262e-06 1.5211e-07 2.718 ||| 0-2 ||| 3342 524574 +los ||| a maximum ||| 0.00235294 0.0008676 1.90631e-06 1.28545e-07 2.718 ||| 0-1 ||| 425 524574 +los ||| a member of the ||| 0.000694927 0.122289 1.90631e-06 1.72209e-07 2.718 ||| 0-3 ||| 1439 524574 +los ||| a minimal ||| 0.030303 0.003125 1.90631e-06 8.4219e-08 2.718 ||| 0-1 ||| 33 524574 +los ||| a minimum , ||| 0.0204082 0.0019667 1.90631e-06 5.65608e-08 2.718 ||| 0-1 ||| 49 524574 +los ||| a minimum of ||| 0.00485437 0.0019727 1.90631e-06 1.56875e-09 2.718 ||| 0-1 0-2 ||| 206 524574 +los ||| a minimum ||| 0.00439239 0.0019667 5.71893e-06 4.74286e-07 2.718 ||| 0-1 ||| 683 524574 +los ||| a minority but ||| 0.333333 0.0754204 1.90631e-06 8.98165e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| a minority ||| 0.00242131 0.0754204 1.90631e-06 1.31426e-05 2.718 ||| 0-1 ||| 413 524574 +los ||| a modern ||| 0.0136986 0.0129957 1.90631e-06 1.67995e-06 2.718 ||| 0-1 ||| 73 524574 +los ||| a moment the ||| 0.125 0.122289 1.90631e-06 3.4358e-06 2.718 ||| 0-2 ||| 8 524574 +los ||| a monopoly on ||| 0.0117647 0.0050352 1.90631e-06 1.45326e-09 2.718 ||| 0-1 ||| 85 524574 +los ||| a monopoly ||| 0.00367647 0.0050352 1.90631e-06 2.17196e-07 2.718 ||| 0-1 ||| 272 524574 +los ||| a moratorium on the ||| 0.00980392 0.122289 1.90631e-06 2.28999e-10 2.718 ||| 0-3 ||| 102 524574 +los ||| a national ||| 0.00255754 0.0129851 1.90631e-06 1.89626e-05 2.718 ||| 0-1 ||| 391 524574 +los ||| a new Commission will be coming in ||| 1 0.0093772 1.90631e-06 3.38078e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| a new Commission will be coming ||| 1 0.0093772 1.90631e-06 1.57947e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| a number of ||| 0.000444208 0.0019787 9.53154e-06 7.25436e-08 2.718 ||| 0-2 ||| 11256 524574 +los ||| a part the ||| 0.333333 0.122289 1.90631e-06 2.26683e-05 2.718 ||| 0-2 ||| 3 524574 +los ||| a party to the ||| 0.0204082 0.122289 1.90631e-06 1.15564e-07 2.718 ||| 0-3 ||| 49 524574 +los ||| a patent concerning the ||| 1 0.122289 1.90631e-06 8.88706e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| a period of ||| 0.00204499 0.0019787 3.81262e-06 2.55838e-08 2.718 ||| 0-2 ||| 978 524574 +los ||| a person ' s records to ||| 0.5 0.148855 1.90631e-06 3.77229e-16 2.718 ||| 0-4 ||| 2 524574 +los ||| a person ' s records ||| 0.5 0.148855 1.90631e-06 4.24529e-15 2.718 ||| 0-4 ||| 2 524574 +los ||| a person 's ||| 0.0526316 0.0349814 1.90631e-06 3.49812e-08 2.718 ||| 0-2 ||| 19 524574 +los ||| a place for those ||| 1 0.284705 1.90631e-06 8.56112e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| a poor ||| 0.00540541 0.0315692 1.90631e-06 7.32705e-06 2.718 ||| 0-1 ||| 185 524574 +los ||| a popular expression ||| 0.5 0.0171607 1.90631e-06 3.86069e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| a popular ||| 0.0416667 0.0171607 1.90631e-06 9.48572e-07 2.718 ||| 0-1 ||| 24 524574 +los ||| a port ||| 0.0120482 0.0440191 1.90631e-06 3.96273e-06 2.718 ||| 0-1 ||| 83 524574 +los ||| a position to give the ||| 0.25 0.122289 1.90631e-06 3.37156e-10 2.718 ||| 0-4 ||| 4 524574 +los ||| a position to set its ||| 1 0.0211371 1.90631e-06 1.61836e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| a possibility of the ||| 0.333333 0.122289 1.90631e-06 8.8482e-08 2.718 ||| 0-3 ||| 3 524574 +los ||| a preparatory step the ||| 1 0.122289 1.90631e-06 1.40227e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| a price ||| 0.00316456 0.0802296 1.90631e-06 2.46939e-05 2.718 ||| 0-1 ||| 316 524574 +los ||| a pro-Palestinian ||| 0.111111 0.25 1.90631e-06 1.28545e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| a problem such as ||| 0.142857 0.0009297 1.90631e-06 7.35886e-12 2.718 ||| 0-3 ||| 7 524574 +los ||| a reduction in the ||| 0.00235294 0.122289 1.90631e-06 1.66862e-08 2.718 ||| 0-3 ||| 425 524574 +los ||| a reference to the ||| 0.00694444 0.122289 1.90631e-06 1.44117e-07 2.718 ||| 0-3 ||| 144 524574 +los ||| a referendum could bear the ||| 1 0.122289 1.90631e-06 2.18598e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| a referral of those ||| 1 0.284705 1.90631e-06 1.28757e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| a result , anyone ||| 0.142857 0.031024 1.90631e-06 4.41123e-10 2.718 ||| 0-3 ||| 7 524574 +los ||| a result of clinging to the Americans ||| 1 0.122289 1.90631e-06 5.00032e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| a result of clinging to the ||| 1 0.122289 1.90631e-06 5.31949e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| a result of extremely ||| 0.5 0.0019787 1.90631e-06 7.33317e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| a result of the ||| 0.00707851 0.122289 2.09694e-05 5.44226e-07 2.718 ||| 0-3 ||| 1554 524574 +los ||| a result of this , the ||| 0.2 0.122289 1.90631e-06 4.19355e-10 2.718 ||| 0-5 ||| 5 524574 +los ||| a result of ||| 0.000998752 0.0019787 7.62523e-06 7.71912e-08 2.718 ||| 0-2 ||| 4005 524574 +los ||| a right-wing dictator ||| 1 0.0057554 1.90631e-06 5.53186e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| a right-wing ||| 0.2 0.0057554 1.90631e-06 1.72871e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| a risk of ||| 0.00224215 0.0019787 1.90631e-06 1.71536e-08 2.718 ||| 0-2 ||| 446 524574 +los ||| a risk that those within the ||| 1 0.135672 1.90631e-06 6.24852e-16 2.718 ||| 0-3 0-4 0-5 ||| 1 524574 +los ||| a separate market exists where the consumer ||| 1 0.122289 1.90631e-06 7.71577e-23 2.718 ||| 0-5 ||| 1 524574 +los ||| a separate market exists where the ||| 1 0.122289 1.90631e-06 2.61552e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| a set of ||| 0.0013624 0.0019787 1.90631e-06 8.56801e-08 2.718 ||| 0-2 ||| 734 524574 +los ||| a shadow ||| 0.0111111 0.0062865 1.90631e-06 6.02831e-07 2.718 ||| 0-1 ||| 90 524574 +los ||| a short memory these days - ||| 1 0.0240362 1.90631e-06 4.21259e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| a short memory these days ||| 1 0.0240362 1.90631e-06 1.11677e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| a short memory these ||| 1 0.0240362 1.90631e-06 1.75318e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| a shortage in the ||| 0.5 0.122289 1.90631e-06 3.50004e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| a shortage of ||| 0.00531915 0.0019787 1.90631e-06 1.26086e-09 2.718 ||| 0-2 ||| 188 524574 +los ||| a sign of the ||| 0.0153846 0.122289 1.90631e-06 5.39575e-08 2.718 ||| 0-3 ||| 65 524574 +los ||| a significant tightening up of the ||| 0.5 0.122289 1.90631e-06 5.07647e-16 2.718 ||| 0-5 ||| 2 524574 +los ||| a single monetary policy could address the ||| 1 0.122289 1.90631e-06 9.28175e-22 2.718 ||| 0-6 ||| 1 524574 +los ||| a single ||| 0.000317158 0.0083277 1.90631e-06 4.73843e-06 2.718 ||| 0-1 ||| 3153 524574 +los ||| a situation of ||| 0.00359712 0.0019787 1.90631e-06 7.55052e-08 2.718 ||| 0-2 ||| 278 524574 +los ||| a situation where the ||| 0.00628931 0.122289 1.90631e-06 2.96701e-09 2.718 ||| 0-3 ||| 159 524574 +los ||| a situation where ||| 0.00110865 0.0449398 1.90631e-06 5.03809e-08 2.718 ||| 0-2 ||| 902 524574 +los ||| a small number of ||| 0.00531915 0.0019787 1.90631e-06 9.29284e-12 2.718 ||| 0-3 ||| 188 524574 +los ||| a small number ||| 0.00465116 0.0028034 1.90631e-06 1.02424e-09 2.718 ||| 0-1 ||| 215 524574 +los ||| a small shop 's ||| 1 0.0349814 1.90631e-06 4.52284e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| a small ||| 0.00061237 0.0028034 1.90631e-06 2.07001e-06 2.718 ||| 0-1 ||| 1633 524574 +los ||| a snare of the ||| 1 0.122289 1.90631e-06 4.13467e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| a social point ||| 0.166667 0.0037997 1.90631e-06 5.88235e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| a social ||| 0.00512821 0.0037997 1.90631e-06 6.72422e-06 2.718 ||| 0-1 ||| 195 524574 +los ||| a source of knowledge for ||| 1 0.0139626 3.81262e-06 1.97349e-14 2.718 ||| 0-3 0-4 ||| 2 524574 +los ||| a spanner in the works for the ||| 1 0.122289 1.90631e-06 1.43101e-17 2.718 ||| 0-6 ||| 1 524574 +los ||| a standard fitting ||| 0.125 0.0009401 1.90631e-06 9.25523e-13 2.718 ||| 0-1 ||| 8 524574 +los ||| a standard ||| 0.00598802 0.0009401 1.90631e-06 1.28545e-07 2.718 ||| 0-1 ||| 167 524574 +los ||| a success the ||| 0.2 0.122289 1.90631e-06 1.12942e-06 2.718 ||| 0-2 ||| 5 524574 +los ||| a tax ||| 0.00191939 0.0611419 1.90631e-06 2.99509e-05 2.718 ||| 0-1 ||| 521 524574 +los ||| a technical filter mechanism - the ||| 1 0.122289 1.90631e-06 1.94668e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| a thing of the past ||| 0.0188679 0.122289 3.81262e-06 4.83175e-11 2.718 ||| 0-3 ||| 106 524574 +los ||| a thing of the ||| 0.0175439 0.122289 3.81262e-06 3.77185e-07 2.718 ||| 0-3 ||| 114 524574 +los ||| a thorough presentation of the ||| 1 0.122289 1.90631e-06 2.87442e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| a threat to sovereignty , the end ||| 1 0.122289 1.90631e-06 1.61516e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| a threat to sovereignty , the ||| 1 0.122289 1.90631e-06 3.71216e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| a user ||| 0.0434783 0.0830769 1.90631e-06 2.3271e-06 2.718 ||| 0-1 ||| 23 524574 +los ||| a vehicle ||| 0.00617284 0.108298 1.90631e-06 9.95557e-06 2.718 ||| 0-1 ||| 162 524574 +los ||| a very considerable extent , the ||| 1 0.122289 1.90631e-06 6.82382e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| a victory for the ||| 0.015625 0.122289 1.90631e-06 8.47581e-10 2.718 ||| 0-3 ||| 64 524574 +los ||| a waste ||| 0.00534759 0.196684 1.90631e-06 7.51588e-05 2.718 ||| 0-1 ||| 187 524574 +los ||| a whole new market has opened up ||| 1 0.0031618 1.90631e-06 9.57341e-23 2.718 ||| 0-6 ||| 1 524574 +los ||| a worker 's ||| 1 0.111774 1.90631e-06 5.83653e-08 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| a ||| 8.52703e-06 7.5e-06 1.14379e-05 5.8e-06 2.718 ||| 0-0 ||| 703645 524574 +los ||| abandon the ||| 0.00930233 0.122289 3.81262e-06 3.38875e-06 2.718 ||| 0-1 ||| 215 524574 +los ||| abandoned ||| 0.00140845 0.0024331 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 710 524574 +los ||| abandoning them ||| 0.125 0.038218 1.90631e-06 5.83654e-09 2.718 ||| 0-1 ||| 8 524574 +los ||| abattoirs and ||| 0.0416667 0.285714 1.90631e-06 4.62206e-07 2.718 ||| 0-0 ||| 24 524574 +los ||| abattoirs ||| 0.0103093 0.285714 1.90631e-06 3.69e-05 2.718 ||| 0-0 ||| 97 524574 +los ||| abducted without any ||| 0.333333 0.0178119 1.90631e-06 3.67408e-13 2.718 ||| 0-2 ||| 3 524574 +los ||| abide by the ||| 0.00502513 0.122289 1.90631e-06 1.62149e-08 2.718 ||| 0-2 ||| 199 524574 +los ||| ability the ||| 0.333333 0.122289 1.90631e-06 1.97749e-05 2.718 ||| 0-1 ||| 3 524574 +los ||| able to achieve our prime objective of ||| 1 0.0248369 1.90631e-06 3.32456e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| able to achieve our prime objective ||| 1 0.0248369 1.90631e-06 6.11538e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| able to achieve our prime ||| 1 0.0248369 1.90631e-06 9.14107e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| able to achieve our ||| 0.2 0.0248369 1.90631e-06 6.05369e-11 2.718 ||| 0-3 ||| 5 524574 +los ||| able to draw on the ||| 0.25 0.122289 1.90631e-06 2.52109e-11 2.718 ||| 0-4 ||| 4 524574 +los ||| able to draw up ||| 0.0666667 0.0031618 1.90631e-06 1.86217e-12 2.718 ||| 0-3 ||| 15 524574 +los ||| able to enjoy the ||| 0.166667 0.122289 1.90631e-06 1.23793e-09 2.718 ||| 0-3 ||| 6 524574 +los ||| able to face the ||| 0.166667 0.122289 1.90631e-06 5.32404e-09 2.718 ||| 0-3 ||| 6 524574 +los ||| able to handle the ||| 0.333333 0.122289 1.90631e-06 3.78697e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| able to predict what sort of return ||| 1 0.0061209 1.90631e-06 9.05315e-23 2.718 ||| 0-3 ||| 1 524574 +los ||| able to predict what sort of ||| 1 0.0061209 1.90631e-06 1.35933e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| able to predict what sort ||| 1 0.0061209 1.90631e-06 2.50043e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| able to predict what ||| 0.333333 0.0061209 1.90631e-06 1.56472e-13 2.718 ||| 0-3 ||| 3 524574 +los ||| able to regard the ||| 0.5 0.122289 1.90631e-06 2.16685e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| able to rely on everyone ||| 0.333333 0.080245 1.90631e-06 1.01391e-14 2.718 ||| 0-4 ||| 3 524574 +los ||| able to take the ||| 0.030303 0.122289 1.90631e-06 5.12355e-08 2.718 ||| 0-3 ||| 33 524574 +los ||| abolish the ||| 0.00330033 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-1 ||| 303 524574 +los ||| about a ||| 0.000671592 0.0003337 1.90631e-06 1.50708e-06 2.718 ||| 0-0 ||| 1489 524574 +los ||| about all of the ||| 0.2 0.122289 1.90631e-06 1.55849e-07 2.718 ||| 0-3 ||| 5 524574 +los ||| about developing ||| 0.0294118 0.150762 1.90631e-06 5.03547e-06 2.718 ||| 0-1 ||| 34 524574 +los ||| about in their ||| 1 0.0236713 1.90631e-06 6.92541e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| about in ||| 0.0136986 0.00023025 1.90631e-06 4.6954e-09 2.718 ||| 0-0 0-1 ||| 73 524574 +los ||| about its ||| 0.00323625 0.0211371 1.90631e-06 3.01967e-06 2.718 ||| 0-1 ||| 309 524574 +los ||| about such changes ||| 0.2 0.0936843 1.90631e-06 2.6627e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| about the correct ||| 0.5 0.122289 1.90631e-06 2.18402e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| about the development ||| 0.0294118 0.122289 1.90631e-06 9.97977e-08 2.718 ||| 0-1 ||| 34 524574 +los ||| about the entire ||| 0.5 0.122289 1.90631e-06 4.80485e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| about the opposite effect ||| 1 0.122289 1.90631e-06 4.29058e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| about the opposite ||| 1 0.122289 1.90631e-06 1.28615e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| about the place ||| 0.111111 0.122289 1.90631e-06 9.13043e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| about the ||| 0.00470699 0.122289 0.000152505 0.000606673 2.718 ||| 0-1 ||| 16996 524574 +los ||| about them ||| 0.00473934 0.038218 1.90631e-06 2.84642e-06 2.718 ||| 0-1 ||| 211 524574 +los ||| about those ||| 0.00900901 0.284705 1.90631e-06 2.36154e-05 2.718 ||| 0-1 ||| 111 524574 +los ||| about ||| 0.000354365 0.0003337 3.62199e-05 3.4e-05 2.718 ||| 0-0 ||| 53617 524574 +los ||| above all , about ||| 0.1 0.0177928 1.90631e-06 5.87624e-11 2.718 ||| 0-1 ||| 10 524574 +los ||| above all , ||| 0.000212993 0.0177928 1.90631e-06 4.15488e-08 2.718 ||| 0-1 ||| 4695 524574 +los ||| above all ||| 0.000227195 0.0177928 3.81262e-06 3.48404e-07 2.718 ||| 0-1 ||| 8803 524574 +los ||| above the heads ||| 0.5 0.122289 1.90631e-06 1.61775e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| above the ||| 0.0176322 0.122289 1.33442e-05 5.55927e-05 2.718 ||| 0-1 ||| 397 524574 +los ||| abuse ||| 0.000666445 0.0502812 3.81262e-06 0.0001478 2.718 ||| 0-0 ||| 3001 524574 +los ||| abusers ||| 0.00990099 0.185185 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 101 524574 +los ||| abuses perpetrated ||| 0.125 0.170574 1.90631e-06 4.46982e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| abuses that ||| 0.0277778 0.170574 1.90631e-06 4.75883e-06 2.718 ||| 0-0 ||| 36 524574 +los ||| abuses ||| 0.00267917 0.170574 7.62523e-06 0.0002829 2.718 ||| 0-0 ||| 1493 524574 +los ||| academic ||| 0.00163399 0.0052083 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 612 524574 +los ||| acceding ||| 0.00263852 0.071618 1.90631e-06 2.63e-05 2.718 ||| 0-0 ||| 379 524574 +los ||| accelerated the proceedings ||| 0.333333 0.122289 1.90631e-06 2.8028e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| accelerated the ||| 0.0714286 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 14 524574 +los ||| accept the ||| 0.00156413 0.122289 5.71893e-06 4.6456e-05 2.718 ||| 0-1 ||| 1918 524574 +los ||| accept them back ||| 1 0.038218 1.90631e-06 1.46603e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| accept them ||| 0.00680272 0.038218 1.90631e-06 2.17965e-07 2.718 ||| 0-1 ||| 147 524574 +los ||| acceptable where ||| 0.5 0.0449398 1.90631e-06 7.15068e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| accepted by the ||| 0.00274725 0.122289 1.90631e-06 1.38502e-07 2.718 ||| 0-2 ||| 364 524574 +los ||| accepted the ||| 0.00530504 0.122289 3.81262e-06 2.63808e-05 2.718 ||| 0-1 ||| 377 524574 +los ||| access to the ||| 0.00128452 0.122289 3.81262e-06 3.278e-06 2.718 ||| 0-2 ||| 1557 524574 +los ||| access ||| 0.000192827 0.0018155 5.71893e-06 3.79e-05 2.718 ||| 0-0 ||| 15558 524574 +los ||| accession procedures ||| 0.142857 0.219824 1.90631e-06 8.72065e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| accession to the ||| 0.00102669 0.122289 1.90631e-06 1.39887e-06 2.718 ||| 0-2 ||| 974 524574 +los ||| accident does ||| 0.333333 0.0103093 1.90631e-06 1.36072e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| accident that the ||| 0.05 0.122289 1.90631e-06 9.88555e-08 2.718 ||| 0-2 ||| 20 524574 +los ||| accident ||| 0.00104822 0.0103093 3.81262e-06 1.94e-05 2.718 ||| 0-0 ||| 1908 524574 +los ||| accidents ||| 0.00250313 0.204326 1.14379e-05 0.000597 2.718 ||| 0-0 ||| 2397 524574 +los ||| accommodate some of the ||| 0.333333 0.122289 1.90631e-06 2.64183e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| accommodate the ||| 0.0212766 0.122289 3.81262e-06 4.46115e-06 2.718 ||| 0-1 ||| 94 524574 +los ||| accord to the ||| 0.25 0.122289 1.90631e-06 5.22193e-07 2.718 ||| 0-2 ||| 4 524574 +los ||| accordance with its ||| 0.00943396 0.0211371 1.90631e-06 1.08541e-09 2.718 ||| 0-2 ||| 106 524574 +los ||| accordance with the choices of the ||| 1 0.122289 1.90631e-06 5.24012e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| accordance with the principle of ||| 0.00740741 0.122289 1.90631e-06 1.81736e-12 2.718 ||| 0-2 ||| 135 524574 +los ||| accordance with the principle ||| 0.00699301 0.122289 1.90631e-06 3.34294e-11 2.718 ||| 0-2 ||| 143 524574 +los ||| accordance with the ||| 0.00260983 0.122289 1.14379e-05 2.18065e-07 2.718 ||| 0-2 ||| 2299 524574 +los ||| according to the ||| 0.0016802 0.122289 1.14379e-05 3.37329e-06 2.718 ||| 0-2 ||| 3571 524574 +los ||| according to these studies , the supply ||| 0.5 0.122289 1.90631e-06 1.6974e-19 2.718 ||| 0-5 ||| 2 524574 +los ||| according to these studies , the ||| 0.5 0.122289 1.90631e-06 3.29592e-15 2.718 ||| 0-5 ||| 2 524574 +los ||| according to ||| 0.000499064 0.0007531 7.62523e-06 6.93094e-07 2.718 ||| 0-0 ||| 8015 524574 +los ||| according ||| 0.000771843 0.0007531 9.53154e-06 7.8e-06 2.718 ||| 0-0 ||| 6478 524574 +los ||| account for the ||| 0.0133333 0.122289 1.90631e-06 9.47838e-07 2.718 ||| 0-2 ||| 75 524574 +los ||| account in this context the ||| 1 0.122289 1.90631e-06 2.28894e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| account of our ||| 0.0238095 0.0134078 1.90631e-06 3.39588e-09 2.718 ||| 0-1 0-2 ||| 42 524574 +los ||| account of the fact ||| 0.0133333 0.122289 3.81262e-06 1.96393e-08 2.718 ||| 0-2 ||| 150 524574 +los ||| account of the ||| 0.00551978 0.122289 2.28757e-05 6.70444e-06 2.718 ||| 0-2 ||| 2174 524574 +los ||| account of ||| 0.00164978 0.0019787 1.33442e-05 9.50935e-07 2.718 ||| 0-1 ||| 4243 524574 +los ||| account the ||| 0.00475342 0.122289 1.52505e-05 0.000123325 2.718 ||| 0-1 ||| 1683 524574 +los ||| account those ||| 0.0833333 0.284705 1.90631e-06 4.80056e-06 2.718 ||| 0-1 ||| 12 524574 +los ||| account when assessing the ||| 0.25 0.122289 1.90631e-06 2.65096e-13 2.718 ||| 0-3 ||| 4 524574 +los ||| account ||| 7.08918e-05 0.0002405 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 14106 524574 +los ||| accountability among ||| 1 0.0202203 1.90631e-06 9.3654e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| accounting systems ||| 0.0384615 0.213574 1.90631e-06 3.05434e-08 2.718 ||| 0-1 ||| 26 524574 +los ||| accounting ||| 0.00146843 0.004085 3.81262e-06 4.9e-06 2.718 ||| 0-0 ||| 1362 524574 +los ||| accounts issued ||| 0.333333 0.0030375 1.90631e-06 5.4472e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| accounts ||| 0.00173913 0.0030375 7.62523e-06 8.8e-06 2.718 ||| 0-0 ||| 2300 524574 +los ||| accrued in ||| 0.2 0.0816327 1.90631e-06 8.34775e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| accrued ||| 0.0555556 0.0816327 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 36 524574 +los ||| accruing to ||| 0.0714286 0.0833333 1.90631e-06 2.57689e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| accruing ||| 0.1 0.0833333 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| accumulators ||| 0.0151515 0.22093 1.90631e-06 1.85e-05 2.718 ||| 0-0 ||| 66 524574 +los ||| accurate representation of the ||| 1 0.122289 1.90631e-06 2.88606e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| accused farmers of wanting ||| 0.25 0.380089 1.90631e-06 4.97857e-14 2.718 ||| 0-1 ||| 4 524574 +los ||| accused farmers of ||| 0.25 0.380089 1.90631e-06 3.3639e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| accused farmers ||| 0.25 0.380089 1.90631e-06 6.18773e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| achieve eligibility ||| 1 0.0829016 1.90631e-06 1.06709e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| achieve even the globalisation of ||| 0.333333 0.122289 1.90631e-06 2.46425e-14 2.718 ||| 0-2 ||| 3 524574 +los ||| achieve even the globalisation ||| 0.333333 0.122289 1.90631e-06 4.53287e-13 2.718 ||| 0-2 ||| 3 524574 +los ||| achieve even the ||| 0.333333 0.122289 1.90631e-06 5.9643e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| achieve our prime objective of achieving a ||| 1 0.0248369 1.90631e-06 1.31497e-22 2.718 ||| 0-1 ||| 1 524574 +los ||| achieve our prime objective of achieving ||| 1 0.0248369 1.90631e-06 2.96661e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| achieve our prime objective of ||| 1 0.0248369 1.90631e-06 4.48129e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| achieve our prime objective ||| 1 0.0248369 1.90631e-06 8.24311e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| achieve our prime ||| 1 0.0248369 1.90631e-06 1.23215e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| achieve our ||| 0.00343643 0.0248369 1.90631e-06 8.15996e-07 2.718 ||| 0-1 ||| 291 524574 +los ||| achieve savings ||| 0.142857 0.0522586 1.90631e-06 2.62089e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| achieve the common goals ||| 1 0.122289 1.90631e-06 2.85287e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| achieve the common ||| 0.5 0.122289 1.90631e-06 2.26418e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| achieve the desired ||| 0.1 0.122289 1.90631e-06 1.51926e-09 2.718 ||| 0-1 ||| 10 524574 +los ||| achieve the ||| 0.00674624 0.122289 2.4782e-05 9.80165e-05 2.718 ||| 0-1 ||| 1927 524574 +los ||| achieved by the ||| 0.00675676 0.0642678 1.90631e-06 1.16244e-07 2.718 ||| 0-1 0-2 ||| 148 524574 +los ||| achieved the ||| 0.0178571 0.122289 5.71893e-06 7.17644e-05 2.718 ||| 0-1 ||| 168 524574 +los ||| achieved ||| 0.000120584 9.69e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 8293 524574 +los ||| achievement of the ||| 0.00307692 0.122289 1.90631e-06 5.62007e-07 2.718 ||| 0-2 ||| 325 524574 +los ||| achievements against the ||| 1 0.111794 1.90631e-06 1.55263e-08 2.718 ||| 0-0 0-2 ||| 1 524574 +los ||| achievements of the ||| 0.00617284 0.122289 1.90631e-06 1.7723e-07 2.718 ||| 0-2 ||| 162 524574 +los ||| achievements they are expected ||| 1 0.101299 3.81262e-06 4.00429e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| achievements they are ||| 1 0.101299 3.81262e-06 7.51274e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| achievements they ||| 0.666667 0.101299 3.81262e-06 4.95149e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| achievements ||| 0.00379363 0.101299 9.53154e-06 0.0001517 2.718 ||| 0-0 ||| 1318 524574 +los ||| achieving a healthy ||| 1 0.0027447 1.90631e-06 1.70193e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| achieving progress ||| 0.0357143 0.0392854 1.90631e-06 5.61906e-08 2.718 ||| 0-1 ||| 28 524574 +los ||| achieving the ||| 0.00657895 0.122289 1.33442e-05 2.83969e-05 2.718 ||| 0-1 ||| 1064 524574 +los ||| achieving ||| 0.000383215 0.0005415 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 5219 524574 +los ||| acknowledge the ||| 0.00440529 0.122289 3.81262e-06 6.64882e-06 2.718 ||| 0-1 ||| 454 524574 +los ||| acquired ||| 0.00437318 0.0150188 5.71893e-06 1.17e-05 2.718 ||| 0-0 ||| 686 524574 +los ||| acquiring these ||| 0.5 0.0240362 1.90631e-06 1.04813e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| acquiring ||| 0.00396825 0.0033445 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 252 524574 +los ||| acquis communautaire ||| 0.00219298 0.0011351 1.90631e-06 5e-12 2.718 ||| 0-1 ||| 456 524574 +los ||| across national frontiers ||| 0.0909091 0.0129851 1.90631e-06 2.853e-13 2.718 ||| 0-1 ||| 11 524574 +los ||| across national ||| 0.0526316 0.0129851 1.90631e-06 4.38923e-08 2.718 ||| 0-1 ||| 19 524574 +los ||| across the border ||| 0.0163934 0.122289 1.90631e-06 1.02986e-09 2.718 ||| 0-1 ||| 61 524574 +los ||| across the borders . ||| 0.125 0.122289 1.90631e-06 5.75895e-12 2.718 ||| 0-1 ||| 8 524574 +los ||| across the borders ||| 0.0344828 0.122289 1.90631e-06 1.90127e-09 2.718 ||| 0-1 ||| 29 524574 +los ||| across the social divide ||| 0.2 0.122289 1.90631e-06 2.63687e-14 2.718 ||| 0-1 ||| 5 524574 +los ||| across the social ||| 0.25 0.122289 1.90631e-06 4.54633e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| across the ||| 0.00185128 0.122289 1.14379e-05 4.40109e-05 2.718 ||| 0-1 ||| 3241 524574 +los ||| across via children , ||| 0.5 0.293415 1.90631e-06 1.89606e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| across via children ||| 0.5 0.293415 1.90631e-06 1.58992e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| act in the ||| 0.0111111 0.122289 1.90631e-06 1.55995e-06 2.718 ||| 0-2 ||| 90 524574 +los ||| act within the ||| 0.0294118 0.122289 1.90631e-06 1.52391e-08 2.718 ||| 0-2 ||| 34 524574 +los ||| acted upon further ||| 0.166667 0.0017644 1.90631e-06 1.81895e-13 2.718 ||| 0-1 ||| 6 524574 +los ||| acted upon ||| 0.012987 0.0017644 1.90631e-06 3.7636e-10 2.718 ||| 0-1 ||| 77 524574 +los ||| acting on its ||| 0.25 0.0211371 1.90631e-06 8.42871e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| acting purely on the ||| 0.25 0.122289 1.90631e-06 4.33507e-12 2.718 ||| 0-3 ||| 4 524574 +los ||| action against the ||| 0.0131579 0.122289 1.90631e-06 3.09401e-08 2.718 ||| 0-2 ||| 76 524574 +los ||| action until the ||| 1 0.122289 1.90631e-06 6.30213e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| actions the ||| 0.0666667 0.122289 1.90631e-06 2.99411e-05 2.718 ||| 0-1 ||| 15 524574 +los ||| activated the ||| 0.142857 0.122289 3.81262e-06 1.37266e-06 2.718 ||| 0-1 ||| 14 524574 +los ||| active ingredients , the wrong ||| 1 0.122289 1.90631e-06 3.6811e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| active ingredients , the ||| 0.5 0.122289 1.90631e-06 6.59696e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| activists ||| 0.00896414 0.223638 1.71568e-05 0.0001876 2.718 ||| 0-0 ||| 1004 524574 +los ||| activity Based ||| 0.2 0.030303 1.90631e-06 5.36e-11 2.718 ||| 0-1 ||| 5 524574 +los ||| actors liable ||| 0.25 0.232622 1.90631e-06 5.55334e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| actors ||| 0.00722022 0.232622 1.52505e-05 0.0003286 2.718 ||| 0-0 ||| 1108 524574 +los ||| acts are under the terms of ||| 1 0.122289 1.90631e-06 7.92859e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| acts are under the terms ||| 1 0.122289 1.90631e-06 1.45843e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| acts are under the ||| 1 0.122289 1.90631e-06 1.32874e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| acts but also ||| 1 0.139342 1.90631e-06 1.97594e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| acts but ||| 0.125 0.139342 1.90631e-06 3.91383e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| acts is ||| 0.25 0.139342 1.90631e-06 1.7949e-05 2.718 ||| 0-0 ||| 4 524574 +los ||| acts of ||| 0.00365408 0.139342 5.71893e-06 3.11343e-05 2.718 ||| 0-0 ||| 821 524574 +los ||| acts that ||| 0.015625 0.139342 1.90631e-06 9.63373e-06 2.718 ||| 0-0 ||| 64 524574 +los ||| acts ||| 0.00467699 0.139342 3.05009e-05 0.0005727 2.718 ||| 0-0 ||| 3421 524574 +los ||| actual fact , it is the other ||| 1 0.122289 1.90631e-06 1.56561e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| actual fact , it is the ||| 0.333333 0.122289 1.90631e-06 1.2085e-11 2.718 ||| 0-5 ||| 3 524574 +los ||| actual fact ||| 0.001321 0.0063309 1.90631e-06 6.56163e-08 2.718 ||| 0-0 ||| 757 524574 +los ||| actual possession of the ||| 1 0.122289 1.90631e-06 4.8591e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| actual spending ||| 0.25 0.0781615 1.90631e-06 4.23537e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| actual ||| 0.00517178 0.0063309 2.66883e-05 2.24e-05 2.718 ||| 0-0 ||| 2707 524574 +los ||| actually a fact which the ||| 1 0.122289 1.90631e-06 1.95306e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| actually sometimes the ||| 1 0.122289 1.90631e-06 1.00046e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| actually still the ||| 1 0.122289 1.90631e-06 1.33372e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| actually the ||| 0.0214286 0.122289 5.71893e-06 0.000177073 2.718 ||| 0-1 ||| 140 524574 +los ||| acute ||| 0.00618557 0.0049587 5.71893e-06 2.9e-06 2.718 ||| 0-0 ||| 485 524574 +los ||| adapt the related ||| 1 0.122289 1.90631e-06 1.71389e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| adapt the ||| 0.00434783 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-1 ||| 230 524574 +los ||| add up the pros and cons , ||| 1 0.122289 1.90631e-06 1.75613e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| add up the pros and cons ||| 1 0.122289 1.90631e-06 1.47258e-21 2.718 ||| 0-2 ||| 1 524574 +los ||| add up the pros and ||| 1 0.122289 1.90631e-06 2.10369e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| add up the pros ||| 1 0.122289 1.90631e-06 1.67947e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| add up the ||| 0.5 0.122289 3.81262e-06 1.19962e-07 2.718 ||| 0-2 ||| 4 524574 +los ||| added to the ||| 0.00387597 0.122289 1.90631e-06 2.71769e-06 2.718 ||| 0-2 ||| 258 524574 +los ||| additional arguments ||| 0.166667 0.0590406 1.90631e-06 8.23124e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| additional cash subsidy ||| 1 0.030303 1.90631e-06 6.67069e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| additional cash ||| 0.25 0.030303 1.90631e-06 1.02626e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| additional posts for the Court of ||| 1 0.107289 1.90631e-06 8.09051e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| additional posts for the Court ||| 1 0.107289 1.90631e-06 1.48821e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| additional posts for the ||| 0.125 0.107289 1.90631e-06 3.17994e-12 2.718 ||| 0-1 ||| 8 524574 +los ||| additional posts for ||| 0.0769231 0.107289 1.90631e-06 5.17975e-11 2.718 ||| 0-1 ||| 13 524574 +los ||| additional posts ||| 0.0212766 0.107289 1.90631e-06 6.73946e-09 2.718 ||| 0-1 ||| 47 524574 +los ||| additional ||| 0.00102835 0.0012291 1.33442e-05 7.8e-06 2.718 ||| 0-0 ||| 6807 524574 +los ||| additives ||| 0.00162338 0.19 1.90631e-06 0.0001478 2.718 ||| 0-0 ||| 616 524574 +los ||| address the different ||| 0.333333 0.122289 1.90631e-06 7.20701e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| address the ||| 0.00472255 0.122289 1.52505e-05 3.27294e-05 2.718 ||| 0-1 ||| 1694 524574 +los ||| address these ||| 0.00584795 0.0240362 1.90631e-06 1.85981e-07 2.718 ||| 0-1 ||| 171 524574 +los ||| addressed in the ||| 0.00606061 0.122289 1.90631e-06 4.92133e-07 2.718 ||| 0-2 ||| 165 524574 +los ||| addresses the ||| 0.00355872 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-1 ||| 281 524574 +los ||| addressing the ||| 0.00460123 0.122289 5.71893e-06 7.72121e-06 2.718 ||| 0-1 ||| 652 524574 +los ||| addressing ||| 0.00101937 0.0020186 3.81262e-06 4.9e-06 2.718 ||| 0-0 ||| 1962 524574 +los ||| adequate in ||| 0.05 0.0040232 1.90631e-06 3.74579e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| adequate resources - ||| 1 0.21958 1.90631e-06 4.53493e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| adequate resources ||| 0.00625 0.21958 1.90631e-06 1.20223e-07 2.718 ||| 0-1 ||| 160 524574 +los ||| adequate ||| 0.00148412 0.0040232 9.53154e-06 1.75e-05 2.718 ||| 0-0 ||| 3369 524574 +los ||| adhere to the ||| 0.00507614 0.122289 1.90631e-06 3.84974e-07 2.718 ||| 0-2 ||| 197 524574 +los ||| adjusting the ||| 0.0235294 0.122289 3.81262e-06 6.00539e-07 2.718 ||| 0-1 ||| 85 524574 +los ||| adjustments ||| 0.00253485 0.083004 3.81262e-06 8.17e-05 2.718 ||| 0-0 ||| 789 524574 +los ||| administer the ||| 0.0208333 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 48 524574 +los ||| administrative burden ||| 0.00199601 0.000899 1.90631e-06 2.1315e-10 2.718 ||| 0-0 ||| 501 524574 +los ||| administrative ||| 0.000666112 0.000899 7.62523e-06 4.9e-06 2.718 ||| 0-0 ||| 6005 524574 +los ||| administrators ||| 0.00854701 0.193333 1.90631e-06 2.82e-05 2.718 ||| 0-0 ||| 117 524574 +los ||| admittedly , we in the ||| 1 0.122289 1.90631e-06 2.77193e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| adolescent ||| 0.0909091 0.166667 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| adopted by both ||| 0.166667 0.0062464 1.90631e-06 5.47373e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| adopted by the ||| 0.000513611 0.122289 1.90631e-06 4.59421e-07 2.718 ||| 0-2 ||| 1947 524574 +los ||| adopted by ||| 0.000310366 0.0062464 1.90631e-06 3.30439e-07 2.718 ||| 0-1 ||| 3222 524574 +los ||| adoption of the ||| 0.000581395 0.122289 1.90631e-06 1.07504e-06 2.718 ||| 0-2 ||| 1720 524574 +los ||| adult ||| 0.00234742 0.049505 1.90631e-06 2.92e-05 2.718 ||| 0-0 ||| 426 524574 +los ||| adults - quite the reverse ||| 1 0.122289 1.90631e-06 1.10209e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| adults - quite the ||| 0.5 0.122289 1.90631e-06 1.13617e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| adults demonstrate permanent ||| 1 0.304716 1.90631e-06 1.22735e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| adults demonstrate ||| 1 0.304716 1.90631e-06 6.076e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| adults ||| 0.0116086 0.304716 1.33442e-05 0.000245 2.718 ||| 0-0 ||| 603 524574 +los ||| advance to the ||| 0.125 0.122289 1.90631e-06 1.3455e-06 2.718 ||| 0-2 ||| 8 524574 +los ||| advanced ||| 0.000856898 0.002271 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 1167 524574 +los ||| advances ||| 0.00341297 0.129063 5.71893e-06 0.0001313 2.718 ||| 0-0 ||| 879 524574 +los ||| advancing ||| 0.00854701 0.0127226 5.71893e-06 4.9e-06 2.718 ||| 0-0 ||| 351 524574 +los ||| advantage of the ||| 0.00738007 0.122289 3.81262e-06 1.18231e-06 2.718 ||| 0-2 ||| 271 524574 +los ||| advertise the ||| 0.0833333 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 12 524574 +los ||| advice when the ||| 1 0.122289 1.90631e-06 3.85983e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| advice ||| 0.00100351 0.0108752 3.81262e-06 2.04e-05 2.718 ||| 0-0 ||| 1993 524574 +los ||| advisory ||| 0.00141044 0.0029155 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 709 524574 +los ||| advocates ||| 0.0026738 0.0411701 3.81262e-06 3.69e-05 2.718 ||| 0-0 ||| 748 524574 +los ||| affairs are ||| 0.0666667 0.178913 1.90631e-06 1.21412e-05 2.718 ||| 0-0 ||| 15 524574 +los ||| affairs in various ||| 1 0.178913 1.90631e-06 2.64454e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| affairs in ||| 0.0138889 0.178913 1.90631e-06 1.71279e-05 2.718 ||| 0-0 ||| 72 524574 +los ||| affairs issue ||| 0.333333 0.178913 1.90631e-06 6.05591e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| affairs ||| 0.00627156 0.178913 3.81262e-05 0.0008002 2.718 ||| 0-0 ||| 3189 524574 +los ||| affect the ||| 0.00160772 0.122289 1.90631e-06 1.00376e-05 2.718 ||| 0-1 ||| 622 524574 +los ||| affect them ||| 0.0123457 0.038218 1.90631e-06 4.70948e-08 2.718 ||| 0-1 ||| 81 524574 +los ||| affected than the ||| 0.5 0.122289 1.90631e-06 8.72767e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| affected ||| 0.000195618 0.0010346 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 5112 524574 +los ||| affecting the ||| 0.0022779 0.122289 1.90631e-06 6.34855e-06 2.718 ||| 0-1 ||| 439 524574 +los ||| affecting those ||| 0.142857 0.284705 1.90631e-06 2.47124e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| affects the ecosystem ||| 0.5 0.122289 1.90631e-06 4.98447e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| affects the ||| 0.0103093 0.122289 5.71893e-06 7.12067e-06 2.718 ||| 0-1 ||| 291 524574 +los ||| affects those ||| 0.142857 0.284705 1.90631e-06 2.7718e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| affects wages and ||| 0.5 0.268982 1.90631e-06 9.23833e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| affects wages ||| 0.5 0.268982 1.90631e-06 7.37538e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| after a vehicle is ||| 1 0.0001855 1.90631e-06 6.87525e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| after a vehicle ||| 1 0.0001855 1.90631e-06 2.19368e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| after a ||| 0.00110375 0.0001855 1.90631e-06 2.17196e-07 2.718 ||| 0-0 ||| 906 524574 +los ||| after all , the ||| 0.00546448 0.122289 3.81262e-06 6.55083e-08 2.718 ||| 0-3 ||| 366 524574 +los ||| after all , ||| 0.00137552 0.0177928 7.62523e-06 8.68805e-08 2.718 ||| 0-1 ||| 2908 524574 +los ||| after all ||| 0.00156128 0.0177928 1.14379e-05 7.28529e-07 2.718 ||| 0-1 ||| 3843 524574 +los ||| after police ||| 0.25 0.0015146 1.90631e-06 2.1138e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| after the ||| 0.00167898 0.122289 1.90631e-05 0.000116247 2.718 ||| 0-1 ||| 5956 524574 +los ||| after their ||| 0.0108696 0.0236713 1.90631e-06 6.19967e-07 2.718 ||| 0-1 ||| 92 524574 +los ||| after which the ||| 0.111111 0.122289 1.90631e-06 9.87473e-07 2.718 ||| 0-2 ||| 9 524574 +los ||| after years of ||| 0.00719424 0.0019787 1.90631e-06 1.5256e-10 2.718 ||| 0-2 ||| 139 524574 +los ||| after ||| 8.70499e-05 0.0001855 5.71893e-06 4.9e-06 2.718 ||| 0-0 ||| 34463 524574 +los ||| again , the ||| 0.00714286 0.122289 1.90631e-06 2.9583e-05 2.718 ||| 0-2 ||| 140 524574 +los ||| again be the ||| 1 0.122289 1.90631e-06 4.49566e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| again before the ||| 0.142857 0.122289 1.90631e-06 6.20412e-08 2.718 ||| 0-2 ||| 7 524574 +los ||| again for the ||| 0.030303 0.122289 1.90631e-06 1.90656e-06 2.718 ||| 0-2 ||| 33 524574 +los ||| again the fact is that the ||| 1 0.122289 1.90631e-06 2.35192e-11 2.718 ||| 0-5 ||| 1 524574 +los ||| against a maximum ||| 1 0.0008676 1.90631e-06 3.06708e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| against drugs , and ||| 0.166667 0.0417765 1.90631e-06 7.13897e-11 2.718 ||| 0-1 ||| 6 524574 +los ||| against drugs , ||| 0.0277778 0.0417765 1.90631e-06 5.69937e-09 2.718 ||| 0-1 ||| 36 524574 +los ||| against drugs ||| 0.00487805 0.0417765 1.90631e-06 4.77916e-08 2.718 ||| 0-1 ||| 205 524574 +los ||| against each other and ||| 0.0909091 0.0497499 1.90631e-06 3.40683e-12 2.718 ||| 0-1 ||| 11 524574 +los ||| against each other ||| 0.0126582 0.0497499 1.90631e-06 2.71983e-10 2.718 ||| 0-1 ||| 79 524574 +los ||| against each ||| 0.011236 0.0497499 1.90631e-06 2.09944e-07 2.718 ||| 0-1 ||| 89 524574 +los ||| against everybody ||| 0.333333 0.0663194 1.90631e-06 4.4308e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| against existing ||| 1 0.0464558 1.90631e-06 1.03242e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| against producers ||| 0.1 0.36135 1.90631e-06 6.03396e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| against the background ||| 0.00448431 0.122289 1.90631e-06 2.72248e-09 2.718 ||| 0-1 ||| 223 524574 +los ||| against the other ||| 0.0243902 0.122289 1.90631e-06 1.32593e-07 2.718 ||| 0-1 ||| 41 524574 +los ||| against the ||| 0.00216877 0.122289 4.19388e-05 0.000102349 2.718 ||| 0-1 ||| 10144 524574 +los ||| against them ||| 0.00303951 0.038218 1.90631e-06 4.80206e-07 2.718 ||| 0-1 ||| 329 524574 +los ||| against those ||| 0.00301205 0.284705 1.90631e-06 3.98405e-06 2.718 ||| 0-1 ||| 332 524574 +los ||| against ||| 9.96929e-05 0.0002168 9.53154e-06 1.17e-05 2.718 ||| 0-0 ||| 50154 524574 +los ||| age are ||| 0.2 0.0038246 1.90631e-06 2.21521e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| age groups ||| 0.025641 0.143803 1.90631e-06 1.22041e-07 2.718 ||| 0-1 ||| 39 524574 +los ||| age of ||| 0.0017452 0.0019787 1.90631e-06 2.03417e-07 2.718 ||| 0-1 ||| 573 524574 +los ||| age range ||| 0.125 0.0038246 1.90631e-06 1.00302e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| age today ||| 1 0.0038246 1.90631e-06 6.58898e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| age ||| 0.00161464 0.0038246 1.14379e-05 1.46e-05 2.718 ||| 0-0 ||| 3716 524574 +los ||| aged ||| 0.0101523 0.0310966 3.81262e-06 1.85e-05 2.718 ||| 0-0 ||| 197 524574 +los ||| agencies to provide ||| 0.5 0.0227727 1.90631e-06 2.9123e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| agencies to ||| 0.015625 0.0227727 1.90631e-06 9.84549e-06 2.718 ||| 0-0 ||| 64 524574 +los ||| agencies ||| 0.001222 0.0227727 1.14379e-05 0.0001108 2.718 ||| 0-0 ||| 4910 524574 +los ||| agendas ||| 0.00333333 0.0565302 1.90631e-06 2.82e-05 2.718 ||| 0-0 ||| 300 524574 +los ||| agents to ||| 0.0625 0.226396 1.90631e-06 1.92645e-05 2.718 ||| 0-0 ||| 16 524574 +los ||| agents ||| 0.00507614 0.226396 7.62523e-06 0.0002168 2.718 ||| 0-0 ||| 788 524574 +los ||| agree on the ||| 0.00152672 0.122289 1.90631e-06 4.5664e-07 2.718 ||| 0-2 ||| 655 524574 +los ||| agree with the ||| 0.000206271 0.122289 1.90631e-06 4.36405e-07 2.718 ||| 0-2 ||| 4848 524574 +los ||| agreed deadlines are ||| 1 0.109218 1.90631e-06 1.62462e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| agreed deadlines ||| 0.166667 0.109218 1.90631e-06 1.07075e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| agreed in the Treaty , ||| 1 0.122289 1.90631e-06 7.32012e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| agreed in the Treaty ||| 0.5 0.122289 1.90631e-06 6.13823e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| agreed in the ||| 0.00518135 0.122289 1.90631e-06 7.17083e-07 2.718 ||| 0-2 ||| 193 524574 +los ||| agreed the ||| 0.027027 0.122289 1.90631e-06 3.35015e-05 2.718 ||| 0-1 ||| 37 524574 +los ||| agreement , the ||| 0.0106383 0.122289 1.90631e-06 9.42788e-06 2.718 ||| 0-2 ||| 94 524574 +los ||| agreement about ||| 0.0111111 0.0003337 1.90631e-06 6.2662e-09 2.718 ||| 0-1 ||| 90 524574 +los ||| agreement work . ||| 0.25 0.0006501 1.90631e-06 1.95386e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| agreement work ||| 0.25 0.0006501 1.90631e-06 6.4505e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| agreements , ||| 0.00152672 0.199336 1.90631e-06 0.00037601 2.718 ||| 0-0 ||| 655 524574 +los ||| agreements about the ||| 0.111111 0.122289 1.90631e-06 2.25076e-08 2.718 ||| 0-2 ||| 9 524574 +los ||| agreements and ||| 0.00293255 0.199336 1.90631e-06 3.94942e-05 2.718 ||| 0-0 ||| 341 524574 +los ||| agreements entered into ||| 0.0454545 0.199336 1.90631e-06 1.0359e-10 2.718 ||| 0-0 ||| 22 524574 +los ||| agreements entered ||| 0.0909091 0.199336 1.90631e-06 1.00896e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| agreements must include a commitment by all ||| 1 0.199336 1.90631e-06 3.95919e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| agreements must include a commitment by ||| 1 0.199336 1.90631e-06 8.37852e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| agreements must include a commitment ||| 1 0.199336 1.90631e-06 1.59588e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| agreements must include a ||| 1 0.199336 1.90631e-06 2.86e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| agreements must include ||| 1 0.199336 1.90631e-06 6.45222e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| agreements must ||| 0.030303 0.199336 1.90631e-06 4.87328e-06 2.718 ||| 0-0 ||| 33 524574 +los ||| agreements ||| 0.00215586 0.199336 6.48145e-05 0.003153 2.718 ||| 0-0 ||| 15771 524574 +los ||| agricultural holdings , ||| 0.0666667 0.0019291 1.90631e-06 8.89163e-12 2.718 ||| 0-0 ||| 15 524574 +los ||| agricultural holdings ||| 0.0153846 0.0019291 1.90631e-06 7.456e-11 2.718 ||| 0-0 ||| 65 524574 +los ||| agricultural or forestry ||| 0.016129 0.0246734 1.90631e-06 1.4721e-12 2.718 ||| 0-2 ||| 62 524574 +los ||| agricultural revenue has dropped ||| 0.5 0.202394 1.90631e-06 8.32899e-16 2.718 ||| 0-1 ||| 2 524574 +los ||| agricultural revenue has ||| 0.5 0.202394 1.90631e-06 7.2426e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| agricultural revenue ||| 0.0769231 0.202394 1.90631e-06 1.40701e-08 2.718 ||| 0-1 ||| 13 524574 +los ||| agricultural ||| 0.00125638 0.0019291 3.05009e-05 2.33e-05 2.718 ||| 0-0 ||| 12735 524574 +los ||| agricultural-product ||| 0.166667 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| aground on the ||| 1 0.122289 1.90631e-06 3.15716e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| ahead at the ||| 0.5 0.122289 1.90631e-06 1.95787e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| ahead of the ||| 0.003663 0.122289 1.90631e-06 2.54186e-06 2.718 ||| 0-2 ||| 273 524574 +los ||| aid agreements must include a commitment by ||| 1 0.199336 1.90631e-06 1.09423e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| aid agreements must include a commitment ||| 1 0.199336 1.90631e-06 2.08422e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| aid agreements must include a ||| 1 0.199336 1.90631e-06 3.73516e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| aid agreements must include ||| 1 0.199336 1.90631e-06 8.4266e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| aid agreements must ||| 1 0.199336 1.90631e-06 6.3645e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| aid agreements ||| 0.5 0.199336 1.90631e-06 4.11782e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| aid the ||| 0.0192308 0.122289 1.90631e-06 5.60217e-05 2.718 ||| 0-1 ||| 52 524574 +los ||| aid workers ||| 0.00657895 0.364501 1.90631e-06 9.5385e-07 2.718 ||| 0-1 ||| 152 524574 +los ||| aimed at the ||| 0.00458716 0.122289 1.90631e-06 1.24837e-07 2.718 ||| 0-2 ||| 218 524574 +los ||| aims for ||| 0.0133333 0.0015353 1.90631e-06 3.51838e-08 2.718 ||| 0-1 ||| 75 524574 +los ||| air traffic ||| 0.00121212 0.0198837 1.90631e-06 4.72292e-09 2.718 ||| 0-0 ||| 825 524574 +los ||| air ||| 0.010307 0.0198837 8.95965e-05 0.0001663 2.718 ||| 0-0 ||| 4560 524574 +los ||| air-traffic ||| 0.1 0.047619 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| air-worthiness ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| aircraft and ||| 0.0131579 0.163127 1.90631e-06 4.11601e-06 2.718 ||| 0-0 ||| 76 524574 +los ||| aircraft ||| 0.00381471 0.163127 1.33442e-05 0.0003286 2.718 ||| 0-0 ||| 1835 524574 +los ||| airline ||| 0.00890585 0.0145396 1.33442e-05 1.75e-05 2.718 ||| 0-0 ||| 786 524574 +los ||| airport that ||| 0.111111 0.0791091 1.90631e-06 1.68384e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| airport to ||| 0.0769231 0.0791091 1.90631e-06 8.89471e-06 2.718 ||| 0-0 ||| 13 524574 +los ||| airport ||| 0.00428571 0.0791091 1.14379e-05 0.0001001 2.718 ||| 0-0 ||| 1400 524574 +los ||| airports ||| 0.000581058 0.36046 1.90631e-06 0.0008527 2.718 ||| 0-0 ||| 1721 524574 +los ||| alcohol-related ||| 0.04 0.131068 1.90631e-06 2.63e-05 2.718 ||| 0-0 ||| 25 524574 +los ||| align the ||| 0.0322581 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-1 ||| 31 524574 +los ||| alike ||| 0.0131926 0.0196353 9.53154e-06 1.36e-05 2.718 ||| 0-0 ||| 379 524574 +los ||| all , about ||| 0.0714286 0.0177928 1.90631e-06 4.53414e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| all , the ||| 0.00493421 0.122289 1.14379e-05 0.000241728 2.718 ||| 0-2 ||| 1216 524574 +los ||| all , ||| 0.00171471 0.0177928 4.00325e-05 0.000320592 2.718 ||| 0-0 ||| 12247 524574 +los ||| all - ||| 0.00442478 0.0177928 1.90631e-06 1.01405e-05 2.718 ||| 0-0 ||| 226 524574 +los ||| all EU ||| 0.0106383 0.0110559 1.90631e-06 1.45329e-06 2.718 ||| 0-0 0-1 ||| 94 524574 +los ||| all EUR ||| 1 0.0260592 1.90631e-06 1.53421e-06 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| all Europeans . they must be able ||| 1 0.0177928 1.90631e-06 9.38563e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| all Europeans . they must be ||| 1 0.0177928 1.90631e-06 1.12416e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| all Europeans . they must ||| 1 0.0177928 1.90631e-06 6.20299e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| all Europeans . they ||| 1 0.0177928 1.90631e-06 4.01332e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| all Europeans . ||| 0.01 0.0177928 1.90631e-06 1.22957e-10 2.718 ||| 0-0 ||| 100 524574 +los ||| all Europeans ||| 0.00262467 0.0177928 1.90631e-06 4.05933e-08 2.718 ||| 0-0 ||| 381 524574 +los ||| all Member ||| 0.0163934 0.0177928 1.90631e-06 1.38528e-06 2.718 ||| 0-0 ||| 61 524574 +los ||| all Members have now received this opinion ||| 1 0.168879 1.90631e-06 7.97923e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| all Members have now received this ||| 1 0.168879 1.90631e-06 3.25152e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| all Members have now received ||| 1 0.168879 1.90631e-06 5.03222e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| all Members have now ||| 1 0.168879 1.90631e-06 5.61632e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| all Members have ||| 0.111111 0.168879 1.90631e-06 2.7265e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| all Members ||| 0.00135685 0.168879 1.90631e-06 2.27972e-05 2.718 ||| 0-1 ||| 737 524574 +los ||| all action ||| 0.05 0.0177928 1.90631e-06 8.12673e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| all actually did ||| 1 0.0177928 1.90631e-06 5.04039e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| all actually ||| 0.333333 0.0177928 1.90631e-06 1.10973e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| all admissible ||| 1 0.0177928 1.90631e-06 1.07532e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| all agree on the ||| 0.05 0.122289 1.90631e-06 2.15781e-09 2.718 ||| 0-3 ||| 20 524574 +los ||| all apply ||| 0.25 0.0177928 1.90631e-06 3.86846e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| all areas ||| 0.0013369 0.0177928 1.90631e-06 6.15352e-07 2.718 ||| 0-0 ||| 748 524574 +los ||| all as ||| 0.0140845 0.00936125 1.90631e-06 9.59185e-07 2.718 ||| 0-0 0-1 ||| 71 524574 +los ||| all be the ||| 0.2 0.122289 1.90631e-06 3.67349e-05 2.718 ||| 0-2 ||| 5 524574 +los ||| all be ||| 0.0042735 0.0177928 1.90631e-06 4.87198e-05 2.718 ||| 0-0 ||| 234 524574 +los ||| all before them ||| 1 0.038218 1.90631e-06 2.37854e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| all cases ||| 0.00333333 0.136512 1.90631e-06 7.86543e-06 2.718 ||| 0-1 ||| 300 524574 +los ||| all citizens ||| 0.00116959 0.293572 1.90631e-06 7.15293e-05 2.718 ||| 0-1 ||| 855 524574 +los ||| all civil ||| 0.2 0.0308184 1.90631e-06 1.41673e-06 2.718 ||| 0-0 0-1 ||| 5 524574 +los ||| all competent authorities to explain everything ||| 1 0.0177928 1.90631e-06 5.03142e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| all competent authorities to explain ||| 1 0.0177928 1.90631e-06 5.43937e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| all competent authorities to ||| 1 0.0177928 1.90631e-06 2.0682e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| all competent authorities ||| 0.25 0.0177928 1.90631e-06 2.32753e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| all competent ||| 1 0.0177928 1.90631e-06 3.49479e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| all components of the ||| 0.333333 0.0475671 1.90631e-06 1.44558e-10 2.718 ||| 0-0 0-1 0-2 0-3 ||| 3 524574 +los ||| all concerned ||| 0.00462963 0.0177928 1.90631e-06 4.3244e-06 2.718 ||| 0-0 ||| 216 524574 +los ||| all corners ||| 0.0344828 0.111754 1.90631e-06 9.40905e-08 2.718 ||| 0-0 0-1 ||| 29 524574 +los ||| all costs ||| 0.00704225 0.214442 5.71893e-06 1.30846e-05 2.718 ||| 0-1 ||| 426 524574 +los ||| all else , the ||| 0.0833333 0.122289 1.90631e-06 2.85239e-08 2.718 ||| 0-3 ||| 12 524574 +los ||| all energy is ||| 1 0.0177928 1.90631e-06 7.49021e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| all energy ||| 0.0769231 0.0177928 1.90631e-06 2.3899e-07 2.718 ||| 0-0 ||| 13 524574 +los ||| all events ||| 0.00364964 0.0789441 1.90631e-06 2.91681e-06 2.718 ||| 0-0 0-1 ||| 274 524574 +los ||| all every ||| 0.0625 0.0810124 1.90631e-06 8.77434e-06 2.718 ||| 0-0 0-1 ||| 16 524574 +los ||| all fishermen should be guaranteed ||| 1 0.0177928 1.90631e-06 3.58162e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| all fishermen should be ||| 1 0.0177928 1.90631e-06 1.01462e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| all fishermen should ||| 1 0.0177928 1.90631e-06 5.59857e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| all fishermen ||| 0.037037 0.0177928 1.90631e-06 1.2635e-08 2.718 ||| 0-0 ||| 27 524574 +los ||| all goes ||| 0.0294118 0.0177928 1.90631e-06 3.7233e-07 2.718 ||| 0-0 ||| 34 524574 +los ||| all groups , ||| 0.04 0.143803 1.90631e-06 1.11826e-06 2.718 ||| 0-1 ||| 25 524574 +los ||| all groups the ||| 1 0.080798 1.90631e-06 3.27505e-07 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| all groups ||| 0.00900901 0.080798 3.81262e-06 5.33466e-06 2.718 ||| 0-0 0-1 ||| 222 524574 +los ||| all have ||| 0.003003 0.0177928 1.90631e-06 3.21515e-05 2.718 ||| 0-0 ||| 333 524574 +los ||| all her ||| 0.0125 0.0177928 1.90631e-06 7.31486e-07 2.718 ||| 0-0 ||| 80 524574 +los ||| all honesty ||| 0.00645161 0.0177928 1.90631e-06 2.95713e-09 2.718 ||| 0-0 ||| 155 524574 +los ||| all honourable ||| 0.142857 0.0177928 1.90631e-06 1.40329e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| all in order to disguise the ||| 1 0.122289 1.90631e-06 2.25865e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| all in ||| 0.00181159 0.0177928 3.81262e-06 5.75417e-05 2.718 ||| 0-0 ||| 1104 524574 +los ||| all is said ||| 0.0119048 0.0177928 1.90631e-06 3.46538e-08 2.718 ||| 0-0 ||| 84 524574 +los ||| all is ||| 0.00282486 0.0177928 1.90631e-06 8.42543e-05 2.718 ||| 0-0 ||| 354 524574 +los ||| all it ||| 0.00299401 0.0177928 1.90631e-06 4.78066e-05 2.718 ||| 0-0 ||| 334 524574 +los ||| all its ||| 0.00200938 0.0211371 5.71893e-06 1.00892e-05 2.718 ||| 0-1 ||| 1493 524574 +los ||| all just a ||| 0.25 0.0177928 1.90631e-06 1.50345e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| all just ||| 0.0666667 0.0177928 1.90631e-06 3.39183e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| all kinds of grand ||| 0.333333 0.0177928 1.90631e-06 3.47099e-14 2.718 ||| 0-0 ||| 3 524574 +los ||| all kinds of ||| 0.00184502 0.0177928 1.90631e-06 6.94197e-09 2.718 ||| 0-0 ||| 542 524574 +los ||| all kinds ||| 0.00263852 0.0177928 3.81262e-06 1.27694e-07 2.718 ||| 0-0 ||| 758 524574 +los ||| all like ||| 0.00458716 0.0177928 1.90631e-06 4.77415e-06 2.718 ||| 0-0 ||| 218 524574 +los ||| all likelihood be obliged ||| 0.166667 0.0177928 1.90631e-06 1.41073e-14 2.718 ||| 0-0 ||| 6 524574 +los ||| all likelihood be ||| 0.166667 0.0177928 1.90631e-06 3.7027e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| all likelihood ||| 0.0119048 0.0177928 1.90631e-06 2.04311e-08 2.718 ||| 0-0 ||| 84 524574 +los ||| all manner of crops ||| 0.2 0.0019787 1.90631e-06 5.15078e-14 2.718 ||| 0-2 ||| 5 524574 +los ||| all manner of ||| 0.00671141 0.0019787 1.90631e-06 3.0478e-09 2.718 ||| 0-2 ||| 149 524574 +los ||| all manner ||| 0.00645161 0.0177928 1.90631e-06 5.24218e-07 2.718 ||| 0-0 ||| 155 524574 +los ||| all market ||| 0.1 0.0177928 1.90631e-06 6.07556e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| all matters in ||| 0.5 0.0584903 1.90631e-06 7.20859e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| all matters ||| 0.00806452 0.0584903 1.90631e-06 3.36779e-06 2.718 ||| 0-1 ||| 124 524574 +los ||| all members ||| 0.00483092 0.154615 1.90631e-06 9.38181e-06 2.718 ||| 0-1 ||| 207 524574 +los ||| all my ||| 0.0078125 0.0132169 1.14379e-05 1.85305e-06 2.718 ||| 0-0 0-1 ||| 768 524574 +los ||| all noticed the alarming increase ||| 1 0.122289 1.90631e-06 1.27015e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| all noticed the alarming ||| 1 0.122289 1.90631e-06 9.8309e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| all noticed the ||| 1 0.122289 1.90631e-06 1.96618e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| all nuclear reactors ||| 0.166667 0.19871 1.90631e-06 2.75176e-11 2.718 ||| 0-2 ||| 6 524574 +los ||| all of the ||| 0.0091954 0.122289 3.81262e-05 0.000110195 2.718 ||| 0-2 ||| 2175 524574 +los ||| all of them ||| 0.00772201 0.0177928 7.62523e-06 3.92024e-07 2.718 ||| 0-0 ||| 518 524574 +los ||| all of us , as ||| 0.0769231 0.0177928 1.90631e-06 5.12597e-10 2.718 ||| 0-0 ||| 13 524574 +los ||| all of us , the ||| 0.0769231 0.122289 1.90631e-06 3.78759e-08 2.718 ||| 0-4 ||| 13 524574 +los ||| all of us , ||| 0.00319489 0.0177928 1.90631e-06 5.0233e-08 2.718 ||| 0-0 ||| 313 524574 +los ||| all of us ||| 0.00221484 0.0177928 7.62523e-06 4.21224e-07 2.718 ||| 0-0 ||| 1806 524574 +los ||| all of ||| 0.00240648 0.0177928 4.19388e-05 0.000146147 2.718 ||| 0-0 ||| 9142 524574 +los ||| all on the ||| 0.0104167 0.122289 1.90631e-06 1.35626e-05 2.718 ||| 0-2 ||| 96 524574 +los ||| all on those ||| 0.5 0.284705 1.90631e-06 5.27939e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| all other ||| 0.00360144 0.0177928 5.71893e-06 3.48269e-06 2.718 ||| 0-0 ||| 833 524574 +los ||| all our ||| 0.0081781 0.0213148 3.43136e-05 9.60019e-06 2.718 ||| 0-0 0-1 ||| 2201 524574 +los ||| all over Spain ||| 0.5 0.0177928 1.90631e-06 2.09695e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| all over ||| 0.000961538 0.0177928 1.90631e-06 1.29442e-06 2.718 ||| 0-0 ||| 1040 524574 +los ||| all possible ||| 0.00487805 0.0177928 1.90631e-06 2.15629e-06 2.718 ||| 0-0 ||| 205 524574 +los ||| all prefer ||| 0.5 0.0177928 1.90631e-06 7.07023e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| all respects ||| 0.010989 0.0177928 1.90631e-06 5.43037e-08 2.718 ||| 0-0 ||| 91 524574 +los ||| all restrictions ||| 0.0294118 0.0177928 1.90631e-06 5.13465e-08 2.718 ||| 0-0 ||| 34 524574 +los ||| all right for a right-wing dictator ||| 1 0.0057554 1.90631e-06 1.29564e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| all right for a right-wing ||| 1 0.0057554 1.90631e-06 4.04889e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| all roads meet : the ||| 1 0.122289 1.90631e-06 9.8788e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| all sectors ||| 0.00269542 0.1467 1.90631e-06 5.18707e-06 2.718 ||| 0-1 ||| 371 524574 +los ||| all senior ||| 0.5 0.0177928 1.90631e-06 3.27973e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| all sorts ||| 0.00340136 0.0177928 1.90631e-06 4.16687e-08 2.718 ||| 0-0 ||| 294 524574 +los ||| all take into account the ||| 0.5 0.122289 1.90631e-06 9.63294e-13 2.718 ||| 0-4 ||| 2 524574 +los ||| all taking place ||| 0.0833333 0.0177928 1.90631e-06 1.7195e-09 2.718 ||| 0-0 ||| 12 524574 +los ||| all taking ||| 0.0666667 0.0177928 1.90631e-06 1.14253e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| all targeted ||| 0.0909091 0.0177928 1.90631e-06 7.55412e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| all that had ||| 0.333333 0.0177928 1.90631e-06 4.53888e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| all that is ||| 0.00520833 0.0177928 1.90631e-06 1.41729e-06 2.718 ||| 0-0 ||| 192 524574 +los ||| all that the ||| 0.0113636 0.122289 1.90631e-06 3.40972e-05 2.718 ||| 0-2 ||| 88 524574 +los ||| all that ||| 0.00178678 0.0177928 5.71893e-06 4.52215e-05 2.718 ||| 0-0 ||| 1679 524574 +los ||| all the Member States ||| 0.000503525 0.122289 1.90631e-06 4.98439e-10 2.718 ||| 0-1 ||| 1986 524574 +los ||| all the Member ||| 0.0357143 0.122289 1.90631e-06 1.04451e-06 2.718 ||| 0-1 ||| 28 524574 +los ||| all the appended ||| 1 0.122289 1.90631e-06 2.22969e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| all the arguments ||| 0.0185185 0.0663742 1.90631e-06 1.79432e-07 2.718 ||| 0-0 0-1 0-2 ||| 54 524574 +los ||| all the forces of the law ||| 1 0.070041 1.90631e-06 3.58939e-14 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| all the forces of the ||| 0.5 0.070041 1.90631e-06 2.03596e-10 2.718 ||| 0-0 0-1 ||| 2 524574 +los ||| all the forces of ||| 0.2 0.070041 1.90631e-06 3.31633e-09 2.718 ||| 0-0 0-1 ||| 5 524574 +los ||| all the forces ||| 0.0277778 0.070041 1.90631e-06 6.10023e-08 2.718 ||| 0-0 0-1 ||| 36 524574 +los ||| all the goals ||| 0.166667 0.0378024 1.90631e-06 3.12915e-08 2.718 ||| 0-0 0-2 ||| 6 524574 +los ||| all the instances of ||| 0.5 0.122289 1.90631e-06 1.26725e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| all the instances ||| 0.333333 0.122289 1.90631e-06 2.33104e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| all the institutions is one of ||| 1 0.122289 1.90631e-06 7.55726e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| all the institutions is one ||| 1 0.122289 1.90631e-06 1.39012e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| all the institutions is ||| 0.5 0.122289 1.90631e-06 3.33523e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| all the institutions ||| 0.00181818 0.122289 1.90631e-06 1.06417e-07 2.718 ||| 0-1 ||| 550 524574 +los ||| all the more acceptable ||| 1 0.122289 1.90631e-06 1.49981e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| all the more ||| 0.00194553 0.122289 3.81262e-06 4.62904e-06 2.718 ||| 0-1 ||| 1028 524574 +los ||| all the other ||| 0.00100806 0.0479769 1.90631e-06 3.27383e-07 2.718 ||| 0-0 0-1 0-2 ||| 992 524574 +los ||| all the others ||| 0.00877193 0.122289 3.81262e-06 1.97023e-07 2.718 ||| 0-1 ||| 228 524574 +los ||| all the participating ||| 1 0.070041 1.90631e-06 1.32614e-08 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| all the reasons that ||| 0.125 0.070041 1.90631e-06 1.96114e-09 2.718 ||| 0-0 0-1 ||| 8 524574 +los ||| all the reasons ||| 0.0357143 0.070041 1.90631e-06 1.16585e-07 2.718 ||| 0-0 0-1 ||| 28 524574 +los ||| all the right ||| 0.111111 0.122289 1.90631e-06 1.30721e-06 2.718 ||| 0-1 ||| 9 524574 +los ||| all the rumours about possible mafia groups ||| 1 0.122289 1.90631e-06 4.68846e-25 2.718 ||| 0-1 ||| 1 524574 +los ||| all the rumours about possible mafia ||| 1 0.122289 1.90631e-06 7.08227e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| all the rumours about possible ||| 1 0.122289 1.90631e-06 5.05876e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| all the rumours about ||| 1 0.122289 1.90631e-06 6.3069e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| all the rumours ||| 0.333333 0.122289 1.90631e-06 4.45938e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| all the time ||| 0.010274 0.122289 5.71893e-06 3.32771e-06 2.718 ||| 0-1 ||| 292 524574 +los ||| all the ||| 0.021936 0.070041 0.00127913 0.00115316 2.718 ||| 0-0 0-1 ||| 30589 524574 +los ||| all their ||| 0.00376648 0.0236713 3.81262e-06 1.08103e-05 2.718 ||| 0-1 ||| 531 524574 +los ||| all there are the ||| 0.2 0.122289 1.90631e-06 9.4273e-08 2.718 ||| 0-3 ||| 5 524574 +los ||| all these are already in the ||| 0.5 0.122289 1.90631e-06 3.16166e-13 2.718 ||| 0-5 ||| 2 524574 +los ||| all these factors , in my view ||| 1 0.0240362 1.90631e-06 5.10676e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| all these factors , in my ||| 1 0.0240362 1.90631e-06 5.65345e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| all these factors , in ||| 1 0.0240362 1.90631e-06 8.79093e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| all these factors , ||| 0.1 0.0240362 1.90631e-06 4.10705e-11 2.718 ||| 0-1 ||| 10 524574 +los ||| all these factors ||| 0.0144928 0.0240362 1.90631e-06 3.44393e-10 2.718 ||| 0-1 ||| 69 524574 +los ||| all these ||| 0.00218043 0.0209145 1.52505e-05 6.55273e-06 2.718 ||| 0-0 0-1 ||| 3669 524574 +los ||| all this , ||| 0.00286533 0.0177928 1.90631e-06 2.07148e-06 2.718 ||| 0-0 ||| 349 524574 +los ||| all this ||| 0.00105634 0.0177928 5.71893e-06 1.73702e-05 2.718 ||| 0-0 ||| 2840 524574 +los ||| all those , ||| 0.05 0.151249 1.90631e-06 5.35312e-06 2.718 ||| 0-0 0-1 ||| 20 524574 +los ||| all those - ||| 0.333333 0.284705 1.90631e-06 2.97629e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| all those belonging ||| 0.25 0.284705 1.90631e-06 2.13038e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| all those in positions of ||| 0.2 0.151249 1.90631e-06 1.76549e-12 2.718 ||| 0-0 0-1 ||| 5 524574 +los ||| all those in positions ||| 0.25 0.151249 1.90631e-06 3.24753e-11 2.718 ||| 0-0 0-1 ||| 4 524574 +los ||| all those in ||| 0.015625 0.151249 1.90631e-06 9.60809e-07 2.718 ||| 0-0 0-1 ||| 64 524574 +los ||| all those who believe ||| 0.037037 0.284705 1.90631e-06 2.16641e-11 2.718 ||| 0-1 ||| 27 524574 +los ||| all those who had been ||| 1 0.284705 1.90631e-06 2.33242e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| all those who had ||| 0.333333 0.284705 1.90631e-06 6.98498e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| all those who have ||| 0.00407332 0.151249 3.81262e-06 4.73505e-10 2.718 ||| 0-0 0-1 ||| 491 524574 +los ||| all those who ||| 0.00265675 0.284705 9.53154e-06 6.95923e-08 2.718 ||| 0-1 ||| 1882 524574 +los ||| all those ||| 0.0180225 0.151249 0.000137254 4.48882e-05 2.718 ||| 0-0 0-1 ||| 3995 524574 +los ||| all times ||| 0.00263158 0.0314168 1.90631e-06 1.18986e-06 2.718 ||| 0-1 ||| 380 524574 +los ||| all to start discussing problems that are ||| 0.333333 0.106249 1.90631e-06 1.61134e-18 2.718 ||| 0-4 ||| 3 524574 +los ||| all to start discussing problems that ||| 0.333333 0.106249 1.90631e-06 1.062e-16 2.718 ||| 0-4 ||| 3 524574 +los ||| all to start discussing problems ||| 0.333333 0.106249 1.90631e-06 6.31329e-15 2.718 ||| 0-4 ||| 3 524574 +los ||| all to the people ||| 1 0.122289 1.90631e-06 1.58537e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| all to the ||| 0.023622 0.122289 5.71893e-06 0.000180115 2.718 ||| 0-2 ||| 127 524574 +los ||| all to this ||| 0.0714286 0.0177928 1.90631e-06 1.54348e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| all to ||| 0.00425532 0.0177928 7.62523e-06 0.000238877 2.718 ||| 0-0 ||| 940 524574 +los ||| all too easy ||| 0.0294118 0.0177928 1.90631e-06 1.38302e-10 2.718 ||| 0-0 ||| 34 524574 +los ||| all too ||| 0.00118624 0.0177928 1.90631e-06 3.65878e-06 2.718 ||| 0-0 ||| 843 524574 +los ||| all took ||| 0.25 0.0177928 1.90631e-06 3.96524e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| all towards the ||| 0.2 0.122289 1.90631e-06 2.57428e-07 2.718 ||| 0-2 ||| 5 524574 +los ||| all vehicles ||| 0.0149254 0.285832 1.90631e-06 6.3585e-06 2.718 ||| 0-1 ||| 67 524574 +los ||| all very ||| 0.00393701 0.0177928 1.90631e-06 9.35394e-06 2.718 ||| 0-0 ||| 254 524574 +los ||| all want ||| 0.0121951 0.0177928 1.90631e-06 1.25678e-06 2.718 ||| 0-0 ||| 82 524574 +los ||| all we need now is the implementation ||| 1 0.122289 1.90631e-06 1.05837e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| all we need now is the ||| 1 0.122289 1.90631e-06 1.36213e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| all will be achieved ||| 1 0.0177928 1.90631e-06 7.05144e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| all will be ||| 0.0588235 0.0177928 1.90631e-06 4.21485e-07 2.718 ||| 0-0 ||| 17 524574 +los ||| all will ||| 0.047619 0.0177928 1.90631e-06 2.3257e-05 2.718 ||| 0-0 ||| 21 524574 +los ||| all wine-producing regions ||| 0.5 0.0177928 1.90631e-06 8.86064e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| all wine-producing ||| 0.5 0.0177928 1.90631e-06 1.07532e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| all years , ||| 0.5 0.0059786 1.90631e-06 1.33161e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| all years ||| 0.5 0.0059786 1.90631e-06 1.11661e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| all your ||| 0.0037037 0.0137135 1.90631e-06 8.28534e-07 2.718 ||| 0-0 0-1 ||| 270 524574 +los ||| all ||| 0.0118937 0.0177928 0.00346567 0.0026883 2.718 ||| 0-0 ||| 152854 524574 +los ||| alleviate the symptoms ||| 0.25 0.122289 1.90631e-06 3.01985e-12 2.718 ||| 0-1 ||| 4 524574 +los ||| alleviate the worst ||| 0.333333 0.122289 1.90631e-06 2.07272e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| alleviate the ||| 0.00711744 0.122289 3.81262e-06 1.37266e-06 2.718 ||| 0-1 ||| 281 524574 +los ||| allocated , the ||| 1 0.122289 1.90631e-06 2.28152e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| allow democratic changes in ||| 0.2 0.0936843 1.90631e-06 1.41289e-13 2.718 ||| 0-2 ||| 5 524574 +los ||| allow democratic changes ||| 0.2 0.0936843 1.90631e-06 6.6009e-12 2.718 ||| 0-2 ||| 5 524574 +los ||| allow new ||| 0.166667 0.0005876 1.90631e-06 9.43714e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| allow past ||| 1 0.0033773 1.90631e-06 7.78746e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| allow people ||| 0.0384615 0.0894672 1.90631e-06 1.91055e-06 2.718 ||| 0-1 ||| 26 524574 +los ||| allow terrorist ||| 0.5 0.0058613 1.90631e-06 4.2455e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| allow the ||| 0.0142586 0.122289 2.85946e-05 0.000104065 2.718 ||| 0-1 ||| 1052 524574 +los ||| allow their ||| 0.0384615 0.0236713 1.90631e-06 5.54996e-07 2.718 ||| 0-1 ||| 26 524574 +los ||| allow them to ||| 0.00909091 0.038218 3.81262e-06 4.33856e-08 2.718 ||| 0-1 ||| 220 524574 +los ||| allow them ||| 0.0101523 0.038218 3.81262e-06 4.88257e-07 2.718 ||| 0-1 ||| 197 524574 +los ||| allow those ||| 0.0384615 0.284705 1.90631e-06 4.05084e-06 2.718 ||| 0-1 ||| 26 524574 +los ||| allow ||| 0.000338868 0.0004012 5.71893e-06 5.8e-06 2.718 ||| 0-0 ||| 8853 524574 +los ||| allowable ||| 0.0121951 0.0909091 1.90631e-06 1.07e-05 2.718 ||| 0-0 ||| 82 524574 +los ||| allowances before ||| 0.25 0.0576714 1.90631e-06 1.28802e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| allowances ||| 0.00408719 0.0576714 5.71893e-06 5.15e-05 2.718 ||| 0-0 ||| 734 524574 +los ||| allowing the latter to prevail ||| 1 0.122289 1.90631e-06 4.39381e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| allowing the latter to ||| 1 0.122289 1.90631e-06 1.84614e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| allowing the latter ||| 1 0.122289 1.90631e-06 2.07762e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| allowing the ||| 0.00454545 0.122289 3.81262e-06 2.16194e-05 2.718 ||| 0-1 ||| 440 524574 +los ||| allowing themselves to be ||| 0.0769231 0.0073488 1.90631e-06 8.20553e-12 2.718 ||| 0-1 ||| 13 524574 +los ||| allowing themselves to ||| 0.0909091 0.0073488 1.90631e-06 4.52772e-10 2.718 ||| 0-1 ||| 11 524574 +los ||| allowing themselves ||| 0.125 0.0073488 1.90631e-06 5.09544e-09 2.718 ||| 0-1 ||| 8 524574 +los ||| allowing those ||| 0.0714286 0.284705 1.90631e-06 8.41559e-07 2.718 ||| 0-1 ||| 14 524574 +los ||| allows people ||| 0.1 0.0894672 1.90631e-06 2.23659e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| allows the ||| 0.00772201 0.122289 3.81262e-06 1.21824e-05 2.718 ||| 0-1 ||| 259 524574 +los ||| along behind the ||| 0.333333 0.122289 1.90631e-06 6.70682e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| along come the ||| 0.5 0.122289 1.90631e-06 6.35725e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| along the coasts ||| 0.0666667 0.122289 1.90631e-06 2.17073e-10 2.718 ||| 0-1 ||| 15 524574 +los ||| along the lines ||| 0.00271739 0.122289 1.90631e-06 6.81161e-09 2.718 ||| 0-1 ||| 368 524574 +los ||| along the ||| 0.0037037 0.122289 9.53154e-06 7.48529e-05 2.718 ||| 0-1 ||| 1350 524574 +los ||| along these lines ||| 0.00282486 0.0240362 1.90631e-06 3.87063e-11 2.718 ||| 0-1 ||| 354 524574 +los ||| along these ||| 0.00280112 0.0240362 1.90631e-06 4.25344e-07 2.718 ||| 0-1 ||| 357 524574 +los ||| alongside the ||| 0.00324675 0.122289 3.81262e-06 8.02148e-06 2.718 ||| 0-1 ||| 616 524574 +los ||| already in the ||| 0.0114943 0.122289 1.90631e-06 4.252e-06 2.718 ||| 0-2 ||| 87 524574 +los ||| already makes the ||| 0.5 0.122289 1.90631e-06 3.37506e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| already pointed out , the ||| 0.333333 0.122289 1.90631e-06 4.1832e-12 2.718 ||| 0-4 ||| 3 524574 +los ||| already pointed to the ||| 0.5 0.122289 1.90631e-06 8.13741e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| already the case ||| 0.030303 0.122289 1.90631e-06 2.12535e-07 2.718 ||| 0-1 ||| 33 524574 +los ||| already the ||| 0.0208333 0.122289 3.81262e-06 0.00019865 2.718 ||| 0-1 ||| 96 524574 +los ||| already undermined their ||| 1 0.0236713 1.90631e-06 1.52558e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| also , there is ||| 0.25 0.0026918 1.90631e-06 6.93455e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| also , there ||| 0.1 0.0026918 1.90631e-06 2.2126e-07 2.718 ||| 0-2 ||| 10 524574 +los ||| also affects the ecosystem ||| 0.5 0.122289 1.90631e-06 2.51646e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| also affects the ||| 0.0357143 0.122289 1.90631e-06 3.59494e-08 2.718 ||| 0-2 ||| 28 524574 +los ||| also appeal to men ; the differences ||| 1 0.122289 1.90631e-06 1.7801e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| also appeal to men ; the ||| 1 0.122289 1.90631e-06 7.60726e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| also as ||| 0.0030581 0.0009297 1.90631e-06 1.80134e-06 2.718 ||| 0-1 ||| 327 524574 +los ||| also ask for the ||| 0.2 0.122289 1.90631e-06 2.2886e-09 2.718 ||| 0-3 ||| 5 524574 +los ||| also at the ||| 0.00980392 0.122289 1.90631e-06 9.06835e-06 2.718 ||| 0-2 ||| 102 524574 +los ||| also be the ||| 0.0108696 0.122289 1.90631e-06 3.92475e-05 2.718 ||| 0-2 ||| 92 524574 +los ||| also be verified as compatible ||| 0.5 0.0009297 1.90631e-06 6.77394e-19 2.718 ||| 0-3 ||| 2 524574 +los ||| also be verified as ||| 0.5 0.0009297 1.90631e-06 8.16138e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| also bear the ||| 0.25 0.122289 1.90631e-06 3.24195e-07 2.718 ||| 0-2 ||| 4 524574 +los ||| also been the ||| 0.0625 0.122289 1.90631e-06 7.23147e-06 2.718 ||| 0-2 ||| 16 524574 +los ||| also bring the ||| 0.2 0.122289 1.90631e-06 6.7416e-07 2.718 ||| 0-2 ||| 5 524574 +los ||| also condemned the ||| 0.166667 0.122289 1.90631e-06 2.64207e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| also contained the ||| 1 0.122289 1.90631e-06 1.47263e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| also cover the ||| 0.0666667 0.122289 1.90631e-06 1.69136e-07 2.718 ||| 0-2 ||| 15 524574 +los ||| also discussed the ||| 0.1 0.122289 1.90631e-06 1.13696e-07 2.718 ||| 0-2 ||| 10 524574 +los ||| also discussing facts and ||| 0.333333 0.0667145 1.90631e-06 4.03602e-13 2.718 ||| 0-2 ||| 3 524574 +los ||| also discussing facts ||| 0.333333 0.0667145 1.90631e-06 3.22214e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| also disputes between the ||| 1 0.122289 1.90631e-06 4.51321e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| also for the ||| 0.0028777 0.122289 3.81262e-06 1.66444e-05 2.718 ||| 0-2 ||| 695 524574 +los ||| also from the point ||| 0.1 0.122289 1.90631e-06 3.05089e-09 2.718 ||| 0-2 ||| 10 524574 +los ||| also from the ||| 0.00806452 0.122289 1.90631e-06 3.48753e-06 2.718 ||| 0-2 ||| 124 524574 +los ||| also have - the ||| 1 0.122289 1.90631e-06 9.76992e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| also have the annual ||| 1 0.122289 1.90631e-06 7.45934e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| also have the ||| 0.0233918 0.122289 7.62523e-06 2.59005e-05 2.718 ||| 0-2 ||| 171 524574 +los ||| also high time the ||| 1 0.122289 1.90631e-06 5.30808e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| also host ||| 0.25 0.0172563 1.90631e-06 9.79428e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| also in the ||| 0.00128866 0.122289 1.90631e-06 4.63542e-05 2.718 ||| 0-2 ||| 776 524574 +los ||| also in ||| 0.000368053 0.0001268 1.90631e-06 6.97212e-07 2.718 ||| 0-1 ||| 2717 524574 +los ||| also include the ||| 0.0123457 0.122289 1.90631e-06 2.86729e-07 2.718 ||| 0-2 ||| 81 524574 +los ||| also involve all the ||| 1 0.122289 1.90631e-06 5.0451e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| also made the ||| 0.111111 0.122289 1.90631e-06 4.53656e-06 2.718 ||| 0-2 ||| 9 524574 +los ||| also meet ||| 0.037037 0.0026912 1.90631e-06 1.17632e-07 2.718 ||| 0-1 ||| 27 524574 +los ||| also of the ||| 0.00518135 0.122289 3.81262e-06 0.000117732 2.718 ||| 0-2 ||| 386 524574 +los ||| also our ||| 0.00497512 0.0248369 1.90631e-06 1.80291e-05 2.718 ||| 0-1 ||| 201 524574 +los ||| also raised the question ||| 0.111111 0.122289 1.90631e-06 2.06395e-10 2.718 ||| 0-2 ||| 9 524574 +los ||| also raised the ||| 0.0277778 0.122289 1.90631e-06 2.4948e-07 2.718 ||| 0-2 ||| 36 524574 +los ||| also related ||| 0.111111 0.0125716 1.90631e-06 3.33712e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| also so that the ||| 0.2 0.122289 1.90631e-06 8.26837e-08 2.718 ||| 0-3 ||| 5 524574 +los ||| also the comments ||| 0.5 0.122289 1.90631e-06 1.08281e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| also the efforts ||| 0.166667 0.111918 1.90631e-06 3.67637e-06 2.718 ||| 0-1 0-2 ||| 6 524574 +los ||| also the problems ||| 0.142857 0.114269 1.90631e-06 6.6409e-06 2.718 ||| 0-1 0-2 ||| 7 524574 +los ||| also the ||| 0.0112096 0.122289 8.19713e-05 0.00216563 2.718 ||| 0-1 ||| 3836 524574 +los ||| also these ||| 0.1 0.0240362 1.90631e-06 1.2306e-05 2.718 ||| 0-1 ||| 10 524574 +los ||| also those who ||| 0.0232558 0.284705 1.90631e-06 7.43522e-08 2.718 ||| 0-1 ||| 43 524574 +los ||| also those ||| 0.0233918 0.284705 7.62523e-06 8.42995e-05 2.718 ||| 0-1 ||| 171 524574 +los ||| also united messages - ||| 0.5 0.063278 1.90631e-06 2.11179e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| also united messages ||| 0.5 0.063278 1.90631e-06 5.59844e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| also with our ||| 0.0555556 0.0248369 1.90631e-06 1.15287e-07 2.718 ||| 0-2 ||| 18 524574 +los ||| also with the ||| 0.008 0.122289 3.81262e-06 1.38481e-05 2.718 ||| 0-2 ||| 250 524574 +los ||| alternative way ||| 0.0454545 0.0004478 1.90631e-06 4.09564e-09 2.718 ||| 0-0 ||| 22 524574 +los ||| alternative ||| 0.000232666 0.0004478 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 4298 524574 +los ||| although such countries ||| 0.333333 0.0957208 1.90631e-06 1.84885e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| although such rights are ||| 1 0.0030851 1.90631e-06 5.13513e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| although such rights ||| 1 0.0030851 1.90631e-06 3.38446e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| although the idea is not new to ||| 0.25 0.122289 1.90631e-06 5.85888e-17 2.718 ||| 0-1 ||| 4 524574 +los ||| although the idea is not new ||| 0.25 0.122289 1.90631e-06 6.59352e-16 2.718 ||| 0-1 ||| 4 524574 +los ||| although the idea is not ||| 0.25 0.122289 1.90631e-06 1.10315e-12 2.718 ||| 0-1 ||| 4 524574 +los ||| although the idea is ||| 0.25 0.122289 1.90631e-06 3.23115e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| although the idea ||| 0.142857 0.122289 1.90631e-06 1.03096e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| although the ||| 0.00149775 0.122289 5.71893e-06 4.59841e-05 2.718 ||| 0-1 ||| 2003 524574 +los ||| always uphold the ||| 1 0.122289 1.90631e-06 7.67317e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| am a user ||| 1 0.0830769 1.90631e-06 2.97288e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| am full of praise at the sterling ||| 0.5 0.122289 1.90631e-06 8.01187e-22 2.718 ||| 0-5 ||| 2 524574 +los ||| am full of praise at the ||| 0.5 0.122289 1.90631e-06 3.20475e-16 2.718 ||| 0-5 ||| 2 524574 +los ||| am of the ||| 0.0192308 0.122289 1.90631e-06 2.9791e-05 2.718 ||| 0-2 ||| 52 524574 +los ||| am pleased to say that the ||| 0.5 0.122289 1.90631e-06 3.1864e-14 2.718 ||| 0-5 ||| 2 524574 +los ||| am quite happy for the ||| 0.5 0.122289 1.90631e-06 1.03508e-13 2.718 ||| 0-4 ||| 2 524574 +los ||| am referring to the ||| 0.0185185 0.122289 1.90631e-06 2.10356e-09 2.718 ||| 0-3 ||| 54 524574 +los ||| am still hopeful , but previous ||| 0.5 0.0133636 1.90631e-06 1.37202e-20 2.718 ||| 0-5 ||| 2 524574 +los ||| am sure - necessary ||| 1 0.0003466 1.90631e-06 7.38712e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| am sure that in the short term ||| 1 0.122289 1.90631e-06 5.30565e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| am sure that in the short ||| 1 0.122289 1.90631e-06 4.84977e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| am sure that in the ||| 1 0.122289 1.90631e-06 3.43712e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| am taking the ||| 0.0666667 0.122289 1.90631e-06 2.32896e-07 2.718 ||| 0-2 ||| 15 524574 +los ||| am thinking of the ||| 0.05 0.122289 1.90631e-06 2.20751e-09 2.718 ||| 0-3 ||| 20 524574 +los ||| am with the various ||| 0.333333 0.122289 1.90631e-06 5.41038e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| am with the ||| 0.166667 0.122289 1.90631e-06 3.50413e-06 2.718 ||| 0-2 ||| 6 524574 +los ||| amend the regulation ||| 0.0322581 0.122289 1.90631e-06 1.82641e-10 2.718 ||| 0-1 ||| 31 524574 +los ||| amend the ||| 0.00152439 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-1 ||| 656 524574 +los ||| amending the ||| 0.00155039 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-1 ||| 645 524574 +los ||| amendments have the ||| 0.25 0.122289 1.90631e-06 3.91437e-07 2.718 ||| 0-2 ||| 4 524574 +los ||| among competent ||| 1 0.0202203 1.90631e-06 2.8314e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| among other ||| 0.000707714 0.0202203 1.90631e-06 2.8216e-07 2.718 ||| 0-0 ||| 1413 524574 +los ||| among others ||| 0.00176367 0.072779 1.90631e-06 8.68493e-08 2.718 ||| 0-1 ||| 567 524574 +los ||| among the fundamental human rights ||| 1 0.0789058 1.90631e-06 3.41817e-15 2.718 ||| 0-0 0-1 0-2 ||| 1 524574 +los ||| among the fundamental human ||| 1 0.0789058 1.90631e-06 1.70823e-11 2.718 ||| 0-0 0-1 0-2 ||| 1 524574 +los ||| among the fundamental ||| 1 0.0789058 1.90631e-06 1.3843e-07 2.718 ||| 0-0 0-1 0-2 ||| 1 524574 +los ||| among the rest of the ||| 0.333333 0.122289 1.90631e-06 9.69761e-12 2.718 ||| 0-4 ||| 3 524574 +los ||| among the ||| 0.00763143 0.0712548 5.14703e-05 9.34267e-05 2.718 ||| 0-0 0-1 ||| 3538 524574 +los ||| among their ||| 0.05 0.0236713 3.81262e-06 2.04978e-07 2.718 ||| 0-1 ||| 40 524574 +los ||| among them some ||| 1 0.0202203 1.90631e-06 6.36398e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| among them ||| 0.00295858 0.0202203 1.90631e-06 5.84227e-07 2.718 ||| 0-0 ||| 338 524574 +los ||| among those ||| 0.00833333 0.152463 5.71893e-06 3.63674e-06 2.718 ||| 0-0 0-1 ||| 360 524574 +los ||| among ||| 0.00509098 0.0202203 0.000102941 0.0002178 2.718 ||| 0-0 ||| 10607 524574 +los ||| amongst other things , ||| 0.00220264 0.013643 1.90631e-06 2.90182e-12 2.718 ||| 0-0 ||| 454 524574 +los ||| amongst other things ||| 0.00327869 0.013643 3.81262e-06 2.4333e-11 2.718 ||| 0-0 ||| 610 524574 +los ||| amongst other ||| 0.00285307 0.013643 3.81262e-06 5.92043e-08 2.718 ||| 0-0 ||| 701 524574 +los ||| amongst ourselves ||| 0.0192308 0.013643 1.90631e-06 1.45372e-08 2.718 ||| 0-0 ||| 52 524574 +los ||| amongst the ||| 0.00448934 0.0679661 7.62523e-06 1.96033e-05 2.718 ||| 0-0 0-1 ||| 891 524574 +los ||| amongst ||| 0.00267062 0.013643 1.71568e-05 4.57e-05 2.718 ||| 0-0 ||| 3370 524574 +los ||| amount of frustration on reading it ||| 1 0.0019787 1.90631e-06 1.9304e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| amount of frustration on reading ||| 1 0.0019787 1.90631e-06 1.08552e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| amount of frustration on ||| 1 0.0019787 1.90631e-06 3.76916e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| amount of frustration ||| 0.5 0.0019787 1.90631e-06 5.63317e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| amount of ||| 0.000947867 0.0019787 3.81262e-06 8.04739e-07 2.718 ||| 0-1 ||| 2110 524574 +los ||| amount spent by the ||| 0.25 0.122289 1.90631e-06 3.51221e-11 2.718 ||| 0-3 ||| 4 524574 +los ||| an accident does ||| 1 0.0103093 1.90631e-06 6.04797e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| an accident ||| 0.00250627 0.0103093 1.90631e-06 8.62272e-08 2.718 ||| 0-1 ||| 399 524574 +los ||| an additional ||| 0.00328947 0.0012291 1.90631e-06 3.46687e-08 2.718 ||| 0-1 ||| 304 524574 +los ||| an adult ||| 0.030303 0.049505 1.90631e-06 1.29785e-07 2.718 ||| 0-1 ||| 33 524574 +los ||| an alternative way ||| 0.0666667 0.0004478 1.90631e-06 1.82039e-11 2.718 ||| 0-1 ||| 15 524574 +los ||| an alternative ||| 0.00176056 0.0004478 1.90631e-06 8.44493e-09 2.718 ||| 0-1 ||| 568 524574 +los ||| an analysis of external ||| 1 0.0014061 1.90631e-06 7.92214e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| an applicant ||| 0.0434783 0.102182 1.90631e-06 8.90273e-07 2.718 ||| 0-1 ||| 23 524574 +los ||| an approach would be the availability ||| 0.5 0.122289 1.90631e-06 3.02256e-16 2.718 ||| 0-4 ||| 2 524574 +los ||| an approach would be the ||| 0.5 0.122289 1.90631e-06 4.44494e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| an assault ||| 0.030303 0.0227273 1.90631e-06 2.1779e-08 2.718 ||| 0-1 ||| 33 524574 +los ||| an automatic part ||| 0.333333 0.0080754 1.90631e-06 3.0734e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| an automatic ||| 0.0666667 0.0080754 1.90631e-06 2.57793e-08 2.718 ||| 0-1 ||| 15 524574 +los ||| an employer ||| 0.011236 0.0047733 1.90631e-06 8.44493e-09 2.718 ||| 0-1 ||| 89 524574 +los ||| an end to the ||| 0.00529101 0.122289 3.81262e-06 7.37127e-08 2.718 ||| 0-3 ||| 378 524574 +los ||| an environmental point ||| 0.0666667 0.0151175 1.90631e-06 1.3496e-09 2.718 ||| 0-1 ||| 15 524574 +los ||| an environmental ||| 0.0135135 0.0151175 1.90631e-06 1.54276e-06 2.718 ||| 0-1 ||| 74 524574 +los ||| an equal footing in the ||| 0.142857 0.122289 1.90631e-06 5.04209e-14 2.718 ||| 0-4 ||| 7 524574 +los ||| an explanation of the ||| 0.03125 0.122289 1.90631e-06 2.0108e-09 2.718 ||| 0-3 ||| 32 524574 +los ||| an eye on ||| 0.0108696 0.00326285 1.90631e-06 1.53829e-11 2.718 ||| 0-1 0-2 ||| 92 524574 +los ||| an increase in staff resources for the ||| 1 0.21958 1.90631e-06 1.13304e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| an increase in staff resources for ||| 1 0.21958 1.90631e-06 1.84559e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| an increase in staff resources ||| 1 0.21958 1.90631e-06 2.40132e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| an increasing number of people of the ||| 1 0.122289 1.90631e-06 1.27122e-16 2.718 ||| 0-6 ||| 1 524574 +los ||| an individual level means ||| 0.5 0.110351 1.90631e-06 3.09671e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| an individual level ||| 0.142857 0.110351 1.90631e-06 4.88671e-09 2.718 ||| 0-1 ||| 7 524574 +los ||| an individual ||| 0.00687285 0.110351 3.81262e-06 5.71277e-06 2.718 ||| 0-1 ||| 291 524574 +los ||| an inevitable part of the ||| 0.5 0.122289 1.90631e-06 1.02564e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| an institution . the ||| 1 0.122289 1.90631e-06 1.57659e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| an ordinary ||| 0.0909091 0.102163 1.90631e-06 9.59166e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| an overview of our working ||| 1 0.0248369 1.90631e-06 8.8719e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| an overview of our ||| 1 0.0248369 1.90631e-06 4.65961e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| an ||| 5.95545e-05 5.52e-05 1.71568e-05 8.8e-06 2.718 ||| 0-0 ||| 151122 524574 +los ||| analyses ||| 0.00110254 0.105656 1.90631e-06 9.63e-05 2.718 ||| 0-0 ||| 907 524574 +los ||| analysis of external ||| 1 0.0014061 1.90631e-06 1.78238e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| analysis of the ||| 0.00175747 0.122289 1.90631e-06 7.88209e-07 2.718 ||| 0-2 ||| 569 524574 +los ||| anchor them ||| 1 0.038218 1.90631e-06 2.21386e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| and ' no comment ' ||| 1 0.0444479 1.90631e-06 8.1412e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| and , besides , hold public debates ||| 1 0.122803 1.90631e-06 4.02295e-20 2.718 ||| 0-6 ||| 1 524574 +los ||| and / or counterfeit ||| 0.5 0.0074488 1.90631e-06 1.28458e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| and Employers ' ||| 0.2 0.0444479 1.90631e-06 2.66511e-11 2.718 ||| 0-2 ||| 5 524574 +los ||| and Fundamental Freedoms ||| 0.0205479 0.384364 5.71893e-06 1.54659e-10 2.718 ||| 0-1 ||| 146 524574 +los ||| and Fundamental ||| 0.4 0.384364 7.62523e-06 1.71843e-05 2.718 ||| 0-1 ||| 10 524574 +los ||| and I quote : the ||| 1 0.122289 1.90631e-06 5.70904e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| and Mr Bourlanges produced their ||| 1 0.0236713 1.90631e-06 2.17704e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| and Mr Samland and all on the ||| 1 0.122289 1.90631e-06 5.55649e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| and Mr Tsatsos for their ||| 1 0.0236713 1.90631e-06 1.0064e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| and Mrs Méndez de ||| 1 0.0566667 1.90631e-06 6.61599e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| and Mrs Méndez ||| 1 0.0566667 1.90631e-06 1.9345e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| and Reform Party ' s ||| 1 0.0444479 1.90631e-06 7.35862e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| and Reform Party ' ||| 1 0.0444479 1.90631e-06 3.86827e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| and Territories ) One of the ||| 1 0.122289 1.90631e-06 1.88087e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| and Young People , the ||| 1 0.122289 1.90631e-06 5.26579e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| and a social point ||| 0.25 0.0037997 1.90631e-06 7.36817e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| and a social ||| 0.0714286 0.0037997 1.90631e-06 8.4227e-08 2.718 ||| 0-2 ||| 14 524574 +los ||| and above the ||| 0.0285714 0.122289 7.62523e-06 6.96349e-07 2.718 ||| 0-2 ||| 140 524574 +los ||| and accumulators ||| 0.0204082 0.22093 1.90631e-06 2.31729e-07 2.718 ||| 0-1 ||| 49 524574 +los ||| and add up the pros and cons ||| 1 0.122289 1.90631e-06 1.84454e-23 2.718 ||| 0-3 ||| 1 524574 +los ||| and add up the pros and ||| 1 0.122289 1.90631e-06 2.63506e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| and add up the pros ||| 1 0.122289 1.90631e-06 2.10369e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| and add up the ||| 1 0.122289 1.90631e-06 1.50264e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| and all on the ||| 0.5 0.122289 1.90631e-06 1.69884e-07 2.718 ||| 0-3 ||| 2 524574 +los ||| and all the ||| 0.000744048 0.122289 1.90631e-06 2.53899e-05 2.718 ||| 0-2 ||| 1344 524574 +los ||| and also the ||| 0.00162602 0.122289 3.81262e-06 2.71264e-05 2.718 ||| 0-2 ||| 1230 524574 +los ||| and applied to the ||| 0.25 0.122289 1.90631e-06 5.17068e-08 2.718 ||| 0-3 ||| 4 524574 +los ||| and are the channels ||| 1 0.122289 1.90631e-06 7.01105e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| and are the ||| 0.0185185 0.122289 1.90631e-06 8.15239e-05 2.718 ||| 0-2 ||| 54 524574 +los ||| and artisans ||| 0.25 0.375 1.90631e-06 1.10228e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| and as ||| 0.000357654 0.0009297 1.90631e-06 4.46924e-06 2.718 ||| 0-1 ||| 2796 524574 +los ||| and become more aware of the ||| 1 0.122289 1.90631e-06 2.64719e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| and being subject to taxation in the ||| 1 0.122289 1.90631e-06 1.35008e-16 2.718 ||| 0-6 ||| 1 524574 +los ||| and between the ||| 0.0115607 0.0617474 3.81262e-06 3.44951e-07 2.718 ||| 0-1 0-2 ||| 173 524574 +los ||| and bringing them onto the ||| 1 0.122289 1.90631e-06 2.33783e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| and by the ||| 0.000957854 0.122289 1.90631e-06 2.82091e-05 2.718 ||| 0-2 ||| 1044 524574 +los ||| and cannot intervene any further , the ||| 1 0.122289 1.90631e-06 7.59656e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| and catering ||| 0.0555556 0.0894942 1.90631e-06 2.8058e-07 2.718 ||| 0-1 ||| 18 524574 +los ||| and charges to ||| 0.125 0.0631373 1.90631e-06 1.74189e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| and charges ||| 0.012987 0.0631373 1.90631e-06 1.9603e-06 2.718 ||| 0-1 ||| 77 524574 +los ||| and clarify the ||| 0.0140845 0.122289 1.90631e-06 6.17902e-08 2.718 ||| 0-2 ||| 71 524574 +los ||| and cleaning products ||| 1 0.245259 1.90631e-06 1.37901e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| and confidence ||| 0.005 0.0009804 1.90631e-06 7.26502e-08 2.718 ||| 0-1 ||| 200 524574 +los ||| and consequently the ||| 0.0322581 0.122289 1.90631e-06 2.39639e-07 2.718 ||| 0-2 ||| 31 524574 +los ||| and continue to be , irradiated ||| 1 0.039604 1.90631e-06 2.17089e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| and costs EUR 120 million every year ||| 1 0.144232 1.90631e-06 1.63964e-26 2.718 ||| 0-5 ||| 1 524574 +los ||| and costs EUR 120 million every ||| 1 0.144232 1.90631e-06 6.57434e-23 2.718 ||| 0-5 ||| 1 524574 +los ||| and creators ||| 0.0909091 0.239024 1.90631e-06 5.96233e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| and criteria ||| 0.00641026 0.0666739 1.90631e-06 7.51429e-06 2.718 ||| 0-1 ||| 156 524574 +los ||| and cumbersome bureaucracy ||| 0.5 0.0036232 1.90631e-06 8.14183e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| and cumbersome ||| 0.0285714 0.0036232 1.90631e-06 1.25259e-08 2.718 ||| 0-1 ||| 35 524574 +los ||| and current affairs ||| 0.333333 0.178913 1.90631e-06 1.65183e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| and cynically upheld ||| 1 0.0034722 1.90631e-06 9.51968e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| and delays ||| 0.0102041 0.150383 1.90631e-06 3.82416e-06 2.718 ||| 0-1 ||| 98 524574 +los ||| and dependency , reducing the supply and ||| 1 0.122289 1.90631e-06 7.6965e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| and dependency , reducing the supply ||| 1 0.122289 1.90631e-06 6.14447e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| and dependency , reducing the ||| 1 0.122289 1.90631e-06 1.1931e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| and describe the ||| 0.1 0.122289 1.90631e-06 1.3164e-07 2.718 ||| 0-2 ||| 10 524574 +los ||| and distort competition from the point of ||| 1 0.122289 1.90631e-06 3.28629e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| and distort competition from the point ||| 1 0.122289 1.90631e-06 6.04497e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| and distort competition from the ||| 1 0.122289 1.90631e-06 6.91011e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| and does business should take the liberty ||| 1 0.122289 1.90631e-06 3.39156e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| and does business should take the ||| 1 0.122289 1.90631e-06 3.35798e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| and echoing the ||| 0.25 0.122289 1.90631e-06 5.91037e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| and economic ||| 0.000249252 0.0006735 1.90631e-06 3.7703e-07 2.718 ||| 0-1 ||| 4012 524574 +los ||| and electronic ||| 0.00337838 0.0125508 1.90631e-06 4.14607e-07 2.718 ||| 0-1 ||| 296 524574 +los ||| and endorse the ||| 0.0526316 0.122289 1.90631e-06 1.21969e-07 2.718 ||| 0-2 ||| 19 524574 +los ||| and energy sectors and with regard to ||| 1 0.1467 1.90631e-06 5.92367e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| and energy sectors and with regard ||| 1 0.1467 1.90631e-06 6.66643e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| and energy sectors and with ||| 1 0.1467 1.90631e-06 9.79061e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| and energy sectors and ||| 1 0.1467 1.90631e-06 1.5311e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| and energy sectors ||| 0.142857 0.1467 1.90631e-06 1.22235e-09 2.718 ||| 0-2 ||| 7 524574 +los ||| and ensuring the ||| 0.0163934 0.122289 1.90631e-06 6.2435e-07 2.718 ||| 0-2 ||| 61 524574 +los ||| and entitlements ||| 0.125 0.148 1.90631e-06 4.50932e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| and every one of ||| 0.00806452 0.0019787 1.90631e-06 2.80955e-11 2.718 ||| 0-3 ||| 124 524574 +los ||| and every single ||| 0.0625 0.144232 1.90631e-06 6.48818e-09 2.718 ||| 0-1 ||| 16 524574 +los ||| and every ||| 0.0241838 0.144232 3.81262e-05 4.08833e-05 2.718 ||| 0-1 ||| 827 524574 +los ||| and evidence ||| 0.0232558 0.0016552 1.90631e-06 8.51761e-08 2.718 ||| 0-1 ||| 43 524574 +los ||| and exorbitant salaries ||| 1 0.277512 1.90631e-06 1.41292e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| and final payments . ||| 1 0.273884 1.90631e-06 4.17965e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| and final payments ||| 0.5 0.273884 1.90631e-06 1.37988e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| and find out how ||| 0.25 3e-05 1.90631e-06 1.77777e-14 2.718 ||| 0-0 ||| 4 524574 +los ||| and find out ||| 0.0222222 3e-05 1.90631e-06 4.9603e-11 2.718 ||| 0-0 ||| 45 524574 +los ||| and find ||| 0.00269542 3e-05 1.90631e-06 1.29498e-08 2.718 ||| 0-0 ||| 371 524574 +los ||| and forcing them ||| 0.333333 0.038218 1.90631e-06 2.26887e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| and future legislators ||| 1 0.212676 1.90631e-06 4.88386e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| and grandchildren and future legislators ||| 1 0.212676 1.90631e-06 2.44699e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| and habits ||| 0.0384615 0.120241 1.90631e-06 7.3026e-07 2.718 ||| 0-1 ||| 26 524574 +los ||| and hate ||| 0.0909091 0.039039 1.90631e-06 1.57826e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| and in order to appeal to the ||| 1 0.122289 1.90631e-06 1.4606e-14 2.718 ||| 0-6 ||| 1 524574 +los ||| and in the Committee on ||| 0.0185185 0.122289 1.90631e-06 1.17428e-10 2.718 ||| 0-2 ||| 54 524574 +los ||| and in the Committee ||| 0.0172414 0.122289 1.90631e-06 1.75502e-08 2.718 ||| 0-2 ||| 58 524574 +los ||| and in the ||| 0.000218866 0.122289 1.90631e-06 0.000115008 2.718 ||| 0-2 ||| 4569 524574 +los ||| and in ||| 5.46777e-05 3e-05 1.90631e-06 8.32635e-07 2.718 ||| 0-0 ||| 18289 524574 +los ||| and inhumane . ||| 0.25 0.0071942 1.90631e-06 1.10029e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| and inhumane ||| 0.0172414 0.0071942 1.90631e-06 3.63251e-08 2.718 ||| 0-1 ||| 58 524574 +los ||| and initialled the ||| 1 0.122289 1.90631e-06 5.91037e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| and inspection ||| 0.0135135 0.0140296 1.90631e-06 2.19203e-07 2.718 ||| 0-1 ||| 74 524574 +los ||| and instruments to be used ||| 1 0.112873 1.90631e-06 8.1438e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| and instruments to be ||| 0.5 0.112873 1.90631e-06 1.89832e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| and instruments to ||| 0.0434783 0.112873 1.90631e-06 1.04747e-06 2.718 ||| 0-1 ||| 23 524574 +los ||| and instruments ||| 0.00393701 0.112873 1.90631e-06 1.17881e-05 2.718 ||| 0-1 ||| 254 524574 +los ||| and insurers ||| 0.125 0.108374 1.90631e-06 2.68054e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| and it applies to the ||| 0.5 0.122289 1.90631e-06 7.11498e-10 2.718 ||| 0-4 ||| 2 524574 +los ||| and its ||| 0.000361751 0.0211371 5.71893e-06 2.6744e-05 2.718 ||| 0-1 ||| 8293 524574 +los ||| and large , ||| 0.0106383 0.0004525 1.90631e-06 8.66388e-09 2.718 ||| 0-1 ||| 94 524574 +los ||| and large groups of ||| 0.25 0.143803 1.90631e-06 2.07694e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| and large groups ||| 0.142857 0.143803 1.90631e-06 3.82043e-09 2.718 ||| 0-2 ||| 7 524574 +los ||| and large ||| 0.00291545 0.0004525 1.90631e-06 7.26502e-08 2.718 ||| 0-1 ||| 343 524574 +los ||| and liability between the ||| 1 0.122289 1.90631e-06 1.5875e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| and look at the ||| 0.0196078 0.122289 1.90631e-06 6.55851e-09 2.718 ||| 0-3 ||| 51 524574 +los ||| and make human ||| 0.5 0.319795 1.90631e-06 4.24586e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| and mistakes ||| 0.0526316 0.0794421 1.90631e-06 1.5958e-06 2.718 ||| 0-1 ||| 19 524574 +los ||| and modern ||| 0.0238095 0.0129957 3.81262e-06 4.74732e-07 2.718 ||| 0-1 ||| 84 524574 +los ||| and monopolies ||| 0.0434783 0.230104 1.90631e-06 3.2392e-06 2.718 ||| 0-1 ||| 23 524574 +los ||| and most sincerely , the ||| 0.5 0.122289 1.90631e-06 5.48337e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| and not the ||| 0.00149925 0.122289 1.90631e-06 1.83442e-05 2.718 ||| 0-2 ||| 667 524574 +los ||| and note the ||| 0.111111 0.122289 1.90631e-06 5.60948e-07 2.718 ||| 0-2 ||| 9 524574 +los ||| and of the ||| 0.000560538 0.122289 3.81262e-06 0.000292101 2.718 ||| 0-2 ||| 3568 524574 +los ||| and of times ||| 1 0.0019787 1.90631e-06 4.20521e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| and of ||| 0.000122956 0.0019787 1.90631e-06 4.14307e-05 2.718 ||| 0-1 ||| 8133 524574 +los ||| and others ||| 0.000747943 0.072779 3.81262e-06 1.21414e-05 2.718 ||| 0-1 ||| 2674 524574 +los ||| and patient ||| 0.0625 0.135371 1.90631e-06 2.64296e-06 2.718 ||| 0-1 ||| 16 524574 +los ||| and payment ||| 0.0120482 0.0504821 1.90631e-06 2.16823e-06 2.718 ||| 0-1 ||| 83 524574 +los ||| and players ||| 0.0434783 0.1671 1.90631e-06 4.70097e-06 2.718 ||| 0-1 ||| 23 524574 +los ||| and poor ||| 0.00371747 0.0315692 1.90631e-06 2.07053e-06 2.718 ||| 0-1 ||| 269 524574 +los ||| and preventing ||| 0.0035461 0.0027894 1.90631e-06 9.7702e-08 2.718 ||| 0-1 ||| 282 524574 +los ||| and problems ||| 0.00290698 0.0531394 1.90631e-06 1.19287e-07 2.718 ||| 0-0 0-1 ||| 344 524574 +los ||| and products ||| 0.00462963 0.245259 1.90631e-06 6.26821e-05 2.718 ||| 0-1 ||| 216 524574 +los ||| and programmes which may have an environmental ||| 1 0.182745 1.90631e-06 3.20668e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| and programmes which may have an ||| 1 0.182745 1.90631e-06 1.17461e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| and programmes which may have ||| 1 0.182745 1.90631e-06 2.64272e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| and programmes which may ||| 1 0.182745 1.90631e-06 2.20967e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| and programmes which ||| 0.0555556 0.182745 1.90631e-06 2.94937e-07 2.718 ||| 0-1 ||| 18 524574 +los ||| and programmes ||| 0.00205761 0.182745 1.90631e-06 3.47205e-05 2.718 ||| 0-1 ||| 486 524574 +los ||| and provide details ||| 1 0.0606164 1.90631e-06 6.37658e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| and public right ||| 0.5 0.0160961 1.90631e-06 4.76761e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| and public ||| 0.00239234 0.0160961 1.90631e-06 7.39279e-06 2.718 ||| 0-1 ||| 418 524574 +los ||| and refusing them ||| 1 0.038218 1.90631e-06 1.46216e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| and regional ||| 0.000610128 0.0028097 1.90631e-06 4.14607e-07 2.718 ||| 0-1 ||| 1639 524574 +los ||| and regulations ||| 0.00533808 0.0587004 5.71893e-06 6.83163e-06 2.718 ||| 0-1 ||| 562 524574 +los ||| and related ||| 0.015625 0.0125716 1.90631e-06 8.27962e-07 2.718 ||| 0-1 ||| 64 524574 +los ||| and representatives of ||| 0.00628931 0.135512 1.90631e-06 6.56103e-07 2.718 ||| 0-1 ||| 159 524574 +los ||| and representatives ||| 0.00438596 0.135512 1.90631e-06 1.20687e-05 2.718 ||| 0-1 ||| 228 524574 +los ||| and resources , ||| 0.025641 0.21958 1.90631e-06 7.24136e-06 2.718 ||| 0-1 ||| 39 524574 +los ||| and resources ||| 0.00431034 0.21958 3.81262e-06 6.07218e-05 2.718 ||| 0-1 ||| 464 524574 +los ||| and scientific research ||| 0.0357143 0.0039887 1.90631e-06 1.38098e-11 2.718 ||| 0-2 ||| 28 524574 +los ||| and scientific research – something that we ||| 0.333333 0.0039887 1.90631e-06 5.73652e-22 2.718 ||| 0-2 ||| 3 524574 +los ||| and scientific research – something that ||| 0.333333 0.0039887 1.90631e-06 5.05318e-20 2.718 ||| 0-2 ||| 3 524574 +los ||| and scientific research – something ||| 0.333333 0.0039887 1.90631e-06 3.00398e-18 2.718 ||| 0-2 ||| 3 524574 +los ||| and scientific research – ||| 0.333333 0.0039887 1.90631e-06 5.42725e-15 2.718 ||| 0-2 ||| 3 524574 +los ||| and see what ||| 0.0168067 0.0061209 3.81262e-06 8.46125e-09 2.718 ||| 0-2 ||| 119 524574 +los ||| and sentences , which all ||| 1 0.0177928 1.90631e-06 1.22803e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| and services ||| 0.000620347 0.272175 1.90631e-06 9.76469e-05 2.718 ||| 0-1 ||| 1612 524574 +los ||| and shame ||| 0.012987 0.0030519 1.90631e-06 3.63251e-08 2.718 ||| 0-1 ||| 77 524574 +los ||| and simplify ||| 0.00649351 0.0028986 1.90631e-06 4.8851e-08 2.718 ||| 0-1 ||| 154 524574 +los ||| and since the ||| 0.0169492 0.122289 1.90631e-06 7.29125e-07 2.718 ||| 0-2 ||| 59 524574 +los ||| and so on . ||| 0.00110988 4.2e-06 1.90631e-06 1.48376e-12 2.718 ||| 0-3 ||| 901 524574 +los ||| and so that the ||| 0.0188679 0.122289 1.90631e-06 2.05143e-07 2.718 ||| 0-3 ||| 53 524574 +los ||| and social standards ||| 0.025641 0.0037997 1.90631e-06 1.38903e-10 2.718 ||| 0-1 ||| 39 524574 +los ||| and social ||| 0.000496032 0.0037997 5.71893e-06 1.90018e-06 2.718 ||| 0-1 ||| 6048 524574 +los ||| and stimulate the ||| 0.0625 0.122289 1.90631e-06 3.49249e-08 2.718 ||| 0-2 ||| 16 524574 +los ||| and stop the ||| 0.0277778 0.122289 1.90631e-06 3.71279e-07 2.718 ||| 0-2 ||| 36 524574 +los ||| and systems , and the ||| 1 0.213574 1.90631e-06 3.73245e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| and systems , and ||| 0.25 0.213574 1.90631e-06 6.07971e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| and systems , ||| 0.166667 0.213574 1.90631e-06 4.85371e-06 2.718 ||| 0-1 ||| 6 524574 +los ||| and systems ||| 0.00847458 0.213574 1.90631e-06 4.07004e-05 2.718 ||| 0-1 ||| 118 524574 +los ||| and take into account the ||| 0.04 0.122289 1.90631e-06 2.55346e-12 2.718 ||| 0-4 ||| 25 524574 +los ||| and targets ||| 0.0125 0.104037 1.90631e-06 6.08884e-06 2.718 ||| 0-1 ||| 80 524574 +los ||| and taxation ||| 0.00806452 0.058762 1.90631e-06 3.42208e-06 2.718 ||| 0-1 ||| 124 524574 +los ||| and technical development ||| 0.047619 0.0012609 1.90631e-06 2.20475e-11 2.718 ||| 0-1 ||| 21 524574 +los ||| and technical ||| 0.00169779 0.0012609 1.90631e-06 1.34027e-07 2.718 ||| 0-1 ||| 589 524574 +los ||| and that is the ||| 0.00323625 0.122289 3.81262e-06 2.83272e-06 2.718 ||| 0-3 ||| 618 524574 +los ||| and that is ||| 0.000225989 3e-05 1.90631e-06 2.05084e-08 2.718 ||| 0-0 ||| 4425 524574 +los ||| and that the ||| 0.00059312 0.122289 3.81262e-06 9.03835e-05 2.718 ||| 0-2 ||| 3372 524574 +los ||| and that they put down the ||| 1 0.122289 1.90631e-06 2.27078e-13 2.718 ||| 0-5 ||| 1 524574 +los ||| and that they should be accessible ||| 1 0.0072404 1.90631e-06 1.80061e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| and that they should be ||| 0.0625 0.0072404 1.90631e-06 1.38509e-11 2.718 ||| 0-2 ||| 16 524574 +los ||| and that they should ||| 0.0357143 0.0072404 1.90631e-06 7.64275e-10 2.718 ||| 0-2 ||| 28 524574 +los ||| and that they ||| 0.003003 0.0072404 1.90631e-06 1.72484e-07 2.718 ||| 0-2 ||| 333 524574 +los ||| and that young researchers ||| 1 0.304775 1.90631e-06 5.66406e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| and that ||| 6.36476e-05 3e-05 3.81262e-06 6.5436e-07 2.718 ||| 0-0 ||| 31423 524574 +los ||| and the Commission ||| 0.000123077 0.122289 1.90631e-06 3.13841e-06 2.718 ||| 0-1 ||| 8125 524574 +los ||| and the President of the ||| 0.003861 0.122289 1.90631e-06 2.60023e-09 2.718 ||| 0-4 ||| 259 524574 +los ||| and the UN ||| 0.00632911 0.122289 1.90631e-06 2.24057e-07 2.718 ||| 0-1 ||| 158 524574 +los ||| and the USA ||| 0.00341297 0.122289 1.90631e-06 6.77006e-08 2.718 ||| 0-1 ||| 293 524574 +los ||| and the actively ||| 1 0.122289 1.90631e-06 1.12297e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| and the environment ||| 0.000680735 0.122289 1.90631e-06 2.99817e-07 2.718 ||| 0-1 ||| 1469 524574 +los ||| and the fats ||| 1 0.122289 1.90631e-06 1.18207e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| and the fight against poverty . more ||| 1 0.122289 1.90631e-06 7.37835e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| and the fight against poverty . ||| 0.05 0.122289 1.90631e-06 3.23088e-18 2.718 ||| 0-1 ||| 20 524574 +los ||| and the fight against poverty ||| 0.0163934 0.122289 1.90631e-06 1.06665e-15 2.718 ||| 0-1 ||| 61 524574 +los ||| and the fight against ||| 0.0017331 0.122289 1.90631e-06 7.06389e-11 2.718 ||| 0-1 ||| 577 524574 +los ||| and the fight ||| 0.00180832 0.122289 1.90631e-06 2.96056e-07 2.718 ||| 0-1 ||| 553 524574 +los ||| and the heritage ||| 1 0.122289 1.90631e-06 5.05068e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| and the inevitable economic uncertainty , make ||| 1 0.122289 1.90631e-06 6.50226e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| and the inevitable economic uncertainty , ||| 1 0.122289 1.90631e-06 3.74166e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| and the inevitable economic uncertainty ||| 1 0.122289 1.90631e-06 3.13754e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| and the inevitable economic ||| 1 0.122289 1.90631e-06 5.40955e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| and the inevitable ||| 0.0833333 0.122289 1.90631e-06 4.45964e-08 2.718 ||| 0-1 ||| 12 524574 +los ||| and the list goes ||| 0.25 0.122289 1.90631e-06 5.43988e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| and the list ||| 0.0204082 0.122289 1.90631e-06 3.92771e-07 2.718 ||| 0-1 ||| 49 524574 +los ||| and the other ||| 0.000652742 0.122289 1.90631e-06 6.9608e-06 2.718 ||| 0-1 ||| 1532 524574 +los ||| and the point is best dealt with ||| 1 0.122289 1.90631e-06 1.36599e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| and the point is best dealt ||| 1 0.122289 1.90631e-06 2.1362e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| and the point is best ||| 1 0.122289 1.90631e-06 2.0403e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| and the point is ||| 0.333333 0.122289 1.90631e-06 1.47314e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| and the point ||| 0.0454545 0.122289 1.90631e-06 4.70036e-06 2.718 ||| 0-1 ||| 22 524574 +los ||| and the re-use ||| 1 0.122289 1.90631e-06 2.14923e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| and the same ||| 0.00224719 0.122289 1.90631e-06 4.3237e-06 2.718 ||| 0-1 ||| 445 524574 +los ||| and the shaping of ||| 0.2 0.122289 1.90631e-06 1.89866e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| and the shaping ||| 0.166667 0.122289 1.90631e-06 3.49249e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| and the use of ||| 0.00246914 0.122289 1.90631e-06 1.4202e-07 2.718 ||| 0-1 ||| 405 524574 +los ||| and the use ||| 0.00224719 0.122289 1.90631e-06 2.61238e-06 2.718 ||| 0-1 ||| 445 524574 +los ||| and the ||| 0.000745674 0.122289 0.000192537 0.00537306 2.718 ||| 0-1 ||| 135448 524574 +los ||| and their carcasses could ||| 1 0.0236713 1.90631e-06 2.85277e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| and their carcasses ||| 1 0.0236713 1.90631e-06 4.01177e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| and their families ||| 0.00218341 0.0236713 1.90631e-06 2.37841e-10 2.718 ||| 0-1 ||| 458 524574 +los ||| and their reliance ||| 1 0.0236713 1.90631e-06 1.0316e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| and their ||| 0.000673061 0.0236713 7.62523e-06 2.86555e-05 2.718 ||| 0-1 ||| 5943 524574 +los ||| and these contacts will continue ||| 1 0.17185 1.90631e-06 8.24382e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| and these contacts will ||| 1 0.17185 1.90631e-06 3.56258e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| and these contacts ||| 0.333333 0.17185 1.90631e-06 4.11802e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| and these were the ||| 0.5 0.122289 1.90631e-06 9.98241e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| and these ||| 0.00174825 0.0240362 3.81262e-06 3.05319e-05 2.718 ||| 0-1 ||| 1144 524574 +los ||| and they are ||| 0.00158983 0.0072404 1.90631e-06 1.55576e-07 2.718 ||| 0-1 ||| 629 524574 +los ||| and they ||| 0.000504286 0.0072404 1.90631e-06 1.02537e-05 2.718 ||| 0-1 ||| 1983 524574 +los ||| and this is something ||| 0.00411523 3e-05 1.90631e-06 4.36022e-12 2.718 ||| 0-0 ||| 243 524574 +los ||| and this is ||| 0.000343171 3e-05 1.90631e-06 7.87754e-09 2.718 ||| 0-0 ||| 2914 524574 +los ||| and this ||| 0.000109529 3e-05 1.90631e-06 2.51348e-07 2.718 ||| 0-0 ||| 9130 524574 +los ||| and those are ||| 0.0416667 0.284705 1.90631e-06 3.17341e-06 2.718 ||| 0-1 ||| 24 524574 +los ||| and those of ||| 0.00277778 0.284705 1.90631e-06 1.13704e-05 2.718 ||| 0-1 ||| 360 524574 +los ||| and those ||| 0.00320057 0.284705 1.71568e-05 0.000209152 2.718 ||| 0-1 ||| 2812 524574 +los ||| and through them getting to know each ||| 1 0.0497499 1.90631e-06 3.62518e-20 2.718 ||| 0-6 ||| 1 524574 +los ||| and time again for the ||| 1 0.122289 1.90631e-06 3.9206e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| and to encourage the use ||| 0.5 0.122289 1.90631e-06 8.93707e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| and to encourage the ||| 0.0196078 0.122289 1.90631e-06 1.83815e-08 2.718 ||| 0-3 ||| 51 524574 +los ||| and to the various ||| 0.5 0.122289 1.90631e-06 7.37169e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| and to the ||| 0.000632111 0.122289 3.81262e-06 0.000477441 2.718 ||| 0-2 ||| 3164 524574 +los ||| and urgent debates ||| 0.0714286 0.122803 1.90631e-06 2.15626e-10 2.718 ||| 0-2 ||| 14 524574 +los ||| and urgent ||| 0.00261097 0.0005604 1.90631e-06 3.63251e-08 2.718 ||| 0-1 ||| 383 524574 +los ||| and values ||| 0.0021645 0.161479 1.90631e-06 2.04723e-05 2.718 ||| 0-1 ||| 462 524574 +los ||| and we from them , ||| 0.5 0.038218 1.90631e-06 5.49616e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| and we from them ||| 0.5 0.038218 1.90631e-06 4.60876e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| and wet his ||| 1 0.0446429 1.90631e-06 1.84438e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| and wet ||| 0.25 0.0446429 1.90631e-06 6.13769e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| and when such agreements ||| 1 0.199336 1.90631e-06 4.08466e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| and which are the ||| 0.05 0.122289 1.90631e-06 6.92513e-07 2.718 ||| 0-3 ||| 20 524574 +los ||| and which still go on ||| 1 0.0006914 1.90631e-06 1.67222e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| and which the ||| 0.00694444 0.122289 1.90631e-06 4.5642e-05 2.718 ||| 0-2 ||| 144 524574 +los ||| and will continue to be - the ||| 1 0.122289 1.90631e-06 6.53386e-14 2.718 ||| 0-6 ||| 1 524574 +los ||| and would be unacceptable to the ||| 1 0.122289 1.90631e-06 1.22379e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| and young people ||| 0.00214592 0.0894672 1.90631e-06 6.2837e-09 2.718 ||| 0-2 ||| 466 524574 +los ||| and ||| 1.43734e-05 3e-05 4.19388e-05 3.89e-05 2.718 ||| 0-0 ||| 1.53061e+06 524574 +los ||| animal husbandry ||| 0.0125 0.173314 1.90631e-06 9.9365e-10 2.718 ||| 0-0 ||| 80 524574 +los ||| animal meal ? ||| 0.333333 0.173314 1.90631e-06 7.03518e-13 2.718 ||| 0-0 ||| 3 524574 +los ||| animal meal ||| 0.0117647 0.173314 1.90631e-06 4.11655e-09 2.718 ||| 0-0 ||| 85 524574 +los ||| animal welfare ; it is quite another ||| 0.5 0.173314 1.90631e-06 3.04814e-22 2.718 ||| 0-0 ||| 2 524574 +los ||| animal welfare ; it is quite ||| 0.5 0.173314 1.90631e-06 1.26426e-18 2.718 ||| 0-0 ||| 2 524574 +los ||| animal welfare ; it is ||| 0.5 0.173314 1.90631e-06 3.24087e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| animal welfare ; it ||| 0.5 0.173314 1.90631e-06 1.03406e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| animal welfare ; ||| 0.2 0.173314 1.90631e-06 5.81484e-12 2.718 ||| 0-0 ||| 5 524574 +los ||| animal welfare ||| 0.000859845 0.173314 1.90631e-06 1.88793e-08 2.718 ||| 0-0 ||| 1163 524574 +los ||| animal ||| 0.0218136 0.173314 0.000133442 0.0014195 2.718 ||| 0-0 ||| 3209 524574 +los ||| animals . ||| 0.00194175 0.273985 1.90631e-06 5.36587e-06 2.718 ||| 0-0 ||| 515 524574 +los ||| animals are a ||| 0.333333 0.273985 1.90631e-06 1.19141e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| animals are ||| 0.0108696 0.273985 3.81262e-06 2.68784e-05 2.718 ||| 0-0 ||| 184 524574 +los ||| animals as ||| 0.03125 0.137457 1.90631e-06 6.32071e-07 2.718 ||| 0-0 0-1 ||| 32 524574 +los ||| animals is ||| 0.0232558 0.273985 1.90631e-06 5.55208e-05 2.718 ||| 0-0 ||| 43 524574 +los ||| animals the ||| 0.166667 0.122289 1.90631e-06 1.74585e-05 2.718 ||| 0-1 ||| 6 524574 +los ||| animals ||| 0.00539435 0.273985 5.5283e-05 0.0017715 2.718 ||| 0-0 ||| 5376 524574 +los ||| annexes ||| 0.00425532 0.0753968 1.90631e-06 1.85e-05 2.718 ||| 0-0 ||| 235 524574 +los ||| announce the ||| 0.0357143 0.122289 3.81262e-06 1.54424e-06 2.718 ||| 0-1 ||| 56 524574 +los ||| annual ||| 0.000392696 0.0004308 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 5093 524574 +los ||| another in the ||| 0.0357143 0.122289 1.90631e-06 2.21368e-06 2.718 ||| 0-2 ||| 28 524574 +los ||| answers to the ||| 0.00826446 0.122289 1.90631e-06 8.23312e-07 2.718 ||| 0-2 ||| 121 524574 +los ||| anti-Hungarian ||| 0.0526316 0.277778 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 19 524574 +los ||| anti-dumping ||| 0.00343643 0.0109589 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 291 524574 +los ||| anti-microbial medicines as additives ; ||| 1 0.240938 1.90631e-06 7.25143e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| anti-microbial medicines as additives ||| 1 0.240938 1.90631e-06 2.35436e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| anti-microbial medicines as ||| 1 0.240938 1.90631e-06 4.70872e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| anti-microbial medicines ||| 0.333333 0.240938 1.90631e-06 4.6144e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| anxious to accommodate some of the ||| 1 0.122289 1.90631e-06 2.11274e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| any action ||| 0.00393701 0.0178119 1.90631e-06 2.79204e-07 2.718 ||| 0-0 ||| 254 524574 +los ||| any additional cash subsidy ||| 1 0.030303 1.90631e-06 1.00874e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| any additional cash ||| 1 0.030303 1.90631e-06 1.55191e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| any alternative ||| 0.0344828 0.0178119 1.90631e-06 2.26282e-08 2.718 ||| 0-0 ||| 29 524574 +los ||| any and ||| 0.0555556 0.0178119 1.90631e-06 1.15689e-05 2.718 ||| 0-0 ||| 18 524574 +los ||| any attention to ||| 0.1 0.0178119 1.90631e-06 2.14447e-08 2.718 ||| 0-0 ||| 10 524574 +los ||| any attention ||| 0.0555556 0.0178119 1.90631e-06 2.41337e-07 2.718 ||| 0-0 ||| 18 524574 +los ||| any case , ||| 0.000555864 0.0178119 1.90631e-06 1.17843e-07 2.718 ||| 0-0 ||| 1799 524574 +los ||| any case know anything ||| 1 0.0178119 1.90631e-06 4.00009e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| any case know ||| 1 0.0178119 1.90631e-06 2.54945e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| any case ||| 0.00162443 0.0178119 9.53154e-06 9.8816e-07 2.718 ||| 0-0 ||| 3078 524574 +los ||| any circumstances ||| 0.00218818 0.0178119 1.90631e-06 4.98744e-08 2.718 ||| 0-0 ||| 457 524574 +los ||| any common ||| 0.0714286 0.0178119 1.90631e-06 2.13352e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| any conduct ||| 0.166667 0.0178119 1.90631e-06 5.55084e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| any debate . they are ||| 1 0.0178119 1.90631e-06 2.74184e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| any debate . they ||| 1 0.0178119 1.90631e-06 1.80709e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| any debate . ||| 0.2 0.0178119 1.90631e-06 5.53642e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| any debate ||| 0.0121951 0.0178119 1.90631e-06 1.8278e-07 2.718 ||| 0-0 ||| 82 524574 +los ||| any ensuing ||| 1 0.0178119 1.90631e-06 4.34092e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| any further , the only thing left ||| 1 0.122289 1.90631e-06 2.8685e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| any further , the only thing ||| 1 0.122289 1.90631e-06 1.51853e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| any further , the only ||| 1 0.122289 1.90631e-06 4.16149e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| any further , the ||| 0.5 0.122289 1.90631e-06 3.73865e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| any further ||| 0.00175747 0.0178119 1.90631e-06 4.46376e-07 2.718 ||| 0-0 ||| 569 524574 +los ||| any general ||| 0.333333 0.0178119 1.90631e-06 1.61538e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| any given concentration ||| 0.5 0.0178119 1.90631e-06 3.67643e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| any given ||| 0.025 0.0178119 1.90631e-06 6.33867e-07 2.718 ||| 0-0 ||| 40 524574 +los ||| any great ||| 0.0128205 0.0178119 1.90631e-06 3.62975e-07 2.718 ||| 0-0 ||| 78 524574 +los ||| any kind ||| 0.00121212 0.0178119 1.90631e-06 4.50717e-07 2.718 ||| 0-0 ||| 825 524574 +los ||| any local ||| 1 0.0184491 1.90631e-06 1.73267e-07 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| any means in the ||| 0.5 0.0178119 1.90631e-06 7.691e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| any means in ||| 0.333333 0.0178119 1.90631e-06 1.25277e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| any means ||| 0.00763359 0.0178119 1.90631e-06 5.85285e-07 2.718 ||| 0-0 ||| 131 524574 +los ||| any member of the ||| 0.0769231 0.122289 1.90631e-06 5.87501e-09 2.718 ||| 0-3 ||| 13 524574 +los ||| any of the ||| 0.02 0.122289 2.28757e-05 3.52642e-05 2.718 ||| 0-2 ||| 600 524574 +los ||| any of these ||| 0.00740741 0.0240362 1.90631e-06 2.00385e-07 2.718 ||| 0-2 ||| 135 524574 +los ||| any old ||| 0.0172414 0.0144403 1.90631e-06 5.74479e-08 2.718 ||| 0-0 0-1 ||| 58 524574 +los ||| any one ||| 0.00865801 0.0178119 3.81262e-06 3.84956e-06 2.718 ||| 0-0 ||| 231 524574 +los ||| any or ||| 0.111111 0.0178119 1.90631e-06 1.05595e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| any other ||| 0.00213675 0.0178119 9.53154e-06 1.19652e-06 2.718 ||| 0-0 ||| 2340 524574 +los ||| any party that violates ||| 1 0.0178119 1.90631e-06 2.65673e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| any party that ||| 0.333333 0.0178119 1.90631e-06 1.06269e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| any party ||| 0.0344828 0.0178119 1.90631e-06 6.31742e-08 2.718 ||| 0-0 ||| 29 524574 +los ||| any plans ||| 0.0120482 0.12684 1.90631e-06 1.15275e-06 2.718 ||| 0-1 ||| 83 524574 +los ||| any positive ||| 0.0588235 0.0178119 1.90631e-06 8.40476e-08 2.718 ||| 0-0 ||| 17 524574 +los ||| any possibility of even a ||| 0.5 0.0178119 1.90631e-06 1.15927e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| any possibility of even ||| 0.5 0.0178119 1.90631e-06 2.61535e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| any possibility of ||| 0.00900901 0.0178119 1.90631e-06 4.29803e-09 2.718 ||| 0-0 ||| 111 524574 +los ||| any possibility ||| 0.00769231 0.0178119 1.90631e-06 7.90602e-08 2.718 ||| 0-0 ||| 130 524574 +los ||| any price ||| 0.00581395 0.0178119 1.90631e-06 4.7196e-08 2.718 ||| 0-0 ||| 172 524574 +los ||| any products ||| 0.1 0.131535 1.90631e-06 4.62188e-06 2.718 ||| 0-0 0-1 ||| 10 524574 +los ||| any question ||| 0.0149254 0.0178119 1.90631e-06 7.64094e-07 2.718 ||| 0-0 ||| 67 524574 +los ||| any sort of ||| 0.00813008 0.0178119 1.90631e-06 8.02365e-09 2.718 ||| 0-0 ||| 123 524574 +los ||| any sort ||| 0.00636943 0.0178119 1.90631e-06 1.47591e-07 2.718 ||| 0-0 ||| 157 524574 +los ||| any subsequent cases ||| 1 0.136512 1.90631e-06 3.97695e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| any such thing as ||| 0.5 0.0178119 1.90631e-06 7.11516e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| any such thing ||| 0.1 0.0178119 1.90631e-06 6.97264e-10 2.718 ||| 0-0 ||| 10 524574 +los ||| any such ||| 0.00716846 0.0178119 3.81262e-06 1.91084e-06 2.718 ||| 0-0 ||| 279 524574 +los ||| any suspicions ||| 0.0666667 0.0178119 1.90631e-06 1.01596e-09 2.718 ||| 0-0 ||| 15 524574 +los ||| any the ||| 0.2 0.122289 1.90631e-06 0.000648668 2.718 ||| 0-1 ||| 5 524574 +los ||| any time in the course of the ||| 1 0.122289 1.90631e-06 9.5984e-14 2.718 ||| 0-6 ||| 1 524574 +los ||| any time ||| 0.00434783 0.0178119 3.81262e-06 1.51627e-06 2.718 ||| 0-0 ||| 460 524574 +los ||| any unlawful ||| 0.25 0.0178119 1.90631e-06 2.67844e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| any way ||| 0.002886 0.0178119 7.62523e-06 1.99091e-06 2.718 ||| 0-0 ||| 1386 524574 +los ||| any wrongdoing that ||| 1 0.0178119 1.90631e-06 1.70901e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| any wrongdoing ||| 0.111111 0.0178119 1.90631e-06 1.01596e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| any ||| 0.0159658 0.0178119 0.00137445 0.0009236 2.718 ||| 0-0 ||| 45159 524574 +los ||| anybody ||| 0.0121317 0.0206825 1.33442e-05 1.94e-05 2.718 ||| 0-0 ||| 577 524574 +los ||| anyone else ||| 0.0149254 0.031024 7.62523e-06 1.8703e-08 2.718 ||| 0-0 ||| 268 524574 +los ||| anyone to ||| 0.00925926 0.031024 1.90631e-06 1.4084e-05 2.718 ||| 0-0 ||| 108 524574 +los ||| anyone who is ||| 0.01 0.031024 1.90631e-06 4.38139e-09 2.718 ||| 0-0 ||| 100 524574 +los ||| anyone who ||| 0.00153846 0.031024 3.81262e-06 1.39797e-07 2.718 ||| 0-0 ||| 1300 524574 +los ||| anyone ||| 0.016404 0.031024 9.72217e-05 0.0001585 2.718 ||| 0-0 ||| 3109 524574 +los ||| anything about ||| 0.00440529 0.0003337 1.90631e-06 5.3346e-09 2.718 ||| 0-1 ||| 227 524574 +los ||| anything else , there needs to ||| 0.5 0.01311 1.90631e-06 7.0744e-17 2.718 ||| 0-1 ||| 2 524574 +los ||| anything else , there needs ||| 0.5 0.01311 1.90631e-06 7.96145e-16 2.718 ||| 0-1 ||| 2 524574 +los ||| anything else , there ||| 0.333333 0.01311 1.90631e-06 4.01485e-12 2.718 ||| 0-1 ||| 3 524574 +los ||| anything else , ||| 0.00552486 0.01311 1.90631e-06 1.30977e-09 2.718 ||| 0-1 ||| 181 524574 +los ||| anything else ||| 0.00177936 0.01311 1.90631e-06 1.0983e-08 2.718 ||| 0-1 ||| 562 524574 +los ||| anything except the ||| 0.5 0.122289 1.90631e-06 6.3265e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| anything like the ||| 0.04 0.122289 1.90631e-06 1.19524e-07 2.718 ||| 0-2 ||| 25 524574 +los ||| anything ||| 0.000236239 0.0001643 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 4233 524574 +los ||| apart from anything else , there needs ||| 0.5 0.01311 1.90631e-06 7.98756e-23 2.718 ||| 0-3 ||| 2 524574 +los ||| apart from anything else , there ||| 0.5 0.01311 1.90631e-06 4.02802e-19 2.718 ||| 0-3 ||| 2 524574 +los ||| apart from anything else , ||| 0.0125 0.01311 1.90631e-06 1.31407e-16 2.718 ||| 0-3 ||| 80 524574 +los ||| apart from anything else ||| 0.00909091 0.01311 1.90631e-06 1.1019e-15 2.718 ||| 0-3 ||| 110 524574 +los ||| apart from the ||| 0.00128866 0.122289 1.90631e-06 4.30363e-08 2.718 ||| 0-2 ||| 776 524574 +los ||| apart from those ||| 0.0285714 0.284705 1.90631e-06 1.67524e-09 2.718 ||| 0-2 ||| 35 524574 +los ||| appalling arrangements ||| 0.111111 0.0717439 1.90631e-06 2.37632e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| apparently , be the ||| 0.5 0.122289 1.90631e-06 1.79853e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| apparently means that the ||| 1 0.122289 1.90631e-06 8.87086e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| appeal to men ; the differences in ||| 1 0.122289 1.90631e-06 7.54707e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| appeal to men ; the differences ||| 1 0.122289 1.90631e-06 3.52592e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| appeal to men ; the ||| 1 0.122289 1.90631e-06 1.50681e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| appeal to the masses ||| 0.5 0.122289 1.90631e-06 2.072e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| appeal to the ||| 0.0021645 0.122289 1.90631e-06 1.15111e-06 2.718 ||| 0-2 ||| 462 524574 +los ||| appeals or ||| 0.5 0.0826709 1.90631e-06 5.7851e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| appeals ||| 0.00197628 0.0826709 1.90631e-06 5.06e-05 2.718 ||| 0-0 ||| 506 524574 +los ||| appeasing their ||| 1 0.0236713 1.90631e-06 9.1508e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| appliances ||| 0.0220994 0.207747 7.62523e-06 5.74e-05 2.718 ||| 0-0 ||| 181 524574 +los ||| applicable to all members ||| 1 0.154615 1.90631e-06 2.0091e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| applicant countries - the ||| 1 0.122289 1.90631e-06 5.09935e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| applicant countries have thrown themselves with determination ||| 1 0.102182 1.90631e-06 8.23842e-25 2.718 ||| 0-0 ||| 1 524574 +los ||| applicant countries have thrown themselves with ||| 1 0.102182 1.90631e-06 6.92305e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| applicant countries have thrown themselves ||| 0.5 0.102182 1.90631e-06 1.08266e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| applicant countries have thrown ||| 1 0.102182 1.90631e-06 2.51956e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| applicant countries have ||| 0.0769231 0.102182 1.90631e-06 9.0959e-10 2.718 ||| 0-0 ||| 13 524574 +los ||| applicant countries to ||| 0.0217391 0.102182 1.90631e-06 6.75801e-09 2.718 ||| 0-0 ||| 46 524574 +los ||| applicant countries ||| 0.00213675 0.102182 5.71893e-06 7.60539e-08 2.718 ||| 0-0 ||| 1404 524574 +los ||| applicant ||| 0.00509626 0.102182 1.71568e-05 0.0002003 2.718 ||| 0-0 ||| 1766 524574 +los ||| applicants ||| 0.0052356 0.296675 5.71893e-06 0.0002256 2.718 ||| 0-0 ||| 573 524574 +los ||| application , of the ||| 0.333333 0.122289 1.90631e-06 1.69084e-07 2.718 ||| 0-3 ||| 3 524574 +los ||| applied for the Appendix ||| 0.0833333 0.122289 1.90631e-06 1.42819e-13 2.718 ||| 0-2 ||| 12 524574 +los ||| applied for the ||| 0.03125 0.122289 1.90631e-06 3.57047e-07 2.718 ||| 0-2 ||| 32 524574 +los ||| applied the veto ||| 0.5 0.122289 1.90631e-06 6.50384e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| applied the ||| 0.0121951 0.122289 1.90631e-06 4.6456e-05 2.718 ||| 0-1 ||| 82 524574 +los ||| applied to the ||| 0.00478469 0.122289 1.90631e-06 4.12799e-06 2.718 ||| 0-2 ||| 209 524574 +los ||| applies the ||| 0.0243902 0.122289 1.90631e-06 3.59465e-05 2.718 ||| 0-1 ||| 41 524574 +los ||| applies to the ||| 0.00702988 0.122289 7.62523e-06 3.19414e-06 2.718 ||| 0-2 ||| 569 524574 +los ||| apply the ||| 0.00093633 0.122289 1.90631e-06 6.17268e-05 2.718 ||| 0-1 ||| 1068 524574 +los ||| apply them ||| 0.0107527 0.038218 1.90631e-06 2.89613e-07 2.718 ||| 0-1 ||| 93 524574 +los ||| apply ||| 0.00012566 0.0001019 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 7958 524574 +los ||| applying the ||| 0.0013587 0.122289 1.90631e-06 1.41985e-05 2.718 ||| 0-1 ||| 736 524574 +los ||| appointed ; the ||| 1 0.122289 1.90631e-06 1.47973e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| appointees ’ ||| 0.333333 0.0139748 1.90631e-06 2.1624e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| appointing ||| 0.00307692 0.026738 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 325 524574 +los ||| appreciate the ||| 0.00340136 0.122289 1.90631e-06 7.72121e-06 2.718 ||| 0-1 ||| 294 524574 +los ||| appreciation of the ||| 0.00657895 0.122289 1.90631e-06 3.03157e-07 2.718 ||| 0-2 ||| 152 524574 +los ||| approach adopted by both ||| 0.5 0.0062464 1.90631e-06 1.19984e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| approach adopted by ||| 0.0169492 0.0062464 1.90631e-06 7.24323e-11 2.718 ||| 0-2 ||| 59 524574 +los ||| approach the ||| 0.00436681 0.122289 1.90631e-06 9.40272e-05 2.718 ||| 0-1 ||| 229 524574 +los ||| approach to the ||| 0.0058997 0.122289 3.81262e-06 8.35509e-06 2.718 ||| 0-2 ||| 339 524574 +los ||| approach towards giving the ||| 1 0.122289 1.90631e-06 1.88197e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| approach would be the availability ||| 0.5 0.122289 1.90631e-06 6.80036e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| approach would be the ||| 0.333333 0.122289 1.90631e-06 1.00005e-08 2.718 ||| 0-3 ||| 3 524574 +los ||| approached by members of the public ||| 0.5 0.122289 1.90631e-06 3.15173e-17 2.718 ||| 0-4 ||| 2 524574 +los ||| approached by members of the ||| 0.5 0.122289 1.90631e-06 1.95033e-13 2.718 ||| 0-4 ||| 2 524574 +los ||| approaches - ||| 0.125 0.0602076 1.90631e-06 3.1912e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| approaches ||| 0.00309837 0.0602076 7.62523e-06 8.46e-05 2.718 ||| 0-0 ||| 1291 524574 +los ||| appropriate , ||| 0.00185529 0.0010555 1.90631e-06 1.39528e-06 2.718 ||| 0-0 ||| 539 524574 +los ||| appropriate fiscal reform and the fight against ||| 1 0.122289 1.90631e-06 2.10507e-24 2.718 ||| 0-4 ||| 1 524574 +los ||| appropriate fiscal reform and the fight ||| 1 0.122289 1.90631e-06 8.82259e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| appropriate fiscal reform and the ||| 1 0.122289 1.90631e-06 1.6012e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| appropriate ||| 0.000553199 0.0010555 1.14379e-05 1.17e-05 2.718 ||| 0-0 ||| 10846 524574 +los ||| appropriations ||| 0.00640049 0.189378 4.00325e-05 0.0007107 2.718 ||| 0-0 ||| 3281 524574 +los ||| approval delivered by the ||| 1 0.0642678 1.90631e-06 7.16745e-13 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| approve the ||| 0.00175439 0.122289 1.90631e-06 9.56573e-06 2.718 ||| 0-1 ||| 570 524574 +los ||| approving funds ||| 0.166667 0.220459 1.90631e-06 1.8711e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| approximately the ||| 0.0666667 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-1 ||| 15 524574 +los ||| arable ||| 0.0160428 0.0798479 5.71893e-06 2.04e-05 2.718 ||| 0-0 ||| 187 524574 +los ||| are a hunter , ||| 1 0.0005024 1.90631e-06 3.82288e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| are a hunter ||| 1 0.0005024 1.90631e-06 3.20564e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| are a ||| 0.000613309 0.0005024 3.81262e-06 8.0141e-06 2.718 ||| 0-0 ||| 3261 524574 +los ||| are accepted by the ||| 0.2 0.122289 1.90631e-06 2.10145e-09 2.718 ||| 0-3 ||| 5 524574 +los ||| are adequate in ||| 0.2 0.0040232 1.90631e-06 5.68337e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| are adequate ||| 0.015873 0.0040232 1.90631e-06 2.65522e-07 2.718 ||| 0-1 ||| 63 524574 +los ||| are all areas ||| 0.0666667 0.0177928 1.90631e-06 9.33655e-09 2.718 ||| 0-1 ||| 15 524574 +los ||| are all matters in ||| 1 0.0584903 1.90631e-06 1.09374e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| are all matters ||| 0.5 0.0584903 1.90631e-06 5.10985e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| are all the ||| 0.010989 0.122289 1.90631e-06 3.07549e-05 2.718 ||| 0-2 ||| 91 524574 +los ||| are all ||| 0.00538721 0.0177928 1.52505e-05 4.07888e-05 2.718 ||| 0-1 ||| 1485 524574 +los ||| are already in the ||| 0.0454545 0.122289 1.90631e-06 6.45143e-08 2.718 ||| 0-3 ||| 22 524574 +los ||| are also disputes between the ||| 1 0.122289 1.90631e-06 6.84776e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| are also the ||| 0.0113636 0.122289 1.90631e-06 3.28584e-05 2.718 ||| 0-2 ||| 88 524574 +los ||| are also those who ||| 0.142857 0.284705 1.90631e-06 1.12812e-09 2.718 ||| 0-2 ||| 7 524574 +los ||| are also those ||| 0.0666667 0.284705 1.90631e-06 1.27905e-06 2.718 ||| 0-2 ||| 15 524574 +los ||| are areas ||| 0.0142857 0.0243257 1.90631e-06 9.22045e-06 2.718 ||| 0-1 ||| 70 524574 +los ||| are as ||| 0.00195312 0.0009297 1.90631e-06 5.41362e-06 2.718 ||| 0-1 ||| 512 524574 +los ||| are aspects ||| 0.0526316 0.111303 1.90631e-06 1.70829e-05 2.718 ||| 0-1 ||| 19 524574 +los ||| are at the moment ||| 0.0434783 0.122289 1.90631e-06 4.92469e-09 2.718 ||| 0-2 ||| 23 524574 +los ||| are at the ||| 0.00242131 0.122289 1.90631e-06 2.72534e-05 2.718 ||| 0-2 ||| 413 524574 +los ||| are at their ||| 0.0277778 0.0236713 1.90631e-06 1.45347e-07 2.718 ||| 0-2 ||| 36 524574 +los ||| are aware of the ||| 0.00617284 0.122289 1.90631e-06 4.91462e-08 2.718 ||| 0-3 ||| 162 524574 +los ||| are bearing the ||| 0.125 0.122289 1.90631e-06 2.90276e-07 2.718 ||| 0-2 ||| 8 524574 +los ||| are brought into the European Union ||| 1 0.122289 1.90631e-06 3.48737e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| are brought into the European ||| 1 0.122289 1.90631e-06 6.25649e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| are brought into the ||| 0.111111 0.122289 1.90631e-06 1.87102e-09 2.718 ||| 0-3 ||| 9 524574 +los ||| are called the ||| 0.25 0.122289 1.90631e-06 1.13116e-06 2.718 ||| 0-2 ||| 4 524574 +los ||| are coming ||| 0.00568182 0.0093772 1.90631e-06 9.87743e-07 2.718 ||| 0-1 ||| 176 524574 +los ||| are concerned , the ||| 0.00628931 0.122289 1.90631e-06 1.24853e-06 2.718 ||| 0-3 ||| 159 524574 +los ||| are concerned ||| 0.000785546 0.0005024 3.81262e-06 2.90835e-07 2.718 ||| 0-0 ||| 2546 524574 +los ||| are convinced of the ||| 0.0833333 0.122289 1.90631e-06 6.61651e-09 2.718 ||| 0-3 ||| 12 524574 +los ||| are described as the ||| 1 0.122289 1.90631e-06 2.96209e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| are developing ||| 0.00719424 0.150762 1.90631e-06 5.40209e-05 2.718 ||| 0-1 ||| 139 524574 +los ||| are employed ||| 0.00735294 0.0057803 1.90631e-06 1.03174e-07 2.718 ||| 0-1 ||| 136 524574 +los ||| are engaging the ||| 1 0.122289 1.90631e-06 8.65621e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| are facing the ||| 0.015625 0.122289 1.90631e-06 3.46899e-07 2.718 ||| 0-2 ||| 64 524574 +los ||| are flawed . the ||| 0.5 0.122289 1.90631e-06 4.33708e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| are four priorities - competitiveness , the ||| 1 0.122289 1.90631e-06 5.84117e-21 2.718 ||| 0-6 ||| 1 524574 +los ||| are from now ||| 0.5 0.001099 1.90631e-06 6.0477e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| are from ||| 0.00787402 0.001099 1.90631e-06 2.93592e-06 2.718 ||| 0-1 ||| 127 524574 +los ||| are fulfilling their ||| 0.1 0.0236713 1.90631e-06 2.25619e-10 2.718 ||| 0-2 ||| 10 524574 +los ||| are getting down to these ||| 1 0.0240362 1.90631e-06 2.66581e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| are going through right ||| 1 0.0005024 1.90631e-06 4.59308e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| are going through ||| 0.0114943 0.0005024 1.90631e-06 7.12216e-11 2.718 ||| 0-0 ||| 87 524574 +los ||| are going ||| 0.00119474 0.0005024 3.81262e-06 1.54729e-07 2.718 ||| 0-0 ||| 1674 524574 +los ||| are human ||| 0.1 0.319795 1.90631e-06 0.000295951 2.718 ||| 0-1 ||| 10 524574 +los ||| are in the process of ||| 0.00970874 0.122289 1.90631e-06 3.23764e-09 2.718 ||| 0-2 ||| 103 524574 +los ||| are in the process ||| 0.00900901 0.122289 1.90631e-06 5.95548e-08 2.718 ||| 0-2 ||| 111 524574 +los ||| are in the ||| 0.00515464 0.122289 7.62523e-06 0.00013931 2.718 ||| 0-2 ||| 776 524574 +los ||| are in their ||| 0.0555556 0.0236713 1.90631e-06 7.42963e-07 2.718 ||| 0-2 ||| 18 524574 +los ||| are in ||| 0.000222866 0.0003146 1.90631e-06 2.49685e-08 2.718 ||| 0-0 0-1 ||| 4487 524574 +los ||| are informed about the ||| 0.166667 0.122289 1.90631e-06 2.75225e-10 2.718 ||| 0-3 ||| 6 524574 +los ||| are insured ||| 0.166667 0.0364964 1.90631e-06 7.43462e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| are intensively supporting the ||| 0.333333 0.122289 1.90631e-06 7.49771e-13 2.718 ||| 0-3 ||| 3 524574 +los ||| are investigating the ||| 0.333333 0.122289 1.90631e-06 1.62711e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| are just the ||| 0.03125 0.122289 1.90631e-06 8.21168e-06 2.718 ||| 0-2 ||| 32 524574 +los ||| are keeping salaries down ||| 1 0.277512 1.90631e-06 1.75335e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| are keeping salaries ||| 1 0.277512 1.90631e-06 2.5116e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| are keeping those ||| 1 0.284705 1.90631e-06 1.48715e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| are known as ' ||| 0.047619 0.0444479 1.90631e-06 9.06743e-11 2.718 ||| 0-3 ||| 21 524574 +los ||| are known as the ||| 0.05 0.122289 1.90631e-06 7.31224e-09 2.718 ||| 0-3 ||| 20 524574 +los ||| are made against the background ||| 1 0.122289 1.90631e-06 8.65308e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| are made against the ||| 1 0.122289 1.90631e-06 3.25304e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| are made ||| 0.00240674 0.0005024 3.81262e-06 3.7874e-07 2.718 ||| 0-0 ||| 831 524574 +los ||| are making the ||| 0.0333333 0.122289 1.90631e-06 2.50379e-06 2.718 ||| 0-2 ||| 30 524574 +los ||| are my ||| 0.0117647 0.0086409 1.90631e-06 1.04585e-05 2.718 ||| 0-1 ||| 85 524574 +los ||| are naturally ||| 0.0149254 0.0005024 1.90631e-06 1.14446e-08 2.718 ||| 0-0 ||| 67 524574 +los ||| are no longer concentrated ||| 0.111111 0.0064865 1.90631e-06 1.28438e-14 2.718 ||| 0-3 ||| 9 524574 +los ||| are no two ||| 0.5 0.0004357 1.90631e-06 1.84243e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| are not all ||| 0.0285714 0.0177928 1.90631e-06 1.39257e-07 2.718 ||| 0-2 ||| 35 524574 +los ||| are not the preserve ||| 0.333333 0.122289 1.90631e-06 2.55535e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| are not the same ||| 0.0133333 0.122289 1.90631e-06 1.78808e-08 2.718 ||| 0-2 ||| 75 524574 +los ||| are not the ||| 0.00511509 0.122289 3.81262e-06 2.22204e-05 2.718 ||| 0-2 ||| 391 524574 +los ||| are not those ||| 0.0555556 0.284705 1.90631e-06 8.64954e-07 2.718 ||| 0-2 ||| 18 524574 +los ||| are of the ||| 0.0131579 0.122289 3.81262e-06 0.000353824 2.718 ||| 0-2 ||| 152 524574 +los ||| are on the ||| 0.00175439 0.122289 1.90631e-06 4.35479e-05 2.718 ||| 0-2 ||| 570 524574 +los ||| are ones ||| 0.0769231 0.0861124 1.90631e-06 5.56079e-06 2.718 ||| 0-1 ||| 13 524574 +los ||| are our ||| 0.00296736 0.0248369 1.90631e-06 5.41832e-05 2.718 ||| 0-1 ||| 337 524574 +los ||| are over ||| 0.00675676 0.0037547 1.90631e-06 2.065e-06 2.718 ||| 0-1 ||| 148 524574 +los ||| are paid for by the ||| 0.166667 0.122289 1.90631e-06 3.53486e-11 2.718 ||| 0-4 ||| 6 524574 +los ||| are people ||| 0.00847458 0.0894672 1.90631e-06 0.00011949 2.718 ||| 0-1 ||| 118 524574 +los ||| are planting , would mean handing over ||| 1 0.199052 1.90631e-06 3.2793e-22 2.718 ||| 0-1 ||| 1 524574 +los ||| are planting , would mean handing ||| 1 0.199052 1.90631e-06 6.81059e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| are planting , would mean ||| 1 0.199052 1.90631e-06 1.11649e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| are planting , would ||| 1 0.199052 1.90631e-06 4.33252e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| are planting , ||| 1 0.199052 1.90631e-06 7.38242e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| are planting ||| 1 0.199052 1.90631e-06 6.19046e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| are prepared to kill the ||| 1 0.122289 1.90631e-06 2.15606e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| are protected , ||| 0.0833333 0.0032727 1.90631e-06 1.59229e-08 2.718 ||| 0-1 ||| 12 524574 +los ||| are protected ||| 0.00302115 0.0032727 1.90631e-06 1.3352e-07 2.718 ||| 0-1 ||| 331 524574 +los ||| are providing food aid , and we ||| 1 0.123536 1.90631e-06 6.79905e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| are providing food aid , and ||| 1 0.123536 1.90631e-06 5.98914e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| are providing food aid , ||| 1 0.123536 1.90631e-06 4.7814e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| are providing food aid ||| 1 0.123536 1.90631e-06 4.00941e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| are providing food ||| 1 0.123536 1.90631e-06 3.06999e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| are quite right ||| 0.0181818 0.0005024 1.90631e-06 4.54848e-11 2.718 ||| 0-0 ||| 55 524574 +los ||| are quite ||| 0.00246914 0.0005024 1.90631e-06 7.05301e-08 2.718 ||| 0-0 ||| 405 524574 +los ||| are real problems ||| 0.0769231 0.106249 1.90631e-06 8.37022e-09 2.718 ||| 0-2 ||| 13 524574 +los ||| are recent examples ||| 0.333333 0.229055 1.90631e-06 1.06473e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| are recent ||| 0.2 0.229055 1.90631e-06 6.1545e-05 2.718 ||| 0-1 ||| 5 524574 +los ||| are represented here and make human ||| 0.5 0.319795 1.90631e-06 4.61135e-16 2.718 ||| 0-5 ||| 2 524574 +los ||| are scientists ||| 0.2 0.236573 1.90631e-06 5.45762e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| are some people who ||| 0.5 0.0894672 1.90631e-06 1.14801e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| are some people ||| 0.2 0.0894672 1.90631e-06 1.3016e-07 2.718 ||| 0-2 ||| 5 524574 +los ||| are specified ||| 0.05 0.0205811 1.90631e-06 2.5035e-07 2.718 ||| 0-1 ||| 20 524574 +los ||| are spending the ||| 0.5 0.122289 1.90631e-06 1.37979e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| are spent on with the ||| 1 0.122289 1.90631e-06 1.78497e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| are still here in the ||| 0.333333 0.122289 1.90631e-06 2.12773e-10 2.718 ||| 0-4 ||| 3 524574 +los ||| are sufficient funds ||| 0.333333 0.220459 1.90631e-06 2.75947e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| are talking about the development ||| 1 0.122289 1.90631e-06 1.65654e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| are talking about the ||| 0.0144928 0.122289 1.90631e-06 1.00701e-09 2.718 ||| 0-3 ||| 69 524574 +los ||| are the achieving ||| 0.111111 0.122289 1.90631e-06 4.30858e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| are the cause of ||| 0.0344828 0.122289 1.90631e-06 6.3936e-08 2.718 ||| 0-1 ||| 29 524574 +los ||| are the cause ||| 0.0333333 0.122289 1.90631e-06 1.17607e-06 2.718 ||| 0-1 ||| 30 524574 +los ||| are the channels ||| 1 0.122289 1.90631e-06 5.59725e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| are the farmers ||| 0.333333 0.251189 1.90631e-06 3.19622e-05 2.718 ||| 0-1 0-2 ||| 3 524574 +los ||| are the hopes ||| 0.2 0.122289 1.90631e-06 6.57351e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| are the nations ||| 0.5 0.122289 1.90631e-06 1.00881e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| are the ones ||| 0.0147059 0.122289 3.81262e-06 1.43836e-06 2.718 ||| 0-1 ||| 136 524574 +los ||| are the people ||| 0.0128205 0.0894672 1.90631e-06 7.33568e-06 2.718 ||| 0-2 ||| 78 524574 +los ||| are the reasons ||| 0.0138889 0.122289 1.90631e-06 6.58002e-07 2.718 ||| 0-1 ||| 72 524574 +los ||| are the same ||| 0.00537634 0.122289 1.90631e-06 5.23733e-06 2.718 ||| 0-1 ||| 186 524574 +los ||| are the very ||| 0.016129 0.122289 1.90631e-06 2.26461e-05 2.718 ||| 0-1 ||| 62 524574 +los ||| are the victims of any ||| 0.5 0.0178119 1.90631e-06 1.65099e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| are the wish ||| 1 0.122289 1.90631e-06 1.91803e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| are the ||| 0.0206986 0.122289 0.000305009 0.00650843 2.718 ||| 0-1 ||| 7730 524574 +los ||| are there too ||| 1 0.0026918 1.90631e-06 7.58889e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| are there ||| 0.0010352 0.0026918 1.90631e-06 5.57597e-06 2.718 ||| 0-1 ||| 966 524574 +los ||| are these ||| 0.00531915 0.0240362 1.90631e-06 3.69835e-05 2.718 ||| 0-1 ||| 188 524574 +los ||| are they the ||| 0.125 0.122289 1.90631e-06 2.12435e-05 2.718 ||| 0-2 ||| 8 524574 +los ||| are those who see the ||| 1 0.122289 1.90631e-06 2.92877e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| are those who ||| 0.00900901 0.284705 1.90631e-06 2.23453e-07 2.718 ||| 0-1 ||| 111 524574 +los ||| are those ||| 0.0484211 0.284705 4.38451e-05 0.000253348 2.718 ||| 0-1 ||| 475 524574 +los ||| are to attain the ||| 0.5 0.122289 1.90631e-06 1.44582e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| are to the ||| 0.03125 0.122289 1.90631e-06 0.000578327 2.718 ||| 0-2 ||| 32 524574 +los ||| are to ||| 0.000307787 0.0005024 1.90631e-06 1.60656e-05 2.718 ||| 0-0 ||| 3249 524574 +los ||| are trimmed ||| 1 0.0005024 1.90631e-06 7.232e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| are trying to identify those ||| 1 0.284705 1.90631e-06 4.48656e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| are trying ||| 0.00369004 0.0005024 1.90631e-06 2.08282e-08 2.718 ||| 0-0 ||| 271 524574 +los ||| are under the terms of ||| 0.5 0.122289 1.90631e-06 1.39343e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| are under the terms ||| 0.5 0.122289 1.90631e-06 2.56314e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| are under the ||| 0.025 0.122289 1.90631e-06 2.33522e-06 2.718 ||| 0-2 ||| 40 524574 +los ||| are utilizing EU citizens money ' ||| 1 0.0444479 1.90631e-06 2.84497e-22 2.718 ||| 0-5 ||| 1 524574 +los ||| are various ||| 0.0285714 0.0114245 1.90631e-06 2.3897e-06 2.718 ||| 0-1 ||| 35 524574 +los ||| are working hard ||| 0.0344828 0.0006427 1.90631e-06 1.86574e-11 2.718 ||| 0-1 ||| 29 524574 +los ||| are working ||| 0.0015625 0.0006427 1.90631e-06 1.77521e-07 2.718 ||| 0-1 ||| 640 524574 +los ||| are wrong . the ||| 1 0.122289 1.90631e-06 1.10004e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| are your responsibilities as a ||| 1 0.0096341 1.90631e-06 5.03404e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| are your responsibilities as ||| 1 0.0096341 1.90631e-06 1.13569e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| are your responsibilities ||| 1 0.0096341 1.90631e-06 1.11294e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| are your ||| 0.0212766 0.0096341 1.90631e-06 4.67623e-06 2.718 ||| 0-1 ||| 47 524574 +los ||| are ||| 0.000641243 0.0005024 0.000234476 0.0001808 2.718 ||| 0-0 ||| 191815 524574 +los ||| area , the ||| 0.00724638 0.122289 1.90631e-06 2.12447e-05 2.718 ||| 0-2 ||| 138 524574 +los ||| areas , ||| 0.00120919 0.0243257 3.81262e-06 7.24711e-05 2.718 ||| 0-0 ||| 1654 524574 +los ||| areas in ||| 0.00189753 0.0243257 3.81262e-06 1.30075e-05 2.718 ||| 0-0 ||| 1054 524574 +los ||| areas like ||| 0.01 0.0243257 1.90631e-06 1.07921e-06 2.718 ||| 0-0 ||| 100 524574 +los ||| areas of the world with ||| 0.333333 0.122289 1.90631e-06 7.77554e-12 2.718 ||| 0-2 ||| 3 524574 +los ||| areas of the world ||| 0.0163934 0.122289 1.90631e-06 1.21597e-09 2.718 ||| 0-2 ||| 61 524574 +los ||| areas of the ||| 0.00220264 0.122289 1.90631e-06 5.3379e-06 2.718 ||| 0-2 ||| 454 524574 +los ||| areas of ||| 0.000295421 0.0243257 1.90631e-06 3.3037e-05 2.718 ||| 0-0 ||| 3385 524574 +los ||| areas to ||| 0.00483092 0.0243257 1.90631e-06 5.39991e-05 2.718 ||| 0-0 ||| 207 524574 +los ||| areas where there are ||| 0.05 0.0449398 1.90631e-06 2.34955e-11 2.718 ||| 0-1 ||| 20 524574 +los ||| areas where there ||| 0.0285714 0.0449398 1.90631e-06 1.54854e-09 2.718 ||| 0-1 ||| 35 524574 +los ||| areas where ||| 0.00257511 0.0449398 5.71893e-06 5.05182e-07 2.718 ||| 0-1 ||| 1165 524574 +los ||| areas ||| 0.00105978 0.0243257 5.14703e-05 0.0006077 2.718 ||| 0-0 ||| 25477 524574 +los ||| argue that sort conflict is over and ||| 1 0.0037547 1.90631e-06 1.3176e-22 2.718 ||| 0-5 ||| 1 524574 +los ||| argue that sort conflict is over ||| 1 0.0037547 1.90631e-06 1.0519e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| argued that the ||| 0.027027 0.122289 1.90631e-06 7.28789e-08 2.718 ||| 0-2 ||| 37 524574 +los ||| arguments are heard ||| 0.5 0.0590406 1.90631e-06 1.86981e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| arguments are ||| 0.0147059 0.0590406 1.90631e-06 2.36087e-06 2.718 ||| 0-0 ||| 68 524574 +los ||| arguments that ||| 0.00934579 0.0590406 1.90631e-06 2.61744e-06 2.718 ||| 0-0 ||| 107 524574 +los ||| arguments ||| 0.00328542 0.0590406 1.52505e-05 0.0001556 2.718 ||| 0-0 ||| 2435 524574 +los ||| arise between the various countries ||| 1 0.0764782 1.90631e-06 6.46288e-15 2.718 ||| 0-2 0-3 0-4 ||| 1 524574 +los ||| armed ||| 0.00246305 0.0030826 7.62523e-06 4.9e-06 2.718 ||| 0-0 ||| 1624 524574 +los ||| arose after the ||| 0.166667 0.122289 1.90631e-06 1.04622e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| around the Union ||| 0.0666667 0.122289 1.90631e-06 3.18482e-08 2.718 ||| 0-1 ||| 15 524574 +los ||| around the world , and ||| 0.0285714 0.122289 1.90631e-06 1.94426e-11 2.718 ||| 0-1 ||| 35 524574 +los ||| around the world , ||| 0.00873362 0.122289 3.81262e-06 1.5522e-09 2.718 ||| 0-1 ||| 229 524574 +los ||| around the world ||| 0.00291829 0.122289 5.71893e-06 1.30158e-08 2.718 ||| 0-1 ||| 1028 524574 +los ||| around the ||| 0.00332542 0.122289 1.33442e-05 5.7137e-05 2.718 ||| 0-1 ||| 2105 524574 +los ||| around when we talk of ||| 0.5 0.0006199 1.90631e-06 2.4358e-16 2.718 ||| 0-1 ||| 2 524574 +los ||| around when we talk ||| 0.5 0.0006199 1.90631e-06 4.48054e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| around when we ||| 0.5 0.0006199 1.90631e-06 5.57975e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| around when ||| 0.2 0.0006199 1.90631e-06 4.91508e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| around ||| 0.000282406 0.0014096 3.81262e-06 1.46e-05 2.718 ||| 0-0 ||| 7082 524574 +los ||| arrangements , ||| 0.00833333 0.0717439 1.90631e-06 3.01476e-05 2.718 ||| 0-0 ||| 120 524574 +los ||| arrangements are ||| 0.0181818 0.0717439 1.90631e-06 3.83566e-06 2.718 ||| 0-0 ||| 55 524574 +los ||| arrangements needed ||| 0.5 0.0717439 1.90631e-06 3.38499e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| arrangements to ||| 0.0147059 0.0717439 1.90631e-06 2.24634e-05 2.718 ||| 0-0 ||| 68 524574 +los ||| arrangements ||| 0.00343249 0.0717439 2.28757e-05 0.0002528 2.718 ||| 0-0 ||| 3496 524574 +los ||| arrests ||| 0.00225734 0.0400729 1.90631e-06 2.14e-05 2.718 ||| 0-0 ||| 443 524574 +los ||| arrive at the ||| 0.0196078 0.122289 1.90631e-06 3.62835e-08 2.718 ||| 0-2 ||| 51 524574 +los ||| art ||| 0.00194175 0.0015267 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 515 524574 +los ||| articles of association , the ||| 0.5 0.122289 1.90631e-06 3.47124e-13 2.718 ||| 0-4 ||| 2 524574 +los ||| articles ||| 0.00702106 0.114953 1.33442e-05 0.0001196 2.718 ||| 0-0 ||| 997 524574 +los ||| artificial ||| 0.00147275 0.0045802 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 679 524574 +los ||| artisans ||| 0.1 0.375 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| artists to ||| 0.0625 0.350449 1.90631e-06 2.3583e-05 2.718 ||| 0-0 ||| 16 524574 +los ||| artists ||| 0.00575816 0.350449 5.71893e-06 0.0002654 2.718 ||| 0-0 ||| 521 524574 +los ||| as ' ||| 0.00199601 0.0444479 1.90631e-06 5.42792e-05 2.718 ||| 0-1 ||| 501 524574 +los ||| as EUR ||| 0.142857 0.0176276 3.81262e-06 2.03626e-07 2.718 ||| 0-0 0-1 ||| 14 524574 +los ||| as Members of ||| 0.00775194 0.0849043 1.90631e-06 9.35792e-08 2.718 ||| 0-0 0-1 ||| 129 524574 +los ||| as Members ||| 0.00309598 0.0849043 1.90631e-06 1.72135e-06 2.718 ||| 0-0 0-1 ||| 323 524574 +los ||| as SUVs ( sport utility ||| 1 0.181818 1.90631e-06 2.08636e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| as SUVs ( sport ||| 1 0.181818 1.90631e-06 1.15909e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| as SUVs ( ||| 1 0.181818 1.90631e-06 7.67608e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| as SUVs ||| 0.333333 0.181818 1.90631e-06 7.95943e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| as a candidate ||| 0.0125 0.0335599 1.90631e-06 6.94761e-08 2.718 ||| 0-2 ||| 80 524574 +los ||| as a donor , ||| 0.142857 0.0887513 1.90631e-06 4.50947e-09 2.718 ||| 0-2 ||| 7 524574 +los ||| as a donor ||| 0.0588235 0.0887513 1.90631e-06 3.78138e-08 2.718 ||| 0-2 ||| 17 524574 +los ||| as a matter of ||| 0.00210305 0.0009297 3.81262e-06 8.92033e-10 2.718 ||| 0-0 ||| 951 524574 +los ||| as a matter ||| 0.000967118 0.0009297 1.90631e-06 1.64085e-08 2.718 ||| 0-0 ||| 1034 524574 +los ||| as a preparatory step the ||| 1 0.122289 1.90631e-06 1.43093e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| as a result , anyone ||| 0.166667 0.031024 1.90631e-06 4.5014e-12 2.718 ||| 0-4 ||| 6 524574 +los ||| as a result of clinging to the ||| 1 0.122289 1.90631e-06 5.42822e-16 2.718 ||| 0-6 ||| 1 524574 +los ||| as a result of the ||| 0.00321957 0.122289 9.53154e-06 5.5535e-09 2.718 ||| 0-4 ||| 1553 524574 +los ||| as a result of these actions , ||| 1 0.0009297 1.90631e-06 3.90789e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| as a result of these actions ||| 0.5 0.0009297 1.90631e-06 3.27693e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| as a result of these ||| 0.0106383 0.0009297 1.90631e-06 4.69474e-13 2.718 ||| 0-0 ||| 94 524574 +los ||| as a result of this , the ||| 0.142857 0.122289 1.90631e-06 4.27926e-12 2.718 ||| 0-6 ||| 7 524574 +los ||| as a result of ||| 0.000246609 0.0009297 1.90631e-06 4.5268e-10 2.718 ||| 0-0 ||| 4055 524574 +los ||| as a result ||| 0.000145921 0.0009297 1.90631e-06 8.32683e-09 2.718 ||| 0-0 ||| 6853 524574 +los ||| as a ||| 0.000261704 0.0009297 1.71568e-05 1.58154e-05 2.718 ||| 0-0 ||| 34390 524574 +los ||| as about its ||| 1 0.0211371 1.90631e-06 3.08139e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| as all the ||| 0.00769231 0.122289 1.90631e-06 2.06842e-05 2.718 ||| 0-2 ||| 130 524574 +los ||| as all ||| 0.00289855 0.0177928 1.90631e-06 2.74325e-05 2.718 ||| 0-1 ||| 345 524574 +los ||| as also the ||| 0.05 0.122289 1.90631e-06 2.20989e-05 2.718 ||| 0-2 ||| 20 524574 +los ||| as an institution . the ||| 1 0.122289 1.90631e-06 1.60881e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| as an ||| 0.000175254 0.0009297 1.90631e-06 1.58587e-06 2.718 ||| 0-0 ||| 5706 524574 +los ||| as any subsequent cases ||| 1 0.136512 1.90631e-06 4.05824e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| as are the ||| 0.0190476 0.122289 3.81262e-06 6.64146e-05 2.718 ||| 0-2 ||| 105 524574 +los ||| as are ||| 0.00285714 0.0009297 1.90631e-06 5.41362e-06 2.718 ||| 0-0 ||| 350 524574 +los ||| as best they can ||| 0.0526316 0.0072404 1.90631e-06 3.44107e-12 2.718 ||| 0-2 ||| 19 524574 +los ||| as best they ||| 0.0769231 0.0072404 1.90631e-06 1.15694e-09 2.718 ||| 0-2 ||| 13 524574 +los ||| as citizens ||| 0.00628931 0.293572 1.90631e-06 0.000154466 2.718 ||| 0-1 ||| 159 524574 +los ||| as compatible ||| 0.142857 0.0009297 1.90631e-06 2.96144e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| as do the ||| 0.0566038 0.122289 5.71893e-06 1.50371e-05 2.718 ||| 0-2 ||| 53 524574 +los ||| as early ||| 0.00311526 0.0061936 1.90631e-06 3.4695e-07 2.718 ||| 0-1 ||| 321 524574 +los ||| as eligible ||| 0.142857 0.0541063 1.90631e-06 5.55119e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| as established in the ||| 0.0555556 0.122289 1.90631e-06 1.40258e-08 2.718 ||| 0-3 ||| 18 524574 +los ||| as estimated ||| 0.5 0.0009297 1.90631e-06 5.13792e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| as ever , the ||| 0.0714286 0.0009297 1.90631e-06 4.90837e-10 2.718 ||| 0-0 ||| 14 524574 +los ||| as ever , ||| 0.0114943 0.0009297 1.90631e-06 7.99516e-09 2.718 ||| 0-0 ||| 87 524574 +los ||| as ever ||| 0.00641026 0.0009297 1.90631e-06 6.70427e-08 2.718 ||| 0-0 ||| 156 524574 +los ||| as far as the ||| 0.000979432 0.122289 3.81262e-06 3.04942e-08 2.718 ||| 0-3 ||| 2042 524574 +los ||| as far the ||| 0.0833333 0.122289 1.90631e-06 2.98834e-06 2.718 ||| 0-2 ||| 12 524574 +los ||| as far ||| 0.000235849 0.0009297 1.90631e-06 2.43587e-07 2.718 ||| 0-0 ||| 4240 524574 +los ||| as for the ||| 0.00136519 0.122289 3.81262e-06 3.36422e-05 2.718 ||| 0-2 ||| 1465 524574 +los ||| as for ||| 0.000376932 0.0009297 1.90631e-06 2.74226e-06 2.718 ||| 0-0 ||| 2653 524574 +los ||| as free democrats ||| 0.5 0.186317 1.90631e-06 1.48015e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| as have ||| 0.0078125 0.0009297 1.90631e-06 4.26726e-06 2.718 ||| 0-0 ||| 128 524574 +los ||| as if the ||| 0.00531915 0.122289 1.90631e-06 3.65762e-06 2.718 ||| 0-2 ||| 188 524574 +los ||| as if we ||| 0.015625 0.0014565 1.90631e-06 7.42769e-09 2.718 ||| 0-2 ||| 64 524574 +los ||| as important to tackle the ||| 1 0.122289 1.90631e-06 5.41606e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| as indicative of the ||| 1 0.122289 1.90631e-06 1.54677e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| as indicators ||| 0.2 0.129229 1.90631e-06 2.3113e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| as individual ||| 0.2 0.110351 3.81262e-06 1.31157e-05 2.718 ||| 0-1 ||| 10 524574 +los ||| as individuals and ||| 0.0714286 0.143334 1.90631e-06 6.9342e-08 2.718 ||| 0-1 ||| 14 524574 +los ||| as individuals ||| 0.00952381 0.143334 1.90631e-06 5.53589e-06 2.718 ||| 0-1 ||| 105 524574 +los ||| as is the case now ||| 0.1 0.122289 1.90631e-06 3.02346e-10 2.718 ||| 0-2 ||| 10 524574 +los ||| as is the case ||| 0.0027027 0.122289 1.90631e-06 1.46777e-07 2.718 ||| 0-2 ||| 370 524574 +los ||| as is the ||| 0.00391389 0.122289 3.81262e-06 0.000137188 2.718 ||| 0-2 ||| 511 524574 +los ||| as issues ||| 0.0714286 0.0401532 1.90631e-06 1.14391e-05 2.718 ||| 0-1 ||| 14 524574 +los ||| as it comes both ||| 1 0.0002879 1.90631e-06 9.52886e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| as it comes ||| 0.0666667 0.0002879 1.90631e-06 5.7524e-10 2.718 ||| 0-1 ||| 15 524574 +los ||| as it does the ||| 0.0526316 0.122289 1.90631e-06 5.45979e-08 2.718 ||| 0-3 ||| 19 524574 +los ||| as it has been the whole ||| 1 0.122289 1.90631e-06 7.56895e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| as it has been the ||| 1 0.122289 1.90631e-06 1.33798e-09 2.718 ||| 0-4 ||| 1 524574 +los ||| as it ||| 0.000165426 0.0002879 1.90631e-06 1.43882e-06 2.718 ||| 0-1 ||| 6045 524574 +los ||| as its ||| 0.00465839 0.0211371 5.71893e-06 2.17874e-05 2.718 ||| 0-1 ||| 644 524574 +los ||| as many ||| 0.000705219 0.0029977 1.90631e-06 1.43882e-06 2.718 ||| 0-1 ||| 1418 524574 +los ||| as much as EUR ||| 0.285714 0.0176276 3.81262e-06 2.08557e-12 2.718 ||| 0-0 0-3 ||| 7 524574 +los ||| as much as ||| 0.0023015 0.0009297 3.81262e-06 3.6544e-09 2.718 ||| 0-0 ||| 869 524574 +los ||| as much those ||| 1 0.284705 1.90631e-06 1.71019e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| as much ||| 0.000976086 0.0009297 3.81262e-06 3.5812e-07 2.718 ||| 0-0 ||| 2049 524574 +los ||| as non-toxic agents ||| 1 0.226396 1.90631e-06 8.84926e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| as of ||| 0.00164474 0.0019787 1.90631e-06 3.37521e-05 2.718 ||| 0-1 ||| 608 524574 +los ||| as on the ||| 0.00699301 0.122289 1.90631e-06 2.92881e-05 2.718 ||| 0-2 ||| 143 524574 +los ||| as one of your ||| 0.0909091 0.0096341 1.90631e-06 7.12622e-10 2.718 ||| 0-3 ||| 11 524574 +los ||| as our ||| 0.00166113 0.0248369 1.90631e-06 3.64409e-05 2.718 ||| 0-1 ||| 602 524574 +los ||| as ours in ||| 0.333333 0.0009297 1.90631e-06 2.39042e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| as ours ||| 0.0588235 0.0009297 1.90631e-06 1.11678e-08 2.718 ||| 0-0 ||| 17 524574 +los ||| as part of the ||| 0.000736377 0.122289 1.90631e-06 2.83701e-07 2.718 ||| 0-3 ||| 1358 524574 +los ||| as part of their costs ||| 1 0.214442 1.90631e-06 2.12272e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| as part ||| 0.000354988 0.0009297 1.90631e-06 4.25377e-07 2.718 ||| 0-0 ||| 2817 524574 +los ||| as pension ||| 1 0.0543335 1.90631e-06 2.45008e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| as possible by the ||| 0.111111 0.122289 1.90631e-06 1.8433e-08 2.718 ||| 0-3 ||| 9 524574 +los ||| as possible the ||| 0.0117647 0.122289 1.90631e-06 3.51099e-06 2.718 ||| 0-2 ||| 85 524574 +los ||| as potential Commissioners ||| 1 0.12491 1.90631e-06 2.65706e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| as regards the ||| 0.000809553 0.122289 7.62523e-06 6.12814e-07 2.718 ||| 0-2 ||| 4941 524574 +los ||| as respecting ||| 0.2 0.000721 1.90631e-06 1.02044e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| as social ||| 0.05 0.0023647 1.90631e-06 5.41266e-08 2.718 ||| 0-0 0-1 ||| 20 524574 +los ||| as some soft ||| 1 0.0172414 1.90631e-06 1.40057e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| as soon ||| 0.00030581 0.0009297 1.90631e-06 3.28613e-08 2.718 ||| 0-0 ||| 3270 524574 +los ||| as such , the ||| 0.0126582 0.122289 1.90631e-06 1.07998e-06 2.718 ||| 0-3 ||| 79 524574 +los ||| as that country ||| 0.1 0.0009297 1.90631e-06 2.1601e-09 2.718 ||| 0-0 ||| 10 524574 +los ||| as that ||| 0.00131579 0.0009297 1.90631e-06 6.00195e-06 2.718 ||| 0-0 ||| 760 524574 +los ||| as the EU ||| 0.00598802 0.122289 1.90631e-06 2.16586e-06 2.718 ||| 0-1 ||| 167 524574 +los ||| as the European Parliament ||| 0.00364964 0.122289 1.90631e-06 8.40167e-09 2.718 ||| 0-1 ||| 274 524574 +los ||| as the European ||| 0.015873 0.122289 1.90631e-06 1.46371e-05 2.718 ||| 0-1 ||| 63 524574 +los ||| as the Group of the Party of ||| 0.333333 0.122289 1.90631e-06 3.896e-14 2.718 ||| 0-1 ||| 3 524574 +los ||| as the Group of the Party ||| 0.333333 0.122289 1.90631e-06 7.16651e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| as the Group of the ||| 0.05 0.122289 1.90631e-06 4.75233e-09 2.718 ||| 0-1 ||| 20 524574 +los ||| as the Group of ||| 0.0285714 0.122289 1.90631e-06 7.74098e-08 2.718 ||| 0-1 ||| 35 524574 +los ||| as the Group ||| 0.0238095 0.122289 1.90631e-06 1.42392e-06 2.718 ||| 0-1 ||| 42 524574 +los ||| as the prescribed ||| 1 0.122289 1.90631e-06 3.45802e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| as the range ||| 1 0.122289 1.90631e-06 3.00717e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| as the regional orders known as the ||| 1 0.0009297 1.90631e-06 2.8132e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| as the regional orders known as ||| 1 0.0009297 1.90631e-06 4.58237e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| as the regional orders known ||| 1 0.0009297 1.90631e-06 4.49058e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| as the regional orders ||| 1 0.0009297 1.90631e-06 4.07864e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| as the regional ||| 1 0.0009297 1.90631e-06 5.36663e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| as the standard ||| 0.333333 0.122289 1.90631e-06 2.06168e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| as the ||| 0.00543851 0.122289 0.00019635 0.00437724 2.718 ||| 0-1 ||| 18939 524574 +los ||| as their ||| 0.00223214 0.0123005 1.90631e-06 8.16251e-07 2.718 ||| 0-0 0-1 ||| 448 524574 +los ||| as they are ||| 0.00118906 0.0072404 1.90631e-06 1.26742e-07 2.718 ||| 0-1 ||| 841 524574 +los ||| as they could be ||| 0.111111 0.0072404 1.90631e-06 1.07651e-10 2.718 ||| 0-1 ||| 9 524574 +los ||| as they could ||| 0.0263158 0.0072404 1.90631e-06 5.94005e-09 2.718 ||| 0-1 ||| 38 524574 +los ||| as they do the ||| 0.125 0.122289 1.90631e-06 4.90812e-08 2.718 ||| 0-3 ||| 8 524574 +los ||| as they lie on the ||| 1 0.122289 1.90631e-06 3.61355e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| as they understand the ||| 1 0.122289 1.90631e-06 1.11584e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| as they ||| 0.000803213 0.0072404 3.81262e-06 8.35332e-06 2.718 ||| 0-1 ||| 2490 524574 +los ||| as things are now , ||| 0.5 0.0009297 1.90631e-06 5.46577e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| as things are now ||| 0.5 0.0009297 1.90631e-06 4.58327e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| as things are ||| 0.142857 0.0009297 1.90631e-06 2.225e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| as things ||| 0.00819672 0.0009297 1.90631e-06 1.46645e-07 2.718 ||| 0-0 ||| 122 524574 +los ||| as those which apply ||| 0.2 0.284705 1.90631e-06 2.08279e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| as those which ||| 0.0294118 0.284705 1.90631e-06 1.44739e-06 2.718 ||| 0-1 ||| 34 524574 +los ||| as those ||| 0.0189873 0.284705 2.85946e-05 0.000170389 2.718 ||| 0-1 ||| 790 524574 +los ||| as to do the ||| 1 0.122289 1.90631e-06 1.33617e-06 2.718 ||| 0-3 ||| 1 524574 +los ||| as to the legislation governing ||| 1 0.122289 1.90631e-06 6.0592e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| as to the legislation ||| 1 0.122289 1.90631e-06 3.1233e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| as to the ||| 0.00180995 0.122289 3.81262e-06 0.000388954 2.718 ||| 0-2 ||| 1105 524574 +los ||| as to their suitability ||| 1 0.0236713 1.90631e-06 3.73385e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| as to their ||| 0.0222222 0.0236713 1.90631e-06 2.07436e-06 2.718 ||| 0-2 ||| 45 524574 +los ||| as to ||| 0.000164447 0.0009297 1.90631e-06 3.17046e-05 2.718 ||| 0-0 ||| 6081 524574 +los ||| as we are all ||| 0.027027 0.0177928 1.90631e-06 4.72511e-09 2.718 ||| 0-3 ||| 37 524574 +los ||| as we ||| 0.000197746 0.0011931 1.90631e-06 3.10808e-07 2.718 ||| 0-0 0-1 ||| 5057 524574 +los ||| as well as about its ||| 1 0.0211371 1.90631e-06 4.98573e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| as well as on ||| 0.00378788 0.00081055 1.90631e-06 2.05983e-12 2.718 ||| 0-0 0-3 ||| 264 524574 +los ||| as well as the problems attached ||| 1 0.0009297 1.90631e-06 1.52201e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| as well as the problems ||| 0.0769231 0.0009297 1.90631e-06 4.7563e-14 2.718 ||| 0-0 ||| 13 524574 +los ||| as well as the ||| 0.00271278 0.122289 1.52505e-05 7.08242e-08 2.718 ||| 0-3 ||| 2949 524574 +los ||| as well as they understand the ||| 1 0.122289 1.90631e-06 1.80544e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| as well as ||| 0.000456691 0.0009297 1.14379e-05 5.77306e-09 2.718 ||| 0-0 ||| 13138 524574 +los ||| as well ||| 0.000485471 0.0009297 1.33442e-05 5.65742e-07 2.718 ||| 0-0 ||| 14419 524574 +los ||| as you gave ||| 0.5 0.0009297 1.90631e-06 9.6192e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| as you will also have - the ||| 1 0.122289 1.90631e-06 2.78473e-14 2.718 ||| 0-6 ||| 1 524574 +los ||| as you ||| 0.000264831 0.0009297 1.90631e-06 1.152e-06 2.718 ||| 0-0 ||| 3776 524574 +los ||| as ||| 0.000771761 0.0009297 0.000385074 0.0003568 2.718 ||| 0-0 ||| 261739 524574 +los ||| ashore and their carcasses could ||| 1 0.0236713 1.90631e-06 1.99694e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| ashore and their carcasses ||| 1 0.0236713 1.90631e-06 2.80824e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| ashore and their ||| 1 0.0236713 1.90631e-06 2.00589e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| aside any ||| 0.0588235 0.0178119 1.90631e-06 6.51138e-08 2.718 ||| 0-1 ||| 17 524574 +los ||| aside its proposal , as required under ||| 0.5 0.0211371 1.90631e-06 2.08294e-21 2.718 ||| 0-1 ||| 2 524574 +los ||| aside its proposal , as required ||| 0.5 0.0211371 1.90631e-06 5.80531e-18 2.718 ||| 0-1 ||| 2 524574 +los ||| aside its proposal , as ||| 0.5 0.0211371 1.90631e-06 3.65804e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| aside its proposal , ||| 0.5 0.0211371 1.90631e-06 3.58477e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| aside its proposal ||| 0.5 0.0211371 1.90631e-06 3.00598e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| aside its ||| 0.166667 0.0211371 1.90631e-06 1.50525e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| aside the ||| 0.0163043 0.122289 5.71893e-06 3.02414e-05 2.718 ||| 0-1 ||| 184 524574 +los ||| ask for the ||| 0.00840336 0.122289 1.90631e-06 4.53314e-07 2.718 ||| 0-2 ||| 119 524574 +los ||| ask the ||| 0.00105597 0.122289 3.81262e-06 5.89815e-05 2.718 ||| 0-1 ||| 1894 524574 +los ||| ask them ||| 0.00564972 0.038218 1.90631e-06 2.76732e-07 2.718 ||| 0-1 ||| 177 524574 +los ||| asked for time to consult with the ||| 1 0.122289 1.90631e-06 9.99734e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| asked the ||| 0.0013587 0.122289 1.90631e-06 3.24291e-05 2.718 ||| 0-1 ||| 736 524574 +los ||| aspects ; I would merely thank the ||| 1 0.122289 1.90631e-06 2.60588e-21 2.718 ||| 0-6 ||| 1 524574 +los ||| aspects of the ||| 0.00254777 0.122289 3.81262e-06 1.64404e-06 2.718 ||| 0-2 ||| 785 524574 +los ||| aspects of ||| 0.000514933 0.0019787 1.90631e-06 2.33186e-07 2.718 ||| 0-1 ||| 1942 524574 +los ||| aspects ||| 0.00200337 0.111303 3.62199e-05 0.0011259 2.718 ||| 0-0 ||| 9484 524574 +los ||| assassins ||| 0.0434783 0.111111 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 23 524574 +los ||| assault ||| 0.00564972 0.0227273 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 177 524574 +los ||| assaults ||| 0.0104167 0.108333 1.90631e-06 1.26e-05 2.718 ||| 0-0 ||| 96 524574 +los ||| assess the ||| 0.00441501 0.122289 7.62523e-06 6.64882e-06 2.718 ||| 0-1 ||| 906 524574 +los ||| assessing the ||| 0.00182482 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-1 ||| 548 524574 +los ||| assessment criteria ||| 0.0208333 0.0666739 1.90631e-06 2.60956e-08 2.718 ||| 0-1 ||| 48 524574 +los ||| assets is ||| 0.0833333 0.153469 1.90631e-06 6.67252e-06 2.718 ||| 0-0 ||| 12 524574 +los ||| assets ||| 0.00662252 0.153469 1.52505e-05 0.0002129 2.718 ||| 0-0 ||| 1208 524574 +los ||| assigned the ||| 0.125 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-1 ||| 8 524574 +los ||| assist the ||| 0.0108401 0.122289 7.62523e-06 8.02148e-06 2.718 ||| 0-1 ||| 369 524574 +los ||| assisting ||| 0.0185529 0.0719281 1.90631e-05 7e-05 2.718 ||| 0-0 ||| 539 524574 +los ||| associate themselves with the ||| 0.25 0.122289 1.90631e-06 7.66123e-12 2.718 ||| 0-3 ||| 4 524574 +los ||| associated with the ||| 0.0017301 0.122289 1.90631e-06 1.41262e-07 2.718 ||| 0-2 ||| 578 524574 +los ||| associated ||| 0.000450857 0.0021938 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 2218 524574 +los ||| association , the ||| 0.0714286 0.122289 1.90631e-06 8.0825e-07 2.718 ||| 0-2 ||| 14 524574 +los ||| association with other citizens ||| 0.333333 0.293572 1.90631e-06 1.98128e-12 2.718 ||| 0-3 ||| 3 524574 +los ||| assume that ours are the ||| 0.333333 0.122289 1.90631e-06 1.24392e-13 2.718 ||| 0-4 ||| 3 524574 +los ||| asylum for ||| 0.047619 0.0022644 1.90631e-06 9.68398e-08 2.718 ||| 0-0 ||| 21 524574 +los ||| asylum ||| 0.000633874 0.0022644 9.53154e-06 1.26e-05 2.718 ||| 0-0 ||| 7888 524574 +los ||| at European Councils and summits ||| 1 0.108999 1.90631e-06 4.25217e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| at European Councils and ||| 0.25 0.108999 1.90631e-06 1.46627e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| at European Councils ||| 0.166667 0.108999 1.90631e-06 1.17059e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| at Oslo ||| 0.333333 0.0057971 1.90631e-06 7.95606e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| at all the ||| 0.0113636 0.070041 1.90631e-06 4.82876e-06 2.718 ||| 0-1 0-2 ||| 88 524574 +los ||| at all ||| 0.0014752 0.0177928 1.52505e-05 1.1257e-05 2.718 ||| 0-1 ||| 5423 524574 +los ||| at any price ||| 0.00606061 0.0178119 1.90631e-06 1.97628e-10 2.718 ||| 0-1 ||| 165 524574 +los ||| at any time ||| 0.00265957 0.0178119 1.90631e-06 6.34925e-09 2.718 ||| 0-1 ||| 376 524574 +los ||| at any ||| 0.00133245 0.0178119 3.81262e-06 3.86748e-06 2.718 ||| 0-1 ||| 1501 524574 +los ||| at bargain basement prices in today 's ||| 1 0.34239 1.90631e-06 5.4794e-25 2.718 ||| 0-3 ||| 1 524574 +los ||| at bargain basement prices in today ||| 1 0.34239 1.90631e-06 2.87723e-22 2.718 ||| 0-3 ||| 1 524574 +los ||| at bargain basement prices in ||| 1 0.34239 1.90631e-06 6.37543e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| at bargain basement prices ||| 1 0.34239 1.90631e-06 2.97855e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| at both ||| 0.00214592 0.0352574 1.90631e-06 5.01567e-06 2.718 ||| 0-1 ||| 466 524574 +los ||| at enormous expenditure ||| 0.5 0.174161 1.90631e-06 1.43052e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| at every ||| 0.00402414 0.144232 3.81262e-06 1.36673e-05 2.718 ||| 0-1 ||| 497 524574 +los ||| at grassroots level ||| 0.0285714 0.0280172 1.90631e-06 4.5132e-11 2.718 ||| 0-1 ||| 35 524574 +los ||| at grassroots ||| 0.0909091 0.0280172 1.90631e-06 5.27612e-08 2.718 ||| 0-1 ||| 11 524574 +los ||| at how ||| 0.00625 0.00124 1.90631e-06 2.56688e-07 2.718 ||| 0-1 ||| 160 524574 +los ||| at least 90 % of the ||| 0.5 0.122289 1.90631e-06 2.4543e-18 2.718 ||| 0-5 ||| 2 524574 +los ||| at least be the ||| 1 0.122289 1.90631e-06 7.9884e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| at least the ||| 0.00621118 0.122289 3.81262e-06 4.4079e-07 2.718 ||| 0-2 ||| 322 524574 +los ||| at least we will avoid many cases ||| 1 0.136512 1.90631e-06 2.03569e-21 2.718 ||| 0-6 ||| 1 524574 +los ||| at national level ||| 0.00075815 0.0129851 1.90631e-06 1.53234e-09 2.718 ||| 0-1 ||| 1319 524574 +los ||| at national ||| 0.00429185 0.0129851 1.90631e-06 1.79137e-06 2.718 ||| 0-1 ||| 233 524574 +los ||| at our ||| 0.00114286 0.0248369 1.90631e-06 1.49536e-05 2.718 ||| 0-1 ||| 875 524574 +los ||| at present the ||| 0.0106383 0.122289 1.90631e-06 6.57413e-07 2.718 ||| 0-2 ||| 94 524574 +los ||| at the European ||| 0.0322581 0.122289 5.71893e-06 6.00635e-06 2.718 ||| 0-1 ||| 93 524574 +los ||| at the External Borders ||| 0.0454545 0.122289 1.90631e-06 6.51306e-14 2.718 ||| 0-1 ||| 22 524574 +los ||| at the External ||| 0.25 0.122289 1.90631e-06 4.65219e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| at the bottom of the ||| 0.0163934 0.122289 1.90631e-06 8.6326e-11 2.718 ||| 0-1 ||| 61 524574 +los ||| at the bottom of ||| 0.0208333 0.122289 1.90631e-06 1.40615e-09 2.718 ||| 0-1 ||| 48 524574 +los ||| at the bottom ||| 0.00934579 0.122289 1.90631e-06 2.58654e-08 2.718 ||| 0-1 ||| 107 524574 +los ||| at the centre ||| 0.00225225 0.122289 1.90631e-06 5.74788e-08 2.718 ||| 0-1 ||| 444 524574 +los ||| at the end of last year the ||| 0.333333 0.122289 1.90631e-06 1.42075e-16 2.718 ||| 0-6 ||| 3 524574 +los ||| at the end ||| 0.000221533 0.122289 1.90631e-06 7.81532e-07 2.718 ||| 0-1 ||| 4514 524574 +los ||| at the figures , there ||| 1 0.122289 1.90631e-06 3.02696e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| at the figures , ||| 0.25 0.122289 1.90631e-06 9.87493e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| at the figures ||| 0.0714286 0.122289 1.90631e-06 8.28054e-08 2.718 ||| 0-1 ||| 14 524574 +los ||| at the latest ||| 0.00185185 0.122289 1.90631e-06 2.90986e-08 2.718 ||| 0-1 ||| 540 524574 +los ||| at the level of ||| 0.00196464 0.122289 1.90631e-06 8.35292e-08 2.718 ||| 0-1 ||| 509 524574 +los ||| at the level ||| 0.00314961 0.122289 3.81262e-06 1.53648e-06 2.718 ||| 0-1 ||| 635 524574 +los ||| at the moment is a ||| 0.0769231 0.122289 1.90631e-06 4.50906e-10 2.718 ||| 0-1 ||| 13 524574 +los ||| at the moment is ||| 0.00632911 0.122289 1.90631e-06 1.01726e-08 2.718 ||| 0-1 ||| 158 524574 +los ||| at the moment it ||| 0.0416667 0.122289 1.90631e-06 5.77199e-09 2.718 ||| 0-1 ||| 24 524574 +los ||| at the moment ||| 0.000715649 0.122289 5.71893e-06 3.24575e-07 2.718 ||| 0-1 ||| 4192 524574 +los ||| at the rate ||| 0.0232558 0.122289 1.90631e-06 1.8034e-07 2.718 ||| 0-1 ||| 43 524574 +los ||| at the same time , ||| 0.000454959 0.122289 5.71893e-06 2.82983e-10 2.718 ||| 0-1 ||| 6594 524574 +los ||| at the same time the ||| 0.00469484 0.122289 1.90631e-06 1.45679e-10 2.718 ||| 0-4 ||| 213 524574 +los ||| at the same time with the ||| 0.2 0.122289 1.90631e-06 9.31542e-13 2.718 ||| 0-5 ||| 5 524574 +los ||| at the same time ||| 0.000392526 0.122289 9.53154e-06 2.37293e-09 2.718 ||| 0-1 ||| 12738 524574 +los ||| at the same ||| 0.000475376 0.122289 9.53154e-06 1.44541e-06 2.718 ||| 0-1 ||| 10518 524574 +los ||| at the stage ||| 0.01 0.122289 1.90631e-06 2.68893e-07 2.718 ||| 0-1 ||| 100 524574 +los ||| at the stake ||| 0.0909091 0.122289 1.90631e-06 5.42456e-08 2.718 ||| 0-1 ||| 11 524574 +los ||| at the sterling ||| 0.5 0.122289 1.90631e-06 4.49053e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| at the time in ||| 0.0833333 0.122289 1.90631e-06 6.31185e-08 2.718 ||| 0-1 ||| 12 524574 +los ||| at the time ||| 0.00177857 0.122289 7.62523e-06 2.94884e-06 2.718 ||| 0-1 ||| 2249 524574 +los ||| at the top of the agenda ||| 0.027027 0.122289 1.90631e-06 4.11345e-14 2.718 ||| 0-4 ||| 37 524574 +los ||| at the top of the ||| 0.00813008 0.122289 1.90631e-06 4.14245e-10 2.718 ||| 0-4 ||| 123 524574 +los ||| at the top of ||| 0.00549451 0.122289 1.90631e-06 6.74756e-09 2.718 ||| 0-1 ||| 182 524574 +los ||| at the top ||| 0.00297619 0.122289 1.90631e-06 1.24118e-07 2.718 ||| 0-1 ||| 336 524574 +los ||| at the very least ||| 0.00230415 0.122289 1.90631e-06 1.53373e-09 2.718 ||| 0-1 ||| 434 524574 +los ||| at the very ||| 0.00499168 0.122289 5.71893e-06 6.24992e-06 2.718 ||| 0-1 ||| 601 524574 +los ||| at the ||| 0.00330014 0.122289 0.000327885 0.00179621 2.718 ||| 0-1 ||| 52119 524574 +los ||| at their disposal ||| 0.00952381 0.0236713 3.81262e-06 8.06595e-10 2.718 ||| 0-1 ||| 210 524574 +los ||| at their ||| 0.00765697 0.0236713 9.53154e-06 9.57951e-06 2.718 ||| 0-1 ||| 653 524574 +los ||| at these levels ||| 0.166667 0.222552 1.90631e-06 8.54176e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| at this early ||| 0.037037 0.0061936 1.90631e-06 9.1992e-10 2.718 ||| 0-2 ||| 27 524574 +los ||| at this time , those ||| 1 0.284705 1.90631e-06 8.84493e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| at those ||| 0.00869565 0.284705 1.90631e-06 6.99195e-05 2.718 ||| 0-1 ||| 115 524574 +los ||| at water burning ||| 0.333333 0.0012884 1.90631e-06 2.30265e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| at water ||| 0.25 0.0012884 1.90631e-06 4.89926e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| at which the ||| 0.0215054 0.122289 3.81262e-06 1.52581e-05 2.718 ||| 0-2 ||| 93 524574 +los ||| at your ||| 0.00518135 0.0096341 1.90631e-06 1.29056e-06 2.718 ||| 0-1 ||| 193 524574 +los ||| athletes ||| 0.00819672 0.260638 1.90631e-06 4.76e-05 2.718 ||| 0-0 ||| 122 524574 +los ||| attach fundamental importance ||| 1 0.0942078 1.90631e-06 2.07871e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| attach fundamental ||| 1 0.0942078 1.90631e-06 1.60024e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| attached to ||| 0.00230947 0.0008643 1.90631e-06 8.88582e-08 2.718 ||| 0-0 ||| 433 524574 +los ||| attached ||| 0.0013624 0.0008643 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 734 524574 +los ||| attacks carried out ||| 0.1 0.154126 1.90631e-06 6.51893e-10 2.718 ||| 0-0 ||| 10 524574 +los ||| attacks carried ||| 0.5 0.154126 1.90631e-06 1.70189e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| attacks could ||| 0.166667 0.154126 1.90631e-06 4.1066e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| attacks ||| 0.00526316 0.154126 3.05009e-05 0.0005775 2.718 ||| 0-0 ||| 3040 524574 +los ||| attain the ||| 0.0111111 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-1 ||| 90 524574 +los ||| attain ||| 0.00255754 0.0024096 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 391 524574 +los ||| attaining our ||| 0.166667 0.0248369 1.90631e-06 8.92775e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| attempts to conceal what ||| 1 0.155728 1.90631e-06 2.9653e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| attempts to conceal ||| 0.2 0.155728 1.90631e-06 2.11339e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| attempts to say ||| 0.333333 0.155728 1.90631e-06 3.31145e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| attempts to strike a ||| 1 0.155728 1.90631e-06 4.91425e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| attempts to strike ||| 1 0.155728 1.90631e-06 1.10867e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| attempts to ||| 0.003 0.155728 5.71893e-06 3.46458e-05 2.718 ||| 0-0 ||| 1000 524574 +los ||| attempts ||| 0.00451213 0.155728 1.52505e-05 0.0003899 2.718 ||| 0-0 ||| 1773 524574 +los ||| attendant problems : ||| 0.5 0.106249 1.90631e-06 3.71807e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| attendant problems ||| 0.0909091 0.106249 1.90631e-06 1.10394e-08 2.718 ||| 0-1 ||| 11 524574 +los ||| attending . we need the ||| 1 0.122289 1.90631e-06 1.1631e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| attending the ||| 0.0126582 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-1 ||| 79 524574 +los ||| attention returns ||| 1 0.0556845 1.90631e-06 6.08829e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| attention the ||| 0.0178571 0.122289 1.90631e-06 0.000112086 2.718 ||| 0-1 ||| 56 524574 +los ||| attention to how the ||| 0.2 0.122289 1.90631e-06 3.56959e-09 2.718 ||| 0-3 ||| 5 524574 +los ||| attention to the fact ||| 0.00157109 0.122289 3.81262e-06 2.91752e-08 2.718 ||| 0-2 ||| 1273 524574 +los ||| attention to the ||| 0.00213675 0.122289 1.33442e-05 9.95979e-06 2.718 ||| 0-2 ||| 3276 524574 +los ||| attentive ||| 0.00526316 0.0042017 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 190 524574 +los ||| attitude of both the ||| 1 0.122289 1.90631e-06 2.01645e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| audiences ||| 0.0263158 0.0545455 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 38 524574 +los ||| auditors ||| 0.0125523 0.21345 5.71893e-06 7.1e-05 2.718 ||| 0-0 ||| 239 524574 +los ||| austerity programmes ||| 0.04 0.182745 1.90631e-06 4.98942e-09 2.718 ||| 0-1 ||| 25 524574 +los ||| authorised , and the ||| 1 0.122289 1.90631e-06 4.61349e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| authorities of the ||| 0.0123457 0.122289 3.81262e-06 1.5531e-06 2.718 ||| 0-2 ||| 162 524574 +los ||| authority of the ||| 0.00578035 0.062134 1.90631e-06 6.02997e-08 2.718 ||| 0-1 0-2 ||| 173 524574 +los ||| authors ||| 0.00277393 0.15724 3.81262e-06 0.0001351 2.718 ||| 0-0 ||| 721 524574 +los ||| automatic part ||| 0.333333 0.0080754 1.90631e-06 6.91476e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| automatic ||| 0.00814111 0.0080754 1.14379e-05 5.8e-06 2.718 ||| 0-0 ||| 737 524574 +los ||| automobiles ||| 0.0217391 0.238095 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 46 524574 +los ||| available has to ||| 1 0.0092131 1.90631e-06 4.93532e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| available has ||| 0.333333 0.0092131 1.90631e-06 5.55415e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| available resources and ||| 0.05 0.21958 1.90631e-06 1.93156e-08 2.718 ||| 0-1 ||| 20 524574 +los ||| available resources ||| 0.0060241 0.21958 1.90631e-06 1.54205e-06 2.718 ||| 0-1 ||| 166 524574 +los ||| available the ||| 0.0294118 0.122289 1.90631e-06 0.000136451 2.718 ||| 0-1 ||| 34 524574 +los ||| available to the men ||| 1 0.169465 1.90631e-06 1.93681e-08 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| available to ||| 0.000445633 0.0092131 1.90631e-06 9.5878e-06 2.718 ||| 0-0 ||| 2244 524574 +los ||| available ||| 0.0048392 0.0092131 9.15028e-05 0.0001079 2.718 ||| 0-0 ||| 9919 524574 +los ||| avoid many cases ||| 1 0.136512 1.90631e-06 2.01712e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| avoid the ||| 0.00141844 0.122289 1.90631e-06 1.51422e-05 2.718 ||| 0-1 ||| 705 524574 +los ||| avoiding the ||| 0.00591716 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-1 ||| 169 524574 +los ||| award ||| 0.00373134 0.0253623 3.81262e-06 1.36e-05 2.718 ||| 0-0 ||| 536 524574 +los ||| awarded any ||| 1 0.0178119 1.90631e-06 1.76408e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| awarding contracts ||| 0.0454545 0.245913 1.90631e-06 4.15628e-09 2.718 ||| 0-1 ||| 22 524574 +los ||| aware of the ||| 0.00266312 0.122289 1.14379e-05 3.23912e-06 2.718 ||| 0-2 ||| 2253 524574 +los ||| aware of ||| 0.000257136 0.0019787 1.90631e-06 4.59426e-07 2.718 ||| 0-1 ||| 3889 524574 +los ||| aware that the ||| 0.00189036 0.122289 1.90631e-06 1.00227e-06 2.718 ||| 0-2 ||| 529 524574 +los ||| awareness of the degree to which the ||| 1 0.122289 1.90631e-06 4.47503e-15 2.718 ||| 0-6 ||| 1 524574 +los ||| awareness of the ||| 0.00990099 0.122289 7.62523e-06 6.97261e-07 2.718 ||| 0-2 ||| 404 524574 +los ||| awareness on ||| 0.0526316 0.0006914 1.90631e-06 1.06683e-08 2.718 ||| 0-1 ||| 19 524574 +los ||| away from the ||| 0.00314465 0.122289 1.90631e-06 2.19741e-07 2.718 ||| 0-2 ||| 318 524574 +los ||| away from what is ||| 1 0.0061209 1.90631e-06 1.5392e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| away from what ||| 0.25 0.0061209 1.90631e-06 4.91112e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| away from ||| 0.00217628 0.001099 3.81262e-06 6.15523e-08 2.718 ||| 0-1 ||| 919 524574 +los ||| away in ||| 0.0238095 0.0001268 1.90631e-06 4.39296e-08 2.718 ||| 0-1 ||| 42 524574 +los ||| away the ||| 0.0410959 0.122289 5.71893e-06 0.000136451 2.718 ||| 0-1 ||| 73 524574 +los ||| away what has been ||| 1 0.0061209 1.90631e-06 5.24186e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| away what has ||| 1 0.0061209 1.90631e-06 1.56979e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| away what ||| 1 0.0061209 1.90631e-06 3.04962e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| away with the ||| 0.0114943 0.122289 1.90631e-06 8.72536e-07 2.718 ||| 0-2 ||| 87 524574 +los ||| babies ' ||| 0.111111 0.233108 1.90631e-06 2.30482e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| babies instead ||| 1 0.233108 1.90631e-06 1.35475e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| babies to adopt ||| 0.25 0.233108 1.90631e-06 6.20088e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| babies to ||| 0.1 0.233108 1.90631e-06 5.96239e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| babies ||| 0.037037 0.233108 1.52505e-05 6.71e-05 2.718 ||| 0-0 ||| 216 524574 +los ||| baby food products ||| 0.5 0.245259 1.90631e-06 2.54013e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| baby ||| 0.00668896 0.0071942 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 299 524574 +los ||| back into the ||| 0.0078125 0.122289 1.90631e-06 2.96219e-07 2.718 ||| 0-2 ||| 128 524574 +los ||| back on the founding ||| 1 0.122289 1.90631e-06 9.07316e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| back on the ||| 0.0285714 0.122289 7.62523e-06 1.93046e-06 2.718 ||| 0-2 ||| 140 524574 +los ||| back on ||| 0.0021978 0.0006914 1.90631e-06 2.39984e-07 2.718 ||| 0-1 ||| 455 524574 +los ||| back rooms ||| 0.0833333 0.0142857 1.90631e-06 3.29574e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| back the ||| 0.0273973 0.122289 1.14379e-05 0.000288516 2.718 ||| 0-1 ||| 219 524574 +los ||| back their ||| 0.047619 0.0236713 1.90631e-06 1.53871e-06 2.718 ||| 0-1 ||| 21 524574 +los ||| back to me the ||| 1 0.122289 1.90631e-06 1.5436e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| back to the beginning and ||| 1 0.122289 1.90631e-06 1.30699e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| back to the beginning ||| 0.333333 0.122289 1.90631e-06 1.04343e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| back to the early ||| 0.142857 0.122289 1.90631e-06 1.73563e-09 2.718 ||| 0-2 ||| 7 524574 +los ||| back to the ||| 0.00513699 0.122289 5.71893e-06 2.5637e-05 2.718 ||| 0-2 ||| 584 524574 +los ||| backed by the ||| 0.0102041 0.122289 1.90631e-06 2.58987e-08 2.718 ||| 0-2 ||| 98 524574 +los ||| background of problems of one ' ||| 1 0.0444479 1.90631e-06 2.339e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| backing the ||| 0.015873 0.122289 1.90631e-06 7.24936e-06 2.718 ||| 0-1 ||| 63 524574 +los ||| backroom ||| 0.047619 0.05 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| bad as ||| 0.0175439 0.0011154 1.90631e-06 3.97972e-08 2.718 ||| 0-0 ||| 57 524574 +los ||| bad ||| 0.000617093 0.0011154 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 3241 524574 +los ||| badly affected than the ||| 1 0.122289 1.90631e-06 1.25678e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| balance between available resources and ||| 1 0.21958 1.90631e-06 2.75155e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| balance between available resources ||| 1 0.21958 1.90631e-06 2.19669e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| balance by ||| 0.0625 0.0062464 1.90631e-06 8.74692e-08 2.718 ||| 0-1 ||| 16 524574 +los ||| balance in all the ||| 1 0.122289 1.90631e-06 2.34288e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| balance in the name ||| 1 0.122289 1.90631e-06 4.33335e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| balance in the ||| 0.00980392 0.122289 1.90631e-06 4.95806e-07 2.718 ||| 0-2 ||| 102 524574 +los ||| balances ||| 0.00240964 0.109091 1.90631e-06 5.83e-05 2.718 ||| 0-0 ||| 415 524574 +los ||| balancing the ||| 0.0147059 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-1 ||| 68 524574 +los ||| banana trees were ||| 1 0.0411227 1.90631e-06 6.69858e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| banana trees ||| 0.5 0.0411227 1.90631e-06 3.7393e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| banana ||| 0.00517464 0.0411227 7.62523e-06 6.13e-05 2.718 ||| 0-0 ||| 773 524574 +los ||| bananas ||| 0.00331492 0.195935 5.71893e-06 0.0002343 2.718 ||| 0-0 ||| 905 524574 +los ||| bank ||| 0.00349854 0.0202952 1.14379e-05 3.21e-05 2.718 ||| 0-0 ||| 1715 524574 +los ||| banking system ||| 0.0047619 0.0027586 1.90631e-06 1.08771e-09 2.718 ||| 0-0 ||| 210 524574 +los ||| banking ||| 0.000618429 0.0027586 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 1617 524574 +los ||| banknote ||| 0.04 0.047619 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 25 524574 +los ||| banks ' ||| 0.0232558 0.157909 1.90631e-06 5.82825e-06 2.718 ||| 0-0 0-1 ||| 43 524574 +los ||| banks ||| 0.00298507 0.27137 1.90631e-05 0.0010957 2.718 ||| 0-0 ||| 3350 524574 +los ||| bar the ||| 0.142857 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-1 ||| 7 524574 +los ||| barcodes ||| 0.0666667 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| bargain basement prices in today 's Europe ||| 1 0.34239 1.90631e-06 6.62124e-26 2.718 ||| 0-2 ||| 1 524574 +los ||| bargain basement prices in today 's ||| 1 0.34239 1.90631e-06 1.30855e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| bargain basement prices in today ||| 1 0.34239 1.90631e-06 6.87117e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| bargain basement prices in ||| 1 0.34239 1.90631e-06 1.52253e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| bargain basement prices ||| 1 0.34239 1.90631e-06 7.11312e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| barriers ||| 0.000411184 0.0459375 1.90631e-06 0.0001429 2.718 ||| 0-0 ||| 2432 524574 +los ||| base the selection ||| 1 0.122289 1.90631e-06 8.40926e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| base the ||| 0.0740741 0.122289 3.81262e-06 1.44987e-05 2.718 ||| 0-1 ||| 27 524574 +los ||| base their ||| 0.0217391 0.0236713 1.90631e-06 7.73243e-08 2.718 ||| 0-1 ||| 46 524574 +los ||| based on the ||| 0.00030003 0.122289 1.90631e-06 6.73336e-07 2.718 ||| 0-2 ||| 3333 524574 +los ||| based on ||| 0.000234962 0.0006914 5.71893e-06 8.37053e-08 2.718 ||| 0-1 ||| 12768 524574 +los ||| basement prices in today 's Europe ||| 1 0.34239 1.90631e-06 2.28319e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| basement prices in today 's ||| 1 0.34239 1.90631e-06 4.51222e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| basement prices in today ||| 1 0.34239 1.90631e-06 2.36937e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| basement prices in ||| 1 0.34239 1.90631e-06 5.2501e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| basement prices ||| 1 0.34239 1.90631e-06 2.4528e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| basic Community legislation ||| 0.166667 0.0059008 1.90631e-06 5.94126e-13 2.718 ||| 0-0 ||| 6 524574 +los ||| basic Community ||| 0.0909091 0.0059008 1.90631e-06 7.39883e-09 2.718 ||| 0-0 ||| 11 524574 +los ||| basic rules , the ||| 1 0.122289 1.90631e-06 3.20988e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| basic ||| 0.00325203 0.0059008 5.33766e-05 4.57e-05 2.718 ||| 0-0 ||| 8610 524574 +los ||| basis , and between the ||| 1 0.122289 1.90631e-06 1.00372e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| basis , by the ||| 0.5 0.122289 1.90631e-06 1.59476e-07 2.718 ||| 0-3 ||| 2 524574 +los ||| basis of the ||| 0.00143954 0.122289 5.71893e-06 1.38473e-05 2.718 ||| 0-2 ||| 2084 524574 +los ||| basis of ||| 0.000143082 0.0019787 1.90631e-06 1.96405e-06 2.718 ||| 0-1 ||| 6989 524574 +los ||| basis with the intention ||| 1 0.122289 1.90631e-06 9.20255e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| basis with the ||| 0.166667 0.122289 1.90631e-06 1.62877e-06 2.718 ||| 0-2 ||| 6 524574 +los ||| be ' clean ||| 1 0.0444479 1.90631e-06 1.90871e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| be ' the ||| 0.125 0.122289 1.90631e-06 2.67027e-05 2.718 ||| 0-2 ||| 8 524574 +los ||| be ' ||| 0.00680272 0.0444479 1.90631e-06 9.63993e-05 2.718 ||| 0-1 ||| 147 524574 +los ||| be , irradiated ||| 1 0.039604 1.90631e-06 8.42884e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| be - of the ||| 1 0.122289 1.90631e-06 1.59417e-06 2.718 ||| 0-3 ||| 1 524574 +los ||| be - the ||| 0.1 0.122289 1.90631e-06 2.9324e-05 2.718 ||| 0-2 ||| 10 524574 +los ||| be Serfs ||| 1 1 1.90631e-06 1.81229e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| be a familiar concept to those in ||| 1 0.284705 1.90631e-06 2.34887e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| be a familiar concept to those ||| 1 0.284705 1.90631e-06 1.09737e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| be a source of knowledge for ||| 1 0.0139626 3.81262e-06 3.57654e-16 2.718 ||| 0-4 0-5 ||| 2 524574 +los ||| be a victory for the ||| 0.5 0.122289 1.90631e-06 1.53606e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| be able to achieve our prime objective ||| 1 0.0248369 1.90631e-06 1.10828e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| be able to achieve our prime ||| 1 0.0248369 1.90631e-06 1.65663e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| be able to achieve our ||| 0.333333 0.0248369 1.90631e-06 1.0971e-12 2.718 ||| 0-4 ||| 3 524574 +los ||| be able to draw on the ||| 0.2 0.122289 1.90631e-06 4.56894e-13 2.718 ||| 0-5 ||| 5 524574 +los ||| be able to draw up ||| 0.25 0.0031618 1.90631e-06 3.37479e-14 2.718 ||| 0-4 ||| 4 524574 +los ||| be able to enjoy the ||| 0.111111 0.122289 1.90631e-06 2.24348e-11 2.718 ||| 0-4 ||| 9 524574 +los ||| be able to predict what sort of ||| 1 0.0061209 1.90631e-06 2.4635e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| be able to predict what sort ||| 1 0.0061209 1.90631e-06 4.5315e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| be able to predict what ||| 1 0.0061209 1.90631e-06 2.83573e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| be able to regard the ||| 1 0.122289 1.90631e-06 3.92696e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| be able to rely on everyone ||| 0.333333 0.080245 1.90631e-06 1.8375e-16 2.718 ||| 0-5 ||| 3 524574 +los ||| be able to take the ||| 0.0666667 0.122289 1.90631e-06 9.28536e-10 2.718 ||| 0-4 ||| 15 524574 +los ||| be achieved by the ||| 0.0555556 0.0642678 1.90631e-06 2.10668e-09 2.718 ||| 0-2 0-3 ||| 18 524574 +los ||| be advancing ||| 0.0769231 0.0127226 1.90631e-06 8.88022e-08 2.718 ||| 0-1 ||| 13 524574 +los ||| be all the more acceptable ||| 1 0.122289 1.90631e-06 2.71809e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| be all the more ||| 0.0666667 0.122289 1.90631e-06 8.38916e-08 2.718 ||| 0-2 ||| 15 524574 +los ||| be all the ||| 0.047619 0.122289 1.90631e-06 3.67349e-05 2.718 ||| 0-2 ||| 21 524574 +los ||| be among those ||| 0.0714286 0.152463 1.90631e-06 6.59082e-08 2.718 ||| 0-1 0-2 ||| 14 524574 +los ||| be amongst ||| 0.0909091 0.013643 1.90631e-06 8.28217e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| be an ||| 0.000394477 5.52e-05 1.90631e-06 1.59482e-07 2.718 ||| 0-1 ||| 2535 524574 +los ||| be any ||| 0.00373134 0.0178119 1.90631e-06 1.67383e-05 2.718 ||| 0-1 ||| 268 524574 +los ||| be at the ||| 0.00262467 0.122289 1.90631e-06 3.25526e-05 2.718 ||| 0-2 ||| 381 524574 +los ||| be authorised , and the ||| 1 0.122289 1.90631e-06 8.36099e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| be available has to ||| 1 0.0092131 1.90631e-06 8.94423e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| be available has ||| 1 0.0092131 1.90631e-06 1.00657e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| be available ||| 0.00236967 0.0092131 1.90631e-06 1.95546e-06 2.718 ||| 0-1 ||| 422 524574 +los ||| be aware of the ||| 0.00485437 0.122289 1.90631e-06 5.87022e-08 2.718 ||| 0-3 ||| 206 524574 +los ||| be aware that the ||| 0.0070922 0.122289 1.90631e-06 1.81639e-08 2.718 ||| 0-3 ||| 141 524574 +los ||| be blamed on the ||| 0.2 0.122289 1.90631e-06 1.14434e-10 2.718 ||| 0-3 ||| 5 524574 +los ||| be blind in one ||| 1 0.103393 1.90631e-06 2.01132e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| be blind in ||| 1 0.103393 3.81262e-06 4.82562e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| be blind ||| 0.117647 0.103393 3.81262e-06 2.25449e-06 2.718 ||| 0-1 ||| 17 524574 +los ||| be both ||| 0.0217391 0.0352574 3.81262e-06 2.17076e-05 2.718 ||| 0-1 ||| 92 524574 +los ||| be brought to bear on the ||| 0.2 0.122289 1.90631e-06 1.93735e-13 2.718 ||| 0-5 ||| 5 524574 +los ||| be carried out ||| 0.00109051 0.000641 1.90631e-06 2.23246e-10 2.718 ||| 0-2 ||| 917 524574 +los ||| be coming in and a ||| 1 0.0093772 1.90631e-06 1.4021e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| be coming in and ||| 1 0.0093772 1.90631e-06 3.16317e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| be coming in ||| 0.5 0.0093772 1.90631e-06 2.5253e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| be coming ||| 0.0625 0.0093772 1.90631e-06 1.1798e-06 2.718 ||| 0-1 ||| 16 524574 +los ||| be demonstrators ||| 1 0.221782 1.90631e-06 1.97358e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| be developed hand ||| 1 0.005811 1.90631e-06 2.37908e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| be developed ||| 0.00326797 0.005811 3.81262e-06 5.99868e-07 2.718 ||| 0-1 ||| 612 524574 +los ||| be developing ||| 0.05 0.150762 1.90631e-06 6.45248e-05 2.718 ||| 0-1 ||| 20 524574 +los ||| be discussing structural problems instead ; the ||| 1 0.122289 1.90631e-06 3.54966e-23 2.718 ||| 0-6 ||| 1 524574 +los ||| be drawn up , ||| 0.125 0.0031618 1.90631e-06 6.51078e-11 2.718 ||| 0-2 ||| 8 524574 +los ||| be drawn up ||| 0.00346021 0.0031618 1.90631e-06 5.45956e-10 2.718 ||| 0-2 ||| 289 524574 +los ||| be earned honestly by small specialists ||| 0.5 0.173824 1.90631e-06 1.55846e-23 2.718 ||| 0-5 ||| 2 524574 +los ||| be eligible for ||| 0.0192308 0.0541063 1.90631e-06 7.57722e-09 2.718 ||| 0-1 ||| 52 524574 +los ||| be eligible ||| 0.0142857 0.0541063 1.90631e-06 9.85886e-07 2.718 ||| 0-1 ||| 70 524574 +los ||| be ensured of the ||| 1 0.122289 1.90631e-06 6.08576e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| be essential elements ||| 0.25 0.031908 1.90631e-06 2.33079e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| be fleshed out ||| 0.047619 0.000641 1.90631e-06 1.89384e-12 2.718 ||| 0-2 ||| 21 524574 +los ||| be found within the ||| 0.166667 0.122289 1.90631e-06 3.55666e-10 2.718 ||| 0-3 ||| 6 524574 +los ||| be given to the arrangements ||| 1 0.0717439 1.90631e-06 1.71525e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| be given to the ||| 0.0258621 0.122289 5.71893e-06 4.74081e-07 2.718 ||| 0-3 ||| 116 524574 +los ||| be giving their ||| 1 0.0236713 1.90631e-06 6.53406e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| be heard at all ||| 0.333333 0.0177928 1.90631e-06 1.61575e-11 2.718 ||| 0-3 ||| 3 524574 +los ||| be heard by the ||| 0.142857 0.122289 1.90631e-06 3.23246e-09 2.718 ||| 0-3 ||| 7 524574 +los ||| be implemented under the ||| 0.2 0.122289 1.90631e-06 2.44899e-10 2.718 ||| 0-3 ||| 5 524574 +los ||| be imported ||| 0.0166667 0.0411462 1.90631e-06 9.85886e-07 2.718 ||| 0-1 ||| 60 524574 +los ||| be in a minority but ||| 1 0.0754204 1.90631e-06 3.48409e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| be in a minority ||| 1 0.0754204 1.90631e-06 5.09817e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| be in the business of helping ||| 1 0.122289 1.90631e-06 4.27082e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| be in the business of ||| 0.5 0.122289 1.90631e-06 1.12985e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| be in the business ||| 0.5 0.122289 1.90631e-06 2.0783e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| be in the ||| 0.00511509 0.122289 3.81262e-06 0.000166397 2.718 ||| 0-2 ||| 391 524574 +los ||| be in these ||| 0.25 0.0240362 1.90631e-06 9.45535e-07 2.718 ||| 0-2 ||| 4 524574 +los ||| be introduced in ||| 0.0181818 0.0001268 1.90631e-06 2.31506e-10 2.718 ||| 0-2 ||| 55 524574 +los ||| be introduced into the ||| 0.0833333 0.122289 1.90631e-06 7.38288e-10 2.718 ||| 0-3 ||| 12 524574 +los ||| be its ||| 0.015873 0.0211371 1.90631e-06 3.86942e-05 2.718 ||| 0-1 ||| 63 524574 +los ||| be job machines ||| 0.333333 0.0131926 1.90631e-06 6.93545e-12 2.718 ||| 0-2 ||| 3 524574 +los ||| be killed by ||| 0.0909091 0.0062464 1.90631e-06 6.9866e-10 2.718 ||| 0-2 ||| 11 524574 +los ||| be left to the national ||| 1 0.122289 1.90631e-06 1.67677e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| be left to the ||| 0.0119048 0.122289 1.90631e-06 1.30488e-07 2.718 ||| 0-3 ||| 84 524574 +los ||| be linked to the salaries of members ||| 1 0.122289 1.90631e-06 8.31534e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| be linked to the salaries of ||| 1 0.122289 1.90631e-06 5.63752e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| be linked to the salaries ||| 1 0.122289 1.90631e-06 1.037e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| be linked to the ||| 0.0169492 0.122289 1.90631e-06 2.88054e-08 2.718 ||| 0-3 ||| 59 524574 +los ||| be linked with those ||| 1 0.284705 1.90631e-06 8.06909e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| be made at European Councils and summits ||| 1 0.108999 1.90631e-06 1.61429e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| be made at European Councils and ||| 1 0.108999 1.90631e-06 5.56651e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| be made at European Councils ||| 1 0.108999 1.90631e-06 4.444e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| be made in the ||| 0.0285714 0.122289 3.81262e-06 3.48569e-07 2.718 ||| 0-3 ||| 70 524574 +los ||| be mentioned , and that is the ||| 1 0.122289 1.90631e-06 5.41814e-13 2.718 ||| 0-6 ||| 1 524574 +los ||| be met by operators of a ||| 1 0.0062464 1.90631e-06 7.05336e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| be met by operators of ||| 1 0.0062464 1.90631e-06 1.59125e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| be met by operators ||| 1 0.0062464 1.90631e-06 2.92703e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| be met by the ||| 0.0909091 0.0642678 3.81262e-06 9.65823e-10 2.718 ||| 0-2 0-3 ||| 22 524574 +los ||| be met by ||| 0.0135135 0.0062464 1.90631e-06 2.25156e-09 2.718 ||| 0-2 ||| 74 524574 +los ||| be of benefit to the ||| 0.111111 0.122289 1.90631e-06 4.94579e-09 2.718 ||| 0-4 ||| 9 524574 +los ||| be of interest ||| 0.0333333 0.0023774 1.90631e-06 2.87688e-08 2.718 ||| 0-2 ||| 30 524574 +los ||| be on the ||| 0.00374532 0.122289 1.90631e-06 5.20154e-05 2.718 ||| 0-2 ||| 267 524574 +los ||| be our task to ensure ||| 0.333333 0.0248369 1.90631e-06 3.2491e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| be our task to ||| 0.25 0.0248369 1.90631e-06 7.24599e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| be our task ||| 0.125 0.0248369 1.90631e-06 8.15455e-09 2.718 ||| 0-1 ||| 8 524574 +los ||| be our ||| 0.00234742 0.0248369 1.90631e-06 6.47187e-05 2.718 ||| 0-1 ||| 426 524574 +los ||| be paid to the ||| 0.047619 0.122289 1.90631e-06 9.29787e-08 2.718 ||| 0-3 ||| 21 524574 +los ||| be part of the ||| 0.00534759 0.122289 1.90631e-06 5.0385e-07 2.718 ||| 0-3 ||| 187 524574 +los ||| be passed on to the ||| 0.0714286 0.122289 1.90631e-06 3.30935e-10 2.718 ||| 0-4 ||| 14 524574 +los ||| be patient ||| 0.0208333 0.135371 1.90631e-06 3.82393e-06 2.718 ||| 0-1 ||| 48 524574 +los ||| be placed at the top of ||| 0.25 0.122289 1.90631e-06 1.53101e-14 2.718 ||| 0-3 ||| 4 524574 +los ||| be placed at the top ||| 0.25 0.122289 1.90631e-06 2.81623e-13 2.718 ||| 0-3 ||| 4 524574 +los ||| be placed at the ||| 0.0714286 0.122289 1.90631e-06 4.07558e-09 2.718 ||| 0-3 ||| 14 524574 +los ||| be possible for fish ||| 1 0.0906807 1.90631e-06 3.92145e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| be possible for the ||| 0.0363636 0.122289 3.81262e-06 4.7924e-08 2.718 ||| 0-3 ||| 55 524574 +los ||| be possible to increase the ||| 0.5 0.122289 1.90631e-06 7.15862e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| be possible ||| 0.000702247 0.0019339 1.90631e-06 1.28673e-06 2.718 ||| 0-1 ||| 1424 524574 +los ||| be preventing ||| 0.1 0.0027894 1.90631e-06 1.41359e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| be producing the ||| 1 0.122289 1.90631e-06 2.60427e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| be protected ||| 0.00152905 0.0032727 1.90631e-06 1.59482e-07 2.718 ||| 0-1 ||| 654 524574 +los ||| be ratified by the national parliaments . ||| 0.5 0.269224 1.90631e-06 2.69152e-20 2.718 ||| 0-5 ||| 2 524574 +los ||| be ratified by the national parliaments ||| 0.2 0.269224 1.90631e-06 8.88582e-18 2.718 ||| 0-5 ||| 5 524574 +los ||| be receiving ||| 0.030303 0.0071708 1.90631e-06 1.93915e-07 2.718 ||| 0-1 ||| 33 524574 +los ||| be reduced ||| 0.00137363 0.0018067 1.90631e-06 1.41359e-07 2.718 ||| 0-1 ||| 728 524574 +los ||| be regulations ||| 0.166667 0.0587004 1.90631e-06 9.88423e-06 2.718 ||| 0-1 ||| 6 524574 +los ||| be resolved without delay . the ||| 1 0.122289 1.90631e-06 4.21868e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| be responsible adults ||| 1 0.304716 1.90631e-06 6.56692e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| be ruled by traders ||| 0.5 0.345201 1.90631e-06 2.5166e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| be safeguarded for ||| 0.125 0.0015353 1.90631e-06 1.37435e-10 2.718 ||| 0-2 ||| 8 524574 +los ||| be saving will die in the next ||| 1 0.122289 1.90631e-06 9.91855e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| be saving will die in the ||| 1 0.122289 1.90631e-06 9.6017e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| be seen in the ||| 0.00757576 0.122289 1.90631e-06 3.50266e-08 2.718 ||| 0-3 ||| 132 524574 +los ||| be sending out the wrong signal ||| 0.333333 0.122289 1.90631e-06 9.09544e-19 2.718 ||| 0-3 ||| 3 524574 +los ||| be sending out the wrong ||| 0.5 0.122289 1.90631e-06 3.82161e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| be sending out the ||| 0.333333 0.122289 1.90631e-06 6.84877e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| be set up along the lines ||| 1 0.122289 1.90631e-06 2.4604e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| be set up along the ||| 1 0.122289 1.90631e-06 2.70374e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| be some of the ||| 0.25 0.122289 1.90631e-06 4.60362e-07 2.718 ||| 0-3 ||| 4 524574 +los ||| be specified ||| 0.0196078 0.0205811 1.90631e-06 2.99028e-07 2.718 ||| 0-1 ||| 51 524574 +los ||| be stuck with the ||| 1 0.122289 1.90631e-06 5.02075e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| be taken down the ||| 0.5 0.122289 1.90631e-06 4.94669e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| be taken following the ||| 0.125 0.122289 1.90631e-06 9.05583e-10 2.718 ||| 0-3 ||| 8 524574 +los ||| be taken from children under the ||| 1 0.122289 1.90631e-06 3.05028e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| be termed the ||| 0.111111 0.122289 1.90631e-06 6.99654e-08 2.718 ||| 0-2 ||| 9 524574 +los ||| be that the total expenditure ||| 0.5 0.122289 1.90631e-06 3.72415e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| be that the total ||| 0.5 0.122289 1.90631e-06 1.23316e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| be that the ||| 0.0134228 0.122289 3.81262e-06 0.00013077 2.718 ||| 0-2 ||| 149 524574 +los ||| be that those ||| 1 0.284705 1.90631e-06 5.09037e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| be the Council that ||| 0.5 0.122289 1.90631e-06 4.52203e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| be the Council ||| 0.0769231 0.122289 1.90631e-06 2.68823e-06 2.718 ||| 0-1 ||| 13 524574 +los ||| be the availability ||| 0.5 0.122289 1.90631e-06 5.28627e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| be the case that ||| 0.0227273 0.122289 3.81262e-06 1.39911e-07 2.718 ||| 0-1 ||| 88 524574 +los ||| be the case ||| 0.0094697 0.122289 9.53154e-06 8.31733e-06 2.718 ||| 0-1 ||| 528 524574 +los ||| be the idea ||| 0.5 0.122289 1.90631e-06 1.74292e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| be the ones ||| 0.111111 0.122289 3.81262e-06 1.71804e-06 2.718 ||| 0-1 ||| 18 524574 +los ||| be the only ||| 0.00617284 0.122289 1.90631e-06 8.65316e-06 2.718 ||| 0-1 ||| 162 524574 +los ||| be the reverse ||| 0.333333 0.122289 1.90631e-06 7.54071e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| be the scene ||| 0.25 0.122289 1.90631e-06 1.01061e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| be the scope ||| 0.5 0.122289 1.90631e-06 7.75061e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| be the subject ||| 0.00558659 0.122289 1.90631e-06 4.19637e-06 2.718 ||| 0-1 ||| 179 524574 +los ||| be the trainees ' superiors ||| 1 0.0444479 1.90631e-06 1.65708e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| be the trainees ' ||| 1 0.0444479 1.90631e-06 2.36725e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| be the ||| 0.0137261 0.122289 0.000156317 0.00777393 2.718 ||| 0-1 ||| 5974 524574 +los ||| be they ||| 0.00321543 0.0072404 1.90631e-06 1.48354e-05 2.718 ||| 0-1 ||| 311 524574 +los ||| be those ||| 0.0294118 0.284705 1.90631e-06 0.000302609 2.718 ||| 0-1 ||| 34 524574 +los ||| be to the detriment ||| 0.0322581 0.122289 1.90631e-06 6.70054e-09 2.718 ||| 0-2 ||| 31 524574 +los ||| be to the ||| 0.0128205 0.122289 1.90631e-06 0.000690778 2.718 ||| 0-2 ||| 78 524574 +los ||| be triggered by ||| 0.333333 0.0062464 1.90631e-06 1.26229e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| be turned against each other and ||| 0.5 0.0497499 1.90631e-06 3.4637e-18 2.718 ||| 0-3 ||| 2 524574 +los ||| be turned against each other ||| 0.5 0.0497499 1.90631e-06 2.76523e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| be turned against each ||| 0.5 0.0497499 1.90631e-06 2.13449e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| be unacceptable to the ||| 0.25 0.122289 1.90631e-06 1.66477e-08 2.718 ||| 0-3 ||| 4 524574 +los ||| be undertaken , as is the case ||| 1 0.122289 1.90631e-06 1.5068e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| be undertaken , as is the ||| 1 0.122289 1.90631e-06 1.40835e-11 2.718 ||| 0-5 ||| 1 524574 +los ||| be up to EUR ||| 1 0.0343255 1.90631e-06 3.13438e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| be up to each ||| 0.111111 0.0497499 1.90631e-06 4.83255e-09 2.718 ||| 0-3 ||| 9 524574 +los ||| be up to the ||| 0.0163934 0.122289 1.90631e-06 2.3559e-06 2.718 ||| 0-3 ||| 61 524574 +los ||| be up to ||| 0.019802 0.0031618 3.81262e-06 3.41398e-07 2.718 ||| 0-1 ||| 101 524574 +los ||| be up ||| 0.0258621 0.0031618 5.71893e-06 3.84205e-06 2.718 ||| 0-1 ||| 116 524574 +los ||| be used to top up the ||| 1 0.122289 1.90631e-06 6.9838e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| be verified as compatible ||| 0.5 0.0009297 1.90631e-06 1.34175e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| be verified as ||| 0.5 0.0009297 1.90631e-06 1.61656e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| be working out the ||| 1 0.122289 1.90631e-06 5.66959e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| be ||| 5.65989e-06 1.06e-05 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 176682 524574 +los ||| bear in mind the ||| 0.00571429 0.122289 1.90631e-06 3.46233e-10 2.718 ||| 0-3 ||| 175 524574 +los ||| bear on the ||| 0.0169492 0.122289 1.90631e-06 4.29661e-07 2.718 ||| 0-2 ||| 59 524574 +los ||| bear the ||| 0.0245098 0.122289 1.90631e-05 6.42148e-05 2.718 ||| 0-1 ||| 408 524574 +los ||| bear them in ||| 0.125 0.038218 1.90631e-06 6.44888e-09 2.718 ||| 0-1 ||| 8 524574 +los ||| bear them ||| 0.0769231 0.038218 1.90631e-06 3.01286e-07 2.718 ||| 0-1 ||| 13 524574 +los ||| bear ||| 0.000374252 0.0002311 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2672 524574 +los ||| bearing the ||| 0.0614035 0.122289 1.33442e-05 1.91315e-05 2.718 ||| 0-1 ||| 114 524574 +los ||| beat our ||| 0.5 0.0248369 1.90631e-06 1.14275e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| beats the drum of every kind ||| 0.25 0.122289 1.90631e-06 5.1843e-22 2.718 ||| 0-1 ||| 4 524574 +los ||| beats the drum of every ||| 0.25 0.122289 1.90631e-06 1.06236e-18 2.718 ||| 0-1 ||| 4 524574 +los ||| beats the drum of ||| 0.25 0.122289 1.90631e-06 6.52954e-15 2.718 ||| 0-1 ||| 4 524574 +los ||| beats the drum ||| 0.25 0.122289 1.90631e-06 1.20108e-13 2.718 ||| 0-1 ||| 4 524574 +los ||| beats the ||| 0.142857 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| because of the ||| 0.000589102 0.122289 3.81262e-06 7.66288e-06 2.718 ||| 0-2 ||| 3395 524574 +los ||| because the US was ||| 0.5 0.122289 1.90631e-06 1.8901e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| because the US ||| 0.0833333 0.122289 1.90631e-06 6.03288e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| because the ||| 0.00154659 0.122289 2.28757e-05 0.000140955 2.718 ||| 0-1 ||| 7759 524574 +los ||| because their ||| 0.004329 0.0236713 1.90631e-06 7.51738e-07 2.718 ||| 0-1 ||| 231 524574 +los ||| because these were the ||| 0.25 0.122289 1.90631e-06 2.61875e-10 2.718 ||| 0-3 ||| 4 524574 +los ||| because we entered the ||| 0.5 0.122289 1.90631e-06 5.12052e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| become an adult ||| 0.333333 0.049505 1.90631e-06 3.70796e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| become more acute ||| 0.111111 0.0049587 1.90631e-06 1.89211e-12 2.718 ||| 0-2 ||| 9 524574 +los ||| become more aware of the ||| 0.142857 0.122289 1.90631e-06 2.11337e-12 2.718 ||| 0-4 ||| 7 524574 +los ||| become the ||| 0.00116414 0.122289 1.90631e-06 0.000122553 2.718 ||| 0-1 ||| 859 524574 +los ||| becoming increasingly acute ||| 0.5 0.0049587 1.90631e-06 1.71884e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| becoming the ||| 0.00584795 0.122289 1.90631e-06 4.41396e-05 2.718 ||| 0-1 ||| 171 524574 +los ||| bed with the ||| 0.333333 0.122289 1.90631e-06 8.77748e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| beefbased ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| beekeepers ||| 0.00793651 0.324468 1.90631e-06 5.93e-05 2.718 ||| 0-0 ||| 126 524574 +los ||| been a single ||| 0.2 0.0083277 1.90631e-06 1.58226e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| been appointed ; the ||| 1 0.122289 1.90631e-06 4.94111e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| been approached by members of the public ||| 0.5 0.122289 1.90631e-06 1.05243e-19 2.718 ||| 0-5 ||| 2 524574 +los ||| been approached by members of the ||| 0.5 0.122289 1.90631e-06 6.51254e-16 2.718 ||| 0-5 ||| 2 524574 +los ||| been because the ||| 0.5 0.122289 1.90631e-06 4.70677e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| been compulsory ||| 0.333333 0.011889 1.90631e-06 8.7821e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| been described as the ||| 0.333333 0.122289 1.90631e-06 6.51895e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| been doing over the ||| 0.142857 0.122289 1.90631e-06 2.53184e-10 2.718 ||| 0-3 ||| 7 524574 +los ||| been doing the rounds ||| 0.333333 0.122289 1.90631e-06 2.62912e-12 2.718 ||| 0-2 ||| 3 524574 +los ||| been doing the ||| 0.125 0.122289 1.90631e-06 5.25823e-07 2.718 ||| 0-2 ||| 8 524574 +los ||| been done through the ||| 0.5 0.122289 1.90631e-06 3.0065e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| been following the ||| 0.0277778 0.122289 1.90631e-06 1.83057e-07 2.718 ||| 0-2 ||| 36 524574 +los ||| been illustrated in the ||| 1 0.122289 1.90631e-06 1.44098e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| been little in the way of compliance ||| 1 0.122289 1.90631e-06 1.33787e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| been little in the way of ||| 1 0.122289 1.90631e-06 5.81684e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| been little in the way ||| 1 0.122289 1.90631e-06 1.06998e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| been little in the ||| 1 0.122289 1.90631e-06 4.96372e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| been made in the ||| 0.0384615 0.122289 1.90631e-06 6.42249e-08 2.718 ||| 0-3 ||| 26 524574 +los ||| been made to the ||| 0.0769231 0.122289 1.90631e-06 2.66622e-07 2.718 ||| 0-3 ||| 13 524574 +los ||| been many ||| 0.0114943 0.0029977 1.90631e-06 4.70827e-07 2.718 ||| 0-1 ||| 87 524574 +los ||| been performing at the ||| 0.5 0.122289 1.90631e-06 4.73835e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| been preceded by the ||| 1 0.122289 1.90631e-06 1.65442e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| been provided by the ||| 0.333333 0.122289 1.90631e-06 1.7236e-09 2.718 ||| 0-3 ||| 3 524574 +los ||| been quite shameless in the profits they ||| 1 0.159219 1.90631e-06 1.39543e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| been quite shameless in the profits ||| 1 0.159219 1.90631e-06 4.2752e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| been reported ||| 0.0277778 0.0033356 1.90631e-06 1.63621e-08 2.718 ||| 0-1 ||| 36 524574 +los ||| been said both here in the House ||| 1 0.0352574 1.90631e-06 1.09633e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| been said both here in the ||| 1 0.0352574 1.90631e-06 4.38355e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| been said both here in ||| 1 0.0352574 1.90631e-06 7.14029e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| been said both here ||| 1 0.0352574 1.90631e-06 3.33588e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| been said both ||| 1 0.0352574 1.90631e-06 1.64507e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| been studied together , they are ||| 1 0.0072404 1.90631e-06 9.50578e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| been studied together , they ||| 1 0.0072404 1.90631e-06 6.26506e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| been the case ||| 0.0035461 0.122289 1.90631e-06 1.53249e-06 2.718 ||| 0-1 ||| 282 524574 +los ||| been the tactic of ||| 1 0.0019787 1.90631e-06 7.45862e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| been the whole ||| 0.5 0.122289 1.90631e-06 8.10292e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| been the ||| 0.00668693 0.122289 2.09694e-05 0.00143237 2.718 ||| 0-1 ||| 1645 524574 +los ||| been vested in the ||| 1 0.122289 1.90631e-06 1.87021e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| before the end ||| 0.00139665 0.122289 1.90631e-06 4.66784e-08 2.718 ||| 0-1 ||| 716 524574 +los ||| before the establishment ||| 0.5 0.122289 1.90631e-06 4.82769e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| before the ||| 0.00130933 0.122289 1.52505e-05 0.000107282 2.718 ||| 0-1 ||| 6110 524574 +los ||| before them ||| 0.0217391 0.038218 1.90631e-06 5.03351e-07 2.718 ||| 0-1 ||| 46 524574 +los ||| before they ||| 0.00526316 0.0072404 3.81262e-06 2.04732e-07 2.718 ||| 0-1 ||| 380 524574 +los ||| begin on the ||| 0.142857 0.122289 1.90631e-06 1.69339e-07 2.718 ||| 0-2 ||| 7 524574 +los ||| begin with , the ||| 0.0555556 0.122289 1.90631e-06 1.92995e-08 2.718 ||| 0-3 ||| 18 524574 +los ||| behalf of the Committee ||| 0.000257202 0.122289 1.90631e-06 1.13341e-09 2.718 ||| 0-2 ||| 3888 524574 +los ||| behalf of the PSE Group . - ||| 0.00155763 0.122289 1.90631e-06 9.63443e-19 2.718 ||| 0-2 ||| 642 524574 +los ||| behalf of the PSE Group . ||| 0.00154083 0.122289 1.90631e-06 2.55413e-16 2.718 ||| 0-2 ||| 649 524574 +los ||| behalf of the PSE Group ||| 0.00116414 0.122289 1.90631e-06 8.43225e-14 2.718 ||| 0-2 ||| 859 524574 +los ||| behalf of the PSE ||| 0.0333333 0.122289 1.90631e-06 2.59215e-10 2.718 ||| 0-2 ||| 30 524574 +los ||| behalf of the UEN Group . ||| 0.00255754 0.122289 1.90631e-06 8.19663e-17 2.718 ||| 0-2 ||| 391 524574 +los ||| behalf of the UEN Group ||| 0.00202429 0.122289 1.90631e-06 2.70605e-14 2.718 ||| 0-2 ||| 494 524574 +los ||| behalf of the UEN ||| 0.111111 0.122289 1.90631e-06 8.31863e-11 2.718 ||| 0-2 ||| 9 524574 +los ||| behalf of the ||| 0.00086077 0.122289 2.28757e-05 7.42735e-06 2.718 ||| 0-2 ||| 13941 524574 +los ||| behalf of ||| 0.000296707 0.0019787 5.71893e-06 1.05347e-06 2.718 ||| 0-1 ||| 10111 524574 +los ||| behavioural ||| 0.0169492 0.0547945 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 59 524574 +los ||| behind the scenes will ||| 0.25 0.122289 1.90631e-06 1.56277e-12 2.718 ||| 0-1 ||| 4 524574 +los ||| behind the scenes ||| 0.0111111 0.122289 1.90631e-06 1.80642e-10 2.718 ||| 0-1 ||| 90 524574 +los ||| behind the ||| 0.00227445 0.122289 5.71893e-06 3.84345e-05 2.718 ||| 0-1 ||| 1319 524574 +los ||| behind them ||| 0.00970874 0.038218 1.90631e-06 1.80329e-07 2.718 ||| 0-1 ||| 103 524574 +los ||| behind those ||| 0.0454545 0.284705 1.90631e-06 1.4961e-06 2.718 ||| 0-1 ||| 22 524574 +los ||| behold the ||| 0.5 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| being at the ||| 0.0322581 0.122289 1.90631e-06 5.11166e-06 2.718 ||| 0-2 ||| 31 524574 +los ||| being compulsory ||| 0.125 0.011889 1.90631e-06 7.48445e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| being delayed by precisely the ||| 1 0.122289 1.90631e-06 5.94005e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| being eliminated and the ||| 1 0.122289 1.90631e-06 2.14069e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| being forced upon the ||| 1 0.122289 1.90631e-06 2.04137e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| being frozen out ||| 1 0.0024096 1.90631e-06 1.09006e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| being frozen ||| 0.111111 0.0024096 1.90631e-06 2.8458e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| being held up by ||| 0.142857 0.0062464 1.90631e-06 4.01046e-12 2.718 ||| 0-3 ||| 7 524574 +los ||| being informed of the ||| 0.125 0.122289 1.90631e-06 1.98427e-09 2.718 ||| 0-3 ||| 8 524574 +los ||| being paid by ||| 0.111111 0.0062464 1.90631e-06 6.20456e-10 2.718 ||| 0-2 ||| 9 524574 +los ||| being rejected by the ||| 1 0.122289 1.90631e-06 9.93383e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| being squeezed dry by the ||| 1 0.122289 1.90631e-06 1.84577e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| being subject to taxation in the ||| 1 0.122289 1.90631e-06 1.07783e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| being taken of the ||| 0.166667 0.122289 1.90631e-06 6.04903e-08 2.718 ||| 0-3 ||| 6 524574 +los ||| being the necessary ||| 0.5 0.122289 1.90631e-06 3.14092e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| being the targets ||| 0.5 0.122289 1.90631e-06 2.90532e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| being the ||| 0.0179171 0.122289 3.05009e-05 0.00122072 2.718 ||| 0-1 ||| 893 524574 +los ||| beings ' ||| 0.5 0.0444479 1.90631e-06 1.31916e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| beklagar ) the ||| 1 0.122289 1.90631e-06 2.46616e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| believe - the ||| 0.5 0.122289 1.90631e-06 5.03704e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| believe all fishermen should be guaranteed ||| 1 0.0177928 1.90631e-06 1.11496e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| believe all fishermen should be ||| 1 0.0177928 1.90631e-06 3.15852e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| believe all fishermen should ||| 1 0.0177928 1.90631e-06 1.74284e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| believe all fishermen ||| 1 0.0177928 1.90631e-06 3.93328e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| believe all ||| 0.2 0.0177928 1.90631e-06 8.36868e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| believe that the ||| 0.00154202 0.122289 3.81262e-06 2.24626e-06 2.718 ||| 0-2 ||| 1297 524574 +los ||| believe the opinion ||| 1 0.122289 1.90631e-06 3.27693e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| believe the ||| 0.0142857 0.122289 7.62523e-06 0.000133534 2.718 ||| 0-1 ||| 280 524574 +los ||| believe these disasters were all ||| 1 0.0797759 1.90631e-06 7.94467e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| believe these disasters were ||| 1 0.0797759 1.90631e-06 1.68127e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| believe these disasters ||| 1 0.0797759 1.90631e-06 9.38523e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| belong to the ||| 0.00289855 0.122289 1.90631e-06 1.09775e-06 2.718 ||| 0-2 ||| 345 524574 +los ||| beloved ||| 0.0238095 0.0363636 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 42 524574 +los ||| below the surface ||| 0.25 0.122289 1.90631e-06 9.51253e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| below the ||| 0.00272851 0.122289 3.81262e-06 7.54963e-06 2.718 ||| 0-1 ||| 733 524574 +los ||| beneficial ||| 0.000697837 0.0006812 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1433 524574 +los ||| beneficiary ||| 0.00302115 0.0990338 1.90631e-06 3.99e-05 2.718 ||| 0-0 ||| 331 524574 +los ||| benefit from ||| 0.000464253 0.001099 1.90631e-06 2.54839e-08 2.718 ||| 0-1 ||| 2154 524574 +los ||| benefit of the ||| 0.00217391 0.122289 1.90631e-06 3.07122e-06 2.718 ||| 0-2 ||| 460 524574 +los ||| benefit the original ||| 0.1 0.122289 1.90631e-06 1.70611e-09 2.718 ||| 0-1 ||| 10 524574 +los ||| benefit the ||| 0.00833333 0.122289 5.71893e-06 5.64935e-05 2.718 ||| 0-1 ||| 360 524574 +los ||| benefit to the ||| 0.00847458 0.122289 1.90631e-06 5.01991e-06 2.718 ||| 0-2 ||| 118 524574 +los ||| benefits have they ||| 1 0.0253502 1.90631e-06 5.76964e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| benefits have ||| 0.111111 0.0253502 1.90631e-06 1.76766e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| benefits satisfying the ||| 0.333333 0.122289 1.90631e-06 3.73707e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| benefits the ||| 0.0241935 0.122289 5.71893e-06 1.69867e-05 2.718 ||| 0-1 ||| 124 524574 +los ||| benefits which will be ||| 1 0.0253502 1.90631e-06 1.96844e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| benefits which will ||| 0.5 0.0253502 1.90631e-06 1.08616e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| benefits which ||| 0.0208333 0.0253502 1.90631e-06 1.2555e-06 2.718 ||| 0-0 ||| 48 524574 +los ||| benefits ||| 0.00168862 0.0253502 1.90631e-05 0.0001478 2.718 ||| 0-0 ||| 5922 524574 +los ||| besides , hold public debates ||| 1 0.122803 1.90631e-06 2.69315e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| best before date should be ||| 0.333333 0.0045483 1.90631e-06 1.29721e-16 2.718 ||| 0-0 ||| 3 524574 +los ||| best before date should ||| 0.333333 0.0045483 1.90631e-06 7.15786e-15 2.718 ||| 0-0 ||| 3 524574 +los ||| best before date ||| 0.333333 0.0045483 1.90631e-06 1.61541e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| best before ||| 0.2 0.0045483 1.90631e-06 1.58063e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| best they can ||| 0.0384615 0.0072404 1.90631e-06 3.37215e-10 2.718 ||| 0-1 ||| 26 524574 +los ||| best they ||| 0.0454545 0.0072404 1.90631e-06 1.13376e-07 2.718 ||| 0-1 ||| 22 524574 +los ||| best ||| 0.000150693 0.0045483 3.81262e-06 6.32e-05 2.718 ||| 0-0 ||| 13272 524574 +los ||| better illustrate the ||| 0.25 0.122289 1.90631e-06 3.64398e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| better response to the ||| 0.5 0.122289 1.90631e-06 6.47596e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| better results ||| 0.00719424 0.0453002 1.90631e-06 9.03528e-08 2.718 ||| 0-1 ||| 139 524574 +los ||| better service ||| 0.0208333 0.0130347 1.90631e-06 1.81623e-08 2.718 ||| 0-1 ||| 48 524574 +los ||| better social ||| 0.0833333 0.0037997 1.90631e-06 2.57738e-08 2.718 ||| 0-1 ||| 12 524574 +los ||| better targeted application , of the ||| 1 0.122289 1.90631e-06 8.07241e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| between Israel ||| 0.00442478 0.0012056 1.90631e-06 1.52796e-09 2.718 ||| 0-0 ||| 226 524574 +los ||| between available resources and ||| 0.5 0.21958 1.90631e-06 5.09546e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| between available resources ||| 0.333333 0.21958 1.90631e-06 4.06794e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| between countries in the ||| 0.0714286 0.122289 1.90631e-06 9.19673e-10 2.718 ||| 0-3 ||| 14 524574 +los ||| between different countries , ||| 0.125 0.0957208 1.90631e-06 5.77478e-11 2.718 ||| 0-2 ||| 8 524574 +los ||| between different countries ||| 0.0277778 0.0957208 1.90631e-06 4.8424e-10 2.718 ||| 0-2 ||| 36 524574 +los ||| between foreign workers ||| 0.5 0.0012056 1.90631e-06 1.19181e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| between foreign ||| 0.333333 0.0012056 1.90631e-06 1.75266e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| between its three components : ||| 1 0.0211371 1.90631e-06 1.03268e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| between its three components ||| 1 0.0211371 1.90631e-06 3.06616e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| between its three ||| 0.5 0.0211371 1.90631e-06 3.56531e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| between its ||| 0.00884956 0.0211371 1.90631e-06 5.63239e-07 2.718 ||| 0-1 ||| 113 524574 +los ||| between men and women ||| 0.00117371 0.21664 1.90631e-06 6.27067e-13 2.718 ||| 0-1 ||| 852 524574 +los ||| between men and ||| 0.00263505 0.21664 3.81262e-06 5.27834e-09 2.718 ||| 0-1 ||| 759 524574 +los ||| between men ||| 0.00261438 0.21664 3.81262e-06 4.21394e-07 2.718 ||| 0-1 ||| 765 524574 +los ||| between minors ||| 0.5 0.342991 1.90631e-06 1.12352e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| between our group ' s chairmen , ||| 1 0.183633 1.90631e-06 3.26503e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| between our group ' s chairmen ||| 1 0.183633 1.90631e-06 2.73786e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| between police forces and those ||| 1 0.284705 1.90631e-06 4.84509e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| between the date on ||| 0.5 0.122289 1.90631e-06 7.73802e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| between the date ||| 0.25 0.122289 1.90631e-06 1.15648e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| between the opposing factions ||| 1 0.122289 1.90631e-06 3.72292e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| between the opposing ||| 0.25 0.122289 1.90631e-06 5.31846e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| between the production and distribution sectors will ||| 0.1 0.122289 1.90631e-06 1.08099e-21 2.718 ||| 0-1 ||| 10 524574 +los ||| between the production and distribution sectors ||| 0.1 0.122289 1.90631e-06 1.24952e-19 2.718 ||| 0-1 ||| 10 524574 +los ||| between the production and distribution ||| 0.1 0.122289 1.90631e-06 2.42626e-15 2.718 ||| 0-1 ||| 10 524574 +los ||| between the production and ||| 0.0909091 0.122289 1.90631e-06 1.18354e-10 2.718 ||| 0-1 ||| 11 524574 +los ||| between the production ||| 0.0588235 0.122289 1.90631e-06 9.44875e-09 2.718 ||| 0-1 ||| 17 524574 +los ||| between the various countries ||| 0.0277778 0.0764782 1.90631e-06 1.48572e-10 2.718 ||| 0-1 0-2 0-3 ||| 36 524574 +los ||| between the ||| 0.00178702 0.122289 7.4346e-05 0.000113159 2.718 ||| 0-1 ||| 21824 524574 +los ||| between these ||| 0.00414079 0.0240362 3.81262e-06 6.43013e-07 2.718 ||| 0-1 ||| 483 524574 +los ||| between those ||| 0.00280899 0.142955 1.90631e-06 1.07199e-06 2.718 ||| 0-0 0-1 ||| 356 524574 +los ||| between ||| 0.000417507 0.0012056 4.57514e-05 6.42e-05 2.718 ||| 0-0 ||| 57484 524574 +los ||| beyond all ||| 0.0153846 0.0177928 1.90631e-06 2.01354e-07 2.718 ||| 0-1 ||| 65 524574 +los ||| beyond my ||| 0.0833333 0.0086409 1.90631e-06 5.16286e-08 2.718 ||| 0-1 ||| 12 524574 +los ||| beyond the fact ||| 0.5 0.122289 1.90631e-06 9.4115e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| beyond the ||| 0.00389105 0.122289 1.14379e-05 3.21288e-05 2.718 ||| 0-1 ||| 1542 524574 +los ||| beyond their ||| 0.01 0.0236713 1.90631e-06 1.71349e-07 2.718 ||| 0-1 ||| 100 524574 +los ||| big a part the ||| 0.333333 0.122289 1.90631e-06 1.06768e-09 2.718 ||| 0-3 ||| 3 524574 +los ||| big a ||| 0.142857 0.0012063 1.90631e-06 2.17196e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| big ||| 0.000510074 0.0012063 3.81262e-06 4.9e-06 2.718 ||| 0-0 ||| 3921 524574 +los ||| bilateral ||| 0.00111669 0.0012244 7.62523e-06 3.9e-06 2.718 ||| 0-0 ||| 3582 524574 +los ||| billion , approximately the ||| 1 0.122289 1.90631e-06 1.09155e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| billion . the ||| 0.5 0.122289 1.90631e-06 2.94943e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| binding those ||| 0.25 0.284705 1.90631e-06 2.93878e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| bio diesel ||| 1 0.0053191 1.90631e-06 3.19e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| biofuels ||| 0.00328677 0.342483 7.62523e-06 0.0005338 2.718 ||| 0-0 ||| 1217 524574 +los ||| biological products ||| 0.333333 0.245259 1.90631e-06 2.00168e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| biological ||| 0.00136612 0.0033333 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 732 524574 +los ||| biologists ||| 0.047619 0.333333 1.90631e-06 1.85e-05 2.718 ||| 0-0 ||| 21 524574 +los ||| biometric ||| 0.00301205 0.059633 1.90631e-06 2.53e-05 2.718 ||| 0-0 ||| 332 524574 +los ||| birds ||| 0.00234742 0.0138648 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 426 524574 +los ||| birth of the ||| 0.0133333 0.062134 1.90631e-06 1.53232e-08 2.718 ||| 0-1 0-2 ||| 75 524574 +los ||| bit like stating the ||| 1 0.122289 1.90631e-06 1.4118e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| black ||| 0.000966184 0.0018002 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1035 524574 +los ||| blame the ||| 0.0113636 0.122289 1.90631e-06 1.02092e-05 2.718 ||| 0-1 ||| 88 524574 +los ||| blamed on the ||| 0.142857 0.122289 1.90631e-06 6.31432e-09 2.718 ||| 0-2 ||| 7 524574 +los ||| blind eye ||| 0.00655738 0.103393 3.81262e-06 7.07836e-09 2.718 ||| 0-0 ||| 305 524574 +los ||| blind in one ||| 0.5 0.103393 1.90631e-06 1.10982e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| blind in ||| 0.25 0.103393 3.81262e-06 2.66272e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| blind to ||| 0.0294118 0.103393 1.90631e-06 1.1054e-05 2.718 ||| 0-0 ||| 34 524574 +los ||| blind ||| 0.0162162 0.103393 1.71568e-05 0.0001244 2.718 ||| 0-0 ||| 555 524574 +los ||| blocks ||| 0.00251256 0.0638686 1.90631e-06 3.4e-05 2.718 ||| 0-0 ||| 398 524574 +los ||| blood ||| 0.00163399 0.0068493 3.81262e-06 1.07e-05 2.718 ||| 0-0 ||| 1224 524574 +los ||| blowing across the ||| 0.333333 0.122289 1.90631e-06 1.40835e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| blowing through the ||| 0.166667 0.122289 1.90631e-06 6.31835e-10 2.718 ||| 0-2 ||| 6 524574 +los ||| board members ||| 0.0526316 0.154615 1.90631e-06 2.65051e-07 2.718 ||| 0-1 ||| 19 524574 +los ||| board the various points ||| 1 0.122289 1.90631e-06 1.14855e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| board the various ||| 0.5 0.122289 1.90631e-06 8.84182e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| board the ||| 0.0261438 0.122289 7.62523e-06 5.72657e-05 2.718 ||| 0-1 ||| 153 524574 +los ||| board their ||| 0.1 0.0236713 1.90631e-06 3.05408e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| board these ||| 0.166667 0.0240362 1.90631e-06 3.25406e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| board vessels ||| 0.05 0.261943 1.90631e-06 1.06039e-07 2.718 ||| 0-1 ||| 20 524574 +los ||| board ||| 0.000480538 0.0006227 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 2081 524574 +los ||| boards , ||| 0.0769231 0.181319 1.90631e-06 7.65615e-06 2.718 ||| 0-0 ||| 13 524574 +los ||| boards to ||| 0.25 0.181319 1.90631e-06 5.7047e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| boards ||| 0.0111111 0.181319 3.81262e-06 6.42e-05 2.718 ||| 0-0 ||| 180 524574 +los ||| boats ||| 0.00786164 0.142454 9.53154e-06 9.82e-05 2.718 ||| 0-0 ||| 636 524574 +los ||| bodies that ||| 0.011236 0.165094 1.90631e-06 1.57332e-05 2.718 ||| 0-0 ||| 89 524574 +los ||| bodies ||| 0.00162426 0.165094 1.71568e-05 0.0009353 2.718 ||| 0-0 ||| 5541 524574 +los ||| body ||| 0.000247586 0.0002396 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 4039 524574 +los ||| bombers ||| 0.0208333 0.127072 3.81262e-06 2.24e-05 2.718 ||| 0-0 ||| 96 524574 +los ||| bombings ||| 0.0139535 0.185771 5.71893e-06 4.57e-05 2.718 ||| 0-0 ||| 215 524574 +los ||| bona ||| 0.0384615 0.0163934 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| book prices , ||| 0.333333 0.34239 1.90631e-06 1.12824e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| book prices ||| 0.0666667 0.34239 1.90631e-06 9.4608e-08 2.718 ||| 0-1 ||| 15 524574 +los ||| book those Swedes ||| 1 0.284705 1.90631e-06 3.15585e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| book those ||| 1 0.284705 1.90631e-06 4.50835e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| books ||| 0.00412655 0.178082 5.71893e-06 0.0001517 2.718 ||| 0-0 ||| 727 524574 +los ||| border crossing ||| 0.0172414 0.0208333 1.90631e-06 2.5038e-10 2.718 ||| 0-1 ||| 58 524574 +los ||| border formalities ||| 0.333333 0.0059813 1.90631e-06 3.421e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| border regions and shall continue to ||| 0.5 0.0059813 1.90631e-06 3.60767e-19 2.718 ||| 0-0 ||| 2 524574 +los ||| border regions and shall continue ||| 0.5 0.0059813 1.90631e-06 4.06003e-18 2.718 ||| 0-0 ||| 2 524574 +los ||| border regions and shall ||| 0.5 0.0059813 1.90631e-06 1.75455e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| border regions and ||| 0.0714286 0.0059813 1.90631e-06 3.20994e-11 2.718 ||| 0-0 ||| 14 524574 +los ||| border regions ||| 0.0033557 0.0059813 1.90631e-06 2.56264e-09 2.718 ||| 0-0 ||| 298 524574 +los ||| border ||| 0.0020861 0.0059813 2.09694e-05 3.11e-05 2.718 ||| 0-0 ||| 5273 524574 +los ||| bordering the ||| 0.00862069 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-1 ||| 116 524574 +los ||| born of the ||| 0.04 0.122289 1.90631e-06 2.26202e-07 2.718 ||| 0-2 ||| 25 524574 +los ||| borne out by the ||| 0.0263158 0.122289 1.90631e-06 2.76042e-10 2.718 ||| 0-3 ||| 38 524574 +los ||| borrow from it those that ||| 0.333333 0.284705 1.90631e-06 2.57404e-14 2.718 ||| 0-3 ||| 3 524574 +los ||| borrow from it those ||| 0.333333 0.284705 1.90631e-06 1.5302e-12 2.718 ||| 0-3 ||| 3 524574 +los ||| borrowers ||| 0.0232558 0.320988 1.90631e-06 2.53e-05 2.718 ||| 0-0 ||| 43 524574 +los ||| bosses have ||| 0.333333 0.188034 1.90631e-06 2.5594e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| bosses ||| 0.040404 0.188034 7.62523e-06 2.14e-05 2.718 ||| 0-0 ||| 99 524574 +los ||| both EU ||| 0.0666667 0.0197882 1.90631e-06 6.47531e-07 2.718 ||| 0-0 0-1 ||| 15 524574 +los ||| both European ||| 0.0217391 0.0352574 1.90631e-06 4.00532e-06 2.718 ||| 0-0 ||| 46 524574 +los ||| both a ||| 0.0026455 0.0352574 1.90631e-06 5.30934e-05 2.718 ||| 0-0 ||| 378 524574 +los ||| both at ||| 0.00338983 0.0352574 3.81262e-06 5.01567e-06 2.718 ||| 0-0 ||| 590 524574 +los ||| both by ||| 0.00295858 0.0352574 1.90631e-06 6.28857e-06 2.718 ||| 0-0 ||| 338 524574 +los ||| both good ||| 0.0222222 0.0352574 1.90631e-06 6.21179e-07 2.718 ||| 0-0 ||| 45 524574 +los ||| both having ||| 0.333333 0.0352574 1.90631e-06 4.58638e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| both here in the House and in ||| 1 0.0352574 1.90631e-06 2.14019e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| both here in the House and ||| 0.25 0.0352574 1.90631e-06 9.99879e-15 2.718 ||| 0-0 ||| 4 524574 +los ||| both here in the House ||| 0.25 0.0352574 1.90631e-06 7.98249e-13 2.718 ||| 0-0 ||| 4 524574 +los ||| both here in the ||| 0.125 0.0352574 1.90631e-06 3.19172e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| both here in ||| 0.0344828 0.0352574 1.90631e-06 5.19894e-08 2.718 ||| 0-0 ||| 29 524574 +los ||| both here ||| 0.00990099 0.0352574 1.90631e-06 2.4289e-06 2.718 ||| 0-0 ||| 101 524574 +los ||| both in respect of ||| 0.0714286 0.0019787 1.90631e-06 5.07336e-11 2.718 ||| 0-3 ||| 14 524574 +los ||| both its ||| 0.031746 0.0281973 3.81262e-06 2.55742e-06 2.718 ||| 0-0 0-1 ||| 63 524574 +los ||| both men ||| 0.0117647 0.21664 1.90631e-06 2.64609e-06 2.718 ||| 0-1 ||| 85 524574 +los ||| both non-member states ||| 1 0.161074 1.90631e-06 2.90245e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| both non-member ||| 1 0.161074 1.90631e-06 3.85965e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| both of these ||| 0.00529101 0.0240362 1.90631e-06 2.19507e-07 2.718 ||| 0-2 ||| 189 524574 +los ||| both of ||| 0.00542741 0.0352574 7.62523e-06 6.51172e-05 2.718 ||| 0-0 ||| 737 524574 +los ||| both our ||| 0.0273973 0.0300472 7.62523e-06 4.27746e-06 2.718 ||| 0-0 0-1 ||| 146 524574 +los ||| both outside ||| 0.0714286 0.0352574 1.90631e-06 4.77922e-08 2.718 ||| 0-0 ||| 14 524574 +los ||| both sides ||| 0.000442087 0.0165538 1.90631e-06 1.06347e-07 2.718 ||| 0-1 ||| 2262 524574 +los ||| both tax ||| 1 0.0611419 1.90631e-06 1.1193e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| both the Council and the Commission ||| 0.00769231 0.122289 1.90631e-06 1.10366e-13 2.718 ||| 0-4 ||| 130 524574 +los ||| both the Council and the ||| 0.00694444 0.122289 1.90631e-06 1.88951e-10 2.718 ||| 0-4 ||| 144 524574 +los ||| both the countries ' ||| 1 0.0444479 1.90631e-06 2.05394e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| both the transport ||| 1 0.122289 1.90631e-06 7.31173e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| both the ||| 0.0425067 0.0787733 0.000333604 0.000513804 2.718 ||| 0-0 0-1 ||| 4117 524574 +los ||| both their ||| 0.0350877 0.0294644 3.81262e-06 2.74021e-06 2.718 ||| 0-0 0-1 ||| 57 524574 +los ||| both these documents , ||| 0.333333 0.212011 1.90631e-06 2.54577e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| both these documents ||| 0.111111 0.212011 1.90631e-06 2.13473e-09 2.718 ||| 0-2 ||| 9 524574 +los ||| both those ||| 0.0393701 0.159981 9.53154e-06 2.00004e-05 2.718 ||| 0-0 0-1 ||| 127 524574 +los ||| both to ||| 0.00119332 0.0352574 1.90631e-06 0.000106434 2.718 ||| 0-0 ||| 838 524574 +los ||| both ||| 0.0141639 0.0352574 0.000842588 0.0011978 2.718 ||| 0-0 ||| 31206 524574 +los ||| bottom line and add up the pros ||| 1 0.122289 1.90631e-06 8.9183e-24 2.718 ||| 0-5 ||| 1 524574 +los ||| bottom line and add up the ||| 1 0.122289 1.90631e-06 6.37022e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| boundaries ||| 0.00550964 0.0584726 7.62523e-06 4.76e-05 2.718 ||| 0-0 ||| 726 524574 +los ||| boxes ||| 0.0078125 0.0295359 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 128 524574 +los ||| boys ||| 0.00537634 0.187097 1.90631e-06 5.64e-05 2.718 ||| 0-0 ||| 186 524574 +los ||| brain residue ||| 1 0.0627615 1.90631e-06 2.044e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| break their clients ||| 0.166667 0.221311 1.90631e-06 2.65791e-12 2.718 ||| 0-2 ||| 6 524574 +los ||| breaks ||| 0.00371747 0.026506 1.90631e-06 1.07e-05 2.718 ||| 0-0 ||| 269 524574 +los ||| breast removed ||| 1 0.0414013 1.90631e-06 1.71687e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| breast ||| 0.0709046 0.0414013 5.5283e-05 3.79e-05 2.718 ||| 0-0 ||| 409 524574 +los ||| breast-milk ||| 0.5 0.277778 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| breeders - ||| 0.5 0.303922 1.90631e-06 2.27458e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| breeders ||| 0.0283688 0.303922 7.62523e-06 6.03e-05 2.718 ||| 0-0 ||| 141 524574 +los ||| bridges ||| 0.00359712 0.0520231 1.90631e-06 1.75e-05 2.718 ||| 0-0 ||| 278 524574 +los ||| bring about such changes ||| 0.5 0.0936843 1.90631e-06 8.28899e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| bring the ||| 0.0185676 0.122289 2.66883e-05 0.000133534 2.718 ||| 0-1 ||| 754 524574 +los ||| bring them to ||| 0.0196078 0.038218 1.90631e-06 5.56717e-08 2.718 ||| 0-1 ||| 51 524574 +los ||| bring them ||| 0.0243902 0.038218 5.71893e-06 6.26522e-07 2.718 ||| 0-1 ||| 123 524574 +los ||| bring those ||| 0.0333333 0.284705 1.90631e-06 5.19796e-06 2.718 ||| 0-1 ||| 30 524574 +los ||| bring together its ||| 0.5 0.0211371 1.90631e-06 3.99193e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| bringing forward the ||| 0.0208333 0.122289 1.90631e-06 1.91653e-08 2.718 ||| 0-2 ||| 48 524574 +los ||| bringing its ||| 0.1 0.0211371 1.90631e-06 1.71449e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| bringing the adjustment ||| 1 0.122289 1.90631e-06 1.61892e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| bringing the ||| 0.00254453 0.122289 1.90631e-06 3.44452e-05 2.718 ||| 0-1 ||| 393 524574 +los ||| bringing them onto the ||| 0.5 0.122289 1.90631e-06 1.86639e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| bringing with them a ||| 0.25 0.038218 1.90631e-06 4.58075e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| bringing with them ||| 0.166667 0.038218 1.90631e-06 1.03343e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| broadcast ||| 0.00729927 0.0096154 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 274 524574 +los ||| broadcasters ||| 0.0122449 0.164179 5.71893e-06 7.49e-05 2.718 ||| 0-0 ||| 245 524574 +los ||| broadcasts , ||| 0.0833333 0.0338983 1.90631e-06 9.30187e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| broadcasts the ||| 0.142857 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| broadcasts ||| 0.00694444 0.0338983 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 144 524574 +los ||| brokers trade ||| 0.2 0.271186 1.90631e-06 2.70881e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| brokers ||| 0.0153846 0.271186 1.90631e-06 3.11e-05 2.718 ||| 0-0 ||| 65 524574 +los ||| brominated ||| 0.261905 0.186667 2.09694e-05 1.36e-05 2.718 ||| 0-0 ||| 42 524574 +los ||| brought by the ||| 0.02 0.122289 1.90631e-06 6.30578e-07 2.718 ||| 0-2 ||| 50 524574 +los ||| brought into the European Union ||| 0.166667 0.122289 1.90631e-06 2.29845e-13 2.718 ||| 0-2 ||| 6 524574 +los ||| brought into the European ||| 1 0.122289 1.90631e-06 4.12352e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| brought into the ||| 0.0163934 0.122289 1.90631e-06 1.23315e-07 2.718 ||| 0-2 ||| 61 524574 +los ||| brought to bear on the ||| 0.0833333 0.122289 1.90631e-06 1.06901e-11 2.718 ||| 0-4 ||| 12 524574 +los ||| brunt of the ||| 0.0322581 0.122289 1.90631e-06 7.46233e-08 2.718 ||| 0-2 ||| 31 524574 +los ||| brush aside the ||| 0.125 0.122289 1.90631e-06 4.2338e-11 2.718 ||| 0-2 ||| 8 524574 +los ||| budget , the ||| 0.0121951 0.122289 1.90631e-06 6.31253e-06 2.718 ||| 0-2 ||| 82 524574 +los ||| budgetary appropriations ||| 0.0243902 0.189378 1.90631e-06 1.56354e-08 2.718 ||| 0-1 ||| 41 524574 +los ||| budgetary impact ||| 0.0232558 0.0006848 1.90631e-06 4.0376e-10 2.718 ||| 0-0 ||| 43 524574 +los ||| budgetary ||| 0.000498318 0.0006848 7.62523e-06 4.9e-06 2.718 ||| 0-0 ||| 8027 524574 +los ||| budgets when talks begin on the ||| 0.5 0.122289 1.90631e-06 1.91467e-20 2.718 ||| 0-5 ||| 2 524574 +los ||| budgets ||| 0.00358852 0.246658 1.71568e-05 0.0007175 2.718 ||| 0-0 ||| 2508 524574 +los ||| build up our ||| 0.0769231 0.0248369 1.90631e-06 4.82298e-10 2.718 ||| 0-2 ||| 13 524574 +los ||| building site with the ||| 1 0.122289 1.90631e-06 3.05437e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| building ||| 0.000183587 0.0010217 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 5447 524574 +los ||| buildings and ||| 0.0047619 0.283826 1.90631e-06 7.84247e-06 2.718 ||| 0-0 ||| 210 524574 +los ||| buildings ||| 0.00711549 0.283826 2.4782e-05 0.0006261 2.718 ||| 0-0 ||| 1827 524574 +los ||| built in densely populated regions and ||| 0.333333 0.0023923 1.90631e-06 1.53718e-24 2.718 ||| 0-3 ||| 3 524574 +los ||| built in densely populated regions ||| 0.333333 0.0023923 1.90631e-06 1.2272e-22 2.718 ||| 0-3 ||| 3 524574 +los ||| built in densely populated ||| 0.333333 0.0023923 1.90631e-06 1.48933e-18 2.718 ||| 0-3 ||| 3 524574 +los ||| bulk carriers ||| 0.047619 0.14569 3.81262e-06 1.46703e-09 2.718 ||| 0-1 ||| 42 524574 +los ||| bully ||| 0.047619 0.05 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| burden on the ||| 0.0173913 0.122289 3.81262e-06 1.24851e-07 2.718 ||| 0-2 ||| 115 524574 +los ||| burden over the whole ||| 1 0.122289 1.90631e-06 5.08259e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| burden over the ||| 1 0.122289 1.90631e-06 8.9846e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| burden the ||| 0.0344828 0.122289 1.90631e-06 1.86596e-05 2.718 ||| 0-1 ||| 29 524574 +los ||| buses , ||| 0.0178571 0.281304 1.90631e-06 1.90211e-05 2.718 ||| 0-0 ||| 56 524574 +los ||| buses and ||| 0.0119048 0.281304 1.90631e-06 1.99788e-06 2.718 ||| 0-0 ||| 84 524574 +los ||| buses ||| 0.00873362 0.281304 7.62523e-06 0.0001595 2.718 ||| 0-0 ||| 458 524574 +los ||| business - ||| 0.0384615 0.057606 1.90631e-06 2.30702e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| business if ||| 0.166667 0.057606 1.90631e-06 5.11053e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| business is done ||| 0.5 0.057606 1.90631e-06 8.74071e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| business is ||| 0.00925926 0.057606 1.90631e-06 1.91682e-05 2.718 ||| 0-0 ||| 108 524574 +los ||| business of ||| 0.00480769 0.057606 1.90631e-06 3.3249e-05 2.718 ||| 0-0 ||| 208 524574 +los ||| business people ||| 0.0104167 0.0894672 1.90631e-06 9.83625e-07 2.718 ||| 0-1 ||| 96 524574 +los ||| business person ||| 0.25 0.057606 1.90631e-06 7.87741e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| business practices ||| 0.0217391 0.057606 1.90631e-06 2.1773e-08 2.718 ||| 0-0 ||| 46 524574 +los ||| business should take the liberty ||| 1 0.122289 1.90631e-06 3.86033e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| business should take the ||| 1 0.122289 1.90631e-06 3.82211e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| business taking ||| 1 0.057606 1.90631e-06 2.5993e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| business ||| 0.00376412 0.057606 6.29082e-05 0.0006116 2.718 ||| 0-0 ||| 8767 524574 +los ||| businesses in the ||| 0.00970874 0.122289 1.90631e-06 2.4423e-07 2.718 ||| 0-2 ||| 103 524574 +los ||| businesses ||| 0.000449102 0.0085723 5.71893e-06 8.17e-05 2.718 ||| 0-0 ||| 6680 524574 +los ||| businessmen need ||| 0.1 0.218045 1.90631e-06 5.17132e-08 2.718 ||| 0-0 ||| 10 524574 +los ||| businessmen ||| 0.015544 0.218045 5.71893e-06 5.64e-05 2.718 ||| 0-0 ||| 193 524574 +los ||| busy airports ||| 0.333333 0.36046 1.90631e-06 8.01538e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| but also the ||| 0.000570125 0.122289 1.90631e-06 1.47999e-06 2.718 ||| 0-2 ||| 1754 524574 +los ||| but also with the ||| 0.00591716 0.122289 1.90631e-06 9.4638e-09 2.718 ||| 0-3 ||| 169 524574 +los ||| but also ||| 4.49944e-05 0.0001195 1.90631e-06 9.33991e-08 2.718 ||| 0-0 ||| 22225 524574 +los ||| but cannot set aside its proposal , ||| 0.5 0.0211371 1.90631e-06 3.22558e-22 2.718 ||| 0-4 ||| 2 524574 +los ||| but cannot set aside its proposal ||| 0.5 0.0211371 1.90631e-06 2.70478e-21 2.718 ||| 0-4 ||| 2 524574 +los ||| but cannot set aside its ||| 0.5 0.0211371 1.90631e-06 1.35442e-17 2.718 ||| 0-4 ||| 2 524574 +los ||| but consider the following scenario ||| 0.5 0.122289 1.90631e-06 8.58325e-17 2.718 ||| 0-2 ||| 2 524574 +los ||| but consider the following ||| 0.5 0.122289 1.90631e-06 5.96059e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| but consider the ||| 0.25 0.122289 1.90631e-06 4.664e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| but nonetheless wish to make clear our ||| 1 0.0248369 1.90631e-06 2.82093e-21 2.718 ||| 0-6 ||| 1 524574 +los ||| but not least , the ||| 0.025 0.122289 1.90631e-06 2.92897e-11 2.718 ||| 0-4 ||| 40 524574 +los ||| but not necessarily at national level ||| 1 0.0129851 1.90631e-06 6.68571e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| but not necessarily at national ||| 1 0.0129851 1.90631e-06 7.81588e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| but previous ||| 0.333333 0.0133636 1.90631e-06 6.64265e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| but rather the arrival ||| 0.5 0.122289 1.90631e-06 6.46287e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| but rather the ||| 0.00628931 0.122289 1.90631e-06 8.97621e-08 2.718 ||| 0-2 ||| 159 524574 +los ||| but still the ||| 0.125 0.122289 1.90631e-06 2.208e-07 2.718 ||| 0-2 ||| 8 524574 +los ||| but terrible ||| 1 0.0018248 1.90631e-06 1.98186e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| but that ||| 0.000236295 0.0001195 1.90631e-06 3.112e-07 2.718 ||| 0-0 ||| 4232 524574 +los ||| but the ||| 0.00215569 0.122289 3.43136e-05 0.000293149 2.718 ||| 0-1 ||| 8350 524574 +los ||| but they are flawed . the ||| 0.5 0.122289 1.90631e-06 9.67438e-17 2.718 ||| 0-5 ||| 2 524574 +los ||| but this would be linked to the ||| 1 0.122289 1.90631e-06 7.46479e-16 2.718 ||| 0-6 ||| 1 524574 +los ||| but those ||| 0.00877193 0.142412 3.81262e-06 3.08906e-07 2.718 ||| 0-0 0-1 ||| 228 524574 +los ||| but ||| 5.06668e-05 0.0001195 1.71568e-05 1.85e-05 2.718 ||| 0-0 ||| 177631 524574 +los ||| buy people ||| 0.5 0.0894672 1.90631e-06 1.50418e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| buyers ||| 0.0155039 0.272727 3.81262e-06 4.38e-05 2.718 ||| 0-0 ||| 129 524574 +los ||| by Czech ||| 1 0.0010442 1.90631e-06 1.52253e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| by Europe ’ s ||| 1 0.0240653 1.90631e-06 2.26334e-12 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| by European ||| 0.0117647 0.0062464 1.90631e-06 5.41645e-06 2.718 ||| 0-0 ||| 85 524574 +los ||| by Mr Goebbels and ||| 0.25 0.000743 1.90631e-06 1.21673e-14 2.718 ||| 0-1 ||| 4 524574 +los ||| by Mr Goebbels ||| 0.03125 0.000743 1.90631e-06 9.71374e-13 2.718 ||| 0-1 ||| 32 524574 +los ||| by Mr ||| 0.000119732 0.000743 1.90631e-06 8.83067e-07 2.718 ||| 0-1 ||| 8352 524574 +los ||| by a ||| 0.000423251 0.0062464 5.71893e-06 7.17989e-05 2.718 ||| 0-0 ||| 7088 524574 +los ||| by adjusting the ||| 0.166667 0.122289 1.90631e-06 3.15289e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| by all the ||| 0.0056391 0.0487761 5.71893e-06 1.86789e-06 2.718 ||| 0-0 0-1 0-2 ||| 532 524574 +los ||| by all those ||| 0.0153846 0.102915 1.90631e-06 7.27098e-08 2.718 ||| 0-0 0-1 0-2 ||| 65 524574 +los ||| by all ||| 0.00209864 0.0120196 7.62523e-06 4.35451e-06 2.718 ||| 0-0 0-1 ||| 1906 524574 +los ||| by and ||| 0.00373134 0.0062464 1.90631e-06 2.02895e-05 2.718 ||| 0-0 ||| 268 524574 +los ||| by any ||| 0.00225225 0.0178119 1.90631e-06 4.84899e-06 2.718 ||| 0-1 ||| 444 524574 +los ||| by both ||| 0.00512821 0.0352574 5.71893e-06 6.28857e-06 2.718 ||| 0-1 ||| 585 524574 +los ||| by civil ||| 0.0909091 0.0250452 1.90631e-06 8.53635e-07 2.718 ||| 0-0 0-1 ||| 11 524574 +los ||| by commercial ||| 0.5 0.0062464 1.90631e-06 3.09382e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| by cuts ||| 0.0833333 0.104656 1.90631e-06 1.1587e-06 2.718 ||| 0-1 ||| 12 524574 +los ||| by fires proven ||| 0.333333 0.234127 1.90631e-06 2.52992e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| by fires ||| 0.04 0.234127 1.90631e-06 1.80708e-06 2.718 ||| 0-1 ||| 25 524574 +los ||| by high street ||| 1 0.0062464 1.90631e-06 3.38571e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| by high ||| 0.027027 0.0062464 1.90631e-06 2.41836e-07 2.718 ||| 0-0 ||| 37 524574 +los ||| by his ||| 0.00413223 0.0058818 1.90631e-06 9.08792e-07 2.718 ||| 0-1 ||| 242 524574 +los ||| by individual Member ||| 0.142857 0.0062464 1.90631e-06 1.18024e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| by individual ||| 0.0314961 0.0582985 7.62523e-06 2.08193e-06 2.718 ||| 0-0 0-1 ||| 127 524574 +los ||| by its ||| 0.00187091 0.0211371 3.81262e-06 1.12095e-05 2.718 ||| 0-1 ||| 1069 524574 +los ||| by laboratory ||| 1 0.0348692 1.90631e-06 2.52689e-08 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| by making greater ||| 0.333333 0.0062464 1.90631e-06 8.20672e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| by making ||| 0.00258732 0.0062464 3.81262e-06 6.23137e-07 2.718 ||| 0-0 ||| 773 524574 +los ||| by many ||| 0.0016835 0.0062464 1.90631e-06 5.56077e-07 2.718 ||| 0-0 ||| 594 524574 +los ||| by means of ||| 0.000632311 0.0062464 3.81262e-06 5.58029e-08 2.718 ||| 0-0 ||| 3163 524574 +los ||| by means ||| 0.000519751 0.0062464 3.81262e-06 1.02647e-06 2.718 ||| 0-0 ||| 3848 524574 +los ||| by members of the public ||| 0.166667 0.122289 1.90631e-06 2.91827e-12 2.718 ||| 0-3 ||| 6 524574 +los ||| by members of the ||| 0.0131579 0.122289 1.90631e-06 1.80586e-08 2.718 ||| 0-3 ||| 76 524574 +los ||| by more ||| 0.0052356 0.0062464 1.90631e-06 3.69914e-06 2.718 ||| 0-0 ||| 191 524574 +los ||| by my colleagues , ||| 0.0384615 0.0062464 1.90631e-06 2.77026e-12 2.718 ||| 0-0 ||| 26 524574 +los ||| by my colleagues ||| 0.0111111 0.0062464 1.90631e-06 2.32298e-11 2.718 ||| 0-0 ||| 90 524574 +los ||| by my ||| 0.001443 0.0062464 3.81262e-06 1.04169e-06 2.718 ||| 0-0 ||| 1386 524574 +los ||| by myself ||| 0.0120482 0.0062464 1.90631e-06 2.51879e-07 2.718 ||| 0-0 ||| 83 524574 +los ||| by one ||| 0.00157233 0.0062464 1.90631e-06 6.75133e-06 2.718 ||| 0-0 ||| 636 524574 +los ||| by operators of a ||| 1 0.0062464 1.90631e-06 5.07426e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| by operators of ||| 0.333333 0.0062464 1.90631e-06 1.14476e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| by operators ||| 0.0322581 0.0062464 1.90631e-06 2.10574e-08 2.718 ||| 0-0 ||| 31 524574 +los ||| by others ||| 0.010989 0.0062464 3.81262e-06 1.57445e-07 2.718 ||| 0-0 ||| 182 524574 +los ||| by our inability ||| 0.333333 0.0248369 1.90631e-06 5.99956e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| by our ||| 0.00160772 0.0248369 5.71893e-06 1.87486e-05 2.718 ||| 0-1 ||| 1866 524574 +los ||| by people ||| 0.00668896 0.0478568 3.81262e-06 1.27564e-05 2.718 ||| 0-0 0-1 ||| 299 524574 +los ||| by practising ||| 0.125 0.0062464 1.90631e-06 9.39484e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| by precisely the ||| 1 0.122289 1.90631e-06 2.22053e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| by public ||| 0.030303 0.0111712 1.90631e-06 9.56006e-07 2.718 ||| 0-0 0-1 ||| 33 524574 +los ||| by pulling up the ||| 1 0.122289 1.90631e-06 6.37495e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| by putting our ||| 0.333333 0.0248369 1.90631e-06 2.09797e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| by resolutely ||| 0.5 0.0062464 1.90631e-06 5.18336e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| by secondary ||| 1 0.0048067 1.90631e-06 4.69742e-09 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| by setting out targets for ||| 1 0.0015353 1.90631e-06 4.00943e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| by small specialists ||| 0.5 0.173824 1.90631e-06 5.55516e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| by social ||| 0.0714286 0.00502305 1.90631e-06 2.45724e-07 2.718 ||| 0-0 0-1 ||| 14 524574 +los ||| by taking ||| 0.00233645 0.0062464 1.90631e-06 6.88415e-07 2.718 ||| 0-0 ||| 428 524574 +los ||| by tax ||| 0.2 0.0336941 1.90631e-06 1.0945e-06 2.718 ||| 0-0 0-1 ||| 5 524574 +los ||| by television ||| 0.333333 0.00730655 1.90631e-06 3.62835e-08 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| by telling you the ||| 1 0.122289 1.90631e-06 1.33791e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| by thanking the rapporteur , Mrs ||| 0.0909091 0.122289 1.90631e-06 1.10866e-17 2.718 ||| 0-2 ||| 11 524574 +los ||| by thanking the rapporteur , ||| 0.00892857 0.122289 1.90631e-06 1.18447e-13 2.718 ||| 0-2 ||| 112 524574 +los ||| by thanking the rapporteur ||| 0.00431034 0.122289 1.90631e-06 9.93228e-13 2.718 ||| 0-2 ||| 232 524574 +los ||| by thanking the ||| 0.00204499 0.122289 1.90631e-06 1.37376e-08 2.718 ||| 0-2 ||| 489 524574 +los ||| by the Council ||| 0.000268673 0.122289 1.90631e-06 7.78764e-07 2.718 ||| 0-1 ||| 3722 524574 +los ||| by the European ||| 0.00226244 0.122289 1.90631e-06 7.53068e-06 2.718 ||| 0-1 ||| 442 524574 +los ||| by the Group of the Party of ||| 0.027027 0.122289 1.90631e-06 2.00447e-14 2.718 ||| 0-4 ||| 37 524574 +los ||| by the Group of the Party ||| 0.0263158 0.122289 1.90631e-06 3.68712e-13 2.718 ||| 0-4 ||| 38 524574 +los ||| by the Group of the ||| 0.00367647 0.122289 1.90631e-06 2.44504e-09 2.718 ||| 0-4 ||| 272 524574 +los ||| by the Group ||| 0.00425532 0.122289 3.81262e-06 7.32596e-07 2.718 ||| 0-1 ||| 470 524574 +los ||| by the Member States ' ||| 0.166667 0.0795687 1.90631e-06 1.15427e-11 2.718 ||| 0-0 0-1 0-2 0-3 0-4 ||| 6 524574 +los ||| by the Member States , ||| 0.00414938 0.122289 1.90631e-06 6.60415e-11 2.718 ||| 0-1 ||| 241 524574 +los ||| by the Member States ||| 0.000606428 0.122289 1.90631e-06 5.53785e-10 2.718 ||| 0-1 ||| 1649 524574 +los ||| by the Member ||| 0.00775194 0.122289 1.90631e-06 1.16049e-06 2.718 ||| 0-1 ||| 129 524574 +los ||| by the Turkish ||| 0.125 0.122289 1.90631e-06 6.73367e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| by the Union ||| 0.00268097 0.122289 1.90631e-06 1.2553e-06 2.718 ||| 0-1 ||| 373 524574 +los ||| by the citizens ||| 0.00497512 0.293572 1.90631e-06 4.87892e-06 2.718 ||| 0-2 ||| 201 524574 +los ||| by the fact ||| 0.00110497 0.122289 1.90631e-06 6.59697e-06 2.718 ||| 0-1 ||| 905 524574 +los ||| by the national parliaments . ||| 0.0277778 0.269224 1.90631e-06 1.78933e-13 2.718 ||| 0-3 ||| 36 524574 +los ||| by the national parliaments ||| 0.0105263 0.269224 1.90631e-06 5.90734e-11 2.718 ||| 0-3 ||| 95 524574 +los ||| by the rule ||| 0.0188679 0.122289 1.90631e-06 1.83093e-07 2.718 ||| 0-1 ||| 53 524574 +los ||| by the various ||| 0.0140845 0.0466534 5.71893e-06 1.09435e-07 2.718 ||| 0-0 0-1 0-2 ||| 213 524574 +los ||| by the ||| 0.0107344 0.122289 0.00143354 0.00225206 2.718 ||| 0-1 ||| 70055 524574 +los ||| by their ||| 0.0021978 0.0236713 3.81262e-06 1.20107e-05 2.718 ||| 0-1 ||| 910 524574 +los ||| by them ||| 0.00454545 0.038218 1.90631e-06 1.05664e-05 2.718 ||| 0-1 ||| 220 524574 +los ||| by these ||| 0.00157729 0.0240362 1.90631e-06 1.27971e-05 2.718 ||| 0-1 ||| 634 524574 +los ||| by those doing ||| 1 0.284705 1.90631e-06 3.21815e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| by those ||| 0.0399361 0.284705 4.76577e-05 8.76641e-05 2.718 ||| 0-1 ||| 626 524574 +los ||| by three political groups ||| 1 0.143803 1.90631e-06 1.17717e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| by trade ||| 0.05 0.0184833 1.90631e-06 1.21582e-06 2.718 ||| 0-0 0-1 ||| 20 524574 +los ||| by traders ||| 0.0666667 0.345201 1.90631e-06 1.13822e-06 2.718 ||| 0-1 ||| 15 524574 +los ||| by using them to the ||| 1 0.122289 1.90631e-06 4.17083e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| by way ||| 0.00098912 0.0062464 1.90631e-06 3.49164e-06 2.718 ||| 0-0 ||| 1011 524574 +los ||| by what ||| 0.00277778 0.00618365 1.90631e-06 1.5529e-06 2.718 ||| 0-0 0-1 ||| 360 524574 +los ||| by which , ||| 0.0714286 0.0062464 1.90631e-06 1.64089e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| by which I mean the ||| 0.015625 0.122289 1.90631e-06 3.48716e-11 2.718 ||| 0-4 ||| 64 524574 +los ||| by which ||| 0.00112108 0.0062464 1.90631e-06 1.37596e-05 2.718 ||| 0-0 ||| 892 524574 +los ||| by whites , ||| 0.5 0.166667 1.90631e-06 3.06789e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| by whites ||| 0.5 0.166667 1.90631e-06 2.57255e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| by ||| 0.00381805 0.0062464 0.0015098 0.0016198 2.718 ||| 0-0 ||| 207436 524574 +los ||| by-products ||| 0.00483092 0.20915 1.90631e-06 6.22e-05 2.718 ||| 0-0 ||| 207 524574 +los ||| calculation methods ||| 0.0666667 0.156921 1.90631e-06 3.8745e-09 2.718 ||| 0-1 ||| 15 524574 +los ||| calendar ||| 0.00506329 0.0050761 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 395 524574 +los ||| calf ||| 0.0208333 0.0833333 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 48 524574 +los ||| call attention to the ||| 0.0588235 0.122289 1.90631e-06 2.21107e-09 2.718 ||| 0-3 ||| 17 524574 +los ||| call the ||| 0.0168067 0.122289 7.62523e-06 9.52283e-05 2.718 ||| 0-1 ||| 238 524574 +los ||| call up the ||| 1 0.122289 1.90631e-06 3.24776e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| call ’ ||| 0.333333 0.0139748 1.90631e-06 1.20013e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| called - from the very ||| 0.25 0.122289 1.90631e-06 1.57578e-12 2.718 ||| 0-3 ||| 4 524574 +los ||| called - from the ||| 0.25 0.122289 1.90631e-06 4.52876e-10 2.718 ||| 0-3 ||| 4 524574 +los ||| called the ||| 0.00621118 0.122289 3.81262e-06 7.45526e-05 2.718 ||| 0-1 ||| 322 524574 +los ||| calling the ||| 0.0140845 0.122289 1.90631e-06 2.82682e-05 2.718 ||| 0-1 ||| 71 524574 +los ||| calves at a young age ||| 0.5 0.181818 1.90631e-06 2.68313e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| calves at a young ||| 0.5 0.181818 1.90631e-06 4.36282e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| calves at a ||| 0.5 0.181818 1.90631e-06 6.849e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| calves at ||| 0.333333 0.181818 1.90631e-06 1.54515e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| calves ||| 0.00628931 0.181818 1.90631e-06 3.69e-05 2.718 ||| 0-0 ||| 159 524574 +los ||| came from the ||| 0.0120482 0.0616941 1.90631e-06 1.04584e-08 2.718 ||| 0-1 0-2 ||| 83 524574 +los ||| came to the ||| 0.00483092 0.122289 1.90631e-06 4.80265e-06 2.718 ||| 0-2 ||| 207 524574 +los ||| campaign against drugs , and ||| 0.5 0.0417765 1.90631e-06 2.20594e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| campaign against drugs , ||| 0.333333 0.0417765 1.90631e-06 1.76111e-13 2.718 ||| 0-2 ||| 3 524574 +los ||| campaign against drugs ||| 0.0625 0.0417765 1.90631e-06 1.47676e-12 2.718 ||| 0-2 ||| 16 524574 +los ||| campaigners , ||| 0.111111 0.208955 1.90631e-06 3.24373e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| campaigners will no longer be ||| 1 0.208955 1.90631e-06 6.22411e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| campaigners will no longer ||| 1 0.208955 1.90631e-06 3.43439e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| campaigners will no ||| 1 0.208955 1.90631e-06 1.83167e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| campaigners will ||| 1 0.208955 1.90631e-06 2.35313e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| campaigners ||| 0.0419162 0.208955 1.33442e-05 2.72e-05 2.718 ||| 0-0 ||| 167 524574 +los ||| can achieve even the globalisation of ||| 0.333333 0.122289 1.90631e-06 7.32942e-17 2.718 ||| 0-3 ||| 3 524574 +los ||| can achieve even the globalisation ||| 0.333333 0.122289 1.90631e-06 1.34821e-15 2.718 ||| 0-3 ||| 3 524574 +los ||| can achieve even the ||| 0.333333 0.122289 1.90631e-06 1.77396e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| can achieve the ||| 0.027027 0.122289 1.90631e-06 2.91531e-07 2.718 ||| 0-2 ||| 37 524574 +los ||| can any ||| 0.047619 0.0178119 1.90631e-06 2.74706e-06 2.718 ||| 0-1 ||| 21 524574 +los ||| can be given to the ||| 0.2 0.122289 1.90631e-06 1.41006e-09 2.718 ||| 0-4 ||| 5 524574 +los ||| can be reduced ||| 0.008 0.0018067 1.90631e-06 4.20443e-10 2.718 ||| 0-2 ||| 125 524574 +los ||| can communicate our ||| 0.5 0.0248369 1.90631e-06 4.99212e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| can get the ||| 0.125 0.122289 3.81262e-06 5.57799e-07 2.718 ||| 0-2 ||| 16 524574 +los ||| can grant ||| 0.0454545 0.000427 1.90631e-06 2.9743e-09 2.718 ||| 0-1 ||| 22 524574 +los ||| can identify ||| 0.0107527 0.0014395 1.90631e-06 8.62547e-09 2.718 ||| 0-1 ||| 93 524574 +los ||| can obtain a ||| 0.0833333 0.0009687 1.90631e-06 3.82331e-10 2.718 ||| 0-1 ||| 12 524574 +los ||| can obtain ||| 0.00892857 0.0009687 1.90631e-06 8.62547e-09 2.718 ||| 0-1 ||| 112 524574 +los ||| can say that one or the ||| 1 0.122289 1.90631e-06 9.77507e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| can see that the ||| 0.0204082 0.122289 1.90631e-06 1.51219e-08 2.718 ||| 0-3 ||| 49 524574 +los ||| can see who the ||| 1 0.122289 1.90631e-06 7.92883e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| can take the ||| 0.0212766 0.122289 1.90631e-06 2.05411e-06 2.718 ||| 0-2 ||| 47 524574 +los ||| can tell the ||| 0.0833333 0.0612181 1.90631e-06 1.27584e-09 2.718 ||| 0-1 0-2 ||| 12 524574 +los ||| can tell you that the ||| 0.0454545 0.122289 1.90631e-06 6.80463e-12 2.718 ||| 0-4 ||| 22 524574 +los ||| can the Commission ||| 0.00495049 0.122289 1.90631e-06 7.45221e-07 2.718 ||| 0-1 ||| 202 524574 +los ||| can the ||| 0.00152439 0.122289 1.90631e-06 0.00127584 2.718 ||| 0-1 ||| 656 524574 +los ||| can those of ||| 1 0.284705 1.90631e-06 2.69992e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| can those ||| 1 0.284705 1.90631e-06 4.96637e-05 2.718 ||| 0-1 ||| 1 524574 +los ||| can to increase our level ||| 0.5 0.0248369 1.90631e-06 1.04308e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| can to increase our ||| 0.5 0.0248369 1.90631e-06 1.2194e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| can trace the ||| 0.5 0.122289 1.90631e-06 6.88956e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| candidate countries ||| 0.000315657 0.0335599 1.90631e-06 5.83219e-08 2.718 ||| 0-0 ||| 3168 524574 +los ||| candidate country , ||| 0.0172414 0.0335599 1.90631e-06 6.59248e-09 2.718 ||| 0-0 ||| 58 524574 +los ||| candidate country ||| 0.00169205 0.0335599 1.90631e-06 5.52806e-08 2.718 ||| 0-0 ||| 591 524574 +los ||| candidate states . ||| 0.04 0.0335599 1.90631e-06 3.49871e-11 2.718 ||| 0-0 ||| 25 524574 +los ||| candidate states ||| 0.0107527 0.0335599 1.90631e-06 1.15507e-08 2.718 ||| 0-0 ||| 93 524574 +los ||| candidate ||| 0.00197707 0.0335599 1.90631e-05 0.0001536 2.718 ||| 0-0 ||| 5058 524574 +los ||| candidates [ ||| 1 0.159091 1.90631e-06 1.10524e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| candidates for ||| 0.00423729 0.159091 1.90631e-06 2.40639e-06 2.718 ||| 0-0 ||| 236 524574 +los ||| candidates to fill ||| 1 0.159091 1.90631e-06 2.39265e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| candidates to ||| 0.0169492 0.159091 1.90631e-06 2.78215e-05 2.718 ||| 0-0 ||| 59 524574 +los ||| candidates were ||| 0.047619 0.159091 1.90631e-06 5.60887e-07 2.718 ||| 0-0 ||| 21 524574 +los ||| candidates ||| 0.00529412 0.159091 1.71568e-05 0.0003131 2.718 ||| 0-0 ||| 1700 524574 +los ||| cannot enjoy the ||| 0.333333 0.122289 1.90631e-06 3.75945e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| cannot intervene any further , the only ||| 1 0.122289 1.90631e-06 6.7506e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| cannot intervene any further , the ||| 1 0.122289 1.90631e-06 6.06469e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| cannot set aside its proposal , as ||| 0.5 0.0211371 1.90631e-06 4.81637e-21 2.718 ||| 0-3 ||| 2 524574 +los ||| cannot set aside its proposal , ||| 0.5 0.0211371 1.90631e-06 4.71989e-19 2.718 ||| 0-3 ||| 2 524574 +los ||| cannot set aside its proposal ||| 0.5 0.0211371 1.90631e-06 3.95783e-18 2.718 ||| 0-3 ||| 2 524574 +los ||| cannot set aside its ||| 0.5 0.0211371 1.90631e-06 1.98189e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| capital resources ||| 0.0322581 0.21958 1.90631e-06 1.25555e-07 2.718 ||| 0-1 ||| 31 524574 +los ||| capital ||| 0.000143906 0.0035809 1.90631e-06 1.85e-05 2.718 ||| 0-0 ||| 6949 524574 +los ||| caps ||| 0.03125 0.138889 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 32 524574 +los ||| car manufacturers construct ||| 1 0.357046 1.90631e-06 4.28562e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| car manufacturers ||| 0.00526316 0.357046 1.90631e-06 1.94801e-08 2.718 ||| 0-1 ||| 190 524574 +los ||| car rallies and ||| 0.5 0.0514748 1.90631e-06 2.38506e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| car rallies ||| 0.5 0.0514748 1.90631e-06 1.9041e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| car ||| 0.00485256 0.0514748 2.4782e-05 0.0001731 2.718 ||| 0-0 ||| 2679 524574 +los ||| car-tax ||| 0.0769231 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 13 524574 +los ||| carcass inspections reveal clinical ||| 0.2 0.0451613 1.90631e-06 1.39536e-21 2.718 ||| 0-3 ||| 5 524574 +los ||| care of ||| 0.00316456 0.0149101 1.90631e-06 5.39291e-06 2.718 ||| 0-0 ||| 316 524574 +los ||| care products ||| 0.5 0.245259 1.90631e-06 5.07926e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| care ||| 0.00118785 0.0149101 1.33442e-05 9.92e-05 2.718 ||| 0-0 ||| 5893 524574 +los ||| careful elements ||| 0.25 0.031908 1.90631e-06 3.95833e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| carriages ||| 0.03125 0.166667 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 32 524574 +los ||| carried by ||| 0.015873 0.0062464 1.90631e-06 4.77355e-07 2.718 ||| 0-1 ||| 63 524574 +los ||| carried out by the ||| 0.00155039 0.122289 1.90631e-06 2.54217e-09 2.718 ||| 0-3 ||| 645 524574 +los ||| carried out in the course ||| 0.333333 0.122289 1.90631e-06 1.30767e-11 2.718 ||| 0-3 ||| 3 524574 +los ||| carried out in the ||| 0.00529101 0.122289 1.90631e-06 1.03644e-08 2.718 ||| 0-3 ||| 189 524574 +los ||| carried out the ||| 0.0434783 0.122289 3.81262e-06 4.84214e-07 2.718 ||| 0-2 ||| 46 524574 +los ||| carried out ||| 0.000188288 0.000641 1.90631e-06 1.23185e-08 2.718 ||| 0-1 ||| 5311 524574 +los ||| carriers and demonstrates , ||| 0.333333 0.14569 1.90631e-06 2.49654e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| carriers and demonstrates ||| 0.333333 0.14569 1.90631e-06 2.09345e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| carriers and ||| 0.0212766 0.14569 1.90631e-06 2.32606e-06 2.718 ||| 0-0 ||| 47 524574 +los ||| carriers may operate ||| 0.333333 0.14569 1.90631e-06 6.76154e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| carriers may ||| 0.25 0.14569 1.90631e-06 1.39126e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| carriers ||| 0.00646831 0.14569 9.53154e-06 0.0001857 2.718 ||| 0-0 ||| 773 524574 +los ||| carry out those ||| 0.1 0.284705 1.90631e-06 1.17364e-08 2.718 ||| 0-2 ||| 10 524574 +los ||| carry the can ||| 0.0526316 0.122289 1.90631e-06 2.34118e-07 2.718 ||| 0-1 ||| 19 524574 +los ||| carry the day ||| 0.25 0.122289 1.90631e-06 2.01664e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| carry the weight ||| 0.0625 0.122289 1.90631e-06 2.40863e-09 2.718 ||| 0-1 ||| 16 524574 +los ||| carry the ||| 0.0447761 0.122289 1.14379e-05 7.87135e-05 2.718 ||| 0-1 ||| 134 524574 +los ||| carrying out the ||| 0.0127389 0.122289 3.81262e-06 9.9406e-08 2.718 ||| 0-2 ||| 157 524574 +los ||| carrying over the ||| 0.5 0.122289 1.90631e-06 1.24958e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| cars ||| 0.00331126 0.259094 1.52505e-05 0.0007895 2.718 ||| 0-0 ||| 2416 524574 +los ||| case , the constituent ||| 0.5 0.122289 1.90631e-06 3.72169e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| case , the ||| 0.00705467 0.122289 7.62523e-06 5.47308e-05 2.718 ||| 0-2 ||| 567 524574 +los ||| case it may be of interest ||| 0.333333 0.0023774 1.90631e-06 4.10084e-16 2.718 ||| 0-5 ||| 3 524574 +los ||| case of the ||| 0.00463392 0.122289 9.53154e-06 2.49498e-05 2.718 ||| 0-2 ||| 1079 524574 +los ||| case of those ||| 0.05 0.284705 1.90631e-06 9.712e-07 2.718 ||| 0-2 ||| 20 524574 +los ||| case of ||| 0.000358038 0.0019787 3.81262e-06 3.5388e-06 2.718 ||| 0-1 ||| 5586 524574 +los ||| case take the ||| 1 0.122289 1.90631e-06 7.38894e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| case that the ||| 0.00666667 0.122289 1.90631e-06 7.72011e-06 2.718 ||| 0-2 ||| 150 524574 +los ||| case the ||| 0.0106762 0.122289 5.71893e-06 0.00045894 2.718 ||| 0-1 ||| 281 524574 +los ||| cases ' , ||| 1 0.136512 1.90631e-06 6.81826e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| cases ' ||| 0.111111 0.136512 1.90631e-06 5.71739e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| cases , the ||| 0.00442478 0.122289 1.90631e-06 6.55296e-06 2.718 ||| 0-2 ||| 226 524574 +los ||| cases , ||| 0.0027972 0.136512 1.14379e-05 0.000198499 2.718 ||| 0-0 ||| 2145 524574 +los ||| cases . ||| 0.00214133 0.136512 1.90631e-06 5.04177e-06 2.718 ||| 0-0 ||| 467 524574 +los ||| cases are continuing ||| 1 0.136512 1.90631e-06 1.56328e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| cases are ||| 0.0106383 0.136512 1.90631e-06 2.5255e-05 2.718 ||| 0-0 ||| 94 524574 +los ||| cases brought ||| 0.0555556 0.136512 1.90631e-06 4.6606e-07 2.718 ||| 0-0 ||| 18 524574 +los ||| cases drag ||| 0.333333 0.136512 1.90631e-06 9.6541e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| cases eliminate ||| 0.04 0.136512 1.90631e-06 1.91417e-08 2.718 ||| 0-0 ||| 25 524574 +los ||| cases of ||| 0.00363636 0.136512 1.14379e-05 9.04889e-05 2.718 ||| 0-0 ||| 1650 524574 +los ||| cases per 100 000 ||| 0.5 0.136512 1.90631e-06 1.05768e-16 2.718 ||| 0-0 ||| 2 524574 +los ||| cases per 100 ||| 0.5 0.136512 1.90631e-06 1.0102e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| cases per ||| 0.1 0.136512 1.90631e-06 7.37373e-08 2.718 ||| 0-0 ||| 10 524574 +los ||| cases reported by ||| 0.25 0.136512 1.90631e-06 2.70029e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| cases reported ||| 0.0769231 0.136512 1.90631e-06 5.1433e-08 2.718 ||| 0-0 ||| 13 524574 +los ||| cases to ||| 0.0128205 0.136512 1.90631e-06 0.000147904 2.718 ||| 0-0 ||| 78 524574 +los ||| cases where ||| 0.00317965 0.136512 3.81262e-06 5.04344e-07 2.718 ||| 0-0 ||| 629 524574 +los ||| cases which ||| 0.00970874 0.136512 1.90631e-06 1.41393e-05 2.718 ||| 0-0 ||| 103 524574 +los ||| cases ||| 0.0052567 0.136512 0.000114379 0.0016645 2.718 ||| 0-0 ||| 11414 524574 +los ||| cash in on the ||| 1 0.122289 1.90631e-06 3.31744e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| cash subsidy ||| 1 0.030303 1.90631e-06 1.261e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| cash withdrawal ||| 0.333333 0.030303 1.90631e-06 1.8818e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| cash ||| 0.0130112 0.030303 1.33442e-05 1.94e-05 2.718 ||| 0-0 ||| 538 524574 +los ||| cast doubt on the ||| 0.0434783 0.122289 1.90631e-06 8.8668e-12 2.718 ||| 0-3 ||| 23 524574 +los ||| catalogue of the ||| 0.2 0.062134 1.90631e-06 4.11457e-09 2.718 ||| 0-1 0-2 ||| 5 524574 +los ||| catalytic ||| 0.025 0.0816327 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 40 524574 +los ||| catch dogs and that they put down ||| 0.5 0.174107 1.90631e-06 3.47094e-22 2.718 ||| 0-1 ||| 2 524574 +los ||| catch dogs and that they put ||| 0.5 0.174107 1.90631e-06 4.97198e-19 2.718 ||| 0-1 ||| 2 524574 +los ||| catch dogs and that they ||| 0.5 0.174107 1.90631e-06 4.50933e-16 2.718 ||| 0-1 ||| 2 524574 +los ||| catch dogs and that ||| 0.5 0.174107 1.90631e-06 1.38153e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| catch dogs and ||| 0.5 0.174107 1.90631e-06 8.21286e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| catch dogs ||| 0.5 0.174107 1.90631e-06 6.5567e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| catches those ||| 1 0.284705 1.90631e-06 7.84787e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| catering ||| 0.0165289 0.0894942 7.62523e-06 2.24e-05 2.718 ||| 0-0 ||| 242 524574 +los ||| cattle breeders - ||| 0.5 0.303922 1.90631e-06 1.72868e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| cattle breeders ||| 0.111111 0.303922 3.81262e-06 4.5828e-10 2.718 ||| 0-1 ||| 18 524574 +los ||| cattle ||| 0.00969697 0.0691025 1.52505e-05 8.46e-05 2.718 ||| 0-0 ||| 825 524574 +los ||| cause any ||| 0.0357143 0.0178119 1.90631e-06 1.66895e-07 2.718 ||| 0-1 ||| 28 524574 +los ||| cause congestion ||| 0.5 0.0297872 1.90631e-06 3.68628e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| cause observers ||| 0.5 0.142857 1.90631e-06 3.8471e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| cause of the ||| 0.003861 0.122289 1.90631e-06 4.21388e-06 2.718 ||| 0-2 ||| 259 524574 +los ||| caused the ||| 0.00398406 0.122289 1.90631e-06 3.64184e-05 2.718 ||| 0-1 ||| 251 524574 +los ||| caused ||| 0.000467071 0.0003964 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 4282 524574 +los ||| causes of the ||| 0.00369004 0.122289 1.90631e-06 6.03982e-07 2.718 ||| 0-2 ||| 271 524574 +los ||| causing the ||| 0.0175439 0.122289 3.81262e-06 1.26542e-05 2.718 ||| 0-1 ||| 114 524574 +los ||| celebrated by the ||| 1 0.122289 1.90631e-06 1.21611e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| census be ||| 1 0.0549451 1.90631e-06 8.88022e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| census ||| 0.0113636 0.0549451 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 88 524574 +los ||| central part , ||| 1 0.0063457 1.90631e-06 4.70601e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| central part ||| 0.015625 0.0063457 1.90631e-06 3.94618e-08 2.718 ||| 0-0 ||| 64 524574 +los ||| central to the ||| 0.00512821 0.122289 1.90631e-06 1.04057e-06 2.718 ||| 0-2 ||| 195 524574 +los ||| central ||| 0.00259837 0.0063457 2.66883e-05 3.31e-05 2.718 ||| 0-0 ||| 5388 524574 +los ||| centres of ||| 0.00425532 0.185366 1.90631e-06 2.4105e-05 2.718 ||| 0-0 ||| 235 524574 +los ||| centres ||| 0.00383468 0.185366 1.71568e-05 0.0004434 2.718 ||| 0-0 ||| 2347 524574 +los ||| cereal ||| 0.00961538 0.151515 3.81262e-06 7.78e-05 2.718 ||| 0-0 ||| 208 524574 +los ||| certain European ||| 0.142857 0.0030672 1.90631e-06 2.11334e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| certain amount of frustration on reading it ||| 1 0.0019787 1.90631e-06 5.50163e-25 2.718 ||| 0-2 ||| 1 524574 +los ||| certain amount of frustration on reading ||| 1 0.0019787 1.90631e-06 3.09372e-23 2.718 ||| 0-2 ||| 1 524574 +los ||| certain amount of frustration on ||| 1 0.0019787 1.90631e-06 1.07421e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| certain amount of frustration ||| 1 0.0019787 1.90631e-06 1.60545e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| certain amount of ||| 0.00497512 0.0019787 1.90631e-06 2.29351e-10 2.718 ||| 0-2 ||| 201 524574 +los ||| certain aspects of ||| 0.00438596 0.0019787 1.90631e-06 6.6458e-11 2.718 ||| 0-2 ||| 228 524574 +los ||| certain capital resources ||| 1 0.21958 1.90631e-06 3.57833e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| certain countries ||| 0.00285307 0.0957208 3.81262e-06 2.37582e-06 2.718 ||| 0-1 ||| 701 524574 +los ||| certain crimes ||| 0.25 0.0030672 1.90631e-06 1.79488e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| certain levels ||| 0.0555556 0.222552 1.90631e-06 5.60567e-07 2.718 ||| 0-1 ||| 18 524574 +los ||| certain matters for themselves : ||| 1 0.0015353 1.90631e-06 6.72859e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| certain matters for themselves ||| 1 0.0015353 1.90631e-06 1.9978e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| certain matters for ||| 1 0.0015353 1.90631e-06 4.64929e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| certain points ||| 0.00355872 0.0213308 1.90631e-06 8.5899e-08 2.718 ||| 0-1 ||| 281 524574 +los ||| certain politicians in ||| 0.5 0.299137 1.90631e-06 8.62946e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| certain politicians ||| 0.0454545 0.299137 1.90631e-06 4.03161e-07 2.718 ||| 0-1 ||| 22 524574 +los ||| certain reservations as to their suitability ||| 1 0.0236713 1.90631e-06 6.91695e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| certain reservations as to their ||| 1 0.0236713 1.90631e-06 3.84275e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| certain reservations ||| 0.016129 0.0030672 1.90631e-06 4.108e-10 2.718 ||| 0-0 ||| 62 524574 +los ||| certain what ||| 0.2 0.0061209 1.90631e-06 2.7323e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| certain ||| 0.00261196 0.0030672 0.000104847 6.32e-05 2.718 ||| 0-0 ||| 21057 524574 +los ||| certainly already the case ||| 0.333333 0.122289 1.90631e-06 5.32401e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| certainly already the ||| 0.333333 0.122289 1.90631e-06 4.97617e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| certainly the ||| 0.00401606 0.122289 1.90631e-06 0.000107454 2.718 ||| 0-1 ||| 249 524574 +los ||| certification ||| 0.0011274 0.020202 1.90631e-06 1.75e-05 2.718 ||| 0-0 ||| 887 524574 +los ||| chairman of the Socialist Party , is ||| 0.5 0.122289 1.90631e-06 1.05819e-18 2.718 ||| 0-2 ||| 2 524574 +los ||| chairman of the Socialist Party , ||| 0.5 0.122289 1.90631e-06 3.37638e-17 2.718 ||| 0-2 ||| 2 524574 +los ||| chairman of the Socialist Party ||| 0.5 0.122289 1.90631e-06 2.83123e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| chairman of the Socialist ||| 0.25 0.122289 1.90631e-06 1.87748e-12 2.718 ||| 0-2 ||| 4 524574 +los ||| chairman of the ||| 0.00107527 0.122289 1.90631e-06 2.26202e-07 2.718 ||| 0-2 ||| 930 524574 +los ||| chairmen , in today passing a resolution ||| 1 0.183633 1.90631e-06 1.02139e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| chairmen , in today passing a ||| 1 0.183633 1.90631e-06 1.16864e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| chairmen , in today passing ||| 1 0.183633 1.90631e-06 2.63647e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| chairmen , in today ||| 1 0.183633 1.90631e-06 1.02987e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| chairmen , in ||| 1 0.183633 1.90631e-06 2.28201e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| chairmen , ||| 0.05 0.183633 1.90631e-06 1.06614e-05 2.718 ||| 0-0 ||| 20 524574 +los ||| chairmen would lead ||| 0.333333 0.183633 1.90631e-06 1.00997e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| chairmen would ||| 0.333333 0.183633 1.90631e-06 5.24662e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| chairmen ||| 0.00729927 0.183633 5.71893e-06 8.94e-05 2.718 ||| 0-0 ||| 411 524574 +los ||| challenge the ||| 0.0122699 0.122289 3.81262e-06 1.83593e-05 2.718 ||| 0-1 ||| 163 524574 +los ||| challenges are ||| 0.0166667 0.145386 1.90631e-06 1.81739e-05 2.718 ||| 0-0 ||| 60 524574 +los ||| challenges ||| 0.00110299 0.145386 1.52505e-05 0.0011978 2.718 ||| 0-0 ||| 7253 524574 +los ||| change once the ||| 0.5 0.122289 1.90631e-06 2.14145e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| change the whole basis ||| 0.5 0.122289 1.90631e-06 1.75792e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| change the whole ||| 0.125 0.122289 1.90631e-06 2.96046e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| change the ||| 0.00206327 0.122289 5.71893e-06 5.23327e-05 2.718 ||| 0-1 ||| 1454 524574 +los ||| changes in ||| 0.00166251 0.0936843 3.81262e-06 1.94781e-05 2.718 ||| 0-0 ||| 1203 524574 +los ||| changes ||| 0.00130194 0.0936843 2.28757e-05 0.00091 2.718 ||| 0-0 ||| 9217 524574 +los ||| channel them ||| 0.166667 0.038218 1.90631e-06 8.0504e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| channels to ||| 0.0384615 0.138739 1.90631e-06 1.33021e-05 2.718 ||| 0-0 ||| 26 524574 +los ||| channels ||| 0.00271493 0.138739 5.71893e-06 0.0001497 2.718 ||| 0-0 ||| 1105 524574 +los ||| chapters ||| 0.00291121 0.0648012 3.81262e-06 4.28e-05 2.718 ||| 0-0 ||| 687 524574 +los ||| chargers ||| 0.0285714 0.305556 1.90631e-06 1.07e-05 2.718 ||| 0-0 ||| 35 524574 +los ||| charges , ||| 0.0104167 0.0631373 1.90631e-06 1.86634e-05 2.718 ||| 0-0 ||| 96 524574 +los ||| charges or commissions . ||| 1 0.0631373 1.90631e-06 3.79378e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| charges or commissions ||| 0.5 0.0631373 1.90631e-06 1.25249e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| charges or ||| 0.111111 0.0631373 1.90631e-06 1.78926e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| charges to ||| 0.0243902 0.0631373 1.90631e-06 1.39063e-05 2.718 ||| 0-0 ||| 41 524574 +los ||| charges ||| 0.00476644 0.0631373 1.90631e-05 0.0001565 2.718 ||| 0-0 ||| 2098 524574 +los ||| charging ||| 0.00211416 0.0136612 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 473 524574 +los ||| chart early ||| 1 0.0061936 1.90631e-06 6.12e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| chart the effects ||| 0.333333 0.122289 1.90631e-06 4.19262e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| chart the ||| 0.05 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 20 524574 +los ||| chartered surveyors ||| 0.5 0.25 1.90631e-06 4.06e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| cheap ||| 0.000988142 0.0015588 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1012 524574 +los ||| check of those ||| 1 0.284705 1.90631e-06 2.77771e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| check the ||| 0.00564972 0.122289 1.90631e-06 1.31261e-05 2.718 ||| 0-1 ||| 177 524574 +los ||| checked ||| 0.00213675 0.0016978 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 468 524574 +los ||| checkpoints ||| 0.0212766 0.152542 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 47 524574 +los ||| checks altogether ||| 0.333333 0.146389 1.90631e-06 8.01528e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| checks on ||| 0.0137931 0.146389 3.81262e-06 1.96448e-06 2.718 ||| 0-0 ||| 145 524574 +los ||| checks ||| 0.00491535 0.146389 1.71568e-05 0.0002936 2.718 ||| 0-0 ||| 1831 524574 +los ||| cheese ||| 0.00724638 0.0216216 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 138 524574 +los ||| chemical ||| 0.00217707 0.0057971 5.71893e-06 7.8e-06 2.718 ||| 0-0 ||| 1378 524574 +los ||| chemicals ||| 0.00144092 0.0674651 3.81262e-06 0.0001643 2.718 ||| 0-0 ||| 1388 524574 +los ||| child labour ||| 0.00210084 0.075445 1.90631e-06 1.56686e-08 2.718 ||| 0-0 ||| 476 524574 +los ||| child protection ||| 0.00934579 0.075445 1.90631e-06 3.6814e-08 2.718 ||| 0-0 ||| 107 524574 +los ||| child soldiers ||| 0.00699301 0.130248 1.90631e-06 4.89218e-09 2.718 ||| 0-1 ||| 143 524574 +los ||| child sports stars ||| 1 0.0836397 1.90631e-06 4.10109e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| child sports ||| 1 0.0836397 1.90631e-06 2.92935e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| child ||| 0.0045676 0.075445 2.85946e-05 0.0003627 2.718 ||| 0-0 ||| 3284 524574 +los ||| child-care ||| 0.027027 0.2 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 37 524574 +los ||| childcare ||| 0.00580271 0.099897 5.71893e-06 9.43e-05 2.718 ||| 0-0 ||| 517 524574 +los ||| children 's ||| 0.0246305 0.293415 9.53154e-06 1.05022e-05 2.718 ||| 0-0 ||| 203 524574 +los ||| children , little ||| 1 0.293415 1.90631e-06 1.06474e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| children , ||| 0.00160858 0.293415 5.71893e-06 0.000657654 2.718 ||| 0-0 ||| 1865 524574 +los ||| children and grandchildren and future legislators ||| 1 0.212676 1.90631e-06 1.82301e-22 2.718 ||| 0-5 ||| 1 524574 +los ||| children and ||| 0.00222099 0.293415 7.62523e-06 6.90766e-05 2.718 ||| 0-0 ||| 1801 524574 +los ||| children at ||| 0.015873 0.293415 1.90631e-06 2.30923e-05 2.718 ||| 0-0 ||| 63 524574 +los ||| children from being ||| 0.1 0.293415 1.90631e-06 2.52732e-08 2.718 ||| 0-0 ||| 10 524574 +los ||| children from ||| 0.00381679 0.293415 1.90631e-06 8.88087e-06 2.718 ||| 0-0 ||| 262 524574 +los ||| children in a ||| 0.0714286 0.293415 1.90631e-06 5.23219e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| children in ||| 0.003367 0.293415 3.81262e-06 0.000118039 2.718 ||| 0-0 ||| 594 524574 +los ||| children learn ||| 0.142857 0.293415 1.90631e-06 1.92463e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| children to ||| 0.00369004 0.293415 1.90631e-06 0.000490026 2.718 ||| 0-0 ||| 271 524574 +los ||| children under the ||| 0.0333333 0.122289 1.90631e-06 1.14663e-08 2.718 ||| 0-2 ||| 30 524574 +los ||| children ||| 0.00459313 0.293415 0.000127723 0.0055147 2.718 ||| 0-0 ||| 14587 524574 +los ||| children ’ s ||| 0.030303 0.163785 1.90631e-06 1.51409e-08 2.718 ||| 0-0 0-2 ||| 33 524574 +los ||| choice for the ||| 0.03125 0.122289 1.90631e-06 1.47039e-07 2.718 ||| 0-2 ||| 32 524574 +los ||| choices of the ||| 0.0625 0.122289 1.90631e-06 1.67902e-07 2.718 ||| 0-2 ||| 16 524574 +los ||| choose at any time ||| 1 0.0178119 1.90631e-06 2.01271e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| choose at any ||| 1 0.0178119 1.90631e-06 1.22599e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| choose the ||| 0.00793651 0.122289 3.81262e-06 1.35979e-05 2.718 ||| 0-1 ||| 252 524574 +los ||| choosing the ||| 0.0166667 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-1 ||| 60 524574 +los ||| chosen the path ||| 0.0909091 0.122289 1.90631e-06 3.93872e-10 2.718 ||| 0-1 ||| 11 524574 +los ||| chosen the ||| 0.0131579 0.122289 1.90631e-06 1.03378e-05 2.718 ||| 0-1 ||| 76 524574 +los ||| church ||| 0.00265252 0.0233236 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 377 524574 +los ||| cigarette smuggling ||| 0.016129 0.0469043 1.90631e-06 1.215e-10 2.718 ||| 0-0 ||| 62 524574 +los ||| cigarette ||| 0.0125786 0.0469043 3.81262e-06 2.43e-05 2.718 ||| 0-0 ||| 159 524574 +los ||| cigarettes more attractive ||| 1 0.255717 1.90631e-06 2.94981e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| cigarettes more ||| 1 0.255717 1.90631e-06 2.73131e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| cigarettes ||| 0.00536193 0.255717 3.81262e-06 0.0001196 2.718 ||| 0-0 ||| 373 524574 +los ||| cinema , the ||| 0.333333 0.122289 1.90631e-06 7.16171e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| circles ||| 0.0136986 0.21748 9.53154e-06 0.000104 2.718 ||| 0-0 ||| 365 524574 +los ||| cite the ||| 0.0181818 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-1 ||| 55 524574 +los ||| citizen ||| 0.00032457 0.0006819 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 3081 524574 +los ||| citizens ' ||| 0.00400802 0.16901 1.14379e-05 8.05178e-05 2.718 ||| 0-0 0-1 ||| 1497 524574 +los ||| citizens , ||| 0.000364432 0.293572 1.90631e-06 0.00180518 2.718 ||| 0-0 ||| 2744 524574 +los ||| citizens ; if ||| 1 0.293572 1.90631e-06 3.89578e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| citizens ; ||| 0.0151515 0.293572 1.90631e-06 4.66226e-06 2.718 ||| 0-0 ||| 66 524574 +los ||| citizens an ||| 0.0666667 0.293572 1.90631e-06 6.72803e-05 2.718 ||| 0-0 ||| 15 524574 +los ||| citizens as ||| 0.00833333 0.293572 1.90631e-06 0.000154466 2.718 ||| 0-0 ||| 120 524574 +los ||| citizens concerned are ||| 1 0.293572 1.90631e-06 3.69451e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| citizens concerned ||| 0.0434783 0.293572 1.90631e-06 2.43497e-05 2.718 ||| 0-0 ||| 23 524574 +los ||| citizens feel are ||| 1 0.293572 1.90631e-06 3.88376e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| citizens feel ||| 0.0222222 0.293572 1.90631e-06 2.5597e-06 2.718 ||| 0-0 ||| 45 524574 +los ||| citizens have ||| 0.00318471 0.293572 1.90631e-06 0.000181038 2.718 ||| 0-0 ||| 314 524574 +los ||| citizens in ||| 0.00121212 0.146849 1.90631e-06 2.09045e-06 2.718 ||| 0-0 0-1 ||| 825 524574 +los ||| citizens living ||| 0.0172414 0.293572 1.90631e-06 1.2685e-06 2.718 ||| 0-0 ||| 58 524574 +los ||| citizens money ' ||| 1 0.0444479 1.90631e-06 9.47381e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| citizens of ||| 0.000738734 0.293572 5.71893e-06 0.000822919 2.718 ||| 0-0 ||| 4061 524574 +los ||| citizens to ||| 0.00125313 0.293572 1.90631e-06 0.00134506 2.718 ||| 0-0 ||| 798 524574 +los ||| citizens who are ||| 0.0142857 0.293572 1.90631e-06 2.02571e-07 2.718 ||| 0-0 ||| 70 524574 +los ||| citizens who contribute ||| 0.5 0.293572 1.90631e-06 5.19354e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| citizens who ||| 0.00361664 0.293572 3.81262e-06 1.3351e-05 2.718 ||| 0-0 ||| 553 524574 +los ||| citizens would welcome ||| 0.5 0.293572 1.90631e-06 9.78081e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| citizens would ||| 0.0333333 0.293572 1.90631e-06 8.88357e-05 2.718 ||| 0-0 ||| 30 524574 +los ||| citizens ||| 0.0024473 0.293572 0.000177287 0.0151372 2.718 ||| 0-0 ||| 38001 524574 +los ||| city ||| 0.000680272 0.000677 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1470 524574 +los ||| civil rights ||| 0.00429185 0.043844 3.81262e-06 1.05453e-07 2.718 ||| 0-0 ||| 466 524574 +los ||| civil society ||| 0.000269107 0.043844 1.90631e-06 3.05133e-08 2.718 ||| 0-0 ||| 3716 524574 +los ||| civil ||| 0.0161383 0.043844 0.00016013 0.000527 2.718 ||| 0-0 ||| 5205 524574 +los ||| civilians have fled , without recognition and ||| 1 0.149849 1.90631e-06 1.50275e-23 2.718 ||| 0-0 ||| 1 524574 +los ||| civilians have fled , without recognition ||| 1 0.149849 1.90631e-06 1.19971e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| civilians have fled , without ||| 1 0.149849 1.90631e-06 4.26944e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| civilians have fled , ||| 1 0.149849 1.90631e-06 1.93187e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| civilians have fled ||| 0.5 0.149849 1.90631e-06 1.61995e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| civilians have ||| 0.0714286 0.149849 1.90631e-06 2.31422e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| civilians ||| 0.00255319 0.149849 5.71893e-06 0.0001935 2.718 ||| 0-0 ||| 1175 524574 +los ||| clarify the ||| 0.0017762 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-1 ||| 563 524574 +los ||| clashes ||| 0.00666667 0.121884 3.81262e-06 4.28e-05 2.718 ||| 0-0 ||| 300 524574 +los ||| class services ||| 0.333333 0.272175 1.90631e-06 6.70422e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| clause was not introduced , the Member ||| 1 0.122289 1.90631e-06 2.52987e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| clause was not introduced , the ||| 1 0.122289 1.90631e-06 4.90952e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| cleaning products ||| 0.2 0.245259 1.90631e-06 1.10092e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| cleaning up the ||| 0.0285714 0.122289 1.90631e-06 3.2185e-09 2.718 ||| 0-2 ||| 35 524574 +los ||| cleaning up ||| 0.0108696 0.0239044 1.90631e-06 1.97809e-08 2.718 ||| 0-0 ||| 92 524574 +los ||| cleaning ||| 0.00793651 0.0239044 3.81262e-06 5.8e-06 2.718 ||| 0-0 ||| 252 524574 +los ||| clear , the ||| 0.0322581 0.122289 1.90631e-06 1.70295e-05 2.718 ||| 0-2 ||| 31 524574 +los ||| clear from the figure ||| 1 0.122289 1.90631e-06 1.75463e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| clear from the ||| 0.0101523 0.122289 3.81262e-06 2.29964e-07 2.718 ||| 0-2 ||| 197 524574 +los ||| clear our ||| 0.0285714 0.0248369 1.90631e-06 1.18882e-06 2.718 ||| 0-1 ||| 35 524574 +los ||| clear rules governing their ||| 1 0.0236713 1.90631e-06 1.7168e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| clear that standards vary too much ||| 1 0.0495175 1.90631e-06 2.29454e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| clear that standards vary too ||| 1 0.0495175 1.90631e-06 2.28608e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| clear that standards vary ||| 0.5 0.0495175 1.90631e-06 1.6797e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| clear that standards ||| 0.333333 0.0495175 1.90631e-06 4.66585e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| clear that the ||| 0.00133601 0.122289 3.81262e-06 2.40212e-06 2.718 ||| 0-2 ||| 1497 524574 +los ||| clear the land of trees ||| 0.25 0.122289 1.90631e-06 1.82318e-15 2.718 ||| 0-1 ||| 4 524574 +los ||| clear the land of ||| 0.25 0.122289 1.90631e-06 2.98881e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| clear the land ||| 0.25 0.122289 1.90631e-06 5.49778e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| clear the ||| 0.0137931 0.122289 3.81262e-06 0.0001428 2.718 ||| 0-1 ||| 145 524574 +los ||| cleared by fires proven ||| 0.333333 0.234127 1.90631e-06 3.0106e-16 2.718 ||| 0-2 ||| 3 524574 +los ||| cleared by fires ||| 0.25 0.234127 1.90631e-06 2.15043e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| clearing the ||| 0.0285714 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-1 ||| 35 524574 +los ||| clearly and become more aware of the ||| 1 0.122289 1.90631e-06 4.83112e-18 2.718 ||| 0-6 ||| 1 524574 +los ||| clearly the ||| 0.00511509 0.122289 3.81262e-06 7.82845e-05 2.718 ||| 0-1 ||| 391 524574 +los ||| clients ||| 0.00990099 0.221311 5.71893e-06 7.88e-05 2.718 ||| 0-0 ||| 303 524574 +los ||| clinging to the Americans ||| 1 0.122289 1.90631e-06 3.94122e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| clinging to the ||| 0.166667 0.122289 1.90631e-06 4.19279e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| clinical ||| 0.00380228 0.0451613 1.90631e-06 1.36e-05 2.718 ||| 0-0 ||| 263 524574 +los ||| clog up doctors ' ||| 1 0.309826 1.90631e-06 1.78158e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| clog up doctors ||| 1 0.309826 1.90631e-06 5.18669e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| close a ||| 0.0344828 0.0006977 1.90631e-06 2.5709e-07 2.718 ||| 0-0 ||| 29 524574 +los ||| close its plant at ||| 1 0.0211371 1.90631e-06 1.43195e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| close its plant ||| 0.333333 0.0211371 1.90631e-06 3.41966e-12 2.718 ||| 0-1 ||| 3 524574 +los ||| close its ||| 0.030303 0.0211371 1.90631e-06 3.16635e-07 2.718 ||| 0-1 ||| 33 524574 +los ||| close our ||| 0.0102041 0.0248369 1.90631e-06 5.29594e-07 2.718 ||| 0-1 ||| 98 524574 +los ||| close their ||| 0.0277778 0.0236713 1.90631e-06 3.39266e-07 2.718 ||| 0-1 ||| 36 524574 +los ||| close to the ||| 0.00524934 0.122289 3.81262e-06 5.65265e-06 2.718 ||| 0-2 ||| 381 524574 +los ||| close ||| 0.000632211 0.0006977 7.62523e-06 5.8e-06 2.718 ||| 0-0 ||| 6327 524574 +los ||| closer links ||| 0.0175439 0.0836969 1.90631e-06 4.36863e-08 2.718 ||| 0-1 ||| 57 524574 +los ||| closer towards the ||| 0.5 0.122289 1.90631e-06 1.16037e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| clubs ||| 0.00447427 0.26412 3.81262e-06 0.0001546 2.718 ||| 0-0 ||| 447 524574 +los ||| coach and ||| 0.0217391 0.0062305 1.90631e-06 2.37992e-08 2.718 ||| 0-0 ||| 46 524574 +los ||| coach ||| 0.00638978 0.0062305 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 313 524574 +los ||| coaches ||| 0.00840336 0.238806 1.90631e-06 3.11e-05 2.718 ||| 0-0 ||| 119 524574 +los ||| coastal ||| 0.000834725 0.0022438 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 1198 524574 +los ||| cocktail ||| 0.0238095 0.0294118 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 42 524574 +los ||| codes are ||| 0.25 0.172628 1.90631e-06 1.63713e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| codes of practice ||| 0.0625 0.172628 1.90631e-06 6.18263e-10 2.718 ||| 0-0 ||| 16 524574 +los ||| codes of ||| 0.00321543 0.172628 1.90631e-06 5.86588e-06 2.718 ||| 0-0 ||| 311 524574 +los ||| codes ||| 0.00528169 0.172628 5.71893e-06 0.0001079 2.718 ||| 0-0 ||| 568 524574 +los ||| coffee shops ||| 0.25 0.0929293 1.90631e-06 1.1175e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| coffee shops ’ ||| 0.5 0.0139748 1.90631e-06 1.02714e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| cofinancing the ||| 0.0909091 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-1 ||| 11 524574 +los ||| coherent with the proposals ||| 0.5 0.122289 1.90631e-06 1.91963e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| coherent with the ||| 0.0357143 0.122289 1.90631e-06 1.97493e-08 2.718 ||| 0-2 ||| 28 524574 +los ||| cold ||| 0.00194553 0.0015823 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 514 524574 +los ||| collaboration between police forces and those ||| 1 0.284705 1.90631e-06 2.42254e-22 2.718 ||| 0-5 ||| 1 524574 +los ||| collapse of the ||| 0.00362319 0.122289 1.90631e-06 2.42526e-07 2.718 ||| 0-2 ||| 276 524574 +los ||| collateral ||| 0.00568182 0.0290698 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 176 524574 +los ||| colleagues , and I mean it very ||| 1 0.0749603 1.90631e-06 1.31384e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| colleagues , and I mean it ||| 1 0.0749603 1.90631e-06 3.77595e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| colleagues , and I mean ||| 1 0.0749603 1.90631e-06 2.12332e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| colleagues , and I ||| 0.333333 0.0749603 1.90631e-06 8.23952e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| colleagues , and ||| 0.0169492 0.0749603 1.90631e-06 1.16484e-06 2.718 ||| 0-0 ||| 59 524574 +los ||| colleagues , ||| 0.00323625 0.0749603 7.62523e-06 9.29948e-05 2.718 ||| 0-0 ||| 1236 524574 +los ||| colleagues and are ||| 1 0.0749603 1.90631e-06 1.48202e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| colleagues and ||| 0.00249377 0.0749603 1.90631e-06 9.7677e-06 2.718 ||| 0-0 ||| 401 524574 +los ||| colleagues will know ||| 0.2 0.0749603 1.90631e-06 1.74052e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| colleagues will ||| 0.0208333 0.0749603 1.90631e-06 6.74621e-06 2.718 ||| 0-0 ||| 48 524574 +los ||| colleagues ||| 0.00222222 0.0749603 3.81262e-05 0.0007798 2.718 ||| 0-0 ||| 9000 524574 +los ||| collection , ||| 0.0060241 0.001443 1.90631e-06 2.26584e-07 2.718 ||| 0-0 ||| 166 524574 +los ||| collection ||| 0.000488998 0.001443 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 2045 524574 +los ||| collective redress ||| 0.0153846 0.0102264 3.81262e-06 8.704e-11 2.718 ||| 0-0 ||| 130 524574 +los ||| collective ||| 0.00308285 0.0102264 1.52505e-05 2.72e-05 2.718 ||| 0-0 ||| 2595 524574 +los ||| collectively paying the price ||| 0.25 0.122289 1.90631e-06 3.48216e-15 2.718 ||| 0-2 ||| 4 524574 +los ||| collectively paying the ||| 0.25 0.122289 1.90631e-06 6.8144e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| collectively the ||| 0.125 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-1 ||| 8 524574 +los ||| combat forced child labour ||| 1 0.075445 1.90631e-06 2.143e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| combat forced child ||| 1 0.075445 1.90631e-06 4.96065e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| combine both ||| 0.111111 0.0352574 1.90631e-06 9.46262e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| combine the ||| 0.00793651 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-1 ||| 126 524574 +los ||| combined factors - these ||| 1 0.0851315 1.90631e-06 2.76034e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| combined factors - ||| 1 0.0851315 1.90631e-06 2.66159e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| combined factors ||| 1 0.0851315 1.90631e-06 7.056e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| combined with the variety of ||| 0.5 0.122289 1.90631e-06 8.6429e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| combined with the variety ||| 0.5 0.122289 1.90631e-06 1.58982e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| combined with the ||| 0.00609756 0.122289 1.90631e-06 6.91226e-08 2.718 ||| 0-2 ||| 164 524574 +los ||| combined ||| 0.000619963 0.0028785 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 1613 524574 +los ||| come , the ||| 0.0714286 0.122289 1.90631e-06 4.3446e-05 2.718 ||| 0-2 ||| 14 524574 +los ||| come from the ||| 0.00316456 0.122289 1.90631e-06 5.86689e-07 2.718 ||| 0-2 ||| 316 524574 +los ||| come from ||| 0.000677966 0.001099 1.90631e-06 1.6434e-07 2.718 ||| 0-1 ||| 1475 524574 +los ||| come into line with the ||| 0.111111 0.122289 1.90631e-06 7.04145e-13 2.718 ||| 0-4 ||| 9 524574 +los ||| come the ||| 0.08 0.122289 3.81262e-06 0.000364313 2.718 ||| 0-1 ||| 25 524574 +los ||| come up against the ||| 0.0526316 0.122289 1.90631e-06 2.96458e-10 2.718 ||| 0-3 ||| 19 524574 +los ||| come up ||| 0.00104603 0.0031618 1.90631e-06 1.80052e-07 2.718 ||| 0-1 ||| 956 524574 +los ||| comes to EUR ||| 1 0.0343255 1.90631e-06 2.02744e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| comes to approving funds ||| 0.166667 0.220459 1.90631e-06 6.64718e-13 2.718 ||| 0-3 ||| 6 524574 +los ||| comes to the ||| 0.00902062 0.122289 1.33442e-05 1.52389e-05 2.718 ||| 0-2 ||| 776 524574 +los ||| comes up , going through the ||| 1 0.122289 1.90631e-06 2.74766e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| coming back ||| 0.010101 0.0093772 1.90631e-06 4.37863e-08 2.718 ||| 0-0 ||| 99 524574 +los ||| coming in and a ||| 1 0.0093772 1.90631e-06 7.73663e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| coming in and ||| 0.166667 0.0093772 1.90631e-06 1.7454e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| coming in ||| 0.008 0.0093772 1.90631e-06 1.39343e-06 2.718 ||| 0-0 ||| 125 524574 +los ||| coming into ||| 0.00288184 0.0093772 1.90631e-06 6.68382e-08 2.718 ||| 0-0 ||| 347 524574 +los ||| coming on ||| 0.05 0.0093772 1.90631e-06 4.35584e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| coming out of the ||| 0.030303 0.122289 1.90631e-06 1.73557e-08 2.718 ||| 0-3 ||| 33 524574 +los ||| coming ||| 0.00313418 0.0093772 3.05009e-05 6.51e-05 2.718 ||| 0-0 ||| 5105 524574 +los ||| commemorate the ||| 0.0208333 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-1 ||| 48 524574 +los ||| comment ' ||| 0.333333 0.0444479 1.90631e-06 2.43087e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| comment on the ||| 0.00182815 0.122289 1.90631e-06 1.31166e-07 2.718 ||| 0-2 ||| 547 524574 +los ||| comments of the Member of ||| 1 0.062134 1.90631e-06 1.98732e-12 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| comments of the Member ||| 1 0.062134 1.90631e-06 3.65558e-11 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| comments of the ||| 0.0172414 0.062134 1.90631e-06 7.09408e-08 2.718 ||| 0-1 0-2 ||| 58 524574 +los ||| commercial and ||| 0.00361011 0.004526 1.90631e-06 2.19203e-07 2.718 ||| 0-0 ||| 277 524574 +los ||| commercial directories ||| 0.25 0.004526 1.90631e-06 7e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| commercial farms ||| 0.142857 0.004526 1.90631e-06 1.645e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| commercial users ||| 0.125 0.373264 1.90631e-06 2.39552e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| commercial ||| 0.00266731 0.004526 2.09694e-05 1.75e-05 2.718 ||| 0-0 ||| 4124 524574 +los ||| commissioned by the Member States , ||| 1 0.122289 1.90631e-06 9.24581e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| commissioned by the Member States ||| 1 0.122289 1.90631e-06 7.75299e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| commissioned by the Member ||| 1 0.122289 1.90631e-06 1.62468e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| commissioned by the ||| 0.015873 0.122289 1.90631e-06 3.15289e-09 2.718 ||| 0-2 ||| 63 524574 +los ||| commissioned the inquiry ||| 1 0.122289 1.90631e-06 2.82253e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| commissioned the ||| 0.166667 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| commit acts of ||| 0.0714286 0.139342 1.90631e-06 7.40995e-10 2.718 ||| 0-1 ||| 14 524574 +los ||| commit acts ||| 0.0714286 0.139342 1.90631e-06 1.36303e-08 2.718 ||| 0-1 ||| 14 524574 +los ||| commit the ||| 0.0163934 0.122289 1.90631e-06 1.02092e-05 2.718 ||| 0-1 ||| 61 524574 +los ||| commitment appropriations ||| 0.00490196 0.189378 1.90631e-06 3.96571e-08 2.718 ||| 0-1 ||| 204 524574 +los ||| commitment for the whole of ||| 1 0.0619123 1.90631e-06 6.49105e-13 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| commitment for the whole ||| 0.5 0.0619123 1.90631e-06 1.194e-11 2.718 ||| 0-1 0-2 ||| 2 524574 +los ||| commitment for the ||| 0.0769231 0.0619123 1.90631e-06 2.11066e-08 2.718 ||| 0-1 0-2 ||| 13 524574 +los ||| commitments ( ||| 1 0.115775 1.90631e-06 7.06037e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| commitments up to ||| 1 0.115775 1.90631e-06 2.21864e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| commitments up ||| 1 0.115775 1.90631e-06 2.49683e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| commitments ||| 0.00307161 0.115775 3.05009e-05 0.0007321 2.718 ||| 0-0 ||| 5209 524574 +los ||| committed to its project ||| 1 0.0211371 1.90631e-06 9.61385e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| committed to its ||| 0.0833333 0.0211371 1.90631e-06 1.57089e-08 2.718 ||| 0-2 ||| 12 524574 +los ||| committee with the kind ||| 1 0.122289 1.90631e-06 1.03605e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| committee with the ||| 0.1 0.122289 1.90631e-06 2.12305e-07 2.718 ||| 0-2 ||| 10 524574 +los ||| committing the ||| 0.030303 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-1 ||| 33 524574 +los ||| commodities ||| 0.00235849 0.129082 1.90631e-06 8.07e-05 2.718 ||| 0-0 ||| 424 524574 +los ||| commodity derivative ||| 1 0.11236 1.90631e-06 6.305e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| commodity substances by ||| 0.111111 0.0062464 1.90631e-06 2.2742e-13 2.718 ||| 0-2 ||| 9 524574 +los ||| commodity ||| 0.00590551 0.039823 5.71893e-06 2.63e-05 2.718 ||| 0-0 ||| 508 524574 +los ||| common ||| 3.11507e-05 3.1e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 32102 524574 +los ||| communautaire ||| 0.0116279 0.0011351 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 86 524574 +los ||| communicate our ||| 0.1 0.0248369 1.90631e-06 1.67842e-08 2.718 ||| 0-1 ||| 10 524574 +los ||| communications services ||| 0.037037 0.272175 1.90631e-06 4.75532e-08 2.718 ||| 0-1 ||| 27 524574 +los ||| communiqués ||| 0.0384615 0.16 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| commuters ||| 0.0344828 0.139535 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 29 524574 +los ||| companies ’ shackles ||| 1 0.0139748 1.90631e-06 4.17451e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| companies ’ ||| 0.0357143 0.0139748 1.90631e-06 3.79501e-08 2.718 ||| 0-1 ||| 28 524574 +los ||| company directors ||| 0.1 0.194581 1.90631e-06 2.90304e-09 2.718 ||| 0-1 ||| 10 524574 +los ||| comparative ||| 0.00230947 0.0045147 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 433 524574 +los ||| compare the ||| 0.00689655 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-1 ||| 145 524574 +los ||| compare with ||| 0.03125 0.0026076 1.90631e-06 1.21496e-08 2.718 ||| 0-0 ||| 32 524574 +los ||| compare ||| 0.00159236 0.0026076 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 628 524574 +los ||| comparison with the ||| 0.00381679 0.122289 1.90631e-06 3.84015e-08 2.718 ||| 0-2 ||| 262 524574 +los ||| compel manufacturers ||| 0.5 0.357046 1.90631e-06 1.12189e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| compensated for , and any ||| 1 0.0030769 1.90631e-06 1.73611e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| compensated for , and ||| 1 0.0030769 1.90631e-06 1.14807e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| compensated for , ||| 1 0.0030769 1.90631e-06 9.16556e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| compensated for ||| 0.0144928 0.0030769 1.90631e-06 7.6857e-09 2.718 ||| 0-0 ||| 69 524574 +los ||| compensated ||| 0.00444444 0.0030769 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 225 524574 +los ||| compensation provided ||| 0.166667 0.0004834 1.90631e-06 4.3548e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| compensation ||| 0.000290192 0.0004834 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 3446 524574 +los ||| competence of the ||| 0.00225225 0.122289 1.90631e-06 5.62007e-07 2.718 ||| 0-2 ||| 444 524574 +los ||| competences of the European Aviation ||| 1 0.122289 1.90631e-06 8.14101e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| competences of the European ||| 0.125 0.122289 1.90631e-06 4.52278e-10 2.718 ||| 0-2 ||| 8 524574 +los ||| competences of the ||| 0.00549451 0.122289 1.90631e-06 1.35255e-07 2.718 ||| 0-2 ||| 182 524574 +los ||| competing ||| 0.00534759 0.0123239 5.71893e-06 6.8e-06 2.718 ||| 0-0 ||| 561 524574 +los ||| competition from the point of view ||| 0.5 0.122289 1.90631e-06 1.07722e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| competition from the point of ||| 0.5 0.122289 1.90631e-06 1.19254e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| competition from the point ||| 0.5 0.122289 1.90631e-06 2.19362e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| competition from the ||| 0.0222222 0.122289 1.90631e-06 2.50757e-08 2.718 ||| 0-2 ||| 45 524574 +los ||| competition in the ||| 0.00324675 0.122289 1.90631e-06 3.33292e-07 2.718 ||| 0-2 ||| 308 524574 +los ||| competition on the basis of technical harmonisation ||| 1 0.122289 1.90631e-06 5.23225e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| competition on the basis of technical ||| 1 0.122289 1.90631e-06 1.11324e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| competition on the basis of ||| 0.166667 0.122289 1.90631e-06 3.36327e-12 2.718 ||| 0-2 ||| 6 524574 +los ||| competition on the basis ||| 0.166667 0.122289 1.90631e-06 6.18658e-11 2.718 ||| 0-2 ||| 6 524574 +los ||| competition on the ||| 0.0103093 0.122289 1.90631e-06 1.04186e-07 2.718 ||| 0-2 ||| 97 524574 +los ||| competitive systems ||| 0.5 0.213574 1.90631e-06 6.20616e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| competitiveness , the environment , safety and ||| 1 0.122289 1.90631e-06 1.01605e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| competitiveness , the environment , safety ||| 1 0.122289 1.90631e-06 8.11155e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| competitiveness , the environment , ||| 0.5 0.122289 1.90631e-06 1.59991e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| competitiveness , the environment ||| 0.5 0.122289 1.90631e-06 1.34159e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| competitiveness , the ||| 0.0204082 0.122289 1.90631e-06 2.40429e-07 2.718 ||| 0-2 ||| 49 524574 +los ||| competitors ||| 0.00137363 0.128464 1.90631e-06 9.92e-05 2.718 ||| 0-0 ||| 728 524574 +los ||| compiled by the ||| 0.0454545 0.122289 1.90631e-06 1.37376e-08 2.718 ||| 0-2 ||| 22 524574 +los ||| compiled ||| 0.00649351 0.0082645 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 154 524574 +los ||| complaints ||| 0.000554631 0.0004554 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1803 524574 +los ||| complete shifts ||| 1 0.071066 1.90631e-06 9.7376e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| complete the review ||| 0.2 0.122289 1.90631e-06 1.16096e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| complete the ||| 0.00366972 0.122289 3.81262e-06 3.07133e-05 2.718 ||| 0-1 ||| 545 524574 +los ||| completed ; the capital collected should be ||| 0.5 0.122289 1.90631e-06 1.09309e-22 2.718 ||| 0-2 ||| 2 524574 +los ||| completed ; the capital collected should ||| 0.5 0.122289 1.90631e-06 6.03157e-21 2.718 ||| 0-2 ||| 2 524574 +los ||| completed ; the capital collected ||| 0.5 0.122289 1.90631e-06 1.36122e-18 2.718 ||| 0-2 ||| 2 524574 +los ||| completed ; the capital ||| 0.5 0.122289 1.90631e-06 1.04709e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| completed ; the ||| 0.333333 0.122289 1.90631e-06 4.04283e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| completely the ||| 0.0185185 0.122289 1.90631e-06 4.36678e-05 2.718 ||| 0-1 ||| 54 524574 +los ||| compliance with the Copenhagen ||| 1 0.122289 1.90631e-06 2.01882e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| compliance with the ||| 0.00287356 0.122289 5.71893e-06 6.30881e-08 2.718 ||| 0-2 ||| 1044 524574 +los ||| comply with the ||| 0.00251889 0.122289 5.71893e-06 1.28371e-07 2.718 ||| 0-2 ||| 1191 524574 +los ||| comply with them ||| 0.0232558 0.038218 1.90631e-06 6.02296e-10 2.718 ||| 0-2 ||| 43 524574 +los ||| comply with ||| 0.000364166 0.000603 1.90631e-06 1.21496e-08 2.718 ||| 0-0 ||| 2746 524574 +los ||| comply ||| 0.000816993 0.000603 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1224 524574 +los ||| components ||| 0.00246002 0.0482077 3.81262e-06 3.79e-05 2.718 ||| 0-0 ||| 813 524574 +los ||| compound ||| 0.031746 0.0977011 7.62523e-06 1.65e-05 2.718 ||| 0-0 ||| 126 524574 +los ||| compounds ||| 0.004329 0.205224 1.90631e-06 5.35e-05 2.718 ||| 0-0 ||| 231 524574 +los ||| compromise and the ||| 0.0714286 0.122289 1.90631e-06 2.434e-07 2.718 ||| 0-2 ||| 14 524574 +los ||| compromises ||| 0.00154679 0.0637219 3.81262e-06 8.56e-05 2.718 ||| 0-0 ||| 1293 524574 +los ||| compulsory for ||| 0.0185185 0.011889 1.90631e-06 2.02134e-07 2.718 ||| 0-0 ||| 54 524574 +los ||| compulsory ||| 0.00474158 0.011889 1.90631e-05 2.63e-05 2.718 ||| 0-0 ||| 2109 524574 +los ||| computer errors ||| 0.5 0.101639 1.90631e-06 3.4974e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| computer ||| 0.0109589 0.0531208 1.52505e-05 3.89e-05 2.718 ||| 0-0 ||| 730 524574 +los ||| computers , ||| 0.0192308 0.221963 1.90631e-06 1.10191e-05 2.718 ||| 0-0 ||| 52 524574 +los ||| computers ||| 0.00522193 0.221963 3.81262e-06 9.24e-05 2.718 ||| 0-0 ||| 383 524574 +los ||| conceivable ||| 0.0157068 0.0116279 5.71893e-06 2.9e-06 2.718 ||| 0-0 ||| 191 524574 +los ||| concentrated ||| 0.00567376 0.0064865 7.62523e-06 5.8e-06 2.718 ||| 0-0 ||| 705 524574 +los ||| concentrates on the ||| 0.0384615 0.122289 1.90631e-06 7.17537e-09 2.718 ||| 0-2 ||| 26 524574 +los ||| concentration ||| 0.000625391 0.0016878 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1599 524574 +los ||| concept to those in ||| 1 0.284705 1.90631e-06 1.88644e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| concept to those ||| 1 0.284705 1.90631e-06 8.81329e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| concepts ||| 0.00323276 0.0811655 5.71893e-06 7.58e-05 2.718 ||| 0-0 ||| 928 524574 +los ||| concern about the ||| 0.00202429 0.122289 1.90631e-06 8.09908e-08 2.718 ||| 0-2 ||| 494 524574 +los ||| concern itself with them , ||| 1 0.038218 1.90631e-06 1.39059e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| concern itself with them ||| 1 0.038218 1.90631e-06 1.16607e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| concern the ||| 0.00403226 0.122289 3.81262e-06 5.72657e-05 2.718 ||| 0-1 ||| 496 524574 +los ||| concerned , is the ||| 0.2 0.122289 1.90631e-06 2.579e-06 2.718 ||| 0-3 ||| 5 524574 +los ||| concerned , the motions ||| 1 0.122289 1.90631e-06 4.77271e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| concerned , the ||| 0.00733945 0.122289 7.62523e-06 8.2288e-05 2.718 ||| 0-2 ||| 545 524574 +los ||| concerned about all of the ||| 1 0.122289 1.90631e-06 2.50699e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| concerned for the ||| 0.0344828 0.122289 1.90631e-06 5.30328e-06 2.718 ||| 0-2 ||| 29 524574 +los ||| concerned the ||| 0.00406504 0.122289 1.90631e-06 0.000690019 2.718 ||| 0-1 ||| 246 524574 +los ||| concerned those ||| 0.333333 0.284705 1.90631e-06 2.68598e-05 2.718 ||| 0-1 ||| 3 524574 +los ||| concerned with the ||| 0.00413223 0.122289 1.90631e-06 4.41233e-06 2.718 ||| 0-2 ||| 242 524574 +los ||| concerned ||| 7.33783e-05 5.07e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 13628 524574 +los ||| concerning the EU ||| 0.142857 0.122289 1.90631e-06 1.30532e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| concerning the establishment ||| 0.0294118 0.122289 1.90631e-06 1.18714e-09 2.718 ||| 0-1 ||| 34 524574 +los ||| concerning the ||| 0.0011655 0.122289 1.33442e-05 2.63808e-05 2.718 ||| 0-1 ||| 6006 524574 +los ||| concerning which the ||| 0.166667 0.122289 1.90631e-06 2.24094e-07 2.718 ||| 0-2 ||| 6 524574 +los ||| concerns the ||| 0.00177226 0.122289 7.62523e-06 3.21288e-05 2.718 ||| 0-1 ||| 2257 524574 +los ||| concerns ||| 7.14337e-05 0.0002463 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 13999 524574 +los ||| conclude direct ||| 1 0.0017634 1.90631e-06 2.5787e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| concrete terms , the ||| 0.166667 0.122289 1.90631e-06 1.75743e-09 2.718 ||| 0-3 ||| 6 524574 +los ||| concrete ||| 0.000217675 0.0002209 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 4594 524574 +los ||| condemned the ||| 0.00518135 0.122289 1.90631e-06 5.23327e-06 2.718 ||| 0-1 ||| 193 524574 +los ||| condoms ||| 0.0322581 0.231579 3.81262e-06 2.14e-05 2.718 ||| 0-0 ||| 62 524574 +los ||| conduct of our ||| 0.2 0.0248369 1.90631e-06 1.16678e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| conduct of ||| 0.00289855 0.0019787 1.90631e-06 1.98787e-07 2.718 ||| 0-1 ||| 345 524574 +los ||| conducted at all ||| 0.5 0.0177928 1.90631e-06 6.81048e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| confidence in ||| 0.000524934 0.0009804 1.90631e-06 1.24146e-07 2.718 ||| 0-0 ||| 1905 524574 +los ||| confidence ||| 0.000639059 0.0009804 9.53154e-06 5.8e-06 2.718 ||| 0-0 ||| 7824 524574 +los ||| confine the national ||| 1 0.122289 1.90631e-06 1.98435e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| confine the ||| 0.111111 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-1 ||| 9 524574 +los ||| confined the ||| 0.25 0.122289 1.90631e-06 4.33246e-06 2.718 ||| 0-1 ||| 4 524574 +los ||| confirm the ||| 0.0075188 0.122289 3.81262e-06 7.8928e-06 2.718 ||| 0-1 ||| 266 524574 +los ||| conflict is over and done with ||| 1 0.0037547 1.90631e-06 6.49664e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| conflict is over and done ||| 1 0.0037547 1.90631e-06 1.01597e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| conflict is over and ||| 1 0.0037547 1.90631e-06 2.22801e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| conflict is over ||| 0.25 0.0037547 1.90631e-06 1.77872e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| conflicts of jurisdiction ||| 0.0416667 0.214045 1.90631e-06 3.62376e-10 2.718 ||| 0-0 ||| 24 524574 +los ||| conflicts of ||| 0.00298507 0.214045 1.90631e-06 4.36597e-05 2.718 ||| 0-0 ||| 335 524574 +los ||| conflicts ||| 0.00433571 0.214045 2.66883e-05 0.0008031 2.718 ||| 0-0 ||| 3229 524574 +los ||| congestion on the roads and stimulate the ||| 1 0.122289 1.90631e-06 2.39008e-22 2.718 ||| 0-6 ||| 1 524574 +los ||| congestion ||| 0.00200401 0.0297872 1.90631e-06 2.04e-05 2.718 ||| 0-0 ||| 499 524574 +los ||| conglomerates ||| 0.00909091 0.216374 1.90631e-06 3.6e-05 2.718 ||| 0-0 ||| 110 524574 +los ||| connection is the ||| 0.0833333 0.122289 1.90631e-06 2.05155e-06 2.718 ||| 0-2 ||| 12 524574 +los ||| connection of the ||| 0.1 0.122289 1.90631e-06 3.5586e-06 2.718 ||| 0-2 ||| 10 524574 +los ||| connection with the evaluation of ||| 1 0.122289 1.90631e-06 3.36781e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| connection with the evaluation ||| 1 0.122289 1.90631e-06 6.19492e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| connection with the ||| 0.00191083 0.122289 5.71893e-06 4.18576e-07 2.718 ||| 0-2 ||| 1570 524574 +los ||| connection with ||| 0.000617665 0.0007437 3.81262e-06 3.53116e-08 2.718 ||| 0-1 ||| 3238 524574 +los ||| cons ||| 0.0126582 0.362319 1.90631e-06 4.86e-05 2.718 ||| 0-0 ||| 79 524574 +los ||| conscientious ||| 0.0444444 0.0414201 7.62523e-06 6.8e-06 2.718 ||| 0-0 ||| 90 524574 +los ||| consciousness of the ||| 0.0625 0.122289 1.90631e-06 8.39512e-08 2.718 ||| 0-2 ||| 16 524574 +los ||| consent to the ||| 0.015873 0.122289 1.90631e-06 3.16365e-07 2.718 ||| 0-2 ||| 63 524574 +los ||| consequently , the ||| 0.00684932 0.122289 5.71893e-06 2.28152e-06 2.718 ||| 0-2 ||| 438 524574 +los ||| consequently the structures ||| 0.333333 0.122289 1.90631e-06 4.13239e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| consequently the ||| 0.0327869 0.122289 3.81262e-06 1.91315e-05 2.718 ||| 0-1 ||| 61 524574 +los ||| conservative government - ||| 0.5 0.0232558 1.90631e-06 2.92349e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| conservative government ||| 0.0769231 0.0232558 1.90631e-06 7.7503e-10 2.718 ||| 0-0 ||| 13 524574 +los ||| conservative ||| 0.00724638 0.0232558 5.71893e-06 9.7e-06 2.718 ||| 0-0 ||| 414 524574 +los ||| consider the following scenario ||| 0.5 0.122289 1.90631e-06 1.25596e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| consider the following ||| 0.0625 0.122289 1.90631e-06 8.72196e-09 2.718 ||| 0-1 ||| 16 524574 +los ||| consider the ||| 0.00353607 0.122289 9.53154e-06 6.82469e-05 2.718 ||| 0-1 ||| 1414 524574 +los ||| consider what is ||| 0.0625 0.0061209 1.90631e-06 4.78043e-09 2.718 ||| 0-1 ||| 16 524574 +los ||| consider what ||| 0.00518135 0.0061209 1.90631e-06 1.52529e-07 2.718 ||| 0-1 ||| 193 524574 +los ||| consider would be the ||| 1 0.122289 1.90631e-06 7.2586e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| considerable extent , the ||| 1 0.122289 1.90631e-06 4.4244e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| considerable problems in ||| 0.111111 0.106249 1.90631e-06 2.95366e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| considerable problems ||| 0.0131579 0.106249 1.90631e-06 1.37993e-07 2.718 ||| 0-1 ||| 76 524574 +los ||| consideration of the interests ||| 0.333333 0.0946504 1.90631e-06 2.56866e-09 2.718 ||| 0-2 0-3 ||| 3 524574 +los ||| consideration the ||| 0.010101 0.122289 5.71893e-06 4.63273e-05 2.718 ||| 0-1 ||| 297 524574 +los ||| considered the ||| 0.00649351 0.122289 1.90631e-06 4.61557e-05 2.718 ||| 0-1 ||| 154 524574 +los ||| considering the ||| 0.00690608 0.122289 9.53154e-06 1.29545e-05 2.718 ||| 0-1 ||| 724 524574 +los ||| consistency between the ||| 0.010989 0.122289 1.90631e-06 7.35531e-10 2.718 ||| 0-2 ||| 91 524574 +los ||| consistently in the ||| 0.25 0.122289 1.90631e-06 1.22115e-07 2.718 ||| 0-2 ||| 4 524574 +los ||| consisting of ||| 0.0083682 0.0019787 3.81262e-06 3.57221e-08 2.718 ||| 0-1 ||| 239 524574 +los ||| consortia ||| 0.0322581 0.14 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 31 524574 +los ||| constitute the ||| 0.00431034 0.122289 1.90631e-06 1.31261e-05 2.718 ||| 0-1 ||| 232 524574 +los ||| constitutes an assault ||| 0.333333 0.0227273 1.90631e-06 5.24875e-13 2.718 ||| 0-2 ||| 3 524574 +los ||| constituting ||| 0.0107527 0.0060976 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 93 524574 +los ||| constitutional ||| 0.000319693 0.0024726 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 3128 524574 +los ||| construction costs are ||| 0.25 0.214442 1.90631e-06 7.10023e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| construction costs ||| 0.125 0.214442 1.90631e-06 4.67961e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| consult with the United States ||| 1 0.122289 1.90631e-06 6.88922e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| consult with the United ||| 1 0.122289 1.90631e-06 1.44368e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| consult with the ||| 0.037037 0.122289 1.90631e-06 1.17947e-08 2.718 ||| 0-2 ||| 27 524574 +los ||| consultants ||| 0.00606061 0.105556 1.90631e-06 1.85e-05 2.718 ||| 0-0 ||| 165 524574 +los ||| consumed them ||| 1 0.038218 1.90631e-06 7.24536e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| consumer prices ||| 0.0114943 0.184092 1.90631e-06 1.00939e-07 2.718 ||| 0-0 ||| 87 524574 +los ||| consumer uses involving daily exposure , also ||| 1 0.184092 1.90631e-06 1.6291e-25 2.718 ||| 0-0 ||| 1 524574 +los ||| consumer uses involving daily exposure , ||| 1 0.184092 1.90631e-06 3.22684e-23 2.718 ||| 0-0 ||| 1 524574 +los ||| consumer uses involving daily exposure ||| 1 0.184092 1.90631e-06 2.70584e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| consumer uses involving daily ||| 1 0.184092 1.90631e-06 4.16283e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| consumer uses involving ||| 1 0.184092 1.90631e-06 1.83384e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| consumer uses ||| 1 0.184092 1.90631e-06 5.85893e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| consumer ||| 0.00261894 0.184092 3.43136e-05 0.0031842 2.718 ||| 0-0 ||| 6873 524574 +los ||| consumers ' ||| 0.00806452 0.232388 3.81262e-06 4.41866e-05 2.718 ||| 0-0 0-1 ||| 248 524574 +los ||| consumers across ||| 0.05 0.420328 1.90631e-06 8.52298e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| consumers are concerned , ||| 0.142857 0.420328 1.90631e-06 2.41786e-08 2.718 ||| 0-0 ||| 7 524574 +los ||| consumers are concerned ||| 0.0625 0.420328 1.90631e-06 2.02747e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| consumers are ||| 0.00569801 0.420328 3.81262e-06 0.00012604 2.718 ||| 0-0 ||| 351 524574 +los ||| consumers have ||| 0.0052356 0.420328 1.90631e-06 9.93501e-05 2.718 ||| 0-0 ||| 191 524574 +los ||| consumers more ||| 0.0285714 0.420328 1.90631e-06 1.89707e-05 2.718 ||| 0-0 ||| 35 524574 +los ||| consumers would ||| 0.0333333 0.420328 1.90631e-06 4.87513e-05 2.718 ||| 0-0 ||| 30 524574 +los ||| consumers ||| 0.0017094 0.420328 4.19388e-05 0.008307 2.718 ||| 0-0 ||| 12870 524574 +los ||| contact ||| 0.000368732 0.0165429 1.90631e-06 4.76e-05 2.718 ||| 0-0 ||| 2712 524574 +los ||| contacts are inadequate ||| 0.5 0.17185 1.90631e-06 6.73364e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| contacts are ||| 0.125 0.17185 1.90631e-06 4.80975e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| contacts between ||| 0.00641026 0.17185 1.90631e-06 8.36246e-08 2.718 ||| 0-0 ||| 156 524574 +los ||| contacts the ||| 0.142857 0.14707 1.90631e-06 0.000135979 2.718 ||| 0-0 0-1 ||| 7 524574 +los ||| contacts were ||| 0.25 0.17185 1.90631e-06 5.67874e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| contacts will continue ||| 1 0.17185 1.90631e-06 6.34598e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| contacts will ||| 1 0.17185 1.90631e-06 2.74243e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| contacts ||| 0.00256904 0.17185 7.62523e-06 0.000317 2.718 ||| 0-0 ||| 1557 524574 +los ||| contain details ||| 0.25 0.0606164 1.90631e-06 5.88582e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| contain the ||| 0.00813008 0.122289 1.90631e-06 1.46703e-05 2.718 ||| 0-1 ||| 123 524574 +los ||| contained the ||| 0.0384615 0.122289 1.90631e-06 2.9169e-05 2.718 ||| 0-1 ||| 26 524574 +los ||| contains just the ||| 0.5 0.122289 1.90631e-06 2.21898e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| contains significant challenges ||| 1 0.145386 1.90631e-06 2.82872e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| contains the ||| 0.00487805 0.122289 1.90631e-06 1.75872e-05 2.718 ||| 0-1 ||| 205 524574 +los ||| contaminated animal meal ? ||| 1 0.173314 1.90631e-06 1.7588e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| contaminated animal meal ||| 1 0.173314 1.90631e-06 1.02914e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| contaminated animal ||| 0.333333 0.173314 1.90631e-06 3.54875e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| contaminated ||| 0.00228833 0.0044053 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 437 524574 +los ||| contemporary ||| 0.00369004 0.0080863 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 271 524574 +los ||| content of brominated ||| 1 0.186667 1.90631e-06 3.645e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| content of the ||| 0.00115875 0.122289 1.90631e-06 1.14967e-06 2.718 ||| 0-2 ||| 863 524574 +los ||| context of the ||| 0.000478698 0.122289 1.90631e-06 3.12951e-06 2.718 ||| 0-2 ||| 2089 524574 +los ||| context the ||| 0.0119048 0.122289 1.90631e-06 5.75659e-05 2.718 ||| 0-1 ||| 84 524574 +los ||| continent the ||| 0.2 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| continents ||| 0.00239808 0.0510441 1.90631e-06 2.14e-05 2.718 ||| 0-0 ||| 417 524574 +los ||| contingency planning ||| 0.0833333 0.0485437 1.90631e-06 2.7257e-10 2.718 ||| 0-0 ||| 12 524574 +los ||| contingency ||| 0.00961538 0.0485437 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 104 524574 +los ||| contingents ||| 0.0526316 0.26087 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 19 524574 +los ||| continue them . the ||| 1 0.122289 1.90631e-06 8.0649e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| continue to be , irradiated ||| 1 0.039604 1.90631e-06 1.73312e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| continue to be - the ||| 0.5 0.122289 1.90631e-06 6.02955e-10 2.718 ||| 0-4 ||| 2 524574 +los ||| continue to be safeguarded for ||| 1 0.0015353 1.90631e-06 2.8259e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| continuing a dialogue initiated by the ||| 1 0.122289 1.90631e-06 3.39111e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| continuing the ||| 0.00497512 0.122289 1.90631e-06 2.65524e-05 2.718 ||| 0-1 ||| 201 524574 +los ||| contraceptives are ||| 0.125 0.271186 1.90631e-06 2.36694e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| contraceptives ||| 0.0285714 0.271186 1.90631e-06 1.56e-05 2.718 ||| 0-0 ||| 35 524574 +los ||| contracted agencies ||| 0.333333 0.0227727 1.90631e-06 1.2188e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| contractors , a move which , according ||| 1 0.270936 1.90631e-06 3.87664e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| contractors , a move which , ||| 1 0.270936 1.90631e-06 4.38038e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| contractors , a move which ||| 1 0.270936 1.90631e-06 3.67313e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| contractors , a move ||| 1 0.270936 1.90631e-06 4.32408e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| contractors , a ||| 1 0.270936 1.90631e-06 2.82804e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| contractors , ||| 0.0769231 0.270936 1.90631e-06 6.38013e-06 2.718 ||| 0-0 ||| 13 524574 +los ||| contractors ||| 0.00769231 0.270936 1.90631e-06 5.35e-05 2.718 ||| 0-0 ||| 130 524574 +los ||| contracts could result ||| 0.0666667 0.245913 1.90631e-06 2.68291e-10 2.718 ||| 0-0 ||| 15 524574 +los ||| contracts could ||| 0.047619 0.245913 1.90631e-06 5.09574e-07 2.718 ||| 0-0 ||| 21 524574 +los ||| contracts ||| 0.00335196 0.245913 1.71568e-05 0.0007166 2.718 ||| 0-0 ||| 2685 524574 +los ||| contrary : the ||| 0.166667 0.122289 1.90631e-06 7.28141e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| contrast , the ||| 0.0126582 0.122289 1.90631e-06 6.08745e-07 2.718 ||| 0-2 ||| 79 524574 +los ||| contravened the ||| 0.0666667 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 15 524574 +los ||| contributing ||| 0.000823723 0.0007843 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1214 524574 +los ||| contribution from ||| 0.0140845 0.001099 1.90631e-06 1.7415e-08 2.718 ||| 0-1 ||| 71 524574 +los ||| contributors ||| 0.00358423 0.119107 1.90631e-06 4.67e-05 2.718 ||| 0-0 ||| 279 524574 +los ||| control in the ||| 0.0285714 0.122289 1.90631e-06 7.04228e-07 2.718 ||| 0-2 ||| 35 524574 +los ||| control over how ||| 0.0833333 0.0003141 1.90631e-06 6.73021e-13 2.718 ||| 0-0 ||| 12 524574 +los ||| control over ||| 0.00151286 0.0003141 1.90631e-06 1.87785e-09 2.718 ||| 0-0 ||| 661 524574 +los ||| control services ||| 0.025 0.272175 1.90631e-06 5.97923e-07 2.718 ||| 0-1 ||| 40 524574 +los ||| control the ||| 0.00486618 0.122289 3.81262e-06 3.29009e-05 2.718 ||| 0-1 ||| 411 524574 +los ||| control ||| 0.00016538 0.0003141 5.71893e-06 3.9e-06 2.718 ||| 0-0 ||| 18140 524574 +los ||| controls " . ||| 1 0.233171 1.90631e-06 8.01976e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| controls " ||| 1 0.233171 1.90631e-06 2.64766e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| controls ||| 0.00203804 0.233171 1.71568e-05 0.0011181 2.718 ||| 0-0 ||| 4416 524574 +los ||| convenience foods ||| 0.5 0.2715 1.90631e-06 1.59702e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| conventional ||| 0.00594354 0.0101449 7.62523e-06 6.8e-06 2.718 ||| 0-0 ||| 673 524574 +los ||| conventions to ||| 0.0526316 0.126627 1.90631e-06 1.84914e-05 2.718 ||| 0-0 ||| 19 524574 +los ||| conventions ||| 0.00314663 0.126627 9.53154e-06 0.0002081 2.718 ||| 0-0 ||| 1589 524574 +los ||| convergence of ||| 0.0037594 0.0019787 1.90631e-06 2.97684e-08 2.718 ||| 0-1 ||| 266 524574 +los ||| convergence ||| 0.000548847 0.0017354 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 3644 524574 +los ||| converting the ||| 0.0322581 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-1 ||| 31 524574 +los ||| convict those ||| 0.166667 0.284705 1.90631e-06 6.67904e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| convince the ||| 0.00769231 0.122289 3.81262e-06 1.84451e-06 2.718 ||| 0-1 ||| 260 524574 +los ||| convinced of the ||| 0.0052356 0.122289 1.90631e-06 4.3608e-07 2.718 ||| 0-2 ||| 191 524574 +los ||| convincing the ||| 0.025641 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-1 ||| 39 524574 +los ||| convoys ||| 0.0416667 0.222222 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 24 524574 +los ||| cooperation in both tax ||| 1 0.0611419 1.90631e-06 2.20653e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| coordinate the ||| 0.00359712 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-1 ||| 278 524574 +los ||| coordinate their ||| 0.00724638 0.0236713 1.90631e-06 5.71925e-09 2.718 ||| 0-1 ||| 138 524574 +los ||| coordination between the ||| 0.00260417 0.122289 1.90631e-06 1.7087e-09 2.718 ||| 0-2 ||| 384 524574 +los ||| coordination of procedures for ||| 0.125 0.219824 1.90631e-06 1.49918e-11 2.718 ||| 0-2 ||| 8 524574 +los ||| coordination of procedures ||| 0.1 0.219824 1.90631e-06 1.95061e-09 2.718 ||| 0-2 ||| 10 524574 +los ||| coordinators or the ||| 1 0.122289 1.90631e-06 5.39468e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| cope with the ||| 0.00387597 0.122289 1.90631e-06 6.22652e-08 2.718 ||| 0-2 ||| 258 524574 +los ||| cope with ||| 0.00131926 0.0007437 1.90631e-06 5.25278e-09 2.718 ||| 0-1 ||| 758 524574 +los ||| copes with the ||| 0.333333 0.122289 1.90631e-06 1.09718e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| copyright and related ||| 0.2 0.093521 1.90631e-06 2.51949e-10 2.718 ||| 0-0 0-2 ||| 5 524574 +los ||| copyright laws ||| 0.142857 0.174471 1.90631e-06 6.6946e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| copyright ||| 0.00106724 0.174471 1.90631e-06 0.0003043 2.718 ||| 0-0 ||| 937 524574 +los ||| coral ||| 0.0344828 0.24 1.90631e-06 2.33e-05 2.718 ||| 0-0 ||| 29 524574 +los ||| corner shops owned ||| 1 0.0929293 1.90631e-06 3.49554e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| corner shops ||| 0.5 0.0929293 1.90631e-06 5.1405e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| corners ||| 0.0121951 0.205714 1.90631e-06 3.5e-05 2.718 ||| 0-0 ||| 82 524574 +los ||| corporate ||| 0.00163132 0.0120087 1.90631e-06 2.14e-05 2.718 ||| 0-0 ||| 613 524574 +los ||| correct conventions ||| 0.25 0.126627 1.90631e-06 7.4916e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| corridors ||| 0.0027933 0.136793 1.90631e-06 5.64e-05 2.718 ||| 0-0 ||| 358 524574 +los ||| cosmetic ||| 0.00361011 0.0275229 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 277 524574 +los ||| cosmetics ||| 0.0025974 0.222672 1.90631e-06 0.0001069 2.718 ||| 0-0 ||| 385 524574 +los ||| cost a lot ||| 0.05 0.0081578 1.90631e-06 3.06389e-10 2.718 ||| 0-0 ||| 20 524574 +los ||| cost a ||| 0.0285714 0.0081578 1.90631e-06 2.37143e-06 2.718 ||| 0-0 ||| 35 524574 +los ||| cost is USD 10 billion . the ||| 1 0.122289 1.90631e-06 1.8351e-23 2.718 ||| 0-6 ||| 1 524574 +los ||| cost is included ||| 0.25 0.0081578 1.90631e-06 1.57447e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| cost is ||| 0.0181818 0.0081578 1.90631e-06 1.67675e-06 2.718 ||| 0-0 ||| 55 524574 +los ||| cost many EU nationals their ||| 1 0.0236713 1.90631e-06 3.60372e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| cost nothing ||| 0.125 0.0081578 1.90631e-06 9.95635e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| cost of the ||| 0.00706714 0.122289 3.81262e-06 1.93088e-06 2.718 ||| 0-2 ||| 283 524574 +los ||| cost ||| 0.000731208 0.0081578 9.53154e-06 5.35e-05 2.718 ||| 0-0 ||| 6838 524574 +los ||| cost-effectiveness ||| 0.0119048 0.052356 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 84 524574 +los ||| cost-push ||| 0.25 0.333333 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| costing the local ||| 0.5 0.122289 1.90631e-06 2.41116e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| costing the ||| 0.0625 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| costs , such as ||| 0.142857 0.214442 1.90631e-06 6.97149e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| costs , such ||| 0.5 0.214442 1.90631e-06 6.83184e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| costs , we must ||| 0.2 0.214442 1.90631e-06 5.79401e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| costs , we ||| 0.25 0.214442 1.90631e-06 3.74871e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| costs , ||| 0.00707965 0.214442 7.62523e-06 0.000330216 2.718 ||| 0-0 ||| 565 524574 +los ||| costs - ||| 0.0384615 0.214442 1.90631e-06 1.04449e-05 2.718 ||| 0-0 ||| 26 524574 +los ||| costs EUR 120 million every year , ||| 1 0.144232 1.90631e-06 1.56104e-25 2.718 ||| 0-4 ||| 1 524574 +los ||| costs EUR 120 million every year ||| 1 0.144232 1.90631e-06 1.309e-24 2.718 ||| 0-4 ||| 1 524574 +los ||| costs EUR 120 million every ||| 1 0.144232 1.90631e-06 5.2486e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| costs and therefore ||| 0.5 0.214442 1.90631e-06 2.90064e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| costs and ||| 0.00170068 0.214442 1.90631e-06 3.46842e-05 2.718 ||| 0-0 ||| 588 524574 +los ||| costs are ||| 0.00534759 0.214442 1.90631e-06 4.20132e-05 2.718 ||| 0-0 ||| 187 524574 +los ||| costs as ||| 0.03125 0.214442 1.90631e-06 2.8256e-05 2.718 ||| 0-0 ||| 32 524574 +los ||| costs by those ||| 1 0.249574 1.90631e-06 2.42742e-07 2.718 ||| 0-0 0-2 ||| 1 524574 +los ||| costs from ||| 0.0555556 0.214442 1.90631e-06 4.4592e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| costs of the ||| 0.0060241 0.062134 1.90631e-06 1.06695e-07 2.718 ||| 0-1 0-2 ||| 166 524574 +los ||| costs too ||| 0.5 0.214442 1.90631e-06 3.76861e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| costs ||| 0.00402332 0.214442 9.34091e-05 0.002769 2.718 ||| 0-0 ||| 12179 524574 +los ||| could address the different ||| 0.5 0.122289 1.90631e-06 5.1249e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| could address the ||| 0.333333 0.122289 1.90631e-06 2.32739e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| could bear the ||| 0.25 0.122289 1.90631e-06 4.56631e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| could have been preceded by the ||| 1 0.122289 1.90631e-06 1.40702e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| could have been the ||| 0.1 0.122289 1.90631e-06 1.21818e-08 2.718 ||| 0-3 ||| 10 524574 +los ||| could the ||| 0.00434783 0.122289 1.90631e-06 0.000305031 2.718 ||| 0-1 ||| 230 524574 +los ||| councils ||| 0.00767754 0.256078 7.62523e-06 0.0001536 2.718 ||| 0-0 ||| 521 524574 +los ||| count the individual ||| 0.333333 0.122289 1.90631e-06 1.65587e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| count the ||| 0.025641 0.122289 1.90631e-06 1.17105e-05 2.718 ||| 0-1 ||| 39 524574 +los ||| counter the ||| 0.00649351 0.122289 1.90631e-06 7.8928e-06 2.718 ||| 0-1 ||| 154 524574 +los ||| counterfeit ||| 0.00190114 0.0074488 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 526 524574 +los ||| counting the cost ||| 0.166667 0.122289 1.90631e-06 2.80589e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| counting the ||| 0.0408163 0.122289 3.81262e-06 3.38875e-06 2.718 ||| 0-1 ||| 49 524574 +los ||| countries ' nationals are ||| 0.5 0.287174 1.90631e-06 1.46021e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| countries ' nationals ||| 0.5 0.287174 1.90631e-06 9.62392e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| countries ' ||| 0.0215633 0.0700843 1.52505e-05 4.43419e-05 2.718 ||| 0-0 0-1 ||| 371 524574 +los ||| countries , such ||| 0.0344828 0.0957208 1.90631e-06 2.05676e-06 2.718 ||| 0-0 ||| 29 524574 +los ||| countries , the ||| 0.00754717 0.122289 3.81262e-06 1.94236e-05 2.718 ||| 0-2 ||| 265 524574 +los ||| countries , ||| 0.000612745 0.0957208 7.62523e-06 0.000994131 2.718 ||| 0-0 ||| 6528 524574 +los ||| countries - the ||| 0.0769231 0.122289 1.90631e-06 6.1438e-07 2.718 ||| 0-2 ||| 13 524574 +los ||| countries are onboard , ||| 1 0.0957208 1.90631e-06 6.03346e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| countries are onboard ||| 1 0.0957208 1.90631e-06 5.05931e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| countries are ||| 0.00191571 0.0957208 3.81262e-06 0.000126483 2.718 ||| 0-0 ||| 1044 524574 +los ||| countries at ||| 0.00763359 0.0957208 1.90631e-06 3.4907e-05 2.718 ||| 0-0 ||| 131 524574 +los ||| countries can use ||| 1 0.0957208 1.90631e-06 1.2055e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| countries can ||| 0.00531915 0.0957208 1.90631e-06 2.47944e-05 2.718 ||| 0-0 ||| 188 524574 +los ||| countries have ||| 0.00110375 0.0957208 1.90631e-06 9.96993e-05 2.718 ||| 0-0 ||| 906 524574 +los ||| countries in the ||| 0.00149813 0.122289 3.81262e-06 3.48625e-06 2.718 ||| 0-2 ||| 1335 524574 +los ||| countries in ||| 0.000704225 0.0957208 3.81262e-06 0.000178432 2.718 ||| 0-0 ||| 2840 524574 +los ||| countries like the ||| 0.0285714 0.122289 1.90631e-06 2.89249e-07 2.718 ||| 0-2 ||| 35 524574 +los ||| countries make ||| 0.0625 0.0957208 1.90631e-06 1.44866e-05 2.718 ||| 0-0 ||| 16 524574 +los ||| countries of ||| 0.000247525 0.0957208 1.90631e-06 0.000453189 2.718 ||| 0-0 ||| 4040 524574 +los ||| countries out ||| 0.0434783 0.0957208 1.90631e-06 3.1931e-05 2.718 ||| 0-0 ||| 23 524574 +los ||| countries should be ||| 0.0142857 0.0957208 1.90631e-06 6.69418e-07 2.718 ||| 0-0 ||| 70 524574 +los ||| countries should ||| 0.00518135 0.0957208 1.90631e-06 3.69377e-05 2.718 ||| 0-0 ||| 193 524574 +los ||| countries the ||| 0.00775194 0.122289 1.90631e-06 0.000162875 2.718 ||| 0-1 ||| 129 524574 +los ||| countries together , ||| 0.166667 0.0957208 1.90631e-06 5.97075e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| countries together ||| 0.037037 0.0957208 1.90631e-06 5.00672e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| countries ||| 0.00181723 0.0957208 0.000312635 0.0083362 2.718 ||| 0-0 ||| 90247 524574 +los ||| country 's ||| 0.00869565 0.0349814 5.71893e-06 2.20518e-06 2.718 ||| 0-1 ||| 345 524574 +los ||| country , the ||| 0.00323625 0.122289 1.90631e-06 1.84107e-05 2.718 ||| 0-2 ||| 309 524574 +los ||| country against the ||| 0.5 0.122289 1.90631e-06 3.68354e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| country gets the advertising ||| 0.333333 0.122289 1.90631e-06 3.96976e-14 2.718 ||| 0-2 ||| 3 524574 +los ||| country gets the ||| 0.333333 0.122289 1.90631e-06 4.616e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| country is the ||| 0.0322581 0.122289 1.90631e-06 4.83848e-06 2.718 ||| 0-2 ||| 31 524574 +los ||| country or across the borders . ||| 1 0.122289 1.90631e-06 2.36966e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| country or across the borders ||| 1 0.122289 1.90631e-06 7.82323e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| country or across the ||| 1 0.122289 1.90631e-06 1.81093e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| country to the ||| 0.0181818 0.122289 1.90631e-06 1.37181e-05 2.718 ||| 0-2 ||| 55 524574 +los ||| country ||| 5.31689e-05 0.0001095 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 37616 524574 +los ||| couriers ||| 0.0588235 0.125 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| course , all the ||| 0.333333 0.122289 1.90631e-06 3.04988e-07 2.718 ||| 0-3 ||| 3 524574 +los ||| course , have the ||| 0.166667 0.122289 1.90631e-06 7.71913e-07 2.718 ||| 0-3 ||| 6 524574 +los ||| course , of the ||| 0.0769231 0.122289 1.90631e-06 3.50878e-06 2.718 ||| 0-3 ||| 13 524574 +los ||| course , the market in ||| 1 0.122289 1.90631e-06 3.12218e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| course , the market ||| 1 0.122289 1.90631e-06 1.45866e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| course , the ||| 0.0155642 0.122289 7.62523e-06 6.45423e-05 2.718 ||| 0-2 ||| 257 524574 +los ||| course , those ||| 0.25 0.284705 1.90631e-06 2.51238e-06 2.718 ||| 0-2 ||| 4 524574 +los ||| course of the ||| 0.0124417 0.122289 1.52505e-05 2.94226e-05 2.718 ||| 0-2 ||| 643 524574 +los ||| course of ||| 0.000522739 0.0019787 1.90631e-06 4.1732e-06 2.718 ||| 0-1 ||| 1913 524574 +los ||| course the ||| 0.0328947 0.122289 9.53154e-06 0.000541214 2.718 ||| 0-1 ||| 152 524574 +los ||| course those ||| 0.5 0.284705 1.90631e-06 2.10674e-05 2.718 ||| 0-1 ||| 2 524574 +los ||| courses , ||| 0.047619 0.129323 1.90631e-06 9.96969e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| courses of ||| 0.0232558 0.129323 3.81262e-06 4.54483e-06 2.718 ||| 0-0 ||| 86 524574 +los ||| courses ||| 0.0125448 0.129323 1.33442e-05 8.36e-05 2.718 ||| 0-0 ||| 558 524574 +los ||| court ||| 0.00242326 0.0808117 1.14379e-05 0.0002207 2.718 ||| 0-0 ||| 2476 524574 +los ||| courts ||| 0.00339175 0.166507 1.14379e-05 0.0003374 2.718 ||| 0-0 ||| 1769 524574 +los ||| cover the individual ||| 0.333333 0.122289 1.90631e-06 4.73711e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| cover the ||| 0.0228137 0.122289 2.28757e-05 3.35015e-05 2.718 ||| 0-1 ||| 526 524574 +los ||| cover ||| 0.00530918 0.0086762 3.24072e-05 3.01e-05 2.718 ||| 0-0 ||| 3202 524574 +los ||| coverage ||| 0.00315956 0.0145985 3.81262e-06 9.7e-06 2.718 ||| 0-0 ||| 633 524574 +los ||| covered the ||| 0.0232558 0.122289 1.90631e-06 3.07133e-05 2.718 ||| 0-1 ||| 43 524574 +los ||| covered up out of ||| 0.5 0.0031618 1.90631e-06 3.16085e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| covered up out ||| 0.5 0.0031618 1.90631e-06 5.81424e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| covered up ||| 0.0238095 0.0031618 1.90631e-06 1.51792e-08 2.718 ||| 0-1 ||| 42 524574 +los ||| covering the ||| 0.003367 0.122289 1.90631e-06 7.8928e-06 2.718 ||| 0-1 ||| 297 524574 +los ||| covers the period ||| 0.037037 0.122289 1.90631e-06 9.95543e-10 2.718 ||| 0-1 ||| 27 524574 +los ||| covers the ||| 0.0153846 0.122289 7.62523e-06 5.70512e-06 2.718 ||| 0-1 ||| 260 524574 +los ||| create the necessary ||| 0.0625 0.122289 1.90631e-06 1.24277e-08 2.718 ||| 0-1 ||| 16 524574 +los ||| create the ||| 0.00314136 0.122289 5.71893e-06 4.83005e-05 2.718 ||| 0-1 ||| 955 524574 +los ||| created the ||| 0.004 0.122289 1.90631e-06 4.5212e-05 2.718 ||| 0-1 ||| 250 524574 +los ||| creating European added value ||| 0.25 0.0034168 1.90631e-06 4.15879e-16 2.718 ||| 0-1 ||| 4 524574 +los ||| creating European added ||| 1 0.0034168 1.90631e-06 4.73666e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| creating European ||| 1 0.0034168 1.90631e-06 6.64329e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| creating the ||| 0.00160514 0.122289 1.90631e-06 2.50082e-05 2.718 ||| 0-1 ||| 623 524574 +los ||| creators ||| 0.010101 0.239024 3.81262e-06 4.76e-05 2.718 ||| 0-0 ||| 198 524574 +los ||| credit ||| 0.000339213 0.0150322 1.90631e-06 6.13e-05 2.718 ||| 0-0 ||| 2948 524574 +los ||| creditors ||| 0.00934579 0.384375 3.81262e-06 0.0001196 2.718 ||| 0-0 ||| 214 524574 +los ||| credits ||| 0.00389105 0.233385 3.81262e-06 0.0001468 2.718 ||| 0-0 ||| 514 524574 +los ||| crews ||| 0.00362319 0.0387409 1.90631e-06 1.56e-05 2.718 ||| 0-0 ||| 276 524574 +los ||| crime ||| 0.000233727 0.0010397 3.81262e-06 6.8e-06 2.718 ||| 0-0 ||| 8557 524574 +los ||| crimes ' ||| 0.0769231 0.0444479 1.90631e-06 1.51065e-07 2.718 ||| 0-1 ||| 13 524574 +los ||| crimes against the ||| 0.0416667 0.122289 1.90631e-06 2.90671e-09 2.718 ||| 0-2 ||| 24 524574 +los ||| crimes of ||| 0.00571429 0.169739 1.90631e-06 3.2613e-05 2.718 ||| 0-0 ||| 175 524574 +los ||| crimes ||| 0.00298864 0.169739 1.90631e-05 0.0005999 2.718 ||| 0-0 ||| 3346 524574 +los ||| criminal behaviour ||| 0.0232558 0.0067797 1.90631e-06 8.96e-10 2.718 ||| 0-0 ||| 43 524574 +los ||| criminal sanction ||| 0.333333 0.0067797 1.90631e-06 6.3e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| criminal ||| 0.00368146 0.0067797 3.62199e-05 3.5e-05 2.718 ||| 0-0 ||| 5161 524574 +los ||| criminality spreads ||| 0.166667 0.0806452 1.90631e-06 1.022e-11 2.718 ||| 0-1 ||| 6 524574 +los ||| criminals ||| 0.00418702 0.251442 1.14379e-05 0.0004239 2.718 ||| 0-0 ||| 1433 524574 +los ||| criteria , which are ||| 0.2 0.0666739 1.90631e-06 9.22062e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| criteria , which ||| 0.0333333 0.0666739 1.90631e-06 6.07711e-07 2.718 ||| 0-0 ||| 30 524574 +los ||| criteria , ||| 0.00239808 0.0666739 1.90631e-06 7.15409e-05 2.718 ||| 0-0 ||| 417 524574 +los ||| criteria agreed in the Treaty , ||| 1 0.122289 1.90631e-06 2.23996e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| criteria agreed in the Treaty ||| 1 0.122289 1.90631e-06 1.8783e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| criteria agreed in the ||| 1 0.122289 1.90631e-06 2.19427e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| criteria ||| 0.00120237 0.0666739 2.4782e-05 0.0005999 2.718 ||| 0-0 ||| 10812 524574 +los ||| critical finger ||| 0.5 0.0019092 1.90631e-06 1.5488e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| critical mass of ||| 0.0344828 0.00454875 1.90631e-06 1.542e-12 2.718 ||| 0-1 0-2 ||| 29 524574 +los ||| critical part ||| 0.0714286 0.0019092 1.90631e-06 1.04914e-08 2.718 ||| 0-0 ||| 14 524574 +los ||| critical ||| 0.00100654 0.0019092 7.62523e-06 8.8e-06 2.718 ||| 0-0 ||| 3974 524574 +los ||| criticisms of me , you write ||| 1 0.0019787 1.90631e-06 3.49586e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| criticisms of me , you ||| 1 0.0019787 1.90631e-06 3.60398e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| criticisms of me , ||| 1 0.0019787 1.90631e-06 1.11623e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| criticisms of me ||| 0.5 0.0019787 1.90631e-06 9.36008e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| criticisms of ||| 0.00862069 0.0019787 1.90631e-06 1.55457e-08 2.718 ||| 0-1 ||| 116 524574 +los ||| criticize the ||| 0.037037 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 27 524574 +los ||| critics ||| 0.00607903 0.167064 3.81262e-06 6.81e-05 2.718 ||| 0-0 ||| 329 524574 +los ||| crops ||| 0.00243704 0.154598 5.71893e-06 0.0002615 2.718 ||| 0-0 ||| 1231 524574 +los ||| cross the ||| 0.0175439 0.122289 5.71893e-06 5.57643e-06 2.718 ||| 0-1 ||| 171 524574 +los ||| cross-border association ||| 1 0.0132751 1.90631e-06 1.1218e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| cross-border ||| 0.0026538 0.0132751 2.09694e-05 7.1e-05 2.718 ||| 0-0 ||| 4145 524574 +los ||| cross-checking ||| 0.0555556 0.0588235 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| cross-party event ||| 0.5 0.174545 1.90631e-06 4.87548e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| cross-party support ||| 0.0555556 0.174545 1.90631e-06 1.59667e-08 2.718 ||| 0-0 ||| 18 524574 +los ||| cross-party ||| 0.0122699 0.174545 3.81262e-06 4.67e-05 2.718 ||| 0-0 ||| 163 524574 +los ||| cross-section of ||| 0.05 0.0019787 1.90631e-06 3.63836e-09 2.718 ||| 0-1 ||| 20 524574 +los ||| crossing ||| 0.00355872 0.0208333 3.81262e-06 1.07e-05 2.718 ||| 0-0 ||| 562 524574 +los ||| cruel and inhumane . ||| 1 0.0071942 1.90631e-06 3.96104e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| cruel and inhumane ||| 0.0625 0.0071942 1.90631e-06 1.3077e-13 2.718 ||| 0-2 ||| 16 524574 +los ||| cruel ||| 0.00225225 0.0022727 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 444 524574 +los ||| crush the ||| 0.0625 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| culls or ||| 1 0.2 1.90631e-06 6.63114e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| culls ||| 0.0666667 0.2 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| cultivated their own culture ||| 0.5 0.0236713 1.90631e-06 4.45388e-16 2.718 ||| 0-1 ||| 2 524574 +los ||| cultivated their own ||| 0.5 0.0236713 1.90631e-06 2.24944e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| cultivated their ||| 0.5 0.0236713 1.90631e-06 1.32687e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| cultural ||| 0.000353607 0.0005162 5.71893e-06 3.9e-06 2.718 ||| 0-0 ||| 8484 524574 +los ||| cumbersome bureaucracy ||| 0.166667 0.0036232 1.90631e-06 6.5e-12 2.718 ||| 0-0 ||| 6 524574 +los ||| cumbersome ||| 0.00414938 0.0036232 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 241 524574 +los ||| cumulative ||| 0.00854701 0.0176991 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 117 524574 +los ||| current affairs ||| 0.0740741 0.178913 3.81262e-06 1.31873e-07 2.718 ||| 0-1 ||| 27 524574 +los ||| current and ||| 0.00302115 0.0024666 1.90631e-06 5.36109e-07 2.718 ||| 0-0 ||| 331 524574 +los ||| current outstanding ||| 1 0.0120968 1.90631e-06 3.36192e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| current position ||| 0.0117647 0.0024666 1.90631e-06 1.4094e-08 2.718 ||| 0-0 ||| 85 524574 +los ||| current rules as regards ||| 0.333333 0.0024666 1.90631e-06 7.10502e-15 2.718 ||| 0-0 ||| 3 524574 +los ||| current rules as ||| 0.333333 0.0024666 1.90631e-06 5.07502e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| current rules ||| 0.0052356 0.0024666 1.90631e-06 4.97336e-09 2.718 ||| 0-0 ||| 191 524574 +los ||| current ||| 0.00150096 0.0024666 5.5283e-05 4.28e-05 2.718 ||| 0-0 ||| 19321 524574 +los ||| customer ||| 0.00320513 0.0909091 1.90631e-06 3.69e-05 2.718 ||| 0-0 ||| 312 524574 +los ||| customers ||| 0.0035461 0.274456 5.71893e-06 0.0002946 2.718 ||| 0-0 ||| 846 524574 +los ||| customs and ||| 0.00377358 0.0411695 1.90631e-06 1.68098e-06 2.718 ||| 0-0 ||| 265 524574 +los ||| customs ||| 0.00679579 0.0411695 3.81262e-05 0.0001342 2.718 ||| 0-0 ||| 2943 524574 +los ||| cut back on the ||| 0.0625 0.122289 1.90631e-06 1.45943e-10 2.718 ||| 0-3 ||| 16 524574 +los ||| cut the railway lines ||| 1 0.122289 1.90631e-06 2.77398e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| cut the railway ||| 1 0.122289 1.90631e-06 3.04834e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| cut the ||| 0.00755668 0.122289 5.71893e-06 3.24291e-05 2.718 ||| 0-1 ||| 397 524574 +los ||| cut their ||| 0.0238095 0.0236713 1.90631e-06 1.7295e-07 2.718 ||| 0-1 ||| 42 524574 +los ||| cutbacks ||| 0.00900901 0.134228 3.81262e-06 3.89e-05 2.718 ||| 0-0 ||| 222 524574 +los ||| cuts will ||| 0.125 0.104656 1.90631e-06 1.90932e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| cuts ||| 0.00442913 0.104656 1.71568e-05 0.0002207 2.718 ||| 0-0 ||| 2032 524574 +los ||| cutting their ||| 0.037037 0.0236713 1.90631e-06 3.3858e-08 2.718 ||| 0-1 ||| 27 524574 +los ||| cycles ||| 0.0042735 0.282869 1.90631e-06 6.9e-05 2.718 ||| 0-0 ||| 234 524574 +los ||| cynically upheld ||| 1 0.0034722 1.90631e-06 7.6e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| daily basis , by the ||| 0.5 0.122289 1.90631e-06 3.62011e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| dairy ||| 0.00319829 0.10219 5.71893e-06 0.0001089 2.718 ||| 0-0 ||| 938 524574 +los ||| damage and distort competition from the point ||| 1 0.122289 1.90631e-06 2.54493e-23 2.718 ||| 0-5 ||| 1 524574 +los ||| damage and distort competition from the ||| 1 0.122289 1.90631e-06 2.90916e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| damage should ||| 0.05 0.0626363 1.90631e-06 1.3612e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| damage the ||| 0.00584795 0.122289 1.90631e-06 1.80591e-05 2.718 ||| 0-1 ||| 171 524574 +los ||| damage ||| 0.00246361 0.0626363 2.09694e-05 0.0003072 2.718 ||| 0-0 ||| 4465 524574 +los ||| danger , given the ||| 1 0.122289 1.90631e-06 1.71677e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| danger from the people ||| 1 0.105878 1.90631e-06 2.66025e-10 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| danger of causing the ||| 1 0.122289 1.90631e-06 3.36399e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| dangerous ||| 0.000217912 0.0004669 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 4589 524574 +los ||| dangers ||| 0.00078064 0.0621069 1.90631e-06 7.68e-05 2.718 ||| 0-0 ||| 1281 524574 +los ||| dark about the ||| 0.2 0.122289 1.90631e-06 6.79474e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| dark ||| 0.00276243 0.0065217 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 362 524574 +los ||| data being ||| 0.05 0.16292 1.90631e-06 5.89621e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| data recorder ||| 0.0294118 0.16292 1.90631e-06 8.2876e-10 2.718 ||| 0-0 ||| 34 524574 +los ||| data subject ||| 0.166667 0.16292 1.90631e-06 1.11841e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| data ||| 0.002276 0.16292 5.71893e-05 0.0020719 2.718 ||| 0-0 ||| 13181 524574 +los ||| day , the ||| 0.00840336 0.122289 1.90631e-06 1.31059e-05 2.718 ||| 0-2 ||| 119 524574 +los ||| day all ||| 0.111111 0.0177928 1.90631e-06 6.88742e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| day as the ||| 0.0666667 0.122289 1.90631e-06 1.12145e-06 2.718 ||| 0-2 ||| 15 524574 +los ||| day by those ||| 1 0.284705 1.90631e-06 2.24595e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| day when the ||| 0.03125 0.0614546 1.90631e-06 4.05526e-09 2.718 ||| 0-1 0-2 ||| 32 524574 +los ||| deadlines are ||| 0.0555556 0.109218 1.90631e-06 2.08018e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| deadlines ||| 0.00101937 0.109218 1.90631e-06 0.0001371 2.718 ||| 0-0 ||| 981 524574 +los ||| deal has been said both here in ||| 1 0.0352574 1.90631e-06 1.5606e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| deal has been said both here ||| 1 0.0352574 1.90631e-06 7.291e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| deal has been said both ||| 1 0.0352574 1.90631e-06 3.59552e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| deal of poor ||| 1 0.0167739 1.90631e-06 2.32148e-10 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| deal of the ||| 0.0384615 0.122289 1.90631e-06 9.90158e-06 2.718 ||| 0-2 ||| 26 524574 +los ||| deal of ||| 0.00241255 0.0019787 3.81262e-06 1.40441e-06 2.718 ||| 0-1 ||| 829 524574 +los ||| deal with illegal ||| 0.5 0.0016229 1.90631e-06 3.17667e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| deal with the jungle of ||| 1 0.122289 1.90631e-06 6.96472e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| deal with the jungle ||| 1 0.122289 1.90631e-06 1.28113e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| deal with the ||| 0.00549753 0.122289 1.90631e-05 1.16466e-06 2.718 ||| 0-2 ||| 1819 524574 +los ||| deal with these ||| 0.00395257 0.0240362 1.90631e-06 6.61807e-09 2.718 ||| 0-2 ||| 253 524574 +los ||| deal with those ||| 0.0425532 0.284705 3.81262e-06 4.53357e-08 2.718 ||| 0-2 ||| 47 524574 +los ||| deal with ||| 0.00032113 0.0007437 3.81262e-06 9.82524e-08 2.718 ||| 0-1 ||| 6228 524574 +los ||| dealing with the ||| 0.00291545 0.122289 5.71893e-06 2.83348e-07 2.718 ||| 0-2 ||| 1029 524574 +los ||| deals with most aspects of the ||| 0.5 0.122289 1.90631e-06 1.16317e-16 2.718 ||| 0-5 ||| 2 524574 +los ||| deals ||| 0.00221729 0.0102166 3.81262e-06 2.43e-05 2.718 ||| 0-0 ||| 902 524574 +los ||| dealt to the ||| 1 0.122289 1.90631e-06 3.99078e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| debate among the ||| 0.111111 0.122289 1.90631e-06 7.60618e-09 2.718 ||| 0-2 ||| 9 524574 +los ||| debate between our group ' s chairmen ||| 1 0.183633 1.90631e-06 5.41823e-24 2.718 ||| 0-6 ||| 1 524574 +los ||| debate the ||| 0.00355872 0.122289 1.90631e-06 8.48905e-05 2.718 ||| 0-1 ||| 281 524574 +los ||| debates has been ||| 1 0.122803 1.90631e-06 9.57573e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| debates has ||| 1 0.122803 1.90631e-06 2.86767e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| debates ||| 0.00309303 0.122803 2.4782e-05 0.0005571 2.718 ||| 0-0 ||| 4203 524574 +los ||| debt to the tune ||| 0.2 0.122289 1.90631e-06 2.25656e-11 2.718 ||| 0-2 ||| 5 524574 +los ||| debt to the ||| 0.0526316 0.122289 1.90631e-06 7.54702e-07 2.718 ||| 0-2 ||| 19 524574 +los ||| deceiving them and ||| 0.333333 0.038218 1.90631e-06 1.76467e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| deceiving them ||| 0.333333 0.038218 1.90631e-06 1.40882e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| deciding upon ||| 0.0769231 0.0017644 1.90631e-06 3.007e-10 2.718 ||| 0-1 ||| 13 524574 +los ||| decision makers ||| 0.00578035 0.246468 1.90631e-06 2.4004e-08 2.718 ||| 0-1 ||| 173 524574 +los ||| decision to close its plant at ||| 1 0.0211371 1.90631e-06 2.00149e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| decision to close its plant ||| 1 0.0211371 1.90631e-06 4.7798e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| decision to close its ||| 0.5 0.0211371 1.90631e-06 4.42574e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| decision was the ||| 0.125 0.122289 1.90631e-06 2.11399e-07 2.718 ||| 0-2 ||| 8 524574 +los ||| decision-makers ||| 0.00497512 0.171701 3.81262e-06 0.000105 2.718 ||| 0-0 ||| 402 524574 +los ||| decision-making body ||| 0.0333333 0.0016258 1.90631e-06 8.3032e-10 2.718 ||| 0-0 ||| 30 524574 +los ||| decision-making ||| 0.000152532 0.0016258 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 6556 524574 +los ||| decisions and sentences , which all ||| 1 0.0177928 1.90631e-06 9.36984e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| decisive ||| 0.000402739 0.000757 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 2483 524574 +los ||| declarations to be made at European Councils ||| 1 0.108999 1.90631e-06 3.83039e-20 2.718 ||| 0-6 ||| 1 524574 +los ||| declare the ||| 0.0169492 0.122289 1.90631e-06 9.26546e-06 2.718 ||| 0-1 ||| 59 524574 +los ||| decreases ||| 0.0185185 0.027027 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 54 524574 +los ||| deeds ||| 0.00468384 0.189831 3.81262e-06 0.0001089 2.718 ||| 0-0 ||| 427 524574 +los ||| defaulting ||| 0.0769231 0.0555556 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 13 524574 +los ||| defence ||| 0.000243279 0.0008889 3.81262e-06 4.9e-06 2.718 ||| 0-0 ||| 8221 524574 +los ||| defend the ||| 0.00432277 0.122289 5.71893e-06 8.96519e-06 2.718 ||| 0-1 ||| 694 524574 +los ||| defend them ||| 0.0133333 0.038218 1.90631e-06 4.20633e-08 2.718 ||| 0-1 ||| 75 524574 +los ||| defended the ||| 0.0140845 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-1 ||| 71 524574 +los ||| defenders ||| 0.00148148 0.301092 1.90631e-06 0.0001876 2.718 ||| 0-0 ||| 675 524574 +los ||| defending national political identities and opening up ||| 1 0.0129851 1.90631e-06 8.91002e-28 2.718 ||| 0-1 ||| 1 524574 +los ||| defending national political identities and opening ||| 1 0.0129851 1.90631e-06 2.61253e-25 2.718 ||| 0-1 ||| 1 524574 +los ||| defending national political identities and ||| 1 0.0129851 1.90631e-06 9.29724e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| defending national political identities ||| 1 0.0129851 1.90631e-06 7.42242e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| defending national political ||| 1 0.0129851 1.90631e-06 4.12356e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| defending national ||| 1 0.0129851 1.90631e-06 2.31012e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| defending the ||| 0.00234742 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-1 ||| 426 524574 +los ||| deficits ||| 0.00257732 0.228304 5.71893e-06 0.0003325 2.718 ||| 0-0 ||| 1164 524574 +los ||| define its own identity . ||| 1 0.0211371 1.90631e-06 2.87911e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| define its own identity ||| 1 0.0211371 1.90631e-06 9.50516e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| define its own ||| 0.0909091 0.0211371 1.90631e-06 4.70553e-11 2.718 ||| 0-1 ||| 11 524574 +los ||| define its ||| 0.0172414 0.0211371 1.90631e-06 2.77563e-08 2.718 ||| 0-1 ||| 58 524574 +los ||| defining the ||| 0.00255102 0.122289 1.90631e-06 3.08849e-06 2.718 ||| 0-1 ||| 392 524574 +los ||| definitely , the ||| 0.2 0.122289 1.90631e-06 2.64983e-06 2.718 ||| 0-2 ||| 5 524574 +los ||| definitely including the anomaly ||| 0.5 0.122289 1.90631e-06 9.27905e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| definitely including the ||| 0.5 0.122289 1.90631e-06 2.31976e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| definition of the ||| 0.00263158 0.122289 1.90631e-06 6.3663e-07 2.718 ||| 0-2 ||| 380 524574 +los ||| degree to which the ||| 0.0526316 0.122289 1.90631e-06 4.48439e-08 2.718 ||| 0-3 ||| 19 524574 +los ||| dei ||| 0.1 0.222222 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| delay . the ||| 1 0.122289 1.90631e-06 4.06684e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| delay the course of ||| 1 0.122289 1.90631e-06 9.20926e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| delay the course ||| 1 0.122289 1.90631e-06 1.694e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| delay the ||| 0.00473934 0.122289 1.90631e-06 1.34263e-05 2.718 ||| 0-1 ||| 211 524574 +los ||| delayed by precisely the ||| 1 0.122289 1.90631e-06 2.0873e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| delays to the ||| 0.111111 0.122289 1.90631e-06 2.59191e-07 2.718 ||| 0-2 ||| 9 524574 +los ||| delays ||| 0.00120337 0.150383 3.81262e-06 0.0003053 2.718 ||| 0-0 ||| 1662 524574 +los ||| delegates ||| 0.00505051 0.117438 1.90631e-06 3.21e-05 2.718 ||| 0-0 ||| 198 524574 +los ||| deliver the ||| 0.00552486 0.122289 1.90631e-06 1.59143e-05 2.718 ||| 0-1 ||| 181 524574 +los ||| delivered by the ||| 0.0163934 0.0642678 1.90631e-06 2.39714e-08 2.718 ||| 0-1 0-2 ||| 61 524574 +los ||| delivered by ||| 0.00869565 0.0062464 1.90631e-06 5.58831e-08 2.718 ||| 0-1 ||| 115 524574 +los ||| deliveries ||| 0.00900901 0.178808 1.90631e-06 2.63e-05 2.718 ||| 0-0 ||| 111 524574 +los ||| delivering ||| 0.00152439 0.0069832 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 656 524574 +los ||| delivery , ||| 0.025 0.0292621 1.90631e-06 2.67131e-06 2.718 ||| 0-0 ||| 40 524574 +los ||| delivery ||| 0.00431499 0.0292621 7.62523e-06 2.24e-05 2.718 ||| 0-0 ||| 927 524574 +los ||| delusions ||| 0.047619 0.0810811 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| demand among the ||| 0.5 0.122289 1.90631e-06 2.06009e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| demands from the ||| 0.0588235 0.122289 1.90631e-06 2.65955e-08 2.718 ||| 0-2 ||| 17 524574 +los ||| demersal fish ||| 0.2 0.0906807 1.90631e-06 2.457e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| democracy , human ||| 0.333333 0.319795 1.90631e-06 6.76902e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| democracy or the ||| 0.166667 0.122289 1.90631e-06 1.42714e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| democratic changes in ||| 0.0714286 0.0936843 1.90631e-06 5.82395e-10 2.718 ||| 0-1 ||| 14 524574 +los ||| democratic changes ||| 0.0238095 0.0936843 1.90631e-06 2.7209e-08 2.718 ||| 0-1 ||| 42 524574 +los ||| democratic ||| 0.00071009 0.000912 2.09694e-05 1.26e-05 2.718 ||| 0-0 ||| 15491 524574 +los ||| democrats ||| 0.00239808 0.186317 1.90631e-06 0.0001244 2.718 ||| 0-0 ||| 417 524574 +los ||| demonstrate . the ||| 1 0.122289 1.90631e-06 3.22229e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| demonstrate the possibilities offered ||| 0.2 0.122289 1.90631e-06 6.66372e-15 2.718 ||| 0-1 ||| 5 524574 +los ||| demonstrate the possibilities ||| 0.2 0.122289 1.90631e-06 1.53189e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| demonstrate the ||| 0.00634921 0.122289 3.81262e-06 1.06381e-05 2.718 ||| 0-1 ||| 315 524574 +los ||| demonstrators ||| 0.0111111 0.221782 9.53154e-06 0.0001089 2.718 ||| 0-0 ||| 450 524574 +los ||| denominational ||| 1 0.5 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| densely populated regions and ||| 0.333333 0.0023923 1.90631e-06 1.44499e-18 2.718 ||| 0-1 ||| 3 524574 +los ||| densely populated regions ||| 0.2 0.0023923 1.90631e-06 1.1536e-16 2.718 ||| 0-1 ||| 5 524574 +los ||| densely populated ||| 0.0070922 0.0023923 1.90631e-06 1.4e-12 2.718 ||| 0-1 ||| 141 524574 +los ||| departmental ||| 0.0526316 0.115385 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 19 524574 +los ||| departments have ||| 0.125 0.152393 1.90631e-06 1.40647e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| departments ||| 0.00375469 0.152393 5.71893e-06 0.0001176 2.718 ||| 0-0 ||| 799 524574 +los ||| dependency , reducing the supply and demand ||| 1 0.122289 1.90631e-06 3.29344e-23 2.718 ||| 0-3 ||| 1 524574 +los ||| dependency , reducing the supply and ||| 1 0.122289 1.90631e-06 6.14447e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| dependency , reducing the supply ||| 1 0.122289 1.90631e-06 4.90541e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| dependency , reducing the ||| 1 0.122289 1.90631e-06 9.52507e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| deployable ||| 0.1 0.1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| depressing ||| 0.00649351 0.0048077 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 154 524574 +los ||| deprived them of the upsurge ||| 0.5 0.122289 1.90631e-06 6.08015e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| deprived them of the ||| 0.333333 0.122289 1.90631e-06 3.37786e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| deregulating the labour market and making it ||| 1 0.122289 1.90631e-06 1.43551e-22 2.718 ||| 0-1 ||| 1 524574 +los ||| deregulating the labour market and making ||| 1 0.122289 1.90631e-06 8.07228e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| deregulating the labour market and ||| 0.25 0.122289 1.90631e-06 2.09833e-17 2.718 ||| 0-1 ||| 4 524574 +los ||| deregulating the labour market ||| 0.2 0.122289 1.90631e-06 1.67519e-15 2.718 ||| 0-1 ||| 5 524574 +los ||| deregulating the labour ||| 1 0.122289 1.90631e-06 7.41236e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| deregulating the ||| 0.0588235 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 17 524574 +los ||| derivative trading ||| 0.333333 0.11236 1.90631e-06 1.3289e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| derivative ||| 0.0322581 0.11236 3.81262e-06 9.7e-06 2.718 ||| 0-0 ||| 62 524574 +los ||| derived ||| 0.00483092 0.002008 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 207 524574 +los ||| descendants of ||| 0.0454545 0.0019787 1.90631e-06 2.31532e-09 2.718 ||| 0-1 ||| 22 524574 +los ||| describe the ||| 0.0113636 0.122289 3.81262e-06 1.05094e-05 2.718 ||| 0-1 ||| 176 524574 +los ||| describe to you the ||| 0.333333 0.122289 1.90631e-06 3.01512e-09 2.718 ||| 0-3 ||| 3 524574 +los ||| described as the ||| 0.0512821 0.122289 3.81262e-06 1.95225e-07 2.718 ||| 0-2 ||| 39 524574 +los ||| described by ||| 0.00581395 0.0062464 1.90631e-06 7.22431e-08 2.718 ||| 0-1 ||| 172 524574 +los ||| describes the food ||| 0.25 0.122912 1.90631e-06 4.44367e-09 2.718 ||| 0-1 0-2 ||| 4 524574 +los ||| describing the ||| 0.00699301 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-1 ||| 143 524574 +los ||| description of the ||| 0.00909091 0.122289 1.90631e-06 2.93829e-07 2.718 ||| 0-2 ||| 110 524574 +los ||| deserve our ||| 0.00529101 0.0248369 1.90631e-06 6.28514e-08 2.718 ||| 0-1 ||| 189 524574 +los ||| designated ||| 0.00717703 0.0103093 5.71893e-06 4.9e-06 2.718 ||| 0-0 ||| 418 524574 +los ||| designers ||| 0.0666667 0.285714 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| designing ||| 0.00507614 0.0053191 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 197 524574 +los ||| designs ||| 0.00621118 0.206406 1.90631e-06 5.64e-05 2.718 ||| 0-0 ||| 161 524574 +los ||| desire of the ||| 0.0136986 0.122289 1.90631e-06 1.09137e-06 2.718 ||| 0-2 ||| 73 524574 +los ||| despite , at the ||| 0.25 0.122289 1.90631e-06 1.28738e-08 2.718 ||| 0-3 ||| 4 524574 +los ||| despite the Council ||| 0.111111 0.122289 1.90631e-06 8.91482e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| despite the presentation ||| 0.5 0.122289 1.90631e-06 4.07328e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| despite the substantial ||| 0.333333 0.122289 1.90631e-06 7.7083e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| despite the ||| 0.00138773 0.122289 9.53154e-06 2.57803e-05 2.718 ||| 0-1 ||| 3603 524574 +los ||| destroying the ||| 0.00483092 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-1 ||| 207 524574 +los ||| detail the ||| 0.00869565 0.122289 1.90631e-06 2.19197e-05 2.718 ||| 0-1 ||| 115 524574 +los ||| detail to the ||| 0.0909091 0.122289 1.90631e-06 1.94774e-06 2.718 ||| 0-2 ||| 11 524574 +los ||| detailing the ||| 0.0133333 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-1 ||| 75 524574 +los ||| details for every one ||| 1 0.144232 1.90631e-06 2.89619e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| details for every ||| 1 0.144232 1.90631e-06 6.94864e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| details ||| 0.0016214 0.0606164 7.62523e-06 0.0001721 2.718 ||| 0-0 ||| 2467 524574 +los ||| detainees ||| 0.00273973 0.24109 1.90631e-06 0.0001118 2.718 ||| 0-0 ||| 365 524574 +los ||| detected ||| 0.00414938 0.0030581 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 241 524574 +los ||| detention ||| 0.000664452 0.0018921 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1505 524574 +los ||| determine technical ||| 1 0.0012609 1.90631e-06 2.5787e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| determine the extent to ||| 0.142857 0.122289 1.90631e-06 1.76555e-10 2.718 ||| 0-1 ||| 7 524574 +los ||| determine the extent ||| 0.0714286 0.122289 1.90631e-06 1.98693e-09 2.718 ||| 0-1 ||| 14 524574 +los ||| determine the ||| 0.00209644 0.122289 1.90631e-06 1.03378e-05 2.718 ||| 0-1 ||| 477 524574 +los ||| determined by the ||| 0.00714286 0.122289 1.90631e-06 7.70206e-08 2.718 ||| 0-2 ||| 140 524574 +los ||| developed - are ||| 0.5 0.005811 1.90631e-06 1.89441e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| developed - ||| 0.25 0.005811 1.90631e-06 1.24857e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| developed countries ||| 0.00178253 0.0957208 1.90631e-06 5.72697e-07 2.718 ||| 0-1 ||| 561 524574 +los ||| developed hand ||| 1 0.005811 1.90631e-06 1.31275e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| developed nuclear , ||| 1 0.005811 1.90631e-06 1.53551e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| developed nuclear ||| 0.5 0.005811 1.90631e-06 1.28759e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| developed these ||| 0.5 0.005811 1.90631e-06 3.4328e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| developed very ||| 0.125 0.005811 1.90631e-06 1.15171e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| developed ||| 0.00291333 0.005811 3.05009e-05 3.31e-05 2.718 ||| 0-0 ||| 5492 524574 +los ||| developers then ||| 0.5 0.229167 1.90631e-06 3.44626e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| developers ||| 0.0441176 0.229167 5.71893e-06 2.14e-05 2.718 ||| 0-0 ||| 68 524574 +los ||| developing " ||| 1 0.150762 1.90631e-06 8.43103e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| developing something ||| 1 0.150762 1.90631e-06 1.97068e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| developing the ||| 0.00352113 0.122289 3.81262e-06 2.32923e-05 2.718 ||| 0-1 ||| 568 524574 +los ||| developing ||| 0.00270592 0.150762 4.76577e-05 0.0035604 2.718 ||| 0-0 ||| 9239 524574 +los ||| development work ||| 0.0113636 0.0006501 1.90631e-06 5.7575e-09 2.718 ||| 0-1 ||| 88 524574 +los ||| developments including ||| 0.2 0.14513 1.90631e-06 1.06478e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| developments into account ||| 0.2 0.14513 1.90631e-06 3.0105e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| developments into ||| 0.25 0.14513 1.90631e-06 1.04713e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| developments of the conflict ||| 1 0.122289 1.90631e-06 2.90758e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| developments of the ||| 0.0434783 0.122289 1.90631e-06 6.97261e-07 2.718 ||| 0-2 ||| 23 524574 +los ||| developments ||| 0.00268045 0.14513 2.66883e-05 0.0010199 2.718 ||| 0-0 ||| 5223 524574 +los ||| develops in the future ||| 0.25 0.122289 1.90631e-06 1.21932e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| develops in the ||| 0.166667 0.122289 1.90631e-06 4.5908e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| develops them ||| 1 0.038218 1.90631e-06 1.0063e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| devices in favour ||| 1 0.126543 1.90631e-06 5.51871e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| devices in ||| 0.25 0.126543 1.90631e-06 1.70594e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| devices ||| 0.00852878 0.126543 7.62523e-06 7.97e-05 2.718 ||| 0-0 ||| 469 524574 +los ||| devote all ||| 0.05 0.0177928 1.90631e-06 2.60765e-08 2.718 ||| 0-1 ||| 20 524574 +los ||| devoted to the ||| 0.008 0.122289 1.90631e-06 7.81384e-07 2.718 ||| 0-2 ||| 125 524574 +los ||| dialogue initiated by the ||| 1 0.122289 1.90631e-06 1.23593e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| dictate events ||| 0.25 0.140095 1.90631e-06 5.425e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| did emerge the ||| 0.333333 0.122289 1.90631e-06 5.88392e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| did not have any great ||| 0.2 0.0178119 1.90631e-06 6.73168e-15 2.718 ||| 0-3 ||| 5 524574 +los ||| did not have any ||| 0.0294118 0.0178119 1.90631e-06 1.7129e-11 2.718 ||| 0-3 ||| 34 524574 +los ||| did the ||| 0.0226415 0.122289 1.14379e-05 0.000194832 2.718 ||| 0-1 ||| 265 524574 +los ||| did to the ||| 0.125 0.122289 1.90631e-06 1.73124e-05 2.718 ||| 0-2 ||| 8 524574 +los ||| did we have the ||| 1 0.122289 1.90631e-06 2.64526e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| did well in the ||| 0.166667 0.122289 1.90631e-06 6.6124e-09 2.718 ||| 0-3 ||| 6 524574 +los ||| die in the next ' Prestige ' ||| 1 0.122289 1.90631e-06 3.21725e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| die in the next ' Prestige ||| 1 0.122289 1.90631e-06 9.36635e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| die in the next ' ||| 1 0.122289 1.90631e-06 3.74654e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| die in the next ||| 1 0.122289 1.90631e-06 1.09073e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| die in the ||| 0.0625 0.122289 1.90631e-06 1.05588e-07 2.718 ||| 0-2 ||| 16 524574 +los ||| diesel ||| 0.00271003 0.0053191 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 369 524574 +los ||| different assessment is made ||| 1 0.0053114 1.90631e-06 3.05298e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| different assessment is ||| 1 0.0053114 1.90631e-06 1.45741e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| different assessment ||| 0.5 0.0053114 1.90631e-06 4.65015e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| different constituencies ||| 0.2 0.0053114 1.90631e-06 1.9242e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| different countries ' ||| 0.125 0.0700843 1.90631e-06 9.76409e-09 2.718 ||| 0-1 0-2 ||| 8 524574 +los ||| different countries , ||| 0.00684932 0.0957208 1.90631e-06 2.18908e-07 2.718 ||| 0-1 ||| 146 524574 +los ||| different countries ||| 0.00121803 0.0957208 1.90631e-06 1.83563e-06 2.718 ||| 0-1 ||| 821 524574 +los ||| different from that ||| 0.0113636 0.0053114 1.90631e-06 2.89587e-09 2.718 ||| 0-0 ||| 88 524574 +los ||| different from ||| 0.00125 0.0053114 1.90631e-06 1.72152e-07 2.718 ||| 0-0 ||| 800 524574 +los ||| different parts of the estate ||| 1 0.122289 1.90631e-06 6.58617e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| different parts of the ||| 0.00952381 0.122289 1.90631e-06 2.99371e-10 2.718 ||| 0-3 ||| 105 524574 +los ||| different reasons ||| 0.0192308 0.0053114 1.90631e-06 1.08076e-08 2.718 ||| 0-0 ||| 52 524574 +los ||| different waters ||| 0.25 0.0053114 1.90631e-06 1.77454e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| different ||| 0.00316888 0.0053114 0.00012391 0.0001069 2.718 ||| 0-0 ||| 20512 524574 +los ||| difficult for ||| 0.0014881 0.0015353 1.90631e-06 1.0952e-07 2.718 ||| 0-1 ||| 672 524574 +los ||| difficult times ||| 0.00403226 0.0314168 1.90631e-06 3.12736e-08 2.718 ||| 0-1 ||| 248 524574 +los ||| difficulty keeping afloat ||| 0.111111 0.0038775 1.90631e-06 1.2222e-16 2.718 ||| 0-1 ||| 9 524574 +los ||| difficulty keeping ||| 0.0666667 0.0038775 1.90631e-06 1.746e-10 2.718 ||| 0-1 ||| 15 524574 +los ||| digital cinema , the ||| 1 0.122289 1.90631e-06 2.86468e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| digital ||| 0.00332889 0.0079893 9.53154e-06 1.17e-05 2.718 ||| 0-0 ||| 1502 524574 +los ||| dimension of the ||| 0.02 0.122289 1.90631e-06 7.39237e-07 2.718 ||| 0-2 ||| 50 524574 +los ||| diminishing them ||| 0.5 0.038218 1.90631e-06 2.81764e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| diploma holders ||| 1 0.281955 1.90631e-06 5.832e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| diplomas ||| 0.00938967 0.255034 3.81262e-06 7.39e-05 2.718 ||| 0-0 ||| 213 524574 +los ||| diplomatic efforts ||| 0.00925926 0.101547 1.90631e-06 7.97872e-09 2.718 ||| 0-1 ||| 108 524574 +los ||| direct payments with the general ||| 1 0.122289 1.90631e-06 7.8286e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| direct payments with the ||| 1 0.122289 1.90631e-06 4.47605e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| direct such projects ||| 1 0.161094 1.90631e-06 1.93967e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| direct support ||| 0.00675676 0.0017634 1.90631e-06 3.65833e-09 2.718 ||| 0-0 ||| 148 524574 +los ||| direct ||| 0.000930088 0.0017634 1.14379e-05 1.07e-05 2.718 ||| 0-0 ||| 6451 524574 +los ||| direction the ||| 0.0769231 0.122289 1.90631e-06 3.89063e-05 2.718 ||| 0-1 ||| 13 524574 +los ||| directive on the coordination of procedures for ||| 1 0.219824 1.90631e-06 6.87259e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| directive on the coordination of procedures ||| 1 0.219824 1.90631e-06 8.94205e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| directly links the ||| 1 0.122289 1.90631e-06 1.92953e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| directly to the ||| 0.00442478 0.122289 1.90631e-06 1.4408e-06 2.718 ||| 0-2 ||| 226 524574 +los ||| directors to ||| 0.333333 0.194581 1.90631e-06 6.82431e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| directors ||| 0.00892857 0.194581 5.71893e-06 7.68e-05 2.718 ||| 0-0 ||| 336 524574 +los ||| directors-general ||| 0.0238095 0.0609756 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 42 524574 +los ||| dirty lorries ||| 1 0.237553 1.90631e-06 2.2736e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| dirty ||| 0.00531915 0.011194 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 188 524574 +los ||| disabled ||| 0.00177462 0.0225759 3.81262e-06 5.93e-05 2.718 ||| 0-0 ||| 1127 524574 +los ||| disadvantages the railways ||| 0.25 0.122289 1.90631e-06 6.71746e-12 2.718 ||| 0-1 ||| 4 524574 +los ||| disadvantages the ||| 0.2 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| disagreements ||| 0.003861 0.0935252 1.90631e-06 2.53e-05 2.718 ||| 0-0 ||| 259 524574 +los ||| disappointment of the ||| 0.0909091 0.122289 1.90631e-06 4.19756e-08 2.718 ||| 0-2 ||| 11 524574 +los ||| disasters were all ||| 1 0.0797759 1.90631e-06 2.4608e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| disasters were ||| 0.5 0.0797759 1.90631e-06 5.2076e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| disasters ||| 0.00138217 0.0797759 7.62523e-06 0.0002907 2.718 ||| 0-0 ||| 2894 524574 +los ||| discard ||| 0.00813008 0.153226 1.90631e-06 1.85e-05 2.718 ||| 0-0 ||| 123 524574 +los ||| discharge those ||| 0.5 0.284705 1.90631e-06 4.09091e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| discontented Czechs ||| 0.25 0.141304 1.90631e-06 1.012e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| discover what the problem is ||| 0.5 0.122289 1.90631e-06 2.29086e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| discover what the problem ||| 0.5 0.122289 1.90631e-06 7.30945e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| discover what the ||| 0.333333 0.122289 1.90631e-06 3.25009e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| discoveries , ||| 0.142857 0.245902 1.90631e-06 5.22336e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| discoveries ||| 0.0075188 0.245902 1.90631e-06 4.38e-05 2.718 ||| 0-0 ||| 133 524574 +los ||| discuss his ||| 0.142857 0.0058818 1.90631e-06 7.21827e-09 2.718 ||| 0-1 ||| 7 524574 +los ||| discuss the effects ||| 0.5 0.122289 1.90631e-06 9.7129e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| discuss the past , the ||| 1 0.122289 1.90631e-06 1.67758e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| discuss the ||| 0.00364631 0.122289 7.62523e-06 1.78875e-05 2.718 ||| 0-1 ||| 1097 524574 +los ||| discuss these ||| 0.00729927 0.0240362 1.90631e-06 1.01644e-07 2.718 ||| 0-1 ||| 137 524574 +los ||| discussed is beyond my ||| 1 0.0086409 1.90631e-06 8.495e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| discussed the matter ||| 0.025641 0.122289 1.90631e-06 2.33647e-08 2.718 ||| 0-1 ||| 39 524574 +los ||| discussed the ||| 0.00591716 0.122289 3.81262e-06 2.25202e-05 2.718 ||| 0-1 ||| 338 524574 +los ||| discusses the ||| 0.0178571 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 56 524574 +los ||| discussing facts and ||| 0.333333 0.0667145 1.90631e-06 7.99433e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| discussing facts ||| 0.333333 0.0667145 1.90631e-06 6.38224e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| discussing problems that are ||| 0.333333 0.106249 1.90631e-06 2.76279e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| discussing problems that ||| 0.333333 0.106249 1.90631e-06 1.8209e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| discussing problems ||| 0.125 0.106249 1.90631e-06 1.08247e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| discussing structural problems instead ; the ||| 1 0.122289 1.90631e-06 1.95866e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| discussing the ||| 0.00256739 0.122289 3.81262e-06 1.51422e-05 2.718 ||| 0-1 ||| 779 524574 +los ||| discussions again and again ||| 1 0.0717203 1.90631e-06 2.2889e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| discussions again and ||| 1 0.0717203 1.90631e-06 3.95797e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| discussions again ||| 0.5 0.0717203 1.90631e-06 3.15983e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| discussions concerning ||| 0.0208333 0.0717203 1.90631e-06 3.36036e-08 2.718 ||| 0-0 ||| 48 524574 +los ||| discussions on the ||| 0.00315457 0.122289 1.90631e-06 1.18824e-07 2.718 ||| 0-2 ||| 317 524574 +los ||| discussions ||| 0.00165837 0.0717203 2.09694e-05 0.0005464 2.718 ||| 0-0 ||| 6633 524574 +los ||| disguise the ||| 0.0222222 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 45 524574 +los ||| disgusted by the ||| 0.25 0.122289 1.90631e-06 9.00825e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| dishonest ||| 0.00549451 0.0045455 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 182 524574 +los ||| dismissing the Kurdish ||| 0.333333 0.122289 1.90631e-06 1.74156e-12 2.718 ||| 0-1 ||| 3 524574 +los ||| dismissing the ||| 0.0909091 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| disorders ||| 0.00925926 0.193916 3.81262e-06 4.96e-05 2.718 ||| 0-0 ||| 216 524574 +los ||| dispel the facts ||| 0.333333 0.122289 1.90631e-06 6.15552e-12 2.718 ||| 0-1 ||| 3 524574 +los ||| dispel the ||| 0.0185185 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 54 524574 +los ||| displaced people ||| 0.00689655 0.0894672 1.90631e-06 5.98523e-08 2.718 ||| 0-1 ||| 145 524574 +los ||| displays of ||| 0.027027 0.0019787 1.90631e-06 8.269e-09 2.718 ||| 0-1 ||| 37 524574 +los ||| disposal to put an end to the ||| 1 0.122289 1.90631e-06 6.08093e-16 2.718 ||| 0-6 ||| 1 524574 +los ||| dispose of ||| 0.0196078 0.00761185 3.81262e-06 6.28444e-09 2.718 ||| 0-0 0-1 ||| 102 524574 +los ||| disputed by the ||| 0.25 0.122289 1.90631e-06 7.2066e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| disputes between the ||| 0.0833333 0.122289 1.90631e-06 8.93954e-10 2.718 ||| 0-2 ||| 12 524574 +los ||| disputes over ||| 0.0232558 0.121588 1.90631e-06 9.17739e-08 2.718 ||| 0-0 ||| 43 524574 +los ||| disputes ||| 0.00149031 0.121588 3.81262e-06 0.0001906 2.718 ||| 0-0 ||| 1342 524574 +los ||| disregard of the ||| 0.0454545 0.122289 1.90631e-06 2.26202e-07 2.718 ||| 0-2 ||| 22 524574 +los ||| disregard the ||| 0.00689655 0.122289 1.90631e-06 4.16088e-06 2.718 ||| 0-1 ||| 145 524574 +los ||| disregarding the three ||| 1 0.122289 1.90631e-06 4.88753e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| disregarding the ||| 0.0102041 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 98 524574 +los ||| dissidents ||| 0.00362319 0.258523 1.90631e-06 8.85e-05 2.718 ||| 0-0 ||| 276 524574 +los ||| distinction between the ||| 0.0119048 0.122289 1.90631e-06 1.17685e-09 2.718 ||| 0-2 ||| 84 524574 +los ||| distort competition from the point of view ||| 1 0.122289 1.90631e-06 2.36989e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| distort competition from the point of ||| 1 0.122289 1.90631e-06 2.62359e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| distort competition from the point ||| 1 0.122289 1.90631e-06 4.82597e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| distort competition from the ||| 1 0.122289 1.90631e-06 5.51666e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| distribute condoms ||| 0.333333 0.231579 1.90631e-06 6.206e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| distributing the ||| 0.0357143 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 28 524574 +los ||| distribution to the session players ||| 0.25 0.122289 1.90631e-06 2.90519e-16 2.718 ||| 0-2 ||| 4 524574 +los ||| distribution to the session ||| 0.25 0.122289 1.90631e-06 1.71904e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| distribution to the ||| 0.0833333 0.122289 1.90631e-06 7.81384e-07 2.718 ||| 0-2 ||| 12 524574 +los ||| distribution to ||| 0.0333333 0.0007364 1.90631e-06 1.68831e-07 2.718 ||| 0-0 ||| 30 524574 +los ||| distribution ||| 0.000550358 0.0007364 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 3634 524574 +los ||| distributors ||| 0.00392157 0.276276 1.90631e-06 8.94e-05 2.718 ||| 0-0 ||| 255 524574 +los ||| districts ||| 0.00680272 0.154639 1.90631e-06 2.92e-05 2.718 ||| 0-0 ||| 147 524574 +los ||| distrust ||| 0.00549451 0.0117647 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 182 524574 +los ||| disturbances ||| 0.00680272 0.0612245 1.90631e-06 1.17e-05 2.718 ||| 0-0 ||| 147 524574 +los ||| disturbing the ||| 0.0555556 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-1 ||| 18 524574 +los ||| diversity of subjects - ||| 0.5 0.0428169 1.90631e-06 1.46998e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| diversity of subjects ||| 0.5 0.0428169 1.90631e-06 3.89697e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| divides ||| 0.0105263 0.0375 3.81262e-06 8.8e-06 2.718 ||| 0-0 ||| 190 524574 +los ||| dividing up the day , but also ||| 1 0.122289 1.90631e-06 5.5518e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| dividing up the day , but ||| 1 0.122289 1.90631e-06 1.09967e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| dividing up the day , ||| 1 0.122289 1.90631e-06 1.60912e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| dividing up the day ||| 1 0.122289 1.90631e-06 1.34931e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| dividing up the ||| 0.0526316 0.122289 1.90631e-06 5.26664e-09 2.718 ||| 0-2 ||| 19 524574 +los ||| do , the ||| 0.04 0.122289 1.90631e-06 0.000175733 2.718 ||| 0-2 ||| 25 524574 +los ||| do a good job of balancing the ||| 1 0.122289 1.90631e-06 6.1844e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| do as regards the ||| 0.25 0.122289 1.90631e-06 2.1052e-09 2.718 ||| 0-3 ||| 4 524574 +los ||| do by the ||| 0.153846 0.122289 3.81262e-06 7.73651e-06 2.718 ||| 0-2 ||| 13 524574 +los ||| do for the ||| 0.0172414 0.122289 1.90631e-06 1.13256e-05 2.718 ||| 0-2 ||| 58 524574 +los ||| do have certain reservations as to their ||| 1 0.0236713 1.90631e-06 1.57881e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| do its ||| 0.004329 0.0211371 1.90631e-06 7.33471e-06 2.718 ||| 0-1 ||| 231 524574 +los ||| do not buy people ||| 0.5 0.0894672 1.90631e-06 1.76417e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| do not get the ||| 0.0588235 0.122289 1.90631e-06 2.19955e-09 2.718 ||| 0-3 ||| 17 524574 +los ||| do not have the proper identity ||| 0.5 0.122289 1.90631e-06 1.07565e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| do not have the proper ||| 0.5 0.122289 1.90631e-06 5.32502e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| do not have the ||| 0.00917431 0.122289 7.62523e-06 6.01697e-08 2.718 ||| 0-3 ||| 436 524574 +los ||| do not know whether all Members have ||| 1 0.168879 1.90631e-06 2.16734e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| do not know whether all Members ||| 1 0.168879 1.90631e-06 1.81219e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| do not like the ||| 0.0555556 0.122289 1.90631e-06 8.93455e-09 2.718 ||| 0-3 ||| 18 524574 +los ||| do not want Mr Barroso , who ||| 1 0.000743 1.90631e-06 3.88019e-22 2.718 ||| 0-3 ||| 1 524574 +los ||| do not want Mr Barroso , ||| 1 0.000743 1.90631e-06 4.3993e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| do not want Mr Barroso ||| 1 0.000743 1.90631e-06 3.689e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| do not want Mr ||| 1 0.000743 1.90631e-06 9.2225e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| do represent the Fifteen ||| 0.25 0.122289 1.90631e-06 5.27104e-14 2.718 ||| 0-2 ||| 4 524574 +los ||| do represent the ||| 0.2 0.122289 1.90631e-06 7.53006e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| do that , it would give the ||| 1 0.122289 1.90631e-06 1.86958e-13 2.718 ||| 0-6 ||| 1 524574 +los ||| do the Member States ' standard ||| 0.5 0.122289 1.90631e-06 5.86237e-17 2.718 ||| 0-1 ||| 2 524574 +los ||| do the Member States ' ||| 0.5 0.122289 1.90631e-06 1.24466e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| do the Member States ||| 0.111111 0.122289 1.90631e-06 3.62358e-10 2.718 ||| 0-1 ||| 9 524574 +los ||| do the Member ||| 0.333333 0.122289 1.90631e-06 7.59343e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| do the job I am confident that ||| 0.5 0.122289 1.90631e-06 8.74704e-20 2.718 ||| 0-1 ||| 2 524574 +los ||| do the job I am confident ||| 0.5 0.122289 1.90631e-06 5.19989e-18 2.718 ||| 0-1 ||| 2 524574 +los ||| do the job I am ||| 0.5 0.122289 1.90631e-06 1.03998e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| do the job I ||| 0.5 0.122289 1.90631e-06 8.14073e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| do the job entrusted ||| 0.5 0.122289 1.90631e-06 6.67508e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| do the job ||| 0.0307692 0.122289 3.81262e-06 1.15088e-07 2.718 ||| 0-1 ||| 65 524574 +los ||| do the ||| 0.0502137 0.122289 8.95965e-05 0.00147359 2.718 ||| 0-1 ||| 936 524574 +los ||| do their ||| 0.0122449 0.0236713 5.71893e-06 7.85894e-06 2.718 ||| 0-1 ||| 245 524574 +los ||| do think that this is the ||| 0.333333 0.122289 1.90631e-06 1.92007e-12 2.718 ||| 0-5 ||| 3 524574 +los ||| do think the ||| 0.5 0.122289 1.90631e-06 5.6365e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| do those ||| 0.0869565 0.284705 3.81262e-06 5.73613e-05 2.718 ||| 0-1 ||| 23 524574 +los ||| do we , the ||| 0.333333 0.122289 1.90631e-06 1.99497e-06 2.718 ||| 0-3 ||| 3 524574 +los ||| do we see ? the ||| 1 0.122289 1.90631e-06 2.0144e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| do what had to be ||| 1 0.0061209 1.90631e-06 5.32325e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| do what had to ||| 0.5 0.0061209 1.90631e-06 2.9373e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| do what had ||| 0.5 0.0061209 1.90631e-06 3.30561e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| do what ||| 0.00225734 0.0061209 1.90631e-06 3.29342e-06 2.718 ||| 0-1 ||| 443 524574 +los ||| do with the ||| 0.00213447 0.122289 3.81262e-06 9.42289e-06 2.718 ||| 0-2 ||| 937 524574 +los ||| do with ||| 0.00104969 0.0007437 5.71893e-06 7.94928e-07 2.718 ||| 0-1 ||| 2858 524574 +los ||| dock ||| 0.00884956 0.15625 1.90631e-06 2.43e-05 2.718 ||| 0-0 ||| 113 524574 +los ||| dockers ||| 0.0434783 0.272727 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 23 524574 +los ||| doctors ' ||| 0.0416667 0.309826 1.90631e-06 1.30595e-06 2.718 ||| 0-0 ||| 24 524574 +los ||| doctors and ||| 0.00675676 0.309826 1.90631e-06 4.76235e-06 2.718 ||| 0-0 ||| 148 524574 +los ||| doctors ||| 0.00841346 0.309826 1.33442e-05 0.0003802 2.718 ||| 0-0 ||| 832 524574 +los ||| doctrinal dispute ||| 0.25 0.0588235 1.90631e-06 1.69e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| doctrinal ||| 0.111111 0.0588235 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| document the ||| 0.0357143 0.122289 1.90631e-06 1.437e-05 2.718 ||| 0-1 ||| 28 524574 +los ||| documents , ||| 0.00547945 0.212011 3.81262e-06 0.000148186 2.718 ||| 0-0 ||| 365 524574 +los ||| documents ||| 0.00147902 0.212011 1.52505e-05 0.0012426 2.718 ||| 0-0 ||| 5409 524574 +los ||| does ask the ||| 1 0.122289 1.90631e-06 4.13696e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| does business should take the liberty ||| 1 0.122289 1.90631e-06 2.70764e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| does business should take the ||| 1 0.122289 1.90631e-06 2.68083e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| does it possess the ||| 1 0.122289 1.90631e-06 4.22684e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| does not allow the ||| 0.0416667 0.122289 1.90631e-06 2.49199e-10 2.718 ||| 0-3 ||| 24 524574 +los ||| does not compare with ||| 1 0.0026076 1.90631e-06 2.90939e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| does not compare ||| 0.5 0.0026076 1.90631e-06 4.54983e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| does represent the ||| 1 0.122289 1.90631e-06 1.53745e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| does take these ||| 1 0.0240362 1.90631e-06 2.75256e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| does the aims ||| 1 0.122289 1.90631e-06 1.20047e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| does the ||| 0.00449583 0.122289 1.33442e-05 0.00030087 2.718 ||| 0-1 ||| 1557 524574 +los ||| dogs , ||| 0.0526316 0.174107 1.90631e-06 4.51975e-06 2.718 ||| 0-0 ||| 19 524574 +los ||| dogs and that they put down ||| 0.5 0.174107 1.90631e-06 2.00632e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| dogs and that they put ||| 0.5 0.174107 1.90631e-06 2.87398e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| dogs and that they ||| 0.5 0.174107 1.90631e-06 2.60655e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| dogs and that ||| 0.5 0.174107 1.90631e-06 7.98575e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| dogs and ||| 0.025641 0.174107 1.90631e-06 4.74732e-07 2.718 ||| 0-0 ||| 39 524574 +los ||| dogs ||| 0.0121951 0.174107 3.81262e-06 3.79e-05 2.718 ||| 0-0 ||| 164 524574 +los ||| doing over the ||| 0.111111 0.122289 1.90631e-06 7.58217e-08 2.718 ||| 0-2 ||| 9 524574 +los ||| doing so the ||| 0.125 0.122289 1.90631e-06 3.57409e-07 2.718 ||| 0-2 ||| 8 524574 +los ||| doing the rounds in the ||| 1 0.122289 1.90631e-06 1.03462e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| doing the rounds ||| 0.1 0.122289 1.90631e-06 7.87349e-10 2.718 ||| 0-1 ||| 10 524574 +los ||| doing the ||| 0.00790514 0.122289 3.81262e-06 0.00015747 2.718 ||| 0-1 ||| 253 524574 +los ||| doing their ||| 0.0116279 0.0236713 1.90631e-06 8.39815e-07 2.718 ||| 0-1 ||| 86 524574 +los ||| doing without the ||| 0.5 0.122289 1.90631e-06 3.48008e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| dollars the ||| 0.5 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| dollars ||| 0.00208768 0.0022831 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 479 524574 +los ||| domestic product ||| 0.00276243 0.0136561 1.90631e-06 2.60224e-09 2.718 ||| 0-0 ||| 362 524574 +los ||| domestic ||| 0.00675676 0.0136561 4.00325e-05 4.28e-05 2.718 ||| 0-0 ||| 3108 524574 +los ||| dominate those ||| 0.166667 0.284705 1.90631e-06 4.8423e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| dominated by ||| 0.00247525 0.0062464 1.90631e-06 6.4792e-09 2.718 ||| 0-1 ||| 404 524574 +los ||| done before the ||| 0.05 0.122289 1.90631e-06 4.89206e-08 2.718 ||| 0-2 ||| 20 524574 +los ||| done by the ||| 0.00626959 0.122289 3.81262e-06 1.02694e-06 2.718 ||| 0-2 ||| 319 524574 +los ||| done the ||| 0.00877193 0.122289 1.90631e-06 0.000195604 2.718 ||| 0-1 ||| 114 524574 +los ||| done through the ||| 0.0625 0.122289 1.90631e-06 9.00366e-08 2.718 ||| 0-2 ||| 16 524574 +los ||| done with these ||| 0.166667 0.0240362 1.90631e-06 7.10749e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| donor , ||| 0.030303 0.0887513 1.90631e-06 9.96969e-06 2.718 ||| 0-0 ||| 33 524574 +los ||| donor countries ||| 0.0108696 0.0887513 1.90631e-06 3.17429e-08 2.718 ||| 0-0 ||| 92 524574 +los ||| donor representatives ||| 1 0.0887513 1.90631e-06 2.70864e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| donor ||| 0.00575816 0.0887513 1.14379e-05 8.36e-05 2.718 ||| 0-0 ||| 1042 524574 +los ||| donors , ||| 0.0102041 0.224412 1.90631e-06 3.43215e-05 2.718 ||| 0-0 ||| 98 524574 +los ||| donors present ||| 1 0.224412 1.90631e-06 1.05335e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| donors ||| 0.0027027 0.224412 5.71893e-06 0.0002878 2.718 ||| 0-0 ||| 1110 524574 +los ||| dossiers ||| 0.00571429 0.0906801 3.81262e-06 3.5e-05 2.718 ||| 0-0 ||| 350 524574 +los ||| double-decker ||| 0.142857 0.230769 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| doubt choose the ||| 1 0.122289 1.90631e-06 1.24285e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| doubt on the ||| 0.016129 0.122289 1.90631e-06 2.62331e-07 2.718 ||| 0-2 ||| 62 524574 +los ||| doubt the two Member States ||| 0.5 0.122289 1.90631e-06 2.27912e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| doubt the two Member ||| 0.5 0.122289 1.90631e-06 4.77603e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| doubt the two ||| 0.5 0.122289 1.90631e-06 9.26844e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| doubt the ||| 0.00543478 0.122289 1.90631e-06 3.92066e-05 2.718 ||| 0-1 ||| 184 524574 +los ||| doubtless the ||| 0.0625 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-1 ||| 16 524574 +los ||| doubts regarding the restrictions ||| 1 0.122289 1.90631e-06 4.56436e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| doubts regarding the ||| 0.0714286 0.122289 1.90631e-06 2.38972e-10 2.718 ||| 0-2 ||| 14 524574 +los ||| down Nazi atrocities ||| 0.2 0.0232558 1.90631e-06 7.28816e-15 2.718 ||| 0-1 ||| 5 524574 +los ||| down Nazi ||| 0.2 0.0232558 1.90631e-06 4.04898e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| down all the ||| 0.4 0.070041 3.81262e-06 8.05023e-07 2.718 ||| 0-1 0-2 ||| 5 524574 +los ||| down as ||| 0.0285714 0.0049833 1.90631e-06 8.73497e-07 2.718 ||| 0-0 ||| 35 524574 +los ||| down at the ||| 0.0909091 0.122289 1.90631e-06 1.25394e-06 2.718 ||| 0-2 ||| 11 524574 +los ||| down by ||| 0.00628931 0.0062464 1.90631e-06 1.13078e-06 2.718 ||| 0-1 ||| 159 524574 +los ||| down in ||| 0.00352113 0.0049833 1.90631e-06 1.83223e-06 2.718 ||| 0-0 ||| 284 524574 +los ||| down into the gutter by the ||| 1 0.0642678 1.90631e-06 1.22294e-17 2.718 ||| 0-4 0-5 ||| 1 524574 +los ||| down on ||| 0.00729927 0.00283735 1.90631e-06 3.05421e-08 2.718 ||| 0-0 0-1 ||| 137 524574 +los ||| down onto those ||| 0.25 0.284705 1.90631e-06 2.35463e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| down our ||| 0.0714286 0.0149101 1.90631e-06 3.05686e-07 2.718 ||| 0-0 0-1 ||| 14 524574 +los ||| down some ||| 0.2 0.0049833 1.90631e-06 9.32441e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| down that ||| 0.0149254 0.0049833 1.90631e-06 1.43993e-06 2.718 ||| 0-0 ||| 67 524574 +los ||| down the line ||| 0.0142857 0.122289 1.90631e-06 8.81594e-08 2.718 ||| 0-1 ||| 70 524574 +los ||| down the river ||| 0.0833333 0.122289 1.90631e-06 1.28765e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| down the ||| 0.0252525 0.122289 2.85946e-05 0.000299454 2.718 ||| 0-1 ||| 594 524574 +los ||| down those ||| 0.25 0.284705 1.90631e-06 1.16566e-05 2.718 ||| 0-1 ||| 4 524574 +los ||| down to these ||| 1 0.0240362 1.90631e-06 1.51203e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| down to ||| 0.00148588 0.0049833 1.90631e-06 7.60626e-06 2.718 ||| 0-0 ||| 673 524574 +los ||| down ||| 0.00490036 0.0049833 2.85946e-05 8.56e-05 2.718 ||| 0-0 ||| 3061 524574 +los ||| draft treaty 's ||| 0.5 0.0349814 1.90631e-06 8.46013e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| drag the cheated ||| 0.5 0.122289 1.90631e-06 9.95179e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| drag the ||| 0.133333 0.122289 3.81262e-06 2.48795e-06 2.718 ||| 0-1 ||| 15 524574 +los ||| dragged about the place ||| 1 0.122289 1.90631e-06 4.56521e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| dragged about the ||| 1 0.122289 1.90631e-06 3.03336e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| dragged down into the gutter by the ||| 1 0.0642678 1.90631e-06 6.11471e-23 2.718 ||| 0-5 0-6 ||| 1 524574 +los ||| dragging their ||| 0.0769231 0.0236713 1.90631e-06 1.3955e-08 2.718 ||| 0-1 ||| 13 524574 +los ||| draw on the ||| 0.0178571 0.122289 1.90631e-06 3.39825e-07 2.718 ||| 0-2 ||| 56 524574 +los ||| draw the ||| 0.00348432 0.122289 1.90631e-06 5.07884e-05 2.718 ||| 0-1 ||| 287 524574 +los ||| draw up a report ||| 0.0133333 0.0031618 1.90631e-06 4.5606e-13 2.718 ||| 0-1 ||| 75 524574 +los ||| draw up a ||| 0.00143062 0.0031618 1.90631e-06 1.11261e-09 2.718 ||| 0-1 ||| 699 524574 +los ||| draw up ||| 0.00181159 0.0031618 5.71893e-06 2.51008e-08 2.718 ||| 0-1 ||| 1656 524574 +los ||| draw your attention to how the ||| 1 0.122289 1.90631e-06 1.08153e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| draw your attention to the fact ||| 0.0078125 0.122289 1.90631e-06 8.83967e-16 2.718 ||| 0-4 ||| 128 524574 +los ||| draw your attention to the ||| 0.00588235 0.122289 1.90631e-06 3.01767e-13 2.718 ||| 0-4 ||| 170 524574 +los ||| drawing attention to the ||| 0.0149254 0.122289 1.90631e-06 4.95001e-10 2.718 ||| 0-3 ||| 67 524574 +los ||| drawing on the ||| 0.0188679 0.122289 1.90631e-06 1.42646e-07 2.718 ||| 0-2 ||| 53 524574 +los ||| drawing our attention to the ||| 0.25 0.122289 1.90631e-06 6.82805e-13 2.718 ||| 0-4 ||| 4 524574 +los ||| drawing up the ||| 0.00310559 0.122289 1.90631e-06 7.27089e-08 2.718 ||| 0-2 ||| 322 524574 +los ||| drawn up , ||| 0.0128205 0.0031618 1.90631e-06 3.59257e-09 2.718 ||| 0-1 ||| 78 524574 +los ||| drawn up ||| 0.00047619 0.0031618 1.90631e-06 3.01252e-08 2.718 ||| 0-1 ||| 2100 524574 +los ||| dreams ||| 0.00438596 0.0877743 1.90631e-06 2.72e-05 2.718 ||| 0-0 ||| 228 524574 +los ||| drenched the ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| dried ||| 0.0862069 0.1 9.53154e-06 1.17e-05 2.718 ||| 0-0 ||| 58 524574 +los ||| drive a coach ||| 1 0.0062305 1.90631e-06 2.54341e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| drive back the ||| 0.5 0.122289 1.90631e-06 8.71318e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| drive home the message that ||| 0.5 0.122289 1.90631e-06 1.06611e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| drive home the message ||| 0.25 0.122289 1.90631e-06 6.33772e-14 2.718 ||| 0-2 ||| 4 524574 +los ||| drive home the ||| 0.2 0.122289 1.90631e-06 1.31488e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| drive over the ||| 0.125 0.122289 1.90631e-06 6.23758e-09 2.718 ||| 0-2 ||| 8 524574 +los ||| driven mad by ||| 0.2 0.0062464 1.90631e-06 2.58034e-13 2.718 ||| 0-2 ||| 5 524574 +los ||| driven out by ||| 0.166667 0.0062464 1.90631e-06 1.83032e-10 2.718 ||| 0-2 ||| 6 524574 +los ||| drivers and ||| 0.00980392 0.386864 1.90631e-06 1.17643e-05 2.718 ||| 0-0 ||| 102 524574 +los ||| drivers of ||| 0.0163934 0.0019787 1.90631e-06 3.10914e-08 2.718 ||| 0-1 ||| 61 524574 +los ||| drivers ||| 0.00639386 0.386864 1.90631e-05 0.0009392 2.718 ||| 0-0 ||| 1564 524574 +los ||| driving a ||| 0.0357143 0.06629 1.90631e-06 7.58414e-06 2.718 ||| 0-0 ||| 28 524574 +los ||| driving as ||| 0.333333 0.06629 1.90631e-06 1.74597e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| driving down ||| 0.111111 0.06629 1.90631e-06 1.19445e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| driving force behind the ||| 0.0172414 0.122289 1.90631e-06 2.16525e-13 2.718 ||| 0-3 ||| 58 524574 +los ||| driving scientists ||| 1 0.236573 1.90631e-06 1.19061e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| driving ||| 0.0105 0.06629 4.00325e-05 0.0001711 2.718 ||| 0-0 ||| 2000 524574 +los ||| drug use and dependency , reducing the ||| 1 0.122289 1.90631e-06 9.16535e-23 2.718 ||| 0-6 ||| 1 524574 +los ||| drug ||| 0.00285714 0.008254 5.71893e-06 2.53e-05 2.718 ||| 0-0 ||| 1050 524574 +los ||| drugs , and ||| 0.0166667 0.0417765 1.90631e-06 2.99203e-07 2.718 ||| 0-0 ||| 60 524574 +los ||| drugs , ||| 0.00229885 0.0417765 1.90631e-06 2.38867e-05 2.718 ||| 0-0 ||| 435 524574 +los ||| drugs and a situation ||| 0.333333 0.0417765 1.90631e-06 5.72735e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| drugs and a ||| 0.25 0.0417765 1.90631e-06 1.11211e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| drugs and ||| 0.00212766 0.0417765 1.90631e-06 2.50894e-06 2.718 ||| 0-0 ||| 470 524574 +los ||| drugs ||| 0.000761035 0.0417765 5.71893e-06 0.0002003 2.718 ||| 0-0 ||| 3942 524574 +los ||| dry by the ||| 1 0.122289 1.90631e-06 2.02686e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| dry ||| 0.0152284 0.0238908 5.71893e-06 6.8e-06 2.718 ||| 0-0 ||| 197 524574 +los ||| due account of ||| 0.0075188 0.0019787 1.90631e-06 2.62838e-10 2.718 ||| 0-2 ||| 133 524574 +los ||| due to legislative interpretation and cumbersome bureaucracy ||| 0.5 0.0036232 1.90631e-06 8.4042e-28 2.718 ||| 0-5 ||| 2 524574 +los ||| due to legislative interpretation and cumbersome ||| 0.5 0.0036232 1.90631e-06 1.29295e-22 2.718 ||| 0-5 ||| 2 524574 +los ||| due to the ||| 0.000877578 0.122289 3.81262e-06 1.05353e-05 2.718 ||| 0-2 ||| 2279 524574 +los ||| due to ||| 0.000177999 0.0023735 1.90631e-06 2.15925e-06 2.718 ||| 0-0 ||| 5618 524574 +los ||| due ||| 0.00250597 0.0023735 4.00325e-05 2.43e-05 2.718 ||| 0-0 ||| 8380 524574 +los ||| dumps ||| 0.0232558 0.185714 1.90631e-06 1.26e-05 2.718 ||| 0-0 ||| 43 524574 +los ||| duplicate the ||| 0.047619 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 21 524574 +los ||| during its second plenary session when the ||| 1 0.122289 1.90631e-06 4.14583e-25 2.718 ||| 0-6 ||| 1 524574 +los ||| during its ||| 0.00321543 0.0211371 1.90631e-06 2.15218e-07 2.718 ||| 0-1 ||| 311 524574 +los ||| during the ||| 0.000256498 0.122289 5.71893e-06 4.32388e-05 2.718 ||| 0-1 ||| 11696 524574 +los ||| duties altogether , ||| 1 0.106914 1.90631e-06 9.49674e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| duties altogether ||| 1 0.106914 1.90631e-06 7.96341e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| duties should ||| 0.5 0.106914 1.90631e-06 1.29252e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| duties ||| 0.00360685 0.106914 1.52505e-05 0.0002917 2.718 ||| 0-0 ||| 2218 524574 +los ||| duty to regulate the ||| 0.5 0.122289 1.90631e-06 1.93097e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| dynamic ||| 0.000545554 0.000578 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1833 524574 +los ||| e.g. the ||| 0.0384615 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-1 ||| 26 524574 +los ||| each EU ||| 0.222222 0.0270345 3.81262e-06 4.75674e-07 2.718 ||| 0-0 0-1 ||| 9 524574 +los ||| each administrative ||| 1 0.0497499 1.90631e-06 1.80379e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| each and every one ||| 0.00540541 0.0497499 1.90631e-06 7.47408e-12 2.718 ||| 0-0 ||| 185 524574 +los ||| each and every ||| 0.008 0.0969909 7.62523e-06 3.59732e-08 2.718 ||| 0-0 0-2 ||| 500 524574 +los ||| each and ||| 0.00828729 0.0497499 5.71893e-06 1.10215e-05 2.718 ||| 0-0 ||| 362 524574 +los ||| each case , the constituent ||| 0.5 0.122289 1.90631e-06 1.04468e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| each case , the ||| 0.111111 0.122289 1.90631e-06 1.53629e-08 2.718 ||| 0-3 ||| 9 524574 +los ||| each case , ||| 0.0344828 0.0497499 1.90631e-06 1.12267e-07 2.718 ||| 0-0 ||| 29 524574 +los ||| each case take the ||| 1 0.122289 1.90631e-06 2.07408e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| each case ||| 0.00636943 0.0497499 1.90631e-06 9.41405e-07 2.718 ||| 0-0 ||| 157 524574 +los ||| each individual ||| 0.00857143 0.110351 5.71893e-06 3.60784e-07 2.718 ||| 0-1 ||| 350 524574 +los ||| each of the ||| 0.0098401 0.0580059 1.52505e-05 1.24842e-06 2.718 ||| 0-0 0-1 0-2 ||| 813 524574 +los ||| each of these cattle ||| 1 0.0497499 1.90631e-06 3.77033e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| each of these ||| 0.00429185 0.0497499 1.90631e-06 4.96096e-08 2.718 ||| 0-0 ||| 233 524574 +los ||| each of ||| 0.00229621 0.0497499 7.62523e-06 4.78349e-05 2.718 ||| 0-0 ||| 1742 524574 +los ||| each other 's ||| 0.05 0.0423657 7.62523e-06 6.98446e-09 2.718 ||| 0-0 0-2 ||| 80 524574 +los ||| each other and ||| 0.00458716 0.0497499 1.90631e-06 1.42784e-08 2.718 ||| 0-0 ||| 218 524574 +los ||| each other in ||| 0.00943396 0.0497499 1.90631e-06 2.43992e-08 2.718 ||| 0-0 ||| 106 524574 +los ||| each other ||| 0.0124575 0.0497499 4.19388e-05 1.13991e-06 2.718 ||| 0-0 ||| 1766 524574 +los ||| each other ’ s ||| 0.142857 0.0497499 3.81262e-06 3.77766e-12 2.718 ||| 0-0 ||| 14 524574 +los ||| each other ’ ||| 0.0714286 0.0497499 3.81262e-06 1.98584e-09 2.718 ||| 0-0 ||| 28 524574 +los ||| each ||| 0.0198767 0.0497499 0.000522329 0.0008799 2.718 ||| 0-0 ||| 13785 524574 +los ||| eager to excuse the ||| 1 0.122289 1.90631e-06 2.80536e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| earlier migrants ||| 0.5 0.318625 1.90631e-06 4.21452e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| earlier stage any ||| 1 0.0178119 1.90631e-06 9.65075e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| early ' ||| 0.2 0.0444479 1.90631e-06 3.6011e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| early school ||| 0.04 0.0324121 1.90631e-06 6.25548e-09 2.718 ||| 0-1 ||| 25 524574 +los ||| early to ||| 0.00478469 0.0061936 1.90631e-06 3.02118e-06 2.718 ||| 0-0 ||| 209 524574 +los ||| early ||| 0.00162564 0.0061936 1.33442e-05 3.4e-05 2.718 ||| 0-0 ||| 4306 524574 +los ||| earned honestly by small specialists ||| 0.5 0.173824 1.90631e-06 8.59939e-22 2.718 ||| 0-4 ||| 2 524574 +los ||| earnings ||| 0.012987 0.14966 5.71893e-06 4.28e-05 2.718 ||| 0-0 ||| 231 524574 +los ||| earth ||| 0.00157729 0.0024125 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 634 524574 +los ||| easier to reach the ||| 0.25 0.122289 1.90631e-06 2.15502e-10 2.718 ||| 0-3 ||| 4 524574 +los ||| eastern ||| 0.00052687 0.0097582 1.90631e-06 2.24e-05 2.718 ||| 0-0 ||| 1898 524574 +los ||| easy budget , the ||| 0.5 0.122289 1.90631e-06 2.38614e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| eat up the ||| 0.25 0.122289 1.90631e-06 1.57999e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| eating ||| 0.0266344 0.0319829 2.09694e-05 1.46e-05 2.718 ||| 0-0 ||| 413 524574 +los ||| echo the ||| 0.0075188 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-1 ||| 133 524574 +los ||| echoing some of the ||| 0.5 0.122289 1.90631e-06 2.79425e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| echoing the ||| 0.0357143 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 28 524574 +los ||| eco-tax systems ||| 1 0.213574 1.90631e-06 2.27451e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| ecological and a social point ||| 0.25 0.0037997 1.90631e-06 2.35782e-16 2.718 ||| 0-3 ||| 4 524574 +los ||| ecological and a social ||| 0.25 0.0037997 1.90631e-06 2.69526e-13 2.718 ||| 0-3 ||| 4 524574 +los ||| economic and social ||| 0.000242601 0.0037997 1.90631e-06 2.30492e-10 2.718 ||| 0-2 ||| 4122 524574 +los ||| economic and ||| 0.000197355 0.0006735 3.81262e-06 3.7703e-07 2.718 ||| 0-0 ||| 10134 524574 +los ||| economic benefits have they ||| 1 0.0253502 1.90631e-06 6.99857e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| economic benefits have ||| 0.5 0.0253502 1.90631e-06 2.14417e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| economic benefits ||| 0.00497512 0.0253502 1.90631e-06 1.79281e-08 2.718 ||| 0-1 ||| 201 524574 +los ||| economic issues ||| 0.00578035 0.0401532 1.90631e-06 1.35977e-07 2.718 ||| 0-1 ||| 173 524574 +los ||| economic migrants ||| 0.00641026 0.318625 1.90631e-06 7.32409e-08 2.718 ||| 0-1 ||| 156 524574 +los ||| economic ||| 0.000458496 0.0006735 4.38451e-05 3.01e-05 2.718 ||| 0-0 ||| 50164 524574 +los ||| economic-interest ||| 0.25 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| economies experiencing the ||| 1 0.122289 1.90631e-06 8.98406e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| education , ||| 0.000426985 0.0011583 1.90631e-06 2.20621e-06 2.718 ||| 0-0 ||| 2342 524574 +los ||| education and ||| 0.000279408 0.0011583 1.90631e-06 2.31729e-07 2.718 ||| 0-0 ||| 3579 524574 +los ||| education ||| 0.000310969 0.0011583 7.62523e-06 1.85e-05 2.718 ||| 0-0 ||| 12863 524574 +los ||| educational curricula ||| 0.25 0.0104039 1.90631e-06 1.815e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| educational ||| 0.00547345 0.0104039 1.90631e-05 1.65e-05 2.718 ||| 0-0 ||| 1827 524574 +los ||| educators will have ||| 0.5 0.295775 1.90631e-06 2.11072e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| educators will ||| 0.5 0.295775 1.90631e-06 1.76484e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| educators ||| 0.0208333 0.295775 1.90631e-06 2.04e-05 2.718 ||| 0-0 ||| 48 524574 +los ||| een gematigde ||| 0.5 1 1.90631e-06 4e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| effect in connection with the evaluation of ||| 1 0.122289 1.90631e-06 2.4048e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| effect in connection with the evaluation ||| 1 0.122289 1.90631e-06 4.42351e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| effect in connection with the ||| 1 0.122289 1.90631e-06 2.98886e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| effective cooperation in both tax ||| 1 0.0611419 1.90631e-06 1.44528e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| effectively address the ||| 0.142857 0.122289 1.90631e-06 2.34342e-09 2.718 ||| 0-2 ||| 7 524574 +los ||| effectively that puts the ||| 1 0.122289 1.90631e-06 1.7101e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| effectively the ||| 0.0125 0.122289 1.90631e-06 3.07133e-05 2.718 ||| 0-1 ||| 80 524574 +los ||| effects ||| 0.00057612 0.0022391 7.62523e-06 1.46e-05 2.718 ||| 0-0 ||| 6943 524574 +los ||| efficient use of the ||| 0.0526316 0.122289 1.90631e-06 2.19959e-10 2.718 ||| 0-3 ||| 19 524574 +los ||| efficiently the question ||| 1 0.122289 1.90631e-06 1.91633e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| efficiently the ||| 0.0625 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-1 ||| 16 524574 +los ||| effort on the part of those ||| 1 0.284705 1.90631e-06 3.93423e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| efforts made since ||| 0.333333 0.101547 1.90631e-06 4.82567e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| efforts made ||| 0.00178571 0.101547 1.90631e-06 3.55613e-06 2.718 ||| 0-0 ||| 560 524574 +los ||| efforts of ||| 0.00103093 0.101547 1.90631e-06 9.22883e-05 2.718 ||| 0-0 ||| 970 524574 +los ||| efforts on ||| 0.00320513 0.101547 1.90631e-06 1.13586e-05 2.718 ||| 0-0 ||| 312 524574 +los ||| efforts to assuage ||| 1 0.101547 1.90631e-06 6.03383e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| efforts to study its ||| 1 0.101547 1.90631e-06 7.26395e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| efforts to study ||| 1 0.101547 1.90631e-06 5.09858e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| efforts to ||| 0.0012285 0.101547 7.62523e-06 0.000150846 2.718 ||| 0-0 ||| 3256 524574 +los ||| efforts will ||| 0.02 0.101547 1.90631e-06 1.46863e-05 2.718 ||| 0-0 ||| 50 524574 +los ||| efforts ||| 0.00264971 0.101547 7.62523e-05 0.0016976 2.718 ||| 0-0 ||| 15096 524574 +los ||| eggs ||| 0.00389105 0.21148 1.90631e-06 6.81e-05 2.718 ||| 0-0 ||| 257 524574 +los ||| eight months before the ||| 0.25 0.122289 1.90631e-06 2.03203e-14 2.718 ||| 0-3 ||| 4 524574 +los ||| either , the ||| 0.272727 0.122289 5.71893e-06 4.429e-05 2.718 ||| 0-2 ||| 11 524574 +los ||| either in the ||| 0.0165289 0.122289 3.81262e-06 7.94943e-06 2.718 ||| 0-2 ||| 121 524574 +los ||| either of the ||| 0.016129 0.122289 1.90631e-06 2.01903e-05 2.718 ||| 0-2 ||| 62 524574 +los ||| either on the ||| 0.030303 0.122289 1.90631e-06 2.48497e-06 2.718 ||| 0-2 ||| 33 524574 +los ||| either the ||| 0.0414508 0.122289 3.05009e-05 0.00037139 2.718 ||| 0-1 ||| 386 524574 +los ||| either ||| 0.000217533 0.0007985 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 4597 524574 +los ||| elected representatives , not ||| 1 0.135512 1.90631e-06 8.74799e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| elected representatives , ||| 0.010989 0.135512 1.90631e-06 2.56231e-09 2.718 ||| 0-1 ||| 91 524574 +los ||| elected representatives ||| 0.00289017 0.135512 3.81262e-06 2.1486e-08 2.718 ||| 0-1 ||| 692 524574 +los ||| elected ||| 0.00412996 0.0123284 2.85946e-05 5.15e-05 2.718 ||| 0-0 ||| 3632 524574 +los ||| election workers have ||| 1 0.364501 1.90631e-06 2.07892e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| election workers ||| 1 0.364501 3.81262e-06 1.73826e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| electoral purposes ||| 0.0714286 0.0012484 1.90631e-06 2.2971e-10 2.718 ||| 0-0 ||| 14 524574 +los ||| electoral ||| 0.0011919 0.0012484 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 1678 524574 +los ||| electors were ||| 0.5 0.123711 1.90631e-06 4.17396e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| electors ||| 0.00653595 0.123711 1.90631e-06 2.33e-05 2.718 ||| 0-0 ||| 153 524574 +los ||| electric ||| 0.00286533 0.0054795 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 349 524574 +los ||| electromagnetic ||| 0.0135135 0.303797 1.90631e-06 7e-05 2.718 ||| 0-0 ||| 74 524574 +los ||| electronic ||| 0.00369004 0.0125508 1.90631e-05 3.31e-05 2.718 ||| 0-0 ||| 2710 524574 +los ||| elements ||| 0.00129338 0.031908 1.14379e-05 0.0001429 2.718 ||| 0-0 ||| 4639 524574 +los ||| elevates ||| 0.125 0.2 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| eligibility ||| 0.00331675 0.0829016 3.81262e-06 4.67e-05 2.718 ||| 0-0 ||| 603 524574 +los ||| eligible for ||| 0.00308642 0.0541063 1.90631e-06 4.18102e-07 2.718 ||| 0-0 ||| 324 524574 +los ||| eligible ||| 0.0132075 0.0541063 1.33442e-05 5.44e-05 2.718 ||| 0-0 ||| 530 524574 +los ||| eliminate the ||| 0.0106667 0.122289 7.62523e-06 4.933e-06 2.718 ||| 0-1 ||| 375 524574 +los ||| eliminate them ||| 0.0434783 0.038218 1.90631e-06 2.31449e-08 2.718 ||| 0-1 ||| 23 524574 +los ||| eliminated and the ||| 0.25 0.122289 1.90631e-06 7.52229e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| else , the ||| 0.105263 0.122289 3.81262e-06 6.0363e-06 2.718 ||| 0-2 ||| 19 524574 +los ||| else , there needs to ||| 0.5 0.01311 1.90631e-06 4.50886e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| else , there needs ||| 0.5 0.01311 1.90631e-06 5.07422e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| else , there ||| 0.333333 0.01311 1.90631e-06 2.55886e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| else , ||| 0.00475059 0.01311 3.81262e-06 8.34783e-06 2.718 ||| 0-0 ||| 421 524574 +los ||| else in ||| 0.0102041 0.01311 1.90631e-06 1.49831e-06 2.718 ||| 0-0 ||| 98 524574 +los ||| else ||| 0.00675676 0.01311 3.81262e-05 7e-05 2.718 ||| 0-0 ||| 2960 524574 +los ||| embarking on the ||| 0.0666667 0.122289 1.90631e-06 1.23416e-08 2.718 ||| 0-2 ||| 15 524574 +los ||| embrace the ||| 0.0196078 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-1 ||| 51 524574 +los ||| embraces the fundamental ||| 0.25 0.108248 1.90631e-06 1.14405e-09 2.718 ||| 0-1 0-2 ||| 4 524574 +los ||| emerge the ||| 0.333333 0.122289 1.90631e-06 1.29545e-05 2.718 ||| 0-1 ||| 3 524574 +los ||| emergence of new media ||| 0.5 0.0019787 1.90631e-06 4.32715e-16 2.718 ||| 0-1 ||| 2 524574 +los ||| emergence of new ||| 0.0120482 0.0019787 1.90631e-06 1.50248e-11 2.718 ||| 0-1 ||| 83 524574 +los ||| emergence of ||| 0.00229358 0.0019787 1.90631e-06 2.51378e-08 2.718 ||| 0-1 ||| 436 524574 +los ||| emergent ||| 0.0263158 0.0588235 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 38 524574 +los ||| emerges that the ||| 0.2 0.122289 1.90631e-06 7.28789e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| emerging ||| 0.000750188 0.0132275 1.90631e-06 1.94e-05 2.718 ||| 0-0 ||| 1333 524574 +los ||| emigrants ||| 0.0123457 0.225 1.90631e-06 2.63e-05 2.718 ||| 0-0 ||| 81 524574 +los ||| emission ||| 0.00479616 0.0396539 7.62523e-06 0.0001069 2.718 ||| 0-0 ||| 834 524574 +los ||| emphasis on education , ||| 0.142857 0.0011583 1.90631e-06 7.54326e-13 2.718 ||| 0-2 ||| 7 524574 +los ||| emphasis on education ||| 0.0769231 0.0011583 1.90631e-06 6.32534e-12 2.718 ||| 0-2 ||| 13 524574 +los ||| employ practices of ||| 1 0.0019787 1.90631e-06 8.00704e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| employed ||| 0.000962464 0.0057803 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 1039 524574 +los ||| employee ||| 0.00815217 0.277846 5.71893e-06 0.0002207 2.718 ||| 0-0 ||| 368 524574 +los ||| employees ' ||| 0.016129 0.191444 1.90631e-06 8.56923e-06 2.718 ||| 0-0 0-1 ||| 62 524574 +los ||| employees also have ||| 0.333333 0.33844 1.90631e-06 9.72726e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| employees also ||| 0.333333 0.33844 1.90631e-06 8.13329e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| employees and members of the ||| 1 0.230364 1.90631e-06 6.94098e-11 2.718 ||| 0-0 0-4 ||| 1 524574 +los ||| employees and ||| 0.00250627 0.33844 1.90631e-06 2.01792e-05 2.718 ||| 0-0 ||| 399 524574 +los ||| employees are ||| 0.0147059 0.33844 1.90631e-06 2.44432e-05 2.718 ||| 0-0 ||| 68 524574 +los ||| employees by granting ||| 1 0.33844 1.90631e-06 2.16523e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| employees by ||| 0.2 0.33844 1.90631e-06 8.45791e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| employees ||| 0.0054692 0.33844 3.62199e-05 0.001611 2.718 ||| 0-0 ||| 3474 524574 +los ||| employer ||| 0.00255754 0.0047733 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 391 524574 +los ||| employers ' ||| 0.00990099 0.17316 1.90631e-06 4.16813e-06 2.718 ||| 0-0 0-1 ||| 101 524574 +los ||| employers and ||| 0.0030303 0.301873 1.90631e-06 9.8153e-06 2.718 ||| 0-0 ||| 330 524574 +los ||| employers ||| 0.00546747 0.301873 1.90631e-05 0.0007836 2.718 ||| 0-0 ||| 1829 524574 +los ||| employment of ||| 0.00869565 0.0001257 3.81262e-06 1.57656e-07 2.718 ||| 0-0 ||| 230 524574 +los ||| employment ||| 4.91183e-05 0.0001257 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 20359 524574 +los ||| enable citizens ||| 0.0909091 0.293572 1.90631e-06 1.49253e-06 2.718 ||| 0-1 ||| 11 524574 +los ||| enable local ||| 1 0.0190862 1.90631e-06 1.84974e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| enable the ||| 0.0137825 0.122289 1.71568e-05 4.22951e-05 2.718 ||| 0-1 ||| 653 524574 +los ||| enable us ||| 0.00228833 0.0021996 1.90631e-06 4.49623e-08 2.718 ||| 0-0 ||| 437 524574 +los ||| enable ||| 0.00197684 0.0021996 1.33442e-05 1.56e-05 2.718 ||| 0-0 ||| 3541 524574 +los ||| enabled them ||| 0.166667 0.038218 1.90631e-06 3.03903e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| enables all ||| 0.125 0.0177928 1.90631e-06 4.65076e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| enables children ||| 0.333333 0.293415 1.90631e-06 9.54043e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| enables the ||| 0.00819672 0.122289 1.90631e-06 7.42094e-06 2.718 ||| 0-1 ||| 122 524574 +los ||| enabling the models already ||| 1 0.133333 1.90631e-06 1.70089e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| enabling the models ||| 1 0.133333 1.90631e-06 3.67283e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| enabling the ||| 0.0123967 0.122289 5.71893e-06 1.44987e-05 2.718 ||| 0-1 ||| 242 524574 +los ||| enclosed ||| 0.0208333 0.0517241 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 48 524574 +los ||| encourage observance of the ||| 0.5 0.122289 1.90631e-06 3.86059e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| encourage the use ||| 0.015625 0.122289 1.90631e-06 8.0295e-09 2.718 ||| 0-1 ||| 64 524574 +los ||| encourage the ||| 0.00178571 0.122289 3.81262e-06 1.65148e-05 2.718 ||| 0-1 ||| 1120 524574 +los ||| encourage ||| 0.0002936 0.0006238 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 6812 524574 +los ||| encouragement , the results ||| 0.5 0.122289 1.90631e-06 3.72184e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| encouragement , the ||| 0.5 0.122289 1.90631e-06 4.80858e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| encouraging progress ||| 0.0769231 0.0392854 1.90631e-06 2.02014e-08 2.718 ||| 0-1 ||| 13 524574 +los ||| encouraging the ||| 0.00241546 0.122289 1.90631e-06 1.02092e-05 2.718 ||| 0-1 ||| 414 524574 +los ||| encouraging those ||| 0.0625 0.284705 1.90631e-06 3.97403e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| end , aid agreements must include a ||| 1 0.199336 1.90631e-06 1.93809e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| end , aid agreements must include ||| 1 0.199336 1.90631e-06 4.37237e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| end , aid agreements must ||| 1 0.199336 1.90631e-06 3.30239e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| end , aid agreements ||| 1 0.199336 1.90631e-06 2.13664e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| end of last year the ||| 0.333333 0.122289 1.90631e-06 5.52666e-13 2.718 ||| 0-4 ||| 3 524574 +los ||| end of the ||| 0.000656599 0.122289 3.81262e-06 1.01464e-05 2.718 ||| 0-2 ||| 3046 524574 +los ||| end requires the ||| 1 0.122289 1.90631e-06 4.96459e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| end to the ||| 0.00240096 0.122289 3.81262e-06 1.65844e-05 2.718 ||| 0-2 ||| 833 524574 +los ||| end up living ||| 0.5 0.0011008 1.90631e-06 1.00906e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| end-of-waste ||| 0.166667 0.6 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| ended the highly paid personnel who depicted ||| 0.333333 0.122289 1.90631e-06 1.76907e-27 2.718 ||| 0-1 ||| 3 524574 +los ||| ended the highly paid personnel who ||| 0.333333 0.122289 1.90631e-06 3.53814e-22 2.718 ||| 0-1 ||| 3 524574 +los ||| ended the highly paid personnel ||| 0.333333 0.122289 1.90631e-06 4.0115e-19 2.718 ||| 0-1 ||| 3 524574 +los ||| ended the highly paid ||| 0.333333 0.122289 1.90631e-06 6.91638e-14 2.718 ||| 0-1 ||| 3 524574 +los ||| ended the highly ||| 0.333333 0.122289 1.90631e-06 5.13847e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| ended the ||| 0.025641 0.122289 1.90631e-06 8.49333e-06 2.718 ||| 0-1 ||| 39 524574 +los ||| endocrine ||| 0.037037 0.212903 3.81262e-06 3.21e-05 2.718 ||| 0-0 ||| 54 524574 +los ||| endorse the ||| 0.0015528 0.122289 1.90631e-06 9.73731e-06 2.718 ||| 0-1 ||| 644 524574 +los ||| endorsed are the hopes ||| 0.25 0.122289 1.90631e-06 5.45601e-13 2.718 ||| 0-2 ||| 4 524574 +los ||| endorsed are the ||| 0.25 0.122289 1.90631e-06 5.40199e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| endorsement of the Morillon ||| 1 0.122289 1.90631e-06 9.46783e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| endorsement of the ||| 0.0153846 0.122289 1.90631e-06 6.76274e-08 2.718 ||| 0-2 ||| 65 524574 +los ||| endorses the ||| 0.00840336 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-1 ||| 119 524574 +los ||| endorsing the ||| 0.0123457 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-1 ||| 81 524574 +los ||| endow the ||| 0.111111 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| ends ||| 0.0030349 0.0063898 3.81262e-06 5.8e-06 2.718 ||| 0-0 ||| 659 524574 +los ||| energies and resources , ||| 0.333333 0.21958 1.90631e-06 4.92413e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| energies and resources ||| 0.333333 0.21958 1.90631e-06 4.12908e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| energy resources ||| 0.00258398 0.21958 1.90631e-06 4.30961e-07 2.718 ||| 0-1 ||| 387 524574 +los ||| energy sectors and with regard to the ||| 1 0.1467 1.90631e-06 2.9033e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| energy sectors and with regard to ||| 1 0.1467 1.90631e-06 4.72914e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| energy sectors and with regard ||| 1 0.1467 1.90631e-06 5.32212e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| energy sectors and with ||| 1 0.1467 1.90631e-06 7.8163e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| energy sectors and ||| 1 0.1467 1.90631e-06 1.22235e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| energy sectors ||| 0.047619 0.1467 1.90631e-06 9.75855e-08 2.718 ||| 0-1 ||| 21 524574 +los ||| energy ||| 9.99633e-05 0.0001858 5.71893e-06 6.8e-06 2.718 ||| 0-0 ||| 30011 524574 +los ||| energy-related ||| 0.0111111 0.025 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 90 524574 +los ||| energy-saving ||| 0.00408163 0.025974 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 245 524574 +los ||| enforce the ||| 0.0133333 0.122289 5.71893e-06 4.33246e-06 2.718 ||| 0-1 ||| 225 524574 +los ||| enforcing the ||| 0.00884956 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 113 524574 +los ||| engage the ||| 0.0689655 0.122289 3.81262e-06 2.08473e-05 2.718 ||| 0-1 ||| 29 524574 +los ||| engaging the ||| 0.0666667 0.122289 1.90631e-06 5.70512e-06 2.718 ||| 0-1 ||| 15 524574 +los ||| engine cars ||| 0.333333 0.259094 1.90631e-06 2.8422e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| engineers ||| 0.00515464 0.22831 1.90631e-06 4.86e-05 2.718 ||| 0-0 ||| 194 524574 +los ||| engines ||| 0.00407332 0.228178 3.81262e-06 0.0001449 2.718 ||| 0-0 ||| 491 524574 +los ||| enhance regional ||| 0.2 0.0028097 1.90631e-06 3.7072e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| enhance the ||| 0.00192308 0.122289 1.90631e-06 4.80431e-06 2.718 ||| 0-1 ||| 520 524574 +los ||| enhance their status ||| 0.333333 0.0236713 1.90631e-06 2.59041e-12 2.718 ||| 0-1 ||| 3 524574 +los ||| enhance their ||| 0.0144928 0.0236713 1.90631e-06 2.56222e-08 2.718 ||| 0-1 ||| 69 524574 +los ||| enjoy on Fridays ||| 0.125 0.278761 1.90631e-06 1.59552e-11 2.718 ||| 0-2 ||| 8 524574 +los ||| enjoy the ||| 0.0185759 0.122289 1.14379e-05 1.66864e-05 2.718 ||| 0-1 ||| 323 524574 +los ||| enjoy ||| 0.000429738 0.0004509 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2327 524574 +los ||| enjoyed the ||| 0.0204082 0.122289 1.90631e-06 9.86599e-06 2.718 ||| 0-1 ||| 49 524574 +los ||| enlightened ||| 0.00613497 0.009901 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 163 524574 +los ||| enormous deficits ||| 0.333333 0.228304 1.90631e-06 9.576e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| enormous expenditure ||| 0.2 0.174161 1.90631e-06 3.41626e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| enough money to ||| 0.0227273 0.0049735 1.90631e-06 1.09949e-09 2.718 ||| 0-1 ||| 44 524574 +los ||| enough money ||| 0.0078125 0.0049735 1.90631e-06 1.23735e-08 2.718 ||| 0-1 ||| 128 524574 +los ||| ensure that it is the ||| 0.111111 0.122289 1.90631e-06 1.80331e-09 2.718 ||| 0-4 ||| 9 524574 +los ||| ensure that the current ||| 0.142857 0.122289 1.90631e-06 5.33216e-10 2.718 ||| 0-2 ||| 7 524574 +los ||| ensure that the ||| 0.00197628 0.122289 1.33442e-05 3.23553e-06 2.718 ||| 0-2 ||| 3542 524574 +los ||| ensure that they are ||| 0.00757576 0.0072404 1.90631e-06 9.36845e-11 2.718 ||| 0-2 ||| 132 524574 +los ||| ensure that they ||| 0.00543478 0.0072404 1.90631e-06 6.17454e-09 2.718 ||| 0-2 ||| 184 524574 +los ||| ensure that those ||| 0.00980392 0.284705 1.90631e-06 1.25947e-07 2.718 ||| 0-2 ||| 102 524574 +los ||| ensure that we ||| 0.00240385 0.0014565 1.90631e-06 6.57054e-09 2.718 ||| 0-2 ||| 416 524574 +los ||| ensure the ||| 0.00145985 0.122289 5.71893e-06 0.000192344 2.718 ||| 0-1 ||| 2055 524574 +los ||| ensure there is ||| 0.0204082 0.0026918 1.90631e-06 5.16461e-09 2.718 ||| 0-1 ||| 49 524574 +los ||| ensure there ||| 0.0188679 0.0026918 1.90631e-06 1.64787e-07 2.718 ||| 0-1 ||| 53 524574 +los ||| ensured of the ||| 1 0.122289 1.90631e-06 3.35805e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| ensuring that our ||| 0.0181818 0.0248369 1.90631e-06 6.98032e-09 2.718 ||| 0-2 ||| 55 524574 +los ||| ensuring that the ||| 0.00573888 0.122289 7.62523e-06 8.38468e-07 2.718 ||| 0-2 ||| 697 524574 +los ||| ensuring the ||| 0.00238949 0.122289 3.81262e-06 4.98447e-05 2.718 ||| 0-1 ||| 837 524574 +los ||| enter countries ||| 1 0.0957208 1.90631e-06 4.10975e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| enter into the ||| 0.0147059 0.122289 1.90631e-06 2.17122e-08 2.718 ||| 0-2 ||| 68 524574 +los ||| entered the ||| 0.00680272 0.122289 1.90631e-06 1.37266e-05 2.718 ||| 0-1 ||| 147 524574 +los ||| entering into non-regional ||| 1 1 1.90631e-06 1.59138e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| enthusiasts ||| 0.0357143 0.170732 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 28 524574 +los ||| entitlements ||| 0.0239234 0.148 9.53154e-06 3.6e-05 2.718 ||| 0-0 ||| 209 524574 +los ||| entrants destined ||| 1 0.187097 1.90631e-06 1.833e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| entrants ||| 0.012987 0.187097 1.90631e-06 2.82e-05 2.718 ||| 0-0 ||| 77 524574 +los ||| entrepreneurs ||| 0.00248756 0.315279 3.81262e-06 0.0003792 2.718 ||| 0-0 ||| 804 524574 +los ||| entrusting the ||| 0.047619 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 21 524574 +los ||| envelopes ||| 0.0147059 0.12987 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 68 524574 +los ||| environment-friendly projects ||| 0.333333 0.161094 1.90631e-06 7.6068e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| environmental and social standards ||| 0.0232558 0.0037997 1.90631e-06 3.79205e-15 2.718 ||| 0-2 ||| 43 524574 +los ||| environmental and social ||| 0.00706714 0.0151175 3.81262e-06 4.49122e-10 2.718 ||| 0-0 ||| 283 524574 +los ||| environmental and ||| 0.000698812 0.0151175 1.90631e-06 4.34774e-06 2.718 ||| 0-0 ||| 1431 524574 +los ||| environmental label ||| 0.0833333 0.0151175 1.90631e-06 4.75527e-09 2.718 ||| 0-0 ||| 12 524574 +los ||| environmental point ||| 0.0588235 0.0151175 1.90631e-06 3.03643e-07 2.718 ||| 0-0 ||| 17 524574 +los ||| environmental projects need our support . ||| 1 0.0151175 1.90631e-06 2.24136e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| environmental projects need our support ||| 1 0.0151175 1.90631e-06 7.39968e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| environmental projects need our ||| 1 0.0151175 1.90631e-06 2.16428e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| environmental projects need ||| 1 0.0151175 1.90631e-06 1.569e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| environmental projects ||| 0.0204082 0.0151175 1.90631e-06 1.7112e-08 2.718 ||| 0-0 ||| 49 524574 +los ||| environmental proposals through ||| 1 0.0151175 1.90631e-06 1.55297e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| environmental proposals ||| 0.2 0.0151175 1.90631e-06 3.37381e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| environmental protection ||| 0.000469704 0.0151175 1.90631e-06 3.52307e-08 2.718 ||| 0-0 ||| 2129 524574 +los ||| environmental ||| 0.00174205 0.0151175 5.14703e-05 0.0003471 2.718 ||| 0-0 ||| 15499 524574 +los ||| environments ||| 0.0103627 0.123595 3.81262e-06 3.21e-05 2.718 ||| 0-0 ||| 193 524574 +los ||| envisaged the ||| 0.0833333 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-1 ||| 12 524574 +los ||| episodes ||| 0.012987 0.0434783 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 77 524574 +los ||| equal , ||| 0.00917431 0.0007508 1.90631e-06 9.30187e-07 2.718 ||| 0-0 ||| 109 524574 +los ||| equal among ||| 0.5 0.0202203 1.90631e-06 1.24582e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| equal footing in the ||| 0.125 0.122289 1.90631e-06 1.1344e-11 2.718 ||| 0-3 ||| 8 524574 +los ||| equal rights to ||| 0.027027 0.0030851 1.90631e-06 7.75618e-10 2.718 ||| 0-1 ||| 37 524574 +los ||| equal rights ||| 0.00161551 0.0030851 1.90631e-06 8.72872e-09 2.718 ||| 0-1 ||| 619 524574 +los ||| equal to ||| 0.00242718 0.0003826 1.90631e-06 1.8174e-10 2.718 ||| 0-0 0-1 ||| 412 524574 +los ||| equal ||| 0.000317528 0.0007508 5.71893e-06 7.8e-06 2.718 ||| 0-0 ||| 9448 524574 +los ||| equipment , ||| 0.00888889 0.101449 3.81262e-06 3.08393e-05 2.718 ||| 0-0 ||| 225 524574 +los ||| equipment thus ||| 1 0.101449 1.90631e-06 4.40137e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| equipment ||| 0.00600126 0.101449 3.62199e-05 0.0002586 2.718 ||| 0-0 ||| 3166 524574 +los ||| equipped with the ||| 0.0238095 0.122289 1.90631e-06 2.9624e-08 2.718 ||| 0-2 ||| 42 524574 +los ||| equipping them with the ||| 1 0.122289 1.90631e-06 8.09349e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| equivalent to the ||| 0.0140845 0.122289 1.90631e-06 7.81384e-07 2.718 ||| 0-2 ||| 71 524574 +los ||| error than interim and final payments . ||| 1 0.273884 1.90631e-06 1.29629e-25 2.718 ||| 0-5 ||| 1 524574 +los ||| error than interim and final payments ||| 1 0.273884 1.90631e-06 4.2796e-23 2.718 ||| 0-5 ||| 1 524574 +los ||| errors ||| 0.00274223 0.101639 5.71893e-06 0.0001206 2.718 ||| 0-0 ||| 1094 524574 +los ||| especially in the ||| 0.000791139 0.122289 1.90631e-06 7.37282e-07 2.718 ||| 0-2 ||| 1264 524574 +los ||| especially the ||| 0.000729395 0.122289 1.90631e-06 3.44452e-05 2.718 ||| 0-1 ||| 1371 524574 +los ||| essential elements ||| 0.00531915 0.031908 1.90631e-06 1.2861e-08 2.718 ||| 0-1 ||| 188 524574 +los ||| essential for ||| 0.000648508 0.0015353 1.90631e-06 7.9362e-08 2.718 ||| 0-1 ||| 1542 524574 +los ||| essential that the ||| 0.002457 0.122289 1.90631e-06 6.49416e-07 2.718 ||| 0-2 ||| 407 524574 +los ||| essential to the ||| 0.00440529 0.122289 1.90631e-06 3.43047e-06 2.718 ||| 0-2 ||| 227 524574 +los ||| essentially the ||| 0.0169492 0.122289 1.90631e-06 8.19307e-06 2.718 ||| 0-1 ||| 59 524574 +los ||| establish footholds in the ||| 1 0.122289 1.90631e-06 2.80222e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| establish funds ||| 0.25 0.220459 1.90631e-06 2.8553e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| establish the ||| 0.00343643 0.122289 3.81262e-06 3.27294e-05 2.718 ||| 0-1 ||| 582 524574 +los ||| established in the ||| 0.00390625 0.122289 1.90631e-06 1.37448e-06 2.718 ||| 0-2 ||| 256 524574 +los ||| established the ||| 0.00495049 0.122289 1.90631e-06 6.42148e-05 2.718 ||| 0-1 ||| 202 524574 +los ||| established ||| 0.000172741 0.0004446 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 5789 524574 +los ||| establishments ||| 0.00520833 0.168831 3.81262e-06 7.58e-05 2.718 ||| 0-0 ||| 384 524574 +los ||| estimate is available ||| 0.5 0.0092131 1.90631e-06 2.19811e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| estimates for ||| 0.027027 0.0289515 1.90631e-06 2.76685e-07 2.718 ||| 0-0 ||| 37 524574 +los ||| estimates ||| 0.00101729 0.0289515 1.90631e-06 3.6e-05 2.718 ||| 0-0 ||| 983 524574 +los ||| ethical ||| 0.000611621 0.0031646 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 1635 524574 +los ||| ethnic groups ||| 0.00293255 0.143803 1.90631e-06 2.28206e-08 2.718 ||| 0-1 ||| 341 524574 +los ||| ethnic ||| 0.000387747 0.0003917 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2579 524574 +los ||| euro notes ||| 0.016129 0.0539514 1.90631e-06 4.0503e-09 2.718 ||| 0-1 ||| 62 524574 +los ||| eurosceptics ||| 0.0277778 0.172414 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 36 524574 +los ||| evaluate the ||| 0.00707547 0.122289 5.71893e-06 2.78822e-06 2.718 ||| 0-1 ||| 424 524574 +los ||| evaluate them ||| 0.0357143 0.0017889 1.90631e-06 5.09656e-09 2.718 ||| 0-0 ||| 28 524574 +los ||| evaluate ||| 0.000927644 0.0017889 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1078 524574 +los ||| evaluates the ||| 0.0416667 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 24 524574 +los ||| even MPs ||| 0.333333 0.208955 1.90631e-06 4.97144e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| even the best ||| 0.0294118 0.122289 1.90631e-06 3.61513e-08 2.718 ||| 0-1 ||| 34 524574 +los ||| even the globalisation of ||| 0.333333 0.122289 1.90631e-06 1.07845e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| even the globalisation ||| 0.333333 0.122289 1.90631e-06 1.98375e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| even the ||| 0.0109051 0.122289 3.81262e-05 0.00026102 2.718 ||| 0-1 ||| 1834 524574 +los ||| even those who ||| 0.0163934 0.284705 1.90631e-06 8.96155e-09 2.718 ||| 0-1 ||| 61 524574 +los ||| even those ||| 0.0128205 0.284705 5.71893e-06 1.01605e-05 2.718 ||| 0-1 ||| 234 524574 +los ||| even use the ||| 0.333333 0.122289 1.90631e-06 1.26908e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| even ||| 2.95998e-05 2.32e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 33784 524574 +los ||| event , the ||| 0.00925926 0.122289 1.90631e-06 5.34059e-06 2.718 ||| 0-2 ||| 108 524574 +los ||| events , ||| 0.003861 0.140095 3.81262e-06 0.000129391 2.718 ||| 0-0 ||| 518 524574 +los ||| events being ||| 0.333333 0.140095 1.90631e-06 3.08769e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| events concerning ||| 0.111111 0.140095 1.90631e-06 6.67275e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| events in the ||| 0.00552486 0.122289 1.90631e-06 6.67502e-07 2.718 ||| 0-2 ||| 181 524574 +los ||| events in ||| 0.00105263 0.140095 1.90631e-06 2.32239e-05 2.718 ||| 0-0 ||| 950 524574 +los ||| events might ||| 0.125 0.140095 1.90631e-06 4.1664e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| events ||| 0.00381679 0.140095 4.57514e-05 0.001085 2.718 ||| 0-0 ||| 6288 524574 +los ||| ever there was ||| 0.0243902 0.0026918 1.90631e-06 2.16344e-10 2.718 ||| 0-1 ||| 41 524574 +los ||| ever there ||| 0.0434783 0.0026918 1.90631e-06 6.90532e-08 2.718 ||| 0-1 ||| 23 524574 +los ||| every Member 's ||| 1 0.0599841 1.90631e-06 2.21584e-09 2.718 ||| 0-0 0-1 0-2 ||| 1 524574 +los ||| every State ||| 0.0454545 0.144232 1.90631e-06 3.92321e-07 2.718 ||| 0-0 ||| 22 524574 +los ||| every bit ||| 0.0588235 0.144232 1.90631e-06 2.58501e-07 2.718 ||| 0-0 ||| 17 524574 +los ||| every continent . ||| 0.111111 0.144232 1.90631e-06 1.13693e-10 2.718 ||| 0-0 ||| 9 524574 +los ||| every continent ||| 0.05 0.144232 1.90631e-06 3.75349e-08 2.718 ||| 0-0 ||| 20 524574 +los ||| every day ||| 0.000711744 0.144232 1.90631e-06 8.36211e-07 2.718 ||| 0-0 ||| 1405 524574 +los ||| every field in ||| 1 0.144232 1.90631e-06 1.02069e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| every field ||| 0.05 0.144232 1.90631e-06 4.76856e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| every good wish ||| 0.333333 0.144232 1.90631e-06 4.98826e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| every good ||| 0.1 0.144232 1.90631e-06 1.69266e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| every newly ||| 0.5 0.144232 1.90631e-06 2.35001e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| every one of ||| 0.00299401 0.0019787 1.90631e-06 2.24299e-09 2.718 ||| 0-2 ||| 334 524574 +los ||| every one ||| 0.00815217 0.144232 5.71893e-06 1.36039e-05 2.718 ||| 0-0 ||| 368 524574 +los ||| every other ||| 0.00465116 0.0740404 1.90631e-06 9.26621e-07 2.718 ||| 0-0 0-1 ||| 215 524574 +los ||| every person ||| 0.00970874 0.144232 1.90631e-06 4.2039e-07 2.718 ||| 0-0 ||| 103 524574 +los ||| every piece of ||| 0.0714286 0.144232 1.90631e-06 1.69809e-08 2.718 ||| 0-0 ||| 14 524574 +los ||| every piece ||| 0.0666667 0.144232 1.90631e-06 3.12355e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| every possible ||| 0.00819672 0.144232 1.90631e-06 2.61797e-06 2.718 ||| 0-0 ||| 122 524574 +los ||| every reason ||| 0.00843882 0.144232 3.81262e-06 7.63426e-07 2.718 ||| 0-0 ||| 237 524574 +los ||| every relative ||| 0.5 0.144232 1.90631e-06 2.93751e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| every resource ||| 0.111111 0.144232 1.90631e-06 1.30556e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| every single ||| 0.0102459 0.0762798 9.53154e-06 3.48911e-07 2.718 ||| 0-0 0-1 ||| 488 524574 +los ||| every three ||| 0.00854701 0.144232 1.90631e-06 2.06605e-07 2.718 ||| 0-0 ||| 117 524574 +los ||| every year , practically half ||| 1 0.144232 1.90631e-06 1.81725e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| every year , practically ||| 1 0.144232 1.90631e-06 6.3099e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| every year , ||| 0.00268097 0.144232 1.90631e-06 9.70753e-08 2.718 ||| 0-0 ||| 373 524574 +los ||| every year ||| 0.000510986 0.144232 1.90631e-06 8.14017e-07 2.718 ||| 0-0 ||| 1957 524574 +los ||| every ||| 0.0104189 0.144232 0.000367918 0.0032639 2.718 ||| 0-0 ||| 18524 524574 +los ||| everybody if the ||| 0.333333 0.122289 1.90631e-06 2.43736e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| everybody ||| 0.00707339 0.0663194 3.05009e-05 0.0001857 2.718 ||| 0-0 ||| 2262 524574 +los ||| everybody ’ s best ||| 1 0.0663194 1.90631e-06 8.52342e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| everybody ’ s ||| 0.25 0.0663194 1.90631e-06 6.15409e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| everybody ’ ||| 0.0526316 0.0663194 1.90631e-06 3.23508e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| everyday anew ||| 0.25 0.0137694 1.90631e-06 3.432e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| everyday ||| 0.00385109 0.0137694 5.71893e-06 1.56e-05 2.718 ||| 0-0 ||| 779 524574 +los ||| everyone 's ||| 0.0122699 0.0576132 3.81262e-06 6.32082e-06 2.718 ||| 0-0 0-1 ||| 163 524574 +los ||| everyone , ||| 0.0030722 0.080245 3.81262e-06 0.000123023 2.718 ||| 0-0 ||| 651 524574 +los ||| everyone bearing the ||| 0.5 0.122289 1.90631e-06 1.28755e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| everyone is ||| 0.00149925 0.080245 1.90631e-06 3.23315e-05 2.718 ||| 0-0 ||| 667 524574 +los ||| everyone ||| 0.00419555 0.080245 8.76902e-05 0.0010316 2.718 ||| 0-0 ||| 10964 524574 +los ||| everywhere ||| 0.000951475 0.0382301 1.90631e-06 0.000105 2.718 ||| 0-0 ||| 1051 524574 +los ||| evidence did emerge the ||| 0.333333 0.122289 1.90631e-06 3.24204e-13 2.718 ||| 0-3 ||| 3 524574 +los ||| evidence for this , and the point ||| 1 0.122289 1.90631e-06 1.5338e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| evidence for this , and the ||| 1 0.122289 1.90631e-06 1.75331e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| evidence of the ||| 0.00621118 0.122289 1.90631e-06 1.28492e-06 2.718 ||| 0-2 ||| 161 524574 +los ||| evidence ||| 0.000761035 0.0016552 5.71893e-06 6.8e-06 2.718 ||| 0-0 ||| 3942 524574 +los ||| evils ||| 0.00990099 0.111111 1.90631e-06 1.65e-05 2.718 ||| 0-0 ||| 101 524574 +los ||| ex ante ||| 0.010101 0.0409836 1.90631e-06 1.746e-11 2.718 ||| 0-0 ||| 99 524574 +los ||| ex ||| 0.0638298 0.0409836 1.14379e-05 9.7e-06 2.718 ||| 0-0 ||| 94 524574 +los ||| exacerbate the ||| 0.00925926 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-1 ||| 108 524574 +los ||| exacerbation of the ||| 0.142857 0.122289 1.90631e-06 9.32791e-09 2.718 ||| 0-2 ||| 7 524574 +los ||| exactly the ||| 0.00634921 0.122289 1.14379e-05 4.30672e-05 2.718 ||| 0-1 ||| 945 524574 +los ||| exactly who ||| 0.0333333 0.0016142 1.90631e-06 1.1807e-08 2.718 ||| 0-1 ||| 30 524574 +los ||| examination of the ||| 0.0108696 0.122289 3.81262e-06 3.19481e-07 2.718 ||| 0-2 ||| 184 524574 +los ||| examine and clarify the ||| 1 0.122289 1.90631e-06 1.22345e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| examine the ||| 0.00164745 0.122289 1.90631e-06 8.49333e-06 2.718 ||| 0-1 ||| 607 524574 +los ||| examined the ||| 0.00746269 0.122289 1.90631e-06 7.54963e-06 2.718 ||| 0-1 ||| 134 524574 +los ||| examining the ||| 0.00310559 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-1 ||| 322 524574 +los ||| example , in the ||| 0.0033557 0.122289 1.90631e-06 3.18739e-07 2.718 ||| 0-3 ||| 298 524574 +los ||| example , the 49 least developed ||| 1 0.122289 1.90631e-06 3.51471e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| example , the 49 least ||| 1 0.122289 1.90631e-06 5.11603e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| example , the 49 ||| 1 0.122289 1.90631e-06 2.08477e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| example , the ||| 0.00178998 0.122289 5.71893e-06 1.48912e-05 2.718 ||| 0-2 ||| 1676 524574 +los ||| example , ||| 7.10934e-05 3.73e-05 1.90631e-06 1.19255e-07 2.718 ||| 0-0 ||| 14066 524574 +los ||| example of the ||| 0.00158228 0.122289 1.90631e-06 6.78839e-06 2.718 ||| 0-2 ||| 632 524574 +los ||| example ||| 3.51679e-05 3.73e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 28435 524574 +los ||| examples ||| 0.00269724 0.0256164 1.52505e-05 7.78e-05 2.718 ||| 0-0 ||| 2966 524574 +los ||| excavation ||| 0.125 0.181818 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| exceed their limits , ||| 0.5 0.0859692 1.90631e-06 2.90633e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| exceed their limits ||| 0.333333 0.0859692 1.90631e-06 2.43708e-12 2.718 ||| 0-2 ||| 3 524574 +los ||| exceeding the ||| 0.0173913 0.122289 3.81262e-06 7.72121e-07 2.718 ||| 0-1 ||| 115 524574 +los ||| exceeds ||| 0.00343643 0.0212766 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 291 524574 +los ||| excellent journalists ||| 1 0.259054 1.90631e-06 1.87262e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| except the ||| 0.0113636 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-1 ||| 88 524574 +los ||| exception the ||| 0.25 0.122289 1.90631e-06 8.02148e-06 2.718 ||| 0-1 ||| 4 524574 +los ||| excess of ||| 0.00816326 0.010101 3.81262e-06 3.15311e-07 2.718 ||| 0-0 ||| 245 524574 +los ||| excess ||| 0.0017094 0.010101 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 585 524574 +los ||| excesses of ||| 0.0172414 0.143382 1.90631e-06 2.0604e-06 2.718 ||| 0-0 ||| 58 524574 +los ||| excesses ||| 0.00505051 0.143382 1.90631e-06 3.79e-05 2.718 ||| 0-0 ||| 198 524574 +los ||| excessive ||| 0.000389712 0.0027202 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 2566 524574 +los ||| exchange rates , become ||| 1 0.177851 1.90631e-06 9.94638e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| exchange rates , ||| 0.05 0.177851 1.90631e-06 3.48141e-09 2.718 ||| 0-1 ||| 20 524574 +los ||| exchange rates ||| 0.00558659 0.177851 1.90631e-06 2.9193e-08 2.718 ||| 0-1 ||| 179 524574 +los ||| exchange ||| 0.000484574 0.001625 5.71893e-06 7.8e-06 2.718 ||| 0-0 ||| 6191 524574 +los ||| exchanges ||| 0.00227964 0.196469 5.71893e-06 0.0003354 2.718 ||| 0-0 ||| 1316 524574 +los ||| excise duties ||| 0.00380228 0.106914 1.90631e-06 1.57518e-09 2.718 ||| 0-1 ||| 263 524574 +los ||| excise duty ||| 0.00265252 0.0972321 1.90631e-06 9.9234e-09 2.718 ||| 0-0 ||| 377 524574 +los ||| excise ||| 0.0196078 0.0972321 9.53154e-06 0.0001332 2.718 ||| 0-0 ||| 255 524574 +los ||| exclude the ||| 0.0070922 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-1 ||| 141 524574 +los ||| exclude those ||| 0.25 0.284705 1.90631e-06 8.3488e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| excuse the ||| 0.0454545 0.122289 1.90631e-06 7.8928e-06 2.718 ||| 0-1 ||| 22 524574 +los ||| excuse those ||| 0.333333 0.284705 1.90631e-06 3.07236e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| excuses and ' no comment ' ||| 1 0.0444479 1.90631e-06 5.69884e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| executive ||| 0.000911577 0.0016949 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1097 524574 +los ||| executives ||| 0.0240964 0.18797 3.81262e-06 2.43e-05 2.718 ||| 0-0 ||| 83 524574 +los ||| exemplify the ||| 0.166667 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| exercise the same rights ||| 0.5 0.122289 1.90631e-06 4.27548e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| exercise the same ||| 0.142857 0.122289 1.90631e-06 2.13667e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| exercise the ||| 0.01 0.122289 1.90631e-06 2.65524e-05 2.718 ||| 0-1 ||| 100 524574 +los ||| exercised our ||| 0.25 0.0248369 1.90631e-06 5.53521e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| exercises ||| 0.00619195 0.0621302 3.81262e-06 2.04e-05 2.718 ||| 0-0 ||| 323 524574 +los ||| exercising their ||| 0.00917431 0.0236713 1.90631e-06 2.21907e-08 2.718 ||| 0-1 ||| 109 524574 +los ||| exhaust and ||| 0.0909091 0.0857143 1.90631e-06 4.38406e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| exhaust ||| 0.00564972 0.0857143 1.90631e-06 3.5e-05 2.718 ||| 0-0 ||| 177 524574 +los ||| exist between the ||| 0.015873 0.122289 1.90631e-06 1.04219e-08 2.718 ||| 0-2 ||| 63 524574 +los ||| exist in the ||| 0.00543478 0.122289 1.90631e-06 8.45625e-07 2.718 ||| 0-2 ||| 184 524574 +los ||| existing agreements ||| 0.00980392 0.122896 1.90631e-06 1.3643e-06 2.718 ||| 0-0 0-1 ||| 102 524574 +los ||| existing ||| 0.0133151 0.0464558 0.000223038 0.0004327 2.718 ||| 0-0 ||| 8787 524574 +los ||| exists among the ||| 0.333333 0.0712548 1.90631e-06 5.21321e-09 2.718 ||| 0-1 0-2 ||| 3 524574 +los ||| exists where the consumer has an additional ||| 1 0.122289 1.90631e-06 2.58944e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| exists where the consumer has an ||| 1 0.122289 1.90631e-06 4.89498e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| exists where the consumer has ||| 1 0.122289 1.90631e-06 1.10131e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| exists where the consumer ||| 1 0.122289 1.90631e-06 2.1395e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| exists where the ||| 1 0.122289 1.90631e-06 7.25254e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| exorbitant salaries ||| 1 0.277512 1.90631e-06 1.128e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| expect the ||| 0.00374532 0.122289 1.90631e-06 2.28634e-05 2.718 ||| 0-1 ||| 267 524574 +los ||| expectation facilities ||| 0.5 0.0364457 1.90631e-06 3.2672e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| expected , i.e. , the ||| 1 0.122289 1.90631e-06 1.90866e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| expected ||| 0.000731529 0.0005459 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 2734 524574 +los ||| expenditure comes ||| 0.25 0.174161 1.90631e-06 4.74243e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| expenditure is ||| 0.00806452 0.174161 1.90631e-06 3.71768e-05 2.718 ||| 0-0 ||| 124 524574 +los ||| expenditure that amounts ||| 1 0.174161 1.90631e-06 1.2072e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| expenditure that ||| 0.027027 0.174161 1.90631e-06 1.99538e-05 2.718 ||| 0-0 ||| 37 524574 +los ||| expenditure ||| 0.00277874 0.174161 3.05009e-05 0.0011862 2.718 ||| 0-0 ||| 5758 524574 +los ||| expenses were introduced ||| 0.166667 0.251738 1.90631e-06 5.25283e-11 2.718 ||| 0-0 ||| 6 524574 +los ||| expenses were ||| 0.166667 0.251738 1.90631e-06 5.67874e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| expenses ||| 0.00614574 0.251738 1.33442e-05 0.000317 2.718 ||| 0-0 ||| 1139 524574 +los ||| expensive ||| 0.000667111 0.0036563 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 1499 524574 +los ||| experience is that the ||| 0.25 0.122289 1.90631e-06 1.56269e-08 2.718 ||| 0-3 ||| 4 524574 +los ||| experience of journeys to us ||| 1 0.0019787 1.90631e-06 2.34138e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| experience of journeys to ||| 1 0.0019787 1.90631e-06 8.1236e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| experience of journeys ||| 1 0.0019787 1.90631e-06 9.14221e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| experience of ||| 0.00103093 0.0019787 1.90631e-06 2.28555e-07 2.718 ||| 0-1 ||| 970 524574 +los ||| experience with the ||| 0.0114943 0.122289 1.90631e-06 1.89539e-07 2.718 ||| 0-2 ||| 87 524574 +los ||| experiencing the ||| 0.0185185 0.122289 1.90631e-06 8.02148e-06 2.718 ||| 0-1 ||| 54 524574 +los ||| experiments ||| 0.00225225 0.0947712 1.90631e-06 5.64e-05 2.718 ||| 0-0 ||| 444 524574 +los ||| expert ||| 0.00471698 0.07 1.14379e-05 8.17e-05 2.718 ||| 0-0 ||| 1272 524574 +los ||| expertise ||| 0.00308642 0.0542245 7.62523e-06 8.36e-05 2.718 ||| 0-0 ||| 1296 524574 +los ||| experts ||| 0.00326313 0.155071 2.09694e-05 0.0005396 2.718 ||| 0-0 ||| 3371 524574 +los ||| explanation of the ||| 0.0151515 0.122289 1.90631e-06 4.52404e-07 2.718 ||| 0-2 ||| 66 524574 +los ||| explode the ||| 0.5 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| exploit them ||| 0.0227273 0.038218 1.90631e-06 1.52958e-08 2.718 ||| 0-1 ||| 44 524574 +los ||| exploited the plight of the people of ||| 0.5 0.122289 1.90631e-06 1.60989e-18 2.718 ||| 0-4 ||| 2 524574 +los ||| exploited the plight of the people ||| 0.5 0.122289 1.90631e-06 2.96131e-17 2.718 ||| 0-4 ||| 2 524574 +los ||| exploited the plight of the ||| 0.5 0.122289 1.90631e-06 3.36436e-14 2.718 ||| 0-4 ||| 2 524574 +los ||| exploiting the ||| 0.0169492 0.122289 3.81262e-06 1.54424e-06 2.718 ||| 0-1 ||| 118 524574 +los ||| explosive ||| 0.0292887 0.0440252 1.33442e-05 1.36e-05 2.718 ||| 0-0 ||| 239 524574 +los ||| export ||| 0.000493705 0.0101787 3.81262e-06 3.99e-05 2.718 ||| 0-0 ||| 4051 524574 +los ||| exported ||| 0.00221729 0.0041841 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 451 524574 +los ||| exporting ||| 0.00484653 0.0348432 5.71893e-06 1.94e-05 2.718 ||| 0-0 ||| 619 524574 +los ||| expose the ||| 0.025 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-1 ||| 40 524574 +los ||| exposure scenarios ||| 1 0.0795756 1.90631e-06 1.898e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| exposure ||| 0.00134771 0.002401 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 742 524574 +los ||| express my gratitude in view of the ||| 1 0.122289 1.90631e-06 2.32505e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| express our ||| 0.00228833 0.0248369 1.90631e-06 3.62467e-07 2.718 ||| 0-1 ||| 437 524574 +los ||| express the ||| 0.00406504 0.122289 1.90631e-06 4.35391e-05 2.718 ||| 0-1 ||| 246 524574 +los ||| expressed the ||| 0.00534759 0.122289 1.90631e-06 4.16946e-05 2.718 ||| 0-1 ||| 187 524574 +los ||| expressing our ||| 0.00662252 0.0248369 1.90631e-06 9.39199e-08 2.718 ||| 0-1 ||| 151 524574 +los ||| expressing their ||| 0.0128205 0.0236713 1.90631e-06 6.01665e-08 2.718 ||| 0-1 ||| 78 524574 +los ||| extend my thanks ||| 0.0277778 0.0086409 1.90631e-06 2.412e-12 2.718 ||| 0-1 ||| 36 524574 +los ||| extend my very best wishes ||| 0.5 0.0086409 1.90631e-06 7.59127e-19 2.718 ||| 0-1 ||| 2 524574 +los ||| extend my very best ||| 0.5 0.0086409 1.90631e-06 1.43502e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| extend my very ||| 0.25 0.0086409 1.90631e-06 1.03612e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| extend my ||| 0.0150376 0.0086409 3.81262e-06 2.97778e-08 2.718 ||| 0-1 ||| 133 524574 +los ||| extend the ||| 0.00173762 0.122289 3.81262e-06 1.85309e-05 2.718 ||| 0-1 ||| 1151 524574 +los ||| extending beyond all ||| 0.5 0.0177928 1.90631e-06 4.12775e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| extending the ||| 0.00182149 0.122289 3.81262e-06 8.7936e-06 2.718 ||| 0-1 ||| 1098 524574 +los ||| extensive as ours in ||| 1 0.0009297 1.90631e-06 6.28681e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| extensive as ours ||| 1 0.0009297 1.90631e-06 2.93714e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| extensive as ||| 0.1 0.0009297 1.90631e-06 9.38384e-09 2.718 ||| 0-1 ||| 10 524574 +los ||| extent , the ||| 0.0123457 0.122289 1.90631e-06 9.832e-06 2.718 ||| 0-2 ||| 81 524574 +los ||| extent of the ||| 0.00522193 0.122289 3.81262e-06 4.48206e-06 2.718 ||| 0-2 ||| 383 524574 +los ||| extent the clash of interests ||| 1 0.122289 1.90631e-06 2.88811e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| extent the clash of ||| 1 0.122289 1.90631e-06 2.10657e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| extent the clash ||| 1 0.122289 1.90631e-06 3.87493e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| extent the ||| 0.0128205 0.122289 3.81262e-06 8.24454e-05 2.718 ||| 0-1 ||| 156 524574 +los ||| extent to the ||| 0.0909091 0.122289 1.90631e-06 7.32595e-06 2.718 ||| 0-2 ||| 11 524574 +los ||| external ||| 0.000646496 0.0014061 9.53154e-06 9.7e-06 2.718 ||| 0-0 ||| 7734 524574 +los ||| extreme circumstances ||| 0.0526316 0.0050968 1.90631e-06 5.238e-10 2.718 ||| 0-0 ||| 19 524574 +los ||| extreme ||| 0.00217746 0.0050968 7.62523e-06 9.7e-06 2.718 ||| 0-0 ||| 1837 524574 +los ||| extremist ||| 0.00263852 0.022113 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 379 524574 +los ||| extremists , ||| 0.0333333 0.303725 1.90631e-06 2.45784e-05 2.718 ||| 0-0 ||| 30 524574 +los ||| extremists ||| 0.00399202 0.303725 3.81262e-06 0.0002061 2.718 ||| 0-0 ||| 501 524574 +los ||| eye on ||| 0.00492611 0.00326285 1.90631e-06 3.46096e-09 2.718 ||| 0-0 0-1 ||| 203 524574 +los ||| eye to making the ||| 1 0.122289 1.90631e-06 8.34344e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| eye ||| 0.00112613 0.0058343 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 888 524574 +los ||| eyes of the ||| 0.004329 0.122289 1.90631e-06 1.35954e-06 2.718 ||| 0-2 ||| 231 524574 +los ||| eyes ||| 0.0016835 0.0254566 3.81262e-06 4.47e-05 2.718 ||| 0-0 ||| 1188 524574 +los ||| eyewitness ||| 0.2 0.0416667 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| face of the ||| 0.00840336 0.122289 5.71893e-06 3.9014e-06 2.718 ||| 0-2 ||| 357 524574 +los ||| face the same the ||| 1 0.122289 1.90631e-06 3.5453e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| face the ||| 0.00807754 0.122289 9.53154e-06 7.17644e-05 2.718 ||| 0-1 ||| 619 524574 +los ||| face those ||| 0.125 0.284705 1.90631e-06 2.79351e-06 2.718 ||| 0-1 ||| 8 524574 +los ||| face to face those ||| 1 0.284705 1.90631e-06 4.15282e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| face up to economic ||| 0.5 0.0006735 1.90631e-06 1.52608e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| faced with the ||| 0.0022779 0.122289 1.90631e-06 1.73629e-07 2.718 ||| 0-2 ||| 439 524574 +los ||| facilitate the ||| 0.00226501 0.122289 3.81262e-06 1.03378e-05 2.718 ||| 0-1 ||| 883 524574 +los ||| facilitated those ||| 0.333333 0.284705 1.90631e-06 6.01114e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| facilities beyond ||| 0.5 0.0364457 1.90631e-06 7.64729e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| facilities ||| 0.00300451 0.0364457 1.14379e-05 0.0001021 2.718 ||| 0-0 ||| 1997 524574 +los ||| facing increasingly acute ||| 0.5 0.0049587 1.90631e-06 8.90323e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| facing the ||| 0.00405405 0.122289 5.71893e-06 2.28634e-05 2.718 ||| 0-1 ||| 740 524574 +los ||| fact , all ||| 0.025 0.0177928 1.90631e-06 9.39111e-07 2.718 ||| 0-2 ||| 40 524574 +los ||| fact , disregarding the three ||| 1 0.122289 1.90631e-06 1.70737e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| fact , disregarding the ||| 1 0.122289 1.90631e-06 2.69727e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| fact , in the ||| 0.025 0.122289 1.90631e-06 3.20743e-06 2.718 ||| 0-3 ||| 40 524574 +los ||| fact , it is the other ||| 1 0.122289 1.90631e-06 1.08197e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| fact , it is the ||| 0.0666667 0.122289 1.90631e-06 8.35173e-08 2.718 ||| 0-4 ||| 15 524574 +los ||| fact , the ||| 0.0101652 0.122289 1.52505e-05 0.000149849 2.718 ||| 0-2 ||| 787 524574 +los ||| fact , those ||| 0.285714 0.284705 3.81262e-06 5.83302e-06 2.718 ||| 0-2 ||| 7 524574 +los ||| fact be to the detriment ||| 1 0.122289 1.90631e-06 1.96279e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| fact be to the ||| 1 0.122289 1.90631e-06 2.02349e-06 2.718 ||| 0-3 ||| 1 524574 +los ||| fact give the ||| 0.5 0.122289 1.90631e-06 7.61464e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| fact is that our ||| 0.1 0.0248369 1.90631e-06 5.51502e-09 2.718 ||| 0-3 ||| 10 524574 +los ||| fact is that the ||| 0.0140187 0.122289 5.71893e-06 6.62458e-07 2.718 ||| 0-3 ||| 214 524574 +los ||| fact that the ||| 0.00145228 0.122289 1.33442e-05 2.1137e-05 2.718 ||| 0-2 ||| 4820 524574 +los ||| fact that these ||| 0.00564972 0.0240362 1.90631e-06 1.20109e-07 2.718 ||| 0-2 ||| 177 524574 +los ||| fact that we have ||| 0.003003 0.0014565 1.90631e-06 5.13361e-10 2.718 ||| 0-2 ||| 333 524574 +los ||| fact that we ||| 0.00215983 0.0014565 1.90631e-06 4.29239e-08 2.718 ||| 0-2 ||| 463 524574 +los ||| fact the convergence ||| 1 0.122289 1.90631e-06 1.13089e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| fact the ||| 0.0173913 0.122289 1.14379e-05 0.00125654 2.718 ||| 0-1 ||| 345 524574 +los ||| fact which the ||| 0.2 0.122289 1.90631e-06 1.06738e-05 2.718 ||| 0-2 ||| 5 524574 +los ||| factor the ||| 0.25 0.122289 1.90631e-06 2.08473e-05 2.718 ||| 0-1 ||| 4 524574 +los ||| factors - these ||| 1 0.0851315 1.90631e-06 1.09537e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| factors - ||| 0.142857 0.0851315 1.90631e-06 1.05619e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| factors are ||| 0.0222222 0.0851315 1.90631e-06 4.24836e-06 2.718 ||| 0-0 ||| 45 524574 +los ||| factors which ||| 0.00609756 0.0851315 1.90631e-06 2.37849e-06 2.718 ||| 0-0 ||| 164 524574 +los ||| factors ||| 0.00246914 0.0851315 1.52505e-05 0.00028 2.718 ||| 0-0 ||| 3240 524574 +los ||| factory-made ||| 0.5 0.333333 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| facts and ||| 0.00364964 0.0667145 1.90631e-06 2.26468e-06 2.718 ||| 0-0 ||| 274 524574 +los ||| facts in ||| 0.0217391 0.0667145 1.90631e-06 3.86993e-06 2.718 ||| 0-0 ||| 46 524574 +los ||| facts ||| 0.00121655 0.0667145 5.71893e-06 0.0001808 2.718 ||| 0-0 ||| 2466 524574 +los ||| failed states due ||| 1 0.118291 1.90631e-06 1.94016e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| failed states ||| 0.05 0.118291 1.90631e-06 7.01939e-08 2.718 ||| 0-1 ||| 20 524574 +los ||| failed to meet the ||| 0.0666667 0.122289 1.90631e-06 2.15061e-10 2.718 ||| 0-3 ||| 15 524574 +los ||| failures ||| 0.00775194 0.10509 7.62523e-06 6.22e-05 2.718 ||| 0-0 ||| 516 524574 +los ||| fair trade ||| 0.00185185 0.0307203 1.90631e-06 3.88811e-08 2.718 ||| 0-1 ||| 540 524574 +los ||| fairly low ||| 0.0833333 0.0075154 1.90631e-06 1.04004e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| fairy ||| 0.1 0.0952381 3.81262e-06 5.8e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| fake ||| 0.00869565 0.0214286 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 115 524574 +los ||| fallen timber provides the ||| 0.166667 0.122289 1.90631e-06 1.02029e-15 2.718 ||| 0-3 ||| 6 524574 +los ||| familiar concept to those in ||| 1 0.284705 1.90631e-06 2.92398e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| familiar concept to those ||| 1 0.284705 1.90631e-06 1.36606e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| family ||| 0.000350508 0.0019712 3.81262e-06 1.26e-05 2.718 ||| 0-0 ||| 5706 524574 +los ||| fanatics , ||| 0.166667 0.191667 1.90631e-06 2.67131e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| fanatics ||| 0.0119048 0.191667 1.90631e-06 2.24e-05 2.718 ||| 0-0 ||| 84 524574 +los ||| far as possible the ||| 0.030303 0.122289 1.90631e-06 2.39695e-09 2.718 ||| 0-3 ||| 33 524574 +los ||| far as the ||| 0.00568182 0.122289 9.53154e-06 2.98834e-06 2.718 ||| 0-2 ||| 880 524574 +los ||| far as ||| 0.00018997 0.0009297 1.90631e-06 2.43587e-07 2.718 ||| 0-1 ||| 5264 524574 +los ||| far the ||| 0.0172414 0.122289 9.53154e-06 0.000292848 2.718 ||| 0-1 ||| 290 524574 +los ||| far we ||| 0.0169492 0.0014565 1.90631e-06 5.947e-07 2.718 ||| 0-1 ||| 59 524574 +los ||| fare ||| 0.0140845 0.0097087 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 71 524574 +los ||| fares ||| 0.00657895 0.0714286 1.90631e-06 1.75e-05 2.718 ||| 0-0 ||| 152 524574 +los ||| farm ||| 0.003996 0.0240192 7.62523e-06 2.92e-05 2.718 ||| 0-0 ||| 1001 524574 +los ||| farm-gate ||| 0.5 0.272727 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| farmed fish ||| 0.0333333 0.0797101 1.90631e-06 3.5417e-10 2.718 ||| 0-0 ||| 30 524574 +los ||| farmed ||| 0.0117647 0.0797101 1.90631e-06 1.07e-05 2.718 ||| 0-0 ||| 85 524574 +los ||| farmers ' ||| 0.0186335 0.380089 5.71893e-06 1.68685e-05 2.718 ||| 0-0 ||| 161 524574 +los ||| farmers , ||| 0.00139276 0.380089 1.90631e-06 0.000585648 2.718 ||| 0-0 ||| 718 524574 +los ||| farmers and ||| 0.00112613 0.380089 1.90631e-06 6.15134e-05 2.718 ||| 0-0 ||| 888 524574 +los ||| farmers from ||| 0.0121951 0.380089 1.90631e-06 7.90851e-06 2.718 ||| 0-0 ||| 82 524574 +los ||| farmers if we vote for this supplementary ||| 0.333333 0.380089 1.90631e-06 3.2751e-21 2.718 ||| 0-0 ||| 3 524574 +los ||| farmers if we vote for this ||| 0.333333 0.380089 1.90631e-06 3.639e-16 2.718 ||| 0-0 ||| 3 524574 +los ||| farmers if we vote for ||| 0.333333 0.380089 1.90631e-06 5.63191e-14 2.718 ||| 0-0 ||| 3 524574 +los ||| farmers if we vote ||| 0.333333 0.380089 1.90631e-06 7.32777e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| farmers if we ||| 0.25 0.380089 1.90631e-06 4.65847e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| farmers if ||| 0.1 0.380089 1.90631e-06 4.10355e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| farmers in ||| 0.00179211 0.190108 1.90631e-06 6.78195e-07 2.718 ||| 0-0 0-1 ||| 558 524574 +los ||| farmers might be achieved ||| 1 0.380089 1.90631e-06 5.71763e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| farmers might be ||| 1 0.380089 1.90631e-06 3.41759e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| farmers might ||| 0.333333 0.380089 1.90631e-06 1.88579e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| farmers of wanting ||| 0.25 0.380089 1.90631e-06 3.95125e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| farmers of ||| 0.0142857 0.380089 1.90631e-06 0.000266976 2.718 ||| 0-0 ||| 70 524574 +los ||| farmers to ||| 0.00378788 0.380089 1.90631e-06 0.000436374 2.718 ||| 0-0 ||| 264 524574 +los ||| farmers will not ||| 0.333333 0.380089 1.90631e-06 1.45049e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| farmers will ||| 0.0222222 0.380089 1.90631e-06 4.24852e-05 2.718 ||| 0-0 ||| 45 524574 +los ||| farmers with ||| 0.0147059 0.190416 1.90631e-06 1.13638e-06 2.718 ||| 0-0 0-1 ||| 68 524574 +los ||| farmers ||| 0.00431688 0.380089 7.05334e-05 0.0049109 2.718 ||| 0-0 ||| 8571 524574 +los ||| farming ||| 0.000368868 0.0110426 1.90631e-06 4.18e-05 2.718 ||| 0-0 ||| 2711 524574 +los ||| fat profits ||| 0.166667 0.159219 1.90631e-06 8.92e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| fatal ||| 0.00257069 0.0046729 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 389 524574 +los ||| fathers , ||| 0.027027 0.242089 1.90631e-06 1.77451e-05 2.718 ||| 0-0 ||| 37 524574 +los ||| fathers raising ||| 0.25 0.242089 1.90631e-06 3.4224e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| fathers ||| 0.00425532 0.242089 3.81262e-06 0.0001488 2.718 ||| 0-0 ||| 470 524574 +los ||| fatty acids ||| 0.047619 0.0307692 1.90631e-06 1.33e-12 2.718 ||| 0-0 ||| 21 524574 +los ||| fatty ||| 0.04 0.0307692 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 25 524574 +los ||| favour of a ||| 0.00111982 0.0019787 1.90631e-06 4.7429e-08 2.718 ||| 0-1 ||| 893 524574 +los ||| favour of the burden on the ||| 1 0.122289 1.90631e-06 1.348e-13 2.718 ||| 0-5 ||| 1 524574 +los ||| favour of the ||| 0.00107836 0.122289 1.14379e-05 7.54395e-06 2.718 ||| 0-2 ||| 5564 524574 +los ||| favour of ||| 0.000138055 0.0019787 3.81262e-06 1.07001e-06 2.718 ||| 0-1 ||| 14487 524574 +los ||| favour the ||| 0.00581395 0.122289 1.90631e-06 0.000138767 2.718 ||| 0-1 ||| 172 524574 +los ||| favoured the ||| 0.047619 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-1 ||| 21 524574 +los ||| favouring the ||| 0.0166667 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 60 524574 +los ||| fear their neighbours or ||| 1 0.0245424 1.90631e-06 1.67346e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| fear their neighbours ||| 1 0.0245424 1.90631e-06 1.46371e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| fears are backed up ||| 1 0.0975965 1.90631e-06 7.75395e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| fears are backed ||| 1 0.0975965 1.90631e-06 2.27355e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| fears are ||| 0.025641 0.0975965 1.90631e-06 1.977e-06 2.718 ||| 0-0 ||| 39 524574 +los ||| fears ||| 0.00234192 0.0975965 5.71893e-06 0.0001303 2.718 ||| 0-0 ||| 1281 524574 +los ||| feed costs ||| 0.0769231 0.0838347 1.90631e-06 1.52806e-08 2.718 ||| 0-0 ||| 13 524574 +los ||| feed ||| 0.00645161 0.0838347 2.66883e-05 0.0002032 2.718 ||| 0-0 ||| 2170 524574 +los ||| feedback ||| 0.00502513 0.0390625 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 199 524574 +los ||| feel that the ||| 0.00326797 0.122289 1.90631e-06 1.22018e-06 2.718 ||| 0-2 ||| 306 524574 +los ||| feel the ||| 0.015873 0.122289 5.71893e-06 7.25365e-05 2.718 ||| 0-1 ||| 189 524574 +los ||| fees ||| 0.00397614 0.0569211 3.81262e-06 4.28e-05 2.718 ||| 0-0 ||| 503 524574 +los ||| fellow MEP ’ s ||| 0.5 0.0139748 1.90631e-06 7.7936e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| fellow MEP ’ ||| 0.5 0.0139748 1.90631e-06 4.09694e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| fellow MEPs ||| 0.00728155 0.152546 5.71893e-06 1.02903e-07 2.718 ||| 0-1 ||| 412 524574 +los ||| fellow Members ||| 0.000395101 0.168879 1.90631e-06 3.17928e-07 2.718 ||| 0-1 ||| 2531 524574 +los ||| fellow citizens ' ||| 0.333333 0.16901 1.90631e-06 5.30612e-09 2.718 ||| 0-1 0-2 ||| 3 524574 +los ||| fellow ||| 0.00514019 0.003778 2.09694e-05 2.53e-05 2.718 ||| 0-0 ||| 2140 524574 +los ||| ferries ||| 0.0178571 0.257353 5.71893e-06 6.81e-05 2.718 ||| 0-0 ||| 168 524574 +los ||| fertiliser but ||| 0.5 0.128205 1.90631e-06 9.97764e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| fertiliser ||| 0.0105263 0.128205 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 95 524574 +los ||| fervent supporters ||| 0.4 0.171558 3.81262e-06 3.695e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| few attempts ||| 0.333333 0.155728 1.90631e-06 6.83495e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| few staff ||| 0.25 0.0154407 1.90631e-06 1.2271e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| few ||| 0.000102554 0.0003093 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 9751 524574 +los ||| fewer ||| 0.000568182 0.0005498 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1760 524574 +los ||| fields as ||| 0.0714286 0.0245155 1.90631e-06 3.95334e-08 2.718 ||| 0-0 0-1 ||| 14 524574 +los ||| fields of social security and taxation ||| 1 0.058762 1.90631e-06 5.82502e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| fields ||| 0.000437063 0.0481013 1.90631e-06 0.0001108 2.718 ||| 0-0 ||| 2288 524574 +los ||| fight its ||| 0.5 0.0211371 1.90631e-06 1.17644e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| fight the ||| 0.00440529 0.122289 1.90631e-06 2.36355e-05 2.718 ||| 0-1 ||| 227 524574 +los ||| fighting these , ||| 1 0.0240362 1.90631e-06 7.93565e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| fighting these ||| 0.0833333 0.0240362 1.90631e-06 6.65437e-08 2.718 ||| 0-1 ||| 12 524574 +los ||| fighting ||| 0.000358166 0.0044322 1.90631e-06 2.04e-05 2.718 ||| 0-0 ||| 2792 524574 +los ||| figures ||| 0.00125 0.0060157 9.53154e-06 2.53e-05 2.718 ||| 0-0 ||| 4000 524574 +los ||| files ||| 0.00687285 0.14881 3.81262e-06 4.86e-05 2.718 ||| 0-0 ||| 291 524574 +los ||| fill the ||| 0.00787402 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-1 ||| 127 524574 +los ||| filled ||| 0.00497512 0.0027248 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 201 524574 +los ||| filling the ||| 0.0192308 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-1 ||| 52 524574 +los ||| filter mechanism - the ||| 1 0.122289 1.90631e-06 1.32681e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| final payments . ||| 1 0.273884 1.90631e-06 3.33681e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| final payments ||| 0.166667 0.273884 1.90631e-06 1.10162e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| final stages , the ||| 1 0.122289 1.90631e-06 5.89373e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| finance , ||| 0.00425532 0.0048977 1.90631e-06 1.9677e-06 2.718 ||| 0-0 ||| 235 524574 +los ||| finance and its ||| 1 0.0048977 1.90631e-06 2.94453e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| finance and ||| 0.00431034 0.0048977 1.90631e-06 2.06677e-07 2.718 ||| 0-0 ||| 232 524574 +los ||| finance in ||| 0.04 0.0048977 1.90631e-06 3.53174e-07 2.718 ||| 0-0 ||| 25 524574 +los ||| finance the ||| 0.00282486 0.122289 1.90631e-06 8.02148e-06 2.718 ||| 0-1 ||| 354 524574 +los ||| finance ||| 0.00224366 0.0048977 1.90631e-05 1.65e-05 2.718 ||| 0-0 ||| 4457 524574 +los ||| financial interests , ||| 0.0333333 0.0670116 1.90631e-06 1.48386e-08 2.718 ||| 0-1 ||| 30 524574 +los ||| financial interests ||| 0.00140056 0.0670116 1.90631e-06 1.24428e-07 2.718 ||| 0-1 ||| 714 524574 +los ||| financial organisations demanded it ||| 1 0.0009471 1.90631e-06 1.64757e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| financial organisations demanded ||| 1 0.0009471 1.90631e-06 9.26478e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| financial organisations ||| 0.0555556 0.0009471 1.90631e-06 1.02942e-09 2.718 ||| 0-0 ||| 18 524574 +los ||| financial resources available ||| 0.030303 0.21958 1.90631e-06 1.88131e-10 2.718 ||| 0-1 ||| 33 524574 +los ||| financial resources ||| 0.000665336 0.21958 1.90631e-06 5.91419e-07 2.718 ||| 0-1 ||| 1503 524574 +los ||| financial ||| 0.000445262 0.0009471 2.85946e-05 3.01e-05 2.718 ||| 0-0 ||| 33688 524574 +los ||| financing the ||| 0.00340136 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-1 ||| 294 524574 +los ||| find among ||| 0.333333 0.0202203 1.90631e-06 7.25056e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| find its way ||| 0.0322581 0.0211371 1.90631e-06 1.53215e-09 2.718 ||| 0-1 ||| 31 524574 +los ||| find its ||| 0.030303 0.0211371 3.81262e-06 7.10775e-07 2.718 ||| 0-1 ||| 66 524574 +los ||| find out the ||| 0.0263158 0.122289 1.90631e-06 5.46979e-07 2.718 ||| 0-2 ||| 38 524574 +los ||| find that the ||| 0.0153846 0.122289 1.90631e-06 2.40212e-06 2.718 ||| 0-2 ||| 65 524574 +los ||| find the best country in which they ||| 0.5 0.122289 1.90631e-06 4.22432e-18 2.718 ||| 0-1 ||| 2 524574 +los ||| find the best country in which ||| 0.5 0.122289 1.90631e-06 1.29422e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| find the best country in ||| 0.5 0.122289 1.90631e-06 1.52357e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| find the best country ||| 0.5 0.122289 1.90631e-06 7.11801e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| find the best ||| 0.0136986 0.122289 1.90631e-06 1.97777e-08 2.718 ||| 0-1 ||| 73 524574 +los ||| find the information ||| 0.142857 0.122289 1.90631e-06 2.36333e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| find the ||| 0.00556793 0.122289 9.53154e-06 0.0001428 2.718 ||| 0-1 ||| 898 524574 +los ||| find their way ||| 0.0149254 0.0236713 1.90631e-06 1.64165e-09 2.718 ||| 0-1 ||| 67 524574 +los ||| find their ||| 0.00793651 0.0236713 1.90631e-06 7.61575e-07 2.718 ||| 0-1 ||| 126 524574 +los ||| find ways to combine both ||| 1 0.0352574 1.90631e-06 2.69836e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| finding the ||| 0.0136986 0.122289 3.81262e-06 2.28634e-05 2.718 ||| 0-1 ||| 146 524574 +los ||| findings -and ||| 0.333333 0.0487365 1.90631e-06 2.1e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| findings in ||| 0.0526316 0.0487365 1.90631e-06 1.12374e-06 2.718 ||| 0-0 ||| 19 524574 +los ||| findings ||| 0.00461681 0.0487365 9.53154e-06 5.25e-05 2.718 ||| 0-0 ||| 1083 524574 +los ||| fine , the ||| 0.166667 0.122289 1.90631e-06 1.65742e-06 2.718 ||| 0-2 ||| 6 524574 +los ||| fine elements ||| 1 0.0063694 1.90631e-06 5.1976e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| fine line ||| 0.0555556 0.0063694 1.90631e-06 4.29824e-09 2.718 ||| 0-0 ||| 18 524574 +los ||| fine record ||| 0.333333 0.0063694 1.90631e-06 8.1468e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| fine ||| 0.00271887 0.0063694 9.53154e-06 1.46e-05 2.718 ||| 0-0 ||| 1839 524574 +los ||| finger at the ||| 0.125 0.122289 1.90631e-06 3.16133e-08 2.718 ||| 0-2 ||| 8 524574 +los ||| fingerprint ||| 0.02 0.0186916 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 50 524574 +los ||| fire up the ||| 1 0.122289 1.90631e-06 2.63332e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| fire ||| 0.00579374 0.0731529 9.53154e-06 9.72e-05 2.718 ||| 0-0 ||| 863 524574 +los ||| fires , ||| 0.00833333 0.234127 1.90631e-06 4.10475e-05 2.718 ||| 0-0 ||| 120 524574 +los ||| fires proven to have ||| 0.333333 0.234127 1.90631e-06 5.12107e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| fires proven to ||| 0.25 0.234127 1.90631e-06 4.2819e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| fires proven ||| 0.4 0.234127 3.81262e-06 4.8188e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| fires ||| 0.00424088 0.234127 9.53154e-06 0.0003442 2.718 ||| 0-0 ||| 1179 524574 +los ||| first have fulfilled their relative ||| 1 0.0236713 1.90631e-06 1.52464e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| first have fulfilled their ||| 1 0.0236713 1.90631e-06 1.69405e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| first of all take into account the ||| 1 0.122289 1.90631e-06 2.81952e-17 2.718 ||| 0-6 ||| 1 524574 +los ||| first step and the ||| 1 0.122289 1.90631e-06 4.26696e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| firstly , the ||| 0.000726216 0.122289 1.90631e-06 2.57821e-06 2.718 ||| 0-2 ||| 1377 524574 +los ||| firstly , there were the ||| 1 0.0416781 1.90631e-06 2.74773e-15 2.718 ||| 0-2 0-3 0-4 ||| 1 524574 +los ||| firstly , there ||| 0.00840336 0.0026918 1.90631e-06 2.20884e-09 2.718 ||| 0-2 ||| 119 524574 +los ||| firstly that the ||| 0.0625 0.122289 1.90631e-06 3.63673e-07 2.718 ||| 0-2 ||| 16 524574 +los ||| fiscal reform and the fight against poverty ||| 1 0.122289 1.90631e-06 2.36156e-25 2.718 ||| 0-3 ||| 1 524574 +los ||| fiscal reform and the fight against ||| 1 0.122289 1.90631e-06 1.56395e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| fiscal reform and the fight ||| 1 0.122289 1.90631e-06 6.55468e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| fiscal reform and the ||| 1 0.122289 1.90631e-06 1.1896e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| fiscal ||| 0.00127497 0.0034803 5.71893e-06 8.8e-06 2.718 ||| 0-0 ||| 2353 524574 +los ||| fish auctions ||| 0.142857 0.0906807 1.90631e-06 2.457e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| fish he had ||| 1 0.0906807 1.90631e-06 3.07451e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| fish he ||| 1 0.0906807 1.90631e-06 3.06318e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| fish ||| 0.0340186 0.0906807 0.000264977 0.000351 2.718 ||| 0-0 ||| 4086 524574 +los ||| fisheries ||| 0.000402576 0.002378 7.62523e-06 1.65e-05 2.718 ||| 0-0 ||| 9936 524574 +los ||| fishermen ||| 0.00244499 0.347881 1.33442e-05 0.0013485 2.718 ||| 0-0 ||| 2863 524574 +los ||| fishery ||| 0.00393701 0.0280957 5.71893e-06 2.63e-05 2.718 ||| 0-0 ||| 762 524574 +los ||| fishing can continue ||| 0.333333 0.0062813 1.90631e-06 3.95057e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| fishing can ||| 0.166667 0.0062813 1.90631e-06 1.70725e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| fishing ||| 0.00160411 0.0062813 2.85946e-05 5.74e-05 2.718 ||| 0-0 ||| 9351 524574 +los ||| five times these ||| 1 0.0240362 1.90631e-06 4.89864e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| five years ' ||| 0.0196078 0.0444479 1.90631e-06 1.79255e-11 2.718 ||| 0-2 ||| 51 524574 +los ||| fix the ||| 0.0181818 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-1 ||| 55 524574 +los ||| fixed ||| 0.00505561 0.0072072 9.53154e-06 7.8e-06 2.718 ||| 0-0 ||| 989 524574 +los ||| fixing the principles governing the organisation of ||| 1 0.122289 1.90631e-06 1.36195e-22 2.718 ||| 0-1 ||| 1 524574 +los ||| fixing the principles governing the organisation ||| 1 0.122289 1.90631e-06 2.50524e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| fixing the principles governing the ||| 1 0.122289 1.90631e-06 7.41195e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| fixing the principles governing ||| 0.5 0.122289 1.90631e-06 1.20732e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| fixing the principles ||| 0.5 0.122289 1.90631e-06 6.2233e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| fixing the ||| 0.02 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-1 ||| 50 524574 +los ||| flabby businessmen ||| 0.166667 0.218045 1.90631e-06 2.256e-11 2.718 ||| 0-1 ||| 6 524574 +los ||| flags ||| 0.00811359 0.137441 7.62523e-06 8.46e-05 2.718 ||| 0-0 ||| 493 524574 +los ||| flawed . the ||| 0.5 0.122289 1.90631e-06 2.85848e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| fled their homes ||| 0.125 0.0236713 1.90631e-06 1.6174e-14 2.718 ||| 0-1 ||| 8 524574 +los ||| fled their ||| 0.0714286 0.0236713 1.90631e-06 1.60139e-09 2.718 ||| 0-1 ||| 14 524574 +los ||| fleshed out ||| 0.0263158 0.000641 1.90631e-06 1.045e-10 2.718 ||| 0-1 ||| 38 524574 +los ||| flexible ||| 0.000655953 0.0006787 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 3049 524574 +los ||| flight ||| 0.010296 0.0577819 1.52505e-05 6.03e-05 2.718 ||| 0-0 ||| 777 524574 +los ||| flights ||| 0.00650406 0.309587 1.52505e-05 0.0004521 2.718 ||| 0-0 ||| 1230 524574 +los ||| flood protection ||| 0.111111 0.0484928 1.90631e-06 3.654e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| flood ||| 0.00533333 0.0484928 3.81262e-06 3.6e-05 2.718 ||| 0-0 ||| 375 524574 +los ||| flout the ||| 0.0333333 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 30 524574 +los ||| flow into the ||| 0.166667 0.122289 1.90631e-06 7.92737e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| flows can be directed and on which ||| 1 0.335278 1.90631e-06 7.38111e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| flows can be directed and on ||| 1 0.335278 1.90631e-06 8.68918e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| flows can be directed and ||| 1 0.335278 1.90631e-06 1.29864e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| flows can be directed ||| 1 0.335278 1.90631e-06 1.03676e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| flows can be ||| 0.5 0.335278 1.90631e-06 3.31234e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| flows can ||| 1 0.335278 1.90631e-06 1.82771e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| flows ||| 0.00584795 0.335278 1.52505e-05 0.0006145 2.718 ||| 0-0 ||| 1368 524574 +los ||| fluctuations act ||| 0.125 0.0754717 1.90631e-06 6.60911e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| fluctuations ||| 0.00946372 0.0754717 5.71893e-06 3.89e-05 2.718 ||| 0-0 ||| 317 524574 +los ||| flying over the ||| 0.166667 0.122289 1.90631e-06 3.20141e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| flying the flag ||| 0.0243902 0.122289 1.90631e-06 4.5212e-11 2.718 ||| 0-1 ||| 41 524574 +los ||| flying the ||| 0.0166667 0.122289 1.90631e-06 6.64882e-06 2.718 ||| 0-1 ||| 60 524574 +los ||| focus the ||| 0.0266667 0.122289 3.81262e-06 3.32012e-05 2.718 ||| 0-1 ||| 75 524574 +los ||| focus ||| 0.000185391 0.0001293 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 5394 524574 +los ||| follow the ||| 0.00404313 0.122289 5.71893e-06 4.24667e-05 2.718 ||| 0-1 ||| 742 524574 +los ||| followed by cuts ||| 0.2 0.104656 1.90631e-06 8.29627e-11 2.718 ||| 0-2 ||| 5 524574 +los ||| followed by the ||| 0.00409836 0.122289 1.90631e-06 1.61248e-07 2.718 ||| 0-2 ||| 244 524574 +los ||| followed the ||| 0.00396825 0.122289 1.90631e-06 3.07133e-05 2.718 ||| 0-1 ||| 252 524574 +los ||| followers ||| 0.0104167 0.163636 1.90631e-06 1.75e-05 2.718 ||| 0-0 ||| 96 524574 +los ||| following the last ||| 0.0666667 0.122289 1.90631e-06 1.19728e-08 2.718 ||| 0-1 ||| 15 524574 +los ||| following the same line ||| 0.25 0.122289 1.90631e-06 1.29872e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| following the same ||| 0.047619 0.122289 1.90631e-06 4.41141e-08 2.718 ||| 0-1 ||| 21 524574 +los ||| following the ||| 0.00133097 0.122289 1.14379e-05 5.48206e-05 2.718 ||| 0-1 ||| 4508 524574 +los ||| following their progress ||| 1 0.0236713 1.90631e-06 3.85049e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| following their ||| 0.0222222 0.0236713 1.90631e-06 2.92368e-07 2.718 ||| 0-1 ||| 45 524574 +los ||| follows : the ||| 0.0204082 0.122289 1.90631e-06 7.64259e-09 2.718 ||| 0-2 ||| 49 524574 +los ||| follows ||| 0.000975134 0.0237332 3.81262e-06 7.19e-05 2.718 ||| 0-0 ||| 2051 524574 +los ||| fond of ||| 0.0344828 0.0111111 1.90631e-06 5.4364e-08 2.718 ||| 0-0 ||| 29 524574 +los ||| fond ||| 0.0232558 0.0111111 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 43 524574 +los ||| food aid , and we ||| 1 0.123536 1.90631e-06 4.88138e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| food aid , and ||| 0.142857 0.123536 1.90631e-06 4.29991e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| food aid , ||| 0.0151515 0.123536 1.90631e-06 3.43281e-08 2.718 ||| 0-0 ||| 66 524574 +los ||| food aid ||| 0.0016835 0.123536 1.90631e-06 2.87855e-07 2.718 ||| 0-0 ||| 594 524574 +los ||| food and ||| 0.0010627 0.123536 1.90631e-06 2.76083e-05 2.718 ||| 0-0 ||| 941 524574 +los ||| food for thought ||| 0.0107527 0.123536 1.90631e-06 1.40772e-09 2.718 ||| 0-0 ||| 93 524574 +los ||| food for ||| 0.00617284 0.123536 1.90631e-06 1.69401e-05 2.718 ||| 0-0 ||| 162 524574 +los ||| food product ||| 0.0185185 0.123536 1.90631e-06 1.34009e-07 2.718 ||| 0-0 ||| 54 524574 +los ||| food products ||| 0.00263852 0.245259 1.90631e-06 2.70227e-07 2.718 ||| 0-1 ||| 379 524574 +los ||| food safety ||| 0.000618812 0.123536 1.90631e-06 1.11748e-07 2.718 ||| 0-0 ||| 1616 524574 +los ||| food should only ever be ||| 0.5 0.123536 1.90631e-06 3.70187e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| food should only ever ||| 0.5 0.123536 1.90631e-06 2.04265e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| food should only ||| 0.5 0.123536 1.90631e-06 1.08709e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| food should ||| 0.0588235 0.123536 1.90631e-06 9.76637e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| food supplies ||| 0.0116279 0.123536 1.90631e-06 4.5184e-08 2.718 ||| 0-0 ||| 86 524574 +los ||| food ||| 0.0123298 0.123536 0.000274508 0.0022041 2.718 ||| 0-0 ||| 11679 524574 +los ||| food-safety standards ||| 0.0833333 0.0495175 1.90631e-06 3.3328e-10 2.718 ||| 0-1 ||| 12 524574 +los ||| foods and an embargo on imports of ||| 1 0.2715 1.90631e-06 2.44293e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| foods and an embargo on imports ||| 1 0.2715 1.90631e-06 4.49366e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| foods and an embargo on ||| 1 0.2715 1.90631e-06 4.0122e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| foods and an embargo ||| 1 0.2715 1.90631e-06 5.99641e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| foods and an ||| 1 0.2715 1.90631e-06 2.06773e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| foods and ||| 0.0188679 0.2715 1.90631e-06 4.65212e-06 2.718 ||| 0-0 ||| 53 524574 +los ||| foods ||| 0.00717949 0.2715 1.33442e-05 0.0003714 2.718 ||| 0-0 ||| 975 524574 +los ||| fool the ||| 0.111111 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| foot the bill for a series ||| 1 0.122289 1.90631e-06 2.24945e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| foot the bill for a ||| 1 0.122289 1.90631e-06 5.63773e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| foot the bill for ||| 0.0294118 0.122289 1.90631e-06 1.27188e-12 2.718 ||| 0-1 ||| 34 524574 +los ||| foot the bill ||| 0.0114943 0.122289 1.90631e-06 1.65487e-10 2.718 ||| 0-1 ||| 87 524574 +los ||| foot the ||| 0.0337079 0.122289 5.71893e-06 9.56573e-06 2.718 ||| 0-1 ||| 89 524574 +los ||| football ||| 0.00643974 0.0399485 1.33442e-05 6.03e-05 2.718 ||| 0-0 ||| 1087 524574 +los ||| footballers ' ||| 1 0.258621 3.81262e-06 5.01495e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| footballers ||| 0.025 0.258621 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 40 524574 +los ||| footholds in the ||| 1 0.122289 1.90631e-06 3.67264e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| footing in the ||| 0.2 0.122289 1.90631e-06 1.98322e-07 2.718 ||| 0-2 ||| 5 524574 +los ||| footing the bill ||| 0.037037 0.122289 1.90631e-06 1.60292e-10 2.718 ||| 0-1 ||| 27 524574 +los ||| footing the ||| 0.037037 0.122289 1.90631e-06 9.26546e-06 2.718 ||| 0-1 ||| 27 524574 +los ||| for Albania to bring the ||| 1 0.122289 1.90631e-06 7.56922e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| for Culture in the near future . ||| 1 0.122289 1.90631e-06 1.20174e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| for Culture in the near future ||| 1 0.122289 1.90631e-06 3.96743e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| for Culture in the near ||| 1 0.122289 1.90631e-06 1.49376e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| for Culture in the ||| 1 0.122289 1.90631e-06 3.81062e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| for Workers , ||| 1 0.251256 1.90631e-06 1.33634e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| for Workers ||| 0.2 0.251256 1.90631e-06 1.12058e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| for a number of ||| 0.0025641 0.001757 1.90631e-06 6.3969e-11 2.718 ||| 0-0 0-3 ||| 390 524574 +los ||| for a number ||| 0.00223214 0.0015353 1.90631e-06 1.934e-08 2.718 ||| 0-0 ||| 448 524574 +los ||| for a person ' s records to ||| 0.5 0.148855 1.90631e-06 2.89927e-18 2.718 ||| 0-5 ||| 2 524574 +los ||| for a person ' s records ||| 0.5 0.148855 1.90631e-06 3.26281e-17 2.718 ||| 0-5 ||| 2 524574 +los ||| for a right-wing dictator ||| 1 0.0057554 1.90631e-06 4.25162e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| for a right-wing ||| 1 0.0057554 1.90631e-06 1.32863e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| for a ||| 7.32198e-05 0.0015353 3.81262e-06 3.90865e-05 2.718 ||| 0-0 ||| 27315 524574 +los ||| for all Europeans . they must be ||| 1 0.0177928 1.90631e-06 8.63997e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| for all Europeans . they must ||| 1 0.0177928 1.90631e-06 4.76743e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| for all Europeans . they ||| 1 0.0177928 1.90631e-06 3.08452e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| for all Europeans . ||| 0.0333333 0.0177928 1.90631e-06 9.45012e-13 2.718 ||| 0-1 ||| 30 524574 +los ||| for all Europeans ||| 0.012987 0.0177928 1.90631e-06 3.11988e-10 2.718 ||| 0-1 ||| 77 524574 +los ||| for all the institutions is one of ||| 1 0.122289 1.90631e-06 5.80828e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| for all the institutions is one ||| 1 0.122289 1.90631e-06 1.06841e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| for all the institutions is ||| 1 0.122289 1.90631e-06 2.56335e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| for all the institutions ||| 0.0277778 0.122289 1.90631e-06 8.17889e-10 2.718 ||| 0-2 ||| 36 524574 +los ||| for all the ||| 0.00152905 0.0472058 3.81262e-06 1.01686e-06 2.718 ||| 0-0 0-1 0-2 ||| 1308 524574 +los ||| for all their ||| 0.0123457 0.0236713 1.90631e-06 8.30847e-08 2.718 ||| 0-2 ||| 81 524574 +los ||| for all ||| 0.000332963 0.0177928 5.71893e-06 2.06615e-05 2.718 ||| 0-1 ||| 9010 524574 +los ||| for animals ||| 0.00598802 0.13776 1.90631e-06 1.56211e-06 2.718 ||| 0-0 0-1 ||| 167 524574 +los ||| for any ||| 0.00191571 0.0178119 3.81262e-06 7.09851e-06 2.718 ||| 0-1 ||| 1044 524574 +los ||| for anybody ||| 0.047619 0.0206825 1.90631e-06 1.49103e-07 2.718 ||| 0-1 ||| 21 524574 +los ||| for as ||| 0.00502513 0.0015353 1.90631e-06 8.99824e-06 2.718 ||| 0-0 ||| 199 524574 +los ||| for being ||| 0.0018315 0.0015353 1.90631e-06 2.50943e-06 2.718 ||| 0-0 ||| 546 524574 +los ||| for both the ||| 0.00480769 0.0787733 1.90631e-06 3.94894e-06 2.718 ||| 0-1 0-2 ||| 208 524574 +los ||| for both ||| 0.00159236 0.0183964 3.81262e-06 1.05622e-06 2.718 ||| 0-0 0-1 ||| 1256 524574 +los ||| for by the ||| 0.0267857 0.122289 5.71893e-06 1.73087e-05 2.718 ||| 0-2 ||| 112 524574 +los ||| for by ||| 0.00337838 0.0015353 1.90631e-06 4.62954e-06 2.718 ||| 0-0 ||| 296 524574 +los ||| for certificates ||| 0.2 0.0997437 1.90631e-06 9.9467e-08 2.718 ||| 0-0 0-1 ||| 5 524574 +los ||| for courses ||| 0.166667 0.129323 1.90631e-06 6.42525e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| for deceiving them and ||| 0.333333 0.038218 1.90631e-06 1.35628e-13 2.718 ||| 0-2 ||| 3 524574 +los ||| for deceiving them ||| 0.333333 0.038218 1.90631e-06 1.08278e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| for delivery , ||| 1 0.0292621 1.90631e-06 2.05309e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| for delivery ||| 0.0666667 0.0292621 1.90631e-06 1.7216e-07 2.718 ||| 0-1 ||| 15 524574 +los ||| for due ||| 0.2 0.0019544 1.90631e-06 2.14277e-08 2.718 ||| 0-0 0-1 ||| 5 524574 +los ||| for each ||| 0.00187793 0.0497499 3.81262e-06 6.76265e-06 2.718 ||| 0-1 ||| 1065 524574 +los ||| for every one ||| 0.047619 0.144232 1.90631e-06 1.04556e-07 2.718 ||| 0-1 ||| 21 524574 +los ||| for every ||| 0.00176991 0.144232 1.90631e-06 2.50854e-05 2.718 ||| 0-1 ||| 565 524574 +los ||| for example , the ||| 0.00121877 0.122289 3.81262e-06 1.1445e-07 2.718 ||| 0-3 ||| 1641 524574 +los ||| for example , ||| 7.20617e-05 0.0015353 1.90631e-06 3.06117e-08 2.718 ||| 0-0 ||| 13877 524574 +los ||| for example ||| 9.80056e-05 0.0015353 3.81262e-06 2.56692e-07 2.718 ||| 0-0 ||| 20407 524574 +los ||| for fish ||| 0.0153846 0.0906807 1.90631e-06 2.69768e-06 2.718 ||| 0-1 ||| 65 524574 +los ||| for food ||| 0.00377358 0.123536 1.90631e-06 1.69401e-05 2.718 ||| 0-1 ||| 265 524574 +los ||| for her ||| 0.000494315 0.0015353 1.90631e-06 2.39938e-07 2.718 ||| 0-0 ||| 2023 524574 +los ||| for his ||| 0.000654593 0.0058818 5.71893e-06 1.33039e-06 2.718 ||| 0-1 ||| 4583 524574 +los ||| for human ||| 0.00689655 0.319795 1.90631e-06 0.000149913 2.718 ||| 0-1 ||| 145 524574 +los ||| for in the Treaties but ||| 1 0.122289 1.90631e-06 3.80981e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| for in the Treaties ||| 0.2 0.122289 1.90631e-06 5.57479e-10 2.718 ||| 0-2 ||| 5 524574 +los ||| for in the ||| 0.0359712 0.122289 9.53154e-06 7.0567e-05 2.718 ||| 0-2 ||| 139 524574 +los ||| for in ||| 0.00290698 0.0015353 1.90631e-06 1.88745e-05 2.718 ||| 0-0 ||| 344 524574 +los ||| for international ||| 0.0232558 0.00137465 1.90631e-06 3.0863e-08 2.718 ||| 0-0 0-1 ||| 43 524574 +los ||| for it ||| 0.00120579 0.0015353 5.71893e-06 1.56812e-05 2.718 ||| 0-0 ||| 2488 524574 +los ||| for its ||| 0.000526039 0.0211371 3.81262e-06 1.64097e-05 2.718 ||| 0-1 ||| 3802 524574 +los ||| for local ||| 0.037037 0.0190862 1.90631e-06 1.44184e-06 2.718 ||| 0-1 ||| 27 524574 +los ||| for many years ||| 0.000890472 0.0015353 1.90631e-06 5.15233e-11 2.718 ||| 0-0 ||| 1123 524574 +los ||| for many ||| 0.000420168 0.0015353 1.90631e-06 3.02722e-07 2.718 ||| 0-0 ||| 2380 524574 +los ||| for me , the ||| 0.0116279 0.122289 1.90631e-06 2.36723e-07 2.718 ||| 0-3 ||| 86 524574 +los ||| for men and women ||| 0.00408163 0.0015353 1.90631e-06 5.57679e-14 2.718 ||| 0-0 ||| 245 524574 +los ||| for men and ||| 0.00769231 0.0015353 3.81262e-06 4.69427e-10 2.718 ||| 0-0 ||| 260 524574 +los ||| for men ||| 0.00793651 0.21664 5.71893e-06 1.22771e-05 2.718 ||| 0-1 ||| 378 524574 +los ||| for other purposes ||| 0.00980392 0.0038488 1.90631e-06 2.638e-10 2.718 ||| 0-1 ||| 102 524574 +los ||| for other ||| 0.00093633 0.0038488 1.90631e-06 2.18197e-06 2.718 ||| 0-1 ||| 1068 524574 +los ||| for over 20 years ||| 0.0909091 0.0015353 1.90631e-06 7.80458e-16 2.718 ||| 0-0 ||| 11 524574 +los ||| for over 20 ||| 0.0625 0.0015353 1.90631e-06 4.58554e-12 2.718 ||| 0-0 ||| 16 524574 +los ||| for over ||| 0.00152439 0.0015353 1.90631e-06 4.24587e-07 2.718 ||| 0-0 ||| 656 524574 +los ||| for payment ||| 0.0131579 0.0504821 1.90631e-06 1.33039e-06 2.718 ||| 0-1 ||| 76 524574 +los ||| for people ' ||| 0.333333 0.0444479 1.90631e-06 3.59841e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| for people ||| 0.000706714 0.0894672 1.90631e-06 6.05272e-05 2.718 ||| 0-1 ||| 1415 524574 +los ||| for planting ||| 0.166667 0.199052 1.90631e-06 3.13577e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| for previous ||| 0.111111 0.00744945 1.90631e-06 8.5711e-08 2.718 ||| 0-0 0-1 ||| 9 524574 +los ||| for publishing the ||| 0.166667 0.122289 1.90631e-06 1.05499e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| for reducing the ||| 0.0117647 0.122289 1.90631e-06 8.76957e-08 2.718 ||| 0-2 ||| 85 524574 +los ||| for so ||| 0.00483092 0.0015353 1.90631e-06 2.00142e-06 2.718 ||| 0-0 ||| 207 524574 +los ||| for studying ||| 0.0769231 0.0015353 1.90631e-06 3.17448e-09 2.718 ||| 0-0 ||| 13 524574 +los ||| for such ||| 0.000896861 0.0015353 1.90631e-06 1.82436e-06 2.718 ||| 0-0 ||| 1115 524574 +los ||| for tenders will be issued with ||| 1 0.0308642 1.90631e-06 4.62654e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| for tenders will be issued ||| 1 0.0308642 1.90631e-06 7.23519e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| for tenders will be ||| 1 0.0308642 1.90631e-06 1.16885e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| for tenders will ||| 1 0.0308642 1.90631e-06 6.44958e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| for tenders ||| 0.05 0.0308642 1.90631e-06 7.45513e-08 2.718 ||| 0-1 ||| 20 524574 +los ||| for that , we ||| 0.166667 0.0015353 1.90631e-06 2.00815e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| for that , ||| 0.00497512 0.0015353 1.90631e-06 1.76894e-06 2.718 ||| 0-0 ||| 201 524574 +los ||| for that matter , would those ||| 0.5 0.284705 1.90631e-06 1.56751e-12 2.718 ||| 0-5 ||| 2 524574 +los ||| for that matter those ||| 1 0.284705 1.90631e-06 2.23972e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| for that reason , the ||| 0.00943396 0.122289 1.90631e-06 1.54693e-09 2.718 ||| 0-4 ||| 106 524574 +los ||| for that ||| 0.000430571 0.0015353 3.81262e-06 1.48333e-05 2.718 ||| 0-0 ||| 4645 524574 +los ||| for the Appendix ||| 0.0833333 0.122289 1.90631e-06 1.31873e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| for the Luxemburgish language ||| 1 0.122289 1.90631e-06 6.17166e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| for the Luxemburgish ||| 1 0.122289 1.90631e-06 1.31873e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| for the adoption ||| 0.00448431 0.122289 1.90631e-06 1.51984e-07 2.718 ||| 0-1 ||| 223 524574 +los ||| for the benefit ||| 0.00106496 0.122289 1.90631e-06 4.34192e-07 2.718 ||| 0-1 ||| 939 524574 +los ||| for the conference ||| 0.025641 0.122289 1.90631e-06 5.80242e-08 2.718 ||| 0-1 ||| 39 524574 +los ||| for the cooperation ||| 0.0105263 0.122289 1.90631e-06 3.03638e-07 2.718 ||| 0-1 ||| 95 524574 +los ||| for the different ||| 0.0140845 0.122289 1.90631e-06 7.25962e-07 2.718 ||| 0-1 ||| 71 524574 +los ||| for the first ||| 0.000483325 0.122289 1.90631e-06 1.77501e-06 2.718 ||| 0-1 ||| 2069 524574 +los ||| for the forest ||| 0.333333 0.122289 1.90631e-06 3.4287e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| for the individual ||| 0.0134228 0.122289 3.81262e-06 4.66172e-07 2.718 ||| 0-1 ||| 149 524574 +los ||| for the latter being able to ||| 1 0.122289 1.90631e-06 6.68892e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| for the latter being able ||| 1 0.122289 1.90631e-06 7.52764e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| for the latter being ||| 1 0.122289 1.90631e-06 9.01621e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| for the latter ||| 0.0185185 0.122289 1.90631e-06 3.16825e-07 2.718 ||| 0-1 ||| 54 524574 +los ||| for the negotiation process ||| 0.25 0.122289 1.90631e-06 9.58388e-12 2.718 ||| 0-1 ||| 4 524574 +los ||| for the negotiation ||| 0.0344828 0.122289 1.90631e-06 2.24184e-08 2.718 ||| 0-1 ||| 29 524574 +los ||| for the new ||| 0.0011325 0.0015353 1.90631e-06 3.23567e-08 2.718 ||| 0-0 ||| 883 524574 +los ||| for the operation of universal mobile telecommunications ||| 1 0.0620985 1.90631e-06 3.82286e-24 2.718 ||| 0-5 ||| 1 524574 +los ||| for the operation of universal mobile ||| 1 0.0620985 1.90631e-06 1.06191e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| for the others ||| 0.0277778 0.122289 1.90631e-06 3.20452e-07 2.718 ||| 0-1 ||| 36 524574 +los ||| for the people of ||| 0.00282486 0.0710972 1.90631e-06 1.61943e-07 2.718 ||| 0-0 0-1 0-2 ||| 354 524574 +los ||| for the people ||| 0.0011919 0.0710972 1.90631e-06 2.97886e-06 2.718 ||| 0-0 0-1 0-2 ||| 839 524574 +los ||| for the places ||| 1 0.122289 1.90631e-06 1.74402e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| for the repairs ||| 1 0.122289 1.90631e-06 5.93429e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| for the sake ||| 0.000901713 0.122289 1.90631e-06 3.31002e-07 2.718 ||| 0-1 ||| 1109 524574 +los ||| for the sensitivity ||| 0.0434783 0.122289 1.90631e-06 1.54951e-08 2.718 ||| 0-1 ||| 23 524574 +los ||| for the strengthening ||| 0.0263158 0.0619123 1.90631e-06 4.9173e-09 2.718 ||| 0-0 0-1 ||| 38 524574 +los ||| for the time being , ||| 0.00364964 0.122289 1.90631e-06 1.83684e-09 2.718 ||| 0-1 ||| 274 524574 +los ||| for the time being ||| 0.00176991 0.122289 1.90631e-06 1.54026e-08 2.718 ||| 0-1 ||| 565 524574 +los ||| for the time ||| 0.00373134 0.122289 1.90631e-06 5.4124e-06 2.718 ||| 0-1 ||| 268 524574 +los ||| for the whole of ||| 0.00289017 0.0619123 1.90631e-06 1.16327e-08 2.718 ||| 0-0 0-1 ||| 346 524574 +los ||| for the whole ||| 0.00112867 0.0619123 1.90631e-06 2.13978e-07 2.718 ||| 0-0 0-1 ||| 886 524574 +los ||| for the ||| 0.00314905 0.122289 0.000674833 0.00329683 2.718 ||| 0-1 ||| 112415 524574 +los ||| for their own ||| 0.00297619 0.0236713 1.90631e-06 2.98077e-08 2.718 ||| 0-1 ||| 336 524574 +los ||| for their ||| 0.00156863 0.0236713 1.90631e-05 1.75826e-05 2.718 ||| 0-1 ||| 6375 524574 +los ||| for them ||| 0.00270758 0.038218 1.14379e-05 1.54682e-05 2.718 ||| 0-1 ||| 2216 524574 +los ||| for themselves : ||| 0.0526316 0.0015353 1.90631e-06 1.27617e-10 2.718 ||| 0-0 ||| 19 524574 +los ||| for themselves ||| 0.00145773 0.0015353 1.90631e-06 3.78909e-07 2.718 ||| 0-0 ||| 686 524574 +los ||| for these activities ||| 0.0588235 0.0240362 1.90631e-06 1.48934e-09 2.718 ||| 0-1 ||| 17 524574 +los ||| for these cuts ||| 1 0.104656 1.90631e-06 1.75916e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| for these ||| 0.00121359 0.0240362 7.62523e-06 1.87339e-05 2.718 ||| 0-1 ||| 3296 524574 +los ||| for this , and the point is ||| 1 0.122289 1.90631e-06 8.7243e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| for this , and the point ||| 1 0.122289 1.90631e-06 2.78366e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| for this , and the ||| 0.142857 0.122289 1.90631e-06 3.18205e-08 2.718 ||| 0-4 ||| 7 524574 +los ||| for this project by ||| 1 0.0015353 1.90631e-06 1.83069e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| for this project ||| 0.0175439 0.0015353 1.90631e-06 3.48697e-10 2.718 ||| 0-0 ||| 57 524574 +los ||| for this ||| 0.000122264 0.0015353 3.81262e-06 5.69766e-06 2.718 ||| 0-0 ||| 16358 524574 +los ||| for those of us ||| 0.0172414 0.284705 1.90631e-06 2.01082e-08 2.718 ||| 0-1 ||| 58 524574 +los ||| for those of ||| 0.00862069 0.284705 1.90631e-06 6.97668e-06 2.718 ||| 0-1 ||| 116 524574 +los ||| for those us ||| 1 0.284705 1.90631e-06 3.69881e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| for those ||| 0.00534938 0.284705 3.05009e-05 0.000128333 2.718 ||| 0-1 ||| 2991 524574 +los ||| for ticket touts ||| 1 0.0205656 1.90631e-06 4.19639e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| for ticket ||| 1 0.0205656 1.90631e-06 5.99485e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| for time to consult with the United ||| 1 0.122289 1.90631e-06 1.61862e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| for time to consult with the ||| 1 0.122289 1.90631e-06 1.3224e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| for usefully ||| 1 0.0015353 1.90631e-06 1.93996e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| for what ||| 0.00081103 0.0038281 1.90631e-06 8.45382e-07 2.718 ||| 0-0 0-1 ||| 1233 524574 +los ||| for which ||| 0.000306279 0.0015353 1.90631e-06 7.49054e-06 2.718 ||| 0-0 ||| 3265 524574 +los ||| for workers ||| 0.00163132 0.183018 1.90631e-06 6.44031e-06 2.718 ||| 0-0 0-1 ||| 613 524574 +los ||| for you those ||| 1 0.284705 1.90631e-06 4.14348e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| for ||| 0.00086338 0.0015353 0.000895965 0.0008818 2.718 ||| 0-0 ||| 544372 524574 +los ||| forbidding states ||| 0.25 0.118291 1.90631e-06 1.05896e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| force behind the ||| 0.111111 0.122289 1.90631e-06 6.54155e-09 2.718 ||| 0-2 ||| 9 524574 +los ||| force the individual producers ||| 1 0.36135 1.90631e-06 3.73638e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| force the ||| 0.00985222 0.122289 3.81262e-06 7.30084e-05 2.718 ||| 0-1 ||| 203 524574 +los ||| force those ||| 0.25 0.284705 1.90631e-06 2.84193e-06 2.718 ||| 0-1 ||| 4 524574 +los ||| force where ||| 1 0.0449398 1.90631e-06 3.75631e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| forced child labour ||| 0.142857 0.075445 1.90631e-06 1.10464e-12 2.718 ||| 0-1 ||| 7 524574 +los ||| forced child ||| 0.333333 0.075445 1.90631e-06 2.55704e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| forced upon the ||| 0.166667 0.122289 1.90631e-06 7.17326e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| forced ||| 0.000805153 0.0060633 3.81262e-06 2.63e-05 2.718 ||| 0-0 ||| 2484 524574 +los ||| forces and those ||| 1 0.284705 1.90631e-06 1.10642e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| forcing the ||| 0.0102041 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-1 ||| 98 524574 +los ||| forcing them ||| 0.0204082 0.038218 1.90631e-06 1.81134e-08 2.718 ||| 0-1 ||| 49 524574 +los ||| foreign currency ||| 0.0175439 0.0012107 1.90631e-06 4.3758e-10 2.718 ||| 0-0 ||| 57 524574 +los ||| foreign ||| 0.000666075 0.0012107 1.14379e-05 1.17e-05 2.718 ||| 0-0 ||| 9008 524574 +los ||| foremost among ||| 0.0526316 0.0202203 1.90631e-06 8.47242e-09 2.718 ||| 0-1 ||| 19 524574 +los ||| forensic ||| 0.0175439 0.0138889 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 57 524574 +los ||| forest and ||| 0.030303 0.0876471 1.90631e-06 1.815e-06 2.718 ||| 0-0 ||| 33 524574 +los ||| forest ||| 0.00892193 0.0876471 2.28757e-05 0.0001449 2.718 ||| 0-0 ||| 1345 524574 +los ||| forestry and ||| 0.0153846 0.0246734 1.90631e-06 4.14607e-07 2.718 ||| 0-0 ||| 65 524574 +los ||| forestry ||| 0.00286533 0.0246734 5.71893e-06 3.31e-05 2.718 ||| 0-0 ||| 1047 524574 +los ||| forests in contexts ||| 1 0.326178 1.90631e-06 8.43697e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| forests in ||| 0.0135135 0.326178 1.90631e-06 1.45465e-05 2.718 ||| 0-0 ||| 74 524574 +los ||| forests is ||| 0.037037 0.326178 1.90631e-06 2.12994e-05 2.718 ||| 0-0 ||| 27 524574 +los ||| forests ||| 0.00340136 0.326178 9.53154e-06 0.0006796 2.718 ||| 0-0 ||| 1470 524574 +los ||| forgetting the ||| 0.00671141 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-1 ||| 149 524574 +los ||| forging plans ||| 0.5 0.12684 1.90631e-06 1.90575e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| forgive my saying ||| 0.333333 0.0086409 1.90631e-06 8.31516e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| forgive my ||| 0.0909091 0.0086409 1.90631e-06 4.68724e-09 2.718 ||| 0-1 ||| 11 524574 +los ||| form , the ||| 0.0434783 0.122289 1.90631e-06 2.32858e-05 2.718 ||| 0-2 ||| 23 524574 +los ||| form of the ||| 0.00854701 0.062134 3.81262e-06 6.45845e-07 2.718 ||| 0-1 0-2 ||| 234 524574 +los ||| form of ||| 0.000220799 0.0019787 1.90631e-06 1.50562e-06 2.718 ||| 0-1 ||| 4529 524574 +los ||| form the ||| 0.00718133 0.122289 7.62523e-06 0.000195261 2.718 ||| 0-1 ||| 557 524574 +los ||| formal procedures is ||| 0.5 0.219824 1.90631e-06 1.25859e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| formal procedures ||| 0.0909091 0.219824 1.90631e-06 4.01578e-08 2.718 ||| 0-1 ||| 11 524574 +los ||| formal ||| 0.000460193 0.0004838 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2173 524574 +los ||| formed the ||| 0.0121951 0.122289 1.90631e-06 8.32175e-06 2.718 ||| 0-1 ||| 82 524574 +los ||| former opponents ||| 0.166667 0.186889 1.90631e-06 8.41221e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| former worker ||| 1 0.188567 1.90631e-06 9.73497e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| former ||| 0.0010533 0.0011171 9.53154e-06 4.9e-06 2.718 ||| 0-0 ||| 4747 524574 +los ||| forms of the ||| 0.125 0.122289 1.90631e-06 2.08012e-06 2.718 ||| 0-2 ||| 8 524574 +los ||| forms of ||| 0.000731261 0.0019787 3.81262e-06 2.95038e-07 2.718 ||| 0-1 ||| 2735 524574 +los ||| forms the ||| 0.0147059 0.122289 5.71893e-06 3.82629e-05 2.718 ||| 0-1 ||| 204 524574 +los ||| formulate the ||| 0.0294118 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-1 ||| 34 524574 +los ||| forums ||| 0.00292398 0.224439 1.90631e-06 8.75e-05 2.718 ||| 0-0 ||| 342 524574 +los ||| forward at the time in ||| 1 0.122289 1.90631e-06 3.51191e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| forward at the time ||| 1 0.122289 1.90631e-06 1.64073e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| forward at the ||| 0.1 0.122289 1.90631e-06 9.99412e-07 2.718 ||| 0-2 ||| 10 524574 +los ||| forward the ||| 0.037234 0.122289 1.33442e-05 0.000238671 2.718 ||| 0-1 ||| 188 524574 +los ||| forward to seeing the ||| 0.25 0.122289 1.90631e-06 1.13038e-09 2.718 ||| 0-3 ||| 4 524574 +los ||| forward with the ||| 0.0344828 0.122289 1.90631e-06 1.52618e-06 2.718 ||| 0-2 ||| 29 524574 +los ||| fossil ||| 0.00344234 0.0154321 3.81262e-06 9.7e-06 2.718 ||| 0-0 ||| 581 524574 +los ||| foster the ||| 0.00840336 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-1 ||| 119 524574 +los ||| fostering individual professional development , ||| 1 0.110351 1.90631e-06 1.04639e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| fostering individual professional development ||| 1 0.110351 1.90631e-06 8.77442e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| fostering individual professional ||| 1 0.110351 1.90631e-06 5.334e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| fostering individual ||| 1 0.110351 1.90631e-06 3.21325e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| found by ||| 0.0416667 0.0062464 1.90631e-06 3.54412e-07 2.718 ||| 0-1 ||| 24 524574 +los ||| found in the ||| 0.00378788 0.122289 1.90631e-06 2.00893e-06 2.718 ||| 0-2 ||| 264 524574 +los ||| found its way ||| 0.037037 0.0211371 1.90631e-06 1.00701e-09 2.718 ||| 0-1 ||| 27 524574 +los ||| found its ||| 0.0357143 0.0211371 1.90631e-06 4.6716e-07 2.718 ||| 0-1 ||| 28 524574 +los ||| found on the ||| 0.0555556 0.122289 1.90631e-06 6.27988e-07 2.718 ||| 0-2 ||| 18 524574 +los ||| found the ||| 0.0125786 0.122289 3.81262e-06 9.38556e-05 2.718 ||| 0-1 ||| 159 524574 +los ||| found to the ||| 0.0588235 0.122289 1.90631e-06 8.33984e-06 2.718 ||| 0-2 ||| 17 524574 +los ||| found within the ||| 0.0714286 0.122289 1.90631e-06 1.96252e-08 2.718 ||| 0-2 ||| 14 524574 +los ||| four priorities - competitiveness , the environment ||| 1 0.122289 1.90631e-06 2.14818e-23 2.718 ||| 0-5 ||| 1 524574 +los ||| four priorities - competitiveness , the ||| 1 0.122289 1.90631e-06 3.84979e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| four ||| 0.000271186 0.0002865 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 7375 524574 +los ||| fourth-generation ||| 0.0454545 0.0416667 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 22 524574 +los ||| fr ) The ||| 0.00970874 0.0025284 1.90631e-06 6.12117e-13 2.718 ||| 0-2 ||| 103 524574 +los ||| fragile ||| 0.00125471 0.0024845 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 797 524574 +los ||| fragmented country ruled ||| 1 0.0045977 1.90631e-06 8.34248e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| fragmented country ||| 1 0.0045977 1.90631e-06 6.8381e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| fragmented ||| 0.00243309 0.0045977 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 411 524574 +los ||| framework agreements ||| 0.025 0.199336 1.90631e-06 3.75522e-07 2.718 ||| 0-1 ||| 40 524574 +los ||| frameworks ||| 0.00483871 0.15407 5.71893e-06 0.0001031 2.718 ||| 0-0 ||| 620 524574 +los ||| fraud , ||| 0.00176056 0.0242626 1.90631e-06 1.77451e-05 2.718 ||| 0-0 ||| 568 524574 +los ||| fraud is very ||| 1 0.0242626 1.90631e-06 1.62268e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| fraud is ||| 0.00877193 0.0242626 1.90631e-06 4.66356e-06 2.718 ||| 0-0 ||| 114 524574 +los ||| fraud ||| 0.00113636 0.0242626 9.53154e-06 0.0001488 2.718 ||| 0-0 ||| 4400 524574 +los ||| fraudsters ||| 0.00917431 0.335404 1.90631e-06 5.25e-05 2.718 ||| 0-0 ||| 109 524574 +los ||| free democrats ||| 0.5 0.186317 1.90631e-06 1.4505e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| free of ||| 0.00253807 0.0006799 1.90631e-06 4.78403e-07 2.718 ||| 0-0 ||| 394 524574 +los ||| free the two ||| 1 0.122289 1.90631e-06 1.18239e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| free the ||| 0.0232558 0.122289 1.90631e-06 5.00163e-05 2.718 ||| 0-1 ||| 43 524574 +los ||| free ||| 0.000314921 0.0006799 9.53154e-06 8.8e-06 2.718 ||| 0-0 ||| 15877 524574 +los ||| freeze those ||| 0.25 0.284705 1.90631e-06 5.34323e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| freezing ||| 0.00230947 0.0084034 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 433 524574 +los ||| frequent ||| 0.0070922 0.0210804 9.53154e-06 1.56e-05 2.718 ||| 0-0 ||| 705 524574 +los ||| fresh impetus to the ||| 0.0263158 0.122289 1.90631e-06 1.22468e-11 2.718 ||| 0-3 ||| 38 524574 +los ||| fridges ||| 0.0238095 0.204082 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 42 524574 +los ||| friend of ||| 0.00625 0.0019787 1.90631e-06 3.80374e-08 2.718 ||| 0-1 ||| 160 524574 +los ||| friends ||| 0.00192031 0.0318528 7.62523e-06 6.9e-05 2.718 ||| 0-0 ||| 2083 524574 +los ||| from 2008 , will demonstrate . the ||| 1 0.122289 1.90631e-06 1.27417e-18 2.718 ||| 0-6 ||| 1 524574 +los ||| from 22 to ||| 0.0833333 0.001099 1.90631e-06 8.59703e-11 2.718 ||| 0-0 ||| 12 524574 +los ||| from 22 ||| 0.047619 0.001099 1.90631e-06 9.675e-10 2.718 ||| 0-0 ||| 21 524574 +los ||| from ACP ||| 0.25 0.0780389 1.90631e-06 4.2112e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| from Mr Watson , the leader of ||| 1 0.122289 1.90631e-06 4.87067e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| from Mr Watson , the leader ||| 1 0.122289 1.90631e-06 8.95937e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| from Mr Watson , the ||| 1 0.122289 1.90631e-06 7.52888e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| from all those ||| 0.0294118 0.284705 1.90631e-06 1.27065e-07 2.718 ||| 0-2 ||| 34 524574 +los ||| from anything else , there needs to ||| 0.5 0.01311 1.90631e-06 1.13926e-19 2.718 ||| 0-2 ||| 2 524574 +los ||| from anything else , there needs ||| 0.5 0.01311 1.90631e-06 1.28211e-18 2.718 ||| 0-2 ||| 2 524574 +los ||| from anything else , there ||| 0.5 0.01311 1.90631e-06 6.46552e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| from anything else , ||| 0.0204082 0.01311 1.90631e-06 2.10926e-12 2.718 ||| 0-2 ||| 49 524574 +los ||| from anything else ||| 0.0136986 0.01311 1.90631e-06 1.7687e-11 2.718 ||| 0-2 ||| 73 524574 +los ||| from being ||| 0.00136986 0.001099 1.90631e-06 5.50662e-07 2.718 ||| 0-0 ||| 730 524574 +los ||| from businesses in the ||| 0.5 0.122289 1.90631e-06 3.93309e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| from cases ||| 0.166667 0.136512 1.90631e-06 2.68051e-06 2.718 ||| 0-1 ||| 6 524574 +los ||| from children under the ||| 0.333333 0.122289 1.90631e-06 1.84653e-11 2.718 ||| 0-3 ||| 3 524574 +los ||| from coming into ||| 0.2 0.0093772 1.90631e-06 1.07636e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| from coming ||| 0.047619 0.0093772 1.90631e-06 1.04837e-07 2.718 ||| 0-1 ||| 21 524574 +los ||| from imposing charges ||| 1 0.0631373 1.90631e-06 3.98204e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| from it those that ||| 0.5 0.284705 1.90631e-06 8.04387e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| from it those ||| 1 0.284705 3.81262e-06 4.78187e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| from now ||| 0.0014556 0.001099 1.90631e-06 3.98591e-07 2.718 ||| 0-0 ||| 687 524574 +los ||| from our ||| 0.000728332 0.0129679 1.90631e-06 6.91008e-07 2.718 ||| 0-0 0-1 ||| 1373 524574 +los ||| from raising the ||| 0.25 0.122289 1.90631e-06 1.58882e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| from reading the ||| 0.111111 0.122289 1.90631e-06 1.98948e-08 2.718 ||| 0-2 ||| 9 524574 +los ||| from representatives of ||| 0.0769231 0.001099 1.90631e-06 3.4083e-10 2.718 ||| 0-0 ||| 13 524574 +los ||| from representatives ||| 0.047619 0.001099 1.90631e-06 6.2694e-09 2.718 ||| 0-0 ||| 21 524574 +los ||| from spending ||| 0.0625 0.0781615 1.90631e-06 4.71364e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| from taking up farming ||| 0.5 0.0110426 1.90631e-06 9.75702e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| from the Agreement ||| 0.25 0.122289 1.90631e-06 1.3954e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| from the EAGGF ||| 0.5 0.122289 1.90631e-06 2.76316e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| from the European Globalisation Adjustment Fund ||| 0.0769231 0.122289 1.90631e-06 4.33229e-23 2.718 ||| 0-1 ||| 13 524574 +los ||| from the European Globalisation Adjustment ||| 0.1 0.122289 1.90631e-06 2.79502e-18 2.718 ||| 0-1 ||| 10 524574 +los ||| from the European Globalisation ||| 0.25 0.122289 1.90631e-06 2.54093e-12 2.718 ||| 0-1 ||| 4 524574 +los ||| from the European ||| 0.00724638 0.122289 1.90631e-06 2.30994e-06 2.718 ||| 0-1 ||| 138 524574 +los ||| from the agenda ||| 0.0105263 0.122289 1.90631e-06 6.85956e-08 2.718 ||| 0-1 ||| 95 524574 +los ||| from the fact ||| 0.00574713 0.122289 3.81262e-06 2.02353e-06 2.718 ||| 0-1 ||| 348 524574 +los ||| from the figure ||| 0.2 0.122289 1.90631e-06 5.27074e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| from the people ||| 0.00862069 0.105878 1.90631e-06 5.44019e-06 2.718 ||| 0-1 0-2 ||| 116 524574 +los ||| from the perceived ||| 1 0.122289 1.90631e-06 9.18752e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| from the perspectives ||| 0.2 0.122289 1.90631e-06 4.21383e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| from the point of view ||| 0.00097561 0.122289 1.90631e-06 2.96756e-11 2.718 ||| 0-1 ||| 1025 524574 +los ||| from the point of ||| 0.00102354 0.122289 1.90631e-06 3.28524e-08 2.718 ||| 0-1 ||| 977 524574 +los ||| from the point ||| 0.00193237 0.122289 3.81262e-06 6.04304e-07 2.718 ||| 0-1 ||| 1035 524574 +los ||| from the requirement for a ||| 0.5 0.122289 1.90631e-06 9.90761e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| from the requirement for ||| 0.25 0.122289 1.90631e-06 2.23518e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| from the requirement ||| 0.0625 0.122289 1.90631e-06 2.90823e-08 2.718 ||| 0-1 ||| 16 524574 +los ||| from the soil really can be ||| 1 0.122289 1.90631e-06 1.29866e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| from the soil really can ||| 1 0.122289 1.90631e-06 7.16586e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| from the soil really ||| 1 0.122289 1.90631e-06 2.40926e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| from the soil ||| 0.333333 0.122289 1.90631e-06 4.9737e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| from the very ||| 0.0034965 0.122289 1.90631e-06 2.40361e-06 2.718 ||| 0-1 ||| 286 524574 +los ||| from the ||| 0.00251938 0.122289 0.000200162 0.000690791 2.718 ||| 0-1 ||| 41677 524574 +los ||| from their ||| 0.00102564 0.0236713 1.90631e-06 3.68411e-06 2.718 ||| 0-1 ||| 975 524574 +los ||| from them , ||| 0.030303 0.038218 1.90631e-06 3.86515e-07 2.718 ||| 0-1 ||| 33 524574 +los ||| from them ||| 0.00326797 0.038218 1.90631e-06 3.24109e-06 2.718 ||| 0-1 ||| 306 524574 +los ||| from these ||| 0.00151745 0.0240362 1.90631e-06 3.92535e-06 2.718 ||| 0-1 ||| 659 524574 +los ||| from those ||| 0.00312989 0.284705 3.81262e-06 2.68898e-05 2.718 ||| 0-1 ||| 639 524574 +los ||| from today 's ||| 0.0909091 0.0349814 1.90631e-06 4.45309e-09 2.718 ||| 0-2 ||| 11 524574 +los ||| from trades ||| 1 0.0593731 1.90631e-06 4.50855e-09 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| from using the ||| 0.0625 0.122289 1.90631e-06 5.36745e-08 2.718 ||| 0-2 ||| 16 524574 +los ||| from what is ||| 0.0263158 0.0061209 1.90631e-06 4.83872e-08 2.718 ||| 0-1 ||| 38 524574 +los ||| from what ||| 0.00170648 0.0061209 1.90631e-06 1.54389e-06 2.718 ||| 0-1 ||| 586 524574 +los ||| from which the ||| 0.015873 0.122289 1.90631e-06 5.868e-06 2.718 ||| 0-2 ||| 63 524574 +los ||| from ||| 0.000719003 0.001099 0.000154411 0.0001935 2.718 ||| 0-0 ||| 112656 524574 +los ||| front of ||| 0.00406504 0.0019787 1.90631e-06 2.66593e-07 2.718 ||| 0-1 ||| 246 524574 +los ||| frontier workers ||| 0.00540541 0.364501 1.90631e-06 2.92144e-08 2.718 ||| 0-1 ||| 185 524574 +los ||| fronts with ||| 0.25 0.164345 1.90631e-06 3.67044e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| fronts ||| 0.00696864 0.164345 3.81262e-06 5.74e-05 2.718 ||| 0-0 ||| 287 524574 +los ||| frozen out ||| 0.166667 0.0024096 1.90631e-06 3.8304e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| frozen ||| 0.00258398 0.0024096 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 387 524574 +los ||| fruit ||| 0.000608273 0.0074384 1.90631e-06 1.56e-05 2.718 ||| 0-0 ||| 1644 524574 +los ||| fuel and ||| 0.00892857 0.0898908 1.90631e-06 3.90933e-06 2.718 ||| 0-0 ||| 112 524574 +los ||| fuel oil ||| 0.0163934 0.0898908 1.90631e-06 1.08923e-08 2.718 ||| 0-0 ||| 61 524574 +los ||| fuel ||| 0.00202102 0.0898908 9.53154e-06 0.0003121 2.718 ||| 0-0 ||| 2474 524574 +los ||| fuels ||| 0.00156128 0.287647 3.81262e-06 0.0004754 2.718 ||| 0-0 ||| 1281 524574 +los ||| fulfil our ||| 0.00869565 0.0248369 1.90631e-06 9.14202e-08 2.718 ||| 0-1 ||| 115 524574 +los ||| fulfil the ||| 0.00330033 0.122289 3.81262e-06 1.09813e-05 2.718 ||| 0-1 ||| 606 524574 +los ||| fulfil their ||| 0.00413223 0.0236713 1.90631e-06 5.85651e-08 2.718 ||| 0-1 ||| 242 524574 +los ||| fulfil ||| 0.000469043 0.0003622 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2132 524574 +los ||| fulfilled their relative ||| 1 0.0236713 1.90631e-06 2.36777e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| fulfilled their ||| 0.04 0.0236713 1.90631e-06 2.63086e-08 2.718 ||| 0-1 ||| 25 524574 +los ||| fulfilling the ||| 0.00757576 0.122289 3.81262e-06 2.78822e-06 2.718 ||| 0-1 ||| 264 524574 +los ||| fulfilling their ||| 0.0178571 0.0236713 1.90631e-06 1.487e-08 2.718 ||| 0-1 ||| 56 524574 +los ||| full of praise at the sterling ||| 0.5 0.122289 1.90631e-06 6.27152e-19 2.718 ||| 0-4 ||| 2 524574 +los ||| full of praise at the ||| 0.5 0.122289 1.90631e-06 2.50861e-13 2.718 ||| 0-4 ||| 2 524574 +los ||| full restoration of ||| 0.0666667 0.0019787 1.90631e-06 2.60986e-12 2.718 ||| 0-2 ||| 15 524574 +los ||| full the ||| 0.0217391 0.122289 1.90631e-06 7.87135e-05 2.718 ||| 0-1 ||| 46 524574 +los ||| fully aware of the ||| 0.00440529 0.122289 1.90631e-06 3.67316e-10 2.718 ||| 0-3 ||| 227 524574 +los ||| fully back the ||| 0.5 0.122289 1.90631e-06 3.27177e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| fully protects ||| 0.25 0.012069 1.90631e-06 7.7112e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| fully understand the ||| 0.0232558 0.122289 1.90631e-06 3.79907e-09 2.718 ||| 0-2 ||| 43 524574 +los ||| fumes , ||| 0.333333 0.230769 1.90631e-06 1.04944e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| fumes and ||| 0.25 0.230769 1.90631e-06 1.10228e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| fumes ||| 0.0833333 0.230769 3.81262e-06 8.8e-06 2.718 ||| 0-0 ||| 24 524574 +los ||| fund it ||| 0.0333333 0.0088458 1.90631e-06 7.25555e-07 2.718 ||| 0-0 ||| 30 524574 +los ||| fund monies ||| 0.125 0.119114 1.90631e-06 1.59258e-09 2.718 ||| 0-1 ||| 8 524574 +los ||| fund ||| 0.000530692 0.0088458 5.71893e-06 4.08e-05 2.718 ||| 0-0 ||| 5653 524574 +los ||| fund-managing ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| fundamental approach taken ||| 0.5 0.0942078 1.90631e-06 2.96045e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| fundamental approach ||| 0.0454545 0.0942078 1.90631e-06 3.24789e-07 2.718 ||| 0-0 ||| 22 524574 +los ||| fundamental importance ||| 0.00255754 0.0942078 1.90631e-06 1.92473e-07 2.718 ||| 0-0 ||| 391 524574 +los ||| fundamental statements ||| 0.5 0.0942078 1.90631e-06 4.74144e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| fundamental ||| 0.01053 0.0942078 0.000285946 0.0014817 2.718 ||| 0-0 ||| 14245 524574 +los ||| fundamentalists ||| 0.00531915 0.268775 1.90631e-06 6.61e-05 2.718 ||| 0-0 ||| 188 524574 +los ||| funded projects ||| 0.0625 0.161094 1.90631e-06 1.71153e-08 2.718 ||| 0-1 ||| 16 524574 +los ||| funding that was ||| 0.166667 0.031089 1.90631e-06 1.76288e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| funding that ||| 0.0131579 0.031089 1.90631e-06 5.62683e-06 2.718 ||| 0-0 ||| 76 524574 +los ||| funding ||| 0.000651843 0.031089 1.71568e-05 0.0003345 2.718 ||| 0-0 ||| 13807 524574 +los ||| funds , ||| 0.00274348 0.220459 3.81262e-06 0.000446275 2.718 ||| 0-0 ||| 729 524574 +los ||| funds - ||| 0.0434783 0.220459 1.90631e-06 1.4116e-05 2.718 ||| 0-0 ||| 23 524574 +los ||| funds . ||| 0.00173913 0.220459 1.90631e-06 1.13351e-05 2.718 ||| 0-0 ||| 575 524574 +los ||| funds alone , ||| 0.5 0.220459 1.90631e-06 4.57878e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| funds alone ||| 0.333333 0.220459 1.90631e-06 3.8395e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| funds and ||| 0.00255754 0.220459 1.90631e-06 4.68744e-05 2.718 ||| 0-0 ||| 391 524574 +los ||| funds announced may appear ||| 0.2 0.220459 1.90631e-06 5.12133e-15 2.718 ||| 0-0 ||| 5 524574 +los ||| funds announced may ||| 0.2 0.220459 1.90631e-06 5.85964e-11 2.718 ||| 0-0 ||| 5 524574 +los ||| funds announced ||| 0.2 0.220459 1.90631e-06 7.8212e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| funds are ||| 0.00291545 0.220459 1.90631e-06 5.67793e-05 2.718 ||| 0-0 ||| 343 524574 +los ||| funds economically , ||| 0.5 0.220459 1.90631e-06 4.19498e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| funds economically ||| 0.5 0.220459 1.90631e-06 3.51767e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| funds in a ||| 0.166667 0.220459 1.90631e-06 3.55049e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| funds in ||| 0.00483092 0.220459 1.90631e-06 8.00999e-05 2.718 ||| 0-0 ||| 207 524574 +los ||| funds should ||| 0.0178571 0.220459 1.90631e-06 1.65817e-05 2.718 ||| 0-0 ||| 56 524574 +los ||| funds that ||| 0.00540541 0.220459 1.90631e-06 6.29498e-05 2.718 ||| 0-0 ||| 185 524574 +los ||| funds ||| 0.00390275 0.220459 0.000116285 0.0037422 2.718 ||| 0-0 ||| 15630 524574 +los ||| further , the only thing left to ||| 1 0.122289 1.90631e-06 1.68555e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| further , the only thing left ||| 1 0.122289 1.90631e-06 1.8969e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| further , the only thing ||| 1 0.122289 1.90631e-06 1.00418e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| further , the only ||| 1 0.122289 1.90631e-06 2.75194e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| further , the ||| 0.0384615 0.122289 1.90631e-06 2.47232e-05 2.718 ||| 0-2 ||| 26 524574 +los ||| further EUR ||| 0.027027 0.0343255 1.90631e-06 2.75819e-07 2.718 ||| 0-1 ||| 37 524574 +los ||| further below the ||| 0.125 0.122289 1.90631e-06 3.64874e-09 2.718 ||| 0-2 ||| 8 524574 +los ||| further programmes ||| 0.0434783 0.182745 1.90631e-06 1.33966e-06 2.718 ||| 0-1 ||| 23 524574 +los ||| further progress in the ||| 0.0322581 0.122289 1.90631e-06 5.84414e-10 2.718 ||| 0-3 ||| 31 524574 +los ||| further progress ||| 0.00274725 0.0392854 1.90631e-06 4.10225e-07 2.718 ||| 0-1 ||| 364 524574 +los ||| further repetition of the ||| 1 0.122289 1.90631e-06 3.26843e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| further the ||| 0.0145631 0.122289 5.71893e-06 0.000207315 2.718 ||| 0-1 ||| 206 524574 +los ||| furthermore , as the ||| 0.142857 0.122289 1.90631e-06 2.40645e-08 2.718 ||| 0-3 ||| 7 524574 +los ||| furthermore , the ||| 0.000774593 0.122289 1.90631e-06 2.35825e-06 2.718 ||| 0-2 ||| 1291 524574 +los ||| future , the ||| 0.00598802 0.122289 3.81262e-06 1.35868e-05 2.718 ||| 0-2 ||| 334 524574 +los ||| future , ||| 0.000397141 0.0002943 3.81262e-06 1.27603e-06 2.718 ||| 0-0 ||| 5036 524574 +los ||| future legislators ||| 0.5 0.212676 1.90631e-06 3.89901e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| future traffic flows can be directed and ||| 1 0.335278 1.90631e-06 9.79567e-23 2.718 ||| 0-2 ||| 1 524574 +los ||| future traffic flows can be directed ||| 1 0.335278 1.90631e-06 7.82033e-21 2.718 ||| 0-2 ||| 1 524574 +los ||| future traffic flows can be ||| 1 0.335278 1.90631e-06 2.49851e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| future traffic flows can ||| 1 0.335278 1.90631e-06 1.37865e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| future traffic flows ||| 1 0.335278 1.90631e-06 4.6352e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| future ||| 0.000226901 0.0002943 1.90631e-05 1.07e-05 2.718 ||| 0-0 ||| 44072 524574 +los ||| g ||| 0.00740741 0.0451977 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 135 524574 +los ||| gain the space ||| 1 0.122289 1.90631e-06 9.90941e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| gain the ||| 0.0206897 0.122289 5.71893e-06 2.39358e-05 2.718 ||| 0-1 ||| 145 524574 +los ||| gains ground ||| 0.142857 0.039886 1.90631e-06 3.1824e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| gains ||| 0.0034904 0.039886 3.81262e-06 2.72e-05 2.718 ||| 0-0 ||| 573 524574 +los ||| gambling ||| 0.00430416 0.0731159 5.71893e-06 6.32e-05 2.718 ||| 0-0 ||| 697 524574 +los ||| games ||| 0.00518135 0.176685 3.81262e-06 9.43e-05 2.718 ||| 0-0 ||| 386 524574 +los ||| gap between the date on ||| 1 0.122289 1.90631e-06 1.22261e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| gap between the date ||| 1 0.122289 1.90631e-06 1.82724e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| gap between the ||| 0.00403226 0.122289 1.90631e-06 1.78791e-09 2.718 ||| 0-2 ||| 248 524574 +los ||| gave them ||| 0.0263158 0.038218 1.90631e-06 1.68052e-07 2.718 ||| 0-1 ||| 38 524574 +los ||| gematigde ||| 0.5 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| gender-sensitive ||| 0.027027 0.0666667 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 37 524574 +los ||| general appreciation of the ||| 0.5 0.122289 1.90631e-06 5.30222e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| general guide ||| 0.333333 0.0006907 1.90631e-06 6.206e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| general ||| 0.000289268 0.0006907 9.53154e-06 1.07e-05 2.718 ||| 0-0 ||| 17285 524574 +los ||| generally the ||| 0.0416667 0.122289 1.90631e-06 1.77588e-05 2.718 ||| 0-1 ||| 24 524574 +los ||| generals ||| 0.00854701 0.131783 1.90631e-06 1.65e-05 2.718 ||| 0-0 ||| 117 524574 +los ||| generate the ||| 0.025 0.122289 1.90631e-06 4.63273e-06 2.718 ||| 0-1 ||| 40 524574 +los ||| generated by the ||| 0.0103093 0.122289 1.90631e-06 2.99524e-08 2.718 ||| 0-2 ||| 97 524574 +los ||| generated on them ||| 1 0.038218 1.90631e-06 1.79102e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| generous with advice ||| 1 0.0108752 1.90631e-06 6.13105e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| genes ||| 0.0112994 0.174888 3.81262e-06 3.79e-05 2.718 ||| 0-0 ||| 177 524574 +los ||| genetic modification ||| 0.010989 0.0025729 1.90631e-06 5.22e-12 2.718 ||| 0-0 ||| 91 524574 +los ||| genetic ||| 0.00166113 0.0025729 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 602 524574 +los ||| genetically modified ||| 0.00289017 0.0732984 5.71893e-06 1.2249e-09 2.718 ||| 0-1 ||| 1038 524574 +los ||| genuine ||| 0.000636537 0.0005507 5.71893e-06 2.9e-06 2.718 ||| 0-0 ||| 4713 524574 +los ||| genuinely European ||| 0.0222222 0.0034168 1.90631e-06 3.89709e-08 2.718 ||| 0-1 ||| 45 524574 +los ||| geographical ||| 0.00110742 0.0011038 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 1806 524574 +los ||| get in the way of the ||| 0.333333 0.122289 1.90631e-06 2.88794e-11 2.718 ||| 0-5 ||| 3 524574 +los ||| get into the ||| 0.0166667 0.122289 1.90631e-06 1.92547e-07 2.718 ||| 0-2 ||| 60 524574 +los ||| get off the ||| 0.0294118 0.122289 1.90631e-06 7.63287e-08 2.718 ||| 0-2 ||| 34 524574 +los ||| get recognition for certificates ||| 0.5 0.0997437 1.90631e-06 1.22198e-15 2.718 ||| 0-2 0-3 ||| 2 524574 +los ||| get rid of the ||| 0.0571429 0.122289 7.62523e-06 2.38573e-10 2.718 ||| 0-3 ||| 70 524574 +los ||| get the actual ||| 0.333333 0.122289 1.90631e-06 2.7137e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| get the ||| 0.010101 0.122289 1.90631e-05 0.00018754 2.718 ||| 0-1 ||| 990 524574 +los ||| get their act together ||| 0.0555556 0.0236713 1.90631e-06 1.02061e-13 2.718 ||| 0-1 ||| 18 524574 +los ||| get their act ||| 0.0588235 0.0236713 1.90631e-06 1.69931e-10 2.718 ||| 0-1 ||| 17 524574 +los ||| get their ||| 0.02 0.0236713 3.81262e-06 1.00018e-06 2.718 ||| 0-1 ||| 100 524574 +los ||| get them ||| 0.0140845 0.038218 1.90631e-06 8.79909e-07 2.718 ||| 0-1 ||| 71 524574 +los ||| get ||| 0.000130463 6.24e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 7665 524574 +los ||| gets the advertising ||| 0.333333 0.122289 1.90631e-06 1.10302e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| gets the ||| 0.0243902 0.122289 3.81262e-06 1.28258e-05 2.718 ||| 0-1 ||| 82 524574 +los ||| gets to the ||| 0.0526316 0.122289 1.90631e-06 1.13968e-06 2.718 ||| 0-2 ||| 19 524574 +los ||| getting different ||| 0.5 0.0053114 1.90631e-06 1.24218e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| getting down to these ||| 1 0.0240362 1.90631e-06 1.75698e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| getting his ||| 0.25 0.0058818 1.90631e-06 2.01142e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| getting its funds ||| 1 0.220459 1.90631e-06 6.19522e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| getting the Community ||| 0.25 0.122289 1.90631e-06 8.06986e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| getting the ||| 0.0179211 0.122289 9.53154e-06 4.98447e-05 2.718 ||| 0-1 ||| 279 524574 +los ||| getting their ||| 0.0434783 0.0236713 1.90631e-06 2.65831e-07 2.718 ||| 0-1 ||| 23 524574 +los ||| getting to know each ||| 0.25 0.0497499 1.90631e-06 2.34399e-12 2.718 ||| 0-3 ||| 4 524574 +los ||| gifts ||| 0.00657895 0.125628 1.90631e-06 2.43e-05 2.718 ||| 0-0 ||| 152 524574 +los ||| gigaliners ' ||| 0.5 0.26087 1.90631e-06 1.99224e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| gigaliners ||| 0.0909091 0.26087 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| give a major boost ||| 0.5 0.0097205 1.90631e-06 6.86831e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| give a major ||| 0.333333 0.0097205 1.90631e-06 3.97012e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| give account for the ||| 0.5 0.122289 1.90631e-06 5.7439e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| give citizens an ||| 0.5 0.293572 1.90631e-06 4.07719e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| give citizens ||| 0.0625 0.293572 1.90631e-06 9.17314e-06 2.718 ||| 0-1 ||| 16 524574 +los ||| give consumers ||| 0.0322581 0.420328 1.90631e-06 5.03404e-06 2.718 ||| 0-1 ||| 31 524574 +los ||| give employees ||| 0.2 0.33844 1.90631e-06 9.76266e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| give food ||| 0.333333 0.123536 1.90631e-06 1.33568e-06 2.718 ||| 0-1 ||| 3 524574 +los ||| give him my very firm support . ||| 0.5 0.0086409 1.90631e-06 1.77103e-23 2.718 ||| 0-2 ||| 2 524574 +los ||| give him my very firm support ||| 0.5 0.0086409 1.90631e-06 5.84691e-21 2.718 ||| 0-2 ||| 2 524574 +los ||| give him my very firm ||| 0.5 0.0086409 1.90631e-06 1.71012e-17 2.718 ||| 0-2 ||| 2 524574 +los ||| give him my very ||| 0.5 0.0086409 1.90631e-06 4.65974e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| give him my ||| 0.2 0.0086409 1.90631e-06 1.3392e-10 2.718 ||| 0-2 ||| 5 524574 +los ||| give it the ||| 0.0338983 0.122289 3.81262e-06 4.6227e-06 2.718 ||| 0-2 ||| 59 524574 +los ||| give its opinion ||| 0.00595238 0.0211371 1.90631e-06 3.17516e-10 2.718 ||| 0-1 ||| 168 524574 +los ||| give its ||| 0.00649351 0.0211371 3.81262e-06 1.29387e-06 2.718 ||| 0-1 ||| 308 524574 +los ||| give my ||| 0.00787402 0.0086409 1.90631e-06 4.17716e-07 2.718 ||| 0-1 ||| 127 524574 +los ||| give the ||| 0.0102225 0.122289 3.24072e-05 0.000259948 2.718 ||| 0-1 ||| 1663 524574 +los ||| give them ||| 0.0015674 0.038218 1.90631e-06 1.21964e-06 2.718 ||| 0-1 ||| 638 524574 +los ||| give us every reason ||| 1 0.144232 1.90631e-06 1.33341e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| give us every ||| 0.25 0.144232 1.90631e-06 5.70077e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| give us the ||| 0.00515464 0.122289 1.90631e-06 7.49221e-07 2.718 ||| 0-2 ||| 194 524574 +los ||| given all the rumours about possible mafia ||| 1 0.122289 1.90631e-06 4.86056e-24 2.718 ||| 0-2 ||| 1 524574 +los ||| given all the rumours about possible ||| 1 0.122289 1.90631e-06 3.47183e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| given all the rumours about ||| 1 0.122289 1.90631e-06 4.32842e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| given all the rumours ||| 1 0.122289 1.90631e-06 3.06047e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| given all the ||| 0.030303 0.122289 1.90631e-06 1.39112e-06 2.718 ||| 0-2 ||| 33 524574 +los ||| given as regards the ||| 1 0.122289 1.90631e-06 4.20574e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| given by ||| 0.00162866 0.0062464 1.90631e-06 1.11167e-06 2.718 ||| 0-1 ||| 614 524574 +los ||| given in the ||| 0.00862069 0.122289 1.90631e-06 6.30133e-06 2.718 ||| 0-2 ||| 116 524574 +los ||| given that the ||| 0.00123609 0.122289 1.90631e-06 4.95216e-06 2.718 ||| 0-2 ||| 809 524574 +los ||| given the ||| 0.00217822 0.122289 2.09694e-05 0.000294393 2.718 ||| 0-1 ||| 5050 524574 +los ||| given to farmers ||| 0.111111 0.380089 1.90631e-06 2.99483e-07 2.718 ||| 0-2 ||| 9 524574 +los ||| given to group representatives . ||| 1 0.135512 1.90631e-06 2.29234e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| given to group representatives ||| 1 0.135512 1.90631e-06 7.56796e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| given to the arrangements ||| 1 0.0717439 1.90631e-06 9.46453e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| given to the ||| 0.00677507 0.122289 9.53154e-06 2.61592e-05 2.718 ||| 0-2 ||| 738 524574 +los ||| gives the ||| 0.00430108 0.122289 3.81262e-06 3.39733e-05 2.718 ||| 0-1 ||| 465 524574 +los ||| giving the various ||| 0.333333 0.122289 1.90631e-06 1.0438e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| giving the ||| 0.00732064 0.122289 9.53154e-06 6.76035e-05 2.718 ||| 0-1 ||| 683 524574 +los ||| giving their ||| 0.0212766 0.0236713 1.90631e-06 3.60542e-07 2.718 ||| 0-1 ||| 47 524574 +los ||| global ||| 0.000142837 0.0003013 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 14002 524574 +los ||| gloss over the ||| 0.047619 0.122289 1.90631e-06 2.27197e-10 2.718 ||| 0-2 ||| 21 524574 +los ||| go back on the founding ||| 1 0.122289 1.90631e-06 5.30599e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| go back on the ||| 0.0526316 0.122289 1.90631e-06 1.12893e-09 2.718 ||| 0-3 ||| 19 524574 +los ||| go by ||| 0.0133333 0.0062464 1.90631e-06 9.47259e-07 2.718 ||| 0-1 ||| 75 524574 +los ||| go into details for every one ||| 1 0.144232 1.90631e-06 1.73892e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| go into details for every ||| 1 0.144232 1.90631e-06 4.17206e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| go off the ||| 0.333333 0.122289 1.90631e-06 1.02097e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| go on for many years ||| 1 0.0015353 1.90631e-06 2.01605e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| go on for many ||| 1 0.0015353 1.90631e-06 1.18452e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| go on for ||| 0.0454545 0.0015353 1.90631e-06 3.45039e-09 2.718 ||| 0-2 ||| 22 524574 +los ||| go on to the ||| 0.0625 0.122289 1.90631e-06 1.49145e-07 2.718 ||| 0-3 ||| 16 524574 +los ||| go on ||| 0.0025 0.0006914 3.81262e-06 2.08657e-07 2.718 ||| 0-1 ||| 800 524574 +los ||| go past the stage ||| 1 0.122289 1.90631e-06 4.81051e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| go past the ||| 1 0.122289 1.90631e-06 3.21344e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| go the ||| 0.0172414 0.122289 1.90631e-06 0.000250854 2.718 ||| 0-1 ||| 58 524574 +los ||| go through the ||| 0.00970874 0.122289 1.90631e-06 1.15468e-07 2.718 ||| 0-2 ||| 103 524574 +los ||| goals as ||| 0.0833333 0.057812 1.90631e-06 1.93475e-06 2.718 ||| 0-0 ||| 12 524574 +los ||| goals ||| 0.000578536 0.057812 3.81262e-06 0.0001896 2.718 ||| 0-0 ||| 3457 524574 +los ||| goes back on the ||| 0.5 0.122289 1.90631e-06 2.67369e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| goes beyond the ||| 0.010989 0.122289 3.81262e-06 4.44984e-09 2.718 ||| 0-2 ||| 182 524574 +los ||| goes for ||| 0.00406504 0.0015353 1.90631e-06 1.22129e-07 2.718 ||| 0-1 ||| 246 524574 +los ||| goes to the ||| 0.00840336 0.122289 1.90631e-06 5.27911e-06 2.718 ||| 0-2 ||| 119 524574 +los ||| going , either in the ||| 1 0.122289 1.90631e-06 8.11304e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| going on ||| 0.000981354 0.0006914 1.90631e-06 3.05349e-07 2.718 ||| 0-1 ||| 1019 524574 +los ||| going through the ||| 0.0153846 0.122289 1.90631e-06 1.68976e-07 2.718 ||| 0-2 ||| 65 524574 +los ||| going to see the ||| 0.333333 0.122289 1.90631e-06 2.2984e-08 2.718 ||| 0-3 ||| 3 524574 +los ||| golden ||| 0.00288184 0.003096 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 347 524574 +los ||| gone over ||| 0.0416667 0.0037547 1.90631e-06 8.51986e-09 2.718 ||| 0-1 ||| 24 524574 +los ||| good EUR ||| 0.2 0.0343255 1.90631e-06 2.95965e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| good agricultural ||| 0.111111 0.0019291 1.90631e-06 1.20834e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| good deal has been said both here ||| 1 0.0352574 1.90631e-06 3.78111e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| good deal has been said both ||| 1 0.0352574 1.90631e-06 1.86464e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| good its ||| 0.25 0.0211371 1.90631e-06 1.10726e-06 2.718 ||| 0-1 ||| 4 524574 +los ||| good job of balancing the ||| 1 0.122289 1.90631e-06 4.06141e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| good the ||| 0.0454545 0.122289 3.81262e-06 0.000222457 2.718 ||| 0-1 ||| 44 524574 +los ||| good ||| 9.77804e-05 0.0001139 5.71893e-06 3.9e-06 2.718 ||| 0-0 ||| 30681 524574 +los ||| goods and services ||| 0.0013245 0.272175 1.90631e-06 4.50152e-09 2.718 ||| 0-2 ||| 755 524574 +los ||| goods or services ||| 0.02 0.272175 1.90631e-06 4.10876e-10 2.718 ||| 0-2 ||| 50 524574 +los ||| goods ||| 0.000703136 0.0610169 9.53154e-06 0.000385 2.718 ||| 0-0 ||| 7111 524574 +los ||| got a fine record ||| 1 0.0063694 1.90631e-06 3.95058e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| got a fine ||| 1 0.0063694 1.90631e-06 7.07989e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| got our ||| 0.25 0.0248369 1.90631e-06 3.90678e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| got the ||| 0.0197368 0.122289 5.71893e-06 4.69278e-05 2.718 ||| 0-1 ||| 152 524574 +los ||| governed by the rule ||| 0.0232558 0.122289 1.90631e-06 4.02804e-12 2.718 ||| 0-2 ||| 43 524574 +los ||| governed by the ||| 0.0203046 0.122289 7.62523e-06 4.95454e-08 2.718 ||| 0-2 ||| 197 524574 +los ||| governed by ||| 0.00175747 0.0062464 1.90631e-06 3.56356e-08 2.718 ||| 0-1 ||| 569 524574 +los ||| governing political parties ||| 0.0833333 0.132694 1.90631e-06 5.82113e-12 2.718 ||| 0-2 ||| 12 524574 +los ||| governing the conduct of our ||| 1 0.0248369 1.90631e-06 1.38963e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| governing their ||| 0.047619 0.0236713 1.90631e-06 4.43814e-08 2.718 ||| 0-1 ||| 21 524574 +los ||| governing ||| 0.00192988 0.0049432 1.14379e-05 9.7e-06 2.718 ||| 0-0 ||| 3109 524574 +los ||| government authorities ||| 0.0172414 0.0007201 1.90631e-06 6.4602e-10 2.718 ||| 0-0 ||| 58 524574 +los ||| government cuts ||| 0.333333 0.104656 1.90631e-06 1.76339e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| government offices ||| 0.0384615 0.0007201 1.90631e-06 9.118e-11 2.718 ||| 0-0 ||| 26 524574 +los ||| government revenue is ||| 1 0.202394 1.90631e-06 9.05752e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| government revenue ||| 0.0833333 0.202394 1.90631e-06 2.88998e-08 2.718 ||| 0-1 ||| 12 524574 +los ||| government ||| 0.000431965 0.0007201 1.33442e-05 9.7e-06 2.718 ||| 0-0 ||| 16205 524574 +los ||| governments ' ||| 0.0196078 0.15892 1.90631e-06 1.89337e-05 2.718 ||| 0-0 0-1 ||| 51 524574 +los ||| governments , ||| 0.00125471 0.273393 1.90631e-06 0.000424487 2.718 ||| 0-0 ||| 797 524574 +los ||| governments and ||| 0.00109051 0.273393 1.90631e-06 4.45859e-05 2.718 ||| 0-0 ||| 917 524574 +los ||| governments comply ||| 1 0.273393 1.90631e-06 1.66585e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| governments get the ||| 0.2 0.273393 1.90631e-06 9.55387e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| governments get ||| 0.2 0.273393 1.90631e-06 1.55621e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| governments of those ||| 0.04 0.284705 1.90631e-06 3.1045e-08 2.718 ||| 0-2 ||| 25 524574 +los ||| governments own the port ||| 1 0.273393 1.90631e-06 4.92717e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| governments own the ||| 1 0.273393 1.90631e-06 3.70464e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| governments own ||| 1 0.273393 1.90631e-06 6.03442e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| governments ||| 0.00270019 0.273393 5.5283e-05 0.0035595 2.718 ||| 0-0 ||| 10740 524574 +los ||| graduates ||| 0.0124224 0.27668 3.81262e-06 6.81e-05 2.718 ||| 0-0 ||| 161 524574 +los ||| grandchildren and future legislators ||| 1 0.212676 1.90631e-06 1.95354e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| grandfather rights ||| 0.2 0.0030851 3.81262e-06 1.0682e-10 2.718 ||| 0-1 ||| 10 524574 +los ||| grant the ||| 0.027972 0.122289 7.62523e-06 1.35979e-05 2.718 ||| 0-1 ||| 143 524574 +los ||| grant them ||| 0.0196078 0.038218 1.90631e-06 6.37994e-08 2.718 ||| 0-1 ||| 51 524574 +los ||| grant ||| 0.000524934 0.000427 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1905 524574 +los ||| grasp the ||| 0.0121951 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-1 ||| 82 524574 +los ||| grass-roots ||| 0.0120482 0.0538117 5.71893e-06 2.33e-05 2.718 ||| 0-0 ||| 249 524574 +los ||| grassroots level ||| 0.0204082 0.0280172 1.90631e-06 1.0778e-08 2.718 ||| 0-0 ||| 49 524574 +los ||| grassroots ||| 0.003003 0.0280172 1.90631e-06 1.26e-05 2.718 ||| 0-0 ||| 333 524574 +los ||| gratitude in view of the ||| 1 0.122289 1.90631e-06 3.56196e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| grave problems ||| 0.0625 0.106249 1.90631e-06 2.08522e-08 2.718 ||| 0-1 ||| 16 524574 +los ||| grave ||| 0.00111111 0.0009814 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 900 524574 +los ||| gravest errors ||| 1 0.101639 1.90631e-06 8.442e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| great damage ||| 0.03125 0.0626363 1.90631e-06 1.2073e-07 2.718 ||| 0-1 ||| 32 524574 +los ||| great deal of poor ||| 1 0.0167739 1.90631e-06 9.12343e-14 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| great deal of the ||| 0.0454545 0.122289 1.90631e-06 3.89132e-09 2.718 ||| 0-3 ||| 22 524574 +los ||| great deal of ||| 0.000715308 0.0019787 1.90631e-06 5.51932e-10 2.718 ||| 0-2 ||| 1398 524574 +los ||| great detail the ||| 0.25 0.122289 1.90631e-06 8.61443e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| great were the ||| 1 0.122289 1.90631e-06 3.01994e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| greater efforts ||| 0.0075188 0.101547 1.90631e-06 2.23574e-07 2.718 ||| 0-1 ||| 133 524574 +los ||| greater emphasis on education , ||| 0.5 0.0011583 1.90631e-06 9.93448e-17 2.718 ||| 0-3 ||| 2 524574 +los ||| greater emphasis on education ||| 0.333333 0.0011583 1.90631e-06 8.33047e-16 2.718 ||| 0-3 ||| 3 524574 +los ||| greater importance on the ||| 0.25 0.122289 1.90631e-06 4.9102e-11 2.718 ||| 0-3 ||| 4 524574 +los ||| greater ||| 6.23869e-05 4.45e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 16029 524574 +los ||| greatest importance that the Chinese authorities ||| 0.25 0.122289 1.90631e-06 1.36687e-20 2.718 ||| 0-3 ||| 4 524574 +los ||| greatest importance that the Chinese ||| 0.25 0.122289 1.90631e-06 2.05236e-16 2.718 ||| 0-3 ||| 4 524574 +los ||| greatest importance that the ||| 0.2 0.122289 1.90631e-06 1.72468e-11 2.718 ||| 0-3 ||| 5 524574 +los ||| greatly all those ||| 1 0.284705 1.90631e-06 2.07514e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| greatly disputed by the ||| 1 0.122289 1.90631e-06 1.89534e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| green job ' ||| 0.5 0.0444479 1.90631e-06 6.89613e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| green rooms ||| 0.333333 0.0142857 1.90631e-06 8.134e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| green rooms ’ ||| 0.333333 0.0142857 1.90631e-06 1.41702e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| grips with the ||| 0.0172414 0.122289 1.90631e-06 4.74532e-08 2.718 ||| 0-2 ||| 58 524574 +los ||| gross domestic product ||| 0.00232558 0.0136561 1.90631e-06 2.15986e-14 2.718 ||| 0-1 ||| 430 524574 +los ||| gross domestic ||| 0.00289855 0.0136561 1.90631e-06 3.5524e-10 2.718 ||| 0-1 ||| 345 524574 +los ||| group ' s chairmen , in today ||| 1 0.183633 1.90631e-06 8.66747e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| group ' s chairmen , in ||| 1 0.183633 1.90631e-06 1.92056e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| group ' s chairmen , ||| 1 0.183633 1.90631e-06 8.97268e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| group ' s chairmen ||| 1 0.183633 1.90631e-06 7.52396e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| group representatives . ||| 1 0.135512 1.90631e-06 3.75895e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| group representatives ||| 0.125 0.135512 1.90631e-06 1.24099e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| groups , is achieved ||| 1 0.143803 1.90631e-06 1.24084e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| groups , is ||| 0.2 0.143803 1.90631e-06 7.41684e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| groups , ||| 0.00425532 0.143803 5.71893e-06 0.000236649 2.718 ||| 0-0 ||| 705 524574 +los ||| groups from ||| 0.030303 0.143803 1.90631e-06 3.19568e-06 2.718 ||| 0-0 ||| 33 524574 +los ||| groups have brought ||| 1 0.143803 1.90631e-06 6.64525e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| groups have ||| 0.0078125 0.143803 1.90631e-06 2.3733e-05 2.718 ||| 0-0 ||| 128 524574 +los ||| groups of ||| 0.00519031 0.143803 5.71893e-06 0.00010788 2.718 ||| 0-0 ||| 578 524574 +los ||| groups ||| 0.00249905 0.143803 6.29082e-05 0.0019844 2.718 ||| 0-0 ||| 13205 524574 +los ||| growers at ||| 0.333333 0.353352 1.90631e-06 1.0301e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| growers have ||| 0.2 0.353352 1.90631e-06 2.94211e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| growers should issue ||| 0.5 0.353352 1.90631e-06 8.24932e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| growers should ||| 0.333333 0.353352 1.90631e-06 1.09003e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| growers ||| 0.0152964 0.353352 1.52505e-05 0.000246 2.718 ||| 0-0 ||| 523 524574 +los ||| growth , the ||| 0.0322581 0.122289 1.90631e-06 2.46567e-06 2.718 ||| 0-2 ||| 31 524574 +los ||| guarantee the creation ||| 0.111111 0.122289 1.90631e-06 1.20417e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| guarantee the ||| 0.00225734 0.122289 5.71893e-06 2.59519e-05 2.718 ||| 0-1 ||| 1329 524574 +los ||| guarantee them a ||| 0.0666667 0.038218 1.90631e-06 5.39721e-09 2.718 ||| 0-1 ||| 15 524574 +los ||| guarantee them ||| 0.0232558 0.038218 1.90631e-06 1.21762e-07 2.718 ||| 0-1 ||| 43 524574 +los ||| guaranteed to people involved ||| 1 0.0894672 1.90631e-06 8.54209e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| guaranteed to people ||| 1 0.0894672 1.90631e-06 2.47024e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| guaranteed ||| 0.000326904 0.0003441 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 3059 524574 +los ||| guard against the ||| 0.0416667 0.122289 1.90631e-06 9.92785e-10 2.718 ||| 0-2 ||| 24 524574 +los ||| guard the ||| 0.0555556 0.122289 1.90631e-06 4.16088e-06 2.718 ||| 0-1 ||| 18 524574 +los ||| guardian of the ||| 0.00294118 0.122289 1.90631e-06 3.26477e-08 2.718 ||| 0-2 ||| 340 524574 +los ||| guidance programmes ( ||| 1 0.182745 1.90631e-06 1.92472e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| guidance programmes ||| 0.025641 0.182745 1.90631e-06 1.99577e-08 2.718 ||| 0-1 ||| 39 524574 +los ||| guide ||| 0.00132802 0.0012771 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 753 524574 +los ||| guiding ||| 0.0048 0.0131387 5.71893e-06 8.8e-06 2.718 ||| 0-0 ||| 625 524574 +los ||| guilt among the ||| 1 0.122289 1.90631e-06 1.65268e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| guns against everybody ||| 0.5 0.0663194 1.90631e-06 6.20312e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| gutter by the ||| 1 0.0642678 1.90631e-06 2.77929e-10 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| habits ||| 0.00209205 0.120241 1.90631e-06 5.83e-05 2.718 ||| 0-0 ||| 478 524574 +los ||| hackers ||| 0.05 0.306122 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 20 524574 +los ||| had any ||| 0.00826446 0.0178119 1.90631e-06 9.27017e-07 2.718 ||| 0-1 ||| 121 524574 +los ||| had left by the ||| 1 0.122289 1.90631e-06 4.26989e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| had that experience with the ||| 1 0.122289 1.90631e-06 3.20014e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| had the opportunity ||| 0.00226757 0.122289 1.90631e-06 7.74548e-08 2.718 ||| 0-1 ||| 441 524574 +los ||| had the ||| 0.00465839 0.122289 1.71568e-05 0.000430543 2.718 ||| 0-1 ||| 1932 524574 +los ||| had their computers , ||| 1 0.221963 1.90631e-06 1.28195e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| had their computers ||| 1 0.221963 1.90631e-06 1.07497e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| had their way , it ||| 0.111111 0.0236713 1.90631e-06 1.04968e-11 2.718 ||| 0-1 ||| 9 524574 +los ||| had their way , ||| 0.111111 0.0236713 1.90631e-06 5.90265e-10 2.718 ||| 0-1 ||| 9 524574 +los ||| had their way ||| 0.0909091 0.0236713 1.90631e-06 4.94961e-09 2.718 ||| 0-1 ||| 11 524574 +los ||| had their ||| 0.00961538 0.0236713 1.90631e-06 2.29616e-06 2.718 ||| 0-1 ||| 104 524574 +los ||| had to fight its ||| 1 0.0211371 1.90631e-06 1.04923e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| had too much experience of journeys to ||| 1 0.0019787 1.90631e-06 1.11382e-22 2.718 ||| 0-4 ||| 1 524574 +los ||| had too much experience of journeys ||| 1 0.0019787 1.90631e-06 1.25348e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| had too much experience of ||| 1 0.0019787 1.90631e-06 3.1337e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| halal ||| 1 0.4 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| half is given to group representatives . ||| 1 0.135512 1.90631e-06 2.06912e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| half is given to group representatives ||| 1 0.135512 1.90631e-06 6.83102e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| half-way those ||| 0.5 0.284705 1.90631e-06 6.67904e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| halting the deportations ||| 0.125 0.122289 1.90631e-06 1.88741e-13 2.718 ||| 0-1 ||| 8 524574 +los ||| halting the ||| 0.0144928 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 69 524574 +los ||| hand , and consequently the ||| 1 0.122289 1.90631e-06 1.1334e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| hand , concerning the ||| 1 0.122289 1.90631e-06 1.24772e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| hand , the ||| 0.00121065 0.122289 1.90631e-06 2.02881e-05 2.718 ||| 0-2 ||| 826 524574 +los ||| hand and those of ||| 0.5 0.284705 1.90631e-06 4.50949e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| hand and those ||| 0.333333 0.284705 1.90631e-06 8.29499e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| hand in our ||| 0.5 0.0001268 1.90631e-06 7.55504e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| hand in ||| 0.00206186 0.0001268 1.90631e-06 5.47705e-08 2.718 ||| 0-1 ||| 485 524574 +los ||| handle the ||| 0.0194175 0.122289 3.81262e-06 5.10458e-06 2.718 ||| 0-1 ||| 103 524574 +los ||| handling of the ||| 0.01 0.122289 1.90631e-06 3.03157e-07 2.718 ||| 0-2 ||| 100 524574 +los ||| handling ||| 0.0016129 0.0027599 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 1240 524574 +los ||| happen , the conditions ||| 1 0.122289 1.90631e-06 6.64486e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| happen , the ||| 0.0434783 0.122289 3.81262e-06 5.56055e-06 2.718 ||| 0-2 ||| 46 524574 +los ||| happen to the ||| 0.0666667 0.122289 3.81262e-06 4.14324e-06 2.718 ||| 0-2 ||| 30 524574 +los ||| happened in the ||| 0.00346021 0.122289 1.90631e-06 5.68341e-07 2.718 ||| 0-2 ||| 289 524574 +los ||| happening in the ||| 0.00657895 0.122289 1.90631e-06 4.98561e-07 2.718 ||| 0-2 ||| 152 524574 +los ||| happens after the ||| 0.2 0.122289 1.90631e-06 6.93996e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| happens that the ||| 0.0555556 0.122289 1.90631e-06 4.30779e-07 2.718 ||| 0-2 ||| 18 524574 +los ||| happens the ||| 0.0714286 0.122289 1.90631e-06 2.56087e-05 2.718 ||| 0-1 ||| 14 524574 +los ||| happy for the ||| 0.5 0.122289 1.90631e-06 2.077e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| hard the ||| 0.0769231 0.122289 1.90631e-06 4.50833e-05 2.718 ||| 0-1 ||| 13 524574 +los ||| hard-won ||| 0.011236 0.0076923 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 89 524574 +los ||| hardest ||| 0.00518135 0.0196507 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 193 524574 +los ||| hardly surprising that the ||| 0.5 0.122289 1.90631e-06 8.18986e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| harm the ||| 0.0144928 0.122289 3.81262e-06 4.63273e-06 2.718 ||| 0-1 ||| 138 524574 +los ||| harmful ||| 0.000541126 0.0026233 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 1848 524574 +los ||| harness the ||| 0.0285714 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 35 524574 +los ||| has Objective ||| 0.0909091 0.0077841 1.90631e-06 7.51535e-08 2.718 ||| 0-1 ||| 11 524574 +los ||| has a certain ||| 0.030303 0.0030672 1.90631e-06 1.44202e-08 2.718 ||| 0-2 ||| 33 524574 +los ||| has a human cost , whether ||| 1 0.319795 1.90631e-06 1.15445e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| has a human cost , ||| 1 0.319795 1.90631e-06 4.39456e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| has a human cost ||| 1 0.319795 1.90631e-06 3.68502e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| has a human ||| 0.5 0.319795 1.90631e-06 4.45051e-06 2.718 ||| 0-2 ||| 2 524574 +los ||| has all the right ||| 0.5 0.122289 1.90631e-06 6.72884e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| has all the ||| 0.0166667 0.122289 1.90631e-06 1.04339e-05 2.718 ||| 0-2 ||| 60 524574 +los ||| has also raised the question ||| 1 0.122289 1.90631e-06 1.06242e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| has also raised the ||| 0.111111 0.122289 1.90631e-06 1.2842e-09 2.718 ||| 0-3 ||| 9 524574 +los ||| has been described as the ||| 0.111111 0.122289 1.90631e-06 3.35563e-12 2.718 ||| 0-4 ||| 9 524574 +los ||| has been doing over the ||| 1 0.122289 1.90631e-06 1.30326e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| has been done through the ||| 0.5 0.122289 1.90631e-06 1.5476e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| has been made to the ||| 0.0714286 0.122289 1.90631e-06 1.37244e-09 2.718 ||| 0-4 ||| 14 524574 +los ||| has been said both here in the ||| 1 0.0352574 1.90631e-06 2.25643e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| has been said both here in ||| 1 0.0352574 1.90631e-06 3.67546e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| has been said both here ||| 1 0.0352574 1.90631e-06 1.71714e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| has been said both ||| 1 0.0352574 1.90631e-06 8.46802e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| has been the case ||| 0.00591716 0.122289 1.90631e-06 7.88851e-09 2.718 ||| 0-2 ||| 169 524574 +los ||| has been the whole ||| 0.5 0.122289 1.90631e-06 4.17098e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| has been the ||| 0.00654308 0.122289 1.14379e-05 7.37313e-06 2.718 ||| 0-2 ||| 917 524574 +los ||| has examined the ||| 0.0333333 0.122289 1.90631e-06 3.88617e-08 2.718 ||| 0-2 ||| 30 524574 +los ||| has got a fine record ||| 1 0.0063694 1.90631e-06 2.03356e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| has got a fine ||| 1 0.0063694 1.90631e-06 3.64438e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| has had the opportunity ||| 0.0434783 0.122289 1.90631e-06 3.98698e-10 2.718 ||| 0-2 ||| 23 524574 +los ||| has had the ||| 0.0131579 0.122289 3.81262e-06 2.21622e-06 2.718 ||| 0-2 ||| 152 524574 +los ||| has identified ||| 0.00892857 0.0009346 1.90631e-06 9.78025e-09 2.718 ||| 0-1 ||| 112 524574 +los ||| has increased the ||| 0.0178571 0.122289 1.90631e-06 1.0974e-07 2.718 ||| 0-2 ||| 56 524574 +los ||| has its ||| 0.00436047 0.0211371 5.71893e-06 1.09904e-05 2.718 ||| 0-1 ||| 688 524574 +los ||| has kept the internal ||| 0.5 0.122289 1.90631e-06 7.30494e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| has kept the ||| 0.0666667 0.122289 1.90631e-06 1.57434e-07 2.718 ||| 0-2 ||| 15 524574 +los ||| has many ||| 0.00440529 0.0029977 1.90631e-06 7.25798e-07 2.718 ||| 0-1 ||| 227 524574 +los ||| has much the same ||| 1 0.122289 1.90631e-06 1.78339e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| has much the ||| 1 0.122289 1.90631e-06 2.21622e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| has opened up ||| 0.0128205 0.0031618 1.90631e-06 2.82639e-11 2.718 ||| 0-2 ||| 78 524574 +los ||| has operated down the ||| 1 0.122289 1.90631e-06 1.77266e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| has produced the ||| 0.0526316 0.122289 1.90631e-06 2.33612e-07 2.718 ||| 0-2 ||| 19 524574 +los ||| has provided the ||| 0.027027 0.122289 1.90631e-06 5.06086e-07 2.718 ||| 0-2 ||| 37 524574 +los ||| has put the ||| 0.037037 0.122289 1.90631e-06 2.4346e-06 2.718 ||| 0-2 ||| 27 524574 +los ||| has still not been appointed ; the ||| 1 0.122289 1.90631e-06 6.54044e-20 2.718 ||| 0-6 ||| 1 524574 +los ||| has the remit ||| 0.333333 0.122289 1.90631e-06 3.66537e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| has the status of a candidate country ||| 0.333333 0.0335599 1.90631e-06 4.25597e-18 2.718 ||| 0-5 ||| 3 524574 +los ||| has the status of a candidate ||| 1 0.0335599 1.90631e-06 1.18254e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| has the ||| 0.0033557 0.122289 2.28757e-05 0.00220805 2.718 ||| 0-1 ||| 3576 524574 +los ||| has to cross the ||| 0.5 0.122289 1.90631e-06 2.55065e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| has to respect ||| 0.0588235 0.0045864 1.90631e-06 4.84841e-08 2.718 ||| 0-2 ||| 17 524574 +los ||| hate ||| 0.00943396 0.039039 3.81262e-06 1.26e-05 2.718 ||| 0-0 ||| 212 524574 +los ||| hatred between the ||| 0.25 0.122289 1.90631e-06 1.58422e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| hauliers ||| 0.00520833 0.334319 1.90631e-06 0.0001099 2.718 ||| 0-0 ||| 192 524574 +los ||| have , these ||| 0.5 0.0240362 1.90631e-06 3.47651e-06 2.718 ||| 0-2 ||| 2 524574 +los ||| have - the ||| 0.166667 0.122289 1.90631e-06 1.93517e-05 2.718 ||| 0-2 ||| 6 524574 +los ||| have a duty to regulate the ||| 1 0.122289 1.90631e-06 1.02366e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| have accused farmers of wanting ||| 0.25 0.380089 1.90631e-06 5.95427e-16 2.718 ||| 0-2 ||| 4 524574 +los ||| have accused farmers of ||| 0.25 0.380089 1.90631e-06 4.02316e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| have accused farmers ||| 0.25 0.380089 1.90631e-06 7.40041e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| have achieved the ||| 0.0526316 0.122289 3.81262e-06 8.58288e-07 2.718 ||| 0-2 ||| 38 524574 +los ||| have all noticed the alarming increase ||| 1 0.122289 1.90631e-06 1.51908e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| have all noticed the alarming ||| 1 0.122289 1.90631e-06 1.17576e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| have all noticed the ||| 1 0.122289 1.90631e-06 2.35151e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| have all these ||| 0.2 0.0209145 1.90631e-06 7.83694e-08 2.718 ||| 0-1 0-2 ||| 5 524574 +los ||| have all ||| 0.00210084 0.0177928 1.90631e-06 3.21515e-05 2.718 ||| 0-1 ||| 476 524574 +los ||| have already pointed to the ||| 0.5 0.122289 1.90631e-06 9.73218e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| have any great ||| 0.125 0.0178119 1.90631e-06 4.34111e-09 2.718 ||| 0-1 ||| 8 524574 +los ||| have any ||| 0.00114286 0.0178119 1.90631e-06 1.10461e-05 2.718 ||| 0-1 ||| 875 524574 +los ||| have appropriate ||| 0.125 0.0010555 1.90631e-06 1.3993e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| have at the moment is a ||| 1 0.122289 1.90631e-06 5.39275e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| have at the moment is ||| 0.333333 0.122289 1.90631e-06 1.21662e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| have at the moment ||| 0.0454545 0.122289 1.90631e-06 3.88186e-09 2.718 ||| 0-2 ||| 22 524574 +los ||| have at the ||| 0.0243902 0.122289 1.90631e-06 2.14823e-05 2.718 ||| 0-2 ||| 41 524574 +los ||| have been approached by members of the ||| 0.5 0.122289 1.90631e-06 7.78886e-18 2.718 ||| 0-6 ||| 2 524574 +los ||| have been compulsory ||| 0.5 0.011889 1.90631e-06 1.05032e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| have been doing the rounds ||| 0.5 0.122289 1.90631e-06 3.14437e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| have been doing the ||| 0.333333 0.122289 1.90631e-06 6.28874e-09 2.718 ||| 0-3 ||| 3 524574 +los ||| have been made in the ||| 0.0555556 0.122289 1.90631e-06 7.68116e-10 2.718 ||| 0-4 ||| 18 524574 +los ||| have been many ||| 0.0153846 0.0029977 1.90631e-06 5.631e-09 2.718 ||| 0-2 ||| 65 524574 +los ||| have been preceded by the ||| 1 0.122289 1.90631e-06 1.97865e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| have been the ||| 0.00533333 0.122289 3.81262e-06 1.71309e-05 2.718 ||| 0-2 ||| 375 524574 +los ||| have been vested in the ||| 1 0.122289 1.90631e-06 2.23673e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| have certain reservations as to their suitability ||| 1 0.0236713 1.90631e-06 8.27254e-23 2.718 ||| 0-5 ||| 1 524574 +los ||| have certain reservations as to their ||| 1 0.0236713 1.90631e-06 4.59585e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| have child sports stars ||| 1 0.0836397 1.90631e-06 4.90482e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| have child sports ||| 1 0.0836397 1.90631e-06 3.50344e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| have considered the ||| 0.125 0.122289 1.90631e-06 5.52013e-07 2.718 ||| 0-2 ||| 8 524574 +los ||| have covered the ||| 0.1 0.122289 1.90631e-06 3.67325e-07 2.718 ||| 0-2 ||| 10 524574 +los ||| have criticisms of me , you write ||| 1 0.0019787 1.90631e-06 4.18098e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| have criticisms of me , you ||| 1 0.0019787 1.90631e-06 4.31029e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| have criticisms of me , ||| 1 0.0019787 1.90631e-06 1.33499e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| have criticisms of me ||| 1 0.0019787 1.90631e-06 1.11945e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| have criticisms of ||| 1 0.0019787 1.90631e-06 1.85924e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| have cultivated their own culture ||| 0.5 0.0236713 1.90631e-06 5.32676e-18 2.718 ||| 0-2 ||| 2 524574 +los ||| have cultivated their own ||| 0.5 0.0236713 1.90631e-06 2.69028e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| have cultivated their ||| 0.5 0.0236713 1.90631e-06 1.58691e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| have demands from the ||| 1 0.122289 1.90631e-06 3.18076e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| have developed ||| 0.00623053 0.005811 3.81262e-06 3.95869e-07 2.718 ||| 0-1 ||| 321 524574 +los ||| have difficulty keeping afloat ||| 0.111111 0.0038775 1.90631e-06 1.46173e-18 2.718 ||| 0-2 ||| 9 524574 +los ||| have difficulty keeping ||| 0.0833333 0.0038775 1.90631e-06 2.08818e-12 2.718 ||| 0-2 ||| 12 524574 +los ||| have discussed the matter ||| 0.25 0.122289 1.90631e-06 2.79437e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| have discussed the ||| 0.0454545 0.122289 1.90631e-06 2.69337e-07 2.718 ||| 0-2 ||| 22 524574 +los ||| have either the ||| 0.25 0.122289 1.90631e-06 4.44175e-06 2.718 ||| 0-2 ||| 4 524574 +los ||| have enabled them ||| 1 0.038218 1.90631e-06 3.63461e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| have every ||| 0.00537634 0.144232 1.90631e-06 3.90356e-05 2.718 ||| 0-1 ||| 186 524574 +los ||| have fled their homes ||| 0.142857 0.0236713 1.90631e-06 1.93438e-16 2.718 ||| 0-2 ||| 7 524574 +los ||| have fled their ||| 0.1 0.0236713 1.90631e-06 1.91523e-11 2.718 ||| 0-2 ||| 10 524574 +los ||| have found its way ||| 0.125 0.0211371 1.90631e-06 1.20436e-11 2.718 ||| 0-2 ||| 8 524574 +los ||| have found its ||| 0.125 0.0211371 1.90631e-06 5.58714e-09 2.718 ||| 0-2 ||| 8 524574 +los ||| have fulfilled their relative ||| 1 0.0236713 1.90631e-06 2.8318e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| have fulfilled their ||| 0.1 0.0236713 1.90631e-06 3.14645e-10 2.718 ||| 0-2 ||| 10 524574 +los ||| have fundamental ||| 0.0833333 0.0942078 1.90631e-06 1.77208e-05 2.718 ||| 0-1 ||| 12 524574 +los ||| have had the ||| 0.0041841 0.122289 1.90631e-06 5.14921e-06 2.718 ||| 0-2 ||| 239 524574 +los ||| have happened in the ||| 0.0714286 0.122289 1.90631e-06 6.79724e-09 2.718 ||| 0-3 ||| 14 524574 +los ||| have included the ||| 0.0714286 0.122289 1.90631e-06 4.81729e-07 2.718 ||| 0-2 ||| 14 524574 +los ||| have its funding ||| 0.333333 0.031089 1.90631e-06 5.69959e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| have looked behind the scenes will ||| 0.25 0.122289 1.90631e-06 8.67236e-19 2.718 ||| 0-3 ||| 4 524574 +los ||| have looked behind the scenes ||| 0.25 0.122289 1.90631e-06 1.00245e-16 2.718 ||| 0-3 ||| 4 524574 +los ||| have looked behind the ||| 0.25 0.122289 1.90631e-06 2.13286e-11 2.718 ||| 0-3 ||| 4 524574 +los ||| have lost the initiative ||| 0.5 0.122289 1.90631e-06 1.82736e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| have lost the ||| 0.037037 0.122289 1.90631e-06 2.9191e-07 2.718 ||| 0-2 ||| 27 524574 +los ||| have made to us that the ||| 1 0.122289 1.90631e-06 4.62987e-11 2.718 ||| 0-5 ||| 1 524574 +los ||| have never been studied together , they ||| 1 0.0072404 1.90631e-06 4.3159e-22 2.718 ||| 0-6 ||| 1 524574 +los ||| have no intention of questioning that ||| 1 0.0019787 1.90631e-06 8.48699e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| have no intention of questioning ||| 1 0.0019787 1.90631e-06 5.04529e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| have no intention of ||| 0.0185185 0.0019787 1.90631e-06 1.73976e-12 2.718 ||| 0-3 ||| 54 524574 +los ||| have occupied ||| 0.0833333 0.0012005 1.90631e-06 1.19598e-08 2.718 ||| 0-1 ||| 12 524574 +los ||| have our ||| 0.00387597 0.0248369 1.90631e-06 4.27096e-05 2.718 ||| 0-1 ||| 258 524574 +los ||| have pupils and young ||| 1 0.275665 1.90631e-06 1.34552e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| have pupils and ||| 1 0.275665 1.90631e-06 2.11228e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| have pupils ||| 1 0.275665 1.90631e-06 1.68633e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| have put down ||| 0.0769231 0.0049833 1.90631e-06 1.1288e-09 2.718 ||| 0-2 ||| 13 524574 +los ||| have raised all ||| 1 0.0177928 1.90631e-06 3.70386e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| have reached the stage where ||| 1 0.122289 1.90631e-06 2.51319e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| have reached the stage ||| 0.25 0.122289 1.90631e-06 8.29435e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| have reached the ||| 0.0120482 0.122289 1.90631e-06 5.54065e-07 2.718 ||| 0-2 ||| 83 524574 +los ||| have relevant experience ||| 0.333333 0.0094642 1.90631e-06 4.74366e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| have relevant ||| 0.333333 0.0094642 1.90631e-06 6.86493e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| have seen the ||| 0.0106383 0.122289 1.90631e-06 1.07991e-06 2.718 ||| 0-2 ||| 94 524574 +los ||| have set their ||| 0.5 0.0236713 1.90631e-06 1.59894e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| have significant effects ||| 0.2 0.0022391 1.90631e-06 1.00577e-11 2.718 ||| 0-2 ||| 5 524574 +los ||| have solved the ||| 0.142857 0.122289 1.90631e-06 5.54065e-08 2.718 ||| 0-2 ||| 7 524574 +los ||| have taken the ||| 0.00546448 0.122289 1.90631e-06 4.67621e-06 2.718 ||| 0-2 ||| 183 524574 +los ||| have taken their seats ||| 0.0454545 0.0935673 1.90631e-06 9.83062e-13 2.718 ||| 0-3 ||| 22 524574 +los ||| have taken their ||| 0.030303 0.0236713 1.90631e-06 2.4939e-08 2.718 ||| 0-2 ||| 33 524574 +los ||| have taken your last ||| 1 0.0096341 1.90631e-06 7.3378e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| have taken your ||| 0.5 0.0096341 1.90631e-06 3.3598e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| have the ability ||| 0.02 0.122289 1.90631e-06 2.36504e-07 2.718 ||| 0-1 ||| 50 524574 +los ||| have the annual ||| 1 0.122289 1.90631e-06 1.47751e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| have the courage ||| 0.00251889 0.122289 1.90631e-06 4.412e-08 2.718 ||| 0-1 ||| 397 524574 +los ||| have the expertise ||| 0.111111 0.122289 1.90631e-06 3.48856e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| have the facility for ||| 0.5 0.122289 1.90631e-06 5.40183e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| have the facility ||| 0.0833333 0.122289 1.90631e-06 7.02842e-08 2.718 ||| 0-1 ||| 12 524574 +los ||| have the interests of the ||| 1 0.122289 1.90631e-06 2.34745e-09 2.718 ||| 0-4 ||| 1 524574 +los ||| have the opportunity to ||| 0.00274725 0.122289 1.90631e-06 8.20098e-08 2.718 ||| 0-1 ||| 364 524574 +los ||| have the opportunity ||| 0.00421053 0.122289 3.81262e-06 9.22929e-07 2.718 ||| 0-1 ||| 475 524574 +los ||| have the proper identity ||| 0.5 0.122289 1.90631e-06 9.17131e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| have the proper ||| 0.2 0.122289 1.90631e-06 4.54025e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| have the right ||| 0.00111359 0.122289 1.90631e-06 3.30849e-06 2.718 ||| 0-1 ||| 898 524574 +los ||| have the very ||| 0.142857 0.122289 1.90631e-06 1.78506e-05 2.718 ||| 0-1 ||| 7 524574 +los ||| have the ||| 0.0167785 0.122289 0.000238289 0.00513023 2.718 ||| 0-1 ||| 7450 524574 +los ||| have their ||| 0.0070922 0.0236713 9.53154e-06 2.73604e-05 2.718 ||| 0-1 ||| 705 524574 +los ||| have them controlled by blinded ||| 1 0.038218 1.90631e-06 1.34838e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| have them controlled by ||| 1 0.038218 1.90631e-06 1.2258e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| have them controlled ||| 1 0.038218 1.90631e-06 2.33482e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| have them ||| 0.0222222 0.038218 5.71893e-06 2.40703e-05 2.718 ||| 0-1 ||| 135 524574 +los ||| have those ||| 0.108108 0.284705 7.62523e-06 0.0001997 2.718 ||| 0-1 ||| 37 524574 +los ||| have to do with ||| 0.00806452 0.0007437 1.90631e-06 8.44791e-10 2.718 ||| 0-3 ||| 124 524574 +los ||| have to foot the bill for a ||| 1 0.122289 1.90631e-06 5.99136e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| have to foot the bill for ||| 0.2 0.122289 1.90631e-06 1.35166e-15 2.718 ||| 0-3 ||| 5 524574 +los ||| have to foot the bill ||| 0.0909091 0.122289 1.90631e-06 1.75867e-13 2.718 ||| 0-3 ||| 11 524574 +los ||| have to foot the ||| 0.0714286 0.122289 1.90631e-06 1.01657e-08 2.718 ||| 0-3 ||| 14 524574 +los ||| have to make the ||| 0.0555556 0.122289 1.90631e-06 7.92199e-07 2.718 ||| 0-3 ||| 18 524574 +los ||| have to tell you that the ||| 0.5 0.122289 1.90631e-06 2.43131e-12 2.718 ||| 0-5 ||| 2 524574 +los ||| have ||| 6.36157e-06 2.9e-06 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 157194 524574 +los ||| having agreed the ||| 0.166667 0.122289 1.90631e-06 1.28277e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| having carried out the ||| 0.333333 0.122289 1.90631e-06 1.85406e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| having highlighted the ||| 0.25 0.122289 1.90631e-06 3.3178e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| having put my ||| 1 0.0086409 1.90631e-06 2.91012e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| having said this , the ||| 0.0555556 0.122289 1.90631e-06 5.20546e-11 2.718 ||| 0-4 ||| 18 524574 +los ||| having the ||| 0.00366972 0.122289 3.81262e-06 0.000164247 2.718 ||| 0-1 ||| 545 524574 +los ||| having to store such ||| 1 0.0016619 1.90631e-06 5.64622e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| hazardous ||| 0.00181324 0.0157116 3.81262e-06 1.65e-05 2.718 ||| 0-0 ||| 1103 524574 +los ||| he is driven mad by ||| 1 0.0062464 1.90631e-06 7.05759e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| he may take the ||| 1 0.122289 1.90631e-06 4.51546e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| head between these ||| 1 0.0240362 1.90631e-06 4.64898e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| head in the ||| 0.0188679 0.122289 1.90631e-06 6.63829e-07 2.718 ||| 0-2 ||| 53 524574 +los ||| heading ||| 0.000653595 0.0009294 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1530 524574 +los ||| headlines ||| 0.00465116 0.131868 1.90631e-06 4.67e-05 2.718 ||| 0-0 ||| 215 524574 +los ||| heads ||| 0.00105597 0.0965575 1.90631e-06 0.0001118 2.718 ||| 0-0 ||| 947 524574 +los ||| health centres ||| 0.0555556 0.185366 1.90631e-06 3.68465e-08 2.718 ||| 0-1 ||| 18 524574 +los ||| health is the result of ||| 1 0.122289 1.90631e-06 3.1977e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| health is the result ||| 1 0.122289 1.90631e-06 5.88202e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| health is the ||| 0.0666667 0.122289 1.90631e-06 1.11719e-06 2.718 ||| 0-2 ||| 15 524574 +los ||| health problems ||| 0.00332226 0.106249 1.90631e-06 2.54826e-07 2.718 ||| 0-1 ||| 301 524574 +los ||| health services and our ||| 0.5 0.272175 1.90631e-06 1.11931e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| health services and ||| 0.0116279 0.272175 1.90631e-06 8.11446e-09 2.718 ||| 0-1 ||| 86 524574 +los ||| health services ||| 0.00328947 0.272175 3.81262e-06 6.47814e-07 2.718 ||| 0-1 ||| 608 524574 +los ||| health ||| 0.00101304 0.0030664 4.57514e-05 8.65e-05 2.718 ||| 0-0 ||| 23691 524574 +los ||| healthy ||| 0.00152905 0.0027447 5.71893e-06 5.8e-06 2.718 ||| 0-0 ||| 1962 524574 +los ||| heaps for food ||| 1 0.123536 1.90631e-06 1.1858e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| hear from the ||| 0.0163934 0.122289 1.90631e-06 7.01153e-08 2.718 ||| 0-2 ||| 61 524574 +los ||| hear the comments of the Member of ||| 1 0.062134 1.90631e-06 1.23835e-17 2.718 ||| 0-3 0-4 ||| 1 524574 +los ||| hear the comments of the Member ||| 1 0.062134 1.90631e-06 2.27789e-16 2.718 ||| 0-3 0-4 ||| 1 524574 +los ||| hear the comments of the ||| 0.333333 0.062134 1.90631e-06 4.42051e-13 2.718 ||| 0-3 0-4 ||| 3 524574 +los ||| hear the ||| 0.0163934 0.122289 9.53154e-06 4.35391e-05 2.718 ||| 0-1 ||| 305 524574 +los ||| hear those ||| 0.142857 0.284705 1.90631e-06 1.69481e-06 2.718 ||| 0-1 ||| 7 524574 +los ||| hear ||| 0.000444642 0.0002012 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2249 524574 +los ||| heard at all ||| 0.2 0.0177928 1.90631e-06 8.91553e-10 2.718 ||| 0-2 ||| 5 524574 +los ||| heard both ||| 0.142857 0.0352574 1.90631e-06 9.48658e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| heard by the ||| 0.0526316 0.122289 1.90631e-06 1.78363e-07 2.718 ||| 0-2 ||| 19 524574 +los ||| heard from the ||| 0.00884956 0.122289 1.90631e-06 5.47107e-08 2.718 ||| 0-2 ||| 113 524574 +los ||| heard these ||| 0.125 0.0240362 1.90631e-06 1.9305e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| heard to make them heard ||| 1 0.038218 1.90631e-06 1.94942e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| heard to make them ||| 1 0.038218 1.90631e-06 2.46139e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| hearing me list the ||| 0.25 0.122289 1.90631e-06 4.96541e-13 2.718 ||| 0-3 ||| 4 524574 +los ||| heart of the ||| 0.00130039 0.122289 1.90631e-06 1.87957e-06 2.718 ||| 0-2 ||| 769 524574 +los ||| heat ||| 0.00273973 0.0021882 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 365 524574 +los ||| heating for people ' ||| 1 0.0444479 1.90631e-06 1.15149e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| heavily the ||| 0.5 0.122289 1.90631e-06 9.43704e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| heavily ||| 0.00177936 0.0017271 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 562 524574 +los ||| heavy machine guns against everybody ||| 0.5 0.0663194 1.90631e-06 6.33215e-24 2.718 ||| 0-4 ||| 2 524574 +los ||| heavy metals are ||| 0.333333 0.221854 1.90631e-06 1.73843e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| heavy metals ||| 0.00666667 0.221854 1.90631e-06 1.14576e-09 2.718 ||| 0-1 ||| 150 524574 +los ||| heavy ||| 0.00222717 0.0030426 7.62523e-06 5.8e-06 2.718 ||| 0-0 ||| 1796 524574 +los ||| hedge ||| 0.00431034 0.191235 1.90631e-06 0.00014 2.718 ||| 0-0 ||| 232 524574 +los ||| heed the ||| 0.0217391 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-1 ||| 46 524574 +los ||| held by the Union ||| 0.5 0.122289 1.90631e-06 3.20227e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| held by the ||| 0.0165746 0.122289 5.71893e-06 5.74501e-07 2.718 ||| 0-2 ||| 181 524574 +los ||| held up by ||| 0.0434783 0.0062464 1.90631e-06 1.40926e-09 2.718 ||| 0-2 ||| 23 524574 +los ||| help , its technical ||| 1 0.0012609 1.90631e-06 3.46684e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| help countries ||| 0.0204082 0.0957208 1.90631e-06 1.58971e-06 2.718 ||| 0-1 ||| 49 524574 +los ||| help protect ||| 0.037037 0.0019251 1.90631e-06 2.78422e-09 2.718 ||| 0-1 ||| 27 524574 +los ||| help reduce the ||| 0.04 0.122289 1.90631e-06 3.11665e-09 2.718 ||| 0-2 ||| 25 524574 +los ||| help the ||| 0.00464037 0.122289 1.14379e-05 8.1802e-05 2.718 ||| 0-1 ||| 1293 524574 +los ||| help them ||| 0.00140845 0.038218 1.90631e-06 3.83803e-07 2.718 ||| 0-1 ||| 710 524574 +los ||| help to shape our ||| 1 0.0248369 1.90631e-06 3.66105e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| helpers ||| 0.0625 0.047619 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| helping pro-democracy forces ||| 0.5 0.0333333 1.90631e-06 5.7989e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| helping pro-democracy ||| 0.5 0.0333333 1.90631e-06 1.0962e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| helping the ||| 0.00247525 0.122289 1.90631e-06 1.62145e-05 2.718 ||| 0-1 ||| 404 524574 +los ||| helping ||| 0.000401123 0.0013908 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 2493 524574 +los ||| hence the ||| 0.00165017 0.122289 1.90631e-06 1.111e-05 2.718 ||| 0-1 ||| 606 524574 +los ||| henchmen ||| 0.030303 0.111111 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 33 524574 +los ||| her baby ||| 0.1 0.0071942 1.90631e-06 7.8909e-10 2.718 ||| 0-1 ||| 10 524574 +los ||| her family ||| 0.0172414 0.0019712 1.90631e-06 3.42846e-09 2.718 ||| 0-1 ||| 58 524574 +los ||| herbal ||| 0.0133333 0.0045249 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 75 524574 +los ||| here 's to the ||| 1 0.122289 1.90631e-06 1.47195e-07 2.718 ||| 0-3 ||| 1 524574 +los ||| here , the ||| 0.0142857 0.122289 3.81262e-06 0.000103732 2.718 ||| 0-2 ||| 140 524574 +los ||| here and make human ||| 0.5 0.319795 1.90631e-06 8.60976e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| here are the ||| 0.0666667 0.122289 1.90631e-06 1.31978e-05 2.718 ||| 0-2 ||| 15 524574 +los ||| here in the ||| 0.000983284 0.122289 1.90631e-06 1.86184e-05 2.718 ||| 0-2 ||| 1017 524574 +los ||| here in ||| 0.000272331 0.0001268 1.90631e-06 2.80039e-07 2.718 ||| 0-1 ||| 3672 524574 +los ||| here the ||| 0.00609756 0.122289 3.81262e-06 0.000869838 2.718 ||| 0-1 ||| 328 524574 +los ||| here to the ||| 0.0119048 0.122289 1.90631e-06 7.72922e-05 2.718 ||| 0-2 ||| 84 524574 +los ||| herself indicated the ||| 1 0.122289 1.90631e-06 2.23838e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| high heels ||| 0.166667 0.0033276 1.90631e-06 2.0898e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| high income ||| 0.0588235 0.0989474 1.90631e-06 6.14071e-08 2.718 ||| 0-1 ||| 17 524574 +los ||| high level ||| 0.000577034 0.0033276 1.90631e-06 4.15724e-08 2.718 ||| 0-0 ||| 1733 524574 +los ||| high levels ||| 0.00268817 0.222552 1.90631e-06 2.93658e-07 2.718 ||| 0-1 ||| 372 524574 +los ||| high quality ||| 0.000963391 0.0033276 1.90631e-06 2.39598e-09 2.718 ||| 0-0 ||| 1038 524574 +los ||| high the ||| 0.0384615 0.122289 1.90631e-06 6.40432e-05 2.718 ||| 0-1 ||| 26 524574 +los ||| high time the ||| 0.0487805 0.122289 3.81262e-06 1.0514e-07 2.718 ||| 0-2 ||| 41 524574 +los ||| high where ||| 0.5 0.0449398 1.90631e-06 3.29505e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| high ||| 0.000988224 0.0033276 2.28757e-05 4.86e-05 2.718 ||| 0-0 ||| 12143 524574 +los ||| high-budget , ||| 1 1 1.90631e-06 1.19255e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| high-budget ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| high-intensity ||| 0.32 0.294118 1.52505e-05 9.7e-06 2.718 ||| 0-0 ||| 25 524574 +los ||| high-powered ||| 0.142857 0.125 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| high-ranking European politicians have joined in and ||| 1 0.299137 1.90631e-06 1.33781e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| high-ranking European politicians have joined in ||| 1 0.299137 1.90631e-06 1.06803e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| high-ranking European politicians have joined ||| 1 0.299137 1.90631e-06 4.98976e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| high-ranking European politicians have ||| 1 0.299137 1.90631e-06 3.96012e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| high-ranking European politicians ||| 1 0.299137 1.90631e-06 3.3112e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| high-saving ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| higher ||| 0.000218436 0.0012238 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 4578 524574 +los ||| highest to the ||| 0.333333 0.122289 1.90631e-06 8.38558e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| highlight the ||| 0.00258065 0.122289 3.81262e-06 8.02148e-06 2.718 ||| 0-1 ||| 775 524574 +los ||| highlighted the ||| 0.00194553 0.122289 1.90631e-06 8.66492e-06 2.718 ||| 0-1 ||| 514 524574 +los ||| highlighting the ||| 0.0058997 0.122289 3.81262e-06 3.08849e-06 2.718 ||| 0-1 ||| 339 524574 +los ||| highlights the ||| 0.00138889 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-1 ||| 720 524574 +los ||| highly mobile ||| 0.25 0.0620985 1.90631e-06 5.1183e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| highs ||| 0.0869565 0.0909091 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 23 524574 +los ||| him my very firm support . ||| 0.5 0.0086409 1.90631e-06 2.92249e-20 2.718 ||| 0-1 ||| 2 524574 +los ||| him my very firm support ||| 0.5 0.0086409 1.90631e-06 9.64837e-18 2.718 ||| 0-1 ||| 2 524574 +los ||| him my very firm ||| 0.5 0.0086409 1.90631e-06 2.82199e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| him my very ||| 0.5 0.0086409 1.90631e-06 7.68933e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| him my ||| 0.25 0.0086409 1.90631e-06 2.2099e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| him receive the ||| 1 0.122289 1.90631e-06 1.38073e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| himself the ||| 0.0769231 0.122289 1.90631e-06 3.17857e-05 2.718 ||| 0-1 ||| 13 524574 +los ||| his arms as he would ||| 1 0.0058818 1.90631e-06 2.50594e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| his arms as he ||| 1 0.0058818 1.90631e-06 4.27001e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| his arms as ||| 1 0.0058818 1.90631e-06 4.89288e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| his arms ||| 0.2 0.0058818 1.90631e-06 4.79487e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| his attention the ||| 0.5 0.122289 1.90631e-06 3.36819e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| his civil ||| 1 0.0248629 1.90631e-06 9.12237e-08 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| his colleagues ||| 0.00204082 0.0749603 1.90631e-06 2.3433e-07 2.718 ||| 0-1 ||| 490 524574 +los ||| his excellent , ||| 0.125 0.0058818 1.90631e-06 7.72048e-10 2.718 ||| 0-0 ||| 8 524574 +los ||| his excellent ||| 0.000909918 0.0058818 1.90631e-06 6.47394e-09 2.718 ||| 0-0 ||| 1099 524574 +los ||| his expert ||| 0.25 0.07 1.90631e-06 2.45508e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| his food ||| 0.25 0.123536 1.90631e-06 6.62332e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| his good ||| 0.00869565 0.0058818 1.90631e-06 8.97697e-08 2.718 ||| 0-0 ||| 115 524574 +los ||| his members ||| 0.125 0.154615 1.90631e-06 5.96613e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| his opinion ||| 0.00714286 0.0058818 1.90631e-06 4.24787e-08 2.718 ||| 0-0 ||| 140 524574 +los ||| his or her knowledge and ||| 0.333333 0.0058818 1.90631e-06 3.20397e-17 2.718 ||| 0-0 ||| 3 524574 +los ||| his or her knowledge ||| 0.333333 0.0058818 1.90631e-06 2.55788e-15 2.718 ||| 0-0 ||| 3 524574 +los ||| his or her ||| 0.00560224 0.0058818 3.81262e-06 5.385e-11 2.718 ||| 0-0 ||| 357 524574 +los ||| his or ||| 0.0217391 0.0058818 7.62523e-06 1.97905e-07 2.718 ||| 0-0 ||| 184 524574 +los ||| his own ||| 0.0011976 0.0058818 1.90631e-06 2.93456e-07 2.718 ||| 0-0 ||| 835 524574 +los ||| his parliamentary ||| 0.166667 0.0058818 1.90631e-06 5.41803e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| his spirits up ||| 0.5 0.0887372 1.90631e-06 2.59288e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| his spirits ||| 0.5 0.0887372 1.90631e-06 7.60265e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| his whole ||| 0.047619 0.0058818 1.90631e-06 9.79227e-08 2.718 ||| 0-0 ||| 21 524574 +los ||| his workers ||| 1 0.185191 1.90631e-06 1.26425e-06 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| his ||| 0.00447921 0.0058818 0.000263071 0.0001731 2.718 ||| 0-0 ||| 30809 524574 +los ||| history , the ||| 0.0588235 0.122289 3.81262e-06 1.84158e-06 2.718 ||| 0-2 ||| 34 524574 +los ||| hit squads ||| 0.5 0.113636 1.90631e-06 1.5337e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| hit the ||| 0.0238095 0.122289 7.62523e-06 1.34263e-05 2.718 ||| 0-1 ||| 168 524574 +los ||| hit ||| 0.00743494 0.0053063 1.52505e-05 1.07e-05 2.718 ||| 0-0 ||| 1076 524574 +los ||| hoisted ||| 0.166667 0.0666667 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| hold public debates ||| 1 0.122803 1.90631e-06 1.56828e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| hold the ||| 0.0196078 0.122289 1.33442e-05 7.47242e-05 2.718 ||| 0-1 ||| 357 524574 +los ||| hold these ||| 0.0416667 0.0240362 1.90631e-06 4.24613e-07 2.718 ||| 0-1 ||| 24 524574 +los ||| hold to the ||| 0.0833333 0.122289 1.90631e-06 6.63986e-06 2.718 ||| 0-2 ||| 12 524574 +los ||| holders of ||| 0.00787402 0.281955 1.90631e-06 7.92627e-06 2.718 ||| 0-0 ||| 127 524574 +los ||| holders ||| 0.0131926 0.281955 9.53154e-06 0.0001458 2.718 ||| 0-0 ||| 379 524574 +los ||| holding the ||| 0.003003 0.122289 1.90631e-06 2.57803e-05 2.718 ||| 0-1 ||| 333 524574 +los ||| holds the ||| 0.00806452 0.122289 1.90631e-06 1.21824e-05 2.718 ||| 0-1 ||| 124 524574 +los ||| holds them ||| 1 0.038218 1.90631e-06 5.71578e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| holiday ||| 0.00192678 0.0079745 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 519 524574 +los ||| home , the ||| 0.125 0.122289 1.90631e-06 5.19224e-06 2.718 ||| 0-2 ||| 8 524574 +los ||| home affairs ||| 0.00145349 0.178913 1.90631e-06 8.12203e-08 2.718 ||| 0-1 ||| 688 524574 +los ||| home of the ||| 0.04 0.122289 1.90631e-06 2.36696e-06 2.718 ||| 0-2 ||| 25 524574 +los ||| home the message that ||| 0.166667 0.122289 1.90631e-06 3.53015e-11 2.718 ||| 0-1 ||| 6 524574 +los ||| home the message ||| 0.111111 0.122289 1.90631e-06 2.09858e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| home the ||| 0.0344828 0.122289 1.90631e-06 4.35391e-05 2.718 ||| 0-1 ||| 29 524574 +los ||| home to ||| 0.004329 0.0159377 1.90631e-06 7.77509e-06 2.718 ||| 0-0 ||| 231 524574 +los ||| home ||| 0.0112547 0.0159377 0.000102941 8.75e-05 2.718 ||| 0-0 ||| 4798 524574 +los ||| homeless people ||| 0.0357143 0.0894672 1.90631e-06 1.73257e-08 2.718 ||| 0-1 ||| 28 524574 +los ||| homes at the ||| 0.166667 0.122289 1.90631e-06 1.81417e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| homosexual ||| 0.00462963 0.10989 1.90631e-06 2.92e-05 2.718 ||| 0-0 ||| 216 524574 +los ||| honestly by small specialists ||| 0.5 0.173824 1.90631e-06 9.99929e-17 2.718 ||| 0-3 ||| 2 524574 +los ||| honour human ||| 1 0.319795 1.90631e-06 3.64753e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| honour outstanding ||| 0.5 0.0120968 1.90631e-06 3.8148e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| honour the ||| 0.00621118 0.122289 1.90631e-06 8.02148e-06 2.718 ||| 0-1 ||| 161 524574 +los ||| honourable Members of this ||| 0.0294118 0.168879 1.90631e-06 8.8461e-11 2.718 ||| 0-1 ||| 34 524574 +los ||| honourable Members of ||| 0.0144928 0.168879 1.90631e-06 1.36907e-08 2.718 ||| 0-1 ||| 69 524574 +los ||| honourable Members ||| 0.000942507 0.168879 3.81262e-06 2.51834e-07 2.718 ||| 0-1 ||| 2122 524574 +los ||| honourable members some ||| 0.5 0.154615 1.90631e-06 1.12893e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| honourable members ||| 0.0188679 0.154615 1.90631e-06 1.03638e-07 2.718 ||| 0-1 ||| 53 524574 +los ||| honouring its ||| 0.0909091 0.0211371 1.90631e-06 1.49457e-09 2.718 ||| 0-1 ||| 11 524574 +los ||| honours the ||| 0.0625 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| hook or by ||| 0.0714286 0.0062464 1.90631e-06 5.92614e-12 2.718 ||| 0-2 ||| 14 524574 +los ||| hook the ||| 1 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| hope that the ||| 0.00112108 0.122289 1.90631e-06 1.26492e-06 2.718 ||| 0-2 ||| 892 524574 +los ||| hope the ||| 0.00934579 0.122289 1.90631e-06 7.5196e-05 2.718 ||| 0-1 ||| 107 524574 +los ||| hopeful , but previous ||| 0.5 0.0133636 1.90631e-06 1.4259e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| horrific scenarios ||| 1 0.0795756 1.90631e-06 3.212e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| host the ||| 0.0638298 0.122289 5.71893e-06 8.32175e-06 2.718 ||| 0-1 ||| 47 524574 +los ||| host ||| 0.0024855 0.0172563 5.71893e-06 1.94e-05 2.718 ||| 0-0 ||| 1207 524574 +los ||| hostage ||| 0.00352113 0.0066335 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 284 524574 +los ||| hostages ||| 0.004 0.108553 1.90631e-06 3.21e-05 2.718 ||| 0-0 ||| 250 524574 +los ||| hours of the ||| 0.037037 0.122289 1.90631e-06 5.03707e-07 2.718 ||| 0-2 ||| 27 524574 +los ||| house buyers ||| 0.333333 0.272727 1.90631e-06 9.4608e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| house moves ||| 0.25 0.0298507 1.90631e-06 7.1496e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| household ||| 0.0131148 0.0767494 7.62523e-06 3.31e-05 2.718 ||| 0-0 ||| 305 524574 +los ||| households ||| 0.00511509 0.237258 3.81262e-06 0.0001313 2.718 ||| 0-0 ||| 391 524574 +los ||| how each ||| 0.0869565 0.0497499 3.81262e-06 3.15356e-07 2.718 ||| 0-1 ||| 23 524574 +los ||| how it affected ||| 1 0.0010346 1.90631e-06 4.33398e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| how it is done in ||| 0.333333 0.00124 1.90631e-06 3.33468e-13 2.718 ||| 0-0 ||| 3 524574 +los ||| how it is done ||| 0.0769231 0.00124 1.90631e-06 1.55794e-11 2.718 ||| 0-0 ||| 13 524574 +los ||| how it is ||| 0.00309598 0.00124 1.90631e-06 3.41653e-08 2.718 ||| 0-0 ||| 323 524574 +los ||| how it ||| 0.00151515 0.00124 1.90631e-06 1.09011e-06 2.718 ||| 0-0 ||| 660 524574 +los ||| how its work is ||| 1 0.0211371 1.90631e-06 1.51811e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| how its work ||| 0.5 0.0211371 1.90631e-06 4.84384e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| how its ||| 0.0666667 0.0211371 1.90631e-06 7.6522e-07 2.718 ||| 0-1 ||| 15 524574 +los ||| how much ||| 0.00206825 0.00124 7.62523e-06 6.15268e-08 2.718 ||| 0-0 ||| 1934 524574 +los ||| how the ||| 0.00522876 0.122289 1.52505e-05 0.000153738 2.718 ||| 0-1 ||| 1530 524574 +los ||| how these ||| 0.00909091 0.0240362 1.90631e-06 8.736e-07 2.718 ||| 0-1 ||| 110 524574 +los ||| how they can ||| 0.0103093 0.0072404 1.90631e-06 8.72619e-10 2.718 ||| 0-1 ||| 97 524574 +los ||| how they ||| 0.004 0.0072404 3.81262e-06 2.93386e-07 2.718 ||| 0-1 ||| 500 524574 +los ||| how too ’ ||| 1 0.0139748 1.90631e-06 2.63695e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| how we ||| 0.000679348 0.00124 1.90631e-06 6.95896e-07 2.718 ||| 0-0 ||| 1472 524574 +los ||| how well ||| 0.00613497 0.00124 1.90631e-06 9.71973e-08 2.718 ||| 0-0 ||| 163 524574 +los ||| how ||| 0.00111685 0.00124 7.62523e-05 6.13e-05 2.718 ||| 0-0 ||| 35815 524574 +los ||| however , all the ||| 0.0555556 0.070041 1.90631e-06 1.52331e-07 2.718 ||| 0-2 0-3 ||| 18 524574 +los ||| however , his expert ||| 1 0.07 1.90631e-06 3.24313e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| however , move away from the ||| 1 0.122289 1.90631e-06 4.43829e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| however , that the ||| 0.0037594 0.122289 1.90631e-06 9.53187e-07 2.718 ||| 0-3 ||| 266 524574 +los ||| however , the ||| 0.00218818 0.122289 1.90631e-05 5.66645e-05 2.718 ||| 0-2 ||| 4570 524574 +los ||| however , then the ||| 0.5 0.122289 1.90631e-06 9.12524e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| however , those ||| 0.0217391 0.284705 1.90631e-06 2.20573e-06 2.718 ||| 0-2 ||| 46 524574 +los ||| however , ||| 0.000105441 0.0001065 9.53154e-06 1.27603e-06 2.718 ||| 0-0 ||| 47420 524574 +los ||| however many ||| 0.025641 0.0029977 1.90631e-06 1.56186e-07 2.718 ||| 0-1 ||| 39 524574 +los ||| however on the ||| 0.5 0.122289 1.90631e-06 3.17926e-06 2.718 ||| 0-2 ||| 2 524574 +los ||| however the ||| 0.0135135 0.122289 1.90631e-06 0.000475155 2.718 ||| 0-1 ||| 74 524574 +los ||| however ||| 0.000171265 0.0001065 1.71568e-05 1.07e-05 2.718 ||| 0-0 ||| 52550 524574 +los ||| huge demand among the ||| 1 0.122289 1.90631e-06 1.07537e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| huge gap between the date on ||| 1 0.122289 1.90631e-06 6.38201e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| huge gap between the date ||| 1 0.122289 1.90631e-06 9.5382e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| huge gap between the ||| 0.0909091 0.122289 1.90631e-06 9.33287e-14 2.718 ||| 0-3 ||| 11 524574 +los ||| huge number ||| 0.00512821 0.0013546 1.90631e-06 3.85944e-09 2.718 ||| 0-0 ||| 195 524574 +los ||| huge reduction ||| 0.125 0.0013546 1.90631e-06 3.198e-10 2.718 ||| 0-0 ||| 8 524574 +los ||| huge ||| 0.000729661 0.0013546 7.62523e-06 7.8e-06 2.718 ||| 0-0 ||| 5482 524574 +los ||| human affairs ||| 0.166667 0.319795 1.90631e-06 2.38747e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| human beings ' ||| 0.0833333 0.0444479 1.90631e-06 1.62785e-11 2.718 ||| 0-2 ||| 12 524574 +los ||| human beings and ||| 0.00257069 0.319795 1.90631e-06 6.05923e-09 2.718 ||| 0-0 ||| 389 524574 +los ||| human beings ||| 0.000840336 0.319795 3.81262e-06 4.83736e-07 2.718 ||| 0-0 ||| 2380 524574 +los ||| human cost , whether ||| 1 0.319795 1.90631e-06 5.05968e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| human cost , ||| 1 0.319795 1.90631e-06 1.92603e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| human cost ||| 0.04 0.319795 1.90631e-06 1.61506e-06 2.718 ||| 0-0 ||| 25 524574 +los ||| human health risk ||| 0.5 0.319795 1.90631e-06 1.89646e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| human health ||| 0.000935454 0.319795 1.90631e-06 1.62091e-06 2.718 ||| 0-0 ||| 1069 524574 +los ||| human potential ||| 0.0285714 0.0019657 1.90631e-06 1.67824e-09 2.718 ||| 0-1 ||| 35 524574 +los ||| human resources , the ||| 0.2 0.122289 1.90631e-06 4.51977e-10 2.718 ||| 0-3 ||| 5 524574 +los ||| human rights to be ||| 0.0263158 0.319795 1.90631e-06 6.28535e-09 2.718 ||| 0-0 ||| 38 524574 +los ||| human rights to ||| 0.00884956 0.319795 1.90631e-06 3.46818e-07 2.718 ||| 0-0 ||| 113 524574 +los ||| human rights ||| 0.000189107 0.319795 1.14379e-05 3.90305e-06 2.718 ||| 0-0 ||| 31728 524574 +los ||| human side ||| 0.0909091 0.319795 1.90631e-06 4.27561e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| human ||| 0.0112254 0.319795 0.000272602 0.0195055 2.718 ||| 0-0 ||| 12739 524574 +los ||| human-rights lawyer ||| 0.1 0.235294 1.90631e-06 1.555e-10 2.718 ||| 0-0 ||| 10 524574 +los ||| human-rights ||| 0.00990099 0.235294 1.90631e-06 3.11e-05 2.718 ||| 0-0 ||| 101 524574 +los ||| humans ||| 0.00416667 0.198889 3.81262e-06 0.000174 2.718 ||| 0-0 ||| 480 524574 +los ||| husbandry ||| 0.00833333 0.0194805 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 120 524574 +los ||| hydrocarbons are ||| 0.25 0.162338 1.90631e-06 3.68697e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| hydrocarbons ||| 0.00877193 0.162338 1.90631e-06 2.43e-05 2.718 ||| 0-0 ||| 114 524574 +los ||| i.e. , the ||| 0.0909091 0.122289 1.90631e-06 3.0028e-06 2.718 ||| 0-2 ||| 11 524574 +los ||| i.e. the ||| 0.0292208 0.122289 1.71568e-05 2.51797e-05 2.718 ||| 0-1 ||| 308 524574 +los ||| i.e. those ||| 0.030303 0.284705 1.90631e-06 9.80149e-07 2.718 ||| 0-1 ||| 33 524574 +los ||| i.e. ||| 0.00123865 0.0013258 5.71893e-06 3.9e-06 2.718 ||| 0-0 ||| 2422 524574 +los ||| idea of employee ||| 1 0.277846 1.90631e-06 2.68998e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| identified ||| 0.000516529 0.0009346 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1936 524574 +los ||| identify the ||| 0.0123457 0.122289 9.53154e-06 7.42094e-06 2.718 ||| 0-1 ||| 405 524574 +los ||| identify those ||| 0.0238095 0.284705 1.90631e-06 2.88868e-07 2.718 ||| 0-1 ||| 42 524574 +los ||| identify ||| 0.00140384 0.0014395 5.71893e-06 2.9e-06 2.718 ||| 0-0 ||| 2137 524574 +los ||| identifying the parties involved ||| 1 0.122289 1.90631e-06 3.48405e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| identifying the parties ||| 1 0.122289 1.90631e-06 1.00753e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| identifying the ||| 0.00471698 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-1 ||| 212 524574 +los ||| identifying ||| 0.00110254 0.0022422 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 907 524574 +los ||| identity . events concerning ||| 0.5 0.140095 1.90631e-06 4.08278e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| identity . events ||| 0.5 0.140095 1.90631e-06 6.63866e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| identity of the ||| 0.0125 0.122289 1.90631e-06 4.7106e-07 2.718 ||| 0-2 ||| 80 524574 +los ||| ideological ||| 0.00103199 0.0010823 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 969 524574 +los ||| if everyday ||| 1 0.0137694 1.90631e-06 1.30354e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| if matters ||| 0.25 0.0584903 1.90631e-06 5.95532e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| if not the ||| 0.0070922 0.122289 1.90631e-06 1.22374e-06 2.718 ||| 0-2 ||| 141 524574 +los ||| if our ||| 0.00271003 0.0248369 1.90631e-06 2.98401e-06 2.718 ||| 0-1 ||| 369 524574 +los ||| if stabilisers ||| 1 0.246032 1.90631e-06 2.51516e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| if such ingredients ||| 1 0.140684 1.90631e-06 1.86535e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| if the good ||| 0.142857 0.122289 1.90631e-06 1.85885e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| if the same ||| 0.0526316 0.122289 1.90631e-06 2.88433e-07 2.718 ||| 0-1 ||| 19 524574 +los ||| if the ||| 0.00188466 0.122289 3.81262e-05 0.000358436 2.718 ||| 0-1 ||| 10612 524574 +los ||| if we can identify ||| 0.5 0.0014395 1.90631e-06 8.18211e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| if we look at the ||| 0.00460829 0.122289 1.90631e-06 4.96682e-12 2.718 ||| 0-4 ||| 217 524574 +los ||| if we want to be consistent , ||| 0.25 0.0014565 1.90631e-06 1.81021e-18 2.718 ||| 0-1 ||| 4 524574 +los ||| if we want to be consistent ||| 0.0909091 0.0014565 1.90631e-06 1.51793e-17 2.718 ||| 0-1 ||| 11 524574 +los ||| if we want to be ||| 0.00970874 0.0014565 1.90631e-06 5.47991e-13 2.718 ||| 0-1 ||| 103 524574 +los ||| if we want to ||| 0.000747943 0.0014565 1.90631e-06 3.02375e-11 2.718 ||| 0-1 ||| 1337 524574 +los ||| if we want ||| 0.000862813 0.0014565 1.90631e-06 3.40289e-10 2.718 ||| 0-1 ||| 1159 524574 +los ||| if we wish ||| 0.0104167 0.0014565 1.90631e-06 2.1451e-10 2.718 ||| 0-1 ||| 96 524574 +los ||| if we ||| 0.000896379 0.0014565 9.53154e-06 7.27891e-07 2.718 ||| 0-1 ||| 5578 524574 +los ||| if you are a ||| 0.04 0.0005024 1.90631e-06 2.16213e-11 2.718 ||| 0-2 ||| 25 524574 +los ||| if you are ||| 0.00277008 0.0005024 1.90631e-06 4.87781e-10 2.718 ||| 0-2 ||| 361 524574 +los ||| ignore the ||| 0.00341297 0.122289 3.81262e-06 3.56034e-06 2.718 ||| 0-1 ||| 586 524574 +los ||| ignores the ||| 0.00826446 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 121 524574 +los ||| ignoring the ||| 0.00487805 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-1 ||| 205 524574 +los ||| illegal immigrants by ||| 0.333333 0.155698 1.90631e-06 7.01625e-11 2.718 ||| 0-1 0-2 ||| 3 524574 +los ||| illegal immigrants ||| 0.00290135 0.305149 5.71893e-06 4.33156e-08 2.718 ||| 0-1 ||| 1034 524574 +los ||| illegal ||| 0.000552334 0.0016229 7.62523e-06 1.17e-05 2.718 ||| 0-0 ||| 7242 524574 +los ||| illicit fund ||| 0.125 0.0088458 1.90631e-06 1.1832e-10 2.718 ||| 0-1 ||| 8 524574 +los ||| illustrate the ||| 0.00704225 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-1 ||| 142 524574 +los ||| illustrated in the ||| 0.2 0.122289 1.90631e-06 4.31535e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| imagine that the ||| 0.015873 0.122289 1.90631e-06 1.32769e-07 2.718 ||| 0-2 ||| 63 524574 +los ||| imagine the ||| 0.0150376 0.122289 3.81262e-06 7.8928e-06 2.718 ||| 0-1 ||| 133 524574 +los ||| immense and ||| 0.0333333 0.0025974 1.90631e-06 2.37992e-08 2.718 ||| 0-0 ||| 30 524574 +los ||| immense ||| 0.00157978 0.0025974 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 633 524574 +los ||| immigrants ' ||| 0.0714286 0.174798 1.90631e-06 7.11124e-06 2.718 ||| 0-0 0-1 ||| 14 524574 +los ||| immigrants by ||| 0.0909091 0.155698 1.90631e-06 2.16551e-06 2.718 ||| 0-0 0-1 ||| 11 524574 +los ||| immigrants ||| 0.00530817 0.305149 3.43136e-05 0.0013369 2.718 ||| 0-0 ||| 3391 524574 +los ||| impact , processes ||| 1 0.199138 1.90631e-06 6.62115e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| impacts ||| 0.00218818 0.0536779 1.90631e-06 2.63e-05 2.718 ||| 0-0 ||| 457 524574 +los ||| impaired ||| 0.00787402 0.0055556 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 127 524574 +los ||| imperative that the ||| 0.00970874 0.122289 1.90631e-06 8.29809e-08 2.718 ||| 0-2 ||| 103 524574 +los ||| impetus to the ||| 0.0120482 0.122289 1.90631e-06 4.53584e-07 2.718 ||| 0-2 ||| 83 524574 +los ||| implement the ||| 0.00224845 0.122289 7.62523e-06 2.39358e-05 2.718 ||| 0-1 ||| 1779 524574 +los ||| implement those ||| 0.037037 0.284705 3.81262e-06 9.31726e-07 2.718 ||| 0-1 ||| 54 524574 +los ||| implemented under the ||| 0.0454545 0.122289 1.90631e-06 1.35133e-08 2.718 ||| 0-2 ||| 22 524574 +los ||| implementing acts are under the terms of ||| 1 0.122289 1.90631e-06 2.28343e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| implementing acts are under the terms ||| 1 0.122289 1.90631e-06 4.20027e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| implementing acts are under the ||| 1 0.122289 1.90631e-06 3.82678e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| implementing the ||| 0.000560538 0.122289 1.90631e-06 1.23539e-05 2.718 ||| 0-1 ||| 1784 524574 +los ||| import ||| 0.00248016 0.0251285 9.53154e-06 4.28e-05 2.718 ||| 0-0 ||| 2016 524574 +los ||| importance of the ||| 0.000618812 0.122289 1.90631e-06 3.02924e-06 2.718 ||| 0-2 ||| 1616 524574 +los ||| importance on the ||| 0.030303 0.122289 1.90631e-06 3.72832e-07 2.718 ||| 0-2 ||| 33 524574 +los ||| importance that the Chinese authorities ||| 0.25 0.122289 1.90631e-06 7.42866e-16 2.718 ||| 0-2 ||| 4 524574 +los ||| importance that the Chinese ||| 0.25 0.122289 1.90631e-06 1.11541e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| importance that the ||| 0.00869565 0.122289 1.90631e-06 9.37323e-07 2.718 ||| 0-2 ||| 115 524574 +los ||| important Statute is ||| 0.25 0.0007353 1.90631e-06 1.20224e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| important Statute ||| 0.25 0.0007353 1.90631e-06 3.836e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| important in the ||| 0.00306748 0.122289 1.90631e-06 3.52206e-06 2.718 ||| 0-2 ||| 326 524574 +los ||| important to be able to predict what ||| 1 0.0061209 1.90631e-06 9.66588e-20 2.718 ||| 0-6 ||| 1 524574 +los ||| important to tackle the ||| 0.25 0.122289 1.90631e-06 5.30757e-10 2.718 ||| 0-3 ||| 4 524574 +los ||| important ||| 1.33998e-05 2.74e-05 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 74628 524574 +los ||| imported ||| 0.00459418 0.0411462 1.14379e-05 5.44e-05 2.718 ||| 0-0 ||| 1306 524574 +los ||| importers and retailers ||| 0.2 0.311111 1.90631e-06 2.86367e-12 2.718 ||| 0-0 ||| 5 524574 +los ||| importers and ||| 0.0149254 0.311111 1.90631e-06 2.04548e-06 2.718 ||| 0-0 ||| 67 524574 +los ||| importers ||| 0.00258398 0.311111 1.90631e-06 0.0001633 2.718 ||| 0-0 ||| 387 524574 +los ||| imports from the ||| 0.0277778 0.122289 1.90631e-06 7.73686e-09 2.718 ||| 0-2 ||| 36 524574 +los ||| imposing charges ||| 0.5 0.0631373 1.90631e-06 2.4727e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| impossible for the ||| 0.0153846 0.122289 1.90631e-06 1.7671e-07 2.718 ||| 0-2 ||| 65 524574 +los ||| imprisoned persons ||| 0.333333 0.0269192 1.90631e-06 5.6459e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| improve management of the recovery of ||| 1 0.122289 1.90631e-06 3.21989e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| improve management of the recovery ||| 1 0.122289 1.90631e-06 5.92284e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| improve management of the ||| 1 0.122289 1.90631e-06 4.45326e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| improve the arguments ||| 1 0.0906649 1.90631e-06 2.90343e-09 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| improve the situation regarding ||| 0.1 0.122289 1.90631e-06 5.9484e-13 2.718 ||| 0-1 ||| 10 524574 +los ||| improve the situation ||| 0.00235294 0.122289 1.90631e-06 9.60969e-09 2.718 ||| 0-1 ||| 425 524574 +los ||| improve the ||| 0.000910539 0.122289 7.62523e-06 1.86596e-05 2.718 ||| 0-1 ||| 4393 524574 +los ||| improving the ||| 0.000356506 0.122289 1.90631e-06 9.26546e-06 2.718 ||| 0-1 ||| 2805 524574 +los ||| improving their ||| 0.00826446 0.0236713 1.90631e-06 4.94143e-08 2.718 ||| 0-1 ||| 121 524574 +los ||| impunity , appropriate fiscal reform and the ||| 1 0.122289 1.90631e-06 2.6733e-23 2.718 ||| 0-6 ||| 1 524574 +los ||| in Cairo , in the presence of ||| 1 0.122289 1.90631e-06 3.43375e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| in Cairo , in the presence ||| 1 0.122289 1.90631e-06 6.31622e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| in Cairo , in the ||| 1 0.122289 1.90631e-06 1.64058e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| in a minority but ||| 1 0.0754204 1.90631e-06 1.92248e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| in a minority ||| 0.0277778 0.0754204 1.90631e-06 2.81311e-07 2.718 ||| 0-2 ||| 36 524574 +los ||| in a ||| 3.12129e-05 0.0001268 1.90631e-06 6.12139e-06 2.718 ||| 0-0 ||| 32038 524574 +los ||| in actual fact , it is the ||| 0.333333 0.122289 1.90631e-06 2.58672e-13 2.718 ||| 0-6 ||| 3 524574 +los ||| in addressing ||| 0.00448431 0.0020186 1.90631e-06 1.04882e-07 2.718 ||| 0-1 ||| 223 524574 +los ||| in advance to the ||| 0.166667 0.122289 1.90631e-06 2.87999e-08 2.718 ||| 0-3 ||| 6 524574 +los ||| in all events ||| 0.00877193 0.0789441 1.90631e-06 6.24328e-08 2.718 ||| 0-1 0-2 ||| 114 524574 +los ||| in all of the ||| 0.00943396 0.122289 1.90631e-06 2.35868e-06 2.718 ||| 0-3 ||| 106 524574 +los ||| in all sorts ||| 0.05 0.0177928 1.90631e-06 8.91897e-10 2.718 ||| 0-1 ||| 20 524574 +los ||| in all the ||| 0.00193299 0.122289 5.71893e-06 4.33867e-05 2.718 ||| 0-2 ||| 1552 524574 +los ||| in all ||| 0.000428174 0.0177928 7.62523e-06 5.75417e-05 2.718 ||| 0-1 ||| 9342 524574 +los ||| in allowing ||| 0.0142857 0.0001268 1.90631e-06 6.96024e-09 2.718 ||| 0-0 ||| 70 524574 +los ||| in any way ||| 0.000735294 0.0178119 1.90631e-06 4.26145e-08 2.718 ||| 0-1 ||| 1360 524574 +los ||| in any ||| 0.000283006 0.0178119 3.81262e-06 1.97692e-05 2.718 ||| 0-1 ||| 7067 524574 +los ||| in association with other citizens ||| 0.333333 0.293572 1.90631e-06 4.24084e-14 2.718 ||| 0-4 ||| 3 524574 +los ||| in both tax ||| 1 0.0611419 1.90631e-06 2.3958e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| in by the ||| 0.0144928 0.122289 1.90631e-06 4.82043e-05 2.718 ||| 0-2 ||| 69 524574 +los ||| in cases of ||| 0.00302115 0.0019787 1.90631e-06 9.06916e-09 2.718 ||| 0-2 ||| 331 524574 +los ||| in cases ||| 0.00112233 0.136512 1.90631e-06 3.56278e-05 2.718 ||| 0-1 ||| 891 524574 +los ||| in certain European ||| 1 0.0030672 1.90631e-06 4.52351e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| in certain ||| 0.000465549 0.0030672 1.90631e-06 1.35276e-06 2.718 ||| 0-1 ||| 2148 524574 +los ||| in commitment appropriations ||| 0.0128205 0.189378 1.90631e-06 8.4884e-10 2.718 ||| 0-2 ||| 78 524574 +los ||| in comparison with the ||| 0.00518135 0.122289 1.90631e-06 8.21964e-10 2.718 ||| 0-3 ||| 193 524574 +los ||| in connection with the evaluation of ||| 1 0.122289 1.90631e-06 7.20862e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| in connection with the evaluation ||| 1 0.122289 1.90631e-06 1.32599e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| in connection with the ||| 0.000766871 0.122289 1.90631e-06 8.95941e-09 2.718 ||| 0-3 ||| 1304 524574 +los ||| in countries like the ||| 0.0909091 0.122289 1.90631e-06 6.19123e-09 2.718 ||| 0-3 ||| 11 524574 +los ||| in debt to the tune ||| 0.25 0.122289 1.90631e-06 4.83005e-13 2.718 ||| 0-3 ||| 4 524574 +los ||| in debt to the ||| 0.125 0.122289 1.90631e-06 1.6154e-08 2.718 ||| 0-3 ||| 8 524574 +los ||| in densely populated regions and ||| 0.333333 0.0023923 1.90631e-06 3.09292e-20 2.718 ||| 0-2 ||| 3 524574 +los ||| in densely populated regions ||| 0.333333 0.0023923 1.90631e-06 2.46922e-18 2.718 ||| 0-2 ||| 3 524574 +los ||| in densely populated ||| 0.25 0.0023923 1.90631e-06 2.99663e-14 2.718 ||| 0-2 ||| 4 524574 +los ||| in developing something ||| 1 0.150762 1.90631e-06 4.21815e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| in developing ||| 0.00138313 0.150762 1.90631e-06 7.62086e-05 2.718 ||| 0-1 ||| 723 524574 +los ||| in disregard of the ||| 1 0.122289 1.90631e-06 4.84174e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| in doing so the ||| 0.142857 0.122289 1.90631e-06 7.65017e-09 2.718 ||| 0-3 ||| 7 524574 +los ||| in each ||| 0.000710732 0.0497499 1.90631e-06 1.88338e-05 2.718 ||| 0-1 ||| 1407 524574 +los ||| in ensuring that the ||| 0.0123457 0.122289 1.90631e-06 1.7947e-08 2.718 ||| 0-3 ||| 81 524574 +los ||| in every possible ||| 0.125 0.144232 1.90631e-06 5.60364e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| in every ||| 0.00164294 0.144232 5.71893e-06 6.98621e-05 2.718 ||| 0-1 ||| 1826 524574 +los ||| in fact , all ||| 0.025 0.0177928 1.90631e-06 2.01012e-08 2.718 ||| 0-3 ||| 40 524574 +los ||| in fact , in the ||| 0.0263158 0.122289 1.90631e-06 6.86535e-08 2.718 ||| 0-4 ||| 38 524574 +los ||| in fact , the ||| 0.00789474 0.122289 1.14379e-05 3.20743e-06 2.718 ||| 0-3 ||| 760 524574 +los ||| in fact , those ||| 0.285714 0.284705 3.81262e-06 1.24853e-07 2.718 ||| 0-3 ||| 7 524574 +los ||| in fact , ||| 0.000162232 0.0001268 1.90631e-06 4.82429e-08 2.718 ||| 0-0 ||| 6164 524574 +los ||| in fact be to the detriment ||| 1 0.122289 1.90631e-06 4.20125e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| in fact be to the ||| 1 0.122289 1.90631e-06 4.33119e-08 2.718 ||| 0-4 ||| 1 524574 +los ||| in fact the ||| 0.00906344 0.122289 5.71893e-06 2.68956e-05 2.718 ||| 0-2 ||| 331 524574 +los ||| in fact ||| 7.58265e-05 0.0001268 1.90631e-06 4.04536e-07 2.718 ||| 0-0 ||| 13188 524574 +los ||| in favour of the ||| 0.000721241 0.122289 7.62523e-06 1.61474e-07 2.718 ||| 0-3 ||| 5546 524574 +los ||| in food ||| 0.0103627 0.123536 3.81262e-06 4.71777e-05 2.718 ||| 0-1 ||| 193 524574 +los ||| in full the ||| 0.0322581 0.122289 1.90631e-06 1.68482e-06 2.718 ||| 0-2 ||| 31 524574 +los ||| in future ||| 0.000197433 0.0001268 1.90631e-06 3.66794e-08 2.718 ||| 0-0 ||| 5065 524574 +los ||| in general ||| 0.000254065 0.0006907 1.90631e-06 2.29028e-07 2.718 ||| 0-1 ||| 3936 524574 +los ||| in great detail the ||| 0.166667 0.122289 1.90631e-06 1.84388e-10 2.718 ||| 0-3 ||| 6 524574 +los ||| in his ||| 0.000262674 0.0058818 1.90631e-06 3.70512e-06 2.718 ||| 0-1 ||| 3807 524574 +los ||| in households ||| 0.0909091 0.237258 1.90631e-06 2.81041e-06 2.718 ||| 0-1 ||| 11 524574 +los ||| in huge demand among the ||| 1 0.122289 1.90631e-06 2.30177e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| in issues ||| 0.0153846 0.0401532 1.90631e-06 2.39944e-05 2.718 ||| 0-1 ||| 65 524574 +los ||| in it of the ||| 0.333333 0.122289 1.90631e-06 8.87645e-06 2.718 ||| 0-3 ||| 3 524574 +los ||| in it the ||| 0.0588235 0.122289 1.90631e-06 0.000163278 2.718 ||| 0-2 ||| 17 524574 +los ||| in its arrangements ||| 0.5 0.0211371 1.90631e-06 2.00626e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| in its cooperation with the ||| 0.333333 0.0211371 1.90631e-06 1.65234e-12 2.718 ||| 0-1 ||| 3 524574 +los ||| in its cooperation with ||| 0.0909091 0.0211371 1.90631e-06 2.69147e-11 2.718 ||| 0-1 ||| 11 524574 +los ||| in its cooperation ||| 0.0833333 0.0211371 1.90631e-06 4.20904e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| in its examination of the ||| 0.5 0.122289 1.90631e-06 9.74257e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| in its wake ||| 0.0227273 0.0211371 1.90631e-06 1.08768e-09 2.718 ||| 0-1 ||| 44 524574 +los ||| in its ||| 0.000763942 0.0211371 1.52505e-05 4.57007e-05 2.718 ||| 0-1 ||| 10472 524574 +los ||| in line to join the EU ||| 1 0.122289 1.90631e-06 5.56197e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| in line to join the ||| 1 0.122289 1.90631e-06 1.12409e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| in line with the ||| 0.000600601 0.122289 1.90631e-06 1.72847e-08 2.718 ||| 0-3 ||| 1665 524574 +los ||| in major issues ||| 1 0.0401532 1.90631e-06 2.32266e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| in many ways ||| 0.00231481 0.0029977 1.90631e-06 2.90939e-10 2.718 ||| 0-1 ||| 432 524574 +los ||| in many ||| 0.00038956 0.0029977 3.81262e-06 3.01803e-06 2.718 ||| 0-1 ||| 5134 524574 +los ||| in men ||| 0.0625 0.21664 1.90631e-06 3.41915e-05 2.718 ||| 0-1 ||| 16 524574 +los ||| in mind that the ||| 0.00323625 0.122289 1.90631e-06 3.89057e-08 2.718 ||| 0-3 ||| 309 524574 +los ||| in mind the ||| 0.0028169 0.122289 3.81262e-06 2.31284e-06 2.718 ||| 0-2 ||| 710 524574 +los ||| in more concrete terms , the ||| 0.5 0.122289 1.90631e-06 8.59055e-14 2.718 ||| 0-5 ||| 2 524574 +los ||| in most ||| 0.000711744 0.0021653 1.90631e-06 1.95637e-06 2.718 ||| 0-1 ||| 1405 524574 +los ||| in much the ||| 0.1 0.122289 1.90631e-06 9.21557e-06 2.718 ||| 0-2 ||| 10 524574 +los ||| in my case ||| 0.0147059 0.0086409 1.90631e-06 1.57854e-08 2.718 ||| 0-1 ||| 68 524574 +los ||| in my mind ||| 0.0108696 0.0086409 1.90631e-06 3.71656e-09 2.718 ||| 0-1 ||| 92 524574 +los ||| in my opinion , ||| 0.000275103 0.0086409 1.90631e-06 4.31781e-10 2.718 ||| 0-1 ||| 3635 524574 +los ||| in my opinion ||| 0.000192345 0.0086409 1.90631e-06 3.62066e-09 2.718 ||| 0-1 ||| 5199 524574 +los ||| in my ||| 0.000182482 0.0086409 5.71893e-06 1.47541e-05 2.718 ||| 0-1 ||| 16440 524574 +los ||| in on the ||| 0.0833333 0.122289 3.81262e-06 6.14341e-05 2.718 ||| 0-2 ||| 24 524574 +los ||| in on ||| 0.00862069 0.0006914 1.90631e-06 7.63713e-06 2.718 ||| 0-1 ||| 116 524574 +los ||| in order for them ||| 0.05 0.038218 1.90631e-06 1.76339e-10 2.718 ||| 0-3 ||| 20 524574 +los ||| in order to adhere to the ||| 0.5 0.122289 1.90631e-06 3.89974e-13 2.718 ||| 0-5 ||| 2 524574 +los ||| in order to appeal to the masses ||| 1 0.122289 1.90631e-06 2.09891e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| in order to appeal to the ||| 1 0.122289 1.90631e-06 1.16606e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| in order to disguise the ||| 0.5 0.122289 1.90631e-06 4.7798e-13 2.718 ||| 0-4 ||| 2 524574 +los ||| in our accounts ||| 1 0.0248369 1.90631e-06 2.36192e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| in our attempt to ||| 0.0714286 0.0248369 1.90631e-06 5.67141e-10 2.718 ||| 0-1 ||| 14 524574 +los ||| in our attempt ||| 0.0625 0.0248369 1.90631e-06 6.38254e-09 2.718 ||| 0-1 ||| 16 524574 +los ||| in our way ||| 0.1 0.0248369 1.90631e-06 1.64769e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| in our ||| 0.000592242 0.0248369 1.52505e-05 7.64376e-05 2.718 ||| 0-1 ||| 13508 524574 +los ||| in particular , the ||| 0.0016 0.122289 3.81262e-06 6.73831e-07 2.718 ||| 0-3 ||| 1250 524574 +los ||| in particular the ||| 0.00060241 0.122289 1.90631e-06 5.65035e-06 2.718 ||| 0-2 ||| 1660 524574 +los ||| in people ||| 0.00408163 0.0894672 1.90631e-06 0.000168567 2.718 ||| 0-1 ||| 245 524574 +los ||| in place by means of ||| 0.5 0.0062464 1.90631e-06 1.79762e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| in place by means ||| 0.5 0.0062464 1.90631e-06 3.30664e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| in place by ||| 0.0133333 0.0062464 1.90631e-06 5.21799e-08 2.718 ||| 0-2 ||| 75 524574 +los ||| in place the most important ||| 1 0.122289 1.90631e-06 2.29096e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| in place the most ||| 0.5 0.122289 1.90631e-06 5.97227e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| in place the ||| 0.0481928 0.122289 7.62523e-06 1.38183e-05 2.718 ||| 0-2 ||| 83 524574 +los ||| in plenary and in the Committee on ||| 1 0.122289 1.90631e-06 2.36268e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| in plenary and in the Committee ||| 0.142857 0.122289 1.90631e-06 3.53114e-15 2.718 ||| 0-4 ||| 7 524574 +los ||| in plenary and in the ||| 0.1 0.122289 1.90631e-06 2.31398e-11 2.718 ||| 0-4 ||| 10 524574 +los ||| in ports ||| 0.00952381 0.299963 1.90631e-06 1.66484e-05 2.718 ||| 0-1 ||| 105 524574 +los ||| in possession of the ||| 0.0769231 0.122289 1.90631e-06 7.18773e-09 2.718 ||| 0-3 ||| 13 524574 +los ||| in progress ||| 0.00239234 0.0392854 1.90631e-06 1.81681e-05 2.718 ||| 0-1 ||| 418 524574 +los ||| in public ||| 0.00455581 0.0160961 3.81262e-06 1.26329e-05 2.718 ||| 0-1 ||| 439 524574 +los ||| in receipt of the ||| 0.166667 0.122289 1.90631e-06 2.346e-09 2.718 ||| 0-3 ||| 6 524574 +los ||| in recent days ||| 0.00359712 0.229055 1.90631e-06 5.53063e-09 2.718 ||| 0-1 ||| 278 524574 +los ||| in recent ||| 0.000539957 0.229055 3.81262e-06 8.68231e-05 2.718 ||| 0-1 ||| 3704 524574 +los ||| in relation to the ||| 0.00104712 0.122289 5.71893e-06 1.98499e-07 2.718 ||| 0-3 ||| 2865 524574 +los ||| in respect of which the ||| 0.05 0.122289 1.90631e-06 1.83425e-09 2.718 ||| 0-4 ||| 20 524574 +los ||| in respect of ||| 0.00098668 0.00328255 3.81262e-06 7.50454e-09 2.718 ||| 0-1 0-2 ||| 2027 524574 +los ||| in respect ||| 0.000419287 0.0045864 1.90631e-06 2.26888e-06 2.718 ||| 0-1 ||| 2385 524574 +los ||| in sending my best ||| 1 0.0086409 1.90631e-06 4.69993e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| in sending my ||| 1 0.0086409 1.90631e-06 3.39345e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| in short , all the ||| 0.5 0.122289 1.90631e-06 7.30061e-10 2.718 ||| 0-4 ||| 2 524574 +los ||| in single ||| 0.333333 0.00422725 1.90631e-06 1.47629e-08 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| in some cases ||| 0.000737463 0.136512 1.90631e-06 3.88094e-08 2.718 ||| 0-2 ||| 1356 524574 +los ||| in some of them , ||| 0.111111 0.0019787 1.90631e-06 2.46697e-11 2.718 ||| 0-2 ||| 9 524574 +los ||| in some of them ||| 0.0434783 0.0019787 1.90631e-06 2.06866e-10 2.718 ||| 0-2 ||| 23 524574 +los ||| in some of ||| 0.00259067 0.0019787 1.90631e-06 7.71197e-08 2.718 ||| 0-2 ||| 386 524574 +los ||| in staff resources for the conduct ||| 1 0.21958 1.90631e-06 1.18581e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| in staff resources for the ||| 1 0.21958 1.90631e-06 1.97306e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| in staff resources for ||| 1 0.21958 1.90631e-06 3.21388e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| in staff resources ||| 1 0.21958 1.90631e-06 4.18163e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| in tablets ||| 0.166667 0.037037 1.90631e-06 4.06686e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| in terms of the enormous issue of ||| 1 0.122289 1.90631e-06 6.4917e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| in terms of the enormous issue ||| 1 0.122289 1.90631e-06 1.19412e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| in terms of the enormous ||| 1 0.122289 1.90631e-06 1.57785e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| in terms of the ||| 0.00520562 0.122289 1.90631e-05 5.47865e-07 2.718 ||| 0-3 ||| 1921 524574 +los ||| in terms of ||| 0.000178843 0.0019787 3.81262e-06 7.77074e-08 2.718 ||| 0-2 ||| 11183 524574 +los ||| in terms ||| 8.10045e-05 0.0002364 1.90631e-06 1.24146e-07 2.718 ||| 0-1 ||| 12345 524574 +los ||| in that case , the ||| 0.0357143 0.122289 1.90631e-06 1.97063e-08 2.718 ||| 0-4 ||| 28 524574 +los ||| in that order ||| 0.125 5.13e-05 1.90631e-06 4.99322e-10 2.718 ||| 0-1 ||| 8 524574 +los ||| in that the ||| 0.00584795 0.122289 1.90631e-06 0.000154449 2.718 ||| 0-2 ||| 171 524574 +los ||| in that ||| 0.000109182 5.13e-05 1.90631e-06 9.37517e-07 2.718 ||| 0-1 ||| 9159 524574 +los ||| in the ' collapse of the ||| 1 0.122289 1.90631e-06 1.09468e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| in the Balkans ||| 0.00127226 0.122289 1.90631e-06 5.32533e-08 2.718 ||| 0-1 ||| 786 524574 +los ||| in the Chamber ||| 0.00126904 0.122289 1.90631e-06 2.41476e-07 2.718 ||| 0-1 ||| 788 524574 +los ||| in the Committee on ||| 0.000318269 0.122289 1.90631e-06 9.37484e-09 2.718 ||| 0-1 ||| 3142 524574 +los ||| in the Committee ||| 0.000271887 0.122289 1.90631e-06 1.40111e-06 2.718 ||| 0-1 ||| 3678 524574 +los ||| in the EU ' s exposure ||| 1 0.122289 1.90631e-06 1.92954e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| in the EU ' s ||| 0.333333 0.122289 1.90631e-06 2.96853e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| in the EU ' ||| 0.0416667 0.122289 1.90631e-06 1.56049e-08 2.718 ||| 0-1 ||| 24 524574 +los ||| in the EU ||| 0.000528541 0.122289 5.71893e-06 4.54305e-06 2.718 ||| 0-1 ||| 5676 524574 +los ||| in the Group of the ||| 0.00515464 0.122289 1.90631e-06 9.96837e-09 2.718 ||| 0-4 ||| 194 524574 +los ||| in the House ||| 0.000747384 0.122289 1.90631e-06 2.29632e-06 2.718 ||| 0-1 ||| 1338 524574 +los ||| in the Member States ||| 0.00054407 0.122289 3.81262e-06 2.25776e-09 2.718 ||| 0-1 ||| 3676 524574 +los ||| in the Member ||| 0.0253165 0.122289 3.81262e-06 4.73128e-06 2.718 ||| 0-1 ||| 79 524574 +los ||| in the Treaties but ||| 0.5 0.122289 1.90631e-06 4.95701e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| in the Treaties ||| 0.00265252 0.122289 1.90631e-06 7.25346e-08 2.718 ||| 0-1 ||| 377 524574 +los ||| in the Treaty , ||| 0.00609756 0.122289 1.90631e-06 9.37276e-08 2.718 ||| 0-1 ||| 164 524574 +los ||| in the Treaty ||| 0.000661813 0.122289 1.90631e-06 7.85945e-07 2.718 ||| 0-1 ||| 1511 524574 +los ||| in the UK ||| 0.000904977 0.122289 1.90631e-06 1.58842e-07 2.718 ||| 0-1 ||| 1105 524574 +los ||| in the absence of ||| 0.00205339 0.122289 1.90631e-06 1.29279e-08 2.718 ||| 0-1 ||| 487 524574 +los ||| in the absence ||| 0.0019802 0.122289 1.90631e-06 2.37803e-07 2.718 ||| 0-1 ||| 505 524574 +los ||| in the aim ||| 0.0149254 0.122289 1.90631e-06 1.26247e-06 2.718 ||| 0-1 ||| 67 524574 +los ||| in the area ||| 0.000403877 0.122289 3.81262e-06 3.81312e-06 2.718 ||| 0-1 ||| 4952 524574 +los ||| in the ascending line ||| 0.0434783 0.122289 1.90631e-06 1.08122e-12 2.718 ||| 0-1 ||| 23 524574 +los ||| in the ascending ||| 0.0625 0.122289 1.90631e-06 3.67264e-09 2.718 ||| 0-1 ||| 16 524574 +los ||| in the budget ||| 0.00134589 0.122289 1.90631e-06 1.13301e-06 2.718 ||| 0-1 ||| 743 524574 +los ||| in the business of helping ||| 0.5 0.122289 1.90631e-06 2.35659e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| in the business of ||| 0.030303 0.122289 1.90631e-06 6.23436e-08 2.718 ||| 0-1 ||| 33 524574 +los ||| in the business ||| 0.015625 0.122289 1.90631e-06 1.14678e-06 2.718 ||| 0-1 ||| 64 524574 +los ||| in the case of the ||| 0.00129032 0.122289 1.90631e-06 3.27856e-08 2.718 ||| 0-4 ||| 775 524574 +los ||| in the case of waste ||| 0.25 0.122289 1.90631e-06 3.72759e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| in the case of ||| 0.000534474 0.122289 3.81262e-06 5.34039e-07 2.718 ||| 0-1 ||| 3742 524574 +los ||| in the case ||| 0.000914704 0.122289 7.62523e-06 9.82339e-06 2.718 ||| 0-1 ||| 4373 524574 +los ||| in the common ||| 0.0285714 0.122289 1.90631e-06 2.12095e-06 2.718 ||| 0-1 ||| 35 524574 +los ||| in the constitution ||| 0.0149254 0.122289 1.90631e-06 1.52414e-07 2.718 ||| 0-1 ||| 67 524574 +los ||| in the context of the ||| 0.000567537 0.122289 1.90631e-06 4.11237e-09 2.718 ||| 0-4 ||| 1762 524574 +los ||| in the context ||| 0.000243013 0.122289 1.90631e-06 1.23217e-06 2.718 ||| 0-1 ||| 4115 524574 +los ||| in the conurbations and they have vast ||| 1 0.122289 1.90631e-06 4.30546e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| in the conurbations and they have ||| 1 0.122289 1.90631e-06 3.14267e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| in the conurbations and they ||| 1 0.122289 1.90631e-06 2.6277e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| in the conurbations and ||| 1 0.122289 1.90631e-06 8.05054e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| in the conurbations ||| 0.333333 0.122289 1.90631e-06 6.42712e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| in the course of the ||| 0.00645161 0.122289 5.71893e-06 3.8663e-08 2.718 ||| 0-4 ||| 465 524574 +los ||| in the course ||| 0.000747943 0.122289 1.90631e-06 1.15844e-05 2.718 ||| 0-1 ||| 1337 524574 +los ||| in the cuts ||| 1 0.122289 1.90631e-06 1.05588e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| in the dark about the ||| 0.25 0.122289 1.90631e-06 8.9287e-12 2.718 ||| 0-4 ||| 4 524574 +los ||| in the direction of ||| 0.00257069 0.122289 1.90631e-06 4.52727e-08 2.718 ||| 0-1 ||| 389 524574 +los ||| in the direction ||| 0.00176367 0.122289 1.90631e-06 8.32771e-07 2.718 ||| 0-1 ||| 567 524574 +los ||| in the enclave ||| 0.0833333 0.122289 1.90631e-06 1.00998e-08 2.718 ||| 0-1 ||| 12 524574 +los ||| in the exportation ||| 0.333333 0.122289 1.90631e-06 3.67264e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| in the face of the ||| 0.00714286 0.122289 3.81262e-06 5.12668e-09 2.718 ||| 0-4 ||| 280 524574 +los ||| in the field , ||| 0.0114943 0.122289 1.90631e-06 1.59972e-07 2.718 ||| 0-1 ||| 87 524574 +los ||| in the field of ||| 0.00020202 0.122289 1.90631e-06 7.29256e-08 2.718 ||| 0-1 ||| 4950 524574 +los ||| in the field ||| 0.000983091 0.122289 9.53154e-06 1.34143e-06 2.718 ||| 0-1 ||| 5086 524574 +los ||| in the fields ||| 0.00167224 0.122289 1.90631e-06 3.40637e-07 2.718 ||| 0-1 ||| 598 524574 +los ||| in the form of ||| 0.0019305 0.122289 5.71893e-06 2.27212e-07 2.718 ||| 0-1 ||| 1554 524574 +los ||| in the form ||| 0.00205023 0.122289 7.62523e-06 4.17946e-06 2.718 ||| 0-1 ||| 1951 524574 +los ||| in the future too , ||| 0.0434783 0.122289 3.81262e-06 3.95804e-10 2.718 ||| 0-1 ||| 46 524574 +los ||| in the future too ||| 0.0243902 0.122289 3.81262e-06 3.31898e-09 2.718 ||| 0-1 ||| 82 524574 +los ||| in the future ||| 0.000570858 0.122289 7.62523e-06 2.43863e-06 2.718 ||| 0-1 ||| 7007 524574 +los ||| in the general ||| 0.0285714 0.122289 1.90631e-06 1.60586e-06 2.718 ||| 0-1 ||| 35 524574 +los ||| in the governments of ||| 0.142857 0.122289 3.81262e-06 1.70709e-08 2.718 ||| 0-1 ||| 14 524574 +los ||| in the governments ||| 0.0909091 0.122289 3.81262e-06 3.14011e-07 2.718 ||| 0-1 ||| 22 524574 +los ||| in the hands ||| 0.0015949 0.122289 1.90631e-06 9.25505e-07 2.718 ||| 0-1 ||| 627 524574 +los ||| in the interests ||| 0.0010983 0.122289 3.81262e-06 1.2588e-06 2.718 ||| 0-1 ||| 1821 524574 +los ||| in the light of the ||| 0.00175285 0.122289 3.81262e-06 5.32586e-09 2.718 ||| 0-4 ||| 1141 524574 +los ||| in the light ||| 0.000392927 0.122289 1.90631e-06 1.59576e-06 2.718 ||| 0-1 ||| 2545 524574 +los ||| in the long ||| 0.000815661 0.122289 1.90631e-06 3.10613e-06 2.718 ||| 0-1 ||| 1226 524574 +los ||| in the majority in ||| 0.0909091 0.122289 1.90631e-06 7.92006e-09 2.718 ||| 0-1 ||| 11 524574 +los ||| in the majority ||| 0.00406504 0.122289 1.90631e-06 3.70018e-07 2.718 ||| 0-1 ||| 246 524574 +los ||| in the meantime , the ||| 0.00970874 0.122289 1.90631e-06 1.64691e-09 2.718 ||| 0-4 ||| 103 524574 +los ||| in the media ||| 0.0019802 0.122289 1.90631e-06 2.6443e-07 2.718 ||| 0-1 ||| 505 524574 +los ||| in the name of the Lisbon Strategy ||| 0.5 0.122289 1.90631e-06 2.64879e-19 2.718 ||| 0-4 ||| 2 524574 +los ||| in the name of the Lisbon ||| 1 0.122289 1.90631e-06 6.15998e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| in the name of the ||| 0.00380228 0.122289 1.90631e-06 2.67825e-09 2.718 ||| 0-4 ||| 263 524574 +los ||| in the name ||| 0.00104384 0.122289 1.90631e-06 8.02471e-07 2.718 ||| 0-1 ||| 958 524574 +los ||| in the near future . ||| 0.00288184 0.122289 1.90631e-06 2.89555e-13 2.718 ||| 0-1 ||| 347 524574 +los ||| in the near future ||| 0.00104275 0.122289 1.90631e-06 9.55944e-11 2.718 ||| 0-1 ||| 959 524574 +los ||| in the near ||| 0.00917431 0.122289 1.90631e-06 3.59919e-07 2.718 ||| 0-1 ||| 109 524574 +los ||| in the neighbouring ||| 0.416667 0.145603 9.53154e-06 3.91044e-06 2.718 ||| 0-1 0-2 ||| 12 524574 +los ||| in the next ' Prestige ' oil-tanker ||| 1 0.122289 1.90631e-06 1.11904e-23 2.718 ||| 0-1 ||| 1 524574 +los ||| in the next ' Prestige ' ||| 1 0.122289 1.90631e-06 2.79761e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| in the next ' Prestige ||| 1 0.122289 1.90631e-06 8.14465e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| in the next ' ||| 0.5 0.122289 1.90631e-06 3.25786e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| in the next ||| 0.000862813 0.122289 1.90631e-06 9.48459e-07 2.718 ||| 0-1 ||| 1159 524574 +los ||| in the number of ||| 0.00153374 0.122289 1.90631e-06 2.46979e-07 2.718 ||| 0-1 ||| 652 524574 +los ||| in the number ||| 0.00269179 0.122289 3.81262e-06 4.54305e-06 2.718 ||| 0-1 ||| 743 524574 +los ||| in the past , ||| 0.00201613 0.122289 3.81262e-06 1.40263e-07 2.718 ||| 0-1 ||| 992 524574 +los ||| in the past ||| 0.000520833 0.122289 3.81262e-06 1.17616e-06 2.718 ||| 0-1 ||| 3840 524574 +los ||| in the presence of Commissioner Bangemann , ||| 1 0.122289 1.90631e-06 2.22345e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| in the presence of Commissioner Bangemann ||| 1 0.122289 1.90631e-06 1.86445e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| in the presence of Commissioner ||| 0.166667 0.122289 1.90631e-06 1.69496e-12 2.718 ||| 0-1 ||| 6 524574 +los ||| in the presence of ||| 0.00694444 0.122289 1.90631e-06 1.92172e-08 2.718 ||| 0-1 ||| 144 524574 +los ||| in the presence ||| 0.005 0.122289 1.90631e-06 3.53491e-07 2.718 ||| 0-1 ||| 200 524574 +los ||| in the prices ||| 0.0140845 0.34239 1.90631e-06 4.60447e-06 2.718 ||| 0-2 ||| 71 524574 +los ||| in the process of ||| 0.00184502 0.122289 3.81262e-06 2.13386e-07 2.718 ||| 0-1 ||| 1084 524574 +los ||| in the process ||| 0.00172612 0.122289 5.71893e-06 3.92513e-06 2.718 ||| 0-1 ||| 1738 524574 +los ||| in the profits they have been making ||| 1 0.159219 1.90631e-06 2.35114e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| in the profits they have been ||| 1 0.159219 1.90631e-06 6.11163e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| in the profits they have ||| 1 0.159219 1.90631e-06 1.83027e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| in the profits they ||| 1 0.159219 1.90631e-06 1.53035e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| in the profits ||| 0.0714286 0.159219 1.90631e-06 4.68857e-07 2.718 ||| 0-2 ||| 14 524574 +los ||| in the provisions ||| 0.03125 0.122289 1.90631e-06 7.2351e-07 2.718 ||| 0-1 ||| 32 524574 +los ||| in the recent ||| 0.00529101 0.229055 1.90631e-06 5.33022e-06 2.718 ||| 0-2 ||| 189 524574 +los ||| in the region of ||| 0.00675676 0.122289 1.90631e-06 4.88666e-08 2.718 ||| 0-1 ||| 148 524574 +los ||| in the region ||| 0.000650195 0.122289 3.81262e-06 8.98878e-07 2.718 ||| 0-1 ||| 3076 524574 +los ||| in the renewables ||| 1 0.122289 1.90631e-06 2.01995e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| in the respective ||| 0.0294118 0.122289 1.90631e-06 2.93811e-07 2.718 ||| 0-1 ||| 34 524574 +los ||| in the same way ||| 0.00171233 0.122289 3.81262e-06 1.59265e-08 2.718 ||| 0-1 ||| 1168 524574 +los ||| in the same ||| 0.000803859 0.122289 3.81262e-06 7.38843e-06 2.718 ||| 0-1 ||| 2488 524574 +los ||| in the service ||| 0.00606061 0.122289 1.90631e-06 6.14249e-07 2.718 ||| 0-1 ||| 165 524574 +los ||| in the shape of ||| 0.00568182 0.122289 1.90631e-06 3.01985e-08 2.718 ||| 0-1 ||| 176 524574 +los ||| in the shape ||| 0.00471698 0.122289 1.90631e-06 5.55487e-07 2.718 ||| 0-1 ||| 212 524574 +los ||| in the short term my own State ||| 1 0.122289 1.90631e-06 1.85734e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| in the short term my own ||| 1 0.122289 1.90631e-06 1.54521e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| in the short term my ||| 1 0.122289 1.90631e-06 9.11467e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| in the short term ||| 0.00147059 0.122289 1.90631e-06 1.4173e-10 2.718 ||| 0-1 ||| 680 524574 +los ||| in the short ||| 0.00117233 0.122289 1.90631e-06 1.29552e-06 2.718 ||| 0-1 ||| 853 524574 +los ||| in the strongest terms to ||| 0.333333 0.122289 1.90631e-06 6.44751e-12 2.718 ||| 0-1 ||| 3 524574 +los ||| in the strongest terms ||| 0.012987 0.122289 1.90631e-06 7.25596e-11 2.718 ||| 0-1 ||| 77 524574 +los ||| in the strongest ||| 0.0178571 0.122289 1.90631e-06 6.61075e-08 2.718 ||| 0-1 ||| 56 524574 +los ||| in the style of ||| 0.0909091 0.122289 1.90631e-06 4.29267e-09 2.718 ||| 0-1 ||| 11 524574 +los ||| in the style ||| 0.0909091 0.122289 1.90631e-06 7.89617e-08 2.718 ||| 0-1 ||| 11 524574 +los ||| in the system ||| 0.00347222 0.122289 1.90631e-06 2.56075e-06 2.718 ||| 0-1 ||| 288 524574 +los ||| in the table ||| 0.0666667 0.122289 1.90631e-06 6.21594e-07 2.718 ||| 0-1 ||| 15 524574 +los ||| in the treatments , ||| 1 0.157143 1.90631e-06 8.38387e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| in the treatments ||| 0.333333 0.157143 1.90631e-06 7.03023e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| in the vital interests of the ||| 0.333333 0.122289 1.90631e-06 1.31499e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| in the vital interests of ||| 0.2 0.122289 1.90631e-06 2.14196e-12 2.718 ||| 0-1 ||| 5 524574 +los ||| in the vital interests ||| 0.2 0.122289 1.90631e-06 3.94003e-11 2.718 ||| 0-1 ||| 5 524574 +los ||| in the vital ||| 0.25 0.122289 1.90631e-06 2.87384e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| in the water ||| 0.0285714 0.122289 1.90631e-06 5.22433e-07 2.718 ||| 0-1 ||| 35 524574 +los ||| in the way in ||| 0.00757576 0.122289 1.90631e-06 4.23635e-07 2.718 ||| 0-1 ||| 132 524574 +los ||| in the way of compliance ||| 1 0.122289 1.90631e-06 2.47472e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| in the way of the ||| 0.0192308 0.122289 1.90631e-06 6.60554e-08 2.718 ||| 0-4 ||| 52 524574 +los ||| in the way of ||| 0.0215385 0.122289 1.33442e-05 1.07596e-06 2.718 ||| 0-1 ||| 325 524574 +los ||| in the way the ||| 0.027027 0.122289 1.90631e-06 1.21506e-06 2.718 ||| 0-3 ||| 37 524574 +los ||| in the way ||| 0.00733634 0.122289 2.4782e-05 1.97918e-05 2.718 ||| 0-1 ||| 1772 524574 +los ||| in the works for the ||| 1 0.122289 1.90631e-06 1.79354e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| in the world of ||| 0.00546448 0.122289 1.90631e-06 1.13706e-07 2.718 ||| 0-1 ||| 183 524574 +los ||| in the world ||| 0.000404204 0.122289 3.81262e-06 2.09157e-06 2.718 ||| 0-1 ||| 4948 524574 +los ||| in the ||| 0.00254901 0.122289 0.00139732 0.0091816 2.718 ||| 0-1 ||| 287563 524574 +los ||| in their actions the ||| 1 0.122289 1.90631e-06 7.42839e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| in their statements , ||| 0.333333 0.0236713 1.90631e-06 1.86866e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| in their statements ||| 0.05 0.0236713 1.90631e-06 1.56695e-09 2.718 ||| 0-1 ||| 20 524574 +los ||| in their ||| 0.0010575 0.0236713 1.52505e-05 4.89671e-05 2.718 ||| 0-1 ||| 7565 524574 +los ||| in them ||| 0.00245098 0.038218 1.90631e-06 4.30787e-05 2.718 ||| 0-1 ||| 408 524574 +los ||| in these agreements ||| 0.0357143 0.199336 1.90631e-06 6.99922e-08 2.718 ||| 0-2 ||| 28 524574 +los ||| in these countries ||| 0.00117233 0.0240362 1.90631e-06 1.98103e-08 2.718 ||| 0-1 ||| 853 524574 +los ||| in these ||| 0.00104548 0.0240362 1.14379e-05 5.21735e-05 2.718 ||| 0-1 ||| 5739 524574 +los ||| in this area , the ||| 0.0121951 0.122289 1.90631e-06 2.93821e-09 2.718 ||| 0-4 ||| 82 524574 +los ||| in this case , the ||| 0.0107527 0.122289 3.81262e-06 7.56943e-09 2.718 ||| 0-4 ||| 186 524574 +los ||| in this context the ||| 0.0149254 0.122289 1.90631e-06 7.96154e-09 2.718 ||| 0-3 ||| 67 524574 +los ||| in this first step and the ||| 1 0.122289 1.90631e-06 5.90134e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| in this respect , the ||| 0.00280899 0.122289 1.90631e-06 3.0606e-09 2.718 ||| 0-4 ||| 356 524574 +los ||| in this respect too , the ||| 0.333333 0.122289 1.90631e-06 4.16548e-12 2.718 ||| 0-5 ||| 3 524574 +los ||| in this ||| 3.08957e-05 0.0002959 3.81262e-06 3.24706e-06 2.718 ||| 0-1 ||| 64734 524574 +los ||| in those cases ||| 0.0113636 0.284705 1.90631e-06 4.57834e-08 2.718 ||| 0-1 ||| 88 524574 +los ||| in those countries , the ||| 0.25 0.122289 1.90631e-06 3.01046e-10 2.718 ||| 0-4 ||| 4 524574 +los ||| in those final stages , the ||| 1 0.122289 1.90631e-06 9.13469e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| in those instances ||| 0.333333 0.284705 1.90631e-06 4.11014e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| in those that ||| 0.0666667 0.284705 1.90631e-06 6.0121e-06 2.718 ||| 0-1 ||| 15 524574 +los ||| in those ||| 0.0048608 0.284705 2.09694e-05 0.000357404 2.718 ||| 0-1 ||| 2263 524574 +los ||| in view of the ||| 0.00115473 0.122289 5.71893e-06 4.50881e-07 2.718 ||| 0-3 ||| 2598 524574 +los ||| in virtually every continent . ||| 1 0.144232 1.90631e-06 4.03968e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| in virtually every continent ||| 1 0.144232 1.90631e-06 1.33367e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| in virtually every ||| 0.0625 0.144232 1.90631e-06 1.15971e-09 2.718 ||| 0-2 ||| 16 524574 +los ||| in warding off the ||| 0.333333 0.122289 1.90631e-06 1.49476e-12 2.718 ||| 0-3 ||| 3 524574 +los ||| in wealthy ||| 0.5 0.0314961 1.90631e-06 2.50433e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| in what are ||| 0.0357143 0.0061209 1.90631e-06 3.11351e-07 2.718 ||| 0-1 ||| 28 524574 +los ||| in what the amendment ||| 0.5 0.122289 1.90631e-06 8.20628e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| in what the ||| 0.0434783 0.122289 1.90631e-06 1.28827e-05 2.718 ||| 0-2 ||| 23 524574 +los ||| in what ||| 0.000832639 0.0061209 1.90631e-06 2.05205e-05 2.718 ||| 0-1 ||| 1201 524574 +los ||| in which case the ||| 0.0952381 0.122289 3.81262e-06 8.34458e-08 2.718 ||| 0-3 ||| 21 524574 +los ||| in which the ||| 0.00361794 0.122289 1.90631e-05 7.7994e-05 2.718 ||| 0-2 ||| 2764 524574 +los ||| in wider consumer uses involving daily exposure ||| 1 0.184092 1.90631e-06 1.64485e-28 2.718 ||| 0-2 ||| 1 524574 +los ||| in wider consumer uses involving daily ||| 1 0.184092 1.90631e-06 2.53053e-23 2.718 ||| 0-2 ||| 1 524574 +los ||| in wider consumer uses involving ||| 1 0.184092 1.90631e-06 1.11477e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| in wider consumer uses ||| 1 0.184092 1.90631e-06 3.56157e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| in wider consumer ||| 1 0.184092 1.90631e-06 1.93564e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| in writing . the ||| 0.0454545 0.122289 1.90631e-06 6.07393e-09 2.718 ||| 0-3 ||| 22 524574 +los ||| in writing . ||| 0.000107135 4.2e-06 1.90631e-06 3.6463e-11 2.718 ||| 0-2 ||| 9334 524574 +los ||| in ||| 7.76888e-05 0.0001268 0.000163943 0.0001381 2.718 ||| 0-0 ||| 1.10698e+06 524574 +los ||| inaccurate data ||| 0.111111 0.16292 1.90631e-06 2.90066e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| inadequate maintenance ||| 0.25 0.0017559 1.90631e-06 2.66e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| incentives ||| 0.00118694 0.112154 3.81262e-06 0.000209 2.718 ||| 0-0 ||| 1685 524574 +los ||| incidentally , of the ||| 0.25 0.122289 1.90631e-06 5.81228e-08 2.718 ||| 0-3 ||| 4 524574 +los ||| incidents of ||| 0.0128205 0.0760967 1.90631e-06 4.49047e-06 2.718 ||| 0-0 ||| 78 524574 +los ||| incidents ||| 0.00403633 0.0760967 7.62523e-06 8.26e-05 2.718 ||| 0-0 ||| 991 524574 +los ||| include the countries ||| 0.0526316 0.122289 1.90631e-06 2.15646e-08 2.718 ||| 0-1 ||| 19 524574 +los ||| include the ||| 0.0315142 0.0657514 7.81587e-05 3.96356e-05 2.718 ||| 0-0 0-1 ||| 1301 524574 +los ||| include those ||| 0.0625 0.146959 5.71893e-06 1.54286e-06 2.718 ||| 0-0 0-1 ||| 48 524574 +los ||| include ||| 0.00441091 0.0092135 7.24397e-05 9.24e-05 2.718 ||| 0-0 ||| 8615 524574 +los ||| included the ||| 0.0113636 0.122289 3.81262e-06 4.0279e-05 2.718 ||| 0-1 ||| 176 524574 +los ||| includes the ||| 0.00477707 0.122289 5.71893e-06 1.24826e-05 2.718 ||| 0-1 ||| 628 524574 +los ||| including UNICEF , the European ||| 1 0.062853 1.90631e-06 4.25992e-15 2.718 ||| 0-3 0-4 ||| 1 524574 +los ||| including fish auctions ||| 0.25 0.0906807 1.90631e-06 2.56511e-14 2.718 ||| 0-1 ||| 4 524574 +los ||| including fish ||| 0.0666667 0.0906807 1.90631e-06 3.66444e-08 2.718 ||| 0-1 ||| 15 524574 +los ||| including our group ||| 0.25 0.0248369 1.90631e-06 4.80196e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| including our ||| 0.0104167 0.0248369 1.90631e-06 3.72823e-07 2.718 ||| 0-1 ||| 96 524574 +los ||| including some ||| 0.00877193 0.0020765 1.90631e-06 1.18807e-08 2.718 ||| 0-1 ||| 114 524574 +los ||| including the anomaly ||| 0.5 0.122289 1.90631e-06 1.79132e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| including the refusal ||| 0.5 0.122289 1.90631e-06 2.59742e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| including the ||| 0.00253456 0.122289 2.09694e-05 4.4783e-05 2.718 ||| 0-1 ||| 4340 524574 +los ||| including those Members of this ||| 1 0.284705 1.90631e-06 9.03201e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| including those Members of ||| 1 0.284705 1.90631e-06 1.39784e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| including those Members ||| 0.5 0.284705 1.90631e-06 2.57126e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| including those ||| 0.00322928 0.284705 5.71893e-06 1.74323e-06 2.718 ||| 0-1 ||| 929 524574 +los ||| including ||| 0.000648989 0.0014375 2.66883e-05 2.63e-05 2.718 ||| 0-0 ||| 21572 524574 +los ||| income from ||| 0.0133333 0.0989474 3.81262e-06 6.62358e-07 2.718 ||| 0-0 ||| 150 524574 +los ||| income the ||| 0.2 0.122289 1.90631e-06 9.43704e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| income ||| 0.00258945 0.0989474 2.09694e-05 0.0004113 2.718 ||| 0-0 ||| 4248 524574 +los ||| incomes ||| 0.00419727 0.149562 7.62523e-06 0.0001828 2.718 ||| 0-0 ||| 953 524574 +los ||| incorporate the ||| 0.0119522 0.122289 5.71893e-06 5.70512e-06 2.718 ||| 0-1 ||| 251 524574 +los ||| increase for all the institutions is one ||| 1 0.122289 1.90631e-06 1.38038e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| increase for all the institutions is ||| 1 0.122289 1.90631e-06 3.31185e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| increase for all the institutions ||| 1 0.122289 1.90631e-06 1.05671e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| increase for all the ||| 1 0.122289 1.90631e-06 2.01279e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| increase in staff resources for the conduct ||| 1 0.21958 1.90631e-06 1.53206e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| increase in staff resources for the ||| 1 0.21958 1.90631e-06 2.54919e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| increase in staff resources for ||| 1 0.21958 1.90631e-06 4.15233e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| increase in staff resources ||| 1 0.21958 1.90631e-06 5.40267e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| increase our level ||| 0.333333 0.0248369 1.90631e-06 3.9467e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| increase our ||| 0.00502513 0.0248369 1.90631e-06 4.61386e-07 2.718 ||| 0-1 ||| 199 524574 +los ||| increase the focus ||| 0.142857 0.122289 1.90631e-06 4.2896e-09 2.718 ||| 0-1 ||| 7 524574 +los ||| increase the ||| 0.00231214 0.122289 1.14379e-05 5.54212e-05 2.718 ||| 0-1 ||| 2595 524574 +los ||| increased the ||| 0.00492611 0.122289 1.90631e-06 2.13191e-05 2.718 ||| 0-1 ||| 203 524574 +los ||| increased ||| 0.000453412 0.0016059 7.62523e-06 1.75e-05 2.718 ||| 0-0 ||| 8822 524574 +los ||| increases by ||| 0.0322581 0.0695532 1.90631e-06 7.70715e-07 2.718 ||| 0-0 ||| 31 524574 +los ||| increases now ||| 0.5 0.0695532 1.90631e-06 3.02393e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| increases the risks ||| 0.333333 0.122289 1.90631e-06 7.69033e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| increases the ||| 0.00361011 0.122289 1.90631e-06 4.63273e-06 2.718 ||| 0-1 ||| 277 524574 +los ||| increases ||| 0.00492611 0.0695532 2.09694e-05 0.0001468 2.718 ||| 0-0 ||| 2233 524574 +los ||| increasing competition in the ||| 0.25 0.122289 1.90631e-06 1.72645e-11 2.718 ||| 0-3 ||| 4 524574 +los ||| increasing number of people of the ||| 1 0.122289 1.90631e-06 2.86007e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| increasing rates of ||| 0.5 0.177851 1.90631e-06 2.96784e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| increasing rates ||| 0.333333 0.177851 1.90631e-06 5.4592e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| increasing the amount ||| 0.0285714 0.122289 1.90631e-06 5.40611e-09 2.718 ||| 0-1 ||| 35 524574 +los ||| increasing the competences of ||| 0.333333 0.122289 1.90631e-06 7.00619e-12 2.718 ||| 0-1 ||| 3 524574 +los ||| increasing the competences ||| 0.142857 0.122289 1.90631e-06 1.28876e-10 2.718 ||| 0-1 ||| 7 524574 +los ||| increasing the level of risk ||| 0.0526316 0.122289 1.90631e-06 1.20895e-13 2.718 ||| 0-1 ||| 19 524574 +los ||| increasing the level of ||| 0.0181818 0.122289 1.90631e-06 1.03329e-09 2.718 ||| 0-1 ||| 55 524574 +los ||| increasing the level ||| 0.0169492 0.122289 1.90631e-06 1.90069e-08 2.718 ||| 0-1 ||| 59 524574 +los ||| increasing the ||| 0.00261438 0.122289 7.62523e-06 2.22199e-05 2.718 ||| 0-1 ||| 1530 524574 +los ||| increasingly acute ||| 0.4 0.0049587 3.81262e-06 1.6704e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| incumbent on the ||| 0.0526316 0.122289 1.90631e-06 4.53483e-08 2.718 ||| 0-2 ||| 19 524574 +los ||| indebted ||| 0.00684932 0.015748 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 146 524574 +los ||| indeed , only the ||| 0.333333 0.122289 1.90631e-06 4.31554e-08 2.718 ||| 0-3 ||| 3 524574 +los ||| indeed , the ||| 0.00628141 0.122289 9.53154e-06 3.87704e-05 2.718 ||| 0-2 ||| 796 524574 +los ||| indeed enable the ||| 0.5 0.122289 1.90631e-06 3.20554e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| indeed should the ||| 1 0.122289 1.90631e-06 1.44054e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| indeed the case ||| 0.0151515 0.122289 1.90631e-06 3.47831e-07 2.718 ||| 0-1 ||| 66 524574 +los ||| indeed the ||| 0.0156006 0.122289 1.90631e-05 0.000325106 2.718 ||| 0-1 ||| 641 524574 +los ||| indeed with the ||| 0.111111 0.122289 3.81262e-06 2.07889e-06 2.718 ||| 0-2 ||| 18 524574 +los ||| indeed ||| 7.87836e-05 3.84e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 12693 524574 +los ||| independent vehicle ||| 0.333333 0.108298 1.90631e-06 5.5027e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| independent ||| 0.000977836 0.0010885 1.14379e-05 5.8e-06 2.718 ||| 0-0 ||| 6136 524574 +los ||| indicated the ||| 0.0212766 0.122289 1.90631e-06 1.00376e-05 2.718 ||| 0-1 ||| 47 524574 +los ||| indications ||| 0.00243605 0.010352 3.81262e-06 9.7e-06 2.718 ||| 0-0 ||| 821 524574 +los ||| indicative of the ||| 0.0175439 0.122289 1.90631e-06 1.51579e-07 2.718 ||| 0-2 ||| 57 524574 +los ||| indicators ||| 0.00113314 0.129229 3.81262e-06 0.0002265 2.718 ||| 0-0 ||| 1765 524574 +los ||| indifferent towards the ||| 0.2 0.122289 1.90631e-06 1.36194e-10 2.718 ||| 0-2 ||| 5 524574 +los ||| indigenous ||| 0.00159236 0.0401606 1.90631e-06 2.92e-05 2.718 ||| 0-0 ||| 628 524574 +los ||| indirectly ||| 0.00101937 0.0010707 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 981 524574 +los ||| individual , ||| 0.00465116 0.110351 1.90631e-06 0.000153278 2.718 ||| 0-0 ||| 215 524574 +los ||| individual EU ||| 0.05 0.0573348 1.90631e-06 6.94833e-07 2.718 ||| 0-0 0-1 ||| 20 524574 +los ||| individual Member States themselves ||| 0.0714286 0.110351 1.90631e-06 1.3581e-13 2.718 ||| 0-0 ||| 14 524574 +los ||| individual Member States ||| 0.000714796 0.110351 1.90631e-06 3.16057e-10 2.718 ||| 0-0 ||| 1399 524574 +los ||| individual Member ||| 0.00546448 0.110351 3.81262e-06 6.62315e-07 2.718 ||| 0-0 ||| 366 524574 +los ||| individual buildings ||| 0.333333 0.283826 1.90631e-06 8.85305e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| individual chapters have ||| 1 0.110351 1.90631e-06 3.38182e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| individual chapters ||| 0.111111 0.110351 1.90631e-06 2.82766e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| individual countries ' ||| 0.166667 0.0700843 1.90631e-06 6.26995e-09 2.718 ||| 0-1 0-2 ||| 6 524574 +los ||| individual countries will ||| 0.333333 0.103036 1.90631e-06 9.26934e-08 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| individual countries ||| 0.0015456 0.103036 1.90631e-06 1.07145e-05 2.718 ||| 0-0 0-1 ||| 647 524574 +los ||| individual is ||| 0.025 0.110351 1.90631e-06 4.02827e-05 2.718 ||| 0-0 ||| 40 524574 +los ||| individual level means ||| 0.5 0.110351 1.90631e-06 6.96719e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| individual level ||| 0.0588235 0.110351 1.90631e-06 1.09945e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| individual producers ||| 0.125 0.36135 1.90631e-06 3.57586e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| individual professional development , ||| 1 0.110351 1.90631e-06 4.18556e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| individual professional development ||| 1 0.110351 1.90631e-06 3.50977e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| individual professional ||| 0.25 0.110351 1.90631e-06 2.1336e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| individual property ||| 1 0.138658 1.90631e-06 6.99846e-07 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| individual states ||| 0.00534759 0.118291 1.90631e-06 2.1391e-07 2.718 ||| 0-1 ||| 187 524574 +los ||| individual will be ||| 1 0.110351 1.90631e-06 2.01516e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| individual will ||| 0.166667 0.110351 1.90631e-06 1.11194e-05 2.718 ||| 0-0 ||| 6 524574 +los ||| individual ||| 0.0399511 0.110351 0.000747273 0.0012853 2.718 ||| 0-0 ||| 9812 524574 +los ||| individuals ' ||| 0.0833333 0.0938911 1.90631e-06 2.88567e-06 2.718 ||| 0-0 0-1 ||| 12 524574 +los ||| individuals and ||| 0.00200401 0.143334 1.90631e-06 6.7953e-06 2.718 ||| 0-0 ||| 499 524574 +los ||| individuals can ||| 0.0384615 0.143334 1.90631e-06 1.61356e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| individuals of ||| 0.1 0.143334 1.90631e-06 2.94925e-05 2.718 ||| 0-0 ||| 10 524574 +los ||| individuals ||| 0.00888099 0.143334 4.76577e-05 0.0005425 2.718 ||| 0-0 ||| 2815 524574 +los ||| individuals ’ ||| 0.666667 0.143334 3.81262e-06 9.45089e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| indoctrinate the ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| induce the ||| 0.1 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-1 ||| 10 524574 +los ||| industrial base must be ||| 0.25 0.0102752 1.90631e-06 5.15039e-14 2.718 ||| 0-0 ||| 4 524574 +los ||| industrial base must ||| 0.25 0.0102752 1.90631e-06 2.84193e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| industrial base ||| 0.0135135 0.0102752 1.90631e-06 1.83872e-09 2.718 ||| 0-0 ||| 74 524574 +los ||| industrial relations ||| 0.00934579 0.0102752 1.90631e-06 2.95392e-09 2.718 ||| 0-0 ||| 107 524574 +los ||| industrial ||| 0.00261938 0.0102752 2.4782e-05 5.44e-05 2.718 ||| 0-0 ||| 4963 524574 +los ||| industries ||| 0.00034662 0.006951 1.90631e-06 2.14e-05 2.718 ||| 0-0 ||| 2885 524574 +los ||| inevitable part of the ||| 0.5 0.122289 1.90631e-06 2.30755e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| infants . he ||| 1 0.300613 1.90631e-06 1.25826e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| infants . ||| 0.0769231 0.300613 1.90631e-06 1.4418e-07 2.718 ||| 0-0 ||| 13 524574 +los ||| infants ||| 0.0235294 0.300613 3.81262e-06 4.76e-05 2.718 ||| 0-0 ||| 85 524574 +los ||| inflate them ||| 1 0.038218 1.90631e-06 1.40882e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| influence its outcome , and ||| 0.5 0.0211371 1.90631e-06 5.57378e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| influence its outcome , ||| 0.5 0.0211371 1.90631e-06 4.4498e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| influence its outcome ||| 0.5 0.0211371 1.90631e-06 3.73134e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| influence its ||| 0.2 0.0211371 1.90631e-06 7.30204e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| influence the ||| 0.00334448 0.122289 1.90631e-06 1.46703e-05 2.718 ||| 0-1 ||| 299 524574 +los ||| inform their ||| 0.047619 0.0236713 1.90631e-06 4.36951e-08 2.718 ||| 0-1 ||| 21 524574 +los ||| information about the ||| 0.00253165 0.122289 1.90631e-06 1.00404e-07 2.718 ||| 0-2 ||| 395 524574 +los ||| information become ||| 0.333333 0.0002583 1.90631e-06 1.94276e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| information procedures relating to ||| 1 0.219824 1.90631e-06 3.97319e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| information procedures relating ||| 1 0.219824 1.90631e-06 4.47138e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| information procedures ||| 0.2 0.219824 1.90631e-06 3.93261e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| information services ||| 0.010101 0.272175 1.90631e-06 1.29017e-06 2.718 ||| 0-1 ||| 99 524574 +los ||| information to MEPs ||| 0.5 0.152546 1.90631e-06 2.29635e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| information ||| 8.10701e-05 0.0002583 5.71893e-06 6.8e-06 2.718 ||| 0-0 ||| 37005 524574 +los ||| informed about the ||| 0.00662252 0.122289 1.90631e-06 1.81395e-08 2.718 ||| 0-2 ||| 151 524574 +los ||| informed of the ||| 0.00564972 0.122289 1.90631e-06 6.97261e-07 2.718 ||| 0-2 ||| 177 524574 +los ||| informs us ||| 0.0285714 0.0009954 1.90631e-06 8.448e-11 2.718 ||| 0-1 ||| 35 524574 +los ||| infrastructure costs ||| 0.0196078 0.214442 1.90631e-06 1.99368e-08 2.718 ||| 0-1 ||| 51 524574 +los ||| infrastructure ||| 0.000155836 0.0002015 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 6417 524574 +los ||| infringe the ||| 0.031746 0.122289 3.81262e-06 6.00539e-07 2.718 ||| 0-1 ||| 63 524574 +los ||| infringements of personal dignity ||| 0.5 0.0071955 1.90631e-06 7.50589e-17 2.718 ||| 0-2 ||| 2 524574 +los ||| infringements of personal ||| 0.5 0.0071955 1.90631e-06 1.04248e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| infringing the ||| 0.0204082 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 49 524574 +los ||| ingredients , the wrong ||| 1 0.122289 1.90631e-06 9.13425e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| ingredients , the ||| 0.333333 0.122289 1.90631e-06 1.63696e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| ingredients of ||| 0.025641 0.0713315 1.90631e-06 3.5689e-07 2.718 ||| 0-0 0-1 ||| 39 524574 +los ||| ingredients ||| 0.00719424 0.140684 9.53154e-06 0.0001079 2.718 ||| 0-0 ||| 695 524574 +los ||| inhabitants of ||| 0.00241546 0.0019787 1.90631e-06 2.613e-08 2.718 ||| 0-1 ||| 414 524574 +los ||| inhumane . ||| 0.0416667 0.0071942 1.90631e-06 8.7841e-09 2.718 ||| 0-0 ||| 24 524574 +los ||| inhumane ||| 0.00243309 0.0071942 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 411 524574 +los ||| initial investment ||| 0.0526316 0.0007958 1.90631e-06 2.0514e-10 2.718 ||| 0-1 ||| 19 524574 +los ||| initialled the ||| 0.2 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| initiated by the ||| 0.00813008 0.122289 1.90631e-06 3.15289e-08 2.718 ||| 0-2 ||| 123 524574 +los ||| injury ||| 0.00280899 0.0232558 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 356 524574 +los ||| inland ||| 0.00684932 0.0109991 5.71893e-06 1.17e-05 2.718 ||| 0-0 ||| 438 524574 +los ||| inputs and ||| 0.0909091 0.226415 1.90631e-06 2.91853e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| inputs ||| 0.045977 0.226415 7.62523e-06 2.33e-05 2.718 ||| 0-0 ||| 87 524574 +los ||| insalubrious ||| 0.125 0.2 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| inside the court . ||| 1 0.122289 1.90631e-06 4.73962e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| inside the court ||| 1 0.122289 1.90631e-06 1.56475e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| inside the ||| 0.00195695 0.122289 1.90631e-06 5.23327e-06 2.718 ||| 0-1 ||| 511 524574 +los ||| insiders ||| 0.0555556 0.175 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| insist that the ||| 0.00892857 0.122289 1.90631e-06 1.52974e-07 2.718 ||| 0-2 ||| 112 524574 +los ||| insofar as the ||| 0.0169492 0.122289 1.90631e-06 6.78472e-08 2.718 ||| 0-2 ||| 59 524574 +los ||| inspection ||| 0.00136147 0.0140296 3.81262e-06 1.75e-05 2.718 ||| 0-0 ||| 1469 524574 +los ||| inspections reveal clinical ||| 0.2 0.0451613 1.90631e-06 5.58144e-16 2.718 ||| 0-2 ||| 5 524574 +los ||| inspectorates ||| 0.0142857 0.0930233 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 70 524574 +los ||| inspectors ||| 0.00344828 0.211913 5.71893e-06 0.0001799 2.718 ||| 0-0 ||| 870 524574 +los ||| instance , those ||| 0.25 0.284705 1.90631e-06 1.29034e-07 2.718 ||| 0-2 ||| 4 524574 +los ||| instance the ||| 0.012987 0.122289 1.90631e-06 2.77964e-05 2.718 ||| 0-1 ||| 77 524574 +los ||| instances ||| 0.00927357 0.109043 1.14379e-05 7.97e-05 2.718 ||| 0-0 ||| 647 524574 +los ||| instead , the ||| 0.00398406 0.122289 1.90631e-06 1.03282e-05 2.718 ||| 0-2 ||| 251 524574 +los ||| instead , those ||| 0.333333 0.284705 1.90631e-06 4.02037e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| instead ; the ||| 1 0.122289 1.90631e-06 2.66747e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| instead of quotas ||| 0.0833333 0.0163934 1.90631e-06 6.19052e-10 2.718 ||| 0-2 ||| 12 524574 +los ||| institutes , ||| 0.125 0.175066 1.90631e-06 7.65615e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| institutes as a ||| 0.2 0.175066 1.90631e-06 2.90388e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| institutes as ||| 0.166667 0.175066 1.90631e-06 6.55122e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| institutes is now possible . ||| 0.5 0.175066 1.90631e-06 1.00699e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| institutes is now possible ||| 0.5 0.175066 1.90631e-06 3.32448e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| institutes is now ||| 0.5 0.175066 1.90631e-06 4.14472e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| institutes is ||| 0.333333 0.175066 1.90631e-06 2.0121e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| institutes ||| 0.00802139 0.175066 5.71893e-06 6.42e-05 2.718 ||| 0-0 ||| 374 524574 +los ||| instituting ||| 0.00877193 0.0092593 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 114 524574 +los ||| institution . the ||| 1 0.122289 1.90631e-06 3.54711e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| institutional ||| 0.000178923 0.0001941 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 5589 524574 +los ||| institutions ' ||| 0.00917431 0.0444479 1.90631e-06 2.79258e-07 2.718 ||| 0-1 ||| 109 524574 +los ||| institutions to improving their ||| 1 0.0236713 1.90631e-06 2.30521e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| instruct the ||| 0.0344828 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 29 524574 +los ||| instructors ||| 0.05 0.260274 5.71893e-06 1.85e-05 2.718 ||| 0-0 ||| 60 524574 +los ||| instruments , ||| 0.00294985 0.112873 1.90631e-06 0.000112231 2.718 ||| 0-0 ||| 339 524574 +los ||| instruments have already ||| 0.5 0.112873 1.90631e-06 5.21236e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| instruments have ||| 0.0625 0.112873 1.90631e-06 1.12554e-05 2.718 ||| 0-0 ||| 16 524574 +los ||| instruments to be used ||| 0.0769231 0.112873 1.90631e-06 6.50157e-10 2.718 ||| 0-0 ||| 13 524574 +los ||| instruments to be ||| 0.0555556 0.112873 1.90631e-06 1.51552e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| instruments to ||| 0.00342466 0.112873 1.90631e-06 8.36245e-05 2.718 ||| 0-0 ||| 292 524574 +los ||| instruments which do not require the consent ||| 1 0.112873 1.90631e-06 2.23591e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| instruments which do not require the ||| 1 0.112873 1.90631e-06 2.69387e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| instruments which do not require ||| 1 0.112873 1.90631e-06 4.38799e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| instruments which do not ||| 1 0.112873 1.90631e-06 9.37604e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| instruments which do ||| 1 0.112873 1.90631e-06 2.74627e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| instruments which ||| 0.00813008 0.112873 1.90631e-06 7.99427e-06 2.718 ||| 0-0 ||| 123 524574 +los ||| instruments ||| 0.00211158 0.112873 3.62199e-05 0.0009411 2.718 ||| 0-0 ||| 8998 524574 +los ||| insurance , ||| 0.0070922 0.0987778 1.90631e-06 4.59131e-05 2.718 ||| 0-0 ||| 141 524574 +los ||| insurance ||| 0.00309385 0.0987778 1.71568e-05 0.000385 2.718 ||| 0-0 ||| 2909 524574 +los ||| insured ||| 0.019802 0.0364964 3.81262e-06 4.9e-06 2.718 ||| 0-0 ||| 101 524574 +los ||| insurers ||| 0.00900901 0.108374 1.90631e-06 2.14e-05 2.718 ||| 0-0 ||| 111 524574 +los ||| intangible ||| 0.0172414 0.038961 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 58 524574 +los ||| integrate the ||| 0.00487805 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-1 ||| 205 524574 +los ||| intellectual property ||| 0.00267618 0.166965 5.71893e-06 3.1581e-09 2.718 ||| 0-1 ||| 1121 524574 +los ||| intelligence ||| 0.00196078 0.0300207 3.81262e-06 2.82e-05 2.718 ||| 0-0 ||| 1020 524574 +los ||| intelligent ||| 0.000910747 0.0028011 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 1098 524574 +los ||| intensify their ||| 0.0238095 0.0236713 1.90631e-06 5.71925e-09 2.718 ||| 0-1 ||| 42 524574 +los ||| intensive farming ||| 0.0175439 0.0076384 1.90631e-06 1.7316e-10 2.718 ||| 0-0 ||| 57 524574 +los ||| intensive ||| 0.00240192 0.0076384 5.71893e-06 1.17e-05 2.718 ||| 0-0 ||| 1249 524574 +los ||| intensively supporting the ||| 0.333333 0.122289 1.90631e-06 4.94158e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| intention of questioning that ||| 1 0.0019787 1.90631e-06 9.11647e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| intention of questioning ||| 0.5 0.0019787 1.90631e-06 5.4195e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| intention of the ||| 0.00666667 0.122289 1.90631e-06 1.31757e-06 2.718 ||| 0-2 ||| 150 524574 +los ||| intention of ||| 0.00129366 0.0019787 1.90631e-06 1.86879e-07 2.718 ||| 0-1 ||| 773 524574 +los ||| intents and purposes ||| 0.010101 0.271186 1.90631e-06 7.07216e-11 2.718 ||| 0-0 ||| 99 524574 +los ||| intents and ||| 0.0253165 0.271186 3.81262e-06 5.8496e-07 2.718 ||| 0-0 ||| 79 524574 +los ||| intents ||| 0.0222222 0.271186 3.81262e-06 4.67e-05 2.718 ||| 0-0 ||| 90 524574 +los ||| inter-European ||| 0.2 0.125 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| interest the ||| 0.00694444 0.122289 1.90631e-06 4.81718e-05 2.718 ||| 0-1 ||| 144 524574 +los ||| interest which the European ||| 0.5 0.0034168 1.90631e-06 6.6734e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| interest ||| 0.000829375 0.0023774 2.09694e-05 2.92e-05 2.718 ||| 0-0 ||| 13263 524574 +los ||| interested parties ||| 0.00160256 0.132694 1.90631e-06 3.56372e-08 2.718 ||| 0-1 ||| 624 524574 +los ||| interests , ||| 0.00671141 0.0670116 5.71893e-06 0.000121628 2.718 ||| 0-0 ||| 447 524574 +los ||| interests of the ||| 0.00113314 0.122289 3.81262e-06 3.19714e-06 2.718 ||| 0-2 ||| 1765 524574 +los ||| interests of ||| 0.000205677 0.0670116 1.90631e-06 5.54458e-05 2.718 ||| 0-0 ||| 4862 524574 +los ||| interests ||| 0.00140421 0.0670116 4.00325e-05 0.0010199 2.718 ||| 0-0 ||| 14955 524574 +los ||| intergovernmental ||| 0.00125945 0.0019036 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 1588 524574 +los ||| interim and final payments . ||| 1 0.273884 1.90631e-06 4.51402e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| interim and final payments ||| 1 0.273884 1.90631e-06 1.49027e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| interim ||| 0.000729927 0.0007496 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1370 524574 +los ||| interior ||| 0.00757576 0.013245 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 132 524574 +los ||| internal European ||| 0.02 0.0019555 1.90631e-06 7.7486e-09 2.718 ||| 0-0 0-1 ||| 50 524574 +los ||| internal ||| 0.000331433 0.0004942 9.53154e-06 6.8e-06 2.718 ||| 0-0 ||| 15086 524574 +los ||| international conventions to ||| 0.0833333 0.126627 1.90631e-06 1.43123e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| international conventions ||| 0.00221239 0.126627 1.90631e-06 1.61069e-08 2.718 ||| 0-1 ||| 452 524574 +los ||| international cooperation ||| 0.000932836 0.001214 1.90631e-06 3.2235e-09 2.718 ||| 0-0 ||| 1072 524574 +los ||| international markets . without ||| 1 0.239993 1.90631e-06 1.47095e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| international markets . ||| 0.015625 0.239993 1.90631e-06 6.65588e-10 2.718 ||| 0-1 ||| 64 524574 +los ||| international markets ||| 0.00609756 0.239993 1.90631e-06 2.19739e-07 2.718 ||| 0-1 ||| 164 524574 +los ||| international ||| 0.000742758 0.001214 4.57514e-05 3.5e-05 2.718 ||| 0-0 ||| 32312 524574 +los ||| internet ||| 0.00531915 0.0057803 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 376 524574 +los ||| interpretation and cumbersome bureaucracy ||| 0.5 0.0036232 1.90631e-06 1.28641e-18 2.718 ||| 0-2 ||| 2 524574 +los ||| interpretation and cumbersome ||| 0.5 0.0036232 1.90631e-06 1.97909e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| interpretation to be given to the arrangements ||| 1 0.0717439 1.90631e-06 2.40814e-17 2.718 ||| 0-6 ||| 1 524574 +los ||| interpreters ||| 0.00227273 0.0654008 1.90631e-06 3.01e-05 2.718 ||| 0-0 ||| 440 524574 +los ||| intervals ||| 0.0121951 0.0387097 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 82 524574 +los ||| intervene any further , the only thing ||| 1 0.122289 1.90631e-06 1.09334e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| intervene any further , the only ||| 1 0.122289 1.90631e-06 2.99627e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| intervene any further , the ||| 1 0.122289 1.90631e-06 2.69183e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| into Western ||| 1 0.0161392 1.90631e-06 5.09243e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| into account in this context the ||| 1 0.122289 1.90631e-06 2.35006e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| into account the ||| 0.0029976 0.122289 9.53154e-06 1.26618e-07 2.718 ||| 0-2 ||| 1668 524574 +los ||| into action until the ||| 1 0.122289 1.90631e-06 6.4704e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| into all ||| 0.0031348 0.0177928 1.90631e-06 2.76008e-06 2.718 ||| 0-1 ||| 319 524574 +los ||| into any of the ||| 0.5 0.122289 1.90631e-06 3.62057e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| into consideration the ||| 0.00350877 0.122289 1.90631e-06 4.75642e-08 2.718 ||| 0-2 ||| 285 524574 +los ||| into deeds ||| 0.02 0.189831 1.90631e-06 1.11808e-07 2.718 ||| 0-1 ||| 50 524574 +los ||| into details for every one ||| 1 0.144232 1.90631e-06 2.97352e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| into details for every ||| 1 0.144232 1.90631e-06 7.13417e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| into inland ||| 1 0.0109991 1.90631e-06 1.20124e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| into line with the ||| 0.00684932 0.122289 1.90631e-06 8.29089e-10 2.718 ||| 0-3 ||| 146 524574 +los ||| into national law ||| 0.00645161 0.0129851 1.90631e-06 7.74349e-11 2.718 ||| 0-1 ||| 155 524574 +los ||| into national ||| 0.0192308 0.0129851 1.90631e-06 4.39222e-07 2.718 ||| 0-1 ||| 52 524574 +los ||| into non-regional ||| 1 1 1.90631e-06 1.0267e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| into systems ||| 0.5 0.213574 1.90631e-06 3.33606e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| into the European Union ||| 0.00160256 0.122289 1.90631e-06 8.20875e-10 2.718 ||| 0-1 ||| 624 524574 +los ||| into the European ||| 0.0192308 0.122289 1.90631e-06 1.47269e-06 2.718 ||| 0-1 ||| 52 524574 +los ||| into the balance ||| 0.2 0.122289 1.90631e-06 2.37821e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| into the bargain ||| 0.0555556 0.122289 1.90631e-06 1.27719e-09 2.718 ||| 0-1 ||| 18 524574 +los ||| into the fold ||| 0.111111 0.122289 1.90631e-06 1.76164e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| into the gutter by the ||| 1 0.0642678 1.90631e-06 1.75182e-14 2.718 ||| 0-3 0-4 ||| 1 524574 +los ||| into the hearings ||| 0.25 0.122289 1.90631e-06 1.89376e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| into the question of who was ||| 1 0.122289 1.90631e-06 5.47344e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| into the question of who ||| 1 0.122289 1.90631e-06 1.74703e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| into the question of ||| 0.111111 0.122289 1.90631e-06 1.98076e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| into the question ||| 0.0625 0.122289 1.90631e-06 3.64351e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| into the ||| 0.00276498 0.122289 5.14703e-05 0.000440409 2.718 ||| 0-1 ||| 9765 524574 +los ||| into their ||| 0.00294118 0.0236713 1.90631e-06 2.34878e-06 2.718 ||| 0-1 ||| 340 524574 +los ||| into those ||| 0.0217391 0.284705 1.90631e-06 1.71434e-05 2.718 ||| 0-1 ||| 46 524574 +los ||| introduce mechanisms for the cooperation ||| 1 0.122289 1.90631e-06 1.05508e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| introduce mechanisms for the ||| 1 0.122289 1.90631e-06 1.14558e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| introduce people ||| 0.333333 0.0894672 1.90631e-06 4.02428e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| introduce these ||| 0.0222222 0.0240362 1.90631e-06 1.24556e-07 2.718 ||| 0-1 ||| 45 524574 +los ||| introduced , the Member States would have ||| 1 0.122289 1.90631e-06 8.16689e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| introduced , the Member States would ||| 1 0.122289 1.90631e-06 6.82862e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| introduced , the Member States ||| 1 0.122289 1.90631e-06 1.16357e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| introduced , the Member ||| 1 0.122289 1.90631e-06 2.43832e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| introduced , the ||| 0.0769231 0.122289 1.90631e-06 4.73184e-06 2.718 ||| 0-2 ||| 13 524574 +los ||| introduced in ||| 0.00332226 0.0001268 1.90631e-06 1.27742e-08 2.718 ||| 0-1 ||| 301 524574 +los ||| introduced into the ||| 0.0147059 0.122289 1.90631e-06 4.07379e-08 2.718 ||| 0-2 ||| 68 524574 +los ||| introduced through the ||| 0.2 0.122289 1.90631e-06 1.8264e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| introduces a significant tightening up of the ||| 1 0.122289 1.90631e-06 1.11682e-21 2.718 ||| 0-6 ||| 1 524574 +los ||| introducing the ||| 0.00332226 0.122289 1.90631e-06 1.34263e-05 2.718 ||| 0-1 ||| 301 524574 +los ||| investigating the ||| 0.0104167 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-1 ||| 96 524574 +los ||| investigational ||| 0.333333 0.5 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| investment is undoubtedly the key ||| 1 0.122289 1.90631e-06 8.88386e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| investment is undoubtedly the ||| 1 0.122289 1.90631e-06 1.22199e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| investment ||| 0.000253336 0.0007958 5.71893e-06 7.8e-06 2.718 ||| 0-0 ||| 11842 524574 +los ||| investor ||| 0.00393701 0.155319 1.90631e-06 7.1e-05 2.718 ||| 0-0 ||| 254 524574 +los ||| investors and investments ||| 0.333333 0.400665 1.90631e-06 6.67305e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| investors and ||| 0.00520833 0.400665 1.90631e-06 1.02662e-05 2.718 ||| 0-0 ||| 192 524574 +los ||| investors look elsewhere ||| 1 0.400665 1.90631e-06 8.86369e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| investors look ||| 1 0.400665 1.90631e-06 2.38913e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| investors with ||| 0.111111 0.400665 1.90631e-06 5.24093e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| investors ||| 0.00598802 0.400665 1.52505e-05 0.0008196 2.718 ||| 0-0 ||| 1336 524574 +los ||| invite the ||| 0.00485437 0.122289 1.90631e-06 4.63273e-06 2.718 ||| 0-1 ||| 206 524574 +los ||| invite them ||| 0.0526316 0.038218 1.90631e-06 2.17361e-08 2.718 ||| 0-1 ||| 19 524574 +los ||| inviting the ||| 0.0140845 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 71 524574 +los ||| involve all the ||| 0.0333333 0.122289 1.90631e-06 9.99306e-08 2.718 ||| 0-2 ||| 30 524574 +los ||| involve the accusations ||| 0.166667 0.122289 1.90631e-06 4.65246e-11 2.718 ||| 0-1 ||| 6 524574 +los ||| involve the ||| 0.0105485 0.122289 9.53154e-06 2.11475e-05 2.718 ||| 0-1 ||| 474 524574 +los ||| involve ||| 0.000355619 0.0009105 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 2812 524574 +los ||| involved in the ||| 0.000734754 0.122289 1.90631e-06 3.175e-06 2.718 ||| 0-2 ||| 1361 524574 +los ||| involves national ||| 0.5 0.0129851 1.90631e-06 1.30907e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| involving the following ||| 0.5 0.122289 1.90631e-06 1.71589e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| involving the ||| 0.00219298 0.122289 3.81262e-06 1.34263e-05 2.718 ||| 0-1 ||| 912 524574 +los ||| irradiated ||| 0.0142857 0.039604 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 70 524574 +los ||| is , the ||| 0.00483092 0.122289 1.90631e-06 0.00160326 2.718 ||| 0-2 ||| 207 524574 +los ||| is , those of us ||| 1 0.284705 1.90631e-06 9.77866e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| is , those of ||| 0.5 0.284705 1.90631e-06 3.39278e-06 2.718 ||| 0-2 ||| 2 524574 +los ||| is , those ||| 0.1 0.284705 1.90631e-06 6.24085e-05 2.718 ||| 0-2 ||| 10 524574 +los ||| is USD 10 billion . the ||| 1 0.122289 1.90631e-06 2.2163e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| is a fact that these ||| 0.333333 0.0240362 1.90631e-06 1.66858e-10 2.718 ||| 0-4 ||| 3 524574 +los ||| is a fine ||| 0.0185185 0.0063694 1.90631e-06 2.02826e-08 2.718 ||| 0-2 ||| 54 524574 +los ||| is a general appreciation of the ||| 1 0.122289 1.90631e-06 7.36594e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| is a matter for ||| 0.00358423 0.0015353 1.90631e-06 1.27095e-09 2.718 ||| 0-3 ||| 279 524574 +los ||| is a matter of the ||| 0.037037 0.122289 1.90631e-06 3.36112e-08 2.718 ||| 0-4 ||| 27 524574 +los ||| is a national ||| 0.0555556 0.0129851 1.90631e-06 5.94308e-07 2.718 ||| 0-2 ||| 18 524574 +los ||| is a possibility of the ||| 1 0.122289 1.90631e-06 2.77312e-09 2.718 ||| 0-4 ||| 1 524574 +los ||| is a risk that those within the ||| 1 0.135672 1.90631e-06 1.95835e-17 2.718 ||| 0-4 0-5 0-6 ||| 1 524574 +los ||| is a threat to sovereignty , the ||| 1 0.122289 1.90631e-06 1.16343e-15 2.718 ||| 0-6 ||| 1 524574 +los ||| is access to the ||| 0.125 0.122289 1.90631e-06 1.02736e-07 2.718 ||| 0-3 ||| 8 524574 +los ||| is actually a fact which the ||| 1 0.122289 1.90631e-06 6.12111e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| is actually still the ||| 1 0.122289 1.90631e-06 4.18001e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| is actually the ||| 0.02 0.122289 3.81262e-06 5.54967e-06 2.718 ||| 0-2 ||| 100 524574 +los ||| is addressed in the ||| 0.0833333 0.122289 1.90631e-06 1.5424e-08 2.718 ||| 0-3 ||| 12 524574 +los ||| is all right for a right-wing dictator ||| 1 0.0057554 1.90631e-06 4.06069e-22 2.718 ||| 0-5 ||| 1 524574 +los ||| is all right for a right-wing ||| 1 0.0057554 1.90631e-06 1.26897e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| is also from the point ||| 1 0.122289 1.90631e-06 9.56182e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| is also from the ||| 0.333333 0.122289 1.90631e-06 1.09303e-07 2.718 ||| 0-3 ||| 3 524574 +los ||| is also high time the ||| 1 0.122289 1.90631e-06 1.66361e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| is also the ||| 0.00152672 0.122289 1.90631e-06 6.78732e-05 2.718 ||| 0-2 ||| 655 524574 +los ||| is any possibility of even a ||| 0.5 0.0178119 1.90631e-06 3.63329e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| is any possibility of even ||| 0.5 0.0178119 1.90631e-06 8.19679e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| is any possibility of ||| 0.5 0.0178119 1.90631e-06 1.34705e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| is any possibility ||| 0.5 0.0178119 1.90631e-06 2.47783e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| is any ||| 0.010929 0.0178119 3.81262e-06 2.89466e-05 2.718 ||| 0-1 ||| 183 524574 +los ||| is argued that the ||| 1 0.122289 1.90631e-06 2.2841e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| is at the very ||| 0.05 0.122289 1.90631e-06 1.95879e-07 2.718 ||| 0-2 ||| 20 524574 +los ||| is at the ||| 0.003861 0.122289 3.81262e-06 5.62952e-05 2.718 ||| 0-2 ||| 518 524574 +los ||| is available ||| 0.00326797 0.0092131 3.81262e-06 3.3817e-06 2.718 ||| 0-1 ||| 612 524574 +los ||| is being forced upon the ||| 1 0.122289 1.90631e-06 6.39787e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| is beyond my ||| 0.5 0.0086409 1.90631e-06 1.6181e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| is blowing through the ||| 0.5 0.122289 1.90631e-06 1.98024e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| is borne out by the ||| 0.0434783 0.122289 1.90631e-06 8.65145e-12 2.718 ||| 0-4 ||| 23 524574 +los ||| is both ||| 0.00173913 0.0352574 1.90631e-06 3.75404e-05 2.718 ||| 0-1 ||| 575 524574 +los ||| is certainly already the case ||| 0.333333 0.122289 1.90631e-06 1.6686e-12 2.718 ||| 0-3 ||| 3 524574 +los ||| is certainly already the ||| 0.333333 0.122289 1.90631e-06 1.55959e-09 2.718 ||| 0-3 ||| 3 524574 +los ||| is clear from the figure ||| 1 0.122289 1.90631e-06 5.4992e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| is clear from the ||| 0.0227273 0.122289 1.90631e-06 7.20734e-09 2.718 ||| 0-3 ||| 44 524574 +los ||| is clear that standards vary too much ||| 1 0.0495175 1.90631e-06 7.19133e-22 2.718 ||| 0-3 ||| 1 524574 +los ||| is clear that standards vary too ||| 1 0.0495175 1.90631e-06 7.16482e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| is clear that standards vary ||| 1 0.0495175 1.90631e-06 5.26438e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| is clear that standards ||| 1 0.0495175 1.90631e-06 1.46233e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| is clear that the ||| 0.0273973 0.122289 3.81262e-06 7.5285e-08 2.718 ||| 0-3 ||| 73 524574 +los ||| is coming out of the ||| 0.2 0.122289 1.90631e-06 5.43946e-10 2.718 ||| 0-4 ||| 5 524574 +los ||| is compiled ||| 1 0.0082645 1.90631e-06 5.95481e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| is compliance with the Copenhagen ||| 1 0.122289 1.90631e-06 6.3272e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| is compliance with the ||| 0.166667 0.122289 1.90631e-06 1.97725e-09 2.718 ||| 0-3 ||| 6 524574 +los ||| is convergence of ||| 0.5 0.0019787 1.90631e-06 9.32974e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| is cruel and inhumane . ||| 1 0.0071942 1.90631e-06 1.24143e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| is cruel and inhumane ||| 1 0.0071942 1.90631e-06 4.09849e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| is developed these ||| 0.5 0.005811 1.90631e-06 1.07588e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| is developed ||| 0.0123457 0.005811 1.90631e-06 1.03739e-06 2.718 ||| 0-1 ||| 81 524574 +los ||| is distribute condoms ||| 1 0.231579 1.90631e-06 1.94503e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| is driven mad by ||| 1 0.0062464 1.90631e-06 8.08707e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| is employee ||| 1 0.277846 1.90631e-06 6.91698e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| is essential for ||| 0.00191939 0.0015353 1.90631e-06 2.48729e-09 2.718 ||| 0-2 ||| 521 524574 +los ||| is essential that the ||| 0.0322581 0.122289 1.90631e-06 2.03534e-08 2.718 ||| 0-3 ||| 31 524574 +los ||| is following their progress ||| 1 0.0236713 1.90631e-06 1.20679e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| is following their ||| 1 0.0236713 1.90631e-06 9.16314e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| is for the ||| 0.00912409 0.122289 9.53154e-06 0.000103326 2.718 ||| 0-2 ||| 548 524574 +los ||| is for ||| 0.000412882 0.0015353 1.90631e-06 2.76366e-05 2.718 ||| 0-1 ||| 2422 524574 +los ||| is forging plans ||| 0.5 0.12684 1.90631e-06 5.97283e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| is found to the ||| 0.5 0.122289 1.90631e-06 2.6138e-07 2.718 ||| 0-3 ||| 2 524574 +los ||| is getting its funds ||| 1 0.220459 1.90631e-06 1.94165e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| is given the ||| 0.027027 0.122289 1.90631e-06 9.22659e-06 2.718 ||| 0-2 ||| 37 524574 +los ||| is given to group representatives . ||| 1 0.135512 1.90631e-06 7.18443e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| is given to group representatives ||| 1 0.135512 1.90631e-06 2.37188e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| is greatly disputed by the ||| 1 0.122289 1.90631e-06 5.94019e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| is happening in the ||| 0.00632911 0.122289 1.90631e-06 1.56254e-08 2.718 ||| 0-3 ||| 158 524574 +los ||| is high time the ||| 0.0833333 0.122289 1.90631e-06 3.29519e-09 2.718 ||| 0-3 ||| 12 524574 +los ||| is honouring its ||| 0.25 0.0211371 1.90631e-06 4.68415e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| is in huge demand among the ||| 1 0.122289 1.90631e-06 7.21399e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| is in many ways ||| 0.0526316 0.0029977 1.90631e-06 9.11833e-12 2.718 ||| 0-2 ||| 19 524574 +los ||| is in many ||| 0.0227273 0.0029977 1.90631e-06 9.45885e-08 2.718 ||| 0-2 ||| 44 524574 +los ||| is in the field of ||| 0.125 0.122289 1.90631e-06 2.28557e-09 2.718 ||| 0-2 ||| 8 524574 +los ||| is in the field ||| 0.1 0.122289 1.90631e-06 4.20419e-08 2.718 ||| 0-2 ||| 10 524574 +los ||| is in the interests ||| 0.00507614 0.122289 1.90631e-06 3.94521e-08 2.718 ||| 0-2 ||| 197 524574 +los ||| is in the vital interests of the ||| 1 0.122289 1.90631e-06 4.12132e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| is in the vital interests of ||| 0.5 0.122289 1.90631e-06 6.71314e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| is in the vital interests ||| 0.5 0.122289 1.90631e-06 1.23485e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| is in the vital ||| 1 0.122289 1.90631e-06 9.00693e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| is in the ||| 0.00696379 0.122289 1.90631e-05 0.000287761 2.718 ||| 0-2 ||| 1436 524574 +los ||| is indeed the case ||| 0.0147059 0.122289 1.90631e-06 1.09014e-08 2.718 ||| 0-2 ||| 68 524574 +los ||| is indeed the ||| 0.00621118 0.122289 1.90631e-06 1.01892e-05 2.718 ||| 0-2 ||| 161 524574 +los ||| is it the moment ||| 0.333333 0.122289 1.90631e-06 4.32012e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| is it the ||| 0.0231214 0.122289 7.62523e-06 0.000239077 2.718 ||| 0-2 ||| 173 524574 +los ||| is justified by the ||| 0.037037 0.122289 1.90631e-06 1.34812e-09 2.718 ||| 0-3 ||| 27 524574 +los ||| is known as the ||| 0.00675676 0.122289 1.90631e-06 1.51044e-08 2.718 ||| 0-3 ||| 148 524574 +los ||| is land ||| 0.5 0.0056051 1.90631e-06 6.707e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| is less use of ||| 1 0.0019787 1.90631e-06 8.57831e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| is lower ||| 0.0153846 0.0021903 1.90631e-06 2.75802e-07 2.718 ||| 0-1 ||| 65 524574 +los ||| is made up of the ||| 0.25 0.122289 1.90631e-06 5.22155e-09 2.718 ||| 0-4 ||| 4 524574 +los ||| is mandated by the Council ||| 1 0.122289 1.90631e-06 1.70851e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| is mandated by the ||| 1 0.122289 1.90631e-06 4.94075e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| is more , the ||| 0.00787402 0.122289 1.90631e-06 3.66136e-06 2.718 ||| 0-3 ||| 127 524574 +los ||| is more , these ||| 0.0714286 0.0240362 1.90631e-06 2.08053e-08 2.718 ||| 0-3 ||| 14 524574 +los ||| is more generous with advice ||| 1 0.0108752 1.90631e-06 4.38822e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| is more to all this ||| 1 0.0177928 1.90631e-06 1.10473e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| is more to all ||| 1 0.0177928 1.90631e-06 1.70973e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| is my pleasant duty to ||| 0.333333 0.0086409 1.90631e-06 6.14957e-16 2.718 ||| 0-1 ||| 3 524574 +los ||| is my pleasant duty ||| 0.333333 0.0086409 1.90631e-06 6.92066e-15 2.718 ||| 0-1 ||| 3 524574 +los ||| is my pleasant ||| 0.333333 0.0086409 1.90631e-06 9.28947e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| is my ||| 0.000769823 0.0086409 1.90631e-06 2.16034e-05 2.718 ||| 0-1 ||| 1299 524574 +los ||| is nevertheless a risk of ||| 0.333333 0.0019787 1.90631e-06 6.59651e-14 2.718 ||| 0-4 ||| 3 524574 +los ||| is no less incumbent on the ||| 1 0.122289 1.90631e-06 1.88295e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| is not all ||| 0.0104167 0.0177928 1.90631e-06 2.87653e-07 2.718 ||| 0-2 ||| 96 524574 +los ||| is not backed by the ||| 1 0.122289 1.90631e-06 2.77121e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| is not the ||| 0.000755572 0.122289 3.81262e-06 4.5899e-05 2.718 ||| 0-2 ||| 2647 524574 +los ||| is not those ||| 0.5 0.284705 1.90631e-06 1.78667e-06 2.718 ||| 0-2 ||| 2 524574 +los ||| is nothing in the ||| 1 0.122289 1.90631e-06 5.35524e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| is now , the ||| 1 0.122289 1.90631e-06 3.30255e-06 2.718 ||| 0-3 ||| 1 524574 +los ||| is now the ||| 0.00485437 0.122289 1.90631e-06 2.76932e-05 2.718 ||| 0-2 ||| 206 524574 +los ||| is of the ||| 0.00550964 0.122289 3.81262e-06 0.000730868 2.718 ||| 0-2 ||| 363 524574 +los ||| is of ||| 0.000629129 0.0019787 3.81262e-06 0.000103664 2.718 ||| 0-1 ||| 3179 524574 +los ||| is on the ||| 0.00236967 0.122289 3.81262e-06 8.99536e-05 2.718 ||| 0-2 ||| 844 524574 +los ||| is one of the ||| 0.000254388 0.122289 1.90631e-06 3.04626e-06 2.718 ||| 0-3 ||| 3931 524574 +los ||| is only talk of removing the vertebral ||| 1 0.122289 1.90631e-06 1.8814e-22 2.718 ||| 0-5 ||| 1 524574 +los ||| is only talk of removing the ||| 1 0.122289 1.90631e-06 4.7035e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| is open to all ||| 0.037037 0.0177928 1.90631e-06 1.20685e-09 2.718 ||| 0-3 ||| 27 524574 +los ||| is our duty ||| 0.00719424 0.0248369 1.90631e-06 8.3382e-09 2.718 ||| 0-1 ||| 139 524574 +los ||| is our suggestion to you . ||| 1 0.0248369 1.90631e-06 1.61454e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| is our suggestion to you ||| 1 0.0248369 1.90631e-06 5.33027e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| is our suggestion to ||| 1 0.0248369 1.90631e-06 1.6509e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| is our suggestion ||| 1 0.0248369 1.90631e-06 1.85791e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| is our ||| 0.00175541 0.0248369 5.71893e-06 0.000111922 2.718 ||| 0-1 ||| 1709 524574 +los ||| is out of the ||| 0.02 0.122289 1.90631e-06 2.79952e-06 2.718 ||| 0-3 ||| 50 524574 +los ||| is over and done with ||| 0.5 0.0037547 1.90631e-06 1.55795e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| is over and done ||| 1 0.0037547 1.90631e-06 2.43639e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| is over and ||| 0.0263158 0.0037547 1.90631e-06 5.34295e-08 2.718 ||| 0-1 ||| 38 524574 +los ||| is over ||| 0.00223214 0.0037547 1.90631e-06 4.26552e-06 2.718 ||| 0-1 ||| 448 524574 +los ||| is owed to those ||| 0.5 0.284705 1.90631e-06 2.69708e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| is particularly the ||| 0.025641 0.122289 1.90631e-06 2.39975e-06 2.718 ||| 0-2 ||| 39 524574 +los ||| is playing the ||| 0.166667 0.122289 1.90631e-06 8.85957e-07 2.718 ||| 0-2 ||| 6 524574 +los ||| is possible ||| 0.000876424 0.0019339 1.90631e-06 2.22522e-06 2.718 ||| 0-1 ||| 1141 524574 +los ||| is precisely the ||| 0.00352113 0.122289 1.90631e-06 1.32557e-06 2.718 ||| 0-2 ||| 284 524574 +los ||| is precisely what will lead to the ||| 1 0.0061209 1.90631e-06 2.69147e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| is precisely what will lead to ||| 1 0.0061209 1.90631e-06 4.38408e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| is precisely what will lead ||| 1 0.0061209 1.90631e-06 4.93379e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| is precisely what will ||| 1 0.0061209 1.90631e-06 2.56301e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| is precisely what ||| 0.00413223 0.0061209 1.90631e-06 2.96261e-09 2.718 ||| 0-2 ||| 242 524574 +los ||| is prescribed in ||| 1 0.015873 1.90631e-06 3.89088e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| is prescribed ||| 0.1 0.015873 1.90631e-06 1.81778e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| is projected to rise ||| 1 0.0131579 1.90631e-06 6.64592e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| is projected to ||| 0.0588235 0.0131579 1.90631e-06 5.29134e-09 2.718 ||| 0-1 ||| 17 524574 +los ||| is projected ||| 0.0666667 0.0131579 1.90631e-06 5.95481e-08 2.718 ||| 0-1 ||| 15 524574 +los ||| is right that these ||| 0.5 0.0240362 1.90631e-06 8.2874e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| is set to keep them ||| 1 0.038218 1.90631e-06 5.10325e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| is simple . the ||| 0.5 0.122289 1.90631e-06 1.75918e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| is something that the ||| 0.02 0.122289 1.90631e-06 1.25173e-07 2.718 ||| 0-3 ||| 50 524574 +los ||| is something the ||| 0.0243902 0.122289 1.90631e-06 7.44123e-06 2.718 ||| 0-2 ||| 41 524574 +los ||| is something which the ||| 0.0714286 0.122289 1.90631e-06 6.32103e-08 2.718 ||| 0-3 ||| 14 524574 +los ||| is taken of the ||| 0.111111 0.122289 1.90631e-06 6.66186e-07 2.718 ||| 0-3 ||| 9 524574 +los ||| is that our ||| 0.00847458 0.0248369 1.90631e-06 1.88271e-06 2.718 ||| 0-2 ||| 118 524574 +los ||| is that the ||| 0.00287732 0.122289 2.09694e-05 0.000226149 2.718 ||| 0-2 ||| 3823 524574 +los ||| is that there are more ||| 0.5 0.0026918 1.90631e-06 6.71337e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| is that there are ||| 0.00884956 0.0026918 1.90631e-06 2.93969e-09 2.718 ||| 0-2 ||| 113 524574 +los ||| is that there ||| 0.00546448 0.0026918 1.90631e-06 1.93749e-07 2.718 ||| 0-2 ||| 183 524574 +los ||| is that those ||| 0.0149254 0.284705 1.90631e-06 8.8031e-06 2.718 ||| 0-2 ||| 67 524574 +los ||| is the Member States ||| 0.0163934 0.122289 1.90631e-06 3.30589e-09 2.718 ||| 0-1 ||| 61 524574 +los ||| is the Member ||| 0.111111 0.122289 1.90631e-06 6.92767e-06 2.718 ||| 0-1 ||| 9 524574 +los ||| is the answers to the ||| 1 0.122289 1.90631e-06 1.58412e-09 2.718 ||| 0-4 ||| 1 524574 +los ||| is the case now ||| 0.0714286 0.122289 1.90631e-06 2.9629e-08 2.718 ||| 0-1 ||| 14 524574 +los ||| is the case that some ||| 1 0.122289 1.90631e-06 2.63564e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| is the case that ||| 0.0222222 0.122289 1.90631e-06 2.41957e-07 2.718 ||| 0-1 ||| 45 524574 +los ||| is the case today ||| 0.0344828 0.122289 1.90631e-06 6.49136e-09 2.718 ||| 0-1 ||| 29 524574 +los ||| is the case ||| 0.00802568 0.122289 1.90631e-05 1.43837e-05 2.718 ||| 0-1 ||| 1246 524574 +los ||| is the day when the ||| 1 0.0614546 1.90631e-06 7.80267e-12 2.718 ||| 0-3 0-4 ||| 1 524574 +los ||| is the express ||| 0.5 0.122289 1.90631e-06 1.36456e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| is the expression to use rather than ||| 0.5 0.122289 1.90631e-06 2.21131e-18 2.718 ||| 0-1 ||| 2 524574 +los ||| is the expression to use rather ||| 0.5 0.122289 1.90631e-06 7.23835e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| is the expression to use ||| 0.5 0.122289 1.90631e-06 2.36393e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| is the expression to ||| 0.5 0.122289 1.90631e-06 4.86205e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| is the expression ||| 0.0357143 0.122289 1.90631e-06 5.47169e-07 2.718 ||| 0-1 ||| 28 524574 +los ||| is the home of the ||| 0.25 0.122289 1.90631e-06 4.55423e-09 2.718 ||| 0-4 ||| 4 524574 +los ||| is the implementation ||| 0.0204082 0.122289 1.90631e-06 1.0446e-06 2.718 ||| 0-1 ||| 49 524574 +los ||| is the key ||| 0.00334448 0.122289 1.90631e-06 9.77376e-07 2.718 ||| 0-1 ||| 299 524574 +los ||| is the level at ||| 0.333333 0.122289 1.90631e-06 4.8155e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| is the level ||| 0.0333333 0.122289 1.90631e-06 1.15e-05 2.718 ||| 0-1 ||| 30 524574 +los ||| is the other ||| 0.0212766 0.122289 1.90631e-06 1.74167e-05 2.718 ||| 0-1 ||| 47 524574 +los ||| is the path you should ||| 1 0.122289 1.90631e-06 7.32794e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| is the path you ||| 1 0.122289 1.90631e-06 1.65379e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| is the path ||| 0.0204082 0.122289 1.90631e-06 5.12215e-07 2.718 ||| 0-1 ||| 49 524574 +los ||| is the performance ||| 1 0.122289 1.90631e-06 3.05178e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| is the point ||| 0.00438596 0.122289 1.90631e-06 1.17608e-05 2.718 ||| 0-1 ||| 228 524574 +los ||| is the result of ||| 0.00203252 0.122289 1.90631e-06 3.84802e-07 2.718 ||| 0-1 ||| 492 524574 +los ||| is the result ||| 0.00180505 0.122289 1.90631e-06 7.07825e-06 2.718 ||| 0-1 ||| 554 524574 +los ||| is the risk of ||| 0.05 0.122289 1.90631e-06 8.55115e-08 2.718 ||| 0-1 ||| 20 524574 +los ||| is the risk ||| 0.0178571 0.122289 1.90631e-06 1.57294e-06 2.718 ||| 0-1 ||| 56 524574 +los ||| is the soul ||| 0.25 0.122289 1.90631e-06 5.7809e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| is the threat of ||| 0.0769231 0.122289 1.90631e-06 2.865e-08 2.718 ||| 0-1 ||| 13 524574 +los ||| is the threat ||| 0.037037 0.122289 1.90631e-06 5.27003e-07 2.718 ||| 0-1 ||| 27 524574 +los ||| is the time ||| 0.003861 0.122289 1.90631e-06 2.2071e-05 2.718 ||| 0-1 ||| 259 524574 +los ||| is the way we ||| 0.05 0.122289 1.90631e-06 3.28987e-07 2.718 ||| 0-1 ||| 20 524574 +los ||| is the way ||| 0.0034188 0.122289 3.81262e-06 2.89798e-05 2.718 ||| 0-1 ||| 585 524574 +los ||| is the ||| 0.00646999 0.122289 0.000493734 0.013444 2.718 ||| 0-1 ||| 40031 524574 +los ||| is then up to the ||| 0.25 0.122289 1.90631e-06 6.5611e-09 2.718 ||| 0-4 ||| 4 524574 +los ||| is there for the ||| 0.0666667 0.122289 1.90631e-06 3.16726e-07 2.718 ||| 0-3 ||| 15 524574 +los ||| is there to pool the ||| 1 0.122289 1.90631e-06 1.72106e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| is these ||| 0.0151515 0.0240362 1.90631e-06 7.63939e-05 2.718 ||| 0-1 ||| 66 524574 +los ||| is they ||| 0.0181818 0.0072404 1.90631e-06 2.56558e-05 2.718 ||| 0-1 ||| 55 524574 +los ||| is those very people ||| 1 0.284705 1.90631e-06 1.60275e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| is those very ||| 0.5 0.284705 1.90631e-06 1.8209e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| is those ||| 0.125 0.284705 9.53154e-06 0.000523321 2.718 ||| 0-1 ||| 40 524574 +los ||| is time for the ||| 0.0333333 0.122289 1.90631e-06 1.69631e-07 2.718 ||| 0-3 ||| 30 524574 +los ||| is to be given to the ||| 0.2 0.122289 1.90631e-06 1.32027e-09 2.718 ||| 0-5 ||| 5 524574 +los ||| is to get the actual ||| 0.333333 0.122289 1.90631e-06 7.55742e-11 2.718 ||| 0-3 ||| 3 524574 +los ||| is to get the ||| 0.030303 0.122289 1.90631e-06 5.22282e-07 2.718 ||| 0-3 ||| 33 524574 +los ||| is to replace the ||| 0.0526316 0.122289 1.90631e-06 9.91523e-09 2.718 ||| 0-3 ||| 19 524574 +los ||| is to say the ||| 0.016129 0.122289 1.90631e-06 1.1418e-06 2.718 ||| 0-3 ||| 62 524574 +los ||| is to the ||| 0.0126582 0.122289 3.81262e-06 0.00119461 2.718 ||| 0-2 ||| 158 524574 +los ||| is today chairman of the Socialist Party ||| 0.5 0.122289 1.90631e-06 4.00456e-21 2.718 ||| 0-4 ||| 2 524574 +los ||| is today chairman of the Socialist ||| 0.5 0.122289 1.90631e-06 2.65555e-17 2.718 ||| 0-4 ||| 2 524574 +los ||| is today chairman of the ||| 0.5 0.122289 1.90631e-06 3.19945e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| is true what the ||| 1 0.122289 1.90631e-06 3.0483e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| is ultimately the ||| 0.0357143 0.122289 1.90631e-06 8.26804e-07 2.718 ||| 0-2 ||| 28 524574 +los ||| is undoubtedly the key ||| 1 0.122289 1.90631e-06 3.62607e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| is undoubtedly the ||| 0.0144928 0.122289 1.90631e-06 4.98771e-07 2.718 ||| 0-2 ||| 69 524574 +los ||| is unquestionably the ||| 0.125 0.122289 1.90631e-06 2.41991e-08 2.718 ||| 0-2 ||| 8 524574 +los ||| is up to the ||| 0.0463576 0.122289 1.33442e-05 4.0742e-06 2.718 ||| 0-3 ||| 151 524574 +los ||| is up to ||| 0.00297619 0.0031618 1.90631e-06 5.90402e-07 2.718 ||| 0-1 ||| 336 524574 +los ||| is up ||| 0.00217865 0.0031618 1.90631e-06 6.64431e-06 2.718 ||| 0-1 ||| 459 524574 +los ||| is vetoed by the ||| 1 0.122289 1.90631e-06 7.76404e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| is what our ||| 0.0277778 0.0248369 1.90631e-06 1.57038e-07 2.718 ||| 0-2 ||| 36 524574 +los ||| is what the ||| 0.00557103 0.122289 3.81262e-06 1.88632e-05 2.718 ||| 0-2 ||| 359 524574 +los ||| is what ||| 0.000211193 0.0061209 1.90631e-06 3.00467e-05 2.718 ||| 0-1 ||| 4735 524574 +los ||| is where the ||| 0.00653595 0.0836145 1.90631e-06 2.96708e-05 2.718 ||| 0-1 0-2 ||| 153 524574 +los ||| is where ||| 0.0010395 0.0449398 1.90631e-06 6.91698e-05 2.718 ||| 0-1 ||| 962 524574 +los ||| is why the Consumers ' Association , ||| 1 0.0444479 1.90631e-06 1.03496e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| is why the Consumers ' Association ||| 1 0.0444479 1.90631e-06 8.67853e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| is why the Consumers ' ||| 1 0.0444479 1.90631e-06 1.00913e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| is why the ||| 0.00093633 0.122289 1.90631e-06 3.31394e-06 2.718 ||| 0-2 ||| 1068 524574 +los ||| is why we in the ||| 0.0909091 0.122289 1.90631e-06 8.05254e-10 2.718 ||| 0-4 ||| 11 524574 +los ||| is winning the ||| 0.25 0.122289 1.90631e-06 9.14189e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| issue , the fact ||| 0.333333 0.122289 1.90631e-06 1.13405e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| issue , the ||| 0.0166667 0.122289 3.81262e-06 3.87141e-05 2.718 ||| 0-2 ||| 120 524574 +los ||| issue - we must be patient ||| 0.333333 0.135371 1.90631e-06 1.91538e-16 2.718 ||| 0-5 ||| 3 524574 +los ||| issue of the ||| 0.00117578 0.062134 3.81262e-06 1.07376e-06 2.718 ||| 0-1 0-2 ||| 1701 524574 +los ||| issue the ||| 0.0131579 0.122289 1.90631e-06 0.000324634 2.718 ||| 0-1 ||| 76 524574 +los ||| issue two variants ||| 1 0.03125 1.90631e-06 1.78908e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| issued by one ||| 0.5 0.0062464 1.90631e-06 4.17907e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| issued by ||| 0.00284091 0.0062464 1.90631e-06 1.00266e-07 2.718 ||| 0-1 ||| 352 524574 +los ||| issues , ||| 0.000771605 0.0401532 1.90631e-06 0.000133685 2.718 ||| 0-0 ||| 1296 524574 +los ||| issues - ||| 0.0140845 0.0401532 1.90631e-06 4.22852e-06 2.718 ||| 0-0 ||| 71 524574 +los ||| issues dealt ||| 0.0526316 0.0401532 1.90631e-06 1.17369e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| issues of ||| 0.000672947 0.0210659 1.90631e-06 3.70782e-06 2.718 ||| 0-0 0-1 ||| 1486 524574 +los ||| issues the ||| 0.0588235 0.122289 1.90631e-06 0.000107883 2.718 ||| 0-1 ||| 17 524574 +los ||| issues through their own ||| 0.5 0.0236713 1.90631e-06 4.48978e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| issues through their ||| 0.5 0.0236713 1.90631e-06 2.64837e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| issues to those ||| 0.5 0.284705 1.90631e-06 3.73155e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| issues too ||| 0.111111 0.0401532 1.90631e-06 1.52568e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| issues ||| 0.00156631 0.0401532 8.19713e-05 0.001121 2.718 ||| 0-0 ||| 27453 524574 +los ||| it accelerated the proceedings ||| 0.333333 0.122289 1.90631e-06 4.98428e-13 2.718 ||| 0-2 ||| 3 524574 +los ||| it accelerated the ||| 0.333333 0.122289 1.90631e-06 1.37308e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| it across via children , ||| 0.5 0.293415 1.90631e-06 3.37179e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| it across via children ||| 0.5 0.293415 1.90631e-06 2.82739e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| it affected ||| 0.0625 0.0010346 1.90631e-06 1.20926e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| it also affects the ecosystem ||| 0.5 0.122289 1.90631e-06 4.47507e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| it also affects the ||| 0.111111 0.122289 1.90631e-06 6.39296e-10 2.718 ||| 0-3 ||| 9 524574 +los ||| it applies to the ||| 0.210526 0.122289 7.62523e-06 5.68021e-08 2.718 ||| 0-3 ||| 19 524574 +los ||| it appropriate ||| 0.0188679 0.0002879 1.90631e-06 1.89786e-08 2.718 ||| 0-0 ||| 53 524574 +los ||| it be in the ||| 0.0714286 0.122289 1.90631e-06 2.95907e-06 2.718 ||| 0-3 ||| 14 524574 +los ||| it be the ||| 0.0212766 0.122289 1.90631e-06 0.000138245 2.718 ||| 0-2 ||| 47 524574 +los ||| it benefits the ||| 0.04 0.0738197 1.90631e-06 1.12745e-06 2.718 ||| 0-1 0-2 ||| 25 524574 +los ||| it by the ||| 0.0481928 0.122289 7.62523e-06 4.00489e-05 2.718 ||| 0-2 ||| 83 524574 +los ||| it came to ||| 0.00520833 0.0002879 1.90631e-06 1.57865e-09 2.718 ||| 0-0 ||| 192 524574 +los ||| it came ||| 0.00327869 0.0002879 1.90631e-06 1.7766e-08 2.718 ||| 0-0 ||| 305 524574 +los ||| it can get the ||| 0.5 0.122289 1.90631e-06 9.91946e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| it catches those ||| 1 0.284705 1.90631e-06 1.3956e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| it certainly ||| 0.00348432 0.0002879 1.90631e-06 3.53205e-08 2.718 ||| 0-0 ||| 287 524574 +los ||| it comes both ||| 0.0833333 0.0002879 1.90631e-06 9.33799e-11 2.718 ||| 0-0 ||| 12 524574 +los ||| it comes to approving funds ||| 0.166667 0.220459 1.90631e-06 1.18208e-14 2.718 ||| 0-4 ||| 6 524574 +los ||| it comes to the ||| 0.00807537 0.122289 1.14379e-05 2.70996e-07 2.718 ||| 0-3 ||| 743 524574 +los ||| it comes to ||| 0.000851547 0.0002879 5.71893e-06 5.0091e-09 2.718 ||| 0-0 ||| 3523 524574 +los ||| it comes ||| 0.00153022 0.0002879 1.14379e-05 5.63718e-08 2.718 ||| 0-0 ||| 3921 524574 +los ||| it conflicts ||| 0.037037 0.214045 1.90631e-06 1.42817e-05 2.718 ||| 0-1 ||| 27 524574 +los ||| it costs ||| 0.00719424 0.214442 1.90631e-06 4.92417e-05 2.718 ||| 0-1 ||| 139 524574 +los ||| it could have been the ||| 0.5 0.122289 1.90631e-06 2.16631e-10 2.718 ||| 0-4 ||| 2 524574 +los ||| it covers the ||| 0.0555556 0.122289 3.81262e-06 1.01455e-07 2.718 ||| 0-2 ||| 36 524574 +los ||| it does the aims ||| 1 0.122289 1.90631e-06 2.13482e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| it does the ||| 0.115385 0.122289 5.71893e-06 5.35043e-06 2.718 ||| 0-2 ||| 26 524574 +los ||| it elevates ||| 0.5 0.2 1.90631e-06 3.37881e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| it emerges that the ||| 0.2 0.122289 1.90631e-06 1.29602e-09 2.718 ||| 0-3 ||| 5 524574 +los ||| it from being ||| 0.0625 0.001099 1.90631e-06 9.79254e-09 2.718 ||| 0-1 ||| 16 524574 +los ||| it from ||| 0.0034965 0.001099 1.90631e-06 3.44105e-06 2.718 ||| 0-1 ||| 286 524574 +los ||| it goes beyond the ||| 0.0909091 0.122289 1.90631e-06 7.91324e-11 2.718 ||| 0-3 ||| 11 524574 +los ||| it goes without saying ||| 0.0013986 0.0002879 1.90631e-06 7.65623e-16 2.718 ||| 0-0 ||| 715 524574 +los ||| it goes without ||| 0.00220264 0.0002879 1.90631e-06 4.3158e-12 2.718 ||| 0-0 ||| 454 524574 +los ||| it goes ||| 0.00136612 0.0002879 1.90631e-06 1.95285e-08 2.718 ||| 0-0 ||| 732 524574 +los ||| it happens that the ||| 0.2 0.122289 1.90631e-06 7.66063e-09 2.718 ||| 0-3 ||| 5 524574 +los ||| it has all the right ||| 0.5 0.122289 1.90631e-06 1.1966e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| it has all the ||| 0.142857 0.122289 1.90631e-06 1.85549e-07 2.718 ||| 0-3 ||| 7 524574 +los ||| it has also raised the question ||| 1 0.122289 1.90631e-06 1.88932e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| it has also raised the ||| 1 0.122289 1.90631e-06 2.28372e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| it has become more difficult ||| 0.25 0.0002879 1.90631e-06 5.88148e-17 2.718 ||| 0-0 ||| 4 524574 +los ||| it has become more ||| 0.0833333 0.0002879 1.90631e-06 4.73549e-13 2.718 ||| 0-0 ||| 12 524574 +los ||| it has become ||| 0.0020284 0.0002879 1.90631e-06 2.0736e-10 2.718 ||| 0-0 ||| 493 524574 +los ||| it has been doing over the ||| 1 0.122289 1.90631e-06 2.31762e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| it has been the whole ||| 1 0.122289 1.90631e-06 7.41734e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| it has been the ||| 0.047619 0.122289 5.71893e-06 1.31118e-07 2.718 ||| 0-3 ||| 63 524574 +los ||| it has had the ||| 0.1 0.122289 1.90631e-06 3.94115e-08 2.718 ||| 0-3 ||| 10 524574 +los ||| it has kept the internal ||| 0.5 0.122289 1.90631e-06 1.29905e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| it has kept the ||| 0.333333 0.122289 1.90631e-06 2.79968e-09 2.718 ||| 0-3 ||| 3 524574 +los ||| it has the ||| 0.0105263 0.122289 5.71893e-06 3.92662e-05 2.718 ||| 0-2 ||| 285 524574 +los ||| it has to respect ||| 0.125 0.0045864 1.90631e-06 8.62203e-10 2.718 ||| 0-3 ||| 8 524574 +los ||| it has ||| 0.000141054 0.0002879 3.81262e-06 7.25798e-07 2.718 ||| 0-0 ||| 14179 524574 +los ||| it holds ||| 0.0144928 0.0002879 1.90631e-06 4.0044e-09 2.718 ||| 0-0 ||| 69 524574 +los ||| it honours the ||| 0.25 0.122289 1.90631e-06 5.33975e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| it in the ||| 0.00488998 0.122289 3.81262e-06 0.000163278 2.718 ||| 0-2 ||| 409 524574 +los ||| it is a fact that these ||| 0.142857 0.0240362 1.90631e-06 2.96727e-12 2.718 ||| 0-5 ||| 7 524574 +los ||| it is a matter for ||| 0.015625 0.0015353 1.90631e-06 2.26016e-11 2.718 ||| 0-4 ||| 64 524574 +los ||| it is about ||| 0.00107411 0.0002879 1.90631e-06 6.24993e-09 2.718 ||| 0-0 ||| 931 524574 +los ||| it is actually the ||| 0.0833333 0.122289 3.81262e-06 9.86908e-08 2.718 ||| 0-3 ||| 24 524574 +los ||| it is also from the point ||| 1 0.122289 1.90631e-06 1.7004e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| it is also from the ||| 0.333333 0.122289 1.90631e-06 1.94376e-09 2.718 ||| 0-4 ||| 3 524574 +los ||| it is argued that the ||| 0.25 0.122289 1.90631e-06 4.06187e-11 2.718 ||| 0-4 ||| 4 524574 +los ||| it is citizens that we as ||| 1 0.0002879 1.90631e-06 9.38639e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| it is citizens that we ||| 1 0.0002879 1.90631e-06 9.19837e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| it is citizens that ||| 1 0.0002879 1.90631e-06 8.10265e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| it is citizens ||| 0.333333 0.0002879 1.90631e-06 4.81681e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| it is clear that standards vary too ||| 1 0.0495175 1.90631e-06 1.27413e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| it is clear that standards vary ||| 0.5 0.0495175 1.90631e-06 9.36175e-18 2.718 ||| 0-4 ||| 2 524574 +los ||| it is clear that standards ||| 0.333333 0.0495175 1.90631e-06 2.60049e-12 2.718 ||| 0-4 ||| 3 524574 +los ||| it is clear that the ||| 0.00350877 0.122289 3.81262e-06 1.33881e-09 2.718 ||| 0-4 ||| 570 524574 +los ||| it is essential for ||| 0.00298507 0.0015353 1.90631e-06 4.4232e-11 2.718 ||| 0-3 ||| 335 524574 +los ||| it is essential that the ||| 0.00393701 0.122289 1.90631e-06 3.61949e-10 2.718 ||| 0-4 ||| 254 524574 +los ||| it is for the ||| 0.0123967 0.122289 5.71893e-06 1.83747e-06 2.718 ||| 0-3 ||| 242 524574 +los ||| it is in the interests ||| 0.00763359 0.122289 1.90631e-06 7.01584e-10 2.718 ||| 0-3 ||| 131 524574 +los ||| it is in the vital interests of ||| 0.5 0.122289 1.90631e-06 1.19381e-15 2.718 ||| 0-3 ||| 2 524574 +los ||| it is in the vital interests ||| 0.5 0.122289 1.90631e-06 2.19596e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| it is in the vital ||| 1 0.122289 1.90631e-06 1.60172e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| it is in the ||| 0.00678733 0.122289 5.71893e-06 5.11732e-06 2.718 ||| 0-3 ||| 442 524574 +los ||| it is indeed the case ||| 0.0204082 0.122289 1.90631e-06 1.93862e-10 2.718 ||| 0-3 ||| 49 524574 +los ||| it is indeed the ||| 0.0222222 0.122289 1.90631e-06 1.81196e-07 2.718 ||| 0-3 ||| 45 524574 +los ||| it is my pleasant duty to ||| 0.2 0.0086409 1.90631e-06 1.09359e-17 2.718 ||| 0-2 ||| 5 524574 +los ||| it is my pleasant duty ||| 0.2 0.0086409 1.90631e-06 1.23071e-16 2.718 ||| 0-2 ||| 5 524574 +los ||| it is my pleasant ||| 0.2 0.0086409 1.90631e-06 1.65197e-12 2.718 ||| 0-2 ||| 5 524574 +los ||| it is my ||| 0.0012285 0.0086409 1.90631e-06 3.84178e-07 2.718 ||| 0-2 ||| 814 524574 +los ||| it is now , the ||| 1 0.122289 1.90631e-06 5.87298e-08 2.718 ||| 0-4 ||| 1 524574 +los ||| it is of the ||| 0.0060241 0.122289 1.90631e-06 1.29972e-05 2.718 ||| 0-3 ||| 166 524574 +los ||| it is open ||| 0.0333333 0.0002879 1.90631e-06 7.12358e-10 2.718 ||| 0-0 ||| 30 524574 +los ||| it is our ||| 0.000938967 0.0248369 1.90631e-06 1.99033e-06 2.718 ||| 0-2 ||| 1065 524574 +los ||| it is particularly the ||| 0.125 0.122289 1.90631e-06 4.26752e-08 2.718 ||| 0-3 ||| 8 524574 +los ||| it is playing the ||| 0.5 0.122289 1.90631e-06 1.57552e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| it is right that these ||| 0.333333 0.0240362 1.90631e-06 1.47377e-11 2.718 ||| 0-4 ||| 3 524574 +los ||| it is simply the old hiding ||| 0.333333 0.0612885 1.90631e-06 2.45933e-19 2.718 ||| 0-0 0-3 ||| 3 524574 +los ||| it is simply the old ||| 0.333333 0.0612885 1.90631e-06 3.23596e-14 2.718 ||| 0-0 0-3 ||| 3 524574 +los ||| it is simply the ||| 0.0909091 0.0612885 1.90631e-06 4.20254e-10 2.718 ||| 0-0 0-3 ||| 11 524574 +los ||| it is that the ||| 0.00877193 0.122289 1.90631e-06 4.02165e-06 2.718 ||| 0-3 ||| 114 524574 +los ||| it is the Member States ||| 0.00763359 0.122289 1.90631e-06 5.87892e-11 2.718 ||| 0-2 ||| 131 524574 +los ||| it is the Member ||| 0.111111 0.122289 1.90631e-06 1.23196e-07 2.718 ||| 0-2 ||| 9 524574 +los ||| it is the answers to the ||| 1 0.122289 1.90631e-06 2.81708e-11 2.718 ||| 0-5 ||| 1 524574 +los ||| it is the case that some ||| 0.5 0.122289 1.90631e-06 4.687e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| it is the case that ||| 0.0105263 0.122289 1.90631e-06 4.30277e-09 2.718 ||| 0-2 ||| 95 524574 +los ||| it is the case ||| 0.0123457 0.122289 3.81262e-06 2.55788e-07 2.718 ||| 0-2 ||| 162 524574 +los ||| it is the other ||| 0.166667 0.122289 1.90631e-06 3.09724e-07 2.718 ||| 0-2 ||| 6 524574 +los ||| it is the ||| 0.0168694 0.122289 0.000163943 0.000239077 2.718 ||| 0-2 ||| 5098 524574 +los ||| it is then up to the ||| 0.166667 0.122289 1.90631e-06 1.16677e-10 2.718 ||| 0-5 ||| 6 524574 +los ||| it is those very people ||| 0.25 0.284705 1.90631e-06 2.85021e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| it is those very ||| 0.142857 0.284705 1.90631e-06 3.23814e-08 2.718 ||| 0-2 ||| 7 524574 +los ||| it is those ||| 0.0441176 0.284705 5.71893e-06 9.30632e-06 2.718 ||| 0-2 ||| 68 524574 +los ||| it is time for the ||| 0.0116279 0.122289 1.90631e-06 3.01658e-09 2.718 ||| 0-4 ||| 86 524574 +los ||| it is time ||| 0.000531632 0.0002879 1.90631e-06 7.25483e-09 2.718 ||| 0-0 ||| 1881 524574 +los ||| it is to be given to the ||| 0.5 0.122289 1.90631e-06 2.34787e-11 2.718 ||| 0-6 ||| 2 524574 +los ||| it is true what the ||| 1 0.122289 1.90631e-06 5.42085e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| it is ultimately ||| 0.0222222 0.0002879 1.90631e-06 2.71774e-10 2.718 ||| 0-0 ||| 45 524574 +los ||| it is up to the ||| 0.010101 0.122289 7.62523e-06 7.24524e-08 2.718 ||| 0-4 ||| 396 524574 +los ||| it is up to ||| 0.00116959 0.0002879 1.90631e-06 1.33921e-09 2.718 ||| 0-0 ||| 855 524574 +los ||| it is up ||| 0.00101215 0.0002879 1.90631e-06 1.50713e-08 2.718 ||| 0-0 ||| 988 524574 +los ||| it is winning the ||| 1 0.122289 1.90631e-06 1.62572e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| it is ||| 0.000183971 0.0002879 5.14703e-05 4.4191e-06 2.718 ||| 0-0 ||| 146762 524574 +los ||| it keeps these ||| 1 0.0240362 1.90631e-06 3.90119e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| it left ||| 0.0196078 0.0002879 1.90631e-06 2.66349e-08 2.718 ||| 0-0 ||| 51 524574 +los ||| it may be of interest ||| 0.2 0.0023774 1.90631e-06 3.83292e-13 2.718 ||| 0-4 ||| 5 524574 +los ||| it means employers ||| 1 0.301873 1.90631e-06 8.83056e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| it more difficult for ||| 0.0714286 0.0015353 1.90631e-06 4.44775e-12 2.718 ||| 0-3 ||| 14 524574 +los ||| it occurred some weeks ||| 0.5 0.0002879 1.90631e-06 7.04984e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| it occurred some ||| 0.5 0.0002879 1.90631e-06 6.52763e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| it occurred ||| 0.0344828 0.0002879 1.90631e-06 5.9925e-09 2.718 ||| 0-0 ||| 29 524574 +los ||| it of the ||| 0.0526316 0.122289 1.90631e-06 0.0004147 2.718 ||| 0-2 ||| 19 524574 +los ||| it on ||| 0.003003 0.00048965 1.90631e-06 5.03088e-08 2.718 ||| 0-0 0-1 ||| 333 524574 +los ||| it our ||| 0.0196078 0.0248369 1.90631e-06 6.35056e-05 2.718 ||| 0-1 ||| 51 524574 +los ||| it outlines the ||| 0.111111 0.122289 1.90631e-06 1.90705e-08 2.718 ||| 0-2 ||| 9 524574 +los ||| it over us ||| 1 0.0037547 1.90631e-06 6.97577e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| it over ||| 0.0212766 0.0037547 1.90631e-06 2.42029e-06 2.718 ||| 0-1 ||| 47 524574 +los ||| it possess the ||| 1 0.122289 1.90631e-06 6.02629e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| it possible ||| 0.0027027 0.0019339 3.81262e-06 1.26261e-06 2.718 ||| 0-1 ||| 740 524574 +los ||| it protects them ||| 0.5 0.012069 1.90631e-06 3.24371e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| it protects ||| 0.025641 0.012069 1.90631e-06 1.20926e-07 2.718 ||| 0-1 ||| 39 524574 +los ||| it puts them ||| 0.333333 0.0002879 1.90631e-06 1.2519e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| it puts ||| 0.00729927 0.0002879 1.90631e-06 4.6671e-09 2.718 ||| 0-0 ||| 137 524574 +los ||| it regarded the ||| 1 0.122289 1.90631e-06 4.27943e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| it regards as the ||| 1 0.122289 1.90631e-06 1.08978e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| it reports ||| 0.0625 0.0435867 1.90631e-06 1.38603e-07 2.718 ||| 0-0 0-1 ||| 16 524574 +los ||| it says that the ||| 0.0175439 0.122289 1.90631e-06 8.86683e-09 2.718 ||| 0-3 ||| 57 524574 +los ||| it should also be the ||| 0.2 0.122289 1.90631e-06 3.0926e-09 2.718 ||| 0-4 ||| 5 524574 +los ||| it should be left to the national ||| 1 0.122289 1.90631e-06 1.32125e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| it should be left to the ||| 0.2 0.122289 1.90631e-06 1.02821e-11 2.718 ||| 0-5 ||| 5 524574 +los ||| it should be up to each ||| 0.2 0.0497499 1.90631e-06 3.80792e-13 2.718 ||| 0-5 ||| 5 524574 +los ||| it that the ||| 0.0545455 0.122289 1.14379e-05 0.000128319 2.718 ||| 0-2 ||| 110 524574 +los ||| it the moment ||| 0.333333 0.122289 1.90631e-06 1.37842e-06 2.718 ||| 0-1 ||| 3 524574 +los ||| it the ||| 0.0311688 0.122289 2.28757e-05 0.00762822 2.718 ||| 0-1 ||| 385 524574 +los ||| it those that ||| 0.5 0.284705 1.90631e-06 4.99495e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| it those ||| 0.666667 0.284705 3.81262e-06 0.000296937 2.718 ||| 0-1 ||| 3 524574 +los ||| it through the ||| 0.0322581 0.122289 1.90631e-06 3.51127e-06 2.718 ||| 0-2 ||| 31 524574 +los ||| it to the ||| 0.00727273 0.122289 3.81262e-06 0.00067783 2.718 ||| 0-2 ||| 275 524574 +los ||| it took the ||| 0.0238095 0.122289 1.90631e-06 1.12516e-06 2.718 ||| 0-2 ||| 42 524574 +los ||| it turns ||| 0.0078125 0.0017637 1.90631e-06 1.77832e-08 2.718 ||| 0-1 ||| 128 524574 +los ||| it up to the candidate states . ||| 1 0.0335599 1.90631e-06 1.15756e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| it up to the candidate states ||| 1 0.0335599 1.90631e-06 3.8216e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| it up to the candidate ||| 1 0.0335599 1.90631e-06 5.08191e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| it up ||| 0.00694444 0.0031618 1.90631e-06 3.77004e-06 2.718 ||| 0-1 ||| 144 524574 +los ||| it was , among the ||| 1 0.122289 1.90631e-06 2.55368e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| it was accrued in ||| 0.5 0.0816327 1.90631e-06 4.65093e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| it was accrued ||| 0.5 0.0816327 1.90631e-06 2.17288e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| it was in the name of the ||| 1 0.122289 1.90631e-06 1.49218e-13 2.718 ||| 0-6 ||| 1 524574 +los ||| it was refused ||| 0.2 0.0002879 1.90631e-06 5.25686e-12 2.718 ||| 0-0 ||| 5 524574 +los ||| it was the ||| 0.00925926 0.122289 1.33442e-05 2.38992e-05 2.718 ||| 0-2 ||| 756 524574 +los ||| it was these ||| 0.111111 0.0240362 1.90631e-06 1.35805e-07 2.718 ||| 0-2 ||| 9 524574 +los ||| it was those at the bottom of ||| 1 0.122289 1.90631e-06 5.67284e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| it was those at the bottom ||| 1 0.122289 1.90631e-06 1.04349e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| it was those at the ||| 1 0.122289 1.90631e-06 7.24647e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| it was those ||| 0.5 0.284705 1.90631e-06 9.30303e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| it was what the ||| 1 0.122289 1.90631e-06 3.3533e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| it was ||| 0.000144477 0.0002879 3.81262e-06 4.41753e-07 2.718 ||| 0-0 ||| 13843 524574 +los ||| it were the ||| 0.0384615 0.122289 1.90631e-06 1.36652e-05 2.718 ||| 0-2 ||| 26 524574 +los ||| it what the ||| 1 0.122289 1.90631e-06 1.07031e-05 2.718 ||| 0-2 ||| 1 524574 +los ||| it will be possible to increase the ||| 1 0.122289 1.90631e-06 1.10133e-14 2.718 ||| 0-6 ||| 1 524574 +los ||| it will be possible ||| 0.00223214 0.0019339 1.90631e-06 1.97958e-10 2.718 ||| 0-3 ||| 448 524574 +los ||| it will be the ||| 0.019084 0.122289 9.53154e-06 1.19599e-06 2.718 ||| 0-3 ||| 262 524574 +los ||| it will be ||| 0.000230415 0.0002879 1.90631e-06 2.21067e-08 2.718 ||| 0-0 ||| 4340 524574 +los ||| it will bear them in ||| 1 0.038218 1.90631e-06 9.92135e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| it will bear them ||| 1 0.038218 1.90631e-06 4.63517e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| it will not be the Council that ||| 1 0.122289 1.90631e-06 2.37517e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| it will not be the Council ||| 1 0.122289 1.90631e-06 1.41198e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| it will not be the ||| 0.030303 0.122289 1.90631e-06 4.08322e-09 2.718 ||| 0-4 ||| 33 524574 +los ||| it will ||| 0.00022168 0.0002879 1.90631e-06 1.21982e-06 2.718 ||| 0-0 ||| 4511 524574 +los ||| it work ||| 0.0172414 0.0006501 1.90631e-06 6.22412e-07 2.718 ||| 0-1 ||| 58 524574 +los ||| it would give the ||| 0.166667 0.122289 1.90631e-06 2.71292e-08 2.718 ||| 0-3 ||| 6 524574 +los ||| it would seem that the ||| 0.0512821 0.122289 3.81262e-06 6.88301e-11 2.718 ||| 0-4 ||| 39 524574 +los ||| it ||| 0.00069047 0.0002879 0.000203975 0.000141 2.718 ||| 0-0 ||| 154967 524574 +los ||| items of ||| 0.0434783 0.0694354 9.53154e-06 5.65386e-06 2.718 ||| 0-0 ||| 115 524574 +los ||| items ||| 0.00551615 0.0694354 1.33442e-05 0.000104 2.718 ||| 0-0 ||| 1269 524574 +los ||| its , ||| 0.2 0.0211371 1.90631e-06 0.000254621 2.718 ||| 0-0 ||| 5 524574 +los ||| its Generalised ||| 1 0.0211371 1.90631e-06 6.29854e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| its Members - ||| 0.5 0.095008 1.90631e-06 3.88548e-08 2.718 ||| 0-0 0-1 ||| 2 524574 +los ||| its Members . ||| 0.0147059 0.168879 1.90631e-06 2.08193e-08 2.718 ||| 0-1 ||| 68 524574 +los ||| its Members ||| 0.00694444 0.095008 3.81262e-06 1.03006e-05 2.718 ||| 0-0 0-1 ||| 288 524574 +los ||| its Presidency ||| 0.00793651 0.0211371 1.90631e-06 1.06114e-07 2.718 ||| 0-0 ||| 126 524574 +los ||| its Protocol " ||| 1 0.0211371 1.90631e-06 5.66263e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| its Protocol ||| 0.142857 0.0211371 1.90631e-06 2.39131e-08 2.718 ||| 0-0 ||| 7 524574 +los ||| its ability the ||| 1 0.122289 1.90631e-06 2.81733e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| its arrangements ||| 0.2 0.0211371 1.90631e-06 9.37309e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| its attendant problems : ||| 0.5 0.106249 1.90631e-06 5.29713e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| its attendant problems ||| 0.25 0.106249 1.90631e-06 1.57278e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| its backing ||| 0.0588235 0.0211371 1.90631e-06 3.60832e-08 2.718 ||| 0-0 ||| 17 524574 +los ||| its banana ||| 0.5 0.0311299 1.90631e-06 1.30882e-07 2.718 ||| 0-0 0-1 ||| 2 524574 +los ||| its being watered ||| 1 0.0211371 1.90631e-06 1.94434e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| its being ||| 0.00943396 0.0211371 1.90631e-06 6.07607e-06 2.718 ||| 0-0 ||| 106 524574 +los ||| its best advantage ||| 0.333333 0.0211371 1.90631e-06 1.49926e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| its best ||| 0.00483092 0.0211371 1.90631e-06 2.95711e-07 2.718 ||| 0-0 ||| 207 524574 +los ||| its cooperation with the ||| 0.0243902 0.0211371 1.90631e-06 7.7196e-11 2.718 ||| 0-0 ||| 41 524574 +los ||| its cooperation with ||| 0.0113636 0.0211371 1.90631e-06 1.25743e-09 2.718 ||| 0-0 ||| 88 524574 +los ||| its cooperation ||| 0.00606061 0.0211371 1.90631e-06 1.96643e-07 2.718 ||| 0-0 ||| 165 524574 +los ||| its designated ||| 0.5 0.0211371 1.90631e-06 2.00699e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| its disposal ||| 0.0031746 0.0211371 1.90631e-06 1.79775e-07 2.718 ||| 0-0 ||| 315 524574 +los ||| its efforts to step up monitoring of ||| 1 0.0613421 1.90631e-06 3.35581e-19 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| its efforts to step up monitoring ||| 1 0.0613421 1.90631e-06 6.17286e-18 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| its efforts to step up ||| 1 0.0613421 1.90631e-06 1.62017e-13 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| its efforts to step ||| 1 0.0613421 1.90631e-06 4.75054e-11 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| its efforts to ||| 0.00258398 0.0613421 1.90631e-06 3.22071e-07 2.718 ||| 0-0 0-1 ||| 387 524574 +los ||| its efforts ||| 0.0026455 0.0211371 3.81262e-06 2.59628e-07 2.718 ||| 0-0 ||| 756 524574 +los ||| its enlargement strategy ||| 0.5 0.0211371 1.90631e-06 3.78498e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| its enlargement ||| 0.0178571 0.0211371 1.90631e-06 6.448e-08 2.718 ||| 0-0 ||| 56 524574 +los ||| its examination of the ||| 0.125 0.122289 1.90631e-06 4.55165e-10 2.718 ||| 0-3 ||| 8 524574 +los ||| its existing ||| 0.047619 0.0464558 1.90631e-06 6.16468e-07 2.718 ||| 0-1 ||| 21 524574 +los ||| its flagrantly ||| 1 0.0211371 1.90631e-06 3.84318e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| its funding ||| 0.00980392 0.031089 1.90631e-06 4.76562e-07 2.718 ||| 0-1 ||| 102 524574 +los ||| its funds ||| 0.0526316 0.120798 3.81262e-06 7.98997e-06 2.718 ||| 0-0 0-1 ||| 38 524574 +los ||| its glorious ||| 0.333333 0.0211371 1.90631e-06 1.49457e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| its image through its ||| 1 0.0211371 1.90631e-06 1.86223e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| its image through ||| 0.5 0.0211371 1.90631e-06 1.30711e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| its image ||| 0.015625 0.0211371 1.90631e-06 2.83968e-08 2.718 ||| 0-0 ||| 64 524574 +los ||| its inhabitants ||| 0.0107527 0.0211371 1.90631e-06 1.68673e-08 2.718 ||| 0-0 ||| 93 524574 +los ||| its legitimacy ||| 0.0117647 0.0211371 1.90631e-06 1.62268e-08 2.718 ||| 0-0 ||| 85 524574 +los ||| its limit ||| 0.1 0.0211371 1.90631e-06 1.03766e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| its manufacturers from selling ||| 1 0.0211371 1.90631e-06 1.60915e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| its manufacturers from ||| 1 0.0211371 1.90631e-06 2.47562e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| its manufacturers ||| 0.166667 0.0211371 1.90631e-06 1.53727e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| its mind , ||| 0.5 0.0211371 1.90631e-06 6.4139e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| its mind known on every ||| 1 0.0211371 1.90631e-06 6.44633e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| its mind known on ||| 1 0.0211371 1.90631e-06 3.96209e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| its mind known ||| 1 0.0211371 1.90631e-06 5.92153e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| its mind ||| 0.047619 0.0211371 3.81262e-06 5.37832e-07 2.718 ||| 0-0 ||| 42 524574 +los ||| its most ||| 0.0135135 0.0211371 1.90631e-06 9.2279e-07 2.718 ||| 0-0 ||| 74 524574 +los ||| its national legislation ||| 0.0625 0.0129851 1.90631e-06 4.89418e-11 2.718 ||| 0-1 ||| 16 524574 +los ||| its national ||| 0.0625 0.0129851 1.90631e-06 6.09487e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| its neighbouring ||| 0.25 0.0950267 1.90631e-06 9.09339e-07 2.718 ||| 0-0 0-1 ||| 4 524574 +los ||| its opinion ||| 0.00119904 0.0211371 1.90631e-06 5.23954e-07 2.718 ||| 0-0 ||| 834 524574 +los ||| its outcome , and ||| 0.333333 0.0211371 1.90631e-06 1.62976e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| its outcome , ||| 0.111111 0.0211371 1.90631e-06 1.30111e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| its outcome ||| 0.015625 0.0211371 1.90631e-06 1.09104e-07 2.718 ||| 0-0 ||| 64 524574 +los ||| its own , ||| 0.00662252 0.0211371 1.90631e-06 4.31658e-07 2.718 ||| 0-0 ||| 151 524574 +los ||| its own base ||| 1 0.0211371 1.90631e-06 1.22344e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| its own identity . ||| 0.2 0.0211371 1.90631e-06 2.2147e-13 2.718 ||| 0-0 ||| 5 524574 +los ||| its own identity ||| 0.03125 0.0211371 1.90631e-06 7.31166e-11 2.718 ||| 0-0 ||| 32 524574 +los ||| its own ||| 0.0034089 0.0211371 3.81262e-05 3.61964e-06 2.718 ||| 0-0 ||| 5867 524574 +los ||| its plant at ||| 1 0.0211371 1.90631e-06 9.65576e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| its plant ||| 0.166667 0.0211371 1.90631e-06 2.30591e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| its predecessors ||| 0.0169492 0.0211371 1.90631e-06 1.49457e-09 2.718 ||| 0-0 ||| 59 524574 +los ||| its price ||| 0.0294118 0.0506834 1.90631e-06 1.18946e-06 2.718 ||| 0-0 0-1 ||| 34 524574 +los ||| its programmeplanning ||| 1 0.510569 1.90631e-06 2.1351e-09 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| its project ||| 0.0416667 0.0211371 1.90631e-06 1.30668e-07 2.718 ||| 0-0 ||| 24 524574 +los ||| its proposal , as required under ||| 0.5 0.0211371 1.90631e-06 2.95453e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| its proposal , as required ||| 0.5 0.0211371 1.90631e-06 8.23448e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| its proposal , as ||| 0.25 0.0211371 1.90631e-06 5.18871e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| its proposal , ||| 0.00704225 0.0211371 1.90631e-06 5.08478e-08 2.718 ||| 0-0 ||| 142 524574 +los ||| its proposal ||| 0.00110011 0.0211371 1.90631e-06 4.26379e-07 2.718 ||| 0-0 ||| 909 524574 +los ||| its proposed ||| 0.0144928 0.0211371 1.90631e-06 2.38277e-07 2.718 ||| 0-0 ||| 69 524574 +los ||| its real message ||| 1 0.0211371 1.90631e-06 1.85138e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| its real ||| 0.0285714 0.0211371 1.90631e-06 3.84104e-07 2.718 ||| 0-0 ||| 35 524574 +los ||| its rebate ||| 0.0909091 0.0211371 1.90631e-06 2.98914e-09 2.718 ||| 0-0 ||| 11 524574 +los ||| its relations with ||| 0.00292398 0.0211371 1.90631e-06 7.41352e-10 2.718 ||| 0-0 ||| 342 524574 +los ||| its relations ||| 0.00274725 0.0211371 1.90631e-06 1.15936e-07 2.718 ||| 0-0 ||| 364 524574 +los ||| its remit ||| 0.00840336 0.0211371 1.90631e-06 3.54427e-08 2.718 ||| 0-0 ||| 119 524574 +los ||| its reports ||| 0.0144928 0.0540113 1.90631e-06 2.0988e-06 2.718 ||| 0-0 0-1 ||| 69 524574 +los ||| its resources and ||| 0.0357143 0.120358 1.90631e-06 1.29647e-07 2.718 ||| 0-0 0-1 ||| 28 524574 +los ||| its resources ||| 0.00714286 0.120358 1.90631e-06 1.03503e-05 2.718 ||| 0-0 0-1 ||| 140 524574 +los ||| its respective ||| 0.166667 0.0211371 1.90631e-06 6.83232e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| its role of guardian of the ||| 1 0.122289 1.90631e-06 5.61358e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| its role ||| 0.00117233 0.0211371 1.90631e-06 4.73992e-07 2.718 ||| 0-0 ||| 853 524574 +los ||| its roots in the ||| 0.0769231 0.122289 1.90631e-06 1.88367e-10 2.718 ||| 0-3 ||| 13 524574 +los ||| its second plenary session when the ||| 1 0.122289 1.90631e-06 4.11293e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| its services and , above all , ||| 1 0.272175 1.90631e-06 1.21165e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| its services and , above all ||| 1 0.272175 1.90631e-06 1.01602e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| its services and , above ||| 1 0.272175 1.90631e-06 2.15012e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| its services and , ||| 1 0.272175 1.90631e-06 1.65904e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| its services and ||| 0.125 0.272175 1.90631e-06 1.39118e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| its services ||| 0.0186916 0.0211371 3.81262e-06 1.88956e-07 2.718 ||| 0-0 ||| 107 524574 +los ||| its side ||| 0.0227273 0.0211371 1.90631e-06 4.68014e-07 2.718 ||| 0-0 ||| 44 524574 +los ||| its silencer ||| 1 0.0211371 1.90631e-06 8.5404e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| its spare ||| 1 0.0211371 1.90631e-06 2.15645e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| its supply ||| 0.0434783 0.0211371 1.90631e-06 1.09958e-07 2.718 ||| 0-0 ||| 23 524574 +los ||| its technical ||| 0.111111 0.0012609 1.90631e-06 1.52443e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| its territory is ||| 0.142857 0.0211371 1.90631e-06 2.06772e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| its territory ||| 0.00289855 0.0211371 1.90631e-06 6.59746e-08 2.718 ||| 0-0 ||| 345 524574 +los ||| its the ||| 0.5 0.122289 1.90631e-06 0.000611134 2.718 ||| 0-1 ||| 2 524574 +los ||| its three components : ||| 1 0.0211371 1.90631e-06 3.91465e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| its three components ||| 0.2 0.0211371 1.90631e-06 1.16231e-12 2.718 ||| 0-0 ||| 5 524574 +los ||| its three ||| 0.025641 0.0211371 1.90631e-06 1.35152e-07 2.718 ||| 0-0 ||| 39 524574 +los ||| its time ||| 0.00934579 0.0211371 1.90631e-06 3.50519e-06 2.718 ||| 0-0 ||| 107 524574 +los ||| its various ||| 0.00729927 0.0211371 1.90631e-06 3.29659e-07 2.718 ||| 0-0 ||| 137 524574 +los ||| its view ||| 0.00520833 0.0211371 1.90631e-06 1.92864e-06 2.718 ||| 0-0 ||| 192 524574 +los ||| its wake ||| 0.0285714 0.0211371 1.90631e-06 5.08154e-08 2.718 ||| 0-0 ||| 35 524574 +los ||| its way through ||| 0.2 0.0211371 1.90631e-06 2.11849e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| its way ||| 0.0171821 0.0211371 9.53154e-06 4.60242e-06 2.718 ||| 0-0 ||| 291 524574 +los ||| its work is ||| 0.0416667 0.0211371 1.90631e-06 4.23581e-08 2.718 ||| 0-0 ||| 24 524574 +los ||| its work of ||| 0.142857 0.0211371 1.90631e-06 7.34739e-08 2.718 ||| 0-0 ||| 7 524574 +los ||| its work ||| 0.00176056 0.0211371 3.81262e-06 1.35152e-06 2.718 ||| 0-0 ||| 1136 524574 +los ||| its ||| 0.0181498 0.0211371 0.00362961 0.0021351 2.718 ||| 0-0 ||| 104905 524574 +los ||| itself that the ||| 0.125 0.122289 1.90631e-06 4.89732e-06 2.718 ||| 0-2 ||| 8 524574 +los ||| itself the ||| 0.0215054 0.122289 3.81262e-06 0.000291133 2.718 ||| 0-1 ||| 93 524574 +los ||| itself with the ||| 0.133333 0.122289 3.81262e-06 1.86165e-06 2.718 ||| 0-2 ||| 15 524574 +los ||| itself with them , ||| 1 0.038218 1.90631e-06 1.04164e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| itself with them ||| 0.5 0.038218 1.90631e-06 8.73458e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| job ' ||| 0.111111 0.0444479 1.90631e-06 4.1543e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| job machines ||| 0.333333 0.0131926 1.90631e-06 3.8269e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| job of balancing the ||| 1 0.122289 1.90631e-06 7.83148e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| job of the ||| 0.0103093 0.122289 1.90631e-06 1.82127e-06 2.718 ||| 0-2 ||| 97 524574 +los ||| jobs are disappearing ||| 1 0.0595578 1.90631e-06 6.02478e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| jobs are ||| 0.0041841 0.0595578 1.90631e-06 1.50619e-05 2.718 ||| 0-0 ||| 239 524574 +los ||| jobs do ||| 0.333333 0.0595578 1.90631e-06 3.41022e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| jobs is being restricted ||| 1 0.0595578 1.90631e-06 1.39892e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| jobs is being ||| 0.5 0.0595578 1.90631e-06 8.85394e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| jobs is ||| 0.016129 0.0595578 1.90631e-06 3.11123e-05 2.718 ||| 0-0 ||| 62 524574 +los ||| jobs ||| 0.00134345 0.0595578 3.81262e-05 0.0009927 2.718 ||| 0-0 ||| 14887 524574 +los ||| join the EU ||| 0.00595238 0.122289 1.90631e-06 9.93319e-09 2.718 ||| 0-1 ||| 168 524574 +los ||| join the ||| 0.000774593 0.122289 1.90631e-06 2.00752e-05 2.718 ||| 0-1 ||| 1291 524574 +los ||| join unions ||| 0.166667 0.0560876 1.90631e-06 3.72996e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| joining those who ||| 0.333333 0.284705 1.90631e-06 2.06182e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| joining those ||| 0.25 0.284705 1.90631e-06 2.33766e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| joint effort on the part of those ||| 1 0.284705 1.90631e-06 2.56118e-18 2.718 ||| 0-6 ||| 1 524574 +los ||| joint ||| 9.60799e-05 0.0002033 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 10408 524574 +los ||| jointly represents the ||| 0.333333 0.122289 1.90631e-06 3.66028e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| journalist 's ||| 0.111111 0.0349814 1.90631e-06 6.73992e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| journalist ||| 0.0018315 0.002045 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 546 524574 +los ||| journalists ||| 0.00184843 0.259054 5.71893e-06 0.0005007 2.718 ||| 0-0 ||| 1623 524574 +los ||| journey ||| 0.00137741 0.0146667 1.90631e-06 1.07e-05 2.718 ||| 0-0 ||| 726 524574 +los ||| journeys made ||| 0.125 0.203219 1.90631e-06 2.05709e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| journeys ||| 0.00867052 0.203219 5.71893e-06 9.82e-05 2.718 ||| 0-0 ||| 346 524574 +los ||| judging the ||| 0.0357143 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-1 ||| 28 524574 +los ||| judicial ||| 0.00031211 0.0002998 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 3204 524574 +los ||| junior doctors and ||| 0.125 0.309826 1.90631e-06 1.04772e-11 2.718 ||| 0-1 ||| 8 524574 +los ||| junior doctors ||| 0.00826446 0.309826 1.90631e-06 8.3644e-10 2.718 ||| 0-1 ||| 121 524574 +los ||| just a few staff ||| 0.5 0.0154407 1.90631e-06 6.86266e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| just as a ||| 0.0116279 0.0009297 1.90631e-06 1.99543e-08 2.718 ||| 0-1 ||| 86 524574 +los ||| just as ||| 0.000245098 0.0009297 1.90631e-06 4.50175e-07 2.718 ||| 0-1 ||| 4080 524574 +los ||| just drenched the ||| 1 0.122289 1.90631e-06 2.16486e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| just fertiliser but ||| 0.5 0.128205 1.90631e-06 1.25888e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| just fertiliser ||| 0.5 0.128205 1.90631e-06 1.84208e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| just give the ||| 0.333333 0.122289 1.90631e-06 3.27976e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| just looking at the ||| 0.25 0.122289 1.90631e-06 2.39772e-10 2.718 ||| 0-3 ||| 4 524574 +los ||| just people ||| 0.142857 0.0894672 1.90631e-06 9.93627e-06 2.718 ||| 0-1 ||| 7 524574 +los ||| just the right moment ||| 0.1 0.122289 1.90631e-06 6.30695e-11 2.718 ||| 0-1 ||| 10 524574 +los ||| just the right ||| 0.0833333 0.122289 1.90631e-06 3.49029e-07 2.718 ||| 0-1 ||| 12 524574 +los ||| just the ||| 0.0138376 0.122289 2.85946e-05 0.000541214 2.718 ||| 0-1 ||| 1084 524574 +los ||| justice the ||| 0.0952381 0.122289 3.81262e-06 1.71154e-05 2.718 ||| 0-1 ||| 21 524574 +los ||| justice those ||| 0.111111 0.284705 5.71893e-06 6.66234e-07 2.718 ||| 0-1 ||| 27 524574 +los ||| justice to the own ||| 1 0.122289 1.90631e-06 2.57828e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| justice to the ||| 0.00699301 0.122289 1.90631e-06 1.52084e-06 2.718 ||| 0-2 ||| 143 524574 +los ||| justified by the ||| 0.0116279 0.122289 1.90631e-06 4.30144e-08 2.718 ||| 0-2 ||| 86 524574 +los ||| juvenile detainees ||| 0.2 0.24109 1.90631e-06 1.2298e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| juvenile ||| 0.00952381 0.0606061 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 105 524574 +los ||| keep our ||| 0.00961538 0.0248369 1.90631e-06 5.56377e-07 2.718 ||| 0-1 ||| 104 524574 +los ||| keep the lid ||| 1 0.122289 1.90631e-06 1.20297e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| keep the ||| 0.00609756 0.122289 7.62523e-06 6.68314e-05 2.718 ||| 0-1 ||| 656 524574 +los ||| keep them ||| 0.00775194 0.038218 1.90631e-06 3.13563e-07 2.718 ||| 0-1 ||| 129 524574 +los ||| keep up ||| 0.003861 0.0031618 1.90631e-06 3.30296e-08 2.718 ||| 0-1 ||| 259 524574 +los ||| keep your nose out of my business ||| 1 0.0096341 1.90631e-06 4.89921e-24 2.718 ||| 0-1 ||| 1 524574 +los ||| keep your nose out of my ||| 1 0.0096341 1.90631e-06 3.92251e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| keep your nose out of ||| 0.25 0.0096341 1.90631e-06 6.09938e-17 2.718 ||| 0-1 ||| 4 524574 +los ||| keep your nose out ||| 0.166667 0.0096341 1.90631e-06 1.12195e-15 2.718 ||| 0-1 ||| 6 524574 +los ||| keep your nose ||| 0.142857 0.0096341 1.90631e-06 2.92907e-13 2.718 ||| 0-1 ||| 7 524574 +los ||| keep your ||| 0.02 0.0096341 1.90631e-06 4.80176e-08 2.718 ||| 0-1 ||| 50 524574 +los ||| keep ||| 0.000951113 0.0007869 9.53154e-06 5.8e-06 2.718 ||| 0-0 ||| 5257 524574 +los ||| keeping afloat ||| 0.111111 0.0038775 1.90631e-06 6.79e-12 2.718 ||| 0-0 ||| 9 524574 +los ||| keeping certain politicians in ||| 1 0.299137 1.90631e-06 5.06549e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| keeping certain politicians ||| 1 0.299137 1.90631e-06 2.36656e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| keeping salaries down ||| 1 0.277512 1.90631e-06 1.15559e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| keeping salaries ||| 0.25 0.277512 1.90631e-06 1.65534e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| keeping the ||| 0.0177936 0.122289 9.53154e-06 2.51797e-05 2.718 ||| 0-1 ||| 281 524574 +los ||| keeping them ||| 0.0285714 0.038218 1.90631e-06 1.1814e-07 2.718 ||| 0-1 ||| 35 524574 +los ||| keeping those ||| 0.333333 0.284705 1.90631e-06 9.80149e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| keeping with the ||| 0.00914634 0.122289 5.71893e-06 1.61012e-07 2.718 ||| 0-2 ||| 328 524574 +los ||| keeping ||| 0.00273224 0.0038775 1.14379e-05 9.7e-06 2.718 ||| 0-0 ||| 2196 524574 +los ||| keeps these ||| 1 0.0240362 1.90631e-06 2.19375e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| kept as ||| 0.05 0.0009297 1.90631e-06 2.54398e-08 2.718 ||| 0-1 ||| 20 524574 +los ||| kept the internal ||| 0.5 0.122289 1.90631e-06 1.41912e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| kept the same level ||| 0.5 0.122289 1.90631e-06 2.10526e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| kept the same ||| 0.2 0.122289 1.90631e-06 2.46114e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| kept the ||| 0.0377358 0.122289 3.81262e-06 3.05846e-05 2.718 ||| 0-1 ||| 53 524574 +los ||| key ||| 0.000541418 0.0013112 1.14379e-05 1.36e-05 2.718 ||| 0-0 ||| 11082 524574 +los ||| kg ||| 0.00793651 0.0062112 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 126 524574 +los ||| kill the ||| 0.0666667 0.122289 3.81262e-06 1.84451e-06 2.718 ||| 0-1 ||| 30 524574 +los ||| killed by ||| 0.0108696 0.0062464 1.90631e-06 3.85512e-08 2.718 ||| 0-1 ||| 92 524574 +los ||| killing over the ||| 0.25 0.122289 1.90631e-06 1.85888e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| kind , the ||| 0.0454545 0.122289 1.90631e-06 2.49637e-05 2.718 ||| 0-2 ||| 22 524574 +los ||| kind of ||| 0.000604595 0.0019787 5.71893e-06 1.61411e-06 2.718 ||| 0-1 ||| 4962 524574 +los ||| kinds are ||| 0.0909091 0.0082383 1.90631e-06 1.91176e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| kinds of other ||| 0.0526316 0.0051085 1.90631e-06 5.39909e-11 2.718 ||| 0-0 0-1 ||| 19 524574 +los ||| kinds of support , ||| 0.333333 0.0051085 1.90631e-06 1.69925e-12 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| kinds of support ||| 0.142857 0.0051085 1.90631e-06 1.42489e-11 2.718 ||| 0-0 0-1 ||| 7 524574 +los ||| kinds of ||| 0.00537634 0.0082383 1.14379e-05 6.84986e-07 2.718 ||| 0-0 ||| 1116 524574 +los ||| kinds ||| 0.0055517 0.0082383 1.52505e-05 1.26e-05 2.718 ||| 0-0 ||| 1441 524574 +los ||| know , the ||| 0.002457 0.122289 1.90631e-06 1.3198e-05 2.718 ||| 0-2 ||| 407 524574 +los ||| know each ||| 0.0833333 0.0497499 1.90631e-06 2.27014e-07 2.718 ||| 0-1 ||| 12 524574 +los ||| know the ||| 0.00409836 0.122289 3.81262e-06 0.000110671 2.718 ||| 0-1 ||| 488 524574 +los ||| know there is a ||| 0.2 0.0026918 1.90631e-06 1.31719e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| know there is ||| 0.0666667 0.0026918 1.90631e-06 2.97161e-09 2.718 ||| 0-1 ||| 15 524574 +los ||| know there ||| 0.0769231 0.0026918 1.90631e-06 9.4815e-08 2.718 ||| 0-1 ||| 13 524574 +los ||| know whether all Members have now received ||| 1 0.168879 1.90631e-06 3.41067e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| know whether all Members have now ||| 1 0.168879 1.90631e-06 3.80655e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| know whether all Members have ||| 1 0.168879 1.90631e-06 1.84793e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| know whether all Members ||| 1 0.168879 1.90631e-06 1.54512e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| knowledge for ||| 0.111111 0.0139626 3.81262e-06 1.28566e-07 2.718 ||| 0-0 0-1 ||| 18 524574 +los ||| knowledge ||| 0.000354673 0.0263899 3.81262e-06 0.0001458 2.718 ||| 0-0 ||| 5639 524574 +los ||| known as ' ||| 0.00833333 0.0444479 1.90631e-06 5.97614e-09 2.718 ||| 0-2 ||| 120 524574 +los ||| known as the ||| 0.00616016 0.122289 5.71893e-06 4.81934e-07 2.718 ||| 0-2 ||| 487 524574 +los ||| known the ||| 0.0454545 0.122289 1.90631e-06 4.72281e-05 2.718 ||| 0-1 ||| 22 524574 +los ||| label or any ||| 1 0.0178119 1.90631e-06 1.44665e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| label the ||| 0.0769231 0.122289 1.90631e-06 5.8767e-06 2.718 ||| 0-1 ||| 13 524574 +los ||| laboratories ||| 0.00398406 0.253205 1.90631e-06 7.68e-05 2.718 ||| 0-0 ||| 251 524574 +los ||| labour and bring forth ||| 1 0.0142871 1.90631e-06 1.09485e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| labour and bring ||| 1 0.0142871 1.90631e-06 5.42004e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| labour and ||| 0.00213675 0.0142871 1.90631e-06 1.7411e-06 2.718 ||| 0-0 ||| 468 524574 +los ||| labour ||| 0.00148437 0.0142871 3.05009e-05 0.000139 2.718 ||| 0-0 ||| 10779 524574 +los ||| lack of awareness of the ||| 0.0555556 0.122289 1.90631e-06 4.60936e-12 2.718 ||| 0-4 ||| 18 524574 +los ||| lack the desire ||| 1 0.122289 1.90631e-06 2.44114e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| lack the ||| 0.00636943 0.122289 1.90631e-06 5.21611e-05 2.718 ||| 0-1 ||| 157 524574 +los ||| lacks the courage ||| 0.1 0.122289 1.90631e-06 4.05793e-12 2.718 ||| 0-1 ||| 10 524574 +los ||| lacks the ||| 0.011236 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 89 524574 +los ||| laid down by ||| 0.0020284 0.0062464 1.90631e-06 1.23255e-10 2.718 ||| 0-2 ||| 493 524574 +los ||| laid down in ||| 0.000668003 0.0049833 1.90631e-06 1.99713e-10 2.718 ||| 0-1 ||| 1497 524574 +los ||| laid down some ||| 0.333333 0.0049833 1.90631e-06 1.01636e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| laid down ||| 0.00103591 0.0049833 5.71893e-06 9.3304e-09 2.718 ||| 0-1 ||| 2896 524574 +los ||| land cleared by fires proven ||| 0.333333 0.234127 1.90631e-06 1.15908e-20 2.718 ||| 0-3 ||| 3 524574 +los ||| land cleared by fires ||| 0.25 0.234127 1.90631e-06 8.27916e-16 2.718 ||| 0-3 ||| 4 524574 +los ||| land transport to Russia where agreed deadlines ||| 1 0.109218 1.90631e-06 4.60267e-26 2.718 ||| 0-6 ||| 1 524574 +los ||| land ||| 0.00119868 0.0056051 7.62523e-06 2.14e-05 2.718 ||| 0-0 ||| 3337 524574 +los ||| landfill ||| 0.00766284 0.19697 3.81262e-06 8.85e-05 2.718 ||| 0-0 ||| 261 524574 +los ||| landing ||| 0.00318471 0.0565476 1.90631e-06 1.85e-05 2.718 ||| 0-0 ||| 314 524574 +los ||| language-related ||| 0.125 0.375 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| laogai ||| 0.25 0.2 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| large , ||| 0.00303951 0.0004525 1.90631e-06 6.91677e-07 2.718 ||| 0-0 ||| 329 524574 +los ||| large a material ||| 0.5 0.0015032 1.90631e-06 2.65702e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| large groups of ||| 0.0285714 0.143803 1.90631e-06 1.65811e-08 2.718 ||| 0-1 ||| 35 524574 +los ||| large groups ||| 0.00617284 0.143803 1.90631e-06 3.05002e-07 2.718 ||| 0-1 ||| 162 524574 +los ||| large number of these stations ||| 0.5 0.0240362 1.90631e-06 1.22947e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| large number of these ||| 0.0714286 0.0240362 1.90631e-06 1.00777e-11 2.718 ||| 0-3 ||| 14 524574 +los ||| large numbers of ||| 0.00288184 0.0019787 1.90631e-06 2.48597e-11 2.718 ||| 0-2 ||| 347 524574 +los ||| large ||| 0.000160849 0.0004525 3.81262e-06 5.8e-06 2.718 ||| 0-0 ||| 12434 524574 +los ||| large-scale United States ||| 0.25 0.0100587 1.90631e-06 1.36094e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| large-scale United ||| 0.25 0.0100587 1.90631e-06 2.85192e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| large-scale ||| 0.00100806 0.0100587 1.90631e-06 2.33e-05 2.718 ||| 0-0 ||| 992 524574 +los ||| last but not least , the ||| 0.0344828 0.122289 1.90631e-06 6.39686e-15 2.718 ||| 0-5 ||| 29 524574 +los ||| last year the ||| 0.00877193 0.122289 1.90631e-06 2.33648e-08 2.718 ||| 0-2 ||| 114 524574 +los ||| latent ||| 0.015873 0.016129 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 63 524574 +los ||| latter in terms of the ||| 1 0.122289 1.90631e-06 5.26498e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| launch the ||| 0.00787402 0.122289 1.90631e-06 8.49333e-06 2.718 ||| 0-1 ||| 127 524574 +los ||| launching ||| 0.00141044 0.0011779 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 709 524574 +los ||| laurels during ||| 1 0.309524 1.90631e-06 3.82032e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| laurels ||| 0.0294118 0.309524 1.90631e-06 3.79e-05 2.718 ||| 0-0 ||| 34 524574 +los ||| law ||| 6.67401e-05 0.0002185 3.81262e-06 4.9e-06 2.718 ||| 0-0 ||| 29967 524574 +los ||| law-abiding ||| 0.01 0.0070423 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 100 524574 +los ||| lawfully ||| 0.0116279 0.0102041 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 86 524574 +los ||| lawyers , journalists ||| 0.0588235 0.259054 1.90631e-06 1.73161e-10 2.718 ||| 0-2 ||| 17 524574 +los ||| lawyers ||| 0.002442 0.26561 3.81262e-06 0.0002771 2.718 ||| 0-0 ||| 819 524574 +los ||| lay down the ||| 0.00840336 0.122289 1.90631e-06 1.23974e-08 2.718 ||| 0-2 ||| 119 524574 +los ||| lay the foundation ||| 0.0434783 0.122289 1.90631e-06 1.79364e-10 2.718 ||| 0-1 ||| 23 524574 +los ||| lay the ||| 0.00393701 0.122289 1.90631e-06 1.77588e-05 2.718 ||| 0-1 ||| 254 524574 +los ||| laying down the ||| 0.00625 0.122289 1.90631e-06 6.2586e-09 2.718 ||| 0-2 ||| 160 524574 +los ||| lays down that ||| 0.0138889 0.0049833 1.90631e-06 1.35353e-11 2.718 ||| 0-1 ||| 72 524574 +los ||| lays down ||| 0.00174216 0.0049833 1.90631e-06 8.0464e-10 2.718 ||| 0-1 ||| 574 524574 +los ||| lays out the ||| 0.2 0.122289 1.90631e-06 1.54449e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| lead the ||| 0.00628931 0.122289 3.81262e-06 8.25741e-05 2.718 ||| 0-1 ||| 318 524574 +los ||| lead to their ||| 0.166667 0.0236713 1.90631e-06 3.91316e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| leaders committed to its project ||| 1 0.0211371 1.90631e-06 1.5959e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| leaders committed to its ||| 1 0.0211371 1.90631e-06 2.60768e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| leaders on ||| 0.05 0.22637 1.90631e-06 7.4163e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| leaders ||| 0.00312361 0.22637 2.66883e-05 0.0011084 2.718 ||| 0-0 ||| 4482 524574 +los ||| leadership in developing something ||| 1 0.150762 1.90631e-06 7.00212e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| leadership in developing ||| 1 0.150762 1.90631e-06 1.26506e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| leadership of the ||| 0.00606061 0.122289 1.90631e-06 3.87108e-07 2.718 ||| 0-2 ||| 165 524574 +los ||| leading social ||| 0.5 0.0037997 1.90631e-06 1.32131e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| leading ||| 0.000272257 0.0002165 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 3673 524574 +los ||| leads them ||| 0.111111 0.038218 1.90631e-06 6.52082e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| leads to problems ||| 0.0666667 0.106249 1.90631e-06 8.82847e-09 2.718 ||| 0-2 ||| 15 524574 +los ||| leases on ||| 0.333333 0.142857 1.90631e-06 1.27129e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| leases ||| 0.125 0.142857 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| least , the ||| 0.0225564 0.122289 5.71893e-06 1.25535e-05 2.718 ||| 0-2 ||| 133 524574 +los ||| least - those of ||| 1 0.284705 1.90631e-06 8.40278e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| least - those ||| 1 0.284705 1.90631e-06 1.54565e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| least 90 % of the ||| 0.5 0.122289 1.90631e-06 5.86116e-16 2.718 ||| 0-4 ||| 2 524574 +los ||| least be the ||| 1 0.122289 1.90631e-06 1.90772e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| least developed ||| 0.00250627 0.005811 1.90631e-06 8.12274e-09 2.718 ||| 0-1 ||| 399 524574 +los ||| least from Mr Watson , the leader ||| 1 0.122289 1.90631e-06 2.19863e-22 2.718 ||| 0-5 ||| 1 524574 +los ||| least from Mr Watson , the ||| 1 0.122289 1.90631e-06 1.84759e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| least permitted by ||| 1 0.0062464 1.90631e-06 1.1289e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| least the ||| 0.00984252 0.122289 9.53154e-06 0.000105266 2.718 ||| 0-1 ||| 508 524574 +los ||| least those ||| 0.012987 0.284705 1.90631e-06 4.09759e-06 2.718 ||| 0-1 ||| 77 524574 +los ||| least we will avoid many cases ||| 1 0.136512 1.90631e-06 4.86146e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| least-developed , ||| 1 0.0993789 1.90631e-06 3.70882e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| least-developed countries ||| 0.00833333 0.0993789 1.90631e-06 1.18087e-08 2.718 ||| 0-0 ||| 120 524574 +los ||| least-developed ||| 0.016129 0.0993789 3.81262e-06 3.11e-05 2.718 ||| 0-0 ||| 124 524574 +los ||| leave the ||| 0.0033389 0.122289 3.81262e-06 4.07508e-05 2.718 ||| 0-1 ||| 599 524574 +los ||| leave them ||| 0.0178571 0.038218 1.90631e-06 1.91197e-07 2.718 ||| 0-1 ||| 56 524574 +los ||| leaves the ||| 0.00892857 0.122289 1.90631e-06 6.47724e-06 2.718 ||| 0-1 ||| 112 524574 +los ||| leaving the structures ||| 0.25 0.122289 1.90631e-06 2.20518e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| leaving the ||| 0.0096463 0.122289 5.71893e-06 1.02092e-05 2.718 ||| 0-1 ||| 311 524574 +los ||| left by the ||| 0.04 0.122289 1.90631e-06 4.25415e-07 2.718 ||| 0-2 ||| 25 524574 +los ||| left the ||| 0.00699301 0.122289 3.81262e-06 8.10298e-05 2.718 ||| 0-1 ||| 286 524574 +los ||| left to suffer the effects ||| 1 0.122289 1.90631e-06 1.39185e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| left to suffer the ||| 0.5 0.122289 1.90631e-06 2.56326e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| left to the national ||| 1 0.122289 1.90631e-06 9.25221e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| left to the ||| 0.02 0.122289 7.62523e-06 7.20017e-06 2.718 ||| 0-2 ||| 200 524574 +los ||| legal ||| 0.000363489 0.0005583 1.71568e-05 1.26e-05 2.718 ||| 0-0 ||| 24760 524574 +los ||| leghold ||| 0.15 0.218868 5.71893e-06 5.64e-05 2.718 ||| 0-0 ||| 20 524574 +los ||| legislative interpretation and cumbersome bureaucracy ||| 0.5 0.0036232 1.90631e-06 3.42185e-23 2.718 ||| 0-3 ||| 2 524574 +los ||| legislative interpretation and cumbersome ||| 0.5 0.0036232 1.90631e-06 5.26439e-18 2.718 ||| 0-3 ||| 2 524574 +los ||| legislators ||| 0.0018315 0.212676 1.90631e-06 0.0001468 2.718 ||| 0-0 ||| 546 524574 +los ||| lend its ||| 0.0384615 0.0211371 1.90631e-06 2.92509e-08 2.718 ||| 0-1 ||| 26 524574 +los ||| length of ||| 0.00331126 0.0019787 1.90631e-06 1.27343e-07 2.718 ||| 0-1 ||| 302 524574 +los ||| less incumbent on the ||| 1 0.122289 1.90631e-06 7.71828e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| less use of ||| 0.1 0.0019787 1.90631e-06 2.73708e-10 2.718 ||| 0-2 ||| 10 524574 +los ||| less ||| 0.000239674 0.0002977 5.71893e-06 3.9e-06 2.718 ||| 0-0 ||| 12517 524574 +los ||| let loose at the ||| 1 0.122289 1.90631e-06 4.25472e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| let the ||| 0.00496278 0.122289 3.81262e-06 0.000175186 2.718 ||| 0-1 ||| 403 524574 +los ||| let them go ; they are ||| 1 0.038218 1.90631e-06 7.33186e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| let them go ; they ||| 1 0.038218 1.90631e-06 4.83227e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| let them go ; ||| 1 0.038218 1.90631e-06 1.48048e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| let them go ||| 0.166667 0.038218 1.90631e-06 4.80674e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| let them ||| 0.00704225 0.038218 1.90631e-06 8.21946e-07 2.718 ||| 0-1 ||| 142 524574 +los ||| let those ||| 0.0555556 0.284705 1.90631e-06 6.8193e-06 2.718 ||| 0-1 ||| 18 524574 +los ||| let up in the ||| 0.166667 0.122289 1.90631e-06 1.27886e-08 2.718 ||| 0-3 ||| 6 524574 +los ||| let us say the ||| 0.333333 0.122289 1.90631e-06 4.82603e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| letter the ||| 0.142857 0.122289 1.90631e-06 1.111e-05 2.718 ||| 0-1 ||| 7 524574 +los ||| level , the ||| 0.0277778 0.122289 1.90631e-06 4.3758e-05 2.718 ||| 0-2 ||| 36 524574 +los ||| level of the ||| 0.00898876 0.122289 7.62523e-06 1.99477e-05 2.718 ||| 0-2 ||| 445 524574 +los ||| level of ||| 0.000163881 0.0019787 1.90631e-06 2.82932e-06 2.718 ||| 0-1 ||| 6102 524574 +los ||| levels ; ||| 0.0833333 0.222552 1.90631e-06 6.05805e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| levels alone ||| 1 0.222552 1.90631e-06 2.01804e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| levels and this ||| 0.333333 0.222552 1.90631e-06 1.59191e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| levels and ||| 0.00578035 0.222552 1.90631e-06 2.46372e-05 2.718 ||| 0-0 ||| 173 524574 +los ||| levels of compliance with the ||| 1 0.122289 1.90631e-06 4.54095e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| levels of the ||| 0.0196078 0.122289 1.90631e-06 3.08754e-06 2.718 ||| 0-2 ||| 51 524574 +los ||| levels of ||| 0.00149551 0.222552 5.71893e-06 0.000106929 2.718 ||| 0-0 ||| 2006 524574 +los ||| levels themselves , ||| 0.5 0.222552 1.90631e-06 1.00791e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| levels themselves ||| 0.333333 0.222552 1.90631e-06 8.45177e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| levels were ||| 0.0833333 0.222552 1.90631e-06 3.5235e-06 2.718 ||| 0-0 ||| 12 524574 +los ||| levels ||| 0.00850159 0.222552 0.000122004 0.0019669 2.718 ||| 0-0 ||| 7528 524574 +los ||| levy tolls ||| 0.5 0.186441 1.90631e-06 3.2635e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| liability as an institution . the ||| 1 0.122289 1.90631e-06 1.80187e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| liability between the ||| 0.5 0.122289 1.90631e-06 1.26738e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| liberal ||| 0.00591279 0.0158983 1.52505e-05 1.94e-05 2.718 ||| 0-0 ||| 1353 524574 +los ||| liberalisers ||| 1 0.5 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| liberals ||| 0.004 0.303342 1.90631e-06 0.0001147 2.718 ||| 0-0 ||| 250 524574 +los ||| licence fees ||| 0.0294118 0.0569211 1.90631e-06 4.0232e-10 2.718 ||| 0-1 ||| 34 524574 +los ||| licences after 1 ||| 1 0.0190909 1.90631e-06 3.52159e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| licences after ||| 1 0.0190909 1.90631e-06 5.5284e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| licences for the operation of universal mobile ||| 1 0.0620985 1.90631e-06 3.82286e-24 2.718 ||| 0-6 ||| 1 524574 +los ||| licences ||| 0.000929368 0.0190909 1.90631e-06 2.04e-05 2.718 ||| 0-0 ||| 1076 524574 +los ||| lie on the ||| 0.142857 0.122289 1.90631e-06 1.08492e-07 2.718 ||| 0-2 ||| 7 524574 +los ||| lies with those ||| 0.2 0.284705 1.90631e-06 6.56653e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| life into the ||| 0.0192308 0.122289 1.90631e-06 6.6722e-08 2.718 ||| 0-2 ||| 52 524574 +los ||| life ||| 0.000170314 0.0002888 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 11743 524574 +los ||| lift all restrictions ||| 0.25 0.0177928 1.90631e-06 3.90234e-13 2.718 ||| 0-1 ||| 4 524574 +los ||| lift all ||| 0.125 0.0177928 1.90631e-06 2.04311e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| lifting equipment , ||| 0.5 0.101449 1.90631e-06 1.66532e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| lifting equipment ||| 0.5 0.101449 1.90631e-06 1.39644e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| lifting the ban ||| 0.0434783 0.122289 1.90631e-06 8.918e-11 2.718 ||| 0-1 ||| 23 524574 +los ||| lifting the ||| 0.0052356 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-1 ||| 191 524574 +los ||| light of the ||| 0.00339751 0.122289 1.14379e-05 4.05298e-06 2.718 ||| 0-2 ||| 1766 524574 +los ||| light on the ||| 0.0217391 0.122289 5.71893e-06 4.98831e-07 2.718 ||| 0-2 ||| 138 524574 +los ||| like any ||| 0.00956938 0.0178119 3.81262e-06 1.64022e-06 2.718 ||| 0-1 ||| 209 524574 +los ||| like fish ||| 1 0.0906807 1.90631e-06 6.23341e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| like many others ||| 0.0120482 0.0378884 1.90631e-06 2.42715e-10 2.718 ||| 0-1 0-2 ||| 83 524574 +los ||| like my colleagues ||| 0.0188679 0.0749603 1.90631e-06 8.90595e-10 2.718 ||| 0-2 ||| 53 524574 +los ||| like other tourist ||| 1 0.0121951 1.90631e-06 2.0246e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| like stating the ||| 1 0.122289 1.90631e-06 1.78257e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| like the chatter ||| 1 0.122289 1.90631e-06 3.04713e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| like the ||| 0.0037843 0.122289 2.28757e-05 0.000761783 2.718 ||| 0-1 ||| 3171 524574 +los ||| like these ||| 0.00636943 0.0240362 1.90631e-06 4.32876e-06 2.718 ||| 0-1 ||| 157 524574 +los ||| like those ||| 0.0149254 0.284705 7.62523e-06 2.96533e-05 2.718 ||| 0-1 ||| 268 524574 +los ||| like to consider the ||| 1 0.122289 1.90631e-06 1.07696e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| like to give him my very firm ||| 0.5 0.0086409 1.90631e-06 2.69863e-21 2.718 ||| 0-4 ||| 2 524574 +los ||| like to give him my very ||| 0.5 0.0086409 1.90631e-06 7.35322e-17 2.718 ||| 0-4 ||| 2 524574 +los ||| like to give him my ||| 0.333333 0.0086409 1.90631e-06 2.1133e-14 2.718 ||| 0-4 ||| 3 524574 +los ||| like to make the ||| 0.0666667 0.122289 1.90631e-06 1.17633e-07 2.718 ||| 0-3 ||| 15 524574 +los ||| like to start by thanking the rapporteur ||| 0.142857 0.122289 1.90631e-06 2.17704e-20 2.718 ||| 0-5 ||| 7 524574 +los ||| like to start by thanking the ||| 0.0833333 0.122289 1.90631e-06 3.01112e-16 2.718 ||| 0-5 ||| 12 524574 +los ||| like to thank the ||| 0.00243902 0.122289 1.90631e-06 7.16168e-09 2.718 ||| 0-3 ||| 410 524574 +los ||| like-minded ||| 0.0204082 0.0721649 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 49 524574 +los ||| limit the ||| 0.00469484 0.122289 5.71893e-06 2.08473e-05 2.718 ||| 0-1 ||| 639 524574 +los ||| limit values ||| 0.00153139 0.161479 1.90631e-06 7.94318e-08 2.718 ||| 0-1 ||| 653 524574 +los ||| limitation here ||| 1 0.0217865 1.90631e-06 1.96697e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| limitation ||| 0.0033557 0.0217865 3.81262e-06 9.7e-06 2.718 ||| 0-0 ||| 596 524574 +los ||| limited funding ||| 0.04 0.031089 1.90631e-06 1.3012e-08 2.718 ||| 0-1 ||| 25 524574 +los ||| limited ||| 0.000217391 0.0002042 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 4600 524574 +los ||| limits , or ||| 0.5 0.0859692 1.90631e-06 4.21575e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| limits , ||| 0.0150376 0.0859692 3.81262e-06 3.68736e-05 2.718 ||| 0-0 ||| 133 524574 +los ||| limits ||| 0.00270433 0.0859692 1.71568e-05 0.0003092 2.718 ||| 0-0 ||| 3328 524574 +los ||| line and add up the pros and ||| 1 0.122289 1.90631e-06 7.75762e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| line and add up the pros ||| 1 0.122289 1.90631e-06 6.19327e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| line and add up the ||| 1 0.122289 1.90631e-06 4.42376e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| line the ||| 0.107143 0.122289 5.71893e-06 0.000126285 2.718 ||| 0-1 ||| 28 524574 +los ||| line to join the EU ||| 1 0.122289 1.90631e-06 2.59851e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| line to join the ||| 1 0.122289 1.90631e-06 5.25163e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| line with costs ||| 0.5 0.214442 1.90631e-06 5.21276e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| line with the ||| 0.00234192 0.122289 7.62523e-06 8.07528e-07 2.718 ||| 0-2 ||| 1708 524574 +los ||| line with those ||| 0.0212766 0.284705 1.90631e-06 3.14339e-08 2.718 ||| 0-2 ||| 47 524574 +los ||| line with ||| 0.000305437 0.0007437 1.90631e-06 6.81242e-08 2.718 ||| 0-1 ||| 3274 524574 +los ||| lines of those ||| 0.0666667 0.284705 1.90631e-06 8.26051e-08 2.718 ||| 0-2 ||| 15 524574 +los ||| lining their ||| 0.2 0.0236713 1.90631e-06 5.03294e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| linked to the salaries of members of ||| 1 0.122289 1.90631e-06 2.49439e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| linked to the salaries of members ||| 1 0.122289 1.90631e-06 4.58831e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| linked to the salaries of ||| 1 0.122289 1.90631e-06 3.11072e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| linked to the salaries ||| 1 0.122289 1.90631e-06 5.72202e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| linked to the ||| 0.00102775 0.122289 1.90631e-06 1.58945e-06 2.718 ||| 0-2 ||| 973 524574 +los ||| linked with those ||| 0.333333 0.284705 1.90631e-06 4.45243e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| links between ||| 0.00245098 0.0424513 1.90631e-06 1.31674e-08 2.718 ||| 0-0 0-1 ||| 408 524574 +los ||| links the ||| 0.0227273 0.122289 1.90631e-06 5.10458e-06 2.718 ||| 0-1 ||| 44 524574 +los ||| links ||| 0.00330657 0.0836969 1.33442e-05 0.0002051 2.718 ||| 0-0 ||| 2117 524574 +los ||| liquid ||| 0.00568182 0.0259067 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 176 524574 +los ||| liquidity ||| 0.00217391 0.0023474 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 460 524574 +los ||| list of ||| 0.000392465 0.0019787 1.90631e-06 2.41786e-07 2.718 ||| 0-1 ||| 2548 524574 +los ||| list the ||| 0.0333333 0.122289 5.71893e-06 3.13567e-05 2.718 ||| 0-1 ||| 90 524574 +los ||| listed the ||| 0.03125 0.122289 1.90631e-06 4.63273e-06 2.718 ||| 0-1 ||| 32 524574 +los ||| listening to people here actually trying ||| 1 0.0894672 1.90631e-06 8.50261e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| listening to people here actually ||| 1 0.0894672 1.90631e-06 7.38074e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| listening to people here ||| 1 0.0894672 1.90631e-06 1.78797e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| listening to people ||| 0.25 0.0894672 1.90631e-06 8.81729e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| listing services , trading ||| 1 0.272175 1.90631e-06 5.47664e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| listing services , ||| 1 0.272175 1.90631e-06 3.99755e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| listing services ||| 0.5 0.272175 1.90631e-06 3.35211e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| listing the ||| 0.015625 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-1 ||| 64 524574 +los ||| litigation - ||| 0.5 0.138728 1.90631e-06 8.78899e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| litigation ||| 0.00598802 0.138728 1.90631e-06 2.33e-05 2.718 ||| 0-0 ||| 167 524574 +los ||| little bit like stating the ||| 1 0.122289 1.90631e-06 2.2857e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| little by way ||| 0.25 0.0062464 1.90631e-06 5.65297e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| little by ||| 0.0125 0.0062464 1.90631e-06 2.62246e-07 2.718 ||| 0-1 ||| 80 524574 +los ||| little children , little ||| 1 0.293415 1.90631e-06 1.72382e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| little children , ||| 0.166667 0.293415 1.90631e-06 1.06474e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| little children ||| 0.0588235 0.293415 1.90631e-06 8.9283e-07 2.718 ||| 0-1 ||| 17 524574 +los ||| little in the way of compliance ||| 1 0.122289 1.90631e-06 4.00657e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| little in the way of ||| 0.05 0.122289 1.90631e-06 1.74199e-10 2.718 ||| 0-2 ||| 20 524574 +los ||| little in the way ||| 0.0344828 0.122289 1.90631e-06 3.2043e-09 2.718 ||| 0-2 ||| 29 524574 +los ||| little in the ||| 0.0277778 0.122289 1.90631e-06 1.4865e-06 2.718 ||| 0-2 ||| 36 524574 +los ||| little patience with the lack of ||| 0.5 0.122289 1.90631e-06 3.22927e-18 2.718 ||| 0-3 ||| 2 524574 +los ||| little patience with the lack ||| 0.5 0.122289 1.90631e-06 5.94009e-17 2.718 ||| 0-3 ||| 2 524574 +los ||| little patience with the ||| 0.5 0.122289 1.90631e-06 4.88494e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| little the position ||| 0.125 0.122289 1.90631e-06 2.28692e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| little the ||| 0.0714286 0.122289 1.90631e-06 6.9448e-05 2.718 ||| 0-1 ||| 14 524574 +los ||| live animal ||| 0.0344828 0.0868155 1.90631e-06 2.69705e-09 2.718 ||| 0-0 0-1 ||| 29 524574 +los ||| live animals ||| 0.00414938 0.273985 1.90631e-06 1.78567e-07 2.718 ||| 0-1 ||| 241 524574 +los ||| live cattle ||| 0.0136986 0.0691025 1.90631e-06 8.52768e-09 2.718 ||| 0-1 ||| 73 524574 +los ||| live up to the ||| 0.0227273 0.122289 3.81262e-06 1.31036e-08 2.718 ||| 0-3 ||| 88 524574 +los ||| live ||| 0.000211193 0.0003167 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 4735 524574 +los ||| lively , ||| 0.0384615 0.00271 1.90631e-06 1.19255e-07 2.718 ||| 0-0 ||| 26 524574 +los ||| lively ||| 0.00314465 0.00271 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 318 524574 +los ||| lives of ||| 0.00115473 0.0019787 1.90631e-06 1.70341e-07 2.718 ||| 0-1 ||| 866 524574 +los ||| lives the ||| 0.333333 0.122289 1.90631e-06 2.20912e-05 2.718 ||| 0-1 ||| 3 524574 +los ||| livestock ||| 0.00248139 0.0222222 3.81262e-06 2.24e-05 2.718 ||| 0-0 ||| 806 524574 +los ||| living , the ||| 0.25 0.122289 1.90631e-06 4.28679e-06 2.718 ||| 0-2 ||| 4 524574 +los ||| living expenses ||| 0.333333 0.251738 1.90631e-06 2.65646e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| living up to the ||| 0.1 0.122289 1.90631e-06 1.08936e-08 2.718 ||| 0-3 ||| 10 524574 +los ||| living ||| 0.000847937 0.0011008 1.14379e-05 6.8e-06 2.718 ||| 0-0 ||| 7076 524574 +los ||| loan finance , ||| 1 0.0048977 1.90631e-06 8.46112e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| loan finance ||| 0.2 0.0048977 1.90631e-06 7.095e-11 2.718 ||| 0-1 ||| 5 524574 +los ||| loans ||| 0.00198282 0.194849 5.71893e-06 0.0003383 2.718 ||| 0-0 ||| 1513 524574 +los ||| lobbying ||| 0.0033389 0.111738 3.81262e-06 9.63e-05 2.718 ||| 0-0 ||| 599 524574 +los ||| lobbyists ||| 0.00147493 0.21129 1.90631e-06 0.0002547 2.718 ||| 0-0 ||| 678 524574 +los ||| local and ||| 0.00111607 0.0190862 1.90631e-06 2.34986e-06 2.718 ||| 0-0 ||| 896 524574 +los ||| local authorities ||| 0.00074184 0.0190862 1.90631e-06 1.24942e-08 2.718 ||| 0-0 ||| 1348 524574 +los ||| local authority ||| 0.00606061 0.0190862 1.90631e-06 7.973e-09 2.718 ||| 0-0 ||| 165 524574 +los ||| local environmental projects need our support . ||| 1 0.0151175 1.90631e-06 1.14534e-24 2.718 ||| 0-1 ||| 1 524574 +los ||| local environmental projects need our support ||| 1 0.0151175 1.90631e-06 3.78124e-22 2.718 ||| 0-1 ||| 1 524574 +los ||| local environmental projects need our ||| 1 0.0151175 1.90631e-06 1.10595e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| local environmental projects need ||| 1 0.0151175 1.90631e-06 8.0176e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| local environmental projects ||| 1 0.0151175 1.90631e-06 8.74425e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| local environmental ||| 0.142857 0.0151175 1.90631e-06 1.77368e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| local municipal ||| 0.5 0.0190862 1.90631e-06 1.08808e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| local ||| 0.0059596 0.0190862 0.000112472 0.0001876 2.718 ||| 0-0 ||| 9900 524574 +los ||| locally ||| 0.00527705 0.0072464 3.81262e-06 4.9e-06 2.718 ||| 0-0 ||| 379 524574 +los ||| locate the ||| 0.027027 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-1 ||| 37 524574 +los ||| logos ||| 0.030303 0.146342 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 33 524574 +los ||| long as the ||| 0.015873 0.122289 3.81262e-06 1.48082e-06 2.718 ||| 0-2 ||| 126 524574 +los ||| long time ||| 0.00121655 4.75e-05 1.90631e-06 1.6417e-09 2.718 ||| 0-0 ||| 822 524574 +los ||| long ||| 8.60882e-05 4.75e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 11616 524574 +los ||| long-distance ||| 0.00555556 0.0149701 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 180 524574 +los ||| long-term commitment for the whole of ||| 1 0.0619123 1.90631e-06 1.66171e-17 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| long-term commitment for the whole ||| 1 0.0619123 1.90631e-06 3.05663e-16 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| long-term commitment for the ||| 1 0.0619123 1.90631e-06 5.40328e-13 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| longer concentrated ||| 0.125 0.0064865 1.90631e-06 1.0875e-09 2.718 ||| 0-1 ||| 8 524574 +los ||| longer work ||| 0.166667 0.0006501 1.90631e-06 6.5625e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| look after the ||| 0.0138889 0.122289 1.90631e-06 3.3886e-08 2.718 ||| 0-2 ||| 72 524574 +los ||| look ahead at the ||| 1 0.122289 1.90631e-06 5.70719e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| look at the ||| 0.00426829 0.122289 1.33442e-05 5.23596e-07 2.718 ||| 0-2 ||| 1640 524574 +los ||| look into the ||| 0.00462963 0.122289 1.90631e-06 1.28379e-07 2.718 ||| 0-2 ||| 216 524574 +los ||| look the ||| 0.0869565 0.122289 3.81262e-06 0.000125041 2.718 ||| 0-1 ||| 23 524574 +los ||| looked after the ||| 0.25 0.122289 1.90631e-06 5.39387e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| looked behind the scenes will ||| 0.25 0.122289 1.90631e-06 7.25126e-17 2.718 ||| 0-2 ||| 4 524574 +los ||| looked behind the scenes ||| 0.25 0.122289 1.90631e-06 8.38179e-15 2.718 ||| 0-2 ||| 4 524574 +los ||| looked behind the ||| 0.25 0.122289 1.90631e-06 1.78336e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| looking at the figures , there ||| 1 0.122289 1.90631e-06 3.20253e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| looking at the figures , ||| 0.333333 0.122289 1.90631e-06 1.04477e-12 2.718 ||| 0-2 ||| 3 524574 +los ||| looking at the figures ||| 0.111111 0.122289 1.90631e-06 8.76081e-12 2.718 ||| 0-2 ||| 9 524574 +los ||| looking at the ||| 0.00846024 0.122289 9.53154e-06 1.90039e-07 2.718 ||| 0-2 ||| 591 524574 +los ||| looking at water burning ||| 0.333333 0.0012884 1.90631e-06 2.43621e-17 2.718 ||| 0-2 ||| 3 524574 +los ||| looking at water ||| 0.333333 0.0012884 1.90631e-06 5.18341e-12 2.718 ||| 0-2 ||| 3 524574 +los ||| looking for courses ||| 1 0.129323 1.90631e-06 6.79791e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| loopholes for ||| 0.0666667 0.0015353 1.90631e-06 1.23452e-09 2.718 ||| 0-1 ||| 15 524574 +los ||| loose at the ||| 1 0.122289 1.90631e-06 1.0418e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| loose ||| 0.00884956 0.0230415 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 113 524574 +los ||| lorries ||| 0.0035461 0.237553 3.81262e-06 0.0001624 2.718 ||| 0-0 ||| 564 524574 +los ||| lorry drivers ||| 0.008 0.386864 1.90631e-06 2.06624e-09 2.718 ||| 0-1 ||| 125 524574 +los ||| lose all ||| 0.0166667 0.0177928 1.90631e-06 8.89827e-08 2.718 ||| 0-1 ||| 60 524574 +los ||| lose more farmers from ||| 0.5 0.380089 1.90631e-06 5.97808e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| lose more farmers ||| 0.5 0.380089 1.90631e-06 3.71217e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| lose sight of the ||| 0.00465116 0.122289 1.90631e-06 1.77533e-11 2.718 ||| 0-3 ||| 215 524574 +los ||| lose the ||| 0.0117647 0.122289 1.90631e-06 1.41985e-05 2.718 ||| 0-1 ||| 85 524574 +los ||| lose their jobs ||| 0.0105263 0.0236713 1.90631e-06 3.92244e-12 2.718 ||| 0-1 ||| 95 524574 +los ||| lose their ||| 0.00380228 0.0236713 1.90631e-06 7.57229e-08 2.718 ||| 0-1 ||| 263 524574 +los ||| losses of ||| 0.0128205 0.0019787 1.90631e-06 2.74531e-08 2.718 ||| 0-1 ||| 78 524574 +los ||| losses ||| 0.000967118 0.0035569 3.81262e-06 6.8e-06 2.718 ||| 0-0 ||| 2068 524574 +los ||| lost the initiative ||| 0.5 0.122289 1.90631e-06 1.52792e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| lost the ||| 0.016 0.122289 3.81262e-06 2.44076e-05 2.718 ||| 0-1 ||| 125 524574 +los ||| lot of the ||| 0.00900901 0.122289 1.90631e-06 3.01292e-06 2.718 ||| 0-2 ||| 111 524574 +los ||| lot of ||| 0.000543183 0.0019787 1.90631e-06 4.27342e-07 2.718 ||| 0-1 ||| 1841 524574 +los ||| low ||| 0.000489836 0.0075154 3.81262e-06 3.21e-05 2.718 ||| 0-0 ||| 4083 524574 +los ||| low-frequency ||| 0.176471 0.102564 5.71893e-06 3.9e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| lower ||| 0.00104493 0.0021903 5.71893e-06 8.8e-06 2.718 ||| 0-0 ||| 2871 524574 +los ||| lowering ||| 0.00229358 0.0023095 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 436 524574 +los ||| luggage ||| 0.00729927 0.0540541 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 137 524574 +los ||| machine guns against everybody ||| 0.5 0.0663194 1.90631e-06 3.59781e-19 2.718 ||| 0-3 ||| 2 524574 +los ||| machines ||| 0.00355872 0.0131926 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 281 524574 +los ||| mad by ||| 0.5 0.0062464 1.90631e-06 8.74692e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| made against the background ||| 1 0.122289 1.90631e-06 5.70306e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| made against the ||| 0.0434783 0.122289 1.90631e-06 2.14401e-07 2.718 ||| 0-2 ||| 23 524574 +los ||| made at European Councils and summits ||| 1 0.108999 1.90631e-06 8.90745e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| made at European Councils and ||| 1 0.108999 1.90631e-06 3.07154e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| made at European Councils ||| 1 0.108999 1.90631e-06 2.45215e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| made between the ||| 0.0625 0.122289 1.90631e-06 2.37045e-07 2.718 ||| 0-2 ||| 16 524574 +los ||| made by others ||| 0.0625 0.0062464 1.90631e-06 3.29815e-10 2.718 ||| 0-1 ||| 16 524574 +los ||| made by the ||| 0.00111732 0.122289 3.81262e-06 4.71762e-06 2.718 ||| 0-2 ||| 1790 524574 +los ||| made by ||| 0.000251762 0.0062464 1.90631e-06 3.39316e-06 2.718 ||| 0-1 ||| 3972 524574 +los ||| made good the ||| 0.333333 0.122289 1.90631e-06 4.66002e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| made in the ||| 0.00371747 0.122289 5.71893e-06 1.92336e-05 2.718 ||| 0-2 ||| 807 524574 +los ||| made of the ||| 0.01875 0.122289 5.71893e-06 4.88503e-05 2.718 ||| 0-2 ||| 160 524574 +los ||| made public ||| 0.00458716 0.0160961 1.90631e-06 1.23635e-06 2.718 ||| 0-1 ||| 218 524574 +los ||| made strong efforts ||| 1 0.101547 1.90631e-06 3.01916e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| made the provision ||| 1 0.122289 1.90631e-06 1.06751e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| made the ||| 0.00977654 0.122289 1.33442e-05 0.000898578 2.718 ||| 0-1 ||| 716 524574 +los ||| made them any ||| 0.5 0.038218 1.90631e-06 6.37543e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| made them ||| 0.05 0.038218 3.81262e-06 4.21599e-06 2.718 ||| 0-1 ||| 40 524574 +los ||| made throughout the duration ||| 1 0.122289 1.90631e-06 2.97582e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| made throughout the ||| 0.25 0.122289 1.90631e-06 3.58532e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| made to achieve eligibility ||| 1 0.0829016 1.90631e-06 1.98629e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| made to the ||| 0.00215054 0.122289 1.90631e-06 7.9846e-05 2.718 ||| 0-2 ||| 465 524574 +los ||| made to us that the ||| 1 0.122289 1.90631e-06 3.87119e-09 2.718 ||| 0-4 ||| 1 524574 +los ||| made up of the ||| 0.0285714 0.122289 1.90631e-06 1.66604e-07 2.718 ||| 0-3 ||| 35 524574 +los ||| main sufferers ||| 0.333333 0.224138 1.90631e-06 7.55726e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| mainly on the ||| 0.0119048 0.122289 1.90631e-06 1.34323e-07 2.718 ||| 0-2 ||| 84 524574 +los ||| mainly the ||| 0.0172414 0.122289 3.81262e-06 2.00752e-05 2.718 ||| 0-1 ||| 116 524574 +los ||| mainstream ' the ||| 1 0.0833685 1.90631e-06 8.21414e-09 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| mainstream ||| 0.00413223 0.0103896 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 242 524574 +los ||| maintain files ||| 1 0.14881 1.90631e-06 2.22102e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| maintain the fundamental ||| 1 0.108248 1.90631e-06 2.90462e-08 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| maintain the ||| 0.000972763 0.122289 1.90631e-06 1.96033e-05 2.718 ||| 0-1 ||| 1028 524574 +los ||| maintaining a ||| 0.00454545 0.0014514 1.90631e-06 1.72871e-07 2.718 ||| 0-0 ||| 220 524574 +los ||| maintaining the ||| 0.00314961 0.122289 3.81262e-06 7.72121e-06 2.718 ||| 0-1 ||| 635 524574 +los ||| maintaining ||| 0.00103306 0.0014514 5.71893e-06 3.9e-06 2.718 ||| 0-0 ||| 2904 524574 +los ||| maintenance ||| 0.000717875 0.0017559 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1393 524574 +los ||| major boost ||| 0.0625 0.0097205 1.90631e-06 2.55694e-09 2.718 ||| 0-0 ||| 16 524574 +los ||| major growth ||| 0.0909091 0.0097205 1.90631e-06 7.12396e-09 2.718 ||| 0-0 ||| 11 524574 +los ||| major information ||| 0.25 0.0097205 1.90631e-06 2.44609e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| major issues ||| 0.004329 0.0401532 1.90631e-06 1.08513e-07 2.718 ||| 0-1 ||| 231 524574 +los ||| major procedural ||| 0.166667 0.0361861 1.90631e-06 5.93384e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| major ||| 0.000901365 0.0097205 2.66883e-05 0.0001478 2.718 ||| 0-0 ||| 15532 524574 +los ||| make a check of those ||| 1 0.284705 1.90631e-06 2.13965e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| make any ||| 0.00327869 0.0178119 1.90631e-06 1.60503e-06 2.718 ||| 0-1 ||| 305 524574 +los ||| make bio diesel ||| 1 0.0053191 1.90631e-06 5.54358e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| make clear our ||| 0.166667 0.0248369 1.90631e-06 2.06593e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| make human ||| 0.5 0.319795 1.90631e-06 3.38967e-05 2.718 ||| 0-1 ||| 2 524574 +los ||| make it our ||| 0.0833333 0.0248369 1.90631e-06 1.1036e-07 2.718 ||| 0-2 ||| 12 524574 +los ||| make it possible ||| 0.00181818 0.0019339 1.90631e-06 2.19416e-09 2.718 ||| 0-2 ||| 550 524574 +los ||| make it work ||| 0.0238095 0.0006501 1.90631e-06 1.08163e-09 2.718 ||| 0-2 ||| 42 524574 +los ||| make matters ||| 0.0277778 0.0584903 1.90631e-06 1.23853e-06 2.718 ||| 0-1 ||| 36 524574 +los ||| make new agreements about the ||| 0.25 0.122289 1.90631e-06 2.33782e-14 2.718 ||| 0-4 ||| 4 524574 +los ||| make our ||| 0.00322581 0.0248369 1.90631e-06 6.20586e-06 2.718 ||| 0-1 ||| 310 524574 +los ||| make progress ||| 0.00164609 0.0392854 3.81262e-06 1.47504e-06 2.718 ||| 0-1 ||| 1215 524574 +los ||| make the headlines ||| 0.0909091 0.122289 1.90631e-06 2.68358e-09 2.718 ||| 0-1 ||| 11 524574 +los ||| make the ||| 0.015257 0.122289 8.76902e-05 0.00074544 2.718 ||| 0-1 ||| 3015 524574 +los ||| make them heard ||| 1 0.038218 1.90631e-06 2.77002e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| make them ||| 0.00764818 0.038218 7.62523e-06 3.4975e-06 2.718 ||| 0-1 ||| 523 524574 +los ||| make those who have ||| 0.25 0.284705 1.90631e-06 3.06088e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| make those who ||| 0.0555556 0.284705 1.90631e-06 2.55931e-08 2.718 ||| 0-1 ||| 18 524574 +los ||| make those ||| 0.0142857 0.284705 1.90631e-06 2.90171e-05 2.718 ||| 0-1 ||| 70 524574 +los ||| make ||| 3.55417e-05 3.35e-05 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 28136 524574 +los ||| makers ||| 0.0243902 0.246468 1.14379e-05 0.0001526 2.718 ||| 0-0 ||| 246 524574 +los ||| makes mention of the ||| 0.333333 0.122289 1.90631e-06 3.85109e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| makes provision for publishing the ||| 1 0.122289 1.90631e-06 2.1294e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| makes the most of ||| 0.2 0.122289 1.90631e-06 1.71239e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| makes the most ||| 0.1 0.122289 1.90631e-06 3.14986e-08 2.718 ||| 0-1 ||| 10 524574 +los ||| makes the provisions ||| 0.333333 0.122289 1.90631e-06 5.74292e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| makes the ||| 0.00561798 0.122289 5.71893e-06 7.28797e-05 2.718 ||| 0-1 ||| 534 524574 +los ||| making a ||| 0.00111982 0.0008262 1.90631e-06 6.47157e-07 2.718 ||| 0-0 ||| 893 524574 +los ||| making agencies ||| 1 0.0227727 1.90631e-06 4.26248e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| making its mind known on every ||| 1 0.0211371 1.90631e-06 2.4799e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| making its mind known on ||| 1 0.0211371 1.90631e-06 1.52422e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| making its mind known ||| 1 0.0211371 1.90631e-06 2.27801e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| making its mind ||| 1 0.0211371 1.90631e-06 2.06904e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| making its ||| 0.015625 0.0211371 1.90631e-06 8.21373e-07 2.718 ||| 0-1 ||| 64 524574 +los ||| making progress ||| 0.00286533 0.0392854 1.90631e-06 3.26533e-07 2.718 ||| 0-1 ||| 349 524574 +los ||| making the Member States ' ||| 1 0.0444479 1.90631e-06 3.08915e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| making the implementation of the programme more ||| 1 0.122289 1.90631e-06 1.24505e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| making the implementation of the programme ||| 1 0.122289 1.90631e-06 5.45189e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| making the implementation of the ||| 1 0.122289 1.90631e-06 4.27935e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| making the implementation of ||| 1 0.122289 1.90631e-06 6.97056e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| making the implementation ||| 1 0.122289 1.90631e-06 1.2822e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| making the ||| 0.00260643 0.122289 5.71893e-06 0.000165019 2.718 ||| 0-1 ||| 1151 524574 +los ||| making them public ||| 0.125 0.0160961 1.90631e-06 6.09039e-10 2.718 ||| 0-2 ||| 8 524574 +los ||| making ||| 0.000785615 0.0008262 1.71568e-05 1.46e-05 2.718 ||| 0-0 ||| 11456 524574 +los ||| male and female ||| 0.0144928 0.0575397 1.90631e-06 6.49944e-12 2.718 ||| 0-0 ||| 69 524574 +los ||| male and ||| 0.0133333 0.0575397 1.90631e-06 3.5323e-07 2.718 ||| 0-0 ||| 75 524574 +los ||| male or ||| 0.0909091 0.0575397 1.90631e-06 3.22411e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| male passengers ||| 0.25 0.410842 1.90631e-06 1.9797e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| male ||| 0.0128866 0.0575397 9.53154e-06 2.82e-05 2.718 ||| 0-0 ||| 388 524574 +los ||| malicious ||| 0.0185185 0.0121951 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 54 524574 +los ||| man 's ||| 0.025 0.0349814 1.90631e-06 3.90303e-07 2.718 ||| 0-1 ||| 40 524574 +los ||| man in the ||| 0.0227273 0.122289 1.90631e-06 5.84868e-07 2.718 ||| 0-2 ||| 44 524574 +los ||| managed to maintain the fundamental ||| 1 0.108248 1.90631e-06 1.44794e-13 2.718 ||| 0-3 0-4 ||| 1 524574 +los ||| management decisions ||| 0.0526316 0.0016291 1.90631e-06 1.25895e-09 2.718 ||| 0-0 ||| 19 524574 +los ||| management of the recovery of ||| 1 0.122289 1.90631e-06 7.40205e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| management of the recovery ||| 1 0.122289 1.90631e-06 1.36157e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| management of the ||| 0.00160772 0.122289 1.90631e-06 1.02374e-06 2.718 ||| 0-2 ||| 622 524574 +los ||| management of ||| 0.000458505 0.0019787 1.90631e-06 1.45204e-07 2.718 ||| 0-1 ||| 2181 524574 +los ||| management ||| 0.00054057 0.0016291 1.90631e-05 1.65e-05 2.718 ||| 0-0 ||| 18499 524574 +los ||| managerial ||| 0.00617284 0.0507246 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 162 524574 +los ||| managers ||| 0.00890208 0.315451 1.14379e-05 0.0002858 2.718 ||| 0-0 ||| 674 524574 +los ||| managing to create the ||| 1 0.122289 1.90631e-06 4.03438e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| mandated by the Council ||| 0.0909091 0.122289 1.90631e-06 5.45134e-13 2.718 ||| 0-2 ||| 11 524574 +los ||| mandated by the ||| 0.0357143 0.122289 1.90631e-06 1.57644e-09 2.718 ||| 0-2 ||| 28 524574 +los ||| manner of crops ||| 0.2 0.0019787 1.90631e-06 1.09002e-11 2.718 ||| 0-1 ||| 5 524574 +los ||| manner of the ||| 0.117647 0.122289 3.81262e-06 4.54736e-06 2.718 ||| 0-2 ||| 17 524574 +los ||| manner of ||| 0.0132743 0.0019787 5.71893e-06 6.44982e-07 2.718 ||| 0-1 ||| 226 524574 +los ||| manners like everyone else ||| 0.5 0.111111 1.90631e-06 6.91053e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| manners like everyone ||| 0.5 0.111111 1.90631e-06 5.85639e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| manners like ||| 0.5 0.111111 1.90631e-06 8.70191e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| manners ||| 0.0454545 0.111111 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 22 524574 +los ||| manufacturers construct ||| 1 0.357046 1.90631e-06 2.24378e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| manufacturers prefer the option ||| 0.5 0.122289 1.90631e-06 3.3628e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| manufacturers prefer the ||| 0.5 0.122289 1.90631e-06 8.12272e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| manufacturers ||| 0.00176056 0.357046 7.62523e-06 0.0010199 2.718 ||| 0-0 ||| 2272 524574 +los ||| many EU nationals their ||| 1 0.0236713 1.90631e-06 4.35232e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| many and of ||| 1 0.0029977 1.90631e-06 9.60151e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| many and ||| 0.00806452 0.0029977 1.90631e-06 1.76615e-06 2.718 ||| 0-0 ||| 124 524574 +los ||| many cases , the ||| 0.0212766 0.122289 1.90631e-06 2.24963e-09 2.718 ||| 0-3 ||| 47 524574 +los ||| many cases , ||| 0.00248756 0.136512 1.90631e-06 6.81449e-08 2.718 ||| 0-1 ||| 402 524574 +los ||| many cases ||| 0.00179856 0.136512 3.81262e-06 5.71423e-07 2.718 ||| 0-1 ||| 1112 524574 +los ||| many civilians ||| 0.1 0.149849 1.90631e-06 6.64286e-08 2.718 ||| 0-1 ||| 10 524574 +los ||| many countries ||| 0.000803213 0.0957208 1.90631e-06 2.86182e-06 2.718 ||| 0-1 ||| 1245 524574 +los ||| many different reasons ||| 0.0833333 0.0053114 1.90631e-06 3.71025e-12 2.718 ||| 0-1 ||| 12 524574 +los ||| many different ||| 0.00438596 0.0053114 1.90631e-06 3.66988e-08 2.718 ||| 0-1 ||| 228 524574 +los ||| many of the ||| 0.00167856 0.0424219 7.62523e-06 2.00053e-07 2.718 ||| 0-0 0-1 0-2 ||| 2383 524574 +los ||| many of them ||| 0.00170648 0.038218 1.90631e-06 3.75615e-08 2.718 ||| 0-2 ||| 586 524574 +los ||| many of us ||| 0.00122249 0.0019787 1.90631e-06 3.27274e-09 2.718 ||| 0-1 ||| 818 524574 +los ||| many of ||| 0.000280034 0.0029977 3.81262e-06 7.66532e-06 2.718 ||| 0-0 ||| 7142 524574 +los ||| many others ||| 0.00110742 0.0378884 1.90631e-06 1.36671e-07 2.718 ||| 0-0 0-1 ||| 903 524574 +los ||| many outstanding ||| 0.5 0.00754725 1.90631e-06 2.8764e-09 2.718 ||| 0-0 0-1 ||| 2 524574 +los ||| many people ||| 0.000504796 0.0029977 1.90631e-06 1.24108e-07 2.718 ||| 0-0 ||| 1981 524574 +los ||| many times , over a number ||| 1 0.0314168 1.90631e-06 1.08865e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| many times , over a ||| 1 0.0314168 1.90631e-06 2.20018e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| many times , over ||| 1 0.0314168 1.90631e-06 4.96365e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| many times , ||| 0.00666667 0.0314168 1.90631e-06 1.03087e-08 2.718 ||| 0-1 ||| 150 524574 +los ||| many times ||| 0.00114679 0.0314168 1.90631e-06 8.64429e-08 2.718 ||| 0-1 ||| 872 524574 +los ||| many very ||| 0.0454545 0.0029977 1.90631e-06 4.9061e-07 2.718 ||| 0-0 ||| 22 524574 +los ||| many ways ||| 0.00217391 0.0029977 1.90631e-06 1.35924e-08 2.718 ||| 0-0 ||| 460 524574 +los ||| many ||| 0.00181628 0.0029977 0.000162036 0.000141 2.718 ||| 0-0 ||| 46799 524574 +los ||| marginal ||| 0.00340136 0.002924 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 294 524574 +los ||| marginalised people ||| 0.166667 0.0061538 1.90631e-06 1.67238e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| marginalised ||| 0.00325733 0.0061538 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 307 524574 +los ||| margins ||| 0.00165837 0.0613599 1.90631e-06 3.6e-05 2.718 ||| 0-0 ||| 603 524574 +los ||| marine ||| 0.00516224 0.0130316 1.33442e-05 1.85e-05 2.718 ||| 0-0 ||| 1356 524574 +los ||| maritime borders ||| 0.015873 0.0026439 1.90631e-06 3.8016e-10 2.718 ||| 0-0 ||| 63 524574 +los ||| maritime ||| 0.000398248 0.0026439 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 2511 524574 +los ||| mark the ||| 0.013245 0.122289 3.81262e-06 2.32923e-05 2.718 ||| 0-1 ||| 151 524574 +los ||| marked the introduction ||| 0.166667 0.122289 1.90631e-06 7.04882e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| marked the ||| 0.00769231 0.122289 1.90631e-06 1.34263e-05 2.718 ||| 0-1 ||| 130 524574 +los ||| market exists where the consumer has an ||| 1 0.122289 1.90631e-06 1.10626e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| market exists where the consumer has ||| 1 0.122289 1.90631e-06 2.48895e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| market exists where the consumer ||| 1 0.122289 1.90631e-06 4.83527e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| market exists where the ||| 1 0.122289 1.90631e-06 1.63907e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| market expenditure ||| 0.0555556 0.174161 1.90631e-06 2.68081e-07 2.718 ||| 0-1 ||| 18 524574 +los ||| market has opened up ||| 1 0.0031618 1.90631e-06 6.38764e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| market no different ||| 1 0.0053114 1.90631e-06 1.88057e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| market to competition on the basis of ||| 1 0.122289 1.90631e-06 6.75411e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| market to competition on the basis ||| 1 0.122289 1.90631e-06 1.24239e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| market to competition on the ||| 1 0.122289 1.90631e-06 2.09226e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| markets ( ||| 0.0909091 0.239993 1.90631e-06 2.73793e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| markets - ||| 0.05 0.239993 1.90631e-06 1.0709e-05 2.718 ||| 0-0 ||| 20 524574 +los ||| markets . without ||| 1 0.239993 1.90631e-06 1.90045e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| markets . ||| 0.00182149 0.239993 1.90631e-06 8.59933e-06 2.718 ||| 0-0 ||| 549 524574 +los ||| markets ||| 0.00198282 0.239993 4.00325e-05 0.002839 2.718 ||| 0-0 ||| 10591 524574 +los ||| marks the ||| 0.00540541 0.122289 1.90631e-06 6.34855e-06 2.718 ||| 0-1 ||| 185 524574 +los ||| marriage between minors ||| 1 0.342991 1.90631e-06 2.02234e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| marriages and deaths ||| 0.25 0.276243 1.90631e-06 1.04707e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| marriages and ||| 0.0588235 0.276243 1.90631e-06 1.21752e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| marriages ||| 0.005 0.276243 1.90631e-06 9.72e-05 2.718 ||| 0-0 ||| 200 524574 +los ||| mass of ||| 0.0106383 0.00454875 1.90631e-06 6.11906e-08 2.718 ||| 0-0 0-1 ||| 94 524574 +los ||| mass ||| 0.00419815 0.0071188 1.90631e-05 1.85e-05 2.718 ||| 0-0 ||| 2382 524574 +los ||| mass-market products ||| 1 0.245259 1.90631e-06 2.00168e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| massive ||| 0.00204186 0.0023518 7.62523e-06 4.9e-06 2.718 ||| 0-0 ||| 1959 524574 +los ||| masters ' ||| 0.25 0.0753489 1.90631e-06 8.77668e-08 2.718 ||| 0-0 0-1 ||| 4 524574 +los ||| masters of the ||| 0.0833333 0.122289 1.90631e-06 3.26477e-08 2.718 ||| 0-2 ||| 12 524574 +los ||| material funds ||| 0.25 0.220459 1.90631e-06 1.05156e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| material ||| 0.000348189 0.0015032 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 2872 524574 +los ||| materially , the ||| 1 0.122289 1.90631e-06 2.0462e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| materials by ||| 0.5 0.0062464 1.90631e-06 2.26772e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| materials ||| 0.00235571 0.0588 1.14379e-05 0.0001429 2.718 ||| 0-0 ||| 2547 524574 +los ||| maternal ||| 0.0116279 0.0133333 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 86 524574 +los ||| maternity ||| 0.003003 0.0086831 1.90631e-06 1.17e-05 2.718 ||| 0-0 ||| 333 524574 +los ||| matter , the ||| 0.011236 0.122289 1.90631e-06 5.30734e-05 2.718 ||| 0-2 ||| 89 524574 +los ||| matter , would those ||| 0.5 0.284705 1.90631e-06 1.21244e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| matter for the ||| 0.00422833 0.122289 3.81262e-06 3.42046e-06 2.718 ||| 0-2 ||| 473 524574 +los ||| matter for ||| 0.00103306 0.0015353 1.90631e-06 9.14867e-07 2.718 ||| 0-1 ||| 968 524574 +los ||| matter of the ||| 0.00259067 0.122289 1.90631e-06 2.41943e-05 2.718 ||| 0-2 ||| 386 524574 +los ||| matter of ||| 0.000488998 0.0019787 3.81262e-06 3.43163e-06 2.718 ||| 0-1 ||| 4090 524574 +los ||| matter those ||| 1 0.284705 1.90631e-06 1.73238e-05 2.718 ||| 0-1 ||| 1 524574 +los ||| matters are being ||| 0.0909091 0.0584903 1.90631e-06 3.07733e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| matters are ||| 0.00543478 0.0584903 1.90631e-06 1.08136e-05 2.718 ||| 0-0 ||| 184 524574 +los ||| matters falling within ||| 0.166667 0.0584903 1.90631e-06 3.81505e-12 2.718 ||| 0-0 ||| 6 524574 +los ||| matters falling ||| 0.04 0.0584903 1.90631e-06 1.82451e-08 2.718 ||| 0-0 ||| 25 524574 +los ||| matters for themselves : ||| 1 0.0015353 1.90631e-06 2.36091e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| matters for themselves ||| 0.5 0.0015353 1.90631e-06 7.00983e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| matters for ||| 0.0102041 0.0015353 1.90631e-06 1.63133e-07 2.718 ||| 0-1 ||| 98 524574 +los ||| matters in ||| 0.00995025 0.0584903 3.81262e-06 1.5255e-05 2.718 ||| 0-0 ||| 201 524574 +los ||| matters of ||| 0.00295567 0.0302345 5.71893e-06 2.35733e-06 2.718 ||| 0-0 0-1 ||| 1015 524574 +los ||| matters that we ||| 0.25 0.0014565 1.90631e-06 2.71086e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| matters ||| 0.0025051 0.0584903 5.14703e-05 0.0007127 2.718 ||| 0-0 ||| 10778 524574 +los ||| maximum ||| 0.00029577 0.0008676 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 3381 524574 +los ||| may I now take the opportunity ||| 1 0.122289 1.90631e-06 1.35628e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| may I now take the ||| 1 0.122289 1.90631e-06 7.53906e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| may I say that the ||| 0.0526316 0.122289 1.90631e-06 3.65493e-11 2.718 ||| 0-4 ||| 19 524574 +los ||| may be of interest ||| 0.111111 0.0023774 1.90631e-06 2.15536e-11 2.718 ||| 0-3 ||| 9 524574 +los ||| may go the ||| 0.25 0.122289 1.90631e-06 1.8794e-07 2.718 ||| 0-2 ||| 4 524574 +los ||| may take the ||| 0.0454545 0.122289 1.90631e-06 5.17412e-07 2.718 ||| 0-2 ||| 22 524574 +los ||| me , the ||| 0.00869565 0.122289 1.90631e-06 3.08005e-05 2.718 ||| 0-2 ||| 115 524574 +los ||| me are the ||| 0.5 0.122289 1.90631e-06 3.91872e-06 2.718 ||| 0-2 ||| 2 524574 +los ||| me by the ||| 0.0714286 0.122289 1.90631e-06 1.35597e-06 2.718 ||| 0-2 ||| 14 524574 +los ||| me from reading the ||| 1 0.122289 1.90631e-06 1.19787e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| me give us every reason ||| 1 0.144232 1.90631e-06 8.02846e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| me give us every ||| 1 0.144232 1.90631e-06 3.43243e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| me list the ||| 0.25 0.122289 1.90631e-06 1.88799e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| me that the ||| 0.0204082 0.122289 1.90631e-06 4.34459e-06 2.718 ||| 0-2 ||| 49 524574 +los ||| me the ||| 0.00724638 0.122289 1.90631e-06 0.000258275 2.718 ||| 0-1 ||| 138 524574 +los ||| me to comment on the ||| 0.111111 0.122289 1.90631e-06 7.01756e-12 2.718 ||| 0-4 ||| 9 524574 +los ||| me with the ||| 0.142857 0.122289 1.90631e-06 1.65154e-06 2.718 ||| 0-2 ||| 7 524574 +los ||| mean our ||| 0.0833333 0.0248369 1.90631e-06 9.20272e-07 2.718 ||| 0-1 ||| 12 524574 +los ||| mean that the ||| 0.0026738 0.122289 1.90631e-06 1.85949e-06 2.718 ||| 0-2 ||| 374 524574 +los ||| mean the creation ||| 0.1 0.122289 1.90631e-06 5.12915e-09 2.718 ||| 0-1 ||| 10 524574 +los ||| mean the law ||| 0.25 0.122289 1.90631e-06 1.94886e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| mean the ||| 0.0162602 0.122289 1.14379e-05 0.000110542 2.718 ||| 0-1 ||| 369 524574 +los ||| meaning commitments ||| 0.125 0.115775 1.90631e-06 2.24023e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| meaning the ||| 0.027027 0.122289 1.90631e-06 1.31261e-05 2.718 ||| 0-1 ||| 37 524574 +los ||| means employers ||| 1 0.301873 1.90631e-06 4.96567e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| means of safeguarding ||| 0.2 0.003785 1.90631e-06 1.68807e-10 2.718 ||| 0-2 ||| 5 524574 +los ||| means of the farm ||| 1 0.122289 1.90631e-06 1.064e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| means of the ||| 0.0078534 0.122289 5.71893e-06 1.47777e-05 2.718 ||| 0-2 ||| 382 524574 +los ||| means of ||| 0.0012205 0.00194135 1.14379e-05 1.73649e-07 2.718 ||| 0-0 0-1 ||| 4916 524574 +los ||| means that none of the arguments put ||| 1 0.122289 1.90631e-06 1.3079e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| means that none of the arguments ||| 1 0.122289 1.90631e-06 1.1862e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| means that none of the ||| 0.333333 0.122289 1.90631e-06 4.92199e-12 2.718 ||| 0-4 ||| 3 524574 +los ||| means that the ||| 0.00549451 0.122289 1.14379e-05 4.57261e-06 2.718 ||| 0-2 ||| 1092 524574 +los ||| means the ||| 0.0117994 0.122289 7.62523e-06 0.00027183 2.718 ||| 0-1 ||| 339 524574 +los ||| means they ||| 0.0208333 0.0072404 1.90631e-06 5.18747e-07 2.718 ||| 0-1 ||| 48 524574 +los ||| means ||| 3.98549e-05 0.001904 1.90631e-06 5.25e-05 2.718 ||| 0-0 ||| 25091 524574 +los ||| meant that the ||| 0.0215054 0.122289 3.81262e-06 5.73651e-07 2.718 ||| 0-2 ||| 93 524574 +los ||| meantime , the ||| 0.0103093 0.122289 1.90631e-06 1.2533e-06 2.718 ||| 0-2 ||| 97 524574 +los ||| meanwhile the ||| 0.030303 0.122289 1.90631e-06 7.12067e-06 2.718 ||| 0-1 ||| 33 524574 +los ||| measure the ||| 0.00735294 0.122289 1.90631e-06 3.21288e-05 2.718 ||| 0-1 ||| 136 524574 +los ||| measure up ||| 0.0243902 0.0031618 1.90631e-06 1.58788e-08 2.718 ||| 0-1 ||| 41 524574 +los ||| measures , the ||| 0.0384615 0.122289 1.90631e-06 1.0584e-05 2.718 ||| 0-2 ||| 26 524574 +los ||| measures constituting ||| 1 0.0060976 1.90631e-06 2.069e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| measures ||| 4.77931e-05 4.67e-05 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 41847 524574 +los ||| measuring ||| 0.00502513 0.0640114 3.81262e-06 4.38e-05 2.718 ||| 0-0 ||| 398 524574 +los ||| mechanism - the ||| 0.333333 0.122289 1.90631e-06 3.31704e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| mechanisms develop ||| 1 0.144384 1.90631e-06 3.93883e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| mechanisms for the cooperation ||| 1 0.122289 1.90631e-06 2.06474e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| mechanisms for the ||| 0.047619 0.122289 1.90631e-06 2.24184e-08 2.718 ||| 0-2 ||| 21 524574 +los ||| mechanisms such as the EU ||| 1 0.122289 1.90631e-06 3.04704e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| mechanisms such as the ||| 0.125 0.122289 1.90631e-06 6.15813e-11 2.718 ||| 0-3 ||| 8 524574 +los ||| mechanisms ||| 0.00131184 0.144384 1.33442e-05 0.0006436 2.718 ||| 0-0 ||| 5336 524574 +los ||| media . ||| 0.00259067 0.139163 1.90631e-06 3.66055e-06 2.718 ||| 0-0 ||| 386 524574 +los ||| media attention ||| 0.0188679 0.139163 1.90631e-06 3.15781e-07 2.718 ||| 0-0 ||| 53 524574 +los ||| media comfort ||| 0.333333 0.139163 1.90631e-06 6.0425e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| media in the same way ||| 1 0.122289 1.90631e-06 4.58683e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| media in the same ||| 1 0.122289 1.90631e-06 2.12787e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| media in the ||| 0.025641 0.122289 1.90631e-06 2.6443e-07 2.718 ||| 0-2 ||| 39 524574 +los ||| media spotlight , blow themselves up ||| 0.0625 0.139163 1.90631e-06 1.15741e-20 2.718 ||| 0-0 ||| 16 524574 +los ||| media spotlight , blow themselves ||| 0.0625 0.139163 1.90631e-06 3.39366e-18 2.718 ||| 0-0 ||| 16 524574 +los ||| media spotlight , blow ||| 0.0625 0.139163 1.90631e-06 7.89774e-15 2.718 ||| 0-0 ||| 16 524574 +los ||| media spotlight , ||| 0.0555556 0.139163 1.90631e-06 5.76477e-10 2.718 ||| 0-0 ||| 18 524574 +los ||| media spotlight ||| 0.0384615 0.139163 1.90631e-06 4.834e-09 2.718 ||| 0-0 ||| 26 524574 +los ||| media ||| 0.00115562 0.139163 1.71568e-05 0.0012085 2.718 ||| 0-0 ||| 7788 524574 +los ||| medical ||| 0.0008726 0.0061865 3.81262e-06 1.36e-05 2.718 ||| 0-0 ||| 2292 524574 +los ||| medicated ||| 0.75 0.454545 5.71893e-06 4.9e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| medicinal ||| 0.00446429 0.0010799 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 224 524574 +los ||| medicines , on the market ||| 1 0.240938 1.90631e-06 7.29798e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| medicines , on the ||| 0.5 0.240938 1.90631e-06 3.22919e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| medicines , on ||| 0.333333 0.240938 1.90631e-06 5.25998e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| medicines , ||| 0.00490196 0.240938 1.90631e-06 7.86127e-05 2.718 ||| 0-0 ||| 204 524574 +los ||| medicines as additives ; ||| 1 0.240938 1.90631e-06 1.03592e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| medicines as additives ||| 1 0.240938 1.90631e-06 3.36337e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| medicines as ||| 0.222222 0.240938 3.81262e-06 6.72674e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| medicines ||| 0.0043956 0.240938 1.90631e-05 0.0006592 2.718 ||| 0-0 ||| 2275 524574 +los ||| meet : the ||| 1 0.122289 1.90631e-06 1.75679e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| meet again before the ||| 1 0.122289 1.90631e-06 7.54421e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| meet anyone else ||| 0.5 0.01311 1.90631e-06 4.07725e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| meet its ||| 0.00666667 0.0211371 1.90631e-06 2.59628e-07 2.718 ||| 0-1 ||| 150 524574 +los ||| meet the ||| 0.00744725 0.122289 3.43136e-05 5.21611e-05 2.718 ||| 0-1 ||| 2417 524574 +los ||| meet ||| 0.00142776 0.0026912 1.90631e-05 2.33e-05 2.718 ||| 0-0 ||| 7004 524574 +los ||| meeting our ||| 0.015625 0.0248369 1.90631e-06 4.4853e-07 2.718 ||| 0-1 ||| 64 524574 +los ||| meeting the ||| 0.0108696 0.122289 1.71568e-05 5.38769e-05 2.718 ||| 0-1 ||| 828 524574 +los ||| meeting ||| 7.99297e-05 0.0003472 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 12511 524574 +los ||| meets the ||| 0.00288184 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-1 ||| 347 524574 +los ||| member of the Commission . ||| 0.000492126 0.122289 1.90631e-06 6.87363e-12 2.718 ||| 0-2 ||| 2032 524574 +los ||| member of the Commission ||| 0.000472813 0.122289 1.90631e-06 2.26927e-09 2.718 ||| 0-2 ||| 2115 524574 +los ||| member of the ||| 0.00121892 0.122289 9.53154e-06 3.88508e-06 2.718 ||| 0-2 ||| 4102 524574 +los ||| member of ||| 0.000247158 0.0039566 1.90631e-06 1.63636e-06 2.718 ||| 0-0 ||| 4046 524574 +los ||| member ||| 0.00147354 0.0039566 2.09694e-05 3.01e-05 2.718 ||| 0-0 ||| 7465 524574 +los ||| members , who seek ||| 0.5 0.154615 1.90631e-06 1.45137e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| members , who ||| 0.0526316 0.154615 1.90631e-06 2.0883e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| members , ||| 0.0027027 0.154615 1.90631e-06 0.000236768 2.718 ||| 0-0 ||| 370 524574 +los ||| members find ||| 0.333333 0.154615 1.90631e-06 6.6094e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| members of our ||| 0.00943396 0.0248369 1.90631e-06 2.86355e-08 2.718 ||| 0-2 ||| 106 524574 +los ||| members of the public ||| 0.0141844 0.122289 3.81262e-06 5.5585e-10 2.718 ||| 0-2 ||| 141 524574 +los ||| members of the ||| 0.00892857 0.122289 6.86271e-05 3.43967e-06 2.718 ||| 0-2 ||| 4032 524574 +los ||| members of ||| 0.00270636 0.154615 2.28757e-05 0.000107934 2.718 ||| 0-0 ||| 4434 524574 +los ||| members represent the various ||| 0.5 0.122289 1.90631e-06 4.99198e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| members represent the ||| 0.5 0.122289 1.90631e-06 3.23315e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| members some ||| 0.5 0.154615 1.90631e-06 2.1627e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| members were not to ||| 1 0.154615 1.90631e-06 1.07898e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| members were not ||| 1 0.154615 1.90631e-06 1.21427e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| members were ||| 0.0769231 0.154615 1.90631e-06 3.55665e-06 2.718 ||| 0-0 ||| 13 524574 +los ||| members will be ||| 0.0588235 0.154615 1.90631e-06 3.11281e-07 2.718 ||| 0-0 ||| 17 524574 +los ||| members will ||| 0.037037 0.154615 1.90631e-06 1.71761e-05 2.718 ||| 0-0 ||| 27 524574 +los ||| members ||| 0.00689155 0.154615 0.000144879 0.0019854 2.718 ||| 0-0 ||| 11028 524574 +los ||| memories ||| 0.00591716 0.0336538 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 169 524574 +los ||| memory these days - ||| 1 0.0240362 1.90631e-06 6.73543e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| memory these days ||| 1 0.0240362 1.90631e-06 1.78559e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| memory these ||| 1 0.0240362 1.90631e-06 2.80313e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| men 's ||| 0.0175439 0.125811 1.90631e-06 9.78759e-06 2.718 ||| 0-0 0-1 ||| 57 524574 +los ||| men - to ||| 0.333333 0.21664 1.90631e-06 5.3542e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| men - ||| 0.0243902 0.21664 1.90631e-06 6.02555e-06 2.718 ||| 0-0 ||| 41 524574 +los ||| men ; the differences in pay ||| 1 0.122289 1.90631e-06 4.02732e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| men ; the differences in ||| 1 0.122289 1.90631e-06 2.81238e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| men ; the differences ||| 1 0.122289 1.90631e-06 1.31392e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| men ; the ||| 0.5 0.122289 1.90631e-06 5.61504e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| men and women can work alongside ||| 1 0.21664 1.90631e-06 8.36891e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| men and women can work ||| 1 0.21664 1.90631e-06 4.47536e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| men and women can ||| 0.0666667 0.21664 1.90631e-06 7.07007e-12 2.718 ||| 0-0 ||| 15 524574 +los ||| men and women ||| 0.00249066 0.21664 1.14379e-05 2.37705e-09 2.718 ||| 0-0 ||| 2409 524574 +los ||| men and ||| 0.00341945 0.21664 1.71568e-05 2.00089e-05 2.718 ||| 0-0 ||| 2632 524574 +los ||| men are not ||| 0.125 0.21664 1.90631e-06 8.27471e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| men are ||| 0.0144928 0.21664 1.90631e-06 2.42369e-05 2.718 ||| 0-0 ||| 69 524574 +los ||| men at sea ||| 0.5 0.21664 1.90631e-06 2e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| men at ||| 0.0909091 0.21664 1.90631e-06 6.68895e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| men effectively ||| 1 0.21664 1.90631e-06 1.14374e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| men ||| 0.00672495 0.21664 7.62523e-05 0.0015974 2.718 ||| 0-0 ||| 5948 524574 +los ||| mental health ||| 0.00203666 0.0074547 1.90631e-06 5.6508e-10 2.718 ||| 0-0 ||| 491 524574 +los ||| mental ||| 0.00126904 0.0074547 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 788 524574 +los ||| mention of the ||| 0.00675676 0.122289 1.90631e-06 2.26668e-06 2.718 ||| 0-2 ||| 148 524574 +los ||| mention the ||| 0.0126984 0.122289 2.28757e-05 4.16946e-05 2.718 ||| 0-1 ||| 945 524574 +los ||| mentioned , and that is the ||| 0.5 0.122289 1.90631e-06 2.98966e-11 2.718 ||| 0-5 ||| 2 524574 +los ||| mentioned the two ||| 0.5 0.122289 1.90631e-06 8.97437e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| mentioned the ||| 0.00139276 0.122289 1.90631e-06 3.79626e-05 2.718 ||| 0-1 ||| 718 524574 +los ||| merchant ||| 0.0144928 0.0555556 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 69 524574 +los ||| merchant ’ s ||| 1 0.0555556 1.90631e-06 1.92212e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| merchant ’ ||| 1 0.0555556 1.90631e-06 1.01042e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| mercury ||| 0.00115473 0.0040363 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 866 524574 +los ||| merely thank the rapporteur , the ||| 1 0.122289 1.90631e-06 1.53025e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| merely thank the rapporteur , ||| 1 0.122289 1.90631e-06 2.4926e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| merely thank the rapporteur ||| 0.5 0.122289 1.90631e-06 2.09015e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| merely thank the ||| 0.5 0.122289 1.90631e-06 2.89093e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| merrily travel back and forth ||| 1 0.0606223 1.90631e-06 1.49557e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| merrily travel back and ||| 1 0.0606223 1.90631e-06 7.40382e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| merrily travel back ||| 1 0.0606223 1.90631e-06 5.91081e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| merrily travel ||| 1 0.0606223 1.90631e-06 8.788e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| message of the Annual ||| 0.5 0.122289 1.90631e-06 3.25964e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| message of the ||| 0.0163934 0.122289 1.90631e-06 1.12401e-06 2.718 ||| 0-2 ||| 61 524574 +los ||| message our ||| 0.25 0.0248369 1.90631e-06 1.72127e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| messages - ||| 0.166667 0.063278 1.90631e-06 2.23686e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| messages ||| 0.00218579 0.063278 3.81262e-06 5.93e-05 2.718 ||| 0-0 ||| 915 524574 +los ||| met by operators of a ||| 1 0.0062464 1.90631e-06 3.89196e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| met by operators of ||| 1 0.0062464 1.90631e-06 8.78034e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| met by operators ||| 1 0.0062464 1.90631e-06 1.6151e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| met by the ||| 0.0789474 0.122289 5.71893e-06 1.72733e-07 2.718 ||| 0-2 ||| 38 524574 +los ||| met by ||| 0.00591716 0.0062464 1.90631e-06 1.24239e-07 2.718 ||| 0-1 ||| 169 524574 +los ||| metals are ||| 0.25 0.221854 1.90631e-06 9.87743e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| metals ||| 0.0125523 0.221854 5.71893e-06 6.51e-05 2.718 ||| 0-0 ||| 239 524574 +los ||| methods , ||| 0.00621118 0.156921 1.90631e-06 9.24105e-05 2.718 ||| 0-0 ||| 161 524574 +los ||| methods of ||| 0.00298507 0.0794497 3.81262e-06 2.56306e-06 2.718 ||| 0-0 0-1 ||| 670 524574 +los ||| methods on offer through the Internet for ||| 1 0.122289 1.90631e-06 6.3703e-22 2.718 ||| 0-4 ||| 1 524574 +los ||| methods on offer through the Internet ||| 1 0.122289 1.90631e-06 8.28851e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| methods on offer through the ||| 1 0.122289 1.90631e-06 4.79105e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| methods will be ||| 0.333333 0.156921 1.90631e-06 1.21493e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| methods will ||| 0.0555556 0.156921 1.90631e-06 6.70381e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| methods ||| 0.00286642 0.156921 2.85946e-05 0.0007749 2.718 ||| 0-0 ||| 5233 524574 +los ||| might be termed the ||| 0.333333 0.122289 1.90631e-06 2.68667e-11 2.718 ||| 0-3 ||| 3 524574 +los ||| might call the ||| 0.125 0.122289 1.90631e-06 3.65677e-08 2.718 ||| 0-2 ||| 8 524574 +los ||| might have happened in the ||| 0.5 0.122289 1.90631e-06 2.61014e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| might have occupied ||| 0.5 0.0012005 1.90631e-06 4.59256e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| might imagine that the ||| 0.5 0.122289 1.90631e-06 5.09835e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| might venture to say that the ||| 1 0.122289 1.90631e-06 2.44743e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| migrant ||| 0.00425532 0.0251572 3.81262e-06 1.17e-05 2.718 ||| 0-0 ||| 470 524574 +los ||| migrants ' ||| 0.0555556 0.181536 1.90631e-06 3.21173e-06 2.718 ||| 0-0 0-1 ||| 18 524574 +los ||| migrants and ||| 0.00724638 0.318625 1.90631e-06 7.56314e-06 2.718 ||| 0-0 ||| 138 524574 +los ||| migrants to ||| 0.0227273 0.318625 1.90631e-06 5.36526e-05 2.718 ||| 0-0 ||| 44 524574 +los ||| migrants ||| 0.00286738 0.318625 7.62523e-06 0.0006038 2.718 ||| 0-0 ||| 1395 524574 +los ||| migration ||| 0.000291715 0.0063708 1.90631e-06 2.82e-05 2.718 ||| 0-0 ||| 3428 524574 +los ||| migratory flows ||| 0.00280899 0.0119658 1.90631e-06 7.072e-11 2.718 ||| 0-0 ||| 356 524574 +los ||| migratory ||| 0.00350263 0.0119658 3.81262e-06 6.8e-06 2.718 ||| 0-0 ||| 571 524574 +los ||| militant ||| 0.0277778 0.0666667 3.81262e-06 5.8e-06 2.718 ||| 0-0 ||| 72 524574 +los ||| militants ||| 0.037037 0.255814 5.71893e-06 2.14e-05 2.718 ||| 0-0 ||| 81 524574 +los ||| military ||| 0.000353107 0.0006349 5.71893e-06 4.9e-06 2.718 ||| 0-0 ||| 8496 524574 +los ||| milk scheme ||| 0.0526316 0.0038583 1.90631e-06 3.7771e-10 2.718 ||| 0-0 ||| 19 524574 +los ||| milk ||| 0.00115607 0.0038583 5.71893e-06 1.07e-05 2.718 ||| 0-0 ||| 2595 524574 +los ||| million EU ||| 0.0769231 0.004319 1.90631e-06 3.93016e-08 2.718 ||| 0-1 ||| 13 524574 +los ||| million every year , practically half ||| 1 0.144232 1.90631e-06 1.32114e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| million every year , practically ||| 1 0.144232 1.90631e-06 4.58729e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| million every year , ||| 1 0.144232 1.90631e-06 7.05738e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| million every year ||| 0.2 0.144232 1.90631e-06 5.9179e-11 2.718 ||| 0-1 ||| 5 524574 +los ||| million every ||| 0.2 0.144232 1.90631e-06 2.37286e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| mind that the ||| 0.003367 0.122289 1.90631e-06 1.81764e-06 2.718 ||| 0-2 ||| 297 524574 +los ||| mind the ||| 0.00879397 0.122289 1.33442e-05 0.000108054 2.718 ||| 0-1 ||| 796 524574 +los ||| mind we usually enjoy on Fridays ||| 0.142857 0.278761 1.90631e-06 7.07204e-22 2.718 ||| 0-5 ||| 7 524574 +los ||| mind when I ||| 0.2 0.0006199 1.90631e-06 6.5749e-11 2.718 ||| 0-1 ||| 5 524574 +los ||| mind when ||| 0.00847458 0.0006199 1.90631e-06 9.29511e-09 2.718 ||| 0-1 ||| 118 524574 +los ||| minds of ||| 0.00564972 0.0019787 1.90631e-06 1.58434e-07 2.718 ||| 0-1 ||| 177 524574 +los ||| mindset of the ||| 0.0714286 0.122289 1.90631e-06 2.56518e-08 2.718 ||| 0-2 ||| 14 524574 +los ||| mineral ||| 0.00490196 0.0217391 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 204 524574 +los ||| minimal ||| 0.00162338 0.003125 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 616 524574 +los ||| minimum , ||| 0.0103093 0.0019667 1.90631e-06 1.27603e-06 2.718 ||| 0-0 ||| 97 524574 +los ||| minimum of ||| 0.00735294 0.0019727 3.81262e-06 3.53913e-08 2.718 ||| 0-0 0-1 ||| 272 524574 +los ||| minimum ||| 0.000683761 0.0019667 7.62523e-06 1.07e-05 2.718 ||| 0-0 ||| 5850 524574 +los ||| ministers ||| 0.000913242 0.208063 5.71893e-06 0.0007175 2.718 ||| 0-0 ||| 3285 524574 +los ||| minority but ||| 0.142857 0.0754204 1.90631e-06 2.02628e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| minority ||| 0.00247755 0.0754204 1.52505e-05 0.0002965 2.718 ||| 0-0 ||| 3229 524574 +los ||| minors ; similar , ||| 0.5 0.342991 1.90631e-06 6.30433e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| minors ; similar ||| 0.5 0.342991 1.90631e-06 5.28644e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| minors ; ||| 0.125 0.342991 1.90631e-06 1.31177e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| minors across ||| 0.125 0.342991 1.90631e-06 4.36973e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| minors can ||| 0.125 0.342991 1.90631e-06 1.26675e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| minors ||| 0.00569476 0.342991 9.53154e-06 0.0004259 2.718 ||| 0-0 ||| 878 524574 +los ||| minute the ||| 0.5 0.122289 1.90631e-06 5.23327e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| misleading colleagues and are ||| 1 0.0749603 1.90631e-06 6.96551e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| misleading colleagues and ||| 1 0.0749603 1.90631e-06 4.59082e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| misleading colleagues ||| 1 0.0749603 1.90631e-06 3.66506e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| misleading ||| 0.00129199 0.0011614 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 774 524574 +los ||| missiles operate ||| 1 0.108696 1.90631e-06 9.4284e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| missiles ||| 0.00613497 0.108696 1.90631e-06 1.94e-05 2.718 ||| 0-0 ||| 163 524574 +los ||| mistake the ||| 0.1 0.122289 1.90631e-06 7.8928e-06 2.718 ||| 0-1 ||| 10 524574 +los ||| mistakes ||| 0.00182815 0.0794421 3.81262e-06 0.0001274 2.718 ||| 0-0 ||| 1094 524574 +los ||| misunderstandings ||| 0.00337838 0.0843373 1.90631e-06 3.4e-05 2.718 ||| 0-0 ||| 296 524574 +los ||| misuse of anti-microbial medicines as additives ; ||| 1 0.240938 1.90631e-06 1.57687e-27 2.718 ||| 0-3 ||| 1 524574 +los ||| misuse of anti-microbial medicines as additives ||| 1 0.240938 1.90631e-06 5.1197e-24 2.718 ||| 0-3 ||| 1 524574 +los ||| misuse of anti-microbial medicines as ||| 1 0.240938 1.90631e-06 1.02394e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| misuse of anti-microbial medicines ||| 0.5 0.240938 1.90631e-06 1.00343e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| misuse ||| 0.00186567 0.0217984 1.90631e-06 1.56e-05 2.718 ||| 0-0 ||| 536 524574 +los ||| mitigate the ||| 0.00632911 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-1 ||| 158 524574 +los ||| mitigation ||| 0.0075188 0.0366972 3.81262e-06 7.8e-06 2.718 ||| 0-0 ||| 266 524574 +los ||| mobile telecommunications systems ( ||| 1 0.0620985 1.90631e-06 1.54202e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| mobile telecommunications systems ||| 1 0.0620985 1.90631e-06 1.59894e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| mobile telecommunications ||| 0.0625 0.0620985 1.90631e-06 3.0456e-10 2.718 ||| 0-0 ||| 16 524574 +los ||| mobile ||| 0.0378842 0.0620985 0.000101034 8.46e-05 2.718 ||| 0-0 ||| 1399 524574 +los ||| mobility ||| 0.000189143 0.0002907 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 5287 524574 +los ||| mockery of the ||| 0.047619 0.122289 1.90631e-06 7.46233e-08 2.718 ||| 0-2 ||| 21 524574 +los ||| model which can achieve the ||| 1 0.122289 1.90631e-06 9.53428e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| models already ||| 1 0.133333 1.90631e-06 8.19687e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| models ||| 0.00685976 0.133333 1.71568e-05 0.000177 2.718 ||| 0-0 ||| 1312 524574 +los ||| moderate course ||| 0.2 0.0048232 1.90631e-06 3.65893e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| moderate ||| 0.00325733 0.0048232 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 614 524574 +los ||| modern camera ||| 0.0833333 0.0129957 1.90631e-06 2.653e-11 2.718 ||| 0-0 ||| 12 524574 +los ||| modern requirements ||| 0.142857 0.0129957 1.90631e-06 1.84194e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| modern times ||| 0.0123457 0.0129957 1.90631e-06 3.84685e-09 2.718 ||| 0-0 ||| 81 524574 +los ||| modern ||| 0.00355068 0.0129957 2.09694e-05 3.79e-05 2.718 ||| 0-0 ||| 3098 524574 +los ||| modes , ||| 0.0769231 0.162708 1.90631e-06 1.58847e-05 2.718 ||| 0-0 ||| 13 524574 +los ||| modes of ||| 0.00198807 0.162708 1.90631e-06 7.24128e-06 2.718 ||| 0-0 ||| 503 524574 +los ||| modes ||| 0.00565771 0.162708 7.62523e-06 0.0001332 2.718 ||| 0-0 ||| 707 524574 +los ||| modified ||| 0.00455433 0.0732984 1.33442e-05 0.0001361 2.718 ||| 0-0 ||| 1537 524574 +los ||| moment that the ||| 0.05 0.122289 1.90631e-06 1.30388e-06 2.718 ||| 0-2 ||| 20 524574 +los ||| moment the ||| 0.00689655 0.122289 1.90631e-06 7.75124e-05 2.718 ||| 0-1 ||| 145 524574 +los ||| monetary policy could address the different ||| 1 0.122289 1.90631e-06 2.90545e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| monetary policy could address the ||| 1 0.122289 1.90631e-06 1.31946e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| money ' ||| 0.0294118 0.0444479 1.90631e-06 8.69157e-07 2.718 ||| 0-1 ||| 34 524574 +los ||| money , ||| 0.00105485 0.0049735 1.90631e-06 8.93218e-06 2.718 ||| 0-0 ||| 948 524574 +los ||| money for these activities ||| 1 0.0240362 1.90631e-06 2.43359e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| money for these ||| 0.0714286 0.0240362 1.90631e-06 3.06112e-09 2.718 ||| 0-2 ||| 14 524574 +los ||| money in our accounts ||| 1 0.0248369 1.90631e-06 3.85938e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| money in our ||| 0.142857 0.0248369 1.90631e-06 1.24899e-08 2.718 ||| 0-2 ||| 7 524574 +los ||| money in the ||| 0.00840336 0.122289 1.90631e-06 1.50027e-06 2.718 ||| 0-2 ||| 119 524574 +los ||| money to ||| 0.00146843 0.0049735 1.90631e-06 6.65548e-06 2.718 ||| 0-0 ||| 681 524574 +los ||| money which is not ||| 0.166667 0.0049735 1.90631e-06 6.80793e-11 2.718 ||| 0-0 ||| 6 524574 +los ||| money which is ||| 0.0588235 0.0049735 1.90631e-06 1.99406e-08 2.718 ||| 0-0 ||| 17 524574 +los ||| money which ||| 0.00581395 0.0049735 1.90631e-06 6.36246e-07 2.718 ||| 0-0 ||| 172 524574 +los ||| money ||| 0.000514073 0.0049735 1.52505e-05 7.49e-05 2.718 ||| 0-0 ||| 15562 524574 +los ||| monies arising ||| 1 0.119114 1.90631e-06 1.21638e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| monies ||| 0.0113208 0.119114 5.71893e-06 4.18e-05 2.718 ||| 0-0 ||| 265 524574 +los ||| monitor the ||| 0.00122549 0.122289 1.90631e-06 6.47724e-06 2.718 ||| 0-1 ||| 816 524574 +los ||| monitoring centre ||| 0.00862069 0.005903 1.90631e-06 1.4624e-09 2.718 ||| 0-0 ||| 116 524574 +los ||| monitoring procedures ||| 0.030303 0.219824 1.90631e-06 9.05332e-08 2.718 ||| 0-1 ||| 33 524574 +los ||| monitoring ||| 0.000196541 0.005903 3.81262e-06 4.57e-05 2.718 ||| 0-0 ||| 10176 524574 +los ||| monopolies ||| 0.00331126 0.230104 5.71893e-06 0.0002586 2.718 ||| 0-0 ||| 906 524574 +los ||| monopoly on ||| 0.00641026 0.0050352 1.90631e-06 3.27859e-08 2.718 ||| 0-0 ||| 156 524574 +los ||| monopoly ||| 0.000931099 0.0050352 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 1074 524574 +los ||| months before the ||| 0.0144928 0.122289 1.90631e-06 4.32346e-09 2.718 ||| 0-2 ||| 69 524574 +los ||| months ||| 9.31012e-05 9.17e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 10741 524574 +los ||| moratorium on the ||| 0.00757576 0.122289 1.90631e-06 5.16626e-09 2.718 ||| 0-2 ||| 132 524574 +los ||| more , the ||| 0.00440529 0.122289 1.90631e-06 0.000116823 2.718 ||| 0-2 ||| 227 524574 +los ||| more , these ||| 0.0666667 0.0240362 1.90631e-06 6.63834e-07 2.718 ||| 0-2 ||| 15 524574 +los ||| more acute ||| 0.0125 0.0049587 1.90631e-06 6.62273e-09 2.718 ||| 0-1 ||| 80 524574 +los ||| more aware of the ||| 0.0149254 0.122289 1.90631e-06 7.39717e-09 2.718 ||| 0-3 ||| 67 524574 +los ||| more basic ||| 0.111111 0.0059008 1.90631e-06 1.04365e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| more by the ||| 0.0454545 0.122289 1.90631e-06 5.14304e-06 2.718 ||| 0-2 ||| 22 524574 +los ||| more concrete terms , the ||| 1 0.122289 1.90631e-06 4.01343e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| more concrete ||| 0.00543478 0.0002209 1.90631e-06 2.2837e-09 2.718 ||| 0-1 ||| 184 524574 +los ||| more damage ||| 0.0232558 0.0626363 1.90631e-06 7.01553e-07 2.718 ||| 0-1 ||| 43 524574 +los ||| more democratic ||| 0.0019084 0.000912 1.90631e-06 2.87746e-08 2.718 ||| 0-1 ||| 524 524574 +los ||| more difficult for ||| 0.00952381 0.0015353 1.90631e-06 2.5011e-10 2.718 ||| 0-2 ||| 105 524574 +los ||| more effectively the ||| 0.0294118 0.122289 1.90631e-06 7.01399e-08 2.718 ||| 0-2 ||| 34 524574 +los ||| more farmers from ||| 0.5 0.380089 1.90631e-06 1.80607e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| more farmers ||| 0.111111 0.380089 1.90631e-06 1.1215e-05 2.718 ||| 0-1 ||| 9 524574 +los ||| more generous with advice ||| 1 0.0108752 1.90631e-06 1.40015e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| more information to MEPs ||| 0.5 0.152546 1.90631e-06 5.24417e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| more of the ||| 0.00510204 0.122289 1.90631e-06 5.32554e-05 2.718 ||| 0-2 ||| 196 524574 +los ||| more subject to the ||| 0.5 0.122289 1.90631e-06 4.69875e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| more survivors ||| 0.125 0.166667 1.90631e-06 6.00613e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| more than your ||| 0.333333 0.0096341 1.90631e-06 2.15022e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| more than ||| 0.000157344 8.8e-05 3.81262e-06 1.11901e-08 2.718 ||| 0-1 ||| 12711 524574 +los ||| more the ||| 0.0197368 0.122289 5.71893e-06 0.000979608 2.718 ||| 0-1 ||| 152 524574 +los ||| more to all this ||| 1 0.0177928 1.90631e-06 3.52485e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| more to all ||| 0.5 0.0177928 1.90631e-06 5.45525e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| more to the point ||| 0.0185185 0.122289 1.90631e-06 7.6148e-08 2.718 ||| 0-2 ||| 54 524574 +los ||| more to the ||| 0.00621118 0.122289 1.90631e-06 8.70462e-05 2.718 ||| 0-2 ||| 161 524574 +los ||| more vulnerable ||| 0.00495049 0.0083424 1.90631e-06 5.11549e-08 2.718 ||| 0-1 ||| 202 524574 +los ||| more ||| 9.69321e-06 8.8e-06 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 103165 524574 +los ||| moreover , the ||| 0.00287356 0.122289 5.71893e-06 5.54009e-06 2.718 ||| 0-2 ||| 1044 524574 +los ||| mortality among ||| 0.0714286 0.0202203 1.90631e-06 3.9204e-10 2.718 ||| 0-1 ||| 14 524574 +los ||| most aspects of the ||| 0.25 0.122289 1.90631e-06 7.10556e-10 2.718 ||| 0-3 ||| 4 524574 +los ||| most definitely , ||| 0.333333 0.0021653 1.90631e-06 5.64614e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| most definitely ||| 0.0138889 0.0021653 1.90631e-06 4.73452e-09 2.718 ||| 0-0 ||| 72 524574 +los ||| most importantly , ||| 0.00155039 0.0021653 1.90631e-06 1.22079e-10 2.718 ||| 0-0 ||| 645 524574 +los ||| most importantly ||| 0.00114943 0.0021653 1.90631e-06 1.02368e-09 2.718 ||| 0-0 ||| 870 524574 +los ||| most need the ||| 0.333333 0.122289 1.90631e-06 1.69989e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| most of the ||| 0.00228519 0.122289 9.53154e-06 1.00788e-05 2.718 ||| 0-2 ||| 2188 524574 +los ||| most of ||| 0.000213311 0.0021653 1.90631e-06 4.96887e-06 2.718 ||| 0-0 ||| 4688 524574 +los ||| most ordinary way ||| 1 0.102163 1.90631e-06 2.0105e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| most ordinary ||| 0.25 0.102163 1.90631e-06 9.32688e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| most recently , the ||| 0.111111 0.122289 1.90631e-06 1.50343e-09 2.718 ||| 0-3 ||| 9 524574 +los ||| most sincerely , the ||| 0.5 0.122289 1.90631e-06 4.37762e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| most suffer from the ||| 1 0.122289 1.90631e-06 1.06287e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| most ||| 0.000449962 0.0021653 3.24072e-05 9.14e-05 2.718 ||| 0-0 ||| 37781 524574 +los ||| motor ||| 0.0264901 0.0861865 3.81262e-05 0.000142 2.718 ||| 0-0 ||| 755 524574 +los ||| motorised ||| 0.04 0.2 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 25 524574 +los ||| motorists - ||| 0.333333 0.36646 1.90631e-06 2.16519e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| motorists ||| 0.0107527 0.36646 1.90631e-06 5.74e-05 2.718 ||| 0-0 ||| 93 524574 +los ||| mountain ||| 0.00139082 0.0010449 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 719 524574 +los ||| move away from the ||| 0.0151515 0.122289 1.90631e-06 3.35984e-11 2.718 ||| 0-3 ||| 66 524574 +los ||| move both ||| 0.5 0.0352574 1.90631e-06 1.83144e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| move the ||| 0.00584795 0.122289 1.90631e-06 6.55874e-05 2.718 ||| 0-1 ||| 171 524574 +los ||| moved the ||| 0.0232558 0.122289 1.90631e-06 1.35979e-05 2.718 ||| 0-1 ||| 43 524574 +los ||| movements in the ||| 0.0833333 0.122289 1.90631e-06 1.12015e-07 2.718 ||| 0-2 ||| 12 524574 +los ||| movements ||| 0.0050396 0.265625 1.33442e-05 0.0004297 2.718 ||| 0-0 ||| 1389 524574 +los ||| moves ||| 0.00412088 0.0298507 5.71893e-06 3.31e-05 2.718 ||| 0-0 ||| 728 524574 +los ||| moving the ||| 0.0108696 0.122289 1.90631e-06 2.548e-05 2.718 ||| 0-1 ||| 92 524574 +los ||| moving towards a situation where the ||| 1 0.122289 1.90631e-06 2.23826e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| much as EUR ||| 0.1 0.0343255 1.90631e-06 5.8452e-09 2.718 ||| 0-2 ||| 10 524574 +los ||| much as the ||| 0.0166667 0.122289 1.90631e-06 4.39344e-06 2.718 ||| 0-2 ||| 60 524574 +los ||| much as ||| 0.0010917 0.0009297 1.90631e-06 3.5812e-07 2.718 ||| 0-1 ||| 916 524574 +los ||| much experience of journeys to us ||| 1 0.0019787 1.90631e-06 2.35005e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| much experience of journeys to ||| 1 0.0019787 1.90631e-06 8.15366e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| much experience of journeys ||| 1 0.0019787 1.90631e-06 9.17603e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| much experience of ||| 0.166667 0.0019787 1.90631e-06 2.29401e-10 2.718 ||| 0-2 ||| 6 524574 +los ||| much for being ||| 1 0.0015353 1.90631e-06 2.51871e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| much for ||| 0.00320513 0.0015353 1.90631e-06 8.85063e-07 2.718 ||| 0-1 ||| 312 524574 +los ||| much in the way of ||| 0.111111 0.122289 1.90631e-06 1.07995e-09 2.718 ||| 0-2 ||| 9 524574 +los ||| much in the way ||| 0.0625 0.122289 1.90631e-06 1.98651e-08 2.718 ||| 0-2 ||| 16 524574 +los ||| much in the ||| 0.0105263 0.122289 1.90631e-06 9.21557e-06 2.718 ||| 0-2 ||| 95 524574 +los ||| much like other tourist ||| 1 0.0121951 1.90631e-06 2.03209e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| much of the ||| 0.00198807 0.122289 1.90631e-06 2.34061e-05 2.718 ||| 0-2 ||| 503 524574 +los ||| much the same ||| 0.0192308 0.122289 1.90631e-06 3.46458e-07 2.718 ||| 0-1 ||| 52 524574 +los ||| much the task of those ||| 0.5 0.122289 1.90631e-06 2.13549e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| much the task of ||| 0.5 0.122289 1.90631e-06 2.94916e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| much the task ||| 0.5 0.122289 1.90631e-06 5.42485e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| much the ||| 0.0242915 0.122289 1.14379e-05 0.000430543 2.718 ||| 0-1 ||| 247 524574 +los ||| much those ||| 1 0.284705 1.90631e-06 1.67594e-05 2.718 ||| 0-1 ||| 1 524574 +los ||| much value for ||| 0.5 0.0015353 1.90631e-06 7.77085e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| multiannual guidance programmes ( ||| 1 0.182745 1.90631e-06 6.1591e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| multiannual guidance programmes ||| 0.0526316 0.182745 1.90631e-06 6.38646e-14 2.718 ||| 0-2 ||| 19 524574 +los ||| multicoloured barcodes ||| 0.0666667 1 1.90631e-06 4e-13 2.718 ||| 0-1 ||| 15 524574 +los ||| multilateral agreements ||| 0.0131579 0.199336 1.90631e-06 1.13508e-08 2.718 ||| 0-1 ||| 76 524574 +los ||| multilateral ||| 0.0004649 0.0005102 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2151 524574 +los ||| multilingual ||| 0.0168539 0.0171429 5.71893e-06 2.9e-06 2.718 ||| 0-0 ||| 178 524574 +los ||| multimedia ||| 0.0149254 0.150538 3.81262e-06 2.72e-05 2.718 ||| 0-0 ||| 134 524574 +los ||| multiple ||| 0.00205339 0.0279232 1.90631e-06 1.56e-05 2.718 ||| 0-0 ||| 487 524574 +los ||| murders ||| 0.00243902 0.113082 1.90631e-06 4.96e-05 2.718 ||| 0-0 ||| 410 524574 +los ||| must also have the ||| 0.0526316 0.122289 1.90631e-06 4.00318e-08 2.718 ||| 0-3 ||| 19 524574 +los ||| must be earned honestly by small specialists ||| 0.5 0.173824 1.90631e-06 2.40875e-26 2.718 ||| 0-6 ||| 2 524574 +los ||| must be our task to ensure ||| 1 0.0248369 1.90631e-06 5.02181e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| must be our task to ||| 1 0.0248369 1.90631e-06 1.11994e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| must be our task ||| 0.333333 0.0248369 1.90631e-06 1.26037e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| must be our ||| 0.00746269 0.0248369 1.90631e-06 1.00029e-07 2.718 ||| 0-2 ||| 134 524574 +los ||| must be patient ||| 0.2 0.135371 1.90631e-06 5.91027e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| must beat our ||| 1 0.0248369 1.90631e-06 1.76624e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| must each ||| 0.333333 0.0497499 1.90631e-06 1.35997e-06 2.718 ||| 0-1 ||| 3 524574 +los ||| must make the ||| 0.0227273 0.122289 1.90631e-06 1.15215e-06 2.718 ||| 0-2 ||| 44 524574 +los ||| must monitor the ||| 0.0526316 0.122289 1.90631e-06 1.00112e-08 2.718 ||| 0-2 ||| 19 524574 +los ||| must now support the ||| 0.5 0.122289 1.90631e-06 4.66934e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| must pick up the ||| 1 0.122289 1.90631e-06 4.47707e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| must place greater emphasis on education , ||| 1 0.0011583 1.90631e-06 2.31089e-22 2.718 ||| 0-5 ||| 1 524574 +los ||| must place greater emphasis on education ||| 1 0.0011583 1.90631e-06 1.93777e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| must prevent the ' ||| 0.125 0.122289 1.90631e-06 1.16371e-10 2.718 ||| 0-2 ||| 8 524574 +los ||| must prevent the ||| 0.0714286 0.122289 1.90631e-06 3.3879e-08 2.718 ||| 0-2 ||| 14 524574 +los ||| must put an end to the ||| 0.125 0.122289 1.90631e-06 1.2562e-13 2.718 ||| 0-5 ||| 8 524574 +los ||| must the ||| 0.0416667 0.122289 5.71893e-06 0.000662995 2.718 ||| 0-1 ||| 72 524574 +los ||| must these ||| 0.2 0.0240362 1.90631e-06 3.7674e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| mutual information procedures relating to ||| 1 0.219824 1.90631e-06 8.74101e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| mutual information procedures relating ||| 1 0.219824 1.90631e-06 9.83703e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| mutual information procedures ||| 1 0.219824 1.90631e-06 8.65174e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| mutual ||| 0.00032352 0.0008545 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 3091 524574 +los ||| my Spanish colleagues , and I mean ||| 1 0.0749603 1.90631e-06 3.04509e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| my Spanish colleagues , and I ||| 1 0.0749603 1.90631e-06 1.18164e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| my Spanish colleagues , and ||| 1 0.0749603 1.90631e-06 1.67052e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| my Spanish colleagues , ||| 0.5 0.0749603 1.90631e-06 1.33365e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| my Spanish colleagues ||| 0.05 0.0749603 1.90631e-06 1.11832e-11 2.718 ||| 0-2 ||| 20 524574 +los ||| my answer is that the ||| 0.25 0.0086409 1.90631e-06 1.67102e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| my answer is that ||| 0.05 0.0086409 1.90631e-06 2.7219e-11 2.718 ||| 0-0 ||| 20 524574 +los ||| my answer is ||| 0.0149254 0.0086409 1.90631e-06 1.6181e-09 2.718 ||| 0-0 ||| 67 524574 +los ||| my answer ||| 0.00341297 0.0086409 1.90631e-06 5.16286e-08 2.718 ||| 0-0 ||| 293 524574 +los ||| my attention ||| 0.0188679 0.0086409 3.81262e-06 1.80114e-07 2.718 ||| 0-0 ||| 106 524574 +los ||| my best ||| 0.00584795 0.0086409 1.90631e-06 9.54681e-08 2.718 ||| 0-0 ||| 171 524574 +los ||| my capacity ||| 0.00649351 0.0086409 1.90631e-06 5.03878e-08 2.718 ||| 0-0 ||| 154 524574 +los ||| my case of ||| 1 0.0019787 1.90631e-06 2.2758e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| my case ||| 0.0131579 0.0086409 1.90631e-06 7.37482e-07 2.718 ||| 0-0 ||| 76 524574 +los ||| my colleagues , ||| 0.00234192 0.0749603 1.90631e-06 5.9805e-08 2.718 ||| 0-1 ||| 427 524574 +los ||| my colleagues ||| 0.00154895 0.0749603 9.53154e-06 5.01489e-07 2.718 ||| 0-1 ||| 3228 524574 +los ||| my committee ||| 0.00322581 0.0086409 1.90631e-06 5.33518e-08 2.718 ||| 0-0 ||| 310 524574 +los ||| my country , the ||| 0.0078125 0.122289 1.90631e-06 1.18399e-08 2.718 ||| 0-3 ||| 128 524574 +los ||| my draft ||| 0.0166667 0.0086409 1.90631e-06 3.61882e-08 2.718 ||| 0-0 ||| 60 524574 +los ||| my fellow MEP ’ s ||| 0.5 0.0139748 1.90631e-06 5.01207e-19 2.718 ||| 0-3 ||| 2 524574 +los ||| my fellow MEP ’ ||| 0.5 0.0139748 1.90631e-06 2.63474e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| my fellow MEPs ||| 0.00438596 0.152546 1.90631e-06 6.61768e-11 2.718 ||| 0-2 ||| 228 524574 +los ||| my fellow Members ||| 0.000506842 0.168879 1.90631e-06 2.04459e-10 2.718 ||| 0-2 ||| 1973 524574 +los ||| my fellow ||| 0.00468541 0.0086409 1.33442e-05 4.54249e-08 2.718 ||| 0-0 ||| 1494 524574 +los ||| my gratitude in view of the ||| 1 0.122289 1.90631e-06 2.29069e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| my mind ||| 0.00113122 0.0086409 1.90631e-06 1.73635e-07 2.718 ||| 0-0 ||| 884 524574 +los ||| my nature to be ||| 1 0.0086409 1.90631e-06 1.56958e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| my nature to ||| 0.5 0.0086409 1.90631e-06 8.66074e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| my nature ||| 0.2 0.0086409 1.90631e-06 9.7467e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| my opinion , ||| 0.000289436 0.0086409 1.90631e-06 2.01724e-08 2.718 ||| 0-0 ||| 3455 524574 +los ||| my opinion ||| 0.000194628 0.0086409 1.90631e-06 1.69154e-07 2.718 ||| 0-0 ||| 5138 524574 +los ||| my own ||| 0.000994695 0.0086409 5.71893e-06 1.16857e-06 2.718 ||| 0-0 ||| 3016 524574 +los ||| my pleasant duty to ||| 0.25 0.0086409 1.90631e-06 1.96214e-14 2.718 ||| 0-0 ||| 4 524574 +los ||| my pleasant duty ||| 0.25 0.0086409 1.90631e-06 2.20817e-13 2.718 ||| 0-0 ||| 4 524574 +los ||| my pleasant ||| 0.25 0.0086409 1.90631e-06 2.96399e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| my remarks to the ||| 0.0384615 0.122289 1.90631e-06 7.50085e-10 2.718 ||| 0-3 ||| 26 524574 +los ||| my saying ||| 0.111111 0.0086409 1.90631e-06 1.22282e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| my sincerest appreciation ||| 0.333333 0.0086409 1.90631e-06 9.85699e-15 2.718 ||| 0-0 ||| 3 524574 +los ||| my sincerest ||| 0.02 0.0086409 1.90631e-06 7.5823e-10 2.718 ||| 0-0 ||| 50 524574 +los ||| my thanks ||| 0.000931099 0.0086409 1.90631e-06 5.58333e-08 2.718 ||| 0-0 ||| 1074 524574 +los ||| my very best wishes ||| 0.0833333 0.0086409 1.90631e-06 1.75724e-14 2.718 ||| 0-0 ||| 12 524574 +los ||| my very best ||| 0.0714286 0.0086409 1.90631e-06 3.32181e-10 2.718 ||| 0-0 ||| 14 524574 +los ||| my very firm support . ||| 0.5 0.0086409 1.90631e-06 9.11569e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| my very firm support ||| 0.5 0.0086409 1.90631e-06 3.00947e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| my very firm ||| 0.5 0.0086409 1.90631e-06 8.8022e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| my very ||| 0.0344828 0.0086409 5.71893e-06 2.39842e-06 2.718 ||| 0-0 ||| 87 524574 +los ||| my view , for ||| 0.0625 0.0050881 1.90631e-06 6.54766e-11 2.718 ||| 0-0 0-3 ||| 16 524574 +los ||| my view , ||| 0.000317058 0.0086409 1.90631e-06 7.42533e-08 2.718 ||| 0-0 ||| 3154 524574 +los ||| my view ||| 0.000388123 0.0086409 3.81262e-06 6.22645e-07 2.718 ||| 0-0 ||| 5153 524574 +los ||| my voice ||| 0.00662252 0.0086409 1.90631e-06 2.99846e-08 2.718 ||| 0-0 ||| 151 524574 +los ||| my ||| 0.00625328 0.0086409 0.000932185 0.0006893 2.718 ||| 0-0 ||| 78199 524574 +los ||| myself believe these disasters were all ||| 1 0.0797759 1.90631e-06 1.2354e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| myself believe these disasters were ||| 1 0.0797759 1.90631e-06 2.61437e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| myself believe these disasters ||| 1 0.0797759 1.90631e-06 1.4594e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| myself had that experience with the ||| 1 0.122289 1.90631e-06 4.97622e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| name calling ||| 0.5 0.0004399 1.90631e-06 1.2521e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| name of the Lisbon Strategy that ||| 1 0.122289 1.90631e-06 3.39078e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| name of the Lisbon Strategy ||| 0.5 0.122289 1.90631e-06 2.01573e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| name of the Lisbon ||| 1 0.122289 1.90631e-06 4.68774e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| name of the ||| 0.00210526 0.122289 1.90631e-06 2.03815e-06 2.718 ||| 0-2 ||| 475 524574 +los ||| name the ||| 0.0344828 0.122289 1.90631e-06 3.74908e-05 2.718 ||| 0-1 ||| 29 524574 +los ||| name ||| 0.000236128 0.0004399 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 4235 524574 +los ||| namely the ||| 0.00737619 0.122289 2.66883e-05 6.85472e-05 2.718 ||| 0-1 ||| 1898 524574 +los ||| namely those ||| 0.0344828 0.284705 5.71893e-06 2.66828e-06 2.718 ||| 0-1 ||| 87 524574 +los ||| namely ||| 0.000194307 0.0005033 3.81262e-06 5.8e-06 2.718 ||| 0-0 ||| 10293 524574 +los ||| names them as being ||| 1 0.0625508 1.90631e-06 5.83441e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| names them as ||| 1 0.0625508 1.90631e-06 2.05018e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| names them ||| 1 0.0625508 1.90631e-06 2.00912e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| names ||| 0.00259067 0.0625508 5.71893e-06 7.49e-05 2.718 ||| 0-0 ||| 1158 524574 +los ||| narrow-track ||| 0.0714286 0.348837 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 14 524574 +los ||| nascent ||| 0.025641 0.0263158 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 39 524574 +los ||| nation 's ||| 0.0769231 0.0349814 1.90631e-06 8.57808e-08 2.718 ||| 0-1 ||| 13 524574 +los ||| nation ||| 0.00787789 0.0124283 3.05009e-05 2.53e-05 2.718 ||| 0-0 ||| 2031 524574 +los ||| nation-states ||| 0.0149254 0.129771 1.90631e-06 1.65e-05 2.718 ||| 0-0 ||| 67 524574 +los ||| national Bolsheviks ||| 1 0.0129851 1.90631e-06 1.7112e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| national and European ||| 0.00231481 0.0129851 1.90631e-06 1.79186e-08 2.718 ||| 0-0 ||| 432 524574 +los ||| national and ||| 0.000901307 0.0129851 3.81262e-06 5.35858e-06 2.718 ||| 0-0 ||| 2219 524574 +los ||| national civil ||| 0.0666667 0.0284146 1.90631e-06 2.25451e-07 2.718 ||| 0-0 0-1 ||| 15 524574 +los ||| national delegates ||| 0.5 0.0129851 1.90631e-06 2.60958e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| national frontiers ||| 0.0196078 0.0129851 1.90631e-06 2.7807e-09 2.718 ||| 0-0 ||| 51 524574 +los ||| national governments ||| 0.00140351 0.0129851 3.81262e-06 1.46308e-08 2.718 ||| 0-0 ||| 1425 524574 +los ||| national law ||| 0.00229621 0.0129851 3.81262e-06 7.54211e-08 2.718 ||| 0-0 ||| 871 524574 +los ||| national legislation ||| 0.000913242 0.0129851 1.90631e-06 3.43523e-08 2.718 ||| 0-0 ||| 1095 524574 +los ||| national level ||| 0.00102881 0.0129851 3.81262e-06 3.6594e-07 2.718 ||| 0-0 ||| 1944 524574 +los ||| national parliaments . ||| 0.0019802 0.269224 1.90631e-06 5.55154e-10 2.718 ||| 0-1 ||| 505 524574 +los ||| national parliaments to ||| 0.0104167 0.269224 1.90631e-06 1.62859e-08 2.718 ||| 0-1 ||| 96 524574 +los ||| national parliaments ||| 0.00100301 0.269224 5.71893e-06 1.8328e-07 2.718 ||| 0-1 ||| 2991 524574 +los ||| national political identities and opening up ||| 1 0.0129851 1.90631e-06 1.65e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| national political identities and opening ||| 1 0.0129851 1.90631e-06 4.83801e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| national political identities and ||| 1 0.0129851 1.90631e-06 1.72171e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| national political identities ||| 1 0.0129851 1.90631e-06 1.37452e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| national political ||| 0.00787402 0.0129851 1.90631e-06 7.63623e-08 2.718 ||| 0-0 ||| 127 524574 +los ||| national product , ||| 0.25 0.0129851 1.90631e-06 3.10184e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| national product ||| 0.00917431 0.0129851 1.90631e-06 2.60102e-08 2.718 ||| 0-0 ||| 109 524574 +los ||| national service ||| 0.142857 0.0129851 1.90631e-06 2.86198e-08 2.718 ||| 0-0 ||| 7 524574 +los ||| national ||| 0.00414752 0.0129851 0.000282134 0.0004278 2.718 ||| 0-0 ||| 35684 524574 +los ||| nationalistic ||| 0.00680272 0.0068493 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 147 524574 +los ||| nationals , ||| 0.0175439 0.287174 1.90631e-06 8.7998e-05 2.718 ||| 0-0 ||| 57 524574 +los ||| nationals are ||| 0.0217391 0.287174 1.90631e-06 1.11959e-05 2.718 ||| 0-0 ||| 46 524574 +los ||| nationals of ||| 0.00346021 0.287174 1.90631e-06 4.01152e-05 2.718 ||| 0-0 ||| 289 524574 +los ||| nationals their ||| 1 0.0236713 1.90631e-06 2.56222e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| nationals who are ||| 0.176471 0.287174 5.71893e-06 9.87481e-09 2.718 ||| 0-0 ||| 17 524574 +los ||| nationals who ||| 0.0882353 0.287174 5.71893e-06 6.50828e-07 2.718 ||| 0-0 ||| 34 524574 +los ||| nationals ||| 0.00731596 0.287174 3.05009e-05 0.0007379 2.718 ||| 0-0 ||| 2187 524574 +los ||| nations and ||| 0.00326797 0.0310621 1.90631e-06 1.51062e-06 2.718 ||| 0-0 ||| 306 524574 +los ||| nations ||| 0.000593824 0.0310621 3.81262e-06 0.0001206 2.718 ||| 0-0 ||| 3368 524574 +los ||| natural , ||| 0.01 0.0033827 1.90631e-06 2.4328e-06 2.718 ||| 0-0 ||| 100 524574 +los ||| natural beauty ||| 0.025641 0.0033827 1.90631e-06 6.528e-11 2.718 ||| 0-0 ||| 39 524574 +los ||| natural resources is to be ||| 1 0.21958 1.90631e-06 6.77727e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| natural resources is to ||| 0.5 0.21958 1.90631e-06 3.73962e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| natural resources is ||| 0.0769231 0.21958 1.90631e-06 4.20852e-09 2.718 ||| 0-1 ||| 13 524574 +los ||| natural resources ||| 0.00179211 0.21958 3.81262e-06 1.34281e-07 2.718 ||| 0-1 ||| 1116 524574 +los ||| natural ||| 0.00187237 0.0033827 2.28757e-05 2.04e-05 2.718 ||| 0-0 ||| 6409 524574 +los ||| naturally , the ||| 0.0060241 0.122289 1.90631e-06 3.23811e-06 2.718 ||| 0-2 ||| 166 524574 +los ||| nature coming on ||| 1 0.0093772 1.90631e-06 6.15916e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| nature coming ||| 0.5 0.0093772 1.90631e-06 9.20514e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| nature of the ||| 0.00301659 0.122289 3.81262e-06 3.29742e-06 2.718 ||| 0-2 ||| 663 524574 +los ||| near the bottom ||| 0.333333 0.122289 1.90631e-06 2.42137e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| near the ||| 0.0331126 0.122289 9.53154e-06 1.68151e-05 2.718 ||| 0-1 ||| 151 524574 +los ||| nearby ||| 0.0162602 0.0606061 3.81262e-06 7.8e-06 2.718 ||| 0-0 ||| 123 524574 +los ||| nearly all ||| 0.00395257 0.0177928 1.90631e-06 4.46258e-08 2.718 ||| 0-1 ||| 253 524574 +los ||| nearly ||| 0.000981354 0.0027457 3.81262e-06 4.9e-06 2.718 ||| 0-0 ||| 2038 524574 +los ||| necessarily at national level ||| 1 0.0129851 1.90631e-06 2.86547e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| necessarily at national ||| 1 0.0129851 1.90631e-06 3.34986e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| necessarily the main ||| 0.125 0.122289 1.90631e-06 7.99742e-10 2.718 ||| 0-1 ||| 8 524574 +los ||| necessarily the ||| 0.0113636 0.122289 1.90631e-06 8.02148e-06 2.718 ||| 0-1 ||| 88 524574 +los ||| necessary changes ||| 0.00746269 0.0003466 1.90631e-06 4.4968e-10 2.718 ||| 0-0 ||| 134 524574 +los ||| necessary for the ||| 0.00438596 0.122289 3.81262e-06 8.48274e-07 2.718 ||| 0-2 ||| 456 524574 +los ||| necessary limits ||| 0.25 0.0859692 1.90631e-06 7.95572e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| necessary ||| 0.000237699 0.0003466 1.14379e-05 8.8e-06 2.718 ||| 0-0 ||| 25242 524574 +los ||| need now is the implementation ||| 1 0.122289 1.90631e-06 1.97295e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| need now is the ||| 1 0.122289 1.90631e-06 2.53919e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| need the ||| 0.00867052 0.122289 5.71893e-06 0.00039331 2.718 ||| 0-1 ||| 346 524574 +los ||| need to enforce the ||| 0.25 0.122289 1.90631e-06 3.52983e-10 2.718 ||| 0-3 ||| 4 524574 +los ||| need to ensure there is ||| 0.333333 0.0026918 1.90631e-06 4.20782e-13 2.718 ||| 0-3 ||| 3 524574 +los ||| need to ensure there ||| 0.333333 0.0026918 1.90631e-06 1.34259e-11 2.718 ||| 0-3 ||| 3 524574 +los ||| need to pursue a modern ||| 1 0.0129957 1.90631e-06 5.36539e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| need to take account of the ||| 0.0588235 0.122289 1.90631e-06 8.79443e-13 2.718 ||| 0-5 ||| 17 524574 +los ||| needs leaders committed to its project ||| 1 0.0211371 1.90631e-06 3.16467e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| needs leaders committed to its ||| 1 0.0211371 1.90631e-06 5.17103e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| negative ||| 0.000223714 0.0009392 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 4470 524574 +los ||| neglecting the ||| 0.0188679 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-1 ||| 53 524574 +los ||| negotiate with apart from those ||| 0.25 0.284705 1.90631e-06 8.8912e-17 2.718 ||| 0-4 ||| 4 524574 +los ||| negotiated settlements ||| 0.142857 0.197836 1.90631e-06 8.086e-10 2.718 ||| 0-1 ||| 7 524574 +los ||| neighbouring ||| 0.00523286 0.168916 1.90631e-05 0.0004259 2.718 ||| 0-0 ||| 1911 524574 +los ||| neighbours or ||| 0.0625 0.0245424 1.90631e-06 6.56254e-08 2.718 ||| 0-0 ||| 16 524574 +los ||| neighbours ||| 0.00128755 0.0245424 5.71893e-06 5.74e-05 2.718 ||| 0-0 ||| 2330 524574 +los ||| neither the Agriculture ||| 1 0.122289 1.90631e-06 1.3105e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| neither the ||| 0.00590842 0.122289 7.62523e-06 9.56573e-06 2.718 ||| 0-1 ||| 677 524574 +los ||| neither ||| 0.000287687 0.0002141 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 3476 524574 +los ||| net ||| 0.00142552 0.0109119 3.81262e-06 1.36e-05 2.718 ||| 0-0 ||| 1403 524574 +los ||| never been studied together , they are ||| 1 0.0072404 1.90631e-06 5.47533e-22 2.718 ||| 0-5 ||| 1 524574 +los ||| never been studied together , they ||| 1 0.0072404 1.90631e-06 3.60867e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| nevertheless , the ||| 0.00151286 0.122289 1.90631e-06 6.27673e-06 2.718 ||| 0-2 ||| 661 524574 +los ||| nevertheless a risk of ||| 0.333333 0.0019787 1.90631e-06 2.10475e-12 2.718 ||| 0-3 ||| 3 524574 +los ||| new Commission will be coming in and ||| 1 0.0093772 1.90631e-06 9.55365e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| new Commission will be coming in ||| 1 0.0093772 1.90631e-06 7.62712e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| new Commission will be coming ||| 1 0.0093772 1.90631e-06 3.56333e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| new Member States that had not ||| 1 0.224121 1.90631e-06 5.00424e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| new Member States that had ||| 1 0.224121 1.90631e-06 1.46576e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| new Member States that ||| 0.0138889 0.224121 1.90631e-06 1.46035e-10 2.718 ||| 0-2 ||| 72 524574 +los ||| new Member States ||| 0.000204541 0.224121 1.90631e-06 8.68142e-09 2.718 ||| 0-2 ||| 4889 524574 +los ||| new Member ||| 0.00456621 0.0005876 1.90631e-06 2.00452e-08 2.718 ||| 0-0 ||| 219 524574 +los ||| new agreements about the ||| 0.25 0.122289 1.90631e-06 1.34528e-11 2.718 ||| 0-3 ||| 4 524574 +los ||| new and ||| 0.000849618 0.0005876 1.90631e-06 4.87258e-07 2.718 ||| 0-0 ||| 1177 524574 +los ||| new framework agreements ||| 0.333333 0.199336 1.90631e-06 2.2445e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| new fundamental ||| 1 0.0942078 1.90631e-06 8.85612e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| new jobs ||| 0.00195822 0.0595578 5.71893e-06 5.93337e-07 2.718 ||| 0-1 ||| 1532 524574 +los ||| new life into the ||| 0.0294118 0.122289 1.90631e-06 3.98798e-11 2.718 ||| 0-3 ||| 34 524574 +los ||| new market has opened up ||| 1 0.0031618 1.90631e-06 3.81789e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| new measures , the ||| 1 0.122289 1.90631e-06 6.32605e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| new people ||| 0.0384615 0.0894672 1.90631e-06 4.70707e-06 2.718 ||| 0-1 ||| 26 524574 +los ||| new posts ||| 0.008 0.107289 1.90631e-06 7.6147e-08 2.718 ||| 0-1 ||| 125 524574 +los ||| new problems ||| 0.00662252 0.106249 1.90631e-06 1.83285e-06 2.718 ||| 0-1 ||| 151 524574 +los ||| new types , enabling the models already ||| 1 0.133333 1.90631e-06 5.58901e-22 2.718 ||| 0-5 ||| 1 524574 +los ||| new types , enabling the models ||| 1 0.133333 1.90631e-06 1.20687e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| new ||| 0.000379971 0.0005876 5.14703e-05 3.89e-05 2.718 ||| 0-0 ||| 71058 524574 +los ||| newcomers reverting ||| 0.166667 0.18595 1.90631e-06 3.066e-11 2.718 ||| 0-0 ||| 6 524574 +los ||| newcomers ||| 0.0176991 0.18595 3.81262e-06 4.38e-05 2.718 ||| 0-0 ||| 113 524574 +los ||| newly independent ||| 0.1 0.0010885 1.90631e-06 4.176e-11 2.718 ||| 0-1 ||| 10 524574 +los ||| news and current affairs ||| 0.166667 0.178913 1.90631e-06 5.99613e-14 2.718 ||| 0-3 ||| 6 524574 +los ||| news stories ||| 0.0625 0.0245098 1.90631e-06 3.5211e-10 2.718 ||| 0-1 ||| 16 524574 +los ||| newspaper headlines ||| 0.0625 0.131868 1.90631e-06 2.7086e-10 2.718 ||| 0-1 ||| 16 524574 +los ||| newspapers - the very ||| 1 0.122289 1.90631e-06 7.88209e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| newspapers - the ||| 1 0.122289 1.90631e-06 2.26529e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| newspapers ||| 0.00395778 0.179177 5.71893e-06 0.0001439 2.718 ||| 0-0 ||| 758 524574 +los ||| next meet ||| 0.142857 0.0026912 1.90631e-06 2.40689e-09 2.718 ||| 0-1 ||| 7 524574 +los ||| next to the ||| 0.0212766 0.122289 1.90631e-06 3.93741e-06 2.718 ||| 0-2 ||| 47 524574 +los ||| nickname the ||| 1 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| no ' voters from Great ||| 1 0.235256 1.90631e-06 7.06275e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| no ' voters from ||| 1 0.235256 1.90631e-06 1.50271e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| no ' voters ||| 1 0.235256 1.90631e-06 9.3313e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| no comment ' ||| 1 0.0444479 1.90631e-06 1.89219e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| no different ||| 0.0666667 0.0053114 1.90631e-06 8.3211e-08 2.718 ||| 0-1 ||| 15 524574 +los ||| no intention of questioning that ||| 1 0.0019787 1.90631e-06 7.09626e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| no intention of questioning ||| 1 0.0019787 1.90631e-06 4.21854e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| no intention of ||| 0.0192308 0.0019787 1.90631e-06 1.45467e-10 2.718 ||| 0-2 ||| 52 524574 +los ||| no less incumbent on the ||| 1 0.122289 1.90631e-06 6.00791e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| no let up in the ||| 1 0.122289 1.90631e-06 9.95462e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| no longer concentrated ||| 0.125 0.0064865 1.90631e-06 8.4651e-13 2.718 ||| 0-2 ||| 8 524574 +los ||| no longer work ||| 0.25 0.0006501 1.90631e-06 5.10825e-12 2.718 ||| 0-2 ||| 4 524574 +los ||| no means the ||| 0.025641 0.122289 1.90631e-06 2.11592e-07 2.718 ||| 0-2 ||| 39 524574 +los ||| no problem identifying the parties involved ||| 1 0.122289 1.90631e-06 6.09925e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| no problem identifying the parties ||| 1 0.122289 1.90631e-06 1.76381e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| no problem identifying the ||| 1 0.122289 1.90631e-06 2.40301e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| no progress is ||| 0.142857 0.0392854 1.90631e-06 2.07073e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| no progress ||| 0.010101 0.0392854 1.90631e-06 6.60706e-07 2.718 ||| 0-1 ||| 99 524574 +los ||| no two ||| 0.1 0.0004357 1.90631e-06 1.2143e-08 2.718 ||| 0-1 ||| 10 524574 +los ||| no ||| 1.90168e-05 1.28e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 52585 524574 +los ||| nodes ||| 0.0625 0.238095 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| noise is measured , ||| 0.333333 0.0212972 1.90631e-06 1.90362e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| noise is measured ||| 0.333333 0.0212972 1.90631e-06 1.59626e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| noise is ||| 0.0277778 0.0212972 1.90631e-06 1.3414e-06 2.718 ||| 0-0 ||| 36 524574 +los ||| noise levels ||| 0.0222222 0.222552 1.90631e-06 2.69465e-08 2.718 ||| 0-1 ||| 45 524574 +los ||| noise ||| 0.00334001 0.0212972 9.53154e-06 4.28e-05 2.718 ||| 0-0 ||| 1497 524574 +los ||| non-EU ||| 0.00122549 0.0663616 1.90631e-06 5.64e-05 2.718 ||| 0-0 ||| 816 524574 +los ||| non-GMO ||| 0.05 0.0638298 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| non-LDCs ) ||| 0.166667 0.157895 3.81262e-06 1.26482e-08 2.718 ||| 0-0 ||| 12 524574 +los ||| non-LDCs ||| 0.0689655 0.157895 3.81262e-06 8.8e-06 2.718 ||| 0-0 ||| 29 524574 +los ||| non-Latvian ||| 0.5 0.333333 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| non-State actors ||| 0.1 0.232622 1.90631e-06 1.3144e-10 2.718 ||| 0-1 ||| 10 524574 +los ||| non-compliant ||| 0.03125 0.0327869 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 32 524574 +los ||| non-euro area European Union ||| 0.111111 0.0714286 1.90631e-06 6.03777e-15 2.718 ||| 0-0 ||| 9 524574 +los ||| non-euro area European ||| 0.111111 0.0714286 1.90631e-06 1.0832e-11 2.718 ||| 0-0 ||| 9 524574 +los ||| non-euro area ||| 0.0149254 0.0714286 1.90631e-06 3.23934e-09 2.718 ||| 0-0 ||| 67 524574 +los ||| non-euro ||| 0.0285714 0.0714286 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 35 524574 +los ||| non-hazardous stone , and ||| 1 0.128655 1.90631e-06 4.47534e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| non-hazardous stone , ||| 1 0.128655 1.90631e-06 3.57287e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| non-hazardous stone ||| 1 0.128655 1.90631e-06 2.996e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| non-hazardous ||| 0.046875 0.128655 5.71893e-06 2.14e-05 2.718 ||| 0-0 ||| 64 524574 +los ||| non-member states ||| 0.142857 0.161074 1.90631e-06 1.75216e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| non-member ||| 0.0309278 0.161074 5.71893e-06 2.33e-05 2.718 ||| 0-0 ||| 97 524574 +los ||| non-members ||| 0.0555556 0.115385 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| non-mercury ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| non-nuclear ||| 0.0175439 0.0275862 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 57 524574 +los ||| non-profit making agencies ||| 1 0.0227727 1.90631e-06 4.68872e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| non-proprietary ||| 0.5 0.5 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| non-regional ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| non-toxic agents ||| 1 0.226396 1.90631e-06 8.672e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| none of the arguments put forward by ||| 1 0.122289 1.90631e-06 3.58409e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| none of the arguments put forward ||| 1 0.122289 1.90631e-06 6.82672e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| none of the arguments put ||| 1 0.122289 1.90631e-06 1.22694e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| none of the arguments ||| 0.333333 0.122289 1.90631e-06 1.11277e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| none of the ||| 0.0027248 0.122289 1.90631e-06 4.61732e-07 2.718 ||| 0-2 ||| 367 524574 +los ||| none the less ||| 0.0625 0.122289 1.90631e-06 1.44557e-09 2.718 ||| 0-1 ||| 16 524574 +los ||| none the ||| 0.0263158 0.122289 1.90631e-06 8.49333e-06 2.718 ||| 0-1 ||| 38 524574 +los ||| nonetheless they ||| 0.5 0.0072404 1.90631e-06 6.24592e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| nonetheless wish to make clear our ||| 1 0.0248369 1.90631e-06 4.12779e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| nor excuse those ||| 0.5 0.284705 1.90631e-06 1.63757e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| nor the ||| 0.00195695 0.122289 3.81262e-06 2.28634e-05 2.718 ||| 0-1 ||| 1022 524574 +los ||| nor will the ||| 0.0588235 0.122289 1.90631e-06 1.97796e-07 2.718 ||| 0-2 ||| 17 524574 +los ||| normal ||| 0.00038956 0.0004122 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2567 524574 +los ||| normalising the ||| 0.142857 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| normally supply the nation 's ||| 0.5 0.0349814 1.90631e-06 3.22741e-18 2.718 ||| 0-4 ||| 2 524574 +los ||| noses to the ||| 1 0.122289 1.90631e-06 5.33628e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| not , as well as the ||| 1 0.122289 1.90631e-06 2.88359e-11 2.718 ||| 0-5 ||| 1 524574 +los ||| not all ||| 0.0028436 0.0177928 5.71893e-06 9.17813e-06 2.718 ||| 0-1 ||| 1055 524574 +los ||| not allow terrorist ||| 0.5 0.0058613 1.90631e-06 1.44946e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| not allow the ||| 0.0384615 0.122289 1.90631e-06 3.55288e-07 2.718 ||| 0-2 ||| 26 524574 +los ||| not argue that sort conflict is over ||| 1 0.0037547 1.90631e-06 3.5913e-23 2.718 ||| 0-6 ||| 1 524574 +los ||| not aware of the ||| 0.2 0.122289 1.90631e-06 1.10587e-08 2.718 ||| 0-3 ||| 5 524574 +los ||| not backed by the ||| 1 0.122289 1.90631e-06 8.84209e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| not be authorised , and the ||| 1 0.122289 1.90631e-06 2.85453e-13 2.718 ||| 0-5 ||| 1 524574 +los ||| not be possible for fish ||| 1 0.0906807 1.90631e-06 1.33882e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| not be the Council that ||| 1 0.122289 1.90631e-06 1.54386e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| not be the Council ||| 1 0.122289 1.90631e-06 9.17787e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| not be the ||| 0.00636943 0.122289 1.90631e-06 2.6541e-05 2.718 ||| 0-2 ||| 157 524574 +los ||| not been a single ||| 0.25 0.0083277 1.90631e-06 5.40198e-11 2.718 ||| 0-3 ||| 4 524574 +los ||| not been appointed ; the ||| 1 0.122289 1.90631e-06 1.68694e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| not buy people ||| 0.5 0.0894672 1.90631e-06 5.13543e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| not cause congestion ||| 0.5 0.0297872 1.90631e-06 1.25853e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| not compare with ||| 1 0.0026076 1.90631e-06 4.14798e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| not compare ||| 0.5 0.0026076 1.90631e-06 6.48679e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| not forgetting the ||| 0.0151515 0.122289 1.90631e-06 4.24705e-09 2.718 ||| 0-2 ||| 66 524574 +los ||| not get the ||| 0.125 0.122289 1.90631e-06 6.40279e-07 2.718 ||| 0-2 ||| 8 524574 +los ||| not given by ||| 1 0.0062464 1.90631e-06 3.79535e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| not have any great ||| 0.2 0.0178119 1.90631e-06 1.4821e-11 2.718 ||| 0-2 ||| 5 524574 +los ||| not have any ||| 0.0149254 0.0178119 1.90631e-06 3.77124e-08 2.718 ||| 0-2 ||| 67 524574 +los ||| not have the proper identity ||| 0.5 0.122289 1.90631e-06 3.13118e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| not have the proper ||| 0.5 0.122289 1.90631e-06 1.55009e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| not have the ||| 0.033557 0.122289 9.53154e-06 1.75151e-05 2.718 ||| 0-2 ||| 149 524574 +los ||| not include the ||| 0.2 0.122289 1.90631e-06 1.939e-07 2.718 ||| 0-2 ||| 5 524574 +los ||| not individual ||| 1 0.110351 1.90631e-06 4.38814e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| not introduced , the Member States would ||| 1 0.122289 1.90631e-06 2.33136e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| not introduced , the Member States ||| 1 0.122289 1.90631e-06 3.97253e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| not introduced , the Member ||| 1 0.122289 1.90631e-06 8.32466e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| not introduced , the ||| 1 0.122289 1.90631e-06 1.6155e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| not just fertiliser but ||| 0.5 0.128205 1.90631e-06 4.29794e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| not just fertiliser ||| 0.5 0.128205 1.90631e-06 6.28905e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| not know whether all Members have now ||| 1 0.168879 1.90631e-06 1.29959e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| not know whether all Members have ||| 1 0.168879 1.90631e-06 6.30902e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| not know whether all Members ||| 1 0.168879 1.90631e-06 5.27519e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| not least , the ||| 0.0204082 0.122289 3.81262e-06 4.28587e-08 2.718 ||| 0-3 ||| 98 524574 +los ||| not least - those of ||| 1 0.284705 1.90631e-06 2.86879e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| not least - those ||| 1 0.284705 1.90631e-06 5.27701e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| not least from Mr Watson , the ||| 1 0.122289 1.90631e-06 6.30785e-20 2.718 ||| 0-6 ||| 1 524574 +los ||| not least the ||| 0.00540541 0.122289 1.90631e-06 3.59388e-07 2.718 ||| 0-2 ||| 185 524574 +los ||| not like the ||| 0.1 0.122289 1.90631e-06 2.60081e-06 2.718 ||| 0-2 ||| 10 524574 +los ||| not make progress ||| 0.25 0.0392854 1.90631e-06 5.03595e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| not necessarily at national level ||| 1 0.0129851 1.90631e-06 9.78301e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| not necessarily at national ||| 1 0.0129851 1.90631e-06 1.14368e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| not only do the ||| 0.166667 0.122289 1.90631e-06 5.6e-09 2.718 ||| 0-3 ||| 6 524574 +los ||| not only have the ||| 0.0625 0.122289 1.90631e-06 1.94961e-08 2.718 ||| 0-3 ||| 16 524574 +los ||| not only set out the ||| 1 0.122289 1.90631e-06 3.64903e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| not only the ||| 0.00901917 0.122289 1.52505e-05 1.63013e-06 2.718 ||| 0-2 ||| 887 524574 +los ||| not the preserve ||| 1 0.122289 1.90631e-06 1.68417e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| not the same ||| 0.0285714 0.122289 1.90631e-06 1.17848e-06 2.718 ||| 0-1 ||| 35 524574 +los ||| not the ||| 0.0107004 0.122289 6.29082e-05 0.0014645 2.718 ||| 0-1 ||| 3084 524574 +los ||| not their ||| 0.0151515 0.0236713 1.90631e-06 7.81044e-06 2.718 ||| 0-1 ||| 66 524574 +los ||| not these ||| 0.0625 0.0240362 1.90631e-06 8.32187e-06 2.718 ||| 0-1 ||| 16 524574 +los ||| not those ||| 0.0649351 0.284705 9.53154e-06 5.70073e-05 2.718 ||| 0-1 ||| 77 524574 +los ||| not to fear their neighbours or ||| 1 0.0245424 1.90631e-06 5.07679e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| not to fear their neighbours ||| 1 0.0245424 1.90631e-06 4.44047e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| not to mention the ||| 0.0027933 0.122289 1.90631e-06 1.26489e-08 2.718 ||| 0-3 ||| 358 524574 +los ||| not want Mr Barroso , who do ||| 1 0.000743 1.90631e-06 3.88019e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| not want Mr Barroso , who ||| 1 0.000743 1.90631e-06 1.1295e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| not want Mr Barroso , ||| 1 0.000743 1.90631e-06 1.28062e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| not want Mr Barroso ||| 1 0.000743 1.90631e-06 1.07385e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| not want Mr ||| 1 0.000743 1.90631e-06 2.68463e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| not what these ||| 1 0.0240362 1.90631e-06 1.16764e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| notably those put into ||| 1 0.284705 1.90631e-06 1.56889e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| notably those put ||| 1 0.284705 1.90631e-06 1.52809e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| notably those ||| 0.0277778 0.284705 1.90631e-06 1.3859e-07 2.718 ||| 0-1 ||| 36 524574 +los ||| note of the ||| 0.00232558 0.122289 1.90631e-06 2.43459e-06 2.718 ||| 0-2 ||| 430 524574 +los ||| note that the ||| 0.00348432 0.122289 1.90631e-06 7.53322e-07 2.718 ||| 0-2 ||| 287 524574 +los ||| note the ||| 0.00985222 0.122289 3.81262e-06 4.4783e-05 2.718 ||| 0-1 ||| 203 524574 +los ||| notes ||| 0.00350877 0.0539514 7.62523e-06 6.9e-05 2.718 ||| 0-0 ||| 1140 524574 +los ||| nothing in the ||| 0.04 0.122289 1.90631e-06 1.70869e-06 2.718 ||| 0-2 ||| 25 524574 +los ||| nothing random about the ||| 1 0.122289 1.90631e-06 2.03223e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| nothing to change the ||| 0.1 0.122289 1.90631e-06 8.654e-10 2.718 ||| 0-3 ||| 10 524574 +los ||| notice the ||| 0.0454545 0.122289 1.90631e-06 1.65148e-05 2.718 ||| 0-1 ||| 22 524574 +los ||| noticed my ||| 1 0.0086409 1.90631e-06 6.68621e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| noticed the alarming increase ||| 1 0.122289 1.90631e-06 2.68793e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| noticed the alarming ||| 1 0.122289 1.90631e-06 2.08044e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| noticed the ||| 0.0285714 0.122289 1.90631e-06 4.16088e-06 2.718 ||| 0-1 ||| 35 524574 +los ||| notifying the EU authorities ||| 1 0.122289 1.90631e-06 5.65428e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| notifying the EU ||| 1 0.122289 1.90631e-06 8.4899e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| notifying the ||| 0.2 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| noting of the ||| 0.125 0.122289 1.90631e-06 1.16599e-07 2.718 ||| 0-2 ||| 8 524574 +los ||| novel foods and an embargo on imports ||| 1 0.2715 1.90631e-06 8.08859e-27 2.718 ||| 0-1 ||| 1 524574 +los ||| novel foods and an embargo on ||| 1 0.2715 1.90631e-06 7.22196e-22 2.718 ||| 0-1 ||| 1 524574 +los ||| novel foods and an embargo ||| 1 0.2715 1.90631e-06 1.07935e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| novel foods and an ||| 1 0.2715 1.90631e-06 3.72191e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| novel foods and ||| 0.0434783 0.2715 1.90631e-06 8.37381e-12 2.718 ||| 0-1 ||| 23 524574 +los ||| novel foods ||| 0.00578035 0.2715 1.90631e-06 6.6852e-10 2.718 ||| 0-1 ||| 173 524574 +los ||| now , the ||| 0.00755668 0.122289 5.71893e-06 0.000105374 2.718 ||| 0-2 ||| 397 524574 +los ||| now about the ||| 0.0666667 0.122289 1.90631e-06 1.24969e-06 2.718 ||| 0-2 ||| 15 524574 +los ||| now count the individual ||| 0.333333 0.122289 1.90631e-06 3.41092e-12 2.718 ||| 0-2 ||| 3 524574 +los ||| now count the ||| 0.333333 0.122289 1.90631e-06 2.41225e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| now every ||| 0.333333 0.144232 1.90631e-06 6.72331e-06 2.718 ||| 0-1 ||| 3 524574 +los ||| now everyone is ||| 0.2 0.080245 1.90631e-06 6.65996e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| now everyone ||| 0.1 0.080245 1.90631e-06 2.12499e-06 2.718 ||| 0-1 ||| 10 524574 +los ||| now for ||| 0.004329 0.0015353 1.90631e-06 1.81642e-06 2.718 ||| 0-1 ||| 231 524574 +los ||| now in the ||| 0.0041841 0.122289 1.90631e-06 1.89132e-05 2.718 ||| 0-2 ||| 239 524574 +los ||| now is the implementation ||| 1 0.122289 1.90631e-06 2.15176e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| now is the time ||| 0.00322581 0.122289 1.90631e-06 4.5464e-08 2.718 ||| 0-2 ||| 310 524574 +los ||| now is the ||| 0.00552486 0.122289 3.81262e-06 2.76932e-05 2.718 ||| 0-2 ||| 362 524574 +los ||| now it is time for the ||| 0.166667 0.122289 1.90631e-06 6.21385e-12 2.718 ||| 0-5 ||| 6 524574 +los ||| now support the ||| 0.166667 0.122289 1.90631e-06 3.02105e-07 2.718 ||| 0-2 ||| 6 524574 +los ||| now take the opportunity ||| 0.25 0.122289 1.90631e-06 2.55927e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| now take the ||| 0.0454545 0.122289 1.90631e-06 1.42261e-06 2.718 ||| 0-2 ||| 22 524574 +los ||| now the ||| 0.00732218 0.122289 1.33442e-05 0.000883607 2.718 ||| 0-1 ||| 956 524574 +los ||| now those ||| 0.0833333 0.284705 1.90631e-06 3.43954e-05 2.718 ||| 0-1 ||| 12 524574 +los ||| now to the ||| 0.0037594 0.122289 1.90631e-06 7.85157e-05 2.718 ||| 0-2 ||| 266 524574 +los ||| nuclear energy ||| 0.000696379 0.0002866 1.90631e-06 2.5781e-10 2.718 ||| 0-0 ||| 1436 524574 +los ||| nuclear reactors ||| 0.00520833 0.19871 1.90631e-06 5.82333e-09 2.718 ||| 0-1 ||| 192 524574 +los ||| nuclear ||| 0.000219346 0.0002866 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 9118 524574 +los ||| number of cases ||| 0.00396825 0.136512 1.90631e-06 4.47739e-08 2.718 ||| 0-2 ||| 252 524574 +los ||| number of people of the ||| 1 0.122289 1.90631e-06 5.52137e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| number of smokers in ||| 1 0.352941 1.90631e-06 6.04555e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| number of smokers ||| 0.142857 0.352941 1.90631e-06 2.82443e-09 2.718 ||| 0-2 ||| 7 524574 +los ||| number of these stations ||| 0.5 0.0240362 1.90631e-06 7.99918e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| number of these ||| 0.00970874 0.0240362 1.90631e-06 6.55671e-08 2.718 ||| 0-2 ||| 103 524574 +los ||| number of ||| 0.000361626 0.0019787 1.33442e-05 1.6366e-06 2.718 ||| 0-1 ||| 19357 524574 +los ||| number the ||| 0.5 0.122289 1.90631e-06 0.000212248 2.718 ||| 0-1 ||| 2 524574 +los ||| numbers of ||| 0.00159744 0.0019787 1.90631e-06 1.61742e-07 2.718 ||| 0-1 ||| 626 524574 +los ||| numbers ||| 0.00048852 0.0072805 1.90631e-06 1.65e-05 2.718 ||| 0-0 ||| 2047 524574 +los ||| numerous attempts ||| 0.111111 0.155728 1.90631e-06 6.86224e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| nut ||| 0.0114943 0.0652174 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 87 524574 +los ||| nutritional ||| 0.0187266 0.0363636 9.53154e-06 9.7e-06 2.718 ||| 0-0 ||| 267 524574 +los ||| obey the ||| 0.0172414 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-1 ||| 58 524574 +los ||| object in the strongest terms to ||| 1 0.122289 1.90631e-06 9.28442e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| object in the strongest terms ||| 1 0.122289 1.90631e-06 1.04486e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| object in the strongest ||| 1 0.122289 1.90631e-06 9.51948e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| object in the ||| 0.5 0.122289 1.90631e-06 1.32215e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| objective , on the one ||| 1 0.122289 1.90631e-06 9.54407e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| objective , on the ||| 0.5 0.122289 1.90631e-06 2.28984e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| objectives , ||| 0.00140252 0.0591921 1.90631e-06 9.31021e-05 2.718 ||| 0-0 ||| 713 524574 +los ||| objectives are established ||| 0.5 0.0591921 1.90631e-06 1.77325e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| objectives are ||| 0.00436681 0.0591921 1.90631e-06 1.18453e-05 2.718 ||| 0-0 ||| 229 524574 +los ||| objectives have ||| 0.05 0.0591921 1.90631e-06 9.33702e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| objectives ||| 0.00123018 0.0591921 3.43136e-05 0.0007807 2.718 ||| 0-0 ||| 14632 524574 +los ||| observance of the ||| 0.00970874 0.122289 1.90631e-06 1.00275e-07 2.718 ||| 0-2 ||| 103 524574 +los ||| observe the ||| 0.00342466 0.122289 1.90631e-06 8.19307e-06 2.718 ||| 0-1 ||| 292 524574 +los ||| observe ||| 0.000927644 0.0015588 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1078 524574 +los ||| observers ||| 0.00330907 0.142857 9.53154e-06 0.0002129 2.718 ||| 0-0 ||| 1511 524574 +los ||| observing the ||| 0.015873 0.122289 3.81262e-06 3.26007e-06 2.718 ||| 0-1 ||| 126 524574 +los ||| obstacles ' ||| 1 0.140146 1.90631e-06 1.47941e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| obstacles , ||| 0.00787402 0.140146 1.90631e-06 5.1363e-05 2.718 ||| 0-0 ||| 127 524574 +los ||| obstacles ||| 0.00226757 0.140146 1.14379e-05 0.0004307 2.718 ||| 0-0 ||| 2646 524574 +los ||| obstructing the efforts ||| 0.25 0.122289 1.90631e-06 7.30255e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| obstructing the ||| 0.0222222 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-1 ||| 45 524574 +los ||| obstructing ||| 0.00877193 0.0151515 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 114 524574 +los ||| obtain a ||| 0.00241546 0.0009687 1.90631e-06 1.28545e-07 2.718 ||| 0-0 ||| 414 524574 +los ||| obtain the necessary ||| 0.333333 0.122289 1.90631e-06 6.63326e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| obtain the ||| 0.00967742 0.122289 5.71893e-06 2.57803e-05 2.718 ||| 0-1 ||| 310 524574 +los ||| obtain ||| 0.00106534 0.0009687 5.71893e-06 2.9e-06 2.718 ||| 0-0 ||| 2816 524574 +los ||| occupation is the performance ||| 1 0.122289 1.90631e-06 1.86159e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| occupation is the ||| 0.666667 0.122289 3.81262e-06 8.20082e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| occupational ||| 0.00595238 0.0559758 5.71893e-06 3.6e-05 2.718 ||| 0-0 ||| 504 524574 +los ||| occupied ||| 0.00119332 0.0012005 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 838 524574 +los ||| of , human ||| 0.333333 0.319795 1.90631e-06 0.000126457 2.718 ||| 0-2 ||| 3 524574 +los ||| of , the ||| 0.0379747 0.122289 5.71893e-06 0.00278099 2.718 ||| 0-2 ||| 79 524574 +los ||| of , ||| 0.00677966 0.0019787 1.14379e-05 0.000394447 2.718 ||| 0-0 ||| 885 524574 +los ||| of American States Observation Mission and the ||| 1 0.122289 1.90631e-06 1.74852e-24 2.718 ||| 0-6 ||| 1 524574 +los ||| of Budgets of the European Union ||| 1 0.122289 1.90631e-06 2.38659e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| of Budgets of the European ||| 1 0.122289 1.90631e-06 4.28164e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| of Budgets of the ||| 1 0.122289 1.90631e-06 1.28043e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| of CFCs - would ||| 1 0.27957 1.90631e-06 3.04479e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| of CFCs - ||| 0.5 0.27957 1.90631e-06 5.18818e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| of CFCs ||| 0.0588235 0.27957 1.90631e-06 1.37541e-06 2.718 ||| 0-1 ||| 17 524574 +los ||| of Community funds . ||| 0.0333333 0.220459 1.90631e-06 9.97665e-11 2.718 ||| 0-2 ||| 30 524574 +los ||| of Community funds ||| 0.00862069 0.220459 1.90631e-06 3.29371e-08 2.718 ||| 0-2 ||| 116 524574 +los ||| of ECU ||| 0.0106952 0.0019787 3.81262e-06 1.51157e-07 2.718 ||| 0-0 ||| 187 524574 +los ||| of EUR ||| 0.00408998 0.0181521 3.81262e-06 1.88765e-06 2.718 ||| 0-0 0-1 ||| 489 524574 +los ||| of Europe do we , the ||| 0.5 0.122289 1.90631e-06 5.48781e-11 2.718 ||| 0-5 ||| 2 524574 +los ||| of European pension ||| 1 0.0543335 1.90631e-06 4.36472e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| of Europeans ||| 0.00141243 0.354859 1.90631e-06 0.000148419 2.718 ||| 0-1 ||| 708 524574 +los ||| of Fundamental ||| 0.0833333 0.193171 1.90631e-06 4.5377e-06 2.718 ||| 0-0 0-1 ||| 12 524574 +los ||| of Government attending . we need the ||| 1 0.122289 1.90631e-06 3.04772e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| of Governments and Ministers ||| 1 0.127711 1.90631e-06 8.20623e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| of Governments and ||| 0.5 0.127711 1.90631e-06 3.50693e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| of Governments ||| 0.125 0.127711 1.90631e-06 2.79975e-06 2.718 ||| 0-1 ||| 8 524574 +los ||| of Ireland 's ||| 0.2 0.0349814 1.90631e-06 7.56135e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| of Latvia eight months before the ||| 1 0.122289 1.90631e-06 5.52346e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| of PNR ||| 0.0416667 0.159742 1.90631e-06 9.14402e-06 2.718 ||| 0-1 ||| 24 524574 +los ||| of a candidate country , ||| 0.333333 0.0335599 1.90631e-06 1.58861e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| of a candidate country ||| 0.047619 0.0335599 1.90631e-06 1.33211e-10 2.718 ||| 0-2 ||| 21 524574 +los ||| of a candidate ||| 0.0555556 0.0335599 1.90631e-06 3.70134e-07 2.718 ||| 0-2 ||| 18 524574 +los ||| of a ||| 0.000117118 0.0019787 9.53154e-06 0.000146612 2.718 ||| 0-0 ||| 42692 524574 +los ||| of adjusting ||| 0.0227273 0.0019787 1.90631e-06 4.63064e-09 2.718 ||| 0-0 ||| 44 524574 +los ||| of affairs are ||| 0.333333 0.178913 1.90631e-06 6.60044e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| of affairs ||| 0.00420168 0.178913 3.81262e-06 4.35021e-05 2.718 ||| 0-1 ||| 476 524574 +los ||| of aircraft ||| 0.00746269 0.0825531 1.90631e-06 1.08688e-06 2.718 ||| 0-0 0-1 ||| 134 524574 +los ||| of all , the ||| 0.0142857 0.122289 1.90631e-06 1.31413e-05 2.718 ||| 0-3 ||| 70 524574 +los ||| of all citizens ||| 0.00657895 0.293572 1.90631e-06 3.88862e-06 2.718 ||| 0-2 ||| 152 524574 +los ||| of all groups , ||| 0.166667 0.143803 1.90631e-06 6.07932e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| of all groups ||| 0.0322581 0.143803 1.90631e-06 5.09776e-07 2.718 ||| 0-2 ||| 31 524574 +los ||| of all of the ||| 0.00819672 0.122289 1.90631e-06 5.99066e-06 2.718 ||| 0-3 ||| 122 524574 +los ||| of all take into account the ||| 1 0.122289 1.90631e-06 5.23685e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| of all the other ||| 0.0185185 0.0364774 1.90631e-06 1.08285e-09 2.718 ||| 0-0 0-1 0-2 0-3 ||| 54 524574 +los ||| of all the ||| 0.00110824 0.122289 5.71893e-06 0.000110195 2.718 ||| 0-2 ||| 2707 524574 +los ||| of all there are the ||| 0.25 0.122289 1.90631e-06 5.12506e-09 2.718 ||| 0-4 ||| 4 524574 +los ||| of all times ||| 0.0588235 0.0314168 1.90631e-06 6.46853e-08 2.718 ||| 0-2 ||| 17 524574 +los ||| of all ||| 0.000683216 0.0177928 1.71568e-05 0.000146147 2.718 ||| 0-1 ||| 13173 524574 +los ||| of an iceberg ||| 0.142857 0.0019787 1.90631e-06 5.88052e-12 2.718 ||| 0-0 ||| 7 524574 +los ||| of an ||| 0.000119861 0.0019787 1.90631e-06 1.47013e-05 2.718 ||| 0-0 ||| 8343 524574 +los ||| of anti-microbial medicines as additives ; ||| 1 0.240938 1.90631e-06 3.94217e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| of anti-microbial medicines as additives ||| 1 0.240938 1.90631e-06 1.27992e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| of anti-microbial medicines as ||| 1 0.240938 1.90631e-06 2.55985e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| of anti-microbial medicines ||| 0.25 0.240938 1.90631e-06 2.50857e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| of any suspicions ||| 1 0.0178119 1.90631e-06 5.52316e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| of any ||| 0.00227865 0.0178119 1.33442e-05 5.02106e-05 2.718 ||| 0-1 ||| 3072 524574 +los ||| of association , the ||| 0.0909091 0.122289 1.90631e-06 4.39397e-08 2.718 ||| 0-3 ||| 11 524574 +los ||| of awareness of the ||| 0.0526316 0.122289 1.90631e-06 3.79059e-08 2.718 ||| 0-3 ||| 19 524574 +los ||| of balancing the ||| 0.0526316 0.122289 1.90631e-06 1.00275e-07 2.718 ||| 0-2 ||| 19 524574 +los ||| of benefit to the ||| 0.0294118 0.122289 1.90631e-06 2.72903e-07 2.718 ||| 0-3 ||| 34 524574 +los ||| of both its ||| 0.166667 0.0211371 1.90631e-06 1.92274e-07 2.718 ||| 0-2 ||| 6 524574 +los ||| of both the ||| 0.00668151 0.0531751 5.71893e-06 1.69946e-06 2.718 ||| 0-0 0-1 0-2 ||| 449 524574 +los ||| of brominated ||| 0.333333 0.0943227 3.81262e-06 4.49834e-08 2.718 ||| 0-0 0-1 ||| 6 524574 +los ||| of buildings ||| 0.00414938 0.283826 1.90631e-06 3.40373e-05 2.718 ||| 0-1 ||| 241 524574 +los ||| of by ||| 0.0204082 0.0062464 1.90631e-06 8.80588e-05 2.718 ||| 0-1 ||| 49 524574 +los ||| of candidates ||| 0.0143885 0.159091 3.81262e-06 1.70214e-05 2.718 ||| 0-1 ||| 139 524574 +los ||| of cases ||| 0.00152905 0.136512 1.90631e-06 9.04889e-05 2.718 ||| 0-1 ||| 654 524574 +los ||| of causing the ||| 0.25 0.122289 1.90631e-06 6.87934e-07 2.718 ||| 0-2 ||| 4 524574 +los ||| of certain ||| 0.000471921 0.00252295 1.90631e-06 2.0904e-07 2.718 ||| 0-0 0-1 ||| 2119 524574 +los ||| of citizens have ||| 0.0909091 0.0019787 1.90631e-06 4.31185e-09 2.718 ||| 0-0 ||| 11 524574 +los ||| of citizens ||| 0.00106667 0.0019787 3.81262e-06 3.60528e-07 2.718 ||| 0-0 ||| 1875 524574 +los ||| of clinging to the Americans ||| 1 0.122289 1.90631e-06 2.14261e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| of clinging to the ||| 0.5 0.122289 1.90631e-06 2.27937e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| of commitments ||| 0.00735294 0.115775 1.90631e-06 3.97999e-05 2.718 ||| 0-1 ||| 136 524574 +los ||| of compliance with the ||| 0.0135135 0.122289 1.90631e-06 3.42972e-09 2.718 ||| 0-3 ||| 74 524574 +los ||| of compulsory ||| 0.0434783 0.00693385 1.90631e-06 8.69899e-08 2.718 ||| 0-0 0-1 ||| 23 524574 +los ||| of consumer ||| 0.00534759 0.184092 1.90631e-06 0.000173106 2.718 ||| 0-1 ||| 187 524574 +los ||| of consumers ||| 0.000848896 0.420328 1.90631e-06 0.000451602 2.718 ||| 0-1 ||| 1178 524574 +los ||| of course , of the ||| 0.0277778 0.122289 1.90631e-06 1.90751e-07 2.718 ||| 0-4 ||| 36 524574 +los ||| of course , we do need to ||| 1 0.0019787 1.90631e-06 1.58129e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| of course , we do need ||| 1 0.0019787 1.90631e-06 1.77957e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| of course , we do ||| 0.166667 0.0019787 1.90631e-06 1.94086e-11 2.718 ||| 0-0 ||| 6 524574 +los ||| of course , we ||| 0.00456621 0.0019787 1.90631e-06 5.64974e-09 2.718 ||| 0-0 ||| 219 524574 +los ||| of course , with ||| 0.00925926 0.0019787 1.90631e-06 3.18237e-09 2.718 ||| 0-0 ||| 108 524574 +los ||| of course , ||| 0.000136621 0.0019787 3.81262e-06 4.97674e-07 2.718 ||| 0-0 ||| 14639 524574 +los ||| of course most people ||| 1 0.0019787 1.90631e-06 1.58758e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| of course most ||| 1 0.0019787 1.90631e-06 1.80366e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| of course the ||| 0.0051458 0.122289 5.71893e-06 2.94226e-05 2.718 ||| 0-2 ||| 583 524574 +los ||| of course those ||| 0.0909091 0.284705 1.90631e-06 1.14531e-06 2.718 ||| 0-2 ||| 11 524574 +los ||| of course ||| 0.000218978 0.0019787 1.14379e-05 4.1732e-06 2.718 ||| 0-0 ||| 27400 524574 +los ||| of crops ||| 0.0135135 0.0019787 1.90631e-06 5.58984e-08 2.718 ||| 0-0 ||| 74 524574 +los ||| of day , the ||| 0.333333 0.122289 1.90631e-06 7.12491e-07 2.718 ||| 0-3 ||| 3 524574 +los ||| of defending ourselves along a ||| 0.5 0.0019787 1.90631e-06 4.39463e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| of defending ourselves along ||| 0.5 0.0019787 1.90631e-06 9.91439e-16 2.718 ||| 0-0 ||| 2 524574 +los ||| of defending ourselves ||| 0.2 0.0019787 1.90631e-06 5.6816e-12 2.718 ||| 0-0 ||| 5 524574 +los ||| of defending ||| 0.00413223 0.0019787 1.90631e-06 1.7861e-08 2.718 ||| 0-0 ||| 242 524574 +los ||| of describing the ||| 0.0909091 0.122289 1.90631e-06 1.35255e-07 2.718 ||| 0-2 ||| 11 524574 +los ||| of directors ||| 0.0126582 0.194581 1.90631e-06 4.17516e-06 2.718 ||| 0-1 ||| 79 524574 +los ||| of disasters ||| 0.00625 0.0797759 1.90631e-06 1.58036e-05 2.718 ||| 0-1 ||| 160 524574 +los ||| of duties ||| 0.0136986 0.106914 1.90631e-06 1.5858e-05 2.718 ||| 0-1 ||| 73 524574 +los ||| of each ||| 0.000569476 0.0497499 1.90631e-06 4.78349e-05 2.718 ||| 0-1 ||| 1756 524574 +los ||| of employee ||| 0.0833333 0.277846 1.90631e-06 1.19981e-05 2.718 ||| 0-1 ||| 12 524574 +los ||| of energy resources ||| 0.0123457 0.21958 1.90631e-06 2.34287e-08 2.718 ||| 0-2 ||| 81 524574 +los ||| of environmental and social standards ||| 0.25 0.0037997 1.90631e-06 2.06151e-16 2.718 ||| 0-3 ||| 4 524574 +los ||| of environmental and social ||| 0.25 0.0037997 1.90631e-06 2.82013e-12 2.718 ||| 0-3 ||| 4 524574 +los ||| of environmental ||| 0.00666667 0.0085481 1.90631e-06 1.14807e-06 2.718 ||| 0-0 0-1 ||| 150 524574 +los ||| of error than interim and final payments ||| 1 0.273884 1.90631e-06 2.32656e-24 2.718 ||| 0-6 ||| 1 524574 +los ||| of events ||| 0.00665188 0.140095 5.71893e-06 5.89849e-05 2.718 ||| 0-1 ||| 451 524574 +los ||| of every person ||| 0.037037 0.144232 1.90631e-06 2.28541e-08 2.718 ||| 0-1 ||| 27 524574 +los ||| of every ||| 0.00373134 0.144232 5.71893e-06 0.000177439 2.718 ||| 0-1 ||| 804 524574 +los ||| of existing ||| 0.00689655 0.0464558 1.90631e-06 2.35233e-05 2.718 ||| 0-1 ||| 145 524574 +los ||| of exporting ||| 0.0238095 0.0348432 1.90631e-06 1.05466e-06 2.718 ||| 0-1 ||| 42 524574 +los ||| of external ||| 0.0204082 0.0014061 1.90631e-06 5.27331e-07 2.718 ||| 0-1 ||| 49 524574 +los ||| of extremely ||| 0.0454545 0.0019787 1.90631e-06 3.14222e-07 2.718 ||| 0-0 ||| 22 524574 +los ||| of factual ||| 0.111111 0.0194553 1.90631e-06 4.16758e-08 2.718 ||| 0-0 0-1 ||| 9 524574 +los ||| of food ||| 0.00125628 0.0627571 1.90631e-06 7.29028e-06 2.718 ||| 0-0 0-1 ||| 796 524574 +los ||| of fossil ||| 0.125 0.0154321 1.90631e-06 5.27331e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| of four ||| 0.00318471 0.0019787 1.90631e-06 7.50825e-08 2.718 ||| 0-0 ||| 314 524574 +los ||| of fraud ||| 0.00164745 0.0242626 1.90631e-06 8.08936e-06 2.718 ||| 0-1 ||| 607 524574 +los ||| of frustration on reading it ||| 1 0.0019787 1.90631e-06 7.93422e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| of frustration on reading ||| 1 0.0019787 1.90631e-06 4.46164e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| of frustration on ||| 0.333333 0.0019787 1.90631e-06 1.54918e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| of frustration ||| 0.0131579 0.0019787 1.90631e-06 2.31532e-09 2.718 ||| 0-0 ||| 76 524574 +los ||| of fundamental ||| 0.0135747 0.0480932 5.71893e-06 4.90087e-06 2.718 ||| 0-0 0-1 ||| 221 524574 +los ||| of funds ||| 0.000982318 0.220459 1.90631e-06 0.000203441 2.718 ||| 0-1 ||| 1018 524574 +los ||| of genetically modified ||| 0.0294118 0.0732984 1.90631e-06 6.65905e-11 2.718 ||| 0-2 ||| 34 524574 +los ||| of governments ||| 0.00337838 0.273393 1.90631e-06 0.000193509 2.718 ||| 0-1 ||| 296 524574 +los ||| of groups ||| 0.00735294 0.143803 1.90631e-06 0.00010788 2.718 ||| 0-1 ||| 136 524574 +los ||| of guardian of the ||| 0.166667 0.122289 1.90631e-06 1.77486e-09 2.718 ||| 0-3 ||| 6 524574 +los ||| of guilt among the ||| 1 0.122289 1.90631e-06 8.98464e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| of handling ||| 0.0147059 0.0027599 1.90631e-06 1.57656e-07 2.718 ||| 0-1 ||| 68 524574 +los ||| of his wrath ||| 0.166667 0.0019787 1.90631e-06 3.97574e-13 2.718 ||| 0-0 ||| 6 524574 +los ||| of his ||| 0.000826446 0.0019787 3.81262e-06 9.93934e-07 2.718 ||| 0-0 ||| 2420 524574 +los ||| of how they can ||| 0.142857 0.0072404 1.90631e-06 4.7439e-11 2.718 ||| 0-2 ||| 7 524574 +los ||| of how they ||| 0.027027 0.0072404 1.90631e-06 1.59496e-08 2.718 ||| 0-2 ||| 37 524574 +los ||| of human affairs ||| 0.333333 0.319795 1.90631e-06 1.29793e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| of human rights to be ||| 0.125 0.319795 1.90631e-06 3.41697e-10 2.718 ||| 0-1 ||| 8 524574 +los ||| of human rights to ||| 0.037037 0.319795 1.90631e-06 1.88544e-08 2.718 ||| 0-1 ||| 27 524574 +los ||| of human rights ||| 0.000195465 0.319795 1.90631e-06 2.12185e-07 2.718 ||| 0-1 ||| 5116 524574 +los ||| of human ||| 0.00526316 0.319795 3.81262e-06 0.0010604 2.718 ||| 0-1 ||| 380 524574 +los ||| of illegal immigrants by ||| 0.5 0.155698 1.90631e-06 3.81432e-12 2.718 ||| 0-2 0-3 ||| 2 524574 +los ||| of importance to ||| 0.0117647 0.0019787 1.90631e-06 3.81786e-08 2.718 ||| 0-0 ||| 85 524574 +los ||| of importance ||| 0.00456621 0.0019787 1.90631e-06 4.29657e-07 2.718 ||| 0-0 ||| 219 524574 +los ||| of individual ||| 0.00155039 0.0561646 1.90631e-06 4.25126e-06 2.718 ||| 0-0 0-1 ||| 645 524574 +los ||| of industry ||| 0.00180832 0.0019787 1.90631e-06 4.36934e-07 2.718 ||| 0-0 ||| 553 524574 +los ||| of interest ||| 0.000960615 0.0023774 1.90631e-06 1.58743e-06 2.718 ||| 0-1 ||| 1041 524574 +los ||| of its inhabitants ||| 0.0322581 0.0211371 1.90631e-06 9.16973e-10 2.718 ||| 0-1 ||| 31 524574 +los ||| of its time ||| 0.0416667 0.0211371 1.90631e-06 1.90556e-07 2.718 ||| 0-1 ||| 24 524574 +los ||| of its ||| 0.0017709 0.0211371 3.62199e-05 0.000116073 2.718 ||| 0-1 ||| 10729 524574 +los ||| of jobs are disappearing ||| 1 0.0595578 1.90631e-06 3.27531e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| of jobs are ||| 0.05 0.0595578 1.90631e-06 8.18827e-07 2.718 ||| 0-1 ||| 20 524574 +los ||| of jobs ||| 0.000705716 0.0595578 1.90631e-06 5.39671e-05 2.718 ||| 0-1 ||| 1417 524574 +los ||| of journeys to us ||| 1 0.0019787 1.90631e-06 3.3884e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| of journeys to ||| 1 0.0019787 1.90631e-06 1.17563e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| of journeys ||| 0.0285714 0.0019787 1.90631e-06 1.32304e-08 2.718 ||| 0-0 ||| 35 524574 +los ||| of just a few staff ||| 0.5 0.0154407 1.90631e-06 3.73082e-14 2.718 ||| 0-4 ||| 2 524574 +los ||| of keeping the ||| 0.0185185 0.122289 1.90631e-06 1.36887e-06 2.718 ||| 0-2 ||| 54 524574 +los ||| of knowledge for ||| 1 0.0139626 3.81262e-06 6.98939e-09 2.718 ||| 0-1 0-2 ||| 2 524574 +los ||| of last year the ||| 0.0909091 0.122289 1.90631e-06 1.2702e-09 2.718 ||| 0-3 ||| 11 524574 +los ||| of local ||| 0.0105263 0.0105325 1.90631e-06 6.20506e-07 2.718 ||| 0-0 0-1 ||| 95 524574 +los ||| of making progress ||| 0.0217391 0.0392854 1.90631e-06 1.77517e-08 2.718 ||| 0-2 ||| 46 524574 +los ||| of making the Member States ' ||| 1 0.0444479 1.90631e-06 1.67939e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| of me , you write ||| 1 0.0019787 1.90631e-06 7.43801e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| of me , you ||| 1 0.0019787 1.90631e-06 7.66805e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| of me , ||| 0.0714286 0.0019787 1.90631e-06 2.37496e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| of me ||| 0.00628931 0.0019787 1.90631e-06 1.99151e-06 2.718 ||| 0-0 ||| 159 524574 +los ||| of mercury ||| 0.00578035 0.0040363 1.90631e-06 2.1202e-07 2.718 ||| 0-1 ||| 173 524574 +los ||| of mobile ||| 0.05 0.0320386 1.90631e-06 2.79823e-07 2.718 ||| 0-0 0-1 ||| 20 524574 +los ||| of my ||| 0.00214297 0.0053098 2.66883e-05 2.27993e-06 2.718 ||| 0-0 0-1 ||| 6533 524574 +los ||| of natural resources is to be ||| 1 0.21958 1.90631e-06 3.6844e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| of natural resources is to ||| 0.5 0.21958 1.90631e-06 2.03301e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| of natural resources is ||| 0.125 0.21958 1.90631e-06 2.28792e-10 2.718 ||| 0-2 ||| 8 524574 +los ||| of natural resources ||| 0.00280899 0.21958 1.90631e-06 7.30007e-09 2.718 ||| 0-2 ||| 356 524574 +los ||| of new media ||| 0.0588235 0.0019787 1.90631e-06 5.69362e-11 2.718 ||| 0-0 ||| 17 524574 +los ||| of new ||| 0.000358295 0.0019787 1.90631e-06 1.97695e-06 2.718 ||| 0-0 ||| 2791 524574 +los ||| of old ||| 0.00990099 0.0019787 1.90631e-06 2.54685e-07 2.718 ||| 0-0 ||| 101 524574 +los ||| of one ' ||| 0.1 0.0444479 1.90631e-06 1.20527e-06 2.718 ||| 0-2 ||| 10 524574 +los ||| of one 's ||| 0.03125 0.0349814 1.90631e-06 1.38836e-06 2.718 ||| 0-2 ||| 32 524574 +los ||| of one ’ s ||| 0.0526316 0.0341558 1.90631e-06 6.22112e-10 2.718 ||| 0-3 ||| 19 524574 +los ||| of operation and ||| 0.0769231 0.0019787 1.90631e-06 2.3574e-09 2.718 ||| 0-0 ||| 13 524574 +los ||| of operation ||| 0.00628931 0.0019787 1.90631e-06 1.88202e-07 2.718 ||| 0-0 ||| 159 524574 +los ||| of our information services ||| 0.333333 0.272175 1.90631e-06 9.67496e-11 2.718 ||| 0-3 ||| 3 524574 +los ||| of our policy ||| 0.00694444 0.0248369 1.90631e-06 7.64326e-08 2.718 ||| 0-1 ||| 144 524574 +los ||| of our working ||| 0.333333 0.0248369 1.90631e-06 3.69641e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| of our ||| 0.001373 0.0248369 5.71893e-05 0.000194139 2.718 ||| 0-1 ||| 21850 524574 +los ||| of patient safety ||| 0.0769231 0.135371 1.90631e-06 5.8157e-10 2.718 ||| 0-1 ||| 13 524574 +los ||| of patient ||| 0.0714286 0.135371 1.90631e-06 1.14708e-05 2.718 ||| 0-1 ||| 14 524574 +los ||| of payment ||| 0.00518135 0.0504821 1.90631e-06 9.41041e-06 2.718 ||| 0-1 ||| 193 524574 +los ||| of people of the ||| 0.333333 0.122289 1.90631e-06 1.11588e-06 2.718 ||| 0-3 ||| 3 524574 +los ||| of people would ||| 0.125 0.0894672 1.90631e-06 2.51258e-06 2.718 ||| 0-1 ||| 8 524574 +los ||| of people ||| 0.000931619 0.0894672 9.53154e-06 0.000428133 2.718 ||| 0-1 ||| 5367 524574 +los ||| of personal dignity ||| 0.166667 0.0071955 1.90631e-06 1.597e-11 2.718 ||| 0-1 ||| 6 524574 +los ||| of personal ||| 0.0172414 0.0071955 1.90631e-06 2.21805e-06 2.718 ||| 0-1 ||| 58 524574 +los ||| of persons ||| 0.000938967 0.014449 1.90631e-06 4.34288e-07 2.718 ||| 0-0 0-1 ||| 1065 524574 +los ||| of play with regard to the ||| 0.5 0.122289 1.90631e-06 2.32772e-12 2.718 ||| 0-5 ||| 2 524574 +los ||| of plenty go by ||| 0.5 0.0062464 1.90631e-06 5.56165e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| of pollutants ||| 0.0144928 0.10017 1.90631e-06 3.12049e-06 2.718 ||| 0-1 ||| 69 524574 +los ||| of poor ||| 0.00757576 0.0167739 1.90631e-06 5.46746e-07 2.718 ||| 0-0 0-1 ||| 132 524574 +los ||| of potentially contaminated animal meal ? ||| 1 0.173314 1.90631e-06 1.51072e-24 2.718 ||| 0-3 ||| 1 524574 +los ||| of potentially contaminated animal meal ||| 1 0.173314 1.90631e-06 8.83979e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| of potentially contaminated animal ||| 1 0.173314 1.90631e-06 3.0482e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| of praise at the sterling ||| 0.5 0.122289 1.90631e-06 3.41772e-15 2.718 ||| 0-3 ||| 2 524574 +los ||| of praise at the ||| 0.5 0.122289 1.90631e-06 1.36709e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| of problems of one ' ||| 1 0.0444479 1.90631e-06 8.79325e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| of problems ||| 0.00143885 0.106249 1.90631e-06 0.000166707 2.718 ||| 0-1 ||| 695 524574 +los ||| of procedural ||| 0.1 0.0361861 1.90631e-06 3.33251e-06 2.718 ||| 0-1 ||| 10 524574 +los ||| of procedures for ||| 0.0416667 0.219824 1.90631e-06 9.92837e-07 2.718 ||| 0-1 ||| 24 524574 +los ||| of procedures ||| 0.00396825 0.219824 1.90631e-06 0.00012918 2.718 ||| 0-1 ||| 252 524574 +los ||| of producing an overview of our working ||| 1 0.0248369 1.90631e-06 1.61574e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| of producing an overview of our ||| 1 0.0248369 1.90631e-06 8.48605e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| of products ||| 0.000962464 0.123619 1.90631e-06 1.65519e-05 2.718 ||| 0-0 0-1 ||| 1039 524574 +los ||| of public ||| 0.00234742 0.0090374 1.90631e-06 1.95215e-06 2.718 ||| 0-0 0-1 ||| 426 524574 +los ||| of questioning that ||| 1 0.0019787 1.90631e-06 1.61353e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| of questioning ||| 0.0526316 0.0019787 1.90631e-06 9.59204e-09 2.718 ||| 0-0 ||| 19 524574 +los ||| of quotas ||| 0.00326797 0.0163934 1.90631e-06 3.06613e-06 2.718 ||| 0-1 ||| 306 524574 +los ||| of remaining ||| 0.030303 0.0056726 1.90631e-06 7.3935e-07 2.718 ||| 0-1 ||| 33 524574 +los ||| of removing the vertebral column for two ||| 1 0.122289 1.90631e-06 8.54173e-26 2.718 ||| 0-2 ||| 1 524574 +los ||| of removing the vertebral column for ||| 1 0.122289 1.90631e-06 3.61325e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| of removing the vertebral column ||| 0.5 0.122289 1.90631e-06 4.70127e-20 2.718 ||| 0-2 ||| 2 524574 +los ||| of removing the vertebral ||| 1 0.122289 1.90631e-06 6.7161e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| of removing the ||| 0.03125 0.122289 1.90631e-06 1.67902e-07 2.718 ||| 0-2 ||| 32 524574 +los ||| of safeguarding ||| 0.00510204 0.003785 1.90631e-06 2.66384e-07 2.718 ||| 0-1 ||| 196 524574 +los ||| of schools ’ ||| 1 0.041008 1.90631e-06 5.65742e-09 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| of seeing the ||| 0.0208333 0.122289 1.90631e-06 1.24294e-06 2.718 ||| 0-2 ||| 48 524574 +los ||| of small agricultural holdings , ||| 1 0.0019291 1.90631e-06 6.19216e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| of small agricultural holdings ||| 0.5 0.0019291 1.90631e-06 5.19238e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| of small agricultural ||| 1 0.0019291 1.90631e-06 1.62262e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| of smokers in ||| 0.333333 0.352941 1.90631e-06 1.22182e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| of smokers ||| 0.0416667 0.352941 1.90631e-06 5.70822e-06 2.718 ||| 0-1 ||| 24 524574 +los ||| of social security and taxation ||| 0.333333 0.058762 1.90631e-06 1.57009e-15 2.718 ||| 0-4 ||| 3 524574 +los ||| of social ||| 0.00294985 0.0028892 1.90631e-06 5.01763e-07 2.718 ||| 0-0 0-1 ||| 339 524574 +los ||| of solutions to the ||| 0.166667 0.122289 1.90631e-06 3.95781e-08 2.718 ||| 0-3 ||| 6 524574 +los ||| of some of the ||| 0.00353357 0.122289 1.90631e-06 1.38097e-06 2.718 ||| 0-3 ||| 283 524574 +los ||| of studies ||| 0.00757576 0.13739 1.90631e-06 2.31536e-05 2.718 ||| 0-1 ||| 132 524574 +los ||| of subjects - ||| 0.5 0.0428169 1.90631e-06 1.51544e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| of subjects ||| 0.00775194 0.0428169 1.90631e-06 4.0175e-06 2.718 ||| 0-1 ||| 129 524574 +los ||| of tax increases ||| 0.2 0.0695532 1.90631e-06 5.05174e-10 2.718 ||| 0-2 ||| 5 524574 +los ||| of the Annual ||| 0.333333 0.122289 1.90631e-06 6.76274e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| of the Arab ||| 0.333333 0.122289 1.90631e-06 1.67902e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| of the Commission . ||| 0.000232721 0.122289 1.90631e-06 4.12583e-08 2.718 ||| 0-1 ||| 4297 524574 +los ||| of the Commission ||| 0.000209234 0.122289 5.71893e-06 1.36211e-05 2.718 ||| 0-1 ||| 14338 524574 +los ||| of the Commissioners , thereby revealing the ||| 1 0.122289 1.90631e-06 2.2785e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| of the Committee ||| 0.00010337 0.122289 1.90631e-06 3.5586e-06 2.718 ||| 0-1 ||| 9674 524574 +los ||| of the Community average . ||| 0.047619 0.122289 1.90631e-06 2.8361e-13 2.718 ||| 0-1 ||| 21 524574 +los ||| of the Community average ||| 0.02 0.122289 1.90631e-06 9.36317e-11 2.718 ||| 0-1 ||| 50 524574 +los ||| of the Community ||| 0.000934579 0.122289 1.90631e-06 3.77547e-06 2.718 ||| 0-1 ||| 1070 524574 +los ||| of the Council Presidency to ||| 0.25 0.122289 1.90631e-06 3.56126e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| of the Council Presidency ||| 0.0263158 0.122289 1.90631e-06 4.0078e-10 2.718 ||| 0-1 ||| 38 524574 +los ||| of the Council ||| 8.31255e-05 0.122289 1.90631e-06 8.06398e-06 2.718 ||| 0-1 ||| 12030 524574 +los ||| of the EU ||| 0.000309215 0.0633041 3.81262e-06 1.26067e-05 2.718 ||| 0-1 0-2 ||| 6468 524574 +los ||| of the Europe People 's Party ( ||| 0.5 0.122289 1.90631e-06 1.91836e-19 2.718 ||| 0-1 ||| 2 524574 +los ||| of the Europe People 's Party ||| 0.166667 0.122289 1.90631e-06 1.98917e-16 2.718 ||| 0-1 ||| 6 524574 +los ||| of the Europe People 's ||| 1 0.122289 1.90631e-06 1.31908e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| of the Europe People ||| 0.5 0.122289 1.90631e-06 6.92649e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| of the Europe ||| 0.00684932 0.122289 1.90631e-06 1.17998e-05 2.718 ||| 0-1 ||| 146 524574 +los ||| of the European Aviation ||| 1 0.122289 1.90631e-06 1.40362e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| of the European Parliament ||| 0.000125849 0.122289 1.90631e-06 4.476e-08 2.718 ||| 0-1 ||| 7946 524574 +los ||| of the European Union ||| 0.000165902 0.122289 5.71893e-06 4.34655e-08 2.718 ||| 0-1 ||| 18083 524574 +los ||| of the European countries , ||| 0.2 0.122289 1.90631e-06 3.53097e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| of the European countries ||| 0.0196078 0.122289 1.90631e-06 2.96086e-08 2.718 ||| 0-1 ||| 51 524574 +los ||| of the European ||| 0.00236267 0.122289 1.52505e-05 7.7979e-05 2.718 ||| 0-1 ||| 3386 524574 +los ||| of the Financial Perspective ||| 0.00680272 0.122289 1.90631e-06 4.23954e-13 2.718 ||| 0-1 ||| 147 524574 +los ||| of the Financial ||| 0.142857 0.122289 1.90631e-06 2.3553e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| of the Haitian ||| 1 0.122289 1.90631e-06 1.63238e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| of the House ||| 0.000792393 0.122289 1.90631e-06 5.83228e-06 2.718 ||| 0-1 ||| 1262 524574 +los ||| of the Lisbon Strategy that ||| 0.2 0.122289 1.90631e-06 3.87961e-14 2.718 ||| 0-1 ||| 5 524574 +los ||| of the Lisbon Strategy ||| 0.001321 0.122289 1.90631e-06 2.30633e-12 2.718 ||| 0-1 ||| 757 524574 +los ||| of the Lisbon ||| 0.015625 0.122289 1.90631e-06 5.36355e-07 2.718 ||| 0-1 ||| 64 524574 +los ||| of the Member of ||| 0.25 0.062134 1.90631e-06 3.97464e-08 2.718 ||| 0-0 0-1 ||| 4 524574 +los ||| of the Member ||| 0.00512821 0.062134 1.90631e-06 7.31116e-07 2.718 ||| 0-0 0-1 ||| 195 524574 +los ||| of the Morillon ||| 1 0.122289 1.90631e-06 3.26477e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| of the PSE Group . - ||| 0.00155763 0.122289 1.90631e-06 3.02494e-15 2.718 ||| 0-1 ||| 642 524574 +los ||| of the PSE Group . ||| 0.0015361 0.122289 1.90631e-06 8.01924e-13 2.718 ||| 0-1 ||| 651 524574 +los ||| of the PSE Group ||| 0.00110497 0.122289 1.90631e-06 2.64749e-10 2.718 ||| 0-1 ||| 905 524574 +los ||| of the PSE ||| 0.0204082 0.122289 1.90631e-06 8.1386e-07 2.718 ||| 0-1 ||| 49 524574 +los ||| of the Party of ||| 0.00224215 0.122289 1.90631e-06 1.91178e-07 2.718 ||| 0-1 ||| 446 524574 +los ||| of the Party ||| 0.00419287 0.122289 3.81262e-06 3.51662e-06 2.718 ||| 0-1 ||| 477 524574 +los ||| of the Republic of ||| 0.00262467 0.122289 1.90631e-06 6.02184e-08 2.718 ||| 0-1 ||| 381 524574 +los ||| of the Republic ||| 0.00195695 0.122289 1.90631e-06 1.10769e-06 2.718 ||| 0-1 ||| 511 524574 +los ||| of the Socialist Party , is ||| 0.5 0.122289 1.90631e-06 1.09092e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| of the Socialist Party , ||| 0.1 0.122289 1.90631e-06 3.4808e-12 2.718 ||| 0-1 ||| 10 524574 +los ||| of the Socialist Party ||| 0.0344828 0.122289 1.90631e-06 2.9188e-11 2.718 ||| 0-1 ||| 29 524574 +los ||| of the Socialist ||| 0.047619 0.122289 1.90631e-06 1.93554e-07 2.718 ||| 0-1 ||| 21 524574 +los ||| of the UEN Group . ||| 0.00253165 0.122289 1.90631e-06 2.57351e-13 2.718 ||| 0-1 ||| 395 524574 +los ||| of the UEN Group ||| 0.00196078 0.122289 1.90631e-06 8.49624e-11 2.718 ||| 0-1 ||| 510 524574 +los ||| of the UEN ||| 0.0909091 0.122289 1.90631e-06 2.61182e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| of the Union ||| 0.000156838 0.122289 1.90631e-06 1.29984e-05 2.718 ||| 0-1 ||| 6376 524574 +los ||| of the action ||| 0.00892857 0.122289 1.90631e-06 7.04957e-06 2.718 ||| 0-1 ||| 112 524574 +los ||| of the actual ||| 0.0128205 0.062134 1.90631e-06 2.05303e-07 2.718 ||| 0-0 0-1 ||| 78 524574 +los ||| of the administrative ||| 0.0625 0.122289 1.90631e-06 4.78055e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| of the agenda ||| 0.00840336 0.122289 3.81262e-06 2.31565e-06 2.718 ||| 0-1 ||| 238 524574 +los ||| of the area ||| 0.00325733 0.122289 1.90631e-06 9.6847e-06 2.718 ||| 0-1 ||| 307 524574 +los ||| of the arguments put forward by NATO ||| 1 0.122289 1.90631e-06 1.30331e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| of the arguments put forward by ||| 0.125 0.122289 1.90631e-06 1.81015e-15 2.718 ||| 0-1 ||| 8 524574 +los ||| of the arguments put forward ||| 0.0833333 0.122289 1.90631e-06 3.44784e-13 2.718 ||| 0-1 ||| 12 524574 +los ||| of the arguments put ||| 0.25 0.122289 1.90631e-06 6.19669e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| of the arguments ||| 0.0116279 0.122289 1.90631e-06 5.62007e-07 2.718 ||| 0-1 ||| 86 524574 +los ||| of the art ||| 0.0333333 0.122289 1.90631e-06 1.93554e-07 2.718 ||| 0-1 ||| 30 524574 +los ||| of the best ||| 0.00332226 0.122289 1.90631e-06 3.22979e-06 2.718 ||| 0-1 ||| 301 524574 +los ||| of the burden on the ||| 0.333333 0.122289 1.90631e-06 4.16692e-10 2.718 ||| 0-4 ||| 3 524574 +los ||| of the candidate ||| 0.0217391 0.0779245 1.90631e-06 3.58192e-06 2.718 ||| 0-1 0-2 ||| 46 524574 +los ||| of the coin ||| 0.01 0.122289 1.90631e-06 1.16599e-07 2.718 ||| 0-1 ||| 100 524574 +los ||| of the common ||| 0.00526316 0.122289 1.90631e-06 5.38687e-06 2.718 ||| 0-1 ||| 190 524574 +los ||| of the conclusions ||| 0.004329 0.122289 1.90631e-06 5.87658e-07 2.718 ||| 0-1 ||| 231 524574 +los ||| of the conflict ||| 0.00271003 0.122289 1.90631e-06 9.72435e-07 2.718 ||| 0-1 ||| 369 524574 +los ||| of the country 's ||| 0.0333333 0.0349814 1.90631e-06 7.35979e-09 2.718 ||| 0-3 ||| 30 524574 +los ||| of the day , ||| 0.00273224 0.122289 1.90631e-06 7.12491e-07 2.718 ||| 0-1 ||| 366 524574 +los ||| of the day ||| 0.00384123 0.122289 5.71893e-06 5.97453e-06 2.718 ||| 0-1 ||| 781 524574 +los ||| of the degree to which the ||| 0.333333 0.122289 1.90631e-06 1.49667e-10 2.718 ||| 0-5 ||| 3 524574 +los ||| of the directive , it is necessary ||| 1 0.122289 1.90631e-06 4.4507e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| of the directive , it is ||| 0.2 0.122289 1.90631e-06 1.72977e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| of the directive , it ||| 0.25 0.122289 1.90631e-06 5.51917e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| of the directive , ||| 0.00291545 0.122289 1.90631e-06 3.10359e-07 2.718 ||| 0-1 ||| 343 524574 +los ||| of the directive ||| 0.000405515 0.122289 1.90631e-06 2.60249e-06 2.718 ||| 0-1 ||| 2466 524574 +los ||| of the enormous issue of nuclear safety ||| 1 0.122289 1.90631e-06 5.44963e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| of the enormous issue of nuclear ||| 1 0.122289 1.90631e-06 1.07488e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| of the enormous issue of ||| 1 0.122289 1.90631e-06 2.76318e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| of the enormous issue ||| 1 0.122289 1.90631e-06 5.08274e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| of the enormous ||| 0.00862069 0.122289 1.90631e-06 6.7161e-07 2.718 ||| 0-1 ||| 116 524574 +los ||| of the estate ||| 0.25 0.122289 1.90631e-06 5.13035e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| of the extent ||| 0.00869565 0.122289 1.90631e-06 4.48206e-06 2.718 ||| 0-1 ||| 115 524574 +los ||| of the fact ||| 0.00254885 0.122289 1.14379e-05 6.83106e-05 2.718 ||| 0-1 ||| 2354 524574 +los ||| of the farm ||| 0.0909091 0.122289 1.90631e-06 1.67902e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| of the game ||| 0.00564972 0.122289 1.90631e-06 6.7161e-07 2.718 ||| 0-1 ||| 177 524574 +los ||| of the human ||| 0.0285714 0.221042 1.90631e-06 0.000454864 2.718 ||| 0-1 0-2 ||| 35 524574 +los ||| of the immune system ||| 0.2 0.122289 1.90631e-06 7.15428e-12 2.718 ||| 0-1 ||| 5 524574 +los ||| of the immune ||| 0.5 0.122289 1.90631e-06 2.56518e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| of the individual ||| 0.00362976 0.0782062 3.81262e-06 1.8236e-06 2.718 ||| 0-0 0-1 0-2 ||| 551 524574 +los ||| of the interests ||| 0.00425532 0.0946504 1.90631e-06 2.37838e-05 2.718 ||| 0-1 0-2 ||| 235 524574 +los ||| of the kind ||| 0.00593472 0.122289 3.81262e-06 1.13801e-05 2.718 ||| 0-1 ||| 337 524574 +los ||| of the link between ||| 0.0232558 0.122289 1.90631e-06 1.50718e-10 2.718 ||| 0-1 ||| 43 524574 +los ||| of the link ||| 0.0208333 0.122289 1.90631e-06 5.71335e-07 2.718 ||| 0-1 ||| 48 524574 +los ||| of the meat and ||| 0.25 0.122289 1.90631e-06 5.25782e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| of the meat ||| 0.0178571 0.122289 1.90631e-06 4.19756e-07 2.718 ||| 0-1 ||| 56 524574 +los ||| of the money for these activities ||| 1 0.0240362 1.90631e-06 8.12211e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| of the money for these ||| 1 0.0240362 1.90631e-06 1.02165e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| of the new ||| 0.000277546 0.122289 1.90631e-06 1.39382e-05 2.718 ||| 0-1 ||| 3603 524574 +los ||| of the next ||| 0.0017331 0.122289 1.90631e-06 2.40893e-06 2.718 ||| 0-1 ||| 577 524574 +los ||| of the number of ||| 0.00540541 0.122289 1.90631e-06 6.27286e-07 2.718 ||| 0-1 ||| 185 524574 +los ||| of the number ||| 0.00480769 0.122289 1.90631e-06 1.15386e-05 2.718 ||| 0-1 ||| 208 524574 +los ||| of the occupied ||| 0.333333 0.122289 1.90631e-06 2.0055e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| of the other ||| 0.00199005 0.122289 3.81262e-06 3.02108e-05 2.718 ||| 0-1 ||| 1005 524574 +los ||| of the outstanding ||| 0.1 0.122289 1.90631e-06 3.87108e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| of the past ||| 0.00267023 0.122289 3.81262e-06 2.98726e-06 2.718 ||| 0-1 ||| 749 524574 +los ||| of the people are ||| 0.0909091 0.122289 1.90631e-06 3.11436e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| of the people of ||| 0.00172712 0.122289 1.90631e-06 1.11588e-06 2.718 ||| 0-1 ||| 579 524574 +los ||| of the people ||| 0.00083647 0.122289 3.81262e-06 2.05261e-05 2.718 ||| 0-1 ||| 2391 524574 +los ||| of the political ||| 0.0142857 0.122289 1.90631e-06 4.16258e-06 2.718 ||| 0-1 ||| 70 524574 +los ||| of the possibility of making ||| 0.333333 0.122289 1.90631e-06 4.17476e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| of the possibility of ||| 0.00735294 0.122289 1.90631e-06 1.0852e-07 2.718 ||| 0-1 ||| 136 524574 +los ||| of the possibility ||| 0.00555556 0.122289 1.90631e-06 1.99617e-06 2.718 ||| 0-1 ||| 180 524574 +los ||| of the possible ||| 0.00925926 0.0420673 3.81262e-06 1.00736e-07 2.718 ||| 0-0 0-1 0-2 ||| 216 524574 +los ||| of the problem ||| 0.000803213 0.122289 1.90631e-06 5.24462e-06 2.718 ||| 0-1 ||| 1245 524574 +los ||| of the problems ||| 0.000940734 0.114269 1.90631e-06 7.15101e-05 2.718 ||| 0-1 0-2 ||| 1063 524574 +los ||| of the programme ||| 0.00107296 0.122289 1.90631e-06 2.97094e-06 2.718 ||| 0-1 ||| 932 524574 +los ||| of the projects after blocking them ||| 1 0.122289 1.90631e-06 2.08932e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| of the projects after blocking ||| 1 0.122289 1.90631e-06 7.78898e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| of the projects after ||| 1 0.122289 1.90631e-06 3.11559e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| of the projects ||| 0.00502513 0.122289 1.90631e-06 1.14967e-06 2.718 ||| 0-1 ||| 199 524574 +los ||| of the public ||| 0.0031348 0.122289 3.81262e-06 3.76848e-06 2.718 ||| 0-1 ||| 638 524574 +los ||| of the question ||| 0.00254453 0.122289 1.90631e-06 1.92925e-05 2.718 ||| 0-1 ||| 393 524574 +los ||| of the recovery of ||| 0.0909091 0.122289 1.90631e-06 1.68612e-08 2.718 ||| 0-1 ||| 11 524574 +los ||| of the recovery ||| 0.05 0.122289 1.90631e-06 3.10153e-07 2.718 ||| 0-1 ||| 20 524574 +los ||| of the relative ||| 0.0833333 0.122289 1.90631e-06 2.09878e-07 2.718 ||| 0-1 ||| 12 524574 +los ||| of the relevant ||| 0.012987 0.0658767 1.90631e-06 1.33856e-06 2.718 ||| 0-1 0-2 ||| 77 524574 +los ||| of the requirements ||| 0.00884956 0.122289 1.90631e-06 1.13334e-06 2.718 ||| 0-1 ||| 113 524574 +los ||| of the role of ||| 0.00456621 0.122289 1.90631e-06 2.81442e-07 2.718 ||| 0-1 ||| 219 524574 +los ||| of the role ||| 0.00234742 0.122289 1.90631e-06 5.17699e-06 2.718 ||| 0-1 ||| 426 524574 +los ||| of the sea ||| 0.005 0.122289 1.90631e-06 6.97261e-07 2.718 ||| 0-1 ||| 200 524574 +los ||| of the situation where the ||| 0.333333 0.0728742 1.90631e-06 6.91749e-10 2.718 ||| 0-0 0-1 0-3 0-4 ||| 3 524574 +los ||| of the social ||| 0.0322581 0.122289 1.90631e-06 2.40893e-06 2.718 ||| 0-1 ||| 31 524574 +los ||| of the strategies employed ||| 0.2 0.122289 1.90631e-06 3.62669e-12 2.718 ||| 0-1 ||| 5 524574 +los ||| of the strategies ||| 0.025641 0.122289 1.90631e-06 1.25927e-07 2.718 ||| 0-1 ||| 39 524574 +los ||| of the subject ||| 0.00621118 0.0019787 1.90631e-06 1.09612e-07 2.718 ||| 0-0 ||| 161 524574 +los ||| of the subjects ||| 0.0133333 0.122289 1.90631e-06 5.55011e-07 2.718 ||| 0-1 ||| 75 524574 +los ||| of the suspects was capable of ||| 1 0.122289 1.90631e-06 1.45967e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| of the suspects was capable ||| 1 0.122289 1.90631e-06 2.68499e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| of the suspects was ||| 0.5 0.122289 1.90631e-06 5.11426e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| of the suspects ||| 0.142857 0.122289 1.90631e-06 1.63238e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| of the upsurge ||| 0.5 0.122289 1.90631e-06 4.19756e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| of the various ||| 0.00187266 0.0452308 3.81262e-06 2.23463e-07 2.718 ||| 0-0 0-1 0-2 ||| 1068 524574 +los ||| of the vote ||| 0.00141443 0.122289 1.90631e-06 3.6682e-06 2.718 ||| 0-1 ||| 707 524574 +los ||| of the way ||| 0.00143678 0.122289 1.90631e-06 5.02681e-05 2.718 ||| 0-1 ||| 696 524574 +los ||| of the ways ||| 0.00769231 0.122289 1.90631e-06 2.24803e-06 2.718 ||| 0-1 ||| 130 524574 +los ||| of the world with ||| 0.0344828 0.122289 1.90631e-06 3.39692e-08 2.718 ||| 0-1 ||| 29 524574 +los ||| of the world ||| 0.000565291 0.122289 3.81262e-06 5.31225e-06 2.718 ||| 0-1 ||| 3538 524574 +los ||| of the ||| 0.00759884 0.122289 0.00687606 0.0233198 2.718 ||| 0-1 ||| 474678 524574 +los ||| of their costs ||| 0.0714286 0.214442 1.90631e-06 1.74484e-07 2.718 ||| 0-2 ||| 14 524574 +los ||| of their own ||| 0.00147493 0.0236713 1.90631e-06 2.10842e-07 2.718 ||| 0-1 ||| 678 524574 +los ||| of their ||| 0.000699231 0.0236713 1.33442e-05 0.000124369 2.718 ||| 0-1 ||| 10011 524574 +los ||| of them , ||| 0.00504202 0.038218 5.71893e-06 1.3048e-05 2.718 ||| 0-1 ||| 595 524574 +los ||| of them - ||| 0.0114943 0.038218 1.90631e-06 4.12717e-07 2.718 ||| 0-1 ||| 87 524574 +los ||| of them is to get the actual ||| 0.333333 0.122289 1.90631e-06 1.10207e-14 2.718 ||| 0-5 ||| 3 524574 +los ||| of them is to get the ||| 0.333333 0.122289 1.90631e-06 7.61623e-11 2.718 ||| 0-5 ||| 3 524574 +los ||| of them is ||| 0.00649351 0.038218 1.90631e-06 3.42912e-06 2.718 ||| 0-1 ||| 154 524574 +los ||| of them very ||| 0.1 0.0200984 1.90631e-06 2.31626e-08 2.718 ||| 0-0 0-1 ||| 10 524574 +los ||| of them ||| 0.00467199 0.038218 4.57514e-05 0.000109413 2.718 ||| 0-1 ||| 5137 524574 +los ||| of these countries ||| 0.0011655 0.0240362 1.90631e-06 5.03149e-08 2.718 ||| 0-1 ||| 858 524574 +los ||| of these is that ||| 0.05 0.0240362 1.90631e-06 6.98614e-08 2.718 ||| 0-1 ||| 20 524574 +los ||| of these is ||| 0.00383142 0.0240362 1.90631e-06 4.15308e-06 2.718 ||| 0-1 ||| 261 524574 +los ||| of these kinds cannot ||| 1 0.0240362 1.90631e-06 1.41811e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| of these kinds ||| 0.0526316 0.0240362 1.90631e-06 6.29433e-09 2.718 ||| 0-1 ||| 19 524574 +los ||| of these problems , and indeed I ||| 0.5 0.106249 1.90631e-06 1.38454e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| of these problems , and indeed ||| 0.5 0.106249 1.90631e-06 1.95736e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| of these problems , and ||| 0.125 0.106249 1.90631e-06 2.58261e-10 2.718 ||| 0-2 ||| 8 524574 +los ||| of these problems , ||| 0.030303 0.106249 1.90631e-06 2.06182e-08 2.718 ||| 0-2 ||| 33 524574 +los ||| of these problems ||| 0.00546448 0.106249 1.90631e-06 1.72892e-07 2.718 ||| 0-2 ||| 183 524574 +los ||| of these regions ||| 0.00578035 0.0240362 1.90631e-06 1.0919e-08 2.718 ||| 0-1 ||| 173 524574 +los ||| of these stations ||| 0.166667 0.0240362 1.90631e-06 1.61665e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| of these than the ||| 0.5 0.122289 1.90631e-06 7.3885e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| of these types ||| 0.030303 0.0240362 1.90631e-06 6.10881e-09 2.718 ||| 0-1 ||| 33 524574 +los ||| of these ||| 0.00204297 0.0240362 5.90956e-05 0.000132512 2.718 ||| 0-1 ||| 15174 524574 +los ||| of this , the ||| 0.00729927 0.122289 1.90631e-06 1.79691e-05 2.718 ||| 0-3 ||| 137 524574 +los ||| of this Community law , ||| 1 0.000733 1.90631e-06 1.50659e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| of this Community law ||| 1 0.000733 1.90631e-06 1.26334e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| of this Community ||| 0.0344828 0.000733 1.90631e-06 7.16586e-09 2.718 ||| 0-2 ||| 29 524574 +los ||| of this discussion ||| 0.010989 0.0019787 1.90631e-06 1.84652e-09 2.718 ||| 0-0 ||| 91 524574 +los ||| of this ||| 4.27095e-05 0.0019787 3.81262e-06 2.13717e-05 2.718 ||| 0-0 ||| 46828 524574 +los ||| of those bringing proceedings ||| 1 0.284705 1.90631e-06 2.64599e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| of those bringing ||| 1 0.284705 1.90631e-06 7.28922e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| of those countries ||| 0.00232558 0.0957208 1.90631e-06 3.28154e-07 2.718 ||| 0-2 ||| 430 524574 +los ||| of those factors ||| 0.125 0.284705 1.90631e-06 2.71417e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| of those means ||| 0.25 0.284705 1.90631e-06 5.7524e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| of those on the ||| 0.111111 0.102416 1.90631e-06 8.45288e-09 2.718 ||| 0-0 0-1 0-2 0-3 ||| 9 524574 +los ||| of those people ||| 0.0117647 0.187086 3.81262e-06 7.14879e-06 2.718 ||| 0-1 0-2 ||| 170 524574 +los ||| of those services ||| 0.0909091 0.284705 1.90631e-06 8.03357e-08 2.718 ||| 0-1 ||| 11 524574 +los ||| of those we ||| 0.0714286 0.143081 1.90631e-06 7.9074e-07 2.718 ||| 0-1 0-2 ||| 14 524574 +los ||| of those who receive ||| 0.333333 0.284705 1.90631e-06 8.03837e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| of those who ||| 0.00060024 0.284705 1.90631e-06 8.00634e-07 2.718 ||| 0-1 ||| 1666 524574 +los ||| of those whom the ||| 0.333333 0.122289 1.90631e-06 1.1246e-09 2.718 ||| 0-3 ||| 3 524574 +los ||| of those ||| 0.0193985 0.284705 0.000245914 0.000907748 2.718 ||| 0-1 ||| 6650 524574 +los ||| of time ||| 0.000468823 0.0019787 1.90631e-06 5.43009e-06 2.718 ||| 0-0 ||| 2133 524574 +los ||| of times ||| 0.00675676 0.0019787 1.90631e-06 3.35721e-07 2.718 ||| 0-0 ||| 148 524574 +los ||| of tools ||| 0.016129 0.0019787 1.90631e-06 3.10914e-08 2.718 ||| 0-0 ||| 62 524574 +los ||| of totalitarianism ||| 0.0126582 0.0019787 1.90631e-06 2.31532e-09 2.718 ||| 0-0 ||| 79 524574 +los ||| of tourism down ||| 1 0.0019787 1.90631e-06 4.15626e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| of tourism ||| 0.00286533 0.0019787 1.90631e-06 5.95368e-08 2.718 ||| 0-0 ||| 349 524574 +los ||| of trade ||| 0.000963391 0.0163495 1.90631e-06 2.48268e-06 2.718 ||| 0-0 0-1 ||| 1038 524574 +los ||| of travel ||| 0.00884956 0.0606223 1.90631e-06 1.19438e-05 2.718 ||| 0-1 ||| 113 524574 +los ||| of universal mobile telecommunications systems ( ||| 1 0.0620985 1.90631e-06 7.2094e-24 2.718 ||| 0-2 ||| 1 524574 +los ||| of universal mobile telecommunications systems ||| 1 0.0620985 1.90631e-06 7.47553e-21 2.718 ||| 0-2 ||| 1 524574 +los ||| of universal mobile telecommunications ||| 1 0.0620985 1.90631e-06 1.42391e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| of universal mobile ||| 1 0.0620985 1.90631e-06 3.95531e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| of us , the ||| 0.037037 0.122289 1.90631e-06 8.01538e-06 2.718 ||| 0-3 ||| 27 524574 +los ||| of us as ||| 0.027027 0.0019787 1.90631e-06 9.72802e-08 2.718 ||| 0-0 ||| 37 524574 +los ||| of us here ||| 0.00938967 0.0019787 3.81262e-06 1.93314e-08 2.718 ||| 0-0 ||| 213 524574 +los ||| of us in public office ||| 1 0.0019787 1.90631e-06 3.39312e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| of us in public ||| 1 0.0019787 1.90631e-06 3.29749e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| of us in the ||| 0.00869565 0.122289 1.90631e-06 1.43865e-06 2.718 ||| 0-3 ||| 115 524574 +los ||| of us in ||| 0.00544959 0.0019787 3.81262e-06 2.04053e-07 2.718 ||| 0-0 ||| 367 524574 +los ||| of us think ||| 0.0769231 0.0019787 1.90631e-06 3.64644e-09 2.718 ||| 0-0 ||| 13 524574 +los ||| of us who were ||| 0.0555556 0.0019787 1.90631e-06 1.50625e-11 2.718 ||| 0-0 ||| 18 524574 +los ||| of us who ||| 0.00224215 0.0019787 1.90631e-06 8.40825e-09 2.718 ||| 0-0 ||| 446 524574 +los ||| of us ||| 0.0131054 0.0019787 0.000131535 9.53316e-06 2.718 ||| 0-0 ||| 5265 524574 +los ||| of view are ||| 0.166667 0.0005024 1.90631e-06 8.87855e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| of view of the ||| 0.0030581 0.122289 1.90631e-06 1.14516e-06 2.718 ||| 0-3 ||| 327 524574 +los ||| of view ||| 0.000220751 0.0019787 1.90631e-06 2.98776e-06 2.718 ||| 0-0 ||| 4530 524574 +los ||| of water and energy resources . ||| 1 0.0019787 1.90631e-06 4.54515e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| of water and energy resources ||| 1 0.0019787 1.90631e-06 1.50054e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| of water and energy ||| 0.166667 0.0019787 1.90631e-06 2.09573e-13 2.718 ||| 0-0 ||| 6 524574 +los ||| of water and ||| 0.0120482 0.0019787 1.90631e-06 2.3574e-09 2.718 ||| 0-0 ||| 83 524574 +los ||| of water ||| 0.0016 0.0019787 1.90631e-06 1.88202e-07 2.718 ||| 0-0 ||| 625 524574 +los ||| of we ||| 0.25 0.0019787 1.90631e-06 3.75489e-05 2.718 ||| 0-0 ||| 4 524574 +los ||| of what I am referring ||| 0.5 0.0061209 1.90631e-06 2.03457e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| of what I am ||| 0.0588235 0.0061209 1.90631e-06 4.70966e-10 2.718 ||| 0-1 ||| 17 524574 +los ||| of what I ||| 0.0111111 0.0061209 1.90631e-06 3.68662e-07 2.718 ||| 0-1 ||| 90 524574 +los ||| of what has already been ||| 0.0625 0.0061209 1.90631e-06 4.14866e-13 2.718 ||| 0-1 ||| 16 524574 +los ||| of what has already ||| 0.125 0.0061209 1.90631e-06 1.24241e-10 2.718 ||| 0-1 ||| 8 524574 +los ||| of what has ||| 0.00671141 0.0061209 1.90631e-06 2.68281e-07 2.718 ||| 0-1 ||| 149 524574 +los ||| of what we have in ||| 0.333333 0.0061209 1.90631e-06 1.51463e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| of what we have ||| 0.008 0.0061209 1.90631e-06 7.07623e-09 2.718 ||| 0-1 ||| 125 524574 +los ||| of what we ||| 0.00485437 0.0061209 1.90631e-06 5.91668e-07 2.718 ||| 0-1 ||| 206 524574 +los ||| of what ||| 0.00111899 0.0061209 1.14379e-05 5.21188e-05 2.718 ||| 0-1 ||| 5362 524574 +los ||| of where there are ||| 1 0.0019787 1.90631e-06 4.66113e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| of where there ||| 0.166667 0.0019787 1.90631e-06 3.07205e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| of where they ||| 0.0666667 0.0019787 1.90631e-06 3.27119e-09 2.718 ||| 0-0 ||| 15 524574 +los ||| of where ||| 0.00684932 0.0019787 3.81262e-06 1.0022e-06 2.718 ||| 0-0 ||| 292 524574 +los ||| of which the ||| 0.0141643 0.122289 9.53154e-06 0.000198092 2.718 ||| 0-2 ||| 353 524574 +los ||| of which ||| 0.000669008 0.0019787 7.62523e-06 2.80967e-05 2.718 ||| 0-0 ||| 5979 524574 +los ||| of whom are ||| 0.00671141 0.153643 1.90631e-06 7.45828e-07 2.718 ||| 0-1 ||| 149 524574 +los ||| of whom live ||| 0.0714286 0.153643 1.90631e-06 4.95492e-09 2.718 ||| 0-1 ||| 14 524574 +los ||| of whom there are , ||| 1 0.0019787 1.90631e-06 1.2218e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| of whom there are ||| 0.0769231 0.0019787 1.90631e-06 1.02453e-11 2.718 ||| 0-0 ||| 13 524574 +los ||| of whom there ||| 0.25 0.0019787 1.90631e-06 6.75243e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| of whom ||| 0.00672043 0.153643 9.53154e-06 4.91559e-05 2.718 ||| 0-1 ||| 744 524574 +los ||| of workers ||| 0.000465333 0.364501 1.90631e-06 0.000397053 2.718 ||| 0-1 ||| 2149 524574 +los ||| of working , the ||| 1 0.122289 1.90631e-06 5.29501e-07 2.718 ||| 0-3 ||| 1 524574 +los ||| of writing the ||| 0.25 0.122289 1.90631e-06 5.09304e-06 2.718 ||| 0-2 ||| 4 524574 +los ||| of you here ||| 0.0344828 0.0019787 1.90631e-06 2.16554e-08 2.718 ||| 0-0 ||| 29 524574 +los ||| of you ||| 0.00831296 0.0019787 3.24072e-05 1.06792e-05 2.718 ||| 0-0 ||| 2045 524574 +los ||| of young ||| 0.00529101 0.0019787 1.90631e-06 2.10694e-07 2.718 ||| 0-0 ||| 189 524574 +los ||| of your ||| 0.000782167 0.0096341 3.81262e-06 1.6755e-05 2.718 ||| 0-1 ||| 2557 524574 +los ||| of ||| 0.00126321 0.0019787 0.00343326 0.0033076 2.718 ||| 0-0 ||| 1.42573e+06 524574 +los ||| of ‘ how too ’ ||| 1 0.0139748 1.90631e-06 1.60988e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| off against ||| 0.027027 0.0002168 1.90631e-06 4.7619e-09 2.718 ||| 0-1 ||| 37 524574 +los ||| off air ||| 1 0.0198837 1.90631e-06 6.76841e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| off balance by ||| 1 0.0062464 1.90631e-06 3.56e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| off emerging ||| 0.333333 0.0132275 1.90631e-06 7.8958e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| off its ||| 0.0384615 0.0211371 1.90631e-06 8.68986e-07 2.718 ||| 0-1 ||| 26 524574 +los ||| off the back of ||| 0.25 0.122289 1.90631e-06 6.38375e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| off the back ||| 0.5 0.122289 1.90631e-06 1.17426e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| off the ground ||| 0.0194175 0.122289 3.81262e-06 2.04265e-08 2.718 ||| 0-1 ||| 103 524574 +los ||| off the ||| 0.0171779 0.122289 2.66883e-05 0.000174585 2.718 ||| 0-1 ||| 815 524574 +los ||| off ||| 0.000409668 0.0001067 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2441 524574 +los ||| offences relating ||| 0.5 0.0991597 1.90631e-06 1.30414e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| offences ||| 0.00322581 0.0991597 5.71893e-06 0.0001147 2.718 ||| 0-0 ||| 930 524574 +los ||| offend the ||| 0.133333 0.122289 3.81262e-06 6.00539e-07 2.718 ||| 0-1 ||| 15 524574 +los ||| offenders ||| 0.0190114 0.255051 9.53154e-06 9.82e-05 2.718 ||| 0-0 ||| 263 524574 +los ||| offer each ||| 0.125 0.0497499 1.90631e-06 1.00661e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| offer my very ||| 1 0.0086409 1.90631e-06 2.74379e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| offer my ||| 0.010101 0.0086409 1.90631e-06 7.88559e-08 2.718 ||| 0-1 ||| 99 524574 +los ||| offer the ||| 0.0102389 0.122289 5.71893e-06 4.90726e-05 2.718 ||| 0-1 ||| 293 524574 +los ||| offer through the Internet for carrying out ||| 1 0.122289 1.90631e-06 6.96e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| offer through the Internet for carrying ||| 1 0.122289 1.90631e-06 1.81704e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| offer through the Internet for ||| 1 0.122289 1.90631e-06 3.00338e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| offer through the Internet ||| 1 0.122289 1.90631e-06 3.90774e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| offer through the ||| 0.5 0.122289 1.90631e-06 2.25881e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| offered the Freedom ||| 0.5 0.122289 1.90631e-06 4.6649e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| offered the ||| 0.0131579 0.122289 1.90631e-06 1.86596e-05 2.718 ||| 0-1 ||| 76 524574 +los ||| offered them ||| 0.25 0.038218 1.90631e-06 8.75481e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| offering the ||| 0.0103093 0.122289 1.90631e-06 9.26546e-06 2.718 ||| 0-1 ||| 97 524574 +los ||| offers them ||| 0.0196078 0.038218 1.90631e-06 6.5812e-08 2.718 ||| 0-1 ||| 51 524574 +los ||| office the ||| 0.125 0.122289 1.90631e-06 4.41396e-05 2.718 ||| 0-1 ||| 8 524574 +los ||| office workers , ||| 0.5 0.364501 1.90631e-06 8.96247e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| office workers ||| 0.5 0.364501 1.90631e-06 7.5154e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| officers complete ||| 1 0.149241 1.90631e-06 1.23224e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| officers ||| 0.012945 0.149241 1.52505e-05 0.0001721 2.718 ||| 0-0 ||| 618 524574 +los ||| official ||| 0.00257334 0.0037271 1.90631e-05 1.26e-05 2.718 ||| 0-0 ||| 3886 524574 +los ||| officials also discussed the ||| 0.5 0.122289 1.90631e-06 1.59174e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| officials and ||| 0.00526316 0.221009 1.90631e-06 9.86415e-06 2.718 ||| 0-0 ||| 190 524574 +los ||| officials over ||| 0.5 0.221009 1.90631e-06 3.79181e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| officials really ||| 1 0.221009 1.90631e-06 3.81465e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| officials ||| 0.00651466 0.221009 4.57514e-05 0.0007875 2.718 ||| 0-0 ||| 3684 524574 +los ||| offshore ||| 0.0106952 0.0174564 3.81262e-06 6.8e-06 2.718 ||| 0-0 ||| 187 524574 +los ||| offspring of the House ||| 1 0.122289 1.90631e-06 6.4155e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| offspring of the ||| 1 0.122289 1.90631e-06 2.56518e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| often caused ||| 0.0666667 0.0003964 1.90631e-06 2.4966e-10 2.718 ||| 0-1 ||| 15 524574 +los ||| often got the ||| 1 0.122289 1.90631e-06 6.16632e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| often the ||| 0.0150602 0.122289 9.53154e-06 5.63649e-05 2.718 ||| 0-1 ||| 332 524574 +los ||| oil - ||| 0.0625 0.0090828 1.90631e-06 2.60275e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| oil on ||| 0.166667 0.0090828 3.81262e-06 4.61679e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| oil pipeline ran ||| 1 0.0090828 1.90631e-06 7.55136e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| oil pipeline ||| 0.0434783 0.0090828 1.90631e-06 9.936e-10 2.718 ||| 0-0 ||| 23 524574 +los ||| oil tankers ||| 0.00826446 0.262332 1.90631e-06 3.97162e-09 2.718 ||| 0-1 ||| 121 524574 +los ||| oil ||| 0.00274914 0.0090828 2.28757e-05 6.9e-05 2.718 ||| 0-0 ||| 4365 524574 +los ||| oils ||| 0.00724638 0.15 1.90631e-06 3.21e-05 2.718 ||| 0-0 ||| 138 524574 +los ||| old boy ||| 0.5 0.0110688 5.71893e-06 2.6746e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| old claims of ||| 0.166667 0.0110688 1.90631e-06 1.0212e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| old claims ||| 0.166667 0.0110688 1.90631e-06 1.87844e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| old peoples ' ||| 1 0.13147 1.90631e-06 1.3912e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| old peoples ||| 1 0.13147 1.90631e-06 4.0502e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| old stock ||| 0.111111 0.0110688 1.90631e-06 1.65452e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| old ||| 0.00194932 0.0110688 1.90631e-05 6.22e-05 2.718 ||| 0-0 ||| 5130 524574 +los ||| older ||| 0.0017762 0.031463 3.81262e-06 5.83e-05 2.718 ||| 0-0 ||| 1126 524574 +los ||| olive growers ||| 0.0625 0.353352 1.90631e-06 1.5006e-09 2.718 ||| 0-1 ||| 16 524574 +los ||| on , the ||| 0.0123457 0.122289 1.90631e-06 0.000342278 2.718 ||| 0-2 ||| 81 524574 +los ||| on . ||| 0.0012285 4.2e-06 1.90631e-06 5.21898e-08 2.718 ||| 0-1 ||| 814 524574 +los ||| on Citizens ’ Freedoms and Rights ||| 0.0204082 0.0139748 1.90631e-06 1.01474e-21 2.718 ||| 0-2 ||| 49 524574 +los ||| on Citizens ’ Freedoms and ||| 0.5 0.0139748 1.90631e-06 1.23147e-17 2.718 ||| 0-2 ||| 2 524574 +los ||| on Citizens ’ Freedoms ||| 0.5 0.0139748 1.90631e-06 9.83143e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| on Citizens ’ ||| 1 0.0139748 1.90631e-06 1.09238e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| on Fridays ||| 0.016129 0.278761 1.90631e-06 4.10158e-07 2.718 ||| 0-1 ||| 62 524574 +los ||| on Sundays ||| 0.0454545 0.303797 1.90631e-06 1.559e-07 2.718 ||| 0-1 ||| 22 524574 +los ||| on a daily basis , by the ||| 0.5 0.122289 1.90631e-06 1.07367e-15 2.718 ||| 0-6 ||| 2 524574 +los ||| on a ||| 0.00110635 0.0006914 3.05009e-05 1.58154e-05 2.718 ||| 0-0 ||| 14462 524574 +los ||| on all the ||| 0.00217391 0.122289 1.90631e-06 1.35626e-05 2.718 ||| 0-2 ||| 460 524574 +los ||| on all those ||| 0.0153846 0.284705 1.90631e-06 5.27939e-07 2.718 ||| 0-2 ||| 65 524574 +los ||| on an ||| 0.00070922 0.0006914 3.81262e-06 1.58587e-06 2.718 ||| 0-0 ||| 2820 524574 +los ||| on around the world ||| 0.333333 0.122289 1.90631e-06 8.70887e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| on around the ||| 0.2 0.122289 1.90631e-06 3.82304e-07 2.718 ||| 0-2 ||| 5 524574 +los ||| on behalf of the PSE Group . ||| 0.00154799 0.122289 1.90631e-06 1.70897e-18 2.718 ||| 0-3 ||| 646 524574 +los ||| on behalf of the PSE Group ||| 0.00118064 0.122289 1.90631e-06 5.64202e-16 2.718 ||| 0-3 ||| 847 524574 +los ||| on behalf of the PSE ||| 0.0285714 0.122289 1.90631e-06 1.7344e-12 2.718 ||| 0-3 ||| 35 524574 +los ||| on behalf of the UEN Group . ||| 0.00255754 0.122289 1.90631e-06 5.48436e-19 2.718 ||| 0-3 ||| 391 524574 +los ||| on behalf of the UEN Group ||| 0.00200401 0.122289 1.90631e-06 1.81062e-16 2.718 ||| 0-3 ||| 499 524574 +los ||| on behalf of the UEN ||| 0.111111 0.122289 1.90631e-06 5.566e-13 2.718 ||| 0-3 ||| 9 524574 +los ||| on behalf of the ||| 0.000484027 0.122289 1.33442e-05 4.96964e-08 2.718 ||| 0-3 ||| 14462 524574 +los ||| on board the ||| 0.00636943 0.122289 1.90631e-06 3.83165e-07 2.718 ||| 0-2 ||| 157 524574 +los ||| on call ’ ||| 0.333333 0.0139748 1.90631e-06 8.03008e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| on education , ||| 0.0142857 0.0011583 1.90631e-06 1.47618e-08 2.718 ||| 0-1 ||| 70 524574 +los ||| on education ||| 0.00434783 0.0011583 1.90631e-06 1.23784e-07 2.718 ||| 0-1 ||| 230 524574 +los ||| on ensuring that the ||| 0.047619 0.122289 1.90631e-06 5.61019e-09 2.718 ||| 0-3 ||| 21 524574 +los ||| on everyone ||| 0.00847458 0.080245 1.90631e-06 6.90244e-06 2.718 ||| 0-1 ||| 118 524574 +los ||| on excise duties ||| 0.05 0.106914 1.90631e-06 1.05395e-11 2.718 ||| 0-2 ||| 20 524574 +los ||| on existing ||| 0.03125 0.0464558 1.90631e-06 2.8952e-06 2.718 ||| 0-1 ||| 32 524574 +los ||| on for many years ||| 0.125 0.0015353 1.90631e-06 3.44742e-13 2.718 ||| 0-1 ||| 8 524574 +los ||| on for many ||| 0.1 0.0015353 1.90631e-06 2.02551e-09 2.718 ||| 0-1 ||| 10 524574 +los ||| on for ||| 0.00487805 0.0015353 1.90631e-06 5.90012e-06 2.718 ||| 0-1 ||| 205 524574 +los ||| on its ||| 0.000734214 0.0109143 3.81262e-06 7.61804e-07 2.718 ||| 0-0 0-1 ||| 2724 524574 +los ||| on jobs ||| 0.00943396 0.0595578 1.90631e-06 6.64216e-06 2.718 ||| 0-1 ||| 106 524574 +los ||| on making the implementation of the programme ||| 1 0.122289 1.90631e-06 3.64786e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| on making the implementation of the ||| 1 0.122289 1.90631e-06 2.86331e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| on making the implementation of ||| 1 0.122289 1.90631e-06 4.664e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| on making the implementation ||| 1 0.122289 1.90631e-06 8.57921e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| on making the ||| 0.0357143 0.122289 1.90631e-06 1.10415e-06 2.718 ||| 0-2 ||| 28 524574 +los ||| on members of the ||| 0.142857 0.122289 1.90631e-06 2.30148e-08 2.718 ||| 0-3 ||| 7 524574 +los ||| on offer through the Internet for carrying ||| 1 0.122289 1.90631e-06 1.21578e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| on offer through the Internet for ||| 1 0.122289 1.90631e-06 2.00956e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| on offer through the Internet ||| 1 0.122289 1.90631e-06 2.61467e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| on offer through the ||| 1 0.122289 1.90631e-06 1.51137e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| on our ||| 0.000833333 0.0248369 5.71893e-06 2.38942e-05 2.718 ||| 0-1 ||| 3600 524574 +los ||| on people ||| 0.00423729 0.0894672 1.90631e-06 5.26936e-05 2.718 ||| 0-1 ||| 236 524574 +los ||| on principles , ||| 0.166667 0.0388775 1.90631e-06 3.23482e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| on principles ||| 0.0166667 0.0388775 1.90631e-06 2.71253e-06 2.718 ||| 0-1 ||| 60 524574 +los ||| on textiles ||| 0.03125 0.119629 1.90631e-06 9.24027e-07 2.718 ||| 0-1 ||| 32 524574 +los ||| on the ' ||| 0.0070922 0.0006914 1.90631e-06 7.52401e-08 2.718 ||| 0-0 ||| 141 524574 +los ||| on the 27 and 28 ||| 1 0.122289 1.90631e-06 1.05121e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| on the 27 and ||| 1 0.122289 1.90631e-06 2.44468e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| on the 27 ||| 0.333333 0.122289 1.90631e-06 1.9517e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| on the European ||| 0.00666667 0.122289 1.90631e-06 9.59748e-06 2.718 ||| 0-1 ||| 150 524574 +los ||| on the agenda ||| 0.000417188 0.122289 1.90631e-06 2.85006e-07 2.718 ||| 0-1 ||| 2397 524574 +los ||| on the basis of a ||| 0.00344234 0.122289 3.81262e-06 4.10688e-09 2.718 ||| 0-1 ||| 581 524574 +los ||| on the basis of technical harmonisation . ||| 1 0.122289 1.90631e-06 4.36597e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| on the basis of technical harmonisation ||| 1 0.122289 1.90631e-06 1.44139e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| on the basis of technical ||| 1 0.122289 1.90631e-06 3.06679e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| on the basis of ||| 0.00052789 0.122289 5.71893e-06 9.26522e-08 2.718 ||| 0-1 ||| 5683 524574 +los ||| on the basis ||| 0.000617952 0.122289 7.62523e-06 1.70429e-06 2.718 ||| 0-1 ||| 6473 524574 +los ||| on the cards ||| 0.0454545 0.122289 1.90631e-06 2.58313e-08 2.718 ||| 0-1 ||| 22 524574 +los ||| on the contrary , I have used ||| 1 0.122289 1.90631e-06 6.26074e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| on the contrary , I have ||| 0.333333 0.122289 1.90631e-06 1.45938e-12 2.718 ||| 0-1 ||| 3 524574 +los ||| on the contrary , I ||| 0.04 0.122289 1.90631e-06 1.22024e-10 2.718 ||| 0-1 ||| 25 524574 +los ||| on the contrary , ||| 0.00134771 0.122289 5.71893e-06 1.72508e-08 2.718 ||| 0-1 ||| 2226 524574 +los ||| on the contrary : the ||| 0.25 0.122289 1.90631e-06 2.991e-12 2.718 ||| 0-4 ||| 4 524574 +los ||| on the contrary ||| 0.00120579 0.122289 5.71893e-06 1.44655e-07 2.718 ||| 0-1 ||| 2488 524574 +los ||| on the coordination of procedures for ||| 0.166667 0.219824 1.90631e-06 6.15823e-15 2.718 ||| 0-4 ||| 6 524574 +los ||| on the coordination of procedures ||| 0.142857 0.219824 1.90631e-06 8.01259e-13 2.718 ||| 0-4 ||| 7 524574 +los ||| on the fact ||| 0.00142045 0.122289 1.90631e-06 8.40752e-06 2.718 ||| 0-1 ||| 704 524574 +los ||| on the founding ||| 0.142857 0.122289 1.90631e-06 1.34897e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| on the grave ||| 0.125 0.122289 1.90631e-06 1.9517e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| on the ground , ||| 0.00323625 0.122289 1.90631e-06 4.00466e-08 2.718 ||| 0-1 ||| 309 524574 +los ||| on the ground ||| 0.00120482 0.122289 3.81262e-06 3.35807e-07 2.718 ||| 0-1 ||| 1660 524574 +los ||| on the issue ||| 0.000583431 0.122289 1.90631e-06 2.17213e-06 2.718 ||| 0-1 ||| 1714 524574 +los ||| on the one hand , the ||| 0.00355872 0.122289 1.90631e-06 3.47352e-11 2.718 ||| 0-5 ||| 281 524574 +los ||| on the one hand and ||| 0.0026455 0.122289 1.90631e-06 5.94283e-11 2.718 ||| 0-1 ||| 378 524574 +los ||| on the one hand ||| 0.000270197 0.122289 1.90631e-06 4.74443e-09 2.718 ||| 0-1 ||| 3701 524574 +los ||| on the one ||| 0.000607165 0.122289 3.81262e-06 1.19628e-05 2.718 ||| 0-1 ||| 3294 524574 +los ||| on the other , the ||| 0.00813008 0.122289 1.90631e-06 2.72225e-08 2.718 ||| 0-4 ||| 123 524574 +los ||| on the other , we ||| 0.0666667 0.122289 1.90631e-06 5.03386e-09 2.718 ||| 0-1 ||| 15 524574 +los ||| on the other , ||| 0.00196078 0.122289 3.81262e-06 4.43422e-07 2.718 ||| 0-1 ||| 1020 524574 +los ||| on the other side ||| 0.003003 0.122289 1.90631e-06 8.15046e-10 2.718 ||| 0-1 ||| 333 524574 +los ||| on the other ||| 0.000649351 0.122289 7.62523e-06 3.71827e-06 2.718 ||| 0-1 ||| 6160 524574 +los ||| on the part of the ||| 0.00289855 0.122289 7.62523e-06 1.14202e-08 2.718 ||| 0-4 ||| 1380 524574 +los ||| on the part of those ||| 0.0333333 0.284705 1.90631e-06 4.44545e-10 2.718 ||| 0-4 ||| 30 524574 +los ||| on the part of ||| 0.00266099 0.122289 9.53154e-06 1.86022e-07 2.718 ||| 0-1 ||| 1879 524574 +los ||| on the part ||| 0.00578035 0.122289 2.66883e-05 3.42179e-06 2.718 ||| 0-1 ||| 2422 524574 +los ||| on the pockets of ||| 0.5 0.122289 1.90631e-06 7.33353e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| on the pockets ||| 0.5 0.122289 1.90631e-06 1.34897e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| on the pre-accession funds must ||| 1 0.122289 1.90631e-06 2.36932e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| on the pre-accession funds ||| 1 0.122289 1.90631e-06 1.53295e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| on the pre-accession ||| 0.333333 0.122289 1.90631e-06 2.0091e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| on the present ||| 0.0196078 0.122289 1.90631e-06 1.05047e-06 2.718 ||| 0-1 ||| 51 524574 +los ||| on the regulatory framework , ||| 1 0.122289 1.90631e-06 5.87021e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| on the regulatory framework ||| 0.25 0.122289 1.90631e-06 4.92242e-12 2.718 ||| 0-1 ||| 4 524574 +los ||| on the regulatory ||| 0.5 0.122289 1.90631e-06 4.13301e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| on the reports ||| 0.0111111 0.104587 1.90631e-06 2.82135e-06 2.718 ||| 0-1 0-2 ||| 90 524574 +los ||| on the roads and stimulate the ||| 1 0.122289 1.90631e-06 1.7072e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| on the second ||| 0.00389105 0.122289 1.90631e-06 1.86847e-07 2.718 ||| 0-1 ||| 257 524574 +los ||| on the status quo of ||| 0.5 0.122289 1.90631e-06 2.27159e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| on the status quo ||| 0.111111 0.122289 1.90631e-06 4.17847e-12 2.718 ||| 0-1 ||| 9 524574 +los ||| on the status ||| 0.00662252 0.122289 1.90631e-06 2.90172e-07 2.718 ||| 0-1 ||| 151 524574 +los ||| on the subject of ||| 0.000742391 0.122289 1.90631e-06 8.42264e-08 2.718 ||| 0-1 ||| 1347 524574 +los ||| on the subject ||| 0.000809389 0.122289 3.81262e-06 1.54931e-06 2.718 ||| 0-1 ||| 2471 524574 +los ||| on the subjects of ||| 0.0454545 0.122289 1.90631e-06 3.71358e-09 2.718 ||| 0-1 ||| 22 524574 +los ||| on the subjects ||| 0.025641 0.122289 1.90631e-06 6.83095e-08 2.718 ||| 0-1 ||| 39 524574 +los ||| on the substance of the ||| 0.0169492 0.122289 1.90631e-06 2.82584e-10 2.718 ||| 0-4 ||| 59 524574 +los ||| on the way ||| 0.0012837 0.122289 1.90631e-06 6.18689e-06 2.718 ||| 0-1 ||| 779 524574 +los ||| on the ||| 0.00271898 0.122289 0.00074346 0.00287015 2.718 ||| 0-1 ||| 143436 524574 +los ||| on the ‘ single audit ||| 1 0.122289 1.90631e-06 3.32487e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| on the ‘ single audit ’ model ||| 0.5 0.122289 1.90631e-06 2.23002e-23 2.718 ||| 0-1 ||| 2 524574 +los ||| on the ‘ single audit ’ ||| 1 0.122289 1.90631e-06 5.79225e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| on the ‘ single ||| 1 0.122289 1.90631e-06 5.11518e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| on the ‘ ||| 0.047619 0.122289 1.90631e-06 3.22317e-07 2.718 ||| 0-1 ||| 21 524574 +los ||| on their white chargers ||| 1 0.305556 1.90631e-06 7.46858e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| on their ||| 0.00246132 0.0236713 1.33442e-05 1.5307e-05 2.718 ||| 0-1 ||| 2844 524574 +los ||| on them ||| 0.00510204 0.038218 7.62523e-06 1.34663e-05 2.718 ||| 0-1 ||| 784 524574 +los ||| on these ||| 0.00108421 0.0240362 5.71893e-06 1.63093e-05 2.718 ||| 0-1 ||| 2767 524574 +los ||| on this issue , the ||| 0.0294118 0.122289 1.90631e-06 1.67374e-09 2.718 ||| 0-4 ||| 34 524574 +los ||| on those ||| 0.00502513 0.284705 9.53154e-06 0.000111724 2.718 ||| 0-1 ||| 995 524574 +los ||| on to do by the ||| 1 0.122289 1.90631e-06 4.59975e-09 2.718 ||| 0-4 ||| 1 524574 +los ||| on to the ||| 0.0113636 0.122289 1.14379e-05 0.000255036 2.718 ||| 0-2 ||| 528 524574 +los ||| on what is in the ||| 0.5 0.122289 1.90631e-06 2.70154e-09 2.718 ||| 0-4 ||| 2 524574 +los ||| on what ||| 0.000548847 0.0061209 1.90631e-06 6.41466e-06 2.718 ||| 0-1 ||| 1822 524574 +los ||| on whether there ||| 0.142857 0.0026918 1.90631e-06 6.45964e-10 2.718 ||| 0-2 ||| 7 524574 +los ||| on which the ||| 0.00210526 0.122289 1.90631e-06 2.43807e-05 2.718 ||| 0-2 ||| 475 524574 +los ||| on with the ||| 0.0135135 0.122289 1.90631e-06 1.83532e-05 2.718 ||| 0-2 ||| 74 524574 +los ||| on with things ||| 0.333333 0.0006914 1.90631e-06 9.3772e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| on with ||| 0.00398406 0.0006914 1.90631e-06 2.28156e-06 2.718 ||| 0-0 ||| 251 524574 +los ||| on ||| 0.000439075 0.0006914 0.000383168 0.0003568 2.718 ||| 0-0 ||| 457781 524574 +los ||| on-call ||| 0.0116279 0.0286533 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 86 524574 +los ||| on-the-spot ||| 0.0188679 0.0549451 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 53 524574 +los ||| once a Christian ||| 1 0.0023055 1.90631e-06 1.41477e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| once again , the ||| 0.00429185 0.122289 1.90631e-06 1.21054e-08 2.718 ||| 0-3 ||| 233 524574 +los ||| once again be the ||| 1 0.122289 1.90631e-06 1.83963e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| once again the fact is that the ||| 1 0.122289 1.90631e-06 9.62404e-15 2.718 ||| 0-6 ||| 1 524574 +los ||| once the ||| 0.00692042 0.122289 7.62523e-06 0.000175529 2.718 ||| 0-1 ||| 578 524574 +los ||| one ' s ||| 0.0714286 0.0393018 7.62523e-06 3.49406e-08 2.718 ||| 0-1 0-2 ||| 56 524574 +los ||| one ' ||| 0.0253165 0.0444479 3.81262e-06 2.21704e-05 2.718 ||| 0-1 ||| 79 524574 +los ||| one 's own ||| 0.0125 0.0349814 1.90631e-06 4.32949e-08 2.718 ||| 0-1 ||| 80 524574 +los ||| one 's ||| 0.0801282 0.0349814 4.76577e-05 2.55382e-05 2.718 ||| 0-1 ||| 312 524574 +los ||| one , the ||| 0.0138889 0.122289 1.90631e-06 0.000213214 2.718 ||| 0-2 ||| 72 524574 +los ||| one and the ||| 0.0165289 0.122289 3.81262e-06 2.23949e-05 2.718 ||| 0-2 ||| 121 524574 +los ||| one copes with the ||| 0.333333 0.122289 1.90631e-06 4.57306e-12 2.718 ||| 0-3 ||| 3 524574 +los ||| one country against the ||| 1 0.122289 1.90631e-06 1.5353e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| one country to the ||| 0.0909091 0.122289 1.90631e-06 5.71768e-08 2.718 ||| 0-3 ||| 11 524574 +los ||| one day all ||| 0.2 0.0177928 1.90631e-06 2.87068e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| one hand , the ||| 0.00293255 0.122289 1.90631e-06 8.45608e-08 2.718 ||| 0-3 ||| 341 524574 +los ||| one in most ||| 0.333333 0.0021653 1.90631e-06 8.15416e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| one might call the ||| 0.142857 0.122289 1.90631e-06 1.52414e-10 2.718 ||| 0-3 ||| 7 524574 +los ||| one might venture to say that the ||| 1 0.122289 1.90631e-06 1.02009e-17 2.718 ||| 0-6 ||| 1 524574 +los ||| one of the conclusions ||| 0.0434783 0.122289 1.90631e-06 2.44936e-09 2.718 ||| 0-2 ||| 23 524574 +los ||| one of the ||| 0.00150358 0.122289 4.76577e-05 9.71968e-05 2.718 ||| 0-2 ||| 16627 524574 +los ||| one of those ||| 0.00332226 0.284705 3.81262e-06 3.7835e-06 2.718 ||| 0-2 ||| 602 524574 +los ||| one of your ||| 0.00840336 0.0096341 1.90631e-06 6.98348e-08 2.718 ||| 0-2 ||| 119 524574 +los ||| one of ||| 8.58553e-05 0.0019787 3.81262e-06 1.37861e-05 2.718 ||| 0-1 ||| 23295 524574 +los ||| one or other of the ||| 0.05 0.122289 1.90631e-06 1.43963e-10 2.718 ||| 0-4 ||| 20 524574 +los ||| one or the ||| 0.1 0.122289 3.81262e-06 2.04409e-06 2.718 ||| 0-2 ||| 20 524574 +los ||| one point , she said to me ||| 1 0.0001802 1.90631e-06 1.07689e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| one point , she said to ||| 1 0.0001802 1.90631e-06 1.78855e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| one point , she said ||| 1 0.0001802 1.90631e-06 2.01281e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| one point , she ||| 1 0.0001802 1.90631e-06 4.89379e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| one point , ||| 0.00757576 0.0001802 1.90631e-06 1.72135e-09 2.718 ||| 0-0 ||| 132 524574 +los ||| one point ||| 0.00102987 0.0001802 1.90631e-06 1.44342e-08 2.718 ||| 0-0 ||| 971 524574 +los ||| one where ||| 0.00787402 0.0449398 1.90631e-06 9.19878e-06 2.718 ||| 0-1 ||| 127 524574 +los ||| one would about the ||| 1 0.122289 1.90631e-06 1.48397e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| one ||| 0.000141652 0.0001802 2.09694e-05 1.65e-05 2.718 ||| 0-0 ||| 77655 524574 +los ||| one ’ s own ||| 0.0689655 0.0341558 3.81262e-06 1.94001e-11 2.718 ||| 0-2 ||| 29 524574 +los ||| one ’ s ||| 0.120482 0.0240653 1.90631e-05 3.55108e-09 2.718 ||| 0-1 0-2 ||| 83 524574 +los ||| one ’ ||| 0.075 0.0139748 5.71893e-06 2.25322e-06 2.718 ||| 0-1 ||| 40 524574 +los ||| ones , ||| 0.0170455 0.0861124 5.71893e-06 4.37068e-05 2.718 ||| 0-0 ||| 176 524574 +los ||| ones ; on ||| 1 0.0861124 1.90631e-06 7.55293e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| ones ; ||| 0.0909091 0.0861124 1.90631e-06 1.12882e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| ones are being added ||| 1 0.0861124 1.90631e-06 1.12832e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| ones are being ||| 1 0.0861124 1.90631e-06 1.58249e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| ones are ||| 0.0294118 0.0861124 1.90631e-06 5.56079e-06 2.718 ||| 0-0 ||| 34 524574 +los ||| ones in the ||| 0.2 0.122289 1.90631e-06 2.02913e-06 2.718 ||| 0-2 ||| 5 524574 +los ||| ones to ||| 0.0238095 0.0861124 1.90631e-06 3.25665e-05 2.718 ||| 0-0 ||| 42 524574 +los ||| ones ||| 0.0769231 0.0861124 0.000215413 0.0003665 2.718 ||| 0-0 ||| 1469 524574 +los ||| ongoing ||| 0.000817661 0.0036036 3.81262e-06 1.17e-05 2.718 ||| 0-0 ||| 2446 524574 +los ||| online ||| 0.00616333 0.0615921 7.62523e-06 0.0001031 2.718 ||| 0-0 ||| 649 524574 +los ||| only do the ||| 0.166667 0.122289 1.90631e-06 1.64026e-06 2.718 ||| 0-2 ||| 6 524574 +los ||| only feed ||| 0.166667 0.0838347 1.90631e-06 2.26182e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| only have the ||| 0.0344828 0.122289 1.90631e-06 5.71046e-06 2.718 ||| 0-2 ||| 29 524574 +los ||| only hope that the ||| 0.04 0.122289 1.90631e-06 1.40798e-09 2.718 ||| 0-3 ||| 25 524574 +los ||| only products which ||| 0.25 0.245259 1.90631e-06 4.73164e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| only products ||| 0.1 0.245259 1.90631e-06 5.57018e-06 2.718 ||| 0-1 ||| 10 524574 +los ||| only set out the ||| 1 0.122289 1.90631e-06 1.06881e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| only talk of removing the vertebral column ||| 1 0.122289 1.90631e-06 4.20208e-27 2.718 ||| 0-4 ||| 1 524574 +los ||| only talk of removing the vertebral ||| 1 0.122289 1.90631e-06 6.00298e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| only talk of removing the ||| 1 0.122289 1.90631e-06 1.50074e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| only the ||| 0.00849732 0.122289 3.62199e-05 0.000477471 2.718 ||| 0-1 ||| 2236 524574 +los ||| only those people ||| 0.166667 0.284705 1.90631e-06 1.63595e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| only those ||| 0.018018 0.284705 7.62523e-06 1.85861e-05 2.718 ||| 0-1 ||| 222 524574 +los ||| onto the ||| 0.00276243 0.122289 1.90631e-06 8.66492e-06 2.718 ||| 0-1 ||| 362 524574 +los ||| onto those ||| 0.2 0.284705 1.90631e-06 3.37292e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| onwards the ||| 1 0.122289 1.90631e-06 1.03378e-05 2.718 ||| 0-1 ||| 1 524574 +los ||| open to all ||| 0.00699301 0.0177928 1.90631e-06 3.85071e-08 2.718 ||| 0-2 ||| 143 524574 +los ||| open to fraud , ||| 0.5 0.0242626 1.90631e-06 2.5418e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| open to fraud ||| 0.2 0.0242626 1.90631e-06 2.1314e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| open to the ||| 0.00483092 0.122289 1.90631e-06 6.14435e-06 2.718 ||| 0-2 ||| 207 524574 +los ||| open up the ||| 0.0035461 0.122289 1.90631e-06 2.35828e-07 2.718 ||| 0-2 ||| 282 524574 +los ||| open-source ||| 0.0416667 0.025 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 24 524574 +los ||| opened up ||| 0.00189394 0.0031618 1.90631e-06 5.4908e-09 2.718 ||| 0-1 ||| 528 524574 +los ||| opening it up to the candidate states ||| 1 0.0335599 1.90631e-06 1.07387e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| opening it up to the candidate ||| 1 0.0335599 1.90631e-06 1.42802e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| opening the ||| 0.00284091 0.122289 1.90631e-06 1.20537e-05 2.718 ||| 0-1 ||| 352 524574 +los ||| operate above the heads ||| 1 0.122289 1.90631e-06 7.86226e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| operate above the ||| 1 0.122289 1.90631e-06 2.70181e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| operate the ||| 0.0555556 0.122289 3.81262e-06 2.08473e-05 2.718 ||| 0-1 ||| 36 524574 +los ||| operated by the ||| 0.05 0.122289 1.90631e-06 2.58987e-08 2.718 ||| 0-2 ||| 20 524574 +los ||| operated down the ||| 1 0.122289 1.90631e-06 3.44373e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| operating budgets ||| 0.125 0.246658 1.90631e-06 3.22875e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| operating firm ||| 0.142857 0.0031636 1.90631e-06 3.5599e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| operating licences after 1 ||| 1 0.0190909 1.90631e-06 1.58472e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| operating licences after ||| 1 0.0190909 1.90631e-06 2.48778e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| operating licences ||| 0.0588235 0.0190909 1.90631e-06 9.18e-10 2.718 ||| 0-1 ||| 17 524574 +los ||| operating reports ||| 0.333333 0.0868855 1.90631e-06 4.4235e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| operating the ||| 0.0185185 0.122289 1.90631e-06 1.9303e-05 2.718 ||| 0-1 ||| 54 524574 +los ||| operating ||| 0.00164002 0.0031636 7.62523e-06 9.7e-06 2.718 ||| 0-0 ||| 2439 524574 +los ||| operation of universal mobile telecommunications systems ( ||| 1 0.0620985 1.90631e-06 4.10215e-28 2.718 ||| 0-3 ||| 1 524574 +los ||| operation of universal mobile telecommunications systems ||| 1 0.0620985 1.90631e-06 4.25358e-25 2.718 ||| 0-3 ||| 1 524574 +los ||| operation of universal mobile telecommunications ||| 1 0.0620985 1.90631e-06 8.10205e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| operation of universal mobile ||| 1 0.0620985 1.90631e-06 2.25057e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| operatives ||| 0.0909091 0.117647 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| operators , ||| 0.00598802 0.330195 1.90631e-06 0.000162675 2.718 ||| 0-0 ||| 167 524574 +los ||| operators - which is ||| 1 0.330195 1.90631e-06 1.36989e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| operators - which ||| 1 0.330195 1.90631e-06 4.37091e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| operators - ||| 0.125 0.330195 1.90631e-06 5.14552e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| operators independent ||| 1 0.330195 1.90631e-06 3.34205e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| operators might ||| 0.5 0.330195 1.90631e-06 5.23814e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| operators to ||| 0.0107527 0.330195 1.90631e-06 0.000121211 2.718 ||| 0-0 ||| 93 524574 +los ||| operators ||| 0.00919399 0.330195 5.71893e-05 0.0013641 2.718 ||| 0-0 ||| 3263 524574 +los ||| opinion of the ||| 0.00115875 0.122289 3.81262e-06 5.72267e-06 2.718 ||| 0-2 ||| 1726 524574 +los ||| opponents ||| 0.00357995 0.186889 5.71893e-06 0.0001857 2.718 ||| 0-0 ||| 838 524574 +los ||| opportunity of the ||| 0.0357143 0.122289 1.90631e-06 4.19523e-06 2.718 ||| 0-2 ||| 28 524574 +los ||| opposed to the ||| 0.00181818 0.122289 1.90631e-06 7.9663e-07 2.718 ||| 0-2 ||| 550 524574 +los ||| opposition to the ||| 0.00254453 0.122289 1.90631e-06 9.75777e-07 2.718 ||| 0-2 ||| 393 524574 +los ||| opt-outs ||| 0.01 0.0494505 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 100 524574 +los ||| option to those ||| 0.333333 0.284705 1.90631e-06 6.1426e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| or , in wider consumer uses involving ||| 1 0.184092 1.90631e-06 1.51992e-22 2.718 ||| 0-4 ||| 1 524574 +los ||| or , in wider consumer uses ||| 1 0.184092 1.90631e-06 4.85598e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| or , in wider consumer ||| 1 0.184092 1.90631e-06 2.63912e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| or across the borders . ||| 1 0.122289 1.90631e-06 6.58421e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| or across the borders ||| 1 0.122289 1.90631e-06 2.17372e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| or across the ||| 0.2 0.122289 1.90631e-06 5.03177e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| or any ||| 0.00145349 0.0178119 1.90631e-06 1.05595e-06 2.718 ||| 0-1 ||| 688 524574 +los ||| or anyone else ||| 0.0243902 0.031024 1.90631e-06 2.13831e-11 2.718 ||| 0-1 ||| 41 524574 +los ||| or anyone ||| 0.0277778 0.031024 1.90631e-06 1.81213e-07 2.718 ||| 0-1 ||| 36 524574 +los ||| or by ||| 0.0011919 0.0062464 1.90631e-06 1.85192e-06 2.718 ||| 0-1 ||| 839 524574 +los ||| or counterfeit ||| 0.111111 0.0074488 1.90631e-06 4.45887e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| or disagreements ||| 0.25 0.0935252 1.90631e-06 2.89255e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| or forestry ||| 0.0169492 0.0246734 1.90631e-06 3.78432e-08 2.718 ||| 0-1 ||| 59 524574 +los ||| or not individual ||| 1 0.110351 1.90631e-06 5.01696e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| or not the ||| 0.0555556 0.122289 1.33442e-05 1.67436e-06 2.718 ||| 0-2 ||| 126 524574 +los ||| or not these ||| 0.111111 0.0240362 1.90631e-06 9.51439e-09 2.718 ||| 0-2 ||| 9 524574 +los ||| or not those ||| 0.666667 0.284705 3.81262e-06 6.51764e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| or oil pipeline ran ||| 1 0.0090828 1.90631e-06 8.63347e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| or oil pipeline ||| 1 0.0090828 1.90631e-06 1.13598e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| or oil ||| 0.0555556 0.0090828 1.90631e-06 7.88877e-08 2.718 ||| 0-1 ||| 18 524574 +los ||| or other of the ||| 0.0588235 0.122289 1.90631e-06 3.454e-08 2.718 ||| 0-3 ||| 17 524574 +los ||| or other ||| 0.00081367 0.0038488 1.90631e-06 3.24583e-07 2.718 ||| 0-1 ||| 1229 524574 +los ||| or over-the-counter drugs ||| 0.333333 0.0945946 1.90631e-06 2.12242e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| or over-the-counter ||| 0.333333 0.0945946 1.90631e-06 7.77444e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| or private ||| 0.0078125 0.0182829 1.90631e-06 1.38911e-07 2.718 ||| 0-1 ||| 128 524574 +los ||| or problems which exist ||| 1 0.106249 1.90631e-06 2.74287e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| or problems which ||| 1 0.106249 1.90631e-06 2.97815e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| or problems ||| 0.0238095 0.106249 1.90631e-06 3.50593e-06 2.718 ||| 0-1 ||| 42 524574 +los ||| or progress ? ||| 0.5 0.0392854 1.90631e-06 1.65847e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| or progress ||| 0.0588235 0.0392854 1.90631e-06 9.70433e-07 2.718 ||| 0-1 ||| 17 524574 +los ||| or reweighting , ||| 1 0.181818 1.90631e-06 2.59053e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| or reweighting ||| 1 0.181818 1.90631e-06 2.17227e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| or risk analyses ||| 1 0.105656 1.90631e-06 1.28817e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| or services ||| 0.00980392 0.272175 1.90631e-06 8.91271e-06 2.718 ||| 0-1 ||| 102 524574 +los ||| or share markets ||| 0.25 0.239993 1.90631e-06 3.0381e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| or speakers ||| 1 0.080862 1.90631e-06 4.8796e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| or that the ||| 0.0116279 0.122289 1.90631e-06 8.24975e-06 2.718 ||| 0-2 ||| 86 524574 +los ||| or the other , furthermore ||| 0.5 0.122289 1.90631e-06 3.49291e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| or the other , ||| 0.0384615 0.122289 1.90631e-06 7.57681e-08 2.718 ||| 0-1 ||| 26 524574 +los ||| or the other ||| 0.00465116 0.122289 1.90631e-06 6.35347e-07 2.718 ||| 0-1 ||| 215 524574 +los ||| or the rights ||| 0.0526316 0.0626871 1.90631e-06 7.4839e-08 2.718 ||| 0-1 0-2 ||| 19 524574 +los ||| or the ||| 0.0017126 0.122289 2.09694e-05 0.000490426 2.718 ||| 0-1 ||| 6423 524574 +los ||| or undermining the ||| 0.5 0.122289 1.90631e-06 3.18777e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| or ||| 2.49935e-05 3.93e-05 5.71893e-06 3.9e-06 2.718 ||| 0-0 ||| 120031 524574 +los ||| order for them ||| 0.0909091 0.038218 1.90631e-06 8.23838e-09 2.718 ||| 0-2 ||| 11 524574 +los ||| order of the day ||| 0.00892857 0.122289 1.90631e-06 3.18203e-09 2.718 ||| 0-2 ||| 112 524574 +los ||| order of the ||| 0.00591716 0.122289 1.90631e-06 1.24201e-05 2.718 ||| 0-2 ||| 169 524574 +los ||| order to achieve the common goals ||| 1 0.122289 1.90631e-06 1.35015e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| order to achieve the common ||| 1 0.122289 1.90631e-06 1.07154e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| order to achieve the ||| 0.00568182 0.122289 1.90631e-06 4.63872e-09 2.718 ||| 0-3 ||| 176 524574 +los ||| order to adhere to the ||| 0.5 0.122289 1.90631e-06 1.82193e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| order to appeal to the masses ||| 1 0.122289 1.90631e-06 9.80593e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| order to appeal to the ||| 1 0.122289 1.90631e-06 5.44774e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| order to deal with the ||| 0.025641 0.122289 1.90631e-06 5.51186e-11 2.718 ||| 0-4 ||| 39 524574 +los ||| order to disguise the ||| 0.5 0.122289 1.90631e-06 2.23308e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| order to flout the ||| 1 0.122289 1.90631e-06 2.23308e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| orders ||| 0.00366972 0.0625931 3.81262e-06 4.08e-05 2.718 ||| 0-0 ||| 545 524574 +los ||| ordinary , ||| 0.0384615 0.102163 1.90631e-06 2.57352e-05 2.718 ||| 0-0 ||| 26 524574 +los ||| ordinary EU ||| 0.1 0.053241 1.90631e-06 1.16661e-07 2.718 ||| 0-0 0-1 ||| 10 524574 +los ||| ordinary Members ||| 0.0909091 0.168879 1.90631e-06 8.8769e-08 2.718 ||| 0-1 ||| 11 524574 +los ||| ordinary crimes ' ||| 1 0.0444479 1.90631e-06 2.7796e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| ordinary people ||| 0.00201613 0.102163 1.90631e-06 1.89947e-07 2.718 ||| 0-0 ||| 496 524574 +los ||| ordinary way ||| 0.5 0.102163 1.90631e-06 4.65178e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| ordinary ||| 0.0496628 0.102163 0.000154411 0.0002158 2.718 ||| 0-0 ||| 1631 524574 +los ||| organ ||| 0.0105634 0.017331 5.71893e-06 1.94e-05 2.718 ||| 0-0 ||| 284 524574 +los ||| organic ||| 0.000851789 0.0109329 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 1174 524574 +los ||| organisations commissioned by the Member States , ||| 1 0.122289 1.90631e-06 3.16207e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| organisations commissioned by the Member States ||| 1 0.122289 1.90631e-06 2.65152e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| organisations commissioned by the Member ||| 1 0.122289 1.90631e-06 5.55642e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| organisations commissioned by the ||| 1 0.122289 1.90631e-06 1.07829e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| organise the ||| 0.00555556 0.122289 1.90631e-06 4.46115e-06 2.718 ||| 0-1 ||| 180 524574 +los ||| organised ||| 0.000361664 0.0002031 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2765 524574 +los ||| organisms causing ||| 0.166667 0.12763 1.90631e-06 2.61075e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| organisms ||| 0.00167224 0.12763 1.90631e-06 8.85e-05 2.718 ||| 0-0 ||| 598 524574 +los ||| organizing the ||| 0.0322581 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-1 ||| 31 524574 +los ||| organs such as ||| 0.333333 0.105328 1.90631e-06 1.74384e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| organs such ||| 1 0.105328 1.90631e-06 1.70891e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| organs ||| 0.001443 0.105328 1.90631e-06 8.26e-05 2.718 ||| 0-0 ||| 693 524574 +los ||| origin of the ||| 0.00591716 0.122289 1.90631e-06 5.96986e-07 2.718 ||| 0-2 ||| 169 524574 +los ||| original authors ||| 0.2 0.15724 1.90631e-06 4.08002e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| ostensible ||| 0.125 0.181818 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| other 's ||| 0.015873 0.0349814 1.90631e-06 7.93779e-06 2.718 ||| 0-1 ||| 63 524574 +los ||| other , neighbouring ||| 1 0.0038488 1.90631e-06 2.06524e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| other , the ||| 0.00990099 0.122289 1.90631e-06 6.62714e-05 2.718 ||| 0-2 ||| 101 524574 +los ||| other , ||| 0.00130548 0.0038488 3.81262e-06 3.38564e-05 2.718 ||| 0-0 ||| 1532 524574 +los ||| other European ||| 0.0151515 0.0036328 1.90631e-06 3.23504e-07 2.718 ||| 0-0 0-1 ||| 66 524574 +los ||| other Members ||| 0.00188857 0.168879 3.81262e-06 6.25001e-06 2.718 ||| 0-1 ||| 1059 524574 +los ||| other States ||| 0.00704225 0.224121 1.90631e-06 3.65161e-05 2.718 ||| 0-1 ||| 142 524574 +los ||| other acts of ||| 0.142857 0.139342 1.90631e-06 4.03344e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| other acts ||| 0.0555556 0.139342 1.90631e-06 7.41933e-07 2.718 ||| 0-1 ||| 18 524574 +los ||| other aspects ||| 0.00223214 0.057576 1.90631e-06 3.19643e-07 2.718 ||| 0-0 0-1 ||| 448 524574 +los ||| other centres ||| 0.111111 0.0946074 1.90631e-06 1.25881e-07 2.718 ||| 0-0 0-1 ||| 9 524574 +los ||| other charges ||| 0.0434783 0.0631373 1.90631e-06 2.02746e-07 2.718 ||| 0-1 ||| 23 524574 +los ||| other citizens ||| 0.00884956 0.293572 1.90631e-06 1.96102e-05 2.718 ||| 0-1 ||| 113 524574 +los ||| other countries , such ||| 0.111111 0.0957208 1.90631e-06 2.66453e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| other countries , ||| 0.00267023 0.0038488 3.81262e-06 1.28553e-08 2.718 ||| 0-0 ||| 749 524574 +los ||| other countries ||| 0.000627878 0.0957208 5.71893e-06 1.07995e-05 2.718 ||| 0-1 ||| 4778 524574 +los ||| other governments ||| 0.010989 0.138621 1.90631e-06 1.01054e-06 2.718 ||| 0-0 0-1 ||| 91 524574 +los ||| other in all ||| 0.333333 0.0038488 1.90631e-06 2.8715e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| other in ||| 0.00574713 0.0038488 1.90631e-06 6.07674e-06 2.718 ||| 0-0 ||| 174 524574 +los ||| other income the ||| 0.5 0.122289 1.90631e-06 1.22257e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| other international ||| 0.1 0.0025314 1.90631e-06 9.9365e-09 2.718 ||| 0-0 0-1 ||| 10 524574 +los ||| other matters ||| 0.00334448 0.0584903 1.90631e-06 9.23303e-07 2.718 ||| 0-1 ||| 299 524574 +los ||| other of the ||| 0.037037 0.122289 1.90631e-06 3.02108e-05 2.718 ||| 0-2 ||| 27 524574 +los ||| other parties ||| 0.00462963 0.132694 1.90631e-06 2.17774e-06 2.718 ||| 0-1 ||| 216 524574 +los ||| other people ’ s ||| 0.25 0.0341558 1.90631e-06 3.13075e-12 2.718 ||| 0-3 ||| 4 524574 +los ||| other products ||| 0.00454545 0.0038488 1.90631e-06 2.95256e-08 2.718 ||| 0-0 ||| 220 524574 +los ||| other purposes ||| 0.00862069 0.0038488 1.90631e-06 3.43235e-08 2.718 ||| 0-0 ||| 116 524574 +los ||| other shocks which ||| 1 0.0977654 1.90631e-06 3.74162e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| other shocks ||| 1 0.0977654 1.90631e-06 4.4047e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| other speakers , Mr ||| 1 0.080862 1.90631e-06 4.30445e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| other speakers , ||| 0.00952381 0.080862 1.90631e-06 6.59382e-08 2.718 ||| 0-1 ||| 105 524574 +los ||| other speakers ||| 0.00178571 0.080862 1.90631e-06 5.52919e-07 2.718 ||| 0-1 ||| 560 524574 +los ||| other than surfactants ||| 0.5 0.361111 1.90631e-06 4.98677e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| other than the ||| 0.00383142 0.122289 1.90631e-06 1.6977e-07 2.718 ||| 0-2 ||| 261 524574 +los ||| other than those playing ||| 0.5 0.284705 1.90631e-06 4.355e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| other than those ||| 0.00900901 0.284705 1.90631e-06 6.6085e-09 2.718 ||| 0-2 ||| 111 524574 +los ||| other the ||| 0.0322581 0.122289 1.90631e-06 0.000555713 2.718 ||| 0-1 ||| 31 524574 +los ||| other tourist ||| 1 0.0121951 1.90631e-06 1.14004e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| other urban ||| 1 0.0078805 1.90631e-06 2.39667e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| other words , cut back our ||| 1 0.0038488 1.90631e-06 5.36683e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| other words , cut back ||| 1 0.0038488 1.90631e-06 3.8907e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| other words , cut ||| 1 0.0038488 1.90631e-06 5.78457e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| other words , ||| 0.000262536 0.0038488 1.90631e-06 7.65155e-09 2.718 ||| 0-0 ||| 3809 524574 +los ||| other words ||| 0.000153516 0.0038488 1.90631e-06 6.41614e-08 2.718 ||| 0-0 ||| 6514 524574 +los ||| other ||| 0.00239463 0.0038488 0.00032026 0.0002839 2.718 ||| 0-0 ||| 70157 524574 +los ||| others , ||| 0.0015534 0.072779 7.62523e-06 0.000115594 2.718 ||| 0-0 ||| 2575 524574 +los ||| others designed ||| 0.5 0.072779 1.90631e-06 7.57023e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| others in the ||| 0.00892857 0.0975341 1.90631e-06 8.89972e-06 2.718 ||| 0-0 0-2 ||| 112 524574 +los ||| others like me - ||| 1 0.072779 1.90631e-06 3.90957e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| others like me ||| 0.5 0.072779 1.90631e-06 1.03644e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| others like ||| 0.047619 0.072779 1.90631e-06 1.72138e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| others should ||| 0.0714286 0.072779 1.90631e-06 4.29497e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| others ||| 0.00457868 0.072779 0.00010866 0.0009693 2.718 ||| 0-0 ||| 12449 524574 +los ||| otherwise , contracts could result ||| 0.0666667 0.245913 1.90631e-06 1.9005e-15 2.718 ||| 0-2 ||| 15 524574 +los ||| otherwise , contracts could ||| 0.0666667 0.245913 1.90631e-06 3.60969e-12 2.718 ||| 0-2 ||| 15 524574 +los ||| otherwise , contracts ||| 0.0666667 0.245913 1.90631e-06 5.0762e-09 2.718 ||| 0-2 ||| 15 524574 +los ||| otherwise the ||| 0.00518135 0.122289 1.90631e-06 2.548e-05 2.718 ||| 0-1 ||| 193 524574 +los ||| ought to be regulations ||| 1 0.0587004 1.90631e-06 7.36011e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| our Group either ||| 1 0.0248369 1.90631e-06 1.00578e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| our Group ||| 0.0019685 0.0248369 1.90631e-06 1.16168e-06 2.718 ||| 0-0 ||| 508 524574 +los ||| our accounts ||| 0.0714286 0.0248369 1.90631e-06 1.10347e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| our analysis ||| 0.0114943 0.0248369 1.90631e-06 1.20703e-07 2.718 ||| 0-0 ||| 87 524574 +los ||| our attempt to ||| 0.037037 0.0248369 1.90631e-06 2.64963e-08 2.718 ||| 0-0 ||| 27 524574 +los ||| our attempt ||| 0.0263158 0.0248369 1.90631e-06 2.98187e-07 2.718 ||| 0-0 ||| 38 524574 +los ||| our attention to the ||| 0.0147059 0.122289 1.90631e-06 1.37385e-08 2.718 ||| 0-3 ||| 68 524574 +los ||| our attention ||| 0.0048 0.0248369 5.71893e-06 9.33128e-07 2.718 ||| 0-0 ||| 625 524574 +los ||| our benefit and ||| 0.0769231 0.0248369 1.90631e-06 5.8911e-09 2.718 ||| 0-0 ||| 13 524574 +los ||| our benefit ||| 0.0434783 0.0248369 1.90631e-06 4.70314e-07 2.718 ||| 0-0 ||| 23 524574 +los ||| our binding ||| 1 0.0248369 1.90631e-06 6.28514e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| our breasts and examining our ||| 0.333333 0.0248369 1.90631e-06 1.6783e-19 2.718 ||| 0-0 ||| 3 524574 +los ||| our breasts and examining ||| 0.333333 0.0248369 1.90631e-06 1.21669e-16 2.718 ||| 0-0 ||| 3 524574 +los ||| our breasts and ||| 0.333333 0.0248369 1.90631e-06 1.78925e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| our breasts ||| 0.25 0.0248369 1.90631e-06 1.42844e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| our budgets ||| 0.0277778 0.246658 1.90631e-06 9.8972e-07 2.718 ||| 0-1 ||| 36 524574 +los ||| our children ||| 0.00128041 0.159126 1.90631e-06 1.96935e-05 2.718 ||| 0-0 0-1 ||| 781 524574 +los ||| our citizens ||| 0.00065775 0.293572 5.71893e-06 2.08803e-05 2.718 ||| 0-1 ||| 4561 524574 +los ||| our committee ||| 0.000854701 0.0248369 1.90631e-06 2.76403e-07 2.718 ||| 0-0 ||| 1170 524574 +los ||| our common ||| 0.00775194 0.0248369 1.90631e-06 8.24924e-07 2.718 ||| 0-0 ||| 129 524574 +los ||| our compatriots as ||| 0.5 0.0248369 1.90631e-06 1.45764e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| our compatriots ||| 0.0294118 0.0248369 1.90631e-06 1.42844e-09 2.718 ||| 0-0 ||| 34 524574 +los ||| our competitors ||| 0.00694444 0.0766502 1.90631e-06 3.54253e-07 2.718 ||| 0-0 0-1 ||| 144 524574 +los ||| our concepts ||| 0.05 0.0811655 1.90631e-06 1.04559e-07 2.718 ||| 0-1 ||| 20 524574 +los ||| our concern about the ||| 0.0208333 0.122289 1.90631e-06 1.11719e-10 2.718 ||| 0-3 ||| 48 524574 +los ||| our consultative ||| 0.5 0.0248369 1.90631e-06 8.92775e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| our countries ' ||| 0.047619 0.0550019 1.90631e-06 1.58349e-07 2.718 ||| 0-0 0-1 0-2 ||| 21 524574 +los ||| our countries , the ||| 0.05 0.122289 1.90631e-06 2.67929e-08 2.718 ||| 0-3 ||| 20 524574 +los ||| our countries ||| 0.00219941 0.0248369 5.71893e-06 1.35595e-06 2.718 ||| 0-0 ||| 1364 524574 +los ||| our current ||| 0.00813008 0.0248369 1.90631e-06 5.88517e-07 2.718 ||| 0-0 ||| 123 524574 +los ||| our disposal ||| 0.00566572 0.0248369 3.81262e-06 3.00687e-07 2.718 ||| 0-0 ||| 353 524574 +los ||| our duty ||| 0.00123457 0.0248369 1.90631e-06 2.66047e-07 2.718 ||| 0-0 ||| 810 524574 +los ||| our efforts will be ||| 0.0625 0.0248369 1.90631e-06 6.80831e-11 2.718 ||| 0-0 ||| 16 524574 +los ||| our efforts will ||| 0.125 0.0248369 1.90631e-06 3.75675e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| our efforts ||| 0.00068918 0.0248369 1.90631e-06 4.34246e-07 2.718 ||| 0-0 ||| 1451 524574 +los ||| our existing ||| 0.0344828 0.0464558 1.90631e-06 5.96866e-07 2.718 ||| 0-1 ||| 29 524574 +los ||| our expenses ||| 0.2 0.138287 1.90631e-06 1.13204e-06 2.718 ||| 0-0 0-1 ||| 5 524574 +los ||| our fellow citizens ' ||| 0.0833333 0.16901 1.90631e-06 7.31927e-12 2.718 ||| 0-2 0-3 ||| 12 524574 +los ||| our fellow ||| 0.0105263 0.0248369 7.62523e-06 2.35335e-07 2.718 ||| 0-0 ||| 380 524574 +los ||| our friends ||| 0.00306748 0.0318528 1.90631e-06 9.51786e-08 2.718 ||| 0-1 ||| 326 524574 +los ||| our governments , ||| 0.0384615 0.149115 1.90631e-06 1.51589e-06 2.718 ||| 0-0 0-1 ||| 26 524574 +los ||| our governments ||| 0.00311526 0.149115 1.90631e-06 1.27113e-05 2.718 ||| 0-0 0-1 ||| 321 524574 +los ||| our group ' s chairmen , in ||| 1 0.183633 1.90631e-06 2.64922e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| our group ' s chairmen , ||| 1 0.183633 1.90631e-06 1.23769e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| our group ' s chairmen ||| 1 0.183633 1.90631e-06 1.03786e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| our group ||| 0.000609199 0.0248369 3.81262e-06 4.59958e-07 2.718 ||| 0-0 ||| 3283 524574 +los ||| our hand in our ||| 1 0.0001268 1.90631e-06 1.04214e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| our hand in ||| 0.2 0.0001268 1.90631e-06 7.55504e-11 2.718 ||| 0-2 ||| 5 524574 +los ||| our having ||| 0.0232558 0.0248369 3.81262e-06 1.36737e-06 2.718 ||| 0-0 ||| 86 524574 +los ||| our highly detailed ||| 1 0.0248369 1.90631e-06 5.4445e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| our highly ||| 0.142857 0.0248369 1.90631e-06 2.16052e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| our honoured ||| 0.2 0.0248369 1.90631e-06 3.46397e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| our inability ||| 0.0163934 0.0248369 1.90631e-06 1.14275e-08 2.718 ||| 0-0 ||| 61 524574 +los ||| our information services ||| 0.25 0.272175 1.90631e-06 1.77966e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| our investigations ||| 0.0434783 0.0248369 1.90631e-06 2.96401e-08 2.718 ||| 0-0 ||| 23 524574 +los ||| our level ||| 0.0217391 0.0248369 1.90631e-06 3.05472e-06 2.718 ||| 0-0 ||| 46 524574 +los ||| our market to ||| 0.1 0.0248369 1.90631e-06 7.17147e-08 2.718 ||| 0-0 ||| 10 524574 +los ||| our market ||| 0.00628931 0.0248369 1.90631e-06 8.07069e-07 2.718 ||| 0-0 ||| 159 524574 +los ||| our minds . ||| 0.0294118 0.0248369 1.90631e-06 5.18128e-10 2.718 ||| 0-0 ||| 34 524574 +los ||| our minds ||| 0.00537634 0.0248369 1.90631e-06 1.71056e-07 2.718 ||| 0-0 ||| 186 524574 +los ||| our national ||| 0.0238095 0.018911 1.90631e-06 1.52772e-06 2.718 ||| 0-0 0-1 ||| 42 524574 +los ||| our numbers shall dwindle ||| 1 0.0248369 1.90631e-06 6.68157e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| our numbers shall ||| 1 0.0248369 1.90631e-06 9.5451e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| our numbers ||| 0.166667 0.0248369 1.90631e-06 1.74627e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| our opinion ||| 0.000791139 0.0248369 1.90631e-06 8.76348e-07 2.718 ||| 0-0 ||| 1264 524574 +los ||| our own EU ||| 0.2 0.0248369 1.90631e-06 2.99556e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| our own camps ||| 0.5 0.0248369 1.90631e-06 2.60326e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| our own countries ||| 0.00377358 0.0248369 1.90631e-06 2.29874e-09 2.718 ||| 0-0 ||| 265 524574 +los ||| our own discussions ||| 0.333333 0.0717203 1.90631e-06 1.27775e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| our own internal affairs ||| 1 0.0248369 1.90631e-06 3.43833e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| our own internal ||| 0.5 0.0248369 1.90631e-06 2.8091e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| our own membership ||| 0.5 0.0248369 1.90631e-06 1.48325e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| our own ||| 0.00294241 0.0248369 2.66883e-05 6.05409e-06 2.718 ||| 0-0 ||| 4758 524574 +los ||| our parliamentary ||| 0.03125 0.0248369 1.90631e-06 1.11775e-07 2.718 ||| 0-0 ||| 32 524574 +los ||| our part ||| 0.00135685 0.0248369 1.90631e-06 4.25747e-06 2.718 ||| 0-0 ||| 737 524574 +los ||| our partner ||| 0.00970874 0.0248369 1.90631e-06 8.99917e-08 2.718 ||| 0-0 ||| 103 524574 +los ||| our policies , something I argued ||| 1 0.0248369 1.90631e-06 1.10978e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| our policies , something I ||| 1 0.0248369 1.90631e-06 1.09879e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| our policies , something ||| 1 0.0248369 1.90631e-06 1.55339e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| our policies , ||| 0.0178571 0.0248369 1.90631e-06 2.80649e-08 2.718 ||| 0-0 ||| 56 524574 +los ||| our policies ||| 0.00192678 0.0248369 1.90631e-06 2.35335e-07 2.718 ||| 0-0 ||| 519 524574 +los ||| our policy ||| 0.00140252 0.0248369 1.90631e-06 1.40594e-06 2.718 ||| 0-0 ||| 713 524574 +los ||| our pool ||| 1 0.0248369 1.90631e-06 1.67842e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| our present ||| 0.015873 0.0248369 1.90631e-06 1.30702e-06 2.718 ||| 0-0 ||| 63 524574 +los ||| our prime objective of achieving a sustainable ||| 1 0.0248369 1.90631e-06 8.05674e-24 2.718 ||| 0-0 ||| 1 524574 +los ||| our prime objective of achieving a ||| 1 0.0248369 1.90631e-06 5.75481e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| our prime objective of achieving ||| 1 0.0248369 1.90631e-06 1.2983e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| our prime objective of ||| 1 0.0248369 1.90631e-06 1.96118e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| our prime objective ||| 0.0833333 0.0248369 1.90631e-06 3.60749e-12 2.718 ||| 0-0 ||| 12 524574 +los ||| our prime ||| 0.0416667 0.0248369 1.90631e-06 5.39236e-08 2.718 ||| 0-0 ||| 24 524574 +los ||| our procedure ||| 0.0555556 0.0248369 1.90631e-06 3.58538e-07 2.718 ||| 0-0 ||| 18 524574 +los ||| our processing ||| 1 0.0248369 1.90631e-06 5.14238e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| our really ||| 0.333333 0.0248369 3.81262e-06 1.72984e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| our respective ||| 0.0112994 0.0248369 3.81262e-06 1.14275e-07 2.718 ||| 0-0 ||| 177 524574 +los ||| our rivers and ||| 0.125 0.142215 1.90631e-06 5.00095e-09 2.718 ||| 0-0 0-1 ||| 8 524574 +los ||| our rivers ||| 0.0384615 0.142215 1.90631e-06 3.99249e-07 2.718 ||| 0-0 0-1 ||| 26 524574 +los ||| our roads ||| 0.00531915 0.0248369 1.90631e-06 4.24961e-08 2.718 ||| 0-0 ||| 188 524574 +los ||| our shoulders ||| 0.0588235 0.0248369 1.90631e-06 5.53521e-08 2.718 ||| 0-0 ||| 17 524574 +los ||| our spending which ||| 0.5 0.0248369 1.90631e-06 6.43103e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| our spending ||| 0.0384615 0.0248369 1.90631e-06 7.57073e-08 2.718 ||| 0-0 ||| 26 524574 +los ||| our standing ||| 0.0909091 0.0248369 1.90631e-06 1.88911e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| our stated ||| 0.25 0.0248369 1.90631e-06 2.2248e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| our suggestion to you . ||| 1 0.0248369 1.90631e-06 5.15151e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| our suggestion to you ||| 1 0.0248369 1.90631e-06 1.70073e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| our suggestion to ||| 0.142857 0.0248369 1.90631e-06 5.26754e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| our suggestion ||| 0.047619 0.0248369 1.90631e-06 5.92803e-08 2.718 ||| 0-0 ||| 21 524574 +los ||| our suggestions ||| 0.025 0.0248369 1.90631e-06 3.21399e-08 2.718 ||| 0-0 ||| 40 524574 +los ||| our support for Europe ||| 1 0.0248369 1.90631e-06 4.74827e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| our support for Europe ’ ||| 1 0.0248369 1.90631e-06 8.27195e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| our support for ||| 0.00282486 0.0248369 1.90631e-06 9.38393e-09 2.718 ||| 0-0 ||| 354 524574 +los ||| our support ||| 0.000685401 0.0248369 1.90631e-06 1.22096e-06 2.718 ||| 0-0 ||| 1459 524574 +los ||| our systems ||| 0.0169492 0.0248369 1.90631e-06 1.87483e-07 2.718 ||| 0-0 ||| 59 524574 +los ||| our task to ensure ||| 0.111111 0.0248369 1.90631e-06 1.79282e-11 2.718 ||| 0-0 ||| 9 524574 +los ||| our task to ||| 0.025 0.0248369 1.90631e-06 3.99825e-08 2.718 ||| 0-0 ||| 40 524574 +los ||| our task ||| 0.00214592 0.0248369 1.90631e-06 4.49959e-07 2.718 ||| 0-0 ||| 466 524574 +los ||| our three ||| 0.010989 0.0248369 1.90631e-06 2.26051e-07 2.718 ||| 0-0 ||| 91 524574 +los ||| our time ||| 0.00315457 0.0248369 1.90631e-06 5.86267e-06 2.718 ||| 0-0 ||| 317 524574 +los ||| our toes cold ||| 1 0.0248369 1.90631e-06 2.87474e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| our toes ||| 1 0.0248369 1.90631e-06 2.49977e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| our understanding of ||| 0.016129 0.0248369 1.90631e-06 6.56191e-09 2.718 ||| 0-0 ||| 62 524574 +los ||| our understanding ||| 0.00900901 0.0248369 1.90631e-06 1.20703e-07 2.718 ||| 0-0 ||| 111 524574 +los ||| our very proper ||| 1 0.0248369 1.90631e-06 1.09967e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| our very ||| 0.00847458 0.0248369 1.90631e-06 1.24256e-05 2.718 ||| 0-0 ||| 118 524574 +los ||| our way through the ||| 0.25 0.0735631 1.90631e-06 1.51993e-09 2.718 ||| 0-0 0-3 ||| 4 524574 +los ||| our way ||| 0.00454545 0.0248369 1.90631e-06 7.69786e-06 2.718 ||| 0-0 ||| 220 524574 +los ||| our work - ||| 0.166667 0.0248369 1.90631e-06 8.52686e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| our work ||| 0.000620347 0.0248369 1.90631e-06 2.26051e-06 2.718 ||| 0-0 ||| 1612 524574 +los ||| our working ||| 0.0714286 0.0248369 1.90631e-06 6.79937e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| our worries ||| 0.0769231 0.0248369 1.90631e-06 2.49977e-09 2.718 ||| 0-0 ||| 13 524574 +los ||| our yield ||| 1 0.0248369 1.90631e-06 2.82117e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| our ||| 0.0203434 0.0248369 0.00586952 0.0035711 2.718 ||| 0-0 ||| 151351 524574 +los ||| ours are the ||| 0.2 0.122289 1.90631e-06 2.03714e-07 2.718 ||| 0-2 ||| 5 524574 +los ||| ourselves be taken down the ||| 0.5 0.122289 1.90631e-06 1.57354e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| ourselves of the ||| 0.0714286 0.122289 1.90631e-06 7.41802e-06 2.718 ||| 0-2 ||| 14 524574 +los ||| out , the ||| 0.0208333 0.122289 1.90631e-06 0.000195944 2.718 ||| 0-2 ||| 48 524574 +los ||| out about the ||| 0.05 0.122289 1.90631e-06 2.3238e-06 2.718 ||| 0-2 ||| 20 524574 +los ||| out all the ||| 0.0444444 0.070041 3.81262e-06 4.41708e-06 2.718 ||| 0-1 0-2 ||| 45 524574 +los ||| out by the ||| 0.0117096 0.122289 9.53154e-06 8.6263e-06 2.718 ||| 0-2 ||| 427 524574 +los ||| out by ||| 0.00232288 0.0062464 3.81262e-06 6.20448e-06 2.718 ||| 0-1 ||| 861 524574 +los ||| out in the course ||| 0.333333 0.122289 1.90631e-06 4.4373e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| out in the ||| 0.00218341 0.122289 1.90631e-06 3.51692e-05 2.718 ||| 0-2 ||| 458 524574 +los ||| out its ||| 0.00512821 0.0211371 1.90631e-06 8.17829e-06 2.718 ||| 0-1 ||| 195 524574 +los ||| out of the way ||| 0.0526316 0.122289 1.90631e-06 1.92547e-07 2.718 ||| 0-2 ||| 19 524574 +los ||| out of the ||| 0.00616333 0.122289 1.52505e-05 8.93241e-05 2.718 ||| 0-2 ||| 1298 524574 +los ||| out of ||| 0.000215564 0.0019787 1.90631e-06 1.26694e-05 2.718 ||| 0-1 ||| 4639 524574 +los ||| out our processing ||| 1 0.0248369 1.90631e-06 1.96974e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| out our ||| 0.010101 0.0248369 1.90631e-06 1.36787e-05 2.718 ||| 0-1 ||| 99 524574 +los ||| out targets for ||| 1 0.0015353 1.90631e-06 8.0388e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| out that the ||| 0.00598802 0.122289 1.90631e-06 2.76391e-05 2.718 ||| 0-2 ||| 167 524574 +los ||| out the figure of one ||| 1 0.122289 1.90631e-06 2.84067e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| out the figure of ||| 1 0.122289 1.90631e-06 6.81543e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| out the figure ||| 1 0.122289 1.90631e-06 1.25367e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| out the nature of the ||| 1 0.122289 1.90631e-06 7.75405e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| out the option for a ||| 1 0.122289 1.90631e-06 2.31738e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| out the option for ||| 1 0.122289 1.90631e-06 5.22806e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| out the option ||| 1 0.122289 1.90631e-06 6.80233e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| out the processes ||| 1 0.122289 1.90631e-06 2.66178e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| out the way ||| 0.25 0.122289 1.90631e-06 3.54181e-06 2.718 ||| 0-1 ||| 4 524574 +los ||| out the wrong signal ||| 0.166667 0.122289 1.90631e-06 2.18207e-12 2.718 ||| 0-1 ||| 6 524574 +los ||| out the wrong ||| 0.25 0.122289 1.90631e-06 9.16835e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| out the ||| 0.0583136 0.122289 0.000141067 0.00164307 2.718 ||| 0-1 ||| 1269 524574 +los ||| out their duties ||| 0.0416667 0.0236713 1.90631e-06 1.79638e-10 2.718 ||| 0-1 ||| 24 524574 +los ||| out their ||| 0.00606061 0.0236713 1.90631e-06 8.76281e-06 2.718 ||| 0-1 ||| 165 524574 +los ||| out there , ||| 0.0243902 0.0026918 1.90631e-06 1.67872e-07 2.718 ||| 0-1 ||| 41 524574 +los ||| out there ||| 0.00588235 0.0026918 1.90631e-06 1.40767e-06 2.718 ||| 0-1 ||| 170 524574 +los ||| out those ||| 0.0454545 0.284705 1.90631e-06 6.39585e-05 2.718 ||| 0-1 ||| 22 524574 +los ||| out to the ||| 0.016129 0.122289 3.81262e-06 0.000146001 2.718 ||| 0-2 ||| 124 524574 +los ||| out where the cost ||| 1 0.122289 1.90631e-06 4.12221e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| out where the ||| 0.333333 0.122289 1.90631e-06 4.97851e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| out who is ||| 0.2 0.0016142 1.90631e-06 1.41178e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| out who ||| 0.0588235 0.0016142 1.90631e-06 4.50455e-07 2.718 ||| 0-1 ||| 17 524574 +los ||| out with due ||| 0.5 0.0023735 1.90631e-06 5.95192e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| out ||| 0.000841456 0.000641 2.28757e-05 4.18e-05 2.718 ||| 0-0 ||| 14261 524574 +los ||| outbreaks of ||| 0.00699301 0.127036 1.90631e-06 2.0604e-06 2.718 ||| 0-0 ||| 143 524574 +los ||| outbreaks ||| 0.003861 0.127036 1.90631e-06 3.79e-05 2.718 ||| 0-0 ||| 259 524574 +los ||| outcomes and ||| 0.0625 0.119639 1.90631e-06 6.45084e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| outcomes ||| 0.0052356 0.119639 3.81262e-06 5.15e-05 2.718 ||| 0-0 ||| 382 524574 +los ||| outgoings together ||| 0.333333 0.254237 1.90631e-06 8.76876e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| outgoings ||| 0.0212766 0.254237 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 47 524574 +los ||| outline the ||| 0.0144928 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-1 ||| 69 524574 +los ||| outlined the ||| 0.0144928 0.122289 1.90631e-06 7.42094e-06 2.718 ||| 0-1 ||| 69 524574 +los ||| outlines the ||| 0.0136986 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-1 ||| 73 524574 +los ||| outside ||| 9.79528e-05 0.0001266 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 10209 524574 +los ||| outstanding commitments ||| 0.00813008 0.115775 1.90631e-06 1.21529e-08 2.718 ||| 0-1 ||| 123 524574 +los ||| outstanding ||| 0.00183262 0.0120968 5.71893e-06 2.04e-05 2.718 ||| 0-0 ||| 1637 524574 +los ||| over , ||| 0.00448431 0.0037547 1.90631e-06 1.62306e-05 2.718 ||| 0-0 ||| 223 524574 +los ||| over 10 % of Ireland 's ||| 1 0.0349814 1.90631e-06 3.35601e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| over and above the ||| 0.00985222 0.122289 3.81262e-06 3.35292e-10 2.718 ||| 0-3 ||| 203 524574 +los ||| over and done with ||| 0.142857 0.0037547 1.90631e-06 4.97094e-12 2.718 ||| 0-0 ||| 7 524574 +los ||| over and done ||| 0.333333 0.0037547 1.90631e-06 7.77377e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| over and ||| 0.0027248 0.0037547 1.90631e-06 1.70477e-06 2.718 ||| 0-0 ||| 367 524574 +los ||| over for ||| 0.0526316 0.0015353 1.90631e-06 4.24587e-07 2.718 ||| 0-1 ||| 19 524574 +los ||| over into ||| 0.0454545 0.0037547 1.90631e-06 1.39734e-07 2.718 ||| 0-0 ||| 22 524574 +los ||| over the selection ||| 0.2 0.122289 1.90631e-06 1.19795e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| over the top ||| 0.0416667 0.122289 1.90631e-06 1.42721e-08 2.718 ||| 0-1 ||| 24 524574 +los ||| over the whole ||| 0.015625 0.122289 1.90631e-06 1.16841e-07 2.718 ||| 0-1 ||| 64 524574 +los ||| over the world ||| 0.00943396 0.122289 1.90631e-06 4.70504e-08 2.718 ||| 0-1 ||| 106 524574 +los ||| over the ||| 0.00230128 0.122289 4.57514e-05 0.000206542 2.718 ||| 0-1 ||| 10429 524574 +los ||| over them ||| 0.0208333 0.038218 1.90631e-06 9.69067e-07 2.718 ||| 0-1 ||| 48 524574 +los ||| over us ||| 0.0555556 0.0037547 1.90631e-06 3.92267e-07 2.718 ||| 0-0 ||| 18 524574 +los ||| over what are the ||| 1 0.122289 1.90631e-06 4.39704e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| over ||| 0.000832057 0.0037547 4.76577e-05 0.0001361 2.718 ||| 0-0 ||| 30046 524574 +los ||| over-runs ||| 0.5 0.666667 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| over-the-counter drugs ||| 0.333333 0.0945946 1.90631e-06 1.8564e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| over-the-counter ||| 0.047619 0.0945946 3.81262e-06 6.8e-06 2.718 ||| 0-0 ||| 42 524574 +los ||| overall increase for all the institutions is ||| 1 0.122289 1.90631e-06 2.0964e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| overall increase for all the institutions ||| 1 0.122289 1.90631e-06 6.68899e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| overall increase for all the ||| 1 0.122289 1.90631e-06 1.27409e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| overall ||| 0.000159109 0.000145 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 6285 524574 +los ||| overcome the ||| 0.00125786 0.122289 1.90631e-06 8.02148e-06 2.718 ||| 0-1 ||| 795 524574 +los ||| overcoming the ||| 0.00364964 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-1 ||| 274 524574 +los ||| overseas ||| 0.0069808 0.0749129 7.62523e-06 4.18e-05 2.718 ||| 0-0 ||| 573 524574 +los ||| overview of our working ||| 1 0.0248369 1.90631e-06 1.99606e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| overview of our ||| 0.25 0.0248369 1.90631e-06 1.04835e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| overwhelming priority is the ||| 0.5 0.122289 1.90631e-06 4.351e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| owed to those ||| 0.333333 0.284705 1.90631e-06 8.60557e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| own Governments ||| 1 0.127711 1.90631e-06 8.73079e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| own biologists ||| 1 0.333333 1.90631e-06 3.1363e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| own continent the ||| 0.333333 0.122289 1.90631e-06 8.36291e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| own countries ||| 0.00313972 0.0957208 3.81262e-06 1.41324e-05 2.718 ||| 0-1 ||| 637 524574 +los ||| own country or across the borders . ||| 1 0.122289 1.90631e-06 4.01728e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| own country or across the borders ||| 1 0.122289 1.90631e-06 1.32627e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| own country or across the ||| 1 0.122289 1.90631e-06 3.07008e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| own devices in favour ||| 1 0.126543 1.90631e-06 9.35587e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| own devices in ||| 0.5 0.126543 1.90631e-06 2.89208e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| own devices ||| 0.030303 0.126543 1.90631e-06 1.35115e-07 2.718 ||| 0-1 ||| 33 524574 +los ||| own discussions ||| 0.25 0.0717203 1.90631e-06 9.26312e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| own ends ||| 0.0285714 0.0063898 1.90631e-06 9.83274e-09 2.718 ||| 0-1 ||| 35 524574 +los ||| own farmers ||| 0.03125 0.380089 1.90631e-06 8.32545e-06 2.718 ||| 0-1 ||| 32 524574 +los ||| own food ||| 0.0714286 0.123536 1.90631e-06 3.73661e-06 2.718 ||| 0-1 ||| 14 524574 +los ||| own identity . events concerning ||| 0.5 0.140095 1.90631e-06 6.92153e-18 2.718 ||| 0-3 ||| 2 524574 +los ||| own identity . events ||| 0.5 0.140095 1.90631e-06 1.12545e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| own parliaments ||| 0.0769231 0.269224 1.90631e-06 2.41801e-06 2.718 ||| 0-1 ||| 13 524574 +los ||| own people ||| 0.00250627 0.0894672 1.90631e-06 1.3351e-05 2.718 ||| 0-1 ||| 399 524574 +los ||| own personal ||| 0.011236 0.0071955 1.90631e-06 6.91682e-08 2.718 ||| 0-1 ||| 89 524574 +los ||| own pockets ||| 0.0294118 0.0123457 1.90631e-06 6.61167e-09 2.718 ||| 0-1 ||| 34 524574 +los ||| own production processes , ||| 1 0.199138 1.90631e-06 1.13747e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| own production processes ||| 1 0.199138 1.90631e-06 9.53815e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| own resources ||| 0.000805153 0.21958 1.90631e-06 8.21831e-06 2.718 ||| 0-1 ||| 1242 524574 +los ||| own the ||| 0.030303 0.122289 1.90631e-06 0.00072721 2.718 ||| 0-1 ||| 33 524574 +los ||| own traditional ||| 0.25 0.0205455 1.90631e-06 9.56149e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| own workers ||| 0.0526316 0.364501 1.90631e-06 1.23818e-05 2.718 ||| 0-1 ||| 19 524574 +los ||| own ||| 9.80729e-05 0.0001063 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 20393 524574 +los ||| owners of ||| 0.0145985 0.14018 3.81262e-06 9.06944e-07 2.718 ||| 0-0 0-1 ||| 137 524574 +los ||| owners only ||| 1 0.278381 1.90631e-06 3.05212e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| owners to ||| 0.1 0.278381 1.90631e-06 2.43649e-05 2.718 ||| 0-0 ||| 10 524574 +los ||| owners ||| 0.00915033 0.278381 1.33442e-05 0.0002742 2.718 ||| 0-0 ||| 765 524574 +los ||| pack ||| 0.0153846 0.009434 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 65 524574 +los ||| package for the ||| 0.0526316 0.122289 1.90631e-06 1.56599e-07 2.718 ||| 0-2 ||| 19 524574 +los ||| package should involve the ||| 1 0.122289 1.90631e-06 4.45098e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| packages ||| 0.00163666 0.107018 1.90631e-06 5.93e-05 2.718 ||| 0-0 ||| 611 524574 +los ||| packaging ||| 0.00128535 0.190381 1.90631e-06 0.0001847 2.718 ||| 0-0 ||| 778 524574 +los ||| paid by ||| 0.003861 0.0062464 1.90631e-06 2.18025e-07 2.718 ||| 0-1 ||| 259 524574 +los ||| paid for by the ||| 0.0208333 0.122289 1.90631e-06 2.32975e-09 2.718 ||| 0-3 ||| 48 524574 +los ||| paid to the ||| 0.00806452 0.122289 1.90631e-06 5.13045e-06 2.718 ||| 0-2 ||| 124 524574 +los ||| paint ||| 0.0254237 0.025 5.71893e-06 3.9e-06 2.718 ||| 0-0 ||| 118 524574 +los ||| painting the ||| 0.5 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| palaces ||| 0.0434783 0.2 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 23 524574 +los ||| panels do ||| 0.25 0.23301 1.90631e-06 1.60429e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| panels ||| 0.0175439 0.23301 5.71893e-06 4.67e-05 2.718 ||| 0-0 ||| 171 524574 +los ||| paper on the European ||| 0.5 0.122289 1.90631e-06 2.79287e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| paper on the ||| 0.0833333 0.122289 1.90631e-06 8.35213e-08 2.718 ||| 0-2 ||| 12 524574 +los ||| papers ||| 0.00131406 0.103614 1.90631e-06 8.36e-05 2.718 ||| 0-0 ||| 761 524574 +los ||| parade the ||| 0.2 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| paragraphs ||| 0.000863558 0.287704 1.90631e-06 0.0004618 2.718 ||| 0-0 ||| 1158 524574 +los ||| parameters ||| 0.00164474 0.0995542 1.90631e-06 6.51e-05 2.718 ||| 0-0 ||| 608 524574 +los ||| parent actually ||| 0.25 0.0513834 1.90631e-06 5.20128e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| parent ||| 0.00404858 0.0513834 1.90631e-06 1.26e-05 2.718 ||| 0-0 ||| 247 524574 +los ||| parental leave ||| 0.0037594 0.0723227 1.90631e-06 4.807e-09 2.718 ||| 0-0 ||| 266 524574 +los ||| parental ||| 0.00471698 0.0723227 1.90631e-06 5.06e-05 2.718 ||| 0-0 ||| 212 524574 +los ||| parents ||| 0.00241838 0.270946 7.62523e-06 0.000632 2.718 ||| 0-0 ||| 1654 524574 +los ||| parking ||| 0.00900901 0.005291 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 111 524574 +los ||| parliamentarians can ||| 0.25 0.250822 1.90631e-06 8.8188e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| parliamentarians ||| 0.00556793 0.250822 9.53154e-06 0.0002965 2.718 ||| 0-0 ||| 898 524574 +los ||| parliaments . ||| 0.00806452 0.269224 1.90631e-06 4.32026e-06 2.718 ||| 0-0 ||| 124 524574 +los ||| parliaments are ||| 0.0192308 0.269224 1.90631e-06 2.16408e-05 2.718 ||| 0-0 ||| 52 524574 +los ||| parliaments to ||| 0.0204082 0.269224 1.90631e-06 0.000126738 2.718 ||| 0-0 ||| 49 524574 +los ||| parliaments ||| 0.00361794 0.269224 2.85946e-05 0.0014263 2.718 ||| 0-0 ||| 4146 524574 +los ||| part , the ||| 0.00558659 0.122289 1.90631e-06 6.09871e-05 2.718 ||| 0-2 ||| 179 524574 +los ||| part in the ||| 0.00220751 0.122289 1.90631e-06 1.09463e-05 2.718 ||| 0-2 ||| 453 524574 +los ||| part of our ||| 0.00149477 0.0248369 1.90631e-06 2.31453e-07 2.718 ||| 0-2 ||| 669 524574 +los ||| part of schools ’ ||| 1 0.041008 1.90631e-06 6.74477e-12 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| part of the ||| 0.00203482 0.122289 3.43136e-05 2.78018e-05 2.718 ||| 0-2 ||| 8846 524574 +los ||| part of their costs ||| 1 0.214442 1.90631e-06 2.0802e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| part of those ||| 0.0212766 0.284705 1.90631e-06 1.08222e-06 2.718 ||| 0-2 ||| 47 524574 +los ||| part of ||| 0.000146349 0.0019787 3.81262e-06 3.94332e-06 2.718 ||| 0-1 ||| 13666 524574 +los ||| part the ||| 0.0416667 0.122289 3.81262e-06 0.000511402 2.718 ||| 0-1 ||| 48 524574 +los ||| participants ' ||| 0.0714286 0.228873 1.90631e-06 1.08543e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| participants ||| 0.00742804 0.228873 1.52505e-05 0.000316 2.718 ||| 0-0 ||| 1077 524574 +los ||| participating ||| 0.00239234 0.0092879 5.71893e-06 1.17e-05 2.718 ||| 0-0 ||| 1254 524574 +los ||| particular , the ||| 0.00245902 0.122289 5.71893e-06 3.14808e-05 2.718 ||| 0-2 ||| 1220 524574 +los ||| particular - those ||| 1 0.284705 1.90631e-06 3.8761e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| particular by the ||| 0.0144928 0.0642678 1.90631e-06 4.27594e-07 2.718 ||| 0-1 0-2 ||| 69 524574 +los ||| particular the ||| 0.0020202 0.122289 5.71893e-06 0.00026398 2.718 ||| 0-1 ||| 1485 524574 +los ||| particular those ||| 0.00947867 0.284705 3.81262e-06 1.02757e-05 2.718 ||| 0-1 ||| 211 524574 +los ||| particular with the ||| 0.0117647 0.122289 1.90631e-06 1.68802e-06 2.718 ||| 0-2 ||| 85 524574 +los ||| particularly , the ||| 0.0212766 0.122289 1.90631e-06 9.13118e-06 2.718 ||| 0-2 ||| 47 524574 +los ||| particularly the by ||| 1 0.0642678 1.90631e-06 1.24026e-07 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| particularly the ||| 0.00219941 0.122289 5.71893e-06 7.65687e-05 2.718 ||| 0-1 ||| 1364 524574 +los ||| particularly those managed directly by the European ||| 1 0.284705 1.90631e-06 6.81206e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| particularly those managed directly by the ||| 1 0.284705 1.90631e-06 2.03716e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| particularly those managed directly by ||| 1 0.284705 1.90631e-06 3.31829e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| particularly those managed directly ||| 1 0.284705 1.90631e-06 6.32043e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| particularly those managed ||| 0.5 0.284705 1.90631e-06 1.67207e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| particularly those ||| 0.0018797 0.284705 1.90631e-06 2.98052e-06 2.718 ||| 0-1 ||| 532 524574 +los ||| parties , ||| 0.00176678 0.132694 1.90631e-06 0.000200467 2.718 ||| 0-0 ||| 566 524574 +los ||| parties are ||| 0.00632911 0.132694 1.90631e-06 2.55053e-05 2.718 ||| 0-0 ||| 158 524574 +los ||| parties in ||| 0.00333333 0.132694 1.90631e-06 3.5981e-05 2.718 ||| 0-0 ||| 300 524574 +los ||| parties involved ||| 0.00184162 0.132694 1.90631e-06 5.8129e-07 2.718 ||| 0-0 ||| 543 524574 +los ||| parties that defend the ||| 1 0.122289 1.90631e-06 1.10694e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| parties will , ||| 0.333333 0.132694 1.90631e-06 1.73428e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| parties will ||| 0.0344828 0.132694 1.90631e-06 1.45427e-05 2.718 ||| 0-0 ||| 29 524574 +los ||| parties ||| 0.00419748 0.132694 8.0065e-05 0.001681 2.718 ||| 0-0 ||| 10006 524574 +los ||| partisans ||| 0.0454545 0.214286 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 22 524574 +los ||| partly those ||| 0.5 0.284705 1.90631e-06 5.64379e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| partner ||| 0.00272387 0.0047313 1.52505e-05 1.36e-05 2.718 ||| 0-0 ||| 2937 524574 +los ||| partners ||| 0.000532552 0.0468945 7.62523e-06 0.0003296 2.718 ||| 0-0 ||| 7511 524574 +los ||| parts of the estate ||| 1 0.122289 1.90631e-06 2.991e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| parts of the ||| 0.000577367 0.122289 1.90631e-06 1.35954e-06 2.718 ||| 0-2 ||| 1732 524574 +los ||| party is the ||| 0.5 0.122289 1.90631e-06 9.19567e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| party to the ||| 0.00680272 0.122289 1.90631e-06 2.60715e-06 2.718 ||| 0-2 ||| 147 524574 +los ||| party ||| 0.000946253 0.0099167 9.53154e-06 4.86e-05 2.718 ||| 0-0 ||| 5284 524574 +los ||| pass on the ||| 0.0144928 0.122289 1.90631e-06 1.64172e-07 2.718 ||| 0-2 ||| 69 524574 +los ||| passed on to the ||| 0.0135135 0.122289 1.90631e-06 1.82606e-08 2.718 ||| 0-3 ||| 74 524574 +los ||| passed the ||| 0.0136986 0.122289 1.90631e-06 3.07133e-05 2.718 ||| 0-1 ||| 73 524574 +los ||| passenger ||| 0.0671573 0.218548 0.000139161 0.0009509 2.718 ||| 0-0 ||| 1087 524574 +los ||| passengers ' ||| 0.0147059 0.227645 1.90631e-06 1.04262e-05 2.718 ||| 0-0 0-1 ||| 68 524574 +los ||| passengers and ||| 0.00322581 0.410842 1.90631e-06 2.4552e-05 2.718 ||| 0-0 ||| 310 524574 +los ||| passengers to ||| 0.0227273 0.410842 1.90631e-06 0.000174171 2.718 ||| 0-0 ||| 44 524574 +los ||| passengers ||| 0.00415601 0.410842 2.4782e-05 0.0019601 2.718 ||| 0-0 ||| 3128 524574 +los ||| passing on the ||| 0.0526316 0.122289 1.90631e-06 7.34758e-08 2.718 ||| 0-2 ||| 19 524574 +los ||| passing trade ||| 0.25 0.0307203 1.90631e-06 1.92154e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| past , the ||| 0.0204082 0.122289 3.81262e-06 6.55296e-06 2.718 ||| 0-2 ||| 98 524574 +los ||| past , ||| 0.000693481 0.0033773 1.90631e-06 3.82808e-06 2.718 ||| 0-0 ||| 1442 524574 +los ||| past the stage ||| 1 0.122289 1.90631e-06 8.22591e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| past the ||| 0.0192308 0.122289 1.90631e-06 5.49493e-05 2.718 ||| 0-1 ||| 52 524574 +los ||| past ||| 0.00187679 0.0033773 3.24072e-05 3.21e-05 2.718 ||| 0-0 ||| 9058 524574 +los ||| patent concerning the ||| 1 0.122289 1.90631e-06 2.00494e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| patent ||| 0.000550055 0.00154 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 1818 524574 +los ||| paths due to legislative interpretation and cumbersome ||| 0.5 0.0036232 1.90631e-06 2.8445e-28 2.718 ||| 0-6 ||| 2 524574 +los ||| patience with the lack of ||| 0.5 0.122289 1.90631e-06 1.99461e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| patience with the lack ||| 0.5 0.122289 1.90631e-06 3.66898e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| patience with the ||| 0.166667 0.122289 1.90631e-06 3.01726e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| patient safety ||| 0.0111111 0.135371 1.90631e-06 1.06977e-08 2.718 ||| 0-0 ||| 90 524574 +los ||| patient ||| 0.00522876 0.135371 7.62523e-06 0.000211 2.718 ||| 0-0 ||| 765 524574 +los ||| patients are ||| 0.0178571 0.0005024 1.90631e-06 9.7632e-10 2.718 ||| 0-1 ||| 56 524574 +los ||| patients has ||| 0.2 0.414657 1.90631e-06 8.86348e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| patients ||| 0.00121212 0.414657 5.71893e-06 0.0017219 2.718 ||| 0-0 ||| 2475 524574 +los ||| patio ||| 0.1 0.176471 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| patterns ||| 0.0110803 0.162288 7.62523e-06 0.0001021 2.718 ||| 0-0 ||| 361 524574 +los ||| pay out the ||| 0.111111 0.122289 1.90631e-06 2.35288e-07 2.718 ||| 0-2 ||| 9 524574 +los ||| pay the ||| 0.00987654 0.122289 7.62523e-06 6.14265e-05 2.718 ||| 0-1 ||| 405 524574 +los ||| payers ||| 0.0188679 0.145454 1.90631e-06 1.56e-05 2.718 ||| 0-0 ||| 53 524574 +los ||| paying the price ||| 0.0144928 0.122289 1.90631e-06 7.40885e-10 2.718 ||| 0-1 ||| 69 524574 +los ||| paying the ||| 0.0142857 0.122289 3.81262e-06 1.44987e-05 2.718 ||| 0-1 ||| 140 524574 +los ||| payment ||| 0.00460264 0.0504821 2.85946e-05 0.0001731 2.718 ||| 0-0 ||| 3259 524574 +los ||| payments . ||| 0.00436681 0.273884 1.90631e-06 4.37327e-06 2.718 ||| 0-0 ||| 229 524574 +los ||| payments are ||| 0.0142857 0.273884 1.90631e-06 2.19063e-05 2.718 ||| 0-0 ||| 70 524574 +los ||| payments have ||| 0.0909091 0.273884 1.90631e-06 1.72676e-05 2.718 ||| 0-0 ||| 11 524574 +los ||| payments made ||| 0.0181818 0.273884 1.90631e-06 3.02447e-06 2.718 ||| 0-0 ||| 55 524574 +los ||| payments system ||| 0.047619 0.273884 1.90631e-06 4.02676e-07 2.718 ||| 0-0 ||| 21 524574 +los ||| payments with the general ||| 1 0.122289 1.90631e-06 1.58795e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| payments with the ||| 0.5 0.122289 1.90631e-06 9.0792e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| payments ||| 0.00458826 0.273884 3.62199e-05 0.0014438 2.718 ||| 0-0 ||| 4141 524574 +los ||| peaceful ||| 0.000328192 0.0003591 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 3047 524574 +los ||| peasants are ||| 0.333333 0.137255 1.90631e-06 1.03174e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| peasants ||| 0.0227273 0.137255 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 44 524574 +los ||| pension schemes ; ||| 1 0.0543335 1.90631e-06 1.36069e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| pension schemes ||| 0.00431034 0.0543335 1.90631e-06 4.41784e-09 2.718 ||| 0-0 ||| 232 524574 +los ||| pension ||| 0.0045738 0.0543335 2.09694e-05 0.0002401 2.718 ||| 0-0 ||| 2405 524574 +los ||| pensioners ||| 0.00269179 0.341579 3.81262e-06 0.000349 2.718 ||| 0-0 ||| 743 524574 +los ||| pensions ||| 0.00045683 0.0041681 1.90631e-06 1.17e-05 2.718 ||| 0-0 ||| 2189 524574 +los ||| people ' s ||| 0.0273973 0.0560236 3.81262e-06 6.60191e-08 2.718 ||| 0-0 0-1 0-2 ||| 73 524574 +los ||| people ' ||| 0.035533 0.0894672 1.33442e-05 2.70509e-05 2.718 ||| 0-0 ||| 197 524574 +los ||| people 's aspirations ||| 0.166667 0.0349814 1.90631e-06 1.94154e-11 2.718 ||| 0-1 ||| 6 524574 +los ||| people 's issues , as well as ||| 1 0.0349814 1.90631e-06 2.6707e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| people 's issues , as well ||| 1 0.0349814 1.90631e-06 2.61721e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| people 's issues , as ||| 1 0.0349814 1.90631e-06 1.65061e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| people 's issues , ||| 1 0.0349814 1.90631e-06 1.61755e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| people 's issues ||| 1 0.0349814 1.90631e-06 1.35638e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| people 's ||| 0.0310345 0.0622243 3.43136e-05 4.82535e-05 2.718 ||| 0-0 0-1 ||| 580 524574 +los ||| people , could be ||| 1 0.0894672 1.90631e-06 1.21032e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| people , could ||| 1 0.0894672 1.90631e-06 6.67841e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| people , the result ||| 0.333333 0.122289 1.90631e-06 2.37065e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| people , the ||| 0.00581395 0.122289 1.90631e-06 4.50267e-05 2.718 ||| 0-2 ||| 172 524574 +los ||| people , ||| 0.00110834 0.0894672 7.62523e-06 0.000939167 2.718 ||| 0-0 ||| 3609 524574 +los ||| people about ||| 0.0169492 0.0894672 1.90631e-06 1.1138e-05 2.718 ||| 0-0 ||| 59 524574 +los ||| people afraid ||| 0.5 0.0894672 1.90631e-06 1.81132e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| people also being given the opportunity to ||| 1 0.0894672 1.90631e-06 7.62071e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| people also being given the opportunity ||| 1 0.0894672 1.90631e-06 8.57626e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| people also being given the ||| 1 0.0894672 1.90631e-06 4.76724e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| people also being given ||| 1 0.0894672 1.90631e-06 7.76527e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| people also being ||| 1 0.0894672 1.90631e-06 1.13147e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| people also ||| 0.025 0.0894672 1.90631e-06 3.97592e-05 2.718 ||| 0-0 ||| 40 524574 +los ||| people are being ||| 0.0192308 0.0894672 1.90631e-06 3.40043e-07 2.718 ||| 0-0 ||| 52 524574 +los ||| people are doggedly determined ||| 1 0.0894672 1.90631e-06 5.72116e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| people are doggedly ||| 1 0.0894672 1.90631e-06 1.67285e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| people are living longer , ||| 0.2 0.0894672 1.90631e-06 2.23898e-13 2.718 ||| 0-0 ||| 5 524574 +los ||| people are living longer ||| 0.1 0.0894672 1.90631e-06 1.87748e-12 2.718 ||| 0-0 ||| 10 524574 +los ||| people are living ||| 0.0151515 0.0894672 1.90631e-06 1.00132e-08 2.718 ||| 0-0 ||| 66 524574 +los ||| people are ||| 0.00382775 0.0894672 1.52505e-05 0.00011949 2.718 ||| 0-0 ||| 2090 524574 +los ||| people at ||| 0.0131579 0.0894672 5.71893e-06 3.2977e-05 2.718 ||| 0-0 ||| 228 524574 +los ||| people be ||| 0.0384615 0.0894672 1.90631e-06 0.000142723 2.718 ||| 0-0 ||| 26 524574 +los ||| people can ||| 0.00235294 0.0894672 1.90631e-06 2.34235e-05 2.718 ||| 0-0 ||| 425 524574 +los ||| people carried ||| 0.333333 0.0894672 1.90631e-06 2.32085e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| people clearly have ||| 0.5 0.0894672 1.90631e-06 1.71891e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| people clearly ||| 0.2 0.0894672 1.90631e-06 1.43724e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| people deplore ||| 1 0.0894672 1.90631e-06 2.5201e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| people discuss the past , the ||| 1 0.122289 1.90631e-06 1.47661e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| people do not come ||| 0.25 0.0894672 1.90631e-06 7.84457e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| people do not ||| 0.00353357 0.0894672 1.90631e-06 9.23651e-08 2.718 ||| 0-0 ||| 283 524574 +los ||| people do ||| 0.0169492 0.0894672 1.90631e-06 2.7054e-05 2.718 ||| 0-0 ||| 59 524574 +los ||| people driven ||| 0.25 0.0894672 1.90631e-06 2.32321e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| people from the various ||| 0.5 0.0894672 1.90631e-06 1.20215e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| people from the ||| 0.0128205 0.0894672 3.81262e-06 7.78594e-07 2.718 ||| 0-0 ||| 156 524574 +los ||| people from ||| 0.00286123 0.0894672 3.81262e-06 1.26824e-05 2.718 ||| 0-0 ||| 699 524574 +los ||| people go ||| 0.030303 0.0894672 1.90631e-06 4.60548e-06 2.718 ||| 0-0 ||| 33 524574 +los ||| people have been ||| 0.00373134 0.0894672 1.90631e-06 3.14509e-07 2.718 ||| 0-0 ||| 268 524574 +los ||| people have ||| 0.000744602 0.0894672 1.90631e-06 9.4187e-05 2.718 ||| 0-0 ||| 1343 524574 +los ||| people here actually trying ||| 1 0.0894672 1.90631e-06 7.59424e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| people here actually ||| 1 0.0894672 1.90631e-06 6.59222e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| people here ||| 0.0135135 0.0894672 3.81262e-06 1.59695e-05 2.718 ||| 0-0 ||| 148 524574 +los ||| people in the ||| 0.00313808 0.105878 5.71893e-06 7.23078e-05 2.718 ||| 0-0 0-2 ||| 956 524574 +los ||| people in ||| 0.00620347 0.0894672 3.81262e-05 0.000168567 2.718 ||| 0-0 ||| 3224 524574 +los ||| people involved ||| 0.00613497 0.0894672 1.90631e-06 2.72328e-06 2.718 ||| 0-0 ||| 163 524574 +los ||| people is ||| 0.00564972 0.0894672 1.90631e-06 0.000246821 2.718 ||| 0-0 ||| 177 524574 +los ||| people just by ||| 1 0.0894672 1.90631e-06 5.21664e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| people just ||| 0.1 0.0894672 1.90631e-06 9.93627e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| people made clear ||| 1 0.0894672 1.90631e-06 5.49191e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| people made ||| 0.0909091 0.0894672 1.90631e-06 1.64972e-05 2.718 ||| 0-0 ||| 11 524574 +los ||| people merely to give notice of ||| 1 0.0894672 1.90631e-06 5.65391e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| people merely to give notice ||| 1 0.0894672 1.90631e-06 1.04001e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| people merely to give ||| 1 0.0894672 1.90631e-06 2.70132e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| people merely to ||| 1 0.0894672 1.90631e-06 4.45763e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| people merely ||| 0.333333 0.0894672 1.90631e-06 5.01657e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| people might be ||| 0.111111 0.0894672 1.90631e-06 5.48057e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| people might ||| 0.0294118 0.0894672 1.90631e-06 3.02412e-06 2.718 ||| 0-0 ||| 34 524574 +los ||| people of the ||| 0.00176367 0.122289 1.90631e-06 2.05261e-05 2.718 ||| 0-2 ||| 567 524574 +los ||| people of ||| 0.0026538 0.0894672 2.09694e-05 0.000428133 2.718 ||| 0-0 ||| 4145 524574 +los ||| people on ||| 0.00529101 0.0894672 3.81262e-06 5.26936e-05 2.718 ||| 0-0 ||| 378 524574 +los ||| people other ||| 0.0666667 0.0894672 1.90631e-06 1.02025e-05 2.718 ||| 0-0 ||| 15 524574 +los ||| people paying their ||| 0.5 0.0378872 1.90631e-06 1.80163e-11 2.718 ||| 0-0 0-1 0-2 ||| 2 524574 +los ||| people refer to as SUVs ( sport ||| 1 0.181818 1.90631e-06 7.08021e-24 2.718 ||| 0-4 ||| 1 524574 +los ||| people refer to as SUVs ( ||| 1 0.181818 1.90631e-06 4.68888e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| people refer to as SUVs ||| 1 0.181818 1.90631e-06 4.86197e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| people resort ||| 0.166667 0.0894672 1.90631e-06 1.22067e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| people should ||| 0.0105263 0.0894672 3.81262e-06 3.48955e-05 2.718 ||| 0-0 ||| 190 524574 +los ||| people standing here ||| 0.333333 0.0894672 1.90631e-06 8.44788e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| people standing ||| 0.2 0.0894672 1.90631e-06 4.16603e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| people starting ||| 0.125 0.0894672 1.90631e-06 3.59901e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| people suffering ||| 0.0208333 0.0894672 1.90631e-06 3.48876e-07 2.718 ||| 0-0 ||| 48 524574 +los ||| people taking ||| 0.0416667 0.0894672 1.90631e-06 3.347e-06 2.718 ||| 0-0 ||| 24 524574 +los ||| people that has been ||| 0.25 0.0894672 1.90631e-06 2.27705e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| people that has ||| 0.111111 0.0894672 1.90631e-06 6.81916e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| people that ||| 0.0023753 0.0894672 1.90631e-06 0.000132475 2.718 ||| 0-0 ||| 421 524574 +los ||| people the ||| 0.0075188 0.105878 1.90631e-06 0.00337816 2.718 ||| 0-0 0-1 ||| 133 524574 +los ||| people to be ||| 0.00925926 0.0894672 1.90631e-06 1.26821e-05 2.718 ||| 0-0 ||| 108 524574 +los ||| people to go ||| 0.0434783 0.0894672 1.90631e-06 4.09234e-07 2.718 ||| 0-0 ||| 23 524574 +los ||| people to start ||| 0.125 0.0894672 1.90631e-06 9.72001e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| people to ||| 0.00363416 0.0894672 1.14379e-05 0.000699785 2.718 ||| 0-0 ||| 1651 524574 +los ||| people want to receive their information from ||| 1 0.0894672 1.90631e-06 1.01469e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| people want to receive their information ||| 0.5 0.0894672 1.90631e-06 6.30085e-18 2.718 ||| 0-0 ||| 2 524574 +los ||| people want to receive their ||| 0.5 0.0894672 1.90631e-06 3.80716e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| people want to receive ||| 0.5 0.0894672 1.90631e-06 3.28458e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| people want to spend their ||| 1 0.0236713 1.90631e-06 2.52619e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| people want to ||| 0.00862069 0.0894672 1.90631e-06 3.27149e-07 2.718 ||| 0-0 ||| 116 524574 +los ||| people want ||| 0.00625 0.0894672 1.90631e-06 3.6817e-06 2.718 ||| 0-0 ||| 160 524574 +los ||| people were ||| 0.00273973 0.0894672 1.90631e-06 1.41078e-05 2.718 ||| 0-0 ||| 365 524574 +los ||| people who are commonly ||| 1 0.0894672 1.90631e-06 5.69105e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| people who are ||| 0.00735294 0.0894672 9.53154e-06 1.0539e-07 2.718 ||| 0-0 ||| 680 524574 +los ||| people who have ||| 0.00182815 0.0894672 1.90631e-06 8.30729e-08 2.718 ||| 0-0 ||| 547 524574 +los ||| people who use ||| 0.0434783 0.0894672 1.90631e-06 3.37715e-09 2.718 ||| 0-0 ||| 23 524574 +los ||| people who ||| 0.00228738 0.0894672 2.09694e-05 6.94601e-06 2.718 ||| 0-0 ||| 4809 524574 +los ||| people will ||| 0.00401606 0.0894672 1.90631e-06 6.81308e-05 2.718 ||| 0-0 ||| 249 524574 +los ||| people with a ||| 0.0153846 0.0894672 1.90631e-06 2.23219e-06 2.718 ||| 0-0 ||| 65 524574 +los ||| people with experience . ||| 1 0.0894672 1.90631e-06 1.05403e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| people with experience ||| 0.142857 0.0894672 1.90631e-06 3.47978e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| people with the ||| 0.015625 0.122289 1.90631e-06 2.41435e-06 2.718 ||| 0-2 ||| 64 524574 +los ||| people with ||| 0.0047356 0.0894672 1.14379e-05 5.03586e-05 2.718 ||| 0-0 ||| 1267 524574 +los ||| people working on ||| 0.0833333 0.0450793 1.90631e-06 5.35006e-10 2.718 ||| 0-0 0-2 ||| 12 524574 +los ||| people would use ||| 0.5 0.0894672 1.90631e-06 2.24711e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| people would ||| 0.02 0.0894672 3.81262e-06 4.62178e-05 2.718 ||| 0-0 ||| 100 524574 +los ||| people ||| 0.0113721 0.0894672 0.00142592 0.0078753 2.718 ||| 0-0 ||| 65775 524574 +los ||| people ’ s ||| 0.0322581 0.0618115 7.62523e-06 2.1622e-08 2.718 ||| 0-0 0-2 ||| 124 524574 +los ||| people ’ ||| 0.00357143 0.0894672 1.90631e-06 1.37196e-05 2.718 ||| 0-0 ||| 280 524574 +los ||| people-to-people ||| 0.0232558 0.168317 1.90631e-06 3.31e-05 2.718 ||| 0-0 ||| 43 524574 +los ||| peoples ' ||| 0.0338983 0.13147 3.81262e-06 1.80676e-06 2.718 ||| 0-0 ||| 59 524574 +los ||| peoples ||| 0.00283359 0.13147 2.09694e-05 0.000526 2.718 ||| 0-0 ||| 3882 524574 +los ||| peoples ’ jobs ||| 1 0.13147 1.90631e-06 4.74667e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| peoples ’ ||| 0.0769231 0.13147 1.90631e-06 9.16345e-07 2.718 ||| 0-0 ||| 13 524574 +los ||| per ||| 0.000644745 0.0006704 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 3102 524574 +los ||| performance ||| 0.0015 0.0136418 5.71893e-06 2.24e-05 2.718 ||| 0-0 ||| 2000 524574 +los ||| performed by the ||| 0.0344828 0.122289 1.90631e-06 2.8376e-08 2.718 ||| 0-2 ||| 29 524574 +los ||| performing at the ||| 0.5 0.122289 1.90631e-06 1.41901e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| perhaps the ||| 0.00334448 0.122289 5.71893e-06 6.63595e-05 2.718 ||| 0-1 ||| 897 524574 +los ||| period of ||| 0.000880282 0.0019787 3.81262e-06 5.77176e-07 2.718 ||| 0-1 ||| 2272 524574 +los ||| period the ||| 0.0434783 0.122289 1.90631e-06 7.48529e-05 2.718 ||| 0-1 ||| 23 524574 +los ||| periods of ||| 0.00740741 0.168082 3.81262e-06 1.98755e-05 2.718 ||| 0-0 ||| 270 524574 +los ||| periods ||| 0.00234604 0.168082 7.62523e-06 0.0003656 2.718 ||| 0-0 ||| 1705 524574 +los ||| permits ||| 0.00206398 0.0881988 3.81262e-06 6.9e-05 2.718 ||| 0-0 ||| 969 524574 +los ||| permitted by ||| 0.0212766 0.0062464 1.90631e-06 4.60023e-08 2.718 ||| 0-1 ||| 47 524574 +los ||| permitting these sums to ||| 1 0.0240362 1.90631e-06 4.9123e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| permitting these sums ||| 1 0.0240362 1.90631e-06 5.52825e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| permitting these ||| 0.5 0.0240362 1.90631e-06 4.3875e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| perpetrators going ||| 1 0.147959 1.90631e-06 9.65342e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| perpetrators of such actions ||| 1 0.147959 1.90631e-06 8.85555e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| perpetrators of such ||| 0.0588235 0.147959 1.90631e-06 1.2687e-08 2.718 ||| 0-0 ||| 17 524574 +los ||| perpetrators of ||| 0.0138249 0.147959 5.71893e-06 6.13226e-06 2.718 ||| 0-0 ||| 217 524574 +los ||| perpetrators ||| 0.00704225 0.147959 7.62523e-06 0.0001128 2.718 ||| 0-0 ||| 568 524574 +los ||| person ' s records to ||| 0.5 0.148855 1.90631e-06 8.51038e-15 2.718 ||| 0-3 ||| 2 524574 +los ||| person ' s records ||| 0.5 0.148855 1.90631e-06 9.57748e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| person 's ||| 0.025641 0.0349814 1.90631e-06 7.89183e-07 2.718 ||| 0-1 ||| 39 524574 +los ||| personal data ||| 0.000769823 0.16292 1.90631e-06 8.80557e-08 2.718 ||| 0-1 ||| 1299 524574 +los ||| personal dignity ||| 0.0212766 0.0071955 1.90631e-06 2.9376e-10 2.718 ||| 0-0 ||| 47 524574 +los ||| personal ||| 0.00275735 0.0071955 2.85946e-05 4.08e-05 2.718 ||| 0-0 ||| 5440 524574 +los ||| personnel , ||| 0.0117647 0.0181369 1.90631e-06 2.55205e-06 2.718 ||| 0-0 ||| 85 524574 +los ||| personnel in government ||| 1 0.0181369 1.90631e-06 3.65987e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| personnel in ||| 0.0434783 0.0181369 1.90631e-06 4.58056e-07 2.718 ||| 0-0 ||| 23 524574 +los ||| personnel ||| 0.00670641 0.0181369 1.71568e-05 2.14e-05 2.718 ||| 0-0 ||| 1342 524574 +los ||| persons in ||| 0.01 0.013523 1.90631e-06 1.81325e-08 2.718 ||| 0-0 0-1 ||| 100 524574 +los ||| persons of ||| 0.025 0.0019787 1.90631e-06 1.70341e-07 2.718 ||| 0-1 ||| 40 524574 +los ||| persons subjected to ||| 0.333333 0.0269192 1.90631e-06 2.52009e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| persons subjected ||| 0.5 0.0269192 1.90631e-06 2.83608e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| persons whose occupation is the performance ||| 1 0.122289 1.90631e-06 7.55469e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| persons whose occupation is the ||| 0.166667 0.122289 1.90631e-06 3.32806e-16 2.718 ||| 0-4 ||| 6 524574 +los ||| persons with mild ||| 1 0.0269192 1.90631e-06 1.17544e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| persons with ||| 0.00438596 0.0269192 1.90631e-06 8.39598e-07 2.718 ||| 0-0 ||| 228 524574 +los ||| persons ||| 0.0099319 0.0269192 6.67208e-05 0.0001313 2.718 ||| 0-0 ||| 3524 524574 +los ||| persuading the ||| 0.0238095 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-1 ||| 42 524574 +los ||| pesticide use ||| 0.0232558 0.131313 1.90631e-06 2.46017e-08 2.718 ||| 0-0 ||| 43 524574 +los ||| pesticide ||| 0.02 0.131313 5.71893e-06 5.06e-05 2.718 ||| 0-0 ||| 150 524574 +los ||| pesticides in ||| 0.0169492 0.259344 1.90631e-06 7.07633e-06 2.718 ||| 0-0 ||| 59 524574 +los ||| pesticides ||| 0.00297324 0.259344 5.71893e-06 0.0003306 2.718 ||| 0-0 ||| 1009 524574 +los ||| pet ||| 0.0183486 0.0535714 3.81262e-06 1.17e-05 2.718 ||| 0-0 ||| 109 524574 +los ||| petitioners ||| 0.0136986 0.230769 3.81262e-06 4.96e-05 2.718 ||| 0-0 ||| 146 524574 +los ||| petrol ||| 0.00246914 0.0149254 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 405 524574 +los ||| phosphate ||| 0.0625 0.28125 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| phosphorus ||| 0.030303 0.025 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 33 524574 +los ||| photographing the ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| photolithography ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| phthalates cause ||| 0.5 0.340278 1.90631e-06 1.72207e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| phthalates ||| 0.00531915 0.340278 1.90631e-06 9.53e-05 2.718 ||| 0-0 ||| 188 524574 +los ||| physical ||| 0.00325098 0.0045278 9.53154e-06 6.8e-06 2.718 ||| 0-0 ||| 1538 524574 +los ||| pick up the ||| 0.0253165 0.122289 3.81262e-06 2.89665e-08 2.718 ||| 0-2 ||| 79 524574 +los ||| pieces ||| 0.00303951 0.0019646 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 329 524574 +los ||| pilots ||| 0.00561798 0.311024 1.90631e-06 7.68e-05 2.718 ||| 0-0 ||| 178 524574 +los ||| pirates ||| 0.00826446 0.264151 1.90631e-06 4.08e-05 2.718 ||| 0-0 ||| 121 524574 +los ||| place after the ||| 0.0243902 0.122289 1.90631e-06 1.74952e-07 2.718 ||| 0-2 ||| 41 524574 +los ||| place as a result of the ||| 0.333333 0.122289 1.90631e-06 8.35802e-12 2.718 ||| 0-5 ||| 3 524574 +los ||| place as regards the ||| 0.5 0.122289 1.90631e-06 9.22285e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| place by means of ||| 0.125 0.0062464 1.90631e-06 8.39833e-11 2.718 ||| 0-1 ||| 8 524574 +los ||| place by means ||| 0.1 0.0062464 1.90631e-06 1.54483e-09 2.718 ||| 0-1 ||| 10 524574 +los ||| place by ||| 0.00847458 0.0062464 1.90631e-06 2.4378e-06 2.718 ||| 0-1 ||| 118 524574 +los ||| place for those ||| 1 0.284705 1.90631e-06 1.93141e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| place greater emphasis on education , ||| 0.5 0.0011583 1.90631e-06 1.49514e-19 2.718 ||| 0-4 ||| 2 524574 +los ||| place greater emphasis on education ||| 0.333333 0.0011583 1.90631e-06 1.25374e-18 2.718 ||| 0-4 ||| 3 524574 +los ||| place in the context ||| 0.04 0.122289 1.90631e-06 1.85442e-09 2.718 ||| 0-2 ||| 25 524574 +los ||| place in the ||| 0.00138889 0.122289 1.90631e-06 1.38183e-05 2.718 ||| 0-2 ||| 720 524574 +los ||| place instruments ||| 0.2 0.112873 1.90631e-06 1.41636e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| place of the ||| 0.00900901 0.122289 1.90631e-06 3.50963e-05 2.718 ||| 0-2 ||| 111 524574 +los ||| place the most important ||| 1 0.122289 1.90631e-06 1.07032e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| place the most ||| 0.5 0.122289 1.90631e-06 2.79019e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| place the ||| 0.0264901 0.122289 1.52505e-05 0.000645579 2.718 ||| 0-1 ||| 302 524574 +los ||| place with ||| 0.00617284 0.0007437 1.90631e-06 3.48257e-07 2.718 ||| 0-1 ||| 162 524574 +los ||| placed at the top of ||| 0.333333 0.122289 1.90631e-06 8.44795e-13 2.718 ||| 0-2 ||| 3 524574 +los ||| placed at the top ||| 0.25 0.122289 1.90631e-06 1.55396e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| placed at the ||| 0.0333333 0.122289 1.90631e-06 2.24886e-07 2.718 ||| 0-2 ||| 30 524574 +los ||| placed by the ||| 0.111111 0.122289 1.90631e-06 2.81958e-07 2.718 ||| 0-2 ||| 9 524574 +los ||| placed on the ||| 0.00374532 0.122289 1.90631e-06 3.59342e-07 2.718 ||| 0-2 ||| 267 524574 +los ||| places where ||| 0.00413223 0.0449398 1.90631e-06 1.1675e-07 2.718 ||| 0-1 ||| 242 524574 +los ||| placing the ||| 0.00840336 0.122289 1.90631e-06 1.02092e-05 2.718 ||| 0-1 ||| 119 524574 +los ||| plane ||| 0.00307692 0.0062305 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 325 524574 +los ||| planes ||| 0.00403226 0.169422 1.90631e-06 3.99e-05 2.718 ||| 0-0 ||| 248 524574 +los ||| planned with their ||| 0.25 0.0236713 1.90631e-06 5.00301e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| planning of the ||| 0.05 0.062134 1.90631e-06 3.98687e-08 2.718 ||| 0-1 0-2 ||| 20 524574 +los ||| plans and programmes which may have an ||| 1 0.182745 1.90631e-06 4.94511e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| plans and programmes which may have ||| 1 0.182745 1.90631e-06 1.11259e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| plans and programmes which may ||| 1 0.182745 1.90631e-06 9.30271e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| plans and programmes which ||| 0.5 0.182745 1.90631e-06 1.24169e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| plans and programmes ||| 0.00763359 0.182745 1.90631e-06 1.46173e-09 2.718 ||| 0-2 ||| 131 524574 +los ||| plans to ||| 0.00161551 0.12684 1.90631e-06 6.77366e-05 2.718 ||| 0-0 ||| 619 524574 +los ||| plans ||| 0.00137804 0.12684 1.71568e-05 0.0007623 2.718 ||| 0-0 ||| 6531 524574 +los ||| planters ||| 0.0625 0.0714286 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| planting , would mean handing over large ||| 1 0.199052 1.90631e-06 3.32194e-24 2.718 ||| 0-0 ||| 1 524574 +los ||| planting , would mean handing over ||| 1 0.199052 1.90631e-06 2.16132e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| planting , would mean handing ||| 1 0.199052 1.90631e-06 4.48871e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| planting , would mean ||| 1 0.199052 1.90631e-06 7.35855e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| planting , would ||| 1 0.199052 1.90631e-06 2.85547e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| planting , ||| 0.0909091 0.199052 1.90631e-06 4.86559e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| planting ||| 0.0130719 0.199052 3.81262e-06 4.08e-05 2.718 ||| 0-0 ||| 153 524574 +los ||| plastics ||| 0.0196078 0.155172 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 51 524574 +los ||| plates of plenty go by ||| 0.5 0.0062464 1.90631e-06 7.78631e-19 2.718 ||| 0-4 ||| 2 524574 +los ||| play the ||| 0.00471698 0.122289 1.90631e-06 0.000110671 2.718 ||| 0-1 ||| 212 524574 +los ||| play with regard to the ||| 0.5 0.122289 1.90631e-06 4.28174e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| played their ||| 0.05 0.0236713 1.90631e-06 1.12784e-07 2.718 ||| 0-1 ||| 20 524574 +los ||| players at grassroots level ||| 0.5 0.0280172 1.90631e-06 7.6273e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| players at grassroots ||| 0.5 0.0280172 1.90631e-06 8.91665e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| players ||| 0.00653239 0.1671 2.28757e-05 0.0003753 2.718 ||| 0-0 ||| 1837 524574 +los ||| playing the ||| 0.0235294 0.122289 3.81262e-06 2.82682e-05 2.718 ||| 0-1 ||| 85 524574 +los ||| please the ||| 0.0333333 0.122289 1.90631e-06 3.81342e-05 2.718 ||| 0-1 ||| 30 524574 +los ||| pleased to say that the ||| 0.037037 0.122289 1.90631e-06 2.49425e-11 2.718 ||| 0-4 ||| 27 524574 +los ||| plenary and in the Committee on ||| 0.2 0.122289 1.90631e-06 1.10383e-15 2.718 ||| 0-3 ||| 5 524574 +los ||| plenary and in the Committee ||| 0.125 0.122289 1.90631e-06 1.64972e-13 2.718 ||| 0-3 ||| 8 524574 +los ||| plenary and in the ||| 0.0714286 0.122289 1.90631e-06 1.08107e-09 2.718 ||| 0-3 ||| 14 524574 +los ||| plenary session when the ||| 1 0.122289 1.90631e-06 4.43452e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| plenty go by ||| 0.5 0.0062464 1.90631e-06 1.02304e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| plight of the people of ||| 0.166667 0.122289 1.90631e-06 2.7897e-12 2.718 ||| 0-2 ||| 6 524574 +los ||| plight of the people ||| 0.0666667 0.122289 1.90631e-06 5.13152e-11 2.718 ||| 0-2 ||| 15 524574 +los ||| plight of the ||| 0.010101 0.122289 1.90631e-06 5.82995e-08 2.718 ||| 0-2 ||| 99 524574 +los ||| pluralism - ||| 0.5 0.0101695 1.90631e-06 4.41336e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| pluralism ||| 0.00112613 0.0101695 1.90631e-06 1.17e-05 2.718 ||| 0-0 ||| 888 524574 +los ||| plus the ||| 0.0102041 0.122289 1.90631e-06 3.08849e-06 2.718 ||| 0-1 ||| 98 524574 +los ||| pockets ||| 0.00338983 0.0123457 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 295 524574 +los ||| point in the ||| 0.00840336 0.122289 3.81262e-06 8.03206e-06 2.718 ||| 0-2 ||| 238 524574 +los ||| point of view are ||| 0.333333 0.0005024 1.90631e-06 7.76695e-12 2.718 ||| 0-3 ||| 3 524574 +los ||| point of view ||| 0.000233209 0.0019787 1.90631e-06 2.61369e-09 2.718 ||| 0-1 ||| 4288 524574 +los ||| point of ||| 0.000153139 0.0019787 1.90631e-06 2.89349e-06 2.718 ||| 0-1 ||| 6530 524574 +los ||| point out that the ||| 0.00111982 0.122289 1.90631e-06 2.41787e-08 2.718 ||| 0-3 ||| 893 524574 +los ||| point out the ||| 0.00350877 0.122289 1.90631e-06 1.43736e-06 2.718 ||| 0-2 ||| 285 524574 +los ||| pointed out , the ||| 0.0163934 0.122289 1.90631e-06 9.03303e-09 2.718 ||| 0-3 ||| 61 524574 +los ||| pointed to the ||| 0.0238095 0.122289 1.90631e-06 1.75716e-06 2.718 ||| 0-2 ||| 42 524574 +los ||| pointing the finger ||| 0.0434783 0.122289 1.90631e-06 1.71377e-10 2.718 ||| 0-1 ||| 23 524574 +los ||| pointing the ||| 0.0384615 0.122289 1.90631e-06 9.73731e-06 2.718 ||| 0-1 ||| 26 524574 +los ||| points from the ||| 0.047619 0.122289 1.90631e-06 8.97338e-08 2.718 ||| 0-2 ||| 21 524574 +los ||| points of ||| 0.00254453 0.0213308 5.71893e-06 1.63853e-05 2.718 ||| 0-0 ||| 1179 524574 +los ||| points out ||| 0.00115741 0.0213308 1.90631e-06 1.15448e-06 2.718 ||| 0-0 ||| 864 524574 +los ||| points ||| 0.00133393 0.0213308 3.43136e-05 0.0003014 2.718 ||| 0-0 ||| 13494 524574 +los ||| police forces and those ||| 1 0.284705 1.90631e-06 1.83665e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| police ||| 0.000185494 0.0015146 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 5391 524574 +los ||| policy , stressing the urgent need ||| 1 0.122289 1.90631e-06 2.28241e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| policy , stressing the urgent ||| 1 0.122289 1.90631e-06 2.48927e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| policy , stressing the ||| 1 0.122289 1.90631e-06 8.0559e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| policy , we are talking about the ||| 1 0.122289 1.90631e-06 5.36735e-16 2.718 ||| 0-6 ||| 1 524574 +los ||| policy areas , ||| 0.00970874 0.0243257 1.90631e-06 2.85319e-08 2.718 ||| 0-1 ||| 103 524574 +los ||| policy areas ||| 0.00151515 0.0243257 1.90631e-06 2.39251e-07 2.718 ||| 0-1 ||| 660 524574 +los ||| policy could address the different ||| 1 0.122289 1.90631e-06 2.01767e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| policy could address the ||| 1 0.122289 1.90631e-06 9.16292e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| policy problems ||| 0.04 0.106249 1.90631e-06 1.20728e-06 2.718 ||| 0-1 ||| 25 524574 +los ||| policy to the ||| 0.0833333 0.122289 1.90631e-06 1.50064e-05 2.718 ||| 0-2 ||| 12 524574 +los ||| policy-makers simply argue ||| 1 0.261306 1.90631e-06 2.46796e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| policy-makers simply ||| 1 0.261306 1.90631e-06 1.1218e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| policy-makers ||| 0.00769231 0.261306 1.90631e-06 5.06e-05 2.718 ||| 0-0 ||| 130 524574 +los ||| political and ||| 0.000280034 0.0007799 1.90631e-06 4.62206e-07 2.718 ||| 0-0 ||| 3571 524574 +los ||| political conflicts ||| 0.0238095 0.214045 1.90631e-06 1.43353e-07 2.718 ||| 0-1 ||| 42 524574 +los ||| political figures ||| 0.03125 0.0007799 1.90631e-06 1.70109e-09 2.718 ||| 0-0 ||| 32 524574 +los ||| political groups ||| 0.000419992 0.143803 1.90631e-06 3.54215e-07 2.718 ||| 0-1 ||| 2381 524574 +los ||| political leaders ||| 0.00205339 0.22637 1.90631e-06 1.97849e-07 2.718 ||| 0-1 ||| 487 524574 +los ||| political parties ||| 0.00103359 0.132694 3.81262e-06 3.00059e-07 2.718 ||| 0-1 ||| 1935 524574 +los ||| political reform has ||| 1 0.0007799 1.90631e-06 7.78765e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| political reform ||| 0.00840336 0.0007799 1.90631e-06 1.5129e-09 2.718 ||| 0-0 ||| 119 524574 +los ||| political terms ||| 0.00395257 0.0007799 1.90631e-06 4.05014e-08 2.718 ||| 0-0 ||| 253 524574 +los ||| political ||| 0.000440225 0.0007799 4.38451e-05 3.69e-05 2.718 ||| 0-0 ||| 52246 524574 +los ||| politicians and ||| 0.00284091 0.299137 1.90631e-06 1.77191e-05 2.718 ||| 0-0 ||| 352 524574 +los ||| politicians do ||| 0.2 0.299137 1.90631e-06 4.85958e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| politicians have joined in and even the ||| 1 0.299137 1.90631e-06 2.13507e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| politicians have joined in and even ||| 1 0.299137 1.90631e-06 3.47778e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| politicians have joined in and ||| 1 0.299137 1.90631e-06 5.71534e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| politicians have joined in ||| 1 0.299137 1.90631e-06 4.56282e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| politicians have joined ||| 1 0.299137 1.90631e-06 2.13171e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| politicians have ||| 0.0142857 0.299137 1.90631e-06 1.69183e-05 2.718 ||| 0-0 ||| 70 524574 +los ||| politicians in ||| 0.00645161 0.299137 1.90631e-06 3.02788e-05 2.718 ||| 0-0 ||| 155 524574 +los ||| politicians ||| 0.00327332 0.299137 2.28757e-05 0.0014146 2.718 ||| 0-0 ||| 3666 524574 +los ||| politics ||| 0.000575374 0.0096657 3.81262e-06 4.67e-05 2.718 ||| 0-0 ||| 3476 524574 +los ||| polling ||| 0.0232558 0.0969388 1.90631e-06 1.85e-05 2.718 ||| 0-0 ||| 43 524574 +los ||| pollutants ||| 0.00934579 0.10017 7.62523e-06 5.74e-05 2.718 ||| 0-0 ||| 428 524574 +los ||| polluted the ||| 0.125 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| polluters ||| 0.00763359 0.188482 1.90631e-06 3.5e-05 2.718 ||| 0-0 ||| 131 524574 +los ||| pollution ||| 0.00111732 0.0035792 7.62523e-06 1.75e-05 2.718 ||| 0-0 ||| 3580 524574 +los ||| pollution-spewing ||| 0.25 0.5 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| polybromodiphenyl ||| 1 0.666667 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| polychlorinated ||| 1 0.5 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| polycyclic ||| 0.333333 0.195652 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| ponder the thought ||| 0.5 0.122289 1.90631e-06 3.92109e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| ponder the ||| 0.0833333 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 12 524574 +los ||| pool the ||| 0.0588235 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-1 ||| 17 524574 +los ||| poor ||| 0.00404235 0.0315692 4.00325e-05 0.0001653 2.718 ||| 0-0 ||| 5195 524574 +los ||| poorer ||| 0.00412655 0.0771099 5.71893e-06 0.0001235 2.718 ||| 0-0 ||| 727 524574 +los ||| poorest ships ||| 1 0.29596 1.90631e-06 5.30556e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| popular expression ||| 0.5 0.0171607 1.90631e-06 8.7098e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| popular project ||| 0.111111 0.0171607 1.90631e-06 1.30968e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| popular ||| 0.00262238 0.0171607 5.71893e-06 2.14e-05 2.718 ||| 0-0 ||| 1144 524574 +los ||| populated by whites , ||| 0.5 0.166667 1.90631e-06 6.74935e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| populated by whites ||| 0.5 0.166667 1.90631e-06 5.65961e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| populated regions and ||| 0.333333 0.0023923 1.90631e-06 1.03213e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| populated regions ||| 0.111111 0.0023923 1.90631e-06 8.24e-11 2.718 ||| 0-0 ||| 9 524574 +los ||| populated ||| 0.00416667 0.0023923 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 240 524574 +los ||| populist ||| 0.003861 0.0074906 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 259 524574 +los ||| port ||| 0.00541272 0.0440191 1.52505e-05 8.94e-05 2.718 ||| 0-0 ||| 1478 524574 +los ||| portions of the ||| 0.166667 0.122289 1.90631e-06 1.63238e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| portions of ||| 0.0666667 0.0019787 1.90631e-06 2.31532e-09 2.718 ||| 0-1 ||| 15 524574 +los ||| ports , ||| 0.00520833 0.299963 1.90631e-06 9.27563e-05 2.718 ||| 0-0 ||| 192 524574 +los ||| ports and ||| 0.008 0.299963 3.81262e-06 9.74265e-06 2.718 ||| 0-0 ||| 250 524574 +los ||| ports of ||| 0.0540541 0.299963 1.14379e-05 4.22843e-05 2.718 ||| 0-0 ||| 111 524574 +los ||| ports ||| 0.00937346 0.299963 3.62199e-05 0.0007778 2.718 ||| 0-0 ||| 2027 524574 +los ||| poses the ||| 0.025 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-1 ||| 40 524574 +los ||| position of those ||| 0.04 0.284705 1.90631e-06 2.98922e-07 2.718 ||| 0-2 ||| 25 524574 +los ||| position to give the ||| 0.2 0.122289 1.90631e-06 7.60633e-09 2.718 ||| 0-3 ||| 5 524574 +los ||| position to set its ||| 1 0.0211371 1.90631e-06 3.65105e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| positions as ||| 0.0714286 0.0009297 1.90631e-06 1.20598e-08 2.718 ||| 0-1 ||| 14 524574 +los ||| positive , ||| 0.00194553 0.0002102 1.90631e-06 3.45839e-07 2.718 ||| 0-0 ||| 514 524574 +los ||| positive ||| 0.000139101 0.0002102 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 14378 524574 +los ||| possess the ||| 0.0238095 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-1 ||| 42 524574 +los ||| possession of the ||| 0.0666667 0.122289 3.81262e-06 3.35805e-07 2.718 ||| 0-2 ||| 30 524574 +los ||| possibility of the ||| 0.01 0.122289 1.90631e-06 1.99617e-06 2.718 ||| 0-2 ||| 100 524574 +los ||| possible by the ||| 0.0285714 0.122289 1.90631e-06 1.80638e-06 2.718 ||| 0-2 ||| 35 524574 +los ||| possible for a person ' s records ||| 0.5 0.148855 1.90631e-06 2.6171e-20 2.718 ||| 0-6 ||| 2 524574 +los ||| possible for fish ||| 1 0.0906807 1.90631e-06 2.16381e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| possible for the ||| 0.011194 0.122289 5.71893e-06 2.64439e-06 2.718 ||| 0-2 ||| 268 524574 +los ||| possible for ||| 0.000786163 0.0019339 1.90631e-06 5.45685e-07 2.718 ||| 0-0 ||| 1272 524574 +los ||| possible the ||| 0.025 0.122289 3.81262e-06 0.000344066 2.718 ||| 0-1 ||| 80 524574 +los ||| possible to ensure ||| 0.00775194 0.0019339 1.90631e-06 2.82893e-09 2.718 ||| 0-0 ||| 129 524574 +los ||| possible to increase the ||| 0.0833333 0.122289 1.90631e-06 3.95004e-09 2.718 ||| 0-3 ||| 12 524574 +los ||| possible to make ||| 0.0075188 0.0019339 1.90631e-06 1.09637e-08 2.718 ||| 0-0 ||| 133 524574 +los ||| possible to ||| 0.000682594 0.0019339 5.71893e-06 6.30893e-06 2.718 ||| 0-0 ||| 4395 524574 +los ||| possible ||| 0.00182934 0.0019339 9.15028e-05 7.1e-05 2.718 ||| 0-0 ||| 26239 524574 +los ||| possibly increase the ||| 1 0.122289 1.90631e-06 2.49395e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| post , because we entered the ||| 0.5 0.122289 1.90631e-06 1.49608e-16 2.718 ||| 0-5 ||| 2 524574 +los ||| postal ||| 0.00151172 0.0329966 3.81262e-06 4.76e-05 2.718 ||| 0-0 ||| 1323 524574 +los ||| posted a ||| 0.25 0.0075188 1.90631e-06 8.4219e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| posted ||| 0.00413223 0.0075188 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 242 524574 +los ||| posts , ||| 0.0144928 0.107289 1.90631e-06 1.5193e-05 2.718 ||| 0-0 ||| 69 524574 +los ||| posts for the Court of ||| 1 0.107289 1.90631e-06 1.5294e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| posts for the Court ||| 1 0.107289 1.90631e-06 2.81325e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| posts for the ||| 0.0769231 0.107289 1.90631e-06 6.01123e-08 2.718 ||| 0-0 ||| 13 524574 +los ||| posts for ||| 0.0204082 0.107289 1.90631e-06 9.79158e-07 2.718 ||| 0-0 ||| 49 524574 +los ||| posts ||| 0.00670498 0.107289 1.33442e-05 0.0001274 2.718 ||| 0-0 ||| 1044 524574 +los ||| potential Commissioners ||| 1 0.12491 1.90631e-06 2.60384e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| potential is ||| 0.0208333 0.0019657 1.90631e-06 4.26239e-07 2.718 ||| 0-0 ||| 48 524574 +los ||| potential ||| 0.000617894 0.0019657 9.53154e-06 1.36e-05 2.718 ||| 0-0 ||| 8092 524574 +los ||| potentially contaminated animal meal ? ||| 1 0.173314 1.90631e-06 2.7789e-23 2.718 ||| 0-2 ||| 1 524574 +los ||| potentially contaminated animal meal ||| 1 0.173314 1.90631e-06 1.62604e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| potentially contaminated animal ||| 1 0.173314 1.90631e-06 5.60703e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| power by the ||| 0.047619 0.122289 1.90631e-06 3.36233e-07 2.718 ||| 0-2 ||| 21 524574 +los ||| powers vested in ||| 0.2 0.0443787 1.90631e-06 1.54065e-11 2.718 ||| 0-1 ||| 5 524574 +los ||| powers vested ||| 0.166667 0.0443787 1.90631e-06 7.1978e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| practical problems that these ||| 1 0.0240362 1.90631e-06 2.41562e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| practice , produce the ||| 1 0.122289 1.90631e-06 4.77169e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| practice the ||| 0.00840336 0.122289 1.90631e-06 4.5212e-05 2.718 ||| 0-1 ||| 119 524574 +los ||| practices and the ||| 0.0625 0.122289 1.90631e-06 1.91281e-07 2.718 ||| 0-2 ||| 16 524574 +los ||| practices of ||| 0.0070922 0.0019787 1.90631e-06 1.17751e-07 2.718 ||| 0-1 ||| 141 524574 +los ||| practised by the ||| 0.0526316 0.122289 1.90631e-06 2.1845e-08 2.718 ||| 0-2 ||| 19 524574 +los ||| practitioners of ||| 0.0454545 0.244094 1.90631e-06 3.27815e-06 2.718 ||| 0-0 ||| 22 524574 +los ||| practitioners ||| 0.04 0.244094 1.33442e-05 6.03e-05 2.718 ||| 0-0 ||| 175 524574 +los ||| praise at the sterling ||| 0.5 0.122289 1.90631e-06 6.28674e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| praise at the ||| 0.5 0.122289 1.90631e-06 2.5147e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| precarious ||| 0.00179856 0.0050761 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 556 524574 +los ||| preceded by the ||| 0.111111 0.122289 3.81262e-06 4.95454e-09 2.718 ||| 0-2 ||| 18 524574 +los ||| precedents ||| 0.00787402 0.054878 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 127 524574 +los ||| precise targets is what I learnt ||| 1 0.104037 1.90631e-06 5.11598e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| precise targets is what I ||| 1 0.104037 1.90631e-06 5.06533e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| precise targets is what ||| 1 0.104037 1.90631e-06 7.16099e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| precise targets is ||| 1 0.104037 1.90631e-06 5.10369e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| precise targets ||| 0.0769231 0.104037 1.90631e-06 1.62844e-08 2.718 ||| 0-1 ||| 13 524574 +los ||| precise ||| 0.000426621 0.000815 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 2344 524574 +los ||| precisely , with ||| 0.5 0.0007437 1.90631e-06 2.72092e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| precisely the ||| 0.010479 0.122289 1.33442e-05 4.22951e-05 2.718 ||| 0-1 ||| 668 524574 +los ||| precisely those ||| 0.0294118 0.284705 3.81262e-06 1.64638e-06 2.718 ||| 0-1 ||| 68 524574 +los ||| precisely what will lead to the serious ||| 1 0.0061209 1.90631e-06 9.89298e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| precisely what will lead to the ||| 1 0.0061209 1.90631e-06 8.58766e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| precisely what will lead to ||| 1 0.0061209 1.90631e-06 1.39883e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| precisely what will lead ||| 1 0.0061209 1.90631e-06 1.57422e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| precisely what will ||| 0.5 0.0061209 1.90631e-06 8.17779e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| precisely what ||| 0.00242718 0.0061209 1.90631e-06 9.45278e-08 2.718 ||| 0-1 ||| 412 524574 +los ||| predict what sort of return ||| 1 0.0061209 1.90631e-06 1.2203e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| predict what sort of ||| 1 0.0061209 1.90631e-06 1.83229e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| predict what sort ||| 1 0.0061209 1.90631e-06 3.37041e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| predict what ||| 0.0357143 0.0061209 1.90631e-06 2.10914e-09 2.718 ||| 0-1 ||| 28 524574 +los ||| prefer the option ||| 0.5 0.122289 1.90631e-06 4.67056e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| prefer the ||| 0.0232558 0.122289 1.90631e-06 1.12816e-05 2.718 ||| 0-1 ||| 43 524574 +los ||| prejudice ||| 0.00139276 0.045392 1.90631e-06 3.21e-05 2.718 ||| 0-0 ||| 718 524574 +los ||| prejudices ||| 0.00869565 0.191781 3.81262e-06 5.44e-05 2.718 ||| 0-0 ||| 230 524574 +los ||| preliminary ||| 0.00129702 0.0007949 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 771 524574 +los ||| preparations ||| 0.00241692 0.189267 7.62523e-06 0.000384 2.718 ||| 0-0 ||| 1655 524574 +los ||| preparatory step the ||| 1 0.122289 1.90631e-06 3.16355e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| preparatory work ||| 0.00233645 0.0134745 1.90631e-06 8.6088e-09 2.718 ||| 0-0 ||| 428 524574 +los ||| preparatory ||| 0.00187441 0.0134745 3.81262e-06 1.36e-05 2.718 ||| 0-0 ||| 1067 524574 +los ||| prepare , as early ||| 0.5 0.0061936 1.90631e-06 7.44757e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| prepared to kill the ||| 1 0.122289 1.90631e-06 1.42101e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| prepayment ||| 1 0.166667 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| prescribed in ||| 0.03125 0.015873 1.90631e-06 1.24146e-07 2.718 ||| 0-0 ||| 32 524574 +los ||| prescribed ||| 0.0083682 0.015873 3.81262e-06 5.8e-06 2.718 ||| 0-0 ||| 239 524574 +los ||| presence of the ||| 0.0034965 0.122289 1.90631e-06 8.97812e-07 2.718 ||| 0-2 ||| 286 524574 +los ||| present genetic modification ||| 0.5 0.0025729 1.90631e-06 1.91052e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| present genetic ||| 0.5 0.0025729 1.90631e-06 1.0614e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| present in the ||| 0.00294118 0.122289 1.90631e-06 3.36046e-06 2.718 ||| 0-2 ||| 340 524574 +los ||| present the ||| 0.00239234 0.122289 1.90631e-06 0.000156998 2.718 ||| 0-1 ||| 418 524574 +los ||| presentation of the ||| 0.00373134 0.122289 1.90631e-06 3.68453e-07 2.718 ||| 0-2 ||| 268 524574 +los ||| presented by ||| 0.000694444 0.0062464 1.90631e-06 1.2764e-07 2.718 ||| 0-1 ||| 1440 524574 +los ||| presents the ||| 0.0240964 0.122289 3.81262e-06 5.40485e-06 2.718 ||| 0-1 ||| 83 524574 +los ||| preserving business ||| 0.25 0.057606 1.90631e-06 3.54728e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| pressure from businesses in the ||| 1 0.122289 1.90631e-06 2.36379e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| pressure off the ||| 0.0909091 0.122289 1.90631e-06 1.04926e-08 2.718 ||| 0-2 ||| 11 524574 +los ||| pressure-group ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| pretty speeches , if ||| 1 0.0286426 1.90631e-06 1.20356e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| pretty speeches , ||| 1 0.0286426 1.90631e-06 1.44036e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| pretty speeches ||| 0.2 0.0286426 1.90631e-06 1.2078e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| prevent the ' ||| 0.125 0.122289 1.90631e-06 7.52919e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| prevent the ||| 0.000678887 0.122289 1.90631e-06 2.19197e-05 2.718 ||| 0-1 ||| 1473 524574 +los ||| prevent these women ||| 0.5 0.0240362 1.90631e-06 1.47973e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| prevent these ||| 0.0238095 0.0240362 3.81262e-06 1.24556e-07 2.718 ||| 0-1 ||| 84 524574 +los ||| preventing ||| 0.000560695 0.0027894 3.81262e-06 7.8e-06 2.718 ||| 0-0 ||| 3567 524574 +los ||| previous ||| 0.00498622 0.0133636 7.24397e-05 9.72e-05 2.718 ||| 0-0 ||| 7621 524574 +los ||| price of ||| 0.000873362 0.0802296 1.90631e-06 3.02862e-05 2.718 ||| 0-0 ||| 1145 524574 +los ||| price would the ||| 1 0.122289 1.90631e-06 1.2864e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| price ||| 0.00216257 0.0802296 3.24072e-05 0.0005571 2.718 ||| 0-0 ||| 7861 524574 +los ||| prices , ||| 0.00522193 0.34239 3.81262e-06 0.000417868 2.718 ||| 0-0 ||| 383 524574 +los ||| prices have ||| 0.0166667 0.34239 1.90631e-06 4.19071e-05 2.718 ||| 0-0 ||| 60 524574 +los ||| prices in today 's Europe ||| 1 0.34239 1.90631e-06 3.26169e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| prices in today 's ||| 1 0.34239 1.90631e-06 6.44604e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| prices in today ||| 1 0.34239 1.90631e-06 3.38481e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| prices in ||| 0.00854701 0.34239 1.90631e-06 7.50014e-05 2.718 ||| 0-0 ||| 117 524574 +los ||| prices more ||| 0.5 0.34239 1.90631e-06 8.00208e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| prices must be affordable and fair . ||| 0.5 0.34239 1.90631e-06 4.82244e-22 2.718 ||| 0-0 ||| 2 524574 +los ||| prices must be affordable and fair ||| 0.5 0.34239 1.90631e-06 1.59209e-19 2.718 ||| 0-0 ||| 2 524574 +los ||| prices must be affordable and ||| 0.5 0.34239 1.90631e-06 3.07353e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| prices must be affordable ||| 0.5 0.34239 1.90631e-06 2.45374e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| prices must be ||| 0.166667 0.34239 1.90631e-06 9.81497e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| prices must ||| 0.111111 0.34239 1.90631e-06 5.41578e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| prices under ||| 0.166667 0.34239 1.90631e-06 1.25724e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| prices went up ||| 1 0.34239 1.90631e-06 7.6124e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| prices went ||| 0.5 0.34239 1.90631e-06 2.23205e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| prices ||| 0.00432484 0.34239 6.86271e-05 0.003504 2.718 ||| 0-0 ||| 8324 524574 +los ||| pricing ||| 0.00362319 0.103514 3.81262e-06 0.000106 2.718 ||| 0-0 ||| 552 524574 +los ||| primarily the ||| 0.00793651 0.122289 1.90631e-06 7.72121e-06 2.718 ||| 0-1 ||| 126 524574 +los ||| principally in the ||| 0.125 0.122289 1.90631e-06 2.66266e-08 2.718 ||| 0-2 ||| 8 524574 +los ||| principles , ||| 0.0022831 0.0388775 1.90631e-06 4.83459e-05 2.718 ||| 0-0 ||| 438 524574 +los ||| principles - , the ||| 1 0.122289 1.90631e-06 7.77637e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| principles ||| 0.00034638 0.0388775 7.62523e-06 0.0004054 2.718 ||| 0-0 ||| 11548 524574 +los ||| print ||| 0.00806452 0.0182927 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 124 524574 +los ||| priorities - competitiveness , the environment , ||| 1 0.122289 1.90631e-06 1.12855e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| priorities - competitiveness , the environment ||| 1 0.122289 1.90631e-06 9.46336e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| priorities - competitiveness , the ||| 1 0.122289 1.90631e-06 1.69594e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| priority is the ||| 0.030303 0.122289 1.90631e-06 7.50173e-07 2.718 ||| 0-2 ||| 33 524574 +los ||| priority the ||| 0.0526316 0.122289 1.90631e-06 2.39358e-05 2.718 ||| 0-1 ||| 19 524574 +los ||| priority to the ||| 0.00485437 0.122289 1.90631e-06 2.12689e-06 2.718 ||| 0-2 ||| 206 524574 +los ||| priority to ||| 0.00101626 0.0001952 1.90631e-06 1.68831e-07 2.718 ||| 0-0 ||| 984 524574 +los ||| priority ||| 9.81932e-05 0.0001952 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 10184 524574 +los ||| prisoners being ||| 0.333333 0.26413 1.90631e-06 2.0171e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| prisoners who have ||| 0.333333 0.26413 1.90631e-06 7.47681e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| prisoners who ||| 0.0263158 0.26413 1.90631e-06 6.25162e-07 2.718 ||| 0-0 ||| 38 524574 +los ||| prisoners ||| 0.00520833 0.26413 2.09694e-05 0.0007088 2.718 ||| 0-0 ||| 2112 524574 +los ||| private individuals , ||| 0.0285714 0.0182829 1.90631e-06 4.69458e-10 2.718 ||| 0-0 ||| 35 524574 +los ||| private individuals ||| 0.00555556 0.0182829 1.90631e-06 3.9366e-09 2.718 ||| 0-0 ||| 180 524574 +los ||| private operators ||| 0.0116279 0.330195 1.90631e-06 3.24656e-08 2.718 ||| 0-1 ||| 86 524574 +los ||| private security contractors , a move which ||| 1 0.270936 1.90631e-06 7.14225e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| private security contractors , a move ||| 1 0.270936 1.90631e-06 8.40799e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| private security contractors , a ||| 1 0.270936 1.90631e-06 5.49901e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| private security contractors , ||| 1 0.270936 1.90631e-06 1.24059e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| private security contractors ||| 1 0.270936 1.90631e-06 1.04029e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| private ||| 0.0119628 0.0182829 0.000154411 0.0001215 2.718 ||| 0-0 ||| 6771 524574 +los ||| prize ||| 0.00251889 0.0020243 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 397 524574 +los ||| pro-Palestinian ||| 0.0588235 0.25 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| pro-democracy forces ||| 0.166667 0.0333333 1.90631e-06 1.5341e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| pro-democracy ||| 0.0107527 0.0333333 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 93 524574 +los ||| probably over for ||| 1 0.0015353 1.90631e-06 2.36919e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| probably the matter ||| 0.5 0.122289 1.90631e-06 2.48334e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| probably the ||| 0.00325733 0.122289 1.90631e-06 2.39358e-05 2.718 ||| 0-1 ||| 307 524574 +los ||| problem identifying the parties involved ||| 1 0.122289 1.90631e-06 7.83562e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| problem identifying the parties ||| 1 0.122289 1.90631e-06 2.26594e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| problem identifying the ||| 1 0.122289 1.90631e-06 3.08711e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| problem of the ||| 0.0013089 0.122289 1.90631e-06 5.24462e-06 2.718 ||| 0-2 ||| 764 524574 +los ||| problem such as ||| 0.142857 0.0009297 1.90631e-06 1.66017e-10 2.718 ||| 0-2 ||| 7 524574 +los ||| problematic ||| 0.00120773 0.0011574 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 828 524574 +los ||| problems , and indeed I am ||| 0.5 0.106249 1.90631e-06 3.13714e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| problems , and indeed I ||| 0.5 0.106249 1.90631e-06 2.45569e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| problems , and indeed ||| 0.5 0.106249 1.90631e-06 3.47168e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| problems , and ||| 0.00653595 0.106249 1.90631e-06 4.58065e-06 2.718 ||| 0-0 ||| 153 524574 +los ||| problems , ||| 0.00142248 0.106249 3.81262e-06 0.000365695 2.718 ||| 0-0 ||| 1406 524574 +los ||| problems : ||| 0.0121951 0.106249 1.90631e-06 1.0328e-06 2.718 ||| 0-0 ||| 82 524574 +los ||| problems as ||| 0.00952381 0.106249 1.90631e-06 3.12918e-05 2.718 ||| 0-0 ||| 105 524574 +los ||| problems exist elsewhere ||| 1 0.106249 1.90631e-06 1.0478e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| problems exist ||| 0.0526316 0.106249 1.90631e-06 2.82425e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| problems in ||| 0.000796178 0.106249 1.90631e-06 6.56369e-05 2.718 ||| 0-0 ||| 1256 524574 +los ||| problems instead ; the ||| 1 0.122289 1.90631e-06 3.57975e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| problems of one ' ||| 1 0.0444479 1.90631e-06 1.61748e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| problems still persist ||| 0.333333 0.106249 1.90631e-06 1.40891e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| problems still ||| 0.0625 0.106249 1.90631e-06 2.30969e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| problems that are ||| 0.0149254 0.106249 1.90631e-06 7.8266e-07 2.718 ||| 0-0 ||| 67 524574 +los ||| problems that these ||| 0.5 0.0240362 1.90631e-06 5.50256e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| problems that ||| 0.00185185 0.106249 3.81262e-06 5.15834e-05 2.718 ||| 0-0 ||| 1080 524574 +los ||| problems vent ||| 1 0.106249 1.90631e-06 3.37315e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| problems were very ||| 1 0.106249 1.90631e-06 1.9114e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| problems were ||| 0.03125 0.106249 1.90631e-06 5.49333e-06 2.718 ||| 0-0 ||| 32 524574 +los ||| problems which exist ||| 0.0434783 0.106249 1.90631e-06 2.39908e-09 2.718 ||| 0-0 ||| 23 524574 +los ||| problems which ||| 0.00167504 0.106249 1.90631e-06 2.60487e-05 2.718 ||| 0-0 ||| 597 524574 +los ||| problems with various members of the ||| 1 0.062134 1.90631e-06 2.77284e-17 2.718 ||| 0-4 0-5 ||| 1 524574 +los ||| problems ||| 0.00197409 0.106249 0.00010866 0.0030665 2.718 ||| 0-0 ||| 28874 524574 +los ||| procedural ||| 0.00271739 0.0361861 7.62523e-06 6.13e-05 2.718 ||| 0-0 ||| 1472 524574 +los ||| procedure throughout the ||| 1 0.122289 1.90631e-06 1.71838e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| procedures for ||| 0.00313972 0.219824 3.81262e-06 1.82628e-05 2.718 ||| 0-0 ||| 637 524574 +los ||| procedures is ||| 0.047619 0.219824 1.90631e-06 7.44727e-05 2.718 ||| 0-0 ||| 21 524574 +los ||| procedures relating to ||| 0.0333333 0.219824 1.90631e-06 2.40072e-08 2.718 ||| 0-0 ||| 30 524574 +los ||| procedures relating ||| 0.04 0.219824 1.90631e-06 2.70174e-07 2.718 ||| 0-0 ||| 25 524574 +los ||| procedures used ||| 0.0666667 0.219824 1.90631e-06 1.01939e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| procedures ||| 0.00284091 0.219824 5.5283e-05 0.0023762 2.718 ||| 0-0 ||| 10208 524574 +los ||| proceedings against the ||| 0.0322581 0.122289 1.90631e-06 3.71527e-09 2.718 ||| 0-2 ||| 31 524574 +los ||| proceedings ||| 0.00182216 0.119163 9.53154e-06 0.0003597 2.718 ||| 0-0 ||| 2744 524574 +los ||| process , those ||| 1 0.284705 1.90631e-06 8.51267e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| process documents ||| 1 0.212011 1.90631e-06 5.31211e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| process of producing an overview of our ||| 1 0.0248369 1.90631e-06 3.62779e-21 2.718 ||| 0-6 ||| 1 524574 +los ||| processes , ||| 0.010101 0.199138 1.90631e-06 8.03538e-05 2.718 ||| 0-0 ||| 99 524574 +los ||| processes as ||| 0.25 0.199138 1.90631e-06 6.87572e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| processes them ||| 0.5 0.199138 1.90631e-06 1.8074e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| processes ||| 0.00541321 0.199138 2.85946e-05 0.0006738 2.718 ||| 0-0 ||| 2771 524574 +los ||| processing ||| 0.00296883 0.005618 1.14379e-05 8.8e-06 2.718 ||| 0-0 ||| 2021 524574 +los ||| processors ||| 0.00621118 0.201031 1.90631e-06 3.79e-05 2.718 ||| 0-0 ||| 161 524574 +los ||| procurement ||| 0.000452284 0.0300523 1.90631e-06 6.71e-05 2.718 ||| 0-0 ||| 2211 524574 +los ||| produce all ||| 0.1 0.0177928 1.90631e-06 2.37915e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| produce much in the way of ||| 1 0.122289 1.90631e-06 9.55751e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| produce much in the way ||| 1 0.122289 1.90631e-06 1.75806e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| produce much in the ||| 1 0.122289 1.90631e-06 8.15578e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| produce the necessary pressure ||| 0.5 0.122289 1.90631e-06 5.87044e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| produce the necessary ||| 0.333333 0.122289 1.90631e-06 9.76779e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| produce the ||| 0.0213675 0.122289 9.53154e-06 3.79626e-05 2.718 ||| 0-1 ||| 234 524574 +los ||| produced convenience foods ||| 1 0.2715 1.90631e-06 1.68965e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| produced the ||| 0.0108696 0.122289 1.90631e-06 4.53836e-05 2.718 ||| 0-1 ||| 92 524574 +los ||| produced their ||| 0.142857 0.0236713 1.90631e-06 2.42039e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| producer ||| 0.00191022 0.0672683 3.81262e-06 7.97e-05 2.718 ||| 0-0 ||| 1047 524574 +los ||| producers ' ||| 0.010989 0.202899 1.90631e-06 1.34517e-05 2.718 ||| 0-0 0-1 ||| 91 524574 +los ||| producers , those ||| 0.5 0.284705 1.90631e-06 3.86306e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| producers - ||| 0.0625 0.36135 1.90631e-06 9.53926e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| producers and products ||| 0.25 0.36135 1.90631e-06 3.29438e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| producers and ||| 0.00170358 0.36135 1.90631e-06 3.16767e-05 2.718 ||| 0-0 ||| 587 524574 +los ||| producers of ||| 0.00389105 0.36135 1.90631e-06 0.000137481 2.718 ||| 0-0 ||| 257 524574 +los ||| producers they are ||| 1 0.36135 1.90631e-06 1.2524e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| producers they ||| 1 0.36135 1.90631e-06 8.25433e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| producers ||| 0.00418182 0.36135 4.38451e-05 0.0025289 2.718 ||| 0-0 ||| 5500 524574 +los ||| produces ||| 0.00163666 0.0030488 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 611 524574 +los ||| producing an overview of our working ||| 1 0.0248369 1.90631e-06 2.97209e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| producing an overview of our ||| 1 0.0248369 1.90631e-06 1.56097e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| producing the ||| 0.0152672 0.122289 3.81262e-06 1.437e-05 2.718 ||| 0-1 ||| 131 524574 +los ||| production and ||| 0.000492854 0.0004197 1.90631e-06 6.13769e-08 2.718 ||| 0-0 ||| 2029 524574 +los ||| production costs ||| 0.00340136 0.214442 1.90631e-06 2.31212e-07 2.718 ||| 0-1 ||| 294 524574 +los ||| production methods ||| 0.00480769 0.156921 1.90631e-06 6.47041e-08 2.718 ||| 0-1 ||| 208 524574 +los ||| production processes , ||| 0.0714286 0.199138 1.90631e-06 6.70954e-09 2.718 ||| 0-1 ||| 14 524574 +los ||| production processes ||| 0.0140845 0.199138 1.90631e-06 5.62623e-08 2.718 ||| 0-1 ||| 71 524574 +los ||| production ||| 0.000105585 0.0004197 3.81262e-06 4.9e-06 2.718 ||| 0-0 ||| 18942 524574 +los ||| products , ||| 0.003663 0.245259 5.71893e-06 0.000596774 2.718 ||| 0-0 ||| 819 524574 +los ||| products against producers ||| 1 0.36135 1.90631e-06 6.27531e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| products and ||| 0.00131062 0.245259 1.90631e-06 6.26821e-05 2.718 ||| 0-0 ||| 763 524574 +los ||| products face the ||| 1 0.122289 1.90631e-06 7.4635e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| products gives us good reason ||| 1 0.245259 1.90631e-06 1.38563e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| products gives us good ||| 1 0.245259 1.90631e-06 5.92402e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| products gives us ||| 1 0.245259 1.90631e-06 1.14231e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| products gives ||| 1 0.245259 1.90631e-06 3.96333e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| products is ||| 0.0140845 0.245259 1.90631e-06 0.000156837 2.718 ||| 0-0 ||| 71 524574 +los ||| products like ||| 0.0625 0.245259 1.90631e-06 8.88696e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| products moved ||| 1 0.245259 1.90631e-06 1.58633e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| products to be established ||| 0.0833333 0.245259 1.90631e-06 1.20637e-09 2.718 ||| 0-0 ||| 12 524574 +los ||| products to be ||| 0.0172414 0.245259 1.90631e-06 8.0586e-06 2.718 ||| 0-0 ||| 58 524574 +los ||| products to ||| 0.00512821 0.245259 1.90631e-06 0.000444664 2.718 ||| 0-0 ||| 195 524574 +los ||| products under the ||| 0.125 0.122289 1.90631e-06 1.60066e-08 2.718 ||| 0-2 ||| 8 524574 +los ||| products which ||| 0.00325733 0.245259 1.90631e-06 4.25087e-05 2.718 ||| 0-0 ||| 307 524574 +los ||| products would ||| 0.0833333 0.245259 1.90631e-06 2.93681e-05 2.718 ||| 0-0 ||| 12 524574 +los ||| products ||| 0.00617797 0.245259 0.000198256 0.0050042 2.718 ||| 0-0 ||| 16834 524574 +los ||| professional ||| 0.000332557 0.0023923 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 3007 524574 +los ||| professionals of these kinds cannot ||| 1 0.0240362 1.90631e-06 5.10521e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| professionals of these kinds ||| 1 0.0240362 1.90631e-06 2.26596e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| professionals of these ||| 1 0.0240362 1.90631e-06 4.77044e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| professionals ||| 0.00217155 0.303003 3.81262e-06 0.0003238 2.718 ||| 0-0 ||| 921 524574 +los ||| profit at the ||| 0.166667 0.0690772 1.90631e-06 3.19798e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| profit at ||| 0.047619 0.0690772 1.90631e-06 5.20913e-07 2.718 ||| 0-0 ||| 21 524574 +los ||| profit for ||| 0.027027 0.0690772 1.90631e-06 9.56101e-07 2.718 ||| 0-0 ||| 37 524574 +los ||| profit out of Indonesia , which ||| 1 0.0690772 1.90631e-06 1.04967e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| profit out of Indonesia , ||| 1 0.0690772 1.90631e-06 1.2357e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| profit out of Indonesia ||| 1 0.0690772 1.90631e-06 1.03618e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| profit out of ||| 0.125 0.0690772 1.90631e-06 2.59045e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| profit out ||| 0.111111 0.0690772 1.90631e-06 4.76502e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| profit the ||| 0.2 0.122289 1.90631e-06 5.57643e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| profit ||| 0.0026455 0.0690772 7.62523e-06 0.0001244 2.718 ||| 0-0 ||| 1512 524574 +los ||| profits for ||| 0.011236 0.0803772 1.90631e-06 3.14626e-07 2.718 ||| 0-0 0-1 ||| 89 524574 +los ||| profits may ||| 1 0.159219 1.90631e-06 2.67315e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| profits they have been making . more ||| 1 0.159219 1.90631e-06 1.23766e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| profits they have been making . ||| 1 0.159219 1.90631e-06 5.41954e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| profits they have been making ||| 1 0.159219 1.90631e-06 1.78922e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| profits they have been ||| 1 0.159219 1.90631e-06 4.65095e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| profits they have ||| 0.5 0.159219 1.90631e-06 1.39283e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| profits they ||| 0.166667 0.159219 1.90631e-06 1.1646e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| profits ||| 0.0058855 0.159219 2.09694e-05 0.0003568 2.718 ||| 0-0 ||| 1869 524574 +los ||| programme the ||| 0.0588235 0.122289 1.90631e-06 5.4649e-05 2.718 ||| 0-1 ||| 17 524574 +los ||| programmes ( ||| 0.25 0.182745 1.90631e-06 2.67322e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| programmes , ||| 0.00134953 0.182745 1.90631e-06 0.000330562 2.718 ||| 0-0 ||| 741 524574 +los ||| programmes and ||| 0.00142653 0.182745 1.90631e-06 3.47205e-05 2.718 ||| 0-0 ||| 701 524574 +los ||| programmes are both ||| 0.5 0.182745 1.90631e-06 6.96678e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| programmes are ||| 0.00520833 0.182745 1.90631e-06 4.20572e-05 2.718 ||| 0-0 ||| 192 524574 +los ||| programmes as ||| 0.0344828 0.182745 1.90631e-06 2.82856e-05 2.718 ||| 0-0 ||| 29 524574 +los ||| programmes which may have an environmental ||| 1 0.182745 1.90631e-06 2.56004e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| programmes which may have an ||| 1 0.182745 1.90631e-06 9.37745e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| programmes which may have ||| 1 0.182745 1.90631e-06 2.1098e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| programmes which may ||| 1 0.182745 1.90631e-06 1.76408e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| programmes which ||| 0.00632911 0.182745 1.90631e-06 2.35462e-05 2.718 ||| 0-0 ||| 158 524574 +los ||| programmes ||| 0.00221424 0.182745 7.05334e-05 0.0027719 2.718 ||| 0-0 ||| 16710 524574 +los ||| progress ? ||| 0.037037 0.0392854 1.90631e-06 1.4506e-07 2.718 ||| 0-0 ||| 27 524574 +los ||| progress in the ||| 0.00158983 0.122289 1.90631e-06 1.20922e-06 2.718 ||| 0-2 ||| 629 524574 +los ||| progress is ||| 0.00440529 0.0392854 1.90631e-06 2.66023e-05 2.718 ||| 0-0 ||| 227 524574 +los ||| progress ||| 0.00169943 0.0392854 5.71893e-05 0.0008488 2.718 ||| 0-0 ||| 17653 524574 +los ||| project holders ||| 0.333333 0.281955 1.90631e-06 8.92296e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| project sponsors to ||| 1 0.210084 1.90631e-06 1.32146e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| project sponsors ||| 0.5 0.210084 1.90631e-06 1.48716e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| project the ||| 0.0666667 0.122289 1.90631e-06 2.62521e-05 2.718 ||| 0-1 ||| 15 524574 +los ||| projected to rise ||| 1 0.0131579 1.90631e-06 2.12051e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| projected to ||| 0.0344828 0.0131579 1.90631e-06 1.68831e-07 2.718 ||| 0-0 ||| 29 524574 +los ||| projected ||| 0.00813008 0.0131579 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 123 524574 +los ||| projects at ||| 0.05 0.161094 1.90631e-06 7.96318e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| projects for ||| 0.00526316 0.161094 1.90631e-06 1.46159e-05 2.718 ||| 0-0 ||| 190 524574 +los ||| projects which ||| 0.00355872 0.161094 1.90631e-06 1.61542e-05 2.718 ||| 0-0 ||| 281 524574 +los ||| projects ||| 0.00215896 0.161094 5.14703e-05 0.0019017 2.718 ||| 0-0 ||| 12506 524574 +los ||| promote , the ||| 1 0.122289 1.90631e-06 3.27904e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| promote programmes ||| 0.0833333 0.182745 1.90631e-06 1.77679e-07 2.718 ||| 0-1 ||| 12 524574 +los ||| promote the ||| 0.00109051 0.122289 3.81262e-06 2.74961e-05 2.718 ||| 0-1 ||| 1834 524574 +los ||| promoting the ||| 0.00106157 0.122289 1.90631e-06 1.21824e-05 2.718 ||| 0-1 ||| 942 524574 +los ||| prompted by the ||| 0.0322581 0.122289 1.90631e-06 2.1845e-08 2.718 ||| 0-2 ||| 31 524574 +los ||| prompted the ||| 0.0138889 0.122289 1.90631e-06 4.16088e-06 2.718 ||| 0-1 ||| 72 524574 +los ||| promptly cut the ||| 0.333333 0.122289 1.90631e-06 1.88089e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| propaganda by the European ||| 1 0.122289 1.90631e-06 2.40982e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| propaganda by the ||| 0.142857 0.122289 1.90631e-06 7.2066e-09 2.718 ||| 0-2 ||| 7 524574 +los ||| proper heating for people ' ||| 1 0.0444479 1.90631e-06 1.01907e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| property . ||| 0.00826446 0.166965 1.90631e-06 1.64929e-06 2.718 ||| 0-0 ||| 121 524574 +los ||| property owners ||| 0.0714286 0.278381 1.90631e-06 5.23722e-09 2.718 ||| 0-1 ||| 14 524574 +los ||| property ||| 0.0213582 0.166965 7.4346e-05 0.0005445 2.718 ||| 0-0 ||| 1826 524574 +los ||| proponents ||| 0.0333333 0.156863 5.71893e-06 1.56e-05 2.718 ||| 0-0 ||| 90 524574 +los ||| proposal , the ||| 0.00645161 0.122289 1.90631e-06 1.02157e-05 2.718 ||| 0-2 ||| 155 524574 +los ||| proposal - the ||| 0.111111 0.122289 1.90631e-06 3.23128e-07 2.718 ||| 0-2 ||| 9 524574 +los ||| proposal by the Group ||| 0.111111 0.122289 1.90631e-06 1.46299e-10 2.718 ||| 0-2 ||| 9 524574 +los ||| proposal by the ||| 0.00315457 0.122289 1.90631e-06 4.49737e-07 2.718 ||| 0-2 ||| 317 524574 +los ||| proposal that the ||| 0.00769231 0.122289 1.90631e-06 1.44098e-06 2.718 ||| 0-2 ||| 130 524574 +los ||| propose that the ||| 0.0126582 0.122289 1.90631e-06 2.43892e-07 2.718 ||| 0-2 ||| 79 524574 +los ||| propose to ||| 0.00341297 1.44e-05 1.90631e-06 7.8754e-10 2.718 ||| 0-1 ||| 293 524574 +los ||| proposers ||| 0.0588235 0.121212 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| proposes the ||| 0.00666667 0.122289 1.90631e-06 4.16088e-06 2.718 ||| 0-1 ||| 150 524574 +los ||| proposing the ||| 0.00689655 0.122289 1.90631e-06 1.00376e-05 2.718 ||| 0-1 ||| 145 524574 +los ||| prosecute ||| 0.00420168 0.0066007 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 238 524574 +los ||| protect children and ||| 0.0526316 0.293415 1.90631e-06 2.38314e-09 2.718 ||| 0-1 ||| 19 524574 +los ||| protect children ||| 0.0135135 0.293415 1.90631e-06 1.90257e-07 2.718 ||| 0-1 ||| 74 524574 +los ||| protect the ||| 0.00154719 0.122289 5.71893e-06 1.4799e-05 2.718 ||| 0-1 ||| 1939 524574 +los ||| protect ||| 0.00125497 0.0019251 2.28757e-05 1.46e-05 2.718 ||| 0-0 ||| 9562 524574 +los ||| protected , ||| 0.0070922 0.0032727 1.90631e-06 1.04944e-06 2.718 ||| 0-0 ||| 141 524574 +los ||| protected ||| 0.0020339 0.0032727 1.14379e-05 8.8e-06 2.718 ||| 0-0 ||| 2950 524574 +los ||| protecting criminals ||| 0.5 0.251442 1.90631e-06 5.34114e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| protecting the ||| 0.000704722 0.122289 1.90631e-06 5.40485e-06 2.718 ||| 0-1 ||| 1419 524574 +los ||| protecting ||| 0.000142531 0.0014168 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 7016 524574 +los ||| protection from ||| 0.00389105 0.0005762 1.90631e-06 2.19014e-08 2.718 ||| 0-0 ||| 257 524574 +los ||| protection of the ||| 0.000593472 0.122289 1.90631e-06 2.36696e-06 2.718 ||| 0-2 ||| 1685 524574 +los ||| protection products ||| 0.05 0.245259 1.90631e-06 5.07926e-07 2.718 ||| 0-1 ||| 20 524574 +los ||| protection ||| 0.000195793 0.0005762 1.33442e-05 1.36e-05 2.718 ||| 0-0 ||| 35752 524574 +los ||| protects them ||| 0.25 0.012069 1.90631e-06 1.82403e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| protects ||| 0.0045045 0.012069 3.81262e-06 6.8e-06 2.718 ||| 0-0 ||| 444 524574 +los ||| protest the ||| 0.333333 0.122289 1.90631e-06 4.33246e-06 2.718 ||| 0-1 ||| 3 524574 +los ||| protocols amending the ||| 0.5 0.122289 1.90631e-06 9.26546e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| protocols ||| 0.00560224 0.101942 3.81262e-06 4.08e-05 2.718 ||| 0-0 ||| 357 524574 +los ||| provide a better response to the ||| 0.333333 0.122289 1.90631e-06 8.491e-15 2.718 ||| 0-5 ||| 3 524574 +los ||| provide details ||| 0.0625 0.0606164 1.90631e-06 5.09072e-08 2.718 ||| 0-1 ||| 16 524574 +los ||| provide immigrants ||| 0.333333 0.305149 1.90631e-06 3.95455e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| provide our citizens ||| 0.5 0.293572 1.90631e-06 6.17638e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| provide proof ||| 0.0434783 0.0003582 1.90631e-06 1.3572e-10 2.718 ||| 0-0 ||| 23 524574 +los ||| provide the ||| 0.00972447 0.122289 2.28757e-05 0.000126885 2.718 ||| 0-1 ||| 1234 524574 +los ||| provide ||| 0.000233463 0.0003582 5.71893e-06 5.8e-06 2.718 ||| 0-0 ||| 12850 524574 +los ||| provided by the ||| 0.00390625 0.122289 5.71893e-06 5.16173e-07 2.718 ||| 0-2 ||| 768 524574 +los ||| provided for in the Treaties but ||| 1 0.122289 1.90631e-06 8.73209e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| provided for in the Treaties ||| 0.0434783 0.122289 1.90631e-06 1.27774e-13 2.718 ||| 0-3 ||| 23 524574 +los ||| provided for in the ||| 0.00185529 0.122289 1.90631e-06 1.6174e-08 2.718 ||| 0-3 ||| 539 524574 +los ||| provided the ||| 0.00454545 0.122289 1.90631e-06 9.83168e-05 2.718 ||| 0-1 ||| 220 524574 +los ||| providers of ||| 0.00877193 0.158701 1.90631e-06 2.18996e-06 2.718 ||| 0-0 0-1 ||| 114 524574 +los ||| providers ||| 0.00556586 0.315424 1.71568e-05 0.0006621 2.718 ||| 0-0 ||| 1617 524574 +los ||| provides the ||| 0.00763359 0.122289 5.71893e-06 3.07133e-05 2.718 ||| 0-1 ||| 393 524574 +los ||| providing food aid , and we ||| 1 0.123536 1.90631e-06 4.48111e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| providing food aid , and ||| 1 0.123536 1.90631e-06 3.94731e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| providing food aid , ||| 1 0.123536 1.90631e-06 3.15132e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| providing food aid ||| 0.5 0.123536 1.90631e-06 2.64251e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| providing food ||| 0.0666667 0.123536 1.90631e-06 2.02336e-07 2.718 ||| 0-1 ||| 15 524574 +los ||| providing the ||| 0.005 0.122289 3.81262e-06 3.93782e-05 2.718 ||| 0-1 ||| 400 524574 +los ||| providing these services to ||| 1 0.0240362 1.90631e-06 1.75966e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| providing these services ||| 0.125 0.0240362 1.90631e-06 1.9803e-11 2.718 ||| 0-1 ||| 8 524574 +los ||| providing these ||| 0.0555556 0.0240362 1.90631e-06 2.23762e-07 2.718 ||| 0-1 ||| 18 524574 +los ||| providing ||| 0.000183284 0.000312 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 5456 524574 +los ||| proving the ||| 0.0454545 0.122289 1.90631e-06 5.23327e-06 2.718 ||| 0-1 ||| 22 524574 +los ||| provision for publishing the ||| 1 0.122289 1.90631e-06 1.25332e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| psychologists ||| 0.0526316 0.285714 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 19 524574 +los ||| public bodies ||| 0.00649351 0.165094 1.90631e-06 1.51144e-07 2.718 ||| 0-1 ||| 154 524574 +los ||| public debates ||| 0.0185185 0.122803 1.90631e-06 9.00274e-08 2.718 ||| 0-1 ||| 54 524574 +los ||| public demand ||| 0.0555556 0.0160961 1.90631e-06 3.16347e-08 2.718 ||| 0-0 ||| 18 524574 +los ||| public opinion in ||| 0.00296736 0.0160961 1.90631e-06 3.10012e-09 2.718 ||| 0-0 ||| 337 524574 +los ||| public opinion ||| 0.00065189 0.0160961 3.81262e-06 1.44835e-07 2.718 ||| 0-0 ||| 3068 524574 +los ||| public places ||| 0.0140845 0.0160961 1.90631e-06 3.12216e-08 2.718 ||| 0-0 ||| 71 524574 +los ||| public right ||| 0.125 0.0160961 1.90631e-06 3.8062e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| public service ||| 0.000622278 0.0160961 1.90631e-06 3.94844e-08 2.718 ||| 0-0 ||| 1607 524574 +los ||| public services ||| 0.000513347 0.272175 1.90631e-06 1.25977e-06 2.718 ||| 0-1 ||| 1948 524574 +los ||| public works ||| 0.00892857 0.0160961 1.90631e-06 2.44343e-08 2.718 ||| 0-0 ||| 112 524574 +los ||| public ||| 0.00497585 0.0160961 0.000324072 0.0005902 2.718 ||| 0-0 ||| 34165 524574 +los ||| publish a ||| 0.0106383 0.001368 1.90631e-06 4.43258e-08 2.718 ||| 0-0 ||| 94 524574 +los ||| publish ||| 0.00151745 0.001368 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 659 524574 +los ||| publishing the ||| 0.0185185 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-1 ||| 54 524574 +los ||| pubs ||| 0.05 0.268293 1.90631e-06 1.07e-05 2.718 ||| 0-0 ||| 20 524574 +los ||| pull the ||| 0.0363636 0.122289 3.81262e-06 1.02092e-05 2.718 ||| 0-1 ||| 55 524574 +los ||| pull ||| 0.00434783 0.0070053 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 230 524574 +los ||| pulling the ||| 0.0285714 0.122289 1.90631e-06 3.56034e-06 2.718 ||| 0-1 ||| 35 524574 +los ||| pulling up the ||| 1 0.122289 3.81262e-06 1.21425e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| punished at the stake ||| 0.111111 0.122289 1.90631e-06 3.30898e-13 2.718 ||| 0-2 ||| 9 524574 +los ||| punished at the ||| 0.111111 0.122289 1.90631e-06 1.09569e-08 2.718 ||| 0-2 ||| 9 524574 +los ||| punishment is ||| 0.0285714 0.015121 1.90631e-06 4.5758e-07 2.718 ||| 0-0 ||| 35 524574 +los ||| punishment ||| 0.000947867 0.015121 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 1055 524574 +los ||| pupils and young ||| 0.5 0.275665 1.90631e-06 1.12504e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| pupils and ||| 0.0185185 0.275665 1.90631e-06 1.76615e-06 2.718 ||| 0-0 ||| 54 524574 +los ||| pupils ||| 0.016 0.275665 1.14379e-05 0.000141 2.718 ||| 0-0 ||| 375 524574 +los ||| purchased securities ||| 1 0.113208 1.90631e-06 1.26e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| purely on the ||| 0.04 0.122289 1.90631e-06 7.34758e-08 2.718 ||| 0-2 ||| 25 524574 +los ||| purpose of exporting ||| 1 0.0348432 1.90631e-06 1.89734e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| purpose of making the Member States ' ||| 1 0.0444479 1.90631e-06 3.02122e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| pursue a modern ||| 1 0.0129957 1.90631e-06 6.5854e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| pursue them ||| 0.142857 0.038218 3.81262e-06 7.88939e-08 2.718 ||| 0-1 ||| 14 524574 +los ||| push the ||| 0.0120482 0.122289 1.90631e-06 1.18821e-05 2.718 ||| 0-1 ||| 83 524574 +los ||| push up the ||| 0.125 0.122289 1.90631e-06 4.05239e-08 2.718 ||| 0-2 ||| 8 524574 +los ||| pushing the ||| 0.02 0.122289 1.90631e-06 5.70512e-06 2.718 ||| 0-1 ||| 50 524574 +los ||| put all manner ||| 0.5 0.0177928 1.90631e-06 5.78003e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| put all ||| 0.010989 0.0177928 1.90631e-06 2.96412e-06 2.718 ||| 0-1 ||| 91 524574 +los ||| put an end to the ||| 0.00480769 0.122289 3.81262e-06 8.12756e-11 2.718 ||| 0-4 ||| 416 524574 +los ||| put down the ||| 0.1 0.122289 1.90631e-06 3.30178e-07 2.718 ||| 0-2 ||| 10 524574 +los ||| put down ||| 0.00571429 0.0049833 1.90631e-06 9.43826e-08 2.718 ||| 0-1 ||| 175 524574 +los ||| put forward the ||| 0.00934579 0.122289 1.90631e-06 2.63159e-07 2.718 ||| 0-2 ||| 107 524574 +los ||| put in place the ||| 0.0140845 0.122289 1.90631e-06 1.52361e-08 2.718 ||| 0-3 ||| 71 524574 +los ||| put my ||| 0.025641 0.0086409 1.90631e-06 7.60022e-07 2.718 ||| 0-1 ||| 39 524574 +los ||| put the ||| 0.0149597 0.122289 2.4782e-05 0.000472967 2.718 ||| 0-1 ||| 869 524574 +los ||| put their ||| 0.0114286 0.0236713 3.81262e-06 2.52242e-06 2.718 ||| 0-1 ||| 175 524574 +los ||| put them on a ||| 0.5 0.038218 1.90631e-06 6.58147e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| put them on ||| 0.0555556 0.038218 1.90631e-06 1.48479e-08 2.718 ||| 0-1 ||| 18 524574 +los ||| put them to ||| 0.0714286 0.038218 1.90631e-06 1.97185e-07 2.718 ||| 0-1 ||| 14 524574 +los ||| put them ||| 0.0268456 0.038218 7.62523e-06 2.21909e-06 2.718 ||| 0-1 ||| 149 524574 +los ||| put those ||| 0.0666667 0.284705 1.90631e-06 1.84108e-05 2.718 ||| 0-1 ||| 15 524574 +los ||| put up with the fact that ||| 1 0.122289 1.90631e-06 5.08261e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| put up with the fact ||| 1 0.122289 1.90631e-06 3.02148e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| put up with the ||| 0.047619 0.122289 1.90631e-06 1.03147e-08 2.718 ||| 0-3 ||| 21 524574 +los ||| puts the ||| 0.0148148 0.122289 3.81262e-06 1.41985e-05 2.718 ||| 0-1 ||| 135 524574 +los ||| puts them at ||| 0.125 0.038218 1.90631e-06 2.78952e-10 2.718 ||| 0-1 ||| 8 524574 +los ||| puts them ||| 0.0869565 0.038218 3.81262e-06 6.66171e-08 2.718 ||| 0-1 ||| 23 524574 +los ||| putting Europeans at ||| 0.25 0.354859 1.90631e-06 1.27924e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| putting Europeans ||| 0.25 0.354859 1.90631e-06 3.05498e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| putting all our ||| 0.2 0.0248369 1.90631e-06 1.8883e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| putting forward the ||| 0.027027 0.122289 1.90631e-06 2.67073e-08 2.718 ||| 0-2 ||| 37 524574 +los ||| putting our ||| 0.0384615 0.0248369 1.90631e-06 3.99606e-07 2.718 ||| 0-1 ||| 26 524574 +los ||| putting the ||| 0.0124224 0.122289 7.62523e-06 4.80002e-05 2.718 ||| 0-1 ||| 322 524574 +los ||| putting up ||| 0.0169492 0.0031618 1.90631e-06 2.37228e-08 2.718 ||| 0-1 ||| 59 524574 +los ||| qualify ||| 0.0118577 0.0727273 5.71893e-06 3.89e-05 2.718 ||| 0-0 ||| 253 524574 +los ||| quality child ||| 0.5 0.075445 1.90631e-06 1.78811e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| quantity of ||| 0.00302115 0.0019787 1.90631e-06 2.84454e-08 2.718 ||| 0-1 ||| 331 524574 +los ||| quarters the ||| 0.5 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| quarters ||| 0.00486618 0.0268456 3.81262e-06 1.56e-05 2.718 ||| 0-0 ||| 411 524574 +los ||| question and the ||| 0.015873 0.122289 1.90631e-06 4.44514e-06 2.718 ||| 0-2 ||| 63 524574 +los ||| question of the ||| 0.00074129 0.122289 1.90631e-06 1.92925e-05 2.718 ||| 0-2 ||| 1349 524574 +los ||| question their ||| 0.2 0.0236713 1.90631e-06 1.89261e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| questions of guilt among the ||| 1 0.122289 1.90631e-06 7.95141e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| questions of ||| 0.00144718 0.0019787 1.90631e-06 2.92723e-07 2.718 ||| 0-1 ||| 691 524574 +los ||| questions ||| 7.72141e-05 6.94e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 12951 524574 +los ||| quite clear , the ||| 0.166667 0.122289 1.90631e-06 6.64321e-09 2.718 ||| 0-3 ||| 6 524574 +los ||| quite happy for the ||| 0.5 0.122289 1.90631e-06 8.10239e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| quite on the contrary , ||| 0.2 0.122289 1.90631e-06 6.72955e-12 2.718 ||| 0-2 ||| 5 524574 +los ||| quite on the contrary ||| 0.2 0.122289 1.90631e-06 5.64301e-11 2.718 ||| 0-2 ||| 5 524574 +los ||| quite on the ||| 0.142857 0.122289 1.90631e-06 1.11964e-06 2.718 ||| 0-2 ||| 7 524574 +los ||| quite shameless in the profits they have ||| 1 0.159219 1.90631e-06 4.99791e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| quite shameless in the profits they ||| 1 0.159219 1.90631e-06 4.17892e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| quite shameless in the profits ||| 1 0.159219 1.90631e-06 1.28031e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| quite simply a snare of the ||| 1 0.122289 1.90631e-06 3.57588e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| quite the reverse ||| 0.00934579 0.122289 1.90631e-06 1.62316e-09 2.718 ||| 0-1 ||| 107 524574 +los ||| quite the ||| 0.00747664 0.122289 7.62523e-06 0.000167336 2.718 ||| 0-1 ||| 535 524574 +los ||| quotas under the ||| 1 0.122289 1.90631e-06 1.60066e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| quotas ||| 0.000630915 0.0163934 3.81262e-06 5.64e-05 2.718 ||| 0-0 ||| 3170 524574 +los ||| quote : the ||| 1 0.122289 1.90631e-06 6.44347e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| racist ||| 0.00158228 0.005059 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 632 524574 +los ||| radical ||| 0.000693001 0.0006649 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1443 524574 +los ||| radicals ||| 0.0135135 0.182692 1.90631e-06 1.85e-05 2.718 ||| 0-0 ||| 74 524574 +los ||| radioactive ||| 0.00128866 0.02836 1.90631e-06 2.24e-05 2.718 ||| 0-0 ||| 776 524574 +los ||| rail transport must therefore ||| 1 0.0215081 1.90631e-06 1.09864e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| rail transport must ||| 0.166667 0.0215081 1.90631e-06 1.31369e-11 2.718 ||| 0-0 ||| 6 524574 +los ||| rail transport ||| 0.00130039 0.0215081 1.90631e-06 8.49954e-09 2.718 ||| 0-0 ||| 769 524574 +los ||| rail ||| 0.00162655 0.0215081 9.53154e-06 8.26e-05 2.718 ||| 0-0 ||| 3074 524574 +los ||| rail-related ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| railway systems ||| 0.0333333 0.213574 1.90631e-06 3.05434e-08 2.718 ||| 0-1 ||| 30 524574 +los ||| railway ||| 0.00115875 0.0094955 3.81262e-06 1.56e-05 2.718 ||| 0-0 ||| 1726 524574 +los ||| railways ||| 0.00222058 0.126809 5.71893e-06 0.0002129 2.718 ||| 0-0 ||| 1351 524574 +los ||| raise awareness on ||| 0.333333 0.0006914 1.90631e-06 7.03042e-13 2.718 ||| 0-2 ||| 3 524574 +los ||| raise clients ||| 1 0.221311 1.90631e-06 5.19292e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| raise complaints ||| 0.166667 0.0004554 1.90631e-06 6.59e-11 2.718 ||| 0-1 ||| 6 524574 +los ||| raise high ||| 1 0.0033276 1.90631e-06 3.20274e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| raise our ||| 0.0196078 0.0248369 1.90631e-06 2.35335e-07 2.718 ||| 0-1 ||| 51 524574 +los ||| raise the ||| 0.00615764 0.122289 9.53154e-06 2.82682e-05 2.718 ||| 0-1 ||| 812 524574 +los ||| raised all ||| 0.333333 0.0177928 1.90631e-06 3.09692e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| raised the question ||| 0.00680272 0.122289 1.90631e-06 4.08817e-08 2.718 ||| 0-1 ||| 147 524574 +los ||| raised the spectre of the ||| 0.333333 0.0821857 1.90631e-06 1.7528e-13 2.718 ||| 0-1 0-3 0-4 ||| 3 524574 +los ||| raised the ||| 0.00180505 0.122289 1.90631e-06 4.94158e-05 2.718 ||| 0-1 ||| 554 524574 +los ||| raised to the level ||| 0.25 0.122289 1.90631e-06 3.75606e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| raised to the ||| 0.0526316 0.122289 1.90631e-06 4.391e-06 2.718 ||| 0-2 ||| 19 524574 +los ||| raising the ||| 0.00226757 0.122289 1.90631e-06 9.86599e-06 2.718 ||| 0-1 ||| 441 524574 +los ||| rallying round the ||| 0.5 0.122289 1.90631e-06 1.05283e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| rallying together the ||| 1 0.122289 1.90631e-06 8.2442e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| random about the ||| 1 0.122289 1.90631e-06 1.09201e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| range of ||| 0.000442282 0.0019787 1.90631e-06 2.27232e-07 2.718 ||| 0-1 ||| 2261 524574 +los ||| rapporteurs ||| 0.000423549 0.0299296 3.81262e-06 0.0001322 2.718 ||| 0-0 ||| 4722 524574 +los ||| rates , become ||| 1 0.177851 1.90631e-06 3.59075e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| rates , ||| 0.0267857 0.177851 5.71893e-06 0.000125683 2.718 ||| 0-0 ||| 112 524574 +los ||| rates in a ||| 0.2 0.177851 1.90631e-06 9.9991e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| rates in ||| 0.0232558 0.177851 1.90631e-06 2.25582e-05 2.718 ||| 0-0 ||| 43 524574 +los ||| rates of ||| 0.00555556 0.177851 3.81262e-06 5.72942e-05 2.718 ||| 0-0 ||| 360 524574 +los ||| rates ||| 0.00611189 0.177851 4.9564e-05 0.0010539 2.718 ||| 0-0 ||| 4254 524574 +los ||| rather only those people ||| 0.5 0.284705 1.90631e-06 5.00927e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| rather only those ||| 0.5 0.284705 1.90631e-06 5.69106e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| rather the arrival ||| 0.5 0.122289 1.90631e-06 9.45694e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| rather the ||| 0.00490196 0.122289 1.90631e-06 0.000131346 2.718 ||| 0-1 ||| 204 524574 +los ||| ratified by the national parliaments . ||| 0.2 0.269224 1.90631e-06 1.48515e-18 2.718 ||| 0-4 ||| 5 524574 +los ||| ratified by the national parliaments ||| 0.125 0.269224 1.90631e-06 4.90309e-16 2.718 ||| 0-4 ||| 8 524574 +los ||| rating the ||| 0.25 0.122289 1.90631e-06 3.08849e-06 2.718 ||| 0-1 ||| 4 524574 +los ||| ratings of the ||| 0.333333 0.122289 1.90631e-06 5.13035e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| rationing procedures ||| 0.0833333 0.219824 1.90631e-06 2.61382e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| raw material funds ||| 0.25 0.220459 1.90631e-06 1.20929e-12 2.718 ||| 0-2 ||| 4 524574 +los ||| raw materials by ||| 0.5 0.0062464 1.90631e-06 2.60788e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| reach our ||| 0.0175439 0.0248369 1.90631e-06 2.89259e-07 2.718 ||| 0-1 ||| 57 524574 +los ||| reach the EU ||| 0.2 0.122289 1.90631e-06 1.71921e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| reach the ||| 0.00353982 0.122289 3.81262e-06 3.47455e-05 2.718 ||| 0-1 ||| 565 524574 +los ||| reached in terms of the ||| 1 0.122289 1.90631e-06 5.91694e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| reached the point ||| 0.0166667 0.122289 1.90631e-06 4.05271e-08 2.718 ||| 0-1 ||| 60 524574 +los ||| reached the stage where ||| 0.1 0.122289 1.90631e-06 2.10136e-12 2.718 ||| 0-1 ||| 10 524574 +los ||| reached the stage ||| 0.0416667 0.122289 1.90631e-06 6.93519e-09 2.718 ||| 0-1 ||| 24 524574 +los ||| reached the ||| 0.00437637 0.122289 3.81262e-06 4.63273e-05 2.718 ||| 0-1 ||| 457 524574 +los ||| reaching the average development parameters ||| 1 0.122289 1.90631e-06 3.0712e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| reaching the average development ||| 1 0.122289 1.90631e-06 4.72492e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| reaching the average ||| 1 0.122289 1.90631e-06 2.87229e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| reaching the ||| 0.00452489 0.122289 1.90631e-06 1.15818e-05 2.718 ||| 0-1 ||| 221 524574 +los ||| reaching those ||| 0.125 0.284705 1.90631e-06 4.50835e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| reactors ||| 0.00612557 0.19871 7.62523e-06 0.0001497 2.718 ||| 0-0 ||| 653 524574 +los ||| read in the way the ||| 1 0.122289 1.90631e-06 5.85658e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| read the ||| 0.00362319 0.122289 3.81262e-06 2.06757e-05 2.718 ||| 0-1 ||| 552 524574 +los ||| read them ||| 0.0217391 0.038218 1.90631e-06 9.70073e-08 2.718 ||| 0-1 ||| 46 524574 +los ||| reading the ||| 0.00333333 0.122289 1.90631e-06 1.23539e-05 2.718 ||| 0-1 ||| 300 524574 +los ||| real environmental ||| 0.111111 0.0151175 1.90631e-06 6.24433e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| real obstacles ||| 0.0666667 0.140146 1.90631e-06 7.74829e-08 2.718 ||| 0-1 ||| 15 524574 +los ||| real problems ||| 0.00383142 0.106249 1.90631e-06 5.51663e-07 2.718 ||| 0-1 ||| 261 524574 +los ||| real progress ||| 0.00253807 0.0392854 1.90631e-06 1.52699e-07 2.718 ||| 0-1 ||| 394 524574 +los ||| real ||| 0.000264288 0.0003907 7.62523e-06 5.8e-06 2.718 ||| 0-0 ||| 15135 524574 +los ||| realising the ||| 0.0210526 0.122289 3.81262e-06 1.71583e-06 2.718 ||| 0-1 ||| 95 524574 +los ||| realize that Members have a great deal ||| 0.25 0.168879 1.90631e-06 4.16382e-20 2.718 ||| 0-2 ||| 4 524574 +los ||| realize that Members have a great ||| 0.25 0.168879 1.90631e-06 9.80645e-17 2.718 ||| 0-2 ||| 4 524574 +los ||| realize that Members have a ||| 0.25 0.168879 1.90631e-06 2.49528e-13 2.718 ||| 0-2 ||| 4 524574 +los ||| realize that Members have ||| 0.25 0.168879 1.90631e-06 5.62941e-12 2.718 ||| 0-2 ||| 4 524574 +los ||| realize that Members ||| 0.25 0.168879 1.90631e-06 4.70694e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| realize that although the ||| 1 0.122289 1.90631e-06 4.48645e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| really accept the ||| 0.5 0.122289 1.90631e-06 2.25033e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| really all ||| 0.047619 0.0177928 1.90631e-06 1.30221e-06 2.718 ||| 0-1 ||| 21 524574 +los ||| really fulfil our ||| 1 0.0248369 1.90631e-06 4.42839e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| really is available ||| 1 0.0092131 1.90631e-06 1.6381e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| really watch the ||| 0.2 0.122289 1.90631e-06 3.74016e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| rear-mounted ||| 1 0.5 7.62523e-06 4.9e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| reason , the ||| 0.00298507 0.122289 1.90631e-06 1.19652e-05 2.718 ||| 0-2 ||| 335 524574 +los ||| reason is simple . the ||| 1 0.122289 1.90631e-06 4.11472e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| reason that payments have ||| 1 0.273884 1.90631e-06 6.79405e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| reason that payments ||| 1 0.273884 1.90631e-06 5.68074e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| reason why the ||| 0.00333333 0.122289 1.90631e-06 2.47321e-08 2.718 ||| 0-2 ||| 300 524574 +los ||| reassert the basis ||| 0.5 0.122289 1.90631e-06 2.80186e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| reassert the ||| 0.0714286 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 14 524574 +los ||| rebut the ||| 0.333333 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| recall the ||| 0.00740741 0.122289 1.90631e-06 7.24936e-06 2.718 ||| 0-1 ||| 135 524574 +los ||| recalling the ||| 0.0169492 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-1 ||| 59 524574 +los ||| receipt of the ||| 0.0416667 0.122289 1.90631e-06 1.09603e-07 2.718 ||| 0-2 ||| 24 524574 +los ||| receipt of ||| 0.0178571 0.0019787 3.81262e-06 1.55457e-08 2.718 ||| 0-1 ||| 112 524574 +los ||| receipts ||| 0.0183486 0.231884 3.81262e-06 3.11e-05 2.718 ||| 0-0 ||| 109 524574 +los ||| receive operating licences after 1 ||| 1 0.0190909 1.90631e-06 1.59105e-21 2.718 ||| 0-2 ||| 1 524574 +los ||| receive operating licences after ||| 1 0.0190909 1.90631e-06 2.49773e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| receive operating licences ||| 1 0.0190909 1.90631e-06 9.21672e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| receive payments ||| 0.142857 0.273884 1.90631e-06 1.44958e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| receive the ||| 0.00879121 0.122289 7.62523e-06 4.30672e-05 2.718 ||| 0-1 ||| 455 524574 +los ||| receive them , ||| 0.2 0.038218 1.90631e-06 2.40972e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| receive them ||| 0.0222222 0.038218 1.90631e-06 2.02065e-07 2.718 ||| 0-1 ||| 45 524574 +los ||| received the ||| 0.0133333 0.122289 9.53154e-06 3.84345e-05 2.718 ||| 0-1 ||| 375 524574 +los ||| receiving such ||| 0.0909091 0.0071708 1.90631e-06 2.21372e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| receiving the ||| 0.00840336 0.122289 1.90631e-06 1.28258e-05 2.718 ||| 0-1 ||| 119 524574 +los ||| receiving ||| 0.00320924 0.0071708 9.53154e-06 1.07e-05 2.718 ||| 0-0 ||| 1558 524574 +los ||| recent Gazprom incident ||| 0.5 0.229055 1.90631e-06 1.75232e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| recent Gazprom incident – ||| 0.5 0.229055 1.90631e-06 6.88662e-18 2.718 ||| 0-0 ||| 2 524574 +los ||| recent Gazprom ||| 0.5 0.229055 1.90631e-06 1.62252e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| recent days ||| 0.00262467 0.229055 1.90631e-06 2.58386e-07 2.718 ||| 0-0 ||| 381 524574 +los ||| recent examples ||| 0.0344828 0.229055 1.90631e-06 7.0174e-08 2.718 ||| 0-0 ||| 29 524574 +los ||| recent tax reductions and ||| 1 0.229055 1.90631e-06 1.6081e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| recent tax reductions ||| 1 0.229055 1.90631e-06 1.28382e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| recent tax ||| 1 0.229055 1.90631e-06 2.56764e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| recent years ||| 0.000315259 0.229055 1.90631e-06 6.90382e-07 2.718 ||| 0-0 ||| 3172 524574 +los ||| recent ||| 0.00415435 0.229055 9.91281e-05 0.0040563 2.718 ||| 0-0 ||| 12517 524574 +los ||| recently , the ||| 0.008 0.122289 1.90631e-06 3.47854e-06 2.718 ||| 0-2 ||| 125 524574 +los ||| recently in the ||| 0.0125 0.122289 1.90631e-06 6.24348e-07 2.718 ||| 0-2 ||| 80 524574 +los ||| reception ||| 0.00127389 0.0030395 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 785 524574 +los ||| recipients ||| 0.0110803 0.218295 7.62523e-06 0.0001021 2.718 ||| 0-0 ||| 361 524574 +los ||| recognises the ||| 0.00262467 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-1 ||| 381 524574 +los ||| recognition for certificates ||| 0.333333 0.0997437 1.90631e-06 2.79502e-12 2.718 ||| 0-1 0-2 ||| 3 524574 +los ||| recognize the ||| 0.00675676 0.122289 1.90631e-06 3.08849e-06 2.718 ||| 0-1 ||| 148 524574 +los ||| recollection of events ||| 0.5 0.140095 1.90631e-06 6.48834e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| reconcile various societal ||| 0.5 0.0202703 1.90631e-06 1.61194e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| reconsider the ||| 0.00892857 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-1 ||| 112 524574 +los ||| recording the consequences ||| 1 0.122289 1.90631e-06 3.28152e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| recording the ||| 0.0322581 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 31 524574 +los ||| recording ||| 0.00337838 0.0136986 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 296 524574 +los ||| records to ||| 0.0833333 0.148855 1.90631e-06 1.01121e-05 2.718 ||| 0-0 ||| 12 524574 +los ||| records ||| 0.0111288 0.148855 1.33442e-05 0.0001138 2.718 ||| 0-0 ||| 629 524574 +los ||| recourse to private security contractors , a ||| 1 0.270936 1.90631e-06 5.96132e-22 2.718 ||| 0-4 ||| 1 524574 +los ||| recourse to private security contractors , ||| 1 0.270936 1.90631e-06 1.34489e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| recourse to private security contractors ||| 1 0.270936 1.90631e-06 1.12774e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| recovery were ||| 0.1 0.0009566 1.90631e-06 5.19506e-09 2.718 ||| 0-0 ||| 10 524574 +los ||| recovery ||| 0.00062409 0.0009566 5.71893e-06 2.9e-06 2.718 ||| 0-0 ||| 4807 524574 +los ||| recreational ||| 0.00636943 0.0147493 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 157 524574 +los ||| recruitment agencies ||| 0.2 0.0118519 1.90631e-06 1.1778e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| recruitment ||| 0.00384615 0.0118519 5.71893e-06 7.8e-06 2.718 ||| 0-0 ||| 780 524574 +los ||| rectified concentrated ||| 0.4 0.0064865 3.81262e-06 1.45e-11 2.718 ||| 0-1 ||| 5 524574 +los ||| recurrent widespread ||| 1 0.023622 1.90631e-06 6.467e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| recurrent ||| 0.00806452 0.023622 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 124 524574 +los ||| recycling and the re-use ||| 1 0.122289 1.90631e-06 7.73721e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| recycling and the ||| 0.0666667 0.122289 1.90631e-06 1.9343e-08 2.718 ||| 0-2 ||| 15 524574 +los ||| red ||| 0.00713267 0.0561091 9.53154e-06 0.000104 2.718 ||| 0-0 ||| 701 524574 +los ||| redress the ||| 0.0149254 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-1 ||| 67 524574 +los ||| redressing the ||| 0.0588235 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 17 524574 +los ||| reduce expenditure ||| 0.0666667 0.174161 1.90631e-06 4.51942e-08 2.718 ||| 0-1 ||| 15 524574 +los ||| reduce levels ||| 0.142857 0.222552 1.90631e-06 7.49389e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| reduce the ||| 0.00155703 0.122289 7.62523e-06 1.63432e-05 2.718 ||| 0-1 ||| 2569 524574 +los ||| reduce ||| 0.00011885 0.0002608 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 8414 524574 +los ||| reduced by the ||| 0.0333333 0.122289 1.90631e-06 1.05397e-07 2.718 ||| 0-2 ||| 30 524574 +los ||| reduced inputs ||| 1 0.226415 1.90631e-06 1.09044e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| reduced its limit ||| 1 0.0211371 1.90631e-06 4.85624e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| reduced its ||| 0.0454545 0.0211371 1.90631e-06 9.99227e-08 2.718 ||| 0-1 ||| 22 524574 +los ||| reduced level of ||| 0.2 0.0018067 1.90631e-06 3.62723e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| reduced level ||| 0.166667 0.0018067 1.90631e-06 6.67212e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| reduced to ||| 0.00289855 0.0018067 1.90631e-06 6.93094e-07 2.718 ||| 0-0 ||| 345 524574 +los ||| reduced ||| 0.00126796 0.0018067 1.14379e-05 7.8e-06 2.718 ||| 0-0 ||| 4732 524574 +los ||| reducing the level ||| 0.0212766 0.122289 1.90631e-06 9.76032e-09 2.718 ||| 0-1 ||| 47 524574 +los ||| reducing the supply and demand of ||| 1 0.122289 1.90631e-06 2.1448e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| reducing the supply and demand ||| 1 0.122289 1.90631e-06 3.94526e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| reducing the supply and ||| 1 0.122289 1.90631e-06 7.36056e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| reducing the supply ||| 0.25 0.122289 1.90631e-06 5.87627e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| reducing the ||| 0.00435019 0.122289 1.52505e-05 1.14102e-05 2.718 ||| 0-1 ||| 1839 524574 +los ||| reducing their ||| 0.015625 0.0236713 1.90631e-06 6.08528e-08 2.718 ||| 0-1 ||| 64 524574 +los ||| reduction in the ||| 0.00132275 0.122289 1.90631e-06 3.76445e-07 2.718 ||| 0-2 ||| 756 524574 +los ||| reductions in ||| 0.00291545 0.0218182 1.90631e-06 7.49157e-07 2.718 ||| 0-0 ||| 343 524574 +los ||| reductions ||| 0.00140746 0.0218182 3.81262e-06 3.5e-05 2.718 ||| 0-0 ||| 1421 524574 +los ||| redundancies ||| 0.00311042 0.174269 3.81262e-06 0.0001449 2.718 ||| 0-0 ||| 643 524574 +los ||| redundancy ||| 0.00645161 0.035503 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 155 524574 +los ||| refer the ||| 0.00793651 0.122289 1.90631e-06 3.35015e-05 2.718 ||| 0-1 ||| 126 524574 +los ||| refer to as SUVs ( sport utility ||| 1 0.181818 1.90631e-06 1.4479e-26 2.718 ||| 0-3 ||| 1 524574 +los ||| refer to as SUVs ( sport ||| 1 0.181818 1.90631e-06 8.04386e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| refer to as SUVs ( ||| 1 0.181818 1.90631e-06 5.32706e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| refer to as SUVs ||| 1 0.181818 1.90631e-06 5.52371e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| refer to the ||| 0.00322234 0.122289 5.71893e-06 2.97688e-06 2.718 ||| 0-2 ||| 931 524574 +los ||| reference to the ||| 0.00184502 0.122289 3.81262e-06 3.25132e-06 2.718 ||| 0-2 ||| 1084 524574 +los ||| referenda ||| 0.0022831 0.128748 1.90631e-06 7.1e-05 2.718 ||| 0-0 ||| 438 524574 +los ||| referendum could bear the ||| 1 0.122289 1.90631e-06 4.93162e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| referendums ||| 0.00137741 0.174692 1.90631e-06 0.0001517 2.718 ||| 0-0 ||| 726 524574 +los ||| referral of those ||| 1 0.284705 1.90631e-06 2.90479e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| referring to the ||| 0.00218341 0.122289 1.90631e-06 1.64662e-06 2.718 ||| 0-2 ||| 458 524574 +los ||| refers to the ||| 0.00201613 0.122289 1.90631e-06 7.39456e-07 2.718 ||| 0-2 ||| 496 524574 +los ||| reform and the fight against poverty . ||| 1 0.122289 1.90631e-06 1.32466e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| reform and the fight against poverty ||| 1 0.122289 1.90631e-06 4.37326e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| reform and the fight against ||| 0.25 0.122289 1.90631e-06 2.8962e-15 2.718 ||| 0-2 ||| 4 524574 +los ||| reform and the fight ||| 0.333333 0.122289 1.90631e-06 1.21383e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| reform and the ||| 0.0285714 0.122289 1.90631e-06 2.20296e-07 2.718 ||| 0-2 ||| 35 524574 +los ||| reform of the ||| 0.00036483 0.062134 1.90631e-06 5.81715e-08 2.718 ||| 0-1 0-2 ||| 2741 524574 +los ||| refrigerators ||| 0.0175439 0.287671 1.90631e-06 2.04e-05 2.718 ||| 0-0 ||| 57 524574 +los ||| refugee affairs ||| 0.333333 0.103766 1.90631e-06 2.95106e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| refugee ||| 0.00228833 0.103766 3.81262e-06 0.0002411 2.718 ||| 0-0 ||| 874 524574 +los ||| refugees ' ||| 0.0357143 0.156551 1.90631e-06 7.96976e-06 2.718 ||| 0-0 0-1 ||| 28 524574 +los ||| refugees and ||| 0.00155039 0.268654 1.90631e-06 1.87676e-05 2.718 ||| 0-0 ||| 645 524574 +los ||| refugees as a ||| 0.5 0.268654 1.90631e-06 6.77708e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| refugees as ||| 0.0714286 0.268654 1.90631e-06 1.52893e-05 2.718 ||| 0-0 ||| 14 524574 +los ||| refugees can ||| 0.0588235 0.268654 1.90631e-06 4.45639e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| refugees whose ||| 0.2 0.268654 1.90631e-06 1.18066e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| refugees ||| 0.00406417 0.268654 3.62199e-05 0.0014983 2.718 ||| 0-0 ||| 4675 524574 +los ||| refusing them ||| 0.166667 0.038218 1.90631e-06 1.16731e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| regard , the ||| 0.00487805 0.122289 1.90631e-06 3.48315e-05 2.718 ||| 0-2 ||| 205 524574 +los ||| regard so that ||| 0.333333 0.0034838 1.90631e-06 3.37893e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| regard so ||| 0.2 0.0034838 1.90631e-06 2.00868e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| regard the ||| 0.00784314 0.122289 3.81262e-06 0.000292076 2.718 ||| 0-1 ||| 255 524574 +los ||| regard those ||| 0.2 0.284705 1.90631e-06 1.13694e-05 2.718 ||| 0-1 ||| 5 524574 +los ||| regard to a ||| 0.00862069 0.0034838 1.90631e-06 3.48576e-07 2.718 ||| 0-0 ||| 116 524574 +los ||| regard to all ||| 0.015625 0.0106383 1.90631e-06 2.11407e-08 2.718 ||| 0-0 0-2 ||| 64 524574 +los ||| regard to national ||| 0.25 0.0129851 1.90631e-06 2.58834e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| regard to the communication of information ||| 1 0.122289 1.90631e-06 7.14537e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| regard to the communication of ||| 1 0.122289 1.90631e-06 4.31744e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| regard to the communication ||| 0.2 0.122289 1.90631e-06 7.94173e-10 2.718 ||| 0-2 ||| 5 524574 +los ||| regard to the risk that those ||| 0.5 0.122289 1.90631e-06 3.69867e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| regard to the risk that ||| 0.5 0.122289 1.90631e-06 5.10795e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| regard to the risk ||| 0.2 0.122289 1.90631e-06 3.03655e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| regard to the ||| 0.00581908 0.122289 6.29082e-05 2.59534e-05 2.718 ||| 0-2 ||| 5671 524574 +los ||| regard to ||| 0.00213366 0.0034838 5.33766e-05 7.86395e-06 2.718 ||| 0-0 ||| 13123 524574 +los ||| regard ||| 0.00411342 0.0034838 0.000142973 8.85e-05 2.718 ||| 0-0 ||| 18233 524574 +los ||| regarded the ||| 0.04 0.122289 1.90631e-06 2.40644e-05 2.718 ||| 0-1 ||| 25 524574 +los ||| regarding the conclusion ||| 0.0833333 0.122289 1.90631e-06 2.34989e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| regarding the restrictions ||| 0.2 0.122289 1.90631e-06 5.07151e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| regarding the various ||| 0.0833333 0.122289 1.90631e-06 4.09969e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| regarding the ||| 0.0014477 0.122289 1.52505e-05 2.65524e-05 2.718 ||| 0-1 ||| 5526 524574 +los ||| regarding ||| 0.000159757 0.0005056 3.81262e-06 9.7e-06 2.718 ||| 0-0 ||| 12519 524574 +los ||| regardless of the requirements ||| 1 0.122289 1.90631e-06 1.63201e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| regardless of the ||| 0.00197628 0.122289 1.90631e-06 3.35805e-07 2.718 ||| 0-2 ||| 506 524574 +los ||| regards as the ||| 0.5 0.122289 1.90631e-06 6.12814e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| regards the ||| 0.00364964 0.122289 2.09694e-05 6.00539e-05 2.718 ||| 0-1 ||| 3014 524574 +los ||| regards ||| 0.00189084 0.0013394 2.85946e-05 2.43e-05 2.718 ||| 0-0 ||| 7933 524574 +los ||| regimes that ||| 0.0188679 0.20198 1.90631e-06 5.00443e-06 2.718 ||| 0-0 ||| 53 524574 +los ||| regimes ||| 0.00385802 0.20198 9.53154e-06 0.0002975 2.718 ||| 0-0 ||| 1296 524574 +los ||| regional policy , then I say it ||| 0.5 0.0028097 1.90631e-06 3.00894e-19 2.718 ||| 0-0 ||| 2 524574 +los ||| regional policy , then I say ||| 0.5 0.0028097 1.90631e-06 1.69201e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| regional policy , then I ||| 0.5 0.0028097 1.90631e-06 1.77026e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| regional policy , then ||| 0.5 0.0028097 1.90631e-06 2.50266e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| regional policy , ||| 0.00444444 0.0028097 1.90631e-06 1.55406e-09 2.718 ||| 0-0 ||| 225 524574 +los ||| regional policy ||| 0.000591017 0.0028097 1.90631e-06 1.30315e-08 2.718 ||| 0-0 ||| 1692 524574 +los ||| regional ||| 0.000878272 0.0028097 1.90631e-05 3.31e-05 2.718 ||| 0-0 ||| 11386 524574 +los ||| register such vessels ||| 1 0.261943 1.90631e-06 2.00486e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| register those ||| 0.5 0.284705 1.90631e-06 2.03711e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| registers a ||| 0.333333 0.184896 1.90631e-06 3.05848e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| registers ||| 0.00623053 0.184896 3.81262e-06 6.9e-05 2.718 ||| 0-0 ||| 321 524574 +los ||| registration applies ||| 1 0.0058867 1.90631e-06 6.5364e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| registration ||| 0.00144823 0.0058867 3.81262e-06 7.8e-06 2.718 ||| 0-0 ||| 1381 524574 +los ||| regret to say , by those ||| 1 0.284705 1.90631e-06 1.75803e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| regular intervals in ||| 0.333333 0.003615 1.90631e-06 4.8417e-13 2.718 ||| 0-0 ||| 3 524574 +los ||| regular intervals ||| 0.0204082 0.003615 1.90631e-06 2.262e-11 2.718 ||| 0-0 ||| 49 524574 +los ||| regular ||| 0.00205444 0.003615 7.62523e-06 7.8e-06 2.718 ||| 0-0 ||| 1947 524574 +los ||| regulate the ||| 0.00288184 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-1 ||| 347 524574 +los ||| regulate these matters ||| 0.111111 0.0240362 1.90631e-06 3.06638e-12 2.718 ||| 0-1 ||| 9 524574 +los ||| regulate these ||| 0.03125 0.0240362 1.90631e-06 1.6575e-08 2.718 ||| 0-1 ||| 32 524574 +los ||| regulating those ||| 1 0.284705 1.90631e-06 5.34323e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| regulations . ||| 0.0025 0.0587004 1.90631e-06 1.65202e-06 2.718 ||| 0-0 ||| 400 524574 +los ||| regulations will , ||| 0.333333 0.0587004 1.90631e-06 5.62687e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| regulations will ||| 0.0294118 0.0587004 1.90631e-06 4.71836e-06 2.718 ||| 0-0 ||| 34 524574 +los ||| regulations you ||| 0.333333 0.0587004 1.90631e-06 1.76093e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| regulations ||| 0.00100725 0.0587004 1.90631e-05 0.0005454 2.718 ||| 0-0 ||| 9928 524574 +los ||| regulatory framework ||| 0.00155039 0.0013 1.90631e-06 4.6449e-10 2.718 ||| 0-0 ||| 645 524574 +los ||| regulatory ||| 0.000546299 0.0013 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 3661 524574 +los ||| reinforcing the ||| 0.00408163 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-1 ||| 245 524574 +los ||| reinstate where ||| 0.25 0.0449398 1.90631e-06 2.4277e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| reinsurance ||| 0.0138889 0.134021 1.90631e-06 1.26e-05 2.718 ||| 0-0 ||| 72 524574 +los ||| reiterate the ||| 0.00568182 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-1 ||| 176 524574 +los ||| rejected by the ||| 0.00460829 0.122289 1.90631e-06 3.4907e-08 2.718 ||| 0-2 ||| 217 524574 +los ||| rejected its ||| 0.2 0.0211371 1.90631e-06 3.30941e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| rejected the ||| 0.00161551 0.122289 1.90631e-06 6.64882e-06 2.718 ||| 0-1 ||| 619 524574 +los ||| rekindled until the ||| 0.5 0.122289 1.90631e-06 8.33891e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| related issues ||| 0.0114943 0.0401532 1.90631e-06 7.34255e-08 2.718 ||| 0-1 ||| 87 524574 +los ||| related to the ||| 0.00120627 0.122289 1.90631e-06 2.49662e-06 2.718 ||| 0-2 ||| 829 524574 +los ||| related to those ||| 0.111111 0.284705 1.90631e-06 9.71836e-08 2.718 ||| 0-2 ||| 9 524574 +los ||| related to ||| 0.000452284 0.0125716 1.90631e-06 5.87353e-06 2.718 ||| 0-0 ||| 2211 524574 +los ||| related ||| 0.00804649 0.0125716 3.43136e-05 6.61e-05 2.718 ||| 0-0 ||| 2237 524574 +los ||| relation to cars ||| 0.333333 0.0035069 1.90631e-06 6.71262e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| relation to its ||| 0.0169492 0.012322 1.90631e-06 8.48054e-09 2.718 ||| 0-0 0-2 ||| 59 524574 +los ||| relation to the proposal ||| 0.0909091 0.122289 1.90631e-06 1.85196e-09 2.718 ||| 0-2 ||| 11 524574 +los ||| relation to the use of ||| 0.142857 0.122289 1.90631e-06 2.4512e-10 2.718 ||| 0-2 ||| 7 524574 +los ||| relation to the use ||| 0.125 0.122289 1.90631e-06 4.50887e-09 2.718 ||| 0-2 ||| 8 524574 +los ||| relation to the ||| 0.00797872 0.122289 4.57514e-05 9.27369e-06 2.718 ||| 0-2 ||| 3008 524574 +los ||| relation to those ||| 0.027027 0.284705 1.90631e-06 3.60989e-07 2.718 ||| 0-2 ||| 37 524574 +los ||| relation to ||| 0.00188985 0.0035069 2.66883e-05 3.97196e-06 2.718 ||| 0-0 ||| 7408 524574 +los ||| relation ||| 0.00894067 0.0035069 6.29082e-05 4.47e-05 2.718 ||| 0-0 ||| 3691 524574 +los ||| relations between the ||| 0.000764526 0.122289 1.90631e-06 6.14452e-09 2.718 ||| 0-2 ||| 1308 524574 +los ||| relations with the ||| 0.00106724 0.122289 1.90631e-06 1.48943e-07 2.718 ||| 0-2 ||| 937 524574 +los ||| relatives in the ||| 0.111111 0.122289 1.90631e-06 3.67264e-08 2.718 ||| 0-2 ||| 9 524574 +los ||| relatives ||| 0.00516796 0.1 3.81262e-06 4.47e-05 2.718 ||| 0-0 ||| 387 524574 +los ||| release the ||| 0.00884956 0.122289 1.90631e-06 9.73731e-06 2.718 ||| 0-1 ||| 113 524574 +los ||| releasing the ||| 0.05 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-1 ||| 20 524574 +los ||| relevant authorities of the ||| 0.142857 0.122289 1.90631e-06 1.67113e-10 2.718 ||| 0-3 ||| 7 524574 +los ||| relevant countries ||| 0.02 0.0957208 1.90631e-06 8.96975e-07 2.718 ||| 0-1 ||| 50 524574 +los ||| relevant existing ||| 0.25 0.02796 1.90631e-06 2.4837e-08 2.718 ||| 0-0 0-1 ||| 4 524574 +los ||| relevant experience ||| 0.0909091 0.0094642 1.90631e-06 3.96634e-09 2.718 ||| 0-0 ||| 11 524574 +los ||| relevant government ||| 0.2 0.0094642 1.90631e-06 4.58626e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| relevant ||| 0.00461326 0.0094642 5.71893e-05 5.74e-05 2.718 ||| 0-0 ||| 6503 524574 +los ||| reliable ||| 0.000513347 0.0005285 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1948 524574 +los ||| relief via the ||| 0.5 0.122289 1.90631e-06 1.35001e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| relocations ||| 0.00232019 0.0376176 1.90631e-06 2.33e-05 2.718 ||| 0-0 ||| 431 524574 +los ||| rely on everyone ||| 0.333333 0.080245 1.90631e-06 1.36668e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| rely on the ||| 0.00555556 0.122289 1.90631e-06 5.68289e-08 2.718 ||| 0-2 ||| 180 524574 +los ||| rely on ||| 0.0011919 0.0006914 1.90631e-06 7.06464e-09 2.718 ||| 0-1 ||| 839 524574 +los ||| remain in the ||| 0.00653595 0.122289 1.90631e-06 1.11373e-06 2.718 ||| 0-2 ||| 153 524574 +los ||| remain unused ||| 0.0222222 0.0471204 1.90631e-06 3.19019e-09 2.718 ||| 0-1 ||| 45 524574 +los ||| remaining ||| 0.00176263 0.0056726 5.71893e-06 1.36e-05 2.718 ||| 0-0 ||| 1702 524574 +los ||| remains the poorest ||| 0.5 0.122289 1.90631e-06 2.90798e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| remains the ||| 0.00247525 0.122289 1.90631e-06 3.82629e-05 2.718 ||| 0-1 ||| 404 524574 +los ||| remains very much the task of those ||| 0.5 0.122289 1.90631e-06 6.62795e-19 2.718 ||| 0-3 ||| 2 524574 +los ||| remains very much the task of ||| 0.5 0.122289 1.90631e-06 9.15336e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| remains very much the task ||| 0.5 0.122289 1.90631e-06 1.68372e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| remains very much the ||| 0.5 0.122289 1.90631e-06 1.33628e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| remarks to the ||| 0.0227273 0.122289 1.90631e-06 1.16636e-06 2.718 ||| 0-2 ||| 44 524574 +los ||| remedies ||| 0.0033557 0.0899471 1.90631e-06 3.31e-05 2.718 ||| 0-0 ||| 298 524574 +los ||| remedy the ||| 0.00555556 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-1 ||| 180 524574 +los ||| remember the ||| 0.00327869 0.122289 1.90631e-06 1.6043e-05 2.718 ||| 0-1 ||| 305 524574 +los ||| remember those ||| 0.0833333 0.284705 1.90631e-06 6.2449e-07 2.718 ||| 0-1 ||| 12 524574 +los ||| remembering ||| 0.00373134 0.0071942 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 268 524574 +los ||| removal ||| 0.000984252 0.0010183 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1016 524574 +los ||| remove the ||| 0.00471698 0.122289 5.71893e-06 8.19307e-06 2.718 ||| 0-1 ||| 636 524574 +los ||| removing the vertebral column for two Member ||| 1 0.122289 1.90631e-06 8.09645e-28 2.718 ||| 0-1 ||| 1 524574 +los ||| removing the vertebral column for two ||| 1 0.122289 1.90631e-06 1.57121e-24 2.718 ||| 0-1 ||| 1 524574 +los ||| removing the vertebral column for ||| 1 0.122289 1.90631e-06 6.64641e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| removing the vertebral column ||| 0.25 0.122289 1.90631e-06 8.64776e-19 2.718 ||| 0-1 ||| 4 524574 +los ||| removing the vertebral ||| 1 0.122289 1.90631e-06 1.23539e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| removing the ||| 0.00641026 0.122289 3.81262e-06 3.08849e-06 2.718 ||| 0-1 ||| 312 524574 +los ||| render the ||| 0.0277778 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-1 ||| 36 524574 +los ||| reopen within the ||| 1 0.122289 3.81262e-06 6.27863e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| repair ||| 0.00162602 0.0108499 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 615 524574 +los ||| repairmen ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| repayments ||| 0.0172414 0.130435 1.90631e-06 1.17e-05 2.718 ||| 0-0 ||| 58 524574 +los ||| repeated reports ||| 0.142857 0.0868855 1.90631e-06 1.94634e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| repetition of the ||| 0.0181818 0.122289 1.90631e-06 6.76274e-08 2.718 ||| 0-2 ||| 55 524574 +los ||| replace the ||| 0.00186567 0.122289 1.90631e-06 3.56034e-06 2.718 ||| 0-1 ||| 536 524574 +los ||| replace those ||| 0.0666667 0.284705 1.90631e-06 1.3859e-07 2.718 ||| 0-1 ||| 15 524574 +los ||| replica ||| 0.0909091 0.125 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| report are as ||| 0.125 0.0009297 1.90631e-06 2.21904e-09 2.718 ||| 0-2 ||| 8 524574 +los ||| report on the ||| 0.000351247 0.122289 1.90631e-06 1.17647e-06 2.718 ||| 0-2 ||| 2847 524574 +los ||| report registers a ||| 1 0.184896 1.90631e-06 1.25367e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| report registers ||| 1 0.184896 1.90631e-06 2.82831e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| report the ||| 0.00632911 0.122289 1.90631e-06 0.000175829 2.718 ||| 0-1 ||| 158 524574 +los ||| reported by the ||| 0.0263158 0.122289 1.90631e-06 6.95888e-08 2.718 ||| 0-2 ||| 38 524574 +los ||| reported ||| 0.000805802 0.0033356 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 1241 524574 +los ||| reporters ||| 0.0263158 0.185185 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 38 524574 +los ||| reporting agents to ||| 1 0.226396 1.90631e-06 2.50438e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| reporting agents ||| 0.142857 0.226396 1.90631e-06 2.8184e-09 2.718 ||| 0-1 ||| 7 524574 +los ||| reports a ||| 0.0714286 0.0868855 1.90631e-06 4.35723e-05 2.718 ||| 0-0 ||| 14 524574 +los ||| reports and taking the ||| 1 0.0868855 1.90631e-06 3.21264e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| reports and taking ||| 1 0.0868855 1.90631e-06 5.23301e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| reports and the ||| 0.0204082 0.0868855 1.90631e-06 7.55915e-07 2.718 ||| 0-0 ||| 49 524574 +los ||| reports and ||| 0.00409836 0.0868855 3.81262e-06 1.2313e-05 2.718 ||| 0-0 ||| 488 524574 +los ||| reports are ||| 0.0114943 0.0868855 3.81262e-06 1.49148e-05 2.718 ||| 0-0 ||| 174 524574 +los ||| reports of ||| 0.00255754 0.0868855 1.90631e-06 5.34398e-05 2.718 ||| 0-0 ||| 391 524574 +los ||| reports seem to ||| 1 0.0868855 1.90631e-06 7.98357e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| reports seem ||| 0.5 0.0868855 1.90631e-06 8.98462e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| reports ||| 0.00308452 0.0868855 6.67208e-05 0.000983 2.718 ||| 0-0 ||| 11347 524574 +los ||| represent his members ||| 1 0.154615 1.90631e-06 3.04869e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| represent the Fifteen ||| 0.25 0.122289 1.90631e-06 1.53438e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| represent the various ||| 0.5 0.122289 1.90631e-06 3.3844e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| represent the ||| 0.00656814 0.122289 7.62523e-06 2.19197e-05 2.718 ||| 0-1 ||| 609 524574 +los ||| representation of the ||| 0.00833333 0.122289 1.90631e-06 2.77505e-07 2.718 ||| 0-2 ||| 120 524574 +los ||| representatives ( ||| 0.5 0.135512 1.90631e-06 9.29199e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| representatives , not ||| 0.333333 0.135512 1.90631e-06 3.92287e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| representatives , ||| 0.00558659 0.135512 1.90631e-06 0.000114902 2.718 ||| 0-0 ||| 179 524574 +los ||| representatives . ||| 0.0125 0.135512 1.90631e-06 2.91844e-06 2.718 ||| 0-0 ||| 80 524574 +los ||| representatives of ||| 0.000810045 0.135512 3.81262e-06 5.23797e-05 2.718 ||| 0-0 ||| 2469 524574 +los ||| representatives on ||| 0.0454545 0.135512 1.90631e-06 6.44678e-06 2.718 ||| 0-0 ||| 22 524574 +los ||| representatives ||| 0.0030278 0.135512 4.19388e-05 0.0009635 2.718 ||| 0-0 ||| 7266 524574 +los ||| represented here and make human ||| 0.5 0.319795 1.90631e-06 3.03924e-14 2.718 ||| 0-4 ||| 2 524574 +los ||| represents the ||| 0.00197239 0.122289 1.90631e-06 1.59143e-05 2.718 ||| 0-1 ||| 507 524574 +los ||| reproductive ||| 0.00137552 0.0825593 1.90631e-06 7.78e-05 2.718 ||| 0-0 ||| 727 524574 +los ||| request , the ||| 0.0714286 0.122289 1.90631e-06 3.92359e-06 2.718 ||| 0-2 ||| 14 524574 +los ||| request that the ||| 0.0117647 0.122289 1.90631e-06 5.53447e-07 2.718 ||| 0-2 ||| 85 524574 +los ||| request the ||| 0.0070922 0.122289 1.90631e-06 3.29009e-05 2.718 ||| 0-1 ||| 141 524574 +los ||| require the ||| 0.00763359 0.122289 3.81262e-06 2.00752e-05 2.718 ||| 0-1 ||| 262 524574 +los ||| requirements , ||| 0.00383142 0.100264 1.90631e-06 0.000110263 2.718 ||| 0-0 ||| 261 524574 +los ||| requirements concerning ||| 0.0294118 0.100264 1.90631e-06 5.68629e-08 2.718 ||| 0-0 ||| 34 524574 +los ||| requirements had been ||| 0.25 0.100264 1.90631e-06 3.09885e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| requirements had ||| 0.25 0.100264 1.90631e-06 9.28021e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| requirements ||| 0.00184382 0.100264 3.24072e-05 0.0009246 2.718 ||| 0-0 ||| 9220 524574 +los ||| requires the ||| 0.00506329 0.122289 3.81262e-06 1.14102e-05 2.718 ||| 0-1 ||| 395 524574 +los ||| rescue the ||| 0.0175439 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-1 ||| 57 524574 +los ||| research institutes is now possible . ||| 0.5 0.175066 1.90631e-06 5.46793e-19 2.718 ||| 0-1 ||| 2 524574 +los ||| research institutes is now possible ||| 0.5 0.175066 1.90631e-06 1.80519e-16 2.718 ||| 0-1 ||| 2 524574 +los ||| research institutes is now ||| 0.5 0.175066 1.90631e-06 2.25058e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| research institutes is ||| 0.5 0.175066 1.90631e-06 1.09257e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| research institutes ||| 0.0114943 0.175066 1.90631e-06 3.48606e-09 2.718 ||| 0-1 ||| 87 524574 +los ||| research into any of the ||| 1 0.122289 1.90631e-06 1.96597e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| research sets the ||| 0.333333 0.122289 1.90631e-06 9.13059e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| research ||| 0.000307456 0.0039887 1.14379e-05 8.75e-05 2.718 ||| 0-0 ||| 19515 524574 +los ||| research – something that we ||| 0.333333 0.0039887 1.90631e-06 3.63471e-15 2.718 ||| 0-0 ||| 3 524574 +los ||| research – something that ||| 0.333333 0.0039887 1.90631e-06 3.20174e-13 2.718 ||| 0-0 ||| 3 524574 +los ||| research – something ||| 0.333333 0.0039887 1.90631e-06 1.90335e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| research – ||| 0.0909091 0.0039887 1.90631e-06 3.43875e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| researchers to ||| 0.0333333 0.304775 1.90631e-06 3.74982e-05 2.718 ||| 0-0 ||| 30 524574 +los ||| researchers ||| 0.00566572 0.304775 1.14379e-05 0.000422 2.718 ||| 0-0 ||| 1059 524574 +los ||| reservations as to their suitability ||| 1 0.0236713 1.90631e-06 2.427e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| reservations as to their ||| 1 0.0236713 1.90631e-06 1.34833e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| residential ||| 0.00636943 0.0290456 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 157 524574 +los ||| residents to ||| 0.0666667 0.261122 1.90631e-06 2.33253e-05 2.718 ||| 0-0 ||| 15 524574 +los ||| residents ||| 0.00117371 0.261122 1.90631e-06 0.0002625 2.718 ||| 0-0 ||| 852 524574 +los ||| residual ||| 0.00740741 0.0143885 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 135 524574 +los ||| residue ||| 0.0108696 0.0627615 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 92 524574 +los ||| residues ||| 0.011194 0.165541 5.71893e-06 4.76e-05 2.718 ||| 0-0 ||| 268 524574 +los ||| resist its being watered ||| 1 0.0211371 1.90631e-06 2.72208e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| resist its being ||| 1 0.0211371 1.90631e-06 8.50649e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| resist its ||| 0.333333 0.0211371 1.90631e-06 2.98914e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| resolve all the ||| 0.037037 0.070041 1.90631e-06 2.98669e-08 2.718 ||| 0-1 0-2 ||| 27 524574 +los ||| resolve the ||| 0.00176211 0.122289 3.81262e-06 1.111e-05 2.718 ||| 0-1 ||| 1135 524574 +los ||| resolved without delay . the ||| 1 0.122289 1.90631e-06 2.32782e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| resolving the ||| 0.00361011 0.122289 3.81262e-06 3.68902e-06 2.718 ||| 0-1 ||| 554 524574 +los ||| resource ||| 0.000698812 0.0749064 1.90631e-06 9.72e-05 2.718 ||| 0-0 ||| 1431 524574 +los ||| resources , has ||| 0.5 0.21958 1.90631e-06 2.97583e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| resources , the ||| 0.0263158 0.122289 1.90631e-06 3.6627e-06 2.718 ||| 0-2 ||| 38 524574 +los ||| resources , ||| 0.00326797 0.21958 5.71893e-06 0.000578111 2.718 ||| 0-0 ||| 918 524574 +los ||| resources - ||| 0.0188679 0.21958 1.90631e-06 1.8286e-05 2.718 ||| 0-0 ||| 53 524574 +los ||| resources and ||| 0.000971817 0.21958 1.90631e-06 6.07218e-05 2.718 ||| 0-0 ||| 1029 524574 +los ||| resources are ||| 0.00729927 0.21958 3.81262e-06 7.35527e-05 2.718 ||| 0-0 ||| 274 524574 +los ||| resources as ||| 0.0217391 0.21958 1.90631e-06 4.94679e-05 2.718 ||| 0-0 ||| 46 524574 +los ||| resources available ||| 0.00362319 0.21958 1.90631e-06 1.54205e-06 2.718 ||| 0-0 ||| 276 524574 +los ||| resources for the conduct ||| 1 0.21958 1.90631e-06 1.37469e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| resources for the ||| 0.00892857 0.21958 1.90631e-06 2.28733e-06 2.718 ||| 0-0 ||| 112 524574 +los ||| resources for ||| 0.00356506 0.21958 3.81262e-06 3.7258e-05 2.718 ||| 0-0 ||| 561 524574 +los ||| resources from ||| 0.00666667 0.21958 1.90631e-06 7.80674e-06 2.718 ||| 0-0 ||| 150 524574 +los ||| resources is to be ||| 1 0.21958 1.90631e-06 2.44667e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| resources is to ||| 0.333333 0.21958 1.90631e-06 1.35004e-05 2.718 ||| 0-0 ||| 3 524574 +los ||| resources is ||| 0.0147059 0.21958 1.90631e-06 0.000151932 2.718 ||| 0-0 ||| 68 524574 +los ||| resources of ||| 0.00462963 0.21958 1.90631e-06 0.00026354 2.718 ||| 0-0 ||| 216 524574 +los ||| resources to ||| 0.00132979 0.21958 1.90631e-06 0.000430758 2.718 ||| 0-0 ||| 752 524574 +los ||| resources ||| 0.00278713 0.21958 0.000101034 0.0048477 2.718 ||| 0-0 ||| 19016 524574 +los ||| respect , the ||| 0.00515464 0.122289 3.81262e-06 2.21297e-05 2.718 ||| 0-2 ||| 388 524574 +los ||| respect each ||| 0.04 0.0497499 1.90631e-06 3.80645e-07 2.718 ||| 0-1 ||| 25 524574 +los ||| respect for human ||| 0.0172414 0.162191 1.90631e-06 1.58908e-08 2.718 ||| 0-0 0-2 ||| 58 524574 +los ||| respect for the ||| 0.000406504 0.122289 1.90631e-06 1.42621e-06 2.718 ||| 0-2 ||| 2460 524574 +los ||| respect for ||| 0.00148321 0.0045864 2.66883e-05 8.14684e-07 2.718 ||| 0-0 ||| 9439 524574 +los ||| respect of both its ||| 1 0.0211371 1.90631e-06 8.31778e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| respect of such ||| 0.142857 0.0045864 1.90631e-06 1.19222e-08 2.718 ||| 0-0 ||| 7 524574 +los ||| respect of the ||| 0.00756859 0.122289 1.52505e-05 1.00881e-05 2.718 ||| 0-2 ||| 1057 524574 +los ||| respect of those ||| 0.0666667 0.284705 1.90631e-06 3.92692e-07 2.718 ||| 0-2 ||| 15 524574 +los ||| respect of which the ||| 0.0588235 0.122289 1.90631e-06 8.56947e-08 2.718 ||| 0-3 ||| 17 524574 +los ||| respect of ||| 0.0120658 0.00328255 6.29082e-05 3.50606e-07 2.718 ||| 0-0 0-1 ||| 2735 524574 +los ||| respect the ||| 0.00295508 0.122289 9.53154e-06 0.000185566 2.718 ||| 0-1 ||| 1692 524574 +los ||| respect to the ||| 0.0112613 0.122289 9.53154e-06 1.64891e-05 2.718 ||| 0-2 ||| 444 524574 +los ||| respect to ||| 0.00255319 0.0045864 5.71893e-06 9.41897e-06 2.718 ||| 0-0 ||| 1175 524574 +los ||| respect too , the ||| 0.5 0.122289 1.90631e-06 3.01185e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| respect ||| 0.00260893 0.0045864 0.000127723 0.000106 2.718 ||| 0-0 ||| 25681 524574 +los ||| respecting the ||| 0.00505902 0.122289 5.71893e-06 4.03219e-06 2.718 ||| 0-1 ||| 593 524574 +los ||| respecting ||| 0.000550661 0.000721 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1816 524574 +los ||| respective objectives ||| 0.25 0.0591921 1.90631e-06 2.49824e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| respectively , the ||| 0.166667 0.122289 1.90631e-06 7.00824e-07 2.718 ||| 0-2 ||| 6 524574 +los ||| response to the ||| 0.000921659 0.122289 1.90631e-06 3.81163e-06 2.718 ||| 0-2 ||| 1085 524574 +los ||| responsibility for the ||| 0.00107411 0.122289 1.90631e-06 3.80784e-07 2.718 ||| 0-2 ||| 931 524574 +los ||| responsibility for this ||| 0.00406504 0.0002959 1.90631e-06 1.34664e-10 2.718 ||| 0-2 ||| 246 524574 +los ||| responsible adults ||| 0.125 0.304716 1.90631e-06 3.62355e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| responsible for the ||| 0.000693963 0.122289 1.90631e-06 4.87601e-07 2.718 ||| 0-2 ||| 1441 524574 +los ||| responsible for ||| 0.000165673 0.0005551 1.90631e-06 4.45771e-08 2.718 ||| 0-0 ||| 6036 524574 +los ||| responsible ||| 0.00056444 0.0005551 1.14379e-05 5.8e-06 2.718 ||| 0-0 ||| 10630 524574 +los ||| rest , the ||| 0.0588235 0.122289 1.90631e-06 3.86732e-06 2.718 ||| 0-2 ||| 17 524574 +los ||| rest of the ||| 0.00063857 0.122289 1.90631e-06 1.76298e-06 2.718 ||| 0-2 ||| 1566 524574 +los ||| rest the ||| 0.166667 0.122289 1.90631e-06 3.24291e-05 2.718 ||| 0-1 ||| 6 524574 +los ||| rest with the ||| 0.0277778 0.122289 1.90631e-06 2.07368e-07 2.718 ||| 0-2 ||| 36 524574 +los ||| rest ||| 0.000243013 0.0009287 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 4115 524574 +los ||| restoration of ||| 0.00263852 0.0019787 1.90631e-06 1.42227e-08 2.718 ||| 0-1 ||| 379 524574 +los ||| restore the balance ||| 0.0454545 0.122289 1.90631e-06 3.17342e-10 2.718 ||| 0-1 ||| 22 524574 +los ||| restore the ||| 0.00275482 0.122289 1.90631e-06 5.8767e-06 2.718 ||| 0-1 ||| 363 524574 +los ||| restrict the ||| 0.0028169 0.122289 1.90631e-06 5.40485e-06 2.718 ||| 0-1 ||| 355 524574 +los ||| restrict yourself to the ||| 0.5 0.122289 1.90631e-06 2.16119e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| result , anyone ||| 0.142857 0.031024 1.90631e-06 9.95183e-09 2.718 ||| 0-2 ||| 7 524574 +los ||| result in the ' collapse of the ||| 1 0.122289 1.90631e-06 5.76349e-16 2.718 ||| 0-6 ||| 1 524574 +los ||| result in the ||| 0.00408163 0.122289 1.90631e-06 4.83411e-06 2.718 ||| 0-2 ||| 245 524574 +los ||| result of clinging to the Americans ||| 1 0.122289 1.90631e-06 1.12808e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| result of clinging to the ||| 1 0.122289 1.90631e-06 1.20009e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| result of extremely ||| 0.5 0.0019787 1.90631e-06 1.65438e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| result of the ||| 0.00580169 0.122289 2.09694e-05 1.22779e-05 2.718 ||| 0-2 ||| 1896 524574 +los ||| result of this , the ||| 0.25 0.122289 1.90631e-06 9.46074e-09 2.718 ||| 0-4 ||| 4 524574 +los ||| result of ||| 0.000733676 0.0019787 7.62523e-06 1.74145e-06 2.718 ||| 0-1 ||| 5452 524574 +los ||| result will be that those ||| 1 0.284705 1.90631e-06 2.31859e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| results in these ||| 0.125 0.0240362 1.90631e-06 4.03823e-09 2.718 ||| 0-2 ||| 8 524574 +los ||| results in ||| 0.00248447 0.0453002 3.81262e-06 1.13829e-05 2.718 ||| 0-0 ||| 805 524574 +los ||| results of those ||| 0.0666667 0.143342 1.90631e-06 4.27472e-09 2.718 ||| 0-1 0-2 ||| 15 524574 +los ||| results than ||| 0.0294118 0.0453002 1.90631e-06 1.62465e-07 2.718 ||| 0-0 ||| 34 524574 +los ||| results ||| 0.00136472 0.0453002 3.05009e-05 0.0005318 2.718 ||| 0-0 ||| 11724 524574 +los ||| retail ||| 0.00208333 0.0150538 1.90631e-06 1.36e-05 2.718 ||| 0-0 ||| 480 524574 +los ||| retailers are ||| 0.2 0.297928 1.90631e-06 1.69631e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| retailers ||| 0.004329 0.297928 1.90631e-06 0.0001118 2.718 ||| 0-0 ||| 231 524574 +los ||| retain their ||| 0.017094 0.0236713 3.81262e-06 3.54594e-08 2.718 ||| 0-1 ||| 117 524574 +los ||| retaining the ||| 0.00699301 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-1 ||| 143 524574 +los ||| retaining traps ||| 0.5 0.0309278 1.90631e-06 4.212e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| return of the ||| 0.00847458 0.122289 1.90631e-06 1.5531e-06 2.718 ||| 0-2 ||| 118 524574 +los ||| returns ||| 0.00273224 0.0556845 1.90631e-06 2.33e-05 2.718 ||| 0-0 ||| 366 524574 +los ||| reveal clinical ||| 0.2 0.0451613 1.90631e-06 1.0336e-10 2.718 ||| 0-1 ||| 5 524574 +los ||| revealing the ||| 0.05 0.122289 3.81262e-06 1.71583e-06 2.718 ||| 0-1 ||| 40 524574 +los ||| revenue has dropped ||| 0.5 0.202394 1.90631e-06 2.14113e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| revenue has ||| 0.142857 0.202394 1.90631e-06 1.86185e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| revenue is ||| 0.0454545 0.202394 1.90631e-06 1.13361e-05 2.718 ||| 0-0 ||| 22 524574 +los ||| revenue ||| 0.0052459 0.202394 1.52505e-05 0.0003617 2.718 ||| 0-0 ||| 1525 524574 +los ||| revenues ||| 0.00873362 0.240298 7.62523e-06 0.0001565 2.718 ||| 0-0 ||| 458 524574 +los ||| reverse the ||| 0.00431034 0.122289 1.90631e-06 4.16088e-06 2.718 ||| 0-1 ||| 232 524574 +los ||| reversed the ||| 0.1 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-1 ||| 10 524574 +los ||| reversing the ||| 0.0135135 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-1 ||| 74 524574 +los ||| review of the ||| 0.000911577 0.122289 1.90631e-06 8.81488e-07 2.718 ||| 0-2 ||| 1097 524574 +los ||| review the ||| 0.00289436 0.122289 3.81262e-06 1.62145e-05 2.718 ||| 0-1 ||| 691 524574 +los ||| reviewed as a matter of ||| 0.5 0.0019787 1.90631e-06 1.05549e-14 2.718 ||| 0-4 ||| 2 524574 +los ||| reviewing ||| 0.00141243 0.0019011 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 708 524574 +los ||| revising the ||| 0.0031348 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-1 ||| 319 524574 +los ||| reweighting , ||| 1 0.181818 1.90631e-06 2.26584e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| reweighting ||| 0.166667 0.181818 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| rich ||| 0.000567215 0.0143409 1.90631e-06 2.53e-05 2.718 ||| 0-0 ||| 1763 524574 +los ||| rid of the ||| 0.0655738 0.122289 7.62523e-06 5.45683e-07 2.718 ||| 0-2 ||| 61 524574 +los ||| right across the social divide ||| 0.25 0.122289 1.90631e-06 1.70052e-17 2.718 ||| 0-2 ||| 4 524574 +los ||| right across the social ||| 0.25 0.122289 1.90631e-06 2.93193e-12 2.718 ||| 0-2 ||| 4 524574 +los ||| right across the ||| 0.0052356 0.122289 1.90631e-06 2.83826e-08 2.718 ||| 0-2 ||| 191 524574 +los ||| right for a right-wing dictator ||| 1 0.0057554 1.90631e-06 2.74187e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| right for a right-wing ||| 1 0.0057554 1.90631e-06 8.56835e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| right that these ||| 0.111111 0.0240362 1.90631e-06 2.64426e-08 2.718 ||| 0-2 ||| 9 524574 +los ||| right the ||| 0.0689655 0.122289 3.81262e-06 0.000276634 2.718 ||| 0-1 ||| 29 524574 +los ||| right-wing dictator ||| 1 0.0057554 1.90631e-06 1.248e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| right-wing ||| 0.00307692 0.0057554 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 325 524574 +los ||| rightly , the ||| 0.0416667 0.122289 1.90631e-06 2.7061e-06 2.718 ||| 0-2 ||| 24 524574 +los ||| rights , ||| 0.00114613 0.0030851 3.81262e-06 1.81983e-05 2.718 ||| 0-0 ||| 1745 524574 +los ||| rights . ||| 0.000969932 4.2e-06 1.90631e-06 1.56078e-09 2.718 ||| 0-1 ||| 1031 524574 +los ||| rights and ||| 0.000412031 0.0030851 1.90631e-06 1.91145e-06 2.718 ||| 0-0 ||| 2427 524574 +los ||| rights are ||| 0.00180505 0.0030851 1.90631e-06 2.31535e-06 2.718 ||| 0-0 ||| 554 524574 +los ||| rights stating the ||| 1 0.122289 1.90631e-06 2.00852e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| rights throughout Europe ||| 0.333333 0.0030851 1.90631e-06 3.0809e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| rights throughout ||| 0.0714286 0.0030851 1.90631e-06 6.08874e-09 2.718 ||| 0-0 ||| 14 524574 +los ||| rights to ||| 0.00151286 0.0030851 1.90631e-06 1.35598e-05 2.718 ||| 0-0 ||| 661 524574 +los ||| rights ||| 0.000523154 0.0030851 5.90956e-05 0.0001526 2.718 ||| 0-0 ||| 59256 524574 +los ||| rise by putting our ||| 1 0.0248369 1.90631e-06 2.63505e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| rises of ||| 1 0.0642212 1.90631e-06 1.73649e-07 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| rises ||| 0.0139276 0.126464 9.53154e-06 5.25e-05 2.718 ||| 0-0 ||| 359 524574 +los ||| rising ||| 0.000595238 0.0057834 1.90631e-06 1.07e-05 2.718 ||| 0-0 ||| 1680 524574 +los ||| risk analyses ||| 0.0666667 0.105656 1.90631e-06 1.12671e-08 2.718 ||| 0-1 ||| 15 524574 +los ||| risk of ||| 0.000250564 0.0019787 1.90631e-06 3.86989e-07 2.718 ||| 0-1 ||| 3991 524574 +los ||| risk that those within the ||| 1 0.135672 1.90631e-06 1.40968e-14 2.718 ||| 0-2 0-3 0-4 ||| 1 524574 +los ||| risk ||| 7.17875e-05 0.0013727 1.90631e-06 1.56e-05 2.718 ||| 0-0 ||| 13930 524574 +los ||| risks , ||| 0.00352113 0.125803 1.90631e-06 8.40626e-05 2.718 ||| 0-0 ||| 284 524574 +los ||| risks associated with ||| 0.0113636 0.125803 1.90631e-06 2.32135e-10 2.718 ||| 0-0 ||| 88 524574 +los ||| risks associated ||| 0.0125 0.125803 1.90631e-06 3.63023e-08 2.718 ||| 0-0 ||| 80 524574 +los ||| risks being repeated ||| 0.5 0.125803 1.90631e-06 3.97189e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| risks being ||| 0.0111111 0.125803 1.90631e-06 2.006e-06 2.718 ||| 0-0 ||| 90 524574 +los ||| risks related to ||| 0.0588235 0.125803 1.90631e-06 4.10267e-09 2.718 ||| 0-0 ||| 17 524574 +los ||| risks related ||| 0.0714286 0.125803 1.90631e-06 4.6171e-08 2.718 ||| 0-0 ||| 14 524574 +los ||| risks ||| 0.00214707 0.125803 2.28757e-05 0.0007049 2.718 ||| 0-0 ||| 5589 524574 +los ||| rites ||| 0.0555556 0.307692 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| river basins ||| 0.0212766 0.0436433 1.90631e-06 4.032e-11 2.718 ||| 0-0 ||| 47 524574 +los ||| river ||| 0.00686499 0.0436433 5.71893e-06 2.24e-05 2.718 ||| 0-0 ||| 437 524574 +los ||| rivers ||| 0.00600601 0.259594 3.81262e-06 0.0001118 2.718 ||| 0-0 ||| 333 524574 +los ||| road the ||| 0.142857 0.122289 1.90631e-06 3.82629e-05 2.718 ||| 0-1 ||| 7 524574 +los ||| road user ||| 0.0769231 0.0830769 1.90631e-06 4.683e-09 2.718 ||| 0-1 ||| 13 524574 +los ||| road ||| 0.00154679 0.0086458 1.52505e-05 9.82e-05 2.718 ||| 0-0 ||| 5172 524574 +los ||| roads and stimulate the ||| 1 0.122289 1.90631e-06 4.15606e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| roads meet : the ||| 1 0.122289 1.90631e-06 2.09057e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| roadside crosses ||| 0.25 0.0985915 1.90631e-06 7.48e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| roadside ||| 0.0227273 0.0985915 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 44 524574 +los ||| roaming ||| 0.00358423 0.0550775 1.90631e-06 3.11e-05 2.718 ||| 0-0 ||| 279 524574 +los ||| rob ||| 0.0178571 0.0121951 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 56 524574 +los ||| robs those very people ||| 1 0.0894672 1.90631e-06 2.18261e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| rocket ||| 0.018018 0.0301508 3.81262e-06 5.8e-06 2.718 ||| 0-0 ||| 111 524574 +los ||| rogue ||| 0.0111111 0.0166667 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 90 524574 +los ||| role models ||| 0.0178571 0.133333 1.90631e-06 3.9294e-08 2.718 ||| 0-1 ||| 56 524574 +los ||| role of guardian of the ||| 0.25 0.122289 1.90631e-06 3.94019e-13 2.718 ||| 0-4 ||| 4 524574 +los ||| role of the ||| 0.000989609 0.122289 3.81262e-06 5.17699e-06 2.718 ||| 0-2 ||| 2021 524574 +los ||| roles ||| 0.0016 0.055788 1.90631e-06 3.89e-05 2.718 ||| 0-0 ||| 625 524574 +los ||| roll up our sleeves ||| 0.0909091 0.0031618 1.90631e-06 2.35408e-18 2.718 ||| 0-1 ||| 11 524574 +los ||| roll up our ||| 0.125 0.0031618 1.90631e-06 3.36298e-12 2.718 ||| 0-1 ||| 8 524574 +los ||| roll up ||| 0.1 0.0031618 1.90631e-06 2.438e-09 2.718 ||| 0-1 ||| 10 524574 +los ||| rolled up ||| 0.166667 0.0031618 1.90631e-06 9.116e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| rooms ||| 0.0142857 0.0142857 3.81262e-06 4.9e-06 2.718 ||| 0-0 ||| 140 524574 +los ||| rooms ’ ||| 0.5 0.0142857 1.90631e-06 8.53629e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| roots in the ||| 0.0416667 0.122289 1.90631e-06 1.32215e-07 2.718 ||| 0-2 ||| 24 524574 +los ||| roots power ||| 0.25 0.00906 1.90631e-06 1.16454e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| roots ||| 0.00459242 0.00906 7.62523e-06 7.8e-06 2.718 ||| 0-0 ||| 871 524574 +los ||| round any of the ||| 1 0.122289 1.90631e-06 2.70476e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| round the ||| 0.019802 0.122289 3.81262e-06 3.29009e-05 2.718 ||| 0-1 ||| 101 524574 +los ||| round to the ||| 0.1 0.122289 1.90631e-06 2.92352e-06 2.718 ||| 0-2 ||| 10 524574 +los ||| rounds in the ||| 0.5 0.122289 1.90631e-06 4.5908e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| route , the ||| 0.333333 0.122289 1.90631e-06 1.38119e-06 2.718 ||| 0-2 ||| 3 524574 +los ||| routine ||| 0.00316456 0.0031847 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 316 524574 +los ||| royalties are paid to ||| 1 0.164384 1.90631e-06 2.1232e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| royalties are paid ||| 1 0.164384 1.90631e-06 2.38943e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| royalties are ||| 1 0.164384 1.90631e-06 1.77521e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| royalties ||| 0.027027 0.164384 1.90631e-06 1.17e-05 2.718 ||| 0-0 ||| 37 524574 +los ||| rubbish ||| 0.00671141 0.0163934 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 149 524574 +los ||| ruled by traders ||| 0.5 0.345201 1.90631e-06 1.38863e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| rulers ||| 0.00847458 0.185792 1.90631e-06 3.31e-05 2.718 ||| 0-0 ||| 118 524574 +los ||| rules , the ||| 0.0416667 0.122289 1.90631e-06 5.94422e-06 2.718 ||| 0-2 ||| 24 524574 +los ||| rules governing their ||| 0.5 0.0236713 1.90631e-06 5.15712e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| rules which the Commission is ||| 1 0.122289 1.90631e-06 7.7511e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| rules which the Commission ||| 0.5 0.122289 1.90631e-06 2.47314e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| rules which the ||| 0.166667 0.122289 1.90631e-06 4.23411e-07 2.718 ||| 0-2 ||| 6 524574 +los ||| run aground on the ||| 0.5 0.122289 1.90631e-06 3.35291e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| run high ||| 0.0526316 0.0033276 1.90631e-06 5.16132e-09 2.718 ||| 0-1 ||| 19 524574 +los ||| run off the back of ||| 1 0.122289 1.90631e-06 6.77954e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| run off the back ||| 1 0.122289 1.90631e-06 1.24706e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| run off the ||| 0.5 0.122289 1.90631e-06 1.85409e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| run the ||| 0.00406504 0.122289 1.90631e-06 4.55552e-05 2.718 ||| 0-1 ||| 246 524574 +los ||| run-up to the ||| 0.00362319 0.122289 1.90631e-06 3.01119e-07 2.718 ||| 0-2 ||| 276 524574 +los ||| running all kinds ||| 1 0.0177928 1.90631e-06 9.74307e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| running all ||| 1 0.0177928 1.90631e-06 2.05117e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| running into the ||| 0.5 0.122289 1.90631e-06 3.36032e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| runs the ||| 0.00900901 0.122289 1.90631e-06 9.86599e-06 2.718 ||| 0-1 ||| 111 524574 +los ||| rural ||| 0.000544366 0.0008083 3.81262e-06 5.8e-06 2.718 ||| 0-0 ||| 3674 524574 +los ||| s EUR ||| 0.5 0.0342406 1.90631e-06 8.99423e-07 2.718 ||| 0-0 0-1 ||| 2 524574 +los ||| s Opinion on the ||| 1 0.122289 1.90631e-06 2.18395e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| s Opinion on the ‘ single audit ||| 1 0.122289 1.90631e-06 2.52996e-25 2.718 ||| 0-3 ||| 1 524574 +los ||| s Opinion on the ‘ single ||| 1 0.122289 1.90631e-06 3.89224e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| s Opinion on the ‘ ||| 1 0.122289 1.90631e-06 2.45258e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| s accession to the ||| 0.1 0.122289 1.90631e-06 2.66107e-09 2.718 ||| 0-3 ||| 10 524574 +los ||| s as ||| 0.333333 0.0341558 1.90631e-06 1.60821e-05 2.718 ||| 0-0 ||| 3 524574 +los ||| s bosses have ||| 1 0.188034 1.90631e-06 4.86874e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| s bosses ||| 1 0.188034 1.90631e-06 4.07092e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| s brief ||| 0.333333 0.0341558 1.90631e-06 3.79816e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| s business ||| 0.0909091 0.057606 1.90631e-06 1.16345e-06 2.718 ||| 0-1 ||| 11 524574 +los ||| s chairmen , in today passing a ||| 1 0.183633 1.90631e-06 2.2231e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| s chairmen , in today passing ||| 1 0.183633 1.90631e-06 5.01536e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| s chairmen , in today ||| 1 0.183633 1.90631e-06 1.95913e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| s chairmen , in ||| 1 0.183633 1.90631e-06 4.34107e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| s chairmen , ||| 1 0.183633 1.90631e-06 2.02811e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| s chairmen ||| 1 0.183633 1.90631e-06 1.70066e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| s children ||| 0.0769231 0.0341558 1.90631e-06 1.17412e-07 2.718 ||| 0-0 ||| 13 524574 +los ||| s citizens ||| 0.00480769 0.0341558 1.90631e-06 1.71784e-07 2.718 ||| 0-0 ||| 208 524574 +los ||| s departments have ||| 0.333333 0.152393 1.90631e-06 2.67553e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| s departments ||| 0.142857 0.152393 1.90631e-06 2.2371e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| s existing ||| 0.2 0.0464558 3.81262e-06 8.23125e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| s face ||| 0.333333 0.0341558 1.90631e-06 2.63665e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| s high heels ||| 1 0.0033276 1.90631e-06 3.97543e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| s high ||| 0.0769231 0.0033276 1.90631e-06 9.24518e-08 2.718 ||| 0-1 ||| 13 524574 +los ||| s interest , ||| 0.333333 0.0341558 1.90631e-06 2.11063e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| s interest ||| 0.02 0.0341558 1.90631e-06 1.76985e-07 2.718 ||| 0-0 ||| 50 524574 +los ||| s liability as an institution . the ||| 1 0.122289 1.90631e-06 3.42769e-20 2.718 ||| 0-6 ||| 1 524574 +los ||| s location ||| 0.125 0.0341558 1.90631e-06 1.8124e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| s markets - ||| 1 0.239993 1.90631e-06 2.03717e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| s markets ||| 0.166667 0.239993 1.90631e-06 5.40063e-06 2.718 ||| 0-1 ||| 6 524574 +los ||| s members will be ||| 0.5 0.154615 1.90631e-06 5.92149e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| s members will ||| 0.5 0.154615 1.90631e-06 3.26741e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| s members ||| 0.166667 0.154615 1.90631e-06 3.77683e-06 2.718 ||| 0-1 ||| 6 524574 +los ||| s own ||| 0.0131004 0.0341558 5.71893e-06 2.67179e-06 2.718 ||| 0-0 ||| 229 524574 +los ||| s part ||| 0.0555556 0.0341558 1.90631e-06 1.87891e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| s records to ||| 0.5 0.148855 1.90631e-06 1.92362e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| s records ||| 0.25 0.148855 1.90631e-06 2.16482e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| s travel plans only ||| 1 0.0606223 1.90631e-06 1.95851e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| s travel plans ||| 1 0.0606223 1.90631e-06 1.75951e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| s travel ||| 0.2 0.0606223 1.90631e-06 4.17935e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| s views ||| 0.015625 0.0341558 1.90631e-06 1.28129e-07 2.718 ||| 0-0 ||| 64 524574 +los ||| s wish ||| 0.0833333 0.0341558 1.90631e-06 4.64447e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| s workforce ||| 0.0769231 0.0130506 1.90631e-06 2.96759e-08 2.718 ||| 0-1 ||| 13 524574 +los ||| s ||| 0.0154492 0.0341558 0.000630988 0.001576 2.718 ||| 0-0 ||| 21425 524574 +los ||| safe ||| 0.000523697 0.0011429 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 3819 524574 +los ||| safeguard clause was not introduced , the ||| 1 0.122289 1.90631e-06 1.00645e-20 2.718 ||| 0-6 ||| 1 524574 +los ||| safeguard the necessary transparency ||| 1 0.122289 1.90631e-06 3.09975e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| safeguard the necessary ||| 1 0.122289 1.90631e-06 2.26259e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| safeguard the ||| 0.00268097 0.122289 3.81262e-06 8.7936e-06 2.718 ||| 0-1 ||| 746 524574 +los ||| safeguarded for ||| 0.0833333 0.0015353 1.90631e-06 7.58348e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| safeguarding the ||| 0.00547945 0.122289 3.81262e-06 2.14478e-06 2.718 ||| 0-1 ||| 365 524574 +los ||| safeguarding ||| 0.00163934 0.003785 5.71893e-06 4.9e-06 2.718 ||| 0-0 ||| 1830 524574 +los ||| safeguards the jobs ||| 1 0.122289 1.90631e-06 9.55457e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| safeguards the ||| 0.038961 0.122289 5.71893e-06 1.84451e-06 2.718 ||| 0-1 ||| 77 524574 +los ||| safety of all citizens ||| 0.1 0.293572 1.90631e-06 1.97153e-10 2.718 ||| 0-3 ||| 10 524574 +los ||| safety reasons ||| 0.0454545 0.0005019 1.90631e-06 7.8858e-10 2.718 ||| 0-0 ||| 22 524574 +los ||| safety signals ||| 0.5 0.0005019 1.90631e-06 5.928e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| safety ||| 0.000234357 0.0005019 1.14379e-05 7.8e-06 2.718 ||| 0-0 ||| 25602 524574 +los ||| said both here in the House and ||| 1 0.0352574 1.90631e-06 4.1125e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| said both here in the House ||| 1 0.0352574 1.90631e-06 3.2832e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| said both here in the ||| 1 0.0352574 1.90631e-06 1.31275e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| said both here in ||| 1 0.0352574 1.90631e-06 2.13832e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| said both here ||| 1 0.0352574 1.90631e-06 9.99006e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| said both ||| 0.2 0.0352574 1.90631e-06 4.92655e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| said this , the ||| 0.2 0.122289 1.90631e-06 1.35948e-07 2.718 ||| 0-3 ||| 5 524574 +los ||| said to be ' clean ||| 1 0.0444479 1.90631e-06 6.97582e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| said to be ' ||| 0.333333 0.0444479 1.90631e-06 3.52314e-09 2.718 ||| 0-3 ||| 3 524574 +los ||| salaries down ||| 0.5 0.277512 1.90631e-06 1.96864e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| salaries would harm ||| 1 0.277512 1.90631e-06 1.78737e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| salaries would ||| 0.25 0.277512 1.90631e-06 1.65497e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| salaries ||| 0.00980392 0.277512 1.33442e-05 0.000282 2.718 ||| 0-0 ||| 714 524574 +los ||| salt-water ||| 0.333333 0.333333 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| same applied for the Appendix ||| 0.0833333 0.122289 1.90631e-06 1.14926e-16 2.718 ||| 0-3 ||| 12 524574 +los ||| same applied for the ||| 0.0833333 0.122289 1.90631e-06 2.87315e-10 2.718 ||| 0-3 ||| 12 524574 +los ||| same as it has been the whole ||| 1 0.122289 1.90631e-06 6.09073e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| same as it has been the ||| 1 0.122289 1.90631e-06 1.07667e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| same mistakes ||| 0.0188679 0.0794421 1.90631e-06 1.02519e-07 2.718 ||| 0-1 ||| 53 524574 +los ||| same people ||| 0.0103093 0.0894672 1.90631e-06 6.33725e-06 2.718 ||| 0-1 ||| 97 524574 +los ||| same terms as those ||| 0.333333 0.284705 1.90631e-06 1.50494e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| same the ||| 0.166667 0.122289 1.90631e-06 0.000345181 2.718 ||| 0-1 ||| 6 524574 +los ||| same time , the ||| 0.00261097 0.122289 3.81262e-06 6.75797e-08 2.718 ||| 0-3 ||| 766 524574 +los ||| same time the ||| 0.00471698 0.122289 1.90631e-06 5.66684e-07 2.718 ||| 0-2 ||| 212 524574 +los ||| same time those of ||| 0.5 0.284705 1.90631e-06 1.1992e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| same time those ||| 0.25 0.284705 1.90631e-06 2.20588e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| same time with the ||| 0.166667 0.122289 1.90631e-06 3.62366e-09 2.718 ||| 0-3 ||| 6 524574 +los ||| same two countries ||| 0.5 0.0957208 1.90631e-06 1.5858e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| same values as the EU ||| 1 0.161479 1.90631e-06 4.0768e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| same values as the ||| 0.166667 0.161479 1.90631e-06 8.2393e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| same values as ||| 0.111111 0.161479 1.90631e-06 1.34208e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| same values ||| 0.0149254 0.161479 1.90631e-06 1.3152e-06 2.718 ||| 0-1 ||| 67 524574 +los ||| sanctioned by the ||| 0.03125 0.122289 1.90631e-06 2.47727e-09 2.718 ||| 0-2 ||| 32 524574 +los ||| satellites ||| 0.00510204 0.208163 1.90631e-06 4.96e-05 2.718 ||| 0-0 ||| 196 524574 +los ||| satisfy the producers ||| 1 0.122289 1.90631e-06 4.82662e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| satisfy the ||| 0.0131579 0.122289 5.71893e-06 2.48795e-06 2.718 ||| 0-1 ||| 228 524574 +los ||| satisfying the ||| 0.0192308 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-1 ||| 52 524574 +los ||| saturated fatty acids ||| 0.111111 0.0307692 1.90631e-06 9.31e-19 2.718 ||| 0-1 ||| 9 524574 +los ||| saturated fatty ||| 1 0.0307692 1.90631e-06 1.33e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| saving will die in the next ' ||| 1 0.122289 1.90631e-06 1.8799e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| saving will die in the next ||| 1 0.122289 1.90631e-06 5.47294e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| saving will die in the ||| 1 0.122289 1.90631e-06 5.2981e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| savings ||| 0.00304878 0.0522586 1.14379e-05 0.0001147 2.718 ||| 0-0 ||| 1968 524574 +los ||| saw the ||| 0.0132743 0.122289 5.71893e-06 2.29921e-05 2.718 ||| 0-1 ||| 226 524574 +los ||| say , by those ||| 1 0.284705 1.90631e-06 9.99227e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| say , the ||| 0.0225564 0.122289 5.71893e-06 4.8894e-05 2.718 ||| 0-2 ||| 133 524574 +los ||| say before the ||| 0.333333 0.122289 1.90631e-06 1.0254e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| say in the ||| 0.013986 0.122289 3.81262e-06 8.77577e-06 2.718 ||| 0-2 ||| 143 524574 +los ||| say that one or the ||| 1 0.122289 1.90631e-06 3.28651e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| say that the ||| 0.00296384 0.122289 9.53154e-06 6.8968e-06 2.718 ||| 0-2 ||| 1687 524574 +los ||| say the ||| 0.0220588 0.122289 2.28757e-05 0.000409996 2.718 ||| 0-1 ||| 544 524574 +los ||| say to all ||| 0.0555556 0.0177928 1.90631e-06 2.28319e-07 2.718 ||| 0-2 ||| 18 524574 +los ||| say you have taken your last ||| 1 0.0096341 1.90631e-06 2.26444e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| say you have taken your ||| 1 0.0096341 1.90631e-06 1.03683e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| saying that the ||| 0.00436681 0.122289 3.81262e-06 1.28007e-06 2.718 ||| 0-2 ||| 458 524574 +los ||| says that the ||| 0.00408163 0.122289 1.90631e-06 4.98607e-07 2.718 ||| 0-2 ||| 245 524574 +los ||| scandals ||| 0.0030303 0.121839 1.90631e-06 5.15e-05 2.718 ||| 0-0 ||| 330 524574 +los ||| scant value in ||| 0.333333 0.0088889 1.90631e-06 3.5707e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| scant value ||| 0.333333 0.0088889 1.90631e-06 1.6682e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| scant ||| 0.00606061 0.0088889 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 165 524574 +los ||| scenario ||| 0.00143062 0.0275229 1.90631e-06 2.04e-05 2.718 ||| 0-0 ||| 699 524574 +los ||| scenarios , ||| 0.0625 0.0795756 1.90631e-06 3.48224e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| scenarios ||| 0.0106383 0.0795756 5.71893e-06 2.92e-05 2.718 ||| 0-0 ||| 282 524574 +los ||| schedules ||| 0.0106383 0.111111 1.90631e-06 1.17e-05 2.718 ||| 0-0 ||| 94 524574 +los ||| schemes ||| 0.00634921 0.152082 2.28757e-05 0.0005221 2.718 ||| 0-0 ||| 1890 524574 +los ||| school ||| 0.0080429 0.0324121 2.85946e-05 9.24e-05 2.718 ||| 0-0 ||| 1865 524574 +los ||| schools , ||| 0.00240964 0.0680412 1.90631e-06 2.29565e-05 2.718 ||| 0-0 ||| 415 524574 +los ||| schools ||| 0.00184162 0.0680412 7.62523e-06 0.0001925 2.718 ||| 0-0 ||| 2172 524574 +los ||| schools ’ ||| 1 0.041008 1.90631e-06 1.04065e-07 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| scientific and ||| 0.00173611 0.002907 1.90631e-06 1.82878e-07 2.718 ||| 0-0 ||| 576 524574 +los ||| scientific data ||| 0.00561798 0.16292 1.90631e-06 2.61059e-08 2.718 ||| 0-1 ||| 178 524574 +los ||| scientific research ||| 0.00163132 0.0039887 1.90631e-06 1.1025e-09 2.718 ||| 0-1 ||| 613 524574 +los ||| scientific research – something that we ||| 0.333333 0.0039887 1.90631e-06 4.57973e-20 2.718 ||| 0-1 ||| 3 524574 +los ||| scientific research – something that ||| 0.333333 0.0039887 1.90631e-06 4.03419e-18 2.718 ||| 0-1 ||| 3 524574 +los ||| scientific research – something ||| 0.333333 0.0039887 1.90631e-06 2.39822e-16 2.718 ||| 0-1 ||| 3 524574 +los ||| scientific research – ||| 0.333333 0.0039887 1.90631e-06 4.33282e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| scientific ||| 0.00146012 0.002907 1.52505e-05 1.46e-05 2.718 ||| 0-0 ||| 5479 524574 +los ||| scientists ||| 0.00393391 0.236573 9.53154e-06 0.0003597 2.718 ||| 0-0 ||| 1271 524574 +los ||| screening ||| 0.001321 0.009901 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 757 524574 +los ||| scrupulous noting of the ||| 0.5 0.122289 1.90631e-06 8.16192e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| scupper them ||| 1 0.038218 1.90631e-06 8.0504e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| sea , where there is ||| 0.25 0.0023346 1.90631e-06 3.05484e-14 2.718 ||| 0-0 ||| 4 524574 +los ||| sea , where there ||| 0.2 0.0023346 1.90631e-06 9.74706e-13 2.718 ||| 0-0 ||| 5 524574 +los ||| sea , where ||| 0.142857 0.0023346 1.90631e-06 3.17981e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| sea , ||| 0.00284091 0.0023346 1.90631e-06 1.04944e-06 2.718 ||| 0-0 ||| 352 524574 +los ||| sea ||| 0.000907716 0.0023346 5.71893e-06 8.8e-06 2.718 ||| 0-0 ||| 3305 524574 +los ||| sea-going ||| 0.2 0.266667 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| seafarers ' ||| 0.047619 0.120247 1.90631e-06 6.15431e-07 2.718 ||| 0-0 0-1 ||| 21 524574 +los ||| seafarers ||| 0.0070922 0.196046 5.71893e-06 0.0001157 2.718 ||| 0-0 ||| 423 524574 +los ||| seasoned ||| 0.25 0.0909091 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| seats ||| 0.00648508 0.0935673 9.53154e-06 7.78e-05 2.718 ||| 0-0 ||| 771 524574 +los ||| second drivers ||| 0.2 0.386864 1.90631e-06 6.11419e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| second plenary session when the ||| 1 0.122289 1.90631e-06 2.88687e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| second-hand ||| 0.0816327 0.163265 7.62523e-06 2.33e-05 2.718 ||| 0-0 ||| 49 524574 +los ||| secondary matter ||| 0.166667 0.003367 1.90631e-06 3.00875e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| secondary position ||| 0.166667 0.003367 1.90631e-06 9.5497e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| secondary ||| 0.00260417 0.003367 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 768 524574 +los ||| secondly , in terms of the enormous ||| 1 0.122289 1.90631e-06 6.77398e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| secondly , in terms of the ||| 0.333333 0.122289 1.90631e-06 2.35208e-12 2.718 ||| 0-5 ||| 3 524574 +los ||| secondly , people want to receive their ||| 1 0.0894672 1.90631e-06 1.63448e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| secondly , people want to receive ||| 1 0.0894672 1.90631e-06 1.41013e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| secondly , people want to ||| 1 0.0894672 1.90631e-06 1.40451e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| secondly , people want ||| 1 0.0894672 1.90631e-06 1.58062e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| secondly , people ||| 0.333333 0.0894672 1.90631e-06 3.381e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| secondly , trade needs ||| 0.5 0.0307203 1.90631e-06 6.39012e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| secondly , trade ||| 0.2 0.0307203 1.90631e-06 3.22245e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| section on excise duties ||| 1 0.106914 1.90631e-06 2.20276e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| sector , to allow new ||| 1 0.0005876 1.90631e-06 1.85706e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| sectoral Councils . ||| 0.333333 0.0073529 1.90631e-06 5.62182e-14 2.718 ||| 0-0 ||| 3 524574 +los ||| sectoral Councils ||| 0.125 0.0073529 1.90631e-06 1.856e-11 2.718 ||| 0-0 ||| 8 524574 +los ||| sectoral ||| 0.00466744 0.0073529 7.62523e-06 5.8e-06 2.718 ||| 0-0 ||| 857 524574 +los ||| sectors - ||| 0.027027 0.1467 1.90631e-06 4.14063e-06 2.718 ||| 0-0 ||| 37 524574 +los ||| sectors and with regard to the environment ||| 1 0.1467 1.90631e-06 1.82232e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| sectors and with regard to the ||| 1 0.1467 1.90631e-06 3.26581e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| sectors and with regard to ||| 1 0.1467 1.90631e-06 5.31961e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| sectors and with regard ||| 1 0.1467 1.90631e-06 5.98663e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| sectors and with ||| 0.333333 0.1467 1.90631e-06 8.79223e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| sectors and ||| 0.00401606 0.1467 1.90631e-06 1.37497e-05 2.718 ||| 0-0 ||| 249 524574 +los ||| sectors flies ||| 0.5 0.1467 1.90631e-06 5.15919e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| sectors ||| 0.00430257 0.1467 5.90956e-05 0.0010977 2.718 ||| 0-0 ||| 7205 524574 +los ||| secure stable growth , the ||| 1 0.122289 1.90631e-06 1.65279e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| secure the involvement ||| 0.25 0.122289 1.90631e-06 6.4642e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| secure the ||| 0.00691244 0.122289 5.71893e-06 2.16194e-05 2.718 ||| 0-1 ||| 434 524574 +los ||| secure these rights ||| 1 0.0240362 1.90631e-06 2.45823e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| secure these ||| 0.1 0.0240362 1.90631e-06 1.2285e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| secure ||| 0.000266454 0.0002811 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 3753 524574 +los ||| secures the ||| 0.0666667 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 15 524574 +los ||| securing the agreement ||| 0.111111 0.122289 1.90631e-06 1.02774e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| securing the ||| 0.01 0.122289 3.81262e-06 5.57643e-06 2.718 ||| 0-1 ||| 200 524574 +los ||| securities ||| 0.00245098 0.113208 1.90631e-06 7e-05 2.718 ||| 0-0 ||| 408 524574 +los ||| security and taxation ||| 0.5 0.058762 1.90631e-06 2.79584e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| security contractors , a move which , ||| 1 0.270936 1.90631e-06 3.57877e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| security contractors , a move which ||| 1 0.270936 1.90631e-06 3.00095e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| security contractors , a move ||| 1 0.270936 1.90631e-06 3.53277e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| security contractors , a ||| 1 0.270936 1.90631e-06 2.31051e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| security contractors , ||| 1 0.270936 1.90631e-06 5.21256e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| security contractors ||| 1 0.270936 1.90631e-06 4.37095e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| security of ||| 0.000448229 0.0019787 1.90631e-06 2.70231e-07 2.718 ||| 0-1 ||| 2231 524574 +los ||| see ? the ||| 1 0.122289 1.90631e-06 5.16533e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| see if we can identify ||| 0.5 0.0014395 1.90631e-06 5.76511e-17 2.718 ||| 0-4 ||| 2 524574 +los ||| see people standing here ||| 0.333333 0.0894672 1.90631e-06 5.95238e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| see people standing ||| 0.333333 0.0894672 1.90631e-06 2.93539e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| see people ||| 0.0625 0.0894672 1.90631e-06 5.54894e-06 2.718 ||| 0-1 ||| 16 524574 +los ||| see that its ||| 0.333333 0.0211371 1.90631e-06 2.53063e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| see that subsequent ||| 1 0.0398818 1.90631e-06 6.22256e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| see that the ||| 0.00396825 0.122289 3.81262e-06 5.0842e-06 2.718 ||| 0-2 ||| 504 524574 +los ||| see the African ||| 1 0.122289 1.90631e-06 5.2288e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| see the idea ||| 0.25 0.122289 1.90631e-06 6.77628e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| see the ||| 0.015715 0.122289 5.71893e-05 0.000302243 2.718 ||| 0-1 ||| 1909 524574 +los ||| see them ||| 0.0173913 0.038218 3.81262e-06 1.41808e-06 2.718 ||| 0-1 ||| 115 524574 +los ||| see those on this side ||| 1 0.284705 1.90631e-06 1.11495e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| see those on this ||| 1 0.284705 1.90631e-06 5.08644e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| see those on ||| 1 0.284705 1.90631e-06 7.87205e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| see those ||| 0.142857 0.284705 1.90631e-06 1.17651e-05 2.718 ||| 0-1 ||| 7 524574 +los ||| see what ||| 0.00432277 0.0061209 5.71893e-06 6.755e-07 2.718 ||| 0-1 ||| 694 524574 +los ||| see who the ||| 1 0.122289 1.90631e-06 2.66578e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| seed producers ||| 0.142857 0.36135 1.90631e-06 1.26445e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| seeing the role of the ||| 1 0.122289 1.90631e-06 1.69401e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| seeing the ||| 0.010453 0.122289 5.71893e-06 2.28634e-05 2.718 ||| 0-1 ||| 287 524574 +los ||| seek to act in the ||| 1 0.122289 1.90631e-06 9.63372e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| seek to infringe the ||| 1 0.122289 1.90631e-06 3.70871e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| seekers ' ||| 0.047619 0.16315 1.90631e-06 2.80322e-06 2.718 ||| 0-0 0-1 ||| 21 524574 +los ||| seekers ||| 0.00142857 0.281851 3.81262e-06 0.000527 2.718 ||| 0-0 ||| 1400 524574 +los ||| seeking natural beauty ||| 1 0.0033827 1.90631e-06 3.3097e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| seeking natural ||| 1 0.0033827 1.90631e-06 1.03428e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| seem that the ||| 0.1 0.122289 3.81262e-06 6.59518e-07 2.718 ||| 0-2 ||| 20 524574 +los ||| seem the same ||| 1 0.122289 1.90631e-06 3.15496e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| seem the ||| 0.142857 0.122289 1.90631e-06 3.92066e-05 2.718 ||| 0-1 ||| 7 524574 +los ||| seem to be the idea ||| 1 0.122289 1.90631e-06 1.41553e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| seem to be the ||| 0.047619 0.122289 3.81262e-06 6.31371e-08 2.718 ||| 0-3 ||| 42 524574 +los ||| seen from the ||| 0.00980392 0.122289 1.90631e-06 1.45412e-07 2.718 ||| 0-2 ||| 102 524574 +los ||| seen in the ||| 0.00362319 0.122289 1.90631e-06 1.93273e-06 2.718 ||| 0-2 ||| 276 524574 +los ||| seen its ||| 0.0666667 0.0211371 1.90631e-06 4.49439e-07 2.718 ||| 0-1 ||| 15 524574 +los ||| seen the ||| 0.0019084 0.122289 1.90631e-06 9.02953e-05 2.718 ||| 0-1 ||| 524 524574 +los ||| seen to be the ||| 0.5 0.122289 1.90631e-06 1.45409e-07 2.718 ||| 0-3 ||| 2 524574 +los ||| selected by the ||| 0.0416667 0.122289 1.90631e-06 9.68387e-09 2.718 ||| 0-2 ||| 24 524574 +los ||| selection ||| 0.00180343 0.0256098 3.81262e-06 2.04e-05 2.718 ||| 0-0 ||| 1109 524574 +los ||| self-employed ||| 0.0026455 0.0203341 3.81262e-06 2.72e-05 2.718 ||| 0-0 ||| 756 524574 +los ||| selfemployed persons ||| 0.166667 0.0269192 1.90631e-06 5.252e-11 2.718 ||| 0-1 ||| 6 524574 +los ||| selling television ||| 1 0.0083667 1.90631e-06 1.456e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| send the ||| 0.00735294 0.122289 1.90631e-06 2.76248e-05 2.718 ||| 0-1 ||| 136 524574 +los ||| sending my best ||| 1 0.0086409 1.90631e-06 2.19577e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| sending my ||| 1 0.0086409 1.90631e-06 1.58539e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| sending out the wrong signal ||| 0.166667 0.122289 1.90631e-06 5.01876e-17 2.718 ||| 0-2 ||| 6 524574 +los ||| sending out the wrong ||| 0.5 0.122289 1.90631e-06 2.10872e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| sending out the ||| 0.0208333 0.122289 1.90631e-06 3.77907e-08 2.718 ||| 0-2 ||| 48 524574 +los ||| senior Members ||| 0.25 0.168879 1.90631e-06 5.88577e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| senior citizens ||| 0.00806452 0.293572 1.90631e-06 1.84674e-07 2.718 ||| 0-1 ||| 124 524574 +los ||| senior officials also discussed the ||| 0.5 0.122289 1.90631e-06 1.94192e-17 2.718 ||| 0-4 ||| 2 524574 +los ||| senior ||| 0.00847458 0.0544904 1.14379e-05 5.25e-05 2.718 ||| 0-0 ||| 708 524574 +los ||| sensational cases which ||| 0.5 0.136512 1.90631e-06 9.89748e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| sensational cases ||| 0.5 0.136512 1.90631e-06 1.16515e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| sense of ||| 0.000439174 0.0019787 1.90631e-06 5.89084e-07 2.718 ||| 0-1 ||| 2277 524574 +los ||| sensitive personal data ||| 0.0666667 0.16292 1.90631e-06 1.70828e-12 2.718 ||| 0-2 ||| 15 524574 +los ||| sensitive ||| 0.000742023 0.0014228 5.71893e-06 5.8e-06 2.718 ||| 0-0 ||| 4043 524574 +los ||| sentenced persons ||| 0.0714286 0.0269192 1.90631e-06 3.2825e-10 2.718 ||| 0-1 ||| 14 524574 +los ||| sentences , which all ||| 1 0.0177928 1.90631e-06 9.8039e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| separate market exists where the consumer has ||| 1 0.122289 1.90631e-06 8.96023e-24 2.718 ||| 0-4 ||| 1 524574 +los ||| separate market exists where the consumer ||| 1 0.122289 1.90631e-06 1.7407e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| separate market exists where the ||| 1 0.122289 1.90631e-06 5.90066e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| separate the general ||| 1 0.122289 1.90631e-06 2.70088e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| separate the ||| 0.0136986 0.122289 1.90631e-06 1.54424e-05 2.718 ||| 0-1 ||| 73 524574 +los ||| seriously address the ||| 0.2 0.122289 1.90631e-06 1.36481e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| serve the ||| 0.00728155 0.122289 5.71893e-06 2.93406e-05 2.718 ||| 0-1 ||| 412 524574 +los ||| serve to confirm the ||| 0.333333 0.122289 1.90631e-06 4.79716e-11 2.718 ||| 0-3 ||| 3 524574 +los ||| serves the ||| 0.00671141 0.122289 1.90631e-06 8.49333e-06 2.718 ||| 0-1 ||| 149 524574 +los ||| service broadcasters ||| 0.0606061 0.164179 3.81262e-06 5.01081e-09 2.718 ||| 0-1 ||| 33 524574 +los ||| service providers ||| 0.00151745 0.315424 1.90631e-06 4.42945e-08 2.718 ||| 0-1 ||| 659 524574 +los ||| service those ||| 0.2 0.284705 1.90631e-06 1.11707e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| service to ||| 0.00540541 0.0130347 1.90631e-06 9.49894e-06 2.718 ||| 0-0 ||| 185 524574 +los ||| service ||| 0.000937402 0.0130347 1.71568e-05 0.0001069 2.718 ||| 0-0 ||| 9601 524574 +los ||| services , trading ||| 1 0.272175 1.90631e-06 1.27364e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| services , ||| 0.00294334 0.272175 7.62523e-06 0.000929662 2.718 ||| 0-0 ||| 1359 524574 +los ||| services - too ||| 1 0.272175 1.90631e-06 4.00213e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| services - ||| 0.0204082 0.272175 1.90631e-06 2.94058e-05 2.718 ||| 0-0 ||| 49 524574 +los ||| services . ||| 0.000944287 0.272175 1.90631e-06 2.36129e-05 2.718 ||| 0-0 ||| 1059 524574 +los ||| services and , above all , ||| 1 0.272175 1.90631e-06 8.50458e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| services and , above all ||| 1 0.272175 1.90631e-06 7.13145e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| services and , above ||| 1 0.272175 1.90631e-06 1.50917e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| services and , ||| 0.0666667 0.272175 1.90631e-06 1.16449e-05 2.718 ||| 0-0 ||| 15 524574 +los ||| services and our ||| 0.333333 0.272175 1.90631e-06 1.34694e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| services and ||| 0.00188857 0.272175 3.81262e-06 9.76469e-05 2.718 ||| 0-0 ||| 1059 524574 +los ||| services are properly ||| 0.5 0.272175 1.90631e-06 8.81188e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| services are ||| 0.0107527 0.272175 5.71893e-06 0.00011828 2.718 ||| 0-0 ||| 279 524574 +los ||| services be ||| 0.111111 0.272175 1.90631e-06 0.000141279 2.718 ||| 0-0 ||| 9 524574 +los ||| services have prepared a ||| 0.5 0.272175 1.90631e-06 3.58302e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| services have prepared ||| 0.5 0.272175 1.90631e-06 8.08337e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| services have ||| 0.0102041 0.272175 1.90631e-06 9.32338e-05 2.718 ||| 0-0 ||| 98 524574 +los ||| services on offer ||| 0.5 0.272175 1.90631e-06 5.96715e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| services on ||| 0.0142857 0.272175 1.90631e-06 5.21604e-05 2.718 ||| 0-0 ||| 70 524574 +los ||| services sector are unified ||| 0.5 0.272175 1.90631e-06 7.90727e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| services sector are ||| 0.25 0.272175 1.90631e-06 2.19647e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| services sector ||| 0.002849 0.272175 1.90631e-06 1.44764e-06 2.718 ||| 0-0 ||| 351 524574 +los ||| services sectors ||| 0.027027 0.272175 1.90631e-06 4.01473e-07 2.718 ||| 0-0 ||| 37 524574 +los ||| services ||| 0.00248119 0.272175 0.000120097 0.0077956 2.718 ||| 0-0 ||| 25391 524574 +los ||| serving people ||| 0.2 0.0894672 1.90631e-06 8.82034e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| serving the ||| 0.00840336 0.122289 1.90631e-06 4.80431e-06 2.718 ||| 0-1 ||| 119 524574 +los ||| session when the ||| 1 0.122289 1.90631e-06 4.71758e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| set aside its proposal , as required ||| 0.5 0.0211371 1.90631e-06 3.39262e-21 2.718 ||| 0-2 ||| 2 524574 +los ||| set aside its proposal , as ||| 0.5 0.0211371 1.90631e-06 2.13776e-17 2.718 ||| 0-2 ||| 2 524574 +los ||| set aside its proposal , ||| 0.5 0.0211371 1.90631e-06 2.09494e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| set aside its proposal ||| 0.5 0.0211371 1.90631e-06 1.75669e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| set aside its ||| 0.5 0.0211371 1.90631e-06 8.79665e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| set its ||| 0.025 0.0211371 1.90631e-06 1.24775e-06 2.718 ||| 0-1 ||| 40 524574 +los ||| set of procedural ||| 1 0.0361861 1.90631e-06 1.94752e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| set of ||| 0.000710227 0.0019787 1.90631e-06 1.93296e-06 2.718 ||| 0-1 ||| 1408 524574 +los ||| set out all the ||| 0.25 0.122289 1.90631e-06 4.53739e-09 2.718 ||| 0-3 ||| 4 524574 +los ||| set out the ||| 0.00518135 0.122289 1.90631e-06 9.60213e-07 2.718 ||| 0-2 ||| 193 524574 +los ||| set the ||| 0.0122164 0.122289 1.33442e-05 0.000250682 2.718 ||| 0-1 ||| 573 524574 +los ||| set their ||| 0.0163934 0.0236713 1.90631e-06 1.33693e-06 2.718 ||| 0-1 ||| 61 524574 +los ||| set to keep them ||| 1 0.038218 1.90631e-06 1.62829e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| set up along the lines ||| 1 0.122289 1.90631e-06 1.35762e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| set up along the ||| 1 0.122289 1.90631e-06 1.49189e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| set your ||| 0.25 0.0096341 1.90631e-06 1.80112e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| sets its ||| 0.1 0.0211371 1.90631e-06 8.36959e-08 2.718 ||| 0-1 ||| 10 524574 +los ||| sets out the ||| 0.00537634 0.122289 1.90631e-06 6.44085e-08 2.718 ||| 0-2 ||| 186 524574 +los ||| sets the ||| 0.00877193 0.122289 1.90631e-06 1.68151e-05 2.718 ||| 0-1 ||| 114 524574 +los ||| setting out its ||| 0.0555556 0.0211371 1.90631e-06 7.76937e-10 2.718 ||| 0-2 ||| 18 524574 +los ||| setting out targets for ||| 1 0.0015353 1.90631e-06 7.63686e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| setting out the ||| 0.00353357 0.122289 1.90631e-06 1.56092e-07 2.718 ||| 0-2 ||| 283 524574 +los ||| setting the police ||| 1 0.122289 1.90631e-06 6.76464e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| setting the ||| 0.0172911 0.122289 1.14379e-05 4.07508e-05 2.718 ||| 0-1 ||| 347 524574 +los ||| settle major ||| 1 0.0097205 1.90631e-06 1.16762e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| settle the ||| 0.021978 0.122289 3.81262e-06 3.38875e-06 2.718 ||| 0-1 ||| 91 524574 +los ||| settlements be ||| 0.5 0.197836 1.90631e-06 2.25449e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| settlements ||| 0.00767754 0.197836 7.62523e-06 0.0001244 2.718 ||| 0-0 ||| 521 524574 +los ||| several of the ||| 0.00564972 0.122289 1.90631e-06 1.52745e-06 2.718 ||| 0-2 ||| 177 524574 +los ||| several times , ||| 0.00729927 0.0314168 1.90631e-06 1.96686e-09 2.718 ||| 0-1 ||| 137 524574 +los ||| several times ||| 0.0020429 0.0314168 3.81262e-06 1.64929e-08 2.718 ||| 0-1 ||| 979 524574 +los ||| several ||| 0.000587084 0.0011405 1.14379e-05 1.07e-05 2.718 ||| 0-0 ||| 10220 524574 +los ||| severe ||| 0.000704722 0.0006498 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1419 524574 +los ||| severely damage ||| 0.285714 0.0626363 3.81262e-06 1.78176e-09 2.718 ||| 0-1 ||| 7 524574 +los ||| sewage ||| 0.0204082 0.0311284 3.81262e-06 7.8e-06 2.718 ||| 0-0 ||| 98 524574 +los ||| sexual ||| 0.000827472 0.0026945 3.81262e-06 7.8e-06 2.718 ||| 0-0 ||| 2417 524574 +los ||| shadow ||| 0.000942063 0.0062865 3.81262e-06 1.36e-05 2.718 ||| 0-0 ||| 2123 524574 +los ||| shall meet ||| 0.0666667 0.0026912 1.90631e-06 1.27358e-08 2.718 ||| 0-1 ||| 15 524574 +los ||| shame the ||| 0.0588235 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-1 ||| 17 524574 +los ||| shame ||| 0.00222222 0.0030519 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 900 524574 +los ||| shameless in the profits they have been ||| 1 0.159219 1.90631e-06 4.27814e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| shameless in the profits they have ||| 1 0.159219 1.90631e-06 1.28119e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| shameless in the profits they ||| 1 0.159219 1.90631e-06 1.07124e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| shameless in the profits ||| 1 0.159219 1.90631e-06 3.282e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| shape our ||| 0.030303 0.0248369 1.90631e-06 2.16052e-07 2.718 ||| 0-1 ||| 33 524574 +los ||| share markets ||| 0.142857 0.239993 1.90631e-06 2.6573e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| share the focus ||| 0.125 0.122289 1.90631e-06 3.10763e-09 2.718 ||| 0-1 ||| 8 524574 +los ||| share the ||| 0.00486027 0.122289 7.62523e-06 4.01503e-05 2.718 ||| 0-1 ||| 823 524574 +los ||| shared ||| 0.000326584 0.0008996 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 3062 524574 +los ||| shareholders do not ||| 0.2 0.324286 1.90631e-06 2.58847e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| shareholders do ||| 0.2 0.324286 1.90631e-06 7.58171e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| shareholders ||| 0.00407332 0.324286 3.81262e-06 0.0002207 2.718 ||| 0-0 ||| 491 524574 +los ||| shatter the ||| 0.5 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| shattered the ||| 0.142857 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| she has identified ||| 0.333333 0.0009346 1.90631e-06 2.78053e-12 2.718 ||| 0-2 ||| 3 524574 +los ||| shed light on the ||| 0.0285714 0.122289 1.90631e-06 4.28995e-12 2.718 ||| 0-3 ||| 35 524574 +los ||| sheep ||| 0.00225734 0.0233593 3.81262e-06 2.04e-05 2.718 ||| 0-0 ||| 886 524574 +los ||| shells ||| 0.015873 0.15493 1.90631e-06 1.07e-05 2.718 ||| 0-0 ||| 63 524574 +los ||| shelves ||| 0.0133333 0.109244 1.90631e-06 1.26e-05 2.718 ||| 0-0 ||| 75 524574 +los ||| shift your ||| 0.25 0.0096341 1.90631e-06 6.10236e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| shifts ||| 0.0148148 0.071066 3.81262e-06 1.36e-05 2.718 ||| 0-0 ||| 135 524574 +los ||| ship reporting ||| 0.166667 0.0743802 1.90631e-06 9.1e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| ship yards ||| 0.333333 0.162602 1.90631e-06 2.9294e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| ship ||| 0.00347625 0.0743802 5.71893e-06 7e-05 2.718 ||| 0-0 ||| 863 524574 +los ||| shipments ||| 0.00389105 0.275641 1.90631e-06 8.36e-05 2.718 ||| 0-0 ||| 257 524574 +los ||| shipowners ||| 0.00533333 0.353698 3.81262e-06 0.0002139 2.718 ||| 0-0 ||| 375 524574 +los ||| ships ' ||| 0.111111 0.29596 3.81262e-06 2.3979e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| ships , ||| 0.00649351 0.29596 1.90631e-06 8.32517e-05 2.718 ||| 0-0 ||| 154 524574 +los ||| ships ||| 0.00915099 0.29596 3.43136e-05 0.0006981 2.718 ||| 0-0 ||| 1967 524574 +los ||| shipyards ||| 0.004 0.209781 3.81262e-06 0.0001585 2.718 ||| 0-0 ||| 500 524574 +los ||| shocks which ||| 0.2 0.0977654 1.90631e-06 2.88816e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| shocks ||| 0.00865801 0.0977654 3.81262e-06 3.4e-05 2.718 ||| 0-0 ||| 231 524574 +los ||| shoes ||| 0.00543478 0.0516605 1.90631e-06 1.36e-05 2.718 ||| 0-0 ||| 184 524574 +los ||| shooting ||| 0.00925926 0.01 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 108 524574 +los ||| shop 's ||| 1 0.0349814 1.90631e-06 7.96536e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| shop ||| 0.00389105 0.0087336 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 257 524574 +los ||| shopkeepers turning ||| 0.333333 0.178571 1.90631e-06 4.85e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| shopkeepers ||| 0.0344828 0.178571 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 29 524574 +los ||| shops , ||| 0.0222222 0.0929293 1.90631e-06 5.33069e-06 2.718 ||| 0-0 ||| 45 524574 +los ||| shops owned ||| 1 0.0929293 1.90631e-06 3.0396e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| shops ||| 0.00903614 0.0929293 5.71893e-06 4.47e-05 2.718 ||| 0-0 ||| 332 524574 +los ||| shops ’ ||| 0.5 0.0139748 1.90631e-06 4.10856e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| short , all the ||| 0.5 0.122289 1.90631e-06 3.41078e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| short memory these days - ||| 1 0.0240362 1.90631e-06 9.50369e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| short memory these days ||| 1 0.0240362 1.90631e-06 2.51947e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| short memory these ||| 1 0.0240362 1.90631e-06 3.95521e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| short of the ||| 0.00952381 0.122289 1.90631e-06 3.29042e-06 2.718 ||| 0-2 ||| 105 524574 +los ||| short of those ||| 0.1 0.284705 1.90631e-06 1.28083e-07 2.718 ||| 0-2 ||| 10 524574 +los ||| shortage in the ||| 0.166667 0.122289 1.90631e-06 7.89617e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| shortage of ||| 0.00229885 0.0019787 1.90631e-06 2.84454e-08 2.718 ||| 0-1 ||| 435 524574 +los ||| should also be the ||| 0.027027 0.122289 1.90631e-06 1.73906e-07 2.718 ||| 0-3 ||| 37 524574 +los ||| should always uphold the ||| 1 0.122289 1.90631e-06 3.39998e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| should be advancing ||| 0.0833333 0.0127226 1.90631e-06 3.93483e-10 2.718 ||| 0-2 ||| 12 524574 +los ||| should be brought to bear on the ||| 1 0.122289 1.90631e-06 8.58442e-16 2.718 ||| 0-6 ||| 1 524574 +los ||| should be developing ||| 0.142857 0.150762 1.90631e-06 2.85909e-07 2.718 ||| 0-2 ||| 7 524574 +los ||| should be imported ||| 0.5 0.0411462 1.90631e-06 4.36846e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| should be left to the national ||| 1 0.122289 1.90631e-06 7.42977e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| should be left to the ||| 0.0277778 0.122289 1.90631e-06 5.78192e-10 2.718 ||| 0-4 ||| 36 524574 +los ||| should be protected ||| 0.010101 0.0032727 1.90631e-06 7.06663e-10 2.718 ||| 0-2 ||| 99 524574 +los ||| should be the ||| 0.003367 0.122289 5.71893e-06 3.44463e-05 2.718 ||| 0-2 ||| 891 524574 +los ||| should be up to each ||| 0.5 0.0497499 1.90631e-06 2.1413e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| should be up to ||| 0.125 0.0031618 1.90631e-06 1.51273e-09 2.718 ||| 0-2 ||| 8 524574 +los ||| should be up ||| 0.0833333 0.0031618 1.90631e-06 1.70241e-08 2.718 ||| 0-2 ||| 12 524574 +los ||| should conclude direct ||| 1 0.0017634 1.90631e-06 1.14262e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| should continue them . the ||| 1 0.122289 1.90631e-06 3.57356e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| should first have fulfilled their relative ||| 1 0.0236713 1.90631e-06 6.7557e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| should first have fulfilled their ||| 1 0.0236713 1.90631e-06 7.50633e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| should have their ||| 0.0454545 0.0236713 1.90631e-06 1.21234e-07 2.718 ||| 0-2 ||| 22 524574 +los ||| should heed the ||| 0.25 0.122289 1.90631e-06 8.17303e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| should introduce mechanisms for the cooperation ||| 1 0.122289 1.90631e-06 4.67507e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| should introduce mechanisms for the ||| 1 0.122289 1.90631e-06 5.07608e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| should involve the ||| 0.0434783 0.122289 1.90631e-06 9.37048e-08 2.718 ||| 0-2 ||| 23 524574 +los ||| should like to give him my very ||| 0.5 0.0086409 1.90631e-06 3.25821e-19 2.718 ||| 0-5 ||| 2 524574 +los ||| should like to give him my ||| 0.5 0.0086409 1.90631e-06 9.36402e-17 2.718 ||| 0-5 ||| 2 524574 +los ||| should not be authorised , and the ||| 1 0.122289 1.90631e-06 1.26484e-15 2.718 ||| 0-6 ||| 1 524574 +los ||| should not cause congestion ||| 0.5 0.0297872 1.90631e-06 5.57656e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| should provide the ||| 0.027027 0.122289 1.90631e-06 5.62229e-07 2.718 ||| 0-2 ||| 37 524574 +los ||| should rest with the ||| 0.0909091 0.122289 1.90631e-06 9.18847e-10 2.718 ||| 0-3 ||| 11 524574 +los ||| should restrict yourself to the ||| 1 0.122289 1.90631e-06 9.57625e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| should take EUR ||| 1 0.0343255 1.90631e-06 4.07132e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| should take the liberty ||| 1 0.122289 1.90631e-06 3.09074e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| should take the ||| 0.0128205 0.122289 3.81262e-06 3.06014e-06 2.718 ||| 0-2 ||| 156 524574 +los ||| should the ||| 0.0128205 0.122289 1.14379e-05 0.00190071 2.718 ||| 0-1 ||| 468 524574 +los ||| should there ||| 0.0136986 0.0026918 1.90631e-06 1.62839e-06 2.718 ||| 0-1 ||| 73 524574 +los ||| should trample upon the ||| 1 0.122289 1.90631e-06 3.15593e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| should use those ||| 1 0.284705 1.90631e-06 3.59725e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| shoulder against the ||| 1 0.122289 1.90631e-06 1.98557e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| show the ||| 0.00403226 0.122289 3.81262e-06 5.74372e-05 2.718 ||| 0-1 ||| 496 524574 +los ||| showed the ||| 0.00990099 0.122289 1.90631e-06 9.09387e-06 2.718 ||| 0-1 ||| 101 524574 +los ||| showing cattle breeders ||| 1 0.303922 1.90631e-06 1.41609e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| showing wretched people ||| 1 0.0894672 1.90631e-06 3.40685e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| shown round the ||| 1 0.122289 1.90631e-06 3.43486e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| shown the ||| 0.00595238 0.122289 1.90631e-06 4.4783e-05 2.718 ||| 0-1 ||| 168 524574 +los ||| shown their ||| 0.0294118 0.0236713 1.90631e-06 2.38836e-07 2.718 ||| 0-1 ||| 34 524574 +los ||| shunned the ||| 0.333333 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| shut its ||| 0.25 0.0211371 1.90631e-06 3.30941e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| sick ||| 0.00291545 0.0042463 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 343 524574 +los ||| side of ||| 0.00118765 0.0019787 1.90631e-06 7.25026e-07 2.718 ||| 0-1 ||| 842 524574 +los ||| side-facing ||| 0.5 0.338028 1.90631e-06 2.33e-05 2.718 ||| 0-0 ||| 2 524574 +los ||| sides - we ||| 1 0.0165538 1.90631e-06 2.74917e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| sides - ||| 0.0454545 0.0165538 1.90631e-06 2.42169e-07 2.718 ||| 0-0 ||| 22 524574 +los ||| sides of the ||| 0.00195695 0.122289 1.90631e-06 8.55836e-07 2.718 ||| 0-2 ||| 511 524574 +los ||| sides ||| 0.000860832 0.0165538 5.71893e-06 6.42e-05 2.718 ||| 0-0 ||| 3485 524574 +los ||| sight of the ||| 0.011236 0.122289 1.90631e-06 5.36355e-07 2.718 ||| 0-2 ||| 89 524574 +los ||| sign of the ||| 0.00943396 0.122289 1.90631e-06 1.21729e-06 2.718 ||| 0-2 ||| 106 524574 +los ||| signed by three political groups ||| 1 0.143803 1.90631e-06 3.63745e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| significant challenges ||| 0.0322581 0.145386 1.90631e-06 6.89933e-08 2.718 ||| 0-1 ||| 31 524574 +los ||| significant effects ||| 0.0588235 0.0022391 1.90631e-06 8.4096e-10 2.718 ||| 0-1 ||| 17 524574 +los ||| significant tightening up of the ||| 0.5 0.122289 1.90631e-06 1.14526e-14 2.718 ||| 0-4 ||| 2 524574 +los ||| significant ||| 9.87264e-05 0.0001925 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 10129 524574 +los ||| signing the ||| 0.00454545 0.122289 1.90631e-06 4.80431e-06 2.718 ||| 0-1 ||| 220 524574 +los ||| silent whenever ||| 0.5 0.0045429 1.90631e-06 6.708e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| silicone ||| 0.192308 0.345454 9.53154e-06 1.85e-05 2.718 ||| 0-0 ||| 26 524574 +los ||| similar cuts ||| 0.111111 0.104656 1.90631e-06 8.89421e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| similar problems exist elsewhere ||| 1 0.106249 1.90631e-06 4.22262e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| similar problems exist ||| 1 0.106249 1.90631e-06 1.13817e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| similar problems ||| 0.011236 0.106249 1.90631e-06 1.2358e-07 2.718 ||| 0-1 ||| 89 524574 +los ||| simple . the ||| 0.142857 0.122289 1.90631e-06 5.61301e-08 2.718 ||| 0-2 ||| 7 524574 +los ||| simple lifting equipment , ||| 0.5 0.101449 1.90631e-06 7.19418e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| simple lifting equipment ||| 0.5 0.101449 1.90631e-06 6.03262e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| simplify the ||| 0.0019685 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-1 ||| 508 524574 +los ||| simplify ||| 0.00142755 0.0028986 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 1401 524574 +los ||| simply a snare of the ||| 1 0.122289 1.90631e-06 9.16657e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| simply the ||| 0.00666667 0.122289 1.90631e-06 9.50996e-05 2.718 ||| 0-1 ||| 150 524574 +los ||| since as far ||| 0.25 0.0009297 1.90631e-06 3.30548e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| since as ||| 0.025641 0.0009297 1.90631e-06 4.84178e-08 2.718 ||| 0-1 ||| 39 524574 +los ||| since its ||| 0.00340136 0.0211371 1.90631e-06 2.89733e-07 2.718 ||| 0-1 ||| 294 524574 +los ||| since our ||| 0.00806452 0.0248369 1.90631e-06 4.84598e-07 2.718 ||| 0-1 ||| 124 524574 +los ||| since the ||| 0.000652955 0.122289 7.62523e-06 5.82094e-05 2.718 ||| 0-1 ||| 6126 524574 +los ||| sincerely , the ||| 0.333333 0.122289 1.90631e-06 1.01287e-06 2.718 ||| 0-2 ||| 3 524574 +los ||| singing the ||| 0.125 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-1 ||| 8 524574 +los ||| single country ||| 0.0120482 0.0083277 1.90631e-06 3.84733e-08 2.718 ||| 0-0 ||| 83 524574 +los ||| single monetary policy could address the different ||| 1 0.122289 1.90631e-06 4.61095e-24 2.718 ||| 0-5 ||| 1 524574 +los ||| single monetary policy could address the ||| 1 0.122289 1.90631e-06 2.09398e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| single one of the Members ||| 0.5 0.0753686 1.90631e-06 3.04982e-12 2.718 ||| 0-0 0-2 0-3 0-4 ||| 2 524574 +los ||| single one of ||| 0.0277778 0.0083277 1.90631e-06 2.42224e-08 2.718 ||| 0-0 ||| 36 524574 +los ||| single one ||| 0.0163934 0.0083277 1.90631e-06 4.45559e-07 2.718 ||| 0-0 ||| 61 524574 +los ||| single owner ||| 1 0.0083277 1.90631e-06 2.3518e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| single xenophobic ||| 0.166667 0.007874 1.90631e-06 3.0153e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| single ||| 0.00299252 0.0083277 6.86271e-05 0.0001069 2.718 ||| 0-0 ||| 12030 524574 +los ||| sit around the ||| 0.0714286 0.122289 1.90631e-06 2.15978e-09 2.718 ||| 0-2 ||| 14 524574 +los ||| sit on the ||| 0.0147059 0.122289 1.90631e-06 1.08492e-07 2.718 ||| 0-2 ||| 68 524574 +los ||| site providers ||| 0.333333 0.315424 1.90631e-06 1.26461e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| site with the ||| 0.5 0.122289 1.90631e-06 5.23906e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| sites , ||| 0.0153846 0.147482 1.90631e-06 2.37675e-05 2.718 ||| 0-0 ||| 65 524574 +los ||| sites . ||| 0.0227273 0.147482 1.90631e-06 6.0368e-07 2.718 ||| 0-0 ||| 44 524574 +los ||| sites of ||| 0.0357143 0.147482 1.90631e-06 1.08347e-05 2.718 ||| 0-0 ||| 28 524574 +los ||| sites ||| 0.00729262 0.147482 1.52505e-05 0.0001993 2.718 ||| 0-0 ||| 1097 524574 +los ||| sitting the examination ||| 0.1 0.122289 1.90631e-06 4.08431e-10 2.718 ||| 0-1 ||| 10 524574 +los ||| sitting the ||| 0.0714286 0.122289 1.90631e-06 2.98125e-05 2.718 ||| 0-1 ||| 14 524574 +los ||| situation , the ||| 0.00714286 0.122289 1.90631e-06 2.63449e-05 2.718 ||| 0-2 ||| 140 524574 +los ||| situation is on the ||| 0.1 0.122289 1.90631e-06 4.63261e-08 2.718 ||| 0-3 ||| 10 524574 +los ||| situation of ||| 0.000389257 0.0019787 1.90631e-06 1.70341e-06 2.718 ||| 0-1 ||| 2569 524574 +los ||| situation vis-à-vis the ||| 0.5 0.122289 1.90631e-06 6.40646e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| situation where the ||| 0.00546448 0.122289 1.90631e-06 6.69365e-08 2.718 ||| 0-2 ||| 183 524574 +los ||| situation where ||| 0.00192493 0.0449398 3.81262e-06 1.13661e-06 2.718 ||| 0-1 ||| 1039 524574 +los ||| situation with regard to the ||| 0.0384615 0.122289 1.90631e-06 8.54688e-11 2.718 ||| 0-4 ||| 26 524574 +los ||| situations in countries like the ||| 1 0.122289 1.90631e-06 2.1174e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| sizes ||| 0.00598802 0.166065 1.90631e-06 4.47e-05 2.718 ||| 0-0 ||| 167 524574 +los ||| ski ||| 0.0147059 0.0291262 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 68 524574 +los ||| skills ||| 0.000949668 0.0147617 3.81262e-06 3.4e-05 2.718 ||| 0-0 ||| 2106 524574 +los ||| skin care products ||| 1 0.245259 1.90631e-06 1.82853e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| sleeping remedies ||| 1 0.0899471 1.90631e-06 4.634e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| slip through the safety net ||| 0.333333 0.122289 1.90631e-06 1.00857e-18 2.718 ||| 0-2 ||| 3 524574 +los ||| slip through the safety ||| 0.333333 0.122289 1.90631e-06 6.50692e-14 2.718 ||| 0-2 ||| 3 524574 +los ||| slip through the ||| 0.0666667 0.122289 1.90631e-06 1.28342e-09 2.718 ||| 0-2 ||| 15 524574 +los ||| slots ||| 0.00529101 0.0129534 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 189 524574 +los ||| small agricultural holdings , ||| 0.5 0.0019291 1.90631e-06 1.13902e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| small agricultural holdings ||| 0.25 0.0019291 1.90631e-06 9.55114e-15 2.718 ||| 0-1 ||| 4 524574 +los ||| small agricultural ||| 0.5 0.0019291 1.90631e-06 2.98473e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| small haulage businesses ||| 0.166667 0.0028034 1.90631e-06 2.236e-15 2.718 ||| 0-0 ||| 6 524574 +los ||| small haulage ||| 0.166667 0.0028034 1.90631e-06 8.406e-11 2.718 ||| 0-0 ||| 6 524574 +los ||| small number of ||| 0.00409836 0.0019787 1.90631e-06 2.09649e-10 2.718 ||| 0-2 ||| 244 524574 +los ||| small number ||| 0.00362319 0.0028034 1.90631e-06 2.31072e-08 2.718 ||| 0-0 ||| 276 524574 +los ||| small shop 's ||| 1 0.0349814 1.90631e-06 1.02036e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| small specialists ||| 0.333333 0.173824 1.90631e-06 1.05811e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| small tankers ||| 0.111111 0.262332 1.90631e-06 1.45778e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| small ||| 0.000504764 0.0028034 1.52505e-05 4.67e-05 2.718 ||| 0-0 ||| 15849 524574 +los ||| small-scale ||| 0.00195312 0.0055866 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 512 524574 +los ||| smaller ||| 0.00230415 0.0361224 7.62523e-06 9.53e-05 2.718 ||| 0-0 ||| 1736 524574 +los ||| smart keys ||| 0.25 0.0050676 1.90631e-06 4.06e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| smart ||| 0.00229885 0.0050676 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 435 524574 +los ||| smokers in ||| 0.2 0.352941 1.90631e-06 2.24747e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| smokers ||| 0.00584795 0.352941 1.90631e-06 0.000105 2.718 ||| 0-0 ||| 171 524574 +los ||| smugglers ||| 0.00862069 0.198718 1.90631e-06 3.01e-05 2.718 ||| 0-0 ||| 116 524574 +los ||| snare of the ||| 1 0.122289 1.90631e-06 9.32791e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| so , yes , the ||| 0.5 0.122289 1.90631e-06 4.4308e-10 2.718 ||| 0-4 ||| 2 524574 +los ||| so can those of ||| 1 0.284705 1.90631e-06 6.128e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| so can those ||| 1 0.284705 1.90631e-06 1.12722e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| so do the ||| 0.0714286 0.122289 1.90631e-06 3.34462e-06 2.718 ||| 0-2 ||| 14 524574 +los ||| so far as the ||| 0.0128205 0.122289 1.90631e-06 6.78264e-09 2.718 ||| 0-3 ||| 78 524574 +los ||| so happens the ||| 1 0.122289 1.90631e-06 5.8124e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| so much for being ||| 1 0.0015353 1.90631e-06 5.71672e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| so much for ||| 0.00746269 0.0015353 1.90631e-06 2.00883e-09 2.718 ||| 0-2 ||| 134 524574 +los ||| so much the ||| 0.0125 0.122289 1.90631e-06 9.77204e-07 2.718 ||| 0-2 ||| 80 524574 +los ||| so on . ||| 0.00238095 4.2e-06 1.90631e-06 1.18455e-10 2.718 ||| 0-2 ||| 420 524574 +los ||| so should the ||| 0.142857 0.122289 1.90631e-06 4.31403e-06 2.718 ||| 0-2 ||| 7 524574 +los ||| so teachers are also ||| 1 0.261324 1.90631e-06 5.07153e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| so teachers are ||| 1 0.261324 1.90631e-06 1.00454e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| so teachers ||| 1 0.261324 1.90631e-06 6.62071e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| so that the ||| 0.00207828 0.122289 1.14379e-05 1.63775e-05 2.718 ||| 0-2 ||| 2887 524574 +los ||| so the ||| 0.00753012 0.122289 1.90631e-05 0.000973602 2.718 ||| 0-1 ||| 1328 524574 +los ||| so they can ||| 0.0135135 0.0072404 1.90631e-06 5.52618e-09 2.718 ||| 0-1 ||| 74 524574 +los ||| so they ||| 0.00381679 0.0072404 1.90631e-06 1.85798e-06 2.718 ||| 0-1 ||| 262 524574 +los ||| so to speak , the ||| 0.125 0.122289 1.90631e-06 1.39589e-09 2.718 ||| 0-4 ||| 8 524574 +los ||| so violent ||| 0.5 0.0078193 1.90631e-06 1.99734e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| so we as free democrats ||| 0.5 0.186317 1.90631e-06 3.81381e-15 2.718 ||| 0-4 ||| 2 524574 +los ||| so were the ||| 0.5 0.122289 1.90631e-06 1.74411e-06 2.718 ||| 0-2 ||| 2 524574 +los ||| so-called guerillas ||| 0.125 0.0023835 1.90631e-06 4.28e-12 2.718 ||| 0-0 ||| 8 524574 +los ||| so-called ||| 0.00098174 0.0023835 9.53154e-06 1.07e-05 2.718 ||| 0-0 ||| 5093 524574 +los ||| soap ||| 0.05 0.047619 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| social , ||| 0.000874891 0.0037997 1.90631e-06 1.80909e-05 2.718 ||| 0-0 ||| 1143 524574 +los ||| social and ||| 0.000387522 0.0037997 3.81262e-06 1.90018e-06 2.718 ||| 0-0 ||| 5161 524574 +los ||| social cohesion of ||| 0.05 0.0037997 1.90631e-06 1.27829e-10 2.718 ||| 0-0 ||| 20 524574 +los ||| social cohesion ||| 0.000768049 0.0037997 1.90631e-06 2.35135e-09 2.718 ||| 0-0 ||| 1302 524574 +los ||| social insurance ||| 0.00458716 0.0512888 1.90631e-06 5.84045e-08 2.718 ||| 0-0 0-1 ||| 218 524574 +los ||| social point ||| 0.0909091 0.0037997 1.90631e-06 1.32707e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| social policy problems ||| 0.2 0.106249 1.90631e-06 1.24712e-10 2.718 ||| 0-2 ||| 5 524574 +los ||| social provision ||| 0.02 0.0037997 1.90631e-06 1.8022e-08 2.718 ||| 0-0 ||| 50 524574 +los ||| social security and taxation ||| 0.0555556 0.058762 1.90631e-06 2.8881e-14 2.718 ||| 0-3 ||| 18 524574 +los ||| social security ||| 0.000243902 0.0037997 1.90631e-06 1.23939e-08 2.718 ||| 0-0 ||| 4100 524574 +los ||| social standards ||| 0.0025641 0.0037997 1.90631e-06 1.10893e-08 2.718 ||| 0-0 ||| 390 524574 +los ||| social tragedy . we need - and ||| 0.25 0.0037997 1.90631e-06 1.53671e-21 2.718 ||| 0-0 ||| 4 524574 +los ||| social tragedy . we need - ||| 0.25 0.0037997 1.90631e-06 1.22683e-19 2.718 ||| 0-0 ||| 4 524574 +los ||| social tragedy . we need ||| 0.25 0.0037997 1.90631e-06 3.25237e-17 2.718 ||| 0-0 ||| 4 524574 +los ||| social tragedy . we ||| 0.25 0.0037997 1.90631e-06 3.54713e-14 2.718 ||| 0-0 ||| 4 524574 +los ||| social tragedy . ||| 0.2 0.0037997 1.90631e-06 3.1246e-12 2.718 ||| 0-0 ||| 5 524574 +los ||| social tragedy ||| 0.0769231 0.0037997 1.90631e-06 1.03156e-09 2.718 ||| 0-0 ||| 13 524574 +los ||| social ||| 0.00179453 0.0037997 0.000144879 0.0001517 2.718 ||| 0-0 ||| 42351 524574 +los ||| societal ||| 0.00598802 0.0202703 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 167 524574 +los ||| society ||| 5.19319e-05 5.88e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 19256 524574 +los ||| soft ||| 0.00557621 0.0172414 5.71893e-06 1.26e-05 2.718 ||| 0-0 ||| 538 524574 +los ||| software ||| 0.00125786 0.070018 1.90631e-06 7.58e-05 2.718 ||| 0-0 ||| 795 524574 +los ||| soil ||| 0.000956023 0.0308458 1.90631e-06 6.03e-05 2.718 ||| 0-0 ||| 1046 524574 +los ||| soldiers ||| 0.000888099 0.130248 1.90631e-06 0.0001478 2.718 ||| 0-0 ||| 1126 524574 +los ||| solidarity between the ||| 0.00440529 0.122289 1.90631e-06 2.97607e-09 2.718 ||| 0-2 ||| 227 524574 +los ||| solution is found to the ||| 0.5 0.122289 1.90631e-06 1.77738e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| solutions to the ||| 0.00526316 0.122289 1.90631e-06 7.28021e-07 2.718 ||| 0-2 ||| 190 524574 +los ||| solve the ||| 0.00316456 0.122289 5.71893e-06 6.64882e-06 2.718 ||| 0-1 ||| 948 524574 +los ||| solved the ||| 0.02 0.122289 1.90631e-06 4.63273e-06 2.718 ||| 0-1 ||| 50 524574 +los ||| some EU countries - mentioning no ||| 1 0.004319 1.90631e-06 3.80784e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| some EU countries - mentioning ||| 1 0.004319 1.90631e-06 4.89187e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| some EU countries - ||| 1 0.004319 1.90631e-06 8.43427e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| some EU countries ||| 0.0227273 0.004319 1.90631e-06 2.23596e-10 2.718 ||| 0-1 ||| 44 524574 +los ||| some EU ||| 0.0625 0.004319 1.90631e-06 5.88876e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| some Members ||| 0.00148588 0.168879 1.90631e-06 5.25522e-06 2.718 ||| 0-1 ||| 673 524574 +los ||| some cases , not ||| 0.5 0.0692944 1.90631e-06 7.71219e-11 2.718 ||| 0-0 0-1 ||| 2 524574 +los ||| some cases , ||| 0.0019802 0.0692944 1.90631e-06 2.25892e-08 2.718 ||| 0-0 0-1 ||| 505 524574 +los ||| some cases ||| 0.00397772 0.136512 9.53154e-06 1.81314e-06 2.718 ||| 0-1 ||| 1257 524574 +los ||| some countries ||| 0.000603136 0.0020765 1.90631e-06 4.32099e-08 2.718 ||| 0-0 ||| 1658 524574 +los ||| some extent , ||| 0.00383142 0.0020765 1.90631e-06 2.60838e-09 2.718 ||| 0-0 ||| 261 524574 +los ||| some extent ||| 0.00110011 0.0020765 1.90631e-06 2.18724e-08 2.718 ||| 0-0 ||| 909 524574 +los ||| some food for thought ||| 0.142857 0.123536 1.90631e-06 1.53343e-12 2.718 ||| 0-1 ||| 7 524574 +los ||| some food for ||| 0.5 0.123536 1.90631e-06 1.84528e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| some food ||| 0.25 0.123536 1.90631e-06 2.40093e-06 2.718 ||| 0-1 ||| 4 524574 +los ||| some fundamental statements ||| 0.5 0.0942078 1.90631e-06 5.16485e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| some fundamental ||| 0.0714286 0.0942078 1.90631e-06 1.61402e-06 2.718 ||| 0-1 ||| 14 524574 +los ||| some groups of ||| 0.166667 0.072891 1.90631e-06 7.14973e-09 2.718 ||| 0-1 0-2 ||| 6 524574 +los ||| some growers have ||| 1 0.353352 1.90631e-06 3.20484e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| some growers ||| 1 0.353352 1.90631e-06 2.67968e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| some indications ||| 0.0588235 0.010352 1.90631e-06 1.05662e-08 2.718 ||| 0-1 ||| 17 524574 +los ||| some members ||| 0.00645161 0.0020765 1.90631e-06 1.67855e-08 2.718 ||| 0-0 ||| 155 524574 +los ||| some of the money for these activities ||| 1 0.0240362 1.90631e-06 8.84742e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| some of the money for these ||| 1 0.0240362 1.90631e-06 1.11288e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| some of the problems ||| 0.00787402 0.114269 1.90631e-06 7.7896e-08 2.718 ||| 0-2 0-3 ||| 127 524574 +los ||| some of the ||| 0.00499815 0.122289 5.14703e-05 2.54022e-05 2.718 ||| 0-2 ||| 5402 524574 +los ||| some of them , ||| 0.0117647 0.0019787 1.90631e-06 1.15255e-09 2.718 ||| 0-1 ||| 85 524574 +los ||| some of them ||| 0.00127551 0.0019787 1.90631e-06 9.6646e-09 2.718 ||| 0-1 ||| 784 524574 +los ||| some of this ||| 0.0138889 0.0020276 1.90631e-06 2.4321e-09 2.718 ||| 0-0 0-1 ||| 72 524574 +los ||| some of those ||| 0.00307692 0.284705 1.90631e-06 9.8881e-07 2.718 ||| 0-2 ||| 325 524574 +los ||| some of ||| 0.000526362 0.0020276 1.14379e-05 3.76405e-07 2.718 ||| 0-0 0-1 ||| 11399 524574 +los ||| some people are doggedly determined ||| 1 0.0894672 1.90631e-06 6.23206e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| some people are doggedly ||| 1 0.0894672 1.90631e-06 1.82224e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| some people are ||| 0.0114943 0.0894672 1.90631e-06 1.3016e-07 2.718 ||| 0-1 ||| 87 524574 +los ||| some people who ||| 0.0243902 0.0894672 1.90631e-06 7.56629e-09 2.718 ||| 0-1 ||| 41 524574 +los ||| some people ||| 0.00193237 0.0894672 3.81262e-06 8.57856e-06 2.718 ||| 0-1 ||| 1035 524574 +los ||| some soft ||| 1 0.0172414 1.90631e-06 1.37252e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| some thought in advance to the ||| 0.5 0.122289 1.90631e-06 2.60699e-15 2.718 ||| 0-5 ||| 2 524574 +los ||| some ||| 0.00162623 0.0020765 0.000167755 0.0001138 2.718 ||| 0-0 ||| 54113 524574 +los ||| somebody ||| 0.0020202 0.0017699 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 495 524574 +los ||| something else ||| 0.00167224 0.01311 1.90631e-06 3.8745e-08 2.718 ||| 0-1 ||| 598 524574 +los ||| something more concrete ||| 0.25 0.0002209 1.90631e-06 1.26403e-12 2.718 ||| 0-2 ||| 4 524574 +los ||| something that the ||| 0.00666667 0.122289 1.90631e-06 3.99391e-06 2.718 ||| 0-2 ||| 150 524574 +los ||| something the ||| 0.0227273 0.122289 3.81262e-06 0.000237427 2.718 ||| 0-1 ||| 88 524574 +los ||| something which the ||| 0.016129 0.122289 1.90631e-06 2.01685e-06 2.718 ||| 0-2 ||| 62 524574 +los ||| something wrong with the trees ? only ||| 1 0.18136 1.90631e-06 1.61452e-22 2.718 ||| 0-4 ||| 1 524574 +los ||| something wrong with the trees ? ||| 1 0.18136 1.90631e-06 1.45047e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| something wrong with the trees ||| 1 0.18136 1.90631e-06 8.48725e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| sometimes the ||| 0.00763359 0.122289 1.90631e-06 2.4236e-05 2.718 ||| 0-1 ||| 131 524574 +los ||| somewhere in the ||| 0.0217391 0.122289 1.90631e-06 1.88223e-07 2.718 ||| 0-2 ||| 46 524574 +los ||| sort conflict is over and done with ||| 1 0.0037547 1.90631e-06 1.03816e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| sort conflict is over and done ||| 1 0.0037547 1.90631e-06 1.62352e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| sort conflict is over and ||| 1 0.0037547 1.90631e-06 3.56036e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| sort conflict is over ||| 1 0.0037547 1.90631e-06 2.8424e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| sort out all the ||| 1 0.070041 1.90631e-06 7.05849e-10 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| sorts of ||| 0.0196078 0.0143914 1.33442e-05 4.16758e-08 2.718 ||| 0-0 0-1 ||| 357 524574 +los ||| sorts ||| 0.01 0.0268041 7.62523e-06 1.26e-05 2.718 ||| 0-0 ||| 400 524574 +los ||| sought by the ||| 0.0333333 0.122289 3.81262e-06 7.29669e-08 2.718 ||| 0-2 ||| 60 524574 +los ||| sought the ||| 0.0333333 0.122289 1.90631e-06 1.38982e-05 2.718 ||| 0-1 ||| 30 524574 +los ||| source of knowledge for ||| 1 0.0139626 3.81262e-06 4.45224e-13 2.718 ||| 0-2 0-3 ||| 2 524574 +los ||| southern ||| 0.000441306 0.0126162 1.90631e-06 3.69e-05 2.718 ||| 0-0 ||| 2266 524574 +los ||| sovereign ||| 0.0239437 0.025788 6.48145e-05 3.5e-05 2.718 ||| 0-0 ||| 1420 524574 +los ||| sovereignty , the end of ||| 1 0.122289 1.90631e-06 5.68705e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| sovereignty , the end ||| 1 0.122289 1.90631e-06 1.04611e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| sovereignty , the ||| 0.111111 0.122289 1.90631e-06 2.40429e-07 2.718 ||| 0-2 ||| 9 524574 +los ||| sovereignty over ||| 0.015625 0.0037547 1.90631e-06 6.3967e-10 2.718 ||| 0-1 ||| 64 524574 +los ||| spaces ||| 0.00621118 0.168067 1.90631e-06 3.89e-05 2.718 ||| 0-0 ||| 161 524574 +los ||| spanner in the works for the ||| 1 0.122289 1.90631e-06 3.22838e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| spare ||| 0.00197628 0.0016367 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 506 524574 +los ||| sparing those who are ||| 1 0.284705 1.90631e-06 2.45798e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| sparing those who ||| 1 0.284705 1.90631e-06 1.62e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| sparing those ||| 1 0.284705 1.90631e-06 1.83674e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| speak , the ||| 0.125 0.122289 3.81262e-06 6.92128e-06 2.718 ||| 0-2 ||| 16 524574 +los ||| speakers , Mr ||| 0.0909091 0.080862 1.90631e-06 3.32262e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| speakers , ||| 0.00277778 0.080862 1.90631e-06 5.08979e-05 2.718 ||| 0-0 ||| 360 524574 +los ||| speakers have already ||| 0.0188679 0.080862 1.90631e-06 2.36387e-09 2.718 ||| 0-0 ||| 53 524574 +los ||| speakers have ||| 0.00280899 0.080862 1.90631e-06 5.10444e-06 2.718 ||| 0-0 ||| 356 524574 +los ||| speakers ||| 0.00135208 0.080862 9.53154e-06 0.0004268 2.718 ||| 0-0 ||| 3698 524574 +los ||| speaking the ||| 0.0588235 0.122289 1.90631e-06 4.92442e-05 2.718 ||| 0-1 ||| 17 524574 +los ||| special interest ||| 0.00884956 0.0023774 1.90631e-06 2.49952e-09 2.718 ||| 0-1 ||| 113 524574 +los ||| special vehicles ||| 0.142857 0.285832 1.90631e-06 1.15183e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| special ||| 0.0011289 0.001641 2.09694e-05 1.56e-05 2.718 ||| 0-0 ||| 9744 524574 +los ||| special-purpose ||| 0.25 0.25 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| specialist ||| 0.00175131 0.0167504 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 571 524574 +los ||| specialists ||| 0.00688073 0.173824 5.71893e-06 8.26e-05 2.718 ||| 0-0 ||| 436 524574 +los ||| specific rules which the Commission is ||| 1 0.122289 1.90631e-06 1.17119e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| specific rules which the Commission ||| 1 0.122289 1.90631e-06 3.73692e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| specific rules which the ||| 1 0.122289 1.90631e-06 6.39774e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| specific ||| 0.000288534 0.000544 9.53154e-06 8.8e-06 2.718 ||| 0-0 ||| 17329 524574 +los ||| specifically the youngest may play ' . ||| 0.5 0.122289 1.90631e-06 6.7754e-23 2.718 ||| 0-1 ||| 2 524574 +los ||| specifically the youngest may play ' ||| 0.5 0.122289 1.90631e-06 2.23684e-20 2.718 ||| 0-1 ||| 2 524574 +los ||| specifically the youngest may play ||| 0.5 0.122289 1.90631e-06 6.51211e-18 2.718 ||| 0-1 ||| 2 524574 +los ||| specifically the youngest may ||| 0.5 0.122289 1.90631e-06 2.52407e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| specifically the youngest ||| 0.5 0.122289 1.90631e-06 3.36902e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| specifically the ||| 0.00395257 0.122289 1.90631e-06 2.40644e-05 2.718 ||| 0-1 ||| 253 524574 +los ||| specified ||| 0.0121212 0.0205811 1.52505e-05 1.65e-05 2.718 ||| 0-0 ||| 660 524574 +los ||| specifies the ||| 0.0222222 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 45 524574 +los ||| specify their ||| 0.2 0.0236713 1.90631e-06 1.64714e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| speeches , if ||| 0.5 0.0286426 1.90631e-06 6.68646e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| speeches , ||| 0.00520833 0.0286426 1.90631e-06 8.00199e-06 2.718 ||| 0-0 ||| 192 524574 +los ||| speeches made ||| 0.0123457 0.0286426 1.90631e-06 1.40561e-07 2.718 ||| 0-0 ||| 81 524574 +los ||| speeches ||| 0.00184417 0.0286426 7.62523e-06 6.71e-05 2.718 ||| 0-0 ||| 2169 524574 +los ||| speed ||| 0.00116959 0.0026738 3.81262e-06 6.8e-06 2.718 ||| 0-0 ||| 1710 524574 +los ||| speeds up the rate ||| 0.5 0.122289 1.90631e-06 1.02817e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| speeds up the ||| 0.0833333 0.122289 1.90631e-06 1.02407e-09 2.718 ||| 0-2 ||| 12 524574 +los ||| spend taxpayers ' ||| 1 0.220721 1.90631e-06 2.26936e-10 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| spend the ||| 0.018018 0.122289 3.81262e-06 1.29545e-05 2.718 ||| 0-1 ||| 111 524574 +los ||| spend their ||| 0.0192308 0.0236713 1.90631e-06 6.90885e-08 2.718 ||| 0-1 ||| 52 524574 +los ||| spending develops ||| 0.333333 0.0781615 1.90631e-06 1.4635e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| spending money ||| 0.0185185 0.0781615 1.90631e-06 4.78272e-08 2.718 ||| 0-0 ||| 54 524574 +los ||| spending the ||| 0.0416667 0.122289 3.81262e-06 9.09387e-06 2.718 ||| 0-1 ||| 48 524574 +los ||| spending ||| 0.00408521 0.0781615 2.66883e-05 0.0002927 2.718 ||| 0-0 ||| 3427 524574 +los ||| spent by the ||| 0.025641 0.122289 1.90631e-06 1.44357e-07 2.718 ||| 0-2 ||| 39 524574 +los ||| spent fuel and ||| 0.0140845 0.0898908 1.90631e-06 2.50588e-10 2.718 ||| 0-1 ||| 71 524574 +los ||| spent fuel ||| 0.00840336 0.0898908 1.90631e-06 2.00056e-08 2.718 ||| 0-1 ||| 119 524574 +los ||| spent on with the ||| 1 0.122289 1.90631e-06 1.17644e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| spent ||| 0.00146413 0.0020896 7.62523e-06 6.8e-06 2.718 ||| 0-0 ||| 2732 524574 +los ||| spin doctors ||| 0.0344828 0.309826 1.90631e-06 1.10258e-09 2.718 ||| 0-1 ||| 29 524574 +los ||| spirits up ||| 0.5 0.0887372 1.90631e-06 8.62856e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| spirits ||| 0.0118343 0.0887372 3.81262e-06 2.53e-05 2.718 ||| 0-0 ||| 169 524574 +los ||| sponsors to ||| 0.333333 0.210084 1.90631e-06 2.15925e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| sponsors ||| 0.0125 0.210084 1.90631e-06 2.43e-05 2.718 ||| 0-0 ||| 80 524574 +los ||| sport allowed ||| 0.5 0.0060258 1.90631e-06 3.30276e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| sport ||| 0.000443853 0.0060258 1.90631e-06 2.04e-05 2.718 ||| 0-0 ||| 2253 524574 +los ||| sporting ||| 0.00552486 0.0148515 5.71893e-06 8.8e-06 2.718 ||| 0-0 ||| 543 524574 +los ||| sports events ||| 0.0238095 0.0836397 1.90631e-06 6.43395e-09 2.718 ||| 0-0 ||| 42 524574 +los ||| sports stars ||| 0.0909091 0.0836397 1.90631e-06 1.239e-10 2.718 ||| 0-0 ||| 11 524574 +los ||| sports ||| 0.00951374 0.0836397 1.71568e-05 8.85e-05 2.718 ||| 0-0 ||| 946 524574 +los ||| sportsmen ||| 0.0697674 0.36875 5.71893e-06 5.74e-05 2.718 ||| 0-0 ||| 43 524574 +los ||| spots ||| 0.0588235 0.0869565 3.81262e-06 1.75e-05 2.718 ||| 0-0 ||| 34 524574 +los ||| spraying , ||| 0.2 0.028169 1.90631e-06 2.26584e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| spraying ||| 0.0192308 0.028169 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 52 524574 +los ||| spread ourselves ||| 1 0.0010091 1.90631e-06 6.0439e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| spread the ||| 0.0277778 0.122289 3.81262e-06 1.21824e-05 2.718 ||| 0-1 ||| 72 524574 +los ||| spread ||| 0.000554939 0.0010091 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1802 524574 +los ||| spreads ||| 0.023622 0.0806452 5.71893e-06 1.46e-05 2.718 ||| 0-0 ||| 127 524574 +los ||| squads ||| 0.0333333 0.113636 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| squeezed dry by the ||| 0.5 0.122289 1.90631e-06 6.48594e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| stabilisers ||| 0.012987 0.246032 1.90631e-06 3.01e-05 2.718 ||| 0-0 ||| 77 524574 +los ||| stable growth , the ||| 1 0.122289 1.90631e-06 3.27935e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| stacking and ||| 0.2 0.136364 1.90631e-06 3.63251e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| stacking ||| 0.111111 0.136364 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| staff other ||| 1 0.0154407 1.90631e-06 9.0685e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| staff resources for the conduct ||| 1 0.21958 1.90631e-06 5.53999e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| staff resources for the ||| 0.5 0.21958 1.90631e-06 9.21795e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| staff resources for ||| 0.5 0.21958 1.90631e-06 1.5015e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| staff resources ||| 0.0357143 0.21958 1.90631e-06 1.95362e-07 2.718 ||| 0-1 ||| 28 524574 +los ||| staff ||| 0.00217091 0.0154407 2.09694e-05 7e-05 2.718 ||| 0-0 ||| 5067 524574 +los ||| stage any ||| 1 0.0178119 1.90631e-06 1.38263e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| stages , the ||| 0.333333 0.122289 1.90631e-06 7.72441e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| staging ||| 0.0172414 0.0530973 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 58 524574 +los ||| stake , the ||| 0.1 0.122289 1.90631e-06 1.54488e-06 2.718 ||| 0-2 ||| 10 524574 +los ||| stakeholder ||| 0.00787402 0.0727273 1.90631e-06 1.94e-05 2.718 ||| 0-0 ||| 127 524574 +los ||| stakeholders ||| 0.00168919 0.0822632 3.81262e-06 0.0001993 2.718 ||| 0-0 ||| 1184 524574 +los ||| stand , such authors ||| 1 0.15724 1.90631e-06 5.49323e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| stand as a candidate ||| 0.0666667 0.0335599 1.90631e-06 1.14497e-11 2.718 ||| 0-3 ||| 15 524574 +los ||| stand in the way of ||| 0.010101 0.122289 1.90631e-06 1.77319e-10 2.718 ||| 0-2 ||| 99 524574 +los ||| stand in the way ||| 0.0130719 0.122289 3.81262e-06 3.2617e-09 2.718 ||| 0-2 ||| 153 524574 +los ||| stand in the ||| 0.0113636 0.122289 3.81262e-06 1.51313e-06 2.718 ||| 0-2 ||| 176 524574 +los ||| standard fitting ||| 0.125 0.0009401 1.90631e-06 2.088e-11 2.718 ||| 0-0 ||| 8 524574 +los ||| standard ||| 0.000637349 0.0009401 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 3138 524574 +los ||| standards , ||| 0.0018797 0.0495175 1.90631e-06 9.9363e-05 2.718 ||| 0-0 ||| 532 524574 +los ||| standards - ||| 0.0769231 0.0495175 1.90631e-06 3.14291e-06 2.718 ||| 0-0 ||| 13 524574 +los ||| standards . ||| 0.00254453 0.0495175 1.90631e-06 2.52376e-06 2.718 ||| 0-0 ||| 393 524574 +los ||| standards vary too much ||| 1 0.0495175 1.90631e-06 4.09745e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| standards vary too ||| 1 0.0495175 1.90631e-06 4.08235e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| standards vary ||| 0.166667 0.0495175 1.90631e-06 2.99952e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| standards ||| 0.00250759 0.0495175 7.24397e-05 0.0008332 2.718 ||| 0-0 ||| 15154 524574 +los ||| standing in the way ||| 0.02 0.122289 1.90631e-06 1.04699e-09 2.718 ||| 0-2 ||| 50 524574 +los ||| standing in the ||| 0.0126582 0.122289 1.90631e-06 4.85706e-07 2.718 ||| 0-2 ||| 79 524574 +los ||| standing ||| 0.00545852 0.0033223 9.53154e-06 4.9e-06 2.718 ||| 0-0 ||| 916 524574 +los ||| stands by its ||| 0.0714286 0.0211371 1.90631e-06 6.17643e-10 2.718 ||| 0-2 ||| 14 524574 +los ||| stands by the ||| 0.142857 0.122289 1.90631e-06 1.24089e-07 2.718 ||| 0-2 ||| 7 524574 +los ||| stands in the ||| 0.037037 0.122289 1.90631e-06 5.05906e-07 2.718 ||| 0-2 ||| 27 524574 +los ||| start by thanking the rapporteur , Mrs ||| 0.5 0.122289 1.90631e-06 1.53993e-21 2.718 ||| 0-3 ||| 2 524574 +los ||| start by thanking the rapporteur , ||| 0.0625 0.122289 1.90631e-06 1.64523e-17 2.718 ||| 0-3 ||| 16 524574 +los ||| start by thanking the rapporteur ||| 0.03125 0.122289 1.90631e-06 1.37959e-16 2.718 ||| 0-3 ||| 32 524574 +los ||| start by thanking the ||| 0.016129 0.122289 1.90631e-06 1.90815e-12 2.718 ||| 0-3 ||| 62 524574 +los ||| start discussing problems that are ||| 0.333333 0.106249 1.90631e-06 3.83752e-15 2.718 ||| 0-2 ||| 3 524574 +los ||| start discussing problems that ||| 0.333333 0.106249 1.90631e-06 2.52922e-13 2.718 ||| 0-2 ||| 3 524574 +los ||| start discussing problems ||| 0.333333 0.106249 1.90631e-06 1.50356e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| start of the ||| 0.0015674 0.122289 1.90631e-06 3.23912e-06 2.718 ||| 0-2 ||| 638 524574 +los ||| starter ||| 0.1 0.0714286 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| state of play with regard to the ||| 0.5 0.122289 1.90631e-06 5.87983e-16 2.718 ||| 0-6 ||| 2 524574 +los ||| state of the ||| 0.00204918 0.122289 1.90631e-06 5.89058e-06 2.718 ||| 0-2 ||| 488 524574 +los ||| state what we want ||| 0.333333 0.0061209 1.90631e-06 1.28523e-12 2.718 ||| 0-1 ||| 3 524574 +los ||| state what we ||| 0.25 0.0061209 1.90631e-06 2.74916e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| state what ||| 0.0232558 0.0061209 1.90631e-06 2.42168e-07 2.718 ||| 0-1 ||| 43 524574 +los ||| state ||| 6.35809e-05 6.22e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 15728 524574 +los ||| state-of-the-art ||| 0.00909091 0.0301205 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 110 524574 +los ||| statements of ||| 0.00473934 0.0019787 1.90631e-06 1.05843e-07 2.718 ||| 0-1 ||| 211 524574 +los ||| states , ||| 0.00137741 0.118291 1.90631e-06 0.000180409 2.718 ||| 0-0 ||| 726 524574 +los ||| states due ||| 1 0.118291 1.90631e-06 4.18138e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| states ||| 0.00184147 0.118291 4.38451e-05 0.0015128 2.718 ||| 0-0 ||| 12490 524574 +los ||| states ’ ||| 0.0526316 0.118291 1.90631e-06 2.63545e-06 2.718 ||| 0-0 ||| 19 524574 +los ||| stating the ||| 0.027027 0.122289 3.81262e-06 1.00376e-05 2.718 ||| 0-1 ||| 74 524574 +los ||| status of a candidate country , ||| 0.333333 0.0335599 1.90631e-06 1.60608e-15 2.718 ||| 0-3 ||| 3 524574 +los ||| status of a candidate country ||| 0.1 0.0335599 1.90631e-06 1.34677e-14 2.718 ||| 0-3 ||| 10 524574 +los ||| status of a candidate ||| 0.25 0.0335599 1.90631e-06 3.74206e-11 2.718 ||| 0-3 ||| 4 524574 +los ||| statutory ||| 0.00488998 0.0139165 3.81262e-06 6.8e-06 2.718 ||| 0-0 ||| 409 524574 +los ||| step and the ||| 0.333333 0.122289 1.90631e-06 7.92527e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| step the ||| 0.125 0.122289 1.90631e-06 6.32711e-05 2.718 ||| 0-1 ||| 8 524574 +los ||| step up our ||| 0.0107527 0.0248369 1.90631e-06 1.79644e-09 2.718 ||| 0-2 ||| 93 524574 +los ||| steps ||| 0.000191975 0.0024674 1.90631e-06 1.36e-05 2.718 ||| 0-0 ||| 5209 524574 +los ||| sticks in my mind ||| 1 0.0086409 1.90631e-06 5.20319e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| sticks in my ||| 1 0.0086409 1.90631e-06 2.06558e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| still available ||| 0.0294118 0.0092131 1.90631e-06 8.12703e-08 2.718 ||| 0-1 ||| 34 524574 +los ||| still behold the ||| 1 0.122289 1.90631e-06 2.26163e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| still go on ||| 0.333333 0.0006914 1.90631e-06 1.5716e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| still here in the ||| 0.5 0.122289 1.90631e-06 1.40234e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| still hopeful , but previous ||| 0.5 0.0133636 1.90631e-06 1.07399e-17 2.718 ||| 0-4 ||| 2 524574 +los ||| still lacks the courage ||| 0.333333 0.122289 1.90631e-06 3.05643e-15 2.718 ||| 0-2 ||| 3 524574 +los ||| still lacks the ||| 0.142857 0.122289 1.90631e-06 3.55399e-10 2.718 ||| 0-2 ||| 7 524574 +los ||| still look the ||| 0.5 0.122289 1.90631e-06 9.41807e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| still not been appointed ; the ||| 1 0.122289 1.90631e-06 1.27061e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| still own the ||| 1 0.122289 1.90631e-06 5.47734e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| still the ||| 0.0217391 0.122289 1.14379e-05 0.00032309 2.718 ||| 0-1 ||| 276 524574 +los ||| stimulate the ||| 0.00564972 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-1 ||| 177 524574 +los ||| stock of the ||| 0.0105263 0.122289 1.90631e-06 6.20306e-07 2.718 ||| 0-2 ||| 95 524574 +los ||| stock ||| 0.00414938 0.0136264 9.53154e-06 3.01e-05 2.718 ||| 0-0 ||| 1205 524574 +los ||| stocks , ||| 0.00684932 0.0432263 1.90631e-06 2.07503e-05 2.718 ||| 0-0 ||| 146 524574 +los ||| stocks of potentially contaminated animal meal ? ||| 1 0.173314 1.90631e-06 3.32358e-29 2.718 ||| 0-4 ||| 1 524574 +los ||| stocks of potentially contaminated animal meal ||| 1 0.173314 1.90631e-06 1.94475e-25 2.718 ||| 0-4 ||| 1 524574 +los ||| stocks of potentially contaminated animal ||| 1 0.173314 1.90631e-06 6.70605e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| stocks ||| 0.00129744 0.0432263 7.62523e-06 0.000174 2.718 ||| 0-0 ||| 3083 524574 +los ||| stop people ||| 0.04 0.0894672 1.90631e-06 5.44183e-07 2.718 ||| 0-1 ||| 25 524574 +los ||| stop the ||| 0.00364964 0.122289 3.81262e-06 2.96409e-05 2.718 ||| 0-1 ||| 548 524574 +los ||| stop ||| 0.000176835 0.0001562 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 5655 524574 +los ||| store records ||| 0.5 0.148855 1.90631e-06 1.71838e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| store such ||| 0.5 0.0016619 1.90631e-06 1.65949e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| stores ||| 0.00990099 0.0756303 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 101 524574 +los ||| stories ||| 0.00787402 0.0245098 3.81262e-06 9.7e-06 2.718 ||| 0-0 ||| 254 524574 +los ||| storm ||| 0.00277778 0.0107527 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 360 524574 +los ||| storms blowing across the ||| 1 0.122289 1.90631e-06 1.97169e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| strata ||| 0.0138889 0.155556 1.90631e-06 1.36e-05 2.718 ||| 0-0 ||| 72 524574 +los ||| strategies ||| 0.00034904 0.0003406 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2865 524574 +los ||| strengthen the position ||| 0.02 0.122289 1.90631e-06 2.74035e-09 2.718 ||| 0-1 ||| 50 524574 +los ||| strengthen the ||| 0.0014313 0.122289 5.71893e-06 8.32175e-06 2.718 ||| 0-1 ||| 2096 524574 +los ||| strengthening the ||| 0.00066313 0.122289 1.90631e-06 5.57643e-06 2.718 ||| 0-1 ||| 1508 524574 +los ||| strengthening ||| 0.000139082 0.0002152 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 7190 524574 +los ||| stress - the ||| 1 0.122289 1.90631e-06 5.76032e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| stressed that there ought to be regulations ||| 1 0.0587004 1.90631e-06 3.94692e-20 2.718 ||| 0-6 ||| 1 524574 +los ||| stressed that we are ||| 0.333333 0.0014565 1.90631e-06 2.31223e-12 2.718 ||| 0-2 ||| 3 524574 +los ||| stressed that we ||| 0.333333 0.0014565 1.90631e-06 1.52394e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| stressing the urgent need ||| 0.5 0.122289 1.90631e-06 4.86131e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| stressing the urgent ||| 1 0.122289 1.90631e-06 5.3019e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| stressing the ||| 0.00487805 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-1 ||| 205 524574 +los ||| strife ||| 0.0181818 0.0869565 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 55 524574 +los ||| strike a balance in the name ||| 1 0.122289 1.90631e-06 6.14653e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| strike a balance in the ||| 1 0.122289 1.90631e-06 7.03264e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| strike balances ||| 0.25 0.109091 1.90631e-06 1.8656e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| strong efforts ||| 0.2 0.101547 1.90631e-06 1.44126e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| strongly in favour of the ||| 0.0454545 0.122289 1.90631e-06 7.73463e-12 2.718 ||| 0-4 ||| 22 524574 +los ||| strongly the ||| 0.0294118 0.122289 1.90631e-06 2.0547e-05 2.718 ||| 0-1 ||| 34 524574 +los ||| struck the ||| 0.0140845 0.122289 1.90631e-06 1.09813e-05 2.718 ||| 0-1 ||| 71 524574 +los ||| structural assistance ||| 0.0111111 0.0085353 1.90631e-06 2.70368e-09 2.718 ||| 0-0 ||| 90 524574 +los ||| structural policy needs to be examined . ||| 0.5 0.0085353 1.90631e-06 3.64606e-22 2.718 ||| 0-0 ||| 2 524574 +los ||| structural policy needs to be examined ||| 0.5 0.0085353 1.90631e-06 1.20372e-19 2.718 ||| 0-0 ||| 2 524574 +los ||| structural policy needs to be ||| 0.5 0.0085353 1.90631e-06 6.83931e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| structural policy needs to ||| 0.5 0.0085353 1.90631e-06 3.77385e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| structural policy needs ||| 0.5 0.0085353 1.90631e-06 4.24705e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| structural policy ||| 0.00127065 0.0085353 1.90631e-06 2.14173e-08 2.718 ||| 0-0 ||| 787 524574 +los ||| structural problems instead ; the ||| 1 0.122289 1.90631e-06 5.54861e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| structural ||| 0.00118536 0.0085353 1.52505e-05 5.44e-05 2.718 ||| 0-0 ||| 6749 524574 +los ||| stuck with the ||| 0.111111 0.122289 1.90631e-06 2.77039e-08 2.718 ||| 0-2 ||| 9 524574 +los ||| student ||| 0.00626959 0.101093 3.81262e-06 7.19e-05 2.718 ||| 0-0 ||| 319 524574 +los ||| students on ||| 0.0909091 0.298145 1.90631e-06 4.3913e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| students ||| 0.00492611 0.298145 1.71568e-05 0.0006563 2.718 ||| 0-0 ||| 1827 524574 +los ||| studied the ||| 0.0166667 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-1 ||| 60 524574 +los ||| studied together , they are ||| 1 0.0072404 1.90631e-06 2.84672e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| studied together , they ||| 1 0.0072404 1.90631e-06 1.87621e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| studies , the supply ||| 0.5 0.122289 1.90631e-06 2.08124e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| studies , the ||| 0.0526316 0.122289 1.90631e-06 4.04125e-07 2.718 ||| 0-2 ||| 19 524574 +los ||| studies , ||| 0.00510204 0.13739 1.90631e-06 5.07906e-05 2.718 ||| 0-0 ||| 196 524574 +los ||| studies ||| 0.0017313 0.13739 9.53154e-06 0.0004259 2.718 ||| 0-0 ||| 2888 524574 +los ||| study the ||| 0.0105263 0.122289 3.81262e-06 1.44987e-05 2.718 ||| 0-1 ||| 190 524574 +los ||| sub-contractors ||| 0.0344828 0.215686 1.90631e-06 1.07e-05 2.718 ||| 0-0 ||| 29 524574 +los ||| subcontractors ' ||| 0.333333 0.10869 1.90631e-06 1.1915e-07 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| subcontractors , ||| 0.0588235 0.172932 1.90631e-06 2.67131e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| subcontractors ||| 0.0217391 0.172932 3.81262e-06 2.24e-05 2.718 ||| 0-0 ||| 92 524574 +los ||| subject to checks altogether ||| 0.333333 0.146389 1.90631e-06 3.84458e-13 2.718 ||| 0-2 ||| 3 524574 +los ||| subject to checks ||| 0.142857 0.146389 1.90631e-06 1.40827e-08 2.718 ||| 0-2 ||| 7 524574 +los ||| subject to criminal sanction ||| 1 0.0067797 1.90631e-06 3.02184e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| subject to criminal ||| 1 0.0067797 1.90631e-06 1.6788e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| subject to taxation in the ||| 1 0.122289 1.90631e-06 3.78745e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| subject to the ||| 0.00383142 0.122289 5.71893e-06 2.05752e-05 2.718 ||| 0-2 ||| 783 524574 +los ||| subjects - ||| 0.0833333 0.0428169 1.90631e-06 2.78758e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| subjects ||| 0.00362976 0.0428169 1.14379e-05 7.39e-05 2.718 ||| 0-0 ||| 1653 524574 +los ||| submit projects ||| 0.1 0.161094 1.90631e-06 3.97455e-08 2.718 ||| 0-1 ||| 10 524574 +los ||| submitted by ||| 0.00160772 0.0062464 1.90631e-06 8.34197e-08 2.718 ||| 0-1 ||| 622 524574 +los ||| submitting the appropriate ||| 1 0.122289 1.90631e-06 3.92615e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| submitting the ||| 0.0227273 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-1 ||| 44 524574 +los ||| subscribers have ||| 0.333333 0.303797 1.90631e-06 2.78663e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| subscribers ||| 0.0294118 0.303797 1.90631e-06 2.33e-05 2.718 ||| 0-0 ||| 34 524574 +los ||| subsequent cases ||| 1 0.136512 1.90631e-06 2.62991e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| subsequent offences relating ||| 0.5 0.0991597 1.90631e-06 2.06054e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| subsequent offences ||| 0.5 0.0991597 1.90631e-06 1.81226e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| subsequent ||| 0.0136054 0.0398818 3.43136e-05 5.25e-05 2.718 ||| 0-0 ||| 1323 524574 +los ||| subsidies ||| 0.000497018 0.0365556 3.81262e-06 0.000175 2.718 ||| 0-0 ||| 4024 524574 +los ||| subsidizing the ||| 0.142857 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| substance of the ||| 0.00268097 0.122289 1.90631e-06 6.87934e-07 2.718 ||| 0-2 ||| 373 524574 +los ||| substances by ||| 0.0769231 0.0062464 1.90631e-06 3.49877e-08 2.718 ||| 0-1 ||| 13 524574 +los ||| substandard ||| 0.0238095 0.0786517 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 42 524574 +los ||| substantial efforts made since ||| 1 0.101547 1.90631e-06 1.44288e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| substantial efforts made ||| 0.5 0.101547 1.90631e-06 1.06328e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| substantial efforts ||| 0.0357143 0.101547 1.90631e-06 5.07582e-08 2.718 ||| 0-1 ||| 28 524574 +los ||| substitutes to ||| 0.5 0.0670732 1.90631e-06 9.50783e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| substitutes ||| 0.00793651 0.0670732 1.90631e-06 1.07e-05 2.718 ||| 0-0 ||| 126 524574 +los ||| success the ||| 0.111111 0.122289 1.90631e-06 2.548e-05 2.718 ||| 0-1 ||| 9 524574 +los ||| successes ||| 0.00273598 0.0959716 3.81262e-06 7.88e-05 2.718 ||| 0-0 ||| 731 524574 +los ||| successfully the ||| 0.1 0.122289 1.90631e-06 1.35979e-05 2.718 ||| 0-1 ||| 10 524574 +los ||| successive occasions ||| 1 0.0963687 1.90631e-06 1.78486e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| successive ||| 0.00361011 0.0963687 3.81262e-06 6.71e-05 2.718 ||| 0-0 ||| 554 524574 +los ||| such , the ||| 0.0140845 0.122289 1.90631e-06 0.000105835 2.718 ||| 0-2 ||| 71 524574 +los ||| such a course of ||| 0.0555556 0.0019787 1.90631e-06 3.82706e-10 2.718 ||| 0-3 ||| 18 524574 +los ||| such a high number ||| 0.5 0.0016619 1.90631e-06 3.59868e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| such a high ||| 0.04 0.0016619 1.90631e-06 7.27301e-10 2.718 ||| 0-0 ||| 25 524574 +los ||| such a ||| 0.000408386 0.0016619 5.71893e-06 4.87141e-06 2.718 ||| 0-0 ||| 7346 524574 +los ||| such agreements ||| 0.00628931 0.199336 1.90631e-06 6.52324e-06 2.718 ||| 0-1 ||| 159 524574 +los ||| such an approach would be the availability ||| 0.5 0.122289 1.90631e-06 6.25337e-19 2.718 ||| 0-5 ||| 2 524574 +los ||| such an approach would be the ||| 0.5 0.122289 1.90631e-06 9.19613e-14 2.718 ||| 0-5 ||| 2 524574 +los ||| such an ||| 0.000557103 0.0016619 1.90631e-06 4.88473e-07 2.718 ||| 0-0 ||| 1795 524574 +los ||| such are the ||| 0.0526316 0.122289 1.90631e-06 1.34653e-05 2.718 ||| 0-2 ||| 19 524574 +los ||| such arrests ||| 0.5 0.0400729 1.90631e-06 4.42745e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| such as the EU ||| 0.0263158 0.122289 1.90631e-06 4.48095e-09 2.718 ||| 0-2 ||| 38 524574 +los ||| such as the European Parliament ||| 0.0526316 0.122289 1.90631e-06 1.73822e-11 2.718 ||| 0-2 ||| 19 524574 +los ||| such as the European ||| 0.0384615 0.122289 1.90631e-06 3.02826e-08 2.718 ||| 0-2 ||| 26 524574 +los ||| such as the ||| 0.00112794 0.122289 1.33442e-05 9.05608e-06 2.718 ||| 0-2 ||| 6206 524574 +los ||| such as those ||| 0.0032967 0.284705 5.71893e-06 3.52518e-07 2.718 ||| 0-2 ||| 910 524574 +los ||| such as ||| 7.45462e-05 0.0016619 3.81262e-06 1.12146e-06 2.718 ||| 0-0 ||| 26829 524574 +los ||| such authors ||| 1 0.15724 1.90631e-06 2.79508e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| such big ||| 0.166667 0.0014341 1.90631e-06 5.3851e-10 2.718 ||| 0-0 0-1 ||| 6 524574 +los ||| such changes ||| 0.015625 0.0936843 1.90631e-06 1.8827e-06 2.718 ||| 0-1 ||| 64 524574 +los ||| such coffee to ||| 1 0.0016619 1.90631e-06 2.44138e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| such coffee ||| 1 0.0016619 1.90631e-06 2.7475e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| such countries ||| 0.00833333 0.0957208 1.90631e-06 1.72468e-05 2.718 ||| 0-1 ||| 120 524574 +los ||| such country is the ||| 1 0.122289 1.90631e-06 1.00103e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| such devices ||| 0.0714286 0.126543 1.90631e-06 1.64891e-07 2.718 ||| 0-1 ||| 14 524574 +los ||| such difficult times ||| 0.25 0.0314168 1.90631e-06 6.47019e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| such events ||| 0.025974 0.140095 3.81262e-06 2.24476e-06 2.718 ||| 0-1 ||| 77 524574 +los ||| such ingredients ||| 0.5 0.140684 1.90631e-06 2.23234e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| such parliaments ||| 0.5 0.269224 1.90631e-06 2.95087e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| such products ||| 0.00729927 0.245259 1.90631e-06 1.03532e-05 2.718 ||| 0-1 ||| 137 524574 +los ||| such projects ||| 0.0103093 0.161094 1.90631e-06 3.93443e-06 2.718 ||| 0-1 ||| 97 524574 +los ||| such response ||| 0.333333 0.0016619 1.90631e-06 1.099e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| such rights are ||| 0.142857 0.0030851 1.90631e-06 4.79024e-09 2.718 ||| 0-1 ||| 7 524574 +los ||| such rights ||| 0.0166667 0.0030851 1.90631e-06 3.15714e-07 2.718 ||| 0-1 ||| 60 524574 +los ||| such situations in countries like the ||| 1 0.122289 1.90631e-06 4.38069e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| such standards ||| 0.025641 0.0495175 1.90631e-06 1.72381e-06 2.718 ||| 0-1 ||| 39 524574 +los ||| such systems ||| 0.025641 0.213574 1.90631e-06 6.72248e-06 2.718 ||| 0-1 ||| 39 524574 +los ||| such that the ||| 0.0196078 0.122289 1.90631e-06 1.49286e-05 2.718 ||| 0-2 ||| 51 524574 +los ||| such thing as a ||| 0.0322581 0.0016619 1.90631e-06 1.81391e-11 2.718 ||| 0-0 ||| 31 524574 +los ||| such thing as ||| 0.0133333 0.0016619 1.90631e-06 4.09222e-10 2.718 ||| 0-0 ||| 75 524574 +los ||| such thing ||| 0.00943396 0.0016619 1.90631e-06 4.01025e-08 2.718 ||| 0-0 ||| 106 524574 +los ||| such things as ||| 0.00549451 0.0016619 1.90631e-06 4.60922e-10 2.718 ||| 0-0 ||| 182 524574 +los ||| such things ||| 0.00775194 0.0016619 3.81262e-06 4.51689e-08 2.718 ||| 0-0 ||| 258 524574 +los ||| such time as the ||| 0.142857 0.122289 1.90631e-06 1.48674e-08 2.718 ||| 0-3 ||| 7 524574 +los ||| such vessels ||| 0.0909091 0.261943 1.90631e-06 1.64333e-06 2.718 ||| 0-1 ||| 11 524574 +los ||| such ||| 0.00218943 0.0016619 0.000154411 0.0001099 2.718 ||| 0-0 ||| 36996 524574 +los ||| suffer from the ||| 0.0153846 0.122289 1.90631e-06 2.45922e-08 2.718 ||| 0-2 ||| 65 524574 +los ||| suffer the effects ||| 0.125 0.122289 1.90631e-06 8.29207e-10 2.718 ||| 0-1 ||| 8 524574 +los ||| suffer the ||| 0.0137931 0.122289 3.81262e-06 1.52708e-05 2.718 ||| 0-1 ||| 145 524574 +los ||| suffered by ||| 0.00249377 0.0062464 1.90631e-06 5.53972e-08 2.718 ||| 0-1 ||| 401 524574 +los ||| sufferers ||| 0.00900901 0.224138 3.81262e-06 7.58e-05 2.718 ||| 0-0 ||| 222 524574 +los ||| sufficient funds ||| 0.010101 0.220459 1.90631e-06 1.81871e-07 2.718 ||| 0-1 ||| 99 524574 +los ||| sufficient resources to ||| 0.0142857 0.21958 1.90631e-06 2.09348e-08 2.718 ||| 0-1 ||| 70 524574 +los ||| sufficient resources ||| 0.0041841 0.21958 1.90631e-06 2.35598e-07 2.718 ||| 0-1 ||| 239 524574 +los ||| sugar ||| 0.000541418 0.0007231 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1847 524574 +los ||| suggestion to our ||| 0.5 0.0248369 1.90631e-06 5.26754e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| suicide ||| 0.00502513 0.025974 3.81262e-06 1.36e-05 2.718 ||| 0-0 ||| 398 524574 +los ||| suit the ||| 0.0163934 0.122289 1.90631e-06 4.33246e-06 2.718 ||| 0-1 ||| 61 524574 +los ||| suitable ||| 0.00227144 0.0048103 7.62523e-06 8.8e-06 2.718 ||| 0-0 ||| 1761 524574 +los ||| super green rooms ||| 0.5 0.0142857 1.90631e-06 1.13876e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| super green rooms ’ ||| 0.5 0.0142857 1.90631e-06 1.98383e-19 2.718 ||| 0-2 ||| 2 524574 +los ||| supermarket ||| 0.00584795 0.0810811 1.90631e-06 1.46e-05 2.718 ||| 0-0 ||| 171 524574 +los ||| supplementing the ||| 0.0107527 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 93 524574 +los ||| supplied with the ||| 0.2 0.122289 1.90631e-06 3.45613e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| suppliers ' ||| 0.111111 0.0444479 1.90631e-06 1.70214e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| suppliers ||| 0.00794552 0.26454 1.33442e-05 0.0002742 2.718 ||| 0-0 ||| 881 524574 +los ||| supplies ||| 0.00497512 0.147627 1.71568e-05 0.000245 2.718 ||| 0-0 ||| 1809 524574 +los ||| supply the nation 's ||| 0.5 0.0349814 1.90631e-06 2.71211e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| supply the ||| 0.0107527 0.122289 1.90631e-06 2.20912e-05 2.718 ||| 0-1 ||| 93 524574 +los ||| support for the ||| 0.000444444 0.122289 1.90631e-06 1.12719e-06 2.718 ||| 0-2 ||| 2250 524574 +los ||| support the proposal which the Commission presented ||| 0.5 0.122289 1.90631e-06 7.03003e-19 2.718 ||| 0-1 ||| 2 524574 +los ||| support the proposal which the Commission ||| 0.5 0.122289 1.90631e-06 8.92135e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| support the proposal which the ||| 0.5 0.122289 1.90631e-06 1.52737e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| support the proposal which ||| 0.25 0.122289 1.90631e-06 2.4879e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| support the proposal ||| 0.00420168 0.122289 1.90631e-06 2.9288e-08 2.718 ||| 0-1 ||| 238 524574 +los ||| support the ||| 0.000940586 0.122289 1.14379e-05 0.00014666 2.718 ||| 0-1 ||| 6379 524574 +los ||| support – the ||| 1 0.122289 1.90631e-06 5.76374e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| supporters . ||| 0.03125 0.171558 1.90631e-06 4.47686e-07 2.718 ||| 0-0 ||| 32 524574 +los ||| supporters alone ||| 0.5 0.171558 1.90631e-06 1.51643e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| supporters ||| 0.00737463 0.171558 9.53154e-06 0.0001478 2.718 ||| 0-0 ||| 678 524574 +los ||| supporting the ||| 0.00332447 0.122289 9.53154e-06 1.37266e-05 2.718 ||| 0-1 ||| 1504 524574 +los ||| supports the ||| 0.000847458 0.122289 1.90631e-06 6.47724e-06 2.718 ||| 0-1 ||| 1180 524574 +los ||| sure - necessary ||| 1 0.0003466 1.90631e-06 5.78248e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| sure that in the short term my ||| 1 0.122289 1.90631e-06 2.67089e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| sure that in the short term ||| 1 0.122289 1.90631e-06 4.15315e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| sure that in the short ||| 1 0.122289 1.90631e-06 3.7963e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| sure that in the ||| 0.111111 0.122289 1.90631e-06 2.6905e-08 2.718 ||| 0-3 ||| 9 524574 +los ||| sure they can tell ||| 0.2 0.0072404 1.90631e-06 4.16501e-14 2.718 ||| 0-1 ||| 5 524574 +los ||| sure they can ||| 0.166667 0.0072404 1.90631e-06 4.24136e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| sure they ||| 0.0238095 0.0072404 1.90631e-06 1.426e-07 2.718 ||| 0-1 ||| 42 524574 +los ||| surety agreements ||| 0.5 0.199336 1.90631e-06 1.2612e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| surfactants ||| 0.05 0.361111 1.90631e-06 1.26e-05 2.718 ||| 0-0 ||| 20 524574 +los ||| surgeons ||| 0.0769231 0.16 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 13 524574 +los ||| surplus ||| 0.00511509 0.0322165 7.62523e-06 2.43e-05 2.718 ||| 0-0 ||| 782 524574 +los ||| surpluses ||| 0.00519481 0.189815 3.81262e-06 7.97e-05 2.718 ||| 0-0 ||| 385 524574 +los ||| surprising that the ||| 0.0172414 0.122289 1.90631e-06 3.60787e-08 2.718 ||| 0-2 ||| 58 524574 +los ||| surveyors ||| 0.111111 0.25 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| surveys ||| 0.00301205 0.0565217 1.90631e-06 2.53e-05 2.718 ||| 0-0 ||| 332 524574 +los ||| survivors ||| 0.0141844 0.166667 3.81262e-06 2.63e-05 2.718 ||| 0-0 ||| 141 524574 +los ||| suspects in ||| 0.0909091 0.288136 1.90631e-06 2.4765e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| suspects ||| 0.00307692 0.288136 1.90631e-06 0.0001157 2.718 ||| 0-0 ||| 325 524574 +los ||| suspending the release ||| 0.5 0.122289 1.90631e-06 6.81612e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| suspending the ||| 0.0123457 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 81 524574 +los ||| suspension of the ||| 0.0060241 0.062134 1.90631e-06 5.67526e-09 2.718 ||| 0-1 0-2 ||| 166 524574 +los ||| sustain the ||| 0.0103093 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-1 ||| 97 524574 +los ||| sweep them under the ||| 1 0.122289 1.90631e-06 1.48625e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| swindles ||| 0.1 0.0714286 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| symbols , ||| 0.0333333 0.177474 1.90631e-06 1.20567e-05 2.718 ||| 0-0 ||| 30 524574 +los ||| symbols ||| 0.00203666 0.177474 1.90631e-06 0.0001011 2.718 ||| 0-0 ||| 491 524574 +los ||| symptoms ||| 0.00495049 0.116667 1.90631e-06 2.72e-05 2.718 ||| 0-0 ||| 202 524574 +los ||| synergy between the production and distribution sectors ||| 0.1 0.122289 1.90631e-06 1.74933e-25 2.718 ||| 0-2 ||| 10 524574 +los ||| synergy between the production and distribution ||| 0.1 0.122289 1.90631e-06 3.39676e-21 2.718 ||| 0-2 ||| 10 524574 +los ||| synergy between the production and ||| 0.1 0.122289 1.90631e-06 1.65696e-16 2.718 ||| 0-2 ||| 10 524574 +los ||| synergy between the production ||| 0.1 0.122289 1.90631e-06 1.32282e-14 2.718 ||| 0-2 ||| 10 524574 +los ||| synergy between the ||| 0.02 0.122289 1.90631e-06 1.58422e-10 2.718 ||| 0-2 ||| 50 524574 +los ||| system , the ||| 0.0217391 0.122289 1.90631e-06 1.42671e-05 2.718 ||| 0-2 ||| 46 524574 +los ||| systems , and the ||| 0.333333 0.213574 1.90631e-06 2.97978e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| systems , and ||| 0.047619 0.213574 1.90631e-06 4.85371e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| systems , ||| 0.00550964 0.213574 3.81262e-06 0.000387494 2.718 ||| 0-0 ||| 363 524574 +los ||| systems - ||| 0.047619 0.213574 1.90631e-06 1.22567e-05 2.718 ||| 0-0 ||| 21 524574 +los ||| systems ever invented ||| 0.5 0.213574 1.90631e-06 1.09898e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| systems ever ||| 0.5 0.213574 1.90631e-06 6.10543e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| systems is ||| 0.0526316 0.213574 1.90631e-06 0.000101837 2.718 ||| 0-0 ||| 19 524574 +los ||| systems when conducting ||| 0.5 0.213574 1.90631e-06 1.98168e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| systems when ||| 0.333333 0.213574 1.90631e-06 1.62433e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| systems ||| 0.00398083 0.213574 9.34091e-05 0.0032493 2.718 ||| 0-0 ||| 12309 524574 +los ||| tabled by the Group of the Party ||| 0.0769231 0.122289 1.90631e-06 3.01238e-17 2.718 ||| 0-5 ||| 13 524574 +los ||| tabled by the Group of the ||| 0.0126582 0.122289 1.90631e-06 1.9976e-13 2.718 ||| 0-5 ||| 79 524574 +los ||| tablets ||| 0.0151515 0.037037 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 66 524574 +los ||| tabling the amendments know ||| 0.333333 0.122289 1.90631e-06 6.41757e-14 2.718 ||| 0-1 ||| 3 524574 +los ||| tabling the amendments ||| 0.142857 0.122289 1.90631e-06 2.48743e-10 2.718 ||| 0-1 ||| 7 524574 +los ||| tabling the ||| 0.0285714 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-1 ||| 35 524574 +los ||| tachograph ||| 0.00769231 0.030303 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 130 524574 +los ||| tackle the problem of ||| 0.012987 0.122289 1.90631e-06 1.9038e-10 2.718 ||| 0-1 ||| 77 524574 +los ||| tackle the problem ||| 0.0134228 0.122289 3.81262e-06 3.50194e-09 2.718 ||| 0-1 ||| 149 524574 +los ||| tackle the ||| 0.00636943 0.122289 1.14379e-05 1.55711e-05 2.718 ||| 0-1 ||| 942 524574 +los ||| tackle those ||| 0.0909091 0.284705 1.90631e-06 6.06123e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| tackling the ||| 0.00728597 0.122289 7.62523e-06 8.7936e-06 2.718 ||| 0-1 ||| 549 524574 +los ||| tactic of ||| 0.04 0.0019787 1.90631e-06 3.63836e-09 2.718 ||| 0-1 ||| 25 524574 +los ||| tactics generated by the ||| 1 0.122289 1.90631e-06 1.8271e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| take EUR ||| 0.5 0.0343255 1.90631e-06 9.18827e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| take account of the fact ||| 0.028169 0.122289 3.81262e-06 3.16193e-11 2.718 ||| 0-3 ||| 71 524574 +los ||| take account of the ||| 0.00815851 0.122289 1.33442e-05 1.07941e-08 2.718 ||| 0-3 ||| 858 524574 +los ||| take account of ||| 0.00122775 0.0019787 3.81262e-06 1.53101e-09 2.718 ||| 0-2 ||| 1629 524574 +los ||| take care of ||| 0.00613497 0.0149101 1.90631e-06 8.68258e-09 2.718 ||| 0-1 ||| 163 524574 +los ||| take care ||| 0.00211416 0.0149101 1.90631e-06 1.59712e-07 2.718 ||| 0-1 ||| 473 524574 +los ||| take into account the ||| 0.00283286 0.122289 3.81262e-06 2.03855e-10 2.718 ||| 0-3 ||| 706 524574 +los ||| take into consideration the ||| 0.00632911 0.122289 1.90631e-06 7.65784e-11 2.718 ||| 0-3 ||| 158 524574 +los ||| take of the ||| 0.0625 0.122289 1.90631e-06 3.75448e-05 2.718 ||| 0-2 ||| 16 524574 +los ||| take payment ||| 1 0.0504821 1.90631e-06 2.78691e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| take place as regards the ||| 1 0.122289 1.90631e-06 1.48488e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| take place in the context ||| 0.0769231 0.122289 1.90631e-06 2.98561e-12 2.718 ||| 0-3 ||| 13 524574 +los ||| take place in the ||| 0.00990099 0.122289 1.90631e-06 2.22475e-08 2.718 ||| 0-3 ||| 101 524574 +los ||| take the level of ||| 0.5 0.122289 1.90631e-06 3.21159e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| take the level ||| 0.5 0.122289 1.90631e-06 5.90756e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| take the liberty ||| 0.0178571 0.122289 1.90631e-06 6.97526e-09 2.718 ||| 0-1 ||| 56 524574 +los ||| take the opportunity ||| 0.00462963 0.122289 1.90631e-06 1.24242e-07 2.718 ||| 0-1 ||| 216 524574 +los ||| take the very ||| 0.2 0.122289 1.90631e-06 2.40301e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| take the view that the funding should ||| 1 0.122289 1.90631e-06 1.52152e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| take the view that the funding ||| 1 0.122289 1.90631e-06 3.43381e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| take the view that the ||| 0.0227273 0.122289 1.90631e-06 6.44241e-10 2.718 ||| 0-4 ||| 44 524574 +los ||| take the way ||| 1 0.122289 1.90631e-06 1.4887e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| take the ||| 0.00764439 0.122289 5.14703e-05 0.00069062 2.718 ||| 0-1 ||| 3532 524574 +los ||| take them on ||| 0.0588235 0.038218 1.90631e-06 2.16808e-08 2.718 ||| 0-1 ||| 17 524574 +los ||| take them ||| 0.0165746 0.038218 5.71893e-06 3.24029e-06 2.718 ||| 0-1 ||| 181 524574 +los ||| take these decisions ||| 0.0714286 0.0240362 1.90631e-06 2.9943e-10 2.718 ||| 0-1 ||| 14 524574 +los ||| take these ||| 0.0153846 0.0240362 3.81262e-06 3.92438e-06 2.718 ||| 0-1 ||| 130 524574 +los ||| take those ||| 0.0232558 0.284705 1.90631e-06 2.68831e-05 2.718 ||| 0-1 ||| 43 524574 +los ||| take up the ||| 0.00416667 0.122289 1.90631e-06 2.35536e-06 2.718 ||| 0-2 ||| 240 524574 +los ||| take you through ||| 0.5 5.3e-05 1.90631e-06 9.87659e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| taken , the ||| 0.0357143 0.122289 1.90631e-06 4.66278e-05 2.718 ||| 0-2 ||| 28 524574 +los ||| taken down the ||| 0.5 0.122289 1.90631e-06 2.72953e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| taken following the ||| 0.0555556 0.122289 1.90631e-06 4.9969e-08 2.718 ||| 0-2 ||| 18 524574 +los ||| taken from children under the ||| 1 0.122289 1.90631e-06 1.68311e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| taken from the ||| 0.0153846 0.122289 1.90631e-06 6.29656e-07 2.718 ||| 0-2 ||| 65 524574 +los ||| taken of the ||| 0.0285714 0.122289 3.81262e-06 2.1256e-05 2.718 ||| 0-2 ||| 70 524574 +los ||| taken of this discussion ||| 0.25 0.0019787 1.90631e-06 1.6831e-12 2.718 ||| 0-1 ||| 4 524574 +los ||| taken of this ||| 0.0833333 0.0019787 1.90631e-06 1.94803e-08 2.718 ||| 0-1 ||| 12 524574 +los ||| taken of ||| 0.00416667 0.0019787 1.90631e-06 3.01488e-06 2.718 ||| 0-1 ||| 240 524574 +los ||| taken off air ||| 1 0.0198837 1.90631e-06 6.16941e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| taken recently in the ||| 0.333333 0.122289 1.90631e-06 5.69094e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| taken risks ||| 0.5 0.125803 1.90631e-06 6.42516e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| taken the ||| 0.00293255 0.122289 3.81262e-06 0.000390994 2.718 ||| 0-1 ||| 682 524574 +los ||| taken their seats ||| 0.0333333 0.0935673 1.90631e-06 8.21972e-11 2.718 ||| 0-2 ||| 30 524574 +los ||| taken their ||| 0.03125 0.0236713 1.90631e-06 2.08524e-06 2.718 ||| 0-1 ||| 32 524574 +los ||| taken together , are the ||| 0.333333 0.122289 1.90631e-06 4.24907e-10 2.718 ||| 0-4 ||| 3 524574 +los ||| taken up by the ||| 0.0119048 0.122289 1.90631e-06 7.00092e-09 2.718 ||| 0-3 ||| 84 524574 +los ||| taken your last ||| 1 0.0096341 1.90631e-06 6.13539e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| taken your ||| 0.333333 0.0096341 1.90631e-06 2.80924e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| takes account of ||| 0.0025 0.0019787 1.90631e-06 1.22861e-10 2.718 ||| 0-2 ||| 400 524574 +los ||| taking forward the ||| 0.0588235 0.122289 1.90631e-06 1.01435e-07 2.718 ||| 0-2 ||| 17 524574 +los ||| taking into account in this context the ||| 1 0.122289 1.90631e-06 9.98775e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| taking into account the ||| 0.00166667 0.122289 1.90631e-06 5.38125e-11 2.718 ||| 0-3 ||| 600 524574 +los ||| taking stock of the ||| 0.0769231 0.122289 1.90631e-06 2.6363e-10 2.718 ||| 0-3 ||| 13 524574 +los ||| taking the floor ||| 0.0136986 0.122289 1.90631e-06 7.74802e-09 2.718 ||| 0-1 ||| 73 524574 +los ||| taking the risk ||| 0.111111 0.122289 1.90631e-06 2.13299e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| taking the ||| 0.00558036 0.122289 9.53154e-06 0.000182306 2.718 ||| 0-1 ||| 896 524574 +los ||| taking up farming ||| 0.333333 0.0110426 1.90631e-06 6.05875e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| taking up the ||| 0.0135135 0.122289 1.90631e-06 6.21756e-07 2.718 ||| 0-2 ||| 74 524574 +los ||| talk about the ||| 0.0018315 0.122289 1.90631e-06 4.87158e-08 2.718 ||| 0-2 ||| 546 524574 +los ||| talk of removing the vertebral column for ||| 1 0.122289 1.90631e-06 2.90144e-26 2.718 ||| 0-3 ||| 1 524574 +los ||| talk of removing the vertebral column ||| 1 0.122289 1.90631e-06 3.77512e-24 2.718 ||| 0-3 ||| 1 524574 +los ||| talk of removing the vertebral ||| 1 0.122289 1.90631e-06 5.39303e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| talk of removing the ||| 1 0.122289 1.90631e-06 1.34826e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| talk our ||| 0.5 0.0248369 1.90631e-06 2.86759e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| talking about the development ||| 0.166667 0.122289 1.90631e-06 1.09179e-11 2.718 ||| 0-2 ||| 6 524574 +los ||| talking about the ||| 0.00152207 0.122289 1.90631e-06 6.637e-08 2.718 ||| 0-2 ||| 657 524574 +los ||| talking about ||| 0.00025208 0.0003337 1.90631e-06 3.7196e-09 2.718 ||| 0-1 ||| 3967 524574 +los ||| talks begin on the ||| 0.5 0.122289 1.90631e-06 4.45361e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| talks ||| 0.000282087 0.0030172 1.90631e-06 1.36e-05 2.718 ||| 0-0 ||| 3545 524574 +los ||| tame those ||| 1 0.284705 1.90631e-06 1.16883e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| tankers , ||| 0.0588235 0.262332 1.90631e-06 1.35712e-05 2.718 ||| 0-0 ||| 17 524574 +los ||| tankers ||| 0.0189573 0.262332 7.62523e-06 0.0001138 2.718 ||| 0-0 ||| 211 524574 +los ||| tanks ||| 0.00395257 0.174918 1.90631e-06 5.15e-05 2.718 ||| 0-0 ||| 253 524574 +los ||| target audiences ||| 0.125 0.0545455 1.90631e-06 1.0962e-10 2.718 ||| 0-1 ||| 8 524574 +los ||| target the ||| 0.0217391 0.122289 1.90631e-06 1.62145e-05 2.718 ||| 0-1 ||| 46 524574 +los ||| target ||| 0.00112423 0.0026247 7.62523e-06 8.8e-06 2.718 ||| 0-0 ||| 3558 524574 +los ||| targeted application , of the ||| 1 0.122289 1.90631e-06 4.75127e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| targeted ||| 0.00064433 0.003413 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 1552 524574 +los ||| targeting ||| 0.00544959 0.0070175 3.81262e-06 3.9e-06 2.718 ||| 0-0 ||| 367 524574 +los ||| targets for ||| 0.00420168 0.0015353 1.90631e-06 2.09868e-08 2.718 ||| 0-1 ||| 238 524574 +los ||| targets is what I learnt ||| 1 0.104037 1.90631e-06 1.52716e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| targets is what I ||| 1 0.104037 1.90631e-06 1.51204e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| targets is what ||| 1 0.104037 1.90631e-06 2.13761e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| targets is ||| 0.1 0.104037 1.90631e-06 1.52349e-05 2.718 ||| 0-0 ||| 10 524574 +los ||| targets ||| 0.00263852 0.104037 2.4782e-05 0.0004861 2.718 ||| 0-0 ||| 4927 524574 +los ||| tariff ||| 0.0027027 0.0340376 3.81262e-06 2.82e-05 2.718 ||| 0-0 ||| 740 524574 +los ||| tariffs ||| 0.00234192 0.181736 3.81262e-06 0.0001954 2.718 ||| 0-0 ||| 854 524574 +los ||| tax , ||| 0.00483092 0.0611419 1.90631e-06 8.05804e-05 2.718 ||| 0-0 ||| 207 524574 +los ||| tax are ||| 0.333333 0.0611419 1.90631e-06 1.02522e-05 2.718 ||| 0-0 ||| 3 524574 +los ||| tax increases ||| 0.03125 0.0695532 1.90631e-06 9.29244e-09 2.718 ||| 0-1 ||| 32 524574 +los ||| tax revenues ||| 0.00833333 0.240298 1.90631e-06 9.90645e-09 2.718 ||| 0-1 ||| 120 524574 +los ||| tax ||| 0.0294377 0.0611419 0.000571893 0.0006757 2.718 ||| 0-0 ||| 10191 524574 +los ||| tax-payers ||| 0.0384615 0.367089 1.90631e-06 2.82e-05 2.718 ||| 0-0 ||| 26 524574 +los ||| taxation , which would give a concrete ||| 1 0.058762 1.90631e-06 1.36557e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| taxation , which would give a ||| 1 0.058762 1.90631e-06 4.36285e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| taxation , which would give ||| 1 0.058762 1.90631e-06 9.84269e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| taxation , which would ||| 1 0.058762 1.90631e-06 1.62421e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| taxation , which ||| 0.0526316 0.058762 1.90631e-06 2.76757e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| taxation , ||| 0.00253807 0.058762 1.90631e-06 3.25804e-05 2.718 ||| 0-0 ||| 394 524574 +los ||| taxation in the ||| 0.030303 0.122289 1.90631e-06 7.89617e-08 2.718 ||| 0-2 ||| 33 524574 +los ||| taxation ||| 0.00245969 0.058762 1.71568e-05 0.0002732 2.718 ||| 0-0 ||| 3659 524574 +los ||| taxes that were ||| 0.5 0.232323 1.90631e-06 2.4933e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| taxes that ||| 0.0416667 0.232323 1.90631e-06 1.39182e-05 2.718 ||| 0-0 ||| 24 524574 +los ||| taxes ||| 0.00307587 0.232323 1.71568e-05 0.0008274 2.718 ||| 0-0 ||| 2926 524574 +los ||| taxpayers ' ||| 0.00434783 0.220721 3.81262e-06 7.51443e-06 2.718 ||| 0-0 0-1 ||| 460 524574 +los ||| taxpayers ||| 0.00471698 0.396994 1.14379e-05 0.0014127 2.718 ||| 0-0 ||| 1272 524574 +los ||| teachers are also ||| 0.5 0.261324 1.90631e-06 2.23445e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| teachers are ||| 0.047619 0.261324 1.90631e-06 4.42588e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| teachers ||| 0.00434783 0.261324 7.62523e-06 0.0002917 2.718 ||| 0-0 ||| 920 524574 +los ||| teaching materials ||| 0.0909091 0.0588 1.90631e-06 5.1444e-10 2.718 ||| 0-1 ||| 11 524574 +los ||| teams ||| 0.00133333 0.153417 1.90631e-06 0.0001069 2.718 ||| 0-0 ||| 750 524574 +los ||| technical development ||| 0.00900901 0.0012609 1.90631e-06 1.76015e-09 2.718 ||| 0-0 ||| 111 524574 +los ||| technical filter mechanism - the ||| 1 0.122289 1.90631e-06 4.39175e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| technical ||| 0.000962258 0.0012609 1.71568e-05 1.07e-05 2.718 ||| 0-0 ||| 9353 524574 +los ||| technological ||| 0.0011655 0.0055147 5.71893e-06 1.46e-05 2.718 ||| 0-0 ||| 2574 524574 +los ||| telephones ||| 0.0137931 0.205556 3.81262e-06 3.6e-05 2.718 ||| 0-0 ||| 145 524574 +los ||| television channels to ||| 0.0625 0.138739 1.90631e-06 9.04541e-11 2.718 ||| 0-1 ||| 16 524574 +los ||| television channels ||| 0.0131579 0.138739 1.90631e-06 1.01796e-09 2.718 ||| 0-1 ||| 76 524574 +los ||| television ||| 0.00297746 0.0083667 1.33442e-05 2.24e-05 2.718 ||| 0-0 ||| 2351 524574 +los ||| tell me that the ||| 0.0625 0.122289 1.90631e-06 4.26639e-10 2.718 ||| 0-3 ||| 16 524574 +los ||| tell our ||| 0.0238095 0.0248369 1.90631e-06 3.50682e-07 2.718 ||| 0-1 ||| 42 524574 +los ||| tell the ||| 0.0100503 0.122289 7.62523e-06 4.21235e-05 2.718 ||| 0-1 ||| 398 524574 +los ||| tell those ||| 0.25 0.284705 1.90631e-06 1.6397e-06 2.718 ||| 0-1 ||| 4 524574 +los ||| tell you that the ||| 0.00921659 0.122289 3.81262e-06 2.28781e-09 2.718 ||| 0-3 ||| 217 524574 +los ||| telling you the ||| 0.5 0.122289 1.90631e-06 2.54835e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| ten applicant countries have thrown themselves with ||| 1 0.102182 1.90631e-06 7.75381e-25 2.718 ||| 0-1 ||| 1 524574 +los ||| ten applicant countries have thrown themselves ||| 1 0.102182 1.90631e-06 1.21257e-22 2.718 ||| 0-1 ||| 1 524574 +los ||| ten applicant countries have thrown ||| 1 0.102182 1.90631e-06 2.82191e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| ten applicant countries have ||| 0.5 0.102182 1.90631e-06 1.01874e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| ten applicant countries ||| 0.0526316 0.102182 1.90631e-06 8.51804e-13 2.718 ||| 0-1 ||| 19 524574 +los ||| ten applicant ||| 0.5 0.102182 1.90631e-06 2.24336e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| ten ||| 0.000616776 0.0006671 5.71893e-06 2.9e-06 2.718 ||| 0-0 ||| 4864 524574 +los ||| tend to set the ||| 1 0.122289 1.90631e-06 5.12329e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| tenders will be issued with ||| 1 0.0308642 1.90631e-06 6.01967e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| tenders will be issued ||| 1 0.0308642 1.90631e-06 9.41383e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| tenders will be ||| 1 0.0308642 1.90631e-06 1.52081e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| tenders will ||| 0.5 0.0308642 1.90631e-06 8.39166e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| tenders ||| 0.00471698 0.0308642 1.90631e-06 9.7e-06 2.718 ||| 0-0 ||| 212 524574 +los ||| term to the ||| 0.142857 0.122289 1.90631e-06 4.16992e-06 2.718 ||| 0-2 ||| 7 524574 +los ||| termed the ||| 0.0149254 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-1 ||| 67 524574 +los ||| terminating the ||| 0.0588235 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 17 524574 +los ||| terms , the ||| 0.0238095 0.122289 1.90631e-06 5.61478e-05 2.718 ||| 0-2 ||| 42 524574 +los ||| terms as those ||| 0.25 0.284705 1.90631e-06 1.87019e-07 2.718 ||| 0-2 ||| 4 524574 +los ||| terms how ||| 0.5 0.00124 1.90631e-06 6.72829e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| terms of the action ||| 0.25 0.122289 1.90631e-06 7.73761e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| terms of the enormous issue of nuclear ||| 1 0.122289 1.90631e-06 1.17979e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| terms of the enormous issue of ||| 1 0.122289 1.90631e-06 3.03287e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| terms of the enormous issue ||| 1 0.122289 1.90631e-06 5.57882e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| terms of the enormous ||| 1 0.122289 1.90631e-06 7.37159e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| terms of the ||| 0.0149254 0.122289 6.48145e-05 2.55958e-05 2.718 ||| 0-2 ||| 2278 524574 +los ||| terms of what ||| 0.0102041 0.0040498 1.90631e-06 3.48049e-09 2.718 ||| 0-1 0-2 ||| 98 524574 +los ||| terms of ||| 0.0014829 0.0019787 3.24072e-05 3.63042e-06 2.718 ||| 0-1 ||| 11464 524574 +los ||| terms of ‘ how too ’ ||| 1 0.0139748 1.90631e-06 1.767e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| terms the ||| 0.030303 0.122289 1.90631e-06 0.000470822 2.718 ||| 0-1 ||| 33 524574 +los ||| terms ||| 0.000223651 0.0002364 7.62523e-06 5.8e-06 2.718 ||| 0-0 ||| 17885 524574 +los ||| terrible ||| 0.00062422 0.0018248 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 1602 524574 +los ||| territories . ||| 0.00909091 0.0502409 1.90631e-06 2.15059e-07 2.718 ||| 0-0 ||| 110 524574 +los ||| territories ||| 0.000665779 0.0502409 1.90631e-06 7.1e-05 2.718 ||| 0-0 ||| 1502 524574 +los ||| terrorist ||| 0.00206856 0.0058613 1.33442e-05 1.75e-05 2.718 ||| 0-0 ||| 3384 524574 +los ||| terrorists ||| 0.000597372 0.296429 1.90631e-06 0.0006456 2.718 ||| 0-0 ||| 1674 524574 +los ||| test his ||| 1 0.0058818 1.90631e-06 4.29288e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| testimonies ||| 0.0425532 0.125 3.81262e-06 6.8e-06 2.718 ||| 0-0 ||| 47 524574 +los ||| testing and ||| 0.0136986 0.0526316 1.90631e-06 9.61989e-07 2.718 ||| 0-0 ||| 73 524574 +los ||| testing ||| 0.0013624 0.0526316 3.81262e-06 7.68e-05 2.718 ||| 0-0 ||| 1468 524574 +los ||| tests impose ||| 1 0.0290249 1.90631e-06 2.03394e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| tests ||| 0.000981354 0.0290249 3.81262e-06 6.22e-05 2.718 ||| 0-0 ||| 2038 524574 +los ||| textile ||| 0.00422535 0.0062981 1.14379e-05 8.8e-06 2.718 ||| 0-0 ||| 1420 524574 +los ||| textiles ||| 0.0025 0.119629 3.81262e-06 0.0001381 2.718 ||| 0-0 ||| 800 524574 +los ||| texts ||| 0.00138313 0.138758 5.71893e-06 0.000315 2.718 ||| 0-0 ||| 2169 524574 +los ||| than , the very ||| 1 0.122289 1.90631e-06 5.43772e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| than , the ||| 0.333333 0.122289 1.90631e-06 1.56279e-05 2.718 ||| 0-2 ||| 3 524574 +los ||| than being ||| 0.00689655 8.8e-05 1.90631e-06 1.39444e-08 2.718 ||| 0-0 ||| 145 524574 +los ||| than interim and final payments . ||| 1 0.273884 1.90631e-06 1.37903e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| than interim and final payments ||| 1 0.273884 1.90631e-06 4.55277e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| than surfactants ||| 0.5 0.361111 1.90631e-06 3.8493e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| than the ||| 0.000863558 0.122289 7.62523e-06 0.000131046 2.718 ||| 0-1 ||| 4632 524574 +los ||| than those playing ||| 0.5 0.284705 1.90631e-06 3.36164e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| than those ||| 0.00124844 0.284705 1.90631e-06 5.10112e-06 2.718 ||| 0-1 ||| 801 524574 +los ||| than your ||| 0.0344828 0.0096341 1.90631e-06 9.41551e-08 2.718 ||| 0-1 ||| 29 524574 +los ||| than ||| 9.081e-05 8.8e-05 7.62523e-06 4.9e-06 2.718 ||| 0-0 ||| 44048 524574 +los ||| thank my ||| 0.00505051 0.0086409 1.90631e-06 7.29279e-08 2.718 ||| 0-1 ||| 198 524574 +los ||| thank the rapporteur , the ||| 0.166667 0.122289 1.90631e-06 2.40228e-11 2.718 ||| 0-1 ||| 6 524574 +los ||| thank the rapporteur , ||| 0.00197628 0.122289 1.90631e-06 3.91302e-10 2.718 ||| 0-1 ||| 506 524574 +los ||| thank the rapporteur for this and ||| 1 0.122289 1.90631e-06 2.04106e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| thank the rapporteur for this ||| 0.037037 0.122289 1.90631e-06 1.62947e-13 2.718 ||| 0-1 ||| 27 524574 +los ||| thank the rapporteur for ||| 0.00221239 0.122289 1.90631e-06 2.52186e-11 2.718 ||| 0-1 ||| 452 524574 +los ||| thank the rapporteur ||| 0.00240964 0.122289 5.71893e-06 3.28123e-09 2.718 ||| 0-1 ||| 1245 524574 +los ||| thank the thousands ||| 1 0.122289 1.90631e-06 4.90143e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| thank the ||| 0.00432767 0.122289 2.66883e-05 4.53836e-05 2.718 ||| 0-1 ||| 3235 524574 +los ||| thanking the rapporteur , Mrs ||| 0.1 0.122289 1.90631e-06 2.1117e-15 2.718 ||| 0-1 ||| 10 524574 +los ||| thanking the rapporteur , ||| 0.00909091 0.122289 1.90631e-06 2.25609e-11 2.718 ||| 0-1 ||| 110 524574 +los ||| thanking the rapporteur ||| 0.00436681 0.122289 1.90631e-06 1.89183e-10 2.718 ||| 0-1 ||| 229 524574 +los ||| thanking the ||| 0.0019685 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-1 ||| 508 524574 +los ||| thanks to the ||| 0.000497265 0.122289 1.90631e-06 3.08742e-06 2.718 ||| 0-2 ||| 2011 524574 +los ||| that , it would give the ||| 1 0.122289 1.90631e-06 5.44227e-11 2.718 ||| 0-5 ||| 1 524574 +los ||| that Europeans have ||| 0.0625 0.354859 1.90631e-06 5.4925e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| that Europeans ||| 0.00757576 0.354859 1.90631e-06 4.59247e-05 2.718 ||| 0-1 ||| 132 524574 +los ||| that Members have a great deal of ||| 0.25 0.168879 1.90631e-06 3.90279e-16 2.718 ||| 0-1 ||| 4 524574 +los ||| that Members have a great deal ||| 0.25 0.168879 1.90631e-06 7.17899e-15 2.718 ||| 0-1 ||| 4 524574 +los ||| that Members have a great ||| 0.25 0.168879 1.90631e-06 1.69077e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| that Members have a ||| 0.2 0.168879 1.90631e-06 4.30221e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| that Members have ||| 0.0322581 0.168879 1.90631e-06 9.70587e-07 2.718 ||| 0-1 ||| 31 524574 +los ||| that Members ||| 0.00247525 0.168879 1.90631e-06 8.11541e-05 2.718 ||| 0-1 ||| 404 524574 +los ||| that a ||| 0.000121139 5.13e-05 1.90631e-06 1.94147e-06 2.718 ||| 0-0 ||| 8255 524574 +los ||| that all ||| 0.000582751 0.0177928 5.71893e-06 4.52215e-05 2.718 ||| 0-1 ||| 5148 524574 +los ||| that although the ||| 0.015873 0.122289 1.90631e-06 7.73526e-07 2.718 ||| 0-2 ||| 63 524574 +los ||| that any ||| 0.00122699 0.0178119 3.81262e-06 1.55364e-05 2.718 ||| 0-1 ||| 1630 524574 +los ||| that are in the ||| 0.0222222 0.122289 1.90631e-06 2.34341e-06 2.718 ||| 0-3 ||| 45 524574 +los ||| that are made ||| 0.0392157 0.0005024 3.81262e-06 6.37101e-09 2.718 ||| 0-1 ||| 51 524574 +los ||| that are the ||| 0.0404624 0.122289 1.33442e-05 0.000109482 2.718 ||| 0-2 ||| 173 524574 +los ||| that are ||| 0.000914316 0.0005024 1.33442e-05 3.04135e-06 2.718 ||| 0-1 ||| 7656 524574 +los ||| that be the ||| 0.0833333 0.122289 1.90631e-06 0.00013077 2.718 ||| 0-2 ||| 12 524574 +los ||| that being the ||| 0.00641026 0.122289 1.90631e-06 2.05345e-05 2.718 ||| 0-2 ||| 156 524574 +los ||| that case , the ||| 0.0416667 0.122289 1.90631e-06 9.2066e-07 2.718 ||| 0-3 ||| 24 524574 +los ||| that commercial ||| 0.2 0.004526 1.90631e-06 2.94378e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| that damage the ||| 0.0714286 0.122289 1.90631e-06 3.03782e-07 2.718 ||| 0-2 ||| 14 524574 +los ||| that defend the ||| 0.5 0.122289 1.90631e-06 1.50809e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| that efforts ||| 0.0136986 0.101547 1.90631e-06 2.85563e-05 2.718 ||| 0-1 ||| 73 524574 +los ||| that end , aid agreements must include ||| 1 0.199336 1.90631e-06 7.35502e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| that end , aid agreements must ||| 1 0.199336 1.90631e-06 5.55515e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| that end , aid agreements ||| 1 0.199336 1.90631e-06 3.59417e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| that exist between the ||| 0.0285714 0.122289 1.90631e-06 1.75313e-10 2.718 ||| 0-3 ||| 35 524574 +los ||| that experience with the ||| 0.5 0.122289 1.90631e-06 3.18834e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| that food should only ever be ||| 0.5 0.123536 1.90631e-06 6.22715e-16 2.718 ||| 0-1 ||| 2 524574 +los ||| that food should only ever ||| 0.5 0.123536 1.90631e-06 3.43606e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| that food should only ||| 0.5 0.123536 1.90631e-06 1.82867e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| that food should ||| 0.25 0.123536 1.90631e-06 1.64286e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| that food ||| 0.0123457 0.123536 1.90631e-06 3.70765e-05 2.718 ||| 0-1 ||| 81 524574 +los ||| that go on for many years ||| 1 0.0015353 1.90631e-06 3.39132e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| that go on for many ||| 1 0.0015353 1.90631e-06 1.99255e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| that go on for ||| 1 0.0015353 1.90631e-06 5.80411e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| that government revenue is ||| 1 0.202394 1.90631e-06 1.52362e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| that government revenue ||| 1 0.202394 1.90631e-06 4.86141e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| that governments ||| 0.0116959 0.273393 3.81262e-06 5.98765e-05 2.718 ||| 0-1 ||| 171 524574 +los ||| that has been done through the ||| 1 0.122289 1.90631e-06 2.6033e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| that have been made in the ||| 0.0833333 0.122289 1.90631e-06 1.29209e-11 2.718 ||| 0-5 ||| 12 524574 +los ||| that he may take the ||| 1 0.122289 1.90631e-06 7.59572e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| that in the short term my own ||| 1 0.122289 1.90631e-06 2.59929e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| that in the short term my ||| 1 0.122289 1.90631e-06 1.53323e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| that in the short term ||| 0.0833333 0.122289 1.90631e-06 2.38413e-12 2.718 ||| 0-2 ||| 12 524574 +los ||| that in the short ||| 0.0555556 0.122289 1.90631e-06 2.17928e-08 2.718 ||| 0-2 ||| 18 524574 +los ||| that in the ||| 0.00117142 0.122289 5.71893e-06 0.000154449 2.718 ||| 0-2 ||| 2561 524574 +los ||| that investment is undoubtedly the key ||| 1 0.122289 1.90631e-06 1.49441e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| that investment is undoubtedly the ||| 1 0.122289 1.90631e-06 2.05558e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| that is , the ||| 0.00245098 0.122289 1.90631e-06 2.69693e-05 2.718 ||| 0-3 ||| 408 524574 +los ||| that is , those of us ||| 1 0.284705 1.90631e-06 1.64493e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| that is , those of ||| 0.142857 0.284705 1.90631e-06 5.70719e-08 2.718 ||| 0-3 ||| 7 524574 +los ||| that is , those ||| 0.0344828 0.284705 1.90631e-06 1.04981e-06 2.718 ||| 0-3 ||| 29 524574 +los ||| that is also the ||| 0.00934579 0.122289 1.90631e-06 1.14174e-06 2.718 ||| 0-3 ||| 107 524574 +los ||| that is following their progress ||| 1 0.0236713 1.90631e-06 2.03001e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| that is following their ||| 1 0.0236713 1.90631e-06 1.54139e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| that is in the ||| 0.0107527 0.122289 1.90631e-06 4.84061e-06 2.718 ||| 0-3 ||| 93 524574 +los ||| that is not all ||| 0.015625 0.0177928 1.90631e-06 4.83878e-09 2.718 ||| 0-3 ||| 64 524574 +los ||| that is not the ||| 0.00189753 0.122289 1.90631e-06 7.72095e-07 2.718 ||| 0-3 ||| 527 524574 +los ||| that is on the ||| 0.0172414 0.122289 1.90631e-06 1.51316e-06 2.718 ||| 0-3 ||| 58 524574 +los ||| that is the path you should ||| 1 0.122289 1.90631e-06 1.23268e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| that is the path you ||| 1 0.122289 1.90631e-06 2.78194e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| that is the path ||| 0.0714286 0.122289 1.90631e-06 8.61628e-09 2.718 ||| 0-2 ||| 14 524574 +los ||| that is the point ||| 0.0151515 0.122289 1.90631e-06 1.97835e-07 2.718 ||| 0-2 ||| 66 524574 +los ||| that is the soul ||| 1 0.122289 1.90631e-06 9.72441e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| that is the ||| 0.00126605 0.122289 1.33442e-05 0.000226149 2.718 ||| 0-2 ||| 5529 524574 +los ||| that issue the ||| 0.25 0.122289 1.90631e-06 5.46087e-06 2.718 ||| 0-2 ||| 4 524574 +los ||| that it covers the ||| 0.25 0.122289 1.90631e-06 1.70664e-09 2.718 ||| 0-3 ||| 4 524574 +los ||| that it does the ||| 1 0.122289 1.90631e-06 9.00028e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| that it has the ||| 0.0169492 0.122289 1.90631e-06 6.60521e-07 2.718 ||| 0-3 ||| 59 524574 +los ||| that it honours the ||| 0.5 0.122289 1.90631e-06 8.98232e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| that it is the ||| 0.00152905 0.122289 1.90631e-06 4.02165e-06 2.718 ||| 0-3 ||| 654 524574 +los ||| that it was the ||| 0.00675676 0.122289 1.90631e-06 4.02023e-07 2.718 ||| 0-3 ||| 148 524574 +los ||| that its ||| 0.00227101 0.0211371 5.71893e-06 3.59158e-05 2.718 ||| 0-1 ||| 1321 524574 +los ||| that loan finance , ||| 1 0.0048977 1.90631e-06 1.4233e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| that loan finance ||| 1 0.0048977 1.90631e-06 1.19349e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| that matter , the ||| 0.0769231 0.122289 1.90631e-06 8.92779e-07 2.718 ||| 0-3 ||| 13 524574 +los ||| that matter , would those ||| 0.5 0.284705 1.90631e-06 2.03951e-10 2.718 ||| 0-4 ||| 2 524574 +los ||| that matter those ||| 1 0.284705 1.90631e-06 2.91413e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| that might have occupied ||| 0.5 0.0012005 1.90631e-06 7.72543e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| that none of the arguments put forward ||| 1 0.122289 1.90631e-06 1.14836e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| that none of the arguments put ||| 1 0.122289 1.90631e-06 2.06392e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| that none of the arguments ||| 1 0.122289 1.90631e-06 1.87186e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| that none of the ||| 0.010101 0.122289 1.90631e-06 7.76707e-09 2.718 ||| 0-3 ||| 99 524574 +los ||| that of the ||| 0.0110906 0.122289 3.43136e-05 0.000392276 2.718 ||| 0-2 ||| 1623 524574 +los ||| that of ||| 0.00116117 0.0019787 9.53154e-06 5.56391e-05 2.718 ||| 0-1 ||| 4306 524574 +los ||| that one or the ||| 1 0.122289 1.90631e-06 3.43849e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| that operate above the heads ||| 1 0.122289 1.90631e-06 1.32256e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| that operate above the ||| 1 0.122289 1.90631e-06 4.54487e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| that order ||| 0.05 5.13e-05 1.90631e-06 2.33279e-08 2.718 ||| 0-0 ||| 20 524574 +los ||| that our ||| 0.000385282 0.0248369 3.81262e-06 6.00716e-05 2.718 ||| 0-1 ||| 5191 524574 +los ||| that ours are the ||| 0.333333 0.122289 1.90631e-06 3.42679e-09 2.718 ||| 0-3 ||| 3 524574 +los ||| that pay the ||| 0.0769231 0.122289 1.90631e-06 1.03329e-06 2.718 ||| 0-2 ||| 13 524574 +los ||| that payments have ||| 1 0.273884 1.90631e-06 2.90468e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| that payments ||| 0.0416667 0.273884 1.90631e-06 2.4287e-05 2.718 ||| 0-1 ||| 24 524574 +los ||| that people ||| 0.000611247 0.0894672 1.90631e-06 0.000132475 2.718 ||| 0-1 ||| 1636 524574 +los ||| that prices ||| 0.00900901 0.34239 1.90631e-06 5.89429e-05 2.718 ||| 0-1 ||| 111 524574 +los ||| that puts the ||| 0.047619 0.122289 1.90631e-06 2.38841e-07 2.718 ||| 0-2 ||| 21 524574 +los ||| that reason , the ||| 0.00925926 0.122289 1.90631e-06 2.01273e-07 2.718 ||| 0-3 ||| 108 524574 +los ||| that regarding the ||| 0.142857 0.122289 1.90631e-06 4.46654e-07 2.718 ||| 0-2 ||| 7 524574 +los ||| that senior citizens ||| 0.333333 0.293572 1.90631e-06 3.10651e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| that sort conflict is over and done ||| 1 0.0037547 1.90631e-06 2.73103e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| that sort conflict is over and ||| 1 0.0037547 1.90631e-06 5.9891e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| that sort conflict is over ||| 1 0.0037547 1.90631e-06 4.78137e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| that standards vary too much ||| 1 0.0495175 1.90631e-06 6.89257e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| that standards vary too ||| 1 0.0495175 1.90631e-06 6.86716e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| that standards vary ||| 0.5 0.0495175 1.90631e-06 5.04567e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| that standards ||| 0.0263158 0.0495175 1.90631e-06 1.40158e-05 2.718 ||| 0-1 ||| 38 524574 +los ||| that subsequent ||| 0.0769231 0.0398818 1.90631e-06 8.83134e-07 2.718 ||| 0-1 ||| 13 524574 +los ||| that taxpayers ' ||| 0.5 0.220721 1.90631e-06 1.26405e-07 2.718 ||| 0-1 0-2 ||| 2 524574 +los ||| that the Chinese authorities ||| 0.030303 0.122289 1.90631e-06 5.71876e-12 2.718 ||| 0-1 ||| 33 524574 +los ||| that the Chinese ||| 0.025641 0.122289 1.90631e-06 8.58672e-08 2.718 ||| 0-1 ||| 39 524574 +los ||| that the EU ||| 0.000281849 0.122289 1.90631e-06 3.57034e-06 2.718 ||| 0-1 ||| 3548 524574 +los ||| that the Group of ||| 0.00704225 0.122289 1.90631e-06 1.27607e-07 2.718 ||| 0-1 ||| 142 524574 +los ||| that the Group ||| 0.00534759 0.122289 1.90631e-06 2.34728e-06 2.718 ||| 0-1 ||| 187 524574 +los ||| that the Member States ||| 0.000548246 0.122289 1.90631e-06 1.77436e-09 2.718 ||| 0-1 ||| 1824 524574 +los ||| that the Member ||| 0.0120482 0.122289 1.90631e-06 3.71827e-06 2.718 ||| 0-1 ||| 83 524574 +los ||| that the actual ||| 0.047619 0.122289 1.90631e-06 1.04412e-06 2.718 ||| 0-1 ||| 21 524574 +los ||| that the chairpersons ||| 0.166667 0.122289 1.90631e-06 2.88629e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| that the current ||| 0.00259067 0.122289 1.90631e-06 1.18915e-06 2.718 ||| 0-1 ||| 386 524574 +los ||| that the defined ||| 0.5 0.122289 1.90631e-06 2.41727e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| that the election ||| 0.02 0.122289 1.90631e-06 1.71734e-07 2.718 ||| 0-1 ||| 50 524574 +los ||| that the funding should be increased ||| 1 0.122289 1.90631e-06 1.53495e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| that the funding should be ||| 1 0.122289 1.90631e-06 3.08842e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| that the funding should ||| 0.125 0.122289 1.90631e-06 1.70416e-09 2.718 ||| 0-1 ||| 8 524574 +los ||| that the funding ||| 0.010101 0.122289 1.90631e-06 3.84598e-07 2.718 ||| 0-1 ||| 99 524574 +los ||| that the money ||| 0.00353357 0.122289 1.90631e-06 1.17905e-06 2.718 ||| 0-1 ||| 283 524574 +los ||| that the order ||| 0.05 0.122289 1.90631e-06 3.8431e-06 2.718 ||| 0-1 ||| 20 524574 +los ||| that the people of ||| 0.00409836 0.122289 1.90631e-06 3.45281e-07 2.718 ||| 0-1 ||| 244 524574 +los ||| that the people ||| 0.00163399 0.122289 1.90631e-06 6.35129e-06 2.718 ||| 0-1 ||| 612 524574 +los ||| that the principle of ||| 0.005 0.122289 1.90631e-06 6.01359e-08 2.718 ||| 0-1 ||| 200 524574 +los ||| that the principle ||| 0.00442478 0.122289 1.90631e-06 1.10617e-06 2.718 ||| 0-1 ||| 226 524574 +los ||| that the system ||| 0.00294118 0.122289 1.90631e-06 2.01247e-06 2.718 ||| 0-1 ||| 340 524574 +los ||| that the total expenditure ||| 0.333333 0.122289 1.90631e-06 2.05494e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| that the total ||| 0.0322581 0.122289 1.90631e-06 6.80443e-07 2.718 ||| 0-1 ||| 31 524574 +los ||| that the ||| 0.00242818 0.122289 0.000663395 0.00721573 2.718 ||| 0-1 ||| 143317 524574 +los ||| that there are more ||| 0.0144928 0.0026918 1.90631e-06 2.14204e-10 2.718 ||| 0-1 ||| 69 524574 +los ||| that there are ||| 0.000539229 0.0026918 3.81262e-06 9.37967e-08 2.718 ||| 0-1 ||| 3709 524574 +los ||| that there is a ||| 0.000412712 0.0026918 1.90631e-06 8.58807e-09 2.718 ||| 0-1 ||| 2423 524574 +los ||| that there is ||| 0.000163292 0.0026918 1.90631e-06 1.93749e-07 2.718 ||| 0-1 ||| 6124 524574 +los ||| that there ought to be regulations ||| 1 0.0587004 1.90631e-06 3.79511e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| that there ||| 0.000778513 0.0026918 7.62523e-06 6.18194e-06 2.718 ||| 0-1 ||| 5138 524574 +los ||| that these ||| 0.00109769 0.0240362 1.33442e-05 4.10026e-05 2.718 ||| 0-1 ||| 6377 524574 +los ||| that they are ||| 0.000357526 0.0072404 1.90631e-06 2.08931e-07 2.718 ||| 0-1 ||| 2797 524574 +los ||| that they put down the ||| 1 0.122289 1.90631e-06 1.81287e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| that they should be accessible ||| 0.5 0.0072404 1.90631e-06 1.43751e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| that they should be ||| 0.00636943 0.0072404 1.90631e-06 1.10578e-09 2.718 ||| 0-1 ||| 157 524574 +los ||| that they should ||| 0.00248139 0.0072404 1.90631e-06 6.10156e-08 2.718 ||| 0-1 ||| 403 524574 +los ||| that they use the ||| 0.0909091 0.122289 1.90631e-06 1.14511e-08 2.718 ||| 0-3 ||| 11 524574 +los ||| that they ||| 0.000343584 0.0072404 3.81262e-06 1.37702e-05 2.718 ||| 0-1 ||| 5821 524574 +los ||| that this is the ||| 0.00116959 0.122289 1.90631e-06 1.46124e-06 2.718 ||| 0-3 ||| 855 524574 +los ||| that those within the ||| 0.5 0.135672 1.90631e-06 1.20485e-10 2.718 ||| 0-1 0-2 0-3 ||| 2 524574 +los ||| that those ||| 0.00597826 0.284705 2.09694e-05 0.00028088 2.718 ||| 0-1 ||| 1840 524574 +los ||| that tourist ||| 1 0.0061232 1.90631e-06 3.8544e-10 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| that violent ||| 0.5 0.0078193 1.90631e-06 1.4803e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| that we all worked together to achieve ||| 1 0.0014565 1.90631e-06 3.6731e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| that we all worked together to ||| 1 0.0014565 1.90631e-06 1.60748e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| that we all worked together ||| 1 0.0014565 1.90631e-06 1.80904e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| that we all worked ||| 1 0.0014565 1.90631e-06 3.01206e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| that we all ||| 0.00287356 0.0014565 1.90631e-06 6.92427e-08 2.718 ||| 0-1 ||| 348 524574 +los ||| that we are all ||| 0.00446429 0.0177928 1.90631e-06 7.78918e-09 2.718 ||| 0-3 ||| 224 524574 +los ||| that we are ||| 0.000138985 0.0014565 1.90631e-06 2.2233e-07 2.718 ||| 0-1 ||| 7195 524574 +los ||| that we can achieve even the globalisation ||| 0.333333 0.122289 1.90631e-06 2.5746e-19 2.718 ||| 0-5 ||| 3 524574 +los ||| that we can achieve even the ||| 0.333333 0.122289 1.90631e-06 3.38763e-14 2.718 ||| 0-5 ||| 3 524574 +los ||| that we have appropriate ||| 1 0.0010555 1.90631e-06 2.67215e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| that we have the ||| 0.00740741 0.122289 3.81262e-06 9.79689e-07 2.718 ||| 0-3 ||| 270 524574 +los ||| that we have ||| 0.000103423 0.0014565 1.90631e-06 1.7525e-07 2.718 ||| 0-1 ||| 9669 524574 +los ||| that we made throughout the duration ||| 1 0.122289 1.90631e-06 5.68274e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| that we made throughout the ||| 1 0.122289 1.90631e-06 6.84667e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| that we should trample upon the ||| 1 0.122289 1.90631e-06 6.02669e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| that we ||| 0.000536585 0.0014565 2.09694e-05 1.46533e-05 2.718 ||| 0-1 ||| 20500 524574 +los ||| that what we have at the moment ||| 0.5 0.122289 1.90631e-06 1.04011e-15 2.718 ||| 0-5 ||| 2 524574 +los ||| that what we have at the ||| 0.5 0.122289 1.90631e-06 5.75601e-12 2.718 ||| 0-5 ||| 2 524574 +los ||| that which has ||| 0.0526316 5.13e-05 1.90631e-06 1.9152e-09 2.718 ||| 0-0 ||| 19 524574 +los ||| that which was ||| 0.0588235 5.13e-05 1.90631e-06 1.16567e-09 2.718 ||| 0-0 ||| 17 524574 +los ||| that which we ||| 0.0588235 0.0014565 1.90631e-06 1.24474e-07 2.718 ||| 0-2 ||| 17 524574 +los ||| that which ||| 0.00545455 5.13e-05 5.71893e-06 3.72063e-07 2.718 ||| 0-0 ||| 550 524574 +los ||| that would reduce the ||| 0.0769231 0.122289 1.90631e-06 1.61342e-09 2.718 ||| 0-3 ||| 13 524574 +los ||| that young researchers ||| 1 0.304775 1.90631e-06 4.52188e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| that ||| 3.60266e-05 5.13e-05 6.48145e-05 4.38e-05 2.718 ||| 0-0 ||| 943748 524574 +los ||| the ] ||| 0.5 0.122289 1.90631e-06 1.6043e-05 2.718 ||| 0-0 ||| 2 524574 +los ||| the ' bucket ||| 1 0.122289 1.90631e-06 1.0314e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the ' collapse of the ||| 1 0.122289 1.90631e-06 5.11425e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| the ' gremlins ' that sometimes appear ||| 1 0.122289 1.90631e-06 1.68162e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| the ' gremlins ' that sometimes ||| 1 0.122289 1.90631e-06 1.92405e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the ' gremlins ' that ||| 1 0.122289 1.90631e-06 3.4054e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the ' gremlins ' ||| 1 0.122289 1.90631e-06 2.02442e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the ' gremlins ||| 1 0.122289 1.90631e-06 5.89369e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the ' no ' side ||| 0.05 0.122289 1.90631e-06 8.63544e-13 2.718 ||| 0-0 ||| 20 524574 +los ||| the ' no ' ||| 0.0357143 0.122289 3.81262e-06 3.93953e-09 2.718 ||| 0-0 ||| 56 524574 +los ||| the ' no ||| 0.0144928 0.122289 1.90631e-06 1.14691e-06 2.718 ||| 0-0 ||| 69 524574 +los ||| the ' report ||| 1 0.0833685 1.90631e-06 9.35271e-07 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the ' ||| 0.0148048 0.0833685 8.38776e-05 0.0022817 2.718 ||| 0-0 0-1 ||| 2972 524574 +los ||| the " ||| 0.00923077 0.122289 5.71893e-06 0.000101577 2.718 ||| 0-0 ||| 325 524574 +los ||| the ( ||| 0.04 0.122289 1.90631e-06 0.000413685 2.718 ||| 0-0 ||| 25 524574 +los ||| the , let us say ||| 0.333333 0.122289 1.90631e-06 5.75527e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| the , let us ||| 0.333333 0.122289 1.90631e-06 6.02141e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the , let ||| 0.333333 0.122289 1.90631e-06 2.08917e-05 2.718 ||| 0-0 ||| 3 524574 +los ||| the , of ||| 1 0.122289 1.90631e-06 0.00278099 2.718 ||| 0-0 ||| 1 524574 +los ||| the , ||| 0.033557 0.122289 9.53154e-06 0.0511551 2.718 ||| 0-0 ||| 149 524574 +los ||| the - ||| 0.0454545 0.122289 1.90631e-06 0.00161807 2.718 ||| 0-0 ||| 22 524574 +los ||| the 14 countries has done this ||| 1 0.122289 1.90631e-06 1.60566e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the 14 countries has done ||| 1 0.122289 1.90631e-06 2.48501e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the 14 countries has ||| 1 0.122289 1.90631e-06 5.44958e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the 14 countries ||| 0.0833333 0.122289 1.90631e-06 1.05869e-09 2.718 ||| 0-0 ||| 12 524574 +los ||| the 14 ||| 0.00719424 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-0 ||| 139 524574 +los ||| the 15 ||| 0.00156495 0.122289 1.90631e-06 9.43704e-06 2.718 ||| 0-0 ||| 639 524574 +los ||| the 155 000 ||| 0.25 0.122289 1.90631e-06 1.79647e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| the 155 ||| 0.2 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| the 2001 ||| 0.05 0.122289 1.90631e-06 8.32175e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| the 2004 Olympic and Paralympic ||| 1 0.122289 1.90631e-06 8.66568e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| the 2004 Olympic and ||| 1 0.122289 1.90631e-06 2.16642e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the 2004 Olympic ||| 0.5 0.122289 1.90631e-06 1.72955e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the 2004 ||| 0.030303 0.122289 1.90631e-06 5.40485e-06 2.718 ||| 0-0 ||| 33 524574 +los ||| the 27 and 28 ||| 1 0.122289 1.90631e-06 1.57108e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the 27 and ||| 0.25 0.122289 1.90631e-06 3.65368e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the 27 ||| 0.00465116 0.122289 5.71893e-06 2.9169e-06 2.718 ||| 0-0 ||| 645 524574 +los ||| the 3 ||| 0.00877193 0.122289 1.90631e-06 9.86599e-06 2.718 ||| 0-0 ||| 114 524574 +los ||| the 30 recommendations ||| 1 0.122289 1.90631e-06 5.53397e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the 30 ||| 0.00925926 0.122289 1.90631e-06 5.70512e-06 2.718 ||| 0-0 ||| 108 524574 +los ||| the 49 least developed ||| 1 0.122289 1.90631e-06 1.01245e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the 49 least ||| 1 0.122289 1.90631e-06 1.47372e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the 49 ||| 0.0714286 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| the 64 ||| 0.142857 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| the 9 ||| 0.0952381 0.122289 3.81262e-06 4.80431e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| the ? ? ? ? ||| 0.25 0.122289 1.90631e-06 3.65916e-16 2.718 ||| 0-0 ||| 4 524574 +los ||| the ? ? ? ||| 0.333333 0.122289 1.90631e-06 2.14111e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| the ? ? ||| 0.333333 0.122289 1.90631e-06 1.25284e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the ? ||| 0.0208333 0.122289 1.90631e-06 7.33086e-05 2.718 ||| 0-0 ||| 48 524574 +los ||| the ACP ||| 0.0107817 0.100164 7.62523e-06 0.000112172 2.718 ||| 0-0 0-1 ||| 371 524574 +los ||| the Afghan ||| 0.0714286 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| the African , Caribbean and Pacific ( ||| 0.5 0.122289 5.71893e-06 3.26597e-22 2.718 ||| 0-0 ||| 6 524574 +los ||| the African , Caribbean and Pacific ||| 0.166667 0.122289 5.71893e-06 3.38653e-19 2.718 ||| 0-0 ||| 18 524574 +los ||| the African , Caribbean and ||| 0.166667 0.122289 7.62523e-06 7.20538e-14 2.718 ||| 0-0 ||| 24 524574 +los ||| the African , Caribbean ||| 0.142857 0.122289 7.62523e-06 5.75239e-12 2.718 ||| 0-0 ||| 28 524574 +los ||| the African , ||| 0.133333 0.122289 7.62523e-06 8.84982e-07 2.718 ||| 0-0 ||| 30 524574 +los ||| the African regions , ||| 0.25 0.122289 1.90631e-06 7.29226e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| the African regions ||| 0.25 0.122289 1.90631e-06 6.11486e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| the African ||| 0.0952381 0.122289 1.14379e-05 7.42094e-06 2.718 ||| 0-0 ||| 63 524574 +los ||| the Agreement ||| 0.00246914 0.122289 1.90631e-06 8.66492e-06 2.718 ||| 0-0 ||| 405 524574 +los ||| the Agriculture ||| 0.047619 0.122289 1.90631e-06 5.8767e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| the Albanian ||| 0.0294118 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 34 524574 +los ||| the Algerian ||| 0.0833333 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| the Alliance of ||| 0.00392927 0.122289 3.81262e-06 6.87934e-07 2.718 ||| 0-0 ||| 509 524574 +los ||| the Alliance ||| 0.00336134 0.122289 3.81262e-06 1.26542e-05 2.718 ||| 0-0 ||| 595 524574 +los ||| the Alps ||| 0.00434783 0.0877605 1.90631e-06 5.83381e-06 2.718 ||| 0-0 0-1 ||| 230 524574 +los ||| the American ||| 0.0115607 0.122289 3.81262e-06 1.09813e-05 2.718 ||| 0-0 ||| 173 524574 +los ||| the Americans did not join in is ||| 1 0.122289 1.90631e-06 1.96304e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the Americans did not join in ||| 1 0.122289 1.90631e-06 6.26347e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the Americans did not join ||| 1 0.122289 1.90631e-06 2.92624e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the Americans did not ||| 0.142857 0.122289 1.90631e-06 6.25265e-12 2.718 ||| 0-0 ||| 7 524574 +los ||| the Americans did ||| 0.25 0.122289 1.90631e-06 1.83142e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the Americans ||| 0.00234009 0.122289 5.71893e-06 4.03219e-06 2.718 ||| 0-0 ||| 1282 524574 +los ||| the Annual ||| 0.0434783 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 23 524574 +los ||| the Appendix ||| 0.0666667 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| the Arab ||| 0.015625 0.122289 1.90631e-06 3.08849e-06 2.718 ||| 0-0 ||| 64 524574 +los ||| the Ark ||| 0.5 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the Armenians ||| 0.0212766 0.123645 1.90631e-06 6.26276e-06 2.718 ||| 0-0 0-1 ||| 47 524574 +los ||| the Austrian ||| 0.01 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-0 ||| 100 524574 +los ||| the BBC , herself a woman , ||| 1 0.122289 1.90631e-06 1.14753e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the BBC , herself a woman ||| 1 0.122289 1.90631e-06 9.62252e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the BBC , herself a ||| 1 0.122289 1.90631e-06 5.56215e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the BBC , herself ||| 1 0.122289 1.90631e-06 1.25483e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the BBC , ||| 0.0769231 0.122289 1.90631e-06 5.62706e-08 2.718 ||| 0-0 ||| 13 524574 +los ||| the BBC ||| 0.00970874 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 103 524574 +los ||| the Balkans , and since the ||| 1 0.122289 1.90631e-06 3.09611e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| the Balkans ||| 0.000604961 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 1653 524574 +los ||| the Baltic originate ||| 0.5 0.122289 1.90631e-06 1.58714e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the Baltic ||| 0.00409836 0.122289 3.81262e-06 6.34855e-06 2.718 ||| 0-0 ||| 488 524574 +los ||| the Bank ||| 0.00319489 0.122289 1.90631e-06 1.18821e-05 2.718 ||| 0-0 ||| 313 524574 +los ||| the Basque Country ||| 0.00662252 0.122289 1.90631e-06 4.28956e-12 2.718 ||| 0-0 ||| 151 524574 +los ||| the Basque ||| 0.00675676 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 148 524574 +los ||| the Belarusian ||| 0.1 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the Bolshevik ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the Book of ||| 0.25 0.122289 1.90631e-06 2.56518e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the Book ||| 0.166667 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the Books ||| 1 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the Bosnians and ||| 0.5 0.14179 1.90631e-06 5.21187e-08 2.718 ||| 0-0 0-1 ||| 2 524574 +los ||| the Bosnians ||| 0.0769231 0.14179 1.90631e-06 4.16088e-06 2.718 ||| 0-0 0-1 ||| 13 524574 +los ||| the British ||| 0.00378788 0.122289 3.81262e-06 1.26542e-05 2.718 ||| 0-0 ||| 528 524574 +los ||| the Burmese people ' s ||| 1 0.07259 1.90631e-06 1.33101e-13 2.718 ||| 0-0 0-2 0-3 0-4 ||| 1 524574 +los ||| the Burmese ||| 0.0212766 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 47 524574 +los ||| the Business Cooperation ||| 1 0.122289 1.90631e-06 2.41588e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the Business ||| 0.142857 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| the CRS , ||| 0.5 0.122289 1.90631e-06 3.58085e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the CRS ||| 0.0769231 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 13 524574 +los ||| the Canaries ||| 0.00990099 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 101 524574 +los ||| the Canary Islands , ||| 0.00943396 0.122289 1.90631e-06 3.366e-13 2.718 ||| 0-0 ||| 106 524574 +los ||| the Canary Islands ||| 0.0030303 0.122289 1.90631e-06 2.82253e-12 2.718 ||| 0-0 ||| 330 524574 +los ||| the Canary ||| 0.111111 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| the Central Highlands ||| 0.1 0.122289 1.90631e-06 3.82629e-12 2.718 ||| 0-0 ||| 10 524574 +los ||| the Central and ||| 0.142857 0.122289 3.81262e-06 1.19819e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| the Central ||| 0.0925926 0.122289 9.53154e-06 9.56573e-06 2.718 ||| 0-0 ||| 54 524574 +los ||| the Centre ||| 0.00595238 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-0 ||| 168 524574 +los ||| the Chamber ||| 0.00142857 0.122289 3.81262e-06 1.12816e-05 2.718 ||| 0-0 ||| 1400 524574 +los ||| the Chechens are asking us ||| 0.5 0.122289 1.90631e-06 1.13452e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| the Chechens are asking ||| 0.5 0.122289 1.90631e-06 3.9363e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the Chechens are ||| 0.5 0.122289 1.90631e-06 9.1118e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the Chechens ||| 0.0192308 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 52 524574 +los ||| the Chilean ||| 0.1 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the Chinese authorities ||| 0.00225734 0.122289 1.90631e-06 3.39965e-10 2.718 ||| 0-0 ||| 443 524574 +los ||| the Chinese ||| 0.00412371 0.122289 3.81262e-06 5.10458e-06 2.718 ||| 0-0 ||| 485 524574 +los ||| the Codecision ||| 0.142857 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| the Commission ' s ||| 0.00330033 0.122289 1.90631e-06 1.63717e-09 2.718 ||| 0-0 ||| 303 524574 +los ||| the Commission ' ||| 0.00203459 0.122289 3.81262e-06 8.60626e-07 2.718 ||| 0-0 ||| 983 524574 +los ||| the Commission 's ||| 0.00234522 0.0786353 9.53154e-06 1.53519e-06 2.718 ||| 0-0 0-2 ||| 2132 524574 +los ||| the Commission - ||| 0.0017094 0.122289 1.90631e-06 9.45112e-07 2.718 ||| 0-0 ||| 585 524574 +los ||| the Commission . ||| 0.000104943 0.122289 1.90631e-06 7.58926e-07 2.718 ||| 0-0 ||| 9529 524574 +los ||| the Commission agreed on ||| 0.333333 0.122289 1.90631e-06 1.30931e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the Commission agreed ||| 0.0153846 0.122289 1.90631e-06 1.95682e-08 2.718 ||| 0-0 ||| 65 524574 +los ||| the Commission and ||| 0.000153398 0.122289 3.81262e-06 3.13841e-06 2.718 ||| 0-0 ||| 13038 524574 +los ||| the Commission by ||| 0.0052356 0.122289 1.90631e-06 1.31543e-06 2.718 ||| 0-0 ||| 191 524574 +los ||| the Commission communication has not yet said ||| 1 0.122289 1.90631e-06 1.46581e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| the Commission communication has not yet ||| 1 0.122289 1.90631e-06 3.56385e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the Commission communication has not ||| 1 0.122289 1.90631e-06 1.34739e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the Commission communication has ||| 0.2 0.122289 1.90631e-06 3.94655e-11 2.718 ||| 0-0 ||| 5 524574 +los ||| the Commission communication ||| 0.00127877 0.122289 1.90631e-06 7.66693e-09 2.718 ||| 0-0 ||| 782 524574 +los ||| the Commission gave ||| 0.0232558 0.122289 1.90631e-06 2.09212e-08 2.718 ||| 0-0 ||| 43 524574 +los ||| the Commission has tried to ||| 0.0285714 0.122289 1.90631e-06 4.57264e-12 2.718 ||| 0-0 ||| 35 524574 +los ||| the Commission has tried ||| 0.047619 0.122289 1.90631e-06 5.146e-11 2.718 ||| 0-0 ||| 21 524574 +los ||| the Commission has ||| 0.000275558 0.122289 3.81262e-06 1.28972e-06 2.718 ||| 0-0 ||| 7258 524574 +los ||| the Commission is of the ||| 0.0384615 0.122289 1.90631e-06 2.62081e-08 2.718 ||| 0-0 ||| 26 524574 +los ||| the Commission is of ||| 0.027027 0.122289 1.90631e-06 4.269e-07 2.718 ||| 0-0 ||| 37 524574 +los ||| the Commission is ||| 0.000280938 0.122289 3.81262e-06 7.85262e-06 2.718 ||| 0-0 ||| 7119 524574 +los ||| the Commission look ||| 0.2 0.122289 1.90631e-06 7.30363e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| the Commission must also study ways of ||| 1 0.122289 1.90631e-06 3.46317e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the Commission must also study ways ||| 1 0.122289 1.90631e-06 6.37033e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the Commission must also study ||| 1 0.122289 1.90631e-06 6.60823e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the Commission must also ||| 0.0119048 0.122289 1.90631e-06 1.9551e-09 2.718 ||| 0-0 ||| 84 524574 +los ||| the Commission must ||| 0.000636132 0.122289 1.90631e-06 3.87255e-07 2.718 ||| 0-0 ||| 1572 524574 +los ||| the Commission shares ||| 0.00263852 0.122289 1.90631e-06 2.8062e-09 2.718 ||| 0-0 ||| 379 524574 +los ||| the Commission would ||| 0.00293255 0.122289 1.90631e-06 1.47042e-06 2.718 ||| 0-0 ||| 341 524574 +los ||| the Commission ||| 0.000395826 0.122289 0.000120097 0.000250553 2.718 ||| 0-0 ||| 159161 524574 +los ||| the Commissioners , thereby revealing the ||| 1 0.122289 1.90631e-06 4.19119e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| the Committee , according ||| 1 0.122289 1.90631e-06 6.90854e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the Committee , ||| 0.00729927 0.122289 1.90631e-06 7.80626e-06 2.718 ||| 0-0 ||| 137 524574 +los ||| the Committee of ||| 0.00118624 0.122289 1.90631e-06 3.5586e-06 2.718 ||| 0-0 ||| 843 524574 +los ||| the Committee on Social Affairs ||| 0.00826446 0.122289 1.90631e-06 8.43873e-16 2.718 ||| 0-0 ||| 121 524574 +los ||| the Committee on Social ||| 0.25 0.122289 1.90631e-06 9.46046e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| the Committee on Transport and Tourism ||| 0.00115741 0.122289 1.90631e-06 2.25854e-18 2.718 ||| 0-0 ||| 864 524574 +los ||| the Committee on Transport and ||| 0.00122399 0.122289 1.90631e-06 9.10701e-14 2.718 ||| 0-0 ||| 817 524574 +los ||| the Committee on Transport ||| 0.00103199 0.122289 1.90631e-06 7.27054e-12 2.718 ||| 0-0 ||| 969 524574 +los ||| the Committee on ||| 0.000122619 0.122289 5.71893e-06 4.37984e-07 2.718 ||| 0-0 ||| 24466 524574 +los ||| the Committee ||| 0.000338409 0.122289 1.90631e-05 6.54587e-05 2.718 ||| 0-0 ||| 29550 524574 +los ||| the Communities ' ||| 0.142857 0.122289 3.81262e-06 2.2838e-08 2.718 ||| 0-0 ||| 14 524574 +los ||| the Communities ||| 0.0531915 0.122289 9.53154e-06 6.64882e-06 2.718 ||| 0-0 ||| 94 524574 +los ||| the Community ' s ||| 0.0454545 0.122289 1.90631e-06 4.53788e-10 2.718 ||| 0-0 ||| 22 524574 +los ||| the Community ' ||| 0.0227273 0.122289 1.90631e-06 2.38547e-07 2.718 ||| 0-0 ||| 44 524574 +los ||| the Community 's ||| 0.0174419 0.122289 5.71893e-06 1.32257e-07 2.718 ||| 0-0 ||| 172 524574 +los ||| the Community applies ||| 0.333333 0.122289 1.90631e-06 5.81974e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the Community average . ||| 0.0238095 0.122289 1.90631e-06 5.21688e-12 2.718 ||| 0-0 ||| 42 524574 +los ||| the Community average ||| 0.00925926 0.122289 1.90631e-06 1.72231e-09 2.718 ||| 0-0 ||| 108 524574 +los ||| the Community ||| 0.00298607 0.122289 3.43136e-05 6.9448e-05 2.718 ||| 0-0 ||| 6028 524574 +los ||| the Community ’ s ||| 0.0434783 0.122289 1.90631e-06 2.30151e-10 2.718 ||| 0-0 ||| 23 524574 +los ||| the Community ’ ||| 0.0294118 0.122289 1.90631e-06 1.20985e-07 2.718 ||| 0-0 ||| 34 524574 +los ||| the Conditions of Employment ||| 0.0714286 0.122289 1.90631e-06 5.33557e-13 2.718 ||| 0-0 ||| 14 524574 +los ||| the Conditions of ||| 0.0714286 0.122289 1.90631e-06 5.13035e-08 2.718 ||| 0-0 ||| 14 524574 +los ||| the Conditions ||| 0.0625 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| the Confederal ||| 0.03125 0.122289 1.90631e-06 4.33246e-06 2.718 ||| 0-0 ||| 32 524574 +los ||| the Conference itself is ||| 1 0.122289 1.90631e-06 1.70627e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the Conference itself ||| 1 0.122289 1.90631e-06 5.44418e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the Conference will ||| 0.125 0.122289 1.90631e-06 6.93955e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| the Conference ||| 0.000982801 0.122289 3.81262e-06 8.02148e-06 2.718 ||| 0-0 ||| 2035 524574 +los ||| the Congress ||| 0.0151515 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 66 524574 +los ||| the Consumers ' Association , ||| 0.333333 0.0444479 1.90631e-06 1.33965e-16 2.718 ||| 0-2 ||| 3 524574 +los ||| the Consumers ' Association ||| 0.166667 0.0444479 1.90631e-06 1.12335e-15 2.718 ||| 0-2 ||| 6 524574 +los ||| the Consumers ' ||| 1 0.0444479 1.90631e-06 1.30622e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| the Convention ||| 0.000249501 0.122289 1.90631e-06 1.38982e-05 2.718 ||| 0-0 ||| 4008 524574 +los ||| the Copenhagen ||| 0.0434783 0.122289 3.81262e-06 1.37266e-06 2.718 ||| 0-0 ||| 46 524574 +los ||| the Coptic ||| 0.25 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| the Council , but as a result ||| 1 0.122289 1.90631e-06 2.87893e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the Council , but as a ||| 1 0.122289 1.90631e-06 5.46805e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the Council , but as ||| 0.25 0.122289 1.90631e-06 1.2336e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| the Council , but ||| 0.00704225 0.122289 1.90631e-06 1.20889e-08 2.718 ||| 0-0 ||| 142 524574 +los ||| the Council , for ||| 0.0169492 0.122289 1.90631e-06 1.35956e-07 2.718 ||| 0-0 ||| 59 524574 +los ||| the Council , here ||| 0.333333 0.122289 1.90631e-06 3.58706e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the Council , you must be ||| 1 0.122289 1.90631e-06 1.5998e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the Council , you must ||| 1 0.122289 1.90631e-06 8.82751e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the Council , you ||| 0.125 0.122289 1.90631e-06 5.71138e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| the Council , ||| 0.000867115 0.122289 7.62523e-06 1.76894e-05 2.718 ||| 0-0 ||| 4613 524574 +los ||| the Council . - ( SL ) ||| 1 0.122289 1.90631e-06 6.81276e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| the Council . - ( SL ||| 1 0.122289 1.90631e-06 4.73997e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the Council . - ( ||| 0.166667 0.122289 1.90631e-06 1.63447e-12 2.718 ||| 0-0 ||| 6 524574 +los ||| the Council . - ||| 0.2 0.122289 1.90631e-06 1.69481e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| the Council . ||| 0.000330469 0.122289 1.90631e-06 4.49301e-07 2.718 ||| 0-0 ||| 3026 524574 +los ||| the Council Presidency to ||| 0.04 0.122289 1.90631e-06 6.55076e-10 2.718 ||| 0-0 ||| 25 524574 +los ||| the Council Presidency ||| 0.00268817 0.122289 1.90631e-06 7.37215e-09 2.718 ||| 0-0 ||| 372 524574 +los ||| the Council and the Commission ||| 0.000404531 0.122289 1.90631e-06 6.66261e-11 2.718 ||| 0-3 ||| 2472 524574 +los ||| the Council and the ||| 0.00032113 0.122289 1.90631e-06 1.14066e-07 2.718 ||| 0-3 ||| 3114 524574 +los ||| the Council found it difficult to reach ||| 1 0.122289 1.90631e-06 5.1594e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the Council found it difficult to ||| 1 0.122289 1.90631e-06 6.36963e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the Council found it difficult ||| 1 0.122289 1.90631e-06 7.16831e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the Council found it ||| 0.333333 0.122289 1.90631e-06 5.77159e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the Council found ||| 0.142857 0.122289 1.90631e-06 3.24553e-08 2.718 ||| 0-0 ||| 7 524574 +los ||| the Council had some initial ||| 1 0.122289 1.90631e-06 4.26526e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the Council had some ||| 1 0.122289 1.90631e-06 1.62177e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the Council had ||| 0.00869565 0.122289 1.90631e-06 1.48882e-07 2.718 ||| 0-0 ||| 115 524574 +los ||| the Council is ||| 0.000665336 0.122289 1.90631e-06 4.64892e-06 2.718 ||| 0-0 ||| 1503 524574 +los ||| the Council of Ministers open ||| 1 0.122289 1.90631e-06 3.0418e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the Council of Ministers ||| 0.000616523 0.122289 1.90631e-06 1.88697e-10 2.718 ||| 0-0 ||| 1622 524574 +los ||| the Council of ||| 0.0003367 0.122289 1.90631e-06 8.06398e-06 2.718 ||| 0-0 ||| 2970 524574 +los ||| the Council provides for ||| 0.25 0.122289 1.90631e-06 8.16271e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| the Council provides ||| 0.25 0.122289 1.90631e-06 1.06206e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the Council regarding ||| 0.0333333 0.122289 1.90631e-06 9.18182e-09 2.718 ||| 0-0 ||| 30 524574 +los ||| the Council say ||| 0.0178571 0.122289 1.90631e-06 1.41777e-07 2.718 ||| 0-0 ||| 56 524574 +los ||| the Council should ||| 0.00249377 0.122289 1.90631e-06 6.57264e-07 2.718 ||| 0-0 ||| 401 524574 +los ||| the Council that ||| 0.00291545 0.122289 1.90631e-06 2.4952e-06 2.718 ||| 0-0 ||| 343 524574 +los ||| the Council to be by ||| 1 0.122289 1.90631e-06 1.2541e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the Council to be ||| 0.0166667 0.122289 1.90631e-06 2.38871e-07 2.718 ||| 0-0 ||| 60 524574 +los ||| the Council to ||| 0.000505817 0.122289 1.90631e-06 1.31806e-05 2.718 ||| 0-0 ||| 1977 524574 +los ||| the Council would ||| 0.00636943 0.122289 1.90631e-06 8.70522e-07 2.718 ||| 0-0 ||| 157 524574 +los ||| the Council ||| 0.000532816 0.122289 5.33766e-05 0.000148333 2.718 ||| 0-0 ||| 52551 524574 +los ||| the Court 's ||| 0.0333333 0.0786353 1.90631e-06 1.23004e-07 2.718 ||| 0-0 0-2 ||| 30 524574 +los ||| the Court makes mention of the ||| 1 0.122289 1.90631e-06 1.10647e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| the Court of ||| 0.000312305 0.122289 1.90631e-06 1.09137e-06 2.718 ||| 0-0 ||| 3202 524574 +los ||| the Court ||| 0.00084513 0.122289 7.62523e-06 2.00752e-05 2.718 ||| 0-0 ||| 4733 524574 +los ||| the Croatians ||| 0.0555556 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 18 524574 +los ||| the Cypriot ||| 0.2 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| the Darwin Mounds ||| 0.4 0.204002 3.81262e-06 5.70512e-13 2.718 ||| 0-0 0-2 ||| 5 524574 +los ||| the Deauville deal ||| 0.25 0.122289 1.90631e-06 1.27494e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| the Deauville ||| 0.5 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the Dutch ||| 0.00337838 0.122289 1.90631e-06 7.12067e-06 2.718 ||| 0-0 ||| 296 524574 +los ||| the EAGGF ||| 0.016129 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 62 524574 +los ||| the EC ||| 0.00280112 0.122289 1.90631e-06 8.02148e-06 2.718 ||| 0-0 ||| 357 524574 +los ||| the ECU ||| 0.166667 0.122289 1.52505e-05 1.96033e-05 2.718 ||| 0-0 ||| 48 524574 +los ||| the EFTA ||| 0.333333 0.0857925 1.90631e-06 2.9169e-06 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| the EIB is mandated by the Council ||| 1 0.122289 1.90631e-06 4.92976e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| the EIB is mandated by the ||| 1 0.122289 1.90631e-06 1.42561e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| the EMU ||| 0.00564972 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-0 ||| 177 524574 +los ||| the EP ||| 0.00389105 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 257 524574 +los ||| the ESA ||| 0.0142857 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 70 524574 +los ||| the EU ' s exposure ||| 1 0.122289 1.90631e-06 9.01466e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the EU ' s ||| 0.0555556 0.051303 1.33442e-05 1.94398e-09 2.718 ||| 0-0 0-1 0-2 0-3 ||| 126 524574 +los ||| the EU ' ||| 0.0172414 0.122289 1.14379e-05 7.29049e-07 2.718 ||| 0-0 ||| 348 524574 +los ||| the EU 's overall ||| 0.142857 0.122289 1.90631e-06 2.55861e-11 2.718 ||| 0-0 ||| 7 524574 +los ||| the EU 's various ||| 1 0.0432535 1.90631e-06 2.23785e-10 2.718 ||| 0-0 0-1 0-2 0-3 ||| 1 524574 +los ||| the EU 's ||| 0.0177994 0.122289 4.19388e-05 4.04204e-07 2.718 ||| 0-0 ||| 1236 524574 +los ||| the EU , ||| 0.000447127 0.0633041 3.81262e-06 2.76544e-05 2.718 ||| 0-0 0-1 ||| 4473 524574 +los ||| the EU . it is clear that ||| 1 0.122289 1.90631e-06 2.00654e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the EU . it is clear ||| 1 0.122289 1.90631e-06 1.19283e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the EU . it is ||| 0.5 0.122289 1.90631e-06 3.58316e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the EU . it ||| 0.333333 0.122289 1.90631e-06 1.14328e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the EU . ||| 0.00034644 0.122289 3.81262e-06 6.42898e-07 2.718 ||| 0-0 ||| 5773 524574 +los ||| the EU Member ||| 0.00900901 0.042449 1.90631e-06 2.56938e-08 2.718 ||| 0-0 0-1 0-2 ||| 111 524574 +los ||| the EU and 95 % in my ||| 1 0.122289 1.90631e-06 1.49927e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| the EU and 95 % in ||| 1 0.122289 1.90631e-06 2.33132e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the EU and 95 % ||| 1 0.122289 1.90631e-06 1.08917e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the EU and 95 ||| 1 0.122289 1.90631e-06 1.91419e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the EU and ||| 0.000377216 0.122289 3.81262e-06 2.65859e-06 2.718 ||| 0-0 ||| 5302 524574 +los ||| the EU anticipated ||| 1 0.122289 1.90631e-06 1.82533e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the EU authorities ||| 0.0344828 0.122289 1.90631e-06 1.41357e-08 2.718 ||| 0-0 ||| 29 524574 +los ||| the EU has to ensure that ||| 1 0.122289 1.90631e-06 7.32267e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the EU has to ensure ||| 1 0.122289 1.90631e-06 4.35314e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the EU has to ||| 0.010989 0.122289 1.90631e-06 9.70815e-08 2.718 ||| 0-0 ||| 91 524574 +los ||| the EU has ||| 0.000606061 0.122289 1.90631e-06 1.09254e-06 2.718 ||| 0-0 ||| 1650 524574 +los ||| the EU is actually ||| 0.1 0.122289 1.90631e-06 2.74598e-09 2.718 ||| 0-0 ||| 10 524574 +los ||| the EU is ||| 0.000447828 0.122289 1.90631e-06 6.65207e-06 2.718 ||| 0-0 ||| 2233 524574 +los ||| the EU made ||| 0.04 0.122289 1.90631e-06 4.44616e-07 2.718 ||| 0-0 ||| 25 524574 +los ||| the EU of the ||| 0.0384615 0.062719 1.90631e-06 3.29015e-07 2.718 ||| 0-0 0-1 0-2 0-3 ||| 26 524574 +los ||| the EU which are ||| 0.111111 0.122289 1.90631e-06 2.73557e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| the EU which ||| 0.0106383 0.122289 1.90631e-06 1.80296e-06 2.718 ||| 0-0 ||| 94 524574 +los ||| the EU ||| 0.00305036 0.0633041 0.000291665 0.000231894 2.718 ||| 0-0 0-1 ||| 50158 524574 +los ||| the EU ’ s ||| 0.026087 0.122289 1.14379e-05 7.03388e-10 2.718 ||| 0-0 ||| 230 524574 +los ||| the EU ’ ||| 0.0057971 0.122289 7.62523e-06 3.69757e-07 2.718 ||| 0-0 ||| 690 524574 +los ||| the EUR 60 ||| 0.5 0.122289 1.90631e-06 5.39104e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the EUR ||| 0.481132 0.122289 9.72217e-05 0.000114703 2.718 ||| 0-0 ||| 106 524574 +los ||| the Earth 's ||| 0.5 0.122289 1.90631e-06 8.98595e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the Earth ||| 0.0123457 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 81 524574 +los ||| the East ||| 0.00299401 0.122289 1.90631e-06 1.28258e-05 2.718 ||| 0-0 ||| 334 524574 +los ||| the Eastern European ||| 0.0714286 0.122289 3.81262e-06 1.23357e-08 2.718 ||| 0-0 ||| 28 524574 +los ||| the Eastern ||| 0.0363636 0.122289 3.81262e-06 3.68902e-06 2.718 ||| 0-0 ||| 55 524574 +los ||| the English ||| 0.00675676 0.122289 1.90631e-06 6.64882e-06 2.718 ||| 0-0 ||| 148 524574 +los ||| the Environment , Public Health and Consumer ||| 0.00497512 0.122289 1.90631e-06 1.57441e-20 2.718 ||| 0-0 ||| 201 524574 +los ||| the Environment , Public Health and ||| 0.000563063 0.122289 1.90631e-06 1.44441e-16 2.718 ||| 0-0 ||| 1776 524574 +los ||| the Environment , Public Health ||| 0.000557414 0.122289 1.90631e-06 1.15314e-14 2.718 ||| 0-0 ||| 1794 524574 +los ||| the Environment , Public ||| 0.000569152 0.122289 1.90631e-06 1.08276e-10 2.718 ||| 0-0 ||| 1757 524574 +los ||| the Environment , ||| 0.000521648 0.122289 1.90631e-06 1.01287e-06 2.718 ||| 0-0 ||| 1917 524574 +los ||| the Environment to encompass ||| 1 0.122289 1.90631e-06 2.41505e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the Environment to ||| 0.1 0.122289 1.90631e-06 7.54702e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the Environment ||| 0.000745434 0.122289 3.81262e-06 8.49333e-06 2.718 ||| 0-0 ||| 2683 524574 +los ||| the Erika . ||| 0.0909091 0.122289 1.90631e-06 9.09516e-10 2.718 ||| 0-0 ||| 11 524574 +los ||| the Erika ||| 0.00952381 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 105 524574 +los ||| the Euro-Mediterranean Conference , ||| 0.166667 0.122289 1.90631e-06 1.33924e-12 2.718 ||| 0-0 ||| 6 524574 +los ||| the Euro-Mediterranean Conference ||| 0.03125 0.122289 1.90631e-06 1.12301e-11 2.718 ||| 0-0 ||| 32 524574 +los ||| the Euro-Mediterranean ||| 0.0666667 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| the Europe People 's Party ( Christian ||| 1 0.122289 1.90631e-06 1.10449e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| the Europe People 's Party ( ||| 0.5 0.122289 1.90631e-06 3.52873e-18 2.718 ||| 0-0 ||| 2 524574 +los ||| the Europe People 's Party ||| 0.166667 0.122289 1.90631e-06 3.65899e-15 2.718 ||| 0-0 ||| 6 524574 +los ||| the Europe People 's ||| 1 0.122289 1.90631e-06 2.42639e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the Europe People ||| 0.5 0.122289 1.90631e-06 1.27409e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the Europe ||| 0.002886 0.122289 7.62523e-06 0.000217052 2.718 ||| 0-0 ||| 1386 524574 +los ||| the European Aviation ||| 0.2 0.122289 1.90631e-06 2.5819e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| the European Central Bank ||| 0.000809717 0.122289 1.90631e-06 8.86035e-13 2.718 ||| 0-0 ||| 1235 524574 +los ||| the European Central ||| 0.0222222 0.122289 1.90631e-06 3.19868e-08 2.718 ||| 0-0 ||| 45 524574 +los ||| the European Communities ||| 0.00222717 0.122289 1.90631e-06 2.2233e-08 2.718 ||| 0-0 ||| 449 524574 +los ||| the European Council on this matter , ||| 1 0.122289 1.90631e-06 2.65322e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the European Council on this matter ||| 1 0.122289 1.90631e-06 2.22483e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the European Council on this ||| 0.5 0.122289 1.90631e-06 2.14442e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the European Council on ||| 0.0105263 0.122289 1.90631e-06 3.31881e-09 2.718 ||| 0-0 ||| 95 524574 +los ||| the European Council ||| 0.000213995 0.122289 1.90631e-06 4.96011e-07 2.718 ||| 0-0 ||| 4673 524574 +los ||| the European Globalisation Adjustment Fund ||| 0.0217391 0.122289 1.90631e-06 2.69019e-20 2.718 ||| 0-0 ||| 46 524574 +los ||| the European Globalisation Adjustment ||| 0.0909091 0.122289 1.90631e-06 1.73561e-15 2.718 ||| 0-0 ||| 11 524574 +los ||| the European Globalisation ||| 0.5 0.122289 1.90631e-06 1.57783e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the European Maritime Safety Agency ||| 0.010101 0.122289 1.90631e-06 3.17932e-19 2.718 ||| 0-0 ||| 99 524574 +los ||| the European Maritime Safety ||| 0.166667 0.122289 1.90631e-06 2.44563e-14 2.718 ||| 0-0 ||| 6 524574 +los ||| the European Maritime ||| 0.166667 0.122289 1.90631e-06 1.57783e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| the European Ombudsman ||| 0.00308642 0.122289 1.90631e-06 2.32371e-08 2.718 ||| 0-0 ||| 324 524574 +los ||| the European Parliament , ||| 0.000304229 0.122289 1.90631e-06 9.81869e-08 2.718 ||| 0-0 ||| 3287 524574 +los ||| the European Parliament is ||| 0.000860585 0.122289 1.90631e-06 2.58043e-08 2.718 ||| 0-0 ||| 1162 524574 +los ||| the European Parliament plays a key role ||| 0.5 0.122289 1.90631e-06 8.48173e-21 2.718 ||| 0-0 ||| 2 524574 +los ||| the European Parliament plays a key ||| 1 0.122289 1.90631e-06 3.8206e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the European Parliament plays a ||| 0.142857 0.122289 1.90631e-06 5.2553e-13 2.718 ||| 0-0 ||| 7 524574 +los ||| the European Parliament plays ||| 0.047619 0.122289 1.90631e-06 1.18561e-11 2.718 ||| 0-0 ||| 21 524574 +los ||| the European Parliament proposes ||| 0.0434783 0.122289 1.90631e-06 7.98638e-12 2.718 ||| 0-0 ||| 23 524574 +los ||| the European Parliament ||| 0.000445798 0.122289 2.28757e-05 8.23338e-07 2.718 ||| 0-0 ||| 26918 524574 +los ||| the European People ||| 0.025974 0.122289 3.81262e-06 8.41985e-08 2.718 ||| 0-0 ||| 77 524574 +los ||| the European Union 's ||| 0.00879765 0.122289 1.14379e-05 1.52262e-09 2.718 ||| 0-0 ||| 682 524574 +los ||| the European Union . ||| 7.13725e-05 0.122289 1.90631e-06 2.42177e-09 2.718 ||| 0-0 ||| 14011 524574 +los ||| the European Union and Russia ||| 0.00413223 0.122289 1.90631e-06 4.03596e-13 2.718 ||| 0-0 ||| 242 524574 +los ||| the European Union and the ||| 0.00047259 0.122289 1.90631e-06 4.29591e-09 2.718 ||| 0-0 0-4 ||| 2116 524574 +los ||| the European Union and ||| 0.000120758 0.122289 1.90631e-06 1.00148e-08 2.718 ||| 0-0 ||| 8281 524574 +los ||| the European Union to protect and develop ||| 1 0.122289 1.90631e-06 1.87893e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the European Union to protect and ||| 1 0.122289 1.90631e-06 3.07014e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the European Union to protect ||| 0.142857 0.122289 1.90631e-06 2.45104e-12 2.718 ||| 0-0 ||| 7 524574 +los ||| the European Union to ||| 0.000455166 0.122289 1.90631e-06 7.10446e-08 2.718 ||| 0-0 ||| 2197 524574 +los ||| the European Union would fall within ||| 0.333333 0.122289 1.90631e-06 9.38947e-17 2.718 ||| 0-0 ||| 3 524574 +los ||| the European Union would fall ||| 0.333333 0.122289 1.90631e-06 4.49042e-13 2.718 ||| 0-0 ||| 3 524574 +los ||| the European Union would ||| 0.0138889 0.122289 1.90631e-06 4.69219e-09 2.718 ||| 0-0 ||| 72 524574 +los ||| the European Union ||| 0.000413775 0.122289 6.67208e-05 7.99527e-07 2.718 ||| 0-0 ||| 84587 524574 +los ||| the European Union ’ s ||| 0.011236 0.0568066 1.90631e-06 6.81186e-13 2.718 ||| 0-0 0-3 0-4 ||| 89 524574 +los ||| the European United ||| 0.0333333 0.122289 1.90631e-06 1.75569e-07 2.718 ||| 0-0 ||| 30 524574 +los ||| the European citizens of the future ||| 0.5 0.122289 1.90631e-06 1.38593e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the European citizens of the ||| 0.2 0.122289 1.90631e-06 5.21813e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| the European citizens of ||| 0.0909091 0.122289 1.90631e-06 8.49971e-09 2.718 ||| 0-0 ||| 11 524574 +los ||| the European citizens ||| 0.0019305 0.122289 1.90631e-06 1.56348e-07 2.718 ||| 0-0 ||| 518 524574 +los ||| the European countries , ||| 0.030303 0.122289 1.90631e-06 6.49505e-08 2.718 ||| 0-0 ||| 33 524574 +los ||| the European countries ||| 0.00469484 0.122289 1.90631e-06 5.44637e-07 2.718 ||| 0-0 ||| 213 524574 +los ||| the European institutions ||| 0.000362188 0.122289 1.90631e-06 7.53053e-08 2.718 ||| 0-0 ||| 2761 524574 +los ||| the European one ||| 0.0833333 0.122289 1.90631e-06 5.97852e-06 2.718 ||| 0-0 ||| 12 524574 +los ||| the European parties are ||| 0.2 0.122289 1.90631e-06 1.59744e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| the European parties ||| 0.0138889 0.122289 1.90631e-06 1.05284e-07 2.718 ||| 0-0 ||| 72 524574 +los ||| the European ||| 0.0283987 0.122289 0.000564267 0.00143439 2.718 ||| 0-0 ||| 10423 524574 +los ||| the Executive ||| 0.0333333 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| the External Borders ||| 0.0125 0.122289 1.90631e-06 1.5554e-11 2.718 ||| 0-0 ||| 80 524574 +los ||| the External ||| 0.04 0.122289 1.90631e-06 1.111e-05 2.718 ||| 0-0 ||| 25 524574 +los ||| the Farmers ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the Fifteen ||| 0.00434783 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 230 524574 +los ||| the Financial Perspective ||| 0.00420168 0.122289 3.81262e-06 7.79843e-12 2.718 ||| 0-0 ||| 476 524574 +los ||| the Financial ||| 0.0232558 0.122289 3.81262e-06 4.33246e-06 2.718 ||| 0-0 ||| 86 524574 +los ||| the Finnish ||| 0.012987 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 77 524574 +los ||| the Freedom ||| 0.0555556 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| the French people ||| 0.0238095 0.122289 1.90631e-06 1.4121e-08 2.718 ||| 0-0 ||| 42 524574 +los ||| the French ||| 0.00894188 0.122289 1.14379e-05 1.6043e-05 2.718 ||| 0-0 ||| 671 524574 +los ||| the French-German ||| 0.5 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the Fund ||| 0.00395257 0.122289 1.90631e-06 6.64882e-06 2.718 ||| 0-0 ||| 253 524574 +los ||| the Funds to the new ||| 1 0.122289 1.90631e-06 5.23089e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| the Funds to the ||| 1 0.122289 1.90631e-06 8.7517e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| the Funds ||| 0.0105263 0.122289 1.90631e-06 1.6043e-05 2.718 ||| 0-0 ||| 95 524574 +los ||| the GBP ||| 1 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| the GUE / NGL Group . - ||| 0.0666667 0.122289 1.90631e-06 4.3128e-22 2.718 ||| 0-0 ||| 15 524574 +los ||| the GUE / NGL Group . ||| 0.0526316 0.122289 1.90631e-06 1.14334e-19 2.718 ||| 0-0 ||| 19 524574 +los ||| the GUE / NGL Group ||| 0.00632911 0.122289 1.90631e-06 3.77465e-17 2.718 ||| 0-0 ||| 158 524574 +los ||| the GUE / NGL ||| 0.0172414 0.122289 1.90631e-06 1.16036e-13 2.718 ||| 0-0 ||| 58 524574 +los ||| the GUE / ||| 0.00403226 0.122289 1.90631e-06 3.19658e-09 2.718 ||| 0-0 ||| 248 524574 +los ||| the GUE ||| 0.00985222 0.122289 3.81262e-06 1.38982e-05 2.718 ||| 0-0 ||| 203 524574 +los ||| the Generalised ||| 0.0408163 0.122289 3.81262e-06 1.26542e-05 2.718 ||| 0-0 ||| 49 524574 +los ||| the German ||| 0.00490196 0.122289 1.90631e-06 1.03378e-05 2.718 ||| 0-0 ||| 204 524574 +los ||| the Government ||| 0.0014245 0.122289 1.90631e-06 2.06757e-05 2.718 ||| 0-0 ||| 702 524574 +los ||| the Green ||| 0.0033557 0.122289 1.90631e-06 9.43704e-06 2.718 ||| 0-0 ||| 298 524574 +los ||| the Group of the European ||| 0.00230947 0.122289 1.90631e-06 1.5573e-09 2.718 ||| 0-0 ||| 433 524574 +los ||| the Group of the Party of European ||| 0.0181818 0.062853 1.90631e-06 4.35057e-15 2.718 ||| 0-0 0-6 ||| 55 524574 +los ||| the Group of the Party of ||| 0.0124481 0.122289 5.71893e-06 3.81796e-12 2.718 ||| 0-0 ||| 241 524574 +los ||| the Group of the Party ||| 0.0160643 0.122289 7.62523e-06 7.02296e-11 2.718 ||| 0-0 ||| 249 524574 +los ||| the Group of the ||| 0.00706138 0.122289 2.4782e-05 4.65714e-07 2.718 ||| 0-3 ||| 1841 524574 +los ||| the Group of ||| 0.00234375 0.122289 1.14379e-05 7.58592e-06 2.718 ||| 0-0 ||| 2560 524574 +los ||| the Group ||| 0.00395859 0.122289 2.4782e-05 0.000139539 2.718 ||| 0-0 ||| 3284 524574 +los ||| the Haitian ||| 0.166667 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the Heads of State , ||| 0.2 0.122289 1.90631e-06 2.17279e-12 2.718 ||| 0-0 ||| 5 524574 +los ||| the Heads of State ||| 0.000952381 0.122289 1.90631e-06 1.82197e-11 2.718 ||| 0-0 ||| 1050 524574 +los ||| the Heads of ||| 0.000794913 0.122289 1.90631e-06 1.51579e-07 2.718 ||| 0-0 ||| 1258 524574 +los ||| the Heads ||| 0.000783085 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-0 ||| 1277 524574 +los ||| the Hmong people ||| 0.166667 0.0894672 1.90631e-06 6.7687e-10 2.718 ||| 0-2 ||| 6 524574 +los ||| the Honourable ||| 0.0243902 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 41 524574 +los ||| the House , ||| 0.00170068 0.122289 1.90631e-06 1.27939e-05 2.718 ||| 0-0 ||| 588 524574 +los ||| the House of the ||| 0.0142857 0.122289 1.90631e-06 3.58054e-07 2.718 ||| 0-3 ||| 70 524574 +los ||| the House once again of the ||| 1 0.122289 1.90631e-06 8.473e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the House once again of ||| 0.25 0.122289 1.90631e-06 1.38015e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| the House once again ||| 0.1 0.122289 1.90631e-06 2.53872e-11 2.718 ||| 0-0 ||| 10 524574 +los ||| the House once more ||| 0.142857 0.122289 1.90631e-06 1.00254e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| the House once ||| 0.25 0.122289 3.81262e-06 4.38998e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| the House to the ||| 0.0188679 0.122289 1.90631e-06 4.08919e-06 2.718 ||| 0-0 0-3 ||| 53 524574 +los ||| the House ||| 0.00211094 0.122289 3.43136e-05 0.000107282 2.718 ||| 0-0 ||| 8527 524574 +los ||| the IND / DEM Group ||| 0.0416667 0.122289 1.90631e-06 3.8821e-18 2.718 ||| 0-0 ||| 24 524574 +los ||| the IND / DEM ||| 0.0714286 0.122289 1.90631e-06 1.19339e-14 2.718 ||| 0-0 ||| 14 524574 +los ||| the IND / ||| 0.0344828 0.122289 1.90631e-06 1.06553e-09 2.718 ||| 0-0 ||| 29 524574 +los ||| the IND ||| 0.0666667 0.122289 3.81262e-06 4.63273e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| the IT ||| 0.05 0.122289 1.90631e-06 1.09813e-05 2.718 ||| 0-0 ||| 20 524574 +los ||| the Instrument ||| 0.02 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 50 524574 +los ||| the Intergovernmental Conference ||| 0.000507099 0.122289 1.90631e-06 4.01074e-11 2.718 ||| 0-0 ||| 1972 524574 +los ||| the Intergovernmental ||| 0.027027 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 37 524574 +los ||| the Internal Market , ||| 0.00537634 0.122289 1.90631e-06 4.23682e-11 2.718 ||| 0-0 ||| 186 524574 +los ||| the Internal Market and ||| 0.00253807 0.122289 1.90631e-06 4.45013e-12 2.718 ||| 0-0 ||| 394 524574 +los ||| the Internal Market ||| 0.00390244 0.122289 7.62523e-06 3.55274e-10 2.718 ||| 0-0 ||| 1025 524574 +los ||| the Internal ||| 0.00434311 0.122289 7.62523e-06 1.18821e-05 2.718 ||| 0-0 ||| 921 524574 +los ||| the International ||| 0.011976 0.122289 3.81262e-06 1.34263e-05 2.718 ||| 0-0 ||| 167 524574 +los ||| the Internet for carrying out commercial transactions ||| 1 0.122289 1.90631e-06 2.72646e-24 2.718 ||| 0-0 ||| 1 524574 +los ||| the Internet for carrying out commercial ||| 1 0.122289 1.90631e-06 2.5245e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the Internet for carrying out ||| 1 0.122289 1.90631e-06 1.32173e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the Internet for carrying ||| 1 0.122289 1.90631e-06 3.45063e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the Internet for ||| 0.02 0.122289 1.90631e-06 5.70351e-08 2.718 ||| 0-0 ||| 50 524574 +los ||| the Internet ||| 0.000569152 0.122289 3.81262e-06 7.42094e-06 2.718 ||| 0-0 ||| 3514 524574 +los ||| the Irish ||| 0.00423729 0.122289 3.81262e-06 1.09813e-05 2.718 ||| 0-0 ||| 472 524574 +los ||| the Islamic ||| 0.037037 0.122289 1.90631e-06 3.08849e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| the Italian and ||| 0.0833333 0.122289 1.90631e-06 1.00476e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| the Italian ||| 0.00628931 0.122289 1.90631e-06 8.02148e-06 2.718 ||| 0-0 ||| 159 524574 +los ||| the JPA 's modus operandi ||| 1 0.122289 1.90631e-06 1.44102e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| the JPA 's modus ||| 1 0.122289 1.90631e-06 8.00566e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the JPA 's ||| 1 0.122289 1.90631e-06 5.71833e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the JPA ||| 0.0121951 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 82 524574 +los ||| the Jesuit Superior ||| 1 0.122289 1.90631e-06 6.8633e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the Jesuit ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the Joint Aviation ||| 1 0.122289 1.90631e-06 8.8794e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the Joint ||| 0.0833333 0.122289 7.62523e-06 4.933e-06 2.718 ||| 0-0 ||| 48 524574 +los ||| the Kenyan ||| 0.333333 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the Kurdish ||| 0.0625 0.122289 3.81262e-06 1.24397e-06 2.718 ||| 0-0 ||| 32 524574 +los ||| the Kyoto ||| 0.0606061 0.122289 3.81262e-06 2.01609e-06 2.718 ||| 0-0 ||| 33 524574 +los ||| the Laogai camps ||| 1 0.101685 1.90631e-06 1.40183e-11 2.718 ||| 0-0 0-2 ||| 1 524574 +los ||| the League of ||| 0.0185185 0.122289 1.90631e-06 4.19756e-08 2.718 ||| 0-0 ||| 54 524574 +los ||| the League ||| 0.016129 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 62 524574 +los ||| the Left ||| 0.00393701 0.122289 1.90631e-06 1.59143e-05 2.718 ||| 0-0 ||| 254 524574 +los ||| the Legislature ||| 0.2 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| the Lib ||| 1 0.122289 3.81262e-06 3.00269e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the Lisbon Strategy that ||| 0.0909091 0.122289 1.90631e-06 7.13636e-13 2.718 ||| 0-0 ||| 11 524574 +los ||| the Lisbon Strategy ||| 0.000487092 0.122289 1.90631e-06 4.24238e-11 2.718 ||| 0-0 ||| 2053 524574 +los ||| the Lisbon ||| 0.0104167 0.122289 3.81262e-06 9.86599e-06 2.718 ||| 0-0 ||| 192 524574 +los ||| the London ||| 0.0454545 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 22 524574 +los ||| the Luxemburgish language ||| 1 0.122289 1.90631e-06 8.03006e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the Luxemburgish ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the MGPs , ||| 0.5 0.122289 1.90631e-06 2.0462e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the MGPs ||| 0.125 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the Management ||| 0.015873 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 63 524574 +los ||| the Media , ||| 0.0128205 0.122289 1.90631e-06 8.28712e-07 2.718 ||| 0-0 ||| 78 524574 +los ||| the Media ||| 0.0027027 0.122289 1.90631e-06 6.94909e-06 2.718 ||| 0-0 ||| 370 524574 +los ||| the Medical ||| 0.5 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the Member ' s ||| 0.25 0.122289 1.90631e-06 1.44433e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the Member ' ||| 0.0833333 0.122289 1.90631e-06 7.59254e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| the Member State that ||| 0.04 0.122289 1.90631e-06 4.46936e-10 2.718 ||| 0-0 ||| 25 524574 +los ||| the Member State ||| 0.00344828 0.122289 5.71893e-06 2.65692e-08 2.718 ||| 0-0 ||| 870 524574 +los ||| the Member States ' current ||| 1 0.0444479 1.90631e-06 1.32335e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| the Member States ' standard ||| 0.5 0.122289 1.90631e-06 1.70651e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the Member States ' ||| 0.0225564 0.0444479 1.14379e-05 8.03003e-11 2.718 ||| 0-3 ||| 266 524574 +los ||| the Member States , ||| 0.000469814 0.122289 3.81262e-06 1.25791e-08 2.718 ||| 0-0 ||| 4257 524574 +los ||| the Member States are , in other ||| 1 0.122289 1.90631e-06 5.29242e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the Member States are , in ||| 0.333333 0.122289 1.90631e-06 4.08524e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| the Member States are , ||| 0.111111 0.122289 1.90631e-06 1.90859e-10 2.718 ||| 0-0 ||| 9 524574 +los ||| the Member States are ||| 0.00126263 0.122289 1.90631e-06 1.60043e-09 2.718 ||| 0-0 ||| 792 524574 +los ||| the Member States to sign or ratify ||| 1 0.0007388 1.90631e-06 8.60694e-23 2.718 ||| 0-1 ||| 1 524574 +los ||| the Member States to sign or ||| 1 0.0007388 1.90631e-06 1.72139e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| the Member States to sign ||| 0.0769231 0.0007388 1.90631e-06 1.50563e-14 2.718 ||| 0-1 ||| 13 524574 +los ||| the Member States to ||| 0.000348311 0.0007388 1.90631e-06 2.88435e-10 2.718 ||| 0-1 ||| 2871 524574 +los ||| the Member States would have ||| 0.0666667 0.122289 1.90631e-06 7.40354e-12 2.718 ||| 0-0 ||| 15 524574 +los ||| the Member States would ||| 0.0196078 0.122289 1.90631e-06 6.19035e-10 2.718 ||| 0-0 ||| 51 524574 +los ||| the Member States ||| 0.000708677 0.122289 4.76577e-05 1.05481e-07 2.718 ||| 0-0 ||| 35277 524574 +los ||| the Member for ||| 0.0384615 0.122289 1.90631e-06 1.69886e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| the Member ||| 0.0168476 0.122289 8.57839e-05 0.000221041 2.718 ||| 0-0 ||| 2671 524574 +los ||| the Members ' ||| 0.0285714 0.122289 1.90631e-06 2.1733e-07 2.718 ||| 0-0 ||| 35 524574 +los ||| the Members of the ||| 0.00174216 0.122289 1.90631e-06 2.11167e-07 2.718 ||| 0-3 ||| 574 524574 +los ||| the Members who ||| 0.00236967 0.122289 1.90631e-06 5.58051e-08 2.718 ||| 0-0 ||| 422 524574 +los ||| the Members ||| 0.00337838 0.145584 1.90631e-05 0.00206946 2.718 ||| 0-0 0-1 ||| 2960 524574 +los ||| the Middle Ages , ||| 0.0384615 0.122289 1.90631e-06 2.29175e-13 2.718 ||| 0-0 ||| 26 524574 +los ||| the Middle Ages ||| 0.0114943 0.122289 1.90631e-06 1.92172e-12 2.718 ||| 0-0 ||| 87 524574 +los ||| the Middle East ||| 0.000395257 0.122289 1.90631e-06 1.43649e-10 2.718 ||| 0-0 ||| 2530 524574 +los ||| the Middle ||| 0.00126636 0.122289 5.71893e-06 4.80431e-06 2.718 ||| 0-0 ||| 2369 524574 +los ||| the Millennium ||| 0.000700771 0.0739651 1.90631e-06 1.62574e-05 2.718 ||| 0-0 0-1 ||| 1427 524574 +los ||| the Ministers ||| 0.00606061 0.122289 3.81262e-06 1.00376e-05 2.718 ||| 0-0 ||| 330 524574 +los ||| the Mladices ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the Morillon ||| 1 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the NATO ||| 0.015873 0.122289 1.90631e-06 3.08849e-06 2.718 ||| 0-0 ||| 63 524574 +los ||| the Netherlands . no ||| 1 0.122289 1.90631e-06 1.56764e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the Netherlands . ||| 0.00275482 0.122289 1.90631e-06 2.01393e-08 2.718 ||| 0-0 ||| 363 524574 +los ||| the Netherlands will ||| 0.0909091 0.122289 1.90631e-06 5.75203e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| the Netherlands ||| 0.00105708 0.122289 5.71893e-06 6.64882e-06 2.718 ||| 0-0 ||| 2838 524574 +los ||| the North East of ||| 0.25 0.122289 1.90631e-06 1.45728e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| the North East ||| 0.2 0.122289 1.90631e-06 2.68059e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| the North ||| 0.0120482 0.122289 5.71893e-06 8.96519e-06 2.718 ||| 0-0 ||| 249 524574 +los ||| the Northern Dimension , ||| 0.025641 0.122289 1.90631e-06 5.06435e-13 2.718 ||| 0-0 ||| 39 524574 +los ||| the Northern Dimension ||| 0.00344828 0.122289 1.90631e-06 4.24667e-12 2.718 ||| 0-0 ||| 290 524574 +los ||| the Northern ||| 0.025641 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-0 ||| 39 524574 +los ||| the OCTs , the ||| 0.25 0.122289 1.90631e-06 4.3967e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the OCTs , ||| 0.111111 0.122289 1.90631e-06 7.16171e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| the OCTs ||| 0.030303 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 33 524574 +los ||| the Objective ||| 0.0222222 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-0 ||| 45 524574 +los ||| the Office ||| 0.00469484 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 213 524574 +los ||| the Olympic ||| 0.166667 0.0714073 5.71893e-06 1.04236e-05 2.718 ||| 0-0 0-1 ||| 18 524574 +los ||| the Overseas ||| 0.5 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the PPE Group ||| 0.00342466 0.122289 1.90631e-06 8.51191e-10 2.718 ||| 0-0 ||| 292 524574 +los ||| the PPE ||| 0.00884956 0.122289 3.81262e-06 2.61663e-06 2.718 ||| 0-0 ||| 226 524574 +los ||| the PSE Group . - ||| 0.0714286 0.122289 1.90631e-06 5.56423e-14 2.718 ||| 0-0 ||| 14 524574 +los ||| the PSE Group . ||| 0.03125 0.122289 1.90631e-06 1.4751e-11 2.718 ||| 0-0 ||| 32 524574 +los ||| the PSE Group ||| 0.00350877 0.122289 1.90631e-06 4.86993e-09 2.718 ||| 0-0 ||| 285 524574 +los ||| the PSE ||| 0.00740741 0.122289 1.90631e-06 1.49706e-05 2.718 ||| 0-0 ||| 135 524574 +los ||| the Pakistan ||| 0.25 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| the Palestinian ||| 0.0124224 0.122289 3.81262e-06 5.57643e-06 2.718 ||| 0-0 ||| 161 524574 +los ||| the Palestinians ||| 0.00387973 0.122289 7.62523e-06 2.48795e-06 2.718 ||| 0-0 ||| 1031 524574 +los ||| the Parliament ||| 0.00223547 0.122289 5.71893e-06 0.000246221 2.718 ||| 0-0 ||| 1342 524574 +los ||| the Parliamentary ||| 0.0277778 0.122289 1.90631e-06 4.46115e-06 2.718 ||| 0-0 ||| 36 524574 +los ||| the Party of ||| 0.0338983 0.122289 7.62523e-06 3.51662e-06 2.718 ||| 0-0 ||| 118 524574 +los ||| the Party ||| 0.0344828 0.122289 9.53154e-06 6.46866e-05 2.718 ||| 0-0 ||| 145 524574 +los ||| the People ||| 0.0465116 0.122289 3.81262e-06 2.51797e-05 2.718 ||| 0-0 ||| 43 524574 +los ||| the People ’ s Mujahedin ||| 1 0.122289 1.90631e-06 3.33782e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the People ’ s ||| 1 0.122289 1.90631e-06 8.34456e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the People ’ ||| 0.5 0.122289 1.90631e-06 4.38656e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the Polish ||| 0.0192308 0.122289 1.90631e-06 4.33246e-06 2.718 ||| 0-0 ||| 52 524574 +los ||| the Popular Party and the Spanish Socialist ||| 1 0.122289 1.90631e-06 1.01277e-23 2.718 ||| 0-0 ||| 1 524574 +los ||| the Popular Party and the Spanish ||| 1 0.122289 1.90631e-06 1.2202e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the Popular Party and the ||| 1 0.122289 1.90631e-06 5.47175e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the Popular Party and ||| 1 0.122289 1.90631e-06 8.91284e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the Popular Party ||| 0.125 0.122289 1.90631e-06 7.11553e-11 2.718 ||| 0-0 ||| 8 524574 +los ||| the Popular ||| 0.166667 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the Portuguese / Chinese ||| 1 0.122289 1.90631e-06 1.69064e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the Portuguese / ||| 1 0.122289 1.90631e-06 1.4207e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the Portuguese ||| 0.0166667 0.122289 5.71893e-06 6.17697e-06 2.718 ||| 0-0 ||| 180 524574 +los ||| the Presidency ||| 0.00020429 0.122289 1.90631e-06 2.13191e-05 2.718 ||| 0-0 ||| 4895 524574 +los ||| the President of the ||| 0.000370233 0.122289 1.90631e-06 2.07588e-07 2.718 ||| 0-3 ||| 2701 524574 +los ||| the President should be ||| 0.25 0.122289 1.90631e-06 4.99471e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the President should ||| 0.0666667 0.122289 1.90631e-06 2.75602e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| the President ||| 0.000136855 0.122289 1.90631e-06 6.21987e-05 2.718 ||| 0-0 ||| 7307 524574 +los ||| the President-in-Office ||| 0.000354359 0.122289 1.90631e-06 2.25202e-05 2.718 ||| 0-0 ||| 2822 524574 +los ||| the Prime ||| 0.00152207 0.122289 1.90631e-06 6.47724e-06 2.718 ||| 0-0 ||| 657 524574 +los ||| the Protection of ||| 0.00657895 0.122289 3.81262e-06 8.30184e-07 2.718 ||| 0-0 ||| 304 524574 +los ||| the Protection ||| 0.012945 0.122289 7.62523e-06 1.52708e-05 2.718 ||| 0-0 ||| 309 524574 +los ||| the RACs ||| 0.0384615 0.15513 1.90631e-06 1.04236e-05 2.718 ||| 0-0 0-1 ||| 26 524574 +los ||| the Regional ||| 0.125 0.122289 1.90631e-06 5.57643e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| the Renault ||| 0.5 0.122289 3.81262e-06 7.72121e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| the Renault-linked ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the Republic of ||| 0.00127877 0.122289 3.81262e-06 1.10769e-06 2.718 ||| 0-0 ||| 1564 524574 +los ||| the Republic ||| 0.00113186 0.122289 3.81262e-06 2.03754e-05 2.718 ||| 0-0 ||| 1767 524574 +los ||| the Rights of ||| 0.00813008 0.122289 1.90631e-06 1.92155e-06 2.718 ||| 0-0 ||| 123 524574 +los ||| the Rights ||| 0.00310559 0.122289 1.90631e-06 3.5346e-05 2.718 ||| 0-0 ||| 322 524574 +los ||| the Roma group ||| 0.5 0.122289 1.90631e-06 6.18795e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the Roma ||| 0.00200602 0.122289 3.81262e-06 4.80431e-06 2.718 ||| 0-0 ||| 997 524574 +los ||| the Rule ||| 0.00714286 0.122289 1.90631e-06 5.23327e-06 2.718 ||| 0-0 ||| 140 524574 +los ||| the Rules ||| 0.00153139 0.122289 1.90631e-06 3.0413e-05 2.718 ||| 0-0 ||| 653 524574 +los ||| the Russian ||| 0.00581395 0.122289 1.90631e-06 8.02148e-06 2.718 ||| 0-0 ||| 172 524574 +los ||| the S & D Group ||| 0.0166667 0.122289 1.90631e-06 5.04364e-19 2.718 ||| 0-0 ||| 60 524574 +los ||| the S & D ||| 0.0163934 0.122289 1.90631e-06 1.55046e-15 2.718 ||| 0-0 ||| 61 524574 +los ||| the S & ||| 0.00552486 0.122289 1.90631e-06 1.53511e-10 2.718 ||| 0-0 ||| 181 524574 +los ||| the S ||| 0.00558659 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 179 524574 +los ||| the Safe Harbour ||| 0.25 0.122289 1.90631e-06 4.20377e-13 2.718 ||| 0-0 ||| 4 524574 +los ||| the Safe ||| 0.166667 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the Sea indicate ||| 0.5 0.122289 1.90631e-06 2.07615e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the Sea ||| 0.0555556 0.122289 1.90631e-06 9.43704e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| the Serbian population , however ||| 0.166667 0.122289 1.90631e-06 4.87881e-15 2.718 ||| 0-0 ||| 6 524574 +los ||| the Serbian population , ||| 0.125 0.122289 1.90631e-06 4.40445e-12 2.718 ||| 0-0 ||| 8 524574 +los ||| the Serbian population ||| 0.047619 0.122289 1.90631e-06 3.69331e-11 2.718 ||| 0-0 ||| 21 524574 +los ||| the Serbian ||| 0.0232558 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 43 524574 +los ||| the Slovenian ||| 0.0952381 0.122289 3.81262e-06 1.07239e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| the Social ||| 0.0416667 0.122289 1.90631e-06 9.26546e-06 2.718 ||| 0-0 ||| 24 524574 +los ||| the Socialist Party , is ||| 0.333333 0.122289 1.90631e-06 2.0067e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| the Socialist Party , ||| 0.0714286 0.122289 1.90631e-06 6.40277e-11 2.718 ||| 0-0 ||| 14 524574 +los ||| the Socialist Party ||| 0.0149254 0.122289 1.90631e-06 5.36899e-10 2.718 ||| 0-0 ||| 67 524574 +los ||| the Socialist ||| 0.0212766 0.122289 3.81262e-06 3.56034e-06 2.718 ||| 0-0 ||| 94 524574 +los ||| the South Africans ||| 0.0588235 0.122289 1.90631e-06 3.70618e-12 2.718 ||| 0-0 ||| 17 524574 +los ||| the South ||| 0.00294985 0.122289 1.90631e-06 9.26546e-06 2.718 ||| 0-0 ||| 339 524574 +los ||| the Southern Neighbourhood is that it is ||| 1 0.122289 1.90631e-06 3.17628e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the Southern Neighbourhood is that it ||| 1 0.122289 1.90631e-06 1.01346e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the Southern Neighbourhood is that ||| 1 0.122289 1.90631e-06 5.69895e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the Southern Neighbourhood is ||| 0.5 0.122289 1.90631e-06 3.38788e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the Southern Neighbourhood ||| 0.1 0.122289 1.90631e-06 1.08097e-12 2.718 ||| 0-0 ||| 10 524574 +los ||| the Southern ||| 0.0169492 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 59 524574 +los ||| the Soviet ||| 0.030303 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 33 524574 +los ||| the Spanish ||| 0.00395257 0.122289 1.90631e-06 9.56573e-06 2.718 ||| 0-0 ||| 253 524574 +los ||| the Stability ||| 0.000775194 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 1290 524574 +los ||| the State ||| 0.00298507 0.122289 3.81262e-06 5.15605e-05 2.718 ||| 0-0 ||| 670 524574 +los ||| the States ' ||| 0.142857 0.0833685 1.90631e-06 1.08883e-06 2.718 ||| 0-0 0-2 ||| 7 524574 +los ||| the Status ||| 0.030303 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 33 524574 +los ||| the Statute ||| 0.00248756 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-0 ||| 402 524574 +los ||| the Strasbourg ||| 0.0714286 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| the Structural ||| 0.00653595 0.0996062 1.90631e-06 0.000205599 2.718 ||| 0-0 0-1 ||| 153 524574 +los ||| the Swedes visited ||| 0.25 0.148645 1.90631e-06 9.21741e-11 2.718 ||| 0-0 0-1 ||| 4 524574 +los ||| the Swedes ||| 0.0185185 0.148645 1.90631e-06 1.16676e-05 2.718 ||| 0-0 0-1 ||| 54 524574 +los ||| the Swedish authorities ||| 0.0238095 0.122289 1.90631e-06 5.45658e-10 2.718 ||| 0-0 ||| 42 524574 +los ||| the Swedish ||| 0.0152672 0.122289 3.81262e-06 8.19307e-06 2.718 ||| 0-0 ||| 131 524574 +los ||| the Swiss ||| 0.0104167 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 96 524574 +los ||| the Tamil freedom fighters ||| 0.333333 0.0719554 1.90631e-06 2.56862e-16 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| the Tamil freedom ||| 0.333333 0.0719554 1.90631e-06 1.42701e-10 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| the Tamil ||| 0.111111 0.0719554 1.90631e-06 1.67293e-06 2.718 ||| 0-0 0-1 ||| 9 524574 +los ||| the Tobin Tax , which would affect ||| 1 0.122289 1.90631e-06 2.62568e-23 2.718 ||| 0-0 ||| 1 524574 +los ||| the Tobin Tax , which would ||| 0.333333 0.122289 1.90631e-06 1.12209e-18 2.718 ||| 0-0 ||| 3 524574 +los ||| the Tobin Tax , which ||| 0.5 0.122289 1.90631e-06 1.91198e-16 2.718 ||| 0-0 ||| 2 524574 +los ||| the Tobin Tax , ||| 0.2 0.122289 1.90631e-06 2.25082e-14 2.718 ||| 0-0 ||| 5 524574 +los ||| the Tobin Tax ||| 0.0769231 0.122289 1.90631e-06 1.88741e-13 2.718 ||| 0-0 ||| 13 524574 +los ||| the Tobin ||| 0.166667 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the Treasury ||| 0.0434783 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 23 524574 +los ||| the Treaties are absurd . this abdication ||| 1 0.122289 1.90631e-06 2.33462e-24 2.718 ||| 0-0 ||| 1 524574 +los ||| the Treaties are absurd . this ||| 1 0.122289 1.90631e-06 5.83656e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the Treaties are absurd . ||| 1 0.122289 1.90631e-06 9.03296e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the Treaties are absurd ||| 1 0.122289 1.90631e-06 2.98216e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the Treaties are ||| 0.0357143 0.122289 1.90631e-06 5.14166e-08 2.718 ||| 0-0 ||| 28 524574 +los ||| the Treaties but ||| 0.2 0.122289 1.90631e-06 2.31588e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| the Treaties ||| 0.00183824 0.122289 7.62523e-06 3.38875e-06 2.718 ||| 0-0 ||| 2176 524574 +los ||| the Treaty , ||| 0.00165289 0.122289 1.90631e-06 4.37887e-06 2.718 ||| 0-0 ||| 605 524574 +los ||| the Treaty of Amsterdam concerning the ||| 0.5 0.122289 1.90631e-06 7.83821e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| the Treaty of Amsterdam concerning ||| 0.5 0.122289 1.90631e-06 1.27675e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| the Treaty of Amsterdam ||| 0.00108932 0.122289 1.90631e-06 2.07602e-11 2.718 ||| 0-0 ||| 918 524574 +los ||| the Treaty of ||| 0.00048158 0.122289 3.81262e-06 1.99617e-06 2.718 ||| 0-0 ||| 4153 524574 +los ||| the Treaty ||| 0.000580248 0.122289 9.53154e-06 3.67187e-05 2.718 ||| 0-0 ||| 8617 524574 +los ||| the Turk ||| 0.5 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the Turkish Cypriot newspaper ||| 0.5 0.122289 1.90631e-06 3.19875e-16 2.718 ||| 0-0 ||| 2 524574 +los ||| the Turkish Cypriot ||| 0.0555556 0.122289 1.90631e-06 5.51509e-11 2.718 ||| 0-0 ||| 18 524574 +los ||| the Turkish administrators ||| 0.333333 0.193333 1.90631e-06 5.17643e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| the Turkish ||| 0.0235294 0.122289 7.62523e-06 1.28258e-05 2.718 ||| 0-0 ||| 170 524574 +los ||| the UEN Group . ||| 0.0833333 0.122289 1.90631e-06 4.73385e-12 2.718 ||| 0-0 ||| 12 524574 +los ||| the UEN Group ||| 0.0181818 0.122289 1.90631e-06 1.56284e-09 2.718 ||| 0-0 ||| 55 524574 +los ||| the UEN ||| 0.0416667 0.122289 1.90631e-06 4.80431e-06 2.718 ||| 0-0 ||| 24 524574 +los ||| the UK , ||| 0.0022779 0.122289 1.90631e-06 8.84982e-07 2.718 ||| 0-0 ||| 439 524574 +los ||| the UK ||| 0.000874126 0.122289 3.81262e-06 7.42094e-06 2.718 ||| 0-0 ||| 2288 524574 +los ||| the UN ||| 0.000298864 0.122289 1.90631e-06 1.78875e-05 2.718 ||| 0-0 ||| 3346 524574 +los ||| the US $ ||| 1 0.122289 1.90631e-06 7.89451e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the US was ||| 0.0714286 0.122289 1.90631e-06 5.75198e-08 2.718 ||| 0-0 ||| 14 524574 +los ||| the US ||| 0.00170648 0.122289 9.53154e-06 1.83593e-05 2.718 ||| 0-0 ||| 2930 524574 +los ||| the USA ||| 0.000355745 0.122289 1.90631e-06 5.40485e-06 2.718 ||| 0-0 ||| 2811 524574 +los ||| the Ukrainian people ||| 0.0116279 0.122289 1.90631e-06 6.79621e-10 2.718 ||| 0-0 ||| 86 524574 +los ||| the Ukrainian ||| 0.0588235 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 17 524574 +los ||| the Union ' s ||| 0.0192308 0.122289 3.81262e-06 1.56233e-09 2.718 ||| 0-0 ||| 104 524574 +los ||| the Union ' ||| 0.0113208 0.122289 5.71893e-06 8.21285e-07 2.718 ||| 0-0 ||| 265 524574 +los ||| the Union 's ||| 0.0118343 0.122289 1.52505e-05 4.55343e-07 2.718 ||| 0-0 ||| 676 524574 +los ||| the Union , ||| 0.000815661 0.122289 3.81262e-06 2.85138e-05 2.718 ||| 0-0 ||| 2452 524574 +los ||| the Union and ||| 0.000522739 0.122289 1.90631e-06 2.99495e-06 2.718 ||| 0-0 ||| 1913 524574 +los ||| the Union can ||| 0.00497512 0.122289 1.90631e-06 7.11156e-07 2.718 ||| 0-0 ||| 201 524574 +los ||| the Union for Europe of the ||| 0.0384615 0.122289 1.90631e-06 3.10339e-12 2.718 ||| 0-0 ||| 26 524574 +los ||| the Union for Europe of ||| 0.0357143 0.122289 1.90631e-06 5.05505e-11 2.718 ||| 0-0 ||| 28 524574 +los ||| the Union for Europe ||| 0.0285714 0.122289 1.90631e-06 9.29852e-10 2.718 ||| 0-0 ||| 35 524574 +los ||| the Union for ||| 0.00162866 0.122289 1.90631e-06 1.83765e-06 2.718 ||| 0-0 ||| 614 524574 +los ||| the Union in ||| 0.00235849 0.122289 1.90631e-06 5.11782e-06 2.718 ||| 0-0 ||| 424 524574 +los ||| the Union of ||| 0.00442478 0.122289 1.90631e-06 1.29984e-05 2.718 ||| 0-0 ||| 226 524574 +los ||| the Union ||| 0.00186794 0.122289 8.76902e-05 0.0002391 2.718 ||| 0-0 ||| 24626 524574 +los ||| the Union ’ s ||| 0.00787402 0.122289 1.90631e-06 7.92377e-10 2.718 ||| 0-0 ||| 127 524574 +los ||| the Union ’ ||| 0.0110701 0.122289 5.71893e-06 4.16537e-07 2.718 ||| 0-0 ||| 271 524574 +los ||| the United Kingdom ||| 0.000342466 0.122289 1.90631e-06 1.2286e-09 2.718 ||| 0-0 ||| 2920 524574 +los ||| the United Nations Organisation Mission in the ||| 0.5 0.122289 1.90631e-06 3.08522e-23 2.718 ||| 0-0 ||| 2 524574 +los ||| the United Nations Organisation Mission in ||| 0.25 0.122289 1.90631e-06 5.02546e-22 2.718 ||| 0-0 ||| 4 524574 +los ||| the United Nations Organisation Mission ||| 0.2 0.122289 1.90631e-06 2.34785e-20 2.718 ||| 0-0 ||| 5 524574 +los ||| the United Nations Organisation ||| 0.0322581 0.122289 1.90631e-06 3.35408e-14 2.718 ||| 0-0 ||| 31 524574 +los ||| the United Nations ||| 0.000631712 0.122289 3.81262e-06 1.98466e-09 2.718 ||| 0-0 ||| 3166 524574 +los ||| the United States ' ||| 0.0363636 0.122289 3.81262e-06 8.60615e-11 2.718 ||| 0-0 ||| 55 524574 +los ||| the United States ( ||| 0.0666667 0.122289 1.90631e-06 2.41631e-11 2.718 ||| 0-0 ||| 15 524574 +los ||| the United States has taken ||| 0.5 0.122289 1.90631e-06 1.17557e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the United States has ||| 0.00420168 0.122289 1.90631e-06 1.28971e-10 2.718 ||| 0-0 ||| 238 524574 +los ||| the United States to ||| 0.00343643 0.122289 1.90631e-06 2.22634e-09 2.718 ||| 0-0 ||| 291 524574 +los ||| the United States ||| 0.000787746 0.122289 1.71568e-05 2.5055e-08 2.718 ||| 0-0 ||| 11425 524574 +los ||| the United ||| 0.00471995 0.122289 2.85946e-05 5.25043e-05 2.718 ||| 0-0 ||| 3178 524574 +los ||| the Universal ||| 0.5 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the Visegrad ||| 0.333333 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the WTO ||| 0.000863309 0.122289 5.71893e-06 4.16088e-06 2.718 ||| 0-0 ||| 3475 524574 +los ||| the Western ||| 0.028169 0.122289 3.81262e-06 5.57643e-06 2.718 ||| 0-0 ||| 71 524574 +los ||| the Wise Men ||| 0.0188679 0.122289 1.90631e-06 1.50993e-12 2.718 ||| 0-0 ||| 53 524574 +los ||| the Wise ||| 0.0384615 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 26 524574 +los ||| the World ||| 0.00487805 0.122289 1.90631e-06 9.86599e-06 2.718 ||| 0-0 ||| 205 524574 +los ||| the Youth ||| 0.0384615 0.122289 1.90631e-06 1.23539e-05 2.718 ||| 0-0 ||| 26 524574 +los ||| the ability of ||| 0.00560224 0.122289 3.81262e-06 1.07504e-06 2.718 ||| 0-0 ||| 357 524574 +los ||| the ability ||| 0.00410509 0.122289 9.53154e-06 1.97749e-05 2.718 ||| 0-0 ||| 1218 524574 +los ||| the above ||| 0.0140351 0.122289 7.62523e-06 5.55927e-05 2.718 ||| 0-0 ||| 285 524574 +los ||| the above-mentioned Basic ||| 1 0.122289 1.90631e-06 1.9303e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the above-mentioned ||| 0.0363636 0.122289 3.81262e-06 1.07239e-06 2.718 ||| 0-0 ||| 55 524574 +los ||| the absence of ||| 0.00221402 0.122289 5.71893e-06 6.03982e-07 2.718 ||| 0-0 ||| 1355 524574 +los ||| the absence ||| 0.00265076 0.122289 7.62523e-06 1.111e-05 2.718 ||| 0-0 ||| 1509 524574 +los ||| the absolutely ||| 0.0454545 0.122289 1.90631e-06 4.04506e-05 2.718 ||| 0-0 ||| 22 524574 +los ||| the abuse of ||| 0.00485437 0.122289 1.90631e-06 4.10428e-07 2.718 ||| 0-0 ||| 206 524574 +los ||| the abuse ||| 0.00373134 0.122289 1.90631e-06 7.54963e-06 2.718 ||| 0-0 ||| 268 524574 +los ||| the abuses ||| 0.00980392 0.170574 1.90631e-06 1.73677e-05 2.718 ||| 0-1 ||| 102 524574 +los ||| the accession negotiations ||| 0.00295858 0.122289 1.90631e-06 8.72145e-10 2.718 ||| 0-0 ||| 338 524574 +los ||| the accession of ||| 0.000799361 0.122289 1.90631e-06 8.55836e-07 2.718 ||| 0-0 ||| 1251 524574 +los ||| the accession ||| 0.00436954 0.122289 1.33442e-05 1.57427e-05 2.718 ||| 0-0 ||| 1602 524574 +los ||| the accessories ||| 1 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the accident involving ||| 0.0833333 0.0662993 1.90631e-06 2.60471e-10 2.718 ||| 0-0 0-1 ||| 12 524574 +los ||| the accident ||| 0.004329 0.0662993 1.90631e-06 8.32175e-06 2.718 ||| 0-0 0-1 ||| 231 524574 +los ||| the accommodation of ||| 0.0666667 0.122289 1.90631e-06 6.76274e-08 2.718 ||| 0-0 ||| 15 524574 +los ||| the accommodation ||| 0.0526316 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 19 524574 +los ||| the account ||| 0.025641 0.122289 1.90631e-06 0.000123325 2.718 ||| 0-0 ||| 39 524574 +los ||| the accounting ||| 0.0769231 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 13 524574 +los ||| the accredited ||| 0.5 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the accusations ||| 0.00689655 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 145 524574 +los ||| the achievement of the ||| 0.00502513 0.122289 1.90631e-06 3.45026e-08 2.718 ||| 0-3 ||| 199 524574 +los ||| the achievement of ||| 0.00167224 0.122289 1.90631e-06 5.62007e-07 2.718 ||| 0-0 ||| 598 524574 +los ||| the achievement ||| 0.00144718 0.122289 1.90631e-06 1.03378e-05 2.718 ||| 0-0 ||| 691 524574 +los ||| the achievements ||| 0.00367647 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-0 ||| 272 524574 +los ||| the achieving ||| 0.0769231 0.122289 1.90631e-06 2.83969e-05 2.718 ||| 0-0 ||| 13 524574 +los ||| the acknowledged ||| 0.125 0.122289 1.90631e-06 4.80431e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| the acquisition of ||| 0.00649351 0.122289 1.90631e-06 9.32791e-08 2.718 ||| 0-0 ||| 154 524574 +los ||| the acquisition ||| 0.00558659 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 179 524574 +los ||| the action is ||| 0.0555556 0.122289 1.90631e-06 4.06411e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| the action ||| 0.00457038 0.122289 9.53154e-06 0.000129673 2.718 ||| 0-0 ||| 1094 524574 +los ||| the actions of ||| 0.00444444 0.122289 3.81262e-06 1.62772e-06 2.718 ||| 0-0 ||| 450 524574 +los ||| the actions ||| 0.0023511 0.122289 5.71893e-06 2.99411e-05 2.718 ||| 0-0 ||| 1276 524574 +los ||| the active promotion ||| 0.0625 0.122289 1.90631e-06 4.16615e-10 2.718 ||| 0-0 ||| 16 524574 +los ||| the active ||| 0.02 0.122289 1.90631e-06 1.72869e-05 2.718 ||| 0-0 ||| 50 524574 +los ||| the actively ||| 1 0.122289 1.90631e-06 8.96519e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| the activities ||| 0.000674309 0.122289 1.90631e-06 3.4102e-05 2.718 ||| 0-0 ||| 1483 524574 +los ||| the activity ||| 0.00327869 0.122289 1.90631e-06 2.29921e-05 2.718 ||| 0-0 ||| 305 524574 +los ||| the actors ||| 0.0217391 0.177456 5.71893e-06 0.000140955 2.718 ||| 0-0 0-1 ||| 138 524574 +los ||| the actual aircraft ||| 1 0.122289 1.90631e-06 7.13805e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the actual net ||| 0.5 0.122289 1.90631e-06 9.62085e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the actual possibilities ||| 0.25 0.122289 1.90631e-06 8.93808e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| the actual ||| 0.047619 0.122289 5.5283e-05 6.207e-05 2.718 ||| 0-0 ||| 609 524574 +los ||| the ad hoc ||| 0.125 0.122289 1.90631e-06 1.17405e-10 2.718 ||| 0-0 ||| 8 524574 +los ||| the ad ||| 0.0625 0.122289 1.90631e-06 1.02092e-05 2.718 ||| 0-0 ||| 16 524574 +los ||| the added ||| 0.0277778 0.122289 1.90631e-06 3.05846e-05 2.718 ||| 0-0 ||| 36 524574 +los ||| the addition ||| 0.00294118 0.122289 1.90631e-06 4.22951e-05 2.718 ||| 0-0 ||| 340 524574 +los ||| the additional ||| 0.038835 0.122289 7.62523e-06 2.26918e-05 2.718 ||| 0-0 ||| 103 524574 +los ||| the adjustment ||| 0.00806452 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 124 524574 +los ||| the administrative ||| 0.0625 0.122289 9.53154e-06 8.7936e-06 2.718 ||| 0-0 ||| 80 524574 +los ||| the admission ||| 0.00694444 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 144 524574 +los ||| the adoption of the ||| 0.000782473 0.122289 1.90631e-06 6.59988e-08 2.718 ||| 0-3 ||| 1278 524574 +los ||| the adoption ||| 0.000243191 0.122289 1.90631e-06 1.97749e-05 2.718 ||| 0-0 ||| 4112 524574 +los ||| the adulation ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the advancement of ||| 0.015873 0.122289 1.90631e-06 2.56518e-08 2.718 ||| 0-0 ||| 63 524574 +los ||| the advancement ||| 0.0131579 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 76 524574 +los ||| the advantage of ||| 0.017301 0.122289 9.53154e-06 1.18231e-06 2.718 ||| 0-0 ||| 289 524574 +los ||| the advantage ||| 0.0150376 0.122289 1.14379e-05 2.17481e-05 2.718 ||| 0-0 ||| 399 524574 +los ||| the advantages ||| 0.00135685 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-0 ||| 737 524574 +los ||| the advertising ||| 0.0116279 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-0 ||| 86 524574 +los ||| the advocates of ||| 0.0188679 0.122289 1.90631e-06 1.42251e-07 2.718 ||| 0-0 ||| 53 524574 +los ||| the advocates ||| 0.0175439 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 57 524574 +los ||| the affair ||| 0.0188679 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-0 ||| 53 524574 +los ||| the affairs ||| 0.015625 0.122289 1.90631e-06 5.25043e-05 2.718 ||| 0-0 ||| 64 524574 +los ||| the affected ||| 0.0588235 0.122289 1.90631e-06 2.85685e-05 2.718 ||| 0-0 ||| 17 524574 +los ||| the age of ||| 0.0289855 0.122289 1.90631e-05 1.43417e-06 2.718 ||| 0-0 ||| 345 524574 +los ||| the age ||| 0.0338346 0.122289 3.43136e-05 2.63808e-05 2.718 ||| 0-0 ||| 532 524574 +los ||| the agenda ||| 0.00309946 0.122289 2.09694e-05 4.25954e-05 2.718 ||| 0-0 ||| 3549 524574 +los ||| the ages of ||| 0.0869565 0.122289 3.81262e-06 1.58575e-07 2.718 ||| 0-0 ||| 23 524574 +los ||| the ages ||| 0.0298507 0.122289 3.81262e-06 2.9169e-06 2.718 ||| 0-0 ||| 67 524574 +los ||| the aggregate ||| 0.1 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the agreed procedure for achieving the ||| 1 0.122289 1.90631e-06 7.34095e-16 2.718 ||| 0-0 0-5 ||| 1 524574 +los ||| the agreed ||| 0.0588235 0.122289 3.81262e-06 3.35015e-05 2.718 ||| 0-0 ||| 34 524574 +los ||| the agreement , ||| 0.00387597 0.122289 1.90631e-06 9.42788e-06 2.718 ||| 0-0 ||| 258 524574 +los ||| the agreement of the ||| 0.00574713 0.0821857 1.90631e-06 1.12167e-07 2.718 ||| 0-0 0-2 0-3 ||| 174 524574 +los ||| the agreement ||| 0.0011839 0.122289 1.14379e-05 7.90566e-05 2.718 ||| 0-0 ||| 5068 524574 +los ||| the agreements ||| 0.00404204 0.160813 9.53154e-06 0.0013525 2.718 ||| 0-0 0-1 ||| 1237 524574 +los ||| the agriculture ||| 0.0178571 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 56 524574 +los ||| the agrifood ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the aid allocated ||| 0.25 0.122289 1.90631e-06 2.49857e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the aid ||| 0.0022831 0.122289 5.71893e-06 5.60217e-05 2.718 ||| 0-0 ||| 1314 524574 +los ||| the aim of ||| 0.000374532 0.122289 1.90631e-06 3.20647e-06 2.718 ||| 0-0 ||| 2670 524574 +los ||| the aim ||| 0.00145666 0.122289 1.14379e-05 5.89815e-05 2.718 ||| 0-0 ||| 4119 524574 +los ||| the aims ||| 0.00224972 0.122289 3.81262e-06 1.71154e-05 2.718 ||| 0-0 ||| 889 524574 +los ||| the air ||| 0.002849 0.122289 1.90631e-06 2.36355e-05 2.718 ||| 0-0 ||| 351 524574 +los ||| the aircraft ||| 0.0105263 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-0 ||| 95 524574 +los ||| the airport ||| 0.00641026 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 156 524574 +los ||| the alarming increase ||| 0.166667 0.122289 1.90631e-06 2.77106e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| the alarming ||| 0.01 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 100 524574 +los ||| the alcohol ||| 0.0526316 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 19 524574 +los ||| the alert to ||| 0.2 0.122289 1.90631e-06 2.59191e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| the alert ||| 0.05 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| the all ||| 0.157895 0.122289 5.71893e-06 0.00202699 2.718 ||| 0-0 ||| 19 524574 +los ||| the all-Irish ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the alleged ||| 0.00510204 0.122289 1.90631e-06 6.94909e-06 2.718 ||| 0-0 ||| 196 524574 +los ||| the allies ||| 0.0277778 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 36 524574 +los ||| the allocation ||| 0.00149701 0.122289 1.90631e-06 7.24936e-06 2.718 ||| 0-0 ||| 668 524574 +los ||| the almost ||| 0.012987 0.122289 1.90631e-06 3.5346e-05 2.718 ||| 0-0 ||| 77 524574 +los ||| the already ||| 0.0103627 0.122289 3.81262e-06 0.00019865 2.718 ||| 0-0 ||| 193 524574 +los ||| the ambitions of ||| 0.0120482 0.122289 1.90631e-06 1.00275e-07 2.718 ||| 0-0 ||| 83 524574 +los ||| the ambitions ||| 0.00552486 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 181 524574 +los ||| the amendment ||| 0.000310463 0.122289 1.90631e-06 2.73245e-05 2.718 ||| 0-0 ||| 3221 524574 +los ||| the amendments know ||| 0.333333 0.122289 1.90631e-06 8.44418e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the amendments ||| 0.000557336 0.122289 7.62523e-06 3.27294e-05 2.718 ||| 0-0 ||| 7177 524574 +los ||| the amount of the ||| 0.015873 0.122289 1.90631e-06 3.48319e-07 2.718 ||| 0-0 ||| 63 524574 +los ||| the amount of ||| 0.00386473 0.122289 7.62523e-06 5.6737e-06 2.718 ||| 0-0 ||| 1035 524574 +los ||| the amount required has been ||| 0.5 0.122289 1.90631e-06 2.84689e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the amount required has ||| 0.5 0.122289 1.90631e-06 8.52567e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the amount required ||| 0.125 0.122289 1.90631e-06 1.65627e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| the amount ||| 0.00735294 0.122289 2.4782e-05 0.000104365 2.718 ||| 0-0 ||| 1768 524574 +los ||| the amounts decided ||| 0.333333 0.122289 1.90631e-06 1.77511e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the amounts of ||| 0.0227273 0.122289 1.90631e-06 1.41085e-06 2.718 ||| 0-0 ||| 44 524574 +los ||| the amounts ||| 0.00580271 0.122289 5.71893e-06 2.59519e-05 2.718 ||| 0-0 ||| 517 524574 +los ||| the analysis shows ||| 0.5 0.122289 1.90631e-06 5.78499e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the analysis ||| 0.00189753 0.122289 1.90631e-06 1.44987e-05 2.718 ||| 0-0 ||| 527 524574 +los ||| the animal ' s ||| 0.5 0.122289 1.90631e-06 8.07233e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the animal ' ||| 0.333333 0.122289 1.90631e-06 4.24346e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the animal ||| 0.0114943 0.122289 1.90631e-06 1.23539e-05 2.718 ||| 0-0 ||| 87 524574 +los ||| the animosity ||| 0.333333 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the annual ||| 0.045977 0.122289 7.62523e-06 1.23539e-05 2.718 ||| 0-0 ||| 87 524574 +los ||| the anomaly ||| 0.05 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| the answers to the ||| 0.0454545 0.122289 1.90631e-06 5.05446e-08 2.718 ||| 0-3 ||| 22 524574 +los ||| the ante in ||| 0.5 0.122289 1.90631e-06 1.65269e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the ante ||| 0.142857 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| the apparently ||| 0.0555556 0.122289 1.90631e-06 8.32175e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| the appearance ||| 0.00724638 0.122289 1.90631e-06 4.80431e-06 2.718 ||| 0-0 ||| 138 524574 +los ||| the appended ||| 1 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the applicant ||| 0.0144928 0.112236 5.71893e-06 8.59199e-05 2.718 ||| 0-0 0-1 ||| 207 524574 +los ||| the application 's legality ||| 1 0.122289 1.90631e-06 1.98671e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the application 's ||| 1 0.122289 1.90631e-06 4.96678e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the application of adequate ||| 1 0.122289 1.90631e-06 3.51625e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the application of ||| 0.000417188 0.122289 1.90631e-06 1.41784e-06 2.718 ||| 0-0 ||| 2397 524574 +los ||| the application ||| 0.00117682 0.122289 7.62523e-06 2.60805e-05 2.718 ||| 0-0 ||| 3399 524574 +los ||| the appointees ||| 0.333333 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the appointment ||| 0.00141844 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-0 ||| 705 524574 +los ||| the appraisals ||| 0.166667 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the approach to ||| 0.00699301 0.122289 1.90631e-06 8.35509e-06 2.718 ||| 0-0 ||| 143 524574 +los ||| the approach ||| 0.000763942 0.122289 1.90631e-06 9.40272e-05 2.718 ||| 0-0 ||| 1309 524574 +los ||| the approaches of the ||| 0.2 0.0821857 1.90631e-06 6.57299e-09 2.718 ||| 0-0 0-2 0-3 ||| 5 524574 +los ||| the appropriate means ||| 0.0322581 0.122289 1.90631e-06 3.65883e-08 2.718 ||| 0-0 ||| 31 524574 +los ||| the appropriate ||| 0.018595 0.122289 1.71568e-05 5.77375e-05 2.718 ||| 0-0 ||| 484 524574 +los ||| the appropriations ||| 0.00192678 0.155834 1.90631e-06 0.000304859 2.718 ||| 0-0 0-1 ||| 519 524574 +los ||| the approval of ||| 0.00168067 0.122289 1.90631e-06 6.97261e-07 2.718 ||| 0-0 ||| 595 524574 +los ||| the approval ||| 0.00215054 0.122289 3.81262e-06 1.28258e-05 2.718 ||| 0-0 ||| 930 524574 +los ||| the approved ||| 0.0769231 0.122289 1.90631e-06 1.96033e-05 2.718 ||| 0-0 ||| 13 524574 +los ||| the area must be ||| 0.5 0.122289 1.90631e-06 4.98999e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the area must ||| 0.142857 0.122289 1.90631e-06 2.75342e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| the area of security research ||| 0.5 0.122289 1.90631e-06 4.29644e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the area of security ||| 0.0149254 0.122289 1.90631e-06 7.9124e-10 2.718 ||| 0-0 ||| 67 524574 +los ||| the area of the ||| 0.00600601 0.122289 3.81262e-06 5.94561e-07 2.718 ||| 0-0 ||| 333 524574 +los ||| the area of ||| 0.00164745 0.122289 1.52505e-05 9.6847e-06 2.718 ||| 0-0 ||| 4856 524574 +los ||| the area ||| 0.0030303 0.122289 3.81262e-05 0.000178146 2.718 ||| 0-0 ||| 6600 524574 +los ||| the areas concerned . ||| 0.0555556 0.122289 1.90631e-06 4.78417e-10 2.718 ||| 0-0 ||| 18 524574 +los ||| the areas concerned ||| 0.0238095 0.122289 1.90631e-06 1.57945e-07 2.718 ||| 0-0 ||| 42 524574 +los ||| the areas of schemes ||| 0.5 0.122289 1.90631e-06 9.82173e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the areas of ||| 0.00179051 0.122289 3.81262e-06 5.3379e-06 2.718 ||| 0-0 ||| 1117 524574 +los ||| the areas ||| 0.0029511 0.122289 1.33442e-05 9.81881e-05 2.718 ||| 0-0 ||| 2372 524574 +los ||| the arguments , ||| 0.0666667 0.122289 1.90631e-06 1.23284e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| the arguments along the ||| 1 0.122289 1.90631e-06 1.10748e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the arguments along ||| 1 0.122289 1.90631e-06 1.80395e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the arguments put forward by NATO ||| 1 0.122289 1.90631e-06 2.39737e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the arguments put forward by ||| 0.0238095 0.122289 1.90631e-06 3.32968e-14 2.718 ||| 0-0 ||| 42 524574 +los ||| the arguments put forward ||| 0.0138889 0.122289 1.90631e-06 6.34213e-12 2.718 ||| 0-0 ||| 72 524574 +los ||| the arguments put ||| 0.0526316 0.122289 1.90631e-06 1.13985e-08 2.718 ||| 0-0 ||| 19 524574 +los ||| the arguments ||| 0.00778816 0.122289 9.53154e-06 1.03378e-05 2.718 ||| 0-0 ||| 642 524574 +los ||| the arm ||| 0.0217391 0.122289 1.90631e-06 6.94909e-06 2.718 ||| 0-0 ||| 46 524574 +los ||| the arms ||| 0.0361446 0.122289 5.71893e-06 1.18821e-05 2.718 ||| 0-0 ||| 83 524574 +los ||| the army of ||| 0.0625 0.122289 1.90631e-06 2.09878e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| the army ||| 0.00558659 0.122289 3.81262e-06 3.86061e-06 2.718 ||| 0-0 ||| 358 524574 +los ||| the around ||| 0.111111 0.122289 1.90631e-06 5.7137e-05 2.718 ||| 0-0 ||| 9 524574 +los ||| the arrangement of ||| 0.125 0.122289 1.90631e-06 3.35805e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the arrangement ||| 0.0126582 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 79 524574 +los ||| the arrangements ||| 0.00689655 0.0970166 3.81262e-06 0.00010844 2.718 ||| 0-0 0-1 ||| 290 524574 +los ||| the arrest of ||| 0.00558659 0.122289 1.90631e-06 3.19481e-07 2.718 ||| 0-0 ||| 179 524574 +los ||| the arrest ||| 0.00316456 0.122289 1.90631e-06 5.8767e-06 2.718 ||| 0-0 ||| 316 524574 +los ||| the arrival of ||| 0.0047619 0.122289 1.90631e-06 1.67902e-07 2.718 ||| 0-0 ||| 210 524574 +los ||| the arrival ||| 0.00623053 0.122289 3.81262e-06 3.08849e-06 2.718 ||| 0-0 ||| 321 524574 +los ||| the art ||| 0.00952381 0.122289 1.90631e-06 3.56034e-06 2.718 ||| 0-0 ||| 105 524574 +los ||| the articles of association , the ||| 0.5 0.122289 1.90631e-06 2.13105e-14 2.718 ||| 0-5 ||| 2 524574 +los ||| the as ||| 0.1 0.122289 1.90631e-06 0.00437724 2.718 ||| 0-0 ||| 10 524574 +los ||| the ascending line ||| 0.0434783 0.122289 1.90631e-06 5.05139e-11 2.718 ||| 0-0 ||| 23 524574 +los ||| the ascending ||| 0.0625 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| the aspirations ||| 0.00495049 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 202 524574 +los ||| the assembled ||| 0.25 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| the assertions ||| 0.0285714 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 35 524574 +los ||| the assessment ||| 0.00132275 0.122289 1.90631e-06 1.86596e-05 2.718 ||| 0-0 ||| 756 524574 +los ||| the assets ||| 0.0148148 0.122289 3.81262e-06 4.80431e-06 2.718 ||| 0-0 ||| 135 524574 +los ||| the assistance ||| 0.00238663 0.122289 1.90631e-06 2.13191e-05 2.718 ||| 0-0 ||| 419 524574 +los ||| the assistant ||| 0.25 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| the associated ||| 0.0188679 0.122289 1.90631e-06 2.20912e-05 2.718 ||| 0-0 ||| 53 524574 +los ||| the association ||| 0.00704225 0.122289 1.90631e-06 6.77751e-06 2.718 ||| 0-0 ||| 142 524574 +los ||| the assumption ||| 0.00242718 0.122289 1.90631e-06 4.33246e-06 2.718 ||| 0-0 ||| 412 524574 +los ||| the asylum ||| 0.0454545 0.122289 1.90631e-06 7.24936e-06 2.718 ||| 0-0 ||| 22 524574 +los ||| the attack ||| 0.00363636 0.122289 1.90631e-06 1.26542e-05 2.718 ||| 0-0 ||| 275 524574 +los ||| the attacks ||| 0.00414938 0.122289 3.81262e-06 5.57643e-06 2.718 ||| 0-0 ||| 482 524574 +los ||| the attempts ||| 0.00431034 0.122289 1.90631e-06 1.35979e-05 2.718 ||| 0-0 ||| 232 524574 +los ||| the attendant ||| 0.148148 0.122289 7.62523e-06 1.54424e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| the attending ||| 0.333333 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| the attention of the ||| 0.0121359 0.122289 9.53154e-06 3.74088e-07 2.718 ||| 0-0 ||| 412 524574 +los ||| the attention of those ||| 0.111111 0.136324 1.90631e-06 6.19041e-09 2.718 ||| 0-0 0-2 0-3 ||| 9 524574 +los ||| the attention of ||| 0.00823723 0.122289 9.53154e-06 6.09346e-06 2.718 ||| 0-0 ||| 607 524574 +los ||| the attention ||| 0.00644567 0.122289 1.33442e-05 0.000112086 2.718 ||| 0-0 ||| 1086 524574 +los ||| the attitude of the Committee on ||| 0.333333 0.122289 1.90631e-06 7.63046e-14 2.718 ||| 0-0 ||| 3 524574 +los ||| the attitude of the Committee ||| 0.333333 0.122289 1.90631e-06 1.14041e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| the attitude of the ||| 0.00456621 0.122289 1.90631e-06 7.47318e-08 2.718 ||| 0-0 ||| 219 524574 +los ||| the attitude of ||| 0.00323625 0.122289 1.90631e-06 1.21729e-06 2.718 ||| 0-0 ||| 309 524574 +los ||| the attitude ||| 0.00157978 0.122289 1.90631e-06 2.23915e-05 2.718 ||| 0-0 ||| 633 524574 +los ||| the auspices ||| 0.00293255 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 341 524574 +los ||| the authorities ||| 0.000782473 0.122289 3.81262e-06 2.85685e-05 2.718 ||| 0-0 ||| 2556 524574 +los ||| the authority of the ||| 0.00657895 0.062134 1.90631e-06 3.70191e-09 2.718 ||| 0-2 0-3 ||| 152 524574 +los ||| the authority of ||| 0.00546448 0.122289 1.90631e-06 9.91091e-07 2.718 ||| 0-0 ||| 183 524574 +los ||| the authority ||| 0.00160256 0.122289 1.90631e-06 1.82306e-05 2.718 ||| 0-0 ||| 624 524574 +los ||| the availability ||| 0.00198413 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-0 ||| 504 524574 +los ||| the available ||| 0.114286 0.122289 7.62523e-06 0.000136451 2.718 ||| 0-0 ||| 35 524574 +los ||| the average development parameters ||| 1 0.122289 1.90631e-06 1.13748e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the average development ||| 1 0.122289 1.90631e-06 1.74997e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the average ||| 0.0153173 0.122289 1.33442e-05 1.06381e-05 2.718 ||| 0-0 ||| 457 524574 +los ||| the avoidance ||| 0.0232558 0.122289 3.81262e-06 1.07239e-06 2.718 ||| 0-0 ||| 86 524574 +los ||| the awarding of ||| 0.0192308 0.122289 1.90631e-06 1.35255e-07 2.718 ||| 0-0 ||| 52 524574 +los ||| the awarding ||| 0.0133333 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 75 524574 +los ||| the axe ||| 0.142857 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| the back foot ||| 0.333333 0.122289 1.90631e-06 6.43391e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the back of ||| 0.0215054 0.122289 3.81262e-06 1.56849e-05 2.718 ||| 0-0 ||| 93 524574 +los ||| the back ||| 0.0234375 0.122289 1.14379e-05 0.000288516 2.718 ||| 0-0 ||| 256 524574 +los ||| the background of problems of one ' ||| 1 0.0444479 1.90631e-06 1.43596e-17 2.718 ||| 0-6 ||| 1 524574 +los ||| the background ||| 0.00438596 0.122289 5.71893e-06 1.14102e-05 2.718 ||| 0-0 ||| 684 524574 +los ||| the backlog of ||| 0.0555556 0.122289 1.90631e-06 4.19756e-08 2.718 ||| 0-0 ||| 18 524574 +los ||| the backlog ||| 0.0217391 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 46 524574 +los ||| the bad ||| 0.00520833 0.122289 1.90631e-06 1.96033e-05 2.718 ||| 0-0 ||| 192 524574 +los ||| the badly ||| 0.166667 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| the bag carriers ||| 1 0.122289 1.90631e-06 5.096e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the bag ||| 0.0714286 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| the balance has been ||| 0.333333 0.122289 1.90631e-06 3.98149e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the balance has ||| 0.333333 0.122289 1.90631e-06 1.19235e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the balance in the ||| 0.04 0.122289 1.90631e-06 3.04384e-08 2.718 ||| 0-0 ||| 25 524574 +los ||| the balance in ||| 0.0169492 0.122289 1.90631e-06 4.95806e-07 2.718 ||| 0-0 ||| 59 524574 +los ||| the balance ||| 0.00373134 0.122289 9.53154e-06 2.31636e-05 2.718 ||| 0-0 ||| 1340 524574 +los ||| the ballot ||| 0.0222222 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 45 524574 +los ||| the ban ||| 0.000887311 0.122289 1.90631e-06 1.65148e-05 2.718 ||| 0-0 ||| 1127 524574 +los ||| the banana ||| 0.0172414 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 58 524574 +los ||| the band The ||| 1 0.122289 1.90631e-06 4.6649e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the band ||| 0.0666667 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| the bandwagon ||| 0.25 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| the banks ||| 0.0011976 0.19683 1.90631e-06 0.000470007 2.718 ||| 0-0 0-1 ||| 835 524574 +los ||| the barbarous ||| 0.125 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the bargain ||| 0.0454545 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 22 524574 +los ||| the barriers ||| 0.00353357 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 283 524574 +los ||| the basic anti-dumping and ||| 1 0.122289 1.90631e-06 2.03102e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the basic anti-dumping ||| 1 0.122289 1.90631e-06 1.62145e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the basic rules , the ||| 1 0.122289 1.90631e-06 1.9706e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| the basic ||| 0.0359712 0.122289 1.90631e-05 2.31636e-05 2.718 ||| 0-0 ||| 278 524574 +los ||| the basis for ||| 0.000829187 0.122289 1.90631e-06 1.95766e-06 2.718 ||| 0-0 ||| 1206 524574 +los ||| the basis of a ||| 0.00329489 0.122289 3.81262e-06 6.13792e-07 2.718 ||| 0-0 ||| 607 524574 +los ||| the basis of how ||| 0.2 0.122289 3.81262e-06 4.96287e-09 2.718 ||| 0-0 ||| 10 524574 +los ||| the basis of merit ||| 0.0909091 0.122289 1.90631e-06 7.47753e-11 2.718 ||| 0-0 ||| 11 524574 +los ||| the basis of records which are not ||| 0.25 0.122289 1.90631e-06 3.29034e-17 2.718 ||| 0-0 ||| 4 524574 +los ||| the basis of records which are ||| 0.25 0.122289 1.90631e-06 9.6375e-15 2.718 ||| 0-0 ||| 4 524574 +los ||| the basis of records which ||| 0.25 0.122289 1.90631e-06 6.35187e-13 2.718 ||| 0-0 ||| 4 524574 +los ||| the basis of records ||| 0.25 0.122289 1.90631e-06 7.47753e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| the basis of technical harmonisation . ||| 1 0.122289 1.90631e-06 6.52514e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the basis of technical harmonisation ||| 1 0.122289 1.90631e-06 2.15422e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the basis of technical ||| 1 0.122289 1.90631e-06 4.58345e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the basis of the ||| 0.00544662 0.122289 1.90631e-05 8.5011e-07 2.718 ||| 0-0 ||| 1836 524574 +los ||| the basis of these ||| 0.00787402 0.0494347 1.90631e-06 2.05358e-09 2.718 ||| 0-0 0-2 0-3 ||| 127 524574 +los ||| the basis of very ||| 0.5 0.122289 1.90631e-06 4.81816e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the basis of voluntary schemes , ||| 1 0.122289 1.90631e-06 4.04119e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the basis of voluntary schemes ||| 1 0.122289 1.90631e-06 3.38871e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the basis of voluntary ||| 1 0.122289 1.90631e-06 1.84169e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the basis of ||| 0.00666889 0.122289 7.62523e-05 1.38473e-05 2.718 ||| 0-0 ||| 5998 524574 +los ||| the basis that ||| 0.00847458 0.122289 1.90631e-06 4.2847e-06 2.718 ||| 0-0 ||| 118 524574 +los ||| the basis ||| 0.0088797 0.122289 0.000139161 0.000254714 2.718 ||| 0-0 ||| 8221 524574 +los ||| the beach ||| 0.037037 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 27 524574 +los ||| the bearer ||| 0.111111 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| the beginning and ||| 0.0149254 0.122289 1.90631e-06 2.18684e-07 2.718 ||| 0-0 ||| 67 524574 +los ||| the beginning of a ||| 0.005 0.122289 1.90631e-06 4.20703e-08 2.718 ||| 0-0 ||| 200 524574 +los ||| the beginning of the ||| 0.00160772 0.0616848 1.90631e-06 6.0861e-10 2.718 ||| 0-0 0-1 0-2 0-3 ||| 622 524574 +los ||| the beginning of ||| 0.00056338 0.122289 1.90631e-06 9.49115e-07 2.718 ||| 0-0 ||| 1775 524574 +los ||| the beginning ||| 0.000802568 0.122289 3.81262e-06 1.74585e-05 2.718 ||| 0-0 ||| 2492 524574 +los ||| the belief ||| 0.00245098 0.122289 1.90631e-06 1.14102e-05 2.718 ||| 0-0 ||| 408 524574 +los ||| the benefit of the ||| 0.0246085 0.0821857 2.09694e-05 8.01539e-08 2.718 ||| 0-0 0-2 0-3 ||| 447 524574 +los ||| the benefit of those fellow ||| 1 0.122289 1.90631e-06 1.46553e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the benefit of those ||| 0.153846 0.136324 7.62523e-06 3.12008e-09 2.718 ||| 0-0 0-2 0-3 ||| 26 524574 +los ||| the benefit of ||| 0.00870196 0.122289 2.28757e-05 3.07122e-06 2.718 ||| 0-0 ||| 1379 524574 +los ||| the benefit ||| 0.0137586 0.122289 4.19388e-05 5.64935e-05 2.718 ||| 0-0 ||| 1599 524574 +los ||| the benefits of ||| 0.00115473 0.122289 1.90631e-06 9.23463e-07 2.718 ||| 0-0 ||| 866 524574 +los ||| the benefits ||| 0.00118133 0.122289 3.81262e-06 1.69867e-05 2.718 ||| 0-0 ||| 1693 524574 +los ||| the best and the ||| 0.0555556 0.122289 1.90631e-06 4.56859e-08 2.718 ||| 0-0 ||| 18 524574 +los ||| the best and ||| 0.00826446 0.122289 1.90631e-06 7.44169e-07 2.718 ||| 0-0 ||| 121 524574 +los ||| the best country in which they can ||| 0.5 0.122289 1.90631e-06 3.77422e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| the best country in which they ||| 0.5 0.122289 1.90631e-06 1.26895e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the best country in which ||| 0.5 0.122289 1.90631e-06 3.8877e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| the best country in ||| 0.5 0.122289 1.90631e-06 4.57667e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the best country ||| 0.5 0.122289 1.90631e-06 2.13818e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the best interests of the ||| 0.0178571 0.0821857 1.90631e-06 1.15565e-11 2.718 ||| 0-0 0-3 0-4 ||| 56 524574 +los ||| the best of ||| 0.011583 0.122289 5.71893e-06 3.22979e-06 2.718 ||| 0-0 ||| 259 524574 +los ||| the best ||| 0.00265096 0.122289 3.43136e-05 5.94104e-05 2.718 ||| 0-0 ||| 6790 524574 +los ||| the better ||| 0.00315457 0.122289 3.81262e-06 7.28797e-05 2.718 ||| 0-0 ||| 634 524574 +los ||| the big transfer fee ||| 0.0454545 0.122289 1.90631e-06 2.81642e-15 2.718 ||| 0-0 ||| 22 524574 +los ||| the big transfer ||| 0.0454545 0.122289 1.90631e-06 4.14179e-10 2.718 ||| 0-0 ||| 22 524574 +los ||| the big ||| 0.00423729 0.122289 7.62523e-06 2.02038e-05 2.718 ||| 0-0 ||| 944 524574 +los ||| the bilateral ||| 0.0232558 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 43 524574 +los ||| the bill for a series ||| 1 0.122289 1.90631e-06 1.00872e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the bill for a ||| 0.5 0.122289 1.90631e-06 2.52813e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the bill for ||| 0.0113636 0.122289 1.90631e-06 5.70351e-08 2.718 ||| 0-0 ||| 88 524574 +los ||| the bill ||| 0.00621118 0.122289 3.81262e-06 7.42094e-06 2.718 ||| 0-0 ||| 322 524574 +los ||| the bird has ||| 0.5 0.122289 1.90631e-06 4.85772e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the bird ||| 0.0769231 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 13 524574 +los ||| the black ||| 0.0909091 0.122289 3.81262e-06 6.00539e-06 2.718 ||| 0-0 ||| 22 524574 +los ||| the blue ||| 0.0196078 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 51 524574 +los ||| the board , any ||| 0.5 0.122289 1.90631e-06 1.03271e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the board , ||| 0.0135135 0.122289 1.90631e-06 6.8292e-06 2.718 ||| 0-0 ||| 74 524574 +los ||| the board for ||| 0.125 0.122289 1.90631e-06 4.40127e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the board ||| 0.0146341 0.122289 1.14379e-05 5.72657e-05 2.718 ||| 0-0 ||| 410 524574 +los ||| the bodies ||| 0.00824176 0.143691 5.71893e-06 0.000401203 2.718 ||| 0-0 0-1 ||| 364 524574 +los ||| the body of ||| 0.0144928 0.122289 1.90631e-06 1.99617e-06 2.718 ||| 0-0 ||| 69 524574 +los ||| the body ||| 0.00251256 0.122289 1.90631e-06 3.67187e-05 2.718 ||| 0-0 ||| 398 524574 +los ||| the bombing ||| 0.00775194 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 129 524574 +los ||| the bones of the ||| 0.125 0.0821857 1.90631e-06 5.05146e-09 2.718 ||| 0-0 0-2 0-3 ||| 8 524574 +los ||| the bones ||| 0.0243902 0.122289 1.90631e-06 3.56034e-06 2.718 ||| 0-0 ||| 41 524574 +los ||| the boos ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the border ||| 0.00227273 0.122289 3.81262e-06 1.00376e-05 2.718 ||| 0-0 ||| 880 524574 +los ||| the borderless nature ||| 0.5 0.122289 1.90631e-06 2.42618e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the borderless ||| 0.166667 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the borders . ||| 0.0144928 0.122289 1.90631e-06 5.61301e-08 2.718 ||| 0-0 ||| 69 524574 +los ||| the borders ||| 0.00101937 0.122289 1.90631e-06 1.85309e-05 2.718 ||| 0-0 ||| 981 524574 +los ||| the both the ||| 0.333333 0.122289 1.90631e-06 0.000304802 2.718 ||| 0-0 0-2 ||| 3 524574 +los ||| the bottle bank or collecting ||| 0.333333 0.122289 1.90631e-06 1.5572e-20 2.718 ||| 0-0 ||| 3 524574 +los ||| the bottle bank or ||| 0.333333 0.122289 1.90631e-06 1.11229e-14 2.718 ||| 0-0 ||| 3 524574 +los ||| the bottle bank ||| 0.333333 0.122289 1.90631e-06 9.72873e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| the bottle ||| 0.0555556 0.122289 3.81262e-06 6.00539e-07 2.718 ||| 0-0 ||| 36 524574 +los ||| the bottom line and add up the ||| 1 0.122289 1.90631e-06 3.91079e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| the bottom of the ||| 0.00952381 0.122289 1.90631e-06 2.06157e-08 2.718 ||| 0-0 ||| 105 524574 +los ||| the bottom of ||| 0.00917431 0.122289 1.90631e-06 3.35805e-07 2.718 ||| 0-0 ||| 109 524574 +los ||| the bottom ||| 0.00761421 0.122289 5.71893e-06 6.17697e-06 2.718 ||| 0-0 ||| 394 524574 +los ||| the boundaries ||| 0.00581395 0.0903809 1.90631e-06 2.04183e-05 2.718 ||| 0-0 0-1 ||| 172 524574 +los ||| the brakes either ||| 0.5 0.122289 1.90631e-06 5.19947e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the brakes ||| 0.0133333 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 75 524574 +los ||| the breakdown ||| 0.00689655 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 145 524574 +los ||| the breeding ||| 0.037037 0.122289 1.90631e-06 3.56034e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| the bridges ||| 0.0384615 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 26 524574 +los ||| the broad church of ||| 1 0.122289 1.90631e-06 2.59409e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the broad church ||| 1 0.122289 1.90631e-06 4.77171e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the broad ||| 0.00353357 0.122289 5.71893e-06 1.32547e-05 2.718 ||| 0-0 ||| 849 524574 +los ||| the broader ||| 0.00961538 0.122289 1.90631e-06 5.8767e-06 2.718 ||| 0-0 ||| 104 524574 +los ||| the broken ||| 0.142857 0.122289 1.90631e-06 1.28258e-05 2.718 ||| 0-0 ||| 7 524574 +los ||| the brunt ||| 0.00980392 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 102 524574 +los ||| the budget to finance ||| 0.5 0.122289 1.90631e-06 8.79564e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the budget to ||| 0.025974 0.122289 3.81262e-06 4.70355e-06 2.718 ||| 0-0 ||| 77 524574 +los ||| the budget ||| 0.00263916 0.122289 2.09694e-05 5.29332e-05 2.718 ||| 0-0 ||| 4168 524574 +los ||| the budgetary ||| 0.00925926 0.122289 1.90631e-06 9.43704e-06 2.718 ||| 0-0 ||| 108 524574 +los ||| the budgets agreed ||| 0.333333 0.122289 1.90631e-06 2.88113e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the budgets ||| 0.00729927 0.122289 3.81262e-06 3.68902e-06 2.718 ||| 0-0 ||| 274 524574 +los ||| the building ' s ||| 1 0.122289 1.90631e-06 1.63409e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the building ' ||| 1 0.122289 1.90631e-06 8.59005e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the building ||| 0.00346021 0.122289 3.81262e-06 2.50082e-05 2.718 ||| 0-0 ||| 578 524574 +los ||| the bulk ||| 0.00374532 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 267 524574 +los ||| the burden on the ||| 0.0606061 0.122289 3.81262e-06 7.66485e-09 2.718 ||| 0-3 ||| 33 524574 +los ||| the burden ||| 0.00498339 0.122289 1.14379e-05 1.86596e-05 2.718 ||| 0-0 ||| 1204 524574 +los ||| the business of helping ||| 1 0.122289 1.90631e-06 1.10098e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the business of ||| 0.00680272 0.122289 1.90631e-06 2.91264e-06 2.718 ||| 0-0 ||| 147 524574 +los ||| the business ||| 0.00522193 0.122289 3.81262e-06 5.35766e-05 2.718 ||| 0-0 ||| 383 524574 +los ||| the by ||| 0.0625 0.0642678 1.90631e-06 0.000694823 2.718 ||| 0-0 0-1 ||| 16 524574 +los ||| the camp ||| 0.0166667 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 60 524574 +los ||| the can ||| 0.0434783 0.122289 1.90631e-06 0.00127584 2.718 ||| 0-0 ||| 23 524574 +los ||| the cancelled ||| 0.333333 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| the candidate countries ||| 0.000501505 0.0335599 1.90631e-06 3.58049e-09 2.718 ||| 0-1 ||| 1994 524574 +los ||| the candidate states . ||| 0.1 0.0335599 1.90631e-06 2.14792e-12 2.718 ||| 0-1 ||| 10 524574 +los ||| the candidate states ||| 0.0263158 0.0335599 1.90631e-06 7.09119e-10 2.718 ||| 0-1 ||| 38 524574 +los ||| the candidate ||| 0.0376712 0.0779245 2.09694e-05 6.58877e-05 2.718 ||| 0-0 0-1 ||| 292 524574 +los ||| the capacity ||| 0.00108696 0.122289 1.90631e-06 3.13567e-05 2.718 ||| 0-0 ||| 920 524574 +los ||| the capital collected should be ||| 0.5 0.122289 1.90631e-06 1.15981e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the capital collected should ||| 0.5 0.122289 1.90631e-06 6.39967e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the capital collected ||| 0.5 0.122289 1.90631e-06 1.4443e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the capital ||| 0.00273224 0.122289 1.90631e-06 1.111e-05 2.718 ||| 0-0 ||| 366 524574 +los ||| the carbon ||| 0.125 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the card ||| 0.0108696 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 92 524574 +los ||| the cards ||| 0.02 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-0 ||| 50 524574 +los ||| the care of ||| 0.0142857 0.122289 1.90631e-06 2.36696e-06 2.718 ||| 0-0 ||| 70 524574 +los ||| the care ||| 0.0060241 0.122289 1.90631e-06 4.35391e-05 2.718 ||| 0-0 ||| 166 524574 +los ||| the careful ||| 0.0232558 0.122289 1.90631e-06 1.18821e-05 2.718 ||| 0-0 ||| 43 524574 +los ||| the cares and ||| 1 0.122289 1.90631e-06 7.52229e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the cares ||| 0.2 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| the carpet out from under ||| 1 0.122289 1.90631e-06 1.19623e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the carpet out from ||| 1 0.122289 1.90631e-06 3.33397e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the carpet out ||| 0.5 0.122289 1.90631e-06 2.07027e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the carpet ||| 0.0238095 0.122289 5.71893e-06 5.40485e-06 2.718 ||| 0-0 ||| 126 524574 +los ||| the case , ||| 0.000859845 0.122289 1.90631e-06 5.47308e-05 2.718 ||| 0-0 ||| 1163 524574 +los ||| the case . ||| 0.000969932 0.122289 1.90631e-06 1.39013e-06 2.718 ||| 0-0 ||| 1031 524574 +los ||| the case at ||| 0.00892857 0.122289 1.90631e-06 1.92177e-06 2.718 ||| 0-0 ||| 112 524574 +los ||| the case for the ||| 0.0114943 0.0820379 1.90631e-06 1.73596e-07 2.718 ||| 0-0 0-2 0-3 ||| 87 524574 +los ||| the case for ||| 0.00229358 0.122289 1.90631e-06 3.52728e-06 2.718 ||| 0-0 ||| 436 524574 +los ||| the case now ||| 0.047619 0.122289 1.90631e-06 9.45371e-07 2.718 ||| 0-0 ||| 21 524574 +los ||| the case of a ||| 0.00675676 0.122289 1.90631e-06 1.10592e-06 2.718 ||| 0-0 ||| 148 524574 +los ||| the case of the ||| 0.0129482 0.0821857 2.4782e-05 6.51152e-07 2.718 ||| 0-0 0-2 0-3 ||| 1004 524574 +los ||| the case of those ||| 0.05 0.136324 1.90631e-06 2.53468e-08 2.718 ||| 0-0 0-2 0-3 ||| 20 524574 +los ||| the case of waste ||| 0.25 0.122289 1.90631e-06 1.7415e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the case of ||| 0.0131176 0.122289 0.000114379 2.49498e-05 2.718 ||| 0-0 ||| 4574 524574 +los ||| the case that some ||| 0.0909091 0.122289 1.90631e-06 8.40952e-09 2.718 ||| 0-0 ||| 11 524574 +los ||| the case that the ||| 0.0225564 0.122289 5.71893e-06 3.31159e-06 2.718 ||| 0-0 0-3 ||| 133 524574 +los ||| the case that ||| 0.0153846 0.122289 2.09694e-05 7.72011e-06 2.718 ||| 0-0 ||| 715 524574 +los ||| the case today ||| 0.0175439 0.122289 1.90631e-06 2.0712e-07 2.718 ||| 0-0 ||| 57 524574 +los ||| the case with ||| 0.00212314 0.122289 1.90631e-06 2.93469e-06 2.718 ||| 0-0 ||| 471 524574 +los ||| the case ||| 0.0126509 0.122289 0.000289759 0.00045894 2.718 ||| 0-0 ||| 12015 524574 +los ||| the cases ||| 0.00208768 0.129401 1.90631e-06 0.000713998 2.718 ||| 0-0 0-1 ||| 479 524574 +los ||| the catalogue of the ||| 1 0.062134 1.90631e-06 2.52601e-10 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| the catch ||| 0.0153846 0.122289 1.90631e-06 7.42094e-06 2.718 ||| 0-0 ||| 65 524574 +los ||| the category of ||| 0.0105263 0.122289 1.90631e-06 3.94104e-07 2.718 ||| 0-0 ||| 95 524574 +los ||| the category ||| 0.0070922 0.122289 1.90631e-06 7.24936e-06 2.718 ||| 0-0 ||| 141 524574 +los ||| the catering and ||| 0.333333 0.122289 1.90631e-06 5.91037e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the catering ||| 0.166667 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the cattle ||| 0.05 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| the cause of ||| 0.00421941 0.122289 5.71893e-06 4.21388e-06 2.718 ||| 0-0 ||| 711 524574 +los ||| the cause ||| 0.00440529 0.122289 7.62523e-06 7.75124e-05 2.718 ||| 0-0 ||| 908 524574 +los ||| the causes of ||| 0.00158479 0.122289 1.90631e-06 6.03982e-07 2.718 ||| 0-0 ||| 631 524574 +los ||| the causes ||| 0.00177148 0.122289 3.81262e-06 1.111e-05 2.718 ||| 0-0 ||| 1129 524574 +los ||| the central register ||| 0.25 0.122289 1.90631e-06 1.42868e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| the central ||| 0.039548 0.122289 1.33442e-05 1.17105e-05 2.718 ||| 0-0 ||| 177 524574 +los ||| the centre of ||| 0.00376648 0.122289 3.81262e-06 7.46233e-07 2.718 ||| 0-0 ||| 531 524574 +los ||| the centre ||| 0.0034965 0.122289 5.71893e-06 1.37266e-05 2.718 ||| 0-0 ||| 858 524574 +los ||| the cereal ||| 0.285714 0.136902 3.81262e-06 3.33728e-05 2.718 ||| 0-0 0-1 ||| 7 524574 +los ||| the chain - ||| 0.333333 0.122289 1.90631e-06 1.68279e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the chain ||| 0.00558659 0.122289 1.90631e-06 4.46115e-06 2.718 ||| 0-0 ||| 179 524574 +los ||| the chairpersons ||| 0.047619 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 21 524574 +los ||| the challenge of ||| 0.00192308 0.122289 1.90631e-06 9.98087e-07 2.718 ||| 0-0 ||| 520 524574 +los ||| the challenge ||| 0.000739098 0.122289 1.90631e-06 1.83593e-05 2.718 ||| 0-0 ||| 1353 524574 +los ||| the challenges ||| 0.000857633 0.133838 3.81262e-06 0.000513804 2.718 ||| 0-0 0-1 ||| 2332 524574 +los ||| the challenging ||| 0.0588235 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| the champions of ||| 0.03125 0.122289 1.90631e-06 2.56518e-08 2.718 ||| 0-0 ||| 32 524574 +los ||| the champions ||| 0.0322581 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 31 524574 +los ||| the chance ||| 0.00188679 0.122289 3.81262e-06 2.82682e-05 2.718 ||| 0-0 ||| 1060 524574 +los ||| the chances ||| 0.00393701 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 254 524574 +los ||| the changes ||| 0.000773994 0.122289 1.90631e-06 2.19197e-05 2.718 ||| 0-0 ||| 1292 524574 +los ||| the changing ||| 0.0078125 0.122289 1.90631e-06 5.8767e-06 2.718 ||| 0-0 ||| 128 524574 +los ||| the channels ||| 0.015873 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-0 ||| 63 524574 +los ||| the chapters ||| 0.0133333 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 75 524574 +los ||| the characteristics ||| 0.00507614 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 197 524574 +los ||| the chatter ||| 0.5 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the cheap ||| 0.0344828 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 29 524574 +los ||| the cheapest ||| 0.0344828 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 29 524574 +los ||| the cheated ||| 0.5 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the child soldiers ||| 0.111111 0.130248 1.90631e-06 3.0034e-10 2.718 ||| 0-2 ||| 9 524574 +los ||| the child ||| 0.00906344 0.122289 5.71893e-06 1.41985e-05 2.718 ||| 0-0 ||| 331 524574 +los ||| the child ’ ||| 0.333333 0.122289 1.90631e-06 2.47351e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the children 's ||| 1 0.293415 1.90631e-06 6.44749e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| the children , estimated to be ||| 1 0.207852 1.90631e-06 6.54181e-12 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the children , estimated to ||| 1 0.207852 1.90631e-06 3.60969e-10 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the children , estimated ||| 1 0.207852 1.90631e-06 4.06231e-09 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the children , ||| 0.0169492 0.207852 1.90631e-06 0.000282105 2.718 ||| 0-0 0-1 ||| 59 524574 +los ||| the children ||| 0.0029985 0.207852 3.81262e-06 0.00236557 2.718 ||| 0-0 0-1 ||| 667 524574 +los ||| the choice of ||| 0.00192308 0.122289 1.90631e-06 1.04006e-06 2.718 ||| 0-0 ||| 520 524574 +los ||| the choice ||| 0.00117371 0.122289 1.90631e-06 1.91315e-05 2.718 ||| 0-0 ||| 852 524574 +los ||| the choices of the ||| 0.0714286 0.122289 1.90631e-06 1.03078e-08 2.718 ||| 0-3 ||| 14 524574 +los ||| the choir ||| 0.333333 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the circumstances have justified it , the ||| 1 0.122289 1.90631e-06 6.88906e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the circumstances have justified it , ||| 1 0.122289 1.90631e-06 1.12215e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the circumstances have justified it ||| 1 0.122289 1.90631e-06 9.40966e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the circumstances have justified ||| 1 0.122289 1.90631e-06 5.29132e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the circumstances have ||| 0.166667 0.122289 1.90631e-06 2.77033e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the circumstances ||| 0.00386598 0.122289 5.71893e-06 2.31636e-05 2.718 ||| 0-0 ||| 776 524574 +los ||| the citizens ' ||| 0.00970874 0.0833685 1.90631e-06 2.48706e-07 2.718 ||| 0-0 0-2 ||| 103 524574 +los ||| the citizens concerned are ||| 1 0.293572 1.90631e-06 2.26812e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| the citizens concerned ||| 0.0625 0.293572 1.90631e-06 1.49487e-06 2.718 ||| 0-1 ||| 16 524574 +los ||| the citizens of ||| 0.00333333 0.207931 1.90631e-05 0.000352996 2.718 ||| 0-0 0-1 ||| 3000 524574 +los ||| the citizens ||| 0.00339397 0.207931 4.76577e-05 0.0064932 2.718 ||| 0-0 0-1 ||| 7366 524574 +los ||| the city ||| 0.00194553 0.122289 1.90631e-06 8.7936e-06 2.718 ||| 0-0 ||| 514 524574 +los ||| the civil ||| 0.0508475 0.0830666 5.71893e-06 0.00022606 2.718 ||| 0-0 0-1 ||| 59 524574 +los ||| the claim being EUR ||| 0.5 0.122289 1.90631e-06 1.53745e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the claim being ||| 0.25 0.122289 1.90631e-06 5.74961e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the claim ||| 0.0107527 0.122289 3.81262e-06 2.02038e-05 2.718 ||| 0-0 ||| 186 524574 +los ||| the clash of interests ||| 0.5 0.122289 1.90631e-06 1.50266e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the clash of ||| 0.05 0.122289 1.90631e-06 1.09603e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| the clash ||| 0.0243902 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 41 524574 +los ||| the class ||| 0.0277778 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-0 ||| 36 524574 +los ||| the classification of the ||| 0.0714286 0.122289 1.90631e-06 6.50206e-08 2.718 ||| 0-0 0-3 ||| 14 524574 +los ||| the cleanest , ||| 0.25 0.122289 1.90631e-06 2.0462e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the cleanest ||| 0.125 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the clear ||| 0.00452489 0.122289 3.81262e-06 0.0001428 2.718 ||| 0-0 ||| 442 524574 +los ||| the climate ||| 0.00148368 0.122289 1.90631e-06 1.17105e-05 2.718 ||| 0-0 ||| 674 524574 +los ||| the clinical ||| 0.5 0.0837253 1.90631e-06 5.83381e-06 2.718 ||| 0-0 0-1 ||| 2 524574 +los ||| the clock back to ||| 0.125 0.122289 1.90631e-06 2.02532e-10 2.718 ||| 0-0 ||| 8 524574 +los ||| the clock back ||| 0.0357143 0.122289 1.90631e-06 2.27928e-09 2.718 ||| 0-0 ||| 28 524574 +los ||| the clock ||| 0.00840336 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 119 524574 +los ||| the closed ||| 0.1 0.122289 1.90631e-06 2.48366e-05 2.718 ||| 0-0 ||| 10 524574 +los ||| the closures , ||| 0.125 0.129521 1.90631e-06 2.38894e-06 2.718 ||| 0-0 0-1 ||| 8 524574 +los ||| the closures ||| 0.0434783 0.129521 1.90631e-06 2.00323e-05 2.718 ||| 0-0 0-1 ||| 23 524574 +los ||| the cloth ||| 0.333333 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the coal and steel ||| 0.142857 0.122289 1.90631e-06 1.56679e-13 2.718 ||| 0-0 ||| 7 524574 +los ||| the coal and ||| 0.0625 0.122289 1.90631e-06 2.90145e-08 2.718 ||| 0-0 ||| 16 524574 +los ||| the coal ||| 0.0322581 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 31 524574 +los ||| the coastal ||| 0.0769231 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 13 524574 +los ||| the coasts ||| 0.0106383 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 94 524574 +los ||| the codecision process ||| 0.0243902 0.122289 1.90631e-06 5.86812e-10 2.718 ||| 0-0 ||| 41 524574 +los ||| the codecision ||| 0.0208333 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 48 524574 +los ||| the coin ||| 0.00793651 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 126 524574 +los ||| the colleagues ||| 0.00970874 0.0986247 1.90631e-06 0.0003345 2.718 ||| 0-0 0-1 ||| 103 524574 +los ||| the collection ||| 0.00429185 0.122289 3.81262e-06 4.03219e-06 2.718 ||| 0-0 ||| 466 524574 +los ||| the collective judgment ||| 0.5 0.122289 1.90631e-06 6.44936e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the collective ||| 0.0740741 0.122289 3.81262e-06 4.16088e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| the colour of ||| 0.0384615 0.122289 1.90631e-06 7.46233e-08 2.718 ||| 0-0 ||| 26 524574 +los ||| the colour ||| 0.0208333 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 48 524574 +los ||| the combination ||| 0.00510204 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-0 ||| 196 524574 +los ||| the combined ||| 0.0151515 0.122289 1.90631e-06 1.08097e-05 2.718 ||| 0-0 ||| 66 524574 +los ||| the comfortable position of ||| 0.5 0.122289 1.90631e-06 2.76451e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the comfortable position ||| 0.5 0.122289 1.90631e-06 5.08519e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the comfortable ||| 1 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| the coming years ||| 0.0014881 0.122289 1.90631e-06 1.41855e-08 2.718 ||| 0-0 ||| 672 524574 +los ||| the coming ||| 0.00131694 0.122289 5.71893e-06 8.33462e-05 2.718 ||| 0-0 ||| 2278 524574 +los ||| the commensurate ||| 1 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the comments of the Member of ||| 1 0.062134 1.90631e-06 1.22005e-13 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| the comments of the Member ||| 1 0.062134 1.90631e-06 2.24423e-12 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| the comments of the ||| 0.0208333 0.062134 1.90631e-06 4.35518e-09 2.718 ||| 0-2 0-3 ||| 48 524574 +los ||| the comments ||| 0.00110132 0.122289 1.90631e-06 2.14478e-05 2.718 ||| 0-0 ||| 908 524574 +los ||| the commercially important species ||| 1 0.122289 1.90631e-06 4.38355e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the commercially important ||| 1 0.122289 1.90631e-06 2.96186e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the commercially ||| 1 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the commissioner will ||| 0.5 0.122289 1.90631e-06 2.59769e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the commissioner ||| 0.0217391 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 46 524574 +los ||| the commitment ||| 0.000834028 0.122289 1.90631e-06 2.39358e-05 2.718 ||| 0-0 ||| 1199 524574 +los ||| the commitments ||| 0.00132979 0.119032 1.90631e-06 0.000314039 2.718 ||| 0-0 0-1 ||| 752 524574 +los ||| the committed ||| 0.0714286 0.122289 1.90631e-06 3.55176e-05 2.718 ||| 0-0 ||| 14 524574 +los ||| the committee ' s ||| 0.0833333 0.122289 1.90631e-06 2.16944e-10 2.718 ||| 0-0 ||| 12 524574 +los ||| the committee ' ||| 0.0222222 0.122289 1.90631e-06 1.14043e-07 2.718 ||| 0-0 ||| 45 524574 +los ||| the committee 's ||| 0.012987 0.122289 1.90631e-06 6.32284e-08 2.718 ||| 0-0 ||| 77 524574 +los ||| the committee called ||| 1 0.122289 1.90631e-06 5.77037e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the committee ||| 0.000803052 0.122289 7.62523e-06 3.32012e-05 2.718 ||| 0-0 ||| 4981 524574 +los ||| the committees ||| 0.0031348 0.122289 3.81262e-06 3.68902e-06 2.718 ||| 0-0 ||| 638 524574 +los ||| the common goals ||| 0.0909091 0.122289 1.90631e-06 1.24852e-09 2.718 ||| 0-0 ||| 11 524574 +los ||| the common position text will introduce a ||| 1 0.122289 1.90631e-06 5.52439e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| the common position text will introduce ||| 1 0.122289 1.90631e-06 1.24631e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the common position text will ||| 1 0.122289 1.90631e-06 2.43897e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the common position text ||| 0.1 0.122289 1.90631e-06 2.81923e-12 2.718 ||| 0-0 ||| 10 524574 +los ||| the common position ||| 0.000417362 0.122289 1.90631e-06 3.263e-08 2.718 ||| 0-0 ||| 2396 524574 +los ||| the common rules ||| 0.0243902 0.122289 1.90631e-06 1.15141e-08 2.718 ||| 0-0 ||| 41 524574 +los ||| the common ||| 0.013986 0.122289 1.90631e-05 9.90889e-05 2.718 ||| 0-0 ||| 715 524574 +los ||| the communication of information ||| 0.333333 0.122289 1.90631e-06 1.18098e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the communication of values ||| 0.5 0.122289 1.90631e-06 2.36197e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the communication of ||| 0.0298507 0.122289 3.81262e-06 7.13585e-07 2.718 ||| 0-0 ||| 67 524574 +los ||| the communication ||| 0.00143575 0.122289 3.81262e-06 1.31261e-05 2.718 ||| 0-0 ||| 1393 524574 +los ||| the community of ||| 0.00909091 0.122289 1.90631e-06 8.88484e-07 2.718 ||| 0-0 ||| 110 524574 +los ||| the community ||| 0.00252525 0.122289 1.90631e-06 1.63432e-05 2.718 ||| 0-0 ||| 396 524574 +los ||| the company ' s ||| 1 0.0503393 1.90631e-06 6.83234e-12 2.718 ||| 0-0 0-1 0-2 0-3 ||| 1 524574 +los ||| the company ||| 0.00123001 0.122289 1.90631e-06 1.62145e-05 2.718 ||| 0-0 ||| 813 524574 +los ||| the competence of ||| 0.00271739 0.122289 1.90631e-06 5.62007e-07 2.718 ||| 0-0 ||| 368 524574 +los ||| the competence ||| 0.00168067 0.122289 1.90631e-06 1.03378e-05 2.718 ||| 0-0 ||| 595 524574 +los ||| the competences of ||| 0.00502513 0.122289 1.90631e-06 1.35255e-07 2.718 ||| 0-0 ||| 199 524574 +los ||| the competences ||| 0.0027027 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 370 524574 +los ||| the competent ||| 0.0375 0.122289 5.71893e-06 5.57643e-06 2.718 ||| 0-0 ||| 80 524574 +los ||| the compiled ||| 1 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| the complete ||| 0.00877193 0.122289 3.81262e-06 3.07133e-05 2.718 ||| 0-0 ||| 228 524574 +los ||| the completion ||| 0.00147275 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 679 524574 +los ||| the complex ||| 0.0033557 0.122289 1.90631e-06 9.26546e-06 2.718 ||| 0-0 ||| 298 524574 +los ||| the complications ||| 0.0333333 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 30 524574 +los ||| the component ||| 0.166667 0.122289 3.81262e-06 6.47724e-06 2.718 ||| 0-0 ||| 12 524574 +los ||| the compromise ||| 0.0010395 0.122289 3.81262e-06 1.94317e-05 2.718 ||| 0-0 ||| 1924 524574 +los ||| the compromises ||| 0.00473934 0.0930055 1.90631e-06 3.67187e-05 2.718 ||| 0-0 0-1 ||| 211 524574 +los ||| the computer software ||| 1 0.122289 1.90631e-06 8.95661e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the computer ||| 0.0140845 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 71 524574 +los ||| the concept of ||| 0.000606428 0.122289 1.90631e-06 1.38519e-06 2.718 ||| 0-0 ||| 1649 524574 +los ||| the concept ||| 0.00101781 0.122289 3.81262e-06 2.548e-05 2.718 ||| 0-0 ||| 1965 524574 +los ||| the concepts ||| 0.00689655 0.101727 1.90631e-06 3.25149e-05 2.718 ||| 0-0 0-1 ||| 145 524574 +los ||| the concerned have been heard ||| 0.333333 0.122289 1.90631e-06 2.18249e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| the concerned have been ||| 0.333333 0.122289 1.90631e-06 2.75567e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the concerned have ||| 0.333333 0.122289 1.90631e-06 8.25249e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| the concerned ||| 0.142857 0.122289 1.90631e-06 0.000690019 2.718 ||| 0-0 ||| 7 524574 +los ||| the conclusion , ||| 0.0243902 0.122289 1.90631e-06 4.52722e-06 2.718 ||| 0-0 ||| 41 524574 +los ||| the conclusion of ||| 0.00124378 0.122289 1.90631e-06 2.0638e-06 2.718 ||| 0-0 ||| 804 524574 +los ||| the conclusion ||| 0.0021978 0.122289 9.53154e-06 3.79626e-05 2.718 ||| 0-0 ||| 2275 524574 +los ||| the conclusions ||| 0.000471476 0.122289 1.90631e-06 1.08097e-05 2.718 ||| 0-0 ||| 2121 524574 +los ||| the concrete ||| 0.0350877 0.122289 3.81262e-06 1.34263e-05 2.718 ||| 0-0 ||| 57 524574 +los ||| the conditions on ||| 0.0526316 0.122289 1.90631e-06 3.42983e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| the conditions the ||| 0.333333 0.122289 1.90631e-06 2.19884e-05 2.718 ||| 0-0 0-2 ||| 3 524574 +los ||| the conditions ||| 0.000841043 0.122289 5.71893e-06 5.12603e-05 2.718 ||| 0-0 ||| 3567 524574 +los ||| the conduct of its ||| 0.166667 0.0484683 1.90631e-06 1.82062e-10 2.718 ||| 0-0 0-2 0-3 ||| 6 524574 +los ||| the conduct of our ||| 0.25 0.0248369 1.90631e-06 7.16305e-10 2.718 ||| 0-3 ||| 4 524574 +los ||| the conference , ||| 0.0149254 0.122289 1.90631e-06 9.00329e-07 2.718 ||| 0-0 ||| 67 524574 +los ||| the conference ||| 0.0022831 0.122289 3.81262e-06 7.54963e-06 2.718 ||| 0-0 ||| 876 524574 +los ||| the confirmed ||| 0.333333 0.122289 1.90631e-06 8.32175e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| the conflict ||| 0.002849 0.122289 7.62523e-06 1.78875e-05 2.718 ||| 0-0 ||| 1404 524574 +los ||| the conflicts ||| 0.00671141 0.122289 3.81262e-06 4.33246e-06 2.718 ||| 0-0 ||| 298 524574 +los ||| the confusion about ||| 0.0769231 0.122289 1.90631e-06 4.36804e-09 2.718 ||| 0-0 ||| 13 524574 +los ||| the confusion ||| 0.00492611 0.122289 1.90631e-06 3.08849e-06 2.718 ||| 0-0 ||| 203 524574 +los ||| the consciousness of the ||| 0.142857 0.122289 1.90631e-06 5.15392e-09 2.718 ||| 0-3 ||| 7 524574 +los ||| the consequence will be ||| 0.111111 0.122289 1.90631e-06 2.37406e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| the consequence will ||| 0.333333 0.122289 1.90631e-06 1.30998e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the consequence ||| 0.00291545 0.122289 1.90631e-06 1.51422e-05 2.718 ||| 0-0 ||| 343 524574 +los ||| the consequences and ||| 0.016129 0.122289 1.90631e-06 2.28355e-07 2.718 ||| 0-0 ||| 62 524574 +los ||| the consequences of far-reaching ||| 1 0.122289 1.90631e-06 5.35189e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the consequences of ||| 0.00108519 0.122289 3.81262e-06 9.91091e-07 2.718 ||| 0-0 ||| 1843 524574 +los ||| the consequences ||| 0.00188798 0.122289 1.14379e-05 1.82306e-05 2.718 ||| 0-0 ||| 3178 524574 +los ||| the considerable ||| 0.00277778 0.122289 1.90631e-06 1.9303e-05 2.718 ||| 0-0 ||| 360 524574 +los ||| the consideration ||| 0.00653595 0.122289 1.90631e-06 4.63273e-05 2.718 ||| 0-0 ||| 153 524574 +los ||| the consolidated version ||| 0.0555556 0.122289 1.90631e-06 9.23028e-11 2.718 ||| 0-0 ||| 18 524574 +los ||| the consolidated ||| 0.1 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| the constant repetition of ||| 0.5 0.122289 1.90631e-06 1.12261e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| the constant repetition ||| 0.333333 0.122289 1.90631e-06 2.065e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| the constant threat of ||| 0.1 0.122289 1.90631e-06 1.51746e-11 2.718 ||| 0-0 ||| 10 524574 +los ||| the constant threat ||| 0.0769231 0.122289 1.90631e-06 2.7913e-10 2.718 ||| 0-0 ||| 13 524574 +los ||| the constant ||| 0.0124481 0.122289 5.71893e-06 7.12067e-06 2.718 ||| 0-0 ||| 241 524574 +los ||| the constituencies ||| 0.1 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the constituent ||| 0.0909091 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| the constitution ||| 0.00137931 0.122289 1.90631e-06 7.12067e-06 2.718 ||| 0-0 ||| 725 524574 +los ||| the constraint ||| 0.1 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the consultation ||| 0.00649351 0.122289 3.81262e-06 6.34855e-06 2.718 ||| 0-0 ||| 308 524574 +los ||| the consultative ||| 0.5 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| the consumer has an additional ||| 1 0.122289 1.90631e-06 1.53154e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the consumer has an ||| 1 0.122289 1.90631e-06 2.89517e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the consumer has ||| 0.0243902 0.122289 1.90631e-06 6.51376e-08 2.718 ||| 0-0 ||| 41 524574 +los ||| the consumer is provided ||| 1 0.122289 1.90631e-06 9.09e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the consumer is ||| 0.0135135 0.122289 1.90631e-06 3.96597e-07 2.718 ||| 0-0 ||| 74 524574 +los ||| the consumer ||| 0.00229674 0.122289 9.53154e-06 1.26542e-05 2.718 ||| 0-0 ||| 2177 524574 +los ||| the consumers ||| 0.00208768 0.122289 1.90631e-06 1.6043e-05 2.718 ||| 0-0 ||| 479 524574 +los ||| the consumption of ||| 0.00510204 0.122289 1.90631e-06 3.87108e-07 2.718 ||| 0-0 ||| 196 524574 +los ||| the consumption ||| 0.00416667 0.122289 1.90631e-06 7.12067e-06 2.718 ||| 0-0 ||| 240 524574 +los ||| the contemporary ||| 0.1 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the content of ||| 0.00196464 0.122289 3.81262e-06 1.14967e-06 2.718 ||| 0-0 ||| 1018 524574 +los ||| the content ||| 0.00268817 0.122289 9.53154e-06 2.11475e-05 2.718 ||| 0-0 ||| 1860 524574 +los ||| the contents ||| 0.0027027 0.122289 1.90631e-06 4.63273e-06 2.718 ||| 0-0 ||| 370 524574 +los ||| the context of the ||| 0.00150905 0.0821857 5.71893e-06 8.16755e-08 2.718 ||| 0-0 0-2 0-3 ||| 1988 524574 +los ||| the context of ||| 0.000759301 0.122289 5.71893e-06 3.12951e-06 2.718 ||| 0-0 ||| 3951 524574 +los ||| the context ||| 0.00202429 0.122289 1.90631e-05 5.75659e-05 2.718 ||| 0-0 ||| 4940 524574 +los ||| the continued discussion ||| 0.2 0.122289 1.90631e-06 1.26751e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| the continued ||| 0.00469484 0.122289 3.81262e-06 1.46703e-05 2.718 ||| 0-0 ||| 426 524574 +los ||| the continuing practice ||| 0.5 0.122289 1.90631e-06 2.79862e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the continuing ||| 0.00909091 0.122289 9.53154e-06 2.65524e-05 2.718 ||| 0-0 ||| 550 524574 +los ||| the continuous ||| 0.012987 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 77 524574 +los ||| the contracts ||| 0.0102041 0.184101 1.90631e-06 0.00030739 2.718 ||| 0-0 0-1 ||| 98 524574 +los ||| the contrary , I have used some ||| 1 0.122289 1.90631e-06 1.01925e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the contrary , I have used ||| 1 0.122289 1.90631e-06 9.35696e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the contrary , I have ||| 0.333333 0.122289 1.90631e-06 2.18111e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the contrary , I ||| 0.0714286 0.122289 1.90631e-06 1.8237e-08 2.718 ||| 0-0 ||| 14 524574 +los ||| the contrary , ||| 0.00358166 0.122289 9.53154e-06 2.57821e-06 2.718 ||| 0-0 ||| 1396 524574 +los ||| the contrary : the ||| 0.5 0.122289 1.90631e-06 4.47019e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| the contrary ||| 0.00397501 0.122289 1.33442e-05 2.16194e-05 2.718 ||| 0-0 ||| 1761 524574 +los ||| the contribution ||| 0.00119048 0.122289 1.90631e-06 3.86061e-05 2.718 ||| 0-0 ||| 840 524574 +los ||| the control of the ||| 0.00746269 0.122289 1.90631e-06 1.09807e-07 2.718 ||| 0-0 ||| 134 524574 +los ||| the control of ||| 0.00178891 0.122289 1.90631e-06 1.78863e-06 2.718 ||| 0-0 ||| 559 524574 +los ||| the control ||| 0.00384615 0.122289 5.71893e-06 3.29009e-05 2.718 ||| 0-0 ||| 780 524574 +los ||| the controller ||| 0.142857 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| the conurbations and they have vast areas ||| 1 0.122289 1.90631e-06 4.60427e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| the conurbations and they have vast ||| 1 0.122289 1.90631e-06 2.01148e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the conurbations and they have ||| 1 0.122289 1.90631e-06 1.46823e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the conurbations and they ||| 1 0.122289 1.90631e-06 1.22764e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the conurbations and ||| 1 0.122289 1.90631e-06 3.76114e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the conurbations ||| 0.0833333 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| the conventions and ||| 0.0588235 0.124458 1.90631e-06 1.11813e-06 2.718 ||| 0-0 0-1 ||| 17 524574 +los ||| the conventions ||| 0.00689655 0.124458 1.90631e-06 8.92658e-05 2.718 ||| 0-0 0-1 ||| 145 524574 +los ||| the convergence ||| 0.00512821 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-0 ||| 195 524574 +los ||| the cooler ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the cooperation between ||| 0.00401606 0.122289 1.90631e-06 1.04219e-08 2.718 ||| 0-0 ||| 249 524574 +los ||| the cooperation of the ||| 0.00729927 0.122289 1.90631e-06 1.31854e-07 2.718 ||| 0-0 ||| 137 524574 +los ||| the cooperation of ||| 0.00378788 0.122289 1.90631e-06 2.14775e-06 2.718 ||| 0-0 ||| 264 524574 +los ||| the cooperation ||| 0.00358423 0.122289 7.62523e-06 3.95069e-05 2.718 ||| 0-0 ||| 1116 524574 +los ||| the coordination of procedures for ||| 0.125 0.219824 1.90631e-06 9.20376e-13 2.718 ||| 0-3 ||| 8 524574 +los ||| the coordination of procedures ||| 0.111111 0.219824 1.90631e-06 1.19752e-10 2.718 ||| 0-3 ||| 9 524574 +los ||| the core of the ||| 0.00840336 0.0821857 1.90631e-06 9.19001e-09 2.718 ||| 0-0 0-2 0-3 ||| 119 524574 +los ||| the correct legal ||| 0.333333 0.122289 1.90631e-06 2.00134e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the correct ||| 0.00632911 0.122289 3.81262e-06 1.54424e-05 2.718 ||| 0-0 ||| 316 524574 +los ||| the corresponding ||| 0.0171674 0.122289 7.62523e-06 9.26546e-06 2.718 ||| 0-0 ||| 233 524574 +los ||| the corridors ||| 0.0131579 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 76 524574 +los ||| the cost of the ||| 0.0215054 0.0821857 1.14379e-05 5.03929e-08 2.718 ||| 0-0 0-2 0-3 ||| 279 524574 +los ||| the cost of water ||| 0.5 0.122289 1.90631e-06 1.09867e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the cost of ||| 0.00170551 0.122289 5.71893e-06 1.93088e-06 2.718 ||| 0-0 ||| 1759 524574 +los ||| the cost ||| 0.00368249 0.122289 1.71568e-05 3.55176e-05 2.718 ||| 0-0 ||| 2444 524574 +los ||| the costs and ||| 0.00847458 0.168365 1.90631e-06 1.4878e-05 2.718 ||| 0-0 0-1 ||| 118 524574 +los ||| the costs of the ||| 0.00641026 0.0821857 1.90631e-06 4.57675e-08 2.718 ||| 0-0 0-2 0-3 ||| 156 524574 +los ||| the costs of ||| 0.00107643 0.122289 1.90631e-06 1.75365e-06 2.718 ||| 0-0 ||| 929 524574 +los ||| the costs ||| 0.00330657 0.168365 1.33442e-05 0.00118778 2.718 ||| 0-0 0-1 ||| 2117 524574 +los ||| the counter ||| 0.037037 0.122289 1.90631e-06 7.8928e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| the countries ' ||| 0.125 0.0444479 3.81262e-06 1.23993e-07 2.718 ||| 0-2 ||| 16 524574 +los ||| the countries from which one would buy ||| 1 0.122289 1.90631e-06 1.04096e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the countries from which one would ||| 1 0.122289 1.90631e-06 5.45004e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the countries from which one ||| 1 0.122289 1.90631e-06 9.28663e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the countries from which ||| 0.0212766 0.122289 1.90631e-06 2.22808e-09 2.718 ||| 0-0 ||| 47 524574 +los ||| the countries from ||| 0.0128205 0.122289 1.90631e-06 2.62293e-07 2.718 ||| 0-0 ||| 78 524574 +los ||| the countries involved ||| 0.00694444 0.109005 1.90631e-06 1.23653e-06 2.718 ||| 0-0 0-1 ||| 144 524574 +los ||| the countries of the ||| 0.00121212 0.122289 3.81262e-06 5.43595e-07 2.718 ||| 0-0 ||| 1650 524574 +los ||| the countries of ||| 0.00213904 0.122289 1.14379e-05 8.85452e-06 2.718 ||| 0-0 ||| 2805 524574 +los ||| the countries ||| 0.006596 0.109005 0.000106753 0.00357587 2.718 ||| 0-0 0-1 ||| 8490 524574 +los ||| the country 's political ||| 0.333333 0.122289 1.90631e-06 5.24797e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| the country 's ||| 0.0583333 0.122289 1.33442e-05 2.94004e-07 2.718 ||| 0-0 ||| 120 524574 +los ||| the country and ||| 0.00332226 0.122289 1.90631e-06 1.93377e-06 2.718 ||| 0-0 ||| 301 524574 +los ||| the country concerned . ||| 0.0588235 0.122289 1.90631e-06 7.52215e-10 2.718 ||| 0-0 ||| 17 524574 +los ||| the country concerned ||| 0.0166667 0.122289 1.90631e-06 2.48338e-07 2.718 ||| 0-0 ||| 60 524574 +los ||| the country in question agrees to receive ||| 1 0.122289 1.90631e-06 2.36573e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the country in question agrees to ||| 1 0.122289 1.90631e-06 2.35631e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the country in question agrees ||| 1 0.122289 1.90631e-06 2.65176e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the country in question ||| 0.0166667 0.122289 1.90631e-06 2.73378e-09 2.718 ||| 0-0 ||| 60 524574 +los ||| the country in ||| 0.00749064 0.122289 3.81262e-06 3.30446e-06 2.718 ||| 0-0 ||| 267 524574 +los ||| the country is ||| 0.00380228 0.122289 1.90631e-06 4.83848e-06 2.718 ||| 0-0 ||| 263 524574 +los ||| the country ||| 0.00457007 0.122289 5.14703e-05 0.000154381 2.718 ||| 0-0 ||| 5908 524574 +los ||| the countryside , ||| 0.0105263 0.122289 1.90631e-06 2.0462e-07 2.718 ||| 0-0 ||| 95 524574 +los ||| the countryside . ||| 0.0126582 0.122289 1.90631e-06 5.19723e-09 2.718 ||| 0-0 ||| 79 524574 +los ||| the countryside ||| 0.00864553 0.122289 5.71893e-06 1.71583e-06 2.718 ||| 0-0 ||| 347 524574 +los ||| the courage ||| 0.00167504 0.122289 3.81262e-06 3.68902e-06 2.718 ||| 0-0 ||| 1194 524574 +los ||| the course of my work with ||| 1 0.122289 1.90631e-06 7.65895e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the course of my work ||| 0.25 0.122289 1.90631e-06 1.19774e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| the course of my ||| 0.0625 0.122289 1.90631e-06 1.89217e-08 2.718 ||| 0-0 ||| 16 524574 +los ||| the course of the ||| 0.0255639 0.0821857 3.24072e-05 7.67883e-07 2.718 ||| 0-0 0-2 0-3 ||| 665 524574 +los ||| the course of ||| 0.0208062 0.122289 6.10019e-05 2.94226e-05 2.718 ||| 0-0 ||| 1538 524574 +los ||| the course which ||| 0.125 0.122289 1.90631e-06 4.5974e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| the course ||| 0.0192498 0.122289 7.4346e-05 0.000541214 2.718 ||| 0-0 ||| 2026 524574 +los ||| the court . ||| 0.047619 0.122289 1.90631e-06 3.88493e-08 2.718 ||| 0-0 ||| 21 524574 +los ||| the court of the ||| 0.103448 0.122289 5.71893e-06 4.28061e-08 2.718 ||| 0-0 ||| 29 524574 +los ||| the court of ||| 0.05 0.122289 3.81262e-06 6.97261e-07 2.718 ||| 0-0 ||| 40 524574 +los ||| the court ||| 0.0123457 0.122289 7.62523e-06 1.28258e-05 2.718 ||| 0-0 ||| 324 524574 +los ||| the courts ||| 0.00557103 0.122289 7.62523e-06 5.10458e-06 2.718 ||| 0-0 ||| 718 524574 +los ||| the cows ||| 0.0625 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| the creation of ||| 0.000382922 0.122289 3.81262e-06 1.08204e-06 2.718 ||| 0-0 ||| 5223 524574 +los ||| the creation ||| 0.000823045 0.122289 9.53154e-06 1.99036e-05 2.718 ||| 0-0 ||| 6075 524574 +los ||| the credit balance ||| 1 0.122289 1.90631e-06 8.33891e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the credit of the ||| 0.0526316 0.0821857 1.90631e-06 2.191e-08 2.718 ||| 0-0 0-2 0-3 ||| 19 524574 +los ||| the credit ||| 0.017341 0.122289 5.71893e-06 1.54424e-05 2.718 ||| 0-0 ||| 173 524574 +los ||| the criminal practices , ||| 1 0.122289 1.90631e-06 7.59407e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the criminal practices ||| 1 0.122289 1.90631e-06 6.36794e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the criminal responsibility ||| 0.25 0.122289 1.90631e-06 2.066e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the criminal ||| 0.0526316 0.122289 7.62523e-06 1.78875e-05 2.718 ||| 0-0 ||| 76 524574 +los ||| the crisis ||| 0.000381461 0.122289 3.81262e-06 3.10135e-05 2.718 ||| 0-0 ||| 5243 524574 +los ||| the criteria agreed in the Treaty , ||| 1 0.122289 1.90631e-06 1.37515e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| the criteria agreed in the Treaty ||| 1 0.122289 1.90631e-06 1.15312e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| the criteria agreed in the ||| 1 0.122289 1.90631e-06 1.3471e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| the criteria themselves ||| 0.25 0.0944815 1.90631e-06 1.10575e-07 2.718 ||| 0-0 0-1 ||| 4 524574 +los ||| the criteria ||| 0.00328228 0.0944815 1.14379e-05 0.000257331 2.718 ||| 0-0 0-1 ||| 1828 524574 +los ||| the cross-border ||| 0.0416667 0.0677821 1.90631e-06 3.04559e-05 2.718 ||| 0-0 0-1 ||| 24 524574 +los ||| the crowd ||| 0.027027 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 37 524574 +los ||| the crucial ||| 0.00564972 0.122289 1.90631e-06 1.63432e-05 2.718 ||| 0-0 ||| 177 524574 +los ||| the cultures ||| 0.0246914 0.122289 3.81262e-06 6.00539e-07 2.718 ||| 0-0 ||| 81 524574 +los ||| the cumbersome ||| 0.0344828 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 29 524574 +los ||| the current EUR ||| 0.5 0.122289 1.90631e-06 1.8903e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the current political security crisis ||| 1 0.122289 1.90631e-06 7.45365e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the current political security ||| 1 0.122289 1.90631e-06 1.03093e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the current political ||| 0.2 0.122289 1.90631e-06 1.26185e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| the current system of ||| 0.0111111 0.122289 1.90631e-06 1.07184e-09 2.718 ||| 0-0 ||| 90 524574 +los ||| the current system ||| 0.00268817 0.122289 1.90631e-06 1.9716e-08 2.718 ||| 0-0 ||| 372 524574 +los ||| the current versions of the ||| 1 0.0821857 1.90631e-06 5.01495e-13 2.718 ||| 0-0 0-3 0-4 ||| 1 524574 +los ||| the current ||| 0.00570167 0.122289 5.90956e-05 7.0692e-05 2.718 ||| 0-0 ||| 5437 524574 +los ||| the cuts ||| 0.00574713 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-0 ||| 174 524574 +los ||| the cycle ||| 0.01 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 100 524574 +los ||| the dairy ||| 0.0285714 0.112239 1.90631e-06 4.67133e-05 2.718 ||| 0-0 0-1 ||| 35 524574 +los ||| the damage caused by ||| 0.00680272 0.122289 1.90631e-06 8.04953e-12 2.718 ||| 0-0 ||| 147 524574 +los ||| the damage caused ||| 0.00448431 0.122289 1.90631e-06 1.53321e-09 2.718 ||| 0-0 ||| 223 524574 +los ||| the damage ||| 0.00192864 0.122289 3.81262e-06 1.80591e-05 2.718 ||| 0-0 ||| 1037 524574 +los ||| the dangerous ||| 0.00862069 0.122289 1.90631e-06 9.56573e-06 2.718 ||| 0-0 ||| 116 524574 +los ||| the dark about the ||| 0.25 0.122289 1.90631e-06 4.17141e-10 2.718 ||| 0-3 ||| 4 524574 +los ||| the dark ||| 0.00813008 0.122289 1.90631e-06 4.80431e-06 2.718 ||| 0-0 ||| 123 524574 +los ||| the data ||| 0.00466418 0.142605 9.53154e-06 0.000888755 2.718 ||| 0-0 0-1 ||| 1072 524574 +los ||| the date on ||| 0.0105263 0.122289 1.90631e-06 2.93329e-07 2.718 ||| 0-0 ||| 95 524574 +los ||| the date ||| 0.0010627 0.122289 1.90631e-06 4.38393e-05 2.718 ||| 0-0 ||| 941 524574 +los ||| the day , but also includes dividing ||| 1 0.122289 1.90631e-06 4.73706e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| the day , but also includes ||| 1 0.122289 1.90631e-06 1.31585e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the day , but also ||| 1 0.122289 1.90631e-06 4.52182e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the day , but ||| 0.166667 0.122289 1.90631e-06 8.95659e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| the day , ||| 0.0105263 0.122289 5.71893e-06 1.31059e-05 2.718 ||| 0-0 ||| 285 524574 +los ||| the day on ||| 0.0232558 0.122289 1.90631e-06 7.35332e-07 2.718 ||| 0-0 ||| 43 524574 +los ||| the day when the ||| 0.0526316 0.0614546 1.90631e-06 2.4896e-10 2.718 ||| 0-2 0-3 ||| 19 524574 +los ||| the day ||| 0.0089841 0.122289 2.4782e-05 0.000109899 2.718 ||| 0-0 ||| 1447 524574 +los ||| the days ||| 0.00381679 0.122289 1.90631e-06 2.73245e-05 2.718 ||| 0-0 ||| 262 524574 +los ||| the dead ||| 0.00813008 0.122289 1.90631e-06 1.06381e-05 2.718 ||| 0-0 ||| 123 524574 +los ||| the deal ||| 0.010101 0.122289 1.90631e-06 0.000182135 2.718 ||| 0-0 ||| 99 524574 +los ||| the death penalty to ||| 0.0285714 0.122289 1.90631e-06 2.8976e-11 2.718 ||| 0-0 ||| 35 524574 +los ||| the death penalty ||| 0.000468604 0.122289 1.90631e-06 3.26093e-10 2.718 ||| 0-0 ||| 2134 524574 +los ||| the death ||| 0.00280899 0.122289 3.81262e-06 2.32923e-05 2.718 ||| 0-0 ||| 712 524574 +los ||| the debate being ||| 0.2 0.122289 1.90631e-06 2.41581e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| the debate in ||| 0.00263852 0.122289 1.90631e-06 1.81704e-06 2.718 ||| 0-0 ||| 379 524574 +los ||| the debate is now heading - it ||| 0.25 0.122289 1.90631e-06 1.20215e-17 2.718 ||| 0-0 ||| 4 524574 +los ||| the debate is now heading - ||| 0.25 0.122289 1.90631e-06 6.76005e-16 2.718 ||| 0-0 ||| 4 524574 +los ||| the debate is now heading ||| 0.25 0.122289 1.90631e-06 1.79212e-13 2.718 ||| 0-0 ||| 4 524574 +los ||| the debate is now ||| 0.125 0.122289 1.90631e-06 5.48049e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| the debate is ||| 0.000290444 0.122289 1.90631e-06 2.66056e-06 2.718 ||| 0-0 ||| 3443 524574 +los ||| the debate of the ||| 0.0625 0.122289 1.90631e-06 1.97963e-06 2.718 ||| 0-0 0-3 ||| 16 524574 +los ||| the debate on ||| 0.000332447 0.122289 1.90631e-06 5.68002e-07 2.718 ||| 0-0 ||| 3008 524574 +los ||| the debate was exemplary . ||| 1 0.122289 1.90631e-06 1.77232e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the debate was exemplary ||| 1 0.122289 1.90631e-06 5.85116e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the debate was ||| 0.0172414 0.122289 1.90631e-06 2.65962e-07 2.718 ||| 0-0 ||| 58 524574 +los ||| the debate ||| 0.000482892 0.122289 1.33442e-05 8.48905e-05 2.718 ||| 0-0 ||| 14496 524574 +los ||| the debt ||| 0.00371747 0.122289 1.90631e-06 8.49333e-06 2.718 ||| 0-0 ||| 269 524574 +los ||| the debts are interrelated with one another ||| 1 0.122289 1.90631e-06 2.16221e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| the debts are interrelated with one ||| 1 0.122289 1.90631e-06 8.96811e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the debts are interrelated with ||| 1 0.122289 1.90631e-06 2.15166e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the debts are interrelated ||| 1 0.122289 1.90631e-06 3.36486e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the debts are ||| 0.5 0.122289 1.90631e-06 3.05896e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the debts of the ||| 0.0333333 0.122289 1.90631e-06 6.72872e-09 2.718 ||| 0-0 ||| 30 524574 +los ||| the debts of ||| 0.0172414 0.122289 1.90631e-06 1.09603e-07 2.718 ||| 0-0 ||| 58 524574 +los ||| the debts ||| 0.0285714 0.122289 5.71893e-06 2.01609e-06 2.718 ||| 0-0 ||| 105 524574 +los ||| the decisions of ||| 0.00465116 0.122289 1.90631e-06 1.7793e-06 2.718 ||| 0-0 ||| 215 524574 +los ||| the decisions on ||| 0.00970874 0.122289 1.90631e-06 2.18992e-07 2.718 ||| 0-0 ||| 103 524574 +los ||| the decisions ||| 0.000967586 0.122289 3.81262e-06 3.27294e-05 2.718 ||| 0-0 ||| 2067 524574 +los ||| the dedicated ||| 0.142857 0.122289 1.90631e-06 6.34855e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| the defence ||| 0.00124224 0.122289 1.90631e-06 1.08097e-05 2.718 ||| 0-0 ||| 805 524574 +los ||| the defenders of ||| 0.0147059 0.122289 1.90631e-06 5.13035e-08 2.718 ||| 0-0 ||| 68 524574 +los ||| the defenders ||| 0.031746 0.122289 3.81262e-06 9.43704e-07 2.718 ||| 0-0 ||| 63 524574 +los ||| the deficits where countries ||| 0.5 0.122289 1.90631e-06 1.57923e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the deficits where ||| 0.5 0.122289 1.90631e-06 4.15916e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the deficits ||| 0.03125 0.122289 3.81262e-06 1.37266e-06 2.718 ||| 0-0 ||| 64 524574 +los ||| the defined ||| 0.666667 0.122289 3.81262e-06 1.437e-05 2.718 ||| 0-0 ||| 3 524574 +los ||| the definition of the ||| 0.00398406 0.122289 1.90631e-06 3.90839e-08 2.718 ||| 0-3 ||| 251 524574 +los ||| the definition ||| 0.00124844 0.122289 3.81262e-06 1.17105e-05 2.718 ||| 0-0 ||| 1602 524574 +los ||| the degree of ||| 0.00576369 0.122289 3.81262e-06 3.22979e-06 2.718 ||| 0-0 ||| 347 524574 +los ||| the degree to which the ||| 0.117647 0.122289 3.81262e-06 1.92361e-08 2.718 ||| 0-0 0-4 ||| 17 524574 +los ||| the degree ||| 0.00642398 0.122289 5.71893e-06 5.94104e-05 2.718 ||| 0-0 ||| 467 524574 +los ||| the demands made ||| 0.0120482 0.122289 1.90631e-06 3.45952e-08 2.718 ||| 0-0 ||| 83 524574 +los ||| the demands ||| 0.0029703 0.122289 5.71893e-06 1.65148e-05 2.718 ||| 0-0 ||| 1010 524574 +los ||| the democracy ||| 0.00917431 0.122289 1.90631e-06 1.24826e-05 2.718 ||| 0-0 ||| 109 524574 +los ||| the democratic ||| 0.0138889 0.122289 3.81262e-06 1.28258e-05 2.718 ||| 0-0 ||| 144 524574 +los ||| the demonstration ||| 0.00943396 0.122289 1.90631e-06 4.46115e-06 2.718 ||| 0-0 ||| 106 524574 +los ||| the department ||| 0.0434783 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-0 ||| 23 524574 +los ||| the dependent ||| 1 0.122289 1.90631e-06 1.17105e-05 2.718 ||| 0-0 ||| 1 524574 +los ||| the deployment of the ||| 0.0263158 0.122289 1.90631e-06 6.72872e-09 2.718 ||| 0-0 ||| 38 524574 +los ||| the deployment of ||| 0.00471698 0.122289 1.90631e-06 1.09603e-07 2.718 ||| 0-0 ||| 212 524574 +los ||| the deployment ||| 0.00396825 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 252 524574 +los ||| the deportations ||| 0.0416667 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 24 524574 +los ||| the descendants ||| 0.0555556 0.100917 1.90631e-06 2.9169e-06 2.718 ||| 0-0 0-1 ||| 18 524574 +los ||| the description of ||| 0.0185185 0.122289 1.90631e-06 2.93829e-07 2.718 ||| 0-0 ||| 54 524574 +los ||| the description ||| 0.00869565 0.122289 1.90631e-06 5.40485e-06 2.718 ||| 0-0 ||| 115 524574 +los ||| the designation ||| 0.00729927 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 137 524574 +los ||| the desire to arrive ||| 0.5 0.122289 1.90631e-06 3.60336e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the desire to ||| 0.00239234 0.122289 1.90631e-06 1.78384e-06 2.718 ||| 0-0 ||| 418 524574 +los ||| the desire ||| 0.00672269 0.122289 7.62523e-06 2.00752e-05 2.718 ||| 0-0 ||| 595 524574 +los ||| the desired ||| 0.05 0.122289 7.62523e-06 6.64882e-06 2.718 ||| 0-0 ||| 80 524574 +los ||| the destruction wrought ||| 1 0.122289 1.90631e-06 6.2456e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the destruction ||| 0.00417827 0.122289 5.71893e-06 4.46115e-06 2.718 ||| 0-0 ||| 718 524574 +los ||| the detriment of the ||| 0.004 0.0821857 1.90631e-06 5.90352e-09 2.718 ||| 0-0 0-2 0-3 ||| 250 524574 +los ||| the detriment of ||| 0.00161031 0.122289 1.90631e-06 2.26202e-07 2.718 ||| 0-0 ||| 621 524574 +los ||| the detriment ||| 0.00459418 0.122289 5.71893e-06 4.16088e-06 2.718 ||| 0-0 ||| 653 524574 +los ||| the devastated ||| 0.2 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| the developed world ||| 0.0103093 0.122289 1.90631e-06 6.71311e-09 2.718 ||| 0-0 ||| 97 524574 +los ||| the developed ||| 0.0232558 0.122289 1.90631e-06 2.94693e-05 2.718 ||| 0-0 ||| 43 524574 +los ||| the developing world , ||| 0.012987 0.122289 1.90631e-06 6.32764e-10 2.718 ||| 0-0 ||| 77 524574 +los ||| the developing world ||| 0.00242718 0.122289 1.90631e-06 5.30599e-09 2.718 ||| 0-0 ||| 412 524574 +los ||| the developing ||| 0.0129032 0.122289 3.81262e-06 2.32923e-05 2.718 ||| 0-0 ||| 155 524574 +los ||| the development of ||| 0.000653381 0.122289 7.62523e-06 3.8361e-06 2.718 ||| 0-0 ||| 6122 524574 +los ||| the development ||| 0.00175628 0.122289 2.4782e-05 7.05633e-05 2.718 ||| 0-0 ||| 7402 524574 +los ||| the difference between , ||| 1 0.122289 1.90631e-06 3.54911e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the difference between ||| 0.00221729 0.122289 1.90631e-06 2.97607e-09 2.718 ||| 0-0 ||| 451 524574 +los ||| the difference ||| 0.00118203 0.122289 1.90631e-06 1.12816e-05 2.718 ||| 0-0 ||| 846 524574 +los ||| the differences in pay ||| 0.333333 0.122289 1.90631e-06 3.07664e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| the differences in ||| 0.00465116 0.122289 1.90631e-06 2.14849e-07 2.718 ||| 0-0 ||| 215 524574 +los ||| the differences ||| 0.00227273 0.122289 3.81262e-06 1.00376e-05 2.718 ||| 0-0 ||| 880 524574 +los ||| the different EU ||| 0.5 0.122289 1.90631e-06 4.67369e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the different ||| 0.0142996 0.122289 8.38776e-05 9.44562e-05 2.718 ||| 0-0 ||| 3077 524574 +los ||| the digital world among the central themes ||| 1 0.122289 1.90631e-06 2.11305e-25 2.718 ||| 0-0 ||| 1 524574 +los ||| the digital world among the central ||| 1 0.122289 1.90631e-06 5.86959e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| the digital world among the ||| 1 0.122289 1.90631e-06 2.15003e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the digital world among ||| 1 0.122289 1.90631e-06 3.50215e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the digital world ||| 0.037037 0.122289 1.90631e-06 3.90865e-10 2.718 ||| 0-0 ||| 27 524574 +los ||| the digital ||| 0.0588235 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| the dignity ||| 0.00193424 0.122289 1.90631e-06 3.08849e-06 2.718 ||| 0-0 ||| 517 524574 +los ||| the dilatory ||| 0.5 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the dimension of the ||| 0.1 0.122289 1.90631e-06 4.53831e-08 2.718 ||| 0-3 ||| 10 524574 +los ||| the dimension of ||| 0.02 0.122289 1.90631e-06 7.39237e-07 2.718 ||| 0-0 ||| 50 524574 +los ||| the dimension ||| 0.0163934 0.122289 1.90631e-06 1.35979e-05 2.718 ||| 0-0 ||| 61 524574 +los ||| the direct advertising ||| 0.333333 0.122289 1.90631e-06 1.81869e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the direct ||| 0.0208333 0.122289 3.81262e-06 2.11475e-05 2.718 ||| 0-0 ||| 96 524574 +los ||| the direction of the ||| 0.02 0.122289 3.81262e-06 1.2985e-07 2.718 ||| 0-0 ||| 100 524574 +los ||| the direction of ||| 0.00743494 0.122289 7.62523e-06 2.1151e-06 2.718 ||| 0-0 ||| 538 524574 +los ||| the direction ||| 0.00485437 0.122289 1.14379e-05 3.89063e-05 2.718 ||| 0-0 ||| 1236 524574 +los ||| the directive 's ||| 0.0588235 0.0786353 1.90631e-06 2.93318e-07 2.718 ||| 0-0 0-2 ||| 17 524574 +los ||| the directive , it is necessary to ||| 0.5 0.122289 1.90631e-06 7.27469e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the directive , it is necessary ||| 0.5 0.122289 1.90631e-06 8.18685e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the directive , it is ||| 0.125 0.122289 1.90631e-06 3.18183e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| the directive , it ||| 0.166667 0.122289 1.90631e-06 1.01523e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the directive , ||| 0.00125471 0.122289 1.90631e-06 5.7089e-06 2.718 ||| 0-0 ||| 797 524574 +los ||| the directive ||| 0.00021751 0.122289 3.81262e-06 4.78715e-05 2.718 ||| 0-0 ||| 9195 524574 +los ||| the directly ||| 0.25 0.122289 1.90631e-06 1.62145e-05 2.718 ||| 0-0 ||| 4 524574 +los ||| the disadvantage of ||| 0.0625 0.122289 5.71893e-06 2.51854e-07 2.718 ||| 0-0 ||| 48 524574 +los ||| the disadvantage ||| 0.0714286 0.122289 9.53154e-06 4.63273e-06 2.718 ||| 0-0 ||| 70 524574 +los ||| the disappearance ||| 0.00369004 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 271 524574 +los ||| the disaster at ||| 0.0666667 0.122289 1.90631e-06 4.52645e-08 2.718 ||| 0-0 ||| 15 524574 +los ||| the disaster ||| 0.0017301 0.122289 1.90631e-06 1.08097e-05 2.718 ||| 0-0 ||| 578 524574 +los ||| the disasters ||| 0.0105263 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-0 ||| 95 524574 +los ||| the discretion ||| 0.00826446 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 121 524574 +los ||| the discussions ||| 0.000684463 0.122289 1.90631e-06 1.77588e-05 2.718 ||| 0-0 ||| 1461 524574 +los ||| the disease ||| 0.00124069 0.122289 1.90631e-06 1.26542e-05 2.718 ||| 0-0 ||| 806 524574 +los ||| the dishonest ||| 0.333333 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the dismantling of the ||| 0.0227273 0.122289 1.90631e-06 3.57911e-09 2.718 ||| 0-0 ||| 44 524574 +los ||| the dismantling of ||| 0.00609756 0.122289 1.90631e-06 5.82995e-08 2.718 ||| 0-0 ||| 164 524574 +los ||| the dismantling ||| 0.00515464 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 194 524574 +los ||| the disposal of ||| 0.00609756 0.122289 1.90631e-06 1.96353e-06 2.718 ||| 0-0 ||| 164 524574 +los ||| the disposal ||| 0.0188679 0.122289 7.62523e-06 3.61181e-05 2.718 ||| 0-0 ||| 212 524574 +los ||| the dispute ||| 0.00347222 0.122289 1.90631e-06 7.24936e-06 2.718 ||| 0-0 ||| 288 524574 +los ||| the dissemination ||| 0.00411523 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 243 524574 +los ||| the distinguished ||| 0.0344828 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 29 524574 +los ||| the distribution of resources ||| 0.0434783 0.122289 1.90631e-06 3.42288e-11 2.718 ||| 0-0 ||| 23 524574 +los ||| the distribution of ||| 0.00154799 0.122289 1.90631e-06 4.78055e-07 2.718 ||| 0-0 ||| 646 524574 +los ||| the distribution ||| 0.00133333 0.122289 1.90631e-06 8.7936e-06 2.718 ||| 0-0 ||| 750 524574 +los ||| the district ||| 0.0588235 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 17 524574 +los ||| the divergences in ||| 0.25 0.122289 1.90631e-06 6.42712e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the divergences ||| 0.0555556 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 18 524574 +los ||| the divorce ||| 0.2 0.0709007 1.90631e-06 3.34586e-06 2.718 ||| 0-0 0-1 ||| 5 524574 +los ||| the dockers ||| 0.142857 0.122289 3.81262e-06 1.71583e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| the doctor ||| 0.0172414 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 58 524574 +los ||| the document ||| 0.000809062 0.122289 1.90631e-06 1.437e-05 2.718 ||| 0-0 ||| 1236 524574 +los ||| the documents ||| 0.00319489 0.122289 3.81262e-06 1.08097e-05 2.718 ||| 0-0 ||| 626 524574 +los ||| the domain ||| 0.0165289 0.122289 3.81262e-06 6.77751e-06 2.718 ||| 0-0 ||| 121 524574 +los ||| the domestic ||| 0.0555556 0.122289 3.81262e-06 6.00539e-06 2.718 ||| 0-0 ||| 36 524574 +los ||| the done thing ||| 0.142857 0.122289 1.90631e-06 7.13759e-08 2.718 ||| 0-0 ||| 7 524574 +los ||| the done ||| 0.166667 0.122289 1.90631e-06 0.000195604 2.718 ||| 0-0 ||| 6 524574 +los ||| the donors here ||| 0.333333 0.122289 1.90631e-06 2.17459e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the donors ||| 0.0178571 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 56 524574 +los ||| the door as ||| 0.5 0.122289 1.90631e-06 1.98289e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the door of the ||| 0.0588235 0.122289 3.81262e-06 6.48534e-08 2.718 ||| 0-0 ||| 34 524574 +los ||| the door of their ||| 1 0.122289 1.90631e-06 1.22446e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the door of ||| 0.0535714 0.122289 5.71893e-06 1.05639e-06 2.718 ||| 0-0 ||| 56 524574 +los ||| the door ||| 0.0123119 0.122289 1.71568e-05 1.94317e-05 2.718 ||| 0-0 ||| 731 524574 +los ||| the doors of the ||| 0.0333333 0.122289 1.90631e-06 1.70366e-08 2.718 ||| 0-0 ||| 30 524574 +los ||| the doors of ||| 0.02 0.122289 1.90631e-06 2.77505e-07 2.718 ||| 0-0 ||| 50 524574 +los ||| the doors ||| 0.00510204 0.122289 1.90631e-06 5.10458e-06 2.718 ||| 0-0 ||| 196 524574 +los ||| the double budgeting relating to ||| 1 0.122289 1.90631e-06 3.95678e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the double budgeting relating ||| 1 0.122289 1.90631e-06 4.45291e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the double budgeting ||| 1 0.122289 1.90631e-06 3.91637e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the double ||| 0.00704225 0.122289 1.90631e-06 3.56034e-06 2.718 ||| 0-0 ||| 142 524574 +los ||| the doubling ||| 0.0232558 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 43 524574 +los ||| the dozens ||| 0.0333333 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| the draft for ||| 0.0909091 0.122289 1.90631e-06 1.73084e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| the draft treaty 's ||| 0.5 0.0349814 1.90631e-06 5.19383e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| the draft ||| 0.000325203 0.122289 3.81262e-06 2.25202e-05 2.718 ||| 0-0 ||| 6150 524574 +los ||| the draftsman ||| 0.00578035 0.122289 1.90631e-06 1.20537e-05 2.718 ||| 0-0 ||| 173 524574 +los ||| the drawing of ||| 0.1 0.122289 1.90631e-06 1.15899e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| the drawing up ||| 0.00588235 0.122289 1.90631e-06 7.27089e-08 2.718 ||| 0-0 ||| 170 524574 +los ||| the drawing ||| 0.0322581 0.122289 3.81262e-06 2.13191e-05 2.718 ||| 0-0 ||| 62 524574 +los ||| the dreadful ||| 0.00847458 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 118 524574 +los ||| the drive towards ||| 0.0434783 0.122289 1.90631e-06 1.64522e-09 2.718 ||| 0-0 ||| 23 524574 +los ||| the drive ||| 0.012987 0.122289 1.90631e-06 1.29545e-05 2.718 ||| 0-0 ||| 77 524574 +los ||| the driver is well over ||| 0.5 0.122289 1.90631e-06 7.39009e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the driver is well ||| 0.5 0.122289 1.90631e-06 1.53481e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the driver is ||| 0.111111 0.122289 1.90631e-06 9.67965e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| the driver ||| 0.0869565 0.122289 1.52505e-05 3.08849e-06 2.718 ||| 0-0 ||| 92 524574 +los ||| the driving force behind the ||| 0.0232558 0.122289 1.90631e-06 1.32929e-14 2.718 ||| 0-4 ||| 43 524574 +los ||| the driving force ||| 0.0052356 0.122289 1.90631e-06 2.41658e-09 2.718 ||| 0-0 ||| 191 524574 +los ||| the driving ||| 0.0196078 0.122289 1.90631e-06 1.41985e-05 2.718 ||| 0-0 ||| 51 524574 +los ||| the drop of ||| 0.1 0.122289 1.90631e-06 3.68453e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the drop ||| 0.0128205 0.122289 1.90631e-06 6.77751e-06 2.718 ||| 0-0 ||| 78 524574 +los ||| the drug ||| 0.025641 0.122289 1.90631e-06 6.77751e-06 2.718 ||| 0-0 ||| 39 524574 +los ||| the drum of every kind ||| 0.25 0.122289 1.90631e-06 1.29607e-15 2.718 ||| 0-0 ||| 4 524574 +los ||| the drum of every ||| 0.25 0.122289 1.90631e-06 2.65589e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| the drum of ||| 0.25 0.122289 1.90631e-06 1.63238e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the drum ||| 0.0769231 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 13 524574 +los ||| the due ||| 0.0277778 0.122289 1.90631e-06 0.000118564 2.718 ||| 0-0 ||| 36 524574 +los ||| the duration of the winter ||| 1 0.122289 3.81262e-06 1.66357e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the duration of the ||| 0.015748 0.122289 3.81262e-06 1.18826e-08 2.718 ||| 0-0 ||| 127 524574 +los ||| the duration of ||| 0.0113636 0.122289 3.81262e-06 1.93554e-07 2.718 ||| 0-0 ||| 176 524574 +los ||| the duration ||| 0.0141343 0.122289 7.62523e-06 3.56034e-06 2.718 ||| 0-0 ||| 283 524574 +los ||| the duties ||| 0.00595238 0.122289 1.90631e-06 8.7936e-06 2.718 ||| 0-0 ||| 168 524574 +los ||| the eager ||| 0.5 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| the earlier ||| 0.0070922 0.122289 1.90631e-06 2.99411e-05 2.718 ||| 0-0 ||| 141 524574 +los ||| the earliest ||| 0.0046729 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 214 524574 +los ||| the early stages of ||| 0.0263158 0.122289 1.90631e-06 2.38391e-11 2.718 ||| 0-0 ||| 38 524574 +los ||| the early stages ||| 0.0128205 0.122289 1.90631e-06 4.38509e-10 2.718 ||| 0-0 ||| 78 524574 +los ||| the early ||| 0.0107527 0.122289 1.14379e-05 2.90403e-05 2.718 ||| 0-0 ||| 558 524574 +los ||| the earthquake ||| 0.00383142 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 261 524574 +los ||| the earthquakes ||| 0.02 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 50 524574 +los ||| the economic ||| 0.0150538 0.122289 1.33442e-05 5.20324e-05 2.718 ||| 0-0 ||| 465 524574 +los ||| the economically ||| 0.0869565 0.122289 3.81262e-06 4.03219e-06 2.718 ||| 0-0 ||| 23 524574 +los ||| the economies ||| 0.00193798 0.122289 1.90631e-06 4.80431e-06 2.718 ||| 0-0 ||| 516 524574 +los ||| the economy and ||| 0.00108814 0.122289 1.90631e-06 2.80474e-07 2.718 ||| 0-0 ||| 919 524574 +los ||| the economy ||| 0.000808625 0.122289 5.71893e-06 2.23915e-05 2.718 ||| 0-0 ||| 3710 524574 +los ||| the ecosystem ||| 0.0121951 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 82 524574 +los ||| the education ||| 0.00429185 0.122289 1.90631e-06 1.44987e-05 2.718 ||| 0-0 ||| 233 524574 +los ||| the effect of all the ||| 1 0.122289 1.90631e-06 2.25683e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the effect of all ||| 0.25 0.122289 1.90631e-06 3.67611e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the effect of ||| 0.00177305 0.122289 1.90631e-06 7.77948e-06 2.718 ||| 0-0 ||| 564 524574 +los ||| the effect that ||| 0.003003 0.122289 3.81262e-06 2.40717e-06 2.718 ||| 0-0 ||| 666 524574 +los ||| the effect ||| 0.00784109 0.122289 2.85946e-05 0.0001431 2.718 ||| 0-0 ||| 1913 524574 +los ||| the effective ||| 0.0217391 0.122289 5.71893e-06 2.80966e-05 2.718 ||| 0-0 ||| 138 524574 +los ||| the effects of living on ||| 1 0.122289 1.90631e-06 7.10002e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the effects of living ||| 1 0.122289 1.90631e-06 1.06113e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the effects of the ||| 0.00162338 0.122289 1.90631e-06 5.43172e-07 2.718 ||| 0-0 0-3 ||| 616 524574 +los ||| the effects of ||| 0.00229885 0.122289 7.62523e-06 1.26626e-06 2.718 ||| 0-0 ||| 1740 524574 +los ||| the effects ||| 0.00464217 0.122289 2.28757e-05 2.32923e-05 2.718 ||| 0-0 ||| 2585 524574 +los ||| the effort ||| 0.00189753 0.122289 1.90631e-06 3.79626e-05 2.718 ||| 0-0 ||| 527 524574 +los ||| the efforts made ||| 0.00211864 0.122289 1.90631e-06 1.09267e-07 2.718 ||| 0-0 ||| 472 524574 +los ||| the efforts of ||| 0.00117925 0.122289 1.90631e-06 2.83569e-06 2.718 ||| 0-0 ||| 848 524574 +los ||| the efforts ||| 0.00288809 0.122289 1.52505e-05 5.21611e-05 2.718 ||| 0-0 ||| 2770 524574 +los ||| the eight ||| 0.00454545 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 220 524574 +los ||| the elected ||| 0.0465116 0.122289 3.81262e-06 9.56573e-06 2.718 ||| 0-0 ||| 43 524574 +los ||| the election ||| 0.00464576 0.122289 7.62523e-06 1.02092e-05 2.718 ||| 0-0 ||| 861 524574 +los ||| the elections invalid ||| 0.5 0.122289 1.90631e-06 3.86061e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the elections ||| 0.00118064 0.122289 5.71893e-06 1.54424e-05 2.718 ||| 0-0 ||| 2541 524574 +los ||| the elements ||| 0.00243902 0.122289 1.90631e-06 1.52708e-05 2.718 ||| 0-0 ||| 410 524574 +los ||| the eligibility ||| 0.0147059 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 68 524574 +los ||| the emerging ||| 0.0208333 0.122289 1.90631e-06 8.49333e-06 2.718 ||| 0-0 ||| 48 524574 +los ||| the eminently ||| 0.5 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the emission ||| 0.00869565 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 115 524574 +los ||| the emphasis has , ||| 0.5 0.122289 1.90631e-06 1.34557e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the emphasis has ||| 0.142857 0.122289 1.90631e-06 1.12831e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| the emphasis placed ||| 0.0140845 0.122289 1.90631e-06 2.74434e-09 2.718 ||| 0-0 ||| 71 524574 +los ||| the emphasis ||| 0.005997 0.122289 7.62523e-06 2.19197e-05 2.718 ||| 0-0 ||| 667 524574 +los ||| the employer or the ||| 0.5 0.122289 1.90631e-06 6.62379e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the employer or ||| 0.111111 0.122289 1.90631e-06 1.07894e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| the employer ||| 0.00925926 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 108 524574 +los ||| the employment action plan is a clear ||| 1 0.122289 1.90631e-06 2.14369e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the employment action plan is a ||| 1 0.122289 1.90631e-06 6.43944e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the employment action plan is ||| 1 0.122289 1.90631e-06 1.45275e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the employment action plan ||| 1 0.122289 1.90631e-06 4.6353e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the employment action ||| 1 0.122289 1.90631e-06 6.34103e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the employment ||| 0.00557103 0.122289 3.81262e-06 2.0976e-05 2.718 ||| 0-0 ||| 359 524574 +los ||| the enclave out ||| 0.333333 0.122289 1.90631e-06 1.80738e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the enclave ||| 0.105263 0.122289 3.81262e-06 4.71852e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| the end , ||| 0.003367 0.122289 1.90631e-06 2.22576e-05 2.718 ||| 0-0 ||| 297 524574 +los ||| the end not just of six ||| 1 0.122289 1.90631e-06 7.56122e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the end not just of ||| 1 0.122289 1.90631e-06 4.37065e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the end not just ||| 1 0.122289 1.90631e-06 8.0396e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the end not ||| 0.5 0.122289 1.90631e-06 6.37204e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the end of last year the ||| 0.125 0.122289 1.90631e-06 3.39292e-14 2.718 ||| 0-5 ||| 8 524574 +los ||| the end of the day ||| 0.00331126 0.122289 1.90631e-06 1.59589e-10 2.718 ||| 0-0 ||| 302 524574 +los ||| the end of the ||| 0.000390778 0.122289 1.90631e-06 6.22908e-07 2.718 ||| 0-0 ||| 2559 524574 +los ||| the end of ||| 0.000454201 0.122289 5.71893e-06 1.01464e-05 2.718 ||| 0-0 ||| 6605 524574 +los ||| the end ||| 0.00163113 0.122289 2.66883e-05 0.000186639 2.718 ||| 0-0 ||| 8583 524574 +los ||| the ends ||| 0.0204082 0.122289 1.90631e-06 1.00376e-05 2.718 ||| 0-0 ||| 49 524574 +los ||| the enemies ||| 0.02 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 50 524574 +los ||| the energetic ||| 0.2 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| the energy ||| 0.00234742 0.122289 1.90631e-06 3.81342e-05 2.718 ||| 0-0 ||| 426 524574 +los ||| the enforcement ||| 0.00323625 0.122289 1.90631e-06 5.57643e-06 2.718 ||| 0-0 ||| 309 524574 +los ||| the enlarged ||| 0.0185185 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 54 524574 +los ||| the enormous amount of ||| 0.0192308 0.122289 1.90631e-06 1.63403e-10 2.718 ||| 0-0 ||| 52 524574 +los ||| the enormous amount ||| 0.0181818 0.122289 1.90631e-06 3.00571e-09 2.718 ||| 0-0 ||| 55 524574 +los ||| the enormous issue of nuclear safety , ||| 1 0.122289 1.90631e-06 1.19545e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the enormous issue of nuclear safety ||| 1 0.122289 1.90631e-06 1.00243e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the enormous issue of nuclear ||| 1 0.122289 1.90631e-06 1.97719e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the enormous issue of ||| 1 0.122289 1.90631e-06 5.08274e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the enormous issue ||| 1 0.122289 1.90631e-06 9.34946e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the enormous ||| 0.00488998 0.122289 7.62523e-06 1.23539e-05 2.718 ||| 0-0 ||| 818 524574 +los ||| the ensuing ||| 0.0185185 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 54 524574 +los ||| the entire time ||| 0.333333 0.122289 1.90631e-06 5.5774e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the entire ||| 0.00237718 0.122289 1.71568e-05 3.39733e-05 2.718 ||| 0-0 ||| 3786 524574 +los ||| the entrenched ||| 0.142857 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| the entry ||| 0.00200535 0.122289 5.71893e-06 7.8928e-06 2.718 ||| 0-0 ||| 1496 524574 +los ||| the environment , safety and the capacity ||| 1 0.122289 1.90631e-06 8.13518e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the environment , safety and the ||| 1 0.122289 1.90631e-06 1.11288e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the environment , safety and ||| 0.166667 0.122289 1.90631e-06 1.81276e-12 2.718 ||| 0-0 ||| 6 524574 +los ||| the environment , safety ||| 0.0833333 0.122289 1.90631e-06 1.44721e-10 2.718 ||| 0-0 ||| 12 524574 +los ||| the environment , ||| 0.00123077 0.122289 3.81262e-06 2.85445e-06 2.718 ||| 0-0 ||| 1625 524574 +los ||| the environment ||| 0.000681663 0.122289 9.53154e-06 2.39358e-05 2.718 ||| 0-0 ||| 7335 524574 +los ||| the environmental label ||| 0.333333 0.0151175 1.90631e-06 2.91935e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| the environmental ||| 0.0184332 0.0687033 7.62523e-06 0.000148891 2.718 ||| 0-0 0-1 ||| 217 524574 +los ||| the era of ||| 0.00847458 0.122289 1.90631e-06 1.58575e-07 2.718 ||| 0-0 ||| 118 524574 +los ||| the era ||| 0.00671141 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-0 ||| 149 524574 +los ||| the essence ||| 0.002331 0.122289 1.90631e-06 5.40485e-06 2.718 ||| 0-0 ||| 429 524574 +los ||| the essential and ||| 0.125 0.122289 1.90631e-06 4.83576e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the essential point ||| 0.025 0.122289 1.90631e-06 3.37726e-08 2.718 ||| 0-0 ||| 40 524574 +los ||| the essential ||| 0.0109091 0.122289 5.71893e-06 3.86061e-05 2.718 ||| 0-0 ||| 275 524574 +los ||| the established ||| 0.333333 0.122289 7.62523e-06 6.42148e-05 2.718 ||| 0-0 ||| 12 524574 +los ||| the establishment , ||| 0.025641 0.122289 1.90631e-06 2.30198e-06 2.718 ||| 0-0 ||| 39 524574 +los ||| the establishment of ||| 0.000365764 0.062134 1.90631e-06 6.38467e-08 2.718 ||| 0-0 0-2 ||| 2734 524574 +los ||| the establishment ||| 0.00121433 0.122289 7.62523e-06 1.9303e-05 2.718 ||| 0-0 ||| 3294 524574 +los ||| the estate ||| 0.2 0.122289 3.81262e-06 9.43704e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the estimate of ||| 0.1 0.122289 1.90631e-06 1.51579e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the estimate ||| 0.03125 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-0 ||| 32 524574 +los ||| the estimated ||| 0.025 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 40 524574 +los ||| the ethnic and ||| 0.5 0.122289 1.90631e-06 6.17902e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the ethnic ||| 0.0434783 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-0 ||| 23 524574 +los ||| the euro area ||| 0.00059312 0.122289 1.90631e-06 1.04571e-08 2.718 ||| 0-0 ||| 1686 524574 +los ||| the euro that ||| 0.0625 0.122289 1.90631e-06 4.23563e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| the euro ||| 0.00149813 0.122289 1.14379e-05 2.51797e-05 2.718 ||| 0-0 ||| 4005 524574 +los ||| the evaluation of ||| 0.003367 0.122289 1.90631e-06 3.45133e-07 2.718 ||| 0-0 ||| 297 524574 +los ||| the evaluation ||| 0.00169492 0.122289 1.90631e-06 6.34855e-06 2.718 ||| 0-0 ||| 590 524574 +los ||| the event of ||| 0.00193174 0.122289 5.71893e-06 2.43459e-06 2.718 ||| 0-0 ||| 1553 524574 +los ||| the event what actually ||| 1 0.122289 1.90631e-06 2.59383e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the event what ||| 1 0.122289 1.90631e-06 6.28351e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the event ||| 0.00350175 0.122289 1.33442e-05 4.4783e-05 2.718 ||| 0-0 ||| 1999 524574 +los ||| the events ||| 0.0021322 0.122289 5.71893e-06 3.11851e-05 2.718 ||| 0-0 ||| 1407 524574 +los ||| the eventual ||| 0.0149254 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 67 524574 +los ||| the ever growing ||| 0.0909091 0.122289 1.90631e-06 3.04671e-09 2.718 ||| 0-0 ||| 11 524574 +los ||| the ever ||| 0.02 0.122289 1.90631e-06 8.06009e-05 2.718 ||| 0-0 ||| 50 524574 +los ||| the evil ||| 0.0153846 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 65 524574 +los ||| the exact wording ||| 0.05 0.122289 1.90631e-06 6.48582e-11 2.718 ||| 0-0 ||| 20 524574 +los ||| the exact ||| 0.0238095 0.122289 5.71893e-06 4.63273e-06 2.718 ||| 0-0 ||| 126 524574 +los ||| the examination ||| 0.00529101 0.122289 1.90631e-06 5.8767e-06 2.718 ||| 0-0 ||| 189 524574 +los ||| the example ||| 0.00240964 0.122289 3.81262e-06 0.000124869 2.718 ||| 0-0 ||| 830 524574 +los ||| the examples ||| 0.00662252 0.0739528 1.90631e-06 3.33728e-05 2.718 ||| 0-0 0-1 ||| 151 524574 +los ||| the exception ||| 0.00188679 0.122289 1.90631e-06 8.02148e-06 2.718 ||| 0-0 ||| 530 524574 +los ||| the exceptions for ||| 0.1 0.122289 1.90631e-06 1.54951e-08 2.718 ||| 0-0 ||| 10 524574 +los ||| the exceptions ||| 0.00671141 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 149 524574 +los ||| the excesses ||| 0.0172414 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 58 524574 +los ||| the excessive ||| 0.0111111 0.122289 3.81262e-06 5.40485e-06 2.718 ||| 0-0 ||| 180 524574 +los ||| the exclusion of ||| 0.00353357 0.122289 1.90631e-06 1.93554e-07 2.718 ||| 0-0 ||| 283 524574 +los ||| the exclusion ||| 0.0028169 0.122289 1.90631e-06 3.56034e-06 2.718 ||| 0-0 ||| 355 524574 +los ||| the excuse ||| 0.00833333 0.122289 1.90631e-06 7.8928e-06 2.718 ||| 0-0 ||| 120 524574 +los ||| the executive boards ||| 1 0.122289 1.90631e-06 1.66778e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the executive ||| 0.0148148 0.122289 3.81262e-06 4.63273e-06 2.718 ||| 0-0 ||| 135 524574 +los ||| the exemplary ||| 0.0666667 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| the exercise ||| 0.00255754 0.122289 1.90631e-06 2.65524e-05 2.718 ||| 0-0 ||| 391 524574 +los ||| the exhibition centre ||| 1 0.122289 1.90631e-06 3.43165e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the exhibition site ||| 1 0.122289 1.90631e-06 2.04827e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the exhibition ||| 0.0307692 0.122289 3.81262e-06 1.07239e-06 2.718 ||| 0-0 ||| 65 524574 +los ||| the existence of ||| 0.000812348 0.122289 1.90631e-06 1.6114e-06 2.718 ||| 0-0 ||| 1231 524574 +los ||| the existence ||| 0.00411805 0.122289 1.14379e-05 2.96409e-05 2.718 ||| 0-0 ||| 1457 524574 +los ||| the existing label ||| 0.5 0.122289 1.90631e-06 4.63084e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the existing standards ||| 0.0714286 0.122289 1.90631e-06 2.47091e-09 2.718 ||| 0-0 ||| 14 524574 +los ||| the existing ||| 0.0456227 0.122289 7.05334e-05 3.38018e-05 2.718 ||| 0-0 ||| 811 524574 +los ||| the expenditure ||| 0.00692042 0.148225 3.81262e-06 0.000508828 2.718 ||| 0-0 0-1 ||| 289 524574 +los ||| the expense ||| 0.00507099 0.122289 9.53154e-06 8.32175e-06 2.718 ||| 0-0 ||| 986 524574 +los ||| the experience from the ||| 0.25 0.122289 1.90631e-06 2.04757e-08 2.718 ||| 0-0 0-3 ||| 4 524574 +los ||| the experience of the ||| 0.00704225 0.122289 1.90631e-06 9.89266e-08 2.718 ||| 0-0 ||| 142 524574 +los ||| the experience of ||| 0.00495049 0.122289 3.81262e-06 1.6114e-06 2.718 ||| 0-0 ||| 404 524574 +los ||| the experience ||| 0.0020284 0.122289 3.81262e-06 2.96409e-05 2.718 ||| 0-0 ||| 986 524574 +los ||| the expert ||| 0.047619 0.122289 3.81262e-06 4.933e-06 2.718 ||| 0-0 ||| 42 524574 +los ||| the expertise ||| 0.0060241 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-0 ||| 166 524574 +los ||| the experts ||| 0.00485437 0.13868 3.81262e-06 0.000231465 2.718 ||| 0-0 0-1 ||| 412 524574 +los ||| the exportation ||| 0.0625 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| the express ||| 0.047619 0.122289 1.90631e-06 4.35391e-05 2.718 ||| 0-0 ||| 21 524574 +los ||| the expression to use rather than ||| 0.5 0.122289 1.90631e-06 7.05564e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| the expression to use rather ||| 0.5 0.122289 1.90631e-06 2.30954e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the expression to use ||| 0.5 0.122289 1.90631e-06 7.54258e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the expression to ||| 0.5 0.122289 1.90631e-06 1.55133e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| the expression ||| 0.0025641 0.122289 1.90631e-06 1.74585e-05 2.718 ||| 0-0 ||| 390 524574 +los ||| the expressions of ||| 0.0232558 0.122289 1.90631e-06 1.51579e-07 2.718 ||| 0-0 ||| 43 524574 +los ||| the expressions ||| 0.0175439 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-0 ||| 57 524574 +los ||| the extension of ||| 0.00180832 0.122289 1.90631e-06 3.94104e-07 2.718 ||| 0-0 ||| 553 524574 +los ||| the extension ||| 0.00193424 0.122289 3.81262e-06 7.24936e-06 2.718 ||| 0-0 ||| 1034 524574 +los ||| the extent of the ||| 0.00318471 0.0821857 1.90631e-06 1.16975e-07 2.718 ||| 0-0 0-2 0-3 ||| 314 524574 +los ||| the extent of ||| 0.00553506 0.122289 5.71893e-06 4.48206e-06 2.718 ||| 0-0 ||| 542 524574 +los ||| the extent to which ||| 0.00183486 0.122289 1.90631e-06 6.2231e-08 2.718 ||| 0-0 ||| 545 524574 +los ||| the extent to ||| 0.00910747 0.122289 9.53154e-06 7.32595e-06 2.718 ||| 0-0 ||| 549 524574 +los ||| the extent ||| 0.00697269 0.122289 2.28757e-05 8.24454e-05 2.718 ||| 0-0 ||| 1721 524574 +los ||| the external ||| 0.0222222 0.122289 1.90631e-06 8.02148e-06 2.718 ||| 0-0 ||| 45 524574 +los ||| the extra ||| 0.0181818 0.122289 1.90631e-06 1.06381e-05 2.718 ||| 0-0 ||| 55 524574 +los ||| the extraordinary sight of ||| 1 0.122289 1.90631e-06 4.2372e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the extraordinary sight ||| 1 0.122289 1.90631e-06 7.79414e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the extraordinary ||| 0.00694444 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 144 524574 +los ||| the extreme cases ||| 0.25 0.122289 1.90631e-06 1.01107e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the extreme ||| 0.00574713 0.122289 3.81262e-06 7.8928e-06 2.718 ||| 0-0 ||| 348 524574 +los ||| the extremely harmful ||| 1 0.122289 1.90631e-06 4.84935e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the extremely ||| 0.0148148 0.122289 3.81262e-06 4.07508e-05 2.718 ||| 0-0 ||| 135 524574 +los ||| the eyes of ordinary ||| 1 0.122289 1.90631e-06 2.50156e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the eyes of the ||| 0.0231481 0.0821857 9.53154e-06 3.5482e-08 2.718 ||| 0-0 0-2 0-3 ||| 216 524574 +los ||| the eyes of ||| 0.015748 0.122289 1.14379e-05 1.35954e-06 2.718 ||| 0-0 ||| 381 524574 +los ||| the eyes ||| 0.0232558 0.122289 2.09694e-05 2.50082e-05 2.718 ||| 0-0 ||| 473 524574 +los ||| the face for our ||| 0.5 0.0495538 1.90631e-06 2.25986e-10 2.718 ||| 0-0 0-2 0-3 ||| 2 524574 +los ||| the face for the ||| 0.5 0.122289 3.81262e-06 3.38612e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the face for ||| 0.130435 0.122289 5.71893e-06 5.5156e-07 2.718 ||| 0-0 ||| 23 524574 +los ||| the face of the very thing ||| 0.5 0.122289 1.90631e-06 3.04104e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the face of the very ||| 0.166667 0.122289 1.90631e-06 8.33389e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| the face of the ||| 0.0343348 0.122289 1.52505e-05 2.39514e-07 2.718 ||| 0-0 ||| 233 524574 +los ||| the face of ||| 0.00683995 0.122289 9.53154e-06 3.9014e-06 2.718 ||| 0-0 ||| 731 524574 +los ||| the face ||| 0.0201005 0.122289 3.05009e-05 7.17644e-05 2.718 ||| 0-0 ||| 796 524574 +los ||| the faces of ||| 0.037037 0.122289 1.90631e-06 2.26202e-07 2.718 ||| 0-0 ||| 27 524574 +los ||| the faces ||| 0.0285714 0.122289 1.90631e-06 4.16088e-06 2.718 ||| 0-0 ||| 35 524574 +los ||| the facility for ||| 0.0175439 0.122289 1.90631e-06 4.51666e-08 2.718 ||| 0-0 ||| 57 524574 +los ||| the facility ||| 0.00413223 0.122289 1.90631e-06 5.8767e-06 2.718 ||| 0-0 ||| 242 524574 +los ||| the fact , though , ||| 0.142857 0.122289 1.90631e-06 4.43716e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| the fact , though ||| 0.25 0.122289 1.90631e-06 3.72074e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the fact , ||| 0.00925926 0.122289 1.90631e-06 0.000149849 2.718 ||| 0-0 ||| 108 524574 +los ||| the fact - ||| 0.0384615 0.122289 1.90631e-06 4.7398e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| the fact is that our ||| 0.111111 0.0248369 1.90631e-06 3.38577e-10 2.718 ||| 0-4 ||| 9 524574 +los ||| the fact is that the ||| 0.0186047 0.122289 7.62523e-06 2.84166e-07 2.718 ||| 0-0 0-4 ||| 215 524574 +los ||| the fact is that ||| 0.000914077 0.122289 1.90631e-06 6.62458e-07 2.718 ||| 0-0 ||| 1094 524574 +los ||| the fact is ||| 0.00299401 0.122289 7.62523e-06 3.93814e-05 2.718 ||| 0-0 ||| 1336 524574 +los ||| the fact of ||| 0.00862069 0.122289 1.90631e-06 6.83106e-05 2.718 ||| 0-0 ||| 116 524574 +los ||| the fact remains that the ||| 0.0344828 0.122289 1.90631e-06 8.08765e-10 2.718 ||| 0-0 0-4 ||| 29 524574 +los ||| the fact that Italy ||| 0.2 0.122289 1.90631e-06 2.36735e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| the fact that funds were ||| 1 0.122289 1.90631e-06 2.88909e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the fact that funds ||| 0.5 0.122289 1.90631e-06 1.61276e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the fact that it ||| 0.00970874 0.122289 5.71893e-06 3.75884e-07 2.718 ||| 0-0 ||| 309 524574 +los ||| the fact that the ||| 0.00101215 0.122289 7.62523e-06 9.06687e-06 2.718 ||| 0-0 0-3 ||| 3952 524574 +los ||| the fact that there are ||| 0.0148148 0.122289 3.81262e-06 9.8306e-10 2.718 ||| 0-0 ||| 135 524574 +los ||| the fact that there ||| 0.0149254 0.122289 3.81262e-06 6.47914e-08 2.718 ||| 0-0 ||| 134 524574 +los ||| the fact that these could be ||| 1 0.122289 1.90631e-06 2.82503e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the fact that these could ||| 1 0.122289 1.90631e-06 1.55882e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the fact that these ||| 0.00684932 0.122289 1.90631e-06 2.19212e-08 2.718 ||| 0-0 ||| 146 524574 +los ||| the fact that we have ||| 0.00361011 0.122289 1.90631e-06 2.8698e-09 2.718 ||| 0-0 ||| 277 524574 +los ||| the fact that we ||| 0.00529101 0.122289 3.81262e-06 2.39954e-07 2.718 ||| 0-0 ||| 378 524574 +los ||| the fact that ||| 0.00242881 0.122289 7.62523e-05 2.1137e-05 2.718 ||| 0-0 ||| 16469 524574 +los ||| the fact ||| 0.00762325 0.122289 0.00040795 0.00125654 2.718 ||| 0-0 ||| 28072 524574 +los ||| the factors ||| 0.00363636 0.10371 1.90631e-06 0.000120108 2.718 ||| 0-0 0-1 ||| 275 524574 +los ||| the facts ||| 0.000798722 0.122289 1.90631e-06 8.7936e-06 2.718 ||| 0-0 ||| 1252 524574 +los ||| the factual ||| 0.2 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| the failure to observe ||| 0.125 0.122289 1.90631e-06 3.40714e-11 2.718 ||| 0-0 ||| 8 524574 +los ||| the failure to ||| 0.00242131 0.122289 1.90631e-06 1.78384e-06 2.718 ||| 0-0 ||| 413 524574 +los ||| the failure ||| 0.00260191 0.122289 5.71893e-06 2.00752e-05 2.718 ||| 0-0 ||| 1153 524574 +los ||| the familiar ||| 0.05 0.122289 1.90631e-06 6.64882e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| the far ||| 0.0166667 0.122289 3.81262e-06 0.000292848 2.718 ||| 0-0 ||| 120 524574 +los ||| the farm ||| 0.0206186 0.122289 3.81262e-06 3.08849e-06 2.718 ||| 0-0 ||| 97 524574 +los ||| the farmers ||| 0.00154321 0.251189 1.90631e-06 0.00210656 2.718 ||| 0-0 0-1 ||| 648 524574 +los ||| the fate of ||| 0.00214592 0.122289 1.90631e-06 2.0055e-07 2.718 ||| 0-0 ||| 466 524574 +los ||| the fate ||| 0.00171233 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-0 ||| 584 524574 +los ||| the fathers and ||| 0.333333 0.182189 1.90631e-06 7.99512e-07 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| the fathers ||| 0.0263158 0.182189 1.90631e-06 6.38287e-05 2.718 ||| 0-0 0-1 ||| 38 524574 +los ||| the fats ||| 0.2 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| the favours handed ||| 1 0.122289 1.90631e-06 5.69954e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the favours ||| 0.5 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| the fears expressed ||| 0.0416667 0.122289 1.90631e-06 3.91929e-10 2.718 ||| 0-0 ||| 24 524574 +los ||| the fears ||| 0.00416667 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 240 524574 +los ||| the federal state ||| 0.0588235 0.122289 1.90631e-06 4.65924e-10 2.718 ||| 0-0 ||| 17 524574 +los ||| the federal ||| 0.125 0.122289 3.81262e-06 1.84451e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| the federalist ||| 0.166667 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the federalists ||| 0.0163934 0.157919 1.90631e-06 1.25255e-05 2.718 ||| 0-0 0-1 ||| 61 524574 +los ||| the feed ||| 0.0166667 0.122289 1.90631e-06 8.02148e-06 2.718 ||| 0-0 ||| 60 524574 +los ||| the feeding of ||| 0.0263158 0.122289 1.90631e-06 5.82995e-08 2.718 ||| 0-0 ||| 38 524574 +los ||| the feeding ||| 0.0238095 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 42 524574 +los ||| the fees ||| 0.0196078 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 51 524574 +los ||| the fence ||| 0.025641 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 39 524574 +los ||| the few ||| 0.00307692 0.122289 3.81262e-06 7.5196e-05 2.718 ||| 0-0 ||| 650 524574 +los ||| the field , ||| 0.0102041 0.122289 1.90631e-06 7.47375e-06 2.718 ||| 0-0 ||| 98 524574 +los ||| the field of defence ||| 0.0434783 0.122289 1.90631e-06 8.58569e-11 2.718 ||| 0-0 ||| 23 524574 +los ||| the field of rail transport ||| 0.5 0.122289 1.90631e-06 4.17193e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| the field of rail ||| 1 0.122289 1.90631e-06 4.05435e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the field of ||| 0.00157356 0.122289 1.52505e-05 3.40702e-06 2.718 ||| 0-0 ||| 5084 524574 +los ||| the field ||| 0.00376435 0.122289 3.81262e-05 6.26705e-05 2.718 ||| 0-0 ||| 5313 524574 +los ||| the fields covered ||| 0.2 0.122289 1.90631e-06 1.13946e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| the fields ||| 0.0027933 0.122289 3.81262e-06 1.59143e-05 2.718 ||| 0-0 ||| 716 524574 +los ||| the fifteen European ||| 1 0.122289 1.90631e-06 6.74162e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the fifteen year old ||| 0.5 0.122289 1.90631e-06 3.87167e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the fifteen year ||| 0.5 0.122289 1.90631e-06 5.02814e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the fifteen ||| 0.00961538 0.122289 5.71893e-06 2.01609e-06 2.718 ||| 0-0 ||| 312 524574 +los ||| the fight against poverty . more work ||| 1 0.122289 1.90631e-06 3.72867e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| the fight against poverty . more ||| 1 0.122289 1.90631e-06 5.89048e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the fight against poverty . ||| 0.0117647 0.122289 1.90631e-06 2.57936e-16 2.718 ||| 0-0 ||| 85 524574 +los ||| the fight against poverty ||| 0.00230415 0.122289 1.90631e-06 8.51554e-14 2.718 ||| 0-0 ||| 434 524574 +los ||| the fight against ||| 0.000149009 0.122289 1.90631e-06 5.63943e-09 2.718 ||| 0-0 ||| 6711 524574 +los ||| the fight for ||| 0.00306748 0.122289 1.90631e-06 1.81655e-07 2.718 ||| 0-0 ||| 326 524574 +los ||| the fight ||| 0.000736594 0.122289 9.53154e-06 2.36355e-05 2.718 ||| 0-0 ||| 6788 524574 +los ||| the figure of one ||| 0.2 0.122289 1.90631e-06 7.41612e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| the figure of ||| 0.013986 0.122289 3.81262e-06 1.7793e-06 2.718 ||| 0-0 ||| 143 524574 +los ||| the figure was ||| 0.0333333 0.122289 1.90631e-06 1.02541e-07 2.718 ||| 0-0 ||| 30 524574 +los ||| the figure ||| 0.011236 0.122289 1.14379e-05 3.27294e-05 2.718 ||| 0-0 ||| 534 524574 +los ||| the figures , there ||| 1 0.122289 1.90631e-06 7.22874e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the figures , ||| 0.0135135 0.122289 1.90631e-06 2.35825e-06 2.718 ||| 0-0 ||| 74 524574 +los ||| the figures quoted ||| 0.111111 0.122289 1.90631e-06 2.41254e-10 2.718 ||| 0-0 ||| 9 524574 +los ||| the figures ||| 0.00430293 0.122289 9.53154e-06 1.97749e-05 2.718 ||| 0-0 ||| 1162 524574 +los ||| the final analysis , it is impossible ||| 1 0.122289 1.90631e-06 3.94111e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the final analysis , it is ||| 0.0588235 0.122289 1.90631e-06 7.35282e-14 2.718 ||| 0-0 ||| 17 524574 +los ||| the final analysis , it ||| 0.142857 0.122289 1.90631e-06 2.34606e-12 2.718 ||| 0-0 ||| 7 524574 +los ||| the final analysis , ||| 0.00423729 0.122289 1.90631e-06 1.31926e-10 2.718 ||| 0-0 ||| 236 524574 +los ||| the final analysis ||| 0.00664452 0.122289 3.81262e-06 1.10625e-09 2.718 ||| 0-0 ||| 301 524574 +los ||| the final element ||| 0.111111 0.122289 1.90631e-06 1.42373e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| the final ||| 0.00709779 0.122289 1.71568e-05 3.27294e-05 2.718 ||| 0-0 ||| 1268 524574 +los ||| the financial means ||| 0.0217391 0.122289 1.90631e-06 3.31632e-08 2.718 ||| 0-0 ||| 46 524574 +los ||| the financial perspectives ||| 0.00155521 0.122289 1.90631e-06 3.19229e-10 2.718 ||| 0-0 ||| 643 524574 +los ||| the financial ||| 0.0258824 0.122289 2.09694e-05 5.23327e-05 2.718 ||| 0-0 ||| 425 524574 +los ||| the financing ||| 0.000915751 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 1092 524574 +los ||| the fine words of ||| 0.142857 0.122289 1.90631e-06 1.70757e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| the fine words ||| 0.0147059 0.122289 1.90631e-06 3.14099e-09 2.718 ||| 0-0 ||| 68 524574 +los ||| the fine ||| 0.02 0.122289 7.62523e-06 1.38982e-05 2.718 ||| 0-0 ||| 200 524574 +los ||| the finer details ||| 0.166667 0.122289 1.90631e-06 8.31746e-12 2.718 ||| 0-0 ||| 6 524574 +los ||| the finer ||| 0.2 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| the finger at the ||| 0.04 0.122289 1.90631e-06 1.9408e-09 2.718 ||| 0-3 ||| 25 524574 +los ||| the finger ||| 0.0263158 0.122289 3.81262e-06 7.54963e-06 2.718 ||| 0-0 ||| 76 524574 +los ||| the fires ||| 0.00497512 0.178208 1.90631e-06 0.000147647 2.718 ||| 0-0 0-1 ||| 201 524574 +los ||| the firing stops ||| 0.166667 0.122289 1.90631e-06 1.11529e-11 2.718 ||| 0-0 ||| 6 524574 +los ||| the firing ||| 0.0384615 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| the firm supports ||| 1 0.122289 1.90631e-06 2.37715e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the firm ||| 0.00534759 0.122289 1.90631e-06 1.57427e-05 2.718 ||| 0-0 ||| 187 524574 +los ||| the first five years ||| 0.0344828 0.122289 1.90631e-06 7.78293e-13 2.718 ||| 0-0 ||| 29 524574 +los ||| the first five ||| 0.0238095 0.122289 1.90631e-06 4.57281e-09 2.718 ||| 0-0 ||| 42 524574 +los ||| the first includes those ||| 1 0.203497 1.90631e-06 1.12219e-10 2.718 ||| 0-0 0-3 ||| 1 524574 +los ||| the first is a legacy ||| 1 0.122289 1.90631e-06 5.77513e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the first is a ||| 0.0212766 0.122289 1.90631e-06 3.2084e-07 2.718 ||| 0-0 ||| 47 524574 +los ||| the first is ||| 0.000619963 0.122289 1.90631e-06 7.23823e-06 2.718 ||| 0-0 ||| 1613 524574 +los ||| the first place ||| 0.00611621 0.122289 7.62523e-06 3.4758e-07 2.718 ||| 0-0 ||| 654 524574 +los ||| the first time in ||| 0.00246305 0.122289 1.90631e-06 8.11553e-09 2.718 ||| 0-0 ||| 406 524574 +los ||| the first time ||| 0.000626566 0.122289 3.81262e-06 3.79151e-07 2.718 ||| 0-0 ||| 3192 524574 +los ||| the first to ||| 0.00169492 0.122289 1.90631e-06 2.05218e-05 2.718 ||| 0-0 ||| 590 524574 +los ||| the first ||| 0.00143337 0.122289 5.5283e-05 0.00023095 2.718 ||| 0-0 ||| 20232 524574 +los ||| the fish and the ||| 0.5 0.122289 1.90631e-06 1.09184e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the fish and ||| 0.25 0.122289 1.90631e-06 1.77848e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| the fish ||| 0.0264901 0.122289 7.62523e-06 1.41985e-05 2.718 ||| 0-0 ||| 151 524574 +los ||| the fishing nations ||| 0.2 0.122289 1.90631e-06 2.65288e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| the fishing ||| 0.0205479 0.122289 5.71893e-06 1.71154e-05 2.718 ||| 0-0 ||| 146 524574 +los ||| the fixed ||| 0.1 0.0647482 1.90631e-06 3.34586e-06 2.718 ||| 0-0 0-1 ||| 10 524574 +los ||| the flag ||| 0.00492611 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-0 ||| 203 524574 +los ||| the flesh ||| 0.0588235 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| the floor in ||| 0.00980392 0.122289 1.90631e-06 3.90218e-07 2.718 ||| 0-0 ||| 102 524574 +los ||| the floor of the ||| 0.0384615 0.0821857 1.90631e-06 2.58659e-08 2.718 ||| 0-0 0-2 0-3 ||| 26 524574 +los ||| the floor with the ||| 1 0.122289 1.90631e-06 7.1568e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the floor with ||| 0.125 0.122289 1.90631e-06 1.16576e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the floor ||| 0.00116245 0.122289 7.62523e-06 1.82306e-05 2.718 ||| 0-0 ||| 3441 524574 +los ||| the flow of ||| 0.00958466 0.122289 5.71893e-06 4.19756e-07 2.718 ||| 0-0 ||| 313 524574 +los ||| the flow ||| 0.0113636 0.122289 7.62523e-06 7.72121e-06 2.718 ||| 0-0 ||| 352 524574 +los ||| the fluctuation ||| 0.0909091 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| the focus away ||| 0.1 0.122289 1.90631e-06 1.05613e-08 2.718 ||| 0-0 ||| 10 524574 +los ||| the focus ||| 0.00617284 0.122289 7.62523e-06 3.32012e-05 2.718 ||| 0-0 ||| 648 524574 +los ||| the focused ||| 0.166667 0.122289 1.90631e-06 9.56573e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| the fold ||| 0.2 0.122289 3.81262e-06 1.71583e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| the follow-up ||| 0.003003 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 333 524574 +los ||| the following characteristics : ||| 0.166667 0.122289 1.90631e-06 1.73558e-13 2.718 ||| 0-0 ||| 6 524574 +los ||| the following characteristics ||| 0.166667 0.122289 1.90631e-06 5.15314e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| the following lesson : ||| 0.5 0.122289 1.90631e-06 1.58787e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the following lesson ||| 0.5 0.122289 1.90631e-06 4.71457e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the following scenario ||| 0.25 0.122289 1.90631e-06 7.89417e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| the following suggestion ||| 0.2 0.122289 1.90631e-06 9.10022e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| the following ||| 0.00454424 0.122289 3.24072e-05 5.48206e-05 2.718 ||| 0-0 ||| 3741 524574 +los ||| the food ||| 0.0147059 0.122289 9.53154e-06 2.31636e-05 2.718 ||| 0-0 ||| 340 524574 +los ||| the forces behind ||| 0.166667 0.122289 1.90631e-06 2.03318e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| the forces ||| 0.00252525 0.122289 1.90631e-06 2.26918e-05 2.718 ||| 0-0 ||| 396 524574 +los ||| the fore over ||| 0.333333 0.122289 1.90631e-06 2.37524e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the fore the ||| 0.142857 0.122289 1.90631e-06 2.11604e-06 2.718 ||| 0-0 0-2 ||| 7 524574 +los ||| the fore ||| 0.0220994 0.122289 7.62523e-06 4.933e-06 2.718 ||| 0-0 ||| 181 524574 +los ||| the foreign policy ||| 0.00884956 0.122289 1.90631e-06 4.61043e-09 2.718 ||| 0-0 ||| 113 524574 +los ||| the foreign ||| 0.0555556 0.122289 5.71893e-06 1.17105e-05 2.718 ||| 0-0 ||| 54 524574 +los ||| the foreigner ||| 0.142857 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| the foremost ||| 0.0208333 0.122289 1.90631e-06 1.66864e-05 2.718 ||| 0-0 ||| 48 524574 +los ||| the foreseeable ||| 0.03125 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 32 524574 +los ||| the forest ||| 0.04 0.122289 5.71893e-06 4.46115e-06 2.718 ||| 0-0 ||| 75 524574 +los ||| the form of interest payments ||| 0.05 0.122289 1.90631e-06 3.94579e-14 2.718 ||| 0-0 ||| 20 524574 +los ||| the form of interest ||| 0.166667 0.122289 1.90631e-06 1.19208e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| the form of the ||| 0.0162162 0.122289 5.71893e-06 6.51684e-07 2.718 ||| 0-0 ||| 185 524574 +los ||| the form of ||| 0.00863465 0.122289 3.05009e-05 1.06152e-05 2.718 ||| 0-0 ||| 1853 524574 +los ||| the form that ||| 0.0222222 0.122289 1.90631e-06 3.2846e-06 2.718 ||| 0-0 ||| 45 524574 +los ||| the form ||| 0.0123457 0.122289 5.71893e-05 0.000195261 2.718 ||| 0-0 ||| 2430 524574 +los ||| the formal ||| 0.0227273 0.122289 1.90631e-06 7.24936e-06 2.718 ||| 0-0 ||| 44 524574 +los ||| the formation ||| 0.00257732 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 388 524574 +los ||| the former East ||| 0.25 0.122289 1.90631e-06 5.81008e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| the former Yugoslav ||| 0.111111 0.122289 1.90631e-06 1.12704e-10 2.718 ||| 0-0 ||| 9 524574 +los ||| the former communist ||| 1 0.122289 1.90631e-06 4.85793e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the former ||| 0.00348129 0.122289 1.52505e-05 1.94317e-05 2.718 ||| 0-0 ||| 2298 524574 +los ||| the forming of ||| 0.0588235 0.122289 1.90631e-06 2.09878e-07 2.718 ||| 0-0 ||| 17 524574 +los ||| the forming ||| 0.0588235 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| the forms of ||| 0.0135135 0.122289 1.90631e-06 2.08012e-06 2.718 ||| 0-0 ||| 74 524574 +los ||| the forms should contain ||| 0.0833333 0.122289 1.90631e-06 5.79837e-12 2.718 ||| 0-0 ||| 12 524574 +los ||| the forms should ||| 0.0769231 0.122289 1.90631e-06 1.69543e-07 2.718 ||| 0-0 ||| 13 524574 +los ||| the forms ||| 0.027027 0.122289 7.62523e-06 3.82629e-05 2.718 ||| 0-0 ||| 148 524574 +los ||| the foundation ||| 0.00518135 0.122289 3.81262e-06 4.33246e-06 2.718 ||| 0-0 ||| 386 524574 +los ||| the founding ||| 0.0361446 0.122289 5.71893e-06 2.01609e-06 2.718 ||| 0-0 ||| 83 524574 +los ||| the four ||| 0.00173913 0.122289 3.81262e-06 9.73731e-06 2.718 ||| 0-0 ||| 1150 524574 +los ||| the framework of the ||| 0.000421053 0.122289 1.90631e-06 1.70509e-07 2.718 ||| 0-0 ||| 2375 524574 +los ||| the framework of ||| 0.00146456 0.122289 9.53154e-06 2.77739e-06 2.718 ||| 0-0 ||| 3414 524574 +los ||| the framework ||| 0.00180542 0.122289 1.71568e-05 5.10887e-05 2.718 ||| 0-0 ||| 4985 524574 +los ||| the free movement of goods ||| 0.00271003 0.122289 1.90631e-06 5.50286e-15 2.718 ||| 0-0 ||| 369 524574 +los ||| the free movement of ||| 0.00117647 0.122289 3.81262e-06 1.19368e-10 2.718 ||| 0-0 ||| 1700 524574 +los ||| the free movement ||| 0.00112486 0.122289 3.81262e-06 2.19572e-09 2.718 ||| 0-0 ||| 1778 524574 +los ||| the free ||| 0.00122649 0.122289 5.71893e-06 5.00163e-05 2.718 ||| 0-0 ||| 2446 524574 +los ||| the freedom and rights ||| 0.142857 0.122289 1.90631e-06 9.17103e-11 2.718 ||| 0-0 ||| 7 524574 +los ||| the freedom and ||| 0.0105263 0.122289 1.90631e-06 4.58322e-07 2.718 ||| 0-0 ||| 95 524574 +los ||| the freedom of the ||| 0.00332226 0.122289 1.90631e-06 1.22119e-07 2.718 ||| 0-0 ||| 301 524574 +los ||| the freedom of ||| 0.00158604 0.122289 3.81262e-06 1.98918e-06 2.718 ||| 0-0 ||| 1261 524574 +los ||| the freedom to ||| 0.0023753 0.122289 1.90631e-06 3.25132e-06 2.718 ||| 0-0 ||| 421 524574 +los ||| the freedom ||| 0.00196271 0.122289 7.62523e-06 3.659e-05 2.718 ||| 0-0 ||| 2038 524574 +los ||| the frequency ||| 0.010101 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 99 524574 +los ||| the front ||| 0.00952381 0.122289 3.81262e-06 3.45739e-05 2.718 ||| 0-0 ||| 210 524574 +los ||| the frustrations ||| 0.0416667 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 24 524574 +los ||| the full complement of ||| 0.5 0.122289 1.90631e-06 1.24096e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the full complement ||| 0.2 0.122289 1.90631e-06 2.28269e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| the full light of ||| 0.333333 0.122289 1.90631e-06 7.43721e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the full light ||| 0.25 0.122289 1.90631e-06 1.36804e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the full respect of ||| 0.125 0.122289 1.90631e-06 1.85117e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| the full respect ||| 0.111111 0.122289 1.90631e-06 3.40515e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| the full ||| 0.0068306 0.122289 1.90631e-05 7.87135e-05 2.718 ||| 0-0 ||| 1464 524574 +los ||| the function ||| 0.00793651 0.122289 1.90631e-06 1.06381e-05 2.718 ||| 0-0 ||| 126 524574 +los ||| the functioning of ||| 0.00234742 0.122289 1.90631e-06 3.61457e-07 2.718 ||| 0-0 ||| 426 524574 +los ||| the functioning ||| 0.00248139 0.122289 3.81262e-06 6.64882e-06 2.718 ||| 0-0 ||| 806 524574 +los ||| the fund , ||| 0.037037 0.122289 1.90631e-06 1.94901e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| the fund ||| 0.00225734 0.122289 1.90631e-06 1.63432e-05 2.718 ||| 0-0 ||| 443 524574 +los ||| the fundamental basis ||| 0.142857 0.122289 1.90631e-06 1.25574e-08 2.718 ||| 0-0 ||| 7 524574 +los ||| the fundamental political point ||| 0.2 0.122289 1.90631e-06 3.30223e-12 2.718 ||| 0-0 ||| 5 524574 +los ||| the fundamental political ||| 0.166667 0.122289 1.90631e-06 3.77484e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| the fundamental rights ||| 0.00205761 0.122289 1.90631e-06 4.23162e-09 2.718 ||| 0-0 ||| 486 524574 +los ||| the fundamental ||| 0.0854093 0.108248 4.57514e-05 0.000635585 2.718 ||| 0-0 0-1 ||| 281 524574 +los ||| the funding should be increased ||| 1 0.122289 1.90631e-06 9.12486e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the funding should be ||| 0.5 0.122289 1.90631e-06 1.83599e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the funding should ||| 0.125 0.122289 1.90631e-06 1.01308e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the funding ||| 0.0020202 0.122289 5.71893e-06 2.28634e-05 2.718 ||| 0-0 ||| 1485 524574 +los ||| the funds are still ||| 0.5 0.122289 1.90631e-06 3.74034e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the funds are ||| 0.0116279 0.122289 1.90631e-06 4.96593e-07 2.718 ||| 0-0 ||| 86 524574 +los ||| the funds that ||| 0.011236 0.171374 1.90631e-06 2.70027e-05 2.718 ||| 0-0 0-1 ||| 89 524574 +los ||| the funds ||| 0.00252143 0.122289 9.53154e-06 3.27294e-05 2.718 ||| 0-0 ||| 1983 524574 +los ||| the furthest behind ||| 0.333333 0.122289 1.90631e-06 6.91821e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| the furthest ||| 0.0625 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| the future , the ||| 0.0102041 0.122289 1.90631e-06 8.34117e-07 2.718 ||| 0-3 ||| 98 524574 +los ||| the future development of the ||| 0.015873 0.122289 1.90631e-06 6.25502e-11 2.718 ||| 0-0 ||| 63 524574 +los ||| the future development of ||| 0.00653595 0.122289 1.90631e-06 1.01887e-09 2.718 ||| 0-0 ||| 153 524574 +los ||| the future development ||| 0.00581395 0.122289 1.90631e-06 1.87416e-08 2.718 ||| 0-0 ||| 172 524574 +los ||| the future of ||| 0.000258799 0.122289 1.90631e-06 6.19373e-06 2.718 ||| 0-0 ||| 3864 524574 +los ||| the future to ||| 0.00840336 0.122289 1.90631e-06 1.01237e-05 2.718 ||| 0-0 ||| 119 524574 +los ||| the future too , ||| 0.0769231 0.122289 3.81262e-06 1.84916e-08 2.718 ||| 0-0 ||| 26 524574 +los ||| the future too ||| 0.0363636 0.122289 3.81262e-06 1.5506e-07 2.718 ||| 0-0 ||| 55 524574 +los ||| the future ||| 0.0013809 0.122289 4.57514e-05 0.000113931 2.718 ||| 0-0 ||| 17380 524574 +los ||| the game ||| 0.00420168 0.122289 1.90631e-06 1.23539e-05 2.718 ||| 0-0 ||| 238 524574 +los ||| the gap is ||| 0.05 0.122289 1.90631e-06 2.12415e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| the gap ||| 0.00127877 0.122289 1.90631e-06 6.77751e-06 2.718 ||| 0-0 ||| 782 524574 +los ||| the general heading of ||| 0.125 0.122289 1.90631e-06 1.33371e-10 2.718 ||| 0-0 ||| 8 524574 +los ||| the general heading ||| 0.1 0.122289 1.90631e-06 2.4533e-09 2.718 ||| 0-0 ||| 10 524574 +los ||| the general population has ||| 0.25 0.122289 1.90631e-06 2.37506e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| the general population ||| 0.0204082 0.122289 1.90631e-06 4.614e-09 2.718 ||| 0-0 ||| 49 524574 +los ||| the general public to ||| 0.0526316 0.122289 1.90631e-06 1.07731e-09 2.718 ||| 0-0 ||| 19 524574 +los ||| the general public ||| 0.00304414 0.122289 3.81262e-06 1.2124e-08 2.718 ||| 0-0 ||| 657 524574 +los ||| the general ||| 0.0371471 0.122289 4.76577e-05 7.50245e-05 2.718 ||| 0-0 ||| 673 524574 +los ||| the gentlemen - ||| 0.5 0.122289 1.90631e-06 1.11808e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the gentlemen ||| 0.0909091 0.122289 5.71893e-06 2.96409e-05 2.718 ||| 0-0 ||| 33 524574 +los ||| the giants ||| 0.0526316 0.11569 1.90631e-06 7.50674e-06 2.718 ||| 0-0 0-1 ||| 19 524574 +los ||| the gimmicks ||| 0.333333 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the given ||| 0.0434783 0.122289 1.90631e-06 0.000294393 2.718 ||| 0-0 ||| 23 524574 +los ||| the giving ||| 0.0666667 0.122289 1.90631e-06 6.76035e-05 2.718 ||| 0-0 ||| 15 524574 +los ||| the global ||| 0.0119048 0.122289 3.81262e-06 1.96033e-05 2.718 ||| 0-0 ||| 168 524574 +los ||| the globalisation of ||| 0.00793651 0.122289 1.90631e-06 1.7723e-07 2.718 ||| 0-0 ||| 126 524574 +los ||| the globalisation ||| 0.00617284 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-0 ||| 162 524574 +los ||| the goal ||| 0.00235571 0.122289 3.81262e-06 1.437e-05 2.718 ||| 0-0 ||| 849 524574 +los ||| the good of ||| 0.0107527 0.122289 3.81262e-06 1.20936e-05 2.718 ||| 0-0 ||| 186 524574 +los ||| the good people of ||| 0.0714286 0.122289 1.90631e-06 1.06448e-08 2.718 ||| 0-0 ||| 14 524574 +los ||| the good people ||| 0.125 0.122289 3.81262e-06 1.95806e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| the good suddenly ||| 0.2 0.122289 1.90631e-06 2.95867e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| the good ||| 0.00784077 0.122289 2.4782e-05 0.000222457 2.718 ||| 0-0 ||| 1658 524574 +los ||| the goods ||| 0.00701754 0.122289 3.81262e-06 1.97749e-05 2.718 ||| 0-0 ||| 285 524574 +los ||| the governing ||| 0.0227273 0.122289 1.90631e-06 8.32175e-06 2.718 ||| 0-0 ||| 44 524574 +los ||| the government ||| 0.00032175 0.122289 1.90631e-06 3.42736e-05 2.718 ||| 0-0 ||| 3108 524574 +los ||| the governments of the ||| 0.00172414 0.129987 1.90631e-06 2.16635e-06 2.718 ||| 0-0 0-1 0-2 0-3 ||| 580 524574 +los ||| the governments of ||| 0.00404449 0.122289 7.62523e-06 7.97536e-07 2.718 ||| 0-0 ||| 989 524574 +los ||| the governments ||| 0.00382328 0.122289 1.71568e-05 1.46703e-05 2.718 ||| 0-0 ||| 2354 524574 +los ||| the granting ||| 0.00414079 0.122289 3.81262e-06 1.09813e-05 2.718 ||| 0-0 ||| 483 524574 +los ||| the grave ||| 0.00641026 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-0 ||| 156 524574 +los ||| the great number ||| 0.0555556 0.122289 1.90631e-06 8.34133e-08 2.718 ||| 0-0 ||| 18 524574 +los ||| the great ||| 0.00360721 0.122289 1.71568e-05 0.00016858 2.718 ||| 0-0 ||| 2495 524574 +los ||| the greater ||| 0.00176678 0.122289 1.90631e-06 5.64935e-05 2.718 ||| 0-0 ||| 566 524574 +los ||| the greatest ||| 0.00039557 0.122289 1.90631e-06 7.8928e-06 2.718 ||| 0-0 ||| 2528 524574 +los ||| the ground , ||| 0.00327869 0.122289 1.90631e-06 5.98514e-06 2.718 ||| 0-0 ||| 305 524574 +los ||| the ground rules via ||| 1 0.122289 1.90631e-06 1.63874e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the ground rules ||| 0.0212766 0.122289 1.90631e-06 5.83183e-09 2.718 ||| 0-0 ||| 47 524574 +los ||| the ground ||| 0.00348432 0.122289 1.33442e-05 5.01879e-05 2.718 ||| 0-0 ||| 2009 524574 +los ||| the grounds of ||| 0.00970874 0.122289 5.71893e-06 2.44158e-06 2.718 ||| 0-0 ||| 309 524574 +los ||| the grounds ||| 0.00814111 0.122289 1.14379e-05 4.49117e-05 2.718 ||| 0-0 ||| 737 524574 +los ||| the group , mostly ||| 1 0.122289 1.90631e-06 5.46868e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the group , ||| 0.0322581 0.122289 1.90631e-06 6.58877e-06 2.718 ||| 0-0 ||| 31 524574 +los ||| the group of ||| 0.00423729 0.122289 1.90631e-06 3.00359e-06 2.718 ||| 0-0 ||| 236 524574 +los ||| the group ||| 0.00233645 0.122289 3.81262e-06 5.52496e-05 2.718 ||| 0-0 ||| 856 524574 +los ||| the grouping together ||| 0.333333 0.122289 1.90631e-06 4.63736e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the grouping ||| 0.166667 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the groups ||| 0.00266904 0.122289 5.71893e-06 2.83969e-05 2.718 ||| 0-0 ||| 1124 524574 +los ||| the growing number of ||| 0.0153846 0.122289 1.90631e-06 4.3616e-10 2.718 ||| 0-0 ||| 65 524574 +los ||| the growing number ||| 0.0142857 0.122289 1.90631e-06 8.02296e-09 2.718 ||| 0-0 ||| 70 524574 +los ||| the growing together of ||| 0.2 0.122289 1.90631e-06 5.29422e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| the growing together ||| 0.2 0.122289 1.90631e-06 9.73846e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| the growing ||| 0.00298063 0.122289 3.81262e-06 1.62145e-05 2.718 ||| 0-0 ||| 671 524574 +los ||| the guarantee of a ||| 0.0416667 0.122289 1.90631e-06 6.25369e-08 2.718 ||| 0-0 ||| 24 524574 +los ||| the guarantee of ||| 0.00454545 0.122289 1.90631e-06 1.41085e-06 2.718 ||| 0-0 ||| 220 524574 +los ||| the guarantee ||| 0.00215517 0.122289 1.90631e-06 2.59519e-05 2.718 ||| 0-0 ||| 464 524574 +los ||| the guaranteed ||| 0.047619 0.122289 1.90631e-06 1.51422e-05 2.718 ||| 0-0 ||| 21 524574 +los ||| the guarantees of ||| 0.0212766 0.122289 1.90631e-06 4.7106e-07 2.718 ||| 0-0 ||| 47 524574 +los ||| the guarantees ||| 0.00377358 0.122289 1.90631e-06 8.66492e-06 2.718 ||| 0-0 ||| 265 524574 +los ||| the gutter by the ||| 1 0.0642678 1.90631e-06 1.70626e-11 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| the habit of ||| 0.0175439 0.122289 1.90631e-06 1.7723e-07 2.718 ||| 0-0 ||| 57 524574 +los ||| the habit ||| 0.0273973 0.122289 3.81262e-06 3.26007e-06 2.718 ||| 0-0 ||| 73 524574 +los ||| the hackers ||| 0.5 0.214206 1.90631e-06 6.26276e-06 2.718 ||| 0-0 0-1 ||| 2 524574 +los ||| the halt ||| 0.166667 0.122289 1.90631e-06 8.66492e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| the hand , ||| 0.2 0.122289 1.90631e-06 2.02881e-05 2.718 ||| 0-0 ||| 5 524574 +los ||| the hand and ||| 0.5 0.122289 1.90631e-06 2.13096e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| the hand ||| 0.0173913 0.122289 3.81262e-06 0.000170124 2.718 ||| 0-0 ||| 115 524574 +los ||| the handful of ||| 0.1 0.122289 1.90631e-06 6.76274e-08 2.718 ||| 0-0 ||| 10 524574 +los ||| the handful ||| 0.0909091 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| the handling of ||| 0.00591716 0.122289 1.90631e-06 3.03157e-07 2.718 ||| 0-0 ||| 169 524574 +los ||| the handling ||| 0.00497512 0.122289 1.90631e-06 5.57643e-06 2.718 ||| 0-0 ||| 201 524574 +los ||| the hands of the ||| 0.0311751 0.0821857 2.4782e-05 6.13479e-08 2.718 ||| 0-0 0-2 0-3 ||| 417 524574 +los ||| the hands of ||| 0.011919 0.122289 1.90631e-05 2.35063e-06 2.718 ||| 0-0 ||| 839 524574 +los ||| the hands ||| 0.0181044 0.122289 3.24072e-05 4.32388e-05 2.718 ||| 0-0 ||| 939 524574 +los ||| the happy few ||| 0.25 0.122289 1.90631e-06 4.73735e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the happy ||| 0.0454545 0.122289 1.90631e-06 2.70242e-05 2.718 ||| 0-0 ||| 22 524574 +los ||| the hardworking ||| 0.2 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| the harmonisation ||| 0.00164474 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 608 524574 +los ||| the hazardous ||| 0.1 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| the head of ||| 0.00374532 0.122289 1.90631e-06 1.68602e-06 2.718 ||| 0-0 ||| 267 524574 +los ||| the head ||| 0.00473934 0.122289 3.81262e-06 3.10135e-05 2.718 ||| 0-0 ||| 422 524574 +los ||| the heading ||| 0.00395257 0.122289 1.90631e-06 1.40269e-05 2.718 ||| 0-0 ||| 253 524574 +los ||| the headlines , ||| 0.0666667 0.122289 1.90631e-06 1.84158e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| the headlines ||| 0.0150376 0.122289 3.81262e-06 1.54424e-06 2.718 ||| 0-0 ||| 133 524574 +los ||| the heads of ||| 0.00321543 0.122289 1.90631e-06 6.78606e-07 2.718 ||| 0-0 ||| 311 524574 +los ||| the heads ||| 0.0147493 0.122289 9.53154e-06 1.24826e-05 2.718 ||| 0-0 ||| 339 524574 +los ||| the health of ||| 0.00224467 0.122289 3.81262e-06 1.93787e-06 2.718 ||| 0-0 ||| 891 524574 +los ||| the health ||| 0.00398671 0.122289 1.14379e-05 3.56463e-05 2.718 ||| 0-0 ||| 1505 524574 +los ||| the hearings ||| 0.0035461 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 282 524574 +los ||| the heart of the ||| 0.00154321 0.122289 1.90631e-06 1.1539e-07 2.718 ||| 0-3 ||| 648 524574 +los ||| the heart of ||| 0.00223214 0.122289 5.71893e-06 1.87957e-06 2.718 ||| 0-0 ||| 1344 524574 +los ||| the heart strings of ||| 1 0.122289 1.90631e-06 8.834e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the heart strings ||| 1 0.122289 1.90631e-06 1.62497e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the heart ||| 0.00426829 0.122289 1.33442e-05 3.45739e-05 2.718 ||| 0-0 ||| 1640 524574 +los ||| the heartfelt ||| 0.111111 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| the hearts of ||| 0.0238095 0.122289 1.90631e-06 2.77505e-07 2.718 ||| 0-0 ||| 42 524574 +los ||| the hearts ||| 0.025974 0.122289 3.81262e-06 5.10458e-06 2.718 ||| 0-0 ||| 77 524574 +los ||| the heels ||| 0.0909091 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| the help of the ||| 0.00480769 0.0616483 1.90631e-06 6.0861e-10 2.718 ||| 0-0 0-1 0-2 0-3 ||| 208 524574 +los ||| the help they ||| 0.05 0.122289 1.90631e-06 2.67002e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| the help ||| 0.00265957 0.122289 3.81262e-06 8.1802e-05 2.718 ||| 0-0 ||| 752 524574 +los ||| the heritage ||| 0.015873 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 63 524574 +los ||| the hierarchy ||| 0.0108696 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 92 524574 +los ||| the high ||| 0.00522648 0.122289 1.14379e-05 6.40432e-05 2.718 ||| 0-0 ||| 1148 524574 +los ||| the higher ||| 0.00787402 0.122289 1.90631e-06 1.80591e-05 2.718 ||| 0-0 ||| 127 524574 +los ||| the highest bidder , like common merchandise ||| 1 0.122289 1.90631e-06 3.55494e-25 2.718 ||| 0-0 ||| 1 524574 +los ||| the highest bidder , like common ||| 1 0.122289 1.90631e-06 5.07849e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the highest bidder , like ||| 1 0.122289 1.90631e-06 2.19848e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the highest bidder , ||| 0.5 0.122289 1.90631e-06 1.23795e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| the highest bidder ||| 0.333333 0.122289 1.90631e-06 1.03807e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| the highest level , ||| 0.0526316 0.122289 1.90631e-06 9.62677e-10 2.718 ||| 0-0 ||| 19 524574 +los ||| the highest level ||| 0.00531915 0.122289 1.90631e-06 8.07244e-09 2.718 ||| 0-0 ||| 188 524574 +los ||| the highest ||| 0.00313972 0.122289 7.62523e-06 9.43704e-06 2.718 ||| 0-0 ||| 1274 524574 +los ||| the highly paid personnel who depicted images ||| 0.333333 0.122289 1.90631e-06 3.84192e-28 2.718 ||| 0-0 ||| 3 524574 +los ||| the highly paid personnel who depicted ||| 0.333333 0.122289 1.90631e-06 8.9347e-23 2.718 ||| 0-0 ||| 3 524574 +los ||| the highly paid personnel who ||| 0.333333 0.122289 1.90631e-06 1.78694e-17 2.718 ||| 0-0 ||| 3 524574 +los ||| the highly paid personnel ||| 0.333333 0.122289 1.90631e-06 2.02601e-14 2.718 ||| 0-0 ||| 3 524574 +los ||| the highly paid ||| 0.333333 0.122289 1.90631e-06 3.49312e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the highly ||| 0.0322581 0.122289 5.71893e-06 2.59519e-05 2.718 ||| 0-0 ||| 93 524574 +los ||| the holding ||| 0.0047619 0.122289 1.90631e-06 2.57803e-05 2.718 ||| 0-0 ||| 210 524574 +los ||| the home of the ||| 0.0714286 0.122289 1.90631e-06 1.45312e-07 2.718 ||| 0-3 ||| 14 524574 +los ||| the homes of the ||| 0.5 0.0821857 1.90631e-06 6.14696e-09 2.718 ||| 0-0 0-2 0-3 ||| 2 524574 +los ||| the homes of ||| 0.0625 0.122289 1.90631e-06 2.3553e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| the homes ||| 0.05 0.122289 1.90631e-06 4.33246e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| the honourable ||| 0.00729927 0.122289 5.71893e-06 2.23915e-05 2.718 ||| 0-0 ||| 411 524574 +los ||| the hook the ||| 1 0.122289 1.90631e-06 8.42701e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| the hook ||| 0.0322581 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 31 524574 +los ||| the hope ||| 0.000643087 0.122289 1.90631e-06 7.5196e-05 2.718 ||| 0-0 ||| 1555 524574 +los ||| the hopes ||| 0.00425532 0.122289 1.90631e-06 4.33246e-06 2.718 ||| 0-0 ||| 235 524574 +los ||| the hospital to be working ||| 1 0.122289 1.90631e-06 4.20877e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the hospital to be ||| 1 0.122289 1.90631e-06 2.21049e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the hospital to ||| 1 0.122289 1.90631e-06 1.21972e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the hospital ||| 0.0151515 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 66 524574 +los ||| the hot ||| 0.2 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| the huge ||| 0.00224719 0.122289 3.81262e-06 2.23915e-05 2.718 ||| 0-0 ||| 890 524574 +los ||| the human body ||| 0.00877193 0.122289 1.90631e-06 4.53108e-09 2.718 ||| 0-0 ||| 114 524574 +los ||| the human rights clause cannot ||| 0.166667 0.122289 1.90631e-06 2.31477e-17 2.718 ||| 0-0 ||| 6 524574 +los ||| the human rights clause ||| 0.00862069 0.122289 1.90631e-06 1.02742e-13 2.718 ||| 0-0 ||| 116 524574 +los ||| the human rights situation in Europe as ||| 0.5 0.122289 1.90631e-06 6.02873e-19 2.718 ||| 0-0 ||| 2 524574 +los ||| the human rights situation in Europe ||| 0.5 0.122289 1.90631e-06 5.90797e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| the human rights situation in ||| 0.002079 0.122289 1.90631e-06 1.16758e-13 2.718 ||| 0-0 ||| 481 524574 +los ||| the human rights situation ||| 0.00125786 0.122289 1.90631e-06 5.45485e-12 2.718 ||| 0-0 ||| 795 524574 +los ||| the human rights ||| 0.00304414 0.122289 3.81262e-06 1.05919e-08 2.718 ||| 0-0 ||| 657 524574 +los ||| the human ||| 0.0949367 0.221042 2.85946e-05 0.00836701 2.718 ||| 0-0 0-1 ||| 158 524574 +los ||| the humanitarian ||| 0.0208333 0.122289 1.90631e-06 4.46115e-06 2.718 ||| 0-0 ||| 48 524574 +los ||| the i ' s and ||| 1 0.122289 1.90631e-06 2.28207e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the i ' s ||| 1 0.122289 1.90631e-06 1.82188e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the i ' ||| 1 0.122289 1.90631e-06 9.57724e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the i 's and ||| 1 0.122289 1.90631e-06 6.6511e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the i 's ||| 1 0.122289 1.90631e-06 5.30988e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the i ||| 1 0.122289 3.81262e-06 2.78822e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| the ice ||| 0.0294118 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 34 524574 +los ||| the idea , contained ||| 0.5 0.122289 1.90631e-06 7.7989e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the idea , ||| 0.0104167 0.122289 1.90631e-06 1.1469e-05 2.718 ||| 0-0 ||| 96 524574 +los ||| the idea is not new to her ||| 0.25 0.122289 1.90631e-06 1.48713e-16 2.718 ||| 0-0 ||| 4 524574 +los ||| the idea is not new to ||| 0.25 0.122289 1.90631e-06 5.46537e-13 2.718 ||| 0-0 ||| 4 524574 +los ||| the idea is not new ||| 0.25 0.122289 1.90631e-06 6.15067e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| the idea is not ||| 0.0769231 0.122289 1.90631e-06 1.02906e-08 2.718 ||| 0-0 ||| 13 524574 +los ||| the idea is ||| 0.00598802 0.122289 1.90631e-06 3.01414e-06 2.718 ||| 0-0 ||| 167 524574 +los ||| the idea of ||| 0.00125353 0.122289 7.62523e-06 5.22829e-06 2.718 ||| 0-0 ||| 3191 524574 +los ||| the idea that , when ||| 0.25 0.122289 1.90631e-06 9.64439e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| the idea that , ||| 0.0277778 0.122289 1.90631e-06 1.92926e-07 2.718 ||| 0-0 ||| 36 524574 +los ||| the idea that ||| 0.00179533 0.122289 3.81262e-06 1.61777e-06 2.718 ||| 0-0 ||| 1114 524574 +los ||| the idea ||| 0.00292826 0.122289 3.43136e-05 9.6172e-05 2.718 ||| 0-0 ||| 6147 524574 +los ||| the ideal ||| 0.0070922 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 141 524574 +los ||| the ideals and ||| 0.0833333 0.122289 1.90631e-06 2.52534e-08 2.718 ||| 0-0 ||| 12 524574 +los ||| the ideals ||| 0.00961538 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 104 524574 +los ||| the identity of the ||| 0.0166667 0.0821857 1.90631e-06 1.22939e-08 2.718 ||| 0-0 0-2 0-3 ||| 60 524574 +los ||| the ill ||| 0.04 0.122289 1.90631e-06 5.40485e-06 2.718 ||| 0-0 ||| 25 524574 +los ||| the illusory ||| 0.125 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the imbalance ||| 0.00819672 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 122 524574 +los ||| the immediate ||| 0.0046729 0.122289 1.90631e-06 1.111e-05 2.718 ||| 0-0 ||| 214 524574 +los ||| the immigrants ' ||| 0.333333 0.157295 1.90631e-06 3.05041e-06 2.718 ||| 0-0 0-1 0-2 ||| 3 524574 +los ||| the imminent ||| 0.0140845 0.122289 3.81262e-06 2.48795e-06 2.718 ||| 0-0 ||| 142 524574 +los ||| the immune system ||| 0.0714286 0.122289 1.90631e-06 1.316e-10 2.718 ||| 0-0 ||| 14 524574 +los ||| the immune ||| 0.5 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the implementation of the programme more transparent ||| 1 0.122289 1.90631e-06 3.04223e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the implementation of the programme more ||| 1 0.122289 1.90631e-06 3.23642e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the implementation of the programme ||| 0.0117647 0.122289 1.90631e-06 1.41718e-11 2.718 ||| 0-0 ||| 85 524574 +los ||| the implementation of the ||| 0.000308166 0.122289 1.90631e-06 1.11239e-07 2.718 ||| 0-0 ||| 3245 524574 +los ||| the implementation of ||| 0.000605083 0.122289 5.71893e-06 1.81195e-06 2.718 ||| 0-0 ||| 4958 524574 +los ||| the implementation ||| 0.000960219 0.122289 1.33442e-05 3.33299e-05 2.718 ||| 0-0 ||| 7290 524574 +los ||| the implementing ||| 0.0227273 0.122289 1.90631e-06 1.23539e-05 2.718 ||| 0-0 ||| 44 524574 +los ||| the importance of intellectual property law , ||| 1 0.122289 1.90631e-06 7.05542e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| the importance of intellectual property law ||| 1 0.122289 1.90631e-06 5.91626e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| the importance of intellectual property ||| 0.25 0.122289 1.90631e-06 3.35579e-16 2.718 ||| 0-0 ||| 4 524574 +los ||| the importance of intellectual ||| 1 0.122289 1.90631e-06 1.75696e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the importance of ||| 0.000438276 0.122289 5.71893e-06 3.02924e-06 2.718 ||| 0-0 ||| 6845 524574 +los ||| the importance ||| 0.000806823 0.122289 1.33442e-05 5.57214e-05 2.718 ||| 0-0 ||| 8676 524574 +los ||| the important ||| 0.0028169 0.122289 7.62523e-06 0.000164548 2.718 ||| 0-0 ||| 1420 524574 +los ||| the imported ||| 1 0.0817177 1.90631e-06 2.33352e-05 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the importing ||| 0.0222222 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 45 524574 +los ||| the imposition of ||| 0.00314465 0.122289 1.90631e-06 2.0055e-07 2.718 ||| 0-0 ||| 318 524574 +los ||| the imposition ||| 0.00810811 0.122289 5.71893e-06 3.68902e-06 2.718 ||| 0-0 ||| 370 524574 +los ||| the impression ||| 0.000650195 0.122289 3.81262e-06 1.12816e-05 2.718 ||| 0-0 ||| 3076 524574 +los ||| the impressive level of ||| 1 0.122289 1.90631e-06 9.97387e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the impressive level ||| 1 0.122289 1.90631e-06 1.83465e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the impressive ||| 0.0212766 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 47 524574 +los ||| the inadequacy of ||| 0.00980392 0.122289 1.90631e-06 5.13035e-08 2.718 ||| 0-0 ||| 102 524574 +los ||| the inadequacy ||| 0.00757576 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 132 524574 +los ||| the incentive ||| 0.00970874 0.122289 1.90631e-06 4.16088e-06 2.718 ||| 0-0 ||| 103 524574 +los ||| the incidence of new ||| 1 0.122289 1.90631e-06 5.01776e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the incidence of ||| 0.00666667 0.122289 1.90631e-06 8.39512e-08 2.718 ||| 0-0 ||| 150 524574 +los ||| the incidence ||| 0.00581395 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 172 524574 +los ||| the inclusion ||| 0.00132979 0.122289 3.81262e-06 8.32175e-06 2.718 ||| 0-0 ||| 1504 524574 +los ||| the inclusive ||| 0.166667 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| the income ||| 0.00395257 0.110618 1.90631e-06 0.00017643 2.718 ||| 0-0 0-1 ||| 253 524574 +los ||| the incomes of ||| 0.0144928 0.135926 1.90631e-06 4.26286e-06 2.718 ||| 0-0 0-1 ||| 69 524574 +los ||| the incomes ||| 0.011236 0.135926 1.90631e-06 7.84132e-05 2.718 ||| 0-0 0-1 ||| 89 524574 +los ||| the incoming ||| 0.00943396 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 106 524574 +los ||| the incorrect ||| 0.0555556 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| the increase in ||| 0.000981354 0.122289 1.90631e-06 1.18626e-06 2.718 ||| 0-0 ||| 1019 524574 +los ||| the increase ||| 0.00189873 0.122289 5.71893e-06 5.54212e-05 2.718 ||| 0-0 ||| 1580 524574 +los ||| the increased ||| 0.00143472 0.122289 1.90631e-06 2.13191e-05 2.718 ||| 0-0 ||| 697 524574 +los ||| the increasing ||| 0.00189753 0.122289 1.90631e-06 2.22199e-05 2.718 ||| 0-0 ||| 527 524574 +los ||| the increasingly ||| 0.0135135 0.122289 1.90631e-06 2.47079e-05 2.718 ||| 0-0 ||| 74 524574 +los ||| the independent Members ||| 0.333333 0.122289 1.90631e-06 1.55014e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the independent ||| 0.06 0.122289 5.71893e-06 1.05094e-05 2.718 ||| 0-0 ||| 50 524574 +los ||| the indigenous ||| 0.037037 0.0812249 1.90631e-06 1.25255e-05 2.718 ||| 0-0 0-1 ||| 27 524574 +los ||| the individual 's ||| 0.25 0.0892071 1.90631e-06 3.37816e-06 2.718 ||| 0-0 0-1 0-2 ||| 4 524574 +los ||| the individual must take the ||| 1 0.122289 1.90631e-06 9.26608e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the individual must take ||| 1 0.122289 1.90631e-06 1.50933e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the individual must ||| 0.142857 0.122289 1.90631e-06 9.37475e-08 2.718 ||| 0-0 ||| 7 524574 +los ||| the individual producers ||| 0.166667 0.36135 1.90631e-06 2.19529e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| the individual ||| 0.0997795 0.11632 0.000345042 0.000551338 2.718 ||| 0-0 0-1 ||| 1814 524574 +los ||| the individuals ||| 0.0197368 0.132812 5.71893e-06 0.000232709 2.718 ||| 0-0 0-1 ||| 152 524574 +los ||| the industrial ||| 0.0192308 0.122289 1.90631e-06 5.40485e-06 2.718 ||| 0-0 ||| 52 524574 +los ||| the industries concerned ||| 0.05 0.122289 1.90631e-06 1.11783e-08 2.718 ||| 0-0 ||| 20 524574 +los ||| the industries ||| 0.00819672 0.122289 1.90631e-06 6.94909e-06 2.718 ||| 0-0 ||| 122 524574 +los ||| the industry is a matter that ||| 1 0.122289 1.90631e-06 1.37386e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the industry is a matter ||| 1 0.122289 1.90631e-06 8.16723e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the industry is a ||| 0.2 0.122289 1.90631e-06 7.87203e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| the industry is ||| 0.0135135 0.122289 1.90631e-06 1.77595e-06 2.718 ||| 0-0 ||| 74 524574 +los ||| the industry ||| 0.00102302 0.122289 3.81262e-06 5.66651e-05 2.718 ||| 0-0 ||| 1955 524574 +los ||| the inevitable economic uncertainty , make it ||| 1 0.122289 1.90631e-06 9.23135e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| the inevitable economic uncertainty , make ||| 1 0.122289 1.90631e-06 5.19105e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the inevitable economic uncertainty , ||| 1 0.122289 1.90631e-06 2.98714e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the inevitable economic uncertainty ||| 1 0.122289 1.90631e-06 2.50484e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the inevitable economic ||| 1 0.122289 1.90631e-06 4.31869e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the inevitable ||| 0.00934579 0.122289 1.90631e-06 3.56034e-06 2.718 ||| 0-0 ||| 107 524574 +los ||| the inevitably ||| 1 0.122289 1.90631e-06 4.16088e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| the influence of ||| 0.00353357 0.122289 1.90631e-06 7.97536e-07 2.718 ||| 0-0 ||| 283 524574 +los ||| the influence ||| 0.00208768 0.122289 1.90631e-06 1.46703e-05 2.718 ||| 0-0 ||| 479 524574 +los ||| the influx of ||| 0.0103093 0.122289 1.90631e-06 7.46233e-08 2.718 ||| 0-0 ||| 97 524574 +los ||| the influx ||| 0.00869565 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 115 524574 +los ||| the informal ||| 0.0238095 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 42 524574 +los ||| the information came ||| 0.333333 0.122289 1.90631e-06 8.94503e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the information received ||| 0.0588235 0.122289 1.90631e-06 6.36091e-09 2.718 ||| 0-0 ||| 17 524574 +los ||| the information ||| 0.00183936 0.122289 1.14379e-05 7.09923e-05 2.718 ||| 0-0 ||| 3262 524574 +los ||| the inhabitants in ||| 0.25 0.122289 1.90631e-06 7.25346e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the inhabitants ||| 0.0119332 0.122289 9.53154e-06 3.38875e-06 2.718 ||| 0-0 ||| 419 524574 +los ||| the initial selection , ||| 1 0.122289 1.90631e-06 7.80319e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the initial selection ||| 1 0.122289 1.90631e-06 6.5433e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the initial ||| 0.00704225 0.122289 3.81262e-06 1.12816e-05 2.718 ||| 0-0 ||| 284 524574 +los ||| the initiated , ||| 0.5 0.122289 1.90631e-06 7.16171e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the initiated ||| 0.2 0.122289 3.81262e-06 6.00539e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| the initiative ||| 0.000835771 0.122289 3.81262e-06 2.68527e-05 2.718 ||| 0-0 ||| 2393 524574 +los ||| the inland waterway vessels report ||| 1 0.122289 1.90631e-06 1.39257e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| the inland waterway vessels ||| 1 0.122289 1.90631e-06 3.39733e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the inland waterway ||| 0.333333 0.122289 1.90631e-06 2.35926e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| the inland ||| 0.0769231 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 13 524574 +los ||| the inmates ||| 0.05 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| the input ||| 0.00884956 0.122289 1.90631e-06 5.40485e-06 2.718 ||| 0-0 ||| 113 524574 +los ||| the inquiry ||| 0.0153846 0.122289 3.81262e-06 2.01609e-06 2.718 ||| 0-0 ||| 130 524574 +los ||| the ins and ||| 0.0625 0.122289 1.90631e-06 2.14923e-09 2.718 ||| 0-0 ||| 16 524574 +los ||| the ins ||| 0.0555556 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 18 524574 +los ||| the inspectors ||| 0.00675676 0.167101 1.90631e-06 7.71692e-05 2.718 ||| 0-0 0-1 ||| 148 524574 +los ||| the inspirational ||| 0.25 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| the instance of ||| 0.0833333 0.122289 1.90631e-06 1.51112e-06 2.718 ||| 0-0 ||| 12 524574 +los ||| the instance ||| 0.0714286 0.122289 1.90631e-06 2.77964e-05 2.718 ||| 0-0 ||| 14 524574 +los ||| the instances of ||| 0.0833333 0.122289 1.90631e-06 2.68177e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| the instances ||| 0.04 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-0 ||| 25 524574 +los ||| the institute ||| 0.0169492 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 59 524574 +los ||| the institutional ||| 0.0128205 0.122289 1.90631e-06 5.10458e-06 2.718 ||| 0-0 ||| 78 524574 +los ||| the institutionalisation of ||| 0.027027 0.122289 1.90631e-06 2.56518e-08 2.718 ||| 0-0 ||| 37 524574 +los ||| the institutionalisation ||| 0.0227273 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 44 524574 +los ||| the institutions is one of ||| 1 0.122289 1.90631e-06 1.59928e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the institutions is one ||| 1 0.122289 1.90631e-06 2.94181e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the institutions is ||| 0.03125 0.122289 1.90631e-06 7.05808e-07 2.718 ||| 0-0 ||| 32 524574 +los ||| the institutions ||| 0.000490798 0.122289 3.81262e-06 2.25202e-05 2.718 ||| 0-0 ||| 4075 524574 +los ||| the instrumentalities ||| 1 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the instruments , ||| 0.0285714 0.122289 1.90631e-06 1.32492e-06 2.718 ||| 0-0 ||| 35 524574 +los ||| the instruments according to ||| 1 0.122289 1.90631e-06 8.73682e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the instruments according ||| 1 0.122289 1.90631e-06 9.83232e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the instruments ||| 0.00488998 0.117581 1.14379e-05 0.000403691 2.718 ||| 0-0 0-1 ||| 1227 524574 +los ||| the insurance contract ||| 0.125 0.122289 1.90631e-06 7.59081e-11 2.718 ||| 0-0 ||| 8 524574 +los ||| the insurance ||| 0.0222222 0.122289 1.90631e-06 4.80431e-06 2.718 ||| 0-0 ||| 45 524574 +los ||| the intellectual property ||| 0.04 0.122289 1.90631e-06 4.75198e-11 2.718 ||| 0-0 ||| 25 524574 +los ||| the intellectual ||| 0.0666667 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| the intention is ||| 0.00416667 0.122289 1.90631e-06 7.59584e-07 2.718 ||| 0-0 ||| 240 524574 +los ||| the intention of the ||| 0.00757576 0.0821857 1.90631e-06 3.43865e-08 2.718 ||| 0-0 0-2 0-3 ||| 132 524574 +los ||| the intention ||| 0.00163666 0.122289 3.81262e-06 2.4236e-05 2.718 ||| 0-0 ||| 1222 524574 +los ||| the intentions of the ||| 0.016129 0.0821857 1.90631e-06 6.81643e-09 2.718 ||| 0-0 0-2 0-3 ||| 62 524574 +los ||| the interdependency ||| 0.125 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the interest of the ||| 0.005 0.122289 1.90631e-06 1.60774e-07 2.718 ||| 0-0 ||| 200 524574 +los ||| the interest of those ||| 0.2 0.203497 1.90631e-06 4.37279e-08 2.718 ||| 0-0 0-3 ||| 5 524574 +los ||| the interest of ||| 0.00484653 0.122289 5.71893e-06 2.61881e-06 2.718 ||| 0-0 ||| 619 524574 +los ||| the interest rates ||| 0.0526316 0.15007 1.90631e-06 5.07683e-08 2.718 ||| 0-0 0-2 ||| 19 524574 +los ||| the interest ||| 0.0105465 0.122289 2.09694e-05 4.81718e-05 2.718 ||| 0-0 ||| 1043 524574 +los ||| the interests of Europe 's ||| 1 0.0399115 1.90631e-06 4.17151e-14 2.718 ||| 0-0 0-2 0-3 0-4 ||| 1 524574 +los ||| the interests of all those ||| 0.0909091 0.106692 1.90631e-06 8.73163e-12 2.718 ||| 0-0 0-2 0-3 0-4 ||| 11 524574 +los ||| the interests of the Member ||| 1 0.122289 1.90631e-06 1.01142e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the interests of the ||| 0.002849 0.122289 9.53154e-06 1.96278e-07 2.718 ||| 0-0 ||| 1755 524574 +los ||| the interests of ||| 0.00202716 0.122289 1.90631e-05 3.19714e-06 2.718 ||| 0-0 ||| 4933 524574 +los ||| the interests ||| 0.0102098 0.0946504 0.000104847 0.000437493 2.718 ||| 0-0 0-1 ||| 5387 524574 +los ||| the interim ||| 0.02 0.122289 1.90631e-06 4.63273e-06 2.718 ||| 0-0 ||| 50 524574 +los ||| the intermediaries ||| 0.0526316 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| the internal market ||| 0.000286369 0.122289 1.90631e-06 4.49821e-09 2.718 ||| 0-0 ||| 3492 524574 +los ||| the internal ||| 0.019685 0.122289 9.53154e-06 1.99036e-05 2.718 ||| 0-0 ||| 254 524574 +los ||| the international community is discerning and is ||| 1 0.122289 1.90631e-06 1.71202e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| the international community is discerning and ||| 1 0.122289 1.90631e-06 5.46254e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the international community is discerning ||| 1 0.122289 1.90631e-06 4.361e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the international community is ||| 0.00980392 0.122289 1.90631e-06 3.96454e-11 2.718 ||| 0-0 ||| 102 524574 +los ||| the international community ||| 0.000279174 0.122289 1.90631e-06 1.26497e-09 2.718 ||| 0-0 ||| 3582 524574 +los ||| the international ||| 0.00974026 0.122289 5.71893e-06 3.32012e-05 2.718 ||| 0-0 ||| 308 524574 +los ||| the internet ||| 0.00310559 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 322 524574 +los ||| the intervening powers ||| 0.166667 0.122289 1.90631e-06 6.76721e-11 2.718 ||| 0-0 ||| 6 524574 +los ||| the intervening ||| 0.0357143 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 28 524574 +los ||| the intervention ||| 0.00316456 0.122289 1.90631e-06 1.14102e-05 2.718 ||| 0-0 ||| 316 524574 +los ||| the intrinsically ||| 0.25 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| the introduced ||| 1 0.122289 1.90631e-06 3.96785e-05 2.718 ||| 0-0 ||| 1 524574 +los ||| the introduction of ||| 0.000329707 0.122289 1.90631e-06 1.22429e-06 2.718 ||| 0-0 ||| 3033 524574 +los ||| the introduction ||| 0.00139795 0.122289 1.14379e-05 2.25202e-05 2.718 ||| 0-0 ||| 4292 524574 +los ||| the involvement of its ||| 0.5 0.0484683 1.90631e-06 9.05765e-11 2.718 ||| 0-0 0-2 0-3 ||| 2 524574 +los ||| the involvement of the ||| 0.00294985 0.0821857 1.90631e-06 1.81974e-08 2.718 ||| 0-0 0-2 0-3 ||| 339 524574 +los ||| the involvement ||| 0.000932836 0.122289 1.90631e-06 1.28258e-05 2.718 ||| 0-0 ||| 1072 524574 +los ||| the irradiated ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the island ' s ||| 1 0.0669643 1.90631e-06 3.63193e-11 2.718 ||| 0-0 0-2 0-3 ||| 1 524574 +los ||| the island of ||| 0.00425532 0.122289 1.90631e-06 2.3553e-07 2.718 ||| 0-0 ||| 235 524574 +los ||| the island ||| 0.00287356 0.122289 3.81262e-06 4.33246e-06 2.718 ||| 0-0 ||| 696 524574 +los ||| the issue of the ||| 0.00266667 0.0821857 7.62523e-06 4.60596e-07 2.718 ||| 0-0 0-2 0-3 ||| 1500 524574 +los ||| the issue of ||| 0.00438651 0.122289 6.67208e-05 1.76484e-05 2.718 ||| 0-0 ||| 7979 524574 +los ||| the issue ||| 0.00524278 0.122289 0.00012391 0.000324634 2.718 ||| 0-0 ||| 12398 524574 +los ||| the issues of ||| 0.00729927 0.122289 7.62523e-06 5.86492e-06 2.718 ||| 0-0 ||| 548 524574 +los ||| the issues we have ||| 0.0666667 0.122289 1.90631e-06 1.46473e-08 2.718 ||| 0-0 ||| 15 524574 +los ||| the issues we ||| 0.015873 0.122289 1.90631e-06 1.22471e-06 2.718 ||| 0-0 ||| 63 524574 +los ||| the issues ||| 0.00282575 0.122289 1.71568e-05 0.000107883 2.718 ||| 0-0 ||| 3185 524574 +los ||| the items to ||| 0.5 0.122289 1.90631e-06 1.02914e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| the items ||| 0.00653595 0.122289 1.90631e-06 1.15818e-05 2.718 ||| 0-0 ||| 153 524574 +los ||| the job I am confident that we ||| 0.5 0.122289 1.90631e-06 2.89055e-19 2.718 ||| 0-0 ||| 2 524574 +los ||| the job I am confident that ||| 0.5 0.122289 1.90631e-06 2.54622e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| the job I am confident ||| 0.5 0.122289 1.90631e-06 1.51366e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| the job I am ||| 0.5 0.122289 1.90631e-06 3.02733e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the job I ||| 0.25 0.122289 1.90631e-06 2.36973e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| the job entrusted ||| 0.333333 0.122289 1.90631e-06 1.94309e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the job of ||| 0.00995025 0.122289 3.81262e-06 1.82127e-06 2.718 ||| 0-0 ||| 201 524574 +los ||| the job ||| 0.00773994 0.122289 9.53154e-06 3.35015e-05 2.718 ||| 0-0 ||| 646 524574 +los ||| the jobs ||| 0.00514139 0.122289 3.81262e-06 2.22199e-05 2.718 ||| 0-0 ||| 389 524574 +los ||| the joint European tourist ||| 1 0.122289 1.90631e-06 2.98811e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the joint European ||| 0.166667 0.122289 1.90631e-06 9.33786e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| the joint ||| 0.025974 0.122289 7.62523e-06 2.79251e-05 2.718 ||| 0-0 ||| 154 524574 +los ||| the judgement ||| 0.02 0.122289 1.90631e-06 6.64882e-06 2.718 ||| 0-0 ||| 50 524574 +los ||| the judicial ||| 0.0212766 0.122289 1.90631e-06 5.57643e-06 2.718 ||| 0-0 ||| 47 524574 +los ||| the judiciary is ||| 0.0666667 0.122289 1.90631e-06 2.95767e-08 2.718 ||| 0-0 ||| 15 524574 +los ||| the judiciary ||| 0.00283286 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 353 524574 +los ||| the jungle of ||| 0.047619 0.122289 1.90631e-06 2.56518e-08 2.718 ||| 0-0 ||| 21 524574 +los ||| the jungle ||| 0.00833333 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 120 524574 +los ||| the just ||| 0.0344828 0.122289 1.90631e-06 0.000541214 2.718 ||| 0-0 ||| 29 524574 +los ||| the keener ||| 0.25 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| the key ||| 0.00682594 0.122289 1.90631e-05 3.11851e-05 2.718 ||| 0-0 ||| 1465 524574 +los ||| the kind displayed by ||| 1 0.0642678 1.90631e-06 5.9677e-12 2.718 ||| 0-0 0-3 ||| 1 524574 +los ||| the kind of ||| 0.0174346 0.122289 2.66883e-05 1.13801e-05 2.718 ||| 0-0 ||| 803 524574 +los ||| the kind ||| 0.0265487 0.122289 5.71893e-05 0.000209331 2.718 ||| 0-0 ||| 1130 524574 +los ||| the kinds of ||| 0.0666667 0.122289 7.62523e-06 1.10769e-06 2.718 ||| 0-0 ||| 60 524574 +los ||| the kinds ||| 0.0724638 0.122289 9.53154e-06 2.03754e-05 2.718 ||| 0-0 ||| 69 524574 +los ||| the knock-on ||| 0.0909091 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| the knowledge and expertise ||| 0.5 0.122289 1.90631e-06 1.7355e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| the knowledge and ||| 0.0147059 0.122289 1.90631e-06 2.55221e-07 2.718 ||| 0-0 ||| 68 524574 +los ||| the knowledge ||| 0.00215983 0.122289 1.90631e-06 2.03754e-05 2.718 ||| 0-0 ||| 463 524574 +los ||| the known ||| 0.0833333 0.122289 1.90631e-06 4.72281e-05 2.718 ||| 0-0 ||| 12 524574 +los ||| the labelling ||| 0.00276243 0.122289 1.90631e-06 5.70512e-06 2.718 ||| 0-0 ||| 362 524574 +los ||| the labour authority ||| 0.333333 0.122289 1.90631e-06 7.87564e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the labour market and making it more ||| 1 0.122289 1.90631e-06 8.19569e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the labour market and making it ||| 1 0.122289 1.90631e-06 3.58878e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the labour market and making ||| 1 0.122289 1.90631e-06 2.01807e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the labour market and ||| 0.00393701 0.122289 1.90631e-06 5.24583e-11 2.718 ||| 0-0 ||| 254 524574 +los ||| the labour market was made more flexible ||| 1 0.122289 1.90631e-06 8.7877e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| the labour market was made more ||| 1 0.122289 1.90631e-06 6.27693e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the labour market was made ||| 1 0.122289 1.90631e-06 2.74858e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the labour market was ||| 0.5 0.122289 1.90631e-06 1.3121e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the labour market ||| 0.00206186 0.122289 7.62523e-06 4.18799e-09 2.718 ||| 0-0 ||| 1940 524574 +los ||| the labour markets ||| 0.00961538 0.122289 1.90631e-06 5.20719e-10 2.718 ||| 0-0 ||| 104 524574 +los ||| the labour ||| 0.0592593 0.122289 1.52505e-05 1.85309e-05 2.718 ||| 0-0 ||| 135 524574 +los ||| the lack of a ||| 0.00292398 0.122289 1.90631e-06 1.25694e-07 2.718 ||| 0-0 ||| 342 524574 +los ||| the lack of ||| 0.000868558 0.122289 5.71893e-06 2.83569e-06 2.718 ||| 0-0 ||| 3454 524574 +los ||| the lack ||| 0.00111576 0.122289 7.62523e-06 5.21611e-05 2.718 ||| 0-0 ||| 3585 524574 +los ||| the ladder ||| 0.0666667 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| the ladies ||| 0.0512821 0.122289 3.81262e-06 2.56087e-05 2.718 ||| 0-0 ||| 39 524574 +los ||| the land of trees ||| 0.25 0.122289 1.90631e-06 5.47665e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| the land of ||| 0.0149254 0.122289 1.90631e-06 8.97812e-07 2.718 ||| 0-0 ||| 67 524574 +los ||| the land ||| 0.00452489 0.122289 3.81262e-06 1.65148e-05 2.718 ||| 0-0 ||| 442 524574 +los ||| the language of force ||| 0.166667 0.122289 1.90631e-06 1.8575e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| the language of ||| 0.0045045 0.122289 1.90631e-06 1.09137e-06 2.718 ||| 0-0 ||| 222 524574 +los ||| the language ||| 0.00353982 0.122289 3.81262e-06 2.00752e-05 2.718 ||| 0-0 ||| 565 524574 +los ||| the large , ||| 0.166667 0.122289 1.90631e-06 7.86253e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| the large ||| 0.0014771 0.122289 3.81262e-06 6.59306e-05 2.718 ||| 0-0 ||| 1354 524574 +los ||| the larger ||| 0.013245 0.122289 3.81262e-06 6.47724e-06 2.718 ||| 0-0 ||| 151 524574 +los ||| the largest ||| 0.00087184 0.122289 1.90631e-06 4.33246e-06 2.718 ||| 0-0 ||| 1147 524574 +los ||| the last few days ||| 0.00294118 0.122289 1.90631e-06 1.04613e-12 2.718 ||| 0-0 ||| 340 524574 +los ||| the last few ||| 0.000809717 0.122289 1.90631e-06 1.64228e-08 2.718 ||| 0-0 ||| 1235 524574 +los ||| the last ||| 0.00342911 0.122289 5.5283e-05 9.36841e-05 2.718 ||| 0-0 ||| 8457 524574 +los ||| the latest ||| 0.00165472 0.122289 5.71893e-06 6.94909e-06 2.718 ||| 0-0 ||| 1813 524574 +los ||| the latter ' s having ||| 1 0.122289 1.90631e-06 1.03137e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the latter ' s ||| 0.166667 0.122289 1.90631e-06 2.69358e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| the latter ' ||| 0.125 0.122289 1.90631e-06 1.41596e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the latter being able to ||| 1 0.122289 1.90631e-06 8.70308e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the latter being able ||| 1 0.122289 1.90631e-06 9.79434e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the latter being ||| 0.03125 0.122289 1.90631e-06 1.17312e-07 2.718 ||| 0-0 ||| 32 524574 +los ||| the latter corrupt ||| 1 0.122289 1.90631e-06 1.31913e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the latter in terms of the ||| 1 0.122289 1.90631e-06 3.23227e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| the latter tend to ||| 1 0.122289 1.90631e-06 8.42484e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the latter tend ||| 1 0.122289 1.90631e-06 9.48122e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the latter to prevail ||| 1 0.122289 1.90631e-06 8.71788e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the latter to ||| 0.0333333 0.122289 1.90631e-06 3.66297e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| the latter ||| 0.00824553 0.122289 3.43136e-05 4.12227e-05 2.718 ||| 0-0 ||| 2183 524574 +los ||| the launch of the euro and two ||| 1 0.122289 1.90631e-06 4.92714e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the launch of the euro and ||| 0.166667 0.122289 1.90631e-06 2.08424e-14 2.718 ||| 0-0 ||| 6 524574 +los ||| the launch of the euro ||| 0.0181818 0.122289 1.90631e-06 1.66394e-12 2.718 ||| 0-0 ||| 55 524574 +los ||| the launch of the ||| 0.00442478 0.122289 1.90631e-06 2.83465e-08 2.718 ||| 0-0 ||| 226 524574 +los ||| the launch of ||| 0.0037037 0.122289 1.90631e-06 4.61732e-07 2.718 ||| 0-0 ||| 270 524574 +los ||| the launch ||| 0.0021645 0.122289 1.90631e-06 8.49333e-06 2.718 ||| 0-0 ||| 462 524574 +los ||| the law and becoming ||| 0.5 0.122289 1.90631e-06 9.74742e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the law and ||| 0.00298507 0.122289 1.90631e-06 9.47271e-07 2.718 ||| 0-0 ||| 335 524574 +los ||| the law in its pursuit of ||| 1 0.122289 1.90631e-06 3.10926e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the law in its pursuit ||| 1 0.122289 1.90631e-06 5.71934e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the law in its ||| 0.333333 0.122289 1.90631e-06 2.30618e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the law in ||| 0.00980392 0.122289 1.90631e-06 1.61872e-06 2.718 ||| 0-0 ||| 102 524574 +los ||| the law is formed ||| 0.5 0.122289 1.90631e-06 4.59813e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the law is ||| 0.00970874 0.122289 1.90631e-06 2.37017e-06 2.718 ||| 0-0 ||| 103 524574 +los ||| the law on ||| 0.00540541 0.122289 1.90631e-06 5.06007e-07 2.718 ||| 0-0 ||| 185 524574 +los ||| the law ||| 0.00221379 0.122289 1.33442e-05 7.5625e-05 2.718 ||| 0-0 ||| 3162 524574 +los ||| the lawyers ||| 0.0135135 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 74 524574 +los ||| the lead by ||| 0.2 0.122289 1.90631e-06 4.33522e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| the lead ||| 0.00339559 0.122289 3.81262e-06 8.25741e-05 2.718 ||| 0-0 ||| 589 524574 +los ||| the leader of the Liberal Group ||| 0.333333 0.122289 1.90631e-06 3.60229e-17 2.718 ||| 0-0 ||| 3 524574 +los ||| the leader of the Liberal ||| 0.5 0.122289 1.90631e-06 1.10738e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the leader of the ||| 0.005 0.122289 1.90631e-06 1.70366e-08 2.718 ||| 0-0 ||| 200 524574 +los ||| the leader of ||| 0.00436681 0.122289 1.90631e-06 2.77505e-07 2.718 ||| 0-0 ||| 229 524574 +los ||| the leader ||| 0.0056338 0.122289 3.81262e-06 5.10458e-06 2.718 ||| 0-0 ||| 355 524574 +los ||| the leaders of the ||| 0.00302115 0.118232 1.90631e-06 6.74583e-07 2.718 ||| 0-0 0-1 0-2 0-3 ||| 331 524574 +los ||| the leaders ||| 0.00409836 0.17433 5.71893e-06 0.000475455 2.718 ||| 0-0 0-1 ||| 732 524574 +los ||| the leadership of the ||| 0.00833333 0.122289 1.90631e-06 2.37653e-08 2.718 ||| 0-3 ||| 120 524574 +los ||| the least ||| 0.00217628 0.122289 3.81262e-06 0.000105266 2.718 ||| 0-0 ||| 919 524574 +los ||| the legal actions taken ||| 0.5 0.122289 1.90631e-06 3.53696e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| the legal actions ||| 0.333333 0.122289 1.90631e-06 3.88037e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the legal events ||| 0.333333 0.122289 1.90631e-06 4.04159e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the legal status ||| 0.00666667 0.122289 1.90631e-06 5.62043e-09 2.718 ||| 0-0 ||| 150 524574 +los ||| the legal ||| 0.0228311 0.122289 1.90631e-05 5.55927e-05 2.718 ||| 0-0 ||| 438 524574 +los ||| the legislation governing ||| 0.0588235 0.122289 1.90631e-06 6.68237e-10 2.718 ||| 0-0 ||| 17 524574 +los ||| the legislation in Europe on the protection ||| 1 0.122289 1.90631e-06 1.55543e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the legislation in Europe on the ||| 1 0.122289 1.90631e-06 1.53245e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the legislation in Europe on ||| 1 0.122289 1.90631e-06 2.49618e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the legislation in Europe ||| 0.5 0.122289 1.90631e-06 3.73065e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the legislation in ||| 0.00869565 0.122289 1.90631e-06 7.37282e-07 2.718 ||| 0-0 ||| 115 524574 +los ||| the legislation ||| 0.00137678 0.122289 5.71893e-06 3.44452e-05 2.718 ||| 0-0 ||| 2179 524574 +los ||| the legislative ||| 0.0166667 0.122289 3.81262e-06 1.14102e-05 2.718 ||| 0-0 ||| 120 524574 +los ||| the length and ||| 0.0140845 0.122289 1.90631e-06 2.06863e-07 2.718 ||| 0-0 ||| 71 524574 +los ||| the length of time ||| 0.0138889 0.122289 1.90631e-06 1.47394e-09 2.718 ||| 0-0 ||| 72 524574 +los ||| the length of ||| 0.00438596 0.122289 1.90631e-06 8.97812e-07 2.718 ||| 0-0 ||| 228 524574 +los ||| the length ||| 0.00808625 0.122289 5.71893e-06 1.65148e-05 2.718 ||| 0-0 ||| 371 524574 +los ||| the lengthy ||| 0.0126582 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 79 524574 +los ||| the less we seek to achieve that ||| 1 0.122289 1.90631e-06 1.9674e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the less we seek to achieve ||| 1 0.122289 1.90631e-06 1.16957e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the less we seek to ||| 1 0.122289 1.90631e-06 5.11845e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the less we seek ||| 1 0.122289 1.90631e-06 5.76025e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the less we ||| 0.333333 0.122289 1.90631e-06 8.28813e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the less widely spoken ||| 1 0.122289 1.90631e-06 4.5098e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the less widely ||| 1 0.122289 1.90631e-06 2.02233e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the less ||| 0.0201613 0.122289 9.53154e-06 7.30084e-05 2.718 ||| 0-0 ||| 248 524574 +los ||| the less-developed ||| 0.333333 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the lessons ||| 0.00175439 0.122289 1.90631e-06 4.46115e-06 2.718 ||| 0-0 ||| 570 524574 +los ||| the lethal ||| 0.5 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the letter ||| 0.00107411 0.122289 1.90631e-06 1.111e-05 2.718 ||| 0-0 ||| 931 524574 +los ||| the letters ||| 0.0149254 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-0 ||| 67 524574 +los ||| the level at ||| 0.04 0.122289 1.90631e-06 1.53648e-06 2.718 ||| 0-0 ||| 25 524574 +los ||| the level of aid contributed by the ||| 1 0.122289 1.90631e-06 7.89301e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the level of aid contributed by ||| 1 0.122289 1.90631e-06 1.28568e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the level of aid contributed ||| 1 0.122289 1.90631e-06 2.44886e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the level of aid ||| 0.025 0.122289 1.90631e-06 2.60517e-09 2.718 ||| 0-0 ||| 40 524574 +los ||| the level of every ||| 1 0.122289 1.90631e-06 3.2455e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the level of individual ||| 0.111111 0.122289 1.90631e-06 2.82061e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| the level of risk ||| 0.0357143 0.122289 1.90631e-06 2.33389e-09 2.718 ||| 0-0 ||| 28 524574 +los ||| the level of the ||| 0.0307263 0.0821857 2.09694e-05 5.20605e-07 2.718 ||| 0-0 0-2 0-3 ||| 358 524574 +los ||| the level of ||| 0.0101848 0.122289 5.14703e-05 1.99477e-05 2.718 ||| 0-0 ||| 2651 524574 +los ||| the level ||| 0.0146217 0.122289 8.76902e-05 0.000366929 2.718 ||| 0-0 ||| 3146 524574 +los ||| the levels of ||| 0.00806452 0.172421 3.81262e-06 4.58677e-05 2.718 ||| 0-0 0-1 ||| 248 524574 +los ||| the levels ||| 0.00819672 0.172421 5.71893e-06 0.000843714 2.718 ||| 0-0 0-1 ||| 366 524574 +los ||| the liability to ||| 1 0.122289 1.90631e-06 4.26902e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the liability ||| 0.00793651 0.122289 1.90631e-06 4.80431e-06 2.718 ||| 0-0 ||| 126 524574 +los ||| the liberty ||| 0.00724638 0.122289 1.90631e-06 4.33246e-06 2.718 ||| 0-0 ||| 138 524574 +los ||| the licence fees paid by the ||| 1 0.122289 1.90631e-06 7.52198e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the licence fees paid by ||| 1 0.122289 1.90631e-06 1.22524e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the licence fees paid ||| 0.5 0.122289 1.90631e-06 2.33375e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| the licence fees ||| 0.25 0.122289 1.90631e-06 1.73384e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| the licence ||| 0.03125 0.122289 3.81262e-06 4.03219e-06 2.718 ||| 0-0 ||| 64 524574 +los ||| the lid ||| 0.333333 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the lies they read ||| 1 0.122289 1.90631e-06 4.15036e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the lies they ||| 1 0.122289 1.90631e-06 8.6107e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the lies ||| 0.0285714 0.122289 1.90631e-06 2.63808e-05 2.718 ||| 0-0 ||| 35 524574 +los ||| the life & # x02BC ; ||| 1 0.122289 1.90631e-06 1.33003e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| the life & # x02BC ||| 1 0.122289 1.90631e-06 4.31827e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the life & # ||| 1 0.122289 1.90631e-06 1.12163e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the life & ||| 1 0.122289 1.90631e-06 2.94391e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the life of the ||| 0.00925926 0.122289 1.90631e-06 2.16894e-07 2.718 ||| 0-0 ||| 108 524574 +los ||| the life of ||| 0.0026455 0.122289 1.90631e-06 3.53295e-06 2.718 ||| 0-0 ||| 378 524574 +los ||| the life ||| 0.00957854 0.122289 9.53154e-06 6.49869e-05 2.718 ||| 0-0 ||| 522 524574 +los ||| the lifeblood of ||| 0.0357143 0.122289 1.90631e-06 9.32791e-09 2.718 ||| 0-0 ||| 28 524574 +los ||| the lifeblood ||| 0.0344828 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 29 524574 +los ||| the lifting of ||| 0.00719424 0.122289 1.90631e-06 1.25927e-07 2.718 ||| 0-0 ||| 139 524574 +los ||| the lifting ||| 0.00487805 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 205 524574 +los ||| the light of the ||| 0.00824931 0.122289 1.71568e-05 2.4882e-07 2.718 ||| 0-3 ||| 1091 524574 +los ||| the light of ||| 0.00227583 0.122289 9.53154e-06 4.05298e-06 2.718 ||| 0-0 ||| 2197 524574 +los ||| the light ||| 0.00393236 0.122289 1.90631e-05 7.45526e-05 2.718 ||| 0-0 ||| 2543 524574 +los ||| the like ||| 0.00456621 0.122289 1.90631e-06 0.000761783 2.718 ||| 0-0 ||| 219 524574 +los ||| the likelihood that the ||| 0.5 0.122289 1.90631e-06 2.35238e-08 2.718 ||| 0-0 0-3 ||| 2 524574 +los ||| the likely ||| 0.0133333 0.122289 1.90631e-06 3.64184e-05 2.718 ||| 0-0 ||| 75 524574 +los ||| the likes ||| 0.0222222 0.122289 1.90631e-06 5.10458e-06 2.718 ||| 0-0 ||| 45 524574 +los ||| the limit was ||| 0.5 0.122289 1.90631e-06 6.53145e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the limit ||| 0.00772201 0.122289 3.81262e-06 2.08473e-05 2.718 ||| 0-0 ||| 259 524574 +los ||| the limits ||| 0.00263852 0.122289 3.81262e-06 1.15818e-05 2.718 ||| 0-0 ||| 758 524574 +los ||| the line ||| 0.0046729 0.122289 7.62523e-06 0.000126285 2.718 ||| 0-0 ||| 856 524574 +los ||| the linen ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the lines of those ||| 0.142857 0.284705 1.90631e-06 5.07128e-09 2.718 ||| 0-3 ||| 7 524574 +los ||| the lines ||| 0.00690846 0.122289 7.62523e-06 3.9035e-05 2.718 ||| 0-0 ||| 579 524574 +los ||| the linguistic ||| 0.125 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the link between ||| 0.00209205 0.122289 1.90631e-06 2.77239e-09 2.718 ||| 0-0 ||| 478 524574 +los ||| the link ||| 0.00168067 0.122289 1.90631e-06 1.05094e-05 2.718 ||| 0-0 ||| 595 524574 +los ||| the linking of ||| 0.0285714 0.122289 1.90631e-06 1.25927e-07 2.718 ||| 0-0 ||| 35 524574 +los ||| the linking ||| 0.0217391 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 46 524574 +los ||| the lip-service ||| 0.5 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| the list goes ||| 0.0833333 0.122289 1.90631e-06 4.3429e-09 2.718 ||| 0-0 ||| 12 524574 +los ||| the list of ||| 0.00316957 0.122289 7.62523e-06 1.70468e-06 2.718 ||| 0-0 ||| 1262 524574 +los ||| the list ||| 0.00480538 0.122289 1.90631e-05 3.13567e-05 2.718 ||| 0-0 ||| 2081 524574 +los ||| the little plans ||| 1 0.122289 1.90631e-06 2.92376e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the little ||| 0.0206897 0.122289 5.71893e-06 6.9448e-05 2.718 ||| 0-0 ||| 145 524574 +los ||| the live ||| 0.142857 0.122289 1.90631e-06 4.32388e-05 2.718 ||| 0-0 ||| 7 524574 +los ||| the liver ||| 0.0625 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| the lives of ||| 0.00237248 0.122289 3.81262e-06 1.20097e-06 2.718 ||| 0-0 ||| 843 524574 +los ||| the lives ||| 0.00101626 0.122289 1.90631e-06 2.20912e-05 2.718 ||| 0-0 ||| 984 524574 +los ||| the living embodiment ||| 0.5 0.122289 1.90631e-06 2.51626e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the living ||| 0.0377358 0.122289 3.81262e-06 3.59465e-05 2.718 ||| 0-0 ||| 53 524574 +los ||| the loading of ||| 0.333333 0.122289 1.90631e-06 1.63238e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the loading ||| 0.0416667 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 24 524574 +los ||| the loans after all ||| 1 0.122289 1.90631e-06 4.17479e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the loans after ||| 1 0.122289 1.90631e-06 8.83478e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the loans ||| 0.0108696 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-0 ||| 92 524574 +los ||| the local ||| 0.0552764 0.122289 2.09694e-05 2.19197e-05 2.718 ||| 0-0 ||| 199 524574 +los ||| the location ||| 0.00515464 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-0 ||| 194 524574 +los ||| the lofty words ||| 1 0.122289 1.90631e-06 1.35722e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the lofty ||| 0.0555556 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 18 524574 +los ||| the long line ||| 0.111111 0.122289 1.90631e-06 4.27221e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| the long run ||| 0.00323625 0.122289 1.90631e-06 1.54113e-08 2.718 ||| 0-0 ||| 309 524574 +los ||| the long term to ||| 0.037037 0.122289 1.90631e-06 1.41068e-09 2.718 ||| 0-0 ||| 27 524574 +los ||| the long term ||| 0.0013986 0.122289 3.81262e-06 1.58757e-08 2.718 ||| 0-0 ||| 1430 524574 +los ||| the long ||| 0.00337648 0.122289 1.14379e-05 0.000145116 2.718 ||| 0-0 ||| 1777 524574 +los ||| the long-term ||| 0.00675676 0.122289 1.90631e-06 1.09813e-05 2.718 ||| 0-0 ||| 148 524574 +los ||| the looking ahead ||| 1 0.122289 1.90631e-06 4.94681e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the looking ||| 0.333333 0.122289 1.90631e-06 4.53836e-05 2.718 ||| 0-0 ||| 3 524574 +los ||| the lookout ||| 0.25 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| the loss ||| 0.001002 0.122289 1.90631e-06 1.80591e-05 2.718 ||| 0-0 ||| 998 524574 +los ||| the loud and ||| 1 0.122289 1.90631e-06 5.58799e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the loud ||| 0.166667 0.122289 1.90631e-06 4.46115e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| the loudest ||| 0.125 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the low turn-out ( ||| 1 0.122289 1.90631e-06 5.95707e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the low turn-out ||| 0.25 0.122289 1.90631e-06 6.17697e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| the low ||| 0.00294985 0.122289 1.90631e-06 1.54424e-05 2.718 ||| 0-0 ||| 339 524574 +los ||| the main body ||| 0.0357143 0.122289 1.90631e-06 3.66085e-09 2.718 ||| 0-0 ||| 28 524574 +los ||| the main concerns ||| 0.0222222 0.122289 1.90631e-06 3.20324e-09 2.718 ||| 0-0 ||| 45 524574 +los ||| the main goal of Lisbon will be ||| 0.5 0.122289 1.90631e-06 2.80864e-19 2.718 ||| 0-0 ||| 2 524574 +los ||| the main goal of Lisbon will ||| 0.5 0.122289 1.90631e-06 1.54977e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| the main goal of Lisbon ||| 0.5 0.122289 1.90631e-06 1.7914e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| the main goal of ||| 0.0526316 0.122289 1.90631e-06 7.78869e-11 2.718 ||| 0-0 ||| 19 524574 +los ||| the main goal ||| 0.0277778 0.122289 1.90631e-06 1.43269e-09 2.718 ||| 0-0 ||| 36 524574 +los ||| the main outstanding obstacles ||| 1 0.122289 1.90631e-06 4.33058e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the main outstanding ||| 1 0.122289 1.90631e-06 7.09931e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the main persons ||| 1 0.122289 1.90631e-06 2.2025e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the main political ||| 0.5 0.122289 1.90631e-06 7.6339e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the main ||| 0.00298141 0.122289 3.24072e-05 4.27669e-05 2.718 ||| 0-0 ||| 5702 524574 +los ||| the mainly ||| 0.142857 0.122289 1.90631e-06 2.00752e-05 2.718 ||| 0-0 ||| 7 524574 +los ||| the mainstream of ||| 0.0909091 0.122289 1.90631e-06 8.39512e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| the mainstream ||| 0.0212766 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 47 524574 +los ||| the maintenance of ||| 0.00263852 0.122289 1.90631e-06 1.84226e-07 2.718 ||| 0-0 ||| 379 524574 +los ||| the maintenance ||| 0.00204082 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 490 524574 +los ||| the major ||| 0.00169779 0.122289 7.62523e-06 4.1523e-05 2.718 ||| 0-0 ||| 2356 524574 +los ||| the majority in ||| 0.00257732 0.122289 1.90631e-06 3.70018e-07 2.718 ||| 0-0 ||| 388 524574 +los ||| the majority of the ||| 0.00102145 0.0821857 1.90631e-06 2.4527e-08 2.718 ||| 0-0 0-2 0-3 ||| 979 524574 +los ||| the majority of ||| 0.000966806 0.122289 5.71893e-06 9.39787e-07 2.718 ||| 0-0 ||| 3103 524574 +los ||| the majority ||| 0.00108342 0.122289 9.53154e-06 1.72869e-05 2.718 ||| 0-0 ||| 4615 524574 +los ||| the make or ||| 1 0.122289 1.90631e-06 8.52262e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the make ||| 0.25 0.122289 1.90631e-06 0.00074544 2.718 ||| 0-0 ||| 4 524574 +los ||| the makers ||| 0.125 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| the makeshift ||| 0.333333 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the making ||| 0.0126582 0.122289 1.90631e-06 0.000165019 2.718 ||| 0-0 ||| 79 524574 +los ||| the male domination ||| 1 0.122289 1.90631e-06 7.79843e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the male ||| 0.3 0.122289 5.71893e-06 4.33246e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| the man in the ||| 0.0227273 0.122289 1.90631e-06 2.50883e-07 2.718 ||| 0-0 0-3 ||| 44 524574 +los ||| the man in ||| 0.0196078 0.122289 1.90631e-06 5.84868e-07 2.718 ||| 0-0 ||| 51 524574 +los ||| the man ||| 0.00395257 0.122289 1.90631e-06 2.73245e-05 2.718 ||| 0-0 ||| 253 524574 +los ||| the management of Community ||| 1 0.122289 1.90631e-06 1.65743e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the management of ||| 0.000739098 0.122289 1.90631e-06 1.02374e-06 2.718 ||| 0-0 ||| 1353 524574 +los ||| the management ||| 0.00228833 0.122289 7.62523e-06 1.88312e-05 2.718 ||| 0-0 ||| 1748 524574 +los ||| the managers will withdraw ||| 1 0.21887 1.90631e-06 9.96964e-12 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the managers will ||| 1 0.21887 1.90631e-06 1.0606e-06 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the managers ||| 0.0384615 0.21887 3.81262e-06 0.000122596 2.718 ||| 0-0 0-1 ||| 52 524574 +los ||| the manner ||| 0.00288184 0.122289 1.90631e-06 8.36465e-05 2.718 ||| 0-0 ||| 347 524574 +los ||| the manufacture of ||| 0.00534759 0.122289 1.90631e-06 2.0055e-07 2.718 ||| 0-0 ||| 187 524574 +los ||| the manufacture ||| 0.00732601 0.122289 3.81262e-06 3.68902e-06 2.718 ||| 0-0 ||| 273 524574 +los ||| the manufacturers of ||| 0.0166667 0.239667 1.90631e-06 2.37838e-05 2.718 ||| 0-0 0-1 ||| 60 524574 +los ||| the manufacturers ||| 0.00851064 0.239667 3.81262e-06 0.000437493 2.718 ||| 0-0 0-1 ||| 235 524574 +los ||| the many social ||| 1 0.122289 1.90631e-06 1.5212e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the many ||| 0.0103093 0.0626435 4.38451e-05 6.04828e-05 2.718 ||| 0-0 0-1 ||| 2231 524574 +los ||| the margins ||| 0.00662252 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 151 524574 +los ||| the maritime ||| 0.0333333 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| the mark ||| 0.0111732 0.122289 3.81262e-06 2.32923e-05 2.718 ||| 0-0 ||| 179 524574 +los ||| the market , and that money ||| 1 0.122289 1.90631e-06 3.98039e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the market , and that ||| 0.166667 0.122289 1.90631e-06 2.43598e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| the market , and ||| 0.0136986 0.122289 1.90631e-06 1.44812e-07 2.718 ||| 0-0 ||| 73 524574 +los ||| the market , ||| 0.00519931 0.122289 5.71893e-06 1.1561e-05 2.718 ||| 0-0 ||| 577 524574 +los ||| the market in ||| 0.00284091 0.122289 1.90631e-06 2.07504e-06 2.718 ||| 0-0 ||| 352 524574 +los ||| the market of the ||| 0.0666667 0.0821857 1.90631e-06 1.37546e-07 2.718 ||| 0-0 0-2 0-3 ||| 15 524574 +los ||| the market of ||| 0.0533333 0.122289 7.62523e-06 5.27027e-06 2.718 ||| 0-0 ||| 75 524574 +los ||| the market to competition on the basis ||| 1 0.122289 1.90631e-06 7.62724e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| the market to competition on the ||| 1 0.122289 1.90631e-06 1.28448e-13 2.718 ||| 0-5 ||| 1 524574 +los ||| the market ||| 0.00396577 0.122289 3.62199e-05 9.69441e-05 2.718 ||| 0-0 ||| 4791 524574 +los ||| the marketing ||| 0.00218818 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-0 ||| 457 524574 +los ||| the markets ||| 0.00202156 0.181141 5.71893e-06 0.00121781 2.718 ||| 0-0 0-1 ||| 1484 524574 +los ||| the mass ||| 0.021978 0.122289 3.81262e-06 6.77751e-06 2.718 ||| 0-0 ||| 91 524574 +los ||| the masses of ||| 0.125 0.062134 1.90631e-06 2.55387e-09 2.718 ||| 0-0 0-2 ||| 8 524574 +los ||| the masses ||| 0.0217391 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 46 524574 +los ||| the master and ||| 0.5 0.122289 1.90631e-06 2.14923e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the master ||| 0.0285714 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 35 524574 +los ||| the material on ||| 0.333333 0.122289 1.90631e-06 8.06511e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the material ||| 0.0272109 0.122289 7.62523e-06 1.20537e-05 2.718 ||| 0-0 ||| 147 524574 +los ||| the matter , ||| 0.00322581 0.122289 1.90631e-06 5.30734e-05 2.718 ||| 0-0 ||| 310 524574 +los ||| the matter is ||| 0.00364964 0.122289 1.90631e-06 1.39481e-05 2.718 ||| 0-0 ||| 274 524574 +los ||| the matter of the ||| 0.0119048 0.0821857 5.71893e-06 6.31433e-07 2.718 ||| 0-0 0-2 0-3 ||| 252 524574 +los ||| the matter of ||| 0.00295276 0.122289 5.71893e-06 2.41943e-05 2.718 ||| 0-0 ||| 1016 524574 +los ||| the matter ||| 0.0039801 0.122289 3.81262e-05 0.000445042 2.718 ||| 0-0 ||| 5025 524574 +los ||| the matters ||| 0.00364964 0.122289 1.90631e-06 7.93569e-05 2.718 ||| 0-0 ||| 274 524574 +los ||| the meaning of ||| 0.00380228 0.122289 1.90631e-06 7.13585e-07 2.718 ||| 0-0 ||| 263 524574 +los ||| the meaning ||| 0.00549451 0.122289 3.81262e-06 1.31261e-05 2.718 ||| 0-0 ||| 364 524574 +los ||| the means of ||| 0.00632911 0.122289 3.81262e-06 1.47777e-05 2.718 ||| 0-0 ||| 316 524574 +los ||| the means ||| 0.00352823 0.122289 1.33442e-05 0.00027183 2.718 ||| 0-0 ||| 1984 524574 +los ||| the meantime , the ||| 0.0131579 0.122289 1.90631e-06 7.69423e-08 2.718 ||| 0-3 ||| 76 524574 +los ||| the meantime ||| 0.00608828 0.122289 7.62523e-06 1.05094e-05 2.718 ||| 0-0 ||| 657 524574 +los ||| the measure ||| 0.00223714 0.122289 1.90631e-06 3.21288e-05 2.718 ||| 0-0 ||| 447 524574 +los ||| the measured ||| 0.25 0.122289 1.90631e-06 5.10458e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| the measures ' ||| 1 0.0833685 1.90631e-06 4.72085e-07 2.718 ||| 0-0 0-2 ||| 1 524574 +los ||| the measures agreed ||| 0.0434783 0.122289 1.90631e-06 6.93146e-09 2.718 ||| 0-0 ||| 23 524574 +los ||| the measures are outdated ||| 1 0.122289 1.90631e-06 1.48125e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the measures are ||| 0.025641 0.122289 1.90631e-06 1.34659e-06 2.718 ||| 0-0 ||| 39 524574 +los ||| the measures ||| 0.000464253 0.122289 3.81262e-06 8.87511e-05 2.718 ||| 0-0 ||| 4308 524574 +los ||| the meat and ||| 0.125 0.122289 1.90631e-06 9.67151e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| the meat ||| 0.00581395 0.122289 1.90631e-06 7.72121e-06 2.718 ||| 0-0 ||| 172 524574 +los ||| the mechanisms of ||| 0.0119048 0.133337 1.90631e-06 1.50086e-05 2.718 ||| 0-0 0-1 ||| 84 524574 +los ||| the mechanisms ||| 0.0020284 0.133337 1.90631e-06 0.000276076 2.718 ||| 0-0 0-1 ||| 493 524574 +los ||| the media ||| 0.000680041 0.122289 3.81262e-06 1.23539e-05 2.718 ||| 0-0 ||| 2941 524574 +los ||| the mediation ||| 0.0222222 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 45 524574 +los ||| the medicines ||| 0.0117647 0.181614 1.90631e-06 0.000282768 2.718 ||| 0-0 0-1 ||| 85 524574 +los ||| the meeting , ||| 0.0166667 0.122289 1.90631e-06 6.42507e-06 2.718 ||| 0-0 ||| 60 524574 +los ||| the meeting held ||| 0.0588235 0.122289 1.90631e-06 1.3744e-08 2.718 ||| 0-0 ||| 17 524574 +los ||| the meeting of minds ||| 0.25 0.122289 1.90631e-06 1.40297e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| the meeting of ||| 0.00271739 0.122289 1.90631e-06 2.92896e-06 2.718 ||| 0-0 ||| 368 524574 +los ||| the meeting ||| 0.00253485 0.122289 7.62523e-06 5.38769e-05 2.718 ||| 0-0 ||| 1578 524574 +los ||| the meetings ||| 0.00249377 0.122289 1.90631e-06 9.43704e-06 2.718 ||| 0-0 ||| 401 524574 +los ||| the member ||| 0.113636 0.122289 9.53154e-06 7.14641e-05 2.718 ||| 0-0 ||| 44 524574 +los ||| the members of the ||| 0.00257732 0.0821857 7.62523e-06 8.977e-08 2.718 ||| 0-0 0-2 0-3 ||| 1552 524574 +los ||| the members of ||| 0.00194301 0.138452 5.71893e-06 4.62991e-05 2.718 ||| 0-0 0-1 ||| 1544 524574 +los ||| the members ||| 0.00274348 0.138452 1.14379e-05 0.00085165 2.718 ||| 0-0 0-1 ||| 2187 524574 +los ||| the membership ||| 0.00943396 0.122289 1.90631e-06 1.05094e-05 2.718 ||| 0-0 ||| 106 524574 +los ||| the men and women ||| 0.00787402 0.21664 1.90631e-06 1.45932e-10 2.718 ||| 0-1 ||| 127 524574 +los ||| the men and ||| 0.00787402 0.21664 1.90631e-06 1.22838e-06 2.718 ||| 0-1 ||| 127 524574 +los ||| the men of ||| 0.333333 0.169465 7.62523e-06 3.7251e-05 2.718 ||| 0-0 0-1 ||| 12 524574 +los ||| the men ||| 0.0319149 0.169465 1.71568e-05 0.000685215 2.718 ||| 0-0 0-1 ||| 282 524574 +los ||| the mention of ||| 0.0344828 0.122289 1.90631e-06 2.26668e-06 2.718 ||| 0-0 ||| 29 524574 +los ||| the mention ||| 0.0232558 0.122289 1.90631e-06 4.16946e-05 2.718 ||| 0-0 ||| 43 524574 +los ||| the mercy of the ||| 0.02 0.0821857 1.90631e-06 2.191e-09 2.718 ||| 0-0 0-2 0-3 ||| 50 524574 +los ||| the mercy ||| 0.0134228 0.122289 3.81262e-06 1.54424e-06 2.718 ||| 0-0 ||| 149 524574 +los ||| the mere ||| 0.0242424 0.122289 7.62523e-06 9.09387e-06 2.718 ||| 0-0 ||| 165 524574 +los ||| the mess made ||| 0.2 0.122289 1.90631e-06 3.23488e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| the mess ||| 0.025641 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 39 524574 +los ||| the message that ||| 0.00309598 0.122289 1.90631e-06 3.47798e-07 2.718 ||| 0-0 ||| 323 524574 +los ||| the message ||| 0.00143781 0.122289 3.81262e-06 2.06757e-05 2.718 ||| 0-0 ||| 1391 524574 +los ||| the messages ||| 0.00847458 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 118 524574 +los ||| the method according to which ||| 1 0.122289 1.90631e-06 1.20637e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the method according to ||| 1 0.122289 1.90631e-06 1.42016e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the method according ||| 1 0.122289 1.90631e-06 1.59823e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the method ||| 0.00145773 0.122289 1.90631e-06 1.80591e-05 2.718 ||| 0-0 ||| 686 524574 +los ||| the methods on offer through the Internet ||| 1 0.122289 1.90631e-06 5.08847e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| the methods on offer through the ||| 1 0.122289 1.90631e-06 2.94131e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| the methods ||| 0.00220264 0.139605 1.90631e-06 0.000332398 2.718 ||| 0-0 0-1 ||| 454 524574 +los ||| the micro-organisms ||| 1 0.171534 1.90631e-06 7.07778e-06 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the middle of the ||| 0.0133333 0.122289 3.81262e-06 2.93487e-08 2.718 ||| 0-0 ||| 150 524574 +los ||| the middle of ||| 0.00465116 0.122289 3.81262e-06 4.78055e-07 2.718 ||| 0-0 ||| 430 524574 +los ||| the middle ||| 0.0034904 0.122289 3.81262e-06 8.7936e-06 2.718 ||| 0-0 ||| 573 524574 +los ||| the migrants ' ||| 1 0.181536 1.90631e-06 1.97174e-07 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| the migrants ||| 0.0227273 0.220457 1.90631e-06 0.000259004 2.718 ||| 0-0 0-1 ||| 44 524574 +los ||| the military review panels , ||| 0.5 0.122289 1.90631e-06 1.49124e-16 2.718 ||| 0-0 ||| 2 524574 +los ||| the military review panels ||| 0.5 0.122289 1.90631e-06 1.25047e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| the military review ||| 0.5 0.122289 1.90631e-06 3.90771e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the military ||| 0.00214592 0.122289 1.90631e-06 1.03378e-05 2.718 ||| 0-0 ||| 466 524574 +los ||| the mill ||| 0.166667 0.122289 5.71893e-06 1.37266e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| the minds of the ||| 0.037037 0.122289 1.90631e-06 6.85757e-08 2.718 ||| 0-0 ||| 27 524574 +los ||| the minds of those ||| 0.0769231 0.203497 1.90631e-06 1.86515e-08 2.718 ||| 0-0 0-3 ||| 13 524574 +los ||| the minds of ||| 0.0487805 0.122289 1.14379e-05 1.11702e-06 2.718 ||| 0-0 ||| 123 524574 +los ||| the minds ||| 0.0512821 0.122289 1.52505e-05 2.0547e-05 2.718 ||| 0-0 ||| 156 524574 +los ||| the minimum of ||| 0.0416667 0.122289 1.90631e-06 6.55286e-07 2.718 ||| 0-0 ||| 24 524574 +los ||| the minimum ||| 0.00298507 0.122289 1.90631e-06 1.20537e-05 2.718 ||| 0-0 ||| 335 524574 +los ||| the minor ||| 0.0285714 0.122289 1.90631e-06 5.57643e-06 2.718 ||| 0-0 ||| 35 524574 +los ||| the minority ||| 0.0046729 0.0988548 1.90631e-06 0.000127186 2.718 ||| 0-0 0-1 ||| 214 524574 +los ||| the misleading headings ||| 0.25 0.122289 1.90631e-06 5.04024e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| the misleading ||| 0.0625 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| the missing pieces ||| 0.333333 0.122289 1.90631e-06 1.40217e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the missing ||| 0.05 0.122289 3.81262e-06 6.17697e-06 2.718 ||| 0-0 ||| 40 524574 +los ||| the misuse of ||| 0.00980392 0.122289 1.90631e-06 9.32791e-08 2.718 ||| 0-0 ||| 102 524574 +los ||| the misuse ||| 0.00793651 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 126 524574 +los ||| the mix of ||| 0.0714286 0.122289 1.90631e-06 1.25927e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| the mix ||| 0.0285714 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 35 524574 +los ||| the mixed ||| 0.142857 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| the mobility ||| 0.00211864 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 472 524574 +los ||| the models already ||| 1 0.133333 1.90631e-06 5.03221e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| the models ||| 0.0188679 0.133333 1.90631e-06 1.08663e-05 2.718 ||| 0-1 ||| 53 524574 +los ||| the modern age have their origins ||| 1 0.0676425 1.90631e-06 7.48455e-20 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the modern age have their ||| 1 0.0676425 1.90631e-06 1.38603e-14 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the modern age have ||| 1 0.0676425 1.90631e-06 1.19578e-11 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the modern age ||| 0.0555556 0.0676425 1.90631e-06 9.99833e-10 2.718 ||| 0-0 0-1 ||| 18 524574 +los ||| the modern ||| 0.0147059 0.0676425 1.90631e-06 1.62574e-05 2.718 ||| 0-0 0-1 ||| 68 524574 +los ||| the modernisation work ||| 1 0.122289 1.90631e-06 8.68894e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the modernisation ||| 0.00290698 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 344 524574 +los ||| the modes of ||| 0.05 0.122289 1.90631e-06 1.16599e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| the modes ||| 0.037037 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| the moment , has addressed to ||| 1 0.122289 1.90631e-06 2.26624e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the moment , has addressed ||| 1 0.122289 1.90631e-06 2.5504e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the moment , has ||| 0.166667 0.122289 1.90631e-06 4.7582e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| the moment , ||| 0.00151515 0.122289 3.81262e-06 9.24372e-06 2.718 ||| 0-0 ||| 1320 524574 +los ||| the moment and ||| 0.012987 0.122289 1.90631e-06 9.70913e-07 2.718 ||| 0-0 ||| 77 524574 +los ||| the moment by ||| 0.125 0.122289 1.90631e-06 4.06948e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the moment is a ||| 0.0714286 0.122289 1.90631e-06 1.07682e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| the moment is ||| 0.00617284 0.122289 1.90631e-06 2.42932e-06 2.718 ||| 0-0 ||| 162 524574 +los ||| the moment it is ||| 0.0294118 0.122289 1.90631e-06 4.32012e-08 2.718 ||| 0-0 ||| 34 524574 +los ||| the moment it ||| 0.0540541 0.122289 3.81262e-06 1.37842e-06 2.718 ||| 0-0 ||| 37 524574 +los ||| the moment ||| 0.00262203 0.122289 2.4782e-05 7.75124e-05 2.718 ||| 0-0 ||| 4958 524574 +los ||| the monetary ||| 0.0588235 0.122289 3.81262e-06 6.17697e-06 2.718 ||| 0-0 ||| 34 524574 +los ||| the money for these activities ||| 1 0.0240362 1.90631e-06 1.49402e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| the money for these ||| 0.2 0.0240362 1.90631e-06 1.87928e-10 2.718 ||| 0-3 ||| 5 524574 +los ||| the money remaining ||| 0.333333 0.122289 1.90631e-06 2.29199e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the money ||| 0.00258956 0.122289 1.14379e-05 7.00915e-05 2.718 ||| 0-0 ||| 2317 524574 +los ||| the monitoring ||| 0.00364964 0.122289 3.81262e-06 1.63432e-05 2.718 ||| 0-0 ||| 548 524574 +los ||| the more acceptable ||| 0.5 0.122289 1.90631e-06 3.17393e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the more powerful ||| 0.0833333 0.122289 1.90631e-06 1.34206e-08 2.718 ||| 0-0 ||| 12 524574 +los ||| the more so ||| 0.00568182 0.122289 1.90631e-06 2.22342e-06 2.718 ||| 0-0 ||| 176 524574 +los ||| the more than ||| 0.0117647 0.122289 1.90631e-06 2.9927e-07 2.718 ||| 0-0 ||| 85 524574 +los ||| the more the ||| 0.111111 0.122289 5.71893e-06 6.01399e-05 2.718 ||| 0-2 ||| 27 524574 +los ||| the more ||| 0.00933821 0.122289 4.38451e-05 0.000979608 2.718 ||| 0-0 ||| 2463 524574 +los ||| the most European of all the ||| 1 0.053303 1.90631e-06 5.00053e-13 2.718 ||| 0-0 0-1 0-3 0-4 0-5 ||| 1 524574 +los ||| the most common kind ||| 1 0.122289 1.90631e-06 2.08992e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the most common ||| 0.0588235 0.122289 1.90631e-06 4.28262e-08 2.718 ||| 0-0 ||| 17 524574 +los ||| the most commonly ||| 1 0.122289 1.90631e-06 1.00113e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the most dangerous ||| 0.0166667 0.122289 1.90631e-06 4.13431e-09 2.718 ||| 0-0 ||| 60 524574 +los ||| the most hopeful ||| 0.333333 0.122289 1.90631e-06 3.33711e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the most important road ||| 0.333333 0.122289 1.90631e-06 6.34368e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| the most important ||| 0.00190597 0.122289 5.71893e-06 7.11175e-08 2.718 ||| 0-0 ||| 1574 524574 +los ||| the most monstrous thing he has said ||| 1 0.122289 1.90631e-06 4.99979e-23 2.718 ||| 0-0 ||| 1 524574 +los ||| the most monstrous thing he has ||| 1 0.122289 1.90631e-06 1.21561e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the most monstrous thing he ||| 1 0.122289 1.90631e-06 2.36155e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the most monstrous thing ||| 1 0.122289 1.90631e-06 2.70602e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the most monstrous ||| 1 0.122289 1.90631e-06 7.4158e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the most notorious ||| 0.333333 0.122289 1.90631e-06 5.37645e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the most obvious ||| 0.0555556 0.122289 1.90631e-06 7.73097e-09 2.718 ||| 0-0 ||| 18 524574 +los ||| the most of the ||| 0.0136986 0.122289 1.90631e-06 6.18756e-07 2.718 ||| 0-3 ||| 73 524574 +los ||| the most of ||| 0.0119048 0.122289 3.81262e-06 1.00788e-05 2.718 ||| 0-0 ||| 168 524574 +los ||| the most part , ||| 0.00833333 0.122289 1.90631e-06 2.63586e-08 2.718 ||| 0-0 ||| 120 524574 +los ||| the most part ||| 0.00343643 0.122289 1.90631e-06 2.21028e-07 2.718 ||| 0-0 ||| 291 524574 +los ||| the most precious and ||| 1 0.122289 1.90631e-06 1.16112e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the most precious ||| 0.111111 0.122289 1.90631e-06 9.26975e-10 2.718 ||| 0-0 ||| 9 524574 +los ||| the most progress ||| 0.25 0.122289 1.90631e-06 2.44165e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the most serious ||| 0.00653595 0.122289 1.90631e-06 2.13575e-08 2.718 ||| 0-0 ||| 153 524574 +los ||| the most varied ||| 0.1 0.122289 1.90631e-06 7.4158e-10 2.718 ||| 0-0 ||| 10 524574 +los ||| the most ||| 0.0093147 0.122289 0.000106753 0.000185395 2.718 ||| 0-0 ||| 6012 524574 +los ||| the mother and ||| 0.05 0.122289 1.90631e-06 4.24472e-08 2.718 ||| 0-0 ||| 20 524574 +los ||| the mother ||| 0.00546448 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 183 524574 +los ||| the motion ||| 0.00116686 0.122289 5.71893e-06 3.24291e-05 2.718 ||| 0-0 ||| 2571 524574 +los ||| the motions ||| 0.00574713 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 174 524574 +los ||| the motor ||| 0.0263158 0.104238 1.90631e-06 6.09118e-05 2.718 ||| 0-0 0-1 ||| 38 524574 +los ||| the motorway ||| 0.0204082 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 49 524574 +los ||| the movement of ||| 0.00217865 0.122289 1.90631e-06 1.02374e-06 2.718 ||| 0-0 ||| 459 524574 +los ||| the movement ||| 0.00170358 0.122289 1.90631e-06 1.88312e-05 2.718 ||| 0-0 ||| 587 524574 +los ||| the much ||| 0.0169492 0.122289 1.90631e-06 0.000430543 2.718 ||| 0-0 ||| 59 524574 +los ||| the much-needed ||| 0.0196078 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 51 524574 +los ||| the mullahs ||| 0.04 0.17052 1.90631e-06 5.83381e-06 2.718 ||| 0-0 0-1 ||| 25 524574 +los ||| the multiannual ||| 0.0666667 0.0616491 1.90631e-06 4.28956e-07 2.718 ||| 0-0 0-1 ||| 15 524574 +los ||| the multilateral ||| 0.0333333 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| the municipal dust ||| 0.333333 0.122289 1.90631e-06 1.06982e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| the municipal ||| 0.037037 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| the name of the Lisbon Strategy that ||| 1 0.122289 1.90631e-06 2.08166e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| the name of the Lisbon Strategy ||| 0.5 0.122289 1.90631e-06 1.23749e-17 2.718 ||| 0-3 ||| 2 524574 +los ||| the name of the Lisbon ||| 1 0.122289 1.90631e-06 2.87789e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| the name of the state ||| 1 0.122289 1.90631e-06 3.16067e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the name of the ||| 0.0070922 0.122289 5.71893e-06 1.25126e-07 2.718 ||| 0-0 ||| 423 524574 +los ||| the name of ||| 0.00160772 0.122289 3.81262e-06 2.03815e-06 2.718 ||| 0-0 ||| 1244 524574 +los ||| the name ||| 0.00298507 0.122289 9.53154e-06 3.74908e-05 2.718 ||| 0-0 ||| 1675 524574 +los ||| the nasty ||| 0.333333 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| the nation 's ||| 0.2 0.0349814 1.90631e-06 5.26624e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| the nation state ||| 0.0212766 0.122289 1.90631e-06 1.51696e-09 2.718 ||| 0-0 ||| 47 524574 +los ||| the nation ||| 0.0175439 0.122289 5.71893e-06 6.00539e-06 2.718 ||| 0-0 ||| 171 524574 +los ||| the national , ||| 0.0833333 0.122289 1.90631e-06 6.57342e-06 2.718 ||| 0-0 ||| 12 524574 +los ||| the national parliaments . ||| 0.0037037 0.269224 1.90631e-06 3.40819e-11 2.718 ||| 0-2 ||| 270 524574 +los ||| the national parliaments ||| 0.00131926 0.195756 3.81262e-06 7.86189e-08 2.718 ||| 0-0 0-2 ||| 1516 524574 +los ||| the national ||| 0.0415094 0.0676372 4.19388e-05 0.000183508 2.718 ||| 0-0 0-1 ||| 530 524574 +los ||| the nations ||| 0.00208768 0.122289 1.90631e-06 6.64882e-06 2.718 ||| 0-0 ||| 479 524574 +los ||| the native ||| 0.333333 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| the natural ||| 0.0147059 0.122289 1.90631e-06 1.18821e-05 2.718 ||| 0-0 ||| 68 524574 +los ||| the nature of the ||| 0.00226757 0.122289 1.90631e-06 2.02434e-07 2.718 ||| 0-3 ||| 441 524574 +los ||| the nature of ||| 0.00274348 0.122289 3.81262e-06 3.29742e-06 2.718 ||| 0-0 ||| 729 524574 +los ||| the nature ||| 0.00374883 0.122289 7.62523e-06 6.06544e-05 2.718 ||| 0-0 ||| 1067 524574 +los ||| the near collapse ||| 0.333333 0.122289 1.90631e-06 1.74877e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the near future . ||| 0.002849 0.122289 1.90631e-06 1.35278e-11 2.718 ||| 0-0 ||| 351 524574 +los ||| the near future ||| 0.00205973 0.122289 3.81262e-06 4.46609e-09 2.718 ||| 0-0 ||| 971 524574 +los ||| the near ||| 0.0217391 0.122289 5.71893e-06 1.68151e-05 2.718 ||| 0-0 ||| 138 524574 +los ||| the nearest ||| 0.1 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the necessary funding ||| 0.012987 0.122289 1.90631e-06 5.88275e-09 2.718 ||| 0-0 ||| 77 524574 +los ||| the necessary pressure ||| 0.0454545 0.122289 1.90631e-06 6.63326e-09 2.718 ||| 0-0 ||| 22 524574 +los ||| the necessary transparency ||| 0.0277778 0.122289 1.90631e-06 1.51208e-09 2.718 ||| 0-0 ||| 36 524574 +los ||| the necessary ||| 0.0227973 0.122289 7.05334e-05 0.00011037 2.718 ||| 0-0 ||| 1623 524574 +los ||| the necessity ||| 0.00184843 0.122289 1.90631e-06 7.12067e-06 2.718 ||| 0-0 ||| 541 524574 +los ||| the need for the ||| 0.00167504 0.0820379 1.90631e-06 1.48771e-07 2.718 ||| 0-0 0-2 0-3 ||| 597 524574 +los ||| the need for ||| 0.000143287 0.122289 1.90631e-06 3.02286e-06 2.718 ||| 0-0 ||| 6979 524574 +los ||| the need to carry out ||| 0.05 0.122289 1.90631e-06 2.45648e-11 2.718 ||| 0-0 ||| 20 524574 +los ||| the need to carry ||| 0.0454545 0.122289 1.90631e-06 6.41311e-09 2.718 ||| 0-0 ||| 22 524574 +los ||| the need to ||| 0.000133245 0.122289 1.90631e-06 3.49488e-05 2.718 ||| 0-0 ||| 7505 524574 +los ||| the need ||| 0.000920447 0.122289 2.66883e-05 0.00039331 2.718 ||| 0-0 ||| 15210 524574 +los ||| the needs of ||| 0.0019305 0.122289 5.71893e-06 4.62431e-06 2.718 ||| 0-0 ||| 1554 524574 +los ||| the needs ||| 0.00179292 0.122289 7.62523e-06 8.5062e-05 2.718 ||| 0-0 ||| 2231 524574 +los ||| the negative , ||| 0.25 0.122289 1.90631e-06 1.19703e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| the negative ||| 0.018018 0.122289 3.81262e-06 1.00376e-05 2.718 ||| 0-0 ||| 111 524574 +los ||| the negotiation process ||| 0.00884956 0.122289 1.90631e-06 1.24698e-09 2.718 ||| 0-0 ||| 113 524574 +los ||| the negotiation ||| 0.00235849 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-0 ||| 424 524574 +los ||| the neighbouring ||| 0.12766 0.145603 1.14379e-05 0.000182692 2.718 ||| 0-0 0-1 ||| 47 524574 +los ||| the net result will be ||| 0.1 0.122289 1.90631e-06 5.48842e-13 2.718 ||| 0-0 ||| 10 524574 +los ||| the net result will ||| 0.142857 0.122289 1.90631e-06 3.02844e-11 2.718 ||| 0-0 ||| 7 524574 +los ||| the net result ||| 0.0416667 0.122289 1.90631e-06 3.50061e-09 2.718 ||| 0-0 ||| 24 524574 +los ||| the net ||| 0.0192308 0.122289 3.81262e-06 6.64882e-06 2.718 ||| 0-0 ||| 104 524574 +los ||| the network , ||| 0.0181818 0.122289 1.90631e-06 1.26865e-06 2.718 ||| 0-0 ||| 55 524574 +los ||| the network ||| 0.00162602 0.122289 1.90631e-06 1.06381e-05 2.718 ||| 0-0 ||| 615 524574 +los ||| the networks ||| 0.00352113 0.122289 1.90631e-06 5.23327e-06 2.718 ||| 0-0 ||| 284 524574 +los ||| the new Treaty comes to be debated ||| 1 0.122289 1.90631e-06 1.17278e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the new Treaty comes to be ||| 1 0.122289 1.90631e-06 1.41299e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the new Treaty comes to ||| 1 0.122289 1.90631e-06 7.79669e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the new Treaty comes ||| 1 0.122289 1.90631e-06 8.77431e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the new Treaty ||| 0.00347222 0.122289 1.90631e-06 2.19467e-08 2.718 ||| 0-0 ||| 288 524574 +los ||| the new framework agreements ||| 0.5 0.199336 1.90631e-06 1.37794e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| the new text ||| 0.0153846 0.122289 1.90631e-06 2.21519e-08 2.718 ||| 0-0 ||| 65 524574 +los ||| the new ||| 0.00190495 0.122289 7.4346e-05 0.000256387 2.718 ||| 0-0 ||| 20473 524574 +los ||| the newly independent ||| 0.2 0.122289 1.90631e-06 7.56679e-11 2.718 ||| 0-0 ||| 5 524574 +los ||| the newly industrialized ||| 0.5 0.113031 1.90631e-06 3.30468e-11 2.718 ||| 0-0 0-2 ||| 2 524574 +los ||| the newly ||| 0.0164835 0.122289 5.71893e-06 3.08849e-06 2.718 ||| 0-0 ||| 182 524574 +los ||| the news , ||| 0.03125 0.122289 1.90631e-06 1.85693e-06 2.718 ||| 0-0 ||| 32 524574 +los ||| the news of ||| 0.0238095 0.122289 1.90631e-06 8.46508e-07 2.718 ||| 0-0 ||| 42 524574 +los ||| the news ||| 0.00990099 0.122289 7.62523e-06 1.55711e-05 2.718 ||| 0-0 ||| 404 524574 +los ||| the next ' Prestige ' oil-tanker disaster ||| 1 0.122289 1.90631e-06 1.31747e-26 2.718 ||| 0-0 ||| 1 524574 +los ||| the next ' Prestige ' oil-tanker ||| 1 0.122289 1.90631e-06 5.22807e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| the next ' Prestige ' ||| 1 0.122289 1.90631e-06 1.30702e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the next ' Prestige ||| 1 0.122289 1.90631e-06 3.80511e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the next ' ||| 0.333333 0.122289 1.90631e-06 1.52204e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the next three ||| 0.00735294 0.122289 1.90631e-06 2.8049e-09 2.718 ||| 0-0 ||| 136 524574 +los ||| the next twelve months ||| 0.111111 0.122289 1.90631e-06 1.96431e-15 2.718 ||| 0-0 ||| 9 524574 +los ||| the next twelve ||| 0.111111 0.122289 1.90631e-06 4.87423e-11 2.718 ||| 0-0 ||| 9 524574 +los ||| the next we go ||| 0.5 0.122289 1.90631e-06 2.94174e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the next we ||| 0.333333 0.122289 1.90631e-06 5.03034e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the next ||| 0.00111218 0.122289 4.19388e-05 4.43112e-05 2.718 ||| 0-0 ||| 19781 524574 +los ||| the nineteen ||| 0.166667 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the noise ||| 0.008 0.122289 1.90631e-06 5.8767e-06 2.718 ||| 0-0 ||| 125 524574 +los ||| the non obligatory ||| 1 0.122289 1.90631e-06 1.45159e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the non ||| 0.333333 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| the non-Member ||| 0.5 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the non-native ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the nonsensical ||| 0.166667 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the normal process ||| 0.5 0.122289 1.90631e-06 3.04409e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the normal ||| 0.0547945 0.122289 7.62523e-06 7.12067e-06 2.718 ||| 0-0 ||| 73 524574 +los ||| the not ||| 0.0740741 0.122289 3.81262e-06 0.0014645 2.718 ||| 0-0 ||| 27 524574 +los ||| the notion of ||| 0.00223214 0.122289 1.90631e-06 5.78331e-07 2.718 ||| 0-0 ||| 448 524574 +los ||| the notion ||| 0.00598086 0.122289 9.53154e-06 1.06381e-05 2.718 ||| 0-0 ||| 836 524574 +los ||| the now ||| 0.0204082 0.122289 1.90631e-06 0.000883607 2.718 ||| 0-0 ||| 49 524574 +los ||| the nth degree ||| 1 0.122289 1.90631e-06 4.15873e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the nth ||| 0.142857 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| the nuclear powers ||| 0.0434783 0.122289 1.90631e-06 8.2264e-10 2.718 ||| 0-0 ||| 23 524574 +los ||| the nuclear situation in Europe ||| 0.5 0.122289 1.90631e-06 9.30734e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the nuclear situation in ||| 0.5 0.122289 1.90631e-06 1.83939e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the nuclear situation ||| 0.25 0.122289 1.90631e-06 8.5935e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the nuclear ||| 0.0246914 0.122289 3.81262e-06 1.66864e-05 2.718 ||| 0-0 ||| 81 524574 +los ||| the nucleus is removed ||| 1 0.122289 1.90631e-06 6.69913e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the nucleus is ||| 1 0.122289 1.90631e-06 1.47884e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the nucleus ||| 0.0344828 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 29 524574 +los ||| the number employed on a ||| 0.125 0.122289 1.90631e-06 1.81294e-12 2.718 ||| 0-0 ||| 8 524574 +los ||| the number employed on ||| 0.125 0.122289 1.90631e-06 4.09003e-11 2.718 ||| 0-0 ||| 8 524574 +los ||| the number employed ||| 0.111111 0.122289 1.90631e-06 6.11273e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| the number of cases ||| 0.0102041 0.122289 1.90631e-06 1.4781e-09 2.718 ||| 0-0 ||| 98 524574 +los ||| the number of live ||| 1 0.122289 1.90631e-06 1.16309e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the number of smokers in ||| 1 0.352941 1.90631e-06 3.71147e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| the number of smokers ||| 0.142857 0.352941 1.90631e-06 1.73397e-10 2.718 ||| 0-3 ||| 7 524574 +los ||| the number of ||| 0.00951117 0.122289 8.19713e-05 1.15386e-05 2.718 ||| 0-0 ||| 4521 524574 +los ||| the number ||| 0.0120342 0.122289 0.000118191 0.000212248 2.718 ||| 0-0 ||| 5152 524574 +los ||| the numbers ||| 0.00578035 0.122289 3.81262e-06 2.0976e-05 2.718 ||| 0-0 ||| 346 524574 +los ||| the numerous ||| 0.00603622 0.122289 5.71893e-06 7.54963e-06 2.718 ||| 0-0 ||| 497 524574 +los ||| the nuts and ||| 0.285714 0.122289 3.81262e-06 1.18207e-08 2.718 ||| 0-0 ||| 7 524574 +los ||| the nuts ||| 0.214286 0.122289 5.71893e-06 9.43704e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| the objections raised ||| 0.0666667 0.122289 1.90631e-06 3.55794e-10 2.718 ||| 0-0 ||| 15 524574 +los ||| the objections ||| 0.00719424 0.122289 1.90631e-06 3.08849e-06 2.718 ||| 0-0 ||| 139 524574 +los ||| the objective of peace and ||| 0.333333 0.122289 1.90631e-06 8.14884e-13 2.718 ||| 0-0 ||| 3 524574 +los ||| the objective of peace ||| 0.5 0.122289 1.90631e-06 6.50559e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the objective of ||| 0.000649773 0.122289 1.90631e-06 1.56009e-06 2.718 ||| 0-0 ||| 1539 524574 +los ||| the objective ||| 0.000374252 0.122289 1.90631e-06 2.86972e-05 2.718 ||| 0-0 ||| 2672 524574 +los ||| the objectives also being ||| 1 0.122289 1.90631e-06 2.88426e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the objectives also ||| 1 0.122289 1.90631e-06 1.01351e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the objectives of ||| 0.000816327 0.122289 1.90631e-06 1.09137e-06 2.718 ||| 0-0 ||| 1225 524574 +los ||| the objectives ||| 0.00320326 0.0907407 2.09694e-05 0.000334886 2.718 ||| 0-0 0-1 ||| 3434 524574 +los ||| the observations ||| 0.00813008 0.122289 1.90631e-06 4.63273e-06 2.718 ||| 0-0 ||| 123 524574 +los ||| the obstacles ||| 0.00238095 0.131217 1.90631e-06 0.000184751 2.718 ||| 0-0 0-1 ||| 420 524574 +los ||| the obvious purpose ||| 0.5 0.122289 1.90631e-06 3.21796e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the obvious ||| 0.0176991 0.122289 7.62523e-06 1.78875e-05 2.718 ||| 0-0 ||| 226 524574 +los ||| the occasion of the arrival ||| 1 0.122289 1.90631e-06 5.04053e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the occasion of the ||| 0.00625 0.122289 1.90631e-06 7.00074e-08 2.718 ||| 0-0 ||| 160 524574 +los ||| the occasion of ||| 0.00990099 0.122289 3.81262e-06 1.14034e-06 2.718 ||| 0-0 ||| 202 524574 +los ||| the occasion ||| 0.00247525 0.122289 1.90631e-06 2.0976e-05 2.718 ||| 0-0 ||| 404 524574 +los ||| the occupied ||| 0.1 0.122289 3.81262e-06 3.68902e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| the occurrence of these ||| 0.5 0.122289 1.90631e-06 3.38589e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the occurrence of ||| 0.016129 0.122289 1.90631e-06 3.26477e-07 2.718 ||| 0-0 ||| 62 524574 +los ||| the occurrence ||| 0.030303 0.122289 3.81262e-06 6.00539e-06 2.718 ||| 0-0 ||| 66 524574 +los ||| the odds ||| 0.0243902 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-0 ||| 41 524574 +los ||| the of the ||| 0.0833333 0.122289 1.90631e-06 0.0100032 2.718 ||| 0-0 0-2 ||| 12 524574 +los ||| the official death toll ||| 0.333333 0.122289 1.90631e-06 4.53036e-15 2.718 ||| 0-0 ||| 3 524574 +los ||| the official death ||| 0.5 0.122289 1.90631e-06 9.06072e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the official ||| 0.0136054 0.122289 3.81262e-06 1.66864e-05 2.718 ||| 0-0 ||| 147 524574 +los ||| the officials ||| 0.00373134 0.171649 1.90631e-06 0.000337803 2.718 ||| 0-0 0-1 ||| 268 524574 +los ||| the oil ||| 0.00769231 0.122289 1.90631e-06 1.49706e-05 2.718 ||| 0-0 ||| 130 524574 +los ||| the old , ||| 0.0333333 0.122289 1.90631e-06 3.93894e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| the old ||| 0.00427579 0.122289 1.52505e-05 3.30296e-05 2.718 ||| 0-0 ||| 1871 524574 +los ||| the older ||| 0.025641 0.122289 3.81262e-06 2.9169e-06 2.718 ||| 0-0 ||| 78 524574 +los ||| the olive ||| 0.0333333 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| the on-the-spot ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the one discussed by ||| 1 0.122289 1.90631e-06 4.92797e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the one discussed ||| 0.2 0.122289 1.90631e-06 9.38642e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| the one hand , and the ||| 0.00854701 0.122289 1.90631e-06 4.5435e-10 2.718 ||| 0-0 0-5 ||| 117 524574 +los ||| the one hand , the ||| 0.00704225 0.122289 3.81262e-06 5.19134e-09 2.718 ||| 0-0 ||| 284 524574 +los ||| the one hand , ||| 0.000464037 0.122289 1.90631e-06 8.45608e-08 2.718 ||| 0-0 ||| 2155 524574 +los ||| the one hand and the ||| 0.028169 0.122289 3.81262e-06 5.45271e-10 2.718 ||| 0-0 ||| 71 524574 +los ||| the one hand and ||| 0.0116732 0.122289 5.71893e-06 8.88183e-09 2.718 ||| 0-0 ||| 257 524574 +los ||| the one hand those ||| 1 0.203497 1.90631e-06 1.18399e-08 2.718 ||| 0-0 0-3 ||| 1 524574 +los ||| the one hand ||| 0.00308166 0.122289 1.90631e-05 7.09077e-07 2.718 ||| 0-0 ||| 3245 524574 +los ||| the one that ||| 0.00340136 0.122289 1.90631e-06 3.00752e-05 2.718 ||| 0-0 ||| 294 524574 +los ||| the one the ||| 0.1 0.122289 1.90631e-06 0.000109762 2.718 ||| 0-0 ||| 10 524574 +los ||| the one we have had over the ||| 1 0.122289 1.90631e-06 7.2021e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the one we have had over ||| 1 0.122289 1.90631e-06 1.17314e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the one we have had ||| 0.166667 0.122289 1.90631e-06 2.43642e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| the one we have ||| 0.0188679 0.122289 1.90631e-06 2.42744e-07 2.718 ||| 0-0 ||| 53 524574 +los ||| the one we ||| 0.00438596 0.122289 1.90631e-06 2.02967e-05 2.718 ||| 0-0 ||| 228 524574 +los ||| the one who ||| 0.0147059 0.122289 1.90631e-06 1.57692e-06 2.718 ||| 0-0 ||| 68 524574 +los ||| the one ||| 0.00634417 0.122289 6.10019e-05 0.00178789 2.718 ||| 0-0 ||| 5044 524574 +los ||| the ones in the ||| 1 0.122289 1.90631e-06 1.24572e-07 2.718 ||| 0-3 ||| 1 524574 +los ||| the ones that we have concluded ||| 1 0.104201 1.90631e-06 1.27824e-14 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the ones that we have ||| 0.333333 0.104201 1.90631e-06 3.59056e-10 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| the ones that we ||| 0.25 0.104201 1.90631e-06 3.00219e-08 2.718 ||| 0-0 0-1 ||| 4 524574 +los ||| the ones that ||| 0.0307692 0.122289 7.62523e-06 1.59468e-06 2.718 ||| 0-0 ||| 130 524574 +los ||| the ones who are ||| 0.047619 0.122289 1.90631e-06 1.26864e-09 2.718 ||| 0-0 ||| 21 524574 +los ||| the ones who enjoy the ||| 1 0.122289 1.90631e-06 1.9968e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the ones who enjoy ||| 1 0.122289 1.90631e-06 3.25255e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the ones who ||| 0.017341 0.122289 5.71893e-06 8.3613e-08 2.718 ||| 0-0 ||| 173 524574 +los ||| the ones with ||| 0.1 0.122289 1.90631e-06 6.06194e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the ones ||| 0.21875 0.104201 0.000226851 0.000157212 2.718 ||| 0-0 0-1 ||| 544 524574 +los ||| the ongoing research ||| 0.25 0.122289 1.90631e-06 8.29207e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| the ongoing ||| 0.0142349 0.122289 7.62523e-06 1.52708e-05 2.718 ||| 0-0 ||| 281 524574 +los ||| the only conditions that ||| 0.5 0.122289 1.90631e-06 9.59804e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the only conditions ||| 0.333333 0.122289 1.90631e-06 5.70578e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the only one ||| 0.00262467 0.122289 1.90631e-06 1.9901e-06 2.718 ||| 0-0 ||| 381 524574 +los ||| the only ones ||| 0.00526316 0.122289 1.90631e-06 1.05521e-07 2.718 ||| 0-0 ||| 190 524574 +los ||| the only thing left to apply is ||| 1 0.122289 1.90631e-06 1.31894e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the only thing left to apply ||| 1 0.122289 1.90631e-06 4.20835e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the only thing left to ||| 0.333333 0.122289 1.90631e-06 2.92449e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| the only thing left ||| 0.25 0.122289 1.90631e-06 3.29119e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| the only thing ||| 0.00215983 0.122289 1.90631e-06 1.74229e-07 2.718 ||| 0-0 ||| 463 524574 +los ||| the only ||| 0.00188476 0.122289 2.66883e-05 0.000477471 2.718 ||| 0-0 ||| 7428 524574 +los ||| the open streets ||| 1 0.122289 1.90631e-06 2.21273e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the open ||| 0.00578035 0.122289 1.90631e-06 6.91478e-05 2.718 ||| 0-0 ||| 173 524574 +los ||| the opening of the ||| 0.00393701 0.122289 1.90631e-06 4.02292e-08 2.718 ||| 0-0 ||| 254 524574 +los ||| the opening of ||| 0.00175439 0.122289 1.90631e-06 6.55286e-07 2.718 ||| 0-0 ||| 570 524574 +los ||| the opening ||| 0.0012285 0.122289 1.90631e-06 1.20537e-05 2.718 ||| 0-0 ||| 814 524574 +los ||| the operation of universal mobile telecommunications systems ||| 1 0.0620985 1.90631e-06 2.61135e-26 2.718 ||| 0-4 ||| 1 524574 +los ||| the operation of universal mobile telecommunications ||| 1 0.0620985 1.90631e-06 4.974e-22 2.718 ||| 0-4 ||| 1 524574 +los ||| the operation of universal mobile ||| 1 0.0620985 1.90631e-06 1.38167e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| the operation of ||| 0.00191939 0.122289 1.90631e-06 1.3269e-06 2.718 ||| 0-0 ||| 521 524574 +los ||| the operation ||| 0.00363967 0.122289 7.62523e-06 2.44076e-05 2.718 ||| 0-0 ||| 1099 524574 +los ||| the operational ||| 0.0526316 0.122289 3.81262e-06 6.47724e-06 2.718 ||| 0-0 ||| 38 524574 +los ||| the opinion of the Committee on Economic ||| 0.0232558 0.122289 1.90631e-06 1.10844e-17 2.718 ||| 0-0 ||| 43 524574 +los ||| the opinion of the Committee on ||| 0.00101112 0.122289 1.90631e-06 3.58719e-13 2.718 ||| 0-0 ||| 989 524574 +los ||| the opinion of the Committee ||| 0.00094518 0.122289 1.90631e-06 5.36122e-11 2.718 ||| 0-0 ||| 1058 524574 +los ||| the opinion of the ||| 0.00123001 0.122289 3.81262e-06 3.51325e-07 2.718 ||| 0-0 ||| 1626 524574 +los ||| the opinion of ||| 0.00113701 0.122289 3.81262e-06 5.72267e-06 2.718 ||| 0-0 ||| 1759 524574 +los ||| the opinion ||| 0.0010983 0.122289 7.62523e-06 0.000105266 2.718 ||| 0-0 ||| 3642 524574 +los ||| the opinions ||| 0.00182482 0.122289 1.90631e-06 9.43704e-06 2.718 ||| 0-0 ||| 548 524574 +los ||| the opportunities for ||| 0.00421941 0.122289 1.90631e-06 1.12752e-07 2.718 ||| 0-0 ||| 237 524574 +los ||| the opportunities ||| 0.00171233 0.122289 3.81262e-06 1.46703e-05 2.718 ||| 0-0 ||| 1168 524574 +los ||| the opportunity of the ||| 0.0384615 0.122289 1.90631e-06 2.57553e-07 2.718 ||| 0-3 ||| 26 524574 +los ||| the opportunity to find ||| 0.0909091 0.122289 1.90631e-06 2.28274e-09 2.718 ||| 0-0 ||| 11 524574 +los ||| the opportunity to ||| 0.000734214 0.122289 5.71893e-06 6.85712e-06 2.718 ||| 0-0 ||| 4086 524574 +los ||| the opportunity ||| 0.00172009 0.122289 2.09694e-05 7.71692e-05 2.718 ||| 0-0 ||| 6395 524574 +los ||| the opposing factions ||| 1 0.122289 1.90631e-06 1.41127e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the opposing ||| 0.0526316 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 19 524574 +los ||| the opposite effect ||| 0.0116279 0.122289 1.90631e-06 3.03372e-09 2.718 ||| 0-0 ||| 86 524574 +los ||| the opposite is true ||| 0.0125 0.122289 1.90631e-06 4.60579e-11 2.718 ||| 0-0 ||| 80 524574 +los ||| the opposite is ||| 0.0175439 0.122289 1.90631e-06 2.85012e-07 2.718 ||| 0-0 ||| 57 524574 +los ||| the opposite ||| 0.00186741 0.122289 3.81262e-06 9.09387e-06 2.718 ||| 0-0 ||| 1071 524574 +los ||| the opposition of the ||| 0.0322581 0.0821857 1.90631e-06 1.55804e-08 2.718 ||| 0-0 0-2 0-3 ||| 31 524574 +los ||| the opt-out ||| 0.00574713 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-0 ||| 174 524574 +los ||| the opt-outs ||| 0.0666667 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| the option for a ||| 1 0.122289 1.90631e-06 6.04997e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the option for ||| 0.0454545 0.122289 1.90631e-06 1.36489e-07 2.718 ||| 0-0 ||| 22 524574 +los ||| the option of ||| 0.00184843 0.122289 1.90631e-06 9.65439e-07 2.718 ||| 0-0 ||| 541 524574 +los ||| the option ||| 0.00391134 0.122289 5.71893e-06 1.77588e-05 2.718 ||| 0-0 ||| 767 524574 +los ||| the order in ||| 0.0175439 0.122289 1.90631e-06 4.89012e-06 2.718 ||| 0-0 ||| 57 524574 +los ||| the order of the ||| 0.0111732 0.0821857 3.81262e-06 3.24146e-07 2.718 ||| 0-0 0-2 0-3 ||| 179 524574 +los ||| the order ||| 0.00547945 0.122289 7.62523e-06 0.000228462 2.718 ||| 0-0 ||| 730 524574 +los ||| the ordinary ||| 0.0149254 0.122289 1.90631e-06 7.8928e-06 2.718 ||| 0-0 ||| 67 524574 +los ||| the organisation of the ||| 0.00662252 0.122289 1.90631e-06 4.83895e-08 2.718 ||| 0-0 ||| 151 524574 +los ||| the organisation of ||| 0.00191571 0.122289 1.90631e-06 7.88209e-07 2.718 ||| 0-0 ||| 522 524574 +los ||| the organisation ||| 0.0018622 0.122289 3.81262e-06 1.44987e-05 2.718 ||| 0-0 ||| 1074 524574 +los ||| the organs ||| 0.0263158 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 38 524574 +los ||| the origin ||| 0.00290698 0.122289 1.90631e-06 1.09813e-05 2.718 ||| 0-0 ||| 344 524574 +los ||| the original investigations ||| 1 0.122289 1.90631e-06 1.07522e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the original proposal from ||| 0.142857 0.122289 1.90631e-06 4.16612e-12 2.718 ||| 0-0 ||| 7 524574 +los ||| the original proposal ||| 0.00331126 0.122289 1.90631e-06 2.58701e-09 2.718 ||| 0-0 ||| 302 524574 +los ||| the original ||| 0.0179211 0.122289 9.53154e-06 1.29545e-05 2.718 ||| 0-0 ||| 279 524574 +los ||| the other , furthermore ||| 0.5 0.122289 1.90631e-06 3.05511e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the other , the ||| 0.015748 0.063069 3.81262e-06 8.91588e-07 2.718 ||| 0-0 0-1 ||| 127 524574 +los ||| the other , we ||| 0.0625 0.122289 1.90631e-06 7.52333e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| the other , ||| 0.00454959 0.122289 9.53154e-06 6.62714e-05 2.718 ||| 0-0 ||| 1099 524574 +los ||| the other EU ||| 0.111111 0.0434857 1.90631e-06 6.58346e-08 2.718 ||| 0-0 0-1 0-2 ||| 9 524574 +los ||| the other case ||| 0.125 0.122289 1.90631e-06 5.94557e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the other countries ||| 0.00224215 0.122289 1.90631e-06 2.11004e-07 2.718 ||| 0-0 ||| 446 524574 +los ||| the other day ||| 0.00487805 0.122289 1.90631e-06 1.42374e-07 2.718 ||| 0-0 ||| 205 524574 +los ||| the other foot ||| 0.333333 0.122289 1.90631e-06 1.23924e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the other hand , to ||| 0.0263158 0.122289 1.90631e-06 2.33548e-09 2.718 ||| 0-0 ||| 38 524574 +los ||| the other hand , ||| 0.000527009 0.122289 3.81262e-06 2.62832e-08 2.718 ||| 0-0 ||| 3795 524574 +los ||| the other hand ||| 0.00115128 0.122289 9.53154e-06 2.20396e-07 2.718 ||| 0-0 ||| 4343 524574 +los ||| the other insurgency ||| 0.166667 0.122289 1.90631e-06 2.22285e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| the other is to ||| 0.0666667 0.122289 1.90631e-06 1.54761e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| the other is ||| 0.0042735 0.122289 1.90631e-06 1.74167e-05 2.718 ||| 0-0 ||| 234 524574 +los ||| the other ones ||| 0.5 0.104201 1.90631e-06 2.03669e-07 2.718 ||| 0-0 0-2 ||| 2 524574 +los ||| the other side ||| 0.0043956 0.122289 3.81262e-06 1.21812e-07 2.718 ||| 0-0 ||| 455 524574 +los ||| the other sides 's ||| 1 0.0537065 1.90631e-06 2.73846e-11 2.718 ||| 0-0 0-1 0-3 ||| 1 524574 +los ||| the other sports ||| 0.333333 0.122289 1.90631e-06 7.77998e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the other those ||| 0.5 0.203497 1.90631e-06 9.27907e-06 2.718 ||| 0-0 0-2 ||| 2 524574 +los ||| the other unknown ||| 1 0.122289 1.90631e-06 2.61185e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the other versions . ||| 0.25 0.122289 1.90631e-06 8.41627e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| the other versions ||| 0.1 0.122289 1.90631e-06 2.77856e-09 2.718 ||| 0-0 ||| 10 524574 +los ||| the other ||| 0.00899325 0.122289 0.000274508 0.000555713 2.718 ||| 0-0 ||| 16012 524574 +los ||| the others for ||| 0.25 0.0975341 1.90631e-06 3.19562e-06 2.718 ||| 0-0 0-1 ||| 4 524574 +los ||| the others ||| 0.0167488 0.0975341 3.24072e-05 0.000415787 2.718 ||| 0-0 0-1 ||| 1015 524574 +los ||| the outbreaks of ||| 0.0526316 0.122289 1.90631e-06 1.00275e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| the outbreaks ||| 0.0869565 0.122289 3.81262e-06 1.84451e-06 2.718 ||| 0-0 ||| 23 524574 +los ||| the outcome of the ||| 0.000923361 0.0821857 1.90631e-06 3.11e-08 2.718 ||| 0-0 0-2 0-3 ||| 1083 524574 +los ||| the outcome ||| 0.000382702 0.122289 1.90631e-06 2.19197e-05 2.718 ||| 0-0 ||| 2613 524574 +los ||| the outside ||| 0.0114286 0.122289 3.81262e-06 1.71154e-05 2.718 ||| 0-0 ||| 175 524574 +los ||| the outstanding balance ||| 1 0.122289 1.90631e-06 3.84516e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the outstanding ||| 0.0175439 0.122289 3.81262e-06 7.12067e-06 2.718 ||| 0-0 ||| 114 524574 +los ||| the overall budgets ||| 0.1 0.122289 1.90631e-06 2.33515e-10 2.718 ||| 0-0 ||| 10 524574 +los ||| the overall ||| 0.0182768 0.122289 1.33442e-05 2.71529e-05 2.718 ||| 0-0 ||| 383 524574 +los ||| the overcoming of ||| 0.1 0.122289 1.90631e-06 6.76274e-08 2.718 ||| 0-0 ||| 10 524574 +los ||| the overcoming ||| 0.111111 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| the own ||| 0.05 0.122289 1.90631e-06 0.00072721 2.718 ||| 0-0 ||| 20 524574 +los ||| the owners of ||| 0.0123457 0.122289 1.90631e-06 8.39512e-08 2.718 ||| 0-0 ||| 81 524574 +los ||| the owners ||| 0.0130719 0.122289 3.81262e-06 1.54424e-06 2.718 ||| 0-0 ||| 153 524574 +los ||| the pace of ||| 0.0046729 0.122289 1.90631e-06 4.52404e-07 2.718 ||| 0-0 ||| 214 524574 +los ||| the pace ||| 0.00303951 0.122289 1.90631e-06 8.32175e-06 2.718 ||| 0-0 ||| 329 524574 +los ||| the package of ||| 0.0046729 0.122289 1.90631e-06 1.10769e-06 2.718 ||| 0-0 ||| 214 524574 +los ||| the package ||| 0.00342466 0.122289 5.71893e-06 2.03754e-05 2.718 ||| 0-0 ||| 876 524574 +los ||| the pact are adopting a ||| 1 0.122289 1.90631e-06 9.59291e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the pact are adopting ||| 1 0.122289 1.90631e-06 2.16418e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the pact are ||| 0.5 0.122289 1.90631e-06 4.42573e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the pact ||| 0.00543478 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-0 ||| 184 524574 +los ||| the pandemic ||| 0.04 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 25 524574 +los ||| the paper ||| 0.00526316 0.122289 1.90631e-06 1.24826e-05 2.718 ||| 0-0 ||| 190 524574 +los ||| the paragraph : ||| 0.5 0.122289 1.90631e-06 2.28267e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the paragraph : ‘ Urges Member States ||| 1 0.122289 1.90631e-06 2.5214e-26 2.718 ||| 0-0 ||| 1 524574 +los ||| the paragraph : ‘ Urges Member ||| 1 0.122289 1.90631e-06 5.28375e-23 2.718 ||| 0-0 ||| 1 524574 +los ||| the paragraph : ‘ Urges ||| 1 0.122289 1.90631e-06 1.02537e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the paragraph : ‘ ||| 1 0.122289 1.90631e-06 2.56343e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the paragraph ||| 0.00483092 0.122289 1.90631e-06 6.77751e-06 2.718 ||| 0-0 ||| 207 524574 +los ||| the paramilitaries ||| 0.0169492 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 59 524574 +los ||| the parent ||| 0.0526316 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| the parlance ||| 0.333333 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the parliamentary ||| 0.03125 0.122289 5.71893e-06 1.34263e-05 2.718 ||| 0-0 ||| 96 524574 +los ||| the part of certain ||| 0.0666667 0.122289 1.90631e-06 7.92352e-09 2.718 ||| 0-0 ||| 15 524574 +los ||| the part of our ||| 0.0952381 0.0497016 7.62523e-06 6.04056e-09 2.718 ||| 0-0 0-2 0-3 ||| 42 524574 +los ||| the part of people in ||| 0.666667 0.122289 3.81262e-06 5.23793e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the part of people ||| 0.4 0.122289 3.81262e-06 2.44712e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| the part of the Member State ||| 1 0.122289 1.90631e-06 1.05718e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the part of the Member ||| 0.142857 0.122289 1.90631e-06 8.79517e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| the part of the country to ||| 1 0.122289 1.90631e-06 5.45837e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the part of the country ||| 0.142857 0.122289 1.90631e-06 6.14279e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| the part of the ||| 0.0415771 0.0821857 0.000110566 7.25585e-07 2.718 ||| 0-0 0-2 0-3 ||| 1395 524574 +los ||| the part of those ||| 0.172414 0.136324 9.53154e-06 2.82442e-08 2.718 ||| 0-0 0-2 0-3 ||| 29 524574 +los ||| the part of ||| 0.0417667 0.122289 0.000165849 2.78018e-05 2.718 ||| 0-0 ||| 2083 524574 +los ||| the part ||| 0.0502948 0.122289 0.000276415 0.000511402 2.718 ||| 0-0 ||| 2883 524574 +los ||| the partial regulation ||| 1 0.122289 1.90631e-06 1.07788e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the partial ||| 0.0357143 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 28 524574 +los ||| the participating ||| 0.0833333 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-0 ||| 12 524574 +los ||| the participation ||| 0.000839631 0.122289 1.90631e-06 1.03378e-05 2.718 ||| 0-0 ||| 1191 524574 +los ||| the particular ||| 0.0419847 0.122289 2.09694e-05 0.00026398 2.718 ||| 0-0 ||| 262 524574 +los ||| the particularly ||| 0.0434783 0.122289 1.90631e-06 7.65687e-05 2.718 ||| 0-0 ||| 23 524574 +los ||| the parties involved ||| 0.00265957 0.122289 1.90631e-06 1.08876e-08 2.718 ||| 0-0 ||| 376 524574 +los ||| the parties required to act ||| 1 0.127492 1.90631e-06 1.72762e-12 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the parties required to ||| 1 0.127492 1.90631e-06 1.01685e-08 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the parties required ||| 1 0.127492 1.90631e-06 1.14435e-07 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the parties ||| 0.0156899 0.127492 6.48145e-05 0.000721076 2.718 ||| 0-0 0-1 ||| 2167 524574 +los ||| the partner ||| 0.0638298 0.122289 5.71893e-06 1.08097e-05 2.718 ||| 0-0 ||| 47 524574 +los ||| the partnership and ||| 0.0333333 0.122289 1.90631e-06 1.16058e-07 2.718 ||| 0-0 ||| 30 524574 +los ||| the partnership ||| 0.00484262 0.122289 3.81262e-06 9.26546e-06 2.718 ||| 0-0 ||| 413 524574 +los ||| the party ||| 0.0077821 0.122289 3.81262e-06 2.93406e-05 2.718 ||| 0-0 ||| 257 524574 +los ||| the past , the ||| 0.0117647 0.122289 1.90631e-06 4.02298e-07 2.718 ||| 0-3 ||| 85 524574 +los ||| the past , ||| 0.00364299 0.122289 7.62523e-06 6.55296e-06 2.718 ||| 0-0 ||| 1098 524574 +los ||| the past to show ||| 1 0.122289 1.90631e-06 6.53793e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the past to ||| 0.0181818 0.122289 1.90631e-06 4.8827e-06 2.718 ||| 0-0 ||| 55 524574 +los ||| the past ||| 0.00282137 0.122289 3.05009e-05 5.49493e-05 2.718 ||| 0-0 ||| 5671 524574 +los ||| the path of human rights ||| 0.5 0.122289 1.90631e-06 2.19387e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the path of human ||| 1 0.122289 1.90631e-06 1.09639e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the path of ||| 0.00511509 0.122289 3.81262e-06 8.88484e-07 2.718 ||| 0-0 ||| 391 524574 +los ||| the path to dialogue rejecting all ||| 1 0.122289 1.90631e-06 1.15672e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the path to dialogue rejecting ||| 1 0.122289 1.90631e-06 2.44788e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the path to dialogue ||| 1 0.122289 1.90631e-06 5.69274e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the path to ||| 0.00361011 0.122289 1.90631e-06 1.45223e-06 2.718 ||| 0-0 ||| 277 524574 +los ||| the path you should ||| 1 0.122289 1.90631e-06 2.33812e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the path you ||| 0.333333 0.122289 1.90631e-06 5.27674e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the path ||| 0.00466418 0.122289 9.53154e-06 1.63432e-05 2.718 ||| 0-0 ||| 1072 524574 +los ||| the patient should ||| 0.25 0.122289 1.90631e-06 7.60282e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the patient ||| 0.00543478 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 184 524574 +los ||| the paying ||| 0.25 0.122289 1.90631e-06 1.44987e-05 2.718 ||| 0-0 ||| 4 524574 +los ||| the payment of ||| 0.0189573 0.122289 7.62523e-06 5.87658e-07 2.718 ||| 0-0 ||| 211 524574 +los ||| the payment ||| 0.0174216 0.122289 9.53154e-06 1.08097e-05 2.718 ||| 0-0 ||| 287 524574 +los ||| the payments , ||| 0.0666667 0.122289 1.90631e-06 1.69323e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| the payments ||| 0.00469484 0.122289 1.90631e-06 1.41985e-05 2.718 ||| 0-0 ||| 213 524574 +los ||| the peace process ||| 0.000976562 0.122289 1.90631e-06 7.6469e-09 2.718 ||| 0-0 ||| 1024 524574 +los ||| the peace ||| 0.00230415 0.122289 1.90631e-06 1.78875e-05 2.718 ||| 0-0 ||| 434 524574 +los ||| the pen ||| 0.1 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| the penniless ||| 1 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the people 's ||| 0.0689655 0.105878 3.81262e-06 6.43337e-06 2.718 ||| 0-0 0-1 ||| 29 524574 +los ||| the people are ||| 0.00943396 0.122289 1.90631e-06 5.72872e-06 2.718 ||| 0-0 ||| 106 524574 +los ||| the people at the ||| 0.0555556 0.105878 1.90631e-06 8.6843e-07 2.718 ||| 0-0 0-1 ||| 18 524574 +los ||| the people at ||| 0.025641 0.105878 1.90631e-06 1.41457e-05 2.718 ||| 0-0 0-1 ||| 39 524574 +los ||| the people back ||| 0.2 0.105878 1.90631e-06 2.27215e-06 2.718 ||| 0-0 0-1 ||| 5 524574 +los ||| the people behind the farmer ||| 1 0.105878 1.90631e-06 7.4329e-14 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the people behind the ||| 0.2 0.105878 1.90631e-06 1.85823e-08 2.718 ||| 0-0 0-1 ||| 5 524574 +los ||| the people behind ||| 0.0769231 0.105878 1.90631e-06 3.02683e-07 2.718 ||| 0-0 0-1 ||| 13 524574 +los ||| the people forced to ||| 1 0.122289 1.90631e-06 2.36527e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the people forced ||| 1 0.122289 1.90631e-06 2.66185e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the people from the ||| 0.0769231 0.0837862 1.90631e-06 2.80398e-07 2.718 ||| 0-0 0-1 0-2 0-3 ||| 13 524574 +los ||| the people in the ||| 0.00452489 0.122289 1.90631e-06 3.46667e-06 2.718 ||| 0-0 0-3 ||| 221 524574 +los ||| the people in ||| 0.00353982 0.122289 3.81262e-06 8.08164e-06 2.718 ||| 0-0 ||| 565 524574 +los ||| the people of the ||| 0.0038835 0.105878 3.81262e-06 1.12746e-05 2.718 ||| 0-0 0-1 ||| 515 524574 +los ||| the people of ||| 0.0393827 0.105878 0.000282134 0.00018365 2.718 ||| 0-0 0-1 ||| 3758 524574 +los ||| the people themselves ||| 0.0204082 0.122289 1.90631e-06 1.62241e-07 2.718 ||| 0-0 ||| 49 524574 +los ||| the people who actually benefit from the ||| 1 0.122289 1.90631e-06 1.78992e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the people who actually benefit from ||| 1 0.122289 1.90631e-06 2.91556e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the people who actually benefit ||| 1 0.122289 1.90631e-06 1.81046e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the people who actually ||| 0.25 0.122289 1.90631e-06 1.37468e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| the people who are ||| 0.015625 0.122289 3.81262e-06 5.05273e-09 2.718 ||| 0-0 ||| 128 524574 +los ||| the people who sell ||| 0.5 0.122289 1.90631e-06 2.16459e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| the people who will be ||| 0.1 0.122289 1.90631e-06 5.22116e-11 2.718 ||| 0-0 ||| 10 524574 +los ||| the people who will ||| 0.111111 0.122289 1.90631e-06 2.88097e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| the people who ||| 0.00541516 0.122289 1.14379e-05 3.33014e-07 2.718 ||| 0-0 ||| 1108 524574 +los ||| the people ||| 0.027027 0.105878 0.0006043 0.00337816 2.718 ||| 0-0 0-1 ||| 11729 524574 +los ||| the peoples of ||| 0.00825472 0.12688 1.33442e-05 1.22662e-05 2.718 ||| 0-0 0-1 ||| 848 524574 +los ||| the peoples ||| 0.00578453 0.12688 1.52505e-05 0.000225631 2.718 ||| 0-0 0-1 ||| 1383 524574 +los ||| the per capita income ||| 0.0909091 0.122289 1.90631e-06 1.50502e-15 2.718 ||| 0-0 ||| 11 524574 +los ||| the per capita ||| 0.5 0.122289 1.90631e-06 6.841e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the per ||| 1 0.122289 1.90631e-06 1.90028e-05 2.718 ||| 0-0 ||| 1 524574 +los ||| the perceived ||| 0.125 0.122289 3.81262e-06 5.70512e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| the percentage ||| 0.00573066 0.122289 3.81262e-06 6.34855e-06 2.718 ||| 0-0 ||| 349 524574 +los ||| the perfect shape ||| 0.2 0.122289 1.90631e-06 2.43947e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| the perfect ||| 0.0294118 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 34 524574 +los ||| the performance targets ||| 1 0.122289 1.90631e-06 2.31748e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the performance ||| 0.00626959 0.122289 3.81262e-06 9.73731e-06 2.718 ||| 0-0 ||| 319 524574 +los ||| the period of the ||| 0.0714286 0.0821857 5.71893e-06 1.06202e-07 2.718 ||| 0-0 0-2 0-3 ||| 42 524574 +los ||| the period of ||| 0.00477327 0.122289 3.81262e-06 4.0693e-06 2.718 ||| 0-0 ||| 419 524574 +los ||| the period ||| 0.00224618 0.122289 9.53154e-06 7.48529e-05 2.718 ||| 0-0 ||| 2226 524574 +los ||| the perpetrators of ||| 0.0209424 0.135124 7.62523e-06 2.63047e-06 2.718 ||| 0-0 0-1 ||| 191 524574 +los ||| the perpetrators ||| 0.0109409 0.122289 9.53154e-06 2.14478e-06 2.718 ||| 0-0 ||| 457 524574 +los ||| the persistence of ||| 0.015625 0.122289 1.90631e-06 3.26477e-08 2.718 ||| 0-0 ||| 64 524574 +los ||| the persistence ||| 0.0106383 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 94 524574 +los ||| the persistent ||| 0.0153846 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 65 524574 +los ||| the person ' s ||| 1 0.0502865 1.90631e-06 3.59597e-12 2.718 ||| 0-0 0-1 0-2 0-3 ||| 1 524574 +los ||| the person who accepts ||| 1 0.122289 1.90631e-06 1.75428e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the person who ||| 0.010582 0.122289 3.81262e-06 4.87301e-08 2.718 ||| 0-0 ||| 189 524574 +los ||| the person ||| 0.00680272 0.122289 1.14379e-05 5.52496e-05 2.718 ||| 0-0 ||| 882 524574 +los ||| the personal fortunes in ||| 1 0.122289 1.90631e-06 1.56087e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the personal fortunes ||| 0.25 0.122289 1.90631e-06 7.29226e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| the personal ||| 0.0526316 0.122289 3.81262e-06 1.82306e-05 2.718 ||| 0-0 ||| 38 524574 +los ||| the persons concerned cause ||| 0.333333 0.122289 1.90631e-06 6.42135e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| the persons concerned ||| 0.0285714 0.122289 1.90631e-06 3.5536e-08 2.718 ||| 0-0 ||| 35 524574 +los ||| the persons ||| 0.0320513 0.122289 9.53154e-06 2.20912e-05 2.718 ||| 0-0 ||| 156 524574 +los ||| the perspectives ||| 0.02 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 50 524574 +los ||| the petty dignitaries ||| 0.25 0.122289 1.90631e-06 6.17697e-13 2.718 ||| 0-0 ||| 4 524574 +los ||| the petty ||| 0.0666667 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| the phones ||| 1 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the phrase ||| 0.00416667 0.122289 1.90631e-06 5.70512e-06 2.718 ||| 0-0 ||| 240 524574 +los ||| the pictures ||| 0.015873 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 63 524574 +los ||| the pieces following ||| 1 0.122289 1.90631e-06 1.24443e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the pieces ||| 0.02 0.122289 1.90631e-06 9.73731e-06 2.718 ||| 0-0 ||| 50 524574 +los ||| the pilot ||| 0.0294118 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 34 524574 +los ||| the pipeline ||| 0.00684932 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 146 524574 +los ||| the place where they are ||| 0.111111 0.122289 1.90631e-06 9.68735e-12 2.718 ||| 0-0 ||| 9 524574 +los ||| the place where they ||| 0.0666667 0.122289 1.90631e-06 6.38473e-10 2.718 ||| 0-0 ||| 15 524574 +los ||| the place where ||| 0.00740741 0.122289 1.90631e-06 1.95611e-07 2.718 ||| 0-0 ||| 135 524574 +los ||| the place ||| 0.0122616 0.122289 1.71568e-05 0.000645579 2.718 ||| 0-0 ||| 734 524574 +los ||| the places where we swim locally , ||| 0.5 0.122289 1.90631e-06 1.07976e-23 2.718 ||| 0-0 ||| 2 524574 +los ||| the places where we swim locally ||| 0.5 0.122289 1.90631e-06 9.05426e-23 2.718 ||| 0-0 ||| 2 524574 +los ||| the places where we swim ||| 0.5 0.122289 1.90631e-06 3.12216e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| the places where we ||| 0.333333 0.122289 1.90631e-06 7.8054e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| the places where ||| 0.0188679 0.122289 1.90631e-06 6.87561e-09 2.718 ||| 0-0 ||| 53 524574 +los ||| the places ||| 0.0252101 0.122289 5.71893e-06 2.26918e-05 2.718 ||| 0-0 ||| 119 524574 +los ||| the plain ||| 0.037037 0.122289 1.90631e-06 6.34855e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| the plan actually ||| 0.5 0.122289 1.90631e-06 1.2944e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the plan ||| 0.00271003 0.122289 3.81262e-06 3.13567e-05 2.718 ||| 0-0 ||| 738 524574 +los ||| the planning ||| 0.00515464 0.122289 1.90631e-06 1.20537e-05 2.718 ||| 0-0 ||| 194 524574 +los ||| the plants to ||| 0.5 0.122289 1.90631e-06 6.70847e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the plants ||| 0.015873 0.122289 1.90631e-06 7.54963e-06 2.718 ||| 0-0 ||| 63 524574 +los ||| the players ||| 0.00564972 0.144694 1.90631e-06 0.000160987 2.718 ||| 0-0 0-1 ||| 177 524574 +los ||| the playing ||| 0.030303 0.122289 1.90631e-06 2.82682e-05 2.718 ||| 0-0 ||| 33 524574 +los ||| the plenary how ||| 0.5 0.122289 1.90631e-06 1.44514e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the plenary ||| 0.00359712 0.122289 3.81262e-06 4.03219e-06 2.718 ||| 0-0 ||| 556 524574 +los ||| the plight of the people of ||| 0.166667 0.122289 1.90631e-06 1.71265e-13 2.718 ||| 0-3 ||| 6 524574 +los ||| the plight of the people ||| 0.0714286 0.122289 1.90631e-06 3.15033e-12 2.718 ||| 0-3 ||| 14 524574 +los ||| the plight of the ||| 0.0113636 0.122289 1.90631e-06 3.57911e-09 2.718 ||| 0-3 ||| 88 524574 +los ||| the plus side ||| 0.111111 0.122289 1.90631e-06 6.76996e-10 2.718 ||| 0-0 ||| 9 524574 +los ||| the plus ||| 0.142857 0.122289 1.90631e-06 3.08849e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| the pockets of ||| 0.0103093 0.122289 1.90631e-06 1.09603e-07 2.718 ||| 0-0 ||| 97 524574 +los ||| the pockets ||| 0.00934579 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 107 524574 +los ||| the point is best dealt with as ||| 1 0.122289 1.90631e-06 1.11282e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the point is best dealt with ||| 1 0.122289 1.90631e-06 1.09053e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the point is best dealt ||| 1 0.122289 1.90631e-06 1.70542e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the point is best ||| 1 0.122289 1.90631e-06 1.62887e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the point is ||| 0.00446429 0.122289 1.90631e-06 1.17608e-05 2.718 ||| 0-0 ||| 224 524574 +los ||| the point of view of the ||| 0.00306748 0.0821857 1.90631e-06 2.61452e-11 2.718 ||| 0-0 0-4 0-5 ||| 326 524574 +los ||| the point of view of ||| 0.0020141 0.122289 3.81262e-06 1.00179e-09 2.718 ||| 0-0 ||| 993 524574 +los ||| the point of view ||| 0.00282752 0.122289 5.71893e-06 1.84274e-08 2.718 ||| 0-0 ||| 1061 524574 +los ||| the point of ||| 0.00494743 0.122289 1.52505e-05 2.04001e-05 2.718 ||| 0-0 ||| 1617 524574 +los ||| the point raised ||| 0.0163934 0.122289 1.90631e-06 4.32289e-08 2.718 ||| 0-0 ||| 61 524574 +los ||| the point where ||| 0.0107527 0.122289 3.81262e-06 1.13701e-07 2.718 ||| 0-0 ||| 186 524574 +los ||| the point ||| 0.00730994 0.122289 5.71893e-05 0.000375251 2.718 ||| 0-0 ||| 4104 524574 +los ||| the points raised were really ||| 1 0.122289 1.90631e-06 5.57021e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the points raised were ||| 0.333333 0.122289 1.90631e-06 1.14992e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| the points raised ||| 0.00961538 0.122289 1.90631e-06 6.41911e-09 2.718 ||| 0-0 ||| 104 524574 +los ||| the points ||| 0.00138408 0.122289 3.81262e-06 5.57214e-05 2.718 ||| 0-0 ||| 1445 524574 +los ||| the police ||| 0.00176523 0.122289 3.81262e-06 7.12067e-06 2.718 ||| 0-0 ||| 1133 524574 +los ||| the policy 's ||| 1 0.122289 1.90631e-06 3.21615e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the policy of ||| 0.00219298 0.122289 3.81262e-06 9.181e-06 2.718 ||| 0-0 ||| 912 524574 +los ||| the policy ||| 0.00325998 0.122289 1.52505e-05 0.00016888 2.718 ||| 0-0 ||| 2454 524574 +los ||| the political groups are ||| 0.05 0.122289 1.90631e-06 7.69081e-11 2.718 ||| 0-0 ||| 20 524574 +los ||| the political groups ||| 0.000898473 0.122289 1.90631e-06 5.06885e-09 2.718 ||| 0-0 ||| 1113 524574 +los ||| the political parties ||| 0.00348432 0.122289 1.90631e-06 5.62014e-09 2.718 ||| 0-0 ||| 287 524574 +los ||| the political prisoners , ||| 0.111111 0.122289 1.90631e-06 1.114e-10 2.718 ||| 0-0 ||| 9 524574 +los ||| the political prisoners ||| 0.0163934 0.122289 1.90631e-06 9.34138e-10 2.718 ||| 0-0 ||| 61 524574 +los ||| the political side ' of Europe . ||| 0.5 0.122289 1.90631e-06 4.8036e-18 2.718 ||| 0-0 ||| 2 524574 +los ||| the political side ' of Europe ||| 0.5 0.122289 1.90631e-06 1.58587e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| the political side ' of ||| 0.5 0.122289 1.90631e-06 3.13413e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| the political side ' ||| 0.5 0.122289 1.90631e-06 5.76509e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the political side ||| 0.03125 0.122289 1.90631e-06 1.67839e-08 2.718 ||| 0-0 ||| 32 524574 +los ||| the political spectrum ||| 0.025974 0.122289 3.81262e-06 5.81922e-10 2.718 ||| 0-0 ||| 77 524574 +los ||| the political ||| 0.0277008 0.122289 3.81262e-05 7.65687e-05 2.718 ||| 0-0 ||| 722 524574 +los ||| the polluters ||| 0.0833333 0.155385 1.90631e-06 1.50135e-05 2.718 ||| 0-0 0-1 ||| 12 524574 +los ||| the polybromodiphenyl ||| 1 0.394478 1.90631e-06 8.15017e-07 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the poor performance ||| 0.166667 0.122289 1.90631e-06 2.87251e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| the poor ||| 0.00104493 0.122289 1.90631e-06 1.26542e-05 2.718 ||| 0-0 ||| 957 524574 +los ||| the poorer and ||| 0.5 0.122289 1.90631e-06 1.34327e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the poorer ||| 0.0212766 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 47 524574 +los ||| the poorest of ||| 0.0172414 0.122289 1.90631e-06 1.7723e-07 2.718 ||| 0-0 ||| 58 524574 +los ||| the poorest regions ||| 0.00632911 0.122289 1.90631e-06 2.6863e-10 2.718 ||| 0-0 ||| 158 524574 +los ||| the poorest ||| 0.00950119 0.122289 7.62523e-06 3.26007e-06 2.718 ||| 0-0 ||| 421 524574 +los ||| the population with the ||| 0.2 0.122289 1.90631e-06 1.03563e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| the population with ||| 0.0434783 0.122289 1.90631e-06 1.68692e-07 2.718 ||| 0-0 ||| 23 524574 +los ||| the population ||| 0.00183486 0.122289 1.14379e-05 2.63808e-05 2.718 ||| 0-0 ||| 3270 524574 +los ||| the populations ||| 0.00299401 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-0 ||| 334 524574 +los ||| the port of ||| 0.00980392 0.122289 1.90631e-06 3.10153e-07 2.718 ||| 0-0 ||| 102 524574 +los ||| the port ||| 0.00495049 0.122289 1.90631e-06 5.70512e-06 2.718 ||| 0-0 ||| 202 524574 +los ||| the portion cofinanced ||| 1 0.122289 1.90631e-06 9.60862e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the portion ||| 0.0833333 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 12 524574 +los ||| the ports located ||| 0.5 0.122289 1.90631e-06 9.99983e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the ports ||| 0.00966184 0.122289 3.81262e-06 4.03219e-06 2.718 ||| 0-0 ||| 207 524574 +los ||| the position is that ||| 0.0625 0.122289 1.90631e-06 7.44709e-08 2.718 ||| 0-0 ||| 16 524574 +los ||| the position is ||| 0.0163934 0.122289 1.90631e-06 4.4271e-06 2.718 ||| 0-0 ||| 61 524574 +los ||| the position of a body ||| 1 0.122289 1.90631e-06 2.91371e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the position of a ||| 0.0454545 0.122289 1.90631e-06 3.40387e-07 2.718 ||| 0-0 ||| 22 524574 +los ||| the position of those ||| 0.0384615 0.136324 1.90631e-06 7.80139e-09 2.718 ||| 0-0 0-2 0-3 ||| 26 524574 +los ||| the position of ||| 0.00180072 0.122289 5.71893e-06 7.6792e-06 2.718 ||| 0-0 ||| 1666 524574 +los ||| the position ||| 0.00213106 0.122289 1.52505e-05 0.000141255 2.718 ||| 0-0 ||| 3754 524574 +los ||| the positions adopted ||| 0.016129 0.122289 1.90631e-06 2.95774e-09 2.718 ||| 0-0 ||| 62 524574 +los ||| the positions ||| 0.00147275 0.122289 1.90631e-06 1.44987e-05 2.718 ||| 0-0 ||| 679 524574 +los ||| the positive ||| 0.00408163 0.122289 1.90631e-06 3.9035e-05 2.718 ||| 0-0 ||| 245 524574 +los ||| the possibilities offered ||| 0.0322581 0.122289 1.90631e-06 2.68698e-10 2.718 ||| 0-0 ||| 31 524574 +los ||| the possibilities ||| 0.00135318 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 739 524574 +los ||| the possibility of applying on an experimental ||| 1 0.122289 1.90631e-06 2.75098e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| the possibility of applying on an ||| 1 0.122289 1.90631e-06 1.96499e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the possibility of applying on ||| 0.5 0.122289 1.90631e-06 4.42097e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the possibility of applying ||| 0.027027 0.122289 1.90631e-06 6.60733e-11 2.718 ||| 0-0 ||| 37 524574 +los ||| the possibility of making ||| 0.0263158 0.122289 1.90631e-06 7.67928e-10 2.718 ||| 0-0 ||| 38 524574 +los ||| the possibility of the imposition of ||| 1 0.122289 1.90631e-06 5.72952e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the possibility of the imposition ||| 1 0.122289 1.90631e-06 1.05392e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the possibility of the ||| 0.0111111 0.122289 1.90631e-06 1.22549e-07 2.718 ||| 0-0 ||| 90 524574 +los ||| the possibility of those ||| 0.5 0.122289 1.90631e-06 1.44543e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the possibility of ||| 0.00116904 0.122289 9.53154e-06 1.99617e-06 2.718 ||| 0-0 ||| 4277 524574 +los ||| the possibility ||| 0.00173812 0.122289 1.71568e-05 3.67187e-05 2.718 ||| 0-0 ||| 5178 524574 +los ||| the possible adaptation ||| 1 0.122289 1.90631e-06 6.19319e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the possible ||| 0.00786164 0.122289 1.90631e-05 0.000344066 2.718 ||| 0-0 ||| 1272 524574 +los ||| the possibly ||| 0.5 0.122289 1.90631e-06 1.9303e-05 2.718 ||| 0-0 ||| 2 524574 +los ||| the postal ||| 0.0333333 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| the posted ||| 1 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| the potential ||| 0.0011919 0.122289 3.81262e-06 2.20912e-05 2.718 ||| 0-0 ||| 1678 524574 +los ||| the poverty ||| 0.00497512 0.122289 1.90631e-06 6.47724e-06 2.718 ||| 0-0 ||| 201 524574 +los ||| the power to ||| 0.00210526 0.122289 1.90631e-06 5.69076e-06 2.718 ||| 0-0 ||| 475 524574 +los ||| the power ||| 0.00156863 0.122289 3.81262e-06 6.40432e-05 2.718 ||| 0-0 ||| 1275 524574 +los ||| the powers ||| 0.00541028 0.122289 1.14379e-05 2.11475e-05 2.718 ||| 0-0 ||| 1109 524574 +los ||| the practical people ||| 0.5 0.122289 1.90631e-06 1.65752e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the practical ||| 0.0238095 0.122289 5.71893e-06 1.88312e-05 2.718 ||| 0-0 ||| 126 524574 +los ||| the practice of ||| 0.00245098 0.122289 1.90631e-06 2.4579e-06 2.718 ||| 0-0 ||| 408 524574 +los ||| the practice ||| 0.00491803 0.122289 5.71893e-06 4.5212e-05 2.718 ||| 0-0 ||| 610 524574 +los ||| the praise ||| 0.0163934 0.122289 1.90631e-06 6.00539e-06 2.718 ||| 0-0 ||| 61 524574 +los ||| the praiseworthy ||| 0.166667 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the pre-accession funds must ||| 1 0.122289 1.90631e-06 3.54106e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the pre-accession funds ||| 0.0588235 0.122289 1.90631e-06 2.29106e-11 2.718 ||| 0-0 ||| 17 524574 +los ||| the pre-accession ||| 0.0588235 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 17 524574 +los ||| the precise ||| 0.0588235 0.122289 9.53154e-06 1.437e-05 2.718 ||| 0-0 ||| 85 524574 +los ||| the preliminary work carried out ||| 0.333333 0.122289 1.90631e-06 2.75857e-15 2.718 ||| 0-0 ||| 3 524574 +los ||| the preliminary work carried ||| 0.5 0.122289 1.90631e-06 7.20177e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the preliminary work ||| 0.0526316 0.122289 1.90631e-06 2.44376e-09 2.718 ||| 0-0 ||| 19 524574 +los ||| the preliminary ||| 0.0769231 0.122289 3.81262e-06 3.86061e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| the preparations that ||| 0.125 0.155778 1.90631e-06 2.77084e-06 2.718 ||| 0-0 0-1 ||| 8 524574 +los ||| the preparations ||| 0.00221729 0.155778 1.90631e-06 0.000164719 2.718 ||| 0-0 0-1 ||| 451 524574 +los ||| the preparatory ||| 0.0185185 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 54 524574 +los ||| the prescribed ||| 0.0666667 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| the presence of Commissioner Bangemann , we ||| 1 0.122289 1.90631e-06 1.17925e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the presence of Commissioner Bangemann , ||| 1 0.122289 1.90631e-06 1.03878e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the presence of Commissioner Bangemann ||| 1 0.122289 1.90631e-06 8.71057e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the presence of Commissioner ||| 0.047619 0.122289 1.90631e-06 7.9187e-11 2.718 ||| 0-0 ||| 21 524574 +los ||| the presence of ||| 0.00100402 0.122289 1.90631e-06 8.97812e-07 2.718 ||| 0-0 ||| 996 524574 +los ||| the presence ||| 0.00378788 0.122289 9.53154e-06 1.65148e-05 2.718 ||| 0-0 ||| 1320 524574 +los ||| the present Member ||| 0.125 0.122289 1.90631e-06 8.09011e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| the present members ||| 0.111111 0.122289 1.90631e-06 2.31572e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| the present situation ||| 0.00186916 0.122289 1.90631e-06 8.0854e-08 2.718 ||| 0-0 ||| 535 524574 +los ||| the present ||| 0.00589696 0.122289 3.62199e-05 0.000156998 2.718 ||| 0-0 ||| 3222 524574 +los ||| the present-day ||| 0.0526316 0.0742336 1.90631e-06 2.10189e-06 2.718 ||| 0-0 0-1 ||| 19 524574 +los ||| the presentation of the ||| 0.00819672 0.122289 1.90631e-06 2.262e-08 2.718 ||| 0-0 ||| 122 524574 +los ||| the presentation of ||| 0.00374532 0.122289 1.90631e-06 3.68453e-07 2.718 ||| 0-0 ||| 267 524574 +los ||| the presentation ||| 0.00574713 0.122289 5.71893e-06 6.77751e-06 2.718 ||| 0-0 ||| 522 524574 +los ||| the preserve ||| 0.0408163 0.122289 3.81262e-06 4.933e-06 2.718 ||| 0-0 ||| 49 524574 +los ||| the presidential ||| 0.0588235 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 17 524574 +los ||| the press have ||| 0.125 0.122289 1.90631e-06 1.54933e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the press ||| 0.000642261 0.122289 1.90631e-06 1.29545e-05 2.718 ||| 0-0 ||| 1557 524574 +los ||| the pressure ||| 0.00295276 0.122289 5.71893e-06 2.57803e-05 2.718 ||| 0-0 ||| 1016 524574 +los ||| the prevalence of ||| 0.0196078 0.122289 1.90631e-06 3.26477e-08 2.718 ||| 0-0 ||| 51 524574 +los ||| the prevalence ||| 0.0181818 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 55 524574 +los ||| the prevention of this disease ||| 0.5 0.122289 1.90631e-06 6.22302e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the prevention of this ||| 0.2 0.122289 1.90631e-06 2.1095e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| the prevention of ||| 0.00156986 0.122289 1.90631e-06 3.26477e-07 2.718 ||| 0-0 ||| 637 524574 +los ||| the prevention ||| 0.00228571 0.122289 3.81262e-06 6.00539e-06 2.718 ||| 0-0 ||| 875 524574 +los ||| the previous Commission . ||| 0.047619 0.122289 1.90631e-06 3.87811e-11 2.718 ||| 0-0 ||| 21 524574 +los ||| the previous Commission ||| 0.00724638 0.122289 1.90631e-06 1.28033e-08 2.718 ||| 0-0 ||| 138 524574 +los ||| the previous year ||| 0.008 0.122289 1.90631e-06 5.46676e-09 2.718 ||| 0-0 ||| 125 524574 +los ||| the previous ||| 0.00433526 0.122289 1.14379e-05 2.19197e-05 2.718 ||| 0-0 ||| 1384 524574 +los ||| the price of ||| 0.00650759 0.122289 1.14379e-05 1.19164e-06 2.718 ||| 0-0 ||| 922 524574 +los ||| the price ||| 0.00618047 0.122289 1.90631e-05 2.19197e-05 2.718 ||| 0-0 ||| 1618 524574 +los ||| the prices of ||| 0.00515464 0.23234 1.90631e-06 8.17125e-05 2.718 ||| 0-0 0-1 ||| 194 524574 +los ||| the prices ||| 0.00516796 0.23234 3.81262e-06 0.00150306 2.718 ||| 0-0 0-1 ||| 387 524574 +los ||| the primary interest of ||| 0.5 0.122289 1.90631e-06 3.77109e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the primary interest ||| 0.5 0.122289 1.90631e-06 6.93674e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the primary ||| 0.00319489 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 313 524574 +los ||| the prime ||| 0.00769231 0.122289 3.81262e-06 6.47724e-06 2.718 ||| 0-0 ||| 260 524574 +los ||| the principal 's ||| 0.5 0.122289 1.90631e-06 4.73805e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the principal ||| 0.00712589 0.122289 5.71893e-06 2.48795e-06 2.718 ||| 0-0 ||| 421 524574 +los ||| the principle of partnership ||| 0.03125 0.122289 1.90631e-06 7.72183e-11 2.718 ||| 0-0 ||| 32 524574 +los ||| the principle of ||| 0.000911079 0.122289 9.53154e-06 3.57492e-06 2.718 ||| 0-0 ||| 5488 524574 +los ||| the principle that it is first ||| 1 0.122289 1.90631e-06 3.31934e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the principle that it is ||| 0.2 0.122289 1.90631e-06 6.16519e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| the principle that it ||| 0.2 0.122289 1.90631e-06 1.96713e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| the principle that we ||| 0.0909091 0.122289 1.90631e-06 1.25576e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| the principle that ||| 0.00684932 0.122289 5.71893e-06 1.10617e-06 2.718 ||| 0-0 ||| 438 524574 +los ||| the principle ||| 0.00173486 0.122289 2.28757e-05 6.5759e-05 2.718 ||| 0-0 ||| 6917 524574 +los ||| the principles governing the organisation of official ||| 1 0.122289 1.90631e-06 1.47166e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| the principles governing the organisation of ||| 0.5 0.122289 1.90631e-06 3.78319e-17 2.718 ||| 0-0 ||| 2 524574 +los ||| the principles governing the organisation ||| 0.5 0.122289 1.90631e-06 6.959e-16 2.718 ||| 0-0 ||| 2 524574 +los ||| the principles governing the ||| 0.0769231 0.122289 1.90631e-06 2.05888e-11 2.718 ||| 0-0 ||| 13 524574 +los ||| the principles governing ||| 0.0277778 0.122289 1.90631e-06 3.35367e-10 2.718 ||| 0-0 ||| 36 524574 +los ||| the principles of ||| 0.00105652 0.122289 3.81262e-06 9.39787e-07 2.718 ||| 0-0 ||| 1893 524574 +los ||| the principles ||| 0.0013986 0.122289 9.53154e-06 1.72869e-05 2.718 ||| 0-0 ||| 3575 524574 +los ||| the prisoners ||| 0.00529101 0.19321 1.90631e-06 0.000304044 2.718 ||| 0-0 0-1 ||| 189 524574 +los ||| the private businesses ||| 0.333333 0.122289 1.90631e-06 2.71564e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the private ||| 0.0243902 0.122289 3.81262e-06 1.02092e-05 2.718 ||| 0-0 ||| 82 524574 +los ||| the privilege ||| 0.0045045 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 222 524574 +los ||| the prize ||| 0.0227273 0.122289 3.81262e-06 3.56034e-06 2.718 ||| 0-0 ||| 88 524574 +los ||| the problem , however , ||| 0.0333333 0.122289 1.90631e-06 1.51976e-09 2.718 ||| 0-0 ||| 30 524574 +los ||| the problem , however ||| 0.0666667 0.122289 1.90631e-06 1.27438e-08 2.718 ||| 0-0 ||| 15 524574 +los ||| the problem , ||| 0.00255102 0.122289 1.90631e-06 1.15048e-05 2.718 ||| 0-0 ||| 392 524574 +los ||| the problem is ||| 0.000803213 0.122289 1.90631e-06 3.02355e-06 2.718 ||| 0-0 ||| 1245 524574 +los ||| the problem of the ||| 0.00157978 0.122289 1.90631e-06 3.21977e-07 2.718 ||| 0-3 ||| 633 524574 +los ||| the problem of ||| 0.000927644 0.122289 5.71893e-06 5.24462e-06 2.718 ||| 0-0 ||| 3234 524574 +los ||| the problem ||| 0.00219024 0.122289 4.00325e-05 9.64723e-05 2.718 ||| 0-0 ||| 9588 524574 +los ||| the problems associated with ||| 0.00869565 0.122289 1.90631e-06 1.89574e-11 2.718 ||| 0-0 ||| 115 524574 +los ||| the problems associated ||| 0.00900901 0.122289 1.90631e-06 2.96465e-09 2.718 ||| 0-0 ||| 111 524574 +los ||| the problems caused ||| 0.0133333 0.122289 1.90631e-06 4.88735e-09 2.718 ||| 0-0 ||| 75 524574 +los ||| the problems concerning ||| 0.037037 0.114269 1.90631e-06 8.08968e-08 2.718 ||| 0-0 0-1 ||| 27 524574 +los ||| the problems of ||| 0.00148368 0.122289 3.81262e-06 3.12951e-06 2.718 ||| 0-0 ||| 1348 524574 +los ||| the problems that ||| 0.00174216 0.122289 1.90631e-06 9.68351e-07 2.718 ||| 0-0 ||| 574 524574 +los ||| the problems we are actually facing ||| 1 0.114269 1.90631e-06 4.98505e-15 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the problems we are actually ||| 1 0.114269 1.90631e-06 9.35282e-11 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the problems we are ||| 0.0357143 0.114269 1.90631e-06 2.2657e-07 2.718 ||| 0-0 0-1 ||| 28 524574 +los ||| the problems we ||| 0.00578035 0.114269 1.90631e-06 1.49328e-05 2.718 ||| 0-0 0-1 ||| 173 524574 +los ||| the problems ||| 0.00278429 0.114269 3.62199e-05 0.00131539 2.718 ||| 0-0 0-1 ||| 6824 524574 +los ||| the procedure ||| 0.00101471 0.122289 3.81262e-06 4.30672e-05 2.718 ||| 0-0 ||| 1971 524574 +los ||| the procedures that are ||| 0.166667 0.122289 1.90631e-06 4.72963e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| the procedures that ||| 0.0285714 0.122289 1.90631e-06 3.1172e-07 2.718 ||| 0-0 ||| 35 524574 +los ||| the procedures ||| 0.00415973 0.122289 9.53154e-06 1.85309e-05 2.718 ||| 0-0 ||| 1202 524574 +los ||| the proceeding ||| 0.333333 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| the proceedings and discussions to ||| 0.5 0.122289 1.90631e-06 7.17508e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the proceedings and discussions ||| 0.5 0.122289 1.90631e-06 8.07475e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| the proceedings and ||| 0.166667 0.122289 1.90631e-06 1.95042e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the proceedings ||| 0.00911854 0.122289 5.71893e-06 1.55711e-05 2.718 ||| 0-0 ||| 329 524574 +los ||| the proceeds ||| 0.00763359 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 131 524574 +los ||| the process , there ||| 1 0.122289 1.90631e-06 6.70344e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the process , ||| 0.00403226 0.122289 1.90631e-06 2.18688e-05 2.718 ||| 0-0 ||| 248 524574 +los ||| the process by which ||| 0.05 0.122289 1.90631e-06 8.17824e-09 2.718 ||| 0-0 ||| 20 524574 +los ||| the process by ||| 0.0212766 0.122289 1.90631e-06 9.62757e-07 2.718 ||| 0-0 ||| 47 524574 +los ||| the process of giving in over ||| 1 0.122289 1.90631e-06 1.61927e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the process of giving in ||| 1 0.122289 1.90631e-06 3.36296e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the process of giving ||| 0.25 0.122289 1.90631e-06 1.57115e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the process of preparing a ||| 0.2 0.122289 1.90631e-06 6.54002e-12 2.718 ||| 0-0 ||| 5 524574 +los ||| the process of preparing ||| 0.0322581 0.122289 1.90631e-06 1.47544e-10 2.718 ||| 0-0 ||| 31 524574 +los ||| the process of turning ||| 0.2 0.122289 1.90631e-06 4.9846e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| the process of ||| 0.00201884 0.122289 1.14379e-05 9.96921e-06 2.718 ||| 0-0 ||| 2972 524574 +los ||| the process still ||| 0.5 0.122289 1.90631e-06 1.38121e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the process whereby ||| 0.047619 0.122289 1.90631e-06 5.94147e-09 2.718 ||| 0-0 ||| 21 524574 +los ||| the process ||| 0.00434103 0.122289 4.76577e-05 0.000183379 2.718 ||| 0-0 ||| 5759 524574 +los ||| the processes ||| 0.00414938 0.122289 1.90631e-06 6.94909e-06 2.718 ||| 0-0 ||| 241 524574 +los ||| the procurement ||| 0.0138889 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 72 524574 +los ||| the producers that ||| 1 0.24182 1.90631e-06 1.82479e-05 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the producers ||| 0.00795756 0.24182 5.71893e-06 0.00108479 2.718 ||| 0-0 0-1 ||| 377 524574 +los ||| the product ' s ||| 0.25 0.0669643 1.90631e-06 2.18635e-10 2.718 ||| 0-0 0-2 0-3 ||| 4 524574 +los ||| the product ||| 0.00167785 0.122289 1.90631e-06 2.60805e-05 2.718 ||| 0-0 ||| 596 524574 +los ||| the production and distribution sectors will be ||| 0.1 0.122289 1.90631e-06 7.42632e-20 2.718 ||| 0-0 ||| 10 524574 +los ||| the production and distribution sectors will ||| 0.1 0.122289 1.90631e-06 4.09775e-18 2.718 ||| 0-0 ||| 10 524574 +los ||| the production and distribution sectors ||| 0.0833333 0.122289 1.90631e-06 4.73663e-16 2.718 ||| 0-0 ||| 12 524574 +los ||| the production and distribution ||| 0.0294118 0.122289 1.90631e-06 9.19734e-12 2.718 ||| 0-0 ||| 34 524574 +los ||| the production and ||| 0.00293255 0.122289 1.90631e-06 4.48651e-07 2.718 ||| 0-0 ||| 341 524574 +los ||| the production line ||| 0.0909091 0.122289 1.90631e-06 1.05448e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| the production of harmonised , complete and ||| 1 0.122289 1.90631e-06 1.20792e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the production of harmonised , complete ||| 1 0.122289 1.90631e-06 9.64334e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the production of harmonised , ||| 1 0.122289 1.90631e-06 1.34684e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the production of harmonised ||| 1 0.122289 1.90631e-06 1.12938e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the production of ||| 0.00169062 0.122289 3.81262e-06 1.9472e-06 2.718 ||| 0-0 ||| 1183 524574 +los ||| the production ||| 0.00288684 0.122289 9.53154e-06 3.58179e-05 2.718 ||| 0-0 ||| 1732 524574 +los ||| the products currently ||| 0.0833333 0.122289 1.90631e-06 4.65744e-09 2.718 ||| 0-0 ||| 12 524574 +los ||| the products of ||| 0.0151515 0.122289 1.90631e-06 2.42526e-06 2.718 ||| 0-0 ||| 66 524574 +los ||| the products ||| 0.00987306 0.183774 1.33442e-05 0.00214658 2.718 ||| 0-0 0-1 ||| 709 524574 +los ||| the professionals ||| 0.0166667 0.212646 1.90631e-06 0.000138896 2.718 ||| 0-0 0-1 ||| 60 524574 +los ||| the profits of ||| 0.00558659 0.122289 1.90631e-06 2.3553e-07 2.718 ||| 0-0 ||| 179 524574 +los ||| the profits they have been making . ||| 1 0.159219 1.90631e-06 3.32716e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| the profits they have been making ||| 1 0.159219 1.90631e-06 1.09843e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| the profits they have been ||| 1 0.159219 1.90631e-06 2.8553e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| the profits they have ||| 1 0.159219 1.90631e-06 8.55085e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| the profits they ||| 0.25 0.159219 1.90631e-06 7.14966e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| the profits ||| 0.00598802 0.122289 3.81262e-06 4.33246e-06 2.718 ||| 0-0 ||| 334 524574 +los ||| the programme of options specific to the ||| 1 0.122289 1.90631e-06 2.98762e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the programme of options specific to ||| 1 0.122289 1.90631e-06 4.86649e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the programme of options specific ||| 1 0.122289 1.90631e-06 5.47669e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the programme of options ||| 0.5 0.122289 1.90631e-06 3.62455e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the programme of ||| 0.0047619 0.122289 1.90631e-06 2.97094e-06 2.718 ||| 0-0 ||| 210 524574 +los ||| the programme with ||| 0.0666667 0.122289 1.90631e-06 3.49453e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| the programme ||| 0.00186498 0.122289 9.53154e-06 5.4649e-05 2.718 ||| 0-0 ||| 2681 524574 +los ||| the programmes ' lack of transparency and ||| 1 0.122289 1.90631e-06 8.95914e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| the programmes ' lack of transparency ||| 1 0.122289 1.90631e-06 7.15249e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the programmes ' lack of ||| 1 0.122289 1.90631e-06 5.2208e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the programmes ' lack ||| 1 0.122289 1.90631e-06 9.60341e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the programmes ' ||| 1 0.122289 1.90631e-06 7.89754e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the programmes which are ||| 0.125 0.152517 1.90631e-06 1.53249e-07 2.718 ||| 0-0 0-1 ||| 8 524574 +los ||| the programmes which ||| 0.0588235 0.152517 1.90631e-06 1.01003e-05 2.718 ||| 0-0 0-1 ||| 17 524574 +los ||| the programmes ||| 0.00456204 0.122289 9.53154e-06 2.29921e-05 2.718 ||| 0-0 ||| 1096 524574 +los ||| the progress ||| 0.000410678 0.122289 1.90631e-06 5.64935e-05 2.718 ||| 0-0 ||| 2435 524574 +los ||| the progressive ||| 0.0172414 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-0 ||| 58 524574 +los ||| the project ||| 0.000987167 0.122289 1.90631e-06 2.62521e-05 2.718 ||| 0-0 ||| 1013 524574 +los ||| the projects after blocking them ||| 1 0.122289 1.90631e-06 3.8432e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the projects after blocking ||| 1 0.122289 1.90631e-06 1.43275e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the projects after ||| 1 0.122289 1.90631e-06 5.73098e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the projects ||| 0.00569801 0.122289 7.62523e-06 2.11475e-05 2.718 ||| 0-0 ||| 702 524574 +los ||| the proliferation of requests ||| 1 0.122289 1.90631e-06 7.57893e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the proliferation of ||| 0.0037037 0.122289 1.90631e-06 5.82995e-08 2.718 ||| 0-0 ||| 270 524574 +los ||| the proliferation ||| 0.00687285 0.122289 3.81262e-06 1.07239e-06 2.718 ||| 0-0 ||| 291 524574 +los ||| the promises made ||| 0.0135135 0.122289 1.90631e-06 6.82919e-09 2.718 ||| 0-0 ||| 74 524574 +los ||| the promises ||| 0.00401606 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-0 ||| 249 524574 +los ||| the promotion ||| 0.000888889 0.122289 3.81262e-06 1.03378e-05 2.718 ||| 0-0 ||| 2250 524574 +los ||| the proper identity ||| 0.5 0.122289 1.90631e-06 7.66845e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the proper ||| 0.00166389 0.122289 1.90631e-06 3.79626e-05 2.718 ||| 0-0 ||| 601 524574 +los ||| the property ||| 0.012987 0.144627 1.90631e-06 0.000233567 2.718 ||| 0-0 0-1 ||| 77 524574 +los ||| the proponents of ||| 0.03125 0.122289 1.90631e-06 3.26477e-08 2.718 ||| 0-0 ||| 32 524574 +los ||| the proponents ||| 0.05 0.122289 3.81262e-06 6.00539e-07 2.718 ||| 0-0 ||| 40 524574 +los ||| the proportion of ||| 0.00243309 0.122289 1.90631e-06 7.04257e-07 2.718 ||| 0-0 ||| 411 524574 +los ||| the proportion ||| 0.0020202 0.122289 1.90631e-06 1.29545e-05 2.718 ||| 0-0 ||| 495 524574 +los ||| the proposal , the ||| 0.025 0.122289 1.90631e-06 6.27158e-07 2.718 ||| 0-3 ||| 40 524574 +los ||| the proposal by the Group ||| 0.142857 0.122289 1.90631e-06 8.98159e-12 2.718 ||| 0-3 ||| 7 524574 +los ||| the proposal by the ||| 0.00520833 0.122289 1.90631e-06 2.76102e-08 2.718 ||| 0-3 ||| 192 524574 +los ||| the proposal for a European Parliament and ||| 0.166667 0.122289 1.90631e-06 7.01625e-16 2.718 ||| 0-0 ||| 6 524574 +los ||| the proposal for a European Parliament ||| 0.142857 0.122289 1.90631e-06 5.6014e-14 2.718 ||| 0-0 ||| 7 524574 +los ||| the proposal for a European ||| 0.125 0.122289 1.90631e-06 9.75853e-11 2.718 ||| 0-0 ||| 8 524574 +los ||| the proposal for a ||| 0.00037092 0.122289 1.90631e-06 2.91831e-08 2.718 ||| 0-0 ||| 2696 524574 +los ||| the proposal for ||| 0.000285225 0.122289 1.90631e-06 6.58377e-07 2.718 ||| 0-0 ||| 3506 524574 +los ||| the proposal of the ||| 0.00425532 0.122289 1.90631e-06 2.85899e-07 2.718 ||| 0-0 ||| 235 524574 +los ||| the proposal of ||| 0.00323625 0.122289 1.90631e-06 4.65696e-06 2.718 ||| 0-0 ||| 309 524574 +los ||| the proposal to ||| 0.00074184 0.122289 1.90631e-06 7.61182e-06 2.718 ||| 0-0 ||| 1348 524574 +los ||| the proposal which the Commission presented right ||| 0.5 0.122289 1.90631e-06 1.32602e-18 2.718 ||| 0-0 ||| 2 524574 +los ||| the proposal which the Commission presented ||| 0.5 0.122289 1.90631e-06 2.05616e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| the proposal which the Commission ||| 0.142857 0.122289 1.90631e-06 2.60935e-11 2.718 ||| 0-0 ||| 7 524574 +los ||| the proposal which the ||| 0.0909091 0.122289 1.90631e-06 4.46729e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| the proposal which ||| 0.00787402 0.122289 1.90631e-06 7.27669e-07 2.718 ||| 0-0 ||| 127 524574 +los ||| the proposal ||| 0.000771605 0.122289 2.09694e-05 8.56626e-05 2.718 ||| 0-0 ||| 14256 524574 +los ||| the proposals , ||| 0.00869565 0.122289 1.90631e-06 4.97227e-06 2.718 ||| 0-0 ||| 115 524574 +los ||| the proposals ||| 0.000884564 0.122289 7.62523e-06 4.16946e-05 2.718 ||| 0-0 ||| 4522 524574 +los ||| the proposed ||| 0.00275786 0.122289 9.53154e-06 4.78715e-05 2.718 ||| 0-0 ||| 1813 524574 +los ||| the pros and cons , ||| 0.5 0.122289 1.90631e-06 6.27948e-16 2.718 ||| 0-0 ||| 2 524574 +los ||| the pros and cons ||| 0.0163934 0.122289 1.90631e-06 5.2656e-15 2.718 ||| 0-0 ||| 61 524574 +los ||| the pros and ||| 0.0151515 0.122289 1.90631e-06 7.52229e-09 2.718 ||| 0-0 ||| 66 524574 +los ||| the pros ||| 0.0138889 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 72 524574 +los ||| the prosecuting ||| 0.2 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| the prosecution ||| 0.00833333 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 120 524574 +los ||| the prospect of ||| 0.00103306 0.122289 1.90631e-06 5.62007e-07 2.718 ||| 0-0 ||| 968 524574 +los ||| the prospect ||| 0.00207469 0.122289 3.81262e-06 1.03378e-05 2.718 ||| 0-0 ||| 964 524574 +los ||| the protection of ||| 0.00193632 0.122289 1.71568e-05 2.36696e-06 2.718 ||| 0-0 ||| 4648 524574 +los ||| the protection ||| 0.00194553 0.122289 2.09694e-05 4.35391e-05 2.718 ||| 0-0 ||| 5654 524574 +los ||| the protesters and ||| 0.2 0.156035 1.90631e-06 1.35939e-07 2.718 ||| 0-0 0-1 ||| 5 524574 +los ||| the protesters ||| 0.0666667 0.122289 3.81262e-06 3.00269e-07 2.718 ||| 0-0 ||| 30 524574 +los ||| the proud ||| 0.0588235 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| the provision of information ||| 0.00714286 0.122289 1.90631e-06 4.585e-10 2.718 ||| 0-0 ||| 140 524574 +los ||| the provision of ||| 0.00611354 0.122289 1.33442e-05 2.77039e-06 2.718 ||| 0-0 ||| 1145 524574 +los ||| the provision ||| 0.00566038 0.122289 1.71568e-05 5.096e-05 2.718 ||| 0-0 ||| 1590 524574 +los ||| the provisional ||| 0.1 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the provisions are pushed backwards and forwards ||| 1 0.122289 1.90631e-06 9.80613e-24 2.718 ||| 0-0 ||| 1 524574 +los ||| the provisions are pushed backwards and ||| 1 0.122289 1.90631e-06 8.03781e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the provisions are pushed backwards ||| 1 0.122289 1.90631e-06 6.41695e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the provisions are pushed ||| 1 0.122289 1.90631e-06 9.4367e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the provisions are ||| 0.0666667 0.122289 1.90631e-06 5.12864e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| the provisions concerning ||| 0.02 0.122289 1.90631e-06 2.07881e-09 2.718 ||| 0-0 ||| 50 524574 +los ||| the provisions of the ||| 0.00101833 0.0821857 1.90631e-06 4.79585e-08 2.718 ||| 0-0 0-2 0-3 ||| 982 524574 +los ||| the provisions of ||| 0.00206398 0.122289 3.81262e-06 1.8376e-06 2.718 ||| 0-0 ||| 969 524574 +los ||| the provisions on ||| 0.00406504 0.122289 1.90631e-06 2.26168e-07 2.718 ||| 0-0 ||| 246 524574 +los ||| the provisions ||| 0.00332594 0.122289 1.71568e-05 3.38018e-05 2.718 ||| 0-0 ||| 2706 524574 +los ||| the proximity of the ||| 0.05 0.122289 1.90631e-06 3.57911e-09 2.718 ||| 0-0 ||| 20 524574 +los ||| the proximity of ||| 0.0357143 0.122289 1.90631e-06 5.82995e-08 2.718 ||| 0-0 ||| 28 524574 +los ||| the proximity ||| 0.0243902 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 41 524574 +los ||| the public , ||| 0.00225225 0.122289 1.90631e-06 8.26666e-06 2.718 ||| 0-0 ||| 444 524574 +los ||| the public health authority ||| 0.333333 0.122289 1.90631e-06 2.44819e-13 2.718 ||| 0-0 ||| 3 524574 +los ||| the public health ||| 0.0232558 0.122289 1.90631e-06 5.76044e-09 2.718 ||| 0-0 ||| 43 524574 +los ||| the public service ||| 0.00833333 0.122289 1.90631e-06 4.63746e-09 2.718 ||| 0-0 ||| 120 524574 +los ||| the public ||| 0.00227743 0.122289 2.09694e-05 6.93193e-05 2.718 ||| 0-0 ||| 4830 524574 +los ||| the purpose , ||| 0.03125 0.122289 1.90631e-06 9.20279e-06 2.718 ||| 0-0 ||| 32 524574 +los ||| the purpose of our ||| 0.025641 0.122289 1.90631e-06 5.7869e-09 2.718 ||| 0-0 ||| 39 524574 +los ||| the purpose of the ||| 0.00240964 0.0821857 1.90631e-06 1.09489e-07 2.718 ||| 0-0 0-2 0-3 ||| 415 524574 +los ||| the purpose of ||| 0.00335796 0.122289 9.53154e-06 4.19523e-06 2.718 ||| 0-0 ||| 1489 524574 +los ||| the purpose ||| 0.00655903 0.122289 2.4782e-05 7.71692e-05 2.718 ||| 0-0 ||| 1982 524574 +los ||| the purposes of ||| 0.00276243 0.122289 1.90631e-06 2.81936e-06 2.718 ||| 0-0 ||| 362 524574 +los ||| the purposes ||| 0.012848 0.122289 1.14379e-05 5.18608e-05 2.718 ||| 0-0 ||| 467 524574 +los ||| the pursuing ||| 1 0.122289 1.90631e-06 1.05094e-05 2.718 ||| 0-0 ||| 1 524574 +los ||| the pursuit even of manifest ||| 1 0.122289 1.90631e-06 7.74211e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the pursuit even of ||| 1 0.122289 1.90631e-06 3.51914e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the pursuit even ||| 1 0.122289 1.90631e-06 6.47329e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the pursuit ||| 0.00607903 0.122289 3.81262e-06 1.06381e-05 2.718 ||| 0-0 ||| 329 524574 +los ||| the quality of the ||| 0.00112867 0.0821857 1.90631e-06 3.00045e-08 2.718 ||| 0-0 0-2 0-3 ||| 886 524574 +los ||| the quantity of ||| 0.00518135 0.122289 1.90631e-06 2.0055e-07 2.718 ||| 0-0 ||| 193 524574 +los ||| the quantity ||| 0.00333333 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-0 ||| 300 524574 +los ||| the question about ||| 0.0106383 0.122289 1.90631e-06 5.019e-07 2.718 ||| 0-0 ||| 94 524574 +los ||| the question concerns whether ||| 1 0.122289 1.90631e-06 6.98261e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the question concerns ||| 0.0625 0.122289 1.90631e-06 2.65802e-08 2.718 ||| 0-0 ||| 16 524574 +los ||| the question of the ||| 0.00180995 0.122289 3.81262e-06 1.1844e-06 2.718 ||| 0-0 ||| 1105 524574 +los ||| the question of who was ||| 0.5 0.122289 1.90631e-06 5.3311e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the question of who ||| 0.0204082 0.122289 1.90631e-06 1.70159e-08 2.718 ||| 0-0 ||| 49 524574 +los ||| the question of ||| 0.0025974 0.122289 2.85946e-05 1.92925e-05 2.718 ||| 0-0 ||| 5775 524574 +los ||| the question ||| 0.00355409 0.122289 7.81587e-05 0.000354876 2.718 ||| 0-0 ||| 11536 524574 +los ||| the questions concerning ||| 0.0588235 0.122289 1.90631e-06 2.3347e-09 2.718 ||| 0-0 ||| 17 524574 +los ||| the questions put to me ||| 0.1 0.122289 1.90631e-06 2.23945e-12 2.718 ||| 0-0 ||| 10 524574 +los ||| the questions put to ||| 0.0588235 0.122289 1.90631e-06 3.71939e-09 2.718 ||| 0-0 ||| 17 524574 +los ||| the questions put ||| 0.0128205 0.122289 1.90631e-06 4.18576e-08 2.718 ||| 0-0 ||| 78 524574 +los ||| the questions ||| 0.00232964 0.122289 7.62523e-06 3.79626e-05 2.718 ||| 0-0 ||| 1717 524574 +los ||| the race ||| 0.0107527 0.122289 1.90631e-06 4.46115e-06 2.718 ||| 0-0 ||| 93 524574 +los ||| the radio ||| 0.015625 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 64 524574 +los ||| the railway lines ||| 0.166667 0.122289 1.90631e-06 3.66929e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| the railway ||| 0.0131579 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 76 524574 +los ||| the railways ||| 0.00170068 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 588 524574 +los ||| the range of ||| 0.00377358 0.122289 1.90631e-06 1.60207e-06 2.718 ||| 0-0 ||| 265 524574 +los ||| the range ||| 0.0158228 0.122289 9.53154e-06 2.94693e-05 2.718 ||| 0-0 ||| 316 524574 +los ||| the ranks of ||| 0.0405405 0.122289 5.71893e-06 1.09603e-07 2.718 ||| 0-0 ||| 74 524574 +los ||| the ranks ||| 0.032967 0.122289 5.71893e-06 2.01609e-06 2.718 ||| 0-0 ||| 91 524574 +los ||| the rapid administration of first aid our ||| 0.5 0.122289 1.90631e-06 8.22407e-22 2.718 ||| 0-0 ||| 2 524574 +los ||| the rapid administration of first aid ||| 0.5 0.122289 1.90631e-06 5.96206e-19 2.718 ||| 0-0 ||| 2 524574 +los ||| the rapid administration of first ||| 0.5 0.122289 1.90631e-06 4.56513e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| the rapid administration of ||| 0.5 0.122289 1.90631e-06 8.47907e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| the rapid administration ||| 0.5 0.122289 1.90631e-06 1.55969e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the rapid rate ||| 0.2 0.122289 1.90631e-06 7.7521e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| the rapid ||| 0.00417537 0.122289 3.81262e-06 7.72121e-06 2.718 ||| 0-0 ||| 479 524574 +los ||| the rapidly deployed ||| 1 0.122289 1.90631e-06 6.78909e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the rapidly ||| 0.025 0.122289 1.90631e-06 5.10458e-06 2.718 ||| 0-0 ||| 40 524574 +los ||| the rapporteur , Mrs ||| 0.000844595 0.122289 1.90631e-06 3.46181e-10 2.718 ||| 0-0 ||| 1184 524574 +los ||| the rapporteur , the ||| 0.00980392 0.122289 1.90631e-06 2.27058e-07 2.718 ||| 0-0 ||| 102 524574 +los ||| the rapporteur , ||| 0.000575595 0.122289 5.71893e-06 3.69851e-06 2.718 ||| 0-0 ||| 5212 524574 +los ||| the rapporteur and the draftsman of the ||| 1 0.122289 1.90631e-06 2.23665e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the rapporteur and the draftsman of ||| 1 0.122289 1.90631e-06 3.64325e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the rapporteur and the draftsman ||| 0.333333 0.122289 1.90631e-06 6.70158e-13 2.718 ||| 0-0 ||| 3 524574 +los ||| the rapporteur and the ||| 0.00490196 0.122289 3.81262e-06 2.3849e-08 2.718 ||| 0-0 ||| 408 524574 +los ||| the rapporteur and ||| 0.00130634 0.122289 3.81262e-06 3.88473e-07 2.718 ||| 0-0 ||| 1531 524574 +los ||| the rapporteur for the Committee on Employment ||| 0.5 0.122289 1.90631e-06 1.5539e-19 2.718 ||| 0-0 ||| 2 524574 +los ||| the rapporteur for the Committee on ||| 0.0185185 0.122289 1.90631e-06 1.49414e-14 2.718 ||| 0-0 ||| 54 524574 +los ||| the rapporteur for the Committee ||| 0.0151515 0.122289 1.90631e-06 2.23306e-12 2.718 ||| 0-0 ||| 66 524574 +los ||| the rapporteur for the ||| 0.00247525 0.122289 1.90631e-06 1.46334e-08 2.718 ||| 0-0 ||| 404 524574 +los ||| the rapporteur for this and ||| 1 0.122289 1.90631e-06 1.92917e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the rapporteur for this ||| 0.00943396 0.122289 1.90631e-06 1.54014e-09 2.718 ||| 0-0 ||| 106 524574 +los ||| the rapporteur for ||| 0.00124611 0.122289 3.81262e-06 2.38361e-07 2.718 ||| 0-0 ||| 1605 524574 +los ||| the rapporteur ||| 0.000452239 0.122289 1.71568e-05 3.10135e-05 2.718 ||| 0-0 ||| 19901 524574 +los ||| the rate of ||| 0.00222222 0.122289 1.90631e-06 2.34131e-06 2.718 ||| 0-0 ||| 450 524574 +los ||| the rate ||| 0.00482315 0.122289 5.71893e-06 4.30672e-05 2.718 ||| 0-0 ||| 622 524574 +los ||| the rates ||| 0.00636943 0.122289 1.90631e-06 1.63432e-05 2.718 ||| 0-0 ||| 157 524574 +los ||| the rather high-handed acts ||| 0.5 0.122289 1.90631e-06 5.23153e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| the rather high-handed ||| 0.5 0.122289 1.90631e-06 9.19425e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the rather ||| 0.0192308 0.122289 1.90631e-06 0.000131346 2.718 ||| 0-0 ||| 52 524574 +los ||| the rationale ||| 0.00704225 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 142 524574 +los ||| the rationality employed ||| 0.166667 0.122289 1.90631e-06 4.94158e-12 2.718 ||| 0-0 ||| 6 524574 +los ||| the rationality ||| 0.0714286 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| the rationing ||| 0.333333 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the re-use ||| 0.0357143 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 28 524574 +los ||| the reach of ||| 0.0277778 0.122289 1.90631e-06 1.8889e-06 2.718 ||| 0-0 ||| 36 524574 +los ||| the reach ||| 0.0238095 0.122289 1.90631e-06 3.47455e-05 2.718 ||| 0-0 ||| 42 524574 +los ||| the real ||| 0.0030426 0.122289 1.14379e-05 7.71692e-05 2.718 ||| 0-0 ||| 1972 524574 +los ||| the reality ||| 0.0006035 0.122289 1.90631e-06 2.86972e-05 2.718 ||| 0-0 ||| 1657 524574 +los ||| the really ||| 0.0625 0.122289 3.81262e-06 0.000207786 2.718 ||| 0-0 ||| 32 524574 +los ||| the realm ||| 0.0078125 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-0 ||| 128 524574 +los ||| the reason for this ||| 0.00520833 0.122289 1.90631e-06 4.98257e-09 2.718 ||| 0-0 ||| 192 524574 +los ||| the reason for ||| 0.00402145 0.122289 5.71893e-06 7.71128e-07 2.718 ||| 0-0 ||| 746 524574 +los ||| the reason is simple . the ||| 1 0.122289 1.90631e-06 2.5261e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| the reason that ||| 0.0133333 0.122289 1.90631e-06 1.68776e-06 2.718 ||| 0-0 ||| 75 524574 +los ||| the reason why ||| 0.000841043 0.122289 1.90631e-06 2.47321e-08 2.718 ||| 0-0 ||| 1189 524574 +los ||| the reason ||| 0.00504202 0.122289 1.71568e-05 0.000100333 2.718 ||| 0-0 ||| 1785 524574 +los ||| the reasonable ||| 0.0714286 0.122289 1.90631e-06 7.72121e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| the reasons for the ||| 0.00505051 0.0615514 1.90631e-06 1.62254e-10 2.718 ||| 0-0 0-1 0-2 0-3 ||| 198 524574 +los ||| the reasons why ||| 0.00130039 0.122289 1.90631e-06 1.06901e-08 2.718 ||| 0-0 ||| 769 524574 +los ||| the reasons ||| 0.00101368 0.122289 3.81262e-06 4.33675e-05 2.718 ||| 0-0 ||| 1973 524574 +los ||| the rebellion ||| 0.0714286 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| the receiving end of ||| 0.0263158 0.122289 1.90631e-06 3.03378e-10 2.718 ||| 0-0 ||| 38 524574 +los ||| the receiving end ||| 0.02 0.122289 1.90631e-06 5.5805e-09 2.718 ||| 0-0 ||| 50 524574 +los ||| the receiving ||| 0.03125 0.122289 1.90631e-06 1.28258e-05 2.718 ||| 0-0 ||| 32 524574 +los ||| the recent crisis ||| 0.0151515 0.122289 1.90631e-06 1.50726e-09 2.718 ||| 0-0 ||| 66 524574 +los ||| the recent ||| 0.00453809 0.175672 2.66883e-05 0.00173998 2.718 ||| 0-0 0-1 ||| 3085 524574 +los ||| the recipient ||| 0.0140845 0.0932783 1.90631e-06 1.04236e-05 2.718 ||| 0-0 0-1 ||| 71 524574 +los ||| the recipients ||| 0.00925926 0.170292 1.90631e-06 4.37964e-05 2.718 ||| 0-0 0-1 ||| 108 524574 +los ||| the recommendations which ||| 0.03125 0.122289 1.90631e-06 3.5345e-08 2.718 ||| 0-0 ||| 32 524574 +los ||| the recommendations ||| 0.000719424 0.122289 1.90631e-06 4.16088e-06 2.718 ||| 0-0 ||| 1390 524574 +los ||| the record labels ||| 1 0.122289 1.90631e-06 1.38827e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the record straight with regard ||| 1 0.122289 1.90631e-06 3.8977e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the record straight with ||| 1 0.122289 1.90631e-06 5.72434e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the record straight ||| 0.04 0.122289 1.90631e-06 8.95197e-10 2.718 ||| 0-0 ||| 25 524574 +los ||| the record ||| 0.00678733 0.122289 5.71893e-06 2.39358e-05 2.718 ||| 0-0 ||| 442 524574 +los ||| the records ||| 0.0285714 0.135572 1.90631e-06 4.88152e-05 2.718 ||| 0-0 0-1 ||| 35 524574 +los ||| the recovery of ||| 0.00352113 0.122289 1.90631e-06 3.10153e-07 2.718 ||| 0-0 ||| 284 524574 +los ||| the recovery ||| 0.00454545 0.122289 3.81262e-06 5.70512e-06 2.718 ||| 0-0 ||| 440 524574 +los ||| the recruitment ||| 0.00819672 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 122 524574 +los ||| the red ||| 0.0697674 0.122289 5.71893e-06 6.34855e-06 2.718 ||| 0-0 ||| 43 524574 +los ||| the redundancies ||| 0.0204082 0.148279 1.90631e-06 6.21558e-05 2.718 ||| 0-0 0-1 ||| 49 524574 +los ||| the redundancy ||| 0.2 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| the reference to ||| 0.00208768 0.122289 1.90631e-06 3.25132e-06 2.718 ||| 0-0 ||| 479 524574 +los ||| the reference ||| 0.00541272 0.122289 7.62523e-06 3.659e-05 2.718 ||| 0-0 ||| 739 524574 +los ||| the reform of the ||| 0.000712758 0.062134 1.90631e-06 3.57125e-09 2.718 ||| 0-2 0-3 ||| 1403 524574 +los ||| the reform process ||| 0.00529101 0.122289 1.90631e-06 7.51853e-09 2.718 ||| 0-0 ||| 189 524574 +los ||| the reform ||| 0.00112317 0.122289 5.71893e-06 1.75872e-05 2.718 ||| 0-0 ||| 2671 524574 +los ||| the refugee ||| 0.0322581 0.113027 1.90631e-06 0.000103421 2.718 ||| 0-0 0-1 ||| 31 524574 +los ||| the refusal ||| 0.00392157 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 255 524574 +los ||| the region 's ||| 0.0285714 0.122289 1.90631e-06 7.99749e-08 2.718 ||| 0-0 ||| 35 524574 +los ||| the region of ||| 0.00421941 0.122289 1.90631e-06 2.28301e-06 2.718 ||| 0-0 ||| 237 524574 +los ||| the region ||| 0.000865351 0.122289 9.53154e-06 4.19948e-05 2.718 ||| 0-0 ||| 5778 524574 +los ||| the regional ||| 0.0190476 0.122289 3.81262e-06 1.05094e-05 2.718 ||| 0-0 ||| 105 524574 +los ||| the regressive scale of ||| 1 0.122289 1.90631e-06 9.5821e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the regressive scale ||| 1 0.122289 1.90631e-06 1.76258e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the regressive ||| 0.5 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the regulation ||| 0.000607533 0.122289 3.81262e-06 2.99411e-05 2.718 ||| 0-0 ||| 3292 524574 +los ||| the regulations ||| 0.00081367 0.122289 1.90631e-06 1.88312e-05 2.718 ||| 0-0 ||| 1229 524574 +los ||| the regulatory framework , ||| 0.0666667 0.122289 1.90631e-06 8.7733e-11 2.718 ||| 0-0 ||| 15 524574 +los ||| the regulatory framework ||| 0.00729927 0.122289 1.90631e-06 7.35677e-10 2.718 ||| 0-0 ||| 137 524574 +los ||| the regulatory status ||| 1 0.122289 1.90631e-06 6.24492e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the regulatory ||| 0.0540541 0.122289 3.81262e-06 6.17697e-06 2.718 ||| 0-0 ||| 37 524574 +los ||| the related ||| 0.0526316 0.122289 7.62523e-06 2.80966e-05 2.718 ||| 0-0 ||| 76 524574 +los ||| the relationship ||| 0.000770416 0.122289 1.90631e-06 1.14102e-05 2.718 ||| 0-0 ||| 1298 524574 +los ||| the relative ||| 0.0126582 0.122289 1.90631e-06 3.86061e-06 2.718 ||| 0-0 ||| 79 524574 +los ||| the relatives ||| 0.0235294 0.111145 3.81262e-06 1.91743e-05 2.718 ||| 0-0 0-1 ||| 85 524574 +los ||| the release of the ||| 0.0107527 0.0821857 1.90631e-06 1.38154e-08 2.718 ||| 0-0 0-2 0-3 ||| 93 524574 +los ||| the release ||| 0.00465116 0.122289 5.71893e-06 9.73731e-06 2.718 ||| 0-0 ||| 645 524574 +los ||| the relentless ||| 0.0416667 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 24 524574 +los ||| the relevant administrative ||| 1 0.122289 1.90631e-06 9.46192e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the relevant authorities of ||| 0.0833333 0.122289 1.90631e-06 1.67113e-10 2.718 ||| 0-0 ||| 12 524574 +los ||| the relevant authorities ||| 0.00641026 0.122289 1.90631e-06 3.07397e-09 2.718 ||| 0-0 ||| 156 524574 +los ||| the relevant body ||| 0.5 0.122289 1.90631e-06 3.95093e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the relevant books ||| 0.5 0.122289 1.90631e-06 4.66173e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the relevant circles ||| 0.333333 0.122289 1.90631e-06 2.8155e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the relevant ||| 0.0651596 0.122289 9.34091e-05 4.61557e-05 2.718 ||| 0-0 ||| 752 524574 +los ||| the remaining ||| 0.0155945 0.122289 1.52505e-05 1.40269e-05 2.718 ||| 0-0 ||| 513 524574 +los ||| the remains of cars ||| 0.5 0.122289 1.90631e-06 3.51541e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the remains of ||| 0.0434783 0.122289 1.90631e-06 2.08012e-06 2.718 ||| 0-0 ||| 23 524574 +los ||| the remains ||| 0.037037 0.122289 1.90631e-06 3.82629e-05 2.718 ||| 0-0 ||| 27 524574 +los ||| the remarks ||| 0.00239234 0.122289 1.90631e-06 1.31261e-05 2.718 ||| 0-0 ||| 418 524574 +los ||| the remit ||| 0.00446429 0.122289 1.90631e-06 7.12067e-06 2.718 ||| 0-0 ||| 224 524574 +los ||| the renewables ||| 0.111111 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| the repairs ||| 0.333333 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the repercussions of a disaster ||| 0.25 0.122289 1.90631e-06 1.30242e-13 2.718 ||| 0-0 ||| 4 524574 +los ||| the repercussions of a ||| 0.25 0.122289 1.90631e-06 5.16834e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the repercussions of ||| 0.0103093 0.122289 1.90631e-06 1.16599e-07 2.718 ||| 0-0 ||| 97 524574 +los ||| the repercussions ||| 0.00543478 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 184 524574 +los ||| the replacement ||| 0.00574713 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 174 524574 +los ||| the report 's ||| 0.0135135 0.0786353 1.90631e-06 1.07734e-06 2.718 ||| 0-0 0-2 ||| 74 524574 +los ||| the report , ||| 0.000549149 0.122289 1.90631e-06 2.09685e-05 2.718 ||| 0-0 ||| 1821 524574 +los ||| the report allows for ||| 0.333333 0.122289 1.90631e-06 3.83789e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| the report allows ||| 0.5 0.122289 1.90631e-06 4.99355e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the report highlights the ||| 0.0208333 0.122289 1.90631e-06 7.34024e-11 2.718 ||| 0-0 ||| 48 524574 +los ||| the report highlights ||| 0.00943396 0.122289 1.90631e-06 1.19564e-09 2.718 ||| 0-0 ||| 106 524574 +los ||| the report indicates , was ||| 1 0.122289 1.90631e-06 6.37234e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the report indicates , ||| 0.142857 0.122289 1.90631e-06 2.03394e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| the report indicates ||| 0.0208333 0.122289 1.90631e-06 1.70554e-09 2.718 ||| 0-0 ||| 48 524574 +los ||| the report says ||| 0.00735294 0.122289 1.90631e-06 1.21498e-08 2.718 ||| 0-0 ||| 136 524574 +los ||| the report ||| 0.000653595 0.122289 3.43136e-05 0.000175829 2.718 ||| 0-0 ||| 27540 524574 +los ||| the reported ||| 0.0454545 0.122289 1.90631e-06 1.32547e-05 2.718 ||| 0-0 ||| 22 524574 +los ||| the reports ||| 0.00275027 0.104587 9.53154e-06 0.000421664 2.718 ||| 0-0 0-1 ||| 1818 524574 +los ||| the representation of ||| 0.0075188 0.122289 1.90631e-06 2.77505e-07 2.718 ||| 0-0 ||| 133 524574 +los ||| the representation ||| 0.00645161 0.122289 1.90631e-06 5.10458e-06 2.718 ||| 0-0 ||| 155 524574 +los ||| the representative ||| 0.00233645 0.122289 1.90631e-06 1.00376e-05 2.718 ||| 0-0 ||| 428 524574 +los ||| the representatives of the ||| 0.00137741 0.122289 1.90631e-06 4.63852e-08 2.718 ||| 0-0 ||| 726 524574 +los ||| the representatives of ||| 0.00118064 0.122289 1.90631e-06 7.55561e-07 2.718 ||| 0-0 ||| 847 524574 +los ||| the representatives ||| 0.00173913 0.122289 3.81262e-06 1.38982e-05 2.718 ||| 0-0 ||| 1150 524574 +los ||| the reputation ||| 0.00606061 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-0 ||| 165 524574 +los ||| the requests in ||| 0.25 0.122289 1.90631e-06 1.19361e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| the requests ||| 0.0031746 0.122289 1.90631e-06 5.57643e-06 2.718 ||| 0-0 ||| 315 524574 +los ||| the required ||| 0.0258621 0.122289 5.71893e-06 6.80754e-05 2.718 ||| 0-0 ||| 116 524574 +los ||| the requirement for a ||| 0.025641 0.122289 1.90631e-06 6.15227e-09 2.718 ||| 0-0 ||| 39 524574 +los ||| the requirement for ||| 0.00350877 0.122289 1.90631e-06 1.38797e-07 2.718 ||| 0-0 ||| 285 524574 +los ||| the requirement ||| 0.00116686 0.122289 1.90631e-06 1.80591e-05 2.718 ||| 0-0 ||| 857 524574 +los ||| the requirements known ||| 1 0.122289 1.90631e-06 2.29529e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the requirements ||| 0.00371058 0.122289 1.14379e-05 2.08473e-05 2.718 ||| 0-0 ||| 1617 524574 +los ||| the requisite ||| 0.0444444 0.122289 3.81262e-06 1.84451e-06 2.718 ||| 0-0 ||| 45 524574 +los ||| the rescue ||| 0.030303 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 33 524574 +los ||| the reserve , would ||| 0.5 0.122289 1.90631e-06 2.58184e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the reserve , ||| 0.0294118 0.122289 1.90631e-06 4.39933e-07 2.718 ||| 0-0 ||| 34 524574 +los ||| the reserve ||| 0.00341297 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-0 ||| 293 524574 +los ||| the residue ||| 0.285714 0.122289 3.81262e-06 7.72121e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| the residues ||| 0.0769231 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 13 524574 +los ||| the resolution , ||| 0.0014881 0.122289 1.90631e-06 4.47095e-06 2.718 ||| 0-0 ||| 672 524574 +los ||| the resolution ||| 0.000507743 0.122289 7.62523e-06 3.74908e-05 2.718 ||| 0-0 ||| 7878 524574 +los ||| the resolutions ||| 0.00221239 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 452 524574 +los ||| the resources for the ||| 0.0526316 0.116423 1.90631e-06 7.8656e-07 2.718 ||| 0-0 0-1 0-2 0-3 ||| 19 524574 +los ||| the resources ||| 0.00186567 0.170935 7.62523e-06 0.00207945 2.718 ||| 0-0 0-1 ||| 2144 524574 +los ||| the respect for ||| 0.00775194 0.122289 1.90631e-06 1.42621e-06 2.718 ||| 0-0 ||| 129 524574 +los ||| the respect of ||| 0.00568182 0.122289 1.90631e-06 1.00881e-05 2.718 ||| 0-0 ||| 176 524574 +los ||| the respect ||| 0.00473934 0.122289 3.81262e-06 0.000185566 2.718 ||| 0-0 ||| 422 524574 +los ||| the respective competence ||| 1 0.122289 1.90631e-06 3.30811e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the respective ||| 0.024735 0.122289 1.33442e-05 1.37266e-05 2.718 ||| 0-0 ||| 283 524574 +los ||| the response ||| 0.00131406 0.122289 1.90631e-06 4.28956e-05 2.718 ||| 0-0 ||| 761 524574 +los ||| the responsibilities of ||| 0.00392157 0.122289 1.90631e-06 5.55011e-07 2.718 ||| 0-0 ||| 255 524574 +los ||| the responsibilities ||| 0.00186567 0.122289 1.90631e-06 1.02092e-05 2.718 ||| 0-0 ||| 536 524574 +los ||| the responsibility for ||| 0.00207039 0.122289 1.90631e-06 3.80784e-07 2.718 ||| 0-0 ||| 483 524574 +los ||| the responsibility of ||| 0.00174216 0.122289 3.81262e-06 2.69343e-06 2.718 ||| 0-0 ||| 1148 524574 +los ||| the responsibility ||| 0.00193573 0.122289 9.53154e-06 4.95445e-05 2.718 ||| 0-0 ||| 2583 524574 +los ||| the responsible ||| 0.114286 0.122289 7.62523e-06 6.34426e-05 2.718 ||| 0-0 ||| 35 524574 +los ||| the rest can ||| 0.142857 0.122289 1.90631e-06 9.64539e-08 2.718 ||| 0-0 ||| 7 524574 +los ||| the rest of the ||| 0.002185 0.122289 5.71893e-06 1.08232e-07 2.718 ||| 0-0 ||| 1373 524574 +los ||| the rest of ||| 0.00375235 0.122289 7.62523e-06 1.76298e-06 2.718 ||| 0-0 ||| 1066 524574 +los ||| the rest ||| 0.00297287 0.122289 1.52505e-05 3.24291e-05 2.718 ||| 0-0 ||| 2691 524574 +los ||| the restoration ||| 0.00298507 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 335 524574 +los ||| the restricted ||| 0.0344828 0.122289 1.90631e-06 6.77751e-06 2.718 ||| 0-0 ||| 29 524574 +los ||| the restrictions ||| 0.00259067 0.122289 1.90631e-06 8.19307e-06 2.718 ||| 0-0 ||| 386 524574 +los ||| the result , ||| 0.010101 0.122289 1.90631e-06 2.69331e-05 2.718 ||| 0-0 ||| 99 524574 +los ||| the result of ||| 0.000917011 0.122289 3.81262e-06 1.22779e-05 2.718 ||| 0-0 ||| 2181 524574 +los ||| the result that ||| 0.00333333 0.122289 1.90631e-06 3.79908e-06 2.718 ||| 0-0 ||| 300 524574 +los ||| the result will ||| 0.0588235 0.122289 1.90631e-06 1.95383e-06 2.718 ||| 0-0 ||| 17 524574 +los ||| the result ||| 0.00255576 0.122289 2.09694e-05 0.000225845 2.718 ||| 0-0 ||| 4304 524574 +los ||| the resultant ||| 0.0833333 0.122289 5.71893e-06 1.24397e-06 2.718 ||| 0-0 ||| 36 524574 +los ||| the resulting situation ||| 0.2 0.122289 1.90631e-06 1.00073e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| the resulting ||| 0.0230769 0.122289 5.71893e-06 1.94317e-05 2.718 ||| 0-0 ||| 130 524574 +los ||| the results in the ||| 0.0909091 0.122289 1.90631e-06 3.0484e-07 2.718 ||| 0-0 0-3 ||| 11 524574 +los ||| the results of those ||| 0.0666667 0.143342 1.90631e-06 2.62433e-10 2.718 ||| 0-2 0-3 ||| 15 524574 +los ||| the results of ||| 0.00131406 0.122289 5.71893e-06 1.80495e-06 2.718 ||| 0-0 ||| 2283 524574 +los ||| the results ||| 0.0029724 0.122289 2.66883e-05 3.32012e-05 2.718 ||| 0-0 ||| 4710 524574 +los ||| the return of the ||| 0.010101 0.122289 1.90631e-06 9.53474e-08 2.718 ||| 0-3 ||| 99 524574 +los ||| the return ||| 0.00167785 0.122289 1.90631e-06 2.85685e-05 2.718 ||| 0-0 ||| 596 524574 +los ||| the revenue ||| 0.0196078 0.162342 5.71893e-06 0.000155153 2.718 ||| 0-0 0-1 ||| 153 524574 +los ||| the reverse ||| 0.00843882 0.122289 3.81262e-06 4.16088e-06 2.718 ||| 0-0 ||| 237 524574 +los ||| the review ||| 0.00184162 0.122289 3.81262e-06 1.62145e-05 2.718 ||| 0-0 ||| 1086 524574 +los ||| the rewording ||| 0.0909091 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| the rich ||| 0.003861 0.122289 1.90631e-06 5.40485e-06 2.718 ||| 0-0 ||| 259 524574 +los ||| the right hand ||| 0.05 0.122289 1.90631e-06 1.09713e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| the right moment ||| 0.00961538 0.122289 1.90631e-06 4.99877e-08 2.718 ||| 0-0 ||| 104 524574 +los ||| the right place ||| 0.0078125 0.122289 1.90631e-06 4.16334e-07 2.718 ||| 0-0 ||| 128 524574 +los ||| the right ||| 0.00213279 0.122289 4.38451e-05 0.000276634 2.718 ||| 0-0 ||| 10784 524574 +los ||| the rights and duties ||| 0.0243902 0.114601 1.90631e-06 3.13621e-10 2.718 ||| 0-0 0-3 ||| 41 524574 +los ||| the rights of children , ||| 0.030303 0.122289 1.90631e-06 4.14575e-11 2.718 ||| 0-0 ||| 33 524574 +los ||| the rights of children ||| 0.00680272 0.122289 1.90631e-06 3.47638e-10 2.718 ||| 0-0 ||| 147 524574 +los ||| the rights of ||| 0.000533333 0.122289 3.81262e-06 4.66629e-06 2.718 ||| 0-0 ||| 3750 524574 +los ||| the rights ||| 0.00463679 0.0626871 4.57514e-05 6.54587e-05 2.718 ||| 0-0 0-1 ||| 5176 524574 +los ||| the rise in ||| 0.0034965 0.122289 1.90631e-06 1.15321e-06 2.718 ||| 0-0 ||| 286 524574 +los ||| the rise ||| 0.00603622 0.122289 5.71893e-06 5.38769e-05 2.718 ||| 0-0 ||| 497 524574 +los ||| the rising ||| 0.00598802 0.122289 1.90631e-06 5.40485e-06 2.718 ||| 0-0 ||| 167 524574 +los ||| the risk of exposure to ||| 1 0.122289 1.90631e-06 1.57587e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the risk of exposure ||| 0.5 0.122289 1.90631e-06 1.77347e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the risk of ||| 0.00129199 0.122289 5.71893e-06 2.72841e-06 2.718 ||| 0-0 ||| 2322 524574 +los ||| the risk that those ||| 0.5 0.122289 1.90631e-06 6.11315e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the risk that ||| 0.00361011 0.122289 1.90631e-06 8.44241e-07 2.718 ||| 0-0 ||| 277 524574 +los ||| the risk ||| 0.00254453 0.122289 1.52505e-05 5.01879e-05 2.718 ||| 0-0 ||| 3144 524574 +los ||| the risks posed ||| 0.0454545 0.124046 1.90631e-06 3.93083e-09 2.718 ||| 0-0 0-1 ||| 22 524574 +los ||| the risks ||| 0.00123916 0.122289 3.81262e-06 7.12067e-06 2.718 ||| 0-0 ||| 1614 524574 +los ||| the rival ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the river ||| 0.0126582 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 79 524574 +los ||| the rivers ||| 0.025 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 40 524574 +los ||| the road ||| 0.00225564 0.122289 5.71893e-06 3.82629e-05 2.718 ||| 0-0 ||| 1330 524574 +los ||| the roads and stimulate the ||| 1 0.122289 1.90631e-06 2.55148e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| the role of the ||| 0.00116347 0.122289 3.81262e-06 3.17825e-07 2.718 ||| 0-0 ||| 1719 524574 +los ||| the role of ||| 0.0014881 0.122289 9.53154e-06 5.17699e-06 2.718 ||| 0-0 ||| 3360 524574 +los ||| the role ||| 0.00148782 0.122289 1.52505e-05 9.52283e-05 2.718 ||| 0-0 ||| 5377 524574 +los ||| the roll call ||| 0.125 0.122289 1.90631e-06 1.09513e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| the roll ||| 0.125 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| the rolling ||| 0.142857 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| the rooftops ||| 0.0833333 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| the root of ||| 0.0045045 0.122289 1.90631e-06 4.19756e-07 2.718 ||| 0-0 ||| 222 524574 +los ||| the root vegetable ||| 1 0.122289 1.90631e-06 2.47079e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the root ||| 0.00835655 0.122289 5.71893e-06 7.72121e-06 2.718 ||| 0-0 ||| 359 524574 +los ||| the roots of ||| 0.0121951 0.122289 1.90631e-06 3.35805e-07 2.718 ||| 0-0 ||| 82 524574 +los ||| the roots ||| 0.00757576 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 132 524574 +los ||| the rostrum ||| 0.142857 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| the rounds in the ||| 1 0.122289 1.90631e-06 2.81837e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| the rounds ||| 0.0526316 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 19 524574 +los ||| the rule is ||| 0.027027 0.122289 1.90631e-06 1.09299e-06 2.718 ||| 0-0 ||| 37 524574 +los ||| the rule of ||| 0.000326797 0.122289 1.90631e-06 1.8959e-06 2.718 ||| 0-0 ||| 3060 524574 +los ||| the rule ||| 0.00190476 0.122289 1.33442e-05 3.48741e-05 2.718 ||| 0-0 ||| 3675 524574 +los ||| the rulers ||| 0.0277778 0.154041 1.90631e-06 1.41985e-05 2.718 ||| 0-0 0-1 ||| 36 524574 +los ||| the rules for the ||| 0.0204082 0.0820379 1.90631e-06 1.88539e-08 2.718 ||| 0-0 0-2 0-3 ||| 49 524574 +los ||| the rules ||| 0.000872753 0.122289 9.53154e-06 4.98447e-05 2.718 ||| 0-0 ||| 5729 524574 +los ||| the ruling ||| 0.00444444 0.122289 1.90631e-06 8.49333e-06 2.718 ||| 0-0 ||| 225 524574 +los ||| the rumours about possible mafia groups operating ||| 1 0.122289 1.90631e-06 4.46482e-27 2.718 ||| 0-0 ||| 1 524574 +los ||| the rumours about possible mafia groups ||| 1 0.122289 1.90631e-06 9.92183e-23 2.718 ||| 0-0 ||| 1 524574 +los ||| the rumours about possible mafia ||| 1 0.122289 1.90631e-06 1.49877e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the rumours about possible ||| 1 0.122289 1.90631e-06 1.07055e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the rumours about ||| 1 0.122289 1.90631e-06 1.33468e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the rumours ||| 0.0169492 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 59 524574 +los ||| the run-up ||| 0.00220264 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 454 524574 +los ||| the running ||| 0.029703 0.122289 5.71893e-06 3.27294e-05 2.718 ||| 0-0 ||| 101 524574 +los ||| the sacred ||| 0.04 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 25 524574 +los ||| the sacrosanct ||| 0.0263158 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 38 524574 +los ||| the sad truth is that ||| 0.125 0.122289 1.90631e-06 4.37711e-14 2.718 ||| 0-0 ||| 8 524574 +los ||| the sad truth is ||| 0.166667 0.122289 1.90631e-06 2.60208e-12 2.718 ||| 0-0 ||| 6 524574 +los ||| the sad truth ||| 0.166667 0.122289 1.90631e-06 8.30245e-11 2.718 ||| 0-0 ||| 6 524574 +los ||| the sad ||| 0.00735294 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 136 524574 +los ||| the safety net ||| 0.03125 0.122289 1.90631e-06 3.37095e-10 2.718 ||| 0-0 ||| 32 524574 +los ||| the safety ||| 0.00252781 0.122289 9.53154e-06 2.17481e-05 2.718 ||| 0-0 ||| 1978 524574 +los ||| the said ||| 0.00847458 0.122289 1.90631e-06 0.00017643 2.718 ||| 0-0 ||| 118 524574 +los ||| the sake of its ||| 0.111111 0.0484683 1.90631e-06 3.04143e-10 2.718 ||| 0-0 0-2 0-3 ||| 9 524574 +los ||| the sake of the ||| 0.0307018 0.0821857 1.33442e-05 6.11044e-08 2.718 ||| 0-0 0-2 0-3 ||| 228 524574 +los ||| the sake of ||| 0.00535714 0.122289 1.14379e-05 2.34131e-06 2.718 ||| 0-0 ||| 1120 524574 +los ||| the sake ||| 0.0111421 0.122289 2.28757e-05 4.30672e-05 2.718 ||| 0-0 ||| 1077 524574 +los ||| the salaries of members of parliament ||| 1 0.122289 1.90631e-06 1.62236e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the salaries of members of ||| 1 0.122289 1.90631e-06 6.73179e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the salaries of members ||| 1 0.122289 1.90631e-06 1.23828e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the salaries of ||| 0.0238095 0.122289 1.90631e-06 8.39512e-08 2.718 ||| 0-0 ||| 42 524574 +los ||| the salaries ||| 0.0235294 0.122289 3.81262e-06 1.54424e-06 2.718 ||| 0-0 ||| 85 524574 +los ||| the sale ||| 0.00209644 0.122289 1.90631e-06 5.40485e-06 2.718 ||| 0-0 ||| 477 524574 +los ||| the same , ||| 0.00540541 0.122289 3.81262e-06 4.11645e-05 2.718 ||| 0-0 ||| 370 524574 +los ||| the same European ||| 0.5 0.122289 1.90631e-06 1.15425e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| the same Muslims ||| 0.333333 0.122289 1.90631e-06 4.83254e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the same applies ||| 0.0015528 0.122289 1.90631e-06 2.89262e-08 2.718 ||| 0-0 ||| 644 524574 +los ||| the same degree ||| 0.0147059 0.122289 1.90631e-06 4.78076e-08 2.718 ||| 0-0 ||| 68 524574 +los ||| the same footing as ||| 0.08 0.122289 3.81262e-06 7.60831e-11 2.718 ||| 0-0 ||| 25 524574 +los ||| the same footing ||| 0.0566038 0.122289 5.71893e-06 7.45591e-09 2.718 ||| 0-0 ||| 53 524574 +los ||| the same level ||| 0.00357143 0.122289 1.90631e-06 2.95268e-07 2.718 ||| 0-0 ||| 280 524574 +los ||| the same line ||| 0.01 0.122289 1.90631e-06 1.01621e-07 2.718 ||| 0-0 ||| 100 524574 +los ||| the same model of ||| 0.5 0.122289 1.90631e-06 7.22469e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the same model ||| 0.0909091 0.122289 1.90631e-06 1.32895e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| the same old ||| 0.0149254 0.122289 1.90631e-06 2.65789e-08 2.718 ||| 0-0 ||| 67 524574 +los ||| the same people - it is ||| 1 0.122289 1.90631e-06 6.38757e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the same people - it ||| 1 0.122289 1.90631e-06 2.03808e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the same people - ||| 0.5 0.122289 1.90631e-06 1.14607e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the same people ||| 0.0217391 0.122289 3.81262e-06 3.03828e-07 2.718 ||| 0-0 ||| 92 524574 +los ||| the same point ||| 0.0117647 0.122289 1.90631e-06 3.01964e-07 2.718 ||| 0-0 ||| 85 524574 +los ||| the same principles upon ||| 1 0.122289 1.90631e-06 3.29964e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the same principles ||| 0.00961538 0.122289 1.90631e-06 1.39108e-08 2.718 ||| 0-0 ||| 104 524574 +los ||| the same rights ||| 0.00245098 0.122289 1.90631e-06 6.90707e-08 2.718 ||| 0-0 ||| 408 524574 +los ||| the same terms as ||| 0.0243902 0.122289 1.90631e-06 3.86615e-09 2.718 ||| 0-0 ||| 41 524574 +los ||| the same terms ||| 0.0153846 0.122289 1.90631e-06 3.78871e-07 2.718 ||| 0-0 ||| 65 524574 +los ||| the same the ||| 0.166667 0.122289 1.90631e-06 2.11913e-05 2.718 ||| 0-2 ||| 6 524574 +los ||| the same time , I ||| 0.111111 0.122289 1.90631e-06 4.78025e-10 2.718 ||| 0-0 ||| 9 524574 +los ||| the same time , and ||| 0.1 0.122289 1.90631e-06 8.46497e-10 2.718 ||| 0-0 ||| 10 524574 +los ||| the same time , the ||| 0.0104167 0.122289 1.90631e-06 4.14884e-09 2.718 ||| 0-4 ||| 96 524574 +los ||| the same time , we must ||| 0.0454545 0.122289 1.90631e-06 1.18576e-12 2.718 ||| 0-0 ||| 22 524574 +los ||| the same time , we ||| 0.030303 0.122289 1.90631e-06 7.67185e-10 2.718 ||| 0-0 ||| 33 524574 +los ||| the same time , ||| 0.00973236 0.122289 1.52505e-05 6.75797e-08 2.718 ||| 0-0 ||| 822 524574 +los ||| the same time making ||| 0.333333 0.122289 1.90631e-06 2.18003e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the same time supplements them ||| 1 0.122289 1.90631e-06 4.40821e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the same time supplements ||| 1 0.122289 1.90631e-06 1.64338e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the same time that ||| 0.0344828 0.122289 1.90631e-06 9.53253e-09 2.718 ||| 0-0 ||| 29 524574 +los ||| the same time the ||| 0.0434783 0.122289 3.81262e-06 3.47897e-08 2.718 ||| 0-0 ||| 46 524574 +los ||| the same time those of ||| 0.5 0.284705 1.90631e-06 7.36213e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| the same time those ||| 0.5 0.284705 1.90631e-06 1.35423e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| the same time turning ||| 1 0.122289 1.90631e-06 2.83342e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the same time with the ||| 0.25 0.122289 1.90631e-06 2.22463e-10 2.718 ||| 0-4 ||| 4 524574 +los ||| the same time ||| 0.0118776 0.122289 4.9564e-05 5.66684e-07 2.718 ||| 0-0 ||| 2189 524574 +los ||| the same two countries ||| 0.5 0.0957208 1.90631e-06 9.73554e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| the same values as the EU ||| 1 0.161479 1.90631e-06 2.50282e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| the same values as the ||| 0.166667 0.161479 1.90631e-06 5.05825e-11 2.718 ||| 0-2 ||| 6 524574 +los ||| the same values as ||| 0.111111 0.161479 1.90631e-06 8.2393e-10 2.718 ||| 0-2 ||| 9 524574 +los ||| the same values ||| 0.015625 0.161479 1.90631e-06 8.07426e-08 2.718 ||| 0-2 ||| 64 524574 +los ||| the same way as ||| 0.00248139 0.122289 1.90631e-06 7.59281e-09 2.718 ||| 0-0 ||| 403 524574 +los ||| the same way that ||| 0.020202 0.122289 3.81262e-06 1.25165e-08 2.718 ||| 0-0 ||| 99 524574 +los ||| the same way ||| 0.00742804 0.122289 1.52505e-05 7.44072e-07 2.718 ||| 0-0 ||| 1077 524574 +los ||| the same ||| 0.00512678 0.122289 0.0002116 0.000345181 2.718 ||| 0-0 ||| 21651 524574 +los ||| the sand ||| 0.00840336 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 119 524574 +los ||| the savings ||| 0.0107527 0.122289 1.90631e-06 3.56034e-06 2.718 ||| 0-0 ||| 93 524574 +los ||| the scale ||| 0.00136986 0.122289 1.90631e-06 2.51797e-05 2.718 ||| 0-0 ||| 730 524574 +los ||| the scenario should include ||| 0.5 0.122289 1.90631e-06 3.62381e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| the scenario should ||| 0.5 0.122289 1.90631e-06 2.73702e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the scenario ||| 0.0169492 0.122289 1.90631e-06 6.17697e-06 2.718 ||| 0-0 ||| 59 524574 +los ||| the scene ||| 0.00534759 0.122289 1.90631e-06 5.57643e-06 2.718 ||| 0-0 ||| 187 524574 +los ||| the scenes will ||| 0.25 0.122289 1.90631e-06 1.74416e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the scenes ||| 0.0327869 0.122289 3.81262e-06 2.01609e-06 2.718 ||| 0-0 ||| 61 524574 +los ||| the scheme ||| 0.0026455 0.122289 1.90631e-06 1.51422e-05 2.718 ||| 0-0 ||| 378 524574 +los ||| the scientific and ||| 0.142857 0.122289 1.90631e-06 6.77006e-08 2.718 ||| 0-0 ||| 7 524574 +los ||| the scientific ||| 0.0392157 0.122289 3.81262e-06 5.40485e-06 2.718 ||| 0-0 ||| 51 524574 +los ||| the scope for ||| 0.00497512 0.122289 1.90631e-06 3.28694e-07 2.718 ||| 0-0 ||| 201 524574 +los ||| the scope of ||| 0.001396 0.122289 5.71893e-06 2.32498e-06 2.718 ||| 0-0 ||| 2149 524574 +los ||| the scope ||| 0.00524476 0.122289 2.85946e-05 4.27669e-05 2.718 ||| 0-0 ||| 2860 524574 +los ||| the scoreboard ||| 0.0104167 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 96 524574 +los ||| the screening ||| 0.0196078 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 51 524574 +los ||| the sea ||| 0.00193798 0.122289 1.90631e-06 1.28258e-05 2.718 ||| 0-0 ||| 516 524574 +los ||| the search ||| 0.00257069 0.122289 1.90631e-06 6.00539e-06 2.718 ||| 0-0 ||| 389 524574 +los ||| the seas ||| 0.00456621 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 219 524574 +los ||| the seats ||| 0.0131579 0.122289 1.90631e-06 4.16088e-06 2.718 ||| 0-0 ||| 76 524574 +los ||| the second Conference ||| 0.5 0.122289 1.90631e-06 5.22199e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the second meeting ||| 0.05 0.122289 1.90631e-06 3.50739e-09 2.718 ||| 0-0 ||| 20 524574 +los ||| the second ||| 0.000447728 0.122289 7.62523e-06 2.79251e-05 2.718 ||| 0-0 ||| 8934 524574 +los ||| the secretarial ||| 0.25 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| the sector 's ||| 0.25 0.0786353 1.90631e-06 4.88076e-07 2.718 ||| 0-0 0-2 ||| 4 524574 +los ||| the sector of the ||| 0.0833333 0.122289 1.90631e-06 1.85759e-06 2.718 ||| 0-0 0-3 ||| 12 524574 +los ||| the sectoral ||| 0.125 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the sectors ||| 0.004329 0.122289 3.81262e-06 2.20912e-05 2.718 ||| 0-0 ||| 462 524574 +los ||| the security and ||| 0.005 0.122289 1.90631e-06 4.38979e-07 2.718 ||| 0-0 ||| 200 524574 +los ||| the security risks and a thorough ||| 0.5 0.122289 1.90631e-06 5.68488e-18 2.718 ||| 0-0 ||| 2 524574 +los ||| the security risks and a ||| 0.5 0.122289 1.90631e-06 3.23005e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the security risks and ||| 0.5 0.122289 1.90631e-06 7.28706e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| the security risks ||| 0.2 0.122289 1.90631e-06 5.81759e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| the security ||| 0.00192061 0.122289 5.71893e-06 3.50457e-05 2.718 ||| 0-0 ||| 1562 524574 +los ||| the seed producers ||| 0.5 0.36135 1.90631e-06 7.76269e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| the selected ||| 0.333333 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| the selection ||| 0.0145631 0.122289 5.71893e-06 2.48795e-06 2.718 ||| 0-0 ||| 206 524574 +los ||| the selective imposition of ||| 0.5 0.122289 1.90631e-06 5.81595e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the selective imposition ||| 0.5 0.122289 1.90631e-06 1.06982e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the selective ||| 0.142857 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| the self-employed ||| 0.00657895 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 152 524574 +los ||| the sensational cases which ||| 0.5 0.136512 1.90631e-06 6.07624e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| the sensational cases ||| 0.5 0.136512 1.90631e-06 7.15307e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| the sense that ||| 0.0034965 0.122289 1.90631e-06 1.28512e-06 2.718 ||| 0-0 ||| 286 524574 +los ||| the sense ||| 0.00534188 0.122289 9.53154e-06 7.63971e-05 2.718 ||| 0-0 ||| 936 524574 +los ||| the sensitive issue of rules of ||| 0.5 0.122289 1.90631e-06 2.16284e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| the sensitive issue of rules ||| 0.5 0.122289 1.90631e-06 3.97845e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the sensitive issue of ||| 0.0217391 0.122289 1.90631e-06 3.42379e-10 2.718 ||| 0-0 ||| 46 524574 +los ||| the sensitive issue ||| 0.0227273 0.122289 1.90631e-06 6.2979e-09 2.718 ||| 0-0 ||| 44 524574 +los ||| the sensitive ||| 0.00763359 0.122289 1.90631e-06 8.32175e-06 2.718 ||| 0-0 ||| 131 524574 +los ||| the sensitivity ||| 0.00588235 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 170 524574 +los ||| the sentence on those ||| 1 0.203497 1.90631e-06 7.23661e-10 2.718 ||| 0-0 0-3 ||| 1 524574 +los ||| the sentiments ||| 0.00909091 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 110 524574 +los ||| the separate ||| 0.0384615 0.122289 1.90631e-06 1.54424e-05 2.718 ||| 0-0 ||| 26 524574 +los ||| the series ||| 0.016129 0.122289 3.81262e-06 1.71154e-05 2.718 ||| 0-0 ||| 124 524574 +los ||| the serious ||| 0.00189934 0.122289 3.81262e-06 4.94158e-05 2.718 ||| 0-0 ||| 1053 524574 +los ||| the service of ||| 0.0107527 0.122289 1.90631e-06 1.56009e-06 2.718 ||| 0-0 ||| 93 524574 +los ||| the service ||| 0.00625 0.122289 5.71893e-06 2.86972e-05 2.718 ||| 0-0 ||| 480 524574 +los ||| the session players ||| 0.333333 0.122289 3.81262e-06 1.59486e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| the session ||| 0.00297619 0.122289 3.81262e-06 9.43704e-06 2.718 ||| 0-0 ||| 672 524574 +los ||| the sessional ||| 0.05 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| the set of ||| 0.0352941 0.122289 5.71893e-06 1.36281e-05 2.718 ||| 0-0 ||| 85 524574 +los ||| the set ||| 0.03125 0.122289 5.71893e-06 0.000250682 2.718 ||| 0-0 ||| 96 524574 +los ||| the seven ||| 0.00851064 0.122289 3.81262e-06 2.14478e-06 2.718 ||| 0-0 ||| 235 524574 +los ||| the shade of ||| 0.5 0.122289 1.90631e-06 1.63238e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the shade ||| 0.142857 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| the shape of ||| 0.0150376 0.122289 7.62523e-06 1.41085e-06 2.718 ||| 0-0 ||| 266 524574 +los ||| the shape ||| 0.0243902 0.122289 1.52505e-05 2.59519e-05 2.718 ||| 0-0 ||| 328 524574 +los ||| the shaping of ||| 0.0140845 0.122289 1.90631e-06 1.51579e-07 2.718 ||| 0-0 ||| 71 524574 +los ||| the shaping ||| 0.0142857 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-0 ||| 70 524574 +los ||| the sharp rise ||| 0.0769231 0.122289 1.90631e-06 7.16563e-10 2.718 ||| 0-0 ||| 13 524574 +los ||| the sharp ||| 0.0172414 0.122289 1.90631e-06 5.70512e-06 2.718 ||| 0-0 ||| 58 524574 +los ||| the ship 's ||| 1 0.122289 1.90631e-06 1.23353e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the ship ||| 0.0121212 0.122289 3.81262e-06 6.47724e-06 2.718 ||| 0-0 ||| 165 524574 +los ||| the ships ' ||| 0.25 0.122289 1.90631e-06 2.38694e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| the ships ||| 0.010101 0.122289 1.90631e-06 6.94909e-06 2.718 ||| 0-0 ||| 99 524574 +los ||| the shipyard ||| 0.0322581 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 31 524574 +los ||| the short term - three ||| 0.25 0.122289 1.90631e-06 1.58105e-15 2.718 ||| 0-0 ||| 4 524574 +los ||| the short term - ||| 0.111111 0.122289 1.90631e-06 2.4977e-11 2.718 ||| 0-0 ||| 9 524574 +los ||| the short term my own State will ||| 1 0.122289 1.90631e-06 7.50695e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| the short term my own State ||| 1 0.122289 1.90631e-06 8.67735e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the short term my own ||| 1 0.122289 1.90631e-06 7.21909e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the short term my ||| 1 0.122289 1.90631e-06 4.2583e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the short term ||| 0.00280505 0.122289 3.81262e-06 6.62152e-09 2.718 ||| 0-0 ||| 713 524574 +los ||| the short ||| 0.0019685 0.122289 3.81262e-06 6.05257e-05 2.718 ||| 0-0 ||| 1016 524574 +los ||| the short-term ||| 0.0232558 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-0 ||| 43 524574 +los ||| the shots ||| 0.0434783 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 23 524574 +los ||| the shoulders of the ||| 0.15 0.122289 5.71893e-06 2.21905e-08 2.718 ||| 0-0 ||| 20 524574 +los ||| the shoulders of ||| 0.0487805 0.122289 3.81262e-06 3.61457e-07 2.718 ||| 0-0 ||| 41 524574 +los ||| the shoulders ||| 0.0555556 0.122289 5.71893e-06 6.64882e-06 2.718 ||| 0-0 ||| 54 524574 +los ||| the side of those ||| 0.285714 0.203497 3.81262e-06 8.53531e-08 2.718 ||| 0-0 0-3 ||| 7 524574 +los ||| the side of ||| 0.0129032 0.122289 3.81262e-06 5.1117e-06 2.718 ||| 0-0 ||| 155 524574 +los ||| the side ||| 0.0318182 0.122289 1.33442e-05 9.40272e-05 2.718 ||| 0-0 ||| 220 524574 +los ||| the sidelines ||| 0.0208333 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 48 524574 +los ||| the sides of ||| 0.125 0.122289 1.90631e-06 8.55836e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the sides ||| 0.0208333 0.122289 1.90631e-06 1.57427e-05 2.718 ||| 0-0 ||| 48 524574 +los ||| the sight of ||| 0.0606061 0.122289 3.81262e-06 5.36355e-07 2.718 ||| 0-0 ||| 33 524574 +los ||| the sight ||| 0.0810811 0.122289 5.71893e-06 9.86599e-06 2.718 ||| 0-0 ||| 37 524574 +los ||| the signs ||| 0.00775194 0.122289 1.90631e-06 6.64882e-06 2.718 ||| 0-0 ||| 129 524574 +los ||| the simple fact is ||| 0.0714286 0.122289 1.90631e-06 1.70128e-09 2.718 ||| 0-0 ||| 14 524574 +los ||| the simple fact ||| 0.0119048 0.122289 1.90631e-06 5.42826e-08 2.718 ||| 0-0 ||| 84 524574 +los ||| the simple ||| 0.009375 0.122289 5.71893e-06 1.85309e-05 2.718 ||| 0-0 ||| 320 524574 +los ||| the simplification ||| 0.00257069 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 389 524574 +los ||| the single farm ||| 0.5 0.122289 1.90631e-06 4.90143e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the single ||| 0.0104895 0.0653085 5.71893e-06 4.58554e-05 2.718 ||| 0-0 0-1 ||| 286 524574 +los ||| the sittings ||| 0.0227273 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 44 524574 +los ||| the situation in the ||| 0.00182149 0.122289 3.81262e-06 2.90292e-07 2.718 ||| 0-0 ||| 1098 524574 +los ||| the situation in ||| 0.000638162 0.122289 5.71893e-06 4.72852e-06 2.718 ||| 0-0 ||| 4701 524574 +los ||| the situation is such that ||| 0.0714286 0.122289 1.90631e-06 2.40958e-10 2.718 ||| 0-0 ||| 14 524574 +los ||| the situation is such ||| 0.0714286 0.122289 1.90631e-06 1.43243e-08 2.718 ||| 0-0 ||| 14 524574 +los ||| the situation is ||| 0.00160385 0.122289 3.81262e-06 6.92364e-06 2.718 ||| 0-0 ||| 1247 524574 +los ||| the situation of the ||| 0.00323625 0.122289 3.81262e-06 7.37296e-07 2.718 ||| 0-0 ||| 618 524574 +los ||| the situation of those ||| 0.037037 0.136324 1.90631e-06 1.22008e-08 2.718 ||| 0-0 0-2 0-3 ||| 27 524574 +los ||| the situation of women in the ||| 0.0322581 0.122289 1.90631e-06 1.87484e-12 2.718 ||| 0-0 ||| 31 524574 +los ||| the situation of women in ||| 0.00662252 0.122289 1.90631e-06 3.05389e-11 2.718 ||| 0-0 ||| 151 524574 +los ||| the situation of women ||| 0.00341297 0.122289 1.90631e-06 1.42675e-09 2.718 ||| 0-0 ||| 293 524574 +los ||| the situation of ||| 0.00244738 0.122289 9.53154e-06 1.20097e-05 2.718 ||| 0-0 ||| 2043 524574 +los ||| the situation regarding ||| 0.005 0.122289 1.90631e-06 1.36745e-08 2.718 ||| 0-0 ||| 200 524574 +los ||| the situation that arose ||| 0.166667 0.122289 1.90631e-06 3.34449e-11 2.718 ||| 0-0 ||| 6 524574 +los ||| the situation that ||| 0.0047619 0.122289 1.90631e-06 3.7161e-06 2.718 ||| 0-0 ||| 210 524574 +los ||| the situation vis-à-vis the ||| 0.5 0.122289 1.90631e-06 3.93304e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| the situation ||| 0.00133002 0.122289 4.38451e-05 0.000220912 2.718 ||| 0-0 ||| 17293 524574 +los ||| the size ||| 0.00387097 0.122289 5.71893e-06 1.6043e-05 2.718 ||| 0-0 ||| 775 524574 +los ||| the slaughter ||| 0.0108696 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 92 524574 +los ||| the slave traders of today ||| 1 0.122289 1.90631e-06 1.00191e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the slave traders of ||| 1 0.122289 1.90631e-06 2.22004e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the slave traders ||| 0.333333 0.122289 1.90631e-06 4.08366e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| the slave ||| 0.111111 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| the sleep ||| 0.125 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| the small things ||| 0.2 0.122289 1.90631e-06 2.25842e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| the small ||| 0.00359281 0.122289 5.71893e-06 5.49493e-05 2.718 ||| 0-0 ||| 835 524574 +los ||| the small-minded , ||| 1 0.122289 1.90631e-06 2.0462e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the small-minded ||| 0.5 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the smuggling of ||| 0.0208333 0.122289 1.90631e-06 1.16599e-07 2.718 ||| 0-0 ||| 48 524574 +los ||| the smuggling ||| 0.015873 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 63 524574 +los ||| the so ||| 0.227273 0.122289 9.53154e-06 0.000973602 2.718 ||| 0-0 ||| 22 524574 +los ||| the so-called ||| 0.00220848 0.122289 9.53154e-06 1.6043e-05 2.718 ||| 0-0 ||| 2264 524574 +los ||| the social costs have been ||| 1 0.122289 1.90631e-06 1.33075e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the social costs have ||| 1 0.122289 1.90631e-06 3.98525e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the social costs ||| 0.0243902 0.122289 1.90631e-06 3.3322e-09 2.718 ||| 0-0 ||| 41 524574 +los ||| the social democrats ||| 0.0181818 0.122289 1.90631e-06 4.87423e-11 2.718 ||| 0-0 ||| 55 524574 +los ||| the social divide ||| 0.0833333 0.122289 1.90631e-06 2.57005e-10 2.718 ||| 0-0 ||| 12 524574 +los ||| the social partners ||| 0.000786163 0.122289 1.90631e-06 1.13437e-09 2.718 ||| 0-0 ||| 1272 524574 +los ||| the social ||| 0.0306122 0.122289 2.28757e-05 4.43112e-05 2.718 ||| 0-0 ||| 392 524574 +los ||| the socialists and ||| 0.0204082 0.15697 1.90631e-06 5.27635e-07 2.718 ||| 0-0 0-1 ||| 49 524574 +los ||| the socialists ||| 0.00526316 0.15697 1.90631e-06 4.21235e-05 2.718 ||| 0-0 0-1 ||| 190 524574 +los ||| the soil really can be ||| 1 0.122289 1.90631e-06 8.06422e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the soil really can ||| 1 0.122289 1.90631e-06 4.44974e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the soil really ||| 1 0.122289 1.90631e-06 1.49606e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the soil ||| 0.00904977 0.122289 3.81262e-06 3.08849e-06 2.718 ||| 0-0 ||| 221 524574 +los ||| the solemn ||| 0.04 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 25 524574 +los ||| the solidarity between the ||| 0.0666667 0.122289 1.90631e-06 1.82706e-10 2.718 ||| 0-3 ||| 15 524574 +los ||| the sometimes ||| 0.0588235 0.122289 1.90631e-06 2.4236e-05 2.718 ||| 0-0 ||| 17 524574 +los ||| the somewhat lax ||| 1 0.122289 1.90631e-06 4.50147e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the somewhat ||| 0.0625 0.122289 1.90631e-06 2.50082e-05 2.718 ||| 0-0 ||| 16 524574 +los ||| the sort of ||| 0.0147059 0.122289 1.33442e-05 3.7265e-06 2.718 ||| 0-0 ||| 476 524574 +los ||| the sort ||| 0.0168634 0.122289 1.90631e-05 6.85472e-05 2.718 ||| 0-0 ||| 593 524574 +los ||| the sorts of ||| 0.0555556 0.122289 1.90631e-06 3.61457e-07 2.718 ||| 0-0 ||| 18 524574 +los ||| the sorts ||| 0.05 0.122289 1.90631e-06 6.64882e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| the soul ||| 0.0217391 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 46 524574 +los ||| the souls ||| 0.1 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the source of wit ||| 1 0.122289 1.90631e-06 2.07966e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the source of ||| 0.00342466 0.122289 1.90631e-06 1.48547e-06 2.718 ||| 0-0 ||| 292 524574 +los ||| the source ||| 0.0075 0.122289 5.71893e-06 2.73245e-05 2.718 ||| 0-0 ||| 400 524574 +los ||| the sources ||| 0.0060241 0.122289 1.90631e-06 1.51422e-05 2.718 ||| 0-0 ||| 166 524574 +los ||| the southern countries ||| 0.00990099 0.122289 1.90631e-06 5.21199e-10 2.718 ||| 0-0 ||| 101 524574 +los ||| the southern ||| 0.015625 0.122289 3.81262e-06 1.37266e-06 2.718 ||| 0-0 ||| 128 524574 +los ||| the sovereign ||| 0.0571429 0.122289 3.81262e-06 2.61663e-06 2.718 ||| 0-0 ||| 35 524574 +los ||| the space of a ||| 0.03125 0.122289 1.90631e-06 4.27939e-08 2.718 ||| 0-0 ||| 32 524574 +los ||| the space of ||| 0.00719424 0.122289 1.90631e-06 9.65439e-07 2.718 ||| 0-0 ||| 139 524574 +los ||| the space ||| 0.00884956 0.122289 3.81262e-06 1.77588e-05 2.718 ||| 0-0 ||| 226 524574 +los ||| the speaker ||| 0.000586854 0.122289 1.90631e-06 8.02148e-06 2.718 ||| 0-0 ||| 1704 524574 +los ||| the speakers ||| 0.00496689 0.122289 5.71893e-06 8.66492e-06 2.718 ||| 0-0 ||| 604 524574 +los ||| the special needs ||| 0.0204082 0.0619651 1.90631e-06 1.32697e-09 2.718 ||| 0-0 0-1 ||| 49 524574 +los ||| the special ||| 0.0147783 0.122289 5.71893e-06 3.67187e-05 2.718 ||| 0-0 ||| 203 524574 +los ||| the specialist ||| 0.125 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 8 524574 +los ||| the specific ||| 0.0340909 0.122289 1.71568e-05 6.48153e-05 2.718 ||| 0-0 ||| 264 524574 +los ||| the spectre of the ||| 0.0833333 0.0821857 1.90631e-06 1.52153e-09 2.718 ||| 0-0 0-2 0-3 ||| 12 524574 +los ||| the spectrum ||| 0.0151515 0.122289 1.90631e-06 3.26007e-06 2.718 ||| 0-0 ||| 66 524574 +los ||| the speeches by the ||| 0.0434783 0.0836083 1.90631e-06 2.68244e-09 2.718 ||| 0-0 0-2 0-3 ||| 23 524574 +los ||| the speed with which such ||| 1 0.122289 1.90631e-06 9.54481e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the speed with which ||| 0.00689655 0.122289 1.90631e-06 4.61347e-10 2.718 ||| 0-0 ||| 145 524574 +los ||| the speed with ||| 0.00485437 0.122289 1.90631e-06 5.43106e-08 2.718 ||| 0-0 ||| 206 524574 +los ||| the speed ||| 0.00424628 0.122289 3.81262e-06 8.49333e-06 2.718 ||| 0-0 ||| 471 524574 +los ||| the spending ||| 0.00854701 0.122289 1.90631e-06 9.09387e-06 2.718 ||| 0-0 ||| 117 524574 +los ||| the sphere of public contracting ||| 1 0.122289 1.90631e-06 4.7822e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the sphere of public ||| 0.333333 0.122289 1.90631e-06 1.01749e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the sphere of ||| 0.00737101 0.122289 5.71893e-06 6.29634e-07 2.718 ||| 0-0 ||| 407 524574 +los ||| the sphere ||| 0.0134409 0.122289 9.53154e-06 1.15818e-05 2.718 ||| 0-0 ||| 372 524574 +los ||| the spin ||| 0.25 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| the sportsmen ||| 0.333333 0.36875 1.90631e-06 3.52389e-06 2.718 ||| 0-1 ||| 3 524574 +los ||| the spot ||| 0.00793651 0.122289 1.90631e-06 5.8767e-06 2.718 ||| 0-0 ||| 126 524574 +los ||| the stability and growth ||| 0.1 0.122289 1.90631e-06 5.41272e-12 2.718 ||| 0-0 ||| 10 524574 +los ||| the stability and ||| 0.00483092 0.122289 1.90631e-06 1.12297e-07 2.718 ||| 0-0 ||| 207 524574 +los ||| the stability ||| 0.00321199 0.122289 5.71893e-06 8.96519e-06 2.718 ||| 0-0 ||| 934 524574 +los ||| the staff ||| 0.00425532 0.122289 3.81262e-06 1.72869e-05 2.718 ||| 0-0 ||| 470 524574 +los ||| the stage where ||| 0.027027 0.122289 1.90631e-06 1.94571e-08 2.718 ||| 0-0 ||| 37 524574 +los ||| the stage ||| 0.00835655 0.122289 5.71893e-06 6.42148e-05 2.718 ||| 0-0 ||| 359 524574 +los ||| the stake ||| 0.047619 0.122289 1.90631e-06 1.29545e-05 2.718 ||| 0-0 ||| 21 524574 +los ||| the standard of ||| 0.0042735 0.122289 1.90631e-06 1.09836e-06 2.718 ||| 0-0 ||| 234 524574 +los ||| the standard ||| 0.00722892 0.122289 5.71893e-06 2.02038e-05 2.718 ||| 0-0 ||| 415 524574 +los ||| the standards ||| 0.00258732 0.122289 3.81262e-06 3.13567e-05 2.718 ||| 0-0 ||| 773 524574 +los ||| the stands ||| 0.111111 0.122289 1.90631e-06 2.36355e-05 2.718 ||| 0-0 ||| 9 524574 +los ||| the start , those components of ||| 1 0.122289 1.90631e-06 2.40547e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the start , those components ||| 1 0.122289 1.90631e-06 4.42474e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the start , those ||| 1 0.122289 1.90631e-06 5.14505e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the start , ||| 0.010101 0.122289 1.90631e-06 7.10544e-06 2.718 ||| 0-0 ||| 99 524574 +los ||| the start to address the ||| 1 0.122289 1.90631e-06 1.73281e-10 2.718 ||| 0-0 0-4 ||| 1 524574 +los ||| the start ||| 0.0017616 0.122289 5.71893e-06 5.9582e-05 2.718 ||| 0-0 ||| 1703 524574 +los ||| the state of the ||| 0.00859599 0.0821857 5.71893e-06 1.53735e-07 2.718 ||| 0-0 0-2 0-3 ||| 349 524574 +los ||| the state of ||| 0.000877963 0.122289 1.90631e-06 5.89058e-06 2.718 ||| 0-0 ||| 1139 524574 +los ||| the state ||| 0.00133869 0.122289 5.71893e-06 0.000108354 2.718 ||| 0-0 ||| 2241 524574 +los ||| the statement of ||| 0.00840336 0.122289 1.90631e-06 1.73732e-06 2.718 ||| 0-0 ||| 119 524574 +los ||| the statement ||| 0.000651042 0.122289 1.90631e-06 3.19572e-05 2.718 ||| 0-0 ||| 1536 524574 +los ||| the statements made ||| 0.00480769 0.122289 1.90631e-06 2.87545e-08 2.718 ||| 0-0 ||| 208 524574 +los ||| the statements of ||| 0.0151515 0.122289 1.90631e-06 7.46233e-07 2.718 ||| 0-0 ||| 66 524574 +los ||| the statements ||| 0.00228571 0.122289 3.81262e-06 1.37266e-05 2.718 ||| 0-0 ||| 875 524574 +los ||| the states in ||| 0.0136986 0.122289 1.90631e-06 6.90456e-07 2.718 ||| 0-0 ||| 73 524574 +los ||| the states ||| 0.00404858 0.122289 5.71893e-06 3.22575e-05 2.718 ||| 0-0 ||| 741 524574 +los ||| the statistical ||| 0.1 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| the status of a candidate country , ||| 0.333333 0.0335599 1.90631e-06 9.86003e-17 2.718 ||| 0-4 ||| 3 524574 +los ||| the status of a candidate country ||| 0.111111 0.0335599 1.90631e-06 8.26804e-16 2.718 ||| 0-4 ||| 9 524574 +los ||| the status of a candidate ||| 0.166667 0.0335599 1.90631e-06 2.29732e-12 2.718 ||| 0-4 ||| 6 524574 +los ||| the status of ||| 0.00220751 0.122289 3.81262e-06 2.35763e-06 2.718 ||| 0-0 ||| 906 524574 +los ||| the status quo of ||| 0.111111 0.122289 1.90631e-06 3.39499e-11 2.718 ||| 0-0 ||| 9 524574 +los ||| the status quo ||| 0.0030581 0.122289 1.90631e-06 6.24492e-10 2.718 ||| 0-0 ||| 327 524574 +los ||| the status ||| 0.00416089 0.122289 1.14379e-05 4.33675e-05 2.718 ||| 0-0 ||| 1442 524574 +los ||| the statute book ||| 0.0222222 0.122289 1.90631e-06 1.16976e-10 2.718 ||| 0-0 ||| 45 524574 +los ||| the statute ||| 0.00440529 0.122289 1.90631e-06 4.33246e-06 2.718 ||| 0-0 ||| 227 524574 +los ||| the statutory ||| 0.125 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the steady ||| 0.0384615 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| the steel ||| 0.0333333 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| the steps ||| 0.00226244 0.122289 1.90631e-06 2.53084e-05 2.718 ||| 0-0 ||| 442 524574 +los ||| the sterling ||| 0.0322581 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 31 524574 +los ||| the sticking points ||| 0.125 0.122289 1.90631e-06 3.23184e-10 2.718 ||| 0-0 ||| 8 524574 +los ||| the sticking ||| 0.2 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| the stipulation ||| 0.0277778 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 36 524574 +los ||| the stock breeders ||| 0.166667 0.122289 1.90631e-06 1.25513e-11 2.718 ||| 0-0 ||| 6 524574 +los ||| the stock ||| 0.0198676 0.122289 5.71893e-06 1.14102e-05 2.718 ||| 0-0 ||| 151 524574 +los ||| the stocking of ||| 1 0.122289 1.90631e-06 1.63238e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the stocking ||| 0.2 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| the stocks ||| 0.00584795 0.0432263 1.90631e-06 1.06822e-05 2.718 ||| 0-1 ||| 171 524574 +los ||| the storms of the ||| 0.25 0.122289 1.90631e-06 2.0043e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| the storms of ||| 0.0714286 0.122289 1.90631e-06 3.26477e-08 2.718 ||| 0-0 ||| 14 524574 +los ||| the storms ||| 0.0136986 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 73 524574 +los ||| the strain ||| 0.0444444 0.122289 3.81262e-06 2.61663e-06 2.718 ||| 0-0 ||| 45 524574 +los ||| the strangest ||| 1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the strategic ||| 0.0217391 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 46 524574 +los ||| the strategies employed ||| 0.2 0.122289 1.90631e-06 6.67113e-11 2.718 ||| 0-0 ||| 5 524574 +los ||| the strategies ||| 0.00591716 0.122289 1.90631e-06 2.31636e-06 2.718 ||| 0-0 ||| 169 524574 +los ||| the streets , ||| 0.0181818 0.122289 1.90631e-06 1.63696e-07 2.718 ||| 0-0 ||| 55 524574 +los ||| the streets ||| 0.0016129 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 620 524574 +los ||| the strictest ||| 0.015625 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 64 524574 +los ||| the strongest terms to ||| 0.333333 0.122289 1.90631e-06 3.01222e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the strongest terms ||| 0.0147059 0.122289 1.90631e-06 3.38992e-09 2.718 ||| 0-0 ||| 68 524574 +los ||| the strongest ||| 0.00497512 0.122289 1.90631e-06 3.08849e-06 2.718 ||| 0-0 ||| 201 524574 +los ||| the structural fund ||| 0.02 0.0654123 1.90631e-06 8.89072e-10 2.718 ||| 0-0 0-1 ||| 50 524574 +los ||| the structural ||| 0.0246914 0.122289 3.81262e-06 6.64882e-06 2.718 ||| 0-0 ||| 81 524574 +los ||| the structures needed ||| 0.333333 0.122289 1.90631e-06 1.24064e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the structures ||| 0.0114613 0.122289 7.62523e-06 9.26546e-06 2.718 ||| 0-0 ||| 349 524574 +los ||| the stuff ||| 0.0285714 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 35 524574 +los ||| the style of ||| 0.0666667 0.122289 1.90631e-06 2.0055e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| the style ||| 0.1 0.122289 5.71893e-06 3.68902e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| the subject matter and ||| 0.111111 0.122289 1.90631e-06 3.00914e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| the subject matter ||| 0.00892857 0.122289 1.90631e-06 2.40234e-07 2.718 ||| 0-0 ||| 112 524574 +los ||| the subject of the ||| 0.00330033 0.0821857 3.81262e-06 3.28528e-07 2.718 ||| 0-0 0-2 0-3 ||| 606 524574 +los ||| the subject of today 's ||| 0.125 0.122289 1.90631e-06 1.08188e-11 2.718 ||| 0-0 ||| 8 524574 +los ||| the subject of today ||| 0.111111 0.122289 1.90631e-06 5.68097e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| the subject of ||| 0.00724428 0.122289 4.76577e-05 1.2588e-05 2.718 ||| 0-0 ||| 3451 524574 +los ||| the subject ||| 0.0100287 0.122289 0.000106753 0.000231551 2.718 ||| 0-0 ||| 5584 524574 +los ||| the subjects of ||| 0.0114943 0.122289 1.90631e-06 5.55011e-07 2.718 ||| 0-0 ||| 87 524574 +los ||| the subjects ||| 0.010101 0.122289 5.71893e-06 1.02092e-05 2.718 ||| 0-0 ||| 297 524574 +los ||| the subjugation ||| 0.0833333 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| the subsidies ||| 0.00543478 0.122289 1.90631e-06 5.57643e-06 2.718 ||| 0-0 ||| 184 524574 +los ||| the substance of the ||| 0.00320513 0.122289 1.90631e-06 4.22335e-08 2.718 ||| 0-3 ||| 312 524574 +los ||| the substances ||| 0.00666667 0.122289 1.90631e-06 9.26546e-06 2.718 ||| 0-0 ||| 150 524574 +los ||| the substantial ||| 0.00641026 0.122289 1.90631e-06 1.28258e-05 2.718 ||| 0-0 ||| 156 524574 +los ||| the substantive ||| 0.0263158 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 38 524574 +los ||| the sugar sector ||| 0.0166667 0.122289 1.90631e-06 7.48778e-10 2.718 ||| 0-0 ||| 60 524574 +los ||| the sugar ||| 0.047619 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| the suggested ||| 0.05 0.122289 1.90631e-06 8.49333e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| the suggestion ||| 0.00196078 0.122289 1.90631e-06 7.12067e-06 2.718 ||| 0-0 ||| 510 524574 +los ||| the sum of ||| 0.0136364 0.122289 5.71893e-06 9.81763e-07 2.718 ||| 0-0 ||| 220 524574 +los ||| the sum ||| 0.0123762 0.122289 9.53154e-06 1.80591e-05 2.718 ||| 0-0 ||| 404 524574 +los ||| the summit did ||| 1 0.122289 1.90631e-06 6.23462e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the summit ||| 0.00106157 0.122289 3.81262e-06 1.37266e-05 2.718 ||| 0-0 ||| 1884 524574 +los ||| the sun ||| 0.00961538 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 104 524574 +los ||| the supervisory ||| 0.047619 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| the supply and demand of ||| 0.142857 0.122289 1.90631e-06 8.06316e-13 2.718 ||| 0-0 ||| 7 524574 +los ||| the supply and demand ||| 0.0434783 0.122289 1.90631e-06 1.48318e-11 2.718 ||| 0-0 ||| 23 524574 +los ||| the supply and ||| 0.0114943 0.122289 1.90631e-06 2.76713e-07 2.718 ||| 0-0 ||| 87 524574 +los ||| the supply chain by ||| 0.333333 0.122289 1.90631e-06 1.20621e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| the supply chain ||| 0.0102041 0.122289 1.90631e-06 2.29749e-10 2.718 ||| 0-0 ||| 98 524574 +los ||| the supply of ||| 0.00240385 0.122289 1.90631e-06 1.20097e-06 2.718 ||| 0-0 ||| 416 524574 +los ||| the supply ||| 0.00675676 0.122289 7.62523e-06 2.20912e-05 2.718 ||| 0-0 ||| 592 524574 +los ||| the support of the ||| 0.00208117 0.0821857 3.81262e-06 2.08084e-07 2.718 ||| 0-0 0-2 0-3 ||| 961 524574 +los ||| the support of ||| 0.000633714 0.122289 1.90631e-06 7.97303e-06 2.718 ||| 0-0 ||| 1578 524574 +los ||| the support ||| 0.00122324 0.122289 7.62523e-06 0.00014666 2.718 ||| 0-0 ||| 3270 524574 +los ||| the supporters ||| 0.00961538 0.146923 1.90631e-06 6.33997e-05 2.718 ||| 0-0 0-1 ||| 104 524574 +los ||| the supreme ||| 0.0333333 0.122289 1.90631e-06 1.84451e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| the surface ||| 0.00689655 0.122289 1.90631e-06 5.40485e-06 2.718 ||| 0-0 ||| 145 524574 +los ||| the surrounding area ||| 0.0263158 0.122289 1.90631e-06 2.69e-09 2.718 ||| 0-0 ||| 38 524574 +los ||| the surrounding ||| 0.0444444 0.122289 3.81262e-06 6.47724e-06 2.718 ||| 0-0 ||| 45 524574 +los ||| the survivors need to be provided ||| 1 0.122289 1.90631e-06 1.01619e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the survivors need to be ||| 1 0.122289 1.90631e-06 4.43362e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the survivors need to ||| 1 0.122289 1.90631e-06 2.44642e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the survivors need ||| 1 0.122289 1.90631e-06 2.75317e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the survivors ||| 0.0166667 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 60 524574 +los ||| the suspects was capable of ||| 1 0.122289 1.90631e-06 2.68499e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the suspects was capable ||| 1 0.122289 1.90631e-06 4.93891e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the suspects was ||| 0.5 0.122289 1.90631e-06 9.40744e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the suspects ||| 0.0454545 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 22 524574 +los ||| the sustainable ||| 0.0238095 0.122289 1.90631e-06 6.00539e-06 2.718 ||| 0-0 ||| 42 524574 +los ||| the symbols ||| 0.00719424 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 139 524574 +los ||| the symptoms ||| 0.00961538 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 104 524574 +los ||| the system can be ||| 0.111111 0.122289 1.90631e-06 6.44873e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| the system can ||| 0.0555556 0.122289 1.90631e-06 3.55833e-07 2.718 ||| 0-0 ||| 18 524574 +los ||| the system is allowed to continue ||| 0.5 0.122289 1.90631e-06 1.2482e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the system is allowed to ||| 0.5 0.122289 1.90631e-06 5.39411e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the system is allowed ||| 0.5 0.122289 1.90631e-06 6.07047e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the system is ||| 0.0118343 0.122289 3.81262e-06 3.74952e-06 2.718 ||| 0-0 ||| 169 524574 +los ||| the system ||| 0.00299312 0.122289 1.90631e-05 0.000119636 2.718 ||| 0-0 ||| 3341 524574 +los ||| the systems ||| 0.003125 0.167931 1.90631e-06 0.00139381 2.718 ||| 0-0 0-1 ||| 320 524574 +los ||| the table , ||| 0.00460829 0.122289 1.90631e-06 3.4632e-06 2.718 ||| 0-0 ||| 217 524574 +los ||| the table before us . jointly ||| 0.5 0.122289 1.90631e-06 1.45837e-18 2.718 ||| 0-0 ||| 2 524574 +los ||| the table before us . ||| 0.333333 0.122289 1.90631e-06 6.34072e-14 2.718 ||| 0-0 ||| 3 524574 +los ||| the table before us ||| 0.166667 0.122289 1.90631e-06 2.09334e-11 2.718 ||| 0-0 ||| 6 524574 +los ||| the table before ||| 0.0625 0.122289 1.90631e-06 7.26299e-09 2.718 ||| 0-0 ||| 16 524574 +los ||| the table today under ||| 1 0.122289 1.90631e-06 4.7024e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the table today ||| 0.0540541 0.122289 3.81262e-06 1.31059e-08 2.718 ||| 0-0 ||| 37 524574 +los ||| the table ||| 0.00434243 0.122289 1.33442e-05 2.90403e-05 2.718 ||| 0-0 ||| 1612 524574 +los ||| the tact ||| 0.5 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the tactic of ||| 0.0833333 0.0019787 1.90631e-06 2.23365e-10 2.718 ||| 0-2 ||| 12 524574 +los ||| the takeover ||| 0.0454545 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 22 524574 +los ||| the talking points a ||| 0.5 0.122289 1.90631e-06 2.70207e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the talking points ||| 0.5 0.122289 1.90631e-06 6.09592e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the talking ||| 0.0588235 0.122289 1.90631e-06 4.69278e-05 2.718 ||| 0-0 ||| 17 524574 +los ||| the target group ||| 0.0526316 0.122289 1.90631e-06 2.08843e-09 2.718 ||| 0-0 ||| 19 524574 +los ||| the target ||| 0.00690846 0.122289 7.62523e-06 1.62145e-05 2.718 ||| 0-0 ||| 579 524574 +los ||| the targeted ||| 0.0526316 0.122289 1.90631e-06 1.20537e-05 2.718 ||| 0-0 ||| 19 524574 +los ||| the targets are ||| 0.0416667 0.122289 1.90631e-06 1.54901e-07 2.718 ||| 0-0 ||| 24 524574 +los ||| the targets ||| 0.00466563 0.122289 5.71893e-06 1.02092e-05 2.718 ||| 0-0 ||| 643 524574 +los ||| the task before us ||| 0.125 0.122289 1.90631e-06 3.89602e-11 2.718 ||| 0-0 ||| 8 524574 +los ||| the task before ||| 0.0909091 0.122289 1.90631e-06 1.35175e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| the task of those in this House ||| 1 0.122289 1.90631e-06 7.35934e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the task of those in this ||| 1 0.122289 1.90631e-06 2.94256e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the task of those in ||| 1 0.122289 1.90631e-06 4.55406e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the task of those ||| 0.4 0.122289 3.81262e-06 2.12762e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| the task of ||| 0.00238095 0.122289 3.81262e-06 2.93829e-06 2.718 ||| 0-0 ||| 840 524574 +los ||| the task ||| 0.00576184 0.122289 1.71568e-05 5.40485e-05 2.718 ||| 0-0 ||| 1562 524574 +los ||| the tax burden ||| 0.00515464 0.122289 1.90631e-06 1.18115e-09 2.718 ||| 0-0 ||| 194 524574 +los ||| the tax ||| 0.00877193 0.122289 3.81262e-06 2.71529e-05 2.718 ||| 0-0 ||| 228 524574 +los ||| the taxation of ||| 0.00574713 0.122289 1.90631e-06 2.0055e-07 2.718 ||| 0-0 ||| 174 524574 +los ||| the taxation ||| 0.00483092 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-0 ||| 207 524574 +los ||| the taxpayers , ||| 0.0416667 0.122289 1.90631e-06 1.4835e-07 2.718 ||| 0-0 ||| 24 524574 +los ||| the taxpayers have ||| 0.2 0.122289 1.90631e-06 1.48777e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| the taxpayers ||| 0.00917431 0.122289 3.81262e-06 1.24397e-06 2.718 ||| 0-0 ||| 218 524574 +los ||| the technical and ||| 0.05 0.122289 1.90631e-06 1.77848e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| the technical ||| 0.0247934 0.122289 5.71893e-06 1.41985e-05 2.718 ||| 0-0 ||| 121 524574 +los ||| the technological need for the additive to ||| 1 0.122289 1.90631e-06 5.67263e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| the technological need for the additive ||| 1 0.122289 1.90631e-06 6.38392e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the technological need for the ||| 1 0.122289 1.90631e-06 1.59598e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the technological need for ||| 1 0.122289 1.90631e-06 2.59966e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the technological need ||| 0.5 0.122289 1.90631e-06 3.38247e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the technological ||| 0.1 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| the teeth by the ||| 1 0.0836083 1.90631e-06 1.8181e-09 2.718 ||| 0-0 0-2 0-3 ||| 1 524574 +los ||| the teeth for ||| 1 0.122289 1.90631e-06 2.01107e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the teeth ||| 0.03125 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 32 524574 +los ||| the telecom ||| 0.111111 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| the telecommunications sector ||| 0.00952381 0.122289 1.90631e-06 2.86766e-10 2.718 ||| 0-0 ||| 105 524574 +los ||| the telecommunications ||| 0.0172414 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 58 524574 +los ||| the temporary ||| 0.04 0.122289 1.90631e-06 6.64882e-06 2.718 ||| 0-0 ||| 25 524574 +los ||| the term ||| 0.00313808 0.122289 5.71893e-06 4.69278e-05 2.718 ||| 0-0 ||| 956 524574 +los ||| the terms of the ||| 0.0060241 0.062134 3.81262e-06 9.5605e-08 2.718 ||| 0-2 0-3 ||| 332 524574 +los ||| the terms of ||| 0.00674157 0.122289 5.71893e-06 2.55958e-05 2.718 ||| 0-0 ||| 445 524574 +los ||| the terms ||| 0.00849057 0.122289 1.71568e-05 0.000470822 2.718 ||| 0-0 ||| 1060 524574 +los ||| the terrible ||| 0.00217865 0.122289 1.90631e-06 6.34855e-06 2.718 ||| 0-0 ||| 459 524574 +los ||| the territory of the ||| 0.0060241 0.0821857 3.81262e-06 1.8806e-08 2.718 ||| 0-0 0-2 0-3 ||| 332 524574 +los ||| the territory ||| 0.00131926 0.122289 1.90631e-06 1.32547e-05 2.718 ||| 0-0 ||| 758 524574 +los ||| the terrorists of ||| 0.125 0.209359 1.90631e-06 1.50553e-05 2.718 ||| 0-0 0-1 ||| 8 524574 +los ||| the terrorists ||| 0.00706714 0.122289 3.81262e-06 1.71583e-06 2.718 ||| 0-0 ||| 283 524574 +los ||| the test ||| 0.00307692 0.122289 1.90631e-06 1.06381e-05 2.718 ||| 0-0 ||| 325 524574 +los ||| the tests ||| 0.00564972 0.122289 1.90631e-06 7.12067e-06 2.718 ||| 0-0 ||| 177 524574 +los ||| the text ||| 0.000682594 0.122289 5.71893e-06 3.70618e-05 2.718 ||| 0-0 ||| 4395 524574 +los ||| the theatres ||| 0.333333 0.176529 1.90631e-06 3.77482e-06 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| the themes ||| 0.0175439 0.0713279 1.90631e-06 4.16088e-06 2.718 ||| 0-0 0-1 ||| 57 524574 +los ||| the then ||| 0.0148515 0.122289 5.71893e-06 0.000690791 2.718 ||| 0-0 ||| 202 524574 +los ||| the these ||| 1 0.0731627 1.90631e-06 0.00104558 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the thing that really matters ||| 1 0.122289 1.90631e-06 2.35955e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the thing that really ||| 1 0.122289 1.90631e-06 1.27544e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the thing that ||| 0.0232558 0.122289 1.90631e-06 2.63302e-06 2.718 ||| 0-0 ||| 43 524574 +los ||| the thing ||| 0.0246914 0.122289 3.81262e-06 0.000156526 2.718 ||| 0-0 ||| 81 524574 +los ||| the things which have been ||| 0.333333 0.122289 1.90631e-06 5.98087e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| the things which have ||| 0.333333 0.122289 1.90631e-06 1.79111e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the things which ||| 0.0181818 0.122289 1.90631e-06 1.49761e-06 2.718 ||| 0-0 ||| 55 524574 +los ||| the things ||| 0.00119332 0.122289 1.90631e-06 0.000176301 2.718 ||| 0-0 ||| 838 524574 +los ||| the thinking of ||| 0.047619 0.122289 1.90631e-06 1.728e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| the thinking ||| 0.00497512 0.122289 1.90631e-06 3.17857e-05 2.718 ||| 0-0 ||| 201 524574 +los ||| the third priority is easily forgotten ||| 1 0.122289 1.90631e-06 8.20617e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| the third priority is easily ||| 1 0.122289 1.90631e-06 1.41486e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the third priority is ||| 0.037037 0.122289 1.90631e-06 3.51081e-11 2.718 ||| 0-0 ||| 27 524574 +los ||| the third priority ||| 0.0185185 0.122289 1.90631e-06 1.12019e-09 2.718 ||| 0-0 ||| 54 524574 +los ||| the third ||| 0.000537346 0.122289 3.81262e-06 2.00752e-05 2.718 ||| 0-0 ||| 3722 524574 +los ||| the those ||| 0.25 0.203497 1.90631e-06 0.00716254 2.718 ||| 0-0 0-1 ||| 4 524574 +los ||| the thought ||| 0.0176991 0.122289 3.81262e-06 3.56463e-05 2.718 ||| 0-0 ||| 113 524574 +los ||| the thousands ||| 0.00714286 0.122289 3.81262e-06 4.63273e-06 2.718 ||| 0-0 ||| 280 524574 +los ||| the threat of terrorism is still ||| 1 0.122289 1.90631e-06 5.58901e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the threat of terrorism is ||| 0.0833333 0.122289 1.90631e-06 7.42035e-13 2.718 ||| 0-0 ||| 12 524574 +los ||| the threat of terrorism ||| 0.0138889 0.122289 1.90631e-06 2.36761e-11 2.718 ||| 0-0 ||| 72 524574 +los ||| the threat of ||| 0.00291545 0.122289 3.81262e-06 9.14135e-07 2.718 ||| 0-0 ||| 686 524574 +los ||| the threat ||| 0.00345125 0.122289 7.62523e-06 1.68151e-05 2.718 ||| 0-0 ||| 1159 524574 +los ||| the three regionally based ||| 1 0.122289 1.90631e-06 4.45905e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the three regionally ||| 1 0.122289 1.90631e-06 1.90071e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the three ||| 0.00311818 0.122289 1.90631e-05 2.71529e-05 2.718 ||| 0-0 ||| 3207 524574 +los ||| the threshold ||| 0.00299401 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-0 ||| 334 524574 +los ||| the throat ||| 0.333333 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| the thumb of ||| 0.111111 0.122289 1.90631e-06 2.56518e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| the thumb ||| 0.0769231 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 13 524574 +los ||| the ties ||| 0.0188679 0.128046 1.90631e-06 5.5464e-05 2.718 ||| 0-0 0-1 ||| 53 524574 +los ||| the time , ||| 0.00194175 0.122289 1.90631e-06 8.39813e-05 2.718 ||| 0-0 ||| 515 524574 +los ||| the time being , ||| 0.00378788 0.122289 1.90631e-06 2.38994e-07 2.718 ||| 0-0 ||| 264 524574 +los ||| the time being to my elders ||| 1 0.122289 1.90631e-06 4.58086e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the time being to my ||| 1 0.122289 1.90631e-06 1.14522e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the time being to ||| 0.333333 0.122289 1.90631e-06 1.78077e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the time being ||| 0.00361011 0.122289 3.81262e-06 2.00406e-06 2.718 ||| 0-0 ||| 554 524574 +los ||| the time in ||| 0.0333333 0.122289 1.90631e-06 1.50734e-05 2.718 ||| 0-0 ||| 30 524574 +los ||| the time is over ||| 0.5 0.122289 1.90631e-06 1.06272e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the time is ||| 0.00819672 0.122289 1.90631e-06 2.2071e-05 2.718 ||| 0-0 ||| 122 524574 +los ||| the time of the ||| 0.0047619 0.0821857 3.81262e-06 9.99155e-07 2.718 ||| 0-0 0-2 0-3 ||| 420 524574 +los ||| the time of writing ||| 0.2 0.122289 1.90631e-06 8.36124e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| the time of ||| 0.00117786 0.122289 1.90631e-06 3.82841e-05 2.718 ||| 0-0 ||| 849 524574 +los ||| the time that ||| 0.00653595 0.122289 1.90631e-06 1.18461e-05 2.718 ||| 0-0 ||| 153 524574 +los ||| the time what ||| 0.333333 0.122289 1.90631e-06 9.88088e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the time when ||| 0.00295858 0.122289 1.90631e-06 3.52038e-07 2.718 ||| 0-0 ||| 338 524574 +los ||| the time will be ripe because ||| 1 0.122289 1.90631e-06 5.07933e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the time will be ripe ||| 1 0.122289 1.90631e-06 1.54575e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the time will be ||| 1 0.122289 1.90631e-06 1.10411e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the time will ||| 0.1 0.122289 1.90631e-06 6.09233e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| the time ||| 0.00548697 0.122289 7.62523e-05 0.000704218 2.718 ||| 0-0 ||| 7290 524574 +los ||| the times of ||| 0.0322581 0.122289 1.90631e-06 2.36696e-06 2.718 ||| 0-0 ||| 31 524574 +los ||| the times ||| 0.00961538 0.122289 3.81262e-06 4.35391e-05 2.718 ||| 0-0 ||| 208 524574 +los ||| the timing of the ||| 0.0263158 0.122289 1.90631e-06 7.15822e-09 2.718 ||| 0-0 ||| 38 524574 +los ||| the timing of ||| 0.00746269 0.122289 1.90631e-06 1.16599e-07 2.718 ||| 0-0 ||| 134 524574 +los ||| the timing ||| 0.00346021 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-0 ||| 289 524574 +los ||| the tobacco ||| 0.0535714 0.122289 5.71893e-06 9.56573e-06 2.718 ||| 0-0 ||| 56 524574 +los ||| the tone ||| 0.00460829 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 217 524574 +los ||| the tools ||| 0.00201207 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 497 524574 +los ||| the top of the agenda ||| 0.016129 0.122289 1.90631e-06 9.82341e-12 2.718 ||| 0-3 ||| 62 524574 +los ||| the top of the ||| 0.00502513 0.122289 1.90631e-06 9.89266e-08 2.718 ||| 0-3 ||| 199 524574 +los ||| the top of ||| 0.00735294 0.122289 3.81262e-06 1.6114e-06 2.718 ||| 0-0 ||| 272 524574 +los ||| the top sellers ||| 0.25 0.122289 1.90631e-06 1.18564e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| the top ||| 0.0095498 0.122289 1.33442e-05 2.96409e-05 2.718 ||| 0-0 ||| 733 524574 +los ||| the total expenditure ||| 0.1 0.122289 1.90631e-06 1.22161e-09 2.718 ||| 0-0 ||| 10 524574 +los ||| the total number of ||| 0.0116279 0.122289 1.90631e-06 1.08809e-09 2.718 ||| 0-0 ||| 86 524574 +los ||| the total number ||| 0.0111111 0.122289 1.90631e-06 2.00149e-08 2.718 ||| 0-0 ||| 90 524574 +los ||| the total of ||| 0.0555556 0.122289 1.90631e-06 2.19906e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| the total ||| 0.0185529 0.122289 1.90631e-05 4.04506e-05 2.718 ||| 0-0 ||| 539 524574 +los ||| the touch ||| 0.2 0.122289 1.90631e-06 9.43704e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| the tough ||| 0.016129 0.122289 1.90631e-06 4.933e-06 2.718 ||| 0-0 ||| 62 524574 +los ||| the town councils ||| 0.142857 0.122289 1.90631e-06 2.54028e-11 2.718 ||| 0-0 ||| 7 524574 +los ||| the town ||| 0.00819672 0.122289 3.81262e-06 5.40485e-06 2.718 ||| 0-0 ||| 244 524574 +los ||| the townships ||| 0.333333 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the track ||| 0.0285714 0.122289 1.90631e-06 1.69867e-05 2.718 ||| 0-0 ||| 35 524574 +los ||| the trade ||| 0.00504202 0.122289 5.71893e-06 3.73621e-05 2.718 ||| 0-0 ||| 595 524574 +los ||| the trading ||| 0.0425532 0.122289 3.81262e-06 5.8767e-06 2.718 ||| 0-0 ||| 47 524574 +los ||| the tradition is that ||| 0.5 0.122289 1.90631e-06 1.0629e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the tradition is ||| 0.5 0.122289 1.90631e-06 6.31866e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the tradition ||| 0.00628931 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 159 524574 +los ||| the traditional ||| 0.0292398 0.0714174 9.53154e-06 2.41931e-05 2.718 ||| 0-0 0-1 ||| 171 524574 +los ||| the tragedy of ||| 0.00540541 0.122289 1.90631e-06 1.58575e-07 2.718 ||| 0-0 ||| 185 524574 +los ||| the tragedy ||| 0.00169779 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-0 ||| 589 524574 +los ||| the tragic events ||| 0.00469484 0.122289 1.90631e-06 2.12059e-10 2.718 ||| 0-0 ||| 213 524574 +los ||| the tragic ||| 0.00151745 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-0 ||| 659 524574 +los ||| the train back on the ||| 1 0.122289 1.90631e-06 2.0503e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| the train ||| 0.00729927 0.122289 1.90631e-06 7.42094e-06 2.718 ||| 0-0 ||| 137 524574 +los ||| the trainees ' superiors ||| 1 0.0444479 1.90631e-06 9.14355e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| the trainees ' ||| 1 0.0444479 1.90631e-06 1.30622e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| the training ||| 0.00215983 0.122289 1.90631e-06 1.51422e-05 2.718 ||| 0-0 ||| 463 524574 +los ||| the tranche ||| 0.5 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the trans-European ||| 0.0185185 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 54 524574 +los ||| the translation ||| 0.00609756 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 164 524574 +los ||| the transmission ||| 0.00581395 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 172 524574 +los ||| the transport , distribution and preservation must ||| 1 0.122289 1.90631e-06 4.59607e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| the transport , distribution and preservation ||| 1 0.122289 1.90631e-06 2.97365e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the transport , distribution and ||| 1 0.122289 1.90631e-06 1.35166e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the transport , distribution ||| 1 0.122289 1.90631e-06 1.07909e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the transport , ||| 0.0384615 0.122289 1.90631e-06 5.26386e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| the transport ministers ||| 0.111111 0.165176 1.90631e-06 3.16702e-08 2.718 ||| 0-0 0-2 ||| 9 524574 +los ||| the transport ||| 0.00593472 0.122289 7.62523e-06 4.41396e-05 2.718 ||| 0-0 ||| 674 524574 +los ||| the transportation of ||| 0.00645161 0.122289 1.90631e-06 7.46233e-08 2.718 ||| 0-0 ||| 155 524574 +los ||| the transportation ||| 0.00478469 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 209 524574 +los ||| the treaties ||| 0.00161812 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 618 524574 +los ||| the treatment of ||| 0.00423729 0.122289 3.81262e-06 1.41085e-06 2.718 ||| 0-0 ||| 472 524574 +los ||| the treatment which the ||| 1 0.122289 1.90631e-06 1.35339e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| the treatment which ||| 0.2 0.122289 1.90631e-06 2.20451e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| the treatment ||| 0.00514801 0.122289 7.62523e-06 2.59519e-05 2.718 ||| 0-0 ||| 777 524574 +los ||| the treatments , ||| 0.5 0.157143 1.90631e-06 3.91687e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| the treatments ||| 0.05 0.157143 1.90631e-06 3.28446e-06 2.718 ||| 0-1 ||| 20 524574 +los ||| the treaty ||| 0.00114548 0.122289 1.90631e-06 1.12816e-05 2.718 ||| 0-0 ||| 873 524574 +los ||| the trees ? only ||| 1 0.18136 1.90631e-06 8.17494e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| the trees ? ||| 1 0.18136 1.90631e-06 7.3443e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| the trees ||| 0.0147059 0.18136 1.90631e-06 4.29743e-06 2.718 ||| 0-1 ||| 68 524574 +los ||| the tremendous ||| 0.0070922 0.122289 1.90631e-06 2.61663e-06 2.718 ||| 0-0 ||| 141 524574 +los ||| the trend ||| 0.00280899 0.122289 1.90631e-06 7.24936e-06 2.718 ||| 0-0 ||| 356 524574 +los ||| the tributaries ||| 0.1 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| the tried and ||| 0.0526316 0.122289 1.90631e-06 2.14385e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| the tried ||| 0.0625 0.122289 1.90631e-06 1.71154e-05 2.718 ||| 0-0 ||| 16 524574 +los ||| the troubled times ||| 0.5 0.122289 1.90631e-06 1.08848e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the troubled ||| 0.1 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| the troublemakers are ||| 0.5 0.122289 1.90631e-06 2.60337e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| the troublemakers ||| 0.166667 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the true ||| 0.00550459 0.122289 5.71893e-06 6.93193e-05 2.718 ||| 0-0 ||| 545 524574 +los ||| the truly ||| 0.0384615 0.122289 1.90631e-06 2.57803e-05 2.718 ||| 0-0 ||| 26 524574 +los ||| the trustees ||| 0.111111 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| the truth ||| 0.000558347 0.122289 1.90631e-06 1.05094e-05 2.718 ||| 0-0 ||| 1791 524574 +los ||| the tune ||| 0.00469484 0.122289 1.90631e-06 1.28258e-05 2.718 ||| 0-0 ||| 213 524574 +los ||| the tunnel ||| 0.0135135 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-0 ||| 74 524574 +los ||| the turn ||| 0.00847458 0.122289 1.90631e-06 9.6172e-05 2.718 ||| 0-0 ||| 118 524574 +los ||| the twin ||| 0.0217391 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 46 524574 +los ||| the two Member States ||| 0.0217391 0.122289 1.90631e-06 2.49357e-11 2.718 ||| 0-0 ||| 46 524574 +los ||| the two Member ||| 0.5 0.122289 1.90631e-06 5.22541e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the two debates ||| 0.0384615 0.122289 1.90631e-06 1.75431e-09 2.718 ||| 0-0 ||| 26 524574 +los ||| the two governments ||| 0.03125 0.273393 1.90631e-06 5.16591e-08 2.718 ||| 0-2 ||| 32 524574 +los ||| the two issues ||| 0.02 0.122289 1.90631e-06 2.55034e-08 2.718 ||| 0-0 ||| 50 524574 +los ||| the two parents ||| 0.333333 0.122289 1.90631e-06 4.36043e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the two ||| 0.00411711 0.122289 5.14703e-05 0.000101405 2.718 ||| 0-0 ||| 6558 524574 +los ||| the type of ||| 0.00461894 0.122289 3.81262e-06 2.72841e-06 2.718 ||| 0-0 ||| 433 524574 +los ||| the type which ||| 0.111111 0.122289 1.90631e-06 4.26326e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| the type ||| 0.0128913 0.122289 1.33442e-05 5.01879e-05 2.718 ||| 0-0 ||| 543 524574 +los ||| the ultimate criteria ||| 0.333333 0.122289 1.90631e-06 1.41761e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the ultimate ||| 0.0151515 0.122289 5.71893e-06 4.63273e-06 2.718 ||| 0-0 ||| 198 524574 +los ||| the uncontrolled ||| 0.166667 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the underestimation of the ||| 0.333333 0.122289 1.90631e-06 5.72657e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| the underlying ||| 0.0493827 0.122289 7.62523e-06 7.54963e-06 2.718 ||| 0-0 ||| 81 524574 +los ||| the unelected ||| 0.5 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the union ||| 0.0126582 0.122289 1.90631e-06 9.86599e-06 2.718 ||| 0-0 ||| 79 524574 +los ||| the unique ||| 0.0277778 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 36 524574 +los ||| the units in ||| 0.2 0.122289 1.90631e-06 8.6307e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| the units ||| 0.0416667 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-0 ||| 24 524574 +los ||| the universal ||| 0.0384615 0.122289 1.90631e-06 3.68902e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| the universality ||| 0.0125 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 80 524574 +los ||| the unjust ||| 0.0416667 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 24 524574 +los ||| the unpaid ||| 0.25 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| the unreliability ||| 0.333333 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the unresolved risks involved in ||| 1 0.122289 1.90631e-06 1.31762e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the unresolved risks involved ||| 1 0.122289 1.90631e-06 6.15582e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| the unresolved risks ||| 1 0.122289 1.90631e-06 1.78017e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the unresolved ||| 0.142857 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| the unwise choice to select only ||| 1 0.122289 1.90631e-06 1.20726e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| the unwise choice to select ||| 1 0.122289 1.90631e-06 1.08459e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the unwise choice to ||| 1 0.122289 1.90631e-06 3.73997e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the unwise choice ||| 1 0.122289 1.90631e-06 4.20892e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the unwise ||| 0.5 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| the updates ||| 0.166667 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the upsurge ||| 0.047619 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 21 524574 +los ||| the urgencies ||| 0.05 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| the urgent need ||| 0.00239234 0.122289 1.90631e-06 1.21533e-08 2.718 ||| 0-0 ||| 418 524574 +los ||| the urgent ||| 0.0037594 0.122289 1.90631e-06 1.32547e-05 2.718 ||| 0-0 ||| 266 524574 +los ||| the use of brominated ||| 0.5 0.122289 1.90631e-06 2.83452e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the use of ||| 0.00258202 0.122289 3.24072e-05 1.13381e-05 2.718 ||| 0-0 ||| 6584 524574 +los ||| the use ||| 0.00373832 0.122289 5.33766e-05 0.000208559 2.718 ||| 0-0 ||| 7490 524574 +los ||| the users ||| 0.00595238 0.122289 1.90631e-06 4.46115e-06 2.718 ||| 0-0 ||| 168 524574 +los ||| the uses ||| 0.0384615 0.122289 1.90631e-06 7.8928e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| the usual ||| 0.0169492 0.122289 5.71893e-06 7.42094e-06 2.718 ||| 0-0 ||| 177 524574 +los ||| the utmost ||| 0.00122399 0.122289 1.90631e-06 5.23327e-06 2.718 ||| 0-0 ||| 817 524574 +los ||| the validity ||| 0.00381679 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-0 ||| 262 524574 +los ||| the value of the ||| 0.0045045 0.0821857 1.90631e-06 5.3436e-08 2.718 ||| 0-0 0-2 0-3 ||| 222 524574 +los ||| the value ||| 0.001998 0.122289 3.81262e-06 3.76624e-05 2.718 ||| 0-0 ||| 1001 524574 +los ||| the values , the ||| 0.166667 0.122289 1.90631e-06 1.03951e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the values , ||| 0.0384615 0.122289 1.90631e-06 1.69323e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| the values ||| 0.00562852 0.141884 1.14379e-05 0.000701086 2.718 ||| 0-0 0-1 ||| 1066 524574 +los ||| the variety of ||| 0.0103093 0.122289 1.90631e-06 5.36355e-07 2.718 ||| 0-0 ||| 97 524574 +los ||| the variety ||| 0.00909091 0.122289 1.90631e-06 9.86599e-06 2.718 ||| 0-0 ||| 110 524574 +los ||| the various countries ||| 0.00607903 0.0764782 3.81262e-06 5.63199e-07 2.718 ||| 0-0 0-1 0-2 ||| 329 524574 +los ||| the various faces ||| 1 0.122289 1.90631e-06 6.42439e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the various forms of ||| 0.0151515 0.122289 1.90631e-06 3.21171e-10 2.718 ||| 0-0 ||| 66 524574 +los ||| the various forms ||| 0.0123457 0.122289 1.90631e-06 5.90779e-09 2.718 ||| 0-0 ||| 81 524574 +los ||| the various pockets of ||| 1 0.122289 1.90631e-06 1.69227e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| the various pockets ||| 1 0.122289 1.90631e-06 3.11285e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the various points ||| 0.0322581 0.122289 3.81262e-06 8.60339e-09 2.718 ||| 0-0 ||| 62 524574 +los ||| the various specific ||| 0.5 0.122289 1.90631e-06 1.00075e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the various ||| 0.0242588 0.0668568 0.000308822 6.75606e-05 2.718 ||| 0-0 0-1 ||| 6678 524574 +los ||| the vast majority ||| 0.00125 0.122289 1.90631e-06 2.36831e-10 2.718 ||| 0-0 ||| 800 524574 +los ||| the vast ||| 0.00114943 0.122289 1.90631e-06 5.8767e-06 2.718 ||| 0-0 ||| 870 524574 +los ||| the vertebral column for two Member States ||| 1 0.122289 1.90631e-06 5.36615e-26 2.718 ||| 0-0 ||| 1 524574 +los ||| the vertebral column for two Member ||| 1 0.122289 1.90631e-06 1.12451e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| the vertebral column for two ||| 1 0.122289 1.90631e-06 2.18224e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the vertebral column for ||| 1 0.122289 1.90631e-06 9.23112e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| the vertebral column ||| 0.0294118 0.122289 1.90631e-06 1.20108e-13 2.718 ||| 0-0 ||| 34 524574 +los ||| the vertebral ||| 0.166667 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| the very core of ||| 0.03125 0.122289 1.90631e-06 1.22523e-09 2.718 ||| 0-0 ||| 32 524574 +los ||| the very core ||| 0.025641 0.122289 1.90631e-06 2.25376e-08 2.718 ||| 0-0 ||| 39 524574 +los ||| the very first countries to ||| 0.5 0.122289 1.90631e-06 2.71127e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| the very first countries ||| 0.5 0.122289 1.90631e-06 3.05123e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the very first ||| 0.00632911 0.122289 1.90631e-06 8.03591e-07 2.718 ||| 0-0 ||| 158 524574 +los ||| the very high number of ||| 0.2 0.122289 1.90631e-06 5.99419e-12 2.718 ||| 0-0 ||| 5 524574 +los ||| the very high number ||| 0.166667 0.122289 1.90631e-06 1.1026e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| the very high ||| 0.0344828 0.122289 3.81262e-06 2.22838e-07 2.718 ||| 0-0 ||| 58 524574 +los ||| the very least for the ||| 1 0.0820379 1.90631e-06 1.38544e-10 2.718 ||| 0-0 0-3 0-4 ||| 1 524574 +los ||| the very least ||| 0.003861 0.122289 1.90631e-06 3.66273e-07 2.718 ||| 0-0 ||| 259 524574 +los ||| the very moment that the ||| 1 0.122289 1.90631e-06 2.78526e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| the very ones ||| 0.181818 0.122289 3.81262e-06 3.29854e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| the very people who are ||| 0.111111 0.122289 1.90631e-06 1.7581e-11 2.718 ||| 0-0 ||| 9 524574 +los ||| the very people who voted ||| 1 0.122289 1.90631e-06 4.66966e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the very people who ||| 0.0606061 0.122289 3.81262e-06 1.15872e-09 2.718 ||| 0-0 ||| 33 524574 +los ||| the very people ||| 0.0454545 0.122289 5.71893e-06 1.31375e-06 2.718 ||| 0-0 ||| 66 524574 +los ||| the very places ||| 0.333333 0.122289 1.90631e-06 7.89561e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the very reason that foreign ||| 1 0.122289 1.90631e-06 1.60321e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the very reason that ||| 0.0714286 0.122289 1.90631e-06 5.87256e-09 2.718 ||| 0-0 ||| 14 524574 +los ||| the very reason ||| 0.027027 0.122289 1.90631e-06 3.49108e-07 2.718 ||| 0-0 ||| 37 524574 +los ||| the very same ||| 0.018018 0.122289 3.81262e-06 1.20106e-06 2.718 ||| 0-0 ||| 111 524574 +los ||| the very serious ||| 0.0116279 0.122289 1.90631e-06 1.71942e-07 2.718 ||| 0-0 ||| 86 524574 +los ||| the very top ||| 0.0434783 0.122289 1.90631e-06 1.03135e-07 2.718 ||| 0-0 ||| 23 524574 +los ||| the very ||| 0.0479685 0.122289 0.000348854 0.00149255 2.718 ||| 0-0 ||| 3815 524574 +los ||| the veto ||| 0.016129 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 62 524574 +los ||| the vicinity ||| 0.00961538 0.122289 1.90631e-06 1.37266e-06 2.718 ||| 0-0 ||| 104 524574 +los ||| the victim ||| 0.00265957 0.122289 1.90631e-06 7.72121e-06 2.718 ||| 0-0 ||| 376 524574 +los ||| the victims ' ||| 0.0833333 0.122289 1.90631e-06 5.20118e-08 2.718 ||| 0-0 ||| 12 524574 +los ||| the victims of any ||| 0.166667 0.0178119 1.90631e-06 1.08813e-10 2.718 ||| 0-3 ||| 6 524574 +los ||| the victims will be the ||| 0.5 0.122289 1.90631e-06 1.01837e-09 2.718 ||| 0-0 0-4 ||| 2 524574 +los ||| the victims ||| 0.00103057 0.122289 5.71893e-06 1.51422e-05 2.718 ||| 0-0 ||| 2911 524574 +los ||| the video ||| 0.0769231 0.0731639 1.90631e-06 2.10189e-06 2.718 ||| 0-0 0-1 ||| 13 524574 +los ||| the view expressed ||| 0.00763359 0.122289 1.90631e-06 3.76627e-08 2.718 ||| 0-0 ||| 131 524574 +los ||| the view taken ||| 0.047619 0.122289 1.90631e-06 3.53185e-07 2.718 ||| 0-0 ||| 21 524574 +los ||| the view that the funding should be ||| 1 0.122289 1.90631e-06 1.71269e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| the view that the funding should ||| 1 0.122289 1.90631e-06 9.45043e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| the view that the funding ||| 1 0.122289 1.90631e-06 2.1328e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| the view that the ||| 0.00692042 0.122289 3.81262e-06 4.0015e-07 2.718 ||| 0-3 ||| 289 524574 +los ||| the view ||| 0.00234124 0.122289 1.52505e-05 0.000387476 2.718 ||| 0-0 ||| 3417 524574 +los ||| the viewpoint of countries ||| 1 0.109005 1.90631e-06 1.82734e-09 2.718 ||| 0-0 0-3 ||| 1 524574 +los ||| the views of the ||| 0.00306748 0.0821857 1.90631e-06 4.948e-08 2.718 ||| 0-0 0-2 0-3 ||| 326 524574 +los ||| the views of ||| 0.00350263 0.122289 3.81262e-06 1.8959e-06 2.718 ||| 0-0 ||| 571 524574 +los ||| the views ||| 0.00539084 0.122289 1.14379e-05 3.48741e-05 2.718 ||| 0-0 ||| 1113 524574 +los ||| the violation of ||| 0.00357143 0.122289 1.90631e-06 2.51854e-07 2.718 ||| 0-0 ||| 280 524574 +los ||| the violation ||| 0.00325733 0.122289 1.90631e-06 4.63273e-06 2.718 ||| 0-0 ||| 307 524574 +los ||| the violence ||| 0.00120048 0.122289 1.90631e-06 9.73731e-06 2.718 ||| 0-0 ||| 833 524574 +los ||| the virtual ||| 0.0333333 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 30 524574 +los ||| the vision of ||| 0.00775194 0.122289 1.90631e-06 2.84501e-07 2.718 ||| 0-0 ||| 129 524574 +los ||| the vision ||| 0.00347222 0.122289 1.90631e-06 5.23327e-06 2.718 ||| 0-0 ||| 288 524574 +los ||| the vital interests of the ||| 0.1 0.122289 1.90631e-06 6.14351e-12 2.718 ||| 0-0 ||| 10 524574 +los ||| the vital interests of ||| 0.0434783 0.122289 1.90631e-06 1.00071e-10 2.718 ||| 0-0 ||| 23 524574 +los ||| the vital interests ||| 0.0434783 0.122289 1.90631e-06 1.84075e-09 2.718 ||| 0-0 ||| 23 524574 +los ||| the vital ||| 0.0190476 0.122289 3.81262e-06 1.34263e-05 2.718 ||| 0-0 ||| 105 524574 +los ||| the voice of ||| 0.00359712 0.122289 1.90631e-06 1.01441e-06 2.718 ||| 0-0 ||| 278 524574 +los ||| the voice ||| 0.00291545 0.122289 1.90631e-06 1.86596e-05 2.718 ||| 0-0 ||| 343 524574 +los ||| the volume of freight ||| 1 0.122289 1.90631e-06 1.34322e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the volume of ||| 0.00571429 0.122289 3.81262e-06 3.35805e-07 2.718 ||| 0-0 ||| 350 524574 +los ||| the volume ||| 0.00481928 0.122289 3.81262e-06 6.17697e-06 2.718 ||| 0-0 ||| 415 524574 +los ||| the von Wogau report in the form ||| 1 0.122289 1.90631e-06 1.51451e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| the von Wogau report in the ||| 1 0.122289 1.90631e-06 3.32712e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| the von Wogau report in ||| 0.333333 0.122289 1.90631e-06 5.41949e-18 2.718 ||| 0-0 ||| 3 524574 +los ||| the von Wogau report ||| 0.0208333 0.122289 1.90631e-06 2.53194e-16 2.718 ||| 0-0 ||| 48 524574 +los ||| the von Wogau ||| 0.333333 0.122289 1.90631e-06 6.17697e-13 2.718 ||| 0-0 ||| 3 524574 +los ||| the von ||| 0.333333 0.122289 1.90631e-06 1.54424e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| the vote ||| 0.000151837 0.122289 3.81262e-06 6.74748e-05 2.718 ||| 0-0 ||| 13172 524574 +los ||| the votes ||| 0.00135685 0.122289 1.90631e-06 1.55711e-05 2.718 ||| 0-0 ||| 737 524574 +los ||| the vying ||| 0.333333 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| the wages ||| 0.0408163 0.195635 3.81262e-06 0.000190585 2.718 ||| 0-0 0-1 ||| 49 524574 +los ||| the wake of ||| 0.00647249 0.122289 3.81262e-06 5.55011e-07 2.718 ||| 0-0 ||| 309 524574 +los ||| the wake ||| 0.0102302 0.122289 7.62523e-06 1.02092e-05 2.718 ||| 0-0 ||| 391 524574 +los ||| the war crimes ||| 0.0625 0.169739 1.90631e-06 1.36635e-09 2.718 ||| 0-2 ||| 16 524574 +los ||| the war ||| 0.00108342 0.122289 3.81262e-06 1.59143e-05 2.718 ||| 0-0 ||| 1846 524574 +los ||| the warmongers ||| 0.125 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| the wars ||| 0.012987 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-0 ||| 77 524574 +los ||| the waste ||| 0.00337838 0.159487 1.90631e-06 0.000727338 2.718 ||| 0-0 0-1 ||| 296 524574 +los ||| the water environment ||| 0.333333 0.122289 1.90631e-06 1.36194e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the water supply and ||| 0.25 0.122289 1.90631e-06 1.5745e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| the water supply ||| 0.0322581 0.122289 1.90631e-06 1.25699e-09 2.718 ||| 0-0 ||| 31 524574 +los ||| the water ||| 0.016129 0.122289 7.62523e-06 2.44076e-05 2.718 ||| 0-0 ||| 248 524574 +los ||| the way , ||| 0.0022779 0.122289 1.90631e-06 0.00011027 2.718 ||| 0-0 ||| 439 524574 +los ||| the way in which he is ||| 0.166667 0.122289 1.90631e-06 4.59842e-12 2.718 ||| 0-0 ||| 6 524574 +los ||| the way in which he ||| 0.0238095 0.122289 1.90631e-06 1.46722e-10 2.718 ||| 0-0 ||| 42 524574 +los ||| the way in which it is ||| 0.025641 0.122289 1.90631e-06 9.3703e-11 2.718 ||| 0-0 ||| 39 524574 +los ||| the way in which it ||| 0.0172414 0.122289 1.90631e-06 2.98978e-09 2.718 ||| 0-0 ||| 58 524574 +los ||| the way in which ||| 0.00188679 0.122289 9.53154e-06 1.68124e-07 2.718 ||| 0-0 ||| 2650 524574 +los ||| the way in ||| 0.00340136 0.122289 1.90631e-05 1.97918e-05 2.718 ||| 0-0 ||| 2940 524574 +los ||| the way of compliance ||| 1 0.122289 1.90631e-06 1.15617e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the way of the ||| 0.0384615 0.122289 5.71893e-06 3.08605e-06 2.718 ||| 0-3 ||| 78 524574 +los ||| the way of ||| 0.0349345 0.122289 3.05009e-05 5.02681e-05 2.718 ||| 0-0 ||| 458 524574 +los ||| the way terrorist ||| 1 0.122289 1.90631e-06 6.65754e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the way the system is organised , ||| 0.5 0.122289 1.90631e-06 1.5326e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| the way the system is organised ||| 0.5 0.122289 1.90631e-06 1.28515e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| the way the system is ||| 0.5 0.122289 1.90631e-06 4.96197e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the way the system ||| 0.5 0.122289 1.90631e-06 1.58322e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the way the ||| 0.0194986 0.122289 1.33442e-05 5.67664e-05 2.718 ||| 0-0 ||| 359 524574 +los ||| the way they ||| 0.00465116 0.122289 1.90631e-06 3.01808e-06 2.718 ||| 0-0 ||| 215 524574 +los ||| the way to ||| 0.000992064 0.122289 1.90631e-06 8.21635e-05 2.718 ||| 0-0 ||| 1008 524574 +los ||| the way we ||| 0.00220264 0.122289 1.90631e-06 1.0497e-05 2.718 ||| 0-0 ||| 454 524574 +los ||| the way ||| 0.00704225 0.122289 0.000173474 0.000924658 2.718 ||| 0-0 ||| 12922 524574 +los ||| the ways in which ||| 0.00512821 0.122289 1.90631e-06 7.51862e-09 2.718 ||| 0-0 ||| 195 524574 +los ||| the ways in ||| 0.00921659 0.122289 3.81262e-06 8.85106e-07 2.718 ||| 0-0 ||| 217 524574 +los ||| the ways traditionally adopted ||| 0.25 0.122289 1.90631e-06 3.37427e-14 2.718 ||| 0-0 ||| 4 524574 +los ||| the ways traditionally ||| 0.25 0.122289 1.90631e-06 1.65406e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| the ways ||| 0.00888889 0.122289 7.62523e-06 4.13514e-05 2.718 ||| 0-0 ||| 450 524574 +los ||| the weaker ||| 0.0238095 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-0 ||| 42 524574 +los ||| the weblogs ||| 1 0.5 1.90631e-06 1.78036e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| the weekend ||| 0.0078125 0.122289 1.90631e-06 1.07239e-06 2.718 ||| 0-0 ||| 128 524574 +los ||| the weight ||| 0.0101523 0.122289 3.81262e-06 1.31261e-05 2.718 ||| 0-0 ||| 197 524574 +los ||| the welcome sound ||| 0.333333 0.122289 1.90631e-06 2.80535e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the welcome ||| 0.0163934 0.122289 1.90631e-06 4.72281e-05 2.718 ||| 0-0 ||| 61 524574 +los ||| the welfare ||| 0.00293255 0.122289 1.90631e-06 5.70512e-06 2.718 ||| 0-0 ||| 341 524574 +los ||| the western ||| 0.0571429 0.122289 3.81262e-06 1.71583e-06 2.718 ||| 0-0 ||| 35 524574 +los ||| the wetlands ||| 0.027027 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-0 ||| 37 524574 +los ||| the wheels of all ||| 1 0.122289 1.90631e-06 3.52625e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the wheels of ||| 0.0285714 0.122289 1.90631e-06 7.46233e-08 2.718 ||| 0-0 ||| 35 524574 +los ||| the wheels ||| 0.0487805 0.122289 3.81262e-06 1.37266e-06 2.718 ||| 0-0 ||| 41 524574 +los ||| the whole air ||| 0.5 0.122289 1.90631e-06 1.33706e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| the whole basis ||| 0.0666667 0.122289 1.90631e-06 1.44092e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| the whole is far greater ||| 1 0.122289 1.90631e-06 6.838e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| the whole is far ||| 1 0.122289 1.90631e-06 5.1921e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the whole is ||| 0.333333 0.122289 1.90631e-06 7.60525e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| the whole issue ||| 0.0083682 0.122289 3.81262e-06 1.83646e-07 2.718 ||| 0-0 ||| 239 524574 +los ||| the whole matter ||| 0.0217391 0.122289 1.90631e-06 2.5176e-07 2.718 ||| 0-0 ||| 46 524574 +los ||| the whole of ||| 0.0017311 0.122289 5.71893e-06 1.3192e-05 2.718 ||| 0-0 ||| 1733 524574 +los ||| the whole region is ||| 0.142857 0.122289 1.90631e-06 7.44554e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| the whole region ||| 0.00471698 0.122289 1.90631e-06 2.37565e-08 2.718 ||| 0-0 ||| 212 524574 +los ||| the whole ||| 0.00365923 0.122289 6.10019e-05 0.000242661 2.718 ||| 0-0 ||| 8745 524574 +los ||| the wider body ||| 1 0.122289 1.90631e-06 1.04281e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the wider ||| 0.0126183 0.122289 7.62523e-06 1.21824e-05 2.718 ||| 0-0 ||| 317 524574 +los ||| the widespread ||| 0.00729927 0.122289 1.90631e-06 9.56573e-06 2.718 ||| 0-0 ||| 137 524574 +los ||| the will ||| 0.00166528 0.122289 3.81262e-06 0.00371099 2.718 ||| 0-0 ||| 1201 524574 +los ||| the wind out of the ||| 0.166667 0.122289 1.90631e-06 1.18449e-10 2.718 ||| 0-4 ||| 6 524574 +los ||| the wind ||| 0.00900901 0.122289 1.90631e-06 9.26546e-06 2.718 ||| 0-0 ||| 111 524574 +los ||| the wine ||| 0.0175439 0.122289 1.90631e-06 7.24936e-06 2.718 ||| 0-0 ||| 57 524574 +los ||| the wisdom of ||| 0.010101 0.122289 1.90631e-06 1.35255e-07 2.718 ||| 0-0 ||| 99 524574 +los ||| the wisdom ||| 0.00584795 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-0 ||| 171 524574 +los ||| the wish of ||| 0.01 0.0019787 1.90631e-06 5.98416e-08 2.718 ||| 0-2 ||| 100 524574 +los ||| the wish ||| 0.00314465 0.122289 1.90631e-06 0.000126413 2.718 ||| 0-0 ||| 318 524574 +los ||| the wishes of the ||| 0.00754717 0.0821857 3.81262e-06 3.21955e-08 2.718 ||| 0-0 0-2 0-3 ||| 265 524574 +los ||| the wishes of ||| 0.00251889 0.122289 1.90631e-06 1.23362e-06 2.718 ||| 0-0 ||| 397 524574 +los ||| the wishes ||| 0.00526316 0.122289 5.71893e-06 2.26918e-05 2.718 ||| 0-0 ||| 570 524574 +los ||| the withheld ||| 1 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| the witnesses - ||| 1 0.147017 1.90631e-06 9.75694e-08 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the witnesses ||| 0.0322581 0.147017 1.90631e-06 2.58661e-05 2.718 ||| 0-0 0-1 ||| 31 524574 +los ||| the women 's ||| 0.333333 0.0349814 1.90631e-06 4.46878e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| the women ||| 0.00203666 0.122289 1.90631e-06 5.096e-05 2.718 ||| 0-0 ||| 491 524574 +los ||| the word about the ||| 0.333333 0.122289 1.90631e-06 3.79151e-09 2.718 ||| 0-3 ||| 3 524574 +los ||| the word ||| 0.00130463 0.122289 3.81262e-06 4.36678e-05 2.718 ||| 0-0 ||| 1533 524574 +los ||| the wording of Article ||| 0.0434783 0.122289 1.90631e-06 6.46424e-12 2.718 ||| 0-0 ||| 23 524574 +los ||| the wording of ||| 0.00352113 0.122289 1.90631e-06 3.26477e-07 2.718 ||| 0-0 ||| 284 524574 +los ||| the wording should have been tighter and ||| 1 0.122289 1.90631e-06 9.05164e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| the wording should have been tighter ||| 1 0.122289 1.90631e-06 7.22634e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the wording should have been ||| 1 0.122289 1.90631e-06 1.0627e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the wording should have ||| 1 0.122289 1.90631e-06 3.18249e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| the wording should ||| 0.2 0.122289 1.90631e-06 2.66099e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| the wording ||| 0.00244798 0.122289 3.81262e-06 6.00539e-06 2.718 ||| 0-0 ||| 817 524574 +los ||| the words of ||| 0.00181818 0.122289 1.90631e-06 5.27027e-06 2.718 ||| 0-0 ||| 550 524574 +los ||| the words ||| 0.00127959 0.122289 3.81262e-06 9.69441e-05 2.718 ||| 0-0 ||| 1563 524574 +los ||| the work in ||| 0.00714286 0.122289 1.90631e-06 5.81195e-06 2.718 ||| 0-0 ||| 140 524574 +los ||| the work of the ||| 0.000543183 0.0821857 1.90631e-06 3.8525e-07 2.718 ||| 0-0 0-2 0-3 ||| 1841 524574 +los ||| the work of those ||| 0.166667 0.203497 1.90631e-06 2.4648e-07 2.718 ||| 0-0 0-3 ||| 6 524574 +los ||| the work of ||| 0.00120676 0.122289 5.71893e-06 1.47614e-05 2.718 ||| 0-0 ||| 2486 524574 +los ||| the work she has ||| 0.00735294 0.122289 1.90631e-06 3.97365e-10 2.718 ||| 0-0 ||| 136 524574 +los ||| the work she ||| 0.00680272 0.122289 1.90631e-06 7.71958e-08 2.718 ||| 0-0 ||| 147 524574 +los ||| the work we did in the ||| 0.5 0.122289 1.90631e-06 1.28548e-11 2.718 ||| 0-0 0-5 ||| 2 524574 +los ||| the work we do ||| 0.0357143 0.122289 1.90631e-06 1.05893e-08 2.718 ||| 0-0 ||| 28 524574 +los ||| the work we ||| 0.00613497 0.122289 1.90631e-06 3.08248e-06 2.718 ||| 0-0 ||| 163 524574 +los ||| the work ||| 0.00189946 0.122289 2.85946e-05 0.000271529 2.718 ||| 0-0 ||| 7897 524574 +los ||| the worker to avoid exposure ||| 1 0.155428 1.90631e-06 1.87947e-15 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the worker to avoid ||| 1 0.155428 1.90631e-06 2.89149e-10 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the worker to ||| 1 0.155428 1.90631e-06 8.19119e-06 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| the worker ||| 0.0289855 0.122289 3.81262e-06 2.78822e-06 2.718 ||| 0-0 ||| 69 524574 +los ||| the workers , ||| 0.00452489 0.243395 1.90631e-06 0.000373616 2.718 ||| 0-0 0-1 ||| 221 524574 +los ||| the workers ||| 0.00393185 0.243395 1.14379e-05 0.00313293 2.718 ||| 0-0 0-1 ||| 1526 524574 +los ||| the workers ’ ||| 0.333333 0.122289 1.90631e-06 5.08154e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| the workforce ||| 0.00260417 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-0 ||| 384 524574 +los ||| the working ||| 0.0324074 0.122289 1.33442e-05 8.16733e-05 2.718 ||| 0-0 ||| 216 524574 +los ||| the works for the ||| 0.5 0.122289 1.90631e-06 8.37929e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| the world ' s ||| 0.0714286 0.122289 3.81262e-06 6.38498e-10 2.718 ||| 0-0 ||| 28 524574 +los ||| the world ' ||| 0.0135135 0.122289 1.90631e-06 3.35646e-07 2.718 ||| 0-0 ||| 74 524574 +los ||| the world 's best ||| 0.2 0.122289 1.90631e-06 2.57736e-11 2.718 ||| 0-0 ||| 5 524574 +los ||| the world 's ||| 0.0866667 0.122289 2.4782e-05 1.86091e-07 2.718 ||| 0-0 ||| 150 524574 +los ||| the world , and ||| 0.00469484 0.122289 1.90631e-06 1.45966e-07 2.718 ||| 0-0 ||| 213 524574 +los ||| the world , while ||| 0.0769231 0.122289 1.90631e-06 2.17214e-09 2.718 ||| 0-0 ||| 13 524574 +los ||| the world , ||| 0.00273224 0.122289 7.62523e-06 1.16531e-05 2.718 ||| 0-0 ||| 1464 524574 +los ||| the world . ||| 0.000410678 0.122289 1.90631e-06 2.95983e-07 2.718 ||| 0-0 ||| 2435 524574 +los ||| the world of ||| 0.00431965 0.122289 3.81262e-06 5.31225e-06 2.718 ||| 0-0 ||| 463 524574 +los ||| the world tells the ||| 1 0.122289 1.90631e-06 2.85029e-10 2.718 ||| 0-0 0-3 ||| 1 524574 +los ||| the world with another ||| 0.333333 0.122289 1.90631e-06 1.5065e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| the world with ||| 0.0307692 0.122289 3.81262e-06 6.24847e-07 2.718 ||| 0-0 ||| 65 524574 +los ||| the world ||| 0.00412906 0.122289 8.19713e-05 9.77162e-05 2.718 ||| 0-0 ||| 10414 524574 +los ||| the world ’ s ||| 0.0833333 0.122289 3.81262e-06 3.23831e-10 2.718 ||| 0-0 ||| 24 524574 +los ||| the world ’ ||| 0.0454545 0.122289 3.81262e-06 1.70231e-07 2.718 ||| 0-0 ||| 44 524574 +los ||| the worst culprits ||| 0.125 0.122289 1.90631e-06 7.12496e-12 2.718 ||| 0-0 ||| 8 524574 +los ||| the worst performers ||| 0.2 0.122289 1.90631e-06 1.61931e-11 2.718 ||| 0-0 ||| 5 524574 +los ||| the worst ||| 0.00403551 0.122289 9.53154e-06 6.47724e-06 2.718 ||| 0-0 ||| 1239 524574 +los ||| the written reply you have mentioned is ||| 1 0.122289 1.90631e-06 6.61583e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| the written reply you have mentioned ||| 1 0.122289 1.90631e-06 2.11091e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| the written reply you have ||| 1 0.122289 1.90631e-06 2.38521e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the written reply you ||| 1 0.122289 1.90631e-06 1.99436e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| the written reply ||| 0.111111 0.122289 1.90631e-06 6.17697e-10 2.718 ||| 0-0 ||| 9 524574 +los ||| the written ||| 0.047619 0.122289 1.90631e-06 2.14478e-05 2.718 ||| 0-0 ||| 21 524574 +los ||| the wrong signal ||| 0.010989 0.122289 1.90631e-06 5.69671e-10 2.718 ||| 0-0 ||| 91 524574 +los ||| the wrong ||| 0.00638298 0.122289 5.71893e-06 2.39358e-05 2.718 ||| 0-0 ||| 470 524574 +los ||| the year ||| 0.000300933 0.122289 1.90631e-06 0.000106982 2.718 ||| 0-0 ||| 3323 524574 +los ||| the yield accruing to ||| 1 0.0833333 1.90631e-06 1.24978e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| the yield accruing ||| 1 0.0833333 1.90631e-06 1.40649e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| the yoke ||| 0.0243902 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-0 ||| 41 524574 +los ||| the youngest may play ' . nor ||| 0.5 0.122289 1.90631e-06 6.43723e-23 2.718 ||| 0-0 ||| 2 524574 +los ||| the youngest may play ' . ||| 0.5 0.122289 1.90631e-06 1.20774e-18 2.718 ||| 0-0 ||| 2 524574 +los ||| the youngest may play ' ||| 0.5 0.122289 1.90631e-06 3.98724e-16 2.718 ||| 0-0 ||| 2 524574 +los ||| the youngest may play ||| 0.5 0.122289 1.90631e-06 1.1608e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| the youngest may ||| 0.5 0.122289 1.90631e-06 4.49924e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| the youngest ||| 0.025 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-0 ||| 40 524574 +los ||| the ||| 0.124674 0.122289 0.803501 0.428956 2.718 ||| 0-0 ||| 3.38078e+06 524574 +los ||| the ‘ No ||| 0.333333 0.122289 1.90631e-06 3.26123e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| the ‘ No ’ ||| 0.5 0.122289 1.90631e-06 5.68139e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| the ‘ single audit ||| 1 0.122289 1.90631e-06 4.96916e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| the ‘ single audit ’ model was ||| 1 0.122289 1.90631e-06 1.04418e-23 2.718 ||| 0-0 ||| 1 524574 +los ||| the ‘ single audit ’ model ||| 0.5 0.122289 1.90631e-06 3.33286e-21 2.718 ||| 0-0 ||| 2 524574 +los ||| the ‘ single audit ’ ||| 1 0.122289 1.90631e-06 8.65678e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| the ‘ single ||| 1 0.122289 1.90631e-06 7.64486e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| the ‘ ||| 0.00283688 0.122289 3.81262e-06 4.81718e-05 2.718 ||| 0-0 ||| 705 524574 +los ||| their National Strategic ||| 1 0.0236713 1.90631e-06 2.48215e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| their National ||| 0.5 0.0236713 1.90631e-06 3.54594e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| their Olympic teams ||| 1 0.153417 1.90631e-06 3.96505e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| their ability ||| 0.00396825 0.0236713 1.90631e-06 1.05463e-07 2.718 ||| 0-0 ||| 252 524574 +los ||| their act together ||| 0.0666667 0.0236713 1.90631e-06 2.33441e-10 2.718 ||| 0-0 ||| 15 524574 +los ||| their act ||| 0.0434783 0.0236713 1.90631e-06 3.8868e-07 2.718 ||| 0-0 ||| 23 524574 +los ||| their actions the ||| 1 0.122289 1.90631e-06 3.47048e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| their actions ||| 0.00340136 0.0236713 1.90631e-06 1.59681e-07 2.718 ||| 0-0 ||| 294 524574 +los ||| their assistance ||| 0.0232558 0.0236713 1.90631e-06 1.13699e-07 2.718 ||| 0-0 ||| 43 524574 +los ||| their attention to ||| 0.0222222 0.0236713 1.90631e-06 5.31173e-08 2.718 ||| 0-0 ||| 45 524574 +los ||| their attention ||| 0.0107527 0.0236713 1.90631e-06 5.97776e-07 2.718 ||| 0-0 ||| 93 524574 +los ||| their backs ||| 0.0196078 0.0236713 1.90631e-06 1.80728e-08 2.718 ||| 0-0 ||| 51 524574 +los ||| their bodies ||| 0.0175439 0.0943824 1.90631e-06 2.13969e-06 2.718 ||| 0-0 0-1 ||| 57 524574 +los ||| their calculation ||| 0.142857 0.0236713 1.90631e-06 1.14385e-08 2.718 ||| 0-0 ||| 7 524574 +los ||| their carcasses could ||| 1 0.0236713 1.90631e-06 2.2775e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| their carcasses ||| 1 0.0236713 1.90631e-06 3.20278e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| their case ||| 0.00877193 0.0236713 1.90631e-06 2.44761e-06 2.718 ||| 0-0 ||| 114 524574 +los ||| their clients ||| 0.0138889 0.221311 1.90631e-06 9.13371e-08 2.718 ||| 0-1 ||| 72 524574 +los ||| their clutches ||| 0.5 0.0236713 1.90631e-06 2.51647e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| their component ||| 0.5 0.0236713 1.90631e-06 3.45443e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| their computers , ||| 0.111111 0.221963 1.90631e-06 1.27723e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| their computers ||| 0.0555556 0.221963 1.90631e-06 1.07101e-07 2.718 ||| 0-1 ||| 18 524574 +los ||| their costs ||| 0.0121951 0.214442 1.90631e-06 3.20955e-06 2.718 ||| 0-1 ||| 82 524574 +los ||| their counterparts ||| 0.037037 0.0236713 5.71893e-06 1.07522e-08 2.718 ||| 0-0 ||| 81 524574 +los ||| their countries ||| 0.00474684 0.0957208 5.71893e-06 9.66249e-06 2.718 ||| 0-1 ||| 632 524574 +los ||| their country ||| 0.000977517 0.0236713 1.90631e-06 8.23343e-07 2.718 ||| 0-0 ||| 1023 524574 +los ||| their creative ||| 0.5 0.0236713 1.90631e-06 5.03294e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| their dealings with ||| 0.030303 0.0236713 1.90631e-06 1.52138e-10 2.718 ||| 0-0 ||| 33 524574 +los ||| their dealings ||| 0.027027 0.0236713 1.90631e-06 2.37921e-08 2.718 ||| 0-0 ||| 37 524574 +los ||| their diplomas ||| 0.111111 0.139352 1.90631e-06 1.69061e-07 2.718 ||| 0-0 0-1 ||| 9 524574 +los ||| their disposal ||| 0.034965 0.0236713 9.53154e-06 1.92624e-07 2.718 ||| 0-0 ||| 143 524574 +los ||| their duties ||| 0.00414938 0.0236713 1.90631e-06 4.68979e-08 2.718 ||| 0-0 ||| 241 524574 +los ||| their end ||| 0.111111 0.0236713 1.90631e-06 9.95378e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| their families ||| 0.000794913 0.0236713 1.90631e-06 1.89879e-08 2.718 ||| 0-0 ||| 1258 524574 +los ||| their fellow ||| 0.0238095 0.0137246 1.90631e-06 5.78788e-08 2.718 ||| 0-0 0-1 ||| 42 524574 +los ||| their followers ||| 0.2 0.163636 1.90631e-06 2.02842e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| their foreign ||| 0.166667 0.012441 1.90631e-06 2.67661e-08 2.718 ||| 0-0 0-1 ||| 6 524574 +los ||| their freedom ||| 0.0034965 0.0236713 1.90631e-06 1.95141e-07 2.718 ||| 0-0 ||| 286 524574 +los ||| their fulfilment of ||| 0.333333 0.0236713 1.90631e-06 4.47727e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| their fulfilment ||| 0.05 0.0236713 1.90631e-06 8.23572e-09 2.718 ||| 0-0 ||| 20 524574 +los ||| their government cuts ||| 0.5 0.104656 1.90631e-06 2.04395e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| their graves , ||| 1 0.0236713 1.90631e-06 3.81947e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| their graves ||| 0.125 0.0236713 1.90631e-06 3.20278e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| their highest ||| 0.166667 0.0236713 1.90631e-06 5.03294e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| their homes at the ||| 0.166667 0.122289 1.90631e-06 2.10281e-11 2.718 ||| 0-3 ||| 6 524574 +los ||| their homes ||| 0.00205339 0.0236713 1.90631e-06 2.31058e-08 2.718 ||| 0-0 ||| 487 524574 +los ||| their homework ||| 0.0166667 0.0236713 1.90631e-06 2.51647e-09 2.718 ||| 0-0 ||| 60 524574 +los ||| their host ||| 0.125 0.0236713 1.90631e-06 4.43814e-08 2.718 ||| 0-0 ||| 8 524574 +los ||| their implementation ||| 0.00514139 0.0236713 3.81262e-06 1.77754e-07 2.718 ||| 0-0 ||| 389 524574 +los ||| their intended ||| 0.0769231 0.0236713 1.90631e-06 2.0086e-07 2.718 ||| 0-0 ||| 13 524574 +los ||| their job ||| 0.00478469 0.0236713 1.90631e-06 1.78669e-07 2.718 ||| 0-0 ||| 209 524574 +los ||| their jobs ||| 0.00160772 0.0236713 1.90631e-06 1.18503e-07 2.718 ||| 0-0 ||| 622 524574 +los ||| their limits , ||| 0.142857 0.0859692 1.90631e-06 4.27401e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| their limits ||| 0.0357143 0.0859692 1.90631e-06 3.58394e-07 2.718 ||| 0-1 ||| 28 524574 +los ||| their lunch ||| 0.2 0.0236713 1.90631e-06 5.71925e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| their mind set ||| 1 0.0236713 1.90631e-06 3.36773e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| their mind ||| 0.0833333 0.0236713 1.90631e-06 5.76272e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| their minds ||| 0.0181818 0.0236713 1.90631e-06 1.09581e-07 2.718 ||| 0-0 ||| 55 524574 +los ||| their movement to the ||| 1 0.0729802 1.90631e-06 3.82802e-09 2.718 ||| 0-0 0-3 ||| 1 524574 +los ||| their national ||| 0.00934579 0.0183282 1.90631e-06 9.78678e-07 2.718 ||| 0-0 0-1 ||| 107 524574 +los ||| their nearest and ||| 0.5 0.0236713 1.90631e-06 3.15211e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| their nearest ||| 0.333333 0.0236713 1.90631e-06 2.51647e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| their neighbours or ||| 0.333333 0.0245424 1.90631e-06 7.60664e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| their neighbours ||| 0.00649351 0.0245424 1.90631e-06 6.65323e-08 2.718 ||| 0-1 ||| 154 524574 +los ||| their noses to the ||| 1 0.122289 1.90631e-06 6.18528e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| their obligation to ||| 0.03125 0.0236713 1.90631e-06 4.16726e-09 2.718 ||| 0-0 ||| 32 524574 +los ||| their obligation ||| 0.0188679 0.0236713 1.90631e-06 4.68979e-08 2.718 ||| 0-0 ||| 53 524574 +los ||| their own country or across the borders ||| 1 0.122289 1.90631e-06 1.53728e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| their own country or across the ||| 1 0.122289 1.90631e-06 3.55852e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| their own culture ||| 0.03125 0.0236713 1.90631e-06 7.67911e-11 2.718 ||| 0-0 ||| 32 524574 +los ||| their own devices , ||| 0.125 0.0236713 1.90631e-06 3.65383e-12 2.718 ||| 0-0 ||| 8 524574 +los ||| their own devices ||| 0.0714286 0.0236713 5.71893e-06 3.06389e-11 2.718 ||| 0-0 ||| 42 524574 +los ||| their own ends . ||| 0.0909091 0.0236713 1.90631e-06 2.74891e-13 2.718 ||| 0-0 ||| 11 524574 +los ||| their own ends ||| 0.0625 0.0236713 1.90631e-06 9.07531e-11 2.718 ||| 0-0 ||| 16 524574 +los ||| their own food ||| 0.222222 0.0736034 3.81262e-06 8.54824e-09 2.718 ||| 0-0 0-2 ||| 9 524574 +los ||| their own production processes , ||| 1 0.199138 1.90631e-06 1.31844e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| their own production processes ||| 1 0.199138 1.90631e-06 1.10557e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| their own way ||| 0.0125 0.0236713 1.90631e-06 8.36014e-09 2.718 ||| 0-0 ||| 80 524574 +los ||| their own ||| 0.00468384 0.0236713 6.48145e-05 3.87834e-06 2.718 ||| 0-0 ||| 7259 524574 +los ||| their part ||| 0.00259067 0.0236713 1.90631e-06 2.7274e-06 2.718 ||| 0-0 ||| 386 524574 +los ||| their pensions ||| 0.00990099 0.0236713 1.90631e-06 1.14385e-08 2.718 ||| 0-0 ||| 101 524574 +los ||| their personal ||| 0.0588235 0.0236713 1.90631e-06 9.72273e-08 2.718 ||| 0-0 ||| 17 524574 +los ||| their place ||| 0.00465116 0.0236713 1.90631e-06 3.44299e-06 2.718 ||| 0-0 ||| 215 524574 +los ||| their positions ||| 0.00769231 0.0236713 1.90631e-06 7.73243e-08 2.718 ||| 0-0 ||| 130 524574 +los ||| their practices ||| 0.0357143 0.0236713 1.90631e-06 8.14421e-08 2.718 ||| 0-0 ||| 28 524574 +los ||| their private ||| 0.0555556 0.0209771 1.90631e-06 2.77956e-07 2.718 ||| 0-0 0-1 ||| 18 524574 +los ||| their production costs ||| 0.0322581 0.214442 1.90631e-06 2.67997e-10 2.718 ||| 0-2 ||| 31 524574 +los ||| their progress ||| 0.0188679 0.0236713 1.90631e-06 3.0129e-07 2.718 ||| 0-0 ||| 53 524574 +los ||| their provision ||| 0.25 0.0236713 1.90631e-06 2.71779e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| their proximity ||| 0.166667 0.0236713 1.90631e-06 5.71925e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| their punches ||| 0.333333 0.0236713 1.90631e-06 1.60139e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| their purpose ||| 0.0204082 0.0236713 1.90631e-06 4.11557e-07 2.718 ||| 0-0 ||| 49 524574 +los ||| their reach ||| 0.166667 0.0236713 1.90631e-06 1.85304e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| their reflection ||| 0.25 0.0236713 1.90631e-06 3.13415e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| their relative ||| 0.166667 0.0236713 1.90631e-06 2.05893e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| their reliance ||| 0.5 0.0236713 1.90631e-06 8.23572e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| their respective reference ||| 0.5 0.0236713 1.90631e-06 6.24451e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| their respective ||| 0.00913242 0.0236713 7.62523e-06 7.32064e-08 2.718 ||| 0-0 ||| 438 524574 +los ||| their road ||| 0.333333 0.0236713 1.90631e-06 2.04063e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| their safety ||| 0.00675676 0.0236713 1.90631e-06 1.15986e-07 2.718 ||| 0-0 ||| 148 524574 +los ||| their sales people will ||| 1 0.0236713 1.90631e-06 1.49815e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| their sales people ||| 1 0.0236713 1.90631e-06 1.73172e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| their sales ||| 0.111111 0.0236713 1.90631e-06 1.96742e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| their seats ||| 0.0105263 0.0935673 1.90631e-06 9.0178e-08 2.718 ||| 0-1 ||| 95 524574 +los ||| their ships ||| 0.0555556 0.159816 1.90631e-06 1.59704e-06 2.718 ||| 0-0 0-1 ||| 18 524574 +los ||| their shoes ||| 0.25 0.0516605 1.90631e-06 1.57638e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| their social class or ||| 1 0.0236713 1.90631e-06 2.32358e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| their social class ||| 1 0.0236713 1.90631e-06 2.03235e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| their social ||| 0.125 0.0236713 3.81262e-06 2.36319e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| their speaking ||| 0.25 0.0236713 1.90631e-06 2.62628e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| their state of ||| 0.0333333 0.0236713 1.90631e-06 3.14155e-08 2.718 ||| 0-0 ||| 30 524574 +los ||| their state ||| 0.02 0.0236713 1.90631e-06 5.77873e-07 2.718 ||| 0-0 ||| 50 524574 +los ||| their statements , ||| 0.0909091 0.0236713 1.90631e-06 8.73021e-09 2.718 ||| 0-0 ||| 11 524574 +los ||| their statements ||| 0.0103093 0.0236713 1.90631e-06 7.32064e-08 2.718 ||| 0-0 ||| 97 524574 +los ||| their status as a ||| 0.25 0.0236713 1.90631e-06 1.04615e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| their status as ||| 0.030303 0.0236713 1.90631e-06 2.36014e-09 2.718 ||| 0-0 ||| 33 524574 +los ||| their status ||| 0.019802 0.0236713 3.81262e-06 2.31286e-07 2.718 ||| 0-0 ||| 101 524574 +los ||| their stay ||| 0.0333333 0.0236713 1.90631e-06 6.49707e-08 2.718 ||| 0-0 ||| 30 524574 +los ||| their studies ||| 0.0120482 0.0805307 1.90631e-06 9.74331e-07 2.718 ||| 0-0 0-1 ||| 83 524574 +los ||| their suitability ||| 0.0588235 0.0236713 1.90631e-06 4.11786e-09 2.718 ||| 0-0 ||| 17 524574 +los ||| their support ||| 0.00178891 0.0236713 1.90631e-06 7.82165e-07 2.718 ||| 0-0 ||| 559 524574 +los ||| their systems of ||| 0.0588235 0.118622 1.90631e-06 4.04111e-07 2.718 ||| 0-0 0-1 ||| 17 524574 +los ||| their systems ||| 0.0163934 0.118622 1.90631e-06 7.43342e-06 2.718 ||| 0-0 0-1 ||| 61 524574 +los ||| their to be ||| 1 0.0236713 1.90631e-06 3.68404e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| their to ||| 1 0.0236713 1.90631e-06 0.000203281 2.718 ||| 0-0 ||| 1 524574 +los ||| their treatment ||| 0.0243902 0.0236713 1.90631e-06 1.38406e-07 2.718 ||| 0-0 ||| 41 524574 +los ||| their urgency and ||| 0.5 0.0236713 1.90631e-06 7.42177e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| their urgency ||| 0.25 0.0236713 1.90631e-06 5.92514e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| their use ||| 0.00287356 0.0236713 1.90631e-06 1.11228e-06 2.718 ||| 0-0 ||| 348 524574 +los ||| their valuable contributions ||| 0.0588235 0.0236713 1.90631e-06 7.47803e-13 2.718 ||| 0-0 ||| 17 524574 +los ||| their valuable ||| 0.0166667 0.0236713 1.90631e-06 3.29429e-08 2.718 ||| 0-0 ||| 60 524574 +los ||| their various ||| 0.0338983 0.0175479 3.81262e-06 3.60313e-07 2.718 ||| 0-0 0-1 ||| 59 524574 +los ||| their very best ||| 0.0714286 0.0236713 1.90631e-06 1.10247e-09 2.718 ||| 0-0 ||| 14 524574 +los ||| their very ||| 0.0120482 0.0236713 3.81262e-06 7.96005e-06 2.718 ||| 0-0 ||| 166 524574 +los ||| their vessels ||| 0.0188679 0.261943 1.90631e-06 9.20673e-07 2.718 ||| 0-1 ||| 53 524574 +los ||| their view ||| 0.010989 0.0236713 1.90631e-06 2.06648e-06 2.718 ||| 0-0 ||| 91 524574 +los ||| their way , it ||| 0.111111 0.0236713 1.90631e-06 1.04581e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| their way , ||| 0.04 0.0236713 1.90631e-06 5.88089e-07 2.718 ||| 0-0 ||| 25 524574 +los ||| their way to ||| 0.0147059 0.0236713 1.90631e-06 4.38192e-07 2.718 ||| 0-0 ||| 68 524574 +los ||| their way ||| 0.0132979 0.0236713 9.53154e-06 4.93137e-06 2.718 ||| 0-0 ||| 376 524574 +los ||| their white chargers ||| 1 0.305556 1.90631e-06 1.11621e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| their willingness ||| 0.00714286 0.0236713 1.90631e-06 2.97401e-08 2.718 ||| 0-0 ||| 140 524574 +los ||| their work , I may say , ||| 0.5 0.0236713 1.90631e-06 1.04316e-16 2.718 ||| 0-0 ||| 2 524574 +los ||| their work , I may say ||| 0.5 0.0236713 1.90631e-06 8.74737e-16 2.718 ||| 0-0 ||| 2 524574 +los ||| their work , I may ||| 0.5 0.0236713 1.90631e-06 9.15188e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| their work , I ||| 0.5 0.0236713 1.90631e-06 1.22155e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| their work , ||| 0.00645161 0.0236713 1.90631e-06 1.72694e-07 2.718 ||| 0-0 ||| 155 524574 +los ||| their work ||| 0.000775795 0.0236713 1.90631e-06 1.44811e-06 2.718 ||| 0-0 ||| 1289 524574 +los ||| their ||| 0.0193837 0.0236713 0.00373065 0.0022877 2.718 ||| 0-0 ||| 100961 524574 +los ||| them , ||| 0.00755287 0.038218 3.81262e-05 0.000240012 2.718 ||| 0-0 ||| 2648 524574 +los ||| them - ||| 0.00917431 0.038218 3.81262e-06 7.59173e-06 2.718 ||| 0-0 ||| 218 524574 +los ||| them . the ||| 0.2 0.122289 1.90631e-06 3.48527e-06 2.718 ||| 0-2 ||| 5 524574 +los ||| them a ||| 0.020979 0.038218 5.71893e-06 8.92101e-05 2.718 ||| 0-0 ||| 143 524574 +los ||| them acceptable ||| 0.5 0.038218 1.90631e-06 6.52082e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| them all ||| 0.00507614 0.038218 1.90631e-06 9.51034e-06 2.718 ||| 0-0 ||| 197 524574 +los ||| them and ||| 0.00178571 0.038218 3.81262e-06 2.52096e-05 2.718 ||| 0-0 ||| 1120 524574 +los ||| them any ||| 0.047619 0.038218 1.90631e-06 3.04345e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| them are ||| 0.00445434 0.038218 3.81262e-06 3.05366e-05 2.718 ||| 0-0 ||| 449 524574 +los ||| them around ||| 0.166667 0.038218 1.90631e-06 2.68078e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| them as and ||| 0.5 0.038218 1.90631e-06 2.57249e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| them as ||| 0.00699301 0.038218 3.81262e-06 2.05374e-05 2.718 ||| 0-0 ||| 286 524574 +los ||| them at all ||| 0.0714286 0.038218 1.90631e-06 3.98236e-08 2.718 ||| 0-0 ||| 14 524574 +los ||| them at ||| 0.0148148 0.038218 3.81262e-06 8.42756e-06 2.718 ||| 0-0 ||| 135 524574 +los ||| them away ||| 0.1 0.038218 1.90631e-06 6.40208e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| them back ||| 0.025641 0.038218 1.90631e-06 1.35367e-06 2.718 ||| 0-0 ||| 39 524574 +los ||| them being ||| 0.0120482 0.038218 1.90631e-06 5.72746e-06 2.718 ||| 0-0 ||| 83 524574 +los ||| them both ||| 0.0204082 0.038218 1.90631e-06 3.33387e-06 2.718 ||| 0-0 ||| 49 524574 +los ||| them by the ||| 0.0322581 0.122289 1.90631e-06 6.04094e-06 2.718 ||| 0-2 ||| 31 524574 +los ||| them by their ||| 0.2 0.0236713 1.90631e-06 3.22174e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| them by ||| 0.00645161 0.0062464 1.90631e-06 4.34495e-06 2.718 ||| 0-1 ||| 155 524574 +los ||| them contend ||| 1 0.038218 1.90631e-06 1.58995e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| them controlled by blinded ||| 1 0.038218 1.90631e-06 1.12743e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| them controlled by ||| 1 0.038218 1.90631e-06 1.02494e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| them controlled ||| 1 0.038218 1.90631e-06 1.95222e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| them down ||| 0.0344828 0.038218 1.90631e-06 1.405e-06 2.718 ||| 0-0 ||| 29 524574 +los ||| them for ||| 0.00448431 0.038218 1.90631e-06 1.54682e-05 2.718 ||| 0-0 ||| 223 524574 +los ||| them from ||| 0.00591716 0.038218 1.90631e-06 3.24109e-06 2.718 ||| 0-0 ||| 169 524574 +los ||| them getting to know each ||| 1 0.0497499 1.90631e-06 6.28753e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| them go ; they are ||| 1 0.038218 1.90631e-06 1.79527e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| them go ; they ||| 1 0.038218 1.90631e-06 1.18322e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| them go ; ||| 1 0.038218 1.90631e-06 3.62506e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| them go ||| 0.0909091 0.038218 1.90631e-06 1.17697e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| them have them ||| 1 0.038218 1.90631e-06 6.45662e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| them have ||| 0.00395257 0.038218 1.90631e-06 2.40703e-05 2.718 ||| 0-0 ||| 253 524574 +los ||| them heard ||| 1 0.038218 1.90631e-06 1.59398e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| them in a ||| 0.0153846 0.038218 1.90631e-06 1.9095e-06 2.718 ||| 0-0 ||| 65 524574 +los ||| them in the ||| 0.00478469 0.122289 1.90631e-06 2.46287e-05 2.718 ||| 0-2 ||| 209 524574 +los ||| them in ||| 0.00317125 0.038218 5.71893e-06 4.30787e-05 2.718 ||| 0-0 ||| 946 524574 +los ||| them into ||| 0.00714286 0.038218 1.90631e-06 2.06634e-06 2.718 ||| 0-0 ||| 140 524574 +los ||| them is to get the actual ||| 0.333333 0.122289 1.90631e-06 2.0272e-13 2.718 ||| 0-4 ||| 3 524574 +los ||| them is to get the ||| 0.333333 0.122289 1.90631e-06 1.40097e-09 2.718 ||| 0-4 ||| 3 524574 +los ||| them is very ||| 0.166667 0.038218 1.90631e-06 2.19477e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| them is ||| 0.0060241 0.038218 3.81262e-06 6.30771e-05 2.718 ||| 0-0 ||| 332 524574 +los ||| them known ||| 0.0714286 0.038218 1.90631e-06 2.21587e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| them like ||| 0.2 0.038218 1.90631e-06 3.57418e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| them making ||| 1 0.038218 1.90631e-06 7.74247e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| them of the upsurge ||| 0.5 0.122289 1.90631e-06 1.12595e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| them of the ||| 0.111111 0.122289 3.81262e-06 6.2553e-05 2.718 ||| 0-2 ||| 18 524574 +los ||| them of ||| 0.0181818 0.038218 1.90631e-06 0.000109413 2.718 ||| 0-0 ||| 55 524574 +los ||| them on a ||| 0.047619 0.038218 1.90631e-06 5.96905e-07 2.718 ||| 0-0 ||| 21 524574 +los ||| them on ||| 0.00966184 0.038218 3.81262e-06 1.34663e-05 2.718 ||| 0-0 ||| 207 524574 +los ||| them onto the ||| 0.25 0.122289 1.90631e-06 2.32428e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| them out ||| 0.0153846 0.038218 1.90631e-06 7.70906e-06 2.718 ||| 0-0 ||| 65 524574 +los ||| them prey ||| 1 0.038218 1.90631e-06 4.42772e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| them public ||| 0.125 0.0160961 1.90631e-06 1.58315e-06 2.718 ||| 0-1 ||| 8 524574 +los ||| them somewhere in the ||| 1 0.122289 1.90631e-06 5.04889e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| them standing ||| 0.5 0.038218 1.90631e-06 1.06467e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| them straight ||| 0.166667 0.038218 1.90631e-06 7.52712e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| them the ||| 0.0240964 0.122289 1.14379e-05 0.00115063 2.718 ||| 0-1 ||| 249 524574 +los ||| them to achieve the ||| 0.5 0.122289 1.90631e-06 2.33626e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| them to be ||| 0.0198676 0.038218 1.14379e-05 3.24103e-06 2.718 ||| 0-0 ||| 302 524574 +los ||| them to death ||| 0.5 0.038218 1.90631e-06 9.7108e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| them to the ||| 0.0224719 0.122289 3.81262e-06 0.000102243 2.718 ||| 0-2 ||| 89 524574 +los ||| them to those ||| 0.333333 0.284705 1.90631e-06 3.97993e-06 2.718 ||| 0-2 ||| 3 524574 +los ||| them to ||| 0.00871671 0.038218 3.43136e-05 0.000178836 2.718 ||| 0-0 ||| 2065 524574 +los ||| them today ||| 0.05 0.038218 1.90631e-06 9.08286e-07 2.718 ||| 0-0 ||| 20 524574 +los ||| them together ||| 0.05 0.038218 1.90631e-06 1.20877e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| them unable to ||| 0.333333 0.038218 1.90631e-06 4.88222e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| them unable ||| 0.333333 0.038218 1.90631e-06 5.4944e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| them under any ||| 0.2 0.0178119 1.90631e-06 8.88914e-10 2.718 ||| 0-2 ||| 5 524574 +los ||| them under the ||| 0.1 0.122289 1.90631e-06 4.12847e-07 2.718 ||| 0-2 ||| 10 524574 +los ||| them up ||| 0.016129 0.038218 1.90631e-06 6.86397e-06 2.718 ||| 0-0 ||| 62 524574 +los ||| them use those reserves ||| 1 0.284705 1.90631e-06 1.65503e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| them use those ||| 1 0.284705 1.90631e-06 2.17767e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| them well ||| 0.111111 0.038218 1.90631e-06 3.19118e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| them what is at ||| 1 0.038218 1.90631e-06 3.70599e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| them what is ||| 0.333333 0.038218 1.90631e-06 8.85035e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| them what ||| 0.037037 0.038218 1.90631e-06 2.82388e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| them with the ||| 0.0285714 0.122289 1.90631e-06 7.35772e-06 2.718 ||| 0-2 ||| 35 524574 +los ||| them with ||| 0.00390625 0.038218 1.90631e-06 1.28696e-05 2.718 ||| 0-0 ||| 256 524574 +los ||| them ||| 0.0281223 0.038218 0.00143926 0.0020126 2.718 ||| 0-0 ||| 26847 524574 +los ||| themselves , ||| 0.00160514 0.0073488 1.90631e-06 1.20567e-05 2.718 ||| 0-0 ||| 623 524574 +los ||| themselves and the ||| 0.0333333 0.122289 1.90631e-06 2.30881e-06 2.718 ||| 0-2 ||| 30 524574 +los ||| themselves of the ||| 0.0714286 0.122289 1.90631e-06 1.00205e-05 2.718 ||| 0-2 ||| 14 524574 +los ||| themselves to be ||| 0.0217391 0.0073488 1.90631e-06 1.62808e-07 2.718 ||| 0-0 ||| 46 524574 +los ||| themselves to ||| 0.00387597 0.0073488 1.90631e-06 8.98356e-06 2.718 ||| 0-0 ||| 258 524574 +los ||| themselves with the ||| 0.04 0.122289 1.90631e-06 1.17865e-06 2.718 ||| 0-2 ||| 25 524574 +los ||| themselves ||| 0.0029427 0.0073488 3.24072e-05 0.0001011 2.718 ||| 0-0 ||| 5777 524574 +los ||| then , apart from anything else , ||| 0.5 0.01311 1.90631e-06 2.52364e-20 2.718 ||| 0-5 ||| 2 524574 +los ||| then , apart from anything else ||| 0.5 0.01311 1.90631e-06 2.11618e-19 2.718 ||| 0-5 ||| 2 524574 +los ||| then , the ||| 0.00480769 0.122289 1.90631e-06 8.23801e-05 2.718 ||| 0-2 ||| 208 524574 +los ||| then , those ||| 0.5 0.284705 1.90631e-06 3.20674e-06 2.718 ||| 0-2 ||| 2 524574 +los ||| then all ||| 0.0120482 0.0177928 1.90631e-06 4.32924e-06 2.718 ||| 0-1 ||| 83 524574 +los ||| then any ||| 0.0625 0.0178119 1.90631e-06 1.48737e-06 2.718 ||| 0-1 ||| 16 524574 +los ||| then by the ||| 0.0555556 0.122289 1.90631e-06 3.62672e-06 2.718 ||| 0-2 ||| 18 524574 +los ||| then giving the ||| 0.333333 0.122289 1.90631e-06 1.08869e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| then it is the ||| 0.0434783 0.122289 1.90631e-06 3.85009e-07 2.718 ||| 0-3 ||| 23 524574 +los ||| then our numbers shall dwindle ||| 1 0.0248369 1.90631e-06 1.076e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| then our numbers shall ||| 1 0.0248369 1.90631e-06 1.53714e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| then our numbers ||| 1 0.0248369 1.90631e-06 2.81219e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| then our ||| 0.0434783 0.0248369 3.81262e-06 5.7509e-06 2.718 ||| 0-1 ||| 46 524574 +los ||| then permitting these sums to ||| 1 0.0240362 1.90631e-06 7.91077e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| then permitting these sums ||| 1 0.0240362 1.90631e-06 8.90269e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| then permitting these ||| 1 0.0240362 1.90631e-06 7.06563e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| then so were the ||| 1 0.122289 1.90631e-06 2.80872e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| then the next ||| 0.0833333 0.122289 1.90631e-06 7.13587e-08 2.718 ||| 0-1 ||| 12 524574 +los ||| then the ||| 0.0345324 0.122289 9.15028e-05 0.000690791 2.718 ||| 0-1 ||| 1390 524574 +los ||| then there are those ||| 0.166667 0.284705 1.90631e-06 1.25062e-09 2.718 ||| 0-3 ||| 6 524574 +los ||| then there is the ||| 0.00380228 0.122289 1.90631e-06 6.63642e-08 2.718 ||| 0-3 ||| 263 524574 +los ||| then those who go down this path ||| 1 0.284705 1.90631e-06 2.3836e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| then those who go down this ||| 1 0.284705 1.90631e-06 6.25616e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| then those who go down ||| 1 0.284705 1.90631e-06 9.68236e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| then those who go ||| 1 0.284705 1.90631e-06 1.38696e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| then those who ||| 0.166667 0.284705 1.90631e-06 2.37168e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| then those ||| 0.0967742 0.284705 5.71893e-06 2.68898e-05 2.718 ||| 0-1 ||| 31 524574 +los ||| then up to the ||| 0.25 0.122289 1.90631e-06 2.09345e-07 2.718 ||| 0-3 ||| 4 524574 +los ||| then we have ||| 0.00383142 0.0014565 1.90631e-06 1.67774e-08 2.718 ||| 0-1 ||| 261 524574 +los ||| then we ||| 0.00234467 0.0014565 3.81262e-06 1.40282e-06 2.718 ||| 0-1 ||| 853 524574 +los ||| there , ||| 0.00197368 0.0026918 5.71893e-06 4.38261e-05 2.718 ||| 0-0 ||| 1520 524574 +los ||| there a place for those ||| 1 0.284705 1.90631e-06 2.62424e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| there are a great many ||| 0.0123457 0.0026918 1.90631e-06 3.3346e-14 2.718 ||| 0-0 ||| 81 524574 +los ||| there are a great ||| 0.05 0.0026918 1.90631e-06 9.71336e-11 2.718 ||| 0-0 ||| 20 524574 +los ||| there are a ||| 0.00185874 0.0026918 3.81262e-06 2.47159e-07 2.718 ||| 0-0 ||| 1076 524574 +los ||| there are also disputes between the ||| 1 0.122289 1.90631e-06 2.09905e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| there are good prospects ||| 0.25 0.0026918 1.90631e-06 3.64354e-14 2.718 ||| 0-0 ||| 4 524574 +los ||| there are good ||| 0.00970874 0.0026918 1.90631e-06 2.8917e-09 2.718 ||| 0-0 ||| 103 524574 +los ||| there are human ||| 1 0.319795 1.90631e-06 9.07179e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| there are more ||| 0.00363636 0.0026918 1.90631e-06 1.27338e-08 2.718 ||| 0-0 ||| 275 524574 +los ||| there are scientists ||| 0.2 0.236573 1.90631e-06 1.67292e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| there are some ||| 0.00104275 0.0026918 1.90631e-06 6.0739e-09 2.718 ||| 0-0 ||| 959 524574 +los ||| there are the ||| 0.0419847 0.122289 2.09694e-05 1.99503e-05 2.718 ||| 0-2 ||| 262 524574 +los ||| there are those who ||| 0.00617284 0.284705 1.90631e-06 6.84949e-10 2.718 ||| 0-2 ||| 162 524574 +los ||| there are those ||| 0.0512821 0.284705 1.52505e-05 7.76587e-07 2.718 ||| 0-2 ||| 156 524574 +los ||| there are various ||| 0.00606061 0.0114245 1.90631e-06 7.32515e-09 2.718 ||| 0-2 ||| 165 524574 +los ||| there are ||| 0.00135002 0.0026918 7.05334e-05 5.57597e-06 2.718 ||| 0-0 ||| 27407 524574 +los ||| there be a ||| 0.0113636 0.0026918 1.90631e-06 2.95217e-07 2.718 ||| 0-0 ||| 88 524574 +los ||| there be ||| 0.00236967 0.0026918 1.90631e-06 6.66017e-06 2.718 ||| 0-0 ||| 422 524574 +los ||| there being ||| 0.00330033 0.0026918 1.90631e-06 1.04583e-06 2.718 ||| 0-0 ||| 303 524574 +los ||| there for the ||| 0.0454545 0.122289 3.81262e-06 1.01058e-05 2.718 ||| 0-2 ||| 44 524574 +los ||| there has been ||| 0.000667111 0.0026918 3.81262e-06 6.31679e-09 2.718 ||| 0-0 ||| 2998 524574 +los ||| there has ||| 0.00215983 0.0026918 9.53154e-06 1.89171e-06 2.718 ||| 0-0 ||| 2315 524574 +los ||| there have been many ||| 0.0075188 0.0029977 1.90631e-06 1.72607e-11 2.718 ||| 0-3 ||| 133 524574 +los ||| there is a possibility of the ||| 0.5 0.122289 1.90631e-06 8.50045e-12 2.718 ||| 0-5 ||| 2 524574 +los ||| there is a requirement for ||| 0.166667 0.0026918 1.90631e-06 1.65194e-13 2.718 ||| 0-0 ||| 6 524574 +los ||| there is a requirement ||| 0.0588235 0.0026918 1.90631e-06 2.14937e-11 2.718 ||| 0-0 ||| 17 524574 +los ||| there is a risk ||| 0.00173611 0.0026918 1.90631e-06 5.9733e-11 2.718 ||| 0-0 ||| 576 524574 +los ||| there is a sense ||| 0.0357143 0.0026918 1.90631e-06 9.09268e-11 2.718 ||| 0-0 ||| 28 524574 +los ||| there is a ||| 0.000800783 0.0026918 1.71568e-05 5.10538e-07 2.718 ||| 0-0 ||| 11239 524574 +los ||| there is also doubt ||| 0.5 0.0026918 1.90631e-06 5.31482e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| there is also ||| 0.000536193 0.0026918 1.90631e-06 5.8149e-08 2.718 ||| 0-0 ||| 1865 524574 +los ||| there is an ||| 0.000568828 0.0026918 1.90631e-06 5.11934e-08 2.718 ||| 0-0 ||| 1758 524574 +los ||| there is any ||| 0.00280899 0.0178119 1.90631e-06 8.87301e-08 2.718 ||| 0-2 ||| 356 524574 +los ||| there is enough ||| 0.0238095 0.0026918 1.90631e-06 1.90275e-09 2.718 ||| 0-0 ||| 42 524574 +los ||| there is less ||| 0.0123457 0.0026918 1.90631e-06 1.96034e-09 2.718 ||| 0-0 ||| 81 524574 +los ||| there is more to all this ||| 1 0.0177928 1.90631e-06 3.38632e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| there is more to all ||| 1 0.0177928 1.90631e-06 5.24085e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| there is nothing in the ||| 0.0454545 0.122289 1.90631e-06 1.64154e-10 2.718 ||| 0-4 ||| 22 524574 +los ||| there is now a treaty , and ||| 1 0.0026918 1.90631e-06 4.13156e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| there is now a treaty , ||| 1 0.0026918 1.90631e-06 3.29842e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| there is now a treaty ||| 1 0.0026918 1.90631e-06 2.76586e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| there is now a ||| 0.00512821 0.0026918 1.90631e-06 1.05166e-09 2.718 ||| 0-0 ||| 195 524574 +los ||| there is now ||| 0.00214592 0.0026918 1.90631e-06 2.37256e-08 2.718 ||| 0-0 ||| 466 524574 +los ||| there is only talk of removing the ||| 1 0.122289 1.90631e-06 1.44176e-18 2.718 ||| 0-6 ||| 1 524574 +los ||| there is the fact ||| 0.0263158 0.0026918 1.90631e-06 2.07131e-09 2.718 ||| 0-0 ||| 38 524574 +los ||| there is the threat of ||| 0.0555556 0.122289 1.90631e-06 8.78209e-11 2.718 ||| 0-2 ||| 18 524574 +los ||| there is the threat ||| 0.0625 0.122289 1.90631e-06 1.61542e-09 2.718 ||| 0-2 ||| 16 524574 +los ||| there is the ||| 0.00314861 0.122289 9.53154e-06 4.12098e-05 2.718 ||| 0-2 ||| 1588 524574 +los ||| there is wide divergence ||| 1 0.0026918 1.90631e-06 1.04905e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| there is wide ||| 0.0555556 0.0026918 1.90631e-06 4.76839e-10 2.718 ||| 0-0 ||| 18 524574 +los ||| there is ||| 0.00103465 0.0026918 8.95965e-05 1.15179e-05 2.718 ||| 0-0 ||| 45426 524574 +los ||| there may ||| 0.00520833 0.0026918 3.81262e-06 2.75331e-07 2.718 ||| 0-0 ||| 384 524574 +los ||| there only ||| 0.0625 0.0026918 1.90631e-06 4.09064e-07 2.718 ||| 0-0 ||| 16 524574 +los ||| there ought to be regulations ||| 1 0.0587004 1.90631e-06 2.25609e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| there should be the ||| 0.0666667 0.122289 1.90631e-06 1.05588e-07 2.718 ||| 0-3 ||| 15 524574 +los ||| there should be ||| 0.000632511 0.0026918 1.90631e-06 2.95112e-08 2.718 ||| 0-0 ||| 1581 524574 +los ||| there should ||| 0.00140845 0.0026918 3.81262e-06 1.62839e-06 2.718 ||| 0-0 ||| 1420 524574 +los ||| there then follow ||| 1 0.0026918 1.90631e-06 5.85904e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| there then ||| 0.1 0.0026918 1.90631e-06 5.91822e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| there to pool the ||| 1 0.122289 1.90631e-06 5.49138e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| there to ||| 0.00165563 0.0026918 1.90631e-06 3.26554e-05 2.718 ||| 0-0 ||| 604 524574 +los ||| there too ||| 0.00740741 0.0026918 1.90631e-06 5.00167e-07 2.718 ||| 0-0 ||| 135 524574 +los ||| there was , ||| 0.0185185 0.0026918 1.90631e-06 1.37307e-07 2.718 ||| 0-0 ||| 54 524574 +los ||| there was an ||| 0.00383142 0.0026918 1.90631e-06 5.11753e-09 2.718 ||| 0-0 ||| 261 524574 +los ||| there was ||| 0.00103434 0.0026918 9.53154e-06 1.15138e-06 2.718 ||| 0-0 ||| 4834 524574 +los ||| there were the ||| 0.0909091 0.0416781 3.81262e-06 4.5716e-10 2.718 ||| 0-0 0-1 0-2 ||| 22 524574 +los ||| there were ||| 0.00253348 0.0026918 1.33442e-05 6.5834e-07 2.718 ||| 0-0 ||| 2763 524574 +los ||| there will be a ||| 0.00261097 0.0026918 3.81262e-06 2.55398e-09 2.718 ||| 0-0 ||| 766 524574 +los ||| there will be any ||| 0.0666667 0.0178119 1.90631e-06 4.43875e-10 2.718 ||| 0-3 ||| 15 524574 +los ||| there will be ||| 0.00124922 0.0026918 7.62523e-06 5.76184e-08 2.718 ||| 0-0 ||| 3202 524574 +los ||| there will ||| 0.00633484 0.0026918 1.33442e-05 3.17932e-06 2.718 ||| 0-0 ||| 1105 524574 +los ||| there ||| 0.00663249 0.0026918 0.000520422 0.0003675 2.718 ||| 0-0 ||| 41161 524574 +los ||| thereby enabling the ||| 0.142857 0.122289 1.90631e-06 6.36494e-10 2.718 ||| 0-2 ||| 7 524574 +los ||| thereby revealing the ||| 0.5 0.122289 1.90631e-06 7.53247e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| therefore , in future ||| 0.333333 0.0001268 1.90631e-06 3.65813e-12 2.718 ||| 0-2 ||| 3 524574 +los ||| therefore , in ||| 0.00271739 0.0001268 1.90631e-06 1.37731e-08 2.718 ||| 0-2 ||| 368 524574 +los ||| therefore , the ||| 0.00381316 0.122289 7.62523e-06 4.2781e-05 2.718 ||| 0-2 ||| 1049 524574 +los ||| therefore the ||| 0.00317965 0.122289 3.81262e-06 0.000358736 2.718 ||| 0-1 ||| 629 524574 +los ||| therefore what ||| 0.0526316 0.0061209 1.90631e-06 8.01761e-07 2.718 ||| 0-1 ||| 19 524574 +los ||| these ' ||| 0.0147059 0.0240362 1.90631e-06 8.37257e-06 2.718 ||| 0-0 ||| 68 524574 +los ||| these , incidentally , represent ||| 0.125 0.0240362 1.90631e-06 3.70223e-14 2.718 ||| 0-0 ||| 8 524574 +los ||| these , incidentally , ||| 0.125 0.0240362 1.90631e-06 7.24506e-10 2.718 ||| 0-0 ||| 8 524574 +los ||| these , incidentally ||| 0.125 0.0240362 1.90631e-06 6.07528e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| these , then , ||| 0.0833333 0.0240362 1.90631e-06 5.58251e-08 2.718 ||| 0-0 ||| 12 524574 +los ||| these , then ||| 0.0909091 0.0240362 1.90631e-06 4.68116e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| these , to ||| 0.166667 0.0240362 1.90631e-06 2.58296e-05 2.718 ||| 0-0 ||| 6 524574 +los ||| these , ||| 0.0116086 0.0240362 1.33442e-05 0.000290683 2.718 ||| 0-0 ||| 603 524574 +los ||| these EMU ||| 1 0.0240362 1.90631e-06 2.09625e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| these European ||| 0.25 0.0240362 1.90631e-06 8.15076e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| these Funds ||| 0.0555556 0.0240362 1.90631e-06 9.11625e-08 2.718 ||| 0-0 ||| 18 524574 +los ||| these activities ||| 0.0031348 0.0240362 1.90631e-06 1.93781e-07 2.718 ||| 0-0 ||| 319 524574 +los ||| these acts ||| 0.00653595 0.0816893 1.90631e-06 1.39596e-06 2.718 ||| 0-0 0-1 ||| 153 524574 +los ||| these agreements , ||| 0.0075188 0.111686 1.90631e-06 9.16525e-07 2.718 ||| 0-0 0-1 ||| 133 524574 +los ||| these agreements ||| 0.003663 0.199336 5.71893e-06 3.26998e-06 2.718 ||| 0-1 ||| 819 524574 +los ||| these amendments would make it ||| 1 0.0240362 1.90631e-06 3.37303e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| these amendments would make ||| 1 0.0240362 1.90631e-06 1.89675e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| these amendments would ||| 0.142857 0.0240362 1.90631e-06 1.09147e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| these amendments ||| 0.000592768 0.0240362 1.90631e-06 1.85981e-07 2.718 ||| 0-0 ||| 1687 524574 +los ||| these are all ||| 0.00341297 0.0240362 1.90631e-06 1.74762e-07 2.718 ||| 0-0 ||| 293 524574 +los ||| these are already in the ||| 0.333333 0.122289 1.90631e-06 6.69077e-11 2.718 ||| 0-4 ||| 3 524574 +los ||| these are the ||| 0.00262238 0.122289 5.71893e-06 6.74989e-06 2.718 ||| 0-2 ||| 1144 524574 +los ||| these are ||| 0.00190532 0.0240362 2.4782e-05 3.69835e-05 2.718 ||| 0-0 ||| 6823 524574 +los ||| these areas problems still ||| 1 0.0240362 1.90631e-06 5.63966e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| these areas problems ||| 1 0.0240362 1.90631e-06 7.48761e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| these areas ||| 0.00283286 0.0240362 7.62523e-06 5.57944e-07 2.718 ||| 0-0 ||| 1412 524574 +los ||| these as ||| 0.0350877 0.0240362 3.81262e-06 2.48732e-05 2.718 ||| 0-0 ||| 57 524574 +los ||| these barrels ||| 1 0.0240362 1.90631e-06 9.75e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| these by ||| 0.0555556 0.0151413 1.90631e-06 3.94826e-06 2.718 ||| 0-0 0-1 ||| 18 524574 +los ||| these cannot eclipse the ||| 1 0.0240362 1.90631e-06 1.34858e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| these cannot eclipse ||| 1 0.0240362 1.90631e-06 2.19667e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| these cannot ||| 0.047619 0.0240362 1.90631e-06 5.49169e-07 2.718 ||| 0-0 ||| 21 524574 +los ||| these cards ||| 0.0666667 0.0240362 1.90631e-06 2.19375e-08 2.718 ||| 0-0 ||| 15 524574 +los ||| these cases , ||| 0.011236 0.136512 1.90631e-06 2.05864e-07 2.718 ||| 0-1 ||| 89 524574 +los ||| these cases ||| 0.00490196 0.0802742 3.81262e-06 4.05722e-06 2.718 ||| 0-0 0-1 ||| 408 524574 +los ||| these challenges ||| 0.00243902 0.0847111 1.90631e-06 2.91964e-06 2.718 ||| 0-0 0-1 ||| 410 524574 +los ||| these companies ||| 0.00328947 0.0240362 1.90631e-06 1.71112e-07 2.718 ||| 0-0 ||| 304 524574 +los ||| these compulsory ||| 0.0909091 0.0240362 1.90631e-06 2.535e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| these conditions ||| 0.00182149 0.0240362 1.90631e-06 2.91281e-07 2.718 ||| 0-0 ||| 549 524574 +los ||| these conflicts ||| 0.00990099 0.214045 1.90631e-06 8.32895e-07 2.718 ||| 0-1 ||| 101 524574 +los ||| these contacts are inadequate ||| 0.5 0.17185 1.90631e-06 6.98346e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| these contacts are ||| 0.333333 0.17185 1.90631e-06 4.98819e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| these contacts will continue ||| 1 0.17185 1.90631e-06 6.58142e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| these contacts will ||| 1 0.17185 1.90631e-06 2.84417e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| these contacts ||| 0.05 0.17185 3.81262e-06 3.28761e-07 2.718 ||| 0-1 ||| 40 524574 +los ||| these conventions ||| 0.0138889 0.0240362 1.90631e-06 1.04813e-08 2.718 ||| 0-0 ||| 72 524574 +los ||| these costs are much higher ||| 1 0.119239 1.90631e-06 4.32729e-15 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| these costs are much ||| 1 0.119239 1.90631e-06 1.02786e-10 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| these costs are ||| 0.0666667 0.119239 1.90631e-06 1.02407e-07 2.718 ||| 0-0 0-1 ||| 15 524574 +los ||| these costs ||| 0.00694444 0.119239 1.90631e-06 6.74944e-06 2.718 ||| 0-0 0-1 ||| 144 524574 +los ||| these could ||| 0.0175439 0.0240362 1.90631e-06 1.73331e-06 2.718 ||| 0-0 ||| 57 524574 +los ||| these countries and ||| 0.00384615 0.0240362 1.90631e-06 1.1593e-08 2.718 ||| 0-0 ||| 260 524574 +los ||| these countries are onboard , ||| 1 0.0957208 1.90631e-06 6.2573e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| these countries are onboard ||| 1 0.0957208 1.90631e-06 5.24701e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| these countries are ||| 0.00478469 0.0957208 1.90631e-06 1.31175e-07 2.718 ||| 0-1 ||| 209 524574 +los ||| these countries will ||| 0.0357143 0.0240362 1.90631e-06 8.00685e-09 2.718 ||| 0-0 ||| 28 524574 +los ||| these countries ||| 0.00207771 0.0240362 1.90631e-05 9.25519e-07 2.718 ||| 0-0 ||| 4813 524574 +los ||| these criminal ||| 0.125 0.0240362 1.90631e-06 1.01644e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| these criteria ||| 0.003663 0.0666739 1.90631e-06 6.22156e-07 2.718 ||| 0-1 ||| 273 524574 +los ||| these cuts will ||| 1 0.104656 1.90631e-06 1.98016e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| these cuts ||| 0.031746 0.104656 3.81262e-06 2.28888e-07 2.718 ||| 0-1 ||| 63 524574 +los ||| these data ||| 0.00598802 0.16292 1.90631e-06 2.14877e-06 2.718 ||| 0-1 ||| 167 524574 +los ||| these days - ||| 0.142857 0.0240362 1.90631e-06 5.85689e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| these days ||| 0.00208768 0.0240362 1.90631e-06 1.55269e-07 2.718 ||| 0-0 ||| 479 524574 +los ||| these debates has been ||| 1 0.122803 1.90631e-06 9.93099e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| these debates has ||| 1 0.122803 1.90631e-06 2.97406e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| these debates ||| 0.004 0.122803 1.90631e-06 5.77768e-07 2.718 ||| 0-1 ||| 250 524574 +los ||| these decisions ||| 0.00238663 0.0240362 1.90631e-06 1.85981e-07 2.718 ||| 0-0 ||| 419 524574 +los ||| these different ||| 0.00970874 0.0240362 1.90631e-06 5.36738e-07 2.718 ||| 0-0 ||| 103 524574 +los ||| these disasters were all ||| 1 0.0797759 1.90631e-06 2.55209e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| these disasters were ||| 1 0.0797759 1.90631e-06 5.4008e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| these disasters ||| 0.00763359 0.0797759 1.90631e-06 3.01485e-07 2.718 ||| 0-1 ||| 131 524574 +los ||| these documents , ||| 0.0357143 0.212011 1.90631e-06 1.53684e-07 2.718 ||| 0-1 ||| 28 524574 +los ||| these documents ||| 0.0045045 0.212011 1.90631e-06 1.2887e-06 2.718 ||| 0-1 ||| 222 524574 +los ||| these efforts ||| 0.00398406 0.0240362 3.81262e-06 2.964e-07 2.718 ||| 0-0 ||| 502 524574 +los ||| these engineers ||| 1 0.22831 1.90631e-06 5.04031e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| these events by granting ||| 1 0.0240362 1.90631e-06 2.3817e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| these events by ||| 1 0.0240362 1.90631e-06 9.30351e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| these events ||| 0.00220751 0.0240362 1.90631e-06 1.77206e-07 2.718 ||| 0-0 ||| 453 524574 +los ||| these evils ||| 0.125 0.111111 1.90631e-06 1.71122e-08 2.718 ||| 0-1 ||| 8 524574 +los ||| these factors , in my view , ||| 1 0.0240362 1.90631e-06 1.28879e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| these factors , in my view ||| 1 0.0240362 1.90631e-06 1.0807e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| these factors , in my ||| 1 0.0240362 1.90631e-06 1.1964e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| these factors , in ||| 1 0.0240362 1.90631e-06 1.86036e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| these factors , ||| 0.0232558 0.0240362 1.90631e-06 8.69143e-09 2.718 ||| 0-0 ||| 43 524574 +los ||| these factors ||| 0.00406504 0.0240362 1.90631e-06 7.28812e-08 2.718 ||| 0-0 ||| 246 524574 +los ||| these fears are backed up ||| 1 0.0975965 1.90631e-06 8.04162e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| these fears are backed ||| 1 0.0975965 1.90631e-06 2.3579e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| these fears are ||| 0.1 0.0975965 1.90631e-06 2.05035e-09 2.718 ||| 0-1 ||| 10 524574 +los ||| these fears ||| 0.0163934 0.0975965 1.90631e-06 1.35134e-07 2.718 ||| 0-1 ||| 61 524574 +los ||| these firms ||| 0.0263158 0.0240362 1.90631e-06 2.90062e-08 2.718 ||| 0-0 ||| 38 524574 +los ||| these flagrant ||| 0.0588235 0.0240362 1.90631e-06 2.68125e-09 2.718 ||| 0-0 ||| 17 524574 +los ||| these goes to the ||| 1 0.122289 1.90631e-06 5.47496e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| these groups have brought ||| 1 0.143803 1.90631e-06 6.89179e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| these groups have ||| 0.1 0.143803 1.90631e-06 2.46135e-08 2.718 ||| 0-1 ||| 10 524574 +los ||| these groups ||| 0.00440529 0.143803 1.90631e-06 2.05802e-06 2.718 ||| 0-1 ||| 227 524574 +los ||| these include ||| 0.0017762 0.0166249 1.90631e-06 2.25225e-07 2.718 ||| 0-0 0-1 ||| 563 524574 +los ||| these instances ||| 0.0555556 0.109043 1.90631e-06 8.26569e-08 2.718 ||| 0-1 ||| 18 524574 +los ||| these instruments , ||| 0.0333333 0.0684547 1.90631e-06 2.73562e-07 2.718 ||| 0-0 0-1 ||| 30 524574 +los ||| these instruments ||| 0.0106007 0.0240362 5.71893e-06 6.31313e-08 2.718 ||| 0-0 ||| 283 524574 +los ||| these intentions are to be carried ||| 1 0.0240362 1.90631e-06 1.96576e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| these intentions are to be ||| 1 0.0240362 1.90631e-06 6.67038e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| these intentions are to ||| 1 0.0240362 1.90631e-06 3.68064e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| these intentions are ||| 0.25 0.0240362 1.90631e-06 4.14215e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| these intentions ||| 0.0322581 0.0240362 1.90631e-06 2.73e-08 2.718 ||| 0-0 ||| 31 524574 +los ||| these interests ||| 0.0144928 0.0240362 1.90631e-06 3.34181e-07 2.718 ||| 0-0 ||| 69 524574 +los ||| these involve ||| 0.0322581 0.0240362 1.90631e-06 1.20169e-07 2.718 ||| 0-0 ||| 31 524574 +los ||| these is increasing - ||| 1 0.0240362 1.90631e-06 1.4927e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| these is increasing ||| 1 0.0240362 1.90631e-06 3.95721e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| these is that ||| 0.0416667 0.0240362 1.90631e-06 1.28507e-06 2.718 ||| 0-0 ||| 24 524574 +los ||| these is the temporary nature ||| 0.5 0.0731627 1.90631e-06 7.18213e-14 2.718 ||| 0-0 0-2 ||| 2 524574 +los ||| these is the temporary ||| 0.5 0.0731627 1.90631e-06 5.0793e-10 2.718 ||| 0-0 0-2 ||| 2 524574 +los ||| these is the ||| 0.0176991 0.0731627 3.81262e-06 3.27697e-05 2.718 ||| 0-0 0-2 ||| 113 524574 +los ||| these is ||| 0.00900901 0.0240362 5.71893e-06 7.63939e-05 2.718 ||| 0-0 ||| 333 524574 +los ||| these issues with regard to ||| 1 0.0240362 1.90631e-06 2.37176e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| these issues with regard ||| 1 0.0240362 1.90631e-06 2.66915e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| these issues with ||| 0.015873 0.0240362 1.90631e-06 3.92003e-09 2.718 ||| 0-0 ||| 63 524574 +los ||| these issues ||| 0.000328407 0.0240362 1.90631e-06 6.13031e-07 2.718 ||| 0-0 ||| 3045 524574 +los ||| these kinds cannot ||| 1 0.0240362 1.90631e-06 2.60855e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| these kinds ||| 0.00438596 0.0240362 1.90631e-06 1.15781e-07 2.718 ||| 0-0 ||| 228 524574 +los ||| these last ||| 0.0210526 0.0240362 3.81262e-06 5.3235e-07 2.718 ||| 0-0 ||| 95 524574 +los ||| these levels ||| 0.0222222 0.222552 1.90631e-06 2.03987e-06 2.718 ||| 0-1 ||| 45 524574 +los ||| these lines ||| 0.00246305 0.0240362 1.90631e-06 2.21813e-07 2.718 ||| 0-0 ||| 406 524574 +los ||| these little ||| 0.0714286 0.0240362 1.90631e-06 3.94631e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| these longer ||| 0.5 0.0240362 1.90631e-06 4.57031e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| these low-level ||| 1 0.0240362 1.90631e-06 9.75e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| these major ||| 0.0181818 0.0240362 1.90631e-06 2.3595e-07 2.718 ||| 0-0 ||| 55 524574 +los ||| these management ||| 0.5 0.0240362 1.90631e-06 1.07006e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| these matters ||| 0.00268456 0.0412633 7.62523e-06 1.73721e-06 2.718 ||| 0-0 0-1 ||| 1490 524574 +los ||| these may ||| 0.0175439 0.0240362 1.90631e-06 1.82617e-06 2.718 ||| 0-0 ||| 57 524574 +los ||| these measures we are ||| 0.333333 0.0240362 1.90631e-06 8.68664e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| these measures we ||| 0.142857 0.0240362 1.90631e-06 5.72518e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| these measures ||| 0.000507614 0.0240362 1.90631e-06 5.04319e-07 2.718 ||| 0-0 ||| 1970 524574 +los ||| these might bring to ||| 1 0.0240362 1.90631e-06 2.58912e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| these might bring ||| 1 0.0240362 1.90631e-06 2.91377e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| these might ||| 0.0769231 0.0240362 1.90631e-06 9.36e-07 2.718 ||| 0-0 ||| 13 524574 +los ||| these monies ||| 0.04 0.119114 1.90631e-06 4.33508e-08 2.718 ||| 0-1 ||| 25 524574 +los ||| these must be ||| 0.0210526 0.0240362 3.81262e-06 6.82762e-08 2.718 ||| 0-0 ||| 95 524574 +los ||| these must ||| 0.0120482 0.0240362 3.81262e-06 3.7674e-06 2.718 ||| 0-0 ||| 166 524574 +los ||| these new ||| 0.00109649 0.0240362 1.90631e-06 1.45689e-06 2.718 ||| 0-0 ||| 912 524574 +los ||| these objectives , ||| 0.00684932 0.0591921 1.90631e-06 9.65562e-08 2.718 ||| 0-1 ||| 146 524574 +los ||| these objectives ||| 0.0023068 0.0240362 3.81262e-06 1.14075e-07 2.718 ||| 0-0 ||| 867 524574 +los ||| these officials over ||| 1 0.221009 1.90631e-06 3.93249e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| these officials ||| 0.0625 0.221009 1.90631e-06 8.16716e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| these parties ||| 0.0142857 0.132694 1.90631e-06 1.74337e-06 2.718 ||| 0-1 ||| 70 524574 +los ||| these payments ||| 0.0149254 0.14896 1.90631e-06 3.51926e-06 2.718 ||| 0-0 0-1 ||| 67 524574 +los ||| these people are ||| 0.00584795 0.0567517 1.90631e-06 2.91256e-07 2.718 ||| 0-0 0-1 ||| 171 524574 +los ||| these people who are ||| 0.05 0.0240362 1.90631e-06 2.87116e-11 2.718 ||| 0-0 ||| 20 524574 +los ||| these people who ||| 0.0181818 0.0240362 1.90631e-06 1.89232e-09 2.718 ||| 0-0 ||| 55 524574 +los ||| these people ||| 0.00341297 0.0567517 1.14379e-05 1.9196e-05 2.718 ||| 0-0 0-1 ||| 1758 524574 +los ||| these poor ||| 0.0263158 0.0278027 1.90631e-06 4.02919e-07 2.718 ||| 0-0 0-1 ||| 38 524574 +los ||| these principles ||| 0.0017094 0.0388775 1.90631e-06 4.2044e-07 2.718 ||| 0-1 ||| 585 524574 +los ||| these problems , and indeed I am ||| 0.5 0.106249 1.90631e-06 3.25353e-17 2.718 ||| 0-1 ||| 2 524574 +los ||| these problems , and indeed I ||| 0.5 0.106249 1.90631e-06 2.5468e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| these problems , and indeed ||| 0.5 0.106249 1.90631e-06 3.60048e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| these problems , and ||| 0.0384615 0.106249 1.90631e-06 4.7506e-09 2.718 ||| 0-1 ||| 26 524574 +los ||| these problems , ||| 0.00564972 0.106249 1.90631e-06 3.79262e-07 2.718 ||| 0-1 ||| 177 524574 +los ||| these problems with various members of the ||| 1 0.062134 1.90631e-06 2.87571e-20 2.718 ||| 0-5 0-6 ||| 1 524574 +los ||| these problems ||| 0.00126662 0.0651425 3.81262e-06 7.47459e-06 2.718 ||| 0-0 0-1 ||| 1579 524574 +los ||| these processes ||| 0.00833333 0.0240362 1.90631e-06 3.94875e-08 2.718 ||| 0-0 ||| 120 524574 +los ||| these programmes ||| 0.00448431 0.10339 5.71893e-06 6.75651e-06 2.718 ||| 0-0 0-1 ||| 669 524574 +los ||| these projects ||| 0.00728155 0.0240362 5.71893e-06 1.20169e-07 2.718 ||| 0-0 ||| 412 524574 +los ||| these proposals for ||| 0.0277778 0.0240362 1.90631e-06 1.82093e-09 2.718 ||| 0-0 ||| 36 524574 +los ||| these proposals ||| 0.00065703 0.0240362 1.90631e-06 2.36925e-07 2.718 ||| 0-0 ||| 1522 524574 +los ||| these questions ||| 0.00113122 0.0240362 1.90631e-06 2.15719e-07 2.718 ||| 0-0 ||| 884 524574 +los ||| these refugees ||| 0.0128205 0.268654 1.90631e-06 1.55389e-06 2.718 ||| 0-1 ||| 78 524574 +los ||| these regions ||| 0.0012285 0.0240362 1.90631e-06 2.0085e-07 2.718 ||| 0-0 ||| 814 524574 +los ||| these relate to ||| 0.0294118 0.0240362 1.90631e-06 5.37148e-09 2.718 ||| 0-0 ||| 34 524574 +los ||| these relate ||| 0.0113636 0.0240362 1.90631e-06 6.045e-08 2.718 ||| 0-0 ||| 88 524574 +los ||| these reports ||| 0.00114679 0.0868855 1.90631e-06 1.01947e-06 2.718 ||| 0-1 ||| 872 524574 +los ||| these resources ||| 0.00301205 0.121808 1.90631e-06 1.18163e-05 2.718 ||| 0-0 0-1 ||| 332 524574 +los ||| these rights are often sabotaged ||| 0.5 0.0240362 1.90631e-06 3.88964e-19 2.718 ||| 0-0 ||| 2 524574 +los ||| these rights are often ||| 0.5 0.0240362 1.90631e-06 9.72411e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| these rights are ||| 0.0344828 0.0240362 3.81262e-06 7.40039e-09 2.718 ||| 0-0 ||| 58 524574 +los ||| these rights need ||| 0.5 0.0240362 1.90631e-06 4.47212e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| these rights ||| 0.00840336 0.0240362 9.53154e-06 4.87744e-07 2.718 ||| 0-0 ||| 595 524574 +los ||| these risks ||| 0.0162602 0.0240362 3.81262e-06 4.04625e-08 2.718 ||| 0-0 ||| 123 524574 +los ||| these round table ||| 1 0.0240362 1.90631e-06 1.26569e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| these round ||| 1 0.0240362 1.90631e-06 1.86956e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| these secrets ||| 0.5 0.0240362 1.90631e-06 9.75e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| these services to ||| 0.0833333 0.0240362 1.90631e-06 1.91684e-08 2.718 ||| 0-0 ||| 12 524574 +los ||| these services ||| 0.00289017 0.0240362 1.90631e-06 2.15719e-07 2.718 ||| 0-0 ||| 346 524574 +los ||| these sites ||| 0.0263158 0.147482 1.90631e-06 2.06694e-07 2.718 ||| 0-1 ||| 38 524574 +los ||| these states ||| 0.00429185 0.0711636 1.90631e-06 3.68745e-06 2.718 ||| 0-0 0-1 ||| 233 524574 +los ||| these stations ||| 0.0666667 0.0240362 1.90631e-06 2.97375e-08 2.718 ||| 0-0 ||| 15 524574 +los ||| these strikes and the ||| 1 0.0731627 1.90631e-06 1.36207e-10 2.718 ||| 0-0 0-3 ||| 1 524574 +los ||| these studies , the supply ||| 0.5 0.122289 1.90631e-06 2.15846e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| these studies , the ||| 0.25 0.122289 1.90631e-06 4.19118e-10 2.718 ||| 0-3 ||| 4 524574 +los ||| these studies ||| 0.0119048 0.13739 1.90631e-06 4.41701e-07 2.718 ||| 0-1 ||| 84 524574 +los ||| these sums to ||| 1 0.0240362 1.90631e-06 2.72906e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| these sums ||| 0.0185185 0.0240362 1.90631e-06 3.07125e-08 2.718 ||| 0-0 ||| 54 524574 +los ||| these supplies ||| 0.1 0.147627 1.90631e-06 2.5409e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| these systems when conducting ||| 0.5 0.213574 1.90631e-06 2.0552e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| these systems when ||| 0.5 0.213574 1.90631e-06 1.68459e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| these systems ||| 0.00425532 0.213574 1.90631e-06 3.36985e-06 2.718 ||| 0-1 ||| 235 524574 +los ||| these terms ||| 0.0114943 0.0240362 1.90631e-06 2.6754e-06 2.718 ||| 0-0 ||| 87 524574 +los ||| these than the ||| 0.5 0.122289 1.90631e-06 1.35908e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| these the ||| 0.05 0.0731627 1.90631e-06 0.00104558 2.718 ||| 0-0 0-1 ||| 20 524574 +los ||| these third country ||| 1 0.0240362 1.90631e-06 4.10556e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| these third ||| 0.030303 0.0240362 1.90631e-06 1.14075e-07 2.718 ||| 0-0 ||| 33 524574 +los ||| these to be ||| 0.0454545 0.0240362 3.81262e-06 3.92527e-06 2.718 ||| 0-0 ||| 44 524574 +los ||| these to ||| 0.032967 0.0240362 5.71893e-06 0.000216592 2.718 ||| 0-0 ||| 91 524574 +los ||| these two ||| 0.000345781 0.0240362 1.90631e-06 5.76225e-07 2.718 ||| 0-0 ||| 2892 524574 +los ||| these types ||| 0.00571429 0.0240362 1.90631e-06 1.12369e-07 2.718 ||| 0-0 ||| 175 524574 +los ||| these up ||| 0.111111 0.0240362 1.90631e-06 8.31309e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| these very ||| 0.0191083 0.0240362 5.71893e-06 8.48128e-06 2.718 ||| 0-0 ||| 157 524574 +los ||| these were the ||| 0.0253165 0.122289 3.81262e-06 7.96941e-07 2.718 ||| 0-2 ||| 79 524574 +los ||| these women ||| 0.003861 0.0240362 1.90631e-06 2.89575e-07 2.718 ||| 0-0 ||| 259 524574 +los ||| these workers ||| 0.00465116 0.364501 1.90631e-06 7.57456e-06 2.718 ||| 0-1 ||| 215 524574 +los ||| these young ||| 0.027027 0.0240362 1.90631e-06 1.55269e-07 2.718 ||| 0-0 ||| 37 524574 +los ||| these ||| 0.0200112 0.0240362 0.00400706 0.0024375 2.718 ||| 0-0 ||| 105041 524574 +los ||| they 've turned ||| 1 0.0072404 1.90631e-06 8.26622e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| they 've ||| 1 0.0072404 1.90631e-06 1.47348e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| they , the ||| 0.181818 0.122289 3.81262e-06 0.00016697 2.718 ||| 0-2 ||| 11 524574 +los ||| they also appeal to men ; the ||| 1 0.122289 1.90631e-06 2.48301e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| they are all ||| 0.00442478 0.0177928 1.90631e-06 1.33135e-07 2.718 ||| 0-2 ||| 226 524574 +los ||| they are also ||| 0.00236407 0.0072404 1.90631e-06 6.27055e-08 2.718 ||| 0-0 ||| 423 524574 +los ||| they are at the moment ||| 0.2 0.122289 1.90631e-06 1.60742e-11 2.718 ||| 0-3 ||| 5 524574 +los ||| they are at the ||| 0.0322581 0.122289 1.90631e-06 8.8955e-08 2.718 ||| 0-3 ||| 31 524574 +los ||| they are at ||| 0.00819672 0.0072404 1.90631e-06 5.20091e-08 2.718 ||| 0-0 ||| 122 524574 +los ||| they are doing there , ||| 1 0.0072404 1.90631e-06 1.66674e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| they are doing there ||| 0.333333 0.0072404 1.90631e-06 1.39763e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| they are doing ||| 0.00485437 0.0072404 1.90631e-06 4.55952e-09 2.718 ||| 0-0 ||| 206 524574 +los ||| they are facing the ||| 0.2 0.122289 1.90631e-06 1.13228e-09 2.718 ||| 0-3 ||| 5 524574 +los ||| they are flawed . the ||| 0.5 0.122289 1.90631e-06 1.41562e-13 2.718 ||| 0-4 ||| 2 524574 +los ||| they are in their ||| 0.5 0.0236713 1.90631e-06 2.42503e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| they are keeping those ||| 1 0.284705 1.90631e-06 4.85406e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| they are made against the background ||| 1 0.122289 1.90631e-06 2.82436e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| they are made against the ||| 1 0.122289 1.90631e-06 1.06179e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| they are our ||| 0.025 0.0248369 1.90631e-06 1.76854e-07 2.718 ||| 0-2 ||| 40 524574 +los ||| they are putting ||| 0.111111 0.0072404 1.90631e-06 1.38984e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| they are the ||| 0.00796178 0.122289 9.53154e-06 2.12435e-05 2.718 ||| 0-2 ||| 628 524574 +los ||| they are ||| 0.00236431 0.0072404 8.57839e-05 1.24204e-05 2.718 ||| 0-0 ||| 19033 524574 +los ||| they at least ||| 0.0588235 0.0072404 1.90631e-06 8.41184e-10 2.718 ||| 0-0 ||| 17 524574 +los ||| they at ||| 0.0666667 0.0072404 1.90631e-06 3.42781e-06 2.718 ||| 0-0 ||| 15 524574 +los ||| they being ||| 0.142857 0.0072404 1.90631e-06 2.32957e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| they can tell ||| 0.0666667 0.0072404 1.90631e-06 2.39094e-10 2.718 ||| 0-0 ||| 15 524574 +los ||| they can ||| 0.00148544 0.0072404 9.53154e-06 2.43476e-06 2.718 ||| 0-0 ||| 3366 524574 +los ||| they catch dogs and that they put ||| 0.5 0.174107 1.90631e-06 1.62286e-21 2.718 ||| 0-2 ||| 2 524574 +los ||| they catch dogs and that they ||| 0.5 0.174107 1.90631e-06 1.47184e-18 2.718 ||| 0-2 ||| 2 524574 +los ||| they catch dogs and that ||| 0.5 0.174107 1.90631e-06 4.50933e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| they catch dogs and ||| 0.5 0.174107 1.90631e-06 2.68068e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| they catch dogs ||| 0.5 0.174107 1.90631e-06 2.14011e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| they close their ||| 0.25 0.0236713 1.90631e-06 1.10736e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| they consider the ||| 0.142857 0.122289 1.90631e-06 2.22758e-07 2.718 ||| 0-2 ||| 7 524574 +los ||| they could be ||| 0.00970874 0.0072404 1.90631e-06 1.05495e-08 2.718 ||| 0-0 ||| 103 524574 +los ||| they could ||| 0.0025 0.0072404 3.81262e-06 5.82106e-07 2.718 ||| 0-0 ||| 800 524574 +los ||| they cut their ||| 1 0.0236713 1.90631e-06 5.64509e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| they describe ||| 0.1 0.0072404 1.90631e-06 2.00557e-08 2.718 ||| 0-0 ||| 10 524574 +los ||| they did ||| 0.0026455 0.0072404 1.90631e-06 3.71808e-07 2.718 ||| 0-0 ||| 378 524574 +los ||| they do have one ||| 0.125 0.0072404 1.90631e-06 1.40181e-10 2.718 ||| 0-0 ||| 8 524574 +los ||| they do have ||| 0.0227273 0.0072404 1.90631e-06 3.36326e-08 2.718 ||| 0-0 ||| 44 524574 +los ||| they do not ||| 0.000807102 0.0072404 1.90631e-06 9.60092e-09 2.718 ||| 0-0 ||| 1239 524574 +los ||| they do the ||| 0.111111 0.122289 3.81262e-06 4.80981e-06 2.718 ||| 0-2 ||| 18 524574 +los ||| they do ||| 0.00640205 0.0072404 9.53154e-06 2.81214e-06 2.718 ||| 0-0 ||| 781 524574 +los ||| they ensure ||| 0.0204082 0.0072404 1.90631e-06 3.6706e-07 2.718 ||| 0-0 ||| 49 524574 +los ||| they failed to meet the ||| 0.25 0.122289 1.90631e-06 7.0196e-13 2.718 ||| 0-4 ||| 4 524574 +los ||| they have a ||| 0.00269542 0.0072404 1.90631e-06 4.33963e-07 2.718 ||| 0-0 ||| 371 524574 +los ||| they have been ||| 0.00261097 0.0072404 5.71893e-06 3.26917e-08 2.718 ||| 0-0 ||| 1149 524574 +los ||| they have both ||| 0.0357143 0.0072404 1.90631e-06 1.62176e-08 2.718 ||| 0-0 ||| 28 524574 +los ||| they have faced ||| 0.5 0.0072404 1.90631e-06 6.19726e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| they have the right ||| 0.0163934 0.122289 1.90631e-06 1.07989e-08 2.718 ||| 0-2 ||| 61 524574 +los ||| they have the ||| 0.00757576 0.122289 3.81262e-06 1.67451e-05 2.718 ||| 0-2 ||| 264 524574 +los ||| they have to do with ||| 0.111111 0.0007437 1.90631e-06 2.7574e-12 2.718 ||| 0-4 ||| 9 524574 +los ||| they have ||| 0.00142216 0.0072404 2.4782e-05 9.79029e-06 2.718 ||| 0-0 ||| 9141 524574 +los ||| they lie on the ||| 1 0.122289 1.90631e-06 3.54116e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| they may ||| 0.00280505 0.0072404 3.81262e-06 6.13295e-07 2.718 ||| 0-0 ||| 713 524574 +los ||| they must be issued ||| 0.5 0.0072404 1.90631e-06 1.41934e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| they must be ||| 0.00137363 0.0072404 1.90631e-06 2.29296e-08 2.718 ||| 0-0 ||| 728 524574 +los ||| they must ||| 0.000434594 0.0072404 1.90631e-06 1.26523e-06 2.718 ||| 0-0 ||| 2301 524574 +los ||| they need ||| 0.000726216 0.0072404 1.90631e-06 7.50574e-07 2.718 ||| 0-0 ||| 1377 524574 +los ||| they put down the ||| 1 0.122289 1.90631e-06 1.0777e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| they reach ||| 0.0111111 0.0072404 1.90631e-06 6.63066e-08 2.718 ||| 0-0 ||| 90 524574 +los ||| they retain their ||| 0.5 0.0236713 1.90631e-06 1.15739e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| they should be accessible ||| 0.5 0.0072404 1.90631e-06 8.54564e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| they should be ||| 0.00282885 0.0072404 3.81262e-06 6.57357e-08 2.718 ||| 0-0 ||| 707 524574 +los ||| they should ||| 0.00179614 0.0072404 7.62523e-06 3.62722e-06 2.718 ||| 0-0 ||| 2227 524574 +los ||| they still ||| 0.00884956 0.0072404 1.90631e-06 6.1657e-07 2.718 ||| 0-0 ||| 113 524574 +los ||| they the ||| 0.1 0.122289 1.90631e-06 0.00140011 2.718 ||| 0-1 ||| 10 524574 +los ||| they turned up ||| 0.5 0.0072404 1.90631e-06 1.56622e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| they turned ||| 0.0833333 0.0072404 1.90631e-06 4.59235e-08 2.718 ||| 0-0 ||| 12 524574 +los ||| they understand the ||| 0.0588235 0.122289 1.90631e-06 1.09349e-07 2.718 ||| 0-2 ||| 17 524574 +los ||| they use the ||| 0.0285714 0.122289 1.90631e-06 6.80735e-07 2.718 ||| 0-2 ||| 35 524574 +los ||| they verify ||| 0.5 0.0044743 1.90631e-06 6.2016e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| they wanted the ||| 0.5 0.122289 1.90631e-06 7.65862e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| they were able to ||| 0.0294118 0.0072404 1.90631e-06 1.08792e-10 2.718 ||| 0-0 ||| 34 524574 +los ||| they were able ||| 0.04 0.0072404 1.90631e-06 1.22433e-09 2.718 ||| 0-0 ||| 25 524574 +los ||| they were each ||| 1 0.0497499 1.90631e-06 5.14489e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| they were the ||| 0.0377358 0.122289 3.81262e-06 2.50816e-06 2.718 ||| 0-2 ||| 53 524574 +los ||| they were working ||| 0.2 0.0072404 1.90631e-06 2.7921e-10 2.718 ||| 0-0 ||| 5 524574 +los ||| they were ||| 0.00258017 0.0072404 1.33442e-05 1.46644e-06 2.718 ||| 0-0 ||| 2713 524574 +los ||| they will be ||| 0.00119617 0.0072404 1.90631e-06 1.28344e-07 2.718 ||| 0-0 ||| 836 524574 +los ||| they will enable the ||| 0.5 0.122289 1.90631e-06 1.19431e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| they will gain the ||| 1 0.122289 1.90631e-06 6.75886e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| they will reach our ||| 1 0.0248369 1.90631e-06 8.16796e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| they will still own the ||| 1 0.122289 1.90631e-06 1.54667e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| they will ||| 0.00246002 0.0072404 7.62523e-06 7.08187e-06 2.718 ||| 0-0 ||| 1626 524574 +los ||| they ||| 0.00768834 0.0072404 0.000596675 0.0008186 2.718 ||| 0-0 ||| 40711 524574 +los ||| thing of the past ||| 0.0196078 0.122289 3.81262e-06 1.09005e-09 2.718 ||| 0-2 ||| 102 524574 +los ||| thing of the ||| 0.0175439 0.122289 3.81262e-06 8.50939e-06 2.718 ||| 0-2 ||| 114 524574 +los ||| thing these ||| 0.5 0.0240362 1.90631e-06 8.89444e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| thing we know ||| 0.333333 0.0014565 1.90631e-06 8.2009e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| thing we ||| 0.00534759 0.0014565 1.90631e-06 3.17864e-07 2.718 ||| 0-1 ||| 187 524574 +los ||| thing – the ||| 1 0.122289 1.90631e-06 6.15148e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| things are ||| 0.00142248 0.0005024 1.90631e-06 7.43088e-08 2.718 ||| 0-1 ||| 703 524574 +los ||| things by the ||| 0.5 0.122289 1.90631e-06 9.25598e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| things go ||| 0.0263158 0.0013989 3.81262e-06 1.47954e-08 2.718 ||| 0-0 ||| 76 524574 +los ||| things to come ||| 0.0526316 0.0013989 1.90631e-06 1.90932e-09 2.718 ||| 0-0 ||| 19 524574 +los ||| things to ||| 0.0031746 0.0013989 1.90631e-06 2.24811e-06 2.718 ||| 0-0 ||| 315 524574 +los ||| things up ||| 0.0232558 0.0031618 1.90631e-06 8.7132e-08 2.718 ||| 0-1 ||| 43 524574 +los ||| things ||| 0.000377131 0.0013989 9.53154e-06 2.53e-05 2.718 ||| 0-0 ||| 13258 524574 +los ||| think , the ||| 0.0625 0.122289 1.90631e-06 1.95668e-05 2.718 ||| 0-2 ||| 16 524574 +los ||| think ahead of the ||| 1 0.122289 1.90631e-06 9.7226e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| think that the ||| 0.0017094 0.122289 1.90631e-06 2.76002e-06 2.718 ||| 0-2 ||| 585 524574 +los ||| think that this is the ||| 0.125 0.122289 1.90631e-06 5.58924e-10 2.718 ||| 0-4 ||| 8 524574 +los ||| think the ||| 0.0125392 0.122289 7.62523e-06 0.000164076 2.718 ||| 0-1 ||| 319 524574 +los ||| thinking of the ||| 0.00549451 0.122289 1.90631e-06 1.728e-06 2.718 ||| 0-2 ||| 182 524574 +los ||| thinking of ||| 0.00191571 0.0019787 1.90631e-06 2.45093e-07 2.718 ||| 0-1 ||| 522 524574 +los ||| third world levels ||| 1 0.222552 1.90631e-06 2.09692e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| third ||| 0.000398592 0.0011859 1.14379e-05 1.75e-05 2.718 ||| 0-0 ||| 15053 524574 +los ||| third-country nationals who are ||| 0.0434783 0.287174 1.90631e-06 4.64116e-14 2.718 ||| 0-1 ||| 23 524574 +los ||| third-country nationals who ||| 0.0151515 0.287174 1.90631e-06 3.05889e-12 2.718 ||| 0-1 ||| 66 524574 +los ||| third-country nationals ||| 0.0018622 0.287174 1.90631e-06 3.46813e-09 2.718 ||| 0-1 ||| 537 524574 +los ||| third-party ||| 0.0285714 0.0727273 3.81262e-06 1.17e-05 2.718 ||| 0-0 ||| 70 524574 +los ||| this , and the point is best ||| 1 0.122289 1.90631e-06 1.57216e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| this , and the point is ||| 1 0.122289 1.90631e-06 1.13513e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| this , and the point ||| 1 0.122289 1.90631e-06 3.62187e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| this , and the ||| 0.0238095 0.122289 1.90631e-06 4.14023e-06 2.718 ||| 0-3 ||| 42 524574 +los ||| this , the ||| 0.00625 0.122289 7.62523e-06 0.000330533 2.718 ||| 0-2 ||| 640 524574 +los ||| this Community law , ||| 1 0.000733 1.90631e-06 2.77131e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| this Community law ||| 0.5 0.000733 1.90631e-06 2.32386e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| this Community ||| 0.0125 0.000733 1.90631e-06 1.31813e-07 2.718 ||| 0-1 ||| 80 524574 +los ||| this EUR ||| 0.130435 0.0343255 5.71893e-06 3.68752e-06 2.718 ||| 0-1 ||| 23 524574 +los ||| this European Union has got a fine ||| 1 0.0063694 1.90631e-06 4.38904e-21 2.718 ||| 0-6 ||| 1 524574 +los ||| this a ||| 0.00232558 0.0002959 1.90631e-06 6.72422e-06 2.718 ||| 0-0 ||| 430 524574 +los ||| this also ||| 0.00130548 0.0002959 1.90631e-06 7.65873e-07 2.718 ||| 0-0 ||| 766 524574 +los ||| this area , the ||| 0.0114943 0.122289 1.90631e-06 1.3727e-07 2.718 ||| 0-3 ||| 87 524574 +los ||| this around when we talk of ||| 0.5 0.0006199 1.90631e-06 1.57387e-18 2.718 ||| 0-2 ||| 2 524574 +los ||| this around when we talk ||| 0.5 0.0006199 1.90631e-06 2.89505e-17 2.718 ||| 0-2 ||| 2 524574 +los ||| this around when we ||| 0.5 0.0006199 1.90631e-06 3.6053e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| this around when ||| 0.5 0.0006199 1.90631e-06 3.17583e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| this before the ||| 0.0357143 0.122289 1.90631e-06 6.93192e-07 2.718 ||| 0-2 ||| 28 524574 +los ||| this case , the ||| 0.0104167 0.122289 3.81262e-06 3.53638e-07 2.718 ||| 0-3 ||| 192 524574 +los ||| this concerns the ||| 0.0113636 0.122289 1.90631e-06 2.07597e-07 2.718 ||| 0-2 ||| 88 524574 +los ||| this context the ||| 0.015625 0.122289 1.90631e-06 3.71957e-07 2.718 ||| 0-2 ||| 64 524574 +los ||| this early ||| 0.025641 0.0061936 1.90631e-06 2.19688e-07 2.718 ||| 0-1 ||| 39 524574 +los ||| this first step and the ||| 1 0.122289 1.90631e-06 2.75706e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| this for the ||| 0.0169492 0.122289 1.90631e-06 2.13021e-05 2.718 ||| 0-2 ||| 59 524574 +los ||| this has ||| 0.000347343 0.0002959 1.90631e-06 7.80876e-07 2.718 ||| 0-0 ||| 2879 524574 +los ||| this if the ||| 0.142857 0.122289 1.90631e-06 2.316e-06 2.718 ||| 0-2 ||| 7 524574 +los ||| this in the constitution ||| 0.5 0.122289 1.90631e-06 9.84811e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| this in the ||| 0.00376648 0.122289 3.81262e-06 5.9326e-05 2.718 ||| 0-2 ||| 531 524574 +los ||| this increases by ||| 0.25 0.0695532 1.90631e-06 4.9799e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| this increases ||| 0.0227273 0.0695532 1.90631e-06 9.48534e-07 2.718 ||| 0-1 ||| 44 524574 +los ||| this involves national ||| 1 0.0129851 1.90631e-06 8.45841e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| this is a matter of the ||| 0.0833333 0.122289 1.90631e-06 2.17175e-10 2.718 ||| 0-5 ||| 12 524574 +los ||| this is borne out by the ||| 0.0666667 0.122289 1.90631e-06 5.59005e-14 2.718 ||| 0-5 ||| 15 524574 +los ||| this is certainly already the case ||| 0.333333 0.122289 1.90631e-06 1.07815e-14 2.718 ||| 0-4 ||| 3 524574 +los ||| this is certainly already the ||| 0.333333 0.122289 1.90631e-06 1.00771e-11 2.718 ||| 0-4 ||| 3 524574 +los ||| this is land ||| 1 0.0056051 1.90631e-06 4.33366e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| this is our suggestion to you . ||| 1 0.0248369 1.90631e-06 1.04322e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| this is our suggestion to you ||| 1 0.0248369 1.90631e-06 3.4441e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| this is our suggestion to ||| 1 0.0248369 1.90631e-06 1.06672e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| this is our suggestion ||| 1 0.0248369 1.90631e-06 1.20047e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| this is our ||| 0.00361011 0.0248369 1.90631e-06 7.23174e-07 2.718 ||| 0-2 ||| 277 524574 +los ||| this is something which the ||| 0.111111 0.122289 1.90631e-06 4.08427e-10 2.718 ||| 0-4 ||| 9 524574 +los ||| this is the ||| 0.000449775 0.122289 5.71893e-06 8.68668e-05 2.718 ||| 0-2 ||| 6670 524574 +los ||| this is where ||| 0.00139082 0.0449398 1.90631e-06 4.46934e-07 2.718 ||| 0-2 ||| 719 524574 +los ||| this issue , the ||| 0.0151515 0.122289 1.90631e-06 2.50148e-07 2.718 ||| 0-3 ||| 66 524574 +los ||| this kind of ||| 0.000718907 0.0019787 1.90631e-06 1.04294e-08 2.718 ||| 0-2 ||| 1391 524574 +los ||| this mainly on the ||| 0.333333 0.122289 1.90631e-06 8.67914e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| this means that none of the arguments ||| 1 0.122289 1.90631e-06 7.66451e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| this means that none of the ||| 0.333333 0.122289 1.90631e-06 3.18029e-14 2.718 ||| 0-5 ||| 3 524574 +los ||| this means that the ||| 0.00234742 0.122289 1.90631e-06 2.95455e-08 2.718 ||| 0-3 ||| 426 524574 +los ||| this means the ||| 0.0208333 0.122289 1.90631e-06 1.7564e-06 2.718 ||| 0-2 ||| 48 524574 +los ||| this moment in ||| 0.0222222 0.0002959 1.90631e-06 5.86744e-10 2.718 ||| 0-0 ||| 45 524574 +los ||| this moment ||| 0.00203252 0.0002959 1.90631e-06 2.74122e-08 2.718 ||| 0-0 ||| 492 524574 +los ||| this package should involve the ||| 1 0.122289 1.90631e-06 2.87595e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| this particular ||| 0.00210526 0.0002959 1.90631e-06 9.33562e-08 2.718 ||| 0-0 ||| 475 524574 +los ||| this performance ||| 0.125 0.0136418 1.90631e-06 1.44735e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| this process , and ||| 0.02 0.0002959 1.90631e-06 9.68738e-11 2.718 ||| 0-0 ||| 50 524574 +los ||| this process , ||| 0.002331 0.0002959 1.90631e-06 7.73388e-09 2.718 ||| 0-0 ||| 429 524574 +los ||| this process ||| 0.000341647 0.0002959 1.90631e-06 6.48517e-08 2.718 ||| 0-0 ||| 2927 524574 +los ||| this progress ||| 0.00518135 0.0392854 1.90631e-06 5.48444e-06 2.718 ||| 0-1 ||| 193 524574 +los ||| this regard ||| 0.000258732 0.0002959 1.90631e-06 1.03293e-07 2.718 ||| 0-0 ||| 3865 524574 +los ||| this research sets the ||| 0.333333 0.122289 1.90631e-06 5.89964e-12 2.718 ||| 0-3 ||| 3 524574 +los ||| this respect , the ||| 0.002849 0.122289 1.90631e-06 1.42989e-07 2.718 ||| 0-3 ||| 351 524574 +los ||| this respect too , the ||| 0.5 0.122289 1.90631e-06 1.94608e-10 2.718 ||| 0-4 ||| 2 524574 +los ||| this road the ||| 1 0.122289 1.90631e-06 2.47232e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| this social tragedy . we need - ||| 0.25 0.0037997 1.90631e-06 7.92701e-22 2.718 ||| 0-1 ||| 4 524574 +los ||| this social tragedy . we need ||| 0.25 0.0037997 1.90631e-06 2.10148e-19 2.718 ||| 0-1 ||| 4 524574 +los ||| this social tragedy . we ||| 0.25 0.0037997 1.90631e-06 2.29195e-16 2.718 ||| 0-1 ||| 4 524574 +los ||| this social tragedy . ||| 0.25 0.0037997 1.90631e-06 2.01893e-14 2.718 ||| 0-1 ||| 4 524574 +los ||| this social tragedy ||| 0.2 0.0037997 1.90631e-06 6.66532e-12 2.718 ||| 0-1 ||| 5 524574 +los ||| this social ||| 0.1 0.0037997 1.90631e-06 9.80194e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| this system , the ||| 0.2 0.122289 1.90631e-06 9.21857e-08 2.718 ||| 0-3 ||| 5 524574 +los ||| this through the ||| 0.0434783 0.122289 1.90631e-06 1.27579e-06 2.718 ||| 0-2 ||| 23 524574 +los ||| this time , those ||| 1 0.284705 1.90631e-06 2.11227e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| this up , ||| 0.0526316 0.0031618 1.90631e-06 1.63357e-07 2.718 ||| 0-1 ||| 19 524574 +los ||| this up ||| 0.00684932 0.0031618 1.90631e-06 1.36982e-06 2.718 ||| 0-1 ||| 146 524574 +los ||| this vision and the ||| 1 0.122289 1.90631e-06 4.23554e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| this was one of the conclusions ||| 1 0.122289 1.90631e-06 4.95838e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| this was one of the ||| 0.0169492 0.122289 1.90631e-06 1.96761e-09 2.718 ||| 0-4 ||| 59 524574 +los ||| this way the ||| 0.0169492 0.122289 1.90631e-06 5.97459e-06 2.718 ||| 0-2 ||| 59 524574 +los ||| this would be linked to the salaries ||| 1 0.122289 1.90631e-06 3.93229e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| this would be linked to the ||| 1 0.122289 1.90631e-06 1.0923e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| this would ||| 0.000630915 0.0002959 1.90631e-06 8.90282e-07 2.718 ||| 0-0 ||| 1585 524574 +los ||| this year in the ||| 0.05 0.122289 1.90631e-06 1.47959e-08 2.718 ||| 0-3 ||| 20 524574 +los ||| this ||| 0.000248918 0.0002959 0.000244008 0.0001517 2.718 ||| 0-0 ||| 514225 524574 +los ||| thorough presentation of the ||| 0.333333 0.122289 1.90631e-06 6.48476e-12 2.718 ||| 0-3 ||| 3 524574 +los ||| those " ||| 0.333333 0.284705 1.90631e-06 3.95399e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| those , ||| 0.0608108 0.284705 1.71568e-05 0.00199127 2.718 ||| 0-0 ||| 148 524574 +los ||| those - ||| 0.05 0.284705 1.90631e-06 6.2985e-05 2.718 ||| 0-0 ||| 20 524574 +los ||| those . ||| 0.0166667 0.284705 1.90631e-06 5.0577e-05 2.718 ||| 0-0 ||| 60 524574 +los ||| those EU ||| 0.25 0.144512 1.90631e-06 9.02672e-06 2.718 ||| 0-0 0-1 ||| 4 524574 +los ||| those European ||| 0.375 0.284705 5.71893e-06 5.58351e-05 2.718 ||| 0-0 ||| 8 524574 +los ||| those GMOs that contain ||| 1 0.258789 1.90631e-06 2.1466e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| those GMOs that ||| 0.5 0.258789 1.90631e-06 6.27662e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| those GMOs ||| 0.2 0.258789 1.90631e-06 3.73129e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| those I have ||| 0.0714286 0.284705 1.90631e-06 1.41258e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| those I ||| 0.0714286 0.284705 3.81262e-06 0.00011811 2.718 ||| 0-0 ||| 28 524574 +los ||| those MEPs ||| 0.0212766 0.284705 1.90631e-06 2.93878e-07 2.718 ||| 0-0 ||| 47 524574 +los ||| those Member States ||| 0.00114025 0.284705 1.90631e-06 4.10596e-09 2.718 ||| 0-0 ||| 877 524574 +los ||| those Member ||| 0.03125 0.284705 1.90631e-06 8.60427e-06 2.718 ||| 0-0 ||| 32 524574 +los ||| those Members of this ||| 0.0625 0.284705 1.90631e-06 8.65135e-10 2.718 ||| 0-0 ||| 16 524574 +los ||| those Members of ||| 0.0243902 0.284705 1.90631e-06 1.33893e-07 2.718 ||| 0-0 ||| 41 524574 +los ||| those Members ||| 0.00738916 0.284705 5.71893e-06 2.4629e-06 2.718 ||| 0-0 ||| 406 524574 +los ||| those States that fail to meet their ||| 1 0.284705 1.90631e-06 9.06499e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| those States that fail to meet ||| 1 0.284705 1.90631e-06 7.82072e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| those States that fail to ||| 1 0.284705 1.90631e-06 6.43151e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| those States that fail ||| 1 0.284705 1.90631e-06 7.23795e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| those States that ||| 0.0333333 0.284705 1.90631e-06 1.34036e-07 2.718 ||| 0-0 ||| 30 524574 +los ||| those States ||| 0.0175439 0.284705 3.81262e-06 7.96809e-06 2.718 ||| 0-0 ||| 114 524574 +los ||| those Swedes ||| 1 0.284705 1.90631e-06 1.16883e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| those able ||| 0.2 0.284705 1.90631e-06 1.39408e-05 2.718 ||| 0-0 ||| 5 524574 +los ||| those about the ||| 0.333333 0.284705 1.90631e-06 1.44979e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| those about ||| 0.0769231 0.284705 1.90631e-06 2.36154e-05 2.718 ||| 0-0 ||| 13 524574 +los ||| those achieved ||| 0.1 0.284705 1.90631e-06 2.79351e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| those acting ||| 0.0833333 0.284705 1.90631e-06 9.85158e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| those actually ||| 0.0714286 0.284705 1.90631e-06 6.89277e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| those affected ||| 0.00332226 0.284705 1.90631e-06 1.11206e-06 2.718 ||| 0-0 ||| 301 524574 +los ||| those against ||| 0.0294118 0.284705 1.90631e-06 3.98405e-06 2.718 ||| 0-0 ||| 34 524574 +los ||| those agreements ||| 0.0222222 0.284705 3.81262e-06 6.19481e-07 2.718 ||| 0-0 ||| 90 524574 +los ||| those already ||| 0.0212766 0.284705 3.81262e-06 7.73266e-06 2.718 ||| 0-0 ||| 94 524574 +los ||| those applicable ||| 0.0588235 0.284705 1.90631e-06 4.02412e-07 2.718 ||| 0-0 ||| 17 524574 +los ||| those are the ||| 0.00327869 0.284705 1.90631e-06 1.55535e-05 2.718 ||| 0-0 ||| 305 524574 +los ||| those are ||| 0.00453172 0.284705 5.71893e-06 0.000253348 2.718 ||| 0-0 ||| 662 524574 +los ||| those areas ||| 0.00601504 0.284705 7.62523e-06 3.82208e-06 2.718 ||| 0-0 ||| 665 524574 +los ||| those arising from ||| 0.0714286 0.284705 1.90631e-06 7.82494e-10 2.718 ||| 0-0 ||| 14 524574 +los ||| those arising ||| 0.166667 0.284705 1.90631e-06 4.859e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| those as the level of the ||| 1 0.135975 1.90631e-06 7.29597e-12 2.718 ||| 0-0 0-1 0-2 ||| 1 524574 +los ||| those as the level of ||| 1 0.135975 1.90631e-06 1.18843e-10 2.718 ||| 0-0 0-1 0-2 ||| 1 524574 +los ||| those as the level ||| 1 0.135975 1.90631e-06 2.18606e-09 2.718 ||| 0-0 0-1 0-2 ||| 1 524574 +los ||| those as the ||| 1 0.135975 1.90631e-06 2.55559e-06 2.718 ||| 0-0 0-1 0-2 ||| 1 524574 +los ||| those at a ||| 0.166667 0.284705 1.90631e-06 3.09924e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| those at its ||| 0.25 0.284705 1.90631e-06 9.96144e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| those at the bottom of the ||| 0.5 0.122289 1.90631e-06 6.25087e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| those at the bottom of ||| 0.333333 0.122289 1.90631e-06 1.01819e-12 2.718 ||| 0-2 ||| 3 524574 +los ||| those at the bottom ||| 0.25 0.122289 1.90631e-06 1.87292e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| those at the level of ||| 1 0.284705 1.90631e-06 1.99613e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| those at the level ||| 1 0.284705 1.90631e-06 3.67179e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| those at the ||| 0.04 0.284705 3.81262e-06 4.29249e-06 2.718 ||| 0-0 ||| 50 524574 +los ||| those at ||| 0.0291262 0.284705 5.71893e-06 6.99195e-05 2.718 ||| 0-0 ||| 103 524574 +los ||| those back ||| 1 0.284705 1.90631e-06 1.12308e-05 2.718 ||| 0-0 ||| 1 524574 +los ||| those being wronged ||| 0.2 0.284705 1.90631e-06 1.90072e-11 2.718 ||| 0-0 ||| 5 524574 +los ||| those being ||| 0.0833333 0.284705 7.62523e-06 4.7518e-05 2.718 ||| 0-0 ||| 48 524574 +los ||| those belonging ||| 0.0526316 0.284705 1.90631e-06 4.50835e-07 2.718 ||| 0-0 ||| 19 524574 +los ||| those biota and ||| 1 0.284705 1.90631e-06 8.3661e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| those biota ||| 1 0.284705 1.90631e-06 6.67904e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| those bringing proceedings ||| 1 0.284705 1.90631e-06 4.86717e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| those bringing ||| 0.333333 0.284705 1.90631e-06 1.34082e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| those businesses ||| 0.0232558 0.284705 1.90631e-06 4.44156e-07 2.718 ||| 0-0 ||| 43 524574 +los ||| those by ||| 0.025641 0.284705 1.90631e-06 8.76641e-05 2.718 ||| 0-0 ||| 39 524574 +los ||| those carried out by the ||| 0.142857 0.284705 1.90631e-06 6.07514e-12 2.718 ||| 0-0 ||| 7 524574 +los ||| those carried out by ||| 0.0769231 0.284705 1.90631e-06 9.89569e-11 2.718 ||| 0-0 ||| 13 524574 +los ||| those carried out ||| 0.1 0.284705 5.71893e-06 1.88486e-08 2.718 ||| 0-0 ||| 30 524574 +los ||| those carried ||| 0.15 0.284705 5.71893e-06 4.92078e-06 2.718 ||| 0-0 ||| 20 524574 +los ||| those cases where tendering is possible , ||| 1 0.284705 1.90631e-06 7.77184e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| those cases where tendering is possible ||| 1 0.284705 1.90631e-06 6.51701e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| those cases where tendering is ||| 1 0.284705 1.90631e-06 8.12494e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| those cases where tendering ||| 1 0.284705 1.90631e-06 2.59242e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| those cases where ||| 0.0425532 0.284705 3.81262e-06 6.48106e-10 2.718 ||| 0-0 ||| 47 524574 +los ||| those cases ||| 0.0263158 0.284705 7.62523e-06 2.13896e-06 2.718 ||| 0-0 ||| 152 524574 +los ||| those challenges ||| 0.0188679 0.284705 1.90631e-06 3.12245e-07 2.718 ||| 0-0 ||| 53 524574 +los ||| those colleagues ||| 0.00793651 0.0749603 1.90631e-06 5.64653e-07 2.718 ||| 0-1 ||| 126 524574 +los ||| those coming ||| 0.111111 0.147041 1.90631e-06 1.08701e-06 2.718 ||| 0-0 0-1 ||| 9 524574 +los ||| those comments ||| 0.025641 0.284705 1.90631e-06 8.3488e-07 2.718 ||| 0-0 ||| 39 524574 +los ||| those concerned ||| 0.0165289 0.284705 7.62523e-06 2.68598e-05 2.718 ||| 0-0 ||| 242 524574 +los ||| those conducted ||| 1 0.284705 1.90631e-06 1.0102e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| those considered ||| 0.0909091 0.284705 1.90631e-06 1.79666e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| those constituents ||| 0.5 0.284705 1.90631e-06 5.34323e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| those contained ||| 0.0416667 0.284705 1.90631e-06 1.13544e-06 2.718 ||| 0-0 ||| 24 524574 +los ||| those countries , the ||| 0.1 0.122289 1.90631e-06 1.40646e-08 2.718 ||| 0-3 ||| 10 524574 +los ||| those countries where ||| 0.0116279 0.141789 1.90631e-06 3.07202e-07 2.718 ||| 0-0 0-1 0-2 ||| 86 524574 +los ||| those countries which ||| 0.00236407 0.284705 1.90631e-06 5.38564e-08 2.718 ||| 0-0 ||| 423 524574 +los ||| those countries ||| 0.00581583 0.284705 3.43136e-05 6.34008e-06 2.718 ||| 0-0 ||| 3095 524574 +los ||| those covered ||| 0.0769231 0.284705 1.90631e-06 1.19555e-06 2.718 ||| 0-0 ||| 13 524574 +los ||| those currently in positions of ||| 1 0.284705 1.90631e-06 6.85627e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| those currently in positions ||| 1 0.284705 1.90631e-06 1.26118e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| those currently in ||| 0.05 0.284705 1.90631e-06 3.7313e-08 2.718 ||| 0-0 ||| 20 524574 +los ||| those currently ||| 0.0277778 0.284705 1.90631e-06 1.74323e-06 2.718 ||| 0-0 ||| 36 524574 +los ||| those days , ||| 0.0588235 0.284705 1.90631e-06 1.26844e-07 2.718 ||| 0-0 ||| 17 524574 +los ||| those days ||| 0.012987 0.284705 1.90631e-06 1.06364e-06 2.718 ||| 0-0 ||| 77 524574 +los ||| those dealt with ||| 0.25 0.284705 1.90631e-06 1.11791e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| those dealt ||| 0.333333 0.284705 1.90631e-06 1.74824e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| those described ||| 0.0666667 0.284705 1.90631e-06 7.44713e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| those developed ||| 0.25 0.284705 1.90631e-06 1.14713e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| those distinguished ||| 0.166667 0.284705 1.90631e-06 9.68461e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| those doing ||| 0.0909091 0.284705 1.90631e-06 6.12969e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| those drawn up ||| 0.333333 0.284705 1.90631e-06 8.09219e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| those drawn ||| 0.333333 0.284705 1.90631e-06 2.37273e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| those earned ||| 0.666667 0.284705 3.81262e-06 1.43599e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| those employed ||| 0.0188679 0.284705 1.90631e-06 4.80891e-07 2.718 ||| 0-0 ||| 53 524574 +los ||| those engaged in ||| 0.0322581 0.284705 3.81262e-06 1.46536e-08 2.718 ||| 0-0 ||| 62 524574 +los ||| those engaged ||| 0.0441176 0.284705 5.71893e-06 6.84602e-07 2.718 ||| 0-0 ||| 68 524574 +los ||| those enjoyed ||| 0.181818 0.284705 3.81262e-06 3.84045e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| those entailed ||| 1 0.284705 1.90631e-06 6.67904e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| those entitled ||| 0.1 0.284705 1.90631e-06 8.16513e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| those even in ||| 1 0.284705 1.90631e-06 2.1748e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| those even ||| 1 0.284705 1.90631e-06 1.01605e-05 2.718 ||| 0-0 ||| 1 524574 +los ||| those factors ||| 0.0384615 0.284705 1.90631e-06 4.99258e-07 2.718 ||| 0-0 ||| 26 524574 +los ||| those facts ||| 0.0588235 0.284705 1.90631e-06 3.42301e-07 2.718 ||| 0-0 ||| 17 524574 +los ||| those fall by ||| 0.333333 0.284705 1.90631e-06 8.38945e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| those fall ||| 0.333333 0.284705 1.90631e-06 1.59796e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| those few ||| 0.025641 0.284705 1.90631e-06 2.92709e-06 2.718 ||| 0-0 ||| 39 524574 +los ||| those fields that ||| 1 0.284705 1.90631e-06 1.04207e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| those fields ||| 0.111111 0.284705 3.81262e-06 6.19481e-07 2.718 ||| 0-0 ||| 18 524574 +los ||| those final stages , the ||| 1 0.122289 1.90631e-06 4.26765e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| those fitted ||| 0.5 0.284705 1.90631e-06 1.56957e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| those flights ||| 0.166667 0.284705 1.90631e-06 1.3859e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| those for whom they ||| 0.333333 0.14312 1.90631e-06 3.20073e-12 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| those for whom ||| 0.025641 0.14312 1.90631e-06 9.80615e-10 2.718 ||| 0-0 0-1 ||| 39 524574 +los ||| those for ||| 0.019084 0.14312 9.53154e-06 1.47239e-05 2.718 ||| 0-0 0-1 ||| 262 524574 +los ||| those found ||| 0.0384615 0.284705 1.90631e-06 3.65343e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| those from groups of ||| 1 0.284705 1.90631e-06 9.67737e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| those from groups ||| 1 0.284705 1.90631e-06 1.78011e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| those from ||| 0.0316901 0.284705 1.71568e-05 2.68898e-05 2.718 ||| 0-0 ||| 284 524574 +los ||| those further ||| 0.222222 0.284705 3.81262e-06 8.06995e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| those goods ||| 0.047619 0.284705 1.90631e-06 7.69759e-07 2.718 ||| 0-0 ||| 21 524574 +los ||| those groups of the ||| 1 0.136324 1.90631e-06 1.56833e-09 2.718 ||| 0-0 0-2 0-3 ||| 1 524574 +los ||| those groups of ||| 0.2 0.284705 1.90631e-06 6.00929e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| those groups ||| 0.0285714 0.284705 3.81262e-06 1.10538e-06 2.718 ||| 0-0 ||| 70 524574 +los ||| those guidelines ||| 0.0263158 0.284705 1.90631e-06 3.53989e-07 2.718 ||| 0-0 ||| 38 524574 +los ||| those guilty of ||| 0.0181818 0.284705 1.90631e-06 1.92443e-08 2.718 ||| 0-0 ||| 55 524574 +los ||| those guilty ||| 0.0142857 0.284705 1.90631e-06 3.53989e-07 2.718 ||| 0-0 ||| 70 524574 +los ||| those have taken part in ||| 1 0.284705 1.90631e-06 4.64503e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| those have taken part ||| 1 0.284705 1.90631e-06 2.17012e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| those have taken ||| 1 0.284705 1.90631e-06 1.82027e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| those have ||| 0.0769231 0.284705 1.90631e-06 0.0001997 2.718 ||| 0-0 ||| 13 524574 +los ||| those held ||| 0.166667 0.284705 5.71893e-06 4.25956e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| those here ||| 0.111111 0.284705 3.81262e-06 3.38594e-05 2.718 ||| 0-0 ||| 18 524574 +los ||| those immediately ||| 1 0.284705 1.90631e-06 6.61225e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| those in a ||| 0.0555556 0.284705 1.90631e-06 1.58422e-05 2.718 ||| 0-0 ||| 18 524574 +los ||| those in charge of ||| 0.0588235 0.284705 1.90631e-06 9.79267e-10 2.718 ||| 0-0 ||| 17 524574 +los ||| those in charge ||| 0.0285714 0.284705 1.90631e-06 1.80132e-08 2.718 ||| 0-0 ||| 35 524574 +los ||| those in favour ||| 0.0135135 0.284705 1.90631e-06 1.1562e-07 2.718 ||| 0-0 ||| 74 524574 +los ||| those in positions of ||| 0.0909091 0.284705 3.81262e-06 6.56731e-10 2.718 ||| 0-0 ||| 22 524574 +los ||| those in positions ||| 0.0909091 0.284705 3.81262e-06 1.20802e-08 2.718 ||| 0-0 ||| 22 524574 +los ||| those in power to ||| 0.2 0.284705 1.90631e-06 4.74151e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| those in power ||| 0.010989 0.284705 1.90631e-06 5.33604e-08 2.718 ||| 0-0 ||| 91 524574 +los ||| those in the ||| 0.0294118 0.203497 2.66883e-05 0.000153311 2.718 ||| 0-0 0-2 ||| 476 524574 +los ||| those in which ||| 0.03125 0.284705 1.90631e-06 3.036e-06 2.718 ||| 0-0 ||| 32 524574 +los ||| those in ||| 0.0563196 0.284705 0.000163943 0.000357404 2.718 ||| 0-0 ||| 1527 524574 +los ||| those individuals ||| 0.0196078 0.284705 1.90631e-06 5.41002e-07 2.718 ||| 0-0 ||| 51 524574 +los ||| those instances ||| 0.0833333 0.284705 1.90631e-06 1.92022e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| those interests , the interests ||| 1 0.284705 1.90631e-06 2.29781e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| those interests , the ||| 1 0.284705 1.90631e-06 1.67601e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| those interests , ||| 0.142857 0.284705 1.90631e-06 2.73003e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| those interests ||| 0.025 0.284705 1.90631e-06 2.28924e-06 2.718 ||| 0-0 ||| 40 524574 +los ||| those involved ||| 0.00565771 0.284705 7.62523e-06 5.77403e-06 2.718 ||| 0-0 ||| 707 524574 +los ||| those involving the ||| 0.1 0.203497 1.90631e-06 2.24188e-07 2.718 ||| 0-0 0-2 ||| 10 524574 +los ||| those issues through ||| 0.5 0.284705 1.90631e-06 1.93301e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| those issues ||| 0.0103093 0.284705 5.71893e-06 4.19945e-06 2.718 ||| 0-0 ||| 291 524574 +los ||| those it holds in ||| 1 0.284705 1.90631e-06 1.80504e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| those it holds ||| 1 0.284705 1.90631e-06 8.433e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| those it is ||| 0.142857 0.284705 1.90631e-06 9.30632e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| those it ||| 0.0789474 0.284705 5.71893e-06 0.000296937 2.718 ||| 0-0 ||| 38 524574 +los ||| those known as the ||| 0.5 0.284705 1.90631e-06 1.1517e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| those known as ||| 0.111111 0.284705 1.90631e-06 1.87598e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| those known ||| 0.1 0.284705 1.90631e-06 1.83841e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| those laid down ||| 0.025 0.284705 1.90631e-06 1.27057e-09 2.718 ||| 0-0 ||| 40 524574 +los ||| those laid ||| 0.2 0.284705 1.90631e-06 1.82004e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| those like the ||| 0.2 0.284705 1.90631e-06 1.82047e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| those like ||| 0.0208333 0.284705 1.90631e-06 2.96533e-05 2.718 ||| 0-0 ||| 48 524574 +los ||| those loans ||| 0.0588235 0.239777 1.90631e-06 5.6488e-06 2.718 ||| 0-0 0-1 ||| 17 524574 +los ||| those looming ||| 0.5 0.284705 1.90631e-06 4.8423e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| those made by all the ||| 1 0.107758 1.90631e-06 6.53354e-11 2.718 ||| 0-0 0-2 0-3 0-4 ||| 1 524574 +los ||| those made ||| 0.0675676 0.284705 9.53154e-06 3.49781e-05 2.718 ||| 0-0 ||| 74 524574 +los ||| those mainly ||| 0.5 0.284705 1.90631e-06 7.81448e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| those making presentations and ||| 0.5 0.284705 1.90631e-06 3.21844e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| those making presentations ||| 0.5 0.284705 1.90631e-06 2.56943e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| those making ||| 0.125 0.284705 3.81262e-06 6.42357e-06 2.718 ||| 0-0 ||| 16 524574 +los ||| those managed directly by the European institutions ||| 1 0.284705 1.90631e-06 2.00355e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| those managed directly by the European ||| 1 0.284705 1.90631e-06 3.81628e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| those managed directly by the ||| 1 0.284705 1.90631e-06 1.14127e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| those managed directly by ||| 1 0.284705 1.90631e-06 1.85899e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| those managed directly ||| 1 0.284705 1.90631e-06 3.54086e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| those managed ||| 0.166667 0.284705 1.90631e-06 9.36735e-07 2.718 ||| 0-0 ||| 6 524574 +los ||| those markets ||| 0.0217391 0.239993 1.90631e-06 2.05572e-06 2.718 ||| 0-1 ||| 46 524574 +los ||| those marks ||| 1 0.284705 1.90631e-06 2.47124e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| those means ||| 0.111111 0.284705 1.90631e-06 1.05813e-05 2.718 ||| 0-0 ||| 9 524574 +los ||| those members ||| 0.0151515 0.284705 1.90631e-06 2.4629e-06 2.718 ||| 0-0 ||| 66 524574 +los ||| those met by ||| 1 0.284705 1.90631e-06 6.72383e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| those met ||| 1 0.284705 1.90631e-06 1.28071e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| those methods ||| 0.0666667 0.284705 1.90631e-06 5.29314e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| those negotiations ||| 0.00793651 0.284705 1.90631e-06 9.25047e-07 2.718 ||| 0-0 ||| 126 524574 +los ||| those new Member ||| 1 0.0953439 1.90631e-06 7.19687e-11 2.718 ||| 0-0 0-1 0-2 ||| 1 524574 +los ||| those of Africa ' s ||| 1 0.121103 1.90631e-06 2.60252e-13 2.718 ||| 0-0 0-3 0-4 ||| 1 524574 +los ||| those of a ||| 0.0166667 0.284705 1.90631e-06 4.02367e-05 2.718 ||| 0-0 ||| 60 524574 +los ||| those of its ||| 0.0731707 0.284705 5.71893e-06 1.29327e-06 2.718 ||| 0-0 ||| 41 524574 +los ||| those of other ||| 0.0144928 0.284705 1.90631e-06 1.17599e-06 2.718 ||| 0-0 ||| 69 524574 +los ||| those of our ||| 0.0113636 0.284705 1.90631e-06 1.25215e-06 2.718 ||| 0-0 ||| 88 524574 +los ||| those of pensionable age ||| 1 0.284705 1.90631e-06 2.23306e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| those of pensionable ||| 1 0.284705 1.90631e-06 3.63099e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| those of the ||| 0.0175077 0.136324 3.24072e-05 2.36908e-05 2.718 ||| 0-0 0-1 0-2 ||| 971 524574 +los ||| those of us from the ||| 0.0714286 0.284705 1.90631e-06 2.58663e-10 2.718 ||| 0-0 ||| 14 524574 +los ||| those of us from ||| 0.0909091 0.284705 3.81262e-06 4.21331e-09 2.718 ||| 0-0 ||| 22 524574 +los ||| those of us in the ||| 0.0322581 0.284705 1.90631e-06 3.43799e-09 2.718 ||| 0-0 ||| 31 524574 +los ||| those of us in ||| 0.0566038 0.284705 5.71893e-06 5.60009e-08 2.718 ||| 0-0 ||| 53 524574 +los ||| those of us who are ||| 0.015873 0.284705 1.90631e-06 3.50123e-11 2.718 ||| 0-0 ||| 63 524574 +los ||| those of us who ||| 0.00286533 0.284705 1.90631e-06 2.30759e-09 2.718 ||| 0-0 ||| 349 524574 +los ||| those of us ||| 0.158654 0.284705 0.000125816 2.61631e-06 2.718 ||| 0-0 ||| 416 524574 +los ||| those of you from ||| 0.25 0.284705 1.90631e-06 4.71984e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| those of you here ||| 0.2 0.284705 1.90631e-06 5.94317e-09 2.718 ||| 0-0 ||| 5 524574 +los ||| those of you in the ||| 0.333333 0.284705 1.90631e-06 3.85131e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| those of you in ||| 0.2 0.284705 1.90631e-06 6.27333e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| those of you ||| 0.116438 0.284705 3.24072e-05 2.93085e-06 2.718 ||| 0-0 ||| 146 524574 +los ||| those of your ||| 0.125 0.284705 1.90631e-06 2.32293e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| those of ||| 0.0954274 0.284705 0.000549017 0.000907748 2.718 ||| 0-0 ||| 3018 524574 +los ||| those offered ||| 0.142857 0.284705 1.90631e-06 7.26346e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| those older ||| 0.25 0.284705 1.90631e-06 1.13544e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| those on a ||| 0.25 0.284705 1.90631e-06 4.95224e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| those on both ||| 0.0909091 0.284705 1.90631e-06 1.8507e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| those on fuel ||| 0.5 0.284705 1.90631e-06 2.08923e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| those on the ground ||| 0.1 0.135895 1.90631e-06 2.99005e-10 2.718 ||| 0-0 0-1 0-2 ||| 10 524574 +los ||| those on the ||| 0.0353535 0.135895 1.33442e-05 2.55559e-06 2.718 ||| 0-0 0-1 0-2 ||| 198 524574 +los ||| those on this side ||| 1 0.284705 1.90631e-06 1.58239e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| those on this ||| 1 0.284705 1.90631e-06 7.21891e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| those on ||| 0.0417755 0.284705 3.05009e-05 0.000111724 2.718 ||| 0-0 ||| 383 524574 +los ||| those operating the ||| 0.5 0.122289 1.90631e-06 1.39773e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| those operating ||| 0.0714286 0.284705 3.81262e-06 7.51392e-07 2.718 ||| 0-0 ||| 28 524574 +los ||| those originating ||| 0.25 0.284705 1.90631e-06 6.01114e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| those other ||| 0.0253165 0.284705 3.81262e-06 2.16317e-05 2.718 ||| 0-0 ||| 79 524574 +los ||| those outside ||| 0.010989 0.284705 1.90631e-06 6.66234e-07 2.718 ||| 0-0 ||| 91 524574 +los ||| those parameters ||| 0.25 0.19213 1.90631e-06 1.08701e-06 2.718 ||| 0-0 0-1 ||| 4 524574 +los ||| those people in ||| 0.0263158 0.284705 1.90631e-06 3.14587e-07 2.718 ||| 0-0 ||| 38 524574 +los ||| those people ||| 0.0311159 0.187086 5.5283e-05 0.000131499 2.718 ||| 0-0 0-1 ||| 932 524574 +los ||| those places ||| 0.03125 0.284705 1.90631e-06 8.83303e-07 2.718 ||| 0-0 ||| 32 524574 +los ||| those plans and programmes ||| 1 0.233725 1.90631e-06 2.44075e-11 2.718 ||| 0-0 0-3 ||| 1 524574 +los ||| those playing ||| 0.5 0.284705 3.81262e-06 1.10037e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| those prices ||| 0.1 0.34239 1.90631e-06 2.53725e-06 2.718 ||| 0-1 ||| 10 524574 +los ||| those problems resolved before ||| 1 0.284705 1.90631e-06 1.45151e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| those problems resolved ||| 1 0.284705 1.90631e-06 5.80372e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| those problems ||| 0.00666667 0.284705 1.90631e-06 2.24082e-06 2.718 ||| 0-0 ||| 150 524574 +los ||| those produced ||| 0.105263 0.284705 3.81262e-06 1.76661e-06 2.718 ||| 0-0 ||| 19 524574 +los ||| those producers ||| 0.025641 0.284705 1.90631e-06 3.23933e-07 2.718 ||| 0-0 ||| 39 524574 +los ||| those producing ||| 0.0833333 0.284705 1.90631e-06 5.5937e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| those programmes involve cooperation between ||| 1 0.233725 1.90631e-06 5.54387e-17 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| those programmes involve cooperation ||| 1 0.233725 1.90631e-06 2.10154e-13 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| those programmes involve ||| 1 0.233725 1.90631e-06 2.28181e-09 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| those programmes ||| 0.0192308 0.233725 1.90631e-06 4.62841e-05 2.718 ||| 0-0 0-1 ||| 52 524574 +los ||| those projects ||| 0.0117647 0.2229 1.90631e-06 3.17538e-05 2.718 ||| 0-0 0-1 ||| 85 524574 +los ||| those proposals ||| 0.00724638 0.284705 1.90631e-06 1.62301e-06 2.718 ||| 0-0 ||| 138 524574 +los ||| those proposed ||| 0.0149254 0.284705 1.90631e-06 1.86345e-06 2.718 ||| 0-0 ||| 67 524574 +los ||| those provided at ||| 1 0.284705 1.90631e-06 1.60256e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| those provided ||| 0.0344828 0.284705 1.90631e-06 3.82709e-06 2.718 ||| 0-0 ||| 29 524574 +los ||| those pursuing ||| 0.5 0.284705 1.90631e-06 4.09091e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| those put into ||| 1 0.284705 1.90631e-06 1.89023e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| those put ||| 0.125 0.284705 1.90631e-06 1.84108e-05 2.718 ||| 0-0 ||| 8 524574 +los ||| those received ||| 0.5 0.284705 1.90631e-06 1.4961e-06 2.718 ||| 0-0 ||| 2 524574 +los ||| those receiving ||| 0.047619 0.284705 1.90631e-06 4.99258e-07 2.718 ||| 0-0 ||| 21 524574 +los ||| those regions that are not ||| 0.5 0.284705 1.90631e-06 1.19891e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| those regions that are ||| 0.142857 0.284705 1.90631e-06 3.51165e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| those regions that ||| 0.025 0.284705 1.90631e-06 2.31445e-08 2.718 ||| 0-0 ||| 40 524574 +los ||| those regions ||| 0.00278552 0.284705 1.90631e-06 1.37588e-06 2.718 ||| 0-0 ||| 359 524574 +los ||| those regulations will , ||| 1 0.0587004 1.90631e-06 4.07442e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| those regulations will ||| 1 0.0587004 1.90631e-06 3.41657e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| those regulations ||| 0.0454545 0.0587004 1.90631e-06 3.94924e-07 2.718 ||| 0-1 ||| 22 524574 +los ||| those relating to ||| 0.00373134 0.284705 1.90631e-06 1.68699e-07 2.718 ||| 0-0 ||| 268 524574 +los ||| those relating ||| 0.0140845 0.284705 5.71893e-06 1.89852e-06 2.718 ||| 0-0 ||| 213 524574 +los ||| those reserves ||| 0.125 0.284705 1.90631e-06 1.26902e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| those responsible ||| 0.00488998 0.284705 7.62523e-06 2.46958e-06 2.718 ||| 0-0 ||| 818 524574 +los ||| those resulting ||| 0.0909091 0.284705 1.90631e-06 7.56401e-07 2.718 ||| 0-0 ||| 11 524574 +los ||| those rights ||| 0.0163043 0.284705 5.71893e-06 3.34119e-06 2.718 ||| 0-0 ||| 184 524574 +los ||| those same ||| 0.0171429 0.284705 5.71893e-06 1.34366e-05 2.718 ||| 0-0 ||| 175 524574 +los ||| those services ||| 0.0120482 0.284705 1.90631e-06 1.47774e-06 2.718 ||| 0-0 ||| 83 524574 +los ||| those set out ||| 0.0714286 0.284705 3.81262e-06 3.73773e-08 2.718 ||| 0-0 ||| 28 524574 +los ||| those set ||| 0.107143 0.284705 5.71893e-06 9.75808e-06 2.718 ||| 0-0 ||| 28 524574 +los ||| those sitting ||| 0.111111 0.284705 1.90631e-06 1.16048e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| those states ' ||| 0.166667 0.284705 1.90631e-06 4.31306e-09 2.718 ||| 0-0 ||| 6 524574 +los ||| those states ||| 0.0117647 0.284705 3.81262e-06 1.25566e-06 2.718 ||| 0-0 ||| 170 524574 +los ||| those still ||| 0.0357143 0.284705 1.90631e-06 1.25766e-05 2.718 ||| 0-0 ||| 28 524574 +los ||| those subject ||| 0.111111 0.284705 1.90631e-06 9.01336e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| those such ||| 0.125 0.284705 1.90631e-06 3.45457e-05 2.718 ||| 0-0 ||| 8 524574 +los ||| those sustained ||| 1 0.284705 1.90631e-06 1.43599e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| those systems in ||| 1 0.24914 1.90631e-06 1.16131e-06 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| those systems ||| 0.0384615 0.24914 1.90631e-06 5.42555e-05 2.718 ||| 0-0 0-1 ||| 26 524574 +los ||| those tabling the ||| 0.111111 0.284705 1.90631e-06 7.79073e-09 2.718 ||| 0-0 ||| 9 524574 +los ||| those tabling ||| 0.0833333 0.284705 1.90631e-06 1.26902e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| those taking ||| 0.037037 0.284705 1.90631e-06 7.09648e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| those targets ||| 0.0357143 0.284705 3.81262e-06 3.97403e-07 2.718 ||| 0-0 ||| 56 524574 +los ||| those that are ||| 0.0594595 0.284705 2.09694e-05 4.26171e-06 2.718 ||| 0-0 ||| 185 524574 +los ||| those that exist ||| 0.0555556 0.284705 1.90631e-06 2.58691e-08 2.718 ||| 0-0 ||| 18 524574 +los ||| those that have ||| 0.0155039 0.284705 3.81262e-06 3.35927e-06 2.718 ||| 0-0 ||| 129 524574 +los ||| those that would ||| 1 0.284705 1.90631e-06 1.6484e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| those that ||| 0.0305287 0.284705 7.81587e-05 0.00028088 2.718 ||| 0-0 ||| 1343 524574 +los ||| those they ||| 0.0625 0.284705 3.81262e-06 5.4501e-05 2.718 ||| 0-0 ||| 32 524574 +los ||| those through ||| 0.142857 0.284705 1.90631e-06 7.68591e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| those to do ||| 0.0833333 0.284705 1.90631e-06 5.09702e-06 2.718 ||| 0-0 ||| 12 524574 +los ||| those to whom ||| 0.030303 0.284705 1.90631e-06 9.88157e-08 2.718 ||| 0-0 ||| 33 524574 +los ||| those to ||| 0.075 0.284705 1.71568e-05 0.00148372 2.718 ||| 0-0 ||| 120 524574 +los ||| those transactions ||| 0.111111 0.284705 1.90631e-06 1.80334e-07 2.718 ||| 0-0 ||| 9 524574 +los ||| those us ||| 1 0.284705 1.90631e-06 4.81258e-05 2.718 ||| 0-0 ||| 1 524574 +los ||| those used ||| 0.0263158 0.284705 1.90631e-06 7.16327e-06 2.718 ||| 0-0 ||| 38 524574 +los ||| those useful elements ||| 0.5 0.284705 1.90631e-06 1.88436e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| those useful ||| 0.333333 0.284705 1.90631e-06 5.29314e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| those values ||| 0.0133333 0.284705 3.81262e-06 5.52691e-07 2.718 ||| 0-0 ||| 150 524574 +los ||| those very people ||| 0.333333 0.284705 3.81262e-06 5.1139e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| those very ||| 0.0568182 0.284705 9.53154e-06 5.80993e-05 2.718 ||| 0-0 ||| 88 524574 +los ||| those vessels ||| 0.0526316 0.273324 1.90631e-06 1.32629e-05 2.718 ||| 0-0 0-1 ||| 19 524574 +los ||| those we are ||| 0.0384615 0.284705 1.90631e-06 2.87608e-06 2.718 ||| 0-0 ||| 26 524574 +los ||| those we have ||| 0.0408163 0.284705 3.81262e-06 2.26705e-06 2.718 ||| 0-0 ||| 49 524574 +los ||| those we will be ||| 0.2 0.284705 1.90631e-06 2.97195e-08 2.718 ||| 0-0 ||| 5 524574 +los ||| those we will ||| 0.142857 0.284705 1.90631e-06 1.63989e-06 2.718 ||| 0-0 ||| 7 524574 +los ||| those we ||| 0.0479042 0.284705 1.52505e-05 0.000189556 2.718 ||| 0-0 ||| 167 524574 +los ||| those where ||| 0.0277778 0.284705 1.90631e-06 5.05937e-06 2.718 ||| 0-0 ||| 36 524574 +los ||| those which apply ||| 0.0833333 0.284705 1.90631e-06 2.04107e-08 2.718 ||| 0-0 ||| 12 524574 +los ||| those which are the ||| 0.2 0.122289 1.90631e-06 4.00329e-08 2.718 ||| 0-3 ||| 5 524574 +los ||| those which are to be ||| 1 0.284705 1.90631e-06 3.46565e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| those which are to ||| 1 0.284705 1.90631e-06 1.91231e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| those which are ||| 0.0408163 0.284705 1.14379e-05 2.15209e-06 2.718 ||| 0-0 ||| 147 524574 +los ||| those which do ; ||| 0.333333 0.284705 1.90631e-06 1.50076e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| those which do ||| 0.125 0.284705 1.90631e-06 4.87261e-07 2.718 ||| 0-0 ||| 8 524574 +los ||| those which have taken place ||| 0.5 0.284705 1.90631e-06 2.32709e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| those which have taken ||| 0.5 0.284705 1.90631e-06 1.54624e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| those which have ||| 0.025974 0.284705 3.81262e-06 1.69637e-06 2.718 ||| 0-0 ||| 77 524574 +los ||| those which took place on 11 September ||| 1 0.284705 1.90631e-06 1.00872e-23 2.718 ||| 0-0 ||| 1 524574 +los ||| those which took place on 11 ||| 1 0.284705 1.90631e-06 2.802e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| those which took place on ||| 0.5 0.284705 1.90631e-06 2.10677e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| those which took place ||| 0.125 0.284705 1.90631e-06 3.14866e-11 2.718 ||| 0-0 ||| 8 524574 +los ||| those which took ||| 0.333333 0.284705 1.90631e-06 2.09213e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| those which would ||| 0.0714286 0.284705 1.90631e-06 8.32413e-07 2.718 ||| 0-0 ||| 14 524574 +los ||| those which ||| 0.0266241 0.284705 4.76577e-05 0.000141839 2.718 ||| 0-0 ||| 939 524574 +los ||| those who , in ||| 0.0212766 0.284705 1.90631e-06 3.75927e-08 2.718 ||| 0-0 ||| 47 524574 +los ||| those who , ||| 0.00341297 0.284705 1.90631e-06 1.7563e-06 2.718 ||| 0-0 ||| 293 524574 +los ||| those who are the ||| 0.157895 0.102278 5.71893e-06 1.52291e-10 2.718 ||| 0-0 0-1 0-2 0-3 ||| 19 524574 +los ||| those who are ||| 0.0324773 0.284705 8.19713e-05 2.23453e-07 2.718 ||| 0-0 ||| 1324 524574 +los ||| those who assist ||| 0.333333 0.284705 1.90631e-06 2.754e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| those who believe ||| 0.0045045 0.284705 1.90631e-06 4.5846e-09 2.718 ||| 0-0 ||| 222 524574 +los ||| those who can ||| 0.0120482 0.284705 1.90631e-06 4.38034e-08 2.718 ||| 0-0 ||| 83 524574 +los ||| those who come ||| 0.0238095 0.14316 1.90631e-06 1.66772e-09 2.718 ||| 0-0 0-1 ||| 42 524574 +los ||| those who commit ||| 0.0204082 0.284705 1.90631e-06 3.50509e-10 2.718 ||| 0-0 ||| 49 524574 +los ||| those who destabilised ||| 0.5 0.284705 1.90631e-06 1.03091e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| those who do ||| 0.0416667 0.284705 3.81262e-06 5.05926e-08 2.718 ||| 0-0 ||| 48 524574 +los ||| those who fight for human rights ||| 0.166667 0.284705 1.90631e-06 1.54e-19 2.718 ||| 0-0 ||| 6 524574 +los ||| those who fight for human ||| 1 0.284705 1.90631e-06 7.69614e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| those who fight for ||| 0.0714286 0.284705 1.90631e-06 6.23674e-12 2.718 ||| 0-0 ||| 14 524574 +los ||| those who fight ||| 0.037037 0.284705 1.90631e-06 8.11473e-10 2.718 ||| 0-0 ||| 27 524574 +los ||| those who go down this path ||| 1 0.284705 1.90631e-06 1.48013e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| those who go down this ||| 1 0.284705 1.90631e-06 3.88485e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| those who go down ||| 1 0.284705 1.90631e-06 6.0124e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| those who go ||| 0.0714286 0.284705 1.90631e-06 8.61252e-09 2.718 ||| 0-0 ||| 14 524574 +los ||| those who had been ||| 0.142857 0.284705 1.90631e-06 4.93593e-11 2.718 ||| 0-0 ||| 7 524574 +los ||| those who had ||| 0.0277778 0.284705 1.90631e-06 1.47818e-08 2.718 ||| 0-0 ||| 36 524574 +los ||| those who have been ||| 0.00985222 0.284705 3.81262e-06 5.88151e-10 2.718 ||| 0-0 ||| 203 524574 +los ||| those who have entered the country ||| 0.5 0.284705 1.90631e-06 1.24534e-16 2.718 ||| 0-0 ||| 2 524574 +los ||| those who have entered the ||| 0.5 0.284705 1.90631e-06 3.46025e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| those who have entered ||| 0.5 0.284705 1.90631e-06 5.63633e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| those who have given ||| 0.142857 0.284705 1.90631e-06 1.20882e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| those who have the ||| 0.0487805 0.203497 3.81262e-06 7.55544e-08 2.718 ||| 0-0 0-3 ||| 41 524574 +los ||| those who have ||| 0.00705882 0.284705 2.28757e-05 1.76135e-07 2.718 ||| 0-0 ||| 1700 524574 +los ||| those who place ||| 0.5 0.284705 1.90631e-06 2.21646e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| those who play the ||| 0.5 0.284705 1.90631e-06 2.33267e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| those who play ||| 0.125 0.284705 1.90631e-06 3.79964e-09 2.718 ||| 0-0 ||| 8 524574 +los ||| those who practise ||| 0.0714286 0.284705 1.90631e-06 8.98364e-11 2.718 ||| 0-0 ||| 14 524574 +los ||| those who receive ||| 0.0588235 0.284705 1.90631e-06 1.47862e-09 2.718 ||| 0-0 ||| 17 524574 +los ||| those who resort ||| 0.166667 0.284705 1.90631e-06 2.28273e-10 2.718 ||| 0-0 ||| 6 524574 +los ||| those who run small ||| 1 0.284705 1.90631e-06 2.00353e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| those who run ||| 0.037037 0.284705 1.90631e-06 1.56404e-09 2.718 ||| 0-0 ||| 27 524574 +los ||| those who see the ||| 0.125 0.122289 1.90631e-06 1.93029e-10 2.718 ||| 0-3 ||| 8 524574 +los ||| those who spoke ||| 0.0263158 0.284705 1.90631e-06 3.87328e-10 2.718 ||| 0-0 ||| 38 524574 +los ||| those who voted in favour of it ||| 1 0.284705 1.90631e-06 3.97309e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| those who voted in favour of ||| 0.166667 0.284705 1.90631e-06 2.23418e-16 2.718 ||| 0-0 ||| 6 524574 +los ||| those who voted in favour ||| 0.0909091 0.284705 1.90631e-06 4.10967e-15 2.718 ||| 0-0 ||| 11 524574 +los ||| those who voted in ||| 0.0833333 0.284705 1.90631e-06 1.27038e-11 2.718 ||| 0-0 ||| 12 524574 +los ||| those who voted ||| 0.0126582 0.284705 1.90631e-06 5.9351e-10 2.718 ||| 0-0 ||| 79 524574 +los ||| those who want ||| 0.00729927 0.284705 1.90631e-06 6.885e-09 2.718 ||| 0-0 ||| 137 524574 +los ||| those who were part ||| 0.166667 0.284705 1.90631e-06 3.14532e-11 2.718 ||| 0-0 ||| 6 524574 +los ||| those who were ||| 0.0201342 0.284705 5.71893e-06 2.63825e-08 2.718 ||| 0-0 ||| 149 524574 +los ||| those who will be ||| 0.0416667 0.284705 1.90631e-06 2.30901e-09 2.718 ||| 0-0 ||| 24 524574 +los ||| those who will ||| 0.0153846 0.284705 1.90631e-06 1.27409e-07 2.718 ||| 0-0 ||| 65 524574 +los ||| those who wish to ||| 0.00609756 0.284705 1.90631e-06 3.85656e-10 2.718 ||| 0-0 ||| 164 524574 +los ||| those who wish ||| 0.0344828 0.284705 1.90631e-06 4.34013e-09 2.718 ||| 0-0 ||| 29 524574 +los ||| those who ||| 0.00812657 0.284705 0.000215413 1.47273e-05 2.718 ||| 0-0 ||| 13905 524574 +los ||| those whom the ||| 0.1 0.122289 1.90631e-06 2.06864e-08 2.718 ||| 0-2 ||| 10 524574 +los ||| those whom ||| 0.0126582 0.219174 1.90631e-06 1.5098e-05 2.718 ||| 0-0 0-1 ||| 79 524574 +los ||| those whose health has ||| 0.333333 0.284705 1.90631e-06 5.62831e-13 2.718 ||| 0-0 ||| 3 524574 +los ||| those whose health ||| 0.25 0.284705 1.90631e-06 1.09341e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| those whose ||| 0.00383142 0.284705 1.90631e-06 1.31577e-06 2.718 ||| 0-0 ||| 261 524574 +los ||| those with a poor ||| 0.5 0.0315692 1.90631e-06 3.39261e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| those with a ||| 0.0208333 0.284705 1.90631e-06 4.73279e-06 2.718 ||| 0-0 ||| 48 524574 +los ||| those with capital ||| 1 0.284705 1.90631e-06 2.76542e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| those with cross-border ||| 1 0.284705 1.90631e-06 1.07841e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| those with the ||| 0.0192308 0.135913 1.90631e-06 1.65741e-06 2.718 ||| 0-0 0-1 0-2 ||| 52 524574 +los ||| those with ||| 0.0442478 0.284705 4.76577e-05 0.000106773 2.718 ||| 0-0 ||| 565 524574 +los ||| those within the ||| 0.0416667 0.135672 1.90631e-06 7.16254e-09 2.718 ||| 0-0 0-1 0-2 ||| 24 524574 +los ||| those working on the ||| 0.25 0.284705 1.90631e-06 1.30594e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| those working on ||| 0.0769231 0.284705 1.90631e-06 2.12722e-08 2.718 ||| 0-0 ||| 13 524574 +los ||| those working ||| 0.00943396 0.284705 3.81262e-06 3.17922e-06 2.718 ||| 0-0 ||| 212 524574 +los ||| those years ||| 0.0166667 0.284705 1.90631e-06 2.84193e-06 2.718 ||| 0-0 ||| 60 524574 +los ||| those ||| 0.271549 0.284705 0.0301483 0.0166976 2.718 ||| 0-0 ||| 58240 524574 +los ||| though , for ||| 0.05 0.0015353 1.90631e-06 2.61109e-08 2.718 ||| 0-2 ||| 20 524574 +los ||| though , of the ||| 0.333333 0.122289 1.90631e-06 6.90521e-07 2.718 ||| 0-3 ||| 3 524574 +los ||| though , the ||| 0.0238095 0.122289 1.90631e-06 1.27018e-05 2.718 ||| 0-2 ||| 42 524574 +los ||| though the ||| 0.00417537 0.122289 3.81262e-06 0.00010651 2.718 ||| 0-1 ||| 479 524574 +los ||| though there are those who ||| 0.25 0.284705 1.90631e-06 1.70073e-13 2.718 ||| 0-3 ||| 4 524574 +los ||| though there are those ||| 0.25 0.284705 1.90631e-06 1.92826e-10 2.718 ||| 0-3 ||| 4 524574 +los ||| thought in advance to the ||| 0.5 0.122289 1.90631e-06 2.39327e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| thought the ||| 0.0243902 0.122289 1.90631e-06 3.56463e-05 2.718 ||| 0-1 ||| 41 524574 +los ||| thought to those ||| 0.166667 0.284705 1.90631e-06 1.23297e-07 2.718 ||| 0-2 ||| 6 524574 +los ||| thousand animals ||| 0.25 0.273985 1.90631e-06 1.98408e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| thousands of jobs are disappearing ||| 1 0.0595578 1.90631e-06 3.53733e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| thousands of jobs are ||| 0.0833333 0.0595578 1.90631e-06 8.84333e-12 2.718 ||| 0-2 ||| 12 524574 +los ||| thousands of jobs ||| 0.00373134 0.0595578 1.90631e-06 5.82845e-10 2.718 ||| 0-2 ||| 268 524574 +los ||| threat to sovereignty , the end of ||| 1 0.122289 1.90631e-06 1.98094e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| threat to sovereignty , the end ||| 1 0.122289 1.90631e-06 3.64384e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| threat to sovereignty , the ||| 1 0.122289 1.90631e-06 8.37471e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| three institutions to improving their ||| 1 0.0236713 1.90631e-06 1.4592e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| three political groups ||| 0.111111 0.143803 1.90631e-06 2.24218e-11 2.718 ||| 0-2 ||| 9 524574 +los ||| three ||| 0.000206005 0.0002792 7.62523e-06 4.9e-06 2.718 ||| 0-0 ||| 19417 524574 +los ||| threw out the ||| 0.125 0.122289 1.90631e-06 2.95753e-09 2.718 ||| 0-2 ||| 8 524574 +los ||| through agreements , ||| 0.333333 0.199336 1.90631e-06 1.73077e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| through agreements ||| 0.0526316 0.199336 1.90631e-06 1.45133e-06 2.718 ||| 0-1 ||| 19 524574 +los ||| through having to store such ||| 1 0.0016619 1.90631e-06 2.59895e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| through his ||| 0.0121951 0.0058818 1.90631e-06 7.96779e-08 2.718 ||| 0-1 ||| 82 524574 +los ||| through the European institutions ||| 0.25 0.122289 1.90631e-06 3.4663e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| through the European ||| 0.0526316 0.122289 1.90631e-06 6.60248e-07 2.718 ||| 0-1 ||| 19 524574 +los ||| through the Internet for carrying out commercial ||| 1 0.122289 1.90631e-06 1.16203e-22 2.718 ||| 0-1 ||| 1 524574 +los ||| through the Internet for carrying out ||| 1 0.122289 1.90631e-06 6.08391e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| through the Internet for carrying ||| 1 0.122289 1.90631e-06 1.58832e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| through the Internet for ||| 1 0.122289 1.90631e-06 2.62533e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| through the Internet ||| 0.016129 0.122289 1.90631e-06 3.41586e-09 2.718 ||| 0-1 ||| 62 524574 +los ||| through the net ||| 0.142857 0.122289 1.90631e-06 3.06045e-09 2.718 ||| 0-1 ||| 7 524574 +los ||| through the safety net ||| 0.333333 0.122289 1.90631e-06 1.55165e-13 2.718 ||| 0-1 ||| 3 524574 +los ||| through the safety ||| 0.333333 0.122289 1.90631e-06 1.00106e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| through the ||| 0.00457806 0.122289 5.71893e-05 0.000197449 2.718 ||| 0-1 ||| 6553 524574 +los ||| through their own ||| 0.025 0.0236713 1.90631e-06 1.7852e-09 2.718 ||| 0-1 ||| 40 524574 +los ||| through their ||| 0.00246914 0.0236713 1.90631e-06 1.05303e-06 2.718 ||| 0-1 ||| 405 524574 +los ||| through them getting to know each ||| 1 0.0497499 1.90631e-06 2.89415e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| through them straight ||| 1 0.038218 1.90631e-06 3.46474e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| through them ||| 0.0153846 0.038218 1.90631e-06 9.264e-07 2.718 ||| 0-1 ||| 65 524574 +los ||| through ||| 6.1314e-05 5.3e-05 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 32619 524574 +los ||| throughout the duration ||| 0.333333 0.122289 1.90631e-06 1.42057e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| throughout the whole ||| 0.00460829 0.122289 1.90631e-06 9.68216e-09 2.718 ||| 0-1 ||| 217 524574 +los ||| throughout the ||| 0.0011839 0.122289 1.14379e-05 1.71154e-05 2.718 ||| 0-1 ||| 5068 524574 +los ||| throw of the ||| 0.2 0.122289 1.90631e-06 5.36355e-07 2.718 ||| 0-2 ||| 5 524574 +los ||| thrown off balance by ||| 0.5 0.0062464 1.90631e-06 9.86119e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| thrown the ||| 0.0769231 0.122289 1.90631e-06 1.18821e-05 2.718 ||| 0-1 ||| 13 524574 +los ||| thus ' ||| 0.5 0.0444479 1.90631e-06 9.05328e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| thus running all kinds ||| 1 0.0177928 1.90631e-06 1.65827e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| thus running all ||| 1 0.0177928 1.90631e-06 3.4911e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| thus targeting ||| 0.166667 0.0070175 1.90631e-06 6.6378e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| thus the ||| 0.0070922 0.122289 3.81262e-06 7.30084e-05 2.718 ||| 0-1 ||| 282 524574 +los ||| ticket touts ||| 0.25 0.0205656 1.90631e-06 5.46e-12 2.718 ||| 0-0 ||| 4 524574 +los ||| ticket ||| 0.00271739 0.0205656 1.90631e-06 7.8e-06 2.718 ||| 0-0 ||| 368 524574 +los ||| ties to ||| 0.0909091 0.133803 1.90631e-06 1.14894e-05 2.718 ||| 0-0 ||| 11 524574 +los ||| ties ||| 0.00441826 0.133803 5.71893e-06 0.0001293 2.718 ||| 0-0 ||| 679 524574 +los ||| tightening up of the ||| 0.111111 0.122289 1.90631e-06 1.9883e-10 2.718 ||| 0-3 ||| 9 524574 +los ||| tightening up the ||| 0.0188679 0.122289 1.90631e-06 3.65739e-09 2.718 ||| 0-2 ||| 53 524574 +los ||| timber provides the ||| 0.166667 0.122289 1.90631e-06 6.75692e-11 2.718 ||| 0-2 ||| 6 524574 +los ||| time , of the ||| 0.142857 0.122289 1.90631e-06 4.56556e-06 2.718 ||| 0-3 ||| 7 524574 +los ||| time , the ||| 0.00530504 0.122289 1.14379e-05 8.39813e-05 2.718 ||| 0-2 ||| 1131 524574 +los ||| time , those ||| 0.1 0.284705 1.90631e-06 3.26906e-06 2.718 ||| 0-2 ||| 10 524574 +los ||| time again for the ||| 1 0.122289 1.90631e-06 3.12999e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| time as the ||| 0.015873 0.122289 3.81262e-06 7.18612e-06 2.718 ||| 0-2 ||| 126 524574 +los ||| time colleagues ||| 1 0.0749603 1.90631e-06 1.2802e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| time for the ||| 0.0022779 0.122289 1.90631e-06 5.4124e-06 2.718 ||| 0-2 ||| 439 524574 +los ||| time in the course of the ||| 0.5 0.122289 1.90631e-06 6.34731e-11 2.718 ||| 0-5 ||| 2 524574 +los ||| time of the ||| 0.00197628 0.122289 1.90631e-06 3.82841e-05 2.718 ||| 0-2 ||| 506 524574 +los ||| time of writing the ||| 1 0.122289 1.90631e-06 8.36124e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| time the ||| 0.00862069 0.122289 1.14379e-05 0.000704218 2.718 ||| 0-1 ||| 696 524574 +los ||| time those of ||| 0.5 0.284705 1.90631e-06 1.49025e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| time those ||| 0.2 0.284705 1.90631e-06 2.74124e-05 2.718 ||| 0-1 ||| 5 524574 +los ||| time to consult with the United States ||| 1 0.122289 1.90631e-06 1.00499e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| time to consult with the United ||| 1 0.122289 1.90631e-06 2.10601e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| time to consult with the ||| 1 0.122289 1.90631e-06 1.7206e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| time with the ||| 0.04 0.122289 1.90631e-06 4.50312e-06 2.718 ||| 0-2 ||| 25 524574 +los ||| time-shares , ||| 1 1 1.90631e-06 1.19255e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| time-shares ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| times , over a number ||| 1 0.0314168 1.90631e-06 3.17113e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| times , over a ||| 1 0.0314168 1.90631e-06 6.40891e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| times , over ||| 0.5 0.0314168 1.90631e-06 1.44586e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| times , ||| 0.00363196 0.0314168 5.71893e-06 3.00283e-05 2.718 ||| 0-0 ||| 826 524574 +los ||| times of ||| 0.00133511 0.0166978 1.90631e-06 8.32854e-07 2.718 ||| 0-0 0-1 ||| 749 524574 +los ||| times the ||| 0.00729927 0.122289 1.90631e-06 4.35391e-05 2.718 ||| 0-1 ||| 137 524574 +los ||| times these ||| 1 0.0240362 1.90631e-06 2.47406e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| times ||| 0.0025808 0.0314168 4.00325e-05 0.0002518 2.718 ||| 0-0 ||| 8137 524574 +los ||| timetables ||| 0.0031746 0.128205 1.90631e-06 4.86e-05 2.718 ||| 0-0 ||| 315 524574 +los ||| to , the ||| 0.0153846 0.122289 1.90631e-06 0.00454555 2.718 ||| 0-2 ||| 65 524574 +los ||| to EUR ||| 0.0288066 0.0343255 1.33442e-05 5.07114e-05 2.718 ||| 0-1 ||| 243 524574 +los ||| to MEPs ||| 0.0181818 0.152546 1.90631e-06 0.000138752 2.718 ||| 0-1 ||| 55 524574 +los ||| to Members of the ||| 0.0285714 0.168879 1.90631e-06 1.43075e-06 2.718 ||| 0-1 ||| 35 524574 +los ||| to Members of ||| 0.0181818 0.168879 1.90631e-06 2.33052e-05 2.718 ||| 0-1 ||| 55 524574 +los ||| to Members ||| 0.00369004 0.168879 1.90631e-06 0.000428688 2.718 ||| 0-1 ||| 271 524574 +los ||| to Russia where agreed deadlines are ||| 1 0.109218 1.90631e-06 1.76277e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| to Russia where agreed deadlines ||| 1 0.109218 1.90631e-06 1.16181e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| to a minimum ||| 0.0106383 0.0019667 3.81262e-06 4.21442e-08 2.718 ||| 0-2 ||| 188 524574 +los ||| to a reduction in the ||| 0.0232558 0.122289 1.90631e-06 1.48271e-09 2.718 ||| 0-4 ||| 43 524574 +los ||| to a very considerable extent , the ||| 1 0.122289 1.90631e-06 6.06353e-15 2.718 ||| 0-6 ||| 1 524574 +los ||| to abide by the ||| 0.0121951 0.122289 1.90631e-06 1.44082e-09 2.718 ||| 0-3 ||| 82 524574 +los ||| to accept the ||| 0.00147493 0.122289 1.90631e-06 4.12799e-06 2.718 ||| 0-2 ||| 678 524574 +los ||| to accommodate some of the ||| 0.5 0.122289 1.90631e-06 2.34748e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| to accommodate the ||| 0.0151515 0.122289 1.90631e-06 3.96409e-07 2.718 ||| 0-2 ||| 66 524574 +los ||| to achieve eligibility ||| 1 0.0829016 1.90631e-06 9.48201e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| to achieve our prime objective of achieving ||| 1 0.0248369 1.90631e-06 2.63608e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| to achieve our prime objective of ||| 1 0.0248369 1.90631e-06 3.98199e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| to achieve our prime objective ||| 1 0.0248369 1.90631e-06 7.32468e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| to achieve our prime ||| 1 0.0248369 1.90631e-06 1.09487e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| to achieve our ||| 0.00628931 0.0248369 1.90631e-06 7.2508e-08 2.718 ||| 0-2 ||| 159 524574 +los ||| to achieve the common goals ||| 1 0.122289 1.90631e-06 2.53501e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| to achieve the common ||| 1 0.122289 1.90631e-06 2.01191e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| to achieve the desired ||| 0.142857 0.122289 1.90631e-06 1.34998e-10 2.718 ||| 0-2 ||| 7 524574 +los ||| to achieve the ||| 0.00341297 0.122289 7.62523e-06 8.70957e-06 2.718 ||| 0-2 ||| 1172 524574 +los ||| to act in the ||| 0.0181818 0.122289 1.90631e-06 1.38615e-07 2.718 ||| 0-3 ||| 55 524574 +los ||| to add up the ||| 0.5 0.122289 1.90631e-06 1.06596e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| to address these ||| 0.00869565 0.0240362 1.90631e-06 1.6526e-08 2.718 ||| 0-2 ||| 115 524574 +los ||| to adhere to the ||| 0.0131579 0.122289 1.90631e-06 3.42081e-08 2.718 ||| 0-3 ||| 76 524574 +los ||| to all members ||| 0.030303 0.154615 1.90631e-06 8.33651e-07 2.718 ||| 0-2 ||| 33 524574 +los ||| to all these ||| 0.00833333 0.0240362 1.90631e-06 1.02348e-06 2.718 ||| 0-2 ||| 120 524574 +los ||| to all this ||| 0.0232558 0.0177928 1.90631e-06 1.54348e-06 2.718 ||| 0-1 ||| 43 524574 +los ||| to all ||| 0.000709019 0.0177928 9.53154e-06 0.000238877 2.718 ||| 0-1 ||| 7052 524574 +los ||| to alleviate the worst ||| 1 0.122289 1.90631e-06 1.84178e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| to alleviate the ||| 0.00520833 0.122289 1.90631e-06 1.21972e-07 2.718 ||| 0-2 ||| 192 524574 +los ||| to allow new ||| 0.25 0.0005876 1.90631e-06 8.38567e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| to amend the regulation ||| 0.0526316 0.122289 1.90631e-06 1.62292e-11 2.718 ||| 0-2 ||| 19 524574 +los ||| to amend the ||| 0.00211416 0.122289 1.90631e-06 2.32509e-07 2.718 ||| 0-2 ||| 473 524574 +los ||| to any ||| 0.00142045 0.0178119 3.81262e-06 8.20694e-05 2.718 ||| 0-1 ||| 1408 524574 +los ||| to appeal to the masses ||| 1 0.122289 1.90631e-06 1.84114e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| to appeal to the ||| 0.00806452 0.122289 1.90631e-06 1.02286e-07 2.718 ||| 0-3 ||| 124 524574 +los ||| to apply them ||| 0.0263158 0.038218 1.90631e-06 2.57345e-08 2.718 ||| 0-2 ||| 38 524574 +los ||| to approving funds ||| 0.166667 0.220459 1.90631e-06 1.66263e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| to as SUVs ( sport utility ||| 1 0.181818 1.90631e-06 1.8539e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| to as SUVs ( sport ||| 1 0.181818 1.90631e-06 1.02994e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| to as SUVs ( ||| 1 0.181818 1.90631e-06 6.82082e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| to as SUVs ||| 1 0.181818 1.90631e-06 7.07261e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| to as the ||| 0.0149254 0.122289 1.90631e-06 0.000388954 2.718 ||| 0-2 ||| 67 524574 +los ||| to assess the ||| 0.0017452 0.122289 1.90631e-06 5.90802e-07 2.718 ||| 0-2 ||| 573 524574 +los ||| to assist the ||| 0.0077821 0.122289 3.81262e-06 7.12775e-07 2.718 ||| 0-2 ||| 257 524574 +los ||| to assume that ours are the ||| 0.333333 0.122289 1.90631e-06 1.10533e-14 2.718 ||| 0-5 ||| 3 524574 +los ||| to attain the ||| 0.0204082 0.122289 1.90631e-06 9.52907e-08 2.718 ||| 0-2 ||| 49 524574 +los ||| to awarding contracts ||| 1 0.245913 1.90631e-06 3.6932e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| to base the ||| 0.047619 0.122289 1.90631e-06 1.28833e-06 2.718 ||| 0-2 ||| 21 524574 +los ||| to basic ||| 0.0833333 0.0059008 1.90631e-06 4.06082e-06 2.718 ||| 0-1 ||| 12 524574 +los ||| to be ' clean ||| 1 0.0444479 1.90631e-06 1.69604e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| to be ' ||| 0.0263158 0.0444479 1.90631e-06 8.56587e-06 2.718 ||| 0-2 ||| 38 524574 +los ||| to be , irradiated ||| 1 0.039604 1.90631e-06 7.48972e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| to be - the ||| 0.5 0.122289 1.90631e-06 2.60568e-06 2.718 ||| 0-3 ||| 2 524574 +los ||| to be a familiar concept to those ||| 1 0.284705 1.90631e-06 9.75105e-17 2.718 ||| 0-6 ||| 1 524574 +los ||| to be able to predict what sort ||| 1 0.0061209 1.90631e-06 4.02661e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| to be able to predict what ||| 1 0.0061209 1.90631e-06 2.51978e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| to be blamed on the ||| 1 0.122289 1.90631e-06 1.01684e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| to be blind in ||| 1 0.103393 1.90631e-06 4.28796e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| to be blind ||| 0.333333 0.103393 1.90631e-06 2.0033e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| to be found within the ||| 0.5 0.122289 1.90631e-06 3.16038e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| to be given to the arrangements ||| 1 0.0717439 1.90631e-06 1.52414e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| to be given to the ||| 0.0208333 0.122289 1.90631e-06 4.2126e-08 2.718 ||| 0-4 ||| 48 524574 +los ||| to be its ||| 0.0714286 0.0211371 1.90631e-06 3.4383e-06 2.718 ||| 0-2 ||| 14 524574 +los ||| to be linked with those ||| 1 0.284705 1.90631e-06 7.17005e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| to be made at European Councils and ||| 1 0.108999 1.90631e-06 4.9463e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| to be made at European Councils ||| 1 0.108999 1.90631e-06 3.94886e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| to be made in the ||| 0.0285714 0.122289 1.90631e-06 3.09732e-08 2.718 ||| 0-4 ||| 35 524574 +los ||| to be ratified by the national parliaments ||| 0.333333 0.269224 1.90631e-06 7.89578e-19 2.718 ||| 0-6 ||| 3 524574 +los ||| to be regulations ||| 1 0.0587004 1.90631e-06 8.78295e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| to be safeguarded for ||| 1 0.0015353 1.90631e-06 1.22122e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| to be saving will die in the ||| 1 0.122289 1.90631e-06 8.5319e-18 2.718 ||| 0-6 ||| 1 524574 +los ||| to be some of the ||| 0.25 0.122289 1.90631e-06 4.0907e-08 2.718 ||| 0-4 ||| 4 524574 +los ||| to be the case ||| 0.00704225 0.122289 1.90631e-06 7.39063e-07 2.718 ||| 0-2 ||| 142 524574 +los ||| to be the idea ||| 1 0.122289 1.90631e-06 1.54872e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| to be the ||| 0.0111288 0.122289 2.66883e-05 0.000690778 2.718 ||| 0-2 ||| 1258 524574 +los ||| to be undertaken , as is the ||| 1 0.122289 1.90631e-06 1.25144e-12 2.718 ||| 0-6 ||| 1 524574 +los ||| to bear on the ||| 0.0196078 0.122289 1.90631e-06 3.81789e-08 2.718 ||| 0-3 ||| 51 524574 +los ||| to bear the ||| 0.0223881 0.122289 5.71893e-06 5.70601e-06 2.718 ||| 0-2 ||| 134 524574 +los ||| to bear ||| 0.00100402 0.0002311 1.90631e-06 8.88582e-08 2.718 ||| 0-1 ||| 996 524574 +los ||| to become the ||| 0.00564972 0.122289 1.90631e-06 1.08898e-05 2.718 ||| 0-2 ||| 177 524574 +los ||| to begin with , the ||| 0.0625 0.122289 1.90631e-06 1.71492e-09 2.718 ||| 0-4 ||| 16 524574 +los ||| to blame the ||| 0.025641 0.122289 1.90631e-06 9.07168e-07 2.718 ||| 0-2 ||| 39 524574 +los ||| to borrow from it those that ||| 0.333333 0.284705 1.90631e-06 2.28724e-15 2.718 ||| 0-4 ||| 3 524574 +los ||| to borrow from it those ||| 0.333333 0.284705 1.90631e-06 1.35971e-13 2.718 ||| 0-4 ||| 3 524574 +los ||| to both the ||| 0.00440529 0.122289 1.90631e-06 6.31396e-05 2.718 ||| 0-2 ||| 227 524574 +los ||| to bring about such changes ||| 0.5 0.0936843 1.90631e-06 7.36545e-14 2.718 ||| 0-4 ||| 2 524574 +los ||| to bring the ||| 0.00628931 0.122289 5.71893e-06 1.18656e-05 2.718 ||| 0-2 ||| 477 524574 +los ||| to bulk carriers ||| 0.2 0.14569 1.90631e-06 1.30358e-10 2.718 ||| 0-2 ||| 5 524574 +los ||| to by the ||| 0.0294118 0.122289 3.81262e-06 0.000200114 2.718 ||| 0-2 ||| 68 524574 +los ||| to by their ||| 1 0.0236713 1.90631e-06 1.06725e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| to by ||| 0.00384615 0.0062464 1.90631e-06 0.000143933 2.718 ||| 0-1 ||| 260 524574 +los ||| to carry the can ||| 0.166667 0.122289 1.90631e-06 2.08033e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| to carry the day ||| 1 0.122289 1.90631e-06 1.79195e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| to carry the ||| 0.0487805 0.122289 3.81262e-06 6.99434e-06 2.718 ||| 0-2 ||| 41 524574 +los ||| to cast doubt on the ||| 0.166667 0.122289 1.90631e-06 7.87888e-13 2.718 ||| 0-4 ||| 6 524574 +los ||| to cause observers ||| 0.5 0.142857 1.90631e-06 3.41847e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| to change the ||| 0.001287 0.122289 1.90631e-06 4.65019e-06 2.718 ||| 0-2 ||| 777 524574 +los ||| to checks altogether ||| 0.333333 0.146389 1.90631e-06 7.12223e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| to checks ||| 0.0416667 0.146389 1.90631e-06 2.60888e-05 2.718 ||| 0-1 ||| 24 524574 +los ||| to child protection ||| 0.333333 0.075445 1.90631e-06 3.27123e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| to child ||| 0.0416667 0.075445 1.90631e-06 3.22289e-05 2.718 ||| 0-1 ||| 24 524574 +los ||| to class services ||| 0.333333 0.272175 1.90631e-06 5.95725e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| to close its plant at ||| 1 0.0211371 1.90631e-06 1.2724e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| to close its plant ||| 0.5 0.0211371 1.90631e-06 3.03865e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| to close its ||| 0.125 0.0211371 1.90631e-06 2.81356e-08 2.718 ||| 0-2 ||| 8 524574 +los ||| to combine both ||| 0.333333 0.0352574 1.90631e-06 8.40831e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| to combine the ||| 0.0140845 0.122289 1.90631e-06 3.01119e-07 2.718 ||| 0-2 ||| 71 524574 +los ||| to comment on the ||| 0.00337838 0.122289 1.90631e-06 1.16551e-08 2.718 ||| 0-3 ||| 296 524574 +los ||| to competition on the basis of technical ||| 1 0.122289 1.90631e-06 9.89208e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| to competition on the basis of ||| 1 0.122289 1.90631e-06 2.98855e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| to competition on the basis ||| 0.5 0.122289 1.90631e-06 5.49729e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| to competition on the ||| 0.125 0.122289 1.90631e-06 9.25781e-09 2.718 ||| 0-3 ||| 8 524574 +los ||| to complete the review ||| 0.166667 0.122289 1.90631e-06 1.03161e-10 2.718 ||| 0-2 ||| 6 524574 +los ||| to complete the ||| 0.00273973 0.122289 1.90631e-06 2.72913e-06 2.718 ||| 0-2 ||| 365 524574 +los ||| to comply with the ||| 0.00380952 0.122289 3.81262e-06 1.14068e-08 2.718 ||| 0-3 ||| 525 524574 +los ||| to comply with ||| 0.0008726 0.000603 1.90631e-06 1.07959e-09 2.718 ||| 0-1 ||| 1146 524574 +los ||| to comply ||| 0.00181818 0.000603 1.90631e-06 1.68831e-07 2.718 ||| 0-1 ||| 550 524574 +los ||| to confirm the ||| 0.0108696 0.122289 1.90631e-06 7.0134e-07 2.718 ||| 0-2 ||| 92 524574 +los ||| to consent to the ||| 0.125 0.122289 1.90631e-06 2.81116e-08 2.718 ||| 0-3 ||| 8 524574 +los ||| to consider the ||| 0.00176991 0.122289 1.90631e-06 6.0643e-06 2.718 ||| 0-2 ||| 565 524574 +los ||| to consult with the United States ||| 1 0.122289 1.90631e-06 6.12164e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| to consult with the United ||| 1 0.122289 1.90631e-06 1.28282e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| to consult with the ||| 0.0625 0.122289 1.90631e-06 1.04806e-09 2.718 ||| 0-3 ||| 16 524574 +los ||| to consumers ||| 0.00135685 0.420328 1.90631e-06 0.000738145 2.718 ||| 0-1 ||| 737 524574 +los ||| to controls ||| 0.03125 0.233171 1.90631e-06 9.93524e-05 2.718 ||| 0-1 ||| 32 524574 +los ||| to court ||| 0.00543478 0.0808117 1.90631e-06 1.9611e-05 2.718 ||| 0-1 ||| 184 524574 +los ||| to cover the ||| 0.00361011 0.122289 1.90631e-06 2.97688e-06 2.718 ||| 0-2 ||| 277 524574 +los ||| to create the necessary ||| 0.111111 0.122289 1.90631e-06 1.1043e-09 2.718 ||| 0-2 ||| 9 524574 +los ||| to create the ||| 0.0039604 0.122289 3.81262e-06 4.29189e-06 2.718 ||| 0-2 ||| 505 524574 +los ||| to criminal sanction ||| 1 0.0067797 1.90631e-06 5.59807e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| to criminal ||| 0.05 0.0067797 1.90631e-06 3.11004e-06 2.718 ||| 0-1 ||| 20 524574 +los ||| to cross the ||| 0.0163934 0.122289 1.90631e-06 4.95512e-07 2.718 ||| 0-2 ||| 61 524574 +los ||| to deal with the ||| 0.00463822 0.122289 9.53154e-06 1.0349e-07 2.718 ||| 0-3 ||| 1078 524574 +los ||| to defend the ||| 0.00241546 0.122289 1.90631e-06 7.9663e-07 2.718 ||| 0-2 ||| 414 524574 +los ||| to direct such projects ||| 1 0.161094 1.90631e-06 1.72356e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| to discover what the problem is ||| 0.5 0.122289 1.90631e-06 2.03562e-15 2.718 ||| 0-3 ||| 2 524574 +los ||| to discover what the problem ||| 0.5 0.122289 1.90631e-06 6.49505e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| to discover what the ||| 0.333333 0.122289 1.90631e-06 2.88797e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| to discussions concerning ||| 0.5 0.0717203 1.90631e-06 2.98596e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| to discussions ||| 0.027027 0.0717203 1.90631e-06 4.85521e-05 2.718 ||| 0-1 ||| 37 524574 +los ||| to disguise the ||| 0.0625 0.122289 1.90631e-06 4.19279e-08 2.718 ||| 0-2 ||| 16 524574 +los ||| to do by the ||| 0.142857 0.122289 3.81262e-06 6.87453e-07 2.718 ||| 0-3 ||| 14 524574 +los ||| to do the ||| 0.00534759 0.122289 3.81262e-06 0.000130941 2.718 ||| 0-2 ||| 374 524574 +los ||| to do their ||| 0.00694444 0.0236713 1.90631e-06 6.98331e-07 2.718 ||| 0-2 ||| 144 524574 +los ||| to do what had to be ||| 1 0.0061209 1.90631e-06 4.73014e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| to do what had to ||| 1 0.0061209 1.90631e-06 2.61004e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| to do what had ||| 1 0.0061209 1.90631e-06 2.9373e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| to do what ||| 0.003861 0.0061209 1.90631e-06 2.92648e-07 2.718 ||| 0-2 ||| 259 524574 +los ||| to do with ||| 0.000370233 0.0007437 1.90631e-06 7.06359e-08 2.718 ||| 0-2 ||| 2701 524574 +los ||| to document the ||| 0.166667 0.122289 1.90631e-06 1.2769e-06 2.718 ||| 0-2 ||| 6 524574 +los ||| to draw on the ||| 0.0434783 0.122289 1.90631e-06 3.01963e-08 2.718 ||| 0-3 ||| 23 524574 +los ||| to draw up ||| 0.000918274 0.0031618 1.90631e-06 2.23041e-09 2.718 ||| 0-2 ||| 1089 524574 +los ||| to draw your attention to how the ||| 1 0.122289 1.90631e-06 9.61031e-18 2.718 ||| 0-6 ||| 1 524574 +los ||| to drive a coach ||| 1 0.0062305 1.90631e-06 2.26003e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| to each ||| 0.00150376 0.0497499 1.90631e-06 7.81863e-05 2.718 ||| 0-1 ||| 665 524574 +los ||| to economic ||| 0.0104167 0.0006735 1.90631e-06 2.67463e-06 2.718 ||| 0-1 ||| 96 524574 +los ||| to enable the ||| 0.00236407 0.122289 1.90631e-06 3.75827e-06 2.718 ||| 0-2 ||| 423 524574 +los ||| to encourage the use ||| 0.0277778 0.122289 1.90631e-06 7.13487e-10 2.718 ||| 0-2 ||| 36 524574 +los ||| to encourage the ||| 0.00157978 0.122289 1.90631e-06 1.46748e-06 2.718 ||| 0-2 ||| 633 524574 +los ||| to enforce the ||| 0.00769231 0.122289 1.90631e-06 3.84974e-07 2.718 ||| 0-2 ||| 130 524574 +los ||| to enhance their status ||| 0.333333 0.0236713 1.90631e-06 2.30179e-13 2.718 ||| 0-2 ||| 3 524574 +los ||| to enhance their ||| 0.0277778 0.0236713 1.90631e-06 2.27675e-09 2.718 ||| 0-2 ||| 36 524574 +los ||| to enjoy the ||| 0.0133333 0.122289 1.90631e-06 1.48272e-06 2.718 ||| 0-2 ||| 75 524574 +los ||| to ensure that the ||| 0.000381388 0.122289 1.90631e-06 2.87504e-07 2.718 ||| 0-3 ||| 2622 524574 +los ||| to ensure there is ||| 0.0357143 0.0026918 1.90631e-06 4.58918e-10 2.718 ||| 0-2 ||| 28 524574 +los ||| to ensure there ||| 0.0344828 0.0026918 1.90631e-06 1.46427e-08 2.718 ||| 0-2 ||| 29 524574 +los ||| to enter into the ||| 0.0416667 0.122289 1.90631e-06 1.92931e-09 2.718 ||| 0-3 ||| 24 524574 +los ||| to every ||| 0.0027933 0.144232 1.90631e-06 0.000290024 2.718 ||| 0-1 ||| 358 524574 +los ||| to exactly the ||| 0.111111 0.122289 1.90631e-06 3.82687e-06 2.718 ||| 0-2 ||| 9 524574 +los ||| to examine the ||| 0.00241546 0.122289 1.90631e-06 7.54702e-07 2.718 ||| 0-2 ||| 414 524574 +los ||| to exclude the ||| 0.03125 0.122289 1.90631e-06 1.90581e-07 2.718 ||| 0-2 ||| 32 524574 +los ||| to excuse the ||| 0.2 0.122289 1.90631e-06 7.0134e-07 2.718 ||| 0-2 ||| 5 524574 +los ||| to expose the ||| 0.0344828 0.122289 1.90631e-06 5.33628e-08 2.718 ||| 0-2 ||| 29 524574 +los ||| to face the ||| 0.00687285 0.122289 3.81262e-06 6.37685e-06 2.718 ||| 0-2 ||| 291 524574 +los ||| to face those ||| 0.2 0.284705 1.90631e-06 2.48226e-07 2.718 ||| 0-2 ||| 5 524574 +los ||| to farmers ||| 0.00296736 0.380089 1.90631e-06 0.000436374 2.718 ||| 0-1 ||| 337 524574 +los ||| to fear their neighbours or ||| 1 0.0245424 1.90631e-06 1.48701e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| to fear their neighbours ||| 1 0.0245424 1.90631e-06 1.30063e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| to fight its ||| 1 0.0211371 1.90631e-06 1.04536e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| to find the ||| 0.00234192 0.122289 1.90631e-06 1.26889e-05 2.718 ||| 0-2 ||| 427 524574 +los ||| to find ways to combine both ||| 1 0.0352574 1.90631e-06 2.39771e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| to fire ||| 0.0416667 0.0731529 1.90631e-06 8.63702e-06 2.718 ||| 0-1 ||| 24 524574 +los ||| to flout the ||| 0.142857 0.122289 1.90631e-06 4.19279e-08 2.718 ||| 0-2 ||| 7 524574 +los ||| to focus the ||| 0.037037 0.122289 1.90631e-06 2.9502e-06 2.718 ||| 0-2 ||| 27 524574 +los ||| to follow the ||| 0.00507614 0.122289 3.81262e-06 3.77351e-06 2.718 ||| 0-2 ||| 394 524574 +los ||| to food ||| 0.00613497 0.123536 1.90631e-06 0.000195852 2.718 ||| 0-1 ||| 163 524574 +los ||| to foot the bill for a series ||| 1 0.122289 1.90631e-06 1.99882e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| to foot the bill for a ||| 1 0.122289 1.90631e-06 5.00958e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| to foot the bill for ||| 0.0555556 0.122289 1.90631e-06 1.13017e-13 2.718 ||| 0-2 ||| 18 524574 +los ||| to foot the bill ||| 0.025641 0.122289 1.90631e-06 1.47049e-11 2.718 ||| 0-2 ||| 39 524574 +los ||| to foot the ||| 0.05 0.122289 3.81262e-06 8.49993e-07 2.718 ||| 0-2 ||| 40 524574 +los ||| to form the ||| 0.0185185 0.122289 1.90631e-06 1.73505e-05 2.718 ||| 0-2 ||| 54 524574 +los ||| to fostering individual professional development , ||| 1 0.110351 1.90631e-06 9.29804e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| to fostering individual professional development ||| 1 0.110351 1.90631e-06 7.79679e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| to fostering individual professional ||| 1 0.110351 1.90631e-06 4.73969e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| to fostering individual ||| 1 0.110351 1.90631e-06 2.85524e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| to fraud , ||| 0.047619 0.0242626 1.90631e-06 1.5768e-06 2.718 ||| 0-1 ||| 21 524574 +los ||| to fraud ||| 0.00757576 0.0242626 1.90631e-06 1.32221e-05 2.718 ||| 0-1 ||| 132 524574 +los ||| to fulfil the ||| 0.00390625 0.122289 1.90631e-06 9.75777e-07 2.718 ||| 0-2 ||| 256 524574 +los ||| to fulfil ||| 0.00099108 0.0003622 1.90631e-06 8.88582e-08 2.718 ||| 0-1 ||| 1009 524574 +los ||| to fully back the ||| 1 0.122289 1.90631e-06 2.90724e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| to fundamental ||| 0.0588235 0.0942078 1.90631e-06 0.000131661 2.718 ||| 0-1 ||| 17 524574 +los ||| to get the actual ||| 0.333333 0.122289 1.90631e-06 2.41134e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| to get the ||| 0.00192678 0.122289 1.90631e-06 1.66644e-05 2.718 ||| 0-2 ||| 519 524574 +los ||| to getting the ||| 0.0666667 0.122289 1.90631e-06 4.42911e-06 2.718 ||| 0-2 ||| 15 524574 +los ||| to getting their ||| 0.5 0.0236713 1.90631e-06 2.36212e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| to give him my very firm support ||| 0.5 0.0086409 1.90631e-06 5.19546e-22 2.718 ||| 0-3 ||| 2 524574 +los ||| to give him my very firm ||| 0.5 0.0086409 1.90631e-06 1.51958e-18 2.718 ||| 0-3 ||| 2 524574 +los ||| to give him my very ||| 0.5 0.0086409 1.90631e-06 4.14056e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| to give him my ||| 0.125 0.0086409 1.90631e-06 1.18999e-11 2.718 ||| 0-3 ||| 8 524574 +los ||| to give it the ||| 0.0555556 0.122289 1.90631e-06 4.10765e-07 2.718 ||| 0-3 ||| 18 524574 +los ||| to give my ||| 0.00892857 0.0086409 1.90631e-06 3.71175e-08 2.718 ||| 0-2 ||| 112 524574 +los ||| to give the ||| 0.00246002 0.122289 3.81262e-06 2.30985e-05 2.718 ||| 0-2 ||| 813 524574 +los ||| to give us the ||| 0.0185185 0.122289 1.90631e-06 6.65744e-08 2.718 ||| 0-3 ||| 54 524574 +los ||| to go on to the ||| 0.25 0.122289 1.90631e-06 1.32528e-08 2.718 ||| 0-4 ||| 4 524574 +los ||| to go past the stage ||| 1 0.122289 1.90631e-06 4.27453e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| to go past the ||| 1 0.122289 1.90631e-06 2.8554e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| to go through the ||| 0.0212766 0.122289 1.90631e-06 1.02603e-08 2.718 ||| 0-3 ||| 47 524574 +los ||| to grant the ||| 0.0120482 0.122289 1.90631e-06 1.20829e-06 2.718 ||| 0-2 ||| 83 524574 +los ||| to grips with the ||| 0.0212766 0.122289 1.90631e-06 4.21661e-09 2.718 ||| 0-3 ||| 47 524574 +los ||| to group representatives . ||| 1 0.135512 1.90631e-06 3.34014e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| to group representatives ||| 1 0.135512 1.90631e-06 1.10272e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| to guarantee the ||| 0.00132802 0.122289 1.90631e-06 2.30604e-06 2.718 ||| 0-2 ||| 753 524574 +los ||| to guarantee them a ||| 0.166667 0.038218 1.90631e-06 4.79586e-10 2.718 ||| 0-2 ||| 6 524574 +los ||| to guarantee them ||| 0.0625 0.038218 1.90631e-06 1.08196e-08 2.718 ||| 0-2 ||| 16 524574 +los ||| to handle the ||| 0.016129 0.122289 1.90631e-06 4.53584e-07 2.718 ||| 0-2 ||| 62 524574 +los ||| to harness the ||| 0.047619 0.122289 1.90631e-06 6.86093e-08 2.718 ||| 0-2 ||| 21 524574 +los ||| to have the ||| 0.00578592 0.122289 1.14379e-05 0.000455863 2.718 ||| 0-2 ||| 1037 524574 +los ||| to hear from the ||| 0.0142857 0.122289 1.90631e-06 6.23032e-09 2.718 ||| 0-3 ||| 70 524574 +los ||| to help reduce the ||| 0.0666667 0.122289 1.90631e-06 2.7694e-10 2.718 ||| 0-3 ||| 15 524574 +los ||| to highlight the ||| 0.00112994 0.122289 1.90631e-06 7.12775e-07 2.718 ||| 0-2 ||| 885 524574 +los ||| to how the ||| 0.0227273 0.122289 1.90631e-06 1.36609e-05 2.718 ||| 0-2 ||| 44 524574 +los ||| to how we ||| 0.0144928 0.00124 1.90631e-06 6.18361e-08 2.718 ||| 0-1 ||| 69 524574 +los ||| to how ||| 0.00120048 0.00124 1.90631e-06 5.44701e-06 2.718 ||| 0-1 ||| 833 524574 +los ||| to identify the ||| 0.0114943 0.122289 5.71893e-06 6.59412e-07 2.718 ||| 0-2 ||| 261 524574 +los ||| to identify those ||| 0.0333333 0.284705 1.90631e-06 2.56683e-08 2.718 ||| 0-2 ||| 30 524574 +los ||| to improve management of the recovery of ||| 1 0.122289 1.90631e-06 2.86114e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| to improve management of the recovery ||| 1 0.122289 1.90631e-06 5.26293e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| to improve management of the ||| 1 0.122289 1.90631e-06 3.95709e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| to improve the ||| 0.000375657 0.122289 1.90631e-06 1.65806e-06 2.718 ||| 0-2 ||| 2662 524574 +los ||| to improving their ||| 0.0714286 0.0236713 1.90631e-06 4.39087e-09 2.718 ||| 0-2 ||| 14 524574 +los ||| to include the ||| 0.00215983 0.122289 1.90631e-06 5.0466e-06 2.718 ||| 0-2 ||| 463 524574 +los ||| to include ||| 0.000328515 0.0092135 1.90631e-06 8.2105e-06 2.718 ||| 0-1 ||| 3044 524574 +los ||| to increase our level ||| 0.333333 0.0248369 1.90631e-06 3.50696e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| to increase our ||| 0.0111111 0.0248369 1.90631e-06 4.09979e-08 2.718 ||| 0-2 ||| 90 524574 +los ||| to increase the ||| 0.000710227 0.122289 1.90631e-06 4.92462e-06 2.718 ||| 0-2 ||| 1408 524574 +los ||| to individual ||| 0.00819672 0.110351 1.90631e-06 0.000114209 2.718 ||| 0-1 ||| 122 524574 +los ||| to infringe the ||| 0.166667 0.122289 1.90631e-06 5.33628e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| to insist that the ||| 0.02 0.122289 1.90631e-06 1.3593e-08 2.718 ||| 0-3 ||| 50 524574 +los ||| to involve the ||| 0.0060241 0.122289 1.90631e-06 1.87913e-06 2.718 ||| 0-2 ||| 166 524574 +los ||| to it by the ||| 0.0263158 0.122289 1.90631e-06 3.55867e-06 2.718 ||| 0-3 ||| 38 524574 +los ||| to it the ||| 0.166667 0.122289 3.81262e-06 0.00067783 2.718 ||| 0-2 ||| 12 524574 +los ||| to its project ||| 1 0.0211371 1.90631e-06 1.16109e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| to its ||| 0.00172216 0.0211371 1.14379e-05 0.000189721 2.718 ||| 0-1 ||| 3484 524574 +los ||| to join the EU ||| 0.00925926 0.122289 1.90631e-06 8.82645e-10 2.718 ||| 0-2 ||| 108 524574 +los ||| to join the ||| 0.00127226 0.122289 1.90631e-06 1.78384e-06 2.718 ||| 0-2 ||| 786 524574 +los ||| to join unions ||| 0.2 0.0560876 1.90631e-06 3.31438e-10 2.718 ||| 0-2 ||| 5 524574 +los ||| to keep the lid ||| 1 0.122289 1.90631e-06 1.06893e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| to keep the ||| 0.00516796 0.122289 3.81262e-06 5.93852e-06 2.718 ||| 0-2 ||| 387 524574 +los ||| to keep them ||| 0.0136986 0.038218 1.90631e-06 2.78627e-08 2.718 ||| 0-2 ||| 73 524574 +los ||| to keep up ||| 0.00763359 0.0031618 1.90631e-06 2.93495e-09 2.718 ||| 0-2 ||| 131 524574 +los ||| to kill the ||| 0.0833333 0.122289 1.90631e-06 1.639e-07 2.718 ||| 0-2 ||| 12 524574 +los ||| to know each ||| 0.125 0.0497499 1.90631e-06 2.01721e-08 2.718 ||| 0-2 ||| 8 524574 +los ||| to legislative interpretation and cumbersome bureaucracy ||| 0.5 0.0036232 1.90631e-06 3.04059e-24 2.718 ||| 0-4 ||| 2 524574 +los ||| to legislative interpretation and cumbersome ||| 0.5 0.0036232 1.90631e-06 4.67784e-19 2.718 ||| 0-4 ||| 2 524574 +los ||| to lend its ||| 0.0454545 0.0211371 1.90631e-06 2.59918e-09 2.718 ||| 0-2 ||| 22 524574 +los ||| to live up to the ||| 0.027027 0.122289 1.90631e-06 1.16436e-09 2.718 ||| 0-4 ||| 37 524574 +los ||| to look ahead at the ||| 1 0.122289 1.90631e-06 5.07131e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| to maintain the fundamental ||| 1 0.108248 1.90631e-06 2.58099e-09 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| to make clear our ||| 0.0909091 0.0248369 1.90631e-06 1.83575e-10 2.718 ||| 0-3 ||| 11 524574 +los ||| to make matters ||| 0.0357143 0.0584903 1.90631e-06 1.10054e-07 2.718 ||| 0-2 ||| 28 524574 +los ||| to make the ||| 0.00613497 0.122289 2.28757e-05 6.62385e-05 2.718 ||| 0-2 ||| 1956 524574 +los ||| to make them heard ||| 1 0.038218 1.90631e-06 2.46139e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| to make them ||| 0.00772201 0.038218 3.81262e-06 3.10781e-07 2.718 ||| 0-2 ||| 259 524574 +los ||| to making the ||| 0.0116279 0.122289 1.90631e-06 1.46633e-05 2.718 ||| 0-2 ||| 86 524574 +los ||| to mass ||| 0.0714286 0.0071188 1.90631e-06 1.64388e-06 2.718 ||| 0-1 ||| 14 524574 +los ||| to me the ||| 0.0416667 0.122289 1.90631e-06 2.29498e-05 2.718 ||| 0-2 ||| 24 524574 +los ||| to me with the ||| 0.5 0.122289 1.90631e-06 1.46753e-07 2.718 ||| 0-3 ||| 2 524574 +los ||| to measure up ||| 0.166667 0.0031618 1.90631e-06 1.41096e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| to meet the ||| 0.00224888 0.122289 5.71893e-06 4.63494e-06 2.718 ||| 0-2 ||| 1334 524574 +los ||| to meet ||| 0.000285307 0.0026912 1.90631e-06 2.0704e-06 2.718 ||| 0-1 ||| 3505 524574 +los ||| to meeting the ||| 0.0151515 0.122289 1.90631e-06 4.78741e-06 2.718 ||| 0-2 ||| 66 524574 +los ||| to members ||| 0.00990099 0.154615 1.90631e-06 0.000176419 2.718 ||| 0-1 ||| 101 524574 +los ||| to men ; the differences in pay ||| 1 0.122289 1.90631e-06 3.57861e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| to men ; the differences in ||| 1 0.122289 1.90631e-06 2.49903e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| to men ; the differences ||| 1 0.122289 1.90631e-06 1.16752e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| to men ; the ||| 1 0.122289 1.90631e-06 4.98942e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| to men ||| 0.0121951 0.21664 1.90631e-06 0.000141942 2.718 ||| 0-1 ||| 82 524574 +los ||| to mention the ||| 0.00264201 0.122289 3.81262e-06 3.7049e-06 2.718 ||| 0-2 ||| 757 524574 +los ||| to methods of ||| 0.0625 0.0794497 1.90631e-06 2.27749e-07 2.718 ||| 0-1 0-2 ||| 16 524574 +los ||| to more than ||| 0.00531915 8.8e-05 1.90631e-06 9.94335e-10 2.718 ||| 0-2 ||| 188 524574 +los ||| to my attention ||| 0.0217391 0.0086409 1.90631e-06 1.60046e-08 2.718 ||| 0-1 ||| 46 524574 +los ||| to my ||| 0.000297442 0.0086409 1.90631e-06 6.125e-05 2.718 ||| 0-1 ||| 3362 524574 +los ||| to national ||| 0.0235294 0.0129851 3.81262e-06 3.80135e-05 2.718 ||| 0-1 ||| 85 524574 +los ||| to new types , enabling the models ||| 1 0.133333 1.90631e-06 1.0724e-19 2.718 ||| 0-6 ||| 1 524574 +los ||| to notice the ||| 0.166667 0.122289 1.90631e-06 1.46748e-06 2.718 ||| 0-2 ||| 6 524574 +los ||| to open up the ||| 0.00598802 0.122289 1.90631e-06 2.09553e-08 2.718 ||| 0-3 ||| 167 524574 +los ||| to organise the ||| 0.00943396 0.122289 1.90631e-06 3.96409e-07 2.718 ||| 0-2 ||| 106 524574 +los ||| to other parties ||| 0.333333 0.132694 1.90631e-06 1.9351e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| to others ||| 0.00318471 0.072779 1.90631e-06 8.61303e-05 2.718 ||| 0-1 ||| 314 524574 +los ||| to our having ||| 0.0909091 0.0248369 1.90631e-06 1.21502e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| to our ||| 0.00119671 0.0248369 1.52505e-05 0.000317322 2.718 ||| 0-1 ||| 6685 524574 +los ||| to outline the ||| 0.0277778 0.122289 1.90631e-06 3.43047e-07 2.718 ||| 0-2 ||| 36 524574 +los ||| to over ||| 0.0121212 0.0037547 3.81262e-06 1.20936e-05 2.718 ||| 0-1 ||| 165 524574 +los ||| to people here actually trying ||| 1 0.0894672 1.90631e-06 6.74811e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| to people here actually ||| 1 0.0894672 1.90631e-06 5.85773e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| to people here ||| 0.5 0.0894672 1.90631e-06 1.41902e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| to people involved ||| 0.5 0.0894672 1.90631e-06 2.41986e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| to people ||| 0.00224719 0.0894672 3.81262e-06 0.000699785 2.718 ||| 0-1 ||| 890 524574 +los ||| to pieces ||| 0.0526316 0.0019646 1.90631e-06 8.88582e-08 2.718 ||| 0-1 ||| 19 524574 +los ||| to point out the ||| 0.0060241 0.122289 1.90631e-06 1.27721e-07 2.718 ||| 0-3 ||| 166 524574 +los ||| to pool the ||| 0.166667 0.122289 1.90631e-06 1.79147e-07 2.718 ||| 0-2 ||| 6 524574 +los ||| to predict what sort of return ||| 1 0.0061209 1.90631e-06 1.08434e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| to predict what sort of ||| 1 0.0061209 1.90631e-06 1.62814e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| to predict what sort ||| 1 0.0061209 1.90631e-06 2.99488e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| to predict what ||| 0.047619 0.0061209 1.90631e-06 1.87414e-10 2.718 ||| 0-2 ||| 21 524574 +los ||| to private security contractors , a move ||| 1 0.270936 1.90631e-06 7.47119e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| to private security contractors , a ||| 1 0.270936 1.90631e-06 4.88633e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| to private security contractors , ||| 1 0.270936 1.90631e-06 1.10237e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| to private security contractors ||| 1 0.270936 1.90631e-06 9.2438e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| to problems ||| 0.00401606 0.106249 1.90631e-06 0.000272484 2.718 ||| 0-1 ||| 249 524574 +los ||| to procedures used ||| 1 0.219824 1.90631e-06 9.05811e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| to procedures ||| 0.030303 0.219824 1.90631e-06 0.000211145 2.718 ||| 0-1 ||| 33 524574 +los ||| to process documents ||| 1 0.212011 1.90631e-06 4.72025e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| to products ||| 0.00649351 0.245259 1.90631e-06 0.000444664 2.718 ||| 0-1 ||| 154 524574 +los ||| to progress ||| 0.00299401 0.0392854 1.90631e-06 7.54228e-05 2.718 ||| 0-1 ||| 334 524574 +los ||| to promote , the ||| 1 0.122289 1.90631e-06 2.9137e-07 2.718 ||| 0-3 ||| 1 524574 +los ||| to protect the ||| 0.00142959 0.122289 3.81262e-06 1.31501e-06 2.718 ||| 0-2 ||| 1399 524574 +los ||| to provide a better response to the ||| 0.5 0.122289 1.90631e-06 7.54495e-16 2.718 ||| 0-6 ||| 2 524574 +los ||| to provide ||| 0.000161264 0.0003582 1.90631e-06 5.15378e-07 2.718 ||| 0-1 ||| 6201 524574 +los ||| to public ||| 0.00653595 0.0160961 1.90631e-06 5.24441e-05 2.718 ||| 0-1 ||| 153 524574 +los ||| to pursue a modern ||| 1 0.0129957 1.90631e-06 5.85166e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| to put an end to the ||| 0.0045045 0.122289 1.90631e-06 7.222e-12 2.718 ||| 0-5 ||| 222 524574 +los ||| to put the ||| 0.00277008 0.122289 1.90631e-06 4.2027e-05 2.718 ||| 0-2 ||| 361 524574 +los ||| to raise clients ||| 1 0.221311 1.90631e-06 4.61434e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| to raise the ||| 0.00191571 0.122289 1.90631e-06 2.51186e-06 2.718 ||| 0-2 ||| 522 524574 +los ||| to reach the ||| 0.00380228 0.122289 1.90631e-06 3.08742e-06 2.718 ||| 0-2 ||| 263 524574 +los ||| to realize that although the ||| 1 0.122289 1.90631e-06 3.98658e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| to receive the ||| 0.00934579 0.122289 1.90631e-06 3.82687e-06 2.718 ||| 0-2 ||| 107 524574 +los ||| to recognize the ||| 0.0204082 0.122289 1.90631e-06 2.74437e-07 2.718 ||| 0-2 ||| 49 524574 +los ||| to recourse to private security contractors , ||| 1 0.270936 1.90631e-06 1.19504e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| to recourse to private security contractors ||| 1 0.270936 1.90631e-06 1.00209e-20 2.718 ||| 0-5 ||| 1 524574 +los ||| to reduce levels ||| 0.166667 0.222552 1.90631e-06 6.65893e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| to regard the ||| 0.03125 0.122289 1.90631e-06 2.59534e-05 2.718 ||| 0-2 ||| 32 524574 +los ||| to register such vessels ||| 1 0.261943 1.90631e-06 1.78148e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| to regulate the ||| 0.00448431 0.122289 1.90631e-06 2.59191e-07 2.718 ||| 0-2 ||| 223 524574 +los ||| to rely on everyone ||| 0.333333 0.080245 1.90631e-06 1.21441e-11 2.718 ||| 0-3 ||| 3 524574 +los ||| to replace the ||| 0.00337838 0.122289 1.90631e-06 3.16365e-07 2.718 ||| 0-2 ||| 296 524574 +los ||| to replace those ||| 0.0769231 0.284705 1.90631e-06 1.23149e-08 2.718 ||| 0-2 ||| 13 524574 +los ||| to reports ||| 0.0117647 0.0868855 1.90631e-06 8.73476e-05 2.718 ||| 0-1 ||| 85 524574 +los ||| to respect ||| 0.000513611 0.0045864 1.90631e-06 9.41897e-06 2.718 ||| 0-1 ||| 1947 524574 +los ||| to restore the balance ||| 0.0555556 0.122289 1.90631e-06 2.81984e-11 2.718 ||| 0-2 ||| 18 524574 +los ||| to restore the ||| 0.00444444 0.122289 1.90631e-06 5.22193e-07 2.718 ||| 0-2 ||| 225 524574 +los ||| to rights ||| 0.0238095 0.0030851 1.90631e-06 1.35598e-05 2.718 ||| 0-1 ||| 42 524574 +los ||| to say , by those ||| 1 0.284705 1.90631e-06 8.87895e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| to say in the ||| 0.037037 0.122289 1.90631e-06 7.79799e-07 2.718 ||| 0-3 ||| 27 524574 +los ||| to say that the ||| 0.00172265 0.122289 3.81262e-06 6.12837e-07 2.718 ||| 0-3 ||| 1161 524574 +los ||| to say the ||| 0.00374532 0.122289 3.81262e-06 3.64315e-05 2.718 ||| 0-2 ||| 534 524574 +los ||| to see if we can identify ||| 1 0.0014395 1.90631e-06 5.12277e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| to see that the ||| 0.00319489 0.122289 1.90631e-06 4.51773e-07 2.718 ||| 0-3 ||| 313 524574 +los ||| to see the ||| 0.00612245 0.122289 1.14379e-05 2.68567e-05 2.718 ||| 0-2 ||| 980 524574 +los ||| to see those on this side ||| 1 0.284705 1.90631e-06 9.90723e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| to see those on this ||| 1 0.284705 1.90631e-06 4.51972e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| to see those on ||| 1 0.284705 1.90631e-06 6.99496e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| to see those ||| 0.0714286 0.284705 1.90631e-06 1.04543e-06 2.718 ||| 0-2 ||| 14 524574 +los ||| to seeing the ||| 0.0526316 0.122289 1.90631e-06 2.0316e-06 2.718 ||| 0-2 ||| 19 524574 +los ||| to seriously address the ||| 0.5 0.122289 1.90631e-06 1.21275e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| to service ||| 0.0208333 0.0130347 1.90631e-06 9.49894e-06 2.718 ||| 0-1 ||| 48 524574 +los ||| to set its ||| 0.0625 0.0211371 1.90631e-06 1.10873e-07 2.718 ||| 0-2 ||| 16 524574 +los ||| to set the ||| 0.00465116 0.122289 1.90631e-06 2.22752e-05 2.718 ||| 0-2 ||| 215 524574 +los ||| to shape our ||| 0.0434783 0.0248369 1.90631e-06 1.9198e-08 2.718 ||| 0-2 ||| 23 524574 +los ||| to share the ||| 0.01 0.122289 1.90631e-06 3.56768e-06 2.718 ||| 0-2 ||| 100 524574 +los ||| to sit on the ||| 0.0714286 0.122289 1.90631e-06 9.64036e-09 2.718 ||| 0-3 ||| 14 524574 +los ||| to sleeping remedies ||| 1 0.0899471 1.90631e-06 4.11769e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| to some extent , ||| 0.00393701 0.0020765 1.90631e-06 2.31776e-10 2.718 ||| 0-1 ||| 254 524574 +los ||| to some extent ||| 0.00106383 0.0020765 1.90631e-06 1.94354e-09 2.718 ||| 0-1 ||| 940 524574 +los ||| to some ||| 0.000926355 0.0020765 3.81262e-06 1.01121e-05 2.718 ||| 0-1 ||| 2159 524574 +los ||| to sovereignty , the end of ||| 1 0.122289 1.90631e-06 5.05341e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| to sovereignty , the end ||| 1 0.122289 1.90631e-06 9.29551e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| to sovereignty , the ||| 1 0.122289 1.90631e-06 2.13641e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| to speak , the ||| 0.125 0.122289 1.90631e-06 6.15012e-07 2.718 ||| 0-3 ||| 8 524574 +los ||| to spend their ||| 0.0555556 0.0236713 1.90631e-06 6.13908e-09 2.718 ||| 0-2 ||| 18 524574 +los ||| to sports events ||| 0.333333 0.0836397 1.90631e-06 5.71709e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| to sports ||| 0.142857 0.0836397 1.90631e-06 7.86395e-06 2.718 ||| 0-1 ||| 7 524574 +los ||| to start by thanking the rapporteur , ||| 0.047619 0.122289 1.90631e-06 1.46192e-18 2.718 ||| 0-4 ||| 21 524574 +los ||| to start by thanking the rapporteur ||| 0.0185185 0.122289 1.90631e-06 1.22588e-17 2.718 ||| 0-4 ||| 54 524574 +los ||| to start by thanking the ||| 0.00952381 0.122289 1.90631e-06 1.69555e-13 2.718 ||| 0-4 ||| 105 524574 +los ||| to start discussing problems that are ||| 0.333333 0.106249 1.90631e-06 3.40995e-16 2.718 ||| 0-3 ||| 3 524574 +los ||| to start discussing problems that ||| 0.333333 0.106249 1.90631e-06 2.24742e-14 2.718 ||| 0-3 ||| 3 524574 +los ||| to start discussing problems ||| 0.333333 0.106249 1.90631e-06 1.33603e-12 2.718 ||| 0-3 ||| 3 524574 +los ||| to state what we want ||| 1 0.0061209 1.90631e-06 1.14203e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| to state what we ||| 1 0.0061209 1.90631e-06 2.44285e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| to state what ||| 0.0666667 0.0061209 1.90631e-06 2.15186e-08 2.718 ||| 0-2 ||| 15 524574 +los ||| to states ||| 0.0232558 0.118291 1.90631e-06 0.000134425 2.718 ||| 0-1 ||| 43 524574 +los ||| to store such ||| 1 0.0016619 1.90631e-06 1.47459e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| to strengthen the ||| 0.000825764 0.122289 1.90631e-06 7.39456e-07 2.718 ||| 0-2 ||| 1211 524574 +los ||| to suffer the effects ||| 0.25 0.122289 1.90631e-06 7.36818e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| to suffer the ||| 0.0204082 0.122289 1.90631e-06 1.35694e-06 2.718 ||| 0-2 ||| 49 524574 +los ||| to sweep them under the ||| 1 0.122289 1.90631e-06 1.32065e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| to tackle the ||| 0.00275103 0.122289 3.81262e-06 1.38362e-06 2.718 ||| 0-2 ||| 727 524574 +los ||| to take account of the fact ||| 0.0416667 0.122289 1.90631e-06 2.80963e-12 2.718 ||| 0-4 ||| 24 524574 +los ||| to take account of the ||| 0.0071599 0.122289 5.71893e-06 9.59148e-10 2.718 ||| 0-4 ||| 419 524574 +los ||| to take the level of ||| 0.5 0.122289 1.90631e-06 2.85376e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| to take the level ||| 0.5 0.122289 1.90631e-06 5.24935e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| to take the ||| 0.00240964 0.122289 7.62523e-06 6.13672e-05 2.718 ||| 0-2 ||| 1660 524574 +los ||| to take them ||| 0.0166667 0.038218 1.90631e-06 2.87926e-07 2.718 ||| 0-2 ||| 60 524574 +los ||| to tax ||| 0.013245 0.0611419 3.81262e-06 6.00415e-05 2.718 ||| 0-1 ||| 151 524574 +los ||| to taxation in the ||| 0.5 0.122289 1.90631e-06 7.0164e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| to tell the ||| 0.00346021 0.122289 1.90631e-06 3.74302e-06 2.718 ||| 0-2 ||| 289 524574 +los ||| to tell you that the ||| 0.0222222 0.122289 1.90631e-06 2.0329e-10 2.718 ||| 0-4 ||| 45 524574 +los ||| to thank the ||| 0.000218103 0.122289 1.90631e-06 4.0327e-06 2.718 ||| 0-2 ||| 4585 524574 +los ||| to that end , aid agreements must ||| 1 0.199336 1.90631e-06 4.93621e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| to that end , aid agreements ||| 1 0.199336 1.90631e-06 3.19372e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| to the Americans ||| 0.0113636 0.122289 1.90631e-06 3.58293e-07 2.718 ||| 0-1 ||| 88 524574 +los ||| to the Commission ||| 0.000164555 0.122289 1.90631e-06 2.22637e-05 2.718 ||| 0-1 ||| 6077 524574 +los ||| to the EU anticipated ||| 1 0.122289 1.90631e-06 1.62195e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| to the EU ||| 0.000601323 0.122289 1.90631e-06 1.88599e-05 2.718 ||| 0-1 ||| 1663 524574 +los ||| to the European ||| 0.0045045 0.062853 3.81262e-06 4.34335e-05 2.718 ||| 0-1 0-2 ||| 444 524574 +los ||| to the Union ' ||| 0.25 0.0444479 1.90631e-06 1.61741e-08 2.718 ||| 0-3 ||| 4 524574 +los ||| to the action is ||| 1 0.122289 1.90631e-06 3.61129e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| to the action ||| 0.0185185 0.122289 1.90631e-06 1.15226e-05 2.718 ||| 0-1 ||| 54 524574 +los ||| to the amount of the ||| 0.5 0.122289 1.90631e-06 3.0951e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| to the amount of ||| 0.025641 0.122289 1.90631e-06 5.04155e-07 2.718 ||| 0-1 ||| 39 524574 +los ||| to the amount ||| 0.015625 0.122289 1.90631e-06 9.27369e-06 2.718 ||| 0-1 ||| 64 524574 +los ||| to the arrangements ||| 0.0833333 0.0717439 1.90631e-06 1.37907e-06 2.718 ||| 0-2 ||| 12 524574 +los ||| to the beach ||| 0.166667 0.122289 1.90631e-06 1.52465e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| to the beginning and ||| 1 0.122289 1.90631e-06 1.94318e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| to the beginning ||| 0.037037 0.122289 1.90631e-06 1.55133e-06 2.718 ||| 0-1 ||| 27 524574 +los ||| to the best of ||| 0.0181818 0.122289 1.90631e-06 2.86993e-07 2.718 ||| 0-1 ||| 55 524574 +los ||| to the best ||| 0.0131579 0.122289 3.81262e-06 5.27911e-06 2.718 ||| 0-1 ||| 152 524574 +los ||| to the candidate states . ||| 1 0.0335599 1.90631e-06 1.90861e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| to the candidate states ||| 0.5 0.0335599 1.90631e-06 6.30111e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| to the candidate ||| 0.0909091 0.0335599 1.90631e-06 8.37913e-07 2.718 ||| 0-2 ||| 11 524574 +los ||| to the changing ||| 0.0344828 0.122289 1.90631e-06 5.22193e-07 2.718 ||| 0-1 ||| 29 524574 +los ||| to the communication of information ||| 1 0.122289 1.90631e-06 1.0494e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| to the communication of ||| 0.2 0.122289 1.90631e-06 6.34079e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| to the communication ||| 0.0181818 0.122289 1.90631e-06 1.16636e-06 2.718 ||| 0-1 ||| 55 524574 +los ||| to the country 's ||| 0.25 0.0349814 1.90631e-06 1.20296e-08 2.718 ||| 0-3 ||| 4 524574 +los ||| to the country ||| 0.00421941 0.122289 1.90631e-06 1.37181e-05 2.718 ||| 0-1 ||| 237 524574 +los ||| to the defined ||| 1 0.122289 1.90631e-06 1.2769e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| to the definition of the ||| 0.047619 0.122289 1.90631e-06 3.47292e-09 2.718 ||| 0-4 ||| 21 524574 +los ||| to the detriment ||| 0.00151286 0.122289 1.90631e-06 3.69728e-07 2.718 ||| 0-1 ||| 661 524574 +los ||| to the early ||| 0.0344828 0.122289 1.90631e-06 2.58047e-06 2.718 ||| 0-1 ||| 29 524574 +los ||| to the effect ||| 0.00210084 0.122289 3.81262e-06 1.27156e-05 2.718 ||| 0-1 ||| 952 524574 +los ||| to the fact ||| 0.00128921 0.122289 5.71893e-06 0.000111654 2.718 ||| 0-1 ||| 2327 524574 +los ||| to the fore ||| 0.00606061 0.122289 1.90631e-06 4.38337e-07 2.718 ||| 0-1 ||| 165 524574 +los ||| to the heart ||| 0.00558659 0.122289 1.90631e-06 3.07217e-06 2.718 ||| 0-1 ||| 179 524574 +los ||| to the latter ||| 0.0140845 0.122289 1.90631e-06 3.66297e-06 2.718 ||| 0-1 ||| 71 524574 +los ||| to the legislation governing ||| 0.5 0.122289 1.90631e-06 5.93783e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| to the legislation ||| 0.0126582 0.122289 1.90631e-06 3.06074e-06 2.718 ||| 0-1 ||| 79 524574 +los ||| to the level ||| 0.00458716 0.122289 1.90631e-06 3.26047e-05 2.718 ||| 0-1 ||| 218 524574 +los ||| to the life ||| 0.0344828 0.122289 1.90631e-06 5.77462e-06 2.718 ||| 0-1 ||| 29 524574 +los ||| to the masses ||| 0.2 0.122289 1.90631e-06 6.86093e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| to the men ||| 0.0416667 0.169465 1.90631e-06 6.0887e-05 2.718 ||| 0-1 0-2 ||| 24 524574 +los ||| to the national ||| 0.0588235 0.122289 1.90631e-06 4.89794e-06 2.718 ||| 0-1 ||| 17 524574 +los ||| to the needs of ||| 0.00293255 0.122289 1.90631e-06 4.10908e-07 2.718 ||| 0-1 ||| 341 524574 +los ||| to the needs ||| 0.00199203 0.122289 1.90631e-06 7.55846e-06 2.718 ||| 0-1 ||| 502 524574 +los ||| to the new ||| 0.000732064 0.122289 1.90631e-06 2.27821e-05 2.718 ||| 0-1 ||| 1366 524574 +los ||| to the notion ||| 0.02 0.122289 1.90631e-06 9.45284e-07 2.718 ||| 0-1 ||| 50 524574 +los ||| to the objectives also being ||| 1 0.122289 1.90631e-06 2.5629e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| to the objectives also ||| 1 0.122289 1.90631e-06 9.00591e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| to the objectives ||| 0.00595238 0.122289 1.90631e-06 1.78384e-06 2.718 ||| 0-1 ||| 168 524574 +los ||| to the other ||| 0.00158479 0.122289 1.90631e-06 4.93796e-05 2.718 ||| 0-1 ||| 631 524574 +los ||| to the own ||| 1 0.122289 1.90631e-06 6.46185e-05 2.718 ||| 0-1 ||| 1 524574 +los ||| to the people ||| 0.0008 0.122289 1.90631e-06 3.355e-05 2.718 ||| 0-1 ||| 1250 524574 +los ||| to the plenary ||| 0.0181818 0.122289 1.90631e-06 3.58293e-07 2.718 ||| 0-1 ||| 55 524574 +los ||| to the point ||| 0.00312012 0.122289 3.81262e-06 3.33441e-05 2.718 ||| 0-1 ||| 641 524574 +los ||| to the preparatory ||| 0.5 0.122289 1.90631e-06 1.90581e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| to the proliferation ||| 0.0526316 0.122289 1.90631e-06 9.52907e-08 2.718 ||| 0-1 ||| 19 524574 +los ||| to the proposal ||| 0.00190476 0.122289 1.90631e-06 7.61182e-06 2.718 ||| 0-1 ||| 525 524574 +los ||| to the question of ||| 0.0016835 0.122289 1.90631e-06 1.71429e-06 2.718 ||| 0-1 ||| 594 524574 +los ||| to the question ||| 0.000928505 0.122289 1.90631e-06 3.15336e-05 2.718 ||| 0-1 ||| 1077 524574 +los ||| to the relevant ||| 0.0238095 0.122289 1.90631e-06 4.10131e-06 2.718 ||| 0-1 ||| 42 524574 +los ||| to the reports ||| 0.0140845 0.104587 1.90631e-06 3.74683e-05 2.718 ||| 0-1 0-2 ||| 71 524574 +los ||| to the results ||| 0.0123457 0.0837947 1.90631e-06 2.02702e-05 2.718 ||| 0-1 0-2 ||| 81 524574 +los ||| to the risk that those ||| 0.5 0.122289 1.90631e-06 5.43203e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| to the risk that ||| 0.142857 0.122289 1.90631e-06 7.50177e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| to the risk ||| 0.00847458 0.122289 1.90631e-06 4.45961e-06 2.718 ||| 0-1 ||| 118 524574 +los ||| to the salaries of members of parliament ||| 1 0.122289 1.90631e-06 1.4416e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| to the salaries of members of ||| 1 0.122289 1.90631e-06 5.98174e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| to the salaries of members ||| 1 0.122289 1.90631e-06 1.10031e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| to the salaries of ||| 1 0.122289 1.90631e-06 7.45975e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| to the salaries ||| 0.25 0.122289 1.90631e-06 1.37219e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| to the session players ||| 0.2 0.122289 1.90631e-06 1.41716e-11 2.718 ||| 0-1 ||| 5 524574 +los ||| to the session ||| 0.0769231 0.122289 1.90631e-06 8.38558e-07 2.718 ||| 0-1 ||| 13 524574 +los ||| to the seven ||| 0.0769231 0.122289 1.90631e-06 1.90581e-07 2.718 ||| 0-1 ||| 13 524574 +los ||| to the specific ||| 0.0454545 0.122289 1.90631e-06 5.75937e-06 2.718 ||| 0-1 ||| 22 524574 +los ||| to the status ||| 0.010989 0.122289 1.90631e-06 3.85356e-06 2.718 ||| 0-1 ||| 91 524574 +los ||| to the subject of ||| 0.00632911 0.122289 1.90631e-06 1.11855e-06 2.718 ||| 0-1 ||| 158 524574 +los ||| to the subject ||| 0.00363636 0.122289 1.90631e-06 2.05752e-05 2.718 ||| 0-1 ||| 275 524574 +los ||| to the tests ||| 0.25 0.122289 1.90631e-06 6.3273e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| to the tough ||| 0.166667 0.122289 1.90631e-06 4.38337e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| to the tune ||| 0.00518135 0.122289 1.90631e-06 1.13968e-06 2.718 ||| 0-1 ||| 193 524574 +los ||| to the use of ||| 0.00284091 0.122289 1.90631e-06 1.00748e-06 2.718 ||| 0-1 ||| 352 524574 +los ||| to the use ||| 0.00493827 0.122289 3.81262e-06 1.85321e-05 2.718 ||| 0-1 ||| 405 524574 +los ||| to the various ||| 0.00664452 0.122289 3.81262e-06 5.88515e-06 2.718 ||| 0-1 ||| 301 524574 +los ||| to the very ||| 0.0052356 0.122289 1.90631e-06 0.000132626 2.718 ||| 0-1 ||| 191 524574 +los ||| to the victims ||| 0.00361011 0.122289 1.90631e-06 1.3455e-06 2.718 ||| 0-1 ||| 277 524574 +los ||| to the view taken ||| 0.5 0.122289 1.90631e-06 3.13833e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| to the view ||| 0.00900901 0.122289 1.90631e-06 3.44304e-05 2.718 ||| 0-1 ||| 111 524574 +los ||| to the ||| 0.00733816 0.122289 0.0023867 0.0381163 2.718 ||| 0-1 ||| 170615 524574 +los ||| to their country ||| 0.00943396 0.0236713 1.90631e-06 7.31608e-08 2.718 ||| 0-1 ||| 106 524574 +los ||| to their suitability ||| 1 0.0236713 1.90631e-06 3.65906e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| to their ||| 0.0011534 0.0236713 9.53154e-06 0.000203281 2.718 ||| 0-1 ||| 4335 524574 +los ||| to them what is at ||| 1 0.038218 1.90631e-06 3.29308e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| to them what is ||| 0.5 0.038218 1.90631e-06 7.86426e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| to them what ||| 0.166667 0.038218 1.90631e-06 2.50925e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| to them ||| 0.00317083 0.038218 1.52505e-05 0.000178836 2.718 ||| 0-1 ||| 2523 524574 +los ||| to these studies , the supply ||| 0.5 0.122289 1.90631e-06 1.91797e-15 2.718 ||| 0-4 ||| 2 524574 +los ||| to these studies , the ||| 0.5 0.122289 1.90631e-06 3.72421e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| to these the ||| 0.166667 0.0731627 1.90631e-06 9.29084e-05 2.718 ||| 0-1 0-2 ||| 6 524574 +los ||| to these ||| 0.00142045 0.0240362 9.53154e-06 0.000216592 2.718 ||| 0-1 ||| 3520 524574 +los ||| to third world levels ||| 1 0.222552 1.90631e-06 1.86329e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| to those already ||| 0.0416667 0.284705 1.90631e-06 6.8711e-07 2.718 ||| 0-1 ||| 24 524574 +los ||| to those in ||| 0.00806452 0.284705 1.90631e-06 3.17583e-05 2.718 ||| 0-1 ||| 124 524574 +los ||| to those of ||| 0.0031746 0.284705 1.90631e-06 8.06609e-05 2.718 ||| 0-1 ||| 315 524574 +los ||| to those places ||| 0.2 0.284705 1.90631e-06 7.84887e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| to those where ||| 0.333333 0.284705 1.90631e-06 4.49567e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| to those who are ||| 0.00970874 0.284705 1.90631e-06 1.98556e-08 2.718 ||| 0-1 ||| 103 524574 +los ||| to those who ||| 0.000837521 0.284705 1.90631e-06 1.30864e-06 2.718 ||| 0-1 ||| 1194 524574 +los ||| to those ||| 0.0114272 0.284705 8.95965e-05 0.00148372 2.718 ||| 0-1 ||| 4113 524574 +los ||| to top up the ||| 0.166667 0.122289 1.90631e-06 8.9827e-09 2.718 ||| 0-3 ||| 6 524574 +los ||| to track them ||| 1 0.038218 1.90631e-06 7.08191e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| to uphold the ||| 0.00840336 0.122289 1.90631e-06 3.96409e-07 2.718 ||| 0-2 ||| 119 524574 +los ||| to us that the ||| 0.0434783 0.122289 1.90631e-06 1.848e-06 2.718 ||| 0-3 ||| 23 524574 +los ||| to us the ||| 0.2 0.122289 3.81262e-06 0.000109859 2.718 ||| 0-2 ||| 10 524574 +los ||| to use the ||| 0.000970874 0.122289 1.90631e-06 1.85321e-05 2.718 ||| 0-2 ||| 1030 524574 +los ||| to wages ||| 0.0714286 0.268982 1.90631e-06 3.94797e-05 2.718 ||| 0-1 ||| 14 524574 +los ||| to what is happening in the ||| 0.0714286 0.122289 1.90631e-06 1.94813e-12 2.718 ||| 0-5 ||| 14 524574 +los ||| to what might be incorporated ||| 1 0.0061209 1.90631e-06 1.19754e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| to what might be ||| 0.0909091 0.0061209 1.90631e-06 5.92842e-10 2.718 ||| 0-1 ||| 11 524574 +los ||| to what might ||| 0.0526316 0.0061209 1.90631e-06 3.27123e-08 2.718 ||| 0-1 ||| 19 524574 +los ||| to what the ||| 0.0119048 0.122289 3.81262e-06 5.3481e-05 2.718 ||| 0-2 ||| 168 524574 +los ||| to what ||| 0.000283607 0.0061209 1.90631e-06 8.51884e-05 2.718 ||| 0-1 ||| 3526 524574 +los ||| to where ||| 0.0047619 0.0449398 1.90631e-06 0.00019611 2.718 ||| 0-1 ||| 210 524574 +los ||| to whether these ||| 0.0454545 0.0240362 1.90631e-06 5.68987e-08 2.718 ||| 0-2 ||| 22 524574 +los ||| to which people resort ||| 0.5 0.0894672 1.90631e-06 9.21381e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| to which people ||| 0.0666667 0.0894672 1.90631e-06 5.94439e-06 2.718 ||| 0-2 ||| 15 524574 +los ||| to which the ||| 0.00958084 0.122289 1.52505e-05 0.000323783 2.718 ||| 0-2 ||| 835 524574 +los ||| to which these major ||| 1 0.0240362 1.90631e-06 1.78099e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| to which these ||| 0.04 0.0240362 1.90631e-06 1.83986e-06 2.718 ||| 0-2 ||| 25 524574 +los ||| to which ||| 0.00016129 0.0001231 1.90631e-06 3.02118e-06 2.718 ||| 0-1 ||| 6200 524574 +los ||| to work out the figure of one ||| 1 0.122289 1.90631e-06 1.5978e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| to work out the figure of ||| 1 0.122289 1.90631e-06 3.83349e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| to work out the figure ||| 1 0.122289 1.90631e-06 7.05152e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| to work out the ||| 0.166667 0.122289 3.81262e-06 9.24184e-08 2.718 ||| 0-3 ||| 12 524574 +los ||| to you for the ||| 0.0833333 0.122289 1.90631e-06 9.45849e-07 2.718 ||| 0-3 ||| 12 524574 +los ||| to you on the ||| 0.0769231 0.122289 1.90631e-06 8.23435e-07 2.718 ||| 0-3 ||| 13 524574 +los ||| to you the ||| 0.027027 0.122289 1.90631e-06 0.000123066 2.718 ||| 0-2 ||| 37 524574 +los ||| to you with the ||| 0.25 0.122289 1.90631e-06 7.86946e-07 2.718 ||| 0-3 ||| 4 524574 +los ||| to your ||| 0.000655738 0.0096341 1.90631e-06 2.73861e-05 2.718 ||| 0-1 ||| 1525 524574 +los ||| to ||| 1.07155e-05 1.44e-05 2.28757e-05 2.33e-05 2.718 ||| 0-0 ||| 1.11987e+06 524574 +los ||| tobacco growers at ||| 0.333333 0.353352 1.90631e-06 2.29712e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| tobacco growers ||| 0.0121951 0.353352 1.90631e-06 5.4858e-09 2.718 ||| 0-1 ||| 82 524574 +los ||| tobacco ||| 0.000380228 0.0089917 1.90631e-06 4.08e-05 2.718 ||| 0-0 ||| 2630 524574 +los ||| today ' s ||| 0.00847458 0.0393018 1.90631e-06 3.78327e-09 2.718 ||| 0-1 0-2 ||| 118 524574 +los ||| today 's ||| 0.00237812 0.0349814 3.81262e-06 2.76521e-06 2.718 ||| 0-1 ||| 841 524574 +los ||| today chairman of the Socialist Party , ||| 0.5 0.122289 1.90631e-06 1.52376e-20 2.718 ||| 0-3 ||| 2 524574 +los ||| today chairman of the Socialist Party ||| 0.5 0.122289 1.90631e-06 1.27774e-19 2.718 ||| 0-3 ||| 2 524574 +los ||| today chairman of the Socialist ||| 0.5 0.122289 1.90631e-06 8.47305e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| today chairman of the ||| 0.5 0.122289 1.90631e-06 1.02085e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| today how the ||| 0.5 0.122289 1.90631e-06 6.93819e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| today the ||| 0.00441501 0.122289 3.81262e-06 0.000193588 2.718 ||| 0-1 ||| 453 524574 +los ||| today these ' ||| 1 0.0240362 1.90631e-06 3.77854e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| today these ||| 0.153846 0.0240362 3.81262e-06 1.10004e-06 2.718 ||| 0-1 ||| 13 524574 +los ||| together , are the ||| 0.333333 0.122289 1.90631e-06 4.66162e-07 2.718 ||| 0-3 ||| 3 524574 +los ||| together , the ||| 0.0163934 0.122289 1.90631e-06 3.07237e-05 2.718 ||| 0-2 ||| 61 524574 +los ||| together , these ||| 0.0714286 0.0240362 1.90631e-06 1.74584e-07 2.718 ||| 0-2 ||| 14 524574 +los ||| together , they are ||| 0.333333 0.0072404 1.90631e-06 8.89601e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| together , they ||| 0.166667 0.0072404 1.90631e-06 5.86317e-08 2.718 ||| 0-2 ||| 6 524574 +los ||| together in the conurbations and they have ||| 1 0.122289 1.90631e-06 1.88749e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| together in the conurbations and they ||| 1 0.122289 1.90631e-06 1.57819e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| together in the conurbations and ||| 1 0.122289 1.90631e-06 4.83516e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| together in the conurbations ||| 1 0.122289 1.90631e-06 3.86013e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| together in the ||| 0.00813008 0.122289 1.90631e-06 5.51447e-06 2.718 ||| 0-2 ||| 123 524574 +los ||| together its ||| 0.166667 0.0211371 1.90631e-06 1.28234e-06 2.718 ||| 0-1 ||| 6 524574 +los ||| together the ||| 0.0472441 0.122289 1.14379e-05 0.000257631 2.718 ||| 0-1 ||| 127 524574 +los ||| together with the ||| 0.00136737 0.122289 5.71893e-06 1.64742e-06 2.718 ||| 0-2 ||| 2194 524574 +los ||| told about them ||| 1 0.038218 1.90631e-06 1.69077e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| told the ||| 0.00704225 0.122289 1.90631e-06 2.548e-05 2.718 ||| 0-1 ||| 142 524574 +los ||| tolls ||| 0.0108696 0.186441 3.81262e-06 5.35e-05 2.718 ||| 0-0 ||| 184 524574 +los ||| too , of workers ||| 0.2 0.364501 1.90631e-06 6.44439e-08 2.718 ||| 0-3 ||| 5 524574 +los ||| too , the ||| 0.0165289 0.122289 3.81262e-06 6.9622e-05 2.718 ||| 0-2 ||| 121 524574 +los ||| too , those ||| 0.5 0.284705 1.90631e-06 2.71011e-06 2.718 ||| 0-2 ||| 2 524574 +los ||| too , to realize that although the ||| 1 0.122289 1.90631e-06 6.47045e-17 2.718 ||| 0-6 ||| 1 524574 +los ||| too much experience of journeys to us ||| 1 0.0019787 1.90631e-06 3.19841e-22 2.718 ||| 0-3 ||| 1 524574 +los ||| too much experience of journeys to ||| 1 0.0019787 1.90631e-06 1.10971e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| too much experience of journeys ||| 1 0.0019787 1.90631e-06 1.24886e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| too much experience of ||| 1 0.0019787 1.90631e-06 3.12215e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| too the ||| 0.0263158 0.122289 1.90631e-06 0.00058381 2.718 ||| 0-1 ||| 38 524574 +los ||| too ’ ||| 1 0.0139748 1.90631e-06 7.35757e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| took the initiative ||| 0.00952381 0.122289 1.90631e-06 3.96077e-09 2.718 ||| 0-1 ||| 105 524574 +los ||| took the ||| 0.00767754 0.122289 7.62523e-06 6.32711e-05 2.718 ||| 0-1 ||| 521 524574 +los ||| took them ||| 0.0666667 0.038218 1.90631e-06 2.96858e-07 2.718 ||| 0-1 ||| 15 524574 +los ||| tools ' ||| 0.142857 0.0444479 1.90631e-06 5.00005e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| top of the agenda ||| 0.0111111 0.122289 1.90631e-06 1.60012e-10 2.718 ||| 0-2 ||| 90 524574 +los ||| top of the ||| 0.00595238 0.122289 3.81262e-06 1.6114e-06 2.718 ||| 0-2 ||| 336 524574 +los ||| top of ||| 0.00181488 0.0059348 1.90631e-06 9.32743e-08 2.718 ||| 0-0 0-1 ||| 551 524574 +los ||| top up the ||| 0.0909091 0.122289 1.90631e-06 1.0109e-07 2.718 ||| 0-2 ||| 11 524574 +los ||| top ||| 0.000529942 0.0098909 1.90631e-06 2.82e-05 2.718 ||| 0-0 ||| 1887 524574 +los ||| topics , so as ||| 0.333333 0.0367063 1.90631e-06 9.94338e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| topics , so ||| 0.333333 0.0367063 1.90631e-06 9.74421e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| topics , ||| 0.0208333 0.0367063 1.90631e-06 4.29317e-06 2.718 ||| 0-0 ||| 48 524574 +los ||| topics ||| 0.00197824 0.0367063 3.81262e-06 3.6e-05 2.718 ||| 0-0 ||| 1011 524574 +los ||| total earnings ||| 0.166667 0.14966 1.90631e-06 4.03604e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| total respect for ||| 0.0333333 0.0001807 1.90631e-06 3.32483e-12 2.718 ||| 0-0 ||| 30 524574 +los ||| total respect ||| 0.025 0.0001807 1.90631e-06 4.326e-10 2.718 ||| 0-0 ||| 40 524574 +los ||| total ||| 0.000170126 0.0001807 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 5878 524574 +los ||| touch with the ||| 0.0131579 0.122289 1.90631e-06 6.03451e-08 2.718 ||| 0-2 ||| 76 524574 +los ||| touched by ||| 0.0333333 0.0062464 1.90631e-06 1.27964e-08 2.718 ||| 0-1 ||| 30 524574 +los ||| touches to the ||| 0.0666667 0.122289 1.90631e-06 2.05828e-07 2.718 ||| 0-2 ||| 15 524574 +los ||| tourist services ||| 0.037037 0.272175 1.90631e-06 2.49459e-08 2.718 ||| 0-1 ||| 27 524574 +los ||| tourist ||| 0.00584795 0.0121951 7.62523e-06 8.8e-06 2.718 ||| 0-0 ||| 684 524574 +los ||| tourists ||| 0.0018622 0.287129 1.90631e-06 0.0001974 2.718 ||| 0-0 ||| 537 524574 +los ||| towards a situation where the ||| 1 0.122289 1.90631e-06 3.76811e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| towards achieving a healthy ||| 1 0.0027447 1.90631e-06 2.16146e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| towards giving the ||| 0.166667 0.122289 1.90631e-06 8.58565e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| towards reaching the average development parameters ||| 1 0.122289 1.90631e-06 3.90042e-23 2.718 ||| 0-2 ||| 1 524574 +los ||| towards reaching the average development ||| 1 0.122289 1.90631e-06 6.00065e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| towards reaching the average ||| 1 0.122289 1.90631e-06 3.64781e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| towards reaching the ||| 0.2 0.122289 1.90631e-06 1.47089e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| towards the bottom ||| 0.166667 0.122289 1.90631e-06 7.84475e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| towards the important ||| 0.5 0.122289 1.90631e-06 2.08975e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| towards the ||| 0.00200172 0.122289 1.33442e-05 5.44775e-05 2.718 ||| 0-1 ||| 3497 524574 +los ||| towards them ||| 0.0136986 0.038218 1.90631e-06 2.556e-07 2.718 ||| 0-1 ||| 73 524574 +los ||| town and ||| 0.020202 0.0111982 3.81262e-06 1.21501e-07 2.718 ||| 0-0 ||| 99 524574 +los ||| town ||| 0.00943396 0.0111982 1.52505e-05 9.7e-06 2.718 ||| 0-0 ||| 848 524574 +los ||| toxic ||| 0.00138504 0.0040268 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 722 524574 +los ||| toys ||| 0.0012837 0.319734 1.90631e-06 0.0003733 2.718 ||| 0-0 ||| 779 524574 +los ||| trace the ||| 0.0625 0.122289 3.81262e-06 2.31636e-06 2.718 ||| 0-1 ||| 32 524574 +los ||| track criminals ||| 0.166667 0.251442 1.90631e-06 1.67864e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| track them ||| 1 0.038218 1.90631e-06 7.9699e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| track unused ||| 0.5 0.0471204 1.90631e-06 1.04148e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| tractors ||| 0.00803213 0.201893 3.81262e-06 6.22e-05 2.718 ||| 0-0 ||| 249 524574 +los ||| trade and ||| 0.000482625 0.0307203 1.90631e-06 9.40194e-06 2.718 ||| 0-0 ||| 2072 524574 +los ||| trade needs ||| 0.333333 0.0307203 1.90631e-06 1.48844e-07 2.718 ||| 0-0 ||| 3 524574 +los ||| trade ||| 0.01385 0.0307203 0.000566174 0.0007506 2.718 ||| 0-0 ||| 21444 524574 +los ||| traders ' ||| 0.142857 0.194825 1.90631e-06 1.1532e-06 2.718 ||| 0-0 0-1 ||| 7 524574 +los ||| traders ||| 0.00913242 0.345201 7.62523e-06 0.0002168 2.718 ||| 0-0 ||| 438 524574 +los ||| trades ||| 0.123711 0.117647 2.28757e-05 2.33e-05 2.718 ||| 0-0 ||| 97 524574 +los ||| trading venues ||| 0.0833333 0.18 1.90631e-06 1.2056e-10 2.718 ||| 0-1 ||| 12 524574 +los ||| trading ||| 0.000617856 0.0194715 3.81262e-06 6.81e-05 2.718 ||| 0-0 ||| 3237 524574 +los ||| traditional ||| 0.00330579 0.0205455 1.90631e-05 5.64e-05 2.718 ||| 0-0 ||| 3025 524574 +los ||| traffic flows can be directed and on ||| 1 0.335278 1.90631e-06 2.46773e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| traffic flows can be directed and ||| 1 0.335278 1.90631e-06 3.68813e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| traffic flows can be directed ||| 1 0.335278 1.90631e-06 2.9444e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| traffic flows can be ||| 1 0.335278 1.90631e-06 9.40703e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| traffic flows can ||| 1 0.335278 1.90631e-06 5.19069e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| traffic flows ||| 0.04 0.335278 1.90631e-06 1.74518e-08 2.718 ||| 0-1 ||| 25 524574 +los ||| traffic should now ||| 0.333333 0.0111933 1.90631e-06 4.96531e-10 2.718 ||| 0-0 ||| 3 524574 +los ||| traffic should ||| 0.142857 0.0111933 1.90631e-06 2.41046e-07 2.718 ||| 0-0 ||| 7 524574 +los ||| traffic ||| 0.00343733 0.0111933 2.4782e-05 5.44e-05 2.718 ||| 0-0 ||| 3782 524574 +los ||| traffickers , ||| 0.0217391 0.247079 1.90631e-06 1.71608e-05 2.718 ||| 0-0 ||| 46 524574 +los ||| traffickers ||| 0.0052356 0.247079 3.81262e-06 0.0001439 2.718 ||| 0-0 ||| 382 524574 +los ||| train back on the ||| 1 0.122289 1.90631e-06 3.3397e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| train ||| 0.00172414 0.006381 3.81262e-06 6.8e-06 2.718 ||| 0-0 ||| 1160 524574 +los ||| trained and ||| 0.0120482 0.0016 1.90631e-06 1.25259e-08 2.718 ||| 0-0 ||| 83 524574 +los ||| trained ||| 0.00211864 0.0016 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 472 524574 +los ||| trainees ' superiors ||| 1 0.0444479 1.90631e-06 1.48938e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| trainees ' ||| 0.5 0.0444479 1.90631e-06 2.12768e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| training objectives ||| 0.166667 0.0591921 1.90631e-06 2.75587e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| training ||| 0.000200723 0.0005249 3.81262e-06 4.9e-06 2.718 ||| 0-0 ||| 9964 524574 +los ||| trains , now aircraft , ||| 1 0.278378 1.90631e-06 6.74801e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| trains , now aircraft ||| 1 0.278378 1.90631e-06 5.65849e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| trains , now ||| 1 0.278378 1.90631e-06 4.92042e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| trains , ||| 0.0163934 0.278378 1.90631e-06 2.38867e-05 2.718 ||| 0-0 ||| 61 524574 +los ||| trains ||| 0.00526316 0.278378 5.71893e-06 0.0002003 2.718 ||| 0-0 ||| 570 524574 +los ||| trample upon the ||| 1 0.122289 1.90631e-06 7.12239e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| transactions carry the ||| 0.333333 0.122289 1.90631e-06 8.50106e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| transcends the ||| 0.0454545 0.122289 1.90631e-06 3.00269e-07 2.718 ||| 0-1 ||| 22 524574 +los ||| transfer the ||| 0.0163934 0.122289 1.90631e-06 8.7936e-06 2.718 ||| 0-1 ||| 61 524574 +los ||| transferring clubs ||| 1 0.26412 1.90631e-06 4.9472e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| transfers the package ||| 0.125 0.122289 1.90631e-06 1.18177e-10 2.718 ||| 0-1 ||| 8 524574 +los ||| transfers the ||| 0.0833333 0.122289 1.90631e-06 2.48795e-06 2.718 ||| 0-1 ||| 12 524574 +los ||| transfers ||| 0.00166667 0.0399397 3.81262e-06 5.15e-05 2.718 ||| 0-0 ||| 1200 524574 +los ||| transnational synergy between the production and distribution ||| 0.1 0.122289 1.90631e-06 3.73644e-27 2.718 ||| 0-3 ||| 10 524574 +los ||| transnational synergy between the production and ||| 0.1 0.122289 1.90631e-06 1.82265e-22 2.718 ||| 0-3 ||| 10 524574 +los ||| transnational synergy between the production ||| 0.1 0.122289 1.90631e-06 1.45511e-20 2.718 ||| 0-3 ||| 10 524574 +los ||| transnational synergy between the ||| 0.1 0.122289 1.90631e-06 1.74264e-16 2.718 ||| 0-3 ||| 10 524574 +los ||| transport and energy sectors and with regard ||| 1 0.1467 1.90631e-06 6.85976e-21 2.718 ||| 0-3 ||| 1 524574 +los ||| transport and energy sectors and with ||| 1 0.1467 1.90631e-06 1.00745e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| transport and energy sectors and ||| 1 0.1467 1.90631e-06 1.5755e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| transport and energy sectors ||| 1 0.1467 1.90631e-06 1.25779e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| transport infrastructure costs ||| 0.111111 0.214442 1.90631e-06 2.0515e-12 2.718 ||| 0-2 ||| 9 524574 +los ||| transport operators independent ||| 1 0.330195 1.90631e-06 3.43896e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| transport operators ||| 0.00943396 0.330195 1.90631e-06 1.40366e-07 2.718 ||| 0-1 ||| 106 524574 +los ||| transport to Russia where agreed deadlines are ||| 1 0.109218 1.90631e-06 1.81389e-23 2.718 ||| 0-5 ||| 1 524574 +los ||| transport to Russia where agreed deadlines ||| 1 0.109218 1.90631e-06 1.1955e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| transport ||| 0.000368053 0.0157045 1.52505e-05 0.0002732 2.718 ||| 0-0 ||| 21736 524574 +los ||| transporting the ||| 0.125 0.122289 1.90631e-06 4.71852e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| transposing the dozens ||| 0.166667 0.122289 1.90631e-06 1.92172e-12 2.718 ||| 0-1 ||| 6 524574 +los ||| transposing the ||| 0.0114943 0.122289 1.90631e-06 6.00539e-07 2.718 ||| 0-1 ||| 87 524574 +los ||| trappers were left to suffer the effects ||| 1 0.122289 1.90631e-06 1.74535e-23 2.718 ||| 0-5 ||| 1 524574 +los ||| trappers were left to suffer the ||| 1 0.122289 1.90631e-06 3.21428e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| traps ||| 0.00520833 0.0309278 1.90631e-06 1.17e-05 2.718 ||| 0-0 ||| 192 524574 +los ||| travel around the Union ||| 0.5 0.122289 1.90631e-06 1.20386e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| travel around the ||| 0.0909091 0.122289 1.90631e-06 2.15978e-09 2.718 ||| 0-2 ||| 11 524574 +los ||| travel back and forth ||| 1 0.0606223 1.90631e-06 3.73893e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| travel back and ||| 1 0.0606223 1.90631e-06 1.85095e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| travel back ||| 0.2 0.0606223 1.90631e-06 1.4777e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| travel only ; ||| 1 0.0606223 1.90631e-06 7.53208e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| travel only ||| 0.5 0.0606223 1.90631e-06 2.44548e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| travel plans only ||| 1 0.0606223 1.90631e-06 1.02955e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| travel plans ||| 0.5 0.0606223 1.90631e-06 9.24937e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| travel ||| 0.00461538 0.0606223 3.43136e-05 0.0002197 2.718 ||| 0-0 ||| 3900 524574 +los ||| travellers , ||| 0.0322581 0.372712 1.90631e-06 2.59737e-05 2.718 ||| 0-0 ||| 31 524574 +los ||| travellers ||| 0.00677201 0.372712 5.71893e-06 0.0002178 2.718 ||| 0-0 ||| 443 524574 +los ||| travelling ||| 0.00225734 0.019954 3.81262e-06 2.53e-05 2.718 ||| 0-0 ||| 886 524574 +los ||| tread the ||| 0.166667 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-1 ||| 6 524574 +los ||| treading in the ||| 1 0.122289 1.90631e-06 2.01995e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| treat as eligible ||| 1 0.0541063 1.90631e-06 9.21498e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| treat the ||| 0.015625 0.122289 3.81262e-06 7.12067e-06 2.718 ||| 0-1 ||| 128 524574 +los ||| treat them like ||| 0.111111 0.038218 1.90631e-06 5.93313e-11 2.718 ||| 0-1 ||| 9 524574 +los ||| treat them ||| 0.016129 0.038218 1.90631e-06 3.34092e-08 2.718 ||| 0-1 ||| 62 524574 +los ||| treaties ||| 0.00108401 0.135783 3.81262e-06 0.0002479 2.718 ||| 0-0 ||| 1845 524574 +los ||| treating the ||| 0.0128205 0.122289 1.90631e-06 2.01609e-06 2.718 ||| 0-1 ||| 78 524574 +los ||| treatment the ||| 1 0.122289 1.90631e-06 2.59519e-05 2.718 ||| 0-1 ||| 1 524574 +los ||| treatments , ||| 0.047619 0.157143 1.90631e-06 6.38013e-06 2.718 ||| 0-0 ||| 21 524574 +los ||| treatments ||| 0.00682594 0.157143 3.81262e-06 5.35e-05 2.718 ||| 0-0 ||| 293 524574 +los ||| treaty 's ||| 0.333333 0.0349814 1.90631e-06 1.61145e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| trees ? only ||| 1 0.18136 1.90631e-06 1.3316e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| trees ? ||| 1 0.18136 1.90631e-06 1.1963e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| trees ||| 0.0150943 0.18136 7.62523e-06 7e-05 2.718 ||| 0-0 ||| 265 524574 +los ||| trend whereby the ||| 0.333333 0.122289 1.90631e-06 2.34879e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| trial those ||| 0.333333 0.284705 1.90631e-06 2.1039e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| trials ||| 0.00159236 0.15302 1.90631e-06 0.0001108 2.718 ||| 0-0 ||| 628 524574 +los ||| triggered by ||| 0.00990099 0.0062464 1.90631e-06 6.96514e-09 2.718 ||| 0-1 ||| 101 524574 +los ||| trip to the ||| 0.0454545 0.122289 1.90631e-06 2.32509e-07 2.718 ||| 0-2 ||| 22 524574 +los ||| trips ||| 0.00657895 0.107527 1.90631e-06 1.94e-05 2.718 ||| 0-0 ||| 152 524574 +los ||| tropical ||| 0.00330033 0.0086207 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 303 524574 +los ||| trouble which risks ||| 1 0.125803 1.90631e-06 7.96383e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| trouble-free ||| 0.111111 0.0625 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| true , as the ||| 0.166667 0.122289 1.90631e-06 8.43563e-08 2.718 ||| 0-3 ||| 6 524574 +los ||| true , the truth ||| 1 0.122289 1.90631e-06 2.02533e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| true , the ||| 0.0227273 0.122289 1.90631e-06 8.26666e-06 2.718 ||| 0-2 ||| 44 524574 +los ||| true to the ||| 0.0322581 0.122289 1.90631e-06 6.15959e-06 2.718 ||| 0-2 ||| 31 524574 +los ||| true what the ||| 1 0.122289 1.90631e-06 9.7262e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| try our ||| 0.125 0.0248369 1.90631e-06 5.49949e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| trying to identify those ||| 0.5 0.284705 1.90631e-06 2.95699e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| tuna ||| 0.00101937 0.0009124 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 981 524574 +los ||| tune of the ||| 0.111111 0.122289 1.90631e-06 6.97261e-07 2.718 ||| 0-2 ||| 9 524574 +los ||| tunnels forming part ||| 0.5 0.239796 1.90631e-06 4.90352e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| tunnels forming ||| 0.5 0.239796 1.90631e-06 4.113e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| tunnels ||| 0.0075188 0.239796 1.90631e-06 4.57e-05 2.718 ||| 0-0 ||| 133 524574 +los ||| turn next to the ||| 1 0.122289 1.90631e-06 8.82768e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| turn the Turk ||| 0.5 0.122289 1.90631e-06 3.84688e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| turn the ||| 0.00816326 0.122289 3.81262e-06 9.6172e-05 2.718 ||| 0-1 ||| 245 524574 +los ||| turn their attention to ||| 0.333333 0.0236713 1.90631e-06 1.19089e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| turn their attention ||| 0.25 0.0236713 1.90631e-06 1.34021e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| turn their ||| 0.0196078 0.0236713 1.90631e-06 5.12902e-07 2.718 ||| 0-1 ||| 51 524574 +los ||| turn to the ||| 0.00369004 0.122289 1.90631e-06 8.54567e-06 2.718 ||| 0-2 ||| 271 524574 +los ||| turned against each other and ||| 0.5 0.0497499 1.90631e-06 1.91123e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| turned against each other ||| 0.5 0.0497499 1.90631e-06 1.52582e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| turned against each ||| 0.5 0.0497499 1.90631e-06 1.17779e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| turning a blind ||| 0.0243902 0.103393 1.90631e-06 2.75706e-10 2.718 ||| 0-2 ||| 41 524574 +los ||| turning now to the ||| 0.0126582 0.122289 1.90631e-06 3.92579e-09 2.718 ||| 0-3 ||| 79 524574 +los ||| turning the clock back to ||| 0.5 0.122289 1.90631e-06 1.01266e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| turning the clock back ||| 0.1 0.122289 1.90631e-06 1.13964e-13 2.718 ||| 0-1 ||| 10 524574 +los ||| turning the clock ||| 0.333333 0.122289 1.90631e-06 1.69438e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| turning the ||| 0.00763359 0.122289 1.90631e-06 2.14478e-05 2.718 ||| 0-1 ||| 131 524574 +los ||| turns ||| 0.00364964 0.0017637 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 274 524574 +los ||| twin problems ||| 0.25 0.106249 1.90631e-06 6.7463e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| two amendments have the ||| 1 0.122289 1.90631e-06 9.25356e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| two countries ||| 0.00129534 0.0957208 1.90631e-06 1.97068e-06 2.718 ||| 0-1 ||| 772 524574 +los ||| two governments ||| 0.0263158 0.273393 1.90631e-06 8.41466e-07 2.718 ||| 0-1 ||| 38 524574 +los ||| two instruments which do not require the ||| 1 0.112873 1.90631e-06 6.3683e-20 2.718 ||| 0-1 ||| 1 524574 +los ||| two instruments which do not require ||| 1 0.112873 1.90631e-06 1.03732e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| two instruments which do not ||| 1 0.112873 1.90631e-06 2.2165e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| two instruments which do ||| 1 0.112873 1.90631e-06 6.49218e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| two instruments which ||| 0.5 0.112873 1.90631e-06 1.88984e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| two instruments ||| 0.0188679 0.112873 1.90631e-06 2.22476e-07 2.718 ||| 0-1 ||| 53 524574 +los ||| two markets ||| 0.1 0.239993 1.90631e-06 6.7114e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| two types ||| 0.00757576 0.0437601 1.90631e-06 2.4822e-08 2.718 ||| 0-1 ||| 132 524574 +los ||| two variants ||| 0.5 0.03125 1.90631e-06 2.364e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| two ||| 0.000288979 0.0004357 2.09694e-05 1.56e-05 2.718 ||| 0-0 ||| 38065 524574 +los ||| two-stroke ||| 0.166667 0.0666667 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 6 524574 +los ||| types , enabling the models already ||| 1 0.133333 1.90631e-06 9.35086e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| types , enabling the models ||| 1 0.133333 1.90631e-06 2.01919e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| types of ||| 0.00321716 0.0437601 1.14379e-05 5.70822e-06 2.718 ||| 0-0 ||| 1865 524574 +los ||| types ||| 0.00358584 0.0437601 1.52505e-05 0.000105 2.718 ||| 0-0 ||| 2231 524574 +los ||| tyres cause a ||| 1 0.304598 1.90631e-06 8.25797e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| tyres cause ||| 1 0.304598 1.90631e-06 1.86302e-08 2.718 ||| 0-0 ||| 1 524574 +los ||| tyres ||| 0.00796813 0.304598 3.81262e-06 0.0001031 2.718 ||| 0-0 ||| 251 524574 +los ||| ultimately compel manufacturers ||| 1 0.357046 1.90631e-06 6.89962e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| ultimately every bit ||| 0.5 0.144232 1.90631e-06 1.58978e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| ultimately every ||| 0.5 0.144232 1.90631e-06 2.0073e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| ultimately the ||| 0.0227273 0.122289 3.81262e-06 2.63808e-05 2.718 ||| 0-1 ||| 88 524574 +los ||| ultimately these could ||| 0.166667 0.0240362 1.90631e-06 1.06598e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| ultimately these ||| 0.142857 0.0240362 1.90631e-06 1.49906e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| unacceptable to the ||| 0.0185185 0.122289 1.90631e-06 9.18602e-07 2.718 ||| 0-2 ||| 54 524574 +los ||| under any ||| 0.0022831 0.0178119 1.90631e-06 3.31388e-07 2.718 ||| 0-1 ||| 438 524574 +los ||| under the auspices ||| 0.00277778 0.122289 1.90631e-06 5.54074e-10 2.718 ||| 0-1 ||| 360 524574 +los ||| under the constraint ||| 0.333333 0.122289 1.90631e-06 1.693e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| under the rule of ||| 0.0105263 0.122289 1.90631e-06 6.80248e-10 2.718 ||| 0-1 ||| 95 524574 +los ||| under the rule ||| 0.00934579 0.122289 1.90631e-06 1.25128e-08 2.718 ||| 0-1 ||| 107 524574 +los ||| under the terms of ||| 0.00657895 0.122289 1.90631e-06 9.18377e-09 2.718 ||| 0-1 ||| 152 524574 +los ||| under the terms ||| 0.00413223 0.122289 1.90631e-06 1.68931e-07 2.718 ||| 0-1 ||| 242 524574 +los ||| under the various ||| 0.0204082 0.122289 1.90631e-06 2.37636e-08 2.718 ||| 0-1 ||| 49 524574 +los ||| under the ||| 0.00222444 0.122289 5.5283e-05 0.00015391 2.718 ||| 0-1 ||| 13037 524574 +los ||| under-age ||| 0.0175439 0.109091 1.90631e-06 5.8e-06 2.718 ||| 0-0 ||| 57 524574 +los ||| under-represented ||| 0.00961538 0.027933 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 104 524574 +los ||| underdeveloped . many Member States ||| 1 0.0494297 1.90631e-06 3.22184e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| underdeveloped . many Member ||| 1 0.0494297 1.90631e-06 6.75155e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| underdeveloped . many ||| 1 0.0494297 1.90631e-06 1.31022e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| underdeveloped . ||| 0.05 0.0494297 1.90631e-06 3.81654e-08 2.718 ||| 0-0 ||| 20 524574 +los ||| underdeveloped ||| 0.00460829 0.0494297 1.90631e-06 1.26e-05 2.718 ||| 0-0 ||| 217 524574 +los ||| underestimation of the ||| 0.333333 0.122289 1.90631e-06 9.32791e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| underfoot ||| 0.722222 0.125 2.4782e-05 1.56e-05 2.718 ||| 0-0 ||| 18 524574 +los ||| undergraduate , ||| 0.2 0.142857 1.90631e-06 2.26584e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| undergraduate ||| 0.181818 0.142857 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 11 524574 +los ||| underground ||| 0.00411523 0.0035088 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 243 524574 +los ||| underline the ||| 0.00364964 0.122289 1.90631e-06 2.14478e-06 2.718 ||| 0-1 ||| 274 524574 +los ||| underlines the fact that ||| 0.0454545 0.122289 1.90631e-06 4.65015e-11 2.718 ||| 0-1 ||| 22 524574 +los ||| underlines the fact ||| 0.027027 0.122289 1.90631e-06 2.76439e-09 2.718 ||| 0-1 ||| 37 524574 +los ||| underlines the ||| 0.00315457 0.122289 1.90631e-06 9.43704e-07 2.718 ||| 0-1 ||| 317 524574 +los ||| underlying ||| 0.000656599 0.0020718 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 1523 524574 +los ||| undermine those ||| 0.166667 0.284705 1.90631e-06 1.87013e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| undermined their ||| 1 0.0236713 1.90631e-06 3.29429e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| undermines the ||| 0.00444444 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-1 ||| 225 524574 +los ||| undermining the ||| 0.0034965 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-1 ||| 286 524574 +los ||| underpinned by the ||| 0.0357143 0.122289 1.90631e-06 5.63016e-09 2.718 ||| 0-2 ||| 28 524574 +los ||| understand all the ||| 0.2 0.122289 1.90631e-06 1.58308e-07 2.718 ||| 0-2 ||| 5 524574 +los ||| understand and that they should be accessible ||| 1 0.0072404 1.90631e-06 1.40628e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| understand and that they should be ||| 1 0.0072404 1.90631e-06 1.08175e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| understand and that they should ||| 1 0.0072404 1.90631e-06 5.96899e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| understand and that they ||| 1 0.0072404 1.90631e-06 1.3471e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| understand the ||| 0.00436205 0.122289 7.62523e-06 3.35015e-05 2.718 ||| 0-1 ||| 917 524574 +los ||| understand why the ||| 0.00847458 0.122289 1.90631e-06 8.25812e-09 2.718 ||| 0-2 ||| 118 524574 +los ||| understandably , their ||| 1 0.0236713 1.90631e-06 6.00202e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| understood by the ||| 0.0208333 0.122289 1.90631e-06 5.26983e-08 2.718 ||| 0-2 ||| 48 524574 +los ||| undertaken , as is the case now ||| 1 0.122289 1.90631e-06 1.71267e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| undertaken , as is the case ||| 1 0.122289 1.90631e-06 8.31433e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| undertaken , as is the ||| 1 0.122289 1.90631e-06 7.77112e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| undertaken by ||| 0.0022779 0.0062464 1.90631e-06 7.69405e-08 2.718 ||| 0-1 ||| 439 524574 +los ||| undertaking the ||| 0.0294118 0.122289 1.90631e-06 1.28258e-05 2.718 ||| 0-1 ||| 34 524574 +los ||| undertakings ||| 0.00163934 0.0278129 5.71893e-06 6.42e-05 2.718 ||| 0-0 ||| 1830 524574 +los ||| undoubtedly the case . ||| 0.2 0.122289 1.90631e-06 5.15738e-11 2.718 ||| 0-1 ||| 5 524574 +los ||| undoubtedly the case ||| 0.1 0.122289 1.90631e-06 1.70267e-08 2.718 ||| 0-1 ||| 10 524574 +los ||| undoubtedly the key ||| 1 0.122289 1.90631e-06 1.15697e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| undoubtedly the ||| 0.015873 0.122289 3.81262e-06 1.59143e-05 2.718 ||| 0-1 ||| 126 524574 +los ||| unemployed , including ||| 1 0.0100771 1.90631e-06 2.05428e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| unemployed , ||| 0.00373134 0.0100771 1.90631e-06 1.9677e-06 2.718 ||| 0-0 ||| 268 524574 +los ||| unemployed ||| 0.00241984 0.0100771 7.62523e-06 1.65e-05 2.718 ||| 0-0 ||| 1653 524574 +los ||| unfair ||| 0.000423729 0.0004239 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 2360 524574 +los ||| unfortunately , the opposite is true ||| 1 0.122289 1.90631e-06 3.39994e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| unfortunately , the opposite is ||| 1 0.122289 1.90631e-06 2.10392e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| unfortunately , the opposite ||| 1 0.122289 1.90631e-06 6.71298e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| unfortunately , the ||| 0.00295567 0.122289 5.71893e-06 3.1665e-06 2.718 ||| 0-2 ||| 1015 524574 +los ||| unfortunately receiving such ||| 1 0.0071708 1.90631e-06 1.37029e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| unfortunately receiving ||| 1 0.0071708 1.90631e-06 6.6233e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| uniform assessment criteria ||| 0.125 0.0666739 1.90631e-06 2.24423e-13 2.718 ||| 0-2 ||| 8 524574 +los ||| unilateral ||| 0.000853242 0.0008734 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1172 524574 +los ||| union members ||| 0.2 0.154615 1.90631e-06 4.56642e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| unions ||| 0.002849 0.0560876 3.81262e-06 7.97e-05 2.718 ||| 0-0 ||| 702 524574 +los ||| unit labour ||| 0.0833333 0.0142871 1.90631e-06 1.6541e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| united messages - ||| 0.5 0.063278 1.90631e-06 4.18292e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| united messages ||| 0.5 0.063278 1.90631e-06 1.10891e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| universal mobile telecommunications systems ( ||| 1 0.0620985 1.90631e-06 1.32614e-22 2.718 ||| 0-1 ||| 1 524574 +los ||| universal mobile telecommunications systems ||| 1 0.0620985 1.90631e-06 1.37509e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| universal mobile telecommunications ||| 0.5 0.0620985 1.90631e-06 2.61922e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| universal mobile ||| 1 0.0620985 1.90631e-06 7.2756e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| universal ||| 0.000896459 0.0027039 3.81262e-06 5.8e-06 2.718 ||| 0-0 ||| 2231 524574 +los ||| university ||| 0.00361446 0.010568 5.71893e-06 7.8e-06 2.718 ||| 0-0 ||| 830 524574 +los ||| unjustified ||| 0.00583658 0.0049587 5.71893e-06 2.9e-06 2.718 ||| 0-0 ||| 514 524574 +los ||| unladen ||| 0.1 0.133333 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| unless the ||| 0.00498753 0.122289 3.81262e-06 7.42094e-06 2.718 ||| 0-1 ||| 401 524574 +los ||| unpaid commitments ( ||| 1 0.115775 1.90631e-06 2.25932e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| unpaid commitments ||| 0.153846 0.115775 3.81262e-06 2.34272e-09 2.718 ||| 0-1 ||| 13 524574 +los ||| unquestionably the ||| 0.0909091 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| unresolved ||| 0.0015625 0.0086042 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 640 524574 +los ||| unsafe ||| 0.00332226 0.0072993 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 301 524574 +los ||| unsuccessful ||| 0.0106383 0.0092879 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 188 524574 +los ||| until the ||| 0.00303721 0.122289 7.62523e-06 2.08473e-05 2.718 ||| 0-1 ||| 1317 524574 +los ||| unused appropriations ||| 0.037037 0.189378 1.90631e-06 1.27926e-09 2.718 ||| 0-1 ||| 27 524574 +los ||| unused funding that was ||| 0.25 0.031089 1.90631e-06 3.17319e-14 2.718 ||| 0-1 ||| 4 524574 +los ||| unused funding that ||| 0.25 0.031089 1.90631e-06 1.01283e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| unused funding ||| 0.166667 0.031089 1.90631e-06 6.021e-10 2.718 ||| 0-1 ||| 6 524574 +los ||| unused ||| 0.0159744 0.0471204 9.53154e-06 2.63e-05 2.718 ||| 0-0 ||| 313 524574 +los ||| unwanted ||| 0.012931 0.0123457 5.71893e-06 4.9e-06 2.718 ||| 0-0 ||| 232 524574 +los ||| up , going through the ||| 1 0.122289 1.90631e-06 6.87258e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| up , ||| 0.00535714 0.0031618 5.71893e-06 2.5282e-05 2.718 ||| 0-0 ||| 560 524574 +los ||| up . ||| 0.00154083 0.0031618 1.90631e-06 6.42148e-07 2.718 ||| 0-0 ||| 649 524574 +los ||| up a report ||| 0.0454545 0.0031618 1.90631e-06 3.85186e-09 2.718 ||| 0-0 ||| 22 524574 +los ||| up a ||| 0.0014881 0.0031618 1.90631e-06 9.39707e-06 2.718 ||| 0-0 ||| 672 524574 +los ||| up against the ||| 0.0277778 0.122289 1.90631e-06 3.49061e-07 2.718 ||| 0-2 ||| 36 524574 +los ||| up along the lines ||| 1 0.122289 1.90631e-06 2.3231e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| up along the ||| 0.333333 0.122289 1.90631e-06 2.55286e-07 2.718 ||| 0-2 ||| 3 524574 +los ||| up any ||| 0.05 0.0178119 1.90631e-06 3.14994e-06 2.718 ||| 0-1 ||| 20 524574 +los ||| up behind those ||| 1 0.284705 1.90631e-06 5.10247e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| up being the ||| 0.142857 0.122289 1.90631e-06 4.16328e-06 2.718 ||| 0-2 ||| 7 524574 +los ||| up by individual Member ||| 1 0.0062464 1.90631e-06 4.02521e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| up by individual ||| 1 0.0062464 1.90631e-06 7.8114e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| up by the ||| 0.00980392 0.122289 3.81262e-06 7.68066e-06 2.718 ||| 0-2 ||| 204 524574 +los ||| up by ||| 0.00535714 0.0062464 5.71893e-06 5.52433e-06 2.718 ||| 0-1 ||| 560 524574 +los ||| up civil society ||| 1 0.043844 1.90631e-06 1.04066e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| up civil ||| 1 0.043844 1.90631e-06 1.79733e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| up doctors ' ||| 1 0.309826 1.90631e-06 4.45394e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| up doctors ||| 1 0.309826 1.90631e-06 1.29667e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| up farming ||| 0.1 0.0110426 1.90631e-06 1.42559e-07 2.718 ||| 0-1 ||| 10 524574 +los ||| up for the ||| 0.01 0.122289 1.90631e-06 1.12438e-05 2.718 ||| 0-2 ||| 100 524574 +los ||| up for ||| 0.00178891 0.0015353 1.90631e-06 3.00738e-06 2.718 ||| 0-1 ||| 559 524574 +los ||| up in the ||| 0.00896861 0.122289 3.81262e-06 3.13138e-05 2.718 ||| 0-2 ||| 223 524574 +los ||| up living ||| 0.5 0.0011008 1.90631e-06 2.31914e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| up my ||| 0.025641 0.0086409 1.90631e-06 2.35086e-06 2.718 ||| 0-1 ||| 39 524574 +los ||| up new problems ||| 0.5 0.106249 1.90631e-06 6.25092e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| up of the ||| 0.0566038 0.122289 5.71893e-06 7.95321e-05 2.718 ||| 0-2 ||| 53 524574 +los ||| up on the ||| 0.00840336 0.122289 1.90631e-06 9.78863e-06 2.718 ||| 0-2 ||| 119 524574 +los ||| up on these ||| 0.333333 0.0240362 1.90631e-06 5.56229e-08 2.718 ||| 0-2 ||| 3 524574 +los ||| up on ||| 0.00297619 0.0019266 1.90631e-06 7.56416e-08 2.718 ||| 0-0 0-1 ||| 336 524574 +los ||| up our sleeves ||| 0.125 0.0031618 1.90631e-06 2.04703e-13 2.718 ||| 0-0 ||| 8 524574 +los ||| up our ||| 0.0377358 0.0248369 7.62523e-06 1.21792e-05 2.718 ||| 0-1 ||| 106 524574 +los ||| up out of ||| 0.111111 0.0031618 1.90631e-06 4.4146e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| up out ||| 0.1 0.0031618 1.90631e-06 8.12045e-07 2.718 ||| 0-0 ||| 10 524574 +los ||| up serving ||| 1 0.0031618 1.90631e-06 2.3744e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| up the day , but also includes ||| 1 0.122289 1.90631e-06 4.48771e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| up the day , but also ||| 1 0.122289 1.90631e-06 1.54217e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| up the day , but ||| 1 0.122289 1.90631e-06 3.05464e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| up the day , ||| 1 0.122289 1.90631e-06 4.46978e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| up the day ||| 0.111111 0.122289 1.90631e-06 3.74809e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| up the full ||| 0.5 0.122289 1.90631e-06 2.68452e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| up the market to competition on the ||| 1 0.122289 1.90631e-06 4.38072e-16 2.718 ||| 0-6 ||| 1 524574 +los ||| up the operation ||| 1 0.122289 1.90631e-06 8.32422e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| up the payment ||| 0.2 0.122289 1.90631e-06 3.68665e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| up the pros and cons , ||| 1 0.122289 1.90631e-06 2.14162e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| up the pros and cons ||| 0.25 0.122289 1.90631e-06 1.79583e-17 2.718 ||| 0-1 ||| 4 524574 +los ||| up the pros and ||| 0.25 0.122289 1.90631e-06 2.56548e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| up the pros ||| 0.25 0.122289 1.90631e-06 2.04814e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| up the rate ||| 0.333333 0.122289 1.90631e-06 1.46881e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| up the report ||| 0.111111 0.122289 1.90631e-06 5.99665e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| up the whole ||| 0.111111 0.122289 1.90631e-06 8.27594e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| up the ||| 0.0468637 0.122289 0.00012391 0.00146296 2.718 ||| 0-1 ||| 1387 524574 +los ||| up their vessels ||| 1 0.261943 1.90631e-06 3.13996e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| up to EUR ||| 0.0526316 0.0343255 1.90631e-06 1.72951e-07 2.718 ||| 0-2 ||| 19 524574 +los ||| up to each ||| 0.0222222 0.0497499 1.90631e-06 2.66654e-07 2.718 ||| 0-2 ||| 45 524574 +los ||| up to economic ||| 0.5 0.0006735 1.90631e-06 9.12183e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| up to individual ||| 0.0526316 0.110351 1.90631e-06 3.89511e-07 2.718 ||| 0-2 ||| 19 524574 +los ||| up to the candidate states . ||| 1 0.0335599 1.90631e-06 6.5093e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| up to the candidate states ||| 1 0.0335599 1.90631e-06 2.14899e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| up to the candidate ||| 1 0.0335599 1.90631e-06 2.8577e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| up to the latter ||| 1 0.122289 1.90631e-06 1.24926e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| up to the ||| 0.0362694 0.122289 9.34091e-05 0.000129996 2.718 ||| 0-2 ||| 1351 524574 +los ||| up to them ||| 0.0232558 0.038218 1.90631e-06 6.0992e-07 2.718 ||| 0-2 ||| 43 524574 +los ||| up to ||| 0.00180375 0.0031618 1.90631e-05 1.88379e-05 2.718 ||| 0-0 ||| 5544 524574 +los ||| up very ||| 0.0666667 0.0031618 1.90631e-06 7.37654e-07 2.718 ||| 0-0 ||| 15 524574 +los ||| up with the fact that ||| 0.5 0.122289 1.90631e-06 4.60966e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| up with the fact ||| 0.5 0.122289 1.90631e-06 2.74032e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| up with the ||| 0.0211864 0.122289 9.53154e-06 9.35487e-06 2.718 ||| 0-2 ||| 236 524574 +los ||| up ||| 0.0062518 0.0031618 0.00012391 0.000212 2.718 ||| 0-0 ||| 10397 524574 +los ||| upgraded by the ||| 0.2 0.122289 1.90631e-06 6.53098e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| upheld ||| 0.00204082 0.0034722 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 490 524574 +los ||| uphold the principle that it is first ||| 1 0.122289 1.90631e-06 3.45211e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| uphold the principle that it is ||| 1 0.122289 1.90631e-06 6.4118e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| uphold the principle that it ||| 1 0.122289 1.90631e-06 2.04581e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| uphold the principle that ||| 0.5 0.122289 1.90631e-06 1.15042e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| uphold the principle ||| 0.0454545 0.122289 1.90631e-06 6.83894e-10 2.718 ||| 0-1 ||| 22 524574 +los ||| uphold the ||| 0.0169492 0.122289 7.62523e-06 4.46115e-06 2.718 ||| 0-1 ||| 236 524574 +los ||| upholds the ||| 0.0188679 0.122289 1.90631e-06 1.71583e-07 2.718 ||| 0-1 ||| 53 524574 +los ||| upon Member States ||| 0.0416667 0.224121 1.90631e-06 3.44526e-09 2.718 ||| 0-2 ||| 24 524574 +los ||| upon further ||| 0.142857 0.0017644 1.90631e-06 9.37602e-09 2.718 ||| 0-0 ||| 7 524574 +los ||| upon it by the ||| 1 0.122289 1.90631e-06 9.4996e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| upon other people ’ s ||| 1 0.0341558 1.90631e-06 7.42613e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| upon request , the ||| 1 0.122289 1.90631e-06 9.30676e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| upon the various ||| 1 0.0451594 1.90631e-06 1.31068e-09 2.718 ||| 0-0 0-1 0-2 ||| 1 524574 +los ||| upon the ||| 0.00814664 0.122289 1.52505e-05 0.000101748 2.718 ||| 0-1 ||| 982 524574 +los ||| upon ||| 0.00179166 0.0017644 1.33442e-05 1.94e-05 2.718 ||| 0-0 ||| 3907 524574 +los ||| upside down ||| 0.0645161 0.04 3.81262e-06 2.72259e-09 2.718 ||| 0-0 ||| 31 524574 +los ||| upside ||| 0.0638298 0.04 5.71893e-06 3.9e-06 2.718 ||| 0-0 ||| 47 524574 +los ||| urban ||| 0.00293083 0.0078805 9.53154e-06 1.85e-05 2.718 ||| 0-0 ||| 1706 524574 +los ||| urge the ||| 0.00292398 0.122289 3.81262e-06 1.40269e-05 2.718 ||| 0-1 ||| 684 524574 +los ||| urgent debates ||| 0.0322581 0.122803 1.90631e-06 1.72144e-08 2.718 ||| 0-1 ||| 31 524574 +los ||| urgent ||| 0.000661667 0.0005604 5.71893e-06 2.9e-06 2.718 ||| 0-0 ||| 4534 524574 +los ||| us ' ||| 0.0263158 0.0444479 1.90631e-06 1.5331e-05 2.718 ||| 0-1 ||| 38 524574 +los ||| us , and we from them , ||| 0.5 0.038218 1.90631e-06 1.88912e-14 2.718 ||| 0-5 ||| 2 524574 +los ||| us , and we from them ||| 0.5 0.038218 1.90631e-06 1.5841e-13 2.718 ||| 0-5 ||| 2 524574 +los ||| us , given ||| 0.5 0.0009954 1.90631e-06 6.28566e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| us , the ||| 0.0139373 0.122289 7.62523e-06 0.000147439 2.718 ||| 0-2 ||| 287 524574 +los ||| us , ||| 0.000296824 0.0009954 1.90631e-06 9.15876e-06 2.718 ||| 0-0 ||| 3369 524574 +los ||| us Europeans ||| 0.0103093 0.354859 1.90631e-06 7.86869e-06 2.718 ||| 0-1 ||| 97 524574 +los ||| us a thorough presentation of the ||| 1 0.122289 1.90631e-06 8.28466e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| us about the ||| 0.0769231 0.122289 1.90631e-06 1.74855e-06 2.718 ||| 0-2 ||| 13 524574 +los ||| us all as ||| 0.166667 0.00936125 1.90631e-06 2.76456e-09 2.718 ||| 0-1 0-2 ||| 6 524574 +los ||| us and the ||| 0.00909091 0.122289 1.90631e-06 1.54862e-05 2.718 ||| 0-2 ||| 110 524574 +los ||| us any ||| 0.04 0.0178119 1.90631e-06 2.662e-06 2.718 ||| 0-1 ||| 25 524574 +los ||| us as ||| 0.00293255 0.0009297 1.90631e-06 1.02837e-06 2.718 ||| 0-1 ||| 341 524574 +los ||| us by the citizens ||| 1 0.293572 1.90631e-06 1.4062e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| us every reason ||| 1 0.144232 1.90631e-06 2.20035e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| us every ||| 0.166667 0.144232 1.90631e-06 9.40721e-06 2.718 ||| 0-1 ||| 6 524574 +los ||| us from raising the ||| 1 0.122289 1.90631e-06 4.5793e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| us have the ||| 0.1 0.122289 1.90631e-06 1.47864e-05 2.718 ||| 0-2 ||| 10 524574 +los ||| us in the ||| 0.00653595 0.122289 5.71893e-06 2.64632e-05 2.718 ||| 0-2 ||| 459 524574 +los ||| us in this ||| 0.00302115 0.0009954 1.90631e-06 1.06217e-08 2.718 ||| 0-0 ||| 331 524574 +los ||| us in ||| 0.00259909 0.0001268 7.62523e-06 3.98032e-07 2.718 ||| 0-1 ||| 1539 524574 +los ||| us is the ||| 0.02 0.122289 1.90631e-06 3.87482e-05 2.718 ||| 0-2 ||| 50 524574 +los ||| us keep our ||| 0.25 0.0248369 1.90631e-06 1.60359e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| us of the ||| 0.0588235 0.122289 3.81262e-06 6.72123e-05 2.718 ||| 0-2 ||| 34 524574 +los ||| us say the ||| 1 0.122289 1.90631e-06 1.18169e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| us that the ||| 0.0121951 0.122289 1.90631e-06 2.07972e-05 2.718 ||| 0-2 ||| 82 524574 +los ||| us the ||| 0.0342466 0.122289 1.90631e-05 0.00123634 2.718 ||| 0-1 ||| 292 524574 +los ||| us their ||| 0.0909091 0.0236713 1.90631e-06 6.59361e-06 2.718 ||| 0-1 ||| 11 524574 +los ||| us to include ||| 0.125 0.0092135 1.90631e-06 2.36643e-08 2.718 ||| 0-2 ||| 8 524574 +los ||| us to insist that the ||| 1 0.122289 1.90631e-06 3.91776e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| us to the ||| 0.0444444 0.122289 3.81262e-06 0.000109859 2.718 ||| 0-2 ||| 45 524574 +los ||| us to ||| 0.000577034 0.0009954 3.81262e-06 6.82431e-06 2.718 ||| 0-0 ||| 3466 524574 +los ||| us what the ||| 0.142857 0.064205 1.90631e-06 1.18528e-06 2.718 ||| 0-1 0-2 ||| 7 524574 +los ||| us who ||| 0.00186916 0.0016142 1.90631e-06 3.38947e-07 2.718 ||| 0-1 ||| 535 524574 +los ||| us ||| 0.00113485 0.0009954 9.91281e-05 7.68e-05 2.718 ||| 0-0 ||| 45821 524574 +los ||| use a popular expression ||| 0.5 0.0171607 1.90631e-06 1.87707e-14 2.718 ||| 0-2 ||| 2 524574 +los ||| use a popular ||| 0.5 0.0171607 1.90631e-06 4.61196e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| use and dependency , reducing the supply ||| 1 0.122289 1.90631e-06 2.98744e-22 2.718 ||| 0-5 ||| 1 524574 +los ||| use and dependency , reducing the ||| 1 0.122289 1.90631e-06 5.80086e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| use can be reduced ||| 0.5 0.0018067 1.90631e-06 2.04419e-13 2.718 ||| 0-3 ||| 2 524574 +los ||| use of brominated ||| 1 0.0943227 1.90631e-06 2.18709e-11 2.718 ||| 0-1 0-2 ||| 1 524574 +los ||| use of energy resources ||| 0.333333 0.21958 1.90631e-06 1.13911e-11 2.718 ||| 0-3 ||| 3 524574 +los ||| use of genetically modified ||| 1 0.0732984 1.90631e-06 3.23763e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| use of the ||| 0.00250784 0.122289 7.62523e-06 1.13381e-05 2.718 ||| 0-2 ||| 1595 524574 +los ||| use of ||| 0.000189573 0.0019787 3.81262e-06 1.60816e-06 2.718 ||| 0-1 ||| 10550 524574 +los ||| use policy areas , ||| 1 0.0243257 1.90631e-06 1.38722e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| use policy areas ||| 1 0.0243257 1.90631e-06 1.16324e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| use precisely the ||| 0.5 0.122289 1.90631e-06 2.05639e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| use the updates ||| 1 0.122289 1.90631e-06 1.45991e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| use the word ||| 0.047619 0.122289 3.81262e-06 2.12313e-08 2.718 ||| 0-1 ||| 42 524574 +los ||| use the ||| 0.00965961 0.122289 4.00325e-05 0.000208559 2.718 ||| 0-1 ||| 2174 524574 +los ||| use those reserves ||| 1 0.284705 1.90631e-06 6.16996e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| use those ||| 0.047619 0.284705 3.81262e-06 8.11837e-06 2.718 ||| 0-1 ||| 42 524574 +los ||| use throughout the ||| 0.333333 0.122289 1.90631e-06 8.32149e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| used by the ||| 0.00664452 0.122289 3.81262e-06 9.66135e-07 2.718 ||| 0-2 ||| 301 524574 +los ||| used in food ||| 0.2 0.123536 1.90631e-06 2.02392e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| used to top up the ||| 1 0.122289 1.90631e-06 3.85358e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| used ||| 7.53296e-05 5.97e-05 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 13275 524574 +los ||| user ||| 0.00675676 0.0830769 7.62523e-06 5.25e-05 2.718 ||| 0-0 ||| 592 524574 +los ||| users , are ||| 0.333333 0.373264 1.90631e-06 2.26937e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| users , ||| 0.00578035 0.373264 1.90631e-06 0.000149569 2.718 ||| 0-0 ||| 173 524574 +los ||| users ||| 0.00808855 0.373264 3.62199e-05 0.0012542 2.718 ||| 0-0 ||| 2349 524574 +los ||| uses the ||| 0.00840336 0.122289 1.90631e-06 7.8928e-06 2.718 ||| 0-1 ||| 119 524574 +los ||| using any ||| 0.0384615 0.0178119 1.90631e-06 7.17637e-08 2.718 ||| 0-1 ||| 26 524574 +los ||| using each ||| 0.25 0.0497499 1.90631e-06 6.83682e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| using the ||| 0.00199867 0.122289 5.71893e-06 3.33299e-05 2.718 ||| 0-1 ||| 1501 524574 +los ||| using them to the ||| 1 0.122289 1.90631e-06 7.94429e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| usually enjoy on Fridays ||| 0.142857 0.278761 1.90631e-06 2.47305e-16 2.718 ||| 0-3 ||| 7 524574 +los ||| usually heard to make them heard ||| 1 0.038218 1.90631e-06 3.0216e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| usually heard to make them ||| 1 0.038218 1.90631e-06 3.81515e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| utilise the ||| 0.0142857 0.122289 1.90631e-06 7.72121e-07 2.718 ||| 0-1 ||| 70 524574 +los ||| utilizing EU citizens money ' ||| 1 0.0444479 1.90631e-06 1.87506e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| valuable commodity ||| 0.0588235 0.039823 1.90631e-06 3.7872e-10 2.718 ||| 0-1 ||| 17 524574 +los ||| value for ||| 0.00342466 0.0015353 1.90631e-06 7.7422e-08 2.718 ||| 0-1 ||| 292 524574 +los ||| value the ||| 0.016129 0.122289 1.90631e-06 3.76624e-05 2.718 ||| 0-1 ||| 62 524574 +los ||| values , ||| 0.0015456 0.161479 1.90631e-06 0.00019491 2.718 ||| 0-0 ||| 647 524574 +los ||| values as the EU ||| 1 0.161479 1.90631e-06 5.06624e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| values as the ||| 0.111111 0.161479 1.90631e-06 1.0239e-06 2.718 ||| 0-0 ||| 9 524574 +los ||| values as ||| 0.0357143 0.161479 1.90631e-06 1.66781e-05 2.718 ||| 0-0 ||| 28 524574 +los ||| values ||| 0.0020049 0.161479 3.43136e-05 0.0016344 2.718 ||| 0-0 ||| 8978 524574 +los ||| van ||| 0.000570451 0.0010881 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 1753 524574 +los ||| variants ||| 0.037037 0.03125 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 27 524574 +los ||| various individual ||| 0.142857 0.110351 1.90631e-06 1.9845e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| various members of the ||| 0.0555556 0.062134 1.90631e-06 3.23121e-11 2.718 ||| 0-2 0-3 ||| 18 524574 +los ||| various other signs of ||| 0.5 0.0114245 1.90631e-06 1.71934e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| various other signs ||| 0.5 0.0114245 1.90631e-06 3.16264e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| various other ||| 0.00584795 0.0114245 1.90631e-06 2.04041e-07 2.718 ||| 0-0 ||| 171 524574 +los ||| various societal ||| 0.5 0.0202703 1.90631e-06 4.4776e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| various ||| 0.00334402 0.0114245 9.15028e-05 0.0001575 2.718 ||| 0-0 ||| 14354 524574 +los ||| varying ||| 0.00549451 0.0297483 3.81262e-06 1.26e-05 2.718 ||| 0-0 ||| 364 524574 +los ||| vehicle ' s speed ||| 1 0.108298 1.90631e-06 2.90582e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| vehicle ' s ||| 1 0.108298 1.90631e-06 1.46758e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| vehicle ' ||| 0.5 0.108298 1.90631e-06 7.71479e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| vehicle ||| 0.00394322 0.108298 9.53154e-06 0.0002246 2.718 ||| 0-0 ||| 1268 524574 +los ||| vehicles are ||| 0.02 0.285832 1.90631e-06 2.04164e-05 2.718 ||| 0-0 ||| 50 524574 +los ||| vehicles or ||| 0.0714286 0.285832 1.90631e-06 1.53842e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| vehicles such as ||| 0.333333 0.285832 1.90631e-06 2.84081e-08 2.718 ||| 0-0 ||| 3 524574 +los ||| vehicles such ||| 0.333333 0.285832 1.90631e-06 2.78391e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| vehicles ||| 0.00546306 0.285832 4.00325e-05 0.0013456 2.718 ||| 0-0 ||| 3844 524574 +los ||| venture to say that the ||| 0.5 0.122289 1.90631e-06 6.3735e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| venues ||| 0.015873 0.18 1.90631e-06 8.8e-06 2.718 ||| 0-0 ||| 63 524574 +los ||| verified as compatible ||| 0.5 0.0009297 1.90631e-06 7.4036e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| verified as ||| 0.333333 0.0009297 1.90631e-06 8.92e-10 2.718 ||| 0-1 ||| 3 524574 +los ||| verify , the ||| 0.5 0.122289 1.90631e-06 1.4835e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| verify ||| 0.00263852 0.0044743 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 379 524574 +los ||| very close to the ||| 0.0169492 0.122289 1.90631e-06 1.96684e-08 2.718 ||| 0-3 ||| 59 524574 +los ||| very considerable extent , the ||| 1 0.122289 1.90631e-06 1.53947e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| very moment that the ||| 1 0.122289 1.90631e-06 4.53686e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| very much the task of those ||| 0.5 0.122289 1.90631e-06 7.43044e-15 2.718 ||| 0-2 ||| 2 524574 +los ||| very much the task of ||| 0.5 0.122289 1.90631e-06 1.02616e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| very much the task ||| 0.5 0.122289 1.90631e-06 1.88758e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| very much the ||| 0.00961538 0.122289 1.90631e-06 1.49808e-06 2.718 ||| 0-2 ||| 104 524574 +los ||| very people ||| 0.0294118 0.0894672 3.81262e-06 2.74021e-05 2.718 ||| 0-1 ||| 68 524574 +los ||| very relevant ||| 0.00757576 0.0094642 1.90631e-06 1.99723e-07 2.718 ||| 0-1 ||| 132 524574 +los ||| very young children ||| 0.03125 0.293415 1.90631e-06 1.2223e-09 2.718 ||| 0-2 ||| 32 524574 +los ||| vessels , ||| 0.00694444 0.261943 1.90631e-06 9.4724e-05 2.718 ||| 0-0 ||| 144 524574 +los ||| vessels already ||| 0.5 0.261943 1.90631e-06 3.6784e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| vessels will do nothing ||| 0.5 0.261943 1.90631e-06 4.39311e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| vessels will do ||| 0.5 0.261943 1.90631e-06 2.36062e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| vessels will ||| 0.333333 0.261943 1.90631e-06 6.87165e-06 2.718 ||| 0-0 ||| 3 524574 +los ||| vessels ||| 0.00809249 0.261943 4.00325e-05 0.0007943 2.718 ||| 0-0 ||| 2595 524574 +los ||| vested in the ||| 0.0909091 0.122289 1.90631e-06 5.60077e-08 2.718 ||| 0-2 ||| 11 524574 +los ||| vested in ||| 0.0217391 0.0443787 1.90631e-06 3.12506e-07 2.718 ||| 0-0 ||| 46 524574 +los ||| vested ||| 0.0204082 0.0443787 7.62523e-06 1.46e-05 2.718 ||| 0-0 ||| 196 524574 +los ||| veterinary ||| 0.00332779 0.0118044 3.81262e-06 6.8e-06 2.718 ||| 0-0 ||| 601 524574 +los ||| vetoed by the ||| 0.166667 0.122289 1.90631e-06 2.47727e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| vets ||| 0.0357143 0.129032 3.81262e-06 7.8e-06 2.718 ||| 0-0 ||| 56 524574 +los ||| via children , ||| 0.5 0.293415 1.90631e-06 1.84801e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| via children ||| 0.333333 0.293415 1.90631e-06 1.54963e-07 2.718 ||| 0-1 ||| 3 524574 +los ||| via the ||| 0.00104058 0.122289 1.90631e-06 1.20537e-05 2.718 ||| 0-1 ||| 961 524574 +los ||| victims are the ||| 0.0833333 0.122289 1.90631e-06 2.29747e-07 2.718 ||| 0-2 ||| 12 524574 +los ||| victims of any ||| 0.142857 0.0178119 1.90631e-06 1.77243e-09 2.718 ||| 0-2 ||| 7 524574 +los ||| victory for the ||| 0.0106383 0.122289 1.90631e-06 1.91216e-08 2.718 ||| 0-2 ||| 94 524574 +los ||| video ||| 0.00584795 0.0240385 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 171 524574 +los ||| view , the ||| 0.00309119 0.122289 3.81262e-06 4.62084e-05 2.718 ||| 0-2 ||| 647 524574 +los ||| view all ||| 0.166667 0.0177928 1.90631e-06 2.42834e-06 2.718 ||| 0-1 ||| 6 524574 +los ||| view and take into account the ||| 1 0.122289 1.90631e-06 2.30654e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| view are ||| 0.0666667 0.0005024 1.90631e-06 1.63317e-07 2.718 ||| 0-1 ||| 15 524574 +los ||| view before they ||| 1 0.0072404 1.90631e-06 1.84934e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| view disadvantages the railways ||| 0.25 0.122289 1.90631e-06 6.06788e-15 2.718 ||| 0-2 ||| 4 524574 +los ||| view disadvantages the ||| 0.25 0.122289 1.90631e-06 1.12368e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| view of the ||| 0.00322014 0.122289 2.09694e-05 2.10648e-05 2.718 ||| 0-2 ||| 3416 524574 +los ||| view of their ||| 0.016129 0.0236713 1.90631e-06 1.12342e-07 2.718 ||| 0-2 ||| 62 524574 +los ||| view of ||| 0.000380518 0.0019787 3.81262e-06 2.98776e-06 2.718 ||| 0-1 ||| 5256 524574 +los ||| view that the funding should be increased ||| 1 0.122289 1.90631e-06 1.38652e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| view that the funding should be ||| 1 0.122289 1.90631e-06 2.78977e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| view that the funding should ||| 1 0.122289 1.90631e-06 1.53936e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| view that the funding ||| 1 0.122289 1.90631e-06 3.47408e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| view that the ||| 0.00486618 0.122289 3.81262e-06 6.51797e-06 2.718 ||| 0-2 ||| 411 524574 +los ||| view the wording should have been tighter ||| 1 0.122289 1.90631e-06 6.52755e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| view the wording should have been ||| 1 0.122289 1.90631e-06 9.59934e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| view the wording should have ||| 1 0.122289 1.90631e-06 2.87474e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| view the wording should ||| 1 0.122289 1.90631e-06 2.40367e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| view the wording ||| 1 0.122289 1.90631e-06 5.42467e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| view the ||| 0.00337838 0.122289 1.90631e-06 0.000387476 2.718 ||| 0-1 ||| 296 524574 +los ||| view them as ||| 0.142857 0.038218 1.90631e-06 1.85514e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| view them ||| 0.0833333 0.038218 1.90631e-06 1.81798e-06 2.718 ||| 0-1 ||| 12 524574 +los ||| view those ||| 0.2 0.284705 1.90631e-06 1.50829e-05 2.718 ||| 0-1 ||| 5 524574 +los ||| viewer figures ||| 0.25 0.0060157 1.90631e-06 1.771e-11 2.718 ||| 0-1 ||| 4 524574 +los ||| viewers ||| 0.0107527 0.320896 1.90631e-06 4.18e-05 2.718 ||| 0-0 ||| 93 524574 +los ||| views of the ||| 0.00275482 0.122289 1.90631e-06 1.8959e-06 2.718 ||| 0-2 ||| 363 524574 +los ||| views their ||| 1 0.0236713 1.90631e-06 1.8599e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| vigorously with those ||| 1 0.284705 1.90631e-06 5.76573e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| violated ||| 0.00137741 0.002442 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 726 524574 +los ||| violators ||| 0.0454545 0.166667 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 22 524574 +los ||| violent incidents ||| 0.0588235 0.0760967 1.90631e-06 5.369e-10 2.718 ||| 0-1 ||| 17 524574 +los ||| violent ||| 0.00328407 0.0078193 7.62523e-06 8.8e-06 2.718 ||| 0-0 ||| 1218 524574 +los ||| virtually every continent . ||| 1 0.144232 1.90631e-06 1.8873e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| virtually every continent ||| 1 0.144232 1.90631e-06 6.23079e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| virtually every ||| 0.0185185 0.144232 1.90631e-06 5.41807e-08 2.718 ||| 0-1 ||| 54 524574 +los ||| vis-à-vis the ||| 0.00414938 0.122289 1.90631e-06 1.24397e-06 2.718 ||| 0-1 ||| 241 524574 +los ||| visa ||| 0.00107469 0.0429469 3.81262e-06 0.000246 2.718 ||| 0-0 ||| 1861 524574 +los ||| vision and the ||| 0.0666667 0.122289 1.90631e-06 6.55514e-08 2.718 ||| 0-2 ||| 15 524574 +los ||| visit groups ||| 1 0.143803 1.90631e-06 5.85398e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| visit the ||| 0.00699301 0.122289 1.90631e-06 1.26542e-05 2.718 ||| 0-1 ||| 143 524574 +los ||| visited the ||| 0.00574713 0.122289 1.90631e-06 3.38875e-06 2.718 ||| 0-1 ||| 174 524574 +los ||| visiting those ||| 1 0.284705 1.90631e-06 6.01114e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| visitors ||| 0.00519481 0.146805 3.81262e-06 8.26e-05 2.718 ||| 0-0 ||| 385 524574 +los ||| visits to be made to this ||| 1 0.003856 1.90631e-06 5.61681e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| visits to be made to ||| 1 0.003856 1.90631e-06 8.69287e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| visits to be made ||| 1 0.003856 1.90631e-06 9.78286e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| visits to be ||| 1 0.003856 1.90631e-06 4.67007e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| visits to ||| 0.00917431 0.003856 1.90631e-06 2.57689e-07 2.718 ||| 0-0 ||| 109 524574 +los ||| visits ||| 0.0015873 0.003856 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 630 524574 +los ||| volatile ||| 0.00502513 0.0051282 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 199 524574 +los ||| voluntary institutions acquire information ||| 1 0.00167 1.90631e-06 7.06743e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| voluntary institutions acquire ||| 1 0.00167 1.90631e-06 4.27035e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| voluntary institutions ||| 1 0.00167 1.90631e-06 2.5725e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| voluntary ||| 0.000340252 0.00167 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 2939 524574 +los ||| volunteers ' ||| 0.333333 0.133972 1.90631e-06 4.03195e-07 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| vote in the EU ||| 1 0.0633041 1.90631e-06 7.8077e-10 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| voters from Great ||| 1 0.235256 1.90631e-06 2.64154e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| voters from ||| 0.2 0.235256 1.90631e-06 5.6203e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| voters will ||| 0.1 0.235256 1.90631e-06 3.01927e-06 2.718 ||| 0-0 ||| 10 524574 +los ||| voters ||| 0.00340136 0.235256 7.62523e-06 0.000349 2.718 ||| 0-0 ||| 1176 524574 +los ||| vouched-for ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| vulnerable people ||| 0.010989 0.0083424 1.90631e-06 1.97165e-08 2.718 ||| 0-0 ||| 91 524574 +los ||| vulnerable ||| 0.00115518 0.0083424 5.71893e-06 2.24e-05 2.718 ||| 0-0 ||| 2597 524574 +los ||| wage and ||| 0.0512821 0.0600801 7.62523e-06 1.09602e-06 2.718 ||| 0-0 ||| 78 524574 +los ||| wage war ||| 0.0185185 0.0600801 1.90631e-06 3.24625e-09 2.718 ||| 0-0 ||| 54 524574 +los ||| wage ||| 0.0177134 0.0600801 4.19388e-05 8.75e-05 2.718 ||| 0-0 ||| 1242 524574 +los ||| wages and ||| 0.0128205 0.268982 5.71893e-06 5.56526e-06 2.718 ||| 0-0 ||| 234 524574 +los ||| wages ||| 0.00645682 0.268982 1.52505e-05 0.0004443 2.718 ||| 0-0 ||| 1239 524574 +los ||| walls ||| 0.0104167 0.0878788 5.71893e-06 2.82e-05 2.718 ||| 0-0 ||| 288 524574 +los ||| want Mr Barroso , who do ||| 1 0.000743 1.90631e-06 1.13652e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| want Mr Barroso , who ||| 1 0.000743 1.90631e-06 3.30835e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| want Mr Barroso , ||| 1 0.000743 1.90631e-06 3.75097e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| want Mr Barroso ||| 1 0.000743 1.90631e-06 3.14534e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| want Mr ||| 0.5 0.000743 1.90631e-06 7.86335e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| want multilateral agreements ||| 0.0666667 0.199336 1.90631e-06 5.3065e-12 2.718 ||| 0-2 ||| 15 524574 +los ||| want the citizens of ||| 0.333333 0.122289 1.90631e-06 1.18832e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| want the citizens ||| 0.25 0.122289 1.90631e-06 2.18585e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| want the ||| 0.028169 0.122289 1.52505e-05 0.000200537 2.718 ||| 0-1 ||| 284 524574 +los ||| want to highlight the ||| 0.142857 0.122289 1.90631e-06 3.33222e-10 2.718 ||| 0-3 ||| 7 524574 +los ||| want to spend their ||| 0.5 0.0236713 1.90631e-06 2.87002e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| wanted the ||| 0.0227273 0.122289 1.90631e-06 2.34639e-05 2.718 ||| 0-1 ||| 44 524574 +los ||| war crimes ||| 0.00364964 0.169739 1.90631e-06 2.22563e-08 2.718 ||| 0-1 ||| 274 524574 +los ||| war ||| 0.000102785 0.0004017 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 9729 524574 +los ||| warding off the ||| 0.333333 0.122289 1.90631e-06 6.98341e-11 2.718 ||| 0-2 ||| 3 524574 +los ||| warmly welcoming the ||| 0.25 0.122289 1.90631e-06 5.37053e-11 2.718 ||| 0-2 ||| 4 524574 +los ||| was , among the ||| 1 0.122289 1.90631e-06 1.43601e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| was abandoned ||| 0.0833333 0.0024331 1.90631e-06 5.9527e-09 2.718 ||| 0-1 ||| 12 524574 +los ||| was accrued in ||| 0.5 0.0816327 1.90631e-06 2.61535e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| was accrued ||| 0.5 0.0816327 1.90631e-06 1.22187e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| was completed ; the capital collected should ||| 0.5 0.122289 1.90631e-06 1.88969e-23 2.718 ||| 0-3 ||| 2 524574 +los ||| was completed ; the capital collected ||| 0.5 0.122289 1.90631e-06 4.2647e-21 2.718 ||| 0-3 ||| 2 524574 +los ||| was completed ; the capital ||| 0.5 0.122289 1.90631e-06 3.28054e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| was completed ; the ||| 0.5 0.122289 1.90631e-06 1.26662e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| was for the ||| 0.0144928 0.122289 1.90631e-06 1.0329e-05 2.718 ||| 0-2 ||| 69 524574 +los ||| was in the name of the Lisbon ||| 1 0.122289 1.90631e-06 1.92992e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| was in the name of the ||| 1 0.122289 1.90631e-06 8.39096e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| was not introduced , the Member States ||| 1 0.122289 1.90631e-06 1.24459e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| was not introduced , the Member ||| 1 0.122289 1.90631e-06 2.60812e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| was not introduced , the ||| 1 0.122289 1.90631e-06 5.06136e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| was nothing random about the ||| 1 0.122289 1.90631e-06 6.36699e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| was of the ||| 0.04 0.122289 1.90631e-06 7.30609e-05 2.718 ||| 0-2 ||| 25 524574 +los ||| was one of the conclusions ||| 0.5 0.122289 1.90631e-06 7.67385e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| was one of the ||| 0.00240964 0.122289 1.90631e-06 3.04518e-07 2.718 ||| 0-3 ||| 415 524574 +los ||| was pushing the ||| 1 0.122289 1.90631e-06 1.78741e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| was that the ||| 0.0070922 0.122289 3.81262e-06 2.26069e-05 2.718 ||| 0-2 ||| 282 524574 +los ||| was the case ||| 0.00617284 0.122289 3.81262e-06 1.43786e-06 2.718 ||| 0-1 ||| 324 524574 +los ||| was the conclusion of ||| 0.142857 0.122289 1.90631e-06 6.46589e-09 2.718 ||| 0-1 ||| 7 524574 +los ||| was the conclusion ||| 0.0625 0.122289 1.90631e-06 1.18937e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| was the first ||| 0.00278552 0.122289 1.90631e-06 7.23567e-07 2.718 ||| 0-1 ||| 359 524574 +los ||| was the ||| 0.00525114 0.122289 4.38451e-05 0.00134392 2.718 ||| 0-1 ||| 4380 524574 +los ||| was these ||| 0.0909091 0.0240362 1.90631e-06 7.63669e-06 2.718 ||| 0-1 ||| 11 524574 +los ||| was those at the bottom of the ||| 1 0.122289 1.90631e-06 1.9584e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| was those at the bottom of ||| 1 0.122289 1.90631e-06 3.19e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| was those at the bottom ||| 1 0.122289 1.90631e-06 5.86785e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| was those at the ||| 1 0.122289 1.90631e-06 4.0749e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| was those ||| 0.5 0.284705 1.90631e-06 5.23136e-05 2.718 ||| 0-1 ||| 2 524574 +los ||| was understood by the ||| 1 0.122289 1.90631e-06 1.65104e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| was what the ||| 0.1 0.122289 1.90631e-06 1.88565e-06 2.718 ||| 0-2 ||| 10 524574 +los ||| wash up the ||| 1 0.122289 1.90631e-06 5.26664e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| wash your ||| 0.2 0.0096341 1.90631e-06 1.10952e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| washed ashore and their carcasses could ||| 1 0.0236713 1.90631e-06 4.39327e-26 2.718 ||| 0-3 ||| 1 524574 +los ||| washed ashore and their carcasses ||| 1 0.0236713 1.90631e-06 6.17813e-23 2.718 ||| 0-3 ||| 1 524574 +los ||| washed ashore and their ||| 1 0.0236713 1.90631e-06 4.41295e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| waste , ||| 0.00258398 0.196684 1.90631e-06 0.000202208 2.718 ||| 0-0 ||| 387 524574 +los ||| waste ||| 0.00543949 0.196684 8.38776e-05 0.0016956 2.718 ||| 0-0 ||| 8089 524574 +los ||| waste-related ||| 0.0714286 0.2 1.90631e-06 3.9e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| wasteful industrial ||| 1 0.0102752 1.90631e-06 9.792e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| watch the ||| 0.0163934 0.122289 1.90631e-06 7.72121e-06 2.718 ||| 0-1 ||| 61 524574 +los ||| watch these events by granting ||| 1 0.0240362 1.90631e-06 4.28706e-19 2.718 ||| 0-1 ||| 1 524574 +los ||| watch these events by ||| 1 0.0240362 1.90631e-06 1.67463e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| watch these events ||| 0.333333 0.0240362 1.90631e-06 3.18971e-12 2.718 ||| 0-1 ||| 3 524574 +los ||| watch these ||| 0.285714 0.0240362 3.81262e-06 4.3875e-08 2.718 ||| 0-1 ||| 7 524574 +los ||| watching the ||| 0.0163934 0.122289 1.90631e-06 4.63273e-06 2.718 ||| 0-1 ||| 61 524574 +los ||| watching ||| 0.0027027 0.0054845 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 370 524574 +los ||| water burning ||| 0.333333 0.0012884 1.90631e-06 5.499e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| water ||| 0.000561404 0.0012884 7.62523e-06 1.17e-05 2.718 ||| 0-0 ||| 7125 524574 +los ||| watering down ||| 0.0108696 0.0049833 1.90631e-06 2.14e-10 2.718 ||| 0-1 ||| 92 524574 +los ||| way , be preventing ||| 1 0.0027894 1.90631e-06 3.63384e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| way , the ||| 0.00664452 0.122289 3.81262e-06 0.00011027 2.718 ||| 0-2 ||| 301 524574 +los ||| way as ||| 0.00122399 0.0009297 1.90631e-06 7.69118e-07 2.718 ||| 0-1 ||| 817 524574 +los ||| way between the ||| 0.0666667 0.122289 1.90631e-06 2.43925e-07 2.718 ||| 0-2 ||| 15 524574 +los ||| way by the ||| 0.0384615 0.122289 1.90631e-06 4.85455e-06 2.718 ||| 0-2 ||| 26 524574 +los ||| way of the ||| 0.0220588 0.122289 5.71893e-06 5.02681e-05 2.718 ||| 0-2 ||| 136 524574 +los ||| way of ||| 0.000496648 0.0019787 3.81262e-06 7.12986e-06 2.718 ||| 0-1 ||| 4027 524574 +los ||| way on the ||| 0.0416667 0.122289 1.90631e-06 6.18689e-06 2.718 ||| 0-2 ||| 24 524574 +los ||| way that the ||| 0.0070922 0.122289 1.90631e-06 1.55542e-05 2.718 ||| 0-2 ||| 141 524574 +los ||| way that we are all ||| 1 0.0177928 1.90631e-06 1.67904e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| way the ||| 0.026738 0.122289 2.85946e-05 0.000924658 2.718 ||| 0-1 ||| 561 524574 +los ||| way to reduce levels ||| 0.5 0.222552 1.90631e-06 1.4354e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| ways and ||| 0.00458716 0.0036298 1.90631e-06 2.43002e-07 2.718 ||| 0-0 ||| 218 524574 +los ||| ways in ||| 0.00175747 0.0036298 1.90631e-06 4.15247e-07 2.718 ||| 0-0 ||| 569 524574 +los ||| ways to combine both ||| 1 0.0352574 1.90631e-06 8.10561e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| ways ||| 0.000375728 0.0036298 3.81262e-06 1.94e-05 2.718 ||| 0-0 ||| 5323 524574 +los ||| we , as ||| 0.00384615 0.0014565 3.81262e-06 1.06006e-06 2.718 ||| 0-0 ||| 520 524574 +los ||| we , in the ||| 0.00970874 0.0014565 1.90631e-06 1.36508e-07 2.718 ||| 0-0 ||| 103 524574 +los ||| we , in ||| 0.00383142 0.0014565 1.90631e-06 2.22356e-06 2.718 ||| 0-0 ||| 261 524574 +los ||| we , the Commission ||| 0.0384615 0.122289 1.90631e-06 3.39203e-07 2.718 ||| 0-2 ||| 26 524574 +los ||| we , the ||| 0.0684474 0.122289 7.81587e-05 0.000580728 2.718 ||| 0-2 ||| 599 524574 +los ||| we , who are ||| 0.0769231 0.0016142 1.90631e-06 2.41563e-09 2.718 ||| 0-2 ||| 13 524574 +los ||| we , who ||| 0.0196078 0.0016142 1.90631e-06 1.59209e-07 2.718 ||| 0-2 ||| 51 524574 +los ||| we , ||| 0.00463177 0.0014565 1.90631e-05 0.000103883 2.718 ||| 0-0 ||| 2159 524574 +los ||| we - the ||| 0.0204082 0.122289 1.90631e-06 1.83688e-05 2.718 ||| 0-2 ||| 49 524574 +los ||| we Members of the ||| 0.0416667 0.122289 1.90631e-06 3.90481e-08 2.718 ||| 0-3 ||| 24 524574 +los ||| we Members of ||| 0.047619 0.0851677 1.90631e-06 2.28467e-07 2.718 ||| 0-0 0-1 ||| 21 524574 +los ||| we Members ||| 0.0135135 0.0851677 1.90631e-06 4.20253e-06 2.718 ||| 0-0 0-1 ||| 74 524574 +los ||| we acquired ||| 0.2 0.0150188 1.90631e-06 1.32822e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| we all worked together to achieve ||| 1 0.0014565 1.90631e-06 2.18356e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| we all worked together to ||| 1 0.0014565 1.90631e-06 9.55606e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| we all worked together ||| 0.333333 0.0014565 1.90631e-06 1.07543e-13 2.718 ||| 0-0 ||| 3 524574 +los ||| we all worked ||| 0.125 0.0014565 1.90631e-06 1.79059e-10 2.718 ||| 0-0 ||| 8 524574 +los ||| we all ||| 0.000682361 0.0014565 3.81262e-06 4.1163e-06 2.718 ||| 0-0 ||| 2931 524574 +los ||| we also have the annual ||| 1 0.122289 1.90631e-06 8.46807e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| we also have the ||| 0.00819672 0.122289 1.90631e-06 2.9403e-07 2.718 ||| 0-3 ||| 122 524574 +los ||| we also ||| 0.000286287 0.0014565 1.90631e-06 4.39784e-06 2.718 ||| 0-0 ||| 3493 524574 +los ||| we and the ||| 0.0117647 0.122289 1.90631e-06 6.09966e-05 2.718 ||| 0-2 ||| 85 524574 +los ||| we are all ||| 0.00110254 0.0177928 3.81262e-06 4.63046e-07 2.718 ||| 0-2 ||| 1814 524574 +los ||| we are aware of the ||| 0.00473934 0.122289 1.90631e-06 5.57922e-10 2.718 ||| 0-4 ||| 211 524574 +los ||| we are experiencing ||| 0.00341297 0.0014565 1.90631e-06 2.47157e-10 2.718 ||| 0-0 ||| 293 524574 +los ||| we are going through right ||| 1 0.0005024 1.90631e-06 5.2142e-16 2.718 ||| 0-1 ||| 1 524574 +los ||| we are going through ||| 0.01 0.0005024 1.90631e-06 8.08529e-13 2.718 ||| 0-1 ||| 100 524574 +los ||| we are going ||| 0.000539665 0.0005024 1.90631e-06 1.75653e-09 2.718 ||| 0-1 ||| 1853 524574 +los ||| we are in the process of ||| 0.0104167 0.122289 1.90631e-06 3.67547e-11 2.718 ||| 0-3 ||| 96 524574 +los ||| we are in the process ||| 0.00990099 0.122289 1.90631e-06 6.76085e-10 2.718 ||| 0-3 ||| 101 524574 +los ||| we are in the ||| 0.00299401 0.122289 1.90631e-06 1.58148e-06 2.718 ||| 0-3 ||| 334 524574 +los ||| we are now ||| 0.000623053 0.0014565 1.90631e-06 2.72256e-08 2.718 ||| 0-0 ||| 1605 524574 +los ||| we are of the ||| 0.0133333 0.122289 1.90631e-06 4.01672e-06 2.718 ||| 0-3 ||| 75 524574 +los ||| we are providing food aid , and ||| 1 0.123536 1.90631e-06 6.79905e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| we are providing food aid , ||| 1 0.123536 1.90631e-06 5.42799e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| we are providing food aid ||| 1 0.123536 1.90631e-06 4.5516e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| we are providing food ||| 1 0.123536 1.90631e-06 3.48514e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| we are spending the ||| 1 0.122289 1.90631e-06 1.56637e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| we are talking about the development ||| 1 0.122289 1.90631e-06 1.88055e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| we are talking about the ||| 0.00338983 0.122289 1.90631e-06 1.14319e-11 2.718 ||| 0-4 ||| 295 524574 +los ||| we are talking ||| 0.00416667 0.0014565 3.81262e-06 1.44593e-09 2.718 ||| 0-0 ||| 480 524574 +los ||| we are trying to identify those ||| 1 0.284705 1.90631e-06 5.09327e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| we are ||| 0.000299892 0.0014565 2.85946e-05 1.32169e-05 2.718 ||| 0-0 ||| 50018 524574 +los ||| we as free democrats ||| 0.5 0.186317 1.90631e-06 1.68031e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| we as ||| 0.0208333 0.0014565 1.90631e-05 8.88905e-06 2.718 ||| 0-0 ||| 480 524574 +los ||| we be ||| 0.00787402 0.0014565 1.90631e-06 1.57869e-05 2.718 ||| 0-0 ||| 127 524574 +los ||| we believe all fishermen should be guaranteed ||| 1 0.0177928 1.90631e-06 1.26573e-22 2.718 ||| 0-2 ||| 1 524574 +los ||| we believe all fishermen should be ||| 1 0.0177928 1.90631e-06 3.58565e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| we believe all fishermen should ||| 1 0.0177928 1.90631e-06 1.97852e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| we believe all fishermen ||| 1 0.0177928 1.90631e-06 4.46518e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| we believe all ||| 0.2 0.0177928 1.90631e-06 9.50037e-09 2.718 ||| 0-2 ||| 5 524574 +los ||| we can achieve even the globalisation of ||| 0.333333 0.122289 1.90631e-06 8.32058e-19 2.718 ||| 0-4 ||| 3 524574 +los ||| we can achieve even the globalisation ||| 0.333333 0.122289 1.90631e-06 1.53053e-17 2.718 ||| 0-4 ||| 3 524574 +los ||| we can achieve even the ||| 0.333333 0.122289 1.90631e-06 2.01386e-12 2.718 ||| 0-4 ||| 3 524574 +los ||| we can identify ||| 0.0454545 0.0014395 1.90631e-06 9.79189e-11 2.718 ||| 0-2 ||| 22 524574 +los ||| we can see it ||| 0.1 0.0014565 1.90631e-06 3.24642e-11 2.718 ||| 0-0 ||| 10 524574 +los ||| we can see that the ||| 0.028169 0.0014565 3.81262e-06 1.88527e-12 2.718 ||| 0-0 ||| 71 524574 +los ||| we can see that ||| 0.00302115 0.0014565 1.90631e-06 3.07088e-11 2.718 ||| 0-0 ||| 331 524574 +los ||| we can see who the ||| 1 0.122289 1.90631e-06 9.00104e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| we can see ||| 0.00218579 0.0014565 3.81262e-06 1.82556e-09 2.718 ||| 0-0 ||| 915 524574 +los ||| we can speak ||| 0.030303 0.0014565 1.90631e-06 3.5055e-10 2.718 ||| 0-0 ||| 33 524574 +los ||| we can take the ||| 0.04 0.122289 1.90631e-06 2.33189e-08 2.718 ||| 0-3 ||| 25 524574 +los ||| we can to increase our level ||| 0.5 0.0248369 1.90631e-06 1.18413e-15 2.718 ||| 0-4 ||| 2 524574 +los ||| we can to increase our ||| 0.5 0.0248369 1.90631e-06 1.3843e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| we can ||| 0.000239464 0.0014565 9.53154e-06 2.59091e-06 2.718 ||| 0-0 ||| 20880 524574 +los ||| we cannot achieve ||| 0.0147059 0.0014565 1.90631e-06 4.48451e-11 2.718 ||| 0-0 ||| 68 524574 +los ||| we cannot ||| 9.68992e-05 0.0014565 1.90631e-06 1.96259e-07 2.718 ||| 0-0 ||| 10320 524574 +los ||| we clearly and ||| 0.5 0.0014565 1.90631e-06 1.99131e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| we clearly ||| 0.00636943 0.0014565 1.90631e-06 1.58976e-07 2.718 ||| 0-0 ||| 157 524574 +los ||| we consider the ||| 0.00389105 0.0014565 1.90631e-06 8.50841e-09 2.718 ||| 0-0 ||| 257 524574 +los ||| we consider ||| 0.00119261 0.0014565 3.81262e-06 1.38592e-07 2.718 ||| 0-0 ||| 1677 524574 +los ||| we discuss his ||| 0.5 0.0058818 1.90631e-06 8.1944e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| we do not have the ||| 0.00395257 0.122289 1.90631e-06 6.83065e-10 2.718 ||| 0-4 ||| 253 524574 +los ||| we do now for ||| 1 0.0014565 1.90631e-06 4.73764e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| we do now ||| 0.0384615 0.0014565 1.90631e-06 6.16423e-09 2.718 ||| 0-0 ||| 26 524574 +los ||| we do the ||| 0.0344828 0.122289 1.90631e-06 1.67287e-05 2.718 ||| 0-2 ||| 29 524574 +los ||| we do ||| 0.000657895 0.0014565 3.81262e-06 2.99249e-06 2.718 ||| 0-0 ||| 3040 524574 +los ||| we entered the ||| 0.125 0.122289 1.90631e-06 1.55828e-07 2.718 ||| 0-2 ||| 8 524574 +los ||| we exclude those ||| 1 0.284705 1.90631e-06 9.47781e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| we feel ||| 0.000794281 0.0014565 1.90631e-06 1.47303e-07 2.718 ||| 0-0 ||| 1259 524574 +los ||| we fix the ||| 0.125 0.122289 1.90631e-06 2.09395e-08 2.718 ||| 0-2 ||| 8 524574 +los ||| we from them , ||| 0.5 0.038218 1.90631e-06 4.38784e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| we from them ||| 0.5 0.038218 1.90631e-06 3.67938e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| we get into the ||| 0.333333 0.122289 1.90631e-06 2.18585e-09 2.718 ||| 0-3 ||| 3 524574 +los ||| we get the ||| 0.011236 0.122289 1.90631e-06 2.12901e-06 2.718 ||| 0-2 ||| 89 524574 +los ||| we got the ||| 0.05 0.122289 1.90631e-06 5.32739e-07 2.718 ||| 0-2 ||| 20 524574 +los ||| we had the ||| 0.00943396 0.122289 5.71893e-06 4.88766e-06 2.718 ||| 0-2 ||| 318 524574 +los ||| we had ||| 0.000248386 0.0014565 1.90631e-06 8.74323e-07 2.718 ||| 0-0 ||| 4026 524574 +los ||| we have a ||| 0.000234028 0.0014565 1.90631e-06 4.61794e-07 2.718 ||| 0-0 ||| 4273 524574 +los ||| we have achieved the ||| 0.0434783 0.122289 1.90631e-06 9.74354e-09 2.718 ||| 0-3 ||| 23 524574 +los ||| we have adopted ||| 0.00266667 0.0014565 1.90631e-06 2.12531e-09 2.718 ||| 0-0 ||| 375 524574 +los ||| we have all noticed the alarming increase ||| 1 0.122289 1.90631e-06 1.7245e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| we have all noticed the alarming ||| 1 0.122289 1.90631e-06 1.33475e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| we have all noticed the ||| 1 0.122289 1.90631e-06 2.66951e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| we have already pointed to the ||| 1 0.122289 1.90631e-06 1.10483e-13 2.718 ||| 0-5 ||| 1 524574 +los ||| we have appropriate ||| 0.5 0.0010555 1.90631e-06 1.58852e-09 2.718 ||| 0-2 ||| 2 524574 +los ||| we have at the moment is a ||| 0.333333 0.122289 1.90631e-06 6.12201e-14 2.718 ||| 0-3 ||| 3 524574 +los ||| we have at the moment is ||| 0.1 0.122289 1.90631e-06 1.38114e-12 2.718 ||| 0-3 ||| 10 524574 +los ||| we have at the moment ||| 0.015873 0.122289 1.90631e-06 4.4068e-11 2.718 ||| 0-3 ||| 63 524574 +los ||| we have at the ||| 0.0169492 0.122289 1.90631e-06 2.43874e-07 2.718 ||| 0-3 ||| 59 524574 +los ||| we have child sports stars ||| 1 0.0836397 1.90631e-06 5.5681e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| we have child sports ||| 1 0.0836397 1.90631e-06 3.97721e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| we have concluded ||| 0.0169492 0.0014565 1.90631e-06 3.70887e-10 2.718 ||| 0-0 ||| 59 524574 +los ||| we have had the ||| 0.00793651 0.122289 1.90631e-06 5.84554e-08 2.718 ||| 0-3 ||| 126 524574 +los ||| we have lost the initiative ||| 1 0.122289 1.90631e-06 2.07447e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| we have lost the ||| 0.0714286 0.122289 1.90631e-06 3.31385e-09 2.718 ||| 0-3 ||| 14 524574 +los ||| we have made ||| 0.000993049 0.0014565 1.90631e-06 2.1824e-08 2.718 ||| 0-0 ||| 1007 524574 +los ||| we have reached the stage where ||| 0.5 0.122289 1.90631e-06 2.85305e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| we have reached the stage ||| 0.142857 0.122289 1.90631e-06 9.416e-13 2.718 ||| 0-3 ||| 7 524574 +los ||| we have reached the ||| 0.00990099 0.122289 1.90631e-06 6.28991e-09 2.718 ||| 0-3 ||| 101 524574 +los ||| we have seen a whole series of ||| 1 0.0014565 1.90631e-06 1.19281e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| we have seen a whole series ||| 1 0.0014565 1.90631e-06 2.19412e-18 2.718 ||| 0-0 ||| 1 524574 +los ||| we have seen a whole ||| 0.5 0.0014565 1.90631e-06 5.49904e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| we have seen a ||| 0.008 0.0014565 1.90631e-06 9.72077e-11 2.718 ||| 0-0 ||| 125 524574 +los ||| we have seen ||| 0.000459137 0.0014565 1.90631e-06 2.19303e-09 2.718 ||| 0-0 ||| 2178 524574 +los ||| we have the very ||| 0.142857 0.122289 1.90631e-06 2.02646e-07 2.718 ||| 0-2 ||| 7 524574 +los ||| we have the ||| 0.00558092 0.122289 2.09694e-05 5.82399e-05 2.718 ||| 0-2 ||| 1971 524574 +los ||| we have ||| 0.000329622 0.0014565 4.38451e-05 1.04182e-05 2.718 ||| 0-0 ||| 69777 524574 +los ||| we hold these ||| 1 0.0240362 1.90631e-06 4.82033e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| we hope ||| 0.000301296 0.0014565 1.90631e-06 1.52704e-07 2.718 ||| 0-0 ||| 3319 524574 +los ||| we in the Group of the ||| 0.00925926 0.122289 1.90631e-06 1.13164e-10 2.718 ||| 0-5 ||| 108 524574 +los ||| we in the ||| 0.0106007 0.122289 3.43136e-05 0.000104232 2.718 ||| 0-2 ||| 1698 524574 +los ||| we in this ||| 0.00220264 0.0014565 1.90631e-06 1.20476e-07 2.718 ||| 0-0 ||| 454 524574 +los ||| we in ||| 0.00383019 0.0014565 2.28757e-05 1.86455e-05 2.718 ||| 0-0 ||| 3133 524574 +los ||| we include ||| 0.0102041 0.0092135 1.90631e-06 1.04895e-06 2.718 ||| 0-1 ||| 98 524574 +los ||| we just give the ||| 1 0.122289 1.90631e-06 3.72328e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| we know that ||| 0.000326584 0.0014565 1.90631e-06 3.78055e-09 2.718 ||| 0-0 ||| 3062 524574 +los ||| we know the ||| 0.0045045 0.122289 1.90631e-06 1.25637e-06 2.718 ||| 0-2 ||| 222 524574 +los ||| we know ||| 0.000308737 0.0014565 3.81262e-06 2.24744e-07 2.718 ||| 0-0 ||| 6478 524574 +los ||| we left the ||| 0.0909091 0.122289 1.90631e-06 9.19875e-07 2.718 ||| 0-2 ||| 11 524574 +los ||| we look at the ||| 0.0027027 0.122289 1.90631e-06 5.94402e-09 2.718 ||| 0-3 ||| 370 524574 +los ||| we look to the ||| 0.0133333 0.0014565 1.90631e-06 1.38521e-09 2.718 ||| 0-0 ||| 75 524574 +los ||| we look to ||| 0.00961538 0.0014565 1.90631e-06 2.25634e-08 2.718 ||| 0-0 ||| 104 524574 +los ||| we look ||| 0.003125 0.0014565 3.81262e-06 2.53926e-07 2.718 ||| 0-0 ||| 640 524574 +los ||| we lose the ||| 0.0909091 0.122289 1.90631e-06 1.61185e-07 2.718 ||| 0-2 ||| 11 524574 +los ||| we made throughout the duration ||| 1 0.122289 1.90631e-06 3.37824e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| we made throughout the ||| 1 0.122289 1.90631e-06 4.07017e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| we must be patient ||| 0.111111 0.135371 1.90631e-06 6.70951e-11 2.718 ||| 0-3 ||| 9 524574 +los ||| we must place greater emphasis on education ||| 1 0.0011583 1.90631e-06 2.19982e-23 2.718 ||| 0-6 ||| 1 524574 +los ||| we must ||| 2.49246e-05 0.0014565 1.90631e-06 1.34637e-06 2.718 ||| 0-0 ||| 40121 524574 +los ||| we need now is the implementation ||| 1 0.122289 1.90631e-06 2.23975e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| we need now is the ||| 0.5 0.122289 1.90631e-06 2.88257e-10 2.718 ||| 0-4 ||| 2 524574 +los ||| we need the ||| 0.00347222 0.122289 3.81262e-06 4.46497e-06 2.718 ||| 0-2 ||| 576 524574 +los ||| we need to enforce the ||| 0.2 0.122289 1.90631e-06 4.00717e-12 2.718 ||| 0-4 ||| 5 524574 +los ||| we need to pursue a modern ||| 1 0.0129957 1.90631e-06 6.09095e-17 2.718 ||| 0-5 ||| 1 524574 +los ||| we need ||| 7.4107e-05 0.0014565 3.81262e-06 7.98712e-07 2.718 ||| 0-0 ||| 26988 524574 +los ||| we opponents ||| 1 0.186889 1.90631e-06 2.10812e-06 2.718 ||| 0-1 ||| 1 524574 +los ||| we ourselves ||| 0.00301205 0.0014565 1.90631e-06 2.77097e-07 2.718 ||| 0-0 ||| 332 524574 +los ||| we rejected its ||| 1 0.0211371 1.90631e-06 3.75694e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| we saw the ||| 0.011236 0.122289 1.90631e-06 2.61013e-07 2.718 ||| 0-2 ||| 89 524574 +los ||| we say , ||| 0.0175439 0.0014565 1.90631e-06 9.92912e-08 2.718 ||| 0-0 ||| 57 524574 +los ||| we say to all ||| 1 0.0177928 1.90631e-06 2.59195e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| we say ||| 0.00119474 0.0014565 1.90631e-06 8.32597e-07 2.718 ||| 0-0 ||| 837 524574 +los ||| we see ? the ||| 1 0.122289 1.90631e-06 5.86383e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| we see first ||| 1 0.0014565 1.90631e-06 3.30458e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| we see the ||| 0.0106383 0.122289 5.71893e-06 3.43115e-06 2.718 ||| 0-2 ||| 282 524574 +los ||| we see ||| 0.000468165 0.0014565 1.90631e-06 6.13777e-07 2.718 ||| 0-0 ||| 2136 524574 +los ||| we shall have ||| 0.00124069 0.0014565 1.90631e-06 5.69458e-09 2.718 ||| 0-0 ||| 806 524574 +los ||| we shall ||| 0.000415455 0.0014565 1.90631e-06 4.76143e-07 2.718 ||| 0-0 ||| 2407 524574 +los ||| we should be developing ||| 0.1 0.150762 1.90631e-06 3.24573e-09 2.718 ||| 0-3 ||| 10 524574 +los ||| we should conclude direct ||| 1 0.0017634 1.90631e-06 1.29714e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| we should continue them . the ||| 1 0.122289 1.90631e-06 4.05681e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| we should trample upon the ||| 1 0.122289 1.90631e-06 3.58271e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| we show the ||| 0.125 0.122289 1.90631e-06 6.52045e-07 2.718 ||| 0-2 ||| 8 524574 +los ||| we social ||| 0.2 0.0026281 1.90631e-06 1.32146e-07 2.718 ||| 0-0 0-1 ||| 5 524574 +los ||| we still behold the ||| 1 0.122289 1.90631e-06 2.56747e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| we still ||| 0.00113895 0.0014565 1.90631e-06 6.56113e-07 2.718 ||| 0-0 ||| 878 524574 +los ||| we support the proposal which the Commission ||| 0.5 0.122289 1.90631e-06 1.01278e-16 2.718 ||| 0-2 ||| 2 524574 +los ||| we support the proposal which the ||| 0.5 0.122289 1.90631e-06 1.73391e-13 2.718 ||| 0-2 ||| 2 524574 +los ||| we support the proposal which ||| 0.333333 0.122289 1.90631e-06 2.82434e-12 2.718 ||| 0-2 ||| 3 524574 +los ||| we support the proposal ||| 0.0232558 0.122289 1.90631e-06 3.32487e-10 2.718 ||| 0-2 ||| 43 524574 +los ||| we support the ||| 0.00236686 0.122289 3.81262e-06 1.66493e-06 2.718 ||| 0-2 ||| 845 524574 +los ||| we take account of the fact ||| 0.2 0.122289 1.90631e-06 3.58952e-13 2.718 ||| 0-4 ||| 5 524574 +los ||| we take account of the ||| 0.0416667 0.122289 1.90631e-06 1.22538e-10 2.718 ||| 0-4 ||| 24 524574 +los ||| we take the view that the funding ||| 1 0.122289 1.90631e-06 3.89816e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| we take the view that the ||| 0.0625 0.122289 1.90631e-06 7.31362e-12 2.718 ||| 0-5 ||| 16 524574 +los ||| we take the ||| 0.00970874 0.122289 3.81262e-06 7.84012e-06 2.718 ||| 0-2 ||| 206 524574 +los ||| we the ||| 0.162162 0.122289 1.14379e-05 0.00486964 2.718 ||| 0-1 ||| 37 524574 +los ||| we think the ||| 0.0114943 0.122289 1.90631e-06 1.86264e-06 2.718 ||| 0-2 ||| 87 524574 +los ||| we thought ||| 0.00543478 0.0014565 1.90631e-06 7.23884e-08 2.718 ||| 0-0 ||| 184 524574 +los ||| we to ||| 0.01 0.0014565 1.90631e-06 7.74044e-05 2.718 ||| 0-0 ||| 100 524574 +los ||| we use the ||| 0.0107527 0.122289 1.90631e-06 2.36762e-06 2.718 ||| 0-2 ||| 93 524574 +los ||| we usually enjoy on Fridays ||| 0.142857 0.278761 1.90631e-06 2.80748e-18 2.718 ||| 0-4 ||| 7 524574 +los ||| we want the citizens of ||| 0.2 0.122289 1.90631e-06 1.34901e-11 2.718 ||| 0-2 ||| 5 524574 +los ||| we want the citizens ||| 0.125 0.122289 1.90631e-06 2.48145e-10 2.718 ||| 0-2 ||| 8 524574 +los ||| we want the ||| 0.0042735 0.122289 3.81262e-06 2.27656e-06 2.718 ||| 0-2 ||| 468 524574 +los ||| we want to be consistent , hake ||| 1 0.0014565 1.90631e-06 2.38299e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| we want to be consistent , ||| 0.25 0.0014565 1.90631e-06 2.16636e-15 2.718 ||| 0-0 ||| 4 524574 +los ||| we want to be consistent ||| 0.0909091 0.0014565 1.90631e-06 1.81658e-14 2.718 ||| 0-0 ||| 11 524574 +los ||| we want to be ||| 0.00404858 0.0014565 1.90631e-06 6.55805e-10 2.718 ||| 0-0 ||| 247 524574 +los ||| we want to ||| 0.000209074 0.0014565 1.90631e-06 3.61865e-08 2.718 ||| 0-0 ||| 4783 524574 +los ||| we want ||| 0.00014637 0.0014565 1.90631e-06 4.07239e-07 2.718 ||| 0-0 ||| 6832 524574 +los ||| we watch these ||| 1 0.0240362 1.90631e-06 4.98082e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| we welcome your ||| 0.0277778 0.0096341 1.90631e-06 3.85216e-10 2.718 ||| 0-2 ||| 36 524574 +los ||| we were ||| 0.000842933 0.0014565 5.71893e-06 1.56049e-06 2.718 ||| 0-0 ||| 3559 524574 +los ||| we who come from ||| 1 0.001099 1.90631e-06 1.64549e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| we who ||| 0.00833333 0.0016142 1.90631e-06 1.33503e-06 2.718 ||| 0-1 ||| 120 524574 +los ||| we will achieve the ||| 0.05 0.122289 1.90631e-06 9.6263e-09 2.718 ||| 0-3 ||| 20 524574 +los ||| we will avoid many cases ||| 1 0.136512 1.90631e-06 1.98104e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| we will be able to achieve our ||| 0.2 0.0248369 1.90631e-06 1.07748e-16 2.718 ||| 0-6 ||| 5 524574 +los ||| we will be chasing ||| 1 0.0014565 1.90631e-06 3.00466e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| we will be up to ||| 1 0.0031618 1.90631e-06 3.35291e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| we will be up ||| 0.5 0.0031618 1.90631e-06 3.77332e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| we will be ||| 0.000562746 0.0014565 1.90631e-06 1.36575e-07 2.718 ||| 0-0 ||| 1777 524574 +los ||| we will exacerbate the ||| 1 0.122289 1.90631e-06 1.22172e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| we will have the ||| 0.0045045 0.0618729 1.90631e-06 3.86617e-08 2.718 ||| 0-0 0-3 ||| 222 524574 +los ||| we will have to make do ||| 0.25 0.0014565 1.90631e-06 4.78113e-14 2.718 ||| 0-0 ||| 4 524574 +los ||| we will have to make ||| 0.03125 0.0014565 1.90631e-06 1.39176e-11 2.718 ||| 0-0 ||| 32 524574 +los ||| we will have to ||| 0.000824402 0.0014565 1.90631e-06 8.00877e-09 2.718 ||| 0-0 ||| 1213 524574 +los ||| we will have ||| 0.000333444 0.0014565 1.90631e-06 9.01298e-08 2.718 ||| 0-0 ||| 2999 524574 +los ||| we will keep ||| 0.0126582 0.0007869 1.90631e-06 5.69624e-10 2.718 ||| 0-2 ||| 79 524574 +los ||| we will ||| 0.000341647 0.0014565 3.81262e-06 7.53606e-06 2.718 ||| 0-0 ||| 5854 524574 +los ||| we wish ||| 0.00112486 0.0014565 1.90631e-06 2.56713e-07 2.718 ||| 0-0 ||| 889 524574 +los ||| we with ||| 1 0.0014565 1.90631e-06 5.57025e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| we would anchor them ||| 1 0.038218 1.90631e-06 1.47495e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| we would have the facility for ||| 1 0.122289 1.90631e-06 3.59887e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| we would have the facility ||| 1 0.122289 1.90631e-06 4.68256e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| we would have the ||| 0.0555556 0.122289 1.90631e-06 3.41793e-07 2.718 ||| 0-3 ||| 18 524574 +los ||| we would send ||| 0.25 0.0014565 1.90631e-06 3.29227e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| we would ||| 0.00087108 0.0014565 3.81262e-06 5.11222e-06 2.718 ||| 0-0 ||| 2296 524574 +los ||| we ||| 0.00367244 0.0014565 0.00112282 0.0008711 2.718 ||| 0-0 ||| 160384 524574 +los ||| we ’ , I mean the ||| 0.5 0.122289 1.90631e-06 1.84414e-12 2.718 ||| 0-5 ||| 2 524574 +los ||| wealthy ||| 0.003003 0.0314961 1.90631e-06 1.17e-05 2.718 ||| 0-0 ||| 333 524574 +los ||| weblogs ||| 0.25 0.5 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 4 524574 +los ||| websites ||| 0.00298507 0.0722689 1.90631e-06 4.18e-05 2.718 ||| 0-0 ||| 335 524574 +los ||| weeks ' ||| 0.0285714 0.0444479 1.90631e-06 5.74474e-08 2.718 ||| 0-1 ||| 35 524574 +los ||| welcome the Commission ||| 0.037037 0.122289 1.90631e-06 2.75859e-08 2.718 ||| 0-1 ||| 27 524574 +los ||| welcome the emphasis placed ||| 0.5 0.122289 1.90631e-06 3.02152e-13 2.718 ||| 0-1 ||| 2 524574 +los ||| welcome the emphasis ||| 0.0526316 0.122289 1.90631e-06 2.41336e-09 2.718 ||| 0-1 ||| 19 524574 +los ||| welcome the new framework agreements ||| 0.5 0.199336 1.90631e-06 1.51711e-15 2.718 ||| 0-4 ||| 2 524574 +los ||| welcome the ||| 0.00159854 0.122289 1.33442e-05 4.72281e-05 2.718 ||| 0-1 ||| 4379 524574 +los ||| welcome your ||| 0.010101 0.0096341 1.90631e-06 3.39328e-08 2.718 ||| 0-1 ||| 99 524574 +los ||| welcoming the ||| 0.00520833 0.122289 1.90631e-06 1.71583e-06 2.718 ||| 0-1 ||| 192 524574 +los ||| welfare ||| 0.000472144 0.004 3.81262e-06 1.26e-05 2.718 ||| 0-0 ||| 4236 524574 +los ||| well , namely the ||| 0.5 0.122289 1.90631e-06 1.29616e-08 2.718 ||| 0-3 ||| 2 524574 +los ||| well as about its ||| 1 0.0211371 1.90631e-06 4.88586e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| well as all the ||| 0.0416667 0.122289 1.90631e-06 3.27969e-08 2.718 ||| 0-3 ||| 24 524574 +los ||| well as any subsequent cases ||| 1 0.136512 1.90631e-06 6.43474e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| well as its ||| 0.0217391 0.0211371 1.90631e-06 3.45461e-08 2.718 ||| 0-2 ||| 46 524574 +los ||| well as pension ||| 1 0.0543335 1.90631e-06 3.88484e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| well as the ||| 0.00959693 0.122289 1.90631e-05 6.94055e-06 2.718 ||| 0-2 ||| 1042 524574 +los ||| well as they understand the ||| 1 0.122289 1.90631e-06 1.76928e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| well as ||| 0.000425622 0.0009297 3.81262e-06 5.65742e-07 2.718 ||| 0-1 ||| 4699 524574 +los ||| well do the ||| 0.0909091 0.122289 1.90631e-06 2.33653e-06 2.718 ||| 0-2 ||| 11 524574 +los ||| well in the ||| 0.010101 0.122289 1.90631e-06 1.45583e-05 2.718 ||| 0-2 ||| 99 524574 +los ||| well short of the ||| 0.0588235 0.122289 1.90631e-06 5.21729e-09 2.718 ||| 0-3 ||| 17 524574 +los ||| well the ||| 0.0225564 0.122289 5.71893e-06 0.000680153 2.718 ||| 0-1 ||| 133 524574 +los ||| well where ||| 0.2 0.0449398 1.90631e-06 3.49942e-06 2.718 ||| 0-1 ||| 5 524574 +los ||| were according ||| 1 0.0007531 1.90631e-06 1.39729e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| were brought by the ||| 0.5 0.122289 1.90631e-06 1.12962e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| were carried by ||| 1 0.0062464 1.90631e-06 8.55134e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| were continuing a dialogue initiated by the ||| 1 0.122289 1.90631e-06 6.07484e-21 2.718 ||| 0-6 ||| 1 524574 +los ||| were delivered by ||| 0.5 0.0062464 1.90631e-06 1.00109e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| were each ||| 0.333333 0.0497499 1.90631e-06 1.57625e-06 2.718 ||| 0-1 ||| 3 524574 +los ||| were left to suffer the effects ||| 1 0.122289 1.90631e-06 2.49336e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| were left to suffer the ||| 1 0.122289 1.90631e-06 4.59182e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| were quite simply a snare of the ||| 1 0.122289 1.90631e-06 6.40583e-20 2.718 ||| 0-6 ||| 1 524574 +los ||| were selected by the ||| 0.5 0.122289 1.90631e-06 1.73477e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| were spent ||| 0.0285714 0.0020896 1.90631e-06 1.21815e-08 2.718 ||| 0-1 ||| 35 524574 +los ||| were the ||| 0.025 0.122289 4.00325e-05 0.000768432 2.718 ||| 0-1 ||| 840 524574 +los ||| were those ||| 0.027027 0.284705 1.90631e-06 2.99121e-05 2.718 ||| 0-1 ||| 37 524574 +los ||| were to take them ||| 1 0.038218 1.90631e-06 5.15791e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| were to ||| 0.000840336 5.32e-05 1.90631e-06 2.57689e-07 2.718 ||| 0-0 ||| 1190 524574 +los ||| were ||| 7.03928e-05 5.32e-05 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 28412 524574 +los ||| wet his ||| 1 0.0446429 1.90631e-06 1.47245e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| wet ||| 0.0243902 0.0446429 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 41 524574 +los ||| what , I ask you , is ||| 0.333333 0.0061209 1.90631e-06 1.34188e-15 2.718 ||| 0-0 ||| 3 524574 +los ||| what , I ask you , ||| 0.333333 0.0061209 1.90631e-06 4.28153e-14 2.718 ||| 0-0 ||| 3 524574 +los ||| what , I ask you ||| 0.333333 0.0061209 1.90631e-06 3.59024e-13 2.718 ||| 0-0 ||| 3 524574 +los ||| what , I ask ||| 0.25 0.0061209 1.90631e-06 1.11198e-10 2.718 ||| 0-0 ||| 4 524574 +los ||| what , I ||| 0.2 0.0061209 1.90631e-06 8.0871e-07 2.718 ||| 0-0 ||| 5 524574 +los ||| what , ||| 0.00236407 0.0061209 1.90631e-06 0.000114329 2.718 ||| 0-0 ||| 423 524574 +los ||| what I am referring ||| 0.0625 0.0061209 1.90631e-06 3.7425e-13 2.718 ||| 0-0 ||| 16 524574 +los ||| what I am ||| 0.00326797 0.0061209 1.90631e-06 8.66319e-09 2.718 ||| 0-0 ||| 306 524574 +los ||| what I ||| 0.000454959 0.0061209 1.90631e-06 6.78136e-06 2.718 ||| 0-0 ||| 2198 524574 +los ||| what a ' green job ||| 1 0.0061209 1.90631e-06 1.8924e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| what a ' green ||| 1 0.0061209 1.90631e-06 2.42305e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| what a ' ||| 1 0.0061209 1.90631e-06 1.45967e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| what a ||| 0.00614754 0.0061209 5.71893e-06 4.24951e-05 2.718 ||| 0-0 ||| 488 524574 +los ||| what an ||| 0.0138889 0.0061209 1.90631e-06 4.26113e-06 2.718 ||| 0-0 ||| 72 524574 +los ||| what anyone ||| 0.5 0.0185725 1.90631e-06 1.51954e-07 2.718 ||| 0-0 0-1 ||| 2 524574 +los ||| what are described as the ||| 1 0.122289 1.90631e-06 4.15611e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| what are known as the ||| 0.05 0.122289 1.90631e-06 1.02598e-11 2.718 ||| 0-4 ||| 20 524574 +los ||| what are possibly soon to be ||| 1 0.0061209 1.90631e-06 9.70829e-17 2.718 ||| 0-0 ||| 1 524574 +los ||| what are possibly soon to ||| 1 0.0061209 1.90631e-06 5.35692e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| what are possibly soon ||| 1 0.0061209 1.90631e-06 6.02862e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| what are possibly ||| 1 0.0061209 1.90631e-06 6.54573e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| what are referred to as ||| 0.0555556 0.0061209 1.90631e-06 1.26224e-12 2.718 ||| 0-0 ||| 18 524574 +los ||| what are referred to ||| 0.0588235 0.0061209 1.90631e-06 1.23696e-10 2.718 ||| 0-0 ||| 17 524574 +los ||| what are referred ||| 0.0588235 0.0061209 1.90631e-06 1.39206e-09 2.718 ||| 0-0 ||| 17 524574 +los ||| what are the ||| 0.00858369 0.122289 7.62523e-06 9.13197e-06 2.718 ||| 0-2 ||| 466 524574 +los ||| what are ||| 0.00779423 0.0061209 1.90631e-05 1.45461e-05 2.718 ||| 0-0 ||| 1283 524574 +los ||| what can only be described as ||| 0.0833333 0.0061209 1.90631e-06 2.61789e-17 2.718 ||| 0-0 ||| 12 524574 +los ||| what can only be described ||| 0.2 0.0061209 1.90631e-06 2.56545e-15 2.718 ||| 0-0 ||| 5 524574 +los ||| what can only be ||| 0.0909091 0.0061209 1.90631e-06 5.75214e-11 2.718 ||| 0-0 ||| 11 524574 +los ||| what can only ||| 0.1 0.0061209 1.90631e-06 3.17396e-09 2.718 ||| 0-0 ||| 10 524574 +los ||| what can ||| 0.00232019 0.0061209 1.90631e-06 2.85146e-06 2.718 ||| 0-0 ||| 431 524574 +los ||| what could be ||| 0.00675676 0.0061209 1.90631e-06 1.2355e-08 2.718 ||| 0-0 ||| 148 524574 +los ||| what could ||| 0.0052356 0.0061209 1.90631e-06 6.81732e-07 2.718 ||| 0-0 ||| 191 524574 +los ||| what criteria she must ||| 1 0.0061209 1.90631e-06 1.28907e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| what criteria she ||| 0.5 0.0061209 1.90631e-06 8.34029e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| what criteria ||| 0.0185185 0.0061209 1.90631e-06 2.93362e-08 2.718 ||| 0-0 ||| 54 524574 +los ||| what do we see ? the ||| 1 0.122289 1.90631e-06 2.82641e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| what evidently makes ||| 0.333333 0.0061209 1.90631e-06 1.57997e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| what evidently ||| 0.333333 0.0061209 1.90631e-06 9.29939e-09 2.718 ||| 0-0 ||| 3 524574 +los ||| what followed did ||| 0.5 0.0061209 1.90631e-06 3.11776e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| what followed ||| 0.25 0.0061209 1.90631e-06 6.86429e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| what further ||| 0.0208333 0.0061209 1.90631e-06 4.6334e-07 2.718 ||| 0-0 ||| 48 524574 +los ||| what goes on in ||| 0.0263158 0.0061209 1.90631e-06 1.90164e-11 2.718 ||| 0-0 ||| 38 524574 +los ||| what goes on ||| 0.0140845 0.0061209 1.90631e-06 8.88431e-10 2.718 ||| 0-0 ||| 71 524574 +los ||| what goes ||| 0.0222222 0.0061209 1.90631e-06 1.3278e-07 2.718 ||| 0-0 ||| 45 524574 +los ||| what had to be ||| 0.0769231 0.0061209 1.90631e-06 1.54957e-09 2.718 ||| 0-0 ||| 13 524574 +los ||| what had to ||| 0.0909091 0.0061209 1.90631e-06 8.55036e-08 2.718 ||| 0-0 ||| 11 524574 +los ||| what had ||| 0.0119048 0.0061209 1.90631e-06 9.62247e-07 2.718 ||| 0-0 ||| 84 524574 +los ||| what has already been ||| 0.00588235 0.0061209 1.90631e-06 7.63126e-12 2.718 ||| 0-0 ||| 170 524574 +los ||| what has already ||| 0.0185185 0.0061209 1.90631e-06 2.28536e-09 2.718 ||| 0-0 ||| 54 524574 +los ||| what has been described as the ||| 0.5 0.122289 1.90631e-06 4.70829e-15 2.718 ||| 0-5 ||| 2 524574 +los ||| what has been done to ||| 0.0555556 0.0061209 1.90631e-06 6.67704e-13 2.718 ||| 0-0 ||| 18 524574 +los ||| what has been done ||| 0.00549451 0.0061209 1.90631e-06 7.51426e-12 2.718 ||| 0-0 ||| 182 524574 +los ||| what has been the ||| 0.0384615 0.122289 1.90631e-06 1.03452e-08 2.718 ||| 0-3 ||| 26 524574 +los ||| what has been ||| 0.00485437 0.0061209 1.14379e-05 1.64786e-08 2.718 ||| 0-0 ||| 1236 524574 +los ||| what has gone ||| 0.0416667 0.0061209 1.90631e-06 3.08925e-10 2.718 ||| 0-0 ||| 24 524574 +los ||| what has ||| 0.0142857 0.0061209 4.57514e-05 4.93491e-06 2.718 ||| 0-0 ||| 1680 524574 +los ||| what implementing acts are under the terms ||| 1 0.122289 1.90631e-06 5.8934e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| what implementing acts are under the ||| 1 0.122289 1.90631e-06 5.36935e-18 2.718 ||| 0-5 ||| 1 524574 +los ||| what is actually ||| 0.010989 0.0061209 1.90631e-06 1.24033e-08 2.718 ||| 0-0 ||| 91 524574 +los ||| what is at ||| 0.0177215 0.0061209 1.33442e-05 1.25818e-07 2.718 ||| 0-0 ||| 395 524574 +los ||| what is being ||| 0.0026178 0.0061209 1.90631e-06 8.55069e-08 2.718 ||| 0-0 ||| 382 524574 +los ||| what is going ||| 0.00436681 0.0061209 1.90631e-06 2.5714e-08 2.718 ||| 0-0 ||| 229 524574 +los ||| what is happening in the ||| 0.00714286 0.122289 1.90631e-06 2.19241e-11 2.718 ||| 0-4 ||| 140 524574 +los ||| what is in many ways ||| 1 0.0029977 1.90631e-06 1.27939e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| what is in many ||| 1 0.0029977 1.90631e-06 1.32717e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| what is in the ||| 0.0277778 0.122289 3.81262e-06 4.03758e-07 2.718 ||| 0-3 ||| 72 524574 +los ||| what is known as the ||| 0.0078125 0.122289 1.90631e-06 2.11929e-11 2.718 ||| 0-4 ||| 128 524574 +los ||| what is meant by both ||| 1 0.0061209 1.90631e-06 2.07741e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| what is meant by ||| 0.00735294 0.0061209 1.90631e-06 1.2541e-11 2.718 ||| 0-0 ||| 136 524574 +los ||| what is meant ||| 0.00649351 0.0061209 1.90631e-06 2.38871e-09 2.718 ||| 0-0 ||| 154 524574 +los ||| what is more , the ||| 0.00534759 0.122289 1.90631e-06 5.13725e-09 2.718 ||| 0-4 ||| 187 524574 +los ||| what is more , these ||| 0.0588235 0.0240362 1.90631e-06 2.91919e-11 2.718 ||| 0-4 ||| 17 524574 +los ||| what is needed ||| 0.00137931 0.0061209 1.90631e-06 4.02325e-09 2.718 ||| 0-0 ||| 725 524574 +los ||| what is to ||| 0.00719424 0.0061209 1.90631e-06 2.6699e-06 2.718 ||| 0-0 ||| 139 524574 +los ||| what is understood by ||| 0.2 0.0061209 1.90631e-06 3.69131e-12 2.718 ||| 0-0 ||| 5 524574 +los ||| what is understood ||| 0.142857 0.0061209 1.90631e-06 7.03093e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| what is ||| 0.00432167 0.0061209 9.72217e-05 3.00467e-05 2.718 ||| 0-0 ||| 11801 524574 +los ||| what it had ||| 0.0769231 0.0061209 1.90631e-06 1.71118e-08 2.718 ||| 0-0 ||| 13 524574 +los ||| what it was ||| 0.00970874 0.0061209 1.90631e-06 5.34137e-08 2.718 ||| 0-0 ||| 103 524574 +los ||| what it ||| 0.00721732 0.0061209 1.71568e-05 1.70488e-05 2.718 ||| 0-0 ||| 1247 524574 +los ||| what its ||| 0.0263158 0.013629 3.81262e-06 2.04692e-06 2.718 ||| 0-0 0-1 ||| 76 524574 +los ||| what kind of ||| 0.0021978 0.0019787 1.90631e-06 2.26476e-09 2.718 ||| 0-2 ||| 455 524574 +los ||| what kind ||| 0.002 0.0061209 1.90631e-06 4.67846e-07 2.718 ||| 0-0 ||| 500 524574 +los ||| what kinds ||| 0.0454545 0.0061209 1.90631e-06 4.55383e-08 2.718 ||| 0-0 ||| 22 524574 +los ||| what might be incorporated ||| 1 0.0061209 1.90631e-06 1.3477e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| what might be ||| 0.010989 0.0061209 1.90631e-06 6.67178e-09 2.718 ||| 0-0 ||| 91 524574 +los ||| what might become ||| 0.5 0.0061209 1.90631e-06 1.05178e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| what might ||| 0.0131579 0.0061209 3.81262e-06 3.68141e-07 2.718 ||| 0-0 ||| 152 524574 +los ||| what of the ||| 0.0833333 0.0434629 1.90631e-06 1.36022e-06 2.718 ||| 0-0 0-1 0-2 ||| 12 524574 +los ||| what our ||| 0.00784314 0.0248369 3.81262e-06 5.01061e-06 2.718 ||| 0-1 ||| 255 524574 +los ||| what procedures ||| 0.0416667 0.219824 1.90631e-06 3.33405e-06 2.718 ||| 0-1 ||| 24 524574 +los ||| what seem to be the ||| 0.333333 0.122289 1.90631e-06 8.85876e-11 2.718 ||| 0-4 ||| 3 524574 +los ||| what should happen if ||| 0.25 0.0061209 1.90631e-06 3.85845e-13 2.718 ||| 0-0 ||| 4 524574 +los ||| what should happen ||| 0.0212766 0.0061209 1.90631e-06 4.61758e-10 2.718 ||| 0-0 ||| 47 524574 +los ||| what should ||| 0.00227273 0.0061209 1.90631e-06 4.248e-06 2.718 ||| 0-0 ||| 440 524574 +los ||| what sort of return ||| 1 0.0061209 1.90631e-06 5.54683e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| what sort of ||| 0.00408163 0.0061209 1.90631e-06 8.32858e-09 2.718 ||| 0-0 ||| 245 524574 +los ||| what sort ||| 0.00364964 0.0061209 1.90631e-06 1.532e-07 2.718 ||| 0-0 ||| 274 524574 +los ||| what steps ||| 0.00384615 0.0024674 1.90631e-06 1.90822e-08 2.718 ||| 0-1 ||| 260 524574 +los ||| what the amendment ||| 0.25 0.122289 1.90631e-06 3.8339e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| what the problem is ||| 0.0454545 0.122289 1.90631e-06 4.24234e-09 2.718 ||| 0-1 ||| 22 524574 +los ||| what the problem ||| 0.0625 0.122289 1.90631e-06 1.3536e-07 2.718 ||| 0-1 ||| 16 524574 +los ||| what the ||| 0.0188096 0.122289 0.000139161 0.000601869 2.718 ||| 0-1 ||| 3881 524574 +los ||| what these ||| 0.0111111 0.0240362 1.90631e-06 3.42006e-06 2.718 ||| 0-1 ||| 90 524574 +los ||| what they are ||| 0.00729927 0.0061209 5.71893e-06 4.74784e-08 2.718 ||| 0-0 ||| 411 524574 +los ||| what they have ||| 0.00431034 0.0072404 1.90631e-06 1.37368e-08 2.718 ||| 0-1 ||| 232 524574 +los ||| what they were able to ||| 1 0.0072404 1.90631e-06 1.52646e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| what they were able ||| 1 0.0072404 1.90631e-06 1.71786e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| what they were ||| 0.0327869 0.00668065 3.81262e-06 1.40588e-09 2.718 ||| 0-0 0-1 ||| 61 524574 +los ||| what they ||| 0.00897868 0.00668065 1.52505e-05 7.84792e-07 2.718 ||| 0-0 0-1 ||| 891 524574 +los ||| what those ||| 0.0263158 0.284705 1.90631e-06 2.34284e-05 2.718 ||| 0-1 ||| 38 524574 +los ||| what was ||| 0.00571837 0.0061209 1.52505e-05 3.00361e-06 2.718 ||| 0-0 ||| 1399 524574 +los ||| what we can expect to have to ||| 0.5 0.0061209 1.90631e-06 1.62929e-16 2.718 ||| 0-0 ||| 2 524574 +los ||| what we can expect to have ||| 0.5 0.0061209 1.90631e-06 1.83358e-15 2.718 ||| 0-0 ||| 2 524574 +los ||| what we can expect to ||| 0.5 0.0061209 1.90631e-06 1.53312e-13 2.718 ||| 0-0 ||| 2 524574 +los ||| what we can expect ||| 0.047619 0.0061209 1.90631e-06 1.72536e-12 2.718 ||| 0-0 ||| 21 524574 +los ||| what we can ||| 0.00323625 0.0061209 3.81262e-06 3.23706e-08 2.718 ||| 0-0 ||| 618 524574 +los ||| what we have at the moment is ||| 0.166667 0.122289 1.90631e-06 1.93788e-15 2.718 ||| 0-4 ||| 6 524574 +los ||| what we have at the moment ||| 0.0714286 0.122289 1.90631e-06 6.18318e-14 2.718 ||| 0-4 ||| 14 524574 +los ||| what we have at the ||| 0.0833333 0.122289 1.90631e-06 3.42179e-10 2.718 ||| 0-4 ||| 12 524574 +los ||| what we have in ||| 0.02 0.0061209 1.90631e-06 2.78609e-09 2.718 ||| 0-0 ||| 50 524574 +los ||| what we have ||| 0.00225479 0.0061209 7.62523e-06 1.30164e-07 2.718 ||| 0-0 ||| 1774 524574 +los ||| what we want ||| 0.00174825 0.0061209 1.90631e-06 5.08801e-09 2.718 ||| 0-0 ||| 572 524574 +los ||| what we ||| 0.00311086 0.0061209 2.09694e-05 1.08835e-05 2.718 ||| 0-0 ||| 3536 524574 +los ||| what were ||| 0.0361446 0.0061209 5.71893e-06 1.71742e-06 2.718 ||| 0-0 ||| 83 524574 +los ||| what will be the ||| 0.00869565 0.122289 1.90631e-06 9.43639e-08 2.718 ||| 0-3 ||| 115 524574 +los ||| what will continue ||| 1 0.0061209 1.90631e-06 1.91921e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| what will happen to the ||| 0.0434783 0.122289 1.90631e-06 5.02927e-11 2.718 ||| 0-4 ||| 23 524574 +los ||| what will lead to the serious distortions ||| 1 0.0061209 1.90631e-06 4.31438e-21 2.718 ||| 0-0 ||| 1 524574 +los ||| what will lead to the serious ||| 1 0.0061209 1.90631e-06 1.00334e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| what will lead to the ||| 1 0.0061209 1.90631e-06 8.70959e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| what will lead to ||| 1 0.0061209 1.90631e-06 1.41869e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| what will lead ||| 1 0.0061209 1.90631e-06 1.59658e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| what will ||| 0.00796813 0.0061209 7.62523e-06 8.29391e-06 2.718 ||| 0-0 ||| 502 524574 +los ||| what would at least be the ||| 1 0.122289 1.90631e-06 6.57795e-14 2.718 ||| 0-5 ||| 1 524574 +los ||| what you ||| 0.000684463 0.0061209 1.90631e-06 3.09535e-06 2.718 ||| 0-0 ||| 1461 524574 +los ||| what ||| 0.00525354 0.0061209 0.000865464 0.0009587 2.718 ||| 0-0 ||| 86418 524574 +los ||| whatever follows ||| 0.25 0.0237332 1.90631e-06 3.96169e-09 2.718 ||| 0-1 ||| 4 524574 +los ||| whatever is ||| 0.010101 0.0043318 1.90631e-06 8.24271e-07 2.718 ||| 0-0 ||| 99 524574 +los ||| whatever our ||| 0.0166667 0.0248369 1.90631e-06 1.96768e-07 2.718 ||| 0-1 ||| 60 524574 +los ||| whatever ||| 0.00521853 0.0043318 3.05009e-05 2.63e-05 2.718 ||| 0-0 ||| 3066 524574 +los ||| wheeled agricultural or forestry ||| 0.025641 0.0246734 1.90631e-06 1.61931e-18 2.718 ||| 0-3 ||| 39 524574 +los ||| wheels ||| 0.0149254 0.0108696 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 67 524574 +los ||| when I put the ||| 0.5 0.122289 1.90631e-06 1.67243e-09 2.718 ||| 0-3 ||| 2 524574 +los ||| when I ||| 0.000816327 0.0006199 1.90631e-06 2.61012e-07 2.718 ||| 0-0 ||| 1225 524574 +los ||| when adjusting the ||| 0.5 0.122289 1.90631e-06 3.00209e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| when advanced ||| 1 0.002271 1.90631e-06 1.44971e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| when assessing the ||| 0.0172414 0.122289 1.90631e-06 9.22072e-10 2.718 ||| 0-2 ||| 58 524574 +los ||| when it comes to approving funds ||| 0.166667 0.220459 1.90631e-06 5.90922e-18 2.718 ||| 0-5 ||| 6 524574 +los ||| when it comes ||| 0.000214546 0.0006199 1.90631e-06 2.62349e-10 2.718 ||| 0-0 ||| 4661 524574 +los ||| when it ||| 0.000348008 0.0006199 3.81262e-06 6.562e-07 2.718 ||| 0-0 ||| 5747 524574 +los ||| when large numbers of ||| 0.333333 0.0019787 1.90631e-06 1.24274e-14 2.718 ||| 0-3 ||| 3 524574 +los ||| when such agreements ||| 1 0.199336 1.90631e-06 3.26097e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| when talks begin on the ||| 0.5 0.122289 1.90631e-06 2.22636e-15 2.718 ||| 0-4 ||| 2 524574 +los ||| when the ' ||| 0.125 0.122289 1.90631e-06 7.36564e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| when the Commission included in the recovery ||| 1 0.0614546 1.90631e-06 1.51726e-20 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| when the Commission included in the ||| 1 0.0614546 1.90631e-06 1.1408e-15 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| when the Commission included in ||| 1 0.0614546 1.90631e-06 1.85822e-14 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| when the Commission included ||| 1 0.0614546 1.90631e-06 8.68145e-13 2.718 ||| 0-0 0-1 ||| 1 524574 +los ||| when the Commission ||| 0.00230947 0.0614546 1.90631e-06 9.24542e-09 2.718 ||| 0-0 0-1 ||| 433 524574 +los ||| when the treaty has not yet been ||| 1 0.0006199 1.90631e-06 9.24769e-22 2.718 ||| 0-0 ||| 1 524574 +los ||| when the treaty has not yet ||| 1 0.0006199 1.90631e-06 2.76943e-19 2.718 ||| 0-0 ||| 1 524574 +los ||| when the treaty has not ||| 1 0.0006199 1.90631e-06 1.04704e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| when the treaty has ||| 1 0.0006199 1.90631e-06 3.06682e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| when the treaty ||| 0.333333 0.0006199 1.90631e-06 5.95789e-11 2.718 ||| 0-0 ||| 3 524574 +los ||| when the ||| 0.00275314 0.122289 3.43136e-05 0.000214435 2.718 ||| 0-1 ||| 6538 524574 +los ||| when they are ||| 0.00172117 0.0072404 1.90631e-06 6.20894e-09 2.718 ||| 0-1 ||| 581 524574 +los ||| when they ||| 0.000728332 0.0072404 1.90631e-06 4.09218e-07 2.718 ||| 0-1 ||| 1373 524574 +los ||| when we discuss his ||| 0.5 0.0058818 1.90631e-06 4.09638e-14 2.718 ||| 0-3 ||| 2 524574 +los ||| when we get into the ||| 1 0.122289 1.90631e-06 1.09271e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| when we have ||| 0.00192308 0.0014565 1.90631e-06 5.20805e-09 2.718 ||| 0-1 ||| 520 524574 +los ||| when we talk of ||| 0.0142857 0.0006199 1.90631e-06 1.82868e-12 2.718 ||| 0-0 ||| 70 524574 +los ||| when we talk ||| 0.00574713 0.0006199 1.90631e-06 3.36377e-11 2.718 ||| 0-0 ||| 174 524574 +los ||| when we ||| 0.00109439 0.0014565 7.62523e-06 4.35463e-07 2.718 ||| 0-1 ||| 3655 524574 +los ||| when ||| 0.000309284 0.0006199 4.19388e-05 3.69e-05 2.718 ||| 0-0 ||| 71132 524574 +los ||| whenever ||| 0.00359066 0.0045429 7.62523e-06 7.8e-06 2.718 ||| 0-0 ||| 1114 524574 +los ||| where Christians ||| 0.0909091 0.340321 1.90631e-06 1.43471e-07 2.718 ||| 0-1 ||| 11 524574 +los ||| where I tried ||| 0.5 0.0449398 1.90631e-06 6.22887e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| where I ||| 0.00242131 0.0449398 1.90631e-06 1.56112e-05 2.718 ||| 0-0 ||| 413 524574 +los ||| where a common line ||| 0.5 0.0449398 1.90631e-06 6.65286e-12 2.718 ||| 0-0 ||| 2 524574 +los ||| where a common ||| 0.5 0.0449398 1.90631e-06 2.2598e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| where a ||| 0.00431965 0.0449398 3.81262e-06 9.7827e-05 2.718 ||| 0-0 ||| 463 524574 +los ||| where agreed deadlines are ||| 1 0.109218 1.90631e-06 4.92259e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| where agreed deadlines ||| 1 0.109218 1.90631e-06 3.24438e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| where and ||| 0.00840336 0.0449398 1.90631e-06 2.76447e-05 2.718 ||| 0-0 ||| 119 524574 +los ||| where any or ||| 0.25 0.0178119 1.90631e-06 3.19953e-10 2.718 ||| 0-1 ||| 4 524574 +los ||| where any ||| 0.0333333 0.0178119 1.90631e-06 2.79851e-07 2.718 ||| 0-1 ||| 30 524574 +los ||| where are ||| 0.00546448 0.0449398 1.90631e-06 3.34861e-05 2.718 ||| 0-0 ||| 183 524574 +los ||| where different rules apply ||| 0.333333 0.0449398 1.90631e-06 8.12618e-15 2.718 ||| 0-0 ||| 3 524574 +los ||| where different rules ||| 1 0.0449398 1.90631e-06 5.6471e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| where different ||| 0.0833333 0.0449398 1.90631e-06 4.85981e-07 2.718 ||| 0-0 ||| 12 524574 +los ||| where intermodal transport ||| 1 0.0449398 1.90631e-06 2.4981e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| where intermodal ||| 1 0.0449398 1.90631e-06 2.4277e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| where it is ||| 0.003367 0.0449398 3.81262e-06 1.23006e-06 2.718 ||| 0-0 ||| 594 524574 +los ||| where it really is a ||| 0.5 0.0449398 1.90631e-06 2.64111e-11 2.718 ||| 0-0 ||| 2 524574 +los ||| where it really is ||| 0.142857 0.0449398 1.90631e-06 5.95841e-10 2.718 ||| 0-0 ||| 7 524574 +los ||| where it really ||| 0.111111 0.0449398 1.90631e-06 1.90115e-08 2.718 ||| 0-0 ||| 9 524574 +los ||| where it ||| 0.00431965 0.0449398 7.62523e-06 3.92475e-05 2.718 ||| 0-0 ||| 926 524574 +los ||| where necessary ||| 0.00416667 0.0449398 3.81262e-06 5.67861e-07 2.718 ||| 0-0 ||| 480 524574 +los ||| where our ||| 0.00699301 0.0248369 1.90631e-06 1.08204e-06 2.718 ||| 0-1 ||| 143 524574 +los ||| where the consumer has an additional ||| 1 0.122289 1.90631e-06 4.64058e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| where the consumer has an ||| 1 0.122289 1.90631e-06 8.77236e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| where the consumer has ||| 1 0.122289 1.90631e-06 1.97367e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| where the consumer ||| 0.111111 0.122289 1.90631e-06 3.83423e-09 2.718 ||| 0-1 ||| 9 524574 +los ||| where the cost ||| 0.0625 0.122289 1.90631e-06 1.07618e-08 2.718 ||| 0-1 ||| 16 524574 +los ||| where the situation is ||| 0.037037 0.122289 1.90631e-06 2.09786e-09 2.718 ||| 0-1 ||| 27 524574 +los ||| where the situation ||| 0.0204082 0.122289 1.90631e-06 6.69365e-08 2.718 ||| 0-1 ||| 49 524574 +los ||| where the ||| 0.00349176 0.122289 3.43136e-05 0.000129974 2.718 ||| 0-1 ||| 5155 524574 +los ||| where there are ||| 0.004158 0.0449398 3.81262e-06 1.02645e-07 2.718 ||| 0-0 ||| 481 524574 +los ||| where there is a ||| 0.00358423 0.0449398 1.90631e-06 9.39823e-09 2.718 ||| 0-0 ||| 279 524574 +los ||| where there is ||| 0.00220751 0.0449398 3.81262e-06 2.12026e-07 2.718 ||| 0-0 ||| 906 524574 +los ||| where there ||| 0.00573066 0.0449398 7.62523e-06 6.76512e-06 2.718 ||| 0-0 ||| 698 524574 +los ||| where these premiums ||| 1 0.0449398 1.90631e-06 7.32442e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| where these ||| 0.00653595 0.0449398 1.90631e-06 2.28888e-06 2.718 ||| 0-0 ||| 153 524574 +los ||| where they ||| 0.00119332 0.0449398 1.90631e-06 7.20365e-06 2.718 ||| 0-0 ||| 838 524574 +los ||| where things are ||| 0.0714286 0.0449398 1.90631e-06 1.37628e-08 2.718 ||| 0-0 ||| 14 524574 +los ||| where things ||| 0.0212766 0.0449398 1.90631e-06 9.07077e-07 2.718 ||| 0-0 ||| 47 524574 +los ||| where we are ||| 0.00286533 0.0449398 1.90631e-06 3.80145e-07 2.718 ||| 0-0 ||| 349 524574 +los ||| where we have bargaining ||| 1 0.0449398 1.90631e-06 5.39365e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| where we have ||| 0.00198413 0.0449398 1.90631e-06 2.99647e-07 2.718 ||| 0-0 ||| 504 524574 +los ||| where we ||| 0.00254777 0.0449398 7.62523e-06 2.50545e-05 2.718 ||| 0-0 ||| 1570 524574 +los ||| where you are ||| 0.027027 0.0449398 1.90631e-06 1.08117e-07 2.718 ||| 0-0 ||| 37 524574 +los ||| where you ||| 0.00518135 0.0449398 1.90631e-06 7.12574e-06 2.718 ||| 0-0 ||| 193 524574 +los ||| where ||| 0.00250331 0.0449398 0.000194443 0.002207 2.718 ||| 0-0 ||| 40746 524574 +los ||| whereas the amount ||| 0.5 0.122289 1.90631e-06 1.99337e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| whereas the ||| 0.00434783 0.122289 3.81262e-06 8.19307e-06 2.718 ||| 0-1 ||| 460 524574 +los ||| whereby the ||| 0.00573614 0.122289 5.71893e-06 1.38982e-05 2.718 ||| 0-1 ||| 523 524574 +los ||| whereby ||| 0.000395101 0.0044278 1.90631e-06 1.26e-05 2.718 ||| 0-0 ||| 2531 524574 +los ||| wherever possible the ||| 1 0.122289 1.90631e-06 2.85575e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| whether all Members have now received this ||| 1 0.168879 1.90631e-06 8.54175e-20 2.718 ||| 0-2 ||| 1 524574 +los ||| whether all Members have now received ||| 1 0.168879 1.90631e-06 1.32197e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| whether all Members have now ||| 1 0.168879 1.90631e-06 1.47541e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| whether all Members have ||| 1 0.168879 1.90631e-06 7.16252e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| whether all Members ||| 1 0.168879 1.90631e-06 5.98883e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| whether or not the ||| 0.0120482 0.122289 1.90631e-06 4.39855e-10 2.718 ||| 0-3 ||| 83 524574 +los ||| whether the ||| 0.0011422 0.122289 7.62523e-06 0.000112687 2.718 ||| 0-1 ||| 3502 524574 +los ||| whether there ||| 0.00552486 0.0026918 1.90631e-06 9.65422e-08 2.718 ||| 0-1 ||| 181 524574 +los ||| whether these are the ||| 1 0.122289 1.90631e-06 1.7732e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| whether these ||| 0.00358423 0.0240362 1.90631e-06 6.40331e-07 2.718 ||| 0-1 ||| 279 524574 +los ||| whether they have to do with ||| 1 0.0007437 1.90631e-06 7.24369e-16 2.718 ||| 0-5 ||| 1 524574 +los ||| whether ||| 0.000162252 0.0001953 7.62523e-06 4.9e-06 2.718 ||| 0-0 ||| 24653 524574 +los ||| which ? ||| 0.1 0.0001231 1.90631e-06 5.8106e-09 2.718 ||| 0-0 ||| 10 524574 +los ||| which I mean the law ||| 0.333333 0.122289 1.90631e-06 1.171e-12 2.718 ||| 0-3 ||| 3 524574 +los ||| which I mean the ||| 0.0253165 0.122289 3.81262e-06 6.64209e-09 2.718 ||| 0-3 ||| 79 524574 +los ||| which affects the ||| 0.0149254 0.122289 1.90631e-06 6.04873e-08 2.718 ||| 0-2 ||| 67 524574 +los ||| which all ||| 0.0015361 0.0177928 1.90631e-06 2.2836e-05 2.718 ||| 0-1 ||| 651 524574 +los ||| which are accepted by the ||| 0.5 0.122289 1.90631e-06 1.7851e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| which are all areas ||| 0.5 0.0177928 1.90631e-06 7.93103e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| which are all ||| 0.031746 0.0177928 3.81262e-06 3.46484e-07 2.718 ||| 0-2 ||| 63 524574 +los ||| which are not the same ||| 0.333333 0.122289 1.90631e-06 1.5189e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| which are not the ||| 0.0714286 0.122289 1.90631e-06 1.88754e-07 2.718 ||| 0-3 ||| 14 524574 +los ||| which are the very ||| 0.111111 0.122289 1.90631e-06 1.92369e-07 2.718 ||| 0-2 ||| 9 524574 +los ||| which are the wish ||| 1 0.122289 1.90631e-06 1.62929e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| which are the ||| 0.0225873 0.122289 2.09694e-05 5.52865e-05 2.718 ||| 0-2 ||| 487 524574 +los ||| which are to the ||| 0.166667 0.122289 1.90631e-06 4.91266e-06 2.718 ||| 0-3 ||| 6 524574 +los ||| which are your responsibilities as a ||| 1 0.0096341 1.90631e-06 4.27621e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| which are your responsibilities as ||| 1 0.0096341 1.90631e-06 9.64724e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| which are your responsibilities ||| 1 0.0096341 1.90631e-06 9.454e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| which are your ||| 1 0.0096341 1.90631e-06 3.97227e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| which are ||| 0.000284306 0.0005024 5.71893e-06 1.53582e-06 2.718 ||| 0-1 ||| 10552 524574 +los ||| which benefits the ||| 0.0714286 0.122289 1.90631e-06 1.44295e-07 2.718 ||| 0-2 ||| 14 524574 +los ||| which can achieve the ||| 0.333333 0.122289 1.90631e-06 2.47644e-09 2.718 ||| 0-3 ||| 3 524574 +los ||| which case the ||| 0.0952381 0.122289 3.81262e-06 3.89851e-06 2.718 ||| 0-2 ||| 21 524574 +los ||| which concern ||| 0.00403226 0.0001231 1.90631e-06 4.539e-09 2.718 ||| 0-0 ||| 248 524574 +los ||| which deals ||| 0.0070922 0.0102166 1.90631e-06 2.06419e-07 2.718 ||| 0-1 ||| 141 524574 +los ||| which efforts ||| 0.142857 0.101547 1.90631e-06 1.44204e-05 2.718 ||| 0-1 ||| 7 524574 +los ||| which exists among the ||| 1 0.0712548 1.90631e-06 4.42841e-11 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| which form the ||| 0.0119048 0.122289 1.90631e-06 1.65866e-06 2.718 ||| 0-2 ||| 84 524574 +los ||| which future traffic flows can be directed ||| 1 0.335278 1.90631e-06 6.64306e-23 2.718 ||| 0-3 ||| 1 524574 +los ||| which future traffic flows can be ||| 1 0.335278 1.90631e-06 2.12238e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| which future traffic flows can ||| 1 0.335278 1.90631e-06 1.17111e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| which future traffic flows ||| 1 0.335278 1.90631e-06 3.93742e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| which goes beyond the ||| 0.0294118 0.122289 1.90631e-06 3.77996e-11 2.718 ||| 0-3 ||| 34 524574 +los ||| which goods ||| 0.0588235 0.0610169 1.90631e-06 3.27042e-06 2.718 ||| 0-1 ||| 17 524574 +los ||| which have the ||| 0.00813008 0.122289 1.90631e-06 4.35793e-05 2.718 ||| 0-2 ||| 123 524574 +los ||| which human ||| 0.25 0.319795 1.90631e-06 0.000165691 2.718 ||| 0-1 ||| 4 524574 +los ||| which in many ||| 0.0212766 0.0029977 1.90631e-06 2.5637e-08 2.718 ||| 0-2 ||| 47 524574 +los ||| which include ||| 0.0052356 0.0092135 3.81262e-06 7.84901e-07 2.718 ||| 0-1 ||| 382 524574 +los ||| which is at ||| 0.00641026 0.0001231 1.90631e-06 4.46208e-09 2.718 ||| 0-0 ||| 156 524574 +los ||| which is in the ||| 0.0117647 0.122289 1.90631e-06 2.44442e-06 2.718 ||| 0-3 ||| 85 524574 +los ||| which is that the ||| 0.0111111 0.122289 1.90631e-06 1.92104e-06 2.718 ||| 0-3 ||| 90 524574 +los ||| which is the ||| 0.00231696 0.122289 9.53154e-06 0.000114201 2.718 ||| 0-2 ||| 2158 524574 +los ||| which is what ||| 0.00238663 0.0061209 1.90631e-06 2.55235e-07 2.718 ||| 0-2 ||| 419 524574 +los ||| which is ||| 3.61415e-05 0.0001231 1.90631e-06 1.0656e-06 2.718 ||| 0-0 ||| 27669 524574 +los ||| which issues ||| 0.0277778 0.0401532 1.90631e-06 9.52245e-06 2.718 ||| 0-1 ||| 36 524574 +los ||| which kill the ||| 1 0.122289 1.90631e-06 1.56684e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| which means they ||| 0.030303 0.0072404 1.90631e-06 4.40655e-09 2.718 ||| 0-2 ||| 33 524574 +los ||| which one of the ||| 0.0416667 0.122289 1.90631e-06 8.25648e-07 2.718 ||| 0-3 ||| 24 524574 +los ||| which our ||| 0.00188324 0.0248369 1.90631e-06 3.03351e-05 2.718 ||| 0-1 ||| 531 524574 +los ||| which patients are ||| 1 0.0005024 1.90631e-06 8.29345e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| which people resort ||| 0.5 0.0894672 1.90631e-06 1.03691e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| which people ||| 0.00520833 0.0894672 3.81262e-06 6.68975e-05 2.718 ||| 0-1 ||| 384 524574 +los ||| which producers they are ||| 1 0.36135 1.90631e-06 1.06387e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| which producers they ||| 1 0.36135 1.90631e-06 7.01172e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| which producers ||| 0.05 0.36135 1.90631e-06 2.1482e-05 2.718 ||| 0-1 ||| 20 524574 +los ||| which risks ||| 0.0208333 0.125803 1.90631e-06 5.98784e-06 2.718 ||| 0-1 ||| 48 524574 +los ||| which specifies the ||| 0.0909091 0.122289 1.90631e-06 4.00819e-09 2.718 ||| 0-2 ||| 11 524574 +los ||| which stand in the way ||| 0.25 0.122289 1.90631e-06 2.77068e-11 2.718 ||| 0-3 ||| 4 524574 +los ||| which stand in the ||| 0.166667 0.122289 1.90631e-06 1.28534e-08 2.718 ||| 0-3 ||| 6 524574 +los ||| which states ||| 0.00166667 0.118291 1.90631e-06 1.28506e-05 2.718 ||| 0-1 ||| 600 524574 +los ||| which still go on ||| 1 0.0006914 1.90631e-06 1.33501e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| which the Commission and ||| 0.0116279 0.122289 1.90631e-06 2.66595e-08 2.718 ||| 0-1 ||| 86 524574 +los ||| which the Commission is ||| 0.00526316 0.122289 1.90631e-06 6.67049e-08 2.718 ||| 0-1 ||| 190 524574 +los ||| which the Commission ||| 0.00102987 0.122289 3.81262e-06 2.12835e-06 2.718 ||| 0-1 ||| 1942 524574 +los ||| which the European ||| 0.0104167 0.0034168 1.90631e-06 5.94248e-07 2.718 ||| 0-2 ||| 96 524574 +los ||| which the environmental ||| 0.5 0.0687033 1.90631e-06 1.26477e-06 2.718 ||| 0-1 0-2 ||| 2 524574 +los ||| which the forms ||| 0.5 0.122289 1.90631e-06 3.25028e-07 2.718 ||| 0-1 ||| 2 524574 +los ||| which the rationale ||| 1 0.122289 1.90631e-06 1.56684e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| which the relevant ||| 0.2 0.122289 1.90631e-06 3.92074e-07 2.718 ||| 0-1 ||| 5 524574 +los ||| which the use ||| 0.0714286 0.122289 1.90631e-06 1.77162e-06 2.718 ||| 0-1 ||| 14 524574 +los ||| which the ||| 0.011214 0.122289 0.000295478 0.00364381 2.718 ||| 0-1 ||| 13822 524574 +los ||| which there are ||| 0.00597015 0.0026918 3.81262e-06 4.73656e-08 2.718 ||| 0-1 ||| 335 524574 +los ||| which there has been ||| 0.0243902 0.0026918 1.90631e-06 5.36586e-11 2.718 ||| 0-1 ||| 41 524574 +los ||| which there has ||| 0.0434783 0.0026918 1.90631e-06 1.60693e-08 2.718 ||| 0-1 ||| 23 524574 +los ||| which there ||| 0.00623701 0.0026918 5.71893e-06 3.12177e-06 2.718 ||| 0-1 ||| 481 524574 +los ||| which these intentions are to be carried ||| 1 0.0240362 1.90631e-06 1.66984e-18 2.718 ||| 0-1 ||| 1 524574 +los ||| which these intentions are to be ||| 1 0.0240362 1.90631e-06 5.66622e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| which these intentions are to ||| 1 0.0240362 1.90631e-06 3.12655e-13 2.718 ||| 0-1 ||| 1 524574 +los ||| which these intentions are ||| 1 0.0240362 1.90631e-06 3.51859e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| which these intentions ||| 1 0.0240362 1.90631e-06 2.31903e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| which these major ||| 1 0.0240362 1.90631e-06 2.0043e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| which these ||| 0.0216718 0.0240362 1.33442e-05 2.07056e-05 2.718 ||| 0-1 ||| 323 524574 +los ||| which they describe ||| 0.1 0.0072404 1.90631e-06 1.70365e-10 2.718 ||| 0-1 ||| 10 524574 +los ||| which they ||| 0.000693001 0.0072404 1.90631e-06 6.95368e-06 2.718 ||| 0-1 ||| 1443 524574 +los ||| which uses the ||| 0.0909091 0.122289 1.90631e-06 6.70461e-08 2.718 ||| 0-2 ||| 11 524574 +los ||| which was pushing the ||| 1 0.122289 1.90631e-06 1.51834e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| which was the ||| 0.00341297 0.122289 1.90631e-06 1.14161e-05 2.718 ||| 0-2 ||| 293 524574 +los ||| which we ||| 0.000151722 0.0014565 1.90631e-06 7.39965e-06 2.718 ||| 0-1 ||| 6591 524574 +los ||| which would worry the ||| 1 0.122289 1.90631e-06 1.38999e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| which ||| 8.36797e-05 0.0001231 5.14703e-05 3.4e-05 2.718 ||| 0-0 ||| 322659 524574 +los ||| whichever ||| 0.0127389 0.0091185 3.81262e-06 2.9e-06 2.718 ||| 0-0 ||| 157 524574 +los ||| while observing the ||| 0.142857 0.122289 1.90631e-06 6.07677e-10 2.718 ||| 0-2 ||| 7 524574 +los ||| while the ||| 0.00397 0.122289 1.71568e-05 7.99575e-05 2.718 ||| 0-1 ||| 2267 524574 +los ||| while watching the ||| 0.25 0.122289 1.90631e-06 8.63541e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| while ||| 0.000174561 0.0001882 5.71893e-06 4.9e-06 2.718 ||| 0-0 ||| 17186 524574 +los ||| white chargers ||| 1 0.305556 1.90631e-06 9.63e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| white ||| 0.00171527 0.0014472 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 583 524574 +los ||| white-collar ||| 0.0714286 0.151515 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 14 524574 +los ||| whites , ||| 0.25 0.166667 1.90631e-06 5.84348e-07 2.718 ||| 0-0 ||| 4 524574 +los ||| whites ||| 0.0454545 0.166667 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 22 524574 +los ||| who are bearing the ||| 0.333333 0.122289 1.90631e-06 2.56023e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| who are still here in the ||| 0.5 0.122289 1.90631e-06 1.87666e-13 2.718 ||| 0-5 ||| 2 524574 +los ||| who are the ||| 0.02 0.122289 9.53154e-06 5.74043e-06 2.718 ||| 0-2 ||| 250 524574 +los ||| who are to ||| 0.05 0.0016142 3.81262e-06 1.58551e-07 2.718 ||| 0-0 ||| 40 524574 +los ||| who are ||| 0.00288184 0.0016142 3.43136e-05 1.78431e-06 2.718 ||| 0-0 ||| 6246 524574 +los ||| who come from ||| 0.0166667 0.001099 1.90631e-06 1.44947e-10 2.718 ||| 0-2 ||| 60 524574 +los ||| who do not buy people ||| 0.5 0.0894672 1.90631e-06 1.556e-15 2.718 ||| 0-4 ||| 2 524574 +los ||| who followed the ||| 0.0625 0.122289 1.90631e-06 2.70891e-08 2.718 ||| 0-2 ||| 16 524574 +los ||| who has ||| 0.000438982 0.0016142 1.90631e-06 6.05346e-07 2.718 ||| 0-0 ||| 2278 524574 +los ||| who have taken their seats ||| 0.1 0.0935673 1.90631e-06 8.67061e-16 2.718 ||| 0-4 ||| 10 524574 +los ||| who have the ||| 0.010989 0.122289 3.81262e-06 4.52486e-06 2.718 ||| 0-2 ||| 182 524574 +los ||| who have ||| 0.000309071 0.0016142 3.81262e-06 1.40647e-06 2.718 ||| 0-0 ||| 6471 524574 +los ||| who include ||| 0.166667 0.0092135 1.90631e-06 8.14968e-08 2.718 ||| 0-1 ||| 6 524574 +los ||| who is a ||| 0.00847458 0.0016142 1.90631e-06 1.63372e-07 2.718 ||| 0-0 ||| 118 524574 +los ||| who is to ||| 0.0116959 0.0016142 3.81262e-06 3.27506e-07 2.718 ||| 0-0 ||| 171 524574 +los ||| who is ||| 0.00424178 0.0016142 2.28757e-05 3.68571e-06 2.718 ||| 0-0 ||| 2829 524574 +los ||| who receive them , ||| 1 0.038218 1.90631e-06 2.12537e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| who receive them ||| 1 0.038218 1.90631e-06 1.78221e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| who see the ||| 0.0526316 0.122289 1.90631e-06 2.66578e-07 2.718 ||| 0-2 ||| 19 524574 +los ||| who the ||| 0.0392157 0.122289 3.81262e-06 0.000378339 2.718 ||| 0-1 ||| 51 524574 +los ||| who was ||| 0.0043057 0.0016142 7.62523e-06 3.68441e-07 2.718 ||| 0-0 ||| 929 524574 +los ||| who will ||| 0.00147493 0.0016142 1.90631e-06 1.01738e-06 2.718 ||| 0-0 ||| 678 524574 +los ||| who ||| 0.000934566 0.0016142 0.000122004 0.0001176 2.718 ||| 0-0 ||| 68481 524574 +los ||| whoever ||| 0.0030581 0.0015601 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 327 524574 +los ||| whole , the ||| 0.0105263 0.122289 1.90631e-06 2.89384e-05 2.718 ||| 0-2 ||| 95 524574 +los ||| whole new market has opened up ||| 1 0.0031618 1.90631e-06 2.15978e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| whole of the ||| 0.00114943 0.062134 1.90631e-06 8.02624e-07 2.718 ||| 0-1 0-2 ||| 870 524574 +los ||| wholeheartedly embraces the fundamental ||| 0.25 0.108248 1.90631e-06 8.6948e-15 2.718 ||| 0-2 0-3 ||| 4 524574 +los ||| whom , ||| 0.00917431 0.153643 1.90631e-06 0.00010783 2.718 ||| 0-0 ||| 109 524574 +los ||| whom I ||| 0.00176056 0.153643 1.90631e-06 6.39586e-06 2.718 ||| 0-0 ||| 568 524574 +los ||| whom are ||| 0.00531915 0.153643 1.90631e-06 1.37192e-05 2.718 ||| 0-0 ||| 188 524574 +los ||| whom live ||| 0.0588235 0.153643 1.90631e-06 9.11434e-08 2.718 ||| 0-0 ||| 17 524574 +los ||| whom the ||| 0.00966184 0.122289 3.81262e-06 2.85685e-05 2.718 ||| 0-1 ||| 207 524574 +los ||| whom they ||| 0.0147059 0.153643 1.90631e-06 2.95131e-06 2.718 ||| 0-0 ||| 68 524574 +los ||| whom want ||| 1 0.153643 1.90631e-06 4.22713e-07 2.718 ||| 0-0 ||| 1 524574 +los ||| whom we see traces ||| 1 0.153643 1.90631e-06 1.01256e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| whom we see ||| 1 0.153643 1.90631e-06 7.23254e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| whom we would both have to ||| 1 0.153643 1.90631e-06 1.06048e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| whom we would both have ||| 1 0.153643 1.90631e-06 1.19345e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| whom we would both ||| 1 0.153643 1.90631e-06 9.97888e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| whom we would ||| 0.25 0.153643 1.90631e-06 6.02407e-08 2.718 ||| 0-0 ||| 4 524574 +los ||| whom we ||| 0.00840336 0.153643 5.71893e-06 1.02647e-05 2.718 ||| 0-0 ||| 357 524574 +los ||| whom what ||| 1 0.153643 1.90631e-06 1.26868e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| whom ||| 0.0093291 0.153643 8.95965e-05 0.0009042 2.718 ||| 0-0 ||| 5038 524574 +los ||| whose committee ||| 1 0.0002941 1.90631e-06 1.4706e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| whose cost is included ||| 0.5 0.0081578 1.90631e-06 1.24068e-14 2.718 ||| 0-1 ||| 2 524574 +los ||| whose cost is ||| 0.5 0.0081578 1.90631e-06 1.32128e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| whose cost ||| 0.2 0.0081578 1.90631e-06 4.2158e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| whose individual ||| 1 0.110351 1.90631e-06 1.01282e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| whose occupation is the performance ||| 1 0.122289 1.90631e-06 1.46693e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| whose occupation is the ||| 0.333333 0.122289 1.90631e-06 6.46224e-12 2.718 ||| 0-3 ||| 3 524574 +los ||| whose practitioners ||| 0.166667 0.244094 1.90631e-06 4.75164e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| whose ||| 0.000273823 0.0002941 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 7304 524574 +los ||| why collaboration between police forces and those ||| 1 0.284705 1.90631e-06 5.97157e-26 2.718 ||| 0-6 ||| 1 524574 +los ||| why countries have ||| 1 0.0957208 1.90631e-06 2.45759e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| why countries ||| 0.166667 0.0957208 1.90631e-06 2.05487e-06 2.718 ||| 0-1 ||| 6 524574 +los ||| why the Consumers ' Association , ||| 1 0.0444479 1.90631e-06 3.30223e-20 2.718 ||| 0-3 ||| 1 524574 +los ||| why the Consumers ' Association ||| 1 0.0444479 1.90631e-06 2.76906e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| why the Consumers ' ||| 1 0.0444479 1.90631e-06 3.21983e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| why the ||| 0.0030648 0.122289 1.33442e-05 0.000105738 2.718 ||| 0-1 ||| 2284 524574 +los ||| why they are ||| 0.015873 0.0072404 1.90631e-06 3.06162e-09 2.718 ||| 0-1 ||| 63 524574 +los ||| why they ||| 0.00793651 0.0072404 1.90631e-06 2.01785e-07 2.718 ||| 0-1 ||| 126 524574 +los ||| why we in the ||| 0.0555556 0.122289 1.90631e-06 2.56932e-08 2.718 ||| 0-3 ||| 18 524574 +los ||| why we support the proposal which the ||| 0.5 0.122289 1.90631e-06 4.2741e-17 2.718 ||| 0-3 ||| 2 524574 +los ||| why we support the proposal which ||| 0.5 0.122289 1.90631e-06 6.962e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| why we support the proposal ||| 0.25 0.122289 1.90631e-06 8.19579e-14 2.718 ||| 0-3 ||| 4 524574 +los ||| why we support the ||| 0.0526316 0.122289 1.90631e-06 4.10405e-10 2.718 ||| 0-3 ||| 19 524574 +los ||| wider consumer uses involving daily exposure , ||| 1 0.184092 1.90631e-06 9.16422e-28 2.718 ||| 0-1 ||| 1 524574 +los ||| wider consumer uses involving daily exposure ||| 1 0.184092 1.90631e-06 7.68458e-27 2.718 ||| 0-1 ||| 1 524574 +los ||| wider consumer uses involving daily ||| 1 0.184092 1.90631e-06 1.18224e-21 2.718 ||| 0-1 ||| 1 524574 +los ||| wider consumer uses involving ||| 1 0.184092 1.90631e-06 5.20812e-17 2.718 ||| 0-1 ||| 1 524574 +los ||| wider consumer uses ||| 1 0.184092 1.90631e-06 1.66394e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| wider consumer ||| 1 0.184092 1.90631e-06 9.04313e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| widespread awareness of the ||| 0.25 0.122289 1.90631e-06 1.55489e-11 2.718 ||| 0-3 ||| 4 524574 +los ||| wild ||| 0.00726392 0.0109091 5.71893e-06 5.8e-06 2.718 ||| 0-0 ||| 413 524574 +los ||| will , the ||| 0.047619 0.122289 1.90631e-06 0.000442553 2.718 ||| 0-2 ||| 21 524574 +los ||| will achieve the ||| 0.03125 0.122289 1.90631e-06 8.4796e-07 2.718 ||| 0-2 ||| 32 524574 +los ||| will all ||| 0.00520833 0.0177928 1.90631e-06 2.3257e-05 2.718 ||| 0-1 ||| 192 524574 +los ||| will allow the ||| 0.00454545 0.122289 1.90631e-06 9.00285e-07 2.718 ||| 0-2 ||| 220 524574 +los ||| will also have - the ||| 1 0.122289 1.90631e-06 8.45216e-10 2.718 ||| 0-4 ||| 1 524574 +los ||| will avoid many cases ||| 1 0.136512 1.90631e-06 1.74505e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| will be a source of knowledge for ||| 1 0.0139626 3.81262e-06 3.09413e-18 2.718 ||| 0-5 0-6 ||| 2 524574 +los ||| will be a victory for the ||| 0.5 0.122289 1.90631e-06 1.32888e-13 2.718 ||| 0-5 ||| 2 524574 +los ||| will be able to achieve our prime ||| 1 0.0248369 1.90631e-06 1.43318e-19 2.718 ||| 0-5 ||| 1 524574 +los ||| will be able to achieve our ||| 1 0.0248369 1.90631e-06 9.49127e-15 2.718 ||| 0-5 ||| 1 524574 +los ||| will be able to draw on the ||| 0.5 0.122289 1.90631e-06 3.95268e-15 2.718 ||| 0-6 ||| 2 524574 +los ||| will be all the more acceptable ||| 1 0.122289 1.90631e-06 2.35147e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| will be all the more ||| 0.047619 0.122289 1.90631e-06 7.25763e-10 2.718 ||| 0-3 ||| 21 524574 +los ||| will be all the ||| 0.0263158 0.122289 1.90631e-06 3.17801e-07 2.718 ||| 0-3 ||| 38 524574 +los ||| will be any ||| 0.0769231 0.0178119 1.90631e-06 1.44806e-07 2.718 ||| 0-2 ||| 13 524574 +los ||| will be both ||| 0.0588235 0.0352574 1.90631e-06 1.87797e-07 2.718 ||| 0-2 ||| 17 524574 +los ||| will be coming in and a ||| 1 0.0093772 1.90631e-06 1.21299e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| will be coming in and ||| 1 0.0093772 1.90631e-06 2.73652e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| will be coming in ||| 0.25 0.0093772 1.90631e-06 2.18469e-10 2.718 ||| 0-2 ||| 4 524574 +los ||| will be coming ||| 0.0277778 0.0093772 1.90631e-06 1.02067e-08 2.718 ||| 0-2 ||| 36 524574 +los ||| will be giving their ||| 1 0.0236713 1.90631e-06 5.65274e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| will be killed by ||| 1 0.0062464 1.90631e-06 6.04425e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| will be on the ||| 0.0116279 0.122289 1.90631e-06 4.49995e-07 2.718 ||| 0-3 ||| 86 524574 +los ||| will be possible to increase the ||| 1 0.122289 1.90631e-06 6.19307e-13 2.718 ||| 0-5 ||| 1 524574 +los ||| will be possible ||| 0.00341297 0.0019339 1.90631e-06 1.11317e-08 2.718 ||| 0-2 ||| 293 524574 +los ||| will be receiving ||| 0.0416667 0.0071708 1.90631e-06 1.6776e-09 2.718 ||| 0-2 ||| 24 524574 +los ||| will be sending out the wrong signal ||| 0.5 0.122289 1.90631e-06 7.86865e-21 2.718 ||| 0-4 ||| 2 524574 +los ||| will be sending out the wrong ||| 0.5 0.122289 1.90631e-06 3.30616e-16 2.718 ||| 0-4 ||| 2 524574 +los ||| will be sending out the ||| 0.5 0.122289 1.90631e-06 5.92501e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| will be that the total expenditure ||| 0.5 0.122289 1.90631e-06 3.22183e-15 2.718 ||| 0-3 ||| 2 524574 +los ||| will be that the total ||| 0.5 0.122289 1.90631e-06 1.06683e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| will be that the ||| 0.0625 0.122289 1.90631e-06 1.13132e-06 2.718 ||| 0-3 ||| 16 524574 +los ||| will be that those ||| 1 0.284705 1.90631e-06 4.40378e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| will be the ones ||| 0.166667 0.104201 1.90631e-06 2.46485e-08 2.718 ||| 0-2 0-3 ||| 6 524574 +los ||| will be the subject ||| 0.0192308 0.122289 1.90631e-06 3.63036e-08 2.718 ||| 0-2 ||| 52 524574 +los ||| will be the ||| 0.00667009 0.122289 2.4782e-05 6.72538e-05 2.718 ||| 0-2 ||| 1949 524574 +los ||| will be up to ||| 0.03125 0.0031618 1.90631e-06 2.9535e-09 2.718 ||| 0-2 ||| 32 524574 +los ||| will be up ||| 0.0196078 0.0031618 1.90631e-06 3.32384e-08 2.718 ||| 0-2 ||| 51 524574 +los ||| will bear them in ||| 0.5 0.038218 1.90631e-06 5.57906e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| will bear them ||| 0.25 0.038218 1.90631e-06 2.60649e-09 2.718 ||| 0-2 ||| 4 524574 +los ||| will continue to be - the ||| 1 0.122289 1.90631e-06 5.21628e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| will cost many EU nationals their ||| 1 0.0236713 1.90631e-06 3.11765e-21 2.718 ||| 0-5 ||| 1 524574 +los ||| will demonstrate . the ||| 1 0.122289 1.90631e-06 2.78766e-10 2.718 ||| 0-3 ||| 1 524574 +los ||| will die in the next ' Prestige ||| 1 0.122289 1.90631e-06 8.10302e-22 2.718 ||| 0-3 ||| 1 524574 +los ||| will die in the next ' ||| 1 0.122289 1.90631e-06 3.24121e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| will die in the next ||| 1 0.122289 1.90631e-06 9.4361e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| will die in the ||| 0.333333 0.122289 1.90631e-06 9.13466e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| will enable local ||| 1 0.0190862 1.90631e-06 1.60024e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| will enable the ||| 0.00826446 0.122289 3.81262e-06 3.65903e-07 2.718 ||| 0-2 ||| 242 524574 +los ||| will exacerbate the ||| 0.0833333 0.122289 1.90631e-06 1.07619e-08 2.718 ||| 0-2 ||| 12 524574 +los ||| will force the ||| 0.0526316 0.122289 1.90631e-06 6.3161e-07 2.718 ||| 0-2 ||| 19 524574 +los ||| will forgive my saying ||| 0.2 0.0086409 1.90631e-06 7.19361e-15 2.718 ||| 0-2 ||| 5 524574 +los ||| will forgive my ||| 0.2 0.0086409 1.90631e-06 4.05503e-11 2.718 ||| 0-2 ||| 5 524574 +los ||| will gain the ||| 0.0833333 0.122289 1.90631e-06 2.07073e-07 2.718 ||| 0-2 ||| 12 524574 +los ||| will give them ||| 0.0178571 0.038218 1.90631e-06 1.05513e-08 2.718 ||| 0-2 ||| 56 524574 +los ||| will happen , the ||| 1 0.122289 1.90631e-06 4.81055e-08 2.718 ||| 0-3 ||| 1 524574 +los ||| will happen to the ||| 0.0740741 0.122289 3.81262e-06 3.5844e-08 2.718 ||| 0-3 ||| 27 524574 +los ||| will have the courage ||| 0.037037 0.122289 1.90631e-06 3.81691e-10 2.718 ||| 0-2 ||| 27 524574 +los ||| will have the ||| 0.00343643 0.122289 3.81262e-06 4.43827e-05 2.718 ||| 0-2 ||| 582 524574 +los ||| will have to foot the bill for ||| 0.5 0.122289 1.90631e-06 1.16935e-17 2.718 ||| 0-4 ||| 2 524574 +los ||| will have to foot the bill ||| 0.2 0.122289 1.90631e-06 1.52146e-15 2.718 ||| 0-4 ||| 5 524574 +los ||| will have to foot the ||| 0.2 0.122289 1.90631e-06 8.79459e-11 2.718 ||| 0-4 ||| 5 524574 +los ||| will inflate them ||| 1 0.038218 1.90631e-06 1.2188e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| will it be the ||| 0.0526316 0.122289 1.90631e-06 1.19599e-06 2.718 ||| 0-3 ||| 19 524574 +los ||| will keep ||| 0.00452489 0.0007869 1.90631e-06 5.0177e-08 2.718 ||| 0-1 ||| 221 524574 +los ||| will lead to their ||| 0.333333 0.0236713 1.90631e-06 3.38535e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| will make the ||| 0.00904977 0.122289 3.81262e-06 6.44895e-06 2.718 ||| 0-2 ||| 221 524574 +los ||| will make them ||| 0.0714286 0.038218 3.81262e-06 3.02575e-08 2.718 ||| 0-2 ||| 28 524574 +los ||| will not be the Council that ||| 1 0.122289 1.90631e-06 1.33563e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| will not be the Council ||| 1 0.122289 1.90631e-06 7.93996e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| will not be the ||| 0.00826446 0.122289 1.90631e-06 2.29611e-07 2.718 ||| 0-3 ||| 121 524574 +los ||| will once again be the ||| 0.5 0.122289 1.90631e-06 1.5915e-11 2.718 ||| 0-4 ||| 2 524574 +los ||| will only feed ||| 0.333333 0.0838347 1.90631e-06 1.95675e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| will our ||| 0.0277778 0.0248369 1.90631e-06 3.08943e-05 2.718 ||| 0-1 ||| 36 524574 +los ||| will pursue them ||| 0.5 0.038218 1.90631e-06 6.82527e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| will push up the ||| 0.5 0.122289 1.90631e-06 3.5058e-10 2.718 ||| 0-3 ||| 2 524574 +los ||| will put the ||| 0.0294118 0.122289 1.90631e-06 4.09173e-06 2.718 ||| 0-2 ||| 34 524574 +los ||| will reach our ||| 0.333333 0.0248369 1.90631e-06 2.50244e-09 2.718 ||| 0-2 ||| 3 524574 +los ||| will remain in the ||| 0.0625 0.122289 1.90631e-06 9.63508e-09 2.718 ||| 0-3 ||| 16 524574 +los ||| will run the ||| 0.1 0.122289 1.90631e-06 3.94107e-07 2.718 ||| 0-2 ||| 10 524574 +los ||| will satisfy the ||| 0.0833333 0.122289 1.90631e-06 2.15237e-08 2.718 ||| 0-2 ||| 12 524574 +los ||| will see that subsequent ||| 1 0.0398818 1.90631e-06 5.38326e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| will still own the ||| 1 0.122289 1.90631e-06 4.73856e-09 2.718 ||| 0-3 ||| 1 524574 +los ||| will the Council say ||| 0.0384615 0.122289 1.90631e-06 1.22654e-09 2.718 ||| 0-1 ||| 26 524574 +los ||| will the Council ||| 0.00549451 0.122289 1.90631e-06 1.28326e-06 2.718 ||| 0-1 ||| 182 524574 +los ||| will the ||| 0.0278746 0.122289 6.10019e-05 0.00371099 2.718 ||| 0-1 ||| 1148 524574 +los ||| will those ||| 0.111111 0.284705 1.90631e-06 0.000144454 2.718 ||| 0-1 ||| 9 524574 +los ||| will we be ||| 0.00793651 0.0014565 1.90631e-06 1.36575e-07 2.718 ||| 0-1 ||| 126 524574 +los ||| will we ||| 0.00332226 0.0014565 1.90631e-06 7.53606e-06 2.718 ||| 0-1 ||| 301 524574 +los ||| will work ||| 0.00241546 0.0006501 1.90631e-06 3.02792e-07 2.718 ||| 0-1 ||| 414 524574 +los ||| win the ||| 0.00497512 0.122289 1.90631e-06 6.94909e-06 2.718 ||| 0-1 ||| 201 524574 +los ||| wind is the ||| 1 0.122289 1.90631e-06 2.9039e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| wind out of the ||| 0.25 0.122289 1.90631e-06 1.9294e-09 2.718 ||| 0-3 ||| 4 524574 +los ||| wind ||| 0.00334448 0.0090703 3.81262e-06 7.8e-06 2.718 ||| 0-0 ||| 598 524574 +los ||| window-insulation ||| 1 1 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 1 524574 +los ||| wines ||| 0.00351494 0.27451 3.81262e-06 0.000177 2.718 ||| 0-0 ||| 569 524574 +los ||| wing ||| 0.011236 0.0046512 1.90631e-06 1e-06 2.718 ||| 0-0 ||| 89 524574 +los ||| winners ||| 0.00986842 0.0653753 5.71893e-06 2.63e-05 2.718 ||| 0-0 ||| 304 524574 +los ||| winning the ||| 0.0131579 0.122289 1.90631e-06 2.9169e-06 2.718 ||| 0-1 ||| 76 524574 +los ||| wise men ||| 0.0147059 0.21664 1.90631e-06 1.03831e-08 2.718 ||| 0-1 ||| 68 524574 +los ||| wish of ||| 0.00840336 0.0019787 1.90631e-06 9.7475e-07 2.718 ||| 0-1 ||| 119 524574 +los ||| wish to make clear our ||| 1 0.0248369 1.90631e-06 5.40995e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| with , the ||| 0.0222222 0.122289 1.90631e-06 0.000327111 2.718 ||| 0-2 ||| 45 524574 +los ||| with Nazi ||| 0.333333 0.0232558 1.90631e-06 3.70881e-08 2.718 ||| 0-1 ||| 3 524574 +los ||| with a poor ||| 0.2 0.0315692 1.90631e-06 4.68529e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| with a steady hand , ||| 1 0.0007437 1.90631e-06 2.28006e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| with a steady hand ||| 0.5 0.0007437 1.90631e-06 1.91192e-14 2.718 ||| 0-0 ||| 2 524574 +los ||| with a steady ||| 1 0.0007437 1.90631e-06 4.82079e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| with a ||| 0.000121499 0.0007437 3.81262e-06 1.0257e-05 2.718 ||| 0-0 ||| 16461 524574 +los ||| with access to the ||| 0.0526316 0.122289 1.90631e-06 2.09612e-08 2.718 ||| 0-3 ||| 19 524574 +los ||| with advice ||| 0.111111 0.0108752 1.90631e-06 1.30448e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| with all of the ||| 0.0113636 0.122289 1.90631e-06 7.04644e-07 2.718 ||| 0-3 ||| 88 524574 +los ||| with any ||| 0.00213675 0.0178119 1.90631e-06 5.90596e-06 2.718 ||| 0-1 ||| 468 524574 +los ||| with apart from those ||| 0.25 0.284705 1.90631e-06 1.07123e-11 2.718 ||| 0-3 ||| 4 524574 +los ||| with both ||| 0.0025641 0.0352574 1.90631e-06 7.65933e-06 2.718 ||| 0-1 ||| 390 524574 +los ||| with costs ||| 0.0588235 0.214442 1.90631e-06 1.77064e-05 2.718 ||| 0-1 ||| 17 524574 +los ||| with crimes against the ||| 0.2 0.122289 1.90631e-06 1.8587e-11 2.718 ||| 0-3 ||| 5 524574 +los ||| with due ||| 0.00529101 0.0023735 1.90631e-06 1.55386e-07 2.718 ||| 0-1 ||| 189 524574 +los ||| with excuses and ' no comment ' ||| 1 0.0444479 1.90631e-06 3.64412e-23 2.718 ||| 0-6 ||| 1 524574 +los ||| with existing ||| 0.0909091 0.0464558 1.90631e-06 2.7669e-06 2.718 ||| 0-1 ||| 11 524574 +los ||| with illegal ||| 0.0714286 0.0016229 1.90631e-06 7.48157e-08 2.718 ||| 0-1 ||| 14 524574 +los ||| with improving the ||| 0.125 0.122289 1.90631e-06 5.9248e-08 2.718 ||| 0-2 ||| 8 524574 +los ||| with its ||| 0.000921376 0.0211371 5.71893e-06 1.36529e-05 2.718 ||| 0-1 ||| 3256 524574 +los ||| with lining their ||| 1 0.0236713 1.90631e-06 3.21831e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| with local ||| 0.0769231 0.00991495 1.90631e-06 4.34106e-08 2.718 ||| 0-0 0-1 ||| 13 524574 +los ||| with media comfort ||| 0.333333 0.139163 1.90631e-06 3.86388e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| with media ||| 0.0909091 0.139163 1.90631e-06 7.72775e-06 2.718 ||| 0-1 ||| 11 524574 +los ||| with men - to ||| 0.333333 0.21664 1.90631e-06 3.42374e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| with men - ||| 0.25 0.21664 1.90631e-06 3.85304e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| with men ||| 0.0163934 0.21664 1.90631e-06 1.02146e-05 2.718 ||| 0-1 ||| 61 524574 +los ||| with most aspects of the ||| 0.5 0.122289 1.90631e-06 4.54365e-12 2.718 ||| 0-4 ||| 2 524574 +los ||| with one ||| 0.000648929 0.0007437 1.90631e-06 9.64475e-07 2.718 ||| 0-0 ||| 1541 524574 +los ||| with other citizens ||| 0.166667 0.293572 1.90631e-06 1.25398e-07 2.718 ||| 0-2 ||| 6 524574 +los ||| with other countries ||| 0.00380228 0.0957208 1.90631e-06 6.90577e-08 2.718 ||| 0-2 ||| 263 524574 +los ||| with our ||| 0.000919118 0.0248369 5.71893e-06 2.28354e-05 2.718 ||| 0-1 ||| 3264 524574 +los ||| with parliamentarians ||| 0.0416667 0.250822 1.90631e-06 1.89597e-06 2.718 ||| 0-1 ||| 24 524574 +los ||| with people ||| 0.00411523 0.0894672 1.90631e-06 5.03586e-05 2.718 ||| 0-1 ||| 243 524574 +los ||| with regard to the risk that those ||| 0.5 0.122289 1.90631e-06 2.36511e-16 2.718 ||| 0-3 ||| 2 524574 +los ||| with regard to the risk that ||| 0.333333 0.122289 1.90631e-06 3.26628e-13 2.718 ||| 0-3 ||| 3 524574 +los ||| with regard to the risk ||| 0.125 0.122289 1.90631e-06 1.94172e-11 2.718 ||| 0-3 ||| 8 524574 +los ||| with regard to the ||| 0.000976404 0.122289 1.14379e-05 1.65959e-07 2.718 ||| 0-3 ||| 6145 524574 +los ||| with regard ||| 7.11187e-05 0.0034838 1.90631e-06 5.65913e-07 2.718 ||| 0-1 ||| 14061 524574 +los ||| with some groups of ||| 1 0.072891 1.90631e-06 4.5719e-11 2.718 ||| 0-2 0-3 ||| 1 524574 +los ||| with tax ||| 0.0625 0.0611419 1.90631e-06 4.32076e-06 2.718 ||| 0-1 ||| 16 524574 +los ||| with the Copenhagen ||| 1 0.122289 1.90631e-06 8.77748e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| with the Rules ||| 0.025641 0.122289 1.90631e-06 1.94476e-07 2.718 ||| 0-1 ||| 39 524574 +los ||| with the United States ||| 0.000671141 0.122289 1.90631e-06 1.60214e-10 2.718 ||| 0-1 ||| 1490 524574 +los ||| with the United ||| 0.0277778 0.122289 1.90631e-06 3.35738e-07 2.718 ||| 0-1 ||| 36 524574 +los ||| with the aim ||| 0.000860585 0.122289 1.90631e-06 3.77157e-07 2.718 ||| 0-1 ||| 1162 524574 +los ||| with the approval of the ||| 0.0166667 0.0618252 1.90631e-06 4.21089e-12 2.718 ||| 0-0 0-1 0-3 0-4 ||| 60 524574 +los ||| with the choices of the ||| 1 0.122289 1.90631e-06 6.59134e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| with the countries ||| 0.00162866 0.0957208 1.90631e-06 3.27254e-06 2.718 ||| 0-2 ||| 614 524574 +los ||| with the country concerned . ||| 0.5 0.122289 1.90631e-06 4.81004e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| with the country concerned ||| 0.166667 0.122289 1.90631e-06 1.588e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| with the country ||| 0.0107527 0.122289 1.90631e-06 9.87192e-07 2.718 ||| 0-1 ||| 93 524574 +los ||| with the disposal ||| 0.142857 0.122289 1.90631e-06 2.30957e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| with the evaluation of ||| 0.2 0.122289 1.90631e-06 2.20695e-09 2.718 ||| 0-1 ||| 5 524574 +los ||| with the evaluation ||| 0.111111 0.122289 1.90631e-06 4.05958e-08 2.718 ||| 0-1 ||| 9 524574 +los ||| with the fact that ||| 0.00348432 0.122289 1.90631e-06 1.35161e-07 2.718 ||| 0-1 ||| 287 524574 +los ||| with the fact ||| 0.0020202 0.122289 1.90631e-06 8.03496e-06 2.718 ||| 0-1 ||| 495 524574 +los ||| with the following characteristics : ||| 0.5 0.122289 1.90631e-06 1.10981e-15 2.718 ||| 0-1 ||| 2 524574 +los ||| with the following characteristics ||| 0.5 0.122289 1.90631e-06 3.29517e-12 2.718 ||| 0-1 ||| 2 524574 +los ||| with the following ||| 0.0121951 0.122289 1.90631e-06 3.5055e-07 2.718 ||| 0-1 ||| 82 524574 +los ||| with the general ||| 0.047619 0.122289 1.90631e-06 4.79744e-07 2.718 ||| 0-1 ||| 21 524574 +los ||| with the individual ||| 0.03125 0.11632 1.90631e-06 3.52553e-06 2.718 ||| 0-1 0-2 ||| 32 524574 +los ||| with the intention ||| 0.00724638 0.122289 1.90631e-06 1.54977e-07 2.718 ||| 0-1 ||| 138 524574 +los ||| with the jungle of ||| 1 0.122289 1.90631e-06 1.6403e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| with the jungle ||| 1 0.122289 1.90631e-06 3.01726e-09 2.718 ||| 0-1 ||| 1 524574 +los ||| with the kind ||| 0.0344828 0.122289 1.90631e-06 1.33856e-06 2.718 ||| 0-1 ||| 29 524574 +los ||| with the lack of ||| 0.0204082 0.122289 1.90631e-06 1.81328e-08 2.718 ||| 0-1 ||| 49 524574 +los ||| with the lack ||| 0.0204082 0.122289 1.90631e-06 3.33544e-07 2.718 ||| 0-1 ||| 49 524574 +los ||| with the measure ||| 0.125 0.122289 1.90631e-06 2.05448e-07 2.718 ||| 0-1 ||| 8 524574 +los ||| with the principle of ||| 0.00278552 0.122289 1.90631e-06 2.28598e-08 2.718 ||| 0-1 ||| 359 524574 +los ||| with the principle that we ||| 1 0.122289 1.90631e-06 8.02995e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| with the principle that ||| 0.05 0.122289 1.90631e-06 7.07341e-09 2.718 ||| 0-1 ||| 20 524574 +los ||| with the principle ||| 0.00488998 0.122289 3.81262e-06 4.20496e-07 2.718 ||| 0-1 ||| 409 524574 +los ||| with the proposals ||| 0.00478469 0.122289 1.90631e-06 2.66616e-07 2.718 ||| 0-1 ||| 209 524574 +los ||| with the relevant authorities of ||| 0.25 0.122289 1.90631e-06 1.06861e-12 2.718 ||| 0-1 ||| 4 524574 +los ||| with the relevant authorities ||| 0.05 0.122289 1.90631e-06 1.96565e-11 2.718 ||| 0-1 ||| 20 524574 +los ||| with the relevant ||| 0.0294118 0.122289 1.90631e-06 2.95143e-07 2.718 ||| 0-1 ||| 34 524574 +los ||| with the southern countries ||| 0.0769231 0.122289 1.90631e-06 3.33281e-12 2.718 ||| 0-1 ||| 13 524574 +los ||| with the southern ||| 0.333333 0.122289 1.90631e-06 8.77748e-09 2.718 ||| 0-1 ||| 3 524574 +los ||| with the terms of the ||| 0.0625 0.062134 1.90631e-06 6.11346e-10 2.718 ||| 0-3 0-4 ||| 16 524574 +los ||| with the trees ? only ||| 1 0.18136 1.90631e-06 5.22747e-15 2.718 ||| 0-2 ||| 1 524574 +los ||| with the trees ? ||| 1 0.18136 1.90631e-06 4.69631e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| with the trees ||| 0.5 0.18136 1.90631e-06 2.74799e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| with the variety of ||| 0.5 0.122289 1.90631e-06 3.42972e-09 2.718 ||| 0-1 ||| 2 524574 +los ||| with the variety ||| 0.2 0.122289 1.90631e-06 6.30881e-08 2.718 ||| 0-1 ||| 5 524574 +los ||| with the various ||| 0.00588235 0.122289 1.90631e-06 4.23513e-07 2.718 ||| 0-1 ||| 170 524574 +los ||| with the ||| 0.00509338 0.122289 0.000794931 0.00274296 2.718 ||| 0-1 ||| 81871 524574 +los ||| with their ||| 0.000484261 0.0236713 1.90631e-06 1.46287e-05 2.718 ||| 0-1 ||| 2065 524574 +los ||| with them , ||| 0.00606061 0.038218 1.90631e-06 1.53476e-06 2.718 ||| 0-1 ||| 165 524574 +los ||| with them a ||| 0.111111 0.038218 1.90631e-06 5.70454e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| with them ||| 0.00412088 0.038218 1.14379e-05 1.28696e-05 2.718 ||| 0-1 ||| 1456 524574 +los ||| with these ||| 0.00182593 0.0240362 5.71893e-06 1.55866e-05 2.718 ||| 0-1 ||| 1643 524574 +los ||| with this ||| 0.000151035 0.0005198 1.90631e-06 3.51034e-08 2.718 ||| 0-0 0-1 ||| 6621 524574 +los ||| with those of other ||| 0.0625 0.284705 1.90631e-06 7.51985e-09 2.718 ||| 0-1 ||| 16 524574 +los ||| with those of ||| 0.0042735 0.284705 1.90631e-06 5.8046e-06 2.718 ||| 0-1 ||| 234 524574 +los ||| with those ||| 0.0115385 0.284705 3.43136e-05 0.000106773 2.718 ||| 0-1 ||| 1560 524574 +los ||| with time , the ||| 1 0.122289 1.90631e-06 5.37018e-07 2.718 ||| 0-3 ||| 1 524574 +los ||| with trade ||| 0.0540541 0.015732 3.81262e-06 1.73689e-07 2.718 ||| 0-0 0-1 ||| 37 524574 +los ||| with various members of the ||| 0.5 0.062134 1.90631e-06 2.0662e-13 2.718 ||| 0-3 0-4 ||| 2 524574 +los ||| with which the ||| 0.00285714 0.122289 1.90631e-06 2.33004e-05 2.718 ||| 0-2 ||| 350 524574 +los ||| with you the ||| 0.0540541 0.122289 3.81262e-06 8.8562e-06 2.718 ||| 0-2 ||| 37 524574 +los ||| with you those ||| 1 0.284705 1.90631e-06 3.44737e-07 2.718 ||| 0-2 ||| 1 524574 +los ||| with ||| 0.000498577 0.0007437 0.000263071 0.0002314 2.718 ||| 0-0 ||| 276788 524574 +los ||| withdraw the ||| 0.00458716 0.122289 1.90631e-06 4.03219e-06 2.718 ||| 0-1 ||| 218 524574 +los ||| within Dutch ||| 0.5 0.0339335 1.90631e-06 1.99272e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| within its remit ||| 0.0434783 0.0211371 1.90631e-06 7.41106e-12 2.718 ||| 0-1 ||| 23 524574 +los ||| within its ||| 0.00229358 0.0211371 1.90631e-06 4.46449e-07 2.718 ||| 0-1 ||| 436 524574 +los ||| within our ||| 0.00147275 0.0248369 1.90631e-06 7.46717e-07 2.718 ||| 0-1 ||| 679 524574 +los ||| within the powers ||| 0.04 0.122289 1.90631e-06 4.42195e-09 2.718 ||| 0-1 ||| 25 524574 +los ||| within the ||| 0.000534712 0.122289 2.28757e-05 8.96948e-05 2.718 ||| 0-1 ||| 22442 524574 +los ||| without any ||| 0.000508388 0.0178119 1.90631e-06 2.04116e-07 2.718 ||| 0-1 ||| 1967 524574 +los ||| without delay . the ||| 1 0.122289 1.90631e-06 8.98771e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| without including the ||| 0.166667 0.122289 1.90631e-06 9.89705e-09 2.718 ||| 0-2 ||| 6 524574 +los ||| without notifying the EU authorities ||| 1 0.122289 1.90631e-06 1.24959e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| without notifying the EU ||| 1 0.122289 1.90631e-06 1.87627e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| without notifying the ||| 0.5 0.122289 1.90631e-06 3.79197e-11 2.718 ||| 0-2 ||| 2 524574 +los ||| without regard to national ||| 0.5 0.0129851 1.90631e-06 5.72024e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| without the Balkans , and since the ||| 1 0.122289 1.90631e-06 6.84239e-18 2.718 ||| 0-6 ||| 1 524574 +los ||| without the ||| 0.00146056 0.122289 5.71893e-06 9.47993e-05 2.718 ||| 0-1 ||| 2054 524574 +los ||| witness the ||| 0.02 0.122289 3.81262e-06 6.17697e-06 2.718 ||| 0-1 ||| 100 524574 +los ||| witness to the ||| 0.0204082 0.122289 1.90631e-06 5.48874e-07 2.718 ||| 0-2 ||| 49 524574 +los ||| woman in the ||| 0.0454545 0.122289 1.90631e-06 1.58842e-07 2.718 ||| 0-2 ||| 22 524574 +los ||| women ' s ||| 0.0151515 0.0444479 1.90631e-06 1.2021e-09 2.718 ||| 0-1 ||| 66 524574 +los ||| women ' ||| 0.00729927 0.0444479 1.90631e-06 6.31921e-07 2.718 ||| 0-1 ||| 137 524574 +los ||| women 's and ||| 0.0434783 0.0349814 1.90631e-06 9.11774e-09 2.718 ||| 0-1 ||| 23 524574 +los ||| women 's ||| 0.00391389 0.0349814 3.81262e-06 7.27911e-07 2.718 ||| 0-1 ||| 511 524574 +los ||| women the ||| 0.016129 0.122289 1.90631e-06 5.096e-05 2.718 ||| 0-1 ||| 62 524574 +los ||| women ’ s ||| 0.00529101 0.0139748 1.90631e-06 1.22172e-10 2.718 ||| 0-1 ||| 189 524574 +los ||| women ’ ||| 0.00478469 0.0139748 1.90631e-06 6.42233e-08 2.718 ||| 0-1 ||| 209 524574 +los ||| wood ||| 0.0060241 0.0161031 5.71893e-06 9.7e-06 2.718 ||| 0-0 ||| 498 524574 +los ||| word about the ||| 0.00840336 0.122289 1.90631e-06 6.17593e-08 2.718 ||| 0-2 ||| 119 524574 +los ||| words the ||| 0.0126582 0.122289 3.81262e-06 9.69441e-05 2.718 ||| 0-1 ||| 158 524574 +los ||| work . ||| 0.000213038 0.0006501 1.90631e-06 1.06015e-07 2.718 ||| 0-0 ||| 4694 524574 +los ||| work as indicators ||| 1 0.129229 1.90631e-06 1.46305e-09 2.718 ||| 0-2 ||| 1 524574 +los ||| work for those ||| 0.2 0.284705 1.90631e-06 8.12346e-08 2.718 ||| 0-2 ||| 5 524574 +los ||| work is also ||| 0.0833333 0.0006501 1.90631e-06 5.538e-09 2.718 ||| 0-0 ||| 12 524574 +los ||| work is ||| 0.00133869 0.0006501 1.90631e-06 1.09694e-06 2.718 ||| 0-0 ||| 747 524574 +los ||| work of the ||| 0.000469704 0.122289 1.90631e-06 1.47614e-05 2.718 ||| 0-2 ||| 2129 524574 +los ||| work on ||| 0.000618047 0.0006501 3.81262e-06 2.34185e-07 2.718 ||| 0-0 ||| 3236 524574 +los ||| work out the figure of one ||| 1 0.122289 1.90631e-06 1.79814e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| work out the figure of ||| 1 0.122289 1.90631e-06 4.31417e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| work out the figure ||| 1 0.122289 1.90631e-06 7.9357e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| work out the ||| 0.0869565 0.122289 3.81262e-06 1.04007e-06 2.718 ||| 0-2 ||| 23 524574 +los ||| work their ||| 0.0909091 0.0236713 1.90631e-06 1.44811e-06 2.718 ||| 0-1 ||| 11 524574 +los ||| work to the ||| 0.0212766 0.122289 1.90631e-06 2.41276e-05 2.718 ||| 0-2 ||| 47 524574 +los ||| work towards achieving a healthy ||| 1 0.0027447 1.90631e-06 1.3682e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| work with ||| 0.000713776 0.0006501 1.90631e-06 2.23807e-07 2.718 ||| 0-0 ||| 1401 524574 +los ||| work ||| 0.000243533 0.0006501 2.66883e-05 3.5e-05 2.718 ||| 0-0 ||| 57487 524574 +los ||| work-related ||| 0.0108696 0.0347222 1.90631e-06 4.9e-06 2.718 ||| 0-0 ||| 92 524574 +los ||| worker 's ||| 0.166667 0.111774 1.90631e-06 1.31674e-06 2.718 ||| 0-0 0-1 ||| 6 524574 +los ||| worker ||| 0.00331126 0.188567 3.81262e-06 0.0002149 2.718 ||| 0-0 ||| 604 524574 +los ||| workers ' and ||| 0.0666667 0.0444479 1.90631e-06 4.53069e-09 2.718 ||| 0-1 ||| 15 524574 +los ||| workers ' ||| 0.0138408 0.204474 7.62523e-06 3.88493e-05 2.718 ||| 0-0 0-1 ||| 289 524574 +los ||| workers , at least not ||| 1 0.364501 1.90631e-06 3.05568e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| workers , at least ||| 1 0.364501 1.90631e-06 8.95017e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| workers , at ||| 0.2 0.364501 1.90631e-06 3.64718e-06 2.718 ||| 0-0 ||| 5 524574 +los ||| workers , including those ||| 0.5 0.284705 1.90631e-06 1.41364e-11 2.718 ||| 0-3 ||| 2 524574 +los ||| workers , ||| 0.00242718 0.364501 5.71893e-06 0.000870989 2.718 ||| 0-0 ||| 1236 524574 +los ||| workers are kept ||| 0.25 0.364501 1.90631e-06 7.90113e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| workers are ||| 0.004329 0.364501 1.90631e-06 0.000110815 2.718 ||| 0-0 ||| 231 524574 +los ||| workers have ||| 0.0135135 0.364501 1.90631e-06 8.73496e-05 2.718 ||| 0-0 ||| 74 524574 +los ||| workers sent ||| 0.5 0.364501 1.90631e-06 4.38946e-07 2.718 ||| 0-0 ||| 2 524574 +los ||| workers to be ||| 0.0384615 0.364501 1.90631e-06 1.17615e-05 2.718 ||| 0-0 ||| 26 524574 +los ||| workers to ||| 0.00766284 0.364501 3.81262e-06 0.000648985 2.718 ||| 0-0 ||| 261 524574 +los ||| workers ||| 0.00466728 0.364501 0.000125816 0.0073036 2.718 ||| 0-0 ||| 14141 524574 +los ||| workforce ||| 0.00153965 0.0130506 3.81262e-06 1.56e-05 2.718 ||| 0-0 ||| 1299 524574 +los ||| working , the ||| 0.25 0.122289 1.90631e-06 9.73992e-06 2.718 ||| 0-2 ||| 4 524574 +los ||| working hard ||| 0.00735294 0.0006427 1.90631e-06 1.22967e-09 2.718 ||| 0-0 ||| 136 524574 +los ||| working its way ||| 1 0.0211371 1.90631e-06 8.76301e-10 2.718 ||| 0-1 ||| 1 524574 +los ||| working its ||| 1 0.0211371 1.90631e-06 4.06523e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| working out the ||| 0.03125 0.122289 1.90631e-06 3.12841e-07 2.718 ||| 0-2 ||| 32 524574 +los ||| working peoples ||| 0.25 0.13147 1.90631e-06 1.0015e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| working together ||| 0.00140449 0.0006427 1.90631e-06 7.02702e-09 2.718 ||| 0-0 ||| 712 524574 +los ||| working ||| 0.000479639 0.0006427 1.90631e-05 1.17e-05 2.718 ||| 0-0 ||| 20849 524574 +los ||| works consistently in the ||| 1 0.122289 1.90631e-06 5.05557e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| works for the ||| 0.0526316 0.122289 1.90631e-06 1.36489e-07 2.718 ||| 0-2 ||| 19 524574 +los ||| works of ||| 0.00724638 0.0056535 1.90631e-06 8.97006e-07 2.718 ||| 0-0 ||| 138 524574 +los ||| works ||| 0.0010101 0.0056535 5.71893e-06 1.65e-05 2.718 ||| 0-0 ||| 2970 524574 +los ||| world 's ||| 0.00170068 0.0349814 1.90631e-06 1.39578e-06 2.718 ||| 0-1 ||| 588 524574 +los ||| world levels ||| 0.166667 0.222552 1.90631e-06 4.4806e-07 2.718 ||| 0-1 ||| 6 524574 +los ||| world that is following their progress ||| 1 0.0236713 1.90631e-06 4.62435e-18 2.718 ||| 0-4 ||| 1 524574 +los ||| world that is following their ||| 1 0.0236713 1.90631e-06 3.51128e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| worry the ||| 0.0833333 0.122289 1.90631e-06 2.78822e-06 2.718 ||| 0-1 ||| 12 524574 +los ||| worrying . the Union for Europe of ||| 1 0.122289 1.90631e-06 1.71492e-18 2.718 ||| 0-2 ||| 1 524574 +los ||| worrying . the Union for Europe ||| 1 0.122289 1.90631e-06 3.15451e-17 2.718 ||| 0-2 ||| 1 524574 +los ||| worrying . the Union for ||| 1 0.122289 1.90631e-06 6.2342e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| worrying . the Union ||| 1 0.122289 1.90631e-06 8.11143e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| worrying . the ||| 1 0.122289 1.90631e-06 1.45523e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| worst the ||| 0.5 0.122289 1.90631e-06 6.47724e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| worst ||| 0.00160428 0.0272015 5.71893e-06 5.74e-05 2.718 ||| 0-0 ||| 1870 524574 +los ||| worth drawing attention to the ||| 0.5 0.122289 1.90631e-06 3.57886e-14 2.718 ||| 0-4 ||| 2 524574 +los ||| would about the ||| 1 0.122289 1.90631e-06 3.56038e-06 2.718 ||| 0-2 ||| 1 524574 +los ||| would allow the ||| 0.0116279 0.122289 1.90631e-06 6.10725e-07 2.718 ||| 0-2 ||| 86 524574 +los ||| would anchor them ||| 1 0.038218 1.90631e-06 1.29925e-11 2.718 ||| 0-2 ||| 1 524574 +los ||| would at least be the ||| 1 0.122289 1.90631e-06 4.68815e-11 2.718 ||| 0-4 ||| 1 524574 +los ||| would be linked to the salaries of ||| 1 0.122289 1.90631e-06 3.30849e-17 2.718 ||| 0-4 ||| 1 524574 +los ||| would be linked to the salaries ||| 1 0.122289 1.90631e-06 6.08581e-16 2.718 ||| 0-4 ||| 1 524574 +los ||| would be linked to the ||| 0.333333 0.122289 1.90631e-06 1.6905e-10 2.718 ||| 0-4 ||| 3 524574 +los ||| would be the availability ||| 0.5 0.122289 1.90631e-06 3.10236e-10 2.718 ||| 0-2 ||| 2 524574 +los ||| would be the ||| 0.00396301 0.122289 5.71893e-06 4.56229e-05 2.718 ||| 0-2 ||| 757 524574 +los ||| would be triggered by ||| 1 0.0062464 1.90631e-06 7.40797e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| would be unacceptable to the ||| 0.2 0.122289 1.90631e-06 9.77006e-11 2.718 ||| 0-4 ||| 5 524574 +los ||| would clog up doctors ' ||| 1 0.309826 1.90631e-06 1.04555e-17 2.718 ||| 0-3 ||| 1 524574 +los ||| would clog up doctors ||| 1 0.309826 1.90631e-06 3.04391e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| would enable the ||| 0.0196078 0.122289 1.90631e-06 2.48217e-07 2.718 ||| 0-2 ||| 51 524574 +los ||| would give the ||| 0.0149254 0.122289 1.90631e-06 1.52555e-06 2.718 ||| 0-2 ||| 67 524574 +los ||| would have enabled them ||| 1 0.038218 1.90631e-06 2.13305e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| would have the facility for ||| 1 0.122289 1.90631e-06 3.17017e-12 2.718 ||| 0-2 ||| 1 524574 +los ||| would have the facility ||| 1 0.122289 1.90631e-06 4.12477e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| would have the ||| 0.00675676 0.122289 1.90631e-06 3.01078e-05 2.718 ||| 0-2 ||| 148 524574 +los ||| would increase the ||| 0.015873 0.122289 1.90631e-06 3.2525e-07 2.718 ||| 0-2 ||| 63 524574 +los ||| would it be in the ||| 0.5 0.122289 1.90631e-06 1.73659e-08 2.718 ||| 0-4 ||| 2 524574 +los ||| would like to consider the ||| 0.333333 0.122289 1.90631e-06 6.32035e-11 2.718 ||| 0-4 ||| 3 524574 +los ||| would like to make the ||| 0.0294118 0.122289 1.90631e-06 6.90352e-10 2.718 ||| 0-4 ||| 34 524574 +los ||| would like to start by thanking the ||| 0.04 0.122289 1.90631e-06 1.76714e-18 2.718 ||| 0-6 ||| 25 524574 +los ||| would like to thank the ||| 0.00154321 0.122289 1.90631e-06 4.20297e-11 2.718 ||| 0-4 ||| 648 524574 +los ||| would merely thank the rapporteur , the ||| 1 0.122289 1.90631e-06 8.98058e-18 2.718 ||| 0-3 ||| 1 524574 +los ||| would merely thank the rapporteur , ||| 1 0.122289 1.90631e-06 1.46283e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| would merely thank the rapporteur ||| 1 0.122289 1.90631e-06 1.22664e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| would merely thank the ||| 1 0.122289 1.90631e-06 1.6966e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| would normally supply the nation 's ||| 0.5 0.0349814 1.90631e-06 1.89407e-20 2.718 ||| 0-5 ||| 2 524574 +los ||| would point out that the ||| 0.0188679 0.122289 1.90631e-06 1.41898e-10 2.718 ||| 0-4 ||| 53 524574 +los ||| would reduce the ||| 0.015625 0.122289 1.90631e-06 9.59135e-08 2.718 ||| 0-2 ||| 64 524574 +los ||| would say the ||| 0.0625 0.122289 1.90631e-06 2.40615e-06 2.718 ||| 0-2 ||| 16 524574 +los ||| would seem that the ||| 0.25 0.122289 3.81262e-06 3.87051e-09 2.718 ||| 0-3 ||| 8 524574 +los ||| would seem to be the idea ||| 1 0.122289 1.90631e-06 8.30734e-14 2.718 ||| 0-4 ||| 1 524574 +los ||| would seem to be the ||| 0.0714286 0.122289 1.90631e-06 3.70533e-10 2.718 ||| 0-4 ||| 14 524574 +los ||| would serve to confirm the ||| 1 0.122289 1.90631e-06 2.81531e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| would the people of ||| 1 0.122289 1.90631e-06 1.20461e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| would the people ||| 0.5 0.122289 1.90631e-06 2.21583e-06 2.718 ||| 0-1 ||| 2 524574 +los ||| would the ||| 0.031746 0.122289 1.52505e-05 0.00251742 2.718 ||| 0-1 ||| 252 524574 +los ||| would those ||| 0.2 0.284705 1.90631e-06 9.79932e-05 2.718 ||| 0-1 ||| 5 524574 +los ||| would worry the ||| 1 0.122289 1.90631e-06 1.63632e-08 2.718 ||| 0-2 ||| 1 524574 +los ||| would-be ||| 0.0188679 0.0434783 1.90631e-06 2.9e-06 2.718 ||| 0-0 ||| 53 524574 +los ||| wretched people ||| 0.5 0.0894672 1.90631e-06 1.10254e-08 2.718 ||| 0-1 ||| 2 524574 +los ||| writers ||| 0.0108696 0.119266 1.90631e-06 1.26e-05 2.718 ||| 0-0 ||| 92 524574 +los ||| writing . - ( PT ) ||| 0.0277778 4.2e-06 1.90631e-06 8.5597e-22 2.718 ||| 0-1 ||| 36 524574 +los ||| writing . - ( PT ||| 0.0285714 4.2e-06 1.90631e-06 5.9554e-19 2.718 ||| 0-1 ||| 35 524574 +los ||| writing . - ( ||| 0.0148148 0.0001011 3.81262e-06 2.0936e-14 2.718 ||| 0-0 ||| 135 524574 +los ||| writing . - ||| 0.0108696 0.0001011 3.81262e-06 2.17088e-11 2.718 ||| 0-0 ||| 184 524574 +los ||| writing . the ||| 0.05 0.122289 1.90631e-06 2.83769e-07 2.718 ||| 0-2 ||| 20 524574 +los ||| writing . ||| 0.00639659 4.2e-06 5.71893e-06 1.70352e-09 2.718 ||| 0-1 ||| 469 524574 +los ||| writing off emerging ||| 0.333333 0.0132275 1.90631e-06 1.72444e-12 2.718 ||| 0-2 ||| 3 524574 +los ||| writing the ||| 0.0454545 0.122289 1.90631e-06 9.36841e-05 2.718 ||| 0-1 ||| 22 524574 +los ||| writing ||| 0.00165975 0.0001011 3.81262e-06 1.9e-06 2.718 ||| 0-0 ||| 1205 524574 +los ||| wrong . the ||| 0.5 0.122289 1.90631e-06 7.25014e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| wrong with the trees ? only ||| 1 0.18136 1.90631e-06 2.91693e-19 2.718 ||| 0-3 ||| 1 524574 +los ||| wrong with the trees ? ||| 1 0.18136 1.90631e-06 2.62054e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| wrong with the trees ||| 1 0.18136 1.90631e-06 1.53338e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| wrongdoers will just ||| 0.1 0.241379 1.90631e-06 7.42235e-11 2.718 ||| 0-0 ||| 10 524574 +los ||| wrongdoers will ||| 0.1 0.241379 1.90631e-06 5.88282e-08 2.718 ||| 0-0 ||| 10 524574 +los ||| wrongdoers ||| 0.0555556 0.241379 1.90631e-06 6.8e-06 2.718 ||| 0-0 ||| 18 524574 +los ||| x02BC ; s ||| 0.0169492 0.0341558 1.90631e-06 1.86882e-11 2.718 ||| 0-2 ||| 59 524574 +los ||| xenophobic ||| 0.00393701 0.007874 1.90631e-06 1.9e-06 2.718 ||| 0-0 ||| 254 524574 +los ||| yards ||| 0.0217391 0.162602 3.81262e-06 1.94e-05 2.718 ||| 0-0 ||| 92 524574 +los ||| year ' s ||| 0.0263158 0.0444479 1.90631e-06 2.52361e-09 2.718 ||| 0-1 ||| 38 524574 +los ||| year ' ||| 0.0151515 0.0444479 1.90631e-06 1.32661e-06 2.718 ||| 0-1 ||| 66 524574 +los ||| year 's ||| 0.00343643 0.0349814 1.90631e-06 1.52812e-06 2.718 ||| 0-1 ||| 291 524574 +los ||| year , did we have the ||| 1 0.122289 1.90631e-06 7.86756e-13 2.718 ||| 0-5 ||| 1 524574 +los ||| year , the ||| 0.00242718 0.122289 1.90631e-06 1.27581e-05 2.718 ||| 0-2 ||| 412 524574 +los ||| year in the ||| 0.00847458 0.122289 1.90631e-06 2.28989e-06 2.718 ||| 0-2 ||| 118 524574 +los ||| year the ||| 0.0131004 0.122289 5.71893e-06 0.000106982 2.718 ||| 0-1 ||| 229 524574 +los ||| years ' ||| 0.00677966 0.0444479 3.81262e-06 9.05328e-07 2.718 ||| 0-1 ||| 295 524574 +los ||| years , ||| 0.000164474 0.0059786 1.90631e-06 2.81799e-05 2.718 ||| 0-0 ||| 6080 524574 +los ||| years of ||| 0.000452284 0.0019787 1.90631e-06 5.62954e-07 2.718 ||| 0-1 ||| 2211 524574 +los ||| years old ||| 0.00529101 0.0059786 3.81262e-06 1.81951e-08 2.718 ||| 0-0 ||| 378 524574 +los ||| years ||| 0.000309478 0.0059786 2.28757e-05 0.0002363 2.718 ||| 0-0 ||| 38775 524574 +los ||| yes , the ||| 0.025641 0.122289 1.90631e-06 1.63696e-06 2.718 ||| 0-2 ||| 39 524574 +los ||| yesterday 's Minutes ||| 0.0243902 0.0349814 1.90631e-06 1.57494e-12 2.718 ||| 0-1 ||| 41 524574 +los ||| yesterday 's ||| 0.00617284 0.0349814 1.90631e-06 1.45827e-07 2.718 ||| 0-1 ||| 162 524574 +los ||| yet the process still ||| 0.5 0.122289 1.90631e-06 3.6533e-11 2.718 ||| 0-1 ||| 2 524574 +los ||| yet the process ||| 0.25 0.122289 1.90631e-06 4.85037e-08 2.718 ||| 0-1 ||| 4 524574 +los ||| yet the ||| 0.00144928 0.122289 1.90631e-06 0.000113459 2.718 ||| 0-1 ||| 690 524574 +los ||| yield accruing to ||| 1 0.0833333 1.90631e-06 2.03574e-12 2.718 ||| 0-1 ||| 1 524574 +los ||| yield accruing ||| 1 0.0833333 1.90631e-06 2.291e-11 2.718 ||| 0-1 ||| 1 524574 +los ||| yields ||| 0.00502513 0.102041 1.90631e-06 2.43e-05 2.718 ||| 0-0 ||| 199 524574 +los ||| you , the ||| 0.0222222 0.122289 7.62523e-06 0.000165164 2.718 ||| 0-2 ||| 180 524574 +los ||| you accept them back ||| 1 0.038218 1.90631e-06 4.73337e-13 2.718 ||| 0-2 ||| 1 524574 +los ||| you accept them ||| 1 0.038218 1.90631e-06 7.03742e-10 2.718 ||| 0-2 ||| 1 524574 +los ||| you are a hunter , ||| 1 0.0005024 1.90631e-06 1.23429e-15 2.718 ||| 0-1 ||| 1 524574 +los ||| you are a hunter ||| 1 0.0005024 1.90631e-06 1.03501e-14 2.718 ||| 0-1 ||| 1 524574 +los ||| you are a ||| 0.00985222 0.0005024 3.81262e-06 2.58751e-08 2.718 ||| 0-1 ||| 203 524574 +los ||| you are quite right ||| 0.00653595 0.0005024 1.90631e-06 1.46857e-13 2.718 ||| 0-1 ||| 153 524574 +los ||| you are quite ||| 0.00704225 0.0005024 1.90631e-06 2.2772e-10 2.718 ||| 0-1 ||| 142 524574 +los ||| you are wrong . the ||| 1 0.122289 1.90631e-06 3.55171e-12 2.718 ||| 0-4 ||| 1 524574 +los ||| you are ||| 0.000673968 0.0005024 7.62523e-06 5.83749e-07 2.718 ||| 0-1 ||| 5935 524574 +los ||| you arrive at the ||| 0.333333 0.122289 1.90631e-06 1.17148e-10 2.718 ||| 0-3 ||| 3 524574 +los ||| you blind ||| 0.25 0.103393 1.90631e-06 4.0165e-07 2.718 ||| 0-1 ||| 4 524574 +los ||| you come up ||| 0.166667 0.0031618 1.90631e-06 5.81333e-10 2.718 ||| 0-2 ||| 6 524574 +los ||| you concerning the ||| 0.5 0.122289 1.90631e-06 8.51757e-08 2.718 ||| 0-2 ||| 2 524574 +los ||| you describe the ||| 0.25 0.122289 1.90631e-06 3.39318e-08 2.718 ||| 0-2 ||| 4 524574 +los ||| you do not want Mr Barroso , ||| 1 0.000743 1.90631e-06 1.4204e-21 2.718 ||| 0-4 ||| 1 524574 +los ||| you do not want Mr Barroso ||| 1 0.000743 1.90631e-06 1.19107e-20 2.718 ||| 0-4 ||| 1 524574 +los ||| you do not want Mr ||| 1 0.000743 1.90631e-06 2.97767e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| you feel the ||| 0.142857 0.122289 1.90631e-06 2.34199e-07 2.718 ||| 0-2 ||| 7 524574 +los ||| you for the ||| 0.0181818 0.122289 1.90631e-06 1.06445e-05 2.718 ||| 0-2 ||| 55 524574 +los ||| you have taken your last ||| 1 0.0096341 1.90631e-06 2.36916e-15 2.718 ||| 0-3 ||| 1 524574 +los ||| you have taken your ||| 1 0.0096341 1.90631e-06 1.08478e-11 2.718 ||| 0-3 ||| 1 524574 +los ||| you in sending my best ||| 1 0.0086409 1.90631e-06 1.51746e-16 2.718 ||| 0-3 ||| 1 524574 +los ||| you in sending my ||| 1 0.0086409 1.90631e-06 1.09564e-12 2.718 ||| 0-3 ||| 1 524574 +los ||| you in the ||| 0.00746269 0.122289 1.90631e-06 2.96446e-05 2.718 ||| 0-2 ||| 134 524574 +los ||| you know , the ||| 0.00161551 0.122289 1.90631e-06 4.26124e-08 2.718 ||| 0-3 ||| 619 524574 +los ||| you on the ||| 0.010989 0.122289 1.90631e-06 9.26684e-06 2.718 ||| 0-2 ||| 91 524574 +los ||| you propose to ||| 0.037037 1.44e-05 1.90631e-06 2.54273e-12 2.718 ||| 0-2 ||| 27 524574 +los ||| you that the ||| 0.00938967 0.122289 3.81262e-06 2.32974e-05 2.718 ||| 0-2 ||| 213 524574 +los ||| you the actual ||| 1 0.122289 1.90631e-06 2.00405e-07 2.718 ||| 0-1 ||| 1 524574 +los ||| you the ||| 0.0421053 0.122289 2.28757e-05 0.00138497 2.718 ||| 0-1 ||| 285 524574 +los ||| you those ||| 0.333333 0.284705 3.81262e-06 5.39115e-05 2.718 ||| 0-1 ||| 6 524574 +los ||| you thought the ||| 0.5 0.122289 1.90631e-06 1.15091e-07 2.718 ||| 0-2 ||| 2 524574 +los ||| you through ||| 0.166667 5.3e-05 1.90631e-06 6.13453e-09 2.718 ||| 0-1 ||| 6 524574 +los ||| you to ||| 0.000724113 1.44e-05 1.90631e-06 7.52287e-08 2.718 ||| 0-1 ||| 1381 524574 +los ||| you up ||| 0.111111 0.0031618 1.90631e-06 6.84484e-07 2.718 ||| 0-1 ||| 9 524574 +los ||| you what ||| 0.0227273 0.0061209 1.90631e-06 3.09535e-06 2.718 ||| 0-1 ||| 44 524574 +los ||| you will also have - the ||| 1 0.122289 1.90631e-06 2.72895e-12 2.718 ||| 0-5 ||| 1 524574 +los ||| you with the ||| 0.0909091 0.122289 1.90631e-06 8.8562e-06 2.718 ||| 0-2 ||| 11 524574 +los ||| young children ||| 0.0106952 0.293415 3.81262e-06 3.51286e-07 2.718 ||| 0-1 ||| 187 524574 +los ||| young farmers ||| 0.00235294 0.380089 1.90631e-06 3.12824e-07 2.718 ||| 0-1 ||| 425 524574 +los ||| young people 's issues , as well ||| 1 0.0349814 1.90631e-06 1.66716e-19 2.718 ||| 0-2 ||| 1 524574 +los ||| young people 's issues , as ||| 1 0.0349814 1.90631e-06 1.05144e-16 2.718 ||| 0-2 ||| 1 524574 +los ||| young people 's issues , ||| 1 0.0349814 1.90631e-06 1.03038e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| young people 's issues ||| 1 0.0349814 1.90631e-06 8.64014e-14 2.718 ||| 0-2 ||| 1 524574 +los ||| young people 's ||| 0.0277778 0.0349814 1.90631e-06 3.43544e-10 2.718 ||| 0-2 ||| 36 524574 +los ||| young people , the result ||| 0.5 0.122289 1.90631e-06 1.51011e-12 2.718 ||| 0-3 ||| 2 524574 +los ||| young people , the ||| 0.0217391 0.122289 1.90631e-06 2.8682e-09 2.718 ||| 0-3 ||| 46 524574 +los ||| young people from ||| 0.00518135 0.0894672 1.90631e-06 8.07868e-10 2.718 ||| 0-1 ||| 193 524574 +los ||| young people ||| 0.00072812 0.0894672 9.53154e-06 5.01657e-07 2.718 ||| 0-1 ||| 6867 524574 +los ||| young researchers ||| 0.030303 0.304775 1.90631e-06 2.68814e-08 2.718 ||| 0-1 ||| 33 524574 +los ||| young ||| 0.00159957 0.0047279 1.14379e-05 4.38e-05 2.718 ||| 0-0 ||| 3751 524574 +los ||| your advice when the ||| 1 0.122289 1.90631e-06 9.87732e-13 2.718 ||| 0-3 ||| 1 524574 +los ||| your attention to how the ||| 1 0.122289 1.90631e-06 9.13457e-13 2.718 ||| 0-4 ||| 1 524574 +los ||| your attention to the fact ||| 0.00342466 0.122289 1.90631e-06 7.46593e-12 2.718 ||| 0-3 ||| 292 524574 +los ||| your attention to the ||| 0.00232558 0.122289 1.90631e-06 2.54871e-09 2.718 ||| 0-3 ||| 430 524574 +los ||| your behalf ||| 0.0208333 0.0096341 1.90631e-06 9.81617e-08 2.718 ||| 0-0 ||| 48 524574 +los ||| your country ||| 0.00233645 0.0096341 1.90631e-06 1.10921e-07 2.718 ||| 0-0 ||| 428 524574 +los ||| your debates ||| 0.0526316 0.0096341 1.90631e-06 5.33186e-09 2.718 ||| 0-0 ||| 19 524574 +los ||| your foolishness ||| 0.5 0.0096341 1.90631e-06 1.2328e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| your kind ||| 0.0140845 0.0096341 1.90631e-06 1.50402e-07 2.718 ||| 0-0 ||| 71 524574 +los ||| your last ||| 0.0120482 0.0096341 1.90631e-06 6.73109e-08 2.718 ||| 0-0 ||| 83 524574 +los ||| your members ||| 0.333333 0.0821246 1.90631e-06 6.119e-07 2.718 ||| 0-0 0-1 ||| 3 524574 +los ||| your nose out of my business ||| 1 0.0096341 1.90631e-06 3.14455e-20 2.718 ||| 0-0 ||| 1 524574 +los ||| your nose out of my ||| 1 0.0096341 1.90631e-06 2.51766e-16 2.718 ||| 0-0 ||| 1 524574 +los ||| your nose out of ||| 0.25 0.0096341 1.90631e-06 3.91488e-13 2.718 ||| 0-0 ||| 4 524574 +los ||| your nose out ||| 0.142857 0.0096341 1.90631e-06 7.20123e-12 2.718 ||| 0-0 ||| 7 524574 +los ||| your nose ||| 1 0.0096341 1.90631e-06 1.88002e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| your opinion ||| 0.00331126 0.0096341 1.90631e-06 7.56323e-08 2.718 ||| 0-0 ||| 302 524574 +los ||| your own ||| 0.00145138 0.0096341 1.90631e-06 5.22491e-07 2.718 ||| 0-0 ||| 689 524574 +los ||| your pants ||| 0.5 0.0096341 1.90631e-06 2.1574e-10 2.718 ||| 0-0 ||| 2 524574 +los ||| your people ||| 0.0175439 0.0495507 1.90631e-06 2.42717e-06 2.718 ||| 0-0 0-1 ||| 57 524574 +los ||| your principles ||| 0.142857 0.0388775 1.90631e-06 1.03742e-07 2.718 ||| 0-1 ||| 7 524574 +los ||| your responsibilities as a ||| 1 0.0096341 1.90631e-06 3.31783e-12 2.718 ||| 0-0 ||| 1 524574 +los ||| your responsibilities as ||| 1 0.0096341 1.90631e-06 7.48509e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| your responsibilities ||| 0.0212766 0.0096341 1.90631e-06 7.33516e-09 2.718 ||| 0-0 ||| 47 524574 +los ||| your successor ||| 0.03125 0.0096341 1.90631e-06 1.2328e-09 2.718 ||| 0-0 ||| 32 524574 +los ||| your ||| 0.00730994 0.0096341 0.000447983 0.0003082 2.718 ||| 0-0 ||| 32148 524574 +los ||| yourself to the ||| 0.5 0.122289 1.90631e-06 1.71523e-06 2.718 ||| 0-2 ||| 2 524574 +los ||| youth event ||| 0.166667 0.0921273 1.90631e-06 2.23312e-08 2.718 ||| 0-0 ||| 6 524574 +los ||| youth ||| 0.0030012 0.0921273 9.53154e-06 0.0002139 2.718 ||| 0-0 ||| 1666 524574 +los ||| – Mr President , the ||| 0.00302115 0.122289 1.90631e-06 1.90296e-12 2.718 ||| 0-4 ||| 331 524574 +los ||| – acceding ||| 1 0.071618 1.90631e-06 1.03359e-08 2.718 ||| 0-1 ||| 1 524574 +los ||| – the ||| 0.00435098 0.122289 1.14379e-05 0.00016858 2.718 ||| 0-1 ||| 1379 524574 +los ||| – where ||| 0.0204082 0.0449398 1.90631e-06 8.67351e-07 2.718 ||| 0-1 ||| 49 524574 +los ||| – which is what ||| 0.0769231 0.0061209 1.90631e-06 1.00307e-10 2.718 ||| 0-3 ||| 13 524574 +los ||| ‘ coffee shops ’ ||| 0.5 0.0139748 1.90631e-06 1.15348e-18 2.718 ||| 0-3 ||| 2 524574 +los ||| ‘ how too ’ ||| 1 0.0139748 1.90631e-06 2.9613e-14 2.718 ||| 0-3 ||| 1 524574 +los ||| ‘ on call ’ ||| 0.333333 0.0139748 1.90631e-06 9.01778e-14 2.718 ||| 0-3 ||| 3 524574 +los ||| ‘ super green rooms ||| 0.5 0.0142857 1.90631e-06 1.27883e-20 2.718 ||| 0-3 ||| 2 524574 +los ||| ‘ super green rooms ’ ||| 0.5 0.0142857 1.90631e-06 2.22785e-23 2.718 ||| 0-3 ||| 2 524574 +los ||| ’ , I mean the ||| 0.5 0.122289 1.90631e-06 1.62447e-10 2.718 ||| 0-4 ||| 2 524574 +los ||| ’ , and ||| 0.0075188 0.0139748 1.90631e-06 8.07533e-07 2.718 ||| 0-0 ||| 133 524574 +los ||| ’ , ||| 0.000788022 0.0139748 1.90631e-06 6.44691e-05 2.718 ||| 0-0 ||| 1269 524574 +los ||| ’ Freedoms and Rights ||| 1 0.0139748 1.90631e-06 5.02175e-15 2.718 ||| 0-0 ||| 1 524574 +los ||| ’ Freedoms and ||| 1 0.0139748 1.90631e-06 6.09435e-11 2.718 ||| 0-0 ||| 1 524574 +los ||| ’ Freedoms ||| 1 0.0139748 1.90631e-06 4.8654e-09 2.718 ||| 0-0 ||| 1 524574 +los ||| ’ piece of ||| 0.5 0.0139748 1.90631e-06 2.81254e-09 2.718 ||| 0-0 ||| 2 524574 +los ||| ’ piece ||| 0.5 0.0139748 1.90631e-06 5.17354e-08 2.718 ||| 0-0 ||| 2 524574 +los ||| ’ s Opinion on the ||| 1 0.122289 1.90631e-06 3.80466e-15 2.718 ||| 0-4 ||| 1 524574 +los ||| ’ s Opinion on the ‘ single ||| 1 0.122289 1.90631e-06 6.78067e-23 2.718 ||| 0-4 ||| 1 524574 +los ||| ’ s Opinion on the ‘ ||| 1 0.122289 1.90631e-06 4.27264e-19 2.718 ||| 0-4 ||| 1 524574 +los ||| ’ s business ||| 0.0833333 0.057606 1.90631e-06 2.02684e-09 2.718 ||| 0-2 ||| 12 524574 +los ||| ’ s captains of ||| 1 0.0139748 1.90631e-06 2.23628e-14 2.718 ||| 0-0 ||| 1 524574 +los ||| ’ s captains ||| 1 0.0139748 1.90631e-06 4.11353e-13 2.718 ||| 0-0 ||| 1 524574 +los ||| ’ s departments have ||| 0.5 0.152393 1.90631e-06 4.66105e-12 2.718 ||| 0-2 ||| 2 524574 +los ||| ’ s departments ||| 0.333333 0.152393 1.90631e-06 3.89726e-10 2.718 ||| 0-2 ||| 3 524574 +los ||| ’ s face ||| 0.5 0.0341558 1.90631e-06 4.5933e-10 2.718 ||| 0-1 ||| 2 524574 +los ||| ’ s figure of ||| 0.333333 0.0139748 1.90631e-06 4.26571e-12 2.718 ||| 0-0 ||| 3 524574 +los ||| ’ s figure ||| 0.25 0.0139748 1.90631e-06 7.84657e-11 2.718 ||| 0-0 ||| 4 524574 +los ||| ’ s interest , ||| 0.333333 0.0341558 1.90631e-06 3.67692e-11 2.718 ||| 0-1 ||| 3 524574 +los ||| ’ s interest ||| 0.0285714 0.0341558 1.90631e-06 3.08325e-10 2.718 ||| 0-1 ||| 35 524574 +los ||| ’ s own ||| 0.027027 0.0341558 3.81262e-06 4.65453e-09 2.718 ||| 0-1 ||| 74 524574 +los ||| ’ s part ||| 0.047619 0.0341558 1.90631e-06 3.27324e-09 2.718 ||| 0-1 ||| 21 524574 +los ||| ’ s terms ||| 0.25 0.0139748 1.90631e-06 1.12875e-09 2.718 ||| 0-0 ||| 4 524574 +los ||| ’ s ||| 0.019754 0.0240653 0.000318354 8.51986e-07 2.718 ||| 0-0 0-1 ||| 8454 524574 +los ||| ’ shackles ||| 1 0.0139748 1.90631e-06 5.9466e-10 2.718 ||| 0-0 ||| 1 524574 +los ||| ’ ||| 0.00668351 0.0139748 0.000327885 0.0005406 2.718 ||| 0-0 ||| 25735 524574 +políticos en ||| European integration is ||| 0.00645161 1.23922e-06 0.0106383 4.84839e-10 2.718 ||| 0-0 ||| 155 94 +políticos en ||| European integration ||| 0.000260484 1.23922e-06 0.0106383 1.54697e-08 2.718 ||| 0-0 ||| 3839 94 +políticos en ||| European ||| 5.84751e-06 1.23922e-06 0.0106383 0.0007813 2.718 ||| 0-0 ||| 171013 94 +políticos en ||| House at ||| 0.00980392 1.03325e-05 0.0106383 1.00045e-05 2.718 ||| 1-1 ||| 102 94 +políticos en ||| a policy ||| 0.000341997 0.000409687 0.0106383 0.00221066 2.718 ||| 0-1 ||| 2924 94 +políticos en ||| a politician on ||| 0.166667 0.0121678 0.0106383 6.95045e-06 2.718 ||| 0-1 1-2 ||| 6 94 +políticos en ||| and policy-makers in ||| 1 0.164391 0.0106383 2.03368e-05 2.718 ||| 0-1 1-2 ||| 1 94 +políticos en ||| at ||| 6.99697e-06 1.03325e-05 0.0106383 0.040002 2.718 ||| 1-0 ||| 142919 94 +políticos en ||| in policy ||| 0.0116279 0.00700985 0.0106383 0.0230304 2.718 ||| 1-0 0-1 ||| 86 94 +políticos en ||| in ||| 1.80672e-06 1.94466e-05 0.0212766 0.461781 2.718 ||| 1-0 ||| 1.10698e+06 94 +políticos en ||| of policy in ||| 0.08 0.00700985 0.0212766 0.00125203 2.718 ||| 0-1 1-2 ||| 25 94 +políticos en ||| of ||| 7.01395e-07 3.74164e-07 0.0106383 0.013637 2.718 ||| 1-0 ||| 1.42573e+06 94 +políticos en ||| policies in ||| 0.00434783 0.000930163 0.0106383 0.00102224 2.718 ||| 0-0 1-1 ||| 230 94 +políticos en ||| policy in ||| 0.00298063 0.00700985 0.0212766 0.0230304 2.718 ||| 0-0 1-1 ||| 671 94 +políticos en ||| policy ||| 2.09343e-05 0.000409687 0.0212766 0.049873 2.718 ||| 0-0 ||| 95537 94 +políticos en ||| policy-makers in ||| 0.166667 0.164391 0.0106383 0.00162358 2.718 ||| 0-0 1-1 ||| 6 94 +políticos en ||| policymakers in ||| 0.2 0.195161 0.0106383 0.00144316 2.718 ||| 0-0 1-1 ||| 5 94 +políticos en ||| political groups within ||| 0.0526316 0.0784884 0.0106383 4.95011e-07 2.718 ||| 0-0 1-2 ||| 19 94 +políticos en ||| political ||| 0.000631627 0.00752714 0.351064 0.674458 2.718 ||| 0-0 ||| 52246 94 +políticos en ||| politically ||| 0.000668673 0.00028977 0.0212766 0.00410865 2.718 ||| 0-0 1-0 ||| 2991 94 +políticos en ||| politician in ||| 0.0666667 0.0320594 0.0106383 0.000871889 2.718 ||| 0-0 1-1 ||| 15 94 +políticos en ||| politician on ||| 0.142857 0.0121678 0.0106383 0.000156804 2.718 ||| 0-0 1-1 ||| 7 94 +políticos en ||| politicians and ||| 0.00284091 0.000614186 0.0106383 0.000176262 2.718 ||| 0-0 1-1 ||| 352 94 +políticos en ||| politicians as ||| 0.125 0.0403956 0.0106383 0.00343619 2.718 ||| 0-0 1-1 ||| 8 94 +políticos en ||| politicians in the European Union have ||| 1 0.36543 0.0106383 1.20722e-10 2.718 ||| 0-0 1-1 ||| 1 94 +políticos en ||| politicians in the European Union ||| 0.2 0.36543 0.0106383 1.0094e-08 2.718 ||| 0-0 1-1 ||| 5 94 +políticos en ||| politicians in the European ||| 1 0.36543 0.0106383 1.81091e-05 2.718 ||| 0-0 1-1 ||| 1 94 +políticos en ||| politicians in the ||| 0.0227273 0.36543 0.0106383 0.00541557 2.718 ||| 0-0 1-1 ||| 44 94 +políticos en ||| politicians in ||| 0.135484 0.36543 0.223404 0.0882132 2.718 ||| 0-0 1-1 ||| 155 94 +políticos en ||| politicians on both ||| 0.25 0.138695 0.0106383 2.62797e-05 2.718 ||| 0-0 1-1 ||| 4 94 +políticos en ||| politicians on ||| 0.142857 0.138695 0.0106383 0.0158646 2.718 ||| 0-0 1-1 ||| 7 94 +políticos en ||| politicians onto ||| 1 0.140748 0.0106383 3.82247e-05 2.718 ||| 0-0 1-1 ||| 1 94 +políticos en ||| politics in ||| 0.0147059 0.0135411 0.0106383 0.00333729 2.718 ||| 0-0 1-1 ||| 68 94 +políticos en ||| politics on ||| 0.166667 0.0051394 0.0106383 0.000600191 2.718 ||| 0-0 1-1 ||| 6 94 +políticos en ||| politics ||| 0.000287687 0.000791404 0.0106383 0.007227 2.718 ||| 0-0 ||| 3476 94 +políticos en ||| that political ||| 0.0294118 0.00752714 0.0106383 0.0113455 2.718 ||| 0-1 ||| 34 94 +políticos en ||| the House at ||| 0.0185185 1.03325e-05 0.0106383 6.14194e-07 2.718 ||| 1-2 ||| 54 94 +políticos ||| ' policy ||| 0.0192308 0.011571 7.25058e-05 0.000171309 2.718 ||| 0-1 ||| 52 13792 +políticos ||| ' s political ||| 0.0294118 0.212593 7.25058e-05 4.40705e-06 2.718 ||| 0-2 ||| 34 13792 +políticos ||| ' statute ||| 0.047619 0.0016978 7.25058e-05 4.47224e-07 2.718 ||| 0-1 ||| 21 13792 +políticos ||| 's political ||| 0.0502513 0.212593 0.000725058 0.00128444 2.718 ||| 0-1 ||| 199 13792 +políticos ||| 's politicians ||| 0.0740741 0.603207 0.000145012 0.000363794 2.718 ||| 0-1 ||| 27 13792 +políticos ||| , Members ||| 0.00378788 0.0001021 7.25058e-05 2.32904e-05 2.718 ||| 0-1 ||| 264 13792 +políticos ||| , a political ||| 0.0454545 0.212593 7.25058e-05 0.00356523 2.718 ||| 0-2 ||| 22 13792 +políticos ||| , as political ||| 0.5 0.212593 7.25058e-05 0.000820763 2.718 ||| 0-2 ||| 2 13792 +políticos ||| , journalists , political ||| 1 0.212593 7.25058e-05 2.39798e-08 2.718 ||| 0-3 ||| 1 13792 +políticos ||| , organizing political education ||| 1 0.212593 7.25058e-05 9.787e-12 2.718 ||| 0-2 ||| 1 13792 +políticos ||| , organizing political ||| 1 0.212593 7.25058e-05 2.89556e-07 2.718 ||| 0-2 ||| 1 13792 +políticos ||| , political ||| 0.0252525 0.212593 0.00108759 0.0804323 2.718 ||| 0-1 ||| 594 13792 +políticos ||| , politically ||| 0.0240964 0.0427263 0.000290023 0.00097833 2.718 ||| 0-1 ||| 166 13792 +políticos ||| , politicians ||| 0.00934579 0.603207 7.25058e-05 0.022781 2.718 ||| 0-1 ||| 107 13792 +políticos ||| , the political ||| 0.0714286 0.212593 7.25058e-05 0.00493788 2.718 ||| 0-2 ||| 14 13792 +políticos ||| , we politicians ||| 0.1 0.603207 7.25058e-05 0.000258617 2.718 ||| 0-2 ||| 10 13792 +políticos ||| , will political ||| 1 0.212593 7.25058e-05 0.000695836 2.718 ||| 0-2 ||| 1 13792 +políticos ||| - increasingly poor - ||| 1 2.91e-05 7.25058e-05 1.66905e-15 2.718 ||| 0-0 ||| 1 13792 +políticos ||| - increasingly poor ||| 1 2.91e-05 7.25058e-05 4.42472e-13 2.718 ||| 0-0 ||| 1 13792 +políticos ||| - increasingly ||| 0.333333 2.91e-05 7.25058e-05 1.4999e-08 2.718 ||| 0-0 ||| 3 13792 +políticos ||| - political ||| 0.0666667 0.212593 7.25058e-05 0.00254412 2.718 ||| 0-1 ||| 15 13792 +políticos ||| - ||| 1.08789e-05 2.91e-05 7.25058e-05 0.0002604 2.718 ||| 0-0 ||| 91921 13792 +políticos ||| 000 political ||| 1 0.212593 7.25058e-05 7.06158e-05 2.718 ||| 0-1 ||| 1 13792 +políticos ||| 10 000 political ||| 1 0.212593 7.25058e-05 1.14398e-09 2.718 ||| 0-2 ||| 1 13792 +políticos ||| American politicians ||| 0.0714286 0.603207 7.25058e-05 4.89032e-06 2.718 ||| 0-1 ||| 14 13792 +políticos ||| Challenges ||| 0.0833333 0.0526316 7.25058e-05 0.0001302 2.718 ||| 0-0 ||| 12 13792 +políticos ||| Commission as politicians ||| 1 0.603207 7.25058e-05 1.1386e-06 2.718 ||| 0-2 ||| 1 13792 +políticos ||| EU politicians ||| 0.0625 0.603207 7.25058e-05 9.45207e-05 2.718 ||| 0-1 ||| 16 13792 +políticos ||| European Parliament in respect of the pronouncement ||| 1 3.5e-05 7.25058e-05 1.52453e-20 2.718 ||| 0-0 ||| 1 13792 +políticos ||| European Parliament in respect of the ||| 0.25 3.5e-05 7.25058e-05 1.38594e-14 2.718 ||| 0-0 ||| 4 13792 +políticos ||| European Parliament in respect of ||| 0.166667 3.5e-05 7.25058e-05 2.25753e-13 2.718 ||| 0-0 ||| 6 13792 +políticos ||| European Parliament in respect ||| 0.166667 3.5e-05 7.25058e-05 4.15261e-12 2.718 ||| 0-0 ||| 6 13792 +políticos ||| European Parliament in ||| 0.00100806 3.5e-05 7.25058e-05 9.59919e-09 2.718 ||| 0-0 ||| 992 13792 +políticos ||| European Parliament ||| 4.86429e-05 3.5e-05 0.000145012 4.48466e-07 2.718 ||| 0-0 ||| 41116 13792 +políticos ||| European People 's Party supporting ||| 1 3.5e-05 7.25058e-05 4.21469e-19 2.718 ||| 0-0 ||| 1 13792 +políticos ||| European People 's Party ||| 0.00260417 3.5e-05 7.25058e-05 1.31709e-14 2.718 ||| 0-0 ||| 384 13792 +políticos ||| European People 's ||| 0.000726744 3.5e-05 7.25058e-05 8.73402e-11 2.718 ||| 0-0 ||| 1376 13792 +políticos ||| European People ||| 0.0232558 3.5e-05 7.25058e-05 4.58623e-08 2.718 ||| 0-0 ||| 43 13792 +políticos ||| European integration is ||| 0.00645161 3.5e-05 7.25058e-05 4.84839e-10 2.718 ||| 0-0 ||| 155 13792 +políticos ||| European integration ||| 0.000260484 3.5e-05 7.25058e-05 1.54697e-08 2.718 ||| 0-0 ||| 3839 13792 +políticos ||| European political ||| 0.00577367 0.212593 0.000362529 0.00225532 2.718 ||| 0-1 ||| 866 13792 +políticos ||| European ||| 4.09326e-05 3.5e-05 0.000507541 0.0007813 2.718 ||| 0-0 ||| 171013 13792 +políticos ||| Finnish politicians ||| 0.5 0.603207 7.25058e-05 9.55141e-07 2.718 ||| 0-1 ||| 2 13792 +políticos ||| House , ||| 0.000301841 7.65e-05 7.25058e-05 1.5527e-05 2.718 ||| 0-0 ||| 3313 13792 +políticos ||| House ||| 3.79694e-05 7.65e-05 7.25058e-05 0.0001302 2.718 ||| 0-0 ||| 26337 13792 +políticos ||| IGC ||| 0.000664894 0.0005718 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 1504 13792 +políticos ||| Korean political ||| 0.5 0.212593 7.25058e-05 1.48381e-06 2.718 ||| 0-1 ||| 2 13792 +políticos ||| Members ||| 0.000168058 0.0001021 0.000217517 0.0001953 2.718 ||| 0-0 ||| 17851 13792 +políticos ||| Polish ||| 0.000483793 0.0005266 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 2067 13792 +políticos ||| Political Rights ( ICPPR ) , ||| 1 0.1 7.25058e-05 1.13517e-20 2.718 ||| 0-0 ||| 1 13792 +políticos ||| Political Rights ( ICPPR ) ||| 1 0.1 7.25058e-05 9.51887e-20 2.718 ||| 0-0 ||| 1 13792 +políticos ||| Political Rights ( ICPPR ||| 1 0.1 7.25058e-05 6.62274e-17 2.718 ||| 0-0 ||| 1 13792 +políticos ||| Political Rights ( ||| 1 0.1 7.25058e-05 1.65569e-10 2.718 ||| 0-0 ||| 1 13792 +políticos ||| Political Rights ||| 0.142857 0.1 7.25058e-05 1.7168e-07 2.718 ||| 0-0 ||| 7 13792 +políticos ||| Political ||| 0.0962963 0.1 0.00188515 0.0020835 2.718 ||| 0-0 ||| 270 13792 +políticos ||| Procedure of the European Parliament in respect ||| 1 3.5e-05 7.25058e-05 8.82841e-19 2.718 ||| 0-3 ||| 1 13792 +políticos ||| Procedure of the European Parliament in ||| 1 3.5e-05 7.25058e-05 2.04078e-15 2.718 ||| 0-3 ||| 1 13792 +políticos ||| Procedure of the European Parliament ||| 0.25 3.5e-05 7.25058e-05 9.53435e-14 2.718 ||| 0-3 ||| 4 13792 +políticos ||| Procedure of the European ||| 1 3.5e-05 7.25058e-05 1.66104e-10 2.718 ||| 0-3 ||| 1 13792 +políticos ||| Rules of Procedure of the European Parliament ||| 0.0333333 3.5e-05 7.25058e-05 3.67493e-19 2.718 ||| 0-5 ||| 30 13792 +políticos ||| Rules of Procedure of the European ||| 0.5 3.5e-05 7.25058e-05 6.40231e-16 2.718 ||| 0-5 ||| 2 13792 +políticos ||| Russian politicians ||| 0.0909091 0.603207 7.25058e-05 3.57223e-06 2.718 ||| 0-1 ||| 11 13792 +políticos ||| a matter of policy ||| 0.0714286 0.011571 7.25058e-05 1.24687e-07 2.718 ||| 0-3 ||| 14 13792 +políticos ||| a policy ||| 0.000341997 0.011571 7.25058e-05 0.00221066 2.718 ||| 0-1 ||| 2924 13792 +políticos ||| a political cost ||| 0.5 0.212593 7.25058e-05 2.47538e-06 2.718 ||| 0-1 ||| 2 13792 +políticos ||| a political level ||| 0.03 0.212593 0.000217517 2.55729e-05 2.718 ||| 0-1 ||| 100 13792 +políticos ||| a political show ||| 0.333333 0.212593 7.25058e-05 4.00306e-06 2.718 ||| 0-1 ||| 3 13792 +políticos ||| a political ||| 0.0311688 0.212593 0.00174014 0.0298959 2.718 ||| 0-1 ||| 770 13792 +políticos ||| a politically ||| 0.0333333 0.0427263 7.25058e-05 0.000363636 2.718 ||| 0-1 ||| 30 13792 +políticos ||| a politician as ||| 0.5 0.0529197 7.25058e-05 8.54022e-07 2.718 ||| 0-1 ||| 2 13792 +políticos ||| a politician use ||| 0.25 0.0529197 7.25058e-05 4.06908e-08 2.718 ||| 0-1 ||| 4 13792 +políticos ||| a politician ||| 0.0234742 0.0529197 0.000362529 8.36915e-05 2.718 ||| 0-1 ||| 213 13792 +políticos ||| a set of political ||| 1 0.212593 7.25058e-05 9.49802e-07 2.718 ||| 0-3 ||| 1 13792 +políticos ||| a small but highly sensitive programme ||| 1 0.0002371 7.25058e-05 1.94709e-21 2.718 ||| 0-4 ||| 1 13792 +políticos ||| a small but highly sensitive ||| 1 0.0002371 7.25058e-05 1.52833e-17 2.718 ||| 0-4 ||| 1 13792 +políticos ||| able to extract political ||| 1 0.212593 7.25058e-05 1.45106e-10 2.718 ||| 0-3 ||| 1 13792 +políticos ||| about by political ||| 1 0.212593 7.25058e-05 5.008e-06 2.718 ||| 0-2 ||| 1 13792 +políticos ||| about political ||| 0.125 0.212593 0.000145012 0.000953886 2.718 ||| 0-1 ||| 16 13792 +políticos ||| about politicians ||| 0.5 0.603207 7.25058e-05 0.000270171 2.718 ||| 0-1 ||| 2 13792 +políticos ||| achieve political ||| 0.333333 0.212593 7.25058e-05 0.000154114 2.718 ||| 0-1 ||| 3 13792 +políticos ||| actual political ||| 0.111111 0.212593 7.25058e-05 9.75941e-05 2.718 ||| 0-1 ||| 9 13792 +políticos ||| all , organizing political education ||| 1 0.212593 7.25058e-05 4.62475e-14 2.718 ||| 0-3 ||| 1 13792 +políticos ||| all , organizing political ||| 1 0.212593 7.25058e-05 1.36827e-09 2.718 ||| 0-3 ||| 1 13792 +políticos ||| all political ||| 0.208333 0.212593 0.000362529 0.00318708 2.718 ||| 0-1 ||| 24 13792 +políticos ||| all politicians , ||| 0.2 0.603207 7.25058e-05 0.000107649 2.718 ||| 0-1 ||| 5 13792 +políticos ||| all politicians ||| 0.0810811 0.603207 0.000217517 0.000902684 2.718 ||| 0-1 ||| 37 13792 +políticos ||| also political ||| 0.0344828 0.212593 7.25058e-05 0.00340507 2.718 ||| 0-1 ||| 29 13792 +políticos ||| alternative to a political show ||| 1 0.212593 7.25058e-05 8.71476e-12 2.718 ||| 0-3 ||| 1 13792 +políticos ||| alternative to a political ||| 1 0.212593 7.25058e-05 6.50841e-08 2.718 ||| 0-3 ||| 1 13792 +políticos ||| amongst political ||| 1 0.212593 7.25058e-05 2.25943e-05 2.718 ||| 0-1 ||| 1 13792 +políticos ||| and our political ||| 0.2 0.212593 7.25058e-05 1.16534e-05 2.718 ||| 0-2 ||| 5 13792 +políticos ||| and policy-makers ||| 0.0833333 0.271357 7.25058e-05 4.40398e-05 2.718 ||| 0-1 ||| 12 13792 +políticos ||| and political ||| 0.00134589 0.212593 0.000217517 0.00844819 2.718 ||| 0-1 ||| 2229 13792 +políticos ||| and politicians ||| 0.00502513 0.603207 7.25058e-05 0.0023928 2.718 ||| 0-1 ||| 199 13792 +políticos ||| and to bring about political ||| 1 0.212593 7.25058e-05 3.30508e-10 2.718 ||| 0-4 ||| 1 13792 +políticos ||| and ||| 6.53334e-07 8e-07 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 1.53061e+06 13792 +políticos ||| any political ||| 0.0789474 0.212593 0.000217517 0.00101992 2.718 ||| 0-1 ||| 38 13792 +políticos ||| anything to promote political ||| 1 0.212593 7.25058e-05 6.02745e-10 2.718 ||| 0-3 ||| 1 13792 +políticos ||| are endeavouring to do politically ||| 0.5 0.0427263 7.25058e-05 2.20375e-13 2.718 ||| 0-4 ||| 2 13792 +políticos ||| are in policy ||| 1 0.011571 7.25058e-05 1.6197e-05 2.718 ||| 0-2 ||| 1 13792 +políticos ||| are of political concern ||| 0.5 0.212593 7.25058e-05 7.42695e-08 2.718 ||| 0-2 ||| 2 13792 +políticos ||| are of political ||| 1 0.212593 7.25058e-05 0.000556326 2.718 ||| 0-2 ||| 1 13792 +políticos ||| are political ||| 0.117647 0.212593 0.000145012 0.0102333 2.718 ||| 0-1 ||| 17 13792 +políticos ||| are politically ||| 0.0652174 0.0427263 0.000217517 0.000124472 2.718 ||| 0-1 ||| 46 13792 +políticos ||| are politicians ||| 0.166667 0.603207 0.000145012 0.00289841 2.718 ||| 0-1 ||| 12 13792 +políticos ||| are ||| 1.04267e-05 1.62e-05 0.000145012 0.0003907 2.718 ||| 0-0 ||| 191815 13792 +políticos ||| as political ||| 0.294118 0.212593 0.000362529 0.00688244 2.718 ||| 0-1 ||| 17 13792 +políticos ||| as politicians ||| 0.0149254 0.603207 0.000290023 0.00194933 2.718 ||| 0-1 ||| 268 13792 +políticos ||| as the political , ||| 1 0.212593 7.25058e-05 5.03881e-05 2.718 ||| 0-2 ||| 1 13792 +políticos ||| as the political ||| 0.333333 0.212593 0.000145012 0.000422525 2.718 ||| 0-2 ||| 6 13792 +políticos ||| at a political level ||| 0.0144928 0.212593 7.25058e-05 1.07084e-07 2.718 ||| 0-2 ||| 69 13792 +políticos ||| at a political ||| 0.25 0.212593 7.25058e-05 0.000125186 2.718 ||| 0-2 ||| 4 13792 +políticos ||| at these political ||| 1 0.212593 7.25058e-05 2.929e-06 2.718 ||| 0-2 ||| 1 13792 +políticos ||| attempts to establish political ||| 0.5 0.212593 7.25058e-05 1.44956e-10 2.718 ||| 0-3 ||| 2 13792 +políticos ||| authority ||| 0.000195618 0.0002119 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 5112 13792 +políticos ||| basis of political ||| 0.166667 0.212593 7.25058e-05 2.17724e-05 2.718 ||| 0-2 ||| 6 13792 +políticos ||| be members of political ||| 0.5 0.212593 7.25058e-05 9.80135e-08 2.718 ||| 0-3 ||| 2 13792 +políticos ||| be messed about by political ||| 1 0.212593 7.25058e-05 3.63038e-14 2.718 ||| 0-4 ||| 1 13792 +políticos ||| be political ||| 0.162162 0.212593 0.000435035 0.0122231 2.718 ||| 0-1 ||| 37 13792 +políticos ||| been drawn ||| 0.0163934 1.27e-05 7.25058e-05 1.85014e-08 2.718 ||| 0-0 ||| 61 13792 +políticos ||| been made in policy ||| 1 0.011571 7.25058e-05 7.46716e-09 2.718 ||| 0-3 ||| 1 13792 +políticos ||| been ||| 3.68378e-05 1.27e-05 0.000145012 0.0001302 2.718 ||| 0-0 ||| 54292 13792 +políticos ||| borders ||| 0.000139198 0.0001114 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 7184 13792 +políticos ||| both policy-makers ||| 1 0.271357 7.25058e-05 5.82409e-06 2.718 ||| 0-1 ||| 1 13792 +políticos ||| both political ||| 0.0588235 0.212593 0.000217517 0.00111724 2.718 ||| 0-1 ||| 51 13792 +políticos ||| bring about political ||| 0.5 0.212593 7.25058e-05 2.96945e-07 2.718 ||| 0-2 ||| 2 13792 +políticos ||| but highly sensitive programme ||| 1 0.0002371 7.25058e-05 3.4291e-16 2.718 ||| 0-2 ||| 1 13792 +políticos ||| but highly sensitive ||| 0.2 0.0002371 7.25058e-05 2.69161e-12 2.718 ||| 0-2 ||| 5 13792 +políticos ||| by policy ||| 0.142857 0.011571 7.25058e-05 0.000261838 2.718 ||| 0-1 ||| 7 13792 +políticos ||| by political ||| 0.0869565 0.212593 0.000145012 0.00354097 2.718 ||| 0-1 ||| 23 13792 +políticos ||| by politicians ||| 0.0394737 0.603207 0.000217517 0.00100292 2.718 ||| 0-1 ||| 76 13792 +políticos ||| certain political ||| 0.25 0.212593 7.25058e-05 0.000192221 2.718 ||| 0-1 ||| 4 13792 +políticos ||| changes of policy ||| 1 0.011571 7.25058e-05 1.38547e-07 2.718 ||| 0-2 ||| 1 13792 +políticos ||| cheap political ||| 0.0666667 0.212593 7.25058e-05 6.33991e-06 2.718 ||| 0-1 ||| 15 13792 +políticos ||| civilisations ||| 0.0037594 0.0033557 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 266 13792 +políticos ||| committing political ||| 1 0.212593 7.25058e-05 5.32822e-06 2.718 ||| 0-1 ||| 1 13792 +políticos ||| common policy ||| 0.00149701 0.011571 7.25058e-05 1.15207e-05 2.718 ||| 0-1 ||| 668 13792 +políticos ||| competent political ||| 0.5 0.212593 7.25058e-05 8.76795e-06 2.718 ||| 0-1 ||| 2 13792 +políticos ||| conduct of politics ||| 1 0.022352 7.25058e-05 2.36126e-08 2.718 ||| 0-2 ||| 1 13792 +políticos ||| conscience ||| 0.00227273 0.0021119 0.000145012 0.0001302 2.718 ||| 0-0 ||| 880 13792 +políticos ||| contain political ||| 1 0.212593 7.25058e-05 2.30665e-05 2.718 ||| 0-1 ||| 1 13792 +políticos ||| context of our political ||| 1 0.212593 7.25058e-05 6.78749e-09 2.718 ||| 0-3 ||| 1 13792 +políticos ||| controversial ||| 0.000784314 0.0007337 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 1275 13792 +políticos ||| course of my work with political ||| 1 0.212593 7.25058e-05 1.20423e-13 2.718 ||| 0-5 ||| 1 13792 +políticos ||| decision ||| 5.00175e-05 0.0001051 7.25058e-05 0.0001302 2.718 ||| 0-0 ||| 19993 13792 +políticos ||| decision-makers does ||| 1 0.0333863 7.25058e-05 9.59024e-07 2.718 ||| 0-0 ||| 1 13792 +políticos ||| decision-makers ||| 0.00497512 0.0333863 0.000145012 0.0013673 2.718 ||| 0-0 ||| 402 13792 +políticos ||| despicable politicians ||| 1 0.603207 7.25058e-05 3.43851e-07 2.718 ||| 0-1 ||| 1 13792 +políticos ||| different political ||| 0.047619 0.212593 0.000290023 0.000148516 2.718 ||| 0-1 ||| 84 13792 +políticos ||| diplomatic ||| 0.000980392 0.0010267 0.000145012 0.0001302 2.718 ||| 0-0 ||| 2040 13792 +políticos ||| directives ||| 0.000212089 0.0001939 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 4715 13792 +políticos ||| discovered ||| 0.00169492 0.0013966 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 590 13792 +políticos ||| distinguished political ||| 0.5 0.212593 7.25058e-05 3.91186e-06 2.718 ||| 0-1 ||| 2 13792 +políticos ||| do political ||| 1 0.212593 7.25058e-05 0.00231697 2.718 ||| 0-1 ||| 1 13792 +políticos ||| do politically ||| 0.2 0.0427263 7.25058e-05 2.81822e-05 2.718 ||| 0-1 ||| 5 13792 +políticos ||| door of their political ||| 1 0.212593 7.25058e-05 1.92524e-09 2.718 ||| 0-3 ||| 1 13792 +políticos ||| economic ||| 1.99346e-05 4.35e-05 7.25058e-05 0.0001302 2.718 ||| 0-0 ||| 50164 13792 +políticos ||| effect vital political ||| 1 0.212593 7.25058e-05 7.04247e-09 2.718 ||| 0-2 ||| 1 13792 +políticos ||| elected representatives ||| 0.00144509 0.0013957 7.25058e-05 1.26587e-08 2.718 ||| 0-0 ||| 692 13792 +políticos ||| elected ||| 0.000825991 0.0013957 0.000217517 0.0003907 2.718 ||| 0-0 ||| 3632 13792 +políticos ||| elements in politics ||| 1 0.022352 7.25058e-05 5.50698e-09 2.718 ||| 0-2 ||| 1 13792 +políticos ||| endeavouring to do politically ||| 0.5 0.0427263 7.25058e-05 1.45245e-11 2.718 ||| 0-3 ||| 2 13792 +políticos ||| equal political ||| 0.333333 0.212593 7.25058e-05 3.8579e-05 2.718 ||| 0-1 ||| 3 13792 +políticos ||| establish political ||| 0.142857 0.212593 7.25058e-05 5.14611e-05 2.718 ||| 0-1 ||| 7 13792 +políticos ||| established politicians ||| 0.25 0.603207 7.25058e-05 2.85969e-05 2.718 ||| 0-1 ||| 4 13792 +políticos ||| establishment political ||| 1 0.212593 7.25058e-05 3.03506e-05 2.718 ||| 0-1 ||| 1 13792 +políticos ||| ethics ||| 0.00160256 0.0015152 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 624 13792 +políticos ||| expediently ||| 0.1 0.2 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 10 13792 +políticos ||| extract political ||| 1 0.212593 7.25058e-05 1.95593e-06 2.718 ||| 0-1 ||| 1 13792 +políticos ||| failed politically ||| 0.25 0.0427263 7.25058e-05 3.80652e-07 2.718 ||| 0-1 ||| 4 13792 +políticos ||| finance our objectives ||| 1 7.37e-05 7.25058e-05 1.67924e-12 2.718 ||| 0-2 ||| 1 13792 +políticos ||| first by politicians ||| 1 0.603207 7.25058e-05 5.3997e-07 2.718 ||| 0-2 ||| 1 13792 +políticos ||| for political ||| 0.117647 0.212593 0.000435035 0.00518368 2.718 ||| 0-1 ||| 51 13792 +políticos ||| for these political ||| 1 0.212593 7.25058e-05 5.376e-06 2.718 ||| 0-2 ||| 1 13792 +políticos ||| foreign policy ||| 0.000201654 0.011571 7.25058e-05 1.36153e-06 2.718 ||| 0-1 ||| 4959 13792 +políticos ||| from policy ||| 0.333333 0.011571 7.25058e-05 8.03155e-05 2.718 ||| 0-1 ||| 3 13792 +políticos ||| further political ||| 0.25 0.212593 7.25058e-05 0.000325966 2.718 ||| 0-1 ||| 4 13792 +políticos ||| further politically ||| 0.5 0.0427263 7.25058e-05 3.96485e-06 2.718 ||| 0-1 ||| 2 13792 +políticos ||| general political ||| 0.0114943 0.212593 7.25058e-05 0.000117963 2.718 ||| 0-1 ||| 87 13792 +políticos ||| go ||| 0.000113546 5.58e-05 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 8807 13792 +políticos ||| government ||| 6.17093e-05 0.000144 7.25058e-05 0.0001302 2.718 ||| 0-0 ||| 16205 13792 +políticos ||| great ||| 5.27482e-05 3.96e-05 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 18958 13792 +políticos ||| group ||| 4.97488e-05 0.0004718 7.25058e-05 0.000586 2.718 ||| 0-0 ||| 20101 13792 +políticos ||| have a political ||| 0.166667 0.212593 7.25058e-05 0.000357549 2.718 ||| 0-2 ||| 6 13792 +políticos ||| have failed politically ||| 0.25 0.0427263 7.25058e-05 4.55252e-09 2.718 ||| 0-2 ||| 4 13792 +políticos ||| have political ||| 0.166667 0.212593 0.000217517 0.00806638 2.718 ||| 0-1 ||| 18 13792 +políticos ||| highly sensitive programme ||| 1 0.0002371 7.25058e-05 5.01771e-13 2.718 ||| 0-1 ||| 1 13792 +políticos ||| highly sensitive ||| 0.00549451 0.0002371 7.25058e-05 3.93855e-09 2.718 ||| 0-1 ||| 182 13792 +políticos ||| hold political ||| 0.25 0.212593 7.25058e-05 0.000117491 2.718 ||| 0-1 ||| 4 13792 +políticos ||| in policy ||| 0.0465116 0.011571 0.000290023 0.00106751 2.718 ||| 0-1 ||| 86 13792 +políticos ||| in political ||| 0.0540541 0.212593 0.000290023 0.0144364 2.718 ||| 0-1 ||| 74 13792 +políticos ||| in politics ||| 0.0139165 0.022352 0.000507541 0.00015469 2.718 ||| 0-1 ||| 503 13792 +políticos ||| in positions of political ||| 1 0.212593 0.000145012 2.6527e-08 2.718 ||| 0-3 ||| 2 13792 +políticos ||| in the context of our political ||| 1 0.212593 7.25058e-05 8.91917e-12 2.718 ||| 0-5 ||| 1 13792 +políticos ||| intellectuals , journalists , political ||| 1 0.212593 7.25058e-05 1.67859e-14 2.718 ||| 0-4 ||| 1 13792 +políticos ||| internal political ||| 0.00465116 0.212593 7.25058e-05 3.12949e-05 2.718 ||| 0-1 ||| 215 13792 +políticos ||| is political ||| 0.0327869 0.212593 0.000145012 0.0211383 2.718 ||| 0-1 ||| 61 13792 +políticos ||| is politicians ||| 0.333333 0.603207 7.25058e-05 0.00598703 2.718 ||| 0-1 ||| 3 13792 +políticos ||| is possible for political ||| 1 0.212593 7.25058e-05 1.30311e-07 2.718 ||| 0-3 ||| 1 13792 +políticos ||| is the political ||| 0.111111 0.212593 7.25058e-05 0.00129772 2.718 ||| 0-2 ||| 9 13792 +políticos ||| it be political ||| 0.5 0.212593 7.25058e-05 0.000217366 2.718 ||| 0-2 ||| 2 13792 +políticos ||| it is political ||| 0.0714286 0.212593 7.25058e-05 0.000375906 2.718 ||| 0-2 ||| 14 13792 +políticos ||| it is possible for political ||| 1 0.212593 7.25058e-05 2.31735e-09 2.718 ||| 0-4 ||| 1 13792 +políticos ||| it on a political ||| 1 0.212593 7.25058e-05 3.55723e-06 2.718 ||| 0-3 ||| 1 13792 +políticos ||| it political ||| 0.2 0.212593 7.25058e-05 0.011994 2.718 ||| 0-1 ||| 5 13792 +políticos ||| its political ||| 0.0555556 0.212593 0.000145012 0.0009609 2.718 ||| 0-1 ||| 36 13792 +políticos ||| journalists , political ||| 1 0.212593 7.25058e-05 2.01081e-07 2.718 ||| 0-2 ||| 1 13792 +políticos ||| key policy ||| 0.0227273 0.011571 7.25058e-05 3.62577e-06 2.718 ||| 0-1 ||| 44 13792 +políticos ||| leaders ||| 0.000892459 0.0057585 0.000290023 0.0018881 2.718 ||| 0-0 ||| 4482 13792 +políticos ||| leading politicians ||| 0.0697674 0.603207 0.000217517 1.66385e-05 2.718 ||| 0-1 ||| 43 13792 +políticos ||| least , political ||| 0.5 0.212593 7.25058e-05 1.97381e-05 2.718 ||| 0-2 ||| 2 13792 +políticos ||| legal services ||| 0.00555556 0.0001288 7.25058e-05 1.72841e-08 2.718 ||| 0-0 ||| 180 13792 +políticos ||| legal ||| 8.07754e-05 0.0001288 0.000145012 0.0001953 2.718 ||| 0-0 ||| 24760 13792 +políticos ||| legislative ||| 9.96413e-05 0.0001056 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 10036 13792 +políticos ||| liberty political ||| 1 0.212593 7.25058e-05 6.81203e-06 2.718 ||| 0-1 ||| 1 13792 +políticos ||| life political ||| 1 0.212593 7.25058e-05 0.00010218 2.718 ||| 0-1 ||| 1 13792 +políticos ||| list of politicians ||| 0.333333 0.603207 7.25058e-05 7.59147e-07 2.718 ||| 0-2 ||| 3 13792 +políticos ||| lives ||| 0.00018031 0.0001794 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 5546 13792 +políticos ||| made in policy ||| 1 0.011571 7.25058e-05 2.23621e-06 2.718 ||| 0-2 ||| 1 13792 +políticos ||| main political ||| 0.0689655 0.212593 0.000145012 6.72435e-05 2.718 ||| 0-1 ||| 29 13792 +políticos ||| mainly political ||| 0.0833333 0.212593 7.25058e-05 3.15646e-05 2.718 ||| 0-1 ||| 12 13792 +políticos ||| major political ||| 0.00980392 0.212593 7.25058e-05 6.52875e-05 2.718 ||| 0-1 ||| 102 13792 +políticos ||| make policy at ||| 1 0.011571 7.25058e-05 3.62919e-07 2.718 ||| 0-1 ||| 1 13792 +políticos ||| make policy ||| 0.0909091 0.011571 7.25058e-05 8.66693e-05 2.718 ||| 0-1 ||| 11 13792 +políticos ||| make political ||| 0.1 0.212593 7.25058e-05 0.00117207 2.718 ||| 0-1 ||| 10 13792 +políticos ||| makers ||| 0.00813008 0.102041 0.000145012 0.004232 2.718 ||| 0-0 ||| 246 13792 +políticos ||| manifesto ||| 0.00729927 0.013986 7.25058e-05 0.0001302 2.718 ||| 0-0 ||| 137 13792 +políticos ||| many policy ||| 0.5 0.011571 7.25058e-05 1.71214e-05 2.718 ||| 0-1 ||| 2 13792 +políticos ||| many politicians ||| 0.0243902 0.603207 7.25058e-05 6.55799e-05 2.718 ||| 0-1 ||| 41 13792 +políticos ||| matter of policy ||| 0.0714286 0.011571 7.25058e-05 2.81297e-06 2.718 ||| 0-2 ||| 14 13792 +políticos ||| medium of political ||| 1 0.212593 7.25058e-05 3.0433e-07 2.718 ||| 0-2 ||| 1 13792 +políticos ||| members of political ||| 0.5 0.212593 7.25058e-05 5.40827e-06 2.718 ||| 0-2 ||| 2 13792 +políticos ||| messed about by political ||| 1 0.212593 7.25058e-05 2.0032e-12 2.718 ||| 0-3 ||| 1 13792 +políticos ||| more political ||| 0.0122699 0.212593 0.000145012 0.00154026 2.718 ||| 0-1 ||| 163 13792 +políticos ||| most vital political ||| 1 0.212593 7.25058e-05 9.12397e-09 2.718 ||| 0-2 ||| 1 13792 +políticos ||| my work with political ||| 1 0.212593 7.25058e-05 1.75567e-09 2.718 ||| 0-3 ||| 1 13792 +políticos ||| no alternative to a political show ||| 1 0.212593 7.25058e-05 6.78357e-15 2.718 ||| 0-4 ||| 1 13792 +políticos ||| no alternative to a political ||| 1 0.212593 7.25058e-05 5.06615e-11 2.718 ||| 0-4 ||| 1 13792 +políticos ||| no great ||| 0.027027 3.96e-05 7.25058e-05 5.06738e-08 2.718 ||| 0-1 ||| 37 13792 +políticos ||| not only the political ||| 0.5 0.212593 7.25058e-05 1.57353e-07 2.718 ||| 0-3 ||| 2 13792 +políticos ||| not political ||| 0.0909091 0.212593 7.25058e-05 0.00230267 2.718 ||| 0-1 ||| 11 13792 +políticos ||| noted political ||| 1 0.212593 7.25058e-05 2.06384e-05 2.718 ||| 0-1 ||| 1 13792 +políticos ||| now politicians ||| 1 0.603207 7.25058e-05 0.000393499 2.718 ||| 0-1 ||| 1 13792 +políticos ||| objectives ||| 6.83434e-05 7.37e-05 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 14632 13792 +políticos ||| occasion ||| 0.000422833 0.0003997 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 2365 13792 +políticos ||| occupied first by politicians ||| 1 0.603207 7.25058e-05 4.64374e-12 2.718 ||| 0-3 ||| 1 13792 +políticos ||| of European ||| 0.000838926 3.5e-05 7.25058e-05 4.24746e-05 2.718 ||| 0-1 ||| 1192 13792 +políticos ||| of Procedure of the European Parliament in ||| 1 3.5e-05 7.25058e-05 1.10945e-16 2.718 ||| 0-4 ||| 1 13792 +políticos ||| of Procedure of the European Parliament ||| 0.5 3.5e-05 7.25058e-05 5.18325e-15 2.718 ||| 0-4 ||| 2 13792 +políticos ||| of Procedure of the European ||| 1 3.5e-05 7.25058e-05 9.03006e-12 2.718 ||| 0-4 ||| 1 13792 +políticos ||| of all political ||| 0.1 0.212593 7.25058e-05 0.000173263 2.718 ||| 0-2 ||| 10 13792 +políticos ||| of authority ||| 0.00909091 0.0002119 7.25058e-05 3.5391e-06 2.718 ||| 0-1 ||| 110 13792 +políticos ||| of committing political ||| 1 0.212593 7.25058e-05 2.89663e-07 2.718 ||| 0-2 ||| 1 13792 +políticos ||| of different political ||| 0.5 0.212593 7.25058e-05 8.0739e-06 2.718 ||| 0-2 ||| 2 13792 +políticos ||| of it on a political ||| 1 0.212593 7.25058e-05 1.93385e-07 2.718 ||| 0-4 ||| 1 13792 +políticos ||| of my work with political ||| 1 0.212593 7.25058e-05 9.54454e-11 2.718 ||| 0-4 ||| 1 13792 +políticos ||| of our political ||| 0.2 0.212593 7.25058e-05 5.05774e-05 2.718 ||| 0-2 ||| 5 13792 +políticos ||| of parliament ||| 0.00694444 0.0004583 7.25058e-05 3.5391e-06 2.718 ||| 0-1 ||| 144 13792 +políticos ||| of policies ||| 0.00232558 0.0015354 7.25058e-05 0.000120346 2.718 ||| 0-1 ||| 430 13792 +políticos ||| of policy , the ||| 0.142857 0.011571 7.25058e-05 1.98501e-05 2.718 ||| 0-1 ||| 7 13792 +políticos ||| of policy , ||| 0.0519481 0.011571 0.000290023 0.000323335 2.718 ||| 0-1 ||| 77 13792 +políticos ||| of policy to ||| 0.0909091 0.011571 7.25058e-05 0.000240921 2.718 ||| 0-1 ||| 11 13792 +políticos ||| of policy ||| 0.122034 0.011571 0.00522042 0.0027113 2.718 ||| 0-1 ||| 590 13792 +políticos ||| of political concern ||| 0.333333 0.212593 7.25058e-05 4.89494e-06 2.718 ||| 0-1 ||| 3 13792 +políticos ||| of political ||| 0.152542 0.212593 0.00391531 0.0366662 2.718 ||| 0-1 ||| 354 13792 +políticos ||| of politicians who were members ||| 1 0.603207 7.25058e-05 2.42026e-12 2.718 ||| 0-1 ||| 1 13792 +políticos ||| of politicians who were ||| 1 0.603207 7.25058e-05 1.64085e-08 2.718 ||| 0-1 ||| 1 13792 +políticos ||| of politicians who ||| 0.0833333 0.603207 7.25058e-05 9.15962e-06 2.718 ||| 0-1 ||| 12 13792 +políticos ||| of politicians ||| 0.027027 0.603207 0.000362529 0.0103851 2.718 ||| 0-1 ||| 185 13792 +políticos ||| of politics ||| 0.0272109 0.022352 0.000580046 0.000392889 2.718 ||| 0-1 ||| 294 13792 +políticos ||| of the European Parliament in respect of ||| 0.333333 3.5e-05 7.25058e-05 7.5345e-16 2.718 ||| 0-2 ||| 3 13792 +políticos ||| of the European Parliament in respect ||| 0.333333 3.5e-05 7.25058e-05 1.38594e-14 2.718 ||| 0-2 ||| 3 13792 +políticos ||| of the European Parliament in ||| 0.00292398 3.5e-05 7.25058e-05 3.20373e-11 2.718 ||| 0-2 ||| 342 13792 +políticos ||| of the European Parliament ||| 0.000125849 3.5e-05 7.25058e-05 1.49676e-09 2.718 ||| 0-2 ||| 7946 13792 +políticos ||| of the European People 's Party supporting ||| 1 3.5e-05 7.25058e-05 1.40665e-21 2.718 ||| 0-2 ||| 1 13792 +políticos ||| of the European People 's Party ||| 0.000694444 3.5e-05 7.25058e-05 4.39579e-17 2.718 ||| 0-2 ||| 1440 13792 +políticos ||| of the European People 's ||| 0.0169492 3.5e-05 7.25058e-05 2.91498e-13 2.718 ||| 0-2 ||| 59 13792 +políticos ||| of the European People ||| 0.0125 3.5e-05 7.25058e-05 1.53066e-10 2.718 ||| 0-2 ||| 80 13792 +políticos ||| of the European ||| 0.000590667 3.5e-05 0.000145012 2.60759e-06 2.718 ||| 0-2 ||| 3386 13792 +políticos ||| of the more political ||| 0.5 0.212593 7.25058e-05 5.14062e-06 2.718 ||| 0-3 ||| 2 13792 +políticos ||| of the policy ||| 0.0031746 0.011571 7.25058e-05 0.000166451 2.718 ||| 0-2 ||| 315 13792 +políticos ||| of the political ||| 0.142857 0.212593 0.000725058 0.00225101 2.718 ||| 0-2 ||| 70 13792 +políticos ||| of their political ||| 0.375 0.212593 0.000217517 4.24998e-05 2.718 ||| 0-2 ||| 8 13792 +políticos ||| of these policy ||| 1 0.011571 7.25058e-05 2.81188e-06 2.718 ||| 0-2 ||| 1 13792 +políticos ||| offence to ||| 0.0238095 0.0013477 7.25058e-05 5.78467e-06 2.718 ||| 0-0 ||| 42 13792 +políticos ||| offence ||| 0.0018315 0.0013477 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 546 13792 +políticos ||| on a political ||| 0.2 0.212593 0.000145012 0.000200033 2.718 ||| 0-2 ||| 10 13792 +políticos ||| on policy ||| 0.0163934 0.011571 7.25058e-05 0.0003337 2.718 ||| 0-1 ||| 61 13792 +políticos ||| on political ||| 0.0625 0.212593 7.25058e-05 0.0045128 2.718 ||| 0-1 ||| 16 13792 +políticos ||| one political ||| 0.166667 0.212593 7.25058e-05 0.00281114 2.718 ||| 0-1 ||| 6 13792 +políticos ||| only the political ||| 0.5 0.212593 7.25058e-05 4.60892e-05 2.718 ||| 0-2 ||| 2 13792 +políticos ||| or political ||| 0.00793651 0.212593 7.25058e-05 0.000771108 2.718 ||| 0-1 ||| 126 13792 +políticos ||| order ||| 4.34764e-05 5.33e-05 7.25058e-05 0.0001302 2.718 ||| 0-0 ||| 23001 13792 +políticos ||| organizing political education ||| 1 0.212593 7.25058e-05 8.2068e-11 2.718 ||| 0-1 ||| 1 13792 +políticos ||| organizing political ||| 1 0.212593 7.25058e-05 2.42805e-06 2.718 ||| 0-1 ||| 1 13792 +políticos ||| other political ||| 0.333333 0.212593 0.000362529 0.00087376 2.718 ||| 0-1 ||| 15 13792 +políticos ||| our objectives ||| 0.00289855 7.37e-05 7.25058e-05 8.97989e-08 2.718 ||| 0-1 ||| 345 13792 +políticos ||| our political ||| 0.0697674 0.212593 0.000217517 0.000930347 2.718 ||| 0-1 ||| 43 13792 +políticos ||| out politically ||| 0.333333 0.0427263 7.25058e-05 3.14235e-05 2.718 ||| 0-1 ||| 3 13792 +políticos ||| own political ||| 0.137255 0.212593 0.000507541 0.00114341 2.718 ||| 0-1 ||| 51 13792 +políticos ||| own politicians ||| 0.333333 0.603207 7.25058e-05 0.00032385 2.718 ||| 0-1 ||| 3 13792 +políticos ||| parliament ||| 0.00043122 0.0004583 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 2319 13792 +políticos ||| party political ||| 0.0075188 0.212593 7.25058e-05 4.61329e-05 2.718 ||| 0-1 ||| 133 13792 +políticos ||| party politics ||| 0.0142857 0.022352 7.25058e-05 4.94327e-07 2.718 ||| 0-1 ||| 70 13792 +políticos ||| party ||| 0.00208176 0.0069417 0.000797564 0.0022788 2.718 ||| 0-0 ||| 5284 13792 +políticos ||| past political ||| 1 0.212593 7.25058e-05 8.63981e-05 2.718 ||| 0-1 ||| 1 13792 +políticos ||| playing this out politically ||| 0.333333 0.0427263 7.25058e-05 1.33803e-11 2.718 ||| 0-3 ||| 3 13792 +políticos ||| police ||| 0.00148395 0.0015146 0.000580046 0.0005209 2.718 ||| 0-0 ||| 5391 13792 +políticos ||| policies ' ||| 0.047619 0.0015354 7.25058e-05 7.60384e-06 2.718 ||| 0-0 ||| 21 13792 +políticos ||| policies , something ||| 0.5 0.0015354 7.25058e-05 1.46121e-07 2.718 ||| 0-0 ||| 2 13792 +políticos ||| policies , ||| 0.0026178 0.0015354 0.000145012 0.000263994 2.718 ||| 0-0 ||| 764 13792 +políticos ||| policies ||| 0.00131081 0.0015354 0.00188515 0.0022137 2.718 ||| 0-0 ||| 19835 13792 +políticos ||| policing ||| 0.00997506 0.0078585 0.000290023 0.0002604 2.718 ||| 0-0 ||| 401 13792 +políticos ||| policy , the ||| 0.0196078 0.011571 7.25058e-05 0.000365133 2.718 ||| 0-0 ||| 51 13792 +políticos ||| policy , ||| 0.00158541 0.011571 0.000290023 0.00594759 2.718 ||| 0-0 ||| 2523 13792 +políticos ||| policy at ||| 0.0103093 0.011571 7.25058e-05 0.000208838 2.718 ||| 0-0 ||| 97 13792 +políticos ||| policy makers , ||| 0.1 0.011571 7.25058e-05 2.14113e-08 2.718 ||| 0-0 ||| 10 13792 +políticos ||| policy makers at ||| 0.166667 0.0568059 7.25058e-05 8.83803e-07 2.718 ||| 0-0 0-1 ||| 6 13792 +políticos ||| policy makers ||| 0.0581395 0.0568059 0.000362529 0.000211063 2.718 ||| 0-0 0-1 ||| 86 13792 +políticos ||| policy of ||| 0.000419639 0.011571 7.25058e-05 0.0027113 2.718 ||| 0-0 ||| 2383 13792 +políticos ||| policy to ||| 0.00172712 0.011571 7.25058e-05 0.00443163 2.718 ||| 0-0 ||| 579 13792 +políticos ||| policy ||| 0.00743168 0.011571 0.0514791 0.049873 2.718 ||| 0-0 ||| 95537 13792 +políticos ||| policy-makers and politicians ||| 0.333333 0.437282 7.25058e-05 8.41284e-06 2.718 ||| 0-0 0-2 ||| 3 13792 +políticos ||| policy-makers ||| 0.0846154 0.271357 0.000797564 0.0035159 2.718 ||| 0-0 ||| 130 13792 +políticos ||| policy-making ||| 0.0132159 0.0121951 0.000217517 0.0002604 2.718 ||| 0-0 ||| 227 13792 +políticos ||| policymakers ||| 0.0747664 0.322148 0.000580046 0.0031252 2.718 ||| 0-0 ||| 107 13792 +políticos ||| political , as ||| 0.0909091 0.212593 7.25058e-05 0.000820763 2.718 ||| 0-0 ||| 11 13792 +políticos ||| political , ||| 0.00844595 0.212593 0.000725058 0.0804323 2.718 ||| 0-0 ||| 1184 13792 +políticos ||| political - ||| 0.0454545 0.212593 7.25058e-05 0.00254412 2.718 ||| 0-0 ||| 22 13792 +políticos ||| political actors ||| 0.0344828 0.212593 7.25058e-05 3.64207e-06 2.718 ||| 0-0 ||| 29 13792 +políticos ||| political and ||| 0.00112013 0.212593 0.000290023 0.00844819 2.718 ||| 0-0 ||| 3571 13792 +políticos ||| political class ||| 0.0107527 0.212593 7.25058e-05 5.80034e-06 2.718 ||| 0-0 ||| 93 13792 +políticos ||| political concern ||| 0.0625 0.212593 7.25058e-05 9.00401e-05 2.718 ||| 0-0 ||| 16 13792 +políticos ||| political cost ||| 0.2 0.212593 7.25058e-05 5.58451e-05 2.718 ||| 0-0 ||| 5 13792 +políticos ||| political criteria ||| 0.00454545 0.212593 0.000145012 2.06384e-05 2.718 ||| 0-0 ||| 440 13792 +políticos ||| political decision makers ||| 0.0285714 0.212593 7.25058e-05 3.81932e-10 2.718 ||| 0-0 ||| 35 13792 +políticos ||| political decision making ||| 0.0243902 0.212593 7.25058e-05 4.08137e-08 2.718 ||| 0-0 ||| 41 13792 +políticos ||| political decision ||| 0.0058651 0.212593 0.000145012 0.000106092 2.718 ||| 0-0 ||| 341 13792 +políticos ||| political decisions ||| 0.00218341 0.212593 7.25058e-05 5.14611e-05 2.718 ||| 0-0 ||| 458 13792 +políticos ||| political domain ||| 0.142857 0.212593 7.25058e-05 1.06564e-05 2.718 ||| 0-0 ||| 7 13792 +políticos ||| political education ||| 0.1 0.212593 7.25058e-05 2.27967e-05 2.718 ||| 0-0 ||| 10 13792 +políticos ||| political ends ||| 0.015873 0.212593 7.25058e-05 1.57823e-05 2.718 ||| 0-0 ||| 63 13792 +políticos ||| political exile ||| 0.333333 0.212593 7.25058e-05 4.72121e-07 2.718 ||| 0-0 ||| 3 13792 +políticos ||| political factors ||| 0.0625 0.212593 7.25058e-05 2.01663e-05 2.718 ||| 0-0 ||| 16 13792 +políticos ||| political groups ||| 0.000419992 0.212593 7.25058e-05 4.46491e-05 2.718 ||| 0-0 ||| 2381 13792 +políticos ||| political in nature ||| 0.0344828 0.212593 7.25058e-05 2.04131e-06 2.718 ||| 0-0 ||| 29 13792 +políticos ||| political in ||| 0.0357143 0.212593 7.25058e-05 0.0144364 2.718 ||| 0-0 ||| 28 13792 +políticos ||| political initiative ||| 0.00769231 0.212593 7.25058e-05 4.22211e-05 2.718 ||| 0-0 ||| 130 13792 +políticos ||| political instrument ||| 0.0185185 0.212593 7.25058e-05 2.83947e-05 2.718 ||| 0-0 ||| 54 13792 +políticos ||| political intentions ||| 0.05 0.212593 7.25058e-05 7.55393e-06 2.718 ||| 0-0 ||| 20 13792 +políticos ||| political interest ||| 0.0212766 0.212593 7.25058e-05 7.57416e-05 2.718 ||| 0-0 ||| 47 13792 +políticos ||| political interests ||| 0.0175439 0.212593 7.25058e-05 9.24682e-05 2.718 ||| 0-0 ||| 57 13792 +políticos ||| political irregularities ||| 1 0.212593 7.25058e-05 2.69783e-06 2.718 ||| 0-0 ||| 1 13792 +políticos ||| political landslides well , as was ||| 0.333333 0.212593 7.25058e-05 1.63092e-15 2.718 ||| 0-0 ||| 3 13792 +políticos ||| political landslides well , as ||| 0.333333 0.212593 7.25058e-05 5.20561e-13 2.718 ||| 0-0 ||| 3 13792 +políticos ||| political landslides well , ||| 0.333333 0.212593 7.25058e-05 5.10134e-11 2.718 ||| 0-0 ||| 3 13792 +políticos ||| political landslides well ||| 0.333333 0.212593 7.25058e-05 4.27768e-10 2.718 ||| 0-0 ||| 3 13792 +políticos ||| political landslides ||| 0.333333 0.212593 7.25058e-05 2.69783e-07 2.718 ||| 0-0 ||| 3 13792 +políticos ||| political leaders ||| 0.00410678 0.212593 0.000145012 1.1196e-05 2.718 ||| 0-0 ||| 487 13792 +políticos ||| political leadership ||| 0.00326797 0.212593 7.25058e-05 1.1196e-05 2.718 ||| 0-0 ||| 306 13792 +políticos ||| political level ||| 0.00767263 0.212593 0.000217517 0.000576931 2.718 ||| 0-0 ||| 391 13792 +políticos ||| political negotiating ||| 0.25 0.212593 7.25058e-05 1.04541e-05 2.718 ||| 0-0 ||| 4 13792 +políticos ||| political office-holders ||| 0.142857 0.212593 7.25058e-05 2.69783e-07 2.718 ||| 0-0 ||| 7 13792 +políticos ||| political ones , ||| 0.0625 0.212593 7.25058e-05 1.77755e-05 2.718 ||| 0-0 ||| 16 13792 +políticos ||| political ones ||| 0.166667 0.212593 0.000362529 0.000149055 2.718 ||| 0-0 ||| 30 13792 +políticos ||| political opinion - ||| 1 0.212593 7.25058e-05 6.24328e-07 2.718 ||| 0-0 ||| 1 13792 +políticos ||| political opinion ||| 0.0142857 0.212593 7.25058e-05 0.000165512 2.718 ||| 0-0 ||| 70 13792 +políticos ||| political opinions ||| 0.0131579 0.212593 7.25058e-05 1.48381e-05 2.718 ||| 0-0 ||| 76 13792 +políticos ||| political people ||| 1 0.212593 0.000145012 0.000593658 2.718 ||| 0-0 ||| 2 13792 +políticos ||| political points off the back ||| 0.5 0.212593 7.25058e-05 1.4724e-12 2.718 ||| 0-0 ||| 2 13792 +políticos ||| political points off the ||| 0.5 0.212593 7.25058e-05 2.18912e-09 2.718 ||| 0-0 ||| 2 13792 +políticos ||| political points off ||| 0.5 0.212593 7.25058e-05 3.56581e-08 2.718 ||| 0-0 ||| 2 13792 +políticos ||| political points ||| 0.0714286 0.212593 0.000217517 8.76121e-05 2.718 ||| 0-0 ||| 42 13792 +políticos ||| political problems ||| 0.00680272 0.212593 7.25058e-05 9.05123e-05 2.718 ||| 0-0 ||| 147 13792 +políticos ||| political removal ||| 0.5 0.212593 7.25058e-05 6.33991e-06 2.718 ||| 0-0 ||| 2 13792 +políticos ||| political rights ||| 0.00460829 0.212593 7.25058e-05 0.000134959 2.718 ||| 0-0 ||| 217 13792 +políticos ||| political show ||| 0.142857 0.212593 7.25058e-05 9.03099e-05 2.718 ||| 0-0 ||| 7 13792 +políticos ||| political side ||| 0.025 0.212593 7.25058e-05 0.000147841 2.718 ||| 0-0 ||| 40 13792 +políticos ||| political significance for the ||| 1 0.212593 7.25058e-05 6.52383e-09 2.718 ||| 0-0 ||| 1 13792 +políticos ||| political significance for ||| 1 0.212593 7.25058e-05 1.06265e-07 2.718 ||| 0-0 ||| 1 13792 +políticos ||| political significance ||| 0.00819672 0.212593 7.25058e-05 1.38264e-05 2.718 ||| 0-0 ||| 122 13792 +políticos ||| political tensions ||| 0.0263158 0.212593 7.25058e-05 1.68615e-06 2.718 ||| 0-0 ||| 38 13792 +políticos ||| political terms ||| 0.00395257 0.212593 7.25058e-05 0.000740285 2.718 ||| 0-0 ||| 253 13792 +políticos ||| political that ||| 1 0.212593 7.25058e-05 0.0113455 2.718 ||| 0-0 ||| 1 13792 +políticos ||| political will ||| 0.000467727 0.212593 7.25058e-05 0.00583487 2.718 ||| 0-0 ||| 2138 13792 +políticos ||| political world ||| 0.0238095 0.212593 7.25058e-05 0.000153642 2.718 ||| 0-0 ||| 42 13792 +políticos ||| political ||| 0.197986 0.212593 0.75 0.674458 2.718 ||| 0-0 ||| 52246 13792 +políticos ||| politically , ||| 0.008 0.0427263 0.000217517 0.00097833 2.718 ||| 0-0 ||| 375 13792 +políticos ||| politically motivated ||| 0.00877193 0.0427263 7.25058e-05 9.43425e-08 2.718 ||| 0-0 ||| 114 13792 +políticos ||| politically speaking ||| 0.00621118 0.0427263 7.25058e-05 9.41785e-07 2.718 ||| 0-0 ||| 161 13792 +políticos ||| politically ||| 0.0341023 0.0427263 0.00739559 0.0082037 2.718 ||| 0-0 ||| 2991 13792 +políticos ||| politician as ||| 0.5 0.0529197 7.25058e-05 1.92669e-05 2.718 ||| 0-0 ||| 2 13792 +políticos ||| politician has a ||| 0.5 0.0529197 7.25058e-05 4.30802e-07 2.718 ||| 0-0 ||| 2 13792 +políticos ||| politician has ||| 0.2 0.0529197 7.25058e-05 9.71899e-06 2.718 ||| 0-0 ||| 5 13792 +políticos ||| politician use ||| 0.25 0.0529197 7.25058e-05 9.17994e-07 2.718 ||| 0-0 ||| 4 13792 +políticos ||| politician ||| 0.0434783 0.0529197 0.00188515 0.0018881 2.718 ||| 0-0 ||| 598 13792 +políticos ||| politicians ' ||| 0.107143 0.603207 0.000217517 0.000656162 2.718 ||| 0-0 ||| 28 13792 +políticos ||| politicians , both on the ||| 1 0.603207 7.25058e-05 1.55012e-08 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians , both on ||| 1 0.603207 7.25058e-05 2.52496e-07 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians , both ||| 0.333333 0.603207 7.25058e-05 3.77367e-05 2.718 ||| 0-0 ||| 3 13792 +políticos ||| politicians , to ||| 0.0833333 0.603207 7.25058e-05 0.00202428 2.718 ||| 0-0 ||| 12 13792 +políticos ||| politicians , ||| 0.0648148 0.603207 0.00203016 0.022781 2.718 ||| 0-0 ||| 432 13792 +políticos ||| politicians - ||| 0.1 0.603207 0.000145012 0.000720577 2.718 ||| 0-0 ||| 20 13792 +políticos ||| politicians already ||| 1 0.603207 7.25058e-05 8.84651e-05 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians also have ||| 0.25 0.603207 7.25058e-05 1.15343e-05 2.718 ||| 0-0 ||| 4 13792 +políticos ||| politicians also ||| 0.333333 0.603207 7.25058e-05 0.000964424 2.718 ||| 0-0 ||| 3 13792 +políticos ||| politicians are ||| 0.0921053 0.603207 0.000507541 0.00289841 2.718 ||| 0-0 ||| 76 13792 +políticos ||| politicians at ||| 0.0833333 0.603207 7.25058e-05 0.000799911 2.718 ||| 0-0 ||| 12 13792 +políticos ||| politicians being a ||| 1 0.603207 7.25058e-05 2.40967e-05 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians being ||| 0.5 0.603207 7.25058e-05 0.000543628 2.718 ||| 0-0 ||| 2 13792 +políticos ||| politicians can sit back ||| 1 0.603207 7.25058e-05 1.44454e-11 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians can sit ||| 1 0.603207 7.25058e-05 2.1477e-08 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians can ||| 0.0526316 0.603207 7.25058e-05 0.000568175 2.718 ||| 0-0 ||| 19 13792 +políticos ||| politicians concerned ||| 0.5 0.603207 7.25058e-05 0.000307288 2.718 ||| 0-0 ||| 2 13792 +políticos ||| politicians do ||| 0.2 0.603207 7.25058e-05 0.000656239 2.718 ||| 0-0 ||| 5 13792 +políticos ||| politicians even ||| 1 0.603207 7.25058e-05 0.000116241 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians had ||| 0.5 0.603207 7.25058e-05 0.000191735 2.718 ||| 0-0 ||| 2 13792 +políticos ||| politicians has ||| 0.5 0.603207 7.25058e-05 0.000983317 2.718 ||| 0-0 ||| 2 13792 +políticos ||| politicians have a ||| 0.0769231 0.603207 7.25058e-05 0.000101269 2.718 ||| 0-0 ||| 13 13792 +políticos ||| politicians have ||| 0.0571429 0.603207 0.000290023 0.00228466 2.718 ||| 0-0 ||| 70 13792 +políticos ||| politicians here ||| 0.4 0.603207 0.000145012 0.000387367 2.718 ||| 0-0 ||| 5 13792 +políticos ||| politicians in the process ||| 1 0.603207 7.25058e-05 1.07312e-07 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians in the ||| 0.0227273 0.603207 7.25058e-05 0.000251023 2.718 ||| 0-0 ||| 44 13792 +políticos ||| politicians in ||| 0.0193548 0.603207 0.000217517 0.00408886 2.718 ||| 0-0 ||| 155 13792 +políticos ||| politicians involved ||| 0.5 0.603207 7.25058e-05 6.60575e-05 2.718 ||| 0-0 ||| 2 13792 +políticos ||| politicians is ||| 0.0740741 0.603207 0.000145012 0.00598703 2.718 ||| 0-0 ||| 27 13792 +políticos ||| politicians like ourselves ||| 0.25 0.603207 7.25058e-05 1.07914e-07 2.718 ||| 0-0 ||| 4 13792 +políticos ||| politicians like ||| 0.0666667 0.603207 7.25058e-05 0.000339247 2.718 ||| 0-0 ||| 15 13792 +políticos ||| politicians made ||| 1 0.603207 7.25058e-05 0.000400166 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians of ||| 0.0357143 0.603207 7.25058e-05 0.0103851 2.718 ||| 0-0 ||| 28 13792 +políticos ||| politicians really ||| 1 0.603207 7.25058e-05 9.2534e-05 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians recognize ||| 1 0.603207 7.25058e-05 1.3754e-06 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians regard ||| 0.2 0.603207 7.25058e-05 0.000130071 2.718 ||| 0-0 ||| 5 13792 +políticos ||| politicians should ||| 0.0434783 0.603207 7.25058e-05 0.000846446 2.718 ||| 0-0 ||| 23 13792 +políticos ||| politicians sponsor ||| 0.25 0.603207 7.25058e-05 7.64112e-08 2.718 ||| 0-0 ||| 4 13792 +políticos ||| politicians that is ||| 1 0.603207 7.25058e-05 0.000100711 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians that ||| 0.1 0.603207 7.25058e-05 0.0032134 2.718 ||| 0-0 ||| 10 13792 +políticos ||| politicians to ||| 0.079646 0.603207 0.000652552 0.0169744 2.718 ||| 0-0 ||| 113 13792 +políticos ||| politicians we actually ||| 0.5 0.603207 7.25058e-05 8.95202e-07 2.718 ||| 0-0 ||| 2 13792 +políticos ||| politicians we ||| 0.0909091 0.603207 7.25058e-05 0.00216861 2.718 ||| 0-0 ||| 11 13792 +políticos ||| politicians who are ||| 0.0625 0.603207 7.25058e-05 2.5564e-06 2.718 ||| 0-0 ||| 16 13792 +políticos ||| politicians who were members ||| 1 0.603207 7.25058e-05 4.45195e-11 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians who were ||| 0.5 0.603207 7.25058e-05 3.01827e-07 2.718 ||| 0-0 ||| 2 13792 +políticos ||| politicians who ||| 0.0134228 0.603207 0.000145012 0.000168487 2.718 ||| 0-0 ||| 149 13792 +políticos ||| politicians whose job ||| 1 0.603207 7.25058e-05 1.17564e-09 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians whose ||| 0.25 0.603207 7.25058e-05 1.5053e-05 2.718 ||| 0-0 ||| 4 13792 +políticos ||| politicians will ||| 0.222222 0.603207 0.000145012 0.00165262 2.718 ||| 0-0 ||| 9 13792 +políticos ||| politicians would also ||| 1 0.603207 7.25058e-05 5.65992e-06 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politicians would ||| 0.333333 0.603207 7.25058e-05 0.00112109 2.718 ||| 0-0 ||| 3 13792 +políticos ||| politicians ||| 0.385434 0.603207 0.102451 0.191028 2.718 ||| 0-0 ||| 3666 13792 +políticos ||| politics ' ||| 0.1 0.022352 7.25058e-05 2.4824e-05 2.718 ||| 0-0 ||| 10 13792 +políticos ||| politics or ||| 0.0526316 0.022352 7.25058e-05 8.26263e-06 2.718 ||| 0-0 ||| 19 13792 +políticos ||| politics to ||| 0.0222222 0.022352 7.25058e-05 0.000642178 2.718 ||| 0-0 ||| 45 13792 +políticos ||| politics will make ||| 1 0.022352 7.25058e-05 1.08651e-07 2.718 ||| 0-0 ||| 1 13792 +políticos ||| politics will ||| 0.111111 0.022352 7.25058e-05 6.25222e-05 2.718 ||| 0-0 ||| 9 13792 +políticos ||| politics ||| 0.0163982 0.022352 0.00413283 0.007227 2.718 ||| 0-0 ||| 3476 13792 +políticos ||| populist politicians ||| 0.2 0.603207 7.25058e-05 2.10131e-07 2.718 ||| 0-1 ||| 5 13792 +políticos ||| positions of political ||| 1 0.212593 0.000145012 1.23932e-06 2.718 ||| 0-2 ||| 2 13792 +políticos ||| possible for political ||| 1 0.212593 7.25058e-05 4.15783e-06 2.718 ||| 0-2 ||| 1 13792 +políticos ||| promote political ||| 0.5 0.212593 7.25058e-05 4.32328e-05 2.718 ||| 0-1 ||| 2 13792 +políticos ||| pursuing policies ||| 0.0769231 0.0015354 7.25058e-05 5.42356e-08 2.718 ||| 0-1 ||| 13 13792 +políticos ||| pursuit of their political ||| 1 0.212593 7.25058e-05 1.054e-09 2.718 ||| 0-3 ||| 1 13792 +políticos ||| refrain from policy ||| 1 0.011571 7.25058e-05 4.89924e-10 2.718 ||| 0-2 ||| 1 13792 +políticos ||| regarded as political ||| 0.333333 0.212593 7.25058e-05 3.86105e-07 2.718 ||| 0-2 ||| 3 13792 +políticos ||| regards political ||| 1 0.212593 7.25058e-05 9.44241e-05 2.718 ||| 0-1 ||| 1 13792 +políticos ||| removing senior politicians ||| 0.5 0.603207 7.25058e-05 1.67799e-11 2.718 ||| 0-2 ||| 2 13792 +políticos ||| required political ||| 0.25 0.212593 7.25058e-05 0.000107036 2.718 ||| 0-1 ||| 4 13792 +políticos ||| respective political ||| 0.166667 0.212593 7.25058e-05 2.15827e-05 2.718 ||| 0-1 ||| 6 13792 +políticos ||| role of politics ||| 0.166667 0.022352 7.25058e-05 8.72213e-08 2.718 ||| 0-2 ||| 6 13792 +políticos ||| rough politics ||| 1 0.022352 7.25058e-05 2.8908e-08 2.718 ||| 0-1 ||| 1 13792 +políticos ||| s policy ||| 0.0118343 0.011571 0.000145012 9.48734e-05 2.718 ||| 0-1 ||| 169 13792 +políticos ||| s political ||| 0.175 0.212593 0.00101508 0.00128302 2.718 ||| 0-1 ||| 80 13792 +políticos ||| senior politicians ||| 0.153846 0.603207 0.000145012 2.33054e-06 2.718 ||| 0-1 ||| 13 13792 +políticos ||| sensitive programme ||| 1 0.0002371 7.25058e-05 8.29374e-09 2.718 ||| 0-0 ||| 1 13792 +políticos ||| sensitive ||| 0.000247341 0.0002371 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 4043 13792 +políticos ||| separate political ||| 0.25 0.212593 7.25058e-05 2.42805e-05 2.718 ||| 0-1 ||| 4 13792 +políticos ||| set of political ||| 1 0.212593 7.25058e-05 2.14277e-05 2.718 ||| 0-2 ||| 1 13792 +políticos ||| shoulders of politicians ||| 1 0.303887 7.25058e-05 6.76067e-07 2.718 ||| 0-0 0-2 ||| 1 13792 +políticos ||| simple policy of ||| 0.333333 0.011571 7.25058e-05 1.17128e-07 2.718 ||| 0-1 ||| 3 13792 +políticos ||| simple policy ||| 0.333333 0.011571 7.25058e-05 2.15451e-06 2.718 ||| 0-1 ||| 3 13792 +políticos ||| six ||| 0.00017696 0.0001838 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 5651 13792 +políticos ||| small but highly sensitive programme ||| 1 0.0002371 7.25058e-05 4.39268e-20 2.718 ||| 0-3 ||| 1 13792 +políticos ||| small but highly sensitive ||| 1 0.0002371 7.25058e-05 3.44795e-16 2.718 ||| 0-3 ||| 1 13792 +políticos ||| some political ||| 0.6 0.212593 0.000217517 0.000734687 2.718 ||| 0-1 ||| 5 13792 +políticos ||| statute ||| 0.000777605 0.0016978 7.25058e-05 0.0001302 2.718 ||| 0-0 ||| 1286 13792 +políticos ||| steps ||| 0.000191975 0.0001762 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 5209 13792 +políticos ||| suitable policy ||| 0.333333 0.011571 7.25058e-05 1.22189e-06 2.718 ||| 0-1 ||| 3 13792 +políticos ||| terms of political ||| 0.125 0.212593 7.25058e-05 4.02449e-05 2.718 ||| 0-2 ||| 8 13792 +políticos ||| that are of political concern ||| 1 0.212593 7.25058e-05 1.24933e-09 2.718 ||| 0-3 ||| 1 13792 +políticos ||| that are of political ||| 1 0.212593 7.25058e-05 9.35829e-06 2.718 ||| 0-3 ||| 1 13792 +políticos ||| that political ||| 0.0588235 0.212593 0.000145012 0.0113455 2.718 ||| 0-1 ||| 34 13792 +políticos ||| the European Parliament in respect of the ||| 0.5 3.5e-05 7.25058e-05 8.50851e-16 2.718 ||| 0-1 ||| 2 13792 +políticos ||| the European Parliament in respect of ||| 0.5 3.5e-05 7.25058e-05 1.38594e-14 2.718 ||| 0-1 ||| 2 13792 +políticos ||| the European Parliament in respect ||| 0.25 3.5e-05 7.25058e-05 2.54936e-13 2.718 ||| 0-1 ||| 4 13792 +políticos ||| the European Parliament in ||| 0.00189036 3.5e-05 7.25058e-05 5.89312e-10 2.718 ||| 0-1 ||| 529 13792 +políticos ||| the European Parliament ||| 3.71499e-05 3.5e-05 7.25058e-05 2.75321e-08 2.718 ||| 0-1 ||| 26918 13792 +políticos ||| the European People 's Party supporting ||| 1 3.5e-05 7.25058e-05 2.58747e-20 2.718 ||| 0-1 ||| 1 13792 +políticos ||| the European People 's Party ||| 0.000665336 3.5e-05 7.25058e-05 8.08585e-16 2.718 ||| 0-1 ||| 1503 13792 +políticos ||| the European People 's ||| 0.0204082 3.5e-05 7.25058e-05 5.36197e-12 2.718 ||| 0-1 ||| 49 13792 +políticos ||| the European People ||| 0.012987 3.5e-05 7.25058e-05 2.81557e-09 2.718 ||| 0-1 ||| 77 13792 +políticos ||| the European ||| 0.000191883 3.5e-05 0.000145012 4.79654e-05 2.718 ||| 0-1 ||| 10423 13792 +políticos ||| the Korean political ||| 1 0.212593 7.25058e-05 9.10936e-08 2.718 ||| 0-2 ||| 1 13792 +políticos ||| the Rules of Procedure of the European ||| 0.5 3.5e-05 7.25058e-05 3.93049e-17 2.718 ||| 0-6 ||| 2 13792 +políticos ||| the context of our political ||| 1 0.212593 7.25058e-05 4.16696e-10 2.718 ||| 0-4 ||| 1 13792 +políticos ||| the ethics ||| 0.0181818 0.0015152 7.25058e-05 3.99661e-06 2.718 ||| 0-1 ||| 55 13792 +políticos ||| the makers ||| 0.125 0.102041 7.25058e-05 0.00025981 2.718 ||| 0-1 ||| 8 13792 +políticos ||| the medium of political ||| 1 0.212593 7.25058e-05 1.86834e-08 2.718 ||| 0-3 ||| 1 13792 +políticos ||| the more political ||| 0.5 0.212593 7.25058e-05 9.45593e-05 2.718 ||| 0-2 ||| 2 13792 +políticos ||| the policy ||| 0.00122249 0.011571 0.000217517 0.00306179 2.718 ||| 0-1 ||| 2454 13792 +políticos ||| the political , ||| 0.0285714 0.212593 7.25058e-05 0.00493788 2.718 ||| 0-1 ||| 35 13792 +políticos ||| the political criteria ||| 0.00478469 0.212593 7.25058e-05 1.26703e-06 2.718 ||| 0-1 ||| 209 13792 +políticos ||| the political ||| 0.0720222 0.212593 0.0037703 0.0414062 2.718 ||| 0-1 ||| 722 13792 +políticos ||| the politicians ||| 0.0205279 0.603207 0.000507541 0.0117276 2.718 ||| 0-1 ||| 341 13792 +políticos ||| the various political ||| 0.2 0.212593 0.000145012 6.39312e-06 2.718 ||| 0-2 ||| 10 13792 +políticos ||| their political ||| 0.117647 0.212593 0.000290023 0.000781764 2.718 ||| 0-1 ||| 34 13792 +políticos ||| their politicians ||| 0.0333333 0.603207 7.25058e-05 0.000221421 2.718 ||| 0-1 ||| 30 13792 +políticos ||| them , ||| 0.000377644 1.85e-05 7.25058e-05 7.76348e-06 2.718 ||| 0-0 ||| 2648 13792 +políticos ||| them ||| 3.72481e-05 1.85e-05 7.25058e-05 6.51e-05 2.718 ||| 0-0 ||| 26847 13792 +políticos ||| there be political ||| 1 0.212593 7.25058e-05 3.74676e-05 2.718 ||| 0-2 ||| 1 13792 +políticos ||| there is the political ||| 0.5 0.212593 7.25058e-05 3.97789e-06 2.718 ||| 0-3 ||| 2 13792 +políticos ||| there was a political ||| 0.25 0.212593 7.25058e-05 2.87108e-07 2.718 ||| 0-3 ||| 4 13792 +políticos ||| there will be political ||| 0.333333 0.212593 7.25058e-05 3.24139e-07 2.718 ||| 0-3 ||| 3 13792 +políticos ||| these policy ||| 0.125 0.011571 7.25058e-05 5.17233e-05 2.718 ||| 0-1 ||| 8 13792 +políticos ||| these political ||| 0.333333 0.212593 0.000217517 0.00069948 2.718 ||| 0-1 ||| 9 13792 +políticos ||| they have political ||| 1 0.212593 7.25058e-05 2.63287e-05 2.718 ||| 0-2 ||| 1 13792 +políticos ||| this out politically ||| 0.333333 0.0427263 7.25058e-05 2.03039e-07 2.718 ||| 0-2 ||| 3 13792 +políticos ||| those policy ||| 0.25 0.011571 7.25058e-05 3.6113e-05 2.718 ||| 0-1 ||| 4 13792 +políticos ||| to a political show ||| 1 0.212593 7.25058e-05 3.55705e-07 2.718 ||| 0-2 ||| 1 13792 +políticos ||| to a political ||| 0.2 0.212593 7.25058e-05 0.0026565 2.718 ||| 0-2 ||| 5 13792 +políticos ||| to be political ||| 0.222222 0.212593 0.000145012 0.00108613 2.718 ||| 0-2 ||| 9 13792 +políticos ||| to bring about political ||| 1 0.212593 7.25058e-05 2.6386e-08 2.718 ||| 0-3 ||| 1 13792 +políticos ||| to do politically ||| 0.5 0.0427263 7.25058e-05 2.50422e-06 2.718 ||| 0-2 ||| 2 13792 +políticos ||| to establish political ||| 0.5 0.212593 7.25058e-05 4.57274e-06 2.718 ||| 0-2 ||| 2 13792 +políticos ||| to extract political ||| 1 0.212593 7.25058e-05 1.738e-07 2.718 ||| 0-2 ||| 1 13792 +políticos ||| to finance our objectives ||| 1 7.37e-05 7.25058e-05 1.49214e-13 2.718 ||| 0-3 ||| 1 13792 +políticos ||| to have political ||| 1 0.212593 7.25058e-05 0.000716764 2.718 ||| 0-2 ||| 1 13792 +políticos ||| to political ||| 0.105263 0.212593 0.000435035 0.0599311 2.718 ||| 0-1 ||| 57 13792 +políticos ||| to promote political ||| 0.5 0.212593 7.25058e-05 3.84159e-06 2.718 ||| 0-2 ||| 2 13792 +políticos ||| together politicians ||| 1 0.603207 7.25058e-05 0.000114731 2.718 ||| 0-1 ||| 1 13792 +políticos ||| too , political ||| 1 0.212593 7.25058e-05 0.000109468 2.718 ||| 0-2 ||| 1 13792 +políticos ||| tough political ||| 0.25 0.212593 7.25058e-05 7.75627e-06 2.718 ||| 0-1 ||| 4 13792 +políticos ||| troublesome political ||| 1 0.212593 7.25058e-05 4.72121e-07 2.718 ||| 0-1 ||| 1 13792 +políticos ||| us politicians ||| 0.0384615 0.603207 7.25058e-05 0.000550581 2.718 ||| 0-1 ||| 26 13792 +políticos ||| various political ||| 0.153846 0.212593 0.000145012 0.000104136 2.718 ||| 0-1 ||| 13 13792 +políticos ||| vital political ||| 0.222222 0.212593 0.000145012 2.11105e-05 2.718 ||| 0-1 ||| 9 13792 +políticos ||| waking political ||| 1 0.212593 7.25058e-05 9.44241e-07 2.718 ||| 0-1 ||| 1 13792 +políticos ||| was a political ||| 0.166667 0.212593 7.25058e-05 9.36638e-05 2.718 ||| 0-2 ||| 6 13792 +políticos ||| way of the political ||| 1 0.212593 7.25058e-05 4.85227e-06 2.718 ||| 0-3 ||| 1 13792 +políticos ||| ways of committing political ||| 1 0.212593 7.25058e-05 2.79235e-11 2.718 ||| 0-3 ||| 1 13792 +políticos ||| we are endeavouring to do politically ||| 0.5 0.0427263 7.25058e-05 2.50177e-15 2.718 ||| 0-5 ||| 2 13792 +políticos ||| we are political ||| 1 0.212593 7.25058e-05 0.000116172 2.718 ||| 0-2 ||| 1 13792 +políticos ||| we politicians ||| 0.0151515 0.603207 7.25058e-05 0.00216861 2.718 ||| 0-1 ||| 66 13792 +políticos ||| whether it be political ||| 0.5 0.212593 7.25058e-05 5.71022e-08 2.718 ||| 0-3 ||| 2 13792 +políticos ||| which are political ||| 1 0.212593 7.25058e-05 8.69282e-05 2.718 ||| 0-2 ||| 1 13792 +políticos ||| which political ||| 0.111111 0.212593 7.25058e-05 0.00572925 2.718 ||| 0-1 ||| 9 13792 +políticos ||| who are politicians ||| 1 0.603207 7.25058e-05 2.5564e-06 2.718 ||| 0-2 ||| 1 13792 +políticos ||| will be political ||| 0.333333 0.212593 7.25058e-05 0.000105745 2.718 ||| 0-2 ||| 3 13792 +políticos ||| will political ||| 1 0.212593 7.25058e-05 0.00583487 2.718 ||| 0-1 ||| 1 13792 +políticos ||| with political ||| 0.189189 0.212593 0.000507541 0.00431282 2.718 ||| 0-1 ||| 37 13792 +políticos ||| work with political ||| 1 0.212593 7.25058e-05 2.73002e-06 2.718 ||| 0-2 ||| 1 13792 +políticos ||| ’ s political ||| 0.111111 0.212593 0.000362529 2.23515e-06 2.718 ||| 0-2 ||| 45 13792 diff --git a/contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1.binphr.idx b/contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1.binphr.idx new file mode 100644 index 0000000000000000000000000000000000000000..7e594515c7536841efa4a28dba5b36a952479936 GIT binary patch literal 68 gcmd;JKmZviQ-le^$bix&j1YbgRQ>>z{|Cwk07TvcBLDyZ literal 0 HcmV?d00001 diff --git a/contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1.binphr.srctree.wa b/contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1.binphr.srctree.wa new file mode 100644 index 0000000000000000000000000000000000000000..d9d57040a9c10ae3693ad77ade210aa22cb8d79a GIT binary patch literal 672 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ī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°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%0D<-Kts;-OUVO%FjjlKe}&nG6^5odmV3G9VmJW%A_ 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 z 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

OQa-PZnoAvK&Uke= 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�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

&?b!~29sDxc1M+i^bTGxQc5C%7 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

da19)$@+&Xl6NFJ?Zb~e<&Y4_AyKijl> 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�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

Z7F62Z%wK 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%0ASV5EY-i4P6ibd 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%0D;hGdQjL5 zj|#mwJwp2cV>1AbmzOC)0lp#0x!w7^>i<1A?5F`0zeGHbAuSd^i8<@TNP1q{q!Ue< zqb<~|djL8v&rNw~+5p0|5lRwevc4^6&x>yAy^Tx4>8qE#x5+jSX6_j2ggkx38X*eg zH262>DF1mU9LAp-6j(RRSqco$ z`GSe!8t4Z#>v&IFu!-UtRH}QYD9$a_l-IR8Gf6A}=>64-xK3kmGOBiJ+bpOy{F>42 z|4sA0W>hD6ExR%0)J4^H^&zroiy`)YO2_~y84?VR;$B^Wz1CF$hVC)a5{;8ynD1?M zOc-)TPty48J&Ke>=W}@;w3q)}IBBmaJ(mvoYv>r&z53ZZn(t-=0M<)R43dxycF#E3 zi9OE>uF^i*ghT+)cXB^+}lG+vx zjie($;uo#8aT&7Wi7-Ic`@Q#iWIgz=qD>YvS~P4g53NzZ(79*pFx!cfwE$I+2S1^q z+;&R&)=6!?=Cx%sL~ZSn^w3#;K9rw}LS!Pb8#lGClYP9F=nbb3VmUnKJ3*b`Z@Poj z$NzEc-|7I35CQxh;NPgZar9c9<~T(W3#=K%DFBG-5rN|;UUBT-0%~Rf2+)hjPL4=m zp|gj)7Od%LNO9yVeZZ^!zqM(UKBQ#|3IO03Yow$!1nOY?ILSzR#i%)&Q=A8~dAv%W zQB_u`m-Whz)U_!S$uX)1l<3wLjjg1DmPZ0tf&zG7*7Sl-!g%y>=TWPbUbY%ZHR502Yn~uV>Wc89*6f3s?>S z-tnZIPAuJPyFRiyr*I2t0YTUkC+Ph>DYV}=b?(}s5%#y65rI#Ulj(*-&M2^((*xpY#WZBa79C>=1ijN){`%Itnk=KqErpz> zp)?JE1;yWXa*M2O8fXJE0t5i_NLF)l6dO;uTSCjiG=33sNr$d2_BeF2bPr96Nko`F zL$`uBl)l1!t%PPt3g9V`Ak;qy_`|h6Hfv=Hj!dxf0thv_p|U^JSvm>o;Nx1^^r<3a zGw1-G2A>HBQ{+Ey`S#JJS2{a0X*59q9Q`>*1W&Z@?vPFk)tEK_SRgJI&Xh|i6*NKe z+E6`W$C(H9$tknO2-11lGMr~{i>V`!isbl{u(wtCT_5Ci}+ z88Rnl+-6#9Y;NX}#sJ_;-~=ojxHMQNF#;O@+$y8>kL){ z`aB$M%ZgEsrGtG1-;P4#8TAj9x;Hna-8*^%YrhEjg3FQ%m?Bx27qDsbTvqNxskFbgM^Qe`dr@WmD(mfW1HgV3*5w$XO3S~! zC0(*Tr?f*cUKD_r(i#A~3X^+Qm{S94f3=1Nn3W9xXgsuhLZ^2`>R&f(vR5`#alA^3 zs0P5}!MirYvobo8eaH4O@ix!evq#BhZecxWfBlx$rv*FldGm=P`l0Un}z5g zjVKaziLbwbOQk2B(!SYUJDeAXoJ2qn+7KBDoWr~jpho_^&^a;{d;F^CS-chR@y4h`}HQVhMJow93%1fX$>1z$#xr25sq)$Y2P&5}V;AVU*4)9?G zccg*kd93*M!E}0A>}E+pU_bC)k5O8vZUPD*A{81JK0h;(B<@a|TeI8Dr%0%=ez$k% zuu0lix$2Idi-sCw3B~<`?Z*Q&7>)4~FliP!049 zLz*q=AA4s?UhQ0R9f1tpw7kc$VmV>A>G4*jhxdJ8FU-&zdS9Q~Ef7eO?JfV{$hiFL zIJ>2O!^XW262OY`z}NDce2xk*Njy1Yp)M=CWqyEZ?`PXKcWeZ{Hs#Z0wsRl@lBF=- zLL3bH>{Omp0(E3cX8?Qk- zL4Lr4hmqRHx`4k0fO#N~2LM?bZwz=c>$LW>ZoCG7+`*Mg^dJ#iPuN{Hzwz zC*gfL9)Eo8RtoLVT=gITq!b%}JCcnbWL>UlH;vOuLo`0|szD@F0;fVA*GOuU0?(IG zD!^0$9R7w1K&mZH_OKg+?&BgU{3Jkr^`!b>>3r>8T&@5>Qu;JW?~sCwpxTR^y0M#g z&k`qmOHO~8-i=0ndGfI4imNk+1b|68#}ecUUG%)@r%2ti>q8Gq!`-6vre{OVktT@c(3d(J0{Ga?pEI1;+Uz4BoL9i3$HyJ8-jEcjWBa#M_^Q*uL^{K;Eb z9XuPZgTCPyKyS!H?SKp7vEZQ}cGKq>4aWc?1DFuQEZP^}q$8_qognSCP_ReulVWdj zZ0PEgOnM%!b)sKT;?Y`@N*sja2`CM4~JbK(K+qQ%sc=fr!aAHs{iwu z!BPeQc>)zei0V$J19sA~t1c%`G-gvoMhho!sN@$|kH2-(PvT!I{ z))mEdfHaLShZ=+Ck-H-uHnyC3%XX>c{ZTQ^v+@se2Bygb<#LUE_A-sEoGr5?z#OQ% zU9#SUX0ZHp1 zAd*HYgImA0u&$*tQpS5Ig#<)B;t}IVA04%|l_MmQMHWZU+{!y4V=y3}sD-%*Cahee zwQU`lyuHwR)7o$g0E~bo+{6%R^22jxt2!>$&dm5(4a9u(G5!;|0&evIiwOb%<#XmH zjjvf>fiUidCj(^i<#>$XcE$0wnv+|7rB@me05qb1vJJ6Sg@6Yl53(0q093|x36AIy z+}s58gYFT(P7AMFGi$`r^x>uRT;HsX$jwboO0Rh1i#_vlPb6V+n!jZWPS_uoM-&gG zW%NF1M58Di|AdJq@ARiuJlE>bn7Ih{)R>E8n0d;!I`-T%)bryNLnCX=JmV~8=d65a z+p~1)kO8{E9nvnpdM5f?_OaUAxkV9>!^V$e4f3+hB9Ep=U*@1OvgGX&7m!4DmIsrD zYIB(rm7uv@dLd~V=m%9iGu!su1Ywj4^01gYs`hJM<#$8BjM3*)SV#i{Fv6(X!y_-J zKjB2sq-h)4k_LOx*eG0>muD1x|Tw=~VJp%8%H@qL?=tD87RKf8T0t@rM#7mX>fqwf}Sdd4Z!eb3tK3A)OL##`k< z&-WIMDT|(=na#_V)%s(4CZDCfcd_W}33l0P3~r!j^!i?$ol)o&@8%S(H$~UK-Chey zLzcT>)b95-ZRujAF1id;#j>lf}mgdYe{qDN^w(9Z1h z^y1r1aWn{k)Jf}lfWlwq(nTqkodlrq^z&IGQNcnrF7{~a<}K6M)Lu;mF)H&md*aYU z^z7F}_?tzu*VvlK#wIcj^djSc_`_{M!4T?5E)9JtDCHf{4O^w3Jh=0)4h}Be1cVxU zkz~hc>tl5;3(**KuaXA<aNGWGw9$90qDJ5%50uAhjdRFoik_*&LDIGaIWk)Zzm(X=ZNS+A^?p)xwgzPJ$$jc z(NCjn(*xg&N$*!>6$lRo0Cb-|veK13da>Yofy81~OfLS7)8F}E60(u(qqp0%W1?ux zo~OQ?=$!CGES3}vdbcs$10giA^)phs{KXb2o0qu1SDYT&R zeH%M#6>On*9rxHK1)&8!gCp2@;8l7$i2XafrfnFcpCFL*+aFy+m7Lop8rE3vpJ_G>(mqMfOm%p-(xn@2jsa?7^y~ZC`%5TdCDw0lW*L#I5^o&zG#b-`% z&TxD&+gdEUq@c0(ZaP0su+3VPx}*?*-m`6;;II}sPKyC^qH8M}2Zf*#XRI4mP0#Bj zP>_Z7p0{)8?)J6sTT+)7rQ?HM^P-&4~?W9|5fCG?M^`d1ra@HpCu2t!__qW{;WC8qbnByXv|}^ z;7;Yu)+Yg6R-!RAanQ1DUPP&U-uJN^2nmgO0s_k;9+xQ6ZGvWFND~FIJVZNHfEmcW zS$*|HU9O}P081X}cf9Uwry{C+IH^T|QAlI5kd+rS9@uGxt+rqxdOjgMrwV}QBqjOs z8rt8uE9Fw60s!`u<2Wjd^=?7xn{9%Q73JD z;}V3%@8vx0xRfQ68k9b||2;d8Km#TW;a9o41L`_UzWS|lM^|z5Olw0Kme$rL-$J`F^aiiUHdD3?70*<OkVx`x3$D|C}G+i%&##9BqPYeHZ;Ymw-lE|{q7+-`1S!AQOxD?;*iY_dG zmVP5xP)mbQ07ZoSrZwG%)J4y8Vpo$}}17k$ELOd0e_l;2y5{9E#xEd$Vx z#{8CJ#$wByZ#jbZbq`v1b-Mb4#$;voo$ooU?4P(>>8Pe-qO%f>k-w2U@~d~4dcbG1 zw063V3IN6er~$+2wE?~lX+cnE{6geUaX%);6- z3KZ=4sH|mqY-85nZEO~Tl&eC@P5G%v@s{16WGEheq5zPT^#?wRe5-wLC!-qM*S&mH zqLsNML)tncfRx=?zK+SW}6IOmw(Mir*KppR1(6QF#3<3VeJv%RHs*sZat__aATesg%_YyZ zH_e77?QPk-O0`wb!POg#K>p8|Zi-jW@Ak7fgx>l~Jqq;iNG)r_Ovdyyr{XuPtS|C+ z_iX_jD27T~)qv^)tXJ_|g}WtWu`#yKnE3y+q^<1@AcsU!-=m+&o^7V%XP}+eD}QBc zCmL50?WEr4-kRK772=19QA9(SuLo>DwO2%Iwoo0}+ zUU&+&V*RxEuXIjmKeMH@?bAsHR|dj5Z)GqxRsx%5s4X`rtGO;`$OFsPWZBdnq|358EdlX6^cfT_;3Cli6 z3)CJ38Za(23Qi1CbE{Xhs=@XsRGVA1H#oU+^>5;oNt3XtKCWYrg1C?&G>XpO>K@Ew zlSYlePX?1B>lS(?v=NiC>dicxEIJ0fxkJaCrfvgUCU9;)_bs}pRz|jD}3YDXTr;DTar`=G%QP3E>YG@4qwdKi5 zty8A=48pA!G7p!WfnIeZW$by{hZ&vHnY;dOd5ZIUv>!97jxUu|kV+Xd8_a>3&5Cok z^-hC(eh+hKBTtlQ<@Z7tNP}E@uF2}i<#NtRHhU>Zg8YCbhfCE@eTUxxuBIDoKDqmxGDD)pqRGx_=r3TlnDNi&N(1Nigv`oWX$B;7OE$Y9n!A-b0+0C-pSsV=I>tTiRWy$QkGn;|uvXEBV_Vb4(=Z`|cIM#AeJ zn2+RSQG8G5^uB7^OpFKBXZ;1^Detv5*4K-SA#RaYrV={PtAyq)_myU`0qDgI(nPYj z#n@iKzTv-+O<@l5pGQ*3VSVfXB?jxHBLJW=yy%3Ixg1l^f5*BB+Jx|}30*&Jgl9&0 z|9ZgpUBOa_;eus%8YY5ioj9?@h0_(NJN zvb^=mKR4!RvdlaP!YJ~e2PoInD%se8sv)-G7{fFUbKQo~+d>Z_IWcrbg%Ni-ulZ9CNP z7R&vv|E=d?jHsB9LO+EOXhhA!e6gR7t-efzOO1T-e)VqIp1skkak>kAa0&oS_|$_Z z5x?)vgQwU0uGi zM{ON?}09{gRuDz$WI%9w>rAVB&?#wNzzGTMMzit+OUnmKJN!{!E|A=E9#|M zU$3;dXMA3!WM-QKljk-^?osZCu0g7IH7w|#F7Ao@BF-&Ep&Jvu8DK#MdBG@!2jQPX74Hf?iSWRplrRaKF9|)@Byr6_THb zrNadrv`{LMcA0j?My~+IeE#d+B(lTVdd^bv^vdS8UXg33#gpcf)|`)4`^ujsvCW#w zSV8QB?pJ?jcf$|u?fDRJPjPH{r^}8oA^j`q%IY$UVKV?IfRHR5<}V(w_Q#FeB?w#J zU;yUA%E`}9HwS9~K>(!faml$)2i~*vcQbS_HY$@{*h{jsFUvLMwha)uIZkl3usB3c z*|T3vc8VbDs&BF7K~BX>XevK=wVU)08UIB4Wy7hT#B9&V2qZ}hFlX(r>@^EV`B`Yg z?;s0~{QYFVI!VQ`JV~{2nS2=lG_I9+VvdJaa)U=K}p$e}adRVIIZ_j>RM z0B{6dca695HO*3!0RjM)%GG$0t6L^=%yeksrFz0<8C705X@neDoTCy2<~nwOJnYg_Yc*k(=4nF!OgbtA)Ur5# z;;c;;U5*A~G<}|-T#=8JR`*3RV+za_zfd0KU-dPVP>YG_xo?$aVn79TU9ez}gVk{2;G+wdm zmq_-WZ{K8HvoyWGCyO;^3Fw_!Lg%x2HCv7MI4hpxqIeKy3VN|~>ERZgxR`L(NhZuu zV6GSisfqSna#&d&eo%GOo~S&d{L`Du>2~kijG)>NmR3B02DNWoXr1Gzd*zM6(G3v*Ck_C)Re9_W_6X!w zLm3LAF|UW(Ft7jd%s?GFK=2UG0@8@NRfJtjtBsP0&|m2GVF#~1}n*z+<))b~G~b>4N4 zw&rK=LlrqVUqeCO>37&RGWHGtdOv=6PQXNv0@Oo;O#1We8z>x{OrBSJNKiIvK zoFZx^4GvK?PVYOW*=cN?iMqsJ*?9F2M9mXrbVtHkiWVOlU=GElrnz!eB^ zXaEG|SPM#L4JPMlC^spVsIQ>q2YX0W;It-ZH1b`bt zR?r-lbRA+lWvU551q2w9LwS7d2TQux`#WopF;#*9m|iz3ih#_AecPjG08Rk_MNBCV z=cJv&PmeC?5a3>j<_DsK{PKjz^oq>Yx0ltqqsh4Ss5Aq7jErW`A?mC>Kg|@9i_v!8 z+2hz}7_8YpP}*0Q3~nLToPIK60L8`{PDhU#vHP_eH9l zgIUjZJF%G6K%4lvblZ=g1)-Ay>er^7CAGISma2gm4U#9QQucw`TN*YK1VEOJ z(;Y3woN6^J7R=_3N-o-4R(_JkW&+u)3;u{P^f))~{2mNwE`F9OFI0JZr%`=I+c6R} z!<>GMB^)>e+Xw0W5}k?!*aplJW3p5_s|^h@>Hqv86B7V-)j$bWHu_( zSGd(!05mi$&{IbaYCSW~VztVUbm?u+)AY8=&e`|$L^*Ila1Fa?q^Po1j z-#9y1CImr<`h{BGAxono0OXU$)hUy4C*OEAIHUt`L427X5Nl&=J#l*kdX~joH#-MK zQ3#lMdXb&AqDLqpMi?j04*8{%NZ%dFOg_(*`npD8Y(xY7pvy0p2HOZh0L)*I-EkNo z@2`Ts3(4qV02nL(0HA2i$+N zN5IQ77(u7)={og^88FEsDa>1FF3*!QW~omx0B`wsf6YXD1g*X21;7}I@W9H{)kn*; zYc*Dgi35artY6#4lSS?a#bYK*vJVHK??{_n=&5ZV=#jdGML`O25?qSl3@8ojzg>ki zX|`?=h|c=Xn&N;UmtQ}vs$G#Sc`iYQmT%_(aJf;3p*L;S*Sgg%l(*m@56McO*!qgB zJp%3-14&dBq`ePjw~kpZ@QejQAf1Z5wSQR5CT!fP(csugKe0#QnuY3~ujyK64$uEy z5k7L--AGl4F|6eVc-h46JTyrc?|y2>5^{*K#m` z_9_rn9ytey$R+o%gK6mWka%(c6)l;r3QmdP1?8!V*1qv8-= zv!VeF%o|&qsA1_PNt*u>XW$r+ydauxU?l?4|q#6!-Gvu27RrI@7i9<0RVC-cB&$d zwj%dfS+qc zNZPn%k=ry&^YzjyZnkN{WGMEI?QwdJ$rV!stN7g1=8Ohh4Zr`8Xn1SeOgV?|g#NxF z@!lcZhUM{9t3ulb>lL$^!+AkNV-xr28QJ5(0mr{KdD>l*WPH=`P|w@Gq0oG zdDB?OtWDU(MPZn5^AJe0^yRvrHA{^?5d@O(-92)t`QLwPk_z%!iDx9>bLVu?biDm;@iD%O zMydKErQuKFBmnqw)L)SwwQ1~Z1=j0$KnHx|Q2<~#z!zN^4yq*gy{;(pc9;RcCE3xZ z&Fdmdnn_b_mC>Nm%Cl(SwI|I)9o7s3FcP$Z=_)=$N?9$<^qnm$%>dd=scwTE0Q~QW z6^DcU7e-+cCck>uG2ClxEh9{N0RY(hdGQHl$li0Y!?i0i8jamN{i2-?ZP(}2)K+OG z4p0Hh9T|1Gz4WflElwPuwjt8QZptN0RK!X3s>HRH55^1tpyb0IP4y%{<=8TtwG<)% zgJpyu$Y<6|p;QQPh8>bff&=?np z(A)3$^RyPA@%Dd8V@_Hyo`Xmj_jzz!#DodZuk;;$WL?E+*oxINNmI074{rUgh-!2efe+R$~M-&UdAd(^yzt=J)(dg5NxtuUx5MJXLw}V=3LcDRbhe zD1?cZgfR+OOX+VK85SH^2?Ahy+vc9S^xae69)**}Yl>7z9lDEt{E_yK#+3qq-cPi> z8p+G&2gMm+vlI=m@ERcxbgD~eBNczgyFZ-A%L6NP4bJ^s6M>jKNDB{Hq$clltc1aS z7$Xvh(KIN>(Z|{<%>p2!WO!sksvL2>`-?K@CJ_BNGF=xj)UNYVM#-mTYv4xacrX-r#(Jm`AP?~S46{+qOFCy$!Aw-8wI z*CaiPQ9^(S&}q|{^uCjBoCg3TOMArcXFSzvZUh*f%!~jNNAZjQ+% zg8^OCdR^<(u-E$90IJ9Y5ng2}wwR^gKyT@n;Lt7|cnqf|DHYM>+NyWovsHv)4mSuO z1Nu}Xk9EpT`G@o&|Cxgz>GnOi67%A zT75Q`@NJ@!G`@wyJW^jJUVnFWJ&IufL0|xVF~~|ZCzhQ@(hLCL>7>gOGdZV|09b$8 zSDPSND-y_8<<#Ug$EJ0OWyckc^1GZv%OE|31X-@qh3n3``1sAw?IedG0su6wb23LH z8~3}uSu3bXZmx)@3^L_BNqy(HIEOUSHDo~tu1gJBPRH;nKS3Z%s%eh>gHvCwY^2FD z*W6qUW!l%|=d}>W(g?dlOz@of+XZ*)Z+MxPoPs*=gY%{NQSViomr+FBoRKPCjfzYe zao=J0vtesBsfL4(MX0?)060TdL>`R)QM+5CXZ=M`)MgYq=nP}r5WX%})~VFSYWTIouW@2Svb5e^1fQ#Q^RIfF#lMF~X~N%LJ2zy$NUpxO8jA%?Jwd z)WNH^8>R*fl!is*!Noh67e~`t|8b5QI)^hCQ~?Z)r%YI&T9xaRO&*;k0BGFzRn^Ek zdmcEZ{-RPTy#g_&UP4rv<31cJE^0ADYs}KK;Rxndl;5dtBx@Pg8YE8|NNje z+7v?oKx4d;#oiMfxUX4ldVeAjk-%Ob{G~}UZ0#ss0*mgJLKZ;qjC_w{@sAC( zEQ}Tt1ORToC16F(A$kr5uwAksatfZFu5?P?bivUIr94hre)Tl?#E;eum1cxa(kgpM zi^0~Db=*(P7k>MiZCJGVc3J%nFU))Gr*m8D+etOoByg={;u4X=%Y5N@#+{i*Xn;`_02s1y-09ob7dwE9o8~&EE7d(n{tZX^ zlnX!@p=g5U&InMIk?$ANx@F{oo8_ep>s8{RF8H1y(vJ78wAC)u7#2YoW#GvK4gja% zH}#6){v`(x@+P<(fah$(Gq2JUH|sO3{{H`5GCR0##Or~p3v{qbI70Qo9v{`GV*MEQ z_yCF$5QWMF6wJtfW}D8EOq>J=jOe&@MEI&lGa?*6{7wuPQKlE!bO`~5KaC&xd-V#A zKwrkOvQ-m&06^~_u5%ls_aocK+fkV6-(DIo5@qA0VPu?itFk+EN^9r`2qXNRa6!b8 zlJOjJk|byzJc4LTm_B4BBY3IQh$=DMTvbLuWNC$T?!~5^@BtrwNG5uga@JXFRdP!`&s0R8$ z^@_*VKF-(@K>#@6BY!IAd{yhgS+(0W0QiH>@&Eu=g)|=AOfYqxEi-x@05XLZ3Sa>9 z{v}~kwecCB006$0K$+=i(75$poivz}1pwht*53l8{^{E7Yxk?`-FUMhLLinJy`=-p z3x>x!$CdkowcUZ++&IIcnMVA)P^E21raYO(yntokqNyqy-U9p*h`SJCxC&vy& z;q@-~hT6*>Ygw5n!I6d~rM%3?L6$Zxr{`tTVS@BhSO)g;oxabeYq#uPtPRB_5Occp z;$7#M8})M(@uY^&)lNf_A zgOQ+v3^Dntr_pnJ%C(*c`+u%qRX}+3Wq)N(0E*rLeAp5dg4c=6VJSEZ(!4EyQ&4Nz6|0> zg`+wSnG}C`XqhrOS%;`AyQEGiiaB9l51SOq1lvmZnlf`9u$MW{p#;84u^&XgpwG>` z{^oYgB@E|oyyxOB^##@ z4xw@GB$dnZJVTn-<7!JZ=NZb&f`)W!e-`cgT;%^6;SK@1ynkqI5}W@7G!|OK%Q_@E zumATP<{WlRn<4adG@_==yJ_U16U~*M3MyH1>XH%bhb$%hpNgPz@aR; z`a~{HRoMycIT{SM*-85E3-9TFb)C8E$LnqSsSXvTXT07>9fCSghkhM4O}kN3HU>E? z6u_O<5fb4b@OOB9nriG#hxJE|%++K;9pG;uncxG3#_7;*f|MWZAN6v!CE7t4ccg*% z9oyp^t#|YBT3%-Pf`*irz7nh3@ugb*O??>v$0w@-54pdL-ld3B=FB=VyAP zHSA%1jm4-^C27bdB}QPWxZ2;=SDI}A!#chv#k6vLn%C?cj=G2Z4dlQSkgp*{soZ&& zp15(Ps5aaT0py2w3isBYS6Z`GS{!OTB6Dr0(tz9FJM{~I-Ctd%1QRbU(3+SGUXBQI* z`&ZN)Ba{}Og~_f{YL8J^EyaJqV1yYhdGI$!wK}mHL4I!TE8t(+_LwIk|QM z&^2j@#z?+-#tft3j2Ys}2WxKY(cFt)0Ax+JW{z#%eX}oDywED*3K5OzZQkyB!@2zp zD$*xIC%Z8juvtifZB&p49P~5b`FYU*o;lfo&kVcRn(6`q_ zTOlD-0`i1L`0;64?`sdAEWKpATPP&~=siKd>rTd+y8H3caWmA^s$)2%Ox3%iqE0#M z3lD~NWIpTFYKcdZ4&A=5rR^r1AO(O2;{7KIJ@i+QHo0`Y+fx0)u8}r#tjc+YIUnuB zmw8tv*li1t9D?_FDGymn4|03eQ=K=ONz>hA?{Ufd2vpM*DQpiycGBG-4A9-I{Uwi0 z3LBpdkx^@7oG6@;L6TgknNRW9n97D#0uAT!XO>?zG}F}x8Q#ZPw)LN7lL1Y9SNIOj z%#?pH{(&55rNk zR@Pf`NUxvVSnUT=*{I6Dl>b2|Gls2H<(;=OdEcMS`Ney|^I%Skd;R$(&tluwL^pJh zLuHGK`(Y%M4TZ8gr(;L&`DZafatLZnn%8cx8@=&FNj2G+hmzr$yL?*EmM&BQjV0N1 zB#T_|r)GDZ)U?d7?`-#n#=j^scuWnRIofxjA)v+5b0PVOf&{?iH+Nyn&h;H4f$nG! z0H|URknQ(z(McizjhAgc;k`?KA-i?$lWT@(OwQ;}x5SD2h0Pg|@|XBY{3Jjx4JPE+ zpe5?&LIA)7X|v!E%`jy*>oq2q90EW)l0Y`Tz4N{uNx(idCMo#V4phKNoPxgKjK=hl zD0I`IzIxY6$=ppkG|nRY(Mebiq#a zOb*FEy#jEduHB+r)Cf7r%bts@%i;8lWB!}!-nAP;U(lF&94E=(Fra8G?PFZJ3E(8z zcxSb6TMb}U6;iX}LrMtVE zWnp(|kOrlcMrn{Gq(qUFMjE6$q@+_q8bnG$LJ%pDkd%i1yfbs=o-^OoIEKH4N7z6-<+(Bg9uph*>kY`);x{ zgA(gb&rh{x;E^DfXXLSF!Ij^#J13=(_S^*kXruclyTkLZvDYdV-rgatX)m8dr3ebD zE?B{O3y)11-?o>&Zm&iG;A-S?N^62ISv&jr&-xTDdbmfUpLn&1`#SRm!>{THg3duKbxwbB zA7uElj9NvrHG{W=00?36d>g+hq~1qKW#MnX_7lWBMMCs5@!Wdq)=EPx_%46CM^$Uu zy7WOSOEVNJ<_*En4q8W=9!!f$_el=01o!1$K3q{>K0;`_f&_U1v9iCGuAl*HowYhC zN8b%uq*od_z!q9hdc2zTE*1FB4<}PfcQC~7oZH`!?wI#ke-4tyGQ{i#_e$=y$}1G0 zgWe6&1t{DAf__bEa)fkS{_2dngwC{_&*2%j2r(OJ^$jUTBR7b+b7Hr3SLgqp9Vd%^ z(>efNeNUWyO6C_s%p)F^Rn~|H^*xwYMyk)wFA#E-)3P+oxGt-77GRC=6EcJ;zrSyG z%fX%%niai+p>8ipy|CWlV4ON$9NsR?Z!epHC4e6Ic;tz!O|^E|jRELPA5`03EnSS6 zUJjMU1`Gl~`cC{RIc1VEY6SqqHUDiA0ShA&kDfL~`i>#K<`9#>t~>16Q%@!-!wPE2 zyawR9Lz-sg{VmMJC-w!{*_I|fuUSE!fjUu#vHrQdg-iV1w47|+UWEhzsT-BYGBP{& zBnP%Cmy^r9Y44(VfoumJ4dZ@)TyFo_1G5Bq0i}MMEbU-CmPeLNbw9TjvQVQf>2^|j zti7~>*0F<(vSktd&WV@)>6R~#zUUmdm+J-EtQk;)-RdEHdtx9#Ucl;ulVv`#$6o+I zcx^^^%ZTgJY%5c+>U8;xo$VqMY3xNxEk6_U6Zw#5lB`z)i3iatHtQU(FI=^Bf_3g}O_dFj4f_@6 zAnru`E+?(<6%lYcToHkCV9x9N(&_ApJ3#E(<;JbGsuHZ_ln(K{s1gYb#O%(oA3d~o z;GmTfbC+n}VPbYPL>aqr=e7wnF|lj43|$|5KD7)B8StKK5KbjsgD_j&65$hq3t4mU z077CjXhd6p0iGdhrF#+gCCUAOiceT2eSSeTM?ZB5H05F*F>?o+jH95xF zMIZp|wQ||4<-m-3j7ISATi+OfC#QG>jqyhU8Ax{P3;-*Y4@bDKCkv`jTzf9u9K_sm zx*~bpmRrpV(yTBs*A}=enb#W{$KU4Pa!e<~!Qp=L&i7ar(fdHIgRwOe}9x zY&dI>CPtXfrk3Z@>>@7-nvGtAUV%asAIQSqnK4-hOYo#Urlk^*W^W5c*MJwCE7o2a zrbV-Yzz^&NK07s3o{zJ0trzG8{g$j5ecn>_?r_k-7UGO$%8cuh(ZwKn*$50 zm2M&{R9gb<%*OyWT)V>IZgBlqFNLgRG=SqA&xdfFPfPPe2ACb^+ynT(R4&5eA1drW zHIck3&j|a52tkaCJ$OBy$g%yJeWIZAEZpVNG*}Wupd+GM0 zdW7AugkC`W;o%=#{a4$VR_52DS&>c9dTFOf$xJ$3Pr!AQUDz#<6`8%iM#tB2jkt)e z0rW1xp|3J#RjCLBeqb+fUgC6e{4<)AY7Ae48|IITYmh8bkTml6!D45iVsY4>icG5Gh?4GR` zM!=FE7=OoeRxDS&KYo>KlYy+FSAaSuo9BAUxuh=x=dZFi0D_K|a}`o|WZ~!)Qh{hW zTA>h5ct>wOliqG8JnjV`)*_Y(c-*gYW3ARA8x~r`J_A^blcs4nE1-P2W3o`NM=|aN zg+E?@&DjSk=j^k2ZDKijv`=y}5Kl=nd+>5*FI)QSveM8-{)NsSfnE9J4Zy6B_^r~( zd0}W)$ih9wAvOUPnsk9fpEQz6v5)9TAR3xS*XXiRUd1{Wy}f#p$Fpou2+MY%>3F%; zW*@KOUba&Y=V`qS^F^e#3iPqOgyy~6YfzdmwG(sxfbF~uc)_2~RmZEe9VOTc>{7a# zP6e1Wc-gi=gWOE~Ah?Ju08J)lRsp~&Jl{a~ zyn+BMJ*46SM(#(|1->1&Tn)xKIMqKFN}v}M@iwDQ0cctF<^^P{vQ;{<$%W{}OMEJ4 zMH$5=!8{^js2Z>J^MXP{k4aBA>Sd4@@YAEd()SEY0CX}JP6pNOCMgm~`$L2__5F$DnlZ`XF4%YVBB>Nzx%qN0ef6HVeyQo03*e%w^s zH>{I?ieeA|vf|&^>YN;ebuUjz251T(95>)((*J`zQcFf~^a2n7vQ8b_=tms_YzqL8 zt~dkXGF|TFw?B4k);Q1@gkJVE%IyNCPPwe>0|{tEz5+nYB_?fMFRaeYYB_F&*npv* z^{{$CQcQf{QS>YobuDh}@qY!cKw4nI<$0H)N6JOt3qX(qHzBj8er((0tjqLz_}Re+FlK~MqL1aC1Ymm`L*NG%dyu7 zF!rZZ(F2N7VeMt9M&v)y3tpO1s@xds)Yf-Q7#tz&*AC`HXVh}$gg@j34(H!TkXvc8R?%s!4^Qa@CHz+!U4UU zB&{Ao0}bycBO@|vxf_+0!fROoLN9n6fdMyrsr%ryEEPx&?ga^gH)n0RnT|rUO1T&eHg^w;W2ro7?d7m3xjhx2OcnqE&}~+T1;C|_t3z7q zS{VfF1&hf2!D1@9Qwo2lA6J8M7S7amlI$@MpijrPb2ClUle^kcC3^q?Fzb`@F5t%n z@icp~mp$|k&NNxBo^!{TR#{(2wQJ)7gkF9eFxLfiTo9rI4g{=(IP?#cBz`t(A7_~y zy3J${1|C5lG$gMliCth|^zyt)A$u{8_jH=~wRBc9IY%!8==g?U%{`cN@#03Q1RdT9 zoZC5YrwMy_?j1F?ZKSHtQ%|gFdE#+tnz6dDlLiF{3cw@f+)GfB1zG_TP}Kp*q5O+e zX|-)6Aefp*4_KAp9;P-bA_doxx{HWeTiB=J>3+klgQf6VTfLpJM$SAA_nRdFx|b>x zXkZhp9s4Jn>u0HAf2_47RSZxk2PEssa~ITG^8$Nfc>rR0is!p0d$L!)*`v`Dj7gQ2 z#bSqJd0iH}jNcP|Hf12>s!}V46{R?P8IfSWR)(|@KmfFBQ{MtSnKL`=POEFt8}&aY z$xEZA{l1{?foD<(fn(G>dW7~cEkkcogZ~Uu@3S=ZzZVQ3yn_i>*m5LxvA0WcU54Yh1{n@7%lWgg<`vvvFLq3jt@sR)O z%zil{=tOedQ8BURj-!`$EQ&r9B4{%b!pl|UfGSsN3y<^yzz&J>{=k}BI^_}TjtyKq_pPNIZAVOZly8&L%ClCG3aRm3_ zIGVmGTvm$q(_;W)!3T}pI6T`;hLKY=lzl!<`=;jR!)h((6Hm0Qnd2;trUkU9Ful;g6bG*Jn_BvLh4W9?y)gdOwl zrE1b`OvMXe4?>}*95L+uIcRQ25%pqn-P28~ta8zi%{{?wxTlT zt=;FnqcyykiVgZEU0>;Mnyu3`PXJr8uI|>mjTW9$64(Oqv3G~9)-U9H8CGfKGXEeW zc`f4d*(dT0F>F+&&-Dfgw~W%^QKSliexx|)FTKTII0JM&`=CZ&kYIe|r zE02vRMjhC*jb@0;BsTir{dBXH-IK@q)H)xbvO8P(1-Ud@$D4O%#ndB=x=fkD?pbPZY1$F~r(wKcuq=U#XD*T>lyOiA1V~Qa z?&Z3za~G?hK>#dXvBDh+UOmh1uYLePJaAMmmw0%S2%Ueq^^AV{456~v3)QY z224(;DtX}veDf1+-+y;p29~LJ=a7&9q6aDH$u#pVfbcH^TAo;huk(sy6faK)=9B6) zfPOTT^>cc`+i_V#smgd3pIAcxfTew5*w$(_&POIj z%jB7E77REDz;4h_O&?6Ll`MBDnR@JJL7>J8^l44aV>la0AG;^B47}^VC3yJTl>JbgbG5ckB79767z< zHvRyY_`_8V^ad=e_8M83Jyjm{`!@KVfBXV~*0;nT>$d)Qjc2`^1?3$aT%Y)F*3?$e ze4nGKm1~7d+sD{pxG2iA_~z;WIS9w8FtV3901TAt8P5(Kk})+S^)s@ zn^^B$wLZM;d7zD3UqX`){0;zbRzgFef3J}7U_2B6Q#6`5$oICOzlQ>V*00pPXYr0Q zB38~4T38O6#AHga!}`Z)!}FmkKmR3JGMo4Sp@)2lPrCyDd|JKZ$_z~#Y0yA#-RT36 z9MAfuP>(ekp&8@_Ois1gUuXb8EE8~y@6?-hOzSDcvdqs3GP);-=iGYcpL_wh?)Z@8 zze37SbXwuy0RZgOz1z&P0W4f`Ym>efz6T6&%1m>#l4?V+?RSXmlm44CsT0LS8*Kw%S@zz3d<%Jtt63soIk|T) zaQZ)&(LPph6=R+* zeQ;b{naQ++7ona27CGNt)g2bLSITD2JwquB1gon;Iy)}crqr%awrM{_CS&#h0$|L+ z{uThk(TQ7${fAQY0^*7z&RDX1c3@xW0rBek*FVe1m;7W%d*)jyyeR_!Kf1Eh5crQTTAbvFWKt%rimCH6e-X`pq7)`824psj!;FUAkp_!~}^?=zC6Z3?$ zN$FeGjU3QQhRfOIOx8?EaAd~}4rV7OL08Y(7q`x5eB?53xoi#OgvX4AxL%mmh=}Cj zziGTC5@6KWoVtN#o}^E@&0e$xiTKiRD_SU%I(A!*$4Z(z&%n6 zuQyV_xGA^mlen^UG3)@q!V*_*t<(Fv7jkem!U6zc@%%2Q*m@=JYhhXMn;k(*Z7AZ7 zsSOM7l~y&ZG@*im$5T$=*2sN3n*BKdaEl|@p&vKrw#~6XXMAP{01(%1KEUD~PIf56 zZOuE6DX(Y*&QHSn<)43V6_a_^RN??(BhO~Zc;-K?)VoKFbpfzg8hg_X!4f|X^|$T> zI(ddP0zkLqLtXvH>KM(T9st<7n0~M;SHBqPZ(RV;I#*5@KvRd8)EZ)S?siz&8$Xd7 z;A>lL(!``ei|3!kG6Ma{^~`N|=lB~70I(tth$j7RlfN4$Bdf8X7${iK(;>rj>SK0N z34qkh)6Byp|7N`b0KBgXEXg!7bbK7m5^Dzl5a-yP#XZ~6qTtv5mId$Z`|@(1WwD#- zRb;ftV^uf$J(50<34h00FAJWv?sS<>%&ZhWF%Tfqmb(ykeA=BL zBv1dZ)RyiAtnqyyQl`kn>VS*x1t9c-sT9jH=G-ye3mXw^@p8f^ZAV4ai&$md?U!y% z9BaeZcUS@lJ%q=uYYF~m+`md6>o`+B%xGA;uDo_od0zbbC-D%eUXvdGar2Q0{;WyI z$Y?Va=xZ7wv4&Nd1d2-NXGYZckVbsDnffWN9yEUg)AlD)K2jddG%-}m9UkB!NqL0 z!Jk8qFYKt5KJO&uFq2@Y8IP*s8*aolLICp2 z^0zuuC41(nQ-Dy}VF!)v1nu!4HMP`j$)qBnpbTYki4q`IgnXrV>L+8P_dS5vVR1Ry znSv*+MVbshx3J_&O!Cs3w2C@!)Y3i(FccE>c#4}Z-V7P80}%wAFYr_#49z{ltvH{j zE8jxf%MZw50w9M;rW*I8&9o-DM>LkUduuD};&REq_DqW2CjkPBE9t}g7w}1b)cDNg zSaNO993_UANU)_G0lZg5T~eyk00X_CJGXC37tj=`rM{vvTQc3&m+Pr zL~XNUvQql8ZKXFDPY2+Q@O1j8JGq#2=RfHQrmO)7J@AMD5BU7mIsat&hGu{j$V)kv zM%5bbR=%UN9MC<$o8jGuX@KVWf*hn{O;gvSnt3JwV2Pa)70T67W#rIew6vYV5WN6! zq-FLO6xw>D1j66iN`&Z<&1H21_AK#-+5gJ9GJhf_E^at z*p#c*^7O`x*GcqhAjb!KVjvom>qny}jMu$+K?eu`kbESf)m+czm0l2yC>99$ngi?0 zi!G&(ncn}eV!4>mY2!mJ0~42}UqDq~DH1M(DcU=i=4Uz!vD z#ub9x_d{eq+FQ=mO#0vB@Glc{&5Sj)cDRQI)DyJB>loO7<Xgb#ZsKr@)P?+F&e0T*u+wIK9ZzR!3H-En%~(#2{=% zac^=jtH+dSoXp$&-c23tvB`0%U+B_LXKLF9Q5U09hmdc z5ZQx?aR4CnyF2z`0n+`hFQ)4lCmJgXw>mQ+64;&P-KbX9pOtz9;=4p(0}iHcPcQf< z1OUKF*F*Lm8w9=6x}-lVd;nCsc#djCG%L*aNT=m(EAqP@I_;>s>)KSBa09&P$@q_{ zG>z;$9yYKce-`{^I4oGFh~LTIH_a+Scu0fWF6 z2M&g>9(A7UOfGx*o&JHy14yoXB<$2xgE&0V3qSx6TW+n9=fVrAEwj)J04xtRAD~ud zQ2i86-%bPWko@q~Y5BCF*_8KdfZ63W@pOX*$}1a9ruTvY#3~2_hqoLdwP|vf1Oim- z(^J-)fuPY;|E86)noQ3i0B$ti7J*)nxG${BAVWg4x0I$wIY>z+_>AK&FHuackDI5b z&=Y!T-TJr{-t;toSgwdUdUum(tgx6y6BrQZ39I7ff`Df=*ua-l7*^!2POPmHrAHV| zO{A8q(ET$L-NM++t9qvRPS)tgSs4Vjq~E=K`Kug6HDJ9nk(3E=&hNAQQ!9Ev>mO`y zVhN21?Vj_bPOU8T4I%XVvM<~f&?QNK)RyMh89^<>t9c?!lP%dS zaNo*rqbD{hU8nzS>BT0$0RZCO!S+eCjtf_n4!gO*U)5Wv8y?@KA#XqOOu^ZE0YK}L zcu43v%?k5=P1KL_it^+mV(40nTmQ=8z1N#h-9&!#8U2T_c2n95D2LBWM|>&y-Y zB>WEk-+i3VT}usl=y@ua{R)69M0|!20Kq+uRhnhp*>dV&CK(%MBxVo*338k-!)3?( z4H5np27uRuF^T6D=&`82+I&ADz?5=YDqluuC2QHP8L{H2@WZRW@F}48vu` zU~;V&3?L31G4Pig>YTIz;)PTwqOleS5I(AKd%s)G*-eu60wt(uw%9tev%MJP?Ip6$ zGyn0B-+WZ>ug71$?ERPMF zs>loW0(Y%EE)8$8jRbl@r5it&rAQ!%LmcXdv7w-!*SD4_%A{QG3B82p8EnmGFsC2Y zt+B3>ILrY6@sk*X-Ek&Y!NpqrY}{Z%ab*!wV^ZXe_Gzuh7FJ;>B` zYsNjz4%y2hK1A_ciICWS!Y##+i(N%7M^9?FPreev9F+NqxR^>C|Z|A^zh)1rPrD?3;>AbVrBg@ePx0-t)C=H7L+jV zWO`w{){=Jz@vZt%c^+r#rhzQvabz6Z)&P zb4ICBGtCRQzk@^cAu*2eqz-)`gLLn~Ynscct1%pd0N_We;YVlAl+Z5DG5`Q#d7r|Y z1bMVNL4Z+t9gPS0#;`Eg0n)GTT31B;1^O9mmPG>57@y(=Yu~TwsY8{s2ZI2JQ>~|E zK%D=W7Ur3avMd0AxI^c|R<(`kceiF&r13;Nkk^4&#zWgz(cDh8lL%WAH2~5M`v$I* zu5DTez$OlI^JwUVmlQt^XW*hT_zY|Gv%7oX;T7p`9eURF1+S|vwZ zGc)yqy};LFa>^0c)GiX}1-*!PC`&BkpbYW?!b{H69?eDt0L1cQ%@0z4rM;P5W+Qok z(44FK3wIC6q1o680JP4Fm~hA{=WpuP*^6-wR}KO4dX)MJ)dbm83k*Up%lmDyycmvo z>Ypk8X$Sz5M$Nm&&aMAUda{`T0l+Dg=e<~)e>gse^fyz!0|0iOtqrnLC?2U8mL{YB z0@4bHSZ?_KHZ;9t#aI{lsx|!wt;?(!Hc-8<$mkyc5Krq<(9#SFud0jZ>QfXPC%goL z1ALe|;Wb@cUeK>@8fv#GkN=ZXehr{^3GVe%ex1WWfTZUIavO5Mgjqn zhe+S#_Z$FWPi7DRqiV%j;E&t?E-Ua-S*Z+jwd&=-R+4!wNd9?o<)!R6lbu>uX%F@c{0Ga_~iQ<|A zmYQwR^e_KMAR(IsqgM&celn-_Qz;t*y`W;<_h=uLvH=8u4BXs(_Ugnb0eHVB0DR{h zlINeT&g$eT0k53mTaLNYvM198lavF`S8Syo&`XIlrQLOp!i!`2*9_1aKmf>dEls9+ zDqY#jR+5894SC^SRF2A;H7N@~=;h9+IWAj2eyqx4lNZ4jpZ}6;nH5&0)7p}3?IKW2 zpQ`=gj@Ho|5g@QtdtYHUXMEOsrIthXQl0+6IYau_rSO5ew2{ICgkI>!9b-S(s+L)` z@OYge0K5VLSJ`uUvKF3)d}s^ABOjKqWLTG`OzDBUCg{yVW@jc5wshE$CpX@oNTY@3 z)&W54g=r9&opEX}P0fYv7z4tI%bSLvX~R^}ab z^jD4_$>;2TKK+x{JsS)Fu*1VWuWDImJty^->NFJygTPkg#aZq`bpCAJblw61m-mNB zAg~EA{!Tyc__}w%bb0X2RD>XApck~R_9nSZY*fr30Aym=9>1I%v^3x$vF8QU>DWo< zDyg*!)H+vHh(KQUeqC8T2d1@_mq6%6J`0v3<0b7^AYiRwa+-(!zzfm{DBe>pS+tDQ zn%Ri96hK}8b)zwPyW7oap2st#Oos`?*MktQJYVqs{QEI-*wZorgkDe|@QTl-@Z4H+ z(m~HTY{|U!+q|g2kCbihX!GL6y`uN97GD2}QN_I+J zf2i4EEdc<5+44v~usq7l?!}*IEqOt_*&(xH>f{gn2OjPTsy%n!zFZqc_|z|!=}>0D z0RVBX*j?Ne#3jjI=s5vbzP*SLDh5la(<;&@y`yHy-i6p1bWy;ih+hNfU4nZZS)pYE z0X*9a_5yeA@VwcAH7S7rNssutu6p^d32z1g5PW`->!iPp?x=IL>;=E`#*Qq?FC4D! zpG43LKn+|L2RQt}KazJr_X9 zUK$bzMh0v0*wnodvvmw{(4iNA0Kn^6Ijpxn^*p2?0eslKQNqnGTl3R}=@EgQ6+NK! zD~pC(n!-uuo4cOqC}rY59pXtLog=3_O=YcKfAK!6G@e>5&M+P?$wSvQ9=55VwZrNJOGoL0 z9@ZxL+GVLhj3F8T0t6HQSV%|mOXcKa8Hq2_WspOK8DJ$4jmb&*)d4~NuFfC;hO|B5 zj{n^bdbTB{JY0jlisKc%innw@)`cqiI)GTE0Bm%$lsZc~7jU$E1s&6_ z&;&r`P}>2?{jQq(is`^X>j+bP14Q#;_vC{t(?3mePM5Ua-T*`+@-e||6Q=$D-f+tj z+lH|2Ak(GC25B2}Ei$u-?<%eTv($}s^4s@3mt;%r?MiI3hE4V6$qrgCsy@EczOkMD zm)T-0TFC73pa)95t}1# zpwv1*=!MrKP~}Z2bSQd{s6fQr3$Fg)UV`hZ)7fUn3atZ#l}G%JMd?u=HnW0mT9W;Bz%XyGxv;^{7i5}xj6{#%`U*RI1;M7axpIB7iDi`EuD z0LsE6wAZxVuYHXtJ5Vdi+x_%GA#I)qH)ocIo=dG4(Ewscm0Z*|AJzrN4XSZ|n+;VoGz(KlR( z!$6*(DpEwP{uui(2))p4KUTW3GHIo@dZ?GZKy&B`AUUHLl020*suvXHfMOM~Pvaq^ z>o2sQ%0^?>^PXN%VF!fiAur^V{P!=ZV&kNc2kgc6soD1QPT^l@Gl*A4b5~d#fj7NC z5t&EF)IEVu^uVC#Zex1UcCPHrWF84bV{)Fnci|XWWCViPxM7uJn9~zG7D=_6N4L2r zJlMyorw-kvy;gJA=&cs7>iLO4S(~ma^`8z24n*z^`2p1<_NQ1r&J!2cCz47DWR<}H z?tYupJ>WU7Z3mfM0}akuDOI_C5!_qsNnLdP;FT{W^@5(-6%KckW{=X#rNPaksw^L5 zlbZ-~H~GNbx>7!K(#;D-ukzu*{@1(85i!v4T#r9Lyv{vYwdt!FQog|6FfS@iAM_^E zTEnf2Wp5^}F`GQ0s(bg6J6>(beMR;b2;w?vZM%+^GU zVzG2AO_{Ldn_kJhXy&Zwfv0kEFxas*w+v1*7y!V7flLA2w?}h$2LK4XFNJ-P;+(t_ zO0TT=ubwEfhhqqxM;{z92Z(;$u>by6Zf$)Qnn7Mb?6T1uGvk4p-x>jxZp{-%1hkw%y-u&7GxC4n0)Hq*jr;*;B{I z_%8yUiX$4c2ECMgn`_4YpNC#gm_Vl`?g1bOdvaq*>rxL)(N0yo@83gjTKR?G%oa*z zo@jjVXpl@tX5PJ( zpRNxTJwM5R=#W4(CPAkr)YU@=Tbn@ujH-In7;wzz{^1EgB1ic0Yeu<%PW{X11i)+R z0H6p*k45N%*yan$p>9q&4QK3^Z&eR5@iRgkrY}g30RvKX0lwFf+%^)y9e2I+Yw{d&$>r^uQ?2>O8 zEx=f;(EMdYCbn)+d1k5e;=%F+k!@WGvaM?XSugLC+R*@(1OCrR?CkuU(&_Ajgl-Qc zQn~P>oa{XPu~`^MxW>!U?s46>ojU7 zkL?x93Iac{7nt$OPI3UT(~KAB1?3K^C}*m+UrCS`Q2lx$sT|uz3;;1rP~2s^fHZ@l z3B>qrO8+tbW!B6G|9DyklwB$TgyUX3|Ai;;GvR;73k%HL3;;_tvxP>27|$f`OE6eE zrEQz*r4pMg7_?b%ac%WP~NhuvEZ4UI@ng1Ae;Xn7jXE=8(ARR zR%d{1^eH^J=~y;^4$5C;ol`L5A}kJD@YgZLnME03gDSKyV5Ihl$EvXPKl z-a;tWdD=Uhti6dxCeVGk`4l5FLm+L)K+5Na~y+kl9t&=bu!&IRUGfPLZTTV=RW^I6H&Nb<~ zCJ)RtQv}aA%FIUDJbJa(25N~cr0k|NTH<&1=|565wODDl{*q4NFbo5{#F?wNml0$0 z4dR4O%XB4i*(|-kwOURTHYG4^gP3*QJ53VHnNS0@{xhle59S+z%K+?Ev7jlg`xF~! zeK>`_!*{tnd6QVI1n|wRUlXlMH7is3691Ltb;*>tHw+c?LBRtV=3uZTJl*!r(T zJddc5Wm)Ha-rcuyO7DI-a1^ynTs@UtF0Z9m_6IK@7sn^dEd9RWP7N+_kba zF|C8pAuh+n1IuNSf|}N0q+)IdHbtH&~b|vaC$@IrDuQ=(5Sk^gNnjiIzvRrw!vt zUEA3T#9Y*Xn2VZPg{nx^6|*Yv6U6f)D#hVgxGZJ`J)wc3&1lCgw>9csNj`N~Dk}mc zgmQWXdi;}nq(8YA^j%8+tMnV&E60fZlIXZSN5uHq>_JSaQoDx4G!?yI+Q;wY=1_zW z@zk}?nU&gyU@$+h<4-Q|qX%o`IAt%~dx18{Jb-qmS(sG2?SvBK1spn*PR@TdfX7_QJC>ErEX`k(gQ zSe9i_`gc;T_Wl)Q*+L-zKWjyws4FW75|eqb+f+obJs-P9;T_UZ-2 z`6NUZB1RDm@&e{RTOxCpW^Xge)REGTU+i2OwMfeagR)!<^!7G$z*0FI*X#iV0M;2< z^?C9ymQ|Rs6XXFg>VFVpIQ#sm=h;3GfTeO&Ei!4gSeE|>`s}#RV??qy zZ!ga#*)P(?->q$VByOpNWoZbmkt@McIZPO0zWemVf=DZOAv0#~T|yJHJ78B8 zM*Gm|L5?Lex+K$i3&{ZdGsr7&)w(|KmSO;ikCYwfx^~zvKlrosmI$HNq4WVr+TxGj zFX-WoSz-_XDX&emREkHSW^Z|>lL31u03hDEA(6!ruFTs}DUr_b+-p-CA6ExhbN z4Y~JhYybdSm+H*kbCmyJna{BS0CfDxG8!!WYs()r@5~MWjffZkOdr{QCLZ_P@WsLc z0OFZ5W>~`F(A%`xYGz`BCK>T=?m0CnW$)Oc{y_tPBdp6xw8BOa8+%9)0HkH>eX_w{ zSO9(^K>)y`m@MqVrJmO#vvvR|;Q(-eiUIc*c`9a(0RT1u}|;;DuICiRu44SK61LZ~LJzw*fLF zFC5^ICHMO3Lhb0aSJAOPCWH)VGNg;FuFX&kHph`>PzQr`V$n5f{1CM$W?Y6r0AQtr zdl|Pgg=R~t9O^zx00!{_-=>gVvJ$mdXjuVlBb?3UUOq2+Qp+M$KAiq>Da3!kFI8iR zTnyJrU?3X9w2phLyJ(mW1L=1F0U+c4%A0o4D`6HDQES9*iTW#=lMHU0zl{m z*XMyP0D^Ou*M28eoq|-&Wgw>4EK9oN`Tf%=3!EP`EerV84=P=pJeVT9av=0j4 z#fOA_TWEtyP#%g@Xb?R~k3QRSd-U=E#9GUdFC>E5i@KZd|AVkTjGk`&IlByl%Dq1% z+0$N)o&dPMua?yd_Mh7~sjLeb=>Zj;9`L9W_fRsn=R$gF)XfQK{d{xVo8$fVMVSO0 z|JIMBFtJD)k&{}Kv64oG?hmaxp2`+Z8ur{5uJW0~yF3#)VskOgJGVZ_NfM~oGKUqk zTK_gvachWHt+TM9)B_tX)5VFFuvig@nQo^Z*Cl}GRkFsN*uK0DUkPBZt=DvV_?67V zN@GbiL-otjVD^d~1O`j2rP$eqxxw_y@bTI$pmPS`APc`&7=Nc9cTyau{pWh_!Jdnr z80ZC!ezQ@sXZ(pl0AM|W-6Lhs7}_RM0btYV!Og=(zHBHprWMf70bpT~d)QR`TL~~z zBCr%fpH%b_8Q)dFgS(!0Mo0xP&}Pq6*RfLc)=5Ij1CSRmzjZ-v9|@T1IA+v?nN|cM z+1)AGOZOnz8bD|?fL?A+Nbg4B#mH;X+XWy1nkK4j0np32)Sv5KBwJXB0RY=1!+V#o z;-&lJWR@XCyx7~jFd|f)gJglKDN$O_9pQIY2Cq(i(yO$*C&@kx8C?TjaMhhLWI<{l zo%I8Ifd}^Zyr9Vo^n!|e_HR zjr2WJ5W#sF=#^(o!6yC%5re#dy;YX_R~-Nhr{Ch8A z=`w~rn?V5J%nK_gyl!zlWs!j7MD1m(#-z8}xDvqE9mtSQ-h71iY^gmQjzQs#ii8h< zO4U!^{W|azEUR9Ey=(^8Oe>E)ns|aD80b~TU%e9Ru}8`V5CBr$rE4zN+5-Wzhq)UX z;QE2&D#!K1AJdatb`tf2nf`-C2BX0aovXX4>sG32{t1#nJle^<)u?t0q+Dk7X3*CZ zH|Pm0vS&;jH%L#Jr80P4ns5GYr&McG>ciD1bsCm&1|#$6y@LAT(N7xtY&rE}H?vg% zHoXlv?7D;Vcdg6FC0HG25)2?uN-)P*{8bXE9PKF#1c;p)1>^GM$+fIfIRF7rXj@Eo z1PQHtR(lH3xSj&ynM(>=#JG=f%a#Fp&xVQl)#l6!_+LL)l`>{!^1YKdr%p?4g*$c} zzd53g_n4s)bwU()*%wQQ zP`1y(ff!e8Ljg7@$Q_d+n-%jPfcZ}D@muS;bD$-+w&__T^FD%pLCd(oki&Lya4}t~ zFmXqRjeSq*TWnwkfBwJG+R@lpsc2ZQl-T9ljk4pfGRslgI2!<9Mb1Ts4bJG#cM7wN z?6&;ny3+mz;#n@OZIsP;JknYM>)Ls}Wgw+<7L=Eeaia`trDWCe{#r@tup(=*6~_zs zvvSNstM^Uh}D;wU;1Z(OzB->S0fMJ{Nzu3jS{QVvP;~!_6Y4z zY{?wdGS3{4-g&!yMeX`>ATitR1qq4P<%Zs)jZ6K7jBxmtwQqos%*wZvkT~zl3>I}c zhd=KC;HfpRBYU_XG)?kuybu5o{9%Q8pOeL08PNqYSiQhR9B=sIOE}g&LS5py%mcy1zv0BES*3G@c z{fP&W03en%`s(lg)Wn>1hY=wJ<~jnYny1;t>cx?PVdfbC#di2lk=V{J@b_PFNMi1 z0Jt<^rkmb>Y?)gp1PPerxQ%3I)i3HCy2&8u0j*D(n#IZ>2-$pp4)u4;w$w7%;ruEK zrw;FT`LC5Q2))SNrkJr>X``_^0RS$JSF`jYbbXWIFTYjQhVd83zq2y>eHvV6d4Wswn!~)pB zL;gIprdn0QpN$L-&$5i{*EpMIgR{pXB8GNYD_D=`gtjK}5t-^uLSvAncY2*Mvvl^Q zIuLFq3jm-8o&nRZZrc3fa%<_GW_6N5=p|Q&Ef!nIgnf3_mwDD03jh#*c=!j4C5&$u zBS&h%S^r3xAf}<#<$w8z?pmd+CGd`f*2@`KP%6wFaNk;H8a4i<#g3}B*x?xH^i&og zcxbZ4Q>;}N1!C6N7C}Kt%L9<7)Sj?d4W?Umm#6vlPq8< zTip%rp_{ltrF4d4cJTfM5OanA|Gf@*F3@6PXbi+Si)@Eun^GehEY?d*AVB?(iy<(> zfVQxThrdGxep;pA<0Ept#vB|1khKK1*kcoR-Y)~lxCUQIO}7GC0R-2$@Z_zwHXAJ; zF(KwMOxT~-NUyVpuDFlmTE=q0qv0xOImOYv)q zwI{Ri0O05e05J;|b>sfe$Iqe%q|U;|w98bC*Cl%W=wBwG2eh7Wl)dYXH|TXt(9M5v z$GfRPELR+F?7FUWtA*8A+d#L>f)*qcPxRm(Y^*g;!lV|tk|3%_eG%Ag9ETIaYX=5@@4)GFA*#z7MLV-$U(Cz-42exY6-XI7`Y zU@tHC5wgl(K$gE;gDFDb{Ubc?(+^u_% zZ2d^o9Dz^*=dK$cgvvEp&l(v&pIf(I*uiQ-b=8V>$1mq$0IX$?Z9r9w5e|^aE zT>N;474LXDb=#!mI>@;7a->35HF4z5Vb_G^)vAt3{};3wv_*WV~v9 zJ#>1e^U<@#$(qh0DnbAFq5xYY;sa_Y>($_DxaD5{9)1YGEXO zJ5K1j$=rr_^^{cFgn>55_*V1zab<5>9(NF>(-oY=^Yw_3@|amO6acpP#bqB-S6&ux zf2m&ZX;Q5h>;+y<*EM?CWUtb=6ACPnL${WVHHb@dS+=QY}f4K2a=yDUjIyh*BUCJoI%faJLIKB~5VmBFk! zDtB|*4@W)9;H(1xh$}VfVQFqfNV?L4*X7hXjakAJJeWRt9FVlnrO0~z_F<5hrK__V z`^x|T2OlkixD|PptMjBmO+Jt-1C$7@l~)vRKgMb=C!MB*2LS9;_%O<`ew$LeH%7Cz z_}&p#>i^ZSB>vUXJz8X8-@+5I?2NICrI);$Y6$?aB2R>-{`+?wm9dBbzSNaUYTlWW zy5DwkpY|cPE&z_+-OMuRqUUHYDZ^@g6LkY&(HlU#P=PTef7N!n2WE*u0Gy3Kz>U5K zA3oH%m{|e<#JKv8wbQCl0{>y|1`#f#53}^JoIUb_rMdfm)-16c4C2KiET!>c{I@aw zl3r>mBL;yrn#a3S*-q(eX)k3t001#t8OsTSgFWvaWMaP0vFo8TZn`O+X0VPjCSFLt zpk=)Nn>94BU3*Q;!d|2K`n?P$VBi*924)JGEe|#rVJ}f;<9VX=qkOw+%YZRn3IJFl zVmGC%|IqUq4d(x{V_}};!&sApk81vzxTe!GZuDni^GEvJJ_i3EP9IF|z)Fh5r(M9` z7gG8g2>_eeUMfdc_~F=je^$aB;-w46x^6tM|0?a7%y-TdtPwMn3#w3D4)}i#EB)Sd?eyCzJd&gkE5*d6i3A14R0qgTglbR#Ob?IZa&*#IDZx0gI~v+%FO{>}yf_`kfawPiHSA&zwO zynTzfu#7gq5f;xGeY3K+<@?!E<&Az<$s{64_ ztuTNXH#b$A`t4}!ZvH6*00=8x;nO`|_y_u6hZt|(MYz{Uqw>0i>v%UaPr5A{}~R00FNp!8F^MlX-wHcOl>tg{G8dfJvbpOaT0>8CCW`0 z=uh0s8Q0{gk0j0W0KWgvMTI6Fcy}|~zBSIHu-8Mc z2G7x~u#kVyVi{V-9Wa~-0=7|@_?a^Y$P-q@9R%x*^tqb8FtvD=nss#TrpF2ug8kWe zLUsqSd`z+3{F$1VhF~in^&?%sBv#-nU5GbiZZ4o?_DhjJSRb?{Ek@gb!>VhGddEM~ z_Z5Hua(R3A0uSvy;~#Yr2#`GR^3CJxI)!plU=RSMzUb;E>$~@(bWE^~001#w8^{KI z-)5)3CL=}!P{-p;1EG*t5#TwdmqQ6wDnQs7q z*82~O;g0X~b4K$dMN(%9!Rs^D4R6CZv7hYg4=!kk=|kf0Rqbl_5wqLJ&BNAUIGD_0hn+P9#>3jq9=Kxt`k%ImYWcPZw5JzBFDNFcb7^+CoUPkk)q zLT_Hcy04>2ujmEqBYwH;=SEd@T*+PlLNC%ef7M?%4Gusq zlJ@MgF8Ut&huAEQn3=*dD7KRh@AW*@B6~<@3I?~(yOX+zc7JIPT+qRq8c}tM>&5%; zl#O0fe5*%=rW0Jiszyz<9Gr1rkHI83dcp4%sC%fn&g9$fg6WN^gZwj&7YyK!12Vh7 z+ev%N2sP7P2?S_V_YM{a%MKq7_);rGY7ndf@JGd8EC6opN!EG1j!+30N5lXu3B6`1 z14GG!Pao-#L8^Q#oyz8bgD3FFHoCsKG=e(H#yemI-S_T$k4zL?}n>FDE(4|Jw$mdj!hfFUCr>Nt}!#dpdY?11rvqv){|+Igi+ z3rUs?WN;W7n)GV${m)sYOlG|U#1agk9CNQN&!Hn)DuaOlZQrxURsZ!ew`5_iof#ki z_CMR{hJTlrNwjPrV0U^?zjM;T-(y~g>mHRDK9;1%u)#zDACCM6h3!1;j1w+qRkWlD#ydH=oLMEu)T?^i2F6$XvdX3 z0fZSPKyq-4%pa_M&kO43faL7>gY;Ro=A;tP6MCtZ$C!-))D7sx#R<*8UYQYCu~L~rsy--bN<<>Xe|2p|CH z$E{pCx9Fr@NA?n%_QyD*@>4C)T=tx~w0)$i0YWc$hb9sv068y})wYodGLjU)l|Co^ z?`p-hrU(F^8?0W=7Mc~Uvl~e;{yt&E1M9XU+r zz&5)^*0!s5>4Dr&)^t>~u!)FkcU<21G=}We-$XbXieBZ~Yk1|~@Ol4X%0 zpL9Yhxr$&WXcCCVBxv6L**ZJ1EDZ7jw#M*O(X255u(#cbzHN~4>Kc`XXs?#N@QD$= zmjw@O)X6zqN2u%to8b$o3vVy?>(7+Az(grn;~jKdUd3+H^H zD`6m%n~wIp*^gC=9{8*Wdf+2g89Vfsg@{?z1pw?6`Z1d|qruR5BVCKp9ww39(MuxRnw*-3t!r+|b z6U2<+vUvMo!sz8R;G12!MUnZd$bgLZnC$&x>qjFA$#HDSn!*?pS)FaT8r1fCxz*y|Bhg7J6d! z0^y6FxE{SM6$MB>TJijDG?Ntc0uW@$5#PR?1)lI}XU`;s6QU(N5jPxv%8~)wELnz* z&_|+JhSEgX%9#hsN${~PrL|*n>i~cic^mq+SC3_0FxHlrpA|{8&sAx(Pox5XIr#{u z7a5ti{@x=!SogvcdAZm!EcRS&IF^C0S1a1}vBeV3n@0OYYVsJiz_JAH(4?(@sy#}2 zy^_KPNZxC0OXaUl0HDr)zG&)3T*R`>TAj>yPND?yM}K{15yPd^mGfNQ%9e%C@Ppx! zm2>}g)>@GO-kRqPKsZ{p4a?=YXijmkS5`<}+^X(SLvDYZOgkF$-o+_x<*B$XZ3p|; zk9f`UX8QCdGz6CA`ikkp{DYoB0Fc1$O5d#vvvfFu0Pza|5%wxnM$A+)F%Bnf15A} z0C|S_%-*A#J)XG&Fp~Z;f!rk>1rnDb@L*n1?wJ1ufL+H*|>i)&1NxV3O{ewDp*DfVSfh#SdL>9?0D+L zPpv~Hm#&rm^#dUn%f!|4OnHXUZtCs;& zdsUZgne+nyh~E{Y^C+}vg)OO+ozD2D&dLsP+9I9(rh}OY zJ}8^xLXNU(dj>v~fa+aLCD^(=D~M5F%?fPmmL~+O5D9=?dB;C}B@2d_Rd>B;S?g_= zsFBY0R3pAkoQYM_%e(0c54Ytny1HgBHny$i znN%ADV&u@aj-KJdJd0_5P(AQsTIZyDFv*(;5JSlRopQ>|U=vqR>a*WPg`w$XmR5np z6$Nqd@=E3}>E?-<}|S+h${n&&&Ec z_=tRc?=Piq%Ox}oSVt@YfQMJxrLATKb@Qk%Wf0gCLGA&>qvrk_4r?MV&kt5lh}$m^ z3#Nn$b~;mX#Uc<254bNMphtpb7tY`0PkAcQeg}MX4WM@k{;bkzxg}|5X9k0~XpyzF+W=i;!?#|1lk0|?9$zm4|Q9vU!PEo#`KJZ$0 zZ&bc)%+~|dZks*oR{@YRS_y|O0Qjw#pYA&*jafV^(g*dHhF483(q2#Yqz^ApC>{Y`ku( zWWj!gHHgvbu<_3$x2ITD7LSG3NLpC83gM~}p|l_hR(o8!9$K?Y51F9sbr}E(5D>nP z9x#yc3(0F0{6Mopv{nxQfOz%Z_K{2+Yfp{9oP*YR#pj2ecO!V$^1q(yW_#PeLCi)O zk+F}(H%gUWiQY;<4KW@v0vpH(Ta(waE-v{aZEk;_Ih!?j@=GML85TABCD<%AV&@yM zA^k%JL8-sg3z_VpodI7{0a1|nVV0I>i(~moo~r9)AlO^941(UrIqFP*zfSnd$KP8o zM79P|8<{J^kWdjN3j zxO4~Q@H?Or%ee0K)#xIOudwHsYC-dgxEdE z)1-?w-jmtSF`&a1S|4>Qx20kXuY=wN1&$A3huykx;`-KGz)=#UpRVrTwOh_W&d0`+ zrSa7Ti}m;bx6U4o)0J=JGg{^l#5@)w6n)ER|Wh0C; zcc#kkwnjj_l!i^{9xBAj#qhA9)->ezvGcWmGb;dq7!?W=C##WHTa$@7*Gw6^Edsd) z)4uC7d;1H??z(vXd@Hg3J||=8n(@-hWg1(3;F|-Xz?*bdAYdnOZVHM#PGI~(`JF?LdB6PC3|Vp56}bd?0Tl~Wm!+f)*g;gwlA0i) z@N);ZC2xL_nZS-!0NB}Zq?iY``bB00dS+hY|4)*|W+kXRyF|qJY|>b^OU$HLt?UeF z4)5-^aQtlF$qh4`_ivntVwF-y?tO|0tDTooW%CXIy8)i5WL4hXIZ|5|aSGxH@;C;d zbq3`7`-H5Oi)W?c!vdhV&P>dorEfH1STk2WPHR6}RwMRgJ|Ag{(+O;VSt!y;o3)#z z9Clb{6GIMOdIq-ObSX6eRXjl%Muw*%wFWxWhU~4JA<8-ir9JvEZFKRew zJPq;e4hTnfhg?t9xfk2QATCMGGAnXmD0^d3ptFrjXow}>%Z3iuqc#KuF)CMH=f_NZt5ptC0Z^w9dV|;ULC>=ZFZOaI8zxqVtN}jcK%@yHU~P; z2R#9lAh?ia-Hgw(X%JLekN(3MPTrRoFbqLx5ToRUx2Shsb>jTeS=T@%>HTMxym46B~ua>#d%WGp)lViU@Yt zLr)h_x8rF53oX|TW7kfjW0_UTPDeZcR))hPP62}+t5jb>VkQS?dM=b%&JGv|%Pv71 zGS(U`!qIn>1TkMwfyXiDeDL0y7e2fGZD62-m`4|61&l7p3IU@F^NrmOI2-hi%LI6P zW(z+ z);E-@wH=NDX#M8quGT1tbDiJ5t|?`(jRs;)CmSYwYwgRyXzSKr)5Oe5$0Yu&9G;=B zS1_z_{>Q^Ss?*y^D7klBfX;$2#vhCJBo^%DH zcc?JRSw%&_a2lyIZ=;Sb78ZaR$!upsRnCBq(pJy_lw@EDfXVbRxziZy>J9ZWcOwUb zyzY=cvW|2I4Pb{`z4w-N!6RZI#?yKJYDEudeO{aemJA(_w<%NR{6byQv(R&h@Ix{P z09dolvLJ4Gv_5doG+7Q9b^u^@=+{UFlxW>sMwoFp0MPo*u`$bmn2s@o{qyUWns;Ug z35z`x(Z#FT+q(tH){VpQ`qVFF6T2h)u)oyXkBVhQ_b?bT^E~<#qoihBb9B|eu2jc=`x9;*TDOK?B{kdOWvqu#V)RLdjH zyF~S@*6aSXC~Q!T&bl7rXxl}}3#=q6vaIZd2T{~=n^NzFB-KvG#C#Rfol$cl%Wk*d zEO_;5N&nC+MC#p^8UOsI!^10`b+! zBjfhy<*Wn1_8cpMSNbNTFC|M)GXzVZ7xZrQL75;--jyKOiF@g?Fus2X1Ax}w?pS2) z#Rsju9M*68T%91;F>5%)unAU;k*iYtQ9`zC;)ClY%on&`x)?D~doj0s%4r#+(S`dZ ztX-gEH=0?#rJRy9Xk`=dJS_Ro5hxpw)K1TuB_q!{NkOsE&uRI=!|oA0nfoTqY3a3g z5-3c>V1t8+)aRCM1>3yVbrSe4AZCBKSDA;bUsKi%R3C_0*S*t>cTXpj-&j3ReUEA6 zWUnliXrDW;Z1x~#V9Ow8p5elr047an5SU&b6A#?7T&vwNdUYUieUg%SCVAZ*s+v(z zfy6~fecUou%2*o#E2@auSk!W7p*|UUH72VY*6hRuz)hMd!R#RJ9rvK+BVQ-V?voLy z<*&(6m>pRuzU})Y(2_+6u$6k?)<0R(!7A_1ol@`OwEg5Zu~CTF2zCIN^zcgjpl{Vt zNIMu9fYve7VB&~YLjp|?V&)qU2SSY)EK(IdrA?3Q3}TGIw@9Z9l2`e48r4z?YcH#< z6k8~ADR$(}4VoPoswi0%Y5Wdp2>jDedEVXp?QKc9j%5qW01(H1)IE}kW6y7(>p0S0 zP*G}?D-=|TT+Ynx)=E2=#R?G@qYn!TR$M1Lm0AyW02CwMiwm!mPB!Yxg?jlLfa26T zzWsXWTwUEPXnQ39TrfeETrhdAzq2(1Vy+pQw0~ip#=#gBKB=+JiOfo0(jfyNESE6z zlV6rrwUa+uM;3UI-Zm71n=?VqknU1g!w#nnxG)nxdF^vH1FiFUJgBi!yq#8n6v%s1 z8wyq}A#^V9Eb?`*l0;00iCmq_;$n5fuVirBm!dPEB7xrN1yk1@=I$sbmt;#?hbTh@ zTZDCq0}>QucutXZmcH5Nc^qAkGo=<7#+pkDrbR{E%6xNa=@)^AL13^66IDp{*z~f=5709fE#@XId&WuV}mwq%P zVp^TG1jcEKk@V?FA2Z6E3Vm7FKk{K?d(RpTKxDwj+WV8tavTjc63`^6oc*p34B{KlanRRwBks zZ`|n)fo{TpcORL-6;9k9=-S82hk#WpBY9MLewNWi4sDTNORYF&i9_Z_BZFd|MPqox%=IF^|f|Aw|l*+^R-PHK+PpJ0fZwb z9BF=@;x;%M? zwQkh8bQ2KV_~}0xbwG2MY|(g&hy|WDUPcL!v54M_wA13C=Psr|r^1VC`( z*Vney3NnqCN=r0Geju~OTLwLff(D>p&Q3UuTZ!H45J_P79H(>zY#7(TVA9I8pQb1L zhH-*|0XME?wZ%(K6M*nSl3I4R4pg}3S-}f>y_~an6dES(Fu6jzzBTlsq}%WdsbtV_ z%Gj}yCs)1dOtE%VNUU?T`+8J!p#km(w_7d0mW2e{0GotoQN#v|)H*RoQ z>%|R03&i(33t({IaZ;45{nq4i=6Owi$fE?V6nk(^Y_5J>!NffW_qpa`e+0iyLm%W?}=l>H}qQ)#vEy?=?y8 ziY!L}53DuxGFO!$F`-8xNvX_n5G`-mQd@+Ju{|9>LYYE6%bM)z_47qJH77UKKQ7?^Q901 z2)T!Xn7??YZRN;48Wf(!)fJw1h7ogA>g+~=m3mY+_k`*IV6E_f>X*_xZSIv2KQMqe zFUnE(#NdI-oc@%={WLP;(q#6Uit7~ zohp#$2_04z)Km8|PIA_xJ{1(!V-(m6Ld6et)#`C?1Zwa%VuIKiqLCxOQnyaDPPtzyL95ZU)C?;UlO1%c03KBF-9Mo+8G*EsA*N zr2GC7BM4;S<52*>zP>(f?b;Zf0Kjb?JTJs;p3+mR`;X8sAT3u?W=*{Lp1l4#$sr?v zaibHr$b~`fzjRcK*F8o7$Lb?)O8` zTI0{Z{>p!Z^1?@bA&rdlQoztLXKiz5MC=@BTsr?>-rT2s=bv{S&YLuO4FqXAwTC}>uElG#P7nY%$H0_cu;)LvG1A<#3XOi!N?jsXH;9VNngTVJv^Xbc|!u!t3mSHvbhJ>1_I0e~^SE=w2~ z1)68_yf!zL&hw@;At<9PQ(hKGa$(X>7$e@?rneQ{9T6y(9bm-dCyzMU7rwtM#|D2v zyekby$q+7yVbPx+7~;&c-(9!dwl#`-qnQ7{QYEq`#gvWNt5+fGq?d8Byvk=p5KaI` z3~P1L`kJ#5cQ$n|qeGgnywi>?{<2Ojn<59Rci)ODcNcLRJsGQBG`Wt>#HRNAT7VGo zjKH4(U3od?!1XkC?MXugkYP4!(&0|s>69XmyZeh80CNKK{HiLpWpjk;N(dq~ z$4DWy3e8T~Hpe*dQp61Uv8)kWF2AG5JAKyK(;4<&Od4X^2>>c19tOGCqqhxU?*O22 zy-f+C&=|*VliyvXC+Vi{I;LpXySV#1$Mcs?ei?@8p-;LmoP*(D_M1l${?b8_78zg| z&c#CQcAL3cI))?w7$o@g9(+FS>Igehl3@VAaJs7DP8k^SVnc<^$*bta5;HsGvkrdl zS~7DQ&4Vcjc!`pF03VF@C9+uiU&c2G0%;o1XR!5kJOjWbv;NW)0Mzh2e0E|{6MtO* zKt7}f_KJb4%SzkpQM9E{x4Lq4jI_%@MiHEI3Ux3lN$FHN0huU*Z7q_8+7YQ5CNgth z0)Mi&#R$f~n%>lVcBbEyUD`xUCDbA?!oR{8K(C#jat$X23|BQ22C z<8Z7!iUx3HSTNCC89saWC;udxP>!QBsBwu5MNRYVxwKswjb}+M46CiKlu_;jHxqh& zqN{9oK@@od0ML&Lh>e@&o1w*ODu~%4r4rH@YlA#Aj;zb2{i?0M(KAtF?iz^EL3OxEe$ z>$Jq;f+zrdt(OAW+dG}+#ps12VHE6j1AyAGR@5VZPXvHTCV#xy-eJv^1+&?j_6_QjQfj7dxTn>_&3Jm&5U5dSo=-am3rGQsQ_73Zv4A zrL9$V1^PKtsIcawEhRF%P5^XUY!I^c-T1*oTX|BEJCl3>PRrlH!w0gmJuTpsi1HjQ zYth7d+smxc27_HoHo!Yev*_JL?lX6cmwlr{e0RA3_l!+qR+W0izoW?F?Z~d zs4Id%TJtU~B5%y9<(%8kpQ4_BOa|a;fEOs2%OxLATOAreSB5onGVr)$&~%n0ZI|Qb zWc>dXu?G;6ID%fQ%e}XfzkwbV07uX^cKTi^eXtc!SC)l=^>^|0o~XXY9~Zot;7)h7=M35e}D6M zCIH$Kb{6Q$tBlEgE#$o$RLyY;sJmJ18?E`w+<^q18_PPrhyT7ck|O*Vg5W|!IXN) z`r7)yyLuhV7hdXfXBK`PPXHtdg$zrK^O=|UYZ?H2os=XEs5{LG24l)(_2&Tq`opM8 zGd<(`^hkHx_!w#cK<^#KUXJLKaJzF+`~0Je+O*A#bD<=5_D)MhT{Zn|5xaNk)ZK;? z9Z*8@pQ350U$pzl7AX^CCPBhdDJ8rUNGWCS7F6y9gE&&lUkgV)S^hs~;eOBkhE5a@ zTy-ifckoPRNMB!(&EEn}$l(S`3MrZ4v&5hR{v_2?3oRljuPP0>(6U0sDm^{= zYQ!u%Z%_|aC6ZuzM5p2`r$+CRI^i3!E(md8=Jyt(?Gb2@#iZ7Sl&Z-{7)942xn~~J zr$NK8Zz2Q%fK@&MIu9u6ua7z*#5*nVLw`Ve zA&Y?;C(sb65hO-^Gr+bf^6^Wccp)D`nKwJQ)#5e(Q3wJb`eIhoJ|%2J)T3My>t!B< zPMCDs-pHcYug$EWx+oB9*3`+HMb|k|rOcp-{-$y5<7Z#5YXhjf?*jQyn>ur1_WW=7FR~Ei8lg#|k8U=# zlPJmRA!bew1RpGwN)8RP8RtA5fQ4crAPd*Z{dgKZr=>nsVb14FkzO$J8u@`lluq$3 z&2sYLmvi3MBpQPR=v`4Ld3v;Sq66sggY~|I*$)8#WZe<+SZHdc-t4~FmL5f}fdM!6 za>|AZLp6D3F^nMUscYuaUSaTf@+Y($ilr*0zMj%$Tm_9pori2W~H}AcfQ*I zn{grEsq(-_d)Xe`CI4PgxeiXIMwZE4WWH zZAx5%`U?=G)tcPV+hob!aEW%bxFD`@3eH>M99!=4{|{os(WyK~n+ZB+nvt4FiHH>s ziWw1ydk#OR>#DamO~e6+RiBXNWwZlL>uXUP!z?SA8E(*8sz2-w&}2BZ{V{tgy#s3u zQv-uR3$8TKm4-1)f&jn=>^MsOE=z6l=%q_ko&2(Le=j_xEs((u9t6~~l9eg3;v_2q zY6>X~PgrJPI?P)rt!>E!)K(+VI8m0wIqE>uUm}wOFkJ1|6_NL|c;o>l~D}5O(_R3?N+b zfC(B$_~GA#w)=WK2!OE|;gn{vYE(Rbv)H1{LeGXmZr%Z4{36DCDQU{&w*Dhjl460; z1P7%UO{%80KKE{z27qG4D?MNu^WI7YSNK~h0Q7CdEBbcx5*RfvL%?hi47_Jp!{ijDQV0DlKFkSx5PSV7$r9#cJ-e zE9gkpA1A{@+ zn!RZs58!BB#41q6my=Xy4Az)aonxgm(EYFg$OMo8ZBDy}2E8`MD6>wPlU75f#{F#T zAfS?v#MFRW8X;2y&8eU03Sg3jluaw2(sz!|CnjYB#1f>?m~Xu^!g1DD^(YvD^)dHM zk%Th5%%w*$MvGBMR{VLF9p}SQpi&n@oJR!!B^C74I%SQh@=tp?C2myCkL(JZWT7Ie zCqKFd$f7Ux`l*_>bi+JB0dw)LJ8o~BS4T~A!!+mCA4 zN~DMZ(3&4JH-i_at9A`>7=a*&`17vM9nEKdC9GoZgHN@HZL(&cCYjsSiwm4i!KOmx;eo1Hbi@dJZ$4s`+mM<}vscA$Qd z&nIo&t1Ap6F#ve=AD``=eeG>$gmrBiYKfVB6#!^gdN;Q0;_?252mqBBy>?tAM|h{r z8V#^VVE7sK(Q8q;=Hzqs9(wN1?EoaCp(H8glqD>yFbbqJBwsRzhkn(^RMUol$vQX5vw4< z3vZ!u6d}tSW%TdS_KcK#{3?IpDB7M1J}+mFLO>^VBL^cet<`=o-5>C~AaNKPqJ;-u z&ONdsB=ybhj+!LHH~=K+Xyr+s0cMmG&(3x7>?LXyWHktnj z-4zcnEC1=GvZwb-`PkL;GYHU{mB7< zXF09c7L9UdJSM~r&C+RxfXc_=C zPMx({BpQRHlu?hgm73l&D;{uOmd;bES4#~re$Xd}i5v*Zj2xvBhp5&dp`P*sNf+L7 zANj(=>2n9|_n!#>fIBb%;0z;3g5oYGu)fM@cmN=a{2u@`4=-OoYWo890Kh=`ah|T% z;?6ujXp5D`M-WCqsZB{`?|ohSggFKWz$|HP@?MO$@UmiH4_yn|ya0qzbj}O9^kNY=G006n9nOT4DB}uiZ*u1bNEK(w=BQa?H z{@TR$4G$sTsh~ktU-{J)|3E#0e+LVq*f&FURCmARg7TY`(0KS(wAU&?2IGR=7~t5E!ntmU6})(R-(Ny zxTUkuJ!!~y+FVRT0RVcyl#Y$BOgXD1WklOqQUOJ)%hit;y{Em=kkds0WDw6s8V-2F zAJAI5C&N2$?u+D6fRGGN69Z!{0$=BBe`dTX{v!ZD9>N}H^g_^)_)w zQn`+KLXSXuLdC|3`>;Wo{I!e`xC9L;aS3|+(l7kA+*Yl*>547npW11yz1EF9C= zKmYYrmRdQ}gh2jFU13DI>N+5pbPNFOXmybfBZfUF=&VtVT>4Cl)YwsbMZaD%+?zUu z2ACS8i1ZAlG34kYyKU-PUn($)BM4-@o9+uo(>VLSI8{!aoooOVhq8i-`+U?@d&(fZ zIzbI1p!b|zn?`oIkie-yjxTELzaG*@B1UR)Y@_KIPt&FI74+Xo1c=s(?}0Egg}lEG z0IPo-zF`gzd4CiBlP1G6-122X*Lgbg4yYBW3)buU0oHj5IPAsS^l|GfR!omTzj4k zAP@SnsR?;bYQ~M3V+8b$DJXm2IC_}&2@_lA2?J=1xOB46PKT6QMTTh;H>AuL9Wc>D zaZL3873gD=!rTCW@o9ID8MRcK;<^3f(iZ}tX>?1m#oI7Ryfnn=0suA$1KbjQQfV$Fuz-VFuxcBdpuB$(fko*}7G&tk18QDAGf69uIsFEXs4Q?OeMo{_fCI zl^S|0W<%Ef{_b#2WKP9u(+LSUr7Qu#f;{x87NuR<@bHEzHT0JyGGDTuoi%{9iU+-B z74kT8J*nROOy;{pqij9U(XI=}Fn=e`OMeroZ|!%OuQ0}We1y!e5CwuC zj-o}J^?xaK5I0#1pkiQJ3^L#&RZb*+;%xh0E*2D;C@p{(Wy)+D?yZpRIPm8I?UUnm1!0qF$yD1^AzR1HPP6P)>lA`>jH2*5H!Gx_LI*?e`Aj##_NP9fFLmh z^t6G$2L$2O^Mk4u)8W>f*VJHuaK(atlc4VuTNqk;)KSABkxsDK{eAL^z{$e(THM+qVr@==nh!}972v*p9V10{$Kjw`R#QMB6VF}k2Lb6^OAA?wfZE6(yX zgi)tbtgS0;4a@|nq}-baT64(#5di8-?-)TORE1AewEbzgb~saGRt_jKQ+dq+$ z2vQ&SNo74eX4Z)INti_pfF)xDERwO}*z+Wv)`77vf&jonj08l^w!RH-0QXcd$D%Qr z?tH4YztX}au+fEe>MPgqwa@@+8NrYF{#3aM{`o##1~Y=N;Z+nNPZ-{k1#HglU>0=S zIJZz~7Ti@$71JSN@9v4tD*tb99J9@W0sN4d>w6*6cf=PfbSY&5_<2DGm+;W`piReZ zra8(=F>Ck*MJs>xVsPf4t*fhMlv9c<7$B7wva0B-06Im)xg5)Al0oQ$PY;*9h5K^K zDin!3>b9_>34OePgcS0m4-&>XX{-TMCWJs`HeMRyhHwKZ7T_l^dE|YXe4*n{?YRs` z_@AmSbj8}Z$7DN-P&WvlgXBj(Si?Y}-;d~_L1uc(m|O3iM9wpYm|2{gHcYQin9u`; zQRjmP)Wl#K71CF~POz68n7Wy%*2o^>FfkpDrp>=$q3QPK1bRn=4+i7EgC~kQf3cN% zT4F+y22$JvExuG)2fetUDH1IK5<~UYUp{zv&IVCO90`E%zWtm`jKiLj4)3!CLYD>r zjX&Og#_7G;p&Au))IMY{S+jR6@iGPoCK@pS%3M9Mh$hEG$&@k-wJ*=EIF5!~(&c~Y zH94l50025+@ZPrS)ktRECnv_(sheaG1U?egdF;H>4zj+e7UKMd7_ygf&qb{B=KUL6 zuJ<3|LI%T!e$KGP&aT>uO~zuaf>{x26)?S_!Ka#OW5qQj4zo5!IN}UE_IA)6cRE&W zky26NL4mx*rriY^>J(>!9zfKE{`OvplC$juB<&n?9|Lj9Z|;9jA~xjh83B=QtZ%&) zW~}vEARpcflo@&^ku7tyT{}{71Ys1tliw-%yS7*f_*lhZ9k}Bh7Nn#AfQc6i@FIVB zk?~@_*;-P@2nk|Q#+#jpEOm!l4`CZqCkVVuI6TmCCTRV}`@i_x)KXc;%{MstGA7AJGLw&EroT3DYjFx5p{L)b{ULwBLte(HI4pac>iV;6$t1tX5 zqKGJ%#SZ}7lSu!0Z+}BgDy|CGpn~PEUL06{cZMFt9Kj~2f(QW8W2l9KSqOEwI9@MH zn&%CJ!PFIjDcVfZg`Jt?07x>CGa2LRWXWmkiq;MQVq87>VHCs%oNBz<@;ZR*suhEb1yK? zt*oXgiusdNNWR%Yl7tOUCwC`@c-Ly6#5kG_f+EdkcuZ}7DV?`QFj|lE8Yad1KzgRch>6y&IFA1;$R#_pX3X<0yj=-FOHyH_^a}%wR4%&5i1~=AWypFU;g*Lz0pM}cPK%TIE3lW?6ifG-4c2FS@47<6YF8{j!liNvG8WnkP&^QkIUd`;X8_O+O$dhMYK; zRT%B@`K+oU0iVK4bmLssrk)(+f>j1wSF*|mdxG5t2@u=n#N=@4Fm{ri=ala z=j|-5M}vOO%g^Y^OyS#hTdaZRgBTc%Ky;R*>lyEb$^T~bwCBvU27&1+TX!hk%0Wa_DTwCkG* z(i@iR8$ram*$Qbv1&sxuQlfXdBjg)1KM07r!WJcCcH;aYZu9{_PsJOTh(@rzpXc|s zZI2`YK(yHX^gi%lezgzdw#$Xnh4XpkAeWnI~)(Lwb6<* zBP@`v$pfs(remZ&@ zlFq0);P#>kPNKprD&))F&13|YS74gu)#V)}wL6;;nhSuM*4y2Ev%K&Jv=D%jl9zWv zE~~Z_z}0}1KoVbk`1Ggp1zr*ASiV@+&$T}rvG$YX&k^)lq?{u++fkC%Izlv!zr&WW zL_hY~LgzThuHUVDz~<}-0FL4Hnh?pxqcU#LmTHzGT8R!|sU%4U?mwTtp*3wH{UJg4 z0pe5`AOm6MtdIo7^^{+3`H%STqH)hvE1aIHs|!;mYG455X?=LL=0Nj|oWl6un=8g7tTq#$-!4z_r>P_YMdbvAJ(jgzagcgkE zXF{jaT30QN%>hJ!&Ld^2Z`77;91Q?JrRI)`@y{b;#R@pW7Yo9@&E`03mz2~^Rq#wI zb=Zr+mkU{+o;4%^;1`3>9kTZHjJ5${@{zxKQ^TDv|MF-2kw}Uq zE}|r75{DDd)iKOOmOrJK)MRPPJ=p#yJ&GXeI^IzR+Gfxu%fLkY65a1Gh z-g=j80Hp zb{Nt;QPenDPElWZ-d;=1n0-QNJx*@zxg*3xZ)md8S>zb9^?N4Cc*MC_4rFbXk;Xjao>;(XvYO5%wk|>Ijq7{$W zJx|XRjCeJW{17y+-vod05(EHt*a5(#bMS}v?Leo=gUM)X)=swLVsD-H%u*vp@>_gb zl`F)DQ2?Ok*X)1S(|qIFxBW%kMgWTls+>EP7BswB{wb&g&I;v$7iu4h9~3c}YL6VZ_}{NM%gJ zY68f_OlW1F8@Ast761S;8PJ7FFFtp*l zzOa|RD8+W-Q=FS&1kTMe9q*@Y&Peg8FhH?m_m_ofHboRFLM+EL=Rq!KKJG|+g~W94`da- zlo%!J8W}K}bqd6Pz*FiA2cg#9F$fE&jgmQ!|XX&S&!Dr{*(y*oMRq$gb=m5e|S z)tfqRB@OWkTnUi?vjLoqYfOI?YVFU%`x0g7(jTNB5taH`K_?{+-ZI|dL00z6a~~uN zAV!+)d#gI@0SLd1Z)Ub#f;s^J){QuDLwKT2Xyu1;|Ec%QO>v=t06_=@jp_5c?N6FK z&zBy%TdN2l_tQ17$h>!YTI9cbEFbu2r?7S^LcRC$U4GbE~lF!O$w;>~Vgrdfx1D&$SQ_ zE`Tg}>@|-UvzV3O`k>HGNH^yR9vrLgm3OP1@w7SJO<`g=^D0Dr^U7NP!VjeJ6c1`r zp5nPY`y1QJwQg9*(r|?>ZwLcr#6U;8T%05tCXaB>7w z`lVa*bq#G6TDe)o_j-+6c;Q(jAd7pJ=KkR_&aBERCIss^m|rI@xu$~| zi7GfXo7DjtA%z5Y5DcDH)P1qr0@DUH*ae1pWdFSDOGn`rkk(EhK!~Q~wOyZFj%oRV zWTN7^dcwRTJu8WN<(9TbGgEnAq=XT$)cO7L2xr^rtp}yFKN)3z6i^2Ma6ryWLw=d= zj3}+DFhs+J&Io#M_jGL`#&DtNWAei&NLH+RYwlR89ngF<69AsDm=OSCBo-BQ4^Gwd z2$K;s5TjY3)7I-#HhHwcA>V%OkcV8_s%QfHNHYUGMnUhj#((Wh)p|}nTVeFLME=Lh zrGWQBFGS4Hd$xK~&AbU$$)tOVSLQh~57{GK9FGt8$V!1a$>E`=v0E6Q(;r>zJ_~H~9rH+iq=aaOft!lH{enVIWa^jj_ z2des7Eb!H!00w5=o@G3JzAZRJ$n zQ^1?QZLA}|3FaTj8r8c2fcz0XwPqfN{uR|bX;GS~@@Z*>6Uct@e?Ie|b^~*^2_TS! zV*9~Ycb(Vga<(6BlY|CHv=ihn@EHV+l7S^OXqlzt#MPy>O&QWO5S?Alvmuh8^e=zV zq#1`J2!N}{o%0YGtS3;_7y>VDZjm)W6K187fp2AKAgKG|elg4rY$ z4UF*o!uUw6M4)Dym?fz2)+10KV>T{xHnfq9Mm+4LjnEz;cqWK)ctw+9woT~~XoM;A zS9b0Pfuy3#y4g%KfL9axiwc@#>7?{(W9u{ACcglr9&@R}$6Utu>Fh754r+B$j}X7^ zQGac}DXz*n4FF86EiyOO(?uhxBI*MPdgnOK2NKA5BZOm2OS;lKTwFN6X&ih;S)x zAx6I)lzNjw9I_<{;?yRw_x*fYLPo<(4d1;A}i$ zqS<7|8+PV_m4bed@{WWQF2(7C9P18U)9d+e&;khL(Anj$-gM|j_Bxtrw-^gJ4glBMQdHllM{#)|0FD26*~qb4JUdzU;A&gza8EQw!!gZYjmY!wct`$=ezD$B zaNV<`$~4m6o4@WDZ)HqZGTS6@p?cXWKlF~r3jX>%rBhf@X4Z_-MhYtZybBDEbMefd zj?}x-Zh8V~^<*fFfK%G!97YDIpw~G!>N^U;yU`z|9i=m+`$4r{(g-$BX`uLnav;KG z$7gGey5&9q9p#7KAFjw2k?ZPtRyDMx?Xr6!m3i%Xi(Z9}EOvOBRHC z3s`C9TW6=;gFYJcH1M*7iK}7J_gZFhgz~&?DZQ0jG9118f$`tve;zQ$#r1l^;aYDn zFc_4tT_qjGje;pv0MhnfREgxhHerx$l$hajlxFhxaq?Rr_LN-yG;a>XL|;$8#ZkxC zm0CG7{D3;ji8{(VH)+_(b^#ugA0}C+av5XLF<@8q)_UKryi=R71CZSHUVD$^7T^7? z&CKwK7)GUEU(zK4JR&SrOtwqsMAw(lJA+<$i^7p;jK_Gl^tL`{VH(p*_cmYVG)Bcx zF2jAhXBaJdMs%Sy$ZI(cDFD>DVJ(20-T?rkO-KLhG=}qyFZIA?6tNe*lgUM|BndR` zSbk#Di+a{&q;g0A@5v9nA5Qa+NBe^!H+2DQNC5ziGyI;?Yy8i%ySAC20Z5Ux5vODg1Tp(;NV!wRHGt`B97Wf+~ z=Yet)C6e>N+^;9lhFZ!=Rxl;>y0~bJ)9Zz=r&qil{j)t`p>usK(&6$Z=1yE~IkYg3 z7O9)8`iRp2h~BZ`mA7wury{DJ=Aq6%u0+r{mjpW|EN#h?3oqBX-YqTxaF&^6UDMc9 zm}gV#V=Ba5{wHX!*grw=%=bIqcj~U1Yu%;hWI}Qv!?}e&f#ZZ3@Pio}`T1v)^@V9y zVFaM@;LTByXpAMA54V)^XFi3LQIr-Oi@m>n!Mbl`dItc#?);ec}*58>bvG#lJDWCJ8d|?J71Nxip(C9ny^t_4)b0vC%=_Tc9|P%Epd< znOiSu>`A=E-v{tXEe(Q%I4gMgXrB&PZW#`db`CI&SV}&Aycng!zVT(<`+&?1omm;o zVs`Kc)W~>Kp@GY+aDHld+1g)hg=qkNxMinC-Wi&N&vV%TA>AM%e%|3IKY?1QETX5-a)SQ=1fu@u5V9IZ|S}juPW(_Q?I6dNyWg2LO%ns3vKz zRq7ktoJk7nrPQ-N^<>^D-$!-`q$#JD_`g@^GJYH5`R&fA9y<4yadH=|5~TD=;RdOz zHPcjDH+^8FdYQ+i`3Xx{S3bsOE|h%+}$vege#(D;RTRaGH{t_TyLgEW8V zn6C8Q1OX6Yj-LtV&zL!`MG^p#@cCqrggUi+C2Pyq(7zyHGuT98g$E0%`qh~h0F=mP`SxjTDW&AMi^GGyCOpGd9 zIj$Dbvks#Ag^;QRtZxCiX_5dg>hoPx7}djcH?`UgV2cYvB=2fS;oiG-v*S4#Oa4{rh+08kQqU5qLoEl_|;$`}^9BVJm2ihCRoA7=?y|hi0ny z)1cS&>56~_W-yhWFj$3CjtAW%wancWlP-!m?eS|`C)Fgli+=rtLj+NZ4<#W(M4Ho8 zwb{C-VF7^I-Vp|nxRzM5HwpOXBdc@~ zRvZA~>MgX*)!S(ocE^43OOFUqw;UAhT~e6#y3eB!0AQ<|0?|+GjUPH*=PK6#2{0su zIV8a+zNis&_XDCPfLl?BY&>b1_dA~rUjX3zoU=$D-nQ~Fnb!88mnwp@OP>0bx;)>++Zht}0GJoFplxZ$cX&5ymlz?5W*yhKvKm0((&DnmTg0gd#@(v{;PbS#13Ww#Si=O@h*!*VMWbmm(f&CAuq4kQPA< zW;}3@eAhJVYMmU7h_?%nn%9bKH#Md0+w{I2GD{^d0`Pe0_AG%W%ZN8tH19XUw$FmT zR7FXhkfERp?ESo`Roq!gkBVQ(PL?F6iWs8br;M8wN~#$)q&(uMLLn_OpX$*aeE`rza}7ji8Wh{KgDxYC00;^Iyd(V0Zym99BB{p$cxLlS!09-pE8#3W1r&=`@OjXOQJULSFH2ElAg*=B>uXO-V<`2`f| z>7v?9D~}s<(ZFC(g&gs1#;FT}f&p>T8v$FSCMl}Osytzd!+eXqFC1+LmUG>YixY%p zIVuprnx;P>*ED|<0f2t5-MHwFANvRE5msGjDu;9HpKF~MX#s%B0jBRVZ=U){o#{*4 zSI7rJ!GOsTkNm~kJD|*9@!qbM&yHWrhZ&>_z-T7In5n}Dx7%uInS5APq=gtpiOF9* zb6Gy6s3y(i!-8UKY83By$%p@K)}t7S^%K=XVld2L0SrEM-9HHt6by*{^|n0JZV6kOF_jN&8C=SVpgdL7_3qgbzN^8Cjl|yWPZv#-^Ax= zI|P9TT`4(`#1n4K23_|b0RWDmuj!3THd#-r*5qb3Kt})Ve%R;_!e<`(p7k{?fu{!8wru z)11hp`f9!HzO-Bbw#tw6w_4l9@xY0#j%zb9c7;!B7Zb7w;5KKzvO!^pBLF}i^a0>6 z+NJa7A(uEi0Wd%+?ybW??@fu9IwD15eD@g+h4gS!e)u?GK+IkT8y;=buiKOg7fi?w zT(F7D!z#R`4}=-N2_8KdSaWF}ot)ewjIaa^1cn!T zPEa9xBQt(xmmOmaeFfB;yZ<{xiM>+hX8 z{Nn%sZwJ=uw0D-@xmyQ7n-50)r<3M8BVhC9?C8UGu3@Uc2;HTwyc{4)OKbY=40<2W z9t9xqfp3-3_KNPTqW#B|ij>mb{O)PjZ*Lr{SR>~#z1V7c?_rm@UPwxk=Z@C42}$^J zHk@s?+JL3Q?Y~}L8>I12f~Y(K5`DW*^I(qxJ}BPpUEcB-Z?`3@)`vX`neUo3i8IrK zKJxUp>SP0GFD8!_5Ri3e+~?kHu7;IP*vvC<^t7a9JTZ>62*BsInN$%tm{ixjKF&Xu z;X~3X0wf8b3hy74SUWE?z+C!^@oqwY_x^4hz|h293e30G1g0Tl&4?y6EzX%w?aY}a zYQGL3K^+(~RxD%BEztlGCKwzH?09L1e=5{KfV77;{5hX(Mif6m0Bo(W$UDm1G@s8S zLLe`V6sR;I?3mKoGJlavM;T+N{ERX|bLY%)d5&os7i_6jgTiRCfLSE=2r;g0Ard3vf$oaD*8TC zAsy2U^8gi+rb^77hsHK-92x}D9*9K;M)D$0+Y?Q7&1?jKk;o5riW#cCkmJ#!=R-AL?1JUxG2_il0}jzEzdEN*fRwmoAGyLUb6P+?4Z&4bYa_IFdrurxq^5$#sG540_rYJwZW zB~l)UyR{nYe#|4@40z2d(ar%pQrl&{OmS74mtXeBF3zvc0V!ojayMa4Emu9wfUu5}ud&>sSWSyT4yVpnOCFgXtZkYt=cCi>rz2b@XT@rr*q z@imab%onJkw3Kpqn^Qq(nNz{1Nv8VOTlj<(N6{0tAL{vhrxzpWZ(ik{ao$lJGSb7` znQRAQP%bGX?Nuvrs zR3t$(69SfuTWTj50(vQ(=*^cuc3H>zjpp$lN2`G4t{T@j>f*e1&K0Z2XCwWc2mmsk zvcz&HNg`xsDt%L%x;+9N39}vA)(3@`*zpNWLV*|o*1K7j_cV7Yn z5FatwtH{&gGjFFFnjfRcA7msNB%%lna^<;?ZADVV08jwfa$}V+@>FS?9|H9EA@l|1 zF5Qyb2B`t`ckn=eU%Gpaf8nA(#-R60M|{1-->G_8lNhs@5z}|1zg=w>>m}3L3rjaV z;V-3ua>S~rSyYN1`|3i+u09#^SRchRW&*(2fFXiuF7PEC{jFA<0UT2#3Ba4SE??5X zU#$AsdeNch z`tek@S95=3#0%(j+vX|c;?v7$XKUxyHlJ4-;kE#91f6^eK6>J>$bW6kdpz{MXgv;R zOa+f+lWDzhbi4Xmf6aGOVHB^)K}yIW9dCVT2RX(p0C27S$#sd@5(o4`1|{ZGRda^wAMoc%1Z!d1t9?M(Au_sZGas|D%ErZJPjUht?#R_XcQC|uhm3GjMxX`gusXR=4J{>OHZSC{w9^6t zZvoLdZ&D$K-TShJe?B1y0KB4sN2~y-knMz4p79s`QXE$MD6#K%7uRGNfPVN5d=QXw z@MLZNW|bW4K46@$Vs`cFVdI?@>rAy5yQ!aGuqy}yjCkX=%@;$h1_pyR{j_1DEJLkOEyq`2J=sUdV5vC6Staz*FgN3L3(<|4%+)>5f^lJr}#wD;N>1#M- zUH`bVO_n&KGfFl2vz%0_3j*YYn=4yh#roZhdHOEDd*d4<27^JmmRy(b7HP9Fi(=mh zW6Wd_2Ir3b-%IGP`Su~U2&&YvR+i0rU40>>i2P1S+0Ix1ci?*bn(7m@hnf(pf#64j z(*I&j&rOIWC?EiDl=$CT3mPVB0)WOSq)F0%{mblyGLf*OqqBj=AcYT&_lylXWX#4~ zv=@_iKB0{otaiQpcHm=URUCL19@f;(VK=4)AC$k)5b*#a=Z#s9yrXlZ`(Xu`$7Zo5 ze5$pl(9aW>+);*^T+ThRB7$GGfy1+@JXzkkgV#?=bw~)GZ7k9@jk9LAKFva%SKN#8 zSW5wkD55bEK(Hw;ktE39(IyX#HHdm3;9g$q?z=I_TWo@ykA<8hqIJ-(Ny<_xLdPjX5&*%C z58qC$vy^H4m-sOn;|rLeA7&l1)v8QQ<41wUcv6ncezYm*y$hNFG>Q@sz3X!hpa1%s zHa6FH!6;3jP9nEX#4V5gWgcrKxsd^l5rZ%idKato$cac-U8gMff-nIO15eyyk)HI= zsNY!^`9@h7A*GCjZ@E#NT`nYWZ0Aac0&(xba1?+5KxIw9?Z2!-%rK2n(D=YR%^dlo zo?6rGTP>lI&Y2+e4yOmx9p#rq{yjcWP-?Sy=jVC)Z4UPp9X~L6q9Bf>_{g>=loY{0 zfH1EjsQcShY`*|`8Uz4V&j?6bOIBm@1cCA6X}HH1nGM<71`uUZFh_K*4}9m-6eFYrGPppmFOh zF^<&mnBC{G>umc%vWIRYJ~)kMeYD!M+)S;k4N_xUxHFHQwdMYt`GrnfMuGLDA*>jH z4r$7G31<9)zirE4Z#nNx&%n_%81u$)zMC5 zG)+)2Aofs=J?S=O@l3zd_USf{($3)#y(Veo z=8hLz2UR+=eWTu~ca=F#f&>Q73-y1)0mD_ zWWgTqpxKvy-qE?-oe!aBOr9jvT5rL7t1tZy+i?lX(;zSl%@feR+gj~?h9pkW?njhx zmTQnzfBD(^%%vgexC}E=;k9gxsXA;;CKS!ZwG-?~@jl0*O+ z<69OK>Ew5E+fst%qH%xu^OUqknOy-UA^#8Z1oF7ObfwaW+{$v@W7MHK2$1R>8To!r zMLiF9*AxA~!N3CV*U={LN-`J-5XugcI{N4FT9R&-(jWj(1rbp1!~q@nj3gl(H17V+ z+z2+FwY&WLZ3k1YGIJKxirW0di2dS`#KOg{anedIO z<R!N6cp#p^ru+OM0@G$+8aZbNN51& z<}wtPYYNE^qbuvj)m#~;K{32dEg5vcj^P%u73Q$0M@Oz&;wQ* z@i=ZAivtu84u9|z(u;W3V`Z+%YY;|>>N%?-0jCSa#?=o2XxuXPvr1@;inaBwskVM# z@@3W24q1D(_mtV8+9wo|k5-=K zEw6Q`mdKVGM7&6178}b%-w`naT*v0M_3X#hHX6Sr5sn|t6nr#4n)%)Fd)ntqhr_`D z0L>#l-%_c4ist^$d80DzBfmpJcNHl~&dT2dV)T}2-<*&|TdZ4-Xb=D;Qr3tpADzwF z2s%HqtR}~GV*=0^l0joITc&>(9h^;LN`|}lXuM^7F?)%M^uzG*^=24hfc|Kbll;JG zozvZk0LURI7?7;3b+XWq1OOW6k2l+6w%4WcTC?ul1ifT-gju_5N09yjYd+BCV92Q-Xe@tt3-IYnT9++c69zfdEJ|6Y6?4J0I^hdqo4>O%MXG z{=80X8VR1tVsfwirFC$?ozVb@G8T>hSeY<#-=ZVVm;MgCl}jtjjX!AIU5YM{)kFS7 zzThZid`j#Tz0&8FLBYUa(AXZ^^<>K}gEYtmn04u8k(0GAxFsF{n4^PvDG{Ax7iK|T zJ>t{qfT&sNV}|HSCBXzH%Cf+T{d2c68zUi(%n&pl8> z5VnNhm7(FTjOO}wMw9Jn>_~#4{lNI|8o04Zdc6^CLJ&yhsKKB*=d4pW#sUZeK;Lv2 z`{-TU`zZGA5_>2NJ>R%-sEVyr0{TiQ?JvD!1o$^+&3%{e(dpQbbX52-BN!`wYk1IM zQ)%Z&?2P;cy~`mK&ul&^JX~9WG0Jc$N7=hvrT2_7X6Gt@`fG?$(qx2T&txJ$Xrf0j zdiYHw^tF)Vm!+C*i{~F_?@E0V~uD2 zKGRZMfP4tRRk&H{4_8a^j^NQdbisM zfFJ<$J3D<-zqHMsV*W3%xuSUTJTpPO?AkC*DXZV6;-P=6|1661x!4LZHxnVyz7RNQ zUw_uD=I<+~Wvhb#!F$KsM&90R^TF_nSECdUo?faIN@mZm2*9&UW(0HJWqF&anrTx~ z6%{%lR`@zk58rE=%)dg77KcJ(6l<*Rjy&(9nKg-Yh!~-w-IM>J)jrn=AkJqZPCr1I zHrBGNF$=sz#L|h63PE8X9ez_w$6Xh}2zrne8jdEa(dRt^B5F?NseWD(XD zo^5)|o*Pp3wN)V_7%$^~oHmoc*R_znCNivN&(ZJwVk?UyJdti$YT%h4Bu|jExX+8w z0FLl#?TJn?gM*lZ{`yKw$hap)_+E{I=)n}7{@aV1592rh@pK*d;6<@ZwUXOpQLIeQ zdxtEIWO`0rIgMVua2F(?v~H3lpo5wX)_T=jpQG{pjSi0pL0SM{Y5%hqu}<0Lijr1QhW{-4{uGjIU_|4k`c z!zhqH!^-3PE&RhHL1dbM+*97MESNZ^|HeG3CyG}MM_^`h=9~}r+N02 z^Upv0NyA$u1n3ctp2%hcC@H*C0y1&r`DFR$j(M-x614qI#(Sy)1(Pe%U-*YU{-*Jt zAW4p_H9G)^cIEU1w#9OU6>7$Oa@^;EnAEZSio`KC{Tjf6G2x?LPQi!~cAxUOq6J-G z1d?>GVrqw^zuTv-Fn3o)9f(a30{~7$1BB<%C%zmXKQtfAoaZX1@`}X^w-RdKHa>w- zSY(w;vB}%YUvjUE&A8~xv8g*!l%V#*9+Q+z&OyfG@+XuD&C@7v_S>YlzRkSDuY+Ll z!fzJZ(+4zw6obLRz`Fx}&}FxgrUnLsZj4H(*MW?12nq%aj7sJoVNQvm785c7fWEl2 z*5ZqL{-sgn48|%1<9TMw|61FYO~0XX56&OvC>MF~;P)Tv)npU6W5oYyq|&>$C=qhj zSzGzN&gGH6Rkp2xk^V>Nc7oUsEnEBknpzumq&JyXzY2l$Myrlf-qG2Hg($*$O$vIP ziBeh`*p0)A(%GX`oZX-eHd=p!#a^%dXDdwu zc(DcXi*LvL)jPQ+$r#>1F(4`qyTDvc`YhQJJJNFm0E`Zd9sLzegedwpOFK0b<_f3Qbrvuh2ZdH(6`i@G(RHoE;-$@lB#btIF7n)1LSW#CfqRI8ns9 zyiTNqcwhf9lMN#C1Of2Xlu=G11t4`e8}q>H z5A-^iH?6hi6`wcx5u^Ib?1do}4>__>r!n5QC4=jdPXRYg>M*yH{=!{z^OFCPm)WLfqTQZGR3NpREc+iU?)WO}r zd>hNLo%&32bnxe|({wI0I=Cj~D(whyiFWism5*!*L95WgY?*R85)uO>A38Q2FQ4D8 zd7A^kroSTB^42EXTqw1F zMVYX#a`N*N_pY@|wA9?=pU~5YK!rM2{*Ghbe&C*Sw&@q>%Z1bC5{Xs#S#_sFqx=H} zZoM17F|NGzr=?mDCVt^|HA#BW@V*yW`XBPSa0Gq;;0U z80~T9f_LlY#qXu3sy11?j3*Z00ftU59hwg@0LKDw_JZE|@$`ANLMd91HCEDtYsq2W zt0}J~eQu8+?Hq>#0FC2M{3n9%0u;$RRx|A$V}X=1$`2z^w0fN?^WBm<1{e#b$*<`D zb>x?iKaD`;ljm?!d%8_O!L{W^LJ~)SpK#VNc2j-Z8#M?yQSDH8Gq#pETViYs1u20<0Xa_#(;YC1ccp-(0 zTRjTy(T&|h8_+{7iSoJ#&?R4;AKLmC0s6W!7zRl&@lP)Iw!MxdA)LZA(0lo(GF6hr ztxku7K0r$y;0|puY0TJ*^%7Rm>5h)ld>AJph~IetSp+p);`6l+Fi#Lj+rD?NGYa@v zws@y);?xBI3^#gLwbb6mwi9Vybg;%&K36BRChcMKqDKJ;WTm_~-g_LVOQR2Mve1Bh zz|0}Bk%7WSoBPwrx%{U@;D`Q~5YssFj5>2?+NrJPiGRThE$!sfFT z@9VJX0!EAM$0+&huru$_dR-~FOZ-2odIYYDNRGGRPGoFohkr1N#$a^Z{D%>pV~aX3 zqAV*_P6uO`QQUEa{m`88(KEMaS;jdTt9y3oCg4(Fb_p*_vw5&nx)#rr#I{UCKLS9` z{fKoDGamfuT%R8G)=1shRX-Y&l+tq&cueNonOQ5zH7+zp79{{nP|R;Jb@FLu-7rZ2 z4)wvLLDFxx>P7MzY45Xt>Tquu#wY**kTlCy4^S{?f7=w$D@Q?Nk|uxk!ph*2)_J5d z&Zjao=z{dJMt+F1$3!{k2x8`hCI9f5dR3`hxX8g8Rd)~!exu7=eYDg4xI9KbB%P!a zg}o<#8nR8r@a_5G+9=&qcS8l>HI`#k6#tg-Yqa=X<&IV6{!fDcyh}W3!mq?_{6hR1 zIS};YTr^Wz?MC5tJp~&>W0IjSLpS>@CT`C$isltvl6W+y34dFgyGt_~GYH5)-s0nu z;o<&0Gh&Y}JJq>hfXZgu|K8Mj!Su{Xhos2q+@_kF;xhQN_%nN+J9eyByMFV_thi1z zOlW4~tl#YLK2!PA*7|YDxT3;}-inWNvkG!XWA>c3#E;$$ia2+k(0H7vo27y_-**?x zjZ5>J(layu=%VK$St3*!7#3F=YbDrH-RPNC*RlCwn?Xdj5kgBTIeEgx1^G|jDeB_u z=f{oA0HE;)@(XxRWv)h)Yxst)SX@mKfX1~ZZHYi*sC~>RpUXmMOxmYk%H++anq?Yl zCpd@@jmrecSX_LmcOPa?sz)}X7#fY=kiTS>zju(o)3_iZ8dsL8+w3VnM!6=kr*zhL z{xy=!mTB?6j&5$y9VLjrWMP43AiaB~%=kCj=n&!NEda>FfUe`cTM<#u(%L+Ll$&7b2jb-0suNk`^5PJA6>dp zuKbm=nn~9h(U=A%Yaot+VVXE3e6(#~(k={*v28U#2sa=@&WMUj;~ruIXoi3Zz!^@u z;P&~y*z`jp06^yWcHK64f67>hs!EVAC7- zGO7D+?%f`a9NYn@f?p6^FMHPP7Fd(5!NI_qyVB`(8FzXgJZdl~cl9@P4mMT+Az?HC zFw-S@NnThVkTi;>B@aq{*9-IW7X*EX2?ZfYLa*;8m|yYv@o7#4w&)k1yI12SY8(BS z$dR-100RrE7BOb>7JC6lCxQ5^LIqj>T0#o`7D zG^YFVQ!co6pKjcexIqGqi;31U%DO9;=-@oukZIcc4{grwY85~X`&e(~RnEzSd_E6^ z#<@j?BuP(({vB5=ZeRugGJih2O2x>Gs{-b{Lo@0=%`!$BLRm;ESfS$MBRC+!O^ksD zD%j$Lg$4sLTJrOYJy42DuW6HT4Nijq$eMJx2l%I139V%Vh?3%!Mh6QWeC~ZG(F|*Q zP+O>*XfOf*=w1HjHJ<(GiRQtb+@bMU`LXvwbEikL_pl8mv|F0q0YLA2{+(hP7ipuN z-!y(Tu+mmK^Tw#?lIa|}KUh0hE6j~Iwo5bW9FYb?T;3juwGdpNCIG#^oL$>#j9K}*b%nHfn8sWtOI*TKtO zn?%otq}NKq0}PV%=N_}q*~;yIVU#YmjF<@u23+ZzNNe1X1OOU$SeGP{y)Pd4n_c?} zHI8&RA;qc!ZRuvJq*~*~_;BWim%nb-Q%R;QGwIo z1mjIG!m7NfO~CbG0Q52hDq^Ok#Km*!nB+1F0L@@=*sBp($j5qc-;VEUMqLG=F|#~K zVM*}E>#1}&an(OTlJ_iWWoS2(qs?Eew7pC^4!fip>+*T-l^=B&l3b*Q3=rjNJXk5 z_{6N_x?BsqqT&M%2F@L6-Qfwmq9Q;FM6YY_{>a)Oc69?D3kiP|3do|Fq-dKhu0Ko^ zWzuFKuyxaREX*^h_WlXu~oj1b|_Ikyh<$}2lQiq=slEzB}mp>F)#@ws+ znx_+cS;vtk%Sh;;d#CRrv%a?8*~y5rvxGT~y?@LMHzn9cxxqN64 z0N7)oomHJ?y_oIV83AZqXj2x?D8Kr;d0b~gV@e3ej47egjR(hV{6HF0S?C$cLbRUx za|s=-UAkjMD%eG0?~p$~R5Sb2Cff5{x(RTlVj3UI*;}tcx{b$cyHU$*n_35L{Xvsc zgcQ)dU;Yv3-CNQ77=|&0Peq9uL~ZZ9FYN3VOzY2-1{MB^%Ax_()vXv?6Fl0%dLFzm@cJ^xHFx3Aqh z8NMdN6cSqKO*-_Y&Hb;A0`8tNMnL0t1Oy)Rd?0FcdYyw^2O$8Br5rGZ_HH(NK7$5m z93}TR!0>Q%W^@wf9yuGsmB9n+0@$ z#^+>uWnK<29}1}Tyrq_qTSEXqH^d_{tgNmqNf_5z&^TJv&?0}YLaEh#l@_Pl`)eW{ zkOgVU|EeU6A1@kC-fh`%9s1l-42}Inm?HdbTPk8>VQ7qAFE?B5^oo}QRzFIrH+M=p zX=a9a6&gbI*qg-gaTY87 z8+qmmzLUS3TSqXH^$1`OqD}t<@x~r6g|ptQB!be4j%i(XAi~-IFT`^cv0lU9(Q!<; zW!@X|Ck4P-kzPsmMYaX4YLxRZ?D7U1u^;6 zSLm%slUlcIuFxwXBg`vXSr>Y2)bdz~+|nMe#` zwv0m^^n(n0pLeYlq2#U*v!E~{jPq-Qp$#+WIB#l$_A*E&;MyzY^JlS-5YD(iFi5lx zV%XKc@&{T!T&Ayo@aM`Q=OzlnI{_dby=$u%>#={m<8uZ*Lv zu#!3^t(YGC$~({BPwR2S4ulJ_P5XA0V(-B1uCZYZTcwabA+P0gix8=wTZE|dvWgqRP6A?@G72G@@?Xv3Ten~M zxkVC*>BAFxW%KMGmC4HIo^uCGVy;Z!R1Q92h(hC^wF_J}U}%s|g|s&NXxmBFx~uCf zY@K=So0|2#g%Yqb>xcQ#tk8su&m8WbReJA@FQZw(1qJk5eWO>w^2fAg8oveaAf_q9 zI$`%1>~B>vyJDnu0)S0AmXOD~b@C%zT>1y~fURZ;f+@V5`yn52^vS0*TP}d6u>bVC zHRz7{{(jJ9iz4Nq+dXK$BVG5oD%I+c{a+fM8-q;qcEQY{amFjtm57+0;sk*dIR=wb3U6AkdK<<12=;S^{THd3wx=oigoGJcg`y3zS&U}{1FYo1x1W3IzG!0B zayU7`TCQXAMbX5}#px$LP!kuY^shI%>dwqgC2#hkJp~CH*D4LG(dn~&HR3+{zG}{% zdGz2+$$vx5I*_nwY+Itv^rXscV-UU^h&e9?H}l)pt{=mJ4y83FjgYb^CK37JXZd=~ zS7{qDaY%!pNximN?XNvywG&{}Zcl3+8@%5YA>0$hPO z^QdPhNF0NjI`?H+#_p;<@g+A+gU z8j(NquVDRI-;y5=y7EWM6;yRa%|cldFWn4_@vyA=GMo$6H-pG4rWdF=aET__{g9Y^ z)h#y_$%a5&9%&W>ye3aQ5lJmExCQb*M$6xj5Ln~dN%xW&bEui0IbfMo13~bc^M1Nsi?N&tv6^!v*{xm@XP(Xc`n zMko})HngY#Q=cp*fYlq$E9F1=SHZoKa8rApDNF#UA^>Jnv0Q&~BUhnM!&4RjFvp?U zXjgqEdnauPW(ER4wisIk30rOH5swZBpV2Vx0mW$C}eL@y$6BCA8=l-G4>V&20>Nxme$J? z#@;k22uSSUe9y_)8v!83_aj+(hTI$hJgY<-C>URqVX}nu7%`uGc!b^rH~J#T>dVaQ z5H;8L{z=b^jNN66^+LNtJYbF0DbE$x?!eZfm>VFkESBGc122(sw4Q1jNof!O2wO~b z6SFz@j~hu50OEXQi~H-r%iquD){0`E9!p9>{)zu@PG)l582ne4`5Xe`WDzU96NBce z&$*11!(z=LQc5M}O(_Z9pYH$FVYSXHMy&6OWCGh@zN57qG2Im_#?T{{t}$SJhkE_> zfxQDn7Z86SC=MF$QPM2_Ei%|;2d%#?|Ds7?en;7dUd$4qc*J01*1X@U|8#Avcm8MA zGUx3~bC7O

VEu-$n@H9i;bW`BeuwV+I6t5q8i6PK^AReZAMil5&eZKZ&1q-OLMf05M*u#>W9E&WeLF`|n>h z{${Gq8)jVwAd0j1{^Oo?VjC&)B}Nd#&>j?}fhBEhcjji-reOJ}W#;eogts0E|1Ft# z!L@yaOSF#7wS!W~0MtrE%bFHb0-ANB7QgGSbeIW96c{Wb`4IShw<-Fy4Ko1=0)wF5 zul94L2CF5Al7k=^0UN$mN{`KIeyAvkdcjr#&HV99hr`JSJ-|%nNEccdG#!Lbj;rS* zW%b8i%ycfP24ds$!8?am&{w8fX$E@_0-NOdHd>k*7zADYZmla#xHMS>@r4sB{4=JT zo(@pS;Kly1hlwFWskgd8~4zhJf2CN{%^3IBP|L(1c4d1yX|Iux6ofPxOk4xsdGDpiG zj*`edyZ#Fg@;y~mQ}wXQ$VKRs+3daqB*IOACTBZ`c?L0g##X&ebDlgXI-z>WT@PW)>jR(cm%9z;5 zTS@u%=}y}E%=!U{IY_;Z#i4@HU;(CnDCV|+fP zj{vI3EcgF5saW-0Nxi3DB_5`X29OMB)~MoH*wz?%M6+lFKmepQxC%O_NOFPAK zLHxn`WBxa3o83MfJy_Thi19T9n#Qlw0=J4#l=$`y;}1eOlSAF&>s`as0GbE1%`pDl zVCVV*V;&eRdZ6=T7R6e0%z$^?!GdQ17RLbiY?$iFp9y}psDT!1rFaxY0D_qQZA5Fg zXG`_otK+GeS!s{~*oB>6bFX&Ig91P=G?D+k)x|HyUuYkAyM@Z*7*5?O=S7YgZTDAs zerg&WqbxhHr3GE6k6jhfabk) zY`;YM_kBnHNg9wx_zALm^36nT`s9qN{iH1O$i%v9+_Bvl!w9bW|*aJcjdsw)7 znAVNS8|Z<=+!I38*k|bRXj4aI=LR?G4Qy~@@%E{$5#PQ+>pFMHUW;e$=;8GCE4o%P zOREHU3YDH9J;YoFh@~R~bsjwsy-**x9324kGHUYA+T`t^0YK{&c8pA5#opt^mYOAN zjNGn5sf_I^v>e~2m1~SJi>IYX;Vww;{cZhSkgLxngah-3LQL7C&ZDA=ZfvJ{Hf$^v zVw!<;`T?W))b$hGGh*<* zATS7;oqMMCK4YaCWB_(NTMj#Kc3QwSiGUmr9EWUmy);8d5Oc~7J;0~27|=!*((&2o zDDX?K&D3ib=F~L6r347puGC7X!Gq90P1x@GgwS~cV9O6adBZ!M0P{GXtgqgrG)hFv zj8Ppk*7pyat@^E0IBI~Hm(<{fRVEk=o;AqY@6WqY11xor0bk7QE3jtY<8Q@nvF+$;3ohC4ePX37_Ygua~XOy9vt$0CD0B zTtdS=-m3F|QP=ao2Ko-vgV^_V`A?%`#w7m~RkYlr2yKzzP%L>BkP~a>sZU0D7PZwjAi0 z2R;c8lmKWmW092JY6t8+^S%c(vEhA%3R>5PZTGino*&uEJCFEVWNDlHH8_1xMTZkMp5<+wi=C{S%Zn`8Uz3)0X&&fxzri0SyTPZ zl3rk$bEV6(@{?=M@~eLx-kf{?r}taT`~*OjjfOSrC_lzE(zb6{10b6;OKE{MYWVeS zg|yO)?E^q!c{|BJ{296%1N`@w2S2IhN1Ly#K`p1oV9^5QyIgAx3m|;QlAxI{ zJgMs*w-3zDi9*fy7MGpWq60QF&?9t9N@aCsG^+d#z>0WgMU|EB&cP^_FkM*Ho?*JCtn8l9=S2BOD z#czX%1_G3(QYs(Ry2G__J)&6!V8`+VFNk0o(DG~Nu1f24=!L>~pc9z845k+e#BQ2x# z4HNe#zy-kj{MJ8d(=pW=SScXxJSGOf#E#Ck@Sgj0b!^!I0IlOIlqAmgYoa?)M$0lX z{lbAv0OX(A1Z-WkPOl5w)&U3-Po8<(^?MGKwf7&H&UlLfD0;vAC51as5?7c0(ek;L z@A$7=tQ}TH2W?YNK`QHG#N{4+#vkPD#VtLJ-7?SJnvVx9yN?JB%U#z)^4(31@oHJF0&)po_|?Z6@i(4RcPH;|ewa zu$~_O)Z#sT%+p-+83hJV@0w-*vY2MuMoi5%K>C*UTwi3>nb)Ova>0MwWzxuq zv-e~V#GT(Q<;AEgS1whZ-0wYi?}3tp$@EQC|hVGrli`=sWgb@Ue1 z0D9Npab-GaHB^q*z2k`6&!R^ZrMN%T_8wPz=l1d568*WCHtM^|Y&Jme!3Iq47ThL% z^5|?31P6gXW_nMjd+SOX7zCaApov~Su)&?67@!u%*5{i)qaBupJxIm~5Nwmn2z{4z z)*xFa5CnZvlDJ@%E>*VCFwLH=N;D9?ojADN&p)$PZ_oy99hV>g(zNU70WdKd{Jena@nibe9p>uPZ_BeF7(lEfaBO3Gj?oV5j*Yzngc}(M zN_=!@bWmb%0DS$^ryc-_q3&1C7tCzR0RY5Vn@;isfpnR7(!R#+jXy1d*!s-N>Q=UQN!qc{s0+P8kf-vxg4 zj#(XE+Ruyc>7++FUux+UytHgtUNK5FwZ*!nt&XkKLVk5|&H~Q;jWdnf* zqOmG3_4Xs}>;WiO z@|+L2xjC;JLTR-CfH)z~aX%2$ZsOecV?(A0$BVV2vs!0@Lb>?brfnV_GHt1%f#^+x z*3FxzJM zW_e%%0K;rJrZ-aL*J<0 zh}ZhT|A`p!ofLx;n0Q`ownt}KtAqQ5n9{-JkBlsPey*qiHcA2jzCSFG*5`X|r2{%8 zn?s0T1%yA}Y3C7snkHHG2a8nGMYah$wWQSXDjiwzAuC!@DP~;JGgxzS8zmoe--!v| zd%H(CLe%os2>sH!5g~|+$Jl|Pu}1u3dTPB^X^9(2bO-M^Z9?Mdjp}HL7}cZYBNC}C z-*J9$9$72!xm%bq0CftO)-fYu>)Q&>4F@w2-;oEb=q<9nOY*v`u;qVa#G7~4@%Pi} zF1+d{84@p$(giK!^#U?6a>aZ>dU|G z>&dldtw`CM0UY+F^v=FO{mQWb0OEytU#$+7kh^C+ve}gqSvn+>tMxJl+7IT#9LJt4 zrF3YtED?lW^gLrii#2*t+1d~QApWxZ438z0qnEa~a~*{&l@$JAq4*mh`Nuy_aDHWB z9X~Bg1OcE=DSlMVc?-h@JRrH(^k5Gx?7g?PTmK2`p7PK`Dv>eFySXGtRLyziVFQd7 zPnE5#zdmnXfPwa-8VG_%_p9bEt$-j390U%@(pKxryiODZ20?d^Ow)G|m| zF4TZEU~WZ#7tI-!Nt*hr;A!MzAAoS9+dJlgbciT61d(q>-hc^IlV%LaP zE zJLMgaMhWrZORwn&Y36-sxsjXXc*uOFB{v2_4~cC@CjvlD1T zX=NEGh?6~Z)N@UgKR?bc;pT3#f;TWLORNGw{_$Bkyfl{^MyWUe-WJK&9BwCA9VR~F zMhguZEkF(8p#S^ec6goyWuYg4z?x1vJJ)W|y;xrW;PK4iv8;N3l{*%S6#!3CmkM|q zhNM27Uf7is#~>SJadqUG603H!Pmee{EqV+D8SxJB6K9#xdtE!yy&RApXdW_f-=4-) zbH0*d2aa9#>X+L@w_HY802}ic#QV3Dy*DY8L>H6~%X@vBRT{tXzzk;zLQds$d~^khJ^u(tmTY9fWqnzpZ1> ze{(}C$=W?Z0O*;@?)fXCSpopW4}3k-x6Yxt4n>?;e4FZD4(l zycVq_06>hlXvk8nZ%?^{rTgKtJY)v|veSHf6+H&CngE;G5)^(eNE z6WuJ1bTnvvqgAwX@Cdl}*T)l|*Q{7G7%0wtR#?JdbqSL$Q@&_3006|g^}yT1)_ga{ zh;_?@<~a8bSmLhq({u%WsSGWb#^sx4ut{2eP@*p-qkA~M!1j%Cm?0`AOAUFto_m3@l zh25+h2YUqw8I!$rU6wDrZmdB7;N4CFhMicXt-@waum@rss~~Zydz`#ri8ov2`pG-j z-gwuk=!IK^m_9BY_{&|L8jsWw#QOMfp#m#k)tum4^VVWFbxmaL?2}m0C-i=}sqn-s zJxELZzgSMd8%&H%b)S9IB_`inh3~vER^&(Rda0^<<}toc6EEC2IgQa9AS#J~UfEiN zlOO^2#%3P4Mw={ko95gdWclCr{~~vM5Rr0+2{5*{t5Z`C*lef6W_k-?Ow0@r6!=0$ z>lr6?Kr?5*0Kg>ZwEQe7526bOuA@n{yi@e*zgfKv0)wDKOS9|VYzSg+0Q_}izi%3u zPsh22N6`WR;-4nv_le&wcYm}U;Raw3m+hO;BS!H$|IBWen5NNOhzrFeh3#@G?)q2j z+({5w0RXM*izA+VJ-3?_Njy`!0WtPO+49g{#kA6_C>IIwSs}Jz)2<@iJ^GoB4tD9P zS&W@H`PvtIsB>kq%MJ(IM1E-|J%A$Xu-` zYez*zl-cEh4rsBkBU)_xC26!B+3?T1R&gl<#^J3`%D7cY19AT(ZXNGA>e;uX7}^+h`G5$7zlHRT;b_(5znT|3P0C;y1H z9{|ugPWDn^foqE_-xT4q&;IOfV&^XwS9R5og%g~#M83D%km65%x_;dwS|a6R)fYYp zO*ZcP^DS2*tTW~bzpzZQgS-WeLP-fnpU_Tj%T0umD8MJjE9rTpO%?z^GWRXW!gV?(u!dz&VQGr!l~_U2%)h70K0i6HX#CA3?Fsg&Z)i11}cJLz4(BHb7 ztp|eg#>9%lH2mQ2^Ur10Vzn`rAh0&QYXOh7K9f&WJ^096Jr1h}06_f7z`GtxAij8R ztve37Zc~{pS>Lcpymiiq+xcPYqhh=lDq7P|D&M@l!EK#Vx*)%-m9AFDKzL1`(PYQj z`g-}(8XiFygASc3#}(8PGRLXF5&#%RQC#l2-GMHd0+ z1+Bj`V7YIgf0TEw(YK zYtyrZZ!U(*ul{MY?VI-LG-jtY-D17y11h1l0LH0TrOB;o^@n2^_WU_FC~yn_K$Ka_ zKITg&uI}yV0T(K0i1o^OrLig8N{x0?T0ZdJSk|_!b=unX86u6b;uk3MN;i!T9{_+@OQ!neFJ0%L zWWJZ6izSJ?eh;z^Be%(5Bjt9=1YKuXza_}9WC8WN*3z1_fP6y9N=C2IH)(OvRTxbH z0JN^Rx>t;GZbq;U{+>|MjE4?*Ao2PKa-u`{|6*WyZ_vvA&HE6@0h`1m_K2jS=FyoR zPT?M&p-GRBbj1QiFH2nbXGwIh1pwpF#2>e45IyLhxXt_;2$0@<`K8%IdKJhTCP4t;dSmvo^Mi@5aHuB$#4bJ2_kXXQU#$(z_HDGD z06^>eOHJ}ZCJtP7c!(9dU;+3ed|_1VQ-angzbKtB~afLOa~ z$+5$uMfp)|Q9NDpp?<0wH6@ozOi|)0)UooQaxsIoW}d2kQGH_0+73ZMz=;o<>2zhi zkQc6Mxz}4bz#S}FgC8`OU!XK3M0y{Wj}SVGt{SP6i#_O|foM#Fe$P8b>%nGHfIwVv zQ*zG-umrQT@jtG#s5D-AC;sd^OpV`Xxx_TMYtk%BAF#rgLkDMStR2Q?B3vBH2#$!s zDQ4;0&UYB?6q7g2>Jw*)Ig>Dp{k}O{4Tn-MdG9E;{JBU4k`Y#XXKB=BM6|O20AjuD zmE>W81+jIS;-e4w7CNivl4vp3$!yI4FFP?%ZEF0BHUn#H0DzTAd2f5IBR|X-{Hs>K zjh&Un4G)N9l-&JucrUD;r_I^g3_$2XK1b-WgB~7xH!$;{%`A-(U(eXeA8g=rmX@6? z;)$F2}LNjQLL$ zd(#)^3}K!9pz&*mq=>ifoO-Plk` z5CAVW$m#b|{@F{><_^FgQWXNAr!q4;W^E)$@QEv#NqTeNj! z3?4H^N=$zy`RdY)dMvKQ03vJOO`7FLmlVstN?Kw7fwd>rZ}vTO!r>db7nikz67aH# z2m#X3J?$H_q7y#G15gl9q2#fo&Hjm453kMnz-MducNtu^7$wmITK~J(m!1+U6+BpN z<;Aq_+d0(wSs^SF1IQ2mKAFYU@@TEwLbk3 z8~ttDGy^Yb{#^hEtS98nt7O*z8^FL4Z_Wivyg7H;jt$y6t-}BS`M*E=K~J-&il?nS z;!237+#nXQKWzGgAAr~Qb*{!&tVngn2&YY<)8W92Cv3fGteh*-rI^o3roRF&osf7> zZ0>V&Q|pAk-#+VYOkU}j$%_hVsl_fe{vy1Coj$PvuN^2L+3v@HcYj(_OUI6ZAV}!& zUz0t+V@JDGy?tb)jz6}B0szFzmYY{Y4(Hia^^xNh{02CX+6Gzbg=5_go; zC4~(d0Du@bI58E!TzyE`4nLL33<9Vtk7?c3=MARK(k@|6aS{+D4t@FvqCF(7cZ>A^ z0HzGA{*UZ=#`REG!C@hWt+93T9ykDOSXn8EGBIN8Pw;BMoVT3%)e=+FSPCN>E6RPW z^PYKMeZRD-O+%kBUtOSu4t8ecoq)CiWG_gT?Bz=QIUP>TYpVd|m3irOF=?b^yrNet zHhlxQQLVn-e#P+5U(g>7H69rSrql>LyJ@*zYc{7!0Bj(VV-Wyh@IHhu^PbTfH&GLS zBWa??Rpb}v^G+5}NEtKGM+(=&Z5 zYK#r60&uL`DgWlx=1bpj$0jtsFhKmquAUw-v_5=E;A7^L90pF!>jm9k7dksW)~4ta zMVn;zztA`Ksn134 zXk$w=da;gp=1d>~7<^uN+6lYti7vWhWJb3qR6apq5cG8ZZn`3{CIVql)H)D!ZrDpJ z(G>#3-AER3O)qh^Y32vg?ANSW%SA8L(Y`Eq5&(c9-WuLh3&AQB0JM(J*c;+5RhnIQ zj;tHvpCmal#wcYNma{umWOjwQ0J4>09j+XWr8}&bCgg#k>ho9DJ`m z;vDHS(GIOclp7>>cg2;`s(x+Pl~} z;bzSJBe5Sy2d7xK3tKRIng$b0;}3q-o5$ubJb@tIdcLlI*g86`o(m zD}Q!ZSfn84t@=_OC-PSPTQ|lfK`gDJWqkCJpAcA4`)kdHkqlbq+7rG9!nLR4`J5|# zEHO)Iw9Hbv*F7J)Q5#A^%R9vfxX=TMl$$xxTQHebIIXKyF&Q5KzVY=467PAnn#(s^ z$9tn>M=<^(?dT14++alj?41BqkMmyt)hnHEl`rV=A6vgM-{&Svbdv8T<@YoS?@FDa zpPK|}H;4{+1sXkK9GJ?mFszW@`P!Fpcu0vL0I*q4z$cy4hQlENo_1>-@d6f-;b&zN zqIH0)(K!ZuhYMDTF{FQ}ueKd)l>nginz=ttIQNdc2P-?`>;Ie@t%EZ{$kw&ZU&tKz z$`>Vs$Z%Z3A%m9AG8cBwbhkq_2(MJKC;h(JoziV}q_*yep12PQZ8Hvy_~EDqSkq?E zN+?y)3tD)wCD)4H(PG77CxR9vC1dbE6_)dqvj%Hh=jy0bUNx~g3LVs~TicC4FuGfA zWcDH(G`#%%$u27({!!kv?J7UP#y|DOCG=lW$TR7N&(_h}E$?0B2x7#4@O>mU;r=X} zdo+VVYxsMA6i~}AW_2j324X_+qxJ)jouLCg@xn3L#t!vGvT0UP#ZlfClKwL7@7v6URVe)D2?-AC`QMF7_C-=v` zGlf393|2CViQwmum_woFu2HDB=TI+~_*6TTslW(ej1s6HW0Pg6@3Xl;!0Iv>sB!43Cl`?9T*_x@=|d%R=n zb$s}(aJWS4lKegEBmd3^3354~Sv9+u1Pv50L3-Jx_{%GG=r_TDpsuljW3QBc()HK} z?l=%~2-qOMGbrF3G9$>+o|Sa^a#=egWdntPz`!IqujIW+gHC3Sj)?Wzl}H-&P$nw` zT>@R3wMGXxm%T|!p^rS%(pPAjIA_Vl1vOA+FEa7{ymtM3`i!g#8XyxY>PQ6PgBoON z;DTU`6nSZJTYwl^aVaTnuGlf>Qfs$20@2v@VYPhF_##_ei_i+bsmw^v#y;Nmw$8k6 zPuEl;(&L&i>V>4m4iJxO0mP$P8H=XYA;~q^$)YQa=fiEi5@z3$ZAS@9Pp;gcSu@N2 zlpZ99ZQmwhgLrc~O8md=s;4gkFyCv|4WP#^C%bup1bOGokz+bGn7JPT9Yvh%1)q4K zuBy(9cf~G4@s+$p#E$$ACD)J#Jwhm)>BLWaUr&w9UFqymgALFwJ3Ut0xth?`8-W19 zUD(@<{LTmJ!l3SwXxY=)3|YPW+9*}8q#YAIF>VxGo5x=`ZB@Wo3JLc#Mu6;z=g==^ zTAs97wNQ?!4fyQ&4oQO=%6Oj4#o2%qi;+Pcu>;VtN>W3~>8m3*V z$LE5cNJ7aCN|beD2Uwv{aC0Ag?5r;k>tBb**KvV*Tm+&qWJXi9YSrvb6D60G2IwZ@{=S=JJoUC)1d_d%WK4YoG*((dV~80=`aNm3Kbqgt zc4#XYf&kc4_1;7RTDMB$)_1y>evXR_@mCkhR>?P%jdeIef z4lz7lw9q|wg~YL~9`l0AvwyzkW=0xl9ch^YzzZW3z`2L#=?Rr(34n4jh2l=Q%Kv5d ziuOMW{pO0AJ$x^KFXZ8%xdQs`J>f5ptv{HjZ9=ziQh3hx&AfDO^kgq3qzA-mh??Wk zaczCQeA=?jel~gmu!%fq2$SD8JHO@yjvJRha>pa}geR@fB=Me=-v`MPylzDISoHMw zdh6Ym)W?NSUcreqD_p^eBECR_tgcdNHpiq#DpY##6}qRt^G!Bu1$afdzG#=LtSACE zW^d+6a6-e3?j|gIAqawye`*sju~02-{$_o|iwS}R@#;+XCxRH+tx4M}+LFx<1Bg?I z_%LX&6s4aky({bVVXc6+c5H1WuQ*39b%zess~Bec8oeOOz}D_aZ*_z{HRbjff=|8G zTJL34j;9F${F?X=%9d>MAB`Y})Mn|@@`0B6h>Z;%8fZXqKIqbn^*X-U;PJKeVg+F% z>HjvSkIp|UWHo?*y%}nHo(f^~ueCio+F<{l0O`yxSI!jrHX1Nbm`5drG2n8$U5oa6 zpYxpDprf_`8=f8%k+TO}j>rJmzfe7G1=cVd!xE(Rs2!9t8%JsLx03ov0M%n`;f!kT)4F-FgR3t;t>vVSa<;IE@ zuFWA+_u+;s&6*W5l^M`kswA|dlf-!r@D1_t0K%;u7dvu5E3e42Z0`149 z^OmHsU9hvwDt8@~QgRJ4t`-gQ#_ZR1DzvM#+>C$@%w|NFD*bXza1*Yu>?sbWA+!Iu z#xfxE7&VSG$?ns^&zcE77KAZDTJV))L*(8WNr5Gw&ge!OCS4HbmM6V*k6!D`6V>D3 zLFsgfY_6b(ZdgT0Z+;b3_r+|kOwi4dBXtHgi4@LcsorB$-%++j*x^l(^W z6y7?jDm{=jt(WqP*6BLZOho{ETT=C@42CVFwN_tz?A2fIReWF9#>UQ$iv^r;9L(nS zpQmKgan}Gk#Og;(b1`teGMq5TSs6B>B_K%rR9)xN5kvfyVnrX-9MQCNwp z66XHqd?ncscT#a`)f>-y5fBBSH;fr^-_qb0=`ySM0H74YPW0X+B#Ul`88@0Z@6%= z^4r9~H{XyGKn%CTLNXO3fBG?J?U#WA8w9nFfo%AQ^C!T+l}jG>SM;QM@aIWIr$6YL z03-zBZ`7c*pDq}+NoRVqPUiuHxA0hOe*3W35*mXlum)mE!!kpZS9X9rw+E0ifb=XBS(qI;*`qV6XyWww$kQaet%bPTa#T zD-+mbVF~%vN5@-7In~ma;#oZPKNKdujhQffWGE80*D)fDLihc<#fQIxCv! zKmgc*W=VX$QOz*#Af{CCkrPM-Wm@Z#)5B5$F`XSP)7eM;-ra2(3IZ|KJ7{FENE+Fu z6Mt%3u>*z7e~JwhXDpb>U+LB^dZ1L&%)e^-r)V0Tn-XSct!S#HJRGcu(T_j3uT*#C z4y^)!ML24eFZ|4}Rl*I0B(^P^#Sn;b%Ey`Ar6foOEkh~i&lEM z;NskZRbRSR*HxSbPN}PA;zA z$TmQgpIqVJfs*RQbgmjepnF4sUSG@x{~gs0$5?w<`u}rp00M*)4Ft{T*Ueoj(@LjL zP2Anz1HAr5u4)y2&7k9fYw-+E>z-fh`4o<^ZF~5jJ09HwBMwe3GdwM5m^Ntu*FCzH zsgcN6)E7VeUD9LVUfbQ8gA#cnqfoL(TpMK6foniQFXfn811D#3_U*s&W!%I=eW1d8 zR`h@|a7hez8?oAaq)7w4hhuh+p-2rxV;YqCWMi#F8-WN40`6&$NxQkpTI>bH8BdOr zD>aLF0WtrOd0Kgv_>2&O_}vBZHK+cW%X^ul@xiI?z^OPrU>G13H)~kh=+>#_0!`lb zh*7k>bSr&0Cq9_j268SIf;d};;^8!beP@1o2-jPkoYUExf^BY?U7Ld$B#3Fwk|I2( z!TU;^)~sPg>nIfJ* z1_0O-13>e2NUN4gABQ+w3kvP-tl=tw3cyPhA zuEL;$?__EKsW3f5l$6Z1`(APZ&@ch9)_vluy_RV)8djPVvf70YP)RE~2BHIUcu{%4 z5=td}-2*?7rr?F_jV1S|Eqmx~AakHSsRn}Jl8Y|7CIW&eF#bDq!(OK@9^2Nk&7=E-TG{g4jRS=K|Dwv5bHa#0^i9qt_9V}K`n406zjhur80lLzq*dEQGA z&CcV!QfgzY=)DvI5O_Z<59(hSV@Y|m4{?Nm0KWwgcba=AxAsdVVpHU$|uftW%&gI7+aN~l zTJYV(XlLs#_77qN@qa6B_tM~|?xS>qwPydAq(XRSdEpJ8A&8RD#hh*Q+_7>zJvFBQ zF(w7_=T#41Y7!N`6tFQIkbDWou++MhiiX_a# zXp34rrA2Jx8B6qcmoD{}eg-$Vqgk^0;0=nS&tYK_Q$Rc3!4Cl$urhMIR%>fWTLB4VK)xMHs-|n@A@?D z;~a7^4gumX1Ozs~Gmj2`+A7YCIk1&JLfl7wqL&!JKTy%3{vsXsjc>M*??gl?CbUOBnt0PmC$P&0Q;EqBAx^D+jW@xqx%p7Clo zf2OXLjC8)20Lyhy)JiO?n^(UXo}|AZEpxE?TI0vACJ$>AB^zrzVcWlovUuv(T`Pp# zS>JV%-zj(2L~q^SD$EK2Abzjy3@=RMb>h$l2U~~S$@?d5DtQ1nb?(m2>%>Nc<;63~ z#8`oXxX@ed%|F7{2x85WQZmv8zt9H_t-$ho$%jE?Q$m6p=AVq zoNYquSUcxp&L=HTYSkNU5&+_{4Lnu;Bli`wFu_|khD1)Dsp|$KI0J~u zH@?{f<$&+{&ld~x4Px*OPXa4?5o&%3=L#;vHvu62uS{`okeJ$^zArw^_n+cLZ26m( zxf6M`^1CC)!uAbf@~x}C^5dTgo9roZhA86DrD~AKZ)&Sq{`6yEyZaV~c?L04_=8X0 z@D+3W+8oyz(DG@;hMuAC=r|^-0glO0s4oa}TgG%75OPjcA2d8lS4|4pK7uNQKO z;WY!r+wqf*Aiw%M9`C&TllDpDHD`nsOKi7Cwv2w>jkFl#Ss`Y?2j2|%Kd*e*CB`zu z%fiao*t$h|iKGza`|_{`Km!aH$w#ErA8O$yxe=V zp17IvFbE8S9vxmwuTz?MuR%dTo)1^L2?CP5rRri`4E;8wjcejiCWxC#v#eU-6Hk@= z-dmWR@WcV#y1B-X0I+i4p7IGKUQu|njz8tRVgkeo;%gXMf)RbdUMJ$50hVa4&J^JXfu#bS4evS22n#z_- z16>J0oFHaF*CN{vzo0AG_)^$aK};*gy)m@nP8}-fL7OP|kPMn^Xul5C3Q!b?(K1aO zx9YI<-6@I268C(>=x#D)bBQ*>3Hf73q%w0>~~mj%fATx@_~1Bs1;TRv<-n0SgD@ulcMObtec z#I4f&?3g7kFZ*)BZ=Wsj?0eeHDLQDG?+Jjom52l~pD7?lX+#C)+BI)2(|&5IYyis$ z2>i=GerT-JptfsNXc@$>$S)iN031WJ#wT^~HL;Wcv<_|l@^?}1LgQ*r4|KyLTOT54 zlWglY99EA%r3Y(LGoxCuy|2JeY%{M>A-9qIC3)U-daW zb7CGg!b9B~AQW^r_EA^#-T#zH0Z z7)*f&VodL-I7Bj<#ky6_0Y1wT0BJ=^tT|z+T*r;CTg_z&*%Q4C5c7CI#07~}k$+(d z!q6fO_*0N&H7n}`SlPR?IH?9=3iZL|hF5b}Vn6^eSVeE6gl$euz&58Q1F|mHE0<=2 z2ta&UoF1vG-#0RR7Pe{tD9L1BR`h}d<^(yX{}HZHK|DrSA^?X#DEhsrkLwU*MGpYp zP$CFpAZY)x-}QQ^wFZD7h;BVA)#!PmjrYFI&f$%8nliB#EYUb|2$0tN%4+3P zv2wE=3gl+{kA=4Dmdzv|ErW$;t3BlhYFNS#W%fa z#E^utBVQUhKi};Fz%v0cyYY!b2jq~VN=oY>>{TvDjj!rf_ab=cJpi=&h1fDZ4&@9> zfp)vwYb}~p?cb%~VJo~W-!mi=_Q-o!Ek)gZ%roc)~A-Y;~~WD+3(ApU-nyuA|p z`h3T)f6<}duykG$A>0z7=Da+V4#UhpUv1E9JSLcFP!Mow*@&=nY!^{cvsacD@Lzt& zR5qn+FAyn+Y2*Exjq+!E%@4g7wnPxqY*8Z6Y}=0Q<0ccfOowi``B8r&RBX_~Xf~R~ zB!ZO;o;93y$oY(fk$FFvA3(E^hW?sX;H#a6_$q2tc%xp=krR z`$FCXKq|;CBuLGzb?!1Zsu55^i08{QTu|LqF{mT(W3}JZGrubF920uP%YJrD zcIk4+y$8c#o4ta?CPk{(Ad8ph{_TzlB3>c$7PhQc#rFM?KWzVa;e^4eSjIhx3|7DI z4BVazX@R)9{M;xHSixYKGM^eYT=Q+rng9@EIs#(Ub>(W@azi0oZyB3Zo7SzS-)`vK zA8F>nXdMGZyw57XpphUjE^~WrA|}EGfdJ_V(7{e;T+Nd`_6ER##lO^`ZVy_04_y9NaTXPz z3Sv{dFc1Fm`z?7WRz{DhpFFNl{g}P@C~y#X`umfvc_8crfkDvnL#K4uu_9&}Btr1d z)}Gruz%>!f-#(M1*+YJ!ivPdOq`v?0O?@$_Su8^XRA}Emi@jzG^&7gO@-R5 zf)LYybmESD85+ba2ytB*Uj;0&qh5G$7n5i?a$#?aR9Xyu$Mj#DpG5y{J?f@aazhqIO zoBaGF#)|x?oi2T8?<~fY1y!|;808QEzA=R&@zjeC=%{3fuPDC7wtYtkt-2uCfS9sI z0ZLitS@Blb`t~ZtfDICFf4Q0~YYY;^1BGEK2SJBE`T5Wknr}1L1>jd+&n@37j z+{6G7Soy6{9k2C%FXzx}mxgx@3Ig^WT%e~&768fgkp}=Q9Z)(ImLCo~GkTyX|6cOF zm(#IjKCf9;cOD{iafzw`IM($Oe?6zk-sP_6qa44ON$Oo0IT94snwQ9+*^~U~EA6Si z-{|FgQ;tti?)T!DwBCFK$@T2?{%%iT3&c@5=)IL&U1Nj&d@1p~xQNEGV(q8M2U&G0 zH0JP|XgG>E(qAVkzHu`FWnX`NjWFNWq-BIVquDrr^}WOS@^07w-@gm7ez8E?{m@tI zY0ETxuNK*7h_!w*enjFu{YQE;nnB}MYhqL2&y~5)AJW4bQCies4~*UI*1C}UbtM@c z5h5>H|1(C6Y8nG>k-LH~oudCebJZiO=_1Ia^EM-LyT-)-zr$QR!Qwq#svZROG!p6s$gOx*T5tocs;-j zT1hfPWI#_7Z(=J+b3o+XBTZi;;wgUi^U^JVa zjhqi%*w(4oTw5!6mVm9EGj`N3R@|NIbc>SP+Z1m^M##dvcyad5HJ03f)GD$bGT&?vt^xe zcKzKWx@AfOcjU7Uy{}c^_5#e1(K2Lw{A{ioslPi{9YHCyuPC~Rn=aV~KT!*j6|L1j z|N2aaJ+oMtC~gQbMgcN3ig>O0XSp@v*VwuNQWREEz*5(yH}tNbF|Zjb0e+DAlJ8NW ztHZ#;Ohv3Gz#(Et1H{ebCzgk2h)2<0lit`=FAO;@@mn*@Qzd@bnErNi2*OuW~i zAYjddujuGt22Ow>9^%iS6MuTlt+?P>zss3yYyk8Tu_988muHbkBnGbi#ITj#8qU!! zbM=0axi2{i90Y#!-4pt>iv>dKljLb6({jB<$Jjb-;7skyMuO;31KArv4bF@TOHhM? zfKy|g_-Z6b0EoHG2v>c4Tg7n1sOcmVbG8-4p-D9SV^+*ho)_=3W@ArJjTu}@Te4XI z1&A)Yd1oCz%{H#pAsmx#Dt36W4tyjugN6407UEkmz(4Y{u>FNZ3s z%obM^*ofBxPqw~4p96#tg1{i?^Pg+$b2TOnYfuodWY2l6bu%@%E#tvKb`axc_9}lp z@6AEaEIbzWnZq*ZGBIL&mkiqwSoQt1=M&)&3StIleBFh?x#)-?Ve<*30kx<#%^hYp0S=6>6DpN5vOZ%9=z-qW{kfODq>lN2u73-YXdDNjCIZ%N|`ex;lW}gP611@e*u}8QXoxMN@xs7itiYH7E!;a&)aL9q>O- zv7}RQC;))?i2RFok7|J1Z)^VgGt57T+Y1N-?jui(9bdbx7FBWC0sk5l1l-v*M2pmz z0{}hM3|-G}UMthr?SW&U4yN@=PXnk&sca#s@vH5o5Xm`L;`FOm; z!!Vu4g_Rf&dgAmR;^i&fUtf1Fb~Z=p(OXml6a>MWCQs4Tf{CwD;2?15i;uV_13L=> zgP>_&p4G*e6+2l40AeS5y^8%AEp|qfOD~zLGLUGFH5%+X6Q zkD&SKQtsh<_y0)I(n`=|i}lCvnGR-i@*ToyQVj&b<7%zW<$ysD1r7oq9=}R2n3yw| zL0}NHaQ{Dg-e;^pgMxq~PdFdKGQIpO!uda~+LhUvS*Hk7(7YzglQbO}qJOfu@QTcC zg$h$?E$gaDMV#^7cWJ{kRzLvwhl^7;p-Vf^`VDCvhZYz>cBjqg&+acj^`)*9jD!fV z{15R9vLab$xXS@zVqOoJEf{gyVt>rAz+FrrJ}UoWJjOhP@i=?t{cd;y?;vg<4^tb? zA8@`pYRxp4cXSWHJQ*x{_*b60@=(j{X?XRsT46@ZL0}LRKPj*|NA}oT4B)SWq$-=+ zWsiV2b4+T~5d&y)@v!$fcfacTL9gYslY{`B+ug!6$< z9fBQzDEGoes(W(BwCDJgh;P(_7%g+nQg4!${CjiQhY5h)WWHU^lMLiur$;F_r^9YQ z{Bs7&JLFEMKaw$>YX;<DA2h}}(A&GJ454e(moYAsO5Pch=oKZ?w+4Q;&-6mEN5Vdc0_t)KF#Sj4A z-_G1K@#$AvduKA+7R;$zH{!b`D~J>yDlv-h>E?}HV(|W-hEvk^_1QmY9Ro`2-_s?KjnTMgv|CU zh(S1f|M3J8?s{Ob)~0zs>mQLwHzAxa&xi7me?1MDv~aP0@5H>H1t5v>`9OM4 z%E0toE%JVDiEw_)TuMPa3=u<&yJVmfB_bghVZh*vE_)lX{VNj_^haQCUN(Cg|gAX4@>O27=)6g?s6=Z??^%z(L@{o%*^vV8|#z zU=UQG={3C#V#<9D3Icvj{-KT*Mv?@8SZhD>FnLq4Ek+C6#f)fyeAT&XHaA*8p()}m zF}}6T&{DAGg0MnA7b9fLH8xK4TOL$7qia`?OiF24QdL}nvI6QrbpNQvfpo*Y7r-B zW!CDTWx_cC6@_`GPJ~6)XD`G#UtTqURPlDsYDM=O>wTSoju&t zjsLKh|B0`X@3-2G_Yasf+514akOMJAh;4j|aQx(m7beoi+n@z`GiY6!?p$4Kcm^@q zxMyP)uWEvgFYR;C4K3gq#AE}iCmTmEObQPW#8Fwi?XJLSLMWz=RG#U@6s^hH3&Cb( zDx*E$>}RHv)*&rcK$Tk465O1NYwEP4BGai;Q|BU)m>%|37tlDBHlyW{H;R5Kx7&v|S zy~5778Y}>F!slZw!RaqQlFQrP>)0-Xt~*@-S<-j#{Bu61I|e8agGLV+aLG)q6FBSq zsbf(${(u0)&q|aiDL<3T&)%{yLDBxcb-ZWtTW;rd-!O#&gTNr@=BtNv>^H@Q1_c4t z>ZJ;MApsyp{0B>z8Qt?h;I1+_6^Nl}yN?;?7p@CGpB&vfO=DhzPrWPk5vki0AEKk4 z31n!!j67fkc?&rJ#CHZePGojSL5z1~;Id8S0SE;wmpSH-Y32rC@=p)|B^T_7ZIYa; z{MD7QIs%$R&0auUsr2<4MGpV!+0o>-qoW7AQ#1@>UUv#n7Jq)Wn|H|yZo;O~>0OoA z9_pz9)=B|j36{CZ+p!X?OO+>DY}3KmEM|dslmY1NRe8V`rm{S)Qup=E+80b6twA{5 z+CxBkpPb+=AD?n97Oh8t@!#RH1itp+TpfF@GRZ1>4T9D^9=OAr5+n$KyEXszUv4~e z;i#6N^$h?ha{1M(M`2_4j0>Fpqn`tS)_*D9IRRt9%M;6f=-~P}*}-d7sCofFvgEhY z4&`vZ4`9t5fY@LYNPP3(h$HL}E%|;jwYjbaw|m~1cf{Q>W#mAjKpBraC;2!}?6SUdm6s35tFy2>CIZnL-aSHZFrAx?%DSVj5>uqV|AEWhR%?1PEXh4}5 zKupBjgMv6Ge(`rS|LCDq41gn4Jm2$T5$9_KcEAA82zjdkdU$J;^ASRGCIChV0DPp6 zJh?>?1k0a(NGfHi3FqFj62 zGgu&q>OBaY+77+OTa-4F zmeD%A6pLBdoA~8}58bkaH4IlYDrcxw zY!1Y_nAX+z_-~WBM#|P-inR_MRH>cMTeVwvaKAQCQ!JqMI?@eYxMH4a{-*D@`%=5D zlbsRLI_ob)$)=q%c|Oyke+st;vI79bh?x(G*W3=w;z-O=u?C_prb_ zO+8JeRQ}TUTkq6$i#76%Y>Q$ItiTgl+!X8hjUK3pBxs%K`R>~r{8D4`YdNEp1QC`} zRW+mfmM#_CsE(|Q)&Y1}R+VT9P!<>Dn#H}MXPqYD5VTIf1Yu%NP=;3b>4<0&4neqh z0Ru0%cDk?OIiu^jtWi>6ZInC!=*z!SJp6ak03;d!>Rv42=Zt;jtA}$2SpxBdrJs4k zXTDup^{ugqu4rizjOaL;XFlnDuJYRTd0aOn?~Dv+9b5Q}3VGieqqS_D9IVjEkB*(| zJ9+EP_qeS~67rOWR>ya(SUuUW)6r*qz;mW}YngJA-+vV^^et5IoLPwRlco$aVBOI; z_b}~ICXyWyYRvZg$OCo&;9}6@9qxBaJP;6o_Z{lUL)*~?m!b75dWqhY+!~06kgwTO zx;yo?IE~W~0Ak+PhtxG>d{0-LkP?W=3S@5;9zug#iu24v*H!ioEd~n<{jvQty9T-Pw!K zd79Rd8V5-ksW&%uzJ_j<1^}j^>_yLDM*cEZ&+)9%2!gfVN%5Z-;!%n|lF&p;$PSqK zAlv&Byy+T}_J%f-T+`+lFkPd<5T&`A+WE!6og4H8&hLcS-#&Ta@zLRs2yt?Lhy2U= zUB^53M=NTwu!2Ft&~7y-tDx(1=egeSbEEpue zL2@bh0bBYoB$6fGDvGubxj)yste(c0q=y~=g46Re@6ayO>wqEe>!fGO8V$n0-^zW| z%QEO?QL@05OO!vA)qMO)5}}VI`X6aC6wvZK-S> zXaMU^Lf0Lls*c)kbhz;1YnR`W?ab+Kgpl>iXqv2qfZ z=w&TH8{$93=IMT@_35iA*ZiX;VvOss*Z}q=uziKrVU66I=)I(OFmw46$nK+Gt{O>0a$s;6D6Wo|+rh$~C8%Y}b}^rU)Nw*y)-CL;pG!A6SCb#{yq$*!*( zVcR;4D|^HcvvoK*Um{%i!a+wm(VS~uB8)-ih=Pz!>Z))ezq*@BKm21|_+`f92cj{I zhx%y!aEuP+Mjsjk0Q5n?)xTcS4r4@20ElrHKZ$#^TNl*F1~E8j8^q~Trf`+l?M(h~ zVoD0D39RFWuGwQNPgD?tmYGrDvrKaPrp&NYDE3W345h&bhRNqU38>rTTjme0KX4qA zCjFuhWtlC9`!#@Z!I=pD^yZiP+5)o(6$bVLZ|oYUR~U>!{XjqHP_g5|=&eBp;8kFs zPhVhrBqd3U&bzg-W6>z4Qnm4&t3?(<>vNW#H)mpZR}DHBh$)$0;ww7N1uf?&{Y}uh zKukp~EcKInEM~!ox5C+=ME*#X-%%7+4J*BR#8wn|J|h2+4ZP`v3JQJl8pLGds~St( zb^FiOe;?kmm&9Y-B;IvHKU*5Gm!s11Ejf8HPJX5t%a88Dc(E#J_2!E)V}QUrim7L$ z6(|WNz%hI?ty|C?H3$GPGB>c@eXVd%oCJWl*|>I2>$s>hOP7dU?h7~0I4Jwxj}&lZ zkKMnk6${xdqqU7v1;8p(3liVdgLag1XTR01XpW=;NMil?_Vg>cgDioVO2bA4oE(O> zYR$=TmgL}w6PT|_7aR*%qGx40T1JPI=v#QD7mR~!NgM7Nm4g4fp`)BB+X~9kWd#gg zKJuTtR&-_g`?h&NG9Ydm4O&s9x$JzgeX7o)=F}7bAncnlHsSL1RL&eB@Nhm9hBdBU z@(p67THb*5!oB&LXA}QHjB8B664Dk~;hEM{l?!NA%!QBuy&%L@hR%0+uXNayd^Mg%)T}Gtn7aPG3QePa1wv@5QN^|6e=`79`@o|Is8 z$zA_tb2EJ4B0AJcD}{MT1*_S+T>>fK-_ThdB?u6#2$K~ zSHx>sNAJKDVNhP?s6wlY zGW~=6D$P{w7iN$IfcVML!<|7Qp}+iBTH8&LNkI(0$BOOH#^hJGB2HZ1-Oi-qLk{RU z83-R3D=mLRV`Pst(&EA!bUAGT9D4MF{lNETSJgXTCcycDe$bcy#s!PSt&(Vdma##S z1Ponx-ih%0=M~Xm$ViU>LmZPt;#5iR>CEa8(?p)Uyxb8rlI1`Brv*&}Ewfm`Yn51Y zKi?&T9Uw%}F(3vD6Taybcc#mr@atkQs1fo(P)n2#0636e>6@pVJ*jc6tYu!a%tZhb zOTH#K5(vn?*Sags2Gor9fLE3fa3OC|ZGdJmggt9B8<1a|0}Gk2U!$lW$WZESpAtZ~i>`_UP^ zIRp&Z0|4G{-z(}2G)=e3HKt$9qu=vfDFS=X9g#Vxd^9_V=5+p(En4a)K}_1xAoPMo zOadyUeO%kUNi5sN6qutCEtsSG{Qht-wB(JlgO*GFKFoa(uEEz|Yekv29PE&mF(E>J zs3}eYJ1Qdf?47;zHdo%Oo6^311cBgw4WM_h%Keffzh5Y%5{-E%KMd>#=6>!&on*`w zxF6^T-K{n(D0U6<10Fv7qRtgYPdy}}KOhpJe`7pMoLS!aUWXb3$QO~dRj}K8srD$>|4MdJW|>&>4ip$i*;zE$=}Zi8Yze=rKCY8oUn-i5qj$-i0Qs4 zQRyo$oC>+WE`P*pIp4EgotClg9eUkRKQVc-!D;}+q0e}%lGsCHzKImXf#+!;jYl$i z#LEjTa;C{B9Tv@hBbXOJOl@|!a@w7(4}G+0uq*{Jq|v>Am(M7XfBLu86~2jn1VD?g z{WZ=FmG8u!w-p0h0WlWVX2{AKWsW6C_E2i`8C|-Wm7e1=;tB#n50DJAf3tioY-@yM zKuj^VNn`GWhZxuYlhc-r=*A(gCe0#iBHaH{(17#G-_V_aWK@7cxHQ)z7 zH1(it#Cv-42Q=Txe zAGqvcYdy+LdHg^F^7fA2-s!u+9Mz8o`2jPw4Y3sr(;)!FJW%HZxz!nTF=q5sTb|UW zD+|4QzOQ@JcY>}AVwetE#<4G2z`8xJ+mQuqfOxa~V0a#xl<&$$=U`UPN2~(UV}ri& z&Z3Aj^TIYz`Wyr7Ai$|dZkTFTm9g1@%8Vz48t=9`ol?>uS5krinBob$R;-pPX zR`lL94l5-(gE@=|25!gU&~adQK8;Beo&H>5#lkZ5)O z?fvoK8TUg?E@!>g+6*wAL^#?9HuGp7`6h%Y2E?2ky)FC^?Gf5 zr&J(s0?_)&4~jTx7Bj(VQ(FgHKP8CIGkb=GCy~g`JK4tD5f1DCP)MQ~*^xiFwP@2x zujz@YsYL;R*?Iu)ZnPJ>=h7^h+(iKR?|JPbXWjspyD&6I(DOf)L`SEjF}BVM5q8dvx6F?|sy*Lm5&$X(H@i|ffv5A~NkxSiis>bc zlO^;(1*P8BM3={Yk(kAflMi*k$>(>=?rMNBG6FyhizIR9IfrcRf}I1>dS=mZ zn1q&JIil+wqXPgq*um?UID^FmXZpvhg5Fdt;)xOGFIYbZUL*?J0WsOYB_>o<=tT`6 zCL1`b1G|AI4Y+>Vb`A`(jszqSYmFYNKgn50%9Ou=BNgkg1K1%5V(c^aE2jq>r^vPc z+2BCG7X;baSEIN?j8f!u^Athi;t_A4$VnV%#z+^N7`%Ti^2RqMqfL0$*pAx3%n||s zFfOc+!)~HBd(q_vWjvyyX~SWcaKe zcKRgo^{DMblt&7-bRyb61%2yMkULt27+I>oXAyT`p|=_)X;B&rB>;n*`uA~%c=QvE zYMk9#Pp=l6`5uTNZ}iYeegFt8F|s|dF{F^wAOrBMvqZCfdcdA`(Mu*7JxxOQ(zu(I z;EYM57e?j+wTC$;dobu@xiZ;LlTf6baA84?x46C0^qX*H(f+$-UGLaGTCVkOEnA$F zKU}ew{KCPqe2MJMt*z2TWbh5ZAJIt{mRt$=-=!tmcWrAfe|DHjCf~Mq912 zYit6i&ubs;rp0Ky3B^dCwGxVejXJkLD5)%phaj33|gyKj|euvuUG2 z03Zyqmp(~3wcKsMdhv48!$=o!V1Kn>L|_jfzH(!9JX%NWpO*G*d%z$7@yGIwg`XYr zja57R9d=K)vK?=!*KW)Pjvwd;U3+S*-jDId!ruIVJ)PUwgBQ+R_CSmm$&saQYpr+E zm?Otv34~v?eA*%0Rk>2!f^Qb+aALIFLWo$p;35E4u;Y(y2&R7!)8>=k&F2Ivi1SAF z>{^^=TL{FZWispTA zKzo-NLuQ%vlPw*j0!1Fgcv!+XiC0V*?5^zxN?(MME3$r!BvC6WPE7Z>0I~1c)w&cg zeoFxO-txw1H>-S9qLWT;hPZBKFG1r1Q6}hB#dif|4`TA2{PTBi$=>eL1RcJ;mKi=W z4!Y(}tz(Y+N_I%($LPW*coy-wyG^0yj~Mu7S+U+E-|US7 zI6U@#z}2JJ;CG1=7MYu zbb2*=)>c; z*gZg5AV$lbL$-bDpD!CM)d)cA#lD{4BorJB$vwE2ofM^Er}g>r4PyDvy&UGixXR&@ z;nW^NL7vQHuZ?_};yVx5i57yzI+=iaL2F2#0F(a9Dk3=PBx%-Lid1c86*phmTwwxL0+k#r`ZBg7aD zd$aDtRZ?oP8rvrT#K?DC$Y|H6c+ea`Oh-ZNVIeZHjPK+ZL-%MyuaR_@)S_=DY2bYG7eQhjg~=!2*cELjJ_saZ?X<4L_m> zjs6f#3LwT^4a~X4Cm#+Z}{Ey)+GXvte zN)}RSAM9hx7cH-n2tY~TA!LT>K(S3?vVrBN{|(CL1f-qY-f@h{suLhOv<_+fxbMw` zv>Gh~ba7a+=oRhgA1hRayq89R#3t zA@=I#+TYkpVe1EkjIx#=-LO`ApzlmQ28q_u^3Jlq#ohks^ZT3VgAu#ZBhQnz?6L<5 zbw4ahp=}JC-plop+2a=nO%%k;n>gpf2mMwa7-|oYEi)D3k`l7@%f8` zagRU{V`-js@V-$g?LkAUXC*wKjHO8BM|VwdTl)`nlrrZAQ;R=AN*_vSYbl1t@CIXJ zPibd<5zNv6l2|SXb~mYCIeRCV;p&OsF=-*gF=^G8&ggee;r;KHaZ@DA;{G{%HE|Y~6q$42-{H zlZm~iyL(zMdYNQ)UbIi?O_{dNRqE}uwSqo!UdG74b!MtJr2IObk8Jr_1-^zPSyAH3nqQToAN^FmsJ zLHtUOFC59?xOTBGuLs3kCgQEypl;@>%|As#9(2zjYU2TFFXjhSw@4y`{Vt%ERs#nOq7Z^-K${0Uttt|u{z0S=oq z+;gluJju2t@C;%O@IZxU+@-0&3lvDq0lvTU=XeI^&`oW$%wi6YB=AU4kuf!GHejhg zi8TI-$~un#DG?SOqc)w^%dlo;UW5FA%KNGXS2JFg9w?ckBW5H(GH{;bbsw;81&RSN zBr{k({?_l7NoS7%(jfrE|K-`@M!++R-w7r~5HpG2Z89jjb$h=0AJYp4St%i5UfT-R zN;utUKIm!9ia8HSK&+s0i+sV-Ch1Wh>;Ioz?TbybnZsYu>$g>%<*EBMKtT}vZWV-q~FwjAeN)hjs#JUkod2HZM0H7V%nEr+%rHAeUv_2sW5$dA0h_L zy>&zDi9z#-Dp&!}Z~gD}c(8%((Rn*+*!u!7ldQ6)ekW?Zlsj8qck`0oo-niPiy{{8 zm|!t`=dUdt)2MfSzZRbvB#8OYy725iw0=1fV-FIt1~CWt-P8inRe|%>XXc!zWo^ni z5M$X4JeU6bjd-$Acw;(ULYO@m5F@=(Ir+CtaaZ&fX8gboxMYR-7z^v`FRrCYBY z5y?4xgN?0U)=U5!@&Bx?k^Qg#G|z^OQ$kcxPPTH8kO*a6IX;J8XNaE56TsJ!CCLhW znXEJ{K3V5uQ|qCJauE|Pa)`k|!_;c2uQE9AuG*JWQfEfvO@5#s^mf@*CDbCR@g{)g z$cNqp_UKKSCRWi)Xx?~AM|BbH!5z=JbyzQrCOxeCFzMx*(J*K~Af{;XoC`(U zeo_|ger6RF#K+XEReMzXvdeAJ!Xz%qKjmF<#<)ko%63UYC^|lQ4nW> zSc&0GFtJG?yH#m02E@#exTc1ycR#(cTL&fMuOJ2syWbcc|IDg3&cH6;`%v46@z?rN zT)=}UHvQnmw46uoD6K0Hm&yMXE^d1mTk|Kv*57m#$)!He}c75=+u3O9i z382hL{8q6II`0^31Tk8kE{z3fWoK@OK&9RVdQq_SFj|yD+xQVkc zKDpcl+qlqT_9)@|ZC1ord89)EtT1$4^Jh^xmGef{s_ulP#=N$=RWmRUbA_UE{V~y% zqvY6%-B;V;7#@F3Y-F>1(@tR9EOM%3vlbmpkpntC?D`rO< zz#)R-I0Wxj(FZ5r3FdqN$QDlbk*x|FKC{OmT*Ty1r&IJ(3)$N(v(1;pRQ)FfCb&!S zsY@2ITZWR*GPH>cc7|ph;v}pOvs$;bn|O$$i^s|>KMe19%d2~+!1wXB=J%sw(eRQtAGKe*NZ z#)tabfgj2NF<8kMIUZNOQ(I>)H2dkJw)n90m0COkbLtmBET4w*c}ErZ+U}p6*r0$a zx6L^zG=QF}?79%Y;Dy2oP*iB?R6gPz|2vv;Rs5bMpE{L)?wKosRmE?@KP7_~aWLw3 zc`HVb!N~rmA{I_u?+JZfX-?%3`dPxji(KIlAm%&*br$Clp%)GQuGq+Ma;ZC0?0DUG z9Wo5;R|%SUs+WU=oH@wHhFWiZHBNC&_#rE+_g-|LJqhe?p!ETgG(jwj(T;M^I(hH* zZ-=0~34kVH>m(jF#QIrGn3BzD)uDf*>G1WVie=O`YtPF6UG`4LYii4zNPRQw~-Caofv!eaP7NuTcP6 z*O6=Yz$SJKhv)w*0|en`ORvPA?6Nx^{uugV=>AG<^)HyCh%q02Ut{%#2Q<%y1rW2m zmI64submwGWS5ZFUsjZXQG=Kyad3fKq`+?_AqKy zAWDsUV|2PU2@1p@9Qftjco3pIdav?EtvOQ*-Vs7t8}6s!mc{HY{{|hla>T3bAqiIY znCnpT3d)a3IZ|te=|1L(Ix^;-^I6VF_M@C41y%<*7YS{4r&uE(;soRhyM8G z+E0Tm{~*$!$s(vzB7xElY~Y>sB>sK$M{a4cy3)EJ8!3gD1AO=058Xp>o0e7y8r2PH zzNd5m(P3-)%?3rCnO~h{4a131aDf=_S1dYYtWyr9tk)x)xO|lOM6F5gk;ac!`0mHW z0Ko<){RqDd4O8Y+4T=uLlm^~Q2GL;w?p)rpb`}7iAch8|c8RH^fC!kBd5O)I*PA&G zffFT-pdlPqq54~v%%~m1m@NS-q5!=3mVnRuHMRj_DlTi?q^RY1U^isz-o#h6t($Eg z_OePE_)37(Gy*EC{d|4X=xV=OMECZZ42Ih!s1LbOIimAzoyMz1P-?R`Y-8c=5mh5n z0?LQ%qF1u}SF6%?sV&lW8-N6#7<(Wd0>N~rT++9;>h5VBq0JEi zu*uN)UDi8p(UT>!b+E|O(|!qkjMBIx0ktD$>`R^-uJvRh9$E(gEaDv5-x=yUsk6}s zx$Go|c$y}9@hExcb?PWKH+HsO|7cnVfUF=Dv5Y}5GRNkkA}Tn+7TyOPVw{V zpr51_VzM!1?=8o!5b0Wd_N$#0(K3k12C5~p(P+dfn+@0!h)2pdl?BPjU)(K--S50+ z+Y%%L5O}X69{_M&BmE;omxEgFCae#ggwdW z9R-DM)Ta|RItv2C2m+02KjTEaDZi`^78W3;2w(r?MOTEce_bmmLVYa;-dIX^JpXM> zu;uY$uWVT^b#+UYz@a&bCNb%S4T$iNe89Klju_|xKf?u^kABlx+x=rnYwh@zA|MC@ zbMOTAOnp=<%>{fu^?@x3_NJq}TDul)Qcr&Ly&!8(V8>L6{Pf0JJ`G-sLzFAIp?V zM{|#ud#1bFyq7@Y-g%^KR?^A?Z{N$U zp_7(aAx5i@k876rb@o%vYW;}y=6&q=yR#;ZNKjHHE3`~prq1~O)0$bDSM$soh%qpT z4vPs$M|imZ8!=C`Dsp$D!qShE^{ds*9Z>gc0AOreFhZodnpK~9Fn2(OflaS5F7U#c ziTccgc_!Eo1W3PgZ1nPl`dFe#92x|`J4sXA09>nd$c?ZBfH?24KOJJs6&vrFrmfYq zJ~k@Jj?v0pFz)K@*fz_wdz$b_09wbPG)M|L?3+`QZ1YCs$QTV|IK~P9{DF#nV`;8n z@Fl0fkjwE1FK# zA<<-bv`*q)e|zh!a!lJc1F}NtbbYd#BOTbxC;Q9Vd_${fxru!DmJfJG5O}@wOHM8* z(7c2$l#I;~0OG5IIwXP^Hj{GVZXL7?@$b?)S!sIagsZ3r8kGz3eM^WLHFBgH;fN3| zKQlR(EkbA?7OCuI=q0TxMTpW3gN-W4(@D*%ERVG8xdSvX*(+5GXj?VTY=NP_?< zdgg>XA)4{igy5hF0P&hCpSsh-E8X7+A2jFhSQ+5cxg}D*Yn!sLE{`sGd)k=s@wvO# z+9!k)4-*jBm|9_*v+E3TCRJY>NN}|L5N$K& ztVuqZ@B>JI&NPMFTT3A31+4&p7)Mc|-HM{=x8xgR(Y@78)kmL|HX%I>><9KZn%iDA zfKB;qXAu9t8@6b*M#QuV8$yOe{U2KC))YdP^!1-T>n^`verHV3l&@y;G%QT~ z|M4Eg+$_vrahda8I#}n6{SE}J6U20KoQ$QD2a*G{xJ-^Y929TqE8jFYZ8QDbP1o7n zY%>8wVjQHP{fAxv8Yfa=G@diNzq{)-^YZwh8-kdd`FrNij=R+9CuhZ@{e@-r)DI3G zFT|8LM93*r-qn-smNC#h!ZW6<1Lc!X&`>?J$(6{SN2c2;A1`si&wK*45lzuNP_FZ{Qqs`tEHZk~LAQ2cWVZazXdVr!h=vytH)a;m0qCo)g z2{@SW|Gpipt-=%;xPOU-sKM=48*zs=bpyCJs zai#W8JGUc&rR}wb+D?rn5fG1)5y#8Vn`LsgLZksf9G4FofDn#td)aZzVO!tNZ|y#U z5Dk=&QikE(@!@+(PSRdf;BT#UQ$GMe^Ok$*o!up@q15VL#ZIlz1BmIGh!EVzFMrfJ z&S^3{h-tA$8s~N*1pK&sYu}b7H4ckKc|STtZ9}5Wd~#eC}RLZ?}xDL5wNY z3HkY?e7MYv0dtwT?Z#^Q_D!>jxlk+=;^cq@;DmN)IoHi8+ON%k2|%x@e}33~R;fZB zUl7B9a|>HkmQ3`WEeW(7*#3dtx0EIy6WdX&xKof%pZd;L7Fq{@k^0h(mR_Xx-!Td6 z{7VpMd7*q#30vS_{&Ra6{J~YdG-B*WgZzM>|Fzz8Zmg345EpDR%@t+nLOh7cKMr`a zP~DbX#?~+fn-KAccU;)x4)(EoC4#oIrLZMNH(8J0xjyJ5AcnncmP8gEq`OrZ-)gii z6|h2ppZH{+4BB3dME(^7my@x4$>rpMPx&rRfe9qaAhDDjW&(wN8E%^Z7QXU{CIL*A zPkI5yNG&1m8y&~UBwl)#p}=*06x%$c1TcHjOKgEV&(XtO8Ap8?F#&WG4M&ux6S+E$PQjA&ax)(N;CEVW2-6) z=LG37Je)D5E`LqogdS+2d;j@2ju!gI8@>yO$qthRR>+v?uWr9+XGsvx6lF2G;R$p; z#aL-u$lMXcj%igmNlNy7o9r1{6EzTHQ>~wT+v4?BmKIHTM=zt9dAuJOm6q#3*G4VV^LQJyT$TDrepF=fsvT|f zMyu@UoR|ReG6eza<<0g(_8+)Eiv*%E4chazR0sHJ{pcMx{c6)5LTL z(gjJr$MWj1;}b+w>|hOwr64+&Ype5x4LWom=@oi@$Nk5{0D*}f1H|d|iP}g#H^6v) zm#UJ!uZ!FG*EZAKcjFi!pMG#Ct(z*L&dADWTgXIu)glmk@ zkh~Z^G3P%MoSFHML-Vz`y;y)T(R7fSd4t#cQ;O((=m8>jx{0M@SpmmrHdO|FtQI5U!jP^`3ouJt@x)EarSc8fJ+={eW;Q~Q^3Gfqt(4xJLgl2G!rBLV88EmkcXt$_<_BKQOi&}}` z)oS27@MM^n>-tp4m1AacTL8BAwQ;ZOk)Nmlto;2IaAH zT8PQN4!l>VX0gK}%oaVM^*#y&*|R$6STw6vlsQsF(1&uFRXv#`vNsLP_t+-;F%U6v zr#HG`@$5+nbi*gh|74plbum(Y2y4CbzqhrMn{ondA%rX!l@p`|uheeo^`OnRMTJs5gE0{pn`UE=7RZaU(K^~G{p)a!a90FkRsskMrXB6 zndr=(4(Ig5Dw=i+$OC1n*p)QL!i14_>if=4HfCrSvsAT3N|ufbD`n*amazTG718Yf zy`T-y6Dt59-dAE)0*G;bv)2RdZLxv?{68U|LBdyS`3?&)H%D5>N=*&}kO};gl8?A+ z;crizVfVrTGkNb#m&v_Hqf?zpHZkH6S_W&iFU8eF00=!UjkRN3O$iB&k#DpPE6pX{ z(Wc;WEE5K|tEdk=n4;u<4WM@oetK3DU6dF<4+HywDdx@yCPP2a58Bdbwrw(4x&a8G z2+8GTNd@>_C3v@lIGw(hjx5!kbB7>qE5Iv~7Elr~YG#tZvv-z9-9}v3$4Wdwg*D&@ z_j|jLEoBgd_3j5==vZIxL7K^oALs`SY1vd4%jS$FKtseTU<`?344p)3*i>egfL=ep zbliC!>O$<#dPBj~`1fmoy%RiZLk@inkO@3tU_Y?$$20Wmnu#NRpda*g{2hB~5r(fp ze!!kg`R!;0KP12q$GC#H_jN&?F}$%L_`~E%N)c2s`e=bS77g@+Qn$*e zQ@^S9z#2gS;L3OQvc2M8c9`Jc0pM#C^AyeR0=`(B(=Lh_E&#v|s<6ieKEILNIYdR}8XuPZV&EfMi)?J(O+I5r}!J0}re6R7b-%_vnht zA`!_BFGQOyxpqjJY6tr;H4K}35CauX(8L07z^u&0keOJXVKAVU5jx0VL9-~wo`67 zu<6S;g2eSBp2Bdhp9)Kp>1?o^DJzo)T4t)>o^^dZa6LRKb}TO-IHZ?wPY`5JzwTde ztB#5$&k%$q;V@90);n}GF)5LtQv!NV_EFGl82IAlJ~~301r35#wdJfOW41c(*5_Jc zrg|p;J}U|o?WkzwFB4QMum(w?Gq^05+yD+Kzu>DWXw`W5QA_hR&!_Oyw zx!hTL>r!=>W2w=lw<^x^8^u{JI)**z3%M5ymY+Dtj^-pLOC@tHcDxPiMANqC(>IoR z(&-qTHp0+0$DMJOQjU%~uK72S8`6OpBjgxGjZEUj|CcV#vH>Vw2tbfKBT@!dq52Z!n~X;x$#MzndyxC;cUJEYU%G`3V;rhGJO zoE_up_=&%*m!6u^p`#44x_o+ySx`FitNZ*~pCS|OX%eIZ5EX^ukcxVLc`JLsqELqz zVm!U0M0}3^o9}-)Rz;Pov69U6^u${sPhWx9Q;>Jo?SJXwY>B{DkYDl5gaIXSVdk-K zN9z1+Yz5SeKdV2l;B1)>sW-01%uyxm)*%fLb8Q_h^Vyc3jeVCNfCUgEDlC?dF)pvZ zm{P84FccC1;=v!EaHN7TvcmuJYRDSIAT0auqY10JW=O>2Dk~!^b#OB4(tCvngthXl zOW6PKtpv1Kse4hI5QBRp;;9;rOjU0m=X;4V2G>Z4*U76V!W478^RIfv%w)iqC2apH zj31Y-D2=sQYdD+l2e&?8Pg=na0e<4&h90qtZ?FU6`@I7$?}pw%wWDn5DL}T)Cve}- zvLUD#5Yq{;M@Gr~J(Pt@e21!~}qqL%Vm!leofKtMc%O zdCMtU=5?V3<3e6Djh300dR#f}7!qjmMyqcgXcad| zp1C)BF55Ms*#oE|F=U_+wvf0C0D>j2mHGPBJVB)p0OB8>Iu%Fa_gl9N+6Ra!I(QC6 zm-U4u!5|4@w7R$Pv6=(xmb(8f^?PJ+jMI~3~GF6w1UllRd8gXZa?Yu&l-!b9Wi-r$>!Bi^1VvH}+cn-m&rmn0xg zDy-S?b^rrMhd`W4*q|u!Xc$FVWObIH+^dTy`Pz3_Az%AmrP6p^MVMNpjHEp+5jM)Pi1Ni8U{(sFqomzB=PE7=}|)+>ms)s_!i*9o>$vpza_n$QfuGFiAIK-h65 zGplkZJ<0L_KM4rEK{`;>kTjn-Yo$xFPqG&vpjGq$0EinjuaHRMAwT5QgEbMLc?OS_ z<%xM6Q6js2l`c~-YW*v%vQ96*b+miU^}>`pZOMQQ5Oa`tCIae*lG5iGU@Hm4O(I^) zxcGwyJ`Qa1-TenCoRiwSsQ_3U$e-K?U(c=m$xer89RRYz%QFzY0&ieL>v3Y|$Up66 zngS8RUYLUhzO+nNZAOFyM2YYJOaWL)FI|uo+_pid2rQhCmA;Ysd9YV-Duw#r?TZqaT>N1`D(_JY1>HKtCizus~mc)8kzK3RviRqr- z^njx-vA3ReEO6tcRQi%{0mNekgV{d2$*#Jrg8H19^lK;9kTjQhb0j=W*0@*pc z_%Tgv6qHdUqt2|m=i)Zzn-~mpAojC?6`;U%VMvLI(e$!={=e~mwf)?AZYJ~?!WSaO zxgvbFELeB>D_eoDY_CVl0AO%^zI>oBRi#pys~lmq~?T*-_7a~~u=yJL!-<|moQUK10iFzXSD*j$&8rmX--PacY*ICgzmwwO0jMuFji@YGKhpmM# zrblqd^w=`pYr(-*vSYfd-N4Jxz)G`7xJ9PUu-Rq>#1VPKj*}*=VX$P4`?+<{d_hc! z==ZCK-nkRW>=A313(O3mpo202X(guVNyMwYia+&~EfER04xpDTO#zH@u#v=_Qu0mq zw1(eGJx+&_*a&+>17b#wFJv4vz`c*B_Q8I77Go~^1dEf!DYi-xga*n*f#``DrPiSi zdL72>n>Q5GAX_Km*SIgM$ka2xovSde<`J`*xkNyZNpDzvD=9}io2lNopxJX$rW}E% zqaG0;*rQUx9+mpspT)IOO$h+N7c!=Cs)se}9&`$%Ux&^N7SseFK%jLJANXOgT{40V z5M%If$_D_~&(2;vnZ-c5Y{$K%do_}sZ2!ilMwY~{*AQOom!tB=iDb6ElL_JThC?9N~a%)aX>-@mF-bh=VFsyH3$GcfPo$mih8EGpo>Y>AX*xJe zfEM}oYjL(l5lq1fcrMWFKgR_hJu$Cli^B8tmXcv3jd+yTs<&qlT47C7<(R&rrSmIq zYdbMKgE*&1gQ|yeSaW`THc_8XFq&K}#C-oUj^^?Xrws2{2ZcR$>WFu6u!!#*Y^Ax@ zF$uG~h}L&W%gCo^$uvKv%fz5{g1EF$a#o7t;Cxyu@Aeq&Ri35+ zKdGUw(ZL153YYa@p;*>~3)bCLMf9BU~lp#ca}8sp_lZe(=2>86)*Ed>dk=zPn3eStkG12LGK>%u6yNl z;7MfoFNi^yD&?s7+*^MOzYP|x_7LsTX>eMDPE&ZM?_JCY-5~BQgC@_qPH6pglVEUd z5%Gw%%><@_XuX9@GTR7GY+X;mQ=K_(w@v_vnMw3RN6EW^5D*lexB+XNsoR(+P9l=G&+? zH;a}KJ0VUD%6ho22AM#sL4H8vspE7eGzA?2kpEQq0Hp2y``23AASg|P0GKy^yt}r! z`Of_fg#0=fTlqnsUU&@y_!;|(k>z*4cnU7aP3H(!nqx*`EE0X!B? z;s;-R)fOj~Xh6JMyeqBL^yp27;VfI0m2cV*kB~K4{-s`eGH;H(Uju&dH#gSl)g)62 z5Den7nU5q?nmffw)|V!Syxs}K<)UoWy}aDnQ$f(Z_;tgeX@i&%n&k|3Ya)gI4mu5p z=?7a^Jmg-tk#=ZbyJewsBnI<1CRV#kJf8z)?XW)moA%jjDv=-n5G4qxv@*ty5^x}} zL?gsT42WSODPLL_ZX&2mIAC3{-e~%}wpvrLqV;Cdiwq&k|H#^0h^wAurB0{D`3V5; z4Z6ONK;l!I4%jvY-dn3IGdU@{lS*-GVaq*#+PssP14U&{sk9iq)|Nd=7qko(x_4?A z_in!w&Mrde&dow8wI~g210tJ)g`>sm1X*}O@r(PUnEL-Idd40cH2G*GCgwqL7V;b; z&Q6|dtouegyODKHK>%DVB@RImVGuN(u#miK9ST`%lB+vc1>X9uxNX&qt& zTHb+@yRCK1&1ezCj5}EJX55+i;$&MY;1|Tb<(qtCpp;DeE*}Jq3V^M0_?>ZIu9q@Np5 zL6-pLUUUFK9H%0J&gjYa8r!o7p?7*C2)%1S)m*)_q&z*4rIa~VJJyM(6;{t_VLz>a zcmtLYoVv;!i$MxKaN3mS33FByJ-g>b3Bn)0D7YY+*^^^4G~H{9mi$9f-m8hdxygkl zA=eY3b=p6U44dGT9J~2qPCK}ge`H21{x=o31WTyKnIZ39>8I!GrW8XD1Ob5c5dzB9 zwhm62QjCB)LQK)hkFLeu88=cpk9h`;ptq!}rb10ef~nJyKB+reujF}V0`}&~XHqmK z0YnyGY8R*XT8zHq00Hr0t*D*v)`X@J9uARyYWB{-!(b*Q0K`i+pLB?;-N;_E zW5M@=o|#LShkgdj2LMQnF?iGeLavo10K{^lC8|()l|jzNwr4^rAjW`S68!+saPoQg zJu(HyTJNSseA?r}1_paY zY#%1FQZ_)k2ohjD@FN#8>qRB=d|DXT4}7ubP3_7?>wcgg)VtLMJ*O~&&>%mc!t6!C za*hBH>*}mcDeHZMCOv={dI9mB2S&K|^l@e1Wl#tbtE7e_@$%ZM9b%lNEmmuh?el0Y zchsKxoJ(1$6i=AUCjKRv(JY( zTr%@T-HQzv7VQDk%|Dj4kX^*&*fG7TIDlx7t1Lmztk|*_nE$8Ie4GPek}tCK< zs7CqQRy4JB$yx`8^G21(?o7QiZ8+r=6!-1rY?L+eE%%wK>(3Vm#s&%lEPeaNQOARE z)PME~UkQ&f3=(%AE#J(c2qvsLa{UsrVFv(;>^34gikOA=<-=F(*oJ^Y0Ek!b?dewK z_12fRV>XFtI=qz-mOlE)BX)^G;#Z?5;}CJuCe?LB+4Cvm7U)r2!o&iw;mQ3;cgN$+ z$7b7k5+(uS5z(DJ7C?HQb@}vo+kYrZg3vYg`w?-#f1Cey+rEQd_DB(f8o7sjIB&r? zD9*FjYTE}iFlc}nJYWipHf`5#vEws{^9WxgKA(Q0d-w1Mhf)Q_31YH=TPeuK$OFFn zg4i+@HSO)v&OkBc*z?{lyD%Uz7ZI`W&vVpCG1G0?LyTYpilW>z4!Y)EF1~Pb{h-Yd z0Ga<9yEY!P2drmKJUzi4BwI(h!6+|3Ch>XOGMP%+@t3?ON%e`=V<%QiC|II|v*}f$ zy!DigF*2~imB-jY1Kd;nD{5JfG8*CrQod3-xR{cf%u#1uP?I30yi0GG?VghgJun7h zC$b68;2TCor(Tp`T@_{WMQUlfkC6Q#ANC?Yy0u}pyJ@v!n@4^D0{{QW=bn79#=!BQ zM~fFH0a<-Nns@Zf3IMNhPOml9?6PM$x9xx9>p+c z*8r$4Kg?~W?dBQ0O0U`b4J4T^;ez9 zKI8Z(y|iOQ*;%3kj?vOk^`YJ05_j3j9lQhJ5qk$ddX>9j^N#L846BZf7FVaEXUE`Z zG>dfGZra8Ov+x6r9z0Nun+1alM;hb@d_87?ZATmn!%&HIDc#M3=^wAM-5FYbL_YZD z;Bo$q6R(R;SjVVLRSW=>#uXVnu|&nyefsO5l@b8nv9-?FHNN;!TeM^+gNTak2*yoo z{mK;4tsApI>m+XVQ(w1)YujdyUD-hXAjUVYe5K*(gfrnC>o~m08vvD+&uX!4_5={6 zbob>}+Mdk8T!5BK&|@!f9!e?ipze0z!hr+8I6Qa73U~Lv){;7Uam5q?=mA>pBPI1E z`8KBEE!~zV*x8Ot?1dmdVENWI))irV1fccPcd|IOAZE)g z%XPFX1+oKO&{}0T*KNJUo6T)0q4h4xO&2t58rAms>JOy4ZQBxwd&>`C1qz#xF`F~t zXtL=6J7T~jK29TAmXxJ+Ab)nxo6o9MS??DZEdw-A7E`zag8;x4u^h9~XxB8>3II(a z=H?8yh@5z|xy?VM17a8)Jq^bpX>|3y{W0Dx&Q0Q6XCz0b!~ngFo}eJEr@hjg~%KzSgh@-}DP z?9RBZl;3ZMcoC9AjPaaroI8HZ*=6A;zM!;&vgC?y?|DJ*MVV#a%^P$_0LXKL<{!A$ zncU`)AkQEs&zKf4jO1ONC1`LU9xSY|b%>9)KQG-o+JCD=oIys63A}W-VZwu1`a08q zz!PQ=U3V2i?#+J0oyw#g9P%z|5OdcJ572VgZT4r@gN2nH7FtDF7<}hk!sIQn&QXTI z_B42XJW7c7(`=;7Sf!Y_$M5pL$2chffs!r)5F`59Ono=*KGzM>Iv`)+GangEJ z+YGjxutYDx5;VOe^kv6SL_A}H7|BN91#K8?n<%l~kOw>LVdF^aVo8&gZ%Zm^D?kPt z02pj;-Yuqck69H5po;Vc0Fo{4>_`w>4x40_oH|dxsL;IS@O}+I)VlY32Y2fmM$Ljo z7}yWI*kyoDGo}Lc1O1?HhIS5Gf(H2kCx&;o=UpJ!Bt;QU_EwOe@c=(v7UN< zCSlhh1{-zdvsa=vTmipVmTyXktkutvQ6JGWD z+ia}*fqqcs1*LR(Y-Sr8|i)e@}39gvI3R`$q)}kaCh1a1a5+nNCei zEd9+cCp+!GIzsEnJmv*r#)GM1V$Pc)^XjL#!0N}avdDoqP9oaf) zDo;k_Epjq=w2X{A`&<{NO8e#6MmkrT^w&y?ap(lZm>3-z*~Te9bAEY2hf`zX*@X(W zG(Oro#L9gjPe^9N)K@k!#Q@R2`?|MHyW}yuLI|P7u(Iyl2vCUU*#Phc5!A=4B z2O``NjjwvPH|ts75(!!-0IiQ5Si(&zA8dQvc0~|>ETM!l$C?l&b7bi{TQVS?AO#4u z*=xgb$7JEVStDnHErXa94<^uzH-|79 zL1yCIO6-RN7h?Bd^&jQ;2Sxh4s`&Mcb;{MhY~EoCm8A%tsa6a$D+9J=3(ZWaB2BQ9)l3j6MUJsBR1@JNk5Tb7M8-me&F8^me9%1NX-xQ zgYv!llPzl4mj?L(PrWu?PgG10CcsaeF4p%}W=f6G~PidZ2}^ZMN>$1GkcP&aWBXIwu-f2`BN{(xdIxG0?%v zr@;#2QQ#^!gqR^hj8h!b=_Nv&Bkfw+V8LW9G(aOeT71y_afNzg~q$?X!90I^{0&l=#Innjk zOhLo!81YO87C?FhoMgGiAkQ684zc=)~nH+Jqsc2PFU(7l|50cMm`I*+B z#e6uvw~o8!N_m1Aett~%Mm*n!_4A}3^}tOeBmh#nl%i!EiSxZ{9m@2G$x7wNo4YT8 zy7GKCI}*ad7FiFon>9gL@uhcr1&N1=6;ndkW2S@>|Mb0~94&*GX$&u$tg(S_x8mLi%iq6gYh&1!X=+3urNj%QIm zVjknWUju${zx9W5Szx&GV^XbwFw%8(e72Oc?|->lQDH~QDd!qcw!9@rGl#9mep##| ziZO2hCN-@YzQYwS+E`M^* zw-xwyq8_ACdpnUeTi1i!G|~5JHM9<5gg~kt2T2$PFXky`^R5Ad1r(LJyJEd&iSIdY z43<5B7!Q-8bwq?}_eunf>UZ%+q*@STp3F2mxn*)VF%^{iX0GTS?D^`SiVA zT{F%dLyva8bCDRsHzH54L}khKH16Kz?LoPN5+VStKU_bBQ+Z*5FYs1ODC#9KG)iY< zk7ZF-l4ApRvcsW4j8^foLaZR5M9cA+b-TXVBzjr3I=J6>r&SzlD)pH4l$4RiaB*au zUqQ?AU+wng);J4CgT5VUTO#-cG5Hm3x{4Wa{d7De{Rb z%YE`8p->m+j*~8x%>N=@s?cXQ#=7}*r0{q02MqSsr)e!HOVvP%Wm>zOLZ$pD>LE{@OtT3t- z+A!NaY#y2%y2&89SDWExF89Koz+NpRQdx2oiSzc^nShO51lRq!LmqbqF^x~Kt`7ue z7|=3^zmXq~i#^c@;W#wHyq(T#5t=#77#S$pNn0(o%lnuCC2api4+W&mDkz^q^1)b) z+(#x|!OblaPEJg`Tu@a@=AtkS@&kT}vn~lX@rM9Eaot7p^$fyXZVX}&K6$xJBH0K( z1`+XQsd_iNNukuX^I%}fLQD~2g_|Nwx#l067-qXoa!42D z1u$7;ZwBcd@;^0fU(oRh0CADun>nw1#u4Q69iFtq3U~)GSxG*1$*Cc66-1N$tL#D= z#8=g7pFZOhI2M6{7L}Ujb>V^49*m3C-j-TTwab}-o)U|6SQ4-qs29c;Rc)ZxLk(c8 zNaUXQDfvea3>mX8rVp+s_LPaSB6jQF@jHDxi(uoDC<<~1D}^@Xb}qCxB&*=*boR?=y1+6C(j=omc)N>b=z< zuilmO*uhK97_DIijMgdtNNL*{;u2biyMmpsqLVX#=(h7mPO>EhYt|sJrB?{@etKNH ztw|sRfEd#!ww_|?DSNeCS~Jx$AU)lE;S4o|Vo z7{on|EcIu$K34k^sI$j8MCMKP&O|a54;z`V^ihDHDuAOB0wvy3AU0AifCXAT&V_egMXAf{5l z3IkE#u0BYjkIZf9_3%e}ec(}W@Qo*j(elPDhHv@NO%{1m-wtY!0PxKqgf#l_&5yPC z%pgI`5};6y)y_l=vfkKZvhD3i79UH_x-8{9uAPSy$S|x|x67|CYx}oUv9CYGSkORk z0kcP}fHA%l>HCqL_yFh~5s-XSw6I8uc3tzDdhljdxSvRAv&a~rk|Kc}@{J`+2m|1J zS2j8te{9G0LaK%{=_m~B2d*f1(>{wM!-??&{h&`)?g>uGHOLQWRV2TT|3+5?fEbG9 zSRSg7EohJ+rqr}S)|l5eXaykVdh@=02i^7Na|gZ%CWwj3)b-i*Zgo@JCIeHiXHA?( zCUN4ty!P|j>CFINS1se&IcoZon+1X`*O014OFG?vQLwpp}g%!PTty-=0{LE=*)XR`5cI&%*s zyzNqzx5J64L2M#Z8uwltV`~tOf|ip-;1!~*$d|jWKXqMOokh%I8~}7fDT&=VeDk+z z2W1UnN~GO0$6Se&PBY5RdQNnUc$TLp34z%h_?{}V*2{d^Dt1iBTA`-nqifro)pl*B zO$0z==~Iq!h#|sC-7jcXOmYA*2pV$~q zOpRi-l!5j8i7RZ4Vhp3?Bf;2t-Wad%0{%KpCL;;8j$0cb2`Hq z5fcDnObto=Mx!>iOS1KIQE35yix}yaEjPTXYf-kpdb2aMsk?)V%@Irf|7BZR+u&A(#Gvf7%qPE80}U=XQn5 z9`EVH@eJ?{=jXfn2EFiiINyA+Uz?1v&Wrs}dDlDOdlM7F3RpQVA4-G|R_DrE*!G1K zQDP8|zg9bLVb%5F@9IOVmxUTK2l10nKbm;w^kiqr_{R#_?5odF|9}`yQ&2nz?+K_N zT3sbSKM@_U{9j3IpiB1`bE^WQQUqRizXmuaf@d}!ZLctaAPnpWE@-w`KOI#mg6hN% z^n-pq@w%RxoAoRW0s!YD$ll(S)(J=xLJ0uz%n5%afEda=-12#CgdR(82_bxfmaD_g z?G^vofq>Ej2rBqct|Y7{3l(ADELE21+RnsXum>>M8~AhCIF6-A#-FwMcw=G9t%|pH zd>pwW^a2#LOovKUY>e{&2?jo_t?xQ4+8Z4TGY~iw(pTUD6c{C1&LN+R(aDhf$+fSg zMIyRFRD27-ui=FYt((tHazyJOtdhI0qb$5WC4aHm36|Bue(s3y7YGX_#N1iEAa${b z+E~uYb0%s7L=jFbp2CSq*x_m2a-lW{6O%y9T5f8mn>D%7H}Lg5c9?+(K}-?ii8{ul zbya)VbrFcmh#c=l2a0$!rFsd+zeiWkrE3ebA_HRZoKHTGOt&>@-D98CCMIh;F?4F<@xeDAJaSmuidmK=fIYxo$j*j# zR(3QsGyv0!(A`EREgofF^!`lYiMkXpwgO^L?RA_B%CKPFx6d5Sim^lxqe$Y_+^`d_ z#60>_Zo8bvAOVP#4+jeXE0b^1r`MwN28%kBwhl$H7Oj@JN(0Q2D|!H+seHnE*|2n> zX3Ll_L2!`#6_>diOu5>vu`QBgK+9wam#lFNThdxEpWEnzG&Okwo0<{xr95K0>T|l;lith>~#k?H(LK#K6k~dJS}_9 zoxepMUFex7+5j3aU;;3IWHeY@eXM57l#>LElmT%837X~t(nC{n+`kt}3eHZkK3lVn zb{x;F!4@P{s%q}I?mgN&3w15y*J_qLOZ`U{qgCs!;dR=ULHmJuDi33jMS++{5`ZwDFWu}j?OdLo0095-6+}XYpI#jwwp~{^a0c5J3=1ze}R~)I$+(eII zQb*PiO-0pTdt-}P&g${nF6p#1JYurZywl50Tml<`MGf$bmR&i^br6(u;PG-0*OYZE z@{D6hwEYM6-w0|E#D6Pq)6d9^%-up)geGE~k^PEs(hXh?m{$rXGuV+yzcw<*28X7# zPQ9CB!T==*0NcG~r5zeQ-Ztiwd2`GZ0kh$Xd$Hz23klG3gyp%o*($CEg7^< z0EibZTIAHCcp9o$)9Us>N$g$P7~@{rIAGh{pzWh&`YV=_nQe{?^_6Jo8dr~ke{lha z{{!-E`1ckuQv6a~F9sN+^8@{ZPM6O*mS-|3KvU#w1SAy&xY=jSk5#n7Ow0s;AskVS zA^guzbJ|iuQU`I)h}o6Xz{4t5cgQZQ4<7Pu=Lf6hurmDgg|w zBidC=I&M$iq+v%&$EDfvZUXlneN0g+gVwaij=r51%g^Wmj+5A{jP_x32?+QH-`R#Y zuep8Z7tV8%fx9Qb%D{-Mf~$$Au7WpQ>TI(jjurE;pa4Ya3=>D`IYB=3Y1B$I_ZqSD zbXj1oU%X!fM$8_#bJMkYE!f;t9|raV>;LnkJu8G2_<;Z+6_C}MIWB3_H?=rG<%AH# z6*JX$_qp4DvCFnI1PBn*0q&%L2VDk=fy7$#?V*Trflb=)b+FmW;7n0Lb@Sp)&=+09{ zwaBa1W6W{I`!(PPcd60RIq!(SJ7*msQGy>5JHr2=k3((!^NJ20X5L3YEn)8&0RV)^ zNfzUZuh42RXEwg!~RUf zi1;DNN)R%2ckC(I#ax`UOKHBkr){BY{W=u)wl}rxhGTzKlTAP zekW=PxbuN7pNY}jjNt{ zKkI+z>xC1u7MXjiR`mAQvn`R^0vN>rK)w+^SVJuzJ}78VASU1c)|=?Ar)FPOF_=g| z?AIdB=gj*kO?b=H;)I4@xQ7b$T=vum({w%%=q| zKdNgt<8qZmp49F$?>?Jw^~)p9tA!UYd(g2PVE`$UyIS2r>+_g&4guZ_jboQ9` zwCkdmMa`DcztSva&eMdDdFY-2h$%)4k`@`dX8>X~CvaZ?`DmUUwiuzH=Of|w6OI_t z$4(_ACeJz+2JRXI@gQlrnS4VUdTAWf~Q? z=!z|Bqf0?k-1vchQ1j|>`qY}4MF7O8`&VR)yW&xyOUU7Mae50$lmu=y}O@L4<1pUWl0S=r~{Qk(u_)0G>qvT0ivFWXJyT)|IiHzqGBC#I%3B zj*<31r1>;k2ViBMNC-NpE*}n-RmRs1ehMaG0zi!Vg~T0S+ZoJ$Af{EK7N8h^-Z?(V zH;BnMBtpJd?`UB2Ep!gwU|~v$!ErhMNQ@pkNzg2qs9RY^Nh8CeFZjh`-5WQ0*{wnv z|Hs#r!0S|f?bnofo(Zoh88f@?z3w%a2pLKUB~wcNB%(59&MeB1u?!)~6cs8%$W-Ps zD=Kq}N`31&`+d$?`<&zJ_r3r3b-(rOz4qE`+H3E#4~X^U+4_3LYoD*sGijm)036`` z<@!4V#KU|U+ms5XBp}8KFz}7VJD=SCWM#+;p+QXR@3&)=lR0B8k)}k*TdzS((fu@g ziu>GV#;<*suM3?s$fB|iDlfk|<-Be0j|U6dArXrww0&i>@Y8AG$7{8r+TPVZ065Z`+iebTfH%c&y*`~l0Ac) zj8=NO%SwSwXsAZ$pc~Kvh(TC9#f*f}-wt(F z?=x36(f-5);#Z^I>Okn-lJC4l#e+sXP>AKkLTol8Nk6y0;8aOkHg0YcLn_;)ZY2K~ z`9+k=6QyTzgL=K9lQxrG*T08-2A=JLCO#JI*teW z&s3}I^fEzTGbri>f+9VOx;4De%c*~j?U;d;uWA%?GrrJARvs7E!JHl|94cCeul@_# zEQmR~IN-!wvd874w#~w_z7@;zU9sYN;91Q^1qb<>43e!2-XVrV&EBR|uyqi>E+2{z z0E#ekjm|n5GAD7miOj)PFZtlDIwj>Bz2$PVDbFKMUt3hKOUy>Zy&9m3P#CY|t*BEM zlTZK*`v7s#FCR$YRZnfd%5U2ihZ;+P4$aF5U;rPja$#0 znl6hSg)nFPM3tbV`C?)}IFqLHKj#Uu zQd@#cX=#;fclqg-%xYb{U$bIteZRC0Vs7hdz_C9%XfrUbp8)XQKGQU()Q8-2M%Dg7 zc0i0n)1Dc4b*hAk^L5f^@`^gbe@6LmlJ@od%{dtOd+nF>n%5kf1~CZt%lzdL2AQ7m6JJ*%dg1mb4W z1!naxX&yZw3*gKy%Q4)J6_h(c0HjZu!r5Ygbef-Ot39@-3S(u}Nv{o`!+3CGVrsoQ zHD*{_T4mV9SxGvm-yXPS%bx7$*D?y$jdct2SkIGt>^u`yCMnBbn&hlMYiOV2v4aQ6 zjC3OIb73nMK47!M$?9K-#6yygG|A$qLc+hBZ3l&{tG0Y_-UKyUN{8zi=zYG|^J<@I z5<`N(&c<#(CdPd~&2dtx(*0rgKBbz!-b3^{pM%Z z9_AB^mMwEtW>Bp?;VuWgp!L};&Dr}ot#-uqxV%q4IOmCWc8s{~rIQKcdwk}&_`X*+ zg-Z(KpdxN*{ek-uq1kyGYk+6lNI=LA-yjELn*RQ8dh$Hm-Y?YP9XDD1dOnkL^7nk1 zOm;3ran=&s$aW9g$X=(Wc9))Qz`i*KtV6%p|Dw~&+kd5ZdWr4XnfJxhY)1=A^yCPJ z%u|b<`CDtOH*f&BV}|V7`o}t9&!C!#UIaU+FkVTcF8^352~P zgcX+7C~mEgf9Kz?g<+Nn8r)Z&+XL{jh!z}a@N-4i>H~Hrovtk;U>Q9V><2E*byoLk z4(w|n07VuabDv~*wRR-j1kjT=u6d5lAdvpDajmU))C>TIr}IF%y0YtM>(sN^bR%0? zRf>&Q|I*c#8Ijs{wOG**lw0NvDs@D>C$yx3k|H(b&7>XrzGHg|{0&f&1ZTZkNSA7= zMfErd2B>V){;pBREjnbgEQ;^44B}y>o{qyqB=Dw~)wt6S`^-gmJE zc)kGurc@;|edSa#Fz{9Xo1p!iJr0Z^p8$<&n3@CFdUZ%gotD_WaNuLgw{fCczq+Gp z{59`?w#{&+!4@ZPLgSInOk?w_+rjd-cr}0%h%AFguvS;P&mM;c(DkAwPUFhn(t5S2 z7Y)D?2D~@zMrR&SDlU|!kmlc;hdn~rQ!EewXTh>qt^*bcz4)5-x@AwS*M!m$s{jaM z2roavdjF9pR)PS~Z|{wK($kibupX%`pTqJ2F*1t|f8B7>!)Gpy)WqHxP{!n>$%Bz@ z?sDMRDQy!TI{~)tm`+M)q(t_;S8A;X-H}BTjw&S|T3EzyxNR_@ONX zjs=O%N3r0E9^^mw(cVvr{;XFIo`VL65oy8Maq-NMK1~^NSg*DaGo9*xWo-cIB7x&QT#cIISgx+vAIBF(~x+D|k zy2{Nj%+m7gAd*G zXd@LDxOwnA^6Rtlh5lRS7|XmL%V|9^*GzzTp{z1dd8r!%p$Ar8YOH)v@4*=R)u5PU zT)>k%_GvMC07wRjF#z;-n5ajy$7!~VDA5B&DQk1LnjLt(9dbVqLyd>Y2UaBo?MQ!7 zWj3HCmV94hok3TRVlLPKSi6?ADS;9@x1pL&8_a$fh-tHrW?bX!++!U5*2HT!?~UVg zX%#JF3Bi`jZ5gM%gV%D&7%|>$OyYs58t5Qy%B)}mtv>ZfWoL$Q`Njv8tQ_35Iy|Z+ zVNSAw-_31D+j55p<3(|BJ_Gs_CcXtH*XU(|sk{J0;!h@}anc*uYT%R~TE$b7_#P7T z(DExOzK~h>{kQ51-MY~o0vNwAn@q-sjO(OjZUeaHgDG;&SHFyP9hVK@800XoJBH#Z zi|LiU2bd+|V*G+SGl7cRzevxl2RNjhD{^cC#vS}kS13FHOp^W{gQiJV&-RX%l2J5B z2>_@B&Tx{r`SOsL{DIgLXT(`TW5V{e|J4o-Fb)v&;UcIoYJ!L)Z3|Y>viI1a7`JYF z)L9+g_soPE5A9!SuR5RtXc<+BcJcw=P=#N%&2)m=hHgJQhk~sV05p^!#9a;;t9lN& zP1iUrf3u_{XzV?fEz>%`6bx_#Jt#eaJsc|I!ow=Xy%`N)VfwY2qq zHWS@3c=W`{%y2lLyVQ^Lv@WqXSv&zB%jgM$*0PskHLu&OQ3KEm1pojAkbQo4t>&Ix zVBkzTVA~x0^nYHm#Z2v`q-25T5aW`aDUZLb?b=jPF@|*_T1=w1S2x6YR0b|{U&qDa zYJ$ZP#)Fy1Mh6$FSy#QRJ-1n0pceorB|gy&RT=t(b!g5Tv|bVF2MA~1%B(|_Ntf9J z*g-raJJ%BkrKV6IJ@vsj0ll;3+54~3J(<0A0O?N!?*@=w zQ+~8(6|x600tn3zD-6cuB9T6tEhBpZAf;6`e|8q2s30`$@QRj_S(AYnn=>%OOd?e;)1rN6otJuJVARLOxs3V+H;lK(fEh+F+|2l1-dn((kF5u$hVxHRwn~%a_)c6+ zRAFl+JFa1XXnDSTLppc?9f43fy2EGB*3|CMRB{0vEuiJ{IV`F|pk7QQmT#+~`7k($_> zL@fZSieOzKTxgLw7~{~32BJ6l&)uB4eabq7Y{C^lx@LhTBgTTP=G|1*gqm;#0QBm( zNR1NH^K*6DcQ$KO87d>*kwIn5T-f&%w=C-;{baWjJ5rgYs(>E&3O_R*Z!>vhhZOpx zOEu>K+2>^q1429jmvZ(=$Ekf7wQ4UWyRRpwEy%x~@xaS*uu#e*{{!NBGI(e}H8C#O zyf-(Vf;JvATc30@uQIq-0~`~zdu02$`ox>jh%m4p_+6^sb*aUKWk1jly4tR*wj~o~ zHOLQ0*YCPE2jij$0I@c>z{`Chxk)m^_~xs!MRnX)Wv81mN(X)8$O%{>AoPH_N^yL; zvj?7LXKfn*T?0Utcn&dkKX}lh@be$p?uqQQSDq4Al@+Mb+fkeM$4=FGlo>2q2LP;K zxj^E!!3M^2O+L&r;YFB|)|g^lSZJaYfoP;k-Z&>pp_jkXuL@_0QEJ(km)$6JWX^h9 zl#~wayPABcWHia-@gwdH;5{j|^L*@vfVqjj*~O{_ya%0G#N8ULusLJ_LQp1|Zp=7X zlmFZ>aJNh|doiWQ0+4?!E8npS{KiYL7hDoSC#`pxTKAlN?_PMbgnsE>*9`5oSsEwC zUf?>BXW>~Cu!r1)qCS|zIxSB-q>19dF(Jn8vD-~cgHgO7a`xC;IEaP>;^e{ z^9)ahJ7S2Dt>fBpuH1jRU0P3+$2;ZzU#$TyapMf-ZLf#!!Ad7dR!}-^7PB<`9lmv5 z#mAgY;JY1H=t{0*MFc)5&F)n<8qpUVOHemmQe2$ z_PxmrY=D?P6g)H0J)Y?!+a-cHNeq|vsuQOkoi_w|1~JcRjhQ#ky*sXAa)qGIfcTK~ z06D`G@X^A>i$dN>QD0@kLhm}IK>h}vM?^iI^|h0&W(^7Q{7rf<72E!4p9G|0kn_%k zZv}Yuc`5PPMd^g6nf5Qh!W3H9w;{@JsQfZ2BkfQeyumSyeUSx?VSVz`6$c5m-!5Zw8Iy13% zSN*J{SxDTg0YCWBvDfvzQYHq6f&IWwM)tE;AP})1=m*tnGsRvPU_2V+2NZg0uTD9Q zry~HwIK)greA_+bT2K%l6haWAD9Z}g&DX7`mQBmMr6#~N!80W?x{5e`>W{XnfNv1L zkj0C=m=oru7iyf;Ud;r%+JeGlo{`cz2g(~ipX!@OM@O^vBml&l?`BIRam&Ao>wsZO zUm&g~gtQH?!-VPd%OO`s13-sWrOGGHCI!OLlXZU4tsBXJc!0DHRx<64I7g#Vg}d8e zhpp;D=bYii@!~{T2Kxv4>xdj$1-yX*0Alzd4s<|v>ja@k%pz3$hKX(wDsjtwHs55W zt;m~ZiiH~|spQiKbi(RQ5=2-)Y?ZuIjHC9Y3aSAl1He2{G(X_i-c~8aL_-2bM!f;E zhxRwV)M{V@=soK7KJ6Zi?V0)md(bdL_VBkvcB+F;^adB+r>!b>ygN1yjNy%?i=AZq z#_;#!7Nqj+EP(($pn#9(XPQedj5ts_UYe0}U6QUKn*6~Jq{IkXRlA)ooq7UbZ+^gu zV?FdFdfEyAi0e)};_NSAQ=6N{HERF76+IDOsLRJoQ5nCoQ|uzlp<+sGE1+ zj&$J62|zmq0g!mRL&4y!iqw z0RZALeQr9$*gV}ibCInUY+bT6S0%Ioy>{NJ;=~S+2?|er)s2Bh#(I)3cjems#NYbC z)7W`j9}w(m(At{GT17ksY%EkDMiAtMu-p2M3wOv!k&`4<1^{DWRp-m<+jQ%mYA~n9 zJb)Ob-rVEU*^-j+I*Nx@za5va7CiUvbGzcwRPUyjwpLd!0iPp1qj59V30K)BD`G6g`7}o8|&3?>QZ=}!!IHHxjmBfKtfM7r% zZYNSYE5F0Udu??MEnYL=7MZ;a01FHD(EVgc84<(-q;;@!bLpGzJwrR62zl{4h{=Y2 zd(Gfap0f1^0|hb7QvT^~LA{%%Rd5kKA)_brPnVT(AG*%E&U*i|QR6cr6;9BMnXBFB zS!Zqh*3RakWaosqt9+Ah9Rofd{G;}trWOGJV}QO->%}W4?bb0tW22^JVc&fljP4=- z_+EN~OyJWX>I_qbSKd1w)ENRmj8uojf!zuaj1!jhz0539%KyvF9H)$aUl#$4b@_pY zH4pUNz{z@(!6+L*6fG{xBWt}!^b9(zDneXU0kouwr>PUX&h9NCo+^6un>Zv&>fH1O zPQ)yJDZk#)Gv@e1L<;kweN?I=L^x+R{OYG zP2?5^y#zCw3y^;tsQNR{m|b|A1{qb+Ah7mQj#MsS)ry@##{dA;1ZOg^;6PH6VenX6 z)uB`EsE-Xh`xW*Ho))uCKE&-iK3vD9uQ_Wy%|7 z$aV6eZcn>s`!A3DK&J&pSHL#_oYCu9uEldk=Pntq?bZgA6%YoCR~&L}Q1=dp)^h7Dp*D&C9M2KFcs)OipijB@&MJe+xR z%5SVw8zxH!02b9HYIc4YARtc8YUOv=>wN*^js3uwcDkT7mp0l_1(GTu7S>39aMJEy zGsDd#a%`_`>ka{D1W2RTXM+n3DQg4ZA*#v$aN9RToP6~!xma^Hfq>dY7R!U606K;CggmJaLXu^~^8H&&8C%gnMm9QfUy zX|xRD*W?>=FR>wO;(f`RoU_4o_wCkFG3Vhy48m$lUyUbW=zUf@#RNGy+M)vQDS|XW z41XC0XgjR0wkl(SCDh77Z-#_kygN)f9IO5xTvXL!567!saNF|A<;R?Oe!Da=mp=Ge~ zv!qcM^8?YC-lK1Rp`#sZIdJv{fL=IsX?I8u-0o$n5K}XG z$QJuH=?`4h0x*U`)&N2;C@WCB=T|JTd!fWQ7p+e=b%;@NPJ1|wE-iSiXOo#`M1kGX z_vBex!*=ByG#S5<-k8ZsXMga01#DJ~71j{O^|&Ulddcy?Wr zsP3fnY=9EOTX|^91^?)3_lO<<0CC9UHm(-D)gw-O40Fs;1Cx}!Xlu-|u8P(K8@Nb% zMZ6dvHDd*kRr4A1#sxh&dn6F-YtZe?t+gjKX9@|LETjP7A<*|e@8PU*c3q$3%$Zf? z#HxxQ1exseKkbF$WUK-7NQrJMeL=6P%u*%{OjZfZ`E^b`K2PH@73|dys#qvNOViUy zf&i$O`6u^PGxET`ZT2aJfb4ixt!y9ZqAuqV?x>U zI^i|@B|YzPpLb2~p2u3bCV@$ooR?*Pdt* zduMY3tUwyO3wl9v^W8~qrKfuKo3^t6-#AqkxnC}j6Lm0?#nv|^+}0Ekh` z=1bS#=x5#K=n;t< z&>`+XOU*c>GX#$n-2RI};sgX)IX5z*7e}5bHw$5FnJjvCVaJtB-#kz1Vw1-|LFfgy zA+eWgeb4CG^;iM`#OIn#PayHFnmx1^@LGRdW|pxJ(jnl_`^$t+6aZ*l6Sr@FTZ__T zWm41-W7*D@Hx%D%i&FH;k^5Zv{!6Ti>}b8oQ(` z2Oa5PftMoADwlZD87YLNL@xk9M$9ohv+eQl0RsTy0jvsuW%7Y3;y3<|GmT^~Q@_V_?&KMb1_E?5#n6~&J6B&) z=5bq>=%EP$plo#mKuVW#fK|7!d&whcE?%F{xXyhZxbxyuI`uJ2N{(r_fT*$eugU9X znr#aIsTI(3z8w7FlCL>~kCuhb0TLG$qJm=MysEWukP^t$D8dE z{v1>*L0vLyTAdvAj6^T`0#_t}=ce*Mu&9Ugn?dTu_qKPk=vg)OF9N{Ip3Dz8CJ2cH z-h&9M0x^vo7YlKZ=~5B{I;;4c>QAWoETm|b5Yt z%5XDn5#_ziop1z0ykY9_%^Ur7&SUZeg5Fd@fW$b{o8R(XB!_VjR9=4L-({prikjCV z9KVoPr)1_KNI%ekBJNESA2eR5y@T0)@q_d|z3sN1)?=~(RC5&ksOIx7zN&+p4M18z zmKc7j3^j!p{9Rt$BP7Wa7v@ zj0(#6_SzKMMr^iD3tLQSFqtgFCA1!4dpxKL#S0Jyi5!T47b2f&d+{_HN($mvdgqES zH1H?q_0Ja?+|lZ95)HHt*UqXl*kRRqRkqdk7|0IFyOfev#)Op9Z7IP{&;yTV;nh(* z$MwnFb~@287dL?zeBUaXuO|40C#R4EO0yN)dfX03&tr_mR#*O0kPN$ z0E?}E417H(LIA{xIIO_04%}(34sP45t!~|j5X4&1us=`p9JxESJxK6Q00tWA`=XO* z;IwDiN@?wYO=8|o^+b!r1m1M^?SH#OAn0N021XlWI-w}_2 z;!JhTSrhC$4K4N(Lbw##tz3)ageSPmUC&$&S`+~uD_h)pTYQ5LwJ42&5RgtrPLSRX zXubR`Jy|9@AqZpWkfyG4Q2`#spV?<&FcyQDEpPqdJ9j7gk0PmpvIjAZySt<@jF_hv ze`e1rWDnxi8Kfd0fr3SP@XjKA?g!fGBA4NPuB2fk&Ur19^MY|WsHA~b?Z>1BASUm~ zz^P=dOIr5{8set%^a~GCAb9g2MYFd;F6^BiH7!HYYR61a8}^_pg|uTbR;59XDvMQ- zrEQCIX>~9x5ddPHjfbWP%|+upMH}MgK}nPT(|TiC1~G#;9z0`lF7zRy8L`2F4G@#( zz?n15Y9`r^K+Bu5coPN5a8{GDf2+f&*(d-AF0Z6~(94u8zqoF1{KWCv1P%WLfEei{ zedM-EDT9M8BSh4hC&v|Zc7b4mIi@@r)OQe5XHX!*VBu6leGQ1ONkJWK$RLv{Oo}=e z#ci+NOq-qI8N^|?zEtS`RFLOe;;sh>04+lsxka5O>js+`1R!239ss5{Q?zll{4vIo zyG~j7+AO_YV%&!x=m#}!@Riq_4Qf@0K||EPr*Mh|9`d}K$MS57h!tyc)O4j%)@|^*k7(M=w7Ke`HIa26$n)^$=8L=l+#F1~I5>X(|(c+z7xX1D~RgH7n*v*6i2zDq+$!1-a>dxJ6t2C630Q8Ed)l9(XTs>d4 zUAA{4F*Ov6etNdt`DcZ<%pm>Lqix*%(X@GzZDL3UY=DLBM@Gc&?6W@pjf{O{x7d2S zrOCekjCtePQ3KFv%XgDb=@PLqK?01Pcqz*>bw=0|gaN)S23|qFL5y={T&8Xtu-4|8 z#GLvOqtnGicdlByE5m}K!<*aKGH%&G%kVRq&vgtZX3JmRTLB@&$6#54<^oX>P$rzFH<*r^_BYA+@vM#WP6qoS3Ee;!N}dfCJ@Qyuo|pjd$(V!OAW%HS~hXIh33(q0rg-js=~{ zlv)!TJppldA!O_F)AfiLGZUJxlvUuXO;xiYBhmzAd zkq>2*;F(j;^bqThk7w@<>Nf#so!1LMWrsa^P|Mqx8HlNc)r+TcA7x3syrV6S8 zh^aUF5O>k{{;-KLC=kQshDgNtT7D0T@h@M=w=>jnjzZ3v_OxDBm>R4fXe8u;K04e_ zpTII}K!T3N(sJB^&wZ0SUuD!T#2Yw0Lg~ycoWv6Yf9%==_E?1V$cGXm@$FSay}k2- zxvFYAFpd=f&H*-dq1NyWT}Jc_&H;!siCds5tXi7WIfnYb1J;=f8Eo|$YNPKw#Dw9FaCrHqJ82nf?(EFI!=gqU~#U=x>D@3;LnrETm; zG{HCIEmrC9kHNyLG5@{vp>L0nawiA?)DH;wHq8hutcCs4IVW!E(O+gF0l|fT6L4JKkkMmX?1})>bq<@bBdxjf5pL%aP=99bR*8F=;se zXPq^fLKUS2;_eSrbH;!o+ryo@*xCt$2Qgcg8{87ua_Jl)!uw+HOFlN zyiIy6CM;)_SkX%wtRcT!ibr7sON(T1Y9@8>Ta``qUNOqv!y52|?<`r8*8+netam@~ z$oXFiSwKvY)*U)9y-V0N^2hUgY=?o#0&#PR&1n6Md?F zg8YC5+lOi&;IULb);boS%tbz46tYwSOO(Id-smh<5Wg4K%dW*~95#rz#0HBBN5yw1 zI!SqQzxV7c2aW>7Od}R&`Nb`Nr!7)S%iU|4746j5d%LfPeJ;<_TIR+pqGhN6lUrPO zWR|k$s#W>vTf2429RQTTPkX%J9vl zO807jDnjrxX$orxV9uV0f&IV}dl4 zG2$eSWzyzKww|SmNfP$WQ=9VB4HIMTp0KS@1E@ZT^NcHx7M^D78z+_?1Zodr*vPJ3 z)5C3qdy#m$i+hpf8ZNS1CMy_ZCf9?=(T$E{9HXj~uDh;n8AlBH1Aq@MTP1O|4)5qJ z$RlR-#S<=wzF5KR%23p{5$WAgNVFPXC%@C`vMl-I@~%Ii2WVPtppM62fLufcUQdGo zg7~0((=OzvyE30Q>p?yB#(BLL^>RWXb`P@rwDQ&9OwJYJK|;mWd8su_bZtTF!6)-{ zV0|G@77$p&9&lKS{b%weeanEk#uY%S04itHm$xS0)^ayS0^-j^mPmw=MnJ6cpL?wQ z!5?pFBQb7Xg8lNDT4x4+CR$8l|nJryYFlzlxA0OO=- zg5>}2szuAe>9yXQ-Jc%fGqXrny<_7rBJ~P<{RdXnA~kvK-B|e$#BY3A*pU#%Fm33P z;21#6mCKmV%R1YPAkJN@h&{s?@Dn0a61REjdv}?$@p0c`1jO^A-az%PPoR1a;@8Ds zn0$bkslm8ZrEUEO@ifUL=xcBUhQ4P156x|2NZ_J;=0~NPCVC@MbbCQg#9q2@o2r9_ z(ftJiVv3+sv@8E4+Py&04vH_qH)j^vA{DJl#^c%r8odYLqynG^0#3(S{@w%NH4sd3 z0APyK=EF>S)nyC?J&>LIKD*yx2L;ydZ#}2In+ZK2rlF&v2}6ffz0|{ZtA@}ygN101 z6UChJ^DW_T>Bb;~2BnxFzoHAz*Xifz*nF zkZ2uj{IKku1gOZxIrrDdys@c%1GSON4_Q1lANl7fcUvIzY61`+lvWwbaPa{PvzH%S zrh~XKA_Bn5-8>r-L5#$s&t>1UxENpxkvA<4>jZ|@(1X0k#7lz}v~004W0(#ahK+?$ z&+uPvJkkw#GjGfc%DJIRYxG81=tlS=)w168WWWP^a$wOEWK+oiv9`gKzc0XK`K~7; zr#NBHJi#;Pt?%;%QvG{1fL=7X(XreGEieeez-pf8yaoY) zx0`cpL%QAw&Jh71?zX12v+#qzU9|lVJGekqKulZc{9Ap;lOslNz1_pM1=ur)Uy~&7 zUePF1se#%bnUo>5faoz$bf(8R_t`~zYFgbG+kKQjx#`Z{?Ro4$Vs;5I67h%w z*&|wCBCQXU^pSNJWH8*m$vM7)Zr$WYO9j9|>HF`;ZY6}+tmrQY z&W9H9kDXHL$*by|TLBO~WU2Ib{Fxl>65tBgEzGIKYjV2%k}ktT^p{U%`8f71-{_%f zy;e>tT4woj?aob3=Led>d!UcXmeXvRoKA!MfGVR8=>***BLsl>R>Hh^vQ)P9YxY=R zX&?sS;Y>pkK=^m3EH%+)_H+naZhO@xgi1G&7L}qU^-k*Nh;Cn8w;-P&2A{7?tC=2?NRC+ytGw$g5u#HC`y zIJiaP_a3UKy@25tEz?@?WH%ks#9yrUkekO3Knxa;kfK%WkZ$W+J;?9!sON}qseh$k zGB^|RNx`pm+Gvyq#Ar2dkIxfGc>f1GY<sVAU38VgXV>#x*#4PO@i;aB`>&_f#n-BT+7(xEg+_hnMA{s zvPMJBGJ%-6JkoQz;zh%()tT2a^;ka$`RQX%X*nC>wrYUb1?2#X-k&p^n7J0tXEQ12 zb)lmcooTt98X%rwxu+5dUF4KZil~{z;a3VI?A^4SOFcoR-~+&;3V_#~vxiOz>2;240NW(%OfUSACHOr8Di*e! zq$vvnK$ccUJ^2Gjby#}!VO?P~uVQ>MR``U|oFN}bO@k($8?RL&X50z{fIgemrAodK z6IA6@9%h9n*nXpc?KsSznoeRp|s=XGgaiEXI9O%X^wG;nrvc*xh zK#mKw_$X?`2{oQ6AHP(7&Ehi@nP3a#2Q==NWUB=RI!`8zUaSHr}2| z#LP0nI0l#f*vOjmiZ2N-7(yDWqK03-h(iA4YGU6qf7(g~X%JvU=Me{Ta}W#_UJzs< z5iHft=I11Nz%2QuXxlYqct6nJTgyh-w1kW~YLFk0t50L?zC8d~gH;*85NGv;3H$eY z)8K@m2hQ%|Zf3IrYwH#(Tj+et)HOg1Ep-4Al+lAO%b!dtqSGjkB^M+Bz40})@psw` zjo(Kv+#x7*`G&JYfHO7e^ZDLUg2@9h!=|_ocXuiEMC-yLvs?f%6b{nKAN z?RpJ87Ej&Li(Z=YL16S!_pcP%O?s+A5PB()G{Ajw_(Y4;+9}w8LqZGy;sIZNm80-e z_wIq7`$o5x&QoQG35#Y=vjNmEu!PnJyxuhdmv^Jc_D%WunjPcjS4RzDqoOqvo~$*` z@q9b-RndlIa*B_I@ROW|cuBXkiPP(ibBMc_`b=jkCZ_-~y2qoIAVl{Q|JiEi6quyN zF@O5CJh}pa&ag%gKBe`>cxwVc{MyW%?g_kS`u}bZ4g}dG2Z9a!f4A+vHoS-~P#Nva zB|y5E95b&tSt7;|s0LvSAf|SrSMEz=f+}1|W4lO9P$xmLb)ADQ|6sCqEoQ*2#A$Kr zBYiKsQ=h%n4|?hiaUR7t-jdC9rs$*9Y^ws_AO_#GS>z9_fKF{voM%(mVudRQfM@M_IA7nR{Cvkbx{T-bLJ)e{^2Yn_ zHd?K}3u*u3NsKeSY{6ugc*;ZNv=1^yw zZ%q|l9Q0VBYW(o&4cB2!U0up<9eNa1`mgsGa^3kutA*hk#AE|u2W-IStf=UF`=mrq zr)3QA^I03>=l$KsIdfF;*&^C27(f4lWQS}OC$BlUWxc+!`9-UrM2*r`ecQER_?SU?XwVs$H zi2&TCmrc4rFM38Bo*t@CyqY9Qg8<+n4Q&0`^I`4p%|sCZ;)2r#IzAI`>?&OEGcA9Q z_@EHRSV`vAYl9(i;Vm;bAkkC?Nvcv}|tAFvdUth(CJqgfj+Yfa`PZwbdEKAF0)}4iJH56^PeFJwp+`T|)`% z3Zv`R5_;Z~B`hQb&x{7hKO^GZOQrN?MC^$bAJ7ll{(F*6lFYs)dZSvv%J=}#;oG_F zc>o&|#Wc&u*a0z9fK-PPf+_)G?--qT^_}m&Jfq4WhDv~Ez2>^`(R5pX$Ocb0Ars;0 zrlf~n2=ZK3%4S@%Lua^VUw`G%ppk%>;S*P&GJN*V+rn-clLKP#{F(4XSyRC(r)sYK zyU|DjXjS@h@ndO2-iSZ|TBi%d^7UB7%0a2Djd~&!de=AthZ^9GL5x-pK9W1(^TgZX z-WY>iCxi#(o0B6y-Im|>Us;aHxhtwm;>G9dI97yE6WEF;@gV_Gd|ci1&OJ6L@Bc(c zaP>V4xR^~AaEG7%TkE#T1)dk(#u&(s_P#I7&!c+EbAB)}(kX}9!k?AGJ!)ZD=N|$$R13TkJ zaP|Yq9zk^rSP!lmOVc1fAaUwQ9h}XJ4FK3AXS{M}F%p|BJxAoAN<$&$Muu1=J-k&*bgjp-#C5Z(!^vx&=0zDw7wn4p{xL5SDwpT?3{3U zoAItynK5pN0JMHKMT(j@=mVcyYtG+#qRpu@5JOS3%LkDtm2`DRCbF#jCVM;@(kcP`79qgY$3;cwY%?$Ktv=EgYfpz zj5SZ)C>CA;N2|}N^LRRQ4D4e-l&b}SZyK34gA$diYa=tF1fWK2fFSOY?_o#vqg6+1 zQJMu1h}klO3*`RLoiA*Uj)8#~RRXMQ8j36O3@qYaWS8akVXY1(6!?K?O#X90DNFpR z3-Tt{&>#Ss{@N}PbqOaFZ);|!K9m&LgAV{8N72-7A*1~A544B0d#DtfI4nY0`MA?| zpY7e@D994ti_}&AZN@Pqd2;(GoN%jm*4uYV$ z>6iYt5@HU}I%ZkFn+h-gqwCzcrkajYW{p4)_+QxTY64~%1^E6CCfQ;nJIr!$UmdfY zr`uH4)@FPWT80n$S3Xd}ujQj(UxoyX*Io`>a7I7nYJ3qI09*Cn$y94fV%nr$lMmIn z+qq$|CS6Rz8Y~aQSk1ORHQ7KWx1|lt0!*_8R92bbuYTInP zoL2EJl$GCqVzYq36&FHGR9>NuvEil_@1&_^TNp%10EoFa2{!H&>1d0R#FRT67v;Wu zSk#^*w02(nkNjWcY01o1#n{5%wR?QL?EK=&_nU+TKq}h@3*K_8WvNpC9b^f_hosF| z%Sp`c=a=xUEoC7US)nu&(#k7NxRrcM<%$is9&diyF}f&eo_oAk0~{B9Q^`gz=s0ak zpaqp7}S>9Bz}NM#sQ!f|5VH?|Be6F!ZayBL`6Kna=d419j7F7}z^5rBCz z!U3@!0N_eJvZ$<ozkC#GcZL;)o;YF#DU;$Spr`B&+J6&<|ug%zEm zSw7Q>Wzro0XwQ3Qopj;=7O)lKBK887t#6a#$pmO`(Q0Tld!jf{`XrpLgHJ*N^2Mtg zY~D#szNKZC@Bb<^vmF?89DGC8btZI<-?@CaWV@ZK2acS8=Z#VE%tA??spnv$>6d@# zEX7Dk`y+5Q8O3 z1mdHYz7(;Z5A;}}$=&VzzIy}zD}y%J5`q8R6g4SjDVd-jg(mne@#^>#d$M&Hbi}Tw&E{;sI}FsFA2hO7;kro$=p49 zxNF9@`tY_1KN{o*bgJ85+p$q|0zmvvs(;;$sXdt<3i|%?Dxcs>ZD4IrjnASpEz>fH znQ48qdP+RPCWv2Ic|5#j8V^<*G@kAGzP0TER#sP-9V~`H-wFMv@0>Svy%wb@fB*m$ zC@CKpPi^^NzyNZF=UkqmfhGm;1O1>PITi<ZmPN4jy7n<*sDC<>JicAL=+@<^ip99&mjC)0gVI-?v2zZwF$|15VL$9^QMySEd86 zAjZ`>x8xfsLD+o!T_i#87n_F|X2z<9Ih&1&Tm4c>$FIse)^%7iX-p=mWT18QhAR2r zFSmEBY-maAbyDUK3y4A3^nrSn%4a8(q8iX;hR06=iCu{1kTG^@9^^v51 zl#INQELp{=MFz!oS^(ztqySIp(%*jL2BZaWS@{NWrlP6c_oa47>3e-E*2BA{`8l$c zSI5c@J%b%68+E7_)j&lF+mV> z9`tVd3yVf*?evIguLy3m*IB6^3vZcW6Z>VnY^%&u-v<3mW%0-qA0C}xDKMdDns8#~ zY`8>}x#p-UX>DRC*;i57+>{w2-_TC-UAxm8+9{d*r?o6(MAVL~o$6A*5zaT41@KhO{Q;n6x;jm>jh z8Uz6BmAzzK64BAb2GC}q`?T4g-u+F_uGvXp54)swY+VnM@0aBBKasm(afmyvziO?} zn<3^FiF-BR2fw#$qAs+UCl15Fe&GKm)YKDfOOtH-L6=WHrX!Cn9Dw|QOzlD*93y)m z9u(P@0MTPPk}m&*U_lSW^+Zvju%>lSBW8B(rQ@232L!}eaVPe`**khk;t^9x_cW~Q z+(HdjUZ3=&)&i4*qGeRd9#vjYNB=i#mCd~yL@22cVn}!-{Q4@#4mb}*#vV9 z!Z>tpRKLkNJ!s?D0HAU<95o}pXtU)`dRDQ`2`8=v3fcg0k3aXz#}lf~Tj>B2^JM>j z0I|FdhaPD!7oV=B)!)-24EU0$K0*M-fJ=`6g5SzK&U&?!r$+>70Fsaqts94%F#ybw zhCR109uWyW^xKxtorrQRK$(EIys&W$Qf8=edr3qmk@K+98$A8{n}+i$+x>*9Noo+|s1W49UV7SIDV zUI74_--ufs-P+dnuS?s;fk}!Jp3w_ho|JD;!iW8jIxXi|c|fPeMqfaTSFR#;G^|9D z3E1*QMCWzJ(Gn0NP9pK^r+xc)U;)JQMUGu#>>x2ApmGVT!s@jS0Hs3Wv$Ip#y3T>p z>`G+%%3WC({ONmJ<|M8YV*~PL%PqFm)5IPd`(wm7cUEU)4=0)GTQ;J-msuoZkl?pX z{WOVa6>cKO&UUu-AdlW814CLlSYl7fSnCKoTNmtbGW8i%J`I+iG$GEo;YdNOAN?-0GiT7vftaphQnfSjAKrM!;rs6D=k??m+XQiU zQCqgIAHuDkd6*WX36(WPj1MYybU?mUW}@cZ7zF?f`6!)Xy@<+o!K>E0x{XvoJRmmE z%Z+}BXPt1svR*SdXad4#qmKmf!4Xs#nv;gwJi6g?~ZX8 z@<+1bA1XRbslbA`X8h)#LH2Ay*8$iWl_v`1qd;!G&{i3?_93kBE=Nn4|r~ez_S=^yx6xc*65?e`c zf3vWTpJr3Ot)#S*#eAS#rA2+y2ybAkiBtw?uas1dawYXM`b=zKg4>Be8om;Fs9W z!M*euh^kQ#gn{vQEFH;qst2=ZM{M?9c8fr$Z`wBn_Ay{D5lO!=MgmYSVe3^It<&N* z&I|xfq`sJ;%d|p4(*s!RX zuyrg9c>j5kZ>)Fqm@*OLMsh_M@3rrtPbJGxcg+B$zQ zOAZisDJYN1%2ZQ-Aa{zg>CK0<7clv<2B8-Xc;b;qbp^naJ$f<35x4bO%hPJz@mhaN z21_rE))~Y%)VE&zZG0)%fhT}Czn5ypahZ?}^7~Wy1lXH)H@^xXraX182K?aTn}+Jm z15=&~1N(tzf4HRsy(ugBfqu~GvtQ~%nx1etRsbZUOypekDQhLSp6KZ&x2J8CK;o3M z$7n6~h*?LGg{OO|U4v%}YJ)P#E%-kppRgx(T5s&3&DCs|0?wCYaV( z>ES$D-%Qj2P>MCqWL`_! zT9q2lSB;W#Mj8QjiLr$-^jlHLDeV@kGF|UYn)Bf31-I~G($uqV@y;Kt=hWM~Yq7P=CLZq*?Q9X1gH3*109^6E@^%?C98~E?a{M0p^G- zRo(rOQ$)a-u5q_o>QL<|WF}#!in1AKG2{ES6D2h}Ua0;p7Qt|Efo|w(>GWDkoptO0iQgQO&gjgu?x}wh>-}B#Zkw;(evV& z0Okb5JBw6GsP=CbN4&jeCm8!z47i%DtZNR+wG|w z!C*_IO}#APlgg~)h3EFU50kYS=(`^qk^@W0A_)9O>$18@C|JC>Q)RsR-zMF<=VAdM zF*dRInG#vb&UD`Q##$+OIm9S3Ln+6|2f1YxG3nT(xepD` zyqsGf8TZEH2OD6-1x`Nsp5C7FT$2X+K@Hzur|ZgItRyG~a8Ht!{{E6}p%erFAjUOa zIKqIM+m1|EY^hOAP+@8pbAC9S#0XYbpFV4gpWd`Y?7Tq=IgP<_(AO0oc1}kEFG>>x zfWGOW=ZUh~Ihwl@VSpe^RWQj(PXFt%GVakc8Feyb%sQR8A}$kgsU=GbCtrR^he6{o zKul9cX`ehd`nsHU>K-veIA3vzoHFoM87L)M7NNL@zU8O;9?vtYtakw#iA)y?u)-K4 z3g{M!>dtLw%N;!s&@<+H(F6H^{G+*g)o1u80AhSL59bP^ttYAf8rsg=sv4}VfY6z z7tsG^I_MT)W@PhSB?1ouVs3q+?93NX7VS1$^KOc(AjYX9&HuMid1H%8qAA)53*XJ7 zmbWJI-m3w>EljR5LOTOfDhvYys1t_bB{Sk^VQu=JjIk#z!s@2Vq3 zmayK=EnT2f@@i4cJisXbbd}!_0D9vCPuYKXPm9}QZ~Hywr|FeqdQ#1qUi6Sl=I2cT zp+}gk3P8y;+qDf_>3WOtTVY_bN#Oi~ZR}zb#|0sU2u8H6B#aqr&aAxvIEdY<0VFKc1m>5&|QSEk29)*@a5^0eYePnvW z`PsICaiDNJgG9VWGLhu(%QkR)RoU(Jb%-{O4L#6LeVXE!yLDDJZnd2NpfwQlVNC1- zotD4F;SVc|RP07kkf%4H_PW=av^Hex#FNV;krpyRtrg zrY?Og-{lq@G+xZ?jzQUaq+J7>C28D|66-;72SO6+L0GiRJhInTJhndM9-d_30BgU; zv%dd{WqW${*dR%kJjQ@@Rks7?>yv zFqQ6H4j)fPVQ+x+gbBns3?6<+v;Fh%`2c|INDr=x1i#9vD|;~ero zllzh$yos{l9fW6Ic(x`8&7+9twGo*@*o)F4Ca<}C?#gfZKbIx#-E%Feq&=Y776+K? zBoK2^b?QRM8*27Oy_R)`6L_Tn*y$xLa}|RfCaz-sx2&ojgK=UYrWj>y=RW_v=&6*p zdqhM6@ypT$0C2$FMa478KOikV;O~2m<4RvHHO1Gk*IWv}<7gFvq_kn2Szv<*qb zbZ-FQ*bCjx>+|Al6_H^%y`Z<6ZW$z!eEZAuj=#-P@~EwZWb2{`qpX1TyH0vYGIzQs z?dqn(m$5{!MUWXs#0Bg=81j}>0Jx6AE1tQI8ZmZL_+-+?-+#ZNYvXq=+_fVT`N#41 zoH7RPD#;`!@dmC&hdAl9-+w!GxYWu4j5%BGRbSG6u`mr3~n*!SgFW(X5!IC|D^i z0KBJ{qQrd~beEB8d9^B-4Af1~_-%J=;W4KdtTJXPD z^ngt=58{I=AnMfNV8*w!1M^x30IgpdGbfR)XJ2EzS=TH;&^r14WKtT(s_+-O0S0qE>0S+>cMWd7x|#M%#t{Qd0kqGQ%Mk!-(7Spc3JL(k zG)Mi~lSjtA8&p0Jzb-sbkH8A`sNUR=Gqn4nUJ$I`q=NgRgT}L)XoqDoN)UtZUh?5U z>ETY5`ojjma0mdg-bD?41K4oM@hZex*4I_7+w+Jv8lx5zNTCjmqOsEclm}xW0 zk4&34{W?$UkQpS1AwF-A5m$sWi|q^!k^l@6uluIFSLDkaYA<69=jUGWCaONlW> zR>cZBmEVpDk z;rqEfErK#e%baee!f@9s`qkCm%jgD(X)*fQvyabZ44M~+xw3ogldY29z+~z4gZ?pSQ#l=UhlcFXfq6gXn!Y6D2 z8e9J9dYT=hu^=uh{9~}oA9^)`sY}r>JK2T<0uUp6g4Q00dPQdWr+b%a;Q{fwN@XU_ z4@6@c)Vk9XI{h*er$GSVsa57{ap|Vm{!_Dur;u_>`9VF-;j&lcbYHzZvDqWgu;<;+ zn&X1?D4ES3Krw)uPL}!QmUd{KsF{1>0V#|H^Kx<7G~0w>?-)FFs?m^SM+xzwm9oEQ z(pxzmE6}GBu{;R7w9Fy$<*sbALahaW?q}F@%^W2JJNF+Mrj^j{frI^NV18F?Z-l*| z0sK?N-}|AVLk#{utun&aD-M=!bJWb7Zr=a!o?YP@+c+lke7!p*a-(?LyBEX7NW*z4 zM=EzS^~#r>gKWg9yt8%2>P}>LTz%U6Y&IZ55F@fvgz&43?gta5*fPf;37~S3c;=~T zwkm`8VANWtxaxaf#RIm71930$rxYKip3A1aKWDQgg4p|r1nk=K!!A#IK6HMrx9wdD z1QdW+Q{hu5OJmB0fiv+~|JF#oZDZELVPFb@zzk0e)@EszCw`zGl;_US;G$E50N8vt zo0}KCb*-6R&lvv-z#t){1Th{;@a0npdLlhQN0B>yEY=3hH{8jnxFAK}4MvO_?JuRqX(HtY~!*xBQxn=q#AZ5G>>2mPul|5HnLfp1CcpNn$h zg^OVeiS5t-kVow)ng!8Z$yGm*<<~s<2B@L%N!Ka=bjNk#{I~kq1+yUfF6wPPVP!OUQ%JSjmnL1d+xym%$#Y(P_y7~MTqAPik^zPK>ha`TvYAuTMmAX-Q(^!9!b zlZ|6b7rCz#UYi^eNI?91OzDsrzqcvQ$+@d7JE!+W%=#F_T=L>c8`kNjv@C4L1Zgk= zV(`1<(W>!mHIVwlKjGPY<{0Ty4s~;k2~9iOt%CUbs5g7r_U?#DqI31Y%Wgn?NQh~M zP+^+kvb|-4Egu%*0RjTg7#ymuka1waiI$gT^w{7k4;f?VvlK_9WojH+reTCWOVLN9 zL7odXn&P+)u+g*Z1GZtnPC<;88D;cY%cG-ywcR`TCIEx%QXxK;yq>G}_|B_#3?nhC zOK=&iE)IyYsqCC{? zY1a_CmAw{}4v3FNBaz!WCFMJq1Bd(XT7>;U2?w7Gl*LWF}1K-#;R`F~`|U9;hl< zw@_8ew~Pc`3VP@+DDdtaUdWiuDfZ5&l3=R}Tjom;poDxC%2RtX2Gtua({{_ZdeDhY zP?64=tfxmz_VJ`L$+X>iI#R&_lF$d%s)^ALP4HE z%*pA!@21N}@xy8C$zjV}GHpuU<~|cU`sQnP%g~d5WIE9@^+fA^<=2kd0JKg3Cg#MX z0uC#vYHXgH&t`?KH~$-7`&9hsYUh}IEfzimX`6d|@i8Hn5O&K(pXh}m+t=q7h< z8+sWah=-`N1e%qkbh&im>9IoJgAD;LF)9u}7?cWHr&8fMeg=d=*?h;Z5D-8N@x7no zRLz9fMmuSg-07zWXws;MB~Ro4b@4fnJisPFjNN0u&t$D_$>J|dgksk(e{(Z0gm`j-l3T1dO}^pnK4(&vK)t zX~`HT3S#6keMLO%L3nr9Pdf&d)}GhwI01wimHMJ1f2lP)7dRtpDiVLm&ZZ$!0`TgV z7v(4eB}7#iw$wVMV-{Q*T^8@#>Wr<;`h3Zauf{~wJFy(K}9VtTOpo&InuMCb3f?({I{!apIVG zT4`^BVZa1~c+H2C+;{he${xftawr>(eCOQ4!HH_8oD8Jg?nGSA zaQ*OJ+gQL70T89MUW;zzyMx(-(g88;7WG*A`FSN4gcCDVa=``N`S?WiD?AEO>S zS`7lbWl)3X3mRg0Hi%LC{9|c93J#V45cBR_NG9+`OAvtgk{Ahg>2t}4D>e+6E4FV| zf2TKl%}!1y(N0;$MoNpMrpY(OD?i<6{%7@rx?FG0y#cr|_N0PQ3lC8BOvr0U0pPQ@ zeMYBCYO}JNv*qyih$n)B2QgWBqQp37rrYg3S3QsvL9`%-OCbP*rb!<8&Z_vvRuVA) z_-+tQ>z1_xSrld&ty3kk?S0r;1wkdoP1s_q1X=^}YWc?R+VY_t$WOQM5N)0-xBv#w z^FQ9j-yPrgU3ZE=4Px}L=tTCK+Y7!Ne&_@?&_@b{u&&G^rZDLYSv$oJr5G?l=wa#S zJ>6FXmfGDhI8h+x9tvU>uf*zjbdJ5!VasIWdi`6@tUAwa?yD6H6wk;YN&Mt<=FMTy z|G>4IXt|#Z5UK#4al6JhKOb^V?>Ab}NKcYUy+F+8nQ^-_iEoa&rg`>=Yl|$=GK`$W zs}B9B%f1z(;yD~P7Kl+a7iwf8B_wY{yz(6FkYvWJT}R64rw&b>60C(afZn0j1gBcp z*RE4ywgFxz-zTHqfdYWIi*V!iSY7Tgu>c@UAQs8&g=OK+N3RCM69AkS-r<9J37l;Z zI)^2kVj)2O9Vcrom?z?tzh1qRRg zy8UD!{k*n0u!!Em8lWHut~hb7-UK%{DTIOjz~|EM&_35Z(CP>JLFJD$(lOiQ+!|y6 z5qE643w)^8IG*A%*x=e)j^(#S`?MrIV%FcV%4YrT!Ti2!!r*?u3Rt+iV}R4@uvQP( znDN|q+Jp_y{e^If5OP9cKTJ%%IXcAFEuoD7a4M?bdN{;;>tT9p2gGbS^pv;<*Uy3C zgbQ~y_s;rCTc}CM2>|~%0!iY}ito_2Z=Nh1Anbs5v_4I2WP;SBI9VLWOUDnFRND<^ z3F8O)LHqiZx7P|7yaoY)Q-bWJ*1yYb_Tcmg05NXd0Wl)etA$qS88!odR=HE5chY~D z?TD?7^~9NV4v2B+k7lb&%7cFDro(_STL3uA`jUXHQ_VZQz@k&kgP)o%85vsU*$(_a zb^i2hvEy1b3`-gW0GtDZ{Hz^+1!tN75LX#6!3j2yPTtzUa*><=E~NCKcrvK=ZqW_)peubp zzOqDb&Y1j_AoNf)*Zb~ceN)p-(356VqVqjeA~eE2C&XSh<87k^Zj^>NK}??IpRTg? z9??^WV>7c^Gs{|E2FV4I0Nl;u4gV$RK^mifRfxe#EBRoc@}HYrO&r%Ts0svt7^=(_ z$&ypw*iwNRf_Q*@)1_cTjEC=+u3Qq{Isj;WNw>6awZ8Pm5A9inWY9XZVCW07V3^?> z{d_eF5>t#wRH$5`m!O}HMk0886*>b}u=z;uwyM}jo#z=bmWoxNc8eMtF?#BIslek} z?nYk-0I`0?I8dKJkN~l1HIjH|=j`x9e;8z6$sjpMzV-tW34QlN4^b@d!ug1M;ry)A zzDqvQa!;j&+JkNBWhI5iWrO&Zi0_C1$&NPYERU4Xhs{j#^qq(fIzxc=V!w~K4x}4D z2>@INB(v|&+zE3U{^w-x9nLMY6$`C`IJd|$%rIWKznc#EUh9nF7%-#w{O{khy%<{0 zDF^@XO}D3m^XC8K>pI|ms{a3DZ?egH?3L{?p2tYYEM*nhBT7agex&R@L-q`1Wkv}t zqasNmG-xT3(N6e(-uK-1J)d*G_xXGMZqLK-^FHTuKKqP&ZuK!5U|I)&g>2R0|0eO0 z(&z3(*g1%?#DIZf_R1B51{*KwmW^S7n6c&3;EvvHWH5o2!^XPd0$K$z-EDZwcEPQn zga7L6w#-4E7gUsj{#w4@6(IroIwm9oy4_nt-`5UpPOg9*w2pAGKpwiE&QEv!KHv2w z#P=}JIEzhc<$7<@?3q}pK>+;TDtqvT%9vkjMN5l=U)6NC7eXG~`*O{c4eRK2U8@I% zy;F%>f}2kFjhgSqNm*&|_{W;ui}GBR)w7S4n6=~lP;8>U^(G;ng9o^Tn7Ezx+LwOX ze>6|ek&U-qh?jX=E^8`+590p*TkG8j2UBS%&cneUNO8t50eaT>_SI!>%_CfR#86&; z2?TH=nEIcRgUicLqZ|8XN|p@8^d%PN6)*H=XC86Ev};4*h;K-N_`KgTY>eLk&DgVq zwlSmiTe2e9QN+fv=*8g{`B&>=$+&7BX&v<&_|BQ7b)7z6r1GZ2L(krETZfcD%n&1A zMhae%dGz0i^}3HGM3N2tZQ_;7rn@4AGl3W_C&&X<^!>K^H>`Cd9#|m&#F^sW@mRqE z-~Bfx$NKgFQB)-%v@*9--4EjiYmYOono`u(LBHye_f5i@XgvbsQ~5J!%*Q4g+U@l3K5Lnj?B)U>NjpLIo{JQ)Fq7 z0gMjPa3x&Vu$(UtIeVH z>uX+e2aK=@VxEzJD0xO=?ALR&tC~U=#PB@*)dmCv?nyPfcucQNn0X~Yw41FP%6Tv6 zg7+WpWOYpe(GSGn`|0!_dxOLW7>-?PqtB!psce%v;)D!GwMiHmgonxugqxjseTSQ!v**^0wUuWTvG5!0 zjHYdWIX0hxm`MBMg7Pnfm{8Gs@QPOy3YEwNx6I-4YN&F}RmkQJyC|=9t zcZmP@VQ6Pj8jb_t9_b3b;SMO60qVUe@<38Do*+1l`X_^qo#twu$=Y_Km3<-u3PtEYyjjD?Ze~H!>`u{1yxPf4qjzePdym<0t@3a82=z{gm z#j&O+yibBra+|o9*EWf*^9V39w>!SO-mx?P#iVuPJ8HIsjm0e%{x-H|g+R(!>JyyLJOs#)v3Y z%fVv7n=M~*MG4}I@wT`_rs1kc?bctonFd-NEC0byDoXeclJv_XH){v+i*N~hij^QR z{Zr(dSiXM}RxGjIm5W)-1K;C>4|);`40=++L!&es#<)OCAI0J+!^PZ#n_}4*sd(0F zEuEWu9xJ}_(lS?|D$m%JbZ7R<-aPF5sOlaYGKa7iQ-W^*xUj_698n*4&7Cc}bxI_~ z%b7g!A^OG~V}etl<#X~gk7%brRysvo{mJ{2y!G7k(|5buLPGC=j2BtJx&0knFCzcw zB~09T-V54nO<@O?kj?S>5JLxShJ|%f!x?U2N0t(#HsHVkU_!e(YJ(g0P~4#xurvD6 zZ<1bFnz2sz7v|SI`BOU`!Ax;CLx|7=<&V_@F1&y9^po08O*umVSy{L@Z7_@2P^zph zAI*e}09@Pmg!BZqa8(Yk?#q;TR7YXA7vA-USFj0K`p^k2Ru?c-dO;7E2|bat+|zRY zl+L<@aYL}hLF>3pv!o3htfXuTOXw$YV z(SI>u`tR+yB&`P%FVVVQ0@dvF$mOgt+SbVm_XU1hRpY#bcu{`u zbP~L*)9p#FbRcUG!`o!h&$A`=B7gPV6FKXv)w^^IGF1qG^nrBMCj_SqU!7js?FC*2 zVg@YzMt+yPFKDB)(s@v&A1$4Pjf*rZ)_(d+4>Sn?=m(E>+U{B?1`BpL;0p3P1hKqv z^I!@6^zCnTFXoOv4Wg7%UmxTxc|yFu-CaYQMJ$K{z@ic&Hb5ieQt60ojSuW`7YlDb zaTn{{Klxk-!mNX=wUx=xL6JAUm7YyP^#Fft5Xkx>8NH*@Szq3lNA0GY<(}jkfM7H@ z?e;YKM2%Skivov%_Yc^p=Q=jJV4P$-46621qK@!Z*#w0FGk4^Tox_nm>g>xmZv?mf zTt2^Fd#Cw&2mxhT$^#*6%3=ioi=Y5r`|XZSswOrx@po*{2w&U7w{HqJ+^fZHSOPJ_6-0}}l!!XZ z9-pmU!vu2>qg9-E`cW($zk{8|HMe>DpJ#g&)4LibplDDSkfrMXbo93@fe;T^V(SB& zINw4xxACI&l0pdcz`@YEg-nrf%WptSt6|2zdRN0ZUvdqQRf_uNq)GaulX1Q%a2VL~ z-zoZ@5aWDdU>NlNzY*sGG{^vKSsS;brEA#;{6EKAvq5>tvBVtU1@S0Vspcq}Iv|c& zss}L^spyfNrWNpr5m7I$?c>@QJQBpPv5UURVC$BLc7Lt9Oa~2P0R&)>C`V|N2R2u6 zjS{RZQfp9piy?AWa4BAP!KGPW-t~42PvI3hqc%RJr)*|{4a6Xv_1@6BAjAO2zIs#p zwOP!ZAfu!-Dr{L5NF#Se=j*1%i9n1Xa7LKtEDY~8ax?q!I<>S+Lwh>jk!@$a9t+70nU(PRZ_5^TtydYtX{`nS6~I1qps zB`Rhx!{n(dj}HuPw#ZvLPA@AOdkF)>pgz}@>w_C6=xUGw*n9qRpGa~ioVdDQ1 zLf=FoG3%)tUu5*^DI|@0Pez<)K+DwXGa2p+Ot<>1h*Nx*<<{lbt4Gm$?9l5&%kP;$M@3W!xf9z3ZnU)90Xv`zqs zA4}cOGcw#>7x`i=b`-6Xj}DwXG4n-NK|<$kKVr+C>W3Jieu(kyO}llxF;YS6SbOyN zzL6`qk72^pj&AFotq3vY-J{bjuZ~7eYX4a6*zyrABkBGcZ%pB;{4~;u3*MM{uH$rF z5Se%r28Kb^Yu49Ax6y$Hg#qtP9H5QO1#mptI!AtUpPm3(Nnt!_y>sK^bx;!^=GVO^ zv_nTpae6#6&#_>7JfUnv+5zuW7+%q$!s!|5*t0ugH4I`N=s|LzIi$Sqe09pQayF~gfpic=w$5LV)8&>)KWP0?iL%Tn z`rYpj9#5+WYXH*(P)?TSX#YBW{<12&HfQ680MH~jxkUQx+3tSVS)eQs(`WJK0wjZg z)hXWj?xPVSh-v%yybd?{4-Y61D@G90lyP4??f#dp3uB2Vi%F8_J$=3kii+~jKNHI{ zh$#)cX~pb4@#%_g1%d&Bn6j=hxWE7U^LGiamwPHUe1n)g|8{SEk7r1u-UEAFp0Oy= zUN*~rmRY}G;wFoNo^sCNTQm6k(|G;nj`11OUwUi#MN1 zZ2re^Z>cKg8Y6G5OXOZ!2$9L#${N?#@{b6#j6tv;ChKeEF2x>gnvqNc^fZF=_Wo6W z_+-I8=LGrobb(a!YiuQB)bAU1&* zQUpM+6td!N^JFF+YAj0xfhB$B;=kn;rW()w37+;km zJ8hSYcFiBHj+Dh0_zD5ge&ydzdNb;{ML&9_niz?D%?&{mDIM&`*PP3$O;EshY0FFa z1~Fa^*&JWTTWRWYPdhDtvm*my1T)50u*3LTxp$Hq%%B5)^%i5{gjs$KmaoU|b-qey z)`tn|DU@I<(~zOT$E&AK-J^A2-m)U#x;Pnn#gP^co>Rv9@6FVUt)>zS1H+)T?JDT` zjma4r6b7vPe3M%ZW8ehP2xY+~*tdPIa1J+)X#mE89^_1Iuy)^N)iG^TE=%b}KL9K& zFgcL}Pg}ceY(-C&GWq~0l7P3G|DrYT_P{W7>H55&he6#!UuOXe>|qFgmxrvO%3)8V zJ7;#KrA>xFuQ7H0|G^*1X}5LR0|)?I6wO|WJ-)#;8Qlwrp9ny&1$H*!vFvUydQAAe zgtTHU+HS~H+uvJ9e{=qb!T=D@z#QX(p5EG;+f}HjB#<76$DN+*jio})^|eN&d(cg& zG?!L_;{F`Wh5K{sO7zsqG%*Y80KllCgWRsiPHSnI=nep8U6`g31e0OxdS+WLEiLQD z1YsO+6rSK|9+%dC@?#cll$I?3SkTC?!9;5Q>Wa|-RM0KtK@ajLc)z)4wGZ5IL`gwP z*zy1X9}1wP2Bo~M$6)P>Yf1ndshcGb?WDS)>;H5Qi~Sz3o6H^#UwY8(L8R(wnu^;r zq_xKmwl_|;ji`p8hhF{`!4$a%oxyrq;VZgjvt|lnDr;-D|GY$l8xU$VTkCF0k`2ne zO6K>261(xtQPBpczXGjO@vrwe_w8BD>aReH?Rb+wB+1KZGim!bNfNyCt5NgTRt~-z zRruS%n%Jf=7La)DYf81G zu%}mvMuX!{Vya)(!h(t{<|Rq6(O%q-#N}r83=R?eH+Whs&*P*ZA+cZs z@x3*5bF3Nf^<@re=+|^R%*g7t48yAG&nGZAgl~9K%zOg;{wU=d7iv;%DB&HDgxKbE zbY8+X;cmL95t>At2OF4wGL7bGny4!kGhYAz1Dq|-*YeoG+T?IJb%M4PvxQ0^ddXku zl|bgB*A#Sv6W9SU#=zF~Y^&eB&VBi2i<^KO@uqx6)sk1l1{TpHoSaqh$Z^Bw^F~FWWi3lPt49TYoH$`fzqdMr=%lJ=!v|Ij6n@p%Hk3hHsriX(4ip07fWw!Q3+mUdYI z-@gef=jA8G$oKM+W);;r+ORQ023g)G1{-`qW?KE9wD=71BE<&wGpX5_PnJRbApTiQ zo~a5VWUBgf%(prio0Qv01-9XhAM!RQu>705;=^wELF*ufM^fH$ptkOTET7fEYRjzi z<23K47$LxyO5GNX7u7*A(t6iKFA_?gaSvVsz@(1Na=Pon5qVshBN~DjEq6;>ybjnv z%R4$O)_fZ_7Aq0rj59?Td57{6MXb*V#{^`k9mI^YU$n{-97N{;!Cvro-|z8;-y&~h ztNYyIoZbb|>#8K^ff;@uk<`Sp3@2f^@|nGP3I`d9@i-E`sZR>|F4o8Fo zF(yI@e)5AR|B;7gOUcwJbxELXlV*? z5}HEHb#~ChAMx7#;_Cmu?$=QYKThIK)twQ%HeUCi(3jO=^B}%kS|2RGlkXb!^Lww$ zjXgNSUETsK05D~7iUkLG`@NTS0ccV$h@lSx;IGud%{nEtX_yiXfQ+I^utw_pZ@%S1_A1w_fbGrW{nlr)=|UPl8H$!<$g zLN<=?tnOtENG9?IC=g?STt3l*toHfb=+>=7%=L$O^DX8EC=3#o;+(b{MnJ6b4dC1hq+ZT+cL&NoY_Q@Xn5LIw>2m65taD z-|>6=htTbSuo)2RoeXTuF+o&(%lU}7nZyBrgv^)^lVDPAnyrGKo?CX9!7&de@sWy^ z-QWegZz&=zB(1|N`pEBQ47Ox0`)N5HP7F&L1VBQjonA;sf!jB6vCg-~Y5It^D}d1N zDcsBDrulWPV4@vB!v%Cm*upG|maAQK^F8e}d#1=G5WV2;R^H;=YDG$2N*if`m@U7) zbEoHRcxR;F+^=*Vv&6ZiRkSQ2F$sqvVSHVCj&`jUqOB=|jTgq7By;F^%!|$^LQSLq z2!llr$iIBOJ#ljdS9!1{5Vy&u<4{}>hmQRGycVg^0|0zE?7ZI##K~wq=;e#Cc>o|v z2w!1EJc6b_d4GLuJOy!QRnll>4Xm@%WeI}>pqk98TF9s|CibL(IV&u3-&dn}^T{t; zk^!wf^QSfqD_)ihpPUkIq!-0ja7wpUrBXWknB_NsG)vex zWdyJFN_Fk7#+d;4Gd^00YexU5!;P6`0f2+-h=NIeK{!R~O~qo6!iL;hr)OC;;seP^ z-smTeWkJ^G-!H$&wE`3_==EtqcbEK^RoG2VS6{WBrl)3R-_8RgaY{o_`YTy4CGmyV zKHL9^-R~uU`6Pd((!u)D>ij+22qVLY+am+9V;LQYd`G+P^)COwOK|>jIX(7h;6nK|E!A@YMgI~t70>ED)EfO!d(A6teY89&Cx-j?#G5J2( z&fJWPq`Bs~8Lo4YnAV$6>qKo#~?hG9w1Mxi~ZxSa>eLZ*)aquVU+$ac59xEWn zF61Wxm~Ne&mc`?H(i&$?-c-m0V33-);~?il3Fb&6h(UNyqbC#DYNyf}^Z@;hE(vD6 zg>aO=%yMz>gGoa-7xF5a{@>@*R%rrqY9D~sJJ-!zo5YVz-54ut5L4FJwPzrU{5~p( zX?^;`2r=JB6$QqD7)#HX`Ee?M0LD6F{?PWCcM~bLh~Uc$h%D)dmzd+YPAF!o2mp!k z1!abntE1bvHV%z~82g0;=+<-1IqsS*0Vo?*2pHlNKyaD%li9B5qSnYBJ+RKu#C4uu z9V`2W(&RSZDNvM;xbUE7T#Ks}&>_*Z3}Vg?^jCDIe%3NJN`n|;oGAs8UTET+{^Fob zI(hg`tw8cC1{-|6`m^p|>lGWz5_$pg(JZCB6$6ycmDl!jy~*=ap`zS**cO`$g+9os zZQiy_x7&80N05?Qy)w;h8A`%nVU>M-R^&&J@u#$PvWsnVs!Fkqy5!c{ukb0VY<5gbr{qO_Xw96UsftajdnnH<0E?oQ_Z`qi# za%FIz;D5LG#kLG$w#->7VtM3uh5iv@h>-(4KDwQETHsc?wXR>nM*bDz=JJyX3r8ck z&Q_(xDL2`o)f@hOf@oczhKsyT62vqp5YwPyK9dGkK)geV5N<{h9vVMh^KNPz0Farn zeAZWL90b+JGdUk9s(*d&bT1*aeKL1m^~#xfN$O>(YfutXw7SQONq5JFJpdL+FBV`6 zp$rG7=-_1Ds{sI4)5B*aM1WL zbS1kK(Sgd8lNv;GA>i}ZySe40H0<>P!pG-)S?m1b^R<%Q(paN-$9fPI8S@?uG(T7V z^PyBAG!;x7XezJmJE_YoliUE{qUrXQ%ac~kKj@kGxyjYF)0=_<#Nheq7rw6zLM%LH z|Lc|xuBM>aA*Cxe(&!5?2l~QOt$W6r0{|<<;A|GRo8jl)IOvKG&NES#P#JsHuB{wg zx_;^O)L5qnaajR@cT`P$eQ#2xo!Zb$j+!Tfd`&1ZaRvaqb62Rz)>*O613*ui-U<70 zJ>~gQP!q)3@R~9kSor?)p7VV2bq75$FqfDo*FYFt;&hUJ?b6iv0RJsL(Y*B`%DRiD zx}p}#hy!4+Jn}!!yo*XVC*}8FMXc=c^F5N^Y8!fDVJR+8UW@E=#F`#`1sHPG7@tm6vRA>P(JkrH#uVPXt}vW6iQCVtaLjX zYRfRb0sx7RF6rWVBI=97Rf@X1ctYp3zCwQL+7u@TSevfSd01PunJ1$Mx-Rk_T{p|+ zi`pBFp@KM_jG84IE|=%4S>vbAaYad%0Kga+*zmPqMwG(8JLg(VU}G;F__y6M1_R%i zwzYOPDfkq3cj!D=e)>Uo444mt9V}&h#9{|V_m$wiEB5w}? zF#>o;3A0f>w9MEzcA^Im3=zRie)S?h1Ka0+|LW#Kq4UN7!aE~cCZ-wqvUdw*%(uuu zuuf8P89^XLB+2MekKo^Rs(8M93B5{XL>mT%K{<+*){AGx12rfN=)9w^n~1dB;O zS2*AXWVTFYp=By7?nbGJ6icS;Q6MKV|tFJ83B3zL|vrW=yUjou*Mq*}(6vt%RYdv?%h7b$kn zse)b~L3{S|zg&$H(9Nlkt^Z!weq6^O6SdI;d9VK36hHoam(Zx(%vjz*Os(SnX{M=) zQ$q^{7$}J8vnWm&6-Er1>Y4!fZYy53URI&Vimqll{eH^j8_oa#5+Gdg8Gm{}Ct)&d zcJq7fRmOh8z%VH7N@r8Zq+AUG05eGT(zHY9ix?O@0U*ZtDG+12x#`A7(Sxt83KG2w zIcQF`SnEXVl+?q;+5~y|pQm1oRT_v{UL$ERB^_MR&1HprQ^OUu6!i)bnDXq6tz+#T zEptT*vtG`7#@ssZ`Yl@iFW&N;`OMV7?w{!SMr_LVd6z6+1$?;2RK2clK1dS=hCyGQx}amfnG7G3+eyGP#JwCM%Y9Px_eNR~8vRc|j&4Q~2VJul*T;z=fe(?UfmfEcCSil~LkES1A z7h~Dh@LH|J87pI_nrMBd6i?86Sgert$?Rz9zj zoh81O-w>nzA@R=RJEDpI@mofeBk>no|8$~sY{Q$6de)#4|&NJWca1tyRn4{V-ph-AT3 z)UtDe23p_MKr~ja$FLx*Jej$fD^iJuPH%mrJ4}RduMx+Gh(TfO{Bym2=g539OtY&S zK<^sda(G!CZfu+)%LIpkGyZ%;m;To5H82d?xu~hGnPNd)L_mV)B0}m7cWJ4bBVKxZ zG$(y)%&;<3v^(2~NcO;5zcceZHQ>^K#J$cZm90qu0ODN*YI<&f8{>*pf6X;18Y`3L zg4T6{>TK%NBpp6Yfe!xfh+@$)%1|nE_T0IyWy97$d|Dn3RDKQS&a1!uK%0-LDhWXA zg)S`c_{KKtH?8k>vyzyU*ZMAT-#PMom(+5AL%LKw1%>*C{x9fHMVWOa^mI+43fM$% zbE?b^9Pj8u&N81BDF7h8Yvi!n9C%D*;lQ^@u%-_B=BXM;>bsxMMkg5n(0ayWhl9A4 zdGk#zC3C+&c+W4ILk+u79`tgr2q0?kIg94d*G8F_G|<44(g1qHOY9uWciRU>2fohY z#~{Y1ib?#@pd;E+ZFuT0<$-0zE}mc5+EM$1S*8aorG=HA@>3@3ac`^j8Sb|r82);# zv%5@BF$2urw*G!BxRhdb(Q{gI*1iD1SjIQW;%OXZ#r=^J?RNKnkfe4#jD!|Ti{PC+%fv6pB|qMmsO4`YL;#Ae zrP5V%`DqKVxcV1HF7PVP6i0@+feq|Lf${J1CjeGxUQsW%nBW!$0)(Y6_IAC-Q?3 zFKjvhm9y{mHZm7As!4}s zX*1-u$VD@>PMPBj36=Ekqj<=|%$2 z4CFtolc7thd2qc*eA4hp+*A8HYz^wb0I+pz3$XQ9RxNN_2P>Dw@PdFVhR5jq z#hEOz^4=!_lCunC6`nQyeQtqRrw1{WgZqEsZBS14uby(F8`wyt90+ee(CK5YLIiPY zMGRS!IPz-;X%w*z;W1w%g^YKJVit*yMoHx2s`J`h&7K(mkVpfWPAJ0)Sn5(|w_d_B zQJElUGjq|@!RfvQAB>BYd0OG06aL0Cdj>Zcr2aIUR=tUx8`U<9zWpX6FB%jEB<{-;J1J&0H zpGg;b`v>Ms0EqdvCl>oQSKc1$C?GB^lpvN&Q?JC$Q(h{4qj_q#Y-GzUkPv5BARYTN zTkIfL3iC8!ZtlQeV=i>UAVCZ^2mmXT%I3;VH7iD&06^Z93S5ygf8pI9VojL<3>3?@ zByM!^XP0-dQ(f$&quQL(j^5{E=M!{>okl`@zf@EVP%ti*1E=pFt*a7aTmW#ec%c)6 zg>>froZDTuLahekw4wlg&xSr1IcL!rZN6sR4IqRPN(gfl?iU{^9dW}U0gzCirKN)~ zvU9@>?M-G!5yTkmYhpk5#50rFL66TFuh&P-v_pf?i*R9F-MVfwH*!UR!@x0bozRm9V=`f27}WH{ zZM_C$EI@+*ICS@vBuX+v+23O=fB+D`S#YCAj7iY+Ie)uWEJBO}F$f>&&?K?Lqby+5@2F?t7;t7TQ|gOPG~=6w#h)mI&XJ=*U)atpgPr z`Fi^R2>^@%EKZOTBF{cIme>W}Ex?|6>3(&WwqTQR03dPvkh4L;8S{31H{rl~K}^1} zS_!_vO6zMG^dOC2gBagB{X-0qJ&=C{>hYPI>&R|qe*ht>pLfP!E3$81$gQ2qq%?pq z?`JRi0OeOtl-7CNq-6p)7QI9C{8!g>m0<4j1OS@7{Ycrw-7kGu8-tGdEGXnYRAwVu z{+gBR4~&nMKL8a4h}QM{Ml%xb)x^epK|I_i9?@}uciB5?A^d3d>$SPmrGL@vm^lsrcuD)DwBFY51x~_aeF7&Ym!7m}~3MCisS}bAF7EgFQJVjkj|4>W~VaRK!Z$D_IEwI}3kU<;6;D17*)% zH8xg)c)6T_(6*yv?Jn+ghYX{;$ZA8s)F2x@9jP zb)|#63SzWceC3_mD~p%$Z&H5CH82zr3vwDsfOiH}h>>SPEn6q%fYu-B)hgIO ziuvx1h&ry9NQMakuUK*oZunB?D~6`!`qCt24r1DT%wz(h1TkLS=p+w~3!_X9r90*0a*U`x0$5VtK}a6pE%(ErDOfwXiffcdnbtZ^ywUEx88_2T{Kzadr8DN zUP5MDK`Vs?%b)iYYON0$S(ATEe58y#{}WxLk)QYa#{#tgN{)NyS$+A^(lIOW(^Vmu%op-<(|8X5=??rb6Gp(XD{YnmVc&dpvN02UWMuhT!rGaP+3uo-@PKu{pC2IC)guTkP3;<`QOpR6~dihYc1WL%y{JtQx zxs1H|zTPr+*&`6_Y0y*8Om&aPYW4s!02@;0X1f-xd9b%vuInV%>@`~eVH~3; zrw@90_rYz+_wv0ENA)sdU>4WkbuR#+moqOv5e)vJ`n6qY>9I6W(*`{Y9=&J1wlTBn zLjfd;PNanNdeYIo>I2!Ls~{*6AiVBxv~O#!_x~L2N=>r|P}K6pOY662lQA;{%^rHe zHZv58rI&?29CSskrS_O_0oy+}CWC5q;K2GWKxhIBI3V*^G;mRP-6T(VOfUB9@8(7j zkUb3!153QP*eyV{FbD()x}ve}zx=K%c0D$L0Ki#W0v>PJLQBt_>?M0UWg)tw4{dI@Ra+b`j|AVC-(p~1F@|KZ25XN+Q z^7yuhMyRibqo2yF*8k1h3duF#i#-5WpO8oE$`*Lx-owBiJ5uZ8+jhJf7zSm_H%-@~ zwtOKd448Z3vYP>^0sugqG5cphC_6m3rE3v1p}wL58miupogL?V%GuUxcS+M|T~~tT zCJl{leXz9tw-5t>gW=Rm>R0Q#p_se_0Aieq0WktfuWrubudP5H^ojBAJzLJzg|=w^*W1H7C`{~@5!b?FMI!Ujv`uH z0wA|M>&1Fc$WQk4>yAsF8*Ip3P{%cM2`4NVKoBoVv(oDY3)vs1>*cOQQOny!QnSR- z*gB>4(bsRg;{X9#2Vk|V87-Aq#xw!}a2347$n$!m)3OC18tJ?@r57x)Rb2YH_R(w& z6v7-r4S+5p_I{aN=TNJ006^TnbsevD%(^??nBztl4!WchgYClJ*%7(5wOZ2#0Ih4& zF5m2iCbo*hjA(!?Y~v@)1VC*f)2nRJi<348XrKYvf-e5C?XF*NEChuCTc)RvmJ|RW zPEo(M=Nos+wW~*J{ORg}re0Ls4^vzQ0>K3t>)meCbdI!Xp`zczp*L@MmrP@u@qx;# z^a_YsmV-UvPypDWUt@nP)jQ2x&*Nar%B*|1-@1r2IM&zx&1#wztGM<)@%5~OJhMR5 zxZEam2O>kvX3XgYpy!U=4!z~pEMx_2P`miFFk{kzbHiQU**f`dGpCg&_qB7{)jZH) zlq+`b2K3I1<;AFaf@Cj|Tns;Rj|#^LL7Z6%-KWzJdNCnhwK0VVr*NGIMw1Ix^?Tfp9sotIY_Sq)=zc^N||RZYI&Cq z0zmDg^=_~tD*&K%>~oNnu{nlCOJY|T zhYJ%w{(Tjfm;*g8T~JB-l;Mi8mo@KJNf!lxWZ{c4P|}(LS2V!N9RLugtDYvP#xfjQ z=gM8i=f!;74F%SE%9BCDI5UinYQKM1NMHD9!(kZgvlu8Z!-SM>wZhn=fd*tXo@M%B z?eI3u5(GfK;WGp0iR;}dS`Yw$_{_``UbaMpD3j`R=p|a^`UT zfyyKZz2N8o4YBr?bZ##iK<)oFwqCGGmV1oJ&mUlhY?XKG9q~oMUzuFFC4to;hBF zvZ0Fb1zV#f$Ug;zNw#0g>2zQV6M)dm&80a4d$L7R>BlM235;j?Gtzr*v+F=|Vk zt*B`kn{y;?6Q7I)PmsY*@&~L}U#n)m>57uF2Y@paz3rNDe4S`<0)T;@FY#v()Mo8@ z)HQjU!+got_~|eH?()w8e|!h1w*f7Szv}(vn>PY> z{>bUPV`+IG=(E#2)6Rf+!>MF)!xcX_=qcCadS#=f@~oVG!9Z7({2^$$OUhT>G)p7H zg=83X6Zr>#w2^&uaju&i!XTPLLbuJqXY(%)j$}0Ve8%cFt-iLVX!A4wXk??=H~x@tejI6f4fLvK8;tNaGgqo>7{4(hF1_; z$(AN0jDv?^cC+Vv@c$pHZXgWKQLKTU(Z`OJ;4m=dppV>=FsxSq0ct&|MKFJAG`5nP z_rst)K1eJm$SZHVQ22_g>Ir6pyUXC@q;4T@e<<6GQj)gp{=1uZUtP=SlVToLOJb=yLkGPfl#hy z*%_T$&I|FsejR{0wOph;Sy%Y@kPPsg8njuR7 zfTcs({tI$a_4=Q=35+`UNxFgj@xA~RM;$a>msQtdR!Rf`pw9$tZogRfV*MQe5I1h! zAYduJ>UZ=W_^w!J)-XRYiOV`J54S80N#|CYJFdn@u`1ZvSS|>KL z00833H5&yvbN;7uT|=aaOc6p5|Mf-2VDPQ$=8PuJ;QPbx^Tv2B!^D^7aV|l$>$kII zo3D>#;V7TZRw}pa(=_qS(nA)paj>N4jQ7pz?@EXK0{~*YfyXdf`%E$?bgrv(CYT_^ ze7k$0Hb86M0MO$&>BpeY{pqYdSlI&rc9yKp?1>Y^rKSvv7U$bS2;y8vd(|fI#Zvcm ziRla5MMQ(;L68P$?X*dOcC+;zp~Y!!hadp5KX0~Kz*3=#OQUTE01!VjYQ4ulHV%H6 zv0qEawhqn04*bs?eiqG9q#9KA&>9`Y%%NE%7J|@={0Wp+?MNTZ zmYoa(01x9i4IUB2s`18ej_V-c_CmMZzpr2L`b*p4z1*?T@X!lbn$h4JZ{X=hrm01dM;5OaoM9;X>wc{RTiXKgkY7>L0Fk!X)2eA(-J+Np*Fd8{3)))yOZT8A z#sQ5J6b5{F@^N=N1YundSFH`vd?W z#(Og)KACZ#+d5gnz(LGS5ExyCEc>(#Sv`~$LeA6mg}5n)?AAfR#v=ft&LqFJIFn|_ z1<+EzZ(hN(RP2EE?lfL+wU~EMAba$HF%ZNzvoVe`Z>QF5nae>m=$eeYq~8F9piQLm zf8$-{fglPT1|}>@?Jl~2y)ZBg`u@kkx~#L7%<*Lt3pgze8K7OUDcowd8%o2y0T>1~ zZIa~nMq6WV05tsIE#J|;OE_KDdEMBx2$mEmQ&~AbJg}ag8Q6LXJ)rd`XCCxg$3EK1 zDea@}ZG{l-^nFEiW7p=Ic6Vnq95ev9D(0{Z2)*dDWkcFDawWw<69m9_8D96;g88)H z@v9q-=raI-cw4ao9x?V{M~t4L2W%xYM%baxz`iC9t>zW-Ew;bnRh${5Avptsb1>Eo z0HQ_fkIqh9S5#ZH6)ON>=|EL;S_si`QHo?{XH$LR-1Ytr2K&&EKXn0Y1NL1-&3$@g z2V-F3+?oCvEmFHwyGf|QjxHEu_B4eH&o36r&rI_CBnW`e1LIb;!`*ccR;&a8pikVr zQ0jEF(f|k(e_c7P7N;$Xj{7sOV^azRRob(C#^{)3S@~XCelm+`9d8tp_oe$QyH-m3 z0RXJ@u9z4E=+759Uw^Qy9P){AJr!HtKF|3ap=ISuv1yn!T2Fd=fTvy5PnX{99L+lb z)U4i)N!d4>mW(wt0MPo~=gm0~7}~dke$vF29n44BIz&mk8D6NdX2-Vvqd&FLo6nDb zzb)D_n@Q`in~{DETlMV;fjQqi*3ymMkP3n@K^ViA++a?H70NNuHDk6809qHD529PL`^s4bMR5uuaKjRtoa=?GH~~QG zL-WoGcwf-^KbLp1g3CBSeD{?Hf{HHW8I1V^) z@;~R+bSFzx7C}Zrae;*H&9pnZ^Z@|G{|+u2jNx>nzoV`5obbZj1^F{~GJf z2m%0a1k>P(w{8+01_1zZ?jdIblc;@fo@gx}l5Wrw0C=U3tryu?*Bt|G2mlcG&AuXN zeax{#(XC@oY=hsr4&nEnY7=dt+(gq^W&EGTqYtc7vqk4U;%OFvYJO|yCR01#$u3C_ ze2ZS|zdz=M(e`Wo^Xd% zKIhwwk&>-HQzRi9;fWM^Yt&sMT-%|u%mJb3AZi@* zmQ2;|XvYE2Bzb7kv-6D%tn|UG1zfg31h*sztkrz_fdH^#;_7G*0|3O&Ozsk_lGG?V z!5s%%PbZq@7`VFNEqF{?pnbrGbO6x$xY45nR=!(2G}`d)1huo3f74G3>6UGwfe+uJ zWx4S>vF@ItUXhwmA%(V5yZlg9Y=~miR{CJgJ<(DD0IkcPAV{67)X=q3;lPvmT=@xN zStJWg`k}d3+(FV5MhamIc^dj9m}cir>-^DW072+QuiGuTzS%VcvIGE#Pv7@uV4XXE zEE}!W91>23`vCb-pKmuG%oO@GIa-8~HI@gi`Kv2^1D7E|g1P8ByVbBBZ zR_Y_h)-?$V1Fm!k?Za{K0Du@DXl01`{nHGtK1kfsj}*dx;PlCsG}EP7hIOrnwK+pC z{jqfbz=}R~{zZIK*N!NifobLaiLCObO@v5)*;CTpd!tJdgkH1`UfS`2n}f*`03c52 zw<>VS#=jhMSrQsg(`O5sEdunGNuH>)XqS3acD0SxVJ2a4n8iz{itB}Z8}>EOfNTUW z)2(H+nGghk7WesDr(CC^AOHxn)U4kGT};_xkTO z)BcH$uj~C_tlxHg@5m;X7_C9mSLOKCQTbU~WXt>jW8@5~Mq)*6jP{&9fM^7FztL6i zS@e?YsxUtEf>1;6`!v<;9YX2qj~#mWgHs>((IFrwLDNKIu9+6?DyyXgUOr&GDBj5vC_@ z6_=DSf}=Y7{6TAjTm0!RH*}s51&gfSG`O=RK%sTt% z(E1_={Fbosg}hP_722EjZl=?#T~y^texJWH1cPm!V~wkIDiU=CvL&bRQ9YgQ+E9zu ze2WJI2NwSkIbQt~Ph~6Dan4LU>Ict_{Enxau?O z<{8bRJ)Z&44SCQDKDk3-^q+UY^&#EMU_nt3=!JQ^;oH-7{;+dX^fFOwDQdT@>GoH2 z{SgadPx?g5uG@umq;WyGO23^yCcX61G>3DStMwhQ$NTp?{`_@d5y$@L9O-od|M@Pl z`rBzicr7~qAI+8vz$tu)xm&qk0>G&=8KZ3uERB~(mq?9g)CfLuvh$rbT59GyYA_i9 zXUnr&#EssdpL{>R?k)PXxK&DnTq{^DqyY4uRXz~F_0=WaRHv=rb@7K>MQtxMol+Uc zMrU8J1`vADLGXvv1(KKAc~L(AT9Ff4FG=1w&lHF@&QtGBbX|bK1Z*7?wzzmgdlSh8 zhbSJM(od)Ggm|z-aTBZ@FIaAUc=0w3boJCg43!nCUf}wm`pfS45P8@eKHa-yU&njxB;-M*J zPJEY;{-e;PE84t{%gzrJy-u&xR#z4wyN^mbtYwn!jAz5eSHMBekyj!#|)++n}k z?Wq88wb?>f2zop?%#R*6tj-=t?eL5F+yYkvzVow(V1jj|x>bH~d(Z+vBETENXaxU$ zwBo>^r>7qMLR+{i00IHh3;L@L^hjO+00A(6%I{t;DA*^iUXuKH+KNd4pfB{edrD1r zJX!!<NT>3w4oGxgGY*Nq#Qa({PxQjob_y{dxTkOIxF_uCdc6(zP_iLuajb&=P zdp#WdVj;}qhhV)qw0Pxx|Ka!zaWJ8-H7(dK(x>N z_pB>g4XEe?zz&ame7J3`XCAT?9(&{iy&#^U7rhc%c+2xztadjN0P5j#t*l-m#yzdu z-f%ANHebs|%K)IZ?k(DF!bdd_2B#W4&MnMA0N)9N!@x&ROo(3E(7-V0Xu(B#tXBL40f1W` zSj*I!{*sObE}()C18}GA-@zO;^XeAS2?;$gM9Hu9aM3VycC%F)ZAR8e0eCvA=|SHy zI%VS~UBkF6amM&p{P=*SbtjyU*|-2&#K}IL{VR2Q)|lAk9UYge25Sdk32O%^cwp@l z<#{PS)*@2w+)z03vZ$yA!aABY?R<3I83qH`F>}LUoY_W|)6*Jj{Tc|+hABe=P>I{? z-792uLvS4619TwioV}jQ4qFERtyj#_+Vf2K&CWX$qDvEbB{z7F z3#|`1cGX*Gc=glLUg&jd0rmip5v5hwiZ3r}&$RqchL!_>oiTm;_&=^`uyp{?y58ct z*e~>g2xb3~{K8$I;dA>0siS#$=hKu{vjCv=3s-Y`#E?##iJ`lzX>3iU6oF=s`XDX; zv(r|(4n&p+3QOqRYoSGL4j6ziaeTL|Ze%1eU%GpD_Jn$P=?-_+_G(%~n}R(Ck+-Pb zanMEEo+UF~KW6IyfE9hXE9MGXN~gIHCdk96sLPM1mbB8T+g95I(IjwglpmJ(uyS+l zj&^kmpiJ_BwF#5c2l43g?XO)AqYeOI{?K-GPrlsA12~SueHVJs9c#6@mY3IVX%h~5 zU{xf)2FpeBF8!$$XVU=y7<5{x@K7AQAwL;43~>Y+MDbtjWmLyWCRl=k%2ebyOLq+0HAd}Q~0)0 zUU#4Yu@Hh-AIEy^_w?=(J_wN4j?43}`13CL`M2-a`dzwZZPG?B_h=v*(@R;WhOLM$ z#0UaFFAmmC_l&Dy+7JL#ns(RYd0)|zvStndS8Vi&;Z#MO7gB9}1pw@f7*fR3GUimv zo}8qe$kx2D&YtqDlLs$Dk~PFx+SAf5SM_#YLOk_C(_Y@VdGKC*_n$*wSK`1+N)PZl zu$H#6nZY6SS8Vg49=I)o0KlvP!44o{DF{3JA1E3vUV;G7(%O1*r5koQ1^__3>_{h1 zTA1ih{Nre}A@XuzZBGL)I|t#dd;Tl)kf(h!*J*2Et3odCWCZ}Qg4;M*(64M=&y@~| zC;RS+mhVfquO77AeEW9Iw>^x?1MnFy-WROJ%^SR1M+wU}h;RB*kspCCH(ga+=LQRS zE~8^N!322b-|uRfTa$iTdVpDAuuO_Dh3EdaP6Mn-0|4SpS)U9Fs&}8S7%dr=3csx% zA4IurU4D-y{>oQS>J#leVzBW?%GR!ADD$quG}z$A3y3eza=vC|rP5A$lm0-}@>0cg z>vk;x0K`z4LwUXEvyFM5E9RC9^eTeDmVQ$*{mH~=Q33$sXVRw&qQl@PQn}Ir0b(i4 z7c6y<|74P%_;+o}-5RXbJJHs6HPC>p9gQh*EIO7F1i+C0E(FSZXk2HPJ?ewrwXa;9 z=P;*@Xz|7LXg zmnhD!Ovy#kY|1)ctzrMZE(if0VplRQCX!| zxfLz|d;{=!(0W|`IgN^V$Ba*O%dUw{WCJlv%*FH*KE8=6?`-GSpUBB;g5;Zz= z_@{0U(s&$*!TU&gAWBrVT#lTVW1E(Y;hz9Qd^GqVWQ(B(TqPmRgBW}dl(k4|7V(B( zx!OMCsE#*g?T?@xcNyy(Ck>2~oe?hKqk(kw8+dlq>8}C>m06q1UXp8oCQk4ReNyS0 z`b-@}Fo;`EI+6%cBT_v4Uut)JFmDi_ke?u~nrC|*-u0Z}gmVVgNG@Mddqx~$<{9zr z4>Z;jJ4;Lh#MxKYZrL9#?Xm$SHkGqmSPaBo7za6_)D&;o;r%>`u}UNW#7KT5etp0T zu8Ba2Acpdghsl!OMM&9mrjGw+M+YFDY{6}={5DmEVvoi;K8V?Jg)K$B!6Np@d}594 z;LWvDvdBdcOo9?>b-Srvva;;3!os;lR9FZtsRlalMi|-Ol)8;A^NV{Rj{N-iblJWp zF%mY}*tBkrt0;-ykyj9*hUWW17ze%YYT^d{RU-3Aqo_NKScGeEzNstpnt1hiXgUf^ zb78N2`mNS;gX-Q~Ieht%7Rs|nodrxYI|rbu^oRpq>BL8{6(I*Gf(;z7I(u##@AG&c z469N=xv-haB-a4hC3y5#y|j?b8QLgt7&xKTW<5@m_`|?3sP$9xV-vpy0e~4W+1pmT zPi!qh0ElxBZd04YFXszgNGpQ#bOyrVOJ4H`F)dhE<#laZrozcD(S>%1nJ(=x=KFLA z7{{de!)6+D3iQF8^7O)mL@fW z_>_PMkY58ASg>n*G%MsAucwgjrtiKO%gWtKD!3w+QklHZx!}>Tazhf%CV41E?AsHt z^>myLa;6-bA-+FA7;foL^dQD}S0DDw`jJT)wCYV{A;1_`TtIw2-5YwKhWIlTZ}lY? zi*GEB9cX!3L6&Ko7yf%*K9`hnWC<_)PpR^FY;q|eQYr5f>$A#_J#|LUWQ|k`3b9-B z#Rai8?VJi4U~FZ9v<#_WkW*TuO`=4acl|In^n;j&g-k@ldid>yv9%M3hx;vKo1Gc- zm#bs6Lm2Uan3`O%Z@lLaSlqkzL?^w_WCjUhEFCr#1eL=>J73lxq^oyRnGw)2h3y6E zr@a)e^PJu#Gsn3IIxd>cE4@)l08V-6F;8J54lH#`BILX<(6DGhO)`C@Su{D1AP}eA zIomsdk+%EHnp2t|ccsN1@IG2{pTJH!`MkD&+XG)BlrhxfON2k4_}#To#2m0QNgl4y z&hEIN4n&Nv4gApbwzhw3M*x8T{MWA~ZYw&#^Q;spOKPJtpMpp0*!99#5(=Bhrp3!B zF@DiL9rsOQi~>`{1UB55M#p~h{tbXkzfB&#oVfAELXX9#(`<1CfUpQ+1}?cK-23=5 zD$C95+qg>v6~QF}z4^oe+x`K=eHXvLYSa8rpr4dgW}whUV$&tFeUq0Pbs ztwQ3@MWqWm5&(3h)%Wbz#%BRzB}yO6YjlCy?`qxM-fe&-S})O?ibipnL?qNQ)==q4 zUC)k;jYVmt)xb^F*_6m{#@Cm+0=C4RZ?MAJ^~T<+y7j8@LK_D_4%u-7sD)e)g`TJ| z{NHrf7Wuox)=N=fV-^-Tu|N;kp3u`*@*n)4r?xCSrmch_&Y($@W}b=ma)(^Fq8{h%yQ!0E4|#cX*wzAN-Mn-^q|Q40Fx^Z0)%HTV24?9Qi_Z^8k>DhfF_A|ln{gQ4Xpn6X|s6WMEm5!wI0CV zeXrtOz64JKh!X1F?xbgAI8@i=g@W3IP1bKM>_AaR<>{!3J}Ru|t5u2g^7Lz#vq}U|`1=E!;7jJaMjyMY9Yx2<6ATq&~mkS zc|%7YCB`71{qM#(_oV^{jOE;-R&YUZ3dBAxO-1S4?HN?)uN#2VGXEz!Evl zHDcDR?ds3gjal7QEbx;v`NdBf#AZ+svznKh zqCTp5SZm*vxm`_juzlqhvN0voU7mO4?&7?QY1ue$d9FY2_uSrGXV;L-Zb0K8rKE`K zBGHXXVnLg}k@Nn9Z5;p*7hO`=TM)pV@h?^x=gOUY^S}>weR<3Fy5eo32g&TSD?`D$ zh@%kS?G0z5iJ9L}l3|Gv)k@9(j=97lX3tT;Z-bv+t$k)`7b)+*OIWe&KFzOL)+t)l zY7pki6x;vTF79L+qB|}z5vO;mzAf!)b6U+&MY;t<6 zHj!A+egT3#DDcd$1H7nwp+{afn~*(TI|^a=pde!OdOowB?U}g^*dqu4I1;oDb1%|x zu9lbyF#s?HagKn!oh$uA3w+eaFTy{a3DRPzJoHvJw{-$gWH5T52O8n%!ryDZw*2D| z67JUEfUh>W*QwS9j!ae$m&KrwoLVRcs;?}3xN6$<@;DG$F_Vz*nwg;zxQJjw^RSObDFk9 zlLxL8h>QD1p87%zc82&s?O}1#yXs{f<1Aqy&43cBTQZ$q(=tn)06pu!o`)W~C%jY} zfvZ{DD%u^*k_d>=>faTz)+S-(Y@&EkdkzPu#F`Xcm{kVG14|+;l z)m!rc04;BQ^~c(8#GUaZvHD_?)~G38nyQ)spN61}Blj>sOoxCYbCdSF+|ISk##UaF z{y7mt%bbV}JLnwWv&38+s$KO#?|odjTGrcVG|z^(gvgnZ7pi9DZB{Ui4nT&uq!7~? z7z<$+k=t$$%aQ@2mUXq!!G_0gtuyJ?jbi4=1``16LFcD|MSE-Bjn@Of)*%%J&xApx zG_gsSAVwl!>)Lasd_72qH_Of)0Z^3kYjDWA#>e;T;AsJcMNv^beAH@`UivTqtYjpm zuz(pA_XIX`V!&=41uUS641%Al!x&y1_klNozuDuuE{cr8&;tN4Urqe?^$xmZG!g{$#tg>YJ=7sOwSSTTqSL^3jotg z&8I*1&ZfZFPF#OXhl?uS3sWGDS`>oDIe0D%B^CN6w_4jVHy0$=Kp0$USeJYb7z9yZ z{5!Vo*lYSCne@VtiOyjlKnq&esYB4wnFq8|&B`A@ZG|vOlDl*L>sm4dP)`{Wi9yL1Do7bEUL37{F(egFltl>5;HEdgS)FblTnwpqGq8{^z_u z#2ISJEY5e3jYR;!K|h&kS5WQFuTj#iN0Ey`i~)mp?8|VlkL_?S+BB9tPl5x3vCs$0 zwI_zv({aiW-&Vy2?l@Y2Y2l z=AKAe?q$lfe-({pr-cyuN~*^*c2%pbbBRH)T-K#`N$X&xf!yvvae^g|<5-8!bRA)) zSEVHMb9Dg3w9w%RPTg#(mC}BmK$Vgx7MRJh7xXfBT@PJ&7-@xp{+I$#)y^|?LN{?s zgTjD?=}YJ^Y7|HSh;QY(>eh@E5VlCeV=dEu4#yS z$OM!+n09D{7ygl}b60%WEid6HAYP>Mh3FxewZ^6S)%7s=z!%D43N(AsBgTqHC| z(?VsjC68u%mY8`#A79)%yqz{eOZ(|t0if^Ysp4-^X-z*@ zwvsz#fk|i(dckTSSu2@+XtadT3y44a=^am;IR_uB`S`iYuIxd8)(6WN?ic5Pf1pQ> zg}szt(MTtDYeyOw1~tuh%zgQbV<9LExIHz_9XxdcK$tjmSk+o-g7B~An}MWOJs-O3 zjI9HJ)(>SVKJ9p1?XX* z&kAZ;$R5!zPtJFB0cmAlQmpWVNQMf_U+I;=V)Gt#7AviE2*QB#4eAyEez~+*TdQ>* z0K&uwgvvKAoDpIGIbf1=r^ms0e+SWg-Uw_!TIl6>d6KJ! zADmlFS25-$8Ulw&E38|Q;90kheDPsda`XxG#x-Cake3dw>e`eBOp{)~E_0TGkCV%r^b7(xiDG)fY#y9Bz|b|WYzZrAffs*)`Ppn&xACWhjI7>VYZ**XI)!O%S(-d3g%^!FTf;=}r z7V%0Vw0f^NJSBofRR9o&rls8z?Z*H>A|KYB5fE4SVyw$I2+;aZVx3FmXL7aCSEV1; z&SR>10E@{q0F5kOl)o<4z~Ix%?lDLClv$e^8-Sms64pya9Qf-4-*IaqN(lh;faNU` zr^&e6H8NUdc|oQ36(*QK2c=#}uM1mil>nf1eCma*Pp#yv{8-{{{$O#P8Hw|koe^!3 z+2T#hC_YF$zJJ7xjF1XG9X!L25Lmz=U{tY)ujUW{zGqaq-y??HCr$3?+PheQr`6;LZhs?HAkYoIA6*;B8?C*H5wsL^SgM*DA+uEdK?3apF}ViZjKGq0!1}A_EB< z+0@ZnqdhCk1|+lQ`h9v;+04rzM!bfFmgP^~&%QqI#r@A(H1wq6I0%RUC@T-9il`JD z`D2h@0~&`lq zTTKIi)(4D^3!J9cPc!sdi*0>{5SA-SiCO;JEXWrf9RNVOpMa^D0V|BsU)5dT8RNX9r4c&M(k1H8;kJcy3(^Zh#7v!Jn|8jGyH}j}^ zE48;slR^GbwuGz6W0N+nphm)mUeMse1y6Y|MItrTFOWqm&%7>;9tq0jgODki=@XKi zJZu)rGzh)a7?dg4UK)Ne;wCi$Kpgi`Jx_tiI^#x1d^Qopclps8Tiet}vNayw;X)E* zUc-ka1JIM1+=xw!B?v6N*LPt6C|2Zvn-gRL?&$@9rb3Og`Y3Vg$OEu0-7+OcT-T2A zguwvHpTJM<>pVqQVb&Wp(11nhGSxYEUC3+{}~@2T@M0))>EH28A#}( z)WxGS78j)Og$SC-=J&frvoctkW$}{n^vj-I!HuuXZ{+3@4io^ef)5y@br26&Q^940 z18ppXYy8lvtK=C?zSWZrTSoza)-~}Tt!ubpm8@Kq)ejKks3HgYPWL7{BHH{hMJO3f z1QWd0ar=8`jn!tSbACxD#P#xSzTzEfSn%>^Uh96K#bP<*bo z+IMX#Mhe#Pr+E65fq87K^sqZ%Iu1c#EBC@f!Jx}MAMpVc1Y9Qi8(+@$h;i!vX3|8r zmSS!|>{%NxP9Q%UiWE>#mY1%>61)9IgS%C3FmDs1x2Oif;J-g;AMb!c5CskcUwdkS z{#b=goVwRAXhl*TJq@+iKu{QPq--D88Yp@Ievt=&@AJQ2o95GKY!25V=x_jx6_3IU z86aIfR9P|54RpE}fB?|**XPGB)@J06V}{?uyI+3hnGo*9&9b$o8yz)U`=kf-7#@7R zH&?rZ4}+L2^;n8@%H@LeSkM!C$(KH5kVDGMF6WL#_tLwFgeX6NW7bA7cStilc|`)` zk0k)aEv@DHknZKvc$@fzyP!Cm)w7_R-t<@iGQC(pjw97{EOU*rnsoW2KOxgG`ofoO zlh-~#{#b$lc&B!X=%5Z8%OO5az2N#LZt)f=e6Q}s-1|XCW8}#vZVoUSLa%S8=nw>z zA*b@VBA4(Scxt!-fO{-WrK_UjY1PYGqdiT5s&t>+OoE zzhLeE$Jlqk`&|A1Uy{A|%)KEiJ1+Oyd!~$p>`+27LdnWZ_9`l?vS$d9O=OSEZ&qe# zps3XU^?aYt^L<|D{rTMABpZv zPThWIWchUW`nsz?EIcbz^X{Ib{Iu}c>adaAQN9A^< zOb+p`Z%GmTZ1tx;=Uk6TVPRpGbJ0kCxI4At^i`TWHsj+~Rw3UrVNA7szOsg%?Xa}( zmQt8VMQ8PpqQ~%&Lp@_jOQt!XndyP;h5ZB#D#<>zV}XK?hpj} zN9X>-1K^T`-=ng)3P<``d(@)Ke&O@8k7`!h9N6l;4VG7Hu8!;(>W4VP+z}4TKM^2Gf^a=oewTp-S_}zA&!7E@9yAAN7u|g zWN0R6D{v#7=RyX@yb}LU+kx>;<_wO+3JLhxAOrwMxD_kuZf8${Ap?M-wy=K-{>9q^ zv^JWJQ7BwnW`{8O&W@r5j{gP^n4$L*n7MR-Sh#A|(xL4?oyt|tom-DP3>#7S1^J4H zNP;)u_Prf_hii+n^fTST;Yy@CFux+Brn>Y?r5<-MNeWiNF=4I~I^TQNMJ*tsz8>AV zP2nkNZ&e&LYpSR3EeAHyWR&uDXFuz^jjEM#q!}bkDEg|d)hJbN$xW$L=o~j(H`_i- zM?OQsu&kDKA1_(r@9}F>=Y+1=6iydy3+ruGdw$R97KVO|7k67Okp*ZeHvJ*OK3D)K zMSbYA{l)aIF@Vn~Og^KNoKsHnR)njIhRRAfYsRDql_}!(u(2}7!Q=-=jd=UVt>5S9 zOvxzIG>Oz()7siW3TsdIQfeKoO)LW7mW0MEvfc$95w28@PrtxB&7QnPaXnFMcuoKc zWAdDZ=WmX1xey9dRX3!W?PccBlg)RX>nV(>p)hAm%1Z5Qf%MlY|Af{;OFuyX;3Y)@ z{{HQ>Rxk?~CY>e!1>+m@`roFz9D-y)Rtu3XYKMy(c={c0-}l?`)Z%`&J`=&~yCR?wTwM zC@!S2(^@UgOzZCgFd2dtP#B6=R2YEU#DvPIoYEXx)W*~P{!aZ4hPf#xp$dZFKRQj( zH=CGktdYP$V3|+WYsYI;C#Fs?nz&T#(dkt^(4>;0#La4?V4U; zgw#n3TD$HYBMcO7C9G^Jzta@JehPSPqA&G!TyupJKo~5v6@P`<6Pg3q&VfVD>~WD9 zpn)I}vnT{DIGIE1pk)9-05q4kf(dxOQ*D=H>=OV8TVff$r4n?u_Lm8_0uWk(ry(Hz znFekvWHVYp;Vv2GczwXg^+f*&2TQ@RzJj8LXMc8;Cl|!JRv$W#R+=aZ039}VSJ7cF zi+alS?uZ>IJXqC^5i7mS@(zt?OFa~Ul3{6)|u|nHtprD(#VA)yan&_mR z9BQVJI#hFp<;Gh?XRuR0C54?(G=wyoX7>$gwC^?aYY+f2GsgK3FRuQjtrnIci2xLC zwYGrgsG*gq{^+Q)byGM-NFv|CO3;tO%?mi=NK^P}RTwtQ&VD*$sw*Tky-L{FM?U#q z)NAsw746B>H+oN>i7-p;*F(t)4peIg#@2p{Tdsv>xTHa79mY<;t%A;NMy4+WpfHwx zSUBtoAt)RQmywS($G+9u+nCVi=eKqIHUkM1M!~J63&*1%@{hi!U)G-5jJf7E;^?BoSokkdXQJ4cyZ2sdJ+&M=^yHW+eFUo%~;&?4I2LS`;RsC_rF1YMN z2MGWvmFJq**q{arKFJ?$t0+uq?kN6C$nAA1cd)-RJ7DNWVcIITXwX)l9X%~P(4jC7 z7RX(46?w2=)1i58CqeUO`8a5s@%A!*&T7Puvm+NK&1)Jy<-6)U-#Kr)8JbZudHr?r z)c$$rzitN(VM?@&DitzhYzc!RVNx;Tq0!P(kR-@fJkM1?H^MHOK*YNwoRI%Tm6QJv zq%G%E9_Q?^@wfnW5fG%<>2}S^xRxAw!hqKfxg0^wD7--CsUp>WqGDg|SBzf-KsizW zskKJM=DXI<+Dk|)tX&7N+r?ruIVNL7?Jx!|Fv5Uo5CaPRsw18e5&`HeUiM(&mmfIS z2^#l+!b_we{fYLv<Q0ZrOvlQFCN%d2m%13Yyv*{VT9WXtctCm zuxvx9xUSI*Z%E$Z>`%H6RtC%mFdjxe0Jl+VymQBtl|ef>en$>zb)NsnD0fUi8Nk5N zVUVNuA@=O^dt`Fx5%7c^r(Gu=cb;0Zw3C$fhs{;wxJR_mlil=8o-NGO5cgv-k32V| zOk~~HsiE%Zh;P2obXy@6lpc~C4R}5MP8UES(W&AgIXcxGEeq)|WBFc2d=CM_N&mi` z@1O3kgMl@4y1zL?A9?N%j_UNyPHt!6{-7@q&bOD(l>g<`MBbG@B|ADVx0;#v0usO= z)nf7ikfrj&cpk62-sXhcNfac2J_iSuI8W8|>F(h!gaESfso$pfCr8({EuzDXu_yux zOKWhtAS>$kY4LYQ-}FY@iB`U$4aDsSKmhDWp1L9d6aTxVU5N?vYz2i^=6od%g)zsu z;+;b}wwmMtg;DTf`w?D2j6X8>cvO)#CstQZ6G z*}ap(NkL(BlsnkvSHGi2q8n(ZWF$)fIyxay%g|iDJjpmBkz2d;F$#sLzS2p5aimfAP@9uvu%= zd`13qAtWG*p1Sh!$mZeU5da9sE+gBEr~2=9CKgRc2|(>XR2uI~vqQC!+Ne$8!qQPI zdUNqUXipdIye@9$&rtXssTMqk&NqE{ZK2Mz**pu1PU))PA>Txw7d zkoU_(E~hZL2ta1}*-1Y6HR?A(WfWF36v;nTVJOO+ z5h!0dsilbDGC=+g%P{J8E9_36qOw)fbCSyyu^F!gu9hF1?_DvTcfSvsaQrSC03(nTb?cdBc^aRO->aS9-|o6>|vCLWuu= z>E=f!g@qqy-QX8KH7rl$+UrXzq+Rd3n6&6_cm|7(;=((&fH5JB;-8bt!v~SE;yTa| zh9f8#!_kJFBehfwE6Xci13}RXv_0C_r5~(3F1Zd#S-q>HKdsTA*e+MsS-75npf7(_ z{~&%`+d*F1)#AOtlq2Xx%}3=YYlk+nqXX(Jb?Jtl1Av;3KUuWmfDTJ5!Wk`%4(v68 zGpZmREFewvddl)$o81#t_UWi%=0SD{fI`x1x?i?m9Ijv}OuBKMBR#B3hzl)FP^pkz3z&p-xlsK zJVjxs01LP4RYyzJ?2|;zDRY=f2M()+ejjx8tn=cArJtY>{XU@R`AgcWEJ*+a3$Hoh zB-OTXlhA%a&C0iLoYWR&3sbV%b=+$^*G)*FmFR3m`Q@`v?XXvJCr`i0IZzMkeKfltkh956b#NitB$da$zbNZp5RKeOuxa*ZaaaKsRdrx9uIT)_b3R5<6!_ zPknaL(EF@JI%eGIOSJYUkf%HfOpb`AMxiiRS4#94q%4ttL{fy7zN@|X~0n9$>yFv5)@T7K|M#oNxtS+hPZ@mVT@?2uA zVj$-)2frF6#oIIsmY+uKmAvMuh7b3ZuhdH#R}H{p)ux`8#r}sOFNH zT8J0nAvTYZW-#$Wi8Dt3d$Owzil)OF6a;j9&v^mP7!?7Aq=uDQ`)@0%=on{6+9PU# zpx9Z|gy|a2moi=3@!u`IFWYD?LHz|pPU)oTag9CNIk=#K()mb=7~MHm=hbFj1uYem zbvcz-`8#0OR4c4oF^QE22(cDvCv)rjzdDC%4X03;=`tkEbUAw66j##lh$!4xXa^~@ z3yItQv_r#rk2R-^@@Wv{F(qv`|LVY&XMWW3umHXO0#jvjSmBWKO05}*qlL9X7D%Hk zkQorPf8dvzEX&qSDJ(z>FLA+bu1&D>034M*uoXQ>&o%?-dmS@r z`zRd^?w~KI9T^Vt@1rsaK$T~I?l-HdTe4cLfdJ{dfJ+R$s#`OLrCT$yx#hdlalbWo zH9)xQlZV31Q#<0yQXRQBqeHxn!~sNm{oj}zxr_g#cOU5V(qkxDbw?MyI8yf z8||NtObV7NQ1jmhYsL?|`;6zD7k3R@he+W;V{w%=g(rXYyuAw8ekRiv}8b9MYQ&A-FQW3Zq_M`5n7hXNB4tdlJ4i-_1UzIn-~bz*0ABZ(#ts? zdPAJo4>r;noRu=xXqYwQrpf$&|KM?JQ-@hv)vZ$i0IY?%vT%W-pGK}7bW_D)NTmJF z`+@f*DGLC!7s-_7n75&WUxgRSzp<{APGPMESB!C5@%wY7V=k>%=9yTua#30U z%P~g-mB}aHGa@)J3W~{ilKj`5Zbm0LjK|4~@-tXL5d3hRn<7R_EfaH&V2V>^g|7mHPtU`l=fZ}a;xXv7%2LRHh6M^c} zucaEC!3Ci6uL@h4N?}I?Q>lOdoE^?u6lN*~axnctwK#U`b~yb2=zK-Tl?HVWxM>t> z1fWw|yVDaaHXR@8YwcUvQ@K_M83chr(4ijpT~8w^iU;Z`9OLEzI1X&#N-gRTte{D< zw)%;9bGJ2GjZ{Gpd@FS~*Xy7_BybRTecm#?$HZ7@5Eull*t$|Xed9O)qL%AX_^osu z+|WX;V06IA2t)_Op#^iFb+v-5e_P_vE@^>7D(D@DRQZa|cQ>oD^9=8$6=?u6W!$~~ zupV@p3)avNYBy3vYIle0F|M_ew8t`r#GtK#eB>054{dLH!euXP2rb|+9=WAS+MI8b zcC*Gx0nq*oV`2KUY)f`%EjRv*fDk!;;UXPMx|0D2PAFVO9C1PU9i9g)UMnB_lA_62 zZz}XamTCId0W*&j2^<7wy;@k?lgZ43z#yny&O%<^f`C?kI?FGX5$Ic}aAo!- zKJN_es!ZWnH6^VFK4JU$AjCehKr%pnGR8oNTp*t{cb^`yn%W5<-7H*ZRk`r=aj^_- zp@bYH$gjSe&6IhyjxnZo0!;0;aN?EDO|PbKr5HO0rXRk&a(1Z86{z_B5E*quO_qmd z`9Th!%Wm~3k+wb~C=FtV3HY=2RUN$yNd%zq+fzEmvGC%Qft?uOJqjbHERYWX2#awg zcb5a<+#vvkWd+gS={UXR_pVK|_F6Jtp%Z{)=>&e5SXtL@rWR0p(GV#Z`*LIM3%}oV zof$kI3e)gg-Tcwt&(!+sDehPirisFcP)KiKnwR7wSckfs6WeQtY-Z00MyE5Z%@)sj zx~wl=be#aDjQ5gSsTQ#tn(z!mEc((Co+9kTtNFr}Ap2m%HOvs0W6 zsrON=n^jOj>q|lO2LO4T&p*@G}w%_{HW6A@E(udr<=^yzRK)zK|fIQ zmqW&vU(qdp`G{MfK|e0og^xNV9~BcaVT2ts+qpm8WC{eKg%@HD$Iraft`gP@Up>)6 zX9{LX1chPiD12^GPA`81J2y4B=9(@P5`}BYFDQ)FB-9Mr3!Iy;qpGbL9vp>t4mcS{ zhy2C$o#AGSnj>vmJ6$7i={?D~9wGx97Dz_hIZ0hI$im@50_avO^plj{&G%_{X<0Zv zM7#W`!WPPwi*S4vw9`LfC<6q8{R1Ql*4&LGs1uQyj}6?I$Eq*3p&QI?99wcG-?FO&mG>O9n}BK502 zI<{`1FI``Y=0Or%Oab{Ftr4ghuzYMYZS*E#1h7*`+SvF)S-gI$l-47wbV);nF-gqA z4?8*Qh9#p(5~2_~TsbB(Nj=IO)ETBFiQ((tjW@hWdstYGbZ=@4GocssTNzkgYP&qI ztF4p)-6BZDt-R<1^y&2(&Q1c`VE|CL{IYf)cW`8X*~AF3=H`ugT$2W7e7HUSs;gA~Ar55{~THyUARcP|eXd6t3Lp?>I05mt(wl#IXs> zHFkXUrrBO$Y+j!C_H?ZpmK1~~EG?sUjK|65gNtjsGNF0^z+p9Z;1V#loU>`)>|a1< z0RTyKXvm=m%F@a?qwbQ$e(ac4%2&eDL!4v&ZY!6hl>zdhFGw2c^6ymN8resIG=L&4 zSuU&g$OTar0HKB7zuDzUI_^=a@;^5_?Xs7JtAxBCo(ag6FP|5#dRA?#HQ1UdqCRSV zEoyDn0b%;Zm&*w(_g+KbmIcIN;>4=bVLuf~5 zkpZ+$X-Gp_O5vSt5UWRw)~N--=#vKa9(GozJywVs7zDkLI;RelmJtL60sYsW)~S!R z4**d3ze)pqQ+;mESuGP=n5qH#xs5b?1>u01!Rk35Y0ERRKw-{5A<%Gj;%H1aEekW4MPWEJrlInyf8coe z_FuIZGy_5cz=-o3fA>dT1zXy8^m1YobkEo91U1)-Qy-ta{c-Eoun0(3=G1N{I=1Ebe?!0GOnJTU=#`$+bxvk0pyBkk$3U zVy_jX)DK21aQgvSuoV=ZJwJ6toaI6vzS{oC)gu;`c{Pu%W!o>0&)aXLrxvSDr`Hk3 z*fDCRAF7&ljXxY7QE`_${vmfbbp%pmACf;Eaqw5?9WS#Ei`uuz2hOCHpQmIRG9-s8 zoIbjoagW}MWZ9~L0Kq&7I&pfD_869}1Ob3)Z2~rI3j`JR2k9G46x*+v!hQR2L1fkf zfZA{MY2}|_8glnbZKlSjqVrXy85$90MycXsy4TmWo4sv5K!DYy1pw(|`TwKQ~%KSSoxr~tL z>uE2Ja^W`pw(=9snfKfq60Pkg?v`Hf5-b-@+vn@J_zBP#+28fJiLqb(BXK(Mvf4lp z0K5Kr!2`g^e*f>P8)c~tU^#vVK%d1Mo5{JG&I%X+8XE#X1$-c?lgkKNCbi-6+&F@SwW6PIr8QH@WlxjKI z0GsDrdF=O#b?r*Z(gzF~Kn}J>5|D2|dRGQyD{7}4Vy2y{RPx?Q&z+`zdb3AT3iK05)LqN`aqBJFm-_1O|No0EH(N-xPmk zMlEkc(|;!eXKP6kQ#{Tez$Pkfit!fwCa&wHXD6&a5rkIYg9*qvqn)d@2_H`uxb=v&0{~J!Tqw0lZV6y&ntO(MOUMVXcIL5z$_@4+Eu7ctD`Q>5Vc~iq zQXU-KTakNl`*qCi27QvEx7g^L3U9^r*8r;q0D!*qhw4-+_n?2Lwn7KcUa zLXf0Oyt`|dOE*XvD}`}l8nFSjBah{&={ldD)hcY<2>~dKi5(VRa``~GM6XK|GLH~7 zB$ugOBw8iqyZOCIk&HcZ>lDJ&P5^3$D`er!c}}_=1??!@S$;Bon2_~Qe81&+JYBE9 zyQz*awsrte`;51r^$Xve*+TQ&Xd`MzuEFd~e)UI*kIz2Roi)4406r#_7L~wbEhMoK8rn0+6f0hud7$xBi=j`$*s*u>IplI{z?HCItOD$;=03W4YY&Xy6>tHK&DJ~$v00%-ujF?19mD?jTmDo_6K-^gs% zK(d(*F6~>lT{Z_>L)>F)*my-?`*D+8AVPsAlL1rj_ODT6lpf_+jVFm7Lu4FaXt|SdDWK8;t7iIB`<()>Y` zb|hv&3aw}$D$}5{C(CNCSr7!fRo2Sp$xnbVMb0oWF>eLklI0pf0LZAvk1NgUrPBSJR;xIx3tNa(M z$5loqK_L30K{>`;*2ZRZ3?RfE6vhUAgb}3S_h;pIJCFXL@PG2bJ*^6DU_cn0ST>*M zKu+9C6)trRLMs|D<@LlmI+)l)0188=P&*9k)kz~F5^yw)bIjZJ0RWok)k!)1Lm=Pfbe4jxIsky$|M$gHUhVLL z4Q_wtCTZ+2MrA0B$zGmRsCPVvmaHWOdV_ud0O?Y93YAIg*3QlXz(fam`jHyrJ>8G{ zzH)dR)F8^C$hbA$Fm7 z%LEV#$UY@5cqCya&;w#Mj(`g{j=N4klg5chZ1WhFFN4Q~Y;T(7JBKt4;*t>tzg#jp z+-!`_f~?iirn{s&=s0YH{TTSY^Dv5a1Oyp?-8=ZO z;1ta%OA?23C%d-shI4S05At=1%%zJ$1jF$56uG@Y7xJteu{m^ytug{Y-I8DZoqfAo zkJfI|(hmUj3VxN&Aht;jmww6sfWq>TLpLj z#CeVkI+Rtuh9V36zEb%q#_Z{>_UN?@lafP#K`>f{fdL3MpR1JCbw5;j4Fm|2sRVtI z{X5s^20`Q=6q4L~<75%tKeNcANkl6<9_$OvD0eDXDfKPQZYxlbwk~ACutYN9_L7FL043%;*gazV0g;)CQ@KbCA8cuDui<|Swe zAp9&O9~c2cW4~fM)<{@J1OkM6!U;M#^PH=DR93bIKy>?J9sruqrtd6Go~uI3g_W5^ zoyZIwBfq~kN2jvp$QA|5{@`jxlD6lAGLbD6q%ne}{5`V;l-;9M$J!A9=*PN>CL2AF zZDZ^&`}VmphFX9bOH6dL5BhbGoImc<8f~+yp62NWwtIlCgdL zoN7Y89)2AUBwSUVDWI)Te8 z8fzspv#SI^nth}>(60l{ygV7SaEv3+pb)^1u!Wy^s9Q1mLI4VvyPVb^S$^`?3OCTO z!w6$2jO3T|p0g5Xc7+7dqh=Ir7o9Ke(aJ3q5RJm_WJ0ajgMbV4QFvda@s;XSe$$(G zuATjw%SIGHVXQ1beSejIVBD6!`XPA7{QR!z5m-!0VM=Y6ptFQp1WS3UaOFY0 zf%T?%Gu&z7Gi#$U$rd_H?kr4u%Rek|JNLWp$c42xm72*Ny|gmunXWGF1hf)mBLMto zviS1i9xecC?FmeD9N?zX0rWvYmFu3E?)BlBg)i!j3?^j&sJu)>u^#|X%57UWc3UA? zdgo8F*N%HR2F$cqqi&G_A4@-M3w8ln~Z?P8f1iM)9eRN-P0U1&X@oc#>RTq-e>rqt|x>|pfEdq zsPT-@vhS6$XQr-kxy8a%KwO1D1w8)tP}hJ^_@q1p#hT@>zPI@1gXON!z!}^@1;>RP zf({HxAstwmVsB~pXmSXE=)lkdJKFoy6qg*Z5rxxBQ}hU%vlHM=VbL?xwC@AOZ|?@aqlxC208PK;o!5}T{g z;libsh8La{ZB<(Wq95aC{XWYrEaXO^Fi5EL!P*Mz^Iq^SCtsB=!i{@vBTsfAyp2b7fC! zdoCM|KA<)9pq!50?VQ_lx;q%4#*5`+VVNZN+&WxJ#Otq6m~L@O)gk@^ zH~l;P0t5>qC{^yQdTGIMNrM28 zKR%$s#2q?X8ZH6Aj_Z5Bo=DO;7o_p&mh;QRi5O99o}@OVOYZNj{+5 z>JP%>F##wHl34rk2|Hb*f#6V>F%8o~jA^6ZYUz3is4@zpvpkmo+Gz`)MordAXZ#NV zAmz*1HNBxD4wOu~9C)gdq^y>bC=BU-em|?1Io3Ne-}P)T6x57@qf;)b@bo|9B9GHR z^I-W8lx?US;08ec_)jq1dUt}m8Ur#2K;cWjWb!Woyx#pAS36O-T8tIH=0;f3fx;st zr=;t{DggJD=B_l??H~$|lEOvhr=i)d_TMbwJP~2|{DHUv`uX;$*2YoCpQuwbT;$b- zW-k6>W`>7rizRu=B?IicE&sVF^iaon$1)O(JSzg1ei4vKenEB%+A-7d<5MHNW1@+^ z>!GtMV{&K#0Isp&R(5XHnDBOlM;QsA+6v$OdEi%CUDbUso`8VYgdFxm3+tnoQ){y` zlX(OIfJ@iuu;j14&M(|E&vhYE&f^&RLtsehe9-cLHo9&^$~qtbV2ZFT_|WIxiSUXD z$s<|A-;ekGXpi=}T_)%j7>e|=|K!X)we6a;j4eQ~s>)|MXBp7x+955_=b{k+HE_0| z>&w4UxL`YlyL9PW z!C-<0rWo*8Cxj+354H*rH%uVc+g;y@q^7l3MMp59wn++O@coAHo-D`Y8d%;Wb7eg= zHc>SQ41$(^5qMz&%+R19AjPy2TF;D&B>;s-&&pJhBu)G#aBhdS>oeQ>&YOwD#<<2t z09KW$2|AV7HLEA?p)t7 z{IGdyxJv~fR!CwHg>i8P?wgLzB`k)dXkin~R?H=&cy`&Q_D|U~ON~kp0F}TCRJ6p+ zy=sR?T@-HM*K7x=C7vqerWIlWQ7DXB%f4|T?r6h#-bU2bYx8J_V2%&n71n$t1wnUB z-$z-xZ_Ui&9>@SIH3+Tzc{-&}d-Y~(!dVHxBpH@d9rTWn!C$6zT_#)jTtrKNG~%nn z(#^lSEkHZ#t7#!!`=h)U!dZDjvK>kllQxuU&nmBlXTvDWmG<)F5g8}{0nU{ z(0EE%1McYk0UxiaqG>lSpSR!w1b}|{aP+oy;Up1&!kFd-NwC|Ok_T2`aNvSB;eoA? zGExf|&2ITnfi|3pDSy$CIH3xH;E|b+>OoZ5XfTA}`64974YbIatOK(&_j~f`{|+KdPo2YXMeV&fA`1ZrE9~D4uvU` z-mf;B%4fn)N)#-lM31jqA0F6IJGgQ>m!+NV<(V^e_4vY)LpCm||D4apB3plU*$5p$ z?Tv+%o#pqw@_|I^&R>WB@^t5R_wM0YWe^Aua#(^69r;r)xEK@EAOP_C0|B*cWx#+Ii9h$2LP#Co$gJi+^*PZu2O|3sl_C=im+n7D3 zijHt6(jk!w*V0j#xplus-CQm}dMJ#V8E$iwDCp;=4S)LERROS#0MPw&rZ2q0@La{q zN4e_D!c;Cin*&XR%Q(`!w_7twX(iQCDA08Z<;`jtw78AgffO1>=ZQ=Gk>QlBkKEcx z3TuWUvF1ll)Cw;=T82ymq=V=rCJ!(d47v+`AK};)3Uhe|yBWDW^KeE6w`Oz_g`pn= zKtKe%n)xf&pg}hPc8M~|U!qL0J+J|sh1p4rE7{2n$0vu2zLZ3YI$|wUENRS7D~l#7 zs@2t`^o=B~Ocl}>a0UXRCZ2mX!V^&du=ZER{`X7j37(OPJ%Cq`JvS}(W%z zj*xLfMx=&}s47?P^!F~bh&z1EO>9uOkoc0$A)4`|G0$b?ZME6e5fuJaB*VE!+2s(= zxyP5@s~MgkpfIhbMz8k%n>uML%!^zzxiO_$VP7aeZy6KL4b;pGNRJ?vZ?36bu;DWb zbKfk?i)SXMUC!o`A?3UdwpLRGTBoxo@8KE&Inpl_4WJ*d$A9J}23N11(<*97X%ONy z_LlOp+8@8@5KhWE855?ISkI1v6ppWQrKuB63INm*aD{Qc-Pw1;N%>8B>+@U0PQ8AV zw_P|3_lu5DlDImP{%>%$2nWbem^DjZeT!LM(wx+SR(fYW!M^gca6pd8U;WkP)Fsn} zPYF~IBar`jdR_42_x<}C#wJ@7x$w3`rZ9X*$&ck7Rhi|=(Bxsbs-kAnd}v7#pBrCQ z&hKg;a#GOSOV@Ulut z@lcq*AxT;btGpHAsqw^;no{&7QrGa8RSK4y?J5>{j>1$b7zCAS-}AS_1JpLz`0;U| zqtulGaT&v-FaVKi@BH!_mlT*A3UA9~hnVOn7s>J$t*vuF6XWZOYh&$F*rz@0wq4Zz zyZi?~$wqEWM(D0~va5~^W-S8%j79Zr2s-W*{5zFaG&8kIP*#aQT$+HCwa||IbV(<{ zX6G+}{Y5XBvk1aZ<|}X8t+muF8URpOqVz?H(qqMNItzj=(QWVid5Yf4VfHrx_?5KO zJb~6~pZ;32+H4;KXtX>%NA7{$lziSbKfB~XuK*|>A_*&5oGaMeCGeCwj0lA>80?h* zNei0Yb_awSlu1Q!&E`Ln*VH2#Ghfb@DhSu;!~o)g{$J0|a9a|}eDaEh`UBU_;r`H1 z3uu38RR{ekrpDWX^#vN$cwNGzVMNT9V3BO;wY@i7kS2}8Xp9y(j83v@q$?NAwaF5u ztT1hIxBs;)I?r^u2EeHh6ZGz+`{|?ImNaQ>W$$<2`GNe>#>3jXxLi9T3?NABS@BtE zUD9+b^aJ`W)2lrr+;>F{Sg%^q^PoM(-qO+3WdK%6B9Zp{v>{DkRf~Oq zhhe9okhJ^v3On~pTaqS;Zc&4!JO1(c`ghm5YC?tlKsNC7k&=;G$v(WK&Qr~U4B*rV z0X#41#R2&V24t6y4zPaPG+y+5XUihJ*kAXqr%se^7ZM(+JC+*>9exd)+AMzy;q(Xqx%rJ)5J3`Gl=W#XaG z;m-s%d!hgeZX;TKr8=6ddc!lhUQ-(IT0tKk%U{s4zCQ5t zjelu?Wi0@d{F1>1{A6wF>bq{TCT8NdfZEI6KIOTi+qZAUPK~;!7kq5(t%S#9t5*F_ zZ^vnJOgaKCap*1$_*X%-?G#}Qhr%PIc94Qugg0O6>CKQ$ef^-W*^+WmVhKsntbFmi z_ai%oo?;t}zyL6nn%VKLRyu38V}umO5qNjTkuO&|6TW7-8}ttqrGq-u6}7;OUnKH& zrERYb$=rz#Fda6M10p* zWiNz&f&rAvlwD)As@Q-N1fv2Cd@ui7+D>f12?8~!^}R22Y_!gTAhd!p3(0#}A@HIe z3b1dyc?*LclE>lT{G3g-)38|)S|TtA>U(0E);Sk+T1wk>k)i&&$d-&#T+Nnb!Y476 zcpP~9tRjv``gd>pD9uIdZ9pc-dprLiZ_6Hbd-Yv>J93C<5Go8O$XS^+Ljos>7=43r z5xFGUJuY1`musRuUS9wLIe7dJdoe)Hx~4T^N!oMXDPfGpNNz-gXTNar>v=hxkEAuSO8|RC=J{TQ5 zBU4Y94guZpS?e0j@FrVI-mm7`I#`Ipt;CzaQACnxiJ^rxIcDwzAkhf3oslDx<5oa4SOfSk*oJh7LAfpg8veXRxP0+bN_^Qtc% zcwgIr(NvH`AqqwQ9)&JhM(Wy)e??)C(l&uf-hQ8s)S^*rcMe;#!A$$;QkI|KfVx0l6pI5+Y6 zz!hE4Db#*Rei8r=N5JiYQ?$3X{D(Wd6iQX0fOLr$4=&fHX~HpDp#Ov)V&T+%p3=gy zh3N__&#mIWJ^5_G2(J>hmwXm(g}O6w#{-X*@SXpQah~%wDowyep`Swpp}#USgc7x! z_w!7LH7H~QJ|Op-Yh1$t{|P|hta)?z$H%wix~17^94`vvfV9<6o0n%?;cUJ)_DsO< zQoUrUQE-`P34V3r?%HOG`Qtbp^lazR5`jU`{EJR!w|0{?PjwEj z`6Zd29V*;m;kZ0KybyK$*G-ycBQz9-()E-N0L~m^0pVJ0=XMIC)&!vNu~b_;EyeJr z)v>2s9|XFONlL@{n{KJf`Lp%&T2&6GySyM+IL)rUp*3^4^kc{dH`ztaC``YJ>zo+; z+V@WFk^xCJ5?-S)C5aU&0v=CztbM=fBmw9o-WOrvh*SG0jFoL%hC!Zpe7A|m^9AST zxk)T&C%_brs?5R%5|<9oAxetBgn)jL(f|Vl1EId`_`bE<0y?ZgK|r1d16|Li0dyt$ zf`+KS$Ak-uEui+8X)Qu2LZ@=c`i={Ch0hCzXc!n0(<=|`8`usD4}c3+u=0u(LApce zJUg6r$YM>uS(*R{hYit}lk%}20P;!O%s0mBoWf-6K_L30K`(axFg!{E1TV)MN&#R( zwRidKaD5^Gwcq)mgtuS-*M8^PT9?d(8d{*?bZ?l;+gFDc&ZTS=nRf2Oz)+a` zFh1ED*eWLpdemY0PeJ(!VU3p$F`${8T-+^sPSO_VH4hj(K2Rq6`g_Hy;@@SN(dy&1CVU;&J|dp5dczhI>8~W?mupNBeoj<&D+c!mx!ilF8#I^+`0<_Z)MU z)zze!C<#E|)UFTM{?tIN+7(Ia%v;Y7K+r_g^we(In(EkC()!GCd3YJam5)kEjP9@}Xc3MGvDN0^dr_-2l7!N>qD(6aI+n(13s>bOfThoBA*gm`Ku*hw`W zmbb7gFcxObyNa2bar*n_vOAG$rp+$uI@+^Yc!P39BkaL@Ih2xt?^+Ea9tLfx3X5_3 z`abbigj+LONntT4&-8HhE|1VP-4J1)5(?AwWZ$5FJ@SDD^W6?Yi7v!Lc&-BXZY9b3$Fz?;# z?TH+M=~1<|D@D?MKz?EEIA%&aO@3;N&X-M&e@b>EL{ir(&1<_!5{#m?(2ey27zSoL z3}>SJcTNf{9`D9mkknX`CA831a_1l`Gu{ncw}cK8fWq1fjM?&4xS%=;Nn4!E%G&6` z=}!J>I{ZS2oM7!?9R}^|<-Eiax+0 zZIh4v(E2|+@qVpGW|5a5+@^$ukW7SplAEd!VrO|r0B5f75Iks_$CuHC(YOrg_ESR zWa(kc*DHSt&m{nOQUSF0Yw$#bRaF2Eibumb4@iP=Uu_xX>D#RjPHVOsw?lx(gcP5| zv+$|^u1BW-SDCdu2D0RXP?;*XX|+>3H8Y`s+Ocg3i$U1GM|tQ(q;vLS+UCu+B@HA< zkHiywJV^J&jCnNZo+Rl5q*0IwHggj8#aCX{(l_fp8u&=0kN&}GO&_EDKK}jTeSN0L zJf0T`3?Nuf=8P#a)Kwi!{Q{UwloZShwoIL?^IE(vE`jp{gJAgJw6r+Pdn#71u`NTaf2J0`7HNYSZS#~hE zJ35E<7gh%WK;h?BqzLUE>r`&s%@*3a;4Lfj#jhSh&xn?^W@14NO!zfr$t zY-(2)nmoOA4uf2}s4GLWB@Fsn`a~ZtzxsadtGr!Y5Ca$bgiF^U7i34gY<*>yC6Qef z02CxgGTwyk zcRF>MJ)nNVe|t80 zi)K3KwlNre`%4macqjA?EkRT0p+2wmX2P5#FbEnqvyW?_+GMb`i0s#j{6o=ibi^>j zUTQ!0BYiZpyZ^TIwysNEXQNxe4a)SmHQWCY&;Bg9w$N2#4Z>#FNYQW5cg})a89%cG z_t2NJ0tDL;dVZ1*3_+BqcC_6-Sx0%Zb&7opRuBZAY1hPEqCtU3VEj7{m$B8|FHF;_ zE7Z0mNvD zm2QUEE;+_&&V_>_?VNb#f9(mi)tjnR@4UeTLTjpM`s5 zggnaO3-)4GXRn6aCyW#M7zBbJ$BK7*IQJ^s+z;l$!6kBb0+QXDs^_CzZAdK%FjEJ# z!l|b1d7RtiT+;fBhSL1?R`B^G3o+I2QTiJIsv zfzB27IH`po8L;_!IqbjJ-F!oo-j`c7`Ms<-p1C1#w2VW79F2MDP;QmdnsqkzFIYhk zJZRhxk%#Wk&+mjg^pi-&=qINRD(<=m9cE7o$!vw|xF?F|annAj-0vd_cki{ge9n?R zDtNQLhn=gY&8?^C&o=Q^k<6t_{nDC))@^g(2J#F^QT`ot+h2Fg#Rdn00O&XNenpJ- z;C+Am#d#gpOtpfn0ioJ4p5!p&ou#pQUej#vLgAItb7(g;K|9byrCaHK*vxZyTH6W$ zY~|*`UE1Vr$ECbCV(k?o4dck4TV(MzgwL8C>k5w^mmrd+XR}h2b{FG1+T#3`ly)w2Un7SXwb)!rAQ zjcu$-H>l!-4duKoFhBjTq%LfBjf1trT-eIW<{u$YO)4=qZ#@}LF-0Do0bK7h2(O1CawWR4L80OpYBnP6Q}YXyMhsV>jASm%-@47tO5cCBgiq$;*lvn)GRi;r`Q@zSFpZw z_-**7u8mN?&>EcG60u1135Lakc+XxPt_QJJzX$>VchLa=m6#2|#@*48YFV zr@bTN0QCAj@W49-2>=QYnYY)Qhr{A?%=>{OF{~XgJ5f#K@?-x=&5Jo6Xmz(%s2`a^ zT%-$4fAMN$e}$(F(1Ml)ALE#Kz}%J~R)KAB=Ee<@rmy?aDxY~^;m9hF!%=Ld&$;!U zlfz8W^<2?@WZ%2lsuGwO1Qmaal{ikI{Av0u^WM$atWm9<|yI=N4(x&M^_f z3An>~mPB?6WarxDSv_{9=~le_-o3fv)tJiW@9o7f#tBIT>3F_o!ys*SHZr{!V>_Mt z%m=O_t@K{5hu@D>Cb;SnEOoBx!o$H-E!Y+R54Uk7s`I z1{Tl!9$WE*c0IQ9^Q3mnI#Pfji303aZ?R9<1EwRwOEX>YX(9;BDK_6yb7}>Bi zBfx4f0;+$rV=v7;o74c1Q`DdDe2F$!<~v_cq&gZ|bpT?riRU#q_4@vX`L6lWVFQ3+ zhJ9Z&%D-N@RHe<4ZH6G&J@%3FKIWW{le(?YNdSPtc?T}4aIan)Z(up1P2kZN6hP3~ zF0K!K=p>*>Laj2ovQEvP^MyJ_K;=Y0aIY9->NlI<3pm*PJaaL9pS%?+DqxFxuB<`9 zqUs1`G>|Pin$nhuSI8ZE@U_Q zLFFy^%2wCAid;Q?oGd?gg>EB3#)N~@J!h>cVMxk%SmX!aG&eml<@ z1P6ir2fgaL0$R2P20_^}Iqz4QV*s!{4!iWD%&#P0uC>3EZ*O-+zjjE~2%o#=+0D6h;Qj!tac3t%HNDU9bBH#$U!xf3dTx@f0pEiNFXR zt>~M*Zj|~na-K>M0NSo9F8bSTg@)*E;IeUeXWcfgpQot|mJ!ySTv1UMVQdM+W5ClNA8;g8E^wEQ^PLiWo zhkQBYTmjMv@(bO+b8|!rTCaHOmG%vnOKAJDNj?A^(jD&K!P_K-Epvlz1QHhA0;38v zgK2AY+Q*SKL-r3jmtR3MIKPmo`16`uHqoCeJyxpZC6Nepdse>cw!%E>HTeZxlG-be zO_kpBuDRX~T$Ro~%$2;Bwd)D4R5Me$wG)8#Q_i)6e$KVOc)@v_z_Rr#F?WVitQjzr zZmkoTqXx|gFL=@zBo!6sNT5!%Hf~QISs67Dm1#98pJkzT!InIN0MM;;pRvkKxfzcD z&>0!MD;z%i*1CKN9dB)(6a=GH`QtMsO~=yOKUma2fjF4_bHAmq7CVk}Ur)38Fbbey>K`GEzy#cD z#pRCsRo~PmZD$7h3ExRp;%8U+=k(scS=sFiO@W7;qz``W)zZz>g>CImiiBCaR-H3b zS7?A$9V~zopa;gMM!pc)cCbI404zH}7BJoLXT!F zc>tg=wtunk+*RAP=eL;^NWwrL07#x;Z&vA32?Jn>K|uQd(r8t&Ni14mXm2bi{2gF) zo~1d+{nN|pLn@Ga*OJZr`TVJJ?Zkm$u6 ztdlg}kwUZEx+ek=4(Sl#>=_atk0`4d6HX@MDBfHF2E`+xjkt)jQ&K-@;{w$Oo@#8Do>(mwG*~9iz=v*&@KA{1L%R?>o1i+L?8N zp(#%c%IYOb$Vl2gbW#{QY5}0Cd<>h{>rVF%8OF77UKn;oppOk{zy0%E=gtc2FVIp3 z`9KX-;mYrrv5HLlGc=VefsD&6t*yLwjIa))%oQIPIJZQgVXOW!;)KtiI|dsRS6GO2p9 z@)c&M)dfw`P((6YtT0)%whrM!swkHua6vE_NEeQrUQ&MbPZ)Ph`-YA;hK(BJk+mR| z2S8^>G<4{90RyCJ0N{tYyJy0r26~#t3?JD7rf8;wIXRnS4lGyAb#l5-V1kaJ%rm=R zz3;XN2CzkPZf%PaUW|!*v^uu&!e`^05w1|=1K{nK$cIW&sG$p#ku4s0`DZ<4Xp#uF z$T-8`1pPYR^`RE7aX|zii=wQMf~oN z`?@XDbkNV`@|WWBGsGM}x4YZM^w!?upbMEon9)SovM|We(+%6q8a|v-C0^ZjO-4y z6OEZ>u8W4ZdN1oWtwz>=^jCQg^$vh8u`_i%7+%JtVj{xchGa*Ie=0dUe_d<+y{mErUZQi+%!ij z>DvWP1EW@g28(~zTaffLLF3B*Y9DBo6RjcrXMgl8Q<-Vb4ffWR;fORgX^xiGX|Yhu z)iFK2zU_}+qaBLXF%2{R@a z+}4Fw!I+jsS9*f}CTVhQ?$(B`3R4isBenRrma}2ok_r$=oshr{9NEsU*R7dt3?OxK z0)VQAv$=W*k^opEed7WR6qgG$?XqRiI%sCm0Vp7yhvHV1kEtoPDsj~E~W`hgxNro@e za)Cx+|&J;}UZN40BNUi^MTjH?R*Jj_G20ra!H~d0i?AS4xPj0(o3IoLEsMh0T2%Q|0KV6 zlc5~`9Zru2{^LKXpy#Y@fYQJq=+9>&?84Qp0f3Z}tsJ{w%QY(M6C+_IyNgkYA z-|YvjCf5A`kTb2gAE|*r^oRQO?Xy{Ru5BjoNLpoKz)>NMBNu&y@rS1Ob*yoL!Ckp} ziS)DFU+dZC$Up{R*gk{s#f|T~o>B|?8*$_u+aihO*!I>F`!&dhL@-95l#pd@|D;5^ zt}kiVWaA7#?~5M75%!eN2-=>Oc>CUPz2M@uMqm)M=<~pVT@;`QGRZgz!Y4x@J2Ip~ zmcp7$n_Pg*XXH~LKb4u$Xq*OF3kImD?UTQqaqe%a%6RbZc{9><`I<<5e z0Z=QyCHwsGfqC<_tgLecX#jySZ}wc^ABgXhw~lKjS|jvP{_<1{sN2ysbkD=k?w zvHKvStB!WLrdtAtTl^7xxy66j>!0ZUxGm+88Z76mhkd8#cVrmLCx6bUfu12I*Wg|CO_1Fuj;MBO%hhzDKZ=o7wEG+Z@-b=;N!qqXVanC#X>jM zSNa6g%t%H4@I%C!EbKPp*3Zsj14G1j-au)mi<74n-9pQ=++jAzza$%?3?`R>t=@v z(V8J{`~r}mAInehxQLWH&u!=3L6`LaG3eoxEF9JXx0P7kqur2Lym~ai!(E0 z5(Z(bG0D^NN?mG#YuVb(brMAeb5ixW6Tj`-552YYKWn_IBcuxZ-fYfmXlizDo<=^;QH1TYK>2105h- z=K~M`xOk0yd-!ryH?P<3?V=P007t0#qDl2eF$n{x`EnN1Tl$A@FTP}kJ6_gm)n3J7 z$Hq!J@yc~N2&skTJ1Ak5E$YzvM~UVx=gI^Kh#2r)H~yOjY98B^|Z^j6KlM40rxAT zFyxc;&=?)B%-(%)Ym{hrF%ec~c~v8lZ~y0|O*)A*dkO($VdO~+qvzV5)N8zUzKNG- zSodt#3x9lhz3W`4oB+|OFeN}=mY*2v>KY}F+cq#a?&e3MyJ3`twlal@kEj z5_FJ>NRwd?Tqe*wqGb-60JK2BI~~7@47jLTIG=2vzp=M|rC1k02HX+B=-t5Dcfa|< zcFkt1tOsQ@+E;N+gGS|k*EMzV?Vhp@5buMHdlhp8>NLW)rYLNVF~33+^Vo zd(u@O0(wW=SuFH{vsi`Jl-8N0RZ!fW!D%m{%AfXH(0jDjH5X7+N}>;VIf+^Fj&Db~ zBvGJf0ezsa!`WeS>f^-EMCKGhXr)EvpFP&%DVFaNIWIN1WYN*rY*;)rX1Y>#YN2~> z3!1EiE)Dsj%P!ZOlD!}cAdoe-!KnDM|EBc@T2a-9Xn;AIh=4`bV$z+mXqh5|8?adW z98nLlRtwuT+>(6ta{c05*I$+~1m+^zq2Z>ODr?DuToJ z)YOfmSGwxW79cRHHmZW(s{8;-RLJk3Vr+~E| z>ypJ)I0E!szMi=~|H@!3JgcFclHdDdet$}S`!BD#w1a(6=c@7_SQ+HNwLiESPSLb~ z=11+It?)Dul|e-aI&d=Z3>paxkz*hMEfi`vVX% zK9Y6rVu8piLJ$D(;shjVc{5?MWHjPyEq4t>rHJtOIoPc4`Osnc^u=9~ThRA>MD^+6 zxl7C#WsKV7N}aI}fd8Kd&`%91s>hf%_UVg4(jThh``g0@M{18^9W(%BLf;0X{AIct zwX?bon$p*oh2*R}Ak?QTWebgU*7j`+-Gy}wmQ;OYbURPna$BJE0l;XFaYJkJ?i$;) z8?t^2AWj}2Ipd5tlQ3wSJ2MGIv% znkRE{)}hwMO$oPfN(uvjSdJDj220r|mFAe+!doGd1mk!5+_dQ~fPs^0a&|>~FXwHX zyIzG=57)YvxKI)G`VVGT+2M9&o#1JmU3(EAT1YAX39@z8N6+baXtkFh0QAPx?_Zg! z*=ij(u8Be6S;aS1{49BCZ(C8#H$QV($_`^@j-=2lmOuPK4hkNy0v#D=hFbM+eFPJI|0B8XfP+i3uwyx^^x0Y3J%x8 zAX1^@#Typ)gMZs`Ng}&ZEXD9@XoP~*qyO-x_Y1vu%FUipBOEmVv*c$H`3HIt9TI-s z)Xd#qA>}<_O##Hp+^l7@)!If?mg<={>w21s#Mz&7lV#tn(rm;p%AEN`Po!U++^kEGR6BPkZV;y%x=Q0JmxHC#XZ;E7TY#@>O*QU|^T$P~) zT$f)EPiSnoNS6J|_56?8cC2y&G*muHxUyPLAX>Wn zYp-~=v^C53deC647l24D)cjxN$PNX76H+@`xHtUUifrNel1((L?YI&E6fQC0iboEH z?0u))(fPk6N8hp3WA6#i9N-@^Bpc*r8&atkumE8C4pZP5X6M&P7sbiP*f?zNK%E?GqcVS9BIbekd zCqfsT^3Y!YwUs{Ghv+=VvY1{cbL$MA*U34kXZd9%hU-IZ=43o_1Dr%|EVqys2v0W zpl7V}=h*IQH~Y3s3VtKa{40is@wA;IkMf`XC^8|petgN?oCeM&lcQJz$xdSZw7y?{)@^LAyLr&s8aM zE?r1FP&=lNs1;@Q1>Ph>0d!uU$)H1luOslIyzl93%WAv6{z>mMDphPsWRo8$t+54t zfT;BS+L5)OS&Rh;){lB8%Jk4q(Xv)wz=Zi4_Tf?Q0&WWwAh(~8ENR8hP+mOwn)XCC zk`qMt1>ZpTwJ^7H$Dxg_dd~{xH$WO(*k4T#Xpd_9l34^qvh;J1)%F!}`$9nifcyuK zanrGYG^R7XXMdp;(vE=`6|$VGS23pg*YOxj4{mrx3(-3I<|32g(h6FYKmL~SJd2zy z{dUX%i-ap~FFYq`;^o|49G$;2x%Q;C6@mc33NQgz?mH*JtS1Ekg(qY^6wktA->IoN zWeYczTmXeJOmtk`-|c_fv_RHZzz$)$`0irzxv8JwNOiKw$?sAlnH4IusK`z zlOuFXR^l%yb=TQpx-CbvBHG+$yU?^r$UEwgW?TAcMFw}YNN>4cfJMb)WQvZ8>L_w) zAQc$dn4|O<&&^vrH>X;qGFMH&VN8((o&7q}dAGj;*Wz$CtunS>`b69Q9_KvOhYy?C zE4!=uv`PS=!JN+5T6}BV?8vrH5c*Ly>l%Lo@vA215+;k;u70w2+}qAA3s#fSLJK7$ zkVOyE{OC8@OWF*6r352nxKR>g3W%&iZ1zXN$Gc?ES%_^-1B0OT8E3fxiQb-<0#y(RoIy=BIje>A|V3~mBb zKFlAIby)FZWZS_a8cxNd2)Mf;dD>CAkYot`b~bxDE%lVzfX__D*U_r@wc(B z8~TCX$zp?&1_nX-XJ*%)-^xYb__b+URX#KsUk&)Gz#IRmYz%pB>sHkI%E6P5CACr=joIc*_YCd%W9`?3nvZ@ z!LVF>f5op}{0}>ANVlXfSksBzuZQZpY^Da_g0;Rv$^!8;hW@B3@6`Iz3+*q)Zgn+) ztzZi#ty4eon(5Xe-3P0j0KhFlkmM56t4+tMNA_g|0T8!gqJRDR;G}&byI25DNnxg0 z*fPtLd5gL{r?U;K%>=PO57)iw1=<^*=8pZeP-0D*wSR&@+W)d{@b{tCf8)Gv#p)FR z%O!bWEA#y@-CfT!b9&Ci zof~X}p>*=Y(lO0*E|{g`F1wrLsfFn0_o#^AIVK7S-hltTUJiMwv3YLZuK~y?!SCmZ zkeA_^S-ThP1#TMF&#n;JW&k#)j2ca;m~AF&(h1Km$|1!}CICbugL7OgixY?_^tS9s zDK%=`=_U~(7`X@fQID(Zv;QgWW}Frv2FU88)#M@e+5me+SIP}w>GryhqR)gUa5B$d zWs6E;lX3?TAzt9LhN^c_f#_M(^$P`UXC-?&zIU85Pg&9yKv2S$WblRbKUw9RCvN@L zR$j|%&I|iB;02F*IbJ4wQ)YU>USQo?*21I78xrUR^;$JXCVq2;20$Q2@igjKaYv&M zuKXeGW#SClgy#c*?N0XiHq-jakTG$FqFinpz|*jfM}QvsZW(7dxvz` z-OWN|N;4tCK}1K1SSK=(r8ehW|RV~y=CjzBXZ%}>^m^{sjEpo zVv0mM^6(N_9GVqC2BDmWjC&}rlqEM~yRnku&t5ORB#>pv*nIz#;O!kiso^A_ zTlbim6+i|Sq8}KuVD}Xts9(ouBX8Xl$1TK^%8TP5CAjD)l$=^5+xOO z0{XM|o;Feb5^gznHyj)s{c z^A5C;kzj(8K|FWDBVs&vs(Eau^h+C5iF#uN@X-~x)|b_9$sjdJ6+Hn21ysJ9UvF)P zge;Z-TLFB1B5Ehr*f)i(C-H0r93h@AxV_MqUQu7S>69!T>|Ox!x=rbwze?flUgVWr zlyIDZ9g&>E~*5~kzp6H)u?Z80mo>p6900DqEvatfHzC9_8Y0EOe9g47~ z&49Get*L|U(OB%q2pK~k`A!uEkNB#AtZmIW23aK7E7yuRbL}Jp0#s`f$Sy>G)-g1q zVjme2c9?UIXbd;0Gn+rnvMyt??FA4gPZaw+QqId~-4kxB9w78GY(iq~tZQR8+NzfZ z#{T31cMgK!W7fjg^$+fQ06DVI70e9y=Sd^G7ubh2cgHm_{Ym#Q<$R=_6C~g=QKE;Q zry6THD%DDD2c47y_k3~ziO}X3t{fPANQQ)+4?d(>=QipFJz)a2`dO$mXh)WRAj>#2 z!gDAzeR|Mgt4PJRkuNK5wRhV{Iga2ssDYLZu-HlKlxjIBn@HQI!>c;>jCGE*{68O`!HoGXSuNDx!Ywjmq}wgAo~=w!;8g; zZB}jBGAHCj-YiD2I;%W5?hs>dyHt{7{;lI+8PCN@S$fMO{ z*55S%;0#Cy6!j88?98$<*P1ggIGl*gft6SQn^1hS=W_ZywEvA<=P?zp7wiT8{QFn- zRxWARiE|LP>Y5<3^?<68&{&?I%SdY%4}S*BWJitrV28at zQ*;S+B89FHeYb4_d-(=o4q|MGf%imVu~E$XfUAk5hZhe60f_N}jb8L~aZ)Gu0+u*k z^$6cBD_J$p0La7mmXVL6_?g!0k+Wr3sL>3>2nQ?!VCj&nB=o{nQi99YGoNa$k%7Gl z33gG0aJ?fNJIAq#yW@(wHON3E_j!i(gqWt7&w3@F>rO39`S4c~% zR$JyYqnSJya=66=+Xe{JkBE4vn^n-deB`Oghd)TIsDkYk`A`!g>`tXQ^G?5NRfZhi z6Ih`Fgx=5t=3ZIG>~&6~Cci#G3aa=A@nBbln0J8~bK$vr9?1d85aXs&v`lXWh-Ts! z9m+~!RluX=y_9s=1z^!vkCQulIw>~fm#wSPg8^tAHx)4Po9}wcp-wp&h?5g55R?NS zPR9B5=Z`ZKP5zdF-;~il{FZM zUfzU^)JD9~%X-eMxHBGt_+!!(@>A0+G;Jl-RUo7K^_H_;4S6O)onu7)a54N3&69zeq0=v@t4!T%&40{O_$x1#JMUSFYe!&wovNv`G-?K^`|Fo#-%_ z-+7C_V*&)0mYizkcmS4wVtQF?EycrF@Lfbm^g0E}6@qNdKb6`t>IDdu9(uW#ueJ8G z4D+lzqU>JqJUXW%L?x^D^@b#}>M`0vF90d^8o;Ul<(7imz2L!OK3EM|_#nu&_TS2Q zQTtSI74!lSf(;|?WBLe>*2DC`eZA${av4j5c=nSGOL%RgS{shZ#do_`fc}4Plsdv8H?N0#rIO_X-ed8FsPzZ%WFs)OIm| z0Kn-P2K*kLM=Hd2F)V)aDGi*T!ed~Fu{+tH_-7+%5p@}QSysJvIlcy}V6q!hgX-Wb zD*?pW+D(oEOPF&WN@zWuVn%H?sC=R>yw*j#Hb!e``BNGqVa!VOp^ZL{tqMs$&h4yY z{M&k>y~~H(03g)NJ;_(B?Yr}VtUOGj2OyR{==qC-_oM3`zUNdQUq`N!sx?9b0OAe5 z9xcmu2>Efk^k!o?crrUBJei%c$c~R>6>iwsLCrJ&a@DFhBoNop+U_d6%gR+7LAWr~n}cTx0*Ed@{isf7(KX!M4`V4*5vBhe^M9 zxho4V^L3$1@om+z@%oVSF#vL~wrUhT>JRvkB=bvxVL#;d2P`LvS-m8ZPJp}9XR+1G zEd3(@@+r;up=IQlV+@#pWZ)k1*Gi+$5mz1bg)C6jLIDg2Ky}wmQVVyH3OJRuqP@_AK=F$g-1b`i~a-%yk#!VCg0OF3*3+XJ9>ZyKscAOC{ zx7tzDX}R>{)R8axrj+rm*f>va!8InT3toGf7g|LIk(y(Hcw(4IWbh+?o^{Tte`LB; zAqoJ`s1b2Iqh4FPjnu!Ik%Ab;!X_11T# z-n@WEG1;U8+P#3S7qpiQQ2Zy4^?K!^+B;>jVE4kZ;K5O5E7jB_wu;I3LRc2G&d&+p zi21q1$>n5I&5%IM^Y%$^ZbtFEJ%5uiwtBf`4$tRjPw8dT&O^WQXQK|W05&iUXiXq7UDrIl3_ftdA<$VU``c=nRUQY-3!3y3qORH}@j)|0@YD6&L( zR*}oIn2$5d1G8#6fCeBqCnh{M!ink3rck>_Xo>-l<-K|BouK(9L)nPboiYV#3d9A7 z&}ho6vtKFpS|(ScDJI5+-K^H_J8t;1!jE|&*m=7$BxZe}h2x80=VPm|@Yti)d)ZXF z2Js2vn_U7HX07CpX=WE0(8^bqkY=xA>K^Naqq1;6s-wAOS-w=rn$=bzS_U!aopmqP zI(Y}~P;i`QF&D(=X<3O|mOSsDRK#{PxN$pj;a}4F16C$#9O%aF31C_`0ba35jX-^m zcO46UB46IsyKlk3z*a{ENuv8FZ3@)!ZrU|ugP;au7j0KLL146im~~9Pp;y~{ zUGy38${CA>a{UgVJuempwhUsoXBj`Dxb4hRe_ z0EW;9>g#yFK{-5M3g1Y*%6h4{3M~-x3Jz|M<`tX~|5mphiL9*O!oGnV3XX*yWYnx) zc}ET_hJWZBAO$di&?$F3X?h#bi$DO#d+bYxZ?V-00?2?KW>8Sz^b%qff0q{S_wQ-x zx~eku0s)dMg#wXL2I%%)r+y!v;EdhiMBEpqzjZMWA1zQlmjlq zJ)reVZO1yJ;a{WIM0QN}PhctsG0&uXry1>>^FksRxA3v;1>7<}kBt{V^PQ!07JKdv zVL>lY>l}sjqdstPbZB~eoRt8-D7;+2bHxnD3UVmCI3w}LM&pwJ{U61(wZpwI2mp96 z171&kCorKwL!7DQTZBq3sOhgEK9YimgK>TZ>g@kbd7Bt%9W8@}wx`0PzkTw4G)k61 z!{*5Rq|*9bF)u-yBDJqR*FB$@vG7vmFi@(z{G4IT-n9bqgwyGwTYo` zw7i@cMA4F=uu4 z_T??k>QNG+A&ZxAtj_XqTA6rsgnQ`wc6iAfJ8ZvVi(~GHo}ew{P@X@gt-jtiAh!+x zi19={6My*Tn(a>@{zz1|cxsD-CwZq#wy;dheBb--7yT~PZXMGHwtS9M!bTgvD6MX} z@#0upNH|?9Y97zvV6KQqh`>97hv$nUYJMp9a+PaK5CG6U1C~@dE?4fM@2yBPd6JoV7Fy?X866KNk}=@2Lx8Q~8dN#7R&I6BhaCbiJ6JyEb=n*~ zs`|47Az7ue^(kMamYKPvQ^10M02)OckBSrBlcFo8%)y9pGGJ8xjG?utmNX+(IuEJX z@kDW_EY2V8IeS6&2>~$(JMU~#4uqJH9c{AAZWZcFLRP#$`u5|uc)b&{>Qcr5pb!Dk zdXr?k^p&kkLK_A83y87rk2vKr4I1HCZ9ONM-2=14ASJ8;BtBm)aLh$7t4L~=0WQD+ zGCXrjJJ}*Y0AS+AS!+7PqZ-$YD0VcST)ek6Gp4I!`Pyjp9YaT=9q6 z8e&#Bi{Wr4Yv$PWgLYuEX8tCXFz+Oa7Ib#a|JkbK*4cGS4N0M0H_iJYcI)sN2nu~4 z{Jv`0Lvy|^i#$KAPzTAgS}ucezzzmzwkpbD9;6#2ZeaU4h$RTUd|mz>J*tm?K2!Fh z&RZ~G3K64$bo2ob*5$J!%_p>wW0uVx0|7z}!Jsp5YD*td8vwF50I--20F+SY`1evC zyBFAk*LeO38>91QwU@s+{{2$6;Ba*<2mSoG#O`RYQ~$uKh+DJw%a}Io zv+H5!g*l>8`15ym!V@A@R{_Fq%?VO8P>9meR<3HReFKwVw zJ9y`p81{QQqio~4sxmn~Xq3Z>TbbY_sme(J#8AsLwRC!r?wzN~1e<@>4gg@MNy1!? zc2HUtjlbQW9gb^yExFcA`o7kYbi;cmN*~H^VkGJMnCFwxhJHCOqc3_wFGhi z!L>Ol|6SMTL9{`qxTw^a2_yzV z4y+b)AXVL9y#&O_0RV`z<{G9QvF?Kk{&HZDNkc1aoB@#tI0H5s&{VD?sWXR=10eK( z^LlI(S&1Fl+Dz7Y>M%G1s}Rt38?#1TwDAi$;HU$B3`CE3Ch~6nCC<1Jzj=E{rX=)t z3SB#VVV7|F07R^5tsVJ$gl&DWf*t_qt=GoPw$b`VpUMQS=4}i>>ouN!?M#V(xxPN) zm#pihnho(0HyXR7&Y|P|N!MDkz%>TsRl}J3KScAbbPK{6^(;b(yvN5y^^a9RLVfdh>BMsR55+;RfEV3G9%hO%yeboqZ$|j`nK8>ya&vgAvA*L!RxI~l74T% z4aY+*x8^|xYynVcZ51cimVPfw)S)2*?K>pd9{5JhAzxz7*<;R{3o^D%x?zxF%M>aH z?pb-(cq;%PUU++b6k3M^CM|wK#(^O&;1W+k2fg)Y0{eIvE$!zVWHspM^4Eo z4)pR#o1w2{4{CK8=>!0TW)m_s_l9K5gX0gwcH4OfdiMe$yc|(KdieRD6H*|4zl)VajswH0PgW7owOrdASt+Hi12& z=#z?8)Szzk0vXs{`aEwWj}(~dKmxs>HqE~Ck30r>0Z-~$w*nid1OUWI&(+ie{p+yG z(k6!Z7nc}oVf@a-zn{Fda})a%CbelvW$%#SiXD>(%Dx#ZPfMy(tT3Dey>@$}FRiUQ z@gK=^XC~z^(A(3FX(Oc(ZNNdD7>qrhChBGb*y`v3t*_i#+=+GU@)bNj+13>Ml)Q;P ztZfnfkaMEtOJpW7sUHA#ad|+h_RU)opcZ(bDSm`{Vx5Fh{0Q~gLb+`xWZu)bqtMJ< z4IL{Zzut{AQ4$-+gOI5Im>mQWuhpb1Rz$L6%F=IL?Vy}P19A!A$3G6qH9lhl26+Lw zE7Y?KES7@-coc>M=-UcY{pF}bY~Va&r=0A7W)*bof+W%bjU5;Smgt{eHa+-XY3UZG zx&Z*h^z2VLUNWsQv9^B(yyOz&;Q71j3OZx;t|pfqVr#5sKk7@CKJ6M$W{u1T9?48@ zLKFbSd#oOjKAv5|))1?cr~2hXw>!6lz%3RuI_b|lPxH_8Z0St%F%SA_-T|AKSak*z zu<#~VXNQH~`kpEK!P08-)h6m-Kxfx57!NSqqSOgk%>u8@vzYM=w+`~;;+@q=q&F&~ zbfH$+C{P(2C3*3bwgtiKRCnjMTHC*)@5Ec_u<&`@w1Gk0n%00D5HB1Qd@d0@C;!NE z_dIw8fQhk`!V&Z`M;mDj#dA60r9Xk7HoS_VOvOyjzDKoGPi2*2h_T`6nz>?`=Y5<# zs9i;^`(2bzV{1Dh?H?3!0hs;q3DonmuE|kEP2~YdM#Ojxsp=u5V$y2Q%0kc!-$&Si z3_%$H;*)#(l>;$W$hTzsG%$!k%rie6x59cPye>4Vw5=5c0EiP%0KcN2S=hagIy;&P zEu7C@hG14$=eSISmw#T)ogu43qnTPX05AZ)!baMSSL)_F<-z*n=n%8JV9y|XyoBiTu~WWJ1c1Gqq%VU`G>E5z!bg-hM5Z45`9 z1n9VPV_7!R)|4xx-c@QIPC9Q+gsd6n9WL;A_czi7RLfo6K)y$po-A6p(1{}7BdRqi zJFRy!6l%;_qfa|`O_Y53LJFwT8HoAv%TqtCj$-2QUBmr}ncpcL&TG?0r(YFl9JJh= zoSXp|tl0DuTK^|oR{{b64}6iVqr(RLds?AiZPmd86N+KHWaxGs^#Lcp;3LN=<>Q;# zkb3?iVv;PY)OtGrDA@YZ2j$3mQ@`j3gUi3|CHME#2<-(z7CJw#HydVz#g&UKY5{EH zJ1SO@4cze4`v=9_FOe>+5)%Vd>*nB8^|Z$V(=>>OxGlelH$pE`TpbE>{9Gz--C@ ztc^0arj^Im5dykb<(V?v)aV9cXrgYDCJrH%_t*NdfkOzMr6zsgIDPI>vSpRI7*N|a zKm3N*4WDOOEZtWbh5=xQiQ&TK3w&s+4_X0nA^QH7r~#mV`WAqPKbDeOF|7jt;(-&N zIcq#%4dYlxS+ErV}rm@39F7HZr4&Cj#8xkeYg0V~FJ+fthud|(hCeYcDuQP|iWr%!Q($nTW!BD`1LK?! zM6lEy>$wD!*wcu!B=fd2;cX+u6ViTF~inSJ_c^YUa6CwA1zORxsK;8jn%$~U8^B`80z z7x+iZkL;6?2rMtq3;H_#PN{ZfTnX|5c2wIf)vh$j01#sW$u_#Pd8nOZVWYXENp?#4 ze8%)Y{s~ljcXAor`ZJ8Kw}!3o^LiR6czly#n_*T+I-z#;^lz{RSS~jDfJTR<&D3s+ zAJ_|wsoh&1&r(%^7w83*t=C8{wkXhHlCKBJ*M+`WL6DE@r-vCjN!6=T0-)-oR`z=N zICQHG8DuG;idz73(TDdu&_nTs)17(F&3M-1!Uk}J0Ng|FJt=iuy_p)v4s}E=dMHgF zK5m9f?)Yhu9#`JTL~eTcOUOW2{q*dV=MC*1;6msj1$70rV#2><<3{H}-eslM*b`A^ zry=pegArkL)|oN*i5$}nJM#(Ymu5SCI!@Za25=8@MLB2>Q>aQ~0Bpc9^XT*M{aFfj z4CmV1olP$@g)mSQt)iehBNA_ng zl@E;WTvs^L^Z7el%5F@1(_ts-qs&rRm9N0g8ZsEO zBZDUKfhUrG!%i7-^bfNujYVDqQ6&!)+sQEuIn91cPYb?Qk} z@6#>hV5yc-0AS*Kj~_cO4gdMF(Qko;WJ>aD&OdTfYU8NoHY*6nUeq#|O7yF)lv6kU zNa|iy1F5KGQ_q^c`i&Rv*=#^K5Er9wKUO{{lux#v*Rj62wNth3j=pdqlu#qi{l!<=(!uO5ZCM19E(!iePV2%{50WbLCld>}7sSQGauMs5&Q1;KeIEzqueoiGveYFS$Vt(@v z91w5*!FbT?>;GhGF}7eCpoAmUM>#EDP3Cj?G+JInvS2)81Ii&P@!29WJ*vkEVy>I^LGQM$sjgU&RG3MqCaMCx5JSI#tH z$oDcDih5D2sDF5;2WsR4ory*qk=xX&tOuwyr8q9S0pO$e`L2aXK~?Stz_4Uq8F?z< zN0NUvvVa&ZV;SK&;+L`Qd-Pq?4)O zW&pR&p_j7pI_Y3)DtwNP!_6T{A?y|U@PI8>e|`u}BBxiXB=7=Ra4!6wR{L1mK?RHi zc>(E?<&tSc*`aq%V+YIwxb?5fin#p^aqeFjmb9m z5OBW%31SRvjnMydyzrEE9zC?(8|vr@R){lUi|4Lr+8Yw zWR#PD`2glyGlP=4`EdBdK9w+K>$l3Qc1+?BLrWp&dcH;_L_#1-DMOeO)f zq{tw=2n)UQYy?{46K~%%%Op!TbZ-(E4*XI4Mk zb6Xl+#gps}z2FEP1I~@TD9a54KmiG(yKLzqGUeABWR_I*33}j)6T<>O>h*ZZ2ex;^ z2SLoCaIV2TyQKd>g@h=lQniP;2XWbuRf)3>09fs zoOb4Njo;1dZ!iYA`me}<2IW%P21CL?FCbjACn5?O!Zu>S`wqa)R8o9V`d&pJmH`6u zM5^euIg%YUj!O`;!+?w(-j^Y)+<^gJ;{O^pl#!@fuShv;b(nDp;!IaLNB%d$jsZj- z01N1QKMnlwqm|@T?WrsDhFIVPSZlifa;Lz>2(I zLSQ)+`s|Res!Vbm(pk~{)wEl&=RnKy9ZdtgSI{6U4j?5!_-k2|;Ig=XyxV%w zgKC`tXdSm8u$BU@C_;!1q}DsrH;CaLNs<;(gHXE%()m=&AcjwY807}L#^;Ya%Mew> z4XASF;3s-*Y2W+V2f0G#p@N24VZOhp8BY!Ys&xi{7%!<~V&9vRek3AhMQ*cgt{WOS zet%BJVPb68aLawhb`K2t!NfPlh9|VPI)uKNcYYWqvh3ABU)e|q?m@mXq3fSl?H*vD zb;J(0>>OXDWl}iS>Uz}!bq-=~nF>@(Y8&|J(T|qdH%W=V&Q3^NdWxI9UVX0{KJ~FUXm4em*z%wiuJXmmK1or>gZKlWpLyeFCvJBgg z)zdd)#KtQiwWMMe#Fbr^aN!PXDe3sz(v?-g3t|WhdGJl{T)uk5Hb;h6XU3IJ3nuSR`g3kw1UgwxN5$OeA;A2jTROoQrHNCqMYp`mWc zc17nHIMykglKm1__M|M$0L+B|@aw6@DC-oudL)*CDE{ER0HaXn0`Q;Vp2MKfngjvx zcapGZR>ZPN&m?=cx)I+TuIUF{kLDOJP;j#ZsUntp;iT}UOto?VK;4h(Z<9IIRszbj z&&c1|gXvejvY6ttHnzJ*AN z1+d#>A3MVtGX_=}AMxAukurX4wvbgO&$arM)xp6SPm-1DvjMdie|co<65 zU=4sP`lrD+hMbo5t$G&859|fT47IMvv%`ehc0m=G)z`gafWQyz1%Cc;sobWsHOalYAg#$|nODgLC0mo6H`?slr_MVtZQ9inlrs=@_j#f#Vj18)gu zEL_~VX9GDg$F6gBrlO%%YY@Gh-8jY>uZ~|Y7`ZeuT1K^+enZ_@9|CcYMhBvQ%04C% zMQPaPBhs*HUxmt;s0ubf*gn|_N4WM2r$lZqe_WmiR>rDHIbbnm5uVOXtbRsM=SKFdASb~pivn6V?V!8ZWNG+<|P(sj}8H_dQH>~~wvk~vz+ZC298#0+D)51WDy3i zXJR7HhZXunm$9{lWDY=o`UG2$Y;q@q3{f?SXApde3yH#&LiE$|?{}{xRc&NJPwaqS z_9^WEa87vNuT^DAHGrPf0|VsZaI2w3Yoc*&rPjiwu zA>%1oC!ilX($CD!z)jg4z?S4sS~WhGxbB-WKy zYI`y?x#9QRjLI527#S&m2yYVdHBK^a?^iNAy7yVW1M4mW@pk%gDs&Zgxx<8&d~>4x`CCeQh+H3 zb}GBFNEDrUJ9Ti?4ZKsE_H6@ zmDZc3EUpO}Z8ZHa2>S;oRy z%>vnoB>gcP^5OP?M=YT(;2oTmlS@&PH z8!cH=b%N{-0N&uhc>CmtHL0_Efjm>`0}wV`d1_qffaU*oFRX+_DIe=Ap1Q`VEYqO7 zwCu`))+;@_;w;Z#9lGd$sqCo>lWDO_(GIfbe9copAt~>l(*eOH>OB48VdaUe{N^ z?FsJ_;C1SoP5}JYDm-y5UULv9hy~U7#nbzng#%C@azd6{Lo%jVrn&v zS$dZ=2mjkcA5O1uBYrIM^4gyAs6==e!d!yU8%_+MH@MNkZo}=~kfs;_;_t>^j0Q38 z%gM1QiA+;!VFAQ^uNvKD=@27<3|LoEW_m*m{?T&$XWjLh=yx+elo4vYxeEzQ9XRQV zLmTd*bHQfoCKYwhAXvgfe4!-FI{NklE_&qgGu9O5L2{U5yVQ@cZgDg6004RZ4c(*F zT5&^vTT|S69@iNGNMGTF*4Dj`_W9cZ01*FrI;(EI&xciInpN*LhR|6_VDR3LguX!E z5ZoMnjMZK|WZr$bJ#T!>uL1N9m9rwAp1C1skj7SCuow8a@CsQ}s&zsy+g{L?MbU#0lF?i>Ul!qn)xq05|GK-%u@-z;i_e z94}BTD3w9VVZ0kaG?Mn6M%o_Jwpni&FhXMw3q1gkY`}9pGUVz1ubu1I761%!0jLEy zr2ihb-3|v98UVCjulXKb>`nfDj6FeP;@LDg2Jt^vlWN{yZ?jJ07%L;i;?=R?ZV&XO zvt^g#jb(*l1ZEI=k$|4Jib-{vl*Ebr^Uf*V*pDgGr@%^o{x?#SXt`hYblR=oi3&1; zB_{qsjQi!FMid5PKObrj-$({*7Vq1t1oLr?5<&-=Y2Z-6sS2OxUEJ9yY7O267_`w*A(XdSX3dH1ECtI`K& z+tC1e;|A8WYb2k)H{+#W177f)CF|wlsgcnO_5!=5x84nD{7nJ@LZ)O^hu4YqPk0RC zH#4EU=QlIGJ+VcCjNKT7UjEl*f#V$*q{fd}XKR!c=XeJIAkNVBpzBI8Wfm_fZaXPd z4zIxa5ZnrYYi)Mw*5hT&ZTp@CaH7M;8wQ3{!Vt^PS&g;06@Gw;Xh?Tj5X5H@6EN#Uv8bx4FQln zWP_8p5S>rUSnC!hN$_R4pC!oY3Vb^}$=F`D{vjarPfJ|RISBNI9&p}|`A<~G!#}gc zAOLpV_&^)&&*h#$69n7~jP@@XqmbJZg6q#Vhn(gAp|1`)Wg#U{zQo(i!_XUB98Ya9 zdkvr7^;a(d==sgA9S$)brp@yD6MqE^AVMgEZIZS0SU0ua4&SqOusx2jJPfKqS%l|c z7!N~F_I2bLu{O1n@qOiCFd7TZk;&-|9#AF6a66#bMgR<_Wd{5X5H!b1*jV{HxvOW! z76y3%#n-$qW)FV z+)?1+VJ^qZggNub{5YNX_|B_w5tEfzz$V9bOEPx?fXU#XJgt z5F@}z`V^p_AJDfcdCk&quMI!TM6TXK3lHZ8@EuV#j+Sd}-u!l2;ur#9Mz_K^nR%iH z9Q?YDl*t$r03JW-RT>(w;9QvPq+I(0P>DV$dPY-ELLR-zU9hCJ$R8di)xM4L74Kic zyZI&Q-NLM$WLxdrOU6EJo%swZ@Kdj6NjEY}d|+`Cb;(n$=Tmk#$I+1A5|n=`m&5E{ z@)Ho?7RjsXbbIQPN_Bp?1(oF8~O=Oe}g!C-<>^F4|roWkE7zHDe}wdEIBuhVbpw(GF`O>$nG8 z35_1`*>^w<;ooG~8?o-P_0X;n9)%FX8-VCZ;o8@7{@vg9W@ZZj#Lve$6-cJ2@F8Kc zPP2Of2)%qiF`G7I>pB%}6|=U`%WzK*aFqhzZL^agT0~R=P>Fsu zX2u)uaxoFfC?f%GW)V;PNVM~ZV;@#9Aw!qu(fMzwl1U!Dt6Lq#{* zk6=~e{(e?vlRVZvr0OW}kF+p`?yL6sC92_f+ns|r0WXJ#b$5}n4~gf{AslZm{gJkq zw60p~2Vl3@NsKcDmppA#PV8{fT#5#@cyi-a^O)H`@6h?n>?P+4Ui0gI^V?mPw%EZ>=7+JQf*(A zB)u~$3D%&Q1Z@)WsXuI z`U#~PXz?@pFo0d=c#%(}k10(u0K`~_;1Ur1;D{Vi^8F2 zoOSq;gxp5fQPzyDxcXVBQ?C~c?ICxZl)k-(BXC}c*B&NJFB+(C09Y&Xv6cf1a>%Kj zTDb%ApXuJep~)UxraOcaE>s{>$1e3n75`W#pq*(1)jvpiM#Tbkz^?LL@d;?C#FAc z)vk&-mWWxvZ#$lF1jH!+P2EoeUEnyWj;lu;RpV{wkG@VHnCUfZ~u+-Z)F$;pmiKD05JqDx}kEQVL;3WIc5~y7tIGbcD=l4`v>?1F#;eD zm9A)A)@Y%_mrFs_FvI{Xs^hY`bo7noSGKNfAnnGCa?Yj>W(8}&+xv>1S>$f2id{c2 zfbzgigL>0#4U!$ToXoZtv@6S4nfH|!$ld_J5)+RsPs5+s+LXN<))kJ@Z4qpaZtT&)*t%K_JCIY8WY-CaipJlhhPqM&q6(>mT9e#dPc z24!zf`O6;3zp6{oI=^ZhLn#x#E!JOZ$Pn`#N$_Ock%TBLwsw>xR*3*DgXd!-N;&}r zo(sP@FL&tF_G=a*yhFMyN~7aO`nfUjk3`mhK4<_k@Bs4q-4D}?+9=$4;3ZfCUhwoI zTQXZ>P(VPXf|j$AJcZ~RY@AF~E1Itz z>7CJ&kl{xlM$2-t&E7hpd}JUi3_$CZLbp4tAggS;pVKZ6KmcN-Ph7j!mExYq2~w@I z83o|RaY^Lvq8c?Bh(?l4Ev1Xx+wm6KxeEaV;ymbqKCC5~QA+&1UZx~9$sQ$CiZPCb z-qa$o?Nd$<^dD#o<+JI*WcLL`|@)cb&4&3*mz@VUyWkpeKG&E z&6ZM*fY$LcJbbgD z>qq1<`Ly&l>2#_PWB@xG9=YZ?-uG;T?7;wF*)PaL!GE>7Ma%J%qZO;2w#Nmi5CE^ZI>Rgs^NdRi-1PJ9gi z3<66i1{rX@iuFW@0sQMe76Skt#bp2Q+Ah8vJZu2_59Hu^XVOx`?8!A+gdA|=ne<6U z3ubIQ8I~(gUz4(^z-J&D`FO)$W#RwG68l5vNW-a72gGQZ^C+?%%kg3VGPZiz7R*Xy ziQJCRc*%Lpp|Wy(P-O#J|A9W!iI@8Cn7S1*uo2r`s4Gv_7#Z04P~@`neYPxt9hU6g z<4Fcq?cO-eb+(&S>$1!cC7tIq!PX~K>;eG6|E14=^uaSh&>C_p+h)V@59O&L_25mg z1^`B^FgS6}$x=4;z=|K(?N#6O|Ln+9nbFnyu@?vsUjE0uO>UDyPM(b4v8({#&1ekh z^TczR8fz0bud$Jzj;f$XsFpE#Wpo;4d_hP!Yj4u*^AvQ~8~x5QasF+#{z^tMh8tyg z!CqjEd86b;v{8lxdO`D7j+^tJ>5BYq8Seqfs1J#qL-;Bu0zN$tRJvE>mVaO<-KT&2n)zIvMAZzZSh zTgrQw=nSS$N&3*BrxjAaYGY?SeRHFdyf@Kk)2{(m3WGnXcSPFG_@o!?1s0F(B{Q$_ zNeKifSK_$kxVH-Tlglc~D2G7+#4GlBGy{_VW<98318S0H0Kkqt*9s@cS?jtc$D@bZ z^l?~}-nrH>0v_PIJl;Qxy1klL#t5UICad*glOctCG}^{+n-P>?!D%D`7#qDA%YkS z@0?{Kn-mT#711(3dw~b6cvWw}>lm4Cm2p7KS*6gVl}>KPW_p@@S8d}U;ei-AD>)&+ zip*PAKAkNSp3)2hx{wQ)v*YG%INfK&l_$GY#myk}P_OW_Xk@S!# zu)lO{wmneTXJjZAR!-ao*NB1OzdkHv-Rm-stb$D+2`tG0)3E%y$-^T@{=tzh%nCx2p)aL9<39|GllhklKcl#0zTvLS_mcnpXRla;m9Ye1V)>-xqQ4f|>O<>^ zN!O8-Gz-zsZZK5fxa{=vk8*`Y4FmvS-d&MW7kZIV#B6Oo|DIfHQ}b3YkVB6_8Mk~O zds9&~oa!cCKcwA2eHYHLh#zdVLKYCCvS#6>rq)(XVAs6R)G2yQnu(t#Z|D^H$X)@9 z4j@iJ7UtkUjB;?~%$n9#D-(0ezOLz54l3ltJ{&`*S7 zgCVHdU}=|Fum4j6Fay9&YkC;ZtM|}P`UDn*5(I!;(~S4ss=yI@964P>n$57#GBNEx z)egx z)L4?=&j;>+qvcjE@zEIxoP{3v&gDkG$=R4XAqrx6DA_J#I0=k|h2IrhX2Iu0$iH&7 zqE3kVfxW>0Ef`}9PZ`Fsh3wS}iqo*VOk_sI3<3bpJ#dKjyja>+gzRM?5%2Pmsejyt z(u?h0075Tv`|#kkY_+2+RUy|y<<0B22^ZPqqhZoi^h0&vzwv19~a(I?7QF>(OQ0OHy^ zx;j>mm*-yO7c<(G7ZY~1ddCRs{gW#!+L+eBIzz>8OS{GwtAk zSk^89`I=c7PvZ`L_Oh}j;-DR9Y*YYTV!b%;xiQlO*+4qXQ^&_;9&ZVkvn|6r0BBwA z&UubQnAXPysp|Ia?%{j%=nUD5 zkpTb@m+6yCFMCcnxWnJFap>L%5U&nBr`K{kcjFs@a}nPd0s)X`K7`OOrQ)gZ%E_vJ{~txhP9DX z21A_RZMk91KAJcv8<}aT6+9>Ydx9qJ8WZW?@&q5(^}OlBuu+Pf3oXmk=-Gra#ARHb z$)R*mBq(>xRvo8|3Pj8w^g#dgAX2;JyRy_XrVj>a@?~d#F9ZOs%lno8i(O-n1?(pi zUCqeb2tCssBWzW-&^q6|uaPY*N6(+c1H0_JK^t{IH1E>b9xa&_0Kj*rKMy&r zW7K~;Y>dA}GtrC%#D@ppbXrCM*?4iR%?j)NCar|#rPy5U#wX!)^e??Kz>a>RamFwP zWu`F-!_+Jd;suormtd{H@3RLjH? z2tcak>9yL2F6<`f9>%C(6U5V>{-%xkDE0$e?W~mgUFVgow7l`IJ$YeP001jvrZvz; zP2MS!ZB!<{MGHY7&i%zpP3(EguSrMEsO7Fi3;_MpNw3hy)*&||C;%Y-=jtRKsX?{U z+$A27@ng+O*O)!FR+#Vh?ld9ivCW$JNUvHpF{^N~T{39Cca9n7jL+0DKRTt(f+3gy z0`J4puGhS8T$|eNf!QfZlpwBl^H0sru1TBxi6^;v7aM5oSOMh@w|v$$(8d#=J1t{+ z6SU<{#5mZv+U{G;MnID0mM5EmQIABP^VY_aQ+$X6cxHX~B-J5PfR*QGPwD7+S@*GB z8Z#>ZfH+zIKXuYN`B!Ft^-a~Rm=QE+Ejoh60rqh$bh5rL<@eO0JYE2Rp{u1^WAGv^ zR!0wKUm};RO<*txGGGZ9y7o^2Oa-1=i8TKcbu*L4^M=$nPyKy08FuYoe} zyWuY+03gPW7c_zzFJ64lLz2vQg)EBrvpm0PR)W^1JzODw>8b_;h3`h^+y{9_dW5D#B;!68Oqx4tmIZk_p#byX;b_Q(|L{R8_K3RJXwyFsXC z!}A&vlVkdjkjytu8?aMV?l92yab^Vov|eiOD4menEDrH!>8Q*XOI^VbgcvcFL6M8a_b{0MYB~8|C>q+ z+&gDSf2#t3*0Rjltzc-H1te9LLG>WFX!;B2MpxzilKHwMqebUDIM?V1I zTTV8EPVi^AtVll(T5Z6&n3ZXD5<0#Ptqkn^HLG1QTzRlZ*X}iur_;>Jh!+etCGh6_ckMl4Hl_r6LC;oO@2@pw2!mXJ zE<=VU>ud)iD+7RqWPSjWURkA;QQ~MX+g-SB0RY5Z5+`z6N6DJ5;~D>LkC{0Yu@pGy zU^|o8;E_TC`j@I^hc&YTfS2!pg&J1pJSzPL6Lqx9KYHLdEN5N(rIT`rgjX8eca72? z=F?xXaQljec5w%$p7JdCA%%R7$}DY3AlQ^L6~6h}j(xTVg8<+?Q_MGR41VdK5COmd zMzw^ajGuCB(;+;gVRBn@vKL+fei|o^20Xf&!VUpeHF|MWoj=+khSjeXFXq=$4Gz%z}krOakZ8Le2mq)-0cm3;>|la0Mt5ldLOo9);VkClB+^o^22NdtWGoW3O8(f zc9^KcHelP6ll5AXb`H7dXm2|mmG9t`>|}Xe$6xONp!KVNZ*^M7oPFkx#cWk_>z7HDW!;o1b>Hoe)^-MG z-T^@Ce08|8Y7j$BAQXs`{*gx;D(H^v`)jQ02M(z=Yfn*%TX( zs%+Bw4p=N_jewY|G^y`pXENIw;aqy25-7&B^yI?dxj!GL-yyhcplsrznXS_dn^t$2I9y$E01O@?s*Y$Dq9eZd!abi>t z0EpX7_(`iiVC#XSZzJvC!VG*el(eT$h8AzvR|b$p(qMKWPcXyD{ z1^}>W?DAU>8$Ezu$i2AnnEl=;+6Kb2a{&^8EIjAY{Zt_`HH0W%ls-O`rb>Q zRg^l{E#$`Mp*#RI=>Sg=_qybW&W}9 zHMs?d=^UUQzZ29Bw_}C1L#fLlF4Q8G){f_i4x{@k#4}f)qdJ^-27HW8CkCGPpML`Y zR(f%QNvJG7?&@-u#rVJA&riKirDBSn{fxji4Kx z1*m0M7Omr*v^?%j9cJBlWQ+p_}&hm)MoTtfoWvY5D;yE_EA_ zvHMm0b^f)vUjvX$f(z8Kp3pM2xfkpO_B<71A2j4NBY_HJ2Ao?r_S#8+HOU|Vcy!(9id{VOy#;9s^=%RRu9}E7Z=RZH~?sUXqQPk5qRD&XfnqZ8qOdG z03Duo)KR$Qr|ohL$Z!@!FEi074nCIMw5_3^a*WXd<%I6)um006D0|0|s)4oDLm#9>6tellcsXAP+LsF|IF zB!CBLIp%hZ)5tMDB{beLFc}xUfTecbraC>~Mg`A%VojPW=LRz66uns&a9D?}y2{62 z0u05(NlA}j<6_*6TJHflk%`BJDdO76c51Bzcp_`1300%46@GCyveko&*8aQENO6~M znc4!@et9zegc2d2TEJt{1Kd$VX5B`Aer-=XAShV!g7J3=tdnw-|CWXXDv)^);g>w8 z{3i$u0w7VBi&}FD4>gp7v9UG)Aa2*_fKDardwpd)AKPTLt2Nv)$sUhUeQZCI9#GYd6?yJ4YU_J8KngyFdKskUFa!LXrL+7e4qyu)u!ZZsIOePT>Unlf z_L7(4g$GO-GhgpY5#0R&lIlf8lP00(jh38`!B$?%NjJ!Epb++G*<0HjC+y`qw9bAe z!KzoIj7xun+KV-oY;Lb!Q1Rl+>?AJjgx2ESgg*^kZnGFaQ75?4yO{8>u|`& zmkSO0F^)V5SSC!$x0!y)L*VBombBBRs!`5nRm#Uemt7qim2YheZaaVgklQ{d7v>7? zhjYk~P>|b;W-WZ!V_PXwivTHr$qQLh4Yzv%0UNm-&88}la6h>{$(v}tPI1`|b*Tgf zqA_{gb92I^!LtxRUiR*1`q<7wQl1D`9=wuV)$lQ8Mr8&)af+K@lz`#ZQHt5NglL0$|%L1?R3%J3zrO$lw{r*_B|TWAolO_1E#v+;L& zJXt4|Zi`ddC5p5O0|DYEY%q~IR&0h{<9mC{LjW{{zst3cM#()n&)XY-0Le$_Mtqjq z?oBF#2d=vBrgmgR>DJq2~ph5`aV40Hhyq-Klgj9(_`| zo;||`0eg038og2UHFQUDSt9>1%ab^yJPbr*Lq1f`zO@@UH{#$o)`drQXafYm&DB3U zYR*^YNJOvu1#I?YFS%(L$xaA>=%4nr_$_PtuP(uL08#+soR#Apv_nAlQi8&pE8q1a z)@To?Ffz#HH0T8&^s=n;cnyf&(c8{CvX@fyOA`WkWjQ};V{i`u2mo0wuYcfqQKIan z2<54@KF+yfUXW++AqzlWjlI`>mp!VU-^?>k#tvWL%o!k}&i&%2JLSKp>*cTk+Wz3A#=RJFo( z?J0W!$P2hPtAiaoAYdP>M_tyXwc!F<9+TG+U3))x70*D`n*lX$7a2Sm0t5iwipc|S z#2U|2eNqXxXlsmX0$Jze`Tf)2y#Rz>WG?u4m34cg9WUL;_1R_Q8HZ*wiU#)pfY6Hs zblU1U$0}vnKsmaz>&+6hcV~v+wE#fqWx@O&T4SMao7;XSd%*w&;{r4}={gNMTfLw3 z0(;E>AXdP(&A&N;h7jm>DN}F-@K9KHhd-H7y<8>5hJYA6m(TiL2?eo%7YYaqV5|rkbWB*66xk*Dl zT{mx916v;1OJ!O&U^RCME$Ju$OZa=LPYIry00LWQZ#QuOxS92jsw-?I$eC{{`USnr zpxM+Hqzq^j4ajh)TJcl+*b<4NwdifY3$8mfk$rRt1Z)Bc_5#Pu^yCJq90me(Hp!P- zIf?Ghla6bT;s60qXZ%$M03V$7iRTIk=~6q~6+ce&7*1MLxMyoqvh|Ek2g|hsPFp!& zy|jmY*$Y5mi~i{AbP3VuE zkXWm_bBX7+@5x>OLND@$jvY^u+Y>=)&{7l*C4C+=Sra#2a8(23m1XC)1~ywDU{yb% zdI1K-@A$hkYWef^rPl04@C|M%ds}{pR=|V9Z)~GVc`8%uJnf_(bu1Mdz0i&&sWpJW zR;42MbxxT7k>_RQvX^_pZ9d=itsXK@P1|bca;XG>XbKU6hVb|G69+iGVUk<^!YO<1 zO&ZqPW8jChf{%kU!`x9sI_#Bl^W?&$d1es~>umtNOYp9$-%AtND;W~(1$NJP)t*!M z$=jIv!ryt>0P?>2?1r5Sz1oGM0OB{-AWiouS2MVafz3PwVC~9f(U<3H+1mB?1|WLl zRVNIw8zR55-AsB6dIMlix@L|IMojlPV3KHg^A z53O_fNHG3R|1@yQ*&@L+6$8DXtX)(s1b__EJz&1bE_#*;$iY2LOEYgaid((5G~3x*PvQujAWuQM|clxH<8SqpcX_ z7E`_O5B)xbe)g*LY>{gIcNh9K;015^JGK90#0v&cZp!rD-oUmx`<4U(6uGvRvzH7T zg)bOvYmwE?AOKb+UEl;+)XQxVxl#?cqmtDQ0EjDWQ*RzSbRlWv=~tO-qjHe7CsY+m z6yxdpV*+vf%VB@*cg_9B94{EXO5ktZhuNoYSP>HF1r@kI$=>x~MKH(9x4ACGC9#y(!n8tO^JQ>kSL@AOb!oehJlR2_BN-&Gg{z><%%IKAK@ z=%_-C{9OeA5LfKq)X6Nb+op(^mUD`~hR(X<37r;lA{4B=yjj!cpVj$;n}+0__5nwC z*$Mj+8xXVreWMC|;j$%t>3-^}{wD^!V8}!N^bpax@Sk?=$tspWfF!Hci#D|jA1|mV z0RWP-$Px{X*>>^D_cASA5lDifF~z1C$)+xyV8;pw;9txpgT25D5sB>yyq8q~y`Z&u z8`(ZUWG`F=KFp|2_oA1L zN5|W}useY*v>sNhwUYp`qgL!?1%F2!=n_xu`jHa?SZ_=;Aemjram$ljua;-b10Ew{ z;vZeF=D8d~U~-Rx{w)vDUTmB(VEAJ-VjG9Gql{&S!34WX%G%g0umS`ZVcpAkIrw(B zbVl=72!p)6WNx%y8p{Uou<*Lsr&^`I-Rvn7ojJ6K9?*KNs%jzf?$WFg0e9E4N;8ok zfLOj_BjDUN6A$4nPjO~D;F)12Zec14oeTmVVP>5-B%b+D9H~*4FscZ5$Vd@BEWKjlT*30P%!zs~uvLe3?GpZu>j8epS4| zN3Iw@xESQoWdP9nKTXv;J;6#qa%MG7b6GhS@vdWf5dZXaxXlU^&vc39iPAHDF8K$@ z`kaal;zS!Lpa|vw2`4HD977-QF3$@!O!1GcM%E0202o*3vex^PUK8wLOZKvdi1)g^ z6e+CkVnFFSVMJQH&XBzTgkHGp24L|0c{W?Jm)oQ%jw<;G!rz-x%D6Ri49EfydXcx* zZ77;Y#;pz5;Hp^8(bqlbZOb9qT1>5TRU>8jrm1yQ+vFgyb(lUIeT=y(VI6zDNNNlq z$U^^g!GA7(@!%SRwm8$#(-Mv|Ld|1aKeGo7*$b<<&ZM0V0OinwQ!i}ql?s?iy+8?I zjhA`Q%TH;S+FFyn00h9k@OF-m0Z{I(=lW{d%WguOtt8|Azqd#bycdAbi!^4&SDvRA zWiRcCniU`)k3YTQPrJI2vH*l$!UkM7@xCCj?PIc+^F+K!Ti;YPds7$kFXZ7e0HGH- zWTk4DE_g4nd~xzjfaDpwLp$>XmxbM>@?CRbOZOqk?bw&XFQV4b1FyNlkmC;&2<~44 zT)@M}kG16oP3hsE@E|x^-}FiqCTS}E5;-GIO8ZScoJy~|)}EE3n|Adq<&OEcJlGwL z&SO`hrf9262h6|>$MgHG77AbUARl>i!WK{|uHES28|$zA{gK-PMr>u8g-qcP z0<@dz*7WpyCHkZ$%cgOAl`8+}SwedSgC`_@4S3a`e#23FUI7BI=>>a%Gt+mnS23kV znQegHxi(J6Oto)E`44;C8vvm>GU=2QmLSqUSpcwv49)cx6f&`4%kt1@#@!p_fMnZk zb53P9IqWSPRNeLtY3M=jGX!$SH%+VeZMGyJ6KTS$t@WQ}2rl>*mnCV`EF0TNuQ201 z1TWxj(aBRFr@ww>m$1?vTd4=$LZx1G9PPRCkALz;F91Ofsi`h`v)Gyf0lUj4TJD4* zCeX*LfFrHr_^*_sCkA>!U&l`uTnPXvfEifd&%4-WkCP#K0rBcJ^Bvz>U1DqGolyzx zoXi@dEF03400=xUOV1On^fx4fynvREte5y2Ljv&DWlI*)lP=V^lL-4307G1sWSVMu z=s$b7kaAR_Umm!<@X9ih`_d%GY)#2t0D>GPk{@$tJ-5T#-#HnaEiOMoLXJ4Tg}HdW zA6MJMhwQ;j!a^!8IycQ(hs)AEoijL*bMw=aCBljqF;i41;J7P`%%DAY$G3-WwmJZi z<6wXF&W`#ARz*ykc+j>w6JKyoeG$E$rv$wDie-3CNqUDnzmk9#H;&mSAGmb@z{=A< z%p=j`hTpSCV>aC1L=5NS!X`znS-Lp*XMSz})Wab3(s6nrokBBKs_(BI06@$)jleA) zr%r9N#QbM<$NFk*2kDlBUKiNZ4NaLj0;YVd%HG66SJ$faqt<=uX7BqaGyrnZ2MvJ# z{1?^Lf#82y)I zS1Y|>^eXdit=Iqa&xR5R5N~T@SZfe_(jIZ8Y+%(R%>=mW4{Q)5m z!Z%6KRP^!o7;(=j(pVn3HfNQf90qzpm79*S zH7acfkQb15dM5w;j9&ODBpF{1n#}gk3jm~{=Fx*({2u<)b0l7}#0mX)vV%^zBcbPx z^2{`(SCpgH(ExgptK~mz`rYLG*Uzf4=VEVv95~7^0e#F71L-6cYAw^P%b^k_BqFi!ld7XGI&55V zxu<~BOX_(Fpp?cR2tXtRtsn!|9)mY5Z|r5@3M`evr2~ljCm48f>_AT`3MlIdAV3&( zGw8{>k!#r$NR~Fw)D=K^W89|)#=FOns2@N8j4xT+OXkq~?#OvYhaD*z?;4X$FkxU| zj)It44TAgRgD1So52!J^+>e=)dfT&9Js6PNh(mpab>Gn3Kc6Ay!>7pfqFx(j*|EM} zmOc;%9?931UHDq95c}IP0GMw8Ym(HnUb$@NLv3%egw+lMUGgwVIDp4pa%Eu9?Z9#Z zYlrs;TpIs;mDz*;tTK2=#<+ydr-iF?t%+Cc#t0Nq7r0pNCIrbxIG!rI&mDr+8P3uS zqQ+g!xwz0fZ&WFNYMvgmGjT%tf<}@f(XvU_xWy=8&b-SpdenuD%z0O;2xqyuCUj-E zpOINE3ogx`Q_BoF5h=#fcw#+i1al3%bR#v>^==7wA}@hpCPCw-{LejO#-JeJK)uO& zSi}_vz!NoBBG1X;C{3QL6G3btv1yCXJuF&uGOe;&X zuF|}fd=uM0FyLZfv}Q;C^%8vR-qaKX2Z662ETm`4xaX9>2*}Sx+UD!v?l~C*fHe0y zx3lX|&zb}P#B%5vbrl*n>L#)Pd=J*)tBDKTjS4`JIBH`Mi!y<}fLJ!_^be=I30F_ziYHTGka(^KS!YnJeFNsWw|)k}5uo1|Ge1A5C&0J?B@iI#Hz#|K z(XGxZW{?rjdS%MuOLdFOQraf|g*uLtB0y;B^mJ0IEK!uI_x8I5V{(h_mN;+YZh{UnKd6P?#hJKn`#RROzGx z16LM+Sq4Bqs^W@3GtffcVp;OFizW zs0yyW_}}KC-h_x6AaNYJ96w&X!o-~~-jPva&(U=5HB1IUtV2r+S+SnV{f-VRTn7L^ ze6sR*tD)<)AGzzW+EiFN$NksGxry7Qj&LUCwo@PZ;(krcy5CIwS~??&47iEknV~Dn zasv=)DF0FIsP2l1w-{o{IV#a&;;hCRWp5ufKf`kOpi1&eXo;(bJr%-}o;ZA2x}CrG z69C9vdT*Q;GO%29xBV5Z74By95aCeL3VxzQm;=D5N2fQgRD!|HdOEM%Yf(0aMFWT< za;fc+_g4UTyK#tT0RZkhS}ye55EBH4M#R_AjJaLzgqCjcOd>~^B2yttyTk|@>4 zK>?77)Zn-Sy6a@w0RS;y-iR)z{a*=m3p4R;V{Fo+N`BDQO?;0+1333@Fv?RQTJ!qQ z=9-wp$5tw06A|-v)GV7mw88a8i_}_nt}KI43jMQwn{fUlZO#&KkV=XG{LJx*riZld zC13`z24KX{p;n|kb6e>WWIbLcG>?7A_H7QgGuPYU^#I6-WdV&7%yj2(sQ4hGUTH&V z3#Qg$al-)s?oT(ZZOnOdx$5zf>q!Hy^p_NW&RQ+`YQ6qvLOChxM+pETvirnQ!!hRm zHi?1n0C2wrqx-c+1?`HgQUKt)_}ys8w)96$3h4^VQrO|UrjPV2aQOJgmbjB6lmhPQ zS}gW7gbpus6XH&z9XS=0EM0GH+N}G6hWOF6i0)C@*$vXTL&;?0j$<1nwoa3=*ikp< zNoM*)_O(0j_R_?xkvo)$K%}4wzwN$K8yU+DK!n(D)u@>eCdM>7h)a!ZI&?*QH0+Xz) z?Vi(lH)w3o60I}?@qTYRC;w6SyT5#xP{L2h6-++J) zB`TL@vpGl=XhUWLjX@kFAw0!<=SOwtroY7>pd%EzU7*XE56Ka$za#|^N~ksAlIOAr zGc^irb^CXkmPoWB6edxad#clOY_C}*YdLrD1pwTScG}<(Lxmr%`$=4_^*|D@SP-D46fvtLWSEO_-{`g8DCO&Nh~)25GCK% zG@hLx@eZBg{GL!C&YSWZ+Yf}k!CRY57Q}oh4w`=MtPgb4vlw3)^~v*7QSTWr@d+aa zchqpXD5GLxz6m}yUN!3oOIIY<>a)a#bIvWldjS{P_@QtuH}MhEit-AR(0Rl?M$gj4 zqVi=Hqr0&@8F@qXyxpiy5=Zr0Y#*tz`c5F9f|xLOgS)>40IeveVxz{0%zX!mGL47< zkfE*C>uKC0Pym9&p=(S(n^kr`egcDv+9ANApo0RZtY zV=mbDP^~8wS#VG_w zMMX3A@1aFu?h9#|?!1v*n!szr*Xh2KxdRZ?dDP@O6Q423oNUdN4KwMAGI0^Zxp>NN zY^0ht<}*#qa$h18hvOsNzV!f5W7T0*-H{3a$X)F9$TKtW%_ye;0s6^b4EJT}-4pAZ z$A2Y9{Qiz42@GoK=WYLJm2$VvAU=(h|FI zK>on!MvHdt24xTcAHT8O8f&6TueqHM01(T!c%!;pHkSuP%mI%y=S4^~>eGckaGMJN z;4TM6E%SZm4%7)8>lYo8ZF3VRF~s~B6wIaR-s?IfvAHzP6cI!A(VNW`MHC8)=f`HJMF#(7W z`!OhL5X9UugISC|0LWqa(oD7VcuWF#3@qokCjR)2G$q)OLq=1_f2yaOrHfNC0@;&BY$bIHO**;|iCem|BqmG=cH$YcG4dLvM~h zFFOx^nG^tUf1=J!n}fKjtoe~IU zyr2v(doEo+-C#iwuiMBVJ+W3!ZPG!|I6v0fVEt6N` zxUviapzFX_Jo#}JB>p$^-A)gH;qIkqsO-G-b+xs!{LPGJq&-EYXe`Q$Xw z=9QxO5dr{+BHx1OQTT=o>;BHS+C*5HO013}j(q=9JED|1CW05L% z9_$4#C6WZO=W*`|wceYW#2xV<7DUSV_n%&eh=@_-=C`^H*gAW~M2O`zCrSE`bIbob zB~sjAbLPg_3V$*4kXsZ0Aj-XZ>&=jW-h69)%q_}&W6EV;&gF4NC7U-2bhR8$dz0MM z!11yfknC~xy>`Xzy9|OzawVv1pMh?31^~oz7#1~|$qiMQzPxO@TDl&`CL@)46mW9~ z0Ng+5yVD~^)>ypi33p^zK&{G)wlXIjm1(T*DY<0<0QW6D&e?{FlAVc<7$>I*8$0`1 z{N7jYhFWeo%VpK5n8TdEHNB+FheDSD)*H?ww(T85iKiRm;?pm%m(WY`N*Z0u^_diH z^1F3iiimN2E7S*38YGzMg^tE4N_hE?@>8xTKmdH*GjgLWBEhW}=ekw6+i2yn18ZXF zb#T4Os0!2fh&X5swPdXK@5n$Y00D3(=|tnNm&#t4 zct}TMSqi2{IXKZ*+i12wRpb{ z3_?kAU3+N154AbSQgDqG&qGjuWgD*WqfGAnAEof!S8|ixA7y%kmy(A>Vh@wyWzzcQ z?)E?_0HH36dnB=)#pT}vm&dUI0)Pi_0FcjCm3^VE7E1zn_PAf+$i^L*NQ2j}Y1fnh zK6So4^-HEpx>WY3MrGV40+Aq2`%aPft+0(U@6{x36Deg}b8_k{wz7pwhAhA1#O+^Z zhmt(C-J{Ah-S2Ws1AwRYToL=jr(!gSE6gC&L8dZaZ=L7%X+8+dX&A=9|K?1n`!jZ+ zk7FX*k&k(e*|t`99!$I^SA%l!sPOVP#CJ?~3F%XVm8$;}-AR8kHLr`&i+ z%MAkbD$S`FlvJKRoOepcSw8okb{uX435=-J50hDQKXm&6g8=Aq^{njxf5;YcHV6O^ zx4RWdSP{hD8IwyJ9cyYCStz^ZA7dj6ZqU^5S3+j>0RVS-jc>P+FKbOP_Yp+chdzOJw)~YwXn}@X$TWo|W{C?*Pcr(BxX5>k!V|0RZvI3ahMUCKoT_Hs41y zitBB-OKa?OGnaO7<_-Y3%TYz>1!6r&a9l|Oz%#ETw3%VehJl-Gm^%OgGRE1|W9|aw#Y#{TDidafJZ@_hR)TTRBjNT=mzx zwNuWR@9J*9Tl0-NYQdaijR{Qu^i!{qFzo2qY>GS7rJ^kK3)8AnLs!$SbK5!qkek;l zAosL8>)qD4B|8)Q2Y{lwdN#1aQ~^%pu2m>*1L=#ke%B#``&9r=ktkpg)lf@%Xpk%g zAOo;L_5EWvb=Z>teoIyEAX#=QFzYDA!tG2+NxVoYzO%gceQNg!Skwg|062?+cTK%q z)ZOI(0OGU5KJ!chJNGk8oTb}=>u@NBb}Tt|TFsc0S&KtVJ-Y|M$ZjTg8UqKq-ARxCtq)AxS9h(3E_pz;}c--+m%ZdRt+>O|mc1rS` z+psr^c>Vzsd9`YOU0H5K0Ki>NDMUpL-gnTDDvF#3^3Nbsu9u7M&LA`x$SgPakh$*N z{VoPU@b&S<-Bu6;2Z7@TP0(8i*x4iyAYQwKVn+RMf;$E<2!OA)y=)^*?GGopoecmG zpJ@4vB@W#HQ^qu^>{Ua1r@f?RaF#b+gs$;DXT*?Wvb1gTyKU<`!kU@sH%6j z^M3`~$kr?s!oGzwhq&AcNlPNH~ws#Q=4qe>M!27b>`1G29p<)N35=BH50rZDtRU;^&-5?|09HL3Hp9{p+H$#J0bpft96(#OiG9;c zHN+&8zwQJOO8B5_e#4JvHYBXMRB1~1j_9-UE zd0Am!l$C@8_dBPP+kiK6X9IVdw8qE{&V1^n) zVp_LSYvKM5WC;Yb{5_8w7w!^!c4H42O-jeGk1z-#W8&aLlfKHXVO_yGdVVq}DueNN z8N-^C2yF8WDh9s;^!eNv(+giJ`|$H6QdIx(Ko)gAwFL%R)#=0cs!4G(C(NK-I#^f9 zz=&)cKF`Qw+O30iWpEIfvh_8cSO@D0U=Xx#)LCt2K@cyM$Z4`clXmHtzyXsLlo{?q zrTs?Sc!QZ#(5JggKVCtSK}2NVGh#L_(OY_g3Suz+&Vvbrvd^x5|9Ay?Ko8W=GX{Wq zZcU`UBv@CJ(u+O?>3{Gdj;w3D5=$RnSIGe1>7O-*kuP?Byx}t#KlyYC#GbR_FB$ft zeG~wE68+uJhQ9~Cxglqj`XV9o}8ic`8)kUwx6umknOgWl1diWI8{agQ^lNDa<12w_UGqs@zVf7W3@)(0Q}K0&>hQ5#I8{92)EX;AtIXq*WuGK)qlAIc?|Ymp1U@@%nrP#9?(ya8S&qCztEt zozxx!gP;p*Z|S^UDg&S(VC2KswE4(VASRD%<^H^!Q$nWaVF_$H^gOlKsM!5?WT+>`T&d?^IkD zAM{a~_PXztr2rIc{R(%N=~5(Mm6^wt(dP5>pXkab-XlMa9^5&$5UvoGzA<&eJa=QjIt#f$e6 z5wmKgiNu}DrZXvS3kIPS2^d=AtTYdQcP0QJmMV>!{$Tn4jEUAx)aGf9_8*W;-s&LP zI98jz@AOlOHLLF_{ptfmflma%!TQu$aYwfaH>3mxL0#X@>h2;K#ET6THbs_@;3rFN z9(g>7uS%3p6eV2KQuixC@!0RB+MiokK?V!o?^(Q?G12N@mT0fcGW^}y41z1)qtAZR z&{F*e&Y#wk#zFNn7=Pz&tWZkFIinx16b>MtrmbvGao;-egmw!WW2naFeQ9H;I2d%W z{chdbBy)o@cGS&vl?G4crpxcA zQCsQ!Fvg;yl-`xfdC|4ZjkIwuS4*nH0DCk5V@$t_wyTk3o3}mc*xAoz-1Db`008&n z-z@XE|FmOm+|bXn>!A&+egYArK4nuylpz~jT1us4N#sd5U-d2qMuWC z4}ych&z6jq;h{_n2clJ`j)SI8vHerj?O{aYHSkpWQi{HVyY#nKqrP(Y<^XIpCA3Rf z(~kGzHCd*;n#BRYll^7}+xu;7@QUvJm^hXwLCj+x*jUt*7cul?Uqn5|tJGKk$Sl6~ z3q9SU01zZjnCKmCTP(__EVnqG8TCRqi*f(~#E3$sVMib@wp{4$T08*BEr~;?vu98- z92BMD4PLNH21Vb@0YF6){e8nWP}J^AuIM&L${4zrWF6*vh;z4M6)fk_tA-Cc!fI6i z$tui8U+^8=0LXn~)_Bh$uot8FCq3OSrqrWKa?>|_ez2!=jE7U~zbN|)|2!!G zJaRzu^NE-z`pk3N3IGr%NveCE8i%*2Q|^`HpS%6@;gbVDxOVNOeZd^2mnCb^;S3QX;J4ixz{{J#UQ1fOYQOup$gJ>SOgf*Kil!; z8t|6f2ID7ZE(SsHYhT`V&+i4nLE!muKj^HEja34Jpf;V>xJMKW3IZynC@YQCA5j1R zV!rAD_E+g-$UZD=5(P2efrK#h`QJ74AdMTf95oh?BD(zkqt{Ld6x+W`;toRqfIIn( z7ggZ*RkCN-e$U)LOYL))XPA3r_*y1fenkNQcexN8)u}M|spLe-<3|AU9kP7SjFLgZ z=MDh4H_8y%)QbJ{o7b(;va|KBHah2Z4X82nBoJN;1m{Y>7ckjMm)HVNyrdIEwwZ}U zh&mLd4?q;JY?Av~jTjkkee-4zW;rp@hlD-?_I+dDkO$gzL4Z&i1P6ij&(_l#3yO+T z0g?lOD$%Ii#1iU&{-uq1wE?Jp7lVtm*m5ghhj*y4^P&>D!7cDU}fOP#d|<66&%rwx_4 ze@$QT9e@D~TG|T^)=$f&8&U$e5#`vndy?O^I1<2Wt<@~D{T7aP?!~Wkg}Ix6NNwmB z%;4N0S6yn_1|mueIF#X{yPI$^2!eOzz3lELg5V&q?&x;f0ofWPFaq+eVcdt^-PXXM zU@6rK=hn*MkOcsUlONjSHSUEUmX=%Cafv&=^)PNAT{>!u7IQwFE5ezW+d)cb9^BPf z@U7uhY~mTUYnV0jJQb0UPvjN`0K|DyMxL!k6xm(!usbl6qmJ|?n%)SCbMZ<+ZJF%n0AO?`UzDxE84j#FeI=^6Vb6XWf}q+dYeN zjlSSWJOH$)Vtd|`AC=a&!`uM?@%`9mJy8&!mNlrNMd8NkN@GBrJLf1!IO{OU>Zn(_ z{PhF|Md}c#FiP3=VPMLWMFIfC6!DBmU1D2g9OACh~cB$Sew zhyf^iriYD3Yl_WsR~`Tmmr4^kV~OY64<)OnTbspcM}Ay|8U+C9Wix9maoZ9AAeOtO zVkS1w4acqA-VhVL)lAg*iHVQoif~TxdgQVL_(0TUrcAtnSV9c?XF2cLlTFVhFfmWY z_oy}18r!NK<+VnbxPuWxnn2XHdnVp!oV@rSFIvy~_EwBr8%GW2EX5aj#9n~9nN`~f zb53L;g1mJvbno71tLLFs8+~6bcufNqxV-2Qw?P2_U8ntKttU4k*}YdL zySXPLxhE4b0CH|Jd*4JluyQ^Gz`sNdiyT8AILRpbL|WIcPtLsQ^!8^`y+`a~5CrGC z`huJ@_Medsf`h=pk8-)QV+jOE?%w+0P12&u>IP@ zb~|(lTww+QAiLTZ=G1em695n|9oygf_`Q!Nx&uNTqn%=@nwc^8rLq+>&ex8`mEBpi96EKMNl5gz8uX(eZhh)ZcIXLFmtcBqSWn43;+J+toU_vGp=22xyX{ zzh0b?fOGUq1mO3q-`+o^8&`@|gBlJDOexl>HjKR%UJ5_}@Z1zEV$WZ1hO3$Tlz8S6 zL;#jmPp7?5)}y~E;m)Z!cG&-P!~Pn;E&xqIoCZ@4*>UGx*>w6{ zVxt}jV^IcBYxC9|cq4DxpM7q&RH?rXkdcZZ|6+C8{IzC+wC?U10LU(1=bG_;Q7t<+ z*cT+%>-2%I03_46+eJpnMAv_=qL7IuvdfA(N6i&(ODD9&yrA{GG0T6J750ac06-KO zO`=u=S^k%4ISa$c3`TzGJl(cD;kF+Jp%e)y(&w%YLEORsM2P*4CF(r@t}yPc!dyQ9 zau3huzX$7yP!K@x0AQsAGrwRG6s!7giQGAd1O`EU8jW*L)iVeHd760n*iCL<006}Q zI}y442&bT<4rH^YvK!No%Zn#I3GCTrO=Tj^e61F>gN+pbuAJ;{2LMb(Z3o%qtB}O~ zwsA|&H4q`9o=|7GUo>5q6eIL@yOU&bymzJl{m67MxWC#luiGU7fZUazh&;)JD?Oqv zEoQC2B$zvWwOaXQP^<9Q(Aj?%roQ3<+8^ptF8lNCs^EOJ*dysb0bhg~3bXD;owk&A zJ)d-^5CDLfrX*}8bH7Y|cP7)(5L1M+#K*&~Na|#WHtozv)FHK)3fj06b>k5aJZjSPA=-fN6h<4oXjX4zl=yURW1VY|QF?ytVh}7n z^H2G-TY>Fp5?Y~eOWieSzO(t zpVIP2WEVQ$k~^>bK^01q;Gmc*vk#HGu5{fP7zDkSa*R8=b7=sq_`18bzdG5Ub9*NM zApYRT<{mMo@fMy9%sp|S=xK~q&WcvAJy+WwtNA!}_K+XkTLIF+234Sn8gkJ*$X zvw^4w=~;|MMjP_|o2c*i4^gOO8eaS?z5sd|{$k~albz-y%xkVWSfb2b+#apbc zkwpRk#Jtdr5pUG1S4@1$s?qnVs0LzDP>(ocy7aYbmwX$%J%9TqH}HH|gnfTQ6hIJX zPwFei>AS@KmZP`VvEc9CvL}cTlaA1c1f`{?|KNX0yQ!W%a8RDbVh{lGg31qy?9k~C zR~i5i56JwaiRhQg?&uTp+D*0T1mAvNMq4ba7J$O^@c?7S*r7nT=idtl zpk4qh?tQjOdxh0G`H%=Z$UB-aDCo>i4O#2l6c!BB36y=lR!b$ghqjk9%ocVr{u>QxyUm*N~ls zPEpPwt~Ce=?(%lv;rZ6O8xDY?W-E|v>8`&7CZa9haw#Pr(Yj)DwA>9SvY zYkLhDE?qc5^P$td}lMkRnrM05VGlDPfTWPSXU0irPwAlXkh%a&6o zUs61P0FW~fBbF`I79hoYksJhDFSF7g@pq}Y%XQbd_o+cV1_nWIy!xJ=AmQl3pg3cs za*!Td;m+ehL#afRv@=vdO8=4TeP4W}b0;ZUCZguBgqPv@ zq3)#Vr%TcNjV`FqN*b~As)MwMemx#za{xg!ses1WN9bHiiiSxaHXqqtr;kYtE5V3MpPHh2Ftj5M(jGRZ3F?JJ;Nb0rSUZ;%<^cWG`VIn~={w{%q*A{gL4hal`hTjgH+mdyI zr~uH>QLDLe=>ji2v*u6=i2u0qv8M=}Gi}oJbKQkA@iDVsB2Ur;mUGlJAQO)?oaJjP zp--14GgJI*Pl#Flir&{V0>sc$>1Xs4l`Lm$O5Pav&G;EQIIw0Igvzd+IMVYAjQdW_ zKdnoV0L;<@Kw^0&rk7vx8VfD^U*}6&6jo^^vh^}V?FThq z{*Cib$WGLs6$S_;$T`oL!-3a&xU#2nMTli`8FjLNiD$+{h-D8OH7sJ;_fj&`ndIPX zRF?33t2f;V4TB&*KS2Sbd$#BVZ9gm$03dF#Gqn zU)V_Rvgc03#Q>#CaGf7N)HyB);F3Xb5ctKuOwvXD5!O{Q(GkLJ+^H2KgSRvKVwwL(g4$pA2<{etDUHe|T2j<`c zWq|vvk8*mJkUw@uxtilsyOWt8az%*ca5n0pWftWKRrV-xj;MF2jnfm?r_w&eq5uG5 zIpz6Bqug#gTTcOn$5V1Y?Vf4hxw!)X?s6u-;MInjJBxDKtaM48hi)>-ZL}gSH|q2X ziiYvEPaO$}9mtd~o9PibQu{onl@5k%4iX4vva}yAca~!)|BN()0FXOX;{BJ@Z4Ll{ zxb^P^Jaa%l8G4QtPnL1!%$Gg_kUo1N?dxn30Ep9%HaIjdA2M(R0Gpuw9MK;>99;0M zJHRmr^^l|Hvx{SOrCGHAJVnIg=>w2-&!(}-++#on0Z=wYdF&yujK&% zaqe!Bcb?&vJ8M_ap2nKO^>O$PfHaTf(`IY#67awPNPer@6%A9nD~%F15n!_cEuELv zc5}mCE9|x>20<*T+NHf$X)Up80l-oiCz|r=|9KMw_jt>?0EALHqq!`o=PS?Xz${Av2&D{4eZ|}F0_**`-%4#)vXu0+QUx~#i2m82mONj6sWE?( zHx$5YIh6E!P6acmGx2}AYm;KJwvvu3?g5ZbHk}r@R#J*3b9rigTgt@jAx|qpEPzmt z)!lkpU%$R5hps#bP+H^TxN2t~n>E|-~aLY^8j*DsI-o)!-5LEGnfdh4a0s=H>5F7+H zd83MZLyZJRK)xHC>3rUumoNx`9Cb%{_J*YMnUgczNhbgx=D92o&nmFit@h-mZ(qH% zkmr$b;}?fy*J@|m+C~k^8LCV*3iM5_0c*FcfsaWnVM9k@*^!3r74AW-L+yQ_nnF}QI?B>?2 zndOF*e_u}uGcm8QwwzkQ+RUZeO?9TgqVy({1Tdl%KXGY&u&+)knL7X=mLufQ2KtS{ zKij;VF0c1-U8(a@_I54+CdNdzUkoG}VcJ2_7PNX%?}i5fN(q94z(Q-z>EqArI1(5H z70z-}M-SED&hR9(6oM z6q}eurF<;=S?a?ZQSF1W7wUROcQz~v072r=MV?cJv%C~3WtLyvzL1!TxM)QYZdrSz z)(STk0LT(}TuxuDFR%M8ut3cfW)SKimjb4|cwCFc6$Svr{vn($u~X=NNbypUKYy6t zXh$Y3QD+oclu^X>1v3ee@=!d_pOO1*d~1vDIJm+9xUHHx|dFr@r4PdVr)e;avO z8>$4?-eQtv{Tgc_;}eBUl>*R} z%q6o~bd_PP`mL?HVWkoPf>;tzJ}&TBE(d;;0^+TeI(RCc)uK+^?k{HOz|Y*_N6QUB z2LF9Gt7$7|?(BH-G|I1a3c9=W3WoECUk|XOg(W`^bQ2dawlw^?$YlUn!wNkSao!}& zGGIiVX6H)2Mq>PIM3HthA#qBbtx5oo!wY-}77sJ+ba%EW0Xl#Bx7(i1(H(BN ze@^S1Rk+gLJMU+!Q7hw2T-=y3$!+6r)MYR%cViO4@4fu7`_~D2x`#plK<>fQBAaR; zchdC}wcN}-9a&*~`UL=~#zBjA=qSOm0}vth6P&1{z3hVNi5Rk{HYLaeGfnZQbXLbA zF$kqdK>gP{>6T@Y006N}LFUf-z}>1P)3f}3Lq**e$fDrEl)1LC{0djo%ztwH2rK#as z8u_JJwE8Q)?(CU607gR|cW9_n^^w|XxUyr2vmZ14durmwUe%Rl?f`&0?{-Ae^~dLj z+=JiUR1ApaqvAu_zom&;lNrDSOSog0Dwqw`0gR^NJq;%lRTA1?bl~bK|Fw7>)P0B2TYxf|G2MiWhVZ~ z^Z_y!MIEqZ;y;c3JS>*qaHhu>UfHI##Ka{Gaq}Nic|jKqwys^^&T1wuY>sm9-CnSr z_02A8+hP5$qS$|dkdR`)nk zJif?7j#!G0%c}bWSxPYyk0%gGG&}k5>)DW3fFK$`5KAT?A1-LAOOZ+#NW@|1ai*8d ztQ%5_$H1TxvK%WKt^|M#z}DyTUn9fC`+xw@B2|rnHZZivxIlLyW>IU)ICM7+4!-J?zo~z@|BKMmtQilD@t3K9#&Z1N#u6?X1kylyZ zzQqoo_u?(BS^4LRB#6yL?p56QYi;c_EI&$t{O6MH_uhSJv^7s$mW)qV4n5PHl8^vL zG!zNYNI(0YIH#SAMFN2PJGm?E+5ZM;05==}o2Z2BCf<&^Guq2rQTeaaCv@8tgCLeP z`v*^t)ZG9zf#>@G45bqOp`;4|kF_TK|A{)+wEu%U0!I)WQHGx;U3&k9UXPM><5Gj5 z!nKlz*A1W`U~9sZx^7bCoNCh$({nQPR>v#tbK4r~^O-4u7ZcI1)K51}mmupQwU(m) z0NX~@#+}j)E5+izrA685UhjpZesJHj+FvAqFDH_xjNe+GKD>n7)IJeS`D2V9`|i~4 zD@)*%HSea#*+|&g7qR2QOXxsolpt4t_Wux1Yl<{#O$Eg9%l_k4`0A!Xaph{?cc)Bf zhySenFK3K8;sTlCd-XCGWS=$0P<-aXJWZDh|R46ek3 z548N;1^_^un2swvap1>YTGrO$FflvJ^C=_GUm!4d>z-Vj1GqtjC8;5xCG7r1o8a#< z`kl;hKx>E_P6C6V8-p6?ew^EZK>)?N=;y3td+bNX^oKB3?tIq>si% zCb^)bo8PV19jY{7GzoxUwlQf++k3^%`(B$@urwUhr-g3gF7Z4=Mrp6SGu)ksa^3iZ zKd+FXgWd5`P8}zLB33gc{d2I6E$O-PpXqoV6!8TTvAzMyY1z*2{qT5G0}#xl79XY0 zpu<40w560%@lJ~R8@AYX`?X5h$EzPeFzeJJj|DYqS3oNyXxO+je-eQ(S)a));nJ_R zyUF@-A-#Uh2_H9uWPs8oxbR!&-M6a*!9ie${6pP?BndPiucL;=%;;ZM*A)cPunSOE z#F~})&zJMQd3D<&=A$N2?#N7zP6<*M!<9 zx%POI1JDDByB4z5zwvli+GVaDn2;%QbsV&L{nJIdenD3nMj;U;RT((Jdi(X7V>Kvf zZVL$jrOc#u;oOyewdOYCox3^|2DK^~pmh3YvxL1TQa@g+3RZ2nd?2iPPJwiK-a5f`Kn zKr+>sP&HF{DF8(PzC*4~m`L~EoExJqAgI>osRf!#IYfJ z*Q}59P?hVzcXn}%kSD>9eD}y*2L_>(w)NY1nnG6aPtx?d4pOWcMyxg8d}3q!{$F3$ z04Wx>LUUbYHc)hXXWjkCQh5KgoVZ`H>`%9Cp&p5;5?qS3;)?UzYZs8E0EEiRt|oij zuUcE|GbrU9`k+CZ(C1V70e5 z@j=^EdMF~>=>$<Bx z5;i#Q%alXs79d~^N-+Mu{XrTF%<|bRcPNGi83<733zI#=#l*&!L*CamC=~(_PY%dy zQ0rbfs4XN2`hhBllIWl9sE6#ht{a$pdKT|uF4}2DoZd4Razz*nwG8$z&-IkrpBB`r zWDo?;eq%`%1qOlCDuaW-=j+GU+p~go1uzI|6i;15-hn(nOfZ!%&AJcU7*c~}Fe)~%6l%U~UAQ7^)!N&_!CrmS9D3f2)oFq5uS z?r@y8Q|T438~~o{TEz2;0X0UKOHm}Pj*;9kpiUspTqwq?%l@P9$HhOMT~C@Y@f;({ zhJXCyZV75u(wzc}f^kYO1E8!C-<7aIV7jai};3%*Y++ zhxg_~X9@xlMffo;M{FkdtdNUA5PbdPT6%H^1c)?2a1hutU1#me5HSb@XhX7@wv%h} z(na0f$R^;Oe1jg=vPo5{8x!4qFU0$m(D~_SP_$oTzYQ-1AOI+Pv10YBa6nr)2)Hi1 zi?5d{NpAExnCU}pv{DHS1hdu^=GzAUy4@6Anp6UB|7*VBDNj611{dg`HCzetDO9=q z>8TMfgxeuNp4P-2@joBTrtOfUCsYmM^MfOgIn63CF)rPI&$vVFV3XgWgL?4ZH{PX+ z2j0Kw5z|nRJE)Q|%)Mg{+kn=!qmGrahDH+ye1|x4^=jFwvF>0F0AEfdqs@>6O|?o{ z900)mXs1}K|2<99=*qGe3pmg%81a|Zy#aOIO^-k_g9=ZY|(x>#+^+mb$qN>ez;aWO#Y5?ri#4SlT^2wbHHfq6d+bX08mvQ&WN z9N5{}-)Xf6>q`3Z6qJ^JUZ(#UDb<<&rfe%_ha4?cLpqR|*?4DUyx{aU@PY`k?2YPalXUJAoX7uY|`w3621L zOU_>Jk8n$7AV9pE2l1dn<-d=t`{6CZ&@fC!%tdVzye;n zJ4Smbiw6Me^2=U7RStaxLtgtK@BXULZUB+8J65Zvb@|j zH+KLa`^gHctXD>DbzseOKt)NH0La)iZ{Y{pH&`2HfytyA^`*dDc(y# z5bXA*ui_S|FHwS6rc^&pU#6{r<-g=7;WoJm9kLvur5g?gvJJL;`nNk601y-<^w|7p zn)e(;at8sEzYkpR%CZ9hV*2L|AYk@Ux2CY}OVbyqv?zT5lJY<5GegVIx@Qmo@=RBn zcz@}xnneNt#QfSP8mhyaZ@JwzTlNSspMQk>&u=TOIkPCgP(!t%1Pk0{xOxA~T-~d( zC;)(%{@IodJu!ZYs8A9B)z6Ofx?oI?uRXj%%g*8e@F;$?I7|2McB>Kq*1f!2X4b!d zx+@GoG5SCx_FZVGaKoD6fPn@;v-O@kLjPla>>my&Yyg*%t+yfng$ipmfNcmOA!TJv z$>?{ee;J*u1VIR$k@oOYq8jr;t^wzgBmk9v_nAP~B}+la{*)<29x6PWZ-9&xekO`i zI2*XrroQJy*REYDw_x&HGFoUrX;Z?Se3z}p5)8}{ZYKYcMWP<^;==Qz_Jx}X-=gqb zrpRd~1mIK~kIOpvBOBC#b3uN&9h!P>_^@!1@|ilwx#Sl!?+$NuY~bYK5Vg9UuNc-m zFs&;6gLi$dZ}du)8cDWQfiVu*wq2Tue|0nJ0WA%$TF$fFbc0is?@~NgPu6gk+}_N% zqqQ$m6lp?8n!Jv(ueLRpyZ0iw7@%}%(YN25s*hrW0Ok?|2Z5#j8m=cc*hnQX2s)o( zrk}o*`?+Ab++4t0O)9*7nJq6b2%`RB}+(eVwt=bI;MFAU4pC!KOhFN5S|)W zT<)df6@Gck>&HbZ?%$pb(Ev!0`l1c71+N~E&gPE_veO_D#L`Hkj!tnME>pB;H;|iE zH>N) z{003<)AE}%fO{*H0PYJ1#`nzs_gUG?b>Dwn=TS^Nm?%ABdQyh>)P%k;{;R2|G=-=P zhdGxrmE=f*N_Lo6#Vy9WMvSa4cd(sJ$q%}^D|n2uVaP1|?x^FkEXHp}W|^Od9^Pwg zILo&`qFRzUcc3p2L++NE|9Vb$1#vq(h~*+{)VRWOHe0IXU7}CM{G?+l6Av+*xls_Y zL!WJYU{?MLeOA-Me3W$j&98CFj-rNiV?%LEqC{Z4gxN>J|-R z8|RV$pkcn9wn&h6x4WwXAhT&K&iNo#%B!8-J_-Q1uc#iGhk^%1y(;W_{S%>h7~@_ZO# z%{x9$HlUyW0KlC(RQt(G3%!_stkxUB8KKBaTU>bnQOd-&k?jC@m*G_2z}?L()+5Rk zId;kpufgiAZZiP@+-0-~eRX3PQG&Q(%a&e+VN=ELRnfT;%e~#Kh!eflf9R`il}rE_ zF?6W4pAN~kY27pDgQ+884BG##M~vJks&ixF@`iY9gUHLOaGI!#AW`SiLpNRS0 zBzbLKzEWkhN?Cpep%i)GtHPp_Iw0kb=ps)sH8-QgYSS$;jyBz|72lPfyO z5EH#MvUK^|Xg6dvHjeL`vYZfXUi!YQsGr;c08z5Nwb+U>`d~@TokiJ9#en!&-HaYF zG}3m+Oij#YP=Q7p+{*wYdzk*qTDbQrFbDv-)3WlF^KLT+0K_s`3cZi+Z)5XvMkn;~ z(6c6&s6H-oxDIhA>Y7;Adp7E`I1-m0nA)>QXy?0}`Q3U40CIC9f&1~?)!ZiVnu(Xv zlQw2Jq~j%vf}>R3O{z19meD78-Hix9F(L*4ragP`pI-bq zU2>>rB4W(wpZNpmS87O}*^#0hPnKK9QEnFop(F|TY2lt?D6*UyDe z0y(wg(-o4Sd+iM{{^jH4rBm8oC}j9 zCsjv`DH}Ji!Cv>+CcAM}`S517UWK(?v39PLtNOV_HBS`y_NjlL(3NFT0DvfO?VIiq zAIMz3T*Y51X;GN_IQr6vkO0WB`$r$G)bW(L0|4UWr{>#H$C(nPv?$EIGqsXTS}_xa zAXc(PHW>)~PH#1F26qZGc65EWW(F-gi;~G7G1&$Redc*9i2}}LQ>?SjpRrg|EjM!> zU?R1AUO04+|4D`jXF05m+Kj{+*+O3mnm9z#SV!NU{s(uI0|1>KWY64do3-`qN4{~p z9{_yglib_Byk9z*X!spA0N~E@BZaIOw^CapYvwzXmCL!RsB4aip%)UHXY*y3p|F3V z`Z}sHcK{;I@4H;+szfTXbDnsV@xNOAz-f5q4gk2Hc&dsC=Url(O^L57%Cg6j&bj}U zX0W=`1Fd)F4gk2zdyJMZOsm5MbMH?k(A-SOE!p<6ZPg0z>~fm{0L4t$*uD9toi_Vt z#=vkuOSYShO+5fY-mEHt*GyS{lmPjUHvQfsh8g6jxz+6;^Nr0v)vu$?Om^SQsw+#S zduFhcdJw3RpV*|Y*6xQ4`bWnZ))0dt<}lQjviJGQ?%o{$5X-gvsQVhYvcKnw5X;m( z>RMeUzG>{{(d2Trp$=wfq&0)0(TS}hG0@fEdcYa<)5vctTyWDQz1YlJlE5HnZY4$DH%QBt>+>!K&qwP)f;H5_*Al$q$9f_3Us(*NGJX0Epk;P~IcXO0Vy%I1_lZ zlSS%DDC7%i2obEul&)EHJy;|L0U+lcPLB?`xeWji%RZ~=-s@U^7HJ{LFXzlD7TMnA z#F6LS4#c2f9mb|!;tl`+fH?oBk)1T?=(c{6Q->E;=~|+coZ*@cwmi`Cg8(-52cck7 z%czz4mJ2!f8C|@IJ|x8zmq0L++PZbDq;88KXrdL-ch}g(O*JSeB3gbteS)Rc-0`ng zbFef{G21_iwXy2>$dHVY>xEJp^;+u%2P|6UcsIY+Agdby5NB=E*=zZE52}~HKkKTy zZ8i`kh zT){bQn?<^RU{U_a<)7h^Cv(Rw4xFiC?f^g(nfpgw3dzK!%>0Och_Ci>&M zW~d-FdB5`-eQq%*DueNN3H&Ez$YDTM41fU1Y`VaJUv(2m3xTKr5(s8;M(g3J7CJ0(T^Iy_Ol&&unXCPQ>jD6X<)O^3yNYN{G4VCO z;x>|m4s>6nAkfpORW{nb2^n?7XW0SZXL??}zRH?(hxPN^vI79w`Fa`LgcjAeg8=Pt zguYOKSI69?N|!v{T$jS_Ac0^e_ubDJddwZP83X`6GO@|fX_N-B0wm~A|H#|Ou-u-v zH%T-1r|&Eat^KFp+SaF|%$zw_Hk1CVdbjtY z9^_sTe6gH~+ZnCU{%G5|EXW!XTGpC$t~**ZbnDF$)1n+kyj9dU54kyCjUQ3t>L&-8{;Nyum~Ok=#5b%M zerFLS2Dj+Xnd#KN-B>)-TH;UFe|EPh0H#GPap+2RD%1QjK&@<;$u0K<3gh4`6OH?? zk8=}WG3q0FE5@`jpJ`&QBp!zR5|pyHzz#ci8o}k`?LLT5%Ez2$dfdIHLTnV zV{{kFb^-uof3{&U(?FNXmWmgrJ)cc?HBEbMB4U2ZH)XCwwuDZn6X;%%>%gF(?o0hV z(jD#q;8aZRK;H4ik2>6O9RL9L3Re$%wvMe5QS$>V&fjEY%grQ}>~H`0rmL2pxdQ<1 z(iEchXEX6lLwvr`E1qT$?m{jTajcHlh|5nR6~!OWr%LD+# zJ*OY^S`~Y7o?I|STPAC#qUj9eOG=lz_SNz;@e`>coExT1Zu_LrWtoyB0?%1YFSfdNS3(+5K&94i5$#A0rFrDNA=qPak zqkM*ejIqo6G|uU~V!*`!b(7#ZyT8h@nK>YpKr;U4DDjRk7kgXf%FM3myTt}lR)Q!je(lsu&POO(u zz#YUvF#axq8+IjiTek!TL5o-HaVvsB0DSn~FfX9P1}{uJq~ipu8-PUg;oTu*Zif5`@z>FKL!TV!OYud>)&!77Ppcesl8CEgI%qKWD@6IW;Z8rSI7{OOy5koB;4Xw<10g_|Y z4|?QvI~0owz>9}A*t&g`;W=$GQW<;9T0NHlKhJ&ON1ZK6vCl@?t(24b+?{Y3c< zVitAIQH}a$#=v{nvNQ&QnKaf<68xeYR4M@=0QeG7c_59j{sILE#x&IjPbSO4Yj#*JD>yr{xhY>c1ZKZ27SDQ>i`f$ zqV(OHDS}-+^Go1@3lP9WZqOGPB8E=?kbU9rvXtgYvg=YoNd32Y$m>ItB1T%1VTCcit$`i}&L%;{4d zGrH~)8`_Gmo2~zHSaUpV3q7uq17{w7!XZNEUhf&1iQamD=!9Duqq-&AuG;ZI=-JLU z%#c~mDn>apH~IfajAqO>BgZptN(wELv#TDn!dv1ja_0lrZ}z*g}Xp$C;;u7TFbL8?8cv*beHaP z*gqKrz`0tHeQk}l&M&uNcHsP!1f(Hq0A$eboNc}?L5hXT64(0Ih1w|4czkgk1!O4z zp_E~76tO8u@<9`H)CB=Y0*qFnY95|T13zB%gjTl{kAYw&L3L)F)y6Hw0|2A;4v z{o z^&o(W`81Er$> z@7*d*z8D&H8=p_7SWLXs5a)>>*@T3y z<;yE?x--3zj>d{w;9}1Ab4A3E4zj)77(HfU;@)QSh}@0Yqwo#gvZxf)c!0X@IrQ@m z{q$e=^Cyim&#b7|7T9+skQvnVi)};20kLCaM+$eXL2Vk_(9K@1?_!b$|{q6oG zjQ|}bVgUF!8hoPe^3v`G1OUXf$K>+D$?z6+%C*|}oHjbHbR0DZz5^iF-^RaPSUQk@ z00;mOCmpxS3++&8)P^?Je_A67(c6yW-Yb)}{+W1z5rh2LroD+%^w)zIwx3xvhI&9| z{m_`UEa9!ov-H{rSC&DLUjj}(eMjPJF^MK5UMOm;71nKqQ$eZ7XRcSklcu5^J9hf-;b1f}o#1t?8cF zV)43~0rG2OlA5`yOJ(PGeCzQb1UQs*adR`1^LL4DJfncF69}XR>(cQH*~zf#Ck&{f zC$@w20uan(H@y3Db-k<_R@V! zP%!{P#7sG}m`1-;_VXgibffdIgUzc8{h>agz^scgYT1rIXU*vzF}WB76?7uqn8$0D zOAi9)tw{2ClLIga+EzBBHUb%lILsxe`JbnpT{Ax^KR54h?zoP+f%~yyCA^R@w#K#c zrOqeP=`C}|uxV+wXmMgrZr7>@NBA26=(VBpR~#xoJ1VV??cC537_9um6d_l(F~|UH zKQ-Xvr*({%rNoePa_E-U(Eo{EULTu`L^t`Se;YhX`i1I4d0v!PwSiH-g&AU%F-cOs(vdeqkOEYlRWV!vh)gBSq8KT_ zYAw(3`#MpQVsSX*gH;eK&zUqjjp4`yu@I(TqE9tr4cw^3$IkHf43_QP*7F~s?vgPe zVl$Eqg5bIPPkZq~fn_5zI0*di$phX%Q~_l@xp%>eG>e-0<2bLqLP6|+yo(6RY2D*o zxN?wo0)!yS50S`G;l3?*w3|r9NHG2`*Yy9~9(Y1cDusan$p@GEyS+c7pcKg1|ZYvV-=s%_9y{-66J|j%k08Inh}AA<7GW?85(|vSY*In7=u_#o7D}k zhwBElk=p`0kYy>DUxb(_WlgGQY`*MjzQqIXu}bk*B+^UQIA?=DeuxRVy4+fq1Gvq>P(YO1*HIlQshKV_H_ld zrerA<=oj`*IiO0Nxmb8z075BOTl$Z&f1fvCTe6f#x%^THX9rh}Yfp7YRMZ6^ltTY3 z;GZ{^>dGgf|BHYKz%}|%(|B!zzr9KZ8euThGMMysN4=MXL$ZrO5PbM{V7osET%`xa z?)%d|Ew)q+iw%&R#ptl0g|-ga&;S8IQ#D>p!0b!$-{04M6ci8ZmMaQlkMeCiJ(3J z0nmEEXI?2dvRA(K%UU5)gO|*Vne^oD&%CU~lGgu#xEC}b8F!?J*kP@IN99a<7$KV= z$N=KX{BL`&itbSz>L6g!f&kWr2`NM*w;|nL;65r z`1|l5p0cI&c<;0x2?Xm1Ae6I!X7B-~e^x=cik@>1T3A#D1NhS)3v8)Pu9pqBPZk%! z2|#)8YljU*HBj0o0|AQdf7o*+Ov-M**;y+`S`I(}WIHs7WypOKxQalENnLP8k`JeOQss{)F zd5ZB|_i{R>$Wn5U?^GlJK-lb1;?@aoY*Haj4i7~9{Gp&!1b_f#zE;z^$gJN3FA~U- zHWBe=`T%rw&IH?OR2qFYXb)OIv{~1t5r(<8S}fs^eSNg_isD(6%DfYE!- z*{R28OOT!Qx^3jn@26UU6P4I4G` zk>YirI`t*M+w=*Rl)ClDI)9g{XJ8Q2CC!F#)dK_o?V_?S9+hax`tYI~AGkv9S8nf< z+K*&rHi=5eMhkDbs2Fa7pondLE+gBkY>aH|AOnD9Pf_NXIN4_YD`RN08OF5a8=DLI z{iaPzYVp1>sWt7lcm|A&Y~+!`+P9=q0D@SPrbM34#`Vh;M%U6xk)_~<05;sicOp0B z!h<(<+ZG;<`C5TZwMFES7y`CiAkMXAD#79arV$hK8|R5vP>5#MByq(R$#MooN3 zi&&a7Vpb@H{@Kw?qZ}VggVk2voyLeL6`<3NGuhZT`F}r!*99N|zUo=RT6yAcU()R) zMaxKw3G7Sqt-v9-cWBp;3IGVDT%MTKik11qxp3RdN`MJ8rsI-ihnC@VNo@&IJO)NI z=TA3m9ndg5jRq(J@Ks&;Kr=0#>;UpmUEub3j0N@VMW0}a^X5*}VoGZdGB9A9!SuN? zRWC+@fCG&L;D3!xNfOxAjKrL$*({&A&hGs}$j95D5@>WT;R)b0c zFcYnLPo@p+ZRtB0%eFjUdGXWgm}pQ*l0gvM^~H_)9YvSeC_M;VJR!~8Ey;1;pC4P2oi&CruCR)iGbW^tq?5C1qB_yL|v81+g*UlgVslUF6RtG4k zt$*J5KgO;CPOGZvFD1Qn*RpgsyKK`PA|)Ux(jkI`h@^l>2-1QyND3$d0%8yr0@5I$ zpaLqbA|c=W@40jD%zf_ld-=W3yStC`KQm|Q%!zw$>EM2ROELoR;)srptK>hvLnl!g z8fD1Mx6=o!R(T0onSOdXUe318|M6>x=xx9TJEO~nn=OMwLxKU6+N?9DfG+%{HW>(z ztZur_sw0aptxbRcc=*O>R*nq&om5$GCeOge}&^pJH z1mk-NTzO?_@Kl3=UeK(!I_g{@{ShDl_;xrX)A-|_SBpyxrX%CswiWW{xAmRadeCvC zPNb3xKvo|Mr*sC09#wJ&59$|et;s7s2R}=9aNRAJgodmQFsnuS1MY+^c!bFS`r!Mm zO_n$_ySZZu==#YI$ThFL?5fV`ceGbXBQr;RVZ1wDmt6OX_Cr6ee0jVy^6h?Gw7vX* z=rg|m{6KamU{@4vulp(O#^M4LF*MOq&ciO@Q9HAD3N`~k0HmyFE+NGf>QRf=v>7Cq zMMTWm>Rxj*?}AI^%2^;dCjta6btblP`ttPrs=*@&j!%HACED#{7OS^=akG1S?`4wa$I|`*a2?w(4(75xswOa&03Si~vEbpFTEsQLhWn6aDN{IrU<^ z>`TK;E*HW%wfuh$K>&e^1cVGhl1mc(0kwNUOa3S>jjH#s00N-O&T&p^&bs}s?!4rJ zTi{t^@)@p^-yaJe9r^0`Nei<%zE-2_9ql%fOHR@^_a(!bHylvy+hM_d0SJA`{>x8R z7+{$BCTVwYUn&rQ`;uxzNynpeCX>p07T#%HGyfZCCVLLm?@ z%-(ecaB)(H;AFx;faK(4^O2vmXG>KB1i-hwa$EidCDbg_Ay{kq$gKg8@7t^YR0eGu z$)Of$1c1+a&3B^pKUcBF5E{nha&t|1AIA%#|CyxAO|;B`#=s%;9ln2eX@nCq7yj|Q zVochJfdEa+*Vf{OxS7)bjbKFp1i;lB6YPF;; z^Cxt_q<9QOW7pF>cCe!9w*aTC;UDYyt+W?F;F7QX zEyrH9N_k$eB<(eUh)>a{41G9X$b`9MV}kCNREPxQdjdM;!2N=?w3xDQ3K)}8Skj&}w-it{Oqjj+%mB2tWmh94eE4gHQ>2Oqs zmT}tCrK$k}V9>oa7T_s*2VkAC?ev^hinodWkmAkz>=!4diY=(A)h)$iAR5atbfp7& zHCJ7&3@IK!0PM^($^k5$+fAo2$z>)HQ$n&p(n;5rz7Q-LK;Q~a8@sl!oD@FSHQkF^ zb6!s49Zv4Cm6#_Nb)72v15V)5vT+8B%c{3pM^#z#D7ZhL5&Cs|#E{WCdT(Z3`AaSU zfs1@1;b`a8nhOZn=Q`5zeI@D~#}NG|XBlBo&zZU=l1gA88k3;2DOT%zC&dE@09kp3 zEH_FnJ*Y5b(fAx666Czk&uODdE&zdxe9XSWnn%ID_NT2ix&KuDqnp|TB!>ldL0Du% zXWL~iSNq|C=c#iE$V#1pNWaIp?>LD0)MFPp8~cHXvHaGXKBwup0G9KOs@*wYf%<*) zI4hIBw*fEsyMnWVm%1g`3w-gfPQhNmK!D`L_}ro%dZdub0m$a!3@syFBpi% zq?b3nn=v>y00h9=o|7Cd7stM?`y<6mL*r3Rn*Q)YCi27aU9Vc_Cu(FGCr<}ejgaxw zi~iuNKR+se)8RI(-JD?i00i!Gxpeb@#acY+d;JIihkZm}a`eg+wsP(?UFXTZNie>b zz&Zz)2dkce0LiNI{G8jtss{)Fd4I>J8$B=1BpSyv`jD--PZJKBqoJ6bl=!h*aDo8{ zTrS-d8O-P8(Hnm}6_|)3o`W*~_}))q?>mYz|~V2as#fwP3zAeRtNp$Xu1Mw+0Jh-0 zCF11lVhw)KSdS3Whzx`RIxcN$DF73z7Y@$|HX=Zlia+aV0cZn0>ftl1g8TEGZA9se zy$XJ)IiN+(I#=j-4EazyzW+KtqocX((^BaO^#kUzf%L-}#Xl_JS=o?^V2)@k^WiUS zPoR6LA5GOoh8M&aJiNE3kyD-(uR2qMr2BvqxTHMR+VQtpzeWTbcLT8m7gk1{E`M1- zq~L60=IbIuipM~3>)EG)1N!xJp=IzDxwr=fk(Lug|;~U z*Y)ynsR+G;1rWG&&9uz{%*f)&sFF(-D$AG)J!#-9^zF;LA(#t5;8OVQQ&zHv!!|v? zUuRY61^ej_0Avk!XJ%9F;Sw;=)>g$BGcurB>{q{daNv~`b$IA=lyE*;nJE@LVFc1{n2@FJ^b4Gz@oBB*KLxVX}NEgfifi63;g`ojCzw@ zs-A%cUzBXmC zQ-mz9l{1(NK;UvRewqX5{z+NQMT%9)o|MQ(mwNsCACury)H*oGwYo0%DhCH+4x;9M z$Q87cQ@;-G2SDH=4~bSyeqHxNYO6C1q0EI}V2K%b8r=192j4BFe@&98?asp@o*1|V+$_|Fqbi|v?^!M5t=Xx$&Fgv?^P zBUN3l?o{diRn!B906}xOi_>rZ7t_9d@IWBJP=;J_-*;<)u4BETvb|0e&1E?&PRY(W zuU-eOCnVqoEB-{=G-% z0|^*H2OPjbs{B76tNiq&CU=%Qv zzUO6MnSx);J~Mcj@iqYN1a?a9uirQxJj_V20lFo^Pv<-{X=yVC0wiA%`E}WMgNsLi zynu&07HFGEE;ZytN9g==m;UCYgq7;vTMsx0DC1zk5tpqO!;sPWuXW8{+XK<*4699Xw&$If3 zb^P^z)(TE29fjtKG|cLZu}Re*XwjtR00Nf>wcc=4-TQbZtvLx8L&O05F|vsT!1R0W za|^Us)TpECgG3Fre^1kJzA;{^`$kgV;Aea!7+fW=Zuv{WQ*j0wkZY%{>phqB%f0~w zfINCJ`Q8An3~5*_pdTdwKr)BV=~+>i*pdrxw98i*9ZcUSn9EJd;aoW$s$x!BA@R4o zjQ3Uz=BZ&?R>Y0B^;Vre(e5Jw_w9bjn@-wRnI9}xdupB2lss^F{ZY~2&I1IoQ=x>DRHFaNiuie_jD}DzU-zyyq&Mzxugb2v0f$s_a)hisa9XC zE&aGd!D0afF1*r?&47GWf6*F~V*PC|of5_|WXSfNbRWFc8aq~H2!RPOxY0jniDbjb zUiwBg5U~45Fus?IXE`_a3w9p{0(4~GJ}ZKeiMGCdOPABKZ~Ox83u_lRfc?>)69-b| z1*v(63NCWR`n3aVr2FV4lAcumfUCDZwuNw;XQ;%3p^|3(>{oXeeG)nFFG+WgFO(+n^G=RnWe)>_KSg# zV(pABR+@e9mkjB9l;D&)~5*{_Uba5e$Hr+-dPDSoPm6i>$= z1HGUI-xQb1&`<6G1c20D$i}u*LO99B*;o!o|GA3?5V+*oF~b>ELU!>am&_Cf%thXg z@?El{G6Cs1FhJmPq{n_|!0X!3^THSDb7Sm%sRNlFIbvc74D>Cd(>i zI%p13tc!VEo5*E`2W6fP&UpZVOR0><92JKY!E#u=OKX%6GnUj$m0gI4Hy8Jit8RK5 zMuNS4n_7K_&OWkl4D^B)_xm}xZvX)xr{W=flPVu>4*+ts|Lc8r{8#>Cqnm*MNq343%NOh!09o9h zch3_nx;RUh-qJH_QtJRL={d>HsNJiVzi>EsIX{zd*mYBeI7&D<y?h444(J$qdIiJ#i^PvESnRot>(6eznso} z2)tLp|5!_&WbgXOo76&%uFH_XWS;}C#Oj8QtNeARlNQSh@_VRw?YAd`a~m%!Z14TG z#RXSRv@1DATVA@#HoGs)*5-7?3ZMMCR<9H*vv3tT%00ItA=p&_f)QoP4H>kgSl`ee z0PIY5#xY|2l)1rTB_kE{Qcud;gB;&lm@aRyZvg}@^?!TD;)2;`_}0_GHt9@aK}>*T z{kgbJH_b(A44`6Z4e0KB<`GL&yH_uF4z4}`0+;vinTKtW5c4K@?%RbZoRV4-O8{zK zb-lRpugi2_D3%-mh@(F&V5QrUck;ybi@zGD9tf1#vKZywfy5454v%fE$qHoe`fv3s z&t$Ilf*(>N;4T}uJ2=V_^W26{nbeqI)=dVm0s4@dv7y0z9M zt9~I7p0n#w84g(%4)Kpt0G z4oA??ZrelN=h`m4=Z(d(9{`~r@~wFd3VO~nNIjIvWq0+|nnH_kNQjk%@);W7 zj3aF_X>}oO6KO~W8a2Di0omtX()+PeJb=7_uY2~@9xS<_2uA~6(E36p{Btz=1dsu^ z*56cibFlUKJfYm7YW-=z9YWwxlM)AuC1YjE>VP}q7-Wm(_}HQf)3wV;ZFM3|0PuI3 z%+`p8_0zp?zohfC1kAQIB}E!=>iu92S#5hrFTV1iX|UU8w=-tRhFP6sB4y92%WT|o z7@g+fuYHEv&PbN)gps_zZnz%Xm^&cn8$|A!g=!vFwnY_a5tfnud6 zX#jT~0JP3I3gdf|$vd?jShf3!kX1{+I&o0(&4K=v9RMwCr~5PWCZ~k@srPR>sYwpA z>`|%7(ZWtCxUiV#xm*e0I|+{TFmDS-Q8V}5`TiLLB4wo>)Bn`W=cC&rwR=boSL|5s z*K)TbQiiLSH3wEHIH2`{F|Sy}cNf1CwK(TP?XBzglIiTwu7ujXuu!sH zS6M*;c*PE_2!&{^Y4d>lQ5giW%BOkG;(|fu=L`-iUnkqHHSXlECB zrC-c*=`}$1qX>c61E!ol?`Z8}w{J8^Y7L-{`RJgjoh|84C;9D9oS;_}z1#pqV-l2g zdlju}sRVEX;OO#FR%qh^oRzU{bOM)L@TyDh)AaY(I$k}xy606#k_*2d^Kp0gn!;0q z?`b7SF1SXLx#S;}+~Kl6SJU8t1Bk0r+_+U|*;m#*`Efln$*^{J6<}1pu(I7R=FM3c z@0 z672o}0g!dmIETyhMsI1cq>5_`6-U)h=8QE{>vz^Fwpyi@AsRp>=%;+1b4rU2@yON3 zBSy+qYxiz^2BM*rIS*UnLCsNVuLq0QP?T1E(wj#B!KF&(16m1EJb+L!Ap_xiIU-zo zy`u~REgpaX$R(j;3!7{4q!-L5VgM>+_}tN4-Kyz>vkgDac)dtQXAIr4w|Q`&VU+gU zMO{B;WiS^W+GSmze8igIk-9T=0{xIL0!VY?c`cUgc(}bWAXQsE|DI z6$p;`ChUxbpRFA;M_xr;)j4YH*MJc>%mKHZxLzJ8tr`IW9u_5c?k97ND>W`ShWL=* zkEMIsF?6|Fn-U&xkRgtDuA-mdGIL%(2Nc_&nAWBjgb)Wvj@Tm_uhFv&Qlir*a4JuK zW22f~O4{$!$G_@YOS&!2uY}DZ|`-VLz?weHq+r4Yc0M#QPZ(L2?e&6B(@4vk&JeW&O z8Ug*docV5yRJ-P~iu!@R$j9jBp8Qh#q0AeXY=GP{YTsr@uvmB+&P|x^f=;Kg*Q8kP zssn5TkZlvE%4)ge4?O}(PseTp#6)2`z!p(v+w>prl?HV;eZftF!Bvj#U57m-ZKOS& zfdCE5lFAxE;IvUcH`NM}X$~Mv(C3lEqAnWXIIgRlxXO$5=@@TcWdlZ0F8HVNVKQ5V z_Lae2;Nhn~@Lw-vB?0IKrH@(s-wJAFgJjlv|KR{_OX*@z5V-vLX>&`XD1K)hIi&{< zQks+IK%8!4dy6$>I&JK9KpE~K*nK+{zsq)mw!aEDK`?Dx`cPxHK z>q+frTKY#`tFvH_|LPF{BBwd3Ojc;Jl)Z9<&Pss^w)06?5?Zn{Ul zi_ELzuN^CU*y@y?Iikl6fB6Aen9XpIfXnA<`iCO`evgmtD?Ur=-_42uAb2|4Pms&u zuI2jYgSh~Nj!VFX8Eb?4k%Drn7cjT0=S@i*$5uZg^%~on;T^3aA*xSvYaUAHM`eXk z*{U+wE@%MUMzk$w8L>q5r0D3ZCF9jbAzM9>L<0~2x#g9kWRi43cgO>vwGCKUewXEl z7)K6d^&BN*aR5N;{jx5%LKK_pqh4?CAELB1W)aIxf_=T-(!{K(tdzKZr;hjyqFZvt z=~T}hW)MV@g~5V_6Lel>`2hfNQqIbjI#EKM*;iCsn~7K3Q~M52hFhA!I$Eh!)%|0l zGHHfVlGXaatSRF7HF3u~{A)R%SV?uWMkfOBIw#8y{r@oT9qq9!5&)2&Rf<)uRB@l{ zm}c!{kED*;0O{WUK6TbVy#s*O$G%+FnVZeH{ zv`*)-9pYbC_0-zo4rA*L{oqt07dW#f&DPfSf_4$m?uVn=R~9bP-pN{GPDZr7mX^@* zgrd#0Xrvr#cm*Jy9_2)t@R&aT(uYeP=_YI9`^(w4`?d$a28_649C26vGvEKHxEJgN z_D=SczWz@thsE}S*1VBl&rqdu0P+IzcPivx&Otnk4FJe0XI4eeDz+4B3awnRq17Dt zdC#R)QY?VLMXqG$uDo7HrsT4M95K5s8rjK-&`F!-$)#0ypg~^%0vGwpgt}MW40ff{ z#1a6`jHuZ994(_WyX?mU`U3#zI*kr~s6(1#2qJ;_%2e~vHMW5d6+ELOl!?ExTfVFm7;D)8?(poiaNThxuIY0|ylc%=I$5(z=ZZALa061A zSN5T$M(L$0?kt16fR~p9jIIE9i8r?QT;ss4cct+1%Y?5#nC`Di08Hzy)AjD|c>y15 zr+kDV-qrI5XZ-l2z2{zFCeH21?Y11^&Mfy)vL@#r8HVfjWYu*aw+?_;E0_8m))g7I z-iU}9Ajs2gy`006Yk9mQx=_oYq#t&bu?p7hBJie@IMGlXvW1^_Ry%g+9`^h-Ue za%Ta6IDC!^+aB}!_4U_GT{|<3KX}~n_lBcAui0YF^do;~&B&WitE4Qa(;xdh0O%~w z(53vZ6rAgy#u?;wwBNt?9C?sjFlQ)ZcU*G0cd3zH^^twyi3Z`Ef&4;^!+NA-wL&b2 z)b{!2mOI1B=_5M(+aS;X;?68T&YjC!m$Hhhnl8RPT#LiemBgCVNnHP4gLDiBbgnz2-4x4&Q*Jb^3IS6c5}0kkf|pBj;)Hq?)(U zK?;Zm5dCwE`uEbJ!Df^X^wWkpD?05xxKZsI^{ z3Vztb<_5swzs>ba-{jgEb-Ko0UFEQSz=fAIt?ihV) z%UL}DaqDwv#ZC@yd^l{w=H6E8qC9oSL}Zy_!~tC7Ao_NSuldXW!JR!q^72V5c}Vr-jiS1B30ULfwGXRh z)3E_fz?Z<`S3*Oj>74j*-MvPK^?Lh+eMth*82xjC>dW+=_v=aVz|9Nz;zQ3%>N!rp z1su^p0a}gV-4K~x3+Db!7sIk|5^T7-eY=^wwVoBrzA+FWIcNQ6e59_|$@q>Y0h&So zhmAKxCyegx>u;?$>S4s&SJ{ATtnMWrQ zuc!yeE-;N>aou$DU7cCIqB0oYOMA9^VZG*xe#t%p2#{PENLX7%JGd9Li1y3@k{K!Y zp;fvv@q#wn)rl0Z|HWBaJSael2QCv%r?m!wuCL9BYSwODaIpFvz3sj4J)M=%B6Glv z4ms)X)Z}0IUWyj}d3FDB7GcCduM%$lu`swl?)?!ax{8 zo*qg7-*lz=5j|NOQvy=iqlLVuvVM%`B#qPim}BwB59PQ(xlYq+^t>gPe82dO~7-XOtVVDZ@6 z!6DB;FKEltX?4^})dK_oJ32+x`-Q~Fa=<9>@cy`pPGXNG^N4@0E!c5W%Fp8 zYdTIq0M`HqEL~ToPyR>;=y>q=?={gwCcC`^+T0va%|ToI-JU@J$fxAjX6~r%0Rk4U zR6*~Bb#8#YTmHU(9s?%^qA~jCh*$c^XdTK@djNR>hcD0cPfOrZi>&JfOq`I)Kk)%j zggyYIsIbOa7@2eIP3>P&&Ets}HG-E*`b(XIxc~%!oR)ocy?Zbh93O0E4}FAlv^8l_ zUH>>oUjPCZ+C_8vvhm{{nhOXVW76-4_0)EPkjea~)ZyA~q!JL7oFrsqHvjTmuo5_w zkL*iw#9Q2GmM+dEm-ZwU{)Wghel9F173={30U$@Rck_8hX36CoW%b?!u(>#@o>eM7 zmbD(wbQ!R2B34pzBnnNV%^Z;=GtugijQ>INDWFbewR*s zVO&K$n9IH~5I;Z4^pP_L?CRvX90UaH$oRbw8Tlmr#P4#5x*r`d3n*q2186|*eey+; zrP22CipbmKth4%D^(Kk zqMhE}@6pQ<>+@GyX;&f|rMWkL?_?2IzS_RV>?x+U1y}WA9=$;0#?krYo(Vm-4ggxA zFmM*m4&2GB>kL+FE9wMfXSGTL){0)C1CBe)AaId@XW~z2m9j_x*u;)VWBv`(wFMJ* zx9g-o-l$*^BVImvH@7B6YjDC=^g*V{M!p2`ydq`ZK3|=-Wy(?$S)YZgn3tW>h+?F5y)cHxG_4M7?*Z-DL=dRBKz(uW8=enj7 zwRX5}0|28{WeSqr^b=dT!)%VSfh?WU`d{bi*ML`ZPo7!sKYDq=Uf|?p#r#VZ3G{-d z{+mL_ztkp=%(7sZ^wSxw95yVtp!Ei;%-hUi*h5JRblfoU7dG+rm)bkSL5J=;v|*XJ zK%{9|UT+z4T7-%D7AIa&#%j@mMdx+P+{q8gzvzD<-n+HcLx1lDz^lUTZ*0`D&aFSB zoLiDU0FVl;j-nXdbm53}NcRXI064h-&~tP?&VA6?EpEzJ%He;6&kOd7nP>M`+OOEF zC9oi=8eHFVqSWQw_{M^~>Z~=_WPS~RyG-i&rp(h&Q}ch;;UC03 zLU5nn_$f#H!*wp|>#w|;X6|SJ+$DI))_K}Ng18qJ+~+JFX%)0k-szEZ{ZE*(#+f@B z0QU_QMmXT2qnhZarh>Rf3hp>0&gUIQWZ(P0^&Jg>y97TeHuit(dlA814lbSgjr`xZ zqXBT2;1k6>7u5&#y{Ons88 z{7K*c&F)cxd&UVctn{(bb9{kcXj{vb<}1+U05kE-m%nMUcuuW548^ zXK{O~Yk2h9&P()E%{z)fWPs$DRe${@Sp~RH?J_3-7SGyaalz9_J(I2UpBDkZ9OQAU z4i_@Z(!qTs4gj=1dx3e8bp7;$qtlQ5URN>6i2$ue+w&s%WZ|&QpZb?+#cd#6w@C2+h6Y`UD+)oSvBddmQszbMOV_4(CFNq&S#3asENs29sf@CLtbkw z^Uy0<5@!tfJwcUGEblN|-=q!4^y?cZXw!3y;tI~a)WQ3NX7h8o5c6c3zSWs^&LA(~ z`>El2b(=-vi$1^Vf6mehyfN>%XSE7t>kp~Z-qs%_^W1oh)=Ndw8jNiq++3A_r zB{m;6z!GC|%K`GuQReXq26%~YjOZfQCk$~J5{1*7j3CcBdP7`R5X)zIJW0sNU5<#e z(VUB0m+ATAV$aHOs~iFKl_vnpjA<);d-<=idi6Ou5q2VN@Y#&l%bbiYTW5wvoT^-qFz(Nf<2v!tm_=la{{&VMg# zT9=*c@*rI90vOdX0HTzh-rb5ERO}(DgDCMN3Kl3poYd^^*sd>Mj|1_(wKugWAl^kY z4A!wccD-*vLmBBtj0%x1v0NJXr_e>IXG1)O4l}_6Ax6g<`D6FdjYSaS`%TYEVv}${ z%wiC|vnR6gx59EXt7MrP#Ar3&-Qjkt-K$S8b4AK)GU`uxO{=+x8UXs|wERQ8eli6c znHd1$+-b}THykPT5cSBoOUx!mIn5@YcPNE)q)HJ;XG`fs00z{0)JwmPUO#nJK7?dm zE}rLn7+6Z^b?ti$XcvY1PJ`VUf`hNbtP9Lsu$=5EzR&mhM#e1 z2?9Vqf6?U1E7CSbdkg?^`XPT>BOTnMe6+fz+-BiJJCVp?*Pf~W{ zGa!b(mSPm$;s&Z(!G8Yg} zsr9urDLeXmpXl8es>#97#5RZ*+b!c%aG_;SB_clFeJ#Cz%j`0ECJZiv+Na`)XulG;i&BN1AL2p^XYi$Nek?)4F6q}(QuIuIdulIWed_`JM2-ffHn;>pxGWIXO* zt<-xgF=iItA3AI?zz~Nef*85^Eu1xu;drl_DR*5qzeESrljXMo~d;%tj?tw9|1A9{QQ6wR?8g@caM5hwUKrx z7DeWNYTcQ@WG?c841TlAgVu2=S$TWi1QixvOm=Q>>Cn`|0B8mqfJ}UTfx5QZ7zo6# z2+h#1PG%@rv${-;u4XvYrZ0N2#;6Zh#6XStNM_lR zZ;HW-xoa$%uKfk2pC9x3!#5}mwk8T;mgWK#h>P~kfOF3S5}HNgrB{cJnsD-SFJ*6`L7>KOPc&X#hz)PRr&ai z=Qb{5_RgdY_7NOlW*sNiLH1;NEreU=Islah zh%rniY=21(X2$er9j&Hl^m26J`JL&cy%__sUYp88yD2xKBq8#OX?{ zC!?h4SDLIpt=7v-TmryxxuM2PJ1(bJAF}q4ZXNmtF^_tw+LVb|e`mhsvb|at(wYJB zb+Y0V5(RQ&>fLa82`l-;RrSo+s8Nf!4gD-fVaK|sKNI=n$Ed2W=rRzU1&1=*7h$oKbVU;6|{_za{x#l@7D;K-CUCM5f>UUJ4a2CS_ zmYl_=CSKKp82kssm*^+@fvDmFXyXsLLNft~8{5RtH;;7tpBLkl|UKA z5evuedeaBW=%?b^RY6No`T-~TG){4^o4?4(XX40ettSqr3 zW?Jvv@mP`BeyMTjdOnDskfRxGjY*tQt%&6TUB2m~g9mO7Vzz#=73r<|64r0i@?YtY zrgi{vPWm7T7oiVx;6xl*yoSz6+*t+zfEhCbiajYQ-No(f2P7Mau?c|AB1Y;w2$S-g zn1)EVY+?ix6E}GCE2&1aehXr_#Z3C3b@{Z{ttFn?pJfMto(gq3%dS3X>VD}OX0&7u zXno;=Jl4>PhiEg6{zw|i6iOi8l+izss+8U+$6{AAh4Q(gaA)(?R5{7*>}2AAb6~7@ z1}s1Bd3KCl0RRwV2bhWH9M~m0>gt^X1{VSGIB@65co|`CM^90!TV1bo4E5l-SeZ}V z)&cO!oo{_ne^J;#I0ndaZ^-t{e(s$5;&~qk14M0>0?ws_J-f0DaAJ_{# z)bgm@T`(8bdVyY0(Ns5NPIA@Gef0tc_E{q%&($QK1Hk2$toD@4-?6%;|=wjPW=mP^tFE3GTREq`<4pGulLe0-!u*QMs?_QIu0VcgL0Ief6GI6J~ zIb|me@gb@Jr`n>>kHj@sYFeu@H+LjSVk0w%(Q4UK3u2kjcV>EqN*xY-w90|stj3=* zI~$*RNGtKEr*W#_DFUL?01u!K>zx~zknoi}>}b|bf*SCG`^*WK!>n050hp@*zEKqm zNQE0!ld)p71!C?OT>`rqioMhGdutxQx>7YsX#D1RDq~m# zxhwlryAq)yfS9MYt)D95Ol^NG;oqG0|99>MyAZAk|Mx zl`E3xmR^*zR5O+8DLioDWOLRK)l`ai@B+r`3KD(+m5JUoTpTb5IycD)h z9^*4|y{i75B66TGlL#*mjY&}1BH{92o~hC$$P1|VR!eCM1BfEe190c=}Arma?kxh!X#^Uf#aM16zZ(C1mgN+DK-{AZ-kkJuh0K0 zT;gPWMyq8Ir%0)$A;y1dQ$pq4%PP5|o!!gBFBb|G1H>%Gv^}$&uuM09Ix&3lvDx{(pbRGlTar6GRxE>^No=;m}wQnV2{d<31@!$ zu4a!gOC-V}w5EjOpG_?TIm5$wasp#kTY3=^hIx}d;6ncrJCECBm9P_!KbDn+iAw<9 zq`HOu0~|Ol->+U*TF`hN03Rhct>fC(+}A!dMNWsd+CPXU48$z^^hMciH|<`%X1%4d z!)C??V)|d$9um9^{bc!hU9ihL#bsV`JN&!gA~ke9Yg(DT+zz9&ZnTFbte-o?GFVg> zbFqWHl82XJxt(SWt*u!y78*k7T7LcuI^3Xp^kWVQ&mE_)oSLBB@cnX$%!rgkmTp8; z43L#+tEewSZLooSf{70|pX)@w?}&F=6mIfm_nzBhO{(ZkMFZE52U0iu@A|PO$<1QO zoetlUun(oUp)|oVRvnYrJJux5!XpYvBbgNn5Kk2d0 z;z($Wf|xrfZ-w-{=)%YhVoW)?gDl3O^>buyF>3)JMnEHj^>RT84C=Uhm#h=bT7U%E zTpYlWl-YGcg@G6VVsw^UuTbNNG?3f+09xbYLXFZz0v|IQzc8gts3!8!I!8V+a7xw& z3GJjPu68z3Z;jkxjwmB8JdloM1_HDU!YAW$#6f0kX-6+#{MH{kqsa&)FuZ4a98rlQEl}1Df4N-;oYwQZtD0NPjqe zU`^XFiM#^WW{`Ti-K6HXX;=XVa&rg3bED`MaWaUF`WS%Luaz(l$RLP+oHta91o=VC z2f45W#0R;G4o}iPj;N_aGC-6)g+oR8Wp)->5F1e#z#V0|J+E9b#49OVu`2mZ@0hKG zoDM*1y(uEBY4XV}Gjps*AWm^a?3|Km@uY}!E+f+Z{BFxK zd1h%>LI#D&wyQ`KXo)Qgb+Tn&pIJ;MP!kjYu-xDM?OqkUvEo+UI-;%#6I zlB0CjWWUN1+e}F2l67kk2pa2uuvJ`zCy%VfvZsGjZ$mbn1u@HxjYO6`OVPdB6(G*j zB*Q+EUkpk%W^$q@}6y>nG3|+GG@Bma_b+agtk1M zii82SaY%LXsS|5jV^Lg1pEp&2n2Y0?lPAYA@gF-Pq_3F!&p`|yr_>m>n~b!^o>#y? z44jklDZO3|t9pSPw+tFKqnWH7&0ruwHXwlkshgCMS~3Zi0U*YR&BX6?FE106OZ+?a z0mP`gm^gZV9o;e|0Zaac^s^InrYeE(M%fo^u)6s*#Xerbbt53<5wZ;`29sUSGgmK#W|(ig@v_{xUpWt)-%n^R}G&+X$^S zQjVoH5Wd%Gho#<_Z7FJ;AJsq)p~!5{P$1wZ#{>Q9B-_8YydzsSs}BHR*ngJF78m5M z?VVbDUiy^ypD|)F-{JYuQN= zVNVx!E0FtZ&&MuFQ`wq|zEZD}l-m>)AV#ZI44&vi||=fAUN zG#InKX);zC#jLM`7_D~AR3&zH*RQSlUfnPM4E6cOqE#d)o=M&-_k~U)h}niTF@XsC z>63+e3J&mf2DQxoL=FsQtdbxDaQ8fFOq>^5WitT8Gd>#{S8jM$>-_mQ>+V_k$DZp| zq`96+-vAsVVgQhlPrusM%5F`5-YV0#(Km=excf@YSSGAf*mK_rI@`q73^LnG8u0+fXgUYJ40&@l@+&C-0Dxm~Tr@B4xGq!-27q|sgs~Pe7MzxCo)hX^AO_)~-EYSa zPrEk(Zv*&c)dn315aai}!9jd<<~7-}DN_LOn+9E5tM1)24`_h6DQSeH3EM%Ro%DfN z@JO!yR*x(uuVOH%!VC0*2DN-ot~r`1zXW*!D_@L|xy5j4Lvo!YVX(3Z5e>-AVz=fV zmy;KB(x(T_bfADM^jS_H4tN=5Yu-$f1B0nG0rXpfIX-`>_M_y~Du`JmoLGXkaAqas z8ABMcAthA&WPp6V-;|L9Wl3N(1pt;t89=`}_V{9@dMeiiKz0;(tXf_|y8d3aP;UhX z?kx5_9O8%uGQrx}fruO1EhEG69)6en-$@5F#I0z)#B$f2e%V?(K#~oqlc7csbIUZ3 zbz1&0)oiVEsBZz4y!gp?>(Z|YNqsk2iE81P-BJ`Yt}*}`$#>x8SP)~AcjAU@9}Xf=l?zX&rtP&_<71FXc_Zw7NgU!V_FQB8yZ0x1VFBP{2Z#Rbw4(Gz0u-EIK%S7c8BiW+myW{r8u_zh#{ve56jqrSG-|krJ5e2yI*!|Jc3*DAE zdgM;r%{6bzQP8Aq$czq7CpjPrMiCaJ;(I^oQH1r)8o}uuCO%s3S%2g3Y$t2V(H1c@ z@<*A){=_^>CP@;VS#sdZpJYc!trAW+ck?CI5YgFj)eQpvgng%zL3^5zQO?~3uA=`XUK4lN_!@FP(- z`o)GuSUc(=YlQEuLMDsNu_9FFepK)dw`E55xmq&0gyiYDES>eR!~$ zeLm#*B6uW-`;j*evI8YAE#Sl1EU>8lE~i}}Pehp#%Ma`Yw(K3DpW#7xdVvPy_G?k? z^K$lMA`Kv3rfK{}Rcjpz2k}E5g@XJbeujSXAO~x+A6?m6SuVYsU};M>`H=w3K|b3% zJbhnj7n4W(iPX}!m$}myj+fzuJlgRf&NXU%CiRk}vQ#VmY4sy@WwH@xEX4qT43M=# z%*xr)0bKybFzF^dl;+#_ZD^(j2Oji@Q6dvx{b;6+1sDv(XgP^KlvS)gz|GUWQq(Gr z8tzyiRcZ`YgB*-&%hWU9i{aYx#M_g!*P^2!28X3~HHF9Mcr9~uxo2c{GovK~wopW| zmgFMh;)b=Q(Oi*OLo-fohye!}t@Dy%Ql%zo^`UHm8HDZ9&Q4O}+)cIo&=82xGVWC7 zBLqn4e1zboAGU^Sh(X{GwRWK;4$7Gh1u|<6WZ1A)lwwdQwI+3e(-_(s!Ih)0(C-{T z_tVw1lJM;n;W@<}MdkowPy=4@;F<;VDKPp6Fb*r@MpRZe`p4NNZ{%t{2P3nDbs$P6 zmamxdy;P+mQSz`mrSVhFWdG{Q30fIwxszy_U;c{OMUfxQ>gZ!)P6Tj7P6X?}Z|2`J zyU6~qb(T%ga`zG^LWv8Ixw(UK|Il-Ns>$TThXbL{nTa z2dVEb->N8M!T_3)W)Ms~#vvYfjNA0yJvn-60P7tbc#$Qs{v6q1GZhC1h=co~SxZu^ zEQ{OfSrWvNAUl{Gzqzm`mlVsK)n&j{qFzWAr0H1LQECZ|p#hl;KqHJ@$iIS-fEd`>RTxbiay0QejO za>wP=V+qU8u2bj7{??NWNP3Myc&rT%vP+P(U= z1oe(bJG+wyPaqIv#;pjAI%TwK?+Z7&=$7GheTW!t|Cs&&fM?@K409e&4jo+?0OC;# zXIn->vC?b*1UVabMPVaV*jLz@jX$~hK#PJ-qGetxfv$NGW?AkIp~P>~8AZ+>Z#?R1 zX#_Hd?9QT-AYMwjo&hqhho);MM^jS*0YKAEOCxK0rjEm-oiNV4&T7lwbg~;Y%fvYR z%g=#!ipruB06N(^(q9bEd&!O4qJG^>9e|&_Yl}m&JCDD=5%qzbx0%c*K`@d8RLwL@ z`g!FD5Cm1p(iOg~+Edo8CS`hoXp9fk!WNC&-H}%8|~wwR%ZOVIW4U8~^+=CRy^aRtY!r+d|Sa&3;!oa)<0xXYhamm*4?q z@U`+hCbZ}FID+Zo% zK>39N*7x*VTWXnQt};B_nF;zn0#JkwoU#}=9L}nH<;e6<)q$8>o_sck)iT8RHhZ(s z@~a(*!375PK)JvuxG_AmgHRhf3JYSTfK}ISnCF-%h(L_Y1>%32{caIMj0q{q>4iJg z&mb;A9~2WA$f3TWpWjd`x9yw`-)3%;2jtOP&6q0(HDEiN15Pz(xm z0kQ}*`_x{b7c}h4)-oHIxRoF;;99pgr9sVtFato0jK+%iz2N51CQw0gGQQ80=qoNBTH>v`4kb{rNq2yI?N-Vs#1l^!)2mV_GbJKZ$h6p()g* zLvFZ2#puKI^F=N7ez4v* z^#1v)w5Hg%0Qi6`2!P@+B$G}#62KOp+RD5e2A4V<>Y&~jXbM1B92^?c&jsX=HW$Yh zDTll)>r*#Q7<8SI7eF#GAMbctmYTZr-~>RCG|BDce7RcF747{E2regV034AY|9P^n ztOS@clly|!Q`g&LsTOz9cbk4fPTpK`dQt0c^%&+XM||*NHUHKDKg;?ej_uWbU|#}&!rJ1H?$iqBeC6X&r!;`Y;aIqsJ+DQKis#=h=kz$u8p1sX z9U|%KIQp1AxK&R6s&C1)dAAP?@&Xp+E~g`oMdI5O;;&w|M9N!qOw>p1JV&p%!<3HH zn?YGaIi?Nw&*T8$G$E^1Ua>aw$uL<&x_w{}`hewj<}z-&s%PE21OSMWzjMJN#v_Sw zUEd1bS4IpBw2AR7H@7^eR|ahZ)=mrCJBw!c+#xQPdY!*@%iAr}N!^5mG-s@nNlzE) zWu-@|F5J5m*}^G^O$PXC zw8VjT-YcLMVqDpK*~EhqqwS1_Purm?(BTq(PYa}VV=wGnRqQlI9kRn z^Q@VPPijb?ap!8k5(-X+sN%8{*5wMaZ^k9^ForwQOCY#OP=ovV^q|KoWsm`wH=`o0 z_xP=Y%xw6pyJe|H7|#HBu%XUUHU`*h|Ctxgu{Mub^$xJf?& zqJK_>QZjWFdHm4L5DW?dT)nINz*+*pOB@(sm2CNChD+)Yrse0B``Tskf_3Yhv1{Sh z{?aR5x%<;FgnN3tqC6V3#6Q>p0I@8TUTK@g-`OUTW#fn#0O_3%nxyk@9RLu^F{|xZ z&y#W7(X8Ptw_6}}ExKNNCHu@X^b3AR>#}CM-%DME>uLr7&df4r)_J|SzbXOXK@OLp z@j~B(?@LLM%xWb?Hr z&vY14gVuNzMTbbr)9(Nv1bHd(ja^gZbjlT_x-ANh$Z;q%E`5 zODtTyAC92KBs={{pLw*dniRzy{sDm8(nuqg7nVAAiL2Se56)Y%-20lVoi&$u0=0^k zzg%F#%`H@IJxCg&&s-TB~dNoG$dWaP`T&}Jl05i zIF6yX59tfPq*n(ZH=N81W(za0(vqj;iibOul|V1(tHyhDqGdl~5CD00%y8!M@5bEL z_TXd-Kt~Gt96o(I+dR3>ostVcUa^+9_(;2m1iavIaIdwTek!*FxS4L{#SmSyhJ6}WK5Sh+O9IoNry;YOKa%x)GN6FYKxFF(xL?wz!BpInzP zr{ft2ZT()mu4NOfe0+0elz-;cIY>~+QF_5 zfN9+&9@+OB*Y%$z9A~?PED0K}uBsi6#bCW}To#x3-MP$( z<66~^+A^v{91bR^NgD%rpGNyAAfIyWyz{kf zvUN95+LO)^0}zM)Ip+Vo!9WRcjRXLQaf276bpr3!*i^5W@`wQc=S91JHptmo-KTMEWqN4SF7DN?;uol!g(j+ln7m`^c%fe}T z)rK>>Ujv5w7)O)SOU~3KCkXtwdx7V^YNS`wynSU+YY)2QB%5`8R@z-Hr!V!;wB2q*u}P{$j-2V&JS7 z``hJ9K2QEar8OOwad&{{&x`Swxx3x6Tu@4tzLgFv*7;LJjEND~dvK2a}u%}VD*Mg(?c+;5&-C3?u9fxGr+%SiLr@s>m6%n>M!b^CD#RJ zQ-w3s2FS|nlMyww&v2&!fR?uSfL^cJNDhjc3#*onuUc_{S}J^bVObTs83kO7qZ#dB z6|h^}8~#S?5^0F#fYLC3Du3T$W8pF^7z@+JqxWxxF6^=Hk#-;oE)$130Vp%(Q|%H= z+=?ir+!)(_EV9Ud;5KPMh2^Pq}1Z51)O@-v!>Xje|EzKxXLrNwzS5 znX_g$GUMI??%;#TN&aG-vRj^gHit!wmizBXuUqC+zmX<$?hGU>5euo%$l(@4tyC|9 z!ySD9;_*QaS8dy>m)>~*_6S7MIZ3v_)Kvb?1r9J$|AWVEi*~QRbLA)gM!I6B4_fVZ zmaBFS9H+Iz9e$fyy+j}50&c!Z`Oa+rzy<)sQwL?TL_wKQZ%%%HQPPlF?3SHQdTvK> zLk@2wWZfe$SofvZnrHu&?m4&tg6;=6eQ?zoQ)`Y^CwH1b5RJ<;1j)}sJWt=TEAz_| z=hw|QOjYN}gj;>%QQf>XAORx7{fC+_W2jt%PONz#KG6KAqTk-M7H zPZ!VzV^yLoe@q`f_w;XuV=-*yg4xRJQj6th5VRwUxx%l`*YZoiThwU)K3G@U@=}bq zTfbA!%)9GB;82nVI5glj*y0+ygT(>}0O^2t8mX%;HJ6bT3%nnIN0zwr8;3^*a{&lk z zy0jBOUci_AbLbe6?lX`2#~P$x6Z!F(sJy4-Ox8W#gg(`#6e^5s4T$iF)mJ~#NluCe zkXP*|zEF3Xx$zDzoJM){2ZwX1E9=on_T@D?%2AGhUIk3;oLnnFiUkk=GL-i%t*^a7 z0=Ui~4~XaYi=?PtLi(FIx{fS~ew?H$%eD~OJVQ>?t){8pA4B_g-#vufP>LQ-oA z>X6;KBToOsrrNi-bpSxTYoFP~MeX`W!YQ4|x%DALnB^0MPo34IP}R z*oa3t^gU4Sb{+7ayMhuxTGLjqWU@#M@{06M%g%bWmPG=!_~wn{@n; zy{ep9nWvrsVq%;D;TcNVJNu>F=IKWeBXt09je6~726t-H@?K9lJ2Z!1yg;K;7gV>n z&uaxG$O~A$y@>Ro%GMifXOVcYG{&)6q+a}9-%YyC`|1y$X)WEuEb9A#nJYh?UO(lc z(7t(rUQqE-k+R@2b3F+H0EvOQ6t0&>_YM990Om_p>zLHq??D~i@FSU@%rizHF3-ea zW1KfqA8IjN`j@FQKs=m?R}dQ>Vj&Kfa+lW5mYp_k!yt%ruXz^dO5KyO&&Xu#a)8VH zP5yGDFbC8aXU}Kbo;q^>z&tw&4h*tY>Hyx^^scNe+)lG6kGOr$dhQ4-SL;hwkr~7# zMn*)-w9I1X+3wY&`=-?zV%_r!?ZmTltlRrAOr8BPOveZlWB(j2V*tEaKgqgqr|f4J z{0)U&BoJetiXVKe{fW;NEYJu)#)pMJevEIy$|<2buSBVlD@ebxCi(DzGSwTMOAtho zbE3p;>IL6MjSK*>oN{`O&Y1_VV@Q5D7z(HLRL$3;T?#fBb>FdWhJNYfe8{{ciNWAB z^1%q_IoOyAYE9UP1!B%kxJZqkIesRyT0}F%FGNZ)+^xTm=Sh)HUL=8g5&!`MQRts@ zZ2jzjopL&6-igtRh(VaVcYN&S<7=(w7z;K?AwANRW#dUBtc~42er7$rhaJ=ntKSOs z$c|J$Gx0a|YB|r?4Vu{3pO}4J&O1Fj)g*K1{csvNXAUQd8s*fPX!D}Y=y~E)p z5?CZ9=lRR*Z`alCi04?W97+90A}Xvl$>RW~JWgQaIY zeeL_;<6d$kCO(_td5ahe!&ASD4~_i0d0pa+x!T(;U#{kR-(O!+9b8oI9kZKmzp7s7 zU<|_mbP`iqCZ3w2RA?tZ5pv^2*lZZz`-z5;!g*-1BHkWal4mc~OMe)^g^`6J0&fj)j7nE!lTS$3IKf|p6*n1&-w)S=#@!*E-^J?ro2a= z>%GE1d$qqHmw*^2G8iCp;8X3-NOhWA0szEFU35ik;SBTQaFV24zMeXlpyeTCB>d!- zK)U0r!MroBAMtcxzpJN8(ud1Y?;kg!u&pdsuqJgi4Nj-w2njJtZz>z&G-XR06>kr zv48ll#zKv)*BxnR=CT&`8DDi`mx)&RoQc^OFm zc7Ggo51jnHOadlzuy_mvNDfDnA6<}>PTePf0C;w2W-AG!R{LVO=bjJQr~O2Hg}wj? zH5>P-aL>YW;Y)J?2!JJZ8#$_ec(jrXTMgjpA+k4fcsk1&t!fSf4&9h+SFF}=M4X8} zGpK}Ip>YF@6Ea!dNyvk;7Ljr8s64GjlijcbGxwF#StpK={5x+UhJn z1K?Lo+@?gj(7_v)<`Vdw-oILRf8b!nJM|}NVkBY^Lxe1K|BM-Xqj((Ne6@Y`ah(An z!bLFve${-Pr9wOh@$0IdS}SPvW!v-_e@==$e)VD;M)(O$hljShgoruaVEKRBKh3QB zCLSC-AzL*C9f$|e2lDQ|@@XuHF>vhut)M?~HJkXxty{6HzCLP=GC5b6M|s4?xG_6g z?_~pMq>1C!-^!rg?cj>C-Bul9mWe+sKU|KCF7X3VCwgu6E;0y=82uyNR%sq$ znH#Onxc;}!mGF%LMC=x#VNN0H`%*uo3CNC$gslmm=6a#}WA&_zncYhe zso%eEO2^Uw7Hd|`Qr0CK2!t>9=a(I>Y#j<@4j6}dsRL2eoW?b9#CXQ*33ax9Dh~yk zwUVF)yx{N~C1gf0YbAbQ0CCoxxyF`JTdQUr$O{ArLluMiXKX9eiB=B!3INWV0f4G~ zT*s=x+Qdr=0KmX;`rDJ%?RRfATPQQM?hhPu8htp%N91f~4Il{HUrra6uB7|JKyb_7 z>lp|1@5=XN5(@=!?9lqXHNa!2YF7P1aGyAKvSpoM0k-@$Hu_fdPjc5m_X#uZb)rv6 z<3>9-eeK(qLaQ70VH+_Jed>~Hh6CD~=M6bzX&dnZQl|qcte4xOKNk)a_#Z32aCmHU4}DnSo3;t$k6h<=0J;o4j|E92}Eomg0tCPfe_)RPadSN zAy=TPTFZ&d(c1tNBEf}nd?8n(sz!jo59|fDj8_jQRgIASY)Fj&0Oy_BX_Pf|B)>R9 zyORX)h>L?M7;%wo2CvyA)37P_Sv0hsH*?Aw<*%i%u9$6iFI;NT?AU?001c8{!=vL| z!@rVep1=D*%@qm6#>M@P{P^F!K^x?lW9EF|0#H2drm_nWCua@v*4PtL#Z{af2oRo1 zL|EYWq6Ndk3R1^d)m&%YPkmJ8z$%V`{TlFsw^pbpD^zpAEsHF<+d!wfd*^5csUY1~ z1_G2V<1wd(%z0H^1Z58BGPmkP&ElmRxWcmAi5m%0qi&Kx-=at%oHKa5MLPTSeoZ-= zYlZZ&&43q;vJGK)wqe)X*X2r=xk8jhyh2<{&^Y@oIVW=lm`$9ffOd`iqUm>oWRKpTKU4GC~QpS?4KKD2EzIV;pM2<*c2YbY0nJIKcJ!#2E26uWn<ra>;!*t%YVwp72%jO)se z^=ulD0oGG^Qoh;QyGvY~S<#KCl8&s!D!H8e=L1XhT6_5J2gulpCn!wA3{ zlD9ukj;yCO1Y_Ydf_w<01cRg>UHf8>?1NhpR1$WO>&*ins-vo|9Y&E@!-)&DG_Pfx z^NQc_$@8UJT|f^apLzLR`pn0WgXM&4QI|yCz?Rz6|q!GZn{WjgGeDH zj3i$ebC!*<`Ci8qkzNo4r~W0gT?f$;GYAd>j}02{D%|RgYzIL((oS+?1VPxO-Ag9X zs0JH`yO)31x``?qpi`o3Mpl4$6!MTqSGxV;P~aU2_?-C0$c%eGepuifm85FuA|i+3 zZkIQd2(ze$oRpX$<3rvoLAUGE-Jy*0_S&VV{2|5 z!B`+bm^df3U*DTzZB(;4K>%O}2Lbz&N<>aO0EAic8Y8aX>R;Lopj0we0RNSTO2+3c zC}9BleZV=_IfEd&4t$NSlOp$`$Tmnyhr;Y-yp}7T)%@9>>D<^sJpoii0NKMVmejua zzP9MyvXP7OAUGrxjaUFgml#*6bdi$6SKlyTYSx$I8_)XD13cTh zhn1Yh!-^6Mkx8nBLGr_&tt!)RmGxdNaR>riQ?p+5@6lCY01>_Ou+Y*+RxOzgR zS(CiQn#)c8v>8MJYosyLD9nawv~A^TZaKh?1Hkbq_HS?uH@(l3Hf$+{OJ)SJYH2yo zOrXF9Hww8FsE7Z;{O5bEUHqhK#l2#@z}mbv&8Q1w@dGQ%pNM#APh0@`{YYM`3w2?F z06ifp*g2{LzbkI|t zRuQIvm+WywtNkDdtS$NSQXG{xA$K=dT6A9k){A)2A1JhmJRzwi`Rk^)M>n=vA#{ry zypUi3MvPAHS6uB^zZKa>0N}|R_#TVw-TUH-3t$`r;4x7oC1>v&_;&0+R+*u_o@5Iw zt^KL0w=mUr^yf83J+;u)4Xw9vxK;q5Wu~?M%x3NZv)!uE0vJ}mo}9)DtI+_6VYl^B%>03>!#vXn{diW7Bty9Fqz1s9c-wUD%Ax zysIx1w^psAc>vJ3dADz3uWTt92lII`<HtE%?!{dqO>{k6Ku&J|Es91A8oQ_ zp$m$Z*+wn2qx?d9pjui2p=l4ozA6k*(shCI*hXn!`|WP`V^ zMxjql!;uE%)F63*e(I(JrT6m8w700~Kq=A-$TH{H#yoP{Ubd|Rr64#6Je9Mobv9Q( zWE&uR3uo6Exoi>Sf+kDK!z>IynAPJn=BMQXLr-fd0MRw_r61~NhZ9fDk6d`8UxP)G zG%q+H&FkwsZzQkun&P>n1P~?o;;|pxKG6w5DN)!%f3V5p*=>_NC;WQF4QnMD8vuAl zCa;u=rj+ZsySlm53gLzT39`+JfXx>nqoZ2O~W1?&L? zz^ge^#S^gqf6m2f8mj^LSPYl0f^jJeifWyslGhJF?2nxgp44E2O~|gXt__2Z2vx67 zG9^VFWo+`U6}c-20s*qr5;E0wsacWRsQ{bBo7XDpf~++F1S+LJ%Nzf|-(x&$_-tf) zD+o=IkltewWpN%kg<w%f7&{3W?r-8rnN()7l68T#%pD# z+M97yFhOt-*ze~9cG5xZ(E>vtJ%aGjwqvX`)#?cf1N>A}G-cqd9yEY(o)INOXUHm? zP{A??r*IZm%wj1STQoqt43`WOl;?|Vt^w1mx=KT}4viOg3p%-2vpfKJ`-tmjV%zNB z;f;WA9Cwa6)`5BUtf9UPm;OWwm<2vd9eLhhhV%u1p7JwNsdI8%Ih#FnjySiN(ZMi_ zkXrSduX&^4EDcuJ_^0z&5c7GFJ3ct;A=wgC-w3||=0pkp_Q=p8#uh`HxS_8|FMxnh zcMv=&T`G4vipmaxgTR|D*4qMDW4#3ewDiL%{%3Dr&CYHM79Bhi1i-qASA4+xM_#n! za;?$;K;z9{Uh+(-^}Y@In^r`?oajJ&b+}|c=c#lHy*s8xba{}k0JWzqGpy&l^#IU z5kAIaDouF2w@nHfSO7quQZ}v@`|_cuJg?n#^{j2Imi&dxFwr>Wwou=ayL>;}DpPfH zK}1aesugGj9fI2JqqEGSrr+XsrjcB14E5R z0f03M;NsSOcBHHdOc06DGXY@bm127dTcN1L8p$*c?FvU_atUE}#UE|wH4*>bP5ZoU5wUilGny=F0=NtQ8kry(Y4+5Ci}YL?e|3xt%Yiv>%D#1)~rJ ztvbqQUg^d#YJ8mx=wT}Ci=Ew188g9lUNzpp8D>ZM7e!thli77)ycv`LU?KZ;tqF1C zP9O3j{@JRhECmfi02G(Lge8?gK=Yq-Sj$xx2B1?|!~h`_F-RoDj*eWT0W?g;bwMgS zGtG0U*nUt_9WI^lm*kJ_`PQ{uiWd}m%GjA8;mnU+f89LpvL%7hmljy+GGnqQDSW8X zYH|U08k#KSl3y4cwx-YQ2Zsg^7PF$&x-54X0G1}ngS#wnc~D3QQHc}xeC!3j3RO>f zWxf;m#Ogg3BfTW}f;=}Sc`b5i=qnjl`3j=Oas#1Lf-TeqL??~YQ~=SVLg+l+bJOQy7I;~J8K;2_n?Go5vD zjT;sSkeveFzCF(NRl@*50AQMj>^)mH(REOoTzQ#oL*p~e-i<4L^eeAMxc$mc)~MAv zD@$WFXidg7f6C;(9pZ(~atfJ;U#8iZ>^@BDKlGXHM_6b5i!6+3aV_a0$c(hmPF zIfwu|(K7T#3m3o+0|0jL$=1KWO!T(V@1K%4asj?hyqIr~GSx@3&hNQCMgy%TRg^c% z3ikmZ=AdUU#9O!5J`e=9EFk;CBO+&qCrus|fWKk5_maC0(1M z)?15lVTjC*+g#fEzpIvt&IJz@0I1}V$L=Py3Qf4a-p)kpMtloSaIL{tYPI;!Y#pj= zkOadz@@{D8eNqY?b>A@56}fcFGavnQJSl;njdfef`@dhynw?N?eD*S zJ=-UC|E?Am(K4E%^t$FK;*USK-0kGDL_4b@!I?Ue1E>8xyuIo!bv=`Ps3CR+cJQs< zvVKRs-L+Y}|71-@1D%~&W*9<_>DVcU1sE3={>cuuQPO07y7Igm=;)CcGUAZ$M?`Gw zxM<#2-tK1?+c_!SlntN^KD=+VBLSC06|q4>_kZxBoqENtY=H)(#i zKuV0Dp=k%$$v71;K_P(d;ZH1`*G3tok|1VZU*;_+W@}^BE52x{s5f?yG{MD6>^a~* z(rzoaxk8|r0T>-ltk4UNE<)NanrE&Hpf~mvB>K=UZSnZs=MTxZo@c7vx17tjKVa%; zoV`XfnY@3Kt98EpVsz;3n9NzzKZVCi?T&-2#?{wHCF8oO?>UPNs)N)*hT^o5e&RPJ z?fR(#hMCPfR{rHPS9GPr4$m^t(5`=6d-ex6xDn7-s%5eS`BOso4Hqe)Ch`m9U%S=h zxOu&EdSze7gNZh{sf1wO2sr@kt#~DtR(kZ)4YtENflGhLfgmj?yIYvxdU?LLAOGkK zcMuG!^2c|mz9qIrp1`%hAn5GUuWjw+_6@EJz<sFWvf)xp0C62ZYea!^sEQ=O?ve^Ka5>7pSDkW{SvLnir2_GoK6nw_x<)e%q-90V@ek;N7T z8oMko2)a9TVPs(t6a=)oP~YtvU4c8(u^}5f(-Det<-g+=H*~b=A`wPLthh2VrtAK3 zUC_BOfezLnJ%F$kjh5VK&O{sS)usrd5OCN4 zEEtq--&$>zsQHi}P?=nDqvtOu2g?r1ZTq1n&$)fn_M~J3`H`oW*~qUe#TE!^OWPdt zOWW%kU$!8(PY|=rZFqvPN8&9yU%&;?)<_9dUhkUU8w5ZIL)$gBwx*VV@ABaH5I^n> zU;vT7`eoJUg%?F0aiD{5BR_aas@mg zy{D)*cKO*a5*|OE)9nuhU_UUiGY4miXNU|qX3CJXm1=twFhh6WR09nZ0QwHZocgb; zzJY#_J((phf&hq;gFtD~Gr!L3S~O!bPQgIX$Rj3DN`B{@AmRZR3>xRVY4;SVhXPDR z;=4CcgB5(fEim6g4+Q|MJvO0w9M9ZX|7B6@1{!U;i%u#^W3Mk_CLDRk#~recrb+~W zO0@nm^ysX}I=LZlC&0$D-?#O%EGY%-_acB45R(3Q_03Eu6&uun~njP7)}qi>Rz|%t~CucJ^-r8175N1pM7Z9eUhs@IuZb{%JZ%~Bjw@c zh*khalOD0DPOH`+IHXLK+`7H{tTJ_^ZGiw`&`DN5NmbZJN4IZa6@XTm>-v3rc*Z(w z#V(bu(s)W3BtLwm&QG7!T7gRiAW*SqO9XbZxI&m9jj`f0PEY_^T^0DSgALv;djtll z^&gkQ`p*5-mWWlrtN^sS`fK;6cAnyXY5)Rcmm;@!c4pRHVSq&dGVa^ytpLGb8y&3d znv=C~dpb3hdU2w&#o49swgd)G02vDTO1-ovaI~GJ@V!JF0PNY`fl{}!f0_zxjn^+? z|LSMSNN!Pqj;@tk7YV)q)UDVr|S1PFkKCwA~x>^9w+XfuNgz_uj-@>Qthi@$w}z*(@2-H_%ZvO%S#`~=8adgEq8 z-M(0z0R({csg(=UxK?ffmBVcPSF69z*0U{AxUOyibn_*Hj(GqStLyuHV0FP`)=|xp+qI`MXT2~NOau#sfUCNbM_OudvB4-9s^`AaXjRDz(F!|`oP%f-I=-`SJ${|4csL{O^N?teb0^B;R$ zkQD%DhWb=X<%ziIrs6d|z1TJREIvD|L=L?$QTWOF@vcs6#KCdvzX+(TJm_Okdec@f zbkhnNpdl>4f`h<&)l0bf)k=`SFvwqIyVuaU*TYpVKmgd3@5n;3dP7J>e>ULZiqmJt`d_g#rovz13;d(|P7svJR#c-WUF{X)x4>sKg1~ zHhB{wJzKqPS<+Mi0HkDwj((l<{e$(b6}wa@T5L;Xrp}SBhBZpvSO+R#sotp`abO8` zz^oR}xLT%<#23?{FBUktO)Sf)?KVQ{2v=ftuh#A8i)?&IxmKs5zVgcm` zzUG>}s3Qsy1#xS%Jn2Ok<>e>GJ@TtRtNmV{)^>cL>wQ5msA5Ty6V)&EooyF!bSeqJ zSH<=~k*pGQvssLdn7XeKAoxzC(PG*S&Q0vP4iE&M zx$*?>mSJc*{p&~8jFiF%L4pEy6y)phg%<-#Z<%40s&(c((I}KUQy$LMT0Ip#w%>|c zt-%5*F~)-OH!fQ-tIZJ<0%%#X=f~2Kqs@F_>mhjn$dKiLe{k&0E6%y!$`%0q<+%{f z%<`+h*Yuwj4cs8YSU^yiEq~v9mf4@VY*8-&Oo@&haq2By?wSkU3Lro*7f_8f(NiH? zE9;^yRJA zGps_D$}HiL06Wq+QOUWxTRZ=Nm`i7Q!WNMD*QW8_>O-z^H{H(DWB?!q5tyGhkIZ(i zrBlPKC4g4aGE#(z+r8H&DecFT5*2AGh+~`+{C$jbce+x!oJo#7HmT6M@{UvaUBhHw z{*xtFRvM5NYngs`qTS9@^Z39GU==`;FMxydd)Y{%TX+CEk~KsLZeZ8{N%5yT%k0KL z{X#AX4(UnDuItZrwP8wQv;|VRq_+0pvylY?5c|e`S%}lmw7BQiIFuj&lprQbNnz{t zwN@BvZvb%a8H(lHbLKana9vt-=>-n}!2hrYgJZ8ZYU6E4*$_9_zFo`TRmS{naoy@* zHTUi0KX*8_gMzJXlAYeiO$ok)%$JIX4{o$9X@@(@c76tO8z=_nt{yoYZ4ygHAO}kr zUa=Bv_rO|P%_@aU8I&cSVS^y?^o3<^r&(!qkUl^FFh*E5`(u4(^4_eLJzWbR80>9a zzdv@%=JB3R?wwm~sp&F50KbK`4(ZvthTyxqQ@K+~csp1Ng7NS2Cy~H1Kh(70R!e*f z1PIC{XxoWP*8J6c2ntb2@&O;`nruby0yuh_wRCAbDZIR{zbg#sx8EPUyOh<%zldzUkJ^RLnPo4=5CXC*}VbJ)u-a&mW(0KKoOp zVvdtmfU{s&&s_X1nWLrw7%ZIvHBhLvv8b0euJ6w1Mou(p#8v1<0+Atg7m7DF6TD6H2}nn2cTZ^lL;5! z1hS+bGH`-hJ6jNT8j_OW{mj;PStHvY&1|5An~YIEHF78nE#&y~{Jpn@ig3Q{Mt z*j4PrG}}KdVKA2CXzQ^ByAnOj`m|9tV?9~;{ctYcCDt4iI| zM1FGchgiXN#fe$}imW3GgpQEO33~FoAM6Or6*uiKWpqn_>i?gFW_F0F-U})$U8)qn z<8N>3lP9<9j8@c~GRLW@bL#(B6M1%Ssn2YxRPP0aO2(&bK|ba1)yO^t5QZQ?!|?QM+4Uyv9#$U zqpacbW<;cF@4s_Vcr5Sl3W#Ss7+Ykk z7h$n&=*Wb?4Q7@?$uK~E_-hM4_YZ6#rj$SdZ@>21c#oY|m+h^QFuk0;lwLc{@`e<8 zjZW{mIIQ^l@yTrGA_!EPZb<0?usk?Deg>u0Bcq(M$-J(bbZ76y$d)bZwCdigijqHv2)Gev5uy0 z43^M1=iVGO3uO(BTE4%x)V^I!q`%q2E*L-LCi|`Ta%sikwA2Ouw}SunD&w+4n*xAw z3tz|6^9mFnqel7T*7eS!3r90ER zQeq}MA%I5GDFke|Y=U%-FF=1rZ;ta4@1+t4BA+T8=>-sy1t&JSVn3bL*c=20fjyQ! zZ&RSUv;_u12{YT+YF=%QAOLXm82i?^O<=i@x&i=o902%SmVjO3m%8DVx&i==ht3-t zi^dRr`fWK~U9s_saAO<_oZ|SqUgL}@j#=Z>QGP!$PFMmgx|~$wKNk&AlE3;nWyg?s zdjOLTnu1_Tj4n~-KsGxIqbbk=0kVbcr=>F3c%~`vKzgYRAJ75`Nw-nB9SSmKal`V4Kc}3<;&0x^qLR`0VC0jfwO9LQQWyzP)>QRYqM55DS z8I%C-c0|mZwDnQz8k#==KzTwCL`%!wy}Y^YxEd)yNQaL|AOvMd%~pp@z@@I1vUaAk z7?EBO61&dPk8J;nwKW}ZyloVV(LNQM{)^O>U6mpL+-eK}&!TKuzer@U13-aXxOz1_ zr*)><>QP@s7CQj61k?w#go!y%yA(Kt0RWZ&spShxQ~n8me9M03$z8U}RRLUOn>aifnf_Li-06i;T~Uaw*r3k2gA z8rjEwX~VFZOm6{@9Xrq)xT9@k8*494M1WB6E0bj7*%*lh9O$9L9OymxbTao!PLbY% z0>=h+S8D64KSqu?1VK`mw}NXUuMXJdeD$Oqf6erRwuR}MRtG8|NBgWs665 z9uW$lV)unT{P;dM(vU5J04TCPn{NT1{4~PN2o`|g4giivLZXGqEP8RM8~muyC1IT` zT)H&wrF^Tryg%me4Axw+zG1Wm=w5Y}Kd@B_GG9cUW6}5k{)0sNw^rZmEmOWK- z)ECukKh);|;Iaq4dEv6h>pS}<4`4s65#}gf!1a0B6ews)&|&@dZ9iKxQBwy1g9kO0 zD1Wm^gZgc4O{v-HtZYnpK>`J>R|J^&%eHb}YB+s8+LM;VlhD^SIB`yhcw)XGAPC@q zJnWZ<+K(_fGw!jX*0PsCyr@x)qTWZ#@Rd1PIz^UTpJGY@^8&Qu`|=7cAW7Z~DUvN4 zih6f+CKJ>G0HWE03eA3FdS@%NS^xl~fb*`%*6;5Ya)Si@1ORk;($<@?kAHQ+J2F0V z!X~SI9dCXsEdwKW-+f=tJj_)lb#hy3OU(b_NE!$L|BgNSMZ()68)d6*%R@CC3j}Cm zmo`4=gC95B(X9%AAOM!WRni9}KKpoNR|bF*8*%&{Pmw6JKijm^3PCCK70uHyQATn6 zvSEE4H}FyO0Q40q>Ni?S)lFN__Cqy)R{{p9-285*|M}X3JBCE=huvcYQ=#vl?ouGK z1A_d!z*PnbNGT@Rp7bPXq^);X8c0D)fF<87TMn(!7QXKOah+nIc%t?lYq_tAe z)UbX*f0rfN)*>;i+CmPX0#Z-m-)(3;+i+y$A-x3#K|efP!L?*6^0>4dBh>gYJSg#+ zwx=h3Y^_)o`M$9)0r-JpbJQqTYV=4%OR!WkO|IB#_p*8uaG7(gvF@uLxmOzQl=BlP zH7Jrkzp41=k^6xUlL06x4=C9T*170ZSJYG{K>%>^9uab2r?i$e&G!Jn7XaY~_|6?K!-v-l8dDGCwIEjr0F?}baPkj9PdA_FMjG2E zI^39f^E?2A@WYvut`KNzU=1w&)orDJ1NznDWo;_2rAZ)56CHbpw9;;^rq6(D; z5Ic_hz1Z>klT+EgxU8W7O_az2)*!8d#bqmlj8V$Yf7WG60 zDcEdva&?01Km_2@f=H#)jCQkJjavW}X9vtXTeNWloCR=^phV_v{xK(uN*#1N4Y|Wa zz!LiKh5QAP1ph9+;m;H8`m2vso@(3zsd4Hg>xd3+7`5zCVnwGP@rQq}j(^q_08Io` z@b;_Y7RU0MhdG_&tP!faW|L};(z3G!7dz~;0PO<+rRDVm2_fG%=BKYh}5f5A@q+z%op=mt3vRb65RXQoioG$}y=B21@9pE^wh4l~i^Qoac^y8BTL+l!o3!o={`QCbeH^j_Zf4LMGs6jzg;_Va#TUbhc^{HOo zEJ3L=an`O}DgXh1a+ZLDR)4Zn2D`wil^kXRi_3%I zD?lHAR@JNFVOQgO?XjZO@h(A-7JdiNelgnNqX9OYs*hM8K-Z3r^(xaP$IHdce`tse z5cgBF`Vp+}#wA`DW7*USh}5`bf^TiP^SyaFXTHm2ah{~@6;j@UMNG`_YJ*X4Y_@g1 zIvOYe1VG}-4DkfKllhEQste$fJ&vCuVEy@BR;lXu6mz2-*<;c8`keP;b~H-nPWf+y z4O#*ACzRgY%8M!|F4ckk}tOk_sR>^v!o>YMEXmP*=?q#nj#Q?O%2lBLz&Y?Gulf%F6b7ma9-Y5%&4bq7 zRMY@~ooj1iV%d0Zw+CGRk$!v0wVO1?5iSU`2jm|?sh>RTPt&?jdrSD4kL3{!Qa7By>@Emd?A2SGSooYce#eQG1}pRf@~ zO^3jG@}-Oc`cd_6l5>aB{lJIB+I^rLhQOfKyGq5lGUuLUs|SdUQ}7_@asI+Ubf_tD0MTyuY6SGRs4< zJXUZ(nH{cV#eN+F$SbiRxoOLWRsXQ74jSIrU$Bp*Nf^LC?Xt$y_|sW#Q9lEqci3Xa zG)Ws@v`;%P;3O=nVhvg+NB|g|RjwnGejN$}rC*7wv&DFly!-tZ?niMjY8p0yV9$b5 zWO>)laBDgRwH1P<=;g1ziS>ANw@pV{AOeJSCs2_qW__OvEFrmG&`y||6<5_tQHacez^H9I`J zMvW_--Sbu0xREqOV@xcLdvTEGY%ktO>AsnoA1)<7#z=^H0KwTfPHOzuqt@A!e}aO5 z?Q?#&6|w?w`ZOzloUzK;`>KyQ1-uKO4(xHy1#dV<^11*kOzw7K+y`|)5jaz8H;Mslp4Wg(Z+ykf0wZo^#B8aAhCTnACKjRg8FTo6KN|& z)28l-k5rbw0Duq5&kbqeh1;5=hFKA7dp=7 zS~!6M*r~f9O)WG|`_jai&Og?)V^(G7yv!4_oWY4FZy!wK@!vMa*+HRi2LNx+QzU;p z8~^#)cI!a;_Cy&AQ1+rQzY3{7>3Pe$ng;+M$lE~y8ea2vD4lPryw8@EI{gX&8b6Sw zMSO-9V?5s5mHWU(4vkR(pMR6f%3oO`2!Mw(Z}a>b78^IOk)@)5 z=cOe(Z415oZX9PI_&&@IqB*Y(?A`u%o31sr)se;+V88%LMSk@~`%Tja-RMVOAdn#J zbY+cJ`N|^OdEJ=@P+H*=AehOltWNRcr|v#C-nCm_^y9=xFMuSWTv9(YZiOArXrvE< zgTS>n^V_~grdmPR7bEc$j{L&mXv3W6Ez24-ELBiMASA0-b3g9}4J%y;is{d0<~Pa} za;3}QF-gSQH$2P%Yu(~L@C-QRlsvXyYFf>tsz(VK5=2zuo&9&bv@zq9bA+;bD*$MW z4byCV^z$ihj$xttl86cX`D!9hY+yW0YBZX89MsPv~#XaQdRwf z4go}x-7L=nk>F|h8Hw_uM?bVP0Q!**UH~pu_5QhLosr$Vo7aoBf5LSiiRm7DSV)2R zkw!qZv`}O|LO;2<((Ti1cBHH$%}6f@sYAg#9w}-2s?Hk(2Z61}eq$A{k;?*upbzrw zvNoyFm!L4f|9Z36M;l$?&>jK6Rb?SSlrN0GCpqCk%?kiDp1CQlw=9M4ir!jO*G)Ad zVNdjj!i~S*mfhRX+91=lm`;BMu2ZEy^(!WcKx&>yp46ia-b%BY@0b9WmBx>YDi9Xn zF1>y0P|rTT;K`#MKEG&E9r2nw0&4`0gh5>tu|R;fcAXhVR_|t=U=3dr3PAw8Kk&U+0zQp@*QPA3w+Q&; z$89xO92aXm!v-KNj^Vth8bWt*-biCV0OchpVLSp5Js&ZKo?m)*cXuX7y5lJpV1V|X ziS-0=^7zu2Nz=ZH94kkMlYFK2-*}(w;=|LV3TxfQFiMzAjR)*zpeTPS?735WZO2vX z07NQO&TIN~{6aU2WW_dPQ!wcEbdSM!p87~ihMp9Cxa$j1>gyw$; zL}#B86n@H|#ER$JdsW$tL;u)Wnb2GbK+=_{4}}x~g;$mL=E93**x?RZpez8e3l*#} zeZqcNcogff$+D(Y0Lm!F1S*K%XFKQfYQNq0R(bP|;hm_Jy|dn7bfg4;-00yS!B)Ft zM>qYmF{9*1^EY{GuvjQOcKxo~7<}W+56e%A)=t|5?rsW24gh)!0IXn0R6Q}j$NL|7 zBP>9nF>kTMqB(D|yLlw19dN0(k?wKV!J2Ty59vYE{=j<)HdTb82B=tI5S0J*N39=+ zqJ{+p0gDQDvWg3tIRR)KcRH&#p@M0&)46iGVx?(dS$mAMW~P?E`WrJwk4a~vUuebx z6u1)*`x3Yg{%h?zuC%DQwO~aa^3RPv53G*xT>;*XPn`e;06S9nxzmz1&dqPyVSXEh zlTdgK!-N;}MP>&!gfxw}C$1dhpJQD2PGGMgt&~PL=HZIol;0nJT#PwcbDfPx$_l4s zVRV?1#lZcSF@f`o`DW+YPM7m7k`4l6U0S+xbYomm+!qE8s zzdw3A18^Bt^->SHWsJ0(O}U93lUk9TOr*p+>*`i6@I-1cRSB9Se|OY#`yem%sDN6kUHNLn{4Ylhn8JtWR&yN3S`@IEVH#5XkF~1e?I?k17>< z*czP68YwKC7ww0YCNCt})tk_8ixi*_g5+1^PhWoQ)#WyK zsd!79w{xpI^fBR&6t1)|?!?;x0898C?y9V5)O+RQxi&q8HbD>!*1mkNMjQ@?2Bp78 zJ7*$>%6v5bMIJP+*!XCTUmhIpnMsM3&KCEO1EFz)@PNE!+6Dfbk3QpUc-A*_xY+R3 z8u4HQ8}7W|#?k+66A9`8=8 zM}PRl^T-VH5-Im9$)kYpL@IbYE{p8=e3X}oK5Dzm8e}LigB5I_V67p4^;c}$*X?9| zUd_Imv>Ghu&=G_$Q&~YS`{KME?}YLlr~t$e1if%%9yer|O9cU%0Q4cvr3${u{JOA} z?SuMBI_bms@TwGcQ2z096|d9n2Dfp;DBlhM-aevzPu~mg%!88SZP zDeHfkH@l$|-Uhx=Iy_M{^gBTECy~yy>tY2PoRxoqf`GR!=e4e?KEeW}N>T%lf4J(r zv)Qfv=-ZD-XBl(B4$Fss>yCD%L#F}&efdT@l}moddV`KebenkU=V#k#zv|Hx!gzU; zjf_|dVbOJS>n%G-QWF7)REnoh8GpF`NG}9!&M?jcWDt(RrXDJbz#>49+L-v|z99ad zR=`Gh6~r;=2P2~W)F}JL8j+1~jR5d=EbCH<(M@(ne)|L|>1g5@4%5V|XPjy~9NKmR z-jO&F>}m@Yq_~jwbv@s4H30QT9_J*>ZI_+de?Z2fqzF=nm~fBumT;K~vVbFUcvhZtoeJR zWl57Lt+`vuPF@AEx$K)YejE^M)3owmIGOEi8~(a$->x?GX0ebiunUq}zchmoEH%8k2zza{w6G?>ynzv?S}0g%opNV8axk59QEb{_K~U@LWpHQv+)>c|cAAGG?=AhAkN zCI`+gmeP#&~(8oG?=qE@*T!c&g%oDaa z&}dKKCsIVyBSmWdc8{3f_PS|;qP9Q?0(-7${=MgAupo_R1hq{jYVLZzft?gp|0fWX z1{ay?XX6Lv7KxlM0XQN#698BNSu6Z{QP(pWFaV$c>~SbRo!RU9jHt$oFaUfhzeDWE zlY`{p3#|VX-twTGrKuimDNP^%xfVc&0}zexW&YmlJlLwdrK>fvZ66&DyjM1No{PWwGRjw zrVsvp+=YE(BBwn77+$gCkKy&_zf)OuH0J{VcD8Qq?2Gi%-f!5(s6{rWslkh6*T^0N<-h&JKmk1BR#YN8Mc(=X1T1k^}&avs^0dNBg4hJKu_{j#^8@5dTq$ z7q`#$wom+$x2PAh#F99&(}BTqNeyr?TCq(LX;M2WPfdrQ5Tzu)+Pm}V{>YsMfP=Po z-&h{^Vf}x-LFfB*+j{`Rng$DiK%sb}oW59Z&xx=D0v3SJa9}=RmV9eIyf~X1uqjpm z&=|L1Q)#!yH+Bt_8LFK8!r*|M$Wm(Q8xfZBzzzT=Zh4^;tGp|l4sb&$s|WygO99P1 zh*1PR#$jgX+koy&qv5rea zV=bK`DJSgU%`<0o_v38+Pn%jcG^nM{ZjDe!K8Nc%_N0856UpH1sC*bfe!b!B=GR=2 zN8XNX%UK)w)jt>Q*!YvKe^ZoeB?58@4bvoCLhIQ5IV*crSQZJSZs^ekiMESs+u*Dw zKEfyrj>Nt!d#;0}qB;N|*zwK32gVXYCc;jXr2fq0n(^{v*$>P4d= zK>)x{Nae_;#KtK+D<8ERKyCqpUVjEs(d64pRrUBxSY`1x&Cb~{n277PFyk9n+dI10*HTce#TP1HZm z%bOX=al#J=UJuQ0ZB0a_R9rj|02OUgVx{Ycyh)^E%L;knUt))zut@j4CY0oV2Bc}TWb#O@+LI^;Ws#VAyWUA|6AA|RT28Ym|*tJ&Z~@Vn9)WZ z)fp(A6ssV}_N&Cd?^rW(rHF%lv|mwvzaDQh$qGX!`aub{*W`ow{t#oTL{Wa62FZ8zc%Kaeiyk6Be z;8dJtPnAkaP$tX>x`HquZl;p6lbg9?Vl+U*AUFv8yKQx=C#?r8Fbwh&@1vuNS}#`7 z69mAIV+#A3E@kW)D-ajZQyK%Xa%WaQ3QfG|Tpyw%aZtdjEqtnyOi^! zPT92*P$Q-9Gkxi;Bw*&c$)vni^!Kw^OMp6hO7cff=gP#n)Am7u;Ba-Q0So6etMomG zC2v+>(G6=Vki8FN6~s#QB~=QDH)JO~ckr4Ri3;xHRObW)l? z08*3~QcH(!00ecTc$( z5SGmIpUo;&{E0>YrpWV+ggCHSL!M>wd(hJ7jYwhV3SIvSz90zxCe2X0&f)r(1qXrE zT7P1t>H@QgkTAJI=~~72Uf0LAe}(|{F9$N)UrdV34!!_jhrjL7+LIDu;?t|fSqeI7u^?>i*ptFAeX`-ZHtFfK zdTx0;6p4`!2F&r&DH<)4`p6z{ScPiF41$BeKBL}oBQTBD0z)93jOiIW)3raahd46D zBnRsnFN~|>>V;JJX+Pr!Kuiw*<(}eFp)y|#Pf25YIHlKM!-KB$$P)Cz;%i?_F)v@? ze76oqHb)-#17HW49}ND}8=$SP8QQp-LH@h91F_OWni&CFUo@mAikQAq@m1%}WL<|R zC@hpeaseM_qV}~A8FX)q?Ys*ZA+ioq*m>rERwvNvzdn5AV>N8Z*1wq}PZ*g!aZbrI`eE`@K!1i+FV z!ZvK+T&u0KH=uyVHL`E?_+OZGujb3+(#D&GuFw})F!TS{C&GhwcC@)i&BOvh&EB4P zV)8g!(rBd=tIE1Z*tf$q}m4njb~4v>NUQ!eo&2Vo%Xo_0u7*j^aYeK-^I?$ul_{xk@q`T zwlt+%AYO(uLz!C+_M2x}3mr*fsi6Rz8cyjupfN($p(`@ZyW5WG?W!;Khu>fIAShW5VZeN3vg)=ffuz&#Y#qStbk<>+`@AKVYZhF*ZmG}+5Uk=6=Gddr(qSgot06q!060Q;8{_M-_pZi!Vcd76@f`=z|@QaH0#QfHi zb+ZDfyeWI|(J$H@bi|Zj@}DC%mg`grfSu&wj6lmwYvcQ_C>+{G*nUmqC`%B;d^cC# z1ON(@NQxNo|@irCt&FVyQ#*4Cyc1 z0>c$IW~!*vTSw;lR#30>V%r~AdH^kzY7qkrP?JB2IIS5w&OVsA!Oc%#i~RzSZh_c9 zw@C3{=`_KWpc1a*WcDu;31;eeDk;KsKU5G zHXgcyct#rEkcWOI?&6OGo`3ZTn|ea0*U+TO3OV@L6*1J`M9F>ScTl$e)~?m!f~FLA ztDE2pg5clR{%NPlUGuWw5KvDb`24x|tuebXg+PGprRMz$oU0s9YK|0tmJ3jwaDcsqXF=|kR^kxMQ-oO~!NA3nlA^RcnA#m7d{^2E-st@d33tPl`m9w^ad z{`ud}$x96&Gw$%`ywa_hYo+E=sx4CE&<~Ru6!pko^V@3EH5-5+YSc;uti1PyrQ(Wu zlxjHd^1bj zzjq=k@y&e`y~?@XJE2>SWpPiFS*3?uFMYJAhAP}|!fJDOo6l^u>54p%(EI}bwR_GE zGZ$p1gY6*`lk#P@w&xlvPm#ezH9T@=TKAI{pzAd-TG-qKd6q~~1<68KNSU<1-2hx*$Rzm131F{jC?@FGa+@^5V@w;JJeX z{%;l;G%ply=}mw(-LxR4`MBY3rD#Xdl{Lj+c2=rUmtp`hg((NznQt zUnL*c@dCWfrp|nOtJ&D$X7-WN_zw|fb(s+bFn;zdtx!`jjE;mE5790ZV;G{vr z>o)7V69WJOkTJ(f?_feqL7Yw(SdT{ordJdru)&t$0VZaLxe#}}!oB1Z0)cqh;aXXI zQ0kO{O(ZsyvGl2(=Ti^RbIPHZpNcN?merN3T!7GzueQ|o-Qm#t&dE@^EDQZ$k)cX-NOH7t`6u6N^He)( zy*6~{Hbwr2@mheGxYIXx<|kaQ9VIQPT-;m93k6CqFX+04o%J~&HDHeibaZ3wkW}A& zy0puxMM4V%I)Xt#Wc_e%D4P|1AelW@AmU;Awh}m8&lZ-)@MTY zyf!-B4`Ll9?D5Tuu}|JGQJCl|C0ZRE$ldo!!}g(64MUtAut zCwqInS{}QF9;-gZ^)DNN3ABB)rCzO;@7oZkyYrxM4mEDB{LZ^Q5g)#M+a$1pW=-iE z0fnq0%DX)g-du8LLn{c~&Iby(y)JkUVCV%&3A_Vv%vWQqZ@KFV!509G{t^7gxgplS zLdUjKs(qv}*azGA$?^i8%_8QX|E}6>qg&p{F_aXZd?hz z0PNctm&Z0Ymnmh#OZ31W4{i^=p=HbDb~K+!7uj0BW?!{bCI^N#lN0ejgU?`=g)d&Td*_7nfWm0|YkncKgzw z$e&WiIhfo9GzkN6DH6}-erwr_t{`kcLiO{Jm=ctHDh!6$xfOHbSGg>E?#zS*gH5;! zfgR>NXA1zgtS1m4q2_~%zL3wI+p*;@K>x3E?0?!k(ta@HS_xhNiUn8Y_O_b-KBrL3 zM;VU0!h!u!XQRW0JZa1g?>u`1+*;4wRvATpH2_6$_1NU=_F_g#xe&uKMd(yE|KJ{@Fqb zAKlUYeY`gUA$#5yUuNdCCg!{>R!_ZeCL@%R_Z zN1cRIJvB%~K8;cBDE*9@HoEBfTmXW#PLr1Tj&!g1L_49Q+3lz_##Z^aghjQb+MX>T z6U-R6z}5_!-2i0jfW&xu!*{1jStV+JFlb3HRIpBhF(X)%KmP8$<-L!)ejx-rBecLU z$p8LhLdpWx0@RtB%UECgqs#ESANeJ+sh5^l zv~)~8-#7Lw{o1}=Edb>hJB{%!W7V^b#@O(q8$JQ}Fw7DPcmht}US%n`0G20mzhpcC zn@enVDKLY90fX~{{x zjvi}z%|;nD8FU`(JT*PeYrHP{`5I%UeI0qjH}3s37VPUJ{m_?eNY#+Usk@B*AN38g zV5+9JvDVH53WeTIld;PCy4XG|Qq3O(p$~Sc;`tK?tx+nVt+a&u0)R1j`%ce$+uOGO z>|9@^eEO^(hX=TSwH`-D0gv+U{k0?6;fE@&d zSJ#!0t-BqnFWkPz3#Ac*0{5ENdwgXrT<`_J@z>w6Z&&*nE)!tXFv>rA-A|METKiG{ z2M8|&2vC%a1DbACNr zEhzs0fSvCf=JxqtmUFnPWg6dM>1-EKUPwARJGp1eR$I8JSpX1f9OduRxHl(nWZv(J z>?0{_-Gfg>mJR^yY?1ZZ!e2qjNs2A{Z6yduzu9qrY@6$vv*}fpMo?H%KA`rV^>!17iWLAfex!d^-z1`HB(u}# zh_r+NC@J~X&pcgsJM$2_0}&uZ4Gei)uohl--}%`Vk~%v_Fj%ZqcbB)>Mh1&9ThqSn zido#jb5{V+IBS&~e(9a+Z)g2c^BfkFElaa!&GKg(7tan%hN2+?0zsf+hY!VOZL_AL zRWtyoqE`x!Dmjf+&AX+sb(GH45=aovP+=Nqo4T^4rs5_DqciLYB-rNg3$LZH)}WJx z77U%)!?^7We*E7`cg_gHpm5OFe)11=4**$TJ@j7Sj07uH0P&&*1NwVo6GZ+(d!1|S zUEO7s#yZT`^|k8mw=+k6`vYf6*thG7JI)K( zC?EtCYx(k5-;*ajP}p@wumj~#3h)8#_MYdk|pf#nrjJNqH+)lE%ol-2k*xLBw$biqdMkd+_W{m<2Op+j%+*rQs6lZUkCef4O ze)OIFMf~&|xoe@4NYyBC&m*M-pXeC|;B!^nH3J3Kn;E**Eu!@Tlt&&a&koVA{@li< zHFaBnRz^n#Jv1VjODh1P)^U#W7g{9RR%jOta8B3HDL$>3H0h8ycu%rN%<;rg-hj?eATx*f^zunjlcIfcz5& zTAR`W8vvMy4GwlQ#1HA>-MWP74Zx5gM){ROtH)lohN$U)g(i+T#e6nQr0D7IZRw}6 z_HD6REn0NB=KJhDZL(3nz^XcjhxR6(0zIa>dZ5(;K*fFDw7Xx8mb`k=8lO5+9RYkN zJtqhOfuo5JD+InQV%5-IBm{dJD*b_^AXXY+iV|vq2BpMGXFDW6ma1SrAz0&%c6|Z_8LG1j=56AfuD{%e^ z8{k|J@&-ZHruy`)Zu_FS1C%-mdteO!e2k2*J)Z89%pu$W@QYY`+uk#+oudHNsQ`ef z(5Vo5IGZqJPlB~x)d@jh3)^=H_;={Y$o2&QQ}dE0X}#q@j74@#&TXZo_5}d${h_o( zLwk^20wluqZ7;8^_=aj#Ps7w z^oLt^8cV+*If$C(zh=dCJBW78hCqOD@CQK|ilmTCcFTBLna0_xHZ3ziAlfH4rO)wSP&cpZmWOW_RR&36dKsmNp?Yzfn>uQ!`x7d zH={lVMT~{3X0<>qb&oCVX0w4#f&kbjOJvYDU7mBLX%&uf7fUQ;Hcmk-EcuaDxa%Su ztX0mu&0FHZX^Y?0dC#?Yt1~RbppT+6e_ea{?OxV!HM5~FTs6SaHXLx~FO}7@M(&u)E-FR^J| z2X5#`&%$z6hXhA{LHVEF>vDeTQnIXZvj`StczN{L z{UzPL$cueDgFa6DZ=N@O@>Zr^F-!lK-TIJ5(i$Q^`0KENJsT_VyFm=Zw`*t;b zn28rSV4DvcMpy<*n?tpwLp%2MLP^wPbJI=Bie5DhL4ZcFbF_ zai0BwyUrLXpO%IY08>2-lcVr|QaomzOs$z9W`KMb=Xt3f`@XIh&uX1bvo=9s&8{}Y zUQ4k3PzwNnY{?}Z9$Q#B{A$QP3sAEM0An(OAOQB|;Lt0Pos1xy9KrtBjP^m6#ddB? zQz3!do#dpcF#F{N);l$$5m;VWg)lG|!xAQ8M+TQot0z0&ymmCBzeqK7-}2=31kjW) zB@}-2(#Nj{?mPr5a0#-9by!ML{@I_K`D^_*ZoeV{DMPAg!ghfGxWNC0~W`~Gf#r0q}QkpB9suDNr|U(uJwjF z&n%Ai_QPh7|1R@tRprs`g?ItP&$_{u)SI81>bj1VBz1PXz_*^xa0Y0)yVGp|)ocMO z=fya|8a`{IS=Ajq*M>3O>k9x1z+(bJIStAj@Pb9YAm7I$?OtDQ4_oXDekb5iC`J?1V(4K2vSY>P9Y51E6ck6`oyUo@CRXE3J3C>@AnZ zHhLilF?y{Xl0JD4zzzja!tx-c_~+lJTs2rlFA%!{;J;e^{b`R4r|MfHb_H-)8q+#B zI6;4M&cA8<v}E9qQouKFk;MLJv_fJQ|(_)}_w=si%FX12K2I|1(ryg0I z(^ED2Y!p_YbsSU+w&YLZn{wP86u0<~ezxQHgGj0P{90ZtzzoLGqg!n7P;HYEsBGM_ z#j`1Iz%e>-Jra!&0Hzi=6wN$O?(vp_>H`4y2HCP-tX}E;vYY+D1`-)T=Q3#smVfrs z%BdOs>{b&Ur4Wc0#f-V??IXYpa>)U6+_b`K5&#?x1QwAtnc1NyX7=Yt&9NKkHC_XZ zEI|XsRd2MlcAw<2{^E+9!njmpqOYUJiZ^!SwG{?J5>!B-u;&52DcteS9bQ_kfIaM8 zA$zzkjkmF{KUv)?1;Tj`cl9U3b?>{kKyUZi@j_-Q%?mofB?Y7m;`+OYGCS6 zJi=Ep0tcuZkRd7hc2oW%USQp1aEWMp#+80t1&YBJ1i{0~7PDzZS7QK1fGb6d<9e*3;llb4c<%A}wb`+!zpNT(&g=?JhsH|Ir)$_+eEGF+t(AuY z2^v$G*oDYhn7_LRj+aG6=?-kDj`#sYma%a)pxa(QzhxUgyR zvKH1uL!*=};sDb=ao-Lt&y~mHKm4<; zP=gh};m0)@6aD_H7uQnX`Mr=4Y4vDOzzaIb8^GcsF_F~;LqdQhv&5`W|HYyP7>YbW zAYKNaA?UpyoLw-XY-T|K;7~aN`sI7iidw0BARg3Gmcgk^YqC|4%2rpCLU1A*&1Ky9mNu@r09pYy8L}TW=Q`(pDxi#nT3RpW+!)wrjjL*_ z3+?zX!qP$6E6?1Cj`KsOu4N0@4IbL@&jduaL=L__w(t7I6)(&LlDZK#(69pi4Di?W zx-MG;JQg+=03Mro##dnb-Kiss_9+2S7gl*amX&i^f(L@7XXHulH28nNtZJiU=o4>% zip$fwNGQKl7G48$+Wsu;o!het8*2`Iti=~Jk(W>qT-dJqTS1pi3L<~B_RB60HY+qN zvgFDLfEEBj&;nxCJ4Xzt$=pmva?fuJEC`dO4=)i9C9 zu2O71_qZzr+SYzE-Gq-(sh5FG9*=A)#f_NlKJMtJ-i=Hlr}UO0Mh!*^{n{*#oF@L0 zPIG=5)hmw%h}}9dGKD&l*Gb`UtqH!lkM6xXavydJODsU`)JxpafD6-9Hj25Il81h8 zr(R0;Op2UP|23h=T5#(OwIZ{1S;%qW1jkVDGq=NYF4-wE)%H}86j|y&t&4xA?U&vD zb|uAryePjQl2nt2M#zx*&)qxL*OdxEVSt~7#}3>dxgP*fAIS66__v?FV~b9uFiO}V z;GHoy;t2S6T#LwnQ&Qj%faxLvIxe5=cARED&``jp90D5lDj1o<35nLEfDIG`{Ms-n zGKC|C0!l#uFv`1h);V5CJKa{ygGOj41O`rM?^2-h&Wf4mG5(Ew$P(&{U8`LqBxsmu zt&4G4o8o4lcP^&Tu=9p|(AX$!BCy-a&Zp=ahu-8f+h#dAtvq8UTHoJC=w9XZp902eIc^K?kWv=T7yFpj} zcB=_m@|W^Uq+%fH$HH!3M8Y0xz2)mWu!%z8hhw{ILXm&HQq#UYG(87)h82@NHc~ya z4|X7s^11VFY9mYKq%{FnC&^ZI6{Fn^24rjdofdY!JT!y_TL7RBm@Q=EKi_pO<_it_ z(KtyIAthJXM56pXf$>9}4PR=#7bKU@2?GiaOYp8F!QPY}|2a1zxq!_A0!#SF}{aKsRo6*vnTcaooP$%t*T6vdz*e-e2^!?T5YSc41A4p>kSuFo6kgUOujLI zr?Phab-+p{-6(z<+uu9JR*if?V zwS%r?XvzeIM5z^WyBddFmIwd^{2l}ZY+sEH0GhNj&5^TPWRcRdxU?bX@YHy+`NI3> z;vrIq6CIus4kzd|594@fWLs-L$`V271GcdcaC%lh*Gj1eDlNr=OkQIIt8zI9x%>+^ zo=f6q!y-09L?zNRT0T&ct$(u^EMmM2qTDQQZI8TOoM=gQ<;D`{#pDu6T zu4c{X5Q)Mg1JhYhr~(5^00jYX`oVK9SP6v|un2%SB^`Ow{gBYMbn|RuW$B8(kG z%zA`0h7V9-h^H+5-!7TiDlC)-2mt@K@q;Uzt%0G&BjxR{iX)>j#yYuXEbx@HxnJM} z8%PC>(eVG{>nh-^s=oE5q=#;SVUR`|24)6^lvETI5haI|ln_KkK)O>xK|)fxq@+Uu z2?G$7R8c`fKt=e=Ti@CDJ7?{4F3;b)|9gkGzP;C8z2odNvec<~5aI~USLMgsQUT$p zFrjSW#dldh%4u=jx#ikt&1S~vFyW-VcjFfKX8-yZI?_*v{@ zc8kfS>#t-{gEt3b^t?HEQJLhns1UuL7d7km9l-KfwhyX1!OkLR9RQZ>IAP88iPL{t z_ud%Uf|$_@6HjOjj+|`KceYKFmAoR{!}&drS+l;VGteXXOX=Fi)Rt%+p`xaIl;yen z=Z>ka`LF0~9*qr)v2K$x2|GXQ=G12kuWZ*=XCiM;X`Ph^PJZ%`_niWRG_e^dh*^2y zEhAi3=n|FQ9;ncTK-^ru|C3RZZzzg#Usd0l&6!m+fItiXi+hZtK`{gzp$0lYzT>m3`CTm}5McwW0@Xm?mxLf7RtSdnPu zuBEJgDZ%C)hDHF0ap@REIsbvcySxNtHj zzn;2uU9(~=6s#~NMnyGtZren}eeq5vJw-B^55x%m7v)2Cw6hmHd_>RDjk5p*sr1R4 zEDo%|ck3sMv4a!%9v&8BScL8(WU7RHw*8Zsc?b^xagQqhj{G*?2&8BktFpkO&Cqo<$G%Prpe$C;;>~x(_HqzV76&x z*(sgy;Z2K%Byw7G{Yo)i-I)tjH@M_By}k3PbL= zbf5FTkz=2<{S?|n>mdBDcEPw}#WOiq6fL|GuL+H9SCgtDl9}#mIa(8&FgHqCg@RCT zp>@cdN-B~kzZRj1Tm%^6kW2i0nshp2nAXR|n5U{wsn&T0t4i0A!Mp?jBm!$>1_4XV zATx6=)OKSkqWLn~f#Dvo6vm_TyPrOw3ryq8Ack~i$%n~U8`^UYxc@q6ia4n45OMI!|j_9xoDNy2M10vHkjk9rj?w zFG3)uDIm9!jfkeuv5=|N3D8nmRN_h7{m}X)`5)dTb$i&(1l%QsAUfu|2({t@0dO`v zdDQi4dlnutw``3WXImv&2C*CyaV&CulLF4`MA35bRegfu199gtF{)6$VDbKEr|p;s z9|iHlWM1$G-;*jAcKA+v&w81Okv9R*=rrFF zS*K_*8spL+0C0kafY&Wl%s)RvE@EH9U~zf(xNqA7ydivvpLI=ed?+uiA< zpxtW_Si?Ix!5Wg;`iXgM)~Go8?X+35;z8WM_Ndq|+U>OCC5dUu4PI~Plqr~0HC+3= z&QYF}u;xUwz=|B+G7GbKZHM)iCll+zdvE#B$sgZ1(_JK=TgSSO&%}BFSU{tuWC6WA zYcktHX-9}TSOSJ*V0er>Gj<--^7rhBL8@-szv4+eC!4i&VV>>)EB}*~lw0z7)T%_A zo>lea&|IwvV3d5o64r`4=DFl}+0TU&wX)309EfYG*dq?_9b4_x#cM#d09NRatIs6?KCu*CS7uz`6%{X&^WcmLoieNDWg|QgA zyW|}$fAhQ;2Af^VLu41k{;%W%DIv;T-|)NB)5c#O(`O1ikf^b z@4u>_7BZzefUATpdfT?$HQjmEt=(_i(xQ1UlOC9sAYN8h#nyDwan&;o{h}Uyg;m)c z5!TPZQg2zfB}>o)b6NGy*=$=PO8`(8dfGQ}gSFt`86WxodGZ{0le^2#@9pp+Wv3HU z@$wqHx*hMl!-h)^F&9t7-kZHsYe&E?5 zCA4C_sIGej2!dg6Z~u8z+niY^WN(a&xMhQD5!sW?(SgETg#-Y?5CG4}2kM|?p*LDa zxgj6x&17>v6<}5g=d3)TE%)|!7P_x4Cn;|_YBrMP!-+dJ1sR&H@O9nAZA6@ z)~+b&u;whu*0A1+YHC^ZbU{9j_Wzvj+!_J_e3ST*9RxuDV#EUE#X`xvUbFySe|x2_ zn7x<=AR6g&Bg%OY0W5XgmECp?rfDveqP*rpX@L$mYy}Dj4ohhD!!<|a5X+*UjINsX z^H+4MCi#q&aHQ=BWfJYEQn7FB2m>|%pcrGaB)W?+b0*CR<`Vrr@FgGYcLoTf+tK?e zTa4ft#NZi^$Xtu>?-*Q~-+Sp+4bO<|J%#XT`36AbT%C37H~GKNat;^kVE~A4FCQLH z;t6N0mz9_b2d%e|ky0^&aUTdTGy%i>$sgI*r-#28nEi6|pr zCidRc4+t~h@<2OS1S=)xLTPy zA(LJpFqHrRFtR;i`Qu?v8d|M^z9*8&4y|(V-gyr3{kBoDw{xcpnlW0R6r*=;LhjDZ z(6bZt-jK)6P|*Q<(6RBAZHKkbnplq>E(-q-Wf>(>k}JK}cWh7S9Vx;7VR#3`X-ddH zqJA1Ee?uqel@Beq+w|27f>Afrq?SRMet@*qRkGTMPWz+gGvN)hX$lw0qP(TUrH z7W6=3Y296xh(4YnsBsW4l2MZ#_%qpge_d(2byzF_l|<<5K^KZ$??jl^0H68Px2dUXA@d*;fHada(h?fOco@{~mi|W@q^CfF z0NC4QmK$GdZ+y(wILw2+fEcf?K(q5Yx|bnI;4C`HxfD(t>0_%wiT53zxj^A3LfGKvSQl z%xBm@P{=N5S}?>)Gs(87kd9dg1 zsr!wy2M(voTuAm4;cMN6lk-|S9{+G6m^uJh4x=ND z|EH)8ApeoPuFQiH!4v>i#>t1gYh{i3z;~D&t)G*10(x8PpI>u$M>#a}qHkk`#AF36 zlkaJ*BAoMEDm;)4>BtpfyILdcLBhzU#K@+<{9xmC9QoZ^ z!l2ia7co-q&8im=%!F>503${1>kks_xP$@MRe@Moa$R!!SnFyy6U3entHfB!$_MQ9 zbhlVNmYU|RqJx;3{`!F!pZw=a>{{t3bY?Y6695$xDkU*@b>WA}tMph*0000>!UyD& zMF#hRe4CzzByxGU%G-7A5?e4KKM){jpP=Kttb_5!%ryuA#3us&JlagxA|?nB0OIt0 zd$=1JKMnTHL!lQCQ;7&KOubc#K50h`5_4%4uRP~A=DLdYgNBHfp}bx4p>!CCqxM@5 zQF?sS`0(;)5Mzq-<=K0-dm>k(^%7`V_!=$W_T6fpnKbAv#o=l{xf)xO7cEFUqHz*Q2 zkzJj4=6>Auj5bCiwHY!iBwPCFl9fxc*gAm%&qzikvHa=!#pbcAY+{J`6QP6`GS7jX z3=+-p4XdpeyUw}TV&3_adJN`nn@C_kFzRGl?ZO@qNwQl$6HXc3<)7Rc!HKN>v~wBX zM~@oF-dMMPI%uF?l`{zkAPPh#jqa?VLTHO^{tyI+5#cY&2d&G0?yR8JvFkxkBml%K zi;Z>;U!f)pqy)4+NlXUcWJgEIqJ55N{g~dZ^91b%#3ePS zgXB`_o&v?}Uymm}fDCL_v~VqLTuU8|mJ;@j($ z7#o@{g9N{0AGC|lohJFC&ppNp6`ca50TcL^n^$aph1C#<8;TvE+@Y;&6X@Kuou1^G z7zq%Gadd%6{N_tbZ4-cjfw;GHMF8%oCE(j%=V&u9$^n1{6wJ5t(38$nUvY~+*QJ^{ z2L@vKzfkm~+SNb^|6EeOvUUn{%K0^kbG?Kxoyv}Spd0?4rB_N!1_221JzCc0sVMo= zEe4MiTWm`QA|)tZ3S7?=LhgFyk*3xHp%E!T7|Z15{i-2HVJz*YoU@e%BkL~PFLo&|8UNDY~={Ch}dis5_qogW5 z`W@5GW8x2p+481mt~vbU=*u_xBOHAJF=mC-g>>L9CciM~xK0$N8UXS&KuG*cl zE($mG4v3+s)p>Le-bCW%gZ;HXn27PcSRqUVH>JNPK=cHAN}X8CNqp1dk_GQd0O;57 zTP6wMIQBibphJw&@=G%P<)HOLU0GTb(~-|;`F-)}NJ?w`p>?T(DUzy7osWC*&NDGLpE6?W!~bs?uw7>H|$vbgk?q3~zU(i=3qdCWvR z2OugC09ID^DHYd#)nwmn)%(l zqjg}s32fjA0kE-ROuq!OF=(u{jpwyIQR>aGMBD+6s@^p+&r8EC>j5TfJuNaZ4=^AZ z^Rz?8)kn4YmUo;2JcEV2>AE`n;;G~XIa}+qkEYIFFJeGkK`@F`vKRm6f!3r6MzbWS zQhfTolC9tUP}{qS03c2$yf6Y_2aZchZx#5*HY}-uLJQ@yGRm-%Sw;*~J};WZQcYN_ z?u=sih%a)hokVl;?NJT*!R>D)(?&{B4lh(ZZ~STUJp;up{vK!_sA%FT0%jz53ws%vR;1WJPdfXNe3J?5@ffw5u& zK)kf;GjSxYQfig1Lp@@e4ps*^;a^a6R?wNya)#uFZ=B3$%O9->>4}@i_Zs1Wwx&y( z%=t>#sR`0R>&1kcfLvWabB~-QW_v-WCsP>$@V3;R7$}Iz&h>%~?SWGEZKNBtenHlw z0J2!B@}`!(r(uEsxPJ4d%Tk+6XLK(fO8|g4X?f{tWT{+h-^&@r3Y-Chuxys{4)1y2 z?pd{X>05fa-&}&dJ(DbLfa(Xq5?Cmhuj_BKQrgiHf5qYh-n^=R~q4l{);pF z+tvzu+9>}sRKC4(GvsE{RmXhisK5#UY#pzqhgh*-y>&`atrHU&K@7(s06RkEZhz}c zeCoZ}$_b@1$Hpz~<>h0{gCGo6PCmE?q}ML-9qc6knIsip@iZ(Q_jF>5tUuVIBw(Fl zNwQLn_+B44OAaSOnH&eQSkfS7C-?-j(~ljO*+Gm_N|aC!mMZ3|nvkz>Vdp4+$uH08 zyk}Aw1`NWu8$GHO+Ec(;+X_5F2lrecngu&3#JOSsR#?41m2#0C06?rkln?>)?=IHt z82JOhXotsi8SQ?Zy3sZ^v_3=l!Z$T6KiyT2Dbv>JWNB<401$i2%ia`yWs}o7;u&)$ z0KC&tP`NKF6c;o&5GP3UOvR86Q*p=fzvv3g3>JV$w%=fXl;*vBH1alx<^P-kL%Y;P zPx&_^T2B`TTIJQD(%h*0s0RGt3CmvAi%gZHK>+X>`OKHFC;{EF0PfR#Hz}*VngDkF zK=wvZvC27gj525c0oo>DKG^ZI{3ejA;~hU)AGtRT^n+3@j4=5tAUdN7>HF+5bn=`~A^W#Fz?mrnh*4j?E=asQdbUW9ED@M5$p62Ym6rY&sX3(t-dGW6PKqJN+tR~q2n%YB{z-+R;YvfEzBY^B738%*0jwd=7l2CNh0}vvRXb}tD7}>v<#k4 zj#v^8LOk)kr$rlmBFGHzLzy;`1-LGA_UdiEd$my+fEca5cWz7Ev0^)%!L9qWwGIkK zDK%sn2(HQuDk0xJ_OvhU5zViOQ2-2(F8&Mi4OS*ydfZvZzH=#WFp2;`S>wIhJoOM$ zFpbutNs1uGAQ{1HcK+1OqPsUnco3HW4EDL7&0G#IMA)%?g&wR?42T)fwsrn7fz#qk zcZNk~1&3H8$$ZW92=A6a>x`|hrLW>Hbew*vkli{g5X4L*h4vP86M6HGeT4{#@5>Ji zQsiA@-6(k&QTBv?Y?DH#C{Kjg(46K0+~d|Wc3b!8c~apHC>}uM4rtFWM+7|wd^6MI zZ5zz=V{ZBms)Fy$B0GvNcj1!ntiwwu@cLLY93_*9w&OZdl* z9kx1~2^j1vE#~RM!z`DB7?wCfcu$aTqgk)KEZeiXPCG`k8srD`J`$xXEhAC_{KOYK z{G%P)5N}cZmwUNGyx9!7T>1H4Q8xbw7h^;+_@*fJC5I!_gSXSB2$pOFfVgt{N-lAQqu&R;4a5|2lMQ9V)0LzuDY|d7 zqZ@SsYh~=jDkm*=)wcH{w@&kplGnSCxI?~?wobq+SV7BpdKxUT7x)EJQJ&#X=>eNf z9zPI`-Tm^A8w{S#(@3X&4|Guobx%6!)p+ME4Kk?-JrNYvg&PbGq_B>enH$>yz~pF- zgq{!Nvr&xiL-`&m&d&x|&n<61JcC+m@(eXn1Ag#73vy()z#xd!yB|1gVgWrN_Y76{ z>Ic0ru8&@z@(h(AKcMQ+kS^D3KwnX~AMpJvbA!=_;{oyV8;hM|H+bs$yNR3Z{6}ML zB!plIfMT)ci9bZl|J@y7D_7JJsv~7RUEzr>nOyVfnzY4koy1JVTUV5HQ*pV(GIroY z*E1!w(9Y_}Z?G30uxr_?Yh>07p+*mWAV65cqdTlFKQky+4FUiK7Xf9LKCs!tSO@@d z((7M1#3()6d=Rp|6cG}{5NT^sS`D>BU%y5#XJO&5iLdF&lkpo3G6N4K5>S8aQXTzG zFrO8c7>IGF5cvj3#!<6SPwFK$EVXXR_l1 zIBZg{iJ4eHVot??*5?TE5AuTmEI~5de7`lP4y9&64FCje07l9Ot?9a?cjgkdTe25| z0KirQBYlllR#Y@1WiKGsE7IAgMR;o{h{^x+?VfWUT!Ihx8PG47aCV5`J=qU&lm+5; zwNlwWERBZd#+b=z>L{;rkbia;bW*O^rYELmZ{mPN3C#b&`@DLM+%uXzj-AqmW(Epk z)+Az;ZcQ?$t#v`3N6aI0ACx*3$0KtIGoyk&iY>X)}(@MHpQPg%@IN!`DY z7k5}zKlyN+_E*CS0T?7!|4BUNNIjbssQR77wBF$aq0QZZ00Kt8fE5svZ(MgszK5=RLbq&W4&oUice0{`QpO7Rv=^Be2>^&$_6)C3KmND& zA2>nv&jza-yalwjN-OABWk1Soew7vll&v?<+sAR~1a|^#jqE2Aw+DN1L|Mx&{HD-)Zu2M}+7` z0EqR`p$eg@K?Q=C{G(+`Y1_qBb|{1nKny8Oh<2Uc-PRm3_(_|0mKp1HJ*vifkMns6Y3nM(S2V$DBUH~8UW%;0jK+NSISx9w`4&gx6 z^|ldKqCkuR_6)P~e3pW4ay~!LdU>faE&>|Jq#~>&SLUe>Ck8c20EoButl_kd+efdI zc+!>%6a?Z%@=cjzC5Vq$eYo6ID1M+Hw4&)Xy{=(ms|NW2-_I_p3-9oowq$I`3y2zcL};^orU=rr z-jI9!;Fi28_0FW3x1q;K4Vd0N@Z+5p=#Ci*?C(!bX1~y^@Ha8lS(HZ zV^+F1KVad5Hab|F>VNY_lRu@XX5cp&#imy0F?G+V{<4D(JxhN#Zdq zd0RVG8jaLdvBwesATBihw0n&C`1t=tW(lld(TCwwv$QJDCOaR(J-`w{WQj#r#Y!ja zkfZ_3=h%oOAltePHd}~c>;bKR(>9$m$-|q22i({kj5Hu-4n%fkz1?{Bdv*>aE4-=+ zt*1M^$jKcDO@oJ*(Bd@d7_EED!J$Mh2hZJ?A+ltik&xtR*PHXaJ;7R<^jsJZvz8QI zI0o1e$B_N6vD&mflR#+d95xA5nG8?e{u!Wc$TMpID1RBW8(vR`)yPJtdFd$b;3WyiM;*sot(}F#o+I(JF-nF0dXR7OcN>fmv4Z;Kg;S7tLN&Nqu)ok7l#^7YRDXhF0G{@^7_wN5wcVTMay@0o$o7RIzf` z0=0`ZKbmpkw)2_|6KesutpFG(0dKDV+y;Pe0M<$KU4E#M!K} z+B3G*8*ABF3jEKD35D=hR`RdeNm1uxJM@E{mLeV!=UiFL@mVCz?xXVAZiv=FJoOQ+ zKenlx%??|q&0oAREsi!naKG;XdJumkypt8a1q`#`f<@5P%PlKV&7rt+b z^N=0+CwGRDW2+@TqZj}>36)X1cg^%yZL^a_y@dWA?ijsv?6YPQT4K3ZQSdN2|il1SpB6E^7?u18EZWYQg8T1l$X{p*kI zNXG$xEG?f9%>i^#KJ113|Jx(CE@sU}3s}-XKWN##R(hw*WP5;WOAlmE`)tGGskF8| zDe;kf%oaKDW`nG^TALFQXx(Asxwqm#h$mCB_h_M=#Ykwe3|LvGyFEK$i|-x+nDYW@ z^+oxXgAq>aC}~P9o#pJKHz*VzR2BhXWlouG2_$}@c_BSO!wQHIsX>fWurBe2*Rw3*Ib1NG_Lj z2{*-AB#w{0f4w+Hrzvx$72`wi{ssVsK@vRSP+dJw4PVO}0UYkt1rFL#@yvb3kr|>PI;c=mn=FL8cLoax} zVb-+PD}Ftr#Y2i9#=){D?w@jU-lr#~+G&hqxG045dHLy@)5;^(tF1iy!=>tUIIPLu zs9)3Rq1VhPT?v?3A_ffr*ui~tByN1cx=hKWGZ3Ft?7&!Q-Mg2T*7?sACjejp1!LhD z7`KpNV=Il*gEoPVpwwZ-VM~FEd-L#I?L#J05x^`fow?fzAH+A(J$OIcT(Idv8gF@`BsgZ*M#sLrjA-Ou3y-ZJ)*X~7h=4u|qo&IR!h!v*=FPH9TCnPae zhZuyba@BEKU6-p`)%*h%>&n3dfqf!JiV|^&PE>ta1D$cr(ie!aCWEYnlVAku+;U~k z-+Hjdjvfj?d!Bwdc-86kG+V}w2w*FJnMOLR%%0nmC8`G6%9Je(bTo8d#vk_pxrIN5o+_XUR-%NhR; z&!m;<5u?~a%aiu@cTQ9x=B_V&N3&ugJ6hKF>S^0bo${rie*=Jl_LL8L5P(~=H@+}c zn~K*10Ia=u-y|Z)uicN>0C*mIK>d3Np7KVmh+&4-1mJ? z1+!&J2bIAmf6j7dXEXZvjxms!6Rfoze|4AfK3VrgWHuUyc}C>s!{H~+udq#lEq@y( zMpezrHAeUG*$s*LKs6qh=Z(kH^A!xTaX|DR$$VSPpJUrP!uvw`pRV$KTOu{hSpIbD z_4tDAf-9l`p@+M28w$;U9(5vr8J%^ElMn!6Bo7e7qegAEo)j@g2I6t*{$A}Q7xG(A zikKM~06e|`x%2qKs06EY^H^c%kTZ(z)U!<0AwlOx%e2D(rQGjWAq?x%i+^fg^;&*M zw1q*+e~G+|_4#g5k%_5MY^YMB_fkZ7m*0{YFWl)P7ZLBZT@+Rh*g$5XV)lgIv(*p7 z0x_kb*H;^+weB1>0|YVM46oi{&bsv=f}BB2XFw95GhFy5pRN>5%S&Z|lruEQm~#2- z5M72D;sMz_o^z)e=5B2SZmPoovq-8aCEt(+j>V(EgXL{L_^d4rVb>vsw;z`erJ}8` zLsTuD@hUo#y=B7ta`~W_@1&c9(rt{CDGVEEfMsQ&i+OSc7BnB#fUzSF{MCRnIV~^< zB7yzDS;@QSvw#?@ALs`iE|yZ?>uFM{2KfQE8y3;UxdEh>Y8-Jtk~C8fcwU#x25?P6 z3Wyn@wfNI)oo(w33MK&T=ra$2Q#u$lh+$_xi+*Uy$YHePXNl%oFff4|gc)5vLJdbeQ>*q3Bn#xNZnz|d`XTFef!48wB4AEE)BRZJs6feMQwk& zx2|wKmS_e@OE3cjhsmErc`M z5YtYg`<-= zVbQW>jwxU#^vMaDrVZK@0caf$uabDn)kTpd^_38k6}}3u@$DzH zJ(;a!JfaMi#>)raU~9if?y&rU2H;F>hOIVNmW9UH#eBtd0dWLGOITF|p z{PGv8JTQ9l0}V)~Twzw{cZtzOugMV_BW=pVuG}%kd zZmXTxmFNCu9RuuM0P+KVIAU#8*#Nr3mq#-=dnuUPe>rxVb_bg+obe_Iie<@`bC31@ zC*z%vmKT3RiHyJbzv&mWIS@0Op4eE)nJ`6MJ%Cg|JV$=8WJ3(T_|{BELO)MzA54-2 zKstyjBp%l?!qgqarNXku+63nfb2@&aC1Vmhh^gI5A2xG>L$LU=B zke1sBAEU!P;40(x9bYz;%s19037!}!bC$`F%$rN{+G|4?9D4XjKD)y`X&d5Ypqqzg zutN~yuOEoU&>KPPpPHtZAUr!_Zva3K1l;X3G?)_5%lAUa)<^G*ca%0YDwQo-YWb5G zPrN+Mk1D=)^Nn^?m|hxs1r=S8L*dDTce9}GqC_mxaN3Zm@P5u8r=4LzPI&? z6mQS~um`*!hCO6^y|W&N2k55&(t`s)Nq6w5wf15InA3F;@Y)7z>&$ac_`;*!|Jip( zNv#WS-~i>5^ag!Y*fqjkS?loa)nIiGNdbWUHV$5Xx<$Z{n$|@KX8WI@of$n5ix?t7@;JvH>h@@P= zzxUtN8OiLIP*TN(7&?g!0}-5QlqGKTwzW@R!B_}HZ}OiD`stt4S^#F3Pxpp6b~J1{ z^0Rv9Gbx-s#Zo&a=;&fw0eS-vz2Q0{f-YTds-zD$P$B1f*LPmOZ@rYsOG>Z=90lkZ9!uROt6k9Y z7p$v$ZMy>q!H}sNcE^eE)iUR`5X{@oC_MntD_BGX<(QuSWXhw301yC2%k*+W6)Yju zRqNn^J*J<9xI;QmKkVhhe;3*{vW^D;p_en`hlTAesmkw}a_PFu?j^GX5JnvcfKjLP zJ4ufo%c*cL{T{S)t-AU9EB~Kf!~$d}4r_=Dyg+FDwt`yBwx^~MiQN+RSkDOFt!J{V z9IKC5npqz8^LDr=?ATIj*#@1kBak?z>kg3Et@b0GvE+SXNY!DjpVQ^7XPotg9co@X z+l?6qw6whX9%&Fk<9`CIpT-CPV&*h={o=WLw(99d1HqmK{XM=z`0RUp`ACaYTZLJ$BJYp{E2rJcj{CmloRk~;}*OEaGXtjKDP9`E_RW&Q-#2$#z>WdwR$Ab{k zDA(Sq-HkNd5{GVBZ8x4cod^|fjT>E(Lov@M&fK92B0W=Y2PGg zUfZ<#Y`YqTGyq^!z*`m=73%gJ6`2((1}|c#%MEz>)8K3dEsqY{hZs@~F8QTglsQP; zLls`whh}XXy<(k~v+)`bLn6gw0AvSwjqI$rU)+v07$`vyqkdTb=QZyK#Ry`39kgT` z_wt0RO(qA$2mo0baXZP4`wjL?wFe9391_W3L8xA|r&*ns|M>AaJ&Q3DEP&X<#GJ=m z8~E2(<<8GTMB-uq{pyKP&%3Ys4M|tug=fdO^v6_!arkBB5DYWQSXe zb>uZmmH_aOxDY4ukofI)I@o-}d_n9SdI;MMr1Em9HO^DoJ*zCX>j)dN|e;HY`2>g}h zLvb?rpK3PFmJDUjOfl&3Va^5s7ST_?6yaK^r6O}087z`UcCulFWfl-qgq%+!m|m_~ z&d%0g1H_a_j}B>FKkYJUNzepV#+VhWA_D9vC85#ikVKrD#Ekvuu);b^n}cu~ zVg^qDi1pdSnWGm3#R_6d3bw`4;CAOOcBnyXAVzw^&iDW1^O<-h{vB({%*$VQnyC-K zdjr=%KPYbL`rsr;_XdETo9$nJLhHpFIJ4)b`K_Joi38!EJvY}55^yxMep0>x;LUUw zGn`vuy_Jt@UGmgkoz3wzM;u&fkWWB?R1YE^3fY=$*D@EI2N$u^yGEZ1!tK5pH6WlTMlw0uP}CJj=!aUaD!QJ}Nd zxT!k;U36Q5>xL+9z=dSBet z@y8g`?zEmUy}Ed)d#BQsA1~Xjg5Ly*)U>>7TRwM*vplggNW4Cqx7L8caqpzZTi*l+ z2VyD(Vxu7i-kS_I&KB~B^=ae45hF+f#E`@@%ifP)F}R2$iHW5;1SPR5#%oox5O~B^ z%s5nCnrXxp)gjLuT7OgnG;6YcKm9zNKupSw1oi`Wb!etjuGx?91O1>3 zZGY8))~v2;kRMR`(-*bZc>wI%00=Un2}Nx5{D?*TwOUCf&UrZsdgY3*5?unv~k`k!agg*TCs zs_gyZ!(iYAaiknjYD90l#^7M}n+wFQ+;Zp64>6HtUs-&@3&0^a0PpGhnw>P*12!j0 z$$&9fy|G&9-BytSErpN(%vKmpwv=mP%O3%vofH^k2UlV+A2e^`TW^6YgE%VM%vdN= z?Txojozk_DS&Ih<#2AlJSjd&qiQ3z2v9cEc7R%c(rbZbMqBymDqthilCkmII;a&hj zFB)*|=ZAXzC0uZX0U+)_C*H|zd7l^(`!K#v&@3R3IHHJ zvAd>AJnz*Rky&BUQLkAoXa0;iXw4nInv_aHiX9|>{1?uk(uwzi(C!y?X!Mjs5Lklk zFgIVTVJ*me{4IsT0MNmzY1f@PSQ-8a0P(1N=HO_=0*Wlb$edm8u-!vKtcyOpx?Lwqk0pZ4 z7`!Ru#^^&qlK@LJWvs@s^@vqhdgUYsp5N#=2@a#37$1D*!r3-XPYaT13S z?(_KNK~DoQA{@lJI)=OtaWB8`bgrDPg*@pHgkE&X|MKN~K~G~ZAjX@>8Al6u`Y%{- zgP4)-tIf~4lg*Sd5w7EImp>HRDFC#LaQ@x(p3Y&1iplc^wYo+I*iE#>lnVc4N*#Z9 zlwL+R<;*4_ULz+XVBY9KAC(++>9)>WW*+&yP?A_$cgz3LpKY+cOjr(q7_FwdS~|Y- z#&4ZOF=urX?Ym}f^Q^23k!RcjPM)V1^}TEWmI&f!g=a=)@XW}3dHE3Sis3bP0g&hC zQY1J$4|}10?AI|hH7mw!(K;YLOP0Ll=*yJ@W59qxOg1oJ zvazvlCEHg)+(_acOLzT5M~$`}Z7+g!*2c)NByo`yoefjA9-z~wF@v83gePhsd%TI` zT!GV1(AF50Bz>Ro;2|AYjMt+5H@{YD|a;LL?G_3%-lNtmpX&?3r~@y1O&FQ8qOKU zH?w^&Y=KRobt+Jfq=n~Smn+vgUO2e_1mcDAVF1wUyuW|*mClMDDzyNgH_S6{V5 z3l(-=Dl4+1Ew=on0(R>u!@T3}3%rGi+wQO>-huJs{Z!g4Ozy%M2!ez(V0xM>+AK`O zBfw7_yV82mk6E7vF*cgNlmT%Z=z-?YvBWEyB{K&jh=4w$)3||b;@UB`;Zah0JG;q* za?W-(o)fr}+qz5A(*q+%p0Z2b!#OF(SmzDAG2n$2h^0sc2@B}URz(Ai76E>NYgKh#Mpx_6=sybWm_+l z2*9&39zdJPZ~Ls1JZ3B_QyMeBDd<;ZBF&yOaKIDK>)E%dfC2nP29HE@NA~(L9!QSK zW8SW$Z*_Es?u}%reOIGVtV3lH*dN{*WQnY*;hnjSTESb1@dwEdpHGTtHMj{5(xw#ekjDq ze?#SD;U7}w;ospSlPVW>%p~9FxAf(YCg}Nre$d`))+-H-)-?zKI2C)@v^s*;2>>x3 z8Ygj;xmK_(!h`-l6GY{JskI%9cu z1rdKQ@rrp7tZ__l_3x)+mMt}a{CY`O!*|ABmTKIw;Mg+sltTuH)8aMdx4(fhx8Kxv z`Ix)CIWB(#e(>6S6LqSvRiMFsV4>@u*iloffIxt>!t>wwTxS7WH~;~F>%}O|r{^}a zRiKR)u?>JUX9~s<@MQ_#Hcu{_%p6n?f_RgBJT+0!`3ds-jgW9Ivq0PoPmj;nV*cx+S z=i~D=$de|70~Xl}0bi%76O1bC1;ovJ)p2|!uj~(ZNj}k5ECL*eF(F_9fLHKxQS8K^ z`L=Rl2?U_^96Q#>gBX6^q3t5u#@IT{o^wU$gEQ-2mL}+`+xQ7u$FX$`I6PQ4FeLT1 zUg_-t;3ItMOMbc$eQ=H+gUJy+(5ZO&7IH?3t4)HFOAyn?->H|~Nnap-=gIuGC@C45 z{09p&B&m{IJc%az2U_>wZ(j{B&B0)#)kjU@n--(~RdUQNC zGY4<5-u_`WL@vwdC_XvO>8Kw(m#j3wRuEY5-RJC{RCx6>>y79p2=9}Uo1)V@5P=)f zP;ai;6L`>&1r!_5DDxD=IFd3 zj|CLF3jqC~Wy445q-l&$_vQzr+Bi*z9aFe$5W!HAdeLQ9%h9%uz*2t6;g#k4f+&n2 z`O`J?Y#Hp6AE&=DWn5raLT#I{$?ydF;d@}3<5;oBQ! z4CsL@!M9mU{kLtk?!^rHj2xvSvEbbetoR&@g4GU)xg*_rLppa$K3D#{wuD3|p`WE$ zwv3CO$;JyG_|~vU+*m-63}nw|_=Z(`A?S5z8HD9Wz7uzTXwi5$k{m45&TqW#KM@JN z4(}LcgnnvQZcS_)3B-*5cxsI)>g1bU>{1T=f|!Ggx?j~18=U`8*B^pn12L024ve!R zerD3V$ZRlR;rK0c^vva_Y#B?Vp~SGNGlV6AyhS+|OX?8}v;;tW-l~04m37qz1p_UJ zsqXpjf9u})*nQA7n-xd|#2h3_P0rJ%rmSR3gnVO=ZN$*Q3i#$gi{A_B6l9cx)+v>r zC+BsgQe$)9pa?-sV?xU`rZoef3G!V#y{Adx!xi6)MHU2Gt|i;lNX+0_T+2NR*Y@Cc z+e{%55YtAqANC&6E!c8DS^Fb#mA*Y(Z+XynoGm`IyjsLYVob59@}w7^vWXE#K)g=A zzmSzhg0!8yc_F=yg(gxpmenj0b3TbGH*hQf>}-nhh%rScJF8lzvE>cbcM^Hy`+1RJ zSoJj;d^5v|gFQPQ&?{IbLIL32U^B$M!KQwxPjomlb^>DZEuDl{sV`UF+T?v(=E#Pd zh3{CgmDfc=I13jQZLjodDYcnfCAZ2;RiYtU{Ys6C@;6PH0$8x5r9O*d@{$Ho00i`{ z^pPz9Nb0UAP7;TEt`BVSJj%y8PU|#dB=)J&2O=3;51gk)>kp;%hav=1%)>=0&(j__V45HsFf ztvbFj5kgDejBtS0-zxMjL+exzq9#<2zQCI;JaY>k^?9x zW9$%TmXtq!j;&GH4FJ34Gh0v`u>7+t_hv7&)+?T7KEF(qgkA`kwD+!~S=9MG|G1^Y zw=pyVSmz7Yt@Ee$ucQ6J0~Av|XkVUx-g=PHRDLTt zyonqj9wHyKjGH&OYtx{54!dROz#*21!IXsXPJ24Hz}iRgM2o3xI^hdFVBP-9$L=_f z8twecy0^=C8G7JeN_4^5&WQ_n*}?P$w5C1Y>5_BXt#Rs{(ApnjcWz%}6O;Ew!Uh%f zytH(PrF|~<$GG3 zN&)~L8i-KDwd(*poW|9IR+IoD-6&L|tAP zd9a@f0PJ8omHW3%&VwthT9>qK1_T)F=_nJ2u)1Fz}@RO9sye`GIImg9@#@ zqSqX}v9LD)P=K(PxbhKh14l1B!Te^J|Shqt=J#@Jt|8#%^?0HZX=Qr4QSsj&R}V zgC%_TCixOj!h`tqwg@+yfgP+}c?0%XX`ZLHZrvNOeq{kSg3-h9MJcpM%?cWN03cB! z1w;&`0hF(BVJA0?cu-7B$?gRp0I-otK%4AqbxH5JCwc+#y3`F5a7O@G>TuyJ&61~s zT|)S*#6@OLZFmRY85*2aVjPfC4tHVLlhp0lK6d3xTLNH;e885jQLpCm9V|scWDol4 z0=`8LWBKjZ0gvtlAoTKInPOqzzFfKA(23e&&9)zVL2Sw#9ut7t)El+Qp><-;3}_$# zaorX=mj~ma{RcVTv|}s{k#=?UEfZgN9co-H)r@z77ZRd%tY?)eBs!5~ZCDDqi``W( zzpbkQFU}I=2aHI3MK9-iIfAQZxRs5|&}W9!w)v+5p%;3d{B(VL&b~%kw4T+%uNjyj zQqH!ACHve4P~!j~IMWc3MH$dO8$Uto!7SB6QUIk95Lv@(92s^>|F=UA+y-Tm8k!ju z>~SS|{OXaqLi36(^mI#(>Cr@ZPuk))-p~L~ya0fBOSRK+Aco~uJiEvCLJ(jalSB&X z<@b2;bDD}a#No$3)YCH05cNI&h$bBT(5t=|!O{>}Ts7PHt#f+>3dS7^Z|DH$1qbK? z{t+i14xBpK@zD;g6VDI{0^p5w#hqOX41R3cijVH4pAf$m?gdj!_A=>k(MR_J5PHGs zHUfH|e_z{|rw`iI{|?P{T93O|zUrsls@NN%GgGna9I_;INvJd^NP$#%DYUH*C_PurD@KPS7hw(8cvD_gjOqQ7h4Zund4M%S%qk6a2TQu24qHzxc+%-2)`!-e z$Ia7ccBGR&(+Dj}Pf<68GR#UMrStCNlXS>83wn?atP{jXGkqFI;=HN;(Jh--2Z9&{ zdZJK&B;T*fhrR$$<3!_Ljr5UcCjcK6`|xxz#5Id0Ypq9Qykdn@f_it~cUGx-PWd+W zxxe3t9Ag_w54FOHUVbKWv!Ow5>k=kUQUGA^GsfJBC-I{68T8;iVm=6nGfZ4CcyhaM zi3qJhQYYmb8ZIHfOUpVh{vA@HrqA79ug{No6^;h_L2Y{G(V^0_CxQTg^Rt)j!-r|D z+W_i8&r9ofYNZEn1E}pGC(|TA+sN0Ms-3iZV3-6;U}wy{8*zLJ^0$Y3?9js0^_37_ zln30RS;3B5b|r@P8t+R7(hR7xLUx{&baB zF5R)#!=-#IcXp=qjRTqn0Q{dExVq}f*56e_PK&rRv{rax#zZZ_T6JXI z`$6vlac^lA1E-etfS)3s<^IKge z7-s=7S@}D9xU*e==vJuFCfokOGl=nwA_2m?yGDQK%0HTSlfVIB@surNGpEu*WT^3) z?|~f19K_%`=DV)dlBP6vN}D3*t7tY%@{TFwY#u7 zS@%d9o&kWo!HT|OF{;{vp!h&cX?XL@q$*cG8?E^^vIa5ZBnobBC!Jf|F4*!bQJ$aT zZ5Vu~-o*i}>_I|wAO^oXJCBO%d-#ty$T*_8ZhwT=j7zcHHYAAb4Vl|#k!CqSZK@l# zSdaCa=QIF#T(k%Z)Q?HiPBCZe(69H==d^J_- zYTv9_S`D*|fQd*285$sjkXV2D)RGTgm|`Ct@FMi|Mwj#h1y!Pj)@guZPLr#uv%ujv z{o@}7eFD9)x{A*JV>MG}RtGi4g?- z%=zm*XEOppxJUWjwh%~MSqMRV_sjYT{obzRyl&!^)7BmDCiXo1FHKftAmg(}?%=1AUD_+=A4Hi9cu*ds#jbdx-X_vzvvL7l0SZ8z80-n z!38m<^6v?CXO+Xb6c33l@9ukV7PX!fW@&4(@8Wmw9Ph;3x)t+9c2x!eKD~x>%}>0T z%U(O8E;2~VSU)NwtYI855muDVM*Frg37R5gn*^lv;g-;S4nA)ykYnJY6E@zt=yYPa z?@kSRUk~AhOTLJJT=H#`e2um#&j@ju6xqR(YxM8*e_3ZAy^zCI9vN_rF|x`7`Cs4n zYGlP7l>uKC-p~Wr?B%CB=xrZo*MZqf0~%<=>w(^`nbJ-J64#tal1_ezg*Yj?n~0Bs zfNm&=pW3h1DcbBy!^SYvdQn)V+2b-%=8rkQOwnd<=F$X#y&>I(Ib|P`XP)#Ct~Lbm zMfpTBmm9GSA_oWnI0l$I$IyAskHIPkJ#-NPTzNzetk^Bl-sS<{03nPbRcBPr1&PrT zen}jq#qA|e0QIi22IXCMN!y#JSb)}wm>+~a6QFzbRy%odP^g}MFxZPO1Q|>40IjxH z)IMWsca90fgHp|jW9u8=Yi;{IeFhqb_5sjuyjfDiiu7LVG?D%3KXcam5W5y#h;VEf ztTYU_ECa31<-6&x{A#m8U0^{9tXz=P0Cg15Hn9)%f`dc-SLJsC-N1{rbs#V%K>&!c*iYh@6NcMbh8RK2cng!Dmt`6A zv0j|=T1I9?%VpBEaOPM0Kd3d>wd3{$}`TxtKA?2Nivfyp#3HuN%U{>w@#o66Q zFKb?SSBusp902HTSY$&$hSBA!;j0uRsXDEL_j47OReSlxba4^qP0&Gg`5%}Ci2pb^ zHLmTQBTi*dVt0fC#USn#CLS?5O#+FNZM&y~uvzZ_F+)5aE#g6y3b}^bW=u8^Kf%VF z(WBj#8%BSn9mH#yc9XYT8^>-CclJCLXBQ}tGuVLLlnnEox>BkHmT*13TNsR)1b~&l zw>ER?J>;^coqT)hY<;8<7M6qo00LBvn4*pd=Y4)eXBlJ0XdM6$<76F)Qy;Z9R6Jre z`E#u>XPULz!98M@Z8+`C>CCdwW41Su@2Sz2`?=L{?QNrj)(5^(h=6ZA3BSAEFegua zc+QX=_$~8Gk$AWs-tpMB-U6*%;~+a?Jk8?eNtF5avA*|? zW91~7G?_tuz@zGUE_@GD* zl0@Z#i)>DcWc@u&-`2op4Fr+Eeqh%TH*`cXg75?Vpi8N&bps;^4e|pP-F#KMwATyA zH6)`MlU^r`Yky8l&(y2vg&_38ml7ZwRcrTWup%G;#83CW5MI~6T=|(jf7yBNfWFhxN&MUFWbOOc&wUJ#o{>)OXVKWVLHdaM8d;y=cgb;1!O z^X{|X*;*BaI;=qMNnu9<2(m{Ag59j1k=dS2fdDKKgwqu4O|v%P=S4aVm<4GKL_??! zIMe+n$HAbM2>|iGJMKF-(PJ!S7k?cT>p>wRE8M0+eOEPVg*|ZS;18i>l9^Lxo5KbM zENAYuDI4n?C^K8w4_lX?Ze|_y^~ahOV?O{u!z|w*Qfhf;j*P*95`clq;+k`q6uh6T zYQ6p0Xc)wtoulmM?7YJ8l$sS&9e_Byw3;NJ`O-YbfnK1j{FnASwbRr6%Id`s6NCIf z0}8pIvcG<+&y0BkXKw&t;Ou4PghASt44{VWf)5PmL$byEH|X#KT`+opDKaJ&Ul<3A zubx?#=&)!2pGkTi8V-%&F}TIo=uy>emS7q?1rVwA0;{5I(*W@#!FRe^PvpEg`UiZ8iF9*$n&QvnDU@ z%q`3PSX{GW%1{t9!R`F4oBI&Qf0d4FVk1TnACwPG7Yq87`x`x{>jY=K2!L$qJphvg z?B>_U?gYIE0JdJ>)>L;&Om85qfSnBclZY6oEw?g$#4g1xx|J7gaRl78G(<(t#^BYjAV`U~I20ZCDNVgPT-; zeYjRSj0tsc1-I8_=$@?ojvFzc_fk*5=sz%ROILQ{>k$?bLAV?tSx@?f;bR^@YazN z)kqle?Mo$virU1=0SlsGFMXv&XS@l-Fkde1U>z~#bB{aX+dJXBjsiy31b`LX&_&|T zALQ4?s7D+xgdo=2#8aM~X*-8#I)s*CR3OGW5cX}Ln7a$R>XyxNCWt}!`i*Df!2(LF zCFLvYRt*a`L=>opK^%qSyAKnqV-2Xtor!jGSntU5B$Ui5*1S5n^!qKeotrrz*cmQ^2JhIJ zZqz!XV~zVdYz>A95I3;4g1qXe@j5G)daZLF1>RXom3jtd;n(oG z%+}VaCn16W&|AMRbSS7z!dNKAKyl`pnb8p^u4;JW$FsqL4aBs4-22Zm_Se_v+RCD_ zaqX&nhJDTMlbr!e~n%pbiy?e7{p%79^b7`-m&?H zG(e12w@gkOk5=)t?N=XsV5=VkJg5e!y+7jY1#n43+>xZ1&>d%mGJ$Ha{21fKc|V5`KKJ z)_LA?Z6@o&5c4=sO`+BqkMCDNTEDuemsY=t=Ku_skJ6|s%Exz2*Ea3}kY2bq0m(4M z+$vc+I8gM!d{kq?T4!4dr(4EmEu+~nN5w#lDx;+co*TaCfrlJZFBz}B$b@JO3X9VP z{GMxp_9PRc2>>xxe%Sgi*|OU~NSr7H;+i5;SY|2tepdeGLxqG7hH`ldOD6EzM zw7#tKsPN;_NmZVy)4-M-iJ6>BY@F%ba0C;tJz%&Uuwb!hd9!>gLv$VJnIT0qz#FW7 zJQ~FXgFvX`FwMJ(Md*R8x2ku-Nj-SiMW3?wgVRwEGZx`Y7L*0v3#`~}50t#?;y?7~ zba(4;MT_E^6|*9T)&W={A2dM!(9YC-!8RRF&GM-RLI)LdRdsvX-`pxtJ%>V16Xe6e zqZdl*_UT31WzFj=*~?xjg~1+xkE;z=f*#!Kz*^*mY&C_DZuCseybN z9Uz_`NU9JQ+4nI%u!>&VJ(1pBa;n?!3oSv<_W=NLj*6ol;=$?r#Qxs8hpkvzFbj|e zDgJX`E0wr@qaC|w1&CREs0iz_d;%#=+45S#;--dJ(^HADL;Cbxd$kg1vwkCqkGvHpKh(B47?6hTOeX zN3SAia;SRb0aH=^$J}w^6K2?Ri*K-vjk4!Jr^F0(ug1&#ObJ`|B&HeTg*U9DZ(bZ? z+dOOqd{2@QJ|ok@NO9?(mdWk1o*=wshS4G{PB+YKyi`luznKf5Cz>=CgAgL=7-L`=?MMW1@8gCmw;G(#m(YJy-!TmDKXLb55*55}En=d$#()N>Py`zIm)3 zt>Xq2NaX68u^LbzT1r$0kR;zbMNu&06T(wZ`Nr)?;laE1zkc{weU89{dGr{m0YCVu z-*@W=md&FNk-%Y~>lYsDwNT!-f)~U+hbF z?CeTOek($tQg!Be`&=?@h^CZ4>*Lk3gI)@+_|#Ax`Ak^{0DNPieAWn0>`9x?`&rZL zIkU-e0E&G&ie`BM5NpAMxASQBJc$AHs|?QT$%`hdXQ$VOYR<^9Cjts?$>gqJ7HDr> z)nYdL2v`&zTUeQHasOlCuC`u;&apwTwoHjz{&fBR>yO)M>DlASl1-0ihzrWpJ+I!w z^Xv^h4G?QbEaS`!>oGHuk~?lvd|g3@MX3d_WL{A|rflNa2$Cyt-EEhjemZLVmLAtQ zk%B)6!h^@=9->PNdt3lf?81p#l{P$GRj-eEmW^>i+<9`nQ0<+l)Xrn1N5@2%^kN)+ zC9;4RkK`BX*VY;M&4ikE)aMxHi(VQDF>MX5KwF#f(=c1i^qnWvmZSEamX$keWtxBp zmLdhj7v^TRa|>ISV;(L5QJ)d?h4#LK=QkY=fC!DEqK zc(ed$9)tQ7jBnrZWoK*S-_a$sEt!%DECB%XxEMV=j>LsZWz{BbN+uAGOfP4IWYH?p z@wvQ)cD+m)2;$n(8^!$gfA!)s{QZg}=4ZDq)PC-X z833@Dl>Xy567O$3Ui*h3PA9>LyD`u>cVjAjvr0#LvuF!qw3?=0%ec{_|8iLPEcP*N z=4PGe2azSj$znl%y3gRH{@p4?OmrvUJ)u-4?w*^d({Y`)CzC@6qTKI2bIr*ij`w9v zud7m%NC{9qxZ62dbA7JIVcZn})GXKJJDYsY$!`b%lH&U{TmE_6o@I(Dg#eVrNQW46 zCqD4@``ic@GlE!^go!K(7ftmY%|h28#tzM2Qe(kgpOT;uW~s)NSATYNlDxr@7v|*R!IoGZdc4+Yxf#!VIF(+aHP7Ec0046ug&y^Ny`%eV(RHuqNCZ)tJjYWa!MAjvS}!Hhag!A^B;C1B4ciLn;mH;sP zo2Rl+djB%Mx9uxrsfZ9mTJ(8no<-T!Dl@g&n9>_!rJ3MbKbpyraaZjgMC^_Zz{;w_ zZK^(h>ufB7THv%Cx<{F3v*FDEX6Ndu#c5JA0I9>8jl_HH7FOsqyaQB9dIL+it_f8% zq|^PMr)=IK9T1~sJXOXgVOdFI90k@M3o1;5&% z_^!a*6M`9T*oDcJci!*pLsLo9l%q_m|d-Kqlh=fI@`qAf%I>bt|iCc09l(0VtN- z@Ud)ybu`lhfVii83`^d+N8fo7jx&HIw$4|HV}Z9`_t|zq!U01;^rnuJO1azCQ*L~1 z^N$R}rSBqPc3Md6r)9#}xQ+7Kule-)ttlTOfjK4u>oxmcn})F`KM)`+?GuzOYezk? zHMzhK5@ou(SnEHYtH)+?0Rd>e<-LNAiDT=o-~-(11cNtI7X& zL9Zuzk|ZeHi#thKUu>dXxX7?v;edE-(IwR&2n4qukCfLwZ{AaVJH zYBwVKpW`aq#2_GX5i#ej5)7UR1LezI(eK~+h&?HU=|=+Imw!hog*82&@T>M}^XjGn7!6~T*0ibW^%=dqceFwac<@^6JviDwbtjuI|&T)og zZ%IT-8QB$yqeNw7?-7Y?*(*{a85xmKwg$dPDk`It(eHXc_viiG*Zq7x{;$8+_vswI z*ZaP&``Y(-?kDZi@R)pVCpa^1^3;chw{KHxK$%u*+^3ILC z-t_d-@B3=!GCSFkz-CMqn7QU_I+~ib#P_6^*F+x-_UMVF(s50x?>>(RXU7 z)y}bbdbQPrW(n%1G&xh&t2hTl%UrRzv0$-|`likW0BrP<^;s%VOJ;1kwc*i3gD887 zGI`oU-HS;T1b}#7jR~RZt#j-jIdi&2C42(J<>V*W0)W!-iu=N)wJ43;0btowenDNo z*6Nf$@NrFqOc2BPPD`y7X@&L8R-<%)HibPvB*r0fzRf(M(|Na=lh_v3C$#kk-tig_ z_Ryf&+g$^%uz?*AW1yG;a10X7{Th92-H+V0PDn_D(2EBARO65~Wg~wAKrGtz<=?aO zrtpIJYcaObq2f}g{fke3Z8ai1Piz&wX>3`Fr}YmuUp}2lTc=5kAbv^)z+3@CW3KqC zOm#g_qgend2oK;}KKzitZHa-~in)A4Dj?QpkF*&VOW#5($~ZUxko}2J4>;_}dBv?R z&b{2Gj35BPN}o8>t6qDC&UeG3bmFmwo(MF0uv5_FQJY++;dlrFV12W>{@Xeu4)1aW z0K+4DAjZ)TjOBwVt>f-K_oeG)B<2PbA{#fLK3e;p+cH^!OFk)&;eALluaB5KXL-26 zffWEij2Re-AE;PR`>(N15OZnl=$Hq+lMqP5Q%X*DZ3wM_82c8OLcoqzgo+esn^TF& z1Geg-*hIP@5RIX3B4|p>=2{2VMA#buh(!dPDVkIJg9RXtZk7iC%vG5TtMpo_F3az;wbHDFN()&} zc?i;`eP==|Jzx_W!4jiI?yTP?@tWi_zZY~_g3+Cl>Ypv^_de36WOg-8VunOmC}%HW z2Q`EPuVvWK8TDGE4gm2r>+5A!vtkN%0J6nLl)t^WAkS{Mav@6qK%AIRac#NnBIoNC zCR!XUA(vW7!BI;*2!kFOZGcWb`=O^U7|otV5ExY6m>o^rv4FKh(i=r9fAve7uru)> z{z;_tfGm2LmZNIUef2?attR`EC*0r#=La!bt|&+Vv`MU=(I(ua2>|g+T@Lv{D|>VY zSIbz&I4pdF5HE8fwVEZoEjmh=g6SJIK%MY1M|aS~RlH+3pNmbDkybm)lTo_)K)S#f zQshBz+BD|BTvcC$8WW8g^?nTm!2`FQ(3?(XX&B&VrB}MDwCCr!M;~@RKW*|H094+4 zD^~d1)}3mPaGeOIUQ8%Ik^SKdQbrSmK*kE}(KjE|tJUUM(Rm>TK>io?oCJk+_wkdK zzxUM>5HlWvj|mt8fCY1%XG^m)+8E7vmIx860<4R(1RWZ;$Q=*t3&a_f0JLrj)_hxs z9NRhv{$ul(JZT|cbRF?xc%DP+bXol|^%=d&xyA_5f*8Tz-*mR_KvlrHW8R_)+LIE+?Gcz4*n8@|aHyeHK`UzUDE%Awp`my6LP~W--A2Rq{lHxH=V`V~ z6`(;uK=4eBapg&`JPk+8LWs)ld1Znhuaa^6Zw0hSJvEEszu(f8PiE1K)!AYOq^3<0nUj7lv z#6b}w2s@TN4Jw4k-TO5V1b3Og)7>?MfdcHC&b2)LH0R}4%DcV}w*@h*fXV+()L`EW zpYHpjt0T5fv-!8qSbv)Ne$K$<@{kx>2hYtbkBz^#ASEQRL@ipA*0za}(OpGp{(jfF z*5|_OkL^P24^SOqyV}ON|H_0J5aSrl4dH|0yS1&6cUI!mUzc@-Y*-;6NL)W(D=iK4 zVI2@te80&+aY&?$JOB@`nK6Mq-JANYR@D8$4AO%4H^(#Ha_%xQ2aqE5j9$~G9_saq z$e5Vpv^IHj`C||W(E0PP`Jl72v*_4sR#Y?yfRdYP+HYWgkvBZ>5dh+WxmS2*(rNJY zxF)X^a6>B01jHbWeJx9fjn1)KrjF5sMmMd5h`xJ zck7l-z5p?83LhEe40!X2iEf}~%g{P_9$RI$Ke%~!oNYL>YK4|TIK2Gl@hA2cl_l*6 zw{oJ@eL}@nze#h?lP|Pbsl$eF`GS~*74F{R9O&$K)wOq-U4zCVUz9w9LU9PE+u0MM z9&4tTo>=bIOyD~b82_$;-IwjuYm}yd4*~&t`sgbm(RPk)`%089vrSe4h)UD%VJxY1 z!5tSQ24X60RQ-4S68p@8#cre{F{k<{-Z|A@H{lJpWe&Qu^nehF^O|Hy{_3APZh!TA zo%76=?p@)BEJdlQX4n^Pz!He5L{yVhV%RlLAjbWrY`IuWZBJ=c-z)@qZYqn>dV0w5_lzU0|IEOo@sAG)Gs>zLY;cl}YI8><5! zP~|(&O83L^(@l#DdC^IuUnqmI|ot!fm1p^ z8{-2z02tz^nk0T>#0))2GBaQhgYOIy`4I7NjCz`Ewnj>`xn?%d8%O3-Am5g-mdiJm zF*y&rZwUiGBE*q&kfrh@ZG>hV@q%CwPS`Zb-(?Q_1`t|qAmt?e8Env>pD9&An}%6( zNe~?RZ3*wL`iA%M=I{`YmMPNn8Dsp~bi^x_-MGY-X$E>q z{Bw(uZioc&8flqq=l~XG2Hv1T(V~QanuYX$f7c=Y!;3Lm{w8@u36PlvUyEeL^1@G# zg|h_W0n#d3UV5Rnw`~hCK3L|F@WFzZ{8w3JJ`RjSbT3cL6P`Rk%(R3hN2aA(Ya%2M z5TkPM9byHd{>aj(p+G%)NE)%zYyB&2?2IZLX`%uG_^Wh9w>?AsbuL zEPhAp0ANW7{<`7^=S#JwoFpJfT&`0pZRh54CJ=)V%X4fstVl)IsdBq_kwWb>+o)QV zwL_TrU%aqHG_jL<%E+Qr4*TiC1L1`dK-8!Z`!!r*-bLY#0b)7^c959e^FLT9T#O*r z?+NLZ&LNGmyZl2UJ45z@o$UJoFa2Ca&nnEi#U@$58z5VMkeZtP`G;c19$lyBFQ!6F zBjV-2`;N}wi57MrcDa{GGwN7KX%HtKv#uIp0$NU*WUGSn>xWfKrns&LUU$iW@sj{u z3Rmg!p_aeVFaR$LKN_SpytCz1ZE&W3256t;ElB21`3X_OmgrqgCJxcr(G(vV1c3D7 z1CqX~t9vo8IRJnoo;WS*79h5WdNuA%S9xd|Km;pX6bH?Zk|)%oUm{=Fm|sUZlVyUy zAgI#VTe>$>CTNfW*g|}HqvLv9CcP2>V%+n^Seo;@2rm|c7-P8KXFK8tkJmj|{Q#8b zK8wg*e;enzElmd?nhp-gGB`|K{*<;g^Oh1>LqPsmbc8D49eF4pvlMu=c=Q774?L|f*5T2IleGiqQE^w`3ZTG`gG2m(Og z>(i-aHdk*{GyrNm{zloQF9Pp%Y5>z6;sev&!)u?>iPUTWK-3g7V>AL`mOtX%Gn*n= z&s#@^f+2Exo_7~{c`^O4?{&-8Lz#@2*VzLi=$XnBbvShX(X^cCk;lO2oa(Pp0u;SC*p`j!e$BRP#)@Y@GVt^U)%og@l4vDOgtk1 z#D6!d6`KBMi;F&##jW6^;V2NVmZ=VwBhkw%!W(R?ocyGe=p&ckuToSUwllNK`!x^* z@6GqFo?V(3$0C7)z{2f|x=T%B%wcQ?K?ic|((Y`wukXshFgCgZ?G8HHx1~pTG6n#N z>seU^V*w3kV}{uA$#}iJW%7>(fh{Cr0`_%%LI(_^F9JXeha+)~Y=Ip&@DAdzGoPlLv!E_06S?*gO|C zz)FU5aD43@#0Wt(8t!vTUGlEttv|i^`Gv%AsWcIJmk}Po2Gn2b_Hpk$yh%GUhO+@; z`$@Q{n*1c(wM{#9Bs4rPmx_S$W-SSxBOVAjDItc$dc%9m*wx{xKPAL3iJcPwJE!W? z{2k$I*87BS5Hl{39eC656RpEVNC2dw?^6xCEKVAZ0x|Y`E6DHP+gRjZRq|G^VLB=p z6VM>^@@~r{|I^o79v!QrwMmSb)C>WqwmIOiS{^2FS|r3gfa7AE?0!CEpes%ge<#Eg zB`lFGhshqqnT3skV!pJO%eP8;iR1dXM|JizjsapUPO){Zs9Cqt>-b`%0zeaKn!E!* z-cLNgURRz5kU^>u;l^J^0)WNiksqAPrAUg#gDdUL|R{20u;FuK#`@ND(k9<{q znRm#zHQbY)lQ)UkvQ|)bru0jp0{&emfuTzWJs>~{cZG^C= zFds?vDc=s!(@V2H01#P`*_CgJ5l{L4pv+clGwi$=tnaZ9@h18GQ+cQ)MuEwP=IMIV zIJO1_0V_s0GYyjr2mrC39fqxMK%-wNYrLCplkcNXPsrvbU&#ScKMMaaG!)uco17;P zDn!Fplz&oUM!gyOG?$sDMFIzbQ}*r9mAaX31%W|O%?|zC5DpeKCci1?}m+G?SJ3$efSUZ~g9aMK1c7pE`@;_}O&4gawk)O0yW^)ADVy)lOe49b)TZy!3M7&tGrYx>;khocmYkpT>N_6?g zgki8$AYchs>?8HxlLw{|$?KjT^`JhjY4%Cb0J1s;UT{-(|EkUz2d{*uQ4n*`sL|*^ zwMz!xl!A$0%xr^J+CTgF^=0a{&W8q#X3r}5^95OyE|Y%w+bvz-4~JyA;hg-$Bw(&Q z_?>L&V9+XKPVEn73+-$1JS=@-z_=uT&G|}R;%K_=U!8kR5GXGO6my?4?5Q?c!Xx!L z83)`Ht-~xhrH#pvIb3=F6XJ8i4wQvkm7qXWS==zfSeWT=FJGunHX7v}Qc>iwd{zDE z9hSU>E-FC=4O2mSWmT?I?BP8{ba`Wn4-LYY@VXmwa=z^uwTW0j59ub7K3@4c!gcHD z0o$}_9RubTZO)N7UCj%fHwL!+RQ3&_u-Q3w!o4**3mKb2%bc%Za*3>oLmZ#%9^}SY zbPZxj%iihnkL4GugD77I?YmvjrzOnZ4}h##GN<%Uq;!rwKiTCUI;bYT-BkPndf+&; z#YR2pTytO&Fcn-PSie5QA9Xjju&H zbkI~c5JUa|V4$%7GV;*qIN;agoR3MFAfQ12VAY9$-4lmuA8-NiX8`bR3j#h_5IFBG z9Qka4_~ei;Jz_|xbHKh;LEQ3HGnw*HpCgnx2G1kL5zS4 zC9Kl4Slc%1p~Ivp6~NLlVGUx1m@y9Y!c&=(tG3o`St$_&fc)`azdt|is8*f}ctv_M z0Q5S>-Xn95NeXb{xm_-Y|InJVG!86I>Enh5QtygTzcczG+ zLaQWYj+$Bd>v2okpLCT7!;2PCKpOD8f8;SDv^yEIc6_6)*VvT?0id@CO5ST8&OZSl z#&$mga>S39{Un1W|0qK_Gu$%j57)#Y#?pmt`5=GwEBpACCtYF;Hn&WeAae}1fg~2N z1Fxg(|G4;po@JTAYLJnRJu}w#XoTY~1b`U)v-Pl=8frG%m$~~loVB%E}2oNO4-hOzx zcX(9PAOKL_5zud-bFYBQ9(HG;FA7CW-e1e>@%%(x7aE^tPv`{)>9&79J`tYxWzUCn z!Zas*LHs`46^h6*vu0IX;_+;m{V6!EyK@ka5A2X z>~n0K4$xNA8${GB0nW`Fv06K|%=t8&wWUJ>pmz04xYJ944O5B|0I-v#dZ#3Hq!`c;4`?xkQMrt4kzBP725eEzc2qXv&0-N=F zUT*-~yr_Xe(3crDXfv|XBnSW`QjYEA>C1GzWdS!un$(wG?|E)?tj;MmV=b0i9Idas zu)_~@7b|bkqPO<8Uji_QpNp^HJKM~82V7#>TS~N9N!lu_N*pjRj?bCpf$)7Th?gJ( zus7fgU;mRkV4?N&@l}W=`Kuqh-W%A^Wr?R ziHhN^)roGvAUjNFl_z{0`ryv_n3LVVcW0XN0{~T| zmk_|$be-M#TmW@Jv)H!dF)zri$X2lW;P|l#DhSxYmMdXeeyYpkN$EGld-BinymN-h z5_8oB?ubw>Mon>8kO)JSJ8B{b_8X)iMR+RT5IxO^+ zOJZDqqU=)j(LLhq?`j(u`oYL^|_P8E?KrVp6BLzD$7R!%y)<%svP;L>uVbkMT0 zCkTL@8M63*DId(zNybVD01)R*9+1e^(^h;<2P{iWcYJ6@CNEbMDm5hT_a7VRDUfm+ zX?DI0<_~cg0;MB=Auj2|$K91j4!lDM*iERxn*8yvqCS&quP#rmXaNH8y?bf=`g~BV zV-_}+4iZ8TR~@p~kEI!_&(YpxD}x_%TP?$3n1-*sGEAF>4eOUe7K)e1S*#3w|9u^_ zZ0kP@ain|C+xVK-35qZy*zMP#?VxLhd1pX zly)i`NqFVI6?v2&GVdn8r;XB%1E4a}g9TZ`+*72mHcVSk>T7dQ;BzBqRQ!Dkd;l4;S!Hw_{LY=-e7}FYUbF^Tn<5CTRUL8MH)44Tuy1} z89~qMIrQ3&jfw!Fhhop=@Or=ke5LxQwP?-j-|$4ZE!N$hky$3j!k)xOe1jZ%tCX(R z%w;4RjNZzO`YQ4B!@WFn*;d57)!}GgI`aYt14T;OBmPy|33Erf`H;ko1%%euWxta& zuKgR{1#aV41>WGMT{RF%MN;Cdxo>JSv37+IqU@|}&f#%=Nmo*;y|5AJ-_ zErMn0>d7DCJo=rfcDBAgG`>dfH9D6Y)0h}Chu%V5>p^)zUVc(>2%lVWxw~VE4%Egp z2p%9H^oDYqx9{z~_Nz8TqYDCW1vq5(`fS!%S)a#A0QHuoXjuYn+V@3rsr^}FW80Kk-(h}d7y4m;%u z7I({k@RI<|+Uv{qYTGh80pJZ87q!0h)a9CmF^ke)K^#Z~eAW z(>2;JO!x#b7PrU_PX(i1Z`7xVYg33G08}Vs#45)^li2!_@{@HzV_Tmj6RKZI7ywM1 zfMEp+>axNle6$V#Yv$vDMe=?PHm@rsjv*!FVS@|3lfVIQs543vTf@7j zGN^uMt?WAsT*Kp_e-pE=D+=JC^)6!N^tIe`vB*FeG!*ty+&+(;-2IwYANS*Oo&60v z`J^htpp|s|S>$7*ocjojNf3}x#Dg9n&ON>Ic$qVQu^7$2aZ3U~jBrBYQx^y8=w?DZ zh(Xx@jjM?u#G=B*BI&d#o3iavXxRu7p|Q!YzIUaoK1Lgx;a!6a?-o#Ey|W8q(h~qI zb+FFQ1)U++nz$=KFar=XwdNSG(7V1BCBmjbJ>80!#MEZO+Tvb1!bSXfdganeGFQu> zW$?T7K$-YmPtJ>cAr)GEt+4(c*AV}ETqCkf){bF9#{jV|W|8Z|KKHZ8Tlv4$PGKDT zO9_2Ng<G8Tu4_HiIWpg<|Jk}eXz)Ubhr{g~t;3NSx#nE! zk%SLZqF%c**L+1PG+8kFqhyKR-*wVT?*r3d=}N}d+CR-3gXrOa^l(|E!$|`oFeVMi zA_dy+)AM{YTLOqI<(;|5n~s2`fiaUK4;n3}$gZ&Q(II~82d-|{Gd^R+Xq~J)8($=m z^OxciN@@w2Q#+R>Ohf)<M0c#(DIR&BNJm4%dlZT({yuT6IVwV>@oQd;%IewSQ;SQaH{gi`89ePZw9MD z=mow)z>w?_KEh4_hzE~J@eeYuej*|hLxc$g%B8fD!xZTG71L7q^2-+FbV z$M=E!@o`xS{uDk)5HpZrT1Z=2^X59YWdvXlYra$NbV^FOyvzGsz?7Q>G~cFXAOL)q zo}bqzZdUPxwiioGOU#>c+PB2413b_Y%P` zK7CiR#vmQm4GZa{>CQq3;%fP;C*j-BaE8MxOS)Q=2BSdiP534DuwIaV_U-$|KRI<3 zWnw5mJSX$;+Tz~FCJ{rQ%v#&+0rK{UrF9w>TIaN5Tc1y~yiKwO0Eaj3$b&IpDS<1P zz0Q5$h6;`WfN!K1#8QCZqXfM9=nbaCWe*^5jJef3N^h z+h6{cMYCh7TCg)RG|(m=Z%+6swyC%CH7!*)t!Xns0P&;JI{8QIEQ4EB*rWlLoh6c6 z>5>3&`t-n8Q?%?YppaC!kpM40Q_<}K@&-$A99&R)sj#eB%Rl1Z(Gz2S#Xt7z^9rVV z2?B$lVH1AWQz@$t_67i6$YC#~ay8ZLnKa5?KwK{CxBh)$L)1Py?XP z^|k4C%#A8~92G@!N~!+4Xt7TY)q^(+9F$rM0ihQx>yoYZZ%6p-HUY4?tR<`^5Olop zzuFSqu>gc#X1`i7RM~Wno%Z2XS6ae}uS^jCo@8dYU!8AKeOlCYJ)O6$4;2YOya2$G z$xg-pEz?QgoVUanFgJp~l#?eC@S8=>Z9eA1NCYyxqC!J>MWlbDYcsbejsrb`tyz`- z^G*|ixOl_Bb*(fJu+&r@j)QOb2hiY0<}{+X!l$?Ae2j)8#H+qb&`PqRhSh?2|xDAN5KSGx5HMN0YS z%9YU@!&{mA#??9$cr8oT$vitsmY>itdcfJZP4Y9+o4I>urPfn68^a`ViLpgReTbird&AwfYvsgq50z_6+Of}{-)qdH2wa>gq> zU+g-;)f1x&KZ_U1U%DpO)TN<~E@fma)R%asZ*wbuccP0OI8ym6dD4h^fHl3kUTMt- z;p^Uz7C~m<_KfcX{jzAbY?5Wc@arF`y|c+!H%?jpTV%gMt9H<~9_~J2oidI zi($uJw3@BTg~;q!pEna+1c~*7on10Bt-xT>>X{9j<57EI=eT$64>aGV_WHeq+%kx) ztJt6?7Wr?IYjo0R6abdko(Bqh@gHvchY){spL{+!*Ls~Wt9qXq`BMN8;Sx#B`(#@U zacjS{lq_zF@#v-av}^0;bIzE_`eD@l8VG`)ADpOfXf>5mBybQ|W>M|%sxJr(f)3AV zuMcgSAgDn>KvKD7Zq$V62>|g&E6V#BIP5}bh<>R&jAsDoN@7yZ>~0`O>jZ#!_0Deo zGC|mfYDvsBGywBnORyzXnjF`uPZI!cfKJczt$|a zZr;nAUn$k>Vc)L-u&TisGdr=lax@4cfrG%*UDE2!Z?pa%1O`F9rY?536CrjD0ss+{ zV=KNUn~s=fUQYms=gp5!B5}vsIdu#$-U{MXqSZ(a_*v!~I_Oo67Qge@LCXai=SpPD zORB`^aAXFHkB5SPm`r^+?rsKaE2Lvxr@6TV(O!d~Py@2(pH8-3t9vqmPlEuMu;X>l zlCjv8amac-TXg}9#aMUaY;V_z)ou?+=jZ|VP-4cqR@M+DdHG`tjw`9tEj=HL_1>G* z4Q!AGD3~BPw!nEk0gCZL7{L<3yek<{WMk5>Mom#TgSy#0PH*m;w>IzB0DC9+zzZ!k z>*lS^NZ=rFc-wb0+ootG@F#Ij08rv@{k^$&3TV@rp|0{F5CD#elxd5)QoORImJS0Z zwgXT}fUuM#=>;kOH~BZHhb(g1zxkCCZj?oAzh47E@Wk`^^i0vj_DEm=v0unuNAz0f zE-49jVZ8zb6C^19;uG4dO>Eb_0f6XBK;uu}(l%>~4FW)n=|70E_*QZGQ0)yP+2i41&HJ`leR23u>;m_4T2RKb9xBAX*1{`de5;FL|%! zNqqNQ2XD3O-Q~{B6V}TCKmY<#+E&)2yX7=5Oe5K`-Uwdmm3QhMN)B>)gX36fv^WsMD`s^}WR%(lSN3JIqS zyORst_P>!?{lSLrz?n{mOS8B#c#8aNFAX#ler=DoOt@Hlzdq^~8_jXmlQc?mDYYrP ze?7#fYszcwn<*z)Wb51G7JB6YW?th8Cc1Bx2%Q(7$ICCsv5(15h#I+Q$HKkdl5$;|Kp^U%vXl|)B(e~G%h2CPB`{hO9!5n)3R{{ke2;jT&!DCGRXIk7!AN#@g?NZ zE%JBRA;r!HQmxLfgS=S+g-=ClAP8Q6d#<~F$}tAPL14_dNxCev?xKM~(C`vdwHI4M zCJ2E4Y7Fo%9vE=$qIMOVj~MIZ#$zwmA$-G_e9)>AI*sa;nq0k zYi?%de^}n`rGDVz6z`hHp4KjIg5pSN5nHx28yyoGEncDlW{?EXTu^9cAa(2Jk39fM=+mRlBQY=bpUwLAgsOenP!f*Qt$7Wq|=#PiH)Bitsc*{%*z* z<&Wco5ufN8ty!`O0)wDb<45bDV8_GW0LVL`T>_;wxt(+J*zIMmm^F0*5z|`RF7Bgy zG5MaXp@)C^@9Kh)1HFOx(y`UPw#V%oq9-}lo;nB$+P2b)s`=aPb!KMN#9aRt zI&@Q2cJ8Zr>uO*vC7m(C-jbp4Qv27^Wh9fSHDZ-s-H(ly&OD_Kk)Ju`FDFIIW^6-h zHrsaD3v|Ptny1Tm8+Qo`0_whWM3?Sn<_b0e0P)SQ_a?FRQZavPE3mB>xKC7{kan_` zp0xr1(E8mszVbwk1d}V-d2z$~I!@7^4Y32aedk7A?-cEh3V|2ngwB%?T7J9vB`+vU zo^`YO+zxs4Ub+dP--!sZq7UNBW!fhe>p#MqYYoa?Nb_uVh(U~69wo)lP}~J8oX}KR z7poo0NJfLuisg8d} zZW-ri&@$YV_hKJATGT!Khsc4JVb<2;Z0&yVz1ERgpMliw@!3(48;{O`_it27Rh zF$oEsF=oB~;EN|;pE#zCAO1Y$+JicCRp&qEQL=2SqV0@QDUI7J5 zOk6%S@*r6y&%?v=woL{g2?>{vx7cO%hrI809My&YtnQ%RPpqJDoGWw>u_TQwq#E|(idGM30 z==Gk2#ksYTjLZqZ;In4hn2@I8!=5wmn(TZH(*#-&!wRoS^RyYb9c`xm24}y>ByNCM zfZ&c$zV^4g|HrPPV2vOq@6k)D`MWrUcFYPFBZz5@xVw?o_~(-LdZ5PpL7YXpVC(W% zKb;;a_JQ_MGYnL*%4`6{OCHSRf4p|( zuA5o_Cdh&q?ueDW9`e)lV9T_Bcfa7~DjFa`0AR+;x-M6bOuDWxA%(qwILESk;=~(%z=?P7eOFv!baHz%JN2`tunt;%%6{(PayS0G5%5jsyT5Y2F3r zt#vai2cVmD1rWxAFPpt0bt-$~!KA(q=hgddW(g(|I0!uZP;u>8riu&#gP^T9uIbYa zwzmcnKIaIFaWdmV$v_}Wh1fM8>V0~%<%!-t5lOBPDMCoc6p+{bE~wlhJPiPd-b^oY z20`AGLb4h6Q?jdMY1k8ea!6k&sR4qbdFFfimezWzX=W+tVO|MqO3)WYzGaQGq+}xe zH6f0q+*QM(U7v^f{3v``Vmr+|v*vZzXF!}*v`&lGU%w4|3q;1~5&!=zk|w^EL+iu5 zoQ|I8_qdjhexD{&9d`^+)>|3m?6-KP&zh3Zl-A>P3^o$FApuLdv40=VtpY3E)-etc z50Re;a&O7xDN%lj)Kh1<%u}5@iHU}G0Y*;2?=9p%kqq+b8*l6RkTJ+yGIzn)no3+i zZ^!~@ME>~NuduF?1{%K!0)wEZPB>paHK4LG(CmdI*4;;n@3$H0dMK;`APRz4F2M9( z_+Smh__N>Sr>z z)+`)EZ3@kV)4my(*mTjfB)r%9M6(~=Bm^Cl$}MM(WR=_ciH(>edJNP&oAsL;!iEI@ zh=9H0=IP~&kU=WG_4jHzp3R}zF{xs?Fb}pUdwhk00inpJy)?kI4gd{r$@i`Na{<>^ zSJcENJ%gCl8@7yCy{)>CD_q_nrXwB8aMyd67|Q9oyn#y$enITc*li%Y_q222yb&V+ z802&E7&Eqj>}&tjVzj(dD*gA4@}vT-epm4y*CJsnXr0H;5L0>l?EUA*y0(I@L7YY$ z89`vTvwvY(YVhwIy|`@57eIi}NXgxA#xtjHUUkit5Lmh?W0%y?!VX%pw7SrUUV_lv-Tu1zpC*L?dycXY5^oRqKT|Tg7awtOK_RY5=_| z&#Y+cE9i+rdUSFQT~?WF3lP|XpfIkuEOkArMqsOy>9+30cq0KFg-=fq@>O__Wy6Cx zbn-DqN&tvEeYwwTeb|!?<1*c;?0O>zK-^A333ld?N9;*odp+8qR3pOc5&(0_gGR7% zgF)i}@8&x{=n~hQ1p+aQ6e7m8D)=O#Hx`i=4Yp6)jyeUH8AA|gKv90>TC49CUC@Ms zR!LX|2x}tj>Da%eb!8XM;xZ8i>wLlbhi+az)_y^9_@qXI zz}|`m6B7Wy+i>T1{Oei)4HOdWEt1P6KLNs30_^4S_cm(QtmzO0K(69xeZZv2!y~&q z0GOZwfEybPTjyhDjA`HoM5&-W^8uj0Xcn2btvKEy5jl%bxC4vN-8(C5mp8{QC}vX>VTxaO0`kr_76D?5(VT!1l7# z6@6iJdbXCkG^@vTT!?#!(Q;f^E@TvXKIZ~$?e4f@L({BTqeuI@i+Nf`m{gNB^!h-j zQ=YN*o^mWMUDcCrP!ap|gwPa(^5FCl-~2gQ_7gWJfdF4}LfC~~VCgT5Dd68BEnd*r zEX%t(HkjpS;VB=)$OMf<2dG>R2!9*{1N>)&D(jSQ;#&|H1RXpvDm>z7P!LeN;`?s! z;8>VHE0;U(C#j3O4!UC@ab6h@TE^@9{Nl@|j~)t-WncxCx<@iKbV7D$u^SgQ&?T?& zdkq3WSKkL8J?y4IY8t(ygnE!=QNMgC_ttTjEslW>G^|TzFQehT|6HpAr&~$PLIEW& z7hEq+PH_DJyn=T`Nu)pI7WN`0?z`#Mr@HDvKk6;d5r{K@2(SFgSqou-QsaWa_G~M{ zi=z8A5CktyH$gAtm^m`RATAR7UMNAGk2yQ-4cGJ`?w^Gvn9E^dm95i?7sa;JV>4w6 z0U%!SR%ySc8CAHT+d9MzVoD90?JyNAb^VfYyRJixseqVML9~9P_A>82EtFV2>QoKa zJOLoic5SvtjMhsJbY4QReB-E#8Dv!Qe)&KwT7KtTb+=^@pk=Lj{2l`Og-`n~&gJ~( ze7y$ZbD;R{DZ>yVBNvVU>cjn&npT4jpcU$kP>)NPNUi@^%8@bmjTd9kaRHI zJ;W8nJ=LmeU$+2!O_+d@6^{G&_ngU5SsS0>|FEi2uyo2AB__u>Jy@f05L@H3FBONq z(j;Sy`n!Y~6WJ8D@aDJIG4E!hyfKh2mi z_X{2F&FXDASyH$s3zUc&KT3D-2V;14bLI8o4fT4enNL0QZbd!1R_gv~-MR0$}GJLz1}1u<=Z(@WI{^W8+|T&6hbk!q@W3 z7uF#}&h3PDsz;n@93HqH5jJMa05i)24YL=-9-2h?AG+xIt+AhqVt6FR#wdv!?+UC1 z!C62IseEyCM#59gv&h$)Ml<01)#4fWxI% zvdAf1!nz?kl$%;F2n0xP-PCMxN;|&^=Nbe6*kdnwGdmy8F&;($h>Lvmu0Ivn|CsY3 zOSAP2Vi2y~nJvEO+gR+9e85Z|U|loxE{XHV27VfLAE4rh}*cv+siDL8Jx;;HhDE?SHxP!Yt~d2q~w z{sF7cS~&N*8vX$gj-t9*?biJBv+>?}kfza>bd7BRHDr~TWx??pS^Ww6wZRSDyakIz z4>u(KK)f_Q`PFyH>RF!A+0j@mK>w51CDF^rA?0EFk|uGcU)}J)r9lv}28>#tP4{8~ z7XTMS--5|fJZ(~qoW;DbIHuqi?lhU>z&_f3*?kx#K=c65Tf5$Tx9;7)Vk5IeP!KTp z$GqBA&4MIY$}iq_DO5{90F6X9+%Q3ptSf$OI9KnkRP)}kyk7(Co#4R_Ow*av_Rd7QXB}LWVPihrd+j~nY1iAx+L3h~r)+yKa zkSsBtcjW;)F&$SY4ou46ou~R=x3ao*6H!1+R`h+m88%LKmj_|VAnq+@LBB^>z43AX-}UeIGr zF;tERJuv~jl(1I!WcJnotS&}|o?_%V@5ckXqWo#~K6=JwmNbGuqj?Kjdh2l=rmP~_ zTM*Fh*9xxmDDFoj^HLD{OSqqR9jTRR{fMU+ae^7=C<{wbjK)ll){io6TB4_+W``f+ ziqt?59KXGi-l{dFY$R|H_~l;%wI5k&>RyAO4=3kvV+Mso5CDg}*7xTgZ64VZSvZA+ zvZ@dt%4R0P?L^_sdaxEwgp<-QE~K__%~TKLi_`$wCAe(4+j{-fnpzMX1nzvUuZ~V; z1rWXFmRSV~JOX$^a{izTu3+f?%v1ex&hyXGb+|fS=UY>@p!Lfl1fa$5XxyAK)QVB7GpHKVb&m?yi2M-1@mZiF*Wq7%7vjx7qWk%MwHiVg{8`S|+98=Mf`x0HFDGv3u}*GmoETgBOsrOvIbQZ}35f$@wf~7~IY3w} z*jT+Jvp#EVDscjW#J%f$u5HF#V-4aUVZ=&2l|+-&^7N7NiD3zBFu{(h+FgfPa}E$7 zijN<|!|ZKg?ndsS5X1-KgwUHKjf=-8blE@3%U(ZLs;MKSkqU@m>r>I~qbD=QIY11;1>zufur|s!d}E+46{|%HoyR{w(d|aXgLi0j z!_%|EHCja?JKln&WOTNwd~J;$tns4pQXw((VlK|id!@x;U80+T-WHA8mZSXT%Wcm% z-y<``m&D!hom%jnH~Cg#!{nE}T6n^mimp@;ctLzl&8bieGt2I2>o~Lt7Xa)Nd%+S1 zdcaZ8mDgr^T3w&NqxMY;*euL{7y=v}^I+1rX&-uk(_Q-MS(`~9=;0&b4FC>WuRAv= z`H;4GQ@v?Wq)BDrgpoS*nL-nwRq|kk_z&r^U3S}}R$xN2vic+FX7ifhjv@uJsb{3= zyPejN%~YoZNeb}pQM)RI4y1_jW%)3Zr>91XKGZW(lW_<{Pi=%{J4QPVsa&E*csdRO z(VP77OR3xkvuZZ2&L9|$YjgJ>{3V5pTLLSSG$R1$So-bPMoBH)BqDU4-2w20vOO*G zTyIv_Y?)dTW2to?Co2;7rS=;;4giixj~F-(Q}Ep1k(R&dh+;}6_E12m%LxFiQV5#8 z@;~?2TVvKD@TN8L#W{JXSZ31+JL>2$Sr!Qb07u&i7=3Vp8#pLxT$Vt8dh>-Z{qN!} z_;>JpCl!u_wX$UfH4dQCIUA zEC4ZL&CSGT9+toNmIwb1XX6S_hyMlMh@<2*5Fi}wBj~Z4@oq$=VuuLYvS;UC549NS zT7q!pv4@uHjhq+PvHpVUC}y@y9iwxOc?GSim;viwff^v4~HXCSFYJ`whty%AUf3#-BC`g0Q3swj@*jtC|XhSnHCji6+ zA6e>$o0_ei58axY{BDSM43L8i;~gzs7ER(?qwC~%i1e&H_;-M|4=@X41Df^JsoB&k zL0}M6WYFK*DovQtpdet~hM`&q1~5sS9&FJa@vao5)Zp%T?PaFG1c1b-q)GhXm$}_K zUF<9h#JR{>o9DMx70iN%sRbXU`na`H4p@sZ8cdZPE!>{0tbOt z(lynlW2(L&FbFz(@TeBOd0X@sQ8dQK5PCpR_>RLEx3^mvpge%q$25NNm$*^+t&`ZasrBX%GN<*Y(_J=bH`2%m`pigY`3} z?HxK=hbaqy9=2Z|c+!GRdn#rG?(>eekWzLEmo z@5I*giKmv{qEoje&KsI+q7o+?e_ikHvVm*`HqdJ81z#k95ZC9|-*?lU*$GWlZlM}0 z55#G!Zo6GouGM(gFhMw3{3)%(WI7hab3W7T+5mt7ZyKLEF;C%{-sdke{PMCpV95wk_atIk_1hiGEu;PjkHynv@4*sV zTiG(Ik5-V0^rNNq*79(Wn&&icHg;ne#0UU>!d1aL-p;3MKKJ>}`vcfRp%*)NxdeOB z?Mm0zi{M6#?7^S7$W)xmAFaO4sw1Tf;H4ihG+c0m9!3o*Y2I+ZZrSYmp=B&^f-SBRV6X(O*pQ-E z3C!A$29bXPS`>ZV?FCj!0En?gNaC)OQftFAkpaZ}B+r4k;HF85-|U;}y&c=CMc|EO zI6R1B$={(kP1{v)*Gm~aljMFHre#o8Y( zj;^Ysgjst7h}W-oTASY2!`*#tb+u_ls^5K<*8OW<{`=vm%Mxwqq{K!#k96h-tp=4# zYO$IU1MJW>C+zsg`(_DN$Y$&xq8-N+?;u8`fN0r+j&d3AJfM3p30{Lnifm~bOi873 zbk+&ph8gw*0JhBtsFn1vmXtMb2C-A`mGFxAPJ^e%4S6)Xju^J}C&dC8G2UCT!r!WR z^5jH42D6WYF<^zMnTQtVf#Y7SPKW<2(AQ0v8Y^h#4~Gzi!L?W<8X3uFX&Xw=_2 zf>`OHX9CgK$;b2ghS}n)S=tj#CCA=g7UHj@o_|St<5*#!jE?1BsH9mnFUApkNLJDY zNCVdYqiXV4?#;_Fy1H>$CC~`Qf|gc|*NQfid-g_i;$4`C#g|t9uH%>u-VjKy&^uzV zKL(Bp1z*>0ZDSb#TZJF?0zYCd|NOvg9h$6{0)#O%ZIU?wJ%FXccb?Vh!S;Z6kcS9M zst4ck_7)%E#sP*XfR1F~`a zlXlinTp1VX5+oAzQ{m?|_Uo}&li4IvW6*$;F=(_e>fG{V$Fa<@WLqq6JpQ~p4zkrN zv{pY|SfjM)mCarpr-OysC_3Zw!tsDFB)Z^X25Br1)+~>vnx~ z(6a+4CeFX8YR7<_3tLnN@89q+kUz(wQOznj8uQNbt|pI(UaWPrBQDzajG`c*4wb- zJCOmmqID0}5Ko>MuURq+6BzIyF=HGx!Fd3?P-%nS@_Vaw(6jRtZWknujq$%Y_WJfx zZWYLJRF;YHG3B@{)SXm8iA zOS*KP1!t81UoJK?mz&8DJk6IBAOtYw;}(9+U*m7*B_C^7abo*+;MT5YzTQrkzSgPo zh<^}Jeqv|O%ux_5P3^o}Va-I;;pO+Dj(^ym+AVP0*KBt{Hw0oVSO54Uk@qUk9h$?9 zT_7N!Unr_v5#z+aBZV{4Kl#_!ddt&_8a)vh1PvM!rDK?l!vKN!hlgu>MH?2xrya|w zEx;CSV}uYVTgruW1GaeXq~sshwIy505royUo}u0}uttZn+Bj`-pn)6@d#l#vVQp_# zu>@%V6#LAu$F%?~;8|q}!ksVXcDd5I`k^al5&_V3aEgI?X*aHomYN+0h+mcm5e96@ zOU(W}jqd{QcO{98Sg60sf@5C)8e z{@NpZdJC$3N^f=39D5ieEctbcd;ks8LJau7HFI5-q+!po7RgV5$yV`qPIv@82@ zc+Y+3#zT=)9RQqA;|vS8&|hg>&t*;bzzVf$zV-eTe*cTp_28}Lwve#eLh2R1CV~vi z*F^rk)G=}xx+~owNc0x=LSE<}PP^2#j-I4h?Gpq5YI^#4)2x9zVyVo&LI~|Me#x(X zrTW`~$&r1XAoPM=G_EB4b>lNv0Q8YELdh|dx_#WMyC%L+Q0Elufe_m`GB(sv@SzpRqhX^3*5*jso)>rWh*>hex)15imG@Sm<` zqW3;AO#Q(G=QHhA2LKER0h*j?lgP!32Tx~md!P;gI3C*mL@&BPd$M3oU1eK`0*Iwk z%7Tvm+rHiQCEmXm_(fas8lwvvq<z{BD&1#!WIxAP z&W3u3$^2*%FD?CPdVife+#WFd0ZUk_@z&@Or?QuSTJvv9*(o7n-0m}{!GGRsJhSFk)5NyO94*R#Uvn`@e)avj)-R(Y zrvie&k_L3m_mVqcYC4-NrkoQ>DvtFP{NuBtXLXFS^;HJ(TUf3QY*GGs>(Bn!=Gqj^ zgCMYmYczPqdg&ACU3=o}4JRtw%Jcuas;S)mEP6ZITuU=rdH^_^unGGrCr=r9j8N<% z=B8g>)f@U|J310L2>fXMV0TJOY3g2sp#Cd5y3%CulLIjxYo+4LC+1A}*~|5J^UQIr zf>K;B%?5P^uUvnnj4MU9K02#u9eI({r`78hXn(P@hwN&_1N$mW3%AzhbIpgXKO5p5 z@0+mo)cL1sV%vIUK{0TPo%x&BYggpegSGApfE}!zf+v^k6S;J{A=1HX+mJnWyU)+4 z?`5in2gXJAmzKqC4|+f1_0{jXR!j{amzGh&z9aK@YPkKs*F2>?vf?RSzuSCBkO4#` z6Y%TYL%J8c9{~V}C%l+53B*`Hj?FVthfzz+<%lJ1}iT^pf)Y zD32Abol`aLvr0?K+_$5FOr%gC*HWt#alZ0l=Tyuei=tM<^PF&pe1SbiiWb3ci|jKp z^Fkjqz}
sgK!EkV=;0l)uN!xgRWWzW^Zo??=oiDaPgp0y2P%}}{9OKL z+hH1DGZgo#zv#NV2KK7)!K4h=7Py5NdB^26+!z*){9WWnbGFptv@ZIMP*FO#T8{F+ zvvF-?cD@w=28$Bu>V{vuo!E@So4D3WW%UwvFxWm~NB}WAA>uVZch8+>a|{Fp0fQR< zqT`a45D4+$y`%bZA9}t#ZB;5)Lc)nRcgicu!hlamnt}~g5?(P8W^eR~nblv^cb=K| zj^Id<8VG`OPWqqTUNfh_BY}g!pQcySLa~c4>=gif#g%$0dG(qr6cC^%tZm`oaR1Qn zrYF13_3HdHx+hz=XkZYuZT4vGVAhQZ0zj_?pNjcHr!^b&xb#-P<&H!w9HU9K za@=mHD?^LO4{|TP8sH$9YMDQh{X&D32wvdPQWs+J6ZMV0d4KE(c)sB z4MHfXb9C^Q<8m#p7ys$VWIZJ`5wuSUyGQp_m&cPn-}Z{P#E{|p!rB@vF~{)6tZDwF z=E>PZ+z12~&@x!4JmKR+w2H`?+Mu@m&%! ze09>Bm*gMptjd}M1Y&reF8sM|bK=wP+F~v5bX9!bkHk;5U!++vr*+Xf*eKq%eLUF+ z`$7_C2Psn1Vz8a%*&-kemg3YYqH4=0b&N7$G!huSYGCCuZMD0atquUWS%+CPH|y@) z+v*M+t$}#B{Dh`s4EWO#D%bwy1NWcHHepZR3jpyx*^RzW4R(-A3Dy z!05I9#PdFI?WMUo>KSbVNRf`2Ki^x;K$2-2|B>s{96Tl~Xc_ysG54~0^N#llX3$lT zQ5srCD6Az9eWPTmcfB+Q@xG8PRwo#fku-=>V-8Pv*7@?I@jL=RTyNb_?@~iVjS(Z9 zZ*Lo7d_ahUNC zVw>Bd`~w6DQ=N?k!+Q;7rP8>+3-M{Q8Lr_Wq}LK+u+XMuQex%T%X+0=*b4y|Mo zM{FNa4>C`Y2OwMn%Zl^gr$=k&F*Sw;0q|J9svZC{m@D5qGcgyyNQbuv80lVGmaLWK z0=SfkD`&X2Q*31otpl?vNtX2Xkq%lH?!Ky>#vDu|2v!Q`Zzq>SzzB_)Z8?{-?=L#y znYt+wI0!7YD_!^kY7hvJzM6aH>dWro>AhE`Q(dNbo6l9gG0gg@Qr%I zp1lyb$d+HV`M8oKFf^tl-maOq%g5S`TzvrqK$cTueZU*v$J}4R^hmtv#A-8r$(1@l zxNMLH)C;5YZbxgjOf5nHLnvl7oCzGOR_p$H z;rcFeIQMWe?2dH-2t(`v<0w$`@kFpwsML_SSF*jMm1x=NEQFgw{L7DI^1rO$5v>PP zilTJ@(0ap?1Cv0E1k-1j^FEJlokvIk(BJKRe%|A*-;?*#(gTPkZuzWSE*+(bZR_Qn z`H@vthrz#TZ?rZ9E2Vbzroz6G3nGh>W<6k9cTbc^Fsr9F(!^FW-GyuLj=+#Hllh!c zn+GdvGcYk1Vw9j zzgn|o5)4{rjxKV$ZYcC;i>rQcl{R6UU{GX%_uio%^vh%8i$131Z%u(9NC|tE++V8m z{^ZE==Pa=0sHWbfml$xts*N#A>ymsW$%t<=j+fYIfSi-!Tu9)Tl z=R~bJ(E%v|aK-Tfn^gYkwL<3xvr#}$N11MU<&Yn>?TPNGNnh*A((IrFfg#)SKfv|O zj7n~Av@Njso%F^)3_&mue|Gv|7erGB2tBm!n%4KaHp|nxrY__6taq>cWb0TzXX~XO zjPL>g#<57sBl1rXA1d5m8)9YeS}zb|3lh0INmzo7v540`vMkGVU00bRJ`$L{($=PJ zeOC*>tb74DOnO4O4S>E>q{)CWnoTns27r~%I4H~@g8 z-dC&`n;?-w(8GuG>(wE1+L2)D19!htnVFuwtjA&lGrE4yJxhT)9`fU;uu=s`!6$$J~>^kqd0Kx07zpf9X=D3eg5(9 zwIcU0R!y13r~Spxy1ff&rP-nvFCBxWZ)7a=3-rXWvw8k%HyB_HkQRZs@*fJ6KmOi$ zxg%-ZN|`oA5CC`cZSt1D;oFN3fA6wKKqr+BaC03^r2EfbM+TIYmT4j=iReT-7L3vW z>qG#6ovGPg@I7u$9_L#%)`_B&K6J<&x%z$Gx>aCbX_*?wr@g509cj8m24okfrXJ7( z^{_if7rkF>djK({g)yY>al}996POlQCjvk+SV(F1m9#cRYwO5i<15*jn5w9kjSl4h zG;U<4YI+UU5+4nT-HPLZ+39uX}EbAJz$}&XX(z~3?=5*(;hn+<=^G- zUS)Z#hU*G%=!I<22gW8;*F9Jt006|=Vfw9oT@Tot?*==to!#=F%w}xTzHsKnvAP$t z`#~Uj0kDodRtWZhd$%($>SEH|$gjcUhNnv4c>c;&MyFxxrl;i`80Vy5jZ5BR<8DQc zOK?$^+j?HNKQVA+7qw2G#?d4n-!AVy4m`o+3hI+hr0;E66)&@V?T4n3!x-qU>}gfj{8{VEsM ziQMq~yevwg2N1tKWJuzOtIvB$eBi3>nhi^gdar?uiftJS!C5XkSl1cp4 z%OARq0viD_r2z}1G!AS(poz_<3y9I`55L4Gp;c^ht-R4#2Ux>zUA4{%GetIps&lqo zs`)jof*7sh{B_$xx4iAytfww&6E(NXOcou3FgdDQe8q;1;?ZKn&4}7!mXz(#S1Tqx zzk0H_Wl*_pN!`8S6~t7p%#l6y;$-23887RBnb-(oOyJ&^RROxzy6kWG>9YK%Z)(Ri zb4-G8pJYfW{siuur6Y9^s^U$62pA+ifwl2681!nucD<$3TWxg^GIPyH;2?0yg#mgu z$;>r_K!EV236?UMk0)xUc0uPttOBG9z;1=JYddm5EmhH^BXiqK*|bnhh9P_Cp?ag` z-d8{p{`oMjUC;k%r5c+8F$mY^e<}gmPuFQ;+{$QY{n2PYxwzH7W?{?N)ox~lv*5)N zno88$pNGu4bL_a6wrZa>5e&psT9r=U_@6i#o~oKVX<*CD=CXa}RkbkhR`o`Q53aJb zjKO7oU|#&u;zK>t4%_>L{oj$M!S6(|Rsi$>ziW3}%h>Qt0Eo+cztU4Z*1K9xOQqe> z5HFT4x(T6aIjZKAdd0j5R`#c2TIH6QaRytJj5A9bW_G0kzTYS;oBv`PT#W+XT)LWe z_Frwfrri2a1_&T~0DwId{`O~Wwx-;=sx+xDqWdJzL08^T4v3k!M*cl2ky$Rw&;{;5 z!9rf)8&mOBB6vs!&cH2>X-Vnz9K}e601#gvmh7E%h3ea0aKg2T47r6B#GPSMeg7us z#?Yg0k!snz%l7K}PGM7?5R9Ili?86FPQ$$M>}Qi)9bnKe%PQIc`3Yjos(G$G@2+Sq zPBVsBQJ7_8h(G&jKlpuDoWgz-h>@*P`GJ4*fRdNR&rhkG3oT5!s6jzM%juiLO_=}? zBW1Gn!DsKdN|Q+8u>`_iUB)D=JD1J7W+=>~zh)3_Ft7++lh$;08kQN)yV2+ zyT%!v?MP$iAZFUHKjCBFgH9B3UVt>j&6EdWeGnc5$BzHi+2OIoWJBlA(OWmTzKKEZ zmx&W^{_ni@Vx0N8rX)~&r72Qz^O5B(gj?#G00Dh8fU#l%)!;j$uPjsh`T zuJ&na&ybKY&b`~;Z5e!n7%vBL-2*mVaBN3!->&B;BRnSvO%%p7`}c-qH(Y=v5OdI6PlIMR zw!G*%1c(br+~A}NN8fn_<)aSeT{|Z+TgJ&4hKP4ZM>vFwme)!T1n3a)>xBy8%P@Zm z0D2%me=@kx(iF|RaSi}z3evjoqoY2qqKQq!0`VU*2s#KR>0Cxi|B3UWuWg<0QVUl# z@h&wY)|`wVgv%VQlW%^p0>qW7M}?OrL*(^4F3p1t9!i*VD1W%jLCltg4SxaCB+Xe3sdB0$@dT|z1w^^8sc#v%zs*uzy??B&%#o5J1j zS1Ew*X0j}Ob~)Co#d1vStY_{f@`AW@VV}4riA!g{sV6U%7^gYG1`Mod%ZgshPt;uL zi85?q2d(E606wcl5PMjBc1YwN00vJT&(q^D*fnpX>AO>OArKvqa z>PJy!Qya9I1R` z>IcHvm@L7DE$eR?^}KRY570;iZxJGBPwJR$A{S&vZKWPy`sQej;>8KWWq=BlfqHqFwzt%Gk6lkZ7m zQarw~mh?c<7p_!D%orjz;(vxYN4~(cQZirES}ChH$}jiZto?e~Q+jG?mP{H-up~Q3 zRJ6kMDdSvr&_gwOz}5o!OKbUw0mF3pf_!{Jv>PHIP7MkHk_p(+YO!_>ecu`4Kk~3=m8*l6sl=z_`=_#^qQVoJRpFQf(=np z3#!#iR9^%#{z?GGFu2e={>sj!vd6;Lc|n}2WJsK{u}0~PJN<2B=~R}Cg_iNzCla4O z9pNMvT7EY)wKTG~Z#@?NV3UppcA)3PZyyp604?Ko`Mf{3{s&!xSY-hK;z_I8`EL_E zbY`z^-4Z`0)c}Y~HQDI5eD1)0mly=#y^RpV;HJuxC=dP}2FK}T(?jj`#+s>$2n6xc zN*m%Sp#{$*yS>mlpO#*fm(}EJ-340@cMD{hB6)26AwTO#^Z0<-e38^B`8#@p9kI8r zH~#g}yYxWOEGy0RBzDnUwT8kXikJ zJrFNhINm>1omf7P4hFXMm9pATpTJRI`o!fnr?sff-IZWxq%25D;P#G3@yG!$A%$Yu zK(DvMcE~eHqBjpJf;C>Cwtrh)ZT{wsVF2fd^6vMV@oR78(+afW1qeOg zi5l!%vxHSWceI}QtPmrQ6p=Bt4+TK^t8XS3S|sbc-K?lJ5WOKi(9t$E9H&KXeTN_b zaKwm!k$s&nqgc-b0L1cXPJb*TUUAN_T9(!caWf&NZc>_#^mX$|$xn5fHgDKL#Ooxl zyedF|hDdBf$Xz13La*9<@}JJ1PsKKKr2c*l1i^0)epSE8YIdX|frG&4pR? z;HcDLgLVn4t5k9+8PX!l5r~@Q$bq79+I+02kBVMktjFYMR^f|^)_NL!Yo-3)pjqOF z#IA>wdgbDNKdvo!=5yCA7EA^m!yggdAP=!^xcqV-)))X%YS;I=UgkL zNH<7Cq=fYGwG0c7y8|Zw06;pgW?JSOS^7tMYGTX3j#b)(3xAtQ=Rzz0%xb{8^yqVa zhUVV_vMPXHKL7RYRoaFupprNV2Mh@@wSClUvD*U%39o9C+qmRS`JKRO1G4$H)O}zP z?aQ`W%@Hb~OJ%9+T{eay;9SYMx)J0I01VMR+&P_$o_c}UMmTmUY6GXPuYPkPI_mCWh_ zJ%IT6vSU5>jD9$}`g8q@MxLI28S-Uq7Bk;--n+7_;MLkl5)#+cq1}4gM-qn!;8`Fn z++X=>k2Y%y=%KIqx#5L=fF2;7V&f-z(m^iR)@rOK zwxY}|i5SH6U+|td()nnYtunI;F<7}EUD>rXd$6zA*?-(QEdy{`v7w#Xa3fK28xtWgrFBFjuB()%nfcY90LHX z`jItR^(T#p(#~TQ2LKh9IEzyC%W=`~iK^M6&%gda2rM_l{v)Wp%9)^dAku@oyCmwfRPcm<{fdA$~+(R4) z{A2q0pFANY`bA;myyf&9$(GPTa1b~rLv8&|yNyvA7zFiv^K-X^rjHB}lL4{5BlDBf z<+Q|XP?#d)`aiy|0?ewaYman;bTcq?=M3E?EdmlMAdSLD2!be#bT=ZUbT^2A(kTLh z2!bFXtawD3QD82 z_QfMXT7_B+GUZU5yAi?V8~_98dL@l^)<1E&^Up*7$OQ-ufJK9ctrL=%9G)oCdzvIPKtu2_h(1tc zVbZL}yh)am4%F7kQfi-p0O65hHkn%8Zv`hz9t{Az@R?mwwH6Z|4&NDY8)$h{Awqns7mX5 zZ#kF0RQ|V|%upK8&eJr!k4dT!x3N|lue@S}r4)Alpy2SFtdR{8x?tD+VpVgw@>(X6 zY8S`80G{f7hfX??2-%I%0oRLdww0ETSw=^)sClJwZRUB7sBy1s>hgoNs5#XkFBZ!g zYQ?n^t&qa7;szk-bYkbG&x1A3nfG*+L`IpZv#Ez!Z0|pd-MI2wCz%RpYpyX;`!>aO z@}j%UT6f?7M(c%{{U6bunye6p7~N}}A!p~+!qP9SAp(HLPhJjjLY=Oho7;b?Di()#vALx1j<4P;$nN!m=d1m@EQ z#HkZ0x5{$K>VQEYNt%15cX#Pg*x&#_6FR&$zP=l2X;M!;)j>dU4NW z*W_^T0HAlRVRc)urTrO^V!h37unqXVs7zs2oJ~C1le~J$m z7Ok~)GPAQuS)AKbNVP`g57Orf{sBAGrtq zVQjOgaz-fWNgs$5;e>TRjmNFzZnTyA7;i!jMZLB#pQEU`9g50SWE;nia!J`ec!^Vf1|$=r=<7srysAdG@{&ar0= zZc|9}z_JGbjkoXKZ5ZB_{DCwwn~J7-io#(^?m1+giF@wq(H%GIc!ya;hVsjX4VY~gc9A-;t37{H34?d|FiN zmT{A)tNpzsIPU@gu_BGKS$tbBpJdwlaTZ!g>g`2m#C`^BEO17WV@(49xA&io(baFQ zf~{>_h_bq);p9IW+b`JVjbNjD?p3t7aFEHEK0rN9W$8{%hQzYRMz;Y(x07rN09;P zfE;Fc&-L-rVXPlR%-S;99S>8_EKV#@vp65b9+4wh zaUP=Ls3oOFmwvmvJ0jz+dewua0{|M!nZ&qXng%m_-D5VzYf}xg(XT!VZhX_T_k^Y6 zo5l&&9FTNdx!0Z&galD^ z8q#B!1Y}I1Tl(X{q6EN`yYbg1FBeHOwhQ6*SDQCG+dRnMHCCzH z;O*ipgK)$QpgoDR8Us#r)OVT^4G=IG1oC*P?q#I`CIF6oF+kd7=xEGWyzkmLZjPH7 zi+u8lv`xE2&!hc9S?d*&3aEhcQ-1Y{Q^Y@-*-+YO=x6}Cpa=tMob|4(enLT~X$*ic z)&FU`J5uG@>g`maAl?x{QpJu4YL+uc)kFU_sWM*}WlZW)PQ1qY*oBRWr66qF0D$M% zs3v%h-Er2E;J5(*rF(~ugWLKT8%*1EnbeOSfs15>U|vL@x-e__5%7{vS5o#2SNV&j zw3Wk}*>qU@kP?DCq;&jTJURWbkqJDsArr?4cp2N*fo zJKx8dtNJhvl4JpdQTk<=RDl6MWveeGWy>g#wVXVadBJ)aC#)SGs|^~h@%-K>atY~+ z_rjb+#wZ;4<*lEiqjpIX(PSl~0Lf`x?mj>4I?`cYtV(DnD@h{kO<=ZSI2rHjJ^#0b zbTapLH&$rEC|7baBqu0ZNyc)e~k*REv=IWk8Yml`fgGKyKnLE=ZANXN*_c6z{cwj^Pb(mU9wo*#v@$kX3 zD~5***)mHXw>(rOaWN05KDhUPe)w53ZH*9s`lMk>VveRk5}y#?``vUoW3YbCAee>( z%u3~(y|MDr5)ZJ{kLeFC$i5q6%g>YL%)ySrAOJc(>SV6`-alKFyjD^fJV_OOZK{z} zqrWFhPdzI*50GQ@z*sgiEV9_=u=Y`jC)}^neR@)TqJJrCW zFvt_Fsn@P;A1rgAbx{D&7|#Q8ogd;vT(`81bYJcTy`=MWVtIsN@$nXE z^0s#X(EFz?_LaYOCapvN>>IC%lsP@v%Clar*(KCGD2kVkA?RKUS33T`wQYsBMaSpG?b_U^da;qs^SL z@DTOvy)}&z)H@pYIMmGeL;T!dXi~W6L{V;IIo}F7PQ!MD%SrJpFH8cafO?<8Y6+9)H6t@R}kAl%;13jKMkdK|{;h(Q4C zi^*k_I_-{nzoivB0BHRC*3?d8)b!o|Q};gE#(Xo)iXDF#9i`mTGT65GnZ2uZ(;4j# z>8)PIV(IQrB=7xyJa{LRS2Al zC+&Ugtmi`Zqqlx2#c6v70L;!FJ=$osV#*4^ykz;KC{M?>0 z(Oc^T0OXwR^0w0$%1Zk8yHcE1{x8VxGk8mbcuxs4`}MNlwL5ai0RX*^c+|m|^U4md zYi2p*l%?f;m~%cdI*1jzXqnCJfYUK{tQPcbtj|YKw0EpEr~_9ocKNwo!zXfWqD&+j zz|@mdCTT&x<+bwkPovNywKB?*+lCwoMX?{o_@$Utr9 z8|}z^I4x{mS zr;_YCA^pa#V9cT6KBOLmE1RQQ4faiuHf86t4@nnH8jck3BNTHNyVbNPm23=~LNgqY z%0TI8Lx!nG|7{F=*DIF@XEc6w^?~4^F@dH9K{hqH(O1DHvfk6js9MuagbAsyIKmXC zr7|cFQz5pe4?Fy)NkIeXq9YZO&nd)Qr0&Q6@@pfAJl7k@bssA=0MK~W zjCv+rG-~L(M4bgujiiQj@hzDP6zaENWU^hajF$?vPtpR+fZWOUnOuLd*&L}O>nDHG zC|OAwYz3$j`96(4<5tPV73(JefuA#P)inIH|7nwq!It^NQEZSA#*#xGCZi4=ORhln z#SdfApQ`Y~SpSUK7VK02IC?00&*&lLM_*}Dxc622dA?kCm(8sv6)MtAM}24b={N=){{wEIYpstZ&oUj%SYNN) z^gUVDTI+QHL?&*M2TAb0cQ#Gc_J!WS%P#u7PX^hQezOpuAGWh(x$DYW%f{iFWV@JZ@kL|4!MrN%OGc1OUB%)_=99-_tAhy13-*@m){tVJW?bL`t7-jqJswR4WovXQI+yX#93CbZ$ zTBq;A6uayMKsk>OS$5CQeN+0h2JqV9_zS0;#UadRGsHQfk7=^eu}Enk$63ZsX3;>-OCY}xU*S|{-vqb0VDz+9z~7!k}M%kY-%%L)8!9> zO&S0+?ic;N(QuD0Y6skExCR*=BDj=4k5FXrJv{=G#2}0!%b}YI2kFXR0$8N-j6?bf z?*vN-BcS(u@$VQOT7MVjTwY!38jU*@EpNOmB%BbBjyR9dX?0XFMd`!zbDq1B`(Hgx zVEQ9zZXw*#Y)!QKK2NYocOyTB@-Tv&uBDi^L`uk(J>7{cT(r(ol70{|HG|HgY^C*b zxg*HX81}iUrqtN>?q(V!kB0B33N8`>0R8eXQ^-w2ETQ*l(qm^{b|ri5;f6X&FzxSq z{#zvSw9#|Y24Gwu;%o$AIcP9104YQ=)=mT zuci#@7ymb@FKZ0|b)gTF#%}~1-grr{-vhvr1xCt|r9)|T%-Jdz0IY^#gxh20nfSG| znz|jr)*t{_M~gLQ6*@mnEE(4$@FjmJfce_PmNP2o*vm$W5em_V6DB}>WUpYu7%3?| z3P9ikbvXdgN2B`93}-zMen^6a!00L0j<%azG|arit6hlgLnO=S^U~8GW#dfsy3th;9wl8}_uF z0R(`YX}bc}+=SC%JqtoYHqxiRtT4VIF!e0)g_^AjKJE8v5DItD9K!!qUPh7$JT0znn>mb8G2;3#FOZ_}r7@^UJb^{t91KlAdVE*-W|e z0Il7ylu#fu52Kzhlt(En(+mPh@{*kgk9)|9$dUvA8sjQ2?mgt*JZ5%*$1Gko{bR-R z&feLOlT{r0J$JP)bAqqeq~4i+IcX1j9=rh2a@La)Y>7!)pQ3GWaRUJ8f7!UFN!z}6 zf?Mg}`aUM7Uxt*cF515&itT;sTz_tVcNJ>`mj+xybUZU>) zv5Nbg8glRQ4A1YK)q;tw=8{CQbgT`9R6;Dy!Qzw?F>AIcx}@E!6~?qbBV%`EZ%_M& zeJroD2=ln|AEJcO-S}o`aP9F;F1u<9+4HLD>v5+^A1LX(76@L}pLQ28SqDEfn30rJ z-1TkoWL0W!2CL+m_Q5m%Gp3O~(R!>A}riG}Z$RWF*z=QTkv>9i&!}REBOljC)?* zFUx*ulAQz>=}kyc*- zqj804S&aRCGbWuBiVfKOlt8^pEgZ{6C~fv-9Jym^8y_I8qUXbpTrL6sI3cg0Yv(;ky#`*5d%Iz{q z+8vX|)NQ6nH{P!Cn1&H@+&Y?mj5GsV)=41S4uj^e$t#1jbt(n{fI5l+8-7>*p#dC< ztG8WI&jeb`>meL8i zR)TxJ>1p}1{)LSxr_E4OlR<49GLlixg^6ez1Z*j^XJNtM3YkH!>@DDB;`>_mOcDTS zjP*{Id&nt3HoR%H-r0{D10avmz4Ol9V7UX}kz#tk+gRNyWVMPHNwSs7Y_#HfOBorg zSTP7A;Xm#`=1WCu_?2ug@R#+<9_=BX1coIS> z$4`Mw%HK$mWJ5iJEaP^;XKM$weq+l~20^rGlK*H(E3~eZ## z0B!-SPv3dwPG8LljcRj$(gi!~LITm51noGkUY=(6=K(_F;_=fujAIwNTj!qA_^h>V zpmhpXn%qwL^n$u##oAHd6x`_A$QXQ4tX-=)(e#`+ALUCzUbQ z+STV?WbagKPAdWJkoV{MB;0LT@&$mb8_8j~&F0hmUg z5%giP%J3h*%4^ccZSf9Z884&CX!2F%Fem!}09kqe`q^PVGu?8S`RF{&JWHy#CsrcG z=%7&k>sqWFZgLXgP+$=KZ411uLqA!AW4R9_-7*danSl)QBK-z=_&@+0PAAq#Bnx)y zmEk&&;Dh5U$a5gJ#PfswqyGDAZ>eBAqme*A=*?!$rIKytWsnQ7C2OIg>YfV=$V7_} zkf=9;sR^eooiC+n10VosEGLZHJLC`6*K^V`bOq4^MCM~Gdrp^zx|m_lWDo#+gB7C9 zjI8Qhq$LReG_HQBg_$mtTbfZvd^9LUpF#8iN#kia{2PBKMVdv3sKuwXXxa88&<`p# z?{V;qfI$G@E!4bhGyJV>(jBbU0XRWM$`-zI%m*fIR2%X_O3cnVFEym@=x0uCaxWB|C;2*hA1?C>H%bk zn)s#fnpchmzk31vzv^R6EC{(ujm;znDTZm6mwv1nxkhTjs(Y;^~#GB(-FZ^l}tb?>3 zH7Hmw{HnQ(ui1An#4JoC8(Y0#NuPU{HA>j)IsmBP(T{?Ylh5C))qC}9fUZq;g(F2^ zSZY4!vjcKb%SJ;0&{*Dh74q;6o5@X&6uh67Z7O6A&L%#C8Z)ypS|rM()}Jixr^&z= zfXacx%ad>71Uu3H2vEo)iAFFR&C{N#h+#)aOWBA=z*SQ`LXO#+^$5%`7c&2x*l2P^ z$Q57A@M=N7d`r#qtV@G?Z%mOJvTw9*hv~gm0`=NIyN0ukhAAdSkTd1F?K{c-vBH@14Y^d2}hw{#dg0zly5$ypnOYo9nO8MZv+BxA$V zYDKNm%+BqQmxE!~RWBIax5OFdouSU6z|y zjYoUZ4;~w1E1zDaC(CGRk9H}Qko7a_(8&iKUbUpaX4tEKEB1#p153&_S}BDX!6<7q z;kPC>Ilr%(l3+meK-7d6E?zT~GXjn!8Kx4^hSS7`fr*ORav;4a9 ze6ZzljWE#|M=u$GB>)Cgikc&5jkcbv;BEbI1uRXW%!OyN#3IKYSc0c2mI^=9K;`h|jnz3EBXqwi&!xA0Q zVI0fsApNkVnSr!hepwdcmK*@ki(EGjxpj%{r!GZg&bN>~=i8J=Cu^@_KwJ_H)6ew+ zW*;FNt!&O`h!&9Ze#ak7r4@4afqP$()P0390H_z({@YYo9Ly{LXe@8u4*Qf`Lo#R9 ztemOGZddom@*3Z{Ue7T4!}SlOMOrhsO5L&;rOhvUS8dzc z5K^4v2~wnywfgau;6=edMep)`c^_9OA<415AElnrd-I3a%)I4F*@1fA!Wz9#Ezwv$ z2{){kx=q_Ib)_W~mh1qau<0D1wv1c*@AlprInTFCT`4I-yh~^fD=-TVD>s|{5L^b2 z%@Qo$kX2DOy!o`6$Xm9!beFHRDYE~tbb2c>0Kk)c$K03C5(JyZ1R@8GF_#%UW0`Yl z?fW0S@92UmG=7DY``&WQx|0&qWZ7XCb3V#ETTXTD1T<}wJ5svJ{}>|-x%H3?)yZQM zi7cE0;#-jD&n7*6yCbJuMYNX7An+qAlryjW7hG@yfW~vG|7~n5Iv zL+&zWz(8u<)GI6DNIjDEa<-SB*GVBGhK;AkL`e+gaq_s4`>^&69-$2Np3W01M&OwA z=jht92DO0z05JUarG$^Qkw0~hUCD~a} zUG->5S(L+VOmv%A8d6F!DPu%vm*;;HMi-Oiq+R&yK~@T<=}Diz$z0h*>7VA>%84)f z=qKCR`26cDSk+}+d)Y$>w?hN|Bfc(u{XZHrFCbc(Dy4XZPONGF?`&R%Va>1a-g?WN`gIM(0#u z4k!SBMDZbm;n8NZ6rWF(n}XI68H7=A)gTA=bS<)IlOkJnawY%+5mhP3W2Yn^ee!z& ze@rb~`StEUCWj!?+GJ1%82w!Dm1de6U2>d0*MbJ93;baGJ$E?^oRnv>=2HrX$p)xL zEB9S1DBVw9+a^6g3&#Nw0M7uha4ruUr-dWQ`;!{OVRL&ziSCuukt!_bWsiK)Wwd=V z5S=aBmDv#nK!-p4NV<&Ov4b!Gf*OM2$n)7wRcV5T|&~l_ysykDAd7eo6rXxz=e2zc6GvV zxif5EV2cs`9r(c$GA5F>wq2|CgI%DF%zX}ImZ8EP`jbF>uS7@~0XoQ(;ivLUc7|IQ z^vL9|#;}=e?f~G1ukJG7G2^?)HH~1h0S2&r%1sq`)H=OO%B*U$kR%(Rdl`3@0|+WQ zwW5qPJFU})-YB1EvDcv$eC4+G3aQga1b~fVL~MT7rQtB5)ake%?#tt$TBrUF{NM+f z6Ub^*3rB(h>@;bW5l+gYN5Tt-fdFlJ{Hg(U{OMSD;Q$1{$~V@Q<&Y8CV~(s*bT}+b zjcZcgfFpCk2ElN_*1vK7;2ILr{Ed=2dp`;`R{G%MQJOE1REjcR&dpq^7(#2Owc$SncMn8BR!G~Pz=OqTZ_6k{~}s{ zyyLPCP}0l*;+HgkP5)yHWnqV0AbyniNHk!nN-+M8 zZAaE&m&@a2DI7ZLHJVH`C(yg}0k~DtXp;})Ep8P)A7WGn1DNdGSd+%<7FjPB2y`@O zAV4(rGN4rJN=s5h_4$GTuvGw8u4!isp=ZOTI+6PI2_QiIAKr941L^I956@_QB5q2F z0`NigTaGX=m5jNh9!1pYI=eSP`h06+BfZ3@+G*cIk37Ow`o4`mY@b_W7Mis7U&|9x z5ZV*6dHKD|KZ(ss!?~I9^hlByR&0-s7SLi+LJg1-`;S5blO?yu{`_RI4n7h@7z3&` z@v8B)am$j+k#smOp3~LK>F;(Lshu8{REKjZwFeY*Qe?Ly$@sBsc4BFB_OVL%7he9y z&zAzk&zG)wx1O{DouXC}gDeQ@!|XRi^|+t~A;mq8N(YcE7pUILze@8Y0kb@Sd`NBo zgv)XSZEHVxOJK#4?K2jTX=jWENZstB5iSx}n8{zsRdjr$q6)UBI>QIG)f}9!Uo;39?dBO&w(DubSF0Ea zyex_+Xk4M+KHoV;snmGHSWy10ar}|2^>sm#pEgk;5GIeln%QB(d-0@lb&4rUnwAe3 zO2_-`jXJUf(vH`FjFm^rR4ktnMu~d&q@FaHxW;=M*&hStXmvBDl>F(0mNCjkSiTD! zU^b`BC(6lEPp23OhAJd*+`=*1Rir8y=m*WsK3 z8Si1O@Gf(i*5r7xNJ{YHgfihJ2+&hn(!@w|UGChvg>vGfB?yot4O#un!HUwXw1RI_ zWXeM$bfXV|QuH&691Kq$0|An2@BgJcDigIP4ChFz6AS$+iH!_J|;!ZKtJf;sK?<$8$bZa7cLdK@LcmIMa~x~W!gH)Si;63 zceEu)z~o4G1X*O=-=p3dqjU0Bau2_OB3=v|KR0|%1_*qdjQhgaTG6xxB|wkzF^P`7 z7Yldny$z#NNnUi7iOV9U&?v5mZFP44R%V?HqyYHs#7PG1HNmCgo9DxaKuwL>Hz{TF}>Y)h#~qr*v*+5l;z6$f;Q`cHB)#(VTaw8& z#o2a^*_ z#J)GwkXT{rl<<1X6s5(^x#>W}ZRsA`2HSdMU3jt9j54{=4at+19G}&f?-s1}Ae{zC z{R|>r*qlbU`^}6pCS~FOAM}ZrUJ$$ap4K}R>&f7#dBI2!@r2sv&5Fm&A8Lh{*kEeS zQ3zYx9EJXEI!e1bdIb;A%UARdoVAt~&Z5p#Xur%5dS)<;fB>NrbO^o}c>j%$^oUY| z4D^G(IXhTNPzz%`wFUrZMc4r!Ms$Hx=8$hTt3LGvL$&>>x-x}W(5#NT0kHCU5-{QV;k+k(mEIj5Z+nN zCN*Vx0WBB`d1^EOW*_TdTxD5B-&2qj8VmsECTThq!LO1iOW&DHUeK=p%V-(j^{%PE z13$R>l&w;tWg;by0JCk)E_|fUj)4h z*#y*M1*b~$(&=>-t!LDxX`m&~x=^}1kup>2Wr^%G41>OmpVKV8?oQcUn-|F87zt2) z`nL^r_EF?%YYJ;gN<}jeozagu1JU>UVlr}RFUK(r2nQfJC(e{?j0EXC1`q)9#WiD> zx^KM4->JIM5*$j;G5<)l&j4>EI4GaJ`R?t%<*uP#hptV_u;@|VXLCL3lklXi^eQ%t zz(%_z@TJ03~$0_N4_%4mS}=8p*gUHOkLVnp_>B^`>(RY*M}{fy)do_5c(iya{o z7wIAyDX2n6FePghu~k+*{M@-5r~U0c(gy88Lo}9Pj0!Rt*rVG4xw23qQkoM3T~LGp zZOk%R3df$v;?V%ux#K-2W}uFrA5mXgyEdioJz;d}xXn0Yxh`roU#HrA|JfNwRc8FGbM>WXWabEVCMfclq07Mi6%%`T&SIBPWNF-5=_aq|_J)(4^s?8qnVl z)%CubJb(ab(ezs*gy%62wbamnW5mZaQ^-gE=HLRQGI^8MJngQQLXM&VuXsYpQhd5etFInX_Z;Y; z@@E#87gRSGiGGX_&X#>Di%HE71O1>}wbSb4Mt)~Rj>fN5cdz8x@W-d+#(vmF-j{8S zbT&2YM!c|*qBw?;!WDM?a9BE=U5^H6GHq)>H+wzFky4#X4Zt?7V`Y%E{79h7j|KHF zxJkwZYjXfqBohKazTBtI;cC)!G*7DpPlPkkwNI6Iw(wFD0S#il>d^Iwv#qf`cgyfc-OoAXb_CaY(| zG(X9_cfae&@9d#zT{~Q?~(H3jhEs+RKxQ|Pd2itU<5qg006eoS-jUT{Vu0MnsK(^KjJiU+_+BChcVmBPSA&w<5>#e(Iz_gw=<-XjXfXnc zhxqiFoN-WvF$I5iHUd_*tLl^{VztngSpe}xj2#O!Fvhq&-D{E$EwMoaV$vk@QNQe$ zW?~Z(M(Iy<Hz;%OKm0GgB**r?pH_q} zddeCwt&6eP^(pGfBF#z%0Q5d<i@N&@@U9PjieLxMtEStA{<8A9&>KbWl-V8b~ zfYL8MtJ_05lMSB?1bGeTG&6~Fc>Us%d8<4CP^tqU-`-oh_eLpNTL=J8*#utNq08%+S1 zNMvyip?{il%Xx1Nl~S|u7og1qVjW3Q_uG&s%2JP2Sk{Q*2O zki~uHaD6E~`w$Yu%|Jh>!tB%1b3;K~T*Ie$q|vGK$?&Dkh;>wO)b~#AX>+_o%+mA) z<-`Ks{H_A!HYV#>i=EG44HpeSL1t!jv7Ota^ zd}#t|e>azQh#vlYMffPh``}APyAK2)K(1a}RswV&!A-jmKu?b+`el6R>WW$6$z!0a zR0~SA>a0|%PGs0BMXA`?b3lmv!MEd`V^<4n<&_6EbRuKv5!T$rb85?9+7e`ZSWPX# zQ(LlD3l-1(_8D;Grc~A#_@a5ad zv-n6A2Zp0hFu_rJ6< zk0i-5-HZICD~SsLM5QrFQ#p>f>5tS>q_&jqM*uWlzp`MJZWX?8)(KyEE02t>wp`0c zJ#z-6vodBgZ|=!4TBMxF0DwqiNn{v>eoQ2az5S;35m7A3 z3&NedOOJh{6-aFy6X%}scKW<2XE?8J>ip!eqYp$`XLAdu^BAy$8C)Z}qBVoLU(I2} zxbnHW>erG|&0Z2=q!MyF5=V<{QSQnjhZrf!Ng0dEBx$9?AiwO-Jy|dP*D?$M8q2MR zkPEZW0C{b%7gE48hUpr2g95#1LAUeY$4ug&iTPhvL7NP)E@k~R`W5!ok z7erWI06_1DE-p5jF8JjRX%<#e^{63R>9$wS89?DW^MVZzfHL&K2ub_iF)Jr&deqS) zumS<7N*^{6DXB_*Mo5sA6hL_KDTDa>2|SN>du%oh0{zenKn$o?HLD}qdClsSoxEeF z&JmKdFU2U5wAd4BpTg<`qi}-99U`3IbG+VKMsFLJ0N{*@5s*=_Ft{h)Uy=_EVBfB? zHnDj{Z?ePFq)s#dYctSE;s>dXPMTdyD{V?^okJz%Y;!ev{QS3dY~_Rk9?*M(lR2H< zk7g(r^WvA>QmnRj97kY1AcC-or#sXjSVB$7ycr;UB3q&H!4j%Pwd`x8c8~-B$JV6v zYU_1yrXK(_renj##6#Yz%#Ev2Lo{x3c!d$=gLri`vus1zDRQhxV(FJQ)P8J&;6T6! z87$NGGR_f$%1A9+!($Lg+nyt@LmKM7JcSNOrP;&|0A<~X(;hz{?WgUZIL0^S&?h z9=cUuBS)}201%|K%loPX16qj@5RCb3ZOv!7f?X5<)`PsaFXYZjj@~#B69gEvb(b`6 z%Y!`Eg2c#S=8b>fm9A%paW5$@jj9)MBy^LBc zCB=S#>158iZKc-jHEIBWCukGE1@r-VGIjNQSU{H6_UOAG><1Pf8&|Fd*%L7gWKub~ zpcMMO`ekiCk~ffwQF=AqV~q6L;=U4~rN;&eVW2vL3*0*&se=NqA%ZNt0H;$dP+uIUoYI6cGlbauE}^MlU@{k@g2c z0Epl8W9Cn(U*wl!*8)LfeCj3LYyw~QPkn(;j)I3OnJ3hT%u~FK$HIGTGa7+GAdTa3 z)p<{}AUIUz@yL4X-)Rn6`J#8nti1P7>dEraj7%b_7r>#LopWC}SvPyfbdI#Vtc%B( zY>EJgeF<-FU=jD9TV5to8{+_IPvT`0!bn`;w{93;>cvJLfFLo5SjL1e=U&n}Va5SK z<2Z$jn<{SY(Y{hjb~=}sWQxXk(-hMm@-8m!nTvX)Xg(gW>}582EYPmp4I)NaVUr$R zFV9*|oyWI<$G!ppaw1M&Y$1ki1z}f%%io?TYhJq_2QX(cm^-hp=ZMOqOAh7*05JZz z?r3xRa%Asw!BXn&HI7qwy)p4sry2zZ33=r7)BdZSq7p84O1V~1bQE|3w z1EfKmnKFX_kn^WnZRbl}SR(`gjYlqWuXzFUnNOvX(z329AE!dd;XqI@$92s-le3?` zupwfNlMQj!yYsbp*)#wEISo22cC?KMU%X0D+1Qd3Nuhyzmr=dp+(()m?)|Cf%Xk8c zJudI1I=XjmjD07N0=m%{lDS{0qi)QxwKt)_G}{tqDCEGpP1W4nh8KXC{s|=xni<*5 zrz>Qrw8jSjj{xm*04p^41F0}u7y|$vG8d098Fta?va)w;a5abl`Ce%7z#3k+Z-g{B z%R?e6?m0F=2OOJDb(km1rjn5)ddEUR&fp>CoQQq5SG$VadbF*mt~Vr-Bl1zJPV^g% z@kDgLHQAiW?W-NKOZmI&;%NLouQ6!O{q&5JK&IXtC3Bi<^Jr`*RJ)z&4vcK~)X`Fe zw&wv}&o7GRa}Gkl47#@I8caqZukoXym7N0vXxur6T5z*Hm-8BbP=92_VlSULG*`Ot zgEU>+nC&F?)Eq}CLz~r!$(*K^tOMQn4+asw+jzDPrSOJchb42RQf%)W@3BS2$3b%! z$Pg?Mwm^D^q<7f7Lv;BA$)!B8n#+o!` zT8GvS42tjNuD-8+SrJwVb4XG>;FYchKqK{EHPmU0mALlr6_z@1eHD#y-1{BM-a#bo z9`Hi);rc2-*gRt8$pE$R@2{nETS*}~FaS(*y!rLJuVt0xIyXk3{~}7yt5gZhmd^TJ z*^Hx$NegvdaGAL7YSP}vChRrOvp{=U1A68y9r!M9>5NY?T$4f88^P~>J$EZ>g?gt? zmPgpz5#zgPo-8(EEGcLsA?nht7cWWpAm-Td0( z6RjH`hI0nEk#4QrHhZMQ%L=4~&2xC%erQAD1trq}JPuLsf)wut%jg^hv z_=?8pne`%9<7Vxzp#ey%3~=?}UjK$QrzQ>68o2Ep<&B`-%=~U#IV6qI^*r?c)GIi^ z=!Q{$J15NFZ8J+o3)jrin9oS#{5o$lw~xO-_FTfbQ*uQvSEJ{MaGb}-oQ!=0#>g7J z(shKqkkWlPF$nAmzyiyyt{_ipx(UV)^n)hMJ1XyzbfqRie!$ASon&Bk1;GF`Mo?y6 zUT-)_=R7D7jaeV^ILTW(N@;CFamA@iG=7xRf@ENe=`&Ft?sfCT<1B7twkeo6`^2PI zCrJ}`>1P1wpR~81iMOklPSGTx!S|H1aAWF9n(xD*f|5(oBPZmVj2mwOWS<7(ETyz{ z?uU}pih5=#jVyG=n+4LVkMEq-BtfJ(qHJR+oi(l1dv{7W1uPnak3Y*7t5`0{eJA8o z2$hM&&Cw;O6{18U8iGlYz4sWNNTysj7BL7TU;~mv%djs3s$MkaNP+DTjudy_S+AKy zZ)l9g%?6(13>KT)98;T(J}J-Jx{J1cAUXpd49b?Lj67^(LEY()2Q+M%x9di`>o3;K zGl_%9Y||1*1MU8M`8Ec_IS2ORZ_gteyK`kU-auWBrVjvkFDC=em$)ev=vHV9 zK;z~~qfO&u)zyWHwlPNw>bU|x@SQBf5y`0QK@W}nc%%*>Lt7`DQL`e zlN*{^qC@k8p-dvUf?3eL>%vfHZ3`ybdeRJClp|T7G3f6{p91u8nYAT<&PuOHZMsU5 zAP4Ypx;Zs5EX!5tMH&!ILjizL&XbDRm?Pl<%(P5LWs2>Qe7H+)Oj1QJ!+M-4y`B+Rdksqi?1mNcBHRkUA za?#nP6WQJYK;!5Ki=4)ojx`**Ay@~v(tH<1EdX%m3>#s@`1+yY5R3wV##<*OF?ZMB znyTJ?>b|}NjhAMlHD8)e7N8NZG%=r$kx_035G#-NJi#QewVB&Y+7F2Uyx#AZ@p zGzc2q4~*?qOcuM={N<>A(2mEi%VO8MGlKxY6peX%xVM%x8LKA%&={9wqA^lH>4~q) z_+@*~Nm64yNngqK=Az)<0YL8`HppW1bo{38fGpeCPox~~9cPc3_H@x>gRKAn^iBs> zOz(}#J=U}%=0Xn@vbc@c9!g;vXIL{)hf$8b7sJBDMiUQa(T+iNbA5%%AokwgEb2Pdasner0IQNqH>xP;?I%&Opnp$1d1iGVxzu* z5v`5tw@yXMmu*`Q4C(-*awXT^qYCm0GjuM@%NaBN+yQwT^lQxFRTYjpntS1 zw>RpIB9P~14Il%{M%?()+JRa!EcYc8$ToOBKJD_K4&4Z5|LyJ@Y{3Aa_wg4_ zIbjlwCv4pnO!o&~&oU6)T0C5n!gP1@rUG(RcVzE?Z8OL^E)|jS=mSz@@A>+wyYg(r z2EgC=#@d0poM2K`c}zZw`@*O_BvEo>tOcOw?OonBUNxe%dho-N@yu&1nSA%P?XqCE zDflXtG>CM!NHW#vgYVTnDPelR+WmFj@Qf;pVoMxS3hDr)Ub&aX@U`mLBb`anAP9`V z=bWF;nD%ceGwN*0-X=!{2uov3>Wz#if&&190H947Gs@>Fk_77r05on>Hm7O)G`euG zx9u}wGuDt&VsYN!#(#O0=b`zrrsuNfx&&J-Z&5uS@4jIP$>sHG#pQh3=DO!Z?+f~X z?syZ` zm_w3QskBr`a*jECO)&@=sF%0=Qh>f+qz^if9+>pOIQc}P%|<~T_`zcaY?kXB?n9z5 zMnBjOTr)*ob!4-V1o}aPQ?(5?Mg{?Z%?`HSu8%6~l?jdk0HE>sb={3pLjp8Q@;d1V zdO{3dPrn<`Z+u4w+g27ds@QmTq1;)pk__qq;GBE&8gP~k1%vat9}FN)g))yrEsrXwVQUodZ!dXyY8bx$?We&p82~iC*zjZ1_`$P;T6xTHPm<36JPF|)Buq|hwV7J}>|_9- z_cw1XcN&A?>g_XYaiRfCqdgVP>}1{O-}t*UjRo&#)V|M>l0bk)J{e_9AXm#<;?Pr4&*|G5xut+(O|;FSyGY=f+Vh zdIAaYkUBpvFtshoZ>QMF`304ihj_1Rw|Nt_I5O7j1g^?m@4vm zavS;mV2s*5X|w^>9N9BCUP&N8Kd;ShKqsoU305S702ur1ic#dj6W4=?)BIo$c z$-#;o?lq2D-PVxOU`}Oi!L0QjUNFE_nymFcv)ctXo)GDhk+AD2(>P?>%01`tl!v`y z?m7FK6u~~7*J~^*)(}l|&yn5~sNjMchK%mh76sFsBa=(Bob|^&vs;Uflcs$AClV%X zD4$1Kree!X^w?YYK=5QZr~@cYf@d~Kpy#w`fN0_e3zLaB}XYlVH5iC3*p80Ny3i;kbjilYIM}RNV0wo7-4ep@3ffN`5@-}QEmXI)x(gp z3#`}^tNzrnm@`072Y%5{`*5jFPH4colB4^9e+&+Ihm{}b2URZ9D!eo?nhUUXSf15a zb?q;8Hj3H8WPPChNse-u!q$2UK_Cr} z@Uct${A!rl1b6`m0GWeYUdf?Uu13$Rv zqXb%CXuyh=U_UVTufCOCDI5m+K~?T23U9ao`2l@DPp=g%4HpL>0mxi=fD>u4HMby1 za=o@D0SN+PVC%m=)Co;W?5 zEdVALEpJ>T&hj)`@vVPKvMQxuGqGfycq@}0L6S9_=0o*8=B1CkDB^oJwj2c@kR?mZ z*57s4%*(8Bm88|30ME$m(NRk}e})cZXc|3iLHMlT@4yfK;rvsW#IF75 zT8r>$WUZ$!Ii0>#r>V9IIl?9nkS6($W`wf4ljG|qOlvEyug>P3~$ zQMGpkwQ)rb>DUzs$Z33dW)r99Tl2EU6mI&r-c{ko%{^udByVaoyng9DEly_k9cqj~ zahc@n(QYKvAnNnr7{(v~_9jZ^C83GY3u4x4!();FK;!RHj&mA={-X5`Ya8Om@u`$> zNwLa0F?4=#&t1Kqaq|XS=dxKp2KW3cMG5pQ_b}e5IXYM}g^7&cNGft3%_F4D@Id=9 zwR053Aea7FBg(ih*69T{W)=W{<1sx71T#C_W0nRp1~$0YYr$qv(6dI|hrx8`X|g=H z=P6##crcF}*Bz&>iLeR342|E`kYbrk)T~Kx!Uy202S|2qtQq0{vO5~URtZ2MqW^0W zlV3VH=FHPYCCi>c0LU3co$hn>)K-oH+pk9-fbix$W`1n4;lTk5qi|*&lc$rz3le4R zCmXfVNwR2l+Z|zmJvNj$^AQbTlfVcdC&8^GPVWiYPmFnG_p#tjPCV1YCokoiQobU+ zb%JDa05~2QD%P5x6xL-CNI?7q0PmPBO5ZtX$xM18Nk<(eSiBO5&Lrr|1M{^`BzgQs z+vI1zGyyEfe={^ck~}=}g|pcp*FRFN{nE%>_az z92E*UQ1+5e>a2YL(EFW~KRMc`cLkNrK1!X6wMm30U5S2q)oJWh(XB@7JumM0d#`7? zZL)Z1q>g^v_^}r%tG1qObnxnvW!hp{DtJ=2NC1=1o9qb|BLG}&O0zgSXPy=#lLG*x zvbmdkq7Mn=+jViZPjKTrq+&F_J!YOG6+E!LWv;sL&CV#Jsp2n0jW2rVQYAUL9^DNN z^9;f$a=HG-@GxiY0B{@IV=C>FtG7B^t@8eyEO_tbUlOdR>wK=p7@pToCHFzB6ihz=Af<8KwUtlQm{55`hH_dX2&1^zFGI9L*C$| zePX_d*c0sX0HE>VN<$q9Hs3U??B(Bn)gH{fx1ff#y{&lqY6|4xH@*tahX9~=Uav<$ z*?;oG;K*OVi~MpoVA{V`H7V=?6Uc9pQqQ=_dZIu)Iq`lg5v1@U35S?*O3p)md9RjbX7XtELJzlM+#(k_p-HXHo_TQZg1U zUa{J?$xcFgE>2gjeR*8xO1n#!mKe^85-N!#T$mb0C(&pRCR8q551qR!yp zo-2C>7cb{!LcNzGdZp`v785I%Hm;M1#5bwG7eqV11wn6~>jl-ToDrFlR zlMNe`-XJD<6++7Vdgs|%=B#=EK#Ej-$dh#3_<(08^7*OjU;Lz{!j0z#Y} z5hZ8Ebu@_(F{Q~&-7|^UDVk;@CKAz}2#r*FF3TEh-vFSoTnJh7ZB5-f)7_EEWi*y2 z)xsV*EN|6rmWbN*Nv3<|1YC(4AET~UnrB+<8rdHgD(X`m%q)Za%w`*(Hkere&{zi0 zuv5yqUSnAzhkZaVH;IT}c_9zZ&rdlgI35B3Qsjhn=fJXBIxP3CUSr68{p4;=W-E4h zkdvuZYGlcbAgx}Y-d)MqcwS<4B~1>?AAs)E8Y8+OEB_Ijck5bNjslQ>lwx_$>y;|z z1EZkvk}~Z*Q|=HwWWqk3?YQ^U6xXX-a!lx0lz)QefqMr4y8hEn@M6x+8dpY(qFLO&r?t%96DJg2Vrz{yO z6IRcnnPvI`KmiSs=*PsJ#RK0ACJ6vEt~_DAS@eiEDT9^{TW1#<22+hK^l?Y9)_Le; zA1xs!i9voqtD0ql<2?Xq+&?CzA*ub%oZ32Bq(waW^KF?hwu2du$z*I7%nA`I-1)*K z<EqoxN^5|IcxFRc})symruSe@J5gZSLf3ix=vt{803y( z&0+Zey67n$lf*~m_p9rEY|NpyPUEOVaZG>;sfAhYJLp{PKLp^q z5_0FdvS{IUk{tJ99$4iF?=UXj6U)rjt=v*G%d}VV#E6$+a^vw+{?Uz@94re^{T#87 zJ}$#Hj66w@M%z4#lR*H;RGPI-z`Hv@KL8(iBS^10{I0rL%!(8M^qyw_J%?e0@fl6? z=@mleVGDUxQfi#pW1PO4P#C9HRB#$)5Jus3Nce85hmSPVELH%}Se{Y|c}kcibcn(- zuZ76EXJ-8{r}Y7FNwMqh-4@l=N@G$wdbVG@RYx;(XtU{#b`&P19MOz>jnKP%YNgVD z>B9rKs*+J5{+{=OLpVl2@8egwac9LZ1!I1ym@IfnW4%W^hd{`DUHdVb6lRn+`*|q_ zjYA>=GkS%-@QuPUUcO!Vmtc(o0J_gMPH(&_Q>*+s8!{;!z0`>pq_bCr5DXlq6kZ93^4BW8jrnb$(@1S_f>Tibte{?I8QU%egpDn4 z(-7!cUQ9E2Rny>}6H^FA<2i-SILq%){k};%vvQ_>6Xf*O_dr`UhWRETT!G7Si zoxYofSdtRx2aS2Zaj+yA1c1!$wc38F1FsYggwmKkZE3w{EFn2^%aF6beCn*~n3)ug zzXO+CTa!-zyuE&&9Su;7fLsao1OI*dOMPfk3WtFn$XLy)ET3sl_4AsZ5U^2H1>oE5 zz#2li=Bwo9jeTgG$(0@W!AqYc)%*WwAbDl5A6Tr7@1i6>uK@Z%N9P_6ZwL?&0AuFQ zcf1^4GNGF9mLm2+@WvC^$r+!T9mW-(l+Xc30;+o>$bEqvo9YESEk*!2_bQBZ0wrFF zbZG6r+G(kcBdv`z3>xFrqa2~u-7BOU8&W8J1Z9LKHx@{%w;3Uw$v1X-7WN@)^vnfh zme;0MF8=7Wvm09Uhl`TIQ34>zfw6^LhQuKSzst~v&j`y%ALsoUdIT0HgD{E& zjA#|`YCl9g0C=iNUrnwon07+2NC80ablS{`=53B&jjlYspg!Ns$vF6z-~Jmu&R&$C?j0LQ!u7tPf1f zRK+pAFSlfJ0Lkh9IhKmIOXJN-QUJy1e{y(%0C;hv=l1NMhvYmd@ zc8S9qz)b3}_NjssBzTix2t@)PJ@!58ElFjdA9VC9-)k16U;qN3YWj^v^jFix2`@>W zUQ3VMIVXqKl_U$&8zOqC<51vvXuHu{8kzpndVa8ct)JC<-|P!MztI&&-rFR5IOj-q*{v zoKFEj@A4FG$VDaGdknSYOeYJhF!qBsv-yd!8sdi0noW}EGYHz~Jz@?dWIl_%!*lCdwU(KGQ zf*EW=D3HPXNsz|+jK?(1EbFfl(-Adl3;_L9xpnEgN?@}2h>cDu6}Aik@FXGr3kb@c z65R+6lMHf4v%$FQ<_KB0SVsW>jpfes$!=*hFD#`tWN2u7eR5`FnIYR<+_;h_rAI?| znhJG!gzrreETx0gYfO~eJ5N|3rCrxMYeuZ~vMnn=&z&$NW?)^Mv5GH3#ts`DOyIN*d znRaq1*RG}kfTcy$z;cFI8c<)P*hS z7~}y=I$AQjkQA>5@FI{r9XRODQ3Blvm2E4`%H4p%8iI({uNfPv3<6Ob6$sq6`0X!eL>Lx7TT7+&&!ujw!;$>XxQ^x82F^8kF+Yj3dOfjsn{^P?h8V=Pskj?+%NCii}U zXe({ftj#uY_YKrxg>4A{^e*e5kmq-~cPvm(PU8aPQ{{Ds{1)6huV|Ot72h!0xnvVf zJL_Rib~mhKq){jb8nSqvx-sH+Im@!k0}_bNiq{>Dy zNj6% z{v9$x*y#vArb?^shRJt2<h~Gk2s@aqg``Ov?B6WBEa~snMeyCI~7*sF2Nt*!a#)%F9K%5xS6=`gxtSRz3t9CETU6Q4N`))Vzz#u+k z3R7;mwu`gWa)0|+39@r!24NKJ&+;hQo_3S= z?J%Y@Z^}YxXIim*mQ+^8hwd-bBM>!)ACR*>Z8}GCxW4G_M_&b}uGQ2KjpZ{XFD~rS z5s-V%;Wd^eG+hy@b;9=5n!1HU@hlv=V5d5__mo^tu~CmfAc=kqAVK|fQaaWPD^e>o zULI$)R}puJ?z-TLrk`a$g&K|x$Uc82oGQt&B{Tr5=mSq=7pAYqH1^)f>sT<-fwwYj z?|cN9m+<669+TVG4o>s{jG_-DxQ=A*3c)7HjGbTC7R;iSK!D_I9*2Kp1o|-^mv&k;Z8uCmgIqwYscQa;vqyUyONS4- z(Yx%-hDOZ(`Xl7$RGfYkI81F)4yl7V1@xe9%FbI?b)ph$>98n^Q-Vg%QZgZq!i}rjXl;tawEKGn(_B6(wC9kkqghF~b>Ss_ zJW@>W$)+~d2F9fDH4QWcHcT$sI4+pU3LYtPt{Ile(L@8t*gbfOagO1iH`i&E$@q;t z1C3=cjqR~Q+X^?1A#VMRbAIu6aN{W+8ItBN24~S^u=uvom*$>w9u2K*B(iJ%7s28K z0Hny3z$69Q>)x5}2Og8u-Y6#Iy;a4uJDgT04Ap#MmZHV#P`W!?_o?cppP019~w%VeA>`(vGqnFj#S`?}4Wo!)V9yuxn@ zwQ+Ip3#lcCYAB0C^`;!w7+V8geZ_^1VDaXZMk5-;xIa z8ZTMmKK={whJC^`hDZyVizS|PKDc)P(0j7&KYHc-)iM$5(+B&(S;{250!s{=NO8N= zwctDp0D6~pw0h`#=`@zn%AOu%K;WaHBHFpdVA$3|l^1heA@O zqs>cXaO~`e`RweC%jAef$l$b0X&@jxO0jpbt))83A!$zYXNA!hrED-NohhY(O53F zx4*kvuZJ)x@u_EaH}uZ#)^hIW!S42yhVe+Llsn%eM~wf+*HyrIRdns8d+Dx)rMtIx zX^>JR6eOil5fl&sap|QSq&uXM4k<+x0qIas6a}RO6kbu{JI~BLch21Z{eS+x`|h&e zd1lU>nloqS&OP*bKc!g_aZPcn5&?MQkH519g~SK*QUZW;;|jWfL8(^S0B#)s5SQ#VOcA5BbZY14c6esu z`$P%ilwGzeVwgaR6E$sOW(AiJ`@|{kM&Pa0Dx5JKR5W7>Ydz{H~VVMa9wWUPr%E-G;4G= zyBfrzWDt6hfSQGp{8<9POB`@B21{qRv+S2MUBH`AOkC61{!f>DxSLA`_0zM?Bq04X z;EofP47QpPBY7^B1O2z-@Aevmvn2*)qO1XzU}9$+14oaeON>*#o8o-5JiTTzB?bfV z+V7=YXGt^Zg}?Fu$V!r^;Pe9Xh(EbP)yjX39W3Lfd1V$L^zg$&{c-S-N!24?DO1hg z*)!9?K+M%eID7l_IcyJOU1W8LS-c<)cteV9D1B!0YKy#mZ`i*bZP9Y;0Du))!kBSn zy`6P%>nPE)RKO0d8bk<8-L<#kUBpdO8V0Bpb%$PR{a(tor!O{i2;K|tHOlMUo<2?; z9Kf+3mw0mQ-}|DC6sgV9GiSL$sf#iRjHB8-&l^PG8L2tO(3_r;^l-G3miy7R0`{VS z&0PY~m;|L6T*vlnDQ5HrK;0%4T=tf|(%rCqxC*LwZdsZ;8?HB9DH44 zn*TzLK>)~aR7K8gZ%d1+lP-I4L=9p5MO~kF%9dzg*QD|8`+q;ReP+MW#o-7&dK&=v z%XvvI_({q_G8~z$2`?DH&c!CUz&eGu+tY&-4)+Ssf&C*~P_?to>gShS zz~yf)*-488;N?L8_7&ko;xCCFEi;M zlby1;yshBPVc+?m+(0h?p_grI%eXb(eWOa+5|ko;;Q;u(H?Y;L<4}7^EZM^Mc%#VD z(Tlv#WK+kCcIcA50OS>M&N5#F?LC!kpxd2-Zyf%%Yjx!D!AoFY+Wyb)?7C>4jCJ~)b%Tu3}fQmGD05%-H;hOw! zMY`L`j|5b5R%!A$!jlV4?Sad2V0!2E$ojIn{D^BTLw8rQ#Vca~Ks>GVa#)npW3%S@ zY=6NRczTgwuP~n8DkN>qY=puJB(UnBPn=PGxS~Eqc9F@EGu>lcj%LA=(WZOLNoFnOA>}=HEJIp&_O~7epC-KxXk8_`E2v5}%LWhh66^)8*_Xji zo}~C02#~yk%>rkYU0Rn&*)QG4%Cx+YNm%ThE@w3(Q*-(I<9_k%@G6o2}q^P*s zb;kS;$JlNndznwf+>6`+{43cn!4(Y<1TTdHo zr!FAiK=L_xDO))HF3si1H}!)D5(WaqQwsKHCIpI0LpJF;%<3WS?f80;BS1WXp3C-Cy`~8^)`Us$$QSO6^WJ?ia7es3&j)5_e+qS zXaEGZGTmP2rq2h%!tA&pb;j4ofYq|}Om`ZPLGzO#8SHnrq|Uqzpmz!0{rHdIGou81 zfmhGGV+T#YUSX$vU%2db$M551joDt&aIXNPS9xpI;47XZLsBIS1nAzN^C~7{y^*Kk z6R8qACkF_CqFEEv1dey88#c~tt3+B#T1N#LFY;SWU25EWYpxBDIxIl8h_En^o?es$ zBV0JrboW~_bnPMi&fI?vA#|ic0MhSe56l;&as!seIxNZU&;K`{9q$0774+`Y)^1mXlD3Gs6+?>q=$4cAi=onEy$v`9>LyqJy?w^c%s{{sp9Fh> z=PnHn9@`n{1+Az&HF#_X$P1X;Zewt1V$uU3>0Ce89onv*XL~HsxZ|lwUdpve6f?Ot zxu|Lv)eFtMeALrkeFDgn0&ZgAN#V)MEhKyPqyP}u`}%BiWgXZfNj7YYZM4$L`K>9! zxVif3${*R|k=F4s-75ggC`LUMDyTC6EkR>md)8mE6)dg8+kh7w-K>Xw6%+{AIwaT& z+?e-KaO+?oK=KUQyDdF?pi(#h0l)<(IA`lGUzOswCxB=o20&J=|Giq#mZr3h_lTG) zr0MTXadp-|#ZSR|0SLV`Pq9w{@Gj9SR~Fbxmc7ImF{T7BW>XsbJgZ&EkRY7p=Wtf( z_IGMR!#j2H-+MMurNsDsiag~uD*(iWti}F! zLSgpsHlW4d#7!i>?bOw-S%84eNrLhBuukROpqg0xcROxK;V=-O=uao9ue88AMjgvy z2UaN@fB>j+ppS|jaL#;nKC>4A60n|#0g!Xni?{dNik1LAP%ksjM~m9o_Jv77?0VR6?0l-^E=p}if-|fYjw2mLLYu0+x5se9i z>St2rc^_>3ej!_=w{9h!R-*e@yi_lov7;??`zM#vX_Wb z4FI9{kcTrB02hZeUV1gSS)HW#4S?MB`hOFyu|&)!_4c^~sux^<(x~SaI}}K^075Uf z%hgqb&;I_&h?qy;250LJXJh?(y6x`3XU%xU?m_A%H#N^}gO@ z&nqcZFIWYXOPXY}1p>CY4a63180Vhk(!KEhkAlxp3`Aqn<-h%5nr#7+J%9j^@6dd) zDcl~96v8f|X4d3Bz&8~y*#;_m0SLXwSKr2u|Ht-R2}mSj06HiA=!*H!>UOr&B!EBE zQGZVxSD7X5CE1}%0={-w`m9MI7f`)hH`mOccJ1ocX$k}a>Z)ykFmjvW?$|dpxhn3eZlw+_<--T!Z zJn){yH$-!G^7QM|(!T701B8J;q627QdJUMaYJ{o?@c$M1Euo;hT;?7?R1a~c%; ziOfb8-$<~>A_or;*pg=nuPIx?$j=H)bR&Mi;#a26+o<(ZRIL3hyFYu|K1n85 z|8_Y?}(fCj$YJC#15MA7%TE92-Eo7h{|c7I~K3vKJgKU`xPJHnxNk z*RA8d=FT%DfB->H_`OmQ?$MMX6PJD+ypkxvV71Xt7nF6toK~DDXe-*wDqF{23l1w^ z0_f4Iu;9u@Z|J4+f|RNkG{wo-7z1&F1HX#`RP zYv&iWljE`d2_W=xX<#i!09|T~eR;P%7RlO5TDGtNxOR?Seh&|FTR!vy5PGTGX`mYv zbC)h{_aaTG6~9;haHi`X-Ktd&4&b}9*3{A`dce|uZ$<{svH4^68N=gT&5xN}D|jFo znqH4V&Ye|SWC$K|`AXlB^K+;kpuh&RJnzO+Sav5WNGSYpM0d1~~wCdhGdeO*_w#z2K&bW7GmbvfjU9U1|Rm z488F67Crt+=PLMGR7HOy1%Qo|i+(WDekVLHQnEz=0Cs-=@e9>DzLfazC;bgz{9U~# zj9-xF{7esgKZ?e|-YJubk@wR`%P@CJNFW-Mpxq4%$iQLFt1$?GZ{jAok>;z6*0)^D zy95A$xWYbtW#P(cts?Ty>E(YItS1?rIew9t!1n^wJ{9WE4gehZB>$gR`AmAJ;r|F& zaaf`s2}6E}Rp$n)+}fj*N4v^go3k(I1Q2y@?hVNi-!dF|xvXN(D(tcU0Em*?Ao_`b z==Xt%dB5bg_h29~DAxsof)Pf1ez z=7w$n@R}za5TG>4^iRoRiYn{bN)b z!qq@HVN?yzE*%FG0C4se0GZpJPnXA@h}mla0P!ECTPexm7Mr)1Y?J3c4Le1NaJ~bO zmt&j}=Vf;%-hmg= z1n;4nqiwle@OCTDPpfww-`%i-m@&e9%^3;DCRO6wx5uO0T6_cEZ zuS;CvA4wSmK*=j*)l2{zOa9?%nR=P;f&+l9Mbvz8&+}G#xJQhu^T1oNkm7=u(#Wj@ zlluELz++_a#XafdRzlS<5U>hl?_S_v4U5W5#B9vSUID_%1Mcnq!;^M3UD_aTqb?Yd z-(4$wllptx202YbFWAXJ0|V&EK@W_8+2j|vE)KY8&lEh(_%+}K&pqGTwipnwaAfcJ zJAdp0DtUcU1AE4h_Q^niiba)i{q2_-lkGq$g#!=(gU;<%!a-rY)q6RmshPDo#)fSM zb{$!gIujjc8@23(_a+{e>7m#{!2hoM&$g3F0E7Xywl{lQWshKM;9u4?sCIj z-HS9GtW&Wx=tI5XCxif}WV_2+EW3Y(kKQC$15L6qtf}X%Y&kXt0wfn#tqV5}u2g^k z$Wcny8KI*~Bj(#GPL{!1Asi}sQgOLAG+$oqLXmOlXR(_kRp?Q{P`0lff(f%Ei$Xn%9v9lIBv$pC;wkD@0!y|y{8 zA}`$>Kl7;#Aw3ggSLo4 zfU#tu$(HsZLw+JOzdc9)bW^LsmmApWBF6yV{%W%)`_{u{d3gTE{D=9U{c zEz4tfK`&(~>_`LwA?4AWs^HtTVI~!%t>lwi=ly^igXg+i=9@RK@Q>H7$t)Zm(v(|8;^H2HNUL2Q|><)gPanY}CcADecN>Y@@bPp4gXk8wKN#7<& z($a_s(Gvjj%KGsBp3fh!zXDK_p0fGe0lNz8|5;Oez&r*9c_p;5!+Ua-U{WIhxNZrh z@qG=gbG$48ri=i9kdkt66e?nR=Cq|GS>jXzl~G=!fB2T?U?H0YdI0|%J4du^5Rvd~ zu$|Q~aXrU|??a#;no2FE3y(3uwZ0j{>BnkW|c1gqwnbH z(nU$d@+=1Y&uLxyZO}W(QxOWR(0{H76M8545A-c^K~_Jq;#pmiD@V_?q@N1ef*oUI zXuTypx)+l{-nx)h8kxB=2!wd#*2lEsAJ`=g9&ByXvde#=9O?b}KSjj79DsE6luhnR z2Qiz-0KkV&q^Bc!&Y=Y<*1Ji?Z4I--OCZJ~Z$Y0_?fX3rWu5yzgOHK5`8Hy|seABs>oUDx!0RT%& zE^SrbhRc?I>F~FIa@&{)OVjfS8IW8HLDY4Z9#ggX|GtZq$*nm+>jk4%`p*TXD-kPo zWUjbopavwyPd*W^togMO`g=gan$1ng00Dsa`T;<=d}n?#Wt_f%^9}%8ZR=+DSAagf zq5=V|pFGq&gn@sfCwUew;|GPs1!SG7v|QB6JZyp_2NrrxtZ|9zN`I>5&$`9xiOhN_gVijFbHf#@0#My zMmYz2F2`cg0)Rn}BTWG$UAbVNb^g;Zg8;=TV>GAfGe*8>- zH%2cY#>4l^pqG>FQrjYCeK4R+u{>(vVdcXj&)kc&qa@7)YSGk>c-upR#^8^TlIGJB zn?I1fd=bCpwZ7fQ%TK=sz^ats>Y*w84+DC^Uf`|%?@8A-%TEdPf;v1(YZvU;_88;^ zbnN4KSzZFz*<{Uqb>@7wv9jpV16t?X(h&plF7(`|&BQIK8xYHP#PiMB?cZ`2XX>6f zHH-UdbnDqa*u-pSw9*VYK+iU3^#WZC56`M%*yjUks+A+@+#D+50W%P6p{&86xateM z)3~XM1C-ktxYYW><1_4)u}cw#)1Kha|9s)_1(V zE)HYBZ5!>*d=wa3Srph-p515IEINI(V)ys{L-;OEnPs|7V@}$+*AVZWDhPAUp5Vu^4vU;!~OH1eW zdTu*m;xx{}N)GU+6)A0_V~L>Zh~Lq=yrlJ9AZwd5*8kTSOTu zyDC|L@IU9Z!rjR($0Vy9rJ}>d@mX!V0bzY-VE80Z&ZAotVbuJ|frJelLilKz$z2rT zvYUHtAEj}GoF@CmPqQWsao42bAt|JR>9c_hK&jq<%tE$R+Dx*lt4~S*#79hdF^jW~ zT&+s|OGhc|KoG1HB9prb4MK}Z1JhgF+|w2k7XUEh!9O=sE3(e-KbB@}#sk&{kdg6q zhX9R<9HMgC<5hibtmR(#G$P!RPa~Gh7AuzydXdEd9{i-r_1z;eh1T7Y60-q3a6U)` z+aGgkjg*!ykZ=zebmoG)BVW#ZP%`HrbvhmvR?j>4R)q@(C>fbQ~E^@7%+H835*AO>Ys(u%=L5%;_~zeR@?&BkJBsL zgJnnh+veQ`98CMN4Pf56^@3v?D|5i2@O-%S5x~k};1}#*qDJ8DSJbTV>7VW*s>P8= zSyk7IC<#PEWT~;4uU%KBadT;5Wk*&5!mM#xkayRV7zX4hyVyVZKrh%c=CdIvn(&Qk zL%L42trcTnz)|`gGY?p!|J<>>TK0sjs+)j-UT_^Q+Z9}uYiP$dTc5f!0RbR(q(AQ8 zS7{pzvD>GsY`w4|0bsU<4_qIM1ug(%mRhHSj9&mCGM9wfX+Bpmcl5K$_TY)m9Xtko z=AKr#&S3Zf?>+Nrj+O0GH#j{(M>pD@j@7CC{32O)F z;vaf&2)!cx8%8-n#>Oz9=7GUdUYP!_A=9vK?#ygDs&Acmje2&?HxD^q8 zN839_QRYC&*3Hx8e4!7NFbI3}0AXSKgdP|vdWGw90?=qlS9zdBpXv*`_u^c#_DLA;hVtgS^dCXVCjPAWJyiW`(B_1g~W4j1BdujFukA`FZYRIKzR2N zw$aM5jij+b@%`zECeb>*xk~>&R~~=8L6Q>e1r8g$SsJvS9hgl9dO@FdZY5dOvjcgFX-YJp5ZW9p5aD4tspCY zX0TN3SFNKintn(zmEYHVtD)UGyK^E%AVeR&=K#0oL>GKViF4Qohhz_iB?e&(*ydos z8yBX@q`?dr01#uD%Ea9V&6K{cCnXFRevjHnae4s4p!p*iE7ok05yt3%L0-V>uGa03 zCc^M3l+nZ*#QQTn8XS^v{X(B;6e#lLo+2ZR&NsoL7wiQV?sQ7JuNj*JdO;sg`BR1^ zBW?x(a421YSZ439H%>`m*Z{U*I(4rs7;hN7C}LffWu%85I1A)D3Vg)#0b65Z0Dzsg zfBYED?Cj}gUB7Au{ggxuc8WV9MrDI%w%^m3i22E=%&BiDcX)hLR zNVHRujyU0_f4XUKqqw2AUeG!e>ILKP^q&iCU+|DjhRoO`&_V&pp8&sLBz*tFh=#>3jj7+BQp+Z2Bg~?U$_^b_Nk4L=3>UahYN}zDQ6Z>CH`r{G%fPAbwh- zt|EpZzP!u&vV!qM9P~pLm4X0Va-d(`7a%Jhm?9OY^JK6CAbJ@ZdP_|SkblK9$>bPJ zVz7+>cL>0&p$8sEhqRSslr)p)SxXNlp}SqMtQ@#;s;1N|Si)O&oJD*T-CWv`VW}oX zaGZMXa(y2DG<;o{d>*1ag=3Vcl2C z`O)ZxK@c+z`mxlqKW$*U0SI6^7{||)CY2x-SI~pMOF^7oJi?y$Sr8JaK_wc7BW8ost%g0CRn(3 zwG;od%}4f7+yON0d(8oKsgYR1Q?n#4T$a%KsIJLW;P|vd>ZpkNPvsu3nMk`8p(Q;L z``K8=FC%3TH|8?5s0Ngw^v^r+q)SKr&4oc;z)MHUNzv-}FCki7eEAhcf3OCLp&G<> z4QV#l%eR)H%BfXnWeLM~gS&*{im|)0yBt>p43AQ`uQa(rY`-?8b@!e@y6S?%Gcoao!(00 z1Y!VAI541VZtK!jlf$i|oF`m_D%nfo+Oc-nMLa++7wIR@+;~rcbDpZN#!0D}=>@MG zLxC;n!KubPG?_7*vd5n?rjS{Q8CPCv;9uty1ilu*;p_UHVlvAz#ccrS|3YxKjfwZY z9xm-mA0owgAnw8>YOwYe{To2AmHo*$Rl~i|aJ%&VYOcNjg#TbH5DKz;8k*Yxi+{+L z3bFwcF#Q_f-Wgo)RvTLlAYis-?_S`k>!+pHnw&!R3XpttWK?DAl0~!DV-Nu0>pRBW zZ1*|#DAy6l0tRZ<Hz>= zjm@VzFIbcUs8pevoRIbQASCAndx7iXtPhl$rCcJJ1O#KmZPpf}lJsp%XpFKi;}ZBo zFM0+L62BvOeslA@TA%kVx>yDoGru+_LJ(sz<_xl9iBooLXLmU75T_k^DDK>zkK#Z5 zzD&fqUxL(piWBj##L7`>o<$C+aim?EGFB#0X7B)VOaN;#^*l2%owRB*c!2Pl!F%EW zJzMtTxt{B1*yb37UWm0g2K=?jbAXlwpa4YLw`^+_4`9*l-rOx&GV^RP@)sUB&R6rm zA3v~O=r*-c0Qyo*9j1fd!6sNkt@q%C{Hh+8B6NYg8``*o7wiS@n;tHW)J&fe=moXh z6Dxzh$@CfI1?0X~N!po7+-X>9EK?2-h{ZMmB)9i;W83LC5bhyjxVE49zkA{hIYAps z1_FkNNZYV4(@q)1VylpBhjp(yKa{k93CF4v`&SSUQ{PLZE^`j1&?BW)S`AP6wSL8_Ec; z6$B7R4;%nN^uR3jiEB9RTyX_2^4A;|xDs}`lk8M;OH@rqa0fv%h{+&}f zNV1xHW&T?|3|7hDj>JDNZ0OJK;%wpj6Xk%l%`gZ(?5XfH>d>;IDqG84ePE!?fS9*b zpN4!K<8GFK+90nxw7>X?;V~rk&4m=24eQr#Y@6s;j6HjsgJCSzzi|_ zYK`|s#KKpRU#vV7ZF>?73@szfF#uv@=RUIFbvZ~K=Na&nCWo5Tf*&xUu66%|PJ004 zU6Gja)nl+L0{1KQqjgMP*C9ZBlC-;s(l_+*jGht|x^da; zA{v{B?9~hEQK78NGEHxV!*tE12O-$EAxTb8o89XscNmO7xbTE?yu1lg{NLAXb74JQ zC}dhk0OQtwPf@}yo*@uG2xT3KRcgOQol1qcv;EN8j@V3$q6G##uJM={-m_>?XtF;m z@IKBf(m%|ha#&1F4S%)1nWSeLu#%JHtHgOMKITI@Rs~ivMQ@Pyr3)1xh6rD$1C?6- zCahQ5uu~4y2H?sa0FbG$WX8>JWIGdU89gkf2Sqa7i&56UFE+@iZTA8Y064wDy_}t4 zy|-ZlxN!c(7bo01*ne%C()L8w0o%^WZrfDRd|}H5kyG}kmLb#l_{hAP70kzJ5^AZE z$giWi+5=|WSx7v~6<6VyB5VJDC!=u z#qaCG9e?}yRVAg{sq)IzufCrKhL@JQqjHMRh} zUd?sh7sHN9|2F1wje5e^Dm1AO!;^gXVH5qM2jWs62Y}ZrdCfC0e2)!aX#s#aup<4B z-}&Q|Us$)snCQ(BFv}}_qR|U{WN35>+c4RRSr3cqHHu|JtXbu(9bcLFjKe?PYr@%F zxayEhqip`!rfL!KbV9Nr%9&^ExL@RA$YeFV=pOUGG%>vBj%oX&KRYay_bPuCi&NRi zJw8nTvhA*91XX(xzJ z(}R{VI3{kpwpd^W4C2R`G%*$uOnkZ4aGBqkmN`OSPggyLiO1$`CI_eURJ05hE_I$6 z55iCXE)wE?Exiot!G-Cr4Xc0|iobveH<0pJ+rL=43sIfho9uvt2})*wI}aB=+@ zh?T56Shq;%a1LU&jdzZobN6p660~aX%O_r-7t|)rby);3AS{kBw&L_Kh=W#>1vBMDuHz|sVh{i_UFfsH zb1D>i0RV+}c6R!wTR$3cJkbtVa7h4QQ}Kl6D2IP?lpCAs7dwlD$pFMX{1e(M2H^xr z`-pU(1iB=MPtybb6E=>EuJNd^TAapRxhH3x%3&m&kVfH}5EBRN%C~|576y{ju$dt4 zK#XwoxHX;=p-jvy^u6cK(QSs`|j?TGG0=Auy3M@IoWz#u*C+ogBUIMrw4N8 zZ+@WljN9@DvcdomH(Rqsv4Z=_3)R^dI7kq4q9H#_U$@U#n{Q_22WpiEO24`*ixMlx z*%k;9qV)mvfE66Z?iI604Kzik+&16bIxLUFAkHlDl-V-xHd`{>I-4qP%VpvZ+UyLR zpTG*PdWxVP4F4wCo_gj>d6Gy+H-NZUcOh<)D%L^n>GI_X>>&*u1R6xGFDKsEZphB# z`PALHGVjPNL}%v`1Sv_toRA%r-0Ej7MxMvfG&yyOCEeKHtIIBbR@f@36Zf{|-&c4t z547BtM8V#KRFS=@?dY#;i6AC|7=w(Yrz1JIBXf6>t5qqjOntSIB*+WMR(z|R&9#yk z0AiRiW<>HiJ6!2e2e}AK$&#M9zFhoD2fs ztKIL#udvTRO}JC!jdr&94Q%bSIU~GiE!qjKQ6JbRlZQv47OQ^V7Xal3$(ql_s^b+d)B` zZq+}KCy-wdXLGJJ!)pv5WFDX<+^7<>1LX{2RK{3z#El!S+P z4_lvK)5|Fap%?p@uSuX@TC_xlAZ?*uAjSi;=H6yL>}+R^U`>JmKxGC1tScAoc~j~^ zZv`-*I1x{zk`9M|^u*!++PXP%Ce>$t04zxlgn^(phz>NMILYRY1~?w?ZFx*?HrG(E zFQWl60;MNhlgT?R(I>0}Cpy4^xI8^w=t)ObY}ho5(%W$>jrHj?s_Z61$rO@AnI}nIhClfUO2eQx*1v98i++jHl8c8`x@@BZH?5R z6p1K^V9<@kiUF_8u3v3tOJM!P9ZxIglWOV|D0=g2K!c6czMhs}?z8DbCw^c68-)Ms zexqgT+!``M8gX;*9+i;JUHBcH*~uOwq9b}?MZT8*wz@+G7eCy4wAR)QJ0ET}JVD58 z1Y{wwJ8Ze@dC33-=mCed@S1scD?FLmxcCoyWfe+oCS;HO&HLQ9; zZ?{K{jM`gvZxqti&6$@eYtDw$Yql}tU{ZW%%11^rJA^4mf5JNQQJj#pX>FCUUx)#Y0N*oi7+ zdR66FkVc(B59A=VnS+?)@6Ka$+)b<9H`4nP^B^ByO7CU{F_9bXvK9u3mf5&^XV{_M zmq8lQX}NX5zhQ%AjR^+M0-lrB47SAw37}<&Z!f769`~sT0K7CVH1h{L@q$%)foKf9 zF{pMM>!a^F%t#Ob*f?ZBh63m0RG`npG5|Yvh_S8cXG3CylZUDUv zym31Uy+Lx5)_)qPllDZ#k|TO|8c6Zw{lM9FHrbIOHoGko9{+9|9vlV4U?FG4)lpBM zeh>u<^*spFfv8#tZPNhV(%YGw=VVH%lNA8&l0sM_SUGZJ_+fSmnNsL{9RPeOc?YpG zoE`wrl6-%ppY&(^=gzckXC%)j4qEE?8ms{?xL4Owg)A@#{J>sdwhu$3z3Ew(s(*@A z7%A=u-bFum(?hZfh=^rAcu(%D>t#l;26XRcx*J&hx%@zwo`wCuUSQeOBV?6V*T=m; zFX&FM$5N--O(X~aK9vfq$$h%EZC;2E3;=P(KRT$0377BEs=n>=kQRt{(l2Z=_!C>q zD+zfSvWBz1=*lRdH)-(BTTi+%k4wIUf9XUte>G zM(C8LCjK$MDNNur5f>(^K8Uf)HjoO4d64{iIHclR$m&Kez{Jvr+I?O%Fi?P)OMD1H zyx{5(;kg(9kusXtz;Q3I#68Hkb^6Qma^lfN#4{w7g9O6pA#Z;D_^*NQ1tw!4=80!q z>My{TPFzrBkVgH|a#Y-i!lfSSc72D zW6EBL;lq~AXItrqmJ$OvZF;-wcQL&7_#)X($&L+R{(ID$=>)JYHSVPwC9@%&lyMJW zXIkZ{(Raqa9tFQncl}ox8uckb5Vxb#ILr>p1@NHYciKs@@uS@&{@`b*!nJrGMGw0@qP3SsgF`3UB~ zBJ{Va^b-w$JqQ6xZ1zJlY3}+{yuljqf}5OrM=n?O%Q1dnFYr=}1v2;2ukU+-UQoFb zi)CHT=!?hd0OEOUNfFkInR;o#y?_{{P$n+=)jFvs(>g3+IXwWhy0j<)bK@>qEbK z!a?h7I=^RH4jW~ZMK^msc5<0gLvr~Ub?x(BpchnZ zNej8aH#V1!tkf8(3FJQ}TVPu@tQox|kSq8BS}aH|?amnKaOWH>X4@?b{!oSE-nFfY zpH5oPI^q_L6Z~VH!WF3FN364$MzlO@?MPQZ5yOqAZ)#`HE0{RZI`2r-`FgK9;|Jny zPo~L;VpvHha$;QT5BCM&NQU33Oih{>cW$1X-VB>C4GGr5Fu=OqUX?DZb6jt)0LcKj;Jd-n7>$m&HvsVI z5guFGdtGg%vIVf^9xInt31UF)u@T+6r?*cSlCYGyETLcS)8Kikqd&Vd@7g6>?3tIv z4N!NYbOxRJx24AQp+N?+v?%d+(%b9RbKSMJT}?zpPhe~7kj&9AXnkM zu?%RxYrici_6q=dQ>79BI1&S13qNZ2z`+0j5P#OBkZK*Tmd^dXfgL%xb-W79t4vv@ zT3j@lv|1yjN47lNBhM*GYdXnnuDYs@!{q%M@PbpW>M8RS{T2#?VRMiy zKzR3?kM!=zl|j0*u?F-A5CC*JVGIMxADbqv+6HuSq6}dYKFK~;r5?{tHJ1Rr&SJKb zIe8b4h3AvaTb@afUNSKV#5-$-M=?tqzkS0tA$9|p&kpLLH2nk!OD8T?Y^qk?f8Y!P zfb7l%yjwAkRIUjaY@~nJf6qOY``Q z+-B`gn95RyTLmOLRn&1n@D5R4jxQL6L_c4##E7)F-jyxuMN4JU8hSu70|hpw2S7-N z4-D^kbB*L*O9wz+>tgccwQj4uVX_ykFc7or_C05IDk?lol;>)-!axk|UZ5wHs5T)9 zU`u_vce_1HA=ohx{3oqPS=+qY zW2JO-WCS3T9tI$kGVe<-hskU~o5Lp*w3ryTVlwd?_eKQro=YrF?v6O5h_R0zu<--l zFHxnb6h%L7oiyvVUaV(&>5iHe0GRl%WWyCPEYtUdD2RFPmY>k`d~8r3QUx)Tvuok! zQStw4>0jN4CYzAxO!gn*M(U1Xp9DsO?*+f5x6N^@r~&0mNaG|C2TL9P$hAp&k~Uoi zI8Nc-&6us`XL5ei#7%|DNzSgypA`N{W@9>JG$UfT+)MQ6)OdXuV#k<+&UZ8fwtDQ6`J@5A;!s#Q@dgesEwmF5Lcz2y(y!gK!0F+ zLD=A4k~JPCYaMzbPe+sZ)G&X*fN{_5LBkYYDnd7P)4=r@663%4Gqp;nR)_7E>5i^( zfcS5>m=Kb{!~;(5mUeE4F$QnT*E(gEE~g73Xt_7>g90@G2u9p`!TyK*Sph(|9^w+8 zXm~`LuwiAZ58peUOq3R>Ur+!mXf;{-uvoBw4e`(m#bhAWtzHot{UV~M>-7QFh}MvG zK;G|DAR11!89$Ad7<$K^CQ~>-{A7T2r(OW?bXkVPrOhJIy{e^B!IY9E(+h(fJ8}VcQ%{z?Xdjln zAnn4WjL zWx98jHtsOQW`#{2l0vo)c8GV^wyI~yXS2h+v#ER&mr2bF*S=pHk?d@Nz?uwLY38^t z_aJkhOLfP{U}k)TK@Ll9nW({*BpF4_fY}4_x)7g!=(*JTWP%YVQc4~Jap;EmU2`Mk z+-BH$lK>oF$JUz}b1n5(YKLm=9VjFs0Cm$u4U_oOBdES7uCR>gsdyfDF>cg%b$G?4cL>&lNemDBC|6aE(BH=+Of=7cq4Cvxk(H2}J;Cc8D$RY z>oR3;9^08Xy7!}53T*KU=agT^;)QcWkMo(T$N_5!H4oRUAlPaCL*na2Y*7-LvZJ3& z$Tdq0@DdlkJxF?=uIw&$!sy@hlS}omTCVF4n^Q^FEcJu~5F#LYzyT{>j5hgTgdK7) zXb@wcyEOfdfjev^@P2p0vGe4hwcARN2AB=)s%>@s>7Hj)ScHZU*n+AP=dsWvergEAc?0?o2G z=~s7ce_{8GK!;%v8yx}M6Ima9YkmDfhf4ssbp&HpR-XZdZDnDwvT}(1Aoi?`d2iU$ zFpW_WW1#mw+!wt+VreX{U+n$AvUWO$0p6xX9DcIQWw|%k<$00~%`*T@OgMKn@<+3x zwt~o+RO^sNE_!;C>%jx%4O3FBbKVvttsB5TH;R9A5Uv-2El}j=!Tfp0>8M z+bP#|dJ6Uey`cXJ-nM&V3BF1`%!xfNtK`JK^Nk3Z5bHB}=p_}I0LJr#o)`3>j%>zf zYI>FC9V#de!szQU(Le>E0zUl?t9aJ7yR8Cdahm3MqT$wKUa#vdj%u+rAa1Tg^*>{RRuHbK|TWF!qz5@V{q3o=M zwkxpRb)p`&&{&|zn)DbE8xtx%thtN>Ia-7lCZrQAzQAG+ z`dyoki8$*T^pi^nV{;Pd*ql4Itd}p_Hb)IB3kL|qvj>)oSy=ytszcqo(OwEdulm7S zqoPLCGEC)PzQfiHq9_0fRH%JOiYiTiz=@`DB>HajcZa=%0UHXc3dX$QpXIa+6tfu` z7)!r&r=OVX8N~am>29{S&rh*MFvtsd_)l$_+!&k7K{w@%8QCO<1Q}%l)PM%WZ2dK2zw2zjmpviJp|d(AE$WQ{ zdk)rg0hPXQERzMDT>~(Kp3wpX17&xp*1m^KqYP_92+&zbOoINHJje#IPA-aGWTYv( z&blnn=%hLcfP*1=;9&Uo#H`Xd4d5^-gl7c2Ps%ew*ZXz-0n@U}efvar-~Q%`NpcMO zsz^xdOUElC>3766gj=>TmfHS%qh%a0ZtVqoftPlzmlK!Kkpy}{hr5)Q=3|7xAOO~m z>+f1Zic7uxC*zew$X8AyspBiBSM^Jm8SD^&1Lp-mYvOf&MYLJKWElr*5}eQ_0j`6!fZXs(UX>zakjrF7n9O5eghEu zjohAC*JzjRH*C%LWH-+_xqE%?zMIlw_k78g-hcvIVCA17??oY4TrT}2qRr^0GVjzO zHVus!J+Kway`%!=Jf#Il2Y?Jt>kmTv#uOefS{)?0G-ILEvX%~rp|Ax(T(|No)^Qc> z?*L)CL-C~~{jNo7GK*SuJhgW4FF}qD+(p9q&zeh->O~F%K#cEBV?}}UA^V54vKI;5 zI+WFi9suMipbCS(w-an)S+T>~tr9sx<(Zcj7Km(=CZAkc7%4%s81N)|c))#D+)=v` zSq{9fY$zT5|I`t4{uBeoz(CE`^f(4x8MREAg#}{P*p4QAHCW{?DCEtYf7O5Ba8X`a zz)g8yFU?(RWv2rHSOW1a`l-i3dx4>M)j0MR%w%Ur%nrAn{^D|VCkxWSPRVomvjgX6 z(Mn&QSZt`&vR;FM9gY@BM_a}rT0qPH{W8c_8npcXoqk_%^;-$hp^|S$W#_?wA))KD z>#0)6_|?{FMeT835Z;#s0PB_p=c>vv*Z{v2ut3APQc61Xa}TJ_U|a@hoalpE|H>Gv zcZV3r;+=B%k;>*^9&r`hOUu>bWdH_#v*D~5J&rCldT$sP7-~R_>5E&J%Io~qR$II< z4FK5VT3xE_w0^z%f-T48pmo**;&$}Fmbh$-jb*mh555hP1J>3mK^OxzmKiYSv+zJ` z1%U74KsL(vaa2i}QnI91*&rU}u%vy#T#CJ5yY;biBTi(V4skqZoqdNkkMNIQ`RI z_hx*(xlCI0+{U1>&N$Eur$u+VZMH zOFP)DLyTYtfaCPEwF)vO>)hS)ADKEBUjQ%*OJMm~fJ5Am>g8P1MzW(1ihvye%F_$H4TW7vzmB_^O=g%zv;eZ3 z-WWXBy{NWS&D8#;4glC{(P+QA7btb-$q{4Lr?pLlt+p9azC!G=sY{lM=D#Slt&71J z3-3Rnw#C=P-aHZI@7E)V6~ETUO*kPVxY5HZk`Rk^OvFgF1kK*`nIty;z(wqCQ`WhM z)9YT0vfh^*b5v{qO)AFm}nw_UeL@hv)Jw{g~MJrAa`c9WP|yf+H>7jFv?OqHk?(% zeMlwgC+Al5tGin6R&RhjL8{B4Ua)4-tdqX`=r=h%+X_dI0N_*cJY!WjkYF1v2)LJ8 z^!rwFIDR8R`u~T0iUgM+1HBTAT$(vJdjNR>^+ukw&5J`5^mK|I{9A*J5Qe2&ErYl% z1c01g+-bYqq!PhJ$1G<6j<5TP%Ggg>*Dnr?J;ocT#;?Ks;at*d-omYxepUQ!W;M6|&raiXUgZn3{UC2}!JePAZ->AcL5X1t7>+pv<=ePNmfa(N7 z4`g`mXGU9%vNm>&+|k3!1sM?HR{BS8dn)rQ6C?m=Mh|-Ar5sG0vxl;)hDi;ZSr@?4 z^nkVLp}k$!vbFutj-G6-0A!)!33>tucEkdBP`Q%7PcR4olr|X`Td-nn}bsr~- z#3n{dpcho(@j{uF*w(>*Q{nxg%KmW8$joX!H`w#o=8S(~=wgDV*z?>LU7%xcfv(v(oc;-EpjxN$7)PKz~@lR;wWVeLQPt8s*Ez7km| z_ZxN$;2t=cu0yBoMU&a8vf1pZ^uS z2UcLuTvgodsPE4#w|gLIx;L(|9%L|=QsEP5O8f@6vn zmfMK>S|LBM7ufLLF*$#l-~z#LC5NLCiW*r8-L=OlCE1*sM-P~9IDB;(?EFwowgVj5q?gC;vOJ1UJKk?eadEuW56{6p$Fufd;;$1-hOruYne5{WOx{{|CrAySV)UD0DUvw?8TeP0h{tX z4!w;c4Nnk72EJ9Z-szNfg2#hq5Q~)o>!LSHJ2UkfK3W&u|NA%)DaNQKCS=X8q_y19!W&(lhJhs)iM=D74B@L+#dJ)i?Cz z7(3(R)^W&%J&x?(eT%I7%BS}H!p6p@V)EQtqKJQASRf*Ep(=Lk)TnYzNF?Iu%vjj` zr4PGD^?5mqT-xgOSYl9)ap-ktGIn1ua<=wePI~`XVNN9WpE@aC``Tv z&xzU8#>WGvwqOl#?+mW_TM79NgT8##59|eg^m}P}3xtkk3i51u1qknF7vg^HddgR1M;<#%(|F#a{WVP)a0 z!pb<2(r!qT+BQ!3M@y0pT0Pa{YRo5{lB*E^d4yHF*RM;patK>|pDDIwrs3*+m|q(|tfm-B)g{)EDbO}xTM9N!7I|=dvuI1fmmroD`7yx33k6T}RvaFmyw7Y`X zC?}gM>nXSXXDbISccCWzi1&`)V7ClSo~G#tKRNJXmy82%`NeO`sa4y_Nt(m%6MzR< zu-z&iU$7(zHLUIuuTC{*p31|i^WMIc+s>8|H{RomJWz_I+crgNlA(rCk`6)oFJv6QyLJ*<|oT^ z0CqK+UFXdP}YrPg56Q-k{FA*_;#87a&|Ggz+nim#bJ_ub=Popc8!!qsV8jk4-nX?_4^vv8ZC32XHs6-4m?+M9D~lDa zS01w2)(0!^1Q`?f#%4C_;8uur*w64?*5Mm(1Z7TlK<#|D?^sI>($_S2U%l^F|Hf8o zdq{l?_{6D?18s@j69X+n>zAuV*e8s6UyE2GX z1p$Eg{)xkCHvM%|yT~K|TGs#>V%|k;lwq4Y_2&J4zQ0}l?6i!p!7|_FTUWE)lTD;2 z<$+x3A)Kp+>80aro1(EPu>t_T-%CoX1_>>1$$!(|AGol5X2&av6%cpK;rZAov(leh zHAbfcFaUp@Jt$i@QxpJT<#^@@S1MPlT($?we3x{TGi_=X*AH%ee#I6cvw|os+|$)& zdXU2FCcyq_m8XLl8q)wh3WDG z#sb2=w+kt8u3k4h=3KLpF=B^CvvH3M40`B74*)opopDQgwHfy9jm&n-V1of5#%egC~>gSZz4fh`HB z5#Lva5N*!r1)p&MG0r~ofFCUDVn=EoFgpqtli(=tS9>IFNT)Vvxg*&P1LP}iy}z*T zgD|X2bIyQZhGbTboc_&@2-L6=C*Hk6PIrW!ALx$|fF5*W0)v0e*GHBP^^617ykIY| z_KYX?Iuudb3)G+xx3|(8t;;ctU2$&!AYEYg>SWC?b)o|=_X1*^hi2mVB@68thjkK7 zRZS2}i|r9n(3Tn#w{hk&qIdaDGb-M{WxS)L2Wj-N>&i~s7l=kl282@w?@)e#*NryK zDPdR3sppV7wA6s2aHsf|?7CzfO8@3S2EX7+&$Ff}nfdJ?Y7R&X!9mg9= zwsg7-;z15Ewg7nxy~n9C(!BL1BZx8KHKntjW@<7o0XEBYUS{xmfeO$yrw3dJz?+PB zLgz^N>-*PU3)g((C1(g~2C_nwveNmu# z7OS$RrSS%}3>NSj1>R{zRu%BA8Q4raBE+otFa0AA^?)r79Ao|}g=?J&e3bdnsFwmf3G(QRjmgsPZ)$A zaur+=Q?q>8SY+%ip8hHgPEV;I24VTI^U)xLL;}911p>TJyo-MBre_pAs4nXU)6#KtJr#hj$S#B*yZZ+pCG4~TJm~qv3IObJa=&TZp#{=3OfL+= zIOMV2A7?F=gVuQk*a841a*lon2nNVOclG+(QnYq29HlXtGa${|^KG_xEJtXXZA`6) zI<-f58gFqVk1s8?ZhB!5Yn%bQ)>~h*Fo2R26pV9U={`uGf0oaM8a{e|Lxz)MG9susTaSoEX&$Pg7nOTUK-HD zlA1p9YxN%P#*Cf_LJcd2l5h6QD^AbWoMtN!!3?c4D=5-n2EsX!m61*5q;7npEyYR( zNF$u_VvKF-%+53Vg#j=Pp5s2;-@>+9W`~uAX_l2XZE1G7)-isKB#Jf63DkFUJ=Yg8 zD;I^_CGRVXE|NKgv7wH_uW>YwdC%Tsyv;lJFo$^Y8*GYN-}+0Z74dHXW)C@X_6mPM zB8}lCdf4FjCe!VkXGz=9xi+*50EpA{JR8&Gz#nQeG1u*7l7F2Sfw)6B-Kil4O*mI! zh5vdWH&KjrauS8L0>7pI>4}y0T7k982Qy#_d|k=hwF_-x;w0p!{M0x7gmic%F72mG z-CVK;uazc2T0+L)UToTK`!HB~LjS{=BX&@EGXJ^%ASr)+lj9`f3o}n~dXh+SQz_!* zrAg8#(DZh*M6x_0LD5Mq8en2JK&-4bHt~4}8pKtpr@drc7z>gTUP|UU6EBNP+8-DI z;=_l#yC+m;r1iPN62z>yij%Lad$BRW@3``wZ5ohL6B;Zh<5<`540=EH3+XtT4G{An zHypm$Q~QCvz)QUb$_1)E zlJhW3XY|Mda#LL8ya}}!Zh#};{L_ERMUs9CEm#9yaJn@G?AIee5Dbj*a<6q4y(W*T z>OkQI>fX!|{P?sJ0uOLVke9sywFbyJT$>RCKrB};H#UA~dnS_iY;<4-gik|0ju|>{ zhB~EE>CM8@-t?loZxLw~Cf=@Jl~pd!Gz;}baJZHBnfvbQ<4tpIvxlvLxGeo-Kf(0H ze)99)%93XtoEZSVzb;(aegAXV*PKx)(O!7u!G z?*63>-~n?QdUtJeb-WYC z=0}>iQz0W283+Pa=-~NHYS{#{L^qhdRKVJS*DXKFZc14hi;RltI)9Uzn=93^F7DK3 z3u0DI`itSNa{hR)v$Sy?CP56PBz|-;id$V5R#p<~jpr`JZ!aQDqK8|TgS@%@ZMkWv zmtS281Y*BAdD_^_Qj>b13;;`TWKN<2&PzdrRf&pOk;EJKyc($XDzv`kw+_JfjAHwh z2shV>l(~>z&4L&#v}jj58iXj}wkw%VdXFZ&Mj--(-8#J){dkbROLubFUuE}NDK&*{ z;Hx7%uqTB(N@6Vq5VJj#2HmSyk2P%*Xrfst_hBh;1s0R@!9FhqwhUr+D-d&5)$-6h z8FVxoc^&O}m9e3%zDxptcfW4>E)^Wv!*S4sJ^ak_&+L{{5GoZxOVUr~n|^gu$BRv> zNq~-j05CD?C@j7@JEEnj>ZQk6Y7V_H05wnmkUg#2WL-j{0}cZ?EC9e^p?e%>eFfa@hJ@BR2^04FH@jLv*$X5C16#ZF@&|_yKk2bds zksHbQ%@Fgt`rOF`R^Wc0(L@X0>vkIG=JX>fSeJq6#EbzjG>!;}iyRU1EzKtftPfZ- z2xIVjjlO&COmfi1S-=_(T+SMsviv8ttgkBKUhw|ii7Zsirl5r}VO7mx<<7J1c9u#@ z6r~UJ#6W;x+6>COBfE4QV)J;hN4tg7Dw?*S(K@{Ci_maYF|KypGmAs+Anr~Ni0Qus zCcgK4gk0R~2^z$>D%>G{NOXGAl>S}G(c94ymi`l z3hhBnGI9K%$?EcM1gj3G``f_^w%(J7Q_#-{sw*_6pPFw|P0iT;khJxxVQCx?dZZy}*Pia{~R^3j|1- zN`@(Ma;(}-B?tg{HFxH@_hr(jBO(Jj()(nr2Ew_C$(FCi$||^yhzvq7z>DnOo*Es# zE7M||HI5)dLvKa1*spfC?pM@7fqOygS7Yue%fLbTfb<7upP8(f`A_;jr~ArAz$a#4 z5z7kFORJeQ0PK{d!p07IFfE`r8LXe)xFFy3(bbS(4S2!L(xsLbp(DK?*b997{49B> zM296WFaY$%BB?7K{3Hkfxn`&lu~fzceYJI7S_Z(!IP=*vEb+feRJ%z;?NNL>^_ASfvMi6AVV&id>v(S;`nRKPHv%R9%{sZFH?o5@-~~T?YmF?=RS$!h0p_ut z>Q+yEA{L8`*VPmLTVA?K+=UH}I-Vuw84ZY#sQ~%V>I-Ex9DgemvZkAd4JdEQ8d*rmUT< z8o5RmQ1t6m=mCW18bn7uow7O#r}ljd5o7+q(V!BV}872ReGrpVDvi42RZlIO!MO!c5v9 zqgsC_!vjgIk57U4BbudS=qCmXCGmRw%R&R~;Ksc3A`|6PZvE_|%u-1@XG80pAMZ|f zSrNl0dcG2b6=;*A;EdLF+^Kx{@lPf1+62(L0uW!|{ZzLjZh(mT&2l0m8Mc?bH=Zlv z?C+n9D0X$dihGvaR%v`osO0b?WVdB=1H+wRS12JQtz2=t!|Y&y4(%z$)}$P4s>2Bftw*Eq`(HiWFb-aF6RO znJkG-z&cMXfQ?L-7RQ|1^O1@{snQ>}iP^xg5538WLs7|cyL-{E96BudHm&o<_0nH9 zJ0EoJQlsjp8SHRK4JuKBjjS`PD0?ZHeq7|GR@3cM;gI=G;sxwr>FuZ4oqa!(n$=q& z0AV(KMvtQ;_mbjM>r2V}TJz2T5Mw)^)6Vtjt+Z3GT|o?15PwQjC7yfW!1biNO_eHRCANnD{*G6TeDgu{@OvfHslXb0U&t70 zh&e*zg(aTN^Nc@kD~j1*C#hWNp!%v6rlM8-(+3i7AYP#?@Qf3s$-bYh3~c*5C*}01 z9RtLD>ETb<(XR;%SXt>qsa5S53_$C1AH~HmajJ#WVJoRo^5JwOb58ADHd5w6)@S|v4; z>q>1e5`1BfWWz>Rq-+ed3KcX@#TL2?W_TXepZoY4)l%41`|`l#);<3Hizj%`mu^)k}(|Z|h|3%9`(=wA+a>TdVE=25qIn1(DJu8A3 z3dFYx?$JqnJy@glefyuu#99wlg1ms$&)$%pW&>_JQ9_2rD+h`N2XJVgnv~?uySY!- z4zw#~3GCciJ72|7tfc>sv9AELs_Nb!>Fy4R0qIZ}VrF1KP^9FeQItlcy9I`3=q^EN zkQ4y{5u^lz7Ni6T1ra1nz~H~$v+sM(+UH!J-=F8Z-V5J)_g;I|Ub_R&z(d0zhB(X0 zU-0@c+rTb0P48*p8%>ZOP-8|R+a#z5Dh+qzv-Ip6(%DKwX*ngV%Q!P4pCF6LH*{iZ z@rG7&^2TUuHK83q5=W)p>NFgtk*q}#+o6Om;_XP20ymN0Yh_@zOJ)eNO5er;VCL+B zCSN?5Q|-+&J1*M^PqZx@5$86jBWcSAbpm3R%h`$v42voY9C%GJtGwpb5{nUXw@He8|5x*HODJ z>JHHC_~9!+ zi;aXvONAOKB6PR+MZRj?CT&7D8mUcy=_4F@?wPdV*35}T@E!|; zcU2ZjIyr2JDO#hHGlLy9h}n2b3MO%FUUpkj&;^LgNmzzS8+PK|-IH&ApHoi;8UFv4 zzG{JNd?P!sf3h=h{tbPczyoOI;Q$i5p>NOC3G$B`$p5D97hV4i^jY8^#H&R_j1E{2 zV|1ANXq@g5&2k+8I4ZhacC0kEmXN(}XYBL^dJ52VasXZlN$J?y;%=n)MQ{dUiWN+$GZE8@tcg=(g39 z+Fl3ZTar%F=%6%4xeJLl22EmuL|+=5?&Ow7?X^orlm>DAkY<^?X)&Hi=%6QAjFoB- z{eb*uUi-EV>mC3bvZ*M&sq8`-D^icDYc7T9A>@T3;^zmW~!?Itn0|wqD96 z;N+@B!Kh6DO2=kI68A_y-j)=c2gF@f8xZE%=q3NNUTX9j4FJ8Z%+&Voqkjdqud}@k zHFOeHPnCRznuZ>z={ZFU+W_GvqMo3J%gk83$d#hi%KNUuX}tt*qy*3+p=Ngl0K2Ph z*9O|!hGe?Sf4~yPH1Enc+XEmawrFB=I|!gX0D>*r74lC??9CsB27Q76)Y>!CXg4*k zQ^|MNJbVJg-m*|V=j9ai3l}!mv`a>5AjVn-qDI$9`?*c-4qVWAy*(&}i2XnmhK3W= z{@MCEikmK2gZzMfJ0}GrAORqTnX~jqi9fgf8)AJTv9+gsClmfm=@D@=5^Zxmax;kdSLDrzqNi=YzV^K>YOn|5w7J3?WYOL^ zY%7K$0igBPzA(iZHX_fSH(_aT)B)ljq~Qc`n1Vk0!}n(DQHSwD05XW?*-1);ZvM1? z@Ygl~>ExYJ5Ys80e>rD|91y>q zTKa2|DYg7>xjl}S8>TO5PwHV11Y!_&YxHRh2qD57Z}!*SloB z_RYV0Ys)md0znMIdKpty0U7#Rq$k#glOv*a+9uS|y-xZ3@Ld8g%5NR*xGYp)&Oj|j zV=o#6_T(ibckyi7+P}3%ZT2#W6u>6glb>#Kd$wqDEn1ts-pZUc===97>MqOdb_9E! z<5&8-J-=S-!CYoeP%%k(aR+;h6cPfuv9(&yNBZUiGb{iQkNkib3s>ik znx|YRwVa_%-OO}?7>ibzU@9oiMb>!9^DA3M1V>yNWB?Iy1hnXoTDQeyngBq|lSSO+ z`OW2-;4Z}<_kUiSjgIo#j7NKK}PKGys zTJ!lWtDV&Dj-R&;4b{L7F0Up#gp=$D~ByAKD%#i3-fWzxWImc3FTHb5xms^mImr{A3XY91KZJuWo#tHm_|m^ncpd z*4*zo`#G`2{)@J?ZE3ORijmSG-WMaOdGCbr#!aPkp6)4;AV{rtft}9IJ)}l|&7NyV z8L|Wbh;yVE<;)!*YxuUFwVdWfc0?8sznw9kd-LJ3E#2&r$^UL4%qThuH(Z$a%@Ms6 z>xH89GQ=M*K)uI6?B$9mQn-_ARYA zk1d3s)A_@*b#Lx$9fmwmT`9W8Q@Z9U4fbjUdLSeN2c=)9W5E#D{W{<2qEGBdt&@8% zApoeT)OJ!n0A7(sLO5uvE?~v_H+6Dv-cf@qge$-g&X(gH?FQ!Pe>gCJa0jxztWS5l zC!qhZRsirIOR62_N`qqYv$RCbwsY2m0|_{J{j_JsDi{9Gp7)`Z@IctM#=pg4d<82R zx+5}ZB|U|oB4U8oge}^kjt3nxzZO&jK)5&|wSfMw0{%+&jJ`ynLVgK#4hRJxM}Q7< zh$q~WsYBiKRVrW2*=}-UcA{)*rN`VnPY(PAK)PU`;Crp6>e|hgy>MVZ@Y>6}v}Dbu z3qR0+BHY?;ms+Vk-3$RVCHNn-X4dlx@;clxLQxJ59LI3gx-M%QP#=@yCg zV*lc~vux9c5rVjTW^WvWRJgV{TOIj8O1icmVhU(GGS9y~tpGoGXSNUYrWcb|h6DS7 z4d>6)_GAL5ALs||*m6t@#w;}f#F&7Dk8>_d4qdaw4jrXZ3boF>`Jap-F-sP#J6AO4 zf%SHmv8#(R0KyOpJY%+>%L8rq_O-_}C>g|5=7hsdoE#0a2Qw~}v6U(Mis&9`N|ipe zO53JqoH2gbZS$#>AK*HA_yK0p4wtzR^aBu+1?~qyhLJS(K+v?)2r(N6+hOBwt@$7* zV-T}sVc#9_1da+yl#J*l@)BXV0G%k5KDa@P&iDZUyoeCQyofNaV3?5|h$BNbkAdcn zx(%Im?U_|>>*U#l5fGE_jiYinO2L_o?I)~T*p0eD%$y5nO}My|Y;tp3gHX3qa)=Gc zI`@_tP9iXKU4qV2ypmrE5u<@CGSzT8i_$rY>lo<~(?k)VX#BfgxS>U7?$ZDp^1q1N zkG58#Bmz$$K`D5B1K*SeC%9lA*((>&4KzvtfJ&**w|gv=QmSWin+=wZgYx(dc3@CE zEMGs9b^DrWBueMWdL$$yJ~2LxT{=nwG5GE+B1CSe6EJ3=lishYr!UQb%MT=L1P#vc zqP7{6t80)Sux><(puz|MF<$dV>F9oj{cBFD;NRVQD?rR1W#0Z9PLF~x5%*C(+eby3 zPQ#~$(p0a}p8LJh#Cki^47gAOL8w~K#hn|xSzD*k^!MpJv(RB9Y>(I@(#y|b%3Ni* z^>vb9KpG^Qp=od#j@1gq#OqP(SIw{+3y%UZH&4r7<9J=${nu{WC5shA^b|JGxM!B9 zu8K`ukoT(Rqjaez0(>UaWI^cN5lbL)p|ruW+V-3X9?|P3v1JeF&GDRiXR{vJoB6_Y z5+A=40Ic(skfYLtdxz?OgU5JAA+*2>@}9UTtDYoPPg7+agKKjJ0k0E$#-E9~xz_c_u5+ zBAr?v%*!|=Os@x4sCId#$;~cWo&4PvA4|vc1NhB`-jla&5$g|>%NW!oO6Pk8kP3;% zyfELk6Ew7Uq{oVmErA2AAkHX`vD9TFBCcc3YmS1N?%bs9+l1@tl0YLi9+p9N3vng# z&LxPvwF}yZ_0d2L@&kGuT&UM9jBybF;_io=xYykL@5%CDW5>wu3d$XO=-G2j*uBN> zr_k7P5;{~$|Y^s_OAu*9uC?IN=DMdSstm(ojXo(`d2MVOvyp(D@M>~3B*xqmr3&S02?(iw%t_980D2d_x8&xNQNmH+M7Q7^)n zebP@WfVM?&r%R*tFv*jozji+``Kcj9@m)$j0N@oJ9_hdH!WJC?jbZ`791C@otLh*}S8#!E zkCX}zh!kI-p+Yxwu>Ez0+ol64p@wSm4YtC8Mqd0!H`)v)0g8|hMVhkTNarTD|IIF` z{l-jCfY@p5rB%@&gmemjUqRcMnOw;y{D6%n!UrV;{wblC{=2XJ#q93@2rGmh@1C!W z-my>ny)k_N3Q7n9OSo*O>Gw07?rP?s&}Y@x2MJeyNF#7(q;#>r43(Cm9-)IfxmwaIBG?;15y11jU$Hh|y5+j1bANaqhft!3#Y1 z7b+5eRPWi?h~yKT%cLeHF6QtY+O_E&#qV9v0|?%YpHqug*U{QEvQMPfND$MZ!=?v) zEn?6616No=ll_GFJ!t?f5$?t`GHu1{+TD!zye-0}yfKLgRuGH|)QJkp8^o0NkTK7= z@}A#tT~OZrg%uLRA*h_Y-FE2!WF(SZl*8RnkO&XSx9Iu3Z6jzTi1l@+dYr!DlzBP< zT9yH&G1-H%Oa_3LczF8&?i@-M45Fnn%auD)!Ym1OGy||joB3+QJv~-2K@=d0Qs2W7 z$Uk9VdDVN;R_~tAw`d`BV&(<3w z0|3P1O=-WQ^^4U<1Tkp0XNO=iO_zIFaN5fF->4^4Tll z3ieY-8b4TsU_|R(OxAMjlpJb7#w2-9E5Hw4T=bJ*k{1r_2j;7qTF(-g@r@to2W`7@ zK(EGmx?)@XfYbLr*TV5c4}c+#aNoQ5Yw_#BKvq`yH3AtOs#(j*_Ba7P0^)L^l83#N z#ThwaQF?5#O}3Aq|J^FYP38MHnN#tipLg-_qg9*rxiDk$0C`5~^#_5S*D#xlGF-&6 zssgyvJLz)X)siun)wIoRq>^&-YtbV!b_qXIfQF8dG}bHCn>0$F|NCIR17b!F2{Z1@ z#)(l&f>IeG7Mf2^u1pf`aJB%kiR)WGuKGYP_EnnnGNE30gUM}f@qS+dI!}jxrCGsHvUQcpR+{`#Eq-X zuuF!Lzy=g`T=qu*pndiEw#)3K10j-tqxmBuW{acTky36*?>WDKt7$hi8mN~1(O$+jP~y1^kGH9QL-2mrmTTlMZb9SCgp z{s^TLg$3lV=}?`Q?S)Cr9)W()h*lr#+RPFtg;7(ee{+uodlD?UDwob(?KT1AuO+72 zK07ti7J|G40G)V^tm8YzsR8sGytDz9Tx-(Lvt3J^0&-|^#h$L~uO9#gq}nF{(a zzQ;fM3c4}E5wql6<*mC6Ja=H{@?Y~}PX3K#y+QHy;oSi-m!->2V0WtF`yY3P_jv~C z5*0=|`>B$(om#O%dUMeY+T^a$Kw(V0_)sYp7{Q2t9;fz{OV!*S;(A4q3UsxYgyC^>tGIN_zQ+-ZiC&-->-uw+g%q@`qBG@8t8N;ko&|mYjgum+yU`k>7?OuTO}y3m6#F&x;x1Rw%M*H zC5`<3KtJem+BG^X8u@Eb2;gq~Dp~z=d-j8Ep@X;Sd(3fg?9gd9yid^JP&)Iv+_h)A zXMCnUscbhKu?EE2U-5_sM_5yO{-v`3W1$4dXqXam6RWXDV{8B#M*u{dOh&feoSgUY z*%ud%=~0&1_e>xP`Loaohpoj;YE}B8cWGPOtR;))vXTQ-mf{5sR*7YUxY_&mZ)Ub{>;+14LiQ zQ*xl=3)neQ?Di4e4r8q#Zj(16Vx;TO5piqJe&LwIqDP~&(HYGG0Do8(l9XN%{q5j5 z-DuN05`YGmUAo(`Qi%0r=UKYJ9y?K@2>JkSxZ=EY``XEMvS{oErPCC~=dK$IQ$UB8 z^U4F;(;)xXWV|y`(ip~5D2!|MdG0;38;h_407a=cXmxI1DJV)1<5U4VYdzgu>aT2e zFT>JFj73_8mG4(12}%Z~Cl{28*zU%sFNdwtayN>D)N# zo+#b^duF|t*BBaV004&8GgIPNY#Bg*R_H)m+tDF=5VNu9u;I6eH+|-$wL1*5f`(FA zup26Cas7)n?<}20hJ^$g*~^DJ*sP%Rc;Vv>v3Vv;NPjOMDDIre%bm<@rU*@JKkv+) zq6UE2*i^?3hlXI+qsqs9W7|E6*;ue+8rxp(9Pv$Qk(jKEosh!a*HI+d$RO`sB`|@w zntUL4+>F3!(Ea_RwZ9rA5ddP`j|gJOeL>PDcIjXR#1tc>0x^O(!}TziW)GGkDUnib z_Bs+lB$%5tQLtnXQzGlrb#WyUlXbc6*kA+1u0%d->}InMzOf#-G!5*h=7D(a0C>*W zVzuqmD0x_hH|})=OV3E?hA3f??0RPP+MqiHbCe6O zQux7sV3E4r^bpW=L4KegG_l-sdP>*C9t{FOkLU)r>Y+t!!Z-jugb>85Ke<YYpNRg<@w)%4&gL}4FKkc_B%LOrP zXu8Z*bQ00hM6`GpEY7RNYf>=+jdUX1?Mj==)v~n?9e@}m_mB?&dZ8pqxy?2JV|N0g zk`z=L>TW32S*lx>Nx4L`{h`ckLQLKmZcg%Cd0cg?7&v z2W~8GM{3<30#TS2@i&!g>J;Ck2D&x?-d&c)joMwh{b5UuW~@+eH2mm*|CH2P-cO^ZRqXqWfcye}Vu&E=oX+&(hf9B}9=lfwOFYmiOEX=DlN5uT?7QWZMPP_bO((G@t_cK^`DBmk3`-mcGV6D zFm(`v4cHS(*E7xK=2|y)nV>)bh}T!1?u36_PE_X69y@|S+aQK%K)iJ&?gAu#+zcRN ziuAULlO=)-z?)uQcj-mD4QwzCu=v#WPFH|_V^iA%+q7A_UTPgtI@&RB0B+aVr30He znfRg%*;5PC{}W#DL<$Od+Iu){?ibeQxy%7?6hKX1oSrMxVP204`zjxZ*%qYDs#^2?^!4He$WMv?JfyO#mByqm~Y97GCYvLWHcWn*@mPlIfLxUPWY z%dt+*;0#TF&SnDyJ!BOR?}w!pnQCvt>0^4^@eUj9egZNF@QDBwTdp0YYWIqE8q<>k zP(!Q`w^pNO`4czqYHKGsEVHzxc1_ch0ze6&(I(fs9(C{KC$@yh4rW5=IATZcMfm5M z?6n&Xk)m_}zzTMLVnYCoZtKwlwn&9thZuylDxHdcv*OBV5C(SmqtpUw0sM_AH8w1Eazt=+3S?wF&K1im5)0MIiuFJK+K z`GE~Y;|YYqIz3G3Cb`!p`CjD(K?TW=&@Pm|PCo4Uk;%~6NB%iM*J83sKM;j!(Cz+< zb2Sy1I+hwA0Dz)K&q;{|4m6<+ApT3t8sbLj^2gl~G2nr(4Up9E zNUv*>zq;3EZOW53=rFJ4^jOg;PT1ir zuZYH?515zEJY#lMnY(5!*^qSl)+KW?ods}>P|9)l{r-DzsjUOlL;zX*vdR=U7QLOm zj&>-cWdf)NX_GsY{PfG3+FdRmmQRSD!iL5Mzq2+@VZbPbQBAaY>a8Xw&)b`&xDv27dv7 zW>aAH*(zpf`Fd2v-Nm$0%|;Utj}{QxLDSJSbS_j*yMoCq0V*K?@UO2-nRcqxEjzQI*18!VX&|MhFJ@`cX{~0@GZoh6NzdCsly2)N?I)fU zvmArKm?t=@(D^@N1iY;pDg@Nyd$j8o=9GLA&^TvGJWf}M|TtLHd_YJ<8yTF1O zyQY-7qC=3m-4X)OyEGv&0+!uLucL{{T?l}*aK%$UVF5~&Kkkgh@!b{lPEC^>_<;cF zxsgtr&g)^dX9;>Jq>mU)+IU=>zZnX#78ogna6~@%H!4@V^sB?}h3^XSbOF~W0N@(M zj*ixoO#tgj#lulQ~#eMYK#I;J;&H~feB%k*3StF&BfBCB`(iV;S*`c2x zgp(ff!LycNONW(dr+eyQk#S4ZM34b^`vt!1dRaHxw1WT;V;cj5){|p-f{p`XW^MA* zP4*it|5As1uVhXhV$U=u4?nAHJ-_4e4aqQAtz9<5&2aV?92lMzit@`EkDcKhT=UHQ zp>|&fhX>#6MGLfO<=%TTZT~N}vJiVfj9!$ieA4NXy9ztvi|1_sOJ}zmSv!+MjHsOZ zzw&lCVd=J29&vNO=RO{w#b`PTu!C-?vwYZKm;n>UG^0mr>omCrK(J1vYw2Lu7o{HLO>S!eyQmuAh=FnyqQfyz#Igjtv7Df)+3*qIP3c%qWweB3*; zgCgCWRuAF4h1GMVY6jWJRKOa0yPJifa9Cgl!J6or?0|Ave*g`#!^p_s0br3SyRw=LAtQ zGWx(Y9>NERVe@xHl>}+K`Ke``4j(4L0Enji$=<#0bF2rKZ?`oH`v5W2e_E@)#%m6HMZM}9|rB`1z|$EGKZany5pkr z^&jgj9i~ivz!od21~KMe;VfO`^FI}Ar$t3NCluGT927hN;RlA=5l7IFK4bJ;tT8|h z@&i^cx~F~Fco_kH;)wgd*=>P6fta}j{Fh02ojkr(eGCCWoI}!^Bl4H8#3!JaO!8q( zwA{XZGwD5iQTagt@bPqJjNMWsrZZn&%&@A$7kawe1T;U8wGlM=m7Ml40AW*u0)U^x zyl(|S3HjU?YCqscZR=8FPs{*-IC=T8?&gVy|ID*ZpX_83LiQ1uV4$@AtripXbFc#d zN`GTtOUHHb5J&4}RqgRLCgwm47v_bhs3lfrBzws}vMroZEperx){VIv>uCk}!Qbv^ zr{|^2-B{tke&E=*=II>JxV0bX2bC(g(2h84D|=gP4vY~~g6C2d2w80Fe~~*hyXNc@ zY7JL_zxJJ_tQV5Z+I~2&A6Ri%XWdpaCFKYDL8Er1w>_CwLskLc{w~Du<6EsA#GXwu z9QSTg)*aB-icD!IIV}A}DK(RP$PR5X?}3FnR+yd*ZKx}sVjiF>hj1?>v8L2Kb^t)> zSdt;}YjyJ4E+RT~j2MI&7j3GTsM)YeXk_3@8}R*-e12AQhdNJhpD9W6! zekrq9n}f&J3Tu%e-d$vALs{Nd{kUZ(BuRf1b|*>9QF91){*f<0zjPPK`%GQOx|yj?TN?sd}l@=DbPlTI@tWv{WNliH91K?EdSDi%e*rL4J zb&WU)5FGxv#AC`uX}2|f28eOsyp2d;Qhv>r*YI8|hwHT0OlSj$HXvI&z9*;~yahI0*wxvQPa*bs%9$_h_Vs+d{lnao`?LbUF06pyDw$jB6va#khXeb8SGHSwlT2*(1O1?(`+U#W z&?4AYKVbA{MYTnkK^$tK`84kn?H=E1Q^2=x7^Q-k7gR~$427o%_ui@8ldkDL#?u!; zUM^P@MIQdib*^s*KB)Q2MyjPMP3pc3TF*B=l>Y=nGumDHuq5cGw;gN zrcRI@0>Hccag(&{8>ZS(1rq8~z_5}|c&jO^-=@Ld%*URt3w59{64D?)Am`Pwx(&vS z2>`L~uG=>~WDgM`ArPZ8V*f5b-8PIYJUQ540{+hi!*wr7Bbjd8z2D2-sy2W4FSfEs z%%Lr2n>b5Tx70yfl;HaXiH5m_2Lcd237DNQ*iHaYdTaR)!~eMk*_@*jNXEX}cPQ9b zfSBQ*FWO<%w_(Ja!H@%D%<$33(5K(|`$H$rUcd9Z!+T2Mz&VM?3qAk>ps;+5qB6M? zU?W>w*Qpw<5&+_?pPIc?S1zorxV&#Zd*}p112MiuNG@CQ)9o)-6AOqLJikb zM#YrAmDrgrSeyGRP3*D5$gt_#XWY5OAsfTodykTt@ibdq*_j%|^4;%m|7eSoyhE$S zC5F5u-(UxEbVkj5j!5HQ>10ofXwb=!SOL=M!}Gg~>FDM)nD#U3LJs!{_#t(2hi40= z78bT>8eof=LGL3IbVlRVa7I7?b}Sw3%=W?PYDf8A6&JQ6@KgnQArR}1qt36^GonWR zASN3yII{8ipl!C3vt(K)ANjqk0Rl88&DT*pfdkpybIjI{2C%v$dKdg%T;Pu>18cXZGAv zZ_Eu#+)$K5CGzwHMq!=4E*u;MgBW_~AnFI-=qY(nd+L{$v~x*@>Yk?sW0OEPeN;pvisa%l_i)^a}3n>JFZ<;w4V`=7PI>hU! zZIUShuzMGhVxOi1LH%w$wbIO#jUNd1H0X;xeRbk!5_p2B6RhS^+cRrg7p)ju0syO` zi{xX(8y`2N^QTT`xhvNMU4socEz|@YdGTE*3a*-Ky&YzZ4>hol!&(!EIF&N=u>%^# z3(@xQ*m0vs?(2JOeL#6Aow|SlLKo;1SIG{T>a8F)^i3W_vTs?*5;WT5T_A-*husv z+|^Wc(6`zgOt%0)g^*u_MCfL0f5*J0qol_Uc}E|@4*!?`Z462UrK8k5o%2MK?`1cw zGgoFtxKcVTkqCDnIO%v5yHpHyK#ZiIK-r=7H}GlR0I8}7{OdQU3=oIpPW&-?4T4g#i!4+r)Guf{~{_X5Cs{hk}aAS^bG<)oa(_ZjzNxUQmf*lIn%X*joE;hHkP&O!x-9F;RX3^Qx`f% z^oSZoUZ{4G*Xx04hlbf*H5|4$fYohIzsWYtXX|pH6tzPCTGh z0Cr2KKmgp8EG^ADU2D~hRGb>5wE#Dh&ovbRb$gN}ORmj1DnCLGz>w6K>d!^rn>kC4 zr?#)~Vfv-o98AVFD$>+IwsbpQ$!5J{YgWl)WVD2mJ1r^_)9%EqSR^4?y0_42jwyMz z5P^4=EI-|z|K$GtniZoo0Ay~~H4Cspv$)dFdTq!AGyoWku?We%5T!TwvQ1fp5dmVb zGEP2Nhc7Q;0(%_tYmqMLvs7RAYDOMUD}V+`We&(w$X){iK{&7%0)qA_oh^@Eb*AwKwi_IbRRkE~_^Kq%y(N+Mb0f;#@=8^YP|4DXRN-we zo3>idf_uc|TOYit9WI+h$!W!1XFg?@!m>K&bb@Qf4MSDFTEEv7S28>6`IdPQHKs_u zheoDM^h|8|V;?$+Vc0|MPsC5jx6r$Rtn)ADv|k%}kM{AbyVgyus@bs>Y%B^5yO0#V zGWED~8{Derx9O70I=RLeDfybLP{M~XSA10NKLcC5j#vA1+MkB$T*J(eJgtC`rrkax zcdvALRiYA=A4WG;YG)UQni#8|-H0G(2HAHHj$D4O7lea@7^1~dVDhf} zhwYhSbWdt#)dA9rsagkbzkEnbCNvBP0p!a$5r^{?$m~xZf6r!#k|8U202x8I<+1A( z$~>xS2PzUXFM9UDOm|{w?Z3XeFiFh32#$ih2yE2p;@c?!KG8@7CpdZzL9-Tg>KuO6 z+Eq)BdCEKeGJq)Hc8vp-7yg;}>DNY#Q^th>HjV4|Qocvdpr{%$G5dz32bfKOAD{-v zol7~5|NLG@W7FMgkRQcv=B|@Y3r0va4`n_G5(u`+@ya{;X%%O^VVm+)jL=+wkQ%*D2QoSdJvoVV3-&8K9f$6 z#4pzIlAAX$8 zjzjRc6p};WlAOxYN{=0{4|u7^CA~y$`eJ}s!--Cp+zF2vZ?+27z@37xNiA#xdQRp+ zU9$YD!;7hbAhaR&r=p<=oAwp<-zgFdk07Rtj<`F%G6PqMNs&P%9Zl!){vh3bm-qH( zD%iY3lxNk1pZwKL`vb3gCYJwqv@qLAWKVmUJz;|5(-^X(J~&CIVHEMjWjz^A+q?<*)8Gk(&!@1mzA8&4AGwh88`u znJr2*_^y2L%?4wJiecs5%pYi$OyC8;Wkp^)rTsOracmI3txDG+a@4DHwX(d@ znG#?|oGC%^6jOtuMCs)FUY1ygZ>$-fsPw$OW(YF?@#xSlIdn(Ku!Lk4$^!_};=YA}GhemY0kH=8 z0SWO@x)!5p07{2SuUW6Oo8f+x(Af4aG#1316nHIlg=kI+?D(~uZO$@3=@9>tJ0jwH z`NYZJq49q5F?#Ukj9z?odT_20HTl7QVD_P<^^SgX?FN9T370|l2-T)-Y)He7T585W zG$>SyoBAABx72nh3W63Kd%J@ZB5_srXYc0-_5~=N&a`%TVK?1uHus_}VuVN#$ICZ1 zKrjfyzqtvb;MxD#3n$b%L6i~!)fY9<0|`&-3p;-e3rc2`D| zzc;|vI{2@gPENH*ZkJwuXBHihopwVTIYZvZF|-zzhIjhL!y7Z`{L=`6qs&!-{Dvh|$xdWGINE zr9QbX1&JRCKa4>_@1_Gy_cybN!S`SC_+KCSCMy`Ja&>Fb&1ZuRC4ly>cTXqDv)=}w zp|j*aG_El()p5)K2~*zVKiS4bVmf!@_lG&h@38Ny#E>x8HlyTIQUj%OcgxR?f<7wR zAsAyC%23wa2YAGDG*nkKEe(a5FLmq=X_Ds9XUgE zflKm1Tv$>@66;0ry*+%F+Cmzo#e1GMPtu^0)j%`x4geY$mo7(apFe+du73|qyn~I# zs)1OC;e^nJ@nObOASTaGstj@y>5nIF2u9h7k=_PpWF0&ill_NbT6@O5K+KZ8i`lP7 z1>Wd}G|o$mxFW6No;ux~yu9X3JsdUBb-W@@-LHQPyOIUNb_Ol4i8KsCcJcWS-GlK2fX1PD5)hM>ZQU(m<7yxV&*@jL zj{zZW7alMqOR%$QDufJa`F5nQk}}sUXZ*dTsgo&&3!VJ1V zJW!=jP(5et%2sa>l=s-wUh0Quk|tbOWwsHo@I7h`hX!#D`Jj>Vrz(jL7Hwz8K@!Ux z35lzacV1u+PdR^9H%d3fqR z6|WqK*W*<~SWkiw2ysdOp||c-M)iSBaLCqbhSo{;jp!9U`L&MDDtCYo%9tR(=Pgn0IE?bz;a< zUyc4&{ESLDwzjzIF;(*{3MvJ}z<~U)4*DXD`|@}gCr26aXsWi00U+9 zjLGawjipl>`=%##MpT$i3@pHbxP=O5(|dGwM%9x8D6HR`+7Y0^bn? zVnf|#Bo7p1t`EIay?&5F=P+*6_Kw^3DHuW6lf zw{6=Xo>tI%?@Rs~hxfi<-~W8q$L1N0Tq%g|!Z7!%q3hs&wG$l|=tRJz8UPd!08XM% z?mE@DGV;8R+a^o^#Kt0Eauj%SmTy)BEWIvvj&IKdyhMF*y5ibyOfm)lS&@k44oaK6 zYaQ}2a&M)G^_ur*uTQY$4i*xmq4+K(A7~X5eVkk>Hu4z_Fqsb#0+^<<0@CqZDTSlUzW!?ykJg?SPY#ABopAjU;ns~4qmB3O~M zFKKp61OqYHm?a+obmo?(T7s6n4Y(y520-&ZG>z|WM4@p+%7zyCY^-C-*z2+D$a$T? z8D)VT4Bt_5*#(KCd8D*)iizP_nI_aMT`+C}oUC_E-B?dq1;n#Ba{~wG<*3&`0%zN4{8PY(>;2Be% z;ToIv2Ww1W&VUf4A6EIcN?NzUS9_G!4feE)ngD_h^iG(;ZU3-)Kx&ubEOD{6GZBUk zt@vMM>~>)Kb5f-7F0?_s(mDK3ZR?P-rQs5td6>g`;lN-~1N&Xb7Yty2pda+swz}Hm zjHzgl0eH4`ykZsIvm3xzVFZzb`q9UsCO-a43&R7{l8Lf~Ay-A@xH@#66S=ScI7aKn zL=M!@Sw5eL+&SY6cjb(8ibu!nl_IbMkOt_-tJf4dqxW)|*a`sKkiSnN$6Ybt>i*|Q z+g(|DeW4~mFD)fH)j*qzS2`W4`P-@7Q{Y{e{t@&Mu)+jSPZFQ~J383YgP4YxaPGTk z_%%|;drwZW{@j$E*JQtAZdXfJ3_Il~Ym`XS>l}KRsgC*<@pwNdO=m%Y&Uf;Gav`K^ffYoiS*F;P& zMgWNMdK_75JpX^TYzJ=m>NIP@g?^{`m2%8+9iYUd%j^9 zr~lAZcl@Tz(*a9l@e#c1tS9#uS#@_{8p;|#oKX135by0P?D~0NkoUd?y<8SiofD#+ zm*fhv0%AyoLrBfaOI5>cNh1KP^qG*t-MbL>4uG3NM45B{8f3m?@#G-iAm*aA{B%!J z?#_Qro3)8WAVva%@!LF6FW7-OGm#ll;$uB5FtJF30MJidCO!L}&e)9H2>`KPq1_e zK0AFsow%5o1mb-1f#zq5+-YB0#4ijPqcb?O4h>)r*?Lz-fJ~GDVxoL+?`gfPX@))k zl@I`=G;PdCcgd$&%9Y_+lL>BTF1?pXAslNB8~mpupT`=Ae-Mz4?9|EXqm6?-D_A4Q zXx-~*zH0Z3?K3b;0t(A-0Q9{2l}uN)5{>y20ODQce|N&pPmA+Z%p1`_PbYfBH21Xe zZ9|i1?JFEwe883z&4ansq(eiTxoPC>FWs`{)xDBASXrI!XJ@d2DDvKd+Tm@9$B_|o zI2$pyazUF7N~Eqd?#+-yU=F+we@E7hyslloV;`v-`X0Mxqknb+JrZ^4B|I&CwiuwQgQR&=kq zYhtOOC(V;Z1QP2TM&H<7E-0PJk>0>VIB}OK0z2)Y-8u5X+*o`0AS{A+NG9*KgU(5U zS#1*Ocw@r32KfQK)0ES8?*V#BxfkU_z=S<9&S7Q60zL zw)}H`unF(aLrhmcCMckR2=(lJ^_S4`}N& zY4Hh3^Z1Hh+n_r=lk5S+8uq_E-&xy1qLKZR0(KmN-GG?F z`#Z=Eh>>j6Rk4Q&$KDkW_3*?io!JROA&GYl?{1e4$)I#Lv~-nij+0;)(b^uhgJJ|R zM-_OcoX^mHAD_$a8HLU%8QO%A@mhU-!_w6KiGy(yH4p^pH1E*BjX%knr3=qLZ3gRV zj5P;t`qnbV109x7YJsAIE4`EPm8Y-lPKgXZ?09kI;o!jYva&>dZ_A^6-`o7c#-~cj zSks~F$xnCTv)aYo!O{r;-{^KYLoni%eZjy4VrmoHsp)oMFRh*;MS>NSjM-S0{PVoj zHs7!l5OW9AinVLqO-+aTH3^0b5R(ne^^lFVJ-)Q<1WK7EJc9-KBm11=lq3w zZwV+Q!YaJ}w&p)qf^2}8VFEkl5GK&kCOY(?ZMrB8#2?Eyb||h1B|Z3etR*oD?9FbS z;WJmO0EosWB$u1D3z)XdkiQ!iy$QKSclX%G3|Xrm><2z9FwfaHXPv_Os zOh)S(R244ONLG2B4O*xkK8^HnEekF7u6mOp$0#GI)+ zlqUJ`Cfp7GX&lIUe{_0AH-D%uMD}rk-ejr6k zP?Epr>q${#cp3x%5^Dm+tm>r|XY7ao5Mxk7;#+Gz&}QKghiiD?WF(~2v!K^S$zR>h z@AUj7b_5X}MYI>O;Oe}h@>_)D^qj0okA#-5M(bCm(WB<6er`nQysezDC0C4(4U zRvY;cB>(KD@4tThx30nT%>Z!(3XyUII=f&6+dSZHxH}5pEFEbueYwyJ6?8;2W=#Ne zkhIpX(dQCII-4>RR~xNMH=ABT{Ie`HG2ZHguk-6kb-rwNI{g1!WwqqUCOzL~eA*AB z0WuH_onJsp%J{Sf(Etgkn|O>4WM1PbsejItasnC7f&?yUg7Q#$N%^70tIcEhsdu#i zjPd|t)X(wH+Bf%#4(@M<~g=W}{+)b+v?P=qv${ zn3JUFBm+?cjq4x=r^k!XG84iT6|D1S#x)55@0$3<)1`ubTu%6){Rq7~x)@n;d3a)q z4|8nPWp_L7NwQ`u{!XkctNhNK-*ip4#7V*xFud^reRkAL$e}iX(GI=ndb!O^yYXP{r-EL|yiEb^ z2-|6ZINV}hfxnUm8(m&zVaPKV=}~flI#EH}0Wrokm89Vz`B&xK;N`Ec1y>IU0P)_% zkKKXL{D$j-jjSl8wvzY(Vq9ZWt7=bYGQDAj#X;g}LPht3?Xb_C`(G{HIT)JdQu!h9ROX~RO0lLXLXE?yW`$pOTXcRS2?)5UJa(otX z^1Zqlg1IM%F(E|hAj#kk;VDfM=?=j}G6Dn_0qKx9Ps>Z%!9D5RkU2r-ZioonKl52v z-!ly4o$HBUh3kpSikm|{sMUEXg~WB`AMlTe2wWb_koRs-tJ8&wQo-f|y5N>azBzG} z3}VI_QIHdBV7j?)oVFVY;tA5-vt*r2?0eYRwsR75{GRFaf8BY^u;)Uv2^*Yq7?IE~ zhFwgVjJ<73M9CngjYRL5<{V@P&$p8%3$g*?uVe~DzMTGO(?`!a4l$+Y@}MJwn4zw5 z#(d5@J(%O!mE;Fo8Ym6K+l3!Yk6o4D^(1oP-{ntSj$7NDgGkv2?a~*Dn~|I!=m&jt z{eEyHr$GSV(PY+Aulk5!LQMdOaqBpVyWbrdv>6a{8YjiM_bX$92qLXl);C*9`O^%J zq_5~07%l>d=(x{zJ9IfH8Q(}Il%cr`E$`+XtMyf2BFcgPy&{H@`>H$qx%5>777J+l!k#l{H`MZjsoDr?0dVvRYf0WHxmI*D*#|b zJA!Zgkx?h8=8n~HU;ugX3GA-x{49E6$=v@3AUbgnw{JQ*`sN!yI$3)0XWN8VEPKc# zY5(UO&wyfUz4mE%$2t`%8Nq;umNQSVb_Sc(G_X-vh#|2%^3m5BfHeq!)1H0Gwt6=&vq(t*h!^Mn+PP^5eZ$!t zbM4Y$(IBRAUT-kh8P6m4uh}DcFrt9CZio%o7=!UEO>^5N!|Xu}DZT!byr_1o?Ydtx z8CMTcFC7fC$B5uiTHu``STTrkGw@MqDcbP9d~h>oZs~f_cx{O3Chya$n&x@nrxoA_ z4|tqP$1?MlLpZP>SUv9&Js)XY+z<4Fs>Zj}vkD#v77#6Qfqjd9Y-dlFliJZd7U2Tb zB^efyZz<~JPaNo;fBxa~uyDX!7cI1uGjchhBJVwc2q0y9X zmAX9c_Vnekp5h*40n^xI;gzZ_Y;Oe%y_Dlg^mk`V0*O4T1~K^UEf=7?Dc@J+FZg$8 znv><{BA?h(z=#Qcpda*H*%S6G90H&Q`2jDi_*Pr5NnZ&7amlj_TyaKDD;sS1>`2Qm z+%@pP+X9eMKWTUg`9{f4syuY>$Ew$-0IcQ^Zl#M-U(8E398aS~C8@nq!|K;)>A2;u6 zYbT-J-1L`VstaODMsD+QM?7J#7s(*SlX&ce6b>;u*T{J_g8>Z0>}VEbebzlG*XHm} zyMgEe_RIaDD0!;*D|8SgJuv>x*s8mLq+4_9jL6)h`?La#F1+6A%^`Vo|6wMdGZ*yQ zRXS}W*F3_$GSOdb2~mZDke_Z}*ky<{uV9kvXC=ttksSgswa0#=R4VIuVUl0KbZbqgQ^P<4aazw;q;}l$Migdv04oRVA_~xoQwXU)Y3z4 zYSwH3wp0V4S2y$QpKk-C%@M2t#1rEOJEg--$Im=$TLDB0;sIg~Ol_fc4rgC%9IN>^ zqD?QUVM#$!wAxInl!(+`XC@N?AhBNd`K{FwJ6i=iAlC0LVGkk2dH9uhJ?&u*_5eV| z^^gM6h$*L3cU2I)=jE+B9W?Pa92inVn+Qz1b-12nG-F~v5Fo6}6V!f)#i~)H1_AIz zxrOc~?(d3h3o4QT5GNYF&mo2)_muIyy9lk%jr1lLv8A1?1SS_D<`+at_@-X;l`E@O zPSAQW{s924KAk8I!X#7h?hM(?EAQ(7ZBki)wg~8oRD~Y+ZTY(quh%o($UH~)gT}G^ zKtCwU&lmN8+MH(t2v&^SrT~EZ(vsgF5oRL`0U*Yl7KukBd}L>Elo;9o8v|f}iZpH} z@$RDn!Tt}WGws;h;S;B`#P+XB?K{||3!S46=t95!he*PhmF3yX+Odp1p$3A$61p@3 z{)k?r=P6A8M*xTyE?D5iT-eit==AnM1~wQ9V~06%KuI?t{$TSY&5rSNlulwyShFkc zmFbwaCy$jY!UkA@x6S@NtJ7h2Y(B>pC8dMIp_r|t{Lxs>Se9Ft+zt%npCHu2L)3_~ zt?I^UZ!;#2qbe}*KP4I>q8Qd9+(3}@PBuN;ZHx|}&O#h6e6DOdPV2ygPXItXK2!tR zLBl(BZH*SIkrV-7M~Gc3J=<)eZAVgY1c))L1M!(0RYNa#x3BQc`9wA`2tbU*WAu6V zMP%U?5Yk`#TW6bQ6b2wn8`45Sh#t&q_q437MQg$(0kBpoP_*t^Yq?9gY)O$l)B+H4 zlCq%*OTF!_P45bQQ$LT2& zwJ=?3{!>vmApG-9nAJnpfYM*@vD}&BfiV{TtE{aXX{W;u8jcGdV2r3`ihKapJ?_R; zH+9@K-5P50gZ;pv{c`Dq#?zAqhCr^KvRBP(8z?15kiVAGFI=*%K?5i`rnQ(t{5RPJ zTNu(5R~RV$vtQ$#xP|+iy8d~|&VgCFj$3drhN4A7TWJ1G+=8?ixB4gi?gTmLW!w7q zgK-PQl8icfsL|_+Gn)zGD~saoxJAAhNk+%VyJOnFO86ekATgI?3NOj(oPS2i9h&&g z#)#875`i=hWKA0V$LzP9mwpy*JfcNsHV)1aDkulUdJSa#s*IZ0bSQsIvh>KlkGHw#bTA6~We;XY@zMzdt3L;#30r)}gCZ_TwMXkfXN{A0gc z=gNO}U*Cy*h!n&h%eU6B4khm_&!8J^QaFPAyAGuscLa9!Nh%$L%@m&>$i+j{$i>55 zm(J@n&a4*zm{s@<>7?plSvi846#Xf4cmdF+czPEZO`4o<1#Jo?LlAf6Ly#6g#>XXf z8et~40dj}b>;H4s1yRGe-sf!-2frZ3Wo|GLy>U=#aUJPwi-Ov6%?lv_qJY!;8dlzZ zbzkTbx-f5!mJuVwDjtacN&KI?Ox7jKQLQ{7Ec$4!+sf<{j||#FWax z)VrO|56fg>Z;l3WIRSxlr-v_@0XAE{oKAp6CLFkC8kUKYOG>efo49C# z9+sx>MBQh-;5-Ke03vc50fB!Mf=1Vtfg#w_8t$Bapgq_?SNpUA{NQi5zO4s>#y`S= z{lN8;?r8roLmWTQfIO#4|6rgVdmCc}h=Sn}VE9Jhc5IkAhzm-9dtd%S#cE+Ze!qn_ z#B$D4HS;2k)c(v|IOf#&Zye7XwZ=NTYC4vkB4?P5!?$b^IuYO0*^`s6a~0bV!3v0* z%6EH_H#Rj;LfoTJ_GWH9*KeXZK&6FvrYz%AI^2-)@sHNEHpbiu0P*RByzT->wx4|6 ztrYCAltSh{C>btXL7dlK{#yqElkcJQGQvLrx;LFtYqV{ckPHAMzI33c<4}kkuZ>t_ z$0qO#;+gUd)>6xdK&`NU7T?zjGiT-r1Ymq9AJ?F@6)I@s^V)*iSc|^FFWsw)b;@P~ z=*C#iXHwO_Q9Ip@d4T?D^<06so2J&PZ?$QA06a)cmZS}i#GsG3+t=(GXj6ET8Xdj| z@*L=mD?4>9#(^q_b~8cbxr^m>PurbZ{*i69P~fSQ-eBrL#e(imvWXwnwR<9z24b** zG0}$wjErw77qeDn+tk_TFj>KiiezQcBv1 z=A2(*I}yxdfdEL1=_6*!Vc$mjQk`UDq5{(nyPFTh;lgCti=rCHwVh-`cy`%HoxioM zEbu%tzekLfXpd*#X?;_8An;ycVtF_2yjXlf(AHT4h}Zo7 zu0t%(?Nn^DypYX12i6=08sLG$-j&l zuz#1_7}vhSmIKA~oTN!Q@T3KK##|W9x6%1|K@$Km+0bhywXV;yjSDRBv5d*B_ecM7 zDw*@Z?eHz5b*X0m`UvUNa8Gjy0fA?P3C?}xZ`sw(8z2n;$g>bTkr&2Qv-nh9`twfu z1!9yseSDAT8WUHA?wAfU4!9^Gf+seG-rc%%_k}Nl!5_qAVcVoPw z#MqQ`N&aFQ7!mj7>zAEOuwJ#>I!`l7AppdfnV?Dh*>(PKgSME zu*C<(006=aw>QS1WDH48*Ep~FHYMj4zeKvocml;RT`c~U^`^1$dIAg^9`Wqw#@hA) zErOU1@YCxzT#uhUW1HRofOx9pl{_JfW8yp^d$-gI+uI@UVY0*EQ~6Lqda1JenlN{Y z0KncM!?DAmqvGu=4A^+VW`(6+ky`K@4MmjYT>I*y)+M(lvq0$pkR81Wk*3`^I}bx+ z2|(%d8pX!4^x4a12OHZ*N}nQXt!ym0Mf<=Ct-unm+(!(vkd^SFO`bjO&N_&T+(eYB1H{w!z1#cNa=>Zy!NV& z2u7p?fH?P^QO>UZQB7)9T>oDsyB{Jud!+^>{Q%_X)h4#=f@zLP{QJY~pu$i(03gOz zNfJMEuevLSzA$rKn6oozO9??WmG&@NAhdAE-Rr{VIxY9i0}ccQ zf+g(7r}AbVJ*8Rl+5o_y5TM^TS@%d^ zY#}hHAx<%%(pcak~ky*89v|IO{X2}S(0Dy=xET`6sm&T{rmP7acX8wUdtXxw!I+gF( z>#!DpnfxN?tkg)*mg!@id=808+aD%tL3qXqVt~-5xW3IC3s^a$X~jby)wla>dL;mG z<&*^tNZZ*5gH!5R8`Fo7HKq}WFpQ8@awoP!5|zm|tWVd)X+y3;@s*w%oHSZ(BKJy% zH&QRcj(bq&OobWY+W#OXG8;w6YyEM>TX`{R2l!*>k;QM{Sco{D9# z=zA!y9k?l80A|bQihLYvRuQKD2dlKX*a83ufc$MrIkmtrfB34bHWjaXKrJ9nU-nf; zTAQ<1u9Rut5!;H%QZXSEVYx938fOgKb=k^}J-Y(POG)G175V>O-)%=0lnfIAfKjr* z?6dCG4e2H~(n>T7(gc(d5cPpr%t2|&33GM#V6zqO`KnIC`f7dHwZKehUpz32sfP1| ze77z`q+|`C9R<8RQTs`beW$e|gS7#O!Zhgbh}L#Cr}cx{*2s*30eKPT{88&1vKPo9 zZh)SbPh}}7RGT|V_Uz^dItT_?1khhwid1K{?*u`N0eWsYwqjOW!P+9gB5L{cW(J2f zgr?m;W!Hx4bs11@SQ-m+~@OAh9OBZaV>c#`)2UJSoo4Ex6ZLYffJ}M!UQq$%$y53hh z%`#IK1fr0)v%L`8>0IJiJYq3BV?8_jW?M$e50p-Kz%&4Z`NUbHbsytNj3Csa0jj|DDWY&J;MIN*#e`s1pe!6Tu+_b}v(X0gki21D4>=ozqnTkS%=$L3{&i z^MTh646FLeSP~-E8z(Z?y{T*P(p~_z$^6eC`34C7!7KN&uD_`RgqQdLgj4!tP5$Z* zaf>{;rG3P#3BgPNLJgPp<#TpiU{vw`zt7laLIuj~j$1k>qS3)VEV;rKF9DbfqG;u3 zRf_iGla=jmTsU!}BUssSxkTk84=Yv1aByk~YtLv|XW_efN_zqT^UJsiR^>77PVTq% zSr-GF>j+Q)rNnyx(2hEl;&qQ@@-Pt7nHYA!+MdCcY*z*EAWjnsIhduyGwDqP>`t^xTN)5PmJO6hoIELej~EfFr@ zWX66vDw?UQ4`lusHGo)O0@&+?xj~76`0Wr&cf@YIMQ<;AeRZOBQJRsMA4mbPEgRF- z*M4H!qCtMZkF03%kK%ZF==J5B`)c=q9++Nr!6KuiHZyzdSB#o1joWP2({ z0HOtRXF%Cfp2S!KCOFttf4M8nVLhNy&ge$0vtA4L z_y>SBoayvtXrlFc)a-KB76*@a03gmHr1O?zVas!~{4$&?wIfa0$&9=v2e>=Kx(4yJzF2LN_9oNu4UZ^57o?=w7PU=`6ZE zo)La7fIB-;eWJGacFUovZ2-#QQA$Csi{ctmzmWm0P@zM`d zgi?u{dA?c8_qv!w$B5fP$v$FSiEo{)e6XK}^`~h`nA{1(2>0PS#s@Vw*})5?FA~1V zik3$Erib(>z?5DfojAMN>7o_$+lhDV(&1eI%#jbB9RS9k_}MeZ^HU+fOS8ZkqiJ>G=bdTXxlJ`YakQy<+J$*D(jz7u^RF8mOnE>|lg9n8H0kWed>fX@N-rsuib98XyLnb;Pu!do z%e7>T>`^)ZU_}zDSQ78)vCDRN@=a&Q%hAk&UoLXTmI{fvN3>k_O76WYnP-d(FA+{L zA(`b1>AS|}4_`7@owt|1=U!Djv3le1#I%!EH_JK`qerq=t~jXf7kXvir2CKtM7LFv z0)n)Uj_bTej}biM0w}vE0Ahs9c{f$DMg4W4GKaHSO9u)1|H}Lm!bn~D0F2srH%6EK zi}XIxsQlD0Y9o87jh*!el{RYoF})&d!(tUdx=ocPTMw0)xI++Fimi9SS!l*`Sch6+ z*6KkF&x*{}2yJx)%iS27Dq+@qj3|D|3 zJgfXfog$coJY4O5;E*@J&`GR`TYjJ)l)FYB-TRvaOM?s`!VNupM;+DDG<}5zNK@Sl z)spqFE^jo%qg8Gp#BQp;;q?@D_=la15#kN<17?GuK>leu&t1A?r_0cX1_6LbNWg1d z^60Q*4r%`^p$7dlkL2rPu1KS4d!Ikds6Ekau@47Et$JzKnhV zC?T4KawSMQ?KmReXrpe+q~cM$+7$D}R&rKwuX9zgHR z^)`E6kLohMgl#^E31}>|k6Am_Xg81~&9yn`HvpxQIE+Ted{NA?Xf*mj>v4L5!StCR zW>*6K*_AZ>({~{`3=+gI$~RfzUIvu@O^XG3+-+Va003-UdhQK}jq}AGRZP_QQ@fLe zqQ;BdnXlujSmut?Udf?LHDPsv5Ht71Y$-2`OV;eR)~bo{XGIctR+>C(C+gemt_GMz zP5=;tON#=qy|jq@re!j;Ht3mMpT#yEkRRv=T|Jpco3qCrYx4tUrkWuMt>aSzQt-)dx#LR$LYDETw)vx|D+V(H05~E6qYGFu-(^ghq@Ow>Bd+!24 zRnP76UO_c>nBneT4E!oz^wAnU4K$G&2KEEz<+`cs7&9I81O1@Nf2C-zFv(kk0ML`p zgss*)bj|0`t3*LA_wotObmZ-r-*hOL=?I8jt`Wj{7ebDkpOmw0NEqbGlyvF6 zaduR~79h?p;mOpBTFQD|c9=qKyyRmNb4Y;8 z1fFb13Yse|(7&)r%MtcQx!rpFGn0XnvMQe}-2cDV9c*a2Tjwrwau7gVZtlf=lzZoN z;fFHoaWE1i5r9#vNBroLEVf$Fhg9hUJFMLx@VpUJc~X`Ed&u{P$PSK@1RoYH{~my4I8~+8sP`FkvnsAi+izy*kBR={xdW z1v|$=OK1TA>~~Wv(V4qSa4RN7N1L%SL1^Jxmz+)u=tJqT)@w72hl03WoQ zFlP?mvWIoB$BYpmhVJSA!@E4?E-O?k^Ng(_xHJLaekk3C&SVRVUD={L>T1nYIv~b! z2n@zpMrRqzC7wO5Go061663XP99T9FkG7qT;;<~mjxEYkc<7f++J(!`HyOyfkNaBV zOTCua!6M>19YrV8E~pScY;D@e^ZkjMuwt|fVNv76l5}B27RG4&4Y2&UDe=8krR>21 z1Yux5@WWlJ^n!#*zF#*IM z#CmB3t9;C({YUk(MUd8`<_U3z=x~|)6~1m84&0kd<-(%(>+=2Fb@knOa@nGQdt(`z z^c$V@a%}S8wt8x2lGYws{QM=7Qn1tT${NibtmFPl3=0Wo!rVwchN%Yu>GqUN?# z5a$q-B#5ZtQgm?U;w4}&*YTeChO$ z3IwmDOMLYBd0jr6p$Q~ya+Qz-o>ItDqyaa&w)Q5=)B<}XI??sO=+I(?1 zXa~edT$rCaGn5riYVR~fABaKN>i*b7628~vuug|&mOe|Us6yOZ!(&TxGtRPI0ZoHg z=YD-KDtp=_Er#hJ0TAW4%5|KG!p+Pp2Gt4b9K=W)^@@6i(mG$=^p?(QCieqGR~BM- zS>>a1nRRE4IGtrYr3+O3aiUY5U{rj6+Ekku<1UCHPDcfjKV27?aQXoqhDIEK8VMCT zEI;mwZ=Uf3g2fVur5bjKQTOn9l0Sxqyg~!S9Ew29_nf4D?t3{047FN5`0gSzCyMgv z5c8Ia9$#kCo@iF62sk4k14v0CAa+UtExUOfoB#}^$P55MEUxlY`>926G|?ac@MItX z$99g@4rhub0@!i513Ugj+Y?$WlMx62_xNe~6VV5Z?mt|Zr`PbjPGb#*<$(O^u2MDa z?|U64LJ-_pg5d!T&X8Ka-o*AF64TiP=dOR>s+(JjVmuR^d&+{J(S1}+>i)z0OLZqr z%z}81xPu{1afw^^uqv2|7D{~ff76%K+Iq!{nT6WJXn@DFd zMk(F9F?(m)b9VX2V8H@^LKau0uJ70UuD{On=1?X&3jq8cw@)6EZ`3;M6I9GpzP4Xc zJ%_9sty}z`fYC2ZtJtrKEz@ZcJtLw;_9^p#-`(+R*l6DYQ|Y_osQ{$PA7~M+;Di@j zX$QE@Wh$A}qsVIA^VobflTE z%q%QP468EW+osM85>FM*G>|?`*Q(?P!I5!UagSIZ)=FyixXl^X%PXFiOMW4Dh{AB} za=oCA0~5mwVvX6y3z+6dcD^s?3a4gxE<;w^njq33s8R#6pRu01HL4`QPaJqRBT9A< zgD~CIE7d7R=*t6dWR}xV_lVyyqig61vdQ_)WEY>Bfy~rQU@sI-)m(_fQepe({Cd1H z=KoM+CTG#P%Q;{qaGoQ*>nq>rWR>yF6L!qo{5IiR2$ z-DRoWNf-x!bka`juab2Db>1Yo13M$c!?4V-MZAaqU(Ux-&?L{y!29c_FW>yB)b z_m2oMJ6-+!CAZV33vCZhJ3!1m0^}Cn2~oPE@8Vjh6T}R?90M{sV=b1JyWgB_M-%i7 zV(gV+QDV4E`Tovm?0`VwzS+bg4Rt0q>kWP&m}$_OszdZ(XO=)T2mln=Y-PhT-}Mjd z3%BxcR|JVyFIZ#;JL~}N(EpoKyM@_dMax6MGMFHUb8f|cXWE29J5TxMI#(LE1~DD4 zWa_)F<4qWvH#q)+m}@;#x@Ak`W%+*Nz1j{eqLY(3Ix;P{A;z=I-(;7TS;r~)J|*AqvD~6nWEqOb6k6tJf}YQtE&Y2j@Pqpv-KF0r zVGa_6f&IYbT1WM}#?5JpL1J)*17e6GzWqampwohw9*(28tj6x#e^=KTMtdNpAFh7B zyQ{sl4ax+G7pfuQ_3{a>7?Upj6(nvIt175esC#A_oFUJSg8Jw>*|* zW?N?DDG)=1#oK>~FF!fjdCDMg>lwIC5tbaXaEP5lR)^^ag5%rI5?)+Ok*iqUH&2OxEQ6$+|U@_Eu-rr+~a_rpW={ zo8qB05Ywl07}i+)gzZxxo+%?LT^s9(bnW5udg+)o=>x>%tncOz-RK7~Ee&^(>8v5H0=5=>E13i3X#xNZjH(%r(Zf_Prwrodke#53irwN!QQpKUcNIRNr%- zFvcvATmBdIs#po{2BUUhBx)yi<_K+FvnMPSXH-c6ssonNdM&k-pUAyFbe<|3jBHW{DgviIav-V>-T6Sa;scWC3_YOb$@k_2S9v z-qD%QL>oZ0KfMqw_0Me`qF$d)2#7X<=4hj< zvwSlxI3-%4Q*xBYBITPCdfF?4aCH#Fummta0WiG!uR0r=vVZ{CWBJNC33SBYlPYUs z&$m7hLSsDH1&(;_e~Jbpq3_%r7_0lRemA(d{6%82k^`qLa zJdw}}i1Dfha7Sm8YxS^2qAHJzdO+N4?~+7{vL`;PPBoq=co3YbgrS&x$MhJf0cH*j z*`E~FSWZL>0;t)p%qpj1sd>4K4kQmyOenn;ys9PrP-|xB8LO9!2jC9P99)#(aKBt( zy6&t=!Vrh9jAworp8xdiVkZLWqvJQ=ns4MJ#|7{%jboeE+EX#8@RYnr>oNHT@rXS~ z+$Ybr#O?`-uryXuV}ux7D(#rF%g)tWFy0RUwgA1%cw!)>l7#(!wbEmchv0R!dt zQu3)T{ys*&Sy#Ys$l$=KSM>2QGuONq1E^SoyHrWh6CG2{gn|9QPgYOSk!IF1{6Ifw zR^nv6vg~OS%0XWNxUi+ETelv2_FY^3a2K`$;uX0&ImEcHGjY0=UW~_rn0CS{3GMXP zh#$2hdc>TxVP3#V+v#h*aSmrFz!|a7MLrm-zrROOHMGKmdb~F0PYFgJn*RE|`v&U0 zGf(OiY4*QC3__%t?&1k(^^6R7o;P^AM#)DT*i&AL8pZ(sCO_^dd!&COy?|im%VDki zfn(C9YHu(@8GwI_xFDtpICdZqAADq?_IxvxO&3k3lYSDQi^#6e_SXOtTZ?7fLom{A z@NU{|_-_q#0x|12ON4rh4CW05g!-zQ1ROM4RGKvX@@lR8b8F;P>p14s(D!2C2ak!# zsZC)DgD|ik*z)at`oSYp?D&Cx(3Z{L*hkes01#rUpLoHa(&q&En?UA|=j)8sVwy2H?H1Z|)!Yw6Sfm0JtOl^0)HDsL^_kWuls` zfOz?X2~NJi36M!eL*8!)V)`C7hnX)99;j>Q3-QsY`=z#r8=?5r!N>x1b$l~j8XAYy zAc%y)fPmlcJgv(SQ-FRY)wD?E+fwujho@Jk(fcoESsWmWbaK-*chR)KA5ZC!FdAwh z1vHmtq#^g3=gCuR1k>*=iO{}61=$ZgUq6w%47r!Au{lFSAnqa&T3-@3)v7~!+PE`X zLytLE&H#k{-(KRec*6KIVN^nz+Y)INA)f!@$4;5D|Hvy36kyV23v)a8KVZusC!p7Z$?PHeqH`9DW7EdT$KZW z5KVrPiu}0SakR&)49=zk$h>p;UJU%;V(q5px4U(y~G2DAG zh_vp4*WHQJReHr}5QKsKz&abp>-1_S(S9I6sCFsp;5SC<4IW#Y=qmt-83Gocvu^h> zMrA7?e)F#f5)^=*q$44gk1gDVM}iy*t@1gK&T- zsPu3aR7UKmn8-I?TLlJajjL;K=U@;lM6_s>lKnnqI5kYvk?zO}zGC z4*;E`HFlQ8=Iti0*xI4qX{2{|Jm?H_cx~*8b-wGODSv;-Lj;Ib-LoT2du`D1Z7K!G z&(3Dw-@uvr!Uev2&G#Ig#EhdI$ejDr*At*~m_Ma$iXLr^&P%Ej1p4yE>b`Zo| z20A~vp!=L`!9G*$Ar9K;lhq@}fgV2j)$zMmY+`8Rzv4y{c+IU}*KaJWuZ?3$3IhDZ zp~r5P$9jioaf>?-(XOkvPLCPJ$5%v%scRU9fKgkAXvZ?55CBm$_YQG6f*qYFGm-A9 zveDD+m+OtxsnM9dvE)N;GCcH7n?$C;b6bAV5oAOGF(YWpPqp0waa-)O;l!91LGA;e z)=K0Q=lhPwZLPqX;LOOuxg0LP)qOf=IA?C|VBF&7PPrE+1&Qa23@QlR)z(lC+#$}* zY=!3?ST1xwHO)>DkQv0(2Hpe6a(QoS>kO<>9f&DLfeMS<<-*t3w$qi1M@;{~!Ave^ z+@4i97&YL`+O))jyWAz&8R=UFWnLiKU=@ki*0PFxzwDZzQJ$7r;Tqx2AQ*bKsWavJ zV%*a@f0&h45QDJd@kWW&PM>qu%LDg`LTw)^gJ}26(Y92ubG7BzEj#yVtA*~thS z%d3srVzYQUmQxgtj*-GPHTKzzA%%ct zNKM=jaxWH$$vJAk@2<=_OC1mT1&A@JhMutvH||J%r#P+CsD?JRNxdMxRNS>*O%iwC zaYW}kkC>^q)VlZF75Hs+L#BS<%=nY^EZ;8z5##VXK)THSXpww#?+r zeRa$lxUc^7cWZ-UoR@TqF$QAbm3xEk|J*Uk%Axx;XES*LF$n8CS-3g~F-^_g$J#M4 z25Bkb6sF??9rFi8XeGo%8}3!2S_jy6S3Oyqi^|Ft8su<(aJZ zk}VYD2l_!*H$4%2O8vU@m19w>%ue0mwRWdUj3IqFr56*9<`)H;^exM(8ynYd#*i5;lL4H6& z1?%|@lPCxPG2ZA%BgZuS*v=}j6^Q>9N~F%F@(*l*#c1)LpVJ05g}(;*0oTem(S0xv zv;u%Z@E`fCk+A6~-v;RI+#D`GF1U#A2l_#ksukBy!Fn2FYkokTPCJ4HDq8{Zj6b)! zm*rKSwAv0z_}4Wl^v=jHOe)&f*4}(f*A=EfT`1)Ob}+yl>+#&R*p_tH_H1Mz5R>zV zh2L~e;Ngz-rw+}rjVEcqA%+pr*<yvrkAYD{@o(gQt=!~?peRkvT~I) z!{|gk$4c>9i^;+K{E=8VOpHK&hB|Xd*y3maYa~pummcoqlxcSwnrG+bB&B`-H9%}( z&C2tRi{lx@S@rVi8Juwk5Q961WqpKi(W(K#s*wN~>`2}TjyqsjexgM#yS{_`i^OUW z<&nrzj@J821-EN=FyTo6xQ}g}D>4b5SoPhiC2iSZSr9{ZtSYg?7#|tabCz0Vg-P55 zVQ{*pfLgRqZ`{y>lQ}0xAVe$B?**shaJ~{3LasOkF(*7i?=BTwdpV6AG~hNcau`;8 z&UsRw*483bXk{H_F)7mz1TzhqHR!fZH^$-`~H zD&*kEheB0B2tka4BNK{_b?W-Eg=T2Zrd$Uxk7(fyGd!Zzpmb*KbEX0UF=UgU>JYXf=)F?9X4e861~_!B0V*RgA4 zCIG~hiofk7tAZs`;yS!uSexD>=J17WZw_BoOP|%2G`a?7Xaiz_yZj_kBO_bn)T^-` zcd8E^C2_HiR?aaiE8q^Ur?$*b$e$7uzT$?af0U<-VDg>vhY=&CCau`)$<=y;(1<|* zh{x9d(p@F&mFuQ0Gpq<=5SCbSJ0U~YL?=hC&SpJtY@%jBRx1eHR2_Iv1-MQX6N2l} z8KSBsdOuI zMRPXR12HCcjKc~O&$;VjYyRjEbR+`6J?7g2&XxqYXTI6lc2hB26o{Fb@FEu;DF|KJ zTpLk`sQzjJWdY)++~dz?S1)<^uc}STC<+>bR3(rl@ee8+u}m2)jGh; zf!HuGeTqihJaVm05N3u5Aaj*8?9P2YDAz};)}$X0qbOpZaD1J8ioU)?kG-Dp;3DkD z?w_kgjuj_YU9$H5VCrl9=?-*r;ZTW`0jHgtTdZ4aS~0x>$7E>qWP<3HN#oNAg_ z<|myb%(0X;l71lb1v#)}zr)3=Zr4;fsTZEiBTNLg7BE^uHfM*&wzaMkHyR>n`l+tyq*s3-XgRHgk68!n9Lg4cES7wnsDw08DlWnA3Zs?yMOY2>>xfB5}G( zS+uix#CVe)h_UfW;!YjYY56^3I@!5TYs8ay;Ku7VXZQ`o0N2#EJFA1RT*;B~Zxy|z z-&t+AE|(04;TFW}e_ZXnkpwCXef>}-;mW|!55?Aq@*T(%x+oA+-oDpY#P7TRhI8_* z*Xf*|7rYHQP zm8?!;0V7r(i($IJG>^6BcZ(P6@yg6?0irl>yj0d*)O%=74K2GFt3XU$cmAfkQ`SJ& z%_{nCV1+nsgm{P4ZhTT7+R-`ktu|Hk`ly+oFBDx$l@Qfa{zF3n#DLBeThaz03j>5c z;JpoK1qZvRslRfs)InkTK>&!~K0emzG|r-InO-c|X%MTS(|sZO)x$S}0S#hmsPu2U z9B)Kf`O!h&NdTd9l_x}%Gv)iiT;3gRuq2wmt3Y2K@%8w)w!FM1ICSY9rnmRk=GysUX&nfio^TSz_m+IlgEIxcJ z#RSB7Q$BSf2GVY@XhJ$|QIn!I2qI~~vCphq;EY8H0I|N?Z{_9|I#x|Nxn4wq-_XHo z$?w#ZZfW+mmvq3G6?}j_VsGRKl*usMGLh#-WG|GdM6bN8`LwTIt}z3$2BAM1@K3e@ z!SV}$cZ6_|xCsF0LyyEc&Y-ZM<%5OYmDio`ba;KX?J@|}#ljt`y_mE=;r(mfok??GUI|f> zWpM(&rJurvLo$JNYO+*!-aNPf5VBsfd`?O;qeN};97fci@{cs=^j*UogKpfkNxyEy zTx@bL27d6qe^2P0Ra2LSf&IX=*FVwE?U=e0K&o4w=x~$9%;yqq4I;yUnBK4`YfpE^ zSmx0Of;kt&%(=KakJtX)N&d#pxsVgY&EywoY;YE@740^S7B|ybrgAjqr8~v4uvJO< z;5K!LhbY}7|40RJ9Qo<*I9ma5+IunZgZJNlO9!D*dl=Xc%=_vD9gL>n1+cd?Pi^Xc z-uKd0I~bvQ07#4jlIRmgf@)cp>MG4-QV_FxDAPW>yM(xY=|J14&>V=N`rT55L3S)s z4&PPLS#y$e#ba|mv<(aH|KD8|iIei#+=X#er{YG8#Om7; zYWF*H@5_}}iLlg&_0EipHSA78eXV0WVm%cOy`^nKthZ;2TAQ0dd3Hw!>yR?C5JE9< zx`@t}IXdJP;I(S5fV~0|cdDJ06$6!#kK{b4hfr4 zS7*XO?Y_p6o1_JD*Eccux!gfdDvVS0kBouv5j_+H22JSuW7W~psY$N823Ffh>>YUW zE^;Y4vRY7#kCfT@QU(-Vhl|$=1_Frbs&Owgaa*nPo48{k-}Oxh1Q3HTUB{jYnOcu? zhO1#~N9azP+0#0qq6Z?;(y2mcBOs2cJY zo!A)Z{=KXBIEzg(2V))p!d5SNkf@8rDlHW|_ZL?I~Jb``*rOMldU z&VEP;70A69uwMk{Y1%BfG9Cu@126vihCY8_)b0oRK~I#=pwAu{wQGT&8-bW(SGiRmI29v;E6>|M+r;1oV#N5n5@CpU?--FcpL?nQ z{rU`^S)T9%O+P$P&jH>5RfHvKC>1}p1U~drsQ@vhGdNQo$(Ras)C^dL6VSm#VwmPAE z5R)?uW$Mf1s*Acc)15R{1u@f(9BOli)y01`v=cHpCrO|{eYi-uP^?@QC4 zG_qAXcwLF2(`CV=jdr;R?h_+97To10sr<#XPRaOs_X&0qKq3Y)>YYkrqyf^L0eRQ< zU+lZw&QB0YgZzLFovqtYjdlnCF{V_k*_IDawe=2>8c5cFNd4r~Q#urB!7cQjo7XRx z{WQoA7+7tuo}3zy2mtZ-lMA{}czxaY4O=ASqb*WKLLA&0_y3jeOHaL)KQN6ip4IfH zx=iQ_M63=YQVE~`c2SQVCaq|YzduE4eW=6H^oIZtZ)>p2nc!eJ+q?FpJq*J|KzvBP zL5#=6xU)XK)igb#nzRVw+Cn&5o;c6_Ar}mBPAE%(gFfd9<#%_c3PFA zSy}-A#JIK%Vrf8yPi6)?OaO=<&GDA|zU#ERuh<4ehv&=DxxVrZ;!dj`aBpeYvB39C z00=-_UcQk_|C0|_J|PlU5Yw$4pd-&{$`1rHWITellM`j(=$6+IuhL?~oyCvk)H?Vp>%XQ}tTb)OC=l>a&SF zB-YOW{?Ph0+p3To#B>3yKQNU%kQDOZG>Ctb4$%CF+jG;*!(mNR-n0inat8pN)x-@x zm}&buiK#+74#np!`_9{G$11G(j`R>K%&3OJU4Gn~$_5QtYlk1W13+T^`k(u^S#M)8 zg9M0+il0-BdKo8XdmWoQ3UdHJj8xcBnuE`yO6)4%M!b}yx9b&iyz}m(3v_K=H5y|x z86Z3Sr!>Z3KUX)0offGCv#P{wj$iG$M79uSc*&z};O>tgHZKK`8cRmzQ6d&UGr;kn*q|^vo!^NeU6(s_U1%+~0$3i$k2s(OyUO24Y~9 zPZSc>JW`#kIXEKWr}8_UTbKif*C2OWsnA7qSB2W~K7Y8fPErxMMcD7HjO@Lgw0%D7 z8axlsP_>}b$(DH)gDp%KH_oV9fbRL=QCzKxwki<|03bsQl+Wu@1virKWchp=$$Ds! zJCR*q-lNaDo85_fF`!)tZaw7-J=ZkLk_|{)O{`DtWm%BX<_r%gCTqO7BP+WUg_N6Dn8!^{YbODS zLI8+yRFuSrbI#VrG>6;9N)zC|T|U*adVYrF%ut=5FJpVYv{AqYcXdc0EzB{Cgim>U;Nfq2-X-)a%edMSv>m4t!) z%e2C6k_0%u;Z)QyJ#gH>dYZG*F#rsP9VZVvVTK~R?CaLyA~Ozy81-8Fh@O!SyOwI= z==tx-*|eTbkqy8B0VK;uRPKm`BAd5Rb$NfXE|^S8)F7u1*WRg4z`n~{>{c*q-6MWd zM;xoTOs(~KoJlju1W4) z*R|7QvPaxTCZp^$iN`;&S(gSLF*_?GPGpVfT$Kj~`rdYk;T2+lYvSJ0iQtMk%!tG? z!PWg;vF6?q5W|;B<^0-N@V;GVye%)df*6Fa&R&!VLS(Rtor~!VW@PQw0v`BfmIt$LpqK4O>4pg3<2QYJ#VGz-HxYqWWJfYTSu3f zq#YIg4iQ4sp}2(~APm^tR=obgD|#AbqD+GT=-uTT_kpdBT`z0Rm~2J>h(BsP$00@x zU&{G#a4-NdXBgtP?qbE~`S;l~BT-Bgh`nPeQSPynf;FGFRf(qeNnPL?ndSw0#_qiS!c_VT0Rcj7%GNd~=hKh=ZKS)UzG4O-4H8^K4 zse>S_bw99UXWxs$;Te9QA2e_6aGl_c(E%ziU=a7qnbtkBa&p{Qod--Dff#$@^b!Of zi>f+nGw9Ip42@|03SJ_WKRkwFF=DICoTQK7m@r368t4bL9F!g2cJVLa9C=L=dA7? z7^~+JW}gu)`N4kRFHOely(^Po{6IfwN!wla0W&%%$|#8UTSUao-Tvp4+9=eD-x;K% z*E1?XXhnR^ec$%o)O~i+bP}cXiN)HB^>e$#32hGA+JiHqA28wv5plF3%f|WcpVEMQ zB1@#x?t0}LB|=6AwgBQ+ZdG!K@jAD$Lm$_}x95;mio2X^(oL4EZly!l6f@uqwQ}si zrBz(r>RxG*?yMPT34kb#do7M9_Z#D1(Zrq;lJn))ZpMQ%hQPghvf3*t655U$QHb@G zLg6X--X~1}JXbyuExDT(XYwcM8#W^Mq)K1H82G_y?%t=9g%?~bHfv8zc8`smZ(Q5X zVRXU~G3FFD`vQrk^HTZ#kP{uVC^vLEpEc@yQw0`yvU6FV`2mpxl_1Kz7MZA3aEnAZ`ENV_vhWSO4 zkrv!b0aqlq&@tp?7lHsl46#_fG9X#E;zcMc+rN&#l}O^~XHsoXkaX;X1-RbH+t~@W zGv6(Z+ja17?UY6{UrO9yV5Jx9yOA5c6K&Vb;0Qn&$w#@O&D+iCobY5iXNjK=+Hd@W za{|awYkkJTks>d->bWlcv{nJ0?nmdgi6Rj&w_XR?Je*i&?;-X1mYUIv5Tb9rMWW~Lk~UoCsy-tmXlaC{j3 z87Lp9y0jPx|E}YISL409o;Kx(ALs|wO@2i8&-j)G0RZusWxieghpsz~x(NU=E>%zK0sP2p;$18z@4HjnmpMV6EU_N9`$L^2|-LJ+>l|s`&53W*Wc1|8=e0x z@?i2wfVS+f+2?7^n2s)yN{*sbUTL0u!92J}@E!?j4pvIKw_+e9S(Wr1&70`dI2d?-Jy3i)FiRtc(di?Af|*wj=sgez*q)k06aqk8yxoy_68}`?_n-@WE!l#cORdXSeai1` zoayYky4J3a83#bjNy@Ic;_f8nnKwf=DnUFXBJrzl7lRsU|GT-R3=cm2 zx^;}L5p)oo=~z_<^l{^J#g=-uuORn>7@D}1bSj>m3oKj0sqU9)_eS~NBp-GXPQ{Jk zr>gxCEJy%?7ovqeT{0%VG`O0x>a}I>OIj4O)(K(|?*99LLx_tzVr#sj%Q!O(y(aSL zG@;jKPZY|iIh*JKfa=rdwSQSZ$yOhl2Qg&cAf*mKlpmetK(YD0=6dyq zy)E@px0%?sE9Qx&Pay=>m|@v5(H^np9C}w+1{wchD7vrw>Kd!WH0y=mCZGv0a(l#| zjJ^_#qIQuPNu-nRD$J*SpVay{oNvm2#x%X>&~ph))BVo&w$n5^31S)x=a!&zM1Q}D z)?1y;hzH`i0*aLS3Y0)iVy+kJt*`BQei>TmP^uh`Ec_Dcf52 z!kBzT3Wjs0W%Z*sOXvC4@yNMRL?bW~r%PuhzNv%UXk@ks3^krqGX<(J&%!K0jSv8h zJh5b_tC4m2^9JPxF*Sl)=a`X;*0t_+HrMci7-yTCNhdG^MP}<*+?zAPx;*b(dFu0e zvTvU9y%z&on&A6}#^?o1v#%Zo_5;8BH*;|6TO*N~|bi0NBfXKi$kD|G(l(Qq5lxBe|(%02B{ukYw!)NPaYE6X8daIYq# z31w#~{Nd@9S*@KX!l&`V zl*2vb8;?(kksXmR;uIS+%9(e))bM`2-DYa&b8==3YDEhm=An+09jEI7&}4{HLVQXH z;cU4D6xQ+DKiAh8!ffjKf&Ts+@B59`mNB3P`2l~PJ*&kt20W(9P0XsP+T>QB+YSi1 zpOHZv-+b2^w$k4_+tHa~{dW2(U9}r=0QfP|dA~R{CRwk(HR1rkVo-`Gw;0?uH)O~H zF=M#f>{4zF|Jm4EK2ZEXWxS(JAEDx?GX%GNmDo81lBQxFG?An0N+WYXYA^ zv8vBK!II75&#@5_RhcPPJYVA{4eMRAf{z=uKK{SEN-q{x+0SuNm!tc z6DvWaWclEs{#=o)Ms@0OAT@WC9%ZUJ_bHG8I*#NUD-6!acWL?H-*h~DGB>B*W-;4h z_hR4&S2_}Nl-;kBJoCS>DdvLLUJ7L0LL>vW*NA=+^vzEkiATGYJ_0h=!;HAk(+8ZpwdU zN64jm1b}$=oHra|bbkDh=D~eh5VKB#5m_fySQc$32m}>~nH2JWl;mE>Rr&g7wpvNd zWqokwvi|j@A@5fKXLj(F%LUylW&drt&~|;Q5V1|bt252T&4};D$xqk-io#@&rr>G! z>GqLn8rz*Dcc_lR1=%^ouB@0}chrO}WN#z@fKXd-8kX^>Z*K{rd=aZTdkz*@%!4RD zNg<+N?kfM3bZXZl&fuN*)zt8{B7i76UYrHlkr>8(Q^W2o!~ro!9;_{L~w`tq}vn+_x8@-3Q~2-FnA%2Mqi>rDsAP zl|gnYFxXd<&nxn8bUuVECxE-+{?WVa=8Z@9Vi3`o3qIX-jXoV|4rPUb{lGD0Q}yzl z*(dP>{h*uaj_Z&$b3A~!$cgtMbCL6W@65LKshBdNjP+8dLqT`syOMl|RYZT5e@~xQ zsTvJmLu+6F(VqNnf>UC^ldrV@$PQr%M28sOpsy^EKixfu=ZDU*y&3M076?KsVk;LA zdfPMsAm04xr;g8I4fFGL9qr(v{PejJ)t9(q`M+Hc+wzl`K8I&Rc~<1`7T+V2ko$%V z3DC?B;$#uI-L=;x8>8&G5^O=hWoZfwlI4?8m{gH(KZDVYx7$m4Vz+xT@PlJx=jcT% zGusbq-4A^FvloIH(+~86_Kiqy_f;zgef0xgzBbODCV_yhWRHo88YzD>sp!F0DsH{x zVcxw!-~k)tx=@+{4Ykji7$OKQ&-mf89>ib9dSb|* z?wA-V^H&zJR|W>wrNH@Xo7mNJ=!@|{%z(ngmjN}Y%J|?|vQLPqjr6~kb%%$*i)|ss z_iA-W{&d8EHdZ`ve{kRdF;$23!l5ATu}_2M1~JDCm>XL>7}8!J$c4?|L4e|pz9~x~>-JqpiLN!FbL5x$( z+#mg^MRt1-B{5xhX8FzT@^FWP)_cp%@C?rEEG|RjMp&u7mxG-5E1$szBe0QOJ_*tYR#aPf@*5Mw=`#2uEe)*>0}f|#}V_casUTKw-9tQS#uqM)-p zUQzG4m)r%=E4h=a^P3%`4|qn#OG2Z#f}yHdiuDI5U86qKOKL#x^2 zmTmAA&JW}@1Yej>^Q^cZ-u36I_bJPeil3P6<)Olf1A6@x@%IO_f zM!*Li6Nb(~49;``?PRZR*%j0X0gxL{UBe@>3K9BT@ibvgQQ94O!F^)+XpuR#ai9?p z^Tk?Ncu?4q6pl%R0mh!Qr&&G&)cpb?h&yGxTE!X5JPC_5-tR`&%#6nt7Wa=m&NCyrLe9P0jgDtmm~Np<9xL zR$1Mob9|x*M&v2!qeE-isa;||3d9hh$l3}CCt_lqsr|eQ)*YYbSY|dAIC7xL8CEfw zTfXq^UD^y(CM1Ni>cO>CpV9Y9QX zn3DC9>pLm`Mg`pg#LPKIGu(AE+RCp7gmdOVjmxeuP@@zm_}(VFgP4zjGjip4@o9)N zSw39%^INo2`a0Tw%yD)wI4dC5K^Rt92Mrs$T(2XUB~$=NysBJ2r)YxyKd*f!*q0%q zDr)KCl`9crovX4T_kO!CP$`Jnaq$euop8<+Bh&r{ZtYfn-CjGjAlMIz8=!=r zB_C>qWqe|*GWOIDq7VRL451{>(eh+4e-13}b&|`8&`7rE)4@)@q=@weCxP<|s2M(! z_K_LBmkdEQ%Aao7Z9QK!7^48u*-DH*=&lyL*fCR3jUeXa28+tT?A+8;DNPGqIZtnI&bsSemhC1xC6i- z05R@99&%uf&7H(45n}8fCKT!8cwm}6akd(f{J~k`z}ly@cSXH*kY_V&(of==D}nCC zfX+uxEk5_My=Vo3Ft8u^cipafoHcg|0f@z4yqrPXNm#m>ZFByn+Q&R`xoV7SNHVHY zK!e|SG`p^M%*HfY#SE2pdopHIBIl1kO%5se2tc2!}GcB!WrC=6dG^8=$vEdU(vck(L5pnQS!@<9z9xj_COx%HRNVG4nQ?| z0nsh{Aib;J&-y-~gUsB42~aKR3=;)j&BR2JyIVWE59x#$fSyvNLjm_ioED<(I5F69 z+ESwiYU`U_3V`ZJuhEy1@dLb$;6nkZ1t_Kk>HOBkeJd z+%ff{2N!=~pF0zLW@n6@ADB!yS1Vk3lrvYu#O}KlC2a0ACgy5by$SQPUSkXE0p4>N zfRKgI2h24&$y-+TfYy-LVa^EGXPoW4Y8iR?w_|B+k=WrJ!u`1XLH#pM(*1Q+yN8(@ zq=*Or7~-fT5)XOPdhLT3ROsjdp*FIAok&2MqX|0w*Z?jFa9lx!Fd*MzTYl=Fs@!`w zzf=BPe}8t|3&m##mr5Wzri`>MG6<)Qwd?l^A1XM{OBpq$>75~;9Hd91^{*w>VW=Z)#OY-9`>b+X9X?V~Oh|dUjaE9!!m0jy> zENtIa*-@ozAK-DQit;gAb}8}?Nb$pDBubQD!c>~!v0Zvq$Lxs_h+PQ}M5wsnX?d+Z##LOY&kk0&FX#aU{O>+q^m zy6zlUR>y%S_dy}1X7rl%f#zd0!1E;lC_7XM&A?mB>>8=X@c?iMfibh>2Ln$5H3wPQ0>~9M4d}bhIms_G=hh6Ym1iaT2pg2 z83F)?BxL61$iW^{?X-?u3gTgsNO1)(Qe&i}Zd%;e{*XS|WIPj>)k7rId|~=;_VsKX znr3(f=w7Qi&()n4><0i83D5Shz@6XFx1$JAKnzg|WcB*MihtID7TQ=QmI*+%s3(!m z3Akv?tt_veur7%*E3|$fHOAH^7k?)hWf}xP@`(#h93!tzXuHj}3j&7#5dYPAgGbyh>tPe08>0-N&kb>^d$OlHg2VdbrW&?isKno3@0D(MUvq7&te@Glred z`7TnT7(CR6e9A+8E6?P%Im2MjNDl2PD9R1J(^E@+Q(G@`8@C34&Zh6I4!o=iqI?@0 zzFd3lU?uIDCY2nM**i3X?2L|L3d5ZF_4YD4$(q8C01y{?a*9KYH1gAhyxNToaoZSA zZiFNJ1jM2H^DoMZ2{i&SsF9ynzN{0Jk$aD{-$LTHN$t zAU9M<;(cHA32FtzLxj*>Oc3r|Oel9Ijn;}W5CE*u3)URsJfw<_zS1z{HN_yNH6I@iiY>kjJt%_%I=<5?_cMe*$kg$aMz`1994_9^DQvMFA?q?aN$XV|L zherQiVM$_mBE<;3!yLpjq{M<4@RM4-RyuRstdo7WU0{_8#A9T42i*J0=bZe$SOT27 z*N*n$l&1RPYI79%UJTeeN0FPAM(O8I&5A)7*biJ=B8y%xGAjmtpdU0Mixm^5{?Q-< zFsFLpSDp8y>LIm~^Hw4NK$wsEVTtW#k*tmR+1p57>MKgc3J`U4Sv z$kWWJMF&*bt&ahj8Pf>?g=OucE3yW&Hg-l!30I1wU8chGfc7K11?E*83u0WXEqB;%0cnRVK%Do-B{=cEt@O*)THHORozLTr&NKD= z6+O~j89aTrxlTQv{%KuI&pE{%vDkW9oyT2LRj75_47{LiU_ukJLzESw9lAuO{d?RF zw|XN++rT&+LFjO?=+aK=#85l7(?MH1v@*8ER!OPAP9ueKY@2cCvR-5KTHs#V{;@^e zy|iW@m9txb{@+)3j>(+f(LdZFuqOp~Xe~0JqqMH}{}T_a()u@53jye?CSFnTBU==3 z|5B(hm!T>(;MUUn^k8VL`>3q>l2{Kc9S-_lP776n74wCLvpcJ3J3mB?x5bRq%xm>?yA?~|6?Skg5aY#K z1n3RWVi|tWacVmGm8gQm#WrSh3z5*>bP#(5UyA#z_{Y7<1TFeqtj8JZV~G=(RY)vE zffz<9pYKRw&6WF{R}>Xq*g)q-GcXsElhsfmh_TLaAf=VFk#qNf4})`B43Fp>uG0WO zujcL8+SbnN;7S09<;UGSes=3)w#lJu5T6%HW-RGs5(nYgk2KN_Wn?G7aQBF3{G3&b zVpd;348m7uPOT2E*h$FUr>zbK!&UF>w(0Uzbxu9@938B4iHXTolEb~}Qc6uumwIIC z9kd{b=^GfSIl_frCIw<>qOW|GNg)K;QI;?!i*+5PbGR9cG$^7K7jQW)V_z48lrHeoB1$cK7PTGQSvC|BF9u6~dBPWyKfYe+w!iM$-A$TR27bvFELo zA`>+LP%{iMjBa_#H`m;a&c7GmCb2Z)I#uWkf-8?wOZBpl2zA0J#qN4x3ZQ?l+cL_iSZ_)~e^!|21$p0dkUa0W3s%b#uv z?wE0_Ee3`V5MvbHAs@B?ee<|`$r?}UNs1{saOE-27GT2&XA3Y$WqH_li!{UmF~zCh zVuw>MK`WQCbqaPA#GEd~Jy_R0U=y>-w^fe$28dzBx$@~Cohc+^4=k(ah#ahX*E_4{ z8|Idvdod8c^5d;?eOxJno=TWy$uO`V_{PqOy2>!i9)6%7R4)C#V202j1Mm*J^nR>& zFvAf5;)=%`MNaD{SM78mCK#F^R_pmmT+g33?UwCd;09uR|06c2CHkhzLt~ur^jJ;}}gn%b=(+W`npog21I zINCnHv&Oc5zO^A{MwU~NxXzzpc=hYUYdVC1BUi#K>bV#*SY(h+v@I$Z^ocy}r3qC6 zxNAN`p2(R)z1!5xYr!Ba-5f7hFPNX+l+xvOX(cQP=lvsIpS&|k7y#M;p-UT_7&p<5 zch~^Lw87xUv)sEu&W(IASh<3jp&K<~TcjvTt~zZ^lVIqAm>a|8T0ZQ)gn9I5MZ(3P zMi!)|MrLZsRbRhl8OmfoaLzBX!>SKd9_8L`_-L#7w))t?GZA7uKZ1b+=_YxI?;WP_ z6>tXEs-M4+kTZRc1P}(^j0CQgg^)V_qQ(SA#~^;|aAUi3a8(dLB`7Yj>KA#9$orKp zh>QgZfGD_HwDFC!&fH_=zR^0c%{}HIhEe*;rput{J7g8NBexE&)k~4;|Kad ze;%u#oy$}v8U%n|1iEjI?=1t=6n&=Sk@C(ckLBVbdvgVS2Hfce=s2_W`8h|z)e1K# zFR7lgFS|C~S>s%jDYu<7DGL2&^vqn<8 znNax2k(BjLGf+^fW2WGuFdZCT`Jba@T<|qCwXLH3*nU0`W8%PV_X1lY*xojn^|D zPn;wPZnmI1yfN3~wo2jeXkk<&I3P~`4`fBvoY&H=Oh1@3o6 zop6sZ(6kjlYPT?3$pAGJk-AGuG}_qA*_~=}&Y~K6s_Ln9NOnVvd2NIA9US8LvqSCi zNtikv?jss1Bfm4yp(Wn@v;9(TJK55;38F{@oS&I5+ztg~-#M()Z%insJM9^+hp;9< z`_Y2$J`M-qt$3__abqqQ$}3&j84kdkY1zW!KHodRgLV9xO=f9po6QW^A+LzEK|s*d zS^2%O1d~xfR8sznA3Lrx=)J1?h6l5m5eD`HZ_Mc#d{WmB^n*^%zNNFar#*@a0K98j(_x_yXFlGd6~|ptt$O$J|^MxAh(^=%sFK zJ#*cs`SZS&Ylr|%r4@VNRXY%ogQEQEu8JL;_m*DGs~pX~oR0Mt7`6Ksc&BZ6U-~H5 z(OKorw6)>BhLfdKFX#D~@cle#hmK0mfH+)3fNtT^L;u~e3|x36|O!~Lvu5(eYZ1x$eWnEUK1bL?dYBsT)^Y$u+i zHrh!^djGXdPRaAx{b_W$W{x0fPy|qufE~-n>pqwQg#ZvIHs6py;+6H*YIT|!6Nnwc zd@WtVz>En5L!|?#HGYy0zGWWg%FnuE_Ke^32qRSvZub^8#N#COyG{?-s}12cqyJAEI|1+xqaymN^mGG)I)}ziIZ<)x#>G#?GNr&X&+5DUJ7dmy-hv~Bdqdh9a3f))q@05{clr8m##t#6j2ZZ8>gs; zFuiTNcaA*|qh??vcp`5*Ma4otKQX1K&Ssuw2tq4(#T5bNQtO7xPgmHs^;d`c@Robx z;vR0GPhNVRrK8nrT;467@>cepl%u0ze8mJBqF|?<6VEJhU)ioey>mc*u=Q-`&>pT! zTv9J&<^)w9ln)K1$Ec5cL0!M zzLh}d@FRb^FDfqc${XRXOc1oB0UO37Yq2~VFq2K{mEOr@(9-HZeQ&0t4cf$b!LDnB zUeEohxtkgkeLzuxr=8#yGjg~iid%}k@NOl0t(xAdf#{1a$RA05Plu&>ydA9_5JE6O zp9Y8<7$u}6#SDDT$r{b&J31$MS_1&YcQu5sh!%5I-p=R%ak-HUHRZhOVy6*aZNI`HCeJdV%X^ z5EpwyCPrP!LQ~zv`uV#y*g*s}o)g(07Zf%d2!c4A=QKK$TR&N2)+|nE_r&2lN8sk^ ztMAfoZd5tCkVlMz5KJ$fYL5yM|0Lp2jW80_h>SP$qdxYaC*nqd7zWyu=0swJi>I88 z*3i1Ax^(b_AfQ5|N5MHjeO%$w-?Qlw#)POJh}PI)XZycn+F<6;AOKLXvePeZORxK3 z+yQ_VG5|761>sp#_dS*O!cRZ$J3@=|c9HAc5tGb3w!b0O~y;?g3v~DCHSigFmsgs!?0*nXHWC z_hjG)FZ*|&-taLg2%`F1_XEE=WEHiZaWxPiloAwmXQ35ZF`lgm0${|RBd&6ONL+2( z%Hb&D!SAZb2Zups$p`m*$ z059f+2oo>+&eua`h%;HTIw}T)0r~(Cr^0IrdjGz089-2J`@R8babCy>dIIEH4Pk)WM zt%<#Oz?)dz&Z`3s8LO<*KIJ6^)FoPDI#e^oTE{*-jRBNdI`8FVZ=*V2)GeJDY!F04 za)7pQI}pP)U)JHa_36cEiT#lcQrDQ-(zns^?fDk~VY9K0!+m#diJ}}Y=D9^olj-uA zx)lje1~eS1H$Je^dqtig@%dO!ZoOI+IJ68g{*sF4`G{7E=h&V&Xhjj{vB>&cztA3Q zvIdAbTK$vuUpFBikA6a1*dwO;@)k1}TwyFvo9<39fWR5rfLr5zP;_Z(<-2Yf?aU1$ zX^;U#xtU{Ge5h1tq<>gUHNlGqw56ATm(u@meC2oG*2K z204jNcBI5qEx#%60HTH<4v0~NV)(~Vbqv}|F3M=$*IEY1jM~z+!o;Z8rC)0@l5cy_K#d&F-QTXA1`*n~Q3ljj{;26!a90!YdSsnnanmoawbI)Be}ERQ;pLEMd=`g6FKA6 z7c^4KSt&syf!JSG!{>7}tRHl+0wObaB(dtiWw^h)ygKcLj{_q9rmD-ZzUXCHjW$(7g@e&K^}>;wga zffy5Us#Pbcn5V2Okj(ZC0PxD`@)HPkkhj3#JxhQ0 ztwP$LDn+Br1^{C6#R47WA8Qx!mciuzN-7xF-&vzi`eLxYZP|!>F9uMK2CqArM%&Aj z*5H`b>2KfP}M?Iy(*alFWupJAp?*Cd3RoDRDNe6rJ zPP$Q-SL?8_)jwWT1v4Oz;hP4RU){7?xYHm#>o=FHu}=j2JTJ53kC-`M+5N2E?YBkb zyd2Y2&dd9y9?-#P1DHgXjveSe%6j5JQSI@bQA>&7h+Kp`F5xliPDx_eKRo6)ZB$dd zpf4Ke2Tf|!(N5&3Mgi(8-_2zpmB@*-6qUq7($x;kvDX^Fm7q8QzaSpZzV+GD((T){ ztA*_?INjQ-(i&B+gYx>x4BGF^(1+H9-VyD-vK13~0Qu}O>kZ{58-ci_G(`Ze$RQw4 zqu=aepCZ9Q=L?V`>Ct##9qS4WPb7Nv!ddm4*8hvvF5`)`URns_zJIXq9ViqD zk2}GelOr9+>cE9(&pTCh-#o8sPxkzbAlL|39un|#mCRbLUJl43Ccj@kYz4J$kso(E zt2P5m_p*IV4DDDR{XmAjEguFQ>j15}E}ehT49q!F*e8quos~sUg?E0_eKhAt!@z#v z)$QMFFE<05ALs{lXx&xkcF%4U6#&_Ea7XlpP0s1awOhe*D6Vqxw=${3LhXNcD*yqY zryIFzJfstf89vz;5EmXc*hyFScgk9AWw#6VWFO%SVipsz@n#ks(w_VT`2h#UJ#TlIA^`y6b`9Gml6&mW740Gkz6JU5a0)XFk_D^5 zVGHWmBLV^X>KWnTjsQ)wS{sF4x_wk+;Wb%alzPD4`%<+ho9j;?8pML@_mmI%!zbxb z$IaMXSqGh`ErI~RJMP(^8zbi13ZS;w`OanYJM|}CW&F@Z)700JuDgo0fP0p#G58buf8q&LFM4AmU+K$b^BK zfQx%~4!xoM%Nx}+5dA`H1RZ{4WN_sJ{XzD`_?b>xWa*3(_#8uf?6LO8Jw*V>v6oF~i_2H~I|qi5Aim#zkHK}I>MU2$0oc(wDZH})Pjz5J428d*OgI>((B%H=Qo4DUS@|ZID;4?FgQczud14r zvqKN}4`vS#YgZ72yT|ZsmQl8LP)Ps)>o$@WD3aDp=j9dkU}+8_0;Fw#oJ$)dcgkdY zDEe?$#tQ}vxHDiTzaFn$!Z;j=Dax#u$~xM?rD(Co(g(EzV){hNSu9-dq|;6be!lZe6jigc89B6g5iC#KDMRr`y1vm4wa;TF|(Z-p*{epk-wtTMV5AwtKRACt1-Y8#CPQM z6#>HCU2W>tzPz@ki6{UtS%F0%PF4|x6P64c*Vs-*aX7n4+}_tY;{u&`IUDjiHE^ea zuq4ai?m5*rmO=JcikrI>^Jg`ppr+;Ji}Ow|)VbgI3IUK?6OXQyR(qi#z7VTR9dEby z$-<+w&JFP|LQEB6P+-})y}fnGmLVP_ax+zkB<^8=We@ML#Xu)PJV?1M%ulWSJ7uQr zSkQNUu_jfBPLeoqI}V83s0Y^c#%<`cw+BUUVR3osz0BHeO(#K2v(HV9c75c7_SS7& zhWJAXn=qM|4^Op24Km-Alto?3pRT(;bNN0yc|v_4hOWDdI50cZ$K+GE>y!4JfZS;u zT&M+NxNGVI{{=;vDsn4PT(keWb&M?vk|&5!J3lFMEtEx4io;_B^Wz@VD@Z1*MLly`l4paRCBAj5!Ne-)r1BX^SEQw4+K8Hv6hzLh*kx-}@Tu8nWs^1L>E? zulUvXC?2?i7+mijJCv~Y^GnXvEEz8K)5C~K$#-L-qW+Z+Im4+K@jp+^p%afOq1p>q zRH@*8;fZ&h%?k`t_y0K~XcQ2WvtDigu%PcXjBqLt;~TzCkci_3#ZSAcY4w@q27nlw zPi5R0IUJZ=_4q66!^H`U%?B=JvV9!U1I~<|+P^GzuPZv0-S?75C)5ggQ4bX|Q{~>> zKPbjsAx;tQP$7tUZ(!VsboQ77P1F+OG?H(LGS~Zfyr*Zwe!-|Gz;KUBBJqP2Ck45$ zC>YSUYyNNIYG{2M^Iwehw1QEM325TOwSz;+KcYVxN3RC{5MILWs$*EqCz>9+sSbg-qKnzodkfR13Jm7Eww~(+nO*Ch|x(- z74RTEtB5bkTQ^Tf#>@x+2Er>lN&IfX|7m@jcj5jic9(q?#}l8EhdY9oGaLWXUt4dy^mN4_8mU`bPXKM*T4PtQa zCx0xLZ+a(l&4(u%>vaS(VrY;b@XyA_f|-{95MwJ1+%e(>HcKf#eW+x&4UT58Qu)i2 zb+-Jl@=DP?cP0R$w%Id`d{*JTKce zM*k^E+?}i+GfTg$)Le3ZF9v>argn$zqZJ?s1N(u!@>nkoF?aFYh$Ns%m{a`=v>CCBit1vdi z1rWqfzj-&IW*PIwhTn2oZ!9xUR)F|n*$y?FqiT})R!{5Ze2lSBg295d@;O6+64Spp-Y8>QUELH$VV%&s)g_TNBkNYo2L37kTJ< zaqWi_-%ET^2^fN>gNyb%DIrMLiny7}-UlXY700N~Cc7!S)az5n>(YV9AU&_W9oXYivBJEJOY zEvj&At)2*Z#M}=0xM^=^vWb=I|6Q?ONo2OOz!@pLffy%N4UXe}Jn9S>)6f5)()md)qgu}v-a=x5c25OI7yvow_sm??tuSM*l@8aE7}{}( z%mW9x^PF2HR@uam9h`AE3o%MNAo-@vf5utG8<2g3leJ}R!6ht}kx#_4-wUbd5#PXALeBUu=Rb*B!>pm+Z0*D!0 z8Lv)>l-kKv4-DI*Q;tVGMsg20V_w07m%Zv0u;qo1{UIq5TaGVEc3=xI7-PNVsgm}& z3#9ad!djK+Ldh5cO+3YxPNE-?g=bhY&zqNxr|4x)tj& zcz2dpI(Sbol#9AwAFVPqM;KW6$&Ux@QND@3{l#oK`hk8>=Kns^iO-Cp0D*8xjbqh% zw5Sk|!ExcERdjYSWAu3;>L;K2**&dk%YQgHp3$p7lL|2R8=*hI>Q)po{3v-mZI5 zm!xL73m~58%sKP2^HwATe!t&*S1KZ&LCmcdJQm8WmJLmxvHgj}6k~LuM$TY~-Smmm zmg>UYpx zqI-Yo?k-tik?vU7U6wU?DM2JeLO>A#kx)`Zx=TVyDMe7aBn2q}m6k?H5l{&U0YUhm z=g#-J_ssWRet$mibr;_A%$zwjXU@!>i}N5--Ee#0URla~3+)~#W`-J^Lt?18-=(J= z5GW}r`dfhwZ~QZgq^Mj*E7Hug7{hsaC@J~XEuqe@^^OLZbCv*L3+(^*Zr#<-%IQc_ zDH0MQID;tjxcuGg)eG2PCT!Moo;f1|AbbV7AqY;!v7Ja_eeu&Xe>&Luv4h=Qr9hzt z!S2gRN9@Zz?SCh|wbU_zI=M7Uz36k*ov)wKsjKnzuhSTvFzm<>+@;$2k#}t~fz|=w zAaU%DgWT79zs)yH9mFf8>_>q1jg!0b*m)uWP#^;v01Rx^ms+>_8LO=ztrrl!xL*PQ z_e<97TdZr!9$<`eSN)2~o$T5CW{w^_cD$v-dy`_ctD0mB#273R%0=>U4%7p`IW?=D zBf>wzfiOr7+Igh7mX=YT289C#R84BL2jvj}VtvNC=V!@nmxV4sY_lfoq~blP@y z7#WBm#(7Hi@>e$<&A2|hHZl{036lDh(@V-6>)l}0?_R(bJpo|pg>L5@V%*%euR}?{ z8Ke|`C`zRNOnHXoYi09~)<6vY!Aeh2@f;bHk&?H49J#KHy`0C0IC)1c>$4%Lz}x*!0=c;Ax5Jw`9J#{#oBE>!p#zrVgqS#a@QxXJM6_U!i@zSL=Qoq-JgtFnaKi78^-{qEwjgjga7f{;Iz=+8$Z%jd zXwa-3dPX&(*B}7uO}^|N-CFn25FL7K_K?76sp@HX_R8(r*~}7%J)xJuizYhN;Ex7m ztCH~Tn_2}%g3Dz^iPlTVGf7tex+f98JK>L?-%J;LO?m+^63o3~xU)lBNE8Mq(dlz< zY6+U+D1gjP0g&_ev5lTj<5XwxmQ!?>8tME=0Eqjb)etNAd=s}`24(-tRwi2q z0Ickf{@fu(aiwLmn|64GYom3nY$Bv=Sy;rt!E%L@=AUYMf5zCC289D!)%igy&$u=L zAV%8C)*rSmWV1y6xw64$sVl7;>>O6f^uigZW*(?4oazsX1>b(zNCywIA^t7B9HBEu#m8Xj1qw$pU)?A~ir zsoI`kTjId49 zY*pA*C^R}Q5m0|-U252@u(#7?x^SEZEF_Hnv}&E3!=1YM_!7Tq7EBrAW}%3PXC;XT z&p(IiosbA8ni>Vq>zb`eu{8+2VE>MQ?r)6HGp$h)05k#p`l9db7?gBODyJo6#81T9 zC`x^Nj9E46;V~xxySD8cI{^bh z3;FCF=7Vy=j`m>y8P?Y?O3*BsnFl})THkCE_*pOzWANw^65>@3A71{-W(lUyQix&3 zAU-lGpZkJPqq+_JgZ*2{9_O&h^U~%iwKthCctVVh&LIY3tq( zY}XUXMWE#lGD7+)T4zCFR{idJkjBUWxFx)w3k?)j$!{XGD1S+Qxd zC00~+-m&u4j=@S=u__&7v?i;4Jyp+Fh7|w~36O);faEJW=zUTHs3!xpZN&@S(U~h~ zQ5pvUfURF0HOo;FR#p!`SmKY7AjY~gl}HCBfQ26GuQhAjuqOtgjUb?kjGn#dF%+M< zOV{mH{S)1b$$f6i7>Wph=>XVb z?lAk)8X90kn@+k}FCmU=3OEbb6wS&`)Cr&wZAbAKvNLdGO1B`D@4yw?O5s@`=FS>| zEDwqPF>#gcEU+UG+ux@3iU)lvK4Y5&TZfb&(x|G%Lx)`3R!;c#g1_}hsoSHMqagq! z!%d_C?dxbqHv=soA&|2Ph&h|AZ`Mhhw8?bO$wK>)h!NYMU&tqnXARI{62X*RNY;$m}=5+tNiV5iK1EBISVVwHe|!aRBI=`l8X7GN!Sm1KvTrP6kb% zz-wBReXse}r;3g91F%8a5dakFnHOL88y)~33ICYDG2rrr{&lY~d1G^LJG?+T0C2Fg z+m8rs6<(~AA+ohU5QDgzSStA!>A3t?x<1)vN4RiW2OBLK53lm_!9h>o-uy#SGHKl5 zdHUUIv2S%B=Tv>ZeltPuaG0|tAnqs4JL;D+|0FJ*`WJ0v9x+#TNC&vG`{}}2zxvVg zU@_sK=-gmOe*cMU04P2v2eyJOw5cQK`GYNpdC3$ighLvbo6kT0b-!aP)-p=O905QX zDUbA*7Aq9#8F~oV~P-92-IEvAK z;Scsv9VlqEJg|2x`~k>zE33P!S3B+act&zkGeH}8*iS5{Bm~3BOth8lP70re@z=W1zw&O*dU`778Ie+bZ#dJjW z_@VAzyk!;k0Vxm^khn+jVN0e$2ncO*R*&y^ z(2in=mEk}$1`l+3`VD&wP?iP(fbZb2mpy%E>S$&LO#p~-eH(}|=pE5v#aFft&#EL( zh#mJd_QNjLO&nh9bVVF@rYpX&wY%RGzzR)4ALyOt;eG2tA;LOEFHE8nDj{Vz#`fe_=O3HJqHt?@=J82yp_F z>y=`iH`+EY3upJsyodz)kW5GUd&nHz{4M3td%ApUPWXN+nuGGf8wdy2tMWu2b}%P= zgTUdyRL?cgj%4;W34~A>J+#Q5{oHyN%*?|YgkJdW9em^6k=AKb8^CWHB1_>H6CbS1 zX3vxm0(wAhN?pmXPU3+cru>mqM{JY*0zhXPUpKj91t2~$xwEY+gh~*zWh|gMO(k?J z;kN=1(+Y6CHLak)?0$9a$^5Ef6E|l7a~rad1*CV2#2$&L*H#{4-hU2;#K0* zD36y2fp8x)U*w;ZI+qT-W{U}+ZzWn#=6qiR{15H?g$}$%n*dOod;hoH$x^^l(cA%- zu7j8v%F;I)IA8ce%XJPdu=y8pJNzdo^~*n1yS-|_6>!eu|dR6UWrFk>Y2almhIz1EQ$;FcnX9knW&Jo=uV6U@|#)|pGhZ|vZlD#h`e zNo$hX&O&9O97y@=dnsC_i_?QO(G0Bvz^EXcx$paqSZcl5;sHQBUAhDR`T~V!1;Z-y z(zs)#Y(0M53TNg4|J^6lwF4CS*L4V#V>t=ds=HMue;zvk&^ojJ+1QbP@;Amuzp{C> zju2)$0s{u%zH~>Bo+K`Q{Y9|T1H^EM8YshIk)GDeW}XiK014&VzM$&GDK(rL#Ex}K zbiDUW;sc@d*zrniBg(v>P15l-<1^{n|njS4o2L&64gA_QC}e+dtB1&b5_ z2CW&TH@Zu!!tbhWaw>cnzjT0rzKgJxjPNh4{WyCqNM_W)>E&4vufqL-5jMg>370b8i?DcF?Iyv z6cdWYLc@sEXRAAoc~4BLUzAn>9G`Qy5!_>j(hj1Dvi z0C^SP0f41RKP9rY4E_lKafiZ7V`!mkXSLD9#zH~dLmrMnesyanmr703(lHi#MmCyg z4tN8Z=5V#l4!d=*0%Ep|cU&l)z;DB66~l*iWeSc+8}cytZ`VfeJEx}m_rB$qjs_WV zdVq#i^6Q{$q67e#hhNU(v8JQMI~AHU#2#DI$ z*e@*tK#cGRVraSb%m~~0A=>JNyvYOm8mus_J5|iz@_Ct3In$t?LgL)v-;xorM}QbC zM5a4j^{XE)2d|4kct=kD?2bjK#l? z)e16i{(u;SN&oH^M?&A>X4uIJF|PWeMV6DX{l;=~zon~mtT(0$K)lEft(UqmEN0oo z(vD$$nR0|?!yNJlF$kj)B4RpcEfj-^ZPO&{)fH2u$S$_=tPqn87!%p(`ArL(4XnZL zir9V>&|3K&=ZD^r$}lXlf{Z03A$NBn#kUkQG>zW_U7@(Jh6`YG&3F<6XF;759H*w85g`&gFl4gJFa(U%Q&FVLj;|GDd zq)es_)+}GxD>E{E==Rs6E&a170EL7_2nCYGa`#*<^AX4*6Rzud+RSwXfEcAv5)WCn zPwUAuok1csPP+hb+D+4?qL!Lx2`>seiNRdVE}3?s}c^l-S=gkn)Sc&<+S#_0aO0__NH|v#w)Y(M*rSqs6YKj%S%Oj+?hjy z&Yig-ZQr-~hYb@ z)nNrWj%7+H01uPFK-+gE!wCVaPutPo0bcp8wLbLaDUl!mU{eItZ7@WS$&(lWAVx8Y z#A`agX`2Yme5VjX7!imXK{rc_0bIApj1xtKnv1ky*;?C~gKw z0EnBM+3yfz{!3P;lAYAD_2Fn;1^@uo`SAsxb!OIey&LNJ&ubk35UVhu!HXb5Ku7E@>!1^&Nyw7 z7jlS^qHXOxDVUv&(rVD`S#9gLdax!zIWMz2=jI}bp2YBs!SnM1zJ3B?vVu2v$#;i{ zuWeU@Vcjd_IRn0DMU!1Sda12`Nad^~A~z%{q4#K?oOQOOK9^`hHvqduegxM#iW#qWeG-xJS@N!`dGV?7!S)_c)L1PRQ>$I2_wswU!0s!WG zcjfmWv-l_SN4=SEj-L>SZyutd19?ltay-ZPjMS`o<3UerLlXr+V|Mj*rXyrx({kn0 zAd~8_m+!2k!yD7w@k6yQo9UDw^suSH_!zJSe>mJbvo=DHtz;r%*jQD00D>ZUD&u&C zGdeBs#0-#k;48vC@HO~BS?$xtRKOAdN-yq_=!u7|3&TtvK>&2(fd;zDoWJaSR_HU{S$PL8PJ87st(KE~3jl3x4>wweSIhtj0I`1MJMbXpBT))1 z4lOhDK2hpL?fs_ZNEsk)1B(H!BYk&(L3ALdH1yq*i|=36R%f!*|AdVWlF}|r!a+t< z|F6Opr^GO3Ut%3l4J!l~iFm}ZBV%*`GQ^LS<$-V7N1Djiew9B_#BxcMJJ0$GUKk{Z zJ@I*Ez*+gq`ddCH%+i?fo-2*%jW%K5%tp%~ruguo1o9ksZ5N0i3JB7`RJnNO+fFX| z-9JCu(m?T|peRQE7jZ)#IPYaKtc}vuO8FfPzzldgYJdFHoT~m{&h$O4fpBn_Z{O3$ zW6UACAaFQv@PDQBAv*ICK{zlRw5V2dy;d}Kr9l87o#fa~-tMbsLt`ogfLOn$_1op_ zet#$=V)V4{IZxm{a<{}(&Pl6egJ+Bn{Zhl@Xip9hC5X$( z!%3}t_Eqi*uJhFOT2V%n03?=p4p#o?-aKyG$=*&VPxW14|2&mVL`k{#d;GmKPhslG z^x8sO?&6W|O8=m=PLPiMBZg+z=4(6M~!Te`G;o7 z)JZ{{AcR3SKe|j;Z4O2{0Bmwk?+kP+6`h8s*3+k{8iN>Y#Pn?u3pTJ^tx)4fU8XT? zOqJ<=j>^Ay01(Mfo)qb9B|($`I6Nzm7Uh(bZFJ}`qHG|%z$7@~UA=kJJ?xS773+H# zCTk^t%KGcxZ%)M`chtb>Ex!)X1KhWlE1GqIR z823D4&0)2)hHU`1V zE#lHFj?pK@%;9~4@qP-}!&#hWC6+rW-JBj_A6-VE1^_*gm?tJ5JiE{?S;3`23~^VI zr$`7SKirgbTi#|m9GQtmgU}07CF*JL(Kh~!jQ|j1hYrM8y#0B)s&;3ubtsf$*q$=2 zd+PJEv)gp*o+|)Av)R9>xVx8MX;M>d-KKgBb^wTy%1&MR*+m|(27BY13xn?*(%G_S z-5MAU%A72#9RMj}fToIaSpI~`u>6_ta7x=HG-z4Ks@W4$jJ@6d(DB)3Z;gQ9M*ywM zu+G`GM^GPArky?2>7EdzS#is|W~#dz7L~uLp6)!4#h9`Q2$eUA{#dnfuIM9Q&0%}2 z?u|gOSo_qtSeEQ|jX!Spra`FsFhF84OJTg3Fi}r~Hj6Dp7}$9si--#})^RycYkisR z0a{0-43NFSGT7VyDf*hKSg2FNzrN{X>r0}R<9v|fIN7#=^Ffl0rRH=-{!c2Lf>~3y zVlK6U@Zw)k1L5FTZp|rRfkD7=>fXbFy@vPFG2RwXRWUKnxze6{+;-_u>&`vfHft#X zX{mnv%TG^N{5|Q3leL@zj>|W_pcDU=XEGmq3T^RtR|0Zu0AfrRPK=J3dcL&-N>_f5 zo*hl)i-5OO2}J8}%f5v=4%%b7BR$Yk^vS`@Lkrq=sf`%`1|F1@idn%35sk}%IO8O{%f_YG}9hW8x^T=IRGP7@#_J_QcA9eic|n$ zJm{&&OD%07Xxn=vmYyInge;0o+(|p_$NzhJ{5U5-!8yvsLACvr?>WkSy<}RgCtG>| zp?6es2zc<8!!DPbF{9@7OG41x{Egi6WmkFGgei|de#faZo;gz4PDZpj0mu-Ce3l`ud8Nx*Aa-m72-jbbRqc@T zdtKC%h3)zP5~MBuuY(J;Z&h#(Y0yFdf*0?#6z&Dqe>YCo3O6^p5u8mDC-#W((Oq7< zV%>S*tvL`E8J%!F5h`-9$N%j*`}B<9e5m4&+lL^29RhZ4drike+hqt0>C83a)qMs( zeRA)e&Kr{!{jnaEZJmkTy5YLFbg@;~!xrWmIUux1tbmrX_|`P1UbXLqzje9Eo-D!} z2nRpO{cHZGP8J#*4*YL>BAqhX76TylhlBRi-^gKe?6GR228cRD4UtvVq(j=-Qq=-V zDF%(u5G|_-^vJzlE#a;MXK7Z=VIrDZcmo_KS#JE=TCujhGpyoK#%kI zQ$SbJ&U-p&lz0S%Bg1q{&hNic;OU@W#A2uh&0fZ}_n!{>*|JkFLZ?a9#8!hIQ&XAf z&k0|Y9_w8nr`z;&H|no~5o$&h`G>#PdwNejB}A(+xxUx&_kH%5zzUW8ny@FYB`Tm- z9n6rjvkpYIA@3Cwd($gFUm()LIITch?75nTeF;v31`2x&=>RdL?`@I(=`Mq#-vr^@ z5JA@?5UKC7_?x}6NH*E=O_Bu&V-hv^A`yu-N#Y#L~R{(JlRAkN6Sf&=uR-ds! z@L=i+An5MS;khwc9*lA(!&S%c>haj~HfEV0tdTnTtmhHV(<@1VfDJH zc|WajvyqOL(+e4@BQk^#D55$mBv(Jmqb=CeI6>$I$|IodKi0>FJi7t_+QxUu0KzsV zH9orA2Rc`>d!dP-Xih+h%d2#rWCK`b)bFE>|8cFIrqVz53SXQBc0?C+r^xt+JG8XC z9&ReT67jkd@wD=fZMzaW$F5q)PYf8}fS@kkkAGXY?pf_^nTg3xRN5EZHDR^|S2Vz5 zCqY`Knd`jn=IK9!Jr4kVIt9kZyr5#q8oC!RMVl(15%PF`5#b&aKUpQCHgPXQ#^J(P zdB7fiLI~K);-s|ZN+X>Ic)e*LK>AwND#py!0x+N20C6TE#0l$7GXFDZ!?}2_s!Wkfc5pz;8aT|FWWBjE(aRm| z5(-l>_J{&oF?sgM|G^Loow3k1@#pvSeQ@5AA*caxrNJ9=6xYX_J>7+a!-0!`n6Ew7 z)13x}gHrxDL94>k9Y8cc^sr4`h{sTb2;IJ{3N_ipuqI*~V*DnG4(aB$=PlXN2Q)jq+l?mZm%-?wY^B{E(N)WC4i!#&A$Ugvo@ zLE(T`7uB;v8cXGnlszQ0uE2Qo+IMpFm-cuVK;uF)Muk4<;|ipe%BoCe z?`IjJqpdj*0G8%StK4NPMNwEtsk3&0Ozyq_^Wm$L}L%)YqgLOsEG(nC)aw~qJ2PItHCJtsH- z*n<>{oF0%k?S0p}pxm==01#-lNK(sC*CA7W_eF)0HD}m{%A8IEA%r3$esUAR;ghY> zx#toDy%~B{2xoqoZpJRztJe{J5VzItok;D17U$WlBag?DP1^{4@AWRC34XZwx7#yaH3iAYLS1&!cOR(($!14j! z5Muh%@A+BwG)q?p0J?eQ@%J$#E|tr=+`nw3NYj~GKbAm(F+gf#<-t!%4eYfZyv$kZ ze7yDxEoM(gK@FgH4bEQgZ9PMJTc6?JaA56rf9nYAEf+>g`|E{unv+hz+T>Vi=Tfu? zfGB!>$nxd(*7*oe!2pbsUMLV83Zb>9iCFXWUXBS6W5GAUTK#*=kzmCf)3m<4UT}pP zEgc{znZ1nc`>*yXZyCpX*V2ru5X*bl+N3J0O~_lxP)hjj6Vgs@$mH-G5S0nMG z3;{0_KvFA&_tK#;Kte2Y^vK;&57^T*0Q#LIfVdi~nLM`+f?gIW3w$RF(HD3MF#dAO zOHQ5jof|1^&*b302-T4>o)=$Q=GL*YBn;EjzL(6m4=s3c#nH(Eg`C!x7jB}h*3(BV z(e&%mvL}EDR{$Bil@0a{farl(@G@GSh_^ll;7RO`Fn>sTAqWy9=;fW(x2e6HV3(K* z%%nlc7y+WG{CcUa&ZxW$k)V+FT|k@6-L(Kb);3EIE!9q)X01lzXj=fnk>gwl4DH0m z)EY3J0ix>Khqh5tkpzJ?Tq;1o!xb5IaPUse0Du)gZsA)aqT`roYrP5$*Jm=lF=-$` zQya#)<$|lrYw9t1k|PKJyG|H#Pu3ocdPQI1*Plo-TNf*(uWnh;ce=@Q$+10^_?R zrENhlMd=r6d3%Rxu~!eKci6}`&)m}$+LrWgtw*Ru%kPIk!n^xH`y5HFD^oq*0l;%7 zN&lD{(JP%9IL}K(?YV{QU^5WJl{(FHs~AaNysB4H=2#qgPrR+8f2n-j581V`}3DS$YC&#Sou}u;{5ctM96b86`Z33?3 z1hIVP!);y1s@`YUYtuHXdWo31IlwSxSo+F^{vIlC|7+C%1lRr4EmpCv`vtewF01zYM zk+|!iXY{hqBc{Z*HhDIdncLg1ZqXse>}$lPkBF!vtsa$!tndK+$&VW7*3A{>0D$nw zz9lg~70&Ox?-%$6_G(caYZ1w6$|WvOsyi1`PU+CaAEiM&*kvK2deQTJoETa<>IH3Z zW`H2BD?%r~bGv7D;(yA?0k4jMn2PD1=!}z=;%cEs73=tY8pJf^A3L9RQU#QD-s_dg z)*@66;&U#~1FLbj_t4S9Iv@9VhS`E=ECy+^jaz-;mqwx}Pjpy#uwvcrct^i95(_a0 zsBhi$y|abb|D_~@3F3zUh} zZj@F1W}2-B_;CGv+VH$B9^cDSC}1U%vc4FrV@F-&XPo>!UcBlI{y%xN<@R{JzP>)y z>|#8vfpGAtjKlQVeUk+Qfy03-v)r=X7d{^j3`3D990GuqCdt2WKkWT$+pqKhja_w@w2l4^O*3WNG~%WfpGQn-XtVIWunfMZ zNg@coxd1{o$(*QY>e-ra(>ej*d)4QK-1|yWWDk4S8|nu!`~kC14*3Uwz!LqU)PaCc zXlqb7ATs}T|9}YqG4?pvdcR&1{UIO3hlG&DwS(<{b$1`7l%HjG~ z1b~QgS^bIvF=ekO#ExyN*fxXKev|(+mY-NBkCER?$xr+{B*ZoH;rWGiN@mK!C4_m5 z0VaW9KoHHMV2^q_o*J*xpm4y36BD$iZ2%?pPMWo@q^f>g*9O3(uZcl%@N$cs>xRt_ zKVuIb#8`naVneKq*uNbrZ;KUH3SzWO@6xZ%y;b70Kg1J&fuhKah=4_DhRCxvD{Q^B zSSNYM)Wi^yQ1o4UplA`TSI%S1x{mxEjo{z0mBQreh5w4!>l^q(I4~S^E$a%cZKDSb z3J2Vtf8EYGWcBOxGFMnUFMJ{4g4Fg15@6UCq(uJ)W6k}Xh$*w2XP4@1ToB;mu}|Dl-_nzh!eyhtpDd} zr&V~I?{Wx7NkYZIb#`$^w~X@O*|6&yFfe?^Vy1Wx;}D_+OF%!gIcP5v34k=%gPy!U zdvRKT%}5Uv-}t)2L$#N-mE%?))23intzf5~P!phAul4ofV0Mlu{)IEQS16qG1l}tJdK%6Ajpz_F*UwTJHII;jWVWCWKE8^b@E0b{MGlhF_^+b`44^yN6zt%l_UOfR^RI$ zSQT<}s!mbIVEwF+MW=XtyXr5r= zWT8RAB1t^(_$zwuHC}|4X)icG#_;jVJ40*(gK|KOkXS`-TgK`M-_&dfR zf2xzMo=2wIY(b3d2_OJa93Y@a+Z;Mxs_neGnuWeFU$lf*F&oN{y}W(0Vq6o&W-CIQLG# zg|*hPNpBngfVgb4-&`BYmo%qs78EIR>D8hH0N}f9eO0HYm=`o&X1$jwX3?8yyQ`MXRIm*vSSOIrGaK7Z14&kwqiY~s#O z0wl3$*Dam+E{uYNl1F)A5NiR3LEp_sP}XAM9U#@ZyXAT~YJ|2@6KDbWpX@FW5S4a^ z8-K<$3%Cj&fX$KKec`Z9UQCdoa1sA(4nQ{%71sj#o8Wg}E$5$I2p~(BCd_cd%Y_%m zYacct5da>1J@In(I39dWIct+$I;4au2s=TO#HTM`4Q6Md$dv4ebX}4D^TRPamqrhl zB-a5u_#Fm_yOhb&_G^Q5&@yIC0Elr)g~a8{rqrz);uK;I94rn7kht8*Mw)j+++5C- zk#Bq}7f~8t=X&sN*tc@QD~KT#hC^H$&FQo5jr!Vlyw)kk3;QQHt5j5-CM<5K=Pi#I zD?AJm`(wPn_FC$5TBC;eig*>zeu8HlzUL(8tGtqUq^KRl+9{qHTE!L}Wc`_h3;YaniVayKHNe<7 z0HpFe$qkDdq+@Ag+84y!Jy`nQXc7m<;-xqJQc?WSpA!ci~clo8R1zIiF~tuK-dyibSPAMTEK)C8^W_h{WrJXp0P%!2$~t_DXlUyLTI=R`5Qx$8 z0+IVC^2-phH!~j3zTO+ZRF}%lnXho50eM1rq0bau={Czk4FX`;$dqmbeDp^>J1Ec+ zz#bAQ0Pr0uN^E!Ra9g<`U=M}m_aX9d=8<1re|azRFD*5DJOrXK4f>?*O?xub>;VM8 z=A*luyaF*G`=k^$d(;gT*}P&OXDl%fR#q9>>I0ocnms6t1-{=^PAsClfD9Nhz_2#3 zI?D_dT0d_mgdhk4hXV(kvUb!xL)E>8gI2#gNAGxVQKk!L8AvPp+Dz-YDa$Xtw8|bo;wDJ z2Wc|;B}4#-8Gex3J?T5to`}Fdh&kB#ix$Q5;KiiYpV=*gl?pPy@0VY2$`Y+3y4Q^F z>e$hX6^Ciw%>Tt$x$Fh_RU@623W5 z)QqU0j&0Z5W`OA##OI}}67qYkQ0B%1c^C(yUgoB${BM#4foVqs9ys5~-n_-Q!hzwS z_ojB&<1+54LDV>V$^YCuTg>c5tR&)lnPn*ut((J_KGh&2z0@LdidwL4{qgr@ALxi- z0zeue4ryPZK@bl7 zyh2+s6%yR(C5UKWyh-Vt;m!wQep+Vt*$>*Edb2j)V0L1!K z<*r+~ZDWLleiuionBE(M{F9qTw7hdnE6ezFT9JQ(Akn&rGya=;Qyg)Yy|YcnQlqSN zN?AG=e31XF?bF~J#5lx_mT_!?$ErI-Szm@TE#H?~9OYgv?T*kY{bHpy=Q8?3O95HH zqK6RA)ejDA;sk)%X>R&?POsR2a>&N;lCSu!F@qW)q(R5`sUNb=D8#tFz_WF))_!JA zWxuR5sn)e7H;pdk7axe(vflqry!?Tm@5I_A0DOkCP~~!L-jdRbDs;qGo(wIm0b3;-IN^prIwNj9{^Pe zr8aow@LG#|&T)?8KfdaB4iIzT`ha}XynXCNc+${VMub>-UDy(={2Ayv$c!nm_M`_b zqX&Wv!1Ji>?@!gbFqt9%ON4)b$(ruvUb*jd{mU%V0J<$ckSLwe%|rp4-UhncVyPaj z(8X7i{e}a>L2IV<)tk>I`voYcl)AXUmCoGLC-o~W(CnEg0RT+~_Qj2>)L*=3#~{qj zAO;(S8V;>8{8o=DfxAQ?s3w7GzBCI-!N!85)oWL29YalCnpu1U>>QH^4Z)`Pro)SO z*Xkf(`0pVLbLQ621#|1hFa2WM6j+IsrWdGqq?Px<|Ew#ZP3r)VcfFO}a&rY+I%s`Q zq+C5E4*~K|t^qz*qLyB&m`OWMT3;*5VlssfL9rrKtY=EwV&UHpMV4%xWiRL;u*d^q zX1rj9CmmWfJg!aK%w6%q%4-F^xC8(bsf3A9T2Y2~+%bVc)6h`(=6ROJ3oGf+ZVqP? z&{IITI~U`qD!$9XYhC2oeOa5fd8PAd4Zut^czA3wEoyU2A_yD~oRjsM_77u_1XAq# z$8>k5Ff25ZW=x`&%I4r60a#8VG(kuNYc`V|v@WhNZ>bY3+Hk(fQcQl*4cebb;>_P8 zj?C3=V6zEeXk4x_89-lifr_s-@!@9xvHmI;1j4XtxLI^uVDe~Sj0h_6AP zURw}T>2dlvR3wr$U8IA!+35pu5!Jd#%blhVe>Kz|1KfcCu!QfPqjk7Lsdq|hVz2d~ zA-e-Wr*oy(6x6&M-$(0p#fLzQIi0PqN@aZ;#O#NH7!}B*p`QRDV6e`a|MkzbZJ7v9 z5R|qkG%rTR&2`F`SP15yeAXYsGzh&EnK?5CyGq?_Fdcj#(RQhtctBY}gl^;PhbSuB=Y7ior2chVwH;eK_HXE=hXkupu%c;wu4B z2LLgwHhH;(4s2$^M^7+1gc%GxiL1T((CQAIVOR37uLOdLvL4k zdH{fmd%ea%Ckut9XJkpR9S3ZXB}xm&6ez8mB~$B6)b7CzUh?5t<{`^6#_BP6t_hYf z;1naqxM8L77Y}sno~BELq?4`3Dd$`CkWQ}jr-Q8&-=aqxLhDF`X>>KKTP1FeEnT5N>BEM z|zGh|bG3D-KR zzcz6%@&N#Lj?`-5OjBF_+g9c6Hlt$H5zTVWE3yzPCURy2Fvdw@0d!gDg|(WQOGoHj z%gcO%8Zg4}z;`RB*8#%Ie8R!uz-?o$>u~Cs5P=-4u^HC6*5gn{8UmpgyfjKc zuc*b^-aJ5Z(V0}n9JX+3B=v_;j+g%1^qk%r@=_xJDhePdaKD%AReLc^R{-dUq!h#J-2_1ZTP{y=065LCz1%phL|Xui1NvO<>ZrO} zi8kOjiBsqS^JDC_vrg$|Sc51%cpE?^qE^m`|Knh5FWigx7z0}WrrkovOfUf@9vrRt z_spc6lyC4=LuI*c(0IFEUA?w4>vVW21`LVyl!rzMoiGS4EHg!iTC-gj4g`zX>?CN` z-LTIEQ77yTfRe|j#}bfv;Lzyq&or{ORBQl6i3rFX@$W}_wPrnULl5LX z$)YGHgF_TQeQB~5rx(xw(2;y=|1aI-rc;O0Ittos(Q%^R+vi5}|9#*5=>z99{pyTw zs`6cj$LIdA#R^fv;J_A_)|417ki1bd!CCt~{AsXW9oyp}5RKtQB7#o6yFPf{U~d43 zPrHDr7o%F8nW2E=&YP21ExCOTsF2D=yf1$#MM zXJS<(oXFklRY}l_H1}vhVi+{em3EZY5e&3aVfxHik7TT=&x)Aiqfcu9tZMMde!KMR zGv;Q^AaFRa_}k0$H0K3y&2~7b#+7qg$)5cY1b|*IuKCQm=HE*_00432(G^|m{xMHl z9Rs}9FGmdh;=~?-wwvN-KlK)>KjJY2KtwI0*;jSP=eL5h(%#*K-*spER z%e^!ZjjfOV+P>sF3>2u$E*DW!{y3D#3T>UV0kvz#nL;4+f;o|Zs=HK`_DG9u@-ZgRTZkmR zb)?d$WZkNK$Lz1=dv#zlCII5alC{xE@UA{hph2~|+TM)`0B~Mxlz<2+8vp=%&wXrR zFyJp?oB&819eI@5G?GlSJ2$R1}Rng4Z7J=5kLCJX=uT38+caQ2$w9DAm_ z--HPOaRW)-K@5B8SNohEuu&F>@qude008C!wm$#EqPlfc$;c8V%97EJ6jJ1YLBRXx zp4Z!8<~_v(@emSgg+0jM+7>O$7{uWb0mYRigRP4)jn6(O#76~W_>ZX0BQ;x>4Y92g zEuU2RpMK%A2fixF;N z@wKjJZDO$Vr;HHRSyDjX$`ewUd%;oMXG1kRM#CBu4tS@0TWz66oCJVaf9R}u+`Br! zdaXmNw154Hr}dqR*Z{~Mt}pNUHkMpchi;-Tc_Pb zRW0r;Wzc&4s&{QxC{EZ-Yw4w%{KSA^|FoZ}gJ$a*jyGU}!U4rccG8KVCr-~gz19bo zuC2Yx5O0>lA(W2r;wBfhQ&qFA6NA+uFh|GDj-w-H4%=pxTujS_rTX}GXv!CC^}oLz z>l`Di{y3YT4G^=I5g8ZhmRj#7ZfJ`UY=D?N?@RSfD0H{2ymUq5n7j9Ur0II5eop3Mfd31Uo>dNM{dW;vq#M^SdM0PK{O_k`I4QWf^F z@aAQ|RMJ}uQ%^bHH6Q6`XRoxrUY-r|P&)d!Qoo3l+E&cY0YDw)*(lQ|*}@peR_1<1 z>@i5z8v)P;8BAmOiPxSd%0IG49nNDH4bbP!%xlj87nd5Q0=W5FrL_q<8!<~T0QRIe zrMnUGd&mdkS&2KGJiT5Am`P8A!T}|hUePhg1Dr~0vE>Hc_`NN)<9lrF4jm)=M%WAW z;(~sDl159;>xCcykcx5gE4cR;d+?ZxF^)%15pU~ND{Z!5UjS4Ic^wk%tu+QaFXum7 zx{{vh&1wn6eWe@pM1AO)a($NnX_h>b0ceCgO#HA9#>8)DuD)6yrn<|X*bD9r;K1LX zeZU?EoC|=9(gOh4>^I`|Cc_4mws4MuY~`L+Q4ij% z1;7@GdEErU{k>n3=p@!eZV*SN_2y>zt6Pj(TPR996R4`$0t{Fn~2Z@K%%mr{jTVf9wf> zA3K{3s;^HKkNzV5FPk;mUM2BPur^Bm;hO>`eNso&+<^G#{*l~jhs&IKfvAHTK<|1g z*|}?q|DbdbI2_nHZCP!5o^W)p;h-xgZUhGxf&jR6B6TR2yjbb>3*+q&hKLIG?ubCB zX!)xvjFa1U1xF*iQkzXE(F39plZm(bRtN?}hr}N~hHMKv+WI0(1EpoYS_KjF)vCB7 z8H0P!ZyN~K9YeKUlWn_W4_RdlL4*GK!m40EvXFIS40`^V@r`w0#xqis$h{uCl340Q zh3!FeO6(M>*2#e54=s#wcI5udS3(ne?hJq72@h0Pc*3L2S1W@h1OVA-(dLF@76=#@ zm%Og?G>?A(yhWIIx?@F(;=y(lEr}+3&~Kq;-_R&nq*o;es4Y^0NRL%ZS8YtIe$K_1 z`M!&^#~^f$rGju>zqBz(7;wmE!oK`EnKspmchn2W`mVypGY9%t3n1pQ6o$rqm{BLw z>p_}8{bND%E>ef5Bs&Qk`|BO*3X$L&An@IJcjLG!e|}UA`;xUYmbUpuHgQ9!4h!P0 z#Hdp8cYweWbI3%69_e+g$yo@Z+;#YT|L2!%F^WQ+UPwHB(IPjhKl@u)DGZK+)`zC` zoE_}Y*;i-CY-gxw9jBSNvAmL;SS_vQ=0>=mDQ?BVg*9O!hc9XxdM`ONJPyMTaIDZf}dCHMEWp0(Opx zr>&O19}JZZ5v0FYVpNLq$#wRMy;D{1x;YTYG{ zn^e!16bH_)Y+OECDmLr!%g*us)OllcbTcssEi*xGd*v7BB{EbSht&Ab7AZ{wR$5pd zu!2WhYlfGt514p^)gaVmY2HmgKV(lD`TzG$de4i;`<|0Ix7Mc zQFfomYV%K{%P&mREcA+|%gs$%IwrM&be0NFePp0>Wvze#W0lFb$wxo2uHrXSk_LqX zE+w^Yi1K>DRw7s=YbYDgyo-L3N}GiF_8fWv=(3=`6<0kdeR3 zN03exHhgZqx?>_ZKuD%gqyP|ChBC&^Xg$?dBnSvdklztW=<5>t-945|_mb+Q-Ykm4 zfoM$1JI>Y#%E%2{rO-jnX0Nai1AwEaWN+%_bT)gmGbV?}m(33C(Y3Ao>fph_PIWlc zGR)@s>OY*cC!w)*``Z~G~==w6b|UoJm9M)03^s1%n1@~aTl<1 zTkF#=&hQ>w14o<-`9d_g=h^Yovrh(z09^*IZtkWACK>%PbA$x~fAJURD(;L|X@xYNO-34sh zB1iR(>W}-<3Tv`n68n zb0?3m^I7;c0ASkgNvyC@%R68LgcCv zY4kK@f*FYE3ovb@LXdslLBH7=MK%Cp+`|{23Teb{5>U zZYuNG0RY5U3X}NKTd~>{%%p+VL73;yC2=5ZvHv1gh&r7%t!9hzc;-BSi97I}^OfSO zMWj_q1t!1*G2+-ge^v$nqeGBncGmh@%iWYAHE7)K?#|0S$SS+GIOCT)h>_+TcH?M7 zeD_?FoP!4`i`CTzW=xrYLjpp{7*fK(dD5c6{`IygBPsrpkh)!r=cU(#UU&x$U> z*_d=`oh>EW(13z|;#O_G(2>~_Da3h9p5yY6CHd7YQLM;OKu@t1otXtJft_j>3OH7p zJ8EF`Yin+3-pxQOh}U309>iCRw2EEXBF1r=+Zn767MN3!AVwG;E(3vygPn2m@TfEb z0oOodZ~UT{F(zGpS_70E!8v-R*99q)`UHW)fps5L)23qH@dOZr3GxuYaTeRZTrX!l zp@7g3%jL2mp%lMjy>4e>EL%UDv5_M^1cbn|PA`fksX)E+IdZdgxsvhkx204!NNnn9 zlgadJ4K?59C_X?)ruxXK27K$2y=lGFpIcKOI5o#62|Of<&EgJxV0G?&Wq-bzUcQ*z zNP{R=0+u~FrK5=na0GyO_!lob8%vN@h4{=me0s!cf^pxc`g=huotSvUy#6x2&-hqg ze|hifx7q_e(I%6D_K+t?LOb^@*SwqAsFl1f-^Z0qg!_T}s(&`JdyqyWYKW#;qj@qZ z+NsfCHuc^54kx-T;uxcrjoLIWB^sl(Y*r=!kZ-x`GqelSwsMlBANnN&Vv14UnUQsJ zMO)@#YYr<2H*F=>g%4*(^|MshLv8C2L$b^I^e=pZEm1s~Dq(d8KC z)$jN2VNdWR=5{+I#O?N%Pj0mf1rX`G1!Qkt6c#jwu>wVZw4SH3p;)~?YJJ+`6)^f|HJqEsgMmg7E@jv&5dII`v}J-ZnGH3$G?kp#4O z#=3IA_^;j{#1fH;yWPs19!Dc`8r~Qhh^e@XU$t~4lXF}Sd$3R(h`Bb%B!Abpy~)hK|E3KhD?!h)yr%GTX%dlw6&dE~_+xUq3}OPfH45?v0B%T8zR)u43m|axS`v8hT{A{zGTO~0ymyjh%Bvg6J5LQ-IOVKtxd-VS+W^8}S>S346Wx)- zVORGjl`#N-0b}cri4=D9IPh7M((7@UxmSZADZG?JK&ZFQ>sHPwP=d4PZYquKnx))mItll4F$HI<3>*%%#6Dd z0OEx9>zu6+93QzqB+d@X)I72l^u+28q{IT?qu+|@9!w&F9+>J#8O2R?Ub;QUo_WYW zR=6Cn-lS-`_bu($o^${J|CQ2IjN^UW<3HRJ+&cWCO9;?B?F(+j|Cb_DYygdrj@0?B zRPJ4p->?7KHbU?|GLPZAN2qmVFASBF=6ChCP5^kvo^|bY6W?k;UR$f+`>r&JpKawq>!Q*4d>3{)r`UcvXYKtPnG*owyZdU! zJ?zoaxea8|@(a3k6Cyz@b9tb>>@Ip%+l$wFI{~0|#8ZCOYuM`Yw#+e5wB9vD48Fk% z64zn()@fTYt0WN9Y!kAV4;3ZbR=%5kh7Rqv21+HJ7+A|uKTbq!Zq`aKdp&j-(c1obI(BQW|W4 z1jFx*a3jH$#SOIFy&h;_zs+kM|98zy@e`gOQ6KQlD%dqw} zt$H*4UzE{iRFctWq8?4#qOH*!Gz4If@Po1~B!ZBAK~=zMXz|A?>Ma+u!V3aJQu4>O z&=%8I=`6*R{=#?grT6tW zbk1O0lK>FokRfCLkr54bz%^UL4zc8=1x0$e7lA&lk5SC;o>Fg7nyS-#(tJ)ykr^VT zGk0dcnP6?An*avDEg4H_4Dt7)b2>ToxNLvwG{(3ph}kl}LCBn8==AK`VvV_g7+U9= z26ui@>fi+eSID6lu(W1}AL^LH;1dqJN|O1ps&&56676pr;N5M*akV z*r~bCOYTh6EtfCwPe~wVq{gW-N+t2zd369VF$u(L^rp00tmgx{~{(F`^+I6+<15N{e2bm zk$I!lPKCVCGOBPpcOQA}=%uz+kv@X>hAd6?S@G0!$=7Qg@W<0XBrbY`^m5JD=Faek z84zPV$+wZAS-g#mlwfm0oc1hZ!uJYz{0q*Vumf+y9hFBDdy}0njzZp}6)~4oV58fx zPPSwq=YQlsu=m39{3|ul`m!5}f0sXQz?wMTv84reKum|x-@BW0(E2iz@!gk%k}c~^*|cxxvU!JOK#Vcae^Iz&@vHNj znRHY$t2qE3OXY$+Xibl-b4SbG_-`$#*!)j=fMhz#e0EuW8l`y>>h$x-XRMR=U@06J z4yu#kcRdjr_B03pz1Xakbc7vVAb=f`qfgar)k6YU6qC`Zi55=Y_%6=!RwF`I-S=0Wo=0x$~mT(fB3 zF?Kv6O9UCfR!2I>?J6v?K2KqCYV-oa(shT$f*ou)2bQWXhF&ouE67cmN6eVIP%lqH zNk<5P)~hcYPFbw0KRx0;Az5Q_&(d0!H!|BiL)K^+hQ%a<#)WMCm)~#O02mhmkVu-Not-2D zuMOO)ci(S`Af_dz`g@XNi8#&h)tptfC9-8kG~{XAS$O5=zk}J}&VqiC@82C^mqUTi z`qFG+`H2uRPLexDHYkaa?WdYO^~_?9UjfKo1nYhrFW)!Tl^aIxdBmydqdEjGZEoFa zWQg+$F(rd_0IhKEO99ty45{tC)5DLd^<{oSUPo0S$?gaf58bSlI>3Xx4zZg>}#XPpax(v8a%D#-F#{)GW*&= z;Bes5l)3cFhsLHNMJU{DL$GDi-8?d<6L5Wczz#}9mY{X3b4NQ{qh!AwA0 zduK^onUENW^_)e=$E@;6$6`8QnJn=Y@ddX2D9K~DoVNJ>Rli-`SA4Ssh>-Gn%_BCk ztehg!6_l%bqOkl^coZn*t^JDHF*F?jqw$3K=-XY?6wxO(Kvdbm^E?WS3U}eEnz3curjcE)Wc&= zov1+d$$H{8Eq^PyC|lO=K?TOAg3>Z45nmMM9M~I(?#25e3u}+SQcHBNVxMhYMd<~q@`s`l^{IeulX1KXMI6jWyrsG?8g4y6? zjoSq|S-1LQg-r}+LCct$8pvXkvgY(O^hzzA;d&AQ0K}Cqq<7{rxMJSgVWCn45m6{A zIF&!sW|Du9=|zRqqAnmU>Js*4C-4nou<@V#1*{;1kndg{fArf30U%zHp`S}!x71EQ zE4?IjCo6i7BJi#n5OczVUDK%p@2XiPVSz2{sWkATx*%rDV1q5^SUTR%Gl*FM05Nw3 z3sj5rt365-Q&=9dB0_PUw{(d;c6fluvZXh~6Xo{^iD29rlmR=55`ycDuaoJrlUc%s z1JRhi6s&*ilDaojAkrWJ@QF>vmTha_^3Ns&fVjZ+XWcuGmi}45o*-bAAg1f>*s;%b zy^Bev+hWCB4C2;>BzP&>wbH-!MHXHYs{r_4-ac_3tFA9vltRHSYfheu=;xJ27joPrM~=yIBgJs`fJ0@cb4 z(atVO?JH@5TPDv@RTsHhP8yNQ7M(=E2(6Tq3M>qXa0rIPXO>z!nWp6$QjNr(9oV>->YG@;TR&prb~_}ZWe_tQPWm*z z6V+gezCr{f(q1xh5T}#BP$CRaFHK7CpEd~qah}?foK-(O$d~+x5}npTxTyb^ahncj zb~27vUOJ;AnJGdP6VZX4H-w!n$}vt}@8T3iuMhf1zj-jAVLsRId~rz%0bK9CI=j-+#~!lTFIrA&dMJv=;alDwfz$V1Tm5} ztb!n!ylbYqtN$Y>rf63)swV)%9~9dgi&6ntX;k7{f5ZYYZx|5z>bzlK^MNORX8>^t zp`xt-K-G^N5BDHh!2E0f1d#qdc21*;p-Ji7a z#OssV#Nr2z7{PbEJd9crD%=X)zpuvIrc2oq1eP=)*ZE}r*aH439Tb2d9qiUDpEk!I z(?Lv|snn@}Ycum_x6}4+Zr}$o_jU5BrPrr55E_?z z9IyZ21G?O5_8o)3;lRmfp3wyWv+o!V3{^?^MhWnf(>0}2K&b$A*9%O z-UMk`&!%Iv6`M68S_c5q#MU%f;{3Jp?OECqJWD1BfUnx8aP#ORYer}%GKlHlShw)imrDy{{Lvc3j2=i|nCl!r_sBMT#3c~JWx+Gb2lT!z zy)p$8Q;cm-ws))-3!L%Y*V+at5_DQdt2?t4i8=OiR16gK`Q=TzRkIV=SOmRKD1)St z>)#^w=`-;BuMl&9I++_9_o83@AO_D2F?x?>O=jz5AR}u6!293nZ#rogg75pErn6lX z0RY691L}vSQq1UFu2x?-$-mYj0If&W`NmDXlIKO3NWVDR)0?-GXWmV~APBCTK#v4%AP{4ULXQ=fjf%sx1eQviOJ@^fz#xWnCKoUOJ>WgPYiRp7wn6|}A73|lD2HoX zdEt<-ui}su=5V)a)^pu)L~KAlftG1lvuo6G=i}ldpR*OkmRWN+l;m*?YYr!ypR@-F z;u4}&vVjUfllkSHB=y+{D?k}51ThA;F6G!*68i2yg6RH}DFelby7B-3(ecvmUFllu z<%Y2p0NxG}BhKJ19!!%vzssea!2~A|!>}sJL-WV@(==hyXF!SoqsECv3y(eLMA#H;8%B7IIErw3W5e1v_U0pCCpqa7>E?nU)8c7AP}fY_DO3kWwJ`myT1tE-#^*@*C>GEw8SgSYO+@DM_LSf(#(S1>COQ%kQfM zfLLEy^!dzyvr{0($tDaQAC?0M!D;IG)=q^h>+t+`oZ&bK;@~m8Q&N#Fl8Fs<5xy&`ww}R06e?*Dn*}lsA?+?4vyBrdxk@2s>WtrRQ0L(@NAiVF<9~~ zn=5WjWZT!Hw6PgB2teyw+NX&9CG!U7EO6(v1GVf;Y64=$cp0D@<6}nm*Ag)f0%Fe8 zKUGWT%+&DH^5v%KmOWzfoO$^?$Iy@i%&wc!_9hGtEq|q=fUe+1?UpDntkcZH`W^TMr$EQAshr zQ2?U?@uoj|+a86m@vLYC1BP-ck6sh=aKIQRwjWDBP1}fx?I4!f#{K$){OW$Y=0vly ze&+_@NysU%<@#}@Le7lcy3Ix{LZcuMQ$fkgZgnq3U$`KXtswFpv|}x|?`yujmZ_Yg zwKKb=$BN?*Y4I85fQ@k9)Y~3~r+=z>H;Ds4M?+%7a)GbBCHz^!W(TeYV)I<(p z@_yJReRSD3^K0c8c_$KaXjjvVtN-pS(Jh-pM*yJZA&+Op7D;;E`Ot6R3gDWot0`+9 zhKJ{D?NZy82xMJSGCI#pz2mIcAH``&7+IGRVzx|v;Rvl$ZMItmpCCqrLOj1F@thMF zLK`Qr<|~KkwVXK;Jy?iwLkE+3jDcs0_La=2r**R>4**_x!sM&pj{}P=Dy%vDgYL+SMY?Ss69ely>T_C0|%8mWaS$80We4l26Haeqm z5ObQrB!=_~#QVBUv5CR=?|I~Sp8!02@+Ps}lRmZ;2fmw0G$ZlGty|p%;)cFffHG4( zh%cr$S)UPOgnJk0hGXMwxwCaj<-?!GIFkb2;oF_OrFKU%P_#~Yr#(5^Szy6wuGM_T zHf;IcFhQ=}Z2ZUxvS$-D z(`Mj}0RUPhTOV*L;EWf>z(pcn496l7n*DjlO8@){Vw!<;;9g^2KlRss;&6jHV<4<#8gBoSI0;z4_&AK4Qs~90$iQk*~H7991wdxa{PMK&7 z;zQCu^LMx$qd@gEt96!VqA>ty`PUs?ys;!Lj<@e{u;Ei*&fn<3h*WmFhDRu9nF##~8D=xSJ;Fu5%E@O!&u*f)q@7Jk?| z04(62dg(=58U!F*0|=>Po3_iT!@z^$2G-R8j~y?*n~fk4&v@r6e_TPU@uEo?uhTjf zhpdPf-txY71T!H3a9;RIkSC{r_6Sd43x3K^Ain>}J9g+5rH>#YMy&LSur#5!CsgI2|iZG|(Whr2)(Lp3y?^L`;^Z=bq|> zKfF@1@%VWEq=42L&9xRG2hlJfki>^UjTYessd=aAkQp8M_aD_G$`OL%-`Z&Ew zzrumxpaT`Y(EB^yz}XuBIPk?@);Db(EGYn)`LU^}?sO$RPk`v!XQj{N?Pf*4IkS zU_p!;hzF1}rSjqvM0zM^3$10dHUVJ2%(>tj=AEzQr%tJKMf690ulroFf;@*U`&a?r zAog~zBdT-v`s8!gm(-1BbIMWljsof=NE)5C(B6d)Xm(6u4G?1zb}tx{#=jXh=Yky& zv*iQ1mbkNdhq1revpM1sh&3xZmNsg5REI|+MgU+l5F=hPFzUZpX=%59+JDWF#4+GD67CrBBmlb+Z*ST%wnbvV zr9+uHq8-K{f820#x0iKazKIS5fLK>2HjOT2o3J=h#AbQA$n%$Ul|>$~l^_qtBEP!5 zRciL8K5kYy66~RYbqWAWWwe{Sr+^l*(FXuDje6bAxtZZ-TOQfk2LB+IC4iIF_LH9; zTV6~ZTQ*u7pt;bBz%QkU$SN3=$af>kJeOOC7c)l?v{|}l$OMQ9VCn-kbWdhy44`CU zW0+AP$=~EDC%qb7c^A&4tzSmJb8M!wAaFRa+lxK5*v&)}4h#nkjVPzbXO=4(6b`5| z`2)S{;Q`tRCB?39^?&74>n>jp&@wa!njSp!`KyU_qntMm%;(4$GK7Mi{OTSO{xoKT zE)9CU5QJWkZ*v)WXMbZ|Z1(^+rI)%w3;+rP+_M;)sWOa@w5?j$ zb_`YWUB?1WOHWtSmm+lVhaBun}ggZ{1lwWB@<{6zMt3D7!d zm}7};B2?gNS${V(&+m{ZwBL~FS<)NrC-_y44E>EeI={Z*>Q6>is-7x8|pK#I6gvftM zk*5O0mwEpWC+&OZ%4ZJ$mVFUaTR_!Su9&A#At!}h5pmoOb~O3nlJ`P!u;9$eIyyDg z&8ZG(mP}TJK{E|O>@wOOSiMX3g^m^XeYL7)tGwLjWilfGsfRS(JIAiLSl#Jm>G<{9 zPt2#V$rcBm(0qdXCF}ju!ZzAy9%Z78F5XsbQ6B|gouW@mdHNuT;~=0{lf!m&WG_gP z>&Qc`ixSP2Rj4PE~pA?g#ix!>Y-lK z8fz^p1ID2=!+V7LRhyTp-qUQDSanty*Y98J!0>N|+O}Ds#WnK4p4!T@QJz}D8++ol zK3ms6Z;KUD3I~RR#@_y)-5Yw*pm0FMXHyl`?A)zqdHrEASh+A?!>v| z;}iBwi`G*}(@fUnukNWY-=}FwOjhuT0B9FA9N(8_L0m3mrDl*`HWzpZxx5gwVu6!( ztXNcdwUd^J$$vpiHo!BDEbtD33___YL+;LQ$J-@!;4&?Pm@Vrl=lhf~WZhHJ0h|*h zKpR?Q^A9xN#ti`gu_y0=)n|Wn%?T%Ot}|~+SWymQBnV>EcL}yHaZ@{r;UB~d>zHzR zTzK;L)~19Z-XV5QR_4r|8_Ol!gaK9kEra+~VF7I5^W#l-eC(`MXU8|w12rxP;`9HH zv8#ZyvgqC`-O@|v(kZ#@E-Vs~0uq8?fHX)bAf?jX4HA;ljUtEwiV}hXN{WOCC?X&s zNXY*@@7(8|GxuJ;-=E)iy}SFJXXebAQ*&nCd4-UY(ebOy56+dzX2}2mUEqmzxqKIx zt3`rPRx*f;$Ttjve9yRPE}8<1{_Tn&CL1V)QCE_*C=_ZvAa0S@0`!b7SlLIHc@5tH zkZ-WUAos$9eC|q2#uss4S_W_1RuzpcG%UXt+(M3OV9HZEELi;xsU$)RA4-$|=C=|7 z&y>i_#Gi*+{CP>5=u9y&e38SjY#-}9)GU`l3|U{0?`zq^OJ>IJ>)l6QF$MrBcYTXQ z*e8oYOtr<`8eEP|_-tpWjkXhk(^be|tI$>4DD{%7iC`m@NQW(BuxxqF&@c~Wmle5( zBTleB%#rdJglA5@T+icA{mt)!PKkpJ5VPnczxtK(+)ZC~2Z$LhBSwr0F2$#x+&lF3 z4ju7~76LF|fKV>)m~WuyR6YK6R|~;P2Vt5mLwq!dlzH9=B`&KxZOw@n<5G;A>v^lw z+mCw0qW<v-k|2T2j zC(p|X3zP=3JQm7Ao|%TM2g{L|M*+7CzU80449xt|c{hAxfB=B-=pT1u4y``t`M{7n z#L#lD!20kni4dk`8v<+I$m%AXkO%=F*00|DF<({JQ-Qd?vPJA`n@B7*uhL;IOE@p8 zNAYP_98xbr*N^2t;D5M$utX{^AM#)K_0-<0)Wv%7b@4}3pyo5VtN2v{6=@Nu+s}} z9D;<@&WIM+t-YX`Y^(iP|i(vwKFwoECC=cT<_Z$60bRuUsv_bgGeCmErj}Y zweqX4o!`EEP-~|-ivkc@kDakB7Oi7Jzw+CH?ln~4eUdmNe9LOc1He#*JfFbh{cw>_ zv{N#?6M)utC(jW_;+BstXzjGbg#sfF)y?(Hs%+HHox+Q z9;C@z2mrAhUh$8BKl<+rEprpVK-^ynjGaV9G1wVtY%gSM&)FD#%e9ezFp#VflzQ6= zU9_`fVQ;~Jv3-x~C4`j}0Kvq&;<9UFvBb3F1vL-&M&GP}bJMbU^APw)tFkvA3!ZV9 zW$L-NbZy5Bbi5E|6hf$jE~H-TVh$7Es&i4#ff=X<1$eJQz?J3BMPr6{0zh28>!Mf^ zzmh$lwk&g08N?v$oar}@5Qi(9P0Q@^4sSd`+#m=~kDCyCaanfnc*B|gqg-o(VdD@B zMF$0A)LZlM6y3dfeHTx>?8+&+E}u!FJJ#pem#S_p@pq*2a58&>-vnFm%seiWdTDZP zRYsM|M+q|lVz5G1B#cm}%jl z+Pgzp0Wl?{Pt}E7C?>*)=p6`dugD}YuYn8UY4yUt4-egI1qe5qLeU@{lqh-q?27#x z+yO(B1b|rn`NYW^n9>XW?j`zAg$g1{{NejmMdMJ##;#k)F+6mAS;W{~zF!O|8RX8V zY1@rXsrfdOL;zaLEW zFOY8|mBI0w|83w!z#q%E(2ot9Viev(vn+6e6rQ+3i%y=8f9Z0nP~Izw2+0m+lSUG< zVuu(zOCE`D0w6{L{ka+y$Li$#o zVO)CcMeP@jVSu=cb@AiZt87*Yt!LkpeJBG9IG} zasaScl&1L zRR6)wQVBgE#>v=gkvTlOegBuXS`Cc;gBSxvx(I+?FlKuWHDHmX&0URz%LXwBlWd+) zX=U@lo`GlV)?m^=ulK4G<#;JQ*WM!_f=1 zQ#FGHG1*C!cermsSC(~j`A6gcF%~SD)flv4bbC8m>$zd4i}*eEaJ5%Ue^W7R0S(00 z#S0LSb^RhQiXegO)#C$g6vl%AK;^y(27-CuvI_vU|)(HSBIg0o76b$<`uMe6RYW*N4D|oDcvl&&SjXRsr#t6x0 zz)~OiB=wzWM10*jKY1=AU(q++hyh{^0!ug?M8M3)LHqpRznhE{CJ16Y^!<8|Bc7j$ zdo;we*N~Y7fa=SqG>}V%Tqgw&mNCC+Id<$Pm9q7V^7syUSRI4?Lk62l5EDWr_zHprUwvN+0g#?zjcVreQi-Y`@z6ipHbVz8D;x`HW^El7#_-y^B>LQwNS1ArL#6#1a1 z45=H(oxUw6WJM(k)&JJ>mjNAmPSzqO5h4iA7NBpF?vHsGdDH_4S;2J*%3xLPYwp-p}00&%iO!~l$TOf`R zoD1CtCQUo*?7%V`Y$J17V+Rtb6elcY?r10x|Y}@(uCj+kP~LIZn9> ze})Cwe#PUCnc25e3i_YxCgrdp%*yMCrRa9~rdT!w!Tvt@mX zFl1j<1QG#aNabR~%&{X1AMQTK1l`QdeW+4BcckA zuI`&~P&*?dl|zzmz(A-5@}r-_bb4!())^D~0U&YRbH}~yQ>@5RWxX6K6%d1!A^~U`wM9P5ve zTW+A4AWkJbp(ld$td4oXIjmwd6QEWSo6ZXeD`Tp{^gEfn=ux)F5WUf3GCU0m24rgf zk=B1RjwG@OVF?2)v4oNG&XiD*f_RFsgqCsL+uVOAd90L4X_lk-yMMw3#2hSB5(ME3 zv--HRi^;02w32siBb5z_AP`}B@gZ828qny*bzLeoQURd50LzF-!DE)5t>aiNAJ=rU zYv7nL0!qtZ!>PpLMV+-um`mdb!V?Vx;Z8#wP!EV64=v8Duekm1Dm*^ioFJd z@po-xwdyz5LET)R4|XB$n^H)JO7)X2@l7zr|MkbY^yzsMS;K*Yf$!D(SXbc98Qx$Z zK=5bmt$FF{y6kP-s|E!F*3EJ@-Cgz`O1&0i3a7}|o9=L>2}1Tn4Z&N!m~Y>llwVt~ zsV5Tfg@9WNZ^1$+w5q)JJnnb^3I=T3YtHWD@18@UQDUy36%PVlNPhHB-QL|X$JKZ} z7OGOle+pNkm=ib2>ZVIlnD+;dga8eQO?nRkJulzEY!>*VoVI4OOG{w{HxLZ2nYEtF zE(pSb4bYA=B6}%qq^?S_SAcpyx)95;E^6{mXvEgN0e~eN0VlHrJ>adSSuG$8qp=;4vhGQtwu>{_;s&6aY_@`@4Z{}Ma{bfloP&b2HKhIz7_O%0Tnb_918C5r@jHiJN(aG&Zf=U z_Ck=EX$$yiQ%+seuz-D%(}y$X*9*L*raN#mf4PHgK{ z%5hAi!#e}?i5=@@FnA0&zmk@ok1GX}YK^tQ>t``zMmszkLS5=U>6!-EaR5NpWE@^` z4JuN9uk*Gu^Xf^A1MhPzErUWYFy&Rg<51@%HrLjfl#S-WV9pQO95~^$4k;#Y3+^=- zly}=4EpiL0B$Q>v1@#j)31R`|?f(|Lo9ML0vNAr5ivX5q9<7aVO@InoQ;3VFcBJTs z|BU4yXg_Vkf5t!$@{~|4x6ZEROy_z}_E2Ap4B|${1-4MF_9fP*KzIcu2moy75HP!b zXLlSNcsiL>>n!Y2JSH-IcvCJE(1L)Z{2p$W9p(Z!j&4$rZ7IqYt}foV$U2>lnNx0< zd9>d8%QvGF-H(n&wi|NP0|r(lD!lwdvRx4Olj-H62iStA%nA1@s}gxOBDtSE>k8=r zfI}I|PW&0}7}>)0C_)$Zj^!GGvA|jIB=fyj3TQhq_W%F6p!wxj=4d-H5i1xNm>0jd zdX-LUJ275gg8;zZ9N8N&wt#jTCZ-So;@LH)#ex{~GOSm+(2698S#H1~2bLR>6byP3 zF6Je%h>i+~IEZM4mPakv>ZZjcrd{{wzQo)71@Vr9R+y1CFNkiOCi0D#q=9>$hjeB#1C+6f}8O2m$ z{K>!E$pPPJ`AQl)n+RP5jO+NU&eDv$0ie87pZv&EDqPl*{z*A^HZk=e&LckPL(;~F{v&xv6d z6EN6;+VV!4%cY$4q8aEFaV{kS#G-|MuJ_x_phsmfP!N-MJ|+tt4=F=|l}>?0iEZ5` zxTjlx?*<99o<|twjOtDH73cQ5GKc$KD+si_Nd|jV_7jclE&uDLP1DOB<6ATc0O&iz z(4SLIX_kye5&&ZCU6Ht2g`menFkleF11uCN0RY)Ex?lcaj*h#wb-IjFsjB;buDwPX$A8&}HNDMU~{~`N^X#G85{)l`NuqI6x&t=21ayN6{_hM}J zTvnUvqjjeG-M;(A|fX^aOEL87MUp-hk>G_I+xdl|(Kt9_R6l zmJ`Q)?M4nv5{R*zokqHOS-xQ)m{}f6%=+hMJxRu1H3$GaD@Z_(fBtck2k=h-h~N8g znonGOP_(ObAbws3%g86c`rCmaub%<`)r5Gp$i1j|>DobpR;F(fbpH zije@Yf=jtbTtD;7@T^#~vv(F!dm&^`E@`M`?wR}1(F=CXO~ zTs9zUw2T4b_$v6;t|BUZj4Kf+76ISL&&9l}GuB_T|%#9qn7l6E85^L&!geX&{gAx@*7a8pO@T zhIfk(#l&&odLFjid0$td%}qrBUKC(jX@wvij@tG~tOsr)BS6OkQi3AB{@|8(UT5mD z<8E{jW%XFgBH#Z8*g{H{NQ}lNeS_m0#;);-d_Pty;VmvDAYnOMRz9Xgj~>G{Lb0=f zxQ~W=3hFdK0R=Y@46gFY7harpz*MIT!V-_KVazXiuZcF4`Spw1 z#I0t~vp<=-)jJpjXT2~s=!J%4=WUT7wFB%>J2sr#qo=^Ivssq30FoWOH(#$uylW2d zX8`n*Z%C->jT7Dx9yq_-)30gXjb(zEEpuNR#JyMSa}^aW50_Drm`A}e&{w}GtJyFu zSC6v9S}8-$6JT&DM2qoFspysJz)4rMA2u=vfZ+flHlu+bWbQCb7<734nz%CElPU3T5MF~-zR3B;X2 zXb9qDU9QPb+4aiLyiSXN>OzcOaBT2(0ne3hG@zZutJUl4YZlFAV^3=!7(Djngxb@X zT533OF!1Mwv)qcBaOVq%YzKoP<6qYC#keT;2I80_iz-ntxd&HwH5ddSj+762tCrfT z5ClTQ`Z@Vmnl-a&3!tnL{2K~w+GlT9to2`YUGy-=Y5=6YmruFH%j94Nt?Dmzbq`tr z;y=UzG93Y1Tv!cydwQt*xe~BYyKXlC(gFcN;3?N#4kQ@F6lAPk)n09dV1HzN^SBs z@Pg3lJjFB{=Gfcr49380(6N<caXQIYWs@3-Ke-LbQycLG!Eoy%N^LtIoN9BX1Dv1WZfiOjKf51EtXj z0MPQj_g8x@AB@~qQCg>&bebvc`R?T%}~|HZ^pB z`n_N%7jhQEo=LnaJk%3@!84AY@L*BF7c+*oJXQuro^|XExz+-bc$C+)S~fB|uKnm_ zUX)pUB}^6P1yQ8)0TvLycqZuOTjg}>X$tLq#ZqA5WrdZJfi(moB>l(-X>)6rZM08= z%s?$5XuQQY!iZ({q}SbB(Lle!|8l3 z){ZPVod3I%{|_x4lOO?bQYn^T{esM|Tb*MS#$le3$~@T-G5WgF=J_zsoz)jDJTFZ` zD)KL$6P3I8M9qrvCADN$`R;cRbKiLHvA(Y3!9Z&VQ~;SRWzN=5ZCv1{01zVqAciJ_ z7`{7pQkdh`(`179-Xx)q=X;Zm^xvvuj^P``B9y=&2gkoTu(7AQvyYz$9ppICLhuhZ z@D|hQ*Y8Kei1Xf_8lIT41{<`?kQ;|Ez{OI)P{jT$hE$x;J&0Qg4>t7Kz?yu1BE9f2 zdIA6@N7(mxpFVnY6-*GG&;6>@VF`X{9prOhHD*NxNr)+PgLAiZ#+;JrAjYg;CB{Wy9_B^eN2r3pQsAo5oO_Y<@= z-PgMb8q@(m#7{JmzfO98zqiWED_plhVyePdclUc|oiVd}UT*FZLwC?J_RY#i{|cRXjP%K__0GNarkO(%1udzurHWM~sR``cz4EShU0+1z7Qd?WlZS{eSP{ z2B8*(mKhd1955f&)d7Tw_fksaFc^jr& zsX%qc4AYZMx&4p6(ZuBI$E9_ugTzyBwG7#hc>TLj$$*#|iu+!up-s|$>*@~TDTu*$ zf!3>{QzsbdT{{}~Ql!a}$s=NLf)JCKHMbsK#?^gkG=c!Mj;$XM!z}O`H|}CwD@3O$c2{Efa)q0`%*$R^D^Y_nUYG0HYmF>XGlsja!AX0%Gbpp5SDZ zp4Iq0SA5_b#AKuQJB_@Ffd`viIhV^fiD{b^dUf+^R**>k)fZhhILO}8!;(M}k2~rH z)cn{>;{QDSuU;D1L2^4B8#3GuFO}rJJ2_~5qA18T;hpRt9pPH8(&!9s>zKiR0~<0A zO1Xp^yqYYRUA0O5CjYc{aW)|_t+@d)4c@)R($=NUNIU2Cji77Ru%Q4 zAVj;fYEoM-q;~-v19|}Qj#q1VW5DB{J!ik7y|Ep`>(VkJ3f6o8VNau0 zl^$M@7<*uY?!hcAz!E_K)VY=?76ADC%gyG7ssaHZZWce>BgWG+C1(U(DhC1(cM6D9 zUju|hiMIUpk_cBjC3=Pc(U=BRD>~ox9GGd{8vu#^HgDL5oBW~i+j=Y}jU<2yhmscNsl+W6S8J zhkT|7)`xJJ)T+Z@Ed{v)6{x3afOUzVk?N=TARIKdHTUw`#Eu&?| zGaMacJS&&hxj)P567Hl#Jrk^8T|57UCtjrAxZ{lG+sePaNQXJlnWX!D-mhQ&MY~7K zI{;|?vk57D;;A{F=tY?&9+1Wm<7gU1c;M$eE-`gyxU_mAz&jRYyveZpTOVkEl?(u2 z1vw{)i$)f3#mLr+2_bzbRGHDf{Gy(}T4Ds4w}4-cW^S^o-a3)Jli?{#N?MUY2!x{=ACyE>&|+Ez{Uh zv4tPnA}9p-u?;d_AC+lnMH2E0Ioc5~{wQ_nZ&aWQxRa2OeJysn@E zgZGo*5)#0WCI*motrJ8Zfhk9F7p(5z8=W)EYxCf5pU z%>e+f_2u)tV2SrV-!GdgbSaF%vuw5Mg985RzPnuQ7Mdx87>iWS1$@}!;a_`+%e?Eg zJgrVHG~NS9e5V&dUo5Q!TWyO> z^&DTDK{F~gyY7s`W(WX)r3EERdKm)J>g%;W*YdX+0s;1=XBt- zsh$P~gVO)IO*;;oeG&w~x6eNE18BVoZFC0h0+;~cVlN~Bc-}C5!NVG04GKNpv~3r0R0X&%rxG?2HR*Cd01i|3vG%XRKfT{S|;nm%7p;fY&MO-SR zNFW>@fr)bt*JCr~U;@#|%JG$AhtC}!i^t90ddA$&74X64#WWlbvI(#U(4^a!V*ahU z&MSH*{ykFXU^a#T0OH)^5BqDVUv@p#lWKE#uJ}6^&k}ci{V;DbuRb)<$zeyv>J8j_ z_Xyv+KiQGR4QJ&2h=8ng>~oGePIlD}+Zq)B;Jx_!t33A!3w&~8gv&cyuPcPqE0oHZ zz`TCwSskIQ$^$@^M=g^oziQ4I*WYrm&j;8+nU8w(@iM0tWkpGM19PRjdFT5)u4LG9 zWT0haIXJfrBYM6ganXx0C?s)Z`M^V00Sie?BE!3hJVL+EBd)L%IJYw zcDf58E)@U(TL%EZiG9}im^MQrbF>Zsh?gxZ?YG`y#BePY+j@H;#EJj_7vpgJTnGT>ppRe;`r#fudwVQSME1)qB1JuR#AJ zb9K#*<()N-D#`MCPmX+fBt>-8*fDxmO%@EP>|h_9 zPPM|dlP)_@U-SUL;DFv}FT82?5#5939{{kEcw;`Vb>!KTu4i$Vozk$^Iz^f2jjP@v zL6q-uXGsu#uvLW(0>BDWw9-$uX;zHO1Mf`FaQ!aQGZYqzpDFF?48kdhQMSk;ADm`2 z;;K|8wuSZ@~Lui_i@9jMjWN(cb3v%TYMzU~jb=3LEW4TUGvaS@AoI*Z*z_XVqsPXJ& z?$Z<8Nutg}guanH_pKNG5JlpL&I>BlUZF(s5RRkO~wIASm2)(ZFr; zjlb&<)S~N8?g<%cssM21WkSWIlqVLbCc<8%ADrZpnB5F9KWbzPd>hxtb@Dp1$Kgg zSEY9ffl0@bTl;lECzMU}2oOrz0KqZTPhUT@o}qg?764(1|I_yOy(Rv{DtR@?EWR}e zy-b_^iC3+|c0>B6d)@g#p^AVj0j+@UJs+@4tq~uOn5K8oTuExM5s1xZ5=>9$vPo6K zyb%b{@yZkYHEFLJFKVafjtw9HN+dItNLcIa-I?66(Voyt1L+a~og8K!y-f#A8$*~$ z_IP8BH$O?*q=}BIvC>skw!Tza<-!Sb!$W#U>Mho-TjzlXHJF?O!0rEOLx=0!!+J@! zj*T+34s|&^K1WWtrE*GdKwg`xddxgqK)fT zIamNv$_G7wcLJJ@`XIb70{}-}0QmZLW3LC;{oeT{^k7|<=*#c~E_+z}+OemP;X;5V zXe$BFCT-~gC?T#nKj@g)YrRl~T@_pJTHs~~955gmBwfrNPZ9k|VJ~W^jNB;4= zDUXfh-L^FRfB}FXhJ^4`903Qv=^37X9!jY+cCkl{mDG@2eZo(euEJf5Ddkxg^rz{T zBznTEcB1&fppRI>3~lrJuHgp^05ct=bSy+AtL>ccb$g(rzIu79=iRZ%kv>(?r?bRC z<4OZcDDpy>7q-EffhCADaf16XT$${C_^cME4gPCop-*-M<1fJue>6F~{azIVARt?n zejfi2>40x$>KQiW6|nQ6G@DQ?o*+3g=!23C{n&MlR6M9O{SYjT!6i+>ce(t+f#ZfEbT|LGS6Ge|3GS48wCTbX>_ZkMhnfVOJ;lwd3J^ zQ5^xHW!x>vs?}FJd+AxWPM75eoY`Y>`O)8NT(#z4QB4>wrb&^?ul~f%d9IzFICD7- z<^dqR9s-C5%ttgWst0Vfl^`P_3rJC{r#lavH~{DXuu|tT;d;@Fu6k%dF#!eUz~A9a zGC%9nd*HzJS*#vwc4^VNW1!d5E^_{dW3^4V09qWBj~4fPf|s8@22LOpj}sXAB*-SH zN01T*+`i=Ymp1mOTqY ztM!LB@d^jEQoa*i_UG+7G@0t=UCCFWKTrb(5Bbrzfq6r&hR&=8p%)FP|HXAJPNNC{ zV0W3yrU46^PYYEA0vIvn45D|^1?kzl@9fn8BOL<34qp4nLpO`+UDEtpVzTndmMxwS zg(x>x9-t*;iRnMfBM*L>s5gksEqhOEAQ(KdVP$tc0fKPgVBo$RllAc{J66qh zFsO99kMz!&u@T)H061LAM5|o$C*kLcE~iZX2mb!()I{Z6wTDMX>xkLNJE+a@BFsIy zR7W%N7PbOFp!lyNCArnP$!LEi_wZ9fV#8!Z>hM_@2B~ zy=;Hu&BIz+X3vxW?rcO0$OvF?Jb_8xFQB#DdK&aZAV6PrnjK5fky6fUBu!qWdjsIx zY-4;t$A%5H5KMiC01($1ywe*C)~ow+x7KdS5_2mA&)AWb?>^a~716SSP;kJnt3~(& zUi|4tx-?*0XY9awl&v2sv)E+?{ug}f%?iDt*Jp`yC5O3>9smsTN!5FvL}ZZBa&5Tw zUuMFd6@KAa=7@p7vrqx`c1Ud7%KC(l*@^-XP8+?He(kxyvBZnz*H7NzMpy6;Vw^N= zFFyl-n+90kUVosz)+1vN1aOIf?0{xkccybv(x^88<)vjz82z#2AXRGLAL-dd;xXGj zcN3^lmGPdNN0tB}d(j(rh38LnJqX9)9a;;BSMXIvMi2Dt;c)3rx{zgN8Ljh_8^%E5 z|C)W_YA0LoAwQ6RosTDu?h#%}m@sN72Fw~^m9ox$iiuWWhcgV10b;D{UOw=mTk#@0 zV1=`sX+oP^#w?uDk@^?G{vxo5nI!c#48#)c_zgLj^4NnGnz3|X1i z<5kyDAqaw)@eGC!{&66J*0ucHTs>H8jsyV^_xlPDfYZ)r_xT#HO#=$dc;(cp~npjsy zthnv6MIAyf7<8Js>ti8WY`7oEH%_x;VgOplGQU><0CpE@<&Ek@pe+zh5^NfxC;Y)h7wfk~tU{4Eke42e))VEk?S4 za}CU9;6Ydw9sAXIH=Cg_074H-yS4Hr6KP!b*Phe<$(k(VbB-;u;=azc)T@Yg?`-08 zAdr}&7Hpl%&FVeRd#yvS@_d{#yhDf#up+bWuN>d3{;`h!=J|a{2s{s2S=yVxCR2_@ z&zxLNdu+pVy(q03))qqE5)XdUN~`jqrq}ZBA5X@l7#JlFxwftFVXnSfwN2mvF{7kl z{8;?{4)0)n4{S-<#zS}-hZfl#gjcAbIbkmicr~m#3CvXms>X`4wolEoDa%v2v1BlD*S4E zD0KY!-3e?d7IYkk#59OgE0_9@_uPH8fvd70enAo>>WhvpMauR~0O|-z($v85n>uP=ViIfsz(&bruf-(TpEwpW-tesR5_e;hZ^;NLiD82W$1=`# zI_n&5G-?WBN@9QI37!&Rst0X$o+vU}2jaJd2evL+=i6n6)nh|>P9Na;{9lRV=Cy0& z9U1EW{4yovs9aLtdaLG!Yr3dukiDB<Y zYbS>4@iNF(K4>{ARdqi->6&|`t8EBYAV#L~vU~u*qMm0IR_~mk!@7|(0U$0}XR80c zrkhiO-g*YULCi_PmBDmpNmBN9O$zP|#NP@}_?g;=*Nw46-nqj-y%sc&^#VlAi>Y|n zf71Bgg3GRVB0J0_5%O3xy)`bY~XCDI`dexN7E2zCnb%$`izK z>S6iq9e?rtNY4>n-IgI45MzQa$cH_M1^M}7=9}$x{$(cW2Sr>U+0XzxZ7cLDcUN1H z5hIAVi_WukNQO}%{`W>&4NO!3fSDM^mH8{8 zkz@lmNsx`vUu<@XVNG*IEGRZGIglUY8UAv8c2rmGj4!MoWu|^i&KWVumgM(x#IPP< zzWDBx(j4?8?)2Q4+8o}?fXUJgmAeQ`J7tb2JmITJ}GZKoA(b_bMq=lg#hrci9>Gx z1#ttBcR%?y#1a0vxk`Tqy{Z#~#cNT=DcjV=gys>6Lv6F5$|myUp5tc|Egm>eBAEw^ z7K;THlU}w-S3k>4omFfxF7>PUvA*BI=zK7cV<9MGtK)j*W&Df=1p{6iyTtYHkQ4zR z#z7UfJ~aKk&^gE?Qeq&(**^xduupY^xK3cOs33AT_KUfh-5`uPs4Z?7-&8pL^7Cg3 z9ndb@_(uSk6KLap=fqS^Y>WiNm;($F7jbcrQ*W$rT^=L?VxJ8;^3M<-k~NcWNCdiX zCzW!!pe|;-Md2h*&-oiBy44!o!R(*_iBISq{9*6#^qxfU42FT|-|rYW>p0 zb>nOuB88ODy1s+!Uf;=~iig&zOSx7g^g=%N7|NVY0n~8?POa0u4^CCu+Jurm`n~_ zhoqPp^t>FO1X2I=<#Df-#m0MRtbQHH2Qgne1+)$BHd!Q=VNU@FH3-D!aV z4wV~{gl+%C5mIBi&`fvB>nz=P4+5YTSO<`JT*4xuu4b^vk9-Tgp8%$7v0TrlX*r`% zl9=f{#P@IRH$sVTE8@Ju!kLzC1=4jUEASN3J z=brV#6}E9wwkYJPEM^hJTwKnHd)s^H8nc)gYa&`hm}BxE%AxPe$(;g|3yhlac;%4Py0B^N(*p?*1O9$hQUCgn8tpy{&k~~K^#B0p-&kH+vTlwJ zd`5lII>RbTVkFL(^u*h+$9(1g~6@S z*iXDF0o+ROpMG*@9KHvw9|>fTU`HF!vp4%{-)RL7p`x<>g^UpS9nH`$LbUSAV$@l z#Cz{g))QzPGFk^=Rr%0#c?1a#`Kt)$%#ztsBPgAK;$=e70HS90{P{h$@@9Bd=RsBx znW+@oGAoubIdjq;uIr&*y&Y&7wOnd#w_eUBr19Wn=jKmoJjZbU^s0*K_qEcY%BXiT zk@?@!DwFer3w!yc+3&|5cRe`F5&(D+0GP~P9+1@somo2E1wqX<2$JdAYm@ih5{UCc z@=@CA%oQyJJTJsa0=-q2maa$^g9e}?TwZ>2CQCNuuS~N3vdhi#z*} zpzLu+G?UL@`4|C2#Mj^XhgbM3p7a}6f>0L%K#Y4Ud0lzw>4|mgMhifUUigS;_rVd~ z%W$zdx%`z#tv1F%5J3CLpDckF2aze9uH(E+zybm) z>_tCUdgHT~v>P&3s6m_u{fd5fO+4X!4mBDN^;<NcjV&Mu2gcv=vRvj|<#(*rF4h$Wdj$wj ziV}1?TLqU@@lZ~0jYP%aIpGsB1;z@Wzy?|`jMO(xn3$v4)eV@jTJR^89=Zodg2zfQ z{;tiu&AJ;p+Xx*ifB@+$c3XCt`o9H4FFPqml30unD~XAtySqjiETG=fOK+KA%;$qZ z)PR7p58vkbjQ9#Gg4`!(NafHkD6i`OqzB zZF%AS=d=SgNe02pwI_?zi`z48Mtl*zLuo4xHwR0^W zYn3whAri>w5%XtBZ^aGP&JKRd)eHs$&du(*Q@odspg@*?a{@gME9OEt`cGZ5yLQlhqD_ z*b4#2cU5+MKYM8_JwT!ifarxQ$PKS&(I9i$4y*xmIpAmtjruP3iyIBR)3OyN1YM(~ zd#Ng*aPyXTZC&l1%)vAEB6b+@mi$Kn{eaQ`ayy;ynwNTMAVGS`^LdBT?wIJ-Fedc& zw}>vij17s(MA=X>lC;lm6@DhEej3B9U3IUzfnf039n*EC#k`@D;DthssUV0a^Zw3$ zQ|G&;a-l&0VEsfu&9wuyC7A6i0@8_E;Z<+6Y)ts7AKQ5GJLB|Mz3PRm`RzN%z!Je{ zq$~7>=j_;9qCa=)xNTNA1T+<5_(XupWZvY1%9T0evZ#9j2!IHApD%iW)0uzr3#}!A z%AL?)-aveJZNgX(<3R1hp2f6>vJ(3Y!~w;XAAR5c?$s;W2bzKw#^3?u`=f<<{QUOo zX=$|zS(nyb2zgIU)>6xTz@QHEw1mtVeY6h1W?3;85>15@^#(2T!H_e5&o<-Opt2Uf@)h|i7w((~t-hfiLrrbTNdB@KHm<5DCZELc;q zt|qpVhWa*I#^Z8iWApAHMf9Y z6+n-nK->O$0xh7ki1tuG@$lyIcCSQu%bqtM#>G7Zk zhH@UNfI+R@f6HBn&=aB;veodBNsyLJX;yJ=v3pu6-SHqndRD?%IK}MqmUHOV#!K|1 zGYu@}nK&$6?!3m;omBRc_WN4?4%@ZwH-^tc(aX*=gDs`civ^|&Jj+2pOD_zlfGql#kb3}A8>V!>J!O|tuX0UsE29rO^mAIB+*lU{P!ai{ z7rc{=7YH1mutoa-8z%t(@#4s(9x+}GS99qCy`r+&9h~1m`LvXRH+4%JSnbBiT-{=v zr`Pq+S{+Mc> zA$4P4%~!-{a3_wu0{{vAkadmMI-cWsX`Z>f7=M@TB^%?Z(lh2A^R8AvE%eXSnO$*G zCH4wBoEV$;4tk*~{nR0eBTu{bYP+~A6a zL=kPZE_YzoakB{iPn_D|O>IIeI||h@T&;C(>3T0f1A+3seE5 zVSz#*27`*cuvnXc)e3?PAi}=`Bww-&TBEI3 zsTEk7XX<@AcHFPWyyff1SDnWmtk0?{gC8v)w7&S)aWMyzuJkst^EE5$E&D{njHA$V z6f5cg5Jk?TA=pv+W8X(QN?CIz=o87oICxrT?Czm@KgZe-K>$40ERSz=4W1O!`erQ@ z01#tGkFEDU;3NW;nEN4xD(><2Ly&a-^j|%lLt05Sk(L<_L{0oP)=SBP-sK{`&RZik zmE+dmh!*D)9eY;f*j@f!QGVv&SLROPiF(JhPco`9m$}3OmKv^sU~qru#&Fo(wKLOnRhA2e45FNc*-|ez3VQ3-=zoanjKc!&YiQ( zWBY4qS^uDc6fr^X?<%j)6_|@+pc$=&5?)9;^?Ix$2_AlC0}MC$rhKZ)MOHJyH4qFw z@M^qPVyhX!;9%gmD$YB1Z6MIVV9=?GTV217@#wJvFuUs%Z*vG9Yfwt(34E(cx}u`* zw^;jY&><4Eh#oRX#)9)8QR2cztGVO3%z>pA>Qm9SoHRgqL?gJy`H%bN(8ag{?R4z5 zzG8?F*A-#_5Z&pfuMLaP5zxA606>i0J`xu$;cSW8h%rG38JF}S?LW_dsWse6X_U0i z^%?fK8O3w7&7r-K1&kH|r30~2I-95L3vZ#r1B1n@MtP9u+j%G4Fe4`8%>j3t=lt}y zx7&;~=C2!d!zbc!iUk6#BXyy(sB|ZtyEbF%OfP$-`^ZZ#ab)13Ji4vCrk$uoq5>TP zts}%wsgc`r7Wv*z;!1`N4}ekvuqkDPpHgmpufBG8*6sm9wS<$VlZh4M5@=hn8z5I? z4hTYAg?h-p_|mtJc`R1SXl_XixF~b|3E9+O0C7r@z)|ORdObQo)&T&-&6Q0>oamiB zL(fYuyc%G0 z?|mbVx$`H(@^tT({Ln|n2G(#H5sj_k_MTd^tz`lL;__V=dBjlGZw`&ux@XHs+okdV z&7jnvuv~DoySG~JGFW3H2)*co(69Hu<&J@q`>7COJk0IT3-8WM92?=PlLp~Uwqy;V zk#Dp8Hs^b8Pm~sV;_Gj50)>FSUvAV3LK`jsfOva~3WYO~sOGJ66$l2-pBkTL zW>Vdw4KD-%Q1e24Z$W~wO=$d~))Ko#13()2NNDxPrsL9%*d{vanFDn27X)I$XUm6Y z+5zUnD?J8})6S-R9qiA#Hk)SZj`}uNZ3^$&*y=#ecWQt@OFIpsYuRpqM&fI+!}#JULkV zOq<*T0CrO@ndYe)%5n`yIVDkh+C~=Eo(JoYIU)k9RqjEcCx)jzZTIT*+wRc=4CjYiNoeh>|z zPQt$s)O?n6YSdP;(AzlqfIa!=pUH~NdP4h7mpv*md-`ciPX9Dt{XD5O(B|yu3B4?- zxY$>%A3l3YC&^Z|aEcAZPth#zhy*s%42y%~aX$+xKdr|c)2e07B^Vq4Rw3}WzIC-_ zTXO*rAsT>NMXz{lqNhYtoDEwm3;>!6abfw?_1&I5%#f|0lGKd_Ofvv@Ew9xG*cLUS=h^aFjm#N!xN?Bd!#g)7`pR17v~#N8 zvV`L+;Vk!;{99cIgBH;`-=Kk_03XJbKl@j-Cd*JG{ME_?_A zVCK7Pys<&=uG}pXen|@e9%ckUUm%k<<+IwJT(%G)6Xi1?J(iMp{?z`?6#_uGGgM~- zRH3;=_G`Th?G3mjCBH_r^q_ww(eDlFEy%c=T+omAsEwRd;fiXxM zzMp>nNLANakR<>pduEv}>NRp>4vA@rMJF!tZm7qO?&`R&UAar|9{>0TTU;58`Y?lk zv?cnvzqH-kJddC{0t8#gDtUXsAA?6~wrp@B2!QsB8u{*MRmNd@9;{mh08V0#{9p!e zeQ{Kpl-l~tqjH!Jf~w0N_^XmOL)EE>uoEV~cLo&;eN^sg4Fp8*gWsNAQr|3Lx9izE z0Pk<#;qM8q|JAuF$+}zsc!cLk<$nGVo>q}nwCHWg5rFdYNiWN!>-d%r*`q1{RzI&! zJ#DfJFm~e~$%jC_*L)%MJuOvx)E7WRhR*~DZHLCxlMj359Y&{8w$wSgJ)6!30C=4F zGjBT_=NO{?*r4so7C8avDIc;aKl;(`{&&s=rml*;ER^V_LeG?bK3Ds>eOf1775hUT z(eD=kp%?D7&P|*~8>6fJ*d`-ux;nb4$!YCH?eZ4mDK9z+J7eU7K5`ZQSL=Fu&fMMz zq__#n|K_Bpvp7t8Ba1phbZi}~C)w=@PoIPXb?aDGJ9-y%O6-iFcSa}kq64CNmmFl zUIQRM`VIPIj~0rnya3VhWGTMEuVWx4DuBQSBfRu?p@?G1kVmI}Cxd1LA zamN7`k}zTW{*QIouw=0@dg@_<0!zP7h2 zS|z-^E>MmwD>2v=!W{v!WF9yDgnze5rP=T5B+Auxte2FyeXsOu&F)$oT*ZYZ;L1d> zZ4XM@^LA(QRM(EvE=nL22Q0tCT$lx1snbhuZn>_FKnM&mnxF{}+dO@eskHBW{Dn8k zn6sUClejTjPXR<RM#XGY{#*Wrg;LaO?;9~n1UHw#I zSE+cn)U0ib8q)Z;9A1WlGprjI^mC07Y*Dpd5ZmHJ>qi~R|65q=qZ@v>86;OE_=olO zJX>2!&(-+D(j&(4<=Ibtn|iKOP2GcQQ^x{;Mt_})#eGNE#rti=Ot%NFn=qaSvSxxH zpy@crhTb4*?vFlN*HSNk+&R)<0P*@S0`I1(q17lnkP_VaIIUk+`1tZ&Jx{i5soB-l zM<_2#L1|`O($&ZCy|RX+fvKmA){A5}yTLe%$oT5#Go>$D0R+YJSF(ax+_W!P%DMqc znc&=)vgraxdH*pgjv0V=PVR>84lDE68TAXYC4255qO@RoOso4vDvyy<>+ zH6)mI-GBkxDY>_xz3$!S%fY<^sGp+fd;XQD&m{zgUTMTQ6HIn5Z*(ruwF<3!L~mvL zO$;P$Z7Wo-IYs-|P|#oj0JNfG(l|cc-{s@WS_y2NU{3(_Igl#`T7#DZY%Tb;Ui8@# z3;^zFOS?6mEpKA2n=WgOq>H37Z|DiHu%NoVKJzziJ~qIhCx8IBl>1}9XxjXj4dEja z08D5O-^k#N1=X%~X>;go$Q?^l0qp@$KG4NNU$*p~b3DJ&F&kH600GdT@JPRx$Nf&Y zy=cSS9spdpks+3b*{PWG$hJMI(iD+XsVf=vjb?^^Av3^rQuS)b`bhM6Tc2g{6_K1j+0z^Ix&r~|AYkZu@Rhvd; zSAN~r+`~1%-U)tKDz!evXOqrga4>L6srEXS*|BP1FlgoMnr@2AxgrPv6zIs_*;Xa= z`o$g`006}IPNwk7=H1f$tWyfh66$Qvs7wyxr!VMGymNTlsT%NgbeP%eO!Zf_DW5po zZPsNKl%6nG*b*jCd)fj|UeLYS&6FjwqQH2HS5M@t(=XpW=c*H>rMJ0dEWRKAaZI!Z z*k$4#VXKCW2Q2Bz1BEa>;~dSFbs!oD_T-;0xt1qSg!gS})apo=miD)D-mqggDWT

2L0XTG@HS_a~W^U}vQZ;;9>{QkN0u69i})?Sj9IS+c)r=Mz|orYxv zZ`eWW%cd3gSxMKvr53C8l#kRv^>Kq)gHmdMP4KcVTgm zwB;RKSV)W3&Nx8;=*vd#tUch)I5VcHLWtQfAfNH#vnT*ai|dF1b(Uy1YKyy51hh(Y zth0RcTmdYQMt#lq^*FWJJ2nJ88u}0@I z_Jr4eVt_s6oCC*)9x0IQeZSGEiCy5nCjj)Icl57~blw?kL&%ckx^?>&oaNWw3m-yo zEfBRE@A+7h;ez){mj<0iX$jgy6#%gF@KB9d5>HAP^y&*5-uu!th;gwZ=Vtl1f_mmH z?-hkOT-~nZzr|g%PADzHnV%EMa6Oi$&eXX5g?4&R8+;To!c%vVg?(0tAmlAPb&MzY zctm;m7il$HR==+2HDl0M6Vy6TSWCyIhMT2J=+s2X+KgJ*{g`uUE4ZdhmIwj>RYC5> zEV+`xWeEfr_*wY@OOe>r&TRX-wCiySz4K%1Sy+c5pPU?sJ!nwelArNqXgyCa;zEI_ zRI^@yT!8h0J2j%U_S)JidK@i%pjY&U+rX#^yGGB~y;)5l2mqXSAfWzHM=5Or!S&^! zKR5f?M!ODkwZpKjcW}aBgdYa$ZRz3a8SDb$E*WLSOkI;d`J(=FctxGHTE|C_5wQi7 zIToW;$2#!DGAGp~*s|P3?bQ+JWQMr!?bKr^b43p@aiJyre;RZ3X~rA+Bf< zGq!x!Ftye#yPD8Ih#5IELA%a8t98pRsR)7)!o422bMo8Tc0zlj^mK6gb=D7B3qnCW zWC@$$A@|+dvzx0b@&pedAlXqpHq7ZJ-5si3o(*E^<(2yZ?Rqxz4SvW&niK2w07zl&xU) z#`R8xgMVxPZ6{d+0Xp2irniiN*0;%4QA^bYjTLHb?wpDw55{R7w5|(10fb%<@dz0E zeic0?>lgt5@vJ;uqCt$BVB8ev`5IfJ!5tJx^^x(a$@YE3r5`hEo3hb?z`YWXxhJMy zy7e%3Aw3=&9RP%vWf7r9o0FAz`^B5tox6@~`cDwX_3Y6ZF#uraZRzG*uC_D20>B7? z^Ihzr*PzW>dEFkGO6%xh=Eaye0I(<4EvA(Atk#~;1BfS0EfWjkp-pR5e7~}Dae^&Z zej|hsvl6lIRSU%@)IC_AKoELK+54_vOvqJhg4QovtplL2NPteCSv!o6PO@^*&UzJM zm&pL5r=H!T{2j!a?@!U)Iq>5p#h}Q9$B#1i|+90V@?fm zCtUXgr3I_>dzftYRCE0^I!3uYv9OJ+dnu46dG70;thR$S^ctIOl&6PyXm9D?&eN6F zsq_{?>=%40-@LX3Z2envotLav=s8qN&YFn^qBn$2f)c#YKK$eo1OQ&NM!@PvC0tXN z9MGE|0O)}l%FiuCpTg;2|1n9l0$1?f-jh)PYyc;gAa;6OE&3eWhwCv~#~BRfI5}ti zbC1%RZyhIrWL3XD;d2Z)nJeil3ZPA2bEPs+{1-AWUasy+d~-n-t&xX!T)yuwkJRrU4evXv5^YtnfV zUhPHR>*hM>&Iw}^K-M+eH!YQ`Ib8#6dJO=jqkD+B(@c-Su3s6Dua$46e{vlFr64{dj;Tj02j6ac^9u3yT6|11Z;9%gu z6>sQd(I!(G2oNulf@g|(a!va^8&U}ZAVKFGvD^Aq_aeu>J%?TALTvy5#L0$L@reue z9i;=dRsVjnHfN;3!i1^Xv2_3G)@`Z=09wbvHWEkm&86LzC1%$6;powESR~>g{D}d3 z!z(5>Q?+7BC;nU<*i%g}<7@&C5Yn|CUpssG{>hssjtLT7c)d!#wVgfWogc{~Z)n`7|^W}o> z$Y^Mc`aIV^jgDzoWpxfc5x}zta90-!9(1jj{s91<=R(H+{K(Fpl79Q+20a#Q?f^hq z8y@WQgYz4^o#ztl(hh{^iTMI*sEj?aC!K36)xZT%KvbLKkO}qk*W(j&YPMVul3t29 zk-X&(BF5lfxqM%1xpgLB51`AUd(goL@(27)tI*h-lb)hNLZ-n0!Vsyr9UpghGcTk8 z8Rf%XIlfYcn}S@hY}1{83bA_+N{$6o5!+8KE+mG;f&bN(%18L zK~nE@p1!fplAynZ?{K}{`SvS!d;sY2>1+khXmH|Z9C-hK&mpztaK~T#*WRuy<-C!J4}M2)d>zfM zQzLY7!{+M*;`^7#qyCB7GSecp8QH1<2&>8m---Jd_6vn0)0J`o+5!eDwbHJwbg@US zc1Viks}-K3yCs(+t&vYSo&2)!4|>ncwE*OOoG%1H&ezW8_GmU;)dC1d_t~5F_a*M7 z*Irmf7XdNL#OrGy7;UI;Ms(3Y*NYJd(6`%e`3JgAOqifEHrF)(bWlFs zl@ApAfQS?)7EA-yA!Td$n!f2vrBGoS2nO#Q(nT-YTqW1N2Y}vX%cxBDDD{q>OV_^u z2*9v$N&O9#rlaR;%Xj??Ll;gfGJE~__7N9=78!v)71wuD{y=L$&c#6a%*MC0rl{;r z8dxIUlo1F<%doYejB_EGYqVL#%Gs0lX7@TS)~e+iEw0c zsfGamltG2l$LecGx~BlNFaU-y4riJli);bwxA7;|d*>|R?K?JJ z12kHCxt}LI@R#%{b$)C;5`cx|WuX`kY>5u$%_Yvxpv&HMA+_pbz3qf?x7-DtxCT$V z(F=M=akYRaUPR0S4Ib*CZhNQ)kW3DiC1i^$ixox7=mgUW0H7lB!9BUux3ZDZaeUVG zQSNcter#z;1JT>p74!L^8lP6z=3pn4AOJ>;PUZuqCb^-DU~v4Jt8N-gzW{Je@d-FN zc=su*!1d>D>IJKP(i>n3NS`2_d40T|0-JOJP*^_cq_?8-T}(b?l_qj@=^)Lj4FbX7 zU|^l=&*;3uYQ6>`Z-!Txch3k6o_bj_BO06^Vp(!bffdDeU(! zBf+EWWa(jzY}!@X*(M0R=oigQc_y*j3&#Kedq~l*nwL<(1I^ub{pkQ2mp*!5zI?oE zTy$CJ;dA+gAc;GEetP)FI$BcpI1WGu<{JjRzI2DSLF{q zc{VQv2$_^nLYIgZxW~FZWfc}$!L8b+ei#c(-Qd)p)_{?mE$vO(R7{5xvkD6b z4hCNCG+#deYL+?xju&=&3hOwH!g=CJltLd}(7wQwmjRmZ2*)l_?;ozF71q2~7XU2w zWvU_?$tSaPvsHe<-`Qi9KR)qx$eQ*Xtiy;2mrrW|U>p@A_~h=P?lA)p5Zp|D?kb|T zb86YX*F8$lsaaVQ2v-0{pDDmH*eBau6aIPeybfZ~Fs}dsa5CeW=+(Don~S&$ ztaA+(QY34fg6P%}fr5A23Z;G@t0SSQiVy%_*)>)8B)HrQKj?j7Q`8_3K|mfI_`8@%>NzW@hI zC?3qox+lB)><7F7C5@i)9&KC^+JodJ_l)y;g&bNw(DmLO)C4e1^`ALOz^l-PAY3vF}QaCJ02|T_u6ITO09~fei+;g+w z@uIt)rskerA`~3+nwxPBqfb%mQu-Ay<&th9Fzf(_ae@ zxFrC1J@hd4QJdJ@eMWe}wod#bz1*=q0Kj02OM+OGSUCAzw+94RjN!I?Fh{J=pnk%l zQJ=offk2xB08~OgVCziM{jqfUhZ7#snTBNxfRX_~^`7TrS$!UNx2?+-lLi1dj_8ur z{9W=r{i58Y0sBlG2SkgXx+1 zJ6sdnh}%zG8)7>SVsw}9Hv$nD4QNS5M|aeLq(UC{h6X@9ecWr6m>o8|0Hl=E5cEO~**EBUHwB@F{3;0nZAl-(uhTd#ywrM0cT_2TylqlChcz3b{uP!0 zfTlCak(AU|sfMv@ykmQ{w|?)jD5Jn$ym2nHAF zSlLr82TbeMU;~VZXRiqY=gS-*rAr_{k2|;b><>lTO3k~v_NM{!g&2Tx>&AG`=0MFZ z4K1hD%xXS*K)HcaqIc;k4+y$ekE#U_dU&%+AzzUz#DA%Ku!{Ux2rG#Q;XqqtFh5gc zv?A}z&_IXX3VA3!G=RjMEKVLh+TR5J>_|7QX4W?n1U3t{*yOK|npfQwetiVMUHJg; zVae^@+YV81+F4<|_VLza04O3A4v3zt>3gs<-aD&%vTIucVP{*#aekUp9#s|5qGxS$ zuTPE28gc{^x)`p3VDQ$O`E+t>wkX1ZgMlS(uh!1hE>m@{0O4{jx`!=y7wNHvf+(Q7 z-`w-=^@U__Zt48=xr1cUOUEPG{kePTuN}Ge>0fabRL_PuO`LX(L&Sp9xa|J;lK*uXj@b_!Js2ZzP%vEB5 z02tl;1#g)K$t{03%&r~T+bA|hK_FLT?osN>cUpR;rb!Tbs9CN~3<3onAzJ=v9_?VP zsPl>V5~+Pbgjc_Z4ZrDCh8@SeY*Gaf5PHFz=NXQY-Ak_XKvP`=O8|fvZ*C`XmVuw> zi8Qrk5GNK@DT{CU$be%|M8nKiui)IRX1b3Ta?4==|A*uGKOiHM;OW}6#08m+{d@|BgRsc@TO62D3jJ4}UGcov=rl0Vv6LT^3LL%1` z=+m~!MpLASmMr0RaccAW!SNtDg*8%rq_4Xfo@4X3`nOVC=aG>DKCGPC7Rwvv>+ z5=v2s%BakgNQy{Clo9Xsz3<=mT-W)zecnFr^FB}g&-a{bU)PzpJxrmtnOAHRvmc0j zmi&eU*@2Z>%CnDH^9o-cht67-(1ZXbGeQ+R;hhgwK>z?jJd$CJlUlZcvwW%1-(C@& z*yvnzDIo@Jj=0K6cqMklxWWs+W)3^oBF!1pYxA~EY zfd&AK@N@eMuHqW}-s?6hX_UQ9vN;NRNUOK_3V`6__@Ck9J8#r}#l~`V`|HvSByN_U zcSNyA=Cg5}cPC6& zB>{l0#tVw~!$2PIhZWuXzRk57TmWPt55TAlS%aBr@q(kR!)Y=AfERs4dhSb*(>FJ_ zVh=a!DF8_8@%x*B$c(|A(vy{dT@zlUJJsk(lY)XgP#P94(y0&Cbze1Eo#+K9RO_W@1j3c zw3`%~%;LcS+KT1t)K#tc!-FlbhE1`$sCNAlF8nsSP{5jwPQ#OnyZ$O&V@(MMEAZkV z7Z1TB7Y{!eGc7tO-YXqY4N_OQfHHT&B|D-nEu@yx04gB}F2N}DQ0>(gq}~b;$--2D zWEB~B%C`_I8vyr`z&Fj@eOw#YNZoY6i#Vr4W* z>5ct;Q{j0Bn6S8{Wm+XAZsbWy{?$3(y^}6mkVt$8vuyZ@ z<{5NypFX@LwW{dGPxK*M-2{=2=bQ|;N*(LvF^(viDJKDWy;U&-HxcNfbOH{b6ASjN073WoVioxUP5;m3!9eVXTYqzm#Fix1_5X*~18!yMBVF09St z(048W#UF{xSCp^7ES6rzFZI?t6!~bY1at3RJ5(q z(Z#Kt-+u0AFOu?ljFfxM6?Y-1z*z6~QJpdllg5-x^R`o+d)Dj}PEA0j`-~X^KpD{- zWske<{4PZIoN*7-Qj`FYey*@!4P?b<-Y38`{tg$C00wBR{2(fV3>%+LKD5e~RJu49 z4~_@^T>p0)_0>NtFdj6jQhuvQHAH}F8S;2iXy{92ecezP08kh>^FULtJo|0mt}KB1 zvBB+~^?9wiX!yYhpg;SDolg4;-%D=kSMC2LhREJ=!I;tTv9g|&)N%np?`1N5=PK5l z7PCnEXd#8Bf=d)Mm8DNlh|cX}jdVoYPCCV}4UCo!0CZEK${pf3@L_e!um*zC0+X`>Z3%ScEjpDqI4lw8R4TnT0*36ET`Vi?`P`}~QL^ppUogV~Mmb0d_` zU(-)t9AV)t!exVUkNGA+z|%$#%R8S4!X@gG>*YW8nPyP_QY5rP3K?3e^}Oqs+xQM7 zod;QIx%>gs*i>h1QpG+6?GV4!4auK2#`7R!se zC_tt>3f9kYfuP>Qm7;A509K@MQO-xQ{?RmAya3S5|LEHxFmpU>lK;?sz7bNq0DuRC zQ!wA7#V4+;`1AB-ACw~2kRSj`PTUaq#;lf2YJUFwb-U4{VH5zqPLED#_E09x{?y`< zHjHYS2QZDYPQA{q%_LF_`G&8ttCs-0r&t2Qlr_}X>5m-U)s@hDF{H8O8x)5BPf+{SK#=B`|U^? zcLBgC<4z@o)z#`fe@$*BrDg#@yrxsmec0wd6)Vn3-!0eTp!t6C10a;g zH+&2B$>T4|Iunsq0lMqTe+#=R?x`t{_)=o9-X#F^UZ86#)%Kd|mItj84jZM_TRO@q ztyi0l(Mkh=44vUi`e05$P+Vj?VxyJuLF)NIJaAass9*unyI3IPC98tjQFt?P<> z))3Wd0Ra6yf1I3%-chd?y*R=qn($I8bn$O&uYc>hUXIz9Q+{lFR%U0*yp;}w2S^#g z=hdtjZA%Xb9hA;%qk21A+Frr?7L-b7hLA+SvnLY+TLS&tK3HhYTNjV-6ys|ppp!xx zl4L3Qk;LR|ipg^5-h9!E$59Ypfmedh zv3HcSdQ!mvK*3!2Af=OJpD*6_1w*e~C>#)QuxDB4m6f-8@2IHR008>;bQ~N+6_E4U zxL#JV>LZ(E7&QKMdU>}_A{%0s6m6U$))@D3=;NFF{$$NvZ7iiUX3jveXU-U0GNVoQ znlMX?=D{?@X)A;(d%TI3P8cgl_^E4_J1nSoY47z*twx(kI^!r8GVXRqsj`kuXQiY{ zyCNg7xa_bjO%mr&Q{P`_9ZUfqiRt1adJrw9+mzOc7th%>9*u|qER)82<%h7kLBA1rIm6<@U`SB!Gu((mQT(rY)+YSUwU~++vX)pP40D z(vPc4Ha_n?9;jvl0DXJ@{7NnuXy zz1|_$60M17*$rS6AKBMji1rTv=<9eGgucG+p=G{4q+KB596}dJ(^1q+x-QyiK{}0i zQJ8-<=DI95?B>bbp2ICa>L(Tm=~eFWdax#n#m5>GH&~CBYDl2Cv$*r>VFa~ z1OO<6dzvkE*EHVgF~ahrJLGo@DG-R=J3##6hC~12cUjW(j1_=*%ekNY20wTtkk#pt z8sQ0Q{C8P0ROxMz7={=3EKu6GvNmhJ3ehPpk0}=Hrw}e~Z0_^LvNoHHjp4^VlF_A! zXOi#rjTG94vu!ah0A+G<`+UD;(P?6eblpRE;i~}&5@GnMfXNdp_>qz%wJH&kgr^}H z@FpD{YJ;~%$ZOI&y>e=ka;_9S`Ew4-gSs)^52vZzTWp;x&F_5U78gQ#6jgxDShqav zcfXn9ectsgH$u@IReT*#tN^?&Yu3<%{8KMYy#_%pc`sqAoq1~ZEhorljHdaWG$f$y z-Anp`o1;{eKPahx=3a2MN$G6!{P;ycB@rzpb>*%%93KZBY8mZR0C3F&x64?`$@!aT zT>!u(13dG<-IZTQEs7>-u~gY4X;S9yZnI?fmU_NuX-jKFw4qoBxdS2pjy_W35D;_!{gqO za|)fHAx;lr2EQ=$yhO@3oE8YqGt z%c+6j|nqT zq%ED<$kvit>79)E&O;Ana&wbsCKR;-P~Umj@PQR`lJxMo|5<=mM*u*)J<_IgZtz4S z@0+38`yz1xrt3PnSGvu`Rc}xBdzXL`F#L%0jxuVHNNcnFJwW~rO(mh;zv&wURqOWm z+W7bB(E!ql2gd_Hez~W;@T$rr5P*u~j=6{0MqVlIlPRe^7^$T!1bineA0=b|&U@J5 zh&b_yHPj98A=Wg1{s^LUw-A@3)JtgUdj)Q?1VSSht=pP7vu4fbXTz zY}U8^*@|4_+!PrJc1O3zD71pj&Bj}^(Hu0;2mvo8(xS(&9^wmu4hR5tJNRxsNZe6W zl}s|P?i*sy6X{zqQ5`_4R%e6X_1-S>!H81(L96#Cg&d9`RJp~_TaJ)iG|dr8rTWv2@NV`OtqG~! zy&N;4I%45q9J-(xtuHdtrb;D?AONQA>6ujHqwjc>{;dL4wIG7ysd$Sfk^ zOR=?Z)P#C;`wx~5u?zG%?}+LEU@YJfyn6gkHZtj^Ts#;+8=a1&`pgeD@w|d;fGXtK z<5mER5B46r)zrk%@V&Bb0-7N|6qfwy3Y6?s58F~mQxiMDh<7Hh7c8w~wQ2LjJbp4{ z<^%wZ&-LyW#KgqQD{2hep3%CL#>8o2qa?@1#H(cwS>x6KG(c(vcmqK&=t>v%1}g&1 zhx`)ErNq|t!ap1p?(~~koxwRXL@hY%fchP6EYb50V+4s&CdiL}N<=3v*>_d8N>*>5 z7z0BP_Vww8Mc%MBsRe&S(J~r8^>|~qd$D2V5nsf#gq;Os-Ybn6PY{KF7@aAIjdy49 zK7*;Tksyp>0nhgU%O0!BI_UaKCY>w5EKtc{Keb6^8sgd@u)6Gcy;b_pJ|#2M#vSL+jhFp zIf;Nw3u;+2@kfAOKvIffwd110HFo~ zpiB2{Zj|;@yo0mhH_bT;J{;9i0NLc{GjR&~jJ-=TG+A3)V(U?GjA*|+g^LcX_fFK^ zZ-wEL*Qz=H^LN7Iw9crP1Z1SOEnI0wn*q2>Ifli!9Sx-VhY%`LBt0DBrV&t--Xnksl06*O+-tjC40X%ahjVTK3g>I zhzWZyRV?g1{rQ}39X{JY?^{Tk^NWfLqIcL;r5F%iNDD4nErZRzYLFHPUNY{#DVX z6a=40Lp07>C8e7r{kNjKRhsIdib#iME+60s`~v01+P}PafmK3C&#)=_IchM5)3i_D zVMkGC0tgSEf-IOf-!1L)=?Bpg0wC%pXQfHr#e3C38PRyuzRt=H5l=3|EIyBk^v6w~ zJ1PD3YHC|8sFW(i>VUsT7DZ@#Gh_Dlb>4PyQPXkmXYP*K69>5wseO>L4EcQ|sh*c}Y`2JUAXW zKKWC2!&IHi0s+ES8cCh9Zh$SJRJjBJ@O<_Zt`z*P?+RN4_yC$u)pf~()CQkFF}0na z+8BE=0(vj_N_aLFJA2*Ft+Jw5UCoj008EDgD4uMpd&#=(zTbTMQ%VDvPEDyw@%_0o znN>gE6?h=1O#dB}&!33W-jYjWh9E=~hM?qyZ}C{%Mmg>p1vpwE{3Zy<4KB*y50G_G zCNOP<7mP@0+0?w?RWDfUy8AA%Y&u(p-hEs;7<6rLv_1f6Dx+XzoRQ_L6nU=w678KS zM06YhUu0rhTiw|E9FS_fm)WAJk+Grk|0yRXM3Zzvm^Vzj8mo2Hw|oGlH7yn)U%tg{ zr+ZG`;*3BR;YIbLS3oK+^uC3pyrdOlBxxcoSD3YHyw|s0F{?n406Z6>0%k zssu?WKllPg+D^~gkfbExvL%lK2*w@i+`GBH4`9G+U4o%VUvA(XR*WivLbqem-X>2m z3q5;dBq2!f0A7(_y!WbgAF8V`Jx0vLD9^>PeIGTjGX({uh`BMs6Uaz&XDU~UOh2$O zx;iBY0DKsP!Q#flo1>#kJ5dJpAsFZTYp#0lTxiw;AeD%YQ6H5y^MAdpxuXjPfWBDLL z!Y}r1z11_C!nBqogIq~cImcbmBdisY2*6!E?$|YbG495YSVj=H0DvB-ZC<`a_Pu-i z@@VfP2x7$!KBle6?G3N2vdbf?JOIFW207{n5UiIbl6=|`t2}imf&kccrE?%HT*|7D zv#d`R9SQ(6UbKFoThY8Y(7W-k%ER$jp(X&V-&nskU;Ev%v3In^0zlE?s1HTk=IfF^ zIUoVz1OTG_Mt-Puo7+Dte8O%YtF$bT(&Ea%#b;C9nmmjKfPM37Or5{{0LKWAQQ%D7 zM0TfM{H-+*w!PEc)in zXe+RX?D26&_zQ%xarFXUD9rDpB+b!ZKKpNiTL#@+DDEyIqf0~K9OP`6QPUY^-R{|~ zjj2&i724VR`Yu1Yf~MkvYnFahYFiO4NW%!Z-rDL$cw+u3>+k9#0HATQnJS$(ZoFiB z*TxlMqMSc}dC)T?Q~2O%pLPa@FNAP76k?baE0o4CbfNkMKQPDu0pN!G2Dp{{fIRuf zMfz145V3ebE9OHcxT9>dIi4JfB z2ZF#Pjghia`d=(rs#pNfxa;wc0v~~5bGDl1TLBtCnIFcO#@~ZtD4(!5Gy7pP%oYCDGd00^>oC7JSL-NR^te zK=>LH0625jCwcy0t3F4kF}Cp06aoMmqZVW1<&)N0Z`A}?>vtem;i7c)Kd z1^EN#90{^lr1Sjrku6D-@%mzvLyZgAIajuVlWd4m#sQ-F<0Tp9nP;w*^Xo=jWYO1SFX*;haVsbdI`Z*REtJ@W78qDOdGm?aNM+sXtpREYJaCwZyu z{t}lsf?%EE2A{4OJwl?0lmL4c?x&|e^6iNM4*=*OZJ*jM;2pjzr?n-G^kt-LG+w`P zqbm+JH2>Xto+>QS(2h-27#(8oUB51hrXA0ik#^jWqLn`U{ETQow%Ga*NP?BpBqm=; zv?OWDE-Kw)1o-)7`2kS=abkTT-A=m*t4?Hr0NIW1o-LaCqfvPT0bq}66u%MA;~77- zOx*bCm?Y?AVyi{guQjr7kzr2VMoA5-w|ainAgxV3|F@Nt&L#lJEeVo}#8+>q$ZfC2 zz16Li zasZ%0ZHe1$PZr;$C6We!ZgSumD3#HE(>p-`jQJ=-B39p#trtGN#~%d^AhqW5gUM=N;qAIuH2ypI z8UIVcAS8d3wBGK$=qdw%XuSGxGj}Os>#pN=6m|JzQa2};AAHf33dSgmdztff^hcq{ z0jv@WE|NKeRTPrA{;m%K5=Z^AEI65Jc6(Ip=paf@&x~l~dou;nKm-AkYGDc`tKh!F zGT7ON3IsrOl6gc^R~g>)*&ha(y2YZ&y6L7UGayf-G^nxJ^}gdv@0Cvt$JM1O1Sv~C z|1D|x(ab^gnYk~8^&xfXQxd!Wi>=WJqjf(ySv}a@EiYDpFk4oB6JY{1bzb`?ck+5+Q2M;1R}BdEGG zK>+afE>7m(x#J&y1w~j0Tp9pO@g<+aAE7m1=efM9U)hz|PO<5jKO zXf!1lfc0r|IdVHqd)x*W)e!(_yz1}qwWe)o60F~RnbafT&BSXB0XIZ4@gV@!e&I@g z`Xf++08mHME^Y|kZ~>sw3u$i+$Q~n0HsRd*TF+v)nB!pt>gcImdSCVAN5%XR;Bd&P z?Sx~j<7yE&$kp7}-%qsZLu+n=AT8J$EBh8{>e^CFEgAqcPPw_av*@wUc$e3-_aAbo zVWM}&fSZoxGVvY~0GRGB`%nHoP6cn+*577ry>C`qfY1-cY>(*9y)?x4ULroq4@bJLpA+9jGJ9B^ASTE1qkU3pTX^dMpN96B*F)(z*b+t=Z-}OsM#sY#T zOJ#&Sn@a+swK=-;hQEs2xq}A!s186nMkl!b@!Rc_0UGGz!STRVPad(BKN446^FZeNmBXko0NBFPm>n?KM^wkXlK9WE9vVMhT6_WU} zeyb{1t%Q^$0BES|t95X5g>(tG2!sQr_F;KuHU87z-ounS!cmFX47C6-9S&BXWF@9C?LR?fGH0|bNmVz*-TM>L15?N2Nz9o5uxx&2VGdhrsUimmkUVs|_It1h zj9KE&7T?$qn!$Xfg%7X6Du!u z))xzAB6SAG-B6)u0YKw_ztK;aRUYhmdnYUXsugZG+s2w&8=8+I*>{Z+~Hej#Vwgo$iqEx6j@1 zN0Mw8Xq-o1qu!nTA?q9q(&aOPsCgTAZ-4o2D>YRjK(sA9(M{V*Q$DK&=#mToAQKY^ z7$`@RKb>r{D7AOBHEIW!|XM&nYu?)41nNsLaL! z_(RGpN(%F8MwMi(^Vlem$7o#J9gtiqdfpf*`?(NAWZLBUw(MorRY3Q5CC2NP3Q7_?uXup zwq5|xxX1MST~Yn+?BlkvGCf%uQseeaWAWi}vv4vE0H^KpXFX2a>m+~2ml8AZ4w)ol zgk6$-MSlsoWGU=B`8y^x7bHgP*^tYu5^02q>L4DR=h$)koi2^h@!)vi%C|1qs#Q~< z1;&FeoylX@12oYR6c4!NGG8MJn`kU9?ab$vpGtgPT0)Yn`SJBb29CzZ$NS=^z6io7 zS$8&Z)8Bhuon+lWc>o|u8UuhuIZg~(ZEj&rNGCu5pmDah?soQe)1fIwnKRPR-mDeB zalvnTi?{<4jK>uUh9lsFSg%VLf>q#!Q(9X3wVvE3oRj_qng4M2UXRU=TeF~qMhWqB zfsL=ucU$B~{))T9KyvU_HW)6IpznRZ+s(WDqz;zVlunF!W{D zt!i6A7)ZeRYgM*VAhR}-lv;gbs7 zn&w{T>o>j4DxC(FJKSizX12!z0Jb1*S^*_F0DzqG4fU3D@E0Xxez*V8?>Zfb@d{EN>fSj+s`Y^T$)3N&23`J}NR81F* znZ>!q`krZ>xQ~8-E!~7z@$pfTBUr4Ba)TS~`F!qbMb}p4QMLkQFYTKS) z%D8Ho`-Ia2oxHEcY4iZ#N^DN3r0M*2U5$BmdZY`k3xppO{NV5WE%-V(^Q`4dzkb;< zRwSRgYmW2rfvZ~i(xabzF6j)3%8=oi4LOHpia@)<0u1YsA2vPbJCu+dNN1ZY$-ucVT5tIQU$6{Vz~#nEgB5{E z85`PTt-3TF4~_@+AMm*qv6@bA8J-hL>_IZJj4lxO*0&gPKqdh1NkLOu#0~#X5}Ivj zVjLLOeuTY^t`-s10m&u!zulwk(_6}CJUAZs=h4sX+kTqG0EA_{Ek6X&ub%#8fUgq9 zID!C3-|zF-s^PI}i!R>f2NPNd0BGE!*RM4f=Qvsm)lts&muw)>GJT>XR91O-Ylv0e zO>1Bj{Y+s1srx}04iiv_z5Q*<51*7iHM6jNoK5GEQ5{ei1P^>Yoi#BH0rB8?;1Aa` zSQFF0Z-Mck{^=LlxSpm;#T{c#l(MGpWPV?B)PFVhF+@?!-R`&i5x0LWLdl&hC} zG`Zamm<%reO2hkPDC!F@@lju;29LEo=tFa#OZPHYNZ@;|HRbOC^4~Bjyqab3xCTq@ z)LmUAs)Km&@!)u1|4MtTzBD8NNIva1LLRHUEV_6FfT6BZ8!eBAE!Y(e zcwEF!z>Ck<3}Pc(rTM85(SSx0YzP?C@vN)Z%gsM+6|Cm7#gO#!$h0o{K5;5d^audx zqRt?9EdG(MC;ZqT?E=ReB)_xEzd*rJDX0I&i#FwGBmyw61Wy6&PFq0fObVl+6A526n|*dNsJ6a;qNWXB8j-e1OZINBE)`tu?J(%V z2LR}OcfQ8X>HetbolDg<%*t|P2})ccP6ep}2shw;+Pc{bMQ;}Dke1Z`dxhR`v#BK~ zcl*i|vkG(r0D8YB(yA{$&jg3jnBdmt8)yASPkam)+9(77m?gfqEUy22e|4WchN_=M`ylVxPU+nKSl%=RY-3$9tsRRxHAVdZ;m!jiPopbc>@usG zKS2QGTRYyRmM;2VnIS zWZ7H!#oiodt=DHB%DguQf<8vKdnLF=+OOJn%e>y%0xuI}CFoX@ri`y<_2V^zyaj?p zYc4DD<*+2`wgf=3uTUHz|?^lOkyespH-Qk&XlF#t6_=#dVv4 z!z%F94y*E8*VZDwtu&--pZ({8%R7DQt+L*#36UJ_k4IuQPTS?{hsurWARhc@lLB^aM`InpP&5FCvRq57TQ0n!ed=9r60aEo z0IpNvYql(5=2c$lCt`{l0Q8=2!yh%-dx|rE+xVcpAMw(nUY%Y0OesHX(Oh1VKd7HZ zPrl^R{OLE^MC<2qA%%d0AH3@TC!4$<4LBmigO`{{-96h}jVs!Cpfi2|&=?P)u@0@* zqKWNYE+=hJngXOK}HK;#yjc4#uYtEEvi9vlx$KW(P<6|LI{r1_(6qxolEx7;dN zcZUILDuhu$Adw2*z4eL>f;WShj1kxP2v?;~t=X+J16kc5Id)QbDci$7Im{FQp!a(U z9$b3bP?-Usqg&DlB5h16fe^1!!GzF(Wf@ZALQYS8n?NttMgA} z^#SM+q+F3dO3LpaB!koC?Iq>o4XXG)#gV3&32xzq`XXlUb(j5-5I8Z?5V5uIB)9gH zzcD&SVXZJ=b|z~gnmK+e5H_ygc7mID$exJ}DC)U?$_QY7qugiPBtPS2XfF6e++3^M z_}l4R=G20o8|*INQZe$Z$y|D7o7In+3;>iGPbwqzlx{!B&m@!@0Mt*{(|Ll4Apm3N zoVRA9^Hl&Kt;B6ffsNq^;Nda5{LsbTSIZoN43L-4+0lv~9MoyM0&ZK`Vcq`(%wR{J?_S$q#_ATrQ5M zt=iotU!9*?U`)IYRD0K0Yfma(f&f5DOjSX9x6}D z6Sq3l{>iwHjL^gZpab2PZj)PCx#dUwz7U%#Cd6|Td!q7q;V=DpHFeB$A z@t#q$oQBurpK0w!dv7I1M`q8~{W$4r_9Fr9zvV6#__JgLyapM5OGi2mas@ybq5S@7 zZiFo7ybtqg)c8t>N5tS=GaKr^82vvRHB_VoVHEktg_$L#!YAPI--Fj|sWbqV$$!NE zfOSlo_IJHD`LzeV4S;>Z5a!4LA!_j8V3DUji8efd(D=Pyi@0$4<9084t7uncP_q_{ zE7NcK_9;nfQ%vT<5|HT&%n>lY`}?H#CvTjtzam{jfnQ6m=psJ^qX1(tm^tTjJMq!_ zkl-vbPku@mi%K@Vw%_M36j0;@Lm*7%{K49qn*C&1h(Y7~o}25uuuOs6 zer96twPLkB00*WoaezrDyIZGHvj+f;Po5p(8gENG!jhs!SwdRAXOblxi_yGthoorj z1B4L{r!3^OKli0uT&-##4R>W$=gN`kJ6G;~THm{nru7s+7-8VEqXHgKPNYpLWdobq z*P|j%PORZnT!=1lsE!q>Zn))*MG}|@5++6hkiIhg%wcO|DlH2PK?x4@+26m|WU1s4 z1OVp!9A(ww`Myr5aR6w&cC(=JxBILBG)Mrz*j1xpGB-h)o6yt`)O0WaFhQZz;PaGP z#>Pdh)U<#h2z>N9Tr-h}=@*}i`)ZnW9*7kHG;Z?sXGuq<&Phz&VO))$S}q8BkA>6l z(-kBOC#Z6y_n3E?c6^JMtWK1y@uGb)e=WuJq@j(s+&XYm#9zxF6!E5G>w~2gxa{G# z|7VkriWmT{PrS0=nEP_~8~3#KMNH-a0P_Q@&vA44mZ#4}YrL04Nb<0+&RFLk(}pLv zx=?bykmW6sBTp~66NbC~ZfQr*GOx7+1u##hVeX8I9haoGAf2nnFErzYE`kn^{M$-O z^#Ks=3PlXASna}jsyU|fHtIMlNyhf9^@C57NB}*?N)KGKILr;YAC`8)#T^8 zL`aZ|k!&bxy<>$vG@zl#0^>o2@2zatQ8W}06aqAMO?c%oKbKg3jtD^j;7Iu7zjFme z<~?&$S(EXV$x5PR+9AQCAvlu!-dyk2s^&tFgx;4V%N#^{ye@p(ox7|Om45s6aeQ)s z#`x3IH7r2QzI}EpZQN0$gvP&r@<7sCIi>{%=SS42YW1LVj}^D+bv&Fl zXl&O=fgj8_=DImd>ePe4FU zBdNj|pDado0KjymgmSL7+BzX_N&!EHW?zt)i??tLNzRtiW?bnTA4dQPBiP#T>-y!b z;b{=S*QB11#!(9q`z{XlN1#sw#AI`$`59+;-o+;JzN;Sba0r;7|BTXK$edp@U2^%tyk zLM;Q-O+eJa$+KsJj0)rH^i$kdWfnT zAh#G4NfNv>i=BDBy>|t)5CD@R0GwX0ea(BJAoK^2G$A&B<+rPZtiX=I_>u8%`YU;4 zoFHi00=~Pl!w+TzT*@RTqeZ+iK)r)!o(p{9diQD8yp@l#;y{#C{oE_v66WwM_eV== zqYy&IORb*j?iarDf6MhB}Qsbu---EcE$+ptohT)FWRiD5g&l5(tQ+3|J6Mgof`ofB%^^Wd=7=j zP=9K-$;JTHNB82!+)$5AV;>a;SNaeJI;=fbjXMW#vX zuYJ4X2>-~98rHlbH21-UWpDf%tqV+iNfI`3DcaMArbmkw09;alwsArX_X@Cj@yz&V zqXPl}M`8f@Hz)58^eq<6bW3SWlB`&(JsI%=HO#z($mLr2*mff;4f3XuXN1$*k8w@EnZTJf+S(9i&*fN_juZzUiNa7UtJ z{d_hJgf}ZJ5FO#MbxN(*2=Afguo@x&jYpO295jX_ef{Kpc2!Sxf&>Gy01)QgRj%1n z=UAPDlSlLp!1MBh>w_UE!DXiG&Bj|E{80b`z%HErQ>%itS|7j_B+QtZ`-Y_Z$tR1Z z0>K5L6CpVO zM9n|u_S@=*OgIw6x-nTu4nCJrY1;T;sisulxC6DI7mfSL&+ORWQKr6dSw5Rw!bDFX zIw{rl``S481Jk&#hj;K^CA2nX-iY9jF6|N==)A3Pa(_*M^mAHT_}nCSap2yb$$W9L zF~4&0$*-G|_?3&F>v)gXDjB&Xz=GzyX@}JAfA6F~GDFur7;OfS2F=+qIhvq5y#X50W2%GjmZMVE_ALcWV*2=mUSAPG?iDDvl0wu)(aL@xsjcYW|z0zfTJFfH(X|j%7B} zCGQ2EuzZ7rZb$@g1%1^rb^_jt~Id(x%q>4fQ9`Y(; z)ieO$;qt88gT@_R`(KT{g=hQz%+PX0G>yg|KG37?@z+|^#anRi^ncY?9L@S$X$UVP zInV>=3}-#erfMEb|K&fBsH~u@4IZwbgZStwFaZ4V7@t~3| zSK5TGW^$Vd;At5F0Pr)hQISCFTUx*F$0tgxX{<3$_+f1Tx_Ij1FkfP9%(}aJLjB;n z6SB{L~X!vj-YWugktqvEE<=$Btk zd55=DvlETb^WuS_gcP*->gRT}P~#Q^z*o;c=F;xwL0c^^3iv%%r~`n2z{TlY#rIpK zh2aJxaCU;%XIN(sTawK79(o-bqk_aYA?O#-GRw}ybd&7}VKA^DGEKna^&Yfl5qcc~ zXpCtw8~;*if=?360*zU+$-mY^$%d(9m5ts9W|R~tZe`3(h4w(40F?Nwhn2q%0MjAu zgX+y5_-8Oe!*Zzta$*Nx!gGW$4UmLU$`}y+I?v7?)=m9UOdxP8@y|cm%xBt;kX`w3 z#<%&}1RFV2q#y}ARIU1A!1RQ>($qYV^+7+sv3FE4csqd#W7(6wSN&*(vFv&1Q1zhf z!MiZMrWWyOr^1+OvE_igjB>5#l3X|YF+{oCi7}z>#(uX4vVXbJ6kl1O6OCb&NK

zGGti()k){&72ZPHokgXjaKJ3m0g~c034!-XkL&_xm7hFl6}GqNEdQn*n2Z94%q#HC<{#T@YvFl!J6=wX&ol3m(XCl@D~bjn$vu5j#2(10d3IQTeTs z_u4f*?VafsOIl2~scX-SHVv+j{8Myj?Kyue3fwa5u)#s&Smq3mj8e3Bh%N@F4E2Ig z6ECIGOS@PTSJ7HvJZSm;^OhGC?FcagrY^))=DDT0UhqpekOI*@RU#n)^SRgvb!n8< zPo%SCsZjzD-}t_H-Zz`Iakd!4qZ)tZf>_mg!>wpFh`}Vr#sD@&-CHTU1%#y=Xa@i_ zM)3$x?ynxQvqd!zf&w1S=X8b1_pj9R9Sg~Xqo6T&l~HHBd+x5AmsijjHBwoTZM=j& zs_DJWsL>AqyQ^W7Vc+E!Ef3-H1V_OLug}Qo#Ja8WHY+6^;q8>V7!{JG<-^}+ye$MZ zzC8j$%3@N-jQ4*XlLy60`WuA;TZ)-`6}jD^qydOgF#n+~eb(Y}%ZF+lBhV*sj+|>6 zafwl*II}3;Y(ry2#67h$`ZXUFw^(`yDR_96r2IN?o2@35lmXI^G0Ey6@xzKXIBNzi zUP7e<0B0q=pE_sf3<^L(7vTgXjhLRpk#y)(9iJr9&kCSJmQ{h4k)Nlu^WIxk`twMs z#@=yv>aQmCgV=Oeo)@j`Rg?fgI?rcM5s(5={+8wq%dFZEmRJr*_gpbSsH8~W{ynvg zMM@Gu7zOtU3Ai}>gpEZSEdW5{ty!))vu<(4d#PC)ABi;<*}Hwi91Xv=^eeM8W8CCr zZ94H#9pB*@5_3v8BtUw1^UXKgRIs&$CJ?TYU=sqXBv91qt$Cx<6BuMzoRD{bW3=MC z4XvV7i~!Iw?PD=J-pOP~2xsM+V^aB1Py`7NZocr!*x7czqYjTz5QpfFR>PxHjIbb| zG=Koc=l7`L0IsJH@KwS_s}D5|G{jH2 z92*0YFn9a+t=IhUNH2>on^9XVI#AS#HvIl5=m)d#0emEiMG3^qq9pIK!Ip<`%LYK! z+6m_;yXi~LL9_f(NK(UC0>QNbGMl2k_i6X=G$cj3=k^H!qc^%Ot(oz+Wi}j!Vthsl zLumG(5D&>9z0PksA_(U#O3$@rS|~;W&=|p%jobe4hA&3(l>{_K!|W~J4;mtr?0+Mh z^{$YNg>sS^WH5|F{fzk+=e=!hCNyURDF8Ca4_y*@n8Ef~<@7dohINnyfvkEF zF57d&Mu?Cs0w_-GnG?{UZWlX3C>;XOd#Po`YNPS|iI3FimguD-?H%;9cVW5?-#u$Q zXr}e7Fkqo~0ML7egpEmP43RF|>1}aT4(9r3j6K;GL=m`G2SZ!t2Qas#fBE4}_HoGY zEZnU+!00e-PPS8BjeFD+4WhvDz%NsOVP9JdeS$zV{-WPrm#)T7Kj!NvWo(pg@*9@G zpvHLvmRg=YTFx4!S^+^A<^3)r0xLjpZdop^1*o0?;N)*uqqhP8qDTK1@AJtLsRzsh zkVeEkP<}vKZ~37BxWuwMZ)$rUHhhl;0*D6#XbazL#l25y_`tVh=j>krP$1A1M{K)j z?#)l3a>QdoD)(2g9Lb{#0~a*1dEA#Gr=lBAyc0}CvH1Mv>dRIr>apN!h9M0XDoI+& zd>L)f4qs3qX@3@wbEXmnp=cEL|H%)fNr!x3LTP)nGW@#StvZMYKY6l|ee@-KogfMv z4}84uJ$3>dRz~r_c+l=5-&r;IW(HmX7&bC(5I>N2UV3DYtsQ*;6-~>3Z0E7+P0Osd zDa2R7+tNFY86Zk9!?q!Q{RMH87l1$(u2B&1V3)O4XFl^^N-Ae)#+7=8=CQR4_~v9i z*?wM226Kk{Pt&;P8mtiJ#9{_Up;BQ5pZ1RX#+U^Slg3P+$b?Lv zj}6G|OU?=a$4M~?CS@e;i7da`)Z_EAJa*+M)4|~`b-r0{njOKnf|}Ah^@7ro?*8ll zhFR0`-5t*#p#177zfls?jG$PatKHP*u=UvRaVT0udrYr_JtshBYmcNGr?Aj;ra@CN2QCap9~`M zuk~m?4Ra(!n-4)GiGa>i?zHutG7JD3&pLl1kPb?n<^vW+OQ%na*{XSJIw$Mg)Voou zJ-3SW+~&SVofU5_(<(akXB0+BO7mylaTUqcor9z41^{&bac;6}+-Yxnzjq-w2(1NT z4uuT{N~F;4Dbc0nTj|1{QU9YcN|wDV&-#t&->I{x;~~tJ)Bn z{Ava}Lbz}Nz@z56h_K^=b=%n=SjmL*VF1d-Qma3%JMR=V zsQ6&tz$i)pAontvzH^OdWSeTExdyW}(vZCuJG!(MWj|}ueCr@SpuI4R5#*nGYx}eg zW=VN>zhnWLX)yu<7j371?g!jqk_x%g`yeWfAdIpgb9V<=Uf_(c12PQ&8b8^nf(hLN&4h1W6fC5XCXlfv>zXv|1Vx1k#Rec{|Vtw!;2> zw7xYB6)ylB!JbX{C%G36!|Ug;B>*ViU2+frBcVp7A}c;T!zO-T2m}IzbA$wC8@|r! z#V3zh2%(*TBNyiQ_C>vbJoMh9O_8ASiCG0}>`vYxI(S`?`579^KaT!XZR4Ksk~Tra zfRrjr<_9@vlF(I5c6u1U1aEYfeJhz-Ge}YP)!hYHrwRDJvjk!kx8{{6z+6Tt@A&Pw9xAmv>8&U=%U=q}PnD=Oex&}cY zsZ6F8fos5*a?TrL9Z(Gx0AyNzY^mb7V=k|(?|P3vF+i`-4?&G@agK8G zXy0m-Y~bv2(jQCxRUrWEh%%Fvv@rr>09QT^hwb z#%IZ6Db?{{7q>f`_QD{mT+I?7@2*T*y4weofB83!RjzMB_e+EUS@`-gqfv>eYy3*w zl10XgtQ{ZhZDE@DarQ)O*&1CzRvoEh+RATcZ8#jCFHF8_u7B6ej+9!Q38a;((a1@x z;gCFj;70?B_;(rZs1!mZ5j*{yC>%|kZ0*fAQ~-M!64URW=L(CG8Qa+ea5E6|GLC2; zE4os@uoZiFbjFg(&qLiOBeMfrFx}SVZ9BaWkIvW*!29*FvxA}oRc%7Tspzx=HE{Y^ zvf*H7?GN2o$hUShs`iS=X^l z#@u;9qp5Zd=8wW;4GX6)eg60I=rR+dfCqV1CvZH(?&TGK_w_+{uzO=AZZ941fT>lU zlc{}oVEzFBz1LYAPED}LxcKc8R-C#xbx0aZ=1)i^=&xe&0ES2&e!INgzWb&r#R4&! z1=ZVn);gR@%7NklmJ|SC?>asFpmvfkDKgHr7}Nrj=hh4MC_CR1KJprw)@i8; zFa8;9`9cqG^c@yGV?87^a|N6Xa{>E@@87Zv>->hGctFQWhb+Siu!qg)*4DRZ3OV zw4HliEOv`kgPhVUdX|5jNC(!L?HAs3Pdg77_FQo%&RQML`yNNSIR|LE>7Af4qWAaz z?zTx(rBY8y_EJIz$U(VLxtd(dl34Uy>t%tmBF!40kp4k+2>9d84+C;M0C|A(<8OfQ zc?{aol(R>CJF)=UP@&>=TvEBWMqCMH0n~2gj9<8uG1YfYwhGfQ50XGmzUAR^2|fUG zeCso|vBn~tq%R~t3;>8l3;?Ohj|*JWFs@b#U@bKb7xlh*x}0BZ(iZ>#ADA(PBG&0| z_EH}6>eB=PuyfR`*wnXU^;YG|T7G6 z%Fnmewjx$f1c1EQRp{m~-fshgmgN8}Hls*==p5_IJ6hZN&>saL@L{)#D-Nq=crM3%G1NOltD*!TP}DQo0#U*rKKcGf-|J{_*of#B17L-m3@4oT z?!v3=0YL9~$C!=#UhzJ>9iG&H?9p)4qRBzSuPfZ1c<$;XyEqX_<*c~lFS1>u!AoC# zol^ZRJJku91VBYN$ceCKW^V~S+yX%3QMZMpzyw-d7#dh&@*LiGze5v1IEe?6G|nXN&-kRZ&M=V>L`l`jUB$i4_+!}y*8W3dBOs@ch7po?E11OhWb+;R z*^=c0SUTVk8`k1s|BH*(wg%?|zKe|@zv`V?^+#~HIeGI9w;q8GZ$FaNKkH1(bf^#V z0Q&c)YhUZDYN>)-8NEs$v|3^(2g>Ml<6t$?}H1&wp3tJe9v*2KeylK^}|Yy}f>idX)0M=rBwIAtsQaN`Z2 z9I*vs%yPjzg6_w4KeVC^y$+4vkrBuXNFpzdzT0T6H~g4Uz>9!D&TjD&m`PvxsUkly zgRJ*J!j}tM(tH0mjAaC% zakUJ028~fuHR=D=&67hk?j;QoaWD!Q=Ll~tn|WV z0yNGk#@J6bFW;e8q~>2KzOSl0UA{~%&TztrEA<(xn<~MZl^6vLH}@=<2qBz4{YQeFJvv|{_V^up)1`+9)6Z;>Bs_SUf~ zjd|Yo9;OWfK=Z;U4ki{Ju_?GqpMB{=)+EBTfyQTIVYW){m9?`SN*?6=i}@y5NrX8c zjZt5L9B7)gBEl_4IecV+O&#F`G9C!hEU3kX2{)JC76bq;CUTU!XL?V`hFO4s3ep$= zoVLb^3Z(F3|CF|AFf;`Ms0$$}2txq;_w5C%3m>3)Cc)**>z$YRBVazu5thl{3ex11 z?Y%@RtuXZw1RjbGe>zYg=H@+~@m{b{rXLjRBM-Pf$f)>Bw^KGMs(CPo;X)Qu_um6& zTJs2l07#)Y@jN#Vs63vmf;GG_1)y;&`C;vg$rTlrvdJu8!-z)&fKfON8-HDBu0P*k zW1iXQTp`glUiRn$zcHO=tDq+QuU_VS4k4gKvFQ7FOCHZ;br7Z_&@Tmbu(9!M?7)zXa_f=~*y33Im!MPv#uf_w;K`li zEz_zC0I;bBUC=}@5>4cMuG2R0g(t;H-pCk9f_q9 z-?vduc|y;4p$P!_$C0)ne_lH2{xrRXRK02*(veLiT6lOnTnU-e5>1_mBaC^mV2>=ngh)oM=N7~ON%+bE?$ z^^Wa%KbS!FdnSW*S*06gD0{buAD-{L)tZX>2LPZuLxshGk7Ev%uj?;P1xM@|sA|6nvy$Ki(x;^nDdv;VUn!LsXzMJ>0opfnk1wee`iXFTPQyVjI z<7PPncaOQN{VYrR2M8a~SswX`AK}ks(`{%{`UwJHPRZly!vEFwtwHMDKuQ20(qJS! z0mZxy#q#?K3!AUD)6{VLev1I&!6cKw-zI$IhbY=0fV4qd%p7h0i_PT0V(lw(r_%}Z?!?jZoF#mxlNnDSIUIBUBy+gp zfm*Ak{12R^L3*sYCRQqt&lsr2>8K7UL4s#C|G~P2ias734{S5zNBd?-cu-)Akom9F zk;COT0d;S?J(vtUI&HAEaIJ+GNJ~mma4yJy)@-dW7%CST0Y)5-p!LAH4Sg*@-GV7( zYKz*g;(IXFKhes~CPs?+iISu#{#fGub_7)}Km^#iRfaYXN81|!pucanVb0z%+^Ff3 zBy9pqh?;J%-@4gOEws`u8Iugwu4&2L|9#HpOLga#(zsI$AU5RycU?vbcO|gNfL#gHk)wXE@25M=khjE0I8vp2 zAi4?D`_#<7?T`&}A%jwycy7v45Qj4QyG?tT2wZGjy zDd>I7(b2xz;S}h-j5J1^1ppE6`GvYdsuvd6fOtQgOI)$Prpg!eKaX_If7)( zAz&Db4(SJ!2qaX#YhF7_SXC2{SB}uon-D{}cr`T5P#c`WwQ7Q@$td5-PjLK3egjzj z;tRn_^67^&+YA)0u*L%+W(%76MrG?=K2H!e0I#3PpG3V(84-8OnOcYBIFIVsb9?Z( zE_SynoKI=ZB&@Ya7N*xd3WWjdS^0ff{+%RJ>=UPUw`*)+Qn^(J@!+e*zYGR6xLw|^A*Usm) zk;k|EgW@Z+6xbqX+ei?VJRn zGh0%{g#e!~fJ(_vyeajqzs`?LmM?&ClQ4dyV@JH>hBuGI>UI6b`fh=&;|rhMTI?8! zFQ{3IIQLy?TPB9p5DgX}kkUX8~cbEojCCiC6`2-o5X=p{^m7fKCw$B`0?d|}D+U4p=P zrCxm3dviP7q2Xvh$?xLM=g+ciGBR4dQptP4!TM#gyC{wQ~q>C_9ML) z*a=;@CrKc_CQT1UcI0J(>8(fE-0No*2&J|OGM3Egch9guKl;M20DfGiSaywr`wx@X zZLzZ{UnLey=@Pj6!DBX;`PNTh2+|<>zhU0$qi>fC0bP#k^``B6*Zb~b!&>85@1Zt@!tE|p^ zP)E~fYnM1~3qfTTfcImxTPN(W&wH|0oe%&#AVLYjY^aA%vo*5X57+ZyYXE`a2Tnca zN`oiPcy~{fVU}xox@|~ex%S1A-tLVu{D#;P{l(5-`uu)1I$rOPaud}TLDqUZe(=Nt+6W5IR`-iU}2tsDz|@Vg`*Y^02)7W zWPBiglxsaFjo1uqxjvk2_HYU+x%w9(!HK=0T#V&n4P<+E8_doLlR(6uqa zqHAxeANQ?Q*cU{bOl%FkV}FdjpY5G8nsz)cM^_ND3BnU>Eyb1^*48xg1F%JYu8Zj~ z5W)=@2tT;vs?|Zbm;NAr>hZ;ADn8%tMep)=+5v=x^tF)`}+bAo&)g$z|{!Y63<8uZI{uHZ`20>(8qJ% zF9<>{>gx_Chuhv&+dpPja^S`!XM5=!e&!-M<0ahk#YyPl(bxmeYroxYBd1Q=sta<7 zi0p<043z$ZCHDR)bq+{G2ji<14^}EFT}qzY_DCD^0J`JeC%b1Exy@2~^4jz-r<+b~rvIBi2-<2#54 zugP@Y9;phi0RsG_w4?!xWL@e{$ehc!6dLf8vK=_jY&b$4tQY=1mBNN9HQ>iZe;mao zv%%XdSeMsYr>%G{c)<6)86Ub1X=xj)Jr0OTEo54kFVn0@Z4FrC1JdLH;RCB2BuoBu ze0+J&r~dSshKzgo1lSYvJu`Zb@M(Mi;D~fheehw{$JadUy9ynVH~m*OD;#sgW7S?+ zG|TEjb1F9)ND^F~x@gcStBpWv-2j~xheW(4Q2unx4;z!tI;Ad30La_&oZ{GOvGw_Z zmM3)!3xps96a-3~Tsz;;dul@60w9Sq0ht(Wu;`5CKTHTI25Y7RQh#A%xrTtK4lud} zSE+u)D%uy49UZ{3<2t%gFV7la)27cWfdFB_f~2<1Imj<`=~E!}h*$vCf$ErgoKi5K z4??f-T!1FT>R74+E6)U${V2T;w4)J-&JNcMKfQ-*2Gwe2@>5Veh-oNa#Rb8n7)3{+ z3f|}U)a^kcd6GAU0@9%LSv98m^9o_Z@q~FrdKnhCh2VD}5jrbSym+wS`R37mR%gC_ zS}=eTog8pZQU_bd>YNs20>}ymySS`i9{sz}t&Mt>gl!50Br*~HoNc{zA>XVpdj`lZ zuM#-qtJ`jERs@E8=^?5YvNgRmi2yZ~(PF}IZwwVZ+0`der0rAyb4noxIFE`Nkbdup zMPtNzUb!8UHeYl)f;8hh;OGReo_U|2ju`#`M&pXv7S}@DNAY!fe|Hw3)|1M8N=!3m*9opo^+Y1DK2FpJ+Zi_vgsB^^uvP?pNO?L0U z;5~1wF~6IcxxxPEkZ;zB`Cf?9Q>Z?9ZRQVy8Jhdd~(nubinJwcAjg+ zoA+`7TT5t-4q%i%I=3q5^8s;Uq+aqv*FKl|Y$9Dd>Alsqp3wE5Z$%$}3n*%oHP_4g ze#21!;&nH{)@`0;V=#Mu`pfb*42K(+APWEp13PbQJo(8_thCe!?Wb$4lzx2Kdj_(K zD+-rL5(543#99S4by{%G*_mx5)%qwN3^FaS`=#PGlB(n^5Fl#_Pi5Z`ZOH@yU>9Rj zZ{2N$p_V*F{NDOJqvzzm|F(fp0rMmZJSV+l1msrU^Jv|6l~tzlflpmRdhJ9}03o>3 zqF>FPWMj0BLJ$DSCWrXutfBB)f`s|K*ph#+4+1Ali@8j!9~F<$U0Y#VQW6B&l;@!-BnAGjDb1 z4hvAlbtw_{E(6q?{9xN4;r!Wmn~f&A+dD*ZntcJpj!^9CGJjGCnh_khR*EH1B~6R; zZ3V|$X=yF+cM={=iaIpr5~XK0073Q_Ke?8*DBjlH5L#AK)3P#1nCf`A1ha_<|ipj=3;3K-9hOU z<^PS8kn)o&22H)8hHWOYXCBI@QiI8#A>0KgoGOK%-#c(2x}n*(62-5w@?ZNoq-X04|Q zLiMgnRa4rQJ*_n*ohuO7+pE1BP1l&<|ri}w(ElmJO!#76QxMyAO#=ACVSVHL;R6BMM0msiwyad{=HVeK8uW!2;d0NmK)JJ7FQ+ivYYELG4u z07!G~MPUHVnOn3rL7x^ZZ(Y(Kg}JfB+AI$6W%75UdEhEupHY7YjbTS?|MecoQTa3C z;b0x>{5z{(_mzc^0{Stf8tSD26=}Nm-bPngDgwku$VC2i3uX=v?_S^Ys;@APkW)s& zla}~*Dvejpai_>G;| z`tqA$MgDZQl>hW1OIDavz&L=93oi;%Y5gB#*8$x{@pU6z2%&e7(4_aCgao8XFQOob zfOM21MY;r}_pWpV0YyN%h=4SuD7}fGf+z|CQdE>8-@CheciwD%`Jc~o)`Xn7GjCp> zH?yb`Tf@{q&(#iF30b4FUkV#Zh*)%cdQg4Irm*r#MZu-uFATGTH!Y zFPs>)x5u3EngM1WINzb`vU>5{Xz*s8$hfIH<^d4N;!S@rsM6JI*rULM06_1DFPtzb zd-?hVJqK5SX#A3Zz#$}KE%!}xmQjaBTOTbkjR$#+3x@CWzgU<01FLrD+5~#8E+Qt~ zg7dX?P0a|c=7yccq!m*I>>5*GYx`}{n(D4mFalDaQ4ww}xv>0hMl)*u{s#s0=7Ia# z7Qk%0>9_ojq(`-=Tlv={b!|T@?Hrc!NW+tA|HSYt)LSb;dSf41x;0vdES^ zyhaeD$@_E8w>s{*>v;g^r*IV#x5{5Sv{W0AtGP$TU1AgpaQ*6H&Y=QW+>gKhsoCsm zE&>j(hoC?m9x=d3)KG`t{-7zh5bt}t{RGeDFFOqE~kKHO%xttOxy zja!Rx(3rH3T~hnMge(OB^z*fnnAzw2YV+)3P3;k&wFH3nj^}@M8l#Y(qEgj_2871U z2+9?B5RH5T_RulKCpQ1tGwmTN;=QW0hdIm6+GHR;qi0^_*-QQna!_jHrA6z$E}(s? zkuX63h^z5$IePBTE?R%wyosZ*a^?!mTy|Yzcs3oj>`_=b!-Ab;{j?y7u4%dE%2CjJ z#Wb58lAv^>pAR?!NceTJS^T8Z=|D32Mj-lttpuR=S`F7lpI8;;Y_&bxW~SCq_izvz z>jwIzZW;3WZ!V;L(#~clN#R1{uOoG1dd?_a4eBs1 z&t<1~Z$HPq@|ysfBdm)tZR_uKZ2ci;`YCb{$VvZzify$zn8^Zw$>L+TZ2Wck4w`l~ zS;h1##eIQq7 z&^s;bm!#jsM0dF!gA1rTUPRz)L&tmnUfguSch#kGp8;WyT@=7>wt43c){h4I_-4JlA*vs;M)JX>K!}xz6b)* zIQ6S-qR5aBU!G*o5e?AzQ<)&`gLAE?+l@sOVQ7qo3%CB`G=v~y znq-SsCjebF=`W2iK~8Q*|4fcwMWv_6)a|-w*AWxIOdi}|COk#PjLOOhqO`n!s|I*-?EbW7X>?U$CA51li}<8pFM{ulIU?mjtz z8HH^iZ&k$gXp;A+#!5Ys%`qc!rLhraoxz@YAbR=@E z5RD7VgT`r7Z*dyKG2|a{N2kn&6yz6NY+$lnV0`q{PVIUODNIOOu1H;#6Mgvm9=mtS zp@N*~XeT3tl6HrqceU;tIXokd4NJ;FY23vt<^s}qJLFH7%ILL^kpqB~`1;PjIae@3 zbMG~MUX$mh|KJn=DI{z%E5Imk4Xols)jC;E=-^_Mksz0>Fds1K;%OZq?NQzoj$rEq zAf%w=+}vV=^m5F|1)~52KxE!|zD^Z+?N>dDkvafqd@SboD(D>(e=U26n^7_G=Q4$s z$=NqD>zHjOolG)CvKI8yfi3AbL#wy}JQAJ~pmz@|w90J*s4B=g(n^pg2(sWPe?OI7 zTb{cV!#tR%?CqA_=TNS;8|+kC7AKBVsFg#$|5(tq?+qf082LNaq^=<2<0z9=*E(ml z9G!4B(GG&(zB5zhw!mlrQiG!hfmN>_(It8}bO(V!&`UF-wGA2d;b=j?`T6_x+h#_6 z06=5xxsnk>qta`(o5r1`AsWLM4_KSWi6g0s97aYESLEeznwh7|Rds&{|;V zo+^#$d!aV;y>E}0s{uyO@KSSCj~w|CSNh2#CleY`H@WS42%EElwyBl^c_e#Xq7iNqaQhTLS`@6Gr zyQbf;v#XE*GC=p!sY^P(YFMt+x@ULg3%VD`tWEVH%>VLAgSLUQZej+`L;*nW)v|8% z4eFJu|7zYFVVxIN(p*wuBUbSA44t|f2@?ds zS2-v6^|Qe{Mrqy~0B#5%S^5>!DlX#gE?N?D1MlH;w=hM!+E%0>)gQ<%tMO=R;IBA3Lrv3}T{ zT(5H6^YY*pK+vzpA|U*%D38t{7`1Y**{N?tb?fDcb>Pj<4|y}Q@6n4gx4;_;>;g^s zBYw#eeb&GjpC&s98k?rOc6`Q`2m(Oc(w*-+X!9@t6o?p==Z_!nZ+y(D6u5AOt`z|K zVjMVQRjEkX`L-Hq0NK4aRd`Isu7#Wc)P8Rr2auo)0u0P18-}R%%n?8&jjd0bNkm?A7C&^G>+eZoKp2>8aJCNgPpg~c^sA` z+7(!Q%qJV4btc=TdLiutjQaDlML6EcC{^}gh?_aV6>K_%qPxa`2u+I7TmX*CgPmM_ z!svkf?vduFPo;L&)z=NXFL`n_4Gsc-{IHEyd6NO@Q4@exrO{!-_-TTIfCWEUMPCzz z0YKvdMI#)}wK>|c^3t+fwZu*1L0;pM=es&Pa0q)*Q@Yq*h8oKkjnVs%*4ccCFTHqC z`!LfxU-xa@Yq`IIoACNBn-uo`W`q%?Lu8 zrLRu5CrvIjRSOt>24~MCtEgf|cqCbWs7$oT^uXo$U?nD9R)#twKk@H*UPd9m#+}|i z+%egxh?F||8po`G0Bcb0*LsF_%o?Nt<=ZZ|S8x<0_q*vjHJcZ<-xQi_1c5BQiW|Mi zvI`TPF3J0fZG>|_2_TfpRJ{4FwsE(t2JZ2oGV(~gvBC@~A1l zAW7qnsQeno9nq}sR?<>8>)loIDkWrbZNj1$diQ~QMr)%oZgYW526Ol?(glGmmfDWL zl}gLO%!43GoPhV&F0(ns=)~p4h^pP4j|Ad<=2KS}*q$(@kO3(-m(28>kab)htP3&u z^ujq;?c;q03{O!wt6D|7Z{Q}@K@dFn;qUhQQY4k@#F=xJ#9*BW9a|fFREIi~1gsYl z9|;n@Bc_wxbGv`9^DE=D0YGDHjj?gRu*0Ecb3+=}l-A5kARA^rhg+r6A%+A)Xf0|4eSCf8Q4_l}kJeN|95Ht9!wS<};}LAZPozt?lS zbf7h<6+WENU!HgJxtqQu4PcV?L5Djw+d&Q{4^FM|B6TR0n!W6R=9+sljlf<4zUBoi zoxLVcH&1JcF%66c5JtxZgqX2|av>|T#;W-_DY_b@5>*f2* zsZ7KB49Zm9<`|U|93x540J8Y`rzY6|DklISr}5D1P8}v=T>GlYC)LzDHfE8~MrM!3 zch~K3l2MRye_$^y2cyZ|q%nKf=No!YO{OPn@=E~Fd;2t-{p@w+xQ{d|O^~W5c7iPh zj-V&|+QUd~D<%vwGOy2d*15pC@s8z{2S3VUbA}SePq3AR0Z5p&ioR8@X|*uQM-a)H z^<5Ufyfq|8v-~X(+!&PPupHK*a%oAvKYwRo2i<`0v)gI&E}c zanRsnmOGM515D-t0DV{XRHOXLLF{iSHM>pT3_u@wC?ioFM@ArP z`h%oe-`u+jIQf^vXl@9{u!y5oB0RQx66cgtBgS{vEO$4JLxI5z99Ji>(HA{+70U)@ z5zZjrA-OuAj#@iGv)%Y-%yE=F^aWp6OY5(7ZbpA=n}8OV81^H3Gp=9Ihp3Rq~qNP@$UN>s-}T?f}M|ddo9cp0V=aeP4{K=a_%MZ2ie&6Qo0R5Cs37s<_r3 zvo;EXU7!(3)r*09tO4L$Nw&)%b1V4M=dx)JW?Kh96a~Iu!YFcL*>0V+*fvO^cWUT< zss%68h2`0=6MB12@5?BI4($XrLC_vxL;}4K$=iuA?nRk)3lRyUlPFnw4lvd z2rz=CU#4One_!ii+qd*wOdo8N6Zzps5=FkE&jj_3c#=SGX<8K$7U1MGFVo3Q?vO{uZ&(pbm=a76&7u~zz z`>#?)BtTTbKh3kZLSH>uqd&JLFzIb|=nq}c#yXj_b1?d2Ums(F?lZgQhZYt9m~{E` z-F*&?{I#}L1>>(SNMp=_g$Vi8Cn?WI>q9FXK^R2??q~Zq^u)0;!-irPQ9KtEA9rWR zWXH>2EgYvSfhM;BsHLR(e47~DqIz6BFi9s2Mu-Gq6htcmZf1(oPQa)L0BGEJ$Yx(# zpG$9*Yz())5(@&iv{R!1XUsZmPoCCBP>@@nMjy2Wr~%O)S@OeoF_+uS)kUBj=+1b@#t?S9N>(lYN+jL{2ttkZ+iv9#!-RJ`n@}?#Cfu-%;yxdxk6kSVO?1SyCT*d30#D0>F9T@(kKU zsW0NR0-AgT0FYC?^>p7cuZ#Li_in5%LQ3f9of<2@`abHf*+1!(t+5G$$R(1LZ_U-v zP7NQwq7k7Q$!}P-NS(+D3jMV#ETahcp_O$`z!(t#AO|0eLu2gmd|&Ro=8!SbhEj$I z#nN9&20oucDUXw$jcS`cs#`fL+kS~_k`a<;Ac^cK&u+0x6h{hra)I^nIQ5agbLdZv zm^DeL4qSE{@RR0U>>2>FvSK8^`e*E3+_OxpkSUA+1a7XBpVj3jI-m@}QR?8#MIY(8xmWjqDd+%z!k(s} zPDRl0m{~f(G;<>ebDP}hm;-=neO4^QJ$V?VoIGf}eo;0*LD={~J*_3i`07LijnB-Z z*Re>=2tyJ(hG{`E6`yr=C?>Qf+X#KMz%m{wkLS7;a@# zlkb+boIm-KtE|&W2Jnf{&k5tTcyg;r%T#toK~o2ysL&4^qEZ@fY6SY=YzA#VW>pue z129Ch``~PS6=5ClI{yS2WU%AEfUf?Z%(97i48V~8$Kn}k&Z0Yc~`D0iw@yY0InC3 zvDEJ*fn=8oS6V6hg{{ycGOi9CKpkm^a^0@K(yjBom6(_vD}X@a%9drStjTn_Dpu=F z-)y3d)*O@_F5Oev-Fca`;q9+q)1J$$wkivVrlmh~HYRqh?TFAb*be{$J0{L7Aak$k zdIS?$00220MRRMw&Y>D)CSG3<0BxH*D!O;(3QkHLH~mw`-mH{bMBG!8Z|Do5bCQ@o(5ENM{i}sBs)g}l4?16EVlFi3ytv1I$ z0gye;ut@nI*{bYJ>+gAY%@Pmc{GQjNV~1kXEHxZa-Bhe=e<#GG;E% zNK5uUGopvD2^C_G+N`FM0)XDr4>gsd89%+FNih@uTUsKlW|xuxore6=*MQe*Sx3E% zg4PiCM6v|nhoAlFV)RHRye5|{3`Kg72G;T|*e|22*a}J?&_kMW1YJ2gRpMKF;^Mv> zSpWdJ1UECaAb%^LUHj~ckrd<+vERftQc};zq?bb`HigU3FzZ9o3+F{$`|@}v9ng$G z2?79LR3jiR{vVx+nqmq7X#892F21_F_N{e6j=o}*II+kq6>L9bqm!adY89{ykYlFSpcv?^otVnId%sDiJ3^y?nM)_;yNfsGz*?vFPS^tKq^&gu+X)IqW(dT21tg zBY;C3VSRz`L+cwr;86O~ZG5Yoyzd9iPGj@a#Jz^H$OLbklBF#rNhd&`NNc|BX6WS( zZiy)6kt9F->eBb^Ue+WTmIA;Lkk4?rbLdQNT{|%e0|4uVWjNLXG6~imrrqoFLoW^i zz9$g?9Fzb2xWC|=c{+nPehh&A`9qIVHi@++GI=II)LdM{Mf+&nqk_XVWgli43J}Oj zo8);%knm+QW*^jCGlIl90!}<*zGQw)ZszfG+W8qaqZR~iapJ811YV~%^(+9;c*yM! zoOka*PUDvOY|UlJ+ay|xg)TG~Z)8KG-H}XcHKyYponxBV9|Q-1!%tP$!ZfncK!C8? zXA~>6{X})`yKE5LDYXF3f+Ho{wL+6;6cZx>gi*FtUgnoOF8uR? zHfO^v05}3-CP#QO{#)BR(PMvk0Qg+QubCi!@~dNmB3kPl#;kM!EGNJ>h412}{Aw-C znrHq`#s8xd6OrZ^X~ z<&+CN9zR@Un*`N{Ip)8OZ&X8$iN+bD=h}_IrT+2^6CER)<)1#c#%HvyOf%+;%Y+Hg zSAgFf@mMr&0380KaeY!ZObgL)2mmx*v#hmmEB$i@ zc8BRSu=U5}XQ{;iv)j5XETay4X5|O4VZcmZG4EWlE(tU4l^czZI~MXuJ9aTzTclBY z>{YRMeR}(?J#}sNQrZAu;yoTEuNu|9T;fZ3@!O8X(fIDYMh+<_c5kYBAMSo7A6|KguI-oHpIp%Q@$3RNPwXag9$tPOT%0^;nG=3zh zUUg6Jv&+BncN{;W%TIsyg7%??r5Xs3eh2!OBR^`_VpzILq)2Haba5AQV*ZMubxD6T zyTZB&PM(O#m)K}sIB%41r;I=b2vL4;Y&T=Jj&%l*N+P2H7`4c9dQY}QICYxloCb=KvA2r`t^;69u11O;YBPR5Z{xDy1=Lr4wUe?&EtWP7xKKP+Px=X}k!& zCr7fh7g==pr_f~CU#&A_{qy?kwocLCqK*Y}aDo2VDnp%$%($PddvlE7GD|}=?p(H} ze>w6mMH<+)%?VGFhObF$SRFv}pC5upJ}Jxl0Ru^p>Jn<=XnVRvW8@G}*|J5I2J3?+?Tk{7!L4vI5_xuW!1fNiuqb zHR};?orfh`r$U-b49o!lETqz@k#y2kYnOG6jJr}HaIHvjoPa4ny~`Up zy}OpY5g->IFFfiRjr9kQrLL?ci z?_i}rwp(WnaGe6>eu68e7HudhayElx{LUj-XhnGF6kG#0X6$%^#rkL{3-c*Ju2Z2G* z{;aL_3dRkb0Fmvujh|6!@qpWQEJSZ;{EhtFCeLT`5D114IK5eFTWz2T0HT8npQf$) z#=;M)ATeI{YqVy)d(~(kadI7{A=XIv8ZnZZ!6HD`Mj<=aMmwDDoCygEOMi!6z7~3t)bVbq#yL8E>ATgHbN%$HUCpD~wwBPCQ`DOzKAlC0CapJF_iQG)L>lK3Ho0^gK~=u-v-VzoK9(bj!i8sC?v8X#c&F1g-g&-?@!yW?6VCl3F!<)l^vV5D`&z;3DN*S zAr^@?mUp;BVp)bA0DZ8EWz3hh0-Tjp06u$9@uevVJ8+ zJi?<#_noA6cTYEmPy#b5QON6k@BFepcV;C|VXHEo6BiUXW55N)hZ#3(y4}R@lGp3< z1@|19lYZSYs^plr^c!C81P6%OwUKCt2{xZrFsgg>VnS%J+qjGui~(AkJSxrKEu6%3~1mc`3LCMq?DhY$95So3?Cpy zL5srCe2&tl)DErZ?nwm=()oZMZPlKFIxTk9I0*De^yhS}do|ndSab61w$xME9P*%S zX|wO1QEz2oxG7CWMJ{Bjp~XpDyGCoOYmPr4*B>g8Oq`kp5D2;CmB#oN*n zkp&uXR?bDEJP)w^=bz__On+A2cIRfcp};}l{6PowxqR2J27y6P{nGCxTy$$t5DP5=gy3Wv<HC)`3pf zk)iRI@;oh`Pqf+r$q&Eq7hbrIPGa5SKS0Tp8tcp3I`$7-4Il}aGuf)54qzt?XN!zB zFOZpWuWQcC5xUUq9%00Yp*p}EVcP`X{B5SLv${?p6gUVRv0{T=13<_N0)wEVm8@^Q z8%-doLBN~!)@pefKm)~1%!k=psp%zjBsTMb>VuQ%1;}U&Agezs8$Hl+bKMW-Q$WN( zK|_^T^gO&~azZl(0JoN49!R&pJ#yA57j?SOUXx{%lm^Drm597=occhgAEq(NsqDE# zq4kbNzjEeZhl~Vi9!RMvgcCrmt~@@YCdHV5+K-RretiF$)T}B- z9}5-eG%K(}F7YG`BLD!GxlD$dD*INZ@Eq?Kp3g> z2rt6E5R2!WG`mwge@K((9@YU+oQLy;4H1)XFLY*$_qp!@f^@kH&0XXYgg?G|bZb=q z1r4H5XgIU)t`5(x2SH=hj?uW{*EjtSer()!UuO%hZlN)YfT_AfJBRS_A+@BRP0;di zlSee(Et1C>iEi?OznQ@U5}j!Svd|T+axy=E%dwkOk(j zw?bX*S&S^;8PPa<%R+c0^ru57yaw5rdF(JlSK}Zom1A-aoo+s8822@ z_IVv$3o#sGA`k6kB7dk?cDrY)G=5%||An&S!8cmye93r?q5}F$;x<5s#gJTX#mDW> zSKUb?${)^dSLryK1_A_$6LhIqE>yxJ-S6z8GldxAMJE7s;6J|g4IP@z z2ul6bgX-|+XW{Rg9nNJGIXs*1L}nmeuAhs+4fU03dJ?;M1L+gy3% zbK97xgj|hf*|E_%2#J`t_wNW@3o%NlqL6b=X#mt zLwONSP1g5#qo&N%A;5iCu-b$u(@>OM`0QHEwu5A{y_u;dPt;{wZKv zA9{mK3VDs&OI?itQ`j5J4-mZAH^NR=sR2mvA&>0R2|7bqU~Oc}ht2JIki7%}po=Lp zc6Cfx9|3u+ytKadgLBjmj&0+#rS@DnaV`$w*tj@sz3x4`u_R~C#6iOC(#xwNNlDRR zYURv5vT1g@NeWI?FkwWJ!ovj*!>ud4TtT5RJxAl;FF08NDs=_kt)+W*)c}p*%$Row zHF4>l{=)IxZy%BmN!=@1T{HxVuKR^{u#g~*f~7ulkIEPK*g-`)_W_t}`1y%3Ox!pMd!wMyCA}P2+d7rqD@Z_NMp3-^ z!@Aj@CHL#Z#GPDE)iWAXe?pco&=@^q6pz>b&4BYdU$KoGjR+v0Ny-lmpR(x|RdI9% zAk+u&GqKAaJ}ddGRt5L+c_HUS;toKB7|sYi9|Wdzcvg1vOW8;UN}d50?t z0x+jVrEM9lT zTjg$dhZa5K1KDb#zVUBZxL8ZtU5)`z-itEj2Sxa#^sIHtCI!QzaV2RyL<+d$gs&V$ zC%VJGudlNKchwHyBY8FyaKGK{N#2joSNdxJx#b-0jf(XvL(__{)7EA<_1NpZTZX(2r(p2q@_ea1w_9AtgwG47(EHn- z@U+q;|8=jX-_7nd$eXY)yki?P>p2*bdWrS9jZL~UwMY%^<_$^Pgq++mY1jlnR$lRZ zC!LWQE)fI(J_bTN_^<9C+O~}h06=4eST-*9R6os9_Z&4QJU_o|hsv{A>|vq&94Q8Z zzX#_Ox8+uPbqv%EFo|^#1P{BqDx(EPgHYfgFxywv^x;#(NlkVT^j5ZddYjR3lAs`< z(9wB1uQi+m0F80q3_02AL4MmZAxzArs1j_=gVDbF*UtNtRvkkQ0A%&)33>bx&b_`{ zdqhJH03fGdk_pcFWVoSQEyvk{B{@Bl>DrU|2y5?S*7OvCm*_Xzn5r^B@R-cgEjw1PB)2ShmZSxNz1H8~{gUlv45& zAoyXvX*OcZLG1(VQ2+wqcI@ZAnw0HaC-G69i7=j0ry5Vrl+Yl1l+WaN0Y;Jkd{6(N zeMudJj51;_*jWSsuM|<;tF`E4E2Ex#S6PmRn*4iPTI*t>O%^~H1*exdN`W%pYHrzr zJSgQR3i4XvR~UO@Fkm!(Pncr*o_95j1>Ekv8W z<-B>6&sN2sN8L3^?NRhRYI^{^Cz;}#URtm0c?|RB0d?QA?0{1~p3}kF#B^5zG%9_e zs?JqTEV!UYvFB036QE4oPyJeSUTmw0p2x@DZla!ex+Wn$`A)Ka6LCZ0xWk0->|M+zpjO7k5ogN-jK;r z?RBAXT+3~GB->U9#ArB6#d)nMa$URCgrlX&WJVKg9KGeoMe=K}Z_f*(VWi2^r#mB| zEEqO$h8^xiTYPVc#s|Ml;xzuLUFxU;jhE{}w$ZcC#YqhEdQX*Yn{QxWq?~EbgS`WQ z-toyCPWo`8mu+EEU7AZEW#XyR!q`66>k=j{{6%_)7GMOOrq>vpQ!Av2R$OM6-uIRt zs`u1uXmf_-yeQLrOMnL1Lxu17f3D=Xc zYJQs>va+SuIQQmveO4w|8j%#d{~YTrU}S(ez60HUK}$`$TTlTD0ia|7Anp6ARMG%L zJKwPG|ENO@ddIHM!?5{!4QP7rsCq~7iu?E-2UgXpU?d9wRRIQrWhvD7bfduGBsyjQ zaEOl}9ge3q-KYbMTUEuR0h%vAA9=1*JGJjhhwI{~u>pc0xJvzc`mz}M^%Fgcv1I^o z0vWPlZ3O<7g_LwBztLO4W^G6yV>xt+iOjZUoAqe!1_I{<(h3dF?C8|nY5G=v>K*Go zFC)a)IPpu*_zF1li+}B?gx=6|S5GD#1%x|U@ON#dd#l9TNhM{Yfk9BEz2j|D4T8Wq zfbEn^b7!&pkx*2pMPHdU*O_TS|I@F{pye$ zjt7CsW{X{_dpGRu={43bg3cK{-fm3V@#gq`&s}0ujc<>Cdgf;>X}1&wdGJ+pTn__t z1u1{5elGO7qn9irOwtnOCoQQzy{A35;Y@F#9T$dRvM{EXi+|$e=@q~F+!h!))6bhM z?3>TITQ{JJSztq_bH{ zl5&dsM&r+(I`4<7>^K2moDAxjA{FR)2exilPn3eddwb$Dg*!;M;=_`>s!^5wY0p<9EwTfE*?41h#9r=Iy-dR z2Nl=78zb8zf}%!fS2}EA8a;vml#&rlz1n>8bKL35I!v342LRCDI=rSIslEv>ZEH0r zJJjQhdPFeD%BBZ> zE+);ge{7!Lbh*=gqZfcfVh<-hw&KEd3T@os8QOOlQw9K&Zn`H$^oc_=oeO=3K6OhM zB+XJtc2q4>)^ez{$ojT~F=c=lmT_|)!*Zi?){@SYaViP`j;_8ul(@d3aq}=MsWb^a zftb&Xtxf$fou~d?ts-Xf0HAS+x~m+G#U5tYI%#xbW*RT_Bz}JJvZ`e3tH*w}d#3TE zl*Xi8bLnK2mv!$(`2YYZJ<@FTU24H2nRR1BO7g63d@?6d;wx-hm;(gRK z0ub$XMnFDA`m>Z>uVaTXPl7;_{O9MmI}ct6?JWR!txXf+4mm^kax z@*taTDN)xQ&8!9nr})x#)@T4V4}ychkzXCxuaOu}sDVMyr56|2PMX3b2moF1UeKbU z_Ek3bs*3ml&}-Nlk^k9Ns7JuZkpajusdQ}fv%O=G!xt<%&B-8Sd178QWXJ5L+c(ZMZotL;Qp4A7il8T|VRo!6Vp0zh8}yF7>(iO7cBIfNXXCg5pyP(Ja(D04`90b#8QY;|x4!qjLk>!wE8g8^ zlS9XS&dVE@6#B(Cw4Wx;vvV)fenOn@j>v?H8M)$t=8UmS0Kgetiu$aPbrZ8ulfOig z7zu#A-QM%bS$?NgXmS9cD;12t!udB%7Y#6lZ2-Xg1+t@uQM4<1eMCdOmNNV&2mpN& zyZZy{k~zbF0MNKpgE7t=pt+ShUkU9Q|CYvMr7-})B|k!y%(C6K4GIhZG`@YUknim7 zJs;wu39y0Q@)XR;$r``)^6H;#zs24GK<}~JyE(KYNj_D#oK`d=utH)eSkeI?tn}UJ zt0_zBMBk_b0BF2E-7w!H#y*^7bB3g(@vJI#X`HVL|9)>BSuv!Xk;b$td;txsek|Yq z`?!zp-3SQ)kb-Z-(f!x{zMyVwddGcUR5X|%WA^w)Puq${Ljj<;xDt;ue!OVaBi@#( z29SOnq;%=OQgK@3SDGZFl^6jM#t6qdf9cQR+_Qf=0mgEXWGO%Z6dRt!mu}~6kARc2XKM>H872TI8#BVdVG)$-`#8;7dlY~; zaRN>+E~2?*15(RGTtIx>&t0-R3-&T?+?`QRm)s*!lm|~}H7k?UnFo@^F7YRH3^N&j zF0c1<&vf^b#loMA)Lb&F$CPru7OLGq9wR_=NNIn!kviI#qMQbDE-aO`>ef-acax9j z71C&V7eBk}pWoi_ZzIhu6GQ;GETj>Hss+!!Jo9E+EfZ5)0|+GL&)_;U#N@Tv)9Mk7 zyMe1&E)M|sf^wfhWu3*~xA|u~wxMj>u$ca7cGK^iH3gE8gLk{>!!o9EEsq?0x){cU z0#MSr#Y2-*TX9H7%t}9%*XujOp|?HTh5&?-_B=R3X=w<3BBwAHdh(LX2(354rvmo<+~meIr4GKq^RgM>E>6aotw!IE?*sG^!9wYtV{& z4?fc_)(Ds&jIw?AZeL#GzIj^%jC%s0h^)>K1vrv6i$9WBAFp?>-sHUC{li5epZ1e7 zv%DL2C7E5|qT*si0?7=9z-GHYw=)Vf(4#exKj7c^yH3M@@A-?iDN{D!XaJPyQPE)t zPSj55zEhjK&5(v(Ix@{mdh{}H)-OkGf2~O*&~VZSdgop19S@t61mfe7=nx_xQ}(s| zNzcvX1(+Lw09F6voMUrHbIUc&Z!gUuU~&>50J4o4;xGh&n=O8}Qxz?*>$0vgj>fD_ zhUOg~+W&zx6eY+ARQ_pSXXjWK{@Th55J-Ekb|znWpGx+rJr_+{8a0Y=%^&5|)-VmS z?W&I_V2q^C=)Zlitvw&jHGlxXXUiy?F zR{x1LdnlNqgT)U#989|^6GU}7!;z*q#CM1zHNF3#54f5+I6SX1QGQvn0<;lBs zd>Q4Rc->wlY0~gPQfk7@iKQJG!Htc(VjWhqN8wjYr_C(qjDn~>w&;(VbM{;+30Vz< zEOL#>(!j&nGy`ncj9m0_I@) zSLPQ}KhkrswV{9{8QG*Y<{_Hx?`ZbDo2)o5^~8dS zJ|SI-$yx(!vg!)}6;V&}u{;5A`SUrNTeiEJBAU(J!CLMAj(#@X94BoXyvUu4N}+9F z3mJ{oHf;W}+E#y03T;O=D4Fa_5CoMWs6ceRj%&+mL$bI>LaBbgoCc>fNEKlXiWb5Q$kfI!;at}i&Fz?ppXtaa4XmQ$?c zvBiy?{PlL$Ji`-b0zmW$x*Gcaj%N~Q_a{PHU(bGIK;PNVo{~oU0^5E7!hBkGYT|RP zQRFT?ik;H%^DflzOUouXg&(-#IlnH^t4TXEA&~Rh*Z2+Je;?S{MKdEb(5OCg|6G3czvk&b#L0uUBgWs@4T%xkR{9P(Nnr%x2Qpj*FBMW43 z>L|-bly_L~1%dKn9(JZeFesT&`>^@mLDrOso5v+fJIoy_ecozq&rfsmh%CiPqK+Js z>b#!#NYzEqi-a`S5Y07n4=)VS%N|?M8O21X9k45E#~0H!XfE2h-mhNDW|rZ`S2RdI zAaN221c^{9%53tRgKcJLVFUD?aM75H+2UV)r=?yT+y1Y)fwQ#s-vD1~pY6?bnx`w{DrTHKSG{!5~N0X|`s_+TJ(J>GBVdcTLpFPe@c! zpYfkC%|%M-!V=0s)e=&S45_6W!Bp)l2b&AlevS(5J88{kL@kctTJ% zub83tCw|ygQ!~X@E0A|dNYm!R`&=9KkNV&90ub{Ox%oFGKRi)Qj~0SN4}{$Wu0%Iw z$)wfFj+7t~qtw}y!7&vSGS2lFthr~;sf`F21yK5XoM)!L51)4}@#P+Y7)_t_skd#M z4t#dH01yBLx25y5w8MQDXpOfsnGa-@Lo>k%ADT(4^362J=3HlG`Z^Tly=NVzu|ZXp ze+LsV5@Pbe^nchRX|o3i^VzWfH9s>ezHhk(*z@Trg+a~-huJuv|7pQT6lpS;?`?Zu z`qkD1?JLH4M*~5gerfi4Y%A^8ZTSEMK!JK0efgaK$okloIl6^aXjhR>N%@JRbDWp_ z)6Y2X?jNR$gXT43fCq>>1vd%QZaPni?=+cq^al_i8lqlW99!C618pG_h&i5apW5Lh zOyusmPFiLOLEIxio?Gd!KF&(+oqOwSlSi-2Y_L?qkuKvr%|a&mu?gDj?GSWIDX;eN z*GE0kAe+RJa%zBFT(KjCGcR1gaCUPkZTbm8be!NI9p}k54{f#58jq1M&px@%IU0}U z(kHDg6R{o4PlCqF=)4_Ke)TV`%Rh9Lj`}uv1Y$HCd&cJ|kx=HE^`dq#Ht4?SAAAQ7!7RaVrFW^(mK%D)=VHkt0J!ZE@1K-$+bG! zHU5s6ja#?!>ZTfdD6*9*7R-5PbC^qL_ zk|GCHh&wA_cl15$B3c{th5~6%d-u;_nmilyr_6?EkivH##B)E9#=k*P2yV54Y z!|^MZO^)W__y)O`=}j$L|JF!a2PY~;EzZl&-$&jKBwAX~1bTDwLG{jA--5MM1b_gT zw|cej=fYu0DZn1;s9Xsy$%$$0h+8CA~%tp&l6@F6t#aR|56g{rn6*Kz^~ z^TCTIbo>cSLTkfJ(Qvvj-095H_{|;P=rCiG1`y?><87O9*4=})wE_gvBJjQB+uL&xjD0UNT#GK_-V$bmZ&)W3j|Xxg@GX24MX}2Fx9s(Pn^V zGe8(c@6~iVJ6$WOtu`x!ti}ZslJ?F&>$S7D-4#F>MZefk=^W0!YDPm!E+ePW zH)y<&2vNYH@V7oZG@N;0L6}9b{q;0_SLN#xHm!1CyOlc8VCR&_y_JHj}70h z71rk5EfEmwD}wUV>EYFG=xocjT!1i&K3($u*sQkY>bdkQXvm^jY)+BWRviuC(%_Y< zxubXQn(Tb)_w0#uT5asy`aXZ4by4aJZQhu;{ zweR3JHvY{%i=#(4YF-`j?PbH$m+VPv0YZa&$phBH<1jziaV>E8I0$0ClPPU;zpA$A zi>EbdHn(UiINX9!a5TPtOt^kE!OnNWEvMnSC!DXN z?a}IDDu=Ti^68;Mbk{0 zsY?d7lLrtZP0#+&(FBatH+ELyq>Yot0Pwma0J5hjptad1En8;y>m>A^I;-k5`gNTk z*->Gj3_}pClX-T5+tyZJdH)4fWQhPlBOs>~VnzcDS_0h%xe9^NbNA(t7_mAE7T?vl*npB$dFQds*j_?U+Ph5Oh6% zpq{KP8K5BG_=k0D=b{;MOXkF{7eRLXh*Hmo)@>oSxr~uzWnagdA%5>bF*Uex`omWkUKK-3f@hSZduNh)g}XdC89ubzjIaBzg6C4HxAX4v!M zH|o!MBp&Zv+h3K9p7)XVhxTX$Vzh>@JoYo>kvU$`rjroFbpOd0o{z1tr=>CFRBUQT ze-S)v&>DLbt$zSgDlojqiXy@J$YM` z0b+iN$umD)Kj?oPK1e6-iX#C;U(mMHZ9N}*q(S0!XfybNF6Z>mYt5V-Rs0LzD7Br) zKe8l+fYpe;%Ub_oZmmA{76gD2O+x}R9bB(TwWB!8mo$}0Ia!L;QSBzD^503G&l&%R_80dp<|1IK!E-$ zRoL<4NJ{EwE~4jWyDoqL=ycD0MHPT%b*^gG+d;a!2>XUGBvgWx;muKrXE8Y4#El%B z`yeMGGct5Q5ZwUe)n$V9 zr8ir^Q$1&+@65~}8*U3&`|~7H5ui28V%WFlHDx2UUD>)^It-Xl9pLIU?(yh{$&Pbl$DCc|{N2u}(7XTv3N2Ynj6fpc#k&Qc)(PtHH`_f1Sw7NeIFQ96;C-<38Gx-@dT9i3VUha(9dbLHCje zf7d%g;c1@IvP(D`HDpDL_Z%0162tj>6?HOV>m^1*a)qnI8pzLio=cEl{f|**UA*l7|#05q((&>02wj8?^y>J1-z6qpY|m=788^{^;iFtDp8 zbahNz;85p(S51#%S53tAhde~L;WO(VYuiLdOBoN!3XAR{Jz!q)pKo999~_}q;chWBfa7NE78zB4j(Y?BR3u%qFUi;(3M*#?vg+6g$@QkGnRqWjjg)`|0KOVVgWElRxK>IVzzJW-_opKZ#HYV=AGIx% zYJw5KrK0j+6u4im<2UU7P*2)Oogn&x2}_syi~mnQn4#TNLeOPzBxo{6+P%zrcgQ#p zjs((BnFGK%p-_9amb^U*Mj#X9SAUJwctYR=24#X#FaoclfFnF!W{T#R(Jg$e7pHIa zPNW{C^$$<$Jpkj}0n{MWHEApP>QAz>73vp2?@RZTP0fSw&?^sA@^HxVEoevCMO(r2|lGnX$A1oAW>_Tdz5%I4jD0MPhS zvsmX-$BlO^uiP?nqpqQw#uL27TNv;09hm9{edvz?lD^XfVP zAVt?94mUcl={AP7OS1ey(ini(7u4__!|2)8hrvwm0HE=T73&>;g|Kjb&JS8^P45-N z#+AnU6~ZL_cWQEsT}+guoPcW+7WsNquCet!aC2h}03c^fu9gn%Ag9lfjM_&Ta^giu zj2pNQg{-VGc)o4hnx$Ca^4hN@~B-0XiBMaXl*a(1OkmXqFnQZ4Qy80B{8P8i^xeM4|)|)&QpKSnM&! zAJyLa>bub)j4;C^Nq+bS^RP`5?e)n?%bBxag2uT_Rt=FObb46>-FxQ3vgn7)pm)ju= z@jX#feplGYa?OsP_xNvwuDr4^v}XZ;RiuiqyLYf*;ve)Lr6ZJabO3;yF&WbM);YBE z9GgoNCR}Jip}%t;w^Xx5%G8tzH(=^kE|yPS=HY(-3&s}&2Z1k+sjAQ0ns}&zLC_lm z_G*hYp^YE_aG?^(`~IzDdTu6K0f5Hq)5%HRCvnyAYR5}OLwp()b2;EO&boTD!!@YM zgbpV{hqeylqGm~{leE(xf4jMnE@l~-0N^$@XA=(oI#=tH@%CH9BB>&{xsFNMFJElY z6E!&&0H{z>YxS1tpk4R1^Ds*bf@y#vn{V({t^QNbC?l=wr@W+Rjdpl~5 zLniw(thG5r>w`;*6(u7{NMo5>{dGT?O%g|V!{gHG3H|*Lw=v}iJ!!+G9fE43w3RZL zFe01Ir;H2$0R4?uF7fT6XO|SABknF~OxoetNc-LyBhuOn++xSY!J zYC|dci4oBOx8yGl9F{{FQ>92w9vz_Zkv9(bms)km*TrTp8;|oi1^>i}^Wq+KVhL`K zH}PjTe(6tq?oZaGhK5Ujd5bO3%%1D_3ViN^WK8kM$a2@c;~hrRymW8PA=C3gkBrK1 zHuAmq#q}HP#&q|1(f4`JugZLUQbrB5?piRt^UYwbJB=gP*zBWrHuuuIUeYxMLnx=7&i(Nu2O8XH;KfPn%{U&MW zm?HonMZXH&==QUA?`+(^pxYQHWh%|w@4VPReX&+71f20m$yDeqUmK6K&u9yajoB@OTWgXFzWmDEAd#ASk%N&4=jWj~9h2|@IwP-*(o4$A`X zCQuF>39MbU^|(Ku@@eC2)@p#{!;UQUwWr-CEY)){jte7{_5h`)c8t#V%}wVEzg4>K zwiQovtd-aTv$XJh$^6?i-kD*2q1d>0i~c?aHc2EvXk290NJr<8M7~?&pdFoPa2usH8t2$H%~#L_ zm#LEhCj>?M^=X&wpFFf#t^u@}4(ZA}`3Gb)KVplm2}~k0M!E?LxK%@RPRoY|H(}&6 zIu|rW{U8|g(w5pjs*=vBjQ(k$3kvhid+w=Cq4kd-01!M$-s7o{wOJVQGDW&ta7`sM zAdlhV^^${ix>~_Mk~U8O-QhCJMOK$q<5!`?;r?(h@bjMY(AT>pxZhqnbu{;&{KU&k^W|*KPm&tak!Tb6 z^iJMLrNI^blonvjqjRUv{KT{R4r}Y)=um#iILIZ~2j4&6yJTT#Q(ho6;z$fesFro3 zuSekn6R7|KfX1~h-}K3eK9kyJE4g&plR@@WqkMHv^ph<`BHf;K;`UwmCtAA3G_Oj} z*@X^}($xE@f%h_u(Vo(jdo&PWk%6Bk7Fp6Gv}tNk;c;L4T$=yZ`E`ol>V z6r*Qy_Se^&{NAUnIIg8@CLI;&MpcXebs+tz9u*C}>IcAU>>Ephufqt*4jFsAD)^5T z;(St;93Q9ssBu`$WD!|PfFy-0{L-tlhgOHh9^W_TTI~0ppa?|WUm}g6Y?LsJojJ$t zm4Vm(NIyUzCtLTOzM&_$h?$LtdoOlq50^f=kv&=T1_4D%S);i8#GU(!BtH!*m}i&H z(oDe@K-lk_GAyJ{Zqbgj&R(qrXS7uVU64udu76!lJ1?Ui1bL(Q!LU@bR(f70)Qel>wMJ1;Ih!ljC3OQ&uL{X4Y<9D8jMxi$j+yOVc!6ZMLCO7EdkuTv7a{eM#y`tb$1`WyYIPhP^4K{m z^4ZG+dKV3J=i!#v0J>fq)?{nOAK0|5T(Q~4iAb0=?>bEywZ&_-t5 zkp>1qg?8-L95bpy5CGFA^!E-ZcdRsf>tro`8xZQ?UF?)sG>dHja}pfyV@?v@?ured zet{&A6Ytggv10?Z^F!e_!cg5dnTe9vcr>){{=gbIKdBJfH)qt@RH@ z1uiC{1$tC~rkC38EazaQZ+`PYYqXIOK>!S$JKF)^Yp92c+|WvDf)W5|oay#t$3Nrv z%dF_V>O?n};Ad7VLZtL(<3I8;hTz&06JjM0$NGLIZsAiZ|p=7eMr>;lcD@aOj()`dw^ z5ZA!qXxTbjUf=j*fY7*ND)&RPQ1xdw=CK(;HoqKc)C6;(?QdAPShLyK{+kl++Dh-2 zg##psnNst1EA>2#^a% zYjoO4$rICc3S!dTAQ+=+;OlS4>Quyh^{u{_QC!@!*N-^ge7!1wW9k`su1IFtT%&$bdGE3tT9)lDUuT6x~d; zy?4kIH%zkex<)T+BQmrt4u1SFtdwj8>&I;@i26+Hv zHasj-zIG`)UZY27W_5Y+kxZO6CCA{ns7rm@x73q2t4{!V1zGs{iN0J0#WuI+LjMW? zMu4Y?6=CVME=S9FcB1VuG?^NVziTp+FIu7nYXVJmX-FVI<+D}s4{82gIz!@IBs0oK zEpW2Zu=N)!-#VH}ACR?2q5feMz4My4-E_?mrE}5{Y^Q_3>B3#ddph;e(#2~z?#Ig_ z+&9BGLUjScjOlarZ5zF>98X;LX!~jJ&UO}LsPV4&@O0u#7%t>tJ{Y0e_Iys6WK2ox zb9pus$_N0?51=HIANe6I&!|h<;h8kHx-X1rKA z!wau#1-421MjF4)fGcaT6RV;eAK3HWi`tS+77Om(mLarJip+e6({1(#I`G=&LLf-g z_uAf`yvm-FW&}2isFQ^&@AtiK{NpBx&kG=O4~~YR^70+)b4@n)xGj}tN_ju?7@Oof zZICwiLd7Y_sQ;70nlzgU{e?7|3ok_jC{yo`5@!NHRG|yg=leeJ-{Ji=dG>q&0;|W5 zE$GY#p{LZ)!Wv-5D%LP?-zKs^kQKJ(R}HZJ1yPrLDK2uWrY}0s9LANpX zh1hd~eJ$F?Md=mw0C+(Q+6?lR%`dIVGco}HjbAx6%lB0c z+9eBZC*?e&T3oxnZzq*kC$)8oiR*9D>-&+iTOh|BDOApbMpiQ0Nxh+AJ|K26A}s8r zbU=>51@Udpo4?<&7uB3RK^O&JZ6Kh_)M8p)j8{x5r120Ru2JJ5zF*$3xMc&Vkh$v3 z^rb(y`AXYwNj~7XQH%g`>K1t5$)aPW1S(IC9hb#jW@$W7o^tYlYvfqtnk}3(a?aa- z=`xpjyC4V-0yiJ%uhT2@c7X;4K`FnszC~wjhado^kLwjh@;-03Ni)KnW&i+9XA9{pK`juT9p)@5Vw2!YJ~eAH|Y9 z4x9@?1F&|aI6%f3rc}Brw6;&Yo{RC%8i>yH4eN1x17A0xi|U=oDTsR6HfaBBN=X2q zcV2J^jwO0_^&{~lRMK2~;+@ZF!~54dom{ina0`Hw(!0wo^TPa@!tdxw+W_W~cv+r_ z=NoaYbP{do#|Y>>vi(|rRXgzIPqmXU>cJ1#@&yS@_W3L!2HaTYz_n5^x@MCBlu3?Q(7pZB$$7^!Pu5Y)EC7onpvK;1kx>(_OAw%nwp zZd4xtM1oRAHvV0|UpKm{K{jas&G$g~Vm9smM274ZJm?fTTanK(fnz#rwo(ZK7-oHzhzti4F_ zDjV#HQ+U1P7Zzg#Ng=`5c9{ifCe6I=Sq{Lnk^C_uOvHTIgGn~_g@ zX^GysqJVrj!qxA~+ar*J1Ywl>k;%M#zhk9*i-v2KoA?NTVR^h?|C;b-B~6x@!y|Dm z=v{yBqv8jdb?-)#+k2~ti=W-~HTjuVNkTV%&1<~%FZW|(s6y@NQ%93wxN}O)u#jLgg0__C{7Vxd`$$-F%U)0>Jp2?mbTFRjv3xHM+mf7Tx@A2{rNx?ZC zlJaJ&t9r7AjR1g@(&06o-Z9yhhZpI_X0qd?acOC+1mz#J>OI3cLt&~N9fW?8ge$5@ zQiHqS>p7TeL2Ka-;s!xlrRT+W*9vDwNg|UNT+p2h0CYQrv!2qy#i#@Tm^ez+Y@Fbf zJ{rKeC6j$sWCyr;nQ;%JaLaB(zxTACGP_noWg=WC1HgrHk5BLD5N7NE08ShmYUI|b z5}kFXU<3#N$V|0wyrWA{k1UUK>&8Zam89iSnFE(bg7Z1mwN-sxf-|gLpma)q-aewi zR$GA5&guDCS$xr3=*8EA_9gYCjVu7b9I#nNS@a!f6^czoaFduPMtTR2yea~@yy`Il zEKV6$!$~VPbnT%_Bxao$ssoI!!O2pl41Mq-2o3@lj=iGuU!w_IgzP~wh6@Ob<4) z>?5vF|Km%+OF#`|epn50ua?(VAsLuKe!#OSx%H}nC>a1W#yK$Vee(I(+JvO{DpW~u zl)2QYn)7ZTLet$wX*EFH008v9dQ{fZ7s9@DPMwsi^HevMWfHsq4HIHVqhC$ZJQvTp zU`E^kAO=jS9n0}dXN9odI2|oT9{>!Xu5VZ)NqUYqsfn(x<%|x$pM9p_KPEjKJz!n6 zCz2{pT(h%*4;JmMHP&XPY$pPMQoI#Cdg{k-xaPPt+_qp&L;ym>n-dQ)UfQKnZY^So zG;^upSTzE^-~`ejvD;5N+Oq@>91OxJy2{QRXQZCFiA@23#>2-pb4bDo#tmz%tB|B| z4bMdMlKYa_@3k{YUrWUVn-Bmj9)jd z-AeZ^roGXNj#=(};E)0lF3MdoxZHmySxzOw3wn~FALgXrnA{;3X)C5eeseN<0|lf1$x=2+Qv*2|h#6Ky-#c z&1Rlyb#6Pqvn??QfLyC;8YQkP>APKkQimZA#SQ01{k}@R$eO_|7NY=!QLfcbWrR>I z#Ja&$`~rXqL?e%)%hx#*8b&<|Ko~{e^7%yv>zla}6fg?cDFC2Of!Wmk*}9HHk_`YH zZ*f^OZ|OW3*~|`ZTD+SQxg_BX1?ywL#Nko%fX}JA3Y0iiv-3~3Z}XH0Bq6tVrJq!O z8N<{*6YtM7I#$Ux2*63nO0Rl_fu8p5{$sVaW?O0ify5b!?i!x{ov=ZtXj_?B0wo7^ zK>EmC#(GJj76d>Tg`*-SUjOs)iXAzP9zjMhO7NFWgPZ@vF()^IBRqNhp^)bnlg2GHHGQ0${~=Xh}2Z+Dl>pg8&%v z-!YSL5C7cA=1q&d9|aBm^d`1L+2Lw;7!$Q(0m3N%{=L$SQoDrj10vMM*c}?@En3cL zjFrvykyEr)ONG~pP-CbuUJFE}=P_TtT(+D}UA(mS480X9Gj9#_gYxgMp~Wmd#2`N) zXZ|?aOJ$U$MAl?_*nf1TacqAv4U#o_fRJc8)RG05c(9~On&4t)5J>wpwcKIy!z16V z%WT;I@NG6T67?{OY?URWouo8?`KUT2(up{jr$p2~sdXdL!U&w1yZ+h3T&}*S^8)Q` zwzP5)1Du@^Z8$qec6qErtt~A8INCtO4C>t3diT~QjYo-$yTjZESNrTVJ3d34aAWX- zb1e8B`wpH3l;e||n=-7^da-$8AV8>_8FcWG?+}R=HJ_SUu_TLgJ`^=gx;bs_Sk0aZ z@@`P?%#)Vf`{9;x$}A5c@B^}n&X4X`0Je30jd#@64|^s6XdL^yN{(mZCD$#H!|2W|5v>#-#%bifPCf)Su)?jWk$p59fcucsuk zn!`YJRJrdB^KxGJzw>pV5a)_XG;^RJj42rMq+V(}7xOZfwiGzYBC>E!iR_$JM@X5m z0swMmbWQ9SB2xH`pG#`1mBtaC5pq=lN9r3pBDmFJTL)yJ_nKM1HNBVo>WH>lNk9Pn zMvZY^UznCEss8InI{S)P0YqJik#H=4Ys%Ms&gqdvtN@r1`af{uFL;^1W_EC~0>B1| z8jPdj`o)Tc!| z#f_;YB#Hw7y=(sncaGtdc9N%D`jZhxscw^Xbg_A2pr5Cs{eBBxjq_*#40$=; zm{6^WC$xduLim^(1E7~6o_!j}252F`$y8}*CU4D>Sm$rV4L}xqCT6YdnThHZ)!XZm z;{o`TOsJjrg0427WoPEu%xlsB`kMaWN=$6-L5}X)U~K^a1OUGXgI$n~nh zPggq_HE#d`fRmZ*fWOQO)dA5KMght-0HEq)z@~o}YwNZF><&;YX0ixbpRWwj-=?rF zp@lGRMi@0ScGM$q$X%bPhxaB>WQqS$eQTQzr*()J->3bMe&TXgkjE2Lm=RC5C$Ar- z7jjCNtHXnJ;EG(px!#Y^i=ncc4lvi5kRTVPhyIwNW4JAlO9a9QdRkxXpY%}+1n;o` zkZXHtqts*beD`l~EdY|1v6zhKga79j;!i-S=;C{`6ZJe;~-1J}+y^>Y` z-!@V60T2NH{4&yns%EoZ+u>I$7WpWicU)o)X;yDRGMxx>Qwuupb!NyQE$W73FH6AN2Ww z7*X@ay5Ubap`@HPKBpadNMKH2#3<OCc%;;jB)9sd!7fcpT|?H zj$YBKEqYAT)p`;nOat&(jiQgHj_RCW*U&Qi1Bl65`(+NZfS9R9bZs&+T>$`054d03 znLS~uSoD`|wv#c_Sj*(z31gVv-_R<&C9?SHXR{yEVCY6Wa#F{R4vxmPH#YTYl*}WJ zYB!eCC;)+npAxt6c!(^qAx%O%cQOwUDc1quf$M-KPv>cX@St@twBR0x2S_Q`j#jov z^$46U7R;aTtXp6PJK|U-EmqM1MgaY9wz!vkB6}4ooLcuT=`IP0ihIYE)?ELe8o%DA zA3Y+t0l-HLSb5r(GNc`-D|Ok$1rVKF?>E`;2kcF@tg}M%AY|!xh`4v~5fDjON?U23 z%sKJw+Po&hSC|)1Ygr;803e6Xe3?KUpk=nB0a;y3y`J6$>8$(nnCZb60vUu+G~mXb z&ooJ58oyFA7O4h|-t?iZ3l1?;yeaOk#Je0G5RanVl>L?x1xR`LsIO@paKMLqJ{r$$ zJmy+O#|L0=g-2e{WQZu^cqQ%P`zegmzfW(yr7W5SgMH`$DStnDWOBskogeD@N|sCj z$m0R%hlvtZYnHbGtSkWVF}^Q zm^w#<$*i+jWZsW(zIvaZ`x3hon#_hevS-;C^%sO+gBf%|otS6oEwPTqGaiY~| zyJwb8HR6z&#D+eX*>tInmW~A8ES?{nZCJg`f-in6i%D0q(@BEcPh;wu1MllN8J!(w zc-iDPxq|l&07O{5;l0uY?{sj^bmdx>)9#&ZXK<+7c>CJCW?LZOFgG`z<%N-uC$o$Q z11`v9scg(5QmMA5xv~2IsW4!_vK6e-uo!3UOrYg1VGw|oL>rjZW#`&v))y${HUR)| zun5Zfn}A${>livDa)q87$!dll?2T$ny3xN~wMomKf(H6Qiw|3$8UatGyAqN4h z+3RfD0HuN~L&G2t^9b~-k<#Pg>2yvLhRHh}hEYB8{GsGOU3BD@5r$Cf_C5tNs8P4u zx~`Cf!XVZG17;^)7QB)NAV0MR0Q1w;Sz|g2_fMCs)K#$fH2`Rw@S0p1Q@{8FZN0(+ zBm{jZDVaKT#Fsm@yGotSAdGTkO=!fGYGWL2*GcQXMHrXR7oiCeV@2mf#O&IaIK0Ln^CKxsJc0IlqSmt4Dv>xwGi{^r;g*=>uS;lFyoV! zw09Ukllt3mU#_+R90mE34DirsVO%|dm1Q*W5Y<=Ve||e$Gj5BQr~f+0ZAh9>^C32c zQFxIXP^IMIWfITjidk*jhUggC`kJ9fx{;AYMs zjG_T8Yg=C;5gq_oNe=+}&CQ%`eW!Pr2VVb-KE%z@xZ&j4^IY0ABu9_%d?Le;Xim<+ z6ei$Z818wgM+T0RFr%Fhrm%bFAU275W*g%BwP6ymMqbe#CpH8Chx|Q<4w(`1-94|( zLHrp2NabA5`%ctDo?iKQhVEUCSBFw#)Oq*m`H&u5w!-A;1d}=8K)nSZ>oe#8qb-lM z)l@TEK74AAMr|A(Hc{7w=y%={#|V6=zWwZP>`cVso#~B$U^XjhYA13e{d22MDiSq* zCc|Toqk+ucdB>P5Y-!Of(jjR)0T2Xc&>s+PVCo*|!&1+kbCg8;xCstm|hK7%bBHdX-G z_U@N1&kvVt1+_voh;VN+nv7&kI_#sz>Q zq`n1o|I^yKYLFxf0E~2U7O^v4nHag|GwlW0}N<#VC|-}+$fuArWSDXYia^SXC2?Ri8q zz_mU4;f2X_Cv#>5!&;Zo3x=|d2~aM2XxSs=4KW4A@c>*ke2a4sYIv#P_9hRL2r!d) zvg~9tY5%PDKQ@UP!1He!p&TEk@0hJaaErwV7wBP<_{xn}BYS9mM0o(9@&1J+O~l`Q zZ@DH%vekdy+DFzDD~)*vygW{7aD4eHiRdQ%9xMiT&Ynn{xRe-&$kRCxgsypIMp^MD zt2S|=9{|w*bj>J-engEszeZ~5h{v_3*vs;dRk(t;t=};$)yWB(Veth3_%bNGHpN$h z?i*{}WoZLa6FDF$cDIY>0LSf$H*ES@!y8Ck!@TMAn0!|vN@sL$&dXB#zFkFAzH}r5 z0D>4V9xkJyFdAHy16qQ&(X;_d8t{Vwgk3Q(ZneaAP+(LZU6up$Lbi%#Ndnr;|4FwcaYC;9>i>c6=qfe7fh*^)g)>L>j30J7!3X+@%z*k7!42${9r$D>AFMujxJeR&_F+E z)PFzfN=X(nGA4E}H@#umo=nlV)@Z9MB{_->Ae{0}W>*#9jjQzXg@@bk$g%q~2;{vl z`_iPug5k5YPe}*{0F5bsns`ksfI2fv^h)zz_EycDAh33Y{_4@D$x&`a0Fwh(ai zvIWHhnLNnx#h)9d()@^RVI+{&z^gcP5Lw-LyB!lq!j9iCDBOz;^k)-63w;qo^Ca<& zL6F?nv%hvq6hzP?6K3mqrc_Y?U_@3bwwbsR?^UOdCQUpOpgi=j3DJ8r#`JTy&7n!N zbp+5EPY6%CUM$UTR#d&2UKbQLKLCNBk5{^{y2DV@7wB&L4ChynhAI3=LUbknVT*u* z*&^P)7^d^99P$8|6&oY#DDO;4$FS77KGLDsCXY{r5Vky@3i%{mPEDT70x`lFdLk); zfV5znE#Eb1tWSN(qEu_nHm zhJ34>?^V@}&i#;k<5?FP*>1r=kOz-t(5A6N?J7(20}ud(^F)?rz}Ny-*s{%s%Vm8D z;DhDUwU}+Pex%-~d!y(BITzOq(LQ8HQ-DBLm3GffG%a+asIC`msSTmVn7Xj@>37o7 zK0B%FH`~P-h|v}lJ?@N#s(#`pTkMpmr3MfHb$-lh$cz8M86ACWesJXi0D5QVUB+9s z*^t6bBt_#K#oVI+rz2~XTz;dD4v4}74t0phE+pY)FG!0?!a63$vXb9c)utlZ4WR0A z+)?zmOMkq6M9)k_tN?IXiD-$k5{kR}wRI7YST6uf(vI!hom_*(gT3X?1&@{haCpTC zSen2HFH=QvEE@n`v3?uPvIv>&dzUD0D#WF(%49Pk%SKK{5yceF$Ol)ss34*rMiT3nW}#wz%+qt>#PS2N(gp z|L^;Zju5aY9sT8GEoSL`F9l_m8j0D^pWt#d-Mf^I0HF7<5ch^tD6x9NDAs15k;)Mi zSo6A;$+^FW_CP5ZRuKUCWH3D#iT-nnYiNIV^4fOX;+(>uMKlyZSO#DBWS$ear|z;Y za1o?{0;z20?8Ak^jg!wwjq`d0MG%a zX|0E8P4jAyNQXff1-XNx$cpaPRn9g5BLbigQ{=AJC%7$P1T^Nizrpk`vwXXR90k{U zTkhCZ<7(l+u>S?`d4x9`s+%#1sYe2qinwQd(Ewyb9PAT;uNgp;PyTT4zX=+U2c~xc zdXFf|iy<$ONU(y45%jfyABA<*_Af3806R?A?U$W(3RvZZQ5Up1h};3-bqXwO@a{*t z&zEZHNM!&3Vk?&uD9LAcjOMI{_79JvGm-ll2N)X~1IQryr_sZy<-EkYlK! zJ}ak-{mO|;>U<|T8z7AE?s0nK_}?#^YsXZg!jaC;^b2AtD^Yvf<1cS(t;@1WAp$KV z5KN_e6yU^Lmg%Jh`Fu6MMeywh*G=C0ZTzm_r^x04)NV3Wr_0uTf+ZRSNI zfT0hoXoD0H&!kKWllhb$fFJ;N*_CbX+7X;>i$MVB8l?UJ-|hWO5&&piqUTb>^ytx> zY?8R~m!WQB4wneV0WUo&7Cj0@M!NlE$0Pv& zk~Uub*O3|ZzUvzQW(}i9l47i9FOd=3N_Pnq{ z>-45d&OLOUJ`5st1}p2vvWZUPbfF>PZ_hmre*O|~&^+_1m`}(5>qrK6lyKP-TQW=z z0KA7a;cfc}ejDRTpDT{+RW_Au1khOGgMm;Q0}KBV%?Zc~C_x!Oh;Kr5_k~iF4;i;S zv%QYumLsY4^z$t7qDC=qYOOe*(4ML>KluJQ?`G)fbLj%9b)FDy1Hjt;q{#OscSm^( zGytpb!`h>opd;sD*CmXH?2%fa}})%==qn~zTk z#DMM*Updvmv9OP{=EZ6;0vadX?tX+4W)kIg;g88(`c)}mc*yl@HXRA2Dqs*s;Ylq< zsgV9pTT-mNBBXl!&H!e*-&g0BC&hT@n)n&gB_wXHl{_$DWpWajDkMJtkzn zd9+BAB5|n~AAj>so3=;^0KU8Nb)^ZW63CEyvbH19G5{cFRQd4^(})^JzRqSdjRvsJ z#@Xqcy_D-9DPdeZZfCr!dMiUtZ?_;II?=1$TR*XG?34pj-KZscuSQQ<5^-NzhR8#| zqXUwf5p&D3&-C5DvQiwZ13x&$|E}sUi^m?2tsWq(Yn2MeutpkY3A_I>_&!ZQB14rXIES()PC#m;YN zjsbwikr~|Etx+dN`6bS`WT>1TaAt@%yPITPrQJbd7yxWWs6?6RZ6h-3>cIwZdUzXF z#YqncdL_TQr6Y~dj}btB?@sbD<8r63YG%cE#!)!(ui}B>smrYQzD0Qe)b%Pj)`K?C zYo9LDQ#x7G(Lj)=LGwDT)B#ZPJ3wgs*R1KL&gzqRtd^AU(u*AK1~um1+aF%(WUNFn z*6S1}l@I`EjMYdqMirOl^Dy1J9043m4L|gH*SC*WXkE*WGDNZyH~=_LfrGWp84Kc# z_pZJUe!?(7AnEhJS~+nHByF5vEszSsX#B68}l6%YxdtW`FvQPB6eD!c;(Ri6BUyA zJW_CU6Mx$A#`7(Rlg_G^r#99XcLg+&e zKzg?%(Ze@32n}E!3@Smt5163(&A}ag3F(sgX;ITdbTx0O-1S!MwbB6bVfLpmF=qiH`J;K(|ymt92v2 z-zJH%r{X*_r|7#=f6%ExbOQi-kKezy2}zaDPtuKrln5_MqEzZ|ex?(HCtRPewJx6( z+fOUr3A0lzPnV1^Nm_|{4yV(J!YKJ#xK|oEb=8kid_x)lW*Cu$bx`5CH5n6!0)Pu< z#AD7Ssry#3O@eggL=^xy`8@lfx&hSg_^H-~C=LM7fAraYQ;YmHFTZU=EYi``5{;{! zaSInPJ7B_w;G~S9mYhp)DwK1{kp)p~LR}|ip!YWU-a99~P$fk9LfnXKZeuL+vQ%E2 z9;Kt7FgYyLZQMTbHe<>GpK|9g^ADx8+vHiF5-E4+C%;z(3+0iH+^L^Io%54Z1AZ|0 z(ZKA9$LPt5%%nBY59-%{n4XM@0W!!BSUq`{KAd3#*gSM1Ex3GLaLHi=^!{#M1`}c~ zf6~vkB{sfEN_~1HUz_x!qoW?Lmyy z5B38a3@WbAV2QD6pbL`ojLkoK9Xwhx2!Ql!dz)f(?)V46Z4Ur6UjCqu(-=qi8eV*C z+a61@4<(@b)c6NNzy@*rjh9cfEykW(RUfpKPhSMvHF_TlU zWJA_F-tC6|ren7_W>FITHnKzP&>)6)^Hf2k%( z-vQ)ohZ2RO?bqLB(qu|F13(2F^O{euFOu2*1`-hW0C=2*s#)TT7tHm}S*CnLf?K=> zqB9N3`|mWZT$?YVx1w{j4P}SQEs{i80QCO(Ss53bq+p5 zaG?2M9rPuJGYEjyU1J+S&&k%QaGB8p0IS7^%>bhR%JWCf$}fziW1CDz7zD|Q1g@66-1AC!|{pu?H zQji)KBxT_$tz6zn@GE|mW@(*|^fXL(@`Ev|2LAVN8yyhERW#5Kx_#h^u31Io3~~W- zt=77d*0fjz0RS57YhVI));SvOA;q9EUL~!O+o-$##N2AT!1*A{{ z0Dgla7o*UBX02vQ$~k(qOBiMl0Qx&;2L_g~HID``5dcu{3?oI7XY)wqGk-eTIVZR$ z_F;Y0U*^*QqLa3T2Riu%0p#A|mv$&-Nu8k^bJ3X3g249!u7=^pUwJ*h{cMxhbH}hn zr_yNpB{?0Z3I{z$%lw1W*qK9L-C>i#I@nAlvaXhzZS3k)OO=-WVNWtNK+=XRu;pGc zMUNo%gAqW^hMj{9IhlJ^){TYsg;aNarsERm2#Ef5YJUV2O#U)<-sS-3uP$$g=$Ec(r|(wS!42TTY<|`oJy;I)M=AKVzKxCVy%J z*(Ed(AU)krza=DiWM>cn2ln?g3kpZ0eWM*uQUL&5ZeXR03!3IN``YHh0sw%|`eUZY zXZ^=LjHQ(+_5}dQX|v!jM?bLM0p~htazvS#X^8@j)8^`8l-V+45>1NCeoj!&EK*!2 z$-(YMgL8JWWFrIsy$>Dl9zR3;`nGO!yLWEPi~lQE7B*h@XPt_{BjYo#-qnY64ey+Nh`3GJl>!gf!o%8<3?L27;6 zM2bWWL}&VSuKwk})^BQy#25s?fVVe|h+CYP8eAU$pz-vb4NT+T+RdG_iYxn5z2LM10NUqY>St&_cdwW3 zT@3Gx*EmD*(GKm1Xnk9zwHvcZj3H-d!$XSY0Q+0pMw(eMiJo4N`n`C0V?X0Jq|=Qh zALE90jMR~yP4qi>p#MzWH)iixJ((4g&_ICn-p|=}-`P^)?8%^3o|(6$|Dhsne)Fj5 z!uvWGFeF=AQm>cDQT<>Y_`wa*w9-~A6L&w@1r966qZZxwqwSTPNj1<9YBYMLF6w2r z&!DniwWg&yGWQWZr4E!T8!IO8Fjl9k{%4W45LqJNkwDt`(y~d`J(}-eG(}V=4gi2! zH=KU;}JwJ(2d z+ol%#PHN1f=&Jh8(Pla>*h)@GK>{B@fl*_$x~Ynm&3Nmmb8ApRI!mAmGn+gfsq2UC zyFXan962;pFHlIn0Y6x~!w3)nuiIs6{#NrNl^g(hsBt8ToZl1#PyBZM=CGPt z5Tj{O_5#bbgWBX_G>5z;S<3Jz-wYe9C1(Q~Gl2Nvm^UEzIBnq)RY4Y;PLZS&9Mi!h z?asRU+E8siD8?JT;5ZbIl4(OrdlYS~0AcYm1}T*nF_BMs5%aSdHFXY>^;M7va6x(? z2)rK6i$|*le5$KF+j9Y8YlvMursIUD_C};BqLmv6Vu9!t!Plq%vq#eL5F?eOCmKx* ziqTK`%&N@3FVyjURlqMC-2qz&OLlGd>v{re$9_G!A6Vw;D?I_VqZ9)@kjaoK?rhWU zZ(9pM0DRY&U*hZ-Hgd@mZI3p9>$&&?o|WczO5=V#LIZ5`8bH0X-so4el(jLzI1RFc zCs$n053e#A^T*;@Y$N8v111F?Iz`5IjF%1sl}y>@X7IB9H&PTD_uE~-^h_nDHX&j7 zPilx<41hj3S8bSecfRNWfHOo_U$Q5F5EoeMpItwvw5QV00^L-v(>naVk2H?Bzx|rzN z;OJIcxopiK3ys?p?BFyW(d2k|*6gdao`jrYL_7OR{QeJ2?-3nKYv+=ba*etUwi3EK z^Auem+5ol!y$#%`X%X8SnPH5;N7%kk=YDVt66#R)q0O)cJR%U7rvHq;RNp>cFQZ7Y zjuFr}>~J=RVOa9Zf1hZh6bWskh8(jdB`#K`d!NyzV8xG$kJRMIQD^|rd%>gYP49(c zeV~~YQuYxOXsmCh4LDE2xuplG*eUWT1mQMRnnr{)^+ux~hVkW7rs+Etbmy$^E7uyZ&xePPI>9$D%xIb0857o1GC_>zQB2{RVhI*0!nud-dKm_m6mGhW@-sZ zwqg*NKGnOWbGQdgC-`o*oe$Y|06^oE6$^-z7j|^_&^p2M+EAVa!4ED=S{sp_ot|6VJW?H5c603hYV_+ciH4c#@z4g@Tj1r!LlcfI>j@W9Wu{JD1k z(EISu@|)fhrnzB@k#pO>)Dk11`TOczFR|4MRY{C5xk?jnT|YPy+y4Z72gl z7OrpS?Y4r0FKhAIqwxOR_}XL4-O8H#M&OY#Sac4gjn%1S?1;UKp*{TqOWBqwN4K;ySN-Pa(HO~384P?IFR&-Ww+K#x*?mu4wd9(+@W zNZ|nhFg-J?JBm({L)uQ#1-nR!K^O%K$(&HimpiD*vH|QsdrGu74zzkiy5J6k5zzbE zKiowkNGRV2BX#e>bP|fK90ZUT+#nEH;#uL>b`W3#1OUCaDP7iaPl)vIvJdUvxp6a6 zFB)#@Hz)OyhIku5YE|#B05gnz zM=pbw$7yeiQv+E3#ECgzaBJ^dZFHhAj4;mA0ZJjRGrnx{$Of>KmUtPcP=X_lNKq~< z%4mHxR!sVc*K^&4m&~Sjre@J>`7`bPGl+Dwb>^Nu&Xx}A;2miTg~()jpg4W`M3rBv z+S6qog+TyZYk%I<-}CQ})Q%%O0D#7Ko9`$cx*){KI?Xcl*0qJauzj0mCY*6{ZJ%o- z^rlR{;JpKY-qY@$>NJM^2N)e1z|i7T2@Qr*5i@K@T2f6ij@0`ha+0u=7l;XKtTf8m z6<+t@-jgT1V5-Qm)3a;ENfHDABtCrf$S@pGl<;x|miQr|`@{n(!K?6jXfn=OmC@Dt&DCi|m%mDa2{EQqO^n$6B7aEApG-zCfb+$1w z^9%w2E2})p5Ao+}(TaI2qB%HA3x{s|6mH@am3@D6U#n0PcOea+S~LPi#Yps@34(Rg zOwfg~Xq`cRK(~WQ?4ZFh001;TT{fXp8zPWLxiq%SOQPQ=erpsM<>{-l)GKcu>V>!5 zA6rW^V&(wAL^!V_s&HOE^yq?SSl(Cz2=ph&8p9z8+yB*`SeaLB>I}tHG}c8xz%d)v z@)c@`AP2zS_q$8CdHo~;(wV+-fi`h@0UdxgWVKjmK$HX!8zR-qeeA5ue%Abr9d0;A zX&^wjj~O78ef_WfViz=;Jd6ea>O=;7`R6;k#?qs7BLL^fEgS!IawJCie9}5Sij;mJ z4Iqp%Fa0=EcEpX{Qv+lN0svfh7@tHvmVW2aunf*+c#Y66?L4VTtWTCXoq!mT{wu$@ z+I#0N;H-Bu=m;;1(-;xH&kjarV?1)t`)j&>5szdLM!`B2yKwirzi8!(Hv)hUj59wl zPVfVZn7^Z{7KTll{{A^YTniU1ok#}@TjV^-nh%;gQp2Ux-6u}anc3!r54HRqce3;0 z9Vm6>xF))~koPdb3(9lke^_`ek^%(5a}(6YzvmsN^NM6*KiHL^d*e8OLk`Z?k;axF zj|vbXCkta-j*D7?fgn~cHb)qA@3d9d*aG3{$J|C`9020Nh$hu_`mh0fBD~|hpCkBN z6Llh^_;eA3psoAipv&G`P{*+N+1F^Bv#sGO0Xd-0U%S>!$M=knuLU4M5hDRqkRC`4 zmp}8GO0^fh^-=9d01fg$P%O{1Ki&UE>qkyu@kp>e7B{YQWv}h9=SSOM{iCtb#u$9u z0j-?=VffgQm;dj=;9!p>69jwsQ}4K;_DDMBfiDOmcJa|pz=x%;sWd~6VoNV(Qth>J zyky~`oc1W1A0#gJDI7rJgJK=dbsfn>z5zvt`w&0?>^$Du0H#i~bYla!X2uuE9&Q@xyleXHV|NO#ilQP}v~Exo zv8|B+%n6bWpVZNr&yJ|6J<^becs=#auhv4o%nTth@R6&ldj(FqA$>|tJXcnSU&(lh zy}9#zq7jjlNrTg|?-XA;#?E+LegTY;c=Z|PvazT2g*8!R5^78pm;)Gp_{-9~t(;}u zCLKJ44*<}6qxmCE=H4_YwQXDMT<54E(+<00+Aq{Ar~wk27gDheT`)=XYk4N=k5eh_ zY|W!oCeGR9#~kh8)tnt^gc4eLVvGP_l=Jj}7yY8(n>JOnF^Z%Z1i<(lolUWNbA22w zDX9zrK;wNkzjGR6CuUliQkrpT9M7wn_0~tgmKtk#7%dN>=Of|SOtcR;?az(*n?>49 zk96_9ZOgt8heFL`n(UzX!3a38&vnf15ovc6{as9Pw2?PM3W(HZ)3hr^PK}H(r(DIr?mI?%7 zd;p~;1dqh~J#e7bHLbKQfdHVCo&aFtEP!}lrL>KY^#K6LI+^vbnS>tw^M$@FS~gE% z)|2QoOJ5?G`N1fBK<#aZEc)P$9AgIXzBf|mN%_rWI;_T6U5tuP0Pu*O1fG9GFU(7L zvvpeY;u8!4Kegg-H$Ktpowf6AkMe{XvxqSY2Zg%THtF0Ur~NU?Q+iNW;;cH)#_69% z-0?sDDER4CKNzHH;N0xXbyTrQRKwpJ(gl(Re8j8{NE=_iSHMn?H_U z48kar7N&5l0>)ahU=~|fq#9>w0)Th){6|l1dU$3C%iuRCiw&KtSKeh?-4AvJGR(Ys zIWdE^L1vp2Mg?HVg5*Zo!@fEk+|@DC9Wq{}Y?A?YwRmEej9P-v2?^nNq!}gu+2Jc) z^w@R?5c9%%`Z$JFkJ)~elmM;Buhg|!#^P7^IAxy_)8sJ_qv?2^esnb3l(d2Y0zkhW zyS$q3<9iy=-3uxSu1_#__hpk0?4Y8_`Xa5w2;7>;LinxgG%addY5;*Oy@^>jhIM(a z?Gm_vI+$+0c-lo=6#7)75m_&&Msz&9FT;f(|pQiMM1S(Kh&rc?R$EnWD?xeoyI zkVH(Nd@{>Ou6=l0+het;0mA6|^IpsA4~tsVWvM>l*&wn6Pam61$*f0_ECJF+hPtEB z+JGTz>fD+dU`y>>A{U^qT1}Sum#D>@$pbW;b=A~n<6gTTbq9aW$vw*MM$AtM0BN-( zTf0U=plOXG2p#-OeLqgWiY-Mdc=C6EQ6Lbuy@i{%>ilFopauh|PnE|%+g^t++Xfj3 zkUl{W?Y8fB0YG0F&eNTI7qe}m}XAQwr1C+77=57c2y zc8>r?6$U`t(Py1lj)H3ZSlryMJ zSux6Fdbp~rma3@Xr@(@pQS$>3Mu`~o&e2Ocx=iTaqBV9V*ZxzPlmvkOKugXRW9=Y` z1{}jj(eG2pK+y^Q4rSJAlh9eWu5vWF&g3>f4D^FG+_KIR%laXN08nWamg%2nU362i zYXHMlgAauEp0AbDO+3v@yg=#e|&QeDwFT0^M9o@IiWaq++Q{8cSGO zHn**#7(@z7uxM6^36LHtW%$q2p5^RiCOryvlfjS98ZF|7*$$@x{8A5LOwI69%mKDy zHCZt!;uNITtRJ4fg*LFxW7*jcAOQ3VWvr9d+naXwOGZNiptC}+uFIk(t1SUIg5t_h zo>yGkyHSH|vc`l8AOBy0ql`B{(sf*=?be+Yc2-D6Ot86Bof2s@zv64_6(Jw<1OoHg z+0G^KeOpjx@*~7KMu97oBNABfhms z8{lD-`9LoHXDa;MHPY+Vemmo7upc9*b&2#`Mg-8WZZy?pt7Bn zfdGwNklZ-y;4;2@({upk+sz;R?~Ku5pGBvlR(eA(hVaFbaL#xOeOHHS?;c0=#HX3` zY%=8TL|RjCJ_V&SU)A#LPp{r+x1H7BfnO-kIv2N#d^F%Rq``jR>hDY01-|w>26`Yf zE9i0}mCna@=mQ9VA)m)IOAMQ1PO&{gi+{WaIQ4Ro5&yFm=WPIbWPUD@_+cGk$~t&K zZB@##w)Ja%7>Ld=VP;UJh?%<5v@QQUomAuakF>;~_#ay*uWisOQZ$3~T)xB)F?4LS zB?k~lE59+WG2FZx(%6E~{Cr2Pc@&(fLLsLv`+Ib1=HV%rx$7^U+1FCC3zV$yX% z>!=w|wG0a1NvXLl_%d@YNm22rysm#ScWgUBuk+Il=K7&p%N$-snnY~7HcOn3rG zM`9dy6xnQ6+tS4f-qM>KlCW@r-eGbo-mF13;LV!48As{avXBH&bdMx`gsMxir842Zfe7OO#HR;<@wHAv4 z0y9DZ`n?Z5IL6AR0`k~Y{=V5HvB$B0yZH9;!1+Te56(F~|crg)O}D z>hsK+CmS%xj1W?m7mE5PkE6|ACcGE{ibRybC^)#l4))((-%BD|)U5rm6QRxy4-U#4 zyLekG)FzA9Q<3g?J+)Lq>k0xJz)K!@eSj0t52e@Ix&h6sef+FI56EN@GqC^SGTJb0 zTVtRf^!2u5!Lu=>1`q)J4h1IeZ-2O<#VoN5fS42nZqQF{0Zd-9!&SA}*yJ(LPhQ#d z|L7QCTQ)#0KwSEtrmwWQ$Ywcicm*jNzUyK%AAfl*ZSuk_J~`Wk8Up~^nqDQdvjjD+!e3f> zV)6jApq21oVfD$zXk_Qp^MZUaM|2_Ow%efUH>CtfO}}fK3F8CY*UcS@o;-aXBK1 z5x~RxL~aOTA?Qf|;O~Um&t<`$!Qcm@!Bp1#lsCM_2NU(l0eiIFq!;LE5dP1K?=_c@Jsp zZ0nojo*Z$A)^XN*0I#0O zT?5#>aoByDKyD>%Jz|z!ZD`&=W-5B{wF4H6wz=N1y6IFRpNj&C;D;~nL_wE#-&!q2 zSrR-wBJL#9LXrP1F3lO@4m9r(e?&m`2VL$XNc2m66@ zTVK=ROwy$W`a#XB{-T46%n`VUB;aqYPgItmX zu;3@_pr+h}0RS2!-E;4YH)W4d3vtpo866l!;}Y#Q7#F{GJ)!O5XnKdcG#2)j$^{VJp^+M8P8vKsUTmP$bRzH>Gm}>(s=}wM$500RVd6T}qA` z1YBXl?$CpNfpMN9hEQB!F_`(`0%K#{J9;5e)^q(}KQQ|7Yj%u))F8noWD4wfe3cwx zL#+AMr`Loh0MI*D=~$Uj-v5ISprLWvLb=L3`Mj!AQf^%|LT3fBt8TPp6rUOckRtbQ zW^JS3jc!^WlCS{4l(-9_x+n{Nyl;{-()pr0^>H^zSOBt7X07Mm9E~!j!?3g3&V*?I zK-Rlr(H)~i;}qq6pBQGRN2q%hCiuctZgkc3fcG)iuh#D-Trg}AI<9i2Tdo~>=}9RM&KdTXAe1N0tn-8%PP ziyCr;j@P`|f!fSkpvjR*0|1=LH!R)f6x>)|NqIA$&M7uv5P?7vUd!V}f;wTokCm}m zU<7=dM~T##^E+kzA?qBKe?`mtCvUy_iM#swL zkXQQEmhgBnUuu`N0bKe0{pgXiB!OF2KJU5JmYNnqYT^ZYVzM}j^yv7XCQEz+ya40^ zq%v>OXtZ`$*~|d|{+*kiJoM<)z@ugRUjdy!C93$relq`DFd+Dno(2M>wU;jz~FT3jJDrsSKu@J`Z~e`>Hduxz;!dqMXs9{EDxDBeey=N5krIPE zfH@AC??hi)N}4Pb1OPM~AyK|fczdk}TT-)=y8xX-a!y)nTP%lEkc8f6>~!z)`!fC~ z;SFkZ)>4w*$A`+hAP7Mf$8>jIvRcse*We6)NLI>v&@t=dfy*@gVio{^92_#L@RGlg zk;k!8waX^8BJYI6xIV$0-M`s#mKLYvz(&+HdMA@Gh0E1+CG7};25`rZsBpn5&%%Vk zV^ya0GxQFqObay-o#~3Y#{RTAaf)ae1b|lD^p_cRVQB-lP-_4>Pt8|m#lNYXSGZ<2 zOs6$1qQwYkTy&V5n&Fe&d6o@eXRKsYiAGu`dDDSHjixY z<+#Rxm+7K8JfVt(NZ7Blw4FYWolnV(eecT3YRGa&|nBpjt>!1)vHZIbjTXq?TP6kr*WL4}Kr(%QF2 z0SFJ)#~9EpTM~N|7Awd?#u^9^E`eiE)86~E zwB-0KgZ2<0wwi3R^~O)xN~b}|2pWjdbXmB$MqWLdm^_03;1@0+j3S$EY0256pm8v9 zKRz}}OHh{VFbY6;a?KxU{J-oS>(i8y85r=ivU?FNZVFD?=707IDSCr`ns^bj3H|=3 z7k&{WSYqvZB+@4>g%=G(XBxCWM=hPsB})t`)m~?_dq)FEstid7DKS2oGI9?7PE4Cs zgI^Ba(N{Z(q%_bEx;`<9U7|2A3<6+5!99k&fy?je+$p>OfW{Z2tv8aocHKHzD2;g{ zfUAf35}Bu&hucAdNeQ8KmEOd(N4qhNK4bdZlQUKt0BHQl7i%24QP-cUdtHZ7F^R!M zH~RzbGUX-gvD24pe~=O#M^_loEoo+NdA?)V*jv|iM3hJZ0PbVul>?&8oJYu)B!xCS z@j8I$sEETy#02+#Zd6R&=7ej2Xc>S?1YnTfWcoJVY+F*)*0CuDL0WkCp8a7-(KKaiX8qWs9&rzXV6a$D|!ue7FRg#h&<7~fAI{0v6c>0Mzu)W|j?gF#yJ zTFp$RnlZD4%{+@105*}K1^0NnxgEofOsJp%Vu%3nw;(pJ&08K{#YOl}xvq_^3q1n! zuzSXAXXWNh>Tkod-HWG#vpoW@+?*^s*{s~m{q1bzao(yWIbz%e90BHzw9AfK$4{ZPm$1!n83FH*rwZ+lFnbf7i&ow$=mwDW{ zGKmU}U;Mewu~v|>q=j#hgJ9J*4bedXI_)NX|v?Fy^#LO2s%Y97t6 zMd&W9V#x-|!i=Yq_Y`0K3J)h3H(z&AE!O7s|^^cQ{G|TIMT^Obt zOV4u>u{4I2=bpdaWnH>1G=FJCH>`Z&YptExSnnYdbs&?T*={x`9#W=Qp#+ZTcKzDT zVK87>3QXd*PRJTpi1P)T_XgkAUME4}4p|&Di8T~{_YEh0IA6E#UD)o{WfUA+PRZT7>=9Z<7t5%77mMY{Fy=*U$Jyb(vCiMnjfHN|jOV)rMNH#5 z$9#*x97ZmCjj>*Evtn|`6vEoM`7Wq0VDg9F@di4Ja97$wIywj`TrO14{y*pLeV9PQ z$(w^qgi8e&7}u)VBdsrQ7s-Nz4sC*jMY)bUiaC(y^O8xke5Ge3g`I{|vbhb>BbF;5 zwqw=eL{V&=lYY5qPC4}W8&{kar~nd)3~3DS!XIG*Ec^4}se?N^FDSEQc<<}O z=;2!K(mMmNddrP>{9%1eR>X*~$0j^v!OVy)FJe24X4|kWaPN!F0U&%Bmo-fPH0CfM zXJb8cb(bEXVSsq26K?^P%a+sG!~45kN}UDWdVv9)r(QgNSSos&8;*v@)?e>r@}L^V zD3H{_!bP1AI^dZ4%4c_j>w&{KwRgfe65E8{zuS$;PaGdWuML+ciGaeA_dgrH?MNQ& zhVF91q)=C!cxR1$mm@SHLyVTy0|VA%0tqRyhyBBuwt5QUYB)c2%bAcUD$gtDFRq*k zG>4C}3K@D8YW*tf{E*vo%oNfXJ#+ZmJE4HKOt*0+l0Gwt`^>p12C zl;qe25kk1mZ1L51I>5Ri1R#-$Ovwuk?5l&6n<$czmJno-hT>6(bDc#_$2Z-6LtCY5 zWEunjR-SmK+VDYTZ3Z@g8P8j7k`tA&`qZG{VjbCR07qsT#2onSm$_fmBjBzdkc6y~ ze%o~C!2aymE3}4PgJT}xitH>TTC>C7BwLVG8x6uJh@S}OsCm8(?VuHC^TEpNma3>( zx*d{YzRd?T&Lh;u@AR-f*i81`%c4!&jS>tBru8QyA8R9YLplS{`;(u0m4>9SG4xq= z-{z`QFp-JmqJ~_2zyNv9cxZSlZByA}7FsGs}B z7{JwOA%lF%VV(t0HGGQ`^%_o^uh&~#lLttVXWqQ%+PsstEjN0j@gZW2r-)D@FD=yE zQ_GI2tP}8YiT?4Pelkf@OJsM-&BjS;>SYok=@~_1udy-4P6MXu5!~7oB;nKFtnszu z2bjRnp~Y=m#H4~6QQS|n7KNMZmI zA{*f05kF}I6f^$=qj*Zw?*{a%-N~jO5&^>i;DlHM`U93oSgik4ui%(RpFO4ZR+Bqh z^#lE&?eDVaI@=~s&Z7-0&!arNpHS;VEI1a44T}O0aWb+-o*UCY&2fk1^Tz8v9(T1F zBm&IBpm&GNMB~>cd2DZFWdgt>JpEv}^DaH2%AOcY^z2*s0f5Vh4BO{Ag(3hsmpl!w zpCTkGCJF0xtk8DNw%7nRc>r+4{}=iLiM8zeJa$pdh) zMgKIbAiw1!XS)-NW!DkJ2X1DrUBrh7txTXWDAxz46bRUf;{xNe1w>LFhAUB zeQwJwFCbC?&=^wUvktrdiLJAfG!9l0bskvBZcLpz@<*?IBKtXts<&@>_@&C$9-Dg} za|0ziRL1b{T%+w40S%1{fd_hAG0G(MizC);MQ(xwz%(9t!1LdZVSBDlv5k%R3qfPH%;BG{H?FvB zWL;Z~+?a3A$C(V=o)5qMe2w)j7@>QtqI-PPnND6n-PE?jM%!;;ks#$N{bb4TIy*+_ zG$oB~V6? zveE{yMd0KCPx;5S`pQ-TTLg55-g9lgT>9IAl_M~rdV2S;ZtR9kki)d!m^nBCmuNt_ zzg_noOX8k67$7$Bq2MmNdfE;J|3=Rsp>fj85g-BIw;Hi}u(n`#Ya=^N6`}18G(@F% z^ad{d98CY_^o5|tA}x_ORA1dwBn$SfqUr#nYw+d0Wil$0ahKnNf&IW5og3;87`ZbY zKhO_af2yLMOSulHK`ub1cbBRh)>9)lEHS`oOvjR05E}|_wZjsUPD5%1sUf<fdDkbuU;>FKJ-i5stg zv$WB?LqlEXy5OzhKAdo&*<@;oy+ZdPRa4bX5Jnz_f zrbZy`Xbi8*A+($6+~3PP1WJYh#Depl8@p+Ye%42{UBg>NrXEf$Ym%5S9Wv=bnfrl+ z8|_!U;DrFPZ{QtRC=2qRH{Uu?=V}*?A4bvpygTDG53c;Dgu0~UCeH#NItqRrv!-4& zaYf1iG}h<)_D4!rKs!TS8jA?ua&LJ59 zSd23g-F2J=y+8WMI`r>K295b$P|%J@!S8@J%riviLZLm_`azAB!))3S{m?slO}4#y z>8@vLmPP>HA0A8ltQ&xfQr6_qe!lZD6WZ&QdS>?uZ+ex%ZOlySX#+q*OfVX2Y`>Y(67$1 z78L1ImK@L(y<0ai0OUL>w>N@&|K!0xb|iz$E08GButd+SWvYBqz}chSxjea@aX@QL zdhnCQsFTFR_0}4tO9lhbJI-D3D)dJ=Ug`49owlIyI5J0GvcTdp1K!?WtUbsz0S2IV zeDjAJKVNfND@Yn6Q=)OjU&};r<56Ev)+Q^Bw^C+6V`8!#H=cc^WbmHHdm_BtwY5VA zyyspvt16M6yHTI$87IrQ=aWNz)pjBhNt-peysu2!t|cP!=F3)bY=wJ&^Skd7G^Brs zZzH{`7@vM_CAF@gRT9yxpXY;z2hUZ1en{(`$h*o|JkpV}xFEbZNeqo?g@@mytfIKX+My)%kzM3iQ;Obbk~YgWD~~qTIUpX_s&A^bphG*+t1sA@&?@rf;W z;pRI!1-Rm702-%Go7A~%5-A|Xw%j@xNMlwcT@Y-}PYvAl#MTXHM$bQzG6s31ATaZR zl{p3UP9{1P?6Eb0Z4sxv|TG24NHpsI{huR+#HZJ1McVNU5=z z?mm7S+m0MC_i^<9Kn@s=q~BL(m7-UV6xl4Hu5jFl7!2$uadnL_o%38l_upoh$3|7tEPIF{W)HF8&UiX0x@7F7lHmps?8-W%eEora zoZaH%U)9ro?4DvoW3ORZZus?LYZu0?lLnF65xh7KL3A9n2Ayf7gO;ll0A7$uvgqdC zZ0m%?qaPI3ja{12m_?WMYFeYgd;7=PUIY!IF^dl0zF>#gu&;_OXV8nr$ST}B{c1wt z)-w^B6rr2XGoU8o)1u`wSoMTU_YAT;uIuZK?j$&!fMI4Q}F$eL*p?5TPZ(xh%I^kJG{$-s z!gm*QvOvzo+|OWrmck9B8pI^=s@doy)?1cBKSn|0Q@vZ3Lt|w0hAl&E`dKXUo4gh-pDDE8REDScYd~aF0jc1ZpxiQWzbI&L4%+dDZGFp(d3c5>s zz0(h~JQzK<^|4>KcLsnIT!PF}=@z;!u=m20E$o}0#e9F7-b$N+8*u?BLJuxMfuvm7 z4=dk1-zLZXE?+wxSdnOu3kWfQduu<`;w zY)}*%+uALc^&aOED6NqVl* z?lY6|T35dm*fSb)&v@&Km9*r7^|>7BnL`F>=8&;EmGz-G*Is6kaX~W7B>idvQjJv6 z0_QC06G`KEXOEi-qd{Hk!c3PGH0Icd7n?aY_H3KjjxkhJgrIS6Z{CHtzKOy$+dUM; z@qOc$gLQf3UN{vD%*MvRJ%3oQqqs9wKhO{AwEYWha01FoEg?0oYW0pos=rd$bpb?- zkr;$g^tsN$^HS^7=^7sZtVk?gup+Bxns3J-a;}isq{tlfvpYQn>2djxS9^gLv)OSbPO-@X9~y*Fz&I=R;M)^{CIbN1I4u%XHV5ioE?=)3yC#FiY>b$u zbM^G9*9_Za;BjbtgMNYxyy(I&cJ^PNCNOxRG35)(rZ|>v?pDZF7<#`*bun8n#jmr3*-OtU{!yJFLgp6iqIGa2v$CL_}Z>#j$4e&WAO zG1yIvmo_icWv*)qexPeVvI^Mq^Le%(fV938cnf$;j~w^dc~28ra#@;@wuN$IHiP5| zFBmfj39;_Bb|r+K*$fh1``RnPI);t-=z?tquzfUMLcdg^-x;LcaZjp;Hth_;eJ~{n zT+!nJ;$1iJnvpq8nlKWBSV9blypTc9;M~~*00?Ho(z~XCBY_-`>b7sF$r8o^ zK<`&dZ!)v%Q;)18b8cf?Xvy;bdD;SV`gnbk8G-UgV-*?9CUUdx*#a{T8nY;mJZkTln%+xbC##c$W@%K-Hyqt!{doGtHRwu$&i6T@Yv=Xnfzc52MAhQ|IcC z=Vm?tn8}MdLJgDI#?G;sj6t-{p*ht!`njH-8}xvFQjmGeKXZ=>cDRF`%q7VLs{&&c z{!yE&E14HmmE@vs-JV0rhrYSu9L>$w%zBYj8Z+&9n~hV9@4hy-aS7U4W-;oB^(yo4 zHluK}c|`MkdKjSHY}mH>I+nO%TtJPR63~-K`HzlFb(Xwy_v&RciQX4d<8maLV7+&~ z5@Of(5Meb^62}wNnLNcy_187qA<#P-WBXjH4B0~e{q~l?6v+UVIj)g_Z|1u8I?x)? zm`(R^+zieu@>oa@nfS^UBh%e4t4O8(%FT{cZXX(?nRFF|o>?MiC-!&B5gZtAK6H`2 zvdc_nq_>V4pcPbOe`hUoS3&5VC+u~$74nWdcMN+GY27^Qrgk*O_EblDFdEAqqp<7~ z>^!M+ko&431DPz`BFO&QckpU0A@?vN0LVcoZNH**Wc?9!SScs46lEXjGl@c`9}FdG zV4J_v=@QaH+dfi_wC0;0NdWH>2L&ad&Eif&IX(k=OJw zLwBbZw`Vhn*Vn9w;2X3z)Y_!|#@%>DV_MU7_=%RkuxVVTc92srXbkD4BvHDg$c%MJ zY3nv~SK|yo;~mSAI;M}ee73!^dM}a%;zncM18ze9rlro1I+VINqC?!wOQqH~^vJ{4Em4KaK;jZOL8>Gj~dBxT|a z4t47PF{gdYYuuP!_iXqw&z2%fOgvXs_v}VO^o;0^FnW;CzY*cCoMmbD!e7Y)BcUJY z2W5`)pPrhykx+vGzqNLkz92PpNg3t@IHcn> z+t1no4o;88U9xDWkr%Qf#(krsxSIz7V6oybEN7=;*=Or$;pPc6UO=Nnb#;F7T*K^b zD<%m(%m-ZFM*q)T8JMy|Onn%{J)MnF0JuR04+ZX}e{(>if135(|JEMV(a+UO-den${3&qjv% zJ_{g?FB2K)8QGOz82%;BW;`AM9`@<`pNRpuVdR+p# z#>oIQzWeb;b6?!4y3GSke-Xte-tTrLCZC@Px^=BT)ET|dHxX}=-EgYW2Jf>wj8plA zIcQ-s4}G3lB&F|wX!GNMKyvVh=}80m{Af%*Q-q4nW13jn{|`M&JSGW>F9k-HND zg8~}!BnqVPQu^tT&Vi8Z*zl)akgwaemabz7KG?p#{DFNWJqS6G-BteT!=MvU_J~0l++<7>4378~c6Q zer-dpmS@t^KR4E^J3|{-@6@^B5skrUHzI2g{dE0TPQ+X}mQyE2_rwB&(755BcOB^< z+O^uWD$q*NI1e>sabh8a#o1@aew$$wi~vAs$VkyCqKzWbAPA9|oEqyeEt)-FB5af$ zxV#B??!D^zPH{KU1RLECEH?Saz(nH*0)*_uu5jsLVJ%758Z^icC_MRFJBh;97=XrD z`9$xqgbhs=*s zedq>3>28tk6C4gGNQ#OeA)TU>5~BD@cXtUQASodrA}u1Nq#%fbASxk>gkt-zd(Xc2 zta+Zz_j_IYJ?HSQduGk*i9K6>#>&qjA}Wpphe$G2ALydf^ z=){T1x-c`75DhYb0|DUAO7nDvGLsMjKrHo0K)m|+Y;99!LIq;DGRBj)h#W+cX(oV} zXV9&0r>^Ka7V45nU?gbhuWh3JLxTXg-mi5Ki<5sCat4C{5aTPiUiw2BaVseR(0Z;i6$0WfAMc>!uqCE><8wIBG+N#~>UcOY7tT== za^ZY@krtZR_yYKbFM|#7;{@8!PydVfm?I(vh-q*G59jrG#>G$bAIYgxv$Y-g0RaeL zY`ytkDYR+ZK>`3)FwY?I=c_){e47a@SOHr1Vj=y zYy7pAn3?)7l+qf6#T&d6U*h@mUX?t#bQjm@A;J|RQ_)?_N#FLt250quY>n_+7##s< z9cDq|WcjwcgCsGP)a$^hUlRnH2h&14qDxBRV!sRF>wG8_F|rY$w~{F%ByF(IB!qGm-C2T}cN4J01Ywc_(Be zoheuu>1F3+mSqKiNa6w~oI|#j_^uy2w{<@s46@;Sxm>=XQLutm({B7a z0RzNmnagB)-CYESg2o6T6jMtc4paxEE^#BZpPHF1LFnP!^Am%+;oJZHgloF!VR13j zvcBM0{yFfZYU8SDjheuuK}I?jF!P*qQ;+c`0zjOh-%r8uz{j@4M=NSjesj68jWPDT z+UcjOYj#Yme_O`zs4@k8!PfYhsofZZ&^My6dAB3XUuV||c^7|)FC~AlL7WV|#BhM5 zQHBnb!CY>yIqiau1V%DTrDd>WS{_<62l!<@$7W!Z}AjUsPtBE9xdT{~- zxI(GAEDGVaL)gt?`RVr%T&XnY^Wl0K)D*3ez(~-l5_xotHxWUD06-+>+lK8kU(#{M zI12$F#_@F$=S;R*OUM%cBZNLH0rB94i?r=nV$AA5oO@rH8fY0|J6Vqr?zNf-A7G=Z zPmDYt*B0$nmW@7s%f%PZN&qpYO`i^MPPkg)-TtfsvuP5q z%2(M99ppJqj<)#HNZQc1h!?8Qy)wyTLlo^U3}cWx1PQ=fix+#WU~%AMuG1 z*Ez_G!^XSBDWx^Ed_{<1zN)qlRDb8Kc{(^*TOkN6VKte(eAo5OaPY@43`BY0 z=b|o4LgTTNTQVSsv7*72=gm0ewhW%Z|DDV>u)laJSnok%wa`0=14v${HiUdZ2ip{F-R^k*fS&al-jp?c< zI9BTbfEZr{q)k0B{&82tY`vcRGRp_FxcYDaXf@XmN`wvBml&^=C8A( ztPb&(xTA~%#F!CLtiRV<=nkAxDkX#<#+nI<3x9i3PY|ra-u8*L#}(*u)2+YKEs>OcG{%ojg2`&G3DBW8+1Edv@u! z#bt$j-}H@4v(Y*2L*awmAbgua#staZ^Uhbp9sd(wA`_=R;K>?14;$9iWrGqKDG^{o zFcG$?Y30iy*LuK4001jGS*O|>QB`q}ygnbBgit$@^}V`vT=6mBBH7)P)|VCIU@bd^ zm&Sw_NCf#T1zGapOzrhDj?Iz)ycUSl_Asg8Y!{%}!rd&aJ#lE5Cfw`KJUXAby#NHZ zuzEp2u`W49?(G)z(C(h|&30RVV&E72Lo#4X3@_*< zPrS1g@3I9D0C+2dY)y#S@3N(()mn%tEj^Zx8Ygo>G(xZj5PH$|#q#A3xmi;Ke)R{B z-37AMy=f&^i5f7~2Ven@?-bWb%LnKM#B&CJ;1R#~gC0PPy96LsM9aR(db@#}rh^g!#7Msl zPyOg^6n0xx!ZV%F*-C96z-c7XLYa&aXY?qcYa$tpgHw5cxb${sZVEkM^F|Yt1`u}S z)sjjurQeXNvsRp0#U!Yl&szF3MT3Lw11~u{y>_aAUeE)52d7nNgq3EG)2!JzMi3-6 zy>_X@L0gX1#M`3(p5Nh_h?1CD{2*%-0N#$H0DiwYPKPBIK)vAFJ+hUy{WLdK(?q}) z4!(jd>IJjNJ^jAbJy;U~0K}=&zwHeg7a|`T(%4O?G?C+e%eZ-ntQ5b!9pl|CUCV(Iv&ZQUiepHu4#tJnk5-_iFQypy0+Xn!AEjtgLWj__~+I5g8Y~Wuk zAF5BgS1km^)sz%8NPeOx$pyhnhE>Kn+regcZn}5|2w)lkW z3cedZ;6NImFkQ6S-j#Ku>#BC`(r=QtXmc#ZOxJE;3YBC<9=uXfSk2`99~Y-@(}jsK zGy=dgKAHkzMC4rKoXMTP^(bNl;kG?{5-Jax?Adzgy9<*={Z_tKn@P=`38`VBnha2K zg4Z&_1Gh?JTSa_T1e~#L2S!p0~v%ywV+N;ZHb1sjT9Xu#-|EN z{M^sOwNflGi@!8eO9eO2UL0^QnvDyhJ$gO{NY5`nu!)X;rsaBKqGUsFG$pRAAI-)C z;`K}`h~0c==aH11~KjUWc}>HHzXU~IvdS1h)erQ!HHXLGX1kL9>(bFdliUfS#C*+P*0wRgy-b?SYgxCmT+ED57OFTD(v-J2W;_XQi zFA@-2-t?h|g7K(a#1Ae{c@iW*Q9&bq$0IlnuDgJtd&)nZdvS!S@A{rky2 zTIR+w0U*z`d(?(kw@it)`==z%T#(iYkY9sBVg7^XbviVy13==ur51Wyhw!RalQO%l zLn0t1-(ZCvwLjMpEo9aO|ol*FwFJjWm(s$C1u8dSTc*(vQ&RDpUKlpe&HD8&p?!uldkI{JLYUy zZ&^3T7$(ZIM8rkAX+M0O7Xlv|GD^=VO`)bi0AO*NfSunYYD04Y)C00M^{{YiF|7xq zVfKL5TU9L{HzECmSlCb07HCQ#05Pm{z3|T-&e%YD*WUy`yNjsr>wR4egRyCGRvKq@Ra z`{r!w8X{N$F-170?#$q_*z=uNh7zP`oue91U{01#3f#HFoNNGj(Jl&!ax8JTrQTQs*G z@uf~~M&@fJERz@)3nNLRit2Fj0XMQCeAn~C_vy6%OITN~r01_ucH)Vykh$%LEn|>O z|K*<_87;zhi&-}GQDh_Pu0imuO-9pST){ae9L6%)dQf2PLC=5QiP4-?+lr z7&hy$>qIK&rHgN+7xtj#Uh>C&`mJ8G5cQt${+0mN3wVP(w8&+5b9kAh@AF@~yO@xY z21Np9w;!SB*`^>O0K`}qXY1Ym+Ni^ZDTqLfosg0;7S@{hd@F0sg|{LW7041n=%rAH zvNg~PlJwnIT5H8wmbl-tZBMO$c=z38+J-Dkxun&PQ`(q=b795rJ>p5}@h2vEVOy<> znK~b10T3*m%1|$!122@)`9P+rGeHc(j52uqL^;4Q6x*3bCpkL?5aOA;U}ge|8`Z6( zZON1aZ2hY=6FkB~Wedgr&~|{HzZ$|uzLO(m-uHYDOnF!l`z{i45?@*vUFK=6Rb$HU ziE+^?v2aPdkD60Kn;V5#-7GDN zSHT*uSL^b`9JeRvfdCACMdlY0FnHMgXH(yGwM$}@z93%v>!El`D)*xqb<5_s0$Rr0 z_DOjj%xW(}080f2jPgF+`s{0y^gPQPMHU7tt(({bwg3PzBt+uV75i(En)nG~ zoaw(VmB~W+9U%EHc-{BW-_Pr^*ThbOydFNh?b#42@@vPQa4i+y1!CbQ=AcN)v_3T8 zzuu?cxba`2cmSv(C~8_n8pNgJ7mn)6(6WSH(8IDNv%NvjX;d=yY)n>NELjQh_#L+Y zDWRnqoO`w`G2d+l8+^BUNVbT@Eb@-b2-mFT+Y!u~8M5%j+B#WS4HE?Zn`fxzE#Dwg zWc*(>EmHGh21E(~6gOQA4`No53hKGlZkJU-}Sieq;<~ro3bYo7zrwN#nHYi3=rcHkq6TI>UO;Lag)AuFIASD@+3Fl(J|FO zTj6|C!?uoa1O1?NlnM+vPhLCh4xT}o@#(Wn%RS;e#bRR5X3Cedp#Y!->mDlhjhO9m3;>|@`SWsnt>Z{}%1(E* zZ&-1D=@aXG{l#;s+~^@G+A|GIWpl~zTxG@YzT$$#J}|UMxLpANVwgIJvDCJ$Pw{Z6ZIaRm#9C?-x6g3{ z9Q9FJ2tnMe@E_j2W4Pxg)y!f#1zWzW3o6XN%QjA{vy#nuxHy>rK@&K0^fOwd=9(uc5X4pG*)7kzg{gVFn$Y*rin<1|3e-RdLjDWlR=#z) z!=ofYJ|JN4!!3X4aaqX$@Q-*S0GQrzJUQAqx2D^$>h&N12m^c6Tu_5j34Y+Qt>M-j z2}ZA4{G&>)(bf4<55)!zRu4x$%ji`PxbLoG^F`q;V`7Vz3l*H_ z)mY#=&n@TrSDSs$Nu6$_GPGuv_y6bZA(XjN+Z`l%9__bWE>qLQnng+^pyezRl7;&> zSE+`-w82}v!H(9dY>&A-Gq0n(L;S5K|3f9Q%v(Gu;;JMDYJ$i=0eRld}uPfGT{Ry+s1vO;tdr z2y3YT(C}~t7lqK|{4_U|Y9Z7XkT12Mny&Zw$Z$oX2N2iK^|-f9wybUU*j__shNo!M z>w|=tw;UrCFyo$>kX{Em8&U~EFB;J2tg|X%rxAS9UEcOeG~cQ2Ty1`XuHgg5AzH0< zhMMv}hAfCf2d9M(u%eSq@wc4&t8IY~*x2^8q@(nk%0cG%eg^} zo<|K=k4cPY>p8C%4IePp&N$%roAmU;3l=w9{Qb7}Yb#DJwqc$1X1!Y8G<0CIp_@^Lr zVIF{UO4E58Ob?>=uJ;G%wO4ax6*LVHudBK!zjIt*k=KRK8TO9OvNk^!jnn9v=0z-IFd zTY?Kv(w)l?UJ!sy+TD}s_6F}Vu6#A(L-tzH{RLFc?**)J0&uhHN*%w;sK#Yq;z*3(fvtsL}KjdaN65})?h*K6G=^ZLW z%W?bPc4GvIxh}f@!`s2~?7wl(hO=?nX9L^1yligniiimgW1Fm_dZ`?&pg`kATch*6 zC2$J@*QJ++)Kk1DiB-=k_x zC#-=;@QVB&yLZt@V88wGMh&k|ic)vIJ5d6N4mqOl(D?E;_*2kOrXDosI9! zetlTmpE*BCrNh+$1dF(=j$?YE%>o^fY*GL*K#_o)#}n@_1ctDCXVZHhCWKoYI8oHK zMJ+XiF!X?PTVyHz=D2XzApgm;mGy}KHza%P#r-A1J=89h?(vRd$zn(KL30YY#Nx%C zTY!aBKd$pi_&+ArjVo}eik=*p626b@+;PoF=#!?^Dd?5(!#=B{MQCOcAf}S^2fw4P zHb;t{M3p#9nP)YXkaAh-2>Bg?O{!UAOKJ{u$LXbAJFb+bpU`NwmNuj#YAm4 zmZfacY9HA5ms+FXo^>~MNoq-$M07qt8n6bWeb^b%L&v{X({ zp=Gu{Bq?IEhs2yXLX>&NXYgWWkBz0nw)?Y2MrlxD?hcXKg2P!iXEaJ3$& zwVmlPI%w6+3YrC=RT#{B9#&sAx|Jj`I)&T%3)%x`c4DD{d zf;wy4)}L1sUhO0wlxV0u%Pcrxut@Q=dkwhxms3cXas>c{lv?)zm0FNR_hQNwf^Z%k z_s>*{h8DQ!| z8(-p^@p__U_QS)#7?TEmIPYVp?llrLVq(g0Vji)pfoZlz zw+p!ljN?J;eNVmP*%$KL8^1(c1IMV*)c0#0;&Y8U>hexvTjbU94lrQlCGX%0+H!3? zeMwMY1GOeS?vs&8n%Epq0nZ?;7yE=4htgFn7eD&_?rud0X|yUVi-=M~X7d3ejbH)j z$GaId&!$4zBNj?xzI}kOzJ2^!ZAXUZwQ@8oj5zemPsOsj=Z3nCG2ii;ccGUXKZV^G z5MzLold>j)5DNKwyYqEdxOFcH9QjlV&pBR(5N#wSjVXD zm%Wo^7F1sTW)CcXd(@n-kCU0ar9qK^$M1aO&gft#1b`SfR}$4+#XH`gN_OA>L2)Wo%^%I zNu{2FUK}{u1;CClhV*{xxUYuqemyxSy)Ma&m4X=Yp9995EYxyR+RxqAIbZ;?`#nhb z3oLcz=p#Bh7#m^_p2DV&j_?0^74NXrUyV9yV&j$|X8rR|)}D9{q|ov!d7am$q&n~<71jWak>I0WUD6l3nu$eN?~%ZyA^Y{G zXN>7b0)0?$=wia}bM?}e)e~6-0B@#|z0nm~=xWkRl4f7%k(J&z2eI4sdB0Y=bg;yn z+*M3h(mQm47li*ibju~C1z^5LlR;{w$)tJZy4I7m006*uwZ0jG_aSGkJK`E7t@j5% z0pbdXoj03!TMrjHZFkLutn84mLt_Lh44Xfniq%pvWgBE)OCEr2PPT^%?|k1um(J#3 zFhTfW1icUej_W{MhZNQdGqoN;VN&|xg?Zsp;;a@Yxp`Ki*0Bt(lsNF(BG0haKYw<* z8wn}a(lTi1pn2-02|TYkKYIpO!yo|f`^AwE)b#S2o=r7q^|Vf5R=gUB#vITsXTE78 zB0&Jif5HA^*XQ#aW+*0-qC61Atqj=t%1hRB@9g zwGIH5vjCW$`Fa3Y_|hw`B2ln>Me+KS){ANaN?k-yZp%*BSY~>s5d~eDH zu!qs5zwq7)Ly?>K+!~iHJq~=b1wFu-*u%=Vi-r3+#!*`y9}tY8RF?(XnQTA<0K}if zl=51?n7UJ3-G1wIb!>@QxNMp_%KMN6c%OE3R5@zXdRIjnhi7Qh8bV`07Ad83vFS@VXw!Zenv{Kr~k{8QJoPgunf1WEDL zVO08Ml2vlU4x&FWQ8`sX#hNomE(r4<}==k4<)KdJ4uOq2LoSYQN% zSQ!ETo%6IC&xYFi(PjQuI zhP-qSZvz0L+|c!EJc(00(lFdY=`fG=?U29?{Fu=ZRT||!z;{O+SL~6n$XliQu1-c* zltSYVco0J`i-Z~g zd~b(X(u_)E<&)eR+UDqD%qCwU~&9>DVm)}99{>RH z{O3}7EDdjVp!yHruL=(}NfII%1W*+)Ozx{uSmy`ZIsj<>@{>6d@)j-XZSUP}(Iead z8~Cii@h7x<-6P(#zE(Ifx01y*gZpVReBeyRt>ZWHTVA%fP$FI?K@vQEGvfVYn)Yd* z7>DYxl?>vl*X~msvI0x~<3exi4)0CZy_L}wA6sUPcXZrBZ*vWotMpHuI-2->i42sp zPIyu40f;@X%Y&a}Mek@28(1}3F#t61Unf9h>(Jsc&wtnb@rvtF;2Xr{vIydOuMP5UqsJb}&#zu^orkR> zYsSkT0Kfv6mrH&*A-r{_**rA|d1)3tvGTc6uH~XNu!5{pUqT~#qqNWqqs7t9Ep>h~ zUz{cI_4H!NGVqcDW^9sQgMeK8>NI^Xb=5-b6;^<6-CoNS-fO*ws_W|-%&R!)mFBav z)UCLGUaIJ2)O4#})P7^`o&#}zd47{F!CEfyI0{Do45ZlWrCQo(s}>TjJi!3OA{cCI z+nf2@KpmjX#xHtg(7;*<-!}W`!e&>ol2pAO(CYWy_ju#Lv>@&EKH5voI{pNq>Lv&f zW2VB}YKlznsRwN`5r{E!M;59eyYm1+nVjzbo*|DGt4WX=1i;Q!sl6#b>evZOKhRF* z0{DFq-203kU}x!{dQeNom^^zx>*xB-^N2so8CU(~SCZ)g+tv}oSoFemdFm@>#$q>L zBaWeU0MPo3i5Wd&ELVJVHza3(c#u!r`H?o>tveX#r`IFCt%%k@j6eXR`&1kx%s(zS z8>XvcbA&|$(U6`tA6~n}6)DHSkn{B`?|XA>jA7owcU;?nb)t2!0xge}Sd1RD%l5C^ zQnO^mN)Q0o#w`pcfQy?(d?y*ffW7dHvMwQZ%yh1bvs$Kv()@DEYd!vtim^qvJ?Z8X z4ww@s@Xi(Ai_JpL1b`L#?xMPfy)(%$wk&J_fTKniFXj?QZ+ zUM@y)+8{O|c7Q&lWIas-(U|-fEF=`mP*R7@Xb>d@pJuGRUU!W)4YQD-Swt`TpkL|b zFKB?<%T_rXK&c5Xh`?NE^v!;&LkNQ1m!1qgk(Sx^^OLl6m74I8yKM!3)*$e&0iS*4+#_P7LI8-@C50j^ZodPAY4Dd^iL(l%`$J^%Sj1YSW_8|?HlCb++)?(sA34h|&LR842}tM8%5 zydIE!EtU#+i-A+*W1Txirza4fmL7bmB=Jb zDHqR{$A2-x6(bTJ*nofPuz{q(DDc(OqjbWnTuA6W5C(aE>1UqY7dERGyR-UeoiNM> za4+Am`U*dkIV1AuV_Boa1py#VdFz)Tjjm0T+I0-r%QI4UjuH<6F#>9a=URGFS--rU z4yeWiK)g+?5njaC#c;fi>?EEUq)ouABxn$N(eKW6z3!}tn0tx<0O9MIug8NOM6ls2 z2W#GqWXcydi{4=?Ynx^d&@wlx2wNn5+PS{H-}sxDvD#iteEC3#87}l7LvN+rs)%)7 z3Oy*0DBi=C^<_0#3VoxE%WMV4iTV-2@TwS#y;GutbD}*+35FJXYNof6^XdC5^~rB@ z7Uq5pM1s?9AEl29nm5A2z>&bs!{S`6!zUtvk)RA;)o}HLF=|jG;I-d(YlAdzivWOo zE-*`MCeOq2WEH_YB0t#x*DBxq`2oF8YK0TlKqPq9EC1-3q7_agI1*TC>TLZwjj1yt z*^UGiiY?_P7z&5IMFKh=pR415?FAN-Sp-6J(^>WVo9*3d2Jrx_G0|i3mWvCgXO3~> zFIhs%IFJUGbb#>dLbBA zn|1(;#<{Dmr5tG5z{ygJ?*S6X(D(?Ci2tX`BCuY4L$lJ@bAODVCxE1<-`MwSb*L;y?x8M(n&{ zOSC>fOp)pZgs6L}pzY=&A`s^kKER5ObLDEbif)|%5LYVtXYeVuhOt9+FgJtzPBcwc zgg(%2)VVCMl2XoPc`t1EiUKQqX`|AeaqdxJNF@Ns@2C_=oGN{FH}WGje<;BmJWHmk z(f|9FiI{*7d~K%Y*_0IJq(HPhTZ@bmA0px!sftlezTsTlW(QigZZ_@oX3>Tqu+t)b zska)33McCRJ4giwz_B>UniYphxz<R(d8WseIUgI3C^5P8ciMN2 z4pPw+g#T0H^4FkdD?j^Uv_ua)Gs(quIFV7?-uksKtIbMHN}MC(rU{FhARWJCByL zsYAAjQy|TvDtF`mC3X-9@G_q ziIo}zi$z4{YTNFeA#d9d;1dT+bB|Uy;KoWgI*36yv&g9USI@pCMs~UCk}J+c!x&j3 zaS#qv-#Z&6DTo!sbPRmndPlY~-uBb+Z$8j0`1i00F<6*dZd(Ef!NQy_pS!UJ9#mVN z@)GXCiruaC3r4#f0MmsZ@~w|VuG_s|JBO(k09YzLAZ>mx4@JmnOr@MPb$~L}y#@hL ze)8oY*FLm;gf?djNc2M?00`X-QtLO2(%H`fK9h08Co?QPpQBQZjUCc>1#k9mb7_{0 zvcM7mXno2XhvG>5@Z8$kVayx?#P|#$S3;m&8rYUf=UgdK4**cCxCIB52$ICLUe2e! zEdNIZz-nY%qtStcikEveyoY0oC45hsEERq085bbtS=&k9D{g|Ww!qC)ztYxqR6|!xxmV@g^xs0 zywXDum(rGQqG#%stvFd|f&yEm3#>MX5(yP%xdk|tNDu~(s){0xX}mk!nMwFH#Eq$UJ{OuodvlX0QUM2}8sIp~M{QQ;DjODO4?lRO zG5G@RkyfDqbh}TvpR09SohQutFr)?0GvW_iRK{$Co003jf5HWE@U>;|RH`0J-C6U) z#oJmXdZq#d?W;|zx>mp*j)@h7^^j|p^PMzn{$r#EjsevH$56D-x$tm0RRQo-IRa8N zj&sFJmePuahOsoS+ehvg7+rFRXaOb&$5(0o7tSu!y;#2oh=A7D+6CqRs(!_F9yAki zC=h_JO0Bl&=Ct(0Ai>q%IiCy( z*M5cv<>PZQ0+y7s#{8Z+W#Aw6j8TmWD#oCyhRF~=YKev#gRHK!IZ@YFJv-tx1S zNQ~MMvh)vou#A8XVc{{`6&a){bTsy#k~Q zit;1ox#I%?#gE>~2+Jzd1?wS|x^>fRRw+bR;TWG1AR4PX`Esys{q3;iZYYifF+Jwn zJg3IBP7A#AM?H5g^4vu#0`p2sg|gPi*c*C!@oqyel-*hQX7xt>oex#JQbb7ZEt+pG zKLLb2GSW8fQBse~l_G(Wpo8zNam`AP3m}dQp^QDXyE8XD$6`zXp_g4dU-YsD4v-~n zS>XDaHr{>W%>W=NvrO*Ly0NxHTPC9i#*Dc;QhTQq@!HzLqbFT!5W2t`(E9sBTF0Yx z%;C%5$g0^fhhbnkgXMwg{2=_{=P5~Qlo+jiN!HoXOVnZDNZ^+#-_p^^>PPn)3Hq?q z^WpUmL6LxlCwIDujS4+1F&%Sfj4Kj!qrx0*-PTCkix{z{O#taLUiV%V4YK1P2&~}(69Tp_zo*4(7NEcy03gnu zeRcwfG287k^0ankOI%PWLA)W$>j|{l!~*qn+%o%#X!#|fTqr-c$>0G(SmkM(p2u5j zd$J`mL6Ly9ug=u`TR-0<{KtvNZ0TZ)iT`Si&_-yj_Frk9+SV2C$a?R%+NRY406zy? zSUl#|Q{1>D?Xs4wHew#7#clVi!Eeph$Wz|9vL$p*G3&vQ*rR?A-Lj_g!YbB-$B%M0 zvCY~Nh{4L-OY=R#g%3}SE%j$6ecH)Hk8x5Fa-f{kpw&IS8@QFNup0AqGD}>%dvz~) z!W^P@FCi5W_gC`(`KO>}Iol+`RTf%*MkGR3uzi8hf^xAzx1q4S8F$WH*S%1Gx+ z3mN416TUcg&9W-{gW1(2+mu)6Evx}ZO@p_m8=^muVG4sVa3t_r*0@clTtz&sxAoRd?wzm@^Lmf%h5Hveg*c{n;AzHl>JNQ>e7w`ZEUE z(qAhEF<9a3Z%F;xI>VZf17gnluAD9#d?RSi!4c8%3B)X7uJ>#0y`})`opd}+bj!2F zjs^(>U;{4_aAhQO+}qJDgP3fL|1;j(s)6OsjSaamwxc?uuCHzk-R;UH>XgO<<>>EC zj$8JW7N4<90)7>FH&j5a)$eXD(bcD!umK1MIxP=n&k5*`n@8QK2O|Sut2`iv!|=tX zFY1(c-4*i#z8=gG{p&u{2HXG4UZqzfy}lJfDxl1hB>s~wIZAq z+D@gR2Rz$B@xF0&lW=0zMkRZ^;Y|%thwp2;P@96~8!4$=z{=2IPvosqMYRY`)q;UC zhshRw@Tym)zW>w2wsm+@M+s{fC_e1LrGztkH|xUI>>{Cc07^@BkMr5Dh?=L%-y9Dt zl(pW5nC<#BOSM8Y2{b^H*q`O^U^TsFwG%Fj(wS#;0D!$t1G{*{IJ%tvpHr@A5t+f> z^Wrq!3fU+j{~Rojyz|?9y_jrrGC-W{;wlMl&-dF-7Lu^0nL%mm_g`JnqDk zeN9bhLf{lJP3}J86c^WhtNgrAJBl$j5Yv>g0?5$)*p_(RvL)v3BjjCU#WJrLKeTs` zXU6`N+1^Tq)_G(ZPR=9C848DNgm#u}UseW)LH>H=fOnW4wM4u6&IM`4en6}v0=7EH z`{sSGX|FO_5C9DHn#deI=o2RcZ{%|m8`Mt#h&N456;vyazmnf|77|;ZwfB6~pK>eO zu+TEi_U&&sB*1Jj!#yzRTQ~HfT z+0Y9(p;c`$h;mjOQH~?mf&mh%aF0= z+b~P1s;hX)Gk>8i;` zQc1E)TV&+l#8fwDGx}SKr_Os@V3T@4$grx>iBs2I_oY=*+LJSndOeHn< z5A#w9r1IsgcJ4r-7!X4-m+l>ld+djX-kV^d8hq9#Jb2=-_!s^e>+u_PU>_|mkpDr8 zO*b4)$h~M~0?O8%)l+LJn8mu1vL0|-7$&c{QH5FgzXI#@>YkA?0F*+8em?~}HKpHp z*_8q`2;#+3#Zl#mAyoN?2T!^a5pj~38gk5Jh+p=NmcKCuQG2khdobHj{kFCV^coZi z7&UmWE?v!mq21z_AVk@RHw%$-qT~(!hYC;l$pOo+!BpqFy@j+mjdTD&QH<6nq+gl9 zn|qdbc2@aKzyvXCEvy-E=8}F=#6|8fC=ip4NBU&+tPl4w%^bGUl{<+kbDS_T`Q~!f z(tTgnJR3F+itgDm@4khprs+Q+oR|dx5-N`)t@%EWo17rFjN)QFrFvuQG72lcG#^K+ ze~%n?LLq}S4)PBWZKiOlzx5)Isj2Wf8wL%Tj~bh{#_^%ey}a{lyI7Yc5P`U>Pn_k% zg*bcz4eDR^mGd1pBN-4=L9MS{NT7no7IChGGW7|Fw@Meq{nq72aCgJ2yGH8z#I_Cq z_=em$AL>y0t~+BC%?I!7O_W|3waOMc9giRcW&JgMy_;l(&Hds+l#>E~RFBrA9+znQQBRuBpJV*a=# zmt5Y-3g6=2lJ3pmE&h-8HgcuI*2UIhbjV=YbR^f3@YVqUE8Dua4eIbs#ea(q&(JIg ztCvb1J7&(U>Ly$yXhM@WpOonUcn7gueUb3zu|K`o^4;+Nv?rMbO%Qh#!v6AL3;>C( z*CgnF*)D1aG2vQ+0GKj;V>|&FFT9|Q%(8@DK>X;M{c#|My)^kJlgmF?K6~ z12f1orHNiFu*9@PoOoi(15WqSgEXtO;2A8Gy7956_V_>EtKOqQ)&#X!XOuc2?GAYn1Y`q&LPyRB()myT9A3#b$1Y12I~jBgGWb zB2};F5*vS5t}8jS#Ssa_ppkB9FDb9D(uKT;t?EpxCjOwyled1x@mB7L2yux*(# zf9BR)FCRhXw?1p>nlTDww2W38?t3R5{Nmb*Cyx))Sd$kx8}g>xD%8HG zm|6Mr`3+Y68sr=0CR;?h-2J}OdjY1v*B~DdOd~qw`NA#mp@)w|4^$ctt0ECZZBn7M0x`yc)o+Ryx}bQE z^xU9hjVU@iiU4{G0PNtl(;06+>81LQUfZZeYc|nAj2_;SXRthE4ZSd;wU{?S&uq*( z0D!0u(2Hzs*Zlaw)86zx$5064V$ zLG~}TgB#PhDKj!kMjwA2e0;JS`XEjamzJL&ijDIo8Tm6Lx_~q9=2!DSRZ0`mt@Z3`T6+gpb&+UiGY7v@kA^>3T&&lR^ zH|Y-M47M;>I(*UjBchkG03=(OYjeV~qFpCl44LExV#pnb=Ie_{*#njJK;y#N6^(W^ zC=!tQNHJHWuuuZZs8v}#j#p2Y*0qA!4+{VUlV!s=L;S z361RGaTz#`59>@Ee5K@Tv>%xBmIOgs*ovX3<<}sz{5E-&9*^0+BM?{pU_7!GQsY#a zr#$;gdb5cK@Rz{Mhmc@n1OX76`WNrJXWs2M1KUI=ZxA=~TZedY0U8W)$o_aec;nCC zOFky=T!a8|iSL~ETa0Ky3<=@0(1!Ojfi9Mme8ml5ARypj`5hJ@?(N%FOcF1KUNqJD z5So#a2BM+LgE9v_?R+!heLy%A0kmGc%Xp!9V^6FzUVO((RnE#H*dYkpNz^pwM`=l8@> z89%WR!A#RJ)0?gsArTN~l#tG{0G7y2{WLS`>ey+@%6&4(4+KfA>VaO`cwD=j0i==v zpr@fh+-Z>*pTC#q+-Gi`(l+A)xH*d=9GkPKMJFHMrN`g`$kNrR^F4dV2LB(|s_2aA z0<8S)#Z9{_I-APo7!$^TM2^o6h$@2j*r5;D5SPu$y|iD~qbA#gfg^!G&X}O*^X4>Y zBrp;*yZk|&qFm4lVVME}iwpoy+}*B|yZLr0dzvP5V>lG_6$U<0?w+1unVSFz274LL z42=6|$pLROrejiB*GJGQh>wWPv30#ucJ8S{u5yLe19Zhtd1M@(>EkfQ>)q$N*^{mR zBG$~-E9Z<27G{z!zwO!@S_C_#B$7NUzxU5?4YPIB)2?7UA>dU@kEfI$M%CfDe;xdiZQZ(-sp|=du2qa2@ zXch|&%%yv@ES8gsngA`ql-1h0N~W%Ih;r{Iy+39R)Y7vtf*{}a0w0=@Zm^b|1zD2i=t?{}QoJ&nj zk&o6fs6(!0jUWIpl^`HyYm!^` zG2#F~uSBg&z^LpI*IUXkJbwWIt;2FbjBA{4^+=%;l@)6xL4g=j+Vu9A}iv@rp)p}_D;62@g1>hq_1nA&ha=~!zsus{pdSEn>4}u3J z)ZpwRTvru3Pdeiy9%I00y}^=_-t;HU5oh1n++PE;*ptcn^~a)iE;j4v*m&0_J;gS2 z^Dr=a)xhP;j_P!7jZybX-7u_$DWPD4-dP4Ig3=Tw#ClSH;usVNd2B*3N8fRbkL*7AQN zpKuo&>1-P4OELi6e!QnH9ISN^1OVKDNq2GPEv^)W8_znx8i?`bEfOcr{3g5>Snmq~ z0Bzk1{~hgGH^%?~rXak62X~lo8Zxp^`S9wNAoPN{76EVMc+yoY1I8igh2s!RP-#4# zC96AV0%8ieie!Y@bbXHw-d3z>1weDrUYdN$+uR>--R!shwUBsX#%00r`pX8i-s^{RH@SH)jE7NsWu z{=P8TGx<&Rujue(!z%z(9Etzw8FDNK0Rt~hlYbltqYE$3x6~apr8HH1nI4EWbt>+Y zegp0gU=MZ?zH_ycIV)=Z?SO|Xk!npJSpS8qIAPy&Ag*4%oB0Lr^aSL;`48u_y*3vX zQs>n4Ny+zr`oOg#YWc%LG2Ux$*1T;YeRWkj9Zqdc{Jeb|h<0v0_iP1;k#~ykb5fI5lN{T|rp$006`Y1SB5%cm=Hs zE3G&ort!z`R>G}`=mWsl ze)%O>O@9C1h&RM(A~Qs;7&MkQ-=6h}cQELY_deBQu!9~TW8k2*0p{(0!8LKV&iVwm z#s&3B`JCZ(Vp%B$=s@siI#A<@Ke`6U*6;cL{LPvN66RcL@0Cke9*WqFqkBFp^)1&W zAbYM$47)iiJk;M6sgNCndb0EIQ|a8nvIhVt9llnAEtdhs_G@ukW#JQ0>_J!x2K-Fl zvG)hC2b|4gOsab+;IH8X_23jeujX(|3P#)iLg4N2~dA=tm_-#-)U@@2-EIE>~ zkUHyOYsat#{P6|g4O6=4m}O3Ag!LW?{I^wCEf_l))4fK5F8{BGj$78r2m(MCGIF7< zb^{kMNr(aXJH@}jiPJ1qCWkM|pa(pLC7aKu6e;h0_R6mn&9(-02EZ8~#B7D-(VGRb zxxI)Nd&vg?=nDIsxV;Ar4Z!~=4;+xTn0wG_y$$Z_EV6+}@cg-V?yoZqjs$+&Y=}E0 zqz7oWBS9Hv54^t$&>H~LGr!iv&jk zXBGG@ybjaANKlKmPixz<#T!8!pZ5Lb(<^EVwk&QC9rcy5!3DyAJ>QSl6_fd}4=njd z30?ppw@TF*2nC;5ghW?gT&HKJmQ4-h*a%8n{G1N(7BpIV$fdkfkL^Ip?%FzRQMXDd zTkt_rKK$hY*E$%I#tK!H%vumOW?yUYM7Y=isvtGbXD0BAw_N{dn=kYNtxY8a zMFO(ca;{ggu>b%NADrARj;*gc=B(t}*88g|m0*H_w=Y&xM;aTJxF+#f-;2RpM~y32 zc0($oWJTeFFlOFc)n$RZFm;Y zRRDLz_&DH?GZ*!OcjsPZwRv0q0RS<|5E5@HIz?Nll};KFO_-~8Zt#xwal5iMRH)ks zJE%9w(uI#7@!WL5+D)FD`lX0jwxU10A&#y09`vq2tCuIb{y_1jb=@>DzP)=EXl+|* z;SvxkP!dt_DpujP2izi+J#3M&5FkVH%mY#XsZ{f|#O#{n*YY+;S)n{GqqmZ?zFp#n zEIJOG6Bh__pDRbwgMaKoGS`vF+Bo@zJ?NS;`L2oKfc`}+KsXGFwQF}b-ba~21x42P z?F$lXy!)CrpM3nar(OFZTSI*iwEuOQLkR>_O!KT}%NisAATAd7NI=|nd=9NZYmly3 z?c}HH;c>1$M512BdR^=atz)*=rQamaH%9Jw+x2Z4;R}L72Bui`+1Gg`AJ-;gL;ogG z98Cm@V+6_g>@`=cl+drPX#`e#qj{z9F#v!ud^I&s;$QvSc)Lr}rq>LY&_6O@t`P|) zI9>aBF6Y$>>l2lVg;zpJdunJ6TL5lxSti9lSVB;~ku#qs)~0)_g#%s`v9fg1v+n1f z{#BcV?E!$&(l&ZPy~t&Txcr&!51`UmO=Fk&;=d7Fo-_;efYz&&y%Yc7ALBfe&VC`{ zBd0WrEHZ({G>JXviXdORH*{dOW`U$afcEE0B|dX&UiN}KS5zKKO0PHm^kOD$OSV`c zh&^!@hry@K_L-JesUVR4@_1axPmJx4y6e1>qEp{|`i`rrg+vaXQ-w9) zTSEX&_xA$5Yh%7Ki$DkP3us85G*was-}d=!;BxI?Hb4LX;-TI8#POxzqcd`7DcX5G z;uVg(V&&GZN5%x}k!gPUQ7;XdBgbHi8LRTat=>s7yePbQ-B!0Q0UIEmA+2Md;dzOS zgYa+iKyob8C+tn72XA}f*Hxy^D(HPl6}e==o6gnwcB!GaI9X?z)mV2P8XVVp^J+$& zM{Je-|NGd^$gi4fpt)iYW2!A9xZho@Mep6yrMWqb2hec=Veoi`hVQ;_Pl|Z2S?D~e zHS&q^4LE)oHf~_Vdrc&!^6&u|EGA=}`@1T+U44*vte>H9?2O-S{C9m;msn^#Ho$N0 zFDk{B-&rIU@{f9%7_D}b{^?ZEELS$7UI#~1FE1e!#NFhfDG*TS$Gti#8nY%Kl6Y;B0`>56GwX@GCEOost0xKNGf7}sverK5-8 zn*b1ZEf*gg3$4C7MKmj;)ENQ2`4II&0{DJi_#xlAnn}|?gX`!Z{wb|ZS;!BZypJDR zA)4pPk`USQuz_U)i5%$hb#%)hW->?1NanDSCQ}x<1BCcMJW{o;?W9=p{Ao z|M!hwMKhk&yTQiIdWa>`8Kl$TuFzjv{pb!BA^e&cIatF~nS<7BeUvav*BB;U5k$bp zO?n1vI^W#>UE7Vx(F9OZ(nC=8ypUs)7OM-Op9+Ub^wT4cCTY={nId{9<~ud^Zhl!( zJ`Pj;vn`yBH&Ymbc%(e!Uk|wP=sen^EIX4FKwIaqm}^?BmK^|K_iOk5kWl-^Ew5zQ zamZP7x9o^j1a<^=SQLIXIEOn}Dh+c6xZ+`X&-!7C+itt3EswFm5}_DPSRFs1OYH}>{t(gb4rJ|R(7?FD1iYpIp;24GB|F~ z;?z8Cp?1K`vyeSsN?TXxgjSfohEt(+Z0U%HxwWSj@yn{5pNml+%#;*g5E%!u(FP~O9v@^oBp^va4N5*ut#<_ zO&t|DfAx1Ca>Ysj2A-vm=>g`=!EbL@B|6!Ge@g1-Uw%m-@!&Vpg|pL8OoHr4M?vnL zS9_o~~LJOEf$ZvJPgmlIH6w0wA|Yu+fC!9M`SeGuLr!J^J5 z@}NigFJQ5F8RxDJv+;4i1|q>Pb$m&iy(wzLz>&Zmd&cWzV=BlE)`Y zTV~M8jRpaLr{hOUg3XWBMV(9TtUFLZ05m*!!s{h<$H~*;6 z4+6$ysjqXm^?6FDMy+BAB%boxfp8ZXB)l*>Vho(R6#1sRwk5N&g)zY78)r6AevSOj zaWJ*5X!WLByfD&hU?k|j_xfm)w-N(rnY2JN(I@V%oXzOYh8YI{`a-%uFIZ^c>*_sn zIM?o25d*MK&;Z;SUNd;Veae&OsyF<*oUXGX1_1waqq2VzWN ziv9J4_sT?{ZO$hoY|BiZHU1jq)l#^FFXIOZ?z%E9c9-Y_EiaipyXKca_pXWQe!J;c z!p&m6C=JB8sOp(Np7+?uzGRF}%htRrNEcYT=q(RGFpaAJX7)ho2F%uL9afA40f0NG z2pCfQlvb1-EC8nUn1Hx`=1*K-rdBUXtCWuX8k82bf8C(RU@J8M(E7Z6PbSX1n>`Vt zJe4l3>j#YNNXJ*@dApFrA~}u#tHr+=_U!v;+b?v_qmCh%Z+5{iK#Z62XsP-Vt`?=* zX%+ z-Z{+&`Z+ATKS`#&km%+!#__C+^CBdqa=KckHmrr zh+ph7%#}Mt$uIX6_glx?hOA|0rieIrg~1X4$vpU6H!r=Syl%H8-ZcSODTonwddW{L z)uBg3Zk+J-MH^fZ*J8#NeV?+aKknB+B>2wSj5>mw`XdYsAnJ9-*SsxG=(5#BlSrWH zZD-=FH9ZGxUR*84Jveg;NH%e4bf(Fxs&+ z2*2abR`V7~=W3#R-4-Ks9XKLgp21^S5KTcNoQAcYYd1!DJJ(A%P;s{ z{!0P?8qf28}@0;GnM@ zeO;#kE7C&}$fz(BS|}Rf(?zos)&Sc&0BF5_vr6$N4$0NxBL6wH`)Q*y5d%c}ok83% z%-B2j=vQv*AjVTwo|ol;Usv;cl3#@YFtZNcZN7nHlTos%74Lb|`v&sdz<;*%bm-{NSY+6OKo7d!o{T_By<} z7EnuV$>TjvPEoU+FQw#Oy`aVtl)w40D|Nw2)%W2^1BW?9{A_k zB7lENOK1%9EQ-C&&5^pCie{6#TKz`x;1i;*YtB-71p)yG`Z}lH@Wt2|lAAm}OOMUp78U@ciT5cW44p^Y>^rZ= z<@(eB@ecrszWYtWp)2N|sN%(DX@F}^17(Jn!B1R*3sU=24?LvVa(e*?y)@5YiU&lX zlQlc&UTk{DI7SLvvjaUg)|X4&z@o=O{baq_$Lj?z z@xFX?xm!N!B=)78>>>yTO4eHcG{Kda2KAIkM39aRdkXAym8wCBQneCoE1fKfrIp?cjZtw??#`;C#q#!oDdb*#s z2A4&E*i+XjYXTNe-YD;~sPzO8tYQAY{S)x%C#<+-`tzI?gli4AM3n4Ba6ueTc4M>a ze7YCT20MRw#ajf#Z1CRO`Cao7L3yme6;PRAo$Lj9O3EWK#ryxDWTu;S`OoY5w13iD z2*Vn{7&W-ZwRHMWvzxSa?*JlSvDd68GHZKug+m}fx}aKB-q{z92GPITbUfjI$>DO< zy*pmi1(jQfpeOWldRQl~+K1j^|LvpeJ-3(K>8#$s8m)eM@4>FCXuWk29iSJ?SXk&b zyz5;3Rl%Hl5+aDbuKA7%M_Y^QIs^iQJA_#VJyQ4&ckK!UcrexhGFAx7dV|fwWqx}}1Kr|el_YVI zPbe^JcITTJZde#9Ach6`HOOH(*3P}Z?^W^h@#=B?Yc#%_!pmK!vOcKeh-)dU1i&$2 zGnAGRm0q=_yej-aF!IqoZv`MUiE9tXC;gD{U@hOv)7CdN6;qy+V@<-0`^8%j!d(Ew@5y^4CX9|9?15Sx{MQu%2ndLg@nBZh+yA#gGrD^-JD66r z0T185_#zMu72f@G9N$)|Gp3hzN;d>}AQ>n?XP?YbgDiZQ%yq3CQx6fs5@~^Ahrv?p7t)Q@MY8Mq5P6=UvbOssTeGy#?74PFJ(caT(_2?X z+HKK)iJNxyc(}WPGeO+lnEPSG)g>4U$5UH=$A|Bgu?B1Tn?G!=UBVsD{$jSMgb--3 zxf6jovqe9BPYJj-0eQL)stt0=yr4YkV(ZkJmcX%auo?=5| zhh%#|m#ubX2dmH^hQnb&85cg!E%>Zn^|Xs_UsA#C*#avIwn|g0|1uV{8J~6=2D?tqOOrF z@gN~I{Ko`)?=Or!tQBeYQ9yJ+p3?H*rY`&q{qP7-yG@yN1huJ>AdW%oD;RY9)w%T; z>>>?8=;g-hyulm(2eLZrl-7*_U=J6UOz?Vu8;`2&TvzC_RZ4;6*MO~w``^1iTMS7P zw)`I4bN=r34qADZEq!&&hSiUFvl^_0ouBS}^Te`+Gab7mn$rc~jlcA3;Vt~{oR&+! zxr8sj+1LzVL7A~JOhL@l{%hGs>Ih?l1wqCFh6c6k>o2F*%5(vAI9^8$F|VorzP2xS zJP!&_Tr0wb7F=MOaIm`W#T`p6r5nANek4;jJ?V-DaZ_JziK@X90H1DKtAn2l`dWHA zDUUCNq@Ook_lm!nD+lQiYwK@FZNEG)pBwU%b|-%Z)7HM5lI!BgE-(Rn*zZlYvI2LW zSY@IPwXVpykbdt>!2q!8mv^-wTmV^`KX0BlZ-`uZT}#fm?j8xEV6a_J!3-$4z-5t+$DYv3f77ccwEOe6=e>=#m(so1 zJthD^+$c|aFP9>L4f*Agu0CwM&Lwjq5Vx)NX)N9Q+;!);eg*S_j1avq@!*EEjtnz%8Fw?F1qna-NZL-QNpcC?Rl?OfIs(s!VTWw{;8`&KEK_R5=>0VY8cfONg1LO~i zEv?8Zm)pAm1uWnxDB~F;8SawXQ=rT=J?3i1vl~(X&X7T&5o{Szdi(OGa)Tqa@AV`D z3oDGa_nxgmwlD$+J!~yDHb}nhvYpjqv7U;+NNMS{hKD<3*V?zz+A7+oG2%i68e@wC z!*ndLfYwU9!d0O4;Y%a-UpeSUge54GY-uI_{L);V`NNpvc*J| zyZnkEQKiToAztCc(=vL1wp;DW>cwS*+1<& zf1rR!R>(PcWpx1%b%8B<*3XwZI$zzj85#gxVrEG{ChRL~S>${`$r2}>eqn40qa3t{5 zZ=dL3;R=O7fFOGIcIfZHuD+ln5Y>{0TMc+aih$m=o$F4ly#YXB)H!9ovW+8n3$o79 za~+qhu>z6_E`<=pvH54VXtCS%M)U#@MBiJU0>UeM)$X0Y(j0x^jm^}x1cU|@D6o)+ z(v8%S$7X7RMo7paP``jWVQmpD`YOTlD1rEf0oXlI%sr&SxP5*8i+R=ZsLgs|4N&m} zpK5(s-{xc&A0oj3*6HwDP<4&{CXZ&@PNOvtpcmqL1e;S!+B-9Rn*ay`U{Q0E{^8y0 zANo$$3NC;N;Nb?@f~BZ;TD5WmCtAdV9uU&jOJ3qKhx{2VGEe0gihvt*-W!#oib4@JhO}?OuT<(N$J)J z?B$GrO8OE*aG_x?jsMg2Vk!~2d{~DGpjNMl zT^vz^$2S1r|DCa81OAh>a89$@@_3X_-0+)c1DDNRCq?*R`^x5m6{X!K==R@cSJPBl zYY9o@T{sGo*M?tv>6C8=J6J4{0DU0)hxqF*fEEit8W}l3I9fpoWuKeNo!d}CBYjEX zJ9-Vx_HOp&@HS zm>Sa;@RfUR60P|(yViq^8~~v8e>0v8G(7n1NG&0&Va}b4mdYHka=ge^mzd(jfq3{b zX6onx0f1|pW9L;4H)(!6xQ21QzHxO-FPar!){CxGO<-Gpr6520;KE?|we`dd=?( zrn|xr3-QKwTciSm#3i?%$xm!)GeAK6G|=rhSVTVizwz-$D_v|(>+!zq{qg&5WJX+b`LMh>?)p72rNPn zN8^SEGv8PLmrJu}Yf{vr=n1RI(}idJ&hg2wfk19_$f!kMtq^*^!v+9Cl}Hs(lDmF- zPqS%fE*c2XvA1h@#VqRXotOU9?ApqMAOJGV{40o3JvTVtx3u*Q0O=&ka!mTYvAm^M zxN)2!2j~?)7B>F4ToB$a9Nej$)9nSvX4!x~u+}lnM4iN3(F24l(@M$D=F)2}QKB!w zpb|+)_h$ak`WkFTHV_F;_TEape`4$FNN^kVVtE(lfM`*i^*c z066!YIZ_L^i8_SLgaN?!VvhrSf#804_R{c>^A3mG3qa^)^u08J-u9+g?COnrLN6>l z;y?e!JGO-P2JY3^qV3N{Cjh__L5TO9*e^J^Kr7m{bby$e0Agw?xutM;^~;_xmUow& z3p_dL;k_E*>Sd3ZQ9}U$R3~S%gbMSfc-z())@IYitgVaC3qSxYUotTO)HwXO?!^^A zA*o#GPdbDhZ#G&r&uz}R>}ioRsnxsmZ{P|m`#LwO zxgzf=BBaRmncGDRodU}p4;GCG(q}p^4NrUjBnH44c_40l7oC~!p(Tg4a$O$+2rnT5 zB>x3@_V3oMbWg6QlC?3fPxE@&bs~N2UxP>J`Gwny{+yLQIr?(_!>*@lQPY&Z{_u7X zL7zVCyjbsw`fVA&9MLGof-mgQOAn>b?k>^jUH}5%n<`0xm)_f&O-sz}Wu^F#oe|rM z?EXyG$u%4D4<7=EQk!3HTQG%NmMW7Lvs+*+@%3`=Z2G{x+ixhSE!qtrJd=7l?LYB2 zlL}`Ww!qmHbQMXTDVM3K?=zjNH7}E>muOtT|9qA(cTL<@*qd2y%MkG<7Q~4M1II;` zxWvnBuOh+Q2Fgr zd%f-E#sdNYLOkFqOoc7)-#`2ULo|bHgl@h znd`;OoZ6c08W#ZI{nYKA9`D#zZ2Z7!ojPoidOfqOxeGhiBkg)ZiFZBpJ0>7WIx`p-+dzOzN0Q8P+p}o#zqGGW30{~Vl zZpZ@#!YJ`?rbj!j1=kPhNaKIl!6%MvAQIf8>kMs_{-vEEV2^EC0AwzzKO~QKGFLe4 z6(D`%VTZE~wBB6d00cnKPV?hg`EK04(mlIKi>4szT)gTTXvX1-;`0mMo!fwO)a;nqDMz(e3A z`Q0WgyBz;Ytn=|{n@%4b8jdTu{KA6=z0|Q@6e*lC&q@yw_)PyXnjKZ zl|i`LS=RX!lZ~Da3n9%%&qV5<$>p|Ab^xgAXE78-tlW>E&frE+nmzzvXI$OGLGiF4 z`ABWemYot}bPTspAamr|mP55C+F-s<0BHU7S4Rb{_ixifn~Gh)IxEB&2L@a>w*l&6 zp;x(Q-H?lx@n|6Z9)qVY+8p?Qd|d~;Nag##vbXH*+97-1dvVR|%*c#nRYpQ0W$!&B z%HAYoQ<;&S5tZx_zakZi{GabR=X>7gJR>Y!p$4KO z`R9NzDl}g=M6>B#t}HD8!Xljv4$ej^2HPI;xE+|6d~aUNY!^igiLeel>V8Gvb5aW( z5@r274lqI;a#j>0qAa`PX&K65z8F~bN4-pF>bbBEKwW=H^~Yj^b@-bKD+ngrq`LN_ z%sSziQbq#-(y49!^HJJ7CKnO}fIhH(s%u4U8k&E@Ow(Xz3kcW%8gY+z+MCtLqC>5ra}5@o<9R9jx{X9(-cQp|thmFh&-Useb*n zv*=CMJ9~CGbxq>tm5b?J$KEdg?P}5-r}!vAm+Wdhw(S?}APCMfqme!;YX(Bdslh>D zyq3+vCzBco5MFm>I=q%(nT`Up*$WUFKR%Y-S@Xg{j-4mow3Drj=T4*E@)LPwheUV@ zQAkO7cm@iQ&NEQSUcIMJ>y-0T1v2SIS}Iz#mZZzf8D;2?1Qv32&5COW(Z20`_jMd<`= z22p~7fTC+6b>(fgl>oq~%XERFhS#ma5m*hyPHCq1ea(g=I{?KG@{f#ypJIp`kZztm zY$Hve5dihP-!YK#61cl*N7$KKT+;^tc&%GD$FXrwRo@25ZO5k8MoYuh@|5zT0Wz>o zX^_6Otpu_}5U6}MKhj^u`~8UZ9;un>0pPGyEty|uO|?}?nr%duPBncC zM>eXeO9P|#-@Q@&!PX{z<2aWUcFM9-7%S;s4SYqEE)7>kMRwI&-q9|dC*FU0l4248 zL6AYOvVS+#y5!ylT$IMH{v%>}rN^0gffHfW5F_kv9%#zBOU-SY1}JMLGN!+Yr$Qu zoCV7&Gd|U)cuZxbfv%3_0{`# z^y`UTqP}!Q9vJ20CN-!$#QbbH{WRg zGSxf|)*}7WCIHbU?~T5ysTi981eTsQ?BUy_DZJtzIKI0EGldkY0P7vCg^}-`E5ou$Qp;Du2vN zUGF(f!MI6nF(8H3v&1(O-O>P~B>>1y+nUFnViPj-k6f-tRU^YSVMWUj{dsPG)?Yof zwJv8S3Iw4n0vPhZ>MV^$^|M|CHR(tLgP;uiyXt|{Xbd1U{yF0oM`MuZ?L+3WQz&}>ry96T{P zG2>BxLRam}C|wbm1xfB#u%?M<)qC#TU8QeQEZf){-KfFU^t5oi< zUe0h>CR2P($*dWG5?Q-lVWOi+tY~hkS0y|=0Kim(qcvU;=4jnHTM2vo6iqvh3J_R2 zmdCw@0u=gYT&i8k?5p7FRqYihoaq&jr>vz!;}rx^V?xXyLJDk8s3|=Q;@F9V!dd#* z6lHB!qHRcNw73&wf(vm|toF%?I`!I=uqp`60fghtEQ)?PKSVE>m|O=+00A)Xn-+d@ zyfUn%reXsaO9v}W@Lvafk|eQhO!SBc6yVuWLd9s#48CuD@;^OTnTZX6r==oCC;ISX z?MJWZ;=wlR;Z%l7xp%w!$F+BLoM^iZdc^}ORpck$B{b|A!&a}FS_5tNYI^MH3xB>G zG+O67TXPJ9j(2MKVetL=-S$el_5%He72fz`^)WbIFRcXI3$V9Be|!6lV}26JGT}wL zjMS9iHe^rq;nz7`mff^LT637<>Q@Ef-Ap32R}PNbumGZ?iO0-~QRyi2PKu_=`c@?nP2rVO1;PRNOsSz@KG_pne~=B}5CQ-MPF!Y$Z~Z&_t$P5C zeb!6O!`}7A*v{sk+r3lZmJ*W8oI=F6N0BLQ!!^`d<^(Jv5LhfCz8Lwu&M-zpeFZ=p zfC6psDCNL#3i!v$Kx2G8fsNB%ylICm8$ajmGonKObM0NH zNT_}9iq?)#Ab9`K3VPGTT-0$! z0dyJp{cP(~LWUXuSen3LdSn%2NE28EAI0i~S2mK002o@kd8 zx1Zcl%U}bTT@W+OE@>MFUi~9W_=s5;g_J3ZXn!+%^#DMn-&9KJJ7@MC(=bg?|tElqT4~SA;srPyCLxOI}t}uu2?nNqe-8|8@jGM<4-M7_e9iCxFf;t=E^YluPTSX7X$6?22>`N*5_oqYsPOKN9#;u@^Le1h%`kbBU)J>R~hxM4hbU{ zLDXWR9dn&Y+>$A;l+QolOHJun5Kr3+(O90gFEp)=4s&BGQi41uH#Ktd0+RVFyRvI4 zwmkUC0w&r3iAVSwfq$>-5I%na6@UQ1K?!D`k7rnK+L)9J05x`eV;N_RL20t*O3 zV9Ud;Q$2yplc%|!@|yYv6foUIV!`Fb$K?SvSLG40{5*NVG~4Z2lB8>=QCuC!|LueS z-5#Oq8*^zFz<9%-N|9NUuasV+irQgMwg|c{e;^R~g4*m-a)5oc1ji!)aZHza{qyXv z`gTitBxT%=3lOMhIl0y!InECqXq!M&K|D?HKzNUlsciI;I8Ho*H3p%)Yv=%Q?!85Y z%JzFpS_zmM!&3~D!^V+tXx_~u{z(FwN22}#fC(5h~kTU)yas;MIZ!h5M>nv9{Dx*EbjFJvm zlmlv5qGkU0dV3YE7&}W{lg8$itHH5+{iWmM);dd>svcBE%1m;BP?{pYgBq0b)6V+N zS%DqXdTOPZFBM6yGJ*hr21%vk!N7}mtdjsh{V@n)8oVmV=SG}FIF#o-foO4ZhanimRDYu403vVuJhF@J7;}c zZ@rXREtI=2B87ozFakTY|5ewH?t!@=FbEouX_Y?e>AJ861p%Wg4bf+pTtyHNY+U&# z>$(xQacdc6I2qu*pm4a?>n^s9hx~%ZP;rS|#zW~x!{=E8pXr@85o`Mfe8!KYW2bi< zRK&cowAkYPRPr{7oZV#y+G`)zNveHlq7RC6U z2(mG}cIM^I&kBx(4s61NrIGHrp4w>yngXDR1P4!Pf_J|E-E>m44L}g-rIc~ia{Kf8 zy0Ne5fzEvo4~_c>sE-JXd3_4$ftsV$dCc>xF|qbM1nwVK2SM;(|5dY(g^^Wi?!>1H zon<0u?(*7(cA!xaxXpk7+}X;3@6qxidbD&Ca3^_Thib-rp4mEc59`G+*S|)IBho#1 z77pIKc3Tsh74VJ5@GS^AaplTr-h=n3*)q+B+w-dl49_?ZI12q6}F$t+;%`{8LhXG6wmMD*~q?y=Kay*7Y?Pw3Xh$&6TpN&BUBzm-uh z*g}kh0zS;RHDPY&rSDzGk2`WmcEZ|sNqLOR0EFcNxcw{7xnRh{WrMQ40-szFuXnsz z13?k@q!2W>;1{+*83F_WaCBv1A5gB%*bJsRWK z=)ck}9150=wAQ#k43EbCFxVO~p|0(qT5C8`gqOqVLOS4b4R5FOfP2j-)s0SSUObslyzJbLE}Cr;6) zc+ff;nKCxpDJ`%&xkckK&$)9TC9Iz)o}V#DTie}s1Bfw??=EB287loe@oZaI`V)FC zEcu8|Xw6u1exoTEp$URYv9HQX=%a)ew0qcqkh-elOO3b%TvL%4Qo@xiUssd|~(HsC0JE)X*gPC9eJXA1aNs zC$OYYP$Y%0SX{{W?-^$zRcG+TaABFJ0Km)(=>{1wc0pp>XzZO1m%CC~=d@Cy4in4g zOrOl&SY=~w=}aiO-}xLAdT#%A#_*nbU=QKQ1AC|XO|u(I^f@{QzlZaej)of#ZC0y% z{$DofhVDeWmn?lTGw6>KU%ip>S#4C1Jb}>^`4qh)V>7#*Xp&Ux+KngxI(vrd zoq^G(+GKm+fO7!=O9IeC9tvFI{%J>s-DBKyDbmc0Z^)e*2oQ=Cf-c_8>*O5^q^ZFc z31l&f)Ht>^K6S-bfTlzPa@!m}^i8`!?84#58hT&8v5e!&DD4^y{X(ZhV~>l{kQzhz zK#gUe*HxzyV{Nh`Q-8ny&e8a8xIIot@BQTgJLsJor!AlRPiHo_Y`_K_ga$hkRvtXn!%pxUBWj_O=w0~q|b?%s9O3x|B? z)N~zrHh?h=cV|o&{UfKghg$=JB{2&Ewmfs zXxvFautDZt?JII)enRbHTBYv#2O5`^hX3EDeEsTQ=rdbx5dt9d6jnf)r`FZ@%Jy7@ zDjMU;PJEw>-itDa-kT;SLYF!2$PW-Jmo>XPJCzH@wLfdk)V|~{$Dnat>3yjrXXWOV zN0uMvq@GWzrqku8@h5_yEd&$+J6q1NlQS*dOsLRfF{mKjz+-FN$Y2{zk@B#AT>5Vp*UNxrFIXGN;HqyV_M z2rY4O@zcJwbyhblC6yt7sT2-bf9MpaU>`ro3Rx2)06?v}al9K(w7^EKJluh$8i2In z{@#~KXA#2^K|#Q~LpR&5LZJtWo6xuP+aKrp*AJ&qE2UAZ@Z?w;&R8NrC0nhG!W&`> zXz7qVWQ*$|2{sheCqaxH1OcEcp69##kkqS$&+-xZRzSw&Ace2FL53)zwgxXaGY1B9Ma92^Zy@ zqVFs)gJ%#N1U4PrN9Qdw=xAUN)NAtia1SO306ioOj2vJalkRdVQd{3$rh)Yv{J1#W zF8F)|<6Ki{x;o??2u=Md4arWLqqUq;3BvzAGjNuXy-yLL z(EG%Ci7I{aXp*zA&}L6%d$c9*=$R$BsMas{zWy$YJ$P!sc=-=dNSCsSKLbv-dXlz< z;U5&v$^!tmicph`&ay0SmS6_}_yKQdsOxiqWpN5j?bM5&3gLRj++y#{zr5D82+%a6#A6au1xb;^p&)!-f4!dM7*RotfkC!GaoK5&!_W zM}bu*1{qeJ$p(I+6M(5Y{}W*p6@QTYyimyJ!M+Z8#Hk0B~f*d;J_QDi6OL9tQwGwM|DpiN0T_ty8chpJjb<%#5tdJpSn#Oa$Dk532IMraovV;v=wpfRw;1(h6&ck3-w0H`U>3LtoaJSB7#8kW)vFQlOF#A>kgu(rAZoDyLP&~bkK z$FFPvH8t1+q?ex%92RHZs{3NraC;1vW~73gMZm5yscpeY1y>qlO2_b(U;WeE55~M2 zu3my%whUlR?>0I{Od*DMLAOS_36K5-dAMctbFO*XgWcnT@L&L^SVgi?LidlZgop88 z!WUln38OS{ZGAg=QxUR08~8l2p%j13x4N=6xp=2gp}G+-RCkrC1#NXRz$S?-%*8k{ z!(2Rl;0(L6CIA;f!#+?oNw_icn07p;;OY`R6C(uV*+&53->L3Vizh$j{ z-M|bRkhh9F0N}HUbkft?qihAy=K#Q!Hs+R6bI0GohPAbf#=r!D3QiZ0O3|!4wP%}3 z0|0$=SesyE#;O`*oD`rl@_@>Zljl_Y?ek%dv3KSelSar3QG^9A(kGa<}3|o1*Zu( zpkjlKrN^61?rTGpa!${I6|k|gXWJ-*E*9uZyq-(jAIGgKZ4}kaPKpK%e(- zX(8QMCjgBx%VFa=Yij8PZF)!EWsKuPUd-rElP%QdcgJ<~4gdv(W+>>^yxlba?pO#w zM|qNpz!9?4iBSryjToJzVvfsuol3i8rD}RCbp1aF1PJ3hK^Jl+(kmHmlxYwEy^1uC zA>j38)|A^l%tQdr2|twi6-$q9^55tH?#&JcWp1xu8*(odkE;V09N~kP?(eKqkGqx~ z7Z?eTR7;<*ZV0oLL$*OJ`Mdw~W&M5lG(GIu$^i&~Isf%>0GPwK&Rtv&8@6(ANSF6P z)D}A;38Dk+_R+mY?p&vp+^osrXs`xDhbk<`$RFg@;=e;`=`{knfrPG00TtV$>k@Gzu>$6rWqqjDeI+Ff90U&hslR?D#htMSfk9B? zvPE^};noBI9TRtAj?dn;ss9@C>Z&j5us1m#0Qw(37Q<2{>z;zz{|sQ8|?*YAQAByL@_Xv=X5T3lE5n9$k3o+|G@PYE+gxcBq2_ zWWY~sF`E2fPE;jb`I#;_j5h<+Tpk#cc@BehvVr-W%5X&f3UNfO2LyYaCKd5>^pyG5 z-lWOVpj1fy2Y{)m-t^V{b)rBm#7qjnuaOMv!Id}kkLRq{ENt|pwz#QQ0Kivmp#a)w zS*lUcd6o45fGRU{~Plm{BbWRQ;fRnKF(W^mtFrAH8m`UoA7WsDvy7}pkQ zpd+?iBpL=g0M#+|5;=xOepr&NlTIkMp;`3SYJA%tIeO;5YY)a)HzbuyLK3X)mq3J^ zpr%<&pCh$?57BmD4R(PMzHIrQo2ipZIFR#ky;1ecm^oUjCXYior0B8f6AnJq5JYP z*#!7qPd2P#=I+zpNe6YB54I^nc!H|R?}@COXlkZoueH|(cF&p+h)#0kZRa>IrqsD# zZ=j>v)T@Q0;S;3{y|mW(d@DP5Q0)X!?Ro?LY|k9pR_>Pyz!pHSOU;AQ2kh||1~)l`)IbHV z*$}Yi;7+X^GbRIo#<^DJi0Se}eCK}o^=F6ZFfnr}d{nE63={ys|GKAeFR|P)_h0Q1 z?iL$V4*&-7%<{M(v#nDis<<|?2}Xhd(1mc$j-|B28Y(x%Q5hlt;hP*RbEciirUf@t z2m+u(>J2{NTe%g8GfLx zg%aPk5ZN4N*B!U6Z#M}QpjMJYy2($n zNslj9taEsX5Ci}=G6}eqth@FU6Nms{5r9btCgA+>;<*DFWU6R@Kp}s&X?_)bJI5+r zftskrFiOGYS6^Fu-Va>WD4KOrGzpM)X%K{yJ20tYz6@Um}I~rCebd~ zOq^GISV-q`vmgL48W-pg<9oyQSnHKfGh(12JQ@dMs0jER6|pMIr&{ewdmfN`Fi4)< zgK3q-x->>9!UKV7@82i-Rp)~N*6DHMtY}z89{fCFn2yoOEXSA4*dA z9~yHNuEst$BvAK_*w@jXD{24@%CBIfPWt-j-+F8^g8(QXN{z^5zu~+>GLbec@-_yKB#L!E+cGe}@+{GLzN&%gzB19zX>ifX-Rwi|i}#O<|_ z)E?v)2B8HzzOvueF`}v-G$Idrh9ZlIfHG&KNVamx0^kXp8E&>R8O-ks>;{zBx|->z$aa-EL=^nPn~d#CrqnWD;% z%O0)Q;f(MFrD1Y;P^0J~lx)=>IY7I(5ncm>8oU49Bb|_q@C11P|261C@n>mIa2*q} z0N^$DRr_`O9a?bHxNx)9sAL?`lQ3WgjU4$Ra>~_0w)l_bGNx(~1BH)N$^B z>>auHxou<(_)rQN021UL?f_814N3Bb4bUNhf-Jp9rR(#b`L6U`wrE@3nhHRma=Yyx zPI|(?^!WvA+s5`iTsd1r0Pu1KAT+luejR6}EAyjY92=nk^=3w;Zl&yJty{Xeg<_JqP;SeIFw%+teb{L|Jy z95zsurf4a$UE5EV2B*V56)&un$%tlgm#`WT1M;(WlhXTvN%`r4{Yc%pV~ke0NsvKs5cuI<>qc3lH4O}czRGtXJTDLg0E#{4h0i9x zWJfIh4*)dA@fJ4z^1;vHT7%D_F?KJh;|Bl zGjmq@Y^)a6U8I3SVgnBpuna`r`{bNx^Ul=NMFw7;0mE7>`QJ2mXSiknK<`*GVdHc` z7a{*o<$(2!bmpy4!TGMy{9=?|RWvS6kf$Xd(70q}J+U+{4gebKp)dN2r{M)qDz7xr z+WGC_Cw69`b`r{<$|Vup1kcYdywiJ#9*N!cSLnXFniT6y$brNAEkDe!t!#>E z0H9JFc!ia*m3bKrc&A4fd( zlh=hM9m0E_C~*ijaBP8o-?ZG$aLX1IH#i}U0Z82SdtZeU){WH~F-`^m8p{p*KHm+_ zeQL8peSeqFUcMzeza<-|{l@eT0D2d#`2L=v#3Z{0K?6A1TWQ=CjI;84SZ3H;V!4hi zcPk6PDxM5;MvwM2l%nyWa2W<<4VU4IH@byu2!Nmr`&#z0^-niAn%ixBYs@^Kl{U{^ zvIS;izTPGx_}XcjIdJPCb&ngAI(xlqb-p#q`X-*qHvoL>RnOWhd+tnSv!f~WOZ}{{ zsnQ>`M|usYpT_|1oi64Cd7)ujoEeS~XONrB0JcVY2Ga#rpO4ZUC#vdfi*Y7s0B{}7G(LJ}sqN16AqEOg;Z2|aRb^ZfJ-u)l z=i*VNe|K9Dycd$^ZI1#6JLd?cbPQH~>GhblrcgMiV2t2I;OZ5lgV&-YB3hQ=Bk zWOMPYuJ)L$l|djt+JnD6nb-EOmM9Tj#M zff}g1GwiklxH9m!3e^skwFfNA&GPx$^egM9BOAxf)(tP_TqQ)rHu_+dv*bQz`eg?s z3^4J#JAd@gKjr^mSuVEosipY9dUMQ{2OvG|KokVK+Oe z2H6Auq3=8h}Cdf6#Sc-2R6S9Ka8S9sk3U z(1)u6%O~3ZHhA)IqK4rp<B7M(mJQ>Bet7T&#yGg$QO z!so0Hx|n4Jq%M>;3m?C8CjbO0^3MmvpFPu7HESe?Eos@b|8Yn7mHD2Fev;G%(I(wGM?AUHSk%YTqmkMO3bCCFvT0OlXE^0WaQm!Jwu8Y_z|)i!Z=%wdyW zVvA1lGo6qi6&mu`*9+`{i%v<93yAQuXS&a)YdK8m2>=@7Ko5I=KJUkNoKUSt^N|%} zgZYc|hTDK=WjW78>RF!o4SV&5Ju|^!lbCFb{P&gcX*%~%bvC?~wxDfYYJ|5zLrC12 z!QQ8){L=27?f}4QX|3IXp#2|B)^T7wlpt5{gMAO(-7SfoYbh`QXuS8IMqbLCSnjm~ z$HTQ_&axSc)@WyaXxgwcPtFUv-1H|e>Ubnj9y3#biC?zfl!$v;5==t)lUknkN?Ta6g3ArGWe=SH$Z_GZ)8{*ujdLyW6LD^^gcQ!0{XJni zn+jF>ru>4&g(r4&@}!fX26PLb(_fI59PK&B0^rqI5w>e0c32TRZF>05s;ZED}^~p0?q-$7K@69nATY z%!{wsfzI9mK<~M>q;`0Rp{DjNA1>%v=^BmocFHdoiiRgB4hk|(`3b7(;+Ji$kd4Eh z&*R2?dgK3+#kakYD#WQk4s61W@4o+gYl;@qL==w^cFkDIXJyHEg=`gaiwnEFWl+`& zZ$+ijea_EpCQ#1J${N1K6$C?DI>PpixnR$PnTIqm2>PnwLp$kG5k5$0=seWnaMo~} z0D#^v*CyBH> z;3RPRwK4kqwR?n`l)o3%H<358g34&z{7-ucgvtO#fP#Sh&2rhw(120`@&JBP=sP&8 z?RT^hDB#Ey*AVo1nm;dEmq(czgCJ13KeV#%e_PVz4i7Q_(D>Ufg&iAxn7nuSo}YeY z@0nAEOk$r+9zguekDY2;4~7d30OSFM|NXb$Uun5JGD|o+0HATvZ(|(ZvATRPy>%VB z3ABA)&jmNm^8IUbkz;nCk#`&{ALz}Wap?l%zSN^fb|$3$0q7=AF^>vnxSV}F$TnJ+ z4rXPAAbK#8G#&6zml`@@nDa~oLGa5TUvgxD;7@ADvH1f)8O0W5dA>#|yX4oxcksMb z4>BiaCyE>Jp_e6vke~D(#`M#I8^;4n_{cM4(5uV||E>`?g$$lO1mnlUvfX=a0FyQ- zp!W);CONKg@%+m2$>S{w&+yL+3XSzn-Nn-RY}Y^oB!E8hd?nq(@-@6^m$Q6(U1V3ae;3l{1|_^MQ(doVBxkd)I5>~K27hqPn(eS*m1}(iRBnj5ORrSJ`_9_EF@Z=yE z|E+;B3o6@l3?@4bbV0`Q<%*9D_hf?bQ>WBg=?m&aXW|77ky5$oj{5?byDpZ>WmD0t z0YvqqGG$7gyuYvx0h3Zm2|wQ-w%t#uLl=y(2Oe#wY+lmPi=Tfi$z{tT1C+07snwhV zj#$j?ArGi&bvG(g#9oy^1KLT0J)oZiJ9U1?Ufa~lAkYPw%z5vS^_fvy?EryIfZlGh z!yhjT#sIh*jigUvY)n-$!%!Z&KsDjw3_U* z6>n8ldlb+V+WRXPhNXo4=Gy=*2M#dy@Yu?nWT@|R4K8Jgn=OFA-m&C69kwv#Oa188 zxZNj>kOY7OEW&(owK$f-(QvOHp*&>JAr)|Tb8Otx`3QtJiZv5Dr#?Vtyex=PRoxYPakn$4CrEDs2` zc%z}OwFXtyF(kS^fo?TRES(*t;%ry9F4Tr;s8h14nTNZ#Ii(WRr@ke$$HL-$1 zLp+zee(dyKD|zn{$_d#5fNCtcx5x%5!s_hsUhW7Cz2vAUe}a(W~D3T+3rzgCGFDdXmPM zC&`(9wme#EI{$9#($)tRZGSYp-Uk)tU!D&~a{Foc*Wn%u08`Jk$yt30369UR<!H|Bb}J@yBs(Q7X`0E^4G(JPjszdn=AIg4?2N}Xo~MPuwWp#!uuyV+`hGW!$yj z!g=o~4Os-suRiY?zH0sK$cf$o_(LS$Cl9E=-$|v;g=@A|rH#W9K>%R#ML@E1Lu@J< z(97f?Uyl0ESzmrNDg_0+B1D${Irfj^&c9b(qyydE#-ki~cN+jCEV4BH=uT||cM47b z8mBln*0BMm3R72qVEYiV0ve-$e@Px557k;KGO@m0o>FKZBtQ+=o$Mo9OSCiqVCh8T zQ!(Hl1NhIk_u1>AZ2Ya4ZxFX=>{R?S+>dCY6X&HVvhs>VO$M)b)OgfR<2~cTSpfjO zV0ysDY3J6k2SBpY)oTpjXX69=U$ldTjk|k|$u}Y^s>_n_p38bX?@p4!F%lX-`R)bV zNE8w&JGo)ScjL4<=RKQ+VO8e%EX51@y=UE*Grac=(laPQE2aCV@&Wx0rVV#60MPi{ zip7pK!TanVXWN3(!JbItZZfq*9RZO1^ZDO3>4d#xMu7SJ&c|Bt@ij7lTU1KK&_PoX`5wHl##=A## z3J$#}4zF7I`j7Cx8&;IZO2j#J;| zJwdfsRw*5FhYcJJubI3iU88pm=>7P4JI3i?0AN3CRETzJ-LqChOvOczCxf5V?yQ;_ zE->GI!8Nil77CCT-*{xJla}q}{pV@wRw;&UOR#%w>{dDVtQv zJL0^s(Xrf?3xl71^Mwhlko1m?B{mp zj^KD5V|C5XY{BVA0G#!VN8zEV7VYQS#zT*!fHD&ubde`$k3Ai&8;4Db1SJApka6>_ zN#C_qt=VHyoB73cz9A3p`Y$~A9V$ZU_HS-uyz`XtSkCYo^?YuZe=MUgp0{t=VzWX+ zHuZ$nQ?8A3mWNwCm7pLbiWBzS`oOmE#yoV2MJ0M_&4MAjx6nT)(UV7ycFHywYgVds z;nuw&zHl(9%ZkpOrzR8#4;lc#cc)^}e(vo4&IP-7YGgDu;uYawrQxmn;WIxhepmJ~ zGhCUgXQv8n(KUuC*SJ~^zE{oc&Ls$nv_kP%JUq%az2Cz#I90cyGzuPWYm<=^B2rAq;_DS61JG9U}Gc`pwDTM_W>FRit$%qYtAuQOtFo4mFsP~eKv z^XKw(3!zY=)>n49z(hb$P~boQ*&FW30HCoRt5;@=vRR^bcvcyu_2_L4ow-Dde5sw8 zmgQ>%)bx2bNi1Qq!{PDGI|0)aZ|%>tDwMw#9#p@1F`{!)hs7=JY)7rs5ee}-1l6hL z!P;NLlNbPKthF-bN#Ah3cX*BU63T*n(`{C$k>mN?o;iqMI{C@dzy=B%XZ3o>?n3uE_13sb#KYdzEsxSB$5@Vc+2BFP59t|3i28T)jqy_&COBUOMhzgWUy70Yp# z_GGgI9}P4$4DcOg+Xa8u?w+wsZG97zDci^UkLTrD<+&zLv8x5m))|>;;VcB$(uU5T zwpiS30R(`~cV$y7v9(3tgB)nwe^_-#2E1}wti&zb_b5XjX;{?*Xc->OYGA9Dy#s*W z|4z5WpBWT9*4bVzX5*9jo)z?&F_MiBd0Np`!?f&)?E;2;r;&N9zEg+ymQH-9xYml< zZK9Camu8OcJL93P6&k9IY^@<8UlQIRtkz8P^kZz-CQAeXpe_6AqKCFSP+$PO-hJ<^ zoG8N9J9|e%u!Ntb&bS)^h=Da%_Sz{(0}glq&CXx#w%7wJg+|Zt|NOF^4aYbVFe7C->V zc{ATrhnD&zZf$W51X0E{kX9v6Yk=8mL(llo8h&c`sNSYR+=BO(rT}EZ)(1Py$OJ$$c~BO9pU-?bN~`&u9}n8Y8bBDCf?)i&1~x7+(;m{a zx=Gao`Odkf>`+@7K@fe7lL0JJ{PbfH8>CeZN-mYJopgjy{%mA>?Q3SLfrfbMC+y{9 z^p|%mDqnZ^Av@=?_v6wK7v{UY8<$y}xrXgBOhW*mu^x)^4XhoW8NqiUd4_l{qnBda zZ_I8}AWH;+iY^Dw{rGvfz|;;dtU$7cI^zwW6E5&TDT(M`+U1*O3tZJpfdK$31vh4L z)QL%C!Na4%S>aSkPki6Ly3rn$=ngn&(@%P5qSoxZnQuw>gn%H|U?!jrrCDjKll%jK z#&x4lc?0~!ay?dBS0(h__9R{$Oh{!+};+x=}f zK;w60*kY;*f8K>t2Ke#bdv zHttfZiS3o>4UO~2&rjsR$&is=B?-2o6Hju!zj42Bnn>jm?q^GbKu=pfsL)_bz3!b_ z8Uz6BK`J{lWY;rIcL|mNxAzFY_eNX3)$1azFQG9S{yzD2#}4NTJu2U9cZFvs^1VH$ zLt~6-HOqhDeCVNSg7MGx%EmZvmAyE-))PH9_11pl))N4r@hvegct$2BVA!Z9+67!a6M*mQ0Dxnt1pN0P zl`cSBJrjV&UnDQ#^uA=uE9H-M`A_rjnjVee#u$HJ^X50OB)+nQT=~}R;<^HU7Q{t$ zxH4DZBWB&xx_8fjYD!=YcR`U#tEnAq!4dQX;CHHb&g|KaJQzYxl$@fADVxe52?S7q z?~}@me2Z*Z5MiW(#xI`D;;@9EuRgGvb_*jord-e#SrQ7q0Y^{zJ6v$ob*#LgDSiQB z@ZaNg9x?`GA^2a570ySWz|zpY4|LF*#{4ul4m#n}+%Q~%_6NfGhoCK``(pBw8seLl z-*)YxI83rm!keu16DeX85+AaKway_U>VxWcCg7gYc&3vX=KthlK#zchmW zl^Xrc$iGusFW9?*0{|k8e4mN_+<$!`&x1nRwQWFu0fD8IKYSL$kCFDDk>=UZB!w+r zXkz;K>e?=jI{%qiLksJ^_(1?-S?Xb!fc~YQkONnV@^t$k6NDvb;k+~0&C|Mb#p#|jVSzh^l)1N zSaT*|yJ#b^=fPnt{;=V?Rz%rIDSUk}D)_U~8-O3lBo;~nb@}JZ*m>k8eII~(nEEBjnNB9@0+Btpumk``FpQH& zz1v^l@f`M^kGEbM)MQf)giKHXL8D8Z(hEQ)m{`r6c_pNU+8Nhf^0<$Ud9P5@H zg{(Yh0C+{1MjZds_kIbIU}Ppc3xNeF0F%NV^2`_85Qy}}kpJ|~Y1_Z3Y5)b}7*q;{ zO8ipu{l@!s^csx;kX#ZTsbB+?R3?9)@7Z#M?9pxTwiVsx=gZbIjZLMwP@xwf6LEAX z{ba9}#r?n@sUWEwmSH8zlL=nHPrw(CXI(aHasp%m@KJWxPLxe2&G%DJ(o;V7z!ItQ zbRuq}9#LS7GqGGWBU|{G1ZtEE^(ExOR$%1Q)o}xwd-6PYE>Xo6dnUzTFn)cGmB&pu zfWl38`0)wFZueZ~sqj6SJ0{|--q*8rKF56i- z0s@dx@^=yW36KnE6+86%)v5mnx3<=K%-94F>;f+bNWUd}Jy}UxbD9!BoG^-F7; zUolvibePSePAYtb6J_&~N0lApw!LvXZjV5Mq@8d)xX0o>@39IX)jxE=O+BdD zN+A%P!9xg2^>r#es@ovc<6$gzis)w7$|5QrCA=vqCy7t}+j?ZgO|qu$g9 zaxr9*tW6hpqG62Tn+pVN&iSq#{@M>YSA7tfpfcvFnD(q&Sl#wR;lfurWa~cjwdlH| zUx-Fpu0C^%ZfvTpI}#Rm#IW>qxDh@5$dK`NX~X)prjSDUSwqq?J|&KmlPnG7&;Fsp zEzd2}>t^L5$s%W$*hS{-a{2gKIx`s-aj*H;!eU+N8gj|M*b=kdmAMBI)5ATTAi53# zMP_}g$6XT|*rN-R;qBeRTgEuuk_12uHkVeb$>gPmrn-dE+FE^2G(PfeZFgGo~RL~n%`u(O1vQSvZs z&s0iT>5JSw9JbP?o~y&w2u%=##y%qfx!>HN6Pyv+)SnTRSbx4cHF0>D;;r)o(lwJC zZZTkTOIogkX35OkaPcDr*NeK%&OER4m8lBx5^7%wkaRLjA`p3(23%Xkx!YP9Ux|Jt1O(Di12kuYP!R zsySbe)@36lXe|Zl4xl`JQeZ-ZOySERq+S(N#YFQ3Nx8LcPrlSmo2Oi)nAD;Uii7?> z9+kC3cPClCHh#Dsgw2owipbxb@_-7bJjXvRuR*4`0H{Su`HqYH1SNoSEl3oLw7kE0 z%J7N=pk9)eDUY6MroZx5+>}tppdtY!e7`T~SiB331V^~qck^$w=!CKLdo{ln&H5r8_Y6sy$6$ z9ZsN<%})!(pZi1S`_g{65CnUj5LvnC42oQIo>TQ>J-;={h~V}zAX7%Im=Q0owWD0K zdQ3vzfXukudQvUzB_>0IngN*cc;UVpdK@qr8UReVVED?pTo*%Cxg~8qXZ|#^+s|4q zGmvW_oB(Sq1l>5^CVU_#2mpL=l7LDtSa%HAR1lD&JTHnP{K?3XPHnYImG-AWpt4$? z?V^eQM1xJF@MY~Me~xAC*D`8lR<%)FE>f$0stg{~B$n|xWc5h1#10=F0Zan~^41sx z>!}eFG`nW31G^Z8Gs?4E!bkb0KNf6jWvz^wr67XA#l(z9{Rv8|MX}+9Fj(W9H$&xz z&b|zCVy59A=zW=zzBU2C&QB#7h5>vc&wuiOqITqi%?jvzU(yesunvOYB^#&cp{isg zwHgEmfy2wL)D?tDff^VDWvRVJ$DAnz2?F3s(l34Ge4ozxRH-S;0YKxJx~UxxDRcMv z3e(28FDl~ivT|S=zu`6RG^t3;o3DT8lz$(c*>BGfnD1MQGopu9Jr+f8j&fHDihOQe zy>EK1C=ratxJ^HIidjzNPOoi!H^emV=kY!Z$J0)%4}Wc8PW+jQAr)?EmyDuD7boObqRN2JQ!(Yr(u z?d7Hjy*O2KKQSY1lb&TSW~>uD1pZM&0y z7qrcQ-pLj~v>iqk?&*BIJa868gC>ZVsKE7?i*kIL%pS)?Sw5v^9;GbuN5MO00ITxP zACeNCt*ei$nsN!$gB=9Hf5sltFZh_sE(i_+GuC~q?PfbSsRFcncjp)?sCm@-@Nx;% zuvi5E?(XNh(}L@}wHfTZ(p(zjKR50u|uF^Pe zN+`n-a|=8mQXiwdM~CV<8QF>;5Y)2Ond+nl6x8RUGT9|A*vc;teqxDgyT?4pXR-uuB>_1dz97wIb3xDBxxa z*7toTHi$bIUz6n-0I=b(rEd#o`)OX@p*Ble@YOPl;6N@a_7iEf<%MmxL9hAc0T_U; z@=TEjf7em`QqMVd{i~@F7zABe*(z=p0h-`ZS~;eVfBfdt7S@-}?IZ)x5FrgpdWpP# z@eQ`R(ICG(l&g_=H!E%|p>h2%eTvoE=gcIIKo0QOlY^uF+kRrXPpdqM+g4x^)QgTD z>HyNcd$fF?TM@bvwPhMDjd{frBKGx8EuAvrwJvYlD(9>gtO3+rQW>cA5*|TO4DH9# z*oVpVxNMIi8XN?^@WIo#!yP~X29_uvO*RkgX=tk+?B$mSKlN^zJ_0%GuTk1F%xsS! zQ0e|g(il#s{)#T70d@d#1UcTRrgO#$S?K5fTjL(9`m5zmt+m-5X4>JQW$7h6VJ{f0 zAvCgWnBv%}R^&`wdfRF1H)%|dzzz~~-HxhNwbty>qL}QUClk^HY8LNZ&u805vp7c< zuQ<{Rs1ir|N&^P#V#HQAUt}I$s#Z+d|57={bMp<=Y;{BE{PKWWaIXrKDA)Pht2HG% zo(M!|3GVf(II_Y(x31qhOM`6V0t7(jUhRFr)$291_Uw4V#FJ4A*0=_oZOPxZOgbfV z(fH7+$==D$j^(ao{x|M0=j^-iOXHo>o5%}iQXbM%4x6nTGGoBB1G31!*dZqpI(ht! zzM115ivR)umyHl`@j-Jv;@Km4RcVY<0dyTC6xt@;+t#HJ_Qd9&B<`WQMnVp6O;I7D zL4Qy2v#;;y`p7Q!(E(UZoi{SN*sb_ZXw3U4pO(!`*x*KJJa$ZBr*YPNgUipp<9_1} ze|ILC^z1_Nhr(Xnfd5ne`FU=3`Xt&DOdJ6eBOv4ksky!u$AejtgCd4BuGsM&7 zJ)uVn_YiP?0RRM+2476=Q`j|PuTGA}E-cH&%%5MeQhCG)WKusTw^WP1%k${zi{@X6p?A zG=6kzV-z*HzrU4v+&c{NOQXG_J!nqP0ii)=o<(~yhgVquwihx?SJH7p8J%C;al2yDK?dY#`) z{?Eu1h}zYAKUdGigvT7#rYV;`74=5e{yL0|Yw6vkEX9}kg?#UL*3zDFEzaGOJ~zZa z)U@*VKlEz8$w;?Lobra+@v0pq9S5_HFnk3V^s}n&}KS zVcjr!Oc!09n9SNbuWLYP35S`G%HrITe@|v)bXN3EXWiV>y2RdSsi)UFUJvO#I*C&& z42Zu^+rXsaRxi=3eiL%M{GEn~39XzY(-wcwdVkzR&5m*J)Dl1h;0AxX#q0gH+W@eT zUmko16RO3>D!8Bmn{cc4m*Xq-hNCIN4hsmeu}_|U(n&7q0I5oTm49Y|x_X_@!q=C> zItYUAG#jJ$G)(mv1P6i5X7AA6V8$a241x|`Nv(6Z(JDazJgwBfA{XEL4@zvOB}tl& zR%?q5-j$V4-rE9&{9dbyGk^H_^O}07G_~A2()~txXg}%8KW9Gj>i60VrYw6RdAYN+ zq%2cv z1`rxgo7pjH)gK>6V~_VC9wuF*|J0$>eKgDBg2 zHtp@K8#n!NL-^{d~Itdil-N3%Gsutn`fG zhQebcXWg14$6GqSjCwT?tUZ167pLwyeST%RiLHBTIZR>!h*YrI0Tp8jyZQ2d+8!n) zkCxGTviMw%0)(27tbR4BuB}y$IHU#u>RSL1K0S(CU!=CF91}CtQwrhd zl)BD2VLLT?&5wqnkkRt9gv@GA%kTI*{E@5I1JZTVgN99wz#!;U>1b_q+qD1!VB~{Q zF{DzgpmmeGP32@#lR$A?k-0thzE{JO4`f2k!8e{E58rs6wBlWzb?s2WhIbKnl(zZ zXV#Pf#D@-*A}Ui6=ighQmmHKL1k_5XDN6p5Ly>mz>_h_!`Q^b+uoo%*7Y01{WlC); zGuQ!0K)>?ti5kpLZtjoP^Icnmr6h@56d=H`)ATGMp)rP`A4&K&oWHbi=rm`ILz#<2|EcL8!GMnnGnehC) z40umvsI4jCVRF1FEC&@BrAs?=5E9^w@?@4^B&$Nz50kV1q_Mq%g9CwF3BkTDXF!*p zvu<2B!3fa1UJAp3+}wTIJL-S#{7k#17w2}I7J$0~I3Yiw6yZ{{>3e;q*hIRBG|T$v zV3s_v8}_OPR7~Q`RTeC^E;cmz4*)6xyQ~}p(lt+Idpml}FAo53$Wurj0%11-+i(0l zZVir!BN$uvy{PLc6Z)VwQKs`y2sl6`UGA@5&Kz>xntkCT2tb%lp-yC?!E~O9rsc0` zG|+@TfuMwIQ`-IWhg0X?-Dq9!XVx(QK;w>u=R_}UkUScB;%xWV_3&vTm}{3{g=?38 z4Bn^JZ03--R|t+u73;K|;qfopeT=pUqLX4CNhh7UvZ+oiCYKWge`8gqtIr>5p0SH# zhJ*$}2{k8n^mp$5$$Q?W#vB0jUK2= zM@r}Z@Y!Y1!V1_(h<@}%`5sl5==#CkNXQ|p0w_2@L4R=(=R8={KfHBI7rt(=Jtv@! zLMf^Igx2uM>~GG!=V-0$nL;`jxI0Azpz-@t*TC7!jb6V$Z-8a=gf z?<~?FS714+>$%6{W+k*OjKx7E*tp=dg|@}1%2G0>pfSo6_T2r!XdOVN=X{<^AllgY z$C25>8&l^SR~D|6ZTMCvd;FL5N8Q+{ks6L|4jg7`D+K63BBUj}5$LPc|m~ zVcmRW)OS|&&E8>t4$lkMSYJkW3jyeRg*@<1Xa%DzDI_YIM)Pj80stDrU)VTbu8_|_ zq4zZ6&}fVoC)xOX?ljuD+?0aGqov^vsqT;-!(=%0&Jpc1?xisVf=a2p|2P=}={{=N z06iQV{<#9ycg}X_2oe?)2K+cgXF2!%1N2-`dc7h)yUEWCq9#dvp{)IH(hj|M?7q!` z4yFiTpgbK!Ca?&bP!YAi%BZV3V?=_2fJqZK>8x#J0sxJ1a+19#A9qMs3#Rd(>B&lj z&&q;7w(G&su(DHnr7ch$(4U?}S>JhdOCtyj09e7@P+$ew`do>&HY*t9(HQH6P%SCQ zuRevx?@iS)?2c<1L`vEbUwXf^o_85JNC~W!%DCRwQib(h!`+-qnHwf2bmV}W6kOOd z+^7EMxI{*9Z11q#iYLr31N$k94en|!K)_+7qz;sg~`d~C*8+kj{QZ4m^w zCpFw9LN_^DZl$d;+C~HMyLhf|&<1tZ*pA5YjUfCiovDJOX0UgySzSBkncUD2PxiD$ zoyHj3ZntTq$2Ma`{XK82Tygzn=QvB%rJQPp!nfO!-s$9REfq|EiEXiqpSSE1x3V?LaAxdx=u1I z5flV;pEu^&fsjfX?##7_h>BteEnCSf5HwT>Yo_{$Df#!3f&HDfKdM( z2k_tsvigJ6L=;l|@LkFYIFcGxq{ZTwvGp>wV6soOIg zL1hTUVvAb{k|iXshT;}IIaJ}&z(Iaw>?*=vN`tQr--&#+z;tov!@J6nPKc-jY zja>i6`%I^Fx5P)|;xYi>nmDya1Mb7^gvwC3n4bBb;A4~K6nJR@$+br%_M zQ4AGuqW%JB_4V-nZ*^hi#x!L?<9E+BcJ8~uy3Kn{vpk!;(732H^m_J>XTP6ugk307 zwedWAykJ27lIFmFJL-6LYj02>i2TzQ@8yWlwlE%?+^aKC!SuTDvLozkYf{?5M3v%R z8+tDQ?7h;8=Gq4Cn}lE|pCylfmcdR)?RJ=O|uOUaxhsvRC1^u%8cp>0s!BTBcSg%>mCS0WuPdit4vPl z)mUX^qz=d#IJ8f%;1whU=?eP5T&v`E>su(IL2fr|(ssJinH%q#uGWk^1VJ7R=#XxK z?Mi3>Dp)4Nk+L3=qsgAmKA*g>K<^#9Yf%KI7Ox=amE@azMNE#JquDbuf!cU^8J8eU zsnETi+D0bN0R$y{EvOUn6RZPBTb*pNQL|`lrGY`vnTa8nVo)xs950lS%KwUert^bQ z`CgHSVD4;Cp`gQUB4;pUzl1`sJ2?gHCfl-{6z zbgFIC@m^njxWUL51P6f=e;B9Bb>rb02oTCfdc?*p!?aS&cmxm{%LPa=$+o0$ZlX!D zbdgTa?$IpBgkVTw^!%K}l?UHTnj$QZmc3#)HalQ2J~}&3-a020brOO`}Yer9S@;60`pCiTaq@gL2zhZv@0fMAC#TPDS9 zeXqK+YWqUnj#^75C3Az^v$TJ-FL{&sHcMy#zrr>lHuK`jvhBui)l+#h#sc`7ASsIu z@d4#Z*|Jap0O_>6aOO;hMGQ05#_q5|WD%d_!TS-#MI&L45tMstqzkK9=55N#2sJsL6r~qmtlk6`hXV^XmX_^~z9ClYjor zAJ-brw_^nc1%SQRURv6jLE^(A>;D@4>==v2TRhg#`m^_wFgGOD%UYj>ahH zdP^2$L4cnu1%q08~`~uSou5`LyF?H19H1)$*D$zYF_&fIM0bQW<-cK{0su)d@pge~&y|55fP@FG>+ z`}j3wo-$8S2ni9cJGl~NN~MHUlw^uzicpu#^N>uDF)C9fWR@voWGphKG-s$t>bIV= z&vW+L=broizki?4dGGDM>)CtlHSgi<(^IrdrE+T0@8%2okc90u3=RY1ejMXQMUGJe z!=R?U$7@#2aWt?B!ejE&V^c(`LQ_!OGmkp$5^`8u1O%&J8we*Rna2pf8~sLp^#ZJ!Jg~=b17@riTzKe5y0|vS3ZuYb;5WA= z=)&4WqcAWGnj3$IUe7UsMS}pqXHYq|yzl1FaoYqI0zjOuYR7mIU*B6mOVaGk6@;QM=;Y}TKAA%?)l zB)vJKj4Le+62v>iM;Krr9R`?$!%yphT2^{X*^br`zB(n$_KrOk8n-0%K#!J5`z+z8 z{LYf5+0Sbytf1wSb6<;}mT$VZAG5t@O}*4_c1n7QI;#sIrJ@(zR$p50iVy<@0K}~9 z^r86TD=WB?fkp`cJ9yEMQMBQD?QZgbf6NbgGr@ubPidA+HbYTB5CF0_6WmJ{ zvvj5&unS;BT;8>{w|a#g^jbwKX@$9fAjio540FtpG7q{vAR>|_419vm9{ibOl3xR- znOCQ|E_%$0L0S!X0#Wz*Ki2XsH}QfX3XH$=qE2{U|91xIy2dXVg$R-)+W=wh8Ri2} z{Hf3zl_1u=0r2K#bG!3TYX;QXxbwQ6*tor5uJXP-0O1~X&Q%`jKh0%L_W}?ArFwns z&4$3%mTWJ&D$oF0HU>}2es%fBX)F1lC=fk}vDSV#_hzrg++Oil9Uxq*VEDnZKEuzn zHKTMj=ng!;v@Nm1?3FwftDE3TyA zp;RDR@31PGHsu#r>uO??nn8>OGnhTfcj`h%nToGZ z*RvyY43j_}k`{dMTFS1i)%485M0NoB`{nPCS#BmAu2|pO;y!Ul=p%?Uja{N;{Ek86 za^8cxCVBO8nG-9tNKMW|>i{qf(8}~bEO0`K1ST4(rcX#=2j!NWXT%Gyz?Wf5N$N-38$& zvmKM2t36QMdHdEHETl*!-~0I*@ALt}(wi@T=|)TNP9ap0HKYM)^wj;yxAolLDj7ZD zzDvbka9(5XcN4Y8n)w-fTPYwcHxj5{;VrVp`L=}H+je1-AYJF=$U4E*l^)wZv8k4- zHx11HQC6)lw>Mly-dDzm#*m@;PV9Xt_oiM(<=7gEGa`gpHmw~FTM+6^v&n;{>=7&Q zR~J3x1JNIrt2P>wX1$FvQ?RI z;L@XBDfZpRp&cLH%S167T6g(|w+8v?)y`kLy=dzO;4S$B>p1O%a|UE^r;)lh0%@eo zhM}Noi$9nSK%B>wZg^`jHEUDG9L7Uq;zPE?BnbbNJKgW4l+Xdl*KZ?BW&)fVxjd3+s=E|l`$OZi?S|&)R z(i&sNx_T0~2@(O{FM{;)s9v?c&VIE?Cj_%7Lf2pekR&1z^;O`jJJM#gmlN0R>F>8| z7j{|IhRa#XQ_mjsrZq^~Tl?pBlbi-H0+sC$>&;T|owNQupVY;ot69x*FCa!X`2wTkZaCPp3 z6!~h2D>2;@Kn##5Ko}rTe!U}Yg9V7}?e5yzV-NL2#V*eA&D89%kQX}$c8;zO{vWRK ztBjsK@eN|sM+av|yxT^5!!0uep%SCLUAkqPD+nl&pz-n_SYM+AVcnGA*u{5h>vr=j z?ucSw0zaEkI(l6K zJ#tdE^}RB|F}#%1lim2PbJuR^<&u9H9To&16ieY4+2a!%%IUiSTz?BU5C;EI`HFjg zj~0*yhk@5doK8EYAT)5S@@sGiwP-PC_0WweUkYU-d7`BH!HQP86nEVRmvGX35W(m^ zry9JQwowDbqDAx<6fJ`ql=$BuhP=N@4G9)=SFLhhka4podV=&4>y!!BGCr^A0L(j7 zG_U)FxT0fTcD|M6n)9}+D+mC;_ALbKeYrmw=*@mw75LW;3DS7r1vaO}Byn+SREs~{ zP-lERDx^wlh zLvw063LFN$zdLjwkl{f03J{_&dz&=)PMw-;u}lyE*d-xg;r8m-gNTHJ=vsF7ObxRBl1qA_|MP|jRAxVa*v<`-v|s?3oA8z_bJOaDm33`y6$b#M z^o~5nrecC~*I7Rcohj#72wEz?7?6EwU`LD2Iy6~*5Cp)WK1;llPnhsm*y6l2>ayk* zRWU(PmF@M}t_y3{0HPbCV5A#YnB^QMbH&`)7XX%lc!$;CQwdu8b}YEVg^TKlEWCN- zkuy7Vesuvbw!UKy$OC=RGVUAJ$y+_Ru`VV$O-6wQpG@GoDpmDi0J}}0PeJO!W9y^! zqg7Bxnq@pdOk+G)^wX-e0f7|N-rvgP7u@+F!_y!B9RiqHbJ6{_l#yD&=AB)Le2@eW z*d2Sov2ZH+-4%N@$XqT5(EC!`t&?5~h;INmQ69+M_o<+W%AfOMVRhQWmNZcfguzEH z7jakcK@in@7`X25uXHXlNBju{@yC-N3wF8wN=(*bH&?oY_(KsVB2q&MQE;WuM*}WFdkM0347DbJrZO0TBK>c7N>wkSpz2O_V^^qm(OL_!x*NBP{?wNw;JV{zMV~TWN_d;BAdsUqHB&@((G{qXf}#!)cd2`W4eA zUg>4p+_(OKoAyaORZIo~dF1o=5_s9w#1@71IP95+e1gKl?M)v9y>Rh%L-FI5F5~guoPTyb@Kd6(Y7^QqCSlg z%Z@b0g$MtNW+}huf;#vtOO7DDlqvl~v~A@TM!Ly^TYU)BR$TTYr_i&uMIgp%$gp3tXf>D;ySCX&&t1De|Wif)F1`o|16Vp@{ zE7$S#(1`T?^Sc13~W5WjlH5v&AtdJEeE|=4*Od>bn0LEPWjEoBnLT4-q zay(K(r%5|SAP9gP`|1Ug-Fn%&>k8R!+yemOobO)nW|LSM-T&S^9aL;yeN!X=6DlAv z4=Xnh%hN{H4m7EcN2DvJY6ol3Q4Mfx1pl7lsy^6iO)Crz1OIFBpjNa^H5wQOC0%Ny zGlq3mf&hT!lf6#0ozF{Jz(?X^5DEaW4!)pwd8ae;w}3k(fPU!%tZ|_S4cOSpxfI#$frG|1 zAN1DiQ&QZsAIzfrDSu6M$@vkYnb*34{GcIhhs2o%Jg7sFm3tX!oiz;t18bVPZ=KXq zv9_ac$<)PZi)R!1ihj^x$n&93{lGA^0-JfR&a<$~wD;He#Se zfg%agW4K(RfUa-szyZ=*s@huPZp-Bk9K6E-0YXJvM}9{2_HFv*x)io)uY|oYOIwfC)F-sP@D&)VQ?7OHQi>-s&x+yN%fRWQ$^x42_ksm3&V!1ztfOPMb#;Ou0OTP8 zo@t%zT0O@BzY)c?wE5UoBLKnLOSfhSz9HNFs}J0qN{L;PU$_Jc5F|zmsGsKz-GlX|szQlX7BK=R zgz1d&aI5XQ#0qNQ>7R zCqQ`d3o}Cs0YJ_UHz&O1nvU*`K>X3v@n08GXZ z0xi1J*3!|DMqiDNc{Hy^KfkYr_D&mekBR?7H?K=ike;zIE4iE294!ERWQeA-bLThlEMOljms7_9%hpb58X24`{cr)U^v^gr-c27E zFzPsfczzR?R&YfxDbF}Q_s$>#cM8GBHnvw+G;E4F;LGsy8t z2lSY1oEs`)L>f7uOi4?z*wT01((hu5v>`V(6rqEasNf~)c6wVu+<@60J$<3R4YfiY;qv)0cnl&2? zTZ-n{gN~kkN2ha5hB@bRQ698TkRHeDCzt9_Wh2f80YLK=(E4LxxsGS`RBJ!y6V zMGyd=b(|KgM5b@NRtFEe5(xl^@jY0!zH`tHZ5zWeo&-oP{8IW~w+`kHzYRAON1saeuHZHoIGCS1*j5M}?3& ziC=!Z7uT@A#-f3lxR%XphT4Ht_034Ht@fmD!Cjat-L$#k+%@ah{ zI_53ujRmabc<4?Y$5MlsI*P2x?QI8Qy0ZQL-?YS1gBlBqkQ%Z9k3@V>Gpp2I(Uv2>a(`QuKUZbrBSknifhmfKH z%a+Yz`Hz0CC1t)ui~NGM0dB`2f5yov$f*38{?}PL&)CUPR0BTSfl%g7_(ZRX*nATP zhk-8@Y^T|_rlf%eWK}S)N(VQ_QL4zFtln3=f0tJ#!(i_^T3s(R*c8HqTe0aY-fAU? z*W7q5deysmE~8-Sr1s^0^}Q5WrOzI%FFTtWCIjFxHH4^>8=824MGu$Oyjvp$V6OPY zL}{K{5mKkTi$~RDLLW z`iOhNXqb4vffhYyrQ?-$@wd0XY7g^gs<`;}SsjkdZPKt}@citl&%7nS)mP`%YLM(~ z`1CMyxZ9a2PaPG^7l`-C2-(If!m9lP{Y`{a*uxn2Y|K%7a;m90ZE zY&~cGQ92Ts$OiyqF83XWKK`7Ne5^?>&!Y+?{-NJ=Fv&6ugoe=@L45}<(RHpJJbUv2 zNdzox2YOf_4**!{C1Cu+Ep=9P0p)!F?rkNYS<_cs zjf+EhB1R9GVWYOHEUaOMTF!3(Lg2d5@JoaA$te@^DY(WQARy?1{JvLQw7ZQc!3xQeZ~xW@4o$ob1KArTyZ6&9spG8% z0We_3zE3oE?PM;gdp_LVy6o-DM2eN5k)k7x+6O(B`AXyiN7H z?wh1*6r;>AFbw*&NfBL}7{Ah>Frd(xds3$g0>Z?Tx0Tg#!HSpVEVRsWHp5FL+~|)% zA{gSQecd`Gc-?wx-7hu3L>&U43$nu~TBF)FZ5rm(2LVtbj`ZNax63osZvZT^fyocG z&>}V`M$>8ly=(BkV_Wt7%j|PTfy2Oho!02!Z_I~45aYW7U=b&+Iwh@&S0@e3+E2y=&=u#S{u4o-OMx+Qta@pnPjRA+W6jfY!wzgVqSSgm`M4Bwrz9R=&Vu<%UiqIr zx2Klm@xG%AMM^TNf$-Q4bgx{>0fPVn34_C9{ASIsI__CXYGAmxx>>I1;=@XkARiD& za?Z!uqa_Idh|g!OkwCG(a_SY=CSm0m3%=CQQ+|foN!KK=EoW1i;!3PX{lItf_WfuO?b4 z0RUo@%4i)^s^Rwzk5*VIA!f0l=LMZh#A|>l#4!c{(E1YTJ0FcyRWZJzH6l!W*%siN@ts8bm_hMG5pmDI)L<#})BL4yrPyeE% z2Dl=A*9XW)1%kovO1H`d=)o@%C8BshFSJ}#eTUu}ri&l97l6WmZy!%eTakZ?5?R5* zAbA{a^q`TtI4~0i4t|JS8a`2EZUkVp|Jkk6qFoje11JpW{Lz0plDIZjSjIxVAZs!F zRQ~R!9*@f!K$O};vEOIGr+xD z%eVoZ?xBHbZ1Zai16TiL$M?|@h#&x-&HZrz$h&{A>x2v@0Psc2k@a^6fWzY!N1GA= zxSaz%=u9?zPsjl&EdW4#vy%x`D74?p*TJowN&JFO3>%wRucWsO({uUzI(?gI7DS7w z?|%}b(YgSF;-Kbj&Q%H4C;@n1VnJUa$2&sLLwCVtGPM$k7C2L>@D#M ziN8iV_BxxD^{Q)DtlYmYV~DlAjIS}qb$o`Gj>5tbX&N8pGd;v4AK!P>dzUu%FNr$E znZxto9Uu^o&bHXoEad-W`gyKqDN1G?M|0}4JhpQfGb^SXeTNU&;h^> z7(Jl%@t^(S-C9?)OiJwX7_)vKsojT!ShAW2(sRUO8{czNGz|`bF#j)h>KtvIXZ*nq zpOG)%{j*M6+ziW>uN5^dcPv;fARgUdqbnH_&-B?C*W7y4+oRr$mP%8Z)qrOlgrf-W znld_?jTSz!&!Z9W-zvS!rD05RpJRCfOrCE^akgxEnBvZ6yz)cgH7zl^0tA~V?Wcu%Fb-A z1s-N=+-G8)>w2xhad#Z%jNNhA|HwklMby@JPx$UAoCKoH`}k9?JJR-tinQ)3W%$>?ba?n~Dfx41y0ZU`-vf*Ifu_q#%fcm(GGi{)@)` ztP2rarV>PrV_FA|Lt;1HoUFagDvuzH=f;{P-gs~W$Mq!>qbo50KwPNDOph3A*dM>s zI@&KD6H$Q}ck@wFI|mJpCVoQ*L5zzuNW9|73T~vMgldPkXJ@Sd`s%-f=KNe{=QZ1X2_+Ot5 zT`k_9@!sf`m-^)yj>}Ubdy379Chq1RAi{kYBtHF!^D4S^#fl;cNCV3kKh`hrt>U*| zl*3D-k+FZQM24Eaz371!I6Y1;%G(|QKo2^1l`qmcTHf{x(l$|l-19?sps)`_HoQYu z-dB)z_77+5(Jp9N;Y)Y>N0taAQ{{_?qfHmf7T~+urc9pc!sR-i-5pK*v(Lu!H5&&D zJBv0>cZtdO^O8HW_)600bH%77(R>2{R!)`tFsK(kEVw^fDtI5GfII-mzrceAoqpJL zJ6fWCfrIu^wC1h4lCmOXor7j6UR`G1G@k#RxfvY87csyDv*aQuSIjmt^ z`0;ZMuqg)sv@QucU}ajf9qu40^GlLXxuN#mywTo^-8f%0>x-J&5^d`Mp!Gc|hdthL zLU6{hS2ZhkpuKN5#JKXCQkin^@aXh^#8*A8E+TQ#)svbH+wxV>4%oo`1tcE1r@l+f zK|*{i)%AMhjoMkYHqEXfJO}_xGmrs)2%Op;do z*M+;c4GeGCkQCSOSifP=F!1|K3%!`-0JS}$*D&bkKUaAM z?0^`K&>H}AM*r%SI@K4d*1PUJ?6HE@|JhN`jaxL%3POm9+z>gw(@lVoJ*^wbo$hd;(*1gg z(cDJ`yNYT6y=(Bij~~!SC(Jjr2jR<-|+CL%BdqK#u zh2on9uIe`>Xj2yXSpV9%v z?t`HRj4Ry3-b+r^V-phqAa2^Eho@jHKo9TGD%yOoCfUrd9<(KQTGm|89jv_p@Tb4} zt^t*AdqGe9T)_E!h9zAO=Du^d3!r0hnY81bW=j+&gC{&O+Krwh=Ii>p{(g5$#%SWs z!9eYdePDx)uA|(-(C8v=y@9eAjUTsXv%fgIxkpQ`~OE~C$LPF9|QmXquY8t|FqUg z5LseC$dNtt!WG4OvJ3}oE6=>{yW(~sxtA!cfHeJ$fFSDU{9;E->-36KMbx^6Jwp)& zlSK;Rp0E4quwwK3!wYoS<+ob#tEA6_QN}0Dw4ibu)cHDSNj0S#2)1 z^?4#bM)?XkzYMwGG1)i;00gk4%5|@R#?IQF z(LcEkCd2TeA6|m%?f-5>Y|ZD#lmA8g3qfJP%_eWVt3xzS06;u!!UT^cOaR_)b=r+4 zFhm68Ve&Nb0l1}wcJ1GWL;Z1>NiB}7md@b~`4E=$w{05v45=J3a%Ju!Xq8XY98^%7)yv5H&J zU~aS?008l!*YXE?$XB;;v>tvCV)}-z-0qsuBD!?|(7HYXk>;73$x@2L@O<8b6~?T4 z_P7$F(f|N)F1f;i8Xhz=ud6f?(_!T3iFbsv_5SlUpRSo*Z*kf=6%JMc_(;Hx(J;Jh z$@pb%Hl>vkWcas$y>ZTs1vdHtpfC1A^rQ3t_e1Csaor0*=%v849iGw<(5^n%(A9y6 z-g6%Gf_DXRu{J<@u6sCV2RCHuUigBcUN9U#+qvD)##r=%)?aJ8$zutn#JYoxb)jX6 zmk1$KRM14#gxnVDCG61;EBq z4065iVLCrtdZ|%#qNh}}?5oXd6V3ZXpZ9m>l=9Z1U_Y;392QNS*%#s3&2<8EzHzQ^ zv^n#&hP9hFC&rFDE{CJq)m(P8wzr7p>K!j|`5EW&{C{ zp~@o9W?;Ujwr_CRqBsEnar?^gp7~;x?z>lqrXe9oY>*ZJBB4P3t!{tK1u%-?M%#`; z%<2kP4p3>oPn+W=h(HfM2)*EQz5rkhReyTcwI2xpUaaB0xohOVKb40p%CEuVZTDtt z-B~SKN1zIW@pqjiUv6^0yKkb$hH;@+fOMvBdt|4ppD>7vj0I|63;eoJ<6B%Eg+Y)c zddl(Ds36p&l45vVPl_K;y0QF4*K5P9GRor(W7_1Lbwgd7M623L zu(tD$pLldo`F-KvZfO_pjf+B)=ilY$ly)`8{}<;fTzddrrgZ(09(xC$csMRk>m=9D z=*18QSgrp3c#pWq-qvvks$_CA7F#coOWyXDK>?s0^331{uEf|n03hZ}AI?~IqqBl+ zr=+K3?c1#Pr;n^yzFpw{PVX`{8< zy!t5I@t(JMlEXId*_prV8JVqs06^=EKsp;=~ch zT@z>P^+d&#kgnS|mB^=Cw`JitKRsye_I5+h=80(%4|25A1wCnwZyeXc1O? zJYTeCF+r!2-YI(_7-*qE1~Q?`>_ z0Fs2dy(j}9?OmCw6pl7!f&kF5Xk5RZdeCk!H-+?Hc>pR?CnaF5U+dLwDyGq)7k~g* z(f(qfyaTgKxmF4S1Y!VY%k1hYd61d#cRlOL)UQVLDQ*n}NWU1cDsyKykZJbNTez21 zcfaWhK?4qmBLSeLwxi2&R{-2|@&q6~d@B!vb1V7TSbnkr-beCj=0W=9IrEKe3S^OV z55S#owg@CxWO9b+dIUYnt9>5e+_Yx{9kpq7$OX^^0C+=8hq*&f*8a)AB07~31h({Y z$89gA@iGkniT)}vzUat!HKSNomn{~Y02~yyJl~O@`FyYz`>87TxyPr$4yC5S6gPX# zKKrt35n31lP#TkeL6tf;xsa=5Z505a7ri^tdSDKBY#Q*d55Rp84H2n@7fhA-qXP?qqOM|Xh62msS=;l6}KJ_Kmc^F_(UMFh86E|ldkSX z-x;UvE&Zf=Y4-vUdch?D6vCpq&c}jXWp)y3y20wozXiKT@0`e~r|~vh!>XV3*OnH{ zDHW6_6Y@Ksx^;W`T4el>?>i#qAO;j~^|rghpd|*7FX8}j&jM%f&`t)xRw1DV0J~ru ze8sD2Y_a%l_Au?y-Dw+TqCe>IS1tr*KjH17uGV!A zvwfCu^C zfQU$G75r$vE`9BxnlKo>YT%-(>$RBeoKXYAplhcZYNxV-Ajkmh%yj=759y@p_A*o$ zg6IL#Q^7&o9@jz6MicY`5CFQOn3M6eTeFC3c=-bW5I;P&q!$=4C8>C_k*j@*`wk&o zE&PC`SP7-H1TD4a{ywb_6WGo7UIHRu%E+q;&=0DL+jGv*y;+F?P{)s3dckkyu|?4? z48UzN7>uW0lVyQN7M>d_beOFGz>VS7Y;2X6Sb3Z)F}eUj=tceo5&os#^WE4*5d#3? zJKN0m{2mJ!H*d^xEt;*@5<;@GI?I?Kt(Bba9IUne0sva?lWnorI?9cV^K)vE+7Q&; zueG2s`ufbQgS98x)!H-CDje%Oi75O1P^y91_UzUxf;M((ppla8ZQIXx>M&$2mmmQ2 zOz*L?E3`w|u>b(#owodp=)Bh zXvr&+>J+S2JMa4$<&C6vHUGMARO+2gj_aU|mxAGYToBBR;$2;_Q;Gn99d6FR-_Pv0 z(-k?rv5^q6Co=}?T-QrDU*51)9YFxp>^?duZqD=>=CZ_=0bm$vSs|Zy1_-Bg9^REp z`-}}k05F4f-T8R%sq>64?bCka0=Q|6<#*nN*JJu@9k*Nn#oDX!Fz-{cC~hX_&hGX= zv4SNG`26;{-hi>RRsT{BSF9ZH03l>V5%&$^)tQ$UMmrV&M*fy~eD#g4IH|M)Li~lQ zQ}n{w(wk#+mNGZFVbTK70^zT=tb$;dKS6#sJ=!@*o%MgYw*!D63LFMD>T|cd7@%2Y zuVK)Dhx0|(^JFy)DDiSLH$7L&fPN{s=$iHJgr6n?09u#L8Skg~OEBo}htoJN zO%Q;4l5z%s8r=&;7X$g^pZFAfbEMKFg%DB ztlZl-m&XbK$#dUw<<9{FP+5q%$s)f7g+YdV7 zp16Mc`T)yPT7X>{K5~N>q{Lp(I`*x2)nS3A|7y+J)^VvA9cSo>EQth+oDzCD6+~zq z02-Ut!}Q~i>d5w%#Riy;hnPC-+KlUpt+C_G`sb8yZ@+8xdBFtKT@N zy~?({I=^oQvg$%M4tDuK^K6MLNbBHv)6EG9Bz|VZ5tnC51jILl*l5%mS)M+%T~=rY zsK=KHHH#CRH)bz67eDDnX!b%7dcmiG38?XGe|HQZfOG(8b%)%dCf#x;N&XZVT(7I| zq@Klufo4n=bnLsJ)VEXkivkqH>#yAwJxP)J=%{&+Ml!hd0Xnq z71;vF^kQ{0w8REi%vv|U$XR>p2E8o2UfT;|m1-{1nN~(qs(l4|EYZgs(gBV)}0Iegm(@dUO-#Xffcm+=8 zj)wwMKew!DG%*(6(X!kI7Z86pE3dncOE&)Tok%O{)7NIWPDElJ7em4$&zp12aDy%- zf*TCh_^hDrCSdgoCtYJ>>%8({NA7eOH6s=?SyO>3{w#w5_=5Rr}7l6=<22^-?yIxwgi34o; z#GX~6s>(KDkL#yweWJ8EQyu`Ysz6Dt9AWy2UdI z*iYYvp?8-_oLPPWF{V{y<@*m_)Mjk!hR=m^gj!T1pl$ZQ+(^vU0YK|ojBl(P675y5 zN;v*E*yXh8=f-OzqFV$ri_~H)lQpT+b6M<4PMJb4qx&`c)muN zare6}$n1eS|B5_(kx_mPf>Yu7Ror@wS|telZ=UscP$U&vGr;9v19(8DZ=pf~;KBVX zT>x5yhoJ`^U19vew3fl@%QkhjSj{%I2BM*TS!?()NKR<4FC1+a=xLU(xFxwddv*jL zn6`P1YoS_VwdFsUZ_o7jB^Xb~+3&j`EdYSP*4C{L1$wDkZkt;R>0Wfjb@0Z1uNU~k zwk}iC?gb$9(yUTxA8@`#rUJ{{Ua(6*Y3-C5G{%Aj4fGDM{0pkChfdUY%X|<-f$?`5 zC}to98*F!DlpY&<1qeF^^u`-aN4g17OAsIcPG;T}r#mF%!O0Q~mpL|1|!;8^mD1knpi z45m8x)T571(c5%3)xik~L}ObfWb&dAR(lgieVMjJ00h9Y!G%2lwjhV(xSX~{G!?A^ zfJHS*EtLr|l7cM|KTv0+H~6WI7u9SujoeCw4hXY6}Dnz)uv{8y;uQui7L4OrFBHGfKyARiFq(E_K_yTYLb003f~dZ01R8aUY1 z6N$_E#C7Iw^^6g=bvb3bTcMJ;oyZ?8V|$J*k9;F^p`ob9lM)DTJh{o^cYeF1#G4Ch zxT{%E7~TimC#&RLWiz>~Z!XZm^Q~gMx4DnU%+Om`W}#Dq(2EANocEg!24)ID0Els) z1zT_N%saYJs9Fl<0pij!h^OWEmbuJCB|-k%^kgS1lg8bt_b1GDTogDAd?@!my+Ljk z{{iH6T3Aln6n{J(>2Cebh&%s4j42Uo801IRFkPoy(Pm*5I|;}wKwo0D?;DZq&E`Ar z{mzq^RP5M~s49;I<&!^l2|zK)2N%VAn;1!3M`{zdfCJJz+2Z*SjAQ2;Gj;g104zLr z^u>#DaNt|JCFvf_)B@w+N;RSiiC6zqIJNVDxKtT?qa#}9jgCb=$*OapWhaY($Up3g zVx6@uw@znfSr0uhnop|pU)(2et?`t$^{!nWJHANm+o1q3K$lxtDB!=(Dy1d-ssZ@sP}e*)PXFRW7UR%Lpq|WsL?u?WK$efXbyNofvpevq_)cv z;_2y9`jbU5$roO4=0&`JPWI56H7$?IVaG@Bi?B13qsR-|_RR%wAVv+2dqh@=*UXZi z)Gnh#-zLt74NZgw5VZz~aXyect~bAO-tRLyc*!3)h_RGMQ*OBJZk>k>agrj&`Ui>g zwk+q06n69B9ri+81b@DUk&HyMRNe>`9Q;7+_ zTQ;p&7F`pWLxcdu34oH}J-e}gexZ9Xg9S0!`MpMdFK=C(RXq0ViuF?~3&hxz6nC%^^&J`b~jqa2j*T8 zQzk%I4}AECx}h)8Kso?Wto!|>f#}A;KGUgz&W^Shf-nYDDFpo0!1)r283TI(F)p?s z@v}MKcEm(dVY3|)7-l@kBH+Di%AVzss$p^@f;6vV>nmYH+n9L3U zfCXgq=wVW>&WZixDig$@ytSM+xLp86io*kR%QO2P(LQX#B6<*G^;*YAiL>=D;}uE` z&p3yHjbuQa$?lUR&+b#g8*Izi$8^9o0n2My`0gaFLqZI`P#CXY?$u|QPDf_p3PA8b zCvX~T7K1j$xzU0;;DDR$N$++VQ~-gKd+i z1}1_St$%!aQR*lMVkV5MU(Si=*3$=vnnn}T4M#S<#WOT-+WYb>ttcyd)(ygQZN|^o zqCHbvCB7cpP+p>f&B(vxwk_`WVovWD=eh%gL_j>maYGwy=MSo(0mfzkctL=E>q-1( z#ny_MqgkQ7zdLVC0zO<1S?|i6oO+OGnRbFY6LtdP{GATF#N_*N(LY5fh84ug_%n~` zd~5mc>+_AzuebTnoNQXP!a00t&tnIuPhWK=C6yF z)C#fyv>q?&ghug}0z<}-*}1eBO+ZBt0MLVSUfdKYMoH)dF5p_-eOfKb9qwTr>w9VCR=#56_$wtzFh=BkMQvzZBlC=A-vbiI%@?;02%a zgmy2jALB){dzU?-(~dP~065qygEt1oHgS-%11ZvrKTV8f2A%hPg0^I{%zUnlIZGIR z1A&ob*Y2#kQZ#X@hgc{hA!e(LgxSXapnEV<0WmTuV=cbUfWQpX|8ZT&ZJ{Ir7#Ox> zEgl56L5-c4HI1JGKoh9 zcFh9848+jzL2-cfrRa_+cIDum?0T!x*pdbrky^m!B0aQ7Elaec35ELy3FgOoF|M{T z*e|3>4i=x|qOvx3YnYlCi(u^q1UB%}a_^-jywLyaJ#V^$Mav*&F^+FAp%_Oc)BITb z=$7eSrL&|DR?KQlaK0>SzRr%8FBLZ@6}y!%v(_=vBkszjgxU;V=1mu$9@x9EIv;HA zCr_(^FgVkc%C|XSj*Ip8=vCK(`a5U(eD1iQar6Z777?dn)YC=d>iNy}3ck^}27x79 z&q2N1GB|zeNhtv!Ui#BqPl@H^t7om-t#K!%h$2mSiXM$X%J zR!RVzl?MP!oCrvFcTF8Rj9+jpAkIFrvo{6C73rrJIOpDM>o^U|?1S2a+j;AU%t&1e zqII`gjtQ0?zM1Y^5NRSf0R4U5>$UBZKs~f+=X}@BO!`1PUKj`OSoSAz@qWqL94s+U zzWy2ebUcZ7ef@@(iX~>W_%mPGAX@C2{INC%D-~VvVoFKN?6>bZ-MWd^;2Qua3cUZZ zZ)dQ^^-sCdZt$h;z)|!q)bgJ}#NJ$Ft+t(ey%z(}3tI1d{xff|F)L2SUjC-IwtZvH z<;9Ml5JF|nLCg1l(8=W=&H@0P{mS6liJWXFuK7<_TE@UY%$D&Xdq@VShORv0yu53P zDHVv3rh9nZ3#sLfmbGzVn}`L-`+qohz#HQNfLbk_WpGeSY^)MmR}{&`q?2rqpX6O^ zJ<#f)SDNX1!n_zxz!q_R02$`tBnFKgw$RIz^}RNI+t{o z{AIDGUi|s+igTBX5i0>O2TlC^o^o2dmY9P+G5s-b&^X63edbARJBGNIgm9PyTE@EW zg$JoapVO7f}OhSWknj+-}4e~-0B zDGaiV@XqBc`OhRSU+tSZ&$WA~AH)!2x?mMBCD7{V@in!-8c`B}LGx=ws7G6V@4Url zVh)Jg2v1a$-cx-y-C8|xWBUNCke1OplEUV`cY2D-R&{4;6DTDn{G+rEVsXQSCvyGb zRVh!sx>763umWPR5hsxf0N6Xj-*4?oM7K`9f2x(st88(Cbbl7-JyhE|67zL=*gDsA z`xLoFJBJH6;PVf52xz>sxmy`RQQ#jvS8F>)-DFQ zRv!FhPy&EKsd~-F+-Rl&Q9J!N_GH%4*d#Ufz{G$%B$ybM70R4;58PTo_~zEit|P5< z?Q8-pd%&Q_`s0CEah`()*RAJeZE$7|76t-@gKGp0a4$4Y4H_l@11cTVoZsEmM(d=S zcLYfH1Vv7e2hud!w|;Scq9@uxCh$+kOs zLZDmNc(~_71;)46hxAUEWqL4e_5cb4o_+g(4tmzwar_L20RYH&>Gwn)4$IxX zh_(#l+7LGYAja2uK#b@)X~yhQbAxo zzsEm>$EaRMt{SG#b=N3G%Lc0evvOiGy${gHwsFu_Dpkzkif#(4Tz~k>*&pos%oHFtPKNUM)EI6<1@dnu6@Q@ z1lY_jF#w__o4U8n*PhS`*JX36NN|<_ACaG?#}scP81>i1Ay2yN=ClU%NMIPWzh(^` zRo$_r6HPPKAc!#4B)$K!=!pu(8}U@|jl>0RZqls%r3@7%?$onwyvk|qfJE0S zXm{uZAdCfbDFS*<&ZwQx#x?-%k>Wo}+;h`iah0ok;o$MnJr4f0&Y@nw2CZSD>@wgs z;qQVVpOQTD`gm_VwesJtHw#?$2&8@pns)Axwg&4<7!yDM;9@!g4%V#UdaGs+0;nON zzVeeju_CY3V!d9ht{wyv^aLPXL-xvo8R^EBjiSpMg3wEiQ*V2KqVm!AZ~l8o&xl+h zAY?`9XiC#{dQ4`Ih9d8p(}1v0!SE%W25X@m5+>`6XM-eIT&!#lmk)8}zDK2FuJ>w# zy&$o|#y$J3k2glQO4}{CQnoerjzrehPk-=P+HUcRh|UVb29~oA9!i@vfXJF&DQj_a zYT9m|MI;xsJk|5&ptM1Ue6d5pdM1@C|Jbxa8`2ol9TzicS9hZjluFw}iAEh&%Xm% z0&xR#WsU=D?Y9ipq081kJp~0~9HP3tS6lBwl6DE}b!}>i>DGv%aBH+&y~Cs0;cT(A zQ(Cq5l@cVbqp#oY8YQJvOkx^*2Ij&bj{!5tSL`%O=O43B1My1a4YoFLP=i|=gRlIo z-P$S;fX4EmXV?~Z8E2pWSDT3i)DgnUJ^(CnNvqm`mhM;>+yStIx6YMPwYV0oSqH!v zc8kx09lYmJ;#@s%EBy1zp(B@UJwqPdx)p8C&z8Fbrb!&|=h67aY}5N6_bT;bc~@v_ zwTf#id|2LX>#;Gzv<+G5qzGR;y94R)?9Qd9Q?!Lzz;FRDAn13spSgS_8qii1sCtb>Ks7XZvFM>;$m>_O+7x>Xyg)fWI=guP>`C)gf)>OSUvUDw!P0U)FOfezmU z=lZ)|XyHnb85sa57xB!OUXaG~eEz#G?%eS(MYQNU)k_iBDgLs3Mt3|?EO};xUhb3U zinzu=F(VrQV}byXhs_jGjX z-NagjXI6DTRLx%A77*eyq*q!V{2k876|vd{Mr#+bSxf^dL4vA(H&9E^1wpyI$^$+% zw$pmA(*1N(#DQ0|K(yv)SMqc z%$y&5|KmGaKi1~n6tM}`>j_@Vb0`1gbMEA_<}=ctzk#)l9Wn=V>#@&eaRWS!6o5uT zOq;{Y1gv9j)ZL|B!JHEDLYJV?13a|iB02gglf3m)os&6sb%JXJG#Pxih|cyzUgs)l zt3-n6+I4^4<^@J9&9;318$A{~$HKHhAWyeuPvr$rL7u&S zkJw)9a6E&T<_laptmkcZLLLUAS6qKXV6VI0)@7rO-2~1M1oXu-rtl%^tkNwHX>U#4 zE5Ya$Nt(b`7o5v5>^zRWe&x>^^?aw#>-{yWHjWd7)QS9y-mnf#bqsIug zsyu7EsGN>_c50@3MUN9d85S78Prpvr5h*pR7Xkuf0zvCu-r?$u>=6V&fnHw+fPpiei{fn@TqoTz;0PwL z!M1&!({e6g&mBh02+jQ~XYfKn#YIzHua@z8u>(DTogTl9i(hkdY8+zVyoJsuVQmb& zDlH>XGn}CZR$z%AJMSvn7&t-z5CF%a>({DP>f0l%gn^}3 z&Ik0ktd(dWdOMmlHVB-V&Xm&DXTDO8F!3rjGgP{s}hw5 z=}E7(zibkRX-?Y8+dtjV&BL@me87WIM@P~Tmy5c!I01RZ_6R@=R0YD)gGWAWJU(Ktv=<%ii&^wY=nHe!&2>x^YtGax%W|NS{O5gA6 zoC4A2Q>4V<@=)wDmLM~9TlbM(La<^7i1R+2c^Wcvj92g;&h(xKkTU`Ha3IYeAdI6* zj;#sL{CznAf#XC!=RR3;(i4N;CJ)4XpoC!!UmO3psA&M=W&w47-k*!8!7cc#7Y1c4mC zcDEZmB!qb^;p3wtZnNtt7zfu=ZY1`Lj%fhl1X+}YZ?8E>XK@?T!d4Bop13EwUTZLC zjUcH4(mKZRis)&jjGSWvd&ipO@{Bc0tyB>xa!WjL`-0BkCzCQn6U0Ai`iWoOi8(<)A;QsI+7ae z{!c`N?z+GT$a-1ME>}@eb*n_khh<03fmWkH2pxH@*)#7F{x1;#q#nxHu5O59e&Rj(5s_OH3P* zTLSzg&~`O5HXofjZ-R{ku_MMVT`vBTp_)5qgY4Uh;8%*WFi3orVq)cqUi!=WL~ETd z4J#n#Au}vXw_Mi2i;7(nobT>hVoF3B4^D91TJE?j5y%@Yw-vrQP{dr;$K$?etfQdu zuBUI0iK!-ai(0}+zFvQsSC_4Q|9PE5j70)Kb~4^RB(TVaS(98bLMqyC;T&Wo{qpO& zcr!8fX9<~TncsKQ&hb#je7f2;k|6*xFV=8UFuh9UyO2y9`5*W$c^An9mbj(CIvw&& zOa(w&(?Nc}Fzhfut?gmqQNrf<0O5@?tJ5I=g(yfuyMWLgcolsZ6xIHTWk%;h%|D*uqdGqmk_BW}b1 zG0k{Mm43lHAdhWY>e@ZoXzaH<=J_uYvEztH@XmufU7jJ8=E4JxDAT#+Pr+$}OoJcS zC6JjV0MJ-$0buZty1k){IN6W;@Umj1OM7wuY^!woRiT>RDQYx8bHLZUcntMKFXwY+ zMh75<4p>cNC5Jj_{JpbAYy5x!=-}yd=I)KXh2mmgJhULS4nTab5Q2C_sbAuFmf_3K zin;cKC56lq88B%0!4Y{X$O8cYEdP=ZuN~+Gu8sdC=}2M9xhQZL_;imAI+mJpE({EV zUhnm;wp=p@0Vs<+kQ@Mb(~?r#z214x$OJL~Nc>8ZnSqEqwX5aY7X;8-G>xBJ1;x34 zZc=x9@;z;1Caw~|9xflx7KF+?ZF}h+Ot>KcymyiZYY*%V_Ql>7-13hWwb>ISm}L(J z&uQy7FKu^&n;y>yKV?aW!Ci^*n?lhL8b=SfuLEF?Nl(YOugar~D^p?v#4+3$wcL{! z0^9e4t7-w5wIL8=Cl$s0ENWN zZ5*(NA+jE8=O!FVjUZ!`7SQ&-Qd$7UGr=AJAjUOVJZdqyRuk9R*g8bZii|HrcxMCO z`@{u6P-vaH=(_W;R~aDa{e5dp>Iox=;lAHXS5e|Uf2peud{%)ZZl1knux(tw-Wped ztm~a*iJIS& zdw_Qqz4iWfv2S$EtPRq(UPV};gb*m0OBziZrpI6nvZDjARd%_JWnF_LI{<)pyiN7= z7dt!&wRq@n9VIP0IYc`255WXE@udP!xa^>4gLDdusn?O;?~&g<_m!VUQZ_G6fAy}^ z`#@3PFfgHMEnT!(Gx@~tEe!bi?4;Bs2zn|hZ0BU5wcbH82DkLE+FzWtu#U;5 zQbiB#WgKKlSE~6RaNf+e1Ba9tgJUk|_bLgn^-Z=S+P+NLfgUK<#T_zxb41i#`Sv>> z#j^H=V{c?fPrGl=>D*Us#fn{8xGO>0N4{L?Oj~U@1!%QA45vtY+@1Ndwpnt5>ByzZ zE(m2Id+ISFOEA$dzW#MrfnW)PM^6OsmIa)NIq{}*+mo3H5P+^X|Ne8WDU*A9+tgVP zPSaLvUK|H;9tpy1T@Sok_t6?)l?UQh;*nv$xLLc1c3-PJww`aTxddfng?_beblIwJ zy*KOaV5f|*gMl+?`+ zdX{ImW90PX+|G}Rs3m8!rJGg*6cE9!dp@k!R%|g8?mZ0b-)yT}MKNz`U>J1I%B*@d z+4hD_V?>>D@}MCC8GTMqcMb|!H_^Z_s9o9OI!jw?AqapMzgh2Hfr77K|Mk)B+S)DP zoR|xPB90l5tv@gB)6vHQ7AtqBd!W$HJpEA}Oe~cg+hs`%!*f6; zs~h|3dBq%(?U^^nxXG5p+~&|X^ft`XN>@uZR2`EZ*t)EpdP|B3gt3c`yUqvk!On1= z0ujf(NW!MU6CJm>7Ea(TGP7tTK~8H-He_j_(YgiQtXU=6#(HHn zY+@mn?vDV;%H!9vD_u5aD&URp5$OWkqGRRIIt&yJ`M5M@dbZowwW<$sU+-tF5Y<2! z{Potx`WUl0TLI|;oJ)GdHErVkUaznaUX<2#XpEkGTOnzn=`AL>({0P6rSw>B+5~8T z-wQ1LhXc91!s(%BvwIbZ4BKupGZ~CmTRd8#N2?BXiwv-VF=1C4H3Q77xeU&*XICQj z7AmVJOLj~e7zXA2HiPcX78?M87?TU^fx{7pPa7DW7|!^_sM>i!;-{ZA)?RB}1y*0j z2jG?_=Gw(=7im|qX@`khS0F=n-^6E}gibbZEs0OGLg1>lXg+5?43U5oVF&u+Q5WqBJ5K(qCw|tV(G!8b^aA#ltovC{&FpvpqA5+v^TQwt6SF|{m6n(HP28Mo)1N8~41!L*<2&)wet&LyTk9v4Ey0UE0O>P1vk z!>{$)uMO4m4-oSy0L-Uv{53@bY`T(G+3pO@XOEWCZ8eR!q zu1@^`0OAf$4fKd{iB0IU&o<&jEng&-F6c%a@{hwMb>t!c+Je6=l1^75<~k^d8mz=6 zF7>K)9nE%9X;G4Qvi$w8LXQ;56c5VKw?}^ zZyfi#TfTrG3LFNeORkqXScHLL(2XZYxxo)g1*pF02*H9C)@L0H2WxDj*Wc8ZYz0CP zdU>nQ-5vlU|FC?z)Db*Xn?pgu?{iJE+Q1pPK224hW8f4M> zumjgOEa|j9=XU4bEEj-*qX)cMK>OO&`}gQEG!ROPRK9rr9w!#ex`o|NKh&T7xpY?p=d5@B4K+%9{(f zvPf-fW0k!D@XJdpb=Wb1t&c<#?)Ks}9`5$GZ|L0cV~HsZxj)GBZEWKF^2jnBrz|lK zykPQU4!oSN(R1Zc&9f=ez(!HoZD8v%&R{liZR-oJ`bAhk9eEv+OfhQLso5)04KAE*N~r;o<7PxHd!L%03(TvIWbw3TNJM zJ&6N_`fK?B9ZWwdlG9~H1Iqe<@(phd&KF$2=v0zcvox^ncbVPUqH=@A2aRjH%OJXS z3|Pw@N$r&iq0=!S03p8J{jK~gD5GZthIKLmzfdT*p0t~FdH|ml03BW02o_S zf?{RsU;Nw0i|??|UEgML%QTJyYbG2xTBpH{>FDhLSaV?czhF)&?~ZW{`ds=FsWtq) zxFK7fF@1UvLY}=ZlS>Sr1u-O5|E)`jqu;umh{^1#`T4XdnAl!cB*Iqp&BsLtw{iyv zX@Hp0K>bWvKh`(2Js@-*G2}c@5?Eh(L43Hxo$|t4QR$9aW{|yhV^3~1ku}S^=q;*& zFnDK5LSY9Cf+%npSn*VnUKBFB8ew1<^umkdwOyH*szG5ul^3>ZyE6Vk0ElIp9AukD zM;>#P39;XhhdOGvu(0QOm{`P|Z{{wFlQ^s+*wpovg;IMST7EVfw{d4`!NAP$LIqCmB<>hc4RH<6)&$a!u}}KHJB{L(I=T zveaAh^B3cA7}y=t58?ury_A5xq8~n|6O36RBYP0QS9z}0`e5b@UcSiPtFG3K*_{Eg zdykOaVLCW(i3XVP0{|mo??U5)nMbeZoNJCuwFqLcQLaeac(8#FrlguqA{jzLFUTN~ zb`gpI%G~i#LZw^s*TQMgjQKBnR*P*ak+u{tBRDW`I1^Bp?BJpC zXyDL|#%VQRl!_WVRRbG_Bz<%CySROi4NmHKZijaXK?Db86)cndKe_>gGYmuiB@ayB zEkTZNCT9NajOR}fU}zZk%23REPT_{+fO25Wwab5(fZ^P7%U&lf_(a3c z)7Fv%hEziW7oWtI@`iGy*b~W}&WuSyUPyB&bj7j)gt6fthw|z>d#gY@Iodz$)vam+%OdUXNr2vk|(;{)zj<|R!Vv=61 zbjTZfBoL}Z1Odwc;(JqTI=`EMSF0c0{q_F_(yRfT+h|JdSF6S)-m|u4^5iK~JYl8T zBY-UIb9^-_v2@+8iTJF2k)j`YV+;Zw+!=|87Kfh34@u_%@NvJREn3uuS{#5EC}dn9 zzTW+SfkL`cO-&y>T8UVd=)I>+82Z&q)0ebq-qBw%i zJ^6q)i*!I32SEUAP8=ElUh2BaGja!zBt#es0w4f6KDjNff1YyjU8nvWf93C5?q{vh zI-L2UU##Jfq)coRK|HJ9d%9RNG5EaSYK>Cg)LQ-4t~d~0?qEy>y?Jp6-H-K?=9=Gc z#NDVdpM;*G9KwG^-}u9_Kk~+PdFO{(ev7FI-0kUre~%;W5wH zoEAUu3Ge@WT|(6tGbDoWkFm2;6Bd*b0?4x!rz8x2_R)mJFMk+K_=-;`w25+{E+I`G zWBpNAe4>B+rHz?9p^JFj!9eJDOZey}Khgd9hYKd;E#1Z&`NUtRcq(-U1Y-PQf491| zNSLZs2%S5*)2EHDRs74vwbC57#KZ zjI;w}1Q4FvIx(^N$~O|%p2{bDW_0;P_s9V3en-))2`9Il_l&#j7k{|!0)>FMhWtd- zN0o;jpb&zd{~$(Jct#-_WB@S%;Fo;UQ!9jkFmZ!pGgC_h#2_3y^dFD+jIWMKYJVuj z%Om)^7mhGcqyi39PEsdM%yvF$+SH#DdX!k^5_?2K46Cc)w~kd(0ASO9PFkZECyWuH zb=E{DKfRnl;(|?Yb!E=hai9=~2EZdK4g#80y4`hu@(uuqu?0lp+J9zqmBiNJEfpeK zFS?|4 zUpC(6%Adqs$HxbS$;xl9)^o*4V!TBFHeih;ezRt7mkmk>l^&&o@Ib(ZMU!3WXaHW~ zXAik{wDU}1RsExG`o%^g^@H5OvIlWjeGynNh9cLT6l{$R0I;LY z;XvCd?tl@9pePX5Z*bGo=)?*SCa0=s!1D*PWmQ%9F@uarZr@|O7quq6S=n0-2x^Rb zq_{%M^<{)0mPPY~OQkZWofBDG;C6o27LieFo3w@&hd!8C>x;+bl6F&DxJrS^jtAlY z@X?kpZqiEtW`RV5(2I8JZ`T#lsl-%|1b`SHnxmbJcpyppsF6l)u!L5pmyFB(+Bq-t zMiwXUO4Sa+uiI6NYxrtXbV7w){7@z)<~a%YxBET`+x}tXEHCwa^#2(93OK8(?(LyF zq`QZ1m|*S%skEd5Qi3QgQUU@)Nq0-9BGL`gB_JRm3P_8Tgp>*h%(tGs&pLbUbML(0 zpWl1ld*`~Iz1Ci}*N$^e%`fDs9_<$lK=a>mSz3sJ%A2VyaC(5)F=42Hn~hM4n<{OJ`F9Q8IiI6}l> zi6&Kg(d@JjfK}-ZDQ<4qK_Q6KYC=4`dge}43Z=b9`7WtI@e>cegxoIsg_C|)Q-(zy z>vl0}!|NR0ew8E9^bC=KoXr4?NLgQrI6VDq#gPJ0kF&@On0f&WQN!tCWt3f2BBDZ} z%Ax4n#^r+otN$DU0K~;gp|3GlDxHl=(kOYvjuJ`jJ~BrDn$qa4i5!(FGvBqknke`K)H!6?jAXL@Iar zftf3V0mQBG3@q`XzCFqh2yFt)qUOt+JqrDM)-bv6L{Ov}f}Q?pgQH~t*jwznAAnh&SQc?hL-hjnwSg*QVThMj`;I#l?*KT-*WIl)$QTZd; z54}dp0Mm~lKJG{RAdGZHe z(gIJzKss@cUNl!!I z|FUfM$&ckx+6pAU9?b5O8Xq{SL{L@f+eP`$y#hOB#?gj?-*l%706wq_P^JQ(N1z`G z50*AlHC`@b06LxjT=qy1Bl1QMUuy~;CJrH@vUGu%{>AJ$^S$z$%+FFwH!yw!0J}1t z{}FP&Oe8W&k%c;`3xnx`4FGSN1qkxjtfAj8AV7ML10YTWPy&lL=kg{!gaox#;#q?h zr&|DI0{~-_k-^_?xT6#iFZdGzbfk;>DMPkei$1CZa6~pC3lIY^20i%Y9o5IUp{2cU zuPYRL7zv8uVPyUIY4MMAD599lg>RSnI5C`lF<-`uNerJ7pgdhr0-nlxI#)C0Z@ns1 z2`m->?4YQZPiND<=1cphOg-8o&}t{Tq`Hm0hQzSShfmXwt#(wdlQ-^9LRcgY(1BVD~5hdwg8n=NVrO5MnbB zI=}<(SZp@SmfucDZ_#Fv903GKjy;nf_m{C}Y{}dJNPBmv5;4!Y^pS(&(kWZU+c$(# z4TlpZOz*!qt9#YmM>654kxBR{it=gS*XJWb$a!sdsLP> zezdW-YSs<_MF0qgX1f8%+MBm#p!89r2nInBUluJB{odl8QB}UY?91G}pb{^jA^^(f za08I55+tIcmD)?7DK0QnV$p_UPNsr8sb=~sgJ^>e6ABz+_FM{UkRy*8{gNc?=fCLj zHW9JLvUb|#dzSR1vdg-H+htv#JC2sQGR6Vfmgl}#m2tV3m1XGbp%TOoonZzA#JJc_ zDzDcaIa;X{;;Ateg#AeQ_@V2lxs~p0-y9B&jF_=jc22hnqQulWcEtGH{`j3qYUb|v zm8pWgU^FOI8v1={87~?L*N{LjXvd=pGBcT!T!MgXI4rRoJJgd#!sNcSi_3cZrbqQ- z4gk+c#dGSsoLXN^ulDdnyyyfXfnLz%wpY|3ZGqrd4AOugck=OOO7FmKUzXMyxj#~C zeSg&Nm+<3&Y-s?7L(X4kN|!N#HAVoCJvkCnJkU$L76;g6K3xc^FuI(MN5}kLT@5h< ze$%g+79jn^ief~JdyrTG@v5833bDbbM+7);up~egL0wb@^mz9_) z-EdHh`&s+yd%j$GldDj9YxV+rZH0BoH9HeuzQc&JXcUq4k|Y z48lnue6L2A<`@){s9*(^hKn9fC4CGW^`lN148XT-(}eQWrg(}ya`@0Hk0c^4)ex=u zr#4kKI(H+TOo(t917MfI=0Kyu*_1d1`n8uC#{i}f2MMUuw~rd28lNriuWAe>06_K( z8!v}WN%WqYZRJVPSydVM-QCH-)+G`Meylg`cEr^C6V)89SH(ukdtG9*D)%{=FsP|s zDYFPUJR8r>Q|XtUH^UwbI3BS*<6DM3Pb0Zj$?Awe=`?zN`wpse-B;@y#+1hbAeWjL z2)1hrK8ylr2Z$LWi+V3Jw^$FN94| z#m(dI?|OBv=g&NUYjfs#RK&Vfia1f-pZtjtWi{yHDgqDU9y>ghNKyJT(`heYV`c^f#gwYhPl?p|`?D(W(U7W!xWm23HSuHV1X&{& zJuIQ-&u7n_^OqmSszDcs`}7`G2`!@%^;-ppuOn8s&?jc-0MNe}p31+hdE0DALUxG4 z01(4(n0Qaxf=c)J-IW`}fffng>e^Rj1D6;wbK1z?zK~iVcrc)@FW-QFmHJ#lh#<2w zp6rT>0BQZxnyZa*^x-?bKm!0eiva{J$ui<#u7A9V$p-awK(e}7HlnO?H0H#jaSAyy z>r^B}JJ{oU@8YH&F+m8?cozbqfy>pXua)m)Jo=@q(g4y^A%M!b{%@9u{~P-<{=WP| zIwpVfQ$X|CHT^-{7l0hG+`?;4)-?W|=e~3z4uNK!k#qE^Z!tz|e?ngX0vD{ULSrc! zjrR5VV2=qLuZl5m@*48XZi(XuTu<)y!>z^^KB?~C5AOI8hl8~G&XoJ*n5>P+fF@K3 zYfYJ&w*K=aLeoQi!?j{;Ns>rCS$N#*?3{3C46@* z?rN%Rv(Mvq5rDiMZ@oByziOFFi)1q081H?1PL=q%0OaMedC+KoF03uSClIIdc*@Y_ zivsZ{2uw`yE?#fvx4m8!zYzff05?N(8uH9!Y^&pG3IIr}&zh~5egnn^7wfd;>vH(* zMN+v&Vsjt{ibJtYv)s(MbxDo*0eDc1x6`pPr~FmR2K3C0+{Ex#pHALRLX z|COrXZx1#g%1!{Vug3;l*73Xe`|*ed8*e{O*16#?68D3*RlT6?qX+qeSS*0NfFpyi z_y-jO__&GOGpShQtbeXzv5=%GnJ6xDq?$J%fcG*N&g}itgsnE0bK>X8Mksz|QC~B35OFHca7fMCMY3`cc*C3w^j5Wzvwe@y9wqTEzy?YIK0L zAMX5Tjt95DchOya{{H3q_-)d};ehov_N`CDTKL<9`s+?M$`1WbskY64f-(Pd6P+V) z_5NG#9#+wmfBB1p)~h+9RQWk95*uFk3(}hen{^ND<_&~6>sA(z8F1xw%zu%?^s})mzm8 z0o4fvMLZq0JF@Qc@@n3F`+IBU1vx-34}wD_8oE(`IogZvpJA3NJcpjB=gt1Q@C1k# zgg#8SF{1pOa5eFIyFn9g>=-U`6-K&K)PXwEoy;03xRfGYL#(20K8a`^R#o*SY2D7= zOk=dg)9lWvLVZ~6!}wC~K|g=75S`$_vt}4pD0`8-M`lv%F~p1A?lo_2y^OAD(VQV^8iSQ+7GF`jCHr5aQ?$Pr32D{7WtK ztGw{mmbLx>bQpjdbiGWf#rosOJRh$jRUMVdYkgx(fMz@C7ISq5B`K^QUv70?a;ix{ zD1iROFlg|I=iY%Jn1Zu?plSwweId?U_Sz!y+tr!fB36`c(i4ik#&si6<0wsaP+$w!Y42zn) zcwT=EN>F9u1a26c7?gBofc{Ak)-1fBl);z%l_Ei0OJ_`TCXzYz{o`i*Ap&J^9g5u= z2EBSd#XCS7{{x6szx;d()u$Pgy8BMfdgu>g&j1Mhncca#0!-icIBMGIZ@ee-ckEukfz@BA$5dH)?%8Zy@SDa0DW5`+*WzMA)fTST>cBHm{$n z##y)U!0^Hw=m3|a3%QTA2ry^aamU{Gay4fI8OTOv(3{NteiYf{)-n}{!BNNjJptP5O_y{d7Kw-ctsRmm4-Z%~ zgcBHk$M%8(?vFgBIR5!wDQ_Ax=NnnwCyu9%nS8N~T1M)fvZ23$QAL6a#Cnu`a@fo1 z3)Hgp!-grm!;7Ad)h0r2od;wLVEsOxBI8Hbcj!1;E+s$+h1>6b903*Ix^u(d9t;AP zj7|gSI6#;){F;5W*YY}kzzLuxE{Gnm=zwa5@AGof;lLn##)LMH24KjfhrR@ZO3VJ3 zgnx<%;V!HMghG*Y>y$@lcpj{biJ84}8LYJPF&;!KL}MWO#MQB9{$R@KJhY&10A@qRn(0*Q)ha%*?{-g0|CvFs(IdLPClpRa0*oo!ik>eOxaGO&@|Avi zuPYE3KrGQP@Z^&{@(Ee`fR`5t5IloHGb(hI_t@)HB|!kp&Y9e&0kNTvvTjfY#_!67 z@Z}JxI*`hCLT#5~y-h7{YqOM-VmLLH7 z)o2g}K;+Fmp?_8VN-9C;1_ppQN0&A(@%zu8$Vc4hT^^%mlYPRFn> z6cnOKal{yk9gWVi&Ue3bz3BszpxXw!+$vI%3rAI zK9wB&T7F!}HI^&JxX=uN#mJsg6Sw>6j;r%UJ^KZ2`N{vKW%iq3dY==%YmLxTnj9B6 z@llt+q5uG5l)X%xW#>O?Lg&}XDQ?X_B)Zn#M9R4`_wFVWv(B@uLTuKcl@$qwI~|P; z9kpYe8Z-P_$H7JXh&9Y=e@@Y9@>Ub+iF(3=*0JV?&p`fC~s(j`3@9mY$?yMTc2m_`& zqGU|dC^FZh?FvxjPyJ9d3&2JiL7gO(2aKkMeHY5XO^+Vn#2{!$8tO@*B7wsX01)Gb zf342g&|PJ%SJ)YKt`VJX+2Ek+L&{Y8rPo#;xYO&LPSXrJa_4^&RJ_iQNNg`yKubiY zoa|{K{RxriU(CMAUq+)^8TQ3YIiMM}0^lV+lm9!JJ`C|QLCn6>>uQ{>nZ(2w@;@Y* z8q**6&KwxD;)7r03sOyh|Lt-xsn0J9b7%h{;_H;5&^r8xTc5DtciFnpKLB3hxRgh2 z`C0e%9l0a6O>%Qh{pR@s`+jF9u`XM=(j97s?ynY@_+Ph^CQ#y4V}blyg)-OV+_h4< z!o^b0wW6iOC_<<`@0VD*3y5u+By0`Q=6E$D_^-yUrrMn<2S|?4m=K(_iLI$qBVh@7h*>n z5`)-<->0~BU;4eCZ=&V)1(`U=^_z|J>PgL*tdN@?Klp>w2bqzFPMsm24{16K091*i z-mIO5gONH62vzr=ZIW!Af=MKPWIMPJH|*;oXSHE_w#!72%PIHI>A9QyM;up zKQ7qB>@N*Sgt|^AWi*v5+d&R!`a#1`Apq}@-(&TMy%S<_)mP+1K6&@Be&q%OUy!lD z8H)vY0{ee7afT8gYVDMfN(pHIHm0HJ{X~&7~o!p%GmU$aSIMk&&`b#zA2UfV_ZF9n(s&Y{1(N zAZ@LwZi2hJ?>8xy4H!wC0te~U<4PoqAMn!YxEx6*bew3%jMNk!3k(jp2Z7_J_WCn6 z2cl8Q0iE7Pe-xolr{gg@_V!V(^X|3(VGn@3fC|kQ%ILJ+r7>~9LJ03u)7O{|jq@l@ zd-A1|{jm+nK+Vm7f=>J+?V=~w>|+2q;zcu;i&tCQ;z=cBqT0bMA(>F0m1VgU%{C@L zj##dLeUdq|t!il-ex32^{U5vT^5RrFDVDy~ocnQ;7B_fh7#i!@Et}HV$huSF?>s=< zc?N9mP*;j&YpaQ4OqmeBc)O?s*d4Fps8{;f*08LBGe3N6rsMYL13P8$)(7nZ5}oFb zL;f~jZB<(8es5}}fd`7IiVeT3MFJ*n<#cw==+Tjn&lOVIdD{4>sv4|%knQlCkofLs zC}vy3-Kr3Xt2tlV!3-AwfEW?T#QQE4k|Tg2jwNex%iPgkS7QU0M>PsDaZpUJzx7ly zW6VaWM$C{pg#tE4l06cB@=5F3F-{Em~ zy(s(CgNQ2x;4Ylk z{dsz;hvIOsS3z0qo2d|kSOE-pYh_}o0OO7? z*AZ*$u2J5M-`yB*N`G`A-^Y)*|CN`4yN)_zJ0gq*V%$XjhAsfq3a+zm+^a%$8vqd) z0OI}0Q%7>^g|B{RtC5Mv|V5^O{ojZIgUV9Q(7*$o-ny1a1;N=&0p6Yn_3@36Hy(WM^Mx0U#!7gmVf&S?tr3Ph`Ma}9 zMOe3!Db9}$EJ`z?LMKrYyeia94ModiH~WuY+)7;9Y%fG>5F>kf?c>ksJDd%_BQU04Xse7hx7g4AFJ1Biy`Wc3 zTgh38UNHfvzYwi**Tss%k_-B5F&d#xn|{3Gs1(cR+>dcN)5>zdc;!2ehNuy@(*w46 z)*#8vRi`nJ!zf?O0m)3T|HlP(Cg2cc5O z2`u;H$@1jV(z@UX1oi^kL^kv1$alz^h zUEfkZzukz$Ag_j&jJqsXB#f&70Ae}Hl-=JsuoFfQA&5~ZE$XLNal`JEQJEuPPE9~Z zB>+IN$FkSIT});@BT93pbsTFf)1aM-=hwCLoB)lec;*1YvR8Wg75{<$xsLbsn|AgD zh+P~25dW9ynHqZ|F2#k8t5G^|M_-A19a!$P#dbxOTB+bA=(5hsp(1|7w;Fsfa3rN$xy z^nKv?-BKf-Gtb2}vITc`(}j47BLL9Ky7^fnG;wU`w1{Q4McGJ?$aQbK!>Y*+F-Ix~ z_C^5Edin<4oz~+*E?miLx6T&L<;;$-qt0?Km}I@q+-M~W?JlEb`seye(}uHThBL&x zE{SJd@w(*uZ|nQV(1L2%$C)w zUS&r1+T`e4j)ox{580jM)^Y0~d!Z~e>fJ151K9L@uOSX7vFs!6y%RVfs!;2&8rB+^ zc<{Lmc1LN%RHHcv6O>-92=C|mFJjGM{Q!5z?Ak|K5fP3o;79rw^Zmd&D$I7?ekO-| zJtG4#>VwvF0U#HOyWU#)$sU{N?Gylr$tCVbpPrKn-}oOOLP3Y=L1sa34UefI9$m zULx|+nT09^uBq{ZoS*ByF#yEt(!FwtuY5F0T3Txk#NSYmbL()8hF6M^s$)Y7kLfB? zh-n=Fv@VGoZpkMLR?~W-VAHzV7N*@^XsT7Iqk&ro0IkFENVST%)Vk4uTVFwDXW5Y* z#%{^30G*H4lFNWbb^y>i-lECGC3B>Z@oQvHEM$i`nS1+`6DIrgaNyPfK=? zX}3!GcMR9 z{K?|yHQ)u0+4M~&3k-rlU@tKJo#DAGAnfD?dO@WVk1t?>NJ<4-M4j$V z->Z|7pjB2B_0io^9D4UVd5SM2A9H+7i+2))2cWP!9k_T;<^nx;mNE3>tep{XBUHmR z=j^o&&B`c7BH?9wDT2*2W$34v)MdU=`7G?b=RKq>ngnWP7*Ls0Yi&=**bdRIQN*(5 zdX7%6Tx!qs(f07b#H^`;wKBM!_ASgWPxa}Q%U8}4XS0WMBBBO<6#>`T<$Z)CJR28U z4|H~|#NcuMLmC4h^EbZ^bq|Yq4j1aA2jYch${79WrlLxPW2${4ix)i$1o1jbdf1!B zcW_8@ucYtEsW7FL?S01EnG!@21VFo%uN45n788-twlF%%01(qF*`m-oh`-MHn_X_e zsvvGp*Z1@X>mCoy%0i6rLLo30hdfn2IKaXCfI^I5E3fTv}`v|}_ zBECB4vJSLak) zTyEhz@<=iDi})lE{p#5zRizt;sw&^QcI6$r6l7I{6NnFwO&89@BdV>C)u6*G)OrYk7z|GIFFItuK9sn3(mzsbde0Wb5(v=6Tx%;aXjRNg z*%!SFDM0|NKa)E`17brz>Q!EPfdTwU9b)xDEOwiT`K&j_89+UlN zr1Ok;OBOo%xk}K~-;P*V`PrFho(kVTvi@yb9dd(sh%h2^!J-Ijt5#@I8OFvL0puGh zshyZ{UmjN4ikV@(y4k1~0Om0Co9${;MrJH9qoWi}zxEuWO(eiry3SMle?)&{)Y?lI zM8}A{D^Fe3x9)rY^gqB7Ujtrnz4k$}o-yk8a`yu3Bny!{V#d2A&Vb2>{q5wuLQG83$Xmt@{m$HCTP$wWl2ajha6p zV%FNi;G1rqzW(D^a#%N70{|jTdQi%jYWea=s5txY7i^n=03zXOy^-|!7L6hJ8^71y z65;z}WE-`1_~57gvXnCFmOy~g+{^8P#+9!tM*`yk3<6-=gp@AeuUSvzC}6x801&62 zGADvXT6|@T?6^MO0ND{ATj|P77i&yOD<+u2XGWAfI&EF&#u!WHpCv**_Z$o zq{UMP;i19|TKC1@wg;dOEaDLYouoeyaQK}>jLudiqYCFumoLcKlkqojW1tr_x!+6M zb;y}rZik3dVbTb=v#3%j>(YhGVMW*eEGk5dCdD`$V=}Eypu(cg1y5xKfCK@sZNk_H z1{6NJT-wZJPxNa$A&1Z>b9sJoxbnTX%9n&b{+ROO@Mx z2u>3-8W6kG=H2^jWl-a;$^pVcK19VHd1exWwaE?a|81&VkrNy1oBqWN7@JECdgPdnpSmb}>`Qx$%r(%YAl7D&zMHFv1GI8EZA zwP1?mGX%tM<{e@|F^zwGPc`t*xpwv~o~(pG4WM6<)6YdR_{x~c^1fH2dM{XMk6t&+ zz#&7j$~>YEphLusBr5L3`JVpZw2;`ji3*O)LAv410=d4Ww+iBGfNjU%AM>n}Vu$1d z5LYanQsQ8xKV5F`W=de^5(ac4Dh6ch(N?7cluBWr>$fL^Gp!n$x(WdNnCa%UN`p5h zB3FtHZG2^uZ9`;WaKHfu$>CIo8g9Y~yRMH*I2=q+0>o#FP=jQ6cc#i2tw+w0Tug=n zpu4kyi!I`{PmihbdFQ5ba!fPn8UQ@82S+}*^Yqo7EFb&*rpy;6t^h>e04hk=Vd^C0 z$2|>fn^n{D$e=VMsTU03zuOzRBWbk{tUdsY>4^ z*VO0q>NQ-edk$-D+|2g@KqDisz6i^;wU_e4GoP2Y6Aw7xDos~Mx&T-?I5;wW=kzM` zCYWs9b7jV50ML)2PR45X=~;K`{&%po0%vkPgCZ&4Vec25!STrHFC1`e=*2FXq<0vf z^nwBGy|}FlY&dnUEN}fq1y_L1l^^PYs$|xW&BX62ilsu>POqaUD*%kVZ(dtDuQXiB zPz&?vVvyWpy|c|a;cg`-aZ6`r>&zIxUclNADBEdqfPmRPR++DfJB?47@r$;G%4 z07t2lg$V%=`ZME^zB^&(Z`LH+9ePa;$CcS7P&TP zbN4pj1=oC3B5-X1(SIh}Ie_S(r!5q>Ygv;A4j0u|N4&06k5~`@b#aHzMsMl{O@?o;xBT#QAvg`a(0M5%q2<#F|VXa7cY&Y~;Zi z6;u%Za(uXS6BDt6oR)FOKWurV(ooh*xnzNBh-W(~19SHv6Bq?WE>h>xVz zV&Kk^#Y2WEF>X{VVRw|(xRqpv?jd(vuNH1e=C{>CbZRuX?sO6-)aRG}KxN8j7mnDS zkj{M#5tq@{*CT9}fAkYqH?f z7YdYiYie1dm~~4Ac>yJc43my#)X5Kzz&ZoBekp9D-C@=aKRlvP>I0E$zRs@1Sj$b$6^*FE9Cb?SAUWumnPe&=hM~ep@E$Z;VOkdDXbaxSs!i5^iky;}j1i~- zC_#dwmxarWVG27hSOZNBP_psIawciAp#*xl{ryuvxp-#M4THQ~Iv-qXCuvsuQ0j$4 z995z7Zc=+}X#HLzY_)>`j#-@k58tWUa$R34p}>)5_S!OYDenNYB_9@z$c1Y{b;WunviB>L2%85{M^ctU0n({Tm?pbjlMNiE5)L((~oQA^PD_FJY*k|kNeZt5$(;ssu5=2|V=`t5(l^BEStFBg;(Ba7#D+#?IBu(%TVF$8;4T1Qm6pql z>s>0_fyG|jofd({5Qh*4L?7;yWZA@&GJMTA_zi);0Y{8J-f~JM!EWpBN_&{}8cZUA z_(qD&zR!YQtDuTIIVQ0Dse|bmwL}d7Zcn~^rnUm)IZ;~b-=rUuMcwJD;tUZOwYWU` zY;YbK=Vpjt5V)M5vpRwSzkD)JI-;3+05Fvn@u6lm-p#5h9plA@minTzRIk}3kU((j zwBc$vbGvkTK>Xr?8vvg_oazGZ_fI5~gxwz&E9=&VYMzXfT<_*TDb*}|idshNYyU}B z3F2Ta?WfU~qyw7PvAoHxA1D#(Oxxo^zBsT-0!)(omu$g+Y5nK8^ZdD$Gui-l!h!_2 zCb+1>;!d3Zoo%&Lt%>s|WQ>K>LO%hNS^n*(ZKTVXr6V~kV3~yr{{A24lVynMPb-QK z?hk4%cO*WTK)Q>-gpcibK#6>B+3dGROZYe|b6FaBQ>=*n{w$+5(wp3Ec`RXN0Vm5j1BGeu7xB*tixRfj05E!`o zcc~1MRv8rTh>A5Co?d(qK0y{kCc|uSw1;pmxpS#Hh<5t3Z1M(UGZJT_{-9qh78V8A zM)NE0wK;$g7eEY{R-=LP0t`l5hS!q)Fh4w3(wJO+N&6|A~xzYq{Zaj(& zCu6~0Qr+#=t}YaC79OYpFL?2)6w*7)BpToebfK@z9blZ$W#!!YCbf($v)(DetfZEy zr@KlT+v0@Os@af`KsGorjbVfT@?)&zXo3>J$#g-)yJxONEciQdC6voY>dcfOV~h>} z)-{GWi4q#+b&cAihuf==Y;*>JOOXU|5gHI1`pH%6n1Trz0B~#Eic}OX9ygOVygoi$ z78RlSz=2gilDJacn^caNJT;A)pzi3~PG%{S62O^(0JZrcj|)27=0W`Z0|dF?Uk=X3slkQoh4Vjr62bMtlZV;t@+L0f9_WTg`_`IudeKn*}D34YNrv5W@WFC}*XDYv-Q*VOvsZLvu@ z*M2x3P|*3C`z%+M*ALDwebgMwfXD!sqkcQ0M*m&>{ct$;^2ft$!%H6p2!IYfrbjTK zdA3JVMB7s!7Hz62P=@@8-Sii|BEJk&Gv9+~0HI&Jn7XRW3)haB4qA7-`*Q;jBKAD} zn+wVssb3g^-__EL)FQYc!to*+^c6(vF$K;*Uwrnvwn9JvLKc<5_+6eg?mPQ}9Sx*y zKOjK+=ah2|zCHguTQOcyzj7L3gQFVdyjl6l`;wzs`ead&=AqSHl$_EA>%K}qJsUGT zpGf&;x)-Pch%PIl8PnU#V_yC?W$pmVrM9gDb4x$Xc2` zPTy$4{qr{91y^~ROB&u(voO2_dx6K3S`TkF<&^|_L2)MrN#&UG3Lp?)+i)UGkF>F& zd5esdDc?+fhR_rj{o~B-aB-`MCdD2~w=$ETlBCVKgiIIgYBBocmhGw(KHRmXJlA3D z#vpJ(l4U@SB32<_1HzsD{4#iX1eY48!`j#pPQ$qB2RNYh!G8=2kL|out%^Jz&`5fP z>HLR8j1-VPpUIQ-r@I=rxl|W9M>b9?f#4=1_->g|wx>hAxEKV0yp?6=&*h|ehRZw$ z$XN=@lE_l1WZx9DPQ#dq10D;pIxpKKC}vqheZy9j4?|>eW>kz&U=FGCCw6l~w%fnj zWd*A^eXwc$WLN=Z@tf;kNP8F+lZJy9(f`SVV#o`;uh;j*B&lLkGXltBT^jX|%0TG& z7lqE)8HmN=r#heyYd#@bCb>?uAG-j{9nYF$)pLCTqhbjGJ1Ci92 z*9#^u%_B3b326xgD8=Ip?lkL8@xNr0n(V`%(*%&B{(a&d*Ipm@$RrJH3Kf8x6g1kT zKV1(`Rx6hbZ(B^<4i-+-5EC}z;F}cl(C!-u;Njr3gRWzAvF&7N{M@*;+wuAIoO_Nf>efCvcSY(kpsXo7*7n|y!1TziUSXT`IP6lA4jV%S9ziP#TW97 zjafkf0K{J=%)M>+z}6z<jMB{EITmqxc*h8o0!(ekS$oH>OnNl)L>P%Gt&Ky)t3?* z%#|1<&x&XKFoOgcJM0nOE0^;^O8zVRU}Akg0nmr)b=O4RTANR4XxQ<6(rCs8;Y0~y z%7#&KE$|eWxRBUt*5fY?@lVbujJNXqm1==nzT5lVb}5E2*hESU@L29F#Nipq_U7g6 z&a!*smVy#FG|&+%X7lYdic?(r>C(N89T=nmK`x+lg`6@QntlKP;#ECML~!d{uY}rG z1_9*%|1CeRdof-PsAjxhAv$0G>xIs=lUzJFh2&%mciAxwrsacEw5JPl-@?O`NZTq@&(-94= zmxUN04syb<0P$m6utLgSFtzp$$!q0==Nl6Rcf$Q@;STk}hzPGYvfCkNel|lLIofnt8VbgJWg7deX(*xs*(E zKbxF&=x3QRN9N8AIN)docf49a`lTsgz1#uBOFS7kv_d62Y(U`UO82EJaXV%y?*cb3 zJtgOFCKY%&7T;L6lI9j0dgu0F>8~cL83gV_mREKGw`L`gxx)sqf4+BOm-5eb*RF=u zs1hm{;>~~s4wuQP9nD2uTew4oP|i7T%VcQ+6aWzaIH#N|&XE(=rj-$=98t13a*2P+ zIQ>p^G^B=i&VAU;2B4`UQu$)T+@-2Xz7{geniXFLr6!P%#v|B?xpsUjuj`Ay@17#P z!BkYT0f^M?X$O~U?E!nFs?E9&gD_8!9OccOy|T8E@n%-*y4hKXpW2gopDxP zCqLOZlUgUoRI~m&S7oP7P8dY)Lwg45etPcw(_zuB`!u~+Mv7$?O)e4$fPQqbXumEP zuIh-gIR>lzXBD!%egz=3wvYa6ekv8v02<;(Sc@SYC&?u!}D{X$w%m;4}bP*5y^*hukIZtYbTS|-cGBD z@u<@-@9L+qylQN{;LO%B#N0SEdQlkuwyDt;<`en0S}kwIQS<7?Ao$BkM6 z05SF<&^j{hz8!n)OiKw?X=gl9f*7v<%b)rId<%xJ2yBBHM94OfTX-YySV!rNc0PCF zA|zGC$Wp=j=;_Zra@p>{1xF{+%3?}6%t0<}#nn9|bD1f#GX$Gl{hGu>Utno2dJ9F= zmhoVUdI|J`+D3Mj*~P54(gr`B1YY#@7t!MPIIRP zR_#vGLO2m?QA`qV_2^8sg3007%FEHk_$qqfb8E#+G7qU^*{}H6><1Q zGkLheY?gV!Uf|ITpG$8xQ7M65P@)`j@J6rSv(JE>;8^@@&u= zSzDXYS^~YGhcoBM@yMu~L0-VUAHS07wgLAYvA$`P-o1gU#MdvS0?eibIP{}g%0`Mp ztbrk7@tc?92l=zfdk#YLA=o(Jc&NOYskgg1cCb|iyGB5Z3`jz5BstZ}zug5!jIo|^ zZ)Rf)qD zmm{Ce;d_SzCCBLZ-u$S_%Q~x1C=TQ}NRIj??UG9sawUi*A2Kpwc=`CbTyX#hbB?7^ zc~00_2raS;-J(*t3H^;*a`C&&-3^ypcRt%{W}p|;vfRk{)eH~-@{w;xTRn-tKewI! z$RnQ7A8xn%BQ=&cqvjy}Z2jIHGSAulSU^Qodu)CpDc;L^L!8df*Q45F28KvVLK(yfWf6I$pmFAr~gCw ziQgcmH0qz3KDCzwxbzIvfET>HLoa(-00itxk~@BvCiwH@EITzz72rfzj@^R#UNS>4;?&kSO@nZg`ZF~pNG zv~o|`_`R8dUeKbY&uxQB@c;s#{k@BBfATzAX7@*idNq37C=dNBk-i*TQ5&ucZ6CBi z&NA)6*{=a~QOwaF-0WuO35dszE5Z0Z<+-Jf1%ZGC0X#LxW_!A01;4-vtNw+U~{;6U|uM`VA^#I7hY|y{SY?q=& zU9HWhu_?P)WnypNka?QzPLc~i;6ndg!=~6(!|uEU@W%D=bYZ@y*Y$4wx!?6&VDT0j zpVMqib1~&iQ0;~BYb$Fo1B_T1);x|s%*!|&o z4{;T7;ImKUQi$#0-Ugihx#0Ot55_;3Nw63ALAJ4SmT7x90|ELs-w4;0mJiqve_aF+ z01s+ia-GM7D}LJn1b}?T z6B|0Rt9}O+epgcj38avLD~v76YU0kEgVWp`{E z{^R}l`vDLDjS7F{dh@*s{p`U^ij|$H0g&f|gLl`AKlMgCBSL7eZf<~i)*Wpl_I8TD z$zz^5lli!i;Ww?LeKvsKlVt9uj0+jj`--h8*#~~0!|_GETrGX{@Ou1xnCa9#FRPAq z0k41a-2X3aahz0yzo99duHxb2pJ%D!w*^1|e7G}}%jMwsaq-*YfWv`m0r#lo({*Fx z?>N@F!9l&+)JZ|*kC(MMfB@P;9qPSlNzUxcht`sPF}F$qh|vIRSu`RBU33g8OO_SA zUdLauNHC<4z&nve0AjoFM)(ZG{xob{~KMkakKib6))3z>i$O5m`2D{rb&q zElPjm%&%VO=cql!`jqi=2y2mnylPWo^SRyA)gjj$(8(yQ;%u+Fs_y<^GkeEtr3;_o~_;4<({4HvMl@@>2H zk`vpFlrX?GG1Y7zImttMK)prQ^Cs-UR)WD*0`pfWZZ8wazA?}Xde)~`{AvdXfcp17 zaQn7<@00iq+ui}lO4n~DO#OBP5Uuz4IE~7j3*HX#B^uo@O5FZqJQ=&_{6;@?nr}Gj zSN@&A!#DuBosxtA(G0lyUuGM?;s5|~QYXJ10b*>62B(;0y9-x^2Z<2A7Vr_FRAulZ zLa#P|D4)V*&M|QVNG9Mar!C)}DI`^FwnhNLIhhA!*-M0aMCCOUCaG5#c;4RBQf)?jaXAhH{_!$I1#I{M1EZzqrcH3bu0oj86 z`*VG5ob+syiNN77UEo0fTm|&^ePDBt{lJ?%%(`|^G>et;_f$4WiUkn3;88{lm{#$z zJ=C-7Kr9eHIT-5$@#Eir3On`jY&(6iNU4bsvBOS^^RztFzniGI9PLafFbG_5E1-TN zMr>%k6Ndwb0sy7yT1po{I1<8-(P%vTQegEm$P1X-_oCf#*_X=HI`@UXx?%A6d3Gt9 z-51^mDpY&3)0eoA)|=)@fU!EnLRdpA>}_#BzCP@;#bSE^0OD`XCsV{Y#MyGkaXXaR z+TlcqH!1-@|DuaUc2t|NO-triBY{=paK{0{#I8170OAR2yd|G@nDr!g(+>s#P%OHc3+xfo|s z5`(fiAlzKU&e*yBkJ26nbd8AdiX3orwC27RXGq=kGN{ZL!yqpp)j7{2a#_V#?3qVg z-W6O*q{yLeUR!(TqV!-R8m|yt7a)Gj`_`L{0xJQayrgqhg0+-Bc8gpPsgRGW5P&|T zlIs+G0yu^`2GO~Hti^ec#>uT-GnEO{fEPS;bShaFnENHXU@!2qep#i0Y~W(j>NQ7f z4K#};F(p>WLe}gTgJUFJTgmDSdUP$B3YBFMho#ZY;04fJnyX>DhS$!phB0`tf->cL z&wj=mT8C=^3;IrW|Ny^-$>mBDGAF%+l){HETQ?aZ3HT-hVf(V2U882k?93V6tN;%sbZZYBOG z?RdFtZ6+va0Fz<%5K12KEF6=3tYwBqYG-5o_|S(yg~>r z4x#2>rW{d6O&5;49Qde`1cI9c{qb^~bRnYv204Ie=5n`F4>^XJoelt?47d&M7VhG# zJb_!fKGl_oSFc}`BAP+L3uZAH*f(sPoY9#378wXYi5BU7TFltcOrOW|C{6&_u-g+{ z@ZBAx@Bg^Ap`KE^Rcx`H00M^@)pJIG12XKN2mZ3{#9>eeqKI6P?w3re^Cz-I%UO#_ z$pD~rE=jYMEE~z*aC@7ztYZ>Cg8;2nz>y3v!B$M%_Vyc$ zBN>UDEj_y%1`tdwhtLHMcn~?i-r>={Q0c`cumC`xn9IlK%el2qu|Xf%qZoG{And5~ z6b|pK=lS0Gp6O+6YQ`6Un9G|tiJZ>U!(@NHA?M(xFP{-R)CcIx&{16?CQtiWMP$zb zAIYJ@q*nltAaDQ|iVi$al8y zfdDoGfZt9N$Yvc!jgbk_+{yqT8oAhPS-4h0Z0L=Fo^xfKqOe>T?f}TB?sG{mq^mCd z&J0jFgLUheVePE)OnG#z)kkd=vmuw#zywY#zkJ|#?RgDl44I?;pCKF4g=HxQ(pT46 z#~$iqR~a;6bSvA<3p&{dQWAyfg$_rGIB1Mh#w4pelv zvGTS*UB>_@`y%7#d{gVa4|;+DKtj@1LJGX0ltuA3KJhmsK?AtJ@yLXYZ&`aPR6#00 zpa#6)tFv}zwZPm@FW3tldS`}wC7T}YykdJn4Wj1C_m1c>Rf4>LClz|z#VhQ~059?G zxkLR6R}iAxd-eU{41P`2_-ycJ*R6WoR2fKfxhmnlmnkV_&9~DmC%5kBT}DIzIP{^nx6RbS4S}_5xqtX)o=hS1-IkFX)fj{pARus}q3g3FXjN_c+Bn z`4igOuC5ff)nP_0tdR?*}<-moXkXWwl-Uxm|VwqIGNKKg_<5Ywb?3{{r zO$l&96)j_hl0`X~YM0Uw3cVTqw@JepQLvc|b>f(p-l2^R{UGi`881c@zFC*(WB6v> z@y$GM?qpT|Ma45jxkk&bj)mRDkbYgy$ui3rj6nd%Be}JD6qAY00B#Z?cUazVTt3NH zHXs=hLPJ;thKTUoaJuCF3C2s_KNQ-# z(vOw{l&K9MHZMQp=rKS0=A9NF+TqI)38ieK3moLl593a^k%}?-831e_03cVpdbK_v zIoJRZzOHdE+}$ao(YOydp!IP-WmJxN{np0tE}75DwKUT@<~KRXP>wk6>5ZNB!)1aq ztpfmJlv;e$BkvFCZBJ(HgcG4qr~3$$zm9eYEIR;b9p|fIECki5EF)x48QE!C<~n7? zHDjDS6&srSKo+|i=U7=y2xw=0M$JVU>{#dFvLH3C&mf2;0ax-5kp|P}Kj3^Ij}oDZ834Z=u_bKeliu_m;MmZiiQ=RW>CzXoKa{?yX(*7T zFV2H<>0A0?3waZO-q-O0!L38-h{zoe#)qQF$yy?fTmdSZ4@Q(A04ih+cLBei-6Q*9 zi?=RW{Nh!4l*kqjVI~%SB4SW8X=q&`d4XO~is@}+037{t4_pDjuvmoW4OEI73!LnGV|(Uqy7 zDJOLUrs7ChEL_fO^u4xdU?O6WwebTAiP|Vj_j%YgVGQiPRG!s7?-_p*aAOP_^ zx`;v0D!O7wB1l(F2QqrB=flAD(3Q5&Z%&#KU(0Fm2(0oYc{}7u5tL z03iN!PDeM~OaGo)=J2xWo$hEITDwoz7P_!758ne=YO(0B{<0r>O)3!B3rrnbM#ht# zv3r34NmrT}F;Y6JUagcM*bRAu4KBy3Ayd}Kxbhd3!Qd)^A=}o=DE1c>K!D^EG_o{2 zF4LR|6V|E&a0l$TZFS^8r*E<6zP+K=OVITJMX>CjG{xBWirJ>X%1e9=fV%`g|EQ#G z4iE$adx3wJds~**wsKf(FQ`hDJ+>X$p`jdr0FXD`r0G=ERt{9o;^hj~>%v|xCAy}R z!;)BNa=_dn?TtsG_#bB!FMX zEbm5|RBxP2s%8x1%yeK%LlycJ|C}2>uii@ki3z;>AYD9bMzr#|<{OJ=$mF6QmjVFx z=sMA7ce?JAjMx}w74wnhv$yWZ63BRf7wiSrT)aH62S}h+b=_#@7IL(n9aF411_4mM z;7cC^7G;_u`(`u;0EoZ(JIW=#@yQH3FMt4wI7HW9)OjewN5v$5r++a$UzAZb#{1WL z$*mr}SmXtIK{s!WkfClW8Rq5%6uUfHcHRc$31+d(x#pdVQrTk^b;0cqT2Gko7j@tk zuLR7y>tDMp00H_CPS<{N`zG`Wb!)Nc&h=-q#$#cZ?seC?i6xBDhezAAGP!y4PhS8o&31!``r-3<$ zmui(d1%OQUzWlSLx9iAt0Yog1PE|=YShlVQF>EO14b~e=*Qwm}5s3RB^Y_M=U2=;) z=qGXk>;>VeiQMsZ#hXh9*7rdG^bP45eZi9(IycZ8fkl7xJkJoe0C5WHcs>#l0I0Qc znFMO5ZO5}#c1$q<&!%0Qivd9~=`%l5fEP_B+W>@m8@h@)IUCv<95GX+tE;bb_~*H; zR5%Qv3kBgF(pFRYWU*G%OsB%3>(n4Q7u2gD06wJKLg3M?Ug;tm1|^lERZuR{-$}p! z%~@S(+4ya0n`&3sNGXptBYdTwZD(Q)2;T)z_xo}>&?kJgA^bDpD88sEPI)l>8EBgFj9p5~A znKWvs^1CABp%80ot4Wo{^~P!V*w8(ftf#k>RcF+(BaOwt1k?}so!m1<1MqNMSm&D& z{!41%0eZzfz6QMDF`K^0WPw2t2VM{)&K zFKjd>KiuYshC73kt*W9zGFFe4>$iG2uOCGQ zr*MjbXinih{DQ@0>4}j*$WXNyh1*y7%|3ADn5B?rd*TI zI8-(`oKT8T6x?zwG0`(9Ufl;0Lur0LLl3=GRK}UEFW#Y3$><}9A9Wq54oiJ}DK@O*psaFxM%PLp z=B=goKYG{QS}Jn3z8q$CV*Q<3Y)=>Jya@zMP6-yAcGKnU&x3ol?0N|WaeNJU!7ut0 zmxF~qivn;lx^B@0uD9s|P}YMFUYGUPq8I1|l{h}#UyA@Wa5#{AMLxTgN*DWe69!hy zaU$k*va|{H+Swt~fO{Kds(S_fqe-P2Xku;trs6V1*y1tJ3+gsviak$85|Z2i zkiOWzR}))233y21z#M7~8K7M2=C2RsgsiNZOC}Ut0N7Ein>vB<^xmYfZevpVM|3oe z%`h&Ai`L5EE%N9=Cz9s3WuOQ>2=Gwj(!)h zH`NwZGx&`|5aR(g2NiOXK#>uYE>y`sKW4WrKL{BBG0JDz5Xr>B73R5~KkpB=23=C}+yL`p8BWMPIVhCo1L~^ohM)fHCXeo1(2c zh*x-7CYj9jq$>~@z)v$IiezBg5m{sg(VM|uAV7G!5I{J1P`Al5ndtN?fCK?>rG8fz zaHV}V8JgO+7y#lLjjAYOEMdKKWrLhDnATrW3jBk#0RRe$Ywxa5#+7(-?zwP2R$qg;zQ143K@d6^T(|j(oJ;mfEcY_OBmw=;fA{l!>SJS$=KC|MS?XU z?xtA3cb1BQ5`F*lCoJj^qEomq8}V~#$XS`Zt(Zd$IY*=X~EcrfKPo8y~uWFG@Dut9-IM%;& z#T|J=dyMnl&Kjb$P_{!`f5H+DA?_x?gX-heLOseaysm-Ms5we?Rm5HM=T(kF{~61C zIz1yX0e~nUIQhj3eIR*o?48prTLwx9L&)aLm&bKaWs}ZJ0 zDkw=2j_=$u=a1;mtk)iDRWiU!+~(mDnLiA1C#U7OsD6>$@`y#r>{NyzjxUWp%NQd^ zJDo!~g*87P;X|uPkaNCEWp@yoC=;wZ)~d#-$OAn#sduWB*|o$T(m~k334o$`68g5? zc%tqjEIguuKVey?#nNdSMG;O#_?D#^Z9;UY91(Insx<>=o$<%k8D)obRx0nb+WqHm zBF103q5NR_q>K?_3am%3MYQUNEh{`rj?4BW^tap@I5)SGoEYdet9P8dcWX_bhzk8C zs_~H)hitjw2epY1pT_CUs>;JM)-(O|bbdVL4*<&0HQxf7WVvF;6`4!)(aQ-A5FsXC zej&4L;%8}Ob);8i0mM2^GEzcsDwv@FfJ$E8rV5|MiIdA|z0O<`EK2LFG?{NABw|oEV$Fg4n*M%67k-yPaIwI@b_X$hdx2ii^g+#}1$C({ zK>*0K@#f}0Suuz*r^5~?V0eFF4 zkmoijop&V23s|>*k)5azk__+?$J`j`Uv`7oOXyc5!*e4XLY%L`0l0t;iAeJiAykUh zGH&@q!AZ*1H$BZReM%4W4A8`sLLB1WkB>_i(RmWYAWZzYM1Y?5l^*D5urvE(Id0&3;P_0)B}Jj`x&ql*CN&|FQ?sct=OM@ExkQ zPSOx3XbEdH7$Jv~dd8!WF!w1a28kk|%fMEHDIamoiD&e4f&J&TA+jpetFa*dzYcmv@SWWrvXR0H$q&=Ad z(9We~M}15@xZL~F=d>q-7=)RMUWs7BfRR_lAw2cTWnZ@+&IX=wBB@m+LdaW)@jFqTZA*k8p4BKa@@m$s zN~FaTZ~Lbg5Q8vlJdKC>fqXK zd|7L@RkDt_JKleqik1NY@o-XI#gRu<%f0@o?_U~&5Oc!n!CH;H*oI1F(mx-mA$UZp z3Nj@1qLmj2ZYcN|lzL%enWgm#uLOAk`9BSociV~ zl_hEbkXDwQ$)-9#^?p*B8T6+2J46gZRE8X@e)mGdp%Uex<00%BK(wfSG+u`i>W_tcrqJ z$L`rl4ylL%Al`QTNF^rzy71>xc0ERb_(!MCrLQrqs`ggtGeMcul2~UJ5aagD4)pnp z3mOu0CE<3}+2%>Y`1&IZ$WRBgDw zR(f*Rb-LWEP&c7G3ZM^?#n%A1BkM4D)3z{sZwv&1z+Pbc>324S1qSSW9En9TzlCm@S|;6E>z4r_#&n-s9~YXzwj3EO=m}jAsR3P$>Ef*CaEj^BIFHiMooBOT z;?fx}5ZDVWkZ8E|1+a zh1$J9&CP&TfBvyt`qHUWg1mroKO~cGt};m(W%i|yS9bP*ALe0b5;B@viPT|X=;Ec!tA$Ko5Aw`@*>V2?=6vDtWUlHh$0h? z`7Uwu(PyA>Z%1e&S!n79K*k3S4lsG_)qY=gvFxGu7Y0&n3~~}0F^*Zcvbfq7%a$Rd zRIv`Y{v;|FZetcLisYr6l?{Kl3r=XRfup&TM{@aAb=;+fG`|@%2pc+tD~|r5pPbC>i}`z35PUbBsgxn#!!Ehtohl z9nkxlICA3D!tl|_mGk@UVqgGiOBWK-hjg{03nC$Ap$+&3k3L^~?UT2r>WzuEMB)W| zfvH#SmBp0an8-|iEP(())UWCJBQX83-r>>{^#Y*;X)ZxA4EUnK4C#eBcQOFPWUNRg z9=PSc^gx|EK@7qYEha}Wq2GQLEc-WIAZ&I#vF}Wc-fB;+!rBYAtAcQy6WGNz&5A2r8@=X(%s#qA|NT8pin!T^^oKr>w_gn@9)mv?=a-X@8}U2n%O9W-MjI_G}*0!J7*%q<)G zl^jLA2>+302tM!x71p|vPw9R2&@M8TYk5HoG3q4^jby@r1+ssLXef;)UL^nkNniC{ z`_!_x+@Bj{f~3{P01%@n%f!*^X3CM&Vt^Qg!P`?sfbi#gIl^Wp{?*h5e6&{4q?fUG(y{%!ja_`U-c0y0@M{7H8}Udi);)<6 zi3iU7WaCk*^+ooPXsevZ!-_E#8OPlP!MD&uLcJyd@gQ9t*7t-xdsZKqeGXTVJ zJ0||9_&qa!hJpP@j|_R|e5?H&@^*i)!UTYj0pR|3&D1t=>xHh*bTKh!7F&NErb4A9HfA8UA@dl5dW<~<;IDZcUYs7tx z)+$q|o=|^+j~aH)*f0PS0=Sp$UdrzL&d?iDQ#xKklmmpqFCep-!3q-gT?)Xpt4wPzjM3X=_Xw9)j zX0%`YY&)q($h+B3p9<^50D-Ba4pe46sCsVnwXl6)ppXBhur{K|zr;!he!! zTP;ML+tFOj8;|o;ka>~Lo6!P;0KgQ+fb4fF$VIi|mGFNM=PB~s_M1~V$D1`4Hk-pl z3F5ntDcv}Y5~aqqKf{x6O75+jg77sxoR{u;JJGMt>&Jw?+_2SLmLod8p+~+ICSUzS zi!j9T)@y%h7Y$1%3{jV@V`Jb3|92s)JUFWh9f80a7-Y9vz0LR1igilo2D(AN{bqqCUQ8PUU8t#BWUQ!$I`2jXMc35!S6q1<{=uB|rY*vUK-eHy6T^&{>%fo4Njub;U1KZHy;5>%c6omfK8+<{# z9{5n)3|LofWHrBF;X;4bM2BNv*#>3R99I{~=x<+d2@wXU9ii#Q7DxJ(&Lsy0K9`Kh zfh%axA@=Y0`-(*7-Euwxr;D0aU!-yoI=$v(48@A*=*K{Gu+hC{DjCBX|DOe=WY(b7 z24YUeei<8Am3h`&yIT5S%FhB5Lo{%HIb(O&?#Cxp;yW+7-hIWtt3$#pKa#PJECB36 zU$pc-lwxq<#nY^}r1$?%iu6yGl7XW1} zVu;5;`qi!xmEJL0nybFl7eJm&+GLy&&Yhm@n<6s>%eILat^GE9i;^ENto%#&@{3sN z$SwgW@s65)bb)#c2oD`o(2 z*)~v}x60#CxiWY9z#xc)qj+5F&9}()!4fzNw*unjizlgiFG6+7^wUiZF)`OInypLX zL)`+zn;UMGBdZUdfOFGeI#56lz`Whz*pX9fe3PJXCNbinIk~k0mU)~^aI7?s#rP>7 z%hvQe)@bb=Jsat%O;Zu3pdTp%T}&NA-{4GN(K$JY8?Q>~ETT0%hsDOg4KDvpB{{3; zLNS9ud~ZS3Fo=q3#L}38rl@cv5O<}1gOANZ%)?_Pg7Ih>~OETF~jKS2T|tG1LB(_ zuZ8oS$p4ai1^%N2&LP=x0xh0qP$g%=tx&H)WkvtKKX{Yk?SmnFMdk z@wqHG=*3qcup78{{U4?eA#S;WZqU9@3(0k@<9Je3Dc<-U9i)3ZngjscHzi8uXGLV+ zGs@H?k5QMjniwyI<=Cf>Rdu?kuPX~Us9CH*&ANU@#EG%Zl&78;+CUnlGftRvs00`^ zlr(_d0ZbL4G+q!-PDJagCYBp5&Nu~P;070O&?N9UxxsGWqE4d%kCOztL6P5AGE3j= zdQ6y*Q3@icF;7)F5tTb>}sS<-ZCHYl#Ck3~yU(UTI0F_0iWkn)Y6 zi3>kZWKOEED-fr%h+!s7Twy^OlNj=X7+lwmO{}=$HJ5%5O31J4={dc5uqGtCiG2L^ zd?o9QFY0(@ol17g^C9jO=J{}Ztybnhp!pUS*K?7{Bk`#^MDl=JA(L{^DkPyTLUi{| z`XJZ8B`V3qxZVnBX>r93i8!kZt^v0~7SL81dSCd~r~WSM^AlkVZHj(ustG#HO&*lT zig?A7?TxH;DU>u26B^R>ytnyQR`bZ#F;}B`&(;!x(qGge*l!HYZSYNqfAq#140k zX^22fJh)S8GXfD~#T{Y{O*&u6j03kN(|_Q#i{Ui;er0Jx9WJ`KP<1e>eF-_ldd`?n zBQ}lLf-~eT8?#6e|CMT#X+#hK#2_rRIx@WHg@%DQMnKrcYQA639R8>0ODT?v)6O#o z11eic91)3lAq;sRy~?SEIoH#PfP?qeHka+- zJ*HzL>3=#yXhI^DAeq=kx|4W;76LJ6PRMF_NKS|rpL!3`dRv-;N>?0+s}%6yfN}Go zHUS1et%#~je6Bzd)4-rs5QFe$)-XkP>FHv z)fibB)@Hx}aL=7O+RwyEM;A41h8PC@fI*`NDMUMJ1^D@t>AOPr36axn5`qb-^3;^-!Z|B=0 zP3zG{nu-q9AO>OK{NGxHF`=DS^)ffcF(oFTfx})m>4&tK+={0Z_X^ z75i$A@uT0#BvQxw1KG4VcvpSPzEi3%Y4>L_4HEtx+llplEoVsCwK1M0cWoc6Ib(5h zV$?ikxwRU6A!XL?`hQ)wpL?J*q?qvE9BEr zQ+=DLvoWFJ?IXQmvXjLX`kuK!A1@A=Z9K@UIpPdZ$qGl*Ea)L5Wdvm>7lVf(v=H;4 z9rP?BoAT37OQh&D(IINSolq*RT%PL9PcUEu1Ym2MruMOdJ3sF=M-~JC;1-=*)O<#I zH7Za9T#~Vu^f>+T6TZxZ145_I=lS?TlW3pug0s&27{IAw*V=n*z|4+)P_l{TdJFx)^l=+V)y<+hjJF=(f07E(~vi*AL^}(``rw<@8 z@PB>yEbPCoa@Rz^*dT$(Ik0lZp!TIKokix{E?ueYl7X%|#l`?&dGlSIDRa)-4F^B<=^Gvsk z#>K{cD_hZ5#Q=cR?i2EFd}L6z_DiB61B}AxBj>EQ5aggoya2V^tv|50QdJpASM`~U;GV`8CrmF4 zfH--k#@O6{i?8zn{JXvR0^)7NeG>h||G-k2FEyXD{Hh#O>p-gofH-*l1t83;?Cv)v z87E1dPNNm>L)kHNluKZ@DfO*dW*>-7^}+q|7uiaYnPcQs@3g`oi1p(5LEG^f7My6N z@?`m{l}pszvv_(uT2SGfrYBoW7%2Da_#cC0hORHBgZ2&(_?!iLPrsvO`eOqhA9yFr zaXQYsfo?4>zg9S~$8Mw`!&<~~6c%s)kQU~=%UV27V|CxLMph^TL#Rc`HCyXAgLFa31 zr<%$`_2Yg~? zW32wS#2}w&RT^&nplfnv;wa(-wZdW!9beNHbMpQ z?h@=IOi9jv7pW7bn9vf%j4yNO>i4f!BLCue#Ry^^c&P^GDo2D!PB3_5%DTV$R2e>+*9d92OCm-uR9UUIB-MfIH?ybs^@|GcLy}DBXgUBoC_f31?BZy2dEM948!9u2rb)5~gpc%gHC>}3VqN%B!wDlnT|b z(mU8gvWOAN9zNe_9Cp;Q_OV33;iu6@dMmW7u{zD6A;HIt{mlQh$GYY^edGu`|FUmQy@-2p!72j_?a+Zr@pZW zQ3b;`AUfrFZ3ojq2(2U0d}ixo5^#C`ROlD^C&^{Mt`B}|asD{jUjOm|KLjpt!FX;` z4i8!XxK+hBIB8p@uJMI#dUrtvSRCPu$L8ph0-h)dRmt)oOWRB~p=a^}!Ezc4m^oKP`7oa< zU|1&qb>l9w5U35%4Fod@x-s{tnLuKsCCCjpQ2C_nhfZ!70AlqSL`$T4wPu)J$lPBO zp*PQZAJRPeXI_ASgOPNLDpqrA8X>kLw`D z01z)95FEk8^L8FE!#i^?LWCbuD;D=C24tB(L~6$24giRu87A(se3;1{1P~=X{lvFd z^3hKQqSFj~l{38zGy43#8>mHdKwBDqA=Ro=7720#X7uSORqONx;(<8HiGzL?>BYCH z&6$Wb)s51rx)y+b*yC_vZ8hm-4tD^+J!g(tHupIfH_O_Ao)95B2#fakMiJt=<>;S| zncF5r6Eq}P6XHN_^_TUO88oW@lbJ^%>$^ree@Ktqg~GWrUMuHsd047Y*W88@cXW0b z{Tyz!M1Qp}{T>s#-rOh#u>>WcztbNZF!oG+>BCwx3~&<%JW2#&H=!q_ptiA#WEEzGd)=?KL8+4oEiQTho`HXGdjQCYlag9Tn2!6T%B+qh;fDc=?kNz-RN)#;w|(5 zn1Y%ENG`sc{@h)9m!4fD2!O-Mr~C928xvY!zw4HN5HJA!Nk_(&iGJeWG4r!M?LJpi z)?W1HBm*f=QGkPMuZQz@lv@5)#0)R2E%XN;phFAQ_7?T?eUl}B7%#m{r$F2SNnLx#W|&-BW5 zeia0Pz;0mOGEYn^#k}YSxIQw>&~*U^Oh>ln2CR&DFDEF+ggBs2%+%j9 z(3sFIak`sk4{qSjUig;&&WV1CEtPC@O8)QznX~H<$@3w#q6jf}v_)_cE>HwO>u{9j+)sP7*nBf4IO&d%+`t_tH@+c(Q) z*#3`q>PA^+RIrX;=y(}wkvn>0e>qhy|2NNA@9g9T0)&?z7}TKA0@F9p7YPCYUteHA zs;+BH1H|Al0K}D(KMiN%j8BXs3))&i{J-i`Gg?-X{m|bO1ZZ@yRsen(jIb7zBY@$G>9{!NA|^Pt9ZiS(CC=fUxnxpf8hbF|WR7LuL>FIDEi> zd()c86M~K=0RS;xonYe2J>$p>*BPhrL<|iAfG-U&AY=MGa!c9a4giP?pPyxq)4=)>i;77T(We}>>d(DBs5D`Ab#|tyO{z$H7 z^~GTTavd1I1B85;OT1}1UzEW`=b91(fGi%nD$TmU!~hWEf+FUAz0Yz}5j^4(f}JtJ zjwO#tqR>uqZR3my0N{?zX(smg4jUmpe}a}W(F0KA%tPvyNo<~;ZoWhYdcA)O`2hlP z`K={Oa|^FxPRT&8lOYgKBynIJ$C|2h+m_Nz;mL!FOMt z3v7@8K(vIH`q@FgPr8IswNBigM4}ZU;@R{71d;fICfl~BlEqdhZWp7)9Bb?o`dwxn z#KG>omQVV$|>W3F7CL20O9&`Zf(K5 z>T(v;r(ggoPW@x`qi;(_&s3B1xiZNlz_Dxq!2Mk0xCkb$_IFWfM!Jdu?jUUZ>DOw0 zoqYGluz;V(@}3e7vfX(4)lQ~IBGNEGYsT^UUFD1ue!3O_;>p3fBAu0f2MARZ-d=xI zW}8g6bm}NU0ALDaz-M^}$(4r&OraKP(1VNk0H8n77sd`&8y0nDG?#X!-IxJxV%Ki8 zUWkGigyq)^@`Ec}*R!ceEeB1t2$P-v$M<-K{_5ZE$2HB0Csf#(2sz&38+{x$(`R#i zjtpEujOL*QCiL942Cn&t+R?zks3Ws~Ry!3fZgn#w2e^V5TyeJ|6MDV|1UF1Zl}@=+ zx+TsD$k-XrzU`>8s&&_L=0C48oS%$3%cDKFj_4`J>)y%v;*v zmva(4h*dbV%tE=U*U`y)g|ai9>_6;!c?sL85`b%yf1<;AnW&(~{ovMK9Ly<`*b?gF zJ+XnswwOJI?rJ+h=68BOHV^}M%e^;kH^Vk8zzuYRR_0G_hHg04>|oumJ(0=%vtIm< zJDKNLgxI>To3)}ENRMNI<6MgnBd!t-@@dbu1_&=(ru`<~0Ds#ld59yO-U{>u$$7*P zA@EvmXAHWJOr%5z556U*NPSpjz9qumu1kE&ze%Y$hyU@dIT66|QL{lT;tkHC)r#7; zQa+t%d{si{01QY#pwdrf*taGBqX5rX)id424!njA>b(Im#`fipys{wq!U zK(GC>=BfP`AS8ImJ<$rnNysmgl>ZLdRaH(q+7|$jr57AiVsnmvevK4Mt8#&*N}Ole za}XbihzadpvWXe@A$Kc!q$+9X?T!7jn@-6DRcnU?ii$iM>0vpL349yd58Zy!rvjPZ|p~|7F!%?6eI2y(H~9dQEZMGy20@w zO_|VuKVqk^-T1=l1E`*z0uX*@am2AODv_u6 zcD;0D9{Ym`F%Mb=24LHbr+d`y*%8ugoavnj-Mi*P|E*=WP`UQ^vU00)$+u+jTvMeB zr~Rm@B1h|1*SN7yTjDyJDsf{AizEGV$i^3@I2h&fR#G>ocj3sLww?_?{B!on#XHB@TRimalP}pJ=npUiI9>C%p<+iWh~G zUbuYB6W1XEzXFb3aDD~c6HcJ}q}lZmTJt?HM-zR2e>$M0VA*?}&0T%J-x#KrMxM+FVsxVa@bK5A-}Q*n*%Rw%VR&idOUK&%BnSW; zvt~d{QR6irJpnTS#JgDkl+3o z?7XuJQ(m+3s`9dIEz_7KB*J)rU?xF9J2OaYw8p@y%d86@9p2&4sMzllSxTaSW8%1R zB4*FRn=S7{0=@>5kO=v7Ae#TM@?>SYDQB0FX_cPZK@6_QW0)|Yfh{9K)Cg+POqh($ zw*mz2bRJ%DuivtpJfW#8*AnCg^f>TdMgzS{V}P4@h(C^3b`XOQ`3sBTksan6L;eXu z9KEC09n?hNS=oc&|56bh5r3AHTVI#I+!7^t;WYo@R>jrecs`I0EBs$2t;C@{WhB^&{f_x%QA96Af3n1woT7ciy1sGLz<9)fMh1~>gX8!$OMUbaW;GvqGy=jD zmU$l7(%paJGBTu?&~o2wGgChhuCSVhP2hofdO`#USK5R@(W?e$ibBxwEXSa#RYbU& z9{iqw9&o)dXpZXC;J*vYaHdto05|c>${Wmy7GkU+&LBj!6;D8U(ezp(jO`ti;~y_E zSF-@5B9*;V&bzKE0{w}X-ZIPn)3?MFK7uX zuGaM69pwV_lUqAHbe3vu=3Z%DiVq@S2=Wg0aR)X}=u0UWnaL3gerWqqPx`A%c zo^OnI$o0e^K>(nT$$hIcIEASkXp#XSE?;d`1QXwH?s}UJ#6Jf+pTr{DiqfCNqO*l% zjV(3pS&gj_(lTX9|M)tybe+jvodZ{#E94~*`DuN#7 zBR*)j=@$8~oBbazd!4J$}3vU8vJ|xMfE2TJ> zYh0Bb*ORdXp%waL%Re{fz08~(`Oyl9HlMtWy*aLxeT2epE*h-~D+qtn}U65n_K?%bOyzbCWf$1^H-? zzIW)(oP=@-r@4X{TtAFoz{iB1`3kz;Mi1`v!~4p7#0t8`NdmZDnzU=pYBMZSg3t>6 zu>rU1-;r~GmYo40e*1JzICC%adX^alFn56%gpDq(jsPJp^qElQwO4iPf;Az|iB=k; zr_N?Q_nM&s95YzceBr_4!b^NGH}))at`$!TO-|@<+h#=I!~wFUBK_im0GMZSYGS=5 z3jH;@a{Rwl06iGDlgt@)Dz(8P#Gwn6Y@uV%R|+BXMvE{q!_WT6!TnWU;5jk{!pzn( zC+ff;f2Ks(+=~hITyP4)O%}(0a}JF-lw++T3|N!dOoT|W-4%V<1=lft%U(og`?_=d z*5HR_K2i&Cyi?%$LYoQ))WTA7z62x|xK8Pzzuyu+*;Q#gdUD!o$qhn0P?^V;(ZK~D zYL58eQNdb%rCZOQ3Mf4UEBwUD(0di2Gf3kHuuu~SP1s$LN*O`Gf!y3wbQP+sFkk@{oLFFt%k3KtAlzdqMIvJAO*QVYyA zR`Z11xk>KV^b^F$o%kgz&&%#0ctQrXi4x(*w7-P|(T<%sKG>tX@l9v#g8+iTcWYMo zR?LZ`G*f87Xmgf@+z<0wa$n2tZ<%xq#X4-=mXmpi4&LvG81jSbtTWy0jhH7dKb6Ef zsRc0-#EPVJ0H6_G)MXA|EbUrb9s@v(i%&s}lLT!`d}(s0fb@U9RKIAp`sO(+a7Rn- z8~Is8zKy?k$@XSgL&v9*A#I_bAijU7r+NthB0e0^#uO21-4(0}Lz0$?7}R@(iUgju zC%6_N6JBgN2eh=}W^3g|oBU(toT#+~V!q28F2{FyU+P-fB!&pPEfH|XnT}fTLp<{$ zR$GBi1i{djlYFch4)`JSS4oxX1NE^n&|oK`6@5|7EE9qt5ZK*n-=&|)a)f@t)eUsF zHto+YGH1~{Y!U>3Jcsn)=q#B+=_=*{Ym!K}JI2?rM^NCZAO`X&c^rq9j`XqH#-T&i zsCUXx!kcx1I7N1?-pB+AZQ@b&mdNFT&f-7}S?^WusR$8+W+wj3^ks;!Czy%}v>UE9 zF);et;xWpWW*_@ehD6O3#2`cx$%LL11YBLGu%h^2Rn)J>El!#%pTJ5`vAbUr2Dlso zT=P;GL`1e^jav9U_PXAOJpFx=IbFh(K@7q>XIJ_)VNB@F>zT}45L|zysSZCujFZ{C z49nIuo*V?dvic-gZ|3pD0FVk)){RX#zVj!5% zMcwv$c}4tvq?&ac0&zQ1xJ|DoL(1e~T#+_hB;;@_Ksg;tuMKCCoGpE991z z>2L=C+_&E>YZ1Q>*>&`LGtjc!JW1oyHU84$)nUz~gXqc*Q^okcOYh?PK zSuhBr*(ipP5dCrAv;K{{PE(!{6Z-s{6*7o9g9-qM!z;y$1Tl7m;wRi<4k{}mJq5D6 zlnk1iJx<#5L+4Dg0_P}V7F6yGY*dB6JE-*M?Xxc4Bo_Su0IkN1>gi|V@7mpvVMqrI z5Fe&^REi#G3?Q6Z_^@|k)xwP*7MdMr^JfqM2eORvGoV;&SACl#QC0u|h_9cI9|2ijxJMW8B8CdMnC?uG*lwbEB}nYPAd0(_+XzT)^C!6cst28 zhX810F8%b=&nKcn#8y46>)ns9XB$XS9cfs3Ii4Tl#vrbJrzW}@WoI2iyC<=&Gg zk(xLr^v0$2GTJz%bBjc&K%L2F%O4cYCp{P3HV&le#2#v85L$sq40xI$qd9{SbEPE! zEbZ9DWzXI=JIut%b7^AK2b=W1p|sOset2Nw!4%9{@6kQ#D=& zFr*tE&g`2vjtRVo=3S5_4`KtXXDV8%>zXUriVExbb|5@$gGFItC z9{s3JevMfRis(y^GbK2a(5&U9Wb6&e32^`(ND+QXN;l96+BLTHmWjN6Wd^`P)Z7Ld zA2`-hYn%`q$|hZ<6q4mo4|z`A(V_%u)jJ?x)f=Yjd2kt|0YP>vA1`htmEt%R03fcM zE8Gu}5RXs1bA3RGhD9l%7!4{SBs7!`gOlx5d1^T-@zwg>>g9WS>ral2K0&6vf+dFdAr=S{XZBKh7CigWq?#-;yGwiHTZ zfmGyo>XTy$&VYXLpsQSD=|fo<&~fyjuD+ihw1z;zZ)G2Tv{BB)PQV5zm>zBk=`QDG zPvg9kop`h28muxvu5NijPt zs~|-5+gIPHbSvwS^fE5%A{<%*0Ne-GJrXviz+zQ>jy3ALJ`)(lg^7))vIh>a0Dyb4 zt-tv-aZG5H&Bmui9Bcl_vVe%G=ObDae5f4Ele)9Htg$+ItK8^_1W$HHq9E5``zSNH zX02SOU*3=y5Cv%ne?vB1lG-vq)<>zKm0t*OjWh!v;ZcYFdDI)Ua@{7&EdjVUShoZ- z$&^Ze6(Qr4vZl{-KLCJOxOra_$AmUtWZ0AwHA|DZb3Y&s_hV$smS#WL=K;Vy0;nwY zq9$L`|7c6UqeU>_d&l?X+bfft(42%*h6n~&ut5>Uas*aJ(D<6NETylRRklT7wA8wK zqVQRl9|xYF?AL?TOti8h9zfiPSzU005rD-lzz2E{HpdCGt^>CplSv|5wgJ7Z(0pGB|5p=O(M)^wUDZR65kGA zMdd^55-bcHZUF%I`SnJJGx7EoQD&0OvEdqZdN&c{RRHv59k~K)5V2wRjBnK>+~~{C z)rP#4^l8T;QmW(QV~&D9>Hs|1a<`0082s zQ>(+7_@~pC<_$jVU?C4m9j+uRBihh>&RwI=)9x31FMul01Q1i-j^fduxe#~p`z0E zbb%bB4uBlEJeAYf1K0k^1i9RI297~!<@U9#K0Rua5FaX;#s6cM z)=H$J36n@-XB>8u2Bb)P3x(SE+xNH|CPB_P>T&%{Y$nwUi?3R%jxk6WT->e?dW!GpTW zX}<4wU5>6Zr}zlPeoS~foX(sa;GPe)ql7PLk~hW&Cwy2LQy6 zpLF#zvBzmhWF`9ni#v<7U|~+%LccxSU#`a-bMO%uEwq`N&);j8?(ntL3ry{B{KaQ5 zAJS8o9y+oZbex7=E)vcx&a5<+tJl|ZJ*K~g1O)_QfYuQ~7`!!esF|CwZI!h=5P%ss z@2V(>!e{xzb4-_Izz8C=l_3^DC-Uu-{d0W0J+YSMVwgPV&#w!;l&v^Rt&OCKO@<{n zN%!6cSwG*DK=rzx~pgTJWh z?@;r5rHEa@C#BywVd`M8CPs+`3P3$D)>&&5^)`gYq=?mV)Y7tU>Y=8(CcWaA;&5zR zLKP518twz;NA}Ey^(IK4aXS8^H9icIUp<|=GmAMt@}TCT^?wc$uQP!eh_T_;%HP^2 z>u1i`w52GCu?e&K1rQfMu1!iVEx{47JhcSNK4lpxl#%qKcghOJ41Q*UI1B@XmKM+$ zak#<}ayBCtwb3-=yM|5}4#dC>9y7_fyV+StFu1o>C?P@Yorh&{jPY~g0)tqi7oOcw zaX6+tuV;cEg9#86B$!0K^c7iDRvTPbLTCfS>qj8hf!<@bf9sc%6U` z0Lp$ar;#+^+_>Wu|1@(cRg9xEO?Y2duXBnO(I4D{60T9aK(^kH#_BBn9ZcrZ zzi}VgQfiFfnni3kIhGQLfg61AZ5ea6=TMFC#(kbJ`DZKpeIJth{U#Zyoa{FfSu?oT zOBx#S=G}3ne*bT|q;=@G63{n%hVd00vE5I<*P-HYKKjX`aeXx7U!Te%k+T!#2D^d( z#i=2e(T>APpa;~tf-L4cpdqAk8NEnSJDxNi*3~TGvi1OC?a|u_w#7`UvQj3Cj*sDX zS^(HmaMvOa@a>((U5k#7%_2~8+8I7YKna#2?x>YU)_fiF!i5pPl6jRNYQ)ThE<5Gc z6MZsPUTy1?qQC%J^i^6Cez$8P74|&40j!YhM9B(SwxffskdDENO>^Q&0|2&qv@$-! z3478gezR&|wKE8S9G^|{9ZM6YCcoCL8U}9VE>X(VRF0Lue;#u_6iWw?3okwHxExmVnBDW5V+>-40xl5bm2}Eb_u^NFn7BnYyqE&pp zN4s-O=uZRd%2eBla}o#;PBby-Ud)le30GF49PSETQp{g|T_mmBDTIGdAeu0Ojs-jE z!61r2XjwA2@p7shU}tg*#J~-%QZ%33wsLj~YEjSxF*cjS^DbAz@oAx~rXjN<`mJMk zqv(^>4Ub+{#1|9h3p{pZiR(pr`jM%?S^|yT4@-^LN}cTN3>mB}hLIxdNg(ufTNzxO z1=#1-AmgC_$TpQ#{yt^?JacD?{R%}_tmBbaV3VddMJ3E0thrL5HB|^0-S>{nDIC8# z9&CoOefMrEh16NuPeoXxMnvPO3>w^PrA%3R@Y2_zcn37#0n1@z{;aLzZ8O=nSE+q# zb6mi+qqPmPW6oyZ4?S}znFAgy-b@|7Zg()q{xs(9(TBV-t`40=O==Ni#mR3;XAOQS z&0nAK1Ti|+;BNj1CiHv^9wxAbMA%N9>tb=ny6=}=XHQ7~&PvL4VNid=|lK z&0gr=-g8+_^LkAvf$Sfs#j}50O&m||ZJEhB-Xd8f;fa8P6N;fnWc1ZkWYp)Ee=3;Ela>w zcH@>=)Kt>spQUE_MMwiN(zDt0@F4P?trs>=m7Uc&5CcGr@_hL&-IV-A>gf+tSks2{ zsx$yxT`QlluAi%GqkgCoSR7QPP7;bcJO1)6H8E{^6)FS0jw81_rA&^-&WB1%E@5e{NB>JBl0YYRL<>rArzgvNy_d{f?BdhJzri_5&u1Pmh>e3 zJ{*Wq=>jocJYeD^s}{&1*CK!zgz=|+><1xAdL?R4^~(BduqK>S=$xPZ~qj!fia+ZE-&Oy;!0;xE`byfzV+$Z9`^pmZP-qW+^p}d>YN$xt11Hi<14T%?s z^{ZW$I@g9@k46ZYCIcEYU21J{$Ar#(-B{X(e#;C1$UUccmGCtGJn}(>r~b(jrTm11D6kV`_}CT6yuY1{ zsM@eV3wa$xjGHgKy@Y?PfToXk`q zbpAO3XpL=8;kPDciQp-`Z;@#-=IN?A10d2}T9nGZ$Z2ruQRC|ty6z#tBdK2iL&fs` zud4gs%fgSYyt;t^EeO74`#^z&Y2|F8lLrX`U{&Hm3V@YunP9^uHK2)0d-;8TC<6pw zRSVahiOAF$u%CWUm&Yk2th0=g{@I>E_I*)Fo)pvtlGqqPTnTQVd-&2Is0oJd0|D+ybf9UZ^&Sm}V}ih+b(3 za_{CH6b1y1ppw?6vX+u9jjKNC!!w*XLlQ#{Ney`<@B;}tY6o_$kN$|Qx zD%m())b+t-hyY>`*6+L9*XPnON(<;TR(s=hNIgF^C+Ze-*b>Bughx|VR5`>a+l*uB z+Jr$2!eP&E_&^9-4|v;N;$Ur&AjWzs*~dSsgd?i_IvM6QR}g~`7wKxkSY82sMPVM( z6Nr&$VDvEC3~o4D&cB)~h;{SFEW!Zy6hKv{tmfZG_Ko=3-%9D!bKNZr|1EJ`Mo(-3 z_qz;LrHkq1bqi{uB|QMOveX9y`e4p4s--xkTgbwzo4BnQriXt+{A6K z50(1X#3*OI&8xKotNZNGGNs0BbxKRe)$eqGIFzCijQ=;%6i*m(*4**pvRvuw3BwJ9 zXc9E0$b0EII!s8A8;~LWK-m}lUMc|Y(p)QY66~B>%CJjxjb3J#_q*#Y*4P-h!P7o! zA?tgNa@?)Ef!mkWkZ;54u;Omj4eBtXldS7$tB@c!Aj@9kDi>#fOnF(&15f`vSvq9=ahVxwaZtbRON0;!fM45O z_Me+SM7hGLMgJ*VGbTSoY=9V$qVi-lFC+I38#vu;ffS^O!8z%lZ^Dj-9#tpAJvR`c zqhAuWj4Jt-R93PhxSjbUgB&dFC-F#(FA2z^K=)<;*82-THyfr@DGEgnNVbAq8XmBD z)uLnw)h>)yXlhXRyS29F2(#bm8MufO|D{f!T~^tHEZHi zR9o-mRHhJCzncs@+Ot5+x~G?-lp2wpTn~9HS0}pe0Ak1-eg9B+kLS3`D8NhvO?06o zj=7d;G|?KIn9#?Wu9}$%j4OeqiCfhs_}i!M9r!ak;My#$^HLq8;6o$PsY{tI2d*H7 ztaKxo|ErH1D|LBH7F;uupqc0aapuh_{ofs&s&&N3jG}* z`eP?`@fIEl+y}G*5CG>QliRD;m>=VsbFyp&M*+&v9yLI+ww!+OBROk2nnEi8X|bGK z^J&OjvlZ4903cqn#%y7?*T)Vc)#G-GR|{nu(VPQNKCf>8?}J92O$!6 zfx3NiM;YMqqt#?k(*DW-5O+FQH-d@(xpP9U_w^X8r^ty-4KAuv=!oJK`GM8OU1d5> z0x*Co8?o)1ogY3^s#PB=X-l2{l3HOck(t|C3c3+rnz`;Y0BflO3_wI-9U^7{jvLzJL_FjQzTW;XI2@g?v*qVP2zkR_58tv(gQY@H)B5fketM-PV#^& zJPjL5i1!iOJILCEHi^^0R3o=yC`PzP13*KtCDq)9MsT2_GK*z*GX%%K%Lr6vf09a{MN92feNYF+z^T*(UyY(sVgPI>fA{ zDqnZ;gEO+KlGEeLAm$Kr9i3Df!D5VGn9Jl$5-6D=Lf5jh6xWaccwag?m+K4SC?s_v zYE&~|(go;&>@e*JdRRN`K!f9tlY^%VNwF~iSgw15X4jP=Qx}pL4C1!ID}7yi=nGb! z-W@9gfi7Z#xH+X`&=~u-w5{3e>q&FhMNEKh*r&V(M&(JnP^CAm?}o@0bjAW=h?2PP zGCxFFbM0#B#do%u>IK1Za(pbcpt)dr0*SMGM}290y7C0zQ{oT^@bk4o-jEN#j#yfV zA7Z>vsG}bM%stVV)pn-7Vuf*av+i(btHZU|9P!WiX0duT%d?9D(?~-R16`;Kz z`=)LYvZFf8FaX3+eaG7gcavEkn>ihfunUQCihiPnGr{_V%~|@1mffw*s9smDW_4{i zHU@6+su5S@NmX4&3y_Uu8b4Y0*FV@>7hc_;P$1Afdd{)sQ%VVO0-5%>E*EwJ=+EXvxp1~ znOaEBwz|sT23l&4V$g|006|;9%14K6Yt15L^~Qp z0^z#D!+m=)FY;m0XM9a2lvA^kXR{W5k&vk2FZ`CSjI|>d{cDPV zX^a67W5F)HPmlTh(Wi;!WTQI=;{8Mj;sOhI`FZh_`sa$$Lbd8LQE-rnZ~B=BYzxit zp|P6P7TVL29o*Z8x3h_p{FPFgvlgY7AilqUx+2CT*>H3m8JM-6K@6^~<_`0HTP1$% z_20~v%pk^wT(Yx6)S_=!=EJgsdQlDHmqeJ49sppvQ!lnqgVU$xf8OZF0L}fFpNW@b zh$FdcnL!M~6T^S;K@68b{SH5V{UaC!}n;?d)3Fa5|fe>|ePxT(M@^#9%vX!q>_I&FKoL11waXgDi z6P5E<_trC|DEeOD^VCT&z_kbnqR6K`w||3kACjjp{cKAQ03e>dO5Z*9yjKRZSSJBI zFu#A7(B5oru;d@_C~^znzF_m>aOPgT&00yUeK9|cqD+u}X`9LBo~g=2xu(&Z&3!GM z7e1fazh{3H6^;X5#r=W^;Q)V83I^G)Q8EgVq$;;nt19ET&eGjL4dPkveaQLS3*^45 z&e8!oLbJsPtAc=5w#S>R#^J@sN#wk$t&#yO5)-G||Er9J+R#7@!uQ3aB0z|6+_1+$ zb6tbMD(G@K`X{?w^1+PtUUe3-yr}1*7QU2c)2W!^$*8FHpbNoTggh&n`!g1Zuk!vW zD-)X{fG{(;JYyZk_c>t*i&Lh zzEJzE*RZ}OS*lVi43NX#alufjV{KRfK<Jq5Q~+LqN21ITPksZ^P#sCoGdlgK4W90;sJBzZJS^zPoXePcrA-6OhZI<8+!exVw z`$72gy&Pdf_SG`abAW4qBIJR{z4bTS!wa^_FGbK3D2T5U2%PafX+B9*sX`TV2?T9? zL&R(8Cv&G??JC8(C+TGZsfQT=a6Xy6dU*ReBUEtre8CAaU!_c+x&Bruy*+a+N^sUY z>4P|oK;VqB3~yHVSuxaWnlU5-IA03Z0Q%LIIa>=?T^6D+0NioF28NH6BID!7UQs|C zNR+xKrv?^fPhP!(0eAWn9e496Wqn2R9rb3B;0}PBctrcR((-g-JCKO6?8N&fSg32z z!03a6%c;%w?5AeSO;w#WNRS(Fx@i`f32Xai0EpNBG||W0T{lzcMLCE=h!D2JquVm& zIy>-8UTLi4b#Rv;v~sk{dLK?xsxu^0j0=CY2{Qo1m%lrvh;cS1_ry=67dga5oXII_ z%&-H>Dw~!|ZK@Qe0M0CTSZaOh=I470N-sYATxLEFXFkx3i=+5J^T`e$nPNa2;2cap znY%nl``M_W5}+4)0Mw&lC;-rl1Genc8{4BgU7RkR!~yIk5O>xorM?dt;vXjCi~}enT9Aj~ z@7$!189pyk27ROVp7jzRB7r+fF0g%+!nidl-pFew%sLY~{v|zd9KL@C0KR{x%*}+- zE%nkKfb*mQfN4foYDQ*vE?Xg$A)R?MSAulzB|(rKr(GFP?95)T@i73z$uBJMGjWGc zs!NS&=LhjHQUWS-EE2NQaR;g@k=||VB7NBri9u+k!51|n7*J~XG-*@X#JLp^)3*R^ z;+Gv;n$Zr<1L97kA`oM8>+_qwC9^NJgn;R~hon_*)Rt*E& z-&f*p(KGmeu9XXqE=-}2wMCWv>15lyTV(K?dY1q$a=tiz&|bydXqF;yN7>jO=1QTs zcfa#-Sjq3td7}iha-AM@bZCi+_F>#XcY>r@JNgc@i0M`mKTmYqRt=M0rdNvK46b2m zPKBMU+d3R8MbDRFp}ykuA5MUH6F_Dlcg+c%P&b?3mjwl#_*l`Y1i-$%)Hkt0SlP5bB|?1N>l^yQy&1a+na z&LFJ2__Pm%m<&8e)yY|c{s`8DXX||wQEew~-iQhHoN|Iq6wIR+*ClKd4T}DC+*Y-b zvL#m~Qv_&&0hYWGOq{Z4uneeLUJ!$DXrYBZ5JKK+P47zM(S(;RdEfVFo-Q-sVA!=20;KAtqWFkchH6SvX7sAh+|vvmUaO%bfXN z$RXBo8~_~SW$)-wrJ?;T?qpT(djbFJL%MGlmheU-20(sH zul-?Ayu7)2AV|&-I^es3XpR2Zpn|W5%Yd&tFF^p%i84FzO#Zfv^me`C0)RDzJBV4N ze}*KJrl4bY60%=dCIiY>D{2F}7S1k5S#t+~s{d-FvH8refTgQ(UYf7N{TQ)#4gw5} z`np3wl_|x){FBs>c4lw~Kx@V!F8SSMlRK<)v?V);VM9BzS5wv*l4rly=s*m)xuY^u z+FpN;x#nQ*JOw5!R>sfVrz{DUYSbnT?i;CQG0)NreJm@I0dJ1pkfW*t5d$DQCRipe zxZ;AGsEXwz(^nn6Kq2D``W+d@ZhHFCgPhpXR5UYK@vl$5?piD-SwpN0+~98Gv&hm) zv78`)sP5L?z^QL<$uo62ZFd9Rpnj8HOABx`$*s8oy&D(zhIDQP#7OX15&4IGCnq-@ z`9KW9x|Nfw0Zs5|MA*c|HN2k@twDrstzCEku)@D|@r|CJa3wK(|v-_;yP)I9L6$VpkL(vbszG4yOC@L2kZR_IT3^D;G+$!AX8 zRq9`Rp9Hx9rOPjnVrlPV0En?Q!QB7e+)et2&J#ck!t5)*_o1`c{q=m&ifDqa1ZzUX zRfI@XIX%aopp_WXx11MbJpKGdLm2>cXdFlEixQB1ntruo>9FwH-gyB4Bo+*Knxd;6 zOHWTVzW1t+z>X&X8<^Ysv`Posp7&p)ALPEDJ^~vX12=ee%HHz*3B5TL2o;DW-XyPDS5jWCYma2D%S?%{m&9f(&3oqNt zaOx0WrXUQ?I0ATW!B%DFi4zW#^PQHvK1FG11vhHy{TtZXUrAi|AS1FrqmWpLeu6t* zuHbuH-)GGzW3Luv5?R1V0;o=2oA1keW3h76sEUiFLF(`VVi2yql0O23dv0wDJJq77 zIU5m8(A8i~h-C-9`4!M7KzPj}gfGPEJm^$Y(gIIcIPSDBNj{~ra#=@v!yt$uXX&7R zeh{KG?KyIT=9^iB7w)Bw7*x7*1PDFbMreLAQS-qOOs#*%TdX=&J?Kw4VmelW7<)_* z0da!H4YuBE4NJTAZqFLW>rFH2XjR8tM!z6sq=ZUk9;gykv(yVFEMkr-#pUfoI@gJf0s1Gwe>bb? z&2<8S-N3hpOUSua=Q?hn80 z5{Lm>m*9W9Y%>p2fFKaq4II0ul{sf&qH_b?paw0onDZ7pAd3nB;uZI8TZ_rk0recf zt$?`Rg|$8=o)@u8x`;!JGe(O^?E9BGOWcXV{+FJDDGZm#czZn#6I07j%?RmyTQN>VKQv9wv_ zeBne%0MNpwL}P7d`nF*;N$kX6)Sj zfo6_qhe7H^)qaf z`7FyMGs$A&8^KyMywFhTs(y#)c#0z`%`_~S0n;q*_{72L>5bKn{o`ScO_Sls_ZtyI zYn&L!{q@c9Uq~O;|kY&kaPmyQt{h$DYLei=Z8vuv^`B#%TpV437x=*auq%qbgYkGcYgHI@p94a_&kH$fU3UUa{cUR3jh$~vlFbXTB$z|tlB%4{CFvYiGR3x&{Qo( z7#&CX9KVA*Qdcga=g2r+hEKgHVgQ>4G}Q5Ht=?y+SF08b^|AqSksf#9Xh2M8%b<0! z4rTXu)*H!d&bcT{;ZSQCHH_O#8pRj6_2szaRG z;*3o}R%OGL8BA4jG(`2bI04er&s)@r)Dq7bJ9g)m3u}Fr9BKs^eYn>Bku`?wWiY#06>h7+i^cuuU%tuXLS~^i1U?pbpLEfrNG4e z%FXfB@zgz5*vUOyzJM88Snfr{8Kp*uLbhY8bXezHrb<~906>gF8OvQ_fpKS|#i{e~-^*BQw)7jbJE|G7tXHf&u!>4pnbHNYCXG=$Ma%=#=Jz1{!5lmb> zu5pctLtKXlLHu*I`Tj5KWLKHkq_47>w$G+K+#;qQ5kHSztJb_g*NoZo@i>3Gz{GwlpOYzC+L6XZnoiwmAhlnJ9?YDveG8(-j-Ik; zrN8I`3mr(01Vd8@2=;d&uIW!f;@@dS;s86*NxdcXj}<96vrouK(xBORS+FW)FJ;aW zD{%YahhqNWVHs3Vn3-&qRIw96FIvPzZ;y1m%gF+3twMUuxzW95_TYv6Yg}RIEHBRy zOKhCVn}*N|`*fYjBV=-}Uvh)SQqmM~o_?YaSo^S{|i-1ts_6Dd&penyS~?lPMh^0b_(A$A@BFn0s+J>4zHEo=(ct9bmoT7yae zkM5U6eRi~%5ig|~l)1B9j&EJ!zVbFWf9VyGlGw?}zyT zSzs^-09@<91D3J)SgBGIP>QO$07whX5uRD*8zz8XGt0VuMns9f^x>~t%gU$#Ooy?| zl{yWunqVMWC2EPMvM6ihRjb`5sMO-(l3Z$rHG&&NgKfDPXpzY%EpX9G%~jTBfH9zM zFo3ESWdUPuwN`yKfIP_DDnK~d$E`IB8luc7RuEqlqYkf}%cA<%?8}61kdu0#rMfA! zg6zIoSFnCrXjSY34iEsaavtz(5rQsc$N;FLoP)ss1Or9U*;2+ymSGu>}`eZFi zuolxvtGbTsDd!n|g3%3h_w8-*FJm_~v6lb?FxE_MN;k zr#B56AOP~kd2h866PmBi95d`ni{NSedd{J~PD9G8!7Z{^FXBBOAb|_4X)*8Slvccm z39T@$j?7(5(K3^P*?qALw(ObKYH$tPla{`Wn&e|F(1h(VB`KR%?}- zzH%F_DdIo^03;9aeA#2Q8E|+@1NPT~QePUPAS4tG>4*VWIHV1p%$z!-IHzVBu$zIc zAj@5TIha7s=%xWnup4-~+(ubqFinerZqT4Rmt`5$R1QD@NaxHEZd{ma0{BC_73(^0 zC@iSe+_XhfoE_G{J?FZ0Dl+w7`lD}A@C>!XYFGyY_#At(^S%B09D7XYjiwV;l7SK2TJVbin`5%IZuFPYRw{%FH7lg_gq`M8D*Fcz za@$^xV(g{ors_kaZ#mwKzA+HYr23!Enq?ZPTSQu*Da-ig>tTM~x0uks^Tkz3NvsM% zYiQ|8)}rc!I}TtR=swMyyxF=T9*7@)H$`dh{DYL?^*@bJ$+6J_1EQ?XPw!pWe`i&Y znu9B@TM&5KNl%<-(cC+mo?-MmX2*8)up-jVx~LeeKk`ThmQr?D3&g+;Zh!r6dHJEU z9(04SySeO#(cGR`^N0RZ>8{pZ+4 ziKe4^1rAv&Nfr>pQ+dU9;rbb=8Ap`LLvqZ6O@Dm~;JWl+Zx5&07{sbhmuij-9FD3P z1i-x~UG4RHuS&5L>Hq*S4&O2N4>IjFwa4N1ZZOpsEHfdDUH-^6{Gcq+IyMCWxJ%;R zN2bU{l_NV|$3sgD$bEOOdXFal>i{naK|=tzi921HCI{0g+k8T-L406KcmIr4E!0VY zj%}MMVk6K||I~~I;-i<#DKn{>v$el?(PG}?(Q#>nU>5g+Srq3gy+Z@*dJ|Lzd}&QS zGC>_wYoj^&z-k!)aoUI9vySNoxHAo^>qNGKpX_bYN=s+WEPYw8fag+g7gFYjPqpww z3K!+iwH!*DLr!Ztcu5e%l7I!##^q|-rvboc&OnTXd7;Ev)B*C>IdhxKWpo(C{G~j| zzqVdeWd?H(CkRZ;Q5yGEPxWn56AGQ^l%3UP0M7UAfeMQLDAjJo`PZwH%%q0JU^U*E z+fIe^u2=pl{dMH;vU22b<{Tel@VlysU#Byz5rYFUuG7!-^gts?o~5&16ORe~ufESa zPcs0-c(qEOw}}bemnxpgo#hU*I71Z9Y&;vl|C9;(hL)5ek3g{cM}3!Y4oBlhILfLn=3Yzqo+@*f*6G79u4z@5Yy%Q zI1QzKb#?T2(i;Y28hJd_Ry&>Df*nYARi7_sbDe>?ftFY{DEv(oIUDL_f&{q%*Y~IJ z+6n^{@w2J6kJfCwL2AemsV#Xw`hoZk5O!`#op_?Gv16lDW)y(Upalj2fH7deyL&Iq zK42UepydyWV&Z?(t`00e+YB-hwwVEUT6zs^9*r)$99CTHat}W0DyM(#7$9aZ!iJbG zl*NR`ZC%aO3_AH0Jw51QfQ*g5cDpU*)`18BN^xue{c4YFqhTYZCpiFc|I0Ew)W5lQ zH-ANEQ;jSV06$t&O=N}=Rv+Gnj8A%BiljRXkyw6AHQSD5rRbI{+Bf_mfN8#OE5_^y+@T&^_HpYU}>}l!RX0yXyusYDd_W^)@TU%g~`! z3BWqi3U`(yvUOkNMJiMGkQaafG(SBgv7lN8%2B>wbc&oZbw2G=wdnvHJnB$rp{}u>@@5Ka%JdP-<}DhjGM=I#H@vAcG{qnco&==Xm|RAD$EB0d{@n<3 zJZuMRb#%Urn9hhxlRr8m!jAq^7mP72nEMiLX^THWE){V4N7p$h1aS0)LFfw(AhE`3 zCT(w;3AciZRz9mGx4*AHaZ0M$F?oP6E~n@Kj~moANp%_h9dlt20CcOO5)BoT+vP6? zR>1#b>^;D%Dz^9G(0lI?Ae7KMBqTW@0RgF^QUydrK$-%A^penf@4YF#qclP3(gZ{h zP>_yv5EKx(@U3@duRUw_Ir)8mp6A?i%w6xyn$@T5*^>!@Z2-0aX=C+nXOg|>Q_v8= zC2HMaDJFZX32IuoxbbN@4xKVUj2RZUUhOu&eeF%y7oS=0rPGrp2B7sS&-X+w{3ofp zcPLFUpL8hGdOOiNuAX9D?0PiEHh0!VG-)wRfaHL8t+O7wFm|<)#=&EdTTgor#P)QNxsZ|^+?4kv!sS~ z*$r`KrDnl<4*Et9lK&KsK9S|0u_Fcnptho&t(cmRN7!OzmiXFUw4V3hca%w_D85A! z8*;4&%HqmzE3>w8Oelx7Xd={ z8>z)G`pl!>03c=6NOeF-W^wM4mIzVnh`R03?%={sRGRG<~qfgsRkOz%40u; z^W-?St$Bf7Q2V8uWEj#eEI|Os3%_#bD=*6>?OY51anbho2LLdgsy9UUH&iQeb$vgS zb!B4MxxziVCtY|Jr^;T&nRMC85BSY7^@+ zKGUDvaJwl!gRHjo%P+wyZf*UCx|TJV1iq8?js)syE`VRtfY2+e0!O_#jYmw(C?%`6 z{sG!efCnT=jI|eiexWh2V1k~uQ2D3hj3M%9hTdfWI5iO$CD1DRtwHgzm$rSY;zrgi z$z{1~ic`71QDS@6 z!0yB#j73g{;)->#t12it8Od&o|iTlKjUw2VP+BzbP84{{aTQL8!n zalJeZdMg8@NuhnV5}Nil;052WHdCzv`GKK83HAb;FVpXN_5*^DfggGdQ`%V3xh3TK zlRo9lKs1si(@S5fhf}JYy4oxv>%;vjAy_+LumS*hbqi+Cr-` zceEURdbw&j#kF%0F>Tt(WjuZ0cN0;=zB18>p%;Kkw#ewaF|xIan&T?emvx-ps+1rA z>RxW@0OG>ar219LUh~fY5Kny>usyzqLHgo8c0m z>oo>|rRb`KeN242fhL~S*QDk~EA6{{R{kX4gS&vd0V!m}Aw}SDl^C?=U@%Lk} zAtw1(ZwTS{4YxjEn?TY^t?KaD* zNUyN~6iSpJekXf{D#vU5tfG3(|GL`Bq6ULN{0)6}(r;dnokI_W=$=gBmbc1!Stjbz zA`sXMoHnSsRGyBl06q-Wy+Fis%jk zE|q({N(h$PZRn%;KQnNLtZoed0D%9U9a=@Z#2KwqPC9ac|JOuZkEpr01W-{tgB6qEDu6 zadKfnFLz^166gh`da_K4xnc;>D?xy;*wKCw<41OgKw9^EWjY8ShiW!*51SlS>XY+I zacllQV&{K^ssAfZFZpr4%mjM=sQeNYoh;WgbW{a#Tl$=%9GTFw zkuNrd*nWbR0W3^*6HaV>OcQ>d5WtFgyF34~5P9c~5j%jB35Z6*=z}QB)`13ikzmD} zLNZ8(hsd6%Py;0i7^vsg8E(r}J?+})?HI-Bt^{09-)IcIHOtdcDY@MyYc)?BuLOAk znToHr^#uX|+R*0{`oI?7qYndF(J6B^_IGbD&k6)za`?)y>xaRY4qOyfc8xyr7H?&teNoewVi zb6>llMY0C5d-ys^1b~vZq=3L^@CnNem4S2z`Q$Ll-TEA*FQ14!#=Us<733!2C zP>&HOWT9n1{(fdM;fI~VrGQMN0*J+5Ic;?}Y`1@PM#d7OuM|RGr9;j-fVlAZ3D<1^ z>IRHu8+~Mz2{U5%kIMRyv3SFIh4Xw=@CJ^3Y-5Me;d~0ncXGl?f&yXt^f^20Y<7f&L>Qk4@YC zq0Aooi7bGd(x)?hAhoR2qAZ4`(KcR@$1c^7D9tJ7rF)zSf73 za}p3Q*aq9&fb8*A*vEEqK(s}VPaVBs7j0Ky^u|c9IP9c8x6F4SK3>h1FDIEVTQ`F(M51MOO@(=-wvy&$G_e8rIO<5v>`HU81H>aeuS2br#tOyG+rOl zd8^Q?z)JmxT5g?(#}O1uj|!@+_hnP-gq3L>0JM$-#>9imH?!yHY%=NTM}LwW09XOw z7nRLTem!tp`+z8$(+2?P<-&xvik(A)N=lD3CX?IIL9Vhzqk~@OQj)3je!M+c_Qq$S zTJuk6l@F$~g}~4a_r@0ex=kjzi=_8+Kp3b2FZi7nVbYcLd^Ql+3rz8_sT`w;Iy*&} zlBbm(e2`AMwcdk7PwmOX-=-gYY6)cxLbJEWljZWrnSdE*pa#6)_|6pqkJAhG0vD95 zB@0GVN&840bI9az+uyImE>v`%ROM};NAVEJw(+q*4S2!FpMPO{ICZLw;CZNtCuDkV z;x3W(n4G8?)9dX>H1+zSk*6n=Q_*UE=c7_3#%(&04T6BSh32;@x{I338l2456-F6UIH6a{Dv zIi)k`Dx5u*J^Vx3nlT@~H8W4%L(w3{?OehAOUhc$5Z5GYK+8BiRR8IDWti#jZVjA9 z|E0mUaxw-YZu;yK)qqc4I3y>^Mrq5a_0Oq!EGjwt$Bv8|uRwpLx6ZYjQh-4kK)1a) zfbiwJZKZK3J%E1T1bsG=l+#Ph(3SsH#sg_7%f*8bq0-O#w$5V`t-BQ8Mf5PM7*e=%YW?dADb&F1;-}0 z2Mrd$&dX5!oe;3;#7feA^|CyG{}B+4;6bRnRiCL+CVL9&noVOK{}F#6Mltc>pZOK> z)!xNz^X8O^g1kKG0?~vI!?QENT-cdHCk>N2F{>L~(YGf>@&dG+v82hH$d(>kfCPfw zU#m=TUAO+;nNml_&KLwh`?&V*TcdiG`%C(Y@pS+|ysJt32)2Njp{-?LFc$Dj0n6-T z8qv!XVUVZ){!7}I5j6nJI}=|{5**kQtCOh&5^aJB=zeb9I<^}+UTm-SCNh51#a1M` zhlzYfg)5YZ>USLd5r2mQpB4X8SwQC+8Dy+70ZsxnD98oHXIv)rV2X1F0f6l+?&bJQ z&rMNe6)t-q#?#GAJmg?aIjb^aeHF_52gQ_odP(u0@y?{c120akUO*(FZzEo_UJyC0 zy7WflREr1zmOfpzJ92B$b?P0-?|g8@W{G|MFhz6x1^_Qg7+K|kI$Koad{$dRY~BFi zW*SkK#qbTkt3PaK`-JR;ud_k!W5C54!(`qt=8ay!QbBqJGPC42qhgl&&53_u+j?jG04Lyxnyx4Wq8qKdtwoLvjMua$y0s#GsEwyWzii|6tT$f5T<9O(d z1J%&j&H7a%HOu}g-PD-JPs9>hE}V9M^u2qH$uH<7(SN*_EgRy(&g2JH`pM!hij9##KYi zCzR%8s^OeaiVMGMzbV@gwwqIgeaCL-#g@?x4>eHEe|t!# zz{CScb5I_%TRpg>YB~At1%ZhNJH*Eq_w;?+Adzah+tbv6iIY<1K+7B3cl3R9B3$Kx zm{Zn+9cF+dh!DgnhsF4|tZc4Y{xDmRvPg={=GYYvl9x?z={zr+RQPh3Eo;uvS*eLo zYNZI-3=XMbZ;iL2q1hn?d}`n?>+H7AqVN)4pa#IM1UH(~NG5o*Qk!xFIB_`G$HX%-ys&MI+1W^Y zQCHp8%?l_(4}?hRm@wJQDdgWg&L8!pV1zPCzgZ^R*gi57@SXAAdf(Y@-PKd+)qFQ? zR+yL{_MqWL^TQtbs_APb(1==NWxjXOUpQJ!%znbRa=-TJ^!dxl;AQ*+0JM^8`y`im zZU4G5G#V3lL4@cD0K8h34-%YwX+5%MS_c5cd#gF&hR4Hi1hd!o_3@0N@eP zueJUO3I~P(#s|{`ZlKi1rR9NdGxtuY0ST_Sq^n%=FmrD& z*xT#$6|Lly!A#>M&T87Ost+-?gN_QYZqx4Y#m-$FluCraVmZt{_(i2Gd9jkL*6Eh1^{5- zp(ztbffx@;Y)oan72P;lG=)tbI4R6sf@%_Ey=TRk#(s(>43LkHRcLIz-olv1uOulB z7z~7Igl=h}vsFyI9YQHKs~|0b7!QGB7&K|p(7=jh5CAxM&VY26mIe-Z0D$=U`P9)& zyyM#vwgG|wc>}AJ-W!ea$_}0#r`=Fd=0IcSpF6$K$%*I|na-+Yv%A6Zz${^d3_W6r z>9dX974h}u?QLQf=>n>lUpW9=dUT}5*J>eX;={c%jv4a+0Ijzf{YMlNXS|ca&Z?{f z1UdX>#ns4R?p@fID@L+pES5p&rT6pCB6+^uv&2R@M>6wm0Jw+w1M;{v?c3vbOFfuS z3IHt_2W=%|tV)t#FzkwT@#E?^8FI|(F@v%Ej9KynT7?Cx0AH>8Kn02=v)`5bkj9$5 zUa0KA8V0jVoRN`2YA#884dSjdd2Z<_ha z(cZ7~qcl!^3XFR}599lfaMniR!fUN4D^s}96-0fXJ^=XACvsO_`YmWEt-;id0F)p- z$%)I^l!KgOnQy|r+fYIJznMz`SkTeUXYEe9fQHjO7qhS{D1dW3w$R$vF5vhlQvwGI z0Ma@&fHa+lMgK||@D`06gKyEZg1av~=GkJY4-;O|!^A8`7i^sW%TiCeLV0zj5xM{% zX$D%fnzphlp8I!G#Tgx-E925 z^kQ3@00AIh7*>63tSual?HF4!`VW3t6$!-M44W6*&0gu0DgX$*;J6YSbgDnBhofw^ z_?f3e!6jWK|2+AQ9WSKLu#pKii_`yPqpq>nPOH-S5)Kal0e~l*8E|BqXX!$Ue+Fd*FIy`%WsyPDBYvm& zm|ZiA8x!BjYQ5Rc9> z&V;1}5PFegY5rbW+mvX$uJ?ktX+M1mY~S@dk%KdCv>)Dwogr}INap`S>Es9HDu56l z_)uuY{y}nQ(}=9})`R^q=#O8!mj5k$xX z{$_Ov_ins{&l=lK#32U&cGJ#j!qpYbnB~UpkFf{M5&{71tl0CuBF5?cQ}4EvtJ9|5 zxk7|j>C=w1jGddpB(4#{11B7+rzcD0OUi{2v+sx-ZiW+}B!P{YnA#v^*HY3L%`qMH z_7M#dAdV{Z)15!OipVP?y_v;JAjT5O{+Zc1iRan4WW_e2 zG>ie)`7NDqPm53$ARd0V#OeUfD^M2T1#d>m*_An74G``>SVBGVE;{0I=GZW$n}Z8y%6M!h zO8|0DWhY*Dlj)9b*3+5n{#JI6y*Tz^P0hqlDb9%9!kIIUo7{wA$EHnaU4`Xv7Ar?UU0jqJLT~_eZOoV zuooCVs*@~%^%LY?pdaYMZD|cgk~~%bP%`q^KAUyi&TnyKUaAL_Ya`n#kelcdD0@;P2$AT0iHgO5)|%_lLfY+Fwf_R_d4b8=2WO&mcw` z#KRqE1=?r8nA_I%|E6`$n|QEN6UT)==zCQLKts%j>#6Z7qxPm%hB#|Yapm`9a`s*z z*nx?F6&&YcRuWzA=x^pAW?z@p_W7PuB`f7aVBsJ}tJ(K&^r6)?mpeqPD}UP-9|&6) z)P%T=e_5xwD(m(vH&3>x2X~yPxqEZDW?cA&>YgWH(JEhYci`Gjk#8ihurSb#+rnDDo zpk^=73))-cf<3oI29+Q$pv~H^rJLzI#{dw+zL}-l>#QuQXU_Sku!T6=5cP5TmdkZA zA7q`;Q?88aOHA?DLq`%Fdcw(`>UXCosSUX~!>&Rxco5@x|AiC^p3xt8EO^!&h2^JN zqvYVVwk605=-KHv8Lf470{}nDkGHflOOIRcvttYb5{S8I!EQ4Xr_K46Z644Ah-(rG z(gG_us?C7*VcP?@4giQ{>v^UOv8BVU7a~IZ2B5>XOi|qWm5l$BOF24ZgB<`+Ifn{y zGU!%lCI65uK`c%NG%Pk=7FpWq835v6?w(OB;U4IFi-${3GsIJ!?e(c0GPve2Fs!M~ zKg+%(WlFS+nw8nuldZii9VR|Zgdj%fW8#7xyV@;-06b?WIU*^@c^=G}fuo*1lLeI# zsRW`i398lTwKO=LQDkobAPaIYIm_m>3lJU)dI2%+p=aW|Zr| zff{6HWH+XUNG0nTKZ8JwhqPIWJ->bwSc>}`ks~59aa7OJHZjpC^Lb8j>Z0Si^e5MB znzk4s>hskmA*O_UoX)uW`}8guC95aWp72iFp*da2y@xsrcf$w0HI z9Adl%h$XXfko5?*uF63CJ|z@rHk<~+B|iP9>%SXDB$k`QChSWf#vwufq>8Yeo~6Vf z07lKt;`;LCb;VA8E4H3;c^}fx z+6^(SCn2fqaGV9!`O}d!ivRw%%gAJ*mxrNctjQp+iK&*W;nmGv238h>z?LlCX0M73 zY|;RLxWmo6&KTmt|MOYz<1w1`IlDQyM~KCFcgeWGE%Pi2r2?na)@e$}xtU%m#bB|} z$q{-r{kM#CkQO(PxX^i7?}dl3YoY;+Bc|^}cN||0J!Wf~iIbXI!_ATlGDHM6=R1ys z(iW>cw0X(w2*=Knj9Nw<0xL2G4Q!-u7{uS*IXwmr0RAXLqMt~K1C_@>xb^5z zWtlgMd=vFU-X2n%dP$+U69Q8ocssgz*HzJfUTIyq?Czy@sSio~OwFEl1_uX8Q{=VU zPieApvA?~8nCApVzsaG9F`sEz_cOa?NCL#T{Tb02Jku#67m#<{On*5u0K`R?ABh4h zm`vx%lU?R1JwOnHaDAJRs?{Oak3}S_SVS%wYm>!b6#(E5_qXeQ=z#--Di{&afK2orl6k+(b^4Ct zG-Nt(H1FGKkPft-OatvErI+hX&a>VLG~fkSD0oUL+1V@$0QLgcZXYElg3jGV4iMu^ z?&cFCptC<^lAfz|#$#pSV6%yR>s*{w8|s?;4E4fQGj$aE;k&Dp&Mx%nD=k6?Mi7Jd z{=*abn6Rm@v78#{z?g#g<(+h7Dc*KZIc9(~8@z5=q2AZRyS82-qYP~ z6()1ukw_T*ZbTmzWBW$=RHbug`$oB4rA-FcMb0DQqV!>@fF+j7rOsQV7`4eT2+xW1 zrdW-at>F~Sgbb!vzI$@e^T9bpT+sUu2{phhGq`4-WpZOym*9cG8W=ZB% zX=KTV6v!6PYl8IxAZ<3=2vCwfFqu?NPx4&Yq2nQP3Z%VHf-na9=N?Kbx$y^CX&3-{ zNbU4MKV8FYm28rXWjfKK2ex9Ydhrc3H?7-c=TvdVrCX zY_6eu`e<#MsL{IhG3gjud}&CF|2f1kuu0F_sfw=1KI{B|<~gmS@}kS@_?D;oT@m{2 zr-0`XqEu>e=Ob5xAB;`p&+`=;ptSSo>E~R)jJ->x==4Mo7v%P#PhaY(qdU-`*tzSE ztE1eha-{ILa|wcE@XQAT_Sae@%~neW02X7f9Q5>(^VXccJacl5*PO(L;R$!N$n61p3w_$!UGiOX5fwm=E%vQjtpKP8k6B<^$E|( zs^mm))e$k$7VC!}a-%=FPM@K9CRzOJ5+V>-8>9hto7qz8Nk2PLg)A6(&moS9o!?s} z_YsZONK4Sk9mF6^p1z(Bgz)29T{cPm=y1M;#sWQoxKin-QQv$pR-LZsRr5Rl3LC`h z$%4Nl1ons^YCa>a*)mQQcDZ0qkx6y&l~4m-@aHRv*p(Xy0)f52Z1W;ygov#-JZYB5u97mcXdAj+OKBMV)l7T->1UycSN z{dM6mrIY*L*HOD7&N5R4n#|}W`qWe*vsF)edeednhDI6UT+u|I&J$sbT3Z zP1O4mF%MX-8s+Nbd6^3MMi05jWOWNNgkN4^t_;-rU>5^|lV2_WRu)*s0Ixgtgku_Ko?KU^QS}|V0Qza^s$h@8im|6M^an^Mio}Zl z6VLy15J(xmN}9Ma4+a5nZhbyCm-`mpkiFOdo($rdN1hC>&loKI!sx(zN9LHCN8Mgd zXKiGg2%C8(S~_M;6K8I9?>lD|jQS}!h;D~CmO2gscrV~}33 z7x-m?i!x^E%E8+!Kv*YXkvEwZBt@>5Z2;O}o4q@>R;OnLwy&Q^DrkLjnVr5fOLHmv znl;rrYhbM47MTpB$kJ2KqB{jziD@fj4>}`(C4kUF?g#ISfu4dNzn?Rdl)Su(gWr9BSDnx5|C-(?5~EZhWPgBc+Fr zAN$sJ+^r(}(8-sieVJhW0i}XKtR%Z(y_Cb4{cvhs0Nl{it;$X*C1dvKDPiKUg#nrJ zuFMZHvZ~gr6wt$iJhVcQMVEPdX{$>rQcA4x+KciTt?&>Kq5&*_9&!XhKVuuFovhMy z!Q&^Th>g?$fD%(BP87|=JCfJ5!x6VWhAJNReQX!8@8{0kSDup5Pl$pYoMf*`XiNYO zIz3?={6fgqnPsp#)&lS(F|X7opFrm*?Tvzh%H%#!9}!ce1vx)%^v9h6O_ zyJ{;vuK?wU(vo;uP2%MqPGTVl8L<;$SVT@MjaR@i!>vtC1MQp(~a)84y3a4 zBePYCf>$dl&|vnE7%Z3X7rflDrZjic3xm9XC0WKwN!fr1YMTLEql_OEXODx~nnXVk ze-T;%!sGFLn|;pqKT7{F>5V}wF)Er}0fff>CoR|{Q@ljDJ@o)kNeURuB3tqN3;U$| zn%*SP3(7vewcQ)12!KHR>CU`9o;56Ka?EyNj$c&>#bb#dozfl4k>tf>z%yn)l3GUV zIO0BeYC4s9@AfV$HE%*`W^x1&V{?>4&$R_Lq&`d%#oI2{(x*U(2BC8JcKjKYwWhTW z@ZJeT6@ZSqb`=!6y6X+)iN~hZ4QwW(34|E~*usVn&q>yf%qAsd!VdtD&z@fA$qjfB@Z)v$v#j9Ut?v%D< z%mc5A0deZSZ@F)?KKNE!*|H%X4^^%c7Cq#>7w(rOgKPem(#B3tS)jd;B z6=+){4#_7t^maLV3)BF5m*7@O>c}TJOhWa7y}%ls{*zI~)WZ_!1syN*Q2LE24;kbI z)E;9!oo4g}fR}i9sUp%a%~x-cODGLuj_fnpc zHFL0p8o<~XoPKdBxtVQBMK9Rf>(M67q=HTKkw7nK=24-6Qu zkVNXpL7zbG{4~)5xsk1R0RY6qjS#ae-(|vm`$;Dmo=hC*MmyQOE(`##3kNT$Vp}h> zh$H`8jq?RbGU5y$8YTV2)MOHf#^~(_ZfZ~3VXRz0GetIp@QIVaDS46k7}KEQ(xHIFd`DUAL5GzZ_1C*+@xRNL$F9$q6>@PAe$0|-=1QBTNKM9#AOPa-O$%tskd!$a z$W>1xQU+oiSfAiZyxzlZwtw?D0042NCU2{<{ry{&BaZztTvp*G7@#uBEOyE0KV6@w zx%E)skOL4aj()n)^hlejhD~lTqVB2C40JQ$)y6d5>!P0U~DVV89P|&|be27dSJ$+ya zy0`dPUUvBL`5HM>?T9i~tzq1^m71Z&^MW0RRAEiYn2}(y-g}ZSj(Msj+}C zN3LROd35ciUXcZ6RFQ70OW0RL4O3wcOw;p$n*zQL_kuj3R0K)mbP+(;fv*p$?PrNlvP zbNz)rCeAs?+Aq;7P-yuqwTf&6i$xDu+&i8*Ld`o$tT`bEt&L5B0DyZkpyQb{(igO` zF#yD+_ZRbl7$*hK&r2b7p-)hO7=-WN9;-Bb>T0uy3=Q(j=&c{3ZsKN5r2wF^al~op|O8CFXuJ-;qIDn>z!*4$3{tdQ-`AQ(@z1aHnG7|)}>;qQ>n+{N=1@8d7rR-37$0X-eU z372xE^?{qNSu`Mjmjb>X$?E#B8L__eS2jxs0QX6p@x&WP4!LYK`{*QTQ(ByF9OBmm z221j!OP?bt?TQ%$41j;5M>Z2!FMHqlq-$(*hfR5bXslO`3=SwRylj)Rl0EGs5(L2E zsGIky> z4?yYU;sv4s`WMTfjh`=(JL6_7+?yBh>8HK?lZ)&HQy*?U{_09uR%m|*FH}w)i|FpJKFZ=7P^hr- ztRlm=*ezo8sG#Io4SCU4fnW1Te)Ur`qv<#p28P>TCgeG+Y{TyqEeIBnv%`==sR#7L zu1G)KYVusC{c?RkJ2`-8;C{wizW$%xs{*s#|FgAvtOuFJ8D!m5d!vSAo2e#9ix#|P zM+1nBU)YK*R(@ft-@DFHKV+pASs5hlD(SjzQ8V*AXAat;L#rSLpHJ5B@_`V(*fw;W z9rn;F>NR|Wc<{-@J}y)*tO~G758_u2F^(1O>oA#$ySVVWU$s!BWGedq++9(~6@a|N z4?FFvB(Hr9uB}rl-}=vCr9lhCECB?T9^99P~03!6VDwLM(2=qRQC~a;H zM(C!)SxQQozsf6559ko#1)?ztx{`W@T<_B%LV~=2LC076hX@9M7*!Ut)b+t?X~L#; z)Xzs80Z>ed&eJ=UlGu$3GbBKlWoR9M;UOkuKsPb_zg3{^f6bMFNM{rY0$X^dngLro z7EHL8szRBKeo5uir@7+7V=DHNi9wgh+zUYHrToZ2?(wg+PsYo{pleeGlnf3ET1>ML z51xstt zR}jjc(EtNKd(%+mH9V4^`{(ba3iOLGy}*M6?&PqKA;Av$tlY~|ljZJ%en2Oo1~fRx z1sBhsLmtSsB@KarZS)QxUTMX>mJCfQXJ5J!_4fKDfn)@Q>2ZlsWb#ZY@$e9o7~TfZ z>pS&^xbL4%d+CK;A95Ulk%L_TS|`rs0*<7!_6v08;$A@fe%KgAjOTFPTQl4amfSj4 ziupxg5ItT5hKDd>K1gbN0|UYcz{M6mC65n;jCM7q-wk-UXC|_B#@qxDV=bO)68bz%USOwLMVT6=~Mr&dAA% zoe?0q&Jm)C;S20cm4;g9{Y-$YN&uEl+Y23(rjf0Gt2NNpG^fU{&aPIw;`MzSo*q?| zMUNWRi9Ex~bSnM9H&~gnu$9UPgOX&E+BK;#l3JGgGB|O-hL`_YcNwqs`6UcCjJA%@ z1O0PD&Z03JWxzAaN=La{Mho2c#1fiu&w5*?kr0E>3y!!kAbZOImrj5s06>fvV>5By ze)FU1Su$9{XZz{atCs{AR|EjO<3oWrI_2%}Ro%WK{Ef6B z6X~)i*D3l0k#kRo*xb|TN!A7V`g|oc99~f8xssnyx!(;ev>JwV%a{+g+dfi=xD zQsy-yUIqbx1rr9`%a>1vcoY2qz>CG%Jdj9OS}Ec>OP%PO6Cf>sw$i7U6A-pg9l761`M%o5^#r4N==whfZU0RV`TUx{<39C6{xs_&7+ruFO;4SQuVt+zPS zL3!e`Z2hF-jP;^oM(giSKNrPs$V@ZE3eLt5aZG}3YEkG-*O|6$_($r%%;xwlSSo(qn%exDhk#dqO)p?i<3Z|3> z00YK6k%@;~jFlCE$*7}<5E9}+f1awE`^ewacV|l-=o7TCAqL@u_6#SC!p}F%Y^iiH zvUN6D${Ak(5Ug#;yVK2mty|xay_j+2cFY1TpBVpd4R@e@qY~Cq}xG%NL88pAhqbBY(!%v zTC6p{6<=7Eb;eqMpr+9}veMv0RaAEU{N1vWf0JbT5TQd{CELHbRRH*77tUKv9CRwvBb8D7Mq+Uw2&r?U4?y8D4mS2#+GpRmMj>XwR_hU>Di~& z_Lk8BHU}!XshI9T+tyPJ`das_c6ecycsF5Y@3rm%#fR;VNQIeb0qtU&7g8!(`GD)s z<(qrnP0Mx!03OdO?yz*cOg9(wsA)!94;U=`fkEg6k7BYN{V}DNj2ilSFa{)}9@z6f zAs~LE0lBw#x>s3yBbLf3w?}USUT~4^`Vn9JU7Z5Lk3hZS?{ePyxXv;udXsgPuQ+T2 zB)2FAMK70DVQh{;0N~}%ESwQ}e~>O<1I`I2V?dJ;SrhJ|AxQ>3z$+Qx>#;;e7F+zy z2(Xz>ad;mgKm%-p#nY~qyK`nK2V?R!z`Zm0dERw$5z{Q?c)?!ar7=n65o6;+0&OwqcPElqYvrC<`ssIbk-Ro=P&PUO?BlkD?I zOpKHPR&v(K>`OJej*33bf?Fy}2pF=kT+qn@MgKO>eT~bs>?v(_*nNPD`MsH)G`mKAa;JX{rqLhVg8j*wB$$TzGV-b)kjcwL?tEL<)kKG5vs0 zw7Hm7g5(!+$@0n=r389GpTD(4j>p&-g8+~VFAHwvl;SqE001B!Q!lwYt?k>(n&23g zB8V`QK73CLaw!*~jT5z(nc74h2BDXve?4~3jQv%8pB<*yk^um5wQ=(larZwSRqnaE zf}BE`$Vn4ZkGU8He%W-3?7^4|K+t##vgXxdn}p+Ap$R3VPE1iMfnZVESlZC!(l|}2 z!XN<7`}hTawC8#Mm>iSc3*32Gel{0#^VaCr!=&czUN{CcNwd{`Iy*Wnjm+StAOc%p zsbjZNZUr*&Wl~uy8_k0dRvhMlaQJ~ADH_^hskANQCjjA-y2ZPZ$J)$S)knysfEH>~sB+WTnnvp-Nh&~C0tOW~~ z$_wc9!4)Z4^p>LgBc*WMh0^-NLsEApE`UW4|2*=wBE}YP+@&1SpG?&Gf~0nXf*Szz z&rS2SNBttRg4sI(pfOQmfgcNNMd<@6>IRGl5BcS#9FM-m72`nzAWnK=tZTeo7Fze> z=^bbggD}y1byZQj@A{F*>lwe3j;9NV97Xg(6nrS57vQCxw@aQ2(jMyt@)-EZ+6zMx z$(<+du@dA3Ea`4tf2Tcm7pa|3Kg+wHH=P+L%|(}DAjX16c50dv@oxH!!<@ReAa`r$ zUK`JrFqJex2{qsa&n^9{+>+B-FA&%ZZ2Wy;=^8qodx2h1|7rte?9(Ymg1mr6m6A&P z)AKt9fEYWYyvOxsQ31Q|Arn)AV8fg}d4#I5u`h9F{r~I<2*jL+5OUQzc6}uj5#E#r@Au`p7V>`3CV->IHn)DX_!We{8UtBJZ0rUAC+(AlP9Aw;dzU z|4lo(2|cB9ZS*u5-?WpV0cK6!ur?rRN}Dw*o`P^$$u;_JOP`(enLwpjO8Of&Ak$>J zn>A$ht}ie^13YEJ_y)Zw;!Flx7R+G07i(=i2rxuKdRNNCPK`YM_H8&cYif>;k? z6vHf1bt%;slhhb?C10vE?o^!RX^qJAz!h|S%e_&2$ySex(J~_F#D*S_@%hCE*=8Sd zUmno3UUUD+76TCTG2k-w%ea8q#eS1@o{kI*0P)`b`29N@RJ5o)y?73BQI)P?6KcQ&VUD@dA4Y@!f5{7P_o=t03K?!0~ zoxD;{#tKS0I(l?*m~Y~yEJPd^KCgcJz*ev}H=Ri)me4v@1{)8*sWML9!EgJQH{cxr z5M$4Ti6_qcM7plAfNTycv@hz58?{u;nI4`PBZHfMk{>NEqfclk-5gDWl?j{v?5+-W z$r&b#!mto_VSurC#6AO);h@*Digk=Z$6xM|0Yyh0bIXElU*DH3RtP~M!T<~&^NYb0 z^|6^3=zSXhp3LQ6h@gQe`mnfXe*bn0n|N(D$>;}^YZs$HaW;A0Q~q(nD~wmw?*InQHLr)C|A&5|5gJkp{cK|Z z457LTF0hn7t*L9pD*cwpwa`z6DMf>W{Z1+zWf=#!d~~SdcFAM8Z(#C zg1yh$opjlovcF8iV*;qS(-U4S&OJSAXf3pu)B#HX2)(qM>r;}0$5ySjUdA^YFpsDK zz)MoOhXKo~*#Ho*>EID<)CJHN{yursLuGU5>HVqmY#{^!vUQg_H^&vk>rx>SsPFmp z_9*LTtQRx8O>+;EYk4M1peJTmjq%t|idB@ADKZtZ%NS{Y00D5__pb}M^Tu-?L;{l0 zGztJbEy!%O{&2D_MG2_sxCHVl1J?Yfw}sJ=iV+fUKUDWX|DT)b^4GJDqT4nH9r2k2 zd8BUtIP2wMwl#3UcRSx5Wj>fKZMfmN$&X@&YYp!cvz)z?J3^3;v;9^zQU-o~R)-ZU z!5B2&fW^Z2>AUN;MM!sNAV77~eB+u?iSvIZtWDz^r~Q7c-C#L?BvC*1Ax{W{`t}eVwnAgZJsNlnfHT4xRgc@0OmJqZ?si)XNDg# z%MfMigD;7YkIn{vlcNeBon3Hgpkzm%Gla$g;J^_JO{-xafRLC(q9cRc9TI2(`DlIeJ|R?kTY5aAstQefw1hwHg@KfplcM7l6FuxY&BOzX|X-K)ifj4IfxSF#Yq`LaZMS z?sD8-KZGUbAvYUA-?f}vML%QtqO4DU9x4~Uv_miets_}8@v#+EY=wcK0(-&`P+I^rVeueGO;|8b!~DV|IAU7h=XYy=mjlz&DKtNe~I!x+u4uk)Qh#b z<@9x?x@NpB!#ycRT|1y<7#t?@43d@BjrzT04|-jMK>$pk57nuams7SEt!efx~-#;a_JqEO% z*AXYqmE`WyT8T5@)1`GBHj1x&Cwke`7Rn-jy*XWqQiqRil!LO;vK@HF+v$cB@F}0| z&~1(EUdufTg%4OKmNEnJym9zK3DQd%t7)`cdZCwvHS4}IR)Y;5JVZIVwa^I31Upl)Uyg?PMkXmhV~7i1vMQbJStOL8!ZhGf^bJ-JLN+u= zs@6I#&wL#vAgudIvS<)u1KDqN8{Ow~6oWTPl|I>1iO}x}Z-}lg@vxP?Ie9_l zh#H@ClYvE8)C#!YZU)u_ZF-QRL{yOx4!A6fRt=ReVqveVnN0a8Q zAq)iI!m>M&Jm9*&TP2}Z5Qsrobm~GM2(=O|6l83Lq6YRFQ#L#0PtX+ z-reEO@2jO5EWKWfF+ZuFiFe)Lm;Ss7OZ_N=9T#CMB^;xQ8}p@a&ViGp`nd3kCELkX zwdyAkHSd5!bo^e~(W7ViYchmbNSQ%P14~*9PYqCVPH}Rgv};`>df!v9dsG<})?nW& zTQ`?H>l%>(kahT}k&%4*J;jP=vUV}8V-toY^3TENuK0G1uwG`V7cm=wvD>6e`sV%~&3`KyZ*fZn=d0E!{Rda#5soSkx5C4_Ih0tG!(T~?Ik@kZUlUH4*wUdoLfrknf>e;+ z*98DAXDs`>uMxeH0zt~J(tsw*(q{pE*k0(TE9;ag7fJDH=Kz3Dt)9$d#K;P|x*)&5 zb4U=_;^X3Q@N^RrNy%vEU;v1pr_AVM2QP9iUb3W(3&f9TFd)Vn6kcwFjqI8OKCxpb zYy`wS*mt^LQG-R?d{%vytTs%`yuN{LWj-Rcc7!LtB21uVsQx0c!ac~)mw)zfX<&Mv zkU;>{qMXI4UjpYmXm5*D_QpUAUasVK?dZ9Z$P40C75V6Yx^WMsN$Y}6vWQ+PG}fe>M3#DZAl*tPOi|CC(krxlj!-{$<8KAyI<`7rm*DHSW>vwYCx=I8w z(oz_G0*$9lPyy+IhAn^q=tfduwm5>6ongIlM%xtk#Jwz99OBy4s2s_p0(AsjL)Ueo z<#hM*`f_*CXEln9`qGZAB+;O9WUbt)xufT7~B)O)o2R4BQ#p;!zZs4=!(rBF1Sq{H=@)({1 z7X0|7q@Ccwl9t39*aDajm*jl3ESor7qC?*Q>&cW=<@3qIC3>AZ5ZK%6x++WM3!ZiI z_5!`2qGQU+Frr;gg1mtKg@R-V(XLm~d1R~X^mCEVibX5u`21Wp+dAP*6CK?Q6H?B0bb&~6N|~%uUmgX@%}Lh1P`(RfW>J#Sf)Zv zU0+fE_{jheV_}quk4LL-f6xp->n-m5;ogJy zU-6?-fu?n^l`+(?bE0xV6`#7Eu%77E;S#MErH|Bulv0i7XXT)^;uyqZz$}oZbn=zw z@&J;klG0ki5_&-5S-*CkoG<88jc6UaArmqN1)U_ZV!{zYA6^^)n72AZzCK?_B%ZJk zgrbBRVEr)oWavV9ZJG_9PY*mnC~K(OlJw2scKh+-@wo8LrB0|k;-u|Ll(xe{K*YVD zA@%`eA<<8F>*7tYwY;M5T?4Q_xhuxomcFsORfCR!y&?&6@4U-3r2mRwF>Za#BcTSo z;LOKoOQGqb1cAT+V#39}mhUiEhA;nKFA_ke7`f%KVQ!EF8)5O70sfgj4!bdx!rxUv zbN#Cv{wE(KyOW$83!uCTVSUqsa#HCpy_6Ket<1kibHpJ3iKPO|qKf49Vo1mVq6e7?obUV1&SGsz+ z&`8!r{_6Ra0Nks*=l8BJPL|I)A3#0GB7Fr2mv-?Rx$_*vhMsjx45 zyr&jAMs2aS&2`xTVxE_^B`^6iz#TXHYQ)-WN5~CcAbOKyx>@uaITO^mL4p84wa-!S zc$VBU7#lzbB8;F9064W*J%6yO`n!zLFCcLQV9ukXmrbN##S&EmH%7Kr0{E)oM=}uW z`VYjoUk}75e?Ad8eq@IT#MP`ZR=PFB-G~sxSlQ>r`lwFhW!5o?qzniLI@QZTg#i6Za9551NkPV0nulClvay-Ud008lw z$B(P%*5ks@*UMoSTP$Ae6N4BN5q&y8E__=~&vj0mpYf7sXuIqGG5GgFTF9j${p2jf zEKk7ncr-EUa7z7_i4whg$$=Zg#5jX6*_#Z+a zpA#SesMz^?l~bo39cuH=N(2CWcQ4u0r-|dj7bGtbn3da3%UEXQH$o43f0T@brlgxo z#J5TPBdB$3PF$mJb}q2Sp>*}~lDS1`qwi+LSXvT~s1GnUN3?E@(5=)Y=_e-sG6;Z8 z2R`v}QBfsxcA2&GiUoRUkelACTSRBB+k}dyGS2BO_TKCADtOP`F*BE7(HJH!wM5Ma zz@0G*qWNOW=cNL?fC#a+xhTXBs|~G z2sgiL5y!{!Mec7d&y*f%QiTKpwD;mKYLyg|#tI`|`_D4b+lOR2yiNjJ<8_jXL$Amg znwb*e{SZihs4mb8DkZ*Kp;!Kik~I^P0qRS{EC{(4m%5_ROQ%nmc-Q^u5t~ZPw3hz&8euz=xoBu^?@K(l?7bN$mK4`_{HgKPYsd*(g3ECa?y(d& z(hAHNGEj-y*XaSvQ@mSpCQVhzj#1(w>VaK5iU%(O{E$J@0{f2yLSik_R(Cf*Y6hpZ zU7KQtvhFryU)&qs^bMP96rk5fpY@W{F=McS8gLZs=A{vaM7d{a-aa%)&%fL;nk<*|wU-ok6PQfKx$Y^F*n?fyr zO&>&n)#Ux?Nv>G+xxH0RAxvQ}fdCPM?lM>Y(zRq{Gle~aG$6cNn`%N|6)9SeXClM7VOgK8LN#F^pArBfl}Mn2Fe_Q{!Zm)mtza1HZ?-L+8U$ z{2p_^6(`QmQz;JjB@lW*HISV6;*RzHTpx$YK{ zE86;01U4^pecA`iWHZzJYYby#kai z=7k&gigwR#J0GiI9_2$!ZDEUem*{mu0*s8o5ovDZNV`r10ebX;@pt;?)`%s7OUXoS zf{O%tdwWzZTI$eLrJc#nex~L>r4QI$LGeQOXe68S>;$=FZ;CE2*bA)sR*bCmP0@9n zdXm{hM%=YUpG&tf(+_^1J6?ju?{m*NcCjQjc{g_!dxI4Q&7yCcIJGSdjd{AlTqWT3uNW;pQW=J50^l%K%V~ANERcexMC0h4eqscrWE26t44oaowhY_cF^oGg-qto+MA(HMLW}4_7I9QLIjp${ zX19+0+m6>#>kRaQW==061E7gz=ncf(uYasGp8QUs$S-%j_P^d4tkGF!Mf`k6Lm%Iv zJn3d%TNe~a)Hos>VtL)};1vs{=b0$Uh52Nv7r+i*8-pFIX;HUi5o`RLK>%b)*U&NX zH(`ylg~>C61~8Mdbzg@qm8cpArW}`Ry7dzolJyipJ zF)dD(F{YyTg1x}m9Tv&3Y67_gdO-slc9#*-fEE|Fr#I4?*9T3K5z;J`WTc`3u27mj zFe6w)A^PZEO``f@`zSeUF|}%-2E5=N`})Y`FH_PW-9v}3M2|OTr&Us&)2^9Rx)~>f zpc3?iK*Fk+lxF$=4PtAT*Z!o>ZN1poY$R|`=;cJ^rO|pPB`*AvI@|0B$`%g*h_ONs zVyw{rb2ov>;y9wj;4x7IkXe(7_m8(0$O_9yZWb9bbe1E8b!G0m?Yk+rG%I8M3<8Vv z&%Gdbb9rld-()wus-CMy4KfxHb7G$@YEp-Cdk|*7yE}ZvujMPld;M;tgq>j%6vgcS zs0SYS5Y)2+j5R$DFuoaw~{5w+ad zI8^7Pzddm;7{k-8M-@wWadX3;ve-EjW&&c~->dW61a(OZye-YKI(8WXZv*i``rrWv zwk??+mOP(idmDqm%2rDH24n{PuwomzZlhhaC-H{kIeqB^uv(csSXV{#dszxefR0N5 z;2=|12Y_fkYv59~Y!Mmi*?&cg4Dg;-ky_8OEvqbc^pX;QJdX4;XS+|oP8||tikKnSSV%U=rtkB)dI+k?R_N+`WeVxkU0U?I4eNdguUH8rP>&) zad(u>0?Yw`NHT?M^qU7NQ`O`P>!i$ei2=}6;;S!#8qtTnZU-ER{+s@}PBbX)g?zR_ zmlz2(;00&g>XRD{dWH(HbSl|f%T2FjV9-hgU;us4I&_ll=vzu4d1mjjCj%^y%tVYd z%mR^$Oj+K#oJJQg=;3n``5^jckhI(Z<;MAYB7*=Z;V4-4lr(Xq6uovV338<6E(X*t zl1>H*9pnI*oIEJ#iWm?5boH~d_SZIR@DqUKl0(gj*WD_-(Zm|Ih*@eSX$*2DOPbMt z-SXMJkYA}@s*o8m=nnmcDUG9YT#qf@Wi#YhZ@Dn4*O$O%pa#6)Jv$4@T{2zD2LgM6 z3w_Zt0~lq?UcI0XCajiOz<|6vfhWe~bv_Mu?dJ!%V*b97dc(I&ynD8Lk_JS_&?i@G>F~|$poAa8~qZ!-hWW}@!pys8} zUnlx7m=_&>Y+hD+xn2my*t}pb@YS?RGEwNATL597g`A!?w(saB@P9V^Bx9xV1^^Zk zp9nBA@h=P3sMc{K!pv7!WKm*>uM#1Mai*4MR7vw$+q#CB-5WPMY15#^-7_s^tkZmd zPfK8(B=*R4xT_ttONND?sSK(n|pM;TSLTL;Q)-&Q?xpb?GM+Shn*`#^uQ9UdG z{oQVY?b@W@pfVUdePaouV)u{L{K)TNYw+HaKCr)E3Duas0U|-WrQD9kzspFYtzCiu zkarMPTKKlqi}oc3fcSCxY)YKq{kuv9{Jj*!?4=zu<#)Zb*J97rzldQVj-U@(#uZ3> zcx&EIhi$2VxGYJ9osIs}t?5=)@~o)9E1S|sRwHu7_?O{p{1pTMSNHVOt?n!CTxdkFo(uodsJRWHe}GQsLiMF8_>*DJ+=K$%*1k@DAp1EAfc;nVaT2sCBV z7Q0Yl0h~@_jxM9d;R_@m?~j!Lt!4BA0LBOVXX5jds@s7Zh6m!m>4T+72mv5OO<5ODZUjb((?kCOq2{TtNQS*b=#D8Uvg@s`zoD3D=9+%KfbO5%!*>^UXUCG1j#vPfn9d@ z?y_V7$pVk0pd>*-6i|}vl5@^EDH+L8kf0zUA|OctC5oa1C5kA2ovx{w>N}U;?+v@~ z&Z(}huCA^Q(?c8AWTkNJl6Trj?fM*N#}F7pok#F0TRYMk_jwEfA%Y0&o~KLeNvCY| z`yDqONsO06>&53a)u%9c88aN2>*WzgX4$H}fYYl`VkoKjKl60!bGv9#DB*O6F}nY7 z4;2EySdo#s6#S&U9WBxS0j6HyT5fJ0UNgjb(cYhDvjdFf25pjii)uZ!9%KT$6u0>g=1lb0{&C)aaEs zz2NJ)jg%HjDEj76-T#@8NEJdCmio-TALnKbU0O`l=H)fF@%X!`OC3)= zm4w8EfLq}cvtx7%dld!&V4QN53NIhB!mcp&=>Sv$a9y(tF#uvW?Tg1bbu{1)SzaTz zMdx^)atX8AOT#9slNet(@gL)z5uG3TC-EhSfJx(z)M66eL4;|4O+DSLt6ZLtRYz#P zCnS^@N;>+db*l|qOOrwgFSoj)Q){-C5CAr7=8j759JJQVJ?U_~bk0DIbv#+Y_~y+W zy79O#K)QG;vSk71>37$T&S(pOp+?K+@VF1?rBtzn}iHYT0!??UQPsQhSSO`>2|`+2uaA!)z6RKO_<=i(Rx1$@&>LDBtOVc4yw@1o$0#ve5$v)WHj#M+Ur~SHGo) zB0fNi8(>D!gOc|AJ1H2Qe1QqLjRV$a8`$9h#tYVu2ux$1JyP&D39-HmUOXBRe($ zq)8xPB~u7(b0ya;?$u>0h4~9qno~l&SZqeQ6nfC+&Vv#_kctbq%H=y+I!6$I@t)U2 zdRCBr-nHwA?q_4yp1P~|j5utD5?M8mG?Vo#;IF}$c^dw zyRi1H#Q1t?VohBxZ2Ulf(TtbZpCtgQqE`xeW4$E0LHSM&kjqe}TZcj;EEq+P5M@1K zXU}$e#fazPAR_2tEWzp@le{=qw!|vCVWk@g$tlH6=SF^7+m1M7K=<0He<{zXK*@lp zCXr^&ywlIo75x%9R=TpQ)asUDPMxukQm+Bo34vfzd z5K8VoEQ{XZ;CWLxawu{3$+CJm#PfXAQ`80t?`?^3))z>sW1i>vLIMGwnifLZW(A+! z1ceEWmITw#F*nRAU!@y!qrPf%Q;(%y zA3H!mfInO}GRQB)CPWUKTUuvJ9yrPYr+P6ec;wB@ri;|S#NPpNURLuiK!hrgeCFzp z(Fl$&U5k&(v(!4Q#F2C~0cC=R>k^>%lR$!*9pLWW)cdU)DcK^BF2`2z!7F(!J;RgAw%+Ji zdr2RhQ5Z=NR6+?l!(P67itZ=ennD5?>s4EG^AP@KWLI4R-+2izfFEs59>c(dNZ)xi z&d2LEex`B&gFbfX5UVF>QdlP6jCOYf1BW=p6dSQ+id_cmIzen(FzP$Cn z+TVE^F^0?-MFgmXY)+zJ-GlRWCE4Z!DNt8bap~+UpPKaPR=@T-KjGw7Z;twIu7;f-k*)yZ zO+ZM+G_618)m(2E8h7?TZvaa>#^ zPw5@4E6PnTSM;1dGt2<*{ywpCyZ4gXb5J-_WyeRpSXnqY=G!60bkTD&=%CILzot9q zQ1skVr(?4ByhyzxA+qSOigwZPks0Jnok_GbijGDjf5@pvGER{}xJX1H=(XQ>*Ot-Y ziyLJ;HTkPVfI9dHLZ?^rnoiKX{sg;c!}|b+WDI-j9Fh(;7e8LCy^sAwlTZr%=LYy) zzr3hhlH-RE03K25w7Uv8t$a^yN)Idn9w~_g`1=n+z6k*ThU5eE6Ov&Wxn1IeO(9>M z6!3YnJ-{^cj_Z_Xgt5%TZCC6;2~7{l0B*nYPxOY^LeK7El?!=UEKba~qfd|0cM+31R{G6!@-nrRv=UZ)C zE`9=43JbmfS9~!lwo8T*M%TlShuW?RsQ?3*@7l>20MSeSDBH&l%OWf>dVa^)eKA$cMb^H{S0VARqa)Tua3UYE z&9}CRe)oWm%#|ZBen+Ly@8l-t;U}y4eO3qnyFXYMh zPwLd4=iw+Rl*|?Ph`)S2UB3du>m#AWP*SPX3-p!=k29JC0+u>Ny{)Cw+jS$&+`0iw z@Aw4;{9exT_9%w7fOG)wZcSx?I88%Chrg?BQR&+^ap~PP=CJq2KMlzoa51_}S8iW= zU%P~}fk|rMy^6l13gS0Z!so+;)MwvJ-Qv7~xr>HtEZdi$2hJyv0Ie_H+VqF(+N8V~ z6iP&CnpCsR89hpHjuPYe7Vd2y)AC~zXMFh;>>nf`{ zRfCGe0f_9f=&((82!T`_j{Dn@ivD{c=MvKw{ySdAOtY++lMry<3#5D3@jZ>`*=d9w zngxuB1;F{+mkG*oySeLM_qzgA!8rqfe=GL715Sv1xxTgCz#$r7v?{>6u2yp;zm@d+ z@M=`1{t0mNv|F7k1fNFa*i%%`B|XWlDDD7^))Sp~##mo_DsOJVff}J_3(@(phzJ1) zS|XtOo)7f$1V@Z#32?}6>2>l|(hkQFBOE!Dczs=a?Q|S5LWxWYxTQ63-p20Jh~An6 z!s)p5aZ^p5^%XdA-j!`VnI5rR+;{S*#St1NpjNfe*ShkCh;5; zBrIJ5oIO?2xD@~WLf)GYS$I(?Q$kqpm6f}ld#lFEy5NARFKLxHfrIp~$!&^~c$9#~ zoPMXU>2+7*>f3WVad!|x!3_=+(bn;#qoN1s0U@IOT4#~tX~d!pAs^Nf>0+5~XEzv^ zN5395aa8!uG})1i5A}>I@*o!AoFgYb+cHNT-C=iWtQTrp*Nu2Bo7|aP-T3Ny^y#@H zP1LyD{;FM3(fd0`6`1hWyZy}!;atoN-TQd)3^qrkzDo}}5`O=K9$4sL#wYHU=<4B* z^ierJml}=?Vz~)dT;k)sjdaN8^-CdQNee221Xbk(My*qCXc8|b2q{+vk01lf%4GAy z8v^x#^uf8x#$9`Laom*apGF^DpTcB|VZBvy{CwLp#=Y9^PvhRbu2%LpqI9AIBt3@u zt4`s%=4fTScH}+ltp}bup&mklYS@ew!sLyabs*rW69`fC06eyOfw+t(3YlDb)WPLu zfC*a_hbMC6#w!H0?On&TS2 zZ$SfC!C4ofUt??EM*}{Mm{97f4mUhzr*Zr!Y3cRBHZ$T)gQb~h?ag!Vi!DkoSAB?`f zIXXJYD)O+=^oSZ=rBNY0SsV|$jNa4uKu}8)bR&-{moy+tym!b_oxX* zPv1%*if>O%Sd4yh@qzeNbLSdx*fX(uRxLr@ItOxCJ$YI@#o6E zb3W+20AHe?(sOVLiX7DbG}pWS_#yXJIYL+c-2U?g9VClp-PAr*ip>CgQ z*JLLGn6^ROv6g;yw+7$ob56%bjw#crh?Yc>%3_KoeeuslAM1G}#}p7`B*$`wYzdBi zG0c0V07G)`ykd8+r;iI%(CY9cP6)6}f&E3@!Jult=d}y)P71)V`{zo3R9N)C*8Dl$ zYdH4@3CGw$>_HE^L!$d)^U4qE>h#64l8`_^-;@@fk!phOMcg-&Ib-g&vbTf3jm~2R zgRslHRUJ1zwV+Pyn7qZ!TzE;A`MRguz=s$W; zl3sEw-f^&A&EVN+C=nz*&UDytS-UR#h$excFI1TFRx)jOPd$VTyan%EdIp<9psE}U@L7(%URnu~tDaq_efZ-=Asq-uCl_7kHIkhh>z16}FQs@&PL3)kB zRih`}7;dcNt2C(`SWB*evM%>e(r{9Wbq`3u{X zgej{~%7iIib?U=4=#j-PkTKIPcqq47TKoIL%@n$f3kQ+ZXib-Z(Oc5<^M# zzdom5_2Gf~6>^W7P9lUYvi;?)&tGt<2q0lTcah7VBH*)E$R=83^J-nAFQa zSAOI?-P+vCYEr|YE|8p|?v&UUQcg0ikvMUo2J?Ucu=o+KTo!PXEGcx7!CewyNbU1t zMgv5b>=R$izkZARza{g-igvAgZyTF8IFZwq3Rea=E7=l~5upYAO1acJwDY1Uz_2@B z&t}sF;)RgDq;+2aS5OE57u)<|tbjXxv&e4^fMo)Ia`gP5fY0_$>mQf_9zaqd`RJ;W zvD0F$r;^m%ZY778T&dGUPv=ZDM}uUn;E5W|Q+}p>gO`|~22O{b zCNO;D4~q97YNx7^b*w&*!rd;E7)p9O-w7R+x!Zx1(Y1Y|Yx^PNtouUQUjT;G-s?Uv zrks9rXw;!s^V@L;t~!T+h&$rrc$Z3id|Te3cDF-B0|AnI_4z&e)cfgTkwmv{vD)8A za|!r90RcwVTK?sBrZd#c^}20$NCgz&no5i#?}2eprL79s>aa_qXg&&`QrXISTcxM73@m0sT-86)D3_4@h* zobz%rAwo+JC9XZ&&wn5qrT#)H!%cA2!vCD3C@4|fW%7*!`t+M;QB9Q6gcQB~xIaqk z(wN}AYZ%?cdLx)GMg?IaSv4y)c2@emI6X&5O-UKhBPC_nQMkD_Ok{qP00E=uSxOI@ zLb?MvuG<}I9S`WV&1()2?-k?)`WX8CDLszb@qP9*Gphtk&(GIq3ccnCC5IA^MQzqr zjY2{hPI_nl3Gd8?2<{XF z2~?UMZsElEF&9ReMmv0Hh#h{BDFBRb(f&g}aadPKvkD(D-nyk`KGXM|N_vMOL6m(o z>_o_mnD;*4Vka?DN?|HxLJ=>Y!Z?5BKy{9wAgbv_07C>zCtDLgePhMje_>@E5qtm*I0_QWA(!^q?fH6XZB>!lX`13(qrs z+DC*hNr@n}7@azJ?q*H1VRAqB6w@A-mkL30TYU3Q8n9i(RsPfu(%+>A(g)7T;(j1+ z$mS)wwLR0m<$%YgSz$JMQ1OtxO%FVY^nqlY_nlelTjO}Gi*zzp3aj@lH^&OZi{8Io zOr|3qhZ*Rdk?acTSU|Ya{IoIU;$d@bmk`^pp;OaqX{itdMD2e+f7j$LyGH$_k7Ihe zg8(r0@&$Zk%wOT9Ponj&L}%e0aYu9?8Q(*Xu%7N9K>E%u7u+7U{?uR{9X#+J0s_3E z%gA7!U3<-3bnD$-;Z+$)-Eq4^(64KM`(+ZH*Lu=HfbxK{ zaI?+;JpDm{Iw>cWaC|)>a#^in+BzOst~?M>4VRTB+&6Dcn zv%W6ONis+s9Mw8aTJ8*80&W|4H<*OmMvdSv(xBWF}U&UVyo<$MajTBWR*B*XrsO~Ucmz2c3;LZ~<03(Dqu020||CKc6`EuuigOb;z z{+kflG+7G+w)(F$RBb1nA+6lL`)B6@c11<^XI-rEVfP-ovb-DwCzFnXk6Uz2S=o#z zc^fAhpRv@D?4&CVg~y4QogP>SaY*JrUzHoDEyTO$C}m|TZ~B7P6_Z{n#h>tnAbNYm zQ|mP4$1L3&x0>YGsPhM}bsuIGaAN$3!ShWx|FiRA1Gee_iBP8>Jvc4aoorl+ewTX4 z_bQ(L5~b5)UNr~tSs!y8+oZRyxL1!49qBk|(RtR#Mz!>R@JfWGnzXhoisa9i!woCL zzljRphvl#ZHdDS&%KJIHewpHLJdu7#jRRl5ecPy0;B+pN4p{0)YgebG(f5cQuC-6( z%%TTCz84TyszD?WKBotc`3*%rm{`B1^zV@RdScEy8sW$w7OI=s4ah0lCiic+gc3p8 z7dPIWbH)KgRiAuf3emoPW!JGz5;1k~#;Js^B~ew=#|Rkd_YbQ^hzIS7*e zzhCPGw}f=-pXl((ucV+pV#i^;Cdo@XrzevOW(PnEai# zBG2H%kwLt5r>Cp-?BvCDC-l08s0~77&#?}HKK#18rfnDiq@?Zi`wn{GpZIqS*EjAh zF-gs)jIWqsjykuU{o^gO@?~t5MUV`zBOZ=)Rn8bQS$9reM+nsbrEh$c*IiL79-Uo} zJ9c}bG!ULV_n%uz!Trxjl(Q2s)){Q+S9jy=^Es1r8g7>$TaA&M%DE*R8em-?U=t3K z387N+6ib7d8_h7O_}nc^wTszKJf6THe0*|}Tj?=vE@%S3s3?}gVo(ZVU`+u;ybUPd zPP*Bru68FcwL;~E2-4sWO1q@juMgJk;*Ay{9U(Lb=O)c@Jw9rdb^WPr0KBmQ!rJ|v zW0$@dZzhli@} z!~7)&9QbQmPy!&X3ys?pg6Xyg_kKEm>Y!v+iF1*G6fx%bKbKI_+ z#`Y(4s=oAq0C4JQh0NiPOjloyYIt^=p1gZ~Vj=-+(Q}k~l9Z6WS{CC^^G7GMTUkm_ zoBDC}y3I66MD=n@pFIxASEX2Z~x03}H?L0%gQQwT2rS_S!@DG*<73b3 zdhqTF)B&LbJ)co9Q1x)#`_^kY!q)>ts8;FEDQ-Pd{m@zal9x!oOzEPiMVxqqRP0k; zJ<(JLZqKbjfOHN1`|)`_{PDUP>HuKXsQxB38F2MLOy5Q)?QIw`d7zFXabx`j!M97b zFvYifZ-{m{wtF^O*4yudM!3Q+>+&1$2l7N`ZK~v&Fc?f_@KmzQ|MSP+}h^XEd~K*IgnFZh}HO(Dk=>J0_NfOHV!o2I%-Wt)BT*3+*|YnNqZ}L zn3%R#(ZxElaYlVP2Y+qn4D~cb1zE?WU*k{bDP>CQdM~fu)#a_OP@+^`NMq{M)~4m$ zLX$wCC>zublx7MNtZ*8+!K3D;wak~Yv{oqg;Pqr z5WnwKQSVEzn}iZWNhen4)JM#@eKaYQaI<4w-9Ok(gb)gDxoV)_O#lY4>H1Qp()b<; zofX!7gI^oLMMoXzi6k?jL!Bt%%?99%()!httkhFhK1vggj8ZkRRQ>(hVjLhsiJ_#? z>1t>LaOx%`>GyiFvTf)*Z3J$85M-?!M`~)^m~4Vw!PZf_^*KlYj23@LKXn(t+*gc{ z<;XsrwDaUdi1KC5cQZd1D_`c!UiiAM2YWFH+o^qIS%(UB_giaEXrsqyk8qGkQgI?U zDkVg&_{>@h^(y{=8Wd*5rBsi8`q{iB+OuPQ9e#L>hB`Y^FgSbZ^09N*?lN0JQRQB+ z$7pmUfDaS62mKD|82{Sb`N$9&mbVUKc+x=t7}IP4`=k@bNUuXBVDl17g6)XqRoYtz zdN0p;-J$s6PN;T`h#(6oN4e$h(9reTU|k>25kY#-&Y9d5r?P*w(k<>e;%QY%&HA6Z zrTp)Q)Y`Ya2CSimH(2e|9)5XcajSKv1S=N9TBr|5SRT=JLW7D!uIzSOukCsc2?P8= z4+L$myu=OS71Gwx$)ndsVzD$wzjCK**3f&XEhAc(LSETY(pxg41 zJO0ppg*(>QRQb7tg7hy3eG;APgVbh-oBL6JJvZVA4{#-VWB|e&!a~S2?6Q{55nc$8 z{?%6(Vg$UZd-w3t@jjVMm$B_7guj2bGJQ`v2#}6`F5qE3ts9a!&44NZel|Ht5J21- zxISY6eIkIRwxB@v5oHYkqjmTGTF{KJk1odP-sXX2J@nz(F+l-;_)!7vH*7vgMvIQl z6PF7%^vrtLj@omcb)=_u|dG+CuY+fgslNEfc5*YH9F%Q z!IWYj+txrcQga% zP1myogp%i-8LP){K9Lc6x=GGfm2pe=&R1o*zeS$};?>w^3EeE?W3^(gd>L% zmnEB`-2(~&Fu>L0U?%koqdU`XwEEnD=cwcX5Q z-FI+=FoF6-rJVwCzei;-u3v6yE`i8Q=z_icY`d&NMZ#>77%>^ccZ?MF?U#0WWLQ#O_$AB)|YhCtVl> z5a+VX42iJaAHar=HE`%0!2mO3-|Y|-*#mEo#1^y#Hkhojmz0KdBw88%i84C3KW}~T zgu+P~F}po!fJ7vmHIqzX6uZj_9xP?qx?UQ|bQA%?&VASh8Vm45T7k zo|XET9-i22IjOt0pyp(=C02R3A*s>#Op;N$Z?n|%?jl+sPF6`4&fo9Xbu%g4mx_nf z?5T#h+odxK1#DemI)MKmV}l@JrcdNI?x5XlV_B^VC+b3y!>g;D(sX=^PS;s)`*K$c zB|=5KUo0^xPsR$`8+lk2lBm}pTLmX$Nr=4tIEk(k5353e^fK?(iawO8xXCD6EVe!q z&8vtwO;7C=XhhD2o&^%>!6)mVMyy_2&h~eJG%1wOu<&+Wac*fL0F3-jq`#FTx7~mu zy(l%#kraM)#{6>ARtMe*=^#Klbre_kRc~h1(-72F>heRPjdaz05Af%%olq%d<>+Y!{^MDD>(-|gp7 zSMm3mFnp~RCeAGAaI zCDO}YZ);1Zx*BhknG(LjF5tD7cxn`Jz<4`GB%i9> z-S!ovi?BN?*Qx3nBX$2zx1(B@`q3X;7Z4DsOOPJvK{{L`-adK0Q7d$hdUEfW77$C0EY6tF^DCSD`E~KbY@2(Cj ztcDPv28JQNy&@s9%%A^g&t)|L1~ARVys`6#kB>t-^YYsp?2t&_9e9acLYB^p*UjuM zo$sw!QHOC>0pQI}1&JG9H`zVY({?oZ$e-W=TsMoD4gSJ6EH@5@x!MR|-4{-!`p6wN z=__q|aN}WfCn+xxV*9uuF8INo?7EU{4S->dh)egPfBpVDS|Sg#WMB@OA zgJCm{#hK`pJ>syoHCqE<0IM|`V1QW3E8O>2d(?Ic}}vA1Y0l9&)VvG`Jd z@w>>0?>zd6f#D8?;1cxHF=M>kQ`V(s$rsf* zA)Wv{OF$^O^PH?XEiwS%$f3j`BNphe&6~BM#8A@k?9qC+UKzegk=Lb;3aXc1j@0zO}j1&Ic&st9AQ4rvB6jDl&DsRzG{hbUs zBD^c^kzV-p+CdYg9fVZyuT6U4(=)4(LJ6(=*AH){b&i#~MRyI}+Wn~s=lwt2uKP6y zFVuy)ib>B{dLVva@!6*GUses-K_skc0}uelR+fNMzJFHt7fv=Hy$g+5Sdd2az!ABn z6fUJ6a#wMa6-o7-8GLp#966Mjr`H&LHi6G}2@&9j`G>_ymws^ilJ;7!<>hP_Qngc) z51Ib|{`x6)eGpY38B*UaQz{6l4KJOG@_hh^+$fNX29OezuOVC(q6Z}8r4lkz6zgU; z9Ac~{g%T$3Xs#QN2NDn@AQziG)D6ftTVB$Ejz`O8)M}7g^T5=YRf9e;F5$b-3Mpoy z6ObYK82#}k{e*g`7X;9M?nJ*{iFtOoq3-ZZ0iopTTXN}n8J|cAS9&OMdc;yYUO}}` zB9pw6PHXZc(+hdrxikrcEO*AaE3v+dWMLfn1`DP$@$?V>WZ}*9HdJw^MEBDw9dB3F zUd;zKo+TiZTyj?mT}M9R5{?{7toJxhcL|;%hY~|cBl}*~{>YP9O$sG+OW8+v4=1B2 z?4=)AY?5!xy!KNCdnkuHLHbVmIhvdp($PJHP(AxkwmOJBLI?#Xo=>I8GD*1`roy zK`Pdbst^23cMI0}a}q6mXhX`nZmL&5=^U*yk0~Xom1QYq&ZtqbnJ&IyB4x4Ovox4h z02nG%nldQ{KqTwF`wL--OJsrLPOt!h{&PFnlfSmv2_#${1n7*LV46E2Nt4bjnqyCn zq!b}JrMTg!QiK0=DO_181>l>NQ<~@kGk%xQMw^krxcLr!0^n)C{t&~r-z7v|@3_=& z8M!9!+$XCH5MOxCG`@$uaDXPSo`;Y2LMpakToamEfSQ!zfWVUnm> zC$rx^K20#@`*vn{^6kWuu)tpWqlXhSV2O2i`7rjFX(M#Z;PeJyIQ?oz4Lt^L?ighg zM7o3ngfJPf_tt2ngA6ydVX;bK+N`Dy=C2N!NAszu4#MS3?9n2!8niaNH;3= zg(I=_+6=+j_jj9%3ViEq0Jd=?R=cn(rf{h-rrZDZa%tOdNm$@Z`lB)_2|eRKO&$Do z$Q;v~7tFM7rsLWJ{Jf(=wtP8a1^iB)ygIw{zy}=g!Xnp#pS4SF?3y|I3VT@wP6Nq( zXl!Wico}-eE3d3Js$AMPRc8e3yF!588oZ`KU0XV=0Wg3^S5G$;?D^B}$_I*nZd(Ju zwvO3wwiDSj{J^(o4&ZAJaAo1ogGXi@F|Xs?+<(9ht5j;B1pU#Rexms62fmIS6f?u@ zpw6vO-gZS;0bu-$qavhYAV7^x%d9J@*~UTu_}|kfVgSZa(5-W6do)VnNXNSC<08EN zI*EQ?SkNnJ_g8$ma`z5x^|~v6=n^G?jFM7L$P`3L*e8s-Fe!Yc%Q|43D3Cg|*t#!# zrEyZcg+svRgb>Xusy*Mof@E-y;rUwLUAynH|%sAOg z8To1$XMrEznd6B@EL9Tg1)>i9>Z)__QXXAdCj3gbTVNFM2#GFXe4R=*0ZHL_3heM1 zEc+I7>Vl3fr>5VY_og2BxfD%8T{L0*5$nh$k2N5ON`+D-b<^e11v_fr;TZEdIlO?8 zE{pwFJSeLDhKK5jj^y7QchGMGPZ)Jp&)iwM5TLidl3{4iGPWvc-8)Vicl}hEV8Kj# zoDm}Aqhw^YKxtAVE%`5`V)0-{-l`^uM$SyGRp4<4U;z7NYv=$IB7Z#djV_*jW&^cQ z2NJ)Leu|y{cXNpGnG91K>1=@mlMq6|XO>vY608Qm02bJ^F33_7BELBP*zRuV6!U4z z2tTD!bUO6=H?#E^#H+Y>9kXTc**^A#O|P5CJ2mHzwq%%Xs`3kZr_pWdlJ!&CO^wEw z=9n#Asa4UV_wg6jeW?(n;;mKuMCGd>ONgzUtfxqk`&Y>=PiMf*{0Z+7m6W zx*neUhd)FBe3^i9D2%ns@UNPfF5dx$?jq4jL;2}Nd=}LOwjZ|BJ@$#C0PiG(R zHywUlFK^+=ARX~6$*uNC%)2koxyDFr&rrBsX z>79-i)jr}$2LaOYQ5BKi_$&VQ2L9b0dmx<_1Pyrd*2eC;$jMK|+1Ui)OhsiV30zzd zGoxKL(_>cDO=s*Kw)u}a6~%FFQKeb6RXTg;J_%Ja(1VhoBg`n@dHAl`F+Dfn*area zGQhK!SBrskBnu^W{LgkSNCa30t4vitHed|0JL<2u!P265g+XjSB||q?_g99rvRhOW z3cC}bfa|*T_Gj=fa6=uG0Nslv@9x+=Au{)WA(LZ~j-{ElPOH+duJk^sitDk{a{&+_ z9Rsb{yCOB`jl93mmsgYajaB;{9M02T>(z#1o&Io#z!;wX~fR-&)Hz;Di>^&tjZ#}e3k&zNs~vt zvPFMsnAZivkwb~guh!J7t-QPtN(?2vHl&qK8o1+V5)%S$-F|#>MelL5dk6twtr_59J{2z7rM$lmIGq!gUCNP`Erd^INVR#(T8aD(!jX3jYqIM6yk7Eu7GGdJ);uLB{v^-SWPLG&U zlAb0lrt43=@$vs>2?!-$7@S@os^BTbKQuVY8EH(ms9(SJ?G+^08bz||X79iok&SOF+r)AB|WVRIaZ$iFsqMpe! zr*1u~Hw}1GBpf-EIOfL_`VDB$db(651>&W&_*Z87cO0$KNM&>bAyjR$$aWQJRFopU zF=L)}PH#+z%vH&HH^{3Gz$Hi@jHr{y7*2iMHR)aLp0igiX!J7fqluxUFB*NUvvhWS z)JI66geSl3()HmiQV0NJk&1mSA#(bztU3&_H_WFP(3gPEy6|xRxV3tPmK{`+L?yZO z@Qq@-_3Ax4=mIJQbpTj*-MHB8wu53Y`j#q;fu|S!#H?dH{Uu~B>Gq$cu^aV9HQ&?< z0aDt)dCQ#@#e~Q;r9ajYlS8X~PzYak!v}>BuzOUqj(hW9vyke5ln9ca&;b~y;;t$W zf4ZOt8@7}tfq-oQ>HC#msH9^uPg(X-WdU4Mu3u2zNAZ2{1HRObhH6B_!TIeRaOmO% zCgQhlAJ7iS>S&VaFN8GzWzu6GH{4M&We+L^VBD#H?pmZtWXh%(qr(te2;hYT?48B? z0wRK)d<19s<3!zE*}XLhrJ%bCA@9f*Im#7tBjY4*i5=-2WpH@wLKRZOMol0E;_-up;Ri*U_%6-mS-QZdnije6X`f49tk- zGv6QsHL6fJS>YtRIKEYlq&Vf`GBS$2te%<%*SlsiJk? zFIcUs@tw8^j})I!{FBS}?>JG43Ua;epBGZ<&dLEtlb{k#b4vUx{fU)| zv3o9~QUENLM4B~L25GkCbrE#qXqbBq|gLgz?LzF$LIAkti_L-nBMeqb@rCXBA{|zgRRxSBBE3(6e7cQ1=^#M* z@E(PXbOeKYKNr%8Irnd<(u{zGoj{8jh)B;_`L@4*3jxw`_mY4IzZP;)ETSC10Iph+ z$*8gMw|r59-mY&?yb5dEFXvwVAx1km6jgX z7h*7O4qrU37L9MAeR&K;o4@XDpc*8>#2+{ONAUat zDX;r3pSlHjK0S@eQ^mX>!k?s+rxj{z3-NJK5Je^Wrk?{&h^&!hkIvcHp8&?Bppzo$ z*J}4YUZN+M{Hl_Wpw6E;N5@o(Y-G&Zq**n)9x&@HTDC&k`-C14(A%!fN@u+FQn63< zAi-`Sgbf8~Wy&F87L;V~8z%euCr40Mn%_bal2knUn=ED;i+7!-txC}0oKL2MfQm!K zLKF}#(oZ2nMKSTtfe&?u;+3dxiB*mWs1JQ`32N=g0 z1ia*@N;+zIlAAhd4&keOkb95m&uI^StKFFwS>!_8IY&=SfnsIA+BU0w(P>xHA8l?vGX0~VT1=6lEKsvuyzTfL6YkY4%p6&;gU zx)4Ia8%uVx8xXDmFmwl4f4a47ol-g&v*f)5lFywkT(l@CpF4f;)si}%^1ujiDS99s zCxUg)+dK0kGqC)%InvnQ>I>+3d+E_+s7L?B3-OkYOT z16U*&;RO9roJ`E6B*wp&>!wj}(1vA1vsw~oF)ofgYk$%_KBoJ_8oDkyfSSJIy z18t!kLb967#E?>?KlC_x#m@B62ATu{PJRjD-u(`Ckfv$`a#0cDgnAV6rPkC&flftP zjcb!~1~ZpUW@6L8xRpBZW4k{`-LbO+M$``E`Ng#A(@(}|oq1pZxE~GweW?WKjPy;e zMqZmD(Ov+C8Xy3ebm+d|dwB|(lY%D}oY$R(TeMUP27b3ZY1Gr?NzG>o!=7x-P9}iF zyF;qPF8yj+_!SbEOW*Pc+sdxc52YvhJNQLf(Uy(F+?!vFla0grarNy!i%NBI%!PC6 zbQyxNZP){=Z#h6L9oM+b!N|Af313K0e_+|Ft7-^Yy81p4t7jV=V}t-pU{OiH)BY=H z>kCWlAouL%NQNb&#^}c06wN%06`KZ5yyQc8@=TCC;X!6-|gn@N8w2>5uKG}OuS)?1pK%jC%K z5&k8@JE~&{G5xY`{#+)Mh|=gkcO9kg$JXuFoXcnu2=&r#cGa5~lgSRnsQ4Q42>?&W ztP7UAQP+GFh!%~s-}7>2ZE_r$RkxNT+p!w)-HBP3Ds%0+KzcZ`Qy-Uj=+tt10K=#k zN(?34y1Q39AR9rGK)`7*F?G7mXS7dw1WW~`_jUiOnQOI%w>R2Wqg2_bCDRhT`2>%c zPey5HfDopCuraTsX~V{)t97G7~+AK2`FP-!DUnp`^3Vz2o;wO#(q* zE8OS>>mz`?M%LYl746e*j>$CcIb%iNg@UkH3QA7;(ob<Bmks*;m0+!*#^x>k{NUKM9e=PXu%#$Uaqtc1AA~5GCNn{#5yCxsI6LWfxxS zCKO4gca^wzK1%>fr~llp{pE!#`Z81Qo#Du##GaQ9*`AD87fK8zEk5+SPM^4UY7z)o zQ4ve#{%wrTia2pNL*^7W$-Q}|+m-(;W_@~=mm$YeHk1zw*i25DuOc~CoNl>Xp z(^wNtu{WB2z(^efxDG#%N>U0453&?-39V13w!<$<5W*$;9fZ3>K97}mGLKCtqTPop zEd+o^-TXZIlgxQdx*axY0~o-5rCP)Y(3cCKZ>%6)0IVBTAlS1{EpqpS$m0+4YKP>U zWlsSHW>1wgZrF>5%vRZeu4DXjhj$$t*ZpyPuu9RUro)%-)ZUf|3zSa5AyQgWFN%M> z##%_@P;!XkEOcGD`*6(S#34r4qQf@XlBwc>0rW>H`Ux=nBkSSnCOVW(6LS6+762H) z>h0zR0mN&SzDW_J_N0panvucu*ZADUkD2H&vesUmjPW89z>s=>T*cT5(_5MAg(em+ zT;q|2BGlY^{2HUB=pU{?|ZgpZT=4SBQ zum=_jeg9>8El=~IuEJx7|UZ&QH!Mhpp#d4d#ehX6C-f zA1ts<2g#M_p`{-;z}#J#%uS?9-dt--M$sS)ri!5ZU!q4^6LpXtopN$+9c1`M*-)a? zLr6Jtf2>Ds-XH-j0cMV%M^8p{vb5*KXx+2;PJa;5xurgs z&Wma%|JtDI!+{e70jI1q+-=N`mn-QdDxMkx97WPm2aH4Fg#R?Yq`M=h008TtkB=OS zDvQ!jvsEFiu@WS&y*xW=>#}Cy*HvK7ZPa<7^WXGAvMm`o4UKwp)WvXQ;&=w@f%76QPt@5i~9L=}I(xo#Bpk^D5f zD@#ChIW}P+K4L$A2xd^Fptc4}zeu*0h`eKN>Xn&>E$uNMI(b|eM4Ec!LYsR&ktotK(g1L?= zkX*C<1E&=eBAdLOOg9eSz*L$fBaq_OWO9?hBqF2tvndnfyJh;otfHk_cUvC==5QB| z97gFtVwRzI-Vhu1=IBqdN`Q zFmo(zeW(U?CoUWNPSUfUNVDB5cQ0;f{#;P*UR<4jwQfvS=>|0>R7&&L3$aBezh)}B z<-cq?IB}P}O1kUe6Wb3GSlg}*^MxA_^nj*!66zf5p`DOj0|XgGqN%%q4Asbc-O5&< zxm)KCyc7~j3?*H9@PpqqGzo;`y&s#{j|_3y_KUh-a}W>$z(;Nrh`DgDIt77*$YCpA z)VUBxx>H41_y2Wl6nk;-4rA6I&%9!r6(eD9CnVC>*5mT6C}E}(zBN0z@>L47+MHw+ z*ZwQ(Y}P8UD_?WcN%0xI6?*Zkbu60+g(xiQL83;_izX1jB9(LJup10O5Fou9Wv#G^ zp07rgy`nn{hZ!LNJmHlTj{fu##K1+`GdW6MBX_7p9#@ROAkcsDm>l9H-i_@Ibc=FV z6av85Iu!7g)XjBBXTJv+KwR$uAS&s*8wURV3jtBdSLo;ea(k+X?@xcry8OmTh!lx+ z_Zn-)nXG#Ja?&k_0C3mcU5wo^aD0_-qV^e2`Y{4RJ&`VV%;l=~v7RJ&(m?-hqXDfNQC9@nWJ(qXz$R|5$in)&QLQ$ovOt8pX)C#zY^SpIv`cgUy-6J&rWD=D{_d#1E$?&MLLAXDQwb7e59UlA%U5wGL|%9& zhYlwk(f%M+U_#_>CE8{*5zQBKsBo9eHk}w<>338R zW?MIdhy3oPYG^yN7Yc#F0T+DkNgdm40Nf+#GN?_X4!eW?%_+ql)cQ@X?ay~YiJ_zn zWxuhlgSu!E2-q|hkNkLXJso%0oGYAnrn1gD82r4pcoiqBJR#Fd}Ud|ClC( zQ1F7K18hse@iv^lTo1o={ zL|iq)E)POyr#)~!F&J^iG-$uCJKBeAFeCwt&V*F~G$cyFyj@5QH+-iZku9T1PG#Lv z)@%$}u7vJF0Jz=Ook5nK5IMI*GJOP>Qv-l$JI|=nY2s=J{4}C$>o8w*0vNA2LNeZq z6uoN|TBxJ6CmEw9z__MBz>WIX*YTf|4oC*@uk;sV0DS*?xu~o;Q~9qc_?x1JsaVr} z(T|6XG~qD!vX^a%ur@_v~PO%GU#9 z2m-i7`V&C`=bpaF_CCTGRV41Cxrfi@n>A)k&tMwF=TuNdzPE>r4J2yR6$yjxaBX-{_$xS}3-W*X~DuiP+D1;GEkR@_t)OEk$VF7rFmV``YUoyLLA z*X#5(F*7Rmus;j}EEY*wDY-j(_sRc(b|mg%?@;FzuwGNXyY8M1hBf{n$&2Zy5a?HT zG`TYObKSi-HvnNaEi=jmqA;J_G`c?h%R2CIZUBNvPk(lyo7Y5-nrf?q9{+^E-yi}N zrJXNoXR&!qzn6?BeseI1UJ2kVR+B;rTRK`V#<7Kj05B3ckzVVkUbgL_3BUk;_b_X) zMe9js`1h^4132Fanz;R|%fMu&tNC^aVDtY-BC@6JIlKxkDH3lgn7$DoCPs?Fpw&5J@PlpON zUx2o31gzJ-!`^N2A+;n_$Wagtbx@%%0pF%k8(=I6>_1i8fRCS@t`mOl zW&i_-8}tR}n{=U3`Z++nCb4hQaARZN8X7zg;ouVe#66}`Irz4iZT-5}bZFpD-+_dU z7R+$avdB#hFU5|;Q<6JS%|^tv&Y7BZeKd7brBrz z^?yOjTxbte_$0M1HH-OsTXG4pR{rg**2&}(b%ps{)3XGGl3UiUrFY-?HO+A3P~w|k z9o1gJnP4a}lyt0g6?+^;9W^PGQ1|3a+vI2;Apnfk4Kc(oFPzqaf!haQ01sw-5)@$A zz2{WqBKgR?H60V;`77-#5vG)W7JDX!;58+Wnnl4=aYr@RuKiANansed%1k@9GeK|+jG}f_pwgw1TjnC?ofIxhB?Z;-OA;3B|K5@}Bt&L;np#(sEdnr9 zIM=mIG*rMUi|@#?X=Ylfc#VMiy6QK+>|xwA?fY$Yh-aO%I|N8akQH!=A`^6Tvzr18 z;L=ISg8&*g9Y4i(Q&KgMp4@b}S_4d%lrM5BGU%LEfh*V8nOdjZzd!g*WYJjUl)eQB zNX=V>ha;$f0dL5vB&K5j!4TAt;k?`$^*8WU2eF1NAr)K*P+#Rtl zTb}ClkaYzZQWGy`jA{G96|=7GYY6DNhQ=XjUVYEf*`^=)ec>bOb5TTsWb|m+L+WO+ogtfI=2J>Ra@DM-M6rZ@cwwf781g*UF_cYv&_$DLhqH z?ta_VJM0T~3kW>Nk&LBkx&0)=&@XKh!YVJ23H6HMj#VXH>7&ow&@RdwCmfai)ukT^(8cH&e_p}jTD7D(37NK7nu(Uu6iRwO-Ee!)`bt86T^_`#6f0S!Kou!vP`XmObvgS1SkHp{ zPQC8*{)EVy(~{_9m)EdCfaEcs#>YT1hD2Yoi&h?zf`OPS$M`q)9ecO&D0Be${B!qMwLq1xJrWXRhXC1#mh!fKC7ruISDIjqv-lj>bDFbvPaYCj` z>H6e)5Ymwmoyot}4s+C)MkU$y#afuCGB~!J9qOo$81NJNnU7-dPWp#ZB%vKy0>*Gu zi=VI|i)qB>@zt`aPQ!C-s1{B@DEZWc!!KH70K$<&i7o3M)JMzt_#TKDRk}J(Nx#NR zJ@=OQ+wK=)6c8Z2^>07L2>4>ZOm>_Su*~N1I*@>yRW2VMEdE8pU31q@dDAwx_*Y*- zMLDXV^EaE6V9XoQlus-BMnhCq=1KS#o~RSIXu9nxQi2WuxPnJsz^{=1npt^vN_fdE zwn>F?|0UbrGiA)L1MLzBV;T*>45x=0%PhY7MO5y-5%xw2`Ua-PDd<5TFGaeEbV*;H zHr}igJkEDC2?U*B{P6o%x@A2=52^%8;S#)!+uZqT>ZNvmrvW8kJEISg2GSUT_E2Ou z1YNIOP`_~$kzeX0WFhIZIr-`|(JFG%iV_7}rSAkc9h>}zm8EccP&Gf-z=cl{}Qb&^XP)qHZcEwIS(8@vpSf}xo`_|N+%CUAN^%l`tZ_WD-wNdGT zbA&>X_`a#8njV()y+l2zu>WWh`;SK`QEQksBPXXq0C@N(>toxFnrIH@@B1gr z{vRq00)9p~4Tb!Zzm)kj;-?g8>>j2GV*jcQAG(A1h1=G5u|1VQgh~q+<&S}Mj1P$o zhS>9Pk&f{}q+>lyy5!Hl7uJ~zPjsL^%y}q_JuXNcrqwyA`!OdXn#5*Jj2FU}LteMn z^w4NR0C-aNe@q>4LTtpMFk6xUm!${b3WXj!A0B-gk*jM+9xWA4N46j65D;`lm0md; z>Hf;YEu@10>GZWFSNfEHztbJX1IzB{=GBuNy`M%b&wAV*EJPK(ICZ`4m(H$6LS)nX zU9~HCEeirv**!PPwMzdSL3`vE=~+l`X<5DW^+LV5I!E%P7k8wSRa~#^m$p~oqf|*MOyO@$AtL8fq<9YOdj4U`n5FNwl9PX8!Kv$^lT0SRKbxf0Z+J@ z)0Qr(h((?}_n#YmyMJ9$>&^39G(E*tH~&F^66v4TwwCNXRX~6$I4~mM&QF)?*5nx- zqyw0*{4LXxC4O5PJ#kvd7B+OQM5b%*fGhUR5WAvIMstd4^OG!ED(eg|nqMl3dkCdN zukC4lHIYLe2%QvxesxE^yOpdjUvUHg;Tjcz68h%lI_QD9@}UZPOTa5dNT{?Xd^u-< zPK!MP!no8!FOkKxUZN|`BRSN<+6WF;fb^d;<3nlaQRPI>!CF4nn~UCCs_^`?W}tn&&xo7IlJ=6%rzxko2J4C&Ky+pH0$v zs2*kB?EAKEOl}V;38nNTeI@GYhWzT|)jCCB=L{u=w#T?x{dI_EU(+NIo&*xivL;5& z%dJQ1C}I<$2<(*LF3Gl?Q(V`_BWMHEKKqI(0hdvZKlZ?GarAkpB=Pl~RHaPF9KNFW7aM{42-FJ^^58Ci0^?ty#ww$alhX=YH3 zVj9fR4`9(52Z0%!5cy5QEUhy~KY$^1^QZ;}c%5Dp>e_UjwlxD=I>k@;E^lyd;wN!$ zU5l^09oF_vI7j@;zw(P3yWrmefUSpsOkw%Y;&QnmUEUW7e3!8IIirwwD6VS zKQ|3uKnqCo!mbj@d~bQ9V*`Ageqg+n#-P8(%dLmU-g#Z;XFOHSKTBLXDz+YIyzq?1?_S0WPe|&RJ^!Lpk&^YCtiOfsRB9}gQIpO#o~+#>x6?l0%3WLYfuJ z?3RT}LI?%_ymEq`40B}xmWGm{X49eL+I`v2?-gO4ajtvIe%y4P5a~Nu2S0y~ ztb*b@pWP6>pza4|fw%mGL~Rl7z$2Z(3*X-S_Q;n;qVGd#kT}W#Qk)LV2TQlLsE{*cSd$5B%uOfO)acVLSM0bm^B5^zka8Fr(P zHb$j8^oz{vu(}2nLDtF3<9vg4@8+xrC54hhiNjl_)LTxRV}%k!Nt2WA(`M!uQ$Ygo z?5z1QsMDX9zYFg_mnb^TblQaQ@%gGeHs?6b)+?zKFg7p1bxE?gG1fOeO+Vc@+*`?h zFb61L6f-*D`{&^8s|xO zw848+)K2Fp0op=xsy5k*HiT zSG^3Y3hTz>P%Q+2zllrlym0a~qRr^x+F}e|MAncPq{ma=Rtd~IrYM_tPKB?6-)Amm zg6nU`CfKeHU|Po|_H4};ywfnR`LfKN9HZ@Siq?%)!wNq5fe?r>v{atY>=7E^Xp&ll zei5@BO=x9CjFV-o8{9bl01ROJ-^&C6#J#JhuTAsoI@YNaR?IOs3cC%3;>Qti2K|&q zxcM1xHkTQ`T<3)x836v0OaU+?3%E$J(Yg^>SAYTBkg{$p0}~>BXO^JC{vuxQ!KSEq z+m;mlwF(?759ea3-J-h&amO%*Lf?1o5i1)~XTYAv_XX^;KduJ@A^J&MINw^>s2&Epkzo9&qqrP;mDu>eT{-1J<&1U{#5B=H~%}y^gG|`0gBH+{jR^`_$4;ajC)k6vWXLa&q{A+ zK?0WDwt@fE3Vyn*fYG(UZyEiId62xLpfm=p+PqZTs4*gC7v0nx*8pxuMWAv!_g0M+ z$(ahiuWid`O994r;jlfI#vviW5mJ>WPjxWo(M*$2iY9zgv7Me6aYzsXz&J`J(hFT) zrS<2A0T{sZpM4nv;Od{dMEO2@h=%#oNl#0pZyLmhY~cJ^4umXk0yxQO!S$Wq3MLF6 zXJYc$-gEphc?vndG)k$49|l`5E^efzS`czt0a5{mo>A+5GC+LpBhB`7wp0X}#VPov z`5^rsu6H;1Fu%?iIC%jH;K`)>a*~3QbgH!I+~4{NPVR@A6iS#feYq}$eMJZWr(D2W zDCk}Tl3A&>2S#WB7}Hxhl2LGTwC&%MbSb`h1X%OqKFO zouf{?>oTWF@V`38O;%9ljjQ(fP3d0Xc@hnG?L_IDzQ+<*ZiZ{z?kEUh1Nw8J1{ zN~*No>ZoiysX+;as{)2|Y2}h1{-y&eryn4ol2=kk1fOg=WjxmR1`;|=CKBI*egcdZ zO*~oD^o5LP57=E%z|)+LgG-PE{O!>W+U7g}Kyo)nGDci=w*r8nn=AoL|dlv6^0B7_`Ce(=X$J@|TrS5yh~Yut%#15DGu-(sw3N#Cq+ zc@b~t9_jV^wLcp|)aLCY>K@*aYbYHS3p+<8F`;Szudr zJ^XU76qO+Tf3K~GmWyvr{&zxyxmUj6m{%IFV5WF?`8j>QSvnEn9ndv248uwXh8|#UMkidyO&$M|R-vsr`878|@;T5@#jp*5;*ZyfMEH*FBT1 zl#K{olq&kZt>$Zz+Q9-n6a*Z;pG?0;QIA6mZcNYLg}s)qmxk{_7(e%Tb~V`Z2XY}m zDvpV9`7oDbWl$&*|eI3QuMd5cFw4$yDSr0)6jc~fRg%S zJ|p)}oQ|5SOW;gc2#~J9?=RY?$36zXPSQ^h5MV5hzgL4V)BB>)C;o)IHi04?@QYn{ z2XnnS&rfxBiT=xSUWYgqizd!Jb)qf>79Jh0`#5GCSidC^atD_BiWaH&@84) z<^T&x=5XRnX+4~A)Tm5H0Z_`eqTfe%eXq7r$CvY=Pq!y^(16+KSwXeNc`fXIeMqA| zn>8{1rx+gJr(Uk4b8zm{Z;${nDL%w0efo#@bLkkx>nPKUvQ*sEyR*xM@CzBR{R{{A zOaIxyj2)^Q+xsRU0M2xPaBJiuVHXeq{D;hm3T@4v5S=-BSF%V#WZ0W0w~|?;LMfJw zcSC!{uG#DgA^ZV+iGD)zjb5$YYn`*Lw7#*;-LM{oa*>QzDaBO2%MGD#37OlM-5>K= z@j0do4%%ANpEq@;aW{qtwdmPI%?_XWgZ{u~v$SBJJHE#@>)d1)lgz6DJpXtedjoj37Qm2_@dyidfk&vE`(6<^Lz8^S&9di z_9=ZPhdVrd@qR8nfUqlBS4s|svI-Oqq)NUUXJBvINp%KfOQPh$33!W0? ze(c#ypMByDi%_D}!6p4O%D)b(Ng!ZVN(dA0Hq^NvS6T=F<2!Hy-uuoiJKV$FXH#9o zLeG^e=33}njYhVG5U@&-2jiy@^r*S(`ag8dD1=C(I3ao z2O!dz4`@ei#_BfxXy1Kf$x;jh`#n0zG0QL6D(poZG z2?SVZ1%1LL>KzLX)T0h}98F>?d6|9hVUztWEd+r3)}QTKXvE8J+ffh}N}#~jkG_Wx zT3TDr9eQ8NfY;HTnK#TxUwMmPKIoe& z3kiDTh^V}?D{s;sx@9?}^d@xx#DZn799X%37UjF19u@540O_r@f!9u6HOnbs$Fe-6 zICO_pJlCFS({E-R*i)l|?tYw^01V)scH@HpV*hs0jjy#O7&yoAZ5%xNA>C4A0pDs4 zik(j4I?%T?G5zRHb_PyP=kJ?&i6skTPz76pGD_y_eO0?DPu%8`DzhEE5nqmO++x(J zka?7y*+QMVWIKF+=@5`Nm)y44*g4CalXZh|r~pAf)~nA{)-K)0RtJ(7(7NgOv@#}Z z7T7bN@Do2r+c9gT-7gVPg@DRpL0iBvTW)FT>>mIF*sM?>P$zTu02U=@v}@{bpe#-U z;Z(%s!*Qm9t$QZ6dkXaZh8*^J!Ke4Tscnm(r-OjjyqK9%MbZW8=(zqc%kO%#hJ%kL zg%W=5R@81NSVaf`r%HFs>6Z!7^*$`GE6Y}ibXt?HmyJD0C?@YH-iFxHRXQ2 zX2O+Rl$>piap&KLzlQH}Fx^KK8Yl@g4MSgXx61NArftshV(}ltwd-X(MCH}A=fBI z-w>eN>hjo9`r1dH4?IsmD7nZ-+3mC*fN*4o=&Id$%x*nnU2$GI0vpV0`2I9z~ zNulaBXrI`>Y$61J_2AMbwz5t*ocRDXa4A~20~ltPH*`kl$)wHBeMw&BiRU3080OS4 z+@_o}vHPw$$^vLHnis8Yy@=H#Vub++(o-*2lwHR|}XtJ~C(T>T4ObMv?5e;3y24VRFQ zVwdzlsD$g_r6Y~sIoGd$VNzwXqkmMJFM{%RhF>3!wDm`;j&wq4y;66Ac;y^IsV^l1 zaG?`5u$Pmo&J+`zcV0-W8;KoikptY-Y-#XZz189U1QIJa4pn5-x54cHYicC=?uwwg zL^PqyL|Y(xk2bCa%6>G(Kl3R;Qza0wC?s}9!-(0Ylz3BTDeNa80sIGjU}v4ze_JGn zCUC#k-K7CHp&x-Bj@^=Da90;CVRy1|^E#&Z}4s-4qz=bm)a z(H~&+QK{^Jzn5wYG58=gyI96N0!ByZFkn>pWs@x#W&~KzcrZ5?>323H)-KCEsAHrj z9ji+M_PvN3of>y`mY{E34v>~UY|6pz#Q^!ftEVSnoZ)IxC}BfHyf!88<+0Ls(=t$$+Z8h)voG+_q&oki=^t2S)0%UzwCis zi`;Gcj}4}}ML=(;F!^p=5T?Uh(0@FY+V*YZi4?>4c~awduXxXNgp^5N^h;gr1pMXe zD^>vzLrB=0gl>`!xGGLe_Qu;ejntX1zM~t2D+ciIgbW2IubNZ`91kpBw`Wg#$LkWJ zPq(!$VB$FmBtz=aX61rV;f1TUD$i=x$vz|jD?FhtcEkw>$W8ipF3z3zzU3lxi4xG2zahq2%Sm%>ziZVe|7H`ZczIudzC-O7$4=gO8 zfhN&M>LAkV4r%UJN0UI%OBipLtf@`PV-5(HJn8Oh?Z#aysXH)_#6@Vr0hK;>>VUb$ zz-fH9U%xN2`TL|0M0Wu%`{$~*3}-+916Y4snpgla*32!q%-_wX(#R0y=u9r)9;!L@ z-_L%X>r+eWQMh}iB<{f4VArc!4PJ2le_c$Q>HZh?ED}Dygv>b5vr1gXKKwq3qwTla zK2Mm4;`CP%THKMYrxTi?C9G?=`M?GUqlt)_es}u(>XZckuYQ|f^YzW>2YM-nXOy8t zm={NDq_*W)zS_wUr-kG1kJs|0<>$_sbC!o;hAx3+T;{MBJu*X(+w&T-w>cn9o=t_o*DB& zj^_yoCFd#nlin!hHVa1%C9c?7)PKk(lo(3Nb2(nO8HXWFatLl1nz!?^-R~)SMpPh& z1#r)-a_)4)x2TJ#h)aSt5CcDB$5_;PIStQIUc9(c@5Av(uSubVUUAmpV-D0pU~ojd zNH215zV1IBc&Vd5x`2S+o7`0AZk{SgXS`OAh{NqLNZWtiQN;L~HPfW}no5I&pP^E9 zdU2FoBJpq9&N^x0VGR09($sM2d^c&@*ZOZAVVnsKfwAoUq9YxHq|{+eg!Me4S7Etq zD)rgL0RbO6XDws!opw;=9a36`vSp5?w7b7?x{6+1;Z7DxM8$Wf%I!wWEz>^J=H*}k z(&zL67%#aM)m~c_qr0(Jk5TTlZ?M~NnXmp~j~(z(NQTrWs~QC%^~~KwF}@oN(W)g0 zh?x+;t)M=MS5H!Ai(s;%>;Tacv*KrHsg}y zG=o#opyU7e5PMwwV0+IQExFwB!2D-(#2%kIl=8cT=)I3-g&Ei>16b)uEwVma>@WX( zZyM)Nrc~OQ_{qRy)G%F1Ssb;4`Sy_hth=|@`SWLC?g|MdhLXM*FjvoW?*=>DFa)f*=p29qaH@P~K>oy!}VooSgaq45@{WzaIb)!>#Y}F~UTY zp-PIc=-WG*l(Akw&9~2&C0&D#b@Uy#(peA@IuL|@(9&+aTRSIEGPb>2KFMZzmCG(S|hj!1oxc!$^k&pPw`(orwZ1>h9E&03L2Y zg6>tRqo5RhHROn|4%wq2%qj$cw_V-sF6HdKwau^pcLhDmq^~o@%?ox_w=Rz2Y;_i? zu%6~o)Uk{z@SC{{`DTX~kF2qWd#EA=sG`9K>;9;njFTXMM-ULXu&if-Brn1oob(Uf zSe{Bkl2U{aQ~iI z8pr}({&G>b9bQf|$ZiL?M0s-2;Y5IG@y+TDj?aF1iV25BU&yb+I0sx!3MH)iZ8l{1;7<= z{t$p<9BHW&o55cELW5l^qcR9pxE<8hjYsb4nRMYn22X}9MN1u%fuYi0~EFd^Fa zpbMPxOUIPM1`iIV?LFR@vf6;JZKnkAD+fpy&{DCjQhN zQb?~BabsvwDB*G2656qNWZdZJKIDUvv9o68Ajt{-OP$a)H`DFn$LSkkr7G!%Al8RI zDafW=k{8-5T_~W}7I<;}c>+So874o~J&YIE!;wRYTT4XQ27whriJ_#V*SG6Iovo-z zAn2z7e*DXNArBL(5(oy70G;}50k?4<)~Kw*e|d9=4}@;?sgyh-qABT#hA!(2`k^W& z8Xc{z86AmwRi#fU`rt+tDV4gD+rKld%&5mco@9X3k3K@6$C4dFLUe{BiFCf|)vJUe z-~keG+AK-pYy!NbDt)lgvyIg1KtDi5grZsWk$TBR8ME63^fQB;08}O5d_e zuChA!-}W#kM!+^%9CZ~*Xy~8ulFw6+l0%8Z-}qW*b+)RosHl3bQC8Cgn5%vkJw&G< zybC6!6(kE~r(&XroQLWPA<_i%?v*rg@AS_Jx(Rp@@Oc74$&rPY>0_S!Y6c@%mA!e)Gl3b`DsXC?*cc-3I1u6B){%U5FNICAd-nipoUrG%X5K1n2E|Km^cJpX* zC~0}S3GaT7$aB!1o1EaQJMN$Fbk(_n*AIn+QuJ!x{q+mA6L|3j zGi(HafBF3s<*$j&ZupR zf>e@n!BA4ND?z&?ZBdXwSexOA6ZR9L>ld~TOz|X93JLfufa00@D1`+$b8q^f--#3JhQ66Qg^r)RBT<#WAPa&1={D@P z2HCV{@FWX_%Je}!s%HJty;LGFqlZo;J<|dRi%AJurKXpX=^@JtHXvQ258g8_MBO1P z?n`>B)z9NwuCehr0Qk~xnS-Lz$fR#-Bk=UJDuHAd4}`v#)41zqiL&L@Uf{J02mtT;WQ=(` zB3vd_+h)2EdFLe|l7Ty)W{jo#PR&5)yHSI>e8gra{Nf1LFN^p+s3RZr*2VK0*$|S5 z0Epsom+-KK^NiG-wb$t4J+LgDVjobzuN;}LEx~gPNQTro=TgN2c!O?Z|D@SLoiMW0 zEu`ySXD)={LN3$nylk4DlCe~PAr+xhfW9YJP@$HzAt4^9r+!H+Bw`MT7)X;+APT4I z(`zw$a>e-@NJ#wVkVS-~@1p+f*=XJMY|>UbB`iJ<^=e)%ZaVps>B^M{Wk&NkCt~z{Q>>JBx*u4xc12DQI1`+ZUvpiXq z*kUOmUroD3XS960CLB4GxUE|v-6nkTWhgO}RQHu@cGpFHG%1wuRXOWa1P2Bo0E|r| zsmscX|M^!_00t0mJ!N1*^zpy*>amS`W!IFv=qc@?ldvu)7umfMdV^5b>c-x&z&n?A zYE^hf4+5kYCza&T9#`1QO!Lf{tdkSIkV_Lmz%zW}S9`m(v{N7iIUxW%ad;v(lNp`2 zkl(KWmgMA*p>ggFluNt6twTMJV*qa>2NNq%0d9VAxo;NRN>F7hRW=;hw~U7n3NUo; zb3A1*UUHuWTQdKmR)NhniA=Ujg+!XoxGlIpcM~n0 zLkS3wE~a~_=XY+t(C+jY-7uUlfFR(4n=`m;7U^;|u$vsN3-B*WI)y@4okFd4hgS!Y zc|UznVOU2(VWH?hb%j}-;gMdjdRFCOY~0=rW(hCs+gt#i?MUvJwY&>n+bpG4g?m51 z+eiockNymf7s=OO3TQRB=>Z1t!Rl>60CDKZ_v#lk{kFoMzSs?@cH~`??{xb!gB>aa ze2++?f`CU=v`(S23Xlxop?u|n03wO|>B@B7C=85u+!SwP7-$~)Pl)!t;Q+m4yCV?? z7B)2OV)XQ_(xRCUQ?@;xhDY%WJ>p$IwnE1Z_Bs&sX6HYV!(B%jeCA_+NCN@VzoFtb z(>LbLY!xpov%niNV%8O-M&Uxfg0m8@U7J4pL_7SyfE z9eM|uRawgI5XI}K(BmuX|1C|PJCZMe5X>l*_Tuhv}(T|Cccrsr8D2;qoBFs|XW#egb@{BaY~kqtus6=Qn44L7g4b?ne< zI9R7K6~it4o*M`XHQBDEJM&wT4#IUR0tCG!R`g%%Q8usf#Qx1L9yQW?T>Pz4s)#VD zFLV!Q#!Zu|+mklJ88c$JU_X7J3R+jjsyAC%@6Pd@4g`QN?A{X)KdKc&Z~OS8R8{<* z+<>DrRKYJQOkH3c4m#5#Z91H=34fuf>th--n>mu{D;}>?MBhz)`bC`wb7!yVnD7;+ z1VeBhzRj88W1SYV355W4dW}x$?rZp-6~}Du3aLX=U(-lu=^G?H9_*PPX3C^Vp@i=5 zH`e1VFT#QV3;qA;X)))f=7f12w~itc^M=SS>YkF2;sCJho^0RI-45|oP{alL=pjp= z^(xnMqdjDy(|{n3SN8RG?wGJJSu@>;9OeN&PM>b{>7AUdhR2rWC1lgzim=;7R1y-b z_Svwn140;Z`%^vaazjcf0RPhKt^p%Wh?{%Xt}tm}^si3E)TGM5YqQX|)JHdH^>_Z& z%hbHlfs!;C#PRgu#*J|M_{)a}>4ztHB_SLc#I3t_xmJw2^tpc}p%hITL|su8AxP#h zGc%^tM&X@1kaWZTIBAwkh%KJOZdj-R0>Wo#Nr<~rQk`;Db$jvj3PiM*s8(cDJ-0pu z3(nEOj(h4GWO5MD*eE%3x+bni6ub0+?iSp@LIAkn=l{ltHzaPGNK5C%yxrvf0Or^{ zF_>iUS0-T43&M1u<4kxD0Yzus^1hotkTiZl%0g<~__gK^7+eikJKSyEcpVV4eqqu$Vp|1n65vCHkj3mmL1tOznVt zSR<6^sOPqBzl{_0nuMpGlm>#{ND6FPuN}`L;PjKKk6S{sCTDc(GNB1AuBEi(Ar&`PFRA!}y=Y0sh$u*Z!7TvBx@o$-ql{TB=h?gua`SuSPCSg3;4f`*+c*z+~oVTq_mY7C%nG|d0&TBiN8ellYn z1edb}J?&^5tb_n?bdNNy zO4VCi@37@03t#}t53Ut}R1AjmQ#7&L02Vn!ilY~aE9fwoFV||_x_tNt1V|n`xPR^=&200HCiZkm!Dr5|8Y{q7|CXS}=;X+Vh) znN()UWApO_uz5Z5PYrYH;{d$xCuA{1^>pps7rgJ^WnGxWNv{wfJ#I-LX3NL9Oo(4} zBct7);i&)vSRq(22q5}I*!`sjWI6ybNj+AAuj%vM=a-lOd)3&5OBZE;_ALv-w3~^6 z6EZU?RlJs;awM8?*Q0++Wp%4BZ5WYFnU*t35dhWx+0w*4VzVl12i5Ch*6QT>Wd1e~M zH{}K41Nw;h#viC>Y`ypXEZcmjD8T53`u?Dc`PK!6RAWFAT~Ur~nuJntnL_c!2h3Ae ze-6%RBAZf+dy|krc<*3}Sd;*td3>|79dH2vxBz{_XJG$)nWa8n8?3K#N2fBpPZmmq zFuhID=AU8O2%JZ25(s!prWl|{w)=LZ7OO!$Y<+p|G1zsFVrkpy=*L5>l!6kLZ9L|h z_`>=Dwx>#~k8&EZO!u_08=hS<);h3mx7{6KAxK6L7FAkT&L8{fjIPGL-J$r-6&Hz@v~3u#uKvw{FpwC9THZe*{sxc zZx7dV1Y0GLPzsi}gixceb-NU208k0Q4^AyI>fHP_Wgy$Xf4(hG5o{OeHR& z$Ah0c*3{~-x0a_F-$5dx1o{(y{3X6Jw?L98-NL-I1#mL@bSESe2FJ_gB6$uL(-DM& zK{o=!H2}tJLtflmuvv(E0|amtYFdDChIag(q$Z#p{>_?c@X!P>Dhu${Lvw;_{`kfW z+8^$$>mRfM2C!@9(*Xdnu^clyz3r6%G|Wlyh{of7^z%*nMXbA?9T9)$zj7v3uJy-| z+-g|mcd9iaqAB6vYq9;S=5Vfes$iEu4H=OsJp(gsKN?6y@A`o!`i``tHH*^+6`V(6 zRcpHQuPzU|*s%xFJLh2OOY@`-{P;^gvu5hM>zhaE-oz>9BPt43X2PI*5s9_ ze+to!QzTV~Li(p0mG2z-OM4>wIY?51KJ4Oq#0;L8mi*-m{Q%w3g9?4s$~66~2D$Z| zmyh%v%Ijg!*fc2M^MFSj4)>= zjuk8%0=|iw7Ry_z~V%v!-uB6BRNi%B1!8 zz!J@hr8^OnXf~(zTsxYfvp@}~Q16}Jja6Q~Ua4}mgeP{E0^mN12#zJ<;11}szJw1w zDKoW9pXWs1y%YEAxg$5uC)5o=g!I2I{2Y_x#0-;8wom_}_In z+7di!01T<)Q!O??48&m{c>gXJSrw@(BUjpLpd%lk ziXC(-7ZES5m$~#M-L?2+a8r_sMByqiv(Y!gMGXByavG2&FtzPj&OTq3oWRc$z;*J- zGoIDc>(RWV9F81H9Nwgf9>JOT8Lhd^qksj~JJRQS`Uvq}cYYwLz{0{h{_tY&H{?vo z$-gBm>WeWirOL0{h!-6}zzSsxO3Z|$jgq2EnES;*5-_Cz?!tA^6A^lJg*m(%kZUbMhHIJj@?u`}vm)k*HdS+pdn zfATB@NFR{?c0j;CEa~Qt8~}?K*NhzHf^Ur7t=oWmBEYBzB;(b`BKi0v>yaPMW&uW) za>(sugX4wJbIoua@pyz0!YwkHJn91<64JS;&$Nr%rGO;n6v8KE*64=w>HxI>o}X-? zsW5!$y^?wDl`{khsDxMrFz!tf$)(@@z>X+{b1y8~v$T}4%xAaeS57qaqMeNcc-XPX zlZb?1r3o!fC+AD%EO3A{^k;Jf>~B) zlJASrrSL*K2#63;!n_WnoUWJ_UK09$N(^;PRY?OrdyL&%_!+xt%Nyi&i{6sG4jhfUk=5IB6@4S%SuZ9q$k_=9WzWZ4~kD9D= zDH^-C0t^iE=q-BBH{|Cpk?XPw5%J~z_tfNP zrD|5tDHlrx7{HMw&IAScR&VS2Sq6UV0IMGg2Hzh4RrqNVy4kYiEOBdxH)Cs$n{7<> z&ygv%Z2{~=T?|FfJk>M!^TGxub@5&63t)5d8~_)M{5j+y;qp`9CeWUm>HR}c^&wJC@a&X^Y zbaQg?00UUFUCUSiF{zzUqMcvrO#(?jduMNH(-baqkrY2QJA!FrR%U27#s3r8VD!I9QYP>@=rVK45|syUB-Q*)!_|NA!MUwzDXvM zpiVO4n||BeWU3=hKGn$_k29e})JKzsjsDU<&S(+{7=@*jyWjn&4Z!1!5CA^2Vs?3hjv z(>in5T~4MH`{R}kiP65K2GYMH9|w3X{R8Tth4Zib$#~`J*tsSzahB8!k#KUO4dO_EapTM5OdBP5^`Jul9M?Vtg*aCpy=k7 z#(m3dU!<+Vo%?%|3|;5dtQ*_DeR~sI!oDr+aZ(26DmFKmzspNz{nU4FCSf8{Qqk}e zJ>^8kFH_DtOf<6I#*w^9$q$2 zqJMw@b%b#Ag>H62Ae9CIVEDO!dtFawOGjft6#ySae`Rz&aXVY(az#)2v*g4i8o&;7 ziUeDBniGDUNAYivM0^9hx6(_oKQ`vo*nfWH8*r5Acpw7-b_e0vj8}p=Ch}`m+pQ|- z*B4*_KPdW@0b*Ta$a@WJeNp_+^q2THUJ26tXp$HV=S6B4^N-K~Lu%`!4J$J+%pD?- z`X&{Bzyaf6aHdAnjbGeva!8L1Trq$*IQpX1Rc{U`#$fyR94~ll=`a3h&Xu<^3t8P!h?%BWop$h`w4c-f_?MSx4(ue3urBF#HKI9{h59Q!m0mDPlSw-4(s#Urs003MaA zo>2)~r9I={*Jk8N#4%??z?#?63r)=k>>HF2=-;A-c_njbu<@41bDkch<2KJHK|+NG z(8tl;wNRc1){|%4P(lD0>kmBaB}7*rW32|V?f?VW^xn*vp(6{J^=IGvQla}&>am11 zs!XR`iB<7*FSoXUUQ%GYYf>no(Tj<64`RC)C!dLO#!ZZ9TW>`gbG|<63x5v+Sp4S8 z`gz^0iPE)8*o{QE2!JcoH>)w&d4&8~)UsBmb$HAb9O%I!M^Obactxur1ZUXiO5ROq&CT)gZC?!0b zwnERLJp!f`Lg@N>9;cBLqPON97run!L^wtzapfc8H`ktI=F-WBm(!K!ZLs4`*ENS5 zXXY^b2fnULQ6}O=%5k7ZTJnTf$dz*Crrlin`J;SXlD1Z&Vret0ZAiW_;duf=P5r{f z)B4~PZ)AldhY~X%`BnQNN6S!RD5=tp+1iab>(Zo9!v45)dc~6?jt~IW7o<)dlwP+H zN1PLm$#bvIRwXV8cJC6R!@ebWuX+f+$*6A~-+C6+?aczVRBDEZEYv>8u+T;eC|!gq zo+G_F(oeO$sFpP0~@1RJ_dI(wPyVl#@<9v==ume_ET9OVK2hvNpp2H-JwF zguMP1q3Rvg3*%R(a>3`C4Ac>mZT~u{B>e+Z66sJ?VmJH2r$}c3>oYmN>nN%JL}Yc+ z`jXdP366UEIOQ7&(evl-(L*v%=yMPd`P@VLAZntL=nvC=Xk&)t1Cv_%hXzdwB`kh+ z**_%bq*71 zqK00=nbU2jUyZX=xsAkv$59au$lkvv$XY1+o zpVu7DIVKy>e?)N5G63nqpWn0jXV^Vx*{=mv4pK1{eDG3bGf${^^jqDd*kk}p#eU52 z#0{_;DlW7uhE5IeEc$NkNJr)5nWxpYqjlcuNe2O{(2-*IiTz{QF4(CYq)#NNSORHV zhzay#+}1XzRq zxZuE4YdMm`*b34aYiPyjgE3YtqeqU{&i$iH;Y(SB2ts<&6Q$`b>>ZOcX%Y{Ungqg! z!xNcg53|?D`Cr!_$%C;FXp`MtT*(smFnFozU1NYXNsju59ZfIpaJ$~?v~=!>?`5^_EWJ7TlTPU|(n%m)TYJ4G zaAiAC>%v7QJL*I{m=-JV>m7HN&x)dCI`?W5q{5ZbZ8NQmU5_l8t-Cz9qoV`?Km9bf zoBy}S_^OVRT-kMG&)K31>F&NNYVifFJ69H9c?1+XVqs1yyJ*N(-8EU2jpS*f3T~+t zaQ%Ai?dX86`4SCYkbb@}Hxx{X4`R=j<`eb4F;7K)bbvSl*ZNdx6Z*mqv=0lh#Ke#H z#x@?GEe;RKZTK&%wg#^{?uewjm-d*ZQrxc3Ypt&Wfyd{nfwMLnJ3YKRLY$of=!l2tK~mJyhyH(i2e& zy5c6==ErN80qdW2{q-!88w21D4w$~;(=1tHlAj$Zn(M~kE(mZv5{vCs(VKpBC+24+ z)zS^ZYn~vzPx?q+gBKjMD^u5uay2S6vpc%z4+8WbvGZg=z_0#gJ=)8o1f+}PrZ40R zuAgzpq=eN^)-s*j+OR<5fB?x?`Y(-vWiUGX-W?A$I+F@w#tn;Jh#j;K?@ddH?)7>i ze|QFXpCcLllfloTrlzXmcO-zJLgl6Vf&gOMX8p8Lwj-hF@-*(q5lIm6_AD8we(L+5 zZXiyhw$lpMB?4*^)DhCzx6}I@s2L4~dOrQdp7w4jzRTq)n~lgynZ-K#zDOR4h`gB8 z#7pCJfEpS2*u?!z{Ufug^)r6(@Oc7IN2n|0%MTjnw8&_{o3s-T;FFCNg1L(xGtcoX zy8Xm%6IibjwTJf9p6wdB)1pPUYU;kgIROab)<0K_cfnQrXVlW!@yb(lmNP7P{}|4& zpi9>JeiJwI7~H$55Ew6v|aaT6lw2CUl3 zd&gUfO6_$h;fhvP6;1oYShuww_D-b-Y3}r2lhJ>sme!`!J{7-fuHK~K=Kw(3=2V!# zafx=lZQS8O-I;o@W9tAccHbKHwwo5-eI=D`cT_eeq*Y0}Yn=lhTI*z7SrA0}=1PlP zaE6s5ZRv0>fYC_b=Z}i1nB$fSC1DpnI?z%bfS;{c5lnTtq{*C)|2S|J)MZL zwXQSF(2w!s9%MB^Hr4C9b$4WaJCbDa6~xLfOWZZ!`s1c))A5)DFw~gQd_+KizWfmt z`zDfs<(fqXO26C4MBlJ4;ESfte3T3gsmaS$4Q78ivuU}MDfZcZ4XFSFIHK;iFx> zcBv|w>^iIvOGdui;9)aUxk)3e=lnPf01U~+oCFiEn3gzxphhk`ZotEYaDqy}#1HzT z6d^S)a#zox?NUGrB@Aw2JtxOzlu`h0xU#%a38$up{V-Y&V4n2K1e8nWaXW-exEudv z-BRyK2LaM?$qB${(WHH?Jt$8)c2dRuy0TFrK=yz`+KRb)3GEYJ(f^+Lo?h4;@HygaExeJRB1c=?{+W(IbJU%09;% z3GeDXdG*iQ)*P828B%i>_|RCR+_m`16Qd{CXFXuDbd;iD6(pGxApiRApu4cq<>#(? zisp1=ArKjfu&jc#uRBd!gna~0Vs9p3Gx|Usj9gdN^)bPxU(M`hnnr!yewY`Q0Wmj) z0+8_Hs0r&h4whYT!mg}<8&MhsFy?jw&UI+44Mv3_If9ZHNte*7Lg<&|k?x~xcOgJJ zO=(mq$mo>V&X_oRcs(vP?meWT13Te{dh6Ade@cSO8MuJO}hTW_&>T4G6D zEK;e4dpI#ift-4_&K(+-0Rhr+77o%8h#JPW^LGq@V;vLj>G)}I(4rZ}!ESBqXY{rv zA%rz9P{A={#~1P$=?F%Due%i9U&_+hDZ1lOxm5PupC;Rt73m;AcWiP9c;~uhwsZlf zq#pprfgJ(Av(|bh)N7y|gar6ewbTwcAv*S6{qPO6nG#um>5tn$qh5OwUgtvv7_2)) zfqHGigI7A4TIY*JVn3-orwUfi{(kjqQ^BzIo=7@Cl|3obx|J+^_D$O&0H8H-cmjSC zB>l6{-Zj@@uv>>&bFBBW@ZM=CF_biab~(Lo?R7yZ4TR{g$^@kiHuep3EK*7Vc-qrSodH1rdBGse z3A}Ekf($e3Qq+k(@whWpFd@2Iwo_(U_jx4<^q-ObPxCs#K`lNrgl*3vY%>A`@C#}x zL%(vT^^5%X~A9RUH^8s2A>?p>Tuf&j_5 zHLCs}=geAC*k%46j(KsU7SRoU?|YyZo>_||UZyDpq^=lLD3+p|0e77?Q_mDR#R3?> z3R{L&0T6qpVdqI#NTORQmCE{V$brqT5?EV7Z}xpsHBv`ocC;^O#1`qP(j7AH5d1CQo(l&XxT@N!E8f z{=Kuh4MvBVLLC71*ZF(HJ8!rp6wPNk{yM8-zY+q#kFtGIc}lO` zmCO zSln_ovFKv$+T0zlQO5z0{>0IY!OZM^YX&f1Uvi6C^nH*v)u6jWil3ixt?BFw=PcHt zk9IBDdx0O z(Rk}3J`?l$j|=Sn3ve9*iwf_S4!Be3s`W?d2I0<9SAofO-DQhsQMZACew-?YNpoua&rR= zsk;U(2@25no(~jX(E(O#awO)Rn&r*Xn{USfesPR0lX!=IfKR+n_JeeE;;DI~jT&^W9KpOi3Zdd4XK6zuPW2uTpWj9y?Nj{oz=0f0ORsFfNz{G z6+AZ7%!R;KZ*(2#)QmTTX==|gIa;SKVU zt%%^}o9XIu^NT23%ic0`L}<0*S}o-5(qEQC0G~ zglONjizxOs0mXzkZ!Jlg?lRbiDMA{lu0+Bd-}0|t=?CPat5 z2PKY@V+3|c#m=josk=CLhhN_wlu4jP0mjovkH@YtzMb){J36sp-v$`KI{CK*1?YQK z2jWH>Lh09mXHPlQwM0bP3R(>wS3uAyhkk3t&Hvu9lU_9a6KYaCM*($kfa?0%$42k} za&IzVYnlV|fdKHdBCTS3)Q+pt=;ux`NiJNr`z3U5NsZEhzQwW7DN@~=Y@}bx_mv4{ zj&yzsmWFUcI_;3=ke_d)pTDGH-*;5hS-FOuoI-^o zhZ0L{nx`i!>`zQbS2sFZb~00J^kLLeld8>R8V?z`up)2{Nbiqb}*Q@-fWaX&>r| zE_a}_YId2XcON$_9{gsfzXRQ&05FUijn#;V&ssZ+X{X(Dzp__s0ccD80uB5kc>=zr zfwg%nURkDdM!xS2LTFFx>f&I}Z|o^w3{PFa3RzQO7Yc28P)q6lwlvRr<7aMque7^U@9OtgSB#_{7x6p+q2x!CQtIbV z`0B85bEN5cZm)T@Xtms1P|mKV>)}-w6UWD{OtRA!5y2@nYsr>UAv{+iY2((4`Rxh;+?k~Q=2QxudGy0Y#?Sv))7Tzj;FSQQQcISs4P*5|J1k&w+Q1b}O_`M{}5LUiVDp6MaT151OQ z-*v@VLrRD~+H1D%NvujY@}V(g-zbtSy33>VeS?#=r8vfeAks7Lyyr@f8J*ddjzO&l zflJYM&&>7)ZSGC)n;G2nA(!>i9IK>Bj&95jo1mb&+6CwaevJNGv@edd&4zb{B<}07e=k*3vJd z>vsGvyYf`eh;Ln+!D4;Aae!j8{nwU3xi`%H#3zwf4Zxl`tkej(BvS%zEy}V zHr9T!y~VrQ8vI%TkWj+1SyKbcOYJlz_^d&gh-y@XcHKJX$GZ`^NB@m_yy6vQ5Fq)= z@(Y3gjXh?@)oKHR+Ar85zdM5(j;G_y7?!_$OV3bYF#V-fkOzpdWWN9AP}_lE5fESr zth9u)$h3v;>q#Q-e+UV>f8HXg@o9Ko<-yan?i?-vu1r9H>5sc;RiIzUkvmZb4P=uB z$ID9B%+I2AxaNxw06tD65I>-gQ&K$NsQfJI)PXZPHRnU-RcY?3v+WbLv$&0Qu$y&D zA4lS$j-?=dQjZtipfs#UDeb~s=?^IqOQrQn-Hfau!zbJrvtkSiqPNV93%s2~2UKTT+z-RL8dXAIz{18=+&sfS6fAPC|DXU+~c6@=gT zX7hwIZ)C%F6n!8axtR=Pm9kkcRNyc@opbtus!xg&wy>fV_R*PFVl*o1QV*6LM zr|GC`lk_^3P9FpDEp%VttuZO77^w$mgqm_lN2{4|*E$x-DSJ3FRMpQ6=WAuH0P{r} zLKM^gKCZCoP}ns(9GOQ)Jsu&2P?@Bogj{u|IGu`adD*g8*UK|KZ6LWL%Ou()4Ygv< zrK|K{=UGt`LrL|%wO%{R9SiDxLm#OR{pgOv9XnX3et2OE1ehBWf5}ggS4f(?aL{%; z1Oco`QqsEB?;6X&Y4@Ehr{k@snqFS$)@p}Is4($)v(Y-;jXhI?u%AAtJQh>sJ)MpI zu{IUGx_|)i3(oiB?`pV@fKJJ6U7%r?0unyIjZ5beUVEdm&bK`RDxEIBzad|!Q%wgA z4o9$-SV?yF5I6>W`I(-DbBY6SAw|HTBRSFh%oS`aA%4|Tvk>YhF4*@xJ^KG3ii}0* zdp~_pS#+$fudg;k+Rbs(_3+E7gAf45lD>dD?HR9I*aLSWAi&MiY>XA~OXDZ#e&K-& zIpEYs4+aHXcwRmmj8q3|Kx+Nt`3(@=lkR=g-ID|KeP^sDY&=4L*s&UBTTj7Bmh+F4 z?jD@Ga5P)tQ8v4H0V9|}h4NXyj1_RN^FwSfbcJL9m-L<=01zD_|0h*!UC|glC=wJV zx4w#+)^)O09biwZ}JDWE3^XF{%VqIk4qHpup#kP5v44UtwDnfVbqP1yOQS zfbrbi&gy@gJg(^d3EJa$UF3nAZ5^pnF6~~jMwqKlVCO#^ATFFsIc|+9-uLVWqSaW^ z^-lsnR+D?Z36>%CRK4KOYn$VV^gX5QFkxl-Nb{qSBp)ijCW&4Ia>8~9QCe0=gJ0fd z=R>GVWFfXr+kKm2s+LJa)=7vC`&zWWs2=bgNJSmqsKM7b?x|71?}-2d*eY%HSOJE8 z?@3Z>rBVdM!BX)ReNpv{O$F^i04fMc2$M>0HCYRC(YoVmYjrrq5du_NQ@&P=OkGbbUt&6zx4ai;O)KpVliVI`QT4K@E@mW5*m-Y$sy6_vLr0x zApvJQ-3v3ebn%N#@z2)p(diZ!4>0uHx~poe01FSdh6)b3Z&R%x9pKtaK8;N=dym=p zKQ(x~tt&tPi>K8bzcBzX^es6uhaR;&$r4R5Qxov+h#~&i0m(6r8h?FP%cud#->$ZH z-OEN&e>H00peuC#mh>q>-@WN`!&(1EkeAYy_UWrP)A`YClon0^1Zr}z1IP771wWb{ zjvPuHym+9F0(`bOlo(2Cc`HK4cb+t85(pU1rEZ;HtgQp9XLhL@k~RSc){W8K&jU*o zi@kO`uxe#B)1Xo5qD?1pwraikI@H1QBS=CqRyr!hODU&I9M(%_ULAxKO8D-Ob&rat zmOQ1R+oNi(r@HTY(lNt+hg1u-(4@Vibdd6-g8=Z9^zXU8cKhKt9Y#Db;yu7w;`#-p zqLGKM+FKZu?9SB6bMGv$PmTjP#ffSQ+U<@>_G?8G{yH@&<5%G+HT{21&%;pD zFm(arFL%oJ@sHa7Ix#3&|DwUjd^64P?%R7nSQ$&UldyvA*3#Ge8mWzcoaT=~0FR>& zDu&J=;Dj=r?WRV>00uC+$G9K^6Qawf$ZfYARCq+XK6doQiQ2J{~fA9U- z^fEA?eb!`@wx`8-GnvA?BGpUQ*;XEWg#hr6dosrGW+=^B=T6k!jK@=eMHRZU!(Ezr zGUNqqP6mHM4kciH*NE@tbl85n0^=>kQc2(Qm*jX6y(#~~HpnA7P1BkbhwiXUp>&5$ zgB>h!Ung!nJ=3I6!p3Lc=@xcojZ|68T1wNAI4oodY1J=$cK{Dc?)sFdP z;oWN1t}44SzyPM`crpm!+FyRIlr>W`TPlj5YUM;4^p9# zKms^*_vOJRpY{!6U*Gp~Z~zC;_zhtCI#Xf~>>Xxw_PufkMNc9B=tJLPjgqyKunO;$ z(2E-EOaKEol18M zV0VB43>^A8=4o)U$sl~EHUVtm95SPqQUzYmw?BwkVOYn1>I~gWqAmrOzMb88o$rcA zm~0F!7K#;8B~IiHN|z_~)v=i!>0u=6iB~jEoWjS$!}`a6RJ=&NHD<0W)pr^ML)}0c z;*P$=i*rKKNkHSI-R;GBG{XONkxSQ}oAgYP8$<}OGg3OaxTV6BU+o5gN&q(?wNO$x zm3GY;yyE0&bX~|P*Lxwqk07fV9+?5{ob_i2{S*Z2r;Z6uf|0?5M z>GyAkJQpge$b1Lcn@Ij?_I4eDJ;_qZI{9PVQ7r6fE~o(&-b$U>sPNqPJx-%qVnS#XK-4RwpM zM+yPb?{_L45OAVBd3E-{T@PRY)Aza+12yo*FyE_5Va7o;=Cq!pG5@%OX zr2k5iMR&YvM>6Exr!r{*C%cfY6EJOfs~0|aH{UsKAvaV&a|tJ^^0K?xjQ;U1cZ$5Wi%lt=F&rb zi69?Zj3)6?2hTzY{*7l;cpI(cKcjICDxt63onOmHKC)@Ef64=}1Yn$c5%7B_r)y8< zd=g+tol|>85I~r*SB3xC`3)Lr8C4G7qO)GfAKv?-mdtrO2+fHB>99uojmON8bm3xp zZF7!x05_(Z0*q)U;LU5M+A9vQ2EdC52{5c7;KaYTwk1jV}|QV_Es61RJg4DnuqX0Z&bjsMLJGz^^y>s!BHkf*r0e|7_PRTYc%qOIT z((83+=8**@2nnT7OS*)%?eFN3g4rt`Ro^cc9OS+LWxctT++&~<8;`oV4^ihm@!1r z=L~&tsqI^8e1JR4_>eS3Vttf3IufRafCaSkhAb;wt4B_|tu4nJ^|Pqe=|7h+x^xeGjV%$uEgWsYHHxGi6n-=#OGZq>8aE3+LE10PRXj~Uwk~} zc><&zr5XO)Fje31%A1Md$f3lDf-`jcvDbtWLrFh&UZxkc_{bbc0A9v>5I z{{RD+wMCjLkUHnru`ykeZ?-!idMee;0MBGR8B_UOE^|84cQpfmYaA;?#zqGFYwp7f6%UO6c*>{w&;=SzZZ zivMcHHQ(dX^Gf{uDg6)Gp3z;f@zR3&$v;j#pC>?!AZoU&TSadJ za()z!97^nVbA|4LoO*^5ndBw9@&A2cC%R}OO$sGsJU?2y3QrS+05HaJsf%y10F9W4 z2K?EM+2L1ZYqd6`?d%>0bYpV+BqlJV{&X*CY_siY+9(W2V}Y-<2G zpPCU86Gxs7mK{1T4!|=h?%Dwfjd6#1mfT5=yJFfdc*O+KA98%8O~#!ZU`VaBcXg0~ z3DLg$KOr>}-d>6RG+cr|A^lkb&CB9$QTA1U}a2S~jkqkS#rAY!tMQlG6 zq7T$VSDg6yO5;@7&cCj+8QxTXo`6vD#WxP=9>tsL;mD!H3imr{|KWB1P+};l(yhsQ zG~{thlbApo15Vv0RZp+eX^z@L2$jCL(O)|Haf1R3V6g=|gOCb0X`eN}J<6a#hZC>^ zncPt!?&hRf#!X(&dd2T100X!=U9MOFF@jGlTEO;FwEP14YaodiSJ5s1-Lp5eWF8AZ z0C*vNqXgXED85zp+$(m^g5E*^SZ~qk;EI2FYC$t%syaF^`9QCE;H zA_UQUOudordeN`~rSw3}qaz3cradedT=YbQzmkg`HIA+*9$S7=5!0i5XNU+BQO{|` zMf5YQqL1p`TiZa-&3IfA0-ha^87uW$cdA&pe>;0H(4~NcQuKc9KYgvc&$&gV6oBu) zzuMhnF8SNLc4bBSECNP3Q4V25CPgb+7Sp!(q=NwII1(Y?U4PHfcITE|MpLd@$`$lW zg8J6C4(s#m6$D5wupl9jzsnw)n|0mvcm%g z27nI~^fRu+#ZZdh(;v5Wmv1U; zpBx}fe8f;v?(G?Dm!N_yQYc}|o`8-Ho=Kq|z_{U7tW@Q^^#Vr^oYHBmKZeG+CT*6n znq6`DKPnEX_Y&7Nz_WKI#(dr@qkYf_4VAVKO&A>&u>1GZiMqz;pH>dpnW8yB#0Z*% z!NG79$mRT;jU1qb7Ckvgo0v~b4qGu*PYyUEd7c2MiXJEAB>O(slLO93!jVIX^XuHO zcT>=qp~O(qAIV4A9)QNwq)@_7bJzJBQwRX#JyKGajydM&F_<$FfC0Sw@|_@nc)X(T z<~{zzbpy4yjAKY#B@OVUn1qXnCy@Z(rS%(hRh)8~<{asUd4+uIQ6YQJ0IGx|$-J{lE=7EB1rmP^@b5&>4cBR2~7e)-{kQApHVt=a=#Y>!1Z59Z47~oD`7yS4nLf= zeCSlVchZx=)C&t#fq8us2)KVz%HZ)W75%ppZeB}>{;O>Zf2RT%Kw7AbW#F@@u#3b0 z*P9*oy*~%5) z^Ti%Eq}=(J+Hng(T}r~$+2{(5>2rq0J?!%Ygpxn# zmsL+QqaqQTg?y+`M8skGFlli7w==exCA(Kj&(x2lv-fLKC?U!0jXHPX*?EM-C;ns{WQXisv!9RFJSJA*C&OHe7dD4#T=M5bz!>A#@zRQhPmL`XU7M?s$r_ zXv4JRHsYhYlisaKAg(NH2txPn7U zJ8`^??KMaNGzo+b?;Q$UZ1pnbM+wnsJ{oP-8JwLGK94W&a1^4kM#3D(wsYl`);^oa;V6Zd6hs!3#Xy9qE&@ zKMqvCJ=sjNwwJl5GZPP7%$bv6;`w^F&&@O|UyevU40&KVU59h15@-tllU3`@2`uz( z?x=A;{qOGknpSrxs@34>3BVocBSX)rF>{00nl3cCX@Mcb4Z*1>pSBdsfCMvc+juOH zcKviy(VlzxIY`Sg(!%{zDQmj^Xj}reFI;}Iu7lT5AfSX}9o}>++^fZGyAGmGGB;oBIPqKp1c0$TBH+j8D~I== zp#%gNLt?uu5hm&<$++1_4r`$iG$exXOToVb;}6s`-Eqt9%i8{4aKl~wh)*EEohLYN z9H}|_7u^j#-9Z4j>607oTL1=hJE2{{v%lP?EM8h*=X_@qHX(Y#!M}6~-smhOlyW-X z3}-NU7WHfYB%0uL8o5>ZjnUt^BiBdYkJ0Azz_Le&Lq@Xm_f4uO+d5Q76Gmj3SfXLy z=gsFm%cP=M51sE!OXT+5Q^y8}S7Rpu0simP5`jG1cA4$X^Ao?c-B{H4((#wxPc8*Z zZd+`k*+1p1=lZ?DQF6<*S@c0@Z*o(({~6owCC$)8sHT(b9943JkN-jfVNCPPCdtOR zgVs-{>ZLU=I)DIh%3*PCbXfh`JncVTW0i7Die;))>Jh~0LBAqpTeFQS&iW+f^* zsaq%49bTOEj$S|XDhdL?&+1%=kwN0y5sPf!k%qcJ#h@hVRaotif%?}{gEYy@-|G+? zVeli$+E7yYog-ZPCn@@o&LzANMo1tW$neA=Bt$<=nMk{XR}T;X#!0VV&b(=k>F@Zr zfo)Q;QY-;y5E=wr>RLEg=}Y z=nH@9j?Rm9rlV7k#p95e`?R4t$kUEU1MZyRC-S6S{(#{X&k5`bxD$Afo>0Pq{lfXv_1&IS{uFnUFip7v zcA(INVNTD?KYg5g;O<(^ThAx_NGoY50S^>P9coASxBX0)Fpu`nK)_R5LRg!`dZD>p z=@P^SLBC}9>z}J>AF~O=2@JyF_D^G^giEpao=gi%hEp_i>V zbx4RV_sS#NO4PU}oj^N$LY*J8!}>&|j%n1>tsXIdy4~u~AC4GG#_u)p&C5-7f3bZ` zN)09be!8#in7VyH0zqFWoFjY4BZCslpk8r`&lw$qkZPUo%n+XRS=kl+Iig)_c|pSMooLI&fub zc6H3sTk(U6p#o64CZF6eN1saJhoYtQ`Hn&KGR*YUt85R^R>b%(%S?Fsr_*e{#eTwN z-v58@QVdj;UAccfBQly;kZ{aYP=?RGop z^xogvba4a9l=bVLUqTdZxxv(UPp6cSHRp)udq!0!0^x+#t{DSO!>0IaxlzfQVneF5 zPZ5f9=#Z!zevkW?q_m8^pV-|)x04V-!Yo=yUo;&4d=)_gAz@5!x0GUYHt2lE?zvyl z3Yd69;!ah9Qm>*v)H0=5_0sJFB1*dS+th%NPVRo!nA;+eMy@eHsMn^UQLWaEvVnye zTI#)2uR*co_m&eM%A~Cxlx4r$$s%+|^s*3HBOEyEy8ys=OzrhSQ}sCNfiIDCsIt6g zxggegaFM`<-9v1!RJJ39R~*Fv0Z(>F_VHiiw0ipCWriRC+~9?sZUFhQ%eUGQy&-)+ z0W%UB1ngbQ;nqRxj@Ygt>VP2UeGnw%ywCju_cg)G_d$U4rZ3D7KswGu?kGIhu51bd zz+-#U2PLJU5BfV^ZU?7?0F)+97&W<%9u4>+^5+Q%CBJ|EPaUuMR>N>)5cP9OiC3o7 ztzR)x`U})p`j*n9oerLeu;*lANg;s{*gP>-2;0Bh8NOjb0QkQO5pJ$Fsx+N9 z|D#k@{GN{Z^Pv{hr80fcvFg$X{}cB*$+cMRw_2I5=k`JZ;oBm74XdWrlrV^wjuZ2#qEK_ko4SUZW3J`Mt; zLlpt1+CEq}nz#RfScMejPYSDYKk786&ud@X_R~Fk_>+7moB%0Z9QF6g-SkFfRHUey zM%7DNzChz-dVKM^^f6Ksk{ir^EpXwN56#Rr>K?yF>YxjtNKQets`7 zvuFqZsm-)x5nRy+FiDM*8~4tQovb4ZyGI?;<$Z!>rw<7FP(_w~zi2b^))5E*Bcna- zL`dj{}mESi0Yi*O@XuKp6Oq&0Qmo7>^i`sD!O(+dhflL(4>IWfPmyb@60{-p1HgEp8tFP zb(j3-ojG&*%$=Dlq+(zH`({Igl)Lr?5TCMm2OEbng{pkse8mANLOs|x;`uj{d1XsF zh)K7G={>FI2F#X`P`Azi@QqrZiEl1G@1MIte4GeblyW6x#lYvLD2X-*0JMBFLsRdP zHG9b#qdWl*anzxuhSWqTq+&;iOIac$D>`2sx0Hm|bCxY;Pn$Z9HST`Yg9PyvBGkl7 z?YCU~K7F=qSre}(mDjRrKm^-1Yv-wD+S`*JnZXtV1Tk8TnO(*ULgeRs^=rtKrM>3} zjjoHu0&+7SXU;h>qsanVO>22Px~JogDw6qaW<+?vEDd4<3pmEyH2N218~0~Dl~X&t z1&OD0bxUVbgynB+uiW5Kb{SALuWxDe+$x?b{FVQA#X_;^hSTa+L5%LJ@AvsYhz08N zCsRqI*EPgb;uUM<7p-CzwtOULsdA~iqc{04BQpT4Z|>4AoQb!k>E|zB5Oey+iZ&DH zUG=j`4Ecf>t>O?m2(i9jwpa!KKyy-9S;xEQ?LyV>m9J1nuiW&86KWPM)Bhq{T}`A0 z*XVg-=^5HlpAieAi0YUHfba497gDF~?(e7!KU;R|bKlI-|N+msiDytk3ehv_9=tAm-NF zeQ;Na5(VC?Z4IOaYU$LWVs0!o%NiwYI-pCB5hl5`b zA1=za5*_(#_G*gwTtqRG82o}5tzJzx*1N376!k)bHQg7MH z(^>H@;`>NnixZudBq~L3kge(+p{s2;OqF{~%^ZXoM{LCG%^ly@QMXdppu zz^TyB{0n>rxQTNdYiq_z47_x5XEuiSNX%MuNL9^AYHc%p0D}ZEjE*IR`zYBYivM9e zt6WwhU*vsz zypSRccu7PiVgWb9G_v-QBX~7jHcbKku9Hp99CZ=L0G0$3pL_0;MyHE75QA_~zx+NX z^kW0|vxca~5*r}KuIRXY4OFylGut&8A)25f1vO#niSvA;f6J?$op-8yMjD#tb#g8z zgiPP{x3}%Cy{h2!yL}Y)0b<0@YV_g3F(6OJani_~*13=1pe7%)djv^m*6AL^@Rr}{n)eaOzy>4{@VMhSQjg0s~^aOQOmhV6V$kR+WtG$ z*5)B^r=HoLVyn!fo&o@&fl5@yV$e_$p0PGb6RT|HRhl?i0BI*+0En?Ij)||l9ASn7 z3>w6PD2!P~6>;JCe3jDcXS-^q#N-xn5z<&W(gRq7fmNs9Y{rOGY-qnH{#5Rs){C*| zEl>ki?>2Z`e(xkb`q70{m|n;vYTEIMg)GMR4lM(BhZ(Cj+k?Umx>IQ2&8KwvlU#^YP&_G?5v zHxMA4(PUQB_R1nxvveYtAOLU!6$8GTI$Qdau6zN&vm+2+9{-D%&8yNMna#MxEX^Xx z$wG>7wxXMaoslaodVvi+Y$6bP!1U_yfz--tk6krhv7pOL5SJk0SEMW0BS7*=c8Q(~ z0ALI<5PG|xmU9D#_?op?M7&oi zocVjDu)XR3lhSdFEKd5EC&YgZn@^$W=emyV4kYjX^P8j_MEJ+Eq+}uYFSQq6m zIsp3G0LO8X-kL54tPiI!;6DOoqqLWuKEW0k(qerSi~1m!sIT=zFAx}P%BgUl@P_7g zFt%Q>$-TPA*7R@%Y4YaS00JQO7x(Si)xadV&3P!>7kWu%t?0-NG$$KQ4eW&gOt5_?0Pi@%TM%5njA-R za&${lb~G$Oki)8Dng%SpeG&mLB`p6gPRaN}}kc8YTP8^v$=lSYTUMYc^$-r;*LENw6FE zbGAfs3TKXufo@Ry7}slr<=6lMK&Cy4pr&OQ03rq;rf6r|>3)6RxUAGkdk_YQ%jPMn zh`+u1L0H9XA#w%XA?6(qdwP#jJ04K;j}CWT;>@gEp;qx5t>cjfpKb{qcGL{HWWY)< z0Du^`+%xgep{>ne!Nhwk;&*TCRa*?eO7!~Sfr&#c;?w!wS5Kg^KG1dY6*&cQfkFlMHlAc%Q@cwq#${A@s!*)o#V zxAY&lP&^HkAC}xJss~Mfwv$zjTw!vaspr#yz!;ANUJ0Eb2e0ST03If0~Y zBTYlI1i(}ptsXFih`5?+ezW~~Q@Kc@gFc8o6!e)LxuEv%m|@cUb?dpvQD9eS9a;I; zhCNjP`sUntSrBPo1u>1+X2m96Z@d#g`znahDpr9sVN~F&MGH~D#PkrvI4b_{{S0b= zyLTIV$2AKe&TX|!^bx6^JXNvf{*`m4G~iVrMyrMMrS_s#JQ!SApp?|4<~5JqVss=i z5s8%H7Xu-twe+8L)N~JW0JKd1i%j}xhhpJ}9SfwoHNOl1F;?oCc=<Nq161brpUl+VUq1C@)j+H=qe}vDWZrUCz)z`Kg4#K{-c%)EU_UewO#X8 zskun+=@OvDW&;R}b6iZE>&RA_$2HF&1{-}Zm-K@0>D@_{PqzQjKiF?2BCrGEe-2jk zCE9_f_feiCuWkn>CSfRIY*o<2@gciT^pwF~^NW`GdXbS&uX&mHYN-g57~O;TZgPhe z`e!5qLYLK$A;4)J0PqbbW#Y93kNDdKT4yJP5ixP1*)>cpq6!0XL9*vy`o}5yMh}>_ zG3ep&jdJx)FY!x|8*utuw4AOv{G%5)ar8e+0}r+vu>s;j86$1}8wK|^`Dalcq9{Hm7ayqO4fYv2(`K;MZR=9Pn2lB)ZX3LU!R-?CRiEs)?h9Cdq%p4Ope7)4< zor(G0E#yxoevo6FX){dB3vQ??nfUHIBg~db%!&;Ru+E++MVRu^)6icc`^&xJdddF^ zjS>Szx>!Y@1~fIEPo_X&#gb68otc+4drwXy_408-4QTN?;2(ZWA?-*n9|r=vfsxC~ z$@#V3IN=7mL5DlulOaVkv!7m^W)OM^NnOde`L=#N+l}xGCjSToAkIhOPS!HWgxo{b?dhdoJ3a7#GtKI) zswL#upFe3Wx9(42o@%%#U8$pqA`&z4{mvKNb z89nqSZ4i&449SWDNdMT0Pz=_|Bh(Va2j1q(wHa+o$ z6%11z=yzv0G@jY=zAW_3EU@)1EI&s2ho0;(0K}gUUT#}&+=2blOf>N|>LRI?f?>5o z+tXBvs>Jp`xehpkXGKik6}ETsX+pY)qttcTs;*qlTMzbcr<~yXJ?=ZTb1hk4b-iDw;C-9R^J_U8BH z{7S1`f&fTUP+z$V$qd>2kCeHNsnT@k*BS*eBynTe z^e_-&g~HFSNk2jDGdMvC+jrPhx4tx9ZmYLF6to729kBVIBvUcR?@b11HKS-1TVc4> zv!5F`1L>UgE=A;l1malP@>X#h@Xli6q?lGW05B-lAR-uRaLc_Ka`vMEAJTLbI|IKW znX^INC|yC-{eMjfu=S{rHPCzo!@^Hzt*Gq$kLUSJJI6rF5-V2<=~gMZh3A}CTrEg_ zw|s*PHd-klM)$QgpY<}K-~JA?T9~>&N`?Yr9OwHg?=&O*lIZ<%DZZl?^T9W`2Be5_*Uac8?XQ9k~I-UTqlRl-W z7ruUqen#^3Q@L~NAY`p7SD@2h`Wh7g4_I3@xVKg5x+@34-t3aahf71#bpk*j?nU2F zo)iEbi-H=Qg{Jz!TOuXvR>enUP))!rpR z=mi@U8PN2!SB}A9iPzKcUI$Ga<+)eI*wyP0U$I!hfqQntYZZFRvPD}eSOE(+4y6dA z72D8&@sR>o&<*+z#5mB}0Vu^dbm9{k8#NmYK_mL?tpfDV$ZDzAD92garMan5#C8x@wR+e?|3*s)P<$kG)wo&G z4|D|!&~}G70+&QVIy3eKIARE5Y@5X_k6Y(?*qeGKWrWa90{{m5$N|`sg82)Lof2A{ z3_$BOk4{lmi44**gKIAwONZ?RGYB@Wm<J4ejt?h1;Q4p@VCp@9qQPof($F#wirn&Eew9J;E}tdcPRm?^0DuWIU|hE`=0uEp!HcpG zsMs>;r#0U}Pmz4$=i53fbBc``dIE#q0yV%AWAK@47vx3TdIA#& z>;`7sGFR@**O|u+bc0?Lf5+VOOu|!wVOCj^%wECB%raU#c7|1JHkl`9^li|{*FWVk zsx1eA=rM&p=%H+y-9FxQ-*w^|*@L5406;u^-${!&%9C>W>cEPHog~Pp+Cc;!C5SFME$Y{?^X`DK7qL+aLLJzwKp7Qbmm7gko zCwtI|AH-a$0)XvD%+foboscoj83R^3nVkkn7TC)^TS_i50WebZz{CT0q*K;_x7_b) zHOsVUm=B1N3p>y^*uj3jTYb)a{?fl&F)kRxcjRka#=*z zvfL8`(VG&j1+YqGq-qW*O$6khmunLf1r>ln_uo^!x0* z%rSZ?f6+lyoqhoqCUEv>+|mT43rUcip53y(IbD094yT?_#6>njg!R@&^H zV73nBftU*!dhTRDNFEWpQ|dz3vf zPinnK)$_8*aU=-op_G!BbD}4{B%*$wuCgbcveAFSb>zC}LbLtpgo{Kur55e3>G#`V-};nEGSWIJt-R>{!+|LkynnF09&e z|A37iY!LM#0Y#G-H)mj%r@t6b>BS3Ei7?CeSuYai;V!p@FA6PZp%4J%?0-dL91s|lk#?T*%xZ0G|qH!1K+=hCtdvL$o+%@pa8 zy2=J9hInG$vCyM=kMe}vm|1xK0nmmx+)EE#K3=r%#9+ zhjtzSFpe7nBwe*l?>#a=>#1FFYbRB;i{U=n^QI=femfo@(yA11`TA9?Q+CfdKoM{I zD3feehyBWAJN(EDa}j=Imj6b8quU^ENW4QTNWtgNzESI{A5L#%woDEc1mesj{Ppy^ zKk@aF{@9g%ry{r0w&c9KeCe5qayp?8WhT^s8=P)hN*O}+jW+;uDNfps;JUr!+;7cb zjn+Wil-R<8T)F&?BBhz!XgWpa5p5;_vepsI*wkBB?Q z0rOxrQXoy9gSL|N05~&iwRcn-{d%O|SL&^u_`6zlfq4Vap8moBtVJ`zP#l*BKG);QB-O>92%vk0Ge-YUvnGFAQ=6 z%3e3_gLB5fmn=#N)%yB(Sv%-OPq2hmSN&7Y2g$7bt4nBft#0O)9N0?HVw$kY==$M7 z%O{Zfqdd2dO*9n*GksN5$8|hOclIPi+j|n4dOOHMTUWEe)cO}zsDRu%l||~0@-+VY zj&urbhPaGo^q>~p~Mys1t{n-LYCd*12Z*vTkkFle>@l85av_&8?zP7H{#2W2enV+)xY3 zMN5WB=hd16F?fA_xQ34jr*~>9C7|zt$w$v#Rar=k%ZG8W4X(H+FBv2)Pe<0f#P>*x z9U`uhdFEMFaetNX7s-wm9f-lsiUpIsO%_C}U>UG*D@LlmMNg|h3>NYfKc-p@Uu0Zs zrL}jDTFqd!Ow?5d)Q(ofi5Dc2-mcRih*67SkVB|>?x9Dw7$wHHpB+}~@+s;6uc``u zv?qbARj1I259z*cq^#-nBtU}D)3D(_>q?;bklpLE%h0R~1_1Waz_|w+y#3T=#oNqM zqz<4E8ISI)0F~`XSyL@N~V_;+(0yjtjD0Fc|McdI2;hR5TiFS9$Ns9p0<>Zt|tTN z39YX`H7s=aVsGH*gH&$@eNP1tTIaR7ew1H1drL82&oNZ)NYWR*2Lhv434ArLrx~;m z>D)ko5WLu_TCSUJuA)K21;`6S=sT1?RxkD`<*KvNNjuX?1Ay*St`8)DkeqD^{W~|8 z8(_3?KA^5p>myd_UTCXIdXKV(KNdWZzOGFNfQR$}F_bwaU3cX(tuOs7^`eVACVp+T zE&<2K=9lbfKm)48vEPFEm#YJGjxMvI^9J zf&t)v=08_@eaF+1z>Lp zHQ)x{@7c~Y8xRBnyMbjF7L;SuKI8_vL92TjS2t)&04Slg;gL&@n8JZj7@%9H-J;f- zaOSE>%^(67I6^w2{|mxz%;uP-9Mv)_>6IS4LIy%z(MS*g@EHcYd+DWFq<|#`fY|fd zI3I{H8G2o0pno+9Vm?8KXAInOyZ$ZAmcciO$u@(gQ#Wqjt2DbVy-}xV2590SyLDf- zeP-rmzLAVTJSg)Do9_ixu9|fdssywQ!d&|bE5h&Y4-fq{O=7bWL#yS>5_}Z66CEq$)6sPbH;+>WVKdrZUG$exv^VSCk_CZSl+0%cJ4T-C`**Z%o6n2j;huJ9y;V4>N;cw zb{^Azup7NN4T1;CJJL@#SS}@_WzPT*CfMRn_YbEWj%srpMY?Z}{viwvl<8FEM9*JQilF>*5)T z7-zMHZoVRelQR}9H}xewPzRRMq9be8>!_r4V`K+um0HVSi9uiqV_-nc^{dP$!F z*g%P1O3(*DL^fXF`eb>i?8#)0fo@Pp)k0=CMC-CQ0I&m!d+}v-U4y_9!+1b^GA6J6 zWOQ@(T&B~bE7NCftK$&Rp$*4P60Mh8VLb@UJ3JE$V zW|QR>J0tW(S?D!T18(s09&vdLFbD#H-N34g*U8$hQUN$xNy~r09_@2h7U6d{AjX%K zrZx}`KOg6+E6^kSsy%nhS&M#dkWd56CYNm`lD_eOZt#qR6H2{nV&|Hq{)2Cr=?vCU zipB)@c-J1AbA;%6bThNshjlOjt$V)cWjz{;4>{AsbrBEal3CLvnuukUvlSHNI9EF#dGcbsl0U)kfAi0l;4~O^g zk8fkdV$~NJ=Ue)S@+7Xa()3oaa@=w@mJls!+6w$`r)$vxCJzAEc+%yB_p`q$sbxFA z?dCA`ETmoZfR-=OAoM^TEvH%PkqXn1Q-T0+F6X8@y1v~k`F8+_Hq1Y&HEl;xo)XE7 znnVMRk~_+$ra%4miJdNT#^#XOOaso6>q-E2p|Yi(JDJoUu$i{2Mw6(RCAmfr)9-=w zINbvPyp*9dEN-g(qvlOnMCu|80B&90BU|J6pVFjt5%v!$p_Gsi{j@!;NRsyct+%0~ zhFh1HV4cWbMOF~HrYdbkiHg}n!`ISFLj&&VhTX(ic7vlsLtlNbruKd{73}6i>V6cd zR7ynhTw>IxaubHN4~z!MJUcNc%Hwz71gx~D9w6s7=hAvt-7Tef_PaA2Za07m5pH!# zx;wUG?5N&Is$G|&cqDv=sL?Vq>h6s3s^!d`elUF$P61*}Ft%EbfthQTcj_v@`mJA@ z6+M<981OTpD-sBe11 zoFzyDf^7DtH~-G`VQ3tH5c)vW(ez;ud)d&6H~pPPf&h?5N8U?YR{DV>gyf|DEJTf- zveUQj$%#oDMt*177PBXT0Ldxmo~X4lkm+(3>|ujICi;}7-)u$_xU67Lvz$fC4D3bW z6B`~FD0AKQ?i(bVdVduIW64}DiyrBx?eC?IoJ|ot=H8OYJk zEI&*T)KQo|0Bya#)6N7bMXsVGw%3*%_1iKX-fRT*f#Cw*%vIa(hz zEJ)gy6EqnFfK$iBhZIa*!aqx64E!Q--1d{ce+`vA`kyqetI^X$5MycumclJ5$$-*7 zx9gBB+ZBWK7@R=qrvnBIpw+WKs22b-r)?5m$fQ`J}LE ze57Dyd~x(WhCXoJFsje4(r<1+iaMtEEP2hdzOou)0`VnlI~-;Z++(R;d8I+>M;Z)h zPr)AZ6x0$2h-F-Zk1?Ww+yhdo&>Nj(t~n*-dICMV8(7BMJ zJmHN=57%Xo>(`F$A+3ZP&q5t{7*@Ni41$i50jf-9f?jZHad=&QrT?k$#!?`9^Ve(A zGzjs!=C(KU)4-!Vevijt4P}ZsC)2IL+M+&Lwu~8yNSZ-!td2*(FhU4ZC9?+IEK1gFnTvF|k6Tuh_l@h~0lm4w7Mpf< zzSeiS6o$@bZlD_!TWhE^A#KeJ+C#kpfEnSnW-HYkC}o3X%9@QuT#6w|Utkdc+7s*x z*)>@Kx}8fVZBO5$iXKW(C>lZ%gk`W4fn}3A6H-csV7+<@AQpD9TS1Q{D1sMvj~4$< zdZwP{FaX3!4}Irl;)PAZq`^AGzu0yb6tS+=Se2DmL}rt5T3^PDmdnrwyn9Ik$Plo0 z&6bmUrpCp|vRT(OfxrODNP6_Qq*6DIb<17>lAA#)buc!AIL68#0Gu<&@gdhLt&@V# zC%?cRGQ$-T#z6Yrls<66Kzcg2I=w8tbcWytzNSXBK!PH({{Eh_h;waXO@9Ib12B(3 zFC~K=AX`MfIcen+2gky}Dg)7&lwzwaXQWj){sa)_5ONA29}%@JY}^#+*dKsg%3zy0 zmokS3?UX$^iU!~tDl{NTM}m%ptlRsMtV7M77*Kil8moGb@-$mF$<&#YU{mrdIVKrg zT6NAVZBfsQAbL#fyU-8J{os&TK3_=NI<)TSYCn3rG1f}PCD|`;+|i4@2{qsbhdya4 z_v?fdfXe`k*If3ee>A7A8C1XiN>vWrDF2BBIR?!jH^7_K_0lko@6|~KEKTav&Rwa? zWHG}v1CSmWAa65Y6OppX4R5P=%t z@iF+`-dd(WKoAJ*296*6nM|`zJdwS+L4Rj{BYn;hKZD$WXFVI3QH$9tKyyBr6*hm? zq~b~ggKX0}G4eNA_c`oIpc|C*i|NvJ9QGLG28{pORWq>-<|Bpi75N(EIB4ia4{Fg;0C*am4a`|xa?FX66glS z&E6u-#sR&hae>XBGBb-#WjuK6_Y&k-G=tEKTm?9?VUFp>ED&Bptw#X!0frO&*3GXk z=Sv}KEfqF5gbEE+c~RCTzf&2HRuWjEkyonTSFvsRXNl!AY>(Qbhz4$w!apLFAY~pb zq&ctzWIsLswbOpN{@|#?4R!;26y7Y;i6dDF)PkBG&bf8K*=KUW*$MQGEj7Sha6d~52QEu|w zFMiYz>FQ2Je3FQjt5daqN&vaiul&)~z@>@=TH~=jH&y5L(oh}tY!LONPC3xqZXw?E zTM{Vz>Qd9#)`1=nShl3kt*YOP-#3;$IFm*I+{ArrhXxk!kJc0ifEo?T*o%9;9>+?6 z!+&=&EMzwT=zn&_l%aKu)V2edNp%p9E6v==2n@o&@yL-g zbl3$VWq|kUr>6Dt;4$!c>Jk7P z^JJ^t^mwogvyMXn@Q1Zl3jbihH;eNn3@BmMGS4&X_p)FN{f1PL`Y?OwLB|Tfl6+>D z|5R2Jz>)$>Uz3UBQ9BQu*$Vn5i=3dFy#NG&Dn>0w3Vt}v>;(jfQ|P5TMH57L{MJ1= z0@&BMpcJv*I>SIbeIaX6Al$^u?6u3g*6hvD3;hGVeDjja6uNX^`_MD3h!y1c1i`4k zyPU`&T)uz!X0NQ49MMW38iUz0DCdY((i5G5Gsq2C^(p%yVcP*DdVag;dr(+~VNQDWdQysGrU-cIz8reKori_hLuiT|pntMm`OC6Gap zL=Ao1rwI?7E6|eQ_TaH*smS#hdUZE|-ld)OJGjeS=LJEa-tl+!`Xb9qJ&9|{xw2Cc z$zB1H#dp}^GBVVfpyEW#wkMa)qL((44yT`rKb;re!N7XSVwN&H#h8 zf&EXZ+d>fx{m$=^QwFuBggy`oJB|dqgjMi{-@u4Wy*BP5_V#rRQU3*{S?>`3lm4^+UUMG!F2ev_&cJ zs|8;u3HfcGB`F4#w<6`Pt}}dHQ|N02w*6IIP5|^N*>|ie;;XJ>y^pr0=>F!|y(~eb9Glb&R@|n31{DBy9hv;e$Kghl;cNXEz1!+u)0N@6?K`DPM zCZWa5w4EF=hf~mT;v8rbv@55Pe1R)fy4E zYxt*W^uQpn^mJH+eHX{xE~#Y@(7A*GAP)YvrBAmW<@xMJX=w&}4NEf_hjrxeT#Rj`e@oK{iyop3uvec>$|bEwd==?1vfi|w zP$LiqSmp*cH5#r~+>8c56sQ6G9r2dI)z7_DS;_#z1sDtfj~BJe&bb~bdaY0phtdbc zD4}?Nv-hiO{t5*#2v6s`9aj0@CJ7%u>Pcw`&(T6G0Matgb-&Em-}DXe3_w?l7;Nwk zv1FSLnr;g#0P#TjhMvHV^GG>9B+ZCO=^NS#0FYL&{l5&h6{LOLUG|_o4}d*Z>+}`D z;jv8JMzVGNj26Vm4aMnmg+BN<*n+0HlIu4xja-k^)qxx622CA$Mq0E6B_U_WW0R!x z%>tmF?8*Iv-Kk~Gs6+ne!kW>`*}g06>N=+88>wj>!CzVrV^UA3=)2h^y_yvJl@SO# z6)lg%xi=`1$H1qQ`z}so)>0rEO%if=cPg5FP4k%*DS`ut(Q5aw+ujT9uLe#gASg?N z+)gEUoq`FU#hUv3Sq|fv2KN;Hmc^cxMq%YH7c&jG!-Jwxh1I}HOsoVDLM9}}M) zI9Hmsj)EWt;rf3v`ab-$whz^`UvR@f$6GSrS!IGR&xz_PZM`^@Nfsme@M6i65#1`5!LY!CfdxDS zkdnNp6om`0fTvnbq}+7`KreEV5OXEkR@C}3b4&oV$^fvlWZ%RvKKoRo z)ig85GBFQ0)scPnWbJg)PVyy#+L_U^6lt3@)$MfuF#7^iLJ;L^S_XbicQtblQU{0f z3^3y(*omc_v>}%kB__@nGq+J%UbMHfB-Y^?#BGTs3>5nvA1?Y`S>^3Z!)4{64GqNc zL zh#`#zqlYSH3ll&2uQZ9kdBzXb>NG|Kv15vQ<5y1hJdYufRd~-IHrVTEC81 zFm0N;?!fPIH4tvJW;-Zf>7NOo84aVZ|09ZE`q0>dMp&K$A7z%lDLzv*PR~s zDwZhT4te9-XY?oDK_P>kq-GO7WD?~$U%ipJz>OG_ng+{(BX z9+TWhQ6tsp!>@MG>^Z<9ugl9tEnNV)fo{<9GH>NGPaT6K$PGB#*4Ut^6~_RU7%wu` ztlLXQ3#av$Dyu} zlHV8;+~0VYp1$zZ4RnJpzF$?kq~6XhL2kfn&tI<7JR#F)r4OZj&!lD6fvUQ^@( z!r0}^qU9O=NhXZ1n#6mr+!yA?4xBW`(f?xX~uBuNQ?+S`-*4vd(ol1Gs_ zU;8T##C7OFoRb%VZ2r@PHj{OaGgtu7dhF=lULI_RzL(6w!bQ>gmv%)J9Z{m~B*n`9 zYsaNYXoCZ>Shup@jgseJc^QKo;>uP+!F%JGjqdw)ND(?bH>K9K2!kRzH_fM#$HU+P zfm@zp5id=5$Hy(7=<6|CMr+_1clDzDT}jm)rzpfw1|Hs-Sw5q2EK>r}m;_B~94e<8 zj_oiAfcPmJEcWQt-luxX>4r0K06>h1Fj&I$dVN$gX$lT8->3Qe%Q?1Y>y9^yC5QM$ zX5BIhJRWRRiOr@Nz_1{tbR?la=o_ri|02(B`Bj<1z)aWu*AE!rCO$eRabUaQLxz~z zF)LH+9yb-n7I{&4)A|K^`TPAJmn%~+ya`ncSOFU?_D)fO`54rH6WJdirhZ%;@~Bj z`ZX(~Xr#P4jaTz@Z5yk+Khx_ZQgpiP1u+J=w`eOxh;`xXS8|x@2G6;PkOzpXNqI`T z_q{W+Rjs{wWE)J3=f6yxxMPFB#8)h7Adm7A>59Sqr9JCXC6Q&ziO0Y34qBR6Wd^_5 zJj`+-@hi=f{$wwSCJI~QFE#)M(Ff8Jvr1Zf#VX)RKZs#i zAg+6Ef^Yw%VLH+FO)Qn9?F7UiT+lf*9E8cQo(`=Py+PWx4wRwk^_^!RE?zfN6~6Cm z-idF`PzEt#*D)Rouo$I8lKwec0`zPk!gAnZ>!$k>r@Ny3anzG%Cclt(VVX=0r0-kA zN4S-~>7S8z-^A)p4gum#g|t-A^0M-^l=xyc z{^1|aK+Jepw((_^e(>kJI5mla0H%P}u|b2E zq3;bnW==Q33IL*YyHu?bzR@h5AeBrc6*w~kDm|WJ&&rzY)d?28s!NH{IsizL~SsxBKbmg1 zgJpM1+G3?j0w`6tR4ORVLR%%+*h8(NF zoaO3soD7zkq{hbs>>6SCr6?&i{Wyj}JhmzHOdh@9ozkgS_L2h8tF;XHO$da3+N_Oz zu9sJ!Gs;(HFQN2D{68?K<_#gmk_EV(g?j;UNP&x?J6rt~iYZ0<8Y|@(wB|v~$ANLD zD<22Wx~`aiNkUgUDYP)X++tDesk+m!xw^|$Q3qi9sq5l>rb%B4xn>s^jOfN1Ycb{O)i`2BRhe> zZs6r7W#zJ|-WcKr0wi~}HZOkMWRrfC`)^Vwe!{W67SO1*DdB#sTrloX%Dg z%#L}h$-T0ZWIoUjAQ(Uexnd{jSH*qY!-Vq3{0GSZ@E%{ctydFAd9s}|4%g|d3F7~C zYum$7AITi;jDbN~l+M(n(UFGI7qr~D7Z79S$^56WOE~)|q&y)iQ3*`}cT|D)^2s{oBksa2~MolD@$fJCEF; zooA41cPfMM3K>jQX+w+}16|D+&VwHH{Isbww2qz_gh6A27Xunr*c@1-{Gys<^=pNJ z7~40VJa@h7lLuXgnnla-C~n#FbF)AdI_HS+S7x-o&t=-{*&mT}N80)v02v zVO5RTe?SXrYP#3<-;$=1&?<=0>h8*g!kMsr-^4QRYqzUu5yp-gCqpw9RcB5}}Pthylp)XkR+3c}#xL>ylVh|SDm_D2d z{a)z~jb$NSq@!mA_D*>9`Nx)72grI--ezrCokX`#G&*JRgWq$jh!S5z=SRUNGn)TG+kViWu`d3Oqmx>_f!C|eG2e%>XY-#9v8V6zwE?uIH z-r1|Ss=@iGnFJ72(vt568mYX%o@<$QxAMsJp-V*xLN7AA{XOxbjD4DS27vfR>@2(J z@tbc$F(3wEuHmuX%a8TRJU{V)cN|N?bIHNG0~;64GOC%n$$h~O&dxFcEO(a7&&gh>#hjmS=MVkz-WC}!_4*9h zfmAT*Vy~iqM#8J`U}0&*M(H5Bnq$yv0?U=p!ilEadMLbejhtfWyJi^Jiee6@!n?#X zB&n@6IwHlbZK~(LCnuFBxb>||2{iyPf-QsdBpNSkN&Q4R5Ewwb-IsxPB67)%#-@;% zZGdKHtl?$Qr*D!-$8z)rLV)o7X_-%KK#$B@q-B_ZtfUG6j;ttYvsK}I4->$O1|dGL zUUgTkBfi$_R9(7&GX|WyLelGPflzi0`Q;rY?$c$q`PZ3{7=zG@Z)}K<0Wn#U$>K;m z+H~TbZLjdE_Len7c}hR%?eA!H$;p@)uW4Wx4tQblMX~st_RM_S&Nf#nXbu*(l%4p_ zMxTM!K(SENpih3~m9Of~Qp&O>&H6nQ5GR8$(5Xcte1pU1s2BMpPUV$zc%6Yj48mc* zXYdZ*a8gYK^3|^)leR91deWj?A!{*_=p+8UpFu^z{5cZ)Yjh&jhAffQyZ*KZnd)JB zQ+ya?sbF(&qAWu9whWUz>(H}_*pTz{94Us`GOsZyos1+}n*cC7G?}-EqdXtOr;sXth%L)4SKzXafvnlr=f1jL8+5MFW5Avd+{KdOU8_|cBauc8@0T8hm7)IkkwZih}kP-U(D0yw7 zKCqNf18#8d=d)y{(HB$)0=t2K{1qcBFnt0OK$c*p$C>PBDKo1#G9?JjPqI!&lo?yd zSNGgubsC$NY|I%DG>;bu$}(+FtQY0n?>4lgWIw2$6=s~#bJ*kF0Kj%2X0P>}uci5DKsFL>cAD?*nBrBi3NW!$Cx5$INvn8>+E=VSB1j^S>&{m}t^V-3 zvV_z5i~(R{MNGeNCeBhbrIeBm^B@M{+m4%neP-MY|LsfjOc&~&E#JaNjh}bAaAeJ+(ZDeCx9aqKl1+<=zG?bq{ zXdSh~(vcTb(jHtsw^WL*NmEekdx?(P23upX1M;C^O(N$GWZ zVbl$DgQ}jdE^AV~6b=xC@XWF!q_B}|HYv%i8ChFN&ZvuEsSL_TU39fXF7HE(>s`z& znc+|p1lIOf%w;>&#q33;Lbbax0K`>(>aBts5>L6&#wiO;{HG`ed)?j~#>zbVd2Tbt zLYW|*Mc-%{WhP%EGt+0hM_yl5U5{!~@Q-_7*N`H&&_CcGY&wt__jaykB6%C8M_rAD zD3Z3QZiFMsaOygcMNDp!Pg;b|S_w4(_GRyb(t4y-=&Th8>;`_@FjiLj`pi9mm=;_p zM305(n?dgkn5C>Es6$g3HFZpuAOPUC49K2*y1!pB0K_xzBo5`%F)cqmYz7a6SP=Ij zHB6vysH6maV2`W{I3}wicHU(9^w(1Wibn(esR8ts@9`Ah;Ce|^JRa;bPH*V>5r|8Y zrV*352f34HNyit`Xth596ha>?(V!PB5PrV;2PLtCnMSD++|QpF#PI?^Tm;TzIab%$ zdS&)hllTLG;&c^0d%UWIarRipJnn_Z@=4qOluuzDFz>4nnF(~|#{jfG?wiYDXdMpt zpjBTK3MTk63PD*zyVkmXqz6Mr51tE{)2)^`x$ z5URNV!0Qnj-m9kAInuP7OoO@%ggCdP(|TYD;q^&u)>9vKkRbg~5uoeD5|jr}82y2z zC4=4d^NGxDLSQKnm<7STrmvq>1_qrw-9Ug&C$DQ4)Hm&!#RLk#MUFCwg8bI zcF3hnDs8Edz;OTo5ErTUtCxw(9G`Ex1JVLSy*Ir!AJ&gFq0ViWnEGK5t`09pHpn2k zB73CQJEoY4PW8l_oq9C(dMBvOPVphN|C?)uC+?vOS%94E@WT+4?|+q;W%fX{s)th4 zRSNoONd-krv~Iy&wd%9Lk^%t4cUzwJf*6th!LTWTCB;b<*$W^l=)yUlBwo47WC;Wi zFN5%#rG=-M>}<<>PnE1Wl?4MC^te?b1;Vt%8`)Cke#iV76iU5;gWPqeSQmLjd77tB zCaVi4M=}V2<9SNj=Wl{%%U{qP=R8c#MPtBVyGtJwAQ z!VaY+NN>0Vh)?k}-d`eI-#!!NS$VmpX+CV6-_itv`Im3N{&dFs87wwN zp@(4`V#4_7$)Lppr6D>wlXpQP+Us4A@gaj|g`31^4ZLHA$p6|~Q{qBV|1~23zp+vS zCZ|7sSwxi~-_>?qX2%f)wXoE%tc5e&%OY*a@eP1jO3p!-_>kEl#*Ewv*4U>QO{F-- zM*p+797bPCDMP7#x`HtPFpt71r*iA7_>1@=f8hl+#C&WsX%YU|0mBg8@=}j@S&-_P$LT2F_*_+wLY0aF) zWO{H03=sQF-0V;b5ap@o$t_vZ?{I)VIudWosPMu{HDPTq{j?Vjg8S~2)scQp6~KE4 z0ZBFg*6aQCW?EISm8tiR?8z~I`L;8;9y4W5F6sY{E=Ezyh3SJHl05z_oDT;Nm@!)B zd#48gAOHZmW~*QWx_=rawe7eu08{9Lfdll5FE)&O+1viUjKyXz009uXwyq6mdUT-K z3u_&{fOt`>NJWgq*MY7r=1*h8t&^z$KQiqJb?t``Ba>=oCDYse$%ZDUY7` z-k%nY3Ykh~$pWx}q7BA~-tq8{K|wcM%doIFu*V>4JT{>F`{&JGB!HJC;6vO)+q>n= zYJ+VLJ)rfqRdahmjKE&t{qF-uoT)^Jo;ZMH-|&YOVxv5buT+wgZYSaZ#DKJSotRvB zMx2ZTj=_FS0I*bH`$!)jRBOAloLppgGW2O897vyqG$0fZT2euge4Z%V+c#2y&h$_M z-Jt%xGRn1PC*m*&0NfkIy>!j6N_Wr7?I+H{ZlDIh zuAFnG{Cr5@RPP1@CzZDYa~z9HSG%+tV`wSz5}A z9v;7VE+y&I(;?)xVCM*}GHkwGKozgQbeUoH!0f0q$wYj!&Ue0-=ZDjil_<~k$4yOQ zjsqV0A=#1Tea*_o{o#%e^`nZTsWp*X9@oRyc|vzp8$3$BP4e$l9RPs;o8!`YHF1>Z zP?q(9-TF2SghMYtBO+szTO$wsSE#uR9L_3GWosNo3BWdoY{5qQFvlBNN;;8~f#_*) z)1lt91zJ*FK$|e`2dS)WtS_^O0RmvhiSuFnCdv%ebI1VVXnZy`ft*^x0>P3wYY$z~ zRF*1^?=T3xNI>kw%`)pbu04=Mj9?f-9~J=pv@_nI)pbk(@K{z_y1_(Z+laBMD7rU) zupGSJ{=q^05H-uIs12J`vsY0&{uto(!f<5(U}MPQXar-zF=bw>^~M`lRyt8f0s+DW zfef1UMMqN*l06Q+zWpWa72!m47n?zmyjEqkI6}Up-zYR7x&8EEv44B^V`bS7*QYRF za|8m6%?)+~2cJ$AIHF3R8VmAWBay2 zQW=e$G63_S!t{YnvNPhKI}2fMt>tn`;6x(;QG)8h2Sxl-vSlcAw!CUe>Ag<x@006BodU-vRTVK80*b$;)jOm2Uh*8?ZO+R%t4x5U^$dK{TdM4|;B`^%HGJ*O&c2lJUW@1h6Q<0Ls;*)e{rT z+Rn)u5(p6P0AcePn|f5jW8>wG0~1o&X>;gjGtAtC7FoebEjLGx_e z0TU#90SJJRgG<{I+wyM{)9xf7e@+c}O%g~%3Nky6> z1_*3L>`i0?es2+F_9EFLt`q<}l-MYXd~RH3VD|8aYz#g0+kV1wxG2xf>vTiY)6!M( zcREdKntpxSD1s$4{6CTQxtDaMX2@t`_5u(96rOCrZyml#*tR~kdYIaEtu5aB8E2UK zK#S}vGYJ6k@-?*d)3&b(CyUBdZ;pq7XiV-E+;wGS!sY^yH6B~c8Sc(Zn7zW(x{TA$ z@-Mf?6?`m>?8$k`0#{~WYkN7`d4T%xQDM_>q#H00Y(CDN#_BD~bEQpslTB$p00FRl ze;){ODf!(wyrBvreo24tkPG8IJgKy{Pn`;O7tru4@L z_2pA!GZ(oVK<_dkC-3)(oZyh|(i5NVvCP|kRl11DS|ll& z7R>B=jzn(nF{qb0udGd-rvUJ+veXmCgx+wHnAy9~_dT;WDLH@ucvAAFJ)UXf+M8x2 z0duSqQqCf5d`PF^r4tVN4Fl-LFIa*Fc9Cdn92gV+j*9^GSfV^TgV#!>ngXa!k^`#% zO>Yuzd+?s$N|`B!=By|H2*ecdeCuGFCdR4}o;R^&TYCO)xZ5k{! zCj&-#2Fy4sC%&eaG7yb9@1c+Kc>o*00FRIaaJV+u-9s7VUs;M9)5rwwGw3(Q!7gxZ`wbho`|WxuVlzAeh=%qgI$~S$jnaRb zJxSKCTY#*`o7;wY>+{B@PNayxq}T*DO^L;a9L$g+VG#oa0PO^@!_u`Sdrc8b0n8*~ zu*m|DCuE{pUzKxIQviQklO|bWzIi^u?1`Mw7IhyQ9E-X(rT<1&xFQleO@8v>9RFh} ztSff|7=}!fmwp{9m)^{JNP+=eRrV`eK(*2sr?$;;0ti6=KgQU4>)5TOsc0$DjZ_D~ z0dW)=f3J2i-03ON!h{nt0|C0a%IWQ*=Xk;i86W`8G|Fa&;p^U=rW&LjmbJ#yq4}wZ zXF0M)Afop43|DrD*^DZr%9VE3@L?H=((2jrP5KA#K+}Uj=Y6*4&r);0X`_IDg8SefG>DroyG8 z;^q{Ng?p19ut701MkK5TzHVh(*K&5w^_$eoUfPo{L62aKZr8Ly6=!ElxEFu`7(OP2 z#a5JO!iBl!Sct~f6Yso_qd%rA>hvgebux0ebW*dHbvJs7>61wf@dXPtIX{9QSy)Y)5-1kXMC6N^9v@sXcwg?zl)ehe0I?&pM++??VZ zyZ^B+7j0AOeC30L>so*?j4qu(Hb>}4$K@Ye?l*3q- zIM+pQQXjZ4fgkNx|Ln5O*0v*K67GdBS;(-ti47=t=Y^D(8C@GvmtZUFjJ>v`{<>Pk z9Jpi)FF<1P#+KP^gJ%7bC}HsegkI$3BKz`WHG7dhgokZ)sM}El`iQ>sSWYNI*XABS z$`@&vanIcVdY9k{!4(o-PnKXeFe>7(bUrh|F%Y0*J9bzqh!6SVRBm%hAuSvr04^*-{BxdaPBM z$#*8rJs)g}S&pL#xj1?RTQHp*cM7Q3y(C2j>40W@0|)@*2=~md>lXXJ$HqO;JG||lie_CXLCz)+5ThsbvZnJR zC5*>ck5-Bz*CWTR)q*96i+>;c>ii$O56f(z@$dV!&>yZ8zTl6tyo+a#r00GeI zuJhF4@3v`7C!{=P>k7p6(-u>$*ACv`?b$nYd5 zA1goW5a3cUl^FPuqZ*Rs(vPyM4WnoK^CA2_p-9%d>MJ1UYb&IQH-d0Ow!i6eso;U$DOT> z&8&)qc#2GyIFZ_+RP~EdQUH!ljuBNi`hX=wAie@*XR)OwfD0u6z|KOeh^3#lsl-k( zPRu$3XApXER^H=7_7-X-Gn=!g1^^KEui3`SEPYmZl_YjjM^PdyOdpm~`82z&sb-Yt zScPAt&p62zAO<|o)k`HP>~C5hyHEy4XBn;|Nnj2+P6jF~=MngQ`j#74<_-&2vAfT( z#u>#joHNr8)Bwf^(_!$ntFA3=Za|SF zNo86izCJY!t?hQ zsPlw*Zh^G_KF%H7E1WNRbf4*b^CjQeTw%w3)sx1byAQsDTgx0xI|9Qbz zrcr{Gs}zHIo{h8X)6UFRu6t(HG#MTBJvAT(E9I+?@PQByn8t>!mX@opGU!A^Pzo0f z@-oKsRW|t-4Gci*DYGW3vTE6=Dur$@4DAvTtXj90sGa-E00^ZI05r%dJ-^AOPV&~s za#WSM1^{9N0K}bRVtt{{vW4%tGd=XLy*o|bA(1vo9D_n0)Z&ZsL_RJqiFL8_p&))a zW{&b_g#NZYKQN;Px_+04tPu@t7c~i8K`^iBw)kA-a|B7TY`oRRivq`<_sR1+w z%^q2=@1*IL`lby1nl%Q17JNhp#_iMJgN%7~_Ogd3GNEjRDz+Ak2;4J`ZgzO*Gh>vRL%ppQRD zB{O72b;S}u$X~qKoagKN>2KTs?~8x*bF5tCbjBK}0XMko(;`@_>pN3O zP=%XqH>hQ%9A*WI7yuB$QM@%al&l<*F1|eD?>7uU>t~lQvadSsw(f;lfpY7xmKs*| z>1=(7582q!wcH4sMCV;5eCE`3*wL-KPX}pBt8E8+24Oa44xls zxF42b@Nspa>Wf2DB%$`o6|_JxkO)DHs|RlNov0E_p=%9gU~q`{(nz(egCd#u+g1yt zG<0%D%NSg4q6R=t57y^d?w>0d0OA?bd)fm$`}u6sL*e%z1|cK?HV`11KFDeMJqaPG z1O2BKO~hejENcqNcDYmW!gLv5wMhfS4{pCEpsQB0=M?RZ1W7N{(@%gup%2$fgpZt> z&!g(^gHP&957dc<0W2jZ9y_qRti*H*1~JAlo4x^%tC@>;Y%*IX8YKV#au#q{lDY^U z_FOItn7sgmUZg31^h;XPQ9!_K!Lu-Mezk-w>E`53VJ;p^_85r9f}VV9FY7FSXQG^b zn(VP3r#U;;2F$Io(5x2VJj@FzdCJ}KB4t-hYYMYeLzen0wbn>vp}5@ z`)+wRqiz^L|Fq4!?&_4%03ASM8mR+t za^bhFcFL&X06<)rK9Ep+m4UXhM#mX1-q7*~OWgYMnNf-uv)}(dUm^Wln*xZl3xM-N z%qUO#;i+Zh(DDZWYwM1OYBX45OQK|#;-)2{)s|LuQ+P>!U!U0})Y;Cm zafKwI4z?aLDjB4_8zT>}E+QI7NAWi0&ojt6Q#4_Fb1) zVTH)jtD#UwTQ8Re&cj^rL{>T^oz!f86VsXfQ|IMi9TH| zEn))!_cHlb4jHwyRQ`{!tAMkzYWkP%?rxCoW%u4?7X%~~1Zfm02?dl^fnB;&1nHKN zZlp_)1_22P=@dahk@)6+&NI)M^W4k(@p~V4;hq0Eb7tnu%xMV%TLoJM{0vC5Yq^w) zX#;8jF%~p5aZK2s2ScRFD1CV@O$^Ih@csl9J>JT>UG_)a0YH3{h|@TwQ*euBR_^?m zUdCC&3IJdQy@iQ4*Lz#qwP`4Z=MXIb*mTokxPCA#byxk&jw4ci_d65?mH_&|0ig{e z}Npd-DQ=%hXg=@0FaxGT9I}j~!QXc^N z<4P%NP_zs&MoIvH7}xu7>Bq-^6WT&gJGMjgQJ3OwRtk%LzC(6BJ>pZgLt=VC05)r> zwCZ#2y}{rdkmlcLx!v<#GJ+faHxa-gj$-~>yt7e;M?*ZGD7oYhU!+j{r}!A(z{RX^dWbs*n0U!2&w?9>lEK2n0cj#ZnC5!*@Nr=& zLpSh0hu>98i$v>EW5N=y=@)FWP09PRPlxsK^xwyk;Zh+wB3Gp#z{K*7gd%kkNl9q? zo;5T0j*Ym0CI3|qwr>W27;pJ;>E$8Fg)^jBBryEpce5kqHk%}7C*wSJyR*8(LyzN4?3xZEVE1n5RG04(8} z2`0XIEUVP0o}&dZ2)FFq8L0_l!m@u~UFL_n)aFEZl?Xu$7I@jX+nim}Y3jWUxoO#9 zHj%w{=9szn&_B7?oh3hE-Myu4#tYQ78PLbE&!tb)kxzoWfcrHDNt@AT%m5H0kKv2Q z+8*;9GC>~&G249VlFi-WXwTfeq=t3L?~*C-N__t0RorF!YRdw_5xWD~1WhQpr6;{x zz%6~{%(D`p7o7m;PCS8c#L~|{8>SAVw;N!sc<3t&K|GQui_u3(o~yV~Sz0OYRqxO! zTQZ125`{}ZPx%|2?79}gacZqy(MKWnk4`@0OOt6N*O1rTwuyH zov>NC0O`nmk!;DfdjY&ihVgXE8ovko%eTn{xa2i;a=Q1CeAVNMtyTD#Q+dqFK2H2M zpwcm?clCBgNvvHqh|##OdgKZ)VbC*uD0Lt)yxqx0F&z;(v!1fTpT@M3QA795D#S0_ ziyYepDF<@?o@}HK{bWF*atT~*w(XS2_FNF#kHimn#wM001GlUAzhQnl=|FYkIy#*g zvmz7Ams3y4hkOC*BQhoqE7+dd@LYSs(z#*#FWoRJ@y1w|D#CW zAq6NQsC&UY2hoH8THk~|L}!#P)2Hzr63A(19jGM83pkvtSg=wU0ODeme6G{!Hg%<) zZ$ZW_okrp<>#}9bD&9l-zXp`W(c+h@y?iy(y4ovNIlmO2p1Jve0L2ABPP4UJJ0V!z z_nnpBX5H8LJ6vq1<|~4xonc6gsN@0p=|&||B^n8tr~EHm^}*ejbIUzF+R12;deoUdh+$M+8~{|$fY+b@E7{Q*C<9PBMuSYe;6h1zSOWqO zqn~1#0{4BJKI)5RV0ioTavfZ!OoO@t1$i$hC?1(GBofLLt~JRV z+@YJL(=1e<8HlJqtoEDJ4y=%(f#4UX4f(IqN&VgVoIdZ5y!_nfRO2kv1zZA`n9=7&DI|1V9+a zG3dt)Wn|aW7AQdgAP6wva)(292Z4eZ0OBg2f9y7Re9M(~gQ<;*xB&gEMBi}wGLsZw zJ2#x2l~5Yj_Vc5+a)_;E`c8P%7ODW$F2Mt8O_yuKrE-HH6xa()oq3jA8`gc<3-p3I zl{hNXaU;nBRBI*rynvjy?gjfLt_8$Mgjf)HawW8t3xfnP2)njUsziSBZl>@;>v{!G z;(SV`zy^tzc;nakSsCPsiIr^qpi~f})Y7|aDMCDUed^pnJJ^A+L0(OGw8Ff|O8qiW zi7{a-IxUdNg!VZv3TVP%)6zwjdZHIRg61?(Vq2$&ovAp6-UiR5cnq11rlu3K>~G{# zqrZ=TCaqIvqjxAT=ZVPktxE5mAy;H*z->E&?VLv`1irzD%(gp?tZZF z+c~_J+0n(nWMT!CVu$4Q0}_)N#_w?-w@Nu^uU&mylE6>dX^`h^&%=7lsM^m}$>rNd z$&60R6~xfg@QyhGAcQXu%5S0f=H%v#Y=cX< z{c@Gy?$q8PL`p*Rp+^Bw{d@GWB;<+W^vSJvi*&RDaRCQl_VW3n+um=f?B&*uiL!zE zZ9;&+bEi&C{e_NZ3t)dk&?*{O=}6rR@3DjURq~VmM^_Rlz6YnuBEz}vUO3vt&ZW)0 z3xQS@M^uC*j!663mIjDG48!7vVyTdKId&V{Ncs+EQ0)M~if>ut2$YV2)R$we?JQa; zC>?}-Qf%^raN_Mk;YC&qu^l4O_}Y+tgD_9}h5iZy|D};^OjuCo1;M3)+K6ywpfml0 zN&RA@hx$h=spKzKPflp)ZBt$#3PTTKP|d(l*@Lu#00QB}Cei+*u~kE_UV{G)j#1$R z+1NNuRdN>e$|N-TSt9fL6rDPcJXgr4>|zz-d^k#a&I@PJfN2C(e{c%beY2?}tZslOWwl188&VBPkWV?;ilp7oQP-_#J&U z)-em1aPNnDUTbRhOLCK9SZ=hZlhd9IkJAS(JQ||<>f13dg5zf+3N2s>$E{M2&FRE? z&*lcI)wd$Iew*$pH3)42JJ`Nb$1xAE#Pf2+)5nn)Md(|--&BAWhymx{{DaIF^*>Rb0 zZmHV5t@?YGY>ySUNl}XCQ>Bp<$db~bCzt?f8A&!-I0-&pV|`TI6Pc)*K@}Qs+NDNFO|_> zyHvCT0Pv4kLww#5E%?U={tsmvBUv%TXGo-4GQQ{nYnv%Oq`TTOv}r)Y zFX?;bu!9_f8~f*c>qwP$*5I8%%s&I7mh6-1nGLw*NC(*$1KQTKp1ZdJrD-gV8ZhQ% zK%NmR?MA~5F-u*XRKn~LdtJUv&c`+YB{E$~0y-eKJ+1P^l`&D@62X8>M2%kf1p<<*Bjfb?#P*U4=ccbf+!mPrE}g`zWmDyv ziLqn}1glaoEem)~?Mg|aHm7Z_=o8G?6WTaY3y7DME3f*=@vDu)*WA1*N2$g*dH8jF zXQcqo2W_35!!}M5j?z)MQ*xP%YutmV#g2`W5ll;I8`;+6blRhU9nM#zlpfZ25}X@) zfli}c?|3<4Zm>rI=xc{HjNkYjks2v}4VDmy_c_EEq425c)!RI`jU&KLBw`M%o9OS@ zw6=vlx%rE`!m)Z=Wqb5lzc&@&ZP%@YPo;a+XZ=Efy}(4f=SzX;DCPxvL9NCWlHEd2 zLrV|<^688+`>h+Hb<3Q5nSVY-t+cXLN`4Y;HSpND#!_@c_URPAs`Y&#Wu+4Lete zkgZv|si(iskTvN1>{Cjwx)5M0&32}sEvhHzcRR?MuKoMo#o5K=nSOD(G=)H}4eep} zhE#54TR6Hys)B|XC#{$`=^x{4my68rGbi(danfH^xCojshE%YOh>UhOWk+BolKzf= zm;Gi*qFA|Jqa(2w=mm}Vw~=&7dQ1fn2uq$E9Dzkk3{68W@_d?C6DEl}An-U@E)~Jf z+?Zsi?9lQKDiN9ZldKwm20zVrL;?QTW{tb`!~z4r#)73w15ErXvY3>)o-zdSauUx% zT1MvvGGNfdY_fr-bO5}>e^rTOPXETW5n7QQW3)Ui_9!`T55EiPiSMiK%AUdCK zWDlodC*7%fHmVM3X1hiebjpH>uR1JXC7Cz>l-jUG+Pn7NJw(a41dT0lXO+6P1wt{A z^dF?C%u4L=#BLzzGWCqi33c}a0K|vMi=(0P_P1oS>ICOd3;^-0Q^gcJNVD&>TP-!I zrxHO7!jHRciI}~jiyFTMZORAVJxDC@G0gYC8I|00C}Y}&GE8Zw)QhCTsT|>=Ih7lD z<6~QdD1DYwa&4*w?9d-K(hU0Lo}H*bK@0$KmQAS~ZN`KJxd`<7)CF{@SVKKpA+O3} zLN=0EcB2eRUQ=h5YbRglKPin$2L=X&6ER#|E&4S7<{+c*bs^bc9T>bo4f451CI_!< zV~Z40k{|%EBav4?>s}owy?_pS06ZcOwvj^ULz*wUM1N-mN>BFFsey7xs_*3h7;bzF zeVAX}M;~g1E8$q(te15%L?6Xv;38*^IQzOOk)Lchu4Vx4M69rdLETri3pL@s-7BQ9 zHwBAbzb%w`VENpriEFDwK#ZHfV*4AN0=Xg&Dr=s!e1$Y0efmynA`TQm{4lZM)JCblX%CVr zj~*(7prIxP$a1px+_QLsPaYW6#^;?`$Hu z(T^v-sQ@py^}A{1Opoc4iAWU@R1ezOEX4d$m8#aoxH>ICtrCdZ(2?2LpKiWu>ktGC z8c$hvA@aH`S+tRXMH^0(;okHT)W(2_><8RnQLypY(2fdoG2BbS$P+-aS}4BgDt9NS zNrRHN2FmPQk8!}J7wiRA|7MeP9eO0_1$sdlv!|B}T6z#JL0&+&cZ$f4tkVMqfOvGO zvXQziF=5S4KDOgA2=U#^X>V7O;;#2JyR5+|w*&zp?#lF`CTsv;9UZG*UuIc4uRu)< z0^oGwer^;Ul=CxNM+mt9)N6OYwNvdADc|?Y zt{7R1F)`e@$R|O&6g1*z{pEUkO*&1}CJBV}$t;-u#8qv+F>$Eq4SWWH^CS#EHdgeLDzHt9b<=e?KiTd~Nn1OWOC zTQY7xU{jfP+DgxjE-)~gMj(En6$<28%F<_-NT*`L3xl}f47mGg4w+aP01_%@t9-u< z?$CAfs$Zpd)dNhpVgOKjhCaVWaKj6pzGcT%mQ-h2k^GXVH9NlOCco>I;ABk($x*bC zRB>{2o}|~!dk!@iEn}*YR9ourI104YVGWXsvr`{IN&E9s8B$E%ie*f0xV)A0)*;U$ z?4&zoBE0U23yHQ;gD|qw?ILHtM~@1&rK>9)pk6D4)VyFXu-(uh_F5qb0L)ER(1~I# zteM$G``CQGjekb=N`0dwfak~u$Ta)2w#VFo^{jB~l|Lg%Z`vty^Y6ZB9ojub7t-Q) z+To3pT3i%g_voIPz5;cbj@p4kts5X4;B#D?gbY9 zdAaSOyloYCD!aAa+?qACmts~?%YahXm2hxP!`w@g<R-f`xPV#1aWvi5)*_XR*WePE6LnCbH)f5-&hILU7k z+lh!2K)*Pj$lzw|4rgj)pOTtZi`%RTJzp*sa(?*88X90u5%oIOxWfr z(e}avyDzqYy!Z1vyNqMPN_}!pX3EAe10)`1r+1xfZs}hx+$sS^Qpu?r$x^G9L)<6b zns%vUH=5G`?0HL_Py?IMpbs^6q0XoEV|?DgZf!!(jD{+}3tl%Nk?gT18zYl*9ScB+ zO>C@hUs`C#Cf3sgB7|=M0Eb-pTD(Kisifc2J66z_0H{S%bZ{nLkdS2R&ER+|Zc7$T z5B7q&Z46wPIHSx|j5m@%FKFH1@^aF`D4juGz$Z;#OJNvq1OSK+X1M7GOIV0rw(+jC z5W|vpX2VRlzb@bAa=^9_lnUwfBZ*-)U_4m~FY?k~qdTSPrQ+}T4khK-!_+2$+#Uwa zdGCyj@J0X(0w8kI*+>R7|Eitr>P7$nfH-r_v;ig_nR}dUi(%;mML$?UC=ZnAok>zB zW~g@orPGI6Z~~jhPHmIrk+m4V(1n~m1LO=%?8(lyk0aKVh;jT6rJvl<&VTQ#mueO4 z}a+z55e4&8&ELwOu-QaR81}=^xNHg1jjNzy-iD^2OjIqyCZ8IwsQ( zRRGwP;Axv*$XH}Tix=z#me{>o24>^VB+v`G@WoYWK1TEm0$_3bVF7O2!O7Nbh6Zpp zyACg0L*~Q-RW3AY)et#CGxi1mh%qu_;@u^x*eNLb4Zg1ANg?i^2*EYbh*Q;YD|Ntj z9PHm11OV=HVnEJg>qD~y0ElrZG7|^QJu*wNM2N|xee`LTe9@dawmah45()wUJCT8+ z9i!7548b+8{!yHKS@2Q8ygT#!~o!F65axlXti~}f?*4a z+(aKX4FZHS-K?9_#oO53fcp)D0FZhK^zcl?f&f+xz)@$Af#31(@M&CA)lKK5ff}m@ zaX$L^hFNJk7YDwwvk+MuKoI$1`nZvkHL z>$Y*_;NEVl1bc!1K0GF4lC25`dO=4|){~CLM0rRPAOP^72rInk)wH&7K)}M8PXOti z$e7*PjxJx%kV-d0IMkGlNVr(>OOVtW>X>EitK= zs*cHkEjk+Rf(}kT`sP{y0-*Dh`|d80bpsyAIBT1~oc@se9Jn#bY^6 zy;)kH<#Cnhn*Fkxee4=!X*7Bl+?5Naw(;f{gQ{7<#E zZb3II@cRe^mT_q_C$vk;&#_0sEC5>MRm8Zz`)Z{JDoN^C;jAq!Zbvu~SEi2-N`M_s zVRlu&7`neR2rSVb7w~<%zid-smH=>w)h#*L0sK|TByuLnbSl`C6s`1-$Mc2RqUG=h zvEs@OUQJ~2$_);ed#so3F`L)`-cS7=pw3SJmyW!Dsqf`{sY#h7Q0wO(H+^|r#(LD! z2CbzwGK*NI;}E#8aS_=&ZBPw|Mbz{x_h7fCC(%=-*iCW{_PCbDZR#>=xc$Sw8mg^c|3Ln%#@xc{%y7x%u*B`w4Z4;X~D(7|I@ zXEm-RuxnvA{COe67GYdZ)cVpfX&HtsulwqKwW2boTlDy7j`hQ3;4+P85ZEf2yh@;4 zSY72Oa`w$B*)mfD0DySKPbppEQjagm(oGNkg4)oBh*`W+A4`6;PFfn4puh=EE!DHSINo$kSoF+o%e`wJ& zf%H+!RN6o8#y_fbC+*kQZL^;P2sNCJ9`2{J>k3dg)dbs5ld<~H*`CvU6>6wcKwsKa zi~a&DKmm{#U*44NlNoZun(1tz3h;stKg=iJiZPwd3-$sVbeSM0jZIF?Kmd~U=;0A$>%biP@+8L`Q=t(m2FyCnUkg`6_f$Ibzk zLzubQr}-md`;(Q#gyqPop9u~!D}dMzF#*Odcz)Rs&oF@aXKGkC;t?zvL-$2H}D_N0gG{ z-d+|yE z|F$07G!`&~6v=?3XY*A&P-2SmOV{d8Q3jcW3Z!{7^L_={Ey4wPP&GsNJ)wHe4(z|OjNlojMuOR*|i8%v+J&D}l zuqH=jMyl`fV*u=Fbsn=V6f1eWE%d~nAIM2Uon=cPD{z3e@j2u!#eK3>_5n~+~@-U5HFo@KoO(#?m4>IjYlK`OIPU^5M#b#W(j?9ch~7% zW%{Qh5s3MgZ>+2HE#H@izbEa;^zmGz=`;lDDXfT0`usV>q<>!by>luBjH++2wf z6ZX~RbFvLOX#pTWb^?(;ru+hJLCj`Pa&~hkS&K1q1_AKzd-qkpfLMPWwpMmmV^fC< za_PQkjES*w(lKWm$&wCdVCg6kV@94eEeFxx=UOAJ)@T|hJsQ#Hw4q}C`X=<0DyQzfp!5V{`vkVl7GX}Es_#W;xJ1xf&4b!3Tf)bbpnLzt&USQs44LNMrBiI zeB9+Nq?0xsia`JrZI;^Yfz{4Uk)uyzu>gRWmW$ld=j>P{8*Mzu7D~9@B-&%s<4KU7 zH-bJk&{v*5G(MI-)JA_?GpREno-`9900{(0J|I^=P~GmbBq-IX079fnPYBc~ZW(cF z+*NF;?Ich-vns)wRb$adt{jjP&w4zv#%HFzS=W!_%J-;Nu0IhYV zSS9dIw)vqA7;H)pghwsl8_?CiIGEhlALVea3LcXLnMJwJx_vck%d~A`-6<3T#5dZ} zudc!;yq(t0oMdebgfwL~*uQNh>Ew;CK)aZ|0loCC0BF;m)%m46Hck=%gpmqPqDsF; z4XQa=%~|C4b+$bcsmB!rSh{g5U4%BHn6RF|yltnyOgxLcJ%}+$!#0<0$_UB7F`r6> z4F51v_ScX4Y?J`wuVs3bJ93UYS24YOQ8^OQ`%+*s5HB`YVkirLv5!8mhaSu`z>|;E zlOD;~8-puRFUCwNfW&4bA4;iybidsR$y$`e03`cVfIWO&gB?YM355eNVPHgobF*(E-z`-dDz7(am;B^Yg!HurL(^%{!}3~`v% z)!mc@Wn?GR(=5#HelioN0ksu(eu7=Llx5Y1+0g`qp}>wRT;QwR$K)`^maME*)|P2h zN~u3%mkEEHz1X8ZWEi)dpZ^+uIFzAwNt@0{N8n~@Xu9Z#CTz*FzPvdNo?KL?p*p+A0ip;Iz-pz1y_}kI| zjBjL+jN7>LhI{>?|MttEVb>;CGKOWVtukh~x|g$_N=IbZ#_oboy_CuK+^uc$xk|Ea z`XT_9CIk8G2~T@avt3tyBH0hpR_%W2Er4~&ZEbsKpNw&#*$#DprDOI|Qb;C8fpoc6 z)K;m(CDm34soVNxG99#Qn?b}-em?pDlq=8g7HatB+879s+;H;K*thM7Dvf+75qo#; zBQNG{@*n(IQyRIR{$#aCFlv>+g4a{XsX`O;AQ%RELH+yRmhRC68U_I{JHcFc7k|Ra z)|$7?-v8QCo+YZU^y0R0%h}B1?e@7gIwoZ^IR-OpTmS8G;~ZLw`o?rbHH+g(yL8WuV$M_Xd)li?ZO zi^FrXc>|=Ewgbv}k^qeNJbCL#iiJvF1pYpW-d)tB*aUS6P7J7BPp)6f0A3O+q@AdT_E1MV7IX0&!JKsHmhjoCi-~CoAhR_st=G( z*VZEg!KR!myI4KG?5K9u1knH5`4;EUGpQDR4+;wgVE7ZX^Dup=nf|!Ou>JM|8IkO6 zB*6f3W(#|raMpTxKDeFi#c=XlOEo4evcU+uol=LWEs{ReBzI!xukpPNlF1!F0IVsk zpX$zWyJ$qv={o85_7d?4`jC7xSk|_+F^Thb+y9oTkz00FRgT{(3T6#_`(yxFBAvi0TNXz*lUlxxrx>(rGQubJP03V7E` z_=m~d6uIy_|4M+JVnKQt>GSSRpnq~rtKpENQXpZu(H6GL|Fy#1q+=J^g=|)_%8h~$ z=h)f)+~HfPGcz@awt1C}M*v`tn03uFWx5o<9SazU+8)-K>I$YxDk~SWT{}PkL1l0lX{#A5nJySvkfwikweD zqB(VA)C9J&jGLw=@G7j&Bx^E#h$m5a@P`?F9{la=H$%EG69hj`qkUc$%Eoj}K6jXM zXY4$C_Jy4agS>#H%WlY8%xoC|AjYO$me}N*N9?}CrOW(6Zj;IU**SaIOafAUB|tw> z`hQ2N1}-%BsR_vJ>6$336+z8RLQZf1P#_uwjQ!{9r|eiK~8=S6ZuKCq6|f_Q@!ngYngl17tTf*2-sb z4&*8w&}VUC!k+Y6BF7=7^lwOxS6$wH(J8l8Q>&(h8?2Fi!SD_MWRG)1OdPa^#+q$R z+ThZWG_fg+k8B~mps^bOQ2NFaf4H-C(JkgkF`9n7`VEpvy7Pt|8{r+G*`%Z>jO#;* zGjW7Eay)1fqEH2(y|VURzn7Ex z3I@Z&qxK=x1O|`UUt0<5&WC5D!_&JYz`7Jt)=yiiIZrGEwH%Ys?)Pj?5KO461`5U9 zY+E-w3YO%ChOd#DnOr&mAjbROI(LZ) z3tKT=@@`7MLWInYy#A)}{7+@+#;dS0QA37$51mn0Oj!F>rR9pf0W2p3*N{K?9@pl| z#n(%(D2N6a#!>j`Fr?Gi$iIr-Qf~BzUDl$gKDq#9v4&B@LDF(TLds*P*?J{W+V&4` zC`ZUuQsibi5EsG2 z*4op@l9YYue4EkIDVod(z$69q42NdT7oEK1A|;UX^XJPLY4pV)FCgz7Ytd2f+k^@L z;5n48)ZJy=lx!A`^Oo#zVY#{gpn&GiG%UI|yW`1!Z;~t;4+{Vbq7XfH2sefuhxxxg zU?<$NhJ9d_KEzH=tqz??W4mPXk;)~bhH(151bwO|%FWO&Eff>&MjRa|QxjuWp$hPV zU$mMmeV;L_ATZS|CFyH6+cqoNPOzkqr+?u{?{)ctH@3<6YqE9#x=_2W(ogg;typtDw9DL4aw^VdkAYs$#}{f#^D&dS zsBJiX9POXb@99OYoGz^Xp+agp4_=E075v)Z?c}30}Ng2Y$Ada0WnA*Xcu5k2;s-6{sXceP;f;0SCmh$A_! ziJJAWm>PHHK4aa&qlW+t0RM=ox`vprZO8SU{YmKGotaDncuxNcK)%FrBe@MfU%4iS zFQyF-NR=NFF#xjBpGW>=2Ps%3*Z}~7f0&?J~E~c>ro)kkjBO23%-7QYPJo zrN>U`*tE(GzWHxfnj zW6l78_{R9Gu6C1MJ!E$hF1;{`YM0YlFd}6B8(tX{x^w_gI_|}1;;`Mb>=?-M$5S(W zEh#`aM$e$WyOv0AU`&ER0JJONcLCQ<{2(WrOoRDBn+)IWcUd}-zk$sX%YP_2D3nZp zTu~PPiG7wpj5>If;_zUrWgtZ@!fXL5!)oKifVdHe$k-B-igShm?Cy zhZWi12X;JScP^GpnPhsSJ!}iL$Pkcq>mr#BnJ&yA4KN+e_oQ8DuL6Kmx~r^+2Twxx z%D3}s;>^WLxx|yNjSo#chd4&bTXt4*iL%Ekh#Y^0JW(gS>#ayU&G|3;-ZT2F5HsNN&AKU`l^Uc7qP1OE+@=dFu$f4IqF< z0l>|Sn87Vdrs`#@(}GEIn5S0-yg)B#YqHC7ylbO%+pF_N*{fDlm7q0JZ6GJ-S-%npN$N!K?yAOCwh;A%dF}(}`hi{j7?(}@J zbVFRyG%~8iOr7(+o27>$4%sCqI;CeTJk!rw{&k^sl-0=oHF-9)gDgX_B>VBw(q*Ny zGO}k7+JKn=uH~~~EkpMO0GtN9;v84UdLqJvzvaumPN_4(`OVx%ocXEaQ zdAnQa+^GkJBg~UHQgYLYEDe7NT{-|DmVG%U-Tu(>@8x*u`4X&RIq z|IbH}pG>W*LeYqYv)^oRy+t_seqCJk3R?QjX;nB1X`yXsREHYYEiK}TamTyXW>~#% z7riSZQNkQBxxbBmfA01)Pu;qd@FDVO9oqeAiAun3WAwEMLtRH7DAY zO56jrZ835~0RSuIla+Ic`~CBe9d(%ak~7gAy&{Rr_mYUrp^2lZRFn)6{^kErnRfPb z$yJxMER}ixhltrV;)r?W{!bMs3-N}91`EV20fbr>rMw$pK-uq$tBJRefEoJS&Lby9%j2ST7Yx=eEuQKc+_OHfY#U-Xd59=^ zP8uM23CYy#b)|3BTM*F)rcw)Uv2w$BWCLKWZzFG^HFW}145AXM#MV9s|l$>D*X;qn5#pydO{ zN}sG3jU-3|d{NxC-XCX>>M)4_+6Lm>xu!an9uxMWa*Dk7ZOdlkoatl@< za7WM;`U!xP$mL0CLTi*S75Zw|Xw^u};P&e>&1Qv5$CNeOi_AMB9+bCDKmy=j!HzVr zbq8kJ0B$T#ici^n)A6k_VOQF%ms!1@P)1`>>h%?q6yG~9bq*wXkW8*z>*RI-F)Sy* z3FFQrENQSnHdN0b0>Gx5x!5XanV43t=YJ<>pmi?-v7AurHaxLYdQ8}{-~N?+>$NTh zTqQmrCA0xvnO`&QUU-~z8G05}f;7PA0y3q_C_A@qLjz(9A_Xx#0bim~HSuNXy|iBh zaekVZ1u=#$`wKKt6CA&^J}JYK?yDe%MoZ-~QUd=Rmd@|f_W`0XwObdBWDtwB@$I+V z)%OXP$K6%h5Yu;Xa5m2XRJ%XxhyW9Rw5G3ItJ7T&#FdDU z8_dLcFSM2Bpa*y$rvIr!oqGrY5E{&&4p;ZeRU~b65~Kk>7my;~_F&s*0Els^5tlxx ze_VTwg!;D+#2{Rkag`s07!>u*F;F^I&Bj0?gv|e?4}g-%_qdzW=Y4M-)YhiJ01&54 zS=+tUq)7Y4QjCUpki!bHuIyXeDFvk~94mc|?kGcuFq}$N@5$3o7#i1H$;j8KsccP z!SIL08mgND2E=z)1P-;g%N2~y#9c=r*MI4mv&|UG%Ld2TG2D;+n8mW|&o=v)C zO9^a%7^VK1@{zwof`n>6WYAmKAZ+V|`2^J;`?t&+9EDxJ9V^GPO#p<$90k$s_5P`K zK35&P;9zS3TX%|4c_{!BLW|26wIFjnl_p-i(n88xdtVTP@NmkMksw6%n;#vqO%+-k zMtnjcAePrl{XYJgl&yaFcwJ6SxMtq`h_6b_R7wbHJ^aa6B&Gqm&8UL@DQeK%S&H8r z?}y95nKo4hfQ`lUb{i81?zNNNR=c>lMAU`83M7qfRGlM{=$Fs?D)B8ZQd#zRy{HZl zM%MrWfL+wtH+EO~*FWu-Nf)hIVgQI^Vq+ti_}i6#N_p$v1LED}qFI#EhD9raN9dK%PVc1E

K3);?zOk6b>CCAdoTj1o8-+xz)lu^Tol|g8@ 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⁣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

G425IM&#Mqyi1nD7`YinsG3+6IP+F6u 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�zG?*}jy5aU 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⪙h0C;(7qEj{d>@SMH6^zqgV(4$D#i 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

sZ`<6kt5`M^ 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 _H^VKVCoEni*)qlh00O_dw!~>Y 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 OwS&D!(_dya0sjZ|A-h5V literal 0 HcmV?d00001 diff --git a/contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1.binphr.tgtvoc b/contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1.binphr.tgtvoc new file mode 100644 index 000000000..01846cf3a --- /dev/null +++ b/contrib/promix/test_data/esen.ep.model.filtered/phrase-table.0-0.1.1.binphr.tgtvoc @@ -0,0 +1,10713 @@ +10712 waking +10711 sponsor +10710 tensions +10709 landslides +10708 policy-making +10707 manifesto +10706 intellectuals +10705 ethics +10704 discovered +10703 despicable +10702 civilisations +10701 messed +10700 ICPPR +10699 Korean +10698 pronouncement +10697 Challenges +10696 captains +10695 pants +10694 yields +10693 wrongdoers +10692 work-related +10691 window-insulation +10690 traces +10689 white-collar +10688 bargaining +10687 premiums +10686 websites +10685 chasing +10684 hake +10683 wasteful +10682 waste-related +10681 walls +10680 volunteers +10679 volatile +10678 viewers +10677 viewer +10676 vets +10675 varying +10674 unwanted +10673 unladen +10672 unjustified +10671 university +10670 unilateral +10669 underline +10668 under-represented +10667 under-age +10666 two-stroke +10665 trouble-free +10664 tropical +10663 treading +10662 trappers +10661 transposing +10660 transporting +10659 transfers +10658 transferring +10657 transcends +10656 traffickers +10655 venues +10654 tractors +10653 toxic +10652 tourists +10651 timetables +10650 time-shares +10649 destabilised +10648 pensionable +10647 entailed +10646 tendering +10645 biota +10644 wronged +10643 third-party +10642 've +10641 secrets +10640 sabotaged +10639 low-level +10638 flagrant +10637 eclipse +10636 divergence +10635 homework +10634 creative +10633 counterparts +10632 Strategic +10631 performers +10630 culprits +10629 wetlands +10628 weblogs +10627 wars +10626 warmongers +10625 vying +10624 Wogau +10623 virtual +10622 urgencies +10621 updates +10620 select +10619 unwise +10618 unresolved +10617 unreliability +10616 unpaid +10615 universality +10614 units +10613 unelected +10612 underestimation +10611 uncontrolled +10610 trustees +10609 transportation +10608 preservation +10607 transmission +10606 tranche +10605 tragic +10604 townships +10603 tough +10602 sellers +10601 ripe +10600 thumb +10599 regionally +10598 theatres +10597 telecom +10596 additive +10595 takeover +10594 stuff +10593 strictest +10592 strangest +10591 stocking +10590 stipulation +10589 contracting +10588 wit +10587 souls +10586 socialists +10585 small-minded +10584 slave +10583 shots +10582 shade +10581 secretarial +10580 sacrosanct +10579 rostrum +10578 rooftops +10577 rival +10576 rewording +10575 resultant +10574 resolutions +10573 requisite +10572 replacement +10571 regressive +10570 high-handed +10569 backwards +10568 protesters +10567 prosecuting +10566 proliferation +10565 harmonised +10564 privilege +10563 presidential +10562 praiseworthy +10561 experimental +10560 cofinanced +10559 populations +10558 swim +10557 phones +10556 dignitaries +10555 fortunes +10554 persistent +10553 farmer +10552 penniless +10551 pen +10550 parlance +10549 Urges +10548 pandemic +10547 nucleus +10546 nth +10545 non-native +10544 non-Member +10543 nineteen +10542 industrialized +10541 mullahs +10540 much-needed +10539 mother +10538 varied +10537 precious +10536 monstrous +10535 modernisation +10534 origins +10533 micro-organisms +10532 outdated +10531 marketing +10530 makeshift +10529 turn-out +10528 loudest +10527 lookout +10526 lofty +10525 liver +10524 linguistic +10523 linen +10522 lifeblood +10521 less-developed +10520 ladder +10519 keener +10518 judiciary +10517 intrinsically +10516 intermediaries +10515 interdependency +10514 instrumentalities +10513 inspirational +10512 ins +10511 influx +10510 incorrect +10509 inadequacy +10508 importing +10507 imminent +10506 illusory +10505 merchandise +10504 strings +10503 gimmicks +10502 frustrations +10501 frequency +10500 communist +10499 foreigner +10498 fluctuation +10497 legacy +10496 stops +10495 finer +10494 fence +10493 federalists +10492 federalist +10491 federal +10490 expressions +10489 exact +10488 invalid +10487 winter +10486 dozens +10485 doubling +10484 doctor +10483 divorce +10482 divergences +10481 dissemination +10480 disappearance +10479 devastated +10478 deployment +10477 interrelated +10476 exemplary +10475 cycle +10474 cultures +10473 countryside +10472 cooler +10471 controller +10470 constraint +10469 committees +10468 commercially +10467 commensurate +10466 colour +10465 codecision +10464 cloth +10463 closures +10462 clock +10461 cleanest +10460 choir +10459 cheapest +10458 challenging +10457 card +10456 cancelled +10455 boos +10454 bearer +10453 beach +10452 barbarous +10451 bandwagon +10450 band +10449 bag +10448 backlog +10447 appraisals +10446 animosity +10445 all-Irish +10444 agrifood +10443 aggregate +10442 affair +10441 advancement +10440 adulation +10439 admission +10438 acquisition +10437 accredited +10436 above-mentioned +10435 Visegrad +10434 Universal +10433 Turk +10432 abdication +10431 Treasury +10430 Tobin +10429 Soviet +10428 Neighbourhood +10427 Harbour +10426 Safe +10425 D +10424 S +10423 Renault-linked +10422 RACs +10421 Mujahedin +10420 Overseas +10419 OCTs +10418 Dimension +10417 Mladices +10416 Ages +10415 Medical +10414 London +10413 Lib +10412 League +10411 Laogai +10410 Kenyan +10409 Superior +10408 Jesuit +10407 operandi +10406 modus +10405 Honourable +10404 Heads +10403 French-German +10402 Farmers +10401 Maritime +10400 Euro-Mediterranean +10399 Earth +10398 95 +10397 EFTA +10396 Deauville +10395 Mounds +10394 Darwin +10393 SL +10392 Coptic +10391 Codecision +10390 Chilean +10389 Highlands +10388 Islands +10387 Canary +10386 Canaries +10385 CRS +10384 Bosnians +10383 Books +10382 Book +10381 Bolshevik +10380 Belarusian +10379 Country +10378 Basque +10377 BBC +10376 Armenians +10375 Ark +10374 Albanian +10373 64 +10372 Paralympic +10371 155 +10370 gremlins +10369 bucket +10368 chairpersons +10367 testimonies +10366 terminating +10365 telephones +10364 technological +10363 tax-payers +10362 tanks +10361 tachograph +10360 invented +10359 synergy +10358 swindles +10357 suspending +10356 surveys +10355 surpluses +10354 surgeons +10353 supermarket +10352 successes +10351 substitutes +10350 substandard +10349 subsidizing +10348 sub-contractors +10347 strata +10346 statutory +10345 stakeholders +10344 stakeholder +10343 stacking +10342 spraying +10341 spots +10340 sportsmen +10339 sporting +10338 speeds +10337 specifies +10336 youngest +10335 special-purpose +10334 sparing +10333 soap +10332 guerillas +10331 teachers +10330 skin +10329 ski +10328 sizes +10327 xenophobic +10326 owner +10325 silicone +10324 side-facing +10323 shunned +10322 trample +10321 shopkeepers +10320 shoes +10319 shipments +10318 shelves +10317 shattered +10316 shatter +10315 shareholders +10314 sexual +10313 sewage +10312 unified +10311 sensational +10310 selfemployed +10309 self-employed +10308 secures +10307 seasoned +10306 sea-going +10305 scupper +10304 scrupulous +10303 schedules +10302 saturated +10301 satellites +10300 sanctioned +10299 salt-water +10298 rulers +10297 routine +10296 sleeves +10295 rogue +10294 crosses +10293 roadside +10292 basins +10291 rites +10290 revising +10289 revenues +10288 retaining +10287 retail +10286 residues +10285 residual +10284 residential +10283 reproductive +10282 reporters +10281 replica +10280 repayments +10279 repairmen +10278 reopen +10277 remembering +10276 remedy +10275 relocations +10274 reliable +10273 reinsurance +10272 reinforcing +10271 registers +10270 refrigerators +10269 referendums +10268 referenda +10267 redundancy +10266 recurrent +10265 recreational +10264 reconsider +10263 societal +10262 Gazprom +10261 receipts +10260 reassert +10259 rear-mounted +10258 ratings +10257 rail-related +10256 radicals +10255 pubs +10254 psychologists +10253 proposers +10252 proponents +10251 sponsors +10250 processors +10249 vent +10248 pricing +10247 pressure-group +10246 presents +10245 prepayment +10244 precedents +10243 ponder +10242 polycyclic +10241 polychlorinated +10240 polybromodiphenyl +10239 pollution-spewing +10238 polluters +10237 polling +10236 plates +10235 plastics +10234 planters +10233 planes +10232 pirates +10231 pilots +10230 phthalates +10229 photolithography +10228 photographing +10227 phosphorus +10226 phosphate +10225 petrol +10224 mild +10223 people-to-people +10222 deplore +10221 peasants +10220 patio +10219 paths +10218 partisans +10217 parking +10216 parental +10215 panels +10214 palaces +10213 paint +10212 overwhelming +10211 over-runs +10210 outgoings +10209 toes +10208 rivers +10207 consultative +10206 compatriots +10205 breasts +10204 urban +10203 surfactants +10202 ostensible +10201 over-the-counter +10200 opt-outs +10199 operatives +10198 open-source +10197 on-the-spot +10196 on-call +10195 28 +10194 27 +10193 textiles +10192 oils +10191 offspring +10190 offend +10189 totalitarianism +10188 tools +10187 blocking +10186 immune +10185 Haitian +10184 Perspective +10183 pollutants +10182 wrath +10181 iceberg +10180 occupational +10179 nutritional +10178 novel +10177 notifying +10176 normalising +10175 non-proprietary +10174 non-profit +10173 non-nuclear +10172 non-mercury +10171 non-members +10170 non-hazardous +10169 non-euro +10168 non-compliant +10167 non-State +10166 non-GMO +10165 nodes +10164 nickname +10163 newspapers +10162 nearby +10161 beauty +10160 nationalistic +10159 Bolsheviks +10158 nation-states +10157 nascent +10156 narrow-track +10155 murders +10154 multimedia +10153 multilingual +10152 multicoloured +10151 motorists +10150 mortality +10149 misunderstandings +10148 mineral +10147 migratory +10146 migrant +10145 merrily +10144 merchant +10143 mental +10142 memories +10141 medicated +10140 measuring +10139 maternity +10138 maternal +10137 mass-market +10136 marginal +10135 manners +10134 malicious +10133 procedural +10132 luggage +10131 low-frequency +10130 loopholes +10129 logos +10128 lobbyists +10127 loan +10126 patience +10125 liquid +10124 limitation +10123 like-minded +10122 chatter +10121 lifting +10120 liberals +10119 liberalisers +10118 tolls +10117 leghold +10116 leaves +10115 leases +10114 lawfully +10113 law-abiding +10112 laurels +10111 latent +10110 laogai +10109 language-related +10108 lacks +10107 laboratories +10106 junior +10105 journalist +10104 silencer +10103 programmeplanning +10102 predecessors +10101 glorious +10100 flagrantly +10099 watered +10098 variants +10097 vetoed +10096 unquestionably +10095 projected +10094 vertebral +10093 pleasant +10092 investigational +10091 introduces +10090 interpreters +10089 internet +10088 interior +10087 inter-European +10086 intents +10085 intelligent +10084 intangible +10083 instructors +10082 instituting +10081 institutes +10080 inspectorates +10079 insiders +10078 inputs +10077 infringing +10076 infringe +10075 inflate +10074 infants +10073 indoctrinate +10072 indirectly +10071 indications +10070 incomes +10069 inaccurate +10068 wealthy +10067 warding +10066 treatments +10065 renewables +10064 oil-tanker +10063 Strategy +10062 exportation +10061 vast +10060 conurbations +10059 ascending +10058 impunity +10057 ignores +10056 stabilisers +10055 ideological +10054 hydrocarbons +10053 humans +10052 lawyer +10051 human-rights +10050 households +10049 hostages +10048 honours +10047 honouring +10046 homosexual +10045 hoisted +10044 squads +10043 highs +10042 high-saving +10041 high-ranking +10040 high-budget +10039 herbal +10038 pro-democracy +10037 helpers +10036 metals +10035 heating +10034 heaps +10033 headlines +10032 blinded +10031 pupils +10030 hatred +10029 hard-won +10028 deportations +10027 halting +10026 halal +10025 hackers +10024 guardian +10023 gravest +10022 grandfather +10021 graduates +10020 gloss +10019 genetically +10018 genes +10017 generals +10016 gender-sensitive +10015 g +10014 repetition +10013 fundamentalists +10012 fund-managing +10011 monies +10010 fumes +10009 fuels +10008 perspectives +10007 Adjustment +10006 Globalisation +10005 fridges +10004 freeze +10003 fraudsters +10002 fragmented +10001 fourth-generation +10000 fostering +9999 fossil +9998 forums +9997 forensic +9996 forbidding +9995 usefully +9994 touts +9993 repairs +9992 telecommunications +9991 Luxemburgish +9990 publishing +9989 certificates +9988 footballers +9987 flout +9986 flags +9985 flabby +9984 fingerprint +9983 -and +9982 filling +9981 files +9980 fervent +9979 acids +9978 fatty +9977 fatal +9976 farmed +9975 farm-gate +9974 fare +9973 fanatics +9972 timber +9971 fake +9970 fairy +9969 factory-made +9968 eyewitness +9967 scenarios +9966 explosive +9965 explode +9964 experiments +9963 expectation +9962 exemplify +9961 executives +9960 excuses +9959 exceeds +9958 exceeding +9957 excavation +9956 exacerbation +9955 exacerbate +9954 ante +9953 evaluates +9952 eurosceptics +9951 footholds +9950 interim +9949 episodes +9948 envelopes +9947 enthusiasts +9946 non-regional +9945 enlightened +9944 engines +9943 engine +9942 energy-saving +9941 energy-related +9940 endow +9939 Morillon +9938 endocrine +9937 end-of-waste +9936 enclosed +9935 emigrants +9934 emerges +9933 embraces +9932 elevates +9931 electric +9930 electors +9929 eggs +9928 assuage +9927 gematigde +9926 een +9925 curricula +9924 economic-interest +9923 duplicate +9922 drenched +9921 dreams +9920 dragging +9919 gutter +9918 doubtless +9917 double-decker +9916 donors +9915 dominated +9914 dollars +9913 doctrinal +9912 dockers +9911 Fifteen +9910 divides +9909 disturbances +9908 distrust +9907 districts +9906 distributors +9905 distribute +9904 dissidents +9903 dispose +9902 disorders +9901 disgusted +9900 discoveries +9899 disagreements +9898 dirty +9897 directors-general +9896 diplomas +9895 estate +9894 constituencies +9893 dictate +9892 develops +9891 developers +9890 designing +9889 designers +9888 descendants +9887 depressing +9886 denominational +9885 demersal +9884 delusions +9883 dei +9882 anomaly +9881 defining +9880 define +9879 defaulting +9878 deeds +9877 decreases +9876 recorder +9875 cycles +9874 cutbacks +9873 railway +9872 customers +9871 cumulative +9870 culls +9869 crush +9868 cross-party +9867 cross-checking +9866 critics +9865 sanction +9864 credits +9863 creditors +9862 couriers +9861 costing +9860 cost-push +9859 cosmetics +9858 corridors +9857 coral +9856 copes +9855 coordinators +9854 convoys +9853 convict +9852 contravened +9851 contracted +9850 contraceptives +9849 contingents +9848 contingency +9847 continents +9846 consumed +9845 constituting +9844 conscientious +9843 condoms +9842 conceivable +9841 computers +9840 computer +9839 compounds +9838 Copenhagen +9837 competitors +9836 Aviation +9835 comparative +9834 directors +9833 shackles +9832 commuters +9831 communiqués +9830 derivative +9829 commodities +9828 directories +9827 commemorate +9826 cofinancing +9825 cocktail +9824 coaches +9823 clog +9822 fled +9821 childcare +9820 child-care +9819 chemicals +9818 cheese +9817 checkpoints +9816 surveyors +9815 chartered +9814 commissions +9813 chargers +9812 certification +9811 cereal +9810 census +9809 dogs +9808 catalytic +9807 demonstrates +9806 car-tax +9805 rallies +9804 caps +9803 calves +9802 calf +9801 calendar +9800 by-products +9799 whites +9798 practising +9797 buyers +9796 buses +9795 populated +9794 densely +9793 brokers +9792 broadcasters +9791 bridges +9790 breast-milk +9789 residue +9788 brain +9787 bosses +9786 borrowers +9785 formalities +9784 Swedes +9783 blocks +9782 biometric +9781 biological +9780 biofuels +9779 diesel +9778 factions +9777 satisfying +9776 beloved +9775 behold +9774 behavioural +9773 UEN +9772 shameless +9771 illustrated +9770 rounds +9769 beekeepers +9768 beefbased +9767 drum +9766 beats +9765 trainees +9764 machines +9763 honestly +9762 barcodes +9761 banknote +9760 awarding +9759 avoiding +9758 automobiles +9757 audiences +9756 returns +9755 attendant +9754 athletes +9753 basement +9752 assaults +9751 ashore +9750 non-toxic +9749 democrats +9748 artists +9747 artificial +9746 arrests +9745 utilizing +9744 planting +9743 investigating +9742 flawed +9741 hunter +9740 appointing +9739 appointees +9738 veto +9737 Appendix +9736 applicants +9735 appeasing +9734 masses +9733 wrongdoing +9732 unlawful +9731 ensuing +9730 anti-dumping +9729 anti-Hungarian +9728 meal +9727 husbandry +9726 wet +9725 carcasses +9724 insurers +9723 habits +9722 grandchildren +9721 exorbitant +9720 entitlements +9719 echoing +9718 dependency +9717 cumbersome +9716 creators +9715 catering +9714 artisans +9713 anchor +9712 analyses +9711 inevitable +9710 assault +9709 hopeful +9708 sterling +9707 allowable +9706 terrorist +9705 symptoms +9704 wine-producing +9703 alarming +9702 likelihood +9701 disguise +9700 honesty +9699 corners +9698 align +9697 alcohol-related +9696 air-worthiness +9695 air-traffic +9694 agricultural-product +9693 agendas +9692 aged +9691 ecosystem +9690 advisory +9689 advertise +9688 advances +9687 adolescent +9686 administer +9685 cons +9684 pros +9683 actors +9682 globalisation +9681 accumulators +9680 academic +9679 abusers +9678 predict +9677 worker +9676 sovereignty +9675 spanner +9674 snare +9673 dictator +9672 right-wing +9671 pro-Palestinian +9670 moratorium +9669 monopoly +9668 minimal +9667 guide +9666 cross-section +9665 Westerners +9664 Vice-Presidents +9663 Uzbek +9662 US-bound +9661 UNICEF +9660 administrators +9659 Trade-Related +9658 Third-country +9657 These +9656 Territories +9655 Tamil +9654 TACs +9653 Systems +9652 congestion +9651 Sundays +9650 Speaking +9649 Small +9648 Silicon +9647 extremists +9646 Shiite +9645 Sexual +9644 Serfs +9643 Scots +9642 Scandinavian +9641 SUVs +9640 SEPA +9639 deadlines +9638 Refugees +9637 Quaestors +9636 Poor +9635 Political +9634 Plans +9633 Performing +9632 Pensioners +9631 Parliaments +9630 Palestinians +9629 PPP +9628 PCB-containing +9627 PAHs +9626 Oslo +9625 teams +9624 Norway +9623 Nazis +9622 Name +9621 NSAs +9620 Muslims +9619 Muslim +9618 Schörling +9617 Tsatsos +9616 Samland +9615 Manisco +9614 Goebbels +9613 Böhm +9612 Gasòliba +9611 Aparicio +9610 Cunha +9609 Barroso +9608 Member-State +9607 Measuring +9606 McCarthy +9605 Callum +9604 Masera +9603 MPs +9602 Resources +9601 Lebanese +9600 Lange +9599 Lamassoure +9598 Lake +9597 La +9596 LGBT +9595 Kosovar +9594 Kashmiri +9593 Jews +9592 Jewish +9591 Italians +9590 Island +9589 Islamist +9588 Iraqis +9587 Passengers +9586 Rail +9585 Intellectual +9584 Inquiry +9583 Independent +9582 Méndez +9581 Hong +9580 Hmong +9579 Hindu +9578 Risks +9577 Free +9576 Lakes +9575 Germans +9574 Refugee +9573 GMO +9572 GCC +9571 Fridays +9570 Fish +9569 Ferries +9568 Euros +9567 Europhiles +9566 Practitioners +9565 Herbal +9564 Coal +9563 Euroopean +9562 Estonian +9561 Employers +9560 bombings +9559 ° +9558 wooded +9557 mandated +9556 Defenders +9555 DNA +9554 Cypriots +9553 Cubans +9552 Croatian +9551 Opinion +9550 Countries +9549 Borders +9548 Consumers +9547 Construction +9546 Conservatives +9545 Congressmen +9544 treaties +9543 Collective +9542 Guard +9541 Civil +9540 Freedoms +9539 Young +9538 Children +9537 Charles +9536 Chad +9535 Centres +9534 Cavalry +9533 CO2 +9532 CIS +9531 CFCs +9530 CDS +9529 0265 +9528 Buddhist +9527 Britons +9526 Bourlanges +9525 Bodies +9524 Beneš +9523 Belts +9522 Articles +9521 Armenia +9520 Armed +9519 Animal +9518 Mission +9517 Observation +9516 Embassy +9515 Alternative +9514 Alpine +9513 Passenger +9512 Aim +9511 Africans +9510 Accompanying +9509 90 +9508 75 +9507 63 +9506 1990 +9505 18 +9504 family +9503 38 +9502 conventions +9501 discerning +9500 commissioner +9499 writers +9498 steady +9497 intermodal +9496 barrels +9495 nonsensical +9494 MGPs +9493 49 +9492 subscribers +9491 robs +9490 propaganda +9489 reweighting +9488 irradiated +9487 auctions +9486 Bangemann +9485 Cairo +9484 food-safety +9483 deregulating +9482 deployable +9481 accrued +9480 non-LDCs +9479 beklagar +9478 SSGIs +9477 Lt +9476 LDCs +9475 EPA +9474 C5-0684 +9473 547 +9472 smugglers +9471 prejudices +9470 spectacular +9469 eligibility +9468 busy +9467 Wedding +9466 henchmen +9465 chairmen +9464 biologists +9463 lamentable +9462 homeopathic +9461 heavy-handed +9460 graves +9459 gigaliners +9458 Vision +9457 Picobello +9456 preach +9455 friends +9454 expediently +9453 politician +9452 Ukrainian +9451 Hoppenstedt +9450 policy-makers +9449 trump +9448 sundry +9447 — +9446 én +9445 writer +9444 wretchedness +9443 worried +9442 workable +9441 withdrawn +9440 shorter +9439 scant +9438 preventive +9437 density +9436 lobbying +9435 dwindling +9434 bees +9433 700 +9432 winds +9431 wields +9430 widen +9429 white +9428 wherever +9427 briefed +9426 troublesome +9425 smokers +9424 restructuring +9423 reorganizing +9422 meting +9421 discusses +9420 influxes +9419 driftnets +9418 weighed +9417 wearer +9416 weakened +9415 fortress +9414 viewing +9413 Finns +9412 warring +9411 warfare +9410 walking +9409 wages +9408 wade +9407 vociferous +9406 virus +9405 vine +9404 vigorously +9403 vestiges +9402 verifying +9401 varies +9400 validated +9399 vacancies +9398 utilized +9397 usage +9396 recalling +9395 empty-handed +9394 unwelcome +9393 unturned +9392 attains +9391 trunk +9390 unskilled +9389 unleashed +9388 unknown +9387 unfortunate +9386 unfolding +9385 unequivocally +9384 undertook +9383 underpinned +9382 underground +9381 underdeveloped +9380 banner +9379 unchallenged +9378 unbelievable +9377 unanimously +9376 unacceptable +9375 tyre +9374 typified +9373 twelve +9372 tucked +9371 troubled +9370 troops +9369 underfoot +9368 trodden +9367 trimmed +9366 tricked +9365 traps +9364 transparently +9363 transformation +9362 transaction +9361 tragedy +9360 traded +9359 redressing +9358 totalitarian +9357 tolerated +9356 tolerate +9355 wrap +9354 suppose +9353 violate +9352 timeless +9351 liking +9350 jet +9349 eventual +9348 endangerment +9347 closure +9346 stabilise +9345 reveal +9344 prioritise +9343 obstruct +9342 nought +9341 maximise +9340 bio +9339 instil +9338 laugh +9337 entrepreneurs +9336 dominate +9335 disclose +9334 contemplate +9333 construct +9332 collate +9331 miserable +9330 out-and-out +9329 appreciated +9328 bankside +9327 affirm +9326 Marpol +9325 title +9324 tirelessly +9323 ticking +9322 thread +9321 fallacious +9320 thirdly +9319 trusted +9318 interlinked +9317 loosen +9316 drinks +9315 therein +9314 handing +9313 theft +9312 tree +9311 weak +9310 siting +9309 reinstatement +9308 defensive +9307 perception +9306 patient +9305 parliamentarians +9304 calculations +9303 inescapable +9302 destination +9301 closing +9300 TEC +9299 entails +9298 winning +9297 recognises +9296 terminated +9295 terminate +9294 temporarily +9293 teetering +9292 teaching +9291 tale +9290 tackles +9289 systematically +9288 sweeping +9287 sweep +9286 suspects +9285 surplus +9284 surfaced +9283 supreme +9282 superior +9281 superbly +9280 summoned +9279 sulphur +9278 sucked +9277 successors +9276 succeeding +9275 submissions +9274 subject-matter +9273 style +9272 stubbornly +9271 stringently +9270 strides +9269 stretching +9268 streaming +9267 strategies +9266 stolen +9265 stocktaking +9264 stint +9263 washing +9262 sticks +9261 stations +9260 stationed +9259 start-up +9258 starkly +9257 stalls +9256 stagnated +9255 staging +9254 staged +9253 wounds +9252 stab +9251 spreading +9250 sprayed +9249 spotted +9248 splitting +9247 trends +9246 spiral +9245 spin-off +9244 spin +9243 spill +9242 spelled +9241 spatial +9240 space-based +9239 sourcing +9238 sourced +9237 sonar +9236 sometime +9235 soft +9234 smart +9233 slots +9232 slogan +9231 slipping +9230 slipped +9229 slide +9228 slid +9227 slapped +9226 slam +9225 skiing +9224 skies +9223 singling +9222 singing +9221 e-mails +9220 sin +9219 shy +9218 shrouded +9217 shreds +9216 shoemaking +9215 shipping +9214 shipowners +9213 shipbuilding +9212 shining +9211 shells +9210 shelling +9209 shelf +9208 sharply +9207 shares +9206 shaken +9205 severely +9204 seventh +9203 sensibly +9202 shockwaves +9201 self-sufficient +9200 sees +9199 secured +9198 secretively +9197 secession +9196 seas +9195 seal +9194 scribbled +9193 scramble +9192 scandals +9191 scandalously +9190 saves +9189 samples +9188 salt +9187 salary +9186 sail +9185 sadly +9184 sack +9183 suggestions +9182 rumour +9181 rue +9180 royalties +9179 routes +9178 rose +9177 rocks +9176 roaming +9175 rigorously +9174 rife +9173 riding +9172 rewards +9171 revolves +9170 revolve +9169 reunification +9168 retention +9167 resurface +9166 restriction +9165 restoration +9164 resting +9163 rested +9162 restarting +9161 respectable +9160 resource +9159 reshuffle +9158 reservoir +9157 researchers +9156 reportedly +9155 repeating +9154 repackaging +9153 reorienting +9152 reorganised +9151 renewal +9150 renaissance +9149 remark +9148 unheard +9147 releases +9146 racial +9145 reiterated +9144 reinstating +9143 reimbursed +9142 regretted +9141 regrettable +9140 regain +9139 etc +9138 reexamined +9137 213 +9136 redress +9135 redeemed +9134 reconfirmed +9133 reckoned +9132 reckon +9131 reared +9130 reap +9129 realistically +9128 readily +9127 reader-friendly +9126 reactions +9125 re-introduced +9124 re-emphasise +9123 rarely +9122 randomly +9121 ran +9120 railroad +9119 raid +9118 radicalisation +9117 raced +9116 qualities +9115 qualifications +9114 qualification-based +9113 punches +9112 pumped +9111 prudent +9110 proves +9109 prosperity +9108 proposition +9107 prominently +9106 prominent +9105 programmed +9104 profiteering +9103 profit-centred +9102 profile +9101 profession +9100 procrastinate +9099 problematic +9098 prevalent +9097 preserved +9096 preoccupied +9095 preferred +9094 predicated +9093 pre-registrations +9092 pre-election +9091 prawn +9090 practicality +9089 powder +9088 postal +9087 portion +9086 pledged +9085 planted +9084 plainly +9083 pitted +9082 piqued +9081 Tomlinson +9080 picks +9079 picking +9078 piano +9077 phase-out +9076 petty +9075 pest +9074 pessimistic +9073 perpetuated +9072 permits +9071 permeates +9070 peripheral +9069 performance-based +9068 penetrate +9067 specified +9066 patents +9065 passage +9064 partnerships +9063 particles +9062 coinciding +9061 partially +9060 paperwork +9059 papers +9058 pan +9057 painting +9056 painted +9055 pact +9054 splendid +9053 overstepping +9052 overrun +9051 overrides +9050 overlook +9049 overload +9048 overestimates +9047 overcrowded +9046 decade +9045 outlining +9044 outlines +9043 outdo +9042 outbreaks +9041 other-worldly +9040 asserted +9039 oriented +9038 orientation +9037 organizing +9036 organisms +9035 vendor +9034 open-sea +9033 brutalisation +9032 one-day +9031 on-the-job +9030 on-line +9029 fork +9028 medicine +9027 two-wheeled +9026 globe +9025 transit +9024 stereotyping +9023 settling +9022 reversing +9021 repatriation +9020 renewable +9019 pot +9018 portions +9017 outright +9016 non-governmental +9015 boards +9014 web +9013 invitations +9012 goodwill +9011 daft +9010 customary +9009 buttons +9008 DEM +9007 IND +9006 tempted +9005 discard +9004 unequal +9003 fronts +9002 agencies +9001 yearly +9000 desk +8999 Equal +8998 Tiananmen +8997 Thursdays +8996 Privileges +8995 33 +8994 March +8993 14 +8992 notification +8991 offshore +8990 vexed +8989 upholding +8988 hamlet +8987 beggars +8986 afloat +8985 paramilitaries +8984 darkness +8983 sessions +8982 ultimum +8981 sonars +8980 studies +8979 resigning +8978 reformulating +8977 realism +8976 radioactive +8975 piracy +8974 solvents +8973 organic +8972 norms +8971 nitrogenous +8970 lip +8969 grievance +8968 distinguishing +8967 secrecy +8966 conversations +8965 beef +8964 adventure +8963 disastrous +8962 Nepal +8961 65 +8960 occurrences +8959 reciprocate +8958 normative +8957 non-managerial +8956 non-contribution-based +8955 nip +8954 newsreels +8953 neuronal +8952 negotiator +8951 neglecting +8950 invent +8949 necessitated +8948 necessarily +8947 navies +8946 nationalism +8945 murder +8944 multiannual +8943 mud +8942 mounted +8941 mountain +8940 unreliable +8939 immoral +8938 listing +8937 restrained +8936 pronounced +8935 powerful +8934 moored +8933 monthly +8932 vanish +8931 monastery +8930 modifications +8929 modification +8928 models +8927 mix +8926 mistaken +8925 missionaries +8924 minority +8923 ministries +8922 ministers +8921 minimised +8920 mined +8919 militates +8918 migrating +8917 midlife +8916 metaphorically +8915 menu +8914 mentions +8913 mediation +8912 mediated +8911 meddles +8910 mechanism +8909 measurement +8908 meanwhile +8907 questioning +8906 somehow +8905 maturity +8904 materially +8903 massively +8902 massacres +8901 exodus +8900 marooned +8899 marks +8898 marching +8897 manufacturer +8896 manufacture +8895 manifested +8894 manifestations +8893 manifest +8892 maladministration +8891 maize +8890 obstacles +8889 outstanding +8888 maiden +8887 lurking +8886 lucky +8885 lowering +8884 losing +8883 lorry +8882 weighing +8881 wool +8880 lone +8879 loading +8878 illusion +8877 litigation +8876 lingua +8875 rats +8874 licensing +8873 officer +8872 liaison +8871 liabilities +8870 leverage +8869 lesson +8868 lucrative +8867 exhaustively +8866 lengthy +8865 legs +8864 legislatures +8863 legislators +8862 legalized +8861 leaps +8860 licences +8859 distributing +8858 Morocco +8857 lawsuits +8856 largest +8855 lapses +8854 landmark +8853 lagging +8852 laboratory +8851 knot +8850 knocked +8849 knock-on +8848 kick +8847 prisoner +8846 toeing +8845 reaping +8844 judgments +8843 journeys +8842 job-creation +8841 jeopardize +8840 jeopardising +8839 jeopardised +8838 jeopardise +8837 jailing +8836 jail +8835 strong-arm +8834 print +8833 untreated +8832 threw +8831 strikes +8830 steaming +8829 spans +8828 knows +8827 scandal +8826 conjures +8825 avoids +8824 profiling +8823 wholly +8822 revealing +8821 scarcely +8820 revealed +8819 proceeding +8818 prioritised +8817 perverted +8816 notably +8815 progressive +8814 irritation +8813 irregularities +8812 invites +8811 investor +8810 investigated +8809 investigate +8808 inventions +8807 staffed +8806 intrusion +8805 whipping +8804 ditch +8803 slavery +8802 strife +8801 rehabilitation +8800 oblivion +8799 annexes +8798 seller +8797 buyer +8796 sub-species +8795 a-national +8794 linchpin +8793 holy +8792 interviews +8791 intervening +8790 intervals +8789 intergroup +8788 intensify +8787 insured +8786 instruction +8785 institutionalized +8784 institutionalisation +8783 institute +8782 instigated +8781 missions +8780 insists +8779 insistent +8778 insistence +8777 inserted +8776 inroads +8775 inordinately +8774 inmates +8773 waterway +8772 injected +8771 initialled +8770 inhabitants +8769 ingredient +8768 informs +8767 informally +8766 influencing +8765 influences +8764 influenced +8763 infiltrating +8762 infiltrate +8761 infanticide +8760 inefficiency +8759 indoors +8758 indicative +8757 indicating +8756 indebted +8755 incurring +8754 incur +8753 incorporates +8752 incomprehensible +8751 incidence +8750 inasfar +8749 inadequately +8748 inadequacies +8747 inactive +8746 in-house +8745 in-depth +8744 youth +8743 famously +8742 x +8741 RO +8740 HU +8739 ES +8738 EL +8737 DE +8736 CS +8735 BG +8734 sv +8733 workplaces +8732 loses +8731 western +8730 vegetable +8729 valleys +8728 unmonitored +8727 unfairness +8726 unamended +8725 trusting +8724 toys +8723 protest +8722 surroundings +8721 layouts +8720 wings +8719 vicinity +8718 thick +8717 spotlight +8716 labour-intensive +8715 sacred +8714 preamble +8713 machinery +8712 infertile +8711 foreground +8710 laundering +8709 evolution +8708 endless +8707 cloak +8706 Slovakia +8705 bosom +8704 Former +8703 Chambers +8702 specialising +8701 sciences +8700 surviving +8699 suitably +8698 succinct +8697 structuring +8696 stopping +8695 specifying +8694 south-western +8693 mess +8692 quarters +8691 situ +8690 shaping +8689 shady +8688 segregated +8687 secular +8686 schools +8685 scaling +8684 rough +8683 revolutionary +8682 restraint +8681 reserve +8680 recruiting +8679 popularity +8678 polarised +8677 plenary +8676 piecemeal +8675 peregrine +8674 embargo +8673 eliminating +8672 paragraphs +8671 numbered +8670 neatly +8669 silence +8668 midfield +8667 mapping +8666 literally +8665 law-making +8664 knowing +8663 intractable +8662 inspiration +8661 insolvency +8660 injecting +8659 inhumane +8658 fantasy +8657 healthcare +8656 harmony +8655 geographical +8654 formulating +8653 flood-prone +8652 firmer +8651 Constitution +8650 falconry +8649 executing +8648 exchanging +8647 ecological +8646 diverse +8645 discharging +8644 daytime +8643 dat +8642 contravention +8641 conspicuous +8640 concise +8639 compound +8638 competitions +8637 commonly-used +8636 commending +8635 chambers +8634 car-producing +8633 capitals +8632 blunt +8631 drinking +8630 binge +8629 lighter +8628 attractiveness +8627 attendance +8626 aggression +8625 approving +8624 unambiguous +8623 immensely +8622 episode +8621 jurisdictions +8620 glory +8619 candour +8618 air-conditioned +8617 agitation +8616 corridor +8615 rocket +8614 van +8613 mould +8612 Yugoslavia +8611 UV +8610 Styria +8609 Stalinist +8608 Somalia +8607 Saudi +8606 Road +8605 Shining +8604 Peru +8603 Persons +8602 October +8601 Bösch +8600 excitement +8599 Manzoni +8598 Latvian +8597 IT +8596 Helsinki +8595 Hall +8594 GM +8593 Exchequer +8592 Euronews +8591 Estonia +8590 Chechnya +8589 Castilian +8588 Cambridgeshire +8587 Business +8586 Brittany +8585 ASEAN +8584 34 +8583 1914 +8582 impudently +8581 imprisonment +8580 imprisoning +8579 unassisted +8578 implicitly +8577 implicated +8576 impacts +8575 impacted +8574 immunity +8573 imbalance +8572 chose +8571 brave +8570 i +8569 human-centred +8568 housed +8567 hosted +8566 hospitals +8565 horror +8564 hormones +8563 hooligans +8562 hooliganism +8561 homeland +8560 pages +8559 holes +8558 hoist +8557 hitherto +8556 soul +8555 hiring +8554 portrayed +8553 high-seas +8552 heroin +8551 herein +8550 assumes +8549 jumps +8548 heeded +8547 hedged +8546 heaters +8545 heated +8544 rumours +8543 headline +8542 headings +8541 wrote +8540 hazardous +8539 havoc +8538 tutelage +8537 upper +8536 ringing +8535 tonight +8534 reigned +8533 reactors +8532 progressed +8531 liked +8530 subsided +8529 insisted +8528 harvested +8527 hardship +8526 hangs +8525 hang +8524 handicap +8523 hampered +8522 hallmark +8521 originally +8520 guns +8519 grudging +8518 grows +8517 grouped +8516 squander +8515 healer +8514 gratifying +8513 graphically +8512 scot-free +8511 hopelessly +8510 numberplate +8509 gist +8508 thinner +8507 gestures +8506 genocide +8505 gel-forming +8504 gear +8503 gazing +8502 games +8501 fuss +8500 furthest +8499 storms +8498 furniture +8497 furnishing +8496 WTO +8495 utilise +8494 functional +8493 fullest +8492 front-page +8491 ticket +8490 bounty +8489 Paris +8488 fringes +8487 freezing +8486 freeways +8485 francs +8484 frameworks +8483 fourthly +8482 mainstream +8481 forwarding +8480 forum +8479 formulate +8478 formerly +8477 formally +8476 forgotten +8475 forgiven +8474 foreseen +8473 foreigners +8472 forcefully +8471 updating +8470 pensions +8469 February +8468 hunters +8467 rung +8466 polemics +8465 on-farm +8464 killings +8463 dubbing +8462 collaboration +8461 convergence +8460 nominal +8459 storage +8458 overestimated +8457 focuses +8456 stigmatising +8455 fluoride +8454 flowing +8453 flouted +8452 flourishing +8451 flourish +8450 flaw +8449 flats +8448 flares +8447 flare +8446 low-value +8445 philosophise +8444 firms +8443 fingerprints +8442 fills +8441 fillet +8440 filled +8439 figured +8438 rides +8437 feeds +8436 featuring +8435 feared +8434 paedophilia +8433 virtually +8432 roadblock +8431 annoyance +8430 discontent +8429 far-sighted +8428 fait +8427 failures +8426 factually +8425 factored +8424 facilitator +8423 facet +8422 gaps +8421 fabric +8420 extremist +8419 extremism +8418 extensively +8417 expresses +8416 explore +8415 witnesses +8414 hung +8413 expenditures +8412 expending +8411 expectancy +8410 expanding +8409 exercises +8408 indiscriminately +8407 exemptions +8406 exemplified +8405 execution +8404 executed +8403 exchanged +8402 excavated +8401 municipality +8400 evoked +8399 evidenced +8398 everyday +8397 Moscow +8396 evaluated +8395 eugenics +8394 ethical +8393 esteem +8392 smoke-free +8391 escalation +8390 erupting +8389 erected +8388 erect +8387 equitable +8386 envisaging +8385 envisages +8384 environments +8383 entrenchment +8382 entrants +8381 entity +8380 holidays +8379 entitlement +8378 entities +8377 enthusiastically +8376 ensue +8375 enquiries +8374 enlarged +8373 enjoys +8372 engulfed +8371 enforcing +8370 endangered +8369 endanger +8368 encroach +8367 encounter +8366 intervene +8365 empty +8364 emphasizes +8363 emphasises +8362 emotionally +8361 emotion +8360 eminently +8359 emigrating +8358 emergent +8357 1994 +8356 embroiled +8355 embedded +8354 eloquently +8353 misconceived +8352 elephants +8351 elderly +8350 elaborating +8349 equalise +8348 knowledge-intensive +8347 economist +8346 governance +8345 ebb +8344 easing +8343 earthquakes +8342 earnest +8341 e-Economy +8340 dwelt +8339 dwarf +8338 purchases +8337 dust +8336 investigations +8335 duplicated +8334 dumped +8333 Sunday +8332 draught +8331 dramatically +8330 drama +8329 downwards +8328 repugnance +8327 downright +8326 Venezuela +8325 double +8324 donor +8323 documented +8322 doctrine +8321 doctors +8320 doctorate +8319 dock +8318 divorced +8317 indictment +8316 disturbing +8315 distortion +8314 disruption +8313 disqualification +8312 dispensing +8311 dismissal +8310 blanket +8309 discharged +8308 efficiently +8307 disappointed +8306 disappeared +8305 disadvantages +8304 digital +8303 digested +8302 differing +8301 devising +8300 devil +8299 device +8298 devastation +8297 determining +8296 detailing +8295 despotic +8294 desperately +8293 despair +8292 desist +8291 descended +8290 descend +8289 derive +8288 deposits +8287 depopulation +8286 depended +8285 depart +8284 demise +8283 demarches +8282 delighting +8281 delete +8280 degrees +8279 definitions +8278 missiles +8277 defective +8276 defeated +8275 decree +8274 declining +8273 declined +8272 declaring +8271 deadly +8270 dates +8269 cybercrime +8268 currencies +8267 cue +8266 failings +8265 criterion +8264 creep +8263 crawls +8262 crashed +8261 courtesy +8260 fits +8259 counts +8258 countless +8257 countered +8256 councils +8255 councillor +8254 couched +8253 corroborated +8252 correction +8251 cornerstones +8250 cool +8249 convinced +8248 convention +8247 contrôle +8246 contravene +8245 contrasts +8244 remedies +8243 drastic +8242 contention +8241 contemplating +8240 containing +8239 containers +8238 universities +8237 constitutes +8236 consolidation +8235 glimmer +8234 consecutive +8233 consciously +8232 conscience +8231 confusion +8230 confirms +8229 confinement +8228 condoned +8227 concretely +8226 concentrations +8225 concentrated +8224 compromised +8223 comprises +8222 comprehensively +8221 complexity +8220 liberalized +8219 complemented +8218 complacent +8217 competences +8216 compensatory +8215 compatible +8214 favourably +8213 compares +8212 commuted +8211 commission +8210 commenting +8209 commented +8208 command +8207 fruition +8206 comfortably +8205 comfortable +8204 combines +8203 column +8202 colloquially +8201 collectively +8200 collected +8199 collateral +8198 collapsed +8197 collaborated +8196 coins +8195 coincided +8194 cofunded +8193 coexistence +8192 codified +8191 clubs +8190 club +8189 clichés +8188 clergyman +8187 cleaning +8186 Mesopotamia +8185 tablets +8184 clay +8183 clauses +8182 tunnel +8181 dying +8180 circulation +8179 circles +8178 films +8177 churned +8176 church +8175 chord +8174 childhood +8173 thinks +8172 chiefly +8171 cheek +8170 checkpoint +8169 characterized +8168 characterise +8167 character +8166 chapters +8165 chapter +8164 chalk +8163 cereals +8162 centralism +8161 censured +8160 celebrations +8159 celebrated +8158 ceased +8157 cave +8156 categorized +8155 cartels +8154 careers +8153 career +8152 infrastructures +8151 capitalised +8150 capabilities +8149 gossip +8148 canteen +8147 substantive +8146 flaring +8145 candles +8144 muster +8143 moderate +8142 campaigns +8141 preliminaries +8140 cake +8139 caged +8138 cabins +8137 statistical +8136 exchanges +8135 stark +8134 scoring +8133 scattering +8132 renouncing +8131 liquidity +8130 radiation +8129 pretending +8128 gun +8127 machine +8126 inching +8125 equipping +8124 endangering +8123 dispersion +8122 discriminating +8121 deliberate +8120 cronies +8119 austerity +8118 Schaffner +8117 suggests +8116 two-way +8115 holocausts +8114 bury +8113 burning +8112 buried +8111 bulkheads +8110 bulb +8109 buildings +8108 budgeting +8107 budgeted +8106 bud +8105 brushed +8104 unchanged +8103 scattered +8102 broadcasting +8101 broached +8100 brewing +8099 suitability +8098 breakthrough +8097 breached +8096 brakes +8095 boss +8094 booming +8093 bones +8092 bombing +8091 bomber +8090 boldly +8089 blurring +8088 blueprint +8087 whistle +8086 blowing +8085 noses +8084 blasted +8083 bistro +8082 birds +8081 biotechnology +8080 bio-diversity +8079 billowing +8078 bilaterally +8077 biggest +8076 bigger +8075 biannual +8074 bets +8073 benches +8072 believes +8071 welcomes +8070 belated +8069 wasted +8068 lawful +8067 sterilised +8066 questioned +8065 passive +8064 overtaken +8063 instituted +8062 fostered +8061 elevated +8060 adjoining +8059 depicted +8058 attained +8057 ALDE +8056 46 +8055 convincing +8054 Uzbekistan +8053 befallen +8052 smashed +8051 sighted +8050 riots +8049 reworded +8048 reiterating +8047 obscured +8046 indicted +8045 incarcerated +8044 vain +8043 dug +8042 disputed +8041 consolidated +8040 blown +8039 beds +8038 meaningless +8037 imperative +8036 entangled +8035 beautifully +8034 brunt +8033 victorious +8032 spark +8031 summarized +8030 sorted +8029 separated +8028 self-evident +8027 selected +8026 reviewed +8025 reproduced +8024 remembered +8023 redistributed +8022 redeployed +8021 rectified +8020 recovered +8019 recognized +8018 recalled +8017 re-integrated +8016 re-established +8015 purchased +8014 centred +8013 obtained +8012 obstructed +8011 lowered +8010 logical +8009 insisting +8008 framed +8007 expanded +8006 embodied +8005 elaborated +8004 dissolved +8003 diluted +8002 detected +8001 unequivocal +8000 deluded +7999 controlled +7998 completed +7997 classified +7996 clarified +7995 battery +7994 batteries +7993 bathe +7992 ethnicity +7991 bases +7990 bankruptcy +7989 bands +7988 bandied +7987 bananas +7986 boxes +7985 ballot +7984 balancing +7983 backwardness +7982 backed +7981 teeth +7980 long-standing +7979 baby +7978 award +7977 avoidance +7976 averted +7975 explored +7974 avenues +7973 autonomy +7972 automatic +7971 authorized +7970 authorizations +7969 augurs +7968 audited +7967 attitudes +7966 dispel +7965 attaches +7964 frontiers +7963 minute +7962 Laeken +7961 constant +7960 Entry +7959 greedy +7958 peak +7957 first-hand +7956 cheaper +7955 bus +7954 remiss +7953 Petersberg +7952 Hessian +7951 Airways +7950 astonishing +7949 asset +7948 assessed +7947 assertion +7946 assembly +7945 assassinated +7944 assailants +7943 aspire +7942 asleep +7941 125 +7940 disrupting +7939 tomatoes +7938 recommends +7937 residents +7936 off-limits +7935 lying +7934 load +7933 expressly +7932 ipso +7931 indicated +7930 formulated +7929 inappropriate +7928 befits +7927 emergency +7926 rich +7925 lump +7924 Finn +7923 Guterres +7922 Watts +7921 Loire-Atlantique +7920 Jordan +7919 coasts +7918 hubs +7917 scapegoats +7916 arose +7915 argued +7914 arena +7913 intellectual +7912 valued +7911 undergoing +7910 sleeping +7909 singled +7908 respected +7907 residing +7906 reintegrated +7905 marshalling +7904 stored +7903 regularly +7902 resistance +7901 reacting +7900 quoted +7899 piling +7898 theirs +7897 investing +7896 Serbia +7895 hardening +7894 flies +7893 doggedly +7892 stricter +7891 chopped +7890 expended +7889 coincides +7888 separately +7887 appliances +7886 omitted +7885 appealed +7884 perceptible +7883 doubts +7882 inflation +7881 anticipated +7880 anti-microbial +7879 anti-farming +7878 annually +7877 announcing +7876 anniversary +7875 annex +7874 protein +7873 anew +7872 void +7871 vegetables +7870 tempo +7869 solid +7868 relinquish +7867 characterised +7866 seventy +7865 remedial +7864 meticulous +7863 sized +7862 marketed +7861 kicking +7860 judicial +7859 appalling +7858 gloom +7857 expectations +7856 evolving +7855 engineers +7854 eastwards +7853 chances +7852 confident +7851 balances +7850 auditing +7849 anchored +7848 unprecedented +7847 offence +7846 ivory +7845 integral +7844 injustice +7843 illness +7842 extraordinary +7841 exhibition +7840 inclination +7839 excessively +7838 freer +7837 cooperative +7836 enclave +7835 non-discrimination +7834 anti-Israeli +7833 amusement +7832 ample +7831 signatories +7830 ammunition +7829 amiss +7828 amidst +7827 amid +7826 ambassador +7825 amassed +7824 sad +7823 stressed +7822 underspent +7821 alternatively +7820 stresses +7819 chains +7818 offers +7817 beforehand +7816 allowances +7815 allies +7814 allegedly +7813 all-embracing +7812 sick +7811 fashioned +7810 defamed +7809 supplementing +7808 aids +7807 aground +7806 culturally +7805 corruption +7804 clicking +7803 afoot +7802 aeroplane +7801 advisable +7800 advertising +7799 advertised +7798 advantageous +7797 1982 +7796 adjustment +7795 adjusted +7794 adequately +7793 adds +7792 additives +7791 updated +7790 adaptation +7789 acutely +7788 negligence +7787 activity-based +7786 ingredients +7785 acquitted +7784 holdings +7783 acquiescent +7782 acknowledges +7781 anti-Americanism +7780 writes +7779 accountability +7778 accomplishing +7777 accomplice +7776 pairs +7775 accessories +7774 accelerate +7773 acceded +7772 abused +7771 abundantly +7770 abstraction +7769 incident +7768 mafia +7767 integrating +7766 false +7765 abolition +7764 abolished +7763 abattoirs +7762 advocate +7761 zealous +7760 veil +7759 treadmill +7758 synthesis +7757 sympathetic +7756 swathe +7755 survey +7754 suggestion +7753 stain +7752 speedy +7751 sovereign +7750 story +7749 scarcity +7748 knots +7747 predominant +7746 player +7745 persistence +7744 parallel +7743 mockery +7742 mandatory +7741 competitor +7740 taught +7739 transparency +7738 politically +7737 joke +7736 guideline +7735 giant +7734 gentle +7733 disguised +7732 focal +7731 moments +7730 fastidious +7729 delicate +7728 cudgel +7727 counter-demonstration +7726 fragile +7725 blot +7724 blank +7723 bankrupt +7722 \ +7721 Zimbabwe +7720 Yanukovich +7719 Virus +7718 Two-thousand-and-one +7717 Turks +7716 peculiar +7715 Tomé +7714 ceann +7713 Thar +7712 Tel +7711 Technology +7710 Teams +7709 Taylor +7708 Tatarstan +7707 Tampere +7706 Tacis +7705 TV +7704 Supreme +7703 Statement +7702 Standard +7701 Stadium +7700 Slovak +7699 Trend +7698 Situation +7697 Singapore +7696 Seville +7695 Scheme +7694 Sahara +7693 Russians +7692 Rotterdam +7691 Roma +7690 Rodríguez +7689 Ramos +7688 Power +7687 Posting +7686 Poles +7685 Plant +7684 Debt +7683 Commercial +7682 Payment +7681 Partnership +7680 Parties +7679 Paragraph +7678 Oviedo +7677 OECD +7676 Nakba +7675 NOW +7674 Randzio-Plath +7673 Prodi +7672 Oostlander +7671 Camre +7670 Mountain +7669 Melilla +7668 Martin +7667 Macedonia +7666 Macao +7665 MAGP +7664 Lukaschenko +7663 Lower +7662 Louth +7661 Lisbonisation +7660 Life +7659 Libya +7658 impartial +7657 LPG +7656 Kurds +7655 Knesset +7654 Kingdom +7653 Kazakhstan +7652 lidmaatschap +7651 het +7650 om +7649 komen +7648 aanmerking +7647 Kan +7646 Kaliningrad +7645 Jesus +7644 Jenin +7643 Italy +7642 Iranian +7641 Interim +7640 Institutions +7639 Information +7638 Industrie +7637 Working +7636 Living +7635 Improvement +7634 Immunities +7633 Imbeni +7632 ISO +7631 heartened +7630 Nicosia +7629 declared +7628 Habsburg +7627 von +7626 becomes +7625 blood +7624 Herzegovina +7623 Gulf +7622 Groups +7621 Grouping +7620 Greeks +7619 General +7618 Games +7617 coastline +7616 Galician +7615 Functioning +7614 Fischer +7613 Facility +7612 FIFG +7611 trainee +7610 in-service +7609 ambiguous +7608 corps +7607 Racism +7606 a.m. +7605 Jerusalem +7604 EDFs +7603 ECSC +7602 E4 +7601 Doucet +7600 Developing +7599 Declaration +7598 Data +7597 uprising +7596 VII +7595 Cyprus +7594 Cup +7593 Property +7592 Cultural +7591 Constantinople +7590 13 +7589 Budgetary +7588 emphasised +7587 Ferrero-Waldner +7586 participates +7585 DG +7584 Christodoulou +7583 Chechens +7582 Ceuta +7581 CFO +7580 Brake +7579 Bosnia +7578 Border +7577 Bavaria +7576 Bali +7575 Alcohol +7574 Cancer +7573 Age +7572 amide +7571 Access +7570 Académie +7569 Öçalan +7568 Abdullah +7567 APIs +7566 nutrient +7565 pragmatically +7564 8th +7563 80 +7562 60 +7561 coin +7560 37 +7559 posts +7558 1988 +7557 150 +7556 1000 +7555 1-A +7554 arrivals +7553 2001 +7552 .. +7551 uneasiness +7550 Ostend +7549 With +7548 TENs +7547 insert +7546 bombs +7545 cluster +7544 unanimous +7543 emphasize +7542 English-language +7541 domain +7540 challenged +7539 unrest +7538 emphasized +7537 sited +7536 healthy +7535 communal +7534 unfortunately +7533 Canada +7532 abandoned +7531 theoretically +7530 dancing +7529 music +7528 suffocating +7527 stakes +7526 remarked +7525 Perry +7524 reinforced +7523 hybrid +7522 nowadays +7521 loaded +7520 lends +7519 carnivores +7518 inasmuch +7517 es +7516 grand +7515 cement +7514 estimate +7513 ignorance +7512 counterterrorism +7511 contradiction +7510 antiquity +7509 Vienna +7508 Colombia +7507 deserved +7506 nasty +7505 fortunately +7504 Rwanda +7503 horses +7502 side-byside +7501 encompassing +7500 emphasising +7499 e.g. +7498 coincide +7497 carved +7496 minimizing +7495 thoroughgoing +7494 hailed +7493 hectares +7492 prime +7491 Christians +7490 channel +7489 precedent +7488 quantified +7487 creeping +7486 free-trade +7485 defines +7484 Prefect +7483 Brok +7482 Gentlemen +7481 Ladies +7480 Home +7479 Italia +7478 Forza +7477 500 +7476 44 +7475 36 +7474 300m +7473 000m +7472 On +7471 Kurdistan +7470 SMEs +7469 During +7468 KICs +7467 EUAM +7466 External +7465 CMO +7464 assemblée +7463 'une +7462 telecommunication +7461 reception +7460 educated +7459 enduring +7458 commotion +7457 slim +7456 sentiment +7455 rosé +7454 CFSP +7453 Natural +7452 Parlaments +7451 Europäischen +7450 des +7449 Abgeordnete +7448 amp +7447 n +7446 appearing +7445 responsibly +7444 For +7443 Øresund +7442 Öresund +7441 wrapped +7440 commonplace +7439 workings +7438 wiped +7437 wine-market +7436 wielded +7435 whereby +7434 well-being +7433 weaker +7432 watershed +7431 volcano +7430 visitors +7429 vary +7428 vanished +7427 valley +7426 unique +7425 underpinning +7424 underlies +7423 umbrella +7422 ugly +7421 typify +7420 treasury +7419 lights +7418 doubled +7417 touched +7416 disgraceful +7415 upgrade +7414 thou +7413 theatre +7412 theLisbon +7411 weekend +7410 virtues +7409 classes +7408 undisguised +7407 twofold +7406 tropics +7405 sun +7404 substitution +7403 spectacle +7402 waiver +7401 sluggishness +7400 site +7399 qua +7398 sine +7397 signatory +7396 film +7395 secret +7394 residence +7393 reinforcement +7392 regeneration +7391 recording +7390 rationale +7389 ranks +7388 rails +7387 demoralisation +7386 productive +7385 problem-solving +7384 extradition +7383 prescribed +7382 ring +7381 continuum +7380 polar +7379 operative +7378 occupancy +7377 code +7376 numerical +7375 newspaper +7374 manpower +7373 bureaucratic +7372 boy +7371 wing +7370 liberated +7369 lately +7368 joy +7367 intensive +7366 civilian +7365 innocent +7364 informal +7363 independence +7362 lesser-used +7361 impending +7360 hullabaloo +7359 guys +7358 gap +7357 fishery +7356 findings +7355 illustration +7354 ever-increasing +7353 fairly +7352 dividing +7351 destructive +7350 decision-taking +7349 decimal +7348 constitutional +7347 bone +7346 bloody +7345 bilateral +7344 autonomous +7343 counterfeit +7342 announcement +7341 ageing +7340 admittedly +7339 Secretary-General +7338 U.S. +7337 Taliban +7336 Socrates +7335 Secretary +7334 revolution +7333 Consultative +7332 Parthenon +7331 PEACE +7330 Ottawa +7329 Ode +7328 1620 +7327 Compact +7326 Mayflower +7325 Jackson +7324 IGC +7323 Holy +7322 Far +7321 Electronic +7320 Social +7319 Ebro +7318 Early +7317 EIT +7316 EBRD +7315 Commissioners +7314 Coelho +7313 Christmas +7312 logo +7311 CE +7310 Budget +7309 Balkans +7308 Bahrain +7307 Assistant +7306 Acryl +7305 ANC +7304 1980s +7303 1975 +7302 supplements +7301 foods +7300 textual +7299 texts +7298 testament +7297 tense +7296 tender +7295 tendencies +7294 telephone +7293 teacher +7292 tarnishes +7291 tanker +7290 operates +7289 sweeteners +7288 suspension +7287 surprised +7286 subjective +7285 stripped +7284 strictly +7283 strength +7282 straightaway +7281 stimulants +7280 state-of-the-art +7279 sponsored +7278 spectre +7277 specification +7276 soundings +7275 song +7274 somebody +7273 solemn +7272 socio-economic +7271 sky +7270 skirts +7269 skilfully +7268 similarly +7267 signature +7266 shoots +7265 shooting +7264 shattering +7263 setting-up +7262 sequel +7261 selects +7260 segment +7259 subparagraph +7258 seasons +7257 sea-level +7256 sceptical +7255 scenario +7254 saleable +7253 sidekick +7252 estrangement +7251 catalogue +7250 amply +7249 Wine +7248 runs +7247 ruled +7246 roughshod +7245 rises +7244 rim +7243 resumption +7242 restoring +7241 researcher +7240 reminders +7239 reliant +7238 relaxation +7237 regionalising +7236 reforming +7235 reduces +7234 red +7233 recommendation +7232 re-establishment +7231 ratify +7230 question-time +7229 quarter +7228 quantity +7227 purification +7226 publicity +7225 publication +7224 provisional +7223 provider +7222 properties +7221 trips +7220 proof +7219 barriers +7218 produces +7217 proclamation +7216 priest +7215 prevalence +7214 prevailing +7213 presiding +7212 presidency +7211 preparatory +7210 preferential +7209 precepts +7208 precept +7207 posted +7206 post-natal +7205 pollute +7204 polices +7203 polder +7202 pluralism +7201 plundering +7200 placements +7199 pillars +7198 pillar +7197 phone +7196 philosopher +7195 personnel +7194 persisted +7193 penned +7192 peddling +7191 patterns +7190 raft +7189 parked +7188 parameter +7187 panel +7186 page +7185 pacifist +7184 overtaxed +7183 overseeing +7182 outline +7181 outlets +7180 outbreak +7179 originate +7178 organs +7177 organ +7176 options +7175 operated +7174 continental +7173 translates +7172 visa +7171 2050 +7170 Upper +7169 Latin +7168 Euro +7167 Comoros +7166 screens +7165 score +7164 denominations +7163 commemorating +7162 bottles +7161 believing +7160 omission +7159 ombudsman +7158 old-fashioned +7157 offices +7156 offhand +7155 worry +7154 wield +7153 uniform +7152 registration +7151 unbearable +7150 rut +7149 four +7148 yards +7147 tower +7146 test +7145 tanning +7144 supplier +7143 supplementary +7142 statute +7141 quo +7140 slimline +7139 self-styled +7138 securities +7137 predefined +7136 patenting +7135 own-initiative +7134 opt-out +7133 millennium +7132 nanny +7131 motorway +7130 Naples +7129 meat +7128 airlines +7127 low-cost +7126 flourishes +7125 uttered +7124 jungle +7123 intricacies +7122 incredibly +7121 gun-running +7120 tariff +7119 founding +7118 fifth +7117 educational +7116 economically +7115 duration +7114 crossing +7113 cosmetic +7112 blue +7111 automotive +7110 West +7109 Vlaams +7108 ALE +7107 Verts +7106 Territorial +7105 Thematic +7104 Supplementary +7103 Steel +7102 Advisory +7101 Standards +7100 Sound +7099 Payments +7098 Area +7097 Framework +7096 Seventh +7095 Secretariat +7094 Rome +7093 Romanian +7092 Regulators +7091 ­ +7090 Open +7089 Control +7088 Official +7087 Nepalese +7086 Nazi +7085 Mugabe +7084 Moldovan +7083 Madrid +7082 MEP +7081 LDK +7080 Kyoto +7079 Karas +7078 JPA +7077 Islamic +7076 Level +7075 High +7074 Gebhardt +7073 ACP-EC +7072 Fourth +7071 Times +7070 Board +7069 Left +7068 Outline +7067 Authority +7066 Safety +7065 Food +7064 Communities +7063 Erika +7062 EU-Russia +7061 EMI +7060 Confederal +7059 Clean +7058 Broadcasting +7057 Batzeli +7056 21st +7055 1981 +7054 subsidiarity +7053 stressing +7052 straitjacketed +7051 starvation +7050 spectrum +7049 spectacles +7048 speaker +7047 sales +7046 rice +7045 restricting +7044 reproducing +7043 reconstituting +7042 reconciliation +7041 cushion +7040 profound +7039 preaching +7038 persistently +7037 Interparliamentary +7036 objects +7035 non-agricultural +7034 nomination +7033 rebates +7032 multilateralism +7031 motions +7030 shifts +7029 inhabited +7028 Chinese +7027 imported +7026 Curriculum +7025 helplessness +7024 headscarves +7023 gravity +7022 housekeeping +7021 forging +7020 filthy +7019 expertise +7018 expensive +7017 distinguished +7016 designations +7015 deforestation +7014 defending +7013 cutting +7012 cropping +7011 contract +7010 capping +7009 pilot +7008 managers +7007 bureaucracy +7006 bull +7005 biocides +7004 brother +7003 benchmarks +7002 wrecked +7001 heritage +7000 anarchic +6999 analysing +6998 alternative +6997 abortion +6996 season +6995 realistic +6994 postponement +6993 clash +6992 Wathelet +6991 Tuesday +6990 Total +6989 Scotland +6988 strengthened +6987 Fatuzzo +6986 Blokland +6985 Marine +6984 Learning +6983 Lifelong +6982 Lampedusa +6981 Islam +6980 Product +6979 Domestic +6978 Gross +6977 England +6976 EMU +6975 Denmark +6974 Côte +6973 Appeal +6972 30 +6971 19 +6970 opting +6969 oestrus +6968 occupying +6967 occupy +6966 observation +6965 o +6964 nutrients +6963 nut +6962 nurtured +6961 seekers +6960 plants +6959 notion +6958 sounded +6957 electoral +6956 nice +6955 never-ending +6954 neighbourhood +6953 nationalised +6952 multiplication +6951 multiple +6950 moveable +6949 mooted +6948 monopolies +6947 mitigation +6946 migration +6945 method +6944 mesh +6943 merit +6942 mercury +6941 sweetening +6940 marriages +6939 marriage +6938 market-based +6937 maritime +6936 maps +6935 mantle +6934 manning +6933 manipulate +6932 organization +6931 Growth +6930 themes +6929 madness +6928 parameters +6927 m-commerce +6926 los +6925 loose +6924 liner +6923 liberalisation +6922 liberal +6921 landscape +6920 yodelling +6919 beacons +6918 knitted +6917 king +6916 killing +6915 kids +6914 keys +6913 keeper +6912 withholding +6911 scores +6910 hegemony +6909 guises +6908 libraries +6907 N +6906 neighbours +6905 withdrawal +6904 conviction +6903 pressing +6902 irrevocably +6901 irreparable +6900 ironic +6899 investments +6898 invention +6897 southern +6896 interprets +6895 instigation +6894 solving +6893 installation +6892 inspection +6891 overseen +6890 inquiry +6889 inherited +6888 infliction +6887 inequalities +6886 individuality +6885 indicates +6884 incoming +6883 inclusive +6882 incidents +6881 unarmed +6880 verbatim +6879 recycling +6878 realm +6877 percentages +6876 iron +6875 gambling +6874 euro-area +6873 desert +6872 agriculture +6871 South-East +6870 Box +6869 Danish +6868 Basic +6867 swap +6866 thereto +6865 north-west +6864 isolation +6863 cow +6862 hole +6861 Tibetan +6860 Great +6859 idiotic +6858 Camp +6857 COREPER +6856 imputed +6855 improvement +6854 prevention +6853 implements +6852 phasing +6851 illustrates +6850 homelessness +6849 holder +6848 highlighting +6847 hectare +6846 stepped +6845 haven +6844 haulage +6843 originated +6842 harps +6841 hardworking +6840 hardware +6839 heels +6838 happiness +6837 handful +6836 hall +6835 guise +6834 groupings +6833 ground-level +6832 typhoon +6831 greenhouse +6830 humanity +6829 scourge +6828 grassroots +6827 governor +6826 governing +6825 gigantic +6824 pride +6823 gay +6822 gas +6821 fundamentalism +6820 functionary +6819 front-of-pack +6818 stepping +6817 hip +6816 distant +6815 adjustable +6814 POP +6813 Moderate +6812 Generalised +6811 polluting +6810 northern +6809 factory +6808 damaging +6807 proclaimed +6806 ERDF +6805 freezes +6804 freedoms +6803 free-standing +6802 customs +6801 fraud +6800 formulation +6799 levy +6798 fori +6797 forever +6796 forefront +6795 shortest +6794 goose +6793 incorporation +6792 pumping +6791 permanent +6790 Darfur +6789 foetal +6788 fluctuations +6787 flows +6786 venture +6785 flexible +6784 fleet +6783 flames +6782 locations +6781 filter +6780 filing +6779 feverish +6778 feelings +6777 fate +6776 falsification +6775 f +6774 extracted +6773 extract +6772 extinction +6771 explosion +6770 experienced +6769 expects +6768 exhaust +6767 exceptional +6766 exceeded +6765 examined +6764 stagnant +6763 genius +6762 ever-present +6761 barometer +6760 estimates +6759 establishments +6758 espoused +6757 escaping +6756 equation +6755 environmentalists +6754 entries +6753 unfounded +6752 swathes +6751 entertainment +6750 ensures +6749 ensued +6748 enrichment +6747 enjoining +6746 technology +6745 endorsing +6744 endorsement +6743 enacted +6742 emergence +6741 emanating +6740 eight +6739 egalitarian +6738 surveillance +6737 edition +6736 electricity +6735 earnings +6734 earned +6733 stages +6732 duckling +6731 l +6730 et +6729 beurre +6728 du +6727 drops +6726 dreadful +6725 dovetails +6724 doorstep +6723 dominates +6722 dollar +6721 divisions +6720 divide +6719 district +6718 disproportionate +6717 disintegration +6716 discontinued +6715 director +6714 dimensions +6713 diktat +6712 differ +6711 deterioration +6710 wrought +6709 destroy +6708 president +6707 designs +6706 deserted +6705 derived +6704 dependant +6703 negotiating +6702 stores +6701 denounced +6700 democratically +6699 definitely +6698 deficit +6697 defenders +6696 deep +6695 decrees +6694 1998 +6693 deck +6692 deadline +6691 dawn +6690 1972 +6689 d +6688 cultivated +6687 metaphor +6686 crux +6685 crash +6684 crack +6683 covenant +6682 abortive +6681 cotton +6680 controls +6679 controllers +6678 contractual +6677 contents +6676 contamination +6675 constructed +6674 consisting +6673 consistency +6672 consisted +6671 conservation +6670 halls +6669 concert +6668 utility +6667 comprising +6666 comprise +6665 complex +6664 completion +6663 conformity +6662 compiled +6661 compilation +6660 communism +6659 commodity +6658 subsidiary +6657 commissioned +6656 commencing +6655 combating +6654 collaborating +6653 coined +6652 codes +6651 cod +6650 co-operation +6649 clothing +6648 clergy +6647 classed +6646 circle +6645 chief +6644 chest +6643 characteristic +6642 champions +6641 chaired +6640 century +6639 cease +6638 gross +6637 catch-the-eye +6636 carries +6635 carrier +6634 April +6633 carriage +6632 cardiac +6631 capitalist +6630 capitalism +6629 capita +6628 cancers +6627 Federal +6626 campaign +6625 cadmium +6624 unjust +6623 summer +6622 concepts +6621 posed +6620 Riksdag +6619 University +6618 Barcelona +6617 Aznar +6616 esteemed +6615 tea +6614 corporations +6613 outdoors +6612 criticising +6611 citing +6610 militant +6609 Yves +6608 Timothy +6607 Salvador +6606 Roberto +6605 Flautre +6604 Ainardi +6603 Manuel +6602 Luis +6601 Juan +6600 Walls +6599 John +6598 Jean +6597 Harald +6596 Giorgos +6595 Gilles +6594 Friedrich-Wilhelm +6593 Fernando +6592 C. +6591 F. +6590 Dominique +6589 Bill +6588 Amnesty +6587 Alexander +6586 Albert +6585 flame +6584 brominated +6583 breakdown +6582 branches +6581 bordering +6580 boom +6579 bomb +6578 bluefin +6577 bloc +6576 bleeding +6575 biocidal +6574 beneficiary +6573 belts +6572 belittle +6571 beings +6570 suffocated +6569 paramount +6568 refugee +6567 disproved +6566 NGL +6565 GUE +6564 escapes +6563 unaware +6562 intensified +6561 populist +6560 battle +6559 basin +6558 banking +6557 plantations +6556 baby-boom +6555 b +6554 aviation +6553 availability +6552 auspices +6551 attaching +6550 earliest +6549 assurance +6548 assets +6547 assessments +6546 assertions +6545 aspirations +6544 asbestos +6543 copy +6542 outcomes +6541 contest +6540 undoubtably +6539 fee +6538 10th +6537 lord +6536 art +6535 arisen +6534 serviced +6533 lax +6532 justified +6531 inside +6530 disappearing +6529 determinants +6528 ardently +6527 approximately +6526 appropriations +6525 appearance +6524 apparatus +6523 salmon +6522 civilization +6521 second-hand +6520 Plan +6519 sufferers +6518 square +6517 solicitors +6516 sins +6515 saving +6514 pioneering +6513 trustworthiness +6512 Cuba +6511 parcel +6510 outs +6509 roads +6508 enforcement +6507 eastern +6506 analysed +6505 infringement +6504 fibres +6503 1626 +6502 alternating +6501 welcomed +6500 Strip +6499 advisors +6498 unnoticed +6497 ally +6496 grasped +6495 rests +6494 ultimate +6493 alien +6492 crew +6491 aide-mémoire +6490 ages +6489 plenty +6488 budgetary +6487 era +6486 subordinate +6485 affiliated +6484 adjourned +6483 25 +6482 Delors +6481 ranging +6480 activists +6479 acidity +6478 accurately +6477 accrue +6476 accountable +6475 bulk +6474 tsarist +6473 accordingly +6472 accompanying +6471 accident +6470 accepts +6469 essence +6468 abuse +6467 mobility +6466 random +6465 abandonment +6464 girl +6463 reviving +6462 wall +6461 recollection +6460 vivid +6459 vehicle +6458 volume +6457 sequence +6456 beliefs +6455 reluctance +6454 railways +6453 priori +6452 verdict +6451 Maastricht +6450 expulsion +6449 leaf +6448 gradual +6447 nuance +6446 elegant +6445 defeat +6444 cut-down +6443 comprehensible +6442 clampdown +6441 chain +6440 certificate +6439 ceiling +6438 misery +6437 War +6436 Workers +6435 Werner +6434 USA +6433 steel +6432 UNO +6431 UK +6430 Trust +6429 Traffic +6428 Tracking +6427 Title +6426 Theatre +6425 Text +6424 Teverson +6423 Action +6422 Terrorism +6421 Territory +6420 Technological +6419 Tax +6418 Task +6417 TEU +6416 Switzerland +6415 Summit +6414 Statute +6413 Envoy +6412 Special +6411 Speaker +6410 conscious +6409 Southern +6408 Sudanese +6407 Movement +6406 Slovenia +6405 Sir +6404 Single +6403 Sharon +6402 Service +6401 1996 +6400 September +6399 Senate +6398 Section +6397 Rural +6396 Rule +6395 Castro +6394 e +6393 Ribeiro +6392 Rhine +6391 Resolutions +6390 Resolution +6389 Requirements +6388 Report +6387 amending +6386 258 +6385 Region +6384 Question +6383 Quartet +6382 PvdA +6381 Protocol +6380 Progress +6379 Programme +6378 Program +6377 laureate +6376 Pride +6375 Prestige +6374 Popular +6373 Panel +6372 Pandora +6371 Panama +6370 Pakistan +6369 PVC +6368 PSE +6367 PPE-DE +6366 PPE +6365 PNR +6364 PCA +6363 Offices +6362 Officer +6361 Office +6360 Objective +6359 Northern +6358 North-Western +6357 North-East +6356 Peace +6355 Noble +6354 Nikiforos +6353 Nice +6352 Socialist +6351 Nacional +6350 Museum +6349 episcopal +6348 Munich-based +6347 Munich +6346 Mr. +6345 Barnier +6344 Mountains +6343 Mount +6342 MosiekUrbahn +6341 Monti +6340 Monitoring +6339 Millennium +6338 Medium-Sized +6337 Mediterranean +6336 Measures +6335 May +6334 Lulling +6333 Sport +6332 Light +6331 Cover +6330 Land +6329 Lamy +6328 L +6327 Kok +6326 Kinnock +6325 Khrushchev +6324 KLA +6323 K +6322 Jacmel +6321 Iraqi +6320 Interior +6319 Intergroup +6318 Instrument +6317 Institute +6316 Influenza +6315 Indian +6314 Implementation +6313 IMF +6312 ILO +6311 III +6310 II +6309 IAEA +6308 applaud +6307 Hänsch +6306 promulgated +6305 Hungary +6304 Parliamentary +6303 Hungarian +6302 Cards +6301 Hospital +6300 Hoc +6299 Heights +6298 HADEP +6297 H5N1 +6296 Green +6295 Graefe +6294 Governing +6293 Goals +6292 Goal +6291 Global +6290 winner +6289 Gallery +6288 GSP +6287 GNSS +6286 GNP +6285 GATT +6284 G8 +6283 G20 +6282 Friday +6281 Force +6280 Flemish +6279 Fassa +6278 Reactor +6277 Experimental +6276 Executive +6275 Sky +6274 Conciliation +6273 Europartenariat +6272 Ernst +6271 Matters +6270 Environmental +6269 Guarantee +6268 Enterprise +6267 Emperor +6266 Elles +6265 Eldoret +6264 Egypt +6263 Ecofin +6262 strategic +6261 EPP +6260 ELDR +6259 EIB +6258 EDF +6257 EAGGF +6256 Dutch +6255 Desert +6254 Del +6253 Decision +6252 December +6251 Day +6250 Crémant +6249 Law +6248 Criminal +6247 EEC +6246 93 +6245 Cooperation +6244 Conservative +6243 Congress +6242 Conclusions +6241 Legal +6240 Come +6239 Collins +6238 Citizens +6237 registrar +6236 raises +6235 Eastern +6234 Carol +6233 Caesar +6232 Brother +6231 Cabinet +6230 del +6229 Oficial +6228 Boletín +6227 Bloc +6226 Belgian +6225 Biscay +6224 Bay +6223 Basin +6222 Budgeting +6221 Based +6220 Automotive +6219 marine +6218 Association +6217 Assessment +6216 Assembly +6215 Asian +6214 Art. +6213 Arrangement +6212 Arctic +6211 Annual +6210 Analysis +6209 Aircraft +6208 Air +6207 Effectiveness +6206 Aid +6205 Ahtisaari +6204 Organisation +6203 Organization +6202 Agricultural +6201 Agreement +6200 Adventures +6199 Administration +6198 Four +6197 Activity +6196 in-office +6195 = +6194 85 +6193 157 +6192 70 +6191 56 +6190 31 +6189 276 +6188 November +6187 20th-century +6186 2013 +6185 2002 +6184 Berlin +6183 20 +6182 Fund +6181 Cohesion +6180 1a +6179 19th +6178 133 +6177 05 +6176 tight +6175 underdevelopment +6174 advocates +6173 -from +6172 policing +6171 cells +6170 2008 +6169 understandably +6168 communautaire +6167 acquis +6166 dot +6165 indigenous +6164 reconstruction +6163 notorious +6162 logic +6161 Spanish +6160 Netherlands +6159 redressed +6158 atrocities +6157 irrespective +6156 initially +6155 format +6154 conciliation +6153 dated +6152 controlling +6151 termed +6150 commonly +6149 bypassed +6148 alas +6147 corporation +6146 Youth +6145 President-in-office +6144 Napolitano +6143 Lebanon +6142 Scene +6141 One +6140 + +6139 treaty +6138 disappear +6137 UNSC +6136 UEMOA +6135 IPE +6134 El +6133 EP +6132 CSS +6131 COM +6130 CDM +6129 BUD +6128 ATM +6127 AGLIA +6126 A6-0145 +6125 C4-0134 +6124 0092 +6123 98 +6122 0303 +6121 0086 +6120 C5-0159 +6119 745 +6118 20021 +6117 Promotion +6116 Labour +6115 website +6114 sensible +6113 thirst +6112 strengths +6111 stirring +6110 remit +6109 reasoning +6108 radical +6107 procurement +6106 principal +6105 pet +6104 constituents +6103 well-intentioned +6102 honest +6101 generalised +6100 affection +6099 damning +6098 chair +6097 annual +6096 World +6095 Study +6094 Scientific +6093 Jobs +6092 standpoint +6091 exhaustive +6090 opting-out +6089 broader +6088 index +6087 Paços +6086 Hürriyet +6085 & +6084 Forum +6083 x02BC +6082 # +6081 reveals +6080 fleets +6079 Exercise +6078 wine +6077 vice-president +6076 spouses +6075 picturesque +6074 pair +6073 intermediary +6072 chasm +6071 acid +6070 trans-fatty +6069 Solana +6068 beer +6067 Mexico +6066 Mauritania +6065 EU-US +6064 ESC +6063 Amending +6062 97 +6061 repealed +6060 reciprocal +6059 directions +6058 camps +6057 Banks +6056 Both +6055 shores +6054 ​ +6053 á +6052 zone +6051 zeal +6050 yoke +6049 yielded +6048 wrung +6047 wounded +6046 would-be +6045 worthwhile +6044 worries +6043 worlds +6042 world-wide +6041 workshops +6040 workplace +6039 witnessed +6038 acquaintance +6037 know-how +6036 utmost +6035 thrust +6034 hindsight +6033 painful +6032 nuclear +6031 vision +6030 glee +6029 fuel +6028 empowerment +6027 eagerness +6026 moderation +6025 disabilities +6024 contradictions +6023 bombastic +6022 acres +6021 learnt +6020 mixture +6019 smoking +6018 Gaddafi +6017 96 +6016 Directives +6015 wished +6014 wisely +6013 wipe +6012 wines +6011 windows +6010 trap +6009 re-state +6008 permanently +6007 inevitably +6006 harness +6005 regulated +6004 widespread +6003 wholeheartedly +6002 whereupon +6001 whereas +6000 whenever +5999 well-established +5998 wearily +5997 weapons +5996 weakness +5995 weaken +5994 ignored +5993 wave +5992 wastes +5991 washed +5990 wash +5989 warnings +5988 warned +5987 warmth +5986 wants +5985 waging +5984 waged +5983 voter +5982 volunteering +5981 voluntarily +5980 violations +5979 violated +5978 vigour +5977 vigilant +5976 victim +5975 version +5974 veritable +5973 values +5972 validity +5971 usually +5970 user-friendly +5969 user +5968 upwards +5967 presumed +5966 unwillingness +5965 unwilling +5964 unusually +5963 unto +5962 unsuitable +5961 unnecessary +5960 unkind +5959 universally +5958 uniting +5957 unite +5956 union-to-union +5955 unify +5954 unhindered +5953 unemployed +5952 unduly +5951 underway +5950 underlined +5949 uncover +5948 unbridled +5947 tyres +5946 turns +5945 tunnels +5944 tuna +5943 truth +5942 trusts +5941 trumpeted +5940 tries +5939 tremendous +5938 tread +5937 transposed +5936 transnational +5935 translation +5934 transformed +5933 trading +5932 traders +5931 trace +5930 modest +5929 amicable +5928 golden +5927 boosting +5926 nerve +5925 totals +5924 topics +5923 tool +5922 tone +5921 tomorrow +5920 worsen +5919 withstand +5918 win +5917 whichever +5916 wean +5915 committing +5914 voters +5913 verbal +5912 dwell +5911 uphold +5910 update +5909 undue +5908 twin +5907 transpose +5906 translate +5905 transfer +5904 tourism +5903 timely +5902 timeframes +5901 tightening +5900 voices +5899 tribunal +5898 taste +5897 tactics +5896 repugnant +5895 liberalization +5894 formation +5893 constitute +5892 exclusion +5891 facto +5890 ambitious +5889 Status +5888 Order +5887 ICC +5886 Egyptians +5885 City +5884 Americans +5883 on-going +5882 tempt +5881 tar +5880 heat +5879 photographs +5878 climate +5877 sweet +5876 supplement +5875 supervision +5874 suggest +5873 substantially +5872 subsidise +5871 constructive +5870 subdue +5869 stretch +5868 strenuously +5867 straightening +5866 specify +5865 sources +5864 soaring +5863 hens +5862 skate +5861 exam +5860 sickening +5859 shoot +5858 shed +5857 sentence +5856 communications +5855 satellite +5854 sacrifice +5853 roughly +5852 rot +5851 performance +5850 retrospectively +5849 retire +5848 resume +5847 drugs +5846 restrict +5845 Aegean +5844 repel +5843 repay +5842 renounce +5841 relocate +5840 relax +5839 reject +5838 reiterate +5837 reintroduce +5836 23 +5835 recall +5834 rear +5833 realising +5832 re-integrate +5831 rapidly +5830 purchase +5829 pump +5828 publish +5827 trained +5826 proclaim +5825 deaths +5824 present-day +5823 premium +5822 ecologically +5821 practise +5820 populists +5819 permitting +5818 write +5817 peddle +5816 peaceful +5815 homage +5814 patent +5813 pack +5812 overwhelm +5811 outsource +5810 orders +5809 openness +5808 offload +5807 odd +5806 needy +5805 colours +5804 mount +5803 mitigate +5802 miss +5801 mine +5800 consultants +5799 medical +5798 mature +5797 matching +5796 marketable +5795 map +5794 distinction +5793 lure +5792 lobby +5791 lively +5790 lift +5789 leak +5788 launching +5787 Chapter +5786 knees +5785 irrational +5784 long-distance +5783 invoke +5782 efficient +5781 interpret +5780 interfere +5779 inspire +5778 inspect +5777 industrial +5776 differentiated +5775 import +5774 illustrate +5773 heights +5772 hedge +5771 abortions +5770 overview +5769 harvest +5768 handle +5767 grow +5766 grasp +5765 grapple +5764 unpunished +5763 glorify +5762 statistics +5761 fruit +5760 foster +5759 model +5758 financing +5757 fifteen +5756 ferries +5755 feast +5754 fattening +5753 factual +5752 exploitative +5751 exceed +5750 examining +5749 examine +5748 evolve +5747 evade +5746 equality +5745 enlighten +5744 enhance +5743 endure +5742 embellish +5741 elapse +5740 echo +5739 earn +5738 domestically +5737 destruction +5736 output +5735 diversity +5734 distorting +5733 distort +5732 display +5731 dismantle +5730 discos +5729 disadvantaged +5728 diminish +5727 die +5726 devise +5725 deploy +5724 denounce +5723 simplify +5722 demilitarise +5721 deduction +5720 departure +5719 curse +5718 curb +5717 cream +5716 crashing +5715 covertly +5714 clients +5713 cooperating +5712 conventional +5711 continuous +5710 constructively +5709 Schüssel +5708 consort +5707 consolidating +5706 consolidate +5705 consist +5704 confuse +5703 concede +5702 compile +5701 underused +5700 circumvent +5699 circulate +5698 centralise +5697 celebrate +5696 cargo +5695 calm +5694 buy +5693 burgeoning +5692 bully +5691 brush +5690 brand +5689 branch +5688 box +5687 blindly +5686 trail +5685 blaze +5684 behave +5683 sooner +5682 undermined +5681 upside +5680 guiding +5679 tackled +5678 solved +5677 improper +5676 saved +5675 safeguarded +5674 revised +5673 rated +5672 processed +5671 vital +5670 obstructive +5669 observed +5668 nominated +5667 denial +5666 progressively +5665 grown +5664 enforced +5663 eliminated +5662 disillusioned +5661 confusing +5660 bloated +5659 chemically +5658 certified +5657 amended +5656 alerted +5655 administered +5654 calculation +5653 mechanical +5652 evasion +5651 authorised +5650 attain +5649 assurances +5648 assume +5647 assess +5646 assert +5645 ascertaining +5644 ascertain +5643 arbitrary +5642 approve +5641 appreciable +5640 apologise +5639 analyse +5638 impressive +5637 amend +5636 encumber +5635 alleviating +5634 alleviate +5633 alarm +5632 absurdity +5631 wretched +5630 wide-ranging +5629 village +5628 scrap +5627 useless +5626 tremendously +5625 staggering +5624 shore +5623 secondary +5622 row +5621 hideous +5620 natural +5619 lesser +5618 backlash +5617 Western +5616 USD +5615 Syria +5614 Pristina +5613 Prevent +5612 Polish +5611 Patient +5610 Palestine +5609 Opportunities +5608 Ireland +5607 Iceland +5606 Georgian +5605 GBP +5604 Ecu +5603 Economic +5602 ECB +5601 EC +5600 Dublin +5599 Devil +5598 Cancún +5597 32 +5596 250 +5595 1191 +5594 10.9 +5593 1.8 +5592 tired +5591 timetable +5590 timescale +5589 tightly +5588 tighten +5587 tied +5586 tie +5585 throwing +5584 MEDA +5583 specialist +5582 interpretation +5581 thrifty +5580 thresholds +5579 threats +5578 threatened +5577 threaten +5576 voiced +5575 forming +5574 thorn +5573 morning +5572 third-country +5571 slowed +5570 undoubtedly +5569 throw +5568 mad +5567 rectify +5566 tipped +5565 thereafter +5564 sink +5563 trotting +5562 beaten +5561 altered +5560 theme +5559 walk +5558 underlying +5557 topic +5556 tide +5555 removal +5554 cheap +5553 beginnings +5552 Treaties +5551 Minutes +5550 Memorandum +5549 took +5548 infrastructure +5547 fan +5546 increases +5545 Blair +5544 testimony +5543 twice +5542 terrorising +5541 territory +5540 territories +5539 tends +5538 tenders +5537 temptation +5536 temperature +5535 techniques +5534 tearing +5533 tear +5532 team +5531 teach +5530 taxed +5529 talents +5528 talented +5527 crown +5526 coastal +5525 vis +5524 tailored +5523 tag +5522 underlines +5521 continuously +5520 tact +5519 indicators +5518 tables +5517 sympathise +5516 switching +5515 swift +5514 survived +5513 survival +5512 surrounding +5511 surrounded +5510 surprising +5509 surprise +5508 supporters +5507 supplying +5506 supplied +5505 supplemented +5504 superpower +5503 superiors +5502 sunk +5501 summits +5500 summed +5499 suits +5498 suitable +5497 suffice +5496 suddenly +5495 sudden +5494 succession +5493 succeeded +5492 subsumed +5491 substitute +5490 subscribe +5489 submerged +5488 subjecting +5487 stumbling +5486 stumbled +5485 studied +5484 struggling +5483 struggle +5482 structures +5481 strive +5480 strip +5479 strengthens +5478 strains +5477 straddling +5476 stories +5475 stole +5474 stirred +5473 stigmatised +5472 sticking +5471 stern +5470 step-by-step +5469 stems +5468 stem +5467 steadily +5466 staying +5465 stay +5464 statements +5463 startled +5462 roll +5461 stars +5460 standardised +5459 squeezed +5458 spy +5457 sport +5456 spiralling +5455 spheres +5454 sphere +5453 spends +5452 speed +5451 spectators +5450 specifications +5449 speaks +5448 sparked +5447 spaghetti +5446 sought-after +5445 sorts +5444 sorrow +5443 somewhat +5442 confused +5441 soil +5440 software +5439 wrongly +5438 snapshot +5437 transition +5436 smooth +5435 smoke +5434 smashing +5433 maker +5432 chocolate +5431 small-scale +5430 slow +5429 slaughter +5428 slap +5427 six +5426 situated +5425 sites +5424 sincere +5423 simultaneously +5422 simpler +5421 silver +5420 significantly +5419 signed +5418 shrugging +5417 shouting +5416 shouted +5415 warn +5414 sincerely +5413 shrift +5412 shocks +5411 shocking +5410 shocked +5409 shock +5408 ship +5407 shifted +5406 shield +5405 sheep +5404 shaped +5403 string +5402 convening +5401 advancing +5400 shadow +5399 sex +5398 severe +5397 settlement +5396 settled +5395 setback +5394 set-aside +5393 underpin +5392 sentencing +5391 sentences +5390 sentenced +5389 sensitive +5388 sends +5387 selling +5386 seemingly +5385 totally +5384 seemed +5383 capture +5382 seed +5381 sections +5380 secretly +5379 seats +5378 seasonal +5377 seafarers +5376 scrutinised +5375 screen +5374 scientists +5373 scheduled +5372 scams +5371 save +5370 sauce +5369 satisfied +5368 sand +5367 sanctions +5366 sample +5365 salute +5364 sailing +5363 sanitation +5362 safer +5361 sacrificed +5360 rush +5359 run-up +5358 ruin +5357 rug +5356 rudely +5355 rubbing +5354 routinely +5353 rode +5352 rob +5351 riverbanks +5350 river +5349 requests +5348 rhetoric +5347 rewarding +5346 rewarded +5345 reverting +5344 reverse +5343 returning +5342 resubmitted +5341 restricts +5340 restores +5339 restored +5338 thwarted +5337 responses +5336 responding +5335 resounding +5334 resolutely +5333 resist +5332 resembling +5331 resembles +5330 resemble +5329 resemblance +5328 requires +5327 wear +5326 requested +5325 reprocessing +5324 represented +5323 representations +5322 reported +5321 repercussions +5320 slandered +5319 repeated +5318 reparations +5317 renounced +5316 reminds +5315 reminding +5314 remarks +5313 remained +5312 uppermost +5311 relinquishing +5310 relieve +5309 reliably +5308 relevance +5307 relentless +5306 relegated +5305 releasing +5304 relative +5303 NATO +5302 rejoining +5301 rejected +5300 reintroduction +5299 rein +5298 regret +5297 regarded +5296 refusing +5295 refuses +5294 refusal +5293 refuge +5292 reformed +5291 reform-oriented +5290 refers +5289 references +5288 redundancies +5287 reductions +5286 reduction +5285 recommend +5284 recognize +5283 recognising +5282 recognise +5281 rebate +5280 rearing +5279 reappear +5278 realms +5277 cinema +5276 realized +5275 realize +5274 realised +5273 reaffirmed +5272 readiness +5271 reacted +5270 react +5269 re-use +5268 re-tabled +5267 ratio +5266 ratified +5265 ratification +5264 raped +5263 rank +5262 rammed +5261 rallying +5260 raging +5259 radio +5258 radically +5257 quotient +5256 quotation +5255 quotas +5254 rightly +5253 remarkable +5252 quick +5251 queue +5250 quest +5249 quantities +5248 qualified +5247 purport +5246 purely +5245 punished +5244 punish +5243 pulled +5242 publicly +5241 circumstance +5240 provoking +5239 provoke +5238 province +5237 proud +5236 prospect +5235 prosecute +5234 proscribed +5233 sell +5232 proposing +5231 proposes +5230 propose +5229 consume +5228 propensity +5227 prompts +5226 promptness +5225 promptly +5224 outpourings +5223 prompting +5222 prompt +5221 promotes +5220 promised +5219 project +5218 progressing +5217 unit +5216 produced +5215 proceeds +5214 pro-active +5213 signs +5212 pro-European +5211 pro-Europe +5210 prize +5209 privileged +5208 prior +5207 principally +5206 prima +5205 prey +5204 previously +5203 prevails +5202 prevail +5201 pretext +5200 pretend +5199 presumption +5198 presume +5197 pressures +5196 rapid +5195 presidents +5194 presided +5193 prescribe +5192 prepares +5191 undertake +5190 proceeded +5189 prenatal +5188 prelude +5187 preferring +5186 preferences +5185 predicament +5184 precluded +5183 precedence +5182 pre-eminent +5181 pray +5180 praises +5179 practically +5178 pouring +5177 pound +5176 prospects +5175 post-conflict +5174 envisage +5173 positively +5172 promotion +5171 posh +5170 poses +5169 poppies +5168 poorly +5167 pool +5166 pollution +5165 police +5164 poisoned +5163 pockets +5162 plunging +5161 plunged +5160 plunge +5159 ploughed +5158 pledge +5157 pleas +5156 pleading +5155 plead +5154 plea +5153 plays +5152 platforms +5151 platform +5150 privatise +5149 alter +5148 plain +5147 placement +5146 pitch +5145 pieces +5144 pie +5143 phased +5142 pesticides +5141 perversely +5140 pertain +5139 persuaded +5138 perspective +5137 persist +5136 persecuted +5135 perpetrator +5134 permit +5133 wonder +5132 performing +5131 performed +5130 perform +5129 percentage +5128 percent +5127 perceived +5126 perceive +5125 tonne +5124 possess +5123 skills +5122 penny +5121 penalised +5120 peasant +5119 pays +5118 payable +5117 pattern +5116 passionate +5115 passing +5114 participant +5113 part-time +5112 part-sessions +5111 parliamentary +5110 parents +5109 paper +5108 pandering +5107 panacea +5106 palms +5105 p.m. +5104 owing +5103 owe +5102 overweening +5101 overturned +5100 overthrow +5099 overshadow +5098 oversee +5097 over-50s +5096 outweigh +5095 outspoken +5094 prejudice +5093 incite +5092 outlined +5091 terrible +5090 ousted +5089 pious +5088 speeches +5087 sharp +5086 possibilities +5085 ostensibly +5084 originating +5083 origin +5082 organizations +5081 organising +5080 organised +5079 ordered +5078 seize +5077 refute +5076 oral +5075 travelling +5074 option +5073 opt +5072 oppressing +5071 opponent +5070 organized +5069 operational +5068 accusations +5067 onwards +5066 bed +5065 opposes +5064 onboard +5063 socalled +5062 Marrakesh +5061 celebrating +5060 verge +5059 textile +5058 terrified +5057 surface +5056 rampage +5055 Moretti +5054 horns +5053 horizon +5052 Right +5051 sustainable +5050 studying +5049 stream +5048 small- +5047 seamlessly +5046 integrity +5045 protesting +5044 pig +5043 species +5042 lists +5041 initiative +5040 foodstuffs +5039 expiry +5038 duty-free +5037 doubtful +5036 differentiating +5035 cohesion +5034 sorting +5033 keel +5032 spree +5031 shopping +5030 plate +5029 Women +5028 Regional +5027 Papoutsis +5026 Japan +5025 Iran +5024 Ethiopia +5023 26 +5022 2 +5021 missing +5020 officially +5019 offended +5018 bat +5017 xenophobia +5016 wishing +5015 fond +5014 mechanisms +5013 violence +5012 unsafe +5011 undertakings +5010 trains +5009 strategy +5008 technologies +5007 packages +5006 fats +5005 NGOs +5004 reside +5003 encompassed +5002 finances +5001 vessel +5000 poll +4999 Barents +4998 Geneva +4997 Egyptian +4996 Research +4995 Industry +4994 Austrian +4993 submitting +4992 Francis +4991 Saint +4990 stable +4989 speculation +4988 shifting +4987 reused +4986 retirement +4985 rescuing +4984 repression +4983 liability +4982 priorities +4981 agents +4980 plant +4979 persuasion +4978 penetrating +4977 ours +4976 optimum +4975 military +4974 armed +4973 legitimate +4972 illicit +4971 illegally +4970 high-profile +4969 channels +4968 emotions +4967 dismay +4966 designation +4965 correctness +4964 congratulation +4963 classification +4962 audiovisual +4961 annoying +4960 amnesty +4959 aggressive +4958 acquiring +4957 absorbing +4956 instalments +4955 Staff +4954 institutional +4953 Malta +4952 International +4951 GDP +4950 Socialists +4949 Sea +4948 August +4947 1989 +4946 insights +4945 occurs +4944 occupied +4943 occupation +4942 occasions +4941 occasioned +4940 proving +4939 obsessed +4938 observing +4937 observers +4936 observer +4935 observations +4934 observance +4933 obliges +4932 objecting +4931 nowhere +4930 Pact +4929 notwithstanding +4928 noting +4927 notify +4926 notifications +4925 noticed +4924 noteworthy +4923 notes +4922 disturb +4921 discord +4920 written +4919 south +4918 north +4917 non-application +4916 nod +4915 nobody +4914 no-one +4913 nicely +4912 piece +4911 provisions +4910 varieties +4909 phenomenon +4908 neither +4907 neighbour +4906 negotiation +4905 negotiate +4904 negatively +4903 needless +4902 needing +4901 prevailed +4900 nearly +4899 navigation +4898 suggesting +4897 sentiments +4896 neck +4895 constituent +4894 yield +4893 shake +4892 murdering +4891 multilateral +4890 stuck +4889 moves +4888 motivate +4887 unavailable +4886 mostly +4885 shortcomings +4884 chew +4883 moral +4882 modes +4881 mobilised +4880 mm +4879 misunderstanding +4878 mistreatment +4877 mission +4876 misgivings +4875 minor +4874 minister +4873 mindset +4872 mindful +4871 mills +4870 millions +4869 microgrammes +4868 mg +4867 metres +4866 allocating +4865 meted +4864 merits +4863 merger +4862 mere +4861 mentality +4860 Acronyms +4859 suspicion +4858 medium-term +4857 medium- +4856 medallists +4855 rationalize +4854 complies +4853 measure +4852 paperless +4851 tests +4850 maximum +4849 matches +4848 massacred +4847 marked +4846 manufactured +4845 manages +4844 thereof +4843 qualify +4842 survive +4841 man-portable +4840 m +4839 lured +4838 low-priced +4837 losses +4836 loophole +4835 looks +4834 looked +4833 retailers +4832 long-term +4831 logs +4830 logically +4829 locust +4828 location +4827 locally +4826 boots +4825 loans +4824 loads +4823 livestock +4822 lived +4821 literature +4820 listened +4819 linking +4818 linkage +4817 lining +4816 likewise +4815 likes +4814 object +4813 lightly +4812 lighten +4811 lifespan +4810 lifelong +4809 lifeline +4808 licence +4807 liaise +4806 lever +4805 levelled +4804 letting +4803 letter +4802 lessons +4801 legislative +4800 pick +4799 leeway +4798 confrontation +4797 perfect +4796 leap +4795 relatively +4794 fewer +4793 siege +4792 lays +4791 laying +4790 laws +4789 lawlessness +4788 facts +4787 straw +4786 larger +4785 online +4784 scale +4783 lapse +4782 lady +4781 laborious +4780 labels +4779 knowledge +4778 wilfully +4777 knife +4776 Gebran +4775 knew +4774 kills +4773 killers +4772 tagging +4771 admit +4770 meekly +4769 jumping +4768 judged +4767 judge +4766 worthy +4765 usefulness +4764 requirements +4763 penalise +4762 urges +4761 treats +4760 wisdom +4759 sounds +4758 results +4757 renders +4756 remains +4755 reflects +4754 reads +4753 isolating +4752 mentioning +4751 viewed +4750 unclear +4749 hoped +4748 donated +4747 bail +4746 striving +4745 striking +4744 speeding +4743 urgently +4742 promise +4741 shortly +4740 separating +4739 satisfactory +4738 rising +4737 satisfy +4736 planned +4735 Albanians +4734 irresponsible +4733 irresistible +4732 irrelevant +4731 inward +4730 gender +4729 substances +4728 systematic +4727 invoking +4726 invoked +4725 invocation +4724 Peres +4723 investigation +4722 quit +4721 invariably +4720 intolerant +4719 acknowledge +4718 fold +4717 mothers +4716 lazy +4715 disrepute +4714 proximity +4713 allegations +4712 phase +4711 standby +4710 Burma +4709 interrupted +4708 interpreted +4707 intergovernmental +4706 interfering +4705 interferes +4704 interesting +4703 intentionally +4702 intention +4701 sustaining +4700 intent +4699 intensively +4698 integrated +4697 intake +4696 instrument +4695 instruct +4694 inspections +4693 inspected +4692 insofar +4691 insist +4690 insecurity +4689 inquiries +4688 injured +4687 injure +4686 inhibit +4685 inherent +4684 ingenious +4683 infringed +4682 alcohol +4681 infect +4680 inequality +4679 indulging +4678 indulge +4677 inducing +4676 induce +4675 indifferent +4674 incumbent +4673 incorporating +4672 inclined +4671 incitement +4670 incited +4669 incentive +4668 incapable +4667 inadequate +4666 inability +4665 evaluation +4664 complaints +4663 PL +4662 LV +4661 LT +4660 willy +4659 promises +4658 undertakes +4657 Korea +4656 languages +4655 vagueness +4654 universal +4653 train +4652 tones +4651 revisions +4650 tracks +4649 midst +4648 works +4647 week +4646 networks +4645 trans-European +4644 throes +4643 text +4642 strongest +4641 packaging +4640 mood +4639 medium +4638 launch +4637 images +4636 frame +4635 extreme +4634 21 +4633 weeks +4632 chamber +4631 breach +4630 accumulation +4629 Democratic +4628 testing +4627 terror +4626 redistribution +4625 temperatures +4624 substance +4623 stone +4622 spring +4621 infuriatingly +4620 society +4619 smuggling +4618 size +4617 wind +4616 purchasing +4615 stocks +4614 productivity +4613 debates +4612 preventing +4611 praising +4610 post-communist +4609 stating +4608 transform +4607 multinationals +4606 limit +4605 opposing +4604 names +4603 obscurity +4602 memory +4601 explanatory +4600 judgement +4599 stance +4598 pro-immigration +4597 composition +4596 imposing +4595 hasty +4594 frustrating +4593 replied +4592 obliging +4591 explaining +4590 exerting +4589 station +4588 entrusting +4587 distortions +4586 describing +4585 escalating +4584 compiling +4583 communicating +4582 clarifying +4581 cattle +4580 catching +4579 brutal +4578 Asia +4577 black +4576 utter +4575 respects +4574 kinds +4573 contexts +4572 reassures +4571 twist +4570 purposeful +4569 well-organised +4568 legally +4567 genuine +4566 B +4565 Tbilisi +4564 Sudan +4563 Latvia +4562 2004 +4561 July +4560 Johannesburg +4559 January +4558 Exchange +4557 Brussels +4556 Angola +4555 1980 +4554 impressed +4553 manage +4552 tighter +4551 limits +4550 imports +4549 implies +4548 implied +4547 Baltic +4546 college +4545 imperial +4544 impacting +4543 immersed +4542 relegate +4541 upsurge +4540 immediate +4539 imitation +4538 imbue +4537 imagine +4536 gather +4535 serves +4534 ill +4533 neglect +4532 truly +4531 identities +4530 ideally +4529 hypocritical +4528 hurts +4527 hurting +4526 hurricane +4525 hunt +4524 hungry +4523 hundreds +4522 hundred +4521 humiliating +4520 hours +4519 hostage +4518 horrifying +4517 reminder +4516 horrific +4515 horizons +4514 emigrate +4513 hoping +4512 hopes +4511 hopefully +4510 holds +4509 precise +4508 hitting +4507 hitch +4506 rock +4505 history +4504 undergraduate +4503 hire +4502 hints +4501 hint +4500 hinge +4499 hill +4498 questionable +4497 FYROM +4496 high +4495 dismiss +4494 hesitated +4493 hesitate +4492 urging +4491 pensioners +4490 advising +4489 fill +4488 height +4487 heavily +4486 heavens +4485 hearty +4484 healthier +4483 headed +4482 undergo +4481 probably +4480 pleases +4479 longs +4478 trouble +4477 bans +4476 reflect +4475 resumed +4474 reopened +4473 hurried +4472 alia +4471 inter +4470 taxes +4469 stood +4468 sat +4467 downturns +4466 successive +4465 responded +4464 occurred +4463 sufficient +4462 learned +4461 situations +4460 heard +4459 haunting +4458 haste +4457 swallow +4456 tended +4455 reservations +4454 stayed +4453 opted +4452 intimidated +4451 regulation +4450 harsh +4449 harms +4448 harmonisation +4447 harmful +4446 harmed +4445 hark +4444 complain +4443 hardly +4442 hard +4441 harassment +4440 harassed +4439 hide +4438 handled +4437 watering +4436 poorest +4435 hammer +4434 reinvent +4433 scrapped +4432 guilt +4431 guarantor +4430 guaranteeing +4429 growing +4428 grips +4427 grind +4426 grew +4425 greetings +4424 greed +4423 resisted +4422 merged +4421 grace +4420 seeks +4419 govern +4418 vehicles +4417 goods +4416 gone +4415 unrecognised +4414 sprinkling +4413 globally +4412 global +4411 glimpsed +4410 gleam +4409 glad +4408 over-worked +4407 decisive +4406 pleasure +4405 sensitivity +4404 toll +4403 girls +4402 straight +4401 bargain +4400 genuinely +4399 genetic +4398 generation +4397 generates +4396 generated +4395 obtaining +4394 gathered +4393 game +4392 gaining +4391 gagged +4390 gadgets +4389 furthermore +4388 upstream +4387 funded +4386 fund +4385 functions +4384 functioning +4383 full-time +4382 full-scale +4381 intentions +4380 implications +4379 fulfils +4378 frontier +4377 underneath +4376 transparent +4375 sidelines +4374 raw +4373 ice +4372 prosecutor +4371 standard +4370 registering +4369 month +4368 office +4367 occurring +4366 non-EU +4365 negligible +4364 environmentally +4363 misleading +4362 knowingly +4361 issuing +4360 minorities +4359 dictatorship +4358 custody +4357 sides +4356 broadcast +4355 frightened +4354 friendship +4353 frequently +4352 frenzy +4351 freight +4350 freely +4349 poverty +4348 frail +4347 fourteen-year-old +4346 four-year +4345 foundering +4344 foundations +4343 foundation +4342 fought +4341 forms +4340 forgive +4339 forests +4338 forest +4337 foreseeable +4336 displaced +4335 forcibly +4334 £ +4333 walks +4332 violent +4331 thousands +4330 preliminary +4329 Olympic +4328 pain +4327 motion +4326 media +4325 ideal +4324 People +4323 spending +4322 reflecting +4321 seven +4320 session +4319 sale +4318 professionals +4317 recovery +4316 rail +4315 pursuing +4314 physically +4313 mutual +4312 mixed +4311 manoeuvre +4310 inclusion +4309 ideas +4308 victory +4307 freed +4306 handling +4305 immigration +4304 production +4303 election +4302 dairy +4301 cultural +4300 country-specific +4299 coal +4298 torture +4297 punishment +4296 cancer +4295 indefinite +4294 awful +4293 mutually +4292 ride +4291 missile +4290 Making +4289 Italian +4288 Greek +4287 Afghan +4286 54 +4285 footsteps +4284 foolishness +4283 phrase +4282 fodder +4281 focussing +4280 olive +4279 fly +4278 flow +4277 flight +4276 fleshed +4275 flee +4274 flat +4273 fixing +4272 fitting +4271 fishermen +4270 fiscal +4269 firing +4268 fires +4267 finishing +4266 finished +4265 finish +4264 fined +4263 fine +4262 finds +4261 unstable +4260 finalised +4259 final +4258 filters +4257 file +4256 democratic +4255 fighters +4254 fetching +4253 feels +4252 feedback +4251 features +4250 featured +4249 feasible +4248 ideals +4247 partisan +4246 favouring +4245 favoured +4244 father +4243 farther +4242 farming +4241 fares +4240 fantastic +4239 famous +4238 families +4237 familiar +4236 disrepair +4235 falling +4234 fallen +4233 hardest +4232 faith +4231 fair +4230 enforce +4229 appreciate +4228 persists +4227 combine +4226 fails +4225 failing +4224 occasion +4223 fade +4222 factors +4221 factories +4220 prosecution +4219 facility +4218 facilitated +4217 facile +4216 ongoing +4215 extremes +4214 extremely +4213 reaction +4212 extraordinarily +4211 extradite +4210 extorted +4209 externally +4208 extensive +4207 comparisons +4206 extending +4205 sympathy +4204 preference +4203 exposure +4202 exposing +4201 exports +4200 exporting +4199 exported +4198 export +4197 exploitation +4196 explicitly +4195 explicit +4194 explain +4193 experiences +4192 experience +4191 generally +4190 rural +4189 expelled +4188 expel +4187 expecting +4186 sit +4185 expand +4184 exists +4183 existed +4182 exile +4181 exhort +4180 exerted +4179 exert +4178 exercised +4177 exempt +4176 exclusively +4175 excluding +4174 exclude +4173 excise +4172 excess +4171 exceptions +4170 exception +4169 except +4168 excellent +4167 ex +4166 evidently +4165 evidence +4164 reincarnation +4163 ever-supportive +4162 ever-rising +4161 love +4160 hurt +4159 effecting +4158 even-handedly +4157 valuable +4156 specialists +4155 restrictions +4154 self-imposed +4153 richer +4152 evacuated +4151 euros +4150 ethnic +4149 estimated +4148 excluded +4147 nurture +4146 equipped +4145 equip +4144 equating +4143 equates +4142 envelope +4141 entry +4140 entrusted +4139 reimbursement +4138 maintenance +4137 visible +4136 enthusiastic +4135 enthusiasm +4134 notions +4133 vague +4132 entertaining +4131 enterprise +4130 entering +4129 referendum +4128 enshrined +4127 remove +4126 gratitude +4125 enhances +4124 resulting +4123 engineering +4122 energy +4121 energies +4120 steps +4119 energetic +4118 ends +4117 endorsed +4116 ended +4115 endeavours +4114 endeavouring +4113 generate +4112 endeavoured +4111 spare +4110 route +4109 masse +4108 employs +4107 structure +4106 employee +4105 emphatically +4104 emphasis +4103 emitted +4102 emissions +4101 emerging +4100 emerged +4099 emerge +4098 embarrassment +4097 embarked +4096 elevate +4095 elephant +4094 forestry +4093 element +4092 electorate +4091 electing +4090 elbow +4089 elaborate +4088 reinstate +4087 edge +4086 rally +4085 easily +4084 eased +4083 ear +4082 e-mail +4081 dynamic +4080 dwindle +4079 begins +4078 lifetime +4077 examination +4076 duped +4075 dumping +4074 dues +4073 specialised +4072 errors +4071 named +4070 driver +4069 drift +4068 dramatic +4067 dragged +4066 draftspeople +4065 draftsman +4064 draft +4063 downstream +4062 tip +4061 southernmost +4060 sustained +4059 Community-level +4058 doomed +4057 embarking +4056 don +4055 dominant +4054 occur +4053 dedicate +4052 tot +4051 fun +4050 servicing +4049 division +4048 divided +4047 diverted +4046 distrustful +4045 distribution +4044 distress +4043 distinct +4042 disservice +4041 disrespect +4040 disregarded +4039 detail +4038 disregard +4037 disquiet +4036 threatens +4035 dispute +4034 disposed +4033 displays +4032 displacing +4031 displace +4030 dismissed +4029 dish +4028 disease +4027 lasting +4026 disproportionately +4025 discriminates +4024 discriminate +4023 discretion +4022 discredited +4021 discouraging +4020 discourage +4019 disclosing +4018 discipline +4017 discharge +4016 discards +4015 discarded +4014 disbursed +4013 proven +4012 disaster +4011 disarm +4010 thoughts +4009 directs +4008 directory +4007 directives +4006 initiated +4005 dire +4004 dignity +4003 difficulty +4002 difficulties +4001 solve +4000 organise +3999 differently +3998 tactic +3997 roles +3996 sustain +3995 apartheid +3994 Mandela +3993 dictates +3992 1.5 +3991 kill +3990 diseases +3989 diarrhoea +3988 diagnosed +3987 devote +3986 devolved +3985 development-performing +3984 detriment +3983 detract +3982 push +3981 determination +3980 deter +3979 detention +3978 detained +3977 destroyed +3976 destabilises +3975 desperate +3974 designated +3973 deserves +3972 deriving +3971 author +3970 deputising +3969 depths +3968 deprive +3967 homes +3966 depleted +3965 depends +3964 depending +3963 departments +3962 denying +3961 permission +3960 demonstrated +3959 demanding +3958 delivers +3957 delivering +3956 deliveries +3955 delight +3954 deliberations +3953 deliver +3952 failed +3951 lunch +3950 delegated +3949 delay +3948 definite +3947 defiance +3946 defer +3945 defects +3944 deeper +3943 dedication +3942 department +3941 dedicated +3940 decorated +3939 decommission +3938 decline +3937 declare +3936 declarations +3935 decision-making +3934 deciding +3933 decides +3932 Shimon +3931 places +3930 deceiving +3929 deceived +3928 deceive +3927 debts +3926 dear +3925 dealers +3924 deadlock +3923 days +3922 dawned +3921 deliberation +3920 dares +3919 dangers +3918 dangerous +3917 damages +3916 damaged +3915 subsistence +3914 cut-back +3913 curve +3912 submission +3911 currently +3910 currency +3909 culture +3908 cry +3907 cruelty +3906 fellow-Muslims +3905 slaughtered +3904 cruelly +3903 crucially +3902 crowing +3901 crowd +3900 cross +3899 crop +3898 criticise +3897 critically +3896 homeless +3895 criminalising +3894 criminalise +3893 cries +3892 credited +3891 creativity +3890 creating +3889 uncertainty +3888 covers +3887 coverage +3886 reinforce +3885 Arafat +3884 persevere +3883 forget +3882 reforms +3881 courage +3880 couples +3879 coupled +3878 coup +3877 Romania +3876 worse +3875 trapped +3874 pre-empt +3873 counterbalance +3872 count +3871 council +3870 prove +3869 lose +3868 misunderstood +3867 one-third +3866 correspond +3865 correlation +3864 correctly +3863 correcting +3862 copyright +3861 coping +3860 coordination +3859 coordinated +3858 FRONTEX +3857 convince +3856 convert +3855 seem +3854 convenient +3853 convenience +3852 controversial +3851 contributes +3850 temporary +3849 contrary +3848 contracts +3847 continuing +3846 continues +3845 continued +3844 fight +3843 detain +3842 continuation +3841 contingent +3840 continent +3839 contented +3838 content +3837 contempt +3836 contaminated +3835 contains +3834 contain +3833 contact +3832 consulting +3831 consultations +3830 suffers +3829 consultation +3828 consult +3827 construction +3826 constrained +3825 constitution +3824 stimulating +3823 constantly +3822 consists +3821 consistently +3820 consignments +3819 consigned +3818 consign +3817 considers +3816 considerations +3815 considerably +3814 consequence +3813 consent +3812 consciousness +3811 connected +3810 congratulations +3809 confronting +3808 confront +3807 periods +3806 spaces +3805 conferred +3804 embark +3803 conference +3802 silent +3801 determined +3800 condolences +3799 conditional +3798 condemned +3797 niche +3796 condemn +3795 concur +3794 conclusions +3793 concessions +3792 exchange +3791 concept +3790 concentrates +3789 preparing +3788 concentrate +3787 conceded +3786 compulsorily +3785 compulsion +3784 compromises +3783 complying +3782 compliments +3781 compliment +3780 complicit +3779 complications +3778 smoothed +3777 competitiveness +3776 examinations +3775 competence +3774 compete +3773 compelled +3772 compel +3771 comparison +3770 compare +3769 company +3768 communicate +3767 trick +3766 nationally +3765 committee +3764 evil +3763 search +3762 commend +3761 comfort +3760 realise +3759 round +3758 safely +3757 play +3756 June +3755 combination +3754 collude +3753 collection +3752 colleague +3751 collapse +3750 cold +3749 coherent +3748 coffers +3747 clutches +3746 cloud +3745 fulfilment +3744 cloning +3743 clinging +3742 clearing +3741 cleared +3740 cleansing +3739 clean +3738 clause +3737 class +3736 clarity +3735 clarification +3734 claiming +3733 education +3732 citizen +3731 cite +3730 circumstances +3729 circulating +3728 circling +3727 chosen +3726 chosaint +3725 choose +3724 chips +3723 childlike +3722 checking +3721 checked +3720 cheaply +3719 chase +3718 charging +3717 characteristics +3716 channelled +3715 changing +3714 changed +3713 surfacing +3712 chairman +3711 cessation +3710 certainty +3709 create +3708 improved +3707 centres +3706 centre +3705 cent +3704 censure +3703 celebration +3702 caution +3701 unfair +3700 fear +3699 reflection +3698 cater +3697 category +3696 catches +3695 casual +3694 casting +3693 recipient +3692 cast +3691 details +3690 case-by-case +3689 sums +3688 carte +3687 carrying +3686 trials +3685 cares +3684 cared +3683 deeply +3682 cards +3681 carcass +3680 dioxide +3679 carbon +3678 car +3677 capacity +3676 understanding +3675 maintaining +3674 capable +3673 capability +3672 cap +3671 wait +3670 candidates +3669 trust +3668 instances +3667 stick +3666 campaigners +3665 sobering +3664 keeps +3663 calmly +3662 bypassing +3661 yourselves +3660 apology +3659 waving +3658 virtue +3657 unlocking +3656 conceal +3655 tiny +3654 price +3653 racist +3652 carriers +3651 thanking +3650 telling +3649 switched +3648 strengthening +3647 stoning +3646 starts +3645 smaller +3644 slaughtering +3643 showing +3642 rigid +3641 presenting +3640 post +3639 persisting +3638 penal +3637 ordering +3636 easy +3635 resorting +3634 lending +3633 introducing +3632 hanging +3631 giants +3630 march +3629 exempting +3628 cigarette +3627 default +3626 decreasing +3625 calculating +3624 buying +3623 race +3622 blast +3621 Hizbollah +3620 Staes +3619 Bart +3618 rely +3617 quality +3616 bursting +3615 burdening +3614 conclusion +3613 renewed +3612 mode +3611 transport +3610 broken +3609 Albania +3608 broke +3607 broadly +3606 brings +3605 stability +3604 bridge +3603 breeding +3602 earth +3601 breaks +3600 breaking +3599 breadwinners +3598 breaches +3597 branding +3596 branded +3595 bracket +3594 boys +3593 bowing +3592 bow +3591 bounds +3590 bought +3589 bottom +3588 bothers +3587 bother +3586 guilty +3585 whoever +3584 loosely +3583 born +3582 borders +3581 bon +3580 bold +3579 boils +3578 boil +3577 bogged +3576 shop +3575 repair +3574 boats +3573 boat +3572 blocked +3571 block +3570 blessing +3569 blasphemy +3568 bits +3567 birth +3566 billion +3565 bill +3564 bidding +3563 bid +3562 conglomerates +3561 economy +3560 choices +3559 betraying +3558 bestowed +3557 besides +3556 beside +3555 beset +3554 bent +3553 benefited +3552 beneficiaries +3551 belongs +3550 grouping +3549 belonged +3548 unchangeable +3547 belief +3546 justify +3545 sold +3544 socially +3543 routed +3542 robbed +3541 replaced +3540 reluctant +3539 recorded +3538 jeopardy +3537 owed +3536 neglected +3535 head +3534 kicked +3533 inflicted +3532 ransom +3531 Guantánamo +3530 guided +3529 fully +3528 disrupted +3527 specially +3526 worded +3525 closed +3524 bars +3523 behaving +3522 EFD +3521 cooperate +3520 begun +3519 show +3518 begin +3517 began +3516 beg +3515 horse +3514 late +3513 thin +3512 wearing +3511 composting +3510 discredit +3509 Josu +3508 substituted +3507 shown +3506 replicated +3505 poised +3504 pioneers +3503 notified +3502 lodged +3501 instrumental +3500 highlighted +3499 flown +3498 filed +3497 devised +3496 defined +3495 conveyed +3494 confined +3493 compounded +3492 compensated +3491 carefully +3490 stretched +3489 latest +3488 greatest +3487 dead +3486 gases +3485 boundaries +3484 banana +3483 otherwise +3482 beans +3481 withheld +3480 wheeled +3479 verified +3478 triggered +3477 traced +3476 thanked +3475 swept +3474 suspended +3473 successful +3472 discrimination +3471 subjected +3470 spent +3469 sorely +3468 judgment +3467 silenced +3466 seized +3465 fulfilling +3464 resolved +3463 reserves +3462 repatriated +3461 repaid +3460 relying +3459 released +3458 reinstated +3457 recommended +3456 street +3455 pursued +3454 presented +3453 premature +3452 preceded +3451 practised +3450 poured +3449 postponed +3448 training +3447 passed +3446 opened +3445 scrutiny +3444 noted +3443 gift +3442 cautious +3441 misled +3440 measured +3439 matched +3438 listed +3437 limited +3436 lacking +3435 labelled +3434 enough +3433 interested +3432 decommissioning +3431 insufficient +3430 instructed +3429 installed +3428 entirety +3427 henceforth +3426 heartily +3425 wholesale +3424 handed +3423 guarantees +3422 grabbing +3421 governed +3420 decent +3419 generous +3418 employ +3417 beneficial +3416 financially +3415 fed +3414 ensured +3413 enhanced +3412 endowed +3411 enabled +3410 drafted +3409 distributed +3408 displayed +3407 Swoboda +3406 discussed +3405 differences +3404 devoted +3403 detrimental +3402 desired +3401 desirable +3400 deprived +3399 deployed +3398 delivered +3397 deferred +3396 debated +3395 considered +3394 consensus +3393 concluded +3392 concentrating +3391 communicated +3390 built +3389 broadened +3388 battles +3387 succeed +3386 basing +3385 basically +3384 farms +3383 barrier +3382 barred +3381 banned +3380 manager +3379 gene +3378 ban +3377 rolling +3376 ball +3375 badly +3374 backward +3373 shows +3372 conflict +3371 background +3370 haunt +3369 operation +3368 guarantee +3367 forth +3366 axe +3365 furiously +3364 dubious +3363 recommendations +3362 awaited +3361 avoided +3360 cultivation +3359 student +3358 avail +3357 autumn +3356 authors +3355 authority +3354 authorises +3353 authorisation +3352 audit +3351 attuned +3350 error +3349 design +3348 attributable +3347 attracts +3346 attracted +3345 attract +3344 integrate +3343 exploit +3342 stamp +3341 evaluate +3340 ease +3339 dissenters +3338 attach +3337 atmosphere +3336 zero +3335 fell +3334 juncture +3333 sight +3332 root +3331 realisation +3330 Intergovernmental +3329 next +3328 Middle +3327 hurdle +3326 feet +3325 community +3324 beck +3323 Presidents +3322 tens +3321 notice +3320 slightly +3319 sharing +3318 secretary-general +3317 sea +3316 safeguarding +3315 room +3314 reducing +3313 reckoning +3312 reading +3311 quite +3310 municipal +3309 ministerial +3308 liberty +3307 ten +3306 converted +3305 caved +3304 helm +3303 fundamentally +3302 fault +3301 exploiting +3300 crushing +3299 conveying +3298 concluding +3297 servant +3296 charter +3295 balanced +3294 hoc +3293 ad +3292 stroke +3291 steam +3290 date +3289 halfway +3288 loss +3287 complete +3286 Chief +3285 40 +3284 15 +3283 11.10 +3282 1.00 +3281 seeker +3280 assured +3279 assure +3278 assumption +3277 assuming +3276 assumed +3275 associate +3274 assisted +3273 sacked +3272 assistants +3271 assigned +3270 assent +3269 delegates +3268 assembled +3267 assaulted +3266 assassination +3265 assailing +3264 aspired +3263 aspect +3262 nail +3261 periodically +3260 aside +3259 submit +3258 happens +3257 facilitating +3256 near +3255 render +3254 entered +3253 guests +3252 subjects +3251 strong +3250 stated +3249 soon +3248 penalisation +3247 stands +3246 pains +3245 enters +3244 deals +3243 importers +3242 bribed +3241 gifts +3240 friendly +3239 follows +3238 everywhere +3237 elsewhere +3236 effective +3235 cheating +3234 behaviour +3233 unity +3232 Sweden +3231 Finance +3230 incompatible +3229 articles +3228 article +3227 arrogantly +3226 arriving +3225 arrives +3224 arrival +3223 arresting +3222 arrested +3221 arrest +3220 arranging +3219 ceremony +3218 arranged +3217 arrange +3216 table +3215 arm +3214 arising +3213 arises +3212 arise +3211 flexibility +3210 witnessing +3209 promoted +3208 widely +3207 unable +3206 ultimately +3205 translated +3204 transferred +3203 told +3202 monitor +3201 maintain +3200 fulfilled +3199 delayed +3198 avoid +3197 pushed +3196 cancellation +3195 tantamount +3194 suited +3193 subordinated +3192 turmoil +3191 slapping +3190 resisting +3189 resistant +3188 rejecting +3187 death +3186 pushing +3185 prohibited +3184 well-known +3183 pretty +3182 terrorists +3181 preferable +3180 polluted +3179 planning +3178 piled +3177 tempting +3176 historical +3175 felt +3174 dribs +3173 compensating +3172 fooled +3171 expected +3170 missed +3169 keen +3168 issued +3167 possession +3166 impossible +3165 heading +3164 invested +3163 rigorous +3162 frequent +3161 flooding +3160 substantiate +3159 figures +3158 in-built +3157 equivalent +3156 equated +3155 duty-bound +3154 driven +3153 displaying +3152 demonstrating +3151 bit +3150 champing +3149 daily +3148 recognised +3147 interrogated +3146 defended +3145 complied +3144 forces +3143 beginning +3142 automatically +3141 stake +3140 apétit +3139 Beijing +3138 approved +3137 short-term +3136 appropriately +3135 appropriated +3134 exercising +3133 approaches +3132 preparation +3131 tabling +3130 apportioned +3129 appointed +3128 appoint +3127 sub-area +3126 applications +3125 applause +3124 appended +3123 seek +3122 evoke +3121 jump +3120 armchair +3119 apparently +3118 apparent +3117 anywhere +3116 anyway +3115 satisfaction +3114 apart +3113 anybody +3112 truck +3111 over-regulate +3110 tendency +3109 solution +3108 objections +3107 intervention +3106 interference +3105 infringements +3104 influence +3103 description +3102 anxious +3101 anxiety +3100 anticipation +3099 manifests +3098 anti-Semitism +3097 answered +3096 annexed +3095 animal-based +3094 withdrawing +3093 maintained +3092 competitively +3091 violates +3090 verse +3089 utterly +3088 uses +3087 uncertainties +3086 tour +3085 reality +3084 verify +3083 restore +3082 disputes +3081 resolve +3080 improve +3079 duly +3078 reassured +3077 indulges +3076 patients +3075 grass +3074 subsequently +3073 tangible +3072 talking +3071 praise +3070 stronger +3069 started +3068 spiritual +3067 smoothly +3066 sisters +3065 rooted +3064 revision +3063 responsibilities +3062 request +3061 reporting +3060 re-establish +3059 ravaging +3058 sleight +3057 pure +3056 proposals +3055 prison +3054 locked +3053 penalties +3052 opening +3051 occasionally +3050 seriously +3049 nitrates +3048 naming +3047 assistant +3046 monitored +3045 modelled +3044 enterprises +3043 medium-sized +3042 product +3041 medicinal +3040 malfunctions +3039 learning +3038 understood +3037 ignoring +3036 structured +3035 internally +3034 intelligence +3033 informing +3032 ineffective +3031 link +3030 improving +3029 growth +3028 grief +3027 geared +3026 frozen +3025 outset +3024 forwards +3023 forwarded +3022 foremost +3021 publications +3020 tackling +3019 equally +3018 effectively +3017 educating +3016 dry +3015 drink +3014 disseminated +3013 detailed +3012 depth +3011 contractors +3010 congratulating +3009 comprehensive +3008 clinical +3007 civic +3006 choosing +3005 rapists +3004 meant +3003 burns +3002 blaming +3001 assists +3000 preserving +2999 crucial +2998 traditions +2997 culinary +2996 ancient +2995 undertaking +2994 honour +2993 obligation +2992 invitation +2991 impression +2990 fulfil +2989 boost +2988 hour +2987 explanation +2986 exemption +2985 seeing +2984 concrete +2983 endeavour +2982 encouragement +2981 shut +2980 argument +2979 amounting +2978 amounted +2977 reassurance +2976 research +2975 earmarked +2974 traditional +2973 hosts +2972 amendments +2971 inspired +2970 ambiguity +2969 sorry +2968 reminded +2967 quoting +2966 opposed +2965 partial +2964 eligible +2963 directing +2962 resulted +2961 match +2960 argue +2959 altogether +2958 drafting +2957 aware +2956 alternatives +2955 compliance +2954 grateful +2953 delegation +2952 supports +2951 counter +2950 run +2949 primarily +2948 pipeline +2947 evident +2946 entitled +2945 disassociated +2944 tested +2943 bears +2942 pointed +2941 recover +2940 managing +2939 barely +2938 stereotypical +2937 breathing +2936 died +2935 almost +2934 allusion +2933 alluded +2932 manufacturers +2931 divert +2930 votes +2929 allowance +2928 succumb +2927 allotted +2926 allocation +2925 allocated +2924 allocate +2923 alla +2922 islands +2921 pulling +2920 pending +2919 sets +2918 luck +2917 care +2916 aligning +2915 alert +2914 alarmed +2913 al-Qa +2912 akin +2911 airports +2910 airline +2909 aircraft +2908 disasters +2907 aiming +2906 removing +2905 placing +2904 engaging +2903 countering +2902 aimed +2901 mitigating +2900 aiding +2899 aided +2898 forthcoming +2897 agrees +2896 agreeing +2895 refrain +2894 Year +2893 New +2892 calculate +2891 ago +2890 aggravated +2889 agency +2888 trafficking +2887 odds +2886 competition +2885 Colonel +2884 confirming +2883 overcome +2882 loud +2881 afterwards +2880 afternoons +2879 aftermath +2878 five +2877 school +2876 listening +2875 characters +2874 entrance +2873 guidelines +2872 aforesaid +2871 affront +2870 afforded +2869 affirmed +2868 running +2867 water +2866 image +2865 advocated +2864 adviser +2863 advised +2862 advise +2861 adversely +2860 advantages +2859 advanced +2858 advance +2857 adrift +2856 adoption +2855 reluctantly +2854 fit +2853 adopt +2852 admitting +2851 admitted +2850 admissible +2849 lies +2848 adjustments +2847 adjusting +2846 adjust +2845 adjacent +2844 adherence +2843 adhered +2842 adhere +2841 adequate +2840 addressed +2839 dimension +2838 addiction +2837 adapting +2836 adapted +2835 economies +2834 adapt +2833 liable +2832 hamper +2831 retained +2830 improvements +2829 activity +2828 actively +2827 active +2826 Ukraine +2825 acted +2824 yours +2823 watchdogs +2822 successfully +2821 acquired +2820 acknowledged +2819 achievements +2818 aforementioned +2817 favourable +2816 achieved +2815 accuses +2814 accuse +2813 accurate +2812 accumulated +2811 herself +2810 accruing +2809 accounted +2808 protocol +2807 trip +2806 accomplished +2805 accomplices +2804 accompany +2803 accompanied +2802 accommodation +2801 accommodating +2800 accommodated +2799 waiting +2798 accidents +2797 accessible +2796 accessed +2795 affordable +2794 accepted +2793 path +2792 acceptance +2791 acceptable +2790 acceding +2789 accede +2788 abuses +2787 absurd +2786 absorbed +2785 Amendment +2784 objection +2783 difference +2782 disgrace +2781 absolute +2780 absent +2779 abrupt +2778 abroad +2777 happening +2776 captivity +2775 animals +2774 accepting +2773 lavish +2772 appropriateness +2771 coniferous +2770 hardwood +2769 criticisms +2768 completing +2767 changes +2766 helpful +2765 actually +2764 abolishing +2763 aboard +2762 Daphne +2761 rid +2760 television +2759 conflicting +2758 reconcile +2757 learn +2756 implement +2755 endorse +2754 detect +2753 collect +2752 entire +2751 attack +2750 afford +2749 acquire +2748 borrow +2747 abide +2746 abduction +2745 abducted +2744 abandoning +2743 attempt +2742 yardstick +2741 worrying +2740 woman +2739 whole +2738 weapon +2737 warning +2736 warm +2735 establishing +2734 voluntary +2733 receiving +2732 converting +2731 variety +2730 useful +2729 representation +2728 reasonably +2727 track +2726 total +2725 schedule +2724 threat +2723 miles +2722 switch +2721 substantial +2720 step +2719 pursuant +2718 statement +2717 spade +2716 source +2715 inventory +2714 sound +2713 significant +2712 sign +2711 shot +2710 shortcut +2709 shift +2708 series +2707 scheme +2706 risk +2705 requirement +2704 occurrence +2703 repeat +2702 reliance +2701 rejection +2700 registered +2699 recurrence +2698 administering +2697 rare +2696 proportion +2695 waters +2694 presentation +2693 prerequisite +2692 precondition +2691 precarious +2690 practitioner +2689 potential +2688 dialogue +2687 picture +2686 penalty +2685 partner +2684 word +2683 fans +2682 football +2681 massive +2680 mandate +2679 majority +2678 major +2677 threshold +2676 low +2675 loved +2674 hot +2673 discover +2672 reconstruct +2671 livelihood +2670 playing +2669 operations +2668 laughing +2667 gathering +2666 lack +2665 supporter +2664 hell +2663 halt +2662 habit +2661 grip +2660 greater +2659 wrong +2658 fresh +2657 fortunate +2656 foothold +2655 flash +2654 firm +2653 minutes +2652 feature +2651 facelift +2650 drain +2649 Gaza +2648 document +2647 distance +2646 fashion +2645 disorganised +2644 disappointment +2643 deterrent +2642 desire +2641 definitive +2640 declaration +2639 blow +2638 cruel +2637 criticism +2636 crisis +2635 crass +2634 courageous +2633 flowers +2632 counterpart +2631 factor +2630 contributory +2629 condition +2628 complaint +2627 leader +2626 communication +2625 spirit +2624 collective +2623 institutions +2622 relationship +2621 city +2620 choice +2619 chance +2618 item +2617 breath +2616 blind +2615 insight +2614 seat +2613 Zanna +2612 Yes +2611 Yasser +2610 Wise +2609 White +2608 Watson +2607 Volkskammer +2606 Vice-President +2605 VAT +2604 Use +2603 Prevention +2602 Fraud +2601 Coordination +2600 Unit +2599 Union-wide +2598 lend +2597 Uganda +2596 resettlement +2595 blacklist +2594 UN +2593 earthquake +2592 Turkey +2591 turning +2590 historic +2589 Tunisia +2588 Transport +2587 Tourism +2586 Time +2585 The +2584 Taiwan +2583 System +2582 Swedish +2581 half +2580 Spanish-speaking +2579 expressed +2578 Spain +2577 versus +2576 South +2575 Simon +2574 Serbs +2573 Santa +2572 SK +2571 Russian +2570 Romanians +2569 Review +2568 Lama +2567 Dalai +2566 Representative +2565 Regulations +2564 Regulation +2563 Red +2562 BSE +2561 Recommendations +2560 Race +2559 Quality +2558 Prize +2557 Prime +2556 lots +2555 drew +2554 Presidency +2553 Portuguese +2552 Point +2551 Peter +2550 Pass +2549 Paper +2548 Osama +2547 attends +2546 Ombudsman +2545 Nos +2544 Networks +2543 National +2542 Mrs. +2541 Wijsenbeek +2540 President-in-Office +2539 mentioned +2538 Mulder +2537 Monnet +2536 Monetary +2535 sufficiently +2534 Ministerial +2533 Foreign +2532 Minister +2531 Men +2530 conform +2529 partners +2528 Madam +2527 MKO +2526 Lyon +2525 Act +2524 Leave +2523 touches +2522 Kittelmann +2521 Justice +2520 Joe +2519 It +2518 Irish +2517 Indonesia +2516 India +2515 Transparency +2514 published +2513 Index +2512 Independents +2511 Burundi +2510 thoroughly +2509 success +2508 clarify +2507 approaching +2506 demonstrate +2505 doubt +2504 reply +2503 read +2502 moan +2501 rushed +2500 highlight +2499 spell +2498 urgency +2497 managed +2496 listen +2495 spoken +2494 congratulated +2493 floor +2492 dare +2491 sleep +2490 caught +2489 became +2488 arrived +2487 willing +2486 receptive +2485 looking +2484 acting +2483 amazed +2482 awaiting +2481 adamant +2480 Human +2479 Portugal +2478 deny +2477 Police +2476 Head +2475 eve +2474 Haifa +2473 Hague +2472 HTAs +2471 asking +2470 nominate +2469 Greens +2468 abeyance +2467 remain +2466 Greece +2465 owes +2464 Germany +2463 German-speaking +2462 German +2461 Georgia +2460 Funds +2459 sending +2458 Frontex +2457 second +2456 comes +2455 France +2454 Finland +2453 FAA +2452 Europol +2451 European-level +2450 pressurised +2449 Foundation +2448 enhancement +2447 Europe-wide +2446 Nations +2445 citizenship +2444 Euro-ACP +2443 Timor +2442 Earl +2441 ESA +2440 Ingushetia +2439 humanitarian +2438 financed +2437 ECHO +2436 Distance +2435 Director +2434 Directive +2433 Energy +2432 Development +2431 Deputies +2430 Magistris +2429 De +2428 Davos +2427 Dalia +2426 Cuban +2425 Croatia +2424 Court +2423 Councils +2422 Ministers +2421 followed +2420 referred +2419 Corbett +2418 Constant +2417 Constable +2416 Conference +2415 Market +2414 Internal +2413 Budgets +2412 instruments +2411 safeguard +2410 intends +2409 Christian +2408 China +2407 Chairman +2406 Centre +2405 Cato +2404 Card +2403 Culture +2402 Capital +2401 Bush +2400 Bureau +2399 hired +2398 Bulgarians +2397 Bulgaria +2396 Government +2395 British +2394 Brazil +2393 Belarus +2392 Austria +2391 puts +2390 Auditors +2389 Assurance +2388 Article +2387 Ariel +2386 delegations +2385 Israeli +2384 Arab +2383 Annex +2382 Amsterdam +2381 America +2380 Fox +2379 Amber +2378 Ambassador +2377 Algeria +2376 Aids +2375 Fundamental +2374 Agency +2373 dictators +2372 Republic +2371 Afghanistan +2370 Industrial +2369 Affairs +2368 A +2367 envisaged +2366 ? +2365 champion +2364 stimulate +2363 efficiency +2362 technically +2361 Galicia +2360 went +2359 12 +2358 8 +2357 79 +2356 51 +2355 50 +2354 paragraph +2353 4 +2352 39 +2351 35 +2350 300 +2349 3.00 +2348 2011 +2347 2006-2010 +2346 2007 +2345 2005 +2344 2006 +2343 2003 +2342 2.3 +2341 2000 +2340 1999 +2339 1997 +2338 1993 +2337 1991 +2336 worth +2335 120 +2334 tonnes +2333 Yugoslav +2332 00 +2331 kg +2330 ... +2329 participating +2328 thousand +2327 summit +2326 organisations +2325 Palestinian +2324 programmes +2323 stopped +2322 naturally +2321 practices +2320 nevertheless +2319 killed +2318 1984 +2317 ever +2316 NL +2315 expire +2314 maybe +2313 video +2312 prepare +2311 butter +2310 representing +2309 confronted +2308 albeit +2307 2009 +2306 / +2305 C6-0051 +2304 PT +2303 outcome +2302 equal +2301 enlargement +2300 pass +2299 fore +2298 why +2297 suffer +2296 falsified +2295 recruited +2294 book +2293 takes +2292 causing +2291 reduced +2290 backing +2289 customer +2288 enables +2287 creates +2286 mistakes +2285 watching +2284 counting +2283 ought +2282 quickly +2281 moved +2280 destroying +2279 surely +2278 slowly +2277 wanted +2276 vigorous +2275 via +2274 uniquely +2273 change +2272 decided +2271 unilaterally +2270 settle +2269 refuse +2268 carriages +2267 lay +2266 largely +2265 indicate +2264 impose +2263 expect +2262 condone +2261 combat +2260 clone +2259 catch +2258 breed +2257 overturn +2256 perfectly +2255 incurred +2254 fired +2253 extended +2252 deducted +2251 bound +2250 appearances +2249 outward +2248 large +2247 Patten +2246 Kosovo +2245 enabling +2244 thus +2243 voting +2242 concession +2241 afternoon +2240 prepared +2239 charged +2238 penalising +2237 risking +2236 pursue +2235 trend +2234 negative +2233 valid +2232 decide +2231 Fisheries +2230 wise +2229 tend +2228 comments +2227 supported +2226 starting +2225 shipped +2224 several +2223 seen +2222 seated +2221 respectively +2220 regardless +2219 single +2218 theory +2217 putting +2216 prompted +2215 possibly +2214 personally +2213 permitted +2212 overnight +2211 amendment +2210 200 +2209 oppressed +2208 encountered +2207 grounds +2206 cooperation +2205 technical +2204 pre-accession +2203 instructions +2202 environmental +2201 assessing +2200 EU-Serbia +2199 necessity +2198 explained +2197 infections +2196 viral +2195 nothing +2194 unlike +2193 afraid +2192 normally +2191 nonetheless +2190 moreover +2189 merely +2188 night +2187 awake +2186 lie +2185 lead +2184 petition +2183 judging +2182 responds +2181 contributed +2180 isolate +2179 invest +2178 intercepted +2177 intend +2176 incidentally +2175 English +2174 native +2173 violation +2172 programming +2171 tradition +2170 Agenda +2169 spite +2168 short +2167 suspend +2166 American +2165 uncertain +2164 recent +2163 hearts +2162 heart +2161 emotional +2160 treated +2159 2010 +2158 early +2157 doing +2156 debating +2155 ways +2154 broad +2153 brief +2152 try +2151 generating +2150 manner +2149 couple +2148 journalists +2147 Poland +2146 Belgium +2145 consumption +2144 reduce +2143 harmonize +2142 hidden +2141 hence +2140 helped +2139 refused +2138 point +2137 having +2136 peeled +2135 landing +2134 adverse +2133 haunted +2132 deported +2131 gradually +2130 got +2129 frankly +2128 unemployment +2127 voted +2126 standing +2125 opinions +2124 thing +2123 unstintingly +2122 himself +2121 instance +2120 formal +2119 : +2118 talks +2117 follow +2116 focus +2115 industry +2114 automobile +2113 favours +2112 faced +2111 exposed +2110 exceptionally +2109 eventually +2108 though +2107 suspicions +2106 OLAF +2105 established +2104 essentially +2103 especially +2102 encourages +2101 16 +2100 22 +2099 educate +2098 earlier +2097 period +2096 transitional +2095 heavy +2094 drunk +2093 drawing +2092 destined +2091 despite +2090 defected +2089 cities +2088 crime +2087 velocity +2086 impact +2085 corresponds +2084 contribute +2083 consequently +2082 confer +2081 directly +2080 conducted +2079 condemning +2078 da +2077 Lithuania +2076 co-rapporteur +2075 certainly +2074 careful +2073 escape +2072 cannot +2071 definition +2070 importantly +2069 building +2068 happen +2067 standstill +2066 ladies +2065 bearing +2064 undertaken +2063 proved +2062 conducting +2061 accorded +2060 eco-tax +2059 attended +2058 attempting +2057 attacking +2056 evening +2055 yesterday +2054 agenda +2053 stage +2052 glance +2051 institution +2050 aspiring +2049 asks +2048 witness +2047 1992 +2046 recently +2045 says +2044 laid +2043 provides +2042 he +2041 follow-up +2040 said +2039 vulnerable +2038 answer +2037 another +2036 undermine +2035 depend +2034 undermining +2033 him +2032 thereby +2031 proceed +2030 allowed +2029 printed +2028 conversion +2027 alone +2026 peoples +2025 conclude +2024 amounts +2023 Balkan +2022 ready +2021 always +2020 practical +2019 gives +2018 safeguards +2017 critical +2016 launched +2015 affecting +2014 24 +2013 adopting +2012 additionally +2011 adding +2010 plan +2009 confirmed +2008 Wednesday +2007 Thursday +2006 Protection +2005 Health +2004 Pasqua +2003 express +2002 Genoa +2001 once +2000 emphasise +1999 happened +1998 think +1997 came +1996 Torres +1995 Mrs +1994 pleased +1993 agree +1992 absolutely +1991 Bouler +1990 Le +1989 Gaëlle +1988 Media +1987 Education +1986 EU-wide +1985 Policy +1984 Defence +1983 Security +1982 Common +1981 Commissioner +1980 11 +1979 9 +1978 million +1977 5 +1976 17 +1975 10 +1974 defend +1973 categories +1972 Rules +1971 Procedure +1970 Critics +1969 At +1968 fr +1967 If +1966 de +1965 upgraded +1964 WENRA +1963 MS +1962 FTT +1961 In +1960 FR +1959 ECAs +1958 APF +1957 3 +1956 1 +1955 yes +1954 God +1953 Nearer +1952 As +1951 persecute +1950 't +1949 havens +1948 sitting +1947 ruling +1946 powers +1945 instead +1944 organisation +1943 Agriculture +1942 input +1941 hunger +1940 initiatives +1939 diplomatic +1938 example +1937 claims +1936 admittance +1935 're +1934 'll +1933 à +1932 appears +1931 signing +1930 punishing +1929 becoming +1928 Achilles +1927 housing +1926 purpose +1925 premises +1924 motivation +1923 deficiencies +1922 heel +1921 fees +1920 arrangements +1919 ] +1918 never +1917 [ +1916 high-level +1915 women +1914 % +1913 $ +1912 ! +1911 – +1910 yourself +1909 yet +1908 worldwide +1907 kept +1906 worked +1905 words +1904 wording +1903 won +1902 traditionally +1901 usual +1900 internal +1899 competent +1898 high-intensity +1897 electronic +1896 referral +1895 winners +1894 sort +1893 wild +1892 wide +1891 whose +1890 guard +1889 live +1888 whilst +1887 past +1886 discuss +1885 whatsoever +1884 welcome +1883 weight +1882 feel +1881 waste +1880 want +1879 war +1878 visited +1877 visit +1876 violators +1875 vested +1874 users +1873 remember +1872 urgent +1871 upholds +1870 unused +1869 cows +1868 unsuccessful +1867 unless +1866 undermines +1865 Stability +1864 types +1863 trying +1862 true +1861 tried +1860 treating +1859 travellers +1858 transactions +1857 meeting +1856 toward +1855 today +1854 young +1853 wood +1852 withdraw +1851 vouched-for +1850 veterinary +1849 value +1848 Europeans +1847 urge +1846 understand +1845 trial +1844 babies +1843 travel +1842 touch +1841 growers +1840 tobacco +1839 tinkering +1838 months +1837 found +1836 fields +1835 enjoyed +1834 colleagues +1833 already +1832 analysis +1831 devices +1830 No +1829 ‘ +1828 wishes +1827 supervisory +1826 sittings +1825 simplification +1824 sessional +1823 selective +1822 sectoral +1821 respective +1820 questions +1819 pursuit +1818 provision +1817 partnership +1816 parent +1815 opportunities +1814 nuts +1813 obligatory +1812 non +1811 news +1810 newly +1809 nearest +1808 state +1807 mill +1806 material +1805 master +1804 domination +1803 lives +1802 lethal +1801 joint +1800 idea +1799 bidder +1798 highest +1797 ground +1796 nations +1795 observe +1794 extension +1793 expenditure +1792 euro +1791 enormous +1790 dismantling +1789 disadvantage +1788 development +1787 defence +1786 criteria +1785 camp +1784 collecting +1783 bank +1782 bottle +1781 arrangement +1780 arguments +1779 ambitions +1778 aims +1777 procedure +1776 agreed +1775 French +1774 overall +1773 Burmese +1772 Bank +1771 symbols +1770 suit +1769 study +1768 structural +1767 balance +1766 strike +1765 records +1764 starter +1763 specific +1762 shoulder +1761 shared +1760 separate +1759 involvement +1758 secure +1757 scientific +1756 resolving +1755 matters +1754 regulate +1753 register +1752 rebut +1751 quote +1750 pull +1749 producers +1748 processing +1747 previous +1746 poorer +1745 physical +1744 petitioners +1743 passenger +1742 outside +1741 honoured +1740 operate +1739 official +1738 obtain +1737 non-member +1736 motor +1735 migrants +1734 managerial +1733 decisions +1732 mail +1731 lorries +1730 locate +1729 advantage +1728 items +1727 investors +1726 investment +1725 introduce +1724 without +1723 insalubrious +1722 incentives +1721 identify +1720 high-powered +1719 health +1718 foreign +1717 fool +1716 fishing +1715 finance +1714 squarely +1713 external +1712 expose +1711 executive +1710 exclusive +1709 exactly +1708 projects +1707 environment-friendly +1706 ensure +1705 engage +1704 embrace +1703 electromagnetic +1702 disabled +1701 diploma +1700 develop +1699 determine +1698 departmental +1697 cut +1696 criticize +1695 cope +1694 coordinate +1693 contemporary +1692 consumer +1691 confirm +1690 confine +1689 commit +1688 commercial +1687 build +1686 bombers +1685 bind +1684 full +1683 turned +1682 introduced +1681 implemented +1680 done +1679 enjoy +1678 base +1677 bar +1676 attaining +1675 asylum +1674 believe +1673 goals +1672 traffic +1671 accept +1670 abolish +1669 abandon +1668 strict +1667 shortage +1666 cost-effectiveness +1665 Serbian +1664 Luxembourg +1663 JEREMIE +1662 HKSAR +1661 Default +1660 Credit +1659 C +1658 ACP +1657 100 +1656 6 +1655 ties +1654 thrown +1653 throughout +1652 report +1651 independent +1650 engulf +1649 threatening +1648 thought +1647 producing +1646 presentations +1645 looming +1644 contained +1643 thinking +1642 treat +1641 therefore +1640 themselves +1639 retain +1638 component +1637 worst +1636 welfare +1635 views +1634 troublemakers +1633 tributaries +1632 breeders +1631 status +1630 savings +1629 salaries +1628 rest +1627 resolution +1626 rescue +1625 reputation +1624 books +1623 regional +1622 7 +1621 region +1620 rebellion +1619 rationing +1618 range +1617 possibility +1616 located +1615 ports +1614 prisoners +1613 perpetrators +1612 package +1611 insurgency +1610 meetings +1609 mass +1608 margins +1607 Lisbon +1606 goal +1605 body +1604 main +1603 underworld +1602 letters +1601 least- +1600 ) +1599 formed +1598 law +1597 language +1596 key +1595 island +1594 introduction +1593 intended +1592 group +1591 good +1590 gentlemen +1589 existence +1588 excessive +1587 excesses +1586 essential +1585 eager +1584 directive +1583 deficits +1582 criminal +1581 courts +1580 compromise +1579 common +1578 challenges +1577 causes +1576 nature +1575 borderless +1574 bird +1573 alleged +1572 accessing +1571 Mister +1570 revoke +1569 Management +1568 Legislature +1567 Joint +1566 House +1565 Finnish +1564 Croatians +1563 implementing +1562 Pacific +1561 Caribbean +1560 African +1559 there +1558 important +1557 tending +1556 taxation +1555 tariffs +1554 targeting +1553 target +1552 talk +1551 taking +1550 strain +1549 tabled +1548 system +1547 surety +1546 sure +1545 original +1544 supplies +1543 suppliers +1542 super +1541 suffered +1540 subsidies +1539 subsequent +1538 submitted +1537 subcontractors +1536 students +1535 struck +1534 strongly +1533 stress +1532 strengthen +1531 store +1530 standards +1529 squeeze +1528 spot +1527 spoke +1526 speech +1525 speaking +1524 speak +1523 sought +1522 somewhere +1521 sometimes +1520 something +1519 someone +1518 solutions +1517 Africa +1516 solidarity +1515 solely +1514 sole +1513 tankers +1512 small +1511 net +1510 slip +1509 similar +1508 signals +1507 signal +1506 showed +1505 shipyards +1504 ships +1503 urged +1502 she +1501 shame +1500 shall +1499 serving +1498 simply +1497 senior +1496 send +1495 seems +1494 securing +1493 sectors +1492 secondly +1491 screening +1490 schemes +1489 scene +1488 saying +1487 workforce +1486 rushing +1485 rules +1484 rule +1483 roots +1482 rolled +1481 membership +1480 road +1479 rise +1478 reward +1477 review +1476 reversed +1475 restricted +1474 responsibility +1473 response +1472 respond +1471 respecting +1470 requiring +1469 required +1468 representatives +1467 average +1466 remote +1465 remind +1464 release +1463 relatives +1462 relations +1461 port +1460 relates +1459 related +1458 relate +1457 until +1456 rekindled +1455 reign +1454 framework +1453 regulatory +1452 visits +1451 regular +1450 regimes +1449 regime +1448 heartfelt +1447 refugees +1446 milk +1445 referring +1444 recruitment +1443 recourse +1442 record +1441 recipients +1440 received +1439 reaches +1438 reach +1437 rationality +1436 reminiscent +1435 rate +1434 raise +1433 quicker +1432 purse +1431 purposes +1430 demand +1429 providers +1428 protocols +1427 protects +1426 protect +1425 proposed +1424 property +1423 properly +1422 programme +1421 profit +1420 processes +1419 used +1418 procedures +1417 problem +1416 principle +1415 prevented +1414 press +1413 preserve +1412 presently +1411 presence +1410 preparations +1409 precisely +1408 practitioners +1407 potentially +1406 poor +1405 pointing +1404 plight +1403 players +1402 played +1401 plans +1400 plane +1399 placed +1398 pictures +1397 pertaining +1396 persuade +1395 personal +1394 perpetrated +1393 specifically +1392 perhaps +1391 per +1390 effected +1389 payments +1388 payers +1387 tribute +1386 party +1385 participation +1384 participate +1383 participants +1382 parade +1381 overtake +1380 carpet +1379 outrages +1378 parts +1377 accommodate +1376 exist +1375 or +1374 opposite +1373 oppose +1372 opponents +1371 operators +1370 operating +1369 upheld +1368 cynically +1367 openly +1366 oneself +1365 encouraged +1364 ones +1363 whatever +1362 wage +1361 top +1360 should +1359 willingness +1358 core +1357 streets +1356 scoreboard +1355 footing +1354 role +1353 relevant +1352 side +1351 plus +1350 owners +1349 older +1348 legal +1347 figure +1346 environment +1345 entrenched +1344 dilatory +1343 foot +1342 encompass +1341 Environment +1340 Alps +1339 rubbish +1338 promoting +1337 passengers +1336 mobile +1335 labour +1334 finding +1333 corporate +1332 positions +1331 par +1330 Britain +1329 often +1328 officers +1327 Freedom +1326 offered +1325 offer +1324 relating +1323 offences +1322 mark +1321 land +1320 hook +1319 off +1318 states +1317 applicant +1316 various +1315 type +1314 timing +1313 sector +1312 sugar +1311 special +1310 situation +1309 shipyard +1308 thorough +1307 risks +1306 security +1305 reason +1304 whether +1303 question +1302 proposal +1301 population +1300 raised +1299 normal +1298 kind +1297 degree +1296 activities +1295 Schengen +1294 Renault +1293 Conditions +1292 storm +1291 rating +1290 producer +1289 positive +1288 pesticide +1287 persuading +1286 parliaments +1285 parliament +1284 overcoming +1283 oil +1282 female +1281 male +1280 least-developed +1279 ability +1278 profits +1277 fat +1276 existing +1275 emission +1274 eating +1273 central +1272 basic +1271 arable +1270 subsidy +1269 Good +1268 Employment +1267 Public +1266 Certain +1265 obviously +1264 obstructing +1263 obstacle +1262 obligations +1261 numbers +1260 note +1259 flood +1258 nor +1257 none +1256 noise +1255 no +1254 newcomers +1253 network +1252 negotiations +1251 settlements +1250 negotiated +1249 needed +1248 nearer +1247 naturalisation +1246 nationals +1245 nation +1244 narrow +1243 myself +1242 sincerest +1241 prevent +1240 must +1239 moving +1238 movements +1237 movement +1236 move +1235 motorised +1234 promote +1233 union +1232 monetary +1231 modified +1230 camera +1229 modern +1228 misuse +1227 mistake +1226 minors +1225 minimum +1224 militants +1223 migrate +1222 spread +1221 revert +1220 might +1219 middle +1218 methods +1217 menaces +1216 member +1215 meets +1214 medicines +1213 measures +1212 reaching +1211 mean +1210 masters +1209 marking +1208 markets +1207 marginalization +1206 marginalised +1205 man +1204 maltreated +1203 makes +1202 attractive +1201 cigarettes +1200 mainly +1199 redundant +1198 lower +1197 look +1196 longer +1195 lock +1194 authorities +1193 lion +1192 links +1191 lines +1190 likely +1189 lifted +1188 life +1187 levied +1186 levels +1185 let +1184 less +1183 left +1182 led +1181 leaving +1180 frustration +1179 amount +1178 leads +1177 leading +1176 leadership +1175 leaders +1174 lawyers +1173 latter +1172 United +1171 large-scale +1170 labelling +1169 label +1168 offenders +1167 known +1166 lid +1165 pace +1164 keep +1163 juvenile +1162 justice +1161 lip-service +1160 pay +1159 journey +1158 jointly +1157 joining +1156 joined +1155 unions +1154 join +1153 itself +1152 voice +1151 nose +1150 Central +1149 represents +1148 issues +1147 find +1146 safe +1145 reserved +1144 motivated +1143 products +1142 involves +1141 sports +1140 inviting +1139 invite +1138 intrigued +1137 who +1136 market +1135 name +1134 jobs +1133 Russia +1132 integration +1131 insurance +1130 inspectors +1129 inland +1128 information +1127 individuals +1126 individually +1125 justifications +1124 indication +1123 wider +1122 rates +1121 increasing +1120 increased +1119 increase +1118 own +1117 incorporate +1116 income +1115 includes +1114 included +1113 inciting +1112 welcoming +1111 warmly +1110 tune +1109 years +1108 treatment +1107 job +1106 dealings +1105 tells +1104 wheels +1103 wake +1102 service +1101 sense +1100 primary +1099 versions +1098 minds +1097 men +1096 term +1095 higher +1094 hierarchy +1093 government +1092 flesh +1091 field +1090 eyes +1089 elections +1088 day +1087 dark +1086 context +1085 accounting +1084 Turkish +1083 Cypriot +1082 Chamber +1081 terms +1080 tandem +1079 respect +1078 receipt +1077 progress +1076 professions +1075 person +1074 provide +1073 order +1072 numerous +1071 neighbouring +1070 length +1069 international +1068 including +1067 impaired +1066 identifying +1065 best +1064 danger +1063 contrast +1062 may +1061 anything +1060 know +1059 Instruments +1058 Financial +1057 served +1056 impulses +1055 persons +1054 imprisoned +1053 imposed +1052 importance +1051 implementation +1050 impetus +1049 immense +1048 obvious +1047 illegal +1046 immigrants +1045 if +1044 i.e. +1043 obliged +1042 hope +1041 honourable +1040 hold +1039 hits +1038 spirits +1037 susceptible +1036 highly +1035 highlights +1034 here +1033 her +1032 helps +1031 contend +1030 heed +1029 list +1028 hearing +1027 heads +1026 headlong +1025 please +1024 met +1023 opportunity +1022 lost +1021 mind +1020 hauliers +1019 hate +1018 represent +1017 pressed +1016 repeatedly +1015 harm +1014 grant +1013 happy +1012 half-way +1011 serious +1010 had +1009 guidance +1008 guaranteed +1007 rooms +1006 green +1005 significance +1004 great +1003 grave +1002 grass-roots +1001 grants +1000 granted +999 goes +998 power +997 gets +996 gave +995 gains +994 gained +993 further +992 funding +991 function +990 viewpoint +989 former +988 me +987 landfill +986 allowing +985 frightening +984 friend +983 free +982 principles +981 founded +980 forgetting +979 forged +978 forcing +977 trades +976 trade +975 tourist +974 groups +973 coming +972 work +971 vote +970 two +969 elders +968 so-called +967 sake +966 now +965 most +964 working +963 hospital +962 general +961 creation +960 big +959 Slovenian +958 coffee +957 staff +956 services +955 reform +954 real +953 public +952 professional +951 parties +950 non-Latvian +949 local +948 later +947 supply +946 human +945 household +944 fundamental +943 fighting +942 expressing +941 dried +940 competing +939 communities +938 breast +937 reasons +936 components +935 US +934 Iraq +933 safety +932 objectives +931 followers +930 focusing +929 flag +928 flying +927 flights +926 fleeces +925 fix +924 fitted +923 fish +922 firstly +921 fire +920 fingers +919 finger +918 victims +917 compensate +916 financial +915 finally +914 fertiliser +913 feeling +912 materials +911 feeding +910 feed +909 fears +908 favour +907 raising +906 fathers +905 removed +904 falls +903 fall +902 failure +901 fail +900 facing +899 facilities +898 facilitate +897 faces +896 face +895 eye +894 granting +893 events +892 watch +891 extra +890 extent +889 exploited +888 experts +887 expert +886 shape +885 experiencing +884 expenses +883 rights +882 exercise +881 excuse +880 evils +879 everything +878 everyone +877 everybody +876 establishment +875 equipment +874 equate +873 entrust +872 entirely +871 ensuring +870 enhancing +869 engaged +868 freedom +867 enemies +866 endorses +865 backrooms +864 ending +863 year +862 encourage +861 enable +860 en +859 employers +858 employees +857 taxpayers +856 spend +855 employed +854 elements +853 effort +852 whom +851 effect +850 educators +849 eat +848 ears +847 obey +846 duties +845 dumps +844 payment +843 drug +842 drove +841 force +840 drivers +839 house +838 cheated +837 drag +836 successor +835 your +834 throats +833 throat +832 down +831 dossiers +830 doors +829 domestic +828 involve +827 does +826 documents +825 cross-border +824 identity +823 proper +822 even +821 disturbed +820 dismissing +819 dishonest +818 discussions +817 discussion +816 disagree +815 direction +814 directed +813 diminishing +812 difficult +811 different +810 did +809 dictated +808 developments +807 detainees +806 deserve +805 food +804 describes +803 depriving +802 dependence +801 denied +800 demonstrators +799 demonstration +798 demands +797 delivery +796 mislead +795 deliberately +794 delays +793 decrease +792 require +791 debt +790 debate +789 dealt +788 dealing +787 deal +786 day-to-day +785 data +784 damage +783 cuts +782 current +781 companies +780 culminates +779 crops +778 unfairly +777 criticised +776 criminals +775 spreads +774 criminality +773 crimes +772 crews +771 credit +770 credibility +769 created +768 covered +767 courses +766 corresponding +765 peace +764 objective +763 since +762 correct +761 owned +760 shops +759 corner +758 convey +757 control +756 contributors +755 contributions +754 contribution +753 contradicted +752 continue +751 contacts +750 consumers +749 consulted +748 consortia +747 consistent +746 considering +745 relation +744 needs +743 consideration +742 consider +741 conservative +740 connection +739 conjunction +738 jurisdiction +737 conflicts +736 confidence +735 employment +734 conditions +733 workers +732 concentration +731 composed +730 old +729 comply +728 dependent +727 completely +726 systems +725 competitive +724 compensation +723 committed +722 commitments +721 comment +720 direct +719 closely +718 close +717 clearly +716 clear +715 clashes +714 bona +713 claimed +712 claim +711 civilians +710 citizens +709 soldiers +708 child +707 chemical +706 checks +705 check +704 chart +703 charges +702 challenge +701 tasks +700 certain +699 injury +698 caused +697 cases +696 during +695 concerning +694 cars +693 carry +692 carried +691 replace +690 justifiably +689 enter +688 calls +687 called +686 calculated +685 suggested +684 imposition +683 effects +682 Liberal +681 Algerian +680 regulating +679 reference +678 protecting +677 private +676 farm +675 means +674 many +673 Czechs +672 discontented +671 compliant +670 cash +669 accusing +668 Swiss +667 businessmen +666 businesses +665 business +664 budgets +663 brought +662 broadcasts +661 bringing +660 relief +659 pressure +658 briefly +657 break +656 civil +655 bonus +654 bodies +653 board +652 blamed +651 blame +650 binding +649 beyond +648 Israel +647 between +646 better +645 benefits +644 benefiting +643 benefit +642 below +641 belonging +640 belong +639 believed +638 reflected +637 over +636 priority +635 compulsory +634 behaved +633 mention +632 returned +631 invited +630 contacted +629 been +628 involved +627 become +626 talked +625 you +624 provided +623 beat +622 bear +621 targets +620 targeted +619 taken +618 set +617 sent +616 regarding +615 paying +614 budget +613 Committee +612 offering +611 more +610 achieving +609 linked +608 incorporated +607 position +606 identified +605 helping +604 giving +603 drawn +602 demanded +601 delighted +600 contributing +599 chipping +598 borne +597 basis +596 based +595 banks +594 backs +593 backroom +592 line +591 away +590 awareness +589 await +588 fellow +587 following +586 available +585 auditors +584 attributed +583 attentive +582 paid +581 attention +580 attend +579 tell +578 attempts +577 attacks +576 attacked +575 attached +574 times +573 making +572 same +571 monitoring +570 moment +569 mercy +568 hands +567 front +566 expense +565 drop +564 door +563 cost +562 attending +561 age +560 so +559 prices +558 disposal +557 ordinary +556 keeping +555 every +554 encouraging +553 children +552 border +551 time +550 fixed +549 association +548 driving +547 associated +546 assisting +545 assistance +544 greatly +543 assist +542 assign +541 assassins +540 asked +539 ask +538 pension +537 saw +536 view +535 legality +534 application +533 how +532 space +531 gain +530 described +529 things +528 protection +527 remaining +526 money +525 embodiment +524 one +523 sympathising +522 regards +521 rapporteurs +520 possible +519 ourselves +518 much +517 was +516 far +515 bad +514 employer +513 holiday +512 arrive +511 around +510 industries +509 arms +508 area +507 writing +506 under +505 transported +504 receive +503 given +502 commended +501 adults +500 responsible +499 supposed +498 trimmings +497 stylish +496 skinned +495 internationally +494 protected +493 indispensable +492 out +491 seeking +490 increasingly +489 way +488 developing +487 designed +486 concerned +485 calling +484 empowered +483 aspects +482 approval +481 approached +480 appreciation +479 appointments +478 appointment +477 applying +476 vessels +475 army +474 apply +473 applies +472 applicable +471 appeared +470 scenes +469 appear +468 appeals +467 appealing +466 else +465 anyone +464 living +463 anti +462 answers +461 answering +460 announce +459 animal +458 angry +457 candidate +456 stand +455 resort +454 get +453 tame +452 support +451 stop +450 regulations +449 recognition +448 before +447 permissible +446 onto +445 forced +444 fast +443 establish +442 describe +441 congratulate +440 issue +439 insult +438 put +437 assessment +436 approach +435 appropriate +434 an +433 amongst +432 although +431 regard +430 messages +429 united +428 elect +427 efforts +426 supporting +425 necessary +424 made +423 thanks +422 regions +421 innovation +420 kick-starts +419 home +418 drive +417 go +416 bring +415 others +414 alongside +413 allows +412 allow +411 visiting +410 discussing +409 start +408 reasonable +407 ignore +406 prefer +405 costs +404 alive +403 alike +402 airport +401 air +400 trees +399 awarded +398 aid +397 ahead +396 dropped +395 revenue +394 agreements +393 meaning +392 within +391 individual +390 holders +389 each +388 again +387 selection +386 initial +385 end +384 after +383 affects +382 far-reaching +381 consequences +380 affected +379 affect +378 affairs +377 advice +376 adult +375 adopted +374 administrative +373 addressing +372 addresses +371 additional +370 sum +369 addition +368 added +367 add +366 acute +365 actual +364 acts +363 activated +362 interests +361 actions +360 action +359 act +358 across +357 achievement +356 getting +355 achieve +354 wanting +353 farmers +352 accused +351 accounts +350 account +349 accords +348 according +347 Europe +346 legislation +345 accordance +344 forward +343 accord +342 accession +341 access +340 firmly +339 accent +338 above +337 capital +336 areas +335 providing +334 agricultural +333 inform +332 able +331 window +330 democracy +329 thriving +328 say +327 huge +326 return +325 using +324 result +323 expression +322 popular +321 number +320 matter +319 lot +318 closer +317 little +316 hiding +315 hand +314 message +313 focused +312 examples +311 few +310 duty +309 such +308 country +307 complement +306 coach +305 cause +304 burden +303 Wallström +302 attitude +301 This +300 Strasbourg +299 left-wing +298 President +297 Parliament +296 ( +295 NAMA +294 socialist +293 Schulz +292 Mr +291 going +290 were +289 announced +288 Monday +287 could +286 Milosevic +285 Members +284 State +283 holding +282 MEPs +281 Larrea +280 Kurdish +279 Internet +278 extend +277 wish +276 turn +275 like +274 too +273 refer +272 process +271 participated +270 reassure +269 immediately +268 can +267 appeal +266 agreement +265 am +264 thank +263 also +262 address +261 Group +260 Governments +259 Goods +258 while +257 world +256 GMOs +255 level +254 Union +253 European +252 EUR +251 ’ +250 vis-à-vis +249 EU +248 resources +247 ESF +246 ECU +245 Democrats +244 held +243 Council +242 Convention +241 Consumer +240 Community +239 hear +238 present +237 representative +236 Commission +235 CAP +234 Bordeaux +233 Belarusians +232 eliminate +231 proceedings +230 accelerated +229 see +228 long +227 Who +226 ; +225 them +224 through +223 conversely +222 . +221 host +220 draw +219 particularly +218 bias +217 considerable +216 replacing +215 place +214 take +213 where +212 reached +211 employing +210 upon +209 up +208 what +207 tax +206 tackle +205 suicide +204 some +203 sing +202 give +201 hearings +200 conduct +199 call +198 management +197 these +196 then +195 speakers +194 covering +193 section +192 commitment +191 his +190 rapporteur +189 still +188 funds +187 Structural +186 would +185 States +184 Member +183 applied +182 has +181 barrel +180 stock +179 serve +178 reviewing +177 than +176 rather +175 points +174 pitting +173 partly +172 only +171 behalf +170 course +169 governments +168 namely +167 murdered +166 meet +165 task +164 leave +163 least +162 last +161 just +160 legitimacy +159 its +158 involving +157 into +156 indeed +155 countries +154 their +153 meantime +152 light +151 form +150 event +149 produce +148 practice +147 particular +146 opinion +145 our +144 future +143 three +142 disregarding +141 fact +140 however +139 hit +138 terrorism +137 help +136 not +135 part +134 my +133 problems +132 first +131 either +130 due +129 developed +128 right +127 dating +126 compared +125 combined +124 use +123 people +122 charge +121 setting +120 by +119 social +118 economic +117 but +116 this +115 behind +114 need +113 survivors +112 because +111 any +110 a +109 suffering +108 subjugation +107 absence +106 subject +105 are +104 both +103 among +102 along +101 against +100 include +99 I +98 Party +97 Reform +96 Democrat +95 000 +94 town +93 " +92 share +91 cover +90 scope +89 officials +88 court +87 informed +86 being +85 's +84 will +83 members +82 administration +81 corrupt +80 s +79 new +78 interest +77 concerns +76 Rights +75 when +74 us +73 towards +72 office-holders +71 decision-makers +70 decision +69 political +68 elected +67 politics +66 well +65 very +64 do +63 reports +62 opposition +61 shoulders +60 other +59 on +58 national +57 from +56 those +55 policies +54 makers +53 all +52 concern +51 of +50 policy +49 simple +48 policymakers +47 back +46 at +45 as +44 Czech +43 for +42 easier +41 it +40 make +39 - +38 politicians +37 which +36 transatlantic +35 case +34 third +33 pond +32 overseas +31 open +30 ocean +29 North +28 East +27 fin +26 yellow +25 aim +24 the +23 with +22 be +21 to +20 that +19 really +18 in +17 have +16 fisheries +15 together +14 come +13 coast +12 they +11 and +10 about +9 Treaty +8 Ridge +7 Ocean +6 Alliance +5 we +4 is +3 , +2 ' +1 Atlantic +0 1995 diff --git a/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1 b/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1 new file mode 100644 index 000000000..31bc5f6f7 --- /dev/null +++ b/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1 @@ -0,0 +1,15117 @@ +Atlántico ||| Atlantic , ||| 0.230769 0.550633 0.0384615 0.187069 2.718 ||| 0-0 ||| 13 78 +Atlántico ||| Atlantic stock ||| 1 0.550633 0.025641 0.000178396 2.718 ||| 0-0 ||| 2 78 +Atlántico ||| Atlantic ||| 0.541985 0.550633 0.910256 0.91579 2.718 ||| 0-0 ||| 131 78 +Atlántico ||| NATO ||| 0.000915751 0.0005244 0.0128205 0.0105263 2.718 ||| 0-0 ||| 1092 78 +Atlántico ||| transatlantic ||| 0.00787402 0.008 0.0128205 0.0105263 2.718 ||| 0-0 ||| 127 78 +a los políticos en ||| in ||| 1.24163e-05 7.39754e-08 0.5 0.487465 2.718 ||| 3-0 ||| 80539 2 +a los políticos en ||| politicians in ||| 0.05 0.00767624 0.5 0.0908939 2.718 ||| 1-0 2-0 3-1 ||| 20 2 +a los políticos ||| 's politicians ||| 0.0285714 0.0058376 0.027027 0.00365157 2.718 ||| 1-0 1-1 2-1 ||| 35 37 +a los políticos ||| for politicians to ||| 0.166667 0.0137256 0.027027 0.00036391 2.718 ||| 0-0 1-1 2-1 ||| 6 37 +a los políticos ||| for politicians ||| 0.0769231 0.0137256 0.0540541 0.00441155 2.718 ||| 0-0 1-1 2-1 ||| 26 37 +a los políticos ||| for the politicians ||| 1 0.00506156 0.027027 0.00266997 2.718 ||| 0-0 1-1 2-2 ||| 1 37 +a los políticos ||| for their politicians ||| 0.5 0.000652637 0.027027 2.15139e-05 2.718 ||| 0-0 1-1 2-2 ||| 2 37 +a los políticos ||| of politicians ||| 0.0689655 0.00384452 0.0540541 0.00402211 2.718 ||| 0-0 1-1 2-1 ||| 29 37 +a los políticos ||| of the politicians ||| 0.5 0.00141774 0.027027 0.00243427 2.718 ||| 0-0 1-1 2-2 ||| 2 37 +a los políticos ||| on politicians ||| 0.2 0.0225254 0.027027 0.0047922 2.718 ||| 0-0 1-1 2-1 ||| 5 37 +a los políticos ||| politicians as ||| 0.333333 0.00677512 0.027027 0.00173382 2.718 ||| 1-0 2-0 0-1 ||| 3 37 +a los políticos ||| politicians on ||| 0.5 0.0225254 0.027027 0.0047922 2.718 ||| 1-0 2-0 0-1 ||| 2 37 +a los políticos ||| politicians to ||| 0.0357143 0.0632992 0.027027 0.0610335 2.718 ||| 1-0 2-0 0-1 ||| 28 37 +a los políticos ||| politicians ||| 0.0192525 0.0106925 0.459459 0.186463 2.718 ||| 1-0 2-0 ||| 883 37 +a los políticos ||| the politicians ||| 0.0714286 0.00394308 0.027027 0.112851 2.718 ||| 1-0 2-1 ||| 14 37 +a los políticos ||| to politicians ||| 0.428571 0.0632992 0.162162 0.0610335 2.718 ||| 0-0 1-1 2-1 ||| 14 37 +a los ||| $ ||| 0.0027637 0.000765675 0.00204988 0.00085275 2.718 ||| 0-0 1-0 ||| 2171 2927 +a los ||| ' interest as well ||| 1 0.00345513 0.000341647 1.71405e-10 2.718 ||| 1-0 1-1 0-2 ||| 1 2927 +a los ||| ' interest as ||| 1 0.00345513 0.000341647 9.88494e-08 2.718 ||| 1-0 1-1 0-2 ||| 1 2927 +a los ||| ' ||| 0.00554187 0.0083965 0.00307482 0.0101129 2.718 ||| 1-0 ||| 1624 2927 +a los ||| 's agricultural ||| 0.1 0.000402481 0.000341647 4.54737e-07 2.718 ||| 1-1 ||| 10 2927 +a los ||| 's existing stock ||| 0.166667 0.00279873 0.000341647 7.67819e-10 2.718 ||| 1-1 ||| 6 2927 +a los ||| 's existing ||| 0.0625 0.00279873 0.000341647 3.94158e-06 2.718 ||| 1-1 ||| 16 2927 +a los ||| 's killers out ||| 0.333333 0.00166277 0.000341647 5.64617e-10 2.718 ||| 1-0 ||| 3 2927 +a los ||| 's killers ||| 0.333333 0.00166277 0.000341647 1.27292e-07 2.718 ||| 1-0 ||| 3 2927 +a los ||| 's ||| 0.000480238 0.00166277 0.00341647 0.0195834 2.718 ||| 1-0 ||| 20823 2927 +a los ||| " feminine " traits ||| 0.5 0.00381237 0.000341647 6.30634e-15 2.718 ||| 1-3 ||| 2 2927 +a los ||| " from the " ||| 0.333333 0.00596208 0.000341647 6.27588e-08 2.718 ||| 0-1 1-2 ||| 3 2927 +a los ||| " from the ||| 0.05 0.00596208 0.000341647 1.25666e-05 2.718 ||| 0-1 1-2 ||| 20 2927 +a los ||| " traits ||| 0.25 0.00381237 0.000341647 1.9427e-07 2.718 ||| 1-1 ||| 4 2927 +a los ||| , bring the ||| 1 0.00504198 0.000341647 1.99682e-05 2.718 ||| 0-1 1-2 ||| 1 2927 +a los ||| , challenge the ||| 0.5 0.00667213 0.000341647 7.73408e-06 2.718 ||| 1-2 ||| 2 2927 +a los ||| , in ||| 0.000327439 0.00150143 0.000341647 0.00802187 2.718 ||| 0-1 ||| 3054 2927 +a los ||| , likely to ||| 0.25 0.00929893 0.000341647 3.21341e-05 2.718 ||| 0-2 ||| 4 2927 +a los ||| , the ||| 6.26096e-05 0.00667213 0.000341647 0.0626749 2.718 ||| 1-1 ||| 15972 2927 +a los ||| , to $ ||| 0.166667 0.00887652 0.000341647 6.11725e-05 2.718 ||| 0-1 1-2 ||| 6 2927 +a los ||| , whereas the ||| 0.0185185 0.00667213 0.000341647 1.62955e-06 2.718 ||| 1-2 ||| 54 2927 +a los ||| -- and embolden ||| 0.5 0.0184882 0.000341647 3.48645e-09 2.718 ||| 0-2 ||| 2 2927 +a los ||| . depositors ||| 0.5 0.00137341 0.000341647 2.71276e-07 2.718 ||| 0-1 ||| 2 2927 +a los ||| China 's ||| 0.001002 1.05658e-05 0.000341647 4.62168e-07 2.718 ||| 0-0 1-1 ||| 998 2927 +a los ||| Fulani cattle ||| 1 0.0384615 0.000341647 1.1446e-10 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| Germany 's ||| 0.0070922 3.95698e-05 0.000341647 4.62168e-07 2.718 ||| 0-0 1-1 ||| 141 2927 +a los ||| Greek ||| 0.00245098 0.0014718 0.000341647 0.0001168 2.718 ||| 1-0 ||| 408 2927 +a los ||| Ireland 's ||| 0.0833333 0.000105966 0.000341647 2.31084e-07 2.718 ||| 0-0 1-1 ||| 12 2927 +a los ||| a major backer of ||| 0.5 0.000508819 0.000341647 3.18428e-12 2.718 ||| 1-1 0-3 ||| 2 2927 +a los ||| a rule of law that protects the ||| 1 0.0425378 0.000341647 1.73179e-17 2.718 ||| 0-5 1-6 ||| 1 2927 +a los ||| a vested ||| 0.125 0.00699682 0.000341647 5.08935e-06 2.718 ||| 1-1 ||| 8 2927 +a los ||| a year to the ||| 1 0.0394986 0.000341647 1.91561e-06 2.718 ||| 0-2 1-3 ||| 1 2927 +a los ||| a ||| 1.52532e-05 3.31232e-05 0.000341647 0.000767 2.718 ||| 0-0 ||| 65560 2927 +a los ||| against panels ||| 0.25 0.00142116 0.000341647 3.4515e-08 2.718 ||| 0-0 ||| 4 2927 +a los ||| against the ||| 0.00137174 0.00603658 0.000341647 0.000543077 2.718 ||| 0-0 1-1 ||| 729 2927 +a los ||| against ||| 0.000539374 0.00142116 0.000683294 0.00177 2.718 ||| 0-0 ||| 3708 2927 +a los ||| ago , the ||| 0.0666667 0.00667213 0.000341647 3.37818e-05 2.718 ||| 1-2 ||| 15 2927 +a los ||| agricultural ||| 0.00269542 0.000402481 0.000341647 2.92e-05 2.718 ||| 1-0 ||| 371 2927 +a los ||| air time to the ||| 1 0.0394986 0.000341647 4.88396e-09 2.718 ||| 0-2 1-3 ||| 1 2927 +a los ||| all for the ||| 0.5 0.00856473 0.000341647 1.881e-05 2.718 ||| 0-1 1-2 ||| 2 2927 +a los ||| all the ||| 0.00120048 0.00667213 0.000341647 0.00079504 2.718 ||| 1-1 ||| 833 2927 +a los ||| all to the ||| 0.2 0.0394986 0.000341647 0.000260235 2.718 ||| 0-1 1-2 ||| 5 2927 +a los ||| all ||| 0.000239149 0.00122535 0.000683294 0.0021219 2.718 ||| 1-0 ||| 8363 2927 +a los ||| along behind the ||| 0.5 0.00667213 0.000341647 1.35855e-08 2.718 ||| 1-2 ||| 2 2927 +a los ||| along the lines ||| 0.037037 0.0218985 0.000341647 5.64438e-08 2.718 ||| 0-0 1-1 ||| 27 2927 +a los ||| along the ||| 0.00900901 0.0218985 0.000341647 0.000362051 2.718 ||| 0-0 1-1 ||| 111 2927 +a los ||| also the ||| 0.00826446 0.00667213 0.000341647 0.000278963 2.718 ||| 1-1 ||| 121 2927 +a los ||| amount of air time to the ||| 1 0.0394986 0.000341647 4.02698e-14 2.718 ||| 0-4 1-5 ||| 1 2927 +a los ||| and embolden ||| 0.333333 0.0184882 0.000341647 6.936e-07 2.718 ||| 0-1 ||| 3 2927 +a los ||| and into the ||| 0.0909091 0.0257883 0.000341647 2.88516e-05 2.718 ||| 0-1 1-2 ||| 11 2927 +a los ||| and their four ||| 1 7.37348e-06 0.000341647 6.81601e-11 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| and their ||| 0.00181159 7.37348e-06 0.000341647 1.05023e-06 2.718 ||| 0-0 1-1 ||| 552 2927 +a los ||| animal abuse ||| 0.0625 0.00667164 0.000341647 6.643e-09 2.718 ||| 1-0 ||| 16 2927 +a los ||| animal ||| 0.00813008 0.00667164 0.000341647 0.0002044 2.718 ||| 1-0 ||| 123 2927 +a los ||| anointed ||| 0.1 0.00792351 0.000341647 3.54e-05 2.718 ||| 0-0 ||| 10 2927 +a los ||| appeal to ||| 0.0217391 0.00929893 0.000341647 1.27656e-05 2.718 ||| 0-1 ||| 46 2927 +a los ||| are the questions of the Israeli Arabs ||| 1 0.00239897 0.000341647 2.78064e-19 2.718 ||| 0-3 1-4 ||| 1 2927 +a los ||| are the questions of the Israeli ||| 1 0.00239897 0.000341647 1.42597e-14 2.718 ||| 0-3 1-4 ||| 1 2927 +a los ||| are the questions of the ||| 1 0.00239897 0.000341647 2.19718e-10 2.718 ||| 0-3 1-4 ||| 1 2927 +a los ||| are to ||| 0.00719424 0.00929893 0.000341647 0.00242334 2.718 ||| 0-1 ||| 139 2927 +a los ||| around ||| 0.000568505 0.00163011 0.000341647 0.001121 2.718 ||| 0-0 ||| 1759 2927 +a los ||| as " ||| 0.00331126 0.000995295 0.000341647 4.64376e-05 2.718 ||| 0-0 ||| 302 2927 +a los ||| as early as ||| 0.0666667 0.000953017 0.000341647 2.75497e-08 2.718 ||| 0-0 1-1 ||| 15 2927 +a los ||| as early ||| 0.0833333 0.000953017 0.000341647 3.25819e-06 2.718 ||| 0-0 1-1 ||| 12 2927 +a los ||| as for the ||| 0.0192308 0.00856473 0.000341647 6.13801e-05 2.718 ||| 0-1 1-2 ||| 52 2927 +a los ||| as the ||| 0.0014437 0.00422766 0.00102494 0.00285299 2.718 ||| 0-0 1-1 ||| 2078 2927 +a los ||| as those ||| 0.0192308 0.00607381 0.000341647 7.12274e-05 2.718 ||| 0-0 1-1 ||| 52 2927 +a los ||| as we engage with the ||| 0.25 0.00482447 0.000341647 5.58702e-12 2.718 ||| 0-3 1-4 ||| 4 2927 +a los ||| as ||| 0.000141004 0.000995295 0.00102494 0.0092985 2.718 ||| 0-0 ||| 21276 2927 +a los ||| assets and ||| 0.025 0.000554155 0.000341647 7.35586e-07 2.718 ||| 1-0 ||| 40 2927 +a los ||| assets ||| 0.00102881 0.000554155 0.000341647 8.76e-05 2.718 ||| 1-0 ||| 972 2927 +a los ||| at a ||| 0.00122249 0.00637439 0.000341647 0.00102829 2.718 ||| 0-0 ||| 818 2927 +a los ||| at age ||| 0.5 0.00554184 0.000341647 3.48369e-06 2.718 ||| 0-0 1-1 ||| 2 2927 +a los ||| at all ||| 0.00420168 0.00497261 0.000341647 5.42336e-05 2.718 ||| 0-0 1-1 ||| 238 2927 +a los ||| at helping ||| 0.2 0.000574068 0.000341647 3.04344e-05 2.718 ||| 0-0 0-1 1-1 ||| 5 2927 +a los ||| at the end ||| 0.00552486 0.0270762 0.000341647 3.71793e-06 2.718 ||| 0-0 1-1 ||| 181 2927 +a los ||| at the rate of ||| 0.125 0.0270762 0.000341647 6.60376e-08 2.718 ||| 0-0 1-1 ||| 8 2927 +a los ||| at the rate ||| 0.111111 0.0270762 0.000341647 2.44438e-06 2.718 ||| 0-0 1-1 ||| 9 2927 +a los ||| at the same time taking care ||| 1 0.0270762 0.000341647 2.46839e-16 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| at the same time taking ||| 1 0.0270762 0.000341647 1.46145e-12 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| at the same time ||| 0.00227273 0.0270762 0.000341647 3.00031e-09 2.718 ||| 0-0 1-1 ||| 440 2927 +a los ||| at the same ||| 0.00223714 0.0270762 0.000341647 3.2082e-06 2.718 ||| 0-0 1-1 ||| 447 2927 +a los ||| at the ||| 0.00731552 0.0270762 0.00785787 0.00784209 2.718 ||| 0-0 1-1 ||| 3144 2927 +a los ||| at those ||| 0.1 0.0388999 0.000341647 0.000195784 2.718 ||| 0-0 1-1 ||| 10 2927 +a los ||| at ||| 0.00176367 0.00637439 0.00614964 0.025559 2.718 ||| 0-0 ||| 10206 2927 +a los ||| away from the ||| 0.0555556 0.00596208 0.000683294 2.32052e-06 2.718 ||| 0-1 1-2 ||| 36 2927 +a los ||| away ||| 0.00840336 0.00174586 0.000683294 0.0004956 2.718 ||| 0-0 ||| 238 2927 +a los ||| back the ||| 0.105263 0.00979944 0.000683294 0.000401877 2.718 ||| 0-0 1-1 ||| 19 2927 +a los ||| back to the ||| 0.0322581 0.0394986 0.000683294 0.000139578 2.718 ||| 0-1 1-2 ||| 62 2927 +a los ||| be run in the ||| 1 0.00637753 0.000341647 5.24179e-08 2.718 ||| 0-2 1-3 ||| 1 2927 +a los ||| because of the ||| 0.00632911 0.00171088 0.000341647 2.49909e-06 2.718 ||| 0-0 0-1 1-2 ||| 158 2927 +a los ||| become linked to the ||| 0.333333 0.0394986 0.000341647 3.08629e-09 2.718 ||| 0-2 1-3 ||| 3 2927 +a los ||| before the ||| 0.00224215 0.000465709 0.000341647 2.17231e-05 2.718 ||| 0-0 1-1 ||| 446 2927 +a los ||| behind the ||| 0.0111732 0.0100463 0.000683294 0.00020999 2.718 ||| 0-0 1-1 ||| 179 2927 +a los ||| beneficiaries , ||| 0.5 0.0106746 0.000341647 2.78421e-05 2.718 ||| 1-0 ||| 2 2927 +a los ||| beneficiaries ||| 0.02 0.0106746 0.000341647 0.0001363 2.718 ||| 1-0 ||| 50 2927 +a los ||| benefit the ||| 0.05 0.018812 0.000341647 0.000336708 2.718 ||| 0-0 1-1 ||| 20 2927 +a los ||| billion to $ ||| 0.125 0.00887652 0.000341647 2.72216e-08 2.718 ||| 0-1 1-2 ||| 8 2927 +a los ||| blamed both ||| 1 0.0139641 0.000341647 9.29623e-07 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| both the ||| 0.00420168 0.00401933 0.000341647 0.00035481 2.718 ||| 0-0 1-1 ||| 238 2927 +a los ||| both ||| 0.000660066 0.00274027 0.000683294 0.0020732 2.718 ||| 1-0 ||| 3030 2927 +a los ||| branching downstream into retailing ||| 1 0.0294702 0.000341647 2.30413e-17 2.718 ||| 1-1 0-2 ||| 1 2927 +a los ||| branching downstream into ||| 1 0.0294702 0.000341647 3.54482e-12 2.718 ||| 1-1 0-2 ||| 1 2927 +a los ||| bring the ||| 0.0444444 0.00504198 0.000683294 9.77538e-05 2.718 ||| 0-0 1-1 ||| 45 2927 +a los ||| brought to ||| 0.016129 0.00929893 0.000341647 0.000159439 2.718 ||| 0-1 ||| 62 2927 +a los ||| buck to the ||| 0.5 0.0394986 0.000341647 2.61119e-06 2.718 ||| 0-1 1-2 ||| 2 2927 +a los ||| burden financial-market ||| 1 0.000654052 0.000341647 2.41192e-09 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| business demoralized Egyptian ||| 0.5 0.004998 0.000341647 1.85055e-13 2.718 ||| 1-0 ||| 2 2927 +a los ||| business demoralized ||| 0.5 0.004998 0.000341647 9.49e-09 2.718 ||| 1-0 ||| 2 2927 +a los ||| business ||| 0.00084246 0.004998 0.000341647 0.00146 2.718 ||| 1-0 ||| 1187 2927 +a los ||| by saying ||| 0.0384615 0.000925835 0.000341647 5.69675e-07 2.718 ||| 0-0 ||| 26 2927 +a los ||| by the ||| 0.0017331 0.00393262 0.00204988 0.00207096 2.718 ||| 0-0 1-1 ||| 3462 2927 +a los ||| by ||| 0.000109176 0.000925835 0.000683294 0.0067497 2.718 ||| 0-0 ||| 18319 2927 +a los ||| cattle ||| 0.037037 0.00264117 0.000341647 2.36e-05 2.718 ||| 0-0 ||| 27 2927 +a los ||| centers ||| 0.00471698 0.00283956 0.000341647 8.76e-05 2.718 ||| 1-0 ||| 212 2927 +a los ||| challenge the ||| 0.0217391 0.00667213 0.000341647 3.7862e-05 2.718 ||| 1-1 ||| 46 2927 +a los ||| challenged those in ||| 1 0.0271615 0.000341647 1.94441e-08 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| challenged those ||| 1 0.0271615 0.000341647 1.26545e-06 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| children ||| 0.00097371 0.0103686 0.000341647 0.0025501 2.718 ||| 1-0 ||| 1027 2927 +a los ||| claims for the ||| 0.142857 0.00856473 0.000341647 8.01414e-07 2.718 ||| 0-1 1-2 ||| 7 2927 +a los ||| classify ||| 0.333333 0.0208333 0.000341647 2.255e-05 2.718 ||| 0-0 1-0 ||| 3 2927 +a los ||| comes to the ||| 0.0666667 0.0394986 0.000341647 3.39153e-05 2.718 ||| 0-1 1-2 ||| 15 2927 +a los ||| commemorating ||| 0.125 0.00763004 0.000341647 2.36e-05 2.718 ||| 0-0 ||| 8 2927 +a los ||| compared to other ||| 0.0769231 0.00929893 0.000341647 2.24705e-08 2.718 ||| 0-1 ||| 13 2927 +a los ||| compared to ||| 0.00334448 0.00929893 0.000341647 1.91157e-05 2.718 ||| 0-1 ||| 299 2927 +a los ||| completely out ||| 0.25 0.00288538 0.000341647 1.07073e-07 2.718 ||| 0-1 ||| 4 2927 +a los ||| compound the ||| 0.0909091 0.00667213 0.000341647 5.98305e-06 2.718 ||| 1-1 ||| 11 2927 +a los ||| concerning ||| 0.00423729 0.00655159 0.000341647 0.0006372 2.718 ||| 0-0 ||| 236 2927 +a los ||| confronted ||| 0.0117647 0.00406334 0.000341647 0.000236 2.718 ||| 0-0 ||| 85 2927 +a los ||| conversion of ||| 0.0714286 0.000564776 0.000341647 4.20627e-07 2.718 ||| 0-1 ||| 14 2927 +a los ||| courtesy of the ||| 0.5 0.00239897 0.000341647 4.30193e-08 2.718 ||| 0-1 1-2 ||| 2 2927 +a los ||| criminals ||| 0.00662252 0.00999545 0.000341647 0.0002531 2.718 ||| 1-0 ||| 151 2927 +a los ||| cut ||| 0.00207469 0.000236629 0.000341647 2.92e-05 2.718 ||| 1-0 ||| 482 2927 +a los ||| denying the ||| 0.0555556 0.015352 0.000341647 2.89641e-05 2.718 ||| 0-0 1-1 ||| 18 2927 +a los ||| depositors ||| 0.0153846 0.00137341 0.000341647 5.9e-05 2.718 ||| 0-0 ||| 65 2927 +a los ||| description of the ||| 0.2 0.00239897 0.000341647 8.60386e-08 2.718 ||| 0-1 1-2 ||| 5 2927 +a los ||| did encourage the ||| 0.5 0.028931 0.000341647 4.23959e-07 2.718 ||| 0-1 1-2 ||| 2 2927 +a los ||| distract people from the economic shambles ||| 0.333333 0.00596208 0.000341647 3.83636e-20 2.718 ||| 0-2 1-3 ||| 3 2927 +a los ||| distract people from the economic ||| 0.333333 0.00596208 0.000341647 5.90209e-15 2.718 ||| 0-2 1-3 ||| 3 2927 +a los ||| distract people from the ||| 0.333333 0.00596208 0.000341647 1.31714e-11 2.718 ||| 0-2 1-3 ||| 3 2927 +a los ||| do business demoralized Egyptian ||| 0.5 0.004998 0.000341647 4.24239e-16 2.718 ||| 1-1 ||| 2 2927 +a los ||| do business demoralized ||| 0.5 0.004998 0.000341647 2.17558e-11 2.718 ||| 1-1 ||| 2 2927 +a los ||| do business ||| 0.0666667 0.004998 0.000341647 3.34705e-06 2.718 ||| 1-1 ||| 15 2927 +a los ||| do not like either ||| 1 0.000925484 0.000341647 2.06024e-12 2.718 ||| 0-2 1-3 ||| 1 2927 +a los ||| doves -- and embolden ||| 0.5 0.0184882 0.000341647 2.26619e-14 2.718 ||| 0-3 ||| 2 2927 +a los ||| down on the ||| 0.111111 0.0140558 0.000341647 1.15223e-05 2.718 ||| 0-1 1-2 ||| 9 2927 +a los ||| down the throats of ||| 1 0.00752801 0.000341647 1.05539e-10 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| down the throats ||| 1 0.00752801 0.000341647 3.90653e-09 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| down the ||| 0.0169492 0.00752801 0.000683294 0.000300502 2.718 ||| 0-0 1-1 ||| 118 2927 +a los ||| downstream into retailing ||| 1 0.0294702 0.000341647 3.54482e-12 2.718 ||| 1-0 0-1 ||| 1 2927 +a los ||| downstream into ||| 1 0.0294702 0.000341647 5.45357e-07 2.718 ||| 1-0 0-1 ||| 1 2927 +a los ||| drawn to the ||| 0.333333 0.0394986 0.000341647 1.56571e-05 2.718 ||| 0-1 1-2 ||| 3 2927 +a los ||| driving the ||| 0.0625 0.00596634 0.000341647 3.25846e-05 2.718 ||| 0-0 1-1 ||| 16 2927 +a los ||| easier for ||| 0.0454545 0.00201634 0.000341647 2.15062e-06 2.718 ||| 0-1 ||| 22 2927 +a los ||| embolden ||| 0.2 0.0184882 0.000341647 8.26e-05 2.718 ||| 0-0 ||| 5 2927 +a los ||| employee ||| 0.037037 0.00813305 0.000341647 7.79e-05 2.718 ||| 1-0 ||| 27 2927 +a los ||| empower the ||| 0.111111 0.0453299 0.000341647 8.32718e-05 2.718 ||| 0-0 1-1 ||| 9 2927 +a los ||| encourage the ||| 0.0294118 0.028931 0.000341647 0.000264297 2.718 ||| 0-0 1-1 ||| 34 2927 +a los ||| encourage those ||| 1 0.0415647 0.000341647 6.59841e-06 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| encouraging the ||| 0.0909091 0.0182305 0.000341647 0.000112236 2.718 ||| 0-0 1-1 ||| 11 2927 +a los ||| engage with the ||| 0.125 0.00482447 0.000341647 2.84993e-07 2.718 ||| 0-1 1-2 ||| 8 2927 +a los ||| everyone ||| 0.0015625 0.00188087 0.000341647 0.0004606 2.718 ||| 0-0 1-0 ||| 640 2927 +a los ||| exclusion by saying ||| 0.166667 0.000925835 0.000341647 1.11087e-11 2.718 ||| 0-1 ||| 6 2927 +a los ||| exclusion by ||| 0.166667 0.000925835 0.000341647 1.31619e-07 2.718 ||| 0-1 ||| 6 2927 +a los ||| executed ||| 0.0263158 0.00298567 0.000341647 4.72e-05 2.718 ||| 0-0 ||| 38 2927 +a los ||| existing stock ||| 0.166667 0.00279873 0.000341647 4.93039e-08 2.718 ||| 1-0 ||| 6 2927 +a los ||| existing ||| 0.00527705 0.00279873 0.000683294 0.0002531 2.718 ||| 1-0 ||| 379 2927 +a los ||| face of opposition ||| 0.333333 0.000564776 0.000341647 3.63337e-10 2.718 ||| 0-1 ||| 3 2927 +a los ||| face of ||| 0.00617284 0.000564776 0.000341647 7.98544e-06 2.718 ||| 0-1 ||| 162 2927 +a los ||| fall short of the ||| 0.25 0.00239897 0.000341647 6.05652e-10 2.718 ||| 0-2 1-3 ||| 4 2927 +a los ||| feminine " traits ||| 0.5 0.00381237 0.000341647 1.26276e-12 2.718 ||| 1-2 ||| 2 2927 +a los ||| financiers have to ||| 0.5 0.0641434 0.000341647 2.96077e-07 2.718 ||| 1-0 0-2 ||| 2 2927 +a los ||| financiers on ||| 0.0909091 0.0228259 0.000341647 4.50275e-06 2.718 ||| 1-0 0-1 ||| 11 2927 +a los ||| fired at the ||| 1 0.0270762 0.000341647 1.01947e-07 2.718 ||| 0-1 1-2 ||| 1 2927 +a los ||| follow the ||| 0.0151515 0.00418404 0.000341647 5.06872e-05 2.718 ||| 0-0 1-1 ||| 66 2927 +a los ||| followed Alfonsín ||| 0.5 0.00293835 0.000341647 4.1418e-09 2.718 ||| 0-0 ||| 2 2927 +a los ||| followed the ||| 0.0138889 0.0124811 0.000341647 0.000195508 2.718 ||| 0-0 1-1 ||| 72 2927 +a los ||| followed ||| 0.00215983 0.00293835 0.000341647 0.0006372 2.718 ||| 0-0 ||| 463 2927 +a los ||| for all ||| 0.00243309 0.00157293 0.000341647 5.02025e-05 2.718 ||| 0-0 1-1 ||| 411 2927 +a los ||| for basic ||| 0.5 0.00106773 0.000341647 2.5339e-06 2.718 ||| 0-0 1-1 ||| 2 2927 +a los ||| for cell ||| 1 0.00433766 0.000341647 2.99289e-06 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| for doctors ||| 0.25 0.0196827 0.000341647 1.40465e-05 2.718 ||| 0-0 1-1 ||| 4 2927 +a los ||| for human ||| 0.166667 0.00947099 0.000341647 8.49744e-05 2.718 ||| 0-0 1-1 ||| 6 2927 +a los ||| for outsiders to correctly guess ||| 0.5 0.0834743 0.000341647 2.30676e-16 2.718 ||| 1-1 0-2 ||| 2 2927 +a los ||| for outsiders to correctly ||| 0.5 0.0834743 0.000341647 8.87214e-12 2.718 ||| 1-1 0-2 ||| 2 2927 +a los ||| for outsiders to ||| 0.25 0.0834743 0.000341647 6.82472e-07 2.718 ||| 1-1 0-2 ||| 4 2927 +a los ||| for presidents ||| 0.333333 0.0177955 0.000341647 1.6119e-05 2.718 ||| 0-0 1-1 ||| 3 2927 +a los ||| for such a ||| 0.037037 0.00201634 0.000341647 2.01518e-06 2.718 ||| 0-0 ||| 27 2927 +a los ||| for such ||| 0.0107527 0.00201634 0.000341647 5.00889e-05 2.718 ||| 0-0 ||| 93 2927 +a los ||| for the financial ||| 0.25 0.00856473 0.000341647 2.16832e-06 2.718 ||| 0-0 1-1 ||| 4 2927 +a los ||| for the oldest ||| 1 0.00856473 0.000341647 4.71847e-08 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| for the realm ||| 1 0.00856473 0.000341647 9.43694e-08 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| for the various ||| 0.25 0.00856473 0.000341647 4.71121e-07 2.718 ||| 0-0 1-1 ||| 4 2927 +a los ||| for the ||| 0.0166141 0.00856473 0.0269901 0.00725919 2.718 ||| 0-0 1-1 ||| 4755 2927 +a los ||| for their ||| 0.00222222 0.00110434 0.000341647 5.84926e-05 2.718 ||| 0-0 1-1 ||| 450 2927 +a los ||| for those ||| 0.0227273 0.0123048 0.00102494 0.000181232 2.718 ||| 0-0 1-1 ||| 132 2927 +a los ||| for ||| 0.000951063 0.00201634 0.0112743 0.0236592 2.718 ||| 0-0 ||| 34698 2927 +a los ||| free rein to corrupt ||| 0.333333 0.00112846 0.000341647 4.8251e-15 2.718 ||| 0-2 1-3 ||| 3 2927 +a los ||| from $ ||| 0.037037 0.00133986 0.000341647 7.50319e-06 2.718 ||| 0-0 1-1 ||| 27 2927 +a los ||| from the " ||| 0.0666667 0.00596208 0.000341647 1.25666e-05 2.718 ||| 0-0 1-1 ||| 15 2927 +a los ||| from the economic shambles ||| 0.333333 0.00596208 0.000341647 7.32906e-12 2.718 ||| 0-0 1-1 ||| 3 2927 +a los ||| from the economic ||| 0.25 0.00596208 0.000341647 1.12755e-06 2.718 ||| 0-0 1-1 ||| 4 2927 +a los ||| from the mainly ||| 1 0.00596208 0.000341647 1.14491e-07 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| from the original ||| 1 0.00596208 0.000341647 1.14491e-07 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| from the very ||| 0.1 0.00596208 0.000341647 2.1245e-06 2.718 ||| 0-0 1-1 ||| 10 2927 +a los ||| from the ||| 0.00813609 0.00596208 0.00751623 0.00251629 2.718 ||| 0-0 1-1 ||| 2704 2927 +a los ||| from those ||| 0.0196078 0.00856562 0.000341647 6.28212e-05 2.718 ||| 0-0 1-1 ||| 51 2927 +a los ||| from ||| 0.000828569 0.00140362 0.00341647 0.0082011 2.718 ||| 0-0 ||| 12069 2927 +a los ||| genetically prepared to respond to ||| 0.5 0.00929893 0.000341647 1.09002e-15 2.718 ||| 0-2 ||| 2 2927 +a los ||| genetically prepared to respond ||| 0.5 0.00929893 0.000341647 1.3214e-14 2.718 ||| 0-2 ||| 2 2927 +a los ||| genetically prepared to ||| 0.5 0.00929893 0.000341647 2.90417e-10 2.718 ||| 0-2 ||| 2 2927 +a los ||| give the ||| 0.0208333 0.0261771 0.000341647 0.000608246 2.718 ||| 0-0 1-1 ||| 48 2927 +a los ||| give ||| 0.00233645 0.00616273 0.000341647 0.0019824 2.718 ||| 0-0 ||| 428 2927 +a los ||| gives those ||| 0.5 0.0394488 0.000341647 5.51374e-06 2.718 ||| 0-0 1-1 ||| 2 2927 +a los ||| globally ||| 0.00675676 0.0078959 0.000341647 0.0007788 2.718 ||| 0-0 ||| 148 2927 +a los ||| governments ||| 0.000393391 0.0186296 0.000341647 0.0147168 2.718 ||| 1-0 ||| 2542 2927 +a los ||| guarantee of the ||| 0.5 0.00239897 0.000341647 1.29058e-07 2.718 ||| 0-1 1-2 ||| 2 2927 +a los ||| hard against the ||| 0.5 0.00603658 0.000341647 2.43353e-07 2.718 ||| 0-1 1-2 ||| 2 2927 +a los ||| help individual ||| 1 0.0142169 0.000341647 2.77546e-06 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| helps the ||| 0.111111 0.0607231 0.000341647 0.000405497 2.718 ||| 0-0 1-1 ||| 9 2927 +a los ||| higher ||| 0.000738007 0.000472146 0.000341647 0.0001849 2.718 ||| 1-0 ||| 1355 2927 +a los ||| his way past ||| 0.166667 4.94587e-06 0.000341647 9.60642e-12 2.718 ||| 0-0 1-2 ||| 6 2927 +a los ||| his ||| 0.000146843 0.000156309 0.000341647 0.0002141 2.718 ||| 1-0 ||| 6810 2927 +a los ||| hold the ||| 0.0243902 0.00667213 0.000341647 0.000171361 2.718 ||| 1-1 ||| 41 2927 +a los ||| honor in ||| 0.166667 0.000316874 0.000341647 3.80927e-07 2.718 ||| 1-0 0-1 ||| 6 2927 +a los ||| household ||| 0.00510204 0.0121825 0.000341647 0.0013919 2.718 ||| 1-0 ||| 196 2927 +a los ||| human ||| 0.000630517 0.00737813 0.000341647 0.0035916 2.718 ||| 1-0 ||| 1586 2927 +a los ||| immigrants ||| 0.00330033 0.00016587 0.000341647 2.36e-05 2.718 ||| 0-0 ||| 303 2927 +a los ||| in " beggar-thy-neighbor " ||| 0.333333 0.00150143 0.000341647 6.36645e-12 2.718 ||| 0-0 ||| 3 2927 +a los ||| in " beggar-thy-neighbor ||| 0.333333 0.00150143 0.000341647 1.27479e-09 2.718 ||| 0-0 ||| 3 2927 +a los ||| in " ||| 0.00990099 0.00150143 0.000341647 0.000196122 2.718 ||| 0-0 ||| 101 2927 +a los ||| in China ||| 0.00181159 7.62712e-05 0.000341647 4.58683e-06 2.718 ||| 0-0 1-1 ||| 552 2927 +a los ||| in Pakistan ||| 0.00719424 0.000621041 0.000341647 6.49932e-06 2.718 ||| 0-0 1-1 ||| 139 2927 +a los ||| in judgment ||| 0.333333 0.00150143 0.000341647 1.78682e-06 2.718 ||| 0-0 ||| 3 2927 +a los ||| in rallying the ||| 1 0.0144075 0.000341647 5.68722e-07 2.718 ||| 0-0 0-1 1-2 ||| 1 2927 +a los ||| in seeking out the ||| 1 0.00637753 0.000341647 2.77916e-09 2.718 ||| 0-0 1-3 ||| 1 2927 +a los ||| in the future ||| 0.00341297 0.00637753 0.000341647 1.80015e-06 2.718 ||| 0-0 1-1 ||| 293 2927 +a los ||| in the ||| 0.00351896 0.00637753 0.0215237 0.0120492 2.718 ||| 0-0 1-1 ||| 17903 2927 +a los ||| in these terms ||| 0.2 0.000357682 0.000341647 9.45032e-09 2.718 ||| 0-0 1-1 ||| 5 2927 +a los ||| in these ||| 0.00357143 0.000357682 0.000341647 1.79664e-05 2.718 ||| 0-0 1-1 ||| 280 2927 +a los ||| in ||| 0.000211078 0.00150143 0.00580799 0.0392708 2.718 ||| 0-0 ||| 80539 2927 +a los ||| incentives as ||| 0.5 0.00709278 0.000341647 6.5843e-06 2.718 ||| 1-0 ||| 2 2927 +a los ||| incentives ||| 0.002079 0.00709278 0.000341647 0.0007787 2.718 ||| 1-0 ||| 481 2927 +a los ||| income of ||| 0.047619 0.000564776 0.000341647 2.38139e-06 2.718 ||| 0-1 ||| 21 2927 +a los ||| increased ||| 0.00111359 0.00011955 0.000341647 2.92e-05 2.718 ||| 1-0 ||| 898 2927 +a los ||| independent ||| 0.00161031 8.15465e-05 0.000341647 9.7e-06 2.718 ||| 1-0 ||| 621 2927 +a los ||| interest in ||| 0.00609756 0.00239852 0.000341647 4.12815e-05 2.718 ||| 1-0 0-1 ||| 164 2927 +a los ||| into accepting ||| 0.25 0.00165254 0.000341647 1.08624e-07 2.718 ||| 0-0 1-1 ||| 4 2927 +a los ||| into the hands of ||| 0.0454545 0.0257883 0.000341647 1.14545e-08 2.718 ||| 0-0 1-1 ||| 22 2927 +a los ||| into the hands ||| 0.0416667 0.0257883 0.000341647 4.2399e-07 2.718 ||| 0-0 1-1 ||| 24 2927 +a los ||| into the royal murders lit ||| 0.5 0.0257883 0.000341647 2.54767e-17 2.718 ||| 0-0 1-1 ||| 2 2927 +a los ||| into the royal murders ||| 0.5 0.0257883 0.000341647 1.3065e-12 2.718 ||| 0-0 1-1 ||| 2 2927 +a los ||| into the royal ||| 0.5 0.0257883 0.000341647 6.7e-08 2.718 ||| 0-0 1-1 ||| 2 2927 +a los ||| into the ||| 0.0355731 0.0257883 0.00922446 0.0034359 2.718 ||| 0-0 1-1 ||| 759 2927 +a los ||| into their ||| 0.0227273 0.00332514 0.000341647 2.76856e-05 2.718 ||| 0-0 1-1 ||| 44 2927 +a los ||| into ||| 0.00201613 0.00607119 0.00273317 0.0111983 2.718 ||| 0-0 ||| 3968 2927 +a los ||| investigation into the royal murders lit ||| 0.5 0.0257883 0.000341647 1.65599e-22 2.718 ||| 0-1 1-2 ||| 2 2927 +a los ||| investigation into the royal murders ||| 0.5 0.0257883 0.000341647 8.49225e-18 2.718 ||| 0-1 1-2 ||| 2 2927 +a los ||| investigation into the royal ||| 0.5 0.0257883 0.000341647 4.355e-13 2.718 ||| 0-1 1-2 ||| 2 2927 +a los ||| investigation into the ||| 0.166667 0.0257883 0.000341647 2.23333e-08 2.718 ||| 0-1 1-2 ||| 6 2927 +a los ||| is for ||| 0.0108696 0.00201634 0.000341647 0.00038996 2.718 ||| 0-1 ||| 92 2927 +a los ||| it easier for ||| 0.0909091 0.00201634 0.000341647 5.72635e-08 2.718 ||| 0-2 ||| 11 2927 +a los ||| it to the ||| 0.0833333 0.0394986 0.000683294 0.00267411 2.718 ||| 0-1 1-2 ||| 24 2927 +a los ||| it would benefit the ||| 0.5 0.018812 0.000341647 4.14549e-08 2.718 ||| 0-2 1-3 ||| 2 2927 +a los ||| its way into the ||| 0.2 0.0257883 0.000341647 1.03762e-08 2.718 ||| 0-2 1-3 ||| 5 2927 +a los ||| label on ||| 0.5 0.00330909 0.000341647 5.01162e-07 2.718 ||| 0-1 ||| 2 2927 +a los ||| law that protects the ||| 1 0.0425378 0.000341647 6.45588e-11 2.718 ||| 0-2 1-3 ||| 1 2927 +a los ||| leaders ||| 0.000382117 0.0156157 0.000341647 0.0116216 2.718 ||| 1-0 ||| 2617 2927 +a los ||| leaves the ||| 0.05 0.0210577 0.000341647 9.77538e-05 2.718 ||| 0-0 1-1 ||| 20 2927 +a los ||| level the playing field between ||| 0.142857 0.00667213 0.000341647 1.71802e-16 2.718 ||| 1-1 ||| 7 2927 +a los ||| level the playing field ||| 0.0909091 0.00667213 0.000341647 5.29111e-13 2.718 ||| 1-1 ||| 11 2927 +a los ||| level the playing ||| 0.111111 0.00667213 0.000341647 8.15271e-09 2.718 ||| 1-1 ||| 9 2927 +a los ||| level the ||| 0.111111 0.00667213 0.000341647 6.97409e-05 2.718 ||| 1-1 ||| 9 2927 +a los ||| life to the ||| 0.5 0.0394986 0.000341647 2.2175e-05 2.718 ||| 0-1 1-2 ||| 2 2927 +a los ||| like either ||| 1 0.000925484 0.000341647 3.82273e-07 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| like the ||| 0.00377358 0.00405773 0.000683294 0.000376533 2.718 ||| 0-0 1-1 ||| 530 2927 +a los ||| likely to ||| 0.00123153 0.00929893 0.000341647 0.000157311 2.718 ||| 0-1 ||| 812 2927 +a los ||| link mobile ||| 0.5 0.00696171 0.000341647 4.42975e-09 2.718 ||| 1-1 ||| 2 2927 +a los ||| linked to the ||| 0.0606061 0.0394986 0.000683294 4.56958e-06 2.718 ||| 0-1 1-2 ||| 33 2927 +a los ||| loyalists ||| 0.04 0.00355192 0.000341647 3.54e-05 2.718 ||| 0-0 ||| 25 2927 +a los ||| major backer of ||| 0.5 0.000508819 0.000341647 7.91479e-11 2.718 ||| 1-0 0-2 ||| 2 2927 +a los ||| member ||| 0.000968992 0.00346097 0.000341647 0.0008468 2.718 ||| 1-0 ||| 1032 2927 +a los ||| mobile ||| 0.0133333 0.00696171 0.000341647 0.0001363 2.718 ||| 1-0 ||| 75 2927 +a los ||| much as the ||| 0.0454545 0.00422766 0.000341647 4.11316e-06 2.718 ||| 0-1 1-2 ||| 22 2927 +a los ||| much the ||| 0.025641 0.00667213 0.000341647 0.000442347 2.718 ||| 1-1 ||| 39 2927 +a los ||| much to the ||| 0.111111 0.0394986 0.000341647 0.00014479 2.718 ||| 0-1 1-2 ||| 9 2927 +a los ||| not like either ||| 1 0.000925484 0.000341647 8.98685e-10 2.718 ||| 0-1 1-2 ||| 1 2927 +a los ||| not to ||| 0.00204082 0.00929893 0.000341647 0.000769504 2.718 ||| 0-1 ||| 490 2927 +a los ||| nothing so much as the ||| 0.5 0.00422766 0.000341647 1.68511e-12 2.718 ||| 0-3 1-4 ||| 2 2927 +a los ||| of Chinese ||| 0.0208333 0.000674071 0.000341647 1.8266e-05 2.718 ||| 0-0 1-1 ||| 48 2927 +a los ||| of Palestine 's ||| 0.166667 0.00059785 0.000341647 5.49153e-09 2.718 ||| 0-0 1-2 ||| 6 2927 +a los ||| of air time to the ||| 1 0.0394986 0.000341647 1.31946e-10 2.718 ||| 0-3 1-4 ||| 1 2927 +a los ||| of both the ||| 0.0714286 0.00320915 0.000341647 7.65347e-06 2.718 ||| 0-0 0-1 1-2 ||| 14 2927 +a los ||| of directors ||| 0.0909091 0.00511744 0.000341647 5.87799e-06 2.718 ||| 0-0 1-1 ||| 11 2927 +a los ||| of domestic ||| 0.0833333 0.000217227 0.000341647 3.77917e-06 2.718 ||| 0-0 1-1 ||| 12 2927 +a los ||| of higher ||| 0.0384615 0.000169761 0.000341647 3.9884e-06 2.718 ||| 0-0 1-1 ||| 26 2927 +a los ||| of honor in ||| 0.25 0.000316874 0.000341647 1.02912e-08 2.718 ||| 1-1 0-2 ||| 4 2927 +a los ||| of individual ||| 0.0769231 0.00066785 0.000341647 5.66875e-06 2.718 ||| 0-0 1-1 ||| 13 2927 +a los ||| of law that protects the ||| 1 0.0425378 0.000341647 1.74413e-12 2.718 ||| 0-3 1-4 ||| 1 2927 +a los ||| of lowered ||| 1 0.000620712 0.000341647 4.20627e-07 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| of means ||| 0.0769231 0.000564776 0.000341647 7.70502e-06 2.718 ||| 0-0 ||| 13 2927 +a los ||| of opposition ||| 0.0625 0.000564776 0.000341647 9.81462e-07 2.718 ||| 0-0 ||| 16 2927 +a los ||| of the Israeli Arabs and ||| 1 0.00239897 0.000341647 7.03329e-14 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| of the Israeli Arabs ||| 1 0.00239897 0.000341647 8.37586e-12 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| of the Israeli ||| 0.5 0.00239897 0.000341647 4.29531e-07 2.718 ||| 0-0 1-1 ||| 2 2927 +a los ||| of the country 's ||| 0.0384615 0.00239897 0.000341647 7.96517e-08 2.718 ||| 0-0 1-1 ||| 26 2927 +a los ||| of the country ||| 0.00617284 0.00239897 0.000341647 5.11467e-06 2.718 ||| 0-0 1-1 ||| 162 2927 +a los ||| of the sectarian divide during his 40 ||| 0.166667 0.00239897 0.000341647 5.703e-24 2.718 ||| 0-0 1-1 ||| 6 2927 +a los ||| of the sectarian divide during his ||| 0.166667 0.00239897 0.000341647 2.92462e-19 2.718 ||| 0-0 1-1 ||| 6 2927 +a los ||| of the sectarian divide during ||| 0.166667 0.00239897 0.000341647 2.92432e-16 2.718 ||| 0-0 1-1 ||| 6 2927 +a los ||| of the sectarian divide ||| 0.166667 0.00239897 0.000341647 1.95738e-12 2.718 ||| 0-0 1-1 ||| 6 2927 +a los ||| of the sectarian ||| 0.166667 0.00239897 0.000341647 4.30193e-08 2.718 ||| 0-0 1-1 ||| 6 2927 +a los ||| of the ||| 0.00306606 0.00239897 0.0225487 0.00661836 2.718 ||| 0-0 1-1 ||| 21526 2927 +a los ||| of those of ||| 0.333333 0.00344656 0.000341647 4.46395e-06 2.718 ||| 0-0 1-1 ||| 3 2927 +a los ||| of those ||| 0.0123077 0.00344656 0.00136659 0.000165233 2.718 ||| 0-0 1-1 ||| 325 2927 +a los ||| of wasteful ||| 1 0.00226881 0.000341647 8.39096e-07 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| of which ||| 0.00342466 0.000564776 0.000341647 2.59149e-05 2.718 ||| 0-0 ||| 292 2927 +a los ||| of whom ||| 0.0285714 0.00249524 0.000683294 1.59558e-05 2.718 ||| 0-0 1-1 ||| 70 2927 +a los ||| of ||| 0.000304169 0.000564776 0.010591 0.0215706 2.718 ||| 0-0 ||| 101917 2927 +a los ||| off the ||| 0.0145985 0.010191 0.000683294 0.000325846 2.718 ||| 0-0 1-1 ||| 137 2927 +a los ||| off ||| 0.00477327 0.0023992 0.000683294 0.001062 2.718 ||| 0-0 ||| 419 2927 +a los ||| on a regular basis , brought the ||| 1 0.0140558 0.000341647 3.14504e-16 2.718 ||| 0-0 1-6 ||| 1 2927 +a los ||| on all ||| 0.0125 0.00258139 0.000341647 5.45341e-05 2.718 ||| 0-0 1-1 ||| 80 2927 +a los ||| on financial-market ||| 1 0.0208649 0.000341647 5.2532e-06 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| on imported ||| 0.5 0.00763373 0.000341647 2.00208e-06 2.718 ||| 0-0 1-1 ||| 2 2927 +a los ||| on market ||| 0.25 0.00215566 0.000341647 1.8011e-05 2.718 ||| 0-0 1-1 ||| 4 2927 +a los ||| on membership that ||| 1 5.85002e-05 0.000341647 6.59505e-10 2.718 ||| 0-0 1-2 ||| 1 2927 +a los ||| on the back of ||| 0.133333 0.0140558 0.000683294 2.96078e-07 2.718 ||| 0-0 1-1 ||| 15 2927 +a los ||| on the back ||| 0.1 0.0140558 0.000683294 1.09593e-05 2.718 ||| 0-0 1-1 ||| 20 2927 +a los ||| on the basis of ||| 0.0113636 0.0140558 0.000341647 8.16356e-08 2.718 ||| 0-0 1-1 ||| 88 2927 +a los ||| on the basis ||| 0.0102041 0.0140558 0.000341647 3.02174e-06 2.718 ||| 0-0 1-1 ||| 98 2927 +a los ||| on the part of ||| 0.0232558 0.0140558 0.000341647 1.31443e-07 2.718 ||| 0-0 1-1 ||| 43 2927 +a los ||| on the part ||| 0.0185185 0.0140558 0.000341647 4.86538e-06 2.718 ||| 0-0 1-1 ||| 54 2927 +a los ||| on the ||| 0.0152161 0.0140558 0.0256235 0.00788554 2.718 ||| 0-0 1-1 ||| 4929 2927 +a los ||| on them ||| 0.0285714 0.00914159 0.000341647 0.000102813 2.718 ||| 0-0 1-1 ||| 35 2927 +a los ||| on those ||| 0.0243902 0.0201938 0.000341647 0.000196869 2.718 ||| 0-0 1-1 ||| 41 2927 +a los ||| on to those ||| 1 0.0384704 0.000341647 6.44398e-05 2.718 ||| 0-0 0-1 1-2 ||| 1 2927 +a los ||| on ||| 0.00165144 0.00330909 0.0109327 0.0257006 2.718 ||| 0-0 ||| 19377 2927 +a los ||| ones ||| 0.0070922 0.00466226 0.000341647 0.0003115 2.718 ||| 1-0 ||| 141 2927 +a los ||| operators ||| 0.0238095 0.0162661 0.000341647 0.0001557 2.718 ||| 1-0 ||| 42 2927 +a los ||| ordinary taxpayers to the ||| 1 0.0394986 0.000341647 1.69727e-11 2.718 ||| 0-2 1-3 ||| 1 2927 +a los ||| out of ||| 0.0016835 0.000564776 0.000341647 9.56786e-05 2.718 ||| 0-1 ||| 594 2927 +a los ||| out the ||| 0.0125 0.0122561 0.000341647 0.00126356 2.718 ||| 0-0 1-1 ||| 80 2927 +a los ||| out to the ||| 0.272727 0.0394986 0.00102494 0.000445468 2.718 ||| 0-1 1-2 ||| 11 2927 +a los ||| out ||| 0.000792393 0.00288538 0.000341647 0.0041182 2.718 ||| 0-0 ||| 1262 2927 +a los ||| outsiders to correctly guess ||| 0.5 0.0834743 0.000341647 4.84582e-14 2.718 ||| 1-0 0-1 ||| 2 2927 +a los ||| outsiders to correctly ||| 0.5 0.0834743 0.000341647 1.86378e-09 2.718 ||| 1-0 0-1 ||| 2 2927 +a los ||| outsiders to ||| 0.166667 0.0834743 0.000341647 0.000143368 2.718 ||| 1-0 0-1 ||| 6 2927 +a los ||| over the ||| 0.00141343 0.0116573 0.000683294 0.00148803 2.718 ||| 0-0 1-1 ||| 1415 2927 +a los ||| over those ||| 0.2 0.0167478 0.000341647 3.715e-05 2.718 ||| 0-0 1-1 ||| 5 2927 +a los ||| people from the economic shambles ||| 0.333333 0.00596208 0.000341647 5.90209e-15 2.718 ||| 0-1 1-2 ||| 3 2927 +a los ||| people from the economic ||| 0.333333 0.00596208 0.000341647 9.08014e-10 2.718 ||| 0-1 1-2 ||| 3 2927 +a los ||| people from the ||| 0.0625 0.00596208 0.000341647 2.02637e-06 2.718 ||| 0-1 1-2 ||| 16 2927 +a los ||| people ||| 0.000323887 0.00013781 0.000683294 0.00111895 2.718 ||| 0-0 1-0 ||| 6175 2927 +a los ||| pit the ||| 0.25 0.0510454 0.000341647 2.53436e-05 2.718 ||| 0-0 1-1 ||| 4 2927 +a los ||| place in the ||| 0.0232558 0.00637753 0.000341647 1.53374e-05 2.718 ||| 0-1 1-2 ||| 43 2927 +a los ||| planners ||| 0.0416667 0.0199416 0.000341647 0.0001655 2.718 ||| 1-0 ||| 24 2927 +a los ||| play into ||| 0.25 0.00607119 0.000341647 2.76374e-06 2.718 ||| 0-1 ||| 4 2927 +a los ||| policymakers ||| 0.00154083 0.00824158 0.000341647 0.0021024 2.718 ||| 1-0 ||| 649 2927 +a los ||| poor ||| 0.000611247 0.00303349 0.000341647 0.0010804 2.718 ||| 1-0 ||| 1636 2927 +a los ||| prepared to respond to ||| 0.333333 0.00929893 0.000341647 5.58987e-11 2.718 ||| 0-1 ||| 3 2927 +a los ||| prepared to respond ||| 0.25 0.00929893 0.000341647 6.77641e-10 2.718 ||| 0-1 ||| 4 2927 +a los ||| prepared to ||| 0.00552486 0.00929893 0.000341647 1.48932e-05 2.718 ||| 0-1 ||| 181 2927 +a los ||| protects the ||| 0.111111 0.0425378 0.000341647 5.06872e-05 2.718 ||| 0-0 1-1 ||| 9 2927 +a los ||| questions of the Israeli Arabs and ||| 1 0.00239897 0.000341647 5.9361e-18 2.718 ||| 0-1 1-2 ||| 1 2927 +a los ||| questions of the Israeli Arabs ||| 1 0.00239897 0.000341647 7.06923e-16 2.718 ||| 0-1 1-2 ||| 1 2927 +a los ||| questions of the Israeli ||| 1 0.00239897 0.000341647 3.62524e-11 2.718 ||| 0-1 1-2 ||| 1 2927 +a los ||| questions of the ||| 0.5 0.00239897 0.000341647 5.58589e-07 2.718 ||| 0-1 1-2 ||| 2 2927 +a los ||| raise our ||| 0.333333 0.000459785 0.000341647 2.04614e-08 2.718 ||| 1-0 ||| 3 2927 +a los ||| raise ||| 0.00285714 0.000459785 0.000341647 3.89e-05 2.718 ||| 1-0 ||| 350 2927 +a los ||| reach out to the ||| 0.153846 0.0394986 0.000683294 8.09862e-08 2.718 ||| 0-2 1-3 ||| 13 2927 +a los ||| reached by the ||| 0.2 0.0320504 0.000341647 2.67307e-06 2.718 ||| 0-0 1-2 ||| 5 2927 +a los ||| reached to ||| 0.333333 0.00929893 0.000341647 3.61365e-05 2.718 ||| 0-1 ||| 3 2927 +a los ||| regulators ||| 0.00403226 0.0161529 0.000341647 0.0014503 2.718 ||| 1-0 ||| 248 2927 +a los ||| rein to corrupt ||| 0.333333 0.00112846 0.000341647 2.06377e-11 2.718 ||| 0-1 1-2 ||| 3 2927 +a los ||| reminded the ||| 0.25 0.0368801 0.000341647 7.96513e-05 2.718 ||| 0-0 1-1 ||| 4 2927 +a los ||| reminding them ||| 1 0.0255375 0.000341647 3.30433e-07 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| replaced ||| 0.00595238 0.00591986 0.000341647 0.000472 2.718 ||| 0-0 ||| 168 2927 +a los ||| require the ||| 0.0344828 0.00667213 0.000341647 4.3845e-05 2.718 ||| 1-1 ||| 29 2927 +a los ||| required ||| 0.0019802 0.000316746 0.000341647 5.9e-05 2.718 ||| 0-0 ||| 505 2927 +a los ||| rescuing the ||| 0.142857 0.0234392 0.000341647 3.25846e-05 2.718 ||| 0-0 1-1 ||| 7 2927 +a los ||| resorting to tax ||| 0.2 0.0136062 0.000341647 1.30464e-09 2.718 ||| 0-1 1-2 ||| 5 2927 +a los ||| resources ||| 0.000720981 0.00217654 0.000341647 0.0005159 2.718 ||| 1-0 ||| 1387 2927 +a los ||| round up the ||| 0.333333 0.00392307 0.000341647 3.30017e-08 2.718 ||| 0-1 1-2 ||| 3 2927 +a los ||| rule of law that protects the ||| 1 0.0425378 0.000341647 4.30451e-16 2.718 ||| 0-4 1-5 ||| 1 2927 +a los ||| run in the ||| 0.333333 0.00637753 0.000341647 5.08596e-06 2.718 ||| 0-1 1-2 ||| 3 2927 +a los ||| schoolchildren ||| 0.0666667 0.0118607 0.000341647 6.81e-05 2.718 ||| 1-0 ||| 15 2927 +a los ||| screening ||| 0.047619 0.0063835 0.000341647 5.84e-05 2.718 ||| 1-0 ||| 21 2927 +a los ||| seek to opt out ||| 0.1 0.00136947 0.000341647 3.27553e-13 2.718 ||| 0-1 1-3 ||| 10 2927 +a los ||| seems in the ||| 1 0.00637753 0.000341647 2.50382e-06 2.718 ||| 0-1 1-2 ||| 1 2927 +a los ||| sending financiers on ||| 0.0909091 0.0228259 0.000341647 1.46339e-10 2.718 ||| 1-1 0-2 ||| 11 2927 +a los ||| serve ||| 0.00411523 0.00345169 0.000341647 0.0004484 2.718 ||| 0-0 ||| 243 2927 +a los ||| services ||| 0.00087108 0.00911528 0.000341647 0.0020635 2.718 ||| 1-0 ||| 1148 2927 +a los ||| sets the ||| 0.0588235 0.00507283 0.000341647 1.4482e-05 2.718 ||| 0-0 1-1 ||| 17 2927 +a los ||| short of the ||| 0.05 0.00239897 0.000341647 2.66455e-06 2.718 ||| 0-1 1-2 ||| 20 2927 +a los ||| shots fired at the ||| 1 0.0270762 0.000341647 1.98797e-12 2.718 ||| 0-2 1-3 ||| 1 2927 +a los ||| should reach out to the ||| 0.25 0.0394986 0.000341647 9.94024e-11 2.718 ||| 0-3 1-4 ||| 4 2927 +a los ||| since then ||| 0.00775194 0.00039285 0.000341647 3.59393e-07 2.718 ||| 0-0 ||| 129 2927 +a los ||| since ||| 0.000378931 0.00039285 0.000341647 0.000413 2.718 ||| 0-0 ||| 2639 2927 +a los ||| sit in judgment ||| 0.5 0.00150143 0.000341647 1.39193e-10 2.718 ||| 0-1 ||| 2 2927 +a los ||| sit in ||| 0.1 0.00150143 0.000341647 3.0592e-06 2.718 ||| 0-1 ||| 10 2927 +a los ||| small ||| 0.000825083 0.000120286 0.000341647 2.92e-05 2.718 ||| 1-0 ||| 1212 2927 +a los ||| so much as the ||| 0.5 0.00422766 0.000341647 9.26901e-09 2.718 ||| 0-2 1-3 ||| 2 2927 +a los ||| so on ||| 0.0163934 0.00330909 0.000341647 5.79163e-05 2.718 ||| 0-1 ||| 61 2927 +a los ||| soon as we engage with the ||| 0.25 0.00482447 0.000341647 7.62069e-16 2.718 ||| 0-4 1-5 ||| 4 2927 +a los ||| spent on ||| 0.0192308 0.00330909 0.000341647 2.16913e-06 2.718 ||| 0-1 ||| 52 2927 +a los ||| spot on financial-market ||| 1 0.0208649 0.000341647 6.82916e-11 2.718 ||| 0-1 1-2 ||| 1 2927 +a los ||| states ||| 0.000914913 0.00894446 0.000683294 0.0044968 2.718 ||| 1-0 ||| 2186 2927 +a los ||| subservient to the ||| 0.25 0.0394986 0.000341647 6.52797e-07 2.718 ||| 0-1 1-2 ||| 4 2927 +a los ||| such as the ||| 0.003861 0.00422766 0.000341647 6.04007e-06 2.718 ||| 0-1 1-2 ||| 259 2927 +a los ||| supporters ||| 0.00401606 0.0020066 0.000341647 0.00030485 2.718 ||| 0-0 1-0 ||| 249 2927 +a los ||| surveys ||| 0.0133333 0.00348559 0.000341647 7.79e-05 2.718 ||| 1-0 ||| 75 2927 +a los ||| survivors of ||| 0.0833333 0.00458412 0.000341647 3.56993e-06 2.718 ||| 1-0 0-1 ||| 12 2927 +a los ||| suspects ||| 0.0185185 0.00914968 0.000341647 0.0001071 2.718 ||| 1-0 ||| 54 2927 +a los ||| tag along behind the ||| 0.5 0.00667213 0.000341647 3.53224e-13 2.718 ||| 1-3 ||| 2 2927 +a los ||| talk since then ||| 0.5 0.00039285 0.000341647 3.50048e-11 2.718 ||| 0-1 ||| 2 2927 +a los ||| talk since ||| 0.5 0.00039285 0.000341647 4.02262e-08 2.718 ||| 0-1 ||| 2 2927 +a los ||| targeting ||| 0.0107527 0.00280665 0.000341647 0.0001118 2.718 ||| 0-0 1-0 ||| 93 2927 +a los ||| tax ||| 0.000645995 0.00229836 0.000341647 0.0006132 2.718 ||| 1-0 ||| 1548 2927 +a los ||| taxpayers to the ||| 0.5 0.0394986 0.000341647 6.52797e-07 2.718 ||| 0-1 1-2 ||| 2 2927 +a los ||| testing ||| 0.00819672 0.00386017 0.000341647 0.0002242 2.718 ||| 0-0 ||| 122 2927 +a los ||| than the ||| 0.00129366 0.00151459 0.000341647 0.000383774 2.718 ||| 0-0 1-1 ||| 773 2927 +a los ||| that protects the ||| 0.2 0.0425378 0.000341647 4.14104e-07 2.718 ||| 0-1 1-2 ||| 5 2927 +a los ||| that the ||| 0.000162259 0.00667213 0.000341647 0.00250668 2.718 ||| 1-1 ||| 6163 2927 +a los ||| the Americans will be accommodated ||| 0.25 0.00667213 0.000341647 5.53917e-15 2.718 ||| 1-0 ||| 4 2927 +a los ||| the Americans will be ||| 0.25 0.00667213 0.000341647 8.5218e-10 2.718 ||| 1-0 ||| 4 2927 +a los ||| the Americans will ||| 0.25 0.00667213 0.000341647 8.26845e-08 2.718 ||| 1-0 ||| 4 2927 +a los ||| the Americans ||| 0.00671141 0.00667213 0.000341647 1.19661e-05 2.718 ||| 1-0 ||| 149 2927 +a los ||| the ambition ||| 0.0588235 0.00667213 0.000341647 3.9887e-06 2.718 ||| 1-0 ||| 17 2927 +a los ||| the combined ||| 0.25 0.00667213 0.000341647 2.19072e-05 2.718 ||| 1-0 ||| 4 2927 +a los ||| the country 's ||| 0.0140845 0.00667213 0.000683294 3.69261e-06 2.718 ||| 1-0 ||| 142 2927 +a los ||| the country ||| 0.00161812 0.00667213 0.000683294 0.000237113 2.718 ||| 1-0 ||| 1236 2927 +a los ||| the court ||| 0.0147059 0.00255867 0.000341647 1.81026e-05 2.718 ||| 1-0 0-1 ||| 68 2927 +a los ||| the face ||| 0.00877193 0.00667213 0.000341647 0.000113586 2.718 ||| 1-0 ||| 114 2927 +a los ||| the hands ||| 0.00813008 0.00667213 0.000341647 3.7862e-05 2.718 ||| 1-0 ||| 123 2927 +a los ||| the investigation into the royal murders lit ||| 0.5 0.0257883 0.000341647 8.7982e-24 2.718 ||| 0-2 1-3 ||| 2 2927 +a los ||| the investigation into the royal murders ||| 0.5 0.0257883 0.000341647 4.5119e-19 2.718 ||| 0-2 1-3 ||| 2 2927 +a los ||| the investigation into the royal ||| 0.5 0.0257883 0.000341647 2.31379e-14 2.718 ||| 0-2 1-3 ||| 2 2927 +a los ||| the investigation into the ||| 0.25 0.0257883 0.000341647 1.18656e-09 2.718 ||| 0-2 1-3 ||| 4 2927 +a los ||| the many ||| 0.00854701 0.000301561 0.000341647 3.98256e-05 2.718 ||| 1-0 0-1 ||| 117 2927 +a los ||| the neighborhood , ||| 0.25 0.00667213 0.000341647 1.22216e-06 2.718 ||| 1-0 ||| 4 2927 +a los ||| the neighborhood ||| 0.111111 0.00667213 0.000341647 5.98305e-06 2.718 ||| 1-0 ||| 9 2927 +a los ||| the performance ||| 0.030303 0.00667213 0.000341647 1.99128e-05 2.718 ||| 1-0 ||| 33 2927 +a los ||| the playing field between ||| 0.125 0.00667213 0.000341647 7.55839e-13 2.718 ||| 1-0 ||| 8 2927 +a los ||| the playing field ||| 0.05 0.00667213 0.000341647 2.32781e-09 2.718 ||| 1-0 ||| 20 2927 +a los ||| the playing ||| 0.0833333 0.00667213 0.000341647 3.58676e-05 2.718 ||| 1-0 ||| 12 2927 +a los ||| the poorest ||| 0.0175439 0.00667213 0.000341647 7.9774e-06 2.718 ||| 1-0 ||| 57 2927 +a los ||| the questions of the Israeli Arabs and ||| 1 0.00239897 0.000341647 3.15383e-19 2.718 ||| 0-2 1-3 ||| 1 2927 +a los ||| the questions of the Israeli Arabs ||| 1 0.00239897 0.000341647 3.75585e-17 2.718 ||| 0-2 1-3 ||| 1 2927 +a los ||| the questions of the Israeli ||| 1 0.00239897 0.000341647 1.92608e-12 2.718 ||| 0-2 1-3 ||| 1 2927 +a los ||| the questions of the ||| 1 0.00239897 0.000341647 2.96776e-08 2.718 ||| 0-2 1-3 ||| 1 2927 +a los ||| the result of government-induced ||| 1 0.00239897 0.000341647 1.78788e-11 2.718 ||| 1-0 0-2 ||| 1 2927 +a los ||| the result of ||| 0.00480769 0.00239897 0.000341647 2.75059e-06 2.718 ||| 1-0 0-2 ||| 208 2927 +a los ||| the result should be something closer to ||| 0.333333 0.0394986 0.000341647 1.92336e-17 2.718 ||| 1-0 0-6 ||| 3 2927 +a los ||| the ||| 0.00288447 0.00667213 0.204305 0.306823 2.718 ||| 1-0 ||| 207317 2927 +a los ||| their ||| 0.000352187 0.000860303 0.00170823 0.0024723 2.718 ||| 1-0 ||| 14197 2927 +a los ||| them to take advantage ||| 0.0909091 0.025689 0.000341647 5.262e-11 2.718 ||| 1-0 0-1 ||| 11 2927 +a los ||| them to take ||| 0.0909091 0.025689 0.000341647 1.15648e-06 2.718 ||| 1-0 0-1 ||| 11 2927 +a los ||| them to ||| 0.00653595 0.025689 0.000341647 0.00130942 2.718 ||| 1-0 0-1 ||| 153 2927 +a los ||| themselves to ||| 0.0434783 0.00929893 0.000341647 0.000263593 2.718 ||| 0-1 ||| 23 2927 +a los ||| these ||| 0.000167252 0.000374204 0.000341647 0.0004575 2.718 ||| 1-0 ||| 5979 2927 +a los ||| thinkers ||| 0.0178571 0.00879777 0.000341647 9.73e-05 2.718 ||| 1-0 ||| 56 2927 +a los ||| this leaves the ||| 0.25 0.0210577 0.000341647 1.94256e-07 2.718 ||| 0-1 1-2 ||| 4 2927 +a los ||| those in the ||| 0.0227273 0.00637753 0.000341647 6.0258e-06 2.718 ||| 0-1 1-2 ||| 44 2927 +a los ||| those in ||| 0.00947867 0.00916249 0.000683294 0.000300818 2.718 ||| 1-0 0-1 ||| 211 2927 +a los ||| those of ||| 0.00460829 0.00344656 0.000341647 0.000165233 2.718 ||| 1-0 0-1 ||| 217 2927 +a los ||| those within ||| 0.5 0.00454002 0.000341647 4.1579e-06 2.718 ||| 1-0 0-1 ||| 2 2927 +a los ||| those ||| 0.00770465 0.00958573 0.00819952 0.0076601 2.718 ||| 1-0 ||| 3115 2927 +a los ||| through the world 's ||| 1 0.037543 0.000341647 3.81611e-08 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| through the world ||| 1 0.037543 0.000341647 2.45043e-06 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| through the ||| 0.00287356 0.037543 0.000341647 0.00279507 2.718 ||| 0-0 1-1 ||| 348 2927 +a los ||| throw the ||| 0.2 0.00494386 0.000341647 7.24102e-06 2.718 ||| 0-0 1-1 ||| 5 2927 +a los ||| throwing the ||| 0.25 0.00634104 0.000341647 1.08615e-05 2.718 ||| 0-0 1-1 ||| 4 2927 +a los ||| time to the ||| 0.166667 0.0394986 0.000341647 9.39224e-05 2.718 ||| 0-1 1-2 ||| 6 2927 +a los ||| to $ ||| 0.0547945 0.00887652 0.00136659 0.000299468 2.718 ||| 0-0 1-1 ||| 73 2927 +a los ||| to " coalition ||| 1 0.00067707 0.000341647 1.58564e-08 2.718 ||| 0-0 1-2 ||| 1 2927 +a los ||| to " ||| 0.00284091 0.00929893 0.000341647 0.00163468 2.718 ||| 0-0 ||| 352 2927 +a los ||| to American ||| 0.142857 0.0108723 0.000341647 0.000388696 2.718 ||| 0-0 1-1 ||| 7 2927 +a los ||| to French and German levels ||| 1 0.0695335 0.000341647 5.23714e-14 2.718 ||| 0-0 1-4 ||| 1 2927 +a los ||| to Pakistan ||| 0.0238095 0.00384635 0.000341647 5.4172e-05 2.718 ||| 0-0 1-1 ||| 42 2927 +a los ||| to Pakistani ||| 1 0.00719013 0.000341647 1.91157e-05 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| to acute ||| 1 0.00601839 0.000341647 6.3828e-06 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| to all ||| 0.0176211 0.00725401 0.00136659 0.000694547 2.718 ||| 0-0 1-1 ||| 227 2927 +a los ||| to be run in the ||| 1 0.00637753 0.000341647 4.32397e-09 2.718 ||| 0-3 1-4 ||| 1 2927 +a los ||| to be ||| 0.000337952 0.00929893 0.000341647 0.00337352 2.718 ||| 0-0 ||| 2959 2927 +a los ||| to blame ||| 0.00943396 0.00929893 0.000341647 1.27656e-05 2.718 ||| 0-0 ||| 106 2927 +a los ||| to block ||| 0.015873 0.00389681 0.000341647 6.3828e-06 2.718 ||| 0-0 1-1 ||| 63 2927 +a los ||| to both the ||| 0.0909091 0.0394986 0.000341647 0.000171535 2.718 ||| 0-0 1-2 ||| 11 2927 +a los ||| to bring ||| 0.00438596 0.00929893 0.000341647 0.000178555 2.718 ||| 0-0 ||| 228 2927 +a los ||| to cooperative ||| 1 0.00370996 0.000341647 3.17503e-06 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| to corrupt ||| 0.1 0.00112846 0.000341647 3.17503e-06 2.718 ||| 0-0 1-1 ||| 10 2927 +a los ||| to distract people from the economic shambles ||| 0.333333 0.00596208 0.000341647 3.16462e-21 2.718 ||| 0-3 1-4 ||| 3 2927 +a los ||| to distract people from the economic ||| 0.333333 0.00596208 0.000341647 4.86865e-16 2.718 ||| 0-3 1-4 ||| 3 2927 +a los ||| to distract people from the ||| 0.333333 0.00596208 0.000341647 1.08651e-12 2.718 ||| 0-3 1-4 ||| 3 2927 +a los ||| to each ||| 0.0263158 0.01681 0.000341647 0.000344082 2.718 ||| 0-0 1-1 ||| 38 2927 +a los ||| to even ||| 0.0833333 0.00929893 0.000341647 0.000297602 2.718 ||| 0-0 ||| 12 2927 +a los ||| to financial institutions ' chief executive ||| 0.5 0.00929893 0.000341647 2.48038e-21 2.718 ||| 0-0 ||| 2 2927 +a los ||| to financial institutions ' chief ||| 0.5 0.00929893 0.000341647 1.90799e-16 2.718 ||| 0-0 ||| 2 2927 +a los ||| to financial institutions ' ||| 0.5 0.00929893 0.000341647 3.6692e-12 2.718 ||| 0-0 ||| 2 2927 +a los ||| to financial institutions ||| 0.166667 0.00929893 0.000341647 4.4486e-09 2.718 ||| 0-0 ||| 6 2927 +a los ||| to financial ||| 0.0909091 0.00929893 0.000341647 9.77714e-05 2.718 ||| 0-0 ||| 11 2927 +a los ||| to heavily ||| 0.333333 0.00929893 0.000341647 2.97537e-05 2.718 ||| 0-0 ||| 3 2927 +a los ||| to helping the ||| 0.333333 0.0394986 0.000341647 7.17072e-06 2.718 ||| 0-0 1-2 ||| 3 2927 +a los ||| to issues ||| 0.166667 0.0164753 0.000341647 0.000232563 2.718 ||| 0-0 1-1 ||| 6 2927 +a los ||| to its ||| 0.0056391 0.00197331 0.00102494 0.000312234 2.718 ||| 0-0 1-1 ||| 532 2927 +a los ||| to key ||| 0.5 0.00240855 0.000341647 2.86735e-05 2.718 ||| 0-0 1-1 ||| 2 2927 +a los ||| to leave ||| 0.01 0.00929893 0.000341647 5.31573e-05 2.718 ||| 0-0 ||| 100 2927 +a los ||| to local ||| 0.333333 0.00192859 0.000341647 2.22907e-05 2.718 ||| 0-0 1-1 ||| 3 2927 +a los ||| to many ||| 0.00943396 0.000509075 0.000341647 3.18485e-05 2.718 ||| 0-0 1-1 ||| 106 2927 +a los ||| to media ||| 0.5 0.0616737 0.000341647 0.000806033 2.718 ||| 0-0 1-1 ||| 2 2927 +a los ||| to opt out ||| 0.0588235 0.00136947 0.000341647 1.73953e-09 2.718 ||| 0-0 1-2 ||| 17 2927 +a los ||| to ordinary ||| 0.5 0.0183048 0.000341647 0.000140192 2.718 ||| 0-0 1-1 ||| 2 2927 +a los ||| to other ||| 0.00558659 0.00929893 0.000341647 0.000384768 2.718 ||| 0-0 ||| 179 2927 +a los ||| to people ||| 0.0181818 0.00656351 0.000341647 0.000570295 2.718 ||| 0-0 1-1 ||| 55 2927 +a los ||| to point to and name the ||| 1 0.0394986 0.000341647 4.84224e-12 2.718 ||| 0-0 1-5 ||| 1 2927 +a los ||| to prepare the Western Balkans ||| 0.5 0.0394986 0.000341647 5.79194e-16 2.718 ||| 0-0 1-2 ||| 2 2927 +a los ||| to prepare the Western ||| 0.5 0.0394986 0.000341647 8.91067e-11 2.718 ||| 0-0 1-2 ||| 2 2927 +a los ||| to prepare the ||| 0.0714286 0.0394986 0.000341647 1.95839e-06 2.718 ||| 0-0 1-2 ||| 14 2927 +a los ||| to protect the ||| 0.0147059 0.0394986 0.000341647 2.61119e-06 2.718 ||| 0-0 1-2 ||| 68 2927 +a los ||| to protect ||| 0.00276243 0.000524864 0.000341647 3.17503e-06 2.718 ||| 0-0 1-1 ||| 362 2927 +a los ||| to reach age ||| 0.333333 0.00722627 0.000341647 6.73852e-08 2.718 ||| 0-0 0-1 1-2 ||| 3 2927 +a los ||| to reach out to the ||| 0.166667 0.0394986 0.000341647 6.68056e-09 2.718 ||| 0-3 1-4 ||| 6 2927 +a los ||| to require ||| 0.0322581 0.00929893 0.000341647 4.67745e-05 2.718 ||| 0-0 ||| 31 2927 +a los ||| to respond to ||| 0.0172414 0.00929893 0.000341647 1.22854e-06 2.718 ||| 0-0 ||| 58 2927 +a los ||| to respond ||| 0.0103093 0.00929893 0.000341647 1.48932e-05 2.718 ||| 0-0 ||| 97 2927 +a los ||| to second-line ||| 0.2 0.0902759 0.000341647 6.3828e-06 2.718 ||| 0-0 1-1 ||| 5 2927 +a los ||| to tax ||| 0.0263158 0.0136062 0.000341647 0.000200715 2.718 ||| 0-0 1-1 ||| 38 2927 +a los ||| to that ||| 0.00549451 0.000164392 0.000341647 9.24033e-05 2.718 ||| 0-0 1-1 ||| 182 2927 +a los ||| to the United ||| 1 0.0394986 0.000341647 3.71793e-05 2.718 ||| 0-0 1-1 ||| 1 2927 +a los ||| to the benefit ||| 0.1 0.0394986 0.000341647 9.78191e-06 2.718 ||| 0-0 1-1 ||| 10 2927 +a los ||| to the crisis ||| 0.0128205 0.0394986 0.000341647 1.8911e-05 2.718 ||| 0-0 1-1 ||| 78 2927 +a los ||| to the fore ||| 0.0322581 0.0394986 0.000341647 3.26398e-06 2.718 ||| 0-0 1-1 ||| 31 2927 +a los ||| to the hundreds ||| 0.2 0.0394986 0.000341647 5.22237e-06 2.718 ||| 0-0 1-1 ||| 5 2927 +a los ||| to the interests ||| 0.0588235 0.0203972 0.000341647 5.86513e-06 2.718 ||| 0-0 1-1 1-2 ||| 17 2927 +a los ||| to the two ||| 0.166667 0.0394986 0.000341647 3.13041e-05 2.718 ||| 0-0 1-1 ||| 6 2927 +a los ||| to the ||| 0.091264 0.0394986 0.255552 0.10043 2.718 ||| 0-0 1-1 ||| 8196 2927 +a los ||| to their ||| 0.00528169 0.00509294 0.00102494 0.000809241 2.718 ||| 0-0 1-1 ||| 568 2927 +a los ||| to them ||| 0.00775194 0.025689 0.000341647 0.00130942 2.718 ||| 0-0 1-1 ||| 129 2927 +a los ||| to these ||| 0.00714286 0.00221526 0.000341647 0.00014975 2.718 ||| 0-0 1-1 ||| 140 2927 +a los ||| to those ||| 0.193182 0.0567469 0.011616 0.00250733 2.718 ||| 0-0 1-1 ||| 176 2927 +a los ||| to work the ||| 0.333333 0.0394986 0.000341647 6.06599e-05 2.718 ||| 0-0 1-2 ||| 3 2927 +a los ||| to young ||| 0.333333 0.0308 0.000341647 0.000277177 2.718 ||| 0-0 1-1 ||| 3 2927 +a los ||| to your ||| 0.166667 0.011933 0.000683294 7.32876e-05 2.718 ||| 0-0 1-1 ||| 12 2927 +a los ||| to ||| 0.00413589 0.00929893 0.11821 0.327323 2.718 ||| 0-0 ||| 83658 2927 +a los ||| toward the ||| 0.0108696 0.0145359 0.000341647 0.000325846 2.718 ||| 0-0 1-1 ||| 92 2927 +a los ||| toward ||| 0.00247831 0.00342211 0.000683294 0.001062 2.718 ||| 0-0 ||| 807 2927 +a los ||| traits ||| 0.0204082 0.00381237 0.000341647 3.89e-05 2.718 ||| 1-0 ||| 49 2927 +a los ||| turn the ||| 0.0212766 0.00396593 0.000341647 0.000112236 2.718 ||| 0-0 1-1 ||| 47 2927 +a los ||| ultimately sit in judgment ||| 0.5 0.00150143 0.000341647 2.53054e-14 2.718 ||| 0-2 ||| 2 2927 +a los ||| ultimately sit in ||| 0.5 0.00150143 0.000341647 5.56162e-10 2.718 ||| 0-2 ||| 2 2927 +a los ||| undermined by the ||| 0.166667 0.00393262 0.000341647 4.03838e-08 2.718 ||| 0-1 1-2 ||| 6 2927 +a los ||| unlike ||| 0.00137174 0.0159413 0.000341647 0.0042952 2.718 ||| 0-0 ||| 729 2927 +a los ||| up the ||| 0.00793651 0.00392307 0.000341647 0.000391015 2.718 ||| 0-0 1-1 ||| 126 2927 +a los ||| up to the ||| 0.0206186 0.0394986 0.000683294 0.000313714 2.718 ||| 0-1 1-2 ||| 97 2927 +a los ||| up with the ||| 0.0588235 0.00482447 0.000341647 8.06369e-06 2.718 ||| 0-1 1-2 ||| 17 2927 +a los ||| up ||| 0.00103413 0.000923586 0.000341647 0.0012744 2.718 ||| 0-0 ||| 967 2927 +a los ||| upon the ||| 0.0967742 0.01633 0.00102494 0.00020999 2.718 ||| 0-0 1-1 ||| 31 2927 +a los ||| upon ||| 0.00490196 0.00384448 0.000341647 0.0006844 2.718 ||| 0-0 ||| 204 2927 +a los ||| vested ||| 0.0181818 0.00699682 0.000341647 0.0001265 2.718 ||| 1-0 ||| 55 2927 +a los ||| voters ||| 0.00173611 0.0176304 0.000341647 0.0030271 2.718 ||| 1-0 ||| 576 2927 +a los ||| way into the ||| 0.0714286 0.0257883 0.000341647 5.22153e-06 2.718 ||| 0-1 1-2 ||| 14 2927 +a los ||| we engage with the ||| 0.25 0.00482447 0.000341647 6.60755e-10 2.718 ||| 0-2 1-3 ||| 4 2927 +a los ||| welfare ||| 0.00185529 0.00103121 0.000341647 0.0001071 2.718 ||| 1-0 ||| 539 2927 +a los ||| what ||| 0.000181719 4.53367e-06 0.000341647 9.7e-06 2.718 ||| 1-0 ||| 5503 2927 +a los ||| whatsoever from the ||| 1 0.00596208 0.000341647 8.17793e-08 2.718 ||| 0-1 1-2 ||| 1 2927 +a los ||| when ||| 0.00015015 0.000145368 0.000341647 0.0003068 2.718 ||| 0-0 ||| 6660 2927 +a los ||| whereas the ||| 0.0135135 0.00667213 0.000341647 7.9774e-06 2.718 ||| 1-1 ||| 74 2927 +a los ||| whom ||| 0.00906344 0.0196812 0.00102494 0.00075335 2.718 ||| 0-0 1-0 ||| 331 2927 +a los ||| will ultimately sit in judgment ||| 0.5 0.00150143 0.000341647 1.74857e-16 2.718 ||| 0-3 ||| 2 2927 +a los ||| will ultimately sit in ||| 0.5 0.00150143 0.000341647 3.84302e-12 2.718 ||| 0-3 ||| 2 2927 +a los ||| with current ||| 0.2 8.71882e-05 0.000341647 4.09737e-07 2.718 ||| 0-0 1-1 ||| 5 2927 +a los ||| with the ||| 0.00500626 0.00482447 0.00683293 0.00258146 2.718 ||| 0-0 1-1 ||| 3995 2927 +a los ||| with those ||| 0.046875 0.00693124 0.00102494 6.44483e-05 2.718 ||| 0-0 1-1 ||| 64 2927 +a los ||| with ||| 0.000187143 0.0011358 0.00136659 0.0084135 2.718 ||| 0-0 ||| 21374 2927 +a los ||| within two ||| 0.0526316 6.53925e-06 0.000341647 5.26516e-09 2.718 ||| 0-0 1-1 ||| 19 2927 +a los ||| within ||| 0.00112045 0.000743958 0.000683294 0.0005428 2.718 ||| 0-0 ||| 1785 2927 +a los ||| workers ||| 0.00283286 0.000332605 0.00102494 0.0001534 2.718 ||| 0-0 ||| 1059 2927 +a los ||| would benefit the ||| 0.5 0.018812 0.000341647 1.5569e-06 2.718 ||| 0-1 1-2 ||| 2 2927 +a los ||| year to the ||| 0.25 0.0394986 0.000341647 4.7614e-05 2.718 ||| 0-1 1-2 ||| 4 2927 +a ||| # 45 ; even ||| 0.25 0.0206068 2.17609e-05 2.90854e-12 2.718 ||| 0-3 ||| 4 45954 +a ||| $ ||| 0.0147398 0.0233612 0.000696349 0.0007906 2.718 ||| 0-0 ||| 2171 45954 +a ||| % to ||| 0.0178571 0.270828 4.35218e-05 4.67745e-05 2.718 ||| 0-1 ||| 112 45954 +a ||| % ||| 0.000276167 0.0001086 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 3621 45954 +a ||| ] he ||| 0.25 0.0032086 2.17609e-05 5.79427e-08 2.718 ||| 0-1 ||| 4 45954 +a ||| & # 45 ; even ||| 0.25 0.0206068 2.17609e-05 4.09901e-15 2.718 ||| 0-4 ||| 4 45954 +a ||| ' money to ||| 1 0.270828 2.17609e-05 6.48753e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| 'a ||| 0.166667 0.0952381 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 6 45954 +a ||| 're telling you ||| 0.25 0.206349 2.17609e-05 3.24574e-11 2.718 ||| 0-1 ||| 4 45954 +a ||| 're telling ||| 0.25 0.206349 2.17609e-05 1.99113e-08 2.718 ||| 0-1 ||| 4 45954 +a ||| 's claim to the ||| 0.5 0.270828 2.17609e-05 7.73751e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| 's claim to ||| 0.333333 0.270828 2.17609e-05 1.45635e-06 2.718 ||| 0-2 ||| 3 45954 +a ||| 's engage ||| 1 0.0526316 2.17609e-05 2.57269e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| 's holding ||| 1 0.019544 2.17609e-05 1.10258e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| 's old embrace of ||| 1 0.0310671 2.17609e-05 9.96404e-12 2.718 ||| 0-2 0-3 ||| 1 45954 +a ||| 's put ||| 1 0.0564103 2.17609e-05 1.41498e-05 2.718 ||| 0-1 ||| 1 45954 +a ||| 's relationship with the Saudis usually determined ||| 1 0.0330797 2.17609e-05 1.28883e-23 2.718 ||| 0-2 ||| 1 45954 +a ||| 's relationship with the Saudis usually ||| 1 0.0330797 2.17609e-05 1.98587e-19 2.718 ||| 0-2 ||| 1 45954 +a ||| 's relationship with the Saudis ||| 1 0.0330797 2.17609e-05 2.35292e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| 's relationship with the ||| 0.5 0.0330797 2.17609e-05 1.80994e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| 's relationship with ||| 0.5 0.0330797 2.17609e-05 3.40665e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| 's running mate hit ||| 0.25 0.134615 2.17609e-05 1.7378e-14 2.718 ||| 0-3 ||| 4 45954 +a ||| 's social security system in 19 ||| 1 0.0437285 2.17609e-05 6.70355e-21 2.718 ||| 0-4 ||| 1 45954 +a ||| 's social security system in ||| 1 0.0437285 2.17609e-05 1.03132e-15 2.718 ||| 0-4 ||| 1 45954 +a ||| 's to ||| 0.2 0.270828 4.35218e-05 0.00509747 2.718 ||| 0-1 ||| 10 45954 +a ||| 's victory in ||| 0.5 0.0437285 2.17609e-05 1.19257e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| 's willingness to ||| 0.142857 0.270828 2.17609e-05 1.98801e-07 2.718 ||| 0-2 ||| 7 45954 +a ||| 't walk away ||| 1 0.0508475 2.17609e-05 1.27812e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| " charged ||| 0.5 0.0930233 2.17609e-05 7.07165e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| " from ||| 0.0277778 0.0408799 2.17609e-05 4.09571e-05 2.718 ||| 0-1 ||| 36 45954 +a ||| " in ||| 0.00248139 0.0437285 2.17609e-05 0.000196122 2.718 ||| 0-1 ||| 403 45954 +a ||| " me " in ||| 1 0.0437285 2.17609e-05 1.33598e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| " near abroad " ||| 0.5 0.0537084 2.17609e-05 3.60935e-13 2.718 ||| 0-1 ||| 2 45954 +a ||| " near abroad ||| 0.125 0.0537084 2.17609e-05 7.22722e-11 2.718 ||| 0-1 ||| 8 45954 +a ||| " near ||| 0.25 0.0537084 2.17609e-05 1.23754e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| " passed " to ||| 1 0.270828 2.17609e-05 1.11354e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| " standing " to ||| 0.333333 0.270828 2.17609e-05 1.11354e-09 2.718 ||| 0-3 ||| 3 45954 +a ||| " to ||| 0.0120846 0.270828 8.70436e-05 0.00163468 2.718 ||| 0-1 ||| 331 45954 +a ||| " too big to ||| 0.0416667 0.270828 2.17609e-05 3.60974e-10 2.718 ||| 0-3 ||| 24 45954 +a ||| " will affect the US " far ||| 1 0.25256 2.17609e-05 6.81027e-18 2.718 ||| 0-2 ||| 1 45954 +a ||| " will affect the US " ||| 1 0.25256 2.17609e-05 1.02812e-14 2.718 ||| 0-2 ||| 1 45954 +a ||| " will affect the US ||| 1 0.25256 2.17609e-05 2.05867e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| " will affect the ||| 1 0.25256 2.17609e-05 1.60096e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| " will affect ||| 1 0.25256 2.17609e-05 3.0133e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| " with ||| 0.0107527 0.0330797 2.17609e-05 4.20179e-05 2.718 ||| 0-1 ||| 93 45954 +a ||| ( like Saddam ) to ||| 1 0.270828 2.17609e-05 2.13136e-15 2.718 ||| 0-4 ||| 1 45954 +a ||| ) more highly take ||| 1 0.018009 2.17609e-05 1.33994e-13 2.718 ||| 0-3 ||| 1 45954 +a ||| ) to ||| 0.0120482 0.270828 4.35218e-05 0.000372003 2.718 ||| 0-1 ||| 166 45954 +a ||| , " charged ||| 0.5 0.0930233 2.17609e-05 1.44453e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| , Mubarak 's relationship with the Saudis ||| 1 0.0330797 2.17609e-05 1.24965e-20 2.718 ||| 0-4 ||| 1 45954 +a ||| , Mubarak 's relationship with the ||| 1 0.0330797 2.17609e-05 9.61266e-16 2.718 ||| 0-4 ||| 1 45954 +a ||| , Mubarak 's relationship with ||| 1 0.0330797 2.17609e-05 1.80929e-14 2.718 ||| 0-4 ||| 1 45954 +a ||| , against ||| 0.0172414 0.0413907 2.17609e-05 0.000361559 2.718 ||| 0-1 ||| 58 45954 +a ||| , aimed at ||| 0.037037 0.185652 2.17609e-05 6.10329e-07 2.718 ||| 0-2 ||| 27 45954 +a ||| , all of ||| 0.0169492 0.0164489 2.17609e-05 1.14174e-05 2.718 ||| 0-2 ||| 59 45954 +a ||| , and incorporating them into ||| 0.5 0.176821 2.17609e-05 2.44064e-13 2.718 ||| 0-4 ||| 2 45954 +a ||| , and often banal , ||| 1 0.18338 2.17609e-05 1.40555e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| , and often banal ||| 1 0.18338 2.17609e-05 6.88081e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| , and often ||| 0.025 0.18338 2.17609e-05 1.05859e-05 2.718 ||| 0-2 ||| 40 45954 +a ||| , animate her ||| 0.5 0.5 2.17609e-05 1.42454e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| , animate ||| 0.5 0.5 2.17609e-05 2.41039e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| , are allowed a seat at ||| 0.333333 0.185652 2.17609e-05 1.63904e-14 2.718 ||| 0-5 ||| 3 45954 +a ||| , as before , ||| 0.25 0.0289876 2.17609e-05 8.3147e-08 2.718 ||| 0-1 ||| 4 45954 +a ||| , as before ||| 0.333333 0.0289876 2.17609e-05 4.07044e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| , as it were , ||| 0.333333 0.0289876 2.17609e-05 2.28778e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| , as it were ||| 0.25 0.0289876 2.17609e-05 1.11998e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| , as it ||| 0.00787402 0.0289876 2.17609e-05 5.05746e-05 2.718 ||| 0-1 ||| 127 45954 +a ||| , as ||| 0.000865801 0.0289876 6.52827e-05 0.00189941 2.718 ||| 0-1 ||| 3465 45954 +a ||| , at each ||| 0.333333 0.185652 2.17609e-05 2.71228e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| , at the ||| 0.0124224 0.185652 4.35218e-05 0.000277387 2.718 ||| 0-1 ||| 161 45954 +a ||| , at ||| 0.0206452 0.185652 0.000348174 0.00522095 2.718 ||| 0-1 ||| 775 45954 +a ||| , bad publicity surrounding the ||| 0.5 0.15625 2.17609e-05 1.17557e-14 2.718 ||| 0-3 ||| 2 45954 +a ||| , bad publicity surrounding ||| 0.5 0.15625 2.17609e-05 2.21265e-13 2.718 ||| 0-3 ||| 2 45954 +a ||| , befitting ||| 0.25 0.333333 2.17609e-05 4.82079e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| , begin to glimpse the ||| 1 0.270828 2.17609e-05 4.7982e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| , begin to glimpse ||| 1 0.270828 2.17609e-05 9.03112e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| , begin to ||| 0.2 0.270828 2.17609e-05 6.94701e-06 2.718 ||| 0-2 ||| 5 45954 +a ||| , bring ||| 0.333333 0.0345711 2.17609e-05 6.50806e-05 2.718 ||| 0-1 ||| 3 45954 +a ||| , but to ||| 0.0181818 0.270828 4.35218e-05 7.81622e-05 2.718 ||| 0-2 ||| 110 45954 +a ||| , buying ||| 0.1 0.0055249 2.17609e-05 2.41039e-06 2.718 ||| 0-1 ||| 10 45954 +a ||| , calls ||| 0.0714286 0.0266075 2.17609e-05 2.89247e-05 2.718 ||| 0-1 ||| 14 45954 +a ||| , can place his trust in the ||| 1 0.0437285 2.17609e-05 5.55608e-17 2.718 ||| 0-5 ||| 1 45954 +a ||| , can place his trust in ||| 1 0.0437285 2.17609e-05 1.04576e-15 2.718 ||| 0-5 ||| 1 45954 +a ||| , covering ||| 0.1 0.0779221 2.17609e-05 1.44624e-05 2.718 ||| 0-1 ||| 10 45954 +a ||| , financial markets are prone to produce ||| 1 0.270828 2.17609e-05 1.15903e-20 2.718 ||| 0-5 ||| 1 45954 +a ||| , financial markets are prone to ||| 1 0.270828 2.17609e-05 6.86225e-17 2.718 ||| 0-5 ||| 1 45954 +a ||| , for example , ||| 0.00283688 0.0587253 4.35218e-05 8.97379e-08 2.718 ||| 0-1 ||| 705 45954 +a ||| , for example ||| 0.00273598 0.0587253 4.35218e-05 4.39309e-07 2.718 ||| 0-1 ||| 731 45954 +a ||| , for ||| 0.00201005 0.0587253 8.70436e-05 0.00483288 2.718 ||| 0-1 ||| 1990 45954 +a ||| , from ||| 0.00408163 0.0408799 4.35218e-05 0.00167524 2.718 ||| 0-1 ||| 490 45954 +a ||| , given ||| 0.00193798 0.0360743 2.17609e-05 0.000163907 2.718 ||| 0-1 ||| 516 45954 +a ||| , has asked ||| 1 0.13059 2.17609e-05 5.83937e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| , help speed the demise of ||| 0.5 0.350156 2.17609e-05 2.35491e-15 2.718 ||| 0-1 ||| 2 45954 +a ||| , help speed the demise ||| 0.5 0.350156 2.17609e-05 8.71667e-14 2.718 ||| 0-1 ||| 2 45954 +a ||| , help speed the ||| 0.5 0.350156 2.17609e-05 4.47009e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| , help speed ||| 0.5 0.350156 2.17609e-05 8.41356e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| , help ||| 0.0909091 0.350156 2.17609e-05 0.00215732 2.718 ||| 0-1 ||| 11 45954 +a ||| , helped ||| 0.025 0.360536 2.17609e-05 0.000713476 2.718 ||| 0-1 ||| 40 45954 +a ||| , if we divided up equally what ||| 0.5 0.0551471 2.17609e-05 1.2814e-20 2.718 ||| 0-3 ||| 2 45954 +a ||| , if we divided up equally ||| 0.5 0.0551471 2.17609e-05 1.29814e-17 2.718 ||| 0-3 ||| 2 45954 +a ||| , if we divided up ||| 0.5 0.0551471 2.17609e-05 1.66642e-13 2.718 ||| 0-3 ||| 2 45954 +a ||| , if we divided ||| 0.5 0.0551471 2.17609e-05 5.33478e-11 2.718 ||| 0-3 ||| 2 45954 +a ||| , ignored ||| 0.0625 0.0318725 2.17609e-05 1.92831e-05 2.718 ||| 0-1 ||| 16 45954 +a ||| , implementing real administrative ||| 1 0.0079365 2.17609e-05 4.78174e-15 2.718 ||| 0-3 ||| 1 45954 +a ||| , in a joint press conference with ||| 1 0.0437285 2.17609e-05 2.41719e-20 2.718 ||| 0-1 ||| 1 45954 +a ||| , in a joint press conference ||| 1 0.0437285 2.17609e-05 6.37327e-18 2.718 ||| 0-1 ||| 1 45954 +a ||| , in a joint press ||| 1 0.0437285 2.17609e-05 9.80504e-13 2.718 ||| 0-1 ||| 1 45954 +a ||| , in a joint ||| 1 0.0437285 2.17609e-05 1.25867e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| , in a ||| 0.00571429 0.0437285 2.17609e-05 0.000322736 2.718 ||| 0-1 ||| 175 45954 +a ||| , in the ||| 0.00413223 0.0437285 4.35218e-05 0.000426199 2.718 ||| 0-1 ||| 484 45954 +a ||| , in violation ||| 0.1 0.0437285 2.17609e-05 1.04284e-07 2.718 ||| 0-1 ||| 10 45954 +a ||| , in ||| 0.0160445 0.0437285 0.00106628 0.00802187 2.718 ||| 0-1 ||| 3054 45954 +a ||| , instead , to ||| 0.25 0.270828 2.17609e-05 4.34599e-06 2.718 ||| 0-3 ||| 4 45954 +a ||| , into ||| 0.0645161 0.176821 4.35218e-05 0.00228748 2.718 ||| 0-1 ||| 31 45954 +a ||| , is my plan to drop ||| 0.5 0.270828 2.17609e-05 1.19615e-15 2.718 ||| 0-4 ||| 2 45954 +a ||| , is my plan to ||| 0.5 0.270828 2.17609e-05 2.3003e-11 2.718 ||| 0-4 ||| 2 45954 +a ||| , it released ||| 0.25 0.109453 2.17609e-05 1.41197e-06 2.718 ||| 0-2 ||| 4 45954 +a ||| , it was ||| 0.0047619 0.0014741 2.17609e-05 3.46201e-07 2.718 ||| 0-1 ||| 210 45954 +a ||| , it ||| 0.000740192 0.0014741 2.17609e-05 9.15949e-05 2.718 ||| 0-1 ||| 1351 45954 +a ||| , like ||| 0.00139665 0.0278224 2.17609e-05 0.000250681 2.718 ||| 0-1 ||| 716 45954 +a ||| , likely to ||| 0.25 0.270828 2.17609e-05 3.21341e-05 2.718 ||| 0-2 ||| 4 45954 +a ||| , might become ||| 0.5 0.0754467 2.17609e-05 4.87193e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| , of ||| 0.00357782 0.0164489 4.35218e-05 0.00440624 2.718 ||| 0-1 ||| 559 45954 +a ||| , off guard ||| 1 0.0698758 2.17609e-05 1.12806e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| , off ||| 1 0.0698758 2.17609e-05 0.000216935 2.718 ||| 0-1 ||| 1 45954 +a ||| , often along ||| 0.25 0.15015 2.17609e-05 6.73223e-08 2.718 ||| 0-2 ||| 4 45954 +a ||| , on a moment 's notice , ||| 0.5 0.0963759 2.17609e-05 3.73715e-15 2.718 ||| 0-1 ||| 2 45954 +a ||| , on a moment 's notice ||| 0.5 0.0963759 2.17609e-05 1.82951e-14 2.718 ||| 0-1 ||| 2 45954 +a ||| , on a moment 's ||| 0.5 0.0963759 2.17609e-05 2.56234e-10 2.718 ||| 0-1 ||| 2 45954 +a ||| , on a moment ||| 0.5 0.0963759 2.17609e-05 1.64535e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| , on a regular basis , brought ||| 1 0.0963759 2.17609e-05 2.09384e-16 2.718 ||| 0-1 ||| 1 45954 +a ||| , on a regular basis , ||| 1 0.0963759 2.17609e-05 4.29858e-13 2.718 ||| 0-1 ||| 1 45954 +a ||| , on a regular basis ||| 1 0.0963759 2.17609e-05 2.10436e-12 2.718 ||| 0-1 ||| 1 45954 +a ||| , on a regular ||| 1 0.0963759 2.17609e-05 5.49154e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| , on a ||| 0.111111 0.0963759 6.52827e-05 0.000211213 2.718 ||| 0-1 ||| 27 45954 +a ||| , on ||| 0.013308 0.0963759 0.000152326 0.00524988 2.718 ||| 0-1 ||| 526 45954 +a ||| , once again , in ||| 1 0.0437285 2.17609e-05 3.30288e-10 2.718 ||| 0-4 ||| 1 45954 +a ||| , once again , ||| 0.0357143 0.0930362 2.17609e-05 4.3251e-08 2.718 ||| 0-2 ||| 28 45954 +a ||| , once again ||| 0.030303 0.0930362 2.17609e-05 2.11734e-07 2.718 ||| 0-2 ||| 33 45954 +a ||| , only ||| 0.00290698 0.0020258 2.17609e-05 3.37455e-05 2.718 ||| 0-1 ||| 344 45954 +a ||| , over ||| 0.0166667 0.07993 4.35218e-05 0.000990672 2.718 ||| 0-1 ||| 120 45954 +a ||| , perhaps , begin to glimpse the ||| 1 0.270828 2.17609e-05 1.01836e-16 2.718 ||| 0-4 ||| 1 45954 +a ||| , perhaps , begin to glimpse ||| 1 0.270828 2.17609e-05 1.91674e-15 2.718 ||| 0-4 ||| 1 45954 +a ||| , perhaps , begin to ||| 1 0.270828 2.17609e-05 1.47441e-10 2.718 ||| 0-4 ||| 1 45954 +a ||| , plotting to ||| 1 0.270828 2.17609e-05 4.34606e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| , pursuing ||| 0.333333 0.05 2.17609e-05 1.92831e-05 2.718 ||| 0-1 ||| 3 45954 +a ||| , rapid increase in ||| 0.333333 0.0437285 2.17609e-05 7.5846e-11 2.718 ||| 0-3 ||| 3 45954 +a ||| , resist ||| 0.25 0.25 2.17609e-05 0.000147034 2.718 ||| 0-1 ||| 4 45954 +a ||| , ruined ||| 0.2 0.148148 2.17609e-05 9.64157e-06 2.718 ||| 0-1 ||| 5 45954 +a ||| , starting ||| 0.0322581 0.0877863 2.17609e-05 5.5439e-05 2.718 ||| 0-1 ||| 31 45954 +a ||| , then , is my plan to ||| 0.5 0.270828 2.17609e-05 4.08892e-15 2.718 ||| 0-6 ||| 2 45954 +a ||| , there is the way in ||| 1 0.0437285 2.17609e-05 2.28094e-11 2.718 ||| 0-5 ||| 1 45954 +a ||| , through ||| 0.00490196 0.257419 2.17609e-05 0.00186084 2.718 ||| 0-1 ||| 204 45954 +a ||| , to jump on the ||| 1 0.0963759 2.17609e-05 1.04689e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| , to jump on ||| 1 0.0963759 2.17609e-05 1.97044e-08 2.718 ||| 0-3 ||| 1 45954 +a ||| , to paraphrase ||| 0.1 0.387097 2.17609e-05 2.38601e-06 2.718 ||| 0-2 ||| 10 45954 +a ||| , to ||| 0.0302822 0.270828 0.000957479 0.0668625 2.718 ||| 0-1 ||| 1453 45954 +a ||| , towards ||| 0.1 0.102013 2.17609e-05 0.00018319 2.718 ||| 0-1 ||| 10 45954 +a ||| , urge the president to go ||| 1 0.270828 2.17609e-05 8.67257e-15 2.718 ||| 0-4 ||| 1 45954 +a ||| , urge the president to ||| 1 0.270828 2.17609e-05 1.25982e-11 2.718 ||| 0-4 ||| 1 45954 +a ||| , we joined ||| 1 0.242894 2.17609e-05 5.25319e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| , what gives that achievement its meaning ||| 1 0.188272 2.17609e-05 1.99108e-21 2.718 ||| 0-2 ||| 1 45954 +a ||| , what gives that achievement its ||| 1 0.188272 2.17609e-05 6.1264e-17 2.718 ||| 0-2 ||| 1 45954 +a ||| , what gives that achievement ||| 1 0.188272 2.17609e-05 3.08293e-14 2.718 ||| 0-2 ||| 1 45954 +a ||| , what gives that ||| 1 0.188272 2.17609e-05 1.18574e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| , what gives ||| 0.5 0.188272 2.17609e-05 1.45137e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| , who gave ||| 0.25 0.161731 2.17609e-05 1.74492e-07 2.718 ||| 0-2 ||| 4 45954 +a ||| , will ||| 0.00480769 0.0208333 2.17609e-05 0.000812302 2.718 ||| 0-1 ||| 208 45954 +a ||| , with ||| 0.000928505 0.0330797 6.52827e-05 0.00171863 2.718 ||| 0-1 ||| 3231 45954 +a ||| , within a wide range , ||| 0.333333 0.0216675 2.17609e-05 1.24897e-14 2.718 ||| 0-1 ||| 3 45954 +a ||| , within a wide range ||| 0.333333 0.0216675 2.17609e-05 6.11429e-14 2.718 ||| 0-1 ||| 3 45954 +a ||| , within a wide ||| 0.333333 0.0216675 2.17609e-05 3.76495e-10 2.718 ||| 0-1 ||| 3 45954 +a ||| , within a ||| 0.0555556 0.0216675 2.17609e-05 4.46085e-06 2.718 ||| 0-1 ||| 18 45954 +a ||| , within ||| 0.0126582 0.0216675 2.17609e-05 0.000110878 2.718 ||| 0-1 ||| 79 45954 +a ||| , written on ||| 1 0.0963759 2.17609e-05 5.79586e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| - are concerned ||| 1 0.0769231 2.17609e-05 2.41453e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| - just in ||| 1 0.0437285 2.17609e-05 3.74457e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| -- and embolden ||| 0.5 0.538462 2.17609e-05 3.48645e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| -- in fact ||| 0.0714286 0.0437285 2.17609e-05 1.29474e-07 2.718 ||| 0-1 ||| 14 45954 +a ||| -- in ||| 0.003125 0.0437285 2.17609e-05 0.000197399 2.718 ||| 0-1 ||| 320 45954 +a ||| -- on ||| 0.0212766 0.0963759 2.17609e-05 0.000129187 2.718 ||| 0-1 ||| 47 45954 +a ||| -- to dismiss ||| 0.25 0.270828 2.17609e-05 3.20838e-08 2.718 ||| 0-1 ||| 4 45954 +a ||| -- to ||| 0.0163265 0.270828 8.70436e-05 0.00164532 2.718 ||| 0-1 ||| 245 45954 +a ||| -- with it ||| 1 0.0330797 2.17609e-05 1.12607e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| -- with ||| 0.00531915 0.0330797 2.17609e-05 4.22913e-05 2.718 ||| 0-1 ||| 188 45954 +a ||| . depositors ||| 0.5 0.04 2.17609e-05 2.71276e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| 10 to 15 % ||| 1 0.270828 2.17609e-05 8.30013e-14 2.718 ||| 0-1 ||| 1 45954 +a ||| 10 to 15 ||| 1 0.270828 2.17609e-05 5.80835e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| 10 to ||| 0.142857 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-1 ||| 7 45954 +a ||| 100 years in the past ||| 1 0.0437285 2.17609e-05 3.03194e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| 100 years in the ||| 1 0.0437285 2.17609e-05 1.50618e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| 100 years in ||| 1 0.0437285 2.17609e-05 2.83492e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| 1917 to ||| 0.2 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 5 45954 +a ||| 2007 to ||| 0.0526316 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 19 45954 +a ||| 28-year-old ||| 0.25 0.25 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 4 45954 +a ||| 45 ; & # 45 ; even ||| 0.25 0.0206068 2.17609e-05 8.44804e-21 2.718 ||| 0-6 ||| 4 45954 +a ||| 45 ; even ||| 0.25 0.0206068 2.17609e-05 3.08861e-09 2.718 ||| 0-2 ||| 4 45954 +a ||| ; & # 45 ; even ||| 0.25 0.0206068 2.17609e-05 7.26713e-18 2.718 ||| 0-5 ||| 4 45954 +a ||| ; even ||| 0.1 0.0206068 2.17609e-05 2.65687e-06 2.718 ||| 0-1 ||| 10 45954 +a ||| ; into ||| 1 0.176821 2.17609e-05 1.98535e-05 2.718 ||| 0-1 ||| 1 45954 +a ||| AIDS in some parts of Africa have ||| 1 0.0437285 2.17609e-05 1.39627e-21 2.718 ||| 0-1 ||| 1 45954 +a ||| AIDS in some parts of Africa ||| 1 0.0437285 2.17609e-05 2.70443e-19 2.718 ||| 0-1 ||| 1 45954 +a ||| AIDS in some parts of ||| 1 0.0437285 2.17609e-05 1.34348e-15 2.718 ||| 0-1 ||| 1 45954 +a ||| AIDS in some parts ||| 1 0.0437285 2.17609e-05 4.9729e-14 2.718 ||| 0-1 ||| 1 45954 +a ||| AIDS in some ||| 1 0.0437285 2.17609e-05 5.47074e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| AIDS in ||| 0.111111 0.0437285 2.17609e-05 7.65781e-07 2.718 ||| 0-1 ||| 9 45954 +a ||| Again ||| 0.153846 0.135135 4.35218e-05 5.9e-05 2.718 ||| 0-0 ||| 13 45954 +a ||| America turned to ||| 1 0.270828 2.17609e-05 9.6011e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| America went to ||| 0.166667 0.270828 2.17609e-05 9.6011e-08 2.718 ||| 0-2 ||| 6 45954 +a ||| American ||| 0.000378931 0.0003291 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 2639 45954 +a ||| Arabia to survive ||| 0.5 0.270828 2.17609e-05 2.07441e-10 2.718 ||| 0-1 ||| 2 45954 +a ||| Arabia to ||| 0.333333 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| As I attended ||| 1 0.296296 2.17609e-05 6.08888e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| Back from ||| 1 0.0408799 4.35218e-05 1.59921e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| Bashir to ||| 0.333333 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| Beginning to ||| 1 0.270828 4.35218e-05 4.2552e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| Bismarck 's social security system in 19 ||| 1 0.0437285 2.17609e-05 4.35731e-26 2.718 ||| 0-5 ||| 1 45954 +a ||| Bismarck 's social security system in ||| 1 0.0437285 2.17609e-05 6.70355e-21 2.718 ||| 0-5 ||| 1 45954 +a ||| Britain slips back into ||| 0.333333 0.176821 2.17609e-05 2.03639e-14 2.718 ||| 0-3 ||| 3 45954 +a ||| China could stand up ||| 1 0.0268991 2.17609e-05 2.88576e-13 2.718 ||| 0-3 ||| 1 45954 +a ||| China ||| 0.000127812 0.0002907 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 7824 45954 +a ||| Civic ||| 0.166667 0.125 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 6 45954 +a ||| Cocteau declared that Genet was a literary ||| 1 0.0416667 2.17609e-05 1.20777e-26 2.718 ||| 0-6 ||| 1 45954 +a ||| Conference of ||| 0.166667 0.0164489 2.17609e-05 1.40209e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| Court must uphold the ruling , but ||| 1 0.0011566 2.17609e-05 6.32713e-23 2.718 ||| 0-3 ||| 1 45954 +a ||| Court must uphold the ruling , ||| 1 0.0011566 2.17609e-05 5.41243e-20 2.718 ||| 0-3 ||| 1 45954 +a ||| Court must uphold the ruling ||| 1 0.0011566 2.17609e-05 2.64964e-19 2.718 ||| 0-3 ||| 1 45954 +a ||| Court must uphold the ||| 1 0.0011566 2.17609e-05 1.94255e-15 2.718 ||| 0-3 ||| 1 45954 +a ||| Dixon has a ||| 1 0.125 2.17609e-05 1.57546e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| Dixon has ||| 1 0.125 2.17609e-05 3.91595e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| Dixon ||| 0.166667 0.125 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 6 45954 +a ||| Dutch-speaking ||| 1 1 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| Europe-wide political ||| 0.25 0.102041 2.17609e-05 2.14583e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| Europe-wide ||| 0.0285714 0.102041 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 35 45954 +a ||| European ||| 0.000194666 0.0002151 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 5137 45954 +a ||| F aced ||| 1 1 2.17609e-05 7.67e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| F. Kennedy shortly after he assumed office ||| 1 0.0588235 2.17609e-05 5.22238e-29 2.718 ||| 0-1 ||| 1 45954 +a ||| F. Kennedy shortly after he assumed ||| 1 0.0588235 2.17609e-05 2.51318e-25 2.718 ||| 0-1 ||| 1 45954 +a ||| F. Kennedy shortly after he ||| 1 0.0588235 2.17609e-05 3.51986e-21 2.718 ||| 0-1 ||| 1 45954 +a ||| F. Kennedy shortly after ||| 1 0.0588235 2.17609e-05 1.12682e-18 2.718 ||| 0-1 ||| 1 45954 +a ||| F. Kennedy shortly ||| 1 0.0588235 2.17609e-05 2.9913e-15 2.718 ||| 0-1 ||| 1 45954 +a ||| F. Kennedy ||| 0.0555556 0.0588235 2.17609e-05 2.301e-10 2.718 ||| 0-1 ||| 18 45954 +a ||| Free to ||| 0.111111 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-1 ||| 9 45954 +a ||| Fulani ||| 1 1 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| Genet was a literary genius ||| 1 0.0416667 2.17609e-05 7.5812e-20 2.718 ||| 0-3 ||| 1 45954 +a ||| Genet was a literary ||| 1 0.0416667 2.17609e-05 1.16634e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| German soldiers to ||| 1 0.270828 2.17609e-05 3.31906e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| Germany ||| 0.000968992 0.0010887 4.35218e-05 2.36e-05 2.718 ||| 0-0 ||| 2064 45954 +a ||| Gorbachev , ||| 0.0666667 0.0340909 2.17609e-05 7.23118e-06 2.718 ||| 0-0 ||| 15 45954 +a ||| Gorbachev ||| 0.0113636 0.0340909 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 88 45954 +a ||| Grand ||| 0.0625 0.0555556 4.35218e-05 2.36e-05 2.718 ||| 0-0 ||| 32 45954 +a ||| HIV or AIDS in some parts of ||| 1 0.0437285 2.17609e-05 3.67505e-23 2.718 ||| 0-3 ||| 1 45954 +a ||| HIV or AIDS in some parts ||| 1 0.0437285 2.17609e-05 1.36032e-21 2.718 ||| 0-3 ||| 1 45954 +a ||| HIV or AIDS in some ||| 1 0.0437285 2.17609e-05 1.4965e-17 2.718 ||| 0-3 ||| 1 45954 +a ||| HIV or AIDS in ||| 1 0.0437285 2.17609e-05 2.09476e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| Help ||| 1 0.375 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| Home-Grown ||| 1 1 4.35218e-05 2.36e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| I attended ||| 0.25 0.296296 2.17609e-05 2.34188e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| I conducted ||| 0.125 0.195833 2.17609e-05 6.87926e-07 2.718 ||| 0-1 ||| 8 45954 +a ||| I told him ||| 0.166667 0.150327 2.17609e-05 7.01803e-10 2.718 ||| 0-1 ||| 6 45954 +a ||| I told ||| 0.0909091 0.150327 2.17609e-05 1.00993e-06 2.718 ||| 0-1 ||| 11 45954 +a ||| I ||| 0.00129786 0.0034667 4.35218e-05 0.0001534 2.718 ||| 0-0 ||| 1541 45954 +a ||| Internet ||| 0.0026738 0.0223214 2.17609e-05 0.000118 2.718 ||| 0-0 ||| 374 45954 +a ||| Iran " will affect the US " ||| 1 0.25256 2.17609e-05 8.67733e-19 2.718 ||| 0-3 ||| 1 45954 +a ||| Iran " will affect the US ||| 1 0.25256 2.17609e-05 1.73752e-16 2.718 ||| 0-3 ||| 1 45954 +a ||| Iran " will affect the ||| 1 0.25256 2.17609e-05 1.35121e-13 2.718 ||| 0-3 ||| 1 45954 +a ||| Iran " will affect ||| 1 0.25256 2.17609e-05 2.54323e-12 2.718 ||| 0-3 ||| 1 45954 +a ||| Iran ||| 0.000989609 0.0028916 4.35218e-05 7.08e-05 2.718 ||| 0-0 ||| 2021 45954 +a ||| Ireland ||| 0.0027248 0.0029155 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 367 45954 +a ||| Israel ||| 0.000450653 0.0005068 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 2219 45954 +a ||| Israelis ||| 0.00289017 0.0204545 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 346 45954 +a ||| Japan to help ||| 1 0.270828 2.17609e-05 3.0873e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| Japan to ||| 0.0294118 0.270828 2.17609e-05 9.14213e-05 2.718 ||| 0-1 ||| 34 45954 +a ||| Kennedy shortly after he assumed office ||| 1 0.0588235 2.17609e-05 8.03443e-24 2.718 ||| 0-0 ||| 1 45954 +a ||| Kennedy shortly after he assumed ||| 1 0.0588235 2.17609e-05 3.86643e-20 2.718 ||| 0-0 ||| 1 45954 +a ||| Kennedy shortly after he ||| 1 0.0588235 2.17609e-05 5.41516e-16 2.718 ||| 0-0 ||| 1 45954 +a ||| Kennedy shortly after ||| 1 0.0588235 2.17609e-05 1.73357e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| Kennedy shortly ||| 1 0.0588235 2.17609e-05 4.602e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| Kennedy ||| 0.0212766 0.0588235 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 47 45954 +a ||| Khamenei 's ||| 0.125 0.0092593 2.17609e-05 1.83764e-07 2.718 ||| 0-0 ||| 8 45954 +a ||| Khamenei ||| 0.00892857 0.0092593 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 112 45954 +a ||| Kim Jong-il ||| 0.0151515 0.0043103 2.17609e-05 1.534e-10 2.718 ||| 0-0 ||| 66 45954 +a ||| Kim ||| 0.00364964 0.0043103 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 274 45954 +a ||| Long ||| 0.037037 0.0185185 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 27 45954 +a ||| Mexico ||| 0.0029985 0.0031546 4.35218e-05 2.36e-05 2.718 ||| 0-0 ||| 667 45954 +a ||| Mubarak 's relationship with the Saudis usually ||| 1 0.0330797 2.17609e-05 5.16326e-24 2.718 ||| 0-3 ||| 1 45954 +a ||| Mubarak 's relationship with the Saudis ||| 1 0.0330797 2.17609e-05 6.1176e-20 2.718 ||| 0-3 ||| 1 45954 +a ||| Mubarak 's relationship with the ||| 1 0.0330797 2.17609e-05 4.70585e-15 2.718 ||| 0-3 ||| 1 45954 +a ||| Mubarak 's relationship with ||| 1 0.0330797 2.17609e-05 8.8573e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| NLA ||| 0.5 0.5 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| Peru , with ||| 1 0.0097087 2.17609e-05 9.1419e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| Peru , ||| 0.025641 0.0097087 2.17609e-05 2.41039e-06 2.718 ||| 0-0 ||| 39 45954 +a ||| Peru ||| 0.0116279 0.0097087 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 86 45954 +a ||| Royal ||| 0.00990099 0.0103093 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 101 45954 +a ||| Russia ||| 0.000245098 0.0005496 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 4080 45954 +a ||| Saddam ) to ||| 1 0.270828 2.17609e-05 2.41802e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| Saudi Arabia to survive ||| 0.5 0.270828 2.17609e-05 6.74183e-15 2.718 ||| 0-2 ||| 2 45954 +a ||| Saudi Arabia to ||| 0.333333 0.270828 2.17609e-05 2.07441e-10 2.718 ||| 0-2 ||| 3 45954 +a ||| Saudi ruling ||| 1 0.0064795 2.17609e-05 4.82856e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| Saudi ||| 0.00421053 0.0064795 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 475 45954 +a ||| States in ||| 0.2 0.0437285 2.17609e-05 1.12197e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| States to ||| 0.25 0.270828 2.17609e-05 9.35162e-05 2.718 ||| 0-1 ||| 4 45954 +a ||| Strong ||| 0.142857 0.0909091 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 7 45954 +a ||| Supreme Court must uphold the ruling , ||| 1 0.0011566 2.17609e-05 7.03616e-25 2.718 ||| 0-4 ||| 1 45954 +a ||| Supreme Court must uphold the ruling ||| 1 0.0011566 2.17609e-05 3.44453e-24 2.718 ||| 0-4 ||| 1 45954 +a ||| Supreme Court must uphold the ||| 1 0.0011566 2.17609e-05 2.52532e-20 2.718 ||| 0-4 ||| 1 45954 +a ||| Taliban to give up ||| 0.5 0.270828 2.17609e-05 1.25177e-11 2.718 ||| 0-1 ||| 2 45954 +a ||| Taliban to give ||| 0.5 0.270828 2.17609e-05 4.00733e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| Taliban to ||| 0.166667 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-1 ||| 6 45954 +a ||| Thaksin ||| 0.00869565 0.0194175 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 115 45954 +a ||| United States in ||| 0.0434783 0.0437285 2.17609e-05 4.15352e-09 2.718 ||| 0-2 ||| 23 45954 +a ||| United States to ||| 0.0454545 0.270828 2.17609e-05 3.46197e-08 2.718 ||| 0-2 ||| 22 45954 +a ||| Viktor ||| 0.0169492 0.0338983 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 59 45954 +a ||| Yugoslavia to ||| 1 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| a " ||| 0.00111483 0.0009647 2.17609e-05 3.83047e-06 2.718 ||| 0-0 ||| 897 45954 +a ||| a case of cutting off one 's ||| 1 0.0164489 2.17609e-05 1.69252e-18 2.718 ||| 0-2 ||| 1 45954 +a ||| a case of cutting off one ||| 1 0.0164489 2.17609e-05 1.08682e-16 2.718 ||| 0-2 ||| 1 45954 +a ||| a case of cutting off ||| 1 0.0164489 2.17609e-05 2.70352e-14 2.718 ||| 0-2 ||| 1 45954 +a ||| a case of cutting ||| 1 0.0164489 2.17609e-05 2.35191e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| a case of ||| 0.0769231 0.0164489 2.17609e-05 6.03054e-07 2.718 ||| 0-2 ||| 13 45954 +a ||| a close call ||| 1 0.0723077 2.17609e-05 5.94186e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| a concern for ||| 0.142857 0.0587253 2.17609e-05 8.03367e-08 2.718 ||| 0-2 ||| 7 45954 +a ||| a cornerstone of ||| 0.0909091 0.0164489 2.17609e-05 5.64088e-09 2.718 ||| 0-2 ||| 11 45954 +a ||| a course of ||| 0.0666667 0.0164489 2.17609e-05 3.71951e-07 2.718 ||| 0-2 ||| 15 45954 +a ||| a draw in the ||| 0.5 0.0437285 2.17609e-05 8.17592e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| a draw in ||| 0.5 0.0437285 2.17609e-05 1.53886e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| a finger at ||| 1 0.185652 2.17609e-05 2.67355e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| a floor under ||| 0.25 0.0560876 2.17609e-05 1.51821e-09 2.718 ||| 0-2 ||| 4 45954 +a ||| a glimpse at ||| 0.333333 0.185652 2.17609e-05 1.33678e-08 2.718 ||| 0-2 ||| 3 45954 +a ||| a healthy ||| 0.0555556 0.004386 2.17609e-05 4.74738e-07 2.718 ||| 0-1 ||| 18 45954 +a ||| a job in a ||| 1 0.0437285 2.17609e-05 1.03228e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| a job in ||| 0.25 0.0437285 2.17609e-05 2.56583e-07 2.718 ||| 0-2 ||| 4 45954 +a ||| a literary genius ||| 1 0.0416667 2.17609e-05 3.08579e-12 2.718 ||| 0-1 ||| 1 45954 +a ||| a literary ||| 0.5 0.0416667 2.17609e-05 4.74738e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| a livelihood for ||| 0.5 0.0587253 2.17609e-05 1.85612e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| a long way coming to ||| 0.142857 0.270828 2.17609e-05 5.92141e-12 2.718 ||| 0-4 ||| 7 45954 +a ||| a long way toward addressing ||| 0.333333 0.0996678 2.17609e-05 1.57595e-15 2.718 ||| 0-3 ||| 3 45954 +a ||| a long way toward ||| 0.0909091 0.0996678 2.17609e-05 4.84907e-11 2.718 ||| 0-3 ||| 11 45954 +a ||| a man he trusted , ||| 1 0.0032086 2.17609e-05 3.5377e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| a man he trusted ||| 1 0.0032086 2.17609e-05 1.73187e-14 2.718 ||| 0-2 ||| 1 45954 +a ||| a man he ||| 0.333333 0.0032086 2.17609e-05 1.33221e-09 2.718 ||| 0-2 ||| 3 45954 +a ||| a new fact-finding mission to Kosovo ||| 1 0.270828 2.17609e-05 6.36996e-20 2.718 ||| 0-4 ||| 1 45954 +a ||| a new fact-finding mission to ||| 1 0.270828 2.17609e-05 2.44998e-15 2.718 ||| 0-4 ||| 1 45954 +a ||| a number of ||| 0.00571429 0.0164489 2.17609e-05 2.98707e-07 2.718 ||| 0-2 ||| 175 45954 +a ||| a point where it had to be ||| 1 0.270828 2.17609e-05 6.34137e-16 2.718 ||| 0-5 ||| 1 45954 +a ||| a point where it had to ||| 1 0.270828 2.17609e-05 6.15285e-14 2.718 ||| 0-5 ||| 1 45954 +a ||| a ratio to ||| 1 0.270828 2.17609e-05 5.13586e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| a reliable guide ||| 0.333333 0.108527 2.17609e-05 1.72804e-10 2.718 ||| 0-2 ||| 3 45954 +a ||| a response to an explicit ||| 0.125 0.270828 2.17609e-05 1.15434e-13 2.718 ||| 0-2 ||| 8 45954 +a ||| a response to an ||| 0.125 0.270828 2.17609e-05 4.43976e-09 2.718 ||| 0-2 ||| 8 45954 +a ||| a response to ||| 0.0384615 0.270828 2.17609e-05 1.28265e-06 2.718 ||| 0-2 ||| 26 45954 +a ||| a return to ||| 0.00970874 0.270828 2.17609e-05 2.82209e-06 2.718 ||| 0-2 ||| 103 45954 +a ||| a rule of law that protects ||| 0.5 0.291667 2.17609e-05 5.64426e-17 2.718 ||| 0-5 ||| 2 45954 +a ||| a seat at ||| 0.125 0.185652 2.17609e-05 6.6736e-08 2.718 ||| 0-2 ||| 8 45954 +a ||| a sharp challenge to ||| 1 0.270828 2.17609e-05 1.05465e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| a slowdown in ||| 0.0666667 0.0437285 2.17609e-05 4.10785e-08 2.718 ||| 0-2 ||| 15 45954 +a ||| a source of ||| 0.00925926 0.0164489 2.17609e-05 9.01674e-08 2.718 ||| 0-2 ||| 108 45954 +a ||| a strong ||| 0.00448431 0.0009647 2.17609e-05 1.59383e-07 2.718 ||| 0-0 ||| 223 45954 +a ||| a willingness to ||| 0.05 0.270828 2.17609e-05 5.13586e-07 2.718 ||| 0-2 ||| 20 45954 +a ||| a year on ||| 0.0909091 0.0963759 2.17609e-05 4.90213e-07 2.718 ||| 0-2 ||| 11 45954 +a ||| a year to ||| 0.0833333 0.270828 2.17609e-05 6.24336e-06 2.718 ||| 0-2 ||| 12 45954 +a ||| a ||| 0.000594875 0.0009647 0.000848675 0.000767 2.718 ||| 0-0 ||| 65560 45954 +a ||| abandoned them ||| 0.333333 0.0576923 2.17609e-05 2.076e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| abandoned ||| 0.028777 0.0576923 8.70436e-05 0.0001062 2.718 ||| 0-0 ||| 139 45954 +a ||| ability to generate public awareness and set ||| 1 0.270828 2.17609e-05 4.81936e-23 2.718 ||| 0-1 ||| 1 45954 +a ||| ability to generate public awareness and ||| 1 0.270828 2.17609e-05 5.70811e-20 2.718 ||| 0-1 ||| 1 45954 +a ||| ability to generate public awareness ||| 1 0.270828 2.17609e-05 6.79772e-18 2.718 ||| 0-1 ||| 1 45954 +a ||| ability to generate public ||| 1 0.270828 2.17609e-05 3.48601e-13 2.718 ||| 0-1 ||| 1 45954 +a ||| ability to generate ||| 0.5 0.270828 2.17609e-05 9.94015e-10 2.718 ||| 0-1 ||| 2 45954 +a ||| ability to ||| 0.00301205 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-1 ||| 332 45954 +a ||| able to melt the shackles of these ||| 1 0.270828 2.17609e-05 6.32174e-21 2.718 ||| 0-1 ||| 1 45954 +a ||| able to melt the shackles of ||| 1 0.270828 2.17609e-05 8.2497e-18 2.718 ||| 0-1 ||| 1 45954 +a ||| able to melt the shackles ||| 1 0.270828 2.17609e-05 3.05362e-16 2.718 ||| 0-1 ||| 1 45954 +a ||| able to melt the ||| 1 0.270828 2.17609e-05 4.69788e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| able to melt ||| 1 0.270828 2.17609e-05 8.84231e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| able to recall ||| 1 0.270828 2.17609e-05 4.42115e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| able to ||| 0.0143885 0.270828 0.000130565 0.000136035 2.718 ||| 0-1 ||| 417 45954 +a ||| about & # 45 ; & # ||| 1 0.0244529 2.17609e-05 7.753e-21 2.718 ||| 0-0 ||| 1 45954 +a ||| about & # 45 ; & ||| 1 0.0244529 2.17609e-05 8.23298e-18 2.718 ||| 0-0 ||| 1 45954 +a ||| about & # 45 ; ||| 1 0.0244529 2.17609e-05 5.8419e-15 2.718 ||| 0-0 ||| 1 45954 +a ||| about & # 45 ||| 1 0.0244529 2.17609e-05 3.29511e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| about & # ||| 1 0.0244529 2.17609e-05 2.8345e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| about & ||| 1 0.0244529 2.17609e-05 3.00998e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| about -- first ||| 0.5 0.0244529 2.17609e-05 5.2992e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| about -- ||| 0.25 0.0244529 2.17609e-05 1.07358e-05 2.718 ||| 0-0 ||| 4 45954 +a ||| about whom ||| 0.333333 0.129741 2.17609e-05 9.31445e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| about ||| 0.00492438 0.0244529 0.000609305 0.0021358 2.718 ||| 0-0 ||| 5686 45954 +a ||| above ||| 0.0014245 0.0050125 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 702 45954 +a ||| absolved of ||| 1 0.0164489 2.17609e-05 1.40209e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| access ||| 0.00273973 0.0239521 4.35218e-05 0.0002832 2.718 ||| 0-0 ||| 730 45954 +a ||| accession ||| 0.00364964 0.17603 2.17609e-05 0.0005546 2.718 ||| 0-0 ||| 274 45954 +a ||| accommodates ||| 0.0909091 0.375 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 11 45954 +a ||| accompany Barak to Washington , will make ||| 1 0.170732 2.17609e-05 1.07135e-21 2.718 ||| 0-0 ||| 1 45954 +a ||| accompany Barak to Washington , will ||| 1 0.170732 2.17609e-05 8.12675e-19 2.718 ||| 0-0 ||| 1 45954 +a ||| accompany Barak to Washington , ||| 1 0.170732 2.17609e-05 1.1761e-16 2.718 ||| 0-0 ||| 1 45954 +a ||| accompany Barak to Washington ||| 1 0.170732 2.17609e-05 5.75757e-16 2.718 ||| 0-0 ||| 1 45954 +a ||| accompany Barak to ||| 1 0.170732 2.17609e-05 4.4289e-11 2.718 ||| 0-0 ||| 1 45954 +a ||| accompany Barak ||| 1 0.170732 2.17609e-05 5.369e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| accompany him on ||| 1 0.0963759 2.17609e-05 1.16086e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| accompany ||| 0.03125 0.170732 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 32 45954 +a ||| accord with ||| 0.125 0.0330797 2.17609e-05 1.09375e-07 2.718 ||| 0-1 ||| 8 45954 +a ||| accordingly ||| 0.0120482 0.0232558 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 83 45954 +a ||| account for ||| 0.0140845 0.0587253 4.35218e-05 2.76576e-06 2.718 ||| 0-1 ||| 142 45954 +a ||| accused ||| 0.016129 0.1875 4.35218e-05 0.0004248 2.718 ||| 0-0 ||| 124 45954 +a ||| accustomed to ||| 0.027027 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 37 45954 +a ||| aced ||| 1 1 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| achieve as ||| 0.142857 0.0289876 2.17609e-05 1.20788e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| achieve greater scale in ||| 0.5 0.0437285 2.17609e-05 6.9921e-14 2.718 ||| 0-3 ||| 2 45954 +a ||| across Afghanistan ||| 1 0.0490798 2.17609e-05 4.9088e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| across borders ||| 0.05 0.0490798 2.17609e-05 1.96352e-08 2.718 ||| 0-0 ||| 20 45954 +a ||| across ||| 0.00547046 0.0490798 0.000108804 0.0007552 2.718 ||| 0-0 ||| 914 45954 +a ||| act on ||| 0.0434783 0.0963759 2.17609e-05 4.00672e-06 2.718 ||| 0-1 ||| 23 45954 +a ||| act to ||| 0.0666667 0.270828 2.17609e-05 5.10297e-05 2.718 ||| 0-1 ||| 15 45954 +a ||| activities are concerned ||| 0.5 0.0769231 2.17609e-05 1.09027e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| activity appears likelier to engender additional goodwill ||| 1 0.270828 2.17609e-05 8.27612e-29 2.718 ||| 0-3 ||| 1 45954 +a ||| activity appears likelier to engender additional ||| 1 0.270828 2.17609e-05 6.36625e-24 2.718 ||| 0-3 ||| 1 45954 +a ||| activity appears likelier to engender ||| 1 0.270828 2.17609e-05 1.09011e-19 2.718 ||| 0-3 ||| 1 45954 +a ||| activity appears likelier to ||| 1 0.270828 2.17609e-05 1.67709e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| actually help ||| 0.5 0.350156 2.17609e-05 2.40054e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| actually represent ||| 1 0.0085106 2.17609e-05 5.36428e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| add to ||| 0.0540541 0.270828 4.35218e-05 2.76261e-05 2.718 ||| 0-1 ||| 37 45954 +a ||| add up to anything ||| 0.333333 0.270828 2.17609e-05 1.40144e-11 2.718 ||| 0-2 ||| 3 45954 +a ||| add up to ||| 0.0434783 0.270828 2.17609e-05 8.62956e-08 2.718 ||| 0-2 ||| 23 45954 +a ||| added to ||| 0.0625 0.270828 4.35218e-05 2.12433e-05 2.718 ||| 0-1 ||| 32 45954 +a ||| addiction ||| 0.0212766 0.133333 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 47 45954 +a ||| adding to ||| 0.0357143 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-1 ||| 28 45954 +a ||| addition to ||| 0.111111 0.270828 2.17609e-05 2.76261e-05 2.718 ||| 0-1 ||| 9 45954 +a ||| additional toll on ||| 1 0.0963759 2.17609e-05 4.87797e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| address at the ||| 0.5 0.185652 2.17609e-05 1.4109e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| address at ||| 0.5 0.185652 2.17609e-05 2.65558e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| adjust them to ||| 1 0.270828 2.17609e-05 1.24771e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| administrative ||| 0.00833333 0.0079365 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 120 45954 +a ||| admittedly are back ||| 1 0.0671913 2.17609e-05 1.26062e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| advance toward ||| 0.5 0.0996678 2.17609e-05 7.58268e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| advice to ||| 0.0909091 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-1 ||| 11 45954 +a ||| affect the US " far more than ||| 1 0.25256 2.17609e-05 1.69759e-19 2.718 ||| 0-0 ||| 1 45954 +a ||| affect the US " far more ||| 1 0.25256 2.17609e-05 4.21656e-16 2.718 ||| 0-0 ||| 1 45954 +a ||| affect the US " far ||| 1 0.25256 2.17609e-05 1.97349e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| affect the US " ||| 1 0.25256 2.17609e-05 2.9793e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| affect the US ||| 0.5 0.25256 2.17609e-05 5.96565e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| affect the ||| 0.0322581 0.25256 2.17609e-05 4.63928e-05 2.718 ||| 0-0 ||| 31 45954 +a ||| affect ||| 0.0314465 0.25256 0.000108804 0.0008732 2.718 ||| 0-0 ||| 159 45954 +a ||| affected ||| 0.00625 0.0772727 2.17609e-05 0.0002006 2.718 ||| 0-0 ||| 160 45954 +a ||| affecting ||| 0.0338983 0.25 4.35218e-05 0.0004012 2.718 ||| 0-0 ||| 59 45954 +a ||| afford to ||| 0.0070922 0.270828 2.17609e-05 2.54985e-05 2.718 ||| 0-1 ||| 141 45954 +a ||| after ||| 0.000284616 0.002393 4.35218e-05 0.0001062 2.718 ||| 0-0 ||| 7027 45954 +a ||| again , at ||| 0.333333 0.185652 2.17609e-05 2.00067e-06 2.718 ||| 0-2 ||| 3 45954 +a ||| again , in ||| 0.5 0.0437285 2.17609e-05 3.07398e-06 2.718 ||| 0-2 ||| 2 45954 +a ||| again , ||| 0.016129 0.0930362 6.52827e-05 0.000402536 2.718 ||| 0-0 ||| 186 45954 +a ||| again boarding ||| 1 0.0930362 2.17609e-05 1.28089e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| again leap ||| 0.5 0.0930362 2.17609e-05 5.12356e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| again to ||| 0.0869565 0.181932 4.35218e-05 0.000645023 2.718 ||| 0-0 0-1 ||| 23 45954 +a ||| again ||| 0.0445682 0.0930362 0.000696349 0.0019706 2.718 ||| 0-0 ||| 718 45954 +a ||| against Israel ||| 0.025641 0.0413907 2.17609e-05 2.06913e-07 2.718 ||| 0-0 ||| 39 45954 +a ||| against panels ||| 0.25 0.0413907 2.17609e-05 3.4515e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| against the Taliban ||| 0.0833333 0.0413907 2.17609e-05 3.05628e-09 2.718 ||| 0-0 ||| 12 45954 +a ||| against the risk ||| 0.142857 0.0413907 2.17609e-05 1.5272e-08 2.718 ||| 0-0 ||| 7 45954 +a ||| against the ||| 0.00274348 0.0413907 4.35218e-05 9.40394e-05 2.718 ||| 0-0 ||| 729 45954 +a ||| against ||| 0.0110572 0.0413907 0.000892197 0.00177 2.718 ||| 0-0 ||| 3708 45954 +a ||| agencies to ||| 0.2 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| agree to ||| 0.0344828 0.270828 4.35218e-05 3.18813e-05 2.718 ||| 0-1 ||| 58 45954 +a ||| agreed upon institutionally ||| 0.5 0.111969 2.17609e-05 7.50924e-13 2.718 ||| 0-1 ||| 2 45954 +a ||| agreed upon ||| 0.0571429 0.111969 4.35218e-05 5.77634e-08 2.718 ||| 0-1 ||| 35 45954 +a ||| agreeing to take ||| 1 0.270828 2.17609e-05 5.63729e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| agreeing to ||| 0.111111 0.270828 4.35218e-05 6.3828e-06 2.718 ||| 0-1 ||| 18 45954 +a ||| agrees to ||| 0.111111 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 9 45954 +a ||| ahead at ||| 0.333333 0.185652 2.17609e-05 5.14503e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| ahead in ||| 0.142857 0.0437285 2.17609e-05 7.90521e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| ahead of ||| 0.0421053 0.0164489 8.70436e-05 4.34216e-06 2.718 ||| 0-1 ||| 95 45954 +a ||| ahead to ||| 0.111111 0.270828 2.17609e-05 6.58901e-05 2.718 ||| 0-1 ||| 9 45954 +a ||| ahead ||| 0.00289855 0.0089286 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 345 45954 +a ||| aid for ||| 0.0714286 0.0587253 2.17609e-05 1.68927e-06 2.718 ||| 0-1 ||| 14 45954 +a ||| aid ||| 0.00106724 0.0009001 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 937 45954 +a ||| aiding ||| 0.0666667 0.4 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 15 45954 +a ||| aimed at ||| 0.0138889 0.185652 0.000108804 2.98785e-06 2.718 ||| 0-1 ||| 360 45954 +a ||| aiming for ||| 0.0769231 0.0587253 2.17609e-05 4.61354e-07 2.718 ||| 0-1 ||| 13 45954 +a ||| air time to ||| 1 0.270828 2.17609e-05 1.59179e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| airy ||| 0.25 1 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 4 45954 +a ||| al ||| 0.037037 0.0408163 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 27 45954 +a ||| alienate ||| 0.0277778 0.26087 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 36 45954 +a ||| alienated ||| 0.0434783 0.127273 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 23 45954 +a ||| aligned ||| 0.03125 0.0232558 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 32 45954 +a ||| all at ||| 0.0833333 0.185652 2.17609e-05 6.62285e-05 2.718 ||| 0-1 ||| 12 45954 +a ||| all for ||| 0.05 0.0587253 2.17609e-05 6.13057e-05 2.718 ||| 0-1 ||| 20 45954 +a ||| all harm and no cure . ||| 1 0.0549451 2.17609e-05 1.59468e-19 2.718 ||| 0-1 ||| 1 45954 +a ||| all harm and no cure ||| 1 0.0549451 2.17609e-05 3.46827e-17 2.718 ||| 0-1 ||| 1 45954 +a ||| all harm and no ||| 1 0.0549451 2.17609e-05 2.6679e-12 2.718 ||| 0-1 ||| 1 45954 +a ||| all harm and ||| 1 0.0549451 2.17609e-05 2.56751e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| all harm ||| 1 0.0549451 2.17609e-05 3.05762e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| all of ||| 0.00156986 0.0164489 2.17609e-05 5.58937e-05 2.718 ||| 0-1 ||| 637 45954 +a ||| all the way to ||| 0.0909091 0.270828 2.17609e-05 6.84813e-08 2.718 ||| 0-3 ||| 11 45954 +a ||| all to ||| 0.0526316 0.270828 2.17609e-05 0.00084816 2.718 ||| 0-1 ||| 19 45954 +a ||| allocated for ||| 0.333333 0.0587253 2.17609e-05 3.0757e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| allow him to seek further ||| 0.333333 0.270828 2.17609e-05 1.89691e-15 2.718 ||| 0-2 ||| 3 45954 +a ||| allow him to seek ||| 0.333333 0.270828 2.17609e-05 5.84203e-12 2.718 ||| 0-2 ||| 3 45954 +a ||| allow him to ||| 0.25 0.270828 4.35218e-05 3.10251e-08 2.718 ||| 0-2 ||| 8 45954 +a ||| allow himself to ||| 1 0.270828 2.17609e-05 1.50772e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| allow it to ||| 0.125 0.270828 2.17609e-05 1.18879e-06 2.718 ||| 0-2 ||| 8 45954 +a ||| allow it ||| 0.125 0.0417661 2.17609e-05 1.09967e-05 2.718 ||| 0-0 ||| 8 45954 +a ||| allow stock ||| 1 0.0417661 2.17609e-05 8.04524e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| allow ||| 0.00433839 0.0417661 4.35218e-05 0.000413 2.718 ||| 0-0 ||| 461 45954 +a ||| allowed a seat at ||| 0.333333 0.185652 2.17609e-05 1.08379e-11 2.718 ||| 0-3 ||| 3 45954 +a ||| allowed to fail ||| 0.142857 0.270828 2.17609e-05 5.86856e-09 2.718 ||| 0-1 ||| 7 45954 +a ||| allowed to ||| 0.0148515 0.270828 6.52827e-05 5.31573e-05 2.718 ||| 0-1 ||| 202 45954 +a ||| allowing him to complete ||| 1 0.270828 2.17609e-05 8.7348e-13 2.718 ||| 0-2 ||| 1 45954 +a ||| allowing him to ||| 0.25 0.270828 2.17609e-05 1.03493e-08 2.718 ||| 0-2 ||| 4 45954 +a ||| almost ||| 0.00068918 0.0007463 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1451 45954 +a ||| along Anglo-American lines -- even ||| 0.125 0.15015 2.17609e-05 5.46481e-18 2.718 ||| 0-0 ||| 8 45954 +a ||| along Anglo-American lines -- ||| 0.125 0.15015 2.17609e-05 6.01057e-15 2.718 ||| 0-0 ||| 8 45954 +a ||| along Anglo-American lines ||| 0.111111 0.15015 2.17609e-05 1.19575e-12 2.718 ||| 0-0 ||| 9 45954 +a ||| along Anglo-American ||| 0.125 0.15015 2.17609e-05 7.67e-09 2.718 ||| 0-0 ||| 8 45954 +a ||| along at ||| 0.166667 0.185652 2.17609e-05 5.80956e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| along lines ||| 0.25 0.15015 2.17609e-05 1.83962e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| along with ||| 0.00956938 0.15015 4.35218e-05 4.47539e-06 2.718 ||| 0-0 ||| 209 45954 +a ||| along ||| 0.0372671 0.15015 0.000391696 0.00118 2.718 ||| 0-0 ||| 483 45954 +a ||| alongside ||| 0.0183486 0.117347 4.35218e-05 0.0002714 2.718 ||| 0-0 ||| 109 45954 +a ||| already ||| 0.000626566 0.0020718 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 1596 45954 +a ||| also needs to ||| 0.0833333 0.270828 2.17609e-05 6.18417e-08 2.718 ||| 0-2 ||| 12 45954 +a ||| also sells ||| 0.333333 0.0344828 2.17609e-05 1.07286e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| am ||| 0.0212766 0.009901 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 47 45954 +a ||| ambition to be ||| 0.125 0.270828 2.17609e-05 4.38558e-08 2.718 ||| 0-1 ||| 8 45954 +a ||| ambition to ||| 0.0625 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 16 45954 +a ||| among themselves on ||| 0.5 0.0963759 2.17609e-05 5.377e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| among ||| 0.00118343 0.0036232 4.35218e-05 7.08e-05 2.718 ||| 0-0 ||| 1690 45954 +a ||| amount of air time to ||| 1 0.270828 2.17609e-05 1.31248e-13 2.718 ||| 0-4 ||| 1 45954 +a ||| amount of ||| 0.0070922 0.0164489 2.17609e-05 6.58335e-06 2.718 ||| 0-1 ||| 141 45954 +a ||| amounting to ||| 0.0333333 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 30 45954 +a ||| amounts to ||| 0.0151515 0.270828 2.17609e-05 2.54985e-05 2.718 ||| 0-1 ||| 66 45954 +a ||| ample use of laundry , ||| 1 0.0164489 2.17609e-05 6.52876e-17 2.718 ||| 0-2 ||| 1 45954 +a ||| ample use of laundry ||| 1 0.0164489 2.17609e-05 3.19613e-16 2.718 ||| 0-2 ||| 1 45954 +a ||| ample use of ||| 1 0.0164489 2.17609e-05 4.91713e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| an impediment to ||| 0.25 0.270828 2.17609e-05 7.36448e-09 2.718 ||| 0-2 ||| 4 45954 +a ||| an incentive to ||| 0.03125 0.270828 2.17609e-05 2.94579e-08 2.718 ||| 0-2 ||| 32 45954 +a ||| and , ||| 0.000687758 0.0003921 2.17609e-05 8.67742e-05 2.718 ||| 0-0 ||| 1454 45954 +a ||| and ability to generate public awareness and ||| 1 0.270828 2.17609e-05 4.79316e-22 2.718 ||| 0-2 ||| 1 45954 +a ||| and ability to generate public awareness ||| 1 0.270828 2.17609e-05 5.70811e-20 2.718 ||| 0-2 ||| 1 45954 +a ||| and ability to generate public ||| 1 0.270828 2.17609e-05 2.92724e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| and ability to generate ||| 1 0.270828 2.17609e-05 8.34684e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| and ability to ||| 0.0625 0.270828 2.17609e-05 1.60516e-07 2.718 ||| 0-2 ||| 16 45954 +a ||| and again , at ||| 1 0.185652 2.17609e-05 1.67998e-08 2.718 ||| 0-3 ||| 1 45954 +a ||| and at the ||| 0.0416667 0.185652 2.17609e-05 1.14028e-05 2.718 ||| 0-1 ||| 24 45954 +a ||| and at ||| 0.00909091 0.185652 2.17609e-05 0.000214621 2.718 ||| 0-1 ||| 110 45954 +a ||| and casualties by ||| 1 0.0269646 2.17609e-05 7.36813e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| and check one last time at ||| 0.5 0.185652 2.17609e-05 1.19872e-17 2.718 ||| 0-5 ||| 2 45954 +a ||| and down in response to ||| 0.5 0.270828 2.17609e-05 6.01061e-12 2.718 ||| 0-4 ||| 2 45954 +a ||| and downstream activities are concerned ||| 0.5 0.0769231 2.17609e-05 5.95081e-18 2.718 ||| 0-4 ||| 2 45954 +a ||| and each other to ||| 1 0.270828 2.17609e-05 1.67847e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| and embolden ||| 0.333333 0.538462 2.17609e-05 6.936e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| and fails to ||| 0.166667 0.270828 2.17609e-05 1.2506e-07 2.718 ||| 0-2 ||| 6 45954 +a ||| and for ||| 0.00352113 0.0587253 2.17609e-05 0.000198669 2.718 ||| 0-1 ||| 284 45954 +a ||| and incorporating them into ||| 0.5 0.176821 2.17609e-05 1.19481e-12 2.718 ||| 0-3 ||| 2 45954 +a ||| and into the ||| 0.0909091 0.176821 2.17609e-05 4.99595e-06 2.718 ||| 0-1 ||| 11 45954 +a ||| and into ||| 0.103448 0.176821 6.52827e-05 9.40332e-05 2.718 ||| 0-1 ||| 29 45954 +a ||| and often banal , ||| 1 0.18338 2.17609e-05 6.88081e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| and often banal ||| 1 0.18338 2.17609e-05 3.36848e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| and often ||| 0.0108696 0.18338 2.17609e-05 5.18227e-05 2.718 ||| 0-1 ||| 92 45954 +a ||| and others ||| 0.003663 0.0052053 2.17609e-05 8.91772e-07 2.718 ||| 0-1 ||| 273 45954 +a ||| and proceeded to expel ||| 0.5 0.441177 2.17609e-05 2.39078e-12 2.718 ||| 0-3 ||| 2 45954 +a ||| and sentenced to prison ||| 0.5 0.270828 2.17609e-05 6.96761e-13 2.718 ||| 0-2 ||| 2 45954 +a ||| and sentenced to ||| 0.166667 0.270828 2.17609e-05 3.57313e-08 2.718 ||| 0-2 ||| 6 45954 +a ||| and tending of ||| 0.5 0.0164489 2.17609e-05 2.3547e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| and the ||| 0.00013177 0.00077435 2.17609e-05 1.25316e-06 2.718 ||| 0-0 0-1 ||| 7589 45954 +a ||| and threats to ||| 0.142857 0.270828 2.17609e-05 5.3597e-08 2.718 ||| 0-2 ||| 7 45954 +a ||| and to ||| 0.00273598 0.270828 4.35218e-05 0.00274856 2.718 ||| 0-1 ||| 731 45954 +a ||| and willingness to ||| 0.125 0.270828 2.17609e-05 1.07194e-07 2.718 ||| 0-2 ||| 8 45954 +a ||| and ||| 0.000234458 0.0003921 0.000544022 0.0004248 2.718 ||| 0-0 ||| 106629 45954 +a ||| animate her ||| 0.5 0.5 2.17609e-05 6.9738e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| animate ||| 0.333333 0.5 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 3 45954 +a ||| annual inflation soar to over ||| 0.5 0.270828 2.17609e-05 1.13552e-17 2.718 ||| 0-3 ||| 2 45954 +a ||| annual inflation soar to ||| 0.5 0.270828 2.17609e-05 1.63408e-14 2.718 ||| 0-3 ||| 2 45954 +a ||| annually to ||| 0.5 0.270828 2.17609e-05 1.70208e-05 2.718 ||| 0-1 ||| 2 45954 +a ||| anointed ||| 0.1 0.230769 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 10 45954 +a ||| another Thaksin ||| 0.333333 0.0194175 2.17609e-05 4.44388e-09 2.718 ||| 0-1 ||| 3 45954 +a ||| another face-to-face , ||| 0.166667 0.306122 2.17609e-05 6.80816e-09 2.718 ||| 0-1 ||| 6 45954 +a ||| another face-to-face ||| 0.166667 0.306122 2.17609e-05 3.33291e-08 2.718 ||| 0-1 ||| 6 45954 +a ||| anyone ||| 0.00301205 0.0892857 2.17609e-05 0.000531 2.718 ||| 0-0 ||| 332 45954 +a ||| anywhere in ||| 0.0714286 0.0437285 2.17609e-05 1.53156e-06 2.718 ||| 0-1 ||| 14 45954 +a ||| apart ||| 0.05 0.0397727 6.52827e-05 8.26e-05 2.718 ||| 0-0 ||| 60 45954 +a ||| appeal to ||| 0.0217391 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-1 ||| 46 45954 +a ||| appealed for authority ||| 0.0833333 0.0587253 2.17609e-05 9.99601e-12 2.718 ||| 0-1 ||| 12 45954 +a ||| appealed for ||| 0.0769231 0.0587253 2.17609e-05 3.0757e-07 2.718 ||| 0-1 ||| 13 45954 +a ||| appealing to ||| 0.0833333 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 12 45954 +a ||| appear at ||| 0.142857 0.185652 2.17609e-05 4.64663e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| appear in ||| 0.105263 0.0437285 4.35218e-05 7.13943e-06 2.718 ||| 0-1 ||| 19 45954 +a ||| appearance in 1943 , Peronism ||| 1 0.0437285 2.17609e-05 1.1015e-17 2.718 ||| 0-1 ||| 1 45954 +a ||| appearance in 1943 , ||| 1 0.0437285 2.17609e-05 1.69462e-12 2.718 ||| 0-1 ||| 1 45954 +a ||| appearance in 1943 ||| 1 0.0437285 2.17609e-05 8.29596e-12 2.718 ||| 0-1 ||| 1 45954 +a ||| appearance in ||| 0.2 0.0437285 2.17609e-05 1.2763e-06 2.718 ||| 0-1 ||| 5 45954 +a ||| appears likelier to engender additional goodwill . ||| 1 0.270828 2.17609e-05 5.32952e-27 2.718 ||| 0-2 ||| 1 45954 +a ||| appears likelier to engender additional goodwill ||| 1 0.270828 2.17609e-05 1.15912e-24 2.718 ||| 0-2 ||| 1 45954 +a ||| appears likelier to engender additional ||| 1 0.270828 2.17609e-05 8.91631e-20 2.718 ||| 0-2 ||| 1 45954 +a ||| appears likelier to engender ||| 1 0.270828 2.17609e-05 1.52677e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| appears likelier to ||| 1 0.270828 2.17609e-05 2.34887e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| appears to ||| 0.00374532 0.270828 2.17609e-05 3.61365e-05 2.718 ||| 0-1 ||| 267 45954 +a ||| appetite for ||| 0.0555556 0.0587253 2.17609e-05 3.0757e-07 2.718 ||| 0-1 ||| 18 45954 +a ||| appointed presidential ||| 0.5 0.157407 2.17609e-05 9.1273e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| appointed ||| 0.0133333 0.157407 2.17609e-05 0.0002006 2.718 ||| 0-0 ||| 75 45954 +a ||| approach into ||| 0.5 0.176821 2.17609e-05 1.67303e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| approached ||| 0.0384615 0.14 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 26 45954 +a ||| appropriately treated ||| 0.333333 0.0901961 2.17609e-05 3.5282e-09 2.718 ||| 0-1 ||| 3 45954 +a ||| ardent defenders are ||| 0.333333 0.047619 2.17609e-05 1.70355e-12 2.718 ||| 0-1 ||| 3 45954 +a ||| ardent defenders ||| 0.333333 0.047619 2.17609e-05 2.301e-10 2.718 ||| 0-1 ||| 3 45954 +a ||| are , to ||| 1 0.270828 2.17609e-05 0.000495016 2.718 ||| 0-2 ||| 1 45954 +a ||| are allowed a seat at ||| 0.333333 0.185652 2.17609e-05 8.02386e-14 2.718 ||| 0-4 ||| 3 45954 +a ||| are back ||| 0.0769231 0.0671913 2.17609e-05 9.6971e-06 2.718 ||| 0-1 ||| 13 45954 +a ||| are being met , ||| 1 0.0664962 2.17609e-05 6.99077e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| are being met ||| 0.5 0.0664962 2.17609e-05 3.42231e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| are being pursued ||| 0.5 0.0983607 2.17609e-05 2.36929e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| are certain to see ||| 1 0.270828 2.17609e-05 2.91265e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| are certain to ||| 0.333333 0.270828 2.17609e-05 4.72066e-07 2.718 ||| 0-2 ||| 3 45954 +a ||| are concerned ||| 0.05 0.0769231 4.35218e-05 2.79556e-06 2.718 ||| 0-1 ||| 40 45954 +a ||| are currently being devoted to ||| 1 0.270828 2.17609e-05 1.29416e-14 2.718 ||| 0-4 ||| 1 45954 +a ||| are extended to ||| 1 0.270828 2.17609e-05 1.26014e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| are fired ||| 0.25 0.0677966 2.17609e-05 3.49445e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| are largely over ||| 1 0.07993 2.17609e-05 5.59767e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| are likely to incur some losses ||| 0.125 0.270828 2.17609e-05 2.1092e-19 2.718 ||| 0-2 ||| 8 45954 +a ||| are likely to incur some ||| 0.125 0.270828 2.17609e-05 5.40819e-15 2.718 ||| 0-2 ||| 8 45954 +a ||| are likely to incur ||| 0.125 0.270828 2.17609e-05 7.57026e-12 2.718 ||| 0-2 ||| 8 45954 +a ||| are likely to ||| 0.00595238 0.270828 2.17609e-05 1.16466e-06 2.718 ||| 0-2 ||| 168 45954 +a ||| are meant to serve ||| 0.166667 0.270828 2.17609e-05 5.23209e-11 2.718 ||| 0-2 ||| 6 45954 +a ||| are meant to ||| 0.166667 0.270828 4.35218e-05 2.51785e-07 2.718 ||| 0-2 ||| 12 45954 +a ||| are of ||| 0.0333333 0.0164489 2.17609e-05 0.000159698 2.718 ||| 0-1 ||| 30 45954 +a ||| are paid at ||| 0.333333 0.185652 2.17609e-05 2.58104e-08 2.718 ||| 0-2 ||| 3 45954 +a ||| are prone to produce bubbles . ||| 1 0.270828 2.17609e-05 7.95114e-20 2.718 ||| 0-2 ||| 1 45954 +a ||| are prone to produce bubbles ||| 1 0.270828 2.17609e-05 1.7293e-17 2.718 ||| 0-2 ||| 1 45954 +a ||| are prone to produce ||| 1 0.270828 2.17609e-05 2.66046e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| are prone to ||| 0.0833333 0.270828 2.17609e-05 1.57517e-08 2.718 ||| 0-2 ||| 12 45954 +a ||| are set to ||| 0.0833333 0.270828 2.17609e-05 2.04602e-06 2.718 ||| 0-2 ||| 12 45954 +a ||| are supposed to ||| 0.030303 0.270828 2.17609e-05 3.46295e-07 2.718 ||| 0-2 ||| 33 45954 +a ||| are taught ||| 0.125 0.103448 2.17609e-05 1.04834e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| are the questions of ||| 0.5 0.0164489 2.17609e-05 7.16108e-10 2.718 ||| 0-3 ||| 2 45954 +a ||| are to be ||| 0.0166667 0.270828 2.17609e-05 2.49759e-05 2.718 ||| 0-1 ||| 60 45954 +a ||| are to secure ||| 0.5 0.270828 2.17609e-05 2.36033e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| are to ||| 0.0431655 0.270828 0.000130565 0.00242334 2.718 ||| 0-1 ||| 139 45954 +a ||| arms over ||| 1 0.07993 2.17609e-05 2.5219e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| around in ||| 0.2 0.0437285 2.17609e-05 2.06564e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| around ||| 0.00739056 0.0474763 0.000282892 0.001121 2.718 ||| 0-0 ||| 1759 45954 +a ||| arrested ||| 0.0149254 0.123377 4.35218e-05 0.0002242 2.718 ||| 0-0 ||| 134 45954 +a ||| as " ||| 0.00331126 0.0289876 2.17609e-05 4.64376e-05 2.718 ||| 0-0 ||| 302 45954 +a ||| as a consequence of ||| 0.0625 0.0289876 2.17609e-05 6.56932e-11 2.718 ||| 0-0 ||| 16 45954 +a ||| as a consequence ||| 0.025 0.0289876 2.17609e-05 2.43163e-09 2.718 ||| 0-0 ||| 40 45954 +a ||| as a matter ||| 0.027027 0.0289876 2.17609e-05 1.19038e-07 2.718 ||| 0-0 ||| 37 45954 +a ||| as a result ||| 0.0023015 0.0289876 4.35218e-05 1.55475e-07 2.718 ||| 0-0 ||| 869 45954 +a ||| as a ||| 0.00366703 0.0289876 0.000217609 0.000374097 2.718 ||| 0-0 ||| 2727 45954 +a ||| as an impediment to ||| 1 0.270828 2.17609e-05 6.22703e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| as anything ||| 0.0714286 0.0289876 2.17609e-05 1.51008e-06 2.718 ||| 0-0 ||| 14 45954 +a ||| as before , ||| 0.25 0.0289876 2.17609e-05 4.07044e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| as before ||| 0.0625 0.0289876 2.17609e-05 1.99267e-06 2.718 ||| 0-0 ||| 16 45954 +a ||| as far as ||| 0.0169492 0.0289876 2.17609e-05 5.20802e-08 2.718 ||| 0-0 ||| 59 45954 +a ||| as far ||| 0.0172414 0.0289876 2.17609e-05 6.15933e-06 2.718 ||| 0-0 ||| 58 45954 +a ||| as for ||| 0.00595238 0.0587253 2.17609e-05 0.00020005 2.718 ||| 0-1 ||| 168 45954 +a ||| as high as ||| 0.0526316 0.0289876 2.17609e-05 4.09917e-08 2.718 ||| 0-0 0-2 ||| 19 45954 +a ||| as it was ||| 0.0277778 0.0289876 2.17609e-05 9.35803e-07 2.718 ||| 0-0 ||| 36 45954 +a ||| as it were , ||| 0.333333 0.0289876 2.17609e-05 1.11998e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| as it were ||| 0.25 0.0289876 2.17609e-05 5.4828e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| as it ||| 0.00738916 0.0289876 6.52827e-05 0.000247587 2.718 ||| 0-0 ||| 406 45954 +a ||| as long ||| 0.00917431 0.0289876 2.17609e-05 6.94412e-06 2.718 ||| 0-0 ||| 109 45954 +a ||| as many ||| 0.00980392 0.0289876 2.17609e-05 5.43497e-06 2.718 ||| 0-0 ||| 102 45954 +a ||| as more ||| 0.0625 0.0289876 4.35218e-05 1.98672e-05 2.718 ||| 0-0 ||| 32 45954 +a ||| as much as ||| 0.0108696 0.0289876 4.35218e-05 1.13351e-07 2.718 ||| 0-0 ||| 184 45954 +a ||| as much ||| 0.0117302 0.0289876 8.70436e-05 1.34056e-05 2.718 ||| 0-0 ||| 341 45954 +a ||| as nothing but ||| 1 0.0289876 2.17609e-05 1.97616e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| as nothing ||| 0.0666667 0.0289876 2.17609e-05 1.69047e-06 2.718 ||| 0-0 ||| 15 45954 +a ||| as on ||| 0.0555556 0.0963759 2.17609e-05 0.000217311 2.718 ||| 0-1 ||| 18 45954 +a ||| as opposed ||| 0.0196078 0.195545 2.17609e-05 7.88222e-06 2.718 ||| 0-1 ||| 51 45954 +a ||| as possible in order to make it ||| 0.5 0.270828 2.17609e-05 4.76278e-16 2.718 ||| 0-4 ||| 2 45954 +a ||| as possible in order to make ||| 0.5 0.270828 2.17609e-05 1.78874e-14 2.718 ||| 0-4 ||| 2 45954 +a ||| as possible in order to ||| 0.333333 0.270828 2.17609e-05 1.35685e-11 2.718 ||| 0-4 ||| 3 45954 +a ||| as recently as ||| 0.0666667 0.0289876 2.17609e-05 1.88932e-08 2.718 ||| 0-0 ||| 15 45954 +a ||| as recently ||| 0.1 0.0289876 2.17609e-05 2.23443e-06 2.718 ||| 0-0 ||| 10 45954 +a ||| as soon as possible in order to ||| 0.333333 0.270828 2.17609e-05 1.5649e-17 2.718 ||| 0-6 ||| 3 45954 +a ||| as to ||| 0.0375 0.270828 0.000130565 0.00276768 2.718 ||| 0-1 ||| 160 45954 +a ||| as we engage with ||| 0.25 0.0330797 2.17609e-05 1.82093e-11 2.718 ||| 0-3 ||| 4 45954 +a ||| as well as on ||| 0.125 0.0963759 2.17609e-05 3.18618e-09 2.718 ||| 0-3 ||| 8 45954 +a ||| as well as ||| 0.0021254 0.0289876 4.35218e-05 1.36333e-07 2.718 ||| 0-0 ||| 941 45954 +a ||| as well ||| 0.0026738 0.0289876 6.52827e-05 1.61236e-05 2.718 ||| 0-0 ||| 1122 45954 +a ||| as will ||| 0.0769231 0.0289876 2.17609e-05 6.42517e-05 2.718 ||| 0-0 ||| 13 45954 +a ||| as ||| 0.00827223 0.0289876 0.00382992 0.0092985 2.718 ||| 0-0 ||| 21276 45954 +a ||| aside for ||| 0.285714 0.0587253 4.35218e-05 2.61198e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| ask ||| 0.00460829 0.113111 2.17609e-05 0.0005192 2.718 ||| 0-0 ||| 217 45954 +a ||| asked ||| 0.0252101 0.13059 0.000130565 0.0008614 2.718 ||| 0-0 ||| 238 45954 +a ||| asking ||| 0.0212766 0.161491 4.35218e-05 0.0003068 2.718 ||| 0-0 ||| 94 45954 +a ||| aspiring ||| 0.0769231 0.26087 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 13 45954 +a ||| assailing ||| 1 0.333333 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| assist ||| 0.027027 0.340425 4.35218e-05 0.0005664 2.718 ||| 0-0 ||| 74 45954 +a ||| assisted ||| 0.0666667 0.125 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 15 45954 +a ||| assisting in turning ||| 0.25 0.219977 2.17609e-05 1.20084e-09 2.718 ||| 0-0 0-1 ||| 4 45954 +a ||| assisting in ||| 0.25 0.219977 2.17609e-05 9.7313e-06 2.718 ||| 0-0 0-1 ||| 4 45954 +a ||| assisting with ||| 0.25 0.396226 2.17609e-05 9.39831e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| assisting ||| 0.0645161 0.396226 4.35218e-05 0.0002478 2.718 ||| 0-0 ||| 31 45954 +a ||| associated with ||| 0.00454545 0.0330797 2.17609e-05 7.10099e-07 2.718 ||| 0-1 ||| 220 45954 +a ||| at $ ||| 0.0625 0.104507 2.17609e-05 2.02069e-05 2.718 ||| 0-0 0-1 ||| 16 45954 +a ||| at Southern African sites since ||| 1 0.185652 2.17609e-05 1.20164e-19 2.718 ||| 0-0 ||| 1 45954 +a ||| at Southern African sites ||| 1 0.185652 2.17609e-05 1.15654e-15 2.718 ||| 0-0 ||| 1 45954 +a ||| at Southern African ||| 1 0.185652 2.17609e-05 3.55858e-11 2.718 ||| 0-0 ||| 1 45954 +a ||| at Southern ||| 1 0.185652 2.17609e-05 4.984e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| at a cost ||| 0.0625 0.185652 2.17609e-05 2.00311e-07 2.718 ||| 0-0 ||| 16 45954 +a ||| at a higher level ||| 0.25 0.185652 2.17609e-05 4.55307e-11 2.718 ||| 0-0 ||| 4 45954 +a ||| at a higher ||| 0.2 0.185652 2.17609e-05 2.00311e-07 2.718 ||| 0-0 ||| 5 45954 +a ||| at a range ||| 1 0.185652 2.17609e-05 1.66994e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| at a rate ||| 0.0526316 0.185652 2.17609e-05 3.20518e-07 2.718 ||| 0-0 ||| 19 45954 +a ||| at a robust pace ||| 0.5 0.185652 2.17609e-05 1.04269e-12 2.718 ||| 0-0 ||| 2 45954 +a ||| at a robust ||| 0.25 0.185652 2.17609e-05 4.01033e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| at a ||| 0.0281174 0.185652 0.0005005 0.00102829 2.718 ||| 0-0 ||| 818 45954 +a ||| at all ||| 0.0168067 0.185652 8.70436e-05 6.62285e-05 2.718 ||| 0-0 ||| 238 45954 +a ||| at an ||| 0.0078125 0.185652 2.17609e-05 8.84699e-05 2.718 ||| 0-0 ||| 128 45954 +a ||| at building ||| 0.166667 0.185652 2.17609e-05 4.31692e-06 2.718 ||| 0-0 ||| 6 45954 +a ||| at coping ||| 0.5 0.185652 2.17609e-05 3.32267e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| at dating ||| 0.333333 0.185652 2.17609e-05 1.66133e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| at draining ||| 1 0.185652 2.17609e-05 3.32267e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| at each ||| 0.0909091 0.185652 2.17609e-05 1.32779e-05 2.718 ||| 0-0 ||| 11 45954 +a ||| at hand ||| 0.0333333 0.185652 2.17609e-05 1.21175e-05 2.718 ||| 0-0 ||| 30 45954 +a ||| at high ||| 0.047619 0.185652 2.17609e-05 1.21175e-05 2.718 ||| 0-0 ||| 21 45954 +a ||| at him ||| 0.0909091 0.185652 2.17609e-05 1.77609e-05 2.718 ||| 0-0 ||| 11 45954 +a ||| at home in ||| 0.125 0.0437285 2.17609e-05 4.39051e-08 2.718 ||| 0-2 ||| 8 45954 +a ||| at home ||| 0.0033557 0.185652 2.17609e-05 9.62808e-06 2.718 ||| 0-0 ||| 298 45954 +a ||| at independence ||| 0.0833333 0.185652 2.17609e-05 4.984e-07 2.718 ||| 0-0 ||| 12 45954 +a ||| at its back ||| 1 0.185652 2.17609e-05 7.05891e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| at its ||| 0.00662252 0.185652 2.17609e-05 5.07908e-05 2.718 ||| 0-0 ||| 151 45954 +a ||| at long last ||| 0.027027 0.185652 2.17609e-05 5.45329e-09 2.718 ||| 0-0 ||| 37 45954 +a ||| at long ||| 0.111111 0.185652 4.35218e-05 1.90875e-05 2.718 ||| 0-0 ||| 18 45954 +a ||| at odds with ||| 0.0526316 0.185652 2.17609e-05 4.41066e-09 2.718 ||| 0-0 ||| 19 45954 +a ||| at odds ||| 0.0526316 0.185652 2.17609e-05 1.16293e-06 2.718 ||| 0-0 ||| 19 45954 +a ||| at only ||| 0.0833333 0.185652 2.17609e-05 2.77187e-05 2.718 ||| 0-0 ||| 12 45954 +a ||| at over ||| 0.166667 0.185652 2.17609e-05 1.77609e-05 2.718 ||| 0-0 ||| 6 45954 +a ||| at reversing ||| 0.333333 0.152036 2.17609e-05 2.71437e-06 2.718 ||| 0-0 0-1 ||| 3 45954 +a ||| at risk of ||| 0.027027 0.185652 2.17609e-05 1.12138e-07 2.718 ||| 0-0 ||| 37 45954 +a ||| at risk ||| 0.0060241 0.185652 2.17609e-05 4.15078e-06 2.718 ||| 0-0 ||| 166 45954 +a ||| at root , ||| 0.142857 0.185652 2.17609e-05 4.74585e-07 2.718 ||| 0-0 ||| 7 45954 +a ||| at root ||| 0.142857 0.185652 2.17609e-05 2.32331e-06 2.718 ||| 0-0 ||| 7 45954 +a ||| at such ||| 0.0833333 0.185652 2.17609e-05 5.4111e-05 2.718 ||| 0-0 ||| 12 45954 +a ||| at the end ||| 0.00552486 0.185652 2.17609e-05 6.43799e-07 2.718 ||| 0-0 ||| 181 45954 +a ||| at the turn ||| 0.166667 0.185652 2.17609e-05 7.14276e-07 2.718 ||| 0-0 ||| 6 45954 +a ||| at the ||| 0.0877863 0.185652 0.00600601 0.00135794 2.718 ||| 0-0 ||| 3144 45954 +a ||| at their ||| 0.016129 0.185652 2.17609e-05 4.5812e-05 2.718 ||| 0-0 ||| 62 45954 +a ||| at these ||| 0.0588235 0.185652 2.17609e-05 1.95859e-05 2.718 ||| 0-0 ||| 17 45954 +a ||| at unprecedented ||| 1 0.185652 2.17609e-05 6.64534e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| at which America 's ||| 0.5 0.185652 2.17609e-05 5.6834e-10 2.718 ||| 0-0 ||| 2 45954 +a ||| at which America ||| 0.5 0.185652 2.17609e-05 3.64948e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| at which ||| 0.0263158 0.185652 4.35218e-05 3.07066e-05 2.718 ||| 0-0 ||| 76 45954 +a ||| at ||| 0.186753 0.185652 0.0414763 0.025559 2.718 ||| 0-0 ||| 10206 45954 +a ||| attachment on ||| 1 0.0963759 2.17609e-05 3.34108e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| attack ||| 0.00187617 0.004329 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 533 45954 +a ||| attacked ||| 0.0104167 0.118881 2.17609e-05 0.0002006 2.718 ||| 0-0 ||| 96 45954 +a ||| attacking ||| 0.0212766 0.258823 2.17609e-05 0.0002596 2.718 ||| 0-0 ||| 47 45954 +a ||| attacks on ||| 0.0140845 0.0963759 2.17609e-05 1.33643e-06 2.718 ||| 0-1 ||| 71 45954 +a ||| attempt on a ||| 1 0.0963759 2.17609e-05 8.72685e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| attempt on ||| 1 0.0963759 2.17609e-05 2.16913e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| attempt to extricate themselves ||| 0.166667 0.270828 2.17609e-05 1.44607e-13 2.718 ||| 0-1 ||| 6 45954 +a ||| attempt to extricate ||| 0.166667 0.270828 2.17609e-05 1.79569e-10 2.718 ||| 0-1 ||| 6 45954 +a ||| attempt to ||| 0.0153061 0.270828 6.52827e-05 2.76261e-05 2.718 ||| 0-1 ||| 196 45954 +a ||| attempts to ||| 0.00869565 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-1 ||| 115 45954 +a ||| attend regular ||| 0.5 0.405405 2.17609e-05 1.3806e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| attend ||| 0.0877193 0.405405 0.000108804 0.000531 2.718 ||| 0-0 ||| 57 45954 +a ||| attended to ||| 1 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| attended ||| 0.0588235 0.296296 2.17609e-05 0.0001888 2.718 ||| 0-0 ||| 17 45954 +a ||| attending ||| 0.111111 0.3125 2.17609e-05 0.000118 2.718 ||| 0-0 ||| 9 45954 +a ||| attribute in ||| 1 0.0437285 2.17609e-05 2.5526e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| available in ||| 0.0384615 0.0437285 2.17609e-05 1.07131e-05 2.718 ||| 0-1 ||| 26 45954 +a ||| available to ||| 0.0111111 0.270828 2.17609e-05 8.92937e-05 2.718 ||| 0-1 ||| 90 45954 +a ||| available ||| 0.00457666 0.0168421 4.35218e-05 9.44e-05 2.718 ||| 0-0 ||| 437 45954 +a ||| avoid blame ||| 1 0.20915 2.17609e-05 6.61555e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| awarded to ||| 0.333333 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| awarded ||| 0.0243902 0.131148 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 41 45954 +a ||| awards to ||| 1 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| aware of ||| 0.00990099 0.0164489 2.17609e-05 1.12167e-06 2.718 ||| 0-1 ||| 101 45954 +a ||| away , so ||| 0.5 0.0508475 2.17609e-05 2.28136e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| away , ||| 0.1 0.0508475 4.35218e-05 0.000101237 2.718 ||| 0-0 ||| 20 45954 +a ||| away by it ||| 0.5 0.0269646 2.17609e-05 1.65739e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| away by ||| 0.0769231 0.0269646 2.17609e-05 6.22457e-06 2.718 ||| 0-1 ||| 13 45954 +a ||| away from ||| 0.0227273 0.0408799 8.70436e-05 7.56305e-06 2.718 ||| 0-1 ||| 176 45954 +a ||| away poverty ||| 1 0.0508475 2.17609e-05 1.6107e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| away ||| 0.109244 0.0508475 0.000565783 0.0004956 2.718 ||| 0-0 ||| 238 45954 +a ||| back and check one last time at ||| 0.5 0.185652 2.17609e-05 1.66598e-20 2.718 ||| 0-6 ||| 2 45954 +a ||| back at ||| 0.1 0.185652 4.35218e-05 3.55219e-05 2.718 ||| 0-1 ||| 20 45954 +a ||| back from ||| 0.0689655 0.0408799 4.35218e-05 1.13979e-05 2.718 ||| 0-1 ||| 29 45954 +a ||| back in the ||| 0.0769231 0.0437285 2.17609e-05 2.89974e-06 2.718 ||| 0-1 ||| 13 45954 +a ||| back in ||| 0.0133333 0.0437285 2.17609e-05 5.45786e-05 2.718 ||| 0-1 ||| 75 45954 +a ||| back into ||| 0.0677966 0.176821 8.70436e-05 1.55634e-05 2.718 ||| 0-1 ||| 59 45954 +a ||| back of ||| 0.0384615 0.0164489 2.17609e-05 2.99788e-05 2.718 ||| 0-1 ||| 26 45954 +a ||| back on ||| 0.0208333 0.0963759 2.17609e-05 3.57187e-05 2.718 ||| 0-1 ||| 48 45954 +a ||| back onto ||| 0.5 0.220779 2.17609e-05 5.57588e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| back seat when it comes to ||| 0.5 0.270828 2.17609e-05 9.65522e-17 2.718 ||| 0-5 ||| 2 45954 +a ||| back to even ||| 1 0.270828 2.17609e-05 4.13607e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| back to ||| 0.0843373 0.270828 0.000304652 0.000454914 2.718 ||| 0-1 ||| 166 45954 +a ||| back ||| 0.0156472 0.0671913 0.00023937 0.0013098 2.718 ||| 0-0 ||| 703 45954 +a ||| backer of ||| 0.333333 0.0164489 2.17609e-05 1.40209e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| backing ||| 0.0165746 0.0340136 6.52827e-05 5.9e-05 2.718 ||| 0-0 ||| 181 45954 +a ||| backward to ||| 1 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| bad news for ||| 0.0666667 0.0587253 2.17609e-05 4.04962e-10 2.718 ||| 0-2 ||| 15 45954 +a ||| bad publicity surrounding the ||| 0.5 0.15625 2.17609e-05 5.75498e-14 2.718 ||| 0-2 ||| 2 45954 +a ||| bad publicity surrounding ||| 0.5 0.15625 2.17609e-05 1.0832e-12 2.718 ||| 0-2 ||| 2 45954 +a ||| bad to ||| 0.2 0.270828 2.17609e-05 6.16349e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| bail out ||| 0.0172414 0.0840356 2.17609e-05 5.35366e-08 2.718 ||| 0-1 ||| 58 45954 +a ||| ballots for ||| 0.333333 0.0587253 2.17609e-05 4.61354e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| bandits ||| 0.0833333 0.166667 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 12 45954 +a ||| bare to ||| 0.25 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| barely ||| 0.00613497 0.0116959 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 163 45954 +a ||| barring ||| 0.027027 0.145833 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 37 45954 +a ||| based on ||| 0.00106724 0.0963759 2.17609e-05 4.17378e-06 2.718 ||| 0-1 ||| 937 45954 +a ||| basis of ||| 0.00595238 0.0164489 2.17609e-05 8.26585e-06 2.718 ||| 0-1 ||| 168 45954 +a ||| be a rule of law that protects ||| 1 0.291667 2.17609e-05 5.8172e-19 2.718 ||| 0-6 ||| 1 45954 +a ||| be able to recall ||| 1 0.270828 2.17609e-05 4.55662e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| be able to ||| 0.031746 0.270828 8.70436e-05 1.40204e-06 2.718 ||| 0-2 ||| 126 45954 +a ||| be brought forward ||| 1 0.0761347 2.17609e-05 2.42336e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| be brought ||| 0.0357143 0.0761347 2.17609e-05 6.32401e-06 2.718 ||| 0-1 ||| 28 45954 +a ||| be closed ||| 0.0769231 0.0233645 2.17609e-05 6.08078e-07 2.718 ||| 0-1 ||| 13 45954 +a ||| be dumped back onto ||| 1 0.220779 2.17609e-05 7.47074e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| be encouraged , ||| 0.166667 0.188679 2.17609e-05 9.93699e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| be encouraged ||| 0.0666667 0.188679 2.17609e-05 4.86462e-06 2.718 ||| 0-1 ||| 15 45954 +a ||| be faced ||| 0.5 0.100457 2.17609e-05 5.35108e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| be followed by ||| 0.0526316 0.0855784 2.17609e-05 4.44832e-08 2.718 ||| 0-1 ||| 19 45954 +a ||| be followed ||| 0.0625 0.0855784 2.17609e-05 6.56724e-06 2.718 ||| 0-1 ||| 16 45954 +a ||| be get to ||| 1 0.270828 2.17609e-05 2.65091e-06 2.718 ||| 0-2 ||| 1 45954 +a ||| be going to ||| 0.2 0.270828 2.17609e-05 1.44589e-06 2.718 ||| 0-2 ||| 5 45954 +a ||| be in ||| 0.00900901 0.0437285 2.17609e-05 0.000404741 2.718 ||| 0-1 ||| 111 45954 +a ||| be inflated away ||| 0.5 0.0508475 2.17609e-05 6.64021e-11 2.718 ||| 0-2 ||| 2 45954 +a ||| be jailed ||| 0.333333 0.185185 2.17609e-05 1.21616e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| be kept safe ||| 1 0.11254 2.17609e-05 6.0826e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| be kept ||| 0.0588235 0.11254 2.17609e-05 4.25654e-06 2.718 ||| 0-1 ||| 17 45954 +a ||| be killed ||| 0.125 0.200993 2.17609e-05 9.85086e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| be led to ||| 0.5 0.270828 2.17609e-05 8.76441e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| be made to ||| 0.0666667 0.270828 2.17609e-05 3.72437e-06 2.718 ||| 0-2 ||| 15 45954 +a ||| be on the ||| 0.136364 0.0963759 6.52827e-05 1.4073e-05 2.718 ||| 0-1 ||| 22 45954 +a ||| be on ||| 0.102041 0.0963759 0.000108804 0.000264881 2.718 ||| 0-1 ||| 49 45954 +a ||| be placed ||| 0.0909091 0.0402299 2.17609e-05 8.51309e-07 2.718 ||| 0-1 ||| 11 45954 +a ||| be relied upon to keep ||| 0.2 0.270828 2.17609e-05 5.46101e-15 2.718 ||| 0-3 ||| 5 45954 +a ||| be relied upon to ||| 0.2 0.270828 2.17609e-05 2.33576e-11 2.718 ||| 0-3 ||| 5 45954 +a ||| be replaced by ||| 0.1 0.172414 2.17609e-05 3.29505e-08 2.718 ||| 0-1 ||| 10 45954 +a ||| be replaced ||| 0.03125 0.172414 2.17609e-05 4.86462e-06 2.718 ||| 0-1 ||| 32 45954 +a ||| be rescued ||| 0.2 0.176471 2.17609e-05 7.29693e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| be returned to ||| 0.333333 0.270828 2.17609e-05 1.31567e-07 2.718 ||| 0-2 ||| 3 45954 +a ||| be run in ||| 1 0.0437285 2.17609e-05 1.70841e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| be served by ||| 1 0.0587498 2.17609e-05 1.80591e-08 2.718 ||| 0-1 0-2 ||| 1 45954 +a ||| be served in ||| 1 0.0437285 2.17609e-05 4.46834e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| be something closer to widespread hand-washing ||| 1 0.270828 2.17609e-05 7.78007e-20 2.718 ||| 0-3 ||| 1 45954 +a ||| be something closer to widespread ||| 1 0.270828 2.17609e-05 1.19693e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| be something closer to ||| 1 0.270828 2.17609e-05 1.22888e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| be spent at home in ||| 1 0.0437285 2.17609e-05 3.81913e-14 2.718 ||| 0-4 ||| 1 45954 +a ||| be surprised ||| 0.0666667 0.107143 2.17609e-05 1.45939e-06 2.718 ||| 0-1 ||| 15 45954 +a ||| be swept away by it ||| 0.5 0.0269646 2.17609e-05 1.33066e-13 2.718 ||| 0-3 ||| 2 45954 +a ||| be swept away by ||| 0.5 0.0269646 2.17609e-05 4.99751e-12 2.718 ||| 0-3 ||| 2 45954 +a ||| be taken away ||| 1 0.0508475 2.17609e-05 2.48803e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| be to ||| 0.0107527 0.270828 2.17609e-05 0.00337352 2.718 ||| 0-1 ||| 93 45954 +a ||| be urged to ||| 1 0.294706 2.17609e-05 1.43307e-06 2.718 ||| 0-1 0-2 ||| 1 45954 +a ||| be welcomed by ||| 1 0.0269646 2.17609e-05 1.35652e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| bear to ||| 0.5 0.270828 2.17609e-05 4.89021e-05 2.718 ||| 0-1 ||| 2 45954 +a ||| bear ||| 0.0108696 0.0070175 4.35218e-05 2.36e-05 2.718 ||| 0-0 ||| 184 45954 +a ||| bearish ||| 0.0454545 0.25 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 22 45954 +a ||| beat ||| 0.0714286 0.315068 4.35218e-05 0.0002714 2.718 ||| 0-0 ||| 28 45954 +a ||| beaten to ||| 0.333333 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| beating ||| 0.037037 0.233333 2.17609e-05 0.0001652 2.718 ||| 0-0 ||| 27 45954 +a ||| became Turkey ||| 0.166667 0.0194524 2.17609e-05 4.96697e-08 2.718 ||| 0-0 ||| 6 45954 +a ||| became ||| 0.00126422 0.0194524 2.17609e-05 0.0003186 2.718 ||| 0-0 ||| 791 45954 +a ||| because of ||| 0.00376648 0.0070129 4.35218e-05 1.02013e-05 2.718 ||| 0-0 ||| 531 45954 +a ||| because they represent ||| 0.333333 0.0070129 2.17609e-05 1.21267e-10 2.718 ||| 0-0 ||| 3 45954 +a ||| because they ||| 0.00549451 0.0070129 2.17609e-05 2.33206e-06 2.718 ||| 0-0 ||| 182 45954 +a ||| because ||| 0.00160514 0.0070129 0.000195848 0.0003776 2.718 ||| 0-0 ||| 5607 45954 +a ||| become in ||| 0.5 0.0437285 2.17609e-05 2.65235e-05 2.718 ||| 0-1 ||| 2 45954 +a ||| become linked to ||| 0.333333 0.270828 2.17609e-05 1.00589e-08 2.718 ||| 0-2 ||| 3 45954 +a ||| become operational ||| 0.25 0.0754467 2.17609e-05 5.24628e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| become the lever of ||| 0.5 0.0164489 2.17609e-05 5.03122e-12 2.718 ||| 0-3 ||| 2 45954 +a ||| become ||| 0.00349406 0.0754467 0.000108804 0.0040356 2.718 ||| 0-0 ||| 1431 45954 +a ||| been a strong ||| 0.25 0.0009647 2.17609e-05 2.6601e-10 2.718 ||| 0-1 ||| 4 45954 +a ||| been a ||| 0.0041841 0.0009647 2.17609e-05 1.28012e-06 2.718 ||| 0-1 ||| 239 45954 +a ||| been forced on ||| 0.5 0.0963759 2.17609e-05 5.57197e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| been in ||| 0.0116279 0.0437285 2.17609e-05 6.5543e-05 2.718 ||| 0-1 ||| 86 45954 +a ||| been reduced to ||| 0.111111 0.270828 2.17609e-05 3.9006e-08 2.718 ||| 0-2 ||| 9 45954 +a ||| been scheduled to ||| 1 0.270828 2.17609e-05 2.13058e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| been to ||| 0.04 0.270828 4.35218e-05 0.000546302 2.718 ||| 0-1 ||| 50 45954 +a ||| befitting ||| 0.111111 0.333333 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 9 45954 +a ||| before ||| 0.00116925 0.0031932 8.70436e-05 7.08e-05 2.718 ||| 0-0 ||| 3421 45954 +a ||| began with putting ||| 0.25 0.133574 2.17609e-05 1.28994e-10 2.718 ||| 0-2 ||| 4 45954 +a ||| began ||| 0.00664894 0.0815789 0.000108804 0.0007316 2.718 ||| 0-0 ||| 752 45954 +a ||| begin in ||| 0.2 0.0437285 2.17609e-05 4.08024e-06 2.718 ||| 0-1 ||| 5 45954 +a ||| begin to glimpse the ||| 1 0.270828 2.17609e-05 2.34894e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| begin to glimpse ||| 1 0.270828 2.17609e-05 4.42115e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| begin to ||| 0.00704225 0.270828 2.17609e-05 3.40089e-05 2.718 ||| 0-1 ||| 142 45954 +a ||| begin ||| 0.00261097 0.0065934 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 383 45954 +a ||| beginning of his administration ||| 0.25 0.0164489 2.17609e-05 1.85529e-13 2.718 ||| 0-1 ||| 4 45954 +a ||| beginning of his ||| 0.0909091 0.0164489 2.17609e-05 1.68052e-09 2.718 ||| 0-1 ||| 11 45954 +a ||| beginning of ||| 0.00662252 0.0164489 2.17609e-05 1.68035e-06 2.718 ||| 0-1 ||| 151 45954 +a ||| beginning ||| 0.00226757 0.0171306 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 441 45954 +a ||| begun showing ||| 0.5 0.042654 2.17609e-05 1.31051e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| begun ||| 0.00526316 0.042654 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 190 45954 +a ||| behind schedule ||| 0.142857 0.0688836 2.17609e-05 8.8972e-09 2.718 ||| 0-0 ||| 7 45954 +a ||| behind ||| 0.0368794 0.0688836 0.000565783 0.0006844 2.718 ||| 0-0 ||| 705 45954 +a ||| being able to ||| 0.0384615 0.270828 2.17609e-05 2.04965e-07 2.718 ||| 0-2 ||| 26 45954 +a ||| being allowed to ||| 0.25 0.270828 2.17609e-05 8.00921e-08 2.718 ||| 0-2 ||| 4 45954 +a ||| being carried to ||| 0.5 0.270828 2.17609e-05 1.08894e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| being devoted to ||| 0.5 0.270828 2.17609e-05 2.24396e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| being drawn to ||| 0.5 0.270828 2.17609e-05 7.68864e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| being met , ||| 0.5 0.0664962 2.17609e-05 9.44252e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| being met ||| 0.166667 0.0664962 2.17609e-05 4.62256e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| being pursued ||| 0.25 0.0983607 2.17609e-05 3.20023e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| being replaced ||| 0.0714286 0.172414 2.17609e-05 7.11162e-07 2.718 ||| 0-1 ||| 14 45954 +a ||| being subjected to ||| 0.25 0.270828 2.17609e-05 9.61697e-09 2.718 ||| 0-2 ||| 4 45954 +a ||| being swept away , ||| 0.5 0.0508475 2.17609e-05 1.18823e-11 2.718 ||| 0-2 ||| 2 45954 +a ||| being swept away ||| 0.166667 0.0508475 2.17609e-05 5.81695e-11 2.718 ||| 0-2 ||| 6 45954 +a ||| being ||| 0.000603136 0.00196 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 1658 45954 +a ||| belong running ||| 0.0833333 0.0126582 2.17609e-05 3.06564e-09 2.718 ||| 0-0 ||| 12 45954 +a ||| belong ||| 0.0140845 0.0126582 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 71 45954 +a ||| benchmark for ||| 0.25 0.0587253 2.17609e-05 3.0757e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| benefit from ||| 0.00645161 0.0408799 2.17609e-05 7.98787e-07 2.718 ||| 0-1 ||| 155 45954 +a ||| benefit ||| 0.00544959 0.128988 4.35218e-05 0.0010974 2.718 ||| 0-0 ||| 367 45954 +a ||| benefiting ||| 0.0377358 0.213115 4.35218e-05 0.0003068 2.718 ||| 0-0 ||| 53 45954 +a ||| bent on herding ||| 1 0.0963759 2.17609e-05 3.25755e-12 2.718 ||| 0-1 ||| 1 45954 +a ||| bent on ||| 0.0833333 0.0963759 4.35218e-05 5.01162e-07 2.718 ||| 0-1 ||| 24 45954 +a ||| best interest of ||| 1 0.0164489 2.17609e-05 1.32611e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| bets on ||| 0.25 0.0963759 4.35218e-05 1.16938e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| bid for ||| 0.030303 0.0587253 2.17609e-05 1.84305e-06 2.718 ||| 0-1 ||| 33 45954 +a ||| bid to ||| 0.0454545 0.270828 2.17609e-05 2.54985e-05 2.718 ||| 0-1 ||| 22 45954 +a ||| big to ||| 0.0172414 0.270828 2.17609e-05 7.22729e-05 2.718 ||| 0-1 ||| 58 45954 +a ||| bill to ||| 0.333333 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-1 ||| 3 45954 +a ||| billion to ||| 0.06 0.270828 6.52827e-05 2.97537e-05 2.718 ||| 0-1 ||| 50 45954 +a ||| binds ||| 0.25 0.444444 4.35218e-05 9.44e-05 2.718 ||| 0-0 ||| 8 45954 +a ||| birth to ||| 0.0434783 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-1 ||| 23 45954 +a ||| blame on local ||| 1 0.0963759 2.17609e-05 1.75707e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| blame on ||| 0.333333 0.0963759 2.17609e-05 1.00232e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| blame ||| 0.0165975 0.20915 8.70436e-05 0.0011328 2.718 ||| 0-0 ||| 241 45954 +a ||| blamed ||| 0.0291262 0.233129 6.52827e-05 0.0004484 2.718 ||| 0-0 ||| 103 45954 +a ||| blow to ||| 0.04 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-1 ||| 25 45954 +a ||| blowing up ||| 0.1 0.0268991 2.17609e-05 2.48508e-08 2.718 ||| 0-1 ||| 10 45954 +a ||| blown up ||| 0.166667 0.0268991 2.17609e-05 3.31344e-08 2.718 ||| 0-1 ||| 6 45954 +a ||| boats ||| 0.04 0.0454545 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 25 45954 +a ||| boils down to ||| 0.0909091 0.270828 2.17609e-05 6.2177e-09 2.718 ||| 0-2 ||| 11 45954 +a ||| boost to ||| 0.0322581 0.270828 2.17609e-05 1.70208e-05 2.718 ||| 0-1 ||| 31 45954 +a ||| borders to everyone from Kenya . ||| 1 0.0408799 2.17609e-05 4.77842e-20 2.718 ||| 0-3 ||| 1 45954 +a ||| borders to everyone from Kenya ||| 1 0.0408799 2.17609e-05 1.03926e-17 2.718 ||| 0-3 ||| 1 45954 +a ||| borders to everyone from ||| 1 0.0408799 2.17609e-05 1.59886e-12 2.718 ||| 0-3 ||| 1 45954 +a ||| borrowers ||| 0.00869565 0.0320513 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 115 45954 +a ||| both at ||| 0.037037 0.185652 2.17609e-05 4.36548e-05 2.718 ||| 0-1 ||| 27 45954 +a ||| both the ||| 0.00420168 0.0275591 2.17609e-05 6.14391e-05 2.718 ||| 0-0 ||| 238 45954 +a ||| both within countries ||| 1 0.0216675 2.17609e-05 2.1073e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| both within ||| 0.0588235 0.0216675 2.17609e-05 9.27102e-07 2.718 ||| 0-1 ||| 17 45954 +a ||| both ||| 0.00429043 0.0275591 0.000282892 0.0011564 2.718 ||| 0-0 ||| 3030 45954 +a ||| bound to come to a ||| 1 0.270828 2.17609e-05 1.03866e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| bound to come to ||| 1 0.270828 2.17609e-05 2.58168e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| bound to ||| 0.00925926 0.270828 2.17609e-05 2.54985e-05 2.718 ||| 0-1 ||| 108 45954 +a ||| breaks encouraging ||| 1 0.125 2.17609e-05 9.5108e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| bright ||| 0.0454545 0.0465116 4.35218e-05 2.36e-05 2.718 ||| 0-0 ||| 44 45954 +a ||| bring back to ||| 1 0.270828 2.17609e-05 2.48155e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| bring for ||| 1 0.0587253 2.17609e-05 1.29061e-05 2.718 ||| 0-1 ||| 1 45954 +a ||| bring in ||| 0.0526316 0.0437285 2.17609e-05 2.14222e-05 2.718 ||| 0-1 ||| 19 45954 +a ||| bring them to ||| 1 0.270828 2.17609e-05 3.49039e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| bring to ||| 0.0909091 0.270828 2.17609e-05 0.000178555 2.718 ||| 0-1 ||| 11 45954 +a ||| bring ||| 0.0203046 0.0345711 0.000174087 0.0003186 2.718 ||| 0-0 ||| 394 45954 +a ||| bringing about ||| 0.0357143 0.0864553 2.17609e-05 4.29898e-07 2.718 ||| 0-0 ||| 28 45954 +a ||| bringing down ||| 0.0833333 0.0864553 2.17609e-05 5.17265e-07 2.718 ||| 0-0 ||| 12 45954 +a ||| bringing up ||| 0.333333 0.0864553 2.17609e-05 1.10579e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| bringing ||| 0.0275229 0.0864553 0.000130565 0.000354 2.718 ||| 0-0 ||| 218 45954 +a ||| brings to mind ||| 0.333333 0.270828 2.17609e-05 7.03938e-09 2.718 ||| 0-1 ||| 3 45954 +a ||| brings to ||| 0.111111 0.270828 2.17609e-05 3.18813e-05 2.718 ||| 0-1 ||| 9 45954 +a ||| broadcasts urging ||| 0.5 0.313433 2.17609e-05 1.6107e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| broken the back of ||| 0.333333 0.0164489 2.17609e-05 1.24076e-10 2.718 ||| 0-3 ||| 3 45954 +a ||| brought down ||| 0.037037 0.0761347 2.17609e-05 8.96592e-07 2.718 ||| 0-0 ||| 27 45954 +a ||| brought forward ||| 0.25 0.0761347 2.17609e-05 2.35132e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| brought home to me ||| 1 0.270828 2.17609e-05 8.19228e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| brought home to ||| 1 0.270828 2.17609e-05 6.00607e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| brought to ||| 0.0645161 0.270828 8.70436e-05 0.000159439 2.718 ||| 0-1 ||| 62 45954 +a ||| brought ||| 0.016 0.0761347 0.000130565 0.0006136 2.718 ||| 0-0 ||| 375 45954 +a ||| buck to ||| 0.5 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| buckle under to severe ||| 1 0.270828 2.17609e-05 6.13307e-14 2.718 ||| 0-2 ||| 1 45954 +a ||| buckle under to ||| 1 0.270828 2.17609e-05 1.05018e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| building , ||| 0.1 0.0176991 2.17609e-05 2.89247e-05 2.718 ||| 0-0 ||| 10 45954 +a ||| building ||| 0.00178891 0.0176991 2.17609e-05 0.0001416 2.718 ||| 0-0 ||| 559 45954 +a ||| burden ||| 0.00263158 0.0030211 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 380 45954 +a ||| business of ||| 0.111111 0.0164489 4.35218e-05 5.46383e-06 2.718 ||| 0-1 ||| 18 45954 +a ||| bust by ||| 0.333333 0.0269646 2.17609e-05 1.31619e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| but decentralized market-based activity appears likelier to ||| 1 0.270828 2.17609e-05 1.65664e-27 2.718 ||| 0-6 ||| 1 45954 +a ||| but then leaves it ||| 1 0.144385 2.17609e-05 8.62966e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| but then leaves ||| 1 0.144385 2.17609e-05 3.241e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| but to ||| 0.01 0.270828 4.35218e-05 0.000382641 2.718 ||| 0-1 ||| 200 45954 +a ||| but ||| 4.66788e-05 0.0001143 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 21423 45954 +a ||| buying ||| 0.00507614 0.0055249 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 197 45954 +a ||| by Francis ||| 1 0.0269646 2.17609e-05 4.3873e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| by US officials ||| 0.333333 0.0269646 2.17609e-05 2.82082e-10 2.718 ||| 0-0 ||| 3 45954 +a ||| by US ||| 0.0666667 0.0269646 2.17609e-05 8.67944e-06 2.718 ||| 0-0 ||| 15 45954 +a ||| by a ||| 0.00106952 0.0269646 2.17609e-05 0.000271554 2.718 ||| 0-0 ||| 935 45954 +a ||| by achieving it ||| 1 0.0269646 2.17609e-05 4.67274e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| by achieving ||| 0.2 0.0269646 2.17609e-05 1.75492e-07 2.718 ||| 0-0 ||| 5 45954 +a ||| by and ||| 0.0344828 0.0269646 2.17609e-05 5.66779e-05 2.718 ||| 0-0 ||| 29 45954 +a ||| by contrast , ||| 0.00263852 0.0269646 2.17609e-05 3.58479e-08 2.718 ||| 0-0 ||| 379 45954 +a ||| by contrast ||| 0.00277778 0.0269646 2.17609e-05 1.75492e-07 2.718 ||| 0-0 ||| 360 45954 +a ||| by efforts at ||| 0.5 0.185652 2.17609e-05 2.81153e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| by following through on plans to ||| 0.25 0.270828 2.17609e-05 2.00862e-17 2.718 ||| 0-5 ||| 4 45954 +a ||| by hook or by ||| 1 0.0269646 2.17609e-05 1.6675e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| by hook or ||| 1 0.0269646 2.17609e-05 2.4618e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| by hook ||| 1 0.0269646 2.17609e-05 1.75492e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| by it ||| 0.0909091 0.0269646 2.17609e-05 0.000179721 2.718 ||| 0-0 ||| 11 45954 +a ||| by on ||| 0.5 0.0616702 2.17609e-05 0.000173471 2.718 ||| 0-0 0-1 ||| 2 45954 +a ||| by prompting a new fact-finding mission to ||| 1 0.270828 2.17609e-05 2.15735e-22 2.718 ||| 0-6 ||| 1 45954 +a ||| by saying ||| 0.0384615 0.0269646 2.17609e-05 5.69675e-07 2.718 ||| 0-0 ||| 26 45954 +a ||| by side ||| 0.0769231 0.0269646 2.17609e-05 2.01614e-06 2.718 ||| 0-0 ||| 13 45954 +a ||| by the low-skilled ||| 1 0.0269646 2.17609e-05 4.66192e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| by the ||| 0.00519931 0.0269646 0.000391696 0.000358609 2.718 ||| 0-0 ||| 3462 45954 +a ||| by undermining ||| 0.333333 0.0269646 2.17609e-05 8.77461e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| by well ||| 1 0.0269646 2.17609e-05 1.1704e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| by ||| 0.0164856 0.0269646 0.00657179 0.0067497 2.718 ||| 0-0 ||| 18319 45954 +a ||| bypass ||| 0.04 0.297297 2.17609e-05 0.0001298 2.718 ||| 0-0 ||| 25 45954 +a ||| call for ||| 0.00775194 0.0587253 2.17609e-05 5.83909e-06 2.718 ||| 0-1 ||| 129 45954 +a ||| call to ||| 0.030303 0.270828 2.17609e-05 8.07833e-05 2.718 ||| 0-1 ||| 33 45954 +a ||| call ||| 0.00714286 0.0723077 6.52827e-05 0.0005546 2.718 ||| 0-0 ||| 420 45954 +a ||| called in ||| 0.111111 0.0437285 2.17609e-05 1.27512e-05 2.718 ||| 0-1 ||| 9 45954 +a ||| called upon ||| 0.142857 0.111969 4.35218e-05 2.22225e-07 2.718 ||| 0-1 ||| 14 45954 +a ||| called ||| 0.00160256 0.0266809 2.17609e-05 0.000295 2.718 ||| 0-0 ||| 624 45954 +a ||| calls for ||| 0.00621118 0.0587253 2.17609e-05 1.99684e-06 2.718 ||| 0-1 ||| 161 45954 +a ||| calls ||| 0.00323625 0.0266075 2.17609e-05 0.0001416 2.718 ||| 0-0 ||| 309 45954 +a ||| came back to ||| 0.333333 0.270828 2.17609e-05 1.89062e-07 2.718 ||| 0-2 ||| 3 45954 +a ||| came during ||| 0.142857 0.0034443 2.17609e-05 2.94245e-08 2.718 ||| 0-1 ||| 7 45954 +a ||| came into being ||| 0.111111 0.176821 2.17609e-05 7.0122e-09 2.718 ||| 0-1 ||| 9 45954 +a ||| came into ||| 0.0434783 0.176821 2.17609e-05 4.65401e-06 2.718 ||| 0-1 ||| 23 45954 +a ||| came to ||| 0.0117647 0.270828 4.35218e-05 0.000136035 2.718 ||| 0-1 ||| 170 45954 +a ||| came up to ||| 0.5 0.270828 2.17609e-05 4.24934e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| came with ||| 0.0434783 0.0330797 2.17609e-05 3.49665e-06 2.718 ||| 0-1 ||| 23 45954 +a ||| can , perhaps , begin to glimpse ||| 1 0.270828 2.17609e-05 3.361e-18 2.718 ||| 0-5 ||| 1 45954 +a ||| can , perhaps , begin to ||| 1 0.270828 2.17609e-05 2.58539e-13 2.718 ||| 0-5 ||| 1 45954 +a ||| can be inflated away ||| 1 0.0508475 2.17609e-05 1.16436e-13 2.718 ||| 0-3 ||| 1 45954 +a ||| can be jailed ||| 0.333333 0.185185 2.17609e-05 2.13253e-09 2.718 ||| 0-2 ||| 3 45954 +a ||| can be kept safe ||| 1 0.11254 2.17609e-05 1.06658e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| can be kept ||| 0.166667 0.11254 2.17609e-05 7.46385e-09 2.718 ||| 0-2 ||| 6 45954 +a ||| can be rescued ||| 1 0.176471 2.17609e-05 1.27952e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| can place his trust in the near ||| 1 0.0437285 2.17609e-05 1.41438e-20 2.718 ||| 0-4 ||| 1 45954 +a ||| can place his trust in the ||| 1 0.0437285 2.17609e-05 2.71996e-16 2.718 ||| 0-4 ||| 1 45954 +a ||| can place his trust in ||| 1 0.0437285 2.17609e-05 5.11948e-15 2.718 ||| 0-4 ||| 1 45954 +a ||| candidates ||| 0.00278552 0.0206718 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 359 45954 +a ||| cannot afford to ||| 0.0192308 0.270828 2.17609e-05 3.64373e-09 2.718 ||| 0-2 ||| 52 45954 +a ||| cannot stand up to comparison with America ||| 0.5 0.270828 2.17609e-05 2.44613e-21 2.718 ||| 0-3 ||| 2 45954 +a ||| cannot stand up to comparison with ||| 0.5 0.270828 2.17609e-05 2.05817e-18 2.718 ||| 0-3 ||| 2 45954 +a ||| cannot stand up to comparison ||| 0.5 0.270828 2.17609e-05 5.42665e-16 2.718 ||| 0-3 ||| 2 45954 +a ||| cannot stand up to ||| 0.5 0.270828 2.17609e-05 4.17435e-11 2.718 ||| 0-3 ||| 2 45954 +a ||| capital- ||| 1 0.5 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| captured ||| 0.0217391 0.0652174 4.35218e-05 7.08e-05 2.718 ||| 0-0 ||| 92 45954 +a ||| cards at ||| 1 0.185652 2.17609e-05 1.16293e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| care ||| 0.00179211 0.0305556 2.17609e-05 0.0002596 2.718 ||| 0-0 ||| 558 45954 +a ||| cares to ||| 0.333333 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| carried out in a ||| 0.5 0.0437285 2.17609e-05 1.54737e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| carried out in ||| 0.0588235 0.0437285 2.17609e-05 3.84611e-08 2.718 ||| 0-2 ||| 17 45954 +a ||| carried out ||| 0.0108696 0.0840356 2.17609e-05 9.09299e-07 2.718 ||| 0-1 ||| 92 45954 +a ||| carried to ||| 0.5 0.270828 2.17609e-05 7.22729e-05 2.718 ||| 0-1 ||| 2 45954 +a ||| case of cutting off one 's nose ||| 1 0.0164489 2.17609e-05 2.73448e-22 2.718 ||| 0-1 ||| 1 45954 +a ||| case of cutting off one 's ||| 1 0.0164489 2.17609e-05 4.2069e-17 2.718 ||| 0-1 ||| 1 45954 +a ||| case of cutting off one ||| 1 0.0164489 2.17609e-05 2.70137e-15 2.718 ||| 0-1 ||| 1 45954 +a ||| case of cutting off ||| 1 0.0164489 2.17609e-05 6.71983e-13 2.718 ||| 0-1 ||| 1 45954 +a ||| case of cutting ||| 1 0.0164489 2.17609e-05 5.84587e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| case of ||| 0.0034965 0.0164489 2.17609e-05 1.49894e-05 2.718 ||| 0-1 ||| 286 45954 +a ||| cases in ||| 0.0909091 0.0437285 2.17609e-05 1.53156e-06 2.718 ||| 0-1 ||| 11 45954 +a ||| cast of ||| 0.25 0.0164489 2.17609e-05 2.5216e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| cast their ballots for ||| 0.5 0.0587253 2.17609e-05 9.66683e-14 2.718 ||| 0-3 ||| 2 45954 +a ||| cast ||| 0.0175439 0.0294118 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 57 45954 +a ||| casualties by ||| 1 0.0269646 2.17609e-05 8.77461e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| cattle ||| 0.037037 0.0769231 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 27 45954 +a ||| caught in ||| 0.0384615 0.0437285 2.17609e-05 3.31446e-06 2.718 ||| 0-1 ||| 26 45954 +a ||| caught on ||| 0.333333 0.0963759 2.17609e-05 2.16913e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| caught them in ||| 1 0.0437285 2.17609e-05 6.4791e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| caught ||| 0.00806452 0.0245399 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 124 45954 +a ||| celebrated ||| 0.025641 0.0612245 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 39 45954 +a ||| cells to ||| 0.142857 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| certain to see ||| 1 0.270828 2.17609e-05 3.93415e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| certain to ||| 0.025641 0.270828 2.17609e-05 6.37625e-05 2.718 ||| 0-1 ||| 39 45954 +a ||| chain from ||| 0.25 0.0408799 2.17609e-05 2.13229e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| challenge to ||| 0.0454545 0.270828 4.35218e-05 4.03917e-05 2.718 ||| 0-1 ||| 44 45954 +a ||| challenged by ||| 0.111111 0.12963 2.17609e-05 1.11898e-06 2.718 ||| 0-0 ||| 9 45954 +a ||| challenged ||| 0.0235294 0.12963 4.35218e-05 0.0001652 2.718 ||| 0-0 ||| 85 45954 +a ||| challenges to ||| 0.0285714 0.270828 2.17609e-05 2.12433e-05 2.718 ||| 0-1 ||| 35 45954 +a ||| challenging ||| 0.0111111 0.118421 2.17609e-05 0.0002124 2.718 ||| 0-0 ||| 90 45954 +a ||| changing -- ||| 0.2 0.0038462 2.17609e-05 5.93139e-08 2.718 ||| 0-0 ||| 5 45954 +a ||| changing ||| 0.00321543 0.0038462 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 311 45954 +a ||| charged ||| 0.0172414 0.0930233 2.17609e-05 0.0001416 2.718 ||| 0-0 ||| 58 45954 +a ||| charges of working to ||| 1 0.270828 2.17609e-05 1.11872e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| charges that had sent him to ||| 0.5 0.270828 2.17609e-05 1.20232e-17 2.718 ||| 0-5 ||| 2 45954 +a ||| chase out ||| 1 0.117647 2.17609e-05 1.0468e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| chase ||| 0.111111 0.117647 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 9 45954 +a ||| check one last time at ||| 0.5 0.185652 2.17609e-05 1.42754e-15 2.718 ||| 0-4 ||| 2 45954 +a ||| choke ||| 0.0333333 0.25 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 30 45954 +a ||| chose ||| 0.0126582 0.0514286 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 79 45954 +a ||| chosen a ||| 0.25 0.0512821 2.17609e-05 3.7979e-06 2.718 ||| 0-0 ||| 4 45954 +a ||| chosen ||| 0.00787402 0.0512821 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 127 45954 +a ||| chunk of ||| 0.05 0.0164489 2.17609e-05 2.80418e-07 2.718 ||| 0-1 ||| 20 45954 +a ||| circulated to ||| 0.5 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| claim in ||| 0.2 0.0437285 2.17609e-05 1.12197e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| claim them ||| 0.333333 0.0011539 2.17609e-05 1.68563e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| claim to the ||| 0.2 0.270828 2.17609e-05 4.96848e-06 2.718 ||| 0-1 ||| 5 45954 +a ||| claim to ||| 0.0138889 0.270828 2.17609e-05 9.35162e-05 2.718 ||| 0-1 ||| 72 45954 +a ||| claims for ||| 0.125 0.0587253 2.17609e-05 2.61198e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| claims to ||| 0.0238095 0.270828 2.17609e-05 3.61365e-05 2.718 ||| 0-1 ||| 42 45954 +a ||| classify ||| 0.333333 0.25 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 3 45954 +a ||| clear on ||| 0.142857 0.0963759 2.17609e-05 6.0088e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| clear path to ||| 0.333333 0.270828 2.17609e-05 9.94101e-09 2.718 ||| 0-2 ||| 3 45954 +a ||| close , ||| 0.111111 0.004491 2.17609e-05 7.23118e-06 2.718 ||| 0-0 ||| 9 45954 +a ||| close call ||| 1 0.0723077 2.17609e-05 1.4769e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| close to the ||| 0.0166667 0.270828 2.17609e-05 4.6311e-06 2.718 ||| 0-1 ||| 60 45954 +a ||| close to ||| 0.0248963 0.270828 0.000130565 8.71661e-05 2.718 ||| 0-1 ||| 241 45954 +a ||| close ||| 0.00348432 0.004491 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 574 45954 +a ||| closed ||| 0.0160428 0.0233645 6.52827e-05 5.9e-05 2.718 ||| 0-0 ||| 187 45954 +a ||| closely associated with ||| 0.125 0.0330797 2.17609e-05 6.4548e-11 2.718 ||| 0-2 ||| 8 45954 +a ||| closely resembles ||| 0.1 0.305085 2.17609e-05 3.86143e-08 2.718 ||| 0-1 ||| 10 45954 +a ||| closer to each ||| 0.5 0.270828 2.17609e-05 2.98088e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| closer to widespread hand-washing ||| 1 0.270828 2.17609e-05 3.63271e-14 2.718 ||| 0-1 ||| 1 45954 +a ||| closer to widespread ||| 1 0.270828 2.17609e-05 5.58879e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| closer to ||| 0.114754 0.270828 0.000304652 5.73797e-05 2.718 ||| 0-1 ||| 122 45954 +a ||| closer together ||| 0.272727 0.0436548 6.52827e-05 8.89472e-08 2.718 ||| 0-1 ||| 11 45954 +a ||| come at ||| 0.0416667 0.185652 2.17609e-05 3.13711e-05 2.718 ||| 0-1 ||| 24 45954 +a ||| come back to ||| 0.25 0.270828 2.17609e-05 5.58361e-07 2.718 ||| 0-2 ||| 4 45954 +a ||| come out on ||| 0.25 0.0963759 2.17609e-05 1.39921e-07 2.718 ||| 0-2 ||| 4 45954 +a ||| come to a ||| 0.2 0.270828 2.17609e-05 1.61635e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| come to pass ||| 0.166667 0.270828 2.17609e-05 4.95767e-08 2.718 ||| 0-1 ||| 6 45954 +a ||| come to ||| 0.0291262 0.270828 0.000130565 0.000401756 2.718 ||| 0-1 ||| 206 45954 +a ||| come under ||| 0.0526316 0.0560876 2.17609e-05 1.78145e-06 2.718 ||| 0-1 ||| 19 45954 +a ||| come ||| 0.00127065 0.0014556 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 787 45954 +a ||| comes across ||| 0.5 0.0490798 2.17609e-05 2.55031e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| comes at the ||| 0.142857 0.185652 2.17609e-05 4.58576e-07 2.718 ||| 0-1 ||| 7 45954 +a ||| comes at ||| 0.0454545 0.185652 4.35218e-05 8.63127e-06 2.718 ||| 0-1 ||| 44 45954 +a ||| comes into ||| 0.0588235 0.176821 2.17609e-05 3.78167e-06 2.718 ||| 0-1 ||| 17 45954 +a ||| comes to ||| 0.0266667 0.270828 8.70436e-05 0.000110537 2.718 ||| 0-1 ||| 150 45954 +a ||| comes with ||| 0.111111 0.0330797 2.17609e-05 2.84124e-06 2.718 ||| 0-1 ||| 9 45954 +a ||| coming at the ||| 0.333333 0.185652 2.17609e-05 5.38016e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| coming at ||| 0.1 0.185652 2.17609e-05 1.01265e-05 2.718 ||| 0-1 ||| 10 45954 +a ||| coming from ||| 0.025641 0.0408799 2.17609e-05 3.24928e-06 2.718 ||| 0-1 ||| 39 45954 +a ||| coming into ||| 0.0666667 0.176821 2.17609e-05 4.43677e-06 2.718 ||| 0-1 ||| 15 45954 +a ||| coming over for ||| 0.166667 0.0587253 2.17609e-05 6.51384e-09 2.718 ||| 0-2 ||| 6 45954 +a ||| coming to ||| 0.0121951 0.270828 2.17609e-05 0.000129685 2.718 ||| 0-1 ||| 82 45954 +a ||| commemorating ||| 0.125 0.222222 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 8 45954 +a ||| commentators ||| 0.0102041 0.0162602 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 98 45954 +a ||| commitment to ||| 0.00487805 0.270828 2.17609e-05 1.70208e-05 2.718 ||| 0-1 ||| 205 45954 +a ||| committed to ||| 0.00555556 0.270828 2.17609e-05 2.12433e-05 2.718 ||| 0-1 ||| 180 45954 +a ||| commodities in the ||| 1 0.0437285 2.17609e-05 1.35619e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| commodities in ||| 0.5 0.0437285 2.17609e-05 2.5526e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| compared to other ||| 0.0769231 0.270828 2.17609e-05 2.24705e-08 2.718 ||| 0-1 ||| 13 45954 +a ||| compared to ||| 0.00668896 0.270828 4.35218e-05 1.91157e-05 2.718 ||| 0-1 ||| 299 45954 +a ||| competition ||| 0.0015625 0.0010091 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 640 45954 +a ||| competitively ||| 0.333333 0.285714 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 3 45954 +a ||| competitor to ||| 0.5 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| completely out ||| 0.25 0.0840356 2.17609e-05 1.07073e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| complex legacy of ||| 0.5 0.0164489 2.17609e-05 1.09363e-11 2.718 ||| 0-2 ||| 2 45954 +a ||| con dios , ||| 1 1 2.17609e-05 1.56676e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| con dios ||| 1 1 2.17609e-05 7.67e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| concern for ||| 0.0172414 0.0587253 2.17609e-05 1.99684e-06 2.718 ||| 0-1 ||| 58 45954 +a ||| concern to ||| 0.0909091 0.270828 2.17609e-05 2.76261e-05 2.718 ||| 0-1 ||| 11 45954 +a ||| concerned with ||| 0.0208333 0.0550014 2.17609e-05 3.17694e-06 2.718 ||| 0-0 0-1 ||| 48 45954 +a ||| concerned ||| 0.0146341 0.0769231 6.52827e-05 0.0003776 2.718 ||| 0-0 ||| 205 45954 +a ||| concerning ||| 0.00847458 0.190813 4.35218e-05 0.0006372 2.718 ||| 0-0 ||| 236 45954 +a ||| concluded a ||| 0.2 0.146597 2.17609e-05 1.32927e-05 2.718 ||| 0-0 ||| 5 45954 +a ||| concluded ||| 0.00473934 0.146597 2.17609e-05 0.0003304 2.718 ||| 0-0 ||| 211 45954 +a ||| conditional on ||| 0.037037 0.0963759 2.17609e-05 1.67054e-07 2.718 ||| 0-1 ||| 27 45954 +a ||| conditions to ||| 0.0666667 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-1 ||| 15 45954 +a ||| conditions under ||| 0.1 0.0560876 2.17609e-05 8.47618e-08 2.718 ||| 0-1 ||| 10 45954 +a ||| conducted by committees ||| 0.5 0.195833 2.17609e-05 4.88356e-11 2.718 ||| 0-0 ||| 2 45954 +a ||| conducted by ||| 0.0384615 0.195833 2.17609e-05 3.75658e-06 2.718 ||| 0-0 ||| 26 45954 +a ||| conducted ||| 0.010989 0.195833 4.35218e-05 0.0005546 2.718 ||| 0-0 ||| 182 45954 +a ||| confined to ||| 0.0147059 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 68 45954 +a ||| confront ||| 0.0170455 0.244755 6.52827e-05 0.000826 2.718 ||| 0-0 ||| 176 45954 +a ||| confronted ||| 0.0352941 0.118343 6.52827e-05 0.000236 2.718 ||| 0-0 ||| 85 45954 +a ||| connected to ||| 0.0416667 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 24 45954 +a ||| connection with ||| 0.0333333 0.0330797 2.17609e-05 2.18751e-07 2.718 ||| 0-1 ||| 30 45954 +a ||| considers ||| 0.0208333 0.0422535 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 48 45954 +a ||| conspiracies prosecuted ||| 1 0.170732 2.17609e-05 5.369e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| construct ourselves out ||| 0.333333 0.0550847 2.17609e-05 1.32682e-11 2.718 ||| 0-1 ||| 3 45954 +a ||| construct ourselves ||| 0.333333 0.0550847 2.17609e-05 2.9913e-09 2.718 ||| 0-1 ||| 3 45954 +a ||| continue to be ||| 0.0333333 0.270828 2.17609e-05 9.42225e-07 2.718 ||| 0-1 ||| 30 45954 +a ||| continue to ||| 0.00549451 0.270828 4.35218e-05 9.14213e-05 2.718 ||| 0-1 ||| 364 45954 +a ||| continued to ||| 0.0123457 0.270828 2.17609e-05 3.40089e-05 2.718 ||| 0-1 ||| 81 45954 +a ||| contrary to ||| 0.00884956 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 113 45954 +a ||| contributing to ||| 0.0140845 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-1 ||| 71 45954 +a ||| controls down to ||| 1 0.270828 2.17609e-05 1.55442e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| convened ||| 0.0645161 0.217391 4.35218e-05 0.000118 2.718 ||| 0-0 ||| 31 45954 +a ||| conventional ||| 0.00387597 0.0040161 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 258 45954 +a ||| conversion of ||| 0.0714286 0.0164489 2.17609e-05 4.20627e-07 2.718 ||| 0-1 ||| 14 45954 +a ||| convince Europeans of its benefits . ||| 1 0.403141 2.17609e-05 1.21176e-18 2.718 ||| 0-0 ||| 1 45954 +a ||| convince Europeans of its benefits ||| 1 0.403141 2.17609e-05 2.63546e-16 2.718 ||| 0-0 ||| 1 45954 +a ||| convince Europeans of its ||| 1 0.403141 2.17609e-05 2.53653e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| convince Europeans of ||| 1 0.403141 2.17609e-05 1.27644e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| convince Europeans ||| 1 0.403141 2.17609e-05 4.72472e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| convince ||| 0.02 0.403141 4.35218e-05 0.0009086 2.718 ||| 0-0 ||| 100 45954 +a ||| convincing ||| 0.0105263 0.0612245 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 95 45954 +a ||| cornerstone of ||| 0.0526316 0.0164489 2.17609e-05 1.40209e-07 2.718 ||| 0-1 ||| 19 45954 +a ||| cosmopolitan influentials ||| 0.166667 0.0526316 2.17609e-05 1.534e-10 2.718 ||| 0-0 ||| 6 45954 +a ||| cosmopolitan ||| 0.0294118 0.0526316 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 34 45954 +a ||| could get through ||| 0.25 0.257419 2.17609e-05 8.08899e-09 2.718 ||| 0-2 ||| 4 45954 +a ||| could in ||| 0.2 0.0437285 2.17609e-05 4.4376e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| could stand up ||| 1 0.0268991 2.17609e-05 4.11429e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| could ||| 0.000449944 0.0006225 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 4445 45954 +a ||| counter to ||| 0.0714286 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-1 ||| 14 45954 +a ||| counterparts ||| 0.00862069 0.0183486 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 116 45954 +a ||| course , resist ||| 1 0.25 2.17609e-05 6.30188e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| course of ||| 0.0108696 0.0164489 2.17609e-05 9.24516e-06 2.718 ||| 0-1 ||| 92 45954 +a ||| court ||| 0.00584795 0.0175439 4.35218e-05 5.9e-05 2.718 ||| 0-0 ||| 342 45954 +a ||| courtesy of ||| 0.333333 0.0164489 2.17609e-05 1.40209e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| cover for ||| 0.5 0.0587253 2.17609e-05 1.23028e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| covering ||| 0.0555556 0.0779221 4.35218e-05 7.08e-05 2.718 ||| 0-0 ||| 36 45954 +a ||| craft ||| 0.0454545 0.0384615 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 22 45954 +a ||| crash to ||| 1 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-1 ||| 1 45954 +a ||| created space for ||| 0.333333 0.0587253 2.17609e-05 8.79034e-11 2.718 ||| 0-2 ||| 3 45954 +a ||| crisis -- in fact ||| 0.25 0.0437285 2.17609e-05 2.43799e-11 2.718 ||| 0-2 ||| 4 45954 +a ||| crisis -- in ||| 0.25 0.0437285 2.17609e-05 3.71702e-08 2.718 ||| 0-2 ||| 4 45954 +a ||| critical of ||| 0.0454545 0.0115357 2.17609e-05 7.63599e-07 2.718 ||| 0-0 0-1 ||| 22 45954 +a ||| criticized in some ||| 1 0.0437285 2.17609e-05 7.29432e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| criticized in ||| 0.25 0.0437285 2.17609e-05 1.02104e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| culminated in ||| 0.0454545 0.0437285 2.17609e-05 2.5526e-07 2.718 ||| 0-1 ||| 22 45954 +a ||| culprits do ||| 0.333333 0.0606061 2.17609e-05 5.4103e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| culprits ||| 0.0526316 0.0606061 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 19 45954 +a ||| currently being devoted to ||| 1 0.270828 2.17609e-05 1.74804e-12 2.718 ||| 0-3 ||| 1 45954 +a ||| cut into ||| 0.5 0.176821 2.17609e-05 3.49051e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| cut through ||| 0.25 0.257419 2.17609e-05 2.83949e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| damage on ||| 0.166667 0.0963759 2.17609e-05 1.66797e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| damaged even ||| 1 0.0206068 2.17609e-05 3.89636e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| daunting longer-term ||| 0.0555556 0.193846 2.17609e-05 9.6642e-09 2.718 ||| 0-1 ||| 18 45954 +a ||| days of ||| 0.011236 0.0164489 2.17609e-05 9.81462e-07 2.718 ||| 0-1 ||| 89 45954 +a ||| dead ||| 0.00552486 0.0045872 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 181 45954 +a ||| deal for ||| 0.166667 0.0587253 2.17609e-05 8.91242e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| deal with ||| 0.00617284 0.0330797 4.35218e-05 3.16937e-06 2.718 ||| 0-1 ||| 324 45954 +a ||| dealing with ||| 0.00438596 0.0330797 2.17609e-05 6.00724e-07 2.718 ||| 0-1 ||| 228 45954 +a ||| deals in ||| 0.333333 0.0437285 2.17609e-05 1.53156e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| death of ||| 0.0172414 0.0164489 2.17609e-05 3.78133e-06 2.718 ||| 0-1 ||| 58 45954 +a ||| debate over ||| 0.0172414 0.07993 2.17609e-05 9.45711e-08 2.718 ||| 0-1 ||| 58 45954 +a ||| decade to ||| 0.111111 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-1 ||| 9 45954 +a ||| deceive ||| 0.0714286 0.214286 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 14 45954 +a ||| decentralized market-based activity appears likelier to engender ||| 1 0.270828 2.17609e-05 9.21144e-30 2.718 ||| 0-5 ||| 1 45954 +a ||| decentralized market-based activity appears likelier to ||| 1 0.270828 2.17609e-05 1.41714e-24 2.718 ||| 0-5 ||| 1 45954 +a ||| decision to admit ||| 0.333333 0.270828 2.17609e-05 9.9444e-10 2.718 ||| 0-1 ||| 3 45954 +a ||| decision to ||| 0.00952381 0.270828 2.17609e-05 2.54985e-05 2.718 ||| 0-1 ||| 105 45954 +a ||| declared that Genet was a literary genius ||| 1 0.0416667 2.17609e-05 1.20777e-26 2.718 ||| 0-5 ||| 1 45954 +a ||| declared that Genet was a literary ||| 1 0.0416667 2.17609e-05 1.85811e-21 2.718 ||| 0-5 ||| 1 45954 +a ||| declaring himself against ||| 0.333333 0.0413907 2.17609e-05 1.5541e-11 2.718 ||| 0-2 ||| 3 45954 +a ||| decline again ||| 0.5 0.0930362 2.17609e-05 1.79128e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| decline in the dollar 's value ||| 1 0.0437285 2.17609e-05 7.47388e-17 2.718 ||| 0-1 ||| 1 45954 +a ||| decline in the dollar 's ||| 1 0.0437285 2.17609e-05 3.83669e-13 2.718 ||| 0-1 ||| 1 45954 +a ||| decline in the dollar ||| 0.0909091 0.0437285 2.17609e-05 2.46365e-11 2.718 ||| 0-1 ||| 11 45954 +a ||| decline in the ||| 0.0243902 0.0437285 2.17609e-05 1.89658e-07 2.718 ||| 0-1 ||| 41 45954 +a ||| decline in ||| 0.00502513 0.0437285 2.17609e-05 3.56972e-06 2.718 ||| 0-1 ||| 199 45954 +a ||| default on ||| 0.037037 0.0963759 2.17609e-05 1.66797e-06 2.718 ||| 0-1 ||| 27 45954 +a ||| defeat in ||| 0.02 0.0437285 2.17609e-05 5.1052e-07 2.718 ||| 0-1 ||| 50 45954 +a ||| defeat ||| 0.00321543 0.0735294 2.17609e-05 0.000236 2.718 ||| 0-0 ||| 311 45954 +a ||| defenders are ||| 0.333333 0.047619 2.17609e-05 2.62084e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| defenders ||| 0.0196078 0.047619 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 51 45954 +a ||| defiant challenges to ||| 0.25 0.270828 2.17609e-05 1.38081e-10 2.718 ||| 0-2 ||| 4 45954 +a ||| deliver them to ||| 1 0.270828 2.17609e-05 5.81625e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| delivered not only ||| 1 0.0020258 2.17609e-05 2.77295e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| demanded even ||| 0.166667 0.0206068 2.17609e-05 9.72591e-08 2.718 ||| 0-1 ||| 6 45954 +a ||| democrats such as ||| 1 0.0289876 2.17609e-05 2.55916e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| democrats ||| 0.0217391 0.03125 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 46 45954 +a ||| denied ||| 0.03125 0.0823529 6.52827e-05 0.0001652 2.718 ||| 0-0 ||| 96 45954 +a ||| denying ||| 0.0178571 0.105263 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 56 45954 +a ||| depended on bringing ||| 0.2 0.0963759 2.17609e-05 2.27862e-11 2.718 ||| 0-1 ||| 5 45954 +a ||| depended on ||| 0.03125 0.0963759 2.17609e-05 1.67054e-07 2.718 ||| 0-1 ||| 32 45954 +a ||| depositors ||| 0.0307692 0.04 4.35218e-05 5.9e-05 2.718 ||| 0-0 ||| 65 45954 +a ||| deprived ||| 0.027027 0.0757576 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 37 45954 +a ||| described , ||| 0.5 0.081448 2.17609e-05 4.33871e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| described ||| 0.0229885 0.081448 8.70436e-05 0.0002124 2.718 ||| 0-0 ||| 174 45954 +a ||| description of ||| 0.0769231 0.0164489 2.17609e-05 2.80418e-07 2.718 ||| 0-1 ||| 13 45954 +a ||| deserved to ||| 0.333333 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| designed to ||| 0.0046729 0.270828 2.17609e-05 2.54985e-05 2.718 ||| 0-1 ||| 214 45954 +a ||| desperately at ||| 1 0.185652 2.17609e-05 4.984e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| destined to ||| 0.0416667 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 24 45954 +a ||| destroying ||| 0.0126582 0.0454545 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 79 45954 +a ||| deter ||| 0.0238095 0.246914 2.17609e-05 0.000236 2.718 ||| 0-0 ||| 42 45954 +a ||| devastate ||| 0.2 0.25 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 5 45954 +a ||| develop into ||| 0.0833333 0.176821 2.17609e-05 1.01793e-06 2.718 ||| 0-1 ||| 12 45954 +a ||| developers of ||| 0.333333 0.0164489 2.17609e-05 4.20627e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| development of new technologies to address environmental ||| 1 0.270828 2.17609e-05 7.21771e-23 2.718 ||| 0-4 ||| 1 45954 +a ||| development of new technologies to address ||| 1 0.270828 2.17609e-05 3.70139e-18 2.718 ||| 0-4 ||| 1 45954 +a ||| development of new technologies to ||| 1 0.270828 2.17609e-05 3.56245e-14 2.718 ||| 0-4 ||| 1 45954 +a ||| devoted to ||| 0.0408163 0.270828 4.35218e-05 1.48932e-05 2.718 ||| 0-1 ||| 49 45954 +a ||| did affect ||| 1 0.25256 2.17609e-05 1.4007e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| did agree to ||| 1 0.270828 2.17609e-05 5.11407e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| did at ||| 0.2 0.185652 2.17609e-05 4.09992e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| did choke ||| 0.037037 0.25 2.17609e-05 3.78568e-08 2.718 ||| 0-1 ||| 27 45954 +a ||| did encourage ||| 0.333333 0.19837 2.17609e-05 1.38177e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| did so at the ||| 1 0.185652 2.17609e-05 4.90873e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| did so at ||| 1 0.185652 2.17609e-05 9.23917e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| did so to ||| 1 0.270828 2.17609e-05 1.18322e-06 2.718 ||| 0-2 ||| 1 45954 +a ||| different ||| 0.000713776 0.0007174 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1401 45954 +a ||| difficult for ||| 0.0153846 0.0587253 2.17609e-05 4.45503e-06 2.718 ||| 0-1 ||| 65 45954 +a ||| dios , ||| 1 1 2.17609e-05 2.41039e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| dios ||| 1 1 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| direct exposure to ||| 0.05 0.270828 2.17609e-05 1.38294e-10 2.718 ||| 0-2 ||| 20 45954 +a ||| directed toward ||| 0.166667 0.0996678 2.17609e-05 3.4515e-08 2.718 ||| 0-1 ||| 6 45954 +a ||| directly pull people ||| 0.5 0.0056864 2.17609e-05 1.67255e-12 2.718 ||| 0-2 ||| 2 45954 +a ||| dismissed ||| 0.0185185 0.0857143 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 54 45954 +a ||| distract people from ||| 1 0.0408799 2.17609e-05 4.29282e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| disturbed ||| 0.111111 0.047619 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 9 45954 +a ||| divided up equally what we produce ||| 0.5 0.0551471 2.17609e-05 1.66486e-20 2.718 ||| 0-0 ||| 2 45954 +a ||| divided up equally what we ||| 0.5 0.0551471 2.17609e-05 9.85708e-17 2.718 ||| 0-0 ||| 2 45954 +a ||| divided up equally what ||| 0.5 0.0551471 2.17609e-05 4.25149e-14 2.718 ||| 0-0 ||| 2 45954 +a ||| divided up equally ||| 0.5 0.0551471 2.17609e-05 4.30705e-11 2.718 ||| 0-0 ||| 2 45954 +a ||| divided up ||| 0.333333 0.0551471 2.17609e-05 5.52895e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| divided ||| 0.00787402 0.0551471 4.35218e-05 0.000177 2.718 ||| 0-0 ||| 254 45954 +a ||| do for ||| 0.0666667 0.0587253 2.17609e-05 5.42387e-05 2.718 ||| 0-1 ||| 15 45954 +a ||| do more to ||| 0.0384615 0.270828 2.17609e-05 1.60328e-06 2.718 ||| 0-2 ||| 26 45954 +a ||| do not like it ||| 0.5 0.0278224 2.17609e-05 1.76106e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| do not like ||| 0.111111 0.0278224 4.35218e-05 6.61392e-09 2.718 ||| 0-2 ||| 18 45954 +a ||| do so on ||| 0.2 0.0963759 2.17609e-05 1.32773e-07 2.718 ||| 0-2 ||| 5 45954 +a ||| do to ||| 0.0819672 0.270828 0.000108804 0.000750388 2.718 ||| 0-1 ||| 61 45954 +a ||| doing so to ||| 1 0.270828 2.17609e-05 2.68273e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| dollar via ||| 1 0.288889 2.17609e-05 9.96333e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| don 't ||| 0.00220751 0.0042674 2.17609e-05 1.56326e-08 2.718 ||| 0-0 ||| 453 45954 +a ||| don ||| 0.0119048 0.0042674 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 84 45954 +a ||| done more to stop ||| 0.5 0.270828 2.17609e-05 2.6554e-11 2.718 ||| 0-2 ||| 2 45954 +a ||| done more to ||| 0.25 0.270828 2.17609e-05 1.6351e-07 2.718 ||| 0-2 ||| 4 45954 +a ||| door to ||| 0.0882353 0.270828 6.52827e-05 2.76261e-05 2.718 ||| 0-1 ||| 34 45954 +a ||| doves -- and embolden ||| 0.5 0.538462 2.17609e-05 2.26619e-14 2.718 ||| 0-3 ||| 2 45954 +a ||| down a ||| 0.0909091 0.0516169 2.17609e-05 3.94032e-05 2.718 ||| 0-0 ||| 11 45954 +a ||| down and ||| 0.0740741 0.0516169 4.35218e-05 8.22412e-06 2.718 ||| 0-0 ||| 27 45954 +a ||| down by ||| 0.0625 0.0269646 2.17609e-05 9.86266e-06 2.718 ||| 0-1 ||| 16 45954 +a ||| down further in ||| 1 0.0437285 2.17609e-05 1.86321e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| down in response to ||| 0.5 0.270828 2.17609e-05 7.15796e-10 2.718 ||| 0-3 ||| 2 45954 +a ||| down in ||| 0.114286 0.0437285 8.70436e-05 5.73825e-05 2.718 ||| 0-1 ||| 35 45954 +a ||| down on ||| 0.04 0.0963759 2.17609e-05 3.75537e-05 2.718 ||| 0-1 ||| 25 45954 +a ||| down through ||| 0.1 0.257419 2.17609e-05 1.33111e-05 2.718 ||| 0-1 ||| 10 45954 +a ||| down to the business ||| 1 0.270828 2.17609e-05 6.43662e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| down to the ||| 0.2 0.270828 2.17609e-05 2.54111e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| down to ||| 0.139535 0.270828 0.000261131 0.000478285 2.718 ||| 0-1 ||| 86 45954 +a ||| down ||| 0.0440141 0.0516169 0.000544022 0.0009794 2.718 ||| 0-0 ||| 568 45954 +a ||| downgraded to ||| 0.142857 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| downstream activities are concerned ||| 0.5 0.0769231 2.17609e-05 7.08675e-16 2.718 ||| 0-3 ||| 2 45954 +a ||| downward into ||| 1 0.176821 2.17609e-05 2.91156e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| downward ||| 0.010989 0.142857 2.17609e-05 0.0003186 2.718 ||| 0-0 ||| 91 45954 +a ||| drafted by Francis ||| 1 0.0269646 2.17609e-05 2.85175e-13 2.718 ||| 0-1 ||| 1 45954 +a ||| drafted by ||| 0.2 0.0269646 2.17609e-05 4.3873e-08 2.718 ||| 0-1 ||| 5 45954 +a ||| dragging its feet ||| 0.0769231 0.0487805 2.17609e-05 6.09673e-13 2.718 ||| 0-2 ||| 13 45954 +a ||| draw in the ||| 0.5 0.0437285 2.17609e-05 2.03219e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| draw in ||| 0.25 0.0437285 2.17609e-05 3.82498e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| draw ||| 0.00884956 0.0225989 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 113 45954 +a ||| drawing ||| 0.0142857 0.0733945 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 70 45954 +a ||| drawn to ||| 0.153846 0.270828 4.35218e-05 5.10297e-05 2.718 ||| 0-1 ||| 13 45954 +a ||| drawn ||| 0.032967 0.0470588 6.52827e-05 9.44e-05 2.718 ||| 0-0 ||| 91 45954 +a ||| drew ||| 0.025641 0.115942 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 39 45954 +a ||| drift to ||| 0.25 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| driving force for ||| 0.333333 0.0587253 2.17609e-05 4.03732e-10 2.718 ||| 0-2 ||| 3 45954 +a ||| driving ||| 0.00632911 0.0409091 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 158 45954 +a ||| dropped in ||| 0.333333 0.0437285 2.17609e-05 1.53156e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| drowning man , ||| 1 0.181818 2.17609e-05 7.51561e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| drowning man ||| 1 0.181818 2.17609e-05 3.67924e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| drowning of ||| 0.333333 0.181818 2.17609e-05 6.3758e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| drowning ||| 0.111111 0.181818 4.35218e-05 2.36e-05 2.718 ||| 0-0 ||| 18 45954 +a ||| dubbed ||| 0.037037 0.0731707 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 27 45954 +a ||| due for review ||| 0.333333 0.0587253 2.17609e-05 1.8977e-10 2.718 ||| 0-1 ||| 3 45954 +a ||| due for ||| 0.333333 0.0587253 2.17609e-05 5.83909e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| due to Malawi ||| 0.5 0.270828 2.17609e-05 5.25092e-10 2.718 ||| 0-1 ||| 2 45954 +a ||| due to arrive ||| 0.166667 0.270828 2.17609e-05 1.57528e-09 2.718 ||| 0-1 ||| 6 45954 +a ||| due to step down ||| 0.5 0.270828 2.17609e-05 2.91324e-11 2.718 ||| 0-1 ||| 2 45954 +a ||| due to step ||| 0.5 0.270828 2.17609e-05 1.99373e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| due to ||| 0.0159744 0.270828 0.000108804 8.07833e-05 2.718 ||| 0-1 ||| 313 45954 +a ||| dumped back onto ||| 1 0.220779 2.17609e-05 7.24864e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| during the ||| 0.00190295 0.0034443 4.35218e-05 3.76158e-06 2.718 ||| 0-0 ||| 1051 45954 +a ||| during ||| 0.00259067 0.0034443 0.000108804 7.08e-05 2.718 ||| 0-0 ||| 1930 45954 +a ||| each other to ||| 0.25 0.270828 2.17609e-05 1.99887e-07 2.718 ||| 0-2 ||| 4 45954 +a ||| eager to ||| 0.0172414 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 58 45954 +a ||| earlier ||| 0.00537634 0.0632054 4.35218e-05 0.0003304 2.718 ||| 0-0 ||| 372 45954 +a ||| early on , ||| 0.25 0.0963759 2.17609e-05 6.13711e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| early on ||| 0.0434783 0.0963759 2.17609e-05 3.0044e-06 2.718 ||| 0-1 ||| 23 45954 +a ||| early ||| 0.000831255 0.0356164 2.17609e-05 0.0004602 2.718 ||| 0-0 ||| 1203 45954 +a ||| easier for ||| 0.0454545 0.0587253 2.17609e-05 2.15062e-06 2.718 ||| 0-1 ||| 22 45954 +a ||| ecological ||| 0.0188679 0.0172414 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 53 45954 +a ||| economically at a ||| 1 0.185652 2.17609e-05 1.33678e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| economically at ||| 1 0.185652 2.17609e-05 3.32267e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| economies cannot stand up to comparison with ||| 0.5 0.270828 2.17609e-05 2.00465e-22 2.718 ||| 0-4 ||| 2 45954 +a ||| economies cannot stand up to comparison ||| 0.5 0.270828 2.17609e-05 5.28556e-20 2.718 ||| 0-4 ||| 2 45954 +a ||| economies cannot stand up to ||| 0.5 0.270828 2.17609e-05 4.06581e-15 2.718 ||| 0-4 ||| 2 45954 +a ||| edifice of ||| 0.5 0.0164489 2.17609e-05 1.40209e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| educated ||| 0.0225564 0.0443038 6.52827e-05 8.26e-05 2.718 ||| 0-0 ||| 133 45954 +a ||| effect on ||| 0.0208333 0.0963759 2.17609e-05 3.17145e-06 2.718 ||| 0-1 ||| 48 45954 +a ||| effectively kill ||| 0.5 0.238095 2.17609e-05 8.27652e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| effort to ||| 0.017341 0.270828 6.52827e-05 9.14213e-05 2.718 ||| 0-1 ||| 173 45954 +a ||| efforts at ||| 0.025641 0.185652 2.17609e-05 4.15078e-06 2.718 ||| 0-1 ||| 39 45954 +a ||| efforts to ||| 0.00332226 0.270828 2.17609e-05 5.31573e-05 2.718 ||| 0-1 ||| 301 45954 +a ||| either to ||| 0.214286 0.270828 6.52827e-05 0.000323101 2.718 ||| 0-1 ||| 14 45954 +a ||| elected ||| 0.00206186 0.0021053 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 485 45954 +a ||| elites around ||| 1 0.0474763 2.17609e-05 7.2865e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| embodied in ||| 0.0454545 0.0437285 2.17609e-05 2.5526e-07 2.718 ||| 0-1 ||| 22 45954 +a ||| embolden ||| 0.2 0.538462 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 5 45954 +a ||| embrace of ||| 0.0588235 0.0310671 2.17609e-05 2.2908e-06 2.718 ||| 0-0 0-1 ||| 17 45954 +a ||| embrace ||| 0.00666667 0.0456853 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 150 45954 +a ||| emerge from ||| 0.0344828 0.0408799 2.17609e-05 1.27855e-06 2.718 ||| 0-1 ||| 29 45954 +a ||| emigration of ||| 0.333333 0.0164489 2.17609e-05 2.80418e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| emitted into the atmosphere ||| 0.111111 0.176821 2.17609e-05 2.51371e-13 2.718 ||| 0-1 ||| 9 45954 +a ||| emitted into the ||| 0.111111 0.176821 2.17609e-05 7.7345e-09 2.718 ||| 0-1 ||| 9 45954 +a ||| emitted into ||| 0.111111 0.176821 2.17609e-05 1.45578e-07 2.718 ||| 0-1 ||| 9 45954 +a ||| employs ||| 0.0666667 0.37037 2.17609e-05 0.000118 2.718 ||| 0-0 ||| 15 45954 +a ||| empower ||| 0.0555556 0.310811 4.35218e-05 0.0002714 2.718 ||| 0-0 ||| 36 45954 +a ||| empowered ||| 0.0188679 0.146342 2.17609e-05 0.0001416 2.718 ||| 0-0 ||| 53 45954 +a ||| en ||| 0.2 0.0909091 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 5 45954 +a ||| enabling ||| 0.027027 0.113514 4.35218e-05 0.0002478 2.718 ||| 0-0 ||| 74 45954 +a ||| encounter one another face-to-face , ||| 0.166667 0.306122 2.17609e-05 1.77897e-16 2.718 ||| 0-3 ||| 6 45954 +a ||| encounter one another face-to-face ||| 0.166667 0.306122 2.17609e-05 8.70889e-16 2.718 ||| 0-3 ||| 6 45954 +a ||| encountered odd - ||| 1 0.075 2.17609e-05 5.96212e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| encountered odd ||| 1 0.075 2.17609e-05 6.903e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| encountered ||| 0.0526316 0.075 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 19 45954 +a ||| encourage ||| 0.013986 0.19837 8.70436e-05 0.0008614 2.718 ||| 0-0 ||| 286 45954 +a ||| encouraged , ||| 0.125 0.188679 2.17609e-05 9.64157e-05 2.718 ||| 0-0 ||| 8 45954 +a ||| encouraged to ||| 0.037037 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-1 ||| 27 45954 +a ||| encouraged ||| 0.027027 0.188679 8.70436e-05 0.000472 2.718 ||| 0-0 ||| 148 45954 +a ||| encouraging more to ||| 0.5 0.270828 2.17609e-05 2.27292e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| encouraging ||| 0.00881057 0.125 4.35218e-05 0.0003658 2.718 ||| 0-0 ||| 227 45954 +a ||| end in ||| 0.0178571 0.0437285 2.17609e-05 1.86183e-05 2.718 ||| 0-1 ||| 56 45954 +a ||| end of the ||| 0.00346021 0.0164489 2.17609e-05 5.43336e-07 2.718 ||| 0-1 ||| 289 45954 +a ||| end of ||| 0.00166945 0.0164489 2.17609e-05 1.02266e-05 2.718 ||| 0-1 ||| 599 45954 +a ||| end up as anything ||| 1 0.0289876 2.17609e-05 2.23634e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| end up as ||| 1 0.0289876 2.17609e-05 1.37706e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| endorsement of ||| 0.0769231 0.0164489 2.17609e-05 4.20627e-07 2.718 ||| 0-1 ||| 13 45954 +a ||| ends of ||| 0.125 0.0164489 2.17609e-05 9.81462e-07 2.718 ||| 0-1 ||| 8 45954 +a ||| engage in the massive stimulus ||| 1 0.0437285 2.17609e-05 9.91766e-16 2.718 ||| 0-1 ||| 1 45954 +a ||| engage in the massive ||| 1 0.0437285 2.17609e-05 2.54299e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| engage in the ||| 0.166667 0.0437285 2.17609e-05 2.30343e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| engage in ||| 0.0267857 0.0437285 6.52827e-05 4.3355e-06 2.718 ||| 0-1 ||| 112 45954 +a ||| engage with ||| 0.0625 0.0330797 2.17609e-05 9.2885e-07 2.718 ||| 0-1 ||| 16 45954 +a ||| engage ||| 0.00568182 0.0526316 2.17609e-05 0.0001652 2.718 ||| 0-0 ||| 176 45954 +a ||| engaging in ||| 0.0294118 0.0437285 2.17609e-05 1.53156e-06 2.718 ||| 0-1 ||| 34 45954 +a ||| engaging ||| 0.0526316 0.107527 6.52827e-05 0.000118 2.718 ||| 0-0 ||| 57 45954 +a ||| enough into the ||| 0.333333 0.176821 2.17609e-05 1.73848e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| enough into ||| 0.333333 0.176821 2.17609e-05 3.27214e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| enough to meet ||| 0.2 0.270828 2.17609e-05 1.80097e-08 2.718 ||| 0-1 ||| 5 45954 +a ||| enough to ||| 0.00833333 0.270828 4.35218e-05 9.56438e-05 2.718 ||| 0-1 ||| 240 45954 +a ||| enroll ||| 0.142857 0.375 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 7 45954 +a ||| ensued ||| 0.0416667 0.137931 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 24 45954 +a ||| entered into by ||| 1 0.176821 2.17609e-05 1.47911e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| entered into ||| 0.125 0.176821 2.17609e-05 2.18367e-07 2.718 ||| 0-1 ||| 8 45954 +a ||| entered ||| 0.0326087 0.212121 6.52827e-05 0.0004956 2.718 ||| 0-0 ||| 92 45954 +a ||| entering ||| 0.0204082 0.207101 4.35218e-05 0.000413 2.718 ||| 0-0 ||| 98 45954 +a ||| enticing bandits ||| 0.166667 0.166667 2.17609e-05 1.534e-10 2.718 ||| 0-1 ||| 6 45954 +a ||| entire ||| 0.00197239 0.0043384 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 507 45954 +a ||| entrepreneurial ||| 0.015625 0.0185185 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 64 45954 +a ||| equal to ||| 0.0243902 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-1 ||| 41 45954 +a ||| era , ||| 0.0416667 0.0060362 2.17609e-05 7.23118e-06 2.718 ||| 0-0 ||| 24 45954 +a ||| era ||| 0.00371058 0.0060362 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 539 45954 +a ||| eradicated ||| 0.0666667 0.0869565 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 15 45954 +a ||| essential to ||| 0.0119048 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-1 ||| 84 45954 +a ||| even through ||| 0.333333 0.257419 2.17609e-05 8.28254e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| even to ||| 0.0125 0.270828 2.17609e-05 0.000297602 2.718 ||| 0-1 ||| 80 45954 +a ||| even ||| 0.00684817 0.0206068 0.000892197 0.0014986 2.718 ||| 0-0 ||| 5987 45954 +a ||| eventually be back ||| 0.333333 0.0583614 2.17609e-05 8.7891e-09 2.718 ||| 0-0 ||| 3 45954 +a ||| eventually be ||| 0.05 0.0583614 2.17609e-05 6.32401e-06 2.718 ||| 0-0 ||| 20 45954 +a ||| eventually find themselves having ||| 0.333333 0.0583614 2.17609e-05 6.06749e-14 2.718 ||| 0-0 ||| 3 45954 +a ||| eventually find themselves ||| 0.333333 0.0583614 2.17609e-05 2.27844e-10 2.718 ||| 0-0 ||| 3 45954 +a ||| eventually find ||| 0.25 0.0583614 2.17609e-05 2.82931e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| eventually force ||| 0.333333 0.0583614 2.17609e-05 1.79294e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| eventually give it ||| 0.5 0.0583614 2.17609e-05 6.15453e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| eventually give ||| 0.5 0.0583614 2.17609e-05 2.31143e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| eventually joining ||| 0.2 0.341584 2.17609e-05 1.63898e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| eventually occur ||| 0.166667 0.0583614 2.17609e-05 4.3811e-08 2.718 ||| 0-0 ||| 6 45954 +a ||| eventually succeed ||| 0.333333 0.0583614 2.17609e-05 5.97646e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| eventually take ||| 0.25 0.0583614 2.17609e-05 5.41932e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| eventually ||| 0.0230326 0.0583614 0.000261131 0.0006136 2.718 ||| 0-0 ||| 521 45954 +a ||| ever been in ||| 1 0.0437285 2.17609e-05 3.91619e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| ever been to ||| 0.5 0.270828 2.17609e-05 3.26416e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| ever being able to ||| 1 0.270828 2.17609e-05 1.22466e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| ever closer to ||| 0.5 0.270828 2.17609e-05 3.42844e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| ever closer together ||| 1 0.0436548 2.17609e-05 5.3146e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| ever entered ||| 0.5 0.212121 2.17609e-05 2.96121e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| ever released ||| 0.25 0.109453 2.17609e-05 1.55111e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| every fiber ||| 1 0.0058626 2.17609e-05 1.0738e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| every ||| 0.00179856 0.0058626 6.52827e-05 8.26e-05 2.718 ||| 0-0 ||| 1668 45954 +a ||| everyone for ||| 0.25 0.0587253 2.17609e-05 2.15062e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| everyone from Kenya . ||| 1 0.0408799 2.17609e-05 2.22797e-14 2.718 ||| 0-1 ||| 1 45954 +a ||| everyone from Kenya ||| 1 0.0408799 2.17609e-05 4.84562e-12 2.718 ||| 0-1 ||| 1 45954 +a ||| everyone from ||| 0.166667 0.0408799 2.17609e-05 7.4548e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| everyone ||| 0.0015625 0.0364372 2.17609e-05 0.0004248 2.718 ||| 0-0 ||| 640 45954 +a ||| exception to ||| 0.0769231 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 13 45954 +a ||| exclusion by saying ||| 0.166667 0.0269646 2.17609e-05 1.11087e-11 2.718 ||| 0-1 ||| 6 45954 +a ||| exclusion by ||| 0.166667 0.0269646 2.17609e-05 1.31619e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| executed ||| 0.0526316 0.0869565 4.35218e-05 4.72e-05 2.718 ||| 0-0 ||| 38 45954 +a ||| exhausted many on ||| 1 0.0963759 2.17609e-05 2.92929e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| exists in others . ||| 1 0.0437285 2.17609e-05 1.3699e-12 2.718 ||| 0-1 ||| 1 45954 +a ||| exists in others ||| 1 0.0437285 2.17609e-05 2.9794e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| exists in ||| 0.04 0.0437285 2.17609e-05 2.54867e-06 2.718 ||| 0-1 ||| 25 45954 +a ||| expected to pick up ||| 1 0.270828 2.17609e-05 1.03465e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| expected to pick ||| 1 0.270828 2.17609e-05 3.31225e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| expected to ||| 0.00487805 0.270828 2.17609e-05 4.25193e-05 2.718 ||| 0-1 ||| 205 45954 +a ||| expel ||| 0.0625 0.441177 2.17609e-05 0.000177 2.718 ||| 0-0 ||| 16 45954 +a ||| experience of ||| 0.016129 0.0164489 2.17609e-05 1.39993e-06 2.718 ||| 0-1 ||| 62 45954 +a ||| exposed ( like Saddam ) to ||| 1 0.270828 2.17609e-05 9.69769e-20 2.718 ||| 0-5 ||| 1 45954 +a ||| exposure to ||| 0.0133333 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 75 45954 +a ||| expropriated by ||| 1 0.0269646 2.17609e-05 4.3873e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| extended another ||| 1 0.0059172 2.17609e-05 2.22194e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| extended to ||| 0.047619 0.270828 2.17609e-05 1.70208e-05 2.718 ||| 0-1 ||| 21 45954 +a ||| extended ||| 0.00892857 0.0059172 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 112 45954 +a ||| extensive use of ||| 0.5 0.0164489 2.17609e-05 1.47514e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| eye to ||| 0.0909091 0.270828 2.17609e-05 6.16349e-05 2.718 ||| 0-1 ||| 11 45954 +a ||| eyes ||| 0.00537634 0.0040161 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 186 45954 +a ||| face a ||| 0.0126582 0.101695 2.17609e-05 5.69685e-05 2.718 ||| 0-0 ||| 79 45954 +a ||| face of opposition ||| 0.333333 0.0164489 2.17609e-05 3.63337e-10 2.718 ||| 0-1 ||| 3 45954 +a ||| face of ||| 0.0123457 0.0164489 4.35218e-05 7.98544e-06 2.718 ||| 0-1 ||| 162 45954 +a ||| face to ||| 0.111111 0.270828 2.17609e-05 0.000121175 2.718 ||| 0-1 ||| 9 45954 +a ||| face ||| 0.00250627 0.101695 4.35218e-05 0.001416 2.718 ||| 0-0 ||| 798 45954 +a ||| face-to-face , ||| 0.166667 0.306122 2.17609e-05 3.61559e-05 2.718 ||| 0-0 ||| 6 45954 +a ||| face-to-face ||| 0.0666667 0.306122 2.17609e-05 0.000177 2.718 ||| 0-0 ||| 15 45954 +a ||| faced by ||| 0.0192308 0.0637106 2.17609e-05 3.50444e-06 2.718 ||| 0-0 0-1 ||| 52 45954 +a ||| faced ||| 0.0106952 0.100457 4.35218e-05 0.0005192 2.718 ||| 0-0 ||| 187 45954 +a ||| faces of ||| 0.0833333 0.0811174 2.17609e-05 1.62901e-05 2.718 ||| 0-0 0-1 ||| 12 45954 +a ||| faces ||| 0.00946372 0.145786 6.52827e-05 0.0007552 2.718 ||| 0-0 ||| 317 45954 +a ||| facilities to ||| 0.25 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| facing ||| 0.00290698 0.11146 2.17609e-05 0.0008378 2.718 ||| 0-0 ||| 344 45954 +a ||| fact-finding mission to Kosovo ||| 1 0.270828 2.17609e-05 2.15739e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| fact-finding mission to ||| 1 0.270828 2.17609e-05 8.29764e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| failed to ||| 0.00784314 0.270828 4.35218e-05 5.95073e-05 2.718 ||| 0-1 ||| 255 45954 +a ||| fails to ||| 0.012987 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-1 ||| 77 45954 +a ||| faith with ||| 0.2 0.0330797 2.17609e-05 2.18751e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| fall into ||| 0.0333333 0.176821 2.17609e-05 2.54537e-06 2.718 ||| 0-1 ||| 30 45954 +a ||| fall short of ||| 0.166667 0.0164489 4.35218e-05 1.97395e-09 2.718 ||| 0-2 ||| 12 45954 +a ||| fallen far short ||| 0.5 0.0196759 2.17609e-05 4.31852e-12 2.718 ||| 0-2 ||| 2 45954 +a ||| falling over themselves and each other to ||| 1 0.270828 2.17609e-05 9.14857e-20 2.718 ||| 0-6 ||| 1 45954 +a ||| falls off ||| 1 0.0698758 2.17609e-05 3.4515e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| far as to ||| 0.375 0.270828 6.52827e-05 1.83331e-06 2.718 ||| 0-2 ||| 8 45954 +a ||| far enough into the ||| 1 0.176821 2.17609e-05 1.15157e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| far enough into ||| 1 0.176821 2.17609e-05 2.16747e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| far short ||| 0.047619 0.0196759 2.17609e-05 1.32877e-07 2.718 ||| 0-1 ||| 21 45954 +a ||| far surpassed ||| 0.25 0.3 2.17609e-05 1.17245e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| farmers are to be ||| 1 0.270828 2.17609e-05 3.24686e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| farmers are to ||| 0.5 0.270828 2.17609e-05 3.15034e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| fast to ||| 0.285714 0.270828 4.35218e-05 2.76261e-05 2.718 ||| 0-1 ||| 7 45954 +a ||| fast ||| 0.00833333 0.0234899 4.35218e-05 8.26e-05 2.718 ||| 0-0 ||| 240 45954 +a ||| favor of ||| 0.00510204 0.0164489 2.17609e-05 1.82056e-06 2.718 ||| 0-1 ||| 196 45954 +a ||| favor on ||| 0.25 0.0963759 2.17609e-05 2.16913e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| favor ||| 0.00674157 0.105495 6.52827e-05 0.0005664 2.718 ||| 0-0 ||| 445 45954 +a ||| favoring ||| 0.03125 0.238095 2.17609e-05 0.000118 2.718 ||| 0-0 ||| 32 45954 +a ||| favors ||| 0.0117647 0.141304 2.17609e-05 0.0001534 2.718 ||| 0-0 ||| 85 45954 +a ||| fear is a cornerstone of ||| 1 0.0164489 2.17609e-05 4.83472e-15 2.718 ||| 0-4 ||| 1 45954 +a ||| fear ||| 0.00125 0.0092166 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 800 45954 +a ||| feed through to ||| 0.5 0.257419 2.17609e-05 5.36543e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| feed through ||| 0.5 0.257419 2.17609e-05 6.50433e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| feeds ||| 0.0454545 0.128205 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 22 45954 +a ||| feet on easing ||| 0.0909091 0.0963759 2.17609e-05 1.30135e-11 2.718 ||| 0-1 ||| 11 45954 +a ||| feet on ||| 0.0909091 0.0963759 2.17609e-05 2.00208e-06 2.718 ||| 0-1 ||| 11 45954 +a ||| feet ||| 0.0422535 0.0487805 6.52827e-05 4.72e-05 2.718 ||| 0-0 ||| 71 45954 +a ||| fell to $ ||| 1 0.270828 2.17609e-05 2.41932e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| fell to ||| 0.047619 0.270828 2.17609e-05 5.10297e-05 2.718 ||| 0-1 ||| 21 45954 +a ||| fiddle to ||| 1 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| fight to ||| 0.0454545 0.270828 2.17609e-05 4.89021e-05 2.718 ||| 0-1 ||| 22 45954 +a ||| figure in ||| 0.166667 0.0437285 2.17609e-05 3.56972e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| figures ||| 0.00471698 0.0044643 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 212 45954 +a ||| financial markets are prone to produce bubbles ||| 1 0.270828 2.17609e-05 3.68811e-25 2.718 ||| 0-4 ||| 1 45954 +a ||| financial markets are prone to produce ||| 1 0.270828 2.17609e-05 5.67401e-20 2.718 ||| 0-4 ||| 1 45954 +a ||| financial markets are prone to ||| 0.333333 0.270828 2.17609e-05 3.35939e-16 2.718 ||| 0-4 ||| 3 45954 +a ||| find themselves on ||| 0.111111 0.0963759 2.17609e-05 9.54325e-09 2.718 ||| 0-2 ||| 9 45954 +a ||| find ||| 0.0013624 0.0009901 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 734 45954 +a ||| finds its ||| 0.333333 0.0197368 2.17609e-05 7.03469e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| finds ||| 0.0107527 0.0197368 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 93 45954 +a ||| finger at ||| 0.5 0.185652 2.17609e-05 6.64534e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| fired at ||| 0.5 0.185652 2.17609e-05 3.32267e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| fired ||| 0.0238095 0.0677966 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 42 45954 +a ||| fires of their rage seem able to ||| 1 0.270828 2.17609e-05 2.81989e-22 2.718 ||| 0-6 ||| 1 45954 +a ||| firing at ||| 0.25 0.185652 2.17609e-05 4.984e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| firm in ||| 0.25 0.0437285 2.17609e-05 1.78682e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| first appearance in 1943 , Peronism ||| 1 0.0437285 2.17609e-05 5.43702e-21 2.718 ||| 0-2 ||| 1 45954 +a ||| first appearance in 1943 , ||| 1 0.0437285 2.17609e-05 8.36464e-16 2.718 ||| 0-2 ||| 1 45954 +a ||| first appearance in 1943 ||| 1 0.0437285 2.17609e-05 4.09488e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| first appearance in ||| 0.333333 0.0437285 2.17609e-05 6.29982e-10 2.718 ||| 0-2 ||| 3 45954 +a ||| fit ||| 0.030303 0.120805 4.35218e-05 0.0002124 2.718 ||| 0-0 ||| 66 45954 +a ||| flew out ||| 0.2 0.0840356 2.17609e-05 5.35366e-08 2.718 ||| 0-1 ||| 5 45954 +a ||| flight into ||| 1 0.176821 2.17609e-05 1.45578e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| flood ||| 0.0185185 0.0641026 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 54 45954 +a ||| floor under ||| 0.25 0.0560876 2.17609e-05 3.77364e-08 2.718 ||| 0-1 ||| 4 45954 +a ||| flow into ||| 0.25 0.176821 2.17609e-05 5.09523e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| flying at ||| 0.166667 0.185652 2.17609e-05 8.30667e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| focus to ||| 0.111111 0.270828 2.17609e-05 4.67745e-05 2.718 ||| 0-1 ||| 9 45954 +a ||| focused on ||| 0.00591716 0.0963759 2.17609e-05 1.83502e-06 2.718 ||| 0-1 ||| 169 45954 +a ||| follow through on ||| 0.0833333 0.257419 2.17609e-05 6.03527e-09 2.718 ||| 0-1 ||| 12 45954 +a ||| follow through ||| 0.2 0.257419 4.35218e-05 1.53863e-06 2.718 ||| 0-1 ||| 10 45954 +a ||| follow ||| 0.0105263 0.0286885 6.52827e-05 0.0001652 2.718 ||| 0-0 ||| 285 45954 +a ||| followed Alfonsín ||| 0.5 0.0855784 2.17609e-05 4.1418e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| followed by ||| 0.00606061 0.0855784 2.17609e-05 4.31607e-06 2.718 ||| 0-0 ||| 165 45954 +a ||| followed ||| 0.0259179 0.0855784 0.000261131 0.0006372 2.718 ||| 0-0 ||| 463 45954 +a ||| following hard ||| 0.125 0.113264 2.17609e-05 4.01856e-07 2.718 ||| 0-0 ||| 8 45954 +a ||| following through on plans to ||| 0.25 0.270828 2.17609e-05 2.9654e-15 2.718 ||| 0-4 ||| 4 45954 +a ||| following ||| 0.00516796 0.113264 8.70436e-05 0.0008968 2.718 ||| 0-0 ||| 774 45954 +a ||| for $ ||| 0.111111 0.0587253 2.17609e-05 1.12168e-05 2.718 ||| 0-0 ||| 9 45954 +a ||| for US ||| 0.125 0.0587253 2.17609e-05 3.04234e-05 2.718 ||| 0-0 ||| 8 45954 +a ||| for a couple ||| 0.111111 0.0587253 2.17609e-05 5.55884e-08 2.718 ||| 0-0 ||| 9 45954 +a ||| for a ||| 0.002849 0.0587253 0.000108804 0.000951857 2.718 ||| 0-0 ||| 1755 45954 +a ||| for accelerated liberalization on ||| 0.166667 0.0587253 2.17609e-05 1.56837e-14 2.718 ||| 0-0 ||| 6 45954 +a ||| for accelerated liberalization ||| 0.166667 0.0587253 2.17609e-05 3.9984e-12 2.718 ||| 0-0 ||| 6 45954 +a ||| for accelerated ||| 0.166667 0.0587253 2.17609e-05 6.15139e-07 2.718 ||| 0-0 ||| 6 45954 +a ||| for agreeing to take ||| 1 0.270828 2.17609e-05 2.68352e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| for agreeing to ||| 1 0.270828 2.17609e-05 3.0384e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| for assisting ||| 0.25 0.396226 2.17609e-05 1.1796e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| for authority ||| 0.0769231 0.0587253 2.17609e-05 7.68924e-07 2.718 ||| 0-0 ||| 13 45954 +a ||| for bearing and ||| 1 0.0587253 2.17609e-05 5.16539e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| for bearing ||| 1 0.0587253 2.17609e-05 6.15139e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| for commodities in the ||| 1 0.0437285 2.17609e-05 6.45586e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| for commodities in ||| 1 0.0437285 2.17609e-05 1.21512e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| for example , ||| 0.00132538 0.0587253 4.35218e-05 4.39309e-07 2.718 ||| 0-0 ||| 1509 45954 +a ||| for example ||| 0.001321 0.0587253 4.35218e-05 2.15062e-06 2.718 ||| 0-0 ||| 1514 45954 +a ||| for fighting poppy seemed ||| 0.25 0.0587253 2.17609e-05 9.08238e-16 2.718 ||| 0-0 ||| 4 45954 +a ||| for fighting poppy ||| 0.25 0.0587253 2.17609e-05 1.39944e-11 2.718 ||| 0-0 ||| 4 45954 +a ||| for fighting ||| 0.0909091 0.0587253 2.17609e-05 1.07649e-06 2.718 ||| 0-0 ||| 11 45954 +a ||| for human ||| 0.166667 0.0587253 2.17609e-05 3.84225e-06 2.718 ||| 0-0 ||| 6 45954 +a ||| for in ||| 0.0625 0.0512269 2.17609e-05 0.000929116 2.718 ||| 0-0 0-1 ||| 16 45954 +a ||| for its money ||| 0.333333 0.0587253 2.17609e-05 1.12978e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| for its ||| 0.00316456 0.0587253 2.17609e-05 4.70156e-05 2.718 ||| 0-0 ||| 316 45954 +a ||| for mere ||| 0.5 0.0587253 2.17609e-05 1.68927e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| for misleading ||| 1 0.0587253 2.17609e-05 3.0757e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| for outrageous ||| 0.5 0.0587253 2.17609e-05 1.53785e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| for people like me to ||| 0.333333 0.270828 2.17609e-05 1.43391e-13 2.718 ||| 0-4 ||| 3 45954 +a ||| for president ||| 0.0434783 0.0587253 2.17609e-05 3.22711e-06 2.718 ||| 0-0 ||| 23 45954 +a ||| for prime time ||| 0.333333 0.0587253 2.17609e-05 3.44946e-09 2.718 ||| 0-0 ||| 3 45954 +a ||| for prime ||| 0.2 0.0587253 2.17609e-05 3.68847e-06 2.718 ||| 0-0 ||| 5 45954 +a ||| for review ||| 0.2 0.0587253 2.17609e-05 7.68924e-07 2.718 ||| 0-0 ||| 5 45954 +a ||| for someone ||| 0.1 0.0587253 2.17609e-05 2.15062e-06 2.718 ||| 0-0 ||| 10 45954 +a ||| for such a ||| 0.037037 0.0587253 2.17609e-05 2.01518e-06 2.718 ||| 0-0 ||| 27 45954 +a ||| for such ||| 0.0107527 0.0587253 2.17609e-05 5.00889e-05 2.718 ||| 0-0 ||| 93 45954 +a ||| for the establishment ||| 0.2 0.0587253 2.17609e-05 1.06091e-07 2.718 ||| 0-0 ||| 5 45954 +a ||| for the price ||| 1 0.0587253 2.17609e-05 1.95967e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| for the ||| 0.00273396 0.0587253 0.000282892 0.001257 2.718 ||| 0-0 ||| 4755 45954 +a ||| for their ||| 0.00222222 0.0587253 2.17609e-05 4.24068e-05 2.718 ||| 0-0 ||| 450 45954 +a ||| for them ||| 0.012987 0.0587253 4.35218e-05 4.6249e-05 2.718 ||| 0-0 ||| 154 45954 +a ||| for top ||| 1 0.0587253 2.17609e-05 8.45107e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| for us to ||| 0.111111 0.270828 2.17609e-05 8.90486e-07 2.718 ||| 0-2 ||| 9 45954 +a ||| for whom ||| 0.027027 0.129741 2.17609e-05 3.65115e-06 2.718 ||| 0-1 ||| 37 45954 +a ||| for ||| 0.0437777 0.0587253 0.0330548 0.0236592 2.718 ||| 0-0 ||| 34698 45954 +a ||| force for ||| 0.0277778 0.0587253 2.17609e-05 6.91322e-06 2.718 ||| 0-1 ||| 36 45954 +a ||| force himself to ||| 0.25 0.270828 2.17609e-05 3.22989e-08 2.718 ||| 0-2 ||| 4 45954 +a ||| force ||| 0.00208044 0.0052539 6.52827e-05 7.08e-05 2.718 ||| 0-0 ||| 1442 45954 +a ||| forced on ||| 0.25 0.0963759 2.17609e-05 3.33851e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| forced to ||| 0.00515464 0.270828 2.17609e-05 4.25193e-05 2.718 ||| 0-1 ||| 194 45954 +a ||| forced ||| 0.00909091 0.142857 8.70436e-05 0.00118 2.718 ||| 0-0 ||| 440 45954 +a ||| forcing down ||| 0.25 0.307359 2.17609e-05 1.22419e-06 2.718 ||| 0-0 ||| 4 45954 +a ||| forcing ||| 0.00917431 0.307359 2.17609e-05 0.0008378 2.718 ||| 0-0 ||| 109 45954 +a ||| foreigners ||| 0.00662252 0.0096618 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 151 45954 +a ||| forgiven in ||| 1 0.0437285 2.17609e-05 2.5526e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| form of ||| 0.00495049 0.0164489 4.35218e-05 8.26585e-06 2.718 ||| 0-1 ||| 404 45954 +a ||| forward in ||| 0.037037 0.0437285 2.17609e-05 1.50486e-05 2.718 ||| 0-1 ||| 27 45954 +a ||| forward ||| 0.00425532 0.0169492 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 235 45954 +a ||| found at Southern African sites since ||| 1 0.185652 2.17609e-05 4.83782e-23 2.718 ||| 0-1 ||| 1 45954 +a ||| found at Southern African sites ||| 1 0.185652 2.17609e-05 4.65622e-19 2.718 ||| 0-1 ||| 1 45954 +a ||| found at Southern African ||| 1 0.185652 2.17609e-05 1.43268e-14 2.718 ||| 0-1 ||| 1 45954 +a ||| found at Southern ||| 1 0.185652 2.17609e-05 2.00656e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| found at ||| 0.25 0.185652 2.17609e-05 1.02901e-05 2.718 ||| 0-1 ||| 4 45954 +a ||| found lacking ||| 0.5 0.0283688 2.17609e-05 1.90027e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| free lunch in ||| 0.5 0.0437285 2.17609e-05 2.38719e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| free media are ||| 0.5 0.0008688 2.17609e-05 4.54279e-12 2.718 ||| 0-0 ||| 2 45954 +a ||| free media ||| 0.047619 0.0008688 2.17609e-05 6.136e-10 2.718 ||| 0-0 ||| 21 45954 +a ||| free rein to ||| 0.25 0.270828 2.17609e-05 4.97433e-10 2.718 ||| 0-2 ||| 4 45954 +a ||| free riding ||| 0.142857 0.0882353 2.17609e-05 8.27652e-09 2.718 ||| 0-1 ||| 7 45954 +a ||| free ||| 0.000735835 0.0008688 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1359 45954 +a ||| freedom from ||| 0.0769231 0.0408799 2.17609e-05 4.78944e-07 2.718 ||| 0-1 ||| 13 45954 +a ||| freely ||| 0.0120482 0.0163934 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 83 45954 +a ||| frequently ||| 0.0070922 0.0227273 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 141 45954 +a ||| friends in ||| 0.0909091 0.0437285 2.17609e-05 2.5526e-07 2.718 ||| 0-1 ||| 11 45954 +a ||| from Kenya . ||| 1 0.0408799 2.17609e-05 2.45101e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| from Kenya ||| 0.5 0.0408799 2.17609e-05 5.33071e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| from anyone ||| 0.333333 0.0408799 2.17609e-05 4.78944e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| from getting ||| 0.111111 0.0408799 2.17609e-05 1.27855e-06 2.718 ||| 0-0 ||| 9 45954 +a ||| from heart failure ||| 0.333333 0.0408799 2.17609e-05 1.21764e-10 2.718 ||| 0-0 ||| 3 45954 +a ||| from heart ||| 0.333333 0.0408799 2.17609e-05 8.52094e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| from it , ||| 0.166667 0.0408799 2.17609e-05 4.46059e-05 2.718 ||| 0-0 ||| 6 45954 +a ||| from it ||| 0.037037 0.0408799 2.17609e-05 0.000218367 2.718 ||| 0-0 ||| 27 45954 +a ||| from now ||| 0.0149254 0.0408799 2.17609e-05 1.21967e-05 2.718 ||| 0-0 ||| 67 45954 +a ||| from one ||| 0.0104167 0.0408799 2.17609e-05 3.29684e-05 2.718 ||| 0-0 ||| 96 45954 +a ||| from reaching ||| 0.25 0.201492 2.17609e-05 1.05106e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| from running ||| 0.1 0.0408799 2.17609e-05 2.13065e-06 2.718 ||| 0-0 ||| 10 45954 +a ||| from the fact ||| 0.12 0.0408799 6.52827e-05 2.8579e-07 2.718 ||| 0-0 ||| 25 45954 +a ||| from the mechanical clock and the ||| 1 0.0408799 2.17609e-05 2.4639e-17 2.718 ||| 0-0 ||| 1 45954 +a ||| from the mechanical clock and ||| 1 0.0408799 2.17609e-05 4.63752e-16 2.718 ||| 0-0 ||| 1 45954 +a ||| from the mechanical clock ||| 1 0.0408799 2.17609e-05 5.52277e-14 2.718 ||| 0-0 ||| 1 45954 +a ||| from the mechanical ||| 1 0.0408799 2.17609e-05 2.83219e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| from the ||| 0.00295858 0.0408799 0.000174087 0.000435721 2.718 ||| 0-0 ||| 2704 45954 +a ||| from them ||| 0.037037 0.0408799 2.17609e-05 1.60315e-05 2.718 ||| 0-0 ||| 27 45954 +a ||| from ||| 0.0281713 0.0408799 0.0073987 0.0082011 2.718 ||| 0-0 ||| 12069 45954 +a ||| frozen pending ||| 1 0.0571429 2.17609e-05 6.136e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| fueled ||| 0.00666667 0.0068027 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 150 45954 +a ||| fully aware of ||| 0.0555556 0.0164489 2.17609e-05 8.73782e-11 2.718 ||| 0-2 ||| 18 45954 +a ||| further in ||| 0.05 0.0437285 2.17609e-05 1.27512e-05 2.718 ||| 0-1 ||| 20 45954 +a ||| further to ||| 0.0909091 0.270828 2.17609e-05 0.000106282 2.718 ||| 0-1 ||| 11 45954 +a ||| gain legal " standing " to ||| 0.333333 0.270828 2.17609e-05 9.02724e-18 2.718 ||| 0-5 ||| 3 45954 +a ||| gained from ||| 0.0833333 0.0408799 2.17609e-05 5.32251e-07 2.718 ||| 0-1 ||| 12 45954 +a ||| gas to ||| 0.0833333 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-1 ||| 12 45954 +a ||| gave ground to ||| 0.333333 0.270828 2.17609e-05 1.44279e-08 2.718 ||| 0-2 ||| 3 45954 +a ||| gave rise to ||| 0.0416667 0.270828 2.17609e-05 1.25901e-08 2.718 ||| 0-2 ||| 24 45954 +a ||| gave ||| 0.008 0.161731 4.35218e-05 0.0008378 2.718 ||| 0-0 ||| 250 45954 +a ||| general ||| 0.00181159 0.001996 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 552 45954 +a ||| genetically prepared to respond to ||| 0.5 0.270828 2.17609e-05 1.09002e-15 2.718 ||| 0-2 ||| 2 45954 +a ||| genetically prepared to respond ||| 0.5 0.270828 2.17609e-05 1.3214e-14 2.718 ||| 0-2 ||| 2 45954 +a ||| genetically prepared to ||| 0.5 0.270828 2.17609e-05 2.90417e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| genuine free lunch in ||| 0.5 0.0437285 2.17609e-05 9.31005e-15 2.718 ||| 0-3 ||| 2 45954 +a ||| genuinely Europe-wide political ||| 0.333333 0.102041 2.17609e-05 4.18437e-13 2.718 ||| 0-1 ||| 3 45954 +a ||| genuinely Europe-wide ||| 0.333333 0.102041 2.17609e-05 1.1505e-09 2.718 ||| 0-1 ||| 3 45954 +a ||| get around ||| 0.25 0.0474763 2.17609e-05 8.80882e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| get in ||| 0.0909091 0.0437285 2.17609e-05 3.0859e-05 2.718 ||| 0-1 ||| 11 45954 +a ||| get into ||| 0.05 0.176821 2.17609e-05 8.79962e-06 2.718 ||| 0-1 ||| 20 45954 +a ||| get out of ||| 0.0588235 0.0840356 2.17609e-05 8.74263e-08 2.718 ||| 0-1 ||| 17 45954 +a ||| get out ||| 0.0625 0.0840356 4.35218e-05 3.23608e-06 2.718 ||| 0-1 ||| 32 45954 +a ||| get them from ||| 1 0.0408799 2.17609e-05 1.25976e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| get through ||| 0.166667 0.257419 2.17609e-05 7.1584e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| get to ||| 0.047619 0.270828 4.35218e-05 0.00025721 2.718 ||| 0-1 ||| 42 45954 +a ||| give or take ||| 0.5 0.179487 2.17609e-05 2.4561e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| give or ||| 0.5 0.179487 2.17609e-05 2.78091e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| give up on ||| 0.125 0.0963759 2.17609e-05 3.02418e-08 2.718 ||| 0-2 ||| 8 45954 +a ||| give up ||| 0.0327869 0.179487 4.35218e-05 6.19242e-06 2.718 ||| 0-0 ||| 61 45954 +a ||| give ||| 0.0233645 0.179487 0.000217609 0.0019824 2.718 ||| 0-0 ||| 428 45954 +a ||| given a ||| 0.030303 0.0360743 2.17609e-05 3.22822e-05 2.718 ||| 0-0 ||| 33 45954 +a ||| given rise to movement toward ||| 1 0.0996678 2.17609e-05 3.22768e-16 2.718 ||| 0-4 ||| 1 45954 +a ||| given to ||| 0.028169 0.270828 4.35218e-05 0.000119047 2.718 ||| 0-1 ||| 71 45954 +a ||| given ||| 0.00566038 0.0360743 0.000195848 0.0008024 2.718 ||| 0-0 ||| 1590 45954 +a ||| gives rise to ||| 0.0833333 0.270828 2.17609e-05 9.27422e-09 2.718 ||| 0-2 ||| 12 45954 +a ||| gives that achievement its meaning and value ||| 1 0.188272 2.17609e-05 1.61525e-23 2.718 ||| 0-0 ||| 1 45954 +a ||| gives that achievement its meaning and ||| 1 0.188272 2.17609e-05 8.29184e-20 2.718 ||| 0-0 ||| 1 45954 +a ||| gives that achievement its meaning ||| 1 0.188272 2.17609e-05 9.87465e-18 2.718 ||| 0-0 ||| 1 45954 +a ||| gives that achievement its ||| 1 0.188272 2.17609e-05 3.03835e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| gives that achievement ||| 1 0.188272 2.17609e-05 1.52896e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| gives that ||| 1 0.188272 2.17609e-05 5.88062e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| gives ||| 0.0236686 0.188272 8.70436e-05 0.0007198 2.718 ||| 0-0 ||| 169 45954 +a ||| giving ||| 0.0245902 0.165939 0.000130565 0.0008968 2.718 ||| 0-0 ||| 244 45954 +a ||| glimpse at ||| 0.333333 0.185652 2.17609e-05 3.32267e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| globally ||| 0.0135135 0.229965 4.35218e-05 0.0007788 2.718 ||| 0-0 ||| 148 45954 +a ||| go along with ||| 0.222222 0.15015 4.35218e-05 3.08086e-09 2.718 ||| 0-1 ||| 9 45954 +a ||| go along ||| 0.166667 0.15015 2.17609e-05 8.12312e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| go back on ||| 0.5 0.0963759 2.17609e-05 2.45887e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| go back to ||| 0.0384615 0.270828 2.17609e-05 3.13163e-07 2.718 ||| 0-2 ||| 26 45954 +a ||| go down in ||| 0.5 0.0437285 2.17609e-05 3.95021e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| go to ||| 0.0196078 0.270828 6.52827e-05 0.000225329 2.718 ||| 0-1 ||| 153 45954 +a ||| go unmet ||| 0.142857 0.0290118 2.17609e-05 2.4544e-09 2.718 ||| 0-0 ||| 7 45954 +a ||| go ||| 0.00829187 0.0290118 0.000108804 0.0003776 2.718 ||| 0-0 ||| 603 45954 +a ||| going at ||| 0.5 0.185652 2.17609e-05 1.09546e-05 2.718 ||| 0-1 ||| 2 45954 +a ||| going public ||| 0.166667 0.0117878 2.17609e-05 2.48296e-08 2.718 ||| 0-0 ||| 6 45954 +a ||| going to ||| 0.0481928 0.270828 8.70436e-05 0.000140291 2.718 ||| 0-1 ||| 83 45954 +a ||| going ||| 0.00869565 0.0117878 4.35218e-05 7.08e-05 2.718 ||| 0-0 ||| 230 45954 +a ||| gone into ||| 0.25 0.176821 2.17609e-05 1.52745e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| governance of ||| 0.0909091 0.0164489 2.17609e-05 2.80418e-07 2.718 ||| 0-1 ||| 11 45954 +a ||| government to ||| 0.0194175 0.270828 4.35218e-05 0.000163694 2.718 ||| 0-1 ||| 103 45954 +a ||| governments are ||| 0.0188679 0.0021546 2.17609e-05 6.9889e-07 2.718 ||| 0-0 ||| 53 45954 +a ||| governments ||| 0.000393391 0.0021546 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 2542 45954 +a ||| granted to ||| 0.25 0.270828 2.17609e-05 1.70208e-05 2.718 ||| 0-1 ||| 4 45954 +a ||| granted ||| 0.00666667 0.015625 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 150 45954 +a ||| granting ||| 0.0277778 0.111111 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 36 45954 +a ||| greater scale in ||| 0.5 0.0437285 2.17609e-05 5.38268e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| ground over ||| 0.5 0.07993 2.17609e-05 1.73235e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| ground to ||| 0.0714286 0.270828 2.17609e-05 0.00011692 2.718 ||| 0-1 ||| 14 45954 +a ||| grow to ||| 0.0555556 0.270828 2.17609e-05 2.54985e-05 2.718 ||| 0-1 ||| 18 45954 +a ||| growers ||| 0.0526316 0.0555556 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 19 45954 +a ||| growing at ||| 0.0277778 0.185652 2.17609e-05 3.81851e-06 2.718 ||| 0-1 ||| 36 45954 +a ||| growing by the ||| 0.5 0.0269646 2.17609e-05 5.35762e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| growing by ||| 0.2 0.0269646 2.17609e-05 1.00841e-06 2.718 ||| 0-1 ||| 5 45954 +a ||| guarantee of ||| 0.027027 0.0164489 2.17609e-05 4.20627e-07 2.718 ||| 0-1 ||| 37 45954 +a ||| guidance was replaced by ||| 1 0.172414 2.17609e-05 7.85463e-14 2.718 ||| 0-2 ||| 1 45954 +a ||| guidance was replaced ||| 1 0.172414 2.17609e-05 1.15961e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| guide ||| 0.00819672 0.108527 2.17609e-05 0.0001652 2.718 ||| 0-0 ||| 122 45954 +a ||| habits ||| 0.0147059 0.0135135 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 68 45954 +a ||| had been scheduled to ||| 1 0.270828 2.17609e-05 3.03011e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| had saved ||| 0.333333 0.126667 2.17609e-05 3.18857e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| had sent him to ||| 0.5 0.270828 2.17609e-05 1.88918e-11 2.718 ||| 0-3 ||| 2 45954 +a ||| had to be bailed out ||| 0.5 0.270828 2.17609e-05 8.29968e-13 2.718 ||| 0-1 ||| 2 45954 +a ||| had to be bailed ||| 1 0.270828 2.17609e-05 1.87115e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| had to be ||| 0.0192308 0.270828 2.17609e-05 4.79782e-06 2.718 ||| 0-1 ||| 52 45954 +a ||| had to ||| 0.00352113 0.270828 2.17609e-05 0.000465519 2.718 ||| 0-1 ||| 284 45954 +a ||| half to ||| 1 0.270828 2.17609e-05 2.97537e-05 2.718 ||| 0-1 ||| 1 45954 +a ||| halted ||| 0.0384615 0.0294118 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 26 45954 +a ||| hand in ||| 0.0196078 0.0437285 2.17609e-05 1.86183e-05 2.718 ||| 0-1 ||| 51 45954 +a ||| hand over ||| 0.0833333 0.07993 2.17609e-05 2.29929e-06 2.718 ||| 0-1 ||| 12 45954 +a ||| hands to ||| 0.142857 0.270828 2.17609e-05 4.03917e-05 2.718 ||| 0-1 ||| 7 45954 +a ||| happen to be ||| 0.166667 0.270828 2.17609e-05 3.50509e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| happen to ||| 0.0740741 0.270828 4.35218e-05 3.40089e-05 2.718 ||| 0-1 ||| 27 45954 +a ||| happening to ||| 0.166667 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| hard against ||| 0.5 0.0413907 2.17609e-05 7.93137e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| hard for people like me to ||| 0.333333 0.270828 2.17609e-05 6.42537e-17 2.718 ||| 0-5 ||| 3 45954 +a ||| hard to ||| 0.00847458 0.270828 4.35218e-05 0.000146673 2.718 ||| 0-1 ||| 236 45954 +a ||| hard-core ||| 0.5 0.111111 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| harder to ||| 0.02 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-1 ||| 50 45954 +a ||| hardly likely to evoke an outpouring ||| 0.5 0.270828 2.17609e-05 1.19631e-21 2.718 ||| 0-2 ||| 2 45954 +a ||| hardly likely to evoke an ||| 0.5 0.270828 2.17609e-05 1.84047e-16 2.718 ||| 0-2 ||| 2 45954 +a ||| hardly likely to evoke ||| 0.5 0.270828 2.17609e-05 5.31713e-14 2.718 ||| 0-2 ||| 2 45954 +a ||| hardly likely to ||| 0.2 0.270828 2.17609e-05 8.1802e-09 2.718 ||| 0-2 ||| 5 45954 +a ||| harm and no cure . ||| 1 0.0549451 2.17609e-05 6.1542e-17 2.718 ||| 0-0 ||| 1 45954 +a ||| harm and no cure ||| 1 0.0549451 2.17609e-05 1.33848e-14 2.718 ||| 0-0 ||| 1 45954 +a ||| harm and no ||| 1 0.0549451 2.17609e-05 1.0296e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| harm and ||| 0.2 0.0549451 2.17609e-05 9.90858e-07 2.718 ||| 0-0 ||| 5 45954 +a ||| harm ||| 0.0118343 0.0549451 4.35218e-05 0.000118 2.718 ||| 0-0 ||| 169 45954 +a ||| harming ||| 0.1 0.26087 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 10 45954 +a ||| has abandoned ||| 0.142857 0.0576923 2.17609e-05 3.52435e-07 2.718 ||| 0-1 ||| 7 45954 +a ||| has asked ||| 0.111111 0.13059 2.17609e-05 2.85864e-06 2.718 ||| 0-1 ||| 9 45954 +a ||| has become in ||| 1 0.0437285 2.17609e-05 8.80209e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| has continued to ||| 0.0714286 0.270828 2.17609e-05 1.12862e-07 2.718 ||| 0-2 ||| 14 45954 +a ||| has ever been in ||| 1 0.0437285 2.17609e-05 1.29963e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| has exhausted many on ||| 1 0.0963759 2.17609e-05 9.72114e-13 2.718 ||| 0-3 ||| 1 45954 +a ||| has in ||| 0.0588235 0.0437285 4.35218e-05 0.000130324 2.718 ||| 0-1 ||| 34 45954 +a ||| has made to ||| 1 0.270828 2.17609e-05 1.19922e-06 2.718 ||| 0-2 ||| 1 45954 +a ||| has nothing close to the ||| 0.333333 0.270828 2.17609e-05 2.79404e-12 2.718 ||| 0-3 ||| 3 45954 +a ||| has nothing close to ||| 0.333333 0.270828 2.17609e-05 5.25892e-11 2.718 ||| 0-3 ||| 3 45954 +a ||| has placed on ||| 0.5 0.0963759 2.17609e-05 6.64409e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| has since ||| 0.0416667 0.0114416 2.17609e-05 1.37058e-06 2.718 ||| 0-1 ||| 24 45954 +a ||| has to offer ||| 0.0909091 0.270828 2.17609e-05 1.05801e-07 2.718 ||| 0-1 ||| 11 45954 +a ||| has to the ||| 1 0.270828 2.17609e-05 5.77123e-05 2.718 ||| 0-1 ||| 1 45954 +a ||| has to ||| 0.0151515 0.270828 4.35218e-05 0.00108625 2.718 ||| 0-1 ||| 132 45954 +a ||| has ||| 0.000138966 0.000315 4.35218e-05 5.9e-05 2.718 ||| 0-0 ||| 14392 45954 +a ||| have been to ||| 0.333333 0.270828 2.17609e-05 2.8205e-06 2.718 ||| 0-2 ||| 3 45954 +a ||| have done more to stop ||| 0.5 0.270828 2.17609e-05 1.37096e-13 2.718 ||| 0-3 ||| 2 45954 +a ||| have done more to ||| 0.5 0.270828 2.17609e-05 8.44186e-10 2.718 ||| 0-3 ||| 2 45954 +a ||| have led ||| 0.0172414 0.0096051 2.17609e-05 5.483e-07 2.718 ||| 0-1 ||| 58 45954 +a ||| have mounted such a sharp challenge to ||| 1 0.270828 2.17609e-05 2.99721e-20 2.718 ||| 0-6 ||| 1 45954 +a ||| have protected ||| 0.5 0.0875 2.17609e-05 8.52911e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| have pursued ||| 0.142857 0.0983607 2.17609e-05 1.0966e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| have survived ||| 0.125 0.263566 2.17609e-05 2.07136e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| have the ||| 0.00362319 0.0011566 2.17609e-05 1.52306e-05 2.718 ||| 0-1 ||| 276 45954 +a ||| have thrown ||| 0.0714286 0.0273973 2.17609e-05 1.21844e-07 2.718 ||| 0-1 ||| 14 45954 +a ||| have to be happy ||| 1 0.270828 2.17609e-05 9.05692e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| have to be ||| 0.012987 0.270828 2.17609e-05 1.74172e-05 2.718 ||| 0-1 ||| 77 45954 +a ||| have to ||| 0.0263158 0.270828 0.000174087 0.00168994 2.718 ||| 0-1 ||| 304 45954 +a ||| have yet to receive ||| 0.5 0.270828 2.17609e-05 4.04452e-11 2.718 ||| 0-2 ||| 2 45954 +a ||| have yet to ||| 0.0285714 0.270828 2.17609e-05 8.88907e-07 2.718 ||| 0-2 ||| 35 45954 +a ||| have ||| 8.55066e-05 6.25e-05 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 11695 45954 +a ||| having ||| 0.00131406 0.0085197 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 761 45954 +a ||| he became Turkey ||| 0.166667 0.0194524 2.17609e-05 1.55153e-10 2.718 ||| 0-1 ||| 6 45954 +a ||| he became ||| 0.0384615 0.0194524 2.17609e-05 9.95211e-07 2.718 ||| 0-1 ||| 26 45954 +a ||| he chose ||| 0.0769231 0.0514286 2.17609e-05 3.31737e-07 2.718 ||| 0-1 ||| 13 45954 +a ||| he considers ||| 0.25 0.0422535 2.17609e-05 1.10579e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| he did so at the ||| 1 0.185652 2.17609e-05 1.53334e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| he did so at ||| 1 0.185652 2.17609e-05 2.88604e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| he did so to ||| 1 0.270828 2.17609e-05 3.69603e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| he has so ||| 0.5 0.0032086 2.17609e-05 1.58843e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| he has to the ||| 1 0.270828 2.17609e-05 1.80276e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| he has to ||| 0.1 0.270828 2.17609e-05 3.39313e-06 2.718 ||| 0-2 ||| 10 45954 +a ||| he has ||| 0.00677966 0.0032086 4.35218e-05 7.04871e-07 2.718 ||| 0-0 ||| 295 45954 +a ||| he is to ||| 0.25 0.270828 2.17609e-05 1.68526e-05 2.718 ||| 0-2 ||| 4 45954 +a ||| he is viewing ||| 0.5 0.121951 2.17609e-05 3.03768e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| he left ||| 0.0625 0.0032086 2.17609e-05 7.17275e-08 2.718 ||| 0-0 ||| 16 45954 +a ||| he made to ||| 0.5 0.270828 2.17609e-05 1.12879e-06 2.718 ||| 0-2 ||| 2 45954 +a ||| he should have done more to stop ||| 0.5 0.270828 2.17609e-05 5.25629e-19 2.718 ||| 0-5 ||| 2 45954 +a ||| he should have done more to ||| 0.5 0.270828 2.17609e-05 3.23663e-15 2.718 ||| 0-5 ||| 2 45954 +a ||| he supports ||| 0.0526316 0.11811 2.17609e-05 5.52895e-07 2.718 ||| 0-1 ||| 19 45954 +a ||| he trusted , ||| 1 0.0032086 2.17609e-05 5.64032e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| he trusted ||| 1 0.0032086 2.17609e-05 2.7612e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| he was due to arrive ||| 0.166667 0.270828 2.17609e-05 1.85987e-14 2.718 ||| 0-3 ||| 6 45954 +a ||| he was due to ||| 0.166667 0.270828 2.17609e-05 9.53781e-10 2.718 ||| 0-3 ||| 6 45954 +a ||| he was of ||| 1 0.0164489 2.17609e-05 2.54677e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| he was ||| 0.00283286 0.0032086 2.17609e-05 8.02808e-07 2.718 ||| 0-0 ||| 353 45954 +a ||| he went on to ||| 0.333333 0.0963759 2.17609e-05 1.63441e-09 2.718 ||| 0-2 ||| 3 45954 +a ||| he went on ||| 0.5 0.0963759 2.17609e-05 1.98133e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| he ||| 0.00401146 0.0032086 0.000152326 0.0002124 2.718 ||| 0-0 ||| 1745 45954 +a ||| head with ||| 0.5 0.0330797 2.17609e-05 1.91239e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| headed by ||| 0.015625 0.0269646 2.17609e-05 2.63238e-07 2.718 ||| 0-1 ||| 64 45954 +a ||| headed for ||| 0.0434783 0.0587253 2.17609e-05 9.22709e-07 2.718 ||| 0-1 ||| 23 45954 +a ||| heading toward ||| 0.0833333 0.0996678 2.17609e-05 5.5224e-08 2.718 ||| 0-1 ||| 12 45954 +a ||| heading ||| 0.0666667 0.0641026 6.52827e-05 5.9e-05 2.718 ||| 0-0 ||| 45 45954 +a ||| healthy ||| 0.00471698 0.004386 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 212 45954 +a ||| heavily to ||| 0.142857 0.270828 2.17609e-05 2.97537e-05 2.718 ||| 0-1 ||| 7 45954 +a ||| heavy blow to ||| 0.333333 0.270828 2.17609e-05 8.69763e-10 2.718 ||| 0-2 ||| 3 45954 +a ||| heavy ||| 0.00684932 0.0141509 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 146 45954 +a ||| held across ||| 1 0.0490798 2.17609e-05 3.5804e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| held to ||| 0.0769231 0.270828 2.17609e-05 0.000155184 2.718 ||| 0-1 ||| 13 45954 +a ||| help by ||| 0.142857 0.350156 2.17609e-05 7.15356e-05 2.718 ||| 0-0 ||| 7 45954 +a ||| help empower ||| 0.5 0.350156 2.17609e-05 6.86471e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| help it ||| 0.125 0.350156 2.17609e-05 0.000281205 2.718 ||| 0-0 ||| 8 45954 +a ||| help secure ||| 0.166667 0.350156 2.17609e-05 1.02865e-06 2.718 ||| 0-0 ||| 6 45954 +a ||| help speed the demise of ||| 0.5 0.350156 2.17609e-05 1.15284e-14 2.718 ||| 0-0 ||| 2 45954 +a ||| help speed the demise ||| 0.5 0.350156 2.17609e-05 4.26722e-13 2.718 ||| 0-0 ||| 2 45954 +a ||| help speed the ||| 0.5 0.350156 2.17609e-05 2.18832e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| help speed ||| 0.333333 0.350156 2.17609e-05 4.11883e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| help stabilize ||| 0.0909091 0.350156 2.17609e-05 6.86471e-08 2.718 ||| 0-0 ||| 11 45954 +a ||| help the ||| 0.010989 0.350156 2.17609e-05 0.000561107 2.718 ||| 0-0 ||| 91 45954 +a ||| help them ||| 0.030303 0.350156 2.17609e-05 2.06448e-05 2.718 ||| 0-0 ||| 33 45954 +a ||| help to resolve the ||| 0.5 0.270828 2.17609e-05 3.42971e-10 2.718 ||| 0-1 ||| 2 45954 +a ||| help to resolve ||| 0.5 0.270828 2.17609e-05 6.45536e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| help to ||| 0.0405405 0.270828 6.52827e-05 0.000110537 2.718 ||| 0-1 ||| 74 45954 +a ||| help ||| 0.0142303 0.350156 0.00047874 0.0105611 2.718 ||| 0-0 ||| 1546 45954 +a ||| helped ||| 0.00965251 0.360536 0.000108804 0.0034928 2.718 ||| 0-0 ||| 518 45954 +a ||| helping to ||| 0.0212766 0.39645 4.35218e-05 0.00019565 2.718 ||| 0-0 ||| 94 45954 +a ||| helping ||| 0.0191571 0.39645 0.000108804 0.0023718 2.718 ||| 0-0 ||| 261 45954 +a ||| helps ||| 0.0078125 0.416357 2.17609e-05 0.0013216 2.718 ||| 0-0 ||| 128 45954 +a ||| her in ||| 0.222222 0.0437285 4.35218e-05 2.3209e-05 2.718 ||| 0-1 ||| 9 45954 +a ||| her seat nearby ||| 1 0.0526316 2.17609e-05 9.05199e-13 2.718 ||| 0-2 ||| 1 45954 +a ||| her up to ||| 0.333333 0.270828 2.17609e-05 6.04273e-07 2.718 ||| 0-2 ||| 3 45954 +a ||| here to ||| 0.0769231 0.270828 2.17609e-05 8.71661e-05 2.718 ||| 0-1 ||| 13 45954 +a ||| here ||| 0.0014881 0.0528757 2.17609e-05 0.0006726 2.718 ||| 0-0 ||| 672 45954 +a ||| higher than ||| 0.00588235 0.010385 2.17609e-05 2.43656e-07 2.718 ||| 0-1 ||| 170 45954 +a ||| highly take ||| 1 0.018009 2.17609e-05 5.51815e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| him from ||| 0.5 0.0408799 2.17609e-05 5.69894e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| him into ||| 0.166667 0.176821 2.17609e-05 7.7817e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| him on ||| 0.2 0.0963759 2.17609e-05 1.78593e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| him to appear in ||| 0.166667 0.0437285 2.17609e-05 4.0925e-10 2.718 ||| 0-3 ||| 6 45954 +a ||| him to complete ||| 1 0.270828 2.17609e-05 1.91974e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| him to seek further ||| 0.333333 0.270828 2.17609e-05 1.39069e-11 2.718 ||| 0-1 ||| 3 45954 +a ||| him to seek ||| 0.333333 0.270828 2.17609e-05 4.28301e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| him to ||| 0.0735294 0.270828 0.000108804 0.000227457 2.718 ||| 0-1 ||| 68 45954 +a ||| himself against ||| 0.333333 0.0413907 2.17609e-05 5.97729e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| himself to ||| 0.0952381 0.270828 4.35218e-05 0.000110537 2.718 ||| 0-1 ||| 21 45954 +a ||| hired the Dutchman ||| 1 0.285714 2.17609e-05 4.07504e-11 2.718 ||| 0-0 ||| 1 45954 +a ||| hired the ||| 1 0.285714 2.17609e-05 6.26929e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| hired ||| 0.047619 0.285714 2.17609e-05 0.000118 2.718 ||| 0-0 ||| 21 45954 +a ||| his focus to ||| 0.5 0.270828 2.17609e-05 4.67791e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| his or ||| 0.0294118 0.0017083 2.17609e-05 1.82083e-07 2.718 ||| 0-0 ||| 34 45954 +a ||| his trust in the near automatic mechanisms ||| 1 0.0437285 2.17609e-05 2.67727e-25 2.718 ||| 0-2 ||| 1 45954 +a ||| his trust in the near automatic ||| 1 0.0437285 2.17609e-05 4.11888e-20 2.718 ||| 0-2 ||| 1 45954 +a ||| his trust in the near ||| 1 0.0437285 2.17609e-05 6.33674e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| his trust in the ||| 1 0.0437285 2.17609e-05 1.2186e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| his trust in ||| 1 0.0437285 2.17609e-05 2.29364e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| his way ||| 0.0588235 0.0017083 2.17609e-05 1.97257e-07 2.718 ||| 0-0 ||| 17 45954 +a ||| his ||| 0.00117474 0.0017083 0.000174087 0.0001298 2.718 ||| 0-0 ||| 6810 45954 +a ||| historically ||| 0.00625 0.0242424 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 160 45954 +a ||| hit in ||| 0.333333 0.0437285 2.17609e-05 5.6118e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| hit ||| 0.0174672 0.134615 8.70436e-05 0.0006608 2.718 ||| 0-0 ||| 229 45954 +a ||| hitting ||| 0.02 0.184615 2.17609e-05 0.0001416 2.718 ||| 0-0 ||| 50 45954 +a ||| hold as to ||| 1 0.270828 2.17609e-05 1.54575e-06 2.718 ||| 0-2 ||| 1 45954 +a ||| hold back ||| 0.125 0.0671913 2.17609e-05 7.31523e-07 2.718 ||| 0-1 ||| 8 45954 +a ||| hold fast to ||| 0.333333 0.270828 2.17609e-05 1.54292e-08 2.718 ||| 0-2 ||| 3 45954 +a ||| hold up ||| 0.111111 0.0268991 2.17609e-05 7.11752e-07 2.718 ||| 0-1 ||| 9 45954 +a ||| holding ||| 0.00956938 0.019544 4.35218e-05 7.08e-05 2.718 ||| 0-0 ||| 209 45954 +a ||| home at ||| 0.25 0.185652 2.17609e-05 9.62808e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| home in ||| 0.0625 0.0437285 2.17609e-05 1.47933e-05 2.718 ||| 0-1 ||| 16 45954 +a ||| home to me ||| 1 0.270828 2.17609e-05 1.68185e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| home to ||| 0.0566038 0.270828 6.52827e-05 0.000123303 2.718 ||| 0-1 ||| 53 45954 +a ||| home ||| 0.00196657 0.0033445 4.35218e-05 4.72e-05 2.718 ||| 0-0 ||| 1017 45954 +a ||| honestly at ||| 1 0.185652 2.17609e-05 1.66133e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| hosts ||| 0.025641 0.0555556 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 39 45954 +a ||| house in ||| 0.0666667 0.0437285 2.17609e-05 4.08024e-06 2.718 ||| 0-1 ||| 15 45954 +a ||| how to ||| 0.00898204 0.270828 6.52827e-05 0.000144546 2.718 ||| 0-1 ||| 334 45954 +a ||| huge leap of ||| 0.5 0.0164489 2.17609e-05 4.36891e-11 2.718 ||| 0-2 ||| 2 45954 +a ||| hundreds of ||| 0.0028169 0.0164489 2.17609e-05 1.12167e-06 2.718 ||| 0-1 ||| 355 45954 +a ||| hurt if ||| 0.333333 0.219512 2.17609e-05 2.02757e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| hurt ||| 0.0307692 0.219512 4.35218e-05 0.0003186 2.718 ||| 0-0 ||| 65 45954 +a ||| if they are to secure ||| 1 0.270828 2.17609e-05 9.27706e-13 2.718 ||| 0-3 ||| 1 45954 +a ||| if they are to ||| 0.111111 0.270828 2.17609e-05 9.5247e-09 2.718 ||| 0-3 ||| 9 45954 +a ||| if we divided up equally what we ||| 0.5 0.0551471 2.17609e-05 1.45441e-22 2.718 ||| 0-2 ||| 2 45954 +a ||| if we divided up equally what ||| 0.5 0.0551471 2.17609e-05 6.27305e-20 2.718 ||| 0-2 ||| 2 45954 +a ||| if we divided up equally ||| 0.5 0.0551471 2.17609e-05 6.35503e-17 2.718 ||| 0-2 ||| 2 45954 +a ||| if we divided up ||| 0.5 0.0551471 2.17609e-05 8.15793e-13 2.718 ||| 0-2 ||| 2 45954 +a ||| if we divided ||| 0.5 0.0551471 2.17609e-05 2.61162e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| if you are ||| 0.0285714 0.0064903 2.17609e-05 7.22758e-10 2.718 ||| 0-1 ||| 35 45954 +a ||| if you ||| 0.00534759 0.0064903 2.17609e-05 9.76238e-08 2.718 ||| 0-1 ||| 187 45954 +a ||| ignored ||| 0.00657895 0.0318725 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 152 45954 +a ||| ignoring ||| 0.0108696 0.01 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 92 45954 +a ||| immediately after ||| 0.0147059 0.016129 2.17609e-05 1.77802e-08 2.718 ||| 0-0 ||| 68 45954 +a ||| immediately assumes ||| 0.25 0.016129 2.17609e-05 3.068e-10 2.718 ||| 0-0 ||| 4 45954 +a ||| immediately ||| 0.0125786 0.016129 8.70436e-05 4.72e-05 2.718 ||| 0-0 ||| 318 45954 +a ||| immigrants ||| 0.00330033 0.0048309 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 303 45954 +a ||| impediment to ||| 0.1 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 10 45954 +a ||| implementing real administrative ||| 1 0.0079365 2.17609e-05 2.34088e-14 2.718 ||| 0-2 ||| 1 45954 +a ||| important attribute in ||| 1 0.0437285 2.17609e-05 5.47023e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| impressive than ||| 0.5 0.010385 2.17609e-05 1.62604e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| in " beggar-thy-neighbor " ||| 0.333333 0.0437285 2.17609e-05 6.36645e-12 2.718 ||| 0-0 ||| 3 45954 +a ||| in " beggar-thy-neighbor ||| 0.333333 0.0437285 2.17609e-05 1.27479e-09 2.718 ||| 0-0 ||| 3 45954 +a ||| in " ||| 0.029703 0.0437285 6.52827e-05 0.000196122 2.718 ||| 0-0 ||| 101 45954 +a ||| in , providing ||| 1 0.0437285 2.17609e-05 7.29188e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| in , ||| 0.0638298 0.0437285 6.52827e-05 0.00802187 2.718 ||| 0-0 ||| 47 45954 +a ||| in 19 ||| 0.5 0.0437285 2.17609e-05 2.5526e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| in 1943 , Peronism ||| 1 0.0437285 2.17609e-05 3.38924e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| in 1943 , ||| 0.5 0.0437285 2.17609e-05 5.21422e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| in 1943 ||| 0.5 0.0437285 2.17609e-05 2.5526e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| in China ||| 0.00181159 0.0437285 2.17609e-05 2.75445e-05 2.718 ||| 0-0 ||| 552 45954 +a ||| in France , ||| 0.0125 0.0437285 2.17609e-05 7.8133e-07 2.718 ||| 0-0 ||| 80 45954 +a ||| in France ||| 0.00425532 0.0437285 2.17609e-05 3.82498e-06 2.718 ||| 0-0 ||| 235 45954 +a ||| in Iraq ||| 0.00151515 0.0437285 2.17609e-05 5.10128e-06 2.718 ||| 0-0 ||| 660 45954 +a ||| in Science ||| 0.166667 0.0437285 2.17609e-05 2.5526e-07 2.718 ||| 0-0 ||| 6 45954 +a ||| in a joint press conference with Sharif ||| 1 0.0437285 2.17609e-05 7.69163e-25 2.718 ||| 0-0 ||| 1 45954 +a ||| in a joint press conference with ||| 1 0.0437285 2.17609e-05 1.18333e-19 2.718 ||| 0-0 ||| 1 45954 +a ||| in a joint press conference ||| 0.5 0.0437285 2.17609e-05 3.12002e-17 2.718 ||| 0-0 ||| 2 45954 +a ||| in a joint press ||| 1 0.0437285 2.17609e-05 4.80002e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| in a joint ||| 1 0.0437285 2.17609e-05 6.16178e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| in a ||| 0.00614439 0.0437285 0.000435218 0.00157994 2.718 ||| 0-0 ||| 3255 45954 +a ||| in again ||| 1 0.0437285 2.17609e-05 1.50486e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| in agreeing to ||| 0.333333 0.270828 2.17609e-05 9.80743e-08 2.718 ||| 0-2 ||| 3 45954 +a ||| in an ||| 0.00164745 0.0437285 2.17609e-05 0.000135932 2.718 ||| 0-0 ||| 607 45954 +a ||| in banking should ||| 0.25 0.0437285 2.17609e-05 1.56653e-09 2.718 ||| 0-0 ||| 4 45954 +a ||| in banking ||| 0.0833333 0.0437285 2.17609e-05 1.2763e-06 2.718 ||| 0-0 ||| 12 45954 +a ||| in bullishness about ||| 1 0.0437285 2.17609e-05 3.09988e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| in bullishness ||| 1 0.0437285 2.17609e-05 2.5526e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| in collusion with ||| 1 0.0437285 2.17609e-05 9.68125e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| in collusion ||| 1 0.0437285 2.17609e-05 2.5526e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| in connection with ||| 0.0588235 0.0437285 2.17609e-05 3.8725e-09 2.718 ||| 0-0 ||| 17 45954 +a ||| in connection ||| 0.0526316 0.0437285 2.17609e-05 1.02104e-06 2.718 ||| 0-0 ||| 19 45954 +a ||| in considering ||| 0.333333 0.0437285 2.17609e-05 1.02104e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| in contrast ||| 0.008 0.0437285 2.17609e-05 1.02104e-06 2.718 ||| 0-0 ||| 125 45954 +a ||| in court ||| 0.0333333 0.0437285 2.17609e-05 1.53156e-06 2.718 ||| 0-0 ||| 30 45954 +a ||| in dribs and ||| 1 0.521864 2.17609e-05 3.89118e-09 2.718 ||| 0-0 0-1 ||| 1 45954 +a ||| in dribs ||| 1 0.521864 2.17609e-05 4.63395e-07 2.718 ||| 0-0 0-1 ||| 1 45954 +a ||| in either country would ||| 0.333333 0.0437285 2.17609e-05 1.38518e-10 2.718 ||| 0-0 ||| 3 45954 +a ||| in either country ||| 0.2 0.0437285 2.17609e-05 2.9957e-08 2.718 ||| 0-0 ||| 5 45954 +a ||| in either ||| 0.0277778 0.0437285 2.17609e-05 3.87642e-05 2.718 ||| 0-0 ||| 36 45954 +a ||| in euros ||| 0.0434783 0.0437285 2.17609e-05 7.65781e-07 2.718 ||| 0-0 ||| 23 45954 +a ||| in extensive ||| 0.25 0.0437285 2.17609e-05 7.65781e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| in fact ||| 0.00109649 0.0437285 2.17609e-05 2.57577e-05 2.718 ||| 0-0 ||| 912 45954 +a ||| in favor ||| 0.00429185 0.0746115 2.17609e-05 2.2243e-05 2.718 ||| 0-0 0-1 ||| 233 45954 +a ||| in fits ||| 0.25 0.0437285 2.17609e-05 5.1052e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| in following through ||| 0.25 0.0437285 2.17609e-05 2.32568e-09 2.718 ||| 0-0 ||| 4 45954 +a ||| in following ||| 0.2 0.0437285 2.17609e-05 4.59076e-06 2.718 ||| 0-0 ||| 5 45954 +a ||| in front of ||| 0.0169492 0.0437285 2.17609e-05 7.57514e-08 2.718 ||| 0-0 ||| 59 45954 +a ||| in front ||| 0.0169492 0.0437285 2.17609e-05 2.80394e-06 2.718 ||| 0-0 ||| 59 45954 +a ||| in giving ||| 0.25 0.165939 2.17609e-05 1.37797e-05 2.718 ||| 0-1 ||| 4 45954 +a ||| in greater ||| 0.0526316 0.0437285 2.17609e-05 6.37758e-06 2.718 ||| 0-0 ||| 19 45954 +a ||| in his ||| 0.0021692 0.0437285 2.17609e-05 3.92747e-05 2.718 ||| 0-0 ||| 461 45954 +a ||| in it , ||| 0.111111 0.0437285 2.17609e-05 0.000213594 2.718 ||| 0-0 ||| 9 45954 +a ||| in it ||| 0.0238095 0.0437285 2.17609e-05 0.00104564 2.718 ||| 0-0 ||| 42 45954 +a ||| in its outlook ||| 0.5 0.0437285 2.17609e-05 1.01451e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| in its ||| 0.00151515 0.0437285 2.17609e-05 7.80389e-05 2.718 ||| 0-0 ||| 660 45954 +a ||| in judgment ||| 0.333333 0.0437285 2.17609e-05 1.78682e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| in keeping with ||| 0.0454545 0.0879684 2.17609e-05 6.10186e-08 2.718 ||| 0-1 0-2 ||| 22 45954 +a ||| in launching ||| 0.111111 0.0437285 2.17609e-05 1.02104e-06 2.718 ||| 0-0 ||| 9 45954 +a ||| in laying ||| 0.333333 0.0437285 2.17609e-05 5.1052e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| in line ||| 0.0125 0.0437285 2.17609e-05 1.81078e-05 2.718 ||| 0-0 ||| 80 45954 +a ||| in making us ||| 0.0666667 0.0437285 2.17609e-05 1.04945e-08 2.718 ||| 0-0 ||| 15 45954 +a ||| in making ||| 0.0181818 0.0437285 2.17609e-05 1.8363e-05 2.718 ||| 0-0 ||| 55 45954 +a ||| in mightily ||| 1 0.0437285 2.17609e-05 5.1052e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| in motion ||| 0.03125 0.0437285 2.17609e-05 1.2763e-06 2.718 ||| 0-0 ||| 32 45954 +a ||| in on ||| 0.153846 0.0700522 4.35218e-05 0.00100928 2.718 ||| 0-0 0-1 ||| 13 45954 +a ||| in one ||| 0.00515464 0.0437285 2.17609e-05 0.000157869 2.718 ||| 0-0 ||| 194 45954 +a ||| in opposition to ||| 0.0833333 0.270828 2.17609e-05 2.2884e-07 2.718 ||| 0-2 ||| 12 45954 +a ||| in order to make it ||| 0.5 0.270828 2.17609e-05 1.4217e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| in order to make ||| 0.0833333 0.270828 2.17609e-05 5.3394e-09 2.718 ||| 0-2 ||| 12 45954 +a ||| in order to ||| 0.00483871 0.270828 6.52827e-05 4.05022e-06 2.718 ||| 0-2 ||| 620 45954 +a ||| in order ||| 0.00697674 0.0437285 6.52827e-05 3.16248e-05 2.718 ||| 0-0 ||| 430 45954 +a ||| in other words , they have to ||| 1 0.0437285 2.17609e-05 1.77092e-15 2.718 ||| 0-0 ||| 1 45954 +a ||| in other words , they have ||| 1 0.0437285 2.17609e-05 2.14683e-14 2.718 ||| 0-0 ||| 1 45954 +a ||| in other words , they ||| 1 0.0437285 2.17609e-05 4.15818e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| in other words , ||| 0.004329 0.0437285 2.17609e-05 6.73281e-10 2.718 ||| 0-0 ||| 231 45954 +a ||| in other words ||| 0.00465116 0.0437285 2.17609e-05 3.29603e-09 2.718 ||| 0-0 ||| 215 45954 +a ||| in other ||| 0.00205761 0.0437285 2.17609e-05 4.61628e-05 2.718 ||| 0-0 ||| 486 45954 +a ||| in others . ||| 0.0769231 0.0437285 2.17609e-05 2.11078e-08 2.718 ||| 0-0 ||| 13 45954 +a ||| in others ||| 0.0285714 0.0437285 2.17609e-05 4.59076e-06 2.718 ||| 0-0 ||| 35 45954 +a ||| in our backyard ||| 0.0833333 0.0437285 2.17609e-05 1.34267e-10 2.718 ||| 0-0 ||| 12 45954 +a ||| in our ||| 0.0075188 0.0437285 4.35218e-05 2.06564e-05 2.718 ||| 0-0 ||| 266 45954 +a ||| in place ||| 0.030303 0.0437285 8.70436e-05 4.99878e-05 2.718 ||| 0-0 ||| 132 45954 +a ||| in plain sight ||| 0.2 0.0437285 2.17609e-05 1.65919e-11 2.718 ||| 0-0 ||| 5 45954 +a ||| in plain ||| 0.1 0.0437285 2.17609e-05 1.2763e-06 2.718 ||| 0-0 ||| 10 45954 +a ||| in rallying ||| 1 0.0987873 2.17609e-05 1.85358e-06 2.718 ||| 0-0 0-1 ||| 1 45954 +a ||| in reducing ||| 0.0222222 0.0437285 2.17609e-05 2.04208e-06 2.718 ||| 0-0 ||| 45 45954 +a ||| in response to ||| 0.0078125 0.270828 2.17609e-05 4.89868e-07 2.718 ||| 0-2 ||| 128 45954 +a ||| in search ||| 0.0434783 0.0437285 2.17609e-05 1.2763e-06 2.718 ||| 0-0 ||| 23 45954 +a ||| in seeking out ||| 1 0.0437285 2.17609e-05 9.05786e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| in seeking ||| 0.0625 0.0437285 2.17609e-05 2.04208e-06 2.718 ||| 0-0 ||| 16 45954 +a ||| in serious ||| 0.0833333 0.0437285 2.17609e-05 8.16047e-06 2.718 ||| 0-0 ||| 12 45954 +a ||| in short ||| 0.00505051 0.0437285 2.17609e-05 1.58104e-05 2.718 ||| 0-0 ||| 198 45954 +a ||| in some parts of Africa have even ||| 1 0.0437285 2.17609e-05 6.5102e-20 2.718 ||| 0-0 ||| 1 45954 +a ||| in some parts of Africa have ||| 1 0.0437285 2.17609e-05 7.16037e-17 2.718 ||| 0-0 ||| 1 45954 +a ||| in some parts of Africa ||| 0.333333 0.0437285 2.17609e-05 1.38689e-14 2.718 ||| 0-0 ||| 3 45954 +a ||| in some parts of ||| 0.111111 0.0437285 2.17609e-05 6.88966e-11 2.718 ||| 0-0 ||| 9 45954 +a ||| in some parts ||| 0.0555556 0.0437285 2.17609e-05 2.5502e-09 2.718 ||| 0-0 ||| 18 45954 +a ||| in some ||| 0.00721154 0.0437285 6.52827e-05 2.80551e-05 2.718 ||| 0-0 ||| 416 45954 +a ||| in southern ||| 0.0153846 0.0437285 2.17609e-05 1.53156e-06 2.718 ||| 0-0 ||| 65 45954 +a ||| in supporting ||| 0.0434783 0.135743 2.17609e-05 2.96573e-05 2.718 ||| 0-0 0-1 ||| 23 45954 +a ||| in tandem ||| 0.0588235 0.0437285 2.17609e-05 5.1052e-07 2.718 ||| 0-0 ||| 17 45954 +a ||| in terms ||| 0.00239234 0.0437285 2.17609e-05 2.06564e-05 2.718 ||| 0-0 ||| 418 45954 +a ||| in the 1950 's ||| 0.0232558 0.0437285 2.17609e-05 8.44807e-10 2.718 ||| 0-0 ||| 43 45954 +a ||| in the 1950 ||| 0.25 0.0437285 2.17609e-05 5.42475e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| in the complete ||| 1 0.0437285 2.17609e-05 1.76096e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| in the development of new technologies to ||| 1 0.270828 2.17609e-05 2.90824e-17 2.718 ||| 0-6 ||| 1 45954 +a ||| in the dollar 's value ||| 0.25 0.0437285 2.17609e-05 8.22209e-13 2.718 ||| 0-0 ||| 4 45954 +a ||| in the dollar 's ||| 1 0.0437285 2.17609e-05 4.22079e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| in the dollar ||| 0.05 0.0437285 2.17609e-05 2.71029e-07 2.718 ||| 0-0 ||| 20 45954 +a ||| in the interest of ||| 0.0588235 0.0164489 4.35218e-05 6.17559e-09 2.718 ||| 0-3 ||| 34 45954 +a ||| in the league of ||| 0.333333 0.0164489 2.17609e-05 1.14461e-10 2.718 ||| 0-3 ||| 3 45954 +a ||| in the massive stimulus ||| 1 0.0437285 2.17609e-05 8.98338e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| in the massive ||| 1 0.0437285 2.17609e-05 2.30343e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| in the mind of ||| 1 0.0300887 2.17609e-05 9.93728e-09 2.718 ||| 0-0 0-3 ||| 1 45954 +a ||| in the near automatic mechanisms that characterize ||| 1 0.0437285 2.17609e-05 4.86845e-25 2.718 ||| 0-0 ||| 1 45954 +a ||| in the near automatic mechanisms that ||| 1 0.0437285 2.17609e-05 3.74497e-20 2.718 ||| 0-0 ||| 1 45954 +a ||| in the near automatic mechanisms ||| 1 0.0437285 2.17609e-05 4.58391e-18 2.718 ||| 0-0 ||| 1 45954 +a ||| in the near automatic ||| 1 0.0437285 2.17609e-05 7.05217e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| in the near ||| 0.0625 0.0437285 2.17609e-05 1.08495e-07 2.718 ||| 0-0 ||| 16 45954 +a ||| in the opinion ||| 0.25 0.0437285 2.17609e-05 9.49331e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| in the past ||| 0.00260417 0.0437285 2.17609e-05 4.20001e-07 2.718 ||| 0-0 ||| 384 45954 +a ||| in the private sector ||| 0.0294118 0.0437285 2.17609e-05 8.45176e-12 2.718 ||| 0-0 ||| 34 45954 +a ||| in the private ||| 0.25 0.0437285 2.17609e-05 1.62534e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| in the process ||| 0.02 0.0437285 4.35218e-05 4.8781e-07 2.718 ||| 0-0 ||| 100 45954 +a ||| in the ||| 0.0189912 0.0437285 0.0073987 0.00208644 2.718 ||| 0-0 ||| 17903 45954 +a ||| in their ||| 0.00140845 0.0437285 2.17609e-05 7.0389e-05 2.718 ||| 0-0 ||| 710 45954 +a ||| in to ||| 0.318182 0.157278 0.000152326 0.0128542 2.718 ||| 0-0 0-1 ||| 22 45954 +a ||| in turn put ||| 1 0.0437285 2.17609e-05 2.49509e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| in turn ||| 0.00645161 0.0437285 4.35218e-05 2.06564e-05 2.718 ||| 0-0 ||| 310 45954 +a ||| in uniform became ||| 0.5 0.0437285 2.17609e-05 4.47471e-11 2.718 ||| 0-0 ||| 2 45954 +a ||| in uniform ||| 0.25 0.0437285 2.17609e-05 2.5526e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| in violation ||| 0.04 0.0437285 2.17609e-05 5.1052e-07 2.718 ||| 0-0 ||| 25 45954 +a ||| in which ||| 0.00097561 0.0437285 2.17609e-05 4.71799e-05 2.718 ||| 0-0 ||| 1025 45954 +a ||| in ||| 0.0378202 0.0437285 0.0662837 0.0392708 2.718 ||| 0-0 ||| 80539 45954 +a ||| inability to end the ||| 1 0.270828 2.17609e-05 2.14366e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| inability to end ||| 1 0.270828 2.17609e-05 4.03478e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| inability to ||| 0.0135135 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-1 ||| 74 45954 +a ||| inadequate ||| 0.00854701 0.0251572 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 117 45954 +a ||| incentive to ||| 0.00892857 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-1 ||| 112 45954 +a ||| incited ||| 0.0384615 0.132353 4.35218e-05 0.0001062 2.718 ||| 0-0 ||| 52 45954 +a ||| included ||| 0.00534759 0.0099502 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 187 45954 +a ||| includes ||| 0.0035461 0.0354331 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 282 45954 +a ||| inclusion of ||| 0.0434783 0.0164489 2.17609e-05 5.60836e-07 2.718 ||| 0-1 ||| 23 45954 +a ||| income of ||| 0.047619 0.0164489 2.17609e-05 2.38139e-06 2.718 ||| 0-1 ||| 21 45954 +a ||| income tax in ||| 1 0.0437285 2.17609e-05 3.37735e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| incorporating them into ||| 0.5 0.176821 2.17609e-05 1.42288e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| increase in ||| 0.00266667 0.0437285 2.17609e-05 8.16047e-06 2.718 ||| 0-1 ||| 375 45954 +a ||| increasing spending on ||| 1 0.0963759 2.17609e-05 2.26442e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| independence in the ||| 0.333333 0.0437285 2.17609e-05 4.06856e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| independence in ||| 0.0181818 0.0437285 2.17609e-05 7.65781e-07 2.718 ||| 0-1 ||| 55 45954 +a ||| index stands at ||| 1 0.185652 2.17609e-05 7.77006e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| indicated to ||| 0.5 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| indicted ||| 0.0243902 0.230769 2.17609e-05 0.000177 2.718 ||| 0-0 ||| 41 45954 +a ||| indictment by US officials ||| 0.5 0.0269646 2.17609e-05 5.50059e-15 2.718 ||| 0-1 ||| 2 45954 +a ||| indictment by US ||| 0.5 0.0269646 2.17609e-05 1.69249e-10 2.718 ||| 0-1 ||| 2 45954 +a ||| indictment by ||| 0.333333 0.0269646 2.17609e-05 1.31619e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| individual ||| 0.00311042 0.0030075 4.35218e-05 2.36e-05 2.718 ||| 0-0 ||| 643 45954 +a ||| induce ||| 0.0163934 0.347826 2.17609e-05 0.000472 2.718 ||| 0-0 ||| 61 45954 +a ||| induced ||| 0.0192308 0.182927 2.17609e-05 0.000177 2.718 ||| 0-0 ||| 52 45954 +a ||| infected with HIV or AIDS in some ||| 1 0.0437285 2.17609e-05 1.10677e-24 2.718 ||| 0-5 ||| 1 45954 +a ||| infected with HIV or AIDS in ||| 1 0.0437285 2.17609e-05 1.54924e-21 2.718 ||| 0-5 ||| 1 45954 +a ||| inflated away ||| 1 0.0508475 2.17609e-05 6.4428e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| inflation soar to over ||| 0.5 0.270828 2.17609e-05 1.34541e-13 2.718 ||| 0-2 ||| 2 45954 +a ||| inflation soar to ||| 0.5 0.270828 2.17609e-05 1.93612e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| initially ||| 0.0114286 0.0092308 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 175 45954 +a ||| initiated by ||| 0.0416667 0.0269646 2.17609e-05 2.63238e-07 2.718 ||| 0-1 ||| 24 45954 +a ||| initiated in ||| 0.166667 0.0437285 2.17609e-05 1.53156e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| initiated ||| 0.0169492 0.0263158 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 59 45954 +a ||| injuring ||| 0.125 0.444444 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 8 45954 +a ||| inmates ||| 0.0869565 0.0882353 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 23 45954 +a ||| inspire ||| 0.0222222 0.197674 2.17609e-05 0.0002006 2.718 ||| 0-0 ||| 45 45954 +a ||| instead , Mubarak 's relationship with the ||| 1 0.0330797 2.17609e-05 3.05875e-19 2.718 ||| 0-5 ||| 1 45954 +a ||| instead , Mubarak 's relationship with ||| 1 0.0330797 2.17609e-05 5.75715e-18 2.718 ||| 0-5 ||| 1 45954 +a ||| instead , to ||| 0.25 0.270828 2.17609e-05 2.12756e-05 2.718 ||| 0-2 ||| 4 45954 +a ||| instead of ||| 0.00218818 0.0164489 2.17609e-05 6.86376e-06 2.718 ||| 0-1 ||| 457 45954 +a ||| institutional ||| 0.00217865 0.0023041 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 459 45954 +a ||| instructed ||| 0.166667 0.176471 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 6 45954 +a ||| instrumental in ||| 0.0277778 0.0437285 2.17609e-05 7.65781e-07 2.718 ||| 0-1 ||| 36 45954 +a ||| integration of ||| 0.0333333 0.0164489 2.17609e-05 2.80418e-07 2.718 ||| 0-1 ||| 30 45954 +a ||| intended to help ||| 0.166667 0.310492 2.17609e-05 2.91762e-07 2.718 ||| 0-1 0-2 ||| 6 45954 +a ||| intended to ||| 0.0119048 0.270828 2.17609e-05 2.76261e-05 2.718 ||| 0-1 ||| 84 45954 +a ||| interest in ||| 0.00609756 0.0437285 2.17609e-05 1.37723e-05 2.718 ||| 0-1 ||| 164 45954 +a ||| interest of ||| 0.0714286 0.0164489 6.52827e-05 7.56481e-06 2.718 ||| 0-1 ||| 42 45954 +a ||| interest to ||| 0.04 0.270828 2.17609e-05 0.000114792 2.718 ||| 0-1 ||| 25 45954 +a ||| interests of ||| 0.00714286 0.0164489 2.17609e-05 2.24119e-06 2.718 ||| 0-1 ||| 140 45954 +a ||| internationally accepted ||| 0.0714286 0.168776 2.17609e-05 1.8408e-08 2.718 ||| 0-0 ||| 14 45954 +a ||| internationally ||| 0.0060241 0.168776 2.17609e-05 0.000472 2.718 ||| 0-0 ||| 166 45954 +a ||| interviewed ||| 0.047619 0.28 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 21 45954 +a ||| into , ||| 0.5 0.176821 2.17609e-05 0.00228748 2.718 ||| 0-0 ||| 2 45954 +a ||| into TRT ||| 1 0.176821 2.17609e-05 7.27889e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| into a ||| 0.0017762 0.176821 2.17609e-05 0.00045053 2.718 ||| 0-0 ||| 563 45954 +a ||| into being ||| 0.0666667 0.176821 2.17609e-05 1.68725e-05 2.718 ||| 0-0 ||| 15 45954 +a ||| into by ||| 1 0.176821 2.17609e-05 7.58517e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| into compliance with ||| 1 0.176821 2.17609e-05 8.282e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| into compliance ||| 1 0.176821 2.17609e-05 2.18367e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| into distress ||| 0.166667 0.176821 2.17609e-05 7.27889e-08 2.718 ||| 0-0 ||| 6 45954 +a ||| into government ||| 0.333333 0.176821 2.17609e-05 5.60027e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| into having ||| 1 0.176821 2.17609e-05 2.98211e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| into his ||| 0.0434783 0.176821 2.17609e-05 1.11994e-05 2.718 ||| 0-0 ||| 23 45954 +a ||| into its ||| 0.0208333 0.176821 2.17609e-05 2.22533e-05 2.718 ||| 0-0 ||| 48 45954 +a ||| into line ||| 0.125 0.176821 2.17609e-05 5.16354e-06 2.718 ||| 0-0 ||| 8 45954 +a ||| into making it ||| 0.5 0.176821 2.17609e-05 1.39425e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| into making ||| 0.142857 0.176821 2.17609e-05 5.23633e-06 2.718 ||| 0-0 ||| 7 45954 +a ||| into operation ||| 0.333333 0.176821 2.17609e-05 3.63945e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| into play ||| 0.125 0.176821 2.17609e-05 2.76374e-06 2.718 ||| 0-0 ||| 8 45954 +a ||| into retailing ||| 1 0.176821 2.17609e-05 7.27889e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| into service ||| 1 0.176821 2.17609e-05 1.38187e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| into taking out ||| 0.5 0.176821 2.17609e-05 2.41948e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| into taking ||| 0.333333 0.176821 2.17609e-05 5.45469e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| into the atmosphere ||| 0.05 0.176821 2.17609e-05 1.93362e-08 2.718 ||| 0-0 ||| 20 45954 +a ||| into the international ||| 1 0.176821 2.17609e-05 1.46836e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| into the ||| 0.0144928 0.176821 0.00023937 0.000594961 2.718 ||| 0-0 ||| 759 45954 +a ||| into their sixties and ||| 1 0.176821 2.17609e-05 1.09554e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| into their sixties ||| 1 0.176821 2.17609e-05 1.30467e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| into their ||| 0.0227273 0.176821 2.17609e-05 2.00718e-05 2.718 ||| 0-0 ||| 44 45954 +a ||| into whatever ||| 1 0.176821 2.17609e-05 1.30908e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| into ||| 0.179435 0.176821 0.0154938 0.0111983 2.718 ||| 0-0 ||| 3968 45954 +a ||| investigation into ||| 0.125 0.176821 2.17609e-05 7.27889e-08 2.718 ||| 0-1 ||| 8 45954 +a ||| investors ||| 0.000903342 0.0041891 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 1107 45954 +a ||| involve internationally accepted ||| 0.125 0.168776 2.17609e-05 1.07503e-12 2.718 ||| 0-1 ||| 8 45954 +a ||| involve internationally ||| 0.125 0.168776 2.17609e-05 2.75648e-08 2.718 ||| 0-1 ||| 8 45954 +a ||| involve ||| 0.00943396 0.0654762 2.17609e-05 0.0001298 2.718 ||| 0-0 ||| 106 45954 +a ||| involved in ||| 0.0162602 0.0437285 4.35218e-05 4.3355e-06 2.718 ||| 0-1 ||| 123 45954 +a ||| involved ||| 0.00310559 0.0170316 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 322 45954 +a ||| involves ||| 0.0172414 0.0373134 4.35218e-05 5.9e-05 2.718 ||| 0-0 ||| 116 45954 +a ||| involving ||| 0.0128205 0.116071 4.35218e-05 0.0003068 2.718 ||| 0-0 ||| 156 45954 +a ||| is , in ||| 0.037037 0.0437285 2.17609e-05 0.00013222 2.718 ||| 0-2 ||| 27 45954 +a ||| is a cornerstone of ||| 0.25 0.0164489 2.17609e-05 9.29753e-11 2.718 ||| 0-3 ||| 4 45954 +a ||| is all harm and no cure . ||| 1 0.0549451 2.17609e-05 2.62841e-21 2.718 ||| 0-2 ||| 1 45954 +a ||| is all harm and no cure ||| 1 0.0549451 2.17609e-05 5.71654e-19 2.718 ||| 0-2 ||| 1 45954 +a ||| is all harm and no ||| 1 0.0549451 2.17609e-05 4.39734e-14 2.718 ||| 0-2 ||| 1 45954 +a ||| is all harm and ||| 1 0.0549451 2.17609e-05 4.23187e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| is all harm ||| 1 0.0549451 2.17609e-05 5.03968e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| is beaten to ||| 1 0.270828 2.17609e-05 7.01359e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| is closely associated with ||| 0.5 0.0330797 2.17609e-05 1.06391e-12 2.718 ||| 0-3 ||| 2 45954 +a ||| is concerned ||| 0.0204082 0.0769231 2.17609e-05 6.22375e-06 2.718 ||| 0-1 ||| 49 45954 +a ||| is denied ||| 0.333333 0.0823529 2.17609e-05 2.72289e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| is for ||| 0.0326087 0.0587253 6.52827e-05 0.00038996 2.718 ||| 0-1 ||| 92 45954 +a ||| is in place ||| 0.2 0.0437285 2.17609e-05 8.23919e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| is in serious ||| 0.333333 0.0437285 2.17609e-05 1.34504e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| is in ||| 0.0201613 0.0437285 0.000217609 0.000647277 2.718 ||| 0-1 ||| 496 45954 +a ||| is intended to ||| 0.111111 0.270828 2.17609e-05 4.55344e-07 2.718 ||| 0-2 ||| 9 45954 +a ||| is it due to ||| 1 0.270828 2.17609e-05 3.54533e-08 2.718 ||| 0-3 ||| 1 45954 +a ||| is likely to involve ||| 1 0.270828 2.17609e-05 1.51424e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| is likely to ||| 0.00653595 0.270828 4.35218e-05 2.59287e-06 2.718 ||| 0-2 ||| 306 45954 +a ||| is my plan to drop ||| 0.5 0.270828 2.17609e-05 5.85574e-15 2.718 ||| 0-3 ||| 2 45954 +a ||| is my plan to ||| 0.5 0.270828 2.17609e-05 1.1261e-10 2.718 ||| 0-3 ||| 2 45954 +a ||| is one for ||| 0.5 0.0587253 2.17609e-05 1.56764e-06 2.718 ||| 0-2 ||| 2 45954 +a ||| is preoccupied by ||| 0.5 0.0269646 2.17609e-05 2.1694e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| is pumping $ ||| 1 0.0233612 2.17609e-05 1.69403e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| is reached between ||| 1 0.219758 2.17609e-05 6.88353e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| is reached ||| 0.05 0.219758 2.17609e-05 2.11997e-05 2.718 ||| 0-1 ||| 20 45954 +a ||| is the job of ||| 1 0.0164489 2.17609e-05 3.06765e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| is the way in ||| 0.5 0.0437285 2.17609e-05 5.22618e-08 2.718 ||| 0-3 ||| 2 45954 +a ||| is to ||| 0.0116845 0.270828 0.000261131 0.00539507 2.718 ||| 0-1 ||| 1027 45954 +a ||| is unfolding in front of ||| 0.0357143 0.0437285 2.17609e-05 3.24627e-14 2.718 ||| 0-2 ||| 28 45954 +a ||| is unfolding in front ||| 0.0357143 0.0437285 2.17609e-05 1.20161e-12 2.718 ||| 0-2 ||| 28 45954 +a ||| is unfolding in ||| 0.0357143 0.0437285 2.17609e-05 1.68292e-08 2.718 ||| 0-2 ||| 28 45954 +a ||| is viewing ||| 0.5 0.121951 2.17609e-05 9.72462e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| is-in ||| 1 1 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| issue of ||| 0.008 0.0164489 2.17609e-05 3.36286e-06 2.718 ||| 0-1 ||| 125 45954 +a ||| issued ||| 0.0104712 0.0128205 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 191 45954 +a ||| it accommodates ||| 0.0833333 0.375 2.17609e-05 9.42578e-07 2.718 ||| 0-1 ||| 12 45954 +a ||| it add to ||| 1 0.270828 2.17609e-05 7.35586e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| it at ||| 0.307692 0.185652 8.70436e-05 0.000680547 2.718 ||| 0-1 ||| 13 45954 +a ||| it behind ||| 0.333333 0.0688836 2.17609e-05 1.82232e-05 2.718 ||| 0-1 ||| 3 45954 +a ||| it by undermining ||| 1 0.0269646 2.17609e-05 2.33637e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| it by ||| 0.0952381 0.0269646 4.35218e-05 0.000179721 2.718 ||| 0-1 ||| 21 45954 +a ||| it can be inflated away ||| 1 0.0508475 2.17609e-05 3.10028e-15 2.718 ||| 0-4 ||| 1 45954 +a ||| it caught ||| 1 0.0245399 2.17609e-05 1.25677e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| it claims to ||| 0.333333 0.270828 2.17609e-05 9.62188e-07 2.718 ||| 0-2 ||| 3 45954 +a ||| it comes to ||| 0.0134228 0.270828 4.35218e-05 2.94321e-06 2.718 ||| 0-2 ||| 149 45954 +a ||| it continued its advance , spreading ||| 0.5 0.0014741 2.17609e-05 5.26613e-20 2.718 ||| 0-0 ||| 2 45954 +a ||| it continued its advance , ||| 0.5 0.0014741 2.17609e-05 1.35029e-15 2.718 ||| 0-0 ||| 2 45954 +a ||| it continued its advance ||| 0.5 0.0014741 2.17609e-05 6.6103e-15 2.718 ||| 0-0 ||| 2 45954 +a ||| it continued its ||| 0.5 0.0014741 2.17609e-05 9.25812e-11 2.718 ||| 0-0 ||| 2 45954 +a ||| it continued ||| 0.111111 0.0014741 2.17609e-05 4.65888e-08 2.718 ||| 0-0 ||| 9 45954 +a ||| it controls down to ||| 1 0.270828 2.17609e-05 4.13889e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| it due to ||| 0.25 0.270828 2.17609e-05 2.15098e-06 2.718 ||| 0-2 ||| 4 45954 +a ||| it easier for ||| 0.0909091 0.0587253 2.17609e-05 5.72635e-08 2.718 ||| 0-2 ||| 11 45954 +a ||| it had to be bailed out ||| 1 0.270828 2.17609e-05 2.20991e-14 2.718 ||| 0-2 ||| 1 45954 +a ||| it had to be bailed ||| 1 0.270828 2.17609e-05 4.98222e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| it had to be ||| 0.5 0.270828 2.17609e-05 1.27749e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| it had to ||| 0.111111 0.270828 2.17609e-05 1.23951e-05 2.718 ||| 0-2 ||| 9 45954 +a ||| it hard to ||| 0.111111 0.270828 2.17609e-05 3.9054e-06 2.718 ||| 0-2 ||| 9 45954 +a ||| it has ever been in ||| 1 0.0437285 2.17609e-05 3.46045e-12 2.718 ||| 0-4 ||| 1 45954 +a ||| it has in ||| 0.0833333 0.0437285 2.17609e-05 3.47007e-06 2.718 ||| 0-2 ||| 12 45954 +a ||| it has to offer ||| 0.333333 0.270828 2.17609e-05 2.81712e-09 2.718 ||| 0-2 ||| 3 45954 +a ||| it has to ||| 0.0526316 0.270828 2.17609e-05 2.89232e-05 2.718 ||| 0-2 ||| 19 45954 +a ||| it in ||| 0.0379747 0.0437285 6.52827e-05 0.00104564 2.718 ||| 0-1 ||| 79 45954 +a ||| it into ||| 0.178571 0.176821 0.000108804 0.000298172 2.718 ||| 0-1 ||| 28 45954 +a ||| it is for ||| 0.0740741 0.0587253 4.35218e-05 1.03833e-05 2.718 ||| 0-2 ||| 27 45954 +a ||| it is in ||| 0.0235294 0.0437285 4.35218e-05 1.72347e-05 2.718 ||| 0-2 ||| 85 45954 +a ||| it is likely to involve ||| 1 0.270828 2.17609e-05 4.03188e-12 2.718 ||| 0-3 ||| 1 45954 +a ||| it is likely to ||| 0.0384615 0.270828 2.17609e-05 6.90391e-08 2.718 ||| 0-3 ||| 26 45954 +a ||| it is one for ||| 0.5 0.0587253 2.17609e-05 4.17408e-08 2.718 ||| 0-3 ||| 2 45954 +a ||| it is to ||| 0.0487805 0.270828 8.70436e-05 0.000143652 2.718 ||| 0-2 ||| 82 45954 +a ||| it is ||| 0.00055607 0.0014741 6.52827e-05 7.39071e-06 2.718 ||| 0-0 ||| 5395 45954 +a ||| it keeps ||| 0.1 0.0928571 2.17609e-05 4.08451e-06 2.718 ||| 0-1 ||| 10 45954 +a ||| it needs ||| 0.00806452 0.0028674 2.17609e-05 1.25677e-06 2.718 ||| 0-1 ||| 124 45954 +a ||| it on ||| 0.166667 0.0963759 4.35218e-05 0.000684317 2.718 ||| 0-1 ||| 12 45954 +a ||| it onto ||| 1 0.220779 2.17609e-05 1.06826e-05 2.718 ||| 0-1 ||| 1 45954 +a ||| it released ||| 0.2 0.109453 2.17609e-05 6.91224e-06 2.718 ||| 0-1 ||| 5 45954 +a ||| it serves ||| 0.333333 0.116279 2.17609e-05 4.71289e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| it to be ||| 0.0625 0.270828 2.17609e-05 8.98251e-05 2.718 ||| 0-1 ||| 16 45954 +a ||| it to the ||| 0.0416667 0.270828 2.17609e-05 0.000463049 2.718 ||| 0-1 ||| 24 45954 +a ||| it to ||| 0.227273 0.270828 0.000652827 0.00871547 2.718 ||| 0-1 ||| 132 45954 +a ||| it took ||| 0.011236 0.013624 2.17609e-05 3.14193e-06 2.718 ||| 0-1 ||| 89 45954 +a ||| it was a close call ||| 1 0.0723077 2.17609e-05 5.9799e-13 2.718 ||| 0-4 ||| 1 45954 +a ||| it was at the ||| 0.4 0.185652 4.35218e-05 1.36663e-07 2.718 ||| 0-2 ||| 5 45954 +a ||| it was at ||| 0.333333 0.185652 6.52827e-05 2.57226e-06 2.718 ||| 0-2 ||| 9 45954 +a ||| it was ||| 0.000897666 0.0014741 2.17609e-05 1.69482e-06 2.718 ||| 0-0 ||| 1114 45954 +a ||| it will help ||| 0.166667 0.350156 2.17609e-05 1.9431e-06 2.718 ||| 0-2 ||| 6 45954 +a ||| it will provide just ||| 1 0.0208333 2.17609e-05 4.78216e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| it will provide ||| 0.1 0.0208333 2.17609e-05 4.33167e-08 2.718 ||| 0-1 ||| 10 45954 +a ||| it will ||| 0.00411523 0.0208333 2.17609e-05 0.000105883 2.718 ||| 0-1 ||| 243 45954 +a ||| it worthwhile to ||| 0.5 0.270828 2.17609e-05 1.13301e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| it would benefit ||| 0.5 0.128988 2.17609e-05 1.3511e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| it would ||| 0.00549451 0.0031159 2.17609e-05 9.73997e-06 2.718 ||| 0-1 ||| 182 45954 +a ||| it ||| 0.00165816 0.0014741 0.000282892 0.0004484 2.718 ||| 0-0 ||| 7840 45954 +a ||| its ardent defenders are ||| 0.333333 0.047619 2.17609e-05 3.38529e-15 2.718 ||| 0-2 ||| 3 45954 +a ||| its ardent defenders ||| 0.333333 0.047619 2.17609e-05 4.57255e-13 2.718 ||| 0-2 ||| 3 45954 +a ||| its borders to everyone from Kenya . ||| 1 0.0408799 2.17609e-05 9.49568e-23 2.718 ||| 0-4 ||| 1 45954 +a ||| its borders to everyone from Kenya ||| 1 0.0408799 2.17609e-05 2.06522e-20 2.718 ||| 0-4 ||| 1 45954 +a ||| its borders to everyone from ||| 1 0.0408799 2.17609e-05 3.17726e-15 2.718 ||| 0-4 ||| 1 45954 +a ||| its feet ||| 0.0294118 0.0487805 2.17609e-05 9.37958e-08 2.718 ||| 0-1 ||| 34 45954 +a ||| its friends in ||| 1 0.0437285 2.17609e-05 5.07253e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| its inability to end the ||| 1 0.270828 2.17609e-05 4.25989e-13 2.718 ||| 0-2 ||| 1 45954 +a ||| its inability to end ||| 1 0.270828 2.17609e-05 8.01792e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| its inability to ||| 0.111111 0.270828 2.17609e-05 1.69119e-08 2.718 ||| 0-2 ||| 9 45954 +a ||| its start ||| 0.5 0.110406 2.17609e-05 2.04006e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| its way into ||| 0.333333 0.176821 4.35218e-05 3.38183e-08 2.718 ||| 0-2 ||| 6 45954 +a ||| its way to ||| 0.04 0.270828 2.17609e-05 9.88499e-07 2.718 ||| 0-2 ||| 25 45954 +a ||| its ||| 7.25426e-05 7.43e-05 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 13785 45954 +a ||| itself to ||| 0.166667 0.270828 4.35218e-05 0.000235967 2.718 ||| 0-1 ||| 12 45954 +a ||| itself with ||| 0.125 0.0330797 2.17609e-05 6.06529e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| jailed ||| 0.0196078 0.185185 2.17609e-05 0.000118 2.718 ||| 0-0 ||| 51 45954 +a ||| jettisoned in ||| 1 0.0437285 2.17609e-05 7.65781e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| job in a ||| 1 0.0437285 2.17609e-05 2.56583e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| job in ||| 0.125 0.0437285 2.17609e-05 6.37758e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| job of ||| 0.0333333 0.0164489 2.17609e-05 3.50307e-06 2.718 ||| 0-1 ||| 30 45954 +a ||| joined ||| 0.0193548 0.242894 6.52827e-05 0.0011092 2.718 ||| 0-0 ||| 155 45954 +a ||| joining ||| 0.0163934 0.341584 4.35218e-05 0.0008142 2.718 ||| 0-0 ||| 122 45954 +a ||| judge ||| 0.00819672 0.05 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 122 45954 +a ||| judging ||| 0.0384615 0.384615 4.35218e-05 0.000354 2.718 ||| 0-0 ||| 52 45954 +a ||| jump on the ||| 1 0.0963759 2.17609e-05 6.21285e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| jump on ||| 0.25 0.0963759 2.17609e-05 1.16938e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| jump through ||| 0.25 0.257419 2.17609e-05 4.14491e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| just 30 ||| 0.2 0.0027759 2.17609e-05 4.2952e-09 2.718 ||| 0-0 ||| 5 45954 +a ||| just because ||| 0.0192308 0.0070129 2.17609e-05 4.1687e-07 2.718 ||| 0-1 ||| 52 45954 +a ||| just in ||| 0.0222222 0.0437285 2.17609e-05 4.3355e-05 2.718 ||| 0-1 ||| 45 45954 +a ||| just ordered ||| 0.25 0.0512821 2.17609e-05 7.81632e-08 2.718 ||| 0-1 ||| 4 45954 +a ||| just preached ||| 0.5 0.0434783 2.17609e-05 1.30272e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| just ||| 0.00178015 0.0027759 8.70436e-05 9.44e-05 2.718 ||| 0-0 ||| 2247 45954 +a ||| keep quiet ||| 0.166667 0.0117035 2.17609e-05 2.0709e-09 2.718 ||| 0-0 ||| 6 45954 +a ||| keep ||| 0.00302572 0.0117035 4.35218e-05 0.0001062 2.718 ||| 0-0 ||| 661 45954 +a ||| keeping her in ||| 0.5 0.0437285 2.17609e-05 1.20687e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| keeping with ||| 0.153846 0.142857 4.35218e-05 1.79015e-06 2.718 ||| 0-0 ||| 13 45954 +a ||| keeping ||| 0.0188679 0.142857 8.70436e-05 0.000472 2.718 ||| 0-0 ||| 212 45954 +a ||| keeps the money that 's left ||| 1 0.0928571 2.17609e-05 8.41465e-17 2.718 ||| 0-0 ||| 1 45954 +a ||| keeps the money that 's ||| 1 0.0928571 2.17609e-05 2.49175e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| keeps the money that ||| 1 0.0928571 2.17609e-05 1.60003e-11 2.718 ||| 0-0 ||| 1 45954 +a ||| keeps the money ||| 1 0.0928571 2.17609e-05 1.95846e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| keeps the ||| 0.142857 0.0928571 2.17609e-05 8.15008e-06 2.718 ||| 0-0 ||| 7 45954 +a ||| keeps ||| 0.0217391 0.0928571 4.35218e-05 0.0001534 2.718 ||| 0-0 ||| 92 45954 +a ||| kept safe ||| 1 0.11254 2.17609e-05 5.90177e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| kept ||| 0.0185185 0.11254 8.70436e-05 0.000413 2.718 ||| 0-0 ||| 216 45954 +a ||| kill ||| 0.0272109 0.238095 8.70436e-05 0.000708 2.718 ||| 0-0 ||| 147 45954 +a ||| killed ||| 0.0138408 0.200993 8.70436e-05 0.0009558 2.718 ||| 0-0 ||| 289 45954 +a ||| known with certainty ||| 0.166667 0.0330797 2.17609e-05 3.62252e-11 2.718 ||| 0-1 ||| 6 45954 +a ||| known with ||| 0.166667 0.0330797 2.17609e-05 1.8577e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| krill tend to ||| 0.2 0.270828 2.17609e-05 1.6574e-10 2.718 ||| 0-2 ||| 5 45954 +a ||| label on ||| 0.5 0.0963759 2.17609e-05 5.01162e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| labor ||| 0.00173762 0.0029499 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 1151 45954 +a ||| laboring to ||| 0.5 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| lacking ||| 0.0103093 0.0283688 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 97 45954 +a ||| largely over ||| 1 0.07993 2.17609e-05 7.56084e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| larger by the ||| 0.333333 0.0269646 2.17609e-05 3.49285e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| larger by ||| 0.2 0.0269646 2.17609e-05 6.57421e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| last time at ||| 0.5 0.185652 2.17609e-05 6.82902e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| latter-day ||| 0.166667 0.0833333 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 6 45954 +a ||| launched at ||| 0.166667 0.185652 2.17609e-05 1.65878e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| law that protects ||| 0.333333 0.291667 2.17609e-05 2.10411e-10 2.718 ||| 0-2 ||| 3 45954 +a ||| lay ahead ||| 0.2 0.0089286 2.17609e-05 3.8291e-09 2.718 ||| 0-1 ||| 5 45954 +a ||| lay down ||| 0.166667 0.0516169 2.17609e-05 6.35631e-08 2.718 ||| 0-1 ||| 6 45954 +a ||| lead to ||| 0.00241546 0.270828 2.17609e-05 0.000170044 2.718 ||| 0-1 ||| 414 45954 +a ||| lead us to expect ||| 0.5 0.270828 2.17609e-05 5.05338e-12 2.718 ||| 0-2 ||| 2 45954 +a ||| lead us to ||| 0.2 0.270828 2.17609e-05 9.71803e-08 2.718 ||| 0-2 ||| 5 45954 +a ||| lead ||| 0.00869565 0.0317003 0.000130565 0.0003894 2.718 ||| 0-0 ||| 690 45954 +a ||| leading them to ||| 0.25 0.270828 2.17609e-05 1.12166e-07 2.718 ||| 0-2 ||| 4 45954 +a ||| leading to ||| 0.004329 0.270828 2.17609e-05 5.73797e-05 2.718 ||| 0-1 ||| 231 45954 +a ||| leading up to ||| 0.0833333 0.270828 2.17609e-05 1.79237e-07 2.718 ||| 0-2 ||| 12 45954 +a ||| leading ||| 0.00526316 0.0147059 8.70436e-05 0.0001652 2.718 ||| 0-0 ||| 760 45954 +a ||| leads to ||| 0.00787402 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-1 ||| 127 45954 +a ||| leads ||| 0.0206897 0.0666667 6.52827e-05 0.000177 2.718 ||| 0-0 ||| 145 45954 +a ||| league of ||| 0.142857 0.0164489 2.17609e-05 1.40209e-07 2.718 ||| 0-1 ||| 7 45954 +a ||| leak into ||| 0.25 0.176821 2.17609e-05 7.27889e-08 2.718 ||| 0-1 ||| 4 45954 +a ||| leap of ||| 0.0909091 0.0164489 2.17609e-05 5.60836e-07 2.718 ||| 0-1 ||| 11 45954 +a ||| least by ||| 0.047619 0.0269646 2.17609e-05 1.18322e-06 2.718 ||| 0-1 ||| 21 45954 +a ||| least educated ||| 0.25 0.0443038 2.17609e-05 1.44798e-08 2.718 ||| 0-1 ||| 4 45954 +a ||| leave behind ||| 0.125 0.0688836 2.17609e-05 1.11147e-07 2.718 ||| 0-1 ||| 8 45954 +a ||| leave it to ||| 0.333333 0.270828 2.17609e-05 1.41539e-06 2.718 ||| 0-2 ||| 3 45954 +a ||| leave ||| 0.00738007 0.103604 4.35218e-05 0.0005428 2.718 ||| 0-0 ||| 271 45954 +a ||| leaves it ||| 0.5 0.144385 2.17609e-05 8.4832e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| leaves ||| 0.0538462 0.144385 0.000152326 0.0003186 2.718 ||| 0-0 ||| 130 45954 +a ||| leaving ||| 0.00409836 0.0966184 2.17609e-05 0.000472 2.718 ||| 0-0 ||| 244 45954 +a ||| led to ||| 0.00742574 0.270828 6.52827e-05 8.50385e-05 2.718 ||| 0-1 ||| 404 45954 +a ||| led ||| 0.00229621 0.0096051 4.35218e-05 0.0001062 2.718 ||| 0-0 ||| 871 45954 +a ||| left to ||| 0.0194175 0.270828 4.35218e-05 0.000110537 2.718 ||| 0-1 ||| 103 45954 +a ||| leftist and Maoist ||| 0.5 0.0185185 2.17609e-05 6.44058e-13 2.718 ||| 0-0 ||| 2 45954 +a ||| leftist and ||| 0.25 0.0185185 2.17609e-05 9.90858e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| leftist ||| 0.015625 0.0185185 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 64 45954 +a ||| legacy of ||| 0.0119048 0.0164489 2.17609e-05 2.80418e-07 2.718 ||| 0-1 ||| 84 45954 +a ||| legal " standing " to ||| 0.333333 0.270828 2.17609e-05 5.7904e-14 2.718 ||| 0-4 ||| 3 45954 +a ||| lend itself to ||| 1 0.270828 2.17609e-05 1.07365e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| length of the ||| 0.111111 0.0164489 2.17609e-05 4.46955e-08 2.718 ||| 0-1 ||| 9 45954 +a ||| length of ||| 0.0526316 0.0164489 2.17609e-05 8.41253e-07 2.718 ||| 0-1 ||| 19 45954 +a ||| lent to ||| 0.25 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| lest they end up as anything ||| 1 0.0289876 2.17609e-05 8.97757e-20 2.718 ||| 0-4 ||| 1 45954 +a ||| lest they end up as ||| 1 0.0289876 2.17609e-05 5.52806e-16 2.718 ||| 0-4 ||| 1 45954 +a ||| let Germany ||| 1 0.0010887 2.17609e-05 7.81632e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| leveled off for ||| 1 0.0587253 2.17609e-05 5.30327e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| lever of ||| 0.2 0.0164489 2.17609e-05 1.40209e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| licencia con dios , ||| 1 1 2.17609e-05 1.01839e-16 2.718 ||| 0-2 ||| 1 45954 +a ||| licencia con dios ||| 1 1 2.17609e-05 4.9855e-16 2.718 ||| 0-2 ||| 1 45954 +a ||| life to ||| 0.1 0.270828 2.17609e-05 7.22729e-05 2.718 ||| 0-1 ||| 10 45954 +a ||| lift ||| 0.0208333 0.195402 2.17609e-05 0.0002006 2.718 ||| 0-0 ||| 48 45954 +a ||| lifted . ||| 0.125 0.178571 2.17609e-05 5.42552e-07 2.718 ||| 0-0 ||| 8 45954 +a ||| lifted ||| 0.0645161 0.178571 4.35218e-05 0.000118 2.718 ||| 0-0 ||| 31 45954 +a ||| lifting of ||| 0.1 0.181818 2.17609e-05 3.82548e-06 2.718 ||| 0-0 ||| 10 45954 +a ||| lifting ||| 0.0204082 0.181818 2.17609e-05 0.0001416 2.718 ||| 0-0 ||| 49 45954 +a ||| like Saddam ) to ||| 1 0.270828 2.17609e-05 2.02582e-12 2.718 ||| 0-3 ||| 1 45954 +a ||| like a ||| 0.005 0.0278224 2.17609e-05 4.93727e-05 2.718 ||| 0-0 ||| 200 45954 +a ||| like it to be ||| 1 0.270828 2.17609e-05 7.52555e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| like it to ||| 0.25 0.270828 2.17609e-05 7.30182e-06 2.718 ||| 0-2 ||| 4 45954 +a ||| like it ||| 0.0645161 0.0278224 4.35218e-05 3.2676e-05 2.718 ||| 0-0 ||| 31 45954 +a ||| like me to ||| 0.333333 0.270828 2.17609e-05 3.74051e-08 2.718 ||| 0-2 ||| 3 45954 +a ||| like special ||| 1 0.0278224 2.17609e-05 8.76221e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| like to ||| 0.04 0.270828 4.35218e-05 0.000274231 2.718 ||| 0-1 ||| 50 45954 +a ||| like ||| 0.00753558 0.0278224 0.000587544 0.0012272 2.718 ||| 0-0 ||| 3583 45954 +a ||| likelier to engender additional goodwill . ||| 1 0.270828 2.17609e-05 4.82746e-23 2.718 ||| 0-1 ||| 1 45954 +a ||| likelier to engender additional goodwill ||| 1 0.270828 2.17609e-05 1.04993e-20 2.718 ||| 0-1 ||| 1 45954 +a ||| likelier to engender additional ||| 1 0.270828 2.17609e-05 8.07637e-16 2.718 ||| 0-1 ||| 1 45954 +a ||| likelier to engender ||| 1 0.270828 2.17609e-05 1.38294e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| likelier to ||| 0.5 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| likely to evoke an outpouring ||| 0.5 0.270828 2.17609e-05 2.30059e-17 2.718 ||| 0-1 ||| 2 45954 +a ||| likely to evoke an ||| 0.5 0.270828 2.17609e-05 3.53937e-12 2.718 ||| 0-1 ||| 2 45954 +a ||| likely to evoke ||| 0.5 0.270828 2.17609e-05 1.02252e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| likely to incur some losses ||| 0.125 0.270828 2.17609e-05 2.84892e-17 2.718 ||| 0-1 ||| 8 45954 +a ||| likely to incur some ||| 0.125 0.270828 2.17609e-05 7.30492e-13 2.718 ||| 0-1 ||| 8 45954 +a ||| likely to incur ||| 0.125 0.270828 2.17609e-05 1.02252e-09 2.718 ||| 0-1 ||| 8 45954 +a ||| likely to involve ||| 1 0.270828 2.17609e-05 9.18699e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| likely to ||| 0.00985222 0.270828 0.000174087 0.000157311 2.718 ||| 0-1 ||| 812 45954 +a ||| likened ||| 0.142857 0.0666667 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 7 45954 +a ||| limit the scope of ||| 0.5 0.0164489 2.17609e-05 7.74721e-13 2.718 ||| 0-3 ||| 2 45954 +a ||| limited ||| 0.00175439 0.0016694 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 570 45954 +a ||| linked to ||| 0.0168067 0.270828 4.35218e-05 1.48932e-05 2.718 ||| 0-1 ||| 119 45954 +a ||| literary genius ||| 1 0.0416667 2.17609e-05 7.67e-11 2.718 ||| 0-0 ||| 1 45954 +a ||| literary ||| 0.0454545 0.0416667 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 22 45954 +a ||| little effect on ||| 0.25 0.0963759 2.17609e-05 1.05039e-09 2.718 ||| 0-2 ||| 4 45954 +a ||| little more than lip service ||| 0.0555556 0.010385 2.17609e-05 2.83981e-18 2.718 ||| 0-2 ||| 18 45954 +a ||| little more than lip ||| 0.0588235 0.010385 2.17609e-05 2.30131e-14 2.718 ||| 0-2 ||| 17 45954 +a ||| little more than ||| 0.0106383 0.010385 2.17609e-05 8.85119e-10 2.718 ||| 0-2 ||| 94 45954 +a ||| live by ||| 0.333333 0.0269646 2.17609e-05 1.66583e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| live up to ||| 0.0555556 0.270828 4.35218e-05 2.52343e-07 2.718 ||| 0-2 ||| 36 45954 +a ||| lived in plain sight ||| 0.2 0.0437285 2.17609e-05 5.39237e-16 2.718 ||| 0-1 ||| 5 45954 +a ||| lived in plain ||| 0.2 0.0437285 2.17609e-05 4.14798e-11 2.718 ||| 0-1 ||| 5 45954 +a ||| lived in ||| 0.0294118 0.0437285 2.17609e-05 1.2763e-06 2.718 ||| 0-1 ||| 34 45954 +a ||| livelihood for ||| 0.5 0.0587253 2.17609e-05 4.61354e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| loath to ||| 0.111111 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 9 45954 +a ||| lock on ||| 0.333333 0.0963759 2.17609e-05 3.34108e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| long nurtured ||| 0.5 0.119048 2.17609e-05 4.40612e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| long way coming to ||| 0.142857 0.270828 2.17609e-05 1.47182e-10 2.718 ||| 0-3 ||| 7 45954 +a ||| long way toward addressing ||| 0.333333 0.0996678 2.17609e-05 3.91715e-14 2.718 ||| 0-2 ||| 3 45954 +a ||| long way toward allowing ||| 0.166667 0.0996678 2.17609e-05 5.48401e-14 2.718 ||| 0-2 ||| 6 45954 +a ||| long way toward ||| 0.157895 0.0996678 6.52827e-05 1.20528e-09 2.718 ||| 0-2 ||| 19 45954 +a ||| longer allow it ||| 1 0.0417661 2.17609e-05 2.85695e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| longer allow ||| 1 0.0417661 2.17609e-05 1.07297e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| longer-term ||| 0.00645161 0.193846 2.17609e-05 0.0007434 2.718 ||| 0-0 ||| 155 45954 +a ||| look at ||| 0.016 0.185652 4.35218e-05 1.19514e-05 2.718 ||| 0-1 ||| 125 45954 +a ||| look back at ||| 0.166667 0.185652 2.17609e-05 1.661e-08 2.718 ||| 0-2 ||| 6 45954 +a ||| look to ||| 0.037037 0.270828 2.17609e-05 0.000153056 2.718 ||| 0-1 ||| 27 45954 +a ||| looked up to ||| 0.5 0.270828 2.17609e-05 7.30036e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| looking at ||| 0.0465116 0.185652 4.35218e-05 4.31692e-06 2.718 ||| 0-1 ||| 43 45954 +a ||| looking into ||| 0.5 0.176821 2.17609e-05 1.89139e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| looks out for ||| 1 0.0587253 2.17609e-05 1.09036e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| looms larger by the ||| 0.333333 0.0269646 2.17609e-05 4.54071e-13 2.718 ||| 0-2 ||| 3 45954 +a ||| looms larger by ||| 0.333333 0.0269646 2.17609e-05 8.54647e-12 2.718 ||| 0-2 ||| 3 45954 +a ||| loudly ||| 0.0769231 0.105263 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 13 45954 +a ||| love ||| 0.0102041 0.0134228 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 98 45954 +a ||| loyalists ||| 0.04 0.103448 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 25 45954 +a ||| loyalty ||| 0.00854701 0.0227273 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 117 45954 +a ||| lunch in ||| 0.5 0.0437285 2.17609e-05 1.02104e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| made at the ||| 0.125 0.185652 2.17609e-05 1.49917e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| made at ||| 0.0666667 0.185652 2.17609e-05 2.82171e-05 2.718 ||| 0-1 ||| 15 45954 +a ||| made it possible ||| 0.0454545 0.0204082 2.17609e-05 5.60174e-09 2.718 ||| 0-0 ||| 22 45954 +a ||| made it ||| 0.00840336 0.0204082 2.17609e-05 1.41387e-05 2.718 ||| 0-0 ||| 119 45954 +a ||| made its way to ||| 0.5 0.270828 2.17609e-05 1.0913e-09 2.718 ||| 0-3 ||| 2 45954 +a ||| made of ||| 0.111111 0.0164489 2.17609e-05 2.38139e-05 2.718 ||| 0-1 ||| 9 45954 +a ||| made to convince Europeans of its benefits ||| 1 0.403141 2.17609e-05 2.40009e-20 2.718 ||| 0-2 ||| 1 45954 +a ||| made to convince Europeans of its ||| 1 0.403141 2.17609e-05 2.31e-16 2.718 ||| 0-2 ||| 1 45954 +a ||| made to convince Europeans of ||| 1 0.403141 2.17609e-05 1.16244e-13 2.718 ||| 0-2 ||| 1 45954 +a ||| made to convince Europeans ||| 1 0.403141 2.17609e-05 4.30276e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| made to convince ||| 1 0.403141 2.17609e-05 8.27455e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| made to ||| 0.097561 0.270828 8.70436e-05 0.000361365 2.718 ||| 0-1 ||| 41 45954 +a ||| made up of ||| 0.0333333 0.0204082 2.17609e-05 4.48112e-08 2.718 ||| 0-0 ||| 30 45954 +a ||| made up ||| 0.0333333 0.0204082 2.17609e-05 1.65868e-06 2.718 ||| 0-0 ||| 30 45954 +a ||| made ||| 0.00558659 0.0204082 0.000174087 0.000531 2.718 ||| 0-0 ||| 1432 45954 +a ||| main , to jump on the ||| 1 0.0963759 2.17609e-05 8.83572e-14 2.718 ||| 0-4 ||| 1 45954 +a ||| main , to jump on ||| 1 0.0963759 2.17609e-05 1.66305e-12 2.718 ||| 0-4 ||| 1 45954 +a ||| make -- ||| 0.5 0.0177077 2.17609e-05 3.26226e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| make ample use of laundry , ||| 1 0.0164489 2.17609e-05 8.60686e-20 2.718 ||| 0-3 ||| 1 45954 +a ||| make ample use of laundry ||| 1 0.0164489 2.17609e-05 4.21346e-19 2.718 ||| 0-3 ||| 1 45954 +a ||| make ample use of ||| 1 0.0164489 2.17609e-05 6.48225e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| make keeping ||| 0.5 0.142857 2.17609e-05 6.22238e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| make real progress toward ||| 0.25 0.0996678 2.17609e-05 3.60633e-14 2.718 ||| 0-3 ||| 4 45954 +a ||| make ||| 0.00490798 0.0177077 0.000174087 0.000649 2.718 ||| 0-0 ||| 1630 45954 +a ||| makes ||| 0.00383877 0.0261882 4.35218e-05 0.0003186 2.718 ||| 0-0 ||| 521 45954 +a ||| making her ||| 0.2 0.0243183 2.17609e-05 2.30135e-07 2.718 ||| 0-0 ||| 5 45954 +a ||| making the ||| 0.0113636 0.0243183 2.17609e-05 2.06887e-05 2.718 ||| 0-0 ||| 88 45954 +a ||| making ||| 0.00765864 0.0243183 0.000152326 0.0003894 2.718 ||| 0-0 ||| 914 45954 +a ||| man he trusted , ||| 1 0.0032086 2.17609e-05 8.79326e-14 2.718 ||| 0-1 ||| 1 45954 +a ||| man he trusted ||| 1 0.0032086 2.17609e-05 4.30471e-13 2.718 ||| 0-1 ||| 1 45954 +a ||| man he ||| 0.5 0.0032086 2.17609e-05 3.31132e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| many as ||| 0.0526316 0.0289876 2.17609e-05 5.43497e-06 2.718 ||| 0-1 ||| 19 45954 +a ||| many on ||| 0.125 0.0963759 2.17609e-05 1.5022e-05 2.718 ||| 0-1 ||| 8 45954 +a ||| many otherwise ||| 1 0.0020677 2.17609e-05 1.77047e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| many times the size of ||| 0.333333 0.0164489 2.17609e-05 1.86468e-14 2.718 ||| 0-4 ||| 3 45954 +a ||| many ||| 0.00109329 0.0020677 0.000130565 0.0001298 2.718 ||| 0-0 ||| 5488 45954 +a ||| marginalized by ||| 0.2 0.0779221 2.17609e-05 4.79564e-07 2.718 ||| 0-0 ||| 5 45954 +a ||| marginalized ||| 0.0172414 0.0779221 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 58 45954 +a ||| market-based activity appears likelier to engender additional ||| 1 0.270828 2.17609e-05 4.13806e-29 2.718 ||| 0-4 ||| 1 45954 +a ||| market-based activity appears likelier to engender ||| 1 0.270828 2.17609e-05 7.08572e-25 2.718 ||| 0-4 ||| 1 45954 +a ||| market-based activity appears likelier to ||| 1 0.270828 2.17609e-05 1.09011e-19 2.718 ||| 0-4 ||| 1 45954 +a ||| markets are prone to produce bubbles . ||| 1 0.270828 2.17609e-05 5.67712e-24 2.718 ||| 0-3 ||| 1 45954 +a ||| markets are prone to produce bubbles ||| 1 0.270828 2.17609e-05 1.23472e-21 2.718 ||| 0-3 ||| 1 45954 +a ||| markets are prone to produce ||| 1 0.270828 2.17609e-05 1.89957e-16 2.718 ||| 0-3 ||| 1 45954 +a ||| markets are prone to ||| 0.5 0.270828 2.17609e-05 1.12467e-12 2.718 ||| 0-3 ||| 2 45954 +a ||| massively ||| 0.05 0.0344828 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 20 45954 +a ||| match ||| 0.00813008 0.0425532 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 123 45954 +a ||| matched each ||| 1 0.0526316 2.17609e-05 1.83903e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| matched ||| 0.0666667 0.0526316 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 30 45954 +a ||| mate hit ||| 0.25 0.134615 2.17609e-05 4.2952e-09 2.718 ||| 0-1 ||| 4 45954 +a ||| matter of course ||| 0.142857 0.0164489 2.17609e-05 2.94181e-09 2.718 ||| 0-1 ||| 7 45954 +a ||| matter of ||| 0.010582 0.0164489 4.35218e-05 6.86376e-06 2.718 ||| 0-1 ||| 189 45954 +a ||| may at ||| 0.2 0.185652 2.17609e-05 2.50632e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| may fall short of ||| 0.166667 0.0164489 2.17609e-05 1.93565e-12 2.718 ||| 0-3 ||| 6 45954 +a ||| me " in ||| 0.5 0.0437285 2.17609e-05 2.67511e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| me to ||| 0.0416667 0.270828 2.17609e-05 4.46469e-05 2.718 ||| 0-1 ||| 24 45954 +a ||| meant to serve ||| 0.166667 0.270828 2.17609e-05 7.06704e-09 2.718 ||| 0-1 ||| 6 45954 +a ||| meant to ||| 0.0338983 0.270828 4.35218e-05 3.40089e-05 2.718 ||| 0-1 ||| 59 45954 +a ||| meant ||| 0.00411523 0.0103448 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 243 45954 +a ||| measure of ||| 0.0338983 0.0164489 4.35218e-05 2.66181e-06 2.718 ||| 0-1 ||| 59 45954 +a ||| meet again , ||| 0.5 0.0930362 2.17609e-05 7.57975e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| meet again ||| 0.142857 0.0930362 2.17609e-05 3.71064e-07 2.718 ||| 0-1 ||| 7 45954 +a ||| meet ||| 0.00224215 0.0033613 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 446 45954 +a ||| members of ||| 0.00393701 0.0164489 2.17609e-05 4.62258e-06 2.718 ||| 0-1 ||| 254 45954 +a ||| memorably promised ||| 1 0.0108696 2.17609e-05 2.301e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| men infected with HIV or AIDS in ||| 1 0.0437285 2.17609e-05 1.91176e-25 2.718 ||| 0-6 ||| 1 45954 +a ||| merely supports ||| 0.333333 0.11811 2.17609e-05 1.37883e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| met , ||| 0.0833333 0.0664962 2.17609e-05 6.26702e-05 2.718 ||| 0-0 ||| 12 45954 +a ||| met ||| 0.0147783 0.0664962 6.52827e-05 0.0003068 2.718 ||| 0-0 ||| 203 45954 +a ||| middle ||| 0.0037037 0.0034247 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 270 45954 +a ||| might be faced ||| 1 0.100457 2.17609e-05 3.16249e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| might become ||| 0.125 0.0754467 2.17609e-05 2.38504e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| might run into ||| 0.333333 0.176821 2.17609e-05 2.79354e-09 2.718 ||| 0-2 ||| 3 45954 +a ||| migrated to ||| 0.166667 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| million to ||| 0.0625 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-1 ||| 16 45954 +a ||| mind starts to ||| 0.333333 0.21875 2.17609e-05 6.01785e-09 2.718 ||| 0-1 ||| 3 45954 +a ||| mind starts ||| 0.333333 0.21875 2.17609e-05 7.29523e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| mind to ||| 0.25 0.270828 2.17609e-05 7.22729e-05 2.718 ||| 0-1 ||| 4 45954 +a ||| minister , can place his trust in ||| 1 0.0437285 2.17609e-05 7.46672e-20 2.718 ||| 0-6 ||| 1 45954 +a ||| ministers , ||| 0.0606061 0.0103359 4.35218e-05 9.64157e-06 2.718 ||| 0-0 ||| 33 45954 +a ||| ministers to ||| 0.166667 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-1 ||| 6 45954 +a ||| ministers ||| 0.00557103 0.0103359 4.35218e-05 4.72e-05 2.718 ||| 0-0 ||| 359 45954 +a ||| mired in ||| 0.0181818 0.0437285 2.17609e-05 7.65781e-07 2.718 ||| 0-1 ||| 55 45954 +a ||| missed by ||| 1 0.0120482 2.17609e-05 7.99273e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| missed ||| 0.0181818 0.0120482 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 55 45954 +a ||| mission to Kosovo ||| 1 0.270828 2.17609e-05 3.31906e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| mission to ||| 0.0666667 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-1 ||| 15 45954 +a ||| money to ||| 0.0241935 0.270828 6.52827e-05 7.86557e-05 2.718 ||| 0-1 ||| 124 45954 +a ||| monitors ||| 0.03125 0.0444444 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 32 45954 +a ||| more disturbed ||| 1 0.047619 2.17609e-05 2.52119e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| more highly take ||| 1 0.018009 2.17609e-05 1.17901e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| more on ||| 0.0131579 0.0963759 2.17609e-05 5.49119e-05 2.718 ||| 0-1 ||| 76 45954 +a ||| more than lip service ||| 0.0555556 0.010385 2.17609e-05 8.57432e-15 2.718 ||| 0-1 ||| 18 45954 +a ||| more than lip ||| 0.0588235 0.010385 2.17609e-05 6.94839e-11 2.718 ||| 0-1 ||| 17 45954 +a ||| more than ||| 0.000832293 0.010385 4.35218e-05 2.67246e-06 2.718 ||| 0-1 ||| 2403 45954 +a ||| more to stop ||| 0.5 0.270828 2.17609e-05 1.13576e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| more to ||| 0.0223464 0.270828 8.70436e-05 0.000699359 2.718 ||| 0-1 ||| 179 45954 +a ||| more ||| 7.72678e-05 0.0002456 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 12942 45954 +a ||| most important attribute in ||| 1 0.0437285 2.17609e-05 3.62348e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| mostly to ||| 0.1 0.270828 2.17609e-05 3.18813e-05 2.718 ||| 0-1 ||| 10 45954 +a ||| motivated ||| 0.0106383 0.008 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 94 45954 +a ||| mounted such a sharp challenge to ||| 1 0.270828 2.17609e-05 5.80528e-18 2.718 ||| 0-5 ||| 1 45954 +a ||| move into ||| 0.125 0.176821 2.17609e-05 2.61816e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| move out ||| 1 0.0840356 2.17609e-05 9.62835e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| moved in fits ||| 0.333333 0.0437285 2.17609e-05 6.63166e-11 2.718 ||| 0-1 ||| 3 45954 +a ||| moved in ||| 0.125 0.0437285 2.17609e-05 5.10128e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| moved to ||| 0.0357143 0.270828 2.17609e-05 4.25193e-05 2.718 ||| 0-1 ||| 28 45954 +a ||| moved toward ||| 0.25 0.0996678 2.17609e-05 1.37954e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| movement toward ||| 0.111111 0.0996678 2.17609e-05 3.4515e-08 2.718 ||| 0-1 ||| 9 45954 +a ||| moving to ||| 0.0434783 0.270828 2.17609e-05 2.97537e-05 2.718 ||| 0-1 ||| 23 45954 +a ||| moving ||| 0.0111732 0.0171821 4.35218e-05 5.9e-05 2.718 ||| 0-0 ||| 179 45954 +a ||| much as ||| 0.005 0.0289876 2.17609e-05 1.34056e-05 2.718 ||| 0-1 ||| 200 45954 +a ||| much for ||| 0.05 0.0587253 2.17609e-05 3.41095e-05 2.718 ||| 0-1 ||| 20 45954 +a ||| much to ||| 0.00877193 0.270828 2.17609e-05 0.000471902 2.718 ||| 0-1 ||| 114 45954 +a ||| murdered ||| 0.0196078 0.134328 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 51 45954 +a ||| must be killed ||| 0.333333 0.200993 2.17609e-05 6.39715e-09 2.718 ||| 0-2 ||| 3 45954 +a ||| must get in ||| 1 0.0437285 2.17609e-05 2.00398e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| must open its borders to everyone from ||| 1 0.0408799 2.17609e-05 6.02901e-22 2.718 ||| 0-6 ||| 1 45954 +a ||| must uphold the ruling , but if ||| 1 0.0011566 2.17609e-05 1.03246e-21 2.718 ||| 0-2 ||| 1 45954 +a ||| must uphold the ruling , but ||| 1 0.0011566 2.17609e-05 1.62234e-18 2.718 ||| 0-2 ||| 1 45954 +a ||| must uphold the ruling , ||| 1 0.0011566 2.17609e-05 1.3878e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| must uphold the ruling ||| 1 0.0011566 2.17609e-05 6.79394e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| must uphold the ||| 1 0.0011566 2.17609e-05 4.9809e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| my plan to drop ||| 0.5 0.270828 2.17609e-05 3.55272e-13 2.718 ||| 0-2 ||| 2 45954 +a ||| my plan to ||| 0.5 0.270828 2.17609e-05 6.83216e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| naming ||| 0.047619 0.277778 2.17609e-05 0.000118 2.718 ||| 0-0 ||| 21 45954 +a ||| nation-wide leftist and Maoist ||| 0.5 0.0185185 2.17609e-05 4.18637e-18 2.718 ||| 0-1 ||| 2 45954 +a ||| nation-wide leftist and ||| 0.5 0.0185185 2.17609e-05 6.44058e-13 2.718 ||| 0-1 ||| 2 45954 +a ||| nation-wide leftist ||| 0.5 0.0185185 2.17609e-05 7.67e-11 2.718 ||| 0-1 ||| 2 45954 +a ||| nationally , ||| 0.142857 0.285714 2.17609e-05 4.82079e-05 2.718 ||| 0-0 ||| 7 45954 +a ||| nationally ||| 0.0526316 0.285714 2.17609e-05 0.000236 2.718 ||| 0-0 ||| 19 45954 +a ||| nationwide ||| 0.0196078 0.235294 2.17609e-05 0.000236 2.718 ||| 0-0 ||| 51 45954 +a ||| near abroad " ||| 0.25 0.0537084 2.17609e-05 7.22722e-11 2.718 ||| 0-0 ||| 4 45954 +a ||| near abroad ||| 0.111111 0.0537084 2.17609e-05 1.44715e-08 2.718 ||| 0-0 ||| 9 45954 +a ||| near ||| 0.00603622 0.0537084 6.52827e-05 0.0002478 2.718 ||| 0-0 ||| 497 45954 +a ||| nearby ||| 0.025641 0.0526316 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 39 45954 +a ||| nearly ||| 0.00310078 0.0037383 4.35218e-05 2.36e-05 2.718 ||| 0-0 ||| 645 45954 +a ||| neat 100 years in the past ||| 1 0.0437285 2.17609e-05 1.97076e-20 2.718 ||| 0-3 ||| 1 45954 +a ||| neat 100 years in the ||| 1 0.0437285 2.17609e-05 9.79018e-17 2.718 ||| 0-3 ||| 1 45954 +a ||| neat 100 years in ||| 1 0.0437285 2.17609e-05 1.8427e-15 2.718 ||| 0-3 ||| 1 45954 +a ||| necessary for us to ||| 1 0.270828 2.17609e-05 9.83097e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| need to run ||| 0.333333 0.270828 2.17609e-05 7.35718e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| need to ||| 0.0132939 0.270828 0.000195848 0.0001743 2.718 ||| 0-1 ||| 677 45954 +a ||| needs to be put right -- ||| 0.5 0.270828 2.17609e-05 1.60336e-15 2.718 ||| 0-1 ||| 2 45954 +a ||| needs to be put right ||| 0.5 0.270828 2.17609e-05 3.18974e-13 2.718 ||| 0-1 ||| 2 45954 +a ||| needs to be put ||| 0.333333 0.270828 2.17609e-05 8.4676e-10 2.718 ||| 0-1 ||| 3 45954 +a ||| needs to be ||| 0.00740741 0.270828 2.17609e-05 7.01018e-07 2.718 ||| 0-1 ||| 135 45954 +a ||| needs to ||| 0.00842697 0.270828 6.52827e-05 6.80177e-05 2.718 ||| 0-1 ||| 356 45954 +a ||| needs ||| 0.00281889 0.0028674 8.70436e-05 4.72e-05 2.718 ||| 0-0 ||| 1419 45954 +a ||| nervous ||| 0.0222222 0.102564 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 45 45954 +a ||| nevertheless within ||| 0.333333 0.0216675 2.17609e-05 3.16995e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| new fact-finding mission to Kosovo ||| 1 0.270828 2.17609e-05 1.58331e-18 2.718 ||| 0-3 ||| 1 45954 +a ||| new fact-finding mission to ||| 1 0.270828 2.17609e-05 6.08964e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| new technologies to address environmental risks ||| 1 0.270828 2.17609e-05 6.16896e-22 2.718 ||| 0-2 ||| 1 45954 +a ||| new technologies to address environmental ||| 1 0.270828 2.17609e-05 1.58178e-17 2.718 ||| 0-2 ||| 1 45954 +a ||| new technologies to address ||| 1 0.270828 2.17609e-05 8.11171e-13 2.718 ||| 0-2 ||| 1 45954 +a ||| new technologies to ||| 0.333333 0.270828 2.17609e-05 7.80723e-09 2.718 ||| 0-2 ||| 3 45954 +a ||| news for ||| 0.0212766 0.0587253 2.17609e-05 2.15062e-06 2.718 ||| 0-1 ||| 47 45954 +a ||| next spring ||| 0.0416667 0.0052711 2.17609e-05 1.6107e-09 2.718 ||| 0-0 ||| 24 45954 +a ||| next to him ||| 0.1 0.270828 2.17609e-05 3.3982e-08 2.718 ||| 0-1 ||| 10 45954 +a ||| next to ||| 0.0208333 0.270828 2.17609e-05 4.89021e-05 2.718 ||| 0-1 ||| 48 45954 +a ||| next ||| 0.0016129 0.0052711 4.35218e-05 8.26e-05 2.718 ||| 0-0 ||| 1240 45954 +a ||| no longer ||| 0.00120482 0.0037453 2.17609e-05 8.58379e-08 2.718 ||| 0-0 ||| 830 45954 +a ||| no matter what ||| 0.0357143 0.0037453 2.17609e-05 1.03777e-10 2.718 ||| 0-0 ||| 28 45954 +a ||| no matter ||| 0.0125 0.0037453 4.35218e-05 1.05133e-07 2.718 ||| 0-0 ||| 160 45954 +a ||| no ||| 0.00137228 0.0037453 0.000152326 0.0003304 2.718 ||| 0-0 ||| 5101 45954 +a ||| nominate ||| 0.125 0.428571 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 8 45954 +a ||| non-combatants in ||| 1 0.0437285 2.17609e-05 2.5526e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| none of ||| 0.0037037 0.0164489 2.17609e-05 1.39993e-06 2.718 ||| 0-1 ||| 270 45954 +a ||| not allowing him to complete ||| 1 0.270828 2.17609e-05 2.05346e-15 2.718 ||| 0-3 ||| 1 45954 +a ||| not allowing him to ||| 1 0.270828 2.17609e-05 2.43301e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| not help ||| 0.25 0.350156 2.17609e-05 2.48281e-05 2.718 ||| 0-1 ||| 4 45954 +a ||| not hurt if ||| 0.5 0.219512 2.17609e-05 4.76662e-10 2.718 ||| 0-1 ||| 2 45954 +a ||| not hurt ||| 0.142857 0.219512 2.17609e-05 7.48997e-07 2.718 ||| 0-1 ||| 7 45954 +a ||| not like it ||| 0.25 0.0278224 2.17609e-05 7.68181e-08 2.718 ||| 0-1 ||| 4 45954 +a ||| not like ||| 0.2 0.0278224 4.35218e-05 2.88502e-06 2.718 ||| 0-1 ||| 10 45954 +a ||| not meet again , ||| 0.5 0.0930362 2.17609e-05 1.78192e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| not meet again ||| 0.5 0.0930362 2.17609e-05 8.72334e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| not only ||| 0.000691563 0.0020258 2.17609e-05 3.88369e-07 2.718 ||| 0-1 ||| 1446 45954 +a ||| not to ||| 0.00408163 0.270828 4.35218e-05 0.000769504 2.718 ||| 0-1 ||| 490 45954 +a ||| nothing close to the ||| 0.333333 0.270828 2.17609e-05 8.41934e-10 2.718 ||| 0-2 ||| 3 45954 +a ||| nothing close to ||| 0.333333 0.270828 2.17609e-05 1.58468e-08 2.718 ||| 0-2 ||| 3 45954 +a ||| nothing so much as ||| 0.2 0.0289876 2.17609e-05 5.49211e-12 2.718 ||| 0-3 ||| 5 45954 +a ||| notwithstanding ||| 0.0114943 0.310345 2.17609e-05 0.0004248 2.718 ||| 0-0 ||| 87 45954 +a ||| now due for review ||| 0.333333 0.0587253 2.17609e-05 2.82227e-13 2.718 ||| 0-2 ||| 3 45954 +a ||| now due for ||| 0.333333 0.0587253 2.17609e-05 8.6839e-09 2.718 ||| 0-2 ||| 3 45954 +a ||| now in ||| 0.00917431 0.0437285 2.17609e-05 5.84035e-05 2.718 ||| 0-1 ||| 109 45954 +a ||| now re-condemned by ||| 0.333333 1 2.17609e-05 1.18868e-10 2.718 ||| 0-1 ||| 3 45954 +a ||| now re-condemned ||| 0.333333 1 2.17609e-05 1.7549e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| nowadays beat ||| 1 0.315068 2.17609e-05 2.64344e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| nowadays to ||| 0.25 0.270828 2.17609e-05 3.18813e-05 2.718 ||| 0-1 ||| 4 45954 +a ||| number of ||| 0.00145985 0.0164489 2.17609e-05 7.4246e-06 2.718 ||| 0-1 ||| 685 45954 +a ||| numbers of immigrant ||| 0.5 0.0164489 2.17609e-05 1.18336e-11 2.718 ||| 0-1 ||| 2 45954 +a ||| numbers of ||| 0.015873 0.0164489 2.17609e-05 1.82056e-06 2.718 ||| 0-1 ||| 63 45954 +a ||| nurtured ||| 0.0740741 0.119048 4.35218e-05 5.9e-05 2.718 ||| 0-0 ||| 27 45954 +a ||| obey ||| 0.1 0.173913 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 10 45954 +a ||| occur in ||| 0.0322581 0.0437285 2.17609e-05 2.80394e-06 2.718 ||| 0-1 ||| 31 45954 +a ||| of America 's ||| 0.0344828 0.0164489 2.17609e-05 3.99245e-07 2.718 ||| 0-0 ||| 29 45954 +a ||| of America ||| 0.00840336 0.0164489 2.17609e-05 2.56367e-05 2.718 ||| 0-0 ||| 119 45954 +a ||| of GNP to ||| 0.5 0.143638 2.17609e-05 2.29468e-07 2.718 ||| 0-0 0-2 ||| 2 45954 +a ||| of Palestine ||| 0.0333333 0.0164489 2.17609e-05 2.80418e-07 2.718 ||| 0-0 ||| 30 45954 +a ||| of Romania ||| 0.0833333 0.0164489 2.17609e-05 4.20627e-07 2.718 ||| 0-0 ||| 12 45954 +a ||| of a ||| 0.00133156 0.0164489 0.000108804 0.000867828 2.718 ||| 0-0 ||| 3755 45954 +a ||| of air time to ||| 1 0.270828 2.17609e-05 4.30038e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| of all ||| 0.0013947 0.0164489 2.17609e-05 5.58937e-05 2.718 ||| 0-0 ||| 717 45954 +a ||| of an interconnected world . ||| 1 0.0164489 2.17609e-05 1.95631e-15 2.718 ||| 0-0 ||| 1 45954 +a ||| of an interconnected world ||| 1 0.0164489 2.17609e-05 4.25479e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| of an interconnected ||| 1 0.0164489 2.17609e-05 4.85319e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| of an ||| 0.00143472 0.0164489 2.17609e-05 7.46645e-05 2.718 ||| 0-0 ||| 697 45954 +a ||| of both ||| 0.0150376 0.0164489 4.35218e-05 3.68426e-05 2.718 ||| 0-0 ||| 133 45954 +a ||| of business ||| 0.015873 0.0164489 2.17609e-05 5.46383e-06 2.718 ||| 0-0 ||| 63 45954 +a ||| of corruption ||| 0.00990099 0.0164489 2.17609e-05 7.01044e-07 2.718 ||| 0-0 ||| 101 45954 +a ||| of course ||| 0.000645578 0.0164489 2.17609e-05 9.24516e-06 2.718 ||| 0-0 ||| 1549 45954 +a ||| of cutting off one 's nose to ||| 1 0.0164489 2.17609e-05 3.24605e-20 2.718 ||| 0-0 ||| 1 45954 +a ||| of cutting off one 's nose ||| 1 0.0164489 2.17609e-05 3.93508e-19 2.718 ||| 0-0 ||| 1 45954 +a ||| of cutting off one 's ||| 1 0.0164489 2.17609e-05 6.05396e-14 2.718 ||| 0-0 ||| 1 45954 +a ||| of cutting off one ||| 1 0.0164489 2.17609e-05 3.88742e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| of cutting off ||| 0.333333 0.0164489 2.17609e-05 9.67021e-10 2.718 ||| 0-0 ||| 3 45954 +a ||| of cutting ||| 0.0555556 0.0164489 2.17609e-05 8.41253e-07 2.718 ||| 0-0 ||| 18 45954 +a ||| of daunting ||| 1 0.0164489 2.17609e-05 2.80418e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| of elites around ||| 1 0.0474763 2.17609e-05 1.96853e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| of going beyond ||| 0.333333 0.0164489 2.17609e-05 2.70144e-09 2.718 ||| 0-0 ||| 3 45954 +a ||| of going ||| 0.2 0.0164489 4.35218e-05 9.24516e-06 2.718 ||| 0-0 ||| 10 45954 +a ||| of government-induced ||| 1 0.0164489 2.17609e-05 1.40209e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| of high-level ||| 0.333333 0.0164489 2.17609e-05 1.40209e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| of hired ||| 0.5 0.151082 2.17609e-05 2.54533e-06 2.718 ||| 0-0 0-1 ||| 2 45954 +a ||| of his administration ||| 0.142857 0.0164489 2.17609e-05 2.38163e-09 2.718 ||| 0-0 ||| 7 45954 +a ||| of his ||| 0.0030303 0.0164489 4.35218e-05 2.15728e-05 2.718 ||| 0-0 ||| 660 45954 +a ||| of immigrant ||| 0.5 0.0164489 2.17609e-05 1.40209e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| of it at ||| 1 0.185652 2.17609e-05 1.83857e-05 2.718 ||| 0-2 ||| 1 45954 +a ||| of it ||| 0.00473934 0.0164489 2.17609e-05 0.00057435 2.718 ||| 0-0 ||| 211 45954 +a ||| of its claim to be ||| 0.5 0.0164489 2.17609e-05 1.04117e-11 2.718 ||| 0-0 ||| 2 45954 +a ||| of its claim to ||| 0.5 0.0164489 2.17609e-05 1.01022e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| of its claim ||| 0.5 0.0164489 2.17609e-05 1.22466e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| of its ||| 0.000658762 0.0164489 2.17609e-05 4.28651e-05 2.718 ||| 0-0 ||| 1518 45954 +a ||| of laundry , ||| 1 0.0164489 2.17609e-05 2.86406e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| of laundry ||| 1 0.0164489 2.17609e-05 1.40209e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| of law that protects ||| 0.5 0.291667 2.17609e-05 5.68447e-12 2.718 ||| 0-3 ||| 2 45954 +a ||| of loss ||| 0.125 0.0164489 2.17609e-05 1.54014e-06 2.718 ||| 0-0 ||| 8 45954 +a ||| of making ||| 0.0178571 0.0164489 2.17609e-05 1.00864e-05 2.718 ||| 0-0 ||| 56 45954 +a ||| of means ||| 0.0769231 0.0164489 2.17609e-05 7.70502e-06 2.718 ||| 0-0 ||| 13 45954 +a ||| of new technologies to address environmental risks ||| 1 0.270828 2.17609e-05 1.66661e-23 2.718 ||| 0-3 ||| 1 45954 +a ||| of new technologies to address environmental ||| 1 0.270828 2.17609e-05 4.27336e-19 2.718 ||| 0-3 ||| 1 45954 +a ||| of new technologies to address ||| 1 0.270828 2.17609e-05 2.19147e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| of new technologies to ||| 1 0.270828 2.17609e-05 2.10921e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| of office ||| 0.0588235 0.0164489 2.17609e-05 4.48237e-06 2.718 ||| 0-0 ||| 17 45954 +a ||| of opposition ||| 0.0625 0.0164489 2.17609e-05 9.81462e-07 2.718 ||| 0-0 ||| 16 45954 +a ||| of other companies . ||| 1 0.0164489 2.17609e-05 1.21132e-11 2.718 ||| 0-0 ||| 1 45954 +a ||| of other companies ||| 0.5 0.0164489 2.17609e-05 2.63451e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| of other ||| 0.00518135 0.0164489 2.17609e-05 2.53562e-05 2.718 ||| 0-0 ||| 193 45954 +a ||| of power , ||| 0.0217391 0.0164489 2.17609e-05 2.089e-06 2.718 ||| 0-0 ||| 46 45954 +a ||| of power ||| 0.00257069 0.0164489 2.17609e-05 1.02266e-05 2.718 ||| 0-0 ||| 389 45954 +a ||| of proxy ||| 0.333333 0.0164489 2.17609e-05 8.41253e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| of reliance on ||| 0.2 0.0963759 2.17609e-05 4.51314e-09 2.718 ||| 0-2 ||| 5 45954 +a ||| of remaining ||| 0.111111 0.0164489 2.17609e-05 1.68035e-06 2.718 ||| 0-0 ||| 9 45954 +a ||| of severely ||| 1 0.015858 2.17609e-05 5.09066e-07 2.718 ||| 0-0 0-1 ||| 1 45954 +a ||| of some ||| 0.00584795 0.0164489 2.17609e-05 1.541e-05 2.718 ||| 0-0 ||| 171 45954 +a ||| of substantial miscalculation ||| 0.25 0.0164489 2.17609e-05 3.64543e-12 2.718 ||| 0-0 ||| 4 45954 +a ||| of substantial ||| 0.25 0.0164489 2.17609e-05 5.60836e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| of succession ||| 0.2 0.0138424 2.17609e-05 2.54533e-07 2.718 ||| 0-0 0-1 ||| 5 45954 +a ||| of that capacity ||| 0.5 0.0164489 2.17609e-05 9.16383e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| of that ||| 0.00323625 0.0164489 2.17609e-05 0.000176227 2.718 ||| 0-0 ||| 309 45954 +a ||| of the credit ||| 0.25 0.0164489 2.17609e-05 1.41421e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| of the day ||| 0.0172414 0.0164489 2.17609e-05 3.0519e-07 2.718 ||| 0-0 ||| 58 45954 +a ||| of the ||| 0.000557465 0.0164489 0.000261131 0.00114604 2.718 ||| 0-0 ||| 21526 45954 +a ||| of their rage seem able to melt ||| 1 0.270828 2.17609e-05 1.40994e-22 2.718 ||| 0-5 ||| 1 45954 +a ||| of their rage seem able to ||| 1 0.270828 2.17609e-05 2.16914e-17 2.718 ||| 0-5 ||| 1 45954 +a ||| of them ||| 0.00241546 0.0164489 2.17609e-05 4.21662e-05 2.718 ||| 0-0 ||| 414 45954 +a ||| of this ||| 0.000839631 0.0164489 2.17609e-05 4.28651e-05 2.718 ||| 0-0 ||| 1191 45954 +a ||| of total energy ||| 0.5 0.0164489 2.17609e-05 3.18429e-10 2.718 ||| 0-0 ||| 2 45954 +a ||| of total ||| 0.04 0.0164489 2.17609e-05 3.50307e-06 2.718 ||| 0-0 ||| 25 45954 +a ||| of trace ||| 1 0.0164489 2.17609e-05 4.20627e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| of what is ||| 0.0212766 0.0164489 2.17609e-05 3.50949e-07 2.718 ||| 0-0 ||| 47 45954 +a ||| of what ||| 0.0021645 0.0164489 2.17609e-05 2.12923e-05 2.718 ||| 0-0 ||| 462 45954 +a ||| of when ||| 0.0666667 0.0103413 2.17609e-05 6.61786e-06 2.718 ||| 0-0 0-1 ||| 15 45954 +a ||| of which ||| 0.00342466 0.0164489 2.17609e-05 2.59149e-05 2.718 ||| 0-0 ||| 292 45954 +a ||| of wisdom to ||| 1 0.270828 2.17609e-05 1.20618e-06 2.718 ||| 0-2 ||| 1 45954 +a ||| of working to ||| 1 0.270828 2.17609e-05 1.4361e-06 2.718 ||| 0-2 ||| 1 45954 +a ||| of ||| 0.0153164 0.0164489 0.0339688 0.0215706 2.718 ||| 0-0 ||| 101917 45954 +a ||| off a ||| 0.0588235 0.0698758 2.17609e-05 4.27264e-05 2.718 ||| 0-0 ||| 17 45954 +a ||| off by ||| 0.166667 0.0484202 4.35218e-05 7.16818e-06 2.718 ||| 0-0 0-1 ||| 12 45954 +a ||| off for ||| 0.5 0.0587253 2.17609e-05 2.71963e-05 2.718 ||| 0-1 ||| 2 45954 +a ||| off from one ||| 1 0.0408799 2.17609e-05 3.78972e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| off from ||| 0.105263 0.0408799 4.35218e-05 9.42716e-06 2.718 ||| 0-1 ||| 19 45954 +a ||| off guard ||| 0.5 0.0698758 2.17609e-05 5.5224e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| off new ||| 0.125 0.0698758 2.17609e-05 7.79402e-07 2.718 ||| 0-0 ||| 8 45954 +a ||| off to ||| 0.157895 0.270828 6.52827e-05 0.000376258 2.718 ||| 0-1 ||| 19 45954 +a ||| off ||| 0.0763723 0.0698758 0.000696349 0.001062 2.718 ||| 0-0 ||| 419 45954 +a ||| offer to ||| 0.0625 0.270828 2.17609e-05 3.18813e-05 2.718 ||| 0-1 ||| 16 45954 +a ||| offered to ||| 0.0333333 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-1 ||| 30 45954 +a ||| offering both ||| 0.2 0.121547 2.17609e-05 4.43397e-07 2.718 ||| 0-0 ||| 5 45954 +a ||| offering ||| 0.0150376 0.121547 4.35218e-05 0.0002596 2.718 ||| 0-0 ||| 133 45954 +a ||| office to ||| 0.2 0.270828 2.17609e-05 6.80177e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| officials ||| 0.000905797 0.0023566 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 1104 45954 +a ||| offshore ||| 0.0232558 0.0638298 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 43 45954 +a ||| often along ||| 0.25 0.15015 2.17609e-05 3.29574e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| often banal , ||| 1 0.18338 2.17609e-05 8.19426e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| often banal ||| 1 0.18338 2.17609e-05 4.01147e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| often describe ||| 1 0.18338 2.17609e-05 2.00574e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| often ||| 0.00338792 0.18338 0.000130565 0.0061715 2.718 ||| 0-0 ||| 1771 45954 +a ||| old embrace of ||| 1 0.0310671 2.17609e-05 6.3982e-10 2.718 ||| 0-1 0-2 ||| 1 45954 +a ||| on , ||| 0.0266667 0.0963759 4.35218e-05 0.00524988 2.718 ||| 0-0 ||| 75 45954 +a ||| on . ||| 0.0117647 0.0963759 2.17609e-05 0.000118169 2.718 ||| 0-0 ||| 85 45954 +a ||| on Al Qaeda 's ||| 0.25 0.0963759 2.17609e-05 6.76407e-14 2.718 ||| 0-0 ||| 4 45954 +a ||| on Al Qaeda ||| 0.25 0.0963759 2.17609e-05 4.3434e-12 2.718 ||| 0-0 ||| 4 45954 +a ||| on Al ||| 0.166667 0.0963759 2.17609e-05 6.68216e-07 2.718 ||| 0-0 ||| 6 45954 +a ||| on India and Bangladesh ||| 0.25 0.0963759 2.17609e-05 1.8222e-13 2.718 ||| 0-0 ||| 4 45954 +a ||| on India and ||| 0.25 0.0963759 2.17609e-05 2.80338e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| on India ||| 0.0625 0.0963759 2.17609e-05 3.33851e-06 2.718 ||| 0-0 ||| 16 45954 +a ||| on Japan ||| 0.0833333 0.0963759 2.17609e-05 7.17818e-06 2.718 ||| 0-0 ||| 12 45954 +a ||| on a hot ||| 1 0.0963759 2.17609e-05 3.36046e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| on a moment 's notice , ||| 0.5 0.0963759 2.17609e-05 1.82951e-14 2.718 ||| 0-0 ||| 2 45954 +a ||| on a moment 's notice ||| 0.5 0.0963759 2.17609e-05 8.9563e-14 2.718 ||| 0-0 ||| 2 45954 +a ||| on a moment 's ||| 0.5 0.0963759 2.17609e-05 1.25438e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| on a moment ||| 0.5 0.0963759 2.17609e-05 8.05476e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| on a par ||| 0.0588235 0.0963759 2.17609e-05 3.36046e-08 2.718 ||| 0-0 ||| 17 45954 +a ||| on a regular basis , brought ||| 1 0.0963759 2.17609e-05 1.02503e-15 2.718 ||| 0-0 ||| 1 45954 +a ||| on a regular basis , ||| 0.25 0.0963759 2.17609e-05 2.10436e-12 2.718 ||| 0-0 ||| 4 45954 +a ||| on a regular basis ||| 0.2 0.0963759 2.17609e-05 1.03018e-11 2.718 ||| 0-0 ||| 5 45954 +a ||| on a regular ||| 0.25 0.0963759 2.17609e-05 2.68837e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| on a scale ||| 0.05 0.0963759 2.17609e-05 8.72685e-08 2.718 ||| 0-0 ||| 20 45954 +a ||| on a wealth of ||| 1 0.0963759 2.17609e-05 2.53923e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| on a wealth ||| 1 0.0963759 2.17609e-05 9.39894e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| on a ||| 0.0603622 0.0963759 0.00130565 0.00103399 2.718 ||| 0-0 ||| 994 45954 +a ||| on account of ||| 0.5 0.0963759 2.17609e-05 8.11672e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| on account ||| 0.5 0.0963759 2.17609e-05 3.0044e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| on an ||| 0.0140845 0.0963759 4.35218e-05 8.89601e-05 2.718 ||| 0-0 ||| 142 45954 +a ||| on banks ||| 0.111111 0.0963759 4.35218e-05 2.67029e-06 2.718 ||| 0-0 ||| 18 45954 +a ||| on board ||| 0.0666667 0.0963759 2.17609e-05 2.16913e-06 2.718 ||| 0-0 ||| 15 45954 +a ||| on both sides ||| 0.00900901 0.0963759 2.17609e-05 5.70217e-09 2.718 ||| 0-0 ||| 111 45954 +a ||| on both ||| 0.00613497 0.0963759 2.17609e-05 4.38966e-05 2.718 ||| 0-0 ||| 163 45954 +a ||| on bringing ||| 0.2 0.0963759 2.17609e-05 3.50556e-06 2.718 ||| 0-0 ||| 5 45954 +a ||| on closer ||| 0.125 0.0963759 2.17609e-05 4.50532e-06 2.718 ||| 0-0 ||| 8 45954 +a ||| on dramatic ||| 1 0.0963759 2.17609e-05 5.01162e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| on earth did ||| 1 0.0963759 2.17609e-05 1.8758e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| on earth ||| 0.0333333 0.0963759 2.17609e-05 1.16938e-06 2.718 ||| 0-0 ||| 30 45954 +a ||| on easing ||| 0.1 0.0963759 2.17609e-05 1.67054e-07 2.718 ||| 0-0 ||| 10 45954 +a ||| on either ||| 0.04 0.0963759 2.17609e-05 2.53691e-05 2.718 ||| 0-0 ||| 25 45954 +a ||| on endangering state security released ||| 0.333333 0.0963759 2.17609e-05 4.22202e-19 2.718 ||| 0-0 ||| 3 45954 +a ||| on endangering state security ||| 0.333333 0.0963759 2.17609e-05 7.22949e-15 2.718 ||| 0-0 ||| 3 45954 +a ||| on endangering state ||| 0.333333 0.0963759 2.17609e-05 5.85858e-11 2.718 ||| 0-0 ||| 3 45954 +a ||| on endangering ||| 0.333333 0.0963759 2.17609e-05 1.67054e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| on financial ||| 0.5 0.0963759 2.17609e-05 7.67677e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| on herding ||| 1 0.0963759 2.17609e-05 1.67054e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| on it ||| 0.03125 0.0963759 2.17609e-05 0.000684317 2.718 ||| 0-0 ||| 32 45954 +a ||| on its ||| 0.00291545 0.0963759 2.17609e-05 5.10722e-05 2.718 ||| 0-0 ||| 343 45954 +a ||| on local ||| 0.5 0.0963759 2.17609e-05 4.50532e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| on membership ||| 1 0.0963759 2.17609e-05 2.33618e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| on occasion ||| 0.0833333 0.0963759 2.17609e-05 6.68216e-07 2.718 ||| 0-0 ||| 12 45954 +a ||| on of ||| 0.142857 0.0963759 2.17609e-05 0.00069433 2.718 ||| 0-0 ||| 7 45954 +a ||| on one 's ||| 0.142857 0.0963759 2.17609e-05 1.60897e-06 2.718 ||| 0-0 ||| 7 45954 +a ||| on one ||| 0.0103093 0.0963759 2.17609e-05 0.000103316 2.718 ||| 0-0 ||| 97 45954 +a ||| on plans to ||| 0.25 0.270828 2.17609e-05 5.00731e-08 2.718 ||| 0-2 ||| 4 45954 +a ||| on preferred ||| 0.5 0.0963759 2.17609e-05 8.35269e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| on record ||| 0.0769231 0.0963759 2.17609e-05 4.34083e-06 2.718 ||| 0-0 ||| 13 45954 +a ||| on sexy ||| 1 0.0963759 2.17609e-05 1.67054e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| on someone ||| 1 0.0963759 2.17609e-05 2.33618e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| on taking modest steps ||| 0.2 0.0963759 2.17609e-05 1.58675e-14 2.718 ||| 0-0 ||| 5 45954 +a ||| on taking modest ||| 0.2 0.0963759 2.17609e-05 4.0686e-10 2.718 ||| 0-0 ||| 5 45954 +a ||| on taking ||| 0.142857 0.0963759 2.17609e-05 1.25188e-05 2.718 ||| 0-0 ||| 7 45954 +a ||| on that ||| 0.0163934 0.0963759 2.17609e-05 0.000209969 2.718 ||| 0-0 ||| 61 45954 +a ||| on the basis of ||| 0.0227273 0.0963759 4.35218e-05 1.4136e-08 2.718 ||| 0-0 ||| 88 45954 +a ||| on the basis ||| 0.0204082 0.0963759 4.35218e-05 5.23245e-07 2.718 ||| 0-0 ||| 98 45954 +a ||| on the bottom line ||| 0.25 0.0963759 2.17609e-05 6.95095e-11 2.718 ||| 0-0 ||| 4 45954 +a ||| on the bottom ||| 0.111111 0.0963759 2.17609e-05 1.50747e-07 2.718 ||| 0-0 ||| 9 45954 +a ||| on the drawing ||| 0.333333 0.0963759 2.17609e-05 1.32996e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| on the head with ||| 1 0.0330797 2.17609e-05 3.98543e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| on the ||| 0.0123757 0.0963759 0.00132741 0.00136546 2.718 ||| 0-0 ||| 4929 45954 +a ||| on their ||| 0.00779221 0.0963759 6.52827e-05 4.60658e-05 2.718 ||| 0-0 ||| 385 45954 +a ||| on them ||| 0.0285714 0.0963759 2.17609e-05 5.02395e-05 2.718 ||| 0-0 ||| 35 45954 +a ||| on to cut ||| 0.25 0.270828 2.17609e-05 4.00199e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| on to ||| 0.235294 0.183602 0.000435218 0.0084124 2.718 ||| 0-0 0-1 ||| 85 45954 +a ||| on top of ||| 0.0526316 0.0963759 4.35218e-05 2.48015e-07 2.718 ||| 0-0 ||| 38 45954 +a ||| on top ||| 0.031746 0.0963759 4.35218e-05 9.18025e-06 2.718 ||| 0-0 ||| 63 45954 +a ||| on track , ||| 0.25 0.0963759 2.17609e-05 5.11338e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| on track ||| 0.0740741 0.0963759 4.35218e-05 2.50324e-06 2.718 ||| 0-0 ||| 27 45954 +a ||| on trial ||| 0.08 0.0963759 4.35218e-05 2.16913e-06 2.718 ||| 0-0 ||| 25 45954 +a ||| on with ||| 0.0833333 0.0963759 2.17609e-05 9.74747e-05 2.718 ||| 0-0 ||| 12 45954 +a ||| on world markets ||| 0.0909091 0.0963759 2.17609e-05 1.60876e-09 2.718 ||| 0-0 ||| 11 45954 +a ||| on world ||| 0.5 0.0963759 2.17609e-05 2.25317e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| on year ||| 0.2 0.0963759 2.17609e-05 1.21847e-05 2.718 ||| 0-0 ||| 5 45954 +a ||| on ||| 0.0967126 0.0963759 0.0407799 0.0257006 2.718 ||| 0-0 ||| 19377 45954 +a ||| on-the-job training . ||| 0.25 0.0076628 2.17609e-05 7.05318e-13 2.718 ||| 0-1 ||| 4 45954 +a ||| on-the-job training ||| 0.0769231 0.0076628 2.17609e-05 1.534e-10 2.718 ||| 0-1 ||| 13 45954 +a ||| once again , in ||| 1 0.0437285 2.17609e-05 1.61691e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| once again , ||| 0.0125 0.0930362 2.17609e-05 2.11734e-07 2.718 ||| 0-1 ||| 80 45954 +a ||| once again leap ||| 0.5 0.0930362 2.17609e-05 2.69499e-11 2.718 ||| 0-1 ||| 2 45954 +a ||| once again to ||| 0.125 0.270828 2.17609e-05 6.59763e-08 2.718 ||| 0-2 ||| 8 45954 +a ||| once again ||| 0.0218182 0.0930362 0.000130565 1.03654e-06 2.718 ||| 0-1 ||| 275 45954 +a ||| once confronted ||| 0.333333 0.118343 2.17609e-05 1.24136e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| once memorably promised ||| 1 0.0108696 2.17609e-05 1.21033e-13 2.718 ||| 0-2 ||| 1 45954 +a ||| once to ||| 0.5 0.270828 2.17609e-05 0.000172172 2.718 ||| 0-1 ||| 2 45954 +a ||| one another face-to-face , ||| 0.166667 0.306122 2.17609e-05 2.73688e-11 2.718 ||| 0-2 ||| 6 45954 +a ||| one another face-to-face ||| 0.166667 0.306122 2.17609e-05 1.33983e-10 2.718 ||| 0-2 ||| 6 45954 +a ||| one for ||| 0.037037 0.0587253 2.17609e-05 9.511e-05 2.718 ||| 0-1 ||| 27 45954 +a ||| one in ||| 0.00900901 0.0437285 2.17609e-05 0.000157869 2.718 ||| 0-1 ||| 111 45954 +a ||| one last time at ||| 0.5 0.185652 2.17609e-05 2.74527e-11 2.718 ||| 0-3 ||| 2 45954 +a ||| one ||| 0.000157011 0.0006728 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 6369 45954 +a ||| only on ||| 0.0128205 0.0963759 2.17609e-05 2.78723e-05 2.718 ||| 0-1 ||| 78 45954 +a ||| only remind ||| 0.5 0.222222 2.17609e-05 2.04754e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| only to ||| 0.00389105 0.270828 2.17609e-05 0.000354982 2.718 ||| 0-1 ||| 257 45954 +a ||| only ||| 0.00110299 0.0020258 0.000174087 0.0001652 2.718 ||| 0-0 ||| 7253 45954 +a ||| onto ||| 0.253731 0.220779 0.000369935 0.0004012 2.718 ||| 0-0 ||| 67 45954 +a ||| open its borders to everyone from Kenya ||| 1 0.0408799 2.17609e-05 6.03458e-24 2.718 ||| 0-5 ||| 1 45954 +a ||| open its borders to everyone from ||| 1 0.0408799 2.17609e-05 9.28396e-19 2.718 ||| 0-5 ||| 1 45954 +a ||| open to ||| 0.011236 0.270828 2.17609e-05 9.56438e-05 2.718 ||| 0-1 ||| 89 45954 +a ||| operate at the ||| 0.333333 0.185652 2.17609e-05 4.4133e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| operate at ||| 0.166667 0.185652 2.17609e-05 8.30667e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| opportunity for ||| 0.0113636 0.0587253 2.17609e-05 6.15139e-07 2.718 ||| 0-1 ||| 88 45954 +a ||| oppose him ||| 0.0909091 0.3 2.17609e-05 8.11782e-07 2.718 ||| 0-0 ||| 11 45954 +a ||| oppose ||| 0.00645161 0.3 2.17609e-05 0.0011682 2.718 ||| 0-0 ||| 155 45954 +a ||| opposed ||| 0.0127389 0.195545 4.35218e-05 0.0009322 2.718 ||| 0-0 ||| 157 45954 +a ||| opposition to ||| 0.00746269 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-1 ||| 134 45954 +a ||| options provided ||| 0.333333 0.0403509 2.17609e-05 8.8205e-09 2.718 ||| 0-1 ||| 3 45954 +a ||| or AIDS in some parts of Africa ||| 1 0.0437285 2.17609e-05 3.79378e-22 2.718 ||| 0-2 ||| 1 45954 +a ||| or AIDS in some parts of ||| 1 0.0437285 2.17609e-05 1.88464e-18 2.718 ||| 0-2 ||| 1 45954 +a ||| or AIDS in some parts ||| 1 0.0437285 2.17609e-05 6.97598e-17 2.718 ||| 0-2 ||| 1 45954 +a ||| or AIDS in some ||| 1 0.0437285 2.17609e-05 7.67435e-13 2.718 ||| 0-2 ||| 1 45954 +a ||| or AIDS in ||| 1 0.0437285 2.17609e-05 1.07424e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| or it claims to ||| 1 0.270828 2.17609e-05 1.34976e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| order to make it ||| 0.5 0.270828 2.17609e-05 9.25258e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| order to make ||| 0.0909091 0.270828 2.17609e-05 3.47495e-07 2.718 ||| 0-1 ||| 11 45954 +a ||| order to ride out ||| 0.333333 0.270828 2.17609e-05 4.55986e-11 2.718 ||| 0-1 ||| 3 45954 +a ||| order to ride ||| 0.333333 0.270828 2.17609e-05 1.02801e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| order to ||| 0.00503145 0.270828 8.70436e-05 0.000263593 2.718 ||| 0-1 ||| 795 45954 +a ||| ordered to ||| 0.0769231 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-1 ||| 13 45954 +a ||| ordered ||| 0.0107527 0.0512821 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 93 45954 +a ||| ordinary taxpayers to ||| 1 0.270828 2.17609e-05 5.53176e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| originating ||| 0.0714286 0.0384615 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 14 45954 +a ||| other to ||| 0.111111 0.270828 2.17609e-05 0.000384768 2.718 ||| 0-1 ||| 9 45954 +a ||| other ||| 0.000155958 0.0004894 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 6412 45954 +a ||| others ||| 0.000583771 0.0052053 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 1713 45954 +a ||| our way to ||| 1 0.270828 2.17609e-05 2.6165e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| ourselves out ||| 0.333333 0.0550847 2.17609e-05 6.80421e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| ourselves ||| 0.016129 0.0550847 2.17609e-05 0.0001534 2.718 ||| 0-0 ||| 62 45954 +a ||| out , with ||| 1 0.0330797 2.17609e-05 7.62316e-06 2.718 ||| 0-2 ||| 1 45954 +a ||| out and ||| 0.0625 0.0840356 2.17609e-05 3.45809e-05 2.718 ||| 0-0 ||| 16 45954 +a ||| out any ||| 0.333333 0.0840356 2.17609e-05 3.74427e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| out at these ||| 1 0.185652 2.17609e-05 8.6875e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| out at ||| 0.142857 0.185652 2.17609e-05 0.00011337 2.718 ||| 0-1 ||| 7 45954 +a ||| out by ||| 0.0344828 0.0840356 2.17609e-05 2.78946e-05 2.718 ||| 0-0 ||| 29 45954 +a ||| out for ||| 0.117647 0.0587253 4.35218e-05 0.000104943 2.718 ||| 0-1 ||| 17 45954 +a ||| out in a ||| 0.125 0.0437285 2.17609e-05 7.00799e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| out in ||| 0.0625 0.0437285 8.70436e-05 0.00017419 2.718 ||| 0-1 ||| 64 45954 +a ||| out of ||| 0.020202 0.0164489 0.000261131 9.56786e-05 2.718 ||| 0-1 ||| 594 45954 +a ||| out on ||| 0.030303 0.0963759 2.17609e-05 0.000113998 2.718 ||| 0-1 ||| 33 45954 +a ||| out over ||| 0.0526316 0.07993 2.17609e-05 2.15118e-05 2.718 ||| 0-1 ||| 19 45954 +a ||| out to ||| 0.189474 0.270828 0.000391696 0.00145187 2.718 ||| 0-1 ||| 95 45954 +a ||| out ||| 0.0657686 0.0840356 0.00180615 0.0041182 2.718 ||| 0-0 ||| 1262 45954 +a ||| outflank ||| 0.25 0.333333 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 4 45954 +a ||| over , ||| 0.0357143 0.07993 2.17609e-05 0.000990672 2.718 ||| 0-0 ||| 28 45954 +a ||| over a ||| 0.0140845 0.07993 4.35218e-05 0.000195117 2.718 ||| 0-0 ||| 142 45954 +a ||| over backwards ||| 0.333333 0.07993 2.17609e-05 9.45711e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| over for ||| 0.0909091 0.0587253 2.17609e-05 1.64408e-05 2.718 ||| 0-1 ||| 11 45954 +a ||| over short periods ||| 1 0.07993 2.17609e-05 1.26914e-11 2.718 ||| 0-0 ||| 1 45954 +a ||| over short ||| 1 0.07993 2.17609e-05 1.95253e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| over the ||| 0.0162544 0.07993 0.0005005 0.000257668 2.718 ||| 0-0 ||| 1415 45954 +a ||| over themselves and each other to ||| 1 0.270828 2.17609e-05 9.39278e-16 2.718 ||| 0-5 ||| 1 45954 +a ||| over this decade to ||| 1 0.270828 2.17609e-05 2.05661e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| over to ||| 0.375 0.270828 6.52827e-05 0.000227457 2.718 ||| 0-1 ||| 8 45954 +a ||| over ||| 0.0230924 0.07993 0.002002 0.0048498 2.718 ||| 0-0 ||| 3984 45954 +a ||| overall measure of ||| 0.5 0.0164489 2.17609e-05 1.03811e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| overnight ||| 0.00869565 0.174014 2.17609e-05 0.000885 2.718 ||| 0-0 ||| 115 45954 +a ||| overthrow ||| 0.0181818 0.0181818 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 55 45954 +a ||| overturn ||| 0.0909091 0.0909091 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 11 45954 +a ||| owing to ||| 0.00544959 0.270828 4.35218e-05 2.54985e-05 2.718 ||| 0-1 ||| 367 45954 +a ||| paid at ||| 0.2 0.185652 2.17609e-05 3.48625e-06 2.718 ||| 0-1 ||| 5 45954 +a ||| paid off ||| 0.0769231 0.0698758 2.17609e-05 1.44857e-07 2.718 ||| 0-1 ||| 13 45954 +a ||| paid to ||| 0.027027 0.270828 2.17609e-05 4.46469e-05 2.718 ||| 0-1 ||| 37 45954 +a ||| pain of loss ||| 1 0.0164489 2.17609e-05 1.19977e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| pain of ||| 0.0588235 0.0164489 2.17609e-05 1.68035e-06 2.718 ||| 0-1 ||| 17 45954 +a ||| paraphrase ||| 0.0909091 0.387097 2.17609e-05 0.0001416 2.718 ||| 0-0 ||| 11 45954 +a ||| part in it , ||| 0.25 0.0437285 2.17609e-05 1.31788e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| part in it ||| 0.2 0.0437285 2.17609e-05 6.45162e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| part in ||| 0.0465116 0.0437285 4.35218e-05 2.42301e-05 2.718 ||| 0-1 ||| 43 45954 +a ||| pass away , so ||| 1 0.0508475 2.17609e-05 2.8152e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| pass away , ||| 1 0.0508475 2.17609e-05 1.24926e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| pass away ||| 0.5 0.0508475 2.17609e-05 6.1157e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| passed " to ||| 1 0.270828 2.17609e-05 2.22971e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| passed in ||| 0.2 0.0437285 2.17609e-05 5.35654e-06 2.718 ||| 0-1 ||| 5 45954 +a ||| passed over ||| 0.333333 0.07993 2.17609e-05 6.61513e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| passionless ||| 1 1 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| path to ||| 0.0229885 0.270828 4.35218e-05 4.25193e-05 2.718 ||| 0-1 ||| 87 45954 +a ||| pay it frequent ||| 0.2 0.0061425 2.17609e-05 2.04225e-11 2.718 ||| 0-0 ||| 5 45954 +a ||| pay it ||| 0.0769231 0.0061425 2.17609e-05 1.57096e-06 2.718 ||| 0-0 ||| 13 45954 +a ||| pay to ||| 0.1 0.270828 2.17609e-05 7.44005e-05 2.718 ||| 0-1 ||| 10 45954 +a ||| pay ||| 0.00140252 0.0061425 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 713 45954 +a ||| paying any attention ||| 1 0.0601852 2.17609e-05 9.05169e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| paying any ||| 1 0.0601852 2.17609e-05 1.39471e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| paying ||| 0.00574713 0.0601852 2.17609e-05 0.0001534 2.718 ||| 0-0 ||| 174 45954 +a ||| payments were ||| 0.2 0.0028818 2.17609e-05 2.61311e-08 2.718 ||| 0-0 ||| 5 45954 +a ||| payments ||| 0.00323625 0.0028818 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 309 45954 +a ||| pending ||| 0.030303 0.0571429 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 33 45954 +a ||| people from ||| 0.012987 0.0408799 2.17609e-05 6.60435e-06 2.718 ||| 0-1 ||| 77 45954 +a ||| people in ||| 0.00413223 0.0437285 2.17609e-05 3.16248e-05 2.718 ||| 0-1 ||| 242 45954 +a ||| people like me to ||| 0.333333 0.270828 2.17609e-05 3.01224e-11 2.718 ||| 0-3 ||| 3 45954 +a ||| people to ||| 0.011976 0.270828 4.35218e-05 0.000263593 2.718 ||| 0-1 ||| 167 45954 +a ||| people ||| 0.00097166 0.0056864 0.000130565 0.0004956 2.718 ||| 0-0 ||| 6175 45954 +a ||| per ||| 0.00165289 0.0092251 2.17609e-05 0.000118 2.718 ||| 0-0 ||| 605 45954 +a ||| performing ||| 0.03125 0.112903 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 32 45954 +a ||| perhaps , begin to glimpse the ||| 1 0.270828 2.17609e-05 4.98533e-16 2.718 ||| 0-3 ||| 1 45954 +a ||| perhaps , begin to glimpse ||| 1 0.270828 2.17609e-05 9.38333e-15 2.718 ||| 0-3 ||| 1 45954 +a ||| perhaps , begin to ||| 1 0.270828 2.17609e-05 7.21795e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| persuade them ||| 1 0.425926 2.17609e-05 1.5916e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| persuade ||| 0.0133333 0.425926 2.17609e-05 0.0008142 2.718 ||| 0-0 ||| 75 45954 +a ||| pick up ||| 0.03125 0.0268991 2.17609e-05 9.92758e-08 2.718 ||| 0-1 ||| 32 45954 +a ||| pick ||| 0.0243902 0.0120482 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 41 45954 +a ||| pit ||| 0.111111 0.35 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 9 45954 +a ||| pitting ||| 0.047619 0.428571 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 21 45954 +a ||| place his trust in the near automatic ||| 1 0.0437285 2.17609e-05 5.24292e-23 2.718 ||| 0-3 ||| 1 45954 +a ||| place his trust in the near ||| 1 0.0437285 2.17609e-05 8.06604e-18 2.718 ||| 0-3 ||| 1 45954 +a ||| place his trust in the ||| 1 0.0437285 2.17609e-05 1.55116e-13 2.718 ||| 0-3 ||| 1 45954 +a ||| place his trust in ||| 1 0.0437285 2.17609e-05 2.91958e-12 2.718 ||| 0-3 ||| 1 45954 +a ||| place in ||| 0.00961538 0.0437285 2.17609e-05 4.99878e-05 2.718 ||| 0-1 ||| 104 45954 +a ||| place of ||| 0.030303 0.0164489 2.17609e-05 2.74572e-05 2.718 ||| 0-1 ||| 33 45954 +a ||| place to ||| 0.0227273 0.270828 2.17609e-05 0.00041665 2.718 ||| 0-1 ||| 44 45954 +a ||| placed in ||| 0.0833333 0.0437285 2.17609e-05 3.0592e-06 2.718 ||| 0-1 ||| 12 45954 +a ||| placed on ||| 0.0384615 0.0963759 2.17609e-05 2.00208e-06 2.718 ||| 0-1 ||| 26 45954 +a ||| placed ||| 0.0234375 0.0402299 6.52827e-05 8.26e-05 2.718 ||| 0-0 ||| 128 45954 +a ||| placing ||| 0.0147059 0.108108 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 68 45954 +a ||| plan to drop ||| 0.5 0.270828 2.17609e-05 1.65783e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| plan to ||| 0.0363636 0.270828 4.35218e-05 3.18813e-05 2.718 ||| 0-1 ||| 55 45954 +a ||| plans to ||| 0.0210526 0.270828 4.35218e-05 1.27656e-05 2.718 ||| 0-1 ||| 95 45954 +a ||| play into ||| 0.25 0.176821 2.17609e-05 2.76374e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| play up ||| 0.142857 0.0268991 2.17609e-05 3.14522e-07 2.718 ||| 0-1 ||| 7 45954 +a ||| played out over ||| 1 0.07993 2.17609e-05 3.07403e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| playing for ||| 0.125 0.0587253 2.17609e-05 2.76576e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| playing ||| 0.0123457 0.0258621 4.35218e-05 7.08e-05 2.718 ||| 0-0 ||| 162 45954 +a ||| pleasing ||| 0.25 0.307692 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 4 45954 +a ||| plotting to ||| 0.142857 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| point in ||| 0.02 0.0437285 2.17609e-05 1.91288e-05 2.718 ||| 0-1 ||| 50 45954 +a ||| point of making ||| 0.5 0.0164489 2.17609e-05 4.91309e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| point of ||| 0.00719424 0.0164489 2.17609e-05 1.0507e-05 2.718 ||| 0-1 ||| 139 45954 +a ||| point where it had to be bailed ||| 1 0.270828 2.17609e-05 6.14719e-19 2.718 ||| 0-4 ||| 1 45954 +a ||| point where it had to be ||| 1 0.270828 2.17609e-05 1.5762e-14 2.718 ||| 0-4 ||| 1 45954 +a ||| point where it had to ||| 1 0.270828 2.17609e-05 1.52934e-12 2.718 ||| 0-4 ||| 1 45954 +a ||| pointed at ||| 0.166667 0.185652 2.17609e-05 9.96801e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| pointing at ||| 0.5 0.185652 2.17609e-05 1.16293e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| pointing out ||| 0.0555556 0.0840356 2.17609e-05 1.87378e-07 2.718 ||| 0-1 ||| 18 45954 +a ||| points at ||| 1 0.185652 2.17609e-05 3.32011e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| poised to do ||| 0.25 0.270828 2.17609e-05 2.92651e-08 2.718 ||| 0-1 ||| 4 45954 +a ||| poised to ||| 0.0196078 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-1 ||| 51 45954 +a ||| political ||| 0.000330907 0.0003506 4.35218e-05 2.36e-05 2.718 ||| 0-0 ||| 6044 45954 +a ||| pollero , ||| 1 1 2.17609e-05 2.41039e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| pollero ||| 1 1 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| portrayed in China ||| 1 0.0437285 2.17609e-05 5.37119e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| portrayed in ||| 0.333333 0.0437285 2.17609e-05 7.65781e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| portrayed ||| 0.04 0.122449 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 25 45954 +a ||| possibility of substantial miscalculation ||| 0.25 0.0164489 2.17609e-05 1.65867e-16 2.718 ||| 0-1 ||| 4 45954 +a ||| possibility of substantial ||| 0.25 0.0164489 2.17609e-05 2.5518e-11 2.718 ||| 0-1 ||| 4 45954 +a ||| possibility of ||| 0.0047619 0.0164489 2.17609e-05 9.81462e-07 2.718 ||| 0-1 ||| 210 45954 +a ||| possible in order to make it ||| 0.5 0.270828 2.17609e-05 5.63276e-14 2.718 ||| 0-3 ||| 2 45954 +a ||| possible in order to make ||| 0.5 0.270828 2.17609e-05 2.11547e-12 2.718 ||| 0-3 ||| 2 45954 +a ||| possible in order to ||| 0.333333 0.270828 2.17609e-05 1.6047e-09 2.718 ||| 0-3 ||| 3 45954 +a ||| potential of ||| 0.04 0.0164489 2.17609e-05 3.08244e-06 2.718 ||| 0-1 ||| 25 45954 +a ||| potential to ||| 0.0208333 0.270828 2.17609e-05 4.67745e-05 2.718 ||| 0-1 ||| 48 45954 +a ||| potentially running into ||| 0.333333 0.176821 2.17609e-05 9.45528e-11 2.718 ||| 0-2 ||| 3 45954 +a ||| power as an impediment to ||| 1 0.270828 2.17609e-05 2.95224e-14 2.718 ||| 0-4 ||| 1 45954 +a ||| power to ||| 0.0130719 0.270828 4.35218e-05 0.000155184 2.718 ||| 0-1 ||| 153 45954 +a ||| pre-Christmas ||| 0.2 0.6 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 5 45954 +a ||| pre-crisis ||| 0.031746 0.241573 4.35218e-05 0.0005074 2.718 ||| 0-0 ||| 63 45954 +a ||| preached ||| 0.111111 0.0434783 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 9 45954 +a ||| premium on ||| 0.1 0.0963759 2.17609e-05 5.01162e-07 2.718 ||| 0-1 ||| 10 45954 +a ||| preoccupied by ||| 0.25 0.0269646 2.17609e-05 1.31619e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| preoccupied with the ||| 0.0555556 0.0330797 2.17609e-05 8.71661e-09 2.718 ||| 0-1 ||| 18 45954 +a ||| preoccupied with ||| 0.0294118 0.0330797 2.17609e-05 1.64063e-07 2.718 ||| 0-1 ||| 34 45954 +a ||| prepared to respond to ||| 0.333333 0.270828 2.17609e-05 5.58987e-11 2.718 ||| 0-1 ||| 3 45954 +a ||| prepared to respond ||| 0.25 0.270828 2.17609e-05 6.77641e-10 2.718 ||| 0-1 ||| 4 45954 +a ||| prepared to ||| 0.0110497 0.270828 4.35218e-05 1.48932e-05 2.718 ||| 0-1 ||| 181 45954 +a ||| presidency to ||| 0.166667 0.270828 2.17609e-05 1.70208e-05 2.718 ||| 0-1 ||| 6 45954 +a ||| president to go ||| 1 0.270828 2.17609e-05 3.07349e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| president to ||| 0.0526316 0.270828 2.17609e-05 4.46469e-05 2.718 ||| 0-1 ||| 19 45954 +a ||| pressing ahead ||| 0.125 0.134969 2.17609e-05 5.22575e-08 2.718 ||| 0-0 ||| 8 45954 +a ||| pressing hard ||| 0.142857 0.134969 2.17609e-05 1.16327e-07 2.718 ||| 0-0 ||| 7 45954 +a ||| pressing ||| 0.0285714 0.134969 8.70436e-05 0.0002596 2.718 ||| 0-0 ||| 140 45954 +a ||| pressure on ||| 0.0162602 0.0963759 4.35218e-05 1.66797e-06 2.718 ||| 0-1 ||| 123 45954 +a ||| price of ||| 0.00444444 0.0164489 2.17609e-05 3.36286e-06 2.718 ||| 0-1 ||| 225 45954 +a ||| private borrowers ||| 0.0769231 0.0320513 2.17609e-05 4.5961e-09 2.718 ||| 0-1 ||| 13 45954 +a ||| prize to him ||| 0.25 0.270828 2.17609e-05 8.87082e-09 2.718 ||| 0-1 ||| 4 45954 +a ||| prize to ||| 0.166667 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-1 ||| 6 45954 +a ||| problems than ||| 0.142857 0.010385 2.17609e-05 1.62479e-07 2.718 ||| 0-1 ||| 7 45954 +a ||| proceeded to expel ||| 0.5 0.441177 2.17609e-05 2.84715e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| progress toward ||| 0.0416667 0.0996678 2.17609e-05 8.96328e-08 2.718 ||| 0-1 ||| 24 45954 +a ||| promised ||| 0.00888889 0.0108696 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 225 45954 +a ||| prompted his ||| 0.333333 0.2 2.17609e-05 1.77018e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| prompted ||| 0.0444444 0.2 4.35218e-05 0.000177 2.718 ||| 0-0 ||| 45 45954 +a ||| prompting a new fact-finding mission to Kosovo ||| 1 0.270828 2.17609e-05 8.28094e-25 2.718 ||| 0-5 ||| 1 45954 +a ||| prompting a new fact-finding mission to ||| 1 0.270828 2.17609e-05 3.18498e-20 2.718 ||| 0-5 ||| 1 45954 +a ||| prone to produce bubbles . ||| 1 0.270828 2.17609e-05 1.07397e-17 2.718 ||| 0-1 ||| 1 45954 +a ||| prone to produce bubbles ||| 1 0.270828 2.17609e-05 2.33579e-15 2.718 ||| 0-1 ||| 1 45954 +a ||| prone to produce ||| 1 0.270828 2.17609e-05 3.59352e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| prone to ||| 0.0185185 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 54 45954 +a ||| prosecuted ||| 0.12 0.170732 6.52827e-05 8.26e-05 2.718 ||| 0-0 ||| 25 45954 +a ||| prospect of ||| 0.00485437 0.0164489 2.17609e-05 7.01044e-07 2.718 ||| 0-1 ||| 206 45954 +a ||| protect ||| 0.00197628 0.0406977 2.17609e-05 0.0002478 2.718 ||| 0-0 ||| 506 45954 +a ||| protected ||| 0.00735294 0.0875 2.17609e-05 0.0001652 2.718 ||| 0-0 ||| 136 45954 +a ||| protection to ||| 0.142857 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| protects ||| 0.0294118 0.291667 2.17609e-05 0.0001652 2.718 ||| 0-0 ||| 34 45954 +a ||| proven to serve ||| 1 0.270828 2.17609e-05 5.7407e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| proven to ||| 0.0243902 0.270828 2.17609e-05 2.76261e-05 2.718 ||| 0-1 ||| 41 45954 +a ||| provide for ||| 0.037037 0.0587253 2.17609e-05 9.67898e-06 2.718 ||| 0-1 ||| 27 45954 +a ||| provide on-the-job training . ||| 0.25 0.0076628 2.17609e-05 2.88546e-16 2.718 ||| 0-2 ||| 4 45954 +a ||| provide on-the-job training ||| 0.25 0.0076628 2.17609e-05 6.27559e-14 2.718 ||| 0-2 ||| 4 45954 +a ||| provide protection to ||| 0.166667 0.270828 2.17609e-05 2.6112e-09 2.718 ||| 0-2 ||| 6 45954 +a ||| provided a glimpse at ||| 1 0.185652 2.17609e-05 3.21227e-12 2.718 ||| 0-3 ||| 1 45954 +a ||| provided to ||| 0.0357143 0.270828 2.17609e-05 7.86557e-05 2.718 ||| 0-1 ||| 28 45954 +a ||| provided ||| 0.00742574 0.0403509 6.52827e-05 0.0002714 2.718 ||| 0-0 ||| 404 45954 +a ||| provider of ||| 0.0769231 0.0164489 2.17609e-05 4.20627e-07 2.718 ||| 0-1 ||| 13 45954 +a ||| provides a livelihood for ||| 0.5 0.0587253 2.17609e-05 9.65183e-13 2.718 ||| 0-3 ||| 2 45954 +a ||| provision of ||| 0.0181818 0.0164489 2.17609e-05 5.60836e-07 2.718 ||| 0-1 ||| 55 45954 +a ||| proximity to ||| 0.0909091 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 11 45954 +a ||| public broadcasts urging ||| 0.5 0.313433 2.17609e-05 5.64872e-13 2.718 ||| 0-2 ||| 2 45954 +a ||| public for ||| 0.5 0.0587253 2.17609e-05 8.29728e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| publicity surrounding the ||| 0.5 0.15625 2.17609e-05 3.05628e-10 2.718 ||| 0-1 ||| 2 45954 +a ||| publicity surrounding ||| 0.5 0.15625 2.17609e-05 5.7525e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| publicly , at each ||| 1 0.185652 2.17609e-05 1.05779e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| publicly , at ||| 1 0.185652 2.17609e-05 2.03617e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| pull ahead of ||| 1 0.0164489 2.17609e-05 2.25792e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| pull back from ||| 0.333333 0.0408799 2.17609e-05 5.9269e-10 2.718 ||| 0-2 ||| 3 45954 +a ||| pull people ||| 0.5 0.0056864 2.17609e-05 2.57712e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| pulled ||| 0.0769231 0.149254 2.17609e-05 0.000118 2.718 ||| 0-0 ||| 13 45954 +a ||| pulling out ||| 0.0909091 0.0840356 2.17609e-05 1.6061e-07 2.718 ||| 0-1 ||| 11 45954 +a ||| pulling ||| 0.037037 0.142857 2.17609e-05 0.000118 2.718 ||| 0-0 ||| 27 45954 +a ||| pumping $ ||| 1 0.0233612 2.17609e-05 1.02778e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| pumping ||| 0.111111 0.111111 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 9 45954 +a ||| punishing ||| 0.0238095 0.389831 2.17609e-05 0.0002714 2.718 ||| 0-0 ||| 42 45954 +a ||| purged ||| 0.111111 0.1875 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 9 45954 +a ||| pursue ||| 0.00429185 0.0037594 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 233 45954 +a ||| pursued as ||| 0.333333 0.0983607 2.17609e-05 1.79595e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| pursued to ||| 1 0.270828 2.17609e-05 2.54985e-05 2.718 ||| 0-1 ||| 1 45954 +a ||| pursued ||| 0.047619 0.0983607 0.000130565 0.0002124 2.718 ||| 0-0 ||| 126 45954 +a ||| pursuing ||| 0.00769231 0.05 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 130 45954 +a ||| push ||| 0.00485437 0.0708215 2.17609e-05 0.000295 2.718 ||| 0-0 ||| 206 45954 +a ||| pushed out in ||| 1 0.0437285 2.17609e-05 1.35694e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| pushed ||| 0.0100503 0.141791 4.35218e-05 0.0004484 2.718 ||| 0-0 ||| 199 45954 +a ||| pushes ||| 0.0625 0.129032 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 16 45954 +a ||| pushing it ||| 0.2 0.0014741 2.17609e-05 3.49304e-08 2.718 ||| 0-1 ||| 5 45954 +a ||| put down ||| 0.111111 0.0516169 2.17609e-05 1.18302e-06 2.718 ||| 0-1 ||| 9 45954 +a ||| put off by ||| 0.333333 0.0269646 2.17609e-05 9.37183e-09 2.718 ||| 0-2 ||| 3 45954 +a ||| put on ||| 0.037037 0.0963759 2.17609e-05 3.10438e-05 2.718 ||| 0-1 ||| 27 45954 +a ||| put out ||| 0.333333 0.0840356 2.17609e-05 4.97437e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| put them at the ||| 1 0.185652 2.17609e-05 3.20637e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| put them at ||| 0.5 0.185652 2.17609e-05 6.035e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| put to ||| 0.0294118 0.270828 2.17609e-05 0.000395374 2.718 ||| 0-1 ||| 34 45954 +a ||| put ||| 0.00914634 0.0564103 0.000130565 0.0009086 2.718 ||| 0-0 ||| 656 45954 +a ||| puts a floor under ||| 1 0.0560876 2.17609e-05 8.86635e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| puts in ||| 0.333333 0.0437285 2.17609e-05 2.29341e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| puts it ||| 0.105263 0.125828 4.35218e-05 5.96966e-06 2.718 ||| 0-0 ||| 19 45954 +a ||| puts ||| 0.0352941 0.125828 6.52827e-05 0.0002242 2.718 ||| 0-0 ||| 85 45954 +a ||| putting a floor under ||| 0.333333 0.133574 2.17609e-05 2.25426e-13 2.718 ||| 0-0 ||| 3 45954 +a ||| putting a floor ||| 0.333333 0.133574 2.17609e-05 4.56698e-10 2.718 ||| 0-0 ||| 3 45954 +a ||| putting a ||| 0.0666667 0.133574 2.17609e-05 1.75653e-05 2.718 ||| 0-0 ||| 15 45954 +a ||| putting ||| 0.0252525 0.133574 0.000108804 0.0004366 2.718 ||| 0-0 ||| 198 45954 +a ||| qualify for ||| 0.047619 0.0587253 2.17609e-05 6.15139e-07 2.718 ||| 0-1 ||| 21 45954 +a ||| question to ||| 0.2 0.270828 2.17609e-05 7.65281e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| questions of ||| 0.05 0.0164489 2.17609e-05 1.82056e-06 2.718 ||| 0-1 ||| 20 45954 +a ||| quickly dubbed ||| 0.25 0.0731707 2.17609e-05 2.98776e-09 2.718 ||| 0-1 ||| 4 45954 +a ||| quite ||| 0.00803213 0.0111111 4.35218e-05 4.72e-05 2.718 ||| 0-0 ||| 249 45954 +a ||| rage seem able to melt the shackles ||| 1 0.270828 2.17609e-05 1.00553e-24 2.718 ||| 0-3 ||| 1 45954 +a ||| rage seem able to melt the ||| 1 0.270828 2.17609e-05 1.54697e-19 2.718 ||| 0-3 ||| 1 45954 +a ||| rage seem able to melt ||| 1 0.270828 2.17609e-05 2.91168e-18 2.718 ||| 0-3 ||| 1 45954 +a ||| rage seem able to ||| 1 0.270828 2.17609e-05 4.47951e-13 2.718 ||| 0-3 ||| 1 45954 +a ||| railed against ||| 0.333333 0.0413907 2.17609e-05 1.1505e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| raises ||| 0.00704225 0.0070423 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 142 45954 +a ||| rallies during the ||| 1 0.0034443 2.17609e-05 2.44502e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| rallies during ||| 1 0.0034443 2.17609e-05 4.602e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| rallying ||| 0.0555556 0.153846 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 18 45954 +a ||| ran out ||| 0.1 0.0840356 2.17609e-05 3.47576e-07 2.718 ||| 0-1 ||| 10 45954 +a ||| range of ||| 0.00657895 0.0164489 2.17609e-05 3.50307e-06 2.718 ||| 0-1 ||| 152 45954 +a ||| rapid increase in ||| 0.142857 0.0437285 2.17609e-05 3.71301e-10 2.718 ||| 0-2 ||| 7 45954 +a ||| rate of ||| 0.0110497 0.0164489 4.35218e-05 6.72356e-06 2.718 ||| 0-1 ||| 181 45954 +a ||| rather pay to ||| 1 0.270828 2.17609e-05 2.75431e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| rather than ||| 0.000682594 0.010385 2.17609e-05 4.63046e-07 2.718 ||| 0-1 ||| 1465 45954 +a ||| rather to ||| 0.2 0.270828 2.17609e-05 0.000121175 2.718 ||| 0-1 ||| 5 45954 +a ||| ratio to ||| 1 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-1 ||| 1 45954 +a ||| rationale behind ||| 0.0909091 0.0688836 2.17609e-05 4.4486e-09 2.718 ||| 0-1 ||| 11 45954 +a ||| ratios ||| 0.0120482 0.0287356 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 83 45954 +a ||| re-condemned by ||| 0.333333 1 2.17609e-05 7.99273e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| re-condemned ||| 0.333333 1 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 3 45954 +a ||| re-emerging to trouble us ||| 0.166667 0.270828 2.17609e-05 8.68169e-14 2.718 ||| 0-1 ||| 6 45954 +a ||| re-emerging to trouble ||| 0.166667 0.270828 2.17609e-05 1.51911e-10 2.718 ||| 0-1 ||| 6 45954 +a ||| re-emerging to ||| 0.166667 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| reach out to ||| 0.133333 0.270828 8.70436e-05 2.63951e-07 2.718 ||| 0-2 ||| 30 45954 +a ||| reach out ||| 0.0357143 0.213333 2.17609e-05 6.69953e-06 2.718 ||| 0-0 ||| 28 45954 +a ||| reach ||| 0.0143266 0.213333 0.000108804 0.0015104 2.718 ||| 0-0 ||| 349 45954 +a ||| reached a point where it had to ||| 1 0.270828 2.17609e-05 6.79275e-18 2.718 ||| 0-6 ||| 1 45954 +a ||| reached between ||| 0.5 0.219758 2.17609e-05 4.17629e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| reached by ||| 0.166667 0.219758 2.17609e-05 8.71208e-06 2.718 ||| 0-0 ||| 6 45954 +a ||| reached out ||| 0.166667 0.219758 2.17609e-05 5.70507e-06 2.718 ||| 0-0 ||| 6 45954 +a ||| reached to ||| 0.333333 0.270828 2.17609e-05 3.61365e-05 2.718 ||| 0-1 ||| 3 45954 +a ||| reached ||| 0.024024 0.219758 0.000174087 0.0012862 2.718 ||| 0-0 ||| 333 45954 +a ||| reaching down to ||| 0.5 0.270828 2.17609e-05 2.48708e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| reaching ||| 0.0236686 0.201492 8.70436e-05 0.0006372 2.718 ||| 0-0 ||| 169 45954 +a ||| readily to ||| 0.25 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-1 ||| 4 45954 +a ||| ready to ||| 0.00492611 0.270828 2.17609e-05 1.70208e-05 2.718 ||| 0-1 ||| 203 45954 +a ||| real administrative ||| 1 0.0079365 2.17609e-05 3.60136e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| real fast ||| 0.166667 0.0234899 2.17609e-05 2.52095e-08 2.718 ||| 0-1 ||| 6 45954 +a ||| real progress toward ||| 0.166667 0.0996678 2.17609e-05 2.73559e-11 2.718 ||| 0-2 ||| 6 45954 +a ||| reassure major ||| 1 0.385714 2.17609e-05 8.07014e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| reassure ||| 0.0555556 0.385714 4.35218e-05 0.0003186 2.718 ||| 0-0 ||| 36 45954 +a ||| recalled to ||| 1 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| received ||| 0.00675676 0.0092593 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 296 45954 +a ||| recently to ||| 0.142857 0.270828 2.17609e-05 7.86557e-05 2.718 ||| 0-1 ||| 7 45954 +a ||| record before ||| 0.5 0.0031932 2.17609e-05 1.19581e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| reduced to being ||| 1 0.270828 2.17609e-05 3.52129e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| reduced to ||| 0.037037 0.270828 4.35218e-05 2.33709e-05 2.718 ||| 0-1 ||| 54 45954 +a ||| reform-minded ||| 0.0625 0.117647 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 16 45954 +a ||| refuse to hold ||| 0.333333 0.270828 2.17609e-05 3.56479e-09 2.718 ||| 0-1 ||| 3 45954 +a ||| refuse to ||| 0.0138889 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 72 45954 +a ||| refused to ||| 0.00793651 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-1 ||| 126 45954 +a ||| refusing to ||| 0.0238095 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 42 45954 +a ||| regard ||| 0.00502513 0.013986 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 199 45954 +a ||| regarding ||| 0.0106952 0.164609 4.35218e-05 0.000472 2.718 ||| 0-0 ||| 187 45954 +a ||| regardless of ||| 0.00487805 0.0164489 2.17609e-05 2.80418e-07 2.718 ||| 0-1 ||| 205 45954 +a ||| regime saw annual inflation soar to over ||| 0.5 0.270828 2.17609e-05 8.42384e-26 2.718 ||| 0-5 ||| 2 45954 +a ||| regime saw annual inflation soar to ||| 0.5 0.270828 2.17609e-05 1.21224e-22 2.718 ||| 0-5 ||| 2 45954 +a ||| regionally ||| 0.0555556 0.205882 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 18 45954 +a ||| regulator failed to ||| 0.111111 0.270828 2.17609e-05 3.86798e-10 2.718 ||| 0-2 ||| 9 45954 +a ||| rein to ||| 0.25 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| reintroduce ||| 0.166667 0.214286 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 6 45954 +a ||| rejected on the ||| 1 0.0963759 2.17609e-05 2.66265e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| rejected on ||| 1 0.0963759 2.17609e-05 5.01162e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| rejoin ||| 0.0769231 0.333333 2.17609e-05 0.000118 2.718 ||| 0-0 ||| 13 45954 +a ||| related to ||| 0.0181818 0.270828 4.35218e-05 1.48932e-05 2.718 ||| 0-1 ||| 110 45954 +a ||| relation to ||| 0.0322581 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 31 45954 +a ||| relations to ||| 0.2 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-1 ||| 5 45954 +a ||| relationship with the Saudis usually determined his ||| 1 0.0330797 2.17609e-05 8.27676e-25 2.718 ||| 0-1 ||| 1 45954 +a ||| relationship with the Saudis usually determined ||| 1 0.0330797 2.17609e-05 8.27594e-22 2.718 ||| 0-1 ||| 1 45954 +a ||| relationship with the Saudis usually ||| 1 0.0330797 2.17609e-05 1.27518e-17 2.718 ||| 0-1 ||| 1 45954 +a ||| relationship with the Saudis ||| 1 0.0330797 2.17609e-05 1.51088e-13 2.718 ||| 0-1 ||| 1 45954 +a ||| relationship with the ||| 0.111111 0.0330797 2.17609e-05 1.16222e-08 2.718 ||| 0-1 ||| 9 45954 +a ||| relationship with ||| 0.0212766 0.0330797 2.17609e-05 2.18751e-07 2.718 ||| 0-1 ||| 47 45954 +a ||| relative to ||| 0.004 0.270828 2.17609e-05 3.18813e-05 2.718 ||| 0-1 ||| 250 45954 +a ||| release ||| 0.016129 0.0406504 4.35218e-05 5.9e-05 2.718 ||| 0-0 ||| 124 45954 +a ||| released ||| 0.0137931 0.109453 4.35218e-05 0.0002596 2.718 ||| 0-0 ||| 145 45954 +a ||| releasing ||| 0.04 0.1875 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 25 45954 +a ||| relegated to ||| 0.0909091 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 11 45954 +a ||| reliable guide ||| 0.333333 0.108527 2.17609e-05 4.2952e-09 2.718 ||| 0-1 ||| 3 45954 +a ||| reliance on ||| 0.0104167 0.0963759 2.17609e-05 1.67054e-07 2.718 ||| 0-1 ||| 96 45954 +a ||| relied upon to keep ||| 0.2 0.270828 2.17609e-05 5.29866e-13 2.718 ||| 0-2 ||| 5 45954 +a ||| relied upon to ||| 0.111111 0.270828 2.17609e-05 2.26632e-09 2.718 ||| 0-2 ||| 9 45954 +a ||| relief to ||| 0.2 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| relinquish ||| 0.111111 0.318182 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 9 45954 +a ||| rely on ||| 0.00518135 0.0963759 2.17609e-05 1.50092e-06 2.718 ||| 0-1 ||| 193 45954 +a ||| remain troubled ||| 1 0.0392157 2.17609e-05 2.3449e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| remained in ||| 0.0526316 0.0437285 2.17609e-05 5.86706e-06 2.718 ||| 0-1 ||| 19 45954 +a ||| remarkable cast of ||| 0.25 0.0164489 2.17609e-05 3.27808e-11 2.718 ||| 0-2 ||| 4 45954 +a ||| remedy to ||| 0.2 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 5 45954 +a ||| remind ||| 0.03125 0.222222 2.17609e-05 0.0001888 2.718 ||| 0-0 ||| 32 45954 +a ||| reminded ||| 0.0731707 0.252874 6.52827e-05 0.0002596 2.718 ||| 0-0 ||| 41 45954 +a ||| reminding ||| 0.25 0.269231 4.35218e-05 8.26e-05 2.718 ||| 0-0 ||| 8 45954 +a ||| reminds ||| 0.037037 0.2 2.17609e-05 0.0001416 2.718 ||| 0-0 ||| 27 45954 +a ||| replace ||| 0.008 0.189076 2.17609e-05 0.000531 2.718 ||| 0-0 ||| 125 45954 +a ||| replaced by ||| 0.03125 0.172414 4.35218e-05 3.19709e-06 2.718 ||| 0-0 ||| 64 45954 +a ||| replaced ||| 0.0357143 0.172414 0.000130565 0.000472 2.718 ||| 0-0 ||| 168 45954 +a ||| replied to ||| 0.333333 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| represent ||| 0.00492611 0.0085106 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 203 45954 +a ||| require us to ||| 0.25 0.270828 2.17609e-05 2.67316e-08 2.718 ||| 0-2 ||| 4 45954 +a ||| required ||| 0.0039604 0.0092251 4.35218e-05 5.9e-05 2.718 ||| 0-0 ||| 505 45954 +a ||| rescued ||| 0.0384615 0.176471 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 26 45954 +a ||| rescuing ||| 0.030303 0.160714 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 33 45954 +a ||| resemble the earlier ||| 1 0.307692 2.17609e-05 2.60552e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| resemble the ||| 0.2 0.307692 2.17609e-05 1.25386e-05 2.718 ||| 0-0 ||| 5 45954 +a ||| resemble ||| 0.037037 0.307692 2.17609e-05 0.000236 2.718 ||| 0-0 ||| 27 45954 +a ||| resembled ||| 0.25 0.166667 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 4 45954 +a ||| resembles ||| 0.0666667 0.305085 6.52827e-05 0.0004248 2.718 ||| 0-0 ||| 45 45954 +a ||| resembling ||| 0.0952381 0.375 4.35218e-05 0.0001062 2.718 ||| 0-0 ||| 21 45954 +a ||| resist ||| 0.0162602 0.25 4.35218e-05 0.0007198 2.718 ||| 0-0 ||| 123 45954 +a ||| resistance to ||| 0.0178571 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 56 45954 +a ||| resisted , ||| 0.333333 0.217054 4.35218e-05 6.7491e-05 2.718 ||| 0-0 ||| 6 45954 +a ||| resisted ||| 0.0416667 0.217054 4.35218e-05 0.0003304 2.718 ||| 0-0 ||| 48 45954 +a ||| resorting to ||| 0.047619 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 21 45954 +a ||| resource ||| 0.00480769 0.0114286 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 208 45954 +a ||| respects at ||| 1 0.185652 2.17609e-05 4.984e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| respond to ||| 0.00877193 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-1 ||| 114 45954 +a ||| response to an explicit ||| 0.125 0.270828 2.17609e-05 2.8692e-12 2.718 ||| 0-1 ||| 8 45954 +a ||| response to an ||| 0.0909091 0.270828 2.17609e-05 1.10354e-07 2.718 ||| 0-1 ||| 11 45954 +a ||| response to ||| 0.00909091 0.270828 4.35218e-05 3.18813e-05 2.718 ||| 0-1 ||| 220 45954 +a ||| responsibility for bearing and ||| 1 0.0587253 2.17609e-05 3.68809e-13 2.718 ||| 0-1 ||| 1 45954 +a ||| responsibility for bearing ||| 1 0.0587253 2.17609e-05 4.39209e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| responsibility for ||| 0.00840336 0.0587253 4.35218e-05 1.68927e-06 2.718 ||| 0-1 ||| 238 45954 +a ||| restore itself to ||| 1 0.270828 2.17609e-05 1.07365e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| result from ||| 0.0185185 0.0408799 2.17609e-05 3.40838e-06 2.718 ||| 0-1 ||| 54 45954 +a ||| result in a ||| 0.037037 0.0437285 2.17609e-05 6.56624e-07 2.718 ||| 0-1 ||| 27 45954 +a ||| result in ||| 0.026087 0.0437285 6.52827e-05 1.63209e-05 2.718 ||| 0-1 ||| 115 45954 +a ||| result of a ||| 0.0222222 0.0164489 2.17609e-05 3.60669e-07 2.718 ||| 0-1 ||| 45 45954 +a ||| result of government-induced ||| 1 0.0164489 2.17609e-05 5.82708e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| result of ||| 0.00793651 0.0164489 4.35218e-05 8.96474e-06 2.718 ||| 0-1 ||| 252 45954 +a ||| result should be something closer to widespread ||| 1 0.270828 2.17609e-05 6.10565e-21 2.718 ||| 0-5 ||| 1 45954 +a ||| result should be something closer to ||| 1 0.270828 2.17609e-05 6.26863e-17 2.718 ||| 0-5 ||| 1 45954 +a ||| resulted in some ||| 1 0.0437285 2.17609e-05 2.00313e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| resulted in ||| 0.010101 0.0437285 2.17609e-05 2.80394e-06 2.718 ||| 0-1 ||| 99 45954 +a ||| results in ||| 0.04 0.0437285 2.17609e-05 4.59076e-06 2.718 ||| 0-1 ||| 25 45954 +a ||| retired ||| 0.0263158 0.0652174 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 38 45954 +a ||| retreat to ||| 0.142857 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| return to ||| 0.0207715 0.270828 0.000152326 7.01453e-05 2.718 ||| 0-1 ||| 337 45954 +a ||| returned home to ||| 0.25 0.270828 2.17609e-05 4.8088e-09 2.718 ||| 0-2 ||| 4 45954 +a ||| returned to ||| 0.0147059 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-1 ||| 68 45954 +a ||| returned ||| 0.00613497 0.102439 2.17609e-05 0.0002478 2.718 ||| 0-0 ||| 163 45954 +a ||| revere ||| 0.333333 0.25 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 3 45954 +a ||| reversing ||| 0.0185185 0.118421 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 54 45954 +a ||| revising ||| 0.0333333 0.0322581 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 30 45954 +a ||| reward ||| 0.0136986 0.0357143 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 73 45954 +a ||| riding ||| 0.0555556 0.0882353 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 18 45954 +a ||| rise to movement toward ||| 1 0.0996678 2.17609e-05 8.87456e-13 2.718 ||| 0-3 ||| 1 45954 +a ||| rise to ||| 0.0254777 0.270828 8.70436e-05 0.000102027 2.718 ||| 0-1 ||| 157 45954 +a ||| rising to ||| 0.0714286 0.270828 2.17609e-05 3.18813e-05 2.718 ||| 0-1 ||| 14 45954 +a ||| rising ||| 0.0011534 0.0094017 2.17609e-05 0.0001298 2.718 ||| 0-0 ||| 867 45954 +a ||| risk ||| 0.000443262 0.0023502 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 2256 45954 +a ||| road to ||| 0.0175439 0.270828 2.17609e-05 4.67745e-05 2.718 ||| 0-1 ||| 57 45954 +a ||| role in supporting ||| 1 0.135743 2.17609e-05 7.31942e-09 2.718 ||| 0-1 0-2 ||| 1 45954 +a ||| role of ||| 0.00534759 0.0164489 2.17609e-05 5.32362e-06 2.718 ||| 0-1 ||| 187 45954 +a ||| rose through ||| 0.25 0.257419 2.17609e-05 2.96065e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| roughly matched ||| 0.2 0.0526316 2.17609e-05 3.44796e-09 2.718 ||| 0-1 ||| 5 45954 +a ||| roughly on a par ||| 0.25 0.0963759 2.17609e-05 3.27308e-12 2.718 ||| 0-1 ||| 4 45954 +a ||| roughly on a ||| 0.25 0.0963759 2.17609e-05 1.0071e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| roughly on ||| 0.142857 0.0963759 2.17609e-05 2.50324e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| roughly to ||| 1 0.270828 2.17609e-05 3.18813e-05 2.718 ||| 0-1 ||| 1 45954 +a ||| round up ||| 0.25 0.0268991 2.17609e-05 1.07559e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| ruined ||| 0.0344828 0.148148 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 29 45954 +a ||| rule of law that protects ||| 0.5 0.291667 2.17609e-05 1.40293e-15 2.718 ||| 0-4 ||| 2 45954 +a ||| rule out ||| 0.0416667 0.0840356 2.17609e-05 1.01637e-06 2.718 ||| 0-1 ||| 24 45954 +a ||| run in ||| 0.142857 0.0437285 2.17609e-05 1.65762e-05 2.718 ||| 0-1 ||| 7 45954 +a ||| run into ||| 0.05 0.176821 2.17609e-05 4.7268e-06 2.718 ||| 0-1 ||| 20 45954 +a ||| run out ||| 0.0357143 0.0840356 2.17609e-05 1.73829e-06 2.718 ||| 0-1 ||| 28 45954 +a ||| run up against ||| 0.5 0.0413907 2.17609e-05 2.33377e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| run up to ||| 0.25 0.270828 4.35218e-05 4.3158e-07 2.718 ||| 0-2 ||| 8 45954 +a ||| running at ||| 0.222222 0.185652 4.35218e-05 6.64023e-06 2.718 ||| 0-1 ||| 9 45954 +a ||| running into ||| 0.333333 0.176821 2.17609e-05 2.90932e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| running it into ||| 0.5 0.176821 2.17609e-05 7.7465e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| running mate hit ||| 0.25 0.134615 2.17609e-05 1.11589e-12 2.718 ||| 0-2 ||| 4 45954 +a ||| running on ||| 0.4 0.0963759 4.35218e-05 6.67702e-06 2.718 ||| 0-1 ||| 5 45954 +a ||| running up against ||| 1 0.0413907 2.17609e-05 1.43642e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| running ||| 0.00518135 0.0241692 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 193 45954 +a ||| sacked ||| 0.0285714 0.179487 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 35 45954 +a ||| saddling ||| 0.2 0.375 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 5 45954 +a ||| said to ||| 0.0135135 0.270828 2.17609e-05 8.71661e-05 2.718 ||| 0-1 ||| 74 45954 +a ||| saved ||| 0.0104167 0.126667 2.17609e-05 0.0002242 2.718 ||| 0-0 ||| 96 45954 +a ||| saw annual inflation soar to over ||| 0.5 0.270828 2.17609e-05 1.17981e-21 2.718 ||| 0-4 ||| 2 45954 +a ||| saw annual inflation soar to ||| 0.5 0.270828 2.17609e-05 1.69781e-18 2.718 ||| 0-4 ||| 2 45954 +a ||| saw ||| 0.00398406 0.0439883 2.17609e-05 0.000177 2.718 ||| 0-0 ||| 251 45954 +a ||| say in the ||| 0.166667 0.0437285 2.17609e-05 8.40002e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| say in ||| 0.0526316 0.0437285 4.35218e-05 1.58104e-05 2.718 ||| 0-1 ||| 38 45954 +a ||| scale in ||| 0.142857 0.0437285 2.17609e-05 3.31446e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| scheduled to ||| 0.230769 0.270828 6.52827e-05 1.27656e-05 2.718 ||| 0-1 ||| 13 45954 +a ||| scope of ||| 0.0188679 0.0164489 2.17609e-05 1.12167e-06 2.718 ||| 0-1 ||| 53 45954 +a ||| sea at ||| 0.5 0.185652 2.17609e-05 3.32267e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| seat at ||| 0.125 0.185652 2.17609e-05 1.65878e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| seat nearby ||| 1 0.0526316 2.17609e-05 1.53164e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| seat when it comes to ||| 0.5 0.270828 2.17609e-05 6.9472e-14 2.718 ||| 0-4 ||| 2 45954 +a ||| second , there is the way ||| 1 0.0005373 2.17609e-05 6.85371e-15 2.718 ||| 0-0 ||| 1 45954 +a ||| second , there is the ||| 0.5 0.0005373 2.17609e-05 4.50991e-12 2.718 ||| 0-0 ||| 2 45954 +a ||| second , there is ||| 0.166667 0.0005373 2.17609e-05 8.48851e-11 2.718 ||| 0-0 ||| 6 45954 +a ||| second , there ||| 0.166667 0.0005373 2.17609e-05 5.15005e-09 2.718 ||| 0-0 ||| 6 45954 +a ||| second , ||| 0.00224719 0.0005373 2.17609e-05 2.41039e-06 2.718 ||| 0-0 ||| 445 45954 +a ||| second ||| 0.000698812 0.0005373 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1431 45954 +a ||| security system in 19 ||| 1 0.0437285 2.17609e-05 3.68225e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| security system in ||| 1 0.0437285 2.17609e-05 5.66499e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| security ||| 0.000286041 0.0005074 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 3496 45954 +a ||| seeing their ||| 0.0625 0.0520231 2.17609e-05 1.90353e-07 2.718 ||| 0-0 ||| 16 45954 +a ||| seeing ||| 0.00680272 0.0520231 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 147 45954 +a ||| seek to opt ||| 0.5 0.270828 2.17609e-05 1.60251e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| seek to ||| 0.0191083 0.270828 6.52827e-05 6.16349e-05 2.718 ||| 0-1 ||| 157 45954 +a ||| seem able to melt the shackles of ||| 1 0.270828 2.17609e-05 2.08965e-21 2.718 ||| 0-2 ||| 1 45954 +a ||| seem able to melt the shackles ||| 1 0.270828 2.17609e-05 7.73483e-20 2.718 ||| 0-2 ||| 1 45954 +a ||| seem able to melt the ||| 1 0.270828 2.17609e-05 1.18997e-14 2.718 ||| 0-2 ||| 1 45954 +a ||| seem able to melt ||| 1 0.270828 2.17609e-05 2.23976e-13 2.718 ||| 0-2 ||| 1 45954 +a ||| seem able to ||| 0.5 0.270828 2.17609e-05 3.44578e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| seem destined to ||| 1 0.270828 2.17609e-05 1.07784e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| seem to ||| 0.00297619 0.270828 2.17609e-05 8.29109e-05 2.718 ||| 0-1 ||| 336 45954 +a ||| seems , are allowed a seat at ||| 0.333333 0.185652 2.17609e-05 3.40592e-18 2.718 ||| 0-6 ||| 3 45954 +a ||| seems in ||| 0.166667 0.0437285 2.17609e-05 8.16047e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| seems poised to do ||| 0.5 0.270828 2.17609e-05 6.0813e-12 2.718 ||| 0-2 ||| 2 45954 +a ||| seems poised to ||| 0.25 0.270828 2.17609e-05 2.65269e-09 2.718 ||| 0-2 ||| 4 45954 +a ||| seen as ||| 0.0045045 0.0289876 2.17609e-05 3.38186e-06 2.718 ||| 0-1 ||| 222 45954 +a ||| seen to ||| 0.047619 0.270828 2.17609e-05 0.000119047 2.718 ||| 0-1 ||| 21 45954 +a ||| selected ||| 0.03125 0.05 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 32 45954 +a ||| self ||| 0.0384615 0.0178571 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 26 45954 +a ||| self-adjusting , ||| 0.0666667 0.333333 2.17609e-05 4.82079e-06 2.718 ||| 0-0 ||| 15 45954 +a ||| self-adjusting ||| 0.0588235 0.333333 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 17 45954 +a ||| selling , on ||| 1 0.0963759 2.17609e-05 1.02373e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| sells ||| 0.0454545 0.0344828 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 22 45954 +a ||| send ||| 0.00649351 0.0120482 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 154 45954 +a ||| sending ||| 0.0119048 0.154546 2.17609e-05 0.0002006 2.718 ||| 0-0 ||| 84 45954 +a ||| senior to ||| 0.25 0.270828 2.17609e-05 2.76261e-05 2.718 ||| 0-1 ||| 4 45954 +a ||| sent him to ||| 0.333333 0.270828 2.17609e-05 1.32835e-08 2.718 ||| 0-2 ||| 3 45954 +a ||| sent on their ||| 1 0.0963759 2.17609e-05 2.69024e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| sent on ||| 0.5 0.0963759 2.17609e-05 1.50092e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| sent ||| 0.00684932 0.113861 2.17609e-05 0.0002714 2.718 ||| 0-0 ||| 146 45954 +a ||| sentenced to prison ||| 0.2 0.270828 2.17609e-05 8.29764e-11 2.718 ||| 0-1 ||| 5 45954 +a ||| sentenced to ||| 0.0285714 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 35 45954 +a ||| sentenced ||| 0.04 0.138461 4.35218e-05 0.0001062 2.718 ||| 0-0 ||| 50 45954 +a ||| serious threat to ||| 0.0588235 0.270828 2.17609e-05 5.7407e-09 2.718 ||| 0-2 ||| 17 45954 +a ||| serve ||| 0.0123457 0.100529 6.52827e-05 0.0004484 2.718 ||| 0-0 ||| 243 45954 +a ||| served by ||| 0.25 0.0587498 8.70436e-05 1.75222e-06 2.718 ||| 0-0 0-1 ||| 16 45954 +a ||| served in ||| 0.142857 0.0437285 2.17609e-05 4.3355e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| served ||| 0.0245902 0.090535 6.52827e-05 0.0002596 2.718 ||| 0-0 ||| 122 45954 +a ||| serves to ||| 0.125 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-1 ||| 8 45954 +a ||| serves ||| 0.0340909 0.116279 6.52827e-05 0.000177 2.718 ||| 0-0 ||| 88 45954 +a ||| serving as ||| 0.0416667 0.0289876 2.17609e-05 7.84793e-07 2.718 ||| 0-1 ||| 24 45954 +a ||| serving ||| 0.0114943 0.15 2.17609e-05 0.0002478 2.718 ||| 0-0 ||| 87 45954 +a ||| set aside for ||| 0.166667 0.0587253 2.17609e-05 2.20529e-09 2.718 ||| 0-2 ||| 6 45954 +a ||| set at ||| 0.0526316 0.185652 2.17609e-05 2.15795e-05 2.718 ||| 0-1 ||| 19 45954 +a ||| set in motion ||| 0.05 0.0437285 2.17609e-05 1.07758e-09 2.718 ||| 0-1 ||| 20 45954 +a ||| set in ||| 0.0425532 0.0437285 4.35218e-05 3.31563e-05 2.718 ||| 0-1 ||| 47 45954 +a ||| set out ||| 0.03125 0.0840356 2.17609e-05 3.477e-06 2.718 ||| 0-1 ||| 32 45954 +a ||| set to ||| 0.0416667 0.270828 6.52827e-05 0.000276359 2.718 ||| 0-1 ||| 72 45954 +a ||| sets in ||| 0.125 0.0437285 2.17609e-05 2.80394e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| sets ||| 0.016129 0.0347826 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 62 45954 +a ||| setting off ||| 0.1 0.0698758 2.17609e-05 1.31051e-07 2.718 ||| 0-1 ||| 10 45954 +a ||| settlement of ||| 0.142857 0.0164489 2.17609e-05 9.81462e-07 2.718 ||| 0-1 ||| 7 45954 +a ||| seven ||| 0.00434783 0.004878 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 230 45954 +a ||| share amounting to ||| 0.25 0.270828 2.17609e-05 6.91045e-10 2.718 ||| 0-2 ||| 4 45954 +a ||| shareholders to ||| 0.111111 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 9 45954 +a ||| sharp challenge to ||| 1 0.270828 2.17609e-05 2.62142e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| she comes across ||| 0.5 0.0490798 2.17609e-05 2.50083e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| she knows ||| 0.111111 0.0085227 2.17609e-05 2.7612e-09 2.718 ||| 0-0 ||| 9 45954 +a ||| she sacked ||| 0.2 0.179487 2.17609e-05 8.09976e-08 2.718 ||| 0-1 ||| 5 45954 +a ||| she wrote about ||| 0.5 0.0244529 2.17609e-05 5.44535e-11 2.718 ||| 0-2 ||| 2 45954 +a ||| she ||| 0.00684932 0.0085227 4.35218e-05 7.08e-05 2.718 ||| 0-0 ||| 292 45954 +a ||| shift , in ||| 0.5 0.0437285 2.17609e-05 1.40623e-06 2.718 ||| 0-2 ||| 2 45954 +a ||| shift to ||| 0.0172414 0.270828 2.17609e-05 5.73797e-05 2.718 ||| 0-1 ||| 58 45954 +a ||| shifted back to ||| 0.5 0.270828 2.17609e-05 1.47847e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| shooting ||| 0.016129 0.138889 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 62 45954 +a ||| shoots up in ||| 0.333333 0.0437285 2.17609e-05 7.97356e-10 2.718 ||| 0-2 ||| 3 45954 +a ||| short in ||| 0.2 0.0437285 2.17609e-05 1.58104e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| short of ||| 0.0485437 0.0164489 0.000108804 8.68432e-06 2.718 ||| 0-1 ||| 103 45954 +a ||| short ||| 0.00286123 0.0196759 4.35218e-05 0.0002006 2.718 ||| 0-0 ||| 699 45954 +a ||| shots fired at ||| 1 0.185652 2.17609e-05 6.47921e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| should be something closer to widespread hand-washing ||| 1 0.270828 2.17609e-05 9.54926e-23 2.718 ||| 0-4 ||| 1 45954 +a ||| should be something closer to widespread ||| 1 0.270828 2.17609e-05 1.46912e-17 2.718 ||| 0-4 ||| 1 45954 +a ||| should be something closer to ||| 1 0.270828 2.17609e-05 1.50833e-13 2.718 ||| 0-4 ||| 1 45954 +a ||| should have done more to stop ||| 1 0.270828 2.17609e-05 1.68271e-16 2.718 ||| 0-4 ||| 1 45954 +a ||| should have done more to ||| 1 0.270828 2.17609e-05 1.03615e-12 2.718 ||| 0-4 ||| 1 45954 +a ||| should reach out to ||| 0.25 0.270828 2.17609e-05 3.23973e-10 2.718 ||| 0-3 ||| 4 45954 +a ||| should ||| 0.000411692 0.0004905 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 4858 45954 +a ||| side by side ||| 0.0833333 0.0269646 2.17609e-05 6.0222e-10 2.718 ||| 0-1 ||| 12 45954 +a ||| side by ||| 0.0833333 0.0269646 2.17609e-05 2.01614e-06 2.718 ||| 0-1 ||| 12 45954 +a ||| sign on the bottom line ||| 0.5 0.0963759 2.17609e-05 7.22203e-15 2.718 ||| 0-1 ||| 2 45954 +a ||| sign on the bottom ||| 0.5 0.0963759 2.17609e-05 1.56626e-11 2.718 ||| 0-1 ||| 2 45954 +a ||| sign on the ||| 0.25 0.0963759 2.17609e-05 1.41872e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| sign on ||| 0.142857 0.0963759 2.17609e-05 2.67029e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| silicon-based computer chips ||| 0.5 0.25 2.17609e-05 1.9942e-15 2.718 ||| 0-0 ||| 2 45954 +a ||| silicon-based computer ||| 0.5 0.25 2.17609e-05 1.534e-10 2.718 ||| 0-0 ||| 2 45954 +a ||| silicon-based ||| 0.5 0.25 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| similarly failed to ||| 0.0666667 0.270828 2.17609e-05 2.32079e-09 2.718 ||| 0-2 ||| 15 45954 +a ||| simply cannot afford to ||| 0.0434783 0.270828 2.17609e-05 5.91742e-13 2.718 ||| 0-3 ||| 23 45954 +a ||| since 1881 ||| 0.333333 0.0114416 2.17609e-05 2.6845e-09 2.718 ||| 0-0 ||| 3 45954 +a ||| since then ||| 0.00775194 0.0114416 2.17609e-05 3.59393e-07 2.718 ||| 0-0 ||| 129 45954 +a ||| since ||| 0.00227359 0.0114416 0.000130565 0.000413 2.718 ||| 0-0 ||| 2639 45954 +a ||| single out ||| 0.166667 0.0840356 2.17609e-05 1.23011e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| sit down and ||| 0.333333 0.0516169 2.17609e-05 6.40659e-10 2.718 ||| 0-1 ||| 3 45954 +a ||| sit down ||| 0.142857 0.0516169 2.17609e-05 7.62953e-08 2.718 ||| 0-1 ||| 7 45954 +a ||| sit in judgment ||| 0.5 0.0437285 2.17609e-05 1.39193e-10 2.718 ||| 0-1 ||| 2 45954 +a ||| sit in ||| 0.1 0.0437285 2.17609e-05 3.0592e-06 2.718 ||| 0-1 ||| 10 45954 +a ||| sit on a hot ||| 1 0.0963759 2.17609e-05 2.6178e-12 2.718 ||| 0-1 ||| 1 45954 +a ||| sit on a ||| 0.5 0.0963759 2.17609e-05 8.05476e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| sit on ||| 0.0714286 0.0963759 2.17609e-05 2.00208e-06 2.718 ||| 0-1 ||| 14 45954 +a ||| size of ||| 0.00649351 0.0164489 2.17609e-05 3.08244e-06 2.718 ||| 0-1 ||| 154 45954 +a ||| slimmed down to ||| 1 0.270828 2.17609e-05 3.10885e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| slip through ||| 0.0769231 0.257419 2.17609e-05 1.18426e-07 2.718 ||| 0-1 ||| 13 45954 +a ||| slips back into ||| 0.333333 0.176821 2.17609e-05 1.01162e-10 2.718 ||| 0-2 ||| 3 45954 +a ||| slowdown in ||| 0.0294118 0.0437285 2.17609e-05 1.02104e-06 2.718 ||| 0-1 ||| 34 45954 +a ||| smiling faces of ||| 0.5 0.0811174 2.17609e-05 2.11772e-10 2.718 ||| 0-1 0-2 ||| 2 45954 +a ||| so as ||| 0.0263158 0.0289876 2.17609e-05 2.09542e-05 2.718 ||| 0-1 ||| 38 45954 +a ||| so at the ||| 1 0.185652 2.17609e-05 3.06012e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| so at ||| 0.25 0.185652 2.17609e-05 5.75972e-05 2.718 ||| 0-1 ||| 4 45954 +a ||| so far as to ||| 0.375 0.270828 6.52827e-05 4.13137e-09 2.718 ||| 0-3 ||| 8 45954 +a ||| so hard for people like me to ||| 0.333333 0.270828 2.17609e-05 1.44796e-19 2.718 ||| 0-6 ||| 3 45954 +a ||| so much as ||| 0.0833333 0.0289876 2.17609e-05 3.02096e-08 2.718 ||| 0-2 ||| 12 45954 +a ||| so often ||| 0.0277778 0.18338 2.17609e-05 1.39075e-05 2.718 ||| 0-1 ||| 36 45954 +a ||| so on ||| 0.0327869 0.0963759 4.35218e-05 5.79163e-05 2.718 ||| 0-1 ||| 61 45954 +a ||| so to ||| 0.222222 0.270828 4.35218e-05 0.000737623 2.718 ||| 0-1 ||| 9 45954 +a ||| so-called " near abroad " ||| 1 0.0537084 2.17609e-05 3.5155e-17 2.718 ||| 0-2 ||| 1 45954 +a ||| so-called " near abroad ||| 1 0.0537084 2.17609e-05 7.03931e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| so-called " near ||| 1 0.0537084 2.17609e-05 1.20536e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| soar to over ||| 0.5 0.270828 2.17609e-05 2.95694e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| soar to ||| 0.125 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| soaring ||| 0.0106383 0.0282486 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 94 45954 +a ||| social security system in 19 ||| 1 0.0437285 2.17609e-05 4.30455e-19 2.718 ||| 0-3 ||| 1 45954 +a ||| social security system in ||| 1 0.0437285 2.17609e-05 6.62238e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| soldiers to ||| 0.0909091 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 11 45954 +a ||| some of it ||| 0.0588235 0.0164489 2.17609e-05 4.10315e-07 2.718 ||| 0-1 ||| 17 45954 +a ||| some of ||| 0.00115473 0.0164489 2.17609e-05 1.541e-05 2.718 ||| 0-1 ||| 866 45954 +a ||| some ||| 0.00129223 0.003154 0.000152326 0.0001888 2.718 ||| 0-0 ||| 5417 45954 +a ||| something closer to widespread hand-washing ||| 1 0.270828 2.17609e-05 7.54877e-18 2.718 ||| 0-2 ||| 1 45954 +a ||| something closer to widespread ||| 1 0.270828 2.17609e-05 1.16135e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| something closer to ||| 1 0.270828 2.17609e-05 1.19235e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| soon as possible in order to make ||| 0.5 0.270828 2.17609e-05 2.43984e-18 2.718 ||| 0-5 ||| 2 45954 +a ||| soon as possible in order to ||| 0.333333 0.270828 2.17609e-05 1.85074e-15 2.718 ||| 0-5 ||| 3 45954 +a ||| soon as we engage with ||| 0.25 0.0330797 2.17609e-05 2.48374e-15 2.718 ||| 0-4 ||| 4 45954 +a ||| sort out ||| 0.0769231 0.0840356 2.17609e-05 4.27881e-07 2.718 ||| 0-1 ||| 13 45954 +a ||| sought to ||| 0.011236 0.270828 4.35218e-05 4.46469e-05 2.718 ||| 0-1 ||| 178 45954 +a ||| sound like ||| 0.0625 0.0278224 2.17609e-05 1.03576e-07 2.718 ||| 0-1 ||| 16 45954 +a ||| source of ||| 0.00819672 0.0164489 4.35218e-05 2.24119e-06 2.718 ||| 0-1 ||| 244 45954 +a ||| south in ||| 1 0.0437285 2.17609e-05 7.65781e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| space for ||| 0.03125 0.0587253 2.17609e-05 6.15139e-07 2.718 ||| 0-1 ||| 32 45954 +a ||| spared ||| 0.0512821 0.195122 4.35218e-05 9.44e-05 2.718 ||| 0-0 ||| 39 45954 +a ||| speed of an interconnected world . ||| 1 0.0164489 2.17609e-05 7.62961e-20 2.718 ||| 0-1 ||| 1 45954 +a ||| speed of an interconnected world ||| 1 0.0164489 2.17609e-05 1.65937e-17 2.718 ||| 0-1 ||| 1 45954 +a ||| speed of an interconnected ||| 1 0.0164489 2.17609e-05 1.89274e-14 2.718 ||| 0-1 ||| 1 45954 +a ||| speed of an ||| 1 0.0164489 2.17609e-05 2.91191e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| speed of ||| 0.037037 0.0164489 2.17609e-05 8.41253e-07 2.718 ||| 0-1 ||| 27 45954 +a ||| spending on ||| 0.0140845 0.0963759 2.17609e-05 3.17145e-06 2.718 ||| 0-1 ||| 71 45954 +a ||| spent at home in ||| 1 0.0437285 2.17609e-05 3.70559e-12 2.718 ||| 0-3 ||| 1 45954 +a ||| spent on ||| 0.0192308 0.0963759 2.17609e-05 2.16913e-06 2.718 ||| 0-1 ||| 52 45954 +a ||| spot on ||| 0.166667 0.0963759 2.17609e-05 3.34108e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| spread it to ||| 0.5 0.270828 2.17609e-05 8.48887e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| squeezed back into ||| 1 0.176821 2.17609e-05 4.04648e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| stand firm in ||| 1 0.0437285 2.17609e-05 5.10495e-10 2.718 ||| 0-2 ||| 1 45954 +a ||| stand up to comparison with America ||| 0.5 0.270828 2.17609e-05 1.71178e-17 2.718 ||| 0-2 ||| 2 45954 +a ||| stand up to comparison with ||| 0.5 0.270828 2.17609e-05 1.44028e-14 2.718 ||| 0-2 ||| 2 45954 +a ||| stand up to comparison ||| 0.5 0.270828 2.17609e-05 3.79752e-12 2.718 ||| 0-2 ||| 2 45954 +a ||| stand up to ||| 0.0454545 0.270828 2.17609e-05 2.92117e-07 2.718 ||| 0-2 ||| 22 45954 +a ||| stand up ||| 0.0204082 0.0268991 2.17609e-05 3.64096e-07 2.718 ||| 0-1 ||| 49 45954 +a ||| standing " to ||| 0.333333 0.270828 2.17609e-05 2.22971e-07 2.718 ||| 0-2 ||| 3 45954 +a ||| standing on the ||| 0.5 0.0963759 2.17609e-05 1.86249e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| standing on ||| 0.5 0.0963759 2.17609e-05 3.50556e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| standing ||| 0.00568182 0.0088106 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 176 45954 +a ||| stands at ||| 0.0357143 0.185652 2.17609e-05 3.98465e-06 2.718 ||| 0-1 ||| 28 45954 +a ||| stands for ||| 0.037037 0.0587253 2.17609e-05 3.68847e-06 2.718 ||| 0-1 ||| 27 45954 +a ||| stands to suffer ||| 0.2 0.270828 2.17609e-05 3.31183e-09 2.718 ||| 0-1 ||| 5 45954 +a ||| stands to ||| 0.0909091 0.270828 2.17609e-05 5.10297e-05 2.718 ||| 0-1 ||| 11 45954 +a ||| start ||| 0.00158983 0.110406 2.17609e-05 0.0010266 2.718 ||| 0-0 ||| 629 45954 +a ||| started showing ||| 0.25 0.136465 2.17609e-05 8.88233e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| started ||| 0.00288184 0.136465 2.17609e-05 0.0007198 2.718 ||| 0-0 ||| 347 45954 +a ||| starting blocks ||| 0.166667 0.0877863 2.17609e-05 7.0564e-09 2.718 ||| 0-0 ||| 6 45954 +a ||| starting to take ||| 0.25 0.270828 2.17609e-05 1.31537e-08 2.718 ||| 0-1 ||| 4 45954 +a ||| starting to ||| 0.0196078 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-1 ||| 51 45954 +a ||| starting ||| 0.00769231 0.0877863 4.35218e-05 0.0002714 2.718 ||| 0-0 ||| 260 45954 +a ||| starts to ||| 0.0333333 0.21875 2.17609e-05 2.72548e-05 2.718 ||| 0-0 ||| 30 45954 +a ||| starts ||| 0.0222222 0.21875 4.35218e-05 0.0003304 2.718 ||| 0-0 ||| 90 45954 +a ||| state of ||| 0.00507614 0.0164489 2.17609e-05 7.56481e-06 2.718 ||| 0-1 ||| 197 45954 +a ||| statist ||| 0.0526316 0.0526316 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 19 45954 +a ||| steam headlong ||| 0.333333 0.160714 2.17609e-05 1.3806e-09 2.718 ||| 0-0 ||| 3 45954 +a ||| steam ||| 0.0285714 0.160714 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 35 45954 +a ||| stems from ||| 0.0227273 0.0408799 2.17609e-05 5.33071e-08 2.718 ||| 0-1 ||| 44 45954 +a ||| stepped on to ||| 0.166667 0.0963759 2.17609e-05 8.26819e-08 2.718 ||| 0-1 ||| 6 45954 +a ||| stepped on ||| 0.111111 0.0963759 2.17609e-05 1.00232e-06 2.718 ||| 0-1 ||| 9 45954 +a ||| still faces ||| 0.142857 0.145786 2.17609e-05 5.59075e-07 2.718 ||| 0-1 ||| 7 45954 +a ||| still needs ||| 0.0909091 0.0028674 2.17609e-05 3.49422e-08 2.718 ||| 0-1 ||| 11 45954 +a ||| stock and ||| 0.0666667 0.0003921 2.17609e-05 8.2751e-08 2.718 ||| 0-1 ||| 15 45954 +a ||| stop ||| 0.00163666 0.0119454 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 611 45954 +a ||| story for ||| 0.5 0.0587253 2.17609e-05 4.45503e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| story of ||| 0.015873 0.0164489 2.17609e-05 4.06174e-06 2.718 ||| 0-1 ||| 63 45954 +a ||| strained by ||| 0.125 0.0269646 2.17609e-05 8.77461e-08 2.718 ||| 0-1 ||| 8 45954 +a ||| strengthened ||| 0.00518135 0.0656566 2.17609e-05 0.0001534 2.718 ||| 0-0 ||| 193 45954 +a ||| strive to ||| 0.0714286 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 14 45954 +a ||| struck between ||| 0.25 0.105691 2.17609e-05 4.9809e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| struck ||| 0.0412371 0.105691 8.70436e-05 0.0001534 2.718 ||| 0-0 ||| 97 45954 +a ||| studied at ||| 1 0.185652 2.17609e-05 6.64534e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| subject to ||| 0.0223881 0.270828 6.52827e-05 1.91157e-05 2.718 ||| 0-1 ||| 134 45954 +a ||| subjected to ||| 0.0454545 0.270828 4.35218e-05 6.3828e-06 2.718 ||| 0-1 ||| 44 45954 +a ||| submit to ||| 0.1 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 10 45954 +a ||| subservient to ||| 0.142857 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 7 45954 +a ||| succeeds in ||| 0.111111 0.0437285 2.17609e-05 5.1052e-07 2.718 ||| 0-1 ||| 9 45954 +a ||| success story for ||| 0.5 0.0587253 2.17609e-05 4.04962e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| succession of ||| 0.0454545 0.0164489 2.17609e-05 1.40209e-07 2.718 ||| 0-1 ||| 22 45954 +a ||| such a sharp challenge to ||| 1 0.270828 2.17609e-05 2.2328e-13 2.718 ||| 0-4 ||| 1 45954 +a ||| such as ||| 0.000969932 0.0289876 4.35218e-05 1.96859e-05 2.718 ||| 0-1 ||| 2062 45954 +a ||| sucked out ||| 0.333333 0.0840356 2.17609e-05 1.07073e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| supply at ||| 0.25 0.185652 2.17609e-05 2.48945e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| support you ||| 1 0.0047578 2.17609e-05 2.11587e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| support ||| 0.00135593 0.0047578 8.70436e-05 0.0001298 2.718 ||| 0-0 ||| 2950 45954 +a ||| supporting ||| 0.0217391 0.227758 0.000108804 0.0007552 2.718 ||| 0-0 ||| 230 45954 +a ||| supportive ||| 0.030303 0.0416667 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 33 45954 +a ||| supports ||| 0.0143885 0.11811 4.35218e-05 0.000177 2.718 ||| 0-0 ||| 139 45954 +a ||| supposed to ||| 0.0105263 0.270828 2.17609e-05 4.67745e-05 2.718 ||| 0-1 ||| 95 45954 +a ||| supposedly ||| 0.003861 0.0098039 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 259 45954 +a ||| sure to follow ||| 0.2 0.270828 2.17609e-05 7.1815e-09 2.718 ||| 0-1 ||| 5 45954 +a ||| sure to ||| 0.0434783 0.270828 2.17609e-05 4.25193e-05 2.718 ||| 0-1 ||| 23 45954 +a ||| surely be welcomed by ||| 1 0.0269646 2.17609e-05 7.92207e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| surpass ||| 0.05 0.326531 2.17609e-05 0.0001888 2.718 ||| 0-0 ||| 20 45954 +a ||| surpassed ||| 0.0285714 0.3 2.17609e-05 0.000177 2.718 ||| 0-0 ||| 35 45954 +a ||| surpasses ||| 0.285714 0.375 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 7 45954 +a ||| surprised ||| 0.0638298 0.107143 6.52827e-05 0.0001416 2.718 ||| 0-0 ||| 47 45954 +a ||| surrounding the ||| 0.0212766 0.15625 2.17609e-05 1.56732e-05 2.718 ||| 0-0 ||| 47 45954 +a ||| surrounding ||| 0.0169492 0.15625 4.35218e-05 0.000295 2.718 ||| 0-0 ||| 118 45954 +a ||| survived at all ||| 0.25 0.185652 2.17609e-05 1.72194e-09 2.718 ||| 0-1 ||| 4 45954 +a ||| survived at ||| 0.166667 0.185652 2.17609e-05 6.64534e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| survived ||| 0.0131579 0.263566 2.17609e-05 0.0004012 2.718 ||| 0-0 ||| 76 45954 +a ||| sustained by ||| 0.0357143 0.0269646 2.17609e-05 7.01294e-07 2.718 ||| 0-1 ||| 28 45954 +a ||| swept away , ||| 0.333333 0.0508475 2.17609e-05 7.88632e-09 2.718 ||| 0-1 ||| 3 45954 +a ||| swept away by it ||| 0.5 0.0269646 2.17609e-05 1.2911e-11 2.718 ||| 0-2 ||| 2 45954 +a ||| swept away by ||| 0.333333 0.0269646 2.17609e-05 4.84894e-10 2.718 ||| 0-2 ||| 3 45954 +a ||| swept away ||| 0.0666667 0.0508475 2.17609e-05 3.86072e-08 2.718 ||| 0-1 ||| 15 45954 +a ||| switches at ||| 1 0.185652 2.17609e-05 1.66133e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| system in 19 ||| 1 0.0437285 2.17609e-05 2.98399e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| system in ||| 0.0454545 0.0437285 2.17609e-05 4.59076e-06 2.718 ||| 0-1 ||| 22 45954 +a ||| system to ensure decisions command the support ||| 1 0.270828 2.17609e-05 6.50197e-23 2.718 ||| 0-1 ||| 1 45954 +a ||| system to ensure decisions command the ||| 1 0.270828 2.17609e-05 2.2758e-19 2.718 ||| 0-1 ||| 1 45954 +a ||| system to ensure decisions command ||| 1 0.270828 2.17609e-05 4.28349e-18 2.718 ||| 0-1 ||| 1 45954 +a ||| system to ensure decisions ||| 1 0.270828 2.17609e-05 2.19666e-13 2.718 ||| 0-1 ||| 1 45954 +a ||| system to ensure ||| 0.333333 0.270828 2.17609e-05 4.22435e-09 2.718 ||| 0-1 ||| 3 45954 +a ||| system to ||| 0.0769231 0.270828 2.17609e-05 3.82641e-05 2.718 ||| 0-1 ||| 13 45954 +a ||| tables on ||| 0.2 0.0963759 2.17609e-05 3.34108e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| take away from ||| 0.333333 0.0408799 2.17609e-05 6.67969e-09 2.718 ||| 0-2 ||| 3 45954 +a ||| take from ||| 0.5 0.0408799 2.17609e-05 7.24321e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| take hold as to ||| 1 0.270828 2.17609e-05 1.36521e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| take in ||| 0.125 0.0437285 2.17609e-05 3.4684e-05 2.718 ||| 0-1 ||| 8 45954 +a ||| take into ||| 0.0294118 0.176821 2.17609e-05 9.89034e-06 2.718 ||| 0-1 ||| 34 45954 +a ||| take part in it , ||| 0.25 0.0437285 2.17609e-05 1.16395e-10 2.718 ||| 0-2 ||| 4 45954 +a ||| take part in it ||| 0.2 0.0437285 2.17609e-05 5.69807e-10 2.718 ||| 0-2 ||| 5 45954 +a ||| take part in ||| 0.0434783 0.0437285 2.17609e-05 2.14e-08 2.718 ||| 0-2 ||| 23 45954 +a ||| take their business ||| 1 0.018009 2.17609e-05 1.92866e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| take their ||| 0.0344828 0.018009 2.17609e-05 7.61412e-07 2.718 ||| 0-0 ||| 29 45954 +a ||| take them to ||| 1 0.270828 2.17609e-05 5.65117e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| take ||| 0.00474684 0.018009 0.000130565 0.0004248 2.718 ||| 0-0 ||| 1264 45954 +a ||| taken at ||| 0.0909091 0.185652 2.17609e-05 1.24498e-05 2.718 ||| 0-1 ||| 11 45954 +a ||| taken away ||| 0.166667 0.0508475 2.17609e-05 2.41407e-07 2.718 ||| 0-1 ||| 6 45954 +a ||| taken exception to ||| 1 0.270828 2.17609e-05 2.07271e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| taken on ||| 0.0625 0.0963759 2.17609e-05 1.25188e-05 2.718 ||| 0-1 ||| 16 45954 +a ||| taken to ||| 0.0222222 0.270828 2.17609e-05 0.000159439 2.718 ||| 0-1 ||| 45 45954 +a ||| takes a job in a ||| 1 0.0437285 2.17609e-05 1.47513e-12 2.718 ||| 0-3 ||| 1 45954 +a ||| takes a job in ||| 1 0.0437285 2.17609e-05 3.66657e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| talk back to ||| 0.5 0.270828 2.17609e-05 4.43086e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| talk since then ||| 0.5 0.0114416 2.17609e-05 3.50048e-11 2.718 ||| 0-1 ||| 2 45954 +a ||| talk since ||| 0.5 0.0114416 2.17609e-05 4.02262e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| talk to ||| 0.04 0.270828 2.17609e-05 3.18813e-05 2.718 ||| 0-1 ||| 25 45954 +a ||| talking to ||| 0.0454545 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-1 ||| 22 45954 +a ||| tapered off to ||| 1 0.270828 2.17609e-05 2.44568e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| tapping into ||| 0.166667 0.176821 2.17609e-05 7.27889e-08 2.718 ||| 0-1 ||| 6 45954 +a ||| target ||| 0.0025974 0.0087977 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 385 45954 +a ||| targeted ||| 0.0209424 0.0492611 8.70436e-05 0.000118 2.718 ||| 0-0 ||| 191 45954 +a ||| targeting ||| 0.0107527 0.0809249 2.17609e-05 0.0001652 2.718 ||| 0-0 ||| 93 45954 +a ||| taught ||| 0.0222222 0.103448 2.17609e-05 0.0001416 2.718 ||| 0-0 ||| 45 45954 +a ||| tax in ||| 0.5 0.0437285 2.17609e-05 3.0592e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| tax on ||| 0.02 0.0963759 2.17609e-05 2.00208e-06 2.718 ||| 0-1 ||| 50 45954 +a ||| taxes ||| 0.0015456 0.0026144 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 647 45954 +a ||| taxing ||| 0.0322581 0.203704 2.17609e-05 0.0001298 2.718 ||| 0-0 ||| 31 45954 +a ||| taxpayers to ||| 0.111111 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 9 45954 +a ||| techniques operate at the ||| 1 0.185652 2.17609e-05 2.86865e-13 2.718 ||| 0-2 ||| 1 45954 +a ||| techniques operate at ||| 1 0.185652 2.17609e-05 5.39934e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| technologies to address environmental risks ||| 1 0.270828 2.17609e-05 8.40572e-19 2.718 ||| 0-1 ||| 1 45954 +a ||| technologies to address environmental ||| 1 0.270828 2.17609e-05 2.15531e-14 2.718 ||| 0-1 ||| 1 45954 +a ||| technologies to address ||| 1 0.270828 2.17609e-05 1.10529e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| technologies to ||| 0.0833333 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-1 ||| 12 45954 +a ||| tell whether ||| 0.1 0.156863 2.17609e-05 9.5665e-08 2.718 ||| 0-0 ||| 10 45954 +a ||| tell ||| 0.0119048 0.156863 4.35218e-05 0.0005664 2.718 ||| 0-0 ||| 168 45954 +a ||| telling you ||| 0.25 0.206349 2.17609e-05 5.00115e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| telling ||| 0.0384615 0.206349 6.52827e-05 0.0003068 2.718 ||| 0-0 ||| 78 45954 +a ||| tend to ||| 0.00416667 0.270828 2.17609e-05 2.54985e-05 2.718 ||| 0-1 ||| 240 45954 +a ||| tending of ||| 0.5 0.0164489 2.17609e-05 2.80418e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| tends to ||| 0.01 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 100 45954 +a ||| tens of ||| 0.00833333 0.0164489 2.17609e-05 2.80418e-07 2.718 ||| 0-1 ||| 120 45954 +a ||| terms of ||| 0.00217391 0.0164489 2.17609e-05 1.13461e-05 2.718 ||| 0-1 ||| 460 45954 +a ||| terms with ||| 0.047619 0.0330797 2.17609e-05 4.4255e-06 2.718 ||| 0-1 ||| 21 45954 +a ||| test of its claim to be ||| 0.5 0.0164489 2.17609e-05 6.75722e-16 2.718 ||| 0-1 ||| 2 45954 +a ||| test of its claim to ||| 0.5 0.0164489 2.17609e-05 6.55633e-14 2.718 ||| 0-1 ||| 2 45954 +a ||| test of its claim ||| 0.5 0.0164489 2.17609e-05 7.94802e-13 2.718 ||| 0-1 ||| 2 45954 +a ||| test of its ||| 0.333333 0.0164489 2.17609e-05 2.78194e-09 2.718 ||| 0-1 ||| 3 45954 +a ||| test of ||| 0.0175439 0.0164489 2.17609e-05 1.39993e-06 2.718 ||| 0-1 ||| 57 45954 +a ||| testing ||| 0.00819672 0.112426 2.17609e-05 0.0002242 2.718 ||| 0-0 ||| 122 45954 +a ||| tests ||| 0.00425532 0.0046948 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 235 45954 +a ||| than lip service ||| 0.0555556 0.010385 2.17609e-05 4.01307e-12 2.718 ||| 0-0 ||| 18 45954 +a ||| than lip ||| 0.0588235 0.010385 2.17609e-05 3.25208e-08 2.718 ||| 0-0 ||| 17 45954 +a ||| than ||| 0.00262186 0.010385 0.00047874 0.0012508 2.718 ||| 0-0 ||| 8391 45954 +a ||| that Genet was a literary genius ||| 1 0.0416667 2.17609e-05 6.19368e-22 2.718 ||| 0-4 ||| 1 45954 +a ||| that Genet was a literary ||| 1 0.0416667 2.17609e-05 9.52875e-17 2.718 ||| 0-4 ||| 1 45954 +a ||| that accord with ||| 0.5 0.0330797 2.17609e-05 8.93576e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| that began with putting ||| 0.25 0.133574 2.17609e-05 1.05386e-12 2.718 ||| 0-3 ||| 4 45954 +a ||| that followed ||| 0.0116279 0.0855784 2.17609e-05 5.2058e-06 2.718 ||| 0-1 ||| 86 45954 +a ||| that had been ||| 0.037037 0.0002721 2.17609e-05 3.64118e-10 2.718 ||| 0-0 ||| 27 45954 +a ||| that had sent him to ||| 0.5 0.270828 2.17609e-05 1.54342e-13 2.718 ||| 0-4 ||| 2 45954 +a ||| that had ||| 0.00900901 0.0002721 2.17609e-05 2.18165e-07 2.718 ||| 0-0 ||| 111 45954 +a ||| that he made to ||| 1 0.270828 2.17609e-05 9.22203e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| that it accommodates ||| 0.2 0.375 2.17609e-05 7.70067e-09 2.718 ||| 0-2 ||| 5 45954 +a ||| that it has to offer ||| 0.333333 0.270828 2.17609e-05 2.30153e-11 2.718 ||| 0-3 ||| 3 45954 +a ||| that it has to ||| 0.333333 0.270828 2.17609e-05 2.36296e-07 2.718 ||| 0-3 ||| 3 45954 +a ||| that it is ||| 0.0030303 0.0014741 2.17609e-05 6.03806e-08 2.718 ||| 0-1 ||| 330 45954 +a ||| that it ||| 0.00131234 0.0014741 2.17609e-05 3.66334e-06 2.718 ||| 0-1 ||| 762 45954 +a ||| that of ||| 0.00243309 0.0164489 2.17609e-05 0.000176227 2.718 ||| 0-1 ||| 411 45954 +a ||| that protects ||| 0.0909091 0.291667 2.17609e-05 1.34965e-06 2.718 ||| 0-1 ||| 11 45954 +a ||| that shift , in ||| 1 0.0437285 2.17609e-05 1.14886e-08 2.718 ||| 0-3 ||| 1 45954 +a ||| that they will be ||| 0.04 0.0208333 2.17609e-05 2.06794e-09 2.718 ||| 0-2 ||| 25 45954 +a ||| that they will ||| 0.0555556 0.0208333 4.35218e-05 2.00646e-07 2.718 ||| 0-2 ||| 36 45954 +a ||| that they ||| 0.00205339 0.0027031 2.17609e-05 3.27772e-06 2.718 ||| 0-1 ||| 487 45954 +a ||| that underlay ||| 0.333333 0.111111 2.17609e-05 9.64036e-08 2.718 ||| 0-1 ||| 3 45954 +a ||| that ||| 0.000137334 0.0002721 0.000174087 0.0001534 2.718 ||| 0-0 ||| 58252 45954 +a ||| the British attacked ||| 0.333333 0.0011566 2.17609e-05 9.33822e-12 2.718 ||| 0-0 ||| 3 45954 +a ||| the British ||| 0.00990099 0.0011566 2.17609e-05 2.8733e-07 2.718 ||| 0-0 ||| 101 45954 +a ||| the Supreme Court must uphold the ruling ||| 1 0.0011566 2.17609e-05 1.83007e-25 2.718 ||| 0-5 ||| 1 45954 +a ||| the Supreme Court must uphold the ||| 1 0.0011566 2.17609e-05 1.34169e-21 2.718 ||| 0-5 ||| 1 45954 +a ||| the Taliban to give up ||| 0.5 0.270828 2.17609e-05 6.65061e-13 2.718 ||| 0-2 ||| 2 45954 +a ||| the Taliban to give ||| 0.5 0.270828 2.17609e-05 2.12908e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| the Taliban to ||| 0.2 0.270828 2.17609e-05 5.65193e-07 2.718 ||| 0-2 ||| 5 45954 +a ||| the back of ||| 0.0344828 0.0164489 2.17609e-05 1.59276e-06 2.718 ||| 0-2 ||| 29 45954 +a ||| the basis of ||| 0.00645161 0.0164489 2.17609e-05 4.39162e-07 2.718 ||| 0-2 ||| 155 45954 +a ||| the blame on local ||| 1 0.0963759 2.17609e-05 9.33526e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| the blame on ||| 0.333333 0.0963759 2.17609e-05 5.3253e-08 2.718 ||| 0-2 ||| 3 45954 +a ||| the business of ||| 0.0714286 0.0164489 2.17609e-05 2.90291e-07 2.718 ||| 0-2 ||| 14 45954 +a ||| the conditions under ||| 0.111111 0.0560876 2.17609e-05 4.50336e-09 2.718 ||| 0-2 ||| 9 45954 +a ||| the course ||| 0.0107527 0.0011566 2.17609e-05 1.26437e-06 2.718 ||| 0-0 ||| 93 45954 +a ||| the death of ||| 0.016129 0.0164489 2.17609e-05 2.009e-07 2.718 ||| 0-2 ||| 62 45954 +a ||| the development of new technologies to address ||| 1 0.270828 2.17609e-05 1.96653e-19 2.718 ||| 0-5 ||| 1 45954 +a ||| the development of new technologies to ||| 1 0.270828 2.17609e-05 1.89272e-15 2.718 ||| 0-5 ||| 1 45954 +a ||| the face of ||| 0.00917431 0.0164489 2.17609e-05 4.24263e-07 2.718 ||| 0-2 ||| 109 45954 +a ||| the head with ||| 0.5 0.0330797 2.17609e-05 1.01604e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| the interest of ||| 0.0689655 0.0164489 4.35218e-05 4.01915e-07 2.718 ||| 0-2 ||| 29 45954 +a ||| the investigation into ||| 0.25 0.176821 2.17609e-05 3.86725e-09 2.718 ||| 0-2 ||| 4 45954 +a ||| the job of ||| 0.0555556 0.0164489 2.17609e-05 1.86116e-07 2.718 ||| 0-2 ||| 18 45954 +a ||| the league of ||| 0.25 0.0164489 2.17609e-05 7.44924e-09 2.718 ||| 0-2 ||| 4 45954 +a ||| the lever of ||| 0.5 0.0164489 2.17609e-05 7.44924e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| the lifting of ||| 0.2 0.181818 2.17609e-05 2.03246e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| the lifting ||| 0.166667 0.181818 2.17609e-05 7.52315e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| the main , to jump on the ||| 1 0.0963759 2.17609e-05 4.69438e-15 2.718 ||| 0-5 ||| 1 45954 +a ||| the main , to jump on ||| 1 0.0963759 2.17609e-05 8.83572e-14 2.718 ||| 0-5 ||| 1 45954 +a ||| the more disturbed ||| 1 0.047619 2.17609e-05 1.3395e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| the presidency to ||| 0.25 0.270828 2.17609e-05 9.04308e-07 2.718 ||| 0-2 ||| 4 45954 +a ||| the president to go ||| 1 0.270828 2.17609e-05 1.63293e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| the president to ||| 0.142857 0.270828 2.17609e-05 2.37207e-06 2.718 ||| 0-2 ||| 7 45954 +a ||| the price of ||| 0.00502513 0.0164489 2.17609e-05 1.78667e-07 2.718 ||| 0-2 ||| 199 45954 +a ||| the prospect of ||| 0.00546448 0.0164489 2.17609e-05 3.72462e-08 2.718 ||| 0-2 ||| 183 45954 +a ||| the questions of ||| 0.5 0.0164489 2.17609e-05 9.67256e-08 2.718 ||| 0-2 ||| 2 45954 +a ||| the rate of ||| 0.0121951 0.0164489 2.17609e-05 3.5722e-07 2.718 ||| 0-2 ||| 82 45954 +a ||| the role of ||| 0.00632911 0.0164489 2.17609e-05 2.82842e-07 2.718 ||| 0-2 ||| 158 45954 +a ||| the ruling , but if it does ||| 1 0.0011566 2.17609e-05 1.58601e-18 2.718 ||| 0-0 ||| 1 45954 +a ||| the ruling , but if it ||| 1 0.0011566 2.17609e-05 1.62817e-15 2.718 ||| 0-0 ||| 1 45954 +a ||| the ruling , but if ||| 1 0.0011566 2.17609e-05 6.11487e-14 2.718 ||| 0-0 ||| 1 45954 +a ||| the ruling , but ||| 0.5 0.0011566 2.17609e-05 9.60853e-11 2.718 ||| 0-0 ||| 2 45954 +a ||| the ruling , ||| 0.5 0.0011566 2.17609e-05 8.21944e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| the ruling ||| 0.0192308 0.0011566 2.17609e-05 4.0238e-07 2.718 ||| 0-0 ||| 52 45954 +a ||| the scope of ||| 0.02 0.0164489 2.17609e-05 5.95939e-08 2.718 ||| 0-2 ||| 50 45954 +a ||| the settlement of ||| 0.25 0.0164489 2.17609e-05 5.21447e-08 2.718 ||| 0-2 ||| 4 45954 +a ||| the settlements ||| 0.0454545 0.0011566 2.17609e-05 7.67e-08 2.718 ||| 0-0 ||| 22 45954 +a ||| the size of ||| 0.00704225 0.0164489 2.17609e-05 1.63769e-07 2.718 ||| 0-2 ||| 142 45954 +a ||| the smiling faces of ||| 0.5 0.0811174 2.17609e-05 1.12513e-11 2.718 ||| 0-2 0-3 ||| 2 45954 +a ||| the source ||| 0.0135135 0.0011566 2.17609e-05 3.06505e-07 2.718 ||| 0-0 ||| 74 45954 +a ||| the succession of ||| 0.125 0.0164489 2.17609e-05 7.44924e-09 2.718 ||| 0-2 ||| 8 45954 +a ||| the tables on ||| 0.25 0.0963759 2.17609e-05 1.7751e-08 2.718 ||| 0-2 ||| 4 45954 +a ||| the voting system to ensure decisions command ||| 1 0.270828 2.17609e-05 1.03549e-23 2.718 ||| 0-3 ||| 1 45954 +a ||| the voting system to ensure decisions ||| 1 0.270828 2.17609e-05 5.31021e-19 2.718 ||| 0-3 ||| 1 45954 +a ||| the voting system to ensure ||| 1 0.270828 2.17609e-05 1.02119e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| the voting system to ||| 1 0.270828 2.17609e-05 9.24994e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| the way in ||| 0.0285714 0.0437285 2.17609e-05 3.17077e-06 2.718 ||| 0-2 ||| 35 45954 +a ||| the way to ||| 0.0113636 0.270828 2.17609e-05 2.64284e-05 2.718 ||| 0-2 ||| 88 45954 +a ||| the years by ||| 0.25 0.0269646 2.17609e-05 1.32757e-07 2.718 ||| 0-2 ||| 4 45954 +a ||| the ||| 0.00082 0.0011566 0.00369935 0.00295 2.718 ||| 0-0 ||| 207317 45954 +a ||| their ballots for ||| 0.5 0.0587253 2.17609e-05 8.26932e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| their cases in ||| 1 0.0437285 2.17609e-05 2.74517e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| their claim in ||| 0.333333 0.0437285 2.17609e-05 2.01101e-08 2.718 ||| 0-2 ||| 3 45954 +a ||| their economies cannot stand up to comparison ||| 0.5 0.270828 2.17609e-05 9.47383e-23 2.718 ||| 0-5 ||| 2 45954 +a ||| their economies cannot stand up to ||| 0.5 0.270828 2.17609e-05 7.28756e-18 2.718 ||| 0-5 ||| 2 45954 +a ||| their rage seem able to melt the ||| 1 0.270828 2.17609e-05 2.77278e-22 2.718 ||| 0-4 ||| 1 45954 +a ||| their rage seem able to melt ||| 1 0.270828 2.17609e-05 5.2189e-21 2.718 ||| 0-4 ||| 1 45954 +a ||| their rage seem able to ||| 1 0.270828 2.17609e-05 8.02908e-16 2.718 ||| 0-4 ||| 1 45954 +a ||| their way through ||| 1 0.257419 2.17609e-05 2.4814e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| their wealth into ||| 0.2 0.176821 2.17609e-05 1.82453e-09 2.718 ||| 0-2 ||| 5 45954 +a ||| their ||| 0.000140875 0.0004442 4.35218e-05 7.08e-05 2.718 ||| 0-0 ||| 14197 45954 +a ||| them achieve greater scale in ||| 0.5 0.0437285 2.17609e-05 1.36681e-16 2.718 ||| 0-4 ||| 2 45954 +a ||| them at the ||| 0.333333 0.185652 2.17609e-05 2.6545e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| them at ||| 0.105263 0.185652 4.35218e-05 4.99627e-05 2.718 ||| 0-1 ||| 19 45954 +a ||| them exposed ( like Saddam ) to ||| 1 0.270828 2.17609e-05 1.8957e-22 2.718 ||| 0-6 ||| 1 45954 +a ||| them from ||| 0.0909091 0.0408799 2.17609e-05 1.60315e-05 2.718 ||| 0-1 ||| 11 45954 +a ||| them in ||| 0.0153846 0.0437285 2.17609e-05 7.67666e-05 2.718 ||| 0-1 ||| 65 45954 +a ||| them into ||| 0.125 0.176821 4.35218e-05 2.18904e-05 2.718 ||| 0-1 ||| 16 45954 +a ||| them to act ||| 0.111111 0.270828 2.17609e-05 9.97528e-08 2.718 ||| 0-1 ||| 9 45954 +a ||| them to ||| 0.0522876 0.270828 0.000174087 0.000639851 2.718 ||| 0-1 ||| 153 45954 +a ||| them ||| 0.000518135 0.0011539 2.17609e-05 5.9e-05 2.718 ||| 0-0 ||| 1930 45954 +a ||| themselves and each other to ||| 1 0.270828 2.17609e-05 1.35167e-12 2.718 ||| 0-4 ||| 1 45954 +a ||| themselves behind ||| 1 0.0688836 2.17609e-05 5.51147e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| themselves on ||| 0.333333 0.0963759 6.52827e-05 2.06967e-05 2.718 ||| 0-1 ||| 9 45954 +a ||| themselves to ||| 0.0869565 0.270828 4.35218e-05 0.000263593 2.718 ||| 0-1 ||| 23 45954 +a ||| themselves would probably be ||| 1 0.0437318 2.17609e-05 3.28546e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| themselves would probably ||| 1 0.0437318 2.17609e-05 3.18779e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| themselves would ||| 0.5 0.0437318 2.17609e-05 4.09215e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| themselves ||| 0.00851789 0.0437318 0.000108804 0.000885 2.718 ||| 0-0 ||| 587 45954 +a ||| then , is my plan to drop ||| 0.5 0.270828 2.17609e-05 1.04089e-18 2.718 ||| 0-5 ||| 2 45954 +a ||| then , is my plan to ||| 0.5 0.270828 2.17609e-05 2.00172e-14 2.718 ||| 0-5 ||| 2 45954 +a ||| then , ||| 0.0021322 0.0033459 2.17609e-05 1.92831e-05 2.718 ||| 0-0 ||| 469 45954 +a ||| then educated ||| 0.2 0.0443038 2.17609e-05 7.18785e-08 2.718 ||| 0-1 ||| 5 45954 +a ||| then leaves it ||| 1 0.144385 2.17609e-05 7.38208e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| then leaves ||| 1 0.144385 2.17609e-05 2.77246e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| then was ||| 0.1 0.0033459 2.17609e-05 3.56804e-07 2.718 ||| 0-0 ||| 10 45954 +a ||| then ||| 0.00239578 0.0033459 0.000108804 9.44e-05 2.718 ||| 0-0 ||| 2087 45954 +a ||| there is the way in ||| 1 0.0437285 2.17609e-05 1.11663e-10 2.718 ||| 0-4 ||| 1 45954 +a ||| there must be killed ||| 0.333333 0.200993 2.17609e-05 1.36681e-11 2.718 ||| 0-3 ||| 3 45954 +a ||| there ||| 0.000723066 0.0001547 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 1383 45954 +a ||| thereafter ||| 0.0217391 0.123288 2.17609e-05 0.0001062 2.718 ||| 0-0 ||| 46 45954 +a ||| these issues ||| 0.0128205 0.0015663 2.17609e-05 6.89238e-09 2.718 ||| 0-0 ||| 78 45954 +a ||| these ||| 0.00083626 0.0015663 0.000108804 0.0001062 2.718 ||| 0-0 ||| 5979 45954 +a ||| they are being met , ||| 1 0.0664962 2.17609e-05 4.3175e-12 2.718 ||| 0-3 ||| 1 45954 +a ||| they are being met ||| 1 0.0664962 2.17609e-05 2.11362e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| they are certain to see ||| 1 0.270828 2.17609e-05 1.79885e-12 2.718 ||| 0-3 ||| 1 45954 +a ||| they are certain to ||| 1 0.270828 2.17609e-05 2.91548e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| they are of ||| 0.166667 0.0164489 2.17609e-05 9.86294e-07 2.718 ||| 0-2 ||| 6 45954 +a ||| they are to secure ||| 1 0.270828 2.17609e-05 1.45774e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| they are to ||| 0.0666667 0.270828 2.17609e-05 1.49665e-05 2.718 ||| 0-2 ||| 15 45954 +a ||| they do for ||| 0.333333 0.0587253 2.17609e-05 3.34978e-07 2.718 ||| 0-2 ||| 3 45954 +a ||| they do to ||| 0.142857 0.270828 2.17609e-05 4.6344e-06 2.718 ||| 0-2 ||| 7 45954 +a ||| they end up as anything ||| 1 0.0289876 2.17609e-05 1.38116e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| they end up as ||| 1 0.0289876 2.17609e-05 8.50471e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| they enroll ||| 1 0.188852 2.17609e-05 2.8405e-08 2.718 ||| 0-0 0-1 ||| 1 45954 +a ||| they have been to ||| 0.5 0.270828 2.17609e-05 1.74194e-08 2.718 ||| 0-3 ||| 2 45954 +a ||| they judge ||| 0.333333 0.05 2.17609e-05 5.10138e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| they love ||| 1 0.0134228 2.17609e-05 1.45754e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| they shut ||| 1 0.0027031 2.17609e-05 2.08624e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| they were seen to ||| 1 0.270828 2.17609e-05 1.62818e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| they will be ||| 0.0175439 0.0208333 2.17609e-05 2.5312e-07 2.718 ||| 0-1 ||| 57 45954 +a ||| they will ||| 0.0129032 0.0208333 4.35218e-05 2.45595e-05 2.718 ||| 0-1 ||| 155 45954 +a ||| they ||| 0.00218606 0.0027031 0.000195848 0.0004012 2.718 ||| 0-0 ||| 4117 45954 +a ||| thing , to ||| 0.333333 0.270828 2.17609e-05 2.73534e-05 2.718 ||| 0-2 ||| 3 45954 +a ||| think in terms ||| 0.2 0.0437285 2.17609e-05 5.76934e-09 2.718 ||| 0-1 ||| 5 45954 +a ||| think in ||| 0.0714286 0.0437285 2.17609e-05 1.09683e-05 2.718 ||| 0-1 ||| 14 45954 +a ||| think of ||| 0.00980392 0.0164489 2.17609e-05 6.02467e-06 2.718 ||| 0-1 ||| 102 45954 +a ||| this , in ||| 0.0526316 0.0437285 2.17609e-05 1.59411e-05 2.718 ||| 0-2 ||| 19 45954 +a ||| this decade to ||| 1 0.270828 2.17609e-05 2.95958e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| this in ||| 0.025 0.0437285 2.17609e-05 7.80389e-05 2.718 ||| 0-1 ||| 40 45954 +a ||| this is all harm and no cure ||| 1 0.0549451 2.17609e-05 1.13599e-21 2.718 ||| 0-3 ||| 1 45954 +a ||| this is all harm and no ||| 1 0.0549451 2.17609e-05 8.73839e-17 2.718 ||| 0-3 ||| 1 45954 +a ||| this is all harm and ||| 1 0.0549451 2.17609e-05 8.40958e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| this is all harm ||| 1 0.0549451 2.17609e-05 1.00149e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| this leaves ||| 0.0454545 0.144385 2.17609e-05 6.33122e-07 2.718 ||| 0-1 ||| 22 45954 +a ||| this state of ||| 0.0666667 0.0164489 2.17609e-05 1.50328e-08 2.718 ||| 0-2 ||| 15 45954 +a ||| this ||| 0.000123648 0.0001246 4.35218e-05 2.36e-05 2.718 ||| 0-0 ||| 16175 45954 +a ||| those in ||| 0.00947867 0.0223967 4.35218e-05 1.85358e-06 2.718 ||| 0-0 0-1 ||| 211 45954 +a ||| those ||| 0.000321027 0.001065 2.17609e-05 4.72e-05 2.718 ||| 0-0 ||| 3115 45954 +a ||| though ||| 0.00511771 0.0561519 0.000108804 0.0008024 2.718 ||| 0-0 ||| 977 45954 +a ||| thought to ||| 0.0188679 0.270828 2.17609e-05 5.10297e-05 2.718 ||| 0-1 ||| 53 45954 +a ||| threat to ||| 0.00578035 0.270828 2.17609e-05 2.76261e-05 2.718 ||| 0-1 ||| 173 45954 +a ||| threatens to ||| 0.0212766 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 47 45954 +a ||| threatens ||| 0.00990099 0.0679612 2.17609e-05 0.0001652 2.718 ||| 0-0 ||| 101 45954 +a ||| threats to ||| 0.0153846 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 65 45954 +a ||| through , ||| 0.166667 0.257419 2.17609e-05 0.00186084 2.718 ||| 0-0 ||| 6 45954 +a ||| through on plans to ||| 0.25 0.270828 2.17609e-05 2.5367e-11 2.718 ||| 0-3 ||| 4 45954 +a ||| through on ||| 0.285714 0.176898 8.70436e-05 0.000234125 2.718 ||| 0-0 0-1 ||| 14 45954 +a ||| through to ||| 0.25 0.257419 4.35218e-05 0.000751461 2.718 ||| 0-0 ||| 8 45954 +a ||| through will ||| 1 0.257419 2.17609e-05 6.29471e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| through ||| 0.014969 0.257419 0.000892197 0.0091097 2.718 ||| 0-0 ||| 2739 45954 +a ||| throughout the ||| 0.00262467 0.11079 2.17609e-05 7.20969e-05 2.718 ||| 0-0 ||| 381 45954 +a ||| throughout ||| 0.00711238 0.11079 0.000108804 0.001357 2.718 ||| 0-0 ||| 703 45954 +a ||| throw ||| 0.030303 0.0338983 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 33 45954 +a ||| throwing ||| 0.0238095 0.0434783 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 42 45954 +a ||| thrown ||| 0.0232558 0.0273973 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 43 45954 +a ||| tied to ||| 0.0185185 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-1 ||| 54 45954 +a ||| tied up ||| 0.166667 0.0268991 2.17609e-05 4.97016e-08 2.718 ||| 0-1 ||| 6 45954 +a ||| time and again , at ||| 1 0.185652 2.17609e-05 1.57112e-11 2.718 ||| 0-4 ||| 1 45954 +a ||| time at ||| 0.111111 0.185652 2.17609e-05 2.39028e-05 2.718 ||| 0-1 ||| 9 45954 +a ||| time to time ||| 0.0454545 0.270828 2.17609e-05 2.86276e-07 2.718 ||| 0-1 ||| 22 45954 +a ||| time to ||| 0.00867052 0.270828 6.52827e-05 0.000306113 2.718 ||| 0-1 ||| 346 45954 +a ||| times the size of ||| 0.25 0.0164489 2.17609e-05 3.19022e-11 2.718 ||| 0-3 ||| 4 45954 +a ||| to $ ||| 0.0410959 0.270828 6.52827e-05 0.000155184 2.718 ||| 0-0 ||| 73 45954 +a ||| to " ||| 0.00568182 0.270828 4.35218e-05 0.00163468 2.718 ||| 0-0 ||| 352 45954 +a ||| to , ||| 0.15625 0.270828 0.000108804 0.0668625 2.718 ||| 0-0 ||| 32 45954 +a ||| to 15 % ||| 0.111111 0.270828 2.17609e-05 2.12824e-09 2.718 ||| 0-0 ||| 9 45954 +a ||| to 15 ||| 0.125 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 8 45954 +a ||| to 5.3 ||| 0.25 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 4 45954 +a ||| to America ||| 0.0350877 0.270828 4.35218e-05 0.000389024 2.718 ||| 0-0 ||| 57 45954 +a ||| to China 's ||| 0.1 0.270828 2.17609e-05 3.57536e-06 2.718 ||| 0-0 ||| 10 45954 +a ||| to China anyway ||| 0.333333 0.270828 2.17609e-05 1.4923e-09 2.718 ||| 0-0 ||| 3 45954 +a ||| to China ||| 0.0203046 0.270828 8.70436e-05 0.000229584 2.718 ||| 0-0 ||| 197 45954 +a ||| to Europe ||| 0.00584795 0.270828 2.17609e-05 0.000157311 2.718 ||| 0-0 ||| 171 45954 +a ||| to French and German ||| 1 0.270828 2.17609e-05 1.9495e-11 2.718 ||| 0-0 ||| 1 45954 +a ||| to French and ||| 1 0.270828 2.17609e-05 3.74904e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| to French ||| 1 0.270828 2.17609e-05 4.46469e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| to Indonesia ||| 0.0833333 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-0 ||| 12 45954 +a ||| to It ||| 1 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| to Italy ||| 0.1 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-0 ||| 10 45954 +a ||| to Kosovo ||| 0.0909091 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-0 ||| 11 45954 +a ||| to Lebanon ||| 0.0625 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 16 45954 +a ||| to Live ||| 0.5 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| to Main ||| 0.25 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 4 45954 +a ||| to Malawi ||| 0.333333 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| to Russia ||| 0.0117647 0.270828 2.17609e-05 0.00013178 2.718 ||| 0-0 ||| 85 45954 +a ||| to a draw ||| 1 0.270828 2.17609e-05 1.28265e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to a halt ||| 0.0714286 0.270828 2.17609e-05 7.69062e-07 2.718 ||| 0-0 ||| 14 45954 +a ||| to a head ||| 0.0833333 0.270828 2.17609e-05 2.99328e-06 2.718 ||| 0-0 ||| 12 45954 +a ||| to a legislature , and that " ||| 0.5 0.270828 2.17609e-05 5.99053e-15 2.718 ||| 0-0 ||| 2 45954 +a ||| to a legislature , and that ||| 0.5 0.270828 2.17609e-05 1.19952e-12 2.718 ||| 0-0 ||| 2 45954 +a ||| to a legislature , and ||| 0.5 0.270828 2.17609e-05 1.46824e-10 2.718 ||| 0-0 ||| 2 45954 +a ||| to a legislature , ||| 0.5 0.270828 2.17609e-05 1.74851e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| to a legislature ||| 0.5 0.270828 2.17609e-05 8.55976e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| to a ||| 0.0183185 0.270828 0.000848675 0.0131689 2.718 ||| 0-0 ||| 2129 45954 +a ||| to abandon ||| 0.00990099 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-0 ||| 101 45954 +a ||| to accept ||| 0.00377358 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 265 45954 +a ||| to accommodate ||| 0.04 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 25 45954 +a ||| to accompany Barak to Washington , will ||| 1 0.170732 2.17609e-05 6.70377e-20 2.718 ||| 0-1 ||| 1 45954 +a ||| to accompany Barak to Washington , ||| 1 0.170732 2.17609e-05 9.70169e-18 2.718 ||| 0-1 ||| 1 45954 +a ||| to accompany Barak to Washington ||| 1 0.170732 2.17609e-05 4.74943e-17 2.718 ||| 0-1 ||| 1 45954 +a ||| to accompany Barak to ||| 1 0.170732 2.17609e-05 3.65341e-12 2.718 ||| 0-1 ||| 1 45954 +a ||| to accompany Barak ||| 1 0.170732 2.17609e-05 4.4289e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| to accompany ||| 0.125 0.170732 2.17609e-05 6.81369e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| to account ||| 0.0769231 0.270828 2.17609e-05 3.82641e-05 2.718 ||| 0-0 ||| 13 45954 +a ||| to achieve ||| 0.002849 0.270828 2.17609e-05 4.25193e-05 2.718 ||| 0-0 ||| 351 45954 +a ||| to act to ||| 0.166667 0.270828 2.17609e-05 4.20945e-06 2.718 ||| 0-2 ||| 6 45954 +a ||| to act ||| 0.00865801 0.270828 4.35218e-05 5.10297e-05 2.718 ||| 0-0 ||| 231 45954 +a ||| to actual ||| 0.5 0.270828 4.35218e-05 3.18813e-05 2.718 ||| 0-0 ||| 4 45954 +a ||| to add ||| 0.0384615 0.270828 2.17609e-05 2.76261e-05 2.718 ||| 0-0 ||| 26 45954 +a ||| to address environmental risks ||| 1 0.270828 2.17609e-05 2.58637e-14 2.718 ||| 0-0 ||| 1 45954 +a ||| to address environmental ||| 1 0.270828 2.17609e-05 6.63173e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to address ||| 0.00301205 0.270828 2.17609e-05 3.40089e-05 2.718 ||| 0-0 ||| 332 45954 +a ||| to adjust them to ||| 1 0.270828 2.17609e-05 1.02924e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| to admit ||| 0.0377358 0.270828 4.35218e-05 1.27656e-05 2.718 ||| 0-0 ||| 53 45954 +a ||| to adopt a positive ||| 1 0.270828 2.17609e-05 3.11575e-11 2.718 ||| 0-0 ||| 1 45954 +a ||| to adopt a ||| 0.05 0.270828 2.17609e-05 5.99183e-07 2.718 ||| 0-0 ||| 20 45954 +a ||| to adopt ||| 0.010101 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 99 45954 +a ||| to age ||| 1 0.270828 2.17609e-05 2.76261e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| to agree to ||| 0.0666667 0.270828 2.17609e-05 2.62989e-06 2.718 ||| 0-2 ||| 15 45954 +a ||| to agree ||| 0.0178571 0.270828 2.17609e-05 3.18813e-05 2.718 ||| 0-0 ||| 56 45954 +a ||| to al-Qaeda ||| 0.333333 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| to all ||| 0.00440529 0.270828 2.17609e-05 0.00084816 2.718 ||| 0-0 ||| 227 45954 +a ||| to all-time ||| 1 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to allow ||| 0.00518135 0.270828 2.17609e-05 4.46469e-05 2.718 ||| 0-0 ||| 193 45954 +a ||| to an explicit ||| 0.125 0.270828 2.17609e-05 2.94579e-08 2.718 ||| 0-0 ||| 8 45954 +a ||| to an honest ||| 0.5 0.270828 2.17609e-05 1.4729e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| to an ||| 0.00623701 0.270828 6.52827e-05 0.001133 2.718 ||| 0-0 ||| 481 45954 +a ||| to and treatment at ||| 0.5 0.270828 2.17609e-05 4.24188e-10 2.718 ||| 0-0 ||| 2 45954 +a ||| to and treatment ||| 0.5 0.270828 2.17609e-05 1.42925e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| to and ||| 0.0555556 0.270828 2.17609e-05 0.00274856 2.718 ||| 0-0 ||| 18 45954 +a ||| to any ||| 0.0107527 0.270828 2.17609e-05 0.000297602 2.718 ||| 0-0 ||| 93 45954 +a ||| to anything ||| 0.0666667 0.270828 2.17609e-05 5.31573e-05 2.718 ||| 0-0 ||| 15 45954 +a ||| to appear in ||| 0.142857 0.0437285 2.17609e-05 5.88933e-07 2.718 ||| 0-2 ||| 7 45954 +a ||| to arrive ||| 0.0833333 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 12 45954 +a ||| to as ||| 0.133333 0.270828 4.35218e-05 0.00276768 2.718 ||| 0-0 ||| 15 45954 +a ||| to assist ||| 0.0192308 0.305627 2.17609e-05 0.000185396 2.718 ||| 0-0 0-1 ||| 52 45954 +a ||| to assume ||| 0.025641 0.270828 4.35218e-05 2.76261e-05 2.718 ||| 0-0 ||| 78 45954 +a ||| to assuming ||| 0.25 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 4 45954 +a ||| to attempt on a ||| 1 0.0963759 2.17609e-05 7.19879e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| to attempt on ||| 1 0.0963759 2.17609e-05 1.78932e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| to average ||| 0.5 0.270828 2.17609e-05 3.18813e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| to award ||| 0.125 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 8 45954 +a ||| to back down ||| 0.142857 0.270828 2.17609e-05 6.6472e-07 2.718 ||| 0-0 ||| 7 45954 +a ||| to back ||| 0.0357143 0.270828 2.17609e-05 0.000454914 2.718 ||| 0-0 ||| 28 45954 +a ||| to be able to ||| 0.0384615 0.270828 2.17609e-05 1.15654e-07 2.718 ||| 0-3 ||| 26 45954 +a ||| to be against ||| 0.166667 0.270828 2.17609e-05 1.13924e-06 2.718 ||| 0-0 ||| 6 45954 +a ||| to be bailed out ||| 0.142857 0.270828 2.17609e-05 5.8358e-10 2.718 ||| 0-0 ||| 7 45954 +a ||| to be bailed ||| 1 0.270828 2.17609e-05 1.31567e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| to be called ||| 0.0714286 0.270828 2.17609e-05 1.09538e-06 2.718 ||| 0-0 ||| 14 45954 +a ||| to be capable of ||| 0.333333 0.270828 2.17609e-05 1.36162e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| to be capable ||| 0.333333 0.270828 2.17609e-05 5.04004e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| to be delivered ||| 1 0.270828 2.17609e-05 2.4087e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| to be followed ||| 0.2 0.270828 4.35218e-05 5.4786e-07 2.718 ||| 0-0 ||| 10 45954 +a ||| to be found ||| 0.030303 0.270828 2.17609e-05 1.35818e-06 2.718 ||| 0-0 ||| 33 45954 +a ||| to be happy ||| 0.333333 0.270828 2.17609e-05 1.75423e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| to be known -- set ||| 1 0.270828 2.17609e-05 3.16121e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| to be known -- ||| 1 0.270828 2.17609e-05 3.74418e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| to be known ||| 0.111111 0.270828 2.17609e-05 7.44874e-07 2.718 ||| 0-0 ||| 9 45954 +a ||| to be made ||| 0.0384615 0.270828 2.17609e-05 3.72437e-06 2.718 ||| 0-0 ||| 26 45954 +a ||| to be on ||| 0.0909091 0.0963759 2.17609e-05 2.18501e-05 2.718 ||| 0-2 ||| 11 45954 +a ||| to be paid ||| 0.0454545 0.270828 2.17609e-05 4.60149e-07 2.718 ||| 0-0 ||| 22 45954 +a ||| to be provided ||| 0.333333 0.270828 2.17609e-05 8.10658e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| to be put right -- ||| 0.5 0.270828 2.17609e-05 7.71586e-12 2.718 ||| 0-0 ||| 2 45954 +a ||| to be put right ||| 0.5 0.270828 2.17609e-05 1.53501e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| to be put ||| 0.166667 0.270828 2.17609e-05 4.07488e-06 2.718 ||| 0-0 ||| 6 45954 +a ||| to be run in ||| 1 0.0437285 2.17609e-05 1.40927e-08 2.718 ||| 0-3 ||| 1 45954 +a ||| to be seen ||| 0.0147059 0.270828 2.17609e-05 1.22695e-06 2.718 ||| 0-0 ||| 68 45954 +a ||| to be taken ||| 0.04 0.270828 2.17609e-05 1.64324e-06 2.718 ||| 0-0 ||| 25 45954 +a ||| to be won by finding ||| 1 0.270828 2.17609e-05 1.50152e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| to be won by ||| 1 0.270828 2.17609e-05 1.21679e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to be won ||| 0.25 0.270828 2.17609e-05 1.7964e-06 2.718 ||| 0-0 ||| 4 45954 +a ||| to be worth far ||| 1 0.270828 2.17609e-05 3.04802e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to be worth ||| 0.5 0.270828 2.17609e-05 4.60149e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| to be ||| 0.0239946 0.270828 0.00154502 0.00337352 2.718 ||| 0-0 ||| 2959 45954 +a ||| to bear ||| 0.03125 0.270828 2.17609e-05 4.89021e-05 2.718 ||| 0-0 ||| 32 45954 +a ||| to become ||| 0.00657895 0.270828 4.35218e-05 0.000221074 2.718 ||| 0-0 ||| 304 45954 +a ||| to becoming ||| 0.0526316 0.270828 2.17609e-05 4.67745e-05 2.718 ||| 0-0 ||| 19 45954 +a ||| to being ||| 0.0263158 0.270828 2.17609e-05 0.000493178 2.718 ||| 0-0 ||| 38 45954 +a ||| to bigotry of ||| 1 0.143638 2.17609e-05 4.58936e-08 2.718 ||| 0-0 0-2 ||| 1 45954 +a ||| to blame ||| 0.0283019 0.239989 6.52827e-05 0.000370792 2.718 ||| 0-0 0-1 ||| 106 45954 +a ||| to blockade ||| 0.25 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 4 45954 +a ||| to blow himself ||| 0.5 0.270828 2.17609e-05 6.45536e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| to blow ||| 0.125 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-0 ||| 8 45954 +a ||| to boom - thanks ||| 0.5 0.270828 2.17609e-05 1.79167e-13 2.718 ||| 0-0 ||| 2 45954 +a ||| to boom - ||| 0.5 0.270828 2.17609e-05 9.18804e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| to boom ||| 0.142857 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-0 ||| 7 45954 +a ||| to borrow ||| 0.0113636 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-0 ||| 88 45954 +a ||| to borrowers ||| 0.166667 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 6 45954 +a ||| to both ||| 0.0666667 0.270828 8.70436e-05 0.000559068 2.718 ||| 0-0 ||| 60 45954 +a ||| to break free ||| 0.5 0.270828 2.17609e-05 1.09359e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| to break ||| 0.0307692 0.270828 4.35218e-05 4.67745e-05 2.718 ||| 0-0 ||| 65 45954 +a ||| to breast ||| 0.5 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| to bring back into the fold some ||| 1 0.270828 2.17609e-05 6.00353e-20 2.718 ||| 0-0 ||| 1 45954 +a ||| to bring back into the fold ||| 1 0.270828 2.17609e-05 8.4036e-17 2.718 ||| 0-0 ||| 1 45954 +a ||| to bring back into the ||| 1 0.270828 2.17609e-05 1.29286e-11 2.718 ||| 0-0 ||| 1 45954 +a ||| to bring back into ||| 1 0.270828 2.17609e-05 2.43341e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to bring back ||| 0.333333 0.270828 2.17609e-05 2.48155e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| to bring ||| 0.0263158 0.270828 0.000130565 0.000178555 2.718 ||| 0-0 ||| 228 45954 +a ||| to burnish the ||| 0.5 0.270828 2.17609e-05 1.13039e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| to burnish ||| 0.2 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 5 45954 +a ||| to business as ||| 0.2 0.270828 2.17609e-05 7.01053e-07 2.718 ||| 0-0 ||| 5 45954 +a ||| to business ||| 0.0666667 0.270828 2.17609e-05 8.29109e-05 2.718 ||| 0-0 ||| 15 45954 +a ||| to buy ||| 0.0119048 0.270828 4.35218e-05 2.12433e-05 2.718 ||| 0-0 ||| 168 45954 +a ||| to call ||| 0.016129 0.270828 2.17609e-05 8.07833e-05 2.718 ||| 0-0 ||| 62 45954 +a ||| to carry ||| 0.0172414 0.270828 2.17609e-05 3.82641e-05 2.718 ||| 0-0 ||| 58 45954 +a ||| to catch ||| 0.0588235 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-0 ||| 17 45954 +a ||| to challenge ||| 0.0142857 0.270828 2.17609e-05 4.03917e-05 2.718 ||| 0-0 ||| 70 45954 +a ||| to changes in ||| 0.0588235 0.270828 2.17609e-05 1.63457e-07 2.718 ||| 0-0 ||| 17 45954 +a ||| to changes ||| 0.0666667 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-0 ||| 15 45954 +a ||| to combat ||| 0.015625 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 64 45954 +a ||| to come to a ||| 0.5 0.270828 2.17609e-05 1.33333e-06 2.718 ||| 0-2 ||| 2 45954 +a ||| to come to ||| 0.111111 0.270828 4.35218e-05 3.3141e-05 2.718 ||| 0-0 ||| 18 45954 +a ||| to come ||| 0.0225225 0.270828 0.000108804 0.000401756 2.718 ||| 0-0 ||| 222 45954 +a ||| to comparison with America ||| 0.5 0.270828 2.17609e-05 1.91808e-11 2.718 ||| 0-0 ||| 2 45954 +a ||| to comparison with ||| 0.5 0.270828 2.17609e-05 1.61387e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| to comparison ||| 0.5 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| to complete ||| 0.0208333 0.270828 2.17609e-05 2.76261e-05 2.718 ||| 0-0 ||| 48 45954 +a ||| to conducting ||| 0.2 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 5 45954 +a ||| to confront ||| 0.00925926 0.244755 2.17609e-05 6.81369e-05 2.718 ||| 0-1 ||| 108 45954 +a ||| to continue to ||| 0.025 0.270828 2.17609e-05 7.54136e-06 2.718 ||| 0-0 ||| 40 45954 +a ||| to continue ||| 0.0127389 0.270828 4.35218e-05 9.14213e-05 2.718 ||| 0-0 ||| 157 45954 +a ||| to continuing ||| 0.142857 0.270828 2.17609e-05 4.03917e-05 2.718 ||| 0-0 ||| 7 45954 +a ||| to contribute ||| 0.02 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 50 45954 +a ||| to convince Europeans of its benefits . ||| 1 0.403141 2.17609e-05 9.9958e-20 2.718 ||| 0-1 ||| 1 45954 +a ||| to convince Europeans of its benefits ||| 1 0.403141 2.17609e-05 2.17399e-17 2.718 ||| 0-1 ||| 1 45954 +a ||| to convince Europeans of its ||| 1 0.403141 2.17609e-05 2.09239e-13 2.718 ||| 0-1 ||| 1 45954 +a ||| to convince Europeans of ||| 1 0.403141 2.17609e-05 1.05293e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| to convince Europeans ||| 0.333333 0.403141 2.17609e-05 3.89743e-09 2.718 ||| 0-1 ||| 3 45954 +a ||| to convince ||| 0.0327869 0.336985 4.35218e-05 0.000297406 2.718 ||| 0-0 0-1 ||| 61 45954 +a ||| to cope ||| 0.04 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 25 45954 +a ||| to correctly guess ||| 1 0.270828 2.17609e-05 1.10635e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to correctly ||| 1 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to courses ||| 0.5 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| to criminal ||| 1 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| to crumble ||| 0.25 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 4 45954 +a ||| to cut their ||| 0.142857 0.270828 2.17609e-05 1.82872e-07 2.718 ||| 0-0 ||| 7 45954 +a ||| to cut through ||| 0.5 0.257419 2.17609e-05 2.3423e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| to cut too deeply ||| 0.25 0.270828 2.17609e-05 8.61191e-12 2.718 ||| 0-0 ||| 4 45954 +a ||| to cut too ||| 0.25 0.270828 2.17609e-05 1.02037e-07 2.718 ||| 0-0 ||| 4 45954 +a ||| to cut ||| 0.0196078 0.270828 6.52827e-05 0.000102027 2.718 ||| 0-0 ||| 153 45954 +a ||| to deal ||| 0.00877193 0.270828 2.17609e-05 0.000123303 2.718 ||| 0-0 ||| 114 45954 +a ||| to death , ||| 0.142857 0.270828 2.17609e-05 1.1721e-05 2.718 ||| 0-0 ||| 7 45954 +a ||| to death ||| 0.0444444 0.270828 4.35218e-05 5.73797e-05 2.718 ||| 0-0 ||| 45 45954 +a ||| to designate ||| 0.5 0.302081 2.17609e-05 1.15872e-05 2.718 ||| 0-0 0-1 ||| 2 45954 +a ||| to develop ||| 0.00985222 0.270828 4.35218e-05 2.97537e-05 2.718 ||| 0-0 ||| 203 45954 +a ||| to dig ||| 0.125 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 8 45954 +a ||| to dismiss ||| 0.04 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 25 45954 +a ||| to distract people from ||| 1 0.0408799 2.17609e-05 3.54116e-12 2.718 ||| 0-3 ||| 1 45954 +a ||| to do it ||| 0.03125 0.270828 2.17609e-05 1.99802e-05 2.718 ||| 0-0 ||| 32 45954 +a ||| to do more ||| 0.0434783 0.270828 2.17609e-05 1.60328e-06 2.718 ||| 0-0 ||| 23 45954 +a ||| to do so on ||| 0.5 0.0963759 2.17609e-05 1.09525e-08 2.718 ||| 0-3 ||| 2 45954 +a ||| to do so ||| 0.00446429 0.270828 2.17609e-05 1.691e-06 2.718 ||| 0-0 ||| 224 45954 +a ||| to do with the ||| 0.027027 0.270828 2.17609e-05 1.51207e-07 2.718 ||| 0-0 ||| 37 45954 +a ||| to do with ||| 0.00649351 0.270828 2.17609e-05 2.846e-06 2.718 ||| 0-0 ||| 154 45954 +a ||| to do ||| 0.015299 0.270828 0.00023937 0.000750388 2.718 ||| 0-0 ||| 719 45954 +a ||| to domestic ||| 0.333333 0.270828 2.17609e-05 2.76261e-05 2.718 ||| 0-0 ||| 3 45954 +a ||| to drain ||| 0.2 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 5 45954 +a ||| to draw ||| 0.0142857 0.270828 2.17609e-05 3.18813e-05 2.718 ||| 0-0 ||| 70 45954 +a ||| to drop ||| 0.0555556 0.270828 2.17609e-05 1.70208e-05 2.718 ||| 0-0 ||| 18 45954 +a ||| to dust ||| 0.5 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| to each ||| 0.0263158 0.270828 2.17609e-05 0.000170044 2.718 ||| 0-0 ||| 38 45954 +a ||| to efforts ||| 0.1 0.270828 2.17609e-05 5.31573e-05 2.718 ||| 0-0 ||| 10 45954 +a ||| to either ||| 0.153846 0.270828 4.35218e-05 0.000323101 2.718 ||| 0-0 ||| 13 45954 +a ||| to eligible ||| 1 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to embrace ||| 0.0175439 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-0 ||| 57 45954 +a ||| to emerge ||| 0.04 0.270828 4.35218e-05 5.10297e-05 2.718 ||| 0-0 ||| 50 45954 +a ||| to encourage Ukraine ||| 0.125 0.270828 2.17609e-05 5.53176e-10 2.718 ||| 0-0 ||| 8 45954 +a ||| to encourage ||| 0.00729927 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-0 ||| 137 45954 +a ||| to end the ||| 0.0188679 0.270828 2.17609e-05 8.24486e-06 2.718 ||| 0-0 ||| 53 45954 +a ||| to end ||| 0.0102564 0.270828 4.35218e-05 0.000155184 2.718 ||| 0-0 ||| 195 45954 +a ||| to endlessly ||| 1 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to engender additional goodwill . ||| 1 0.270828 2.17609e-05 7.42687e-18 2.718 ||| 0-0 ||| 1 45954 +a ||| to engender additional goodwill ||| 1 0.270828 2.17609e-05 1.61527e-15 2.718 ||| 0-0 ||| 1 45954 +a ||| to engender additional ||| 1 0.270828 2.17609e-05 1.24252e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to engender ||| 0.333333 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| to enhance ||| 0.0149254 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-0 ||| 67 45954 +a ||| to ensure decisions command the support ||| 1 0.270828 2.17609e-05 5.56199e-19 2.718 ||| 0-0 ||| 1 45954 +a ||| to ensure decisions command the ||| 1 0.270828 2.17609e-05 1.9468e-15 2.718 ||| 0-0 ||| 1 45954 +a ||| to ensure decisions command ||| 1 0.270828 2.17609e-05 3.66424e-14 2.718 ||| 0-0 ||| 1 45954 +a ||| to ensure decisions ||| 1 0.270828 2.17609e-05 1.8791e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| to ensure ||| 0.00772201 0.270828 8.70436e-05 3.61365e-05 2.718 ||| 0-0 ||| 518 45954 +a ||| to equip ||| 0.111111 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 9 45954 +a ||| to even ||| 0.166667 0.270828 4.35218e-05 0.000297602 2.718 ||| 0-0 ||| 12 45954 +a ||| to everyone from Kenya . ||| 1 0.0408799 2.17609e-05 1.83785e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| to everyone from Kenya ||| 1 0.0408799 2.17609e-05 3.99716e-13 2.718 ||| 0-2 ||| 1 45954 +a ||| to everyone from ||| 1 0.0408799 2.17609e-05 6.14948e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| to evoke an outpouring ||| 0.5 0.270828 2.17609e-05 4.78691e-14 2.718 ||| 0-0 ||| 2 45954 +a ||| to evoke an ||| 0.5 0.270828 2.17609e-05 7.36448e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| to evoke ||| 0.5 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| to expect ||| 0.0149254 0.270828 2.17609e-05 1.70208e-05 2.718 ||| 0-0 ||| 67 45954 +a ||| to expel ||| 0.0769231 0.441177 2.17609e-05 1.46008e-05 2.718 ||| 0-1 ||| 13 45954 +a ||| to extricate themselves ||| 0.166667 0.270828 2.17609e-05 1.71336e-09 2.718 ||| 0-0 ||| 6 45954 +a ||| to extricate ||| 0.111111 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 9 45954 +a ||| to face ||| 0.021978 0.270828 4.35218e-05 0.000121175 2.718 ||| 0-0 ||| 91 45954 +a ||| to fail ||| 0.0225564 0.270828 6.52827e-05 3.61365e-05 2.718 ||| 0-0 ||| 133 45954 +a ||| to fare ||| 0.333333 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| to favor ||| 0.03125 0.188161 2.17609e-05 0.000185396 2.718 ||| 0-0 0-1 ||| 32 45954 +a ||| to fend ||| 0.111111 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 9 45954 +a ||| to financial institutions ' chief executive ||| 0.5 0.270828 2.17609e-05 2.48038e-21 2.718 ||| 0-0 ||| 2 45954 +a ||| to financial institutions ' chief ||| 0.5 0.270828 2.17609e-05 1.90799e-16 2.718 ||| 0-0 ||| 2 45954 +a ||| to financial institutions ' ||| 0.5 0.270828 2.17609e-05 3.6692e-12 2.718 ||| 0-0 ||| 2 45954 +a ||| to financial institutions ||| 0.166667 0.270828 2.17609e-05 4.4486e-09 2.718 ||| 0-0 ||| 6 45954 +a ||| to financial ||| 0.0909091 0.270828 2.17609e-05 9.77714e-05 2.718 ||| 0-0 ||| 11 45954 +a ||| to find out ||| 0.0526316 0.270828 2.17609e-05 6.69459e-07 2.718 ||| 0-0 ||| 19 45954 +a ||| to find ||| 0.00369004 0.270828 2.17609e-05 0.000150929 2.718 ||| 0-0 ||| 271 45954 +a ||| to finding ||| 0.0769231 0.270828 2.17609e-05 4.03917e-05 2.718 ||| 0-0 ||| 13 45954 +a ||| to fiscal ||| 0.5 0.270828 2.17609e-05 2.33709e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| to follow ||| 0.0149254 0.270828 4.35218e-05 5.52849e-05 2.718 ||| 0-0 ||| 134 45954 +a ||| to force ||| 0.0246914 0.270828 4.35218e-05 9.56438e-05 2.718 ||| 0-0 ||| 81 45954 +a ||| to foreign ||| 0.333333 0.270828 4.35218e-05 5.10297e-05 2.718 ||| 0-0 ||| 6 45954 +a ||| to former ||| 0.0769231 0.270828 2.17609e-05 8.07833e-05 2.718 ||| 0-0 ||| 13 45954 +a ||| to free market ||| 0.5 0.270828 2.17609e-05 1.24282e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| to free ||| 0.0294118 0.270828 2.17609e-05 7.65281e-05 2.718 ||| 0-0 ||| 34 45954 +a ||| to gain from being part ||| 0.5 0.270828 2.17609e-05 7.82505e-14 2.718 ||| 0-0 ||| 2 45954 +a ||| to gain from being ||| 0.5 0.270828 2.17609e-05 1.26824e-10 2.718 ||| 0-0 ||| 2 45954 +a ||| to gain from ||| 0.1 0.270828 2.17609e-05 8.41734e-08 2.718 ||| 0-0 ||| 10 45954 +a ||| to gain ||| 0.008 0.270828 2.17609e-05 5.10297e-05 2.718 ||| 0-0 ||| 125 45954 +a ||| to generate public awareness and set ||| 1 0.270828 2.17609e-05 8.25233e-19 2.718 ||| 0-0 ||| 1 45954 +a ||| to generate public awareness and ||| 1 0.270828 2.17609e-05 9.77417e-16 2.718 ||| 0-0 ||| 1 45954 +a ||| to generate public awareness ||| 1 0.270828 2.17609e-05 1.16399e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| to generate public ||| 1 0.270828 2.17609e-05 5.96919e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| to generate ||| 0.0131579 0.270828 2.17609e-05 1.70208e-05 2.718 ||| 0-0 ||| 76 45954 +a ||| to get our priorities right . ||| 0.5 0.270828 2.17609e-05 4.56945e-18 2.718 ||| 0-0 ||| 2 45954 +a ||| to get our priorities right ||| 0.5 0.270828 2.17609e-05 9.93813e-16 2.718 ||| 0-0 ||| 2 45954 +a ||| to get our priorities ||| 0.5 0.270828 2.17609e-05 2.63821e-12 2.718 ||| 0-0 ||| 2 45954 +a ||| to get our ||| 0.2 0.270828 2.17609e-05 1.35293e-07 2.718 ||| 0-0 ||| 5 45954 +a ||| to get ||| 0.0129032 0.270828 8.70436e-05 0.00025721 2.718 ||| 0-0 ||| 310 45954 +a ||| to give affected ||| 0.5 0.270828 2.17609e-05 5.61027e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| to give up ||| 0.0238095 0.270828 2.17609e-05 3.8516e-07 2.718 ||| 0-0 ||| 42 45954 +a ||| to give ||| 0.0316456 0.270828 0.000108804 0.000123303 2.718 ||| 0-0 ||| 158 45954 +a ||| to glimpse the ||| 1 0.270828 2.17609e-05 2.26077e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| to glimpse ||| 1 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to go along with ||| 0.2 0.270828 2.17609e-05 1.94252e-10 2.718 ||| 0-0 ||| 5 45954 +a ||| to go along ||| 0.111111 0.270828 2.17609e-05 5.12173e-08 2.718 ||| 0-0 ||| 9 45954 +a ||| to go through ||| 0.111111 0.270828 2.17609e-05 1.14152e-07 2.718 ||| 0-0 ||| 9 45954 +a ||| to go under ||| 0.5 0.270828 2.17609e-05 1.11223e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| to go ||| 0.027933 0.270828 0.000108804 0.000225329 2.718 ||| 0-0 ||| 179 45954 +a ||| to good ||| 0.0909091 0.270828 2.17609e-05 0.000176427 2.718 ||| 0-0 ||| 11 45954 +a ||| to governments against the ||| 0.25 0.270828 2.17609e-05 5.72009e-10 2.718 ||| 0-0 ||| 4 45954 +a ||| to governments against ||| 0.25 0.270828 2.17609e-05 1.07663e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| to governments ||| 0.0322581 0.270828 2.17609e-05 3.18813e-05 2.718 ||| 0-0 ||| 31 45954 +a ||| to gradual loss of ||| 1 0.270828 2.17609e-05 1.23121e-11 2.718 ||| 0-0 ||| 1 45954 +a ||| to gradual loss ||| 1 0.270828 2.17609e-05 4.55732e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to gradual ||| 1 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to grant law ||| 0.5 0.270828 2.17609e-05 1.99016e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| to grant ||| 0.08 0.270828 4.35218e-05 1.27656e-05 2.718 ||| 0-0 ||| 25 45954 +a ||| to greater ||| 0.0212766 0.270828 2.17609e-05 5.31573e-05 2.718 ||| 0-0 ||| 47 45954 +a ||| to grips ||| 0.333333 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-0 ||| 3 45954 +a ||| to halt ||| 0.0181818 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-0 ||| 55 45954 +a ||| to hand ||| 0.1 0.270828 2.17609e-05 0.000155184 2.718 ||| 0-0 ||| 10 45954 +a ||| to hark ||| 1 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to have hired ||| 0.2 0.270828 2.17609e-05 1.09846e-08 2.718 ||| 0-0 ||| 5 45954 +a ||| to have told ||| 1 0.270828 2.17609e-05 1.42631e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| to have ||| 0.0131579 0.270828 0.000130565 0.00168994 2.718 ||| 0-0 ||| 456 45954 +a ||| to having ||| 0.0714286 0.270828 2.17609e-05 8.71661e-05 2.718 ||| 0-0 ||| 14 45954 +a ||| to head ||| 0.0322581 0.270828 2.17609e-05 7.44005e-05 2.718 ||| 0-0 ||| 31 45954 +a ||| to hear and decide ||| 0.5 0.270828 2.17609e-05 7.30349e-12 2.718 ||| 0-0 ||| 2 45954 +a ||| to hear and ||| 0.5 0.270828 2.17609e-05 1.2506e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| to hear ||| 0.0357143 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 28 45954 +a ||| to heavily ||| 0.333333 0.270828 2.17609e-05 2.97537e-05 2.718 ||| 0-0 ||| 3 45954 +a ||| to help him ||| 0.142857 0.270828 2.17609e-05 7.68122e-08 2.718 ||| 0-0 ||| 7 45954 +a ||| to help the ||| 0.0172414 0.350156 2.17609e-05 4.62858e-05 2.718 ||| 0-1 ||| 58 45954 +a ||| to help themselves ||| 0.333333 0.310492 2.17609e-05 2.78384e-06 2.718 ||| 0-0 0-1 ||| 3 45954 +a ||| to help ||| 0.0225873 0.310492 0.00023937 0.00345689 2.718 ||| 0-0 0-1 ||| 487 45954 +a ||| to helping ||| 0.111111 0.270828 2.17609e-05 2.33709e-05 2.718 ||| 0-0 ||| 9 45954 +a ||| to her or ||| 1 0.270828 2.17609e-05 2.71369e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| to her ||| 0.0217391 0.270828 2.17609e-05 0.000193448 2.718 ||| 0-0 ||| 46 45954 +a ||| to high ||| 0.0645161 0.270828 4.35218e-05 0.000155184 2.718 ||| 0-0 ||| 31 45954 +a ||| to higher ||| 0.04 0.270828 2.17609e-05 6.37625e-05 2.718 ||| 0-0 ||| 25 45954 +a ||| to him ||| 0.0526316 0.270828 6.52827e-05 0.000227457 2.718 ||| 0-0 ||| 57 45954 +a ||| to his job ||| 0.25 0.270828 2.17609e-05 5.31626e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| to his ||| 0.00438596 0.270828 2.17609e-05 0.000327356 2.718 ||| 0-0 ||| 228 45954 +a ||| to hit ||| 0.25 0.270828 6.52827e-05 4.67745e-05 2.718 ||| 0-0 ||| 12 45954 +a ||| to hold ||| 0.0359712 0.270828 0.000108804 0.00018281 2.718 ||| 0-0 ||| 139 45954 +a ||| to human ||| 0.0769231 0.270828 2.17609e-05 5.31573e-05 2.718 ||| 0-0 ||| 13 45954 +a ||| to include ||| 0.0230769 0.270828 6.52827e-05 5.73797e-05 2.718 ||| 0-0 ||| 130 45954 +a ||| to increase ||| 0.00641026 0.270828 4.35218e-05 6.80177e-05 2.718 ||| 0-0 ||| 312 45954 +a ||| to increased ||| 0.030303 0.270828 2.17609e-05 4.03917e-05 2.718 ||| 0-0 ||| 33 45954 +a ||| to incur some losses ||| 0.125 0.270828 2.17609e-05 5.92783e-14 2.718 ||| 0-0 ||| 8 45954 +a ||| to incur some ||| 0.125 0.270828 2.17609e-05 1.51996e-09 2.718 ||| 0-0 ||| 8 45954 +a ||| to incur ||| 0.0833333 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 12 45954 +a ||| to innocent ||| 1 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to insist ||| 0.0344828 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 29 45954 +a ||| to instructors ||| 1 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to international ||| 0.125 0.270828 2.17609e-05 8.07833e-05 2.718 ||| 0-0 ||| 8 45954 +a ||| to invite ||| 0.0769231 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 13 45954 +a ||| to involve ||| 0.133333 0.270828 4.35218e-05 1.91157e-05 2.718 ||| 0-0 ||| 15 45954 +a ||| to is ||| 0.5 0.270828 2.17609e-05 0.00539507 2.718 ||| 0-0 ||| 2 45954 +a ||| to it ||| 0.0328947 0.270828 0.000108804 0.00871547 2.718 ||| 0-0 ||| 152 45954 +a ||| to its emergence ||| 1 0.270828 2.17609e-05 3.38237e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to its ||| 0.0037594 0.270828 4.35218e-05 0.000650456 2.718 ||| 0-0 ||| 532 45954 +a ||| to itself ||| 0.133333 0.270828 4.35218e-05 0.000235967 2.718 ||| 0-0 ||| 15 45954 +a ||| to join -- ||| 0.5 0.270828 2.17609e-05 9.60868e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| to join ||| 0.017341 0.260641 6.52827e-05 0.000533013 2.718 ||| 0-0 0-1 ||| 173 45954 +a ||| to judgment ||| 0.333333 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 3 45954 +a ||| to jump on the ||| 1 0.0963759 2.17609e-05 5.125e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| to jump on ||| 1 0.0963759 2.17609e-05 9.64622e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| to jump ||| 0.5 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| to junior ||| 1 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| to just under ||| 1 0.270828 2.17609e-05 1.7837e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| to just ||| 0.0285714 0.270828 2.17609e-05 0.000361365 2.718 ||| 0-0 ||| 35 45954 +a ||| to keep ||| 0.00488998 0.270828 4.35218e-05 7.65281e-05 2.718 ||| 0-0 ||| 409 45954 +a ||| to know ||| 0.0108696 0.270828 2.17609e-05 6.16349e-05 2.718 ||| 0-0 ||| 92 45954 +a ||| to lead -- or really did lead ||| 1 0.270828 2.17609e-05 2.46601e-19 2.718 ||| 0-0 ||| 1 45954 +a ||| to lead -- or really did ||| 1 0.270828 2.17609e-05 4.74689e-16 2.718 ||| 0-0 ||| 1 45954 +a ||| to lead -- or really ||| 1 0.270828 2.17609e-05 2.95922e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| to lead -- or ||| 1 0.270828 2.17609e-05 1.19904e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| to lead -- ||| 1 0.270828 2.17609e-05 8.54745e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| to lead ||| 0.0208333 0.270828 6.52827e-05 0.000170044 2.718 ||| 0-0 ||| 144 45954 +a ||| to leave ||| 0.03 0.270828 6.52827e-05 5.31573e-05 2.718 ||| 0-0 ||| 100 45954 +a ||| to legitimize ||| 0.0588235 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 17 45954 +a ||| to lend itself to ||| 1 0.270828 2.17609e-05 8.85657e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| to less in ||| 0.333333 0.270828 2.17609e-05 1.82921e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| to less ||| 0.0277778 0.270828 2.17609e-05 0.000119047 2.718 ||| 0-0 ||| 36 45954 +a ||| to level ||| 0.0666667 0.270828 2.17609e-05 7.44005e-05 2.718 ||| 0-0 ||| 15 45954 +a ||| to life ||| 0.037037 0.270828 2.17609e-05 7.22729e-05 2.718 ||| 0-0 ||| 27 45954 +a ||| to like ||| 0.125 0.270828 2.17609e-05 0.000274231 2.718 ||| 0-0 ||| 8 45954 +a ||| to line up ||| 0.333333 0.270828 2.17609e-05 4.71456e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| to line ||| 0.5 0.270828 2.17609e-05 0.000150929 2.718 ||| 0-0 ||| 2 45954 +a ||| to link ||| 0.0333333 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-0 ||| 30 45954 +a ||| to list them came out ||| 1 0.270828 2.17609e-05 9.18849e-14 2.718 ||| 0-0 ||| 1 45954 +a ||| to list them came ||| 1 0.270828 2.17609e-05 2.07153e-11 2.718 ||| 0-0 ||| 1 45954 +a ||| to list them ||| 1 0.270828 2.17609e-05 4.98444e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to list ||| 0.4 0.270828 4.35218e-05 2.54985e-05 2.718 ||| 0-0 ||| 5 45954 +a ||| to live up to ||| 0.0454545 0.270828 2.17609e-05 2.08158e-08 2.718 ||| 0-3 ||| 22 45954 +a ||| to live ||| 0.00549451 0.270828 2.17609e-05 8.07833e-05 2.718 ||| 0-0 ||| 182 45954 +a ||| to lives ||| 0.333333 0.270828 2.17609e-05 4.89021e-05 2.718 ||| 0-0 ||| 3 45954 +a ||| to long-term ||| 0.0769231 0.270828 2.17609e-05 3.61365e-05 2.718 ||| 0-0 ||| 13 45954 +a ||| to look ||| 0.0128205 0.270828 2.17609e-05 0.000153056 2.718 ||| 0-0 ||| 78 45954 +a ||| to lose when it comes ||| 1 0.270828 2.17609e-05 6.9472e-14 2.718 ||| 0-0 ||| 1 45954 +a ||| to lose when it ||| 1 0.270828 2.17609e-05 2.05721e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to lose when ||| 1 0.270828 2.17609e-05 7.72618e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| to lose ||| 0.0144928 0.270828 2.17609e-05 2.12433e-05 2.718 ||| 0-0 ||| 69 45954 +a ||| to make contributions to ||| 0.333333 0.270828 2.17609e-05 9.25479e-10 2.718 ||| 0-0 ||| 3 45954 +a ||| to make contributions ||| 0.333333 0.270828 2.17609e-05 1.12193e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| to make it ||| 0.025 0.270828 2.17609e-05 1.14896e-05 2.718 ||| 0-0 ||| 40 45954 +a ||| to make ||| 0.00833333 0.270828 0.000152326 0.00043151 2.718 ||| 0-0 ||| 840 45954 +a ||| to making ||| 0.0645161 0.270828 4.35218e-05 0.000153056 2.718 ||| 0-0 ||| 31 45954 +a ||| to manage ||| 0.00581395 0.270828 2.17609e-05 2.54985e-05 2.718 ||| 0-0 ||| 172 45954 +a ||| to manipulate ||| 0.0434783 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-0 ||| 23 45954 +a ||| to me ||| 0.0166667 0.270828 2.17609e-05 4.46469e-05 2.718 ||| 0-0 ||| 60 45954 +a ||| to meet ||| 0.0078125 0.270828 4.35218e-05 6.16349e-05 2.718 ||| 0-0 ||| 256 45954 +a ||| to melt the shackles of these authoritarian ||| 1 0.270828 2.17609e-05 3.95489e-22 2.718 ||| 0-0 ||| 1 45954 +a ||| to melt the shackles of these ||| 1 0.270828 2.17609e-05 1.52111e-17 2.718 ||| 0-0 ||| 1 45954 +a ||| to melt the shackles of ||| 1 0.270828 2.17609e-05 1.98501e-14 2.718 ||| 0-0 ||| 1 45954 +a ||| to melt the shackles ||| 1 0.270828 2.17609e-05 7.34751e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| to melt the ||| 0.5 0.270828 2.17609e-05 1.13039e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| to melt ||| 0.25 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 4 45954 +a ||| to mind ||| 0.0344828 0.270828 2.17609e-05 7.22729e-05 2.718 ||| 0-0 ||| 29 45954 +a ||| to more ||| 0.0106383 0.270828 2.17609e-05 0.000699359 2.718 ||| 0-0 ||| 94 45954 +a ||| to move freely ||| 0.25 0.270828 2.17609e-05 2.48716e-09 2.718 ||| 0-0 ||| 4 45954 +a ||| to move ||| 0.0168539 0.270828 6.52827e-05 7.65281e-05 2.718 ||| 0-0 ||| 178 45954 +a ||| to movement toward ||| 1 0.0996678 2.17609e-05 2.84715e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| to much ||| 0.0769231 0.270828 2.17609e-05 0.000471902 2.718 ||| 0-0 ||| 13 45954 +a ||| to naturally occurring ||| 1 0.270828 2.17609e-05 4.84029e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to naturally ||| 1 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| to nearly ||| 0.0555556 0.270828 2.17609e-05 2.54985e-05 2.718 ||| 0-0 ||| 18 45954 +a ||| to obtain them ||| 1 0.270828 2.17609e-05 2.49542e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to obtain ||| 0.0149254 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-0 ||| 67 45954 +a ||| to offer ||| 0.0285714 0.270828 6.52827e-05 3.18813e-05 2.718 ||| 0-0 ||| 105 45954 +a ||| to one and ||| 0.5 0.270828 2.17609e-05 1.10492e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| to one another ||| 0.0769231 0.270828 2.17609e-05 2.47772e-07 2.718 ||| 0-0 ||| 13 45954 +a ||| to one ||| 0.0454545 0.270828 0.000108804 0.00131584 2.718 ||| 0-0 ||| 110 45954 +a ||| to only ||| 0.037037 0.270828 2.17609e-05 0.000354982 2.718 ||| 0-0 ||| 27 45954 +a ||| to oppose ||| 0.03125 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 32 45954 +a ||| to opt ||| 0.0833333 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-0 ||| 12 45954 +a ||| to other ||| 0.00558659 0.270828 2.17609e-05 0.000384768 2.718 ||| 0-0 ||| 179 45954 +a ||| to others ||| 0.0119048 0.270828 2.17609e-05 3.82641e-05 2.718 ||| 0-0 ||| 84 45954 +a ||| to otherwise inaccessible ||| 1 0.270828 2.17609e-05 2.90205e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to otherwise ||| 1 0.270828 4.35218e-05 4.46469e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| to our understanding of ||| 1 0.270828 2.17609e-05 4.22814e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to our understanding ||| 1 0.270828 2.17609e-05 1.56504e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to our ||| 0.0165289 0.270828 4.35218e-05 0.000172172 2.718 ||| 0-0 ||| 121 45954 +a ||| to over ||| 0.0588235 0.270828 2.17609e-05 0.000227457 2.718 ||| 0-0 ||| 17 45954 +a ||| to overthrow ||| 0.0714286 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 14 45954 +a ||| to paraphrase ||| 0.04 0.387097 2.17609e-05 1.16806e-05 2.718 ||| 0-1 ||| 25 45954 +a ||| to pass ||| 0.0638298 0.270828 6.52827e-05 4.03917e-05 2.718 ||| 0-0 ||| 47 45954 +a ||| to pay ||| 0.00377358 0.270828 2.17609e-05 7.44005e-05 2.718 ||| 0-0 ||| 265 45954 +a ||| to persist ||| 0.1 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 10 45954 +a ||| to pick up ||| 0.0625 0.270828 2.17609e-05 7.96496e-08 2.718 ||| 0-0 ||| 16 45954 +a ||| to pick ||| 0.037037 0.270828 2.17609e-05 2.54985e-05 2.718 ||| 0-0 ||| 27 45954 +a ||| to place ||| 0.037037 0.270828 2.17609e-05 0.00041665 2.718 ||| 0-0 ||| 27 45954 +a ||| to play ||| 0.00546448 0.270828 2.17609e-05 8.07833e-05 2.718 ||| 0-0 ||| 183 45954 +a ||| to point to and name ||| 1 0.270828 2.17609e-05 1.57819e-11 2.718 ||| 0-0 ||| 1 45954 +a ||| to point to and ||| 1 0.270828 2.17609e-05 1.1044e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| to point to ||| 0.142857 0.270828 2.17609e-05 1.31522e-05 2.718 ||| 0-0 ||| 7 45954 +a ||| to point ||| 0.111111 0.270828 2.17609e-05 0.000159439 2.718 ||| 0-0 ||| 9 45954 +a ||| to portable ||| 1 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to pour ||| 0.111111 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 9 45954 +a ||| to prepare ||| 0.0151515 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 66 45954 +a ||| to prison ||| 0.0769231 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 13 45954 +a ||| to privatize ||| 0.0666667 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 15 45954 +a ||| to produce bubbles . ||| 1 0.270828 2.17609e-05 1.65226e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| to produce bubbles ||| 1 0.270828 2.17609e-05 3.59352e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to produce more ||| 0.166667 0.270828 2.17609e-05 1.18122e-07 2.718 ||| 0-0 ||| 6 45954 +a ||| to produce ||| 0.0106383 0.270828 4.35218e-05 5.52849e-05 2.718 ||| 0-0 ||| 188 45954 +a ||| to prominence ||| 0.2 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 5 45954 +a ||| to pronounce , ||| 1 0.270828 2.17609e-05 4.34606e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| to pronounce ||| 0.333333 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| to protect ||| 0.00276243 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-0 ||| 362 45954 +a ||| to provide North Korean ||| 1 0.270828 2.17609e-05 7.91195e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| to provide North ||| 1 0.270828 2.17609e-05 2.43445e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to provide ||| 0.0145773 0.270828 0.000108804 0.000133908 2.718 ||| 0-0 ||| 343 45954 +a ||| to proxy ||| 0.5 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| to psychiatry ||| 1 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to put in ||| 0.25 0.270828 2.17609e-05 6.07507e-06 2.718 ||| 0-0 ||| 4 45954 +a ||| to put ||| 0.0164835 0.270828 6.52827e-05 0.000395374 2.718 ||| 0-0 ||| 182 45954 +a ||| to putting their ||| 1 0.270828 2.17609e-05 3.80764e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to putting ||| 0.333333 0.270828 2.17609e-05 2.12433e-05 2.718 ||| 0-0 ||| 3 45954 +a ||| to race ||| 0.2 0.270828 2.17609e-05 1.70208e-05 2.718 ||| 0-0 ||| 5 45954 +a ||| to reach higher ||| 1 0.270828 2.17609e-05 1.1592e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to reach out to ||| 0.0714286 0.270828 2.17609e-05 2.17734e-08 2.718 ||| 0-3 ||| 14 45954 +a ||| to reach out ||| 0.047619 0.270828 2.17609e-05 2.63951e-07 2.718 ||| 0-0 ||| 21 45954 +a ||| to reach ||| 0.0394737 0.270828 0.000130565 5.95073e-05 2.718 ||| 0-0 ||| 152 45954 +a ||| to realize ||| 0.00952381 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-0 ||| 105 45954 +a ||| to reassess ||| 0.25 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 4 45954 +a ||| to recall ||| 0.0416667 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-0 ||| 24 45954 +a ||| to receive ||| 0.0217391 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 46 45954 +a ||| to redefine ||| 0.0714286 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 14 45954 +a ||| to refuse to hold ||| 0.333333 0.270828 2.17609e-05 2.94061e-10 2.718 ||| 0-2 ||| 3 45954 +a ||| to refuse to ||| 0.1 0.270828 2.17609e-05 5.26518e-07 2.718 ||| 0-2 ||| 10 45954 +a ||| to regard ||| 0.0322581 0.270828 2.17609e-05 4.03917e-05 2.718 ||| 0-0 ||| 31 45954 +a ||| to release ||| 0.0416667 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-0 ||| 24 45954 +a ||| to rely ||| 0.0196078 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-0 ||| 51 45954 +a ||| to renaissance ||| 1 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to reports on ||| 1 0.183602 2.17609e-05 4.91284e-07 2.718 ||| 0-0 0-2 ||| 1 45954 +a ||| to require ||| 0.0645161 0.270828 4.35218e-05 4.67745e-05 2.718 ||| 0-0 ||| 31 45954 +a ||| to resist ||| 0.0166667 0.260414 2.17609e-05 0.000235607 2.718 ||| 0-0 0-1 ||| 60 45954 +a ||| to resolve the ||| 0.0277778 0.270828 2.17609e-05 1.01561e-06 2.718 ||| 0-0 ||| 36 45954 +a ||| to resolve ||| 0.0194175 0.270828 4.35218e-05 1.91157e-05 2.718 ||| 0-0 ||| 103 45954 +a ||| to resort ||| 0.0555556 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 18 45954 +a ||| to respond to ||| 0.0172414 0.270828 2.17609e-05 1.22854e-06 2.718 ||| 0-0 ||| 58 45954 +a ||| to respond ||| 0.0103093 0.270828 2.17609e-05 1.48932e-05 2.718 ||| 0-0 ||| 97 45954 +a ||| to result ||| 0.0625 0.270828 2.17609e-05 0.000136035 2.718 ||| 0-0 ||| 16 45954 +a ||| to return to ||| 0.0125 0.270828 2.17609e-05 5.7863e-06 2.718 ||| 0-0 ||| 80 45954 +a ||| to return ||| 0.00909091 0.270828 2.17609e-05 7.01453e-05 2.718 ||| 0-0 ||| 110 45954 +a ||| to revive ||| 0.0192308 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 52 45954 +a ||| to ride out ||| 0.333333 0.270828 2.17609e-05 5.66231e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| to ride ||| 0.142857 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-0 ||| 7 45954 +a ||| to roost , ||| 0.333333 0.270828 2.17609e-05 8.69212e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| to roost ||| 0.25 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 4 45954 +a ||| to rule ||| 0.0263158 0.270828 2.17609e-05 8.07833e-05 2.718 ||| 0-0 ||| 38 45954 +a ||| to run for ||| 0.0666667 0.270828 2.17609e-05 6.57698e-07 2.718 ||| 0-0 ||| 15 45954 +a ||| to run ||| 0.0327869 0.270828 8.70436e-05 0.000138163 2.718 ||| 0-0 ||| 122 45954 +a ||| to say ||| 0.00434783 0.270828 2.17609e-05 0.00013178 2.718 ||| 0-0 ||| 230 45954 +a ||| to saying , ||| 0.333333 0.270828 2.17609e-05 5.64319e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| to saying ||| 0.2 0.270828 2.17609e-05 2.76261e-05 2.718 ||| 0-0 ||| 5 45954 +a ||| to scale up ||| 0.2 0.270828 2.17609e-05 8.62956e-08 2.718 ||| 0-0 ||| 5 45954 +a ||| to scale ||| 0.0833333 0.270828 2.17609e-05 2.76261e-05 2.718 ||| 0-0 ||| 12 45954 +a ||| to score badly ||| 1 0.270828 2.17609e-05 7.73595e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to score ||| 0.111111 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-0 ||| 9 45954 +a ||| to secure ||| 0.0243902 0.270828 8.70436e-05 3.18813e-05 2.718 ||| 0-0 ||| 164 45954 +a ||| to see ||| 0.00722892 0.270828 6.52827e-05 0.000201958 2.718 ||| 0-0 ||| 415 45954 +a ||| to seek further ||| 0.333333 0.270828 2.17609e-05 2.00129e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| to seek one ||| 1 0.270828 2.17609e-05 2.47772e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| to seek ||| 0.0165289 0.270828 4.35218e-05 6.16349e-05 2.718 ||| 0-0 ||| 121 45954 +a ||| to seem ||| 0.166667 0.270828 4.35218e-05 8.29109e-05 2.718 ||| 0-0 ||| 12 45954 +a ||| to senior ||| 0.25 0.270828 2.17609e-05 2.76261e-05 2.718 ||| 0-0 ||| 4 45954 +a ||| to serve ||| 0.0333333 0.270828 6.52827e-05 6.80177e-05 2.718 ||| 0-0 ||| 90 45954 +a ||| to serving ||| 0.4 0.270828 4.35218e-05 2.76261e-05 2.718 ||| 0-0 ||| 5 45954 +a ||| to set ||| 0.0111111 0.270828 2.17609e-05 0.000276359 2.718 ||| 0-0 ||| 90 45954 +a ||| to severe ||| 0.142857 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-0 ||| 7 45954 +a ||| to share ||| 0.0120482 0.270828 2.17609e-05 5.31573e-05 2.718 ||| 0-0 ||| 83 45954 +a ||| to shift ||| 0.0166667 0.270828 2.17609e-05 5.73797e-05 2.718 ||| 0-0 ||| 60 45954 +a ||| to show ||| 0.00943396 0.270828 2.17609e-05 6.58901e-05 2.718 ||| 0-0 ||| 106 45954 +a ||| to sign off ||| 1 0.270828 2.17609e-05 3.90932e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to sign up ||| 0.1 0.270828 2.17609e-05 1.06234e-07 2.718 ||| 0-0 ||| 10 45954 +a ||| to sign ||| 0.0571429 0.270828 4.35218e-05 3.40089e-05 2.718 ||| 0-0 ||| 35 45954 +a ||| to signing in ||| 1 0.270828 2.17609e-05 3.26914e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to signing ||| 1 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to so ||| 0.2 0.270828 2.17609e-05 0.000737623 2.718 ||| 0-0 ||| 5 45954 +a ||| to somewhere in ||| 0.5 0.270828 2.17609e-05 1.96149e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| to somewhere ||| 0.5 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| to speak out ||| 0.0714286 0.270828 2.17609e-05 1.31975e-07 2.718 ||| 0-0 ||| 14 45954 +a ||| to speak ||| 0.025 0.270828 6.52827e-05 2.97537e-05 2.718 ||| 0-0 ||| 120 45954 +a ||| to spend ||| 0.00813008 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-0 ||| 123 45954 +a ||| to squeeze ||| 0.0909091 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 11 45954 +a ||| to stand out ||| 0.5 0.270828 2.17609e-05 4.148e-07 2.718 ||| 0-0 ||| 2 45954 +a ||| to stand ||| 0.0377358 0.270828 4.35218e-05 9.35162e-05 2.718 ||| 0-0 ||| 53 45954 +a ||| to start ||| 0.00724638 0.270828 2.17609e-05 5.73797e-05 2.718 ||| 0-0 ||| 138 45954 +a ||| to step aside ||| 0.5 0.270828 2.17609e-05 8.91848e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| to step down ||| 0.1 0.270828 2.17609e-05 1.18041e-07 2.718 ||| 0-0 ||| 10 45954 +a ||| to step up ||| 0.0588235 0.270828 2.17609e-05 2.52343e-07 2.718 ||| 0-0 ||| 17 45954 +a ||| to step ||| 0.189189 0.270828 0.000152326 8.07833e-05 2.718 ||| 0-0 ||| 37 45954 +a ||| to stop ||| 0.00411523 0.270828 2.17609e-05 5.31573e-05 2.718 ||| 0-0 ||| 243 45954 +a ||| to strengthen ||| 0.00591716 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-0 ||| 169 45954 +a ||| to strongly ||| 1 0.270828 2.17609e-05 3.40089e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| to structure ||| 0.125 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 8 45954 +a ||| to such an ||| 0.0909091 0.270828 2.17609e-05 2.39867e-06 2.718 ||| 0-0 ||| 11 45954 +a ||| to such ||| 0.0322581 0.270828 6.52827e-05 0.000692976 2.718 ||| 0-0 ||| 93 45954 +a ||| to suffer ||| 0.0625 0.270828 4.35218e-05 2.12433e-05 2.718 ||| 0-0 ||| 32 45954 +a ||| to suit ||| 0.3 0.270828 6.52827e-05 2.33709e-05 2.718 ||| 0-0 ||| 10 45954 +a ||| to support ||| 0.0078534 0.270828 6.52827e-05 9.35162e-05 2.718 ||| 0-0 ||| 382 45954 +a ||| to surge ahead ||| 1 0.270828 2.17609e-05 3.42629e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| to surge ||| 0.5 0.270828 2.17609e-05 1.70208e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| to survive ||| 0.0163934 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-0 ||| 61 45954 +a ||| to sustain ||| 0.00854701 0.270828 2.17609e-05 1.27656e-05 2.718 ||| 0-0 ||| 117 45954 +a ||| to take advantage ||| 0.0285714 0.270828 2.17609e-05 1.31537e-08 2.718 ||| 0-0 ||| 35 45954 +a ||| to take notice ||| 0.5 0.270828 2.17609e-05 2.06412e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| to take particular care ||| 0.166667 0.270828 2.17609e-05 4.43843e-12 2.718 ||| 0-0 ||| 6 45954 +a ||| to take particular ||| 0.166667 0.270828 2.17609e-05 2.62784e-08 2.718 ||| 0-0 ||| 6 45954 +a ||| to take place ||| 0.0833333 0.270828 2.17609e-05 3.67985e-07 2.718 ||| 0-0 ||| 12 45954 +a ||| to take ||| 0.0208333 0.270828 0.000261131 0.000289092 2.718 ||| 0-0 ||| 576 45954 +a ||| to talk to ||| 0.0666667 0.270828 2.17609e-05 2.62989e-06 2.718 ||| 0-2 ||| 15 45954 +a ||| to tell ||| 0.0136986 0.270828 2.17609e-05 4.03917e-05 2.718 ||| 0-0 ||| 73 45954 +a ||| to tend ||| 1 0.270828 2.17609e-05 2.54985e-05 2.718 ||| 0-0 ||| 1 45954 +a ||| to that of ||| 0.0392157 0.143638 4.35218e-05 5.76833e-05 2.718 ||| 0-0 0-2 ||| 51 45954 +a ||| to that struggle ||| 1 0.270828 2.17609e-05 1.39057e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| to that ||| 0.00549451 0.270828 2.17609e-05 0.00267416 2.718 ||| 0-0 ||| 182 45954 +a ||| to the Court ||| 0.142857 0.270828 2.17609e-05 6.78231e-07 2.718 ||| 0-0 ||| 7 45954 +a ||| to the business ||| 0.5 0.270828 2.17609e-05 4.40503e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| to the creation of ||| 0.0714286 0.270828 2.17609e-05 2.44309e-08 2.718 ||| 0-0 ||| 14 45954 +a ||| to the creation ||| 0.05 0.270828 2.17609e-05 9.04308e-07 2.718 ||| 0-0 ||| 20 45954 +a ||| to the drawing board , ||| 0.5 0.270828 2.17609e-05 2.92025e-11 2.718 ||| 0-0 ||| 2 45954 +a ||| to the drawing board ||| 0.5 0.270828 2.17609e-05 1.4296e-10 2.718 ||| 0-0 ||| 2 45954 +a ||| to the drawing ||| 0.5 0.270828 2.17609e-05 1.69384e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| to the fact ||| 0.025 0.270828 2.17609e-05 1.14065e-05 2.718 ||| 0-0 ||| 40 45954 +a ||| to the idea ||| 0.0222222 0.270828 2.17609e-05 1.80688e-06 2.718 ||| 0-0 ||| 45 45954 +a ||| to the interests of ||| 0.0769231 0.270828 2.17609e-05 4.88148e-08 2.718 ||| 0-0 ||| 13 45954 +a ||| to the interests ||| 0.0588235 0.270828 2.17609e-05 1.80688e-06 2.718 ||| 0-0 ||| 17 45954 +a ||| to the test of ||| 1 0.270828 2.17609e-05 3.04916e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to the test ||| 0.1 0.270828 2.17609e-05 1.12865e-06 2.718 ||| 0-0 ||| 10 45954 +a ||| to the ||| 0.0100049 0.270828 0.00178439 0.0173905 2.718 ||| 0-0 ||| 8196 45954 +a ||| to their constituents ||| 0.25 0.270828 2.17609e-05 3.81351e-09 2.718 ||| 0-0 ||| 4 45954 +a ||| to their coverage ||| 0.333333 0.270828 2.17609e-05 1.5254e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| to their ||| 0.00528169 0.270828 6.52827e-05 0.000586694 2.718 ||| 0-0 ||| 568 45954 +a ||| to them ||| 0.0232558 0.270828 6.52827e-05 0.000639851 2.718 ||| 0-0 ||| 129 45954 +a ||| to think of pain ||| 1 0.270828 2.17609e-05 1.92401e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to think of ||| 0.0909091 0.270828 6.52827e-05 2.46985e-06 2.718 ||| 0-0 ||| 33 45954 +a ||| to think ||| 0.0266667 0.270828 8.70436e-05 9.14213e-05 2.718 ||| 0-0 ||| 150 45954 +a ||| to those ||| 0.00568182 0.270828 2.17609e-05 0.000163694 2.718 ||| 0-0 ||| 176 45954 +a ||| to time ||| 0.0384615 0.270828 2.17609e-05 0.000306113 2.718 ||| 0-0 ||| 26 45954 +a ||| to too ||| 1 0.270828 2.17609e-05 0.000327356 2.718 ||| 0-0 ||| 1 45954 +a ||| to total ||| 0.5 0.270828 2.17609e-05 5.31573e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| to transmit it to someone ||| 1 0.270828 2.17609e-05 4.24786e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| to transmit it to ||| 1 0.270828 2.17609e-05 4.67311e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| to transmit it ||| 1 0.270828 2.17609e-05 5.66505e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to transmit ||| 0.5 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-0 ||| 2 45954 +a ||| to treat ||| 0.03125 0.254817 4.35218e-05 0.000185396 2.718 ||| 0-0 0-1 ||| 64 45954 +a ||| to trouble us ||| 0.166667 0.270828 2.17609e-05 1.33565e-08 2.718 ||| 0-0 ||| 6 45954 +a ||| to trouble ||| 0.125 0.270828 2.17609e-05 2.33709e-05 2.718 ||| 0-0 ||| 8 45954 +a ||| to turn in ||| 0.142857 0.0437285 2.17609e-05 1.70395e-06 2.718 ||| 0-2 ||| 7 45954 +a ||| to turn to for ||| 1 0.270828 2.17609e-05 6.76082e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to turn to the ||| 0.2 0.270828 2.17609e-05 7.54573e-07 2.718 ||| 0-0 ||| 5 45954 +a ||| to turn to ||| 0.105263 0.270828 4.35218e-05 1.42025e-05 2.718 ||| 0-0 ||| 19 45954 +a ||| to turn ||| 0.0147059 0.270828 4.35218e-05 0.000172172 2.718 ||| 0-0 ||| 136 45954 +a ||| to undermine ||| 0.0128205 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-0 ||| 78 45954 +a ||| to unite the country . ||| 1 0.270828 2.17609e-05 1.20497e-12 2.718 ||| 0-0 ||| 1 45954 +a ||| to unite the country ||| 1 0.270828 2.17609e-05 2.62069e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to unite the ||| 0.2 0.270828 2.17609e-05 3.39116e-07 2.718 ||| 0-0 ||| 5 45954 +a ||| to unite ||| 0.03125 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 32 45954 +a ||| to us ||| 0.0294118 0.270828 2.17609e-05 0.000187065 2.718 ||| 0-0 ||| 34 45954 +a ||| to use and remix . ||| 0.25 0.270828 2.17609e-05 2.88081e-14 2.718 ||| 0-0 ||| 4 45954 +a ||| to use and remix ||| 0.25 0.270828 2.17609e-05 6.26549e-12 2.718 ||| 0-0 ||| 4 45954 +a ||| to use and ||| 0.2 0.270828 2.17609e-05 9.63922e-07 2.718 ||| 0-0 ||| 5 45954 +a ||| to use in ||| 0.5 0.157278 2.17609e-05 4.50798e-06 2.718 ||| 0-0 0-2 ||| 2 45954 +a ||| to use ||| 0.0027933 0.270828 2.17609e-05 0.000114792 2.718 ||| 0-0 ||| 358 45954 +a ||| to vacuum up ||| 0.333333 0.270828 2.17609e-05 1.3292e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| to vacuum ||| 0.333333 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| to venture ||| 0.25 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 4 45954 +a ||| to view ||| 0.0192308 0.270828 2.17609e-05 8.29109e-05 2.718 ||| 0-0 ||| 52 45954 +a ||| to visit ||| 0.0285714 0.270828 2.17609e-05 8.5104e-06 2.718 ||| 0-0 ||| 35 45954 +a ||| to walk ||| 0.0714286 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-0 ||| 14 45954 +a ||| to ward ||| 0.2 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-0 ||| 5 45954 +a ||| to what was ||| 0.333333 0.270828 2.17609e-05 1.22122e-06 2.718 ||| 0-0 ||| 3 45954 +a ||| to what ||| 0.0127389 0.270828 4.35218e-05 0.000323101 2.718 ||| 0-0 ||| 157 45954 +a ||| to where ||| 0.0357143 0.270828 2.17609e-05 8.29109e-05 2.718 ||| 0-0 ||| 28 45954 +a ||| to widespread hand-washing ||| 1 0.270828 2.17609e-05 2.07228e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| to widespread ||| 0.25 0.270828 2.17609e-05 3.18813e-05 2.718 ||| 0-0 ||| 4 45954 +a ||| to win against ||| 1 0.270828 2.17609e-05 1.29218e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| to win ||| 0.00862069 0.270828 2.17609e-05 3.82641e-05 2.718 ||| 0-0 ||| 116 45954 +a ||| to work ||| 0.00699301 0.270828 4.35218e-05 0.000197703 2.718 ||| 0-0 ||| 286 45954 +a ||| to yield arrests ||| 0.166667 0.270828 2.17609e-05 2.48504e-10 2.718 ||| 0-0 ||| 6 45954 +a ||| to yield ||| 0.0357143 0.270828 2.17609e-05 1.91157e-05 2.718 ||| 0-0 ||| 28 45954 +a ||| to you -- ||| 1 0.270828 2.17609e-05 2.68204e-06 2.718 ||| 0-0 ||| 1 45954 +a ||| to you ||| 0.0555556 0.270828 2.17609e-05 0.000533569 2.718 ||| 0-0 ||| 18 45954 +a ||| to your fellow man ||| 1 0.270828 2.17609e-05 3.01045e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| to your fellow ||| 1 0.270828 2.17609e-05 1.93101e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| to your ||| 0.0833333 0.270828 2.17609e-05 2.97537e-05 2.718 ||| 0-0 ||| 12 45954 +a ||| to ||| 0.305876 0.270828 0.556839 0.327323 2.718 ||| 0-0 ||| 83658 45954 +a ||| toe ||| 0.0909091 0.285714 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 11 45954 +a ||| together again ||| 0.5 0.0930362 2.17609e-05 9.59879e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| together deal ||| 0.333333 0.0436548 2.17609e-05 1.91138e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| together in ||| 0.030303 0.0437285 2.17609e-05 1.91288e-05 2.718 ||| 0-1 ||| 33 45954 +a ||| together ||| 0.017991 0.0436548 0.000261131 0.0005074 2.718 ||| 0-0 ||| 667 45954 +a ||| told drug ||| 0.5 0.150327 2.17609e-05 3.17538e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| told him ||| 0.125 0.150327 2.17609e-05 5.65788e-07 2.718 ||| 0-0 ||| 8 45954 +a ||| told ||| 0.0186047 0.150327 8.70436e-05 0.0008142 2.718 ||| 0-0 ||| 215 45954 +a ||| tolerance exists in others . ||| 1 0.0437285 2.17609e-05 2.6713e-17 2.718 ||| 0-2 ||| 1 45954 +a ||| tolerance exists in others ||| 1 0.0437285 2.17609e-05 5.80983e-15 2.718 ||| 0-2 ||| 1 45954 +a ||| tolerance exists in ||| 1 0.0437285 2.17609e-05 4.96992e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| toll on ||| 0.125 0.0963759 2.17609e-05 8.35269e-07 2.718 ||| 0-1 ||| 8 45954 +a ||| too big to ||| 0.0163934 0.270828 2.17609e-05 7.22802e-08 2.718 ||| 0-2 ||| 61 45954 +a ||| took stock and ||| 1 0.0003921 2.17609e-05 2.31124e-11 2.718 ||| 0-2 ||| 1 45954 +a ||| took ||| 0.00936768 0.013624 8.70436e-05 0.000118 2.718 ||| 0-0 ||| 427 45954 +a ||| top officials ||| 0.142857 0.0023566 2.17609e-05 1.26449e-08 2.718 ||| 0-1 ||| 7 45954 +a ||| touch off new ||| 0.125 0.0698758 2.17609e-05 2.53306e-11 2.718 ||| 0-1 ||| 8 45954 +a ||| touch off ||| 0.111111 0.0698758 2.17609e-05 3.4515e-08 2.718 ||| 0-1 ||| 9 45954 +a ||| touch with ||| 0.08 0.0330797 4.35218e-05 2.73439e-07 2.718 ||| 0-1 ||| 25 45954 +a ||| toward addressing ||| 0.333333 0.0996678 2.17609e-05 3.4515e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| toward allowing ||| 0.142857 0.0996678 2.17609e-05 4.8321e-08 2.718 ||| 0-0 ||| 7 45954 +a ||| toward hopeless ||| 1 0.0996678 2.17609e-05 6.903e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| toward ||| 0.0545229 0.0996678 0.000957479 0.001062 2.718 ||| 0-0 ||| 807 45954 +a ||| towards a ||| 0.0136986 0.102013 2.17609e-05 3.60801e-05 2.718 ||| 0-0 ||| 73 45954 +a ||| towards ||| 0.0417266 0.102013 0.000631066 0.0008968 2.718 ||| 0-0 ||| 695 45954 +a ||| trade ||| 0.000411353 0.0010977 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 2431 45954 +a ||| train ||| 0.0133333 0.137255 2.17609e-05 0.0001652 2.718 ||| 0-0 ||| 75 45954 +a ||| trained ||| 0.025974 0.0804598 4.35218e-05 8.26e-05 2.718 ||| 0-0 ||| 77 45954 +a ||| training . ||| 0.1 0.0076628 2.17609e-05 1.0851e-07 2.718 ||| 0-0 ||| 10 45954 +a ||| training ||| 0.00260417 0.0076628 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 384 45954 +a ||| transmission ||| 0.00943396 0.0289855 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 106 45954 +a ||| transmitted to ||| 0.166667 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| treat ||| 0.016 0.238806 4.35218e-05 0.0005664 2.718 ||| 0-0 ||| 125 45954 +a ||| treated ||| 0.0102564 0.0901961 4.35218e-05 0.0002714 2.718 ||| 0-0 ||| 195 45954 +a ||| treating the ||| 0.0769231 0.173554 2.17609e-05 1.31655e-05 2.718 ||| 0-0 ||| 13 45954 +a ||| treating ||| 0.02 0.173554 4.35218e-05 0.0002478 2.718 ||| 0-0 ||| 100 45954 +a ||| treatment of ||| 0.0133333 0.0164489 2.17609e-05 1.12167e-06 2.718 ||| 0-1 ||| 75 45954 +a ||| trip to ||| 0.0263158 0.270828 2.17609e-05 6.3828e-06 2.718 ||| 0-1 ||| 38 45954 +a ||| troubled ||| 0.0116279 0.0392157 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 86 45954 +a ||| true of ||| 0.01 0.0164489 2.17609e-05 3.78133e-06 2.718 ||| 0-1 ||| 100 45954 +a ||| trust in the near automatic mechanisms that ||| 1 0.0437285 2.17609e-05 2.18706e-24 2.718 ||| 0-1 ||| 1 45954 +a ||| trust in the near automatic mechanisms ||| 1 0.0437285 2.17609e-05 2.67701e-22 2.718 ||| 0-1 ||| 1 45954 +a ||| trust in the near automatic ||| 1 0.0437285 2.17609e-05 4.11847e-17 2.718 ||| 0-1 ||| 1 45954 +a ||| trust in the near ||| 1 0.0437285 2.17609e-05 6.33611e-12 2.718 ||| 0-1 ||| 1 45954 +a ||| trust in the ||| 0.0588235 0.0437285 2.17609e-05 1.21848e-07 2.718 ||| 0-1 ||| 17 45954 +a ||| trust in ||| 0.0175439 0.0437285 2.17609e-05 2.29341e-06 2.718 ||| 0-1 ||| 57 45954 +a ||| truthful ||| 0.125 0.222222 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 8 45954 +a ||| try to ||| 0.00510204 0.270828 2.17609e-05 4.03917e-05 2.718 ||| 0-1 ||| 196 45954 +a ||| trying to treat ||| 1 0.254817 2.17609e-05 2.40829e-08 2.718 ||| 0-1 0-2 ||| 1 45954 +a ||| tu licencia con dios , ||| 1 1 2.17609e-05 6.61954e-22 2.718 ||| 0-3 ||| 1 45954 +a ||| tu licencia con dios ||| 1 1 2.17609e-05 3.24057e-21 2.718 ||| 0-3 ||| 1 45954 +a ||| turn in ||| 0.125 0.0437285 2.17609e-05 2.06564e-05 2.718 ||| 0-1 ||| 8 45954 +a ||| turn inward ||| 0.166667 0.027193 2.17609e-05 1.18885e-08 2.718 ||| 0-0 ||| 6 45954 +a ||| turn out in ||| 0.333333 0.0437285 2.17609e-05 9.16237e-08 2.718 ||| 0-2 ||| 3 45954 +a ||| turn out to ||| 0.0652174 0.270828 6.52827e-05 7.63686e-07 2.718 ||| 0-2 ||| 46 45954 +a ||| turn out ||| 0.0192308 0.0840356 2.17609e-05 2.16617e-06 2.718 ||| 0-1 ||| 52 45954 +a ||| turn the tables on ||| 0.333333 0.0963759 2.17609e-05 9.33703e-12 2.718 ||| 0-3 ||| 3 45954 +a ||| turn to play ||| 1 0.270828 2.17609e-05 4.2492e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| turn to ||| 0.0212766 0.270828 2.17609e-05 0.000172172 2.718 ||| 0-1 ||| 47 45954 +a ||| turn toward ||| 0.2 0.0996678 2.17609e-05 5.58612e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| turn ||| 0.0030581 0.027193 4.35218e-05 0.0003658 2.718 ||| 0-0 ||| 654 45954 +a ||| turned around ||| 0.0909091 0.0474763 2.17609e-05 2.76663e-07 2.718 ||| 0-1 ||| 11 45954 +a ||| turned over to ||| 0.125 0.270828 2.17609e-05 5.61363e-08 2.718 ||| 0-2 ||| 8 45954 +a ||| turned to ||| 0.0238095 0.270828 2.17609e-05 8.07833e-05 2.718 ||| 0-1 ||| 42 45954 +a ||| turned ||| 0.00373134 0.0504202 2.17609e-05 0.000354 2.718 ||| 0-0 ||| 268 45954 +a ||| turning around in ||| 1 0.0437285 2.17609e-05 2.549e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| turning ||| 0.00531915 0.0483271 2.17609e-05 0.0001534 2.718 ||| 0-0 ||| 188 45954 +a ||| ultimately sit in judgment ||| 0.5 0.0437285 2.17609e-05 2.53054e-14 2.718 ||| 0-2 ||| 2 45954 +a ||| ultimately sit in ||| 0.5 0.0437285 2.17609e-05 5.56162e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| ultimately ||| 0.00445434 0.0251572 4.35218e-05 0.0002832 2.718 ||| 0-0 ||| 449 45954 +a ||| unable to make ||| 0.142857 0.270828 2.17609e-05 2.24385e-08 2.718 ||| 0-1 ||| 7 45954 +a ||| unable to ||| 0.0166667 0.270828 6.52827e-05 1.70208e-05 2.718 ||| 0-1 ||| 180 45954 +a ||| uncooperative ||| 0.333333 0.333333 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 3 45954 +a ||| under duress ||| 0.0434783 0.0560876 2.17609e-05 9.4341e-09 2.718 ||| 0-0 ||| 23 45954 +a ||| under the ||| 0.0017331 0.0560876 2.17609e-05 7.71123e-05 2.718 ||| 0-0 ||| 577 45954 +a ||| under to severe ||| 1 0.270828 2.17609e-05 9.43549e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| under to ||| 1 0.270828 2.17609e-05 0.000161567 2.718 ||| 0-1 ||| 1 45954 +a ||| under ||| 0.00825011 0.0560876 0.000413457 0.0014514 2.718 ||| 0-0 ||| 2303 45954 +a ||| underlay ||| 0.166667 0.111111 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 6 45954 +a ||| undermined by ||| 0.0588235 0.0269646 2.17609e-05 1.31619e-07 2.718 ||| 0-1 ||| 17 45954 +a ||| undertake ||| 0.0133333 0.018018 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 75 45954 +a ||| unfolding in front of ||| 0.0357143 0.0437285 2.17609e-05 1.96954e-12 2.718 ||| 0-1 ||| 28 45954 +a ||| unfolding in front ||| 0.0357143 0.0437285 2.17609e-05 7.29023e-11 2.718 ||| 0-1 ||| 28 45954 +a ||| unfolding in ||| 0.0333333 0.0437285 2.17609e-05 1.02104e-06 2.718 ||| 0-1 ||| 30 45954 +a ||| university ||| 0.00448431 0.009434 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 223 45954 +a ||| unless ||| 0.0117878 0.311549 0.000130565 0.0041064 2.718 ||| 0-0 ||| 509 45954 +a ||| unlike ||| 0.00411523 0.464286 6.52827e-05 0.0042952 2.718 ||| 0-0 ||| 729 45954 +a ||| unlikely to emerge ||| 1 0.270828 2.17609e-05 1.65846e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| unlikely to ||| 0.00473934 0.270828 2.17609e-05 1.0638e-05 2.718 ||| 0-1 ||| 211 45954 +a ||| unsecured ||| 0.0714286 0.0714286 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 14 45954 +a ||| until ||| 0.00273473 0.0054012 6.52827e-05 8.26e-05 2.718 ||| 0-0 ||| 1097 45954 +a ||| unwanted test of its claim to be ||| 0.5 0.0164489 2.17609e-05 1.31766e-20 2.718 ||| 0-2 ||| 2 45954 +a ||| unwanted test of its claim to ||| 0.5 0.0164489 2.17609e-05 1.27849e-18 2.718 ||| 0-2 ||| 2 45954 +a ||| unwanted test of its claim ||| 0.5 0.0164489 2.17609e-05 1.54986e-17 2.718 ||| 0-2 ||| 2 45954 +a ||| unwanted test of its ||| 0.5 0.0164489 2.17609e-05 5.42479e-14 2.718 ||| 0-2 ||| 2 45954 +a ||| unwanted test of ||| 0.5 0.0164489 2.17609e-05 2.72987e-11 2.718 ||| 0-2 ||| 2 45954 +a ||| unwilling to ||| 0.0273973 0.270828 4.35218e-05 8.5104e-06 2.718 ||| 0-1 ||| 73 45954 +a ||| unwise to ||| 0.166667 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| up against ||| 0.333333 0.0413907 4.35218e-05 5.52895e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| up and down in response to ||| 0.5 0.270828 2.17609e-05 1.87753e-14 2.718 ||| 0-5 ||| 2 45954 +a ||| up as anything ||| 1 0.0289876 2.17609e-05 4.71703e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| up as ||| 0.181818 0.0289876 4.35218e-05 2.90457e-05 2.718 ||| 0-1 ||| 11 45954 +a ||| up by ||| 0.09375 0.0269646 6.52827e-05 2.1084e-05 2.718 ||| 0-1 ||| 32 45954 +a ||| up exercise ||| 0.5 0.0268991 2.17609e-05 2.48508e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| up for ||| 0.0344828 0.0587253 4.35218e-05 7.39042e-05 2.718 ||| 0-1 ||| 58 45954 +a ||| up in our backyard ||| 0.0833333 0.0437285 2.17609e-05 4.19409e-13 2.718 ||| 0-1 ||| 12 45954 +a ||| up in our ||| 0.0833333 0.0437285 2.17609e-05 6.45245e-08 2.718 ||| 0-1 ||| 12 45954 +a ||| up in ||| 0.0434783 0.0437285 6.52827e-05 0.00012267 2.718 ||| 0-1 ||| 69 45954 +a ||| up on ||| 0.105263 0.0963759 4.35218e-05 8.0281e-05 2.718 ||| 0-1 ||| 19 45954 +a ||| up the bureaucratic ||| 1 0.0268991 2.17609e-05 8.80209e-10 2.718 ||| 0-0 ||| 1 45954 +a ||| up the ||| 0.00793651 0.0268991 2.17609e-05 6.77084e-05 2.718 ||| 0-0 ||| 126 45954 +a ||| up to anything ||| 0.333333 0.270828 2.17609e-05 1.66047e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| up to comparison with America ||| 0.5 0.270828 2.17609e-05 5.99152e-14 2.718 ||| 0-1 ||| 2 45954 +a ||| up to comparison with ||| 0.5 0.270828 2.17609e-05 5.04125e-11 2.718 ||| 0-1 ||| 2 45954 +a ||| up to comparison ||| 0.5 0.270828 2.17609e-05 1.3292e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| up to the ||| 0.0103093 0.270828 2.17609e-05 5.43228e-05 2.718 ||| 0-1 ||| 97 45954 +a ||| up to where ||| 0.333333 0.270828 2.17609e-05 2.58989e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| up to ||| 0.0687831 0.270828 0.000565783 0.00102246 2.718 ||| 0-1 ||| 378 45954 +a ||| up with ||| 0.012987 0.0330797 2.17609e-05 2.62812e-05 2.718 ||| 0-1 ||| 77 45954 +a ||| up ||| 0.0227508 0.0268991 0.00047874 0.0012744 2.718 ||| 0-0 ||| 967 45954 +a ||| uphold the ruling , but if it ||| 1 0.0011566 2.17609e-05 4.23325e-20 2.718 ||| 0-1 ||| 1 45954 +a ||| uphold the ruling , but if ||| 1 0.0011566 2.17609e-05 1.58987e-18 2.718 ||| 0-1 ||| 1 45954 +a ||| uphold the ruling , but ||| 1 0.0011566 2.17609e-05 2.49822e-15 2.718 ||| 0-1 ||| 1 45954 +a ||| uphold the ruling , ||| 1 0.0011566 2.17609e-05 2.13705e-12 2.718 ||| 0-1 ||| 1 45954 +a ||| uphold the ruling ||| 1 0.0011566 2.17609e-05 1.04619e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| uphold the ||| 0.111111 0.0011566 2.17609e-05 7.67e-08 2.718 ||| 0-1 ||| 9 45954 +a ||| upon institutionally ||| 0.5 0.111969 2.17609e-05 8.8972e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| upon it ||| 0.5 0.111969 2.17609e-05 1.82232e-05 2.718 ||| 0-0 ||| 2 45954 +a ||| upon the ||| 0.0322581 0.0565628 2.17609e-05 2.01898e-06 2.718 ||| 0-0 0-1 ||| 31 45954 +a ||| upon to keep ||| 0.2 0.270828 2.17609e-05 2.03794e-08 2.718 ||| 0-1 ||| 5 45954 +a ||| upon to walk ||| 1 0.270828 2.17609e-05 5.0905e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| upon to ||| 0.181818 0.270828 4.35218e-05 8.71661e-05 2.718 ||| 0-1 ||| 11 45954 +a ||| upon ||| 0.127451 0.111969 0.000565783 0.0006844 2.718 ||| 0-0 ||| 204 45954 +a ||| urge the president to go ||| 1 0.270828 2.17609e-05 4.24563e-14 2.718 ||| 0-3 ||| 1 45954 +a ||| urge the president to ||| 1 0.270828 2.17609e-05 6.16738e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| urge ||| 0.0444444 0.298077 4.35218e-05 0.0003658 2.718 ||| 0-0 ||| 45 45954 +a ||| urged to ||| 1 0.294706 2.17609e-05 0.000139047 2.718 ||| 0-0 0-1 ||| 1 45954 +a ||| urged ||| 0.0333333 0.318584 4.35218e-05 0.0004248 2.718 ||| 0-0 ||| 60 45954 +a ||| urging ||| 0.0384615 0.313433 4.35218e-05 0.0002478 2.718 ||| 0-0 ||| 52 45954 +a ||| us back ||| 0.25 0.0671913 2.17609e-05 7.48551e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| us in ||| 0.0666667 0.0437285 2.17609e-05 2.24433e-05 2.718 ||| 0-1 ||| 15 45954 +a ||| us to expect ||| 1 0.270828 2.17609e-05 9.72739e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| us to ||| 0.0746269 0.270828 0.000108804 0.000187065 2.718 ||| 0-1 ||| 67 45954 +a ||| us with ||| 0.25 0.0330797 2.17609e-05 4.80832e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| use of laundry , ||| 1 0.0164489 2.17609e-05 1.00442e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| use of laundry ||| 1 0.0164489 2.17609e-05 4.91713e-11 2.718 ||| 0-1 ||| 1 45954 +a ||| use of ||| 0.00444444 0.0164489 4.35218e-05 7.56481e-06 2.718 ||| 0-1 ||| 450 45954 +a ||| used to ||| 0.00980392 0.270828 6.52827e-05 0.000110537 2.718 ||| 0-1 ||| 306 45954 +a ||| using ||| 0.0027248 0.0422535 4.35218e-05 0.0003186 2.718 ||| 0-0 ||| 734 45954 +a ||| value of ||| 0.00392157 0.0164489 2.17609e-05 4.20195e-06 2.718 ||| 0-1 ||| 255 45954 +a ||| via word of mouth to others with ||| 1 0.288889 2.17609e-05 1.15121e-21 2.718 ||| 0-0 ||| 1 45954 +a ||| via word of mouth to others ||| 1 0.288889 2.17609e-05 3.03534e-19 2.718 ||| 0-0 ||| 1 45954 +a ||| via word of mouth to ||| 1 0.288889 2.17609e-05 2.59652e-15 2.718 ||| 0-0 ||| 1 45954 +a ||| via word of mouth ||| 1 0.288889 2.17609e-05 3.14768e-14 2.718 ||| 0-0 ||| 1 45954 +a ||| via word of ||| 1 0.288889 2.17609e-05 1.61419e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| via word ||| 1 0.288889 2.17609e-05 5.97493e-08 2.718 ||| 0-0 ||| 1 45954 +a ||| via ||| 0.00904977 0.288889 4.35218e-05 0.000767 2.718 ||| 0-0 ||| 221 45954 +a ||| vice ||| 0.0555556 0.0147059 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 18 45954 +a ||| victory in ||| 0.0357143 0.0437285 2.17609e-05 7.65781e-07 2.718 ||| 0-1 ||| 28 45954 +a ||| view as ||| 0.166667 0.0289876 2.17609e-05 2.35531e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| viewed ||| 0.011976 0.044898 4.35218e-05 0.0001298 2.718 ||| 0-0 ||| 167 45954 +a ||| viewing ||| 0.0666667 0.121951 4.35218e-05 5.9e-05 2.718 ||| 0-0 ||| 30 45954 +a ||| views on ||| 0.0625 0.0963759 2.17609e-05 1.50092e-06 2.718 ||| 0-1 ||| 16 45954 +a ||| views ||| 0.0028169 0.0170316 2.17609e-05 8.26e-05 2.718 ||| 0-0 ||| 355 45954 +a ||| violations to ||| 1 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| visited ||| 0.030303 0.0280374 4.35218e-05 3.54e-05 2.718 ||| 0-0 ||| 66 45954 +a ||| voice on ||| 0.2 0.0963759 2.17609e-05 1.67054e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| vote on ||| 0.0333333 0.0963759 2.17609e-05 3.17145e-06 2.718 ||| 0-1 ||| 30 45954 +a ||| voters in ||| 0.0434783 0.0437285 2.17609e-05 2.29341e-06 2.718 ||| 0-1 ||| 23 45954 +a ||| voting system to ensure decisions command the ||| 1 0.270828 2.17609e-05 1.03549e-23 2.718 ||| 0-2 ||| 1 45954 +a ||| voting system to ensure decisions command ||| 1 0.270828 2.17609e-05 1.94899e-22 2.718 ||| 0-2 ||| 1 45954 +a ||| voting system to ensure decisions ||| 1 0.270828 2.17609e-05 9.99482e-18 2.718 ||| 0-2 ||| 1 45954 +a ||| voting system to ensure ||| 1 0.270828 2.17609e-05 1.92208e-13 2.718 ||| 0-2 ||| 1 45954 +a ||| voting system to ||| 1 0.270828 2.17609e-05 1.74102e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| waging ||| 0.0384615 0.05 2.17609e-05 2.36e-05 2.718 ||| 0-0 ||| 26 45954 +a ||| waited to ||| 0.5 0.270828 2.17609e-05 2.1276e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| walk away ||| 0.166667 0.0508475 2.17609e-05 2.8943e-08 2.718 ||| 0-1 ||| 6 45954 +a ||| want to cut through ||| 0.5 0.257419 2.17609e-05 4.25831e-11 2.718 ||| 0-3 ||| 2 45954 +a ||| want to take particular care ||| 0.166667 0.270828 2.17609e-05 8.06906e-16 2.718 ||| 0-1 ||| 6 45954 +a ||| want to take particular ||| 0.166667 0.270828 2.17609e-05 4.77742e-12 2.718 ||| 0-1 ||| 6 45954 +a ||| want to take ||| 0.1 0.270828 2.17609e-05 5.25569e-08 2.718 ||| 0-1 ||| 10 45954 +a ||| want to ||| 0.00636943 0.270828 6.52827e-05 5.95073e-05 2.718 ||| 0-1 ||| 471 45954 +a ||| warfare ||| 0.0123457 0.0096154 2.17609e-05 1.18e-05 2.718 ||| 0-0 ||| 81 45954 +a ||| was a close call ||| 1 0.0723077 2.17609e-05 2.24585e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| was a literary genius ||| 1 0.0416667 2.17609e-05 1.16634e-14 2.718 ||| 0-2 ||| 1 45954 +a ||| was a literary ||| 1 0.0416667 2.17609e-05 1.79437e-09 2.718 ||| 0-2 ||| 1 45954 +a ||| was at the ||| 0.0740741 0.185652 4.35218e-05 5.1326e-06 2.718 ||| 0-1 ||| 27 45954 +a ||| was at ||| 0.0526316 0.185652 6.52827e-05 9.66054e-05 2.718 ||| 0-1 ||| 57 45954 +a ||| was due to arrive ||| 0.166667 0.270828 2.17609e-05 5.95407e-12 2.718 ||| 0-2 ||| 6 45954 +a ||| was due to ||| 0.04 0.270828 2.17609e-05 3.05337e-07 2.718 ||| 0-2 ||| 25 45954 +a ||| was enticing bandits ||| 0.166667 0.166667 2.17609e-05 5.79806e-13 2.718 ||| 0-2 ||| 6 45954 +a ||| was instrumental in ||| 0.111111 0.0437285 2.17609e-05 2.89442e-09 2.718 ||| 0-2 ||| 9 45954 +a ||| was made to ||| 0.125 0.270828 2.17609e-05 1.36585e-06 2.718 ||| 0-2 ||| 8 45954 +a ||| was of ||| 0.142857 0.0164489 2.17609e-05 8.15304e-05 2.718 ||| 0-1 ||| 7 45954 +a ||| was portrayed ||| 0.2 0.122449 2.17609e-05 2.67603e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| was replaced by ||| 0.0909091 0.172414 2.17609e-05 1.2084e-08 2.718 ||| 0-1 ||| 11 45954 +a ||| was replaced ||| 0.0769231 0.172414 2.17609e-05 1.78402e-06 2.718 ||| 0-1 ||| 13 45954 +a ||| was scheduled to ||| 0.333333 0.270828 2.17609e-05 4.82501e-08 2.718 ||| 0-2 ||| 3 45954 +a ||| was struck between ||| 0.5 0.105691 2.17609e-05 1.88263e-10 2.718 ||| 0-1 ||| 2 45954 +a ||| was struck ||| 0.111111 0.105691 2.17609e-05 5.79806e-07 2.718 ||| 0-1 ||| 9 45954 +a ||| was supporting ||| 0.5 0.227758 2.17609e-05 2.85443e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| was to ||| 0.00980392 0.270828 4.35218e-05 0.00123718 2.718 ||| 0-1 ||| 204 45954 +a ||| way coming to ||| 0.142857 0.270828 2.17609e-05 1.97083e-07 2.718 ||| 0-2 ||| 7 45954 +a ||| way in reducing ||| 1 0.0437285 2.17609e-05 3.10335e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| way in ||| 0.037037 0.0437285 4.35218e-05 5.96798e-05 2.718 ||| 0-1 ||| 54 45954 +a ||| way into ||| 0.117647 0.176821 4.35218e-05 1.70181e-05 2.718 ||| 0-1 ||| 17 45954 +a ||| way of ||| 0.021164 0.0164489 8.70436e-05 3.27808e-05 2.718 ||| 0-1 ||| 189 45954 +a ||| way out of ||| 0.0357143 0.0164489 2.17609e-05 1.45403e-07 2.718 ||| 0-2 ||| 28 45954 +a ||| way through ||| 0.166667 0.257419 4.35218e-05 1.3844e-05 2.718 ||| 0-1 ||| 12 45954 +a ||| way to the ||| 0.027027 0.270828 2.17609e-05 2.64284e-05 2.718 ||| 0-1 ||| 37 45954 +a ||| way to ||| 0.0122807 0.270828 0.000152326 0.000497433 2.718 ||| 0-1 ||| 570 45954 +a ||| way toward addressing ||| 0.333333 0.0996678 2.17609e-05 5.24524e-11 2.718 ||| 0-1 ||| 3 45954 +a ||| way toward allowing ||| 0.166667 0.0996678 2.17609e-05 7.34334e-11 2.718 ||| 0-1 ||| 6 45954 +a ||| way toward ||| 0.142857 0.0996678 6.52827e-05 1.61392e-06 2.718 ||| 0-1 ||| 21 45954 +a ||| ways to move ||| 0.5 0.270828 2.17609e-05 1.34154e-08 2.718 ||| 0-1 ||| 2 45954 +a ||| ways to ||| 0.0116279 0.270828 4.35218e-05 5.73797e-05 2.718 ||| 0-1 ||| 172 45954 +a ||| we divided up equally what we produce ||| 0.5 0.0551471 2.17609e-05 3.85998e-23 2.718 ||| 0-1 ||| 2 45954 +a ||| we divided up equally what we ||| 0.5 0.0551471 2.17609e-05 2.28536e-19 2.718 ||| 0-1 ||| 2 45954 +a ||| we divided up equally what ||| 0.5 0.0551471 2.17609e-05 9.85708e-17 2.718 ||| 0-1 ||| 2 45954 +a ||| we divided up equally ||| 0.5 0.0551471 2.17609e-05 9.9859e-14 2.718 ||| 0-1 ||| 2 45954 +a ||| we divided up ||| 0.5 0.0551471 2.17609e-05 1.28189e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| we divided ||| 0.5 0.0551471 2.17609e-05 4.10374e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| we don 't ||| 0.0526316 0.0042674 2.17609e-05 3.62443e-11 2.718 ||| 0-1 ||| 19 45954 +a ||| we don ||| 0.125 0.0042674 2.17609e-05 8.20749e-08 2.718 ||| 0-1 ||| 8 45954 +a ||| we engage with ||| 0.25 0.0330797 2.17609e-05 2.15354e-09 2.718 ||| 0-2 ||| 4 45954 +a ||| we go ||| 0.125 0.0290118 2.17609e-05 8.75466e-07 2.718 ||| 0-1 ||| 8 45954 +a ||| we joined ||| 1 0.242894 2.17609e-05 2.57168e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| we urge ||| 0.125 0.298077 2.17609e-05 8.48107e-07 2.718 ||| 0-1 ||| 8 45954 +a ||| we would by ||| 0.166667 0.0269646 2.17609e-05 7.23602e-08 2.718 ||| 0-2 ||| 6 45954 +a ||| we ||| 0.00104384 0.0015763 4.35218e-05 0.0001534 2.718 ||| 0-0 ||| 1916 45954 +a ||| weakened ||| 0.00632911 0.0384615 2.17609e-05 9.44e-05 2.718 ||| 0-0 ||| 158 45954 +a ||| wealth into ||| 0.125 0.176821 2.17609e-05 1.01793e-06 2.718 ||| 0-1 ||| 8 45954 +a ||| weapons against ||| 0.25 0.0413907 2.17609e-05 1.14873e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| welcomed by ||| 0.25 0.0269646 2.17609e-05 1.31619e-07 2.718 ||| 0-1 ||| 4 45954 +a ||| well as on ||| 0.5 0.0963759 2.17609e-05 3.76818e-07 2.718 ||| 0-2 ||| 2 45954 +a ||| well as ||| 0.013289 0.0289876 8.70436e-05 1.61236e-05 2.718 ||| 0-1 ||| 301 45954 +a ||| went home ||| 0.25 0.0114679 2.17609e-05 2.22253e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| went on to ||| 0.0833333 0.0963759 2.17609e-05 5.23228e-07 2.718 ||| 0-1 ||| 12 45954 +a ||| went on ||| 0.0294118 0.0963759 2.17609e-05 6.34291e-06 2.718 ||| 0-1 ||| 34 45954 +a ||| went to ||| 0.0149254 0.270828 2.17609e-05 8.07833e-05 2.718 ||| 0-1 ||| 67 45954 +a ||| went ||| 0.00746269 0.0114679 4.35218e-05 5.9e-05 2.718 ||| 0-0 ||| 268 45954 +a ||| were at ||| 0.0294118 0.185652 2.17609e-05 5.66004e-05 2.718 ||| 0-1 ||| 34 45954 +a ||| were closer to ||| 0.25 0.270828 2.17609e-05 1.27067e-07 2.718 ||| 0-2 ||| 4 45954 +a ||| were forced to ||| 0.05 0.270828 2.17609e-05 9.41589e-08 2.718 ||| 0-2 ||| 20 45954 +a ||| were included ||| 0.1 0.0099502 2.17609e-05 5.22622e-08 2.718 ||| 0-1 ||| 10 45954 +a ||| were placed in ||| 0.2 0.0437285 2.17609e-05 6.77459e-09 2.718 ||| 0-2 ||| 5 45954 +a ||| were reminded ||| 0.333333 0.252874 2.17609e-05 5.74884e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| were seen to ||| 1 0.270828 2.17609e-05 2.6363e-07 2.718 ||| 0-2 ||| 1 45954 +a ||| were telling ||| 0.5 0.206349 2.17609e-05 6.79409e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| were to ||| 0.0238095 0.270828 4.35218e-05 0.000724857 2.718 ||| 0-1 ||| 84 45954 +a ||| what admittedly are back ||| 1 0.0671913 2.17609e-05 1.24436e-13 2.718 ||| 0-3 ||| 1 45954 +a ||| what appears to ||| 0.142857 0.270828 2.17609e-05 3.56703e-08 2.718 ||| 0-2 ||| 7 45954 +a ||| what gives that achievement its meaning and ||| 1 0.188272 2.17609e-05 8.18487e-23 2.718 ||| 0-1 ||| 1 45954 +a ||| what gives that achievement its meaning ||| 1 0.188272 2.17609e-05 9.74726e-21 2.718 ||| 0-1 ||| 1 45954 +a ||| what gives that achievement its ||| 1 0.188272 2.17609e-05 2.99916e-16 2.718 ||| 0-1 ||| 1 45954 +a ||| what gives that achievement ||| 1 0.188272 2.17609e-05 1.50924e-13 2.718 ||| 0-1 ||| 1 45954 +a ||| what gives that ||| 1 0.188272 2.17609e-05 5.80476e-09 2.718 ||| 0-1 ||| 1 45954 +a ||| what gives ||| 0.142857 0.188272 2.17609e-05 7.10515e-07 2.718 ||| 0-1 ||| 7 45954 +a ||| what is to ||| 0.0769231 0.270828 2.17609e-05 5.32547e-06 2.718 ||| 0-2 ||| 13 45954 +a ||| whatsoever from ||| 1 0.0408799 2.17609e-05 2.66536e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| when it comes to ||| 0.00719424 0.270828 2.17609e-05 1.07045e-09 2.718 ||| 0-3 ||| 139 45954 +a ||| when it ||| 0.0248963 0.0042338 0.000130565 8.16901e-06 2.718 ||| 0-0 ||| 241 45954 +a ||| when loans come ||| 0.5 0.0042338 2.17609e-05 1.71338e-11 2.718 ||| 0-0 ||| 2 45954 +a ||| when loans ||| 0.2 0.0042338 2.17609e-05 1.39594e-08 2.718 ||| 0-0 ||| 5 45954 +a ||| when push ||| 0.333333 0.0042338 2.17609e-05 4.18475e-08 2.718 ||| 0-0 ||| 3 45954 +a ||| when she wrote about ||| 0.5 0.0244529 2.17609e-05 1.98047e-14 2.718 ||| 0-3 ||| 2 45954 +a ||| when ||| 0.00315315 0.0042338 0.000456979 0.0003068 2.718 ||| 0-0 ||| 6660 45954 +a ||| where it had to be bailed out ||| 1 0.270828 2.17609e-05 5.59771e-18 2.718 ||| 0-3 ||| 1 45954 +a ||| where it had to be bailed ||| 1 0.270828 2.17609e-05 1.262e-15 2.718 ||| 0-3 ||| 1 45954 +a ||| where it had to be ||| 1 0.270828 2.17609e-05 3.23589e-11 2.718 ||| 0-3 ||| 1 45954 +a ||| where it had to ||| 1 0.270828 2.17609e-05 3.13969e-09 2.718 ||| 0-3 ||| 1 45954 +a ||| whether it ||| 0.0263158 0.0016313 2.17609e-05 9.42578e-07 2.718 ||| 0-0 ||| 38 45954 +a ||| whether ||| 0.00174014 0.0016313 6.52827e-05 3.54e-05 2.718 ||| 0-0 ||| 1724 45954 +a ||| which brought down ||| 0.2 0.0761347 2.17609e-05 1.07717e-09 2.718 ||| 0-1 ||| 5 45954 +a ||| which brought ||| 0.1 0.0761347 2.17609e-05 7.37179e-07 2.718 ||| 0-1 ||| 10 45954 +a ||| which sought to ||| 0.2 0.270828 2.17609e-05 5.36388e-08 2.718 ||| 0-2 ||| 5 45954 +a ||| while substantially ||| 0.5 0.0035753 2.17609e-05 1.05846e-08 2.718 ||| 0-0 ||| 2 45954 +a ||| while ||| 0.000475964 0.0035753 4.35218e-05 0.0002714 2.718 ||| 0-0 ||| 4202 45954 +a ||| who attend ||| 1 0.405405 2.17609e-05 5.41408e-07 2.718 ||| 0-1 ||| 1 45954 +a ||| who gave ||| 0.111111 0.161731 2.17609e-05 8.54221e-07 2.718 ||| 0-1 ||| 9 45954 +a ||| who had observed ||| 0.5 0.0006352 2.17609e-05 3.49065e-12 2.718 ||| 0-0 ||| 2 45954 +a ||| who had ||| 0.00826446 0.0006352 2.17609e-05 6.71278e-08 2.718 ||| 0-0 ||| 121 45954 +a ||| who is ||| 0.00497512 0.0006352 2.17609e-05 7.77969e-07 2.718 ||| 0-0 ||| 201 45954 +a ||| who will ||| 0.0204082 0.0208333 2.17609e-05 4.05454e-06 2.718 ||| 0-1 ||| 49 45954 +a ||| who ||| 0.000714924 0.0006352 8.70436e-05 4.72e-05 2.718 ||| 0-0 ||| 5595 45954 +a ||| whom to ||| 0.0666667 0.200284 2.17609e-05 0.000251057 2.718 ||| 0-0 0-1 ||| 15 45954 +a ||| whom ||| 0.0120846 0.129741 8.70436e-05 0.000767 2.718 ||| 0-0 ||| 331 45954 +a ||| widely to ||| 1 0.270828 2.17609e-05 6.37625e-05 2.718 ||| 0-1 ||| 1 45954 +a ||| will affect the US " far more ||| 1 0.25256 2.17609e-05 2.9136e-18 2.718 ||| 0-1 ||| 1 45954 +a ||| will affect the US " far ||| 1 0.25256 2.17609e-05 1.36366e-15 2.718 ||| 0-1 ||| 1 45954 +a ||| will affect the US " ||| 1 0.25256 2.17609e-05 2.05867e-12 2.718 ||| 0-1 ||| 1 45954 +a ||| will affect the US ||| 1 0.25256 2.17609e-05 4.1222e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| will affect the ||| 0.2 0.25256 2.17609e-05 3.20569e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| will affect ||| 0.0416667 0.25256 2.17609e-05 6.03372e-06 2.718 ||| 0-1 ||| 24 45954 +a ||| will be a key ||| 0.2 0.0208333 2.17609e-05 2.1419e-10 2.718 ||| 0-0 ||| 5 45954 +a ||| will be a ||| 0.00854701 0.0208333 2.17609e-05 1.64889e-06 2.718 ||| 0-0 ||| 117 45954 +a ||| will be in ||| 0.0322581 0.0437285 2.17609e-05 2.79672e-06 2.718 ||| 0-2 ||| 31 45954 +a ||| will be ||| 0.00235405 0.0208333 0.000108804 4.09844e-05 2.718 ||| 0-0 ||| 2124 45954 +a ||| will become operational ||| 0.5 0.0208333 2.17609e-05 3.49153e-11 2.718 ||| 0-0 ||| 2 45954 +a ||| will become ||| 0.00510204 0.0208333 2.17609e-05 2.6858e-06 2.718 ||| 0-0 ||| 196 45954 +a ||| will blame ||| 0.2 0.20915 2.17609e-05 7.82753e-06 2.718 ||| 0-1 ||| 5 45954 +a ||| will bring to ||| 1 0.270828 2.17609e-05 1.2338e-06 2.718 ||| 0-2 ||| 1 45954 +a ||| will cover ||| 0.333333 0.0208333 2.17609e-05 2.06783e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| will defeat ||| 0.333333 0.0735294 2.17609e-05 1.63074e-06 2.718 ||| 0-1 ||| 3 45954 +a ||| will do to ||| 0.5 0.270828 2.17609e-05 5.18511e-06 2.718 ||| 0-2 ||| 2 45954 +a ||| will eventually be back ||| 0.333333 0.0583614 2.17609e-05 6.07318e-11 2.718 ||| 0-1 ||| 3 45954 +a ||| will eventually be ||| 0.125 0.0583614 2.17609e-05 4.36983e-08 2.718 ||| 0-1 ||| 8 45954 +a ||| will eventually find themselves having ||| 0.333333 0.0583614 2.17609e-05 4.19258e-16 2.718 ||| 0-1 ||| 3 45954 +a ||| will eventually find themselves ||| 0.333333 0.0583614 2.17609e-05 1.57438e-12 2.718 ||| 0-1 ||| 3 45954 +a ||| will eventually find ||| 0.25 0.0583614 2.17609e-05 1.95502e-09 2.718 ||| 0-1 ||| 4 45954 +a ||| will eventually ||| 0.037037 0.0583614 4.35218e-05 4.23991e-06 2.718 ||| 0-1 ||| 54 45954 +a ||| will have to ||| 0.00350877 0.270828 2.17609e-05 1.16773e-05 2.718 ||| 0-2 ||| 285 45954 +a ||| will help ||| 0.0116279 0.350156 2.17609e-05 7.29761e-05 2.718 ||| 0-1 ||| 86 45954 +a ||| will in ||| 0.142857 0.0437285 4.35218e-05 0.000271357 2.718 ||| 0-1 ||| 14 45954 +a ||| will jump through ||| 0.25 0.257419 2.17609e-05 2.86409e-09 2.718 ||| 0-2 ||| 4 45954 +a ||| will kill ||| 0.111111 0.238095 2.17609e-05 4.89221e-06 2.718 ||| 0-1 ||| 9 45954 +a ||| will lead ||| 0.0131579 0.0317003 2.17609e-05 2.69072e-06 2.718 ||| 0-1 ||| 76 45954 +a ||| will make ||| 0.00952381 0.0208333 2.17609e-05 5.24235e-06 2.718 ||| 0-0 ||| 105 45954 +a ||| will now ||| 0.0357143 0.0208333 2.17609e-05 5.914e-06 2.718 ||| 0-0 ||| 28 45954 +a ||| will provide just ||| 1 0.0208333 2.17609e-05 1.79602e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| will provide ||| 0.027027 0.0208333 2.17609e-05 1.62683e-06 2.718 ||| 0-0 ||| 37 45954 +a ||| will reach out ||| 1 0.213333 2.17609e-05 4.62931e-08 2.718 ||| 0-1 ||| 1 45954 +a ||| will reach ||| 0.05 0.213333 2.17609e-05 1.04367e-05 2.718 ||| 0-1 ||| 20 45954 +a ||| will remain ||| 0.00598802 0.0208333 2.17609e-05 1.31705e-06 2.718 ||| 0-0 ||| 167 45954 +a ||| will say , ||| 1 0.0208333 2.17609e-05 3.27033e-07 2.718 ||| 0-0 ||| 1 45954 +a ||| will say ||| 0.0666667 0.0208333 2.17609e-05 1.60098e-06 2.718 ||| 0-0 ||| 15 45954 +a ||| will seek to ||| 0.0285714 0.270828 2.17609e-05 4.25891e-07 2.718 ||| 0-2 ||| 35 45954 +a ||| will ultimately sit in judgment ||| 0.5 0.0437285 2.17609e-05 1.74857e-16 2.718 ||| 0-3 ||| 2 45954 +a ||| will ultimately sit in ||| 0.5 0.0437285 2.17609e-05 3.84302e-12 2.718 ||| 0-3 ||| 2 45954 +a ||| will urge ||| 0.5 0.298077 2.17609e-05 2.52764e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| will ||| 0.0117566 0.0208333 0.00110981 0.0039766 2.718 ||| 0-0 ||| 4338 45954 +a ||| willingness to ||| 0.0357143 0.270828 8.70436e-05 1.27656e-05 2.718 ||| 0-1 ||| 112 45954 +a ||| wisdom of ||| 0.0434783 0.0164489 2.17609e-05 2.94223e-06 2.718 ||| 0-1 ||| 23 45954 +a ||| wisdom to ||| 0.2 0.270828 2.17609e-05 4.46469e-05 2.718 ||| 0-1 ||| 5 45954 +a ||| with Bismarck 's social security system in ||| 1 0.0437285 2.17609e-05 2.54246e-23 2.718 ||| 0-6 ||| 1 45954 +a ||| with HIV or AIDS in some parts ||| 1 0.0437285 2.17609e-05 5.15927e-24 2.718 ||| 0-4 ||| 1 45954 +a ||| with HIV or AIDS in some ||| 1 0.0437285 2.17609e-05 5.67577e-20 2.718 ||| 0-4 ||| 1 45954 +a ||| with HIV or AIDS in ||| 1 0.0437285 2.17609e-05 7.9448e-17 2.718 ||| 0-4 ||| 1 45954 +a ||| with a viable ||| 1 0.0330797 2.17609e-05 2.2002e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| with a ||| 0.00330033 0.0330797 0.000108804 0.000338492 2.718 ||| 0-0 ||| 1515 45954 +a ||| with and for ||| 0.333333 0.0587253 2.17609e-05 7.53491e-07 2.718 ||| 0-2 ||| 3 45954 +a ||| with barely ||| 0.25 0.0223878 2.17609e-05 1.98559e-07 2.718 ||| 0-0 0-1 ||| 4 45954 +a ||| with certainty ||| 0.0833333 0.0330797 2.17609e-05 1.64063e-07 2.718 ||| 0-0 ||| 12 45954 +a ||| with investment ||| 0.05 0.0330797 2.17609e-05 7.10099e-07 2.718 ||| 0-0 ||| 20 45954 +a ||| with it ||| 0.00787402 0.0330797 2.17609e-05 0.000224022 2.718 ||| 0-0 ||| 127 45954 +a ||| with on a ||| 1 0.0647278 2.17609e-05 8.69945e-06 2.718 ||| 0-0 0-1 ||| 1 45954 +a ||| with on ||| 0.5 0.0647278 2.17609e-05 0.000216232 2.718 ||| 0-0 0-1 ||| 2 45954 +a ||| with putting ||| 0.25 0.133574 2.17609e-05 1.65589e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| with room ||| 0.333333 0.0330797 2.17609e-05 4.37502e-07 2.718 ||| 0-0 ||| 3 45954 +a ||| with the Saudis usually determined his foreign ||| 1 0.0330797 2.17609e-05 4.96287e-24 2.718 ||| 0-0 ||| 1 45954 +a ||| with the Saudis usually determined his ||| 1 0.0330797 2.17609e-05 3.18337e-20 2.718 ||| 0-0 ||| 1 45954 +a ||| with the Saudis usually determined ||| 1 0.0330797 2.17609e-05 3.18305e-17 2.718 ||| 0-0 ||| 1 45954 +a ||| with the Saudis usually ||| 1 0.0330797 2.17609e-05 4.90455e-13 2.718 ||| 0-0 ||| 1 45954 +a ||| with the Saudis ||| 1 0.0330797 2.17609e-05 5.81108e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| with the ||| 0.0020025 0.0330797 0.000174087 0.000447006 2.718 ||| 0-0 ||| 3995 45954 +a ||| with which ||| 0.00775194 0.0330797 2.17609e-05 1.0108e-05 2.718 ||| 0-0 ||| 129 45954 +a ||| with ||| 0.018574 0.0330797 0.00863907 0.0084135 2.718 ||| 0-0 ||| 21374 45954 +a ||| withdrawn in ||| 0.5 0.0437285 2.17609e-05 1.2763e-06 2.718 ||| 0-1 ||| 2 45954 +a ||| within , ||| 0.1 0.0216675 2.17609e-05 0.000110878 2.718 ||| 0-0 ||| 10 45954 +a ||| within a wide range , ||| 0.333333 0.0216675 2.17609e-05 6.11429e-14 2.718 ||| 0-0 ||| 3 45954 +a ||| within a wide range ||| 0.333333 0.0216675 2.17609e-05 2.99323e-13 2.718 ||| 0-0 ||| 3 45954 +a ||| within a wide ||| 0.333333 0.0216675 2.17609e-05 1.84312e-09 2.718 ||| 0-0 ||| 3 45954 +a ||| within a ||| 0.00684932 0.0216675 2.17609e-05 2.18379e-05 2.718 ||| 0-0 ||| 146 45954 +a ||| within countries ||| 0.05 0.0216675 2.17609e-05 1.23378e-07 2.718 ||| 0-0 ||| 20 45954 +a ||| within shouting range ||| 0.5 0.0216675 2.17609e-05 1.14596e-12 2.718 ||| 0-0 ||| 2 45954 +a ||| within shouting ||| 0.333333 0.0216675 2.17609e-05 7.0564e-09 2.718 ||| 0-0 ||| 3 45954 +a ||| within ||| 0.0134454 0.0216675 0.000522261 0.0005428 2.718 ||| 0-0 ||| 1785 45954 +a ||| women typically ||| 0.5 0.0016456 2.17609e-05 1.6107e-09 2.718 ||| 0-0 ||| 2 45954 +a ||| women ||| 0.000752445 0.0016456 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 1329 45954 +a ||| won 't walk away ||| 1 0.0508475 2.17609e-05 6.80601e-15 2.718 ||| 0-3 ||| 1 45954 +a ||| words , financial markets are prone to ||| 1 0.270828 2.17609e-05 4.89964e-21 2.718 ||| 0-6 ||| 1 45954 +a ||| work harder to ||| 0.0909091 0.270828 2.17609e-05 8.99549e-09 2.718 ||| 0-2 ||| 11 45954 +a ||| work out any ||| 0.5 0.0840356 2.17609e-05 2.26154e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| work out ||| 0.111111 0.0840356 4.35218e-05 2.48739e-06 2.718 ||| 0-1 ||| 18 45954 +a ||| work to ||| 0.0217391 0.270828 2.17609e-05 0.000197703 2.718 ||| 0-1 ||| 46 45954 +a ||| work towards ||| 0.142857 0.102013 2.17609e-05 5.41667e-07 2.718 ||| 0-1 ||| 7 45954 +a ||| work ||| 0.001207 0.0011601 4.35218e-05 2.36e-05 2.718 ||| 0-0 ||| 1657 45954 +a ||| workers simply cannot afford to ||| 0.047619 0.270828 2.17609e-05 6.1482e-17 2.718 ||| 0-4 ||| 21 45954 +a ||| workers to ||| 0.1 0.270828 4.35218e-05 3.40089e-05 2.718 ||| 0-1 ||| 20 45954 +a ||| workers ||| 0.00283286 0.009687 6.52827e-05 0.0001534 2.718 ||| 0-0 ||| 1059 45954 +a ||| working to ||| 0.0294118 0.270828 2.17609e-05 5.31573e-05 2.718 ||| 0-1 ||| 34 45954 +a ||| worldwide ||| 0.0022831 0.0961737 2.17609e-05 0.0010974 2.718 ||| 0-0 ||| 438 45954 +a ||| worried ||| 0.0133333 0.0165746 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 75 45954 +a ||| worries grew ||| 0.25 0.0967742 2.17609e-05 4.602e-09 2.718 ||| 0-0 ||| 4 45954 +a ||| worries ||| 0.0181818 0.0967742 4.35218e-05 0.000177 2.718 ||| 0-0 ||| 110 45954 +a ||| worth ||| 0.00378788 0.010582 2.17609e-05 7.08e-05 2.718 ||| 0-0 ||| 264 45954 +a ||| worthwhile for ||| 0.333333 0.0587253 2.17609e-05 3.0757e-07 2.718 ||| 0-1 ||| 3 45954 +a ||| worthwhile to ||| 0.25 0.270828 2.17609e-05 4.2552e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| would be closed ||| 0.5 0.0233645 2.17609e-05 2.81169e-09 2.718 ||| 0-2 ||| 2 45954 +a ||| would begin ||| 0.125 0.0065934 2.17609e-05 1.63686e-07 2.718 ||| 0-1 ||| 8 45954 +a ||| would benefit ||| 0.030303 0.128988 2.17609e-05 5.07427e-06 2.718 ||| 0-1 ||| 33 45954 +a ||| would break ||| 0.166667 0.0031159 2.17609e-05 5.22728e-08 2.718 ||| 0-0 ||| 6 45954 +a ||| would by ||| 0.25 0.0269646 2.17609e-05 3.12099e-05 2.718 ||| 0-1 ||| 4 45954 +a ||| would drive a wedge between ||| 1 0.0031159 2.17609e-05 8.06956e-18 2.718 ||| 0-0 ||| 1 45954 +a ||| would drive a wedge ||| 1 0.0031159 2.17609e-05 2.48524e-14 2.718 ||| 0-0 ||| 1 45954 +a ||| would drive a ||| 1 0.0031159 2.17609e-05 1.91172e-09 2.718 ||| 0-0 ||| 1 45954 +a ||| would drive ||| 0.25 0.0031159 2.17609e-05 4.75174e-08 2.718 ||| 0-0 ||| 4 45954 +a ||| would encourage ||| 0.1 0.19837 2.17609e-05 3.98303e-06 2.718 ||| 0-1 ||| 10 45954 +a ||| would go to ||| 0.0454545 0.270828 2.17609e-05 1.0419e-06 2.718 ||| 0-2 ||| 22 45954 +a ||| would have to be happy ||| 1 0.270828 2.17609e-05 4.18783e-12 2.718 ||| 0-2 ||| 1 45954 +a ||| would have to be ||| 0.0188679 0.270828 2.17609e-05 8.05352e-08 2.718 ||| 0-2 ||| 53 45954 +a ||| would have to ||| 0.00952381 0.270828 2.17609e-05 7.8141e-06 2.718 ||| 0-2 ||| 105 45954 +a ||| would like it to be ||| 0.5 0.270828 2.17609e-05 3.47974e-10 2.718 ||| 0-3 ||| 2 45954 +a ||| would like it to ||| 0.5 0.270828 2.17609e-05 3.37629e-08 2.718 ||| 0-3 ||| 2 45954 +a ||| would move into ||| 1 0.176821 2.17609e-05 1.21061e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| would only remind ||| 0.5 0.222222 2.17609e-05 9.4676e-10 2.718 ||| 0-2 ||| 2 45954 +a ||| would pull back from ||| 0.5 0.0408799 2.17609e-05 2.74054e-12 2.718 ||| 0-3 ||| 2 45954 +a ||| would rather pay to ||| 1 0.270828 2.17609e-05 1.27356e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| would result in a ||| 0.25 0.0437285 2.17609e-05 3.03616e-09 2.718 ||| 0-2 ||| 4 45954 +a ||| would result in ||| 0.125 0.0437285 2.17609e-05 7.54664e-08 2.718 ||| 0-2 ||| 8 45954 +a ||| would retreat to ||| 1 0.270828 2.17609e-05 3.93512e-08 2.718 ||| 0-2 ||| 1 45954 +a ||| would reward ||| 0.5 0.0357143 2.17609e-05 1.63686e-07 2.718 ||| 0-1 ||| 2 45954 +a ||| would turn out in ||| 1 0.0437285 2.17609e-05 4.23659e-10 2.718 ||| 0-3 ||| 1 45954 +a ||| would ||| 0.0025652 0.0031159 0.000130565 0.0003658 2.718 ||| 0-0 ||| 2339 45954 +a ||| wound up ||| 0.142857 0.0268991 2.17609e-05 3.31344e-08 2.718 ||| 0-1 ||| 7 45954 +a ||| written off ||| 0.2 0.0698758 2.17609e-05 1.17245e-07 2.718 ||| 0-1 ||| 5 45954 +a ||| written on ||| 0.25 0.0963759 2.17609e-05 2.83735e-06 2.718 ||| 0-1 ||| 4 45954 +a ||| wrote about ||| 0.111111 0.0244529 2.17609e-05 5.55308e-08 2.718 ||| 0-1 ||| 9 45954 +a ||| year on ||| 0.0344828 0.0963759 2.17609e-05 1.21847e-05 2.718 ||| 0-1 ||| 29 45954 +a ||| year to ||| 0.0487805 0.270828 4.35218e-05 0.000155184 2.718 ||| 0-1 ||| 41 45954 +a ||| years 1917 to ||| 0.25 0.270828 2.17609e-05 7.87638e-10 2.718 ||| 0-2 ||| 4 45954 +a ||| years by ||| 0.05 0.0269646 2.17609e-05 2.49874e-06 2.718 ||| 0-1 ||| 20 45954 +a ||| years in the past ||| 1 0.0437285 2.17609e-05 1.55484e-10 2.718 ||| 0-1 ||| 1 45954 +a ||| years in the ||| 0.0769231 0.0437285 2.17609e-05 7.72401e-07 2.718 ||| 0-1 ||| 13 45954 +a ||| years in ||| 0.00826446 0.0437285 2.17609e-05 1.45381e-05 2.718 ||| 0-1 ||| 121 45954 +a ||| years to ||| 0.00595238 0.270828 2.17609e-05 0.000121175 2.718 ||| 0-1 ||| 168 45954 +a ||| yes vote on ||| 0.1 0.0963759 2.17609e-05 1.23687e-10 2.718 ||| 0-2 ||| 10 45954 +a ||| yet another Thaksin ||| 0.333333 0.0194175 2.17609e-05 2.33748e-12 2.718 ||| 0-2 ||| 3 45954 +a ||| yet to receive ||| 0.5 0.270828 2.17609e-05 7.83382e-09 2.718 ||| 0-1 ||| 2 45954 +a ||| yet to ||| 0.0126582 0.270828 2.17609e-05 0.000172172 2.718 ||| 0-1 ||| 79 45954 +a ||| yield on ||| 0.166667 0.0963759 2.17609e-05 1.50092e-06 2.718 ||| 0-1 ||| 6 45954 +a ||| you are ||| 0.00775194 0.0064903 2.17609e-05 1.1357e-06 2.718 ||| 0-0 ||| 129 45954 +a ||| you happen to ||| 0.142857 0.270828 2.17609e-05 5.54379e-08 2.718 ||| 0-2 ||| 7 45954 +a ||| you to ||| 0.2 0.270828 8.70436e-05 0.000533569 2.718 ||| 0-1 ||| 20 45954 +a ||| you ||| 0.000912409 0.0064903 2.17609e-05 0.0001534 2.718 ||| 0-0 ||| 1096 45954 +a ||| yourself ||| 0.0740741 0.0789474 4.35218e-05 7.08e-05 2.718 ||| 0-0 ||| 27 45954 +a ||| à la ||| 0.030303 0.235294 2.17609e-05 1.8408e-09 2.718 ||| 0-0 ||| 33 45954 +a ||| à ||| 0.3125 0.235294 0.000108804 9.44e-05 2.718 ||| 0-0 ||| 16 45954 +a ||| ‑ in ||| 1 0.0437285 2.17609e-05 2.29341e-06 2.718 ||| 0-1 ||| 1 45954 +a ||| € ||| 0.00520833 0.0100334 2.17609e-05 3.54e-05 2.718 ||| 0-0 ||| 192 45954 +a ||| € ™ s ||| 0.5 0.0100334 2.17609e-05 2.83943e-14 2.718 ||| 0-0 ||| 2 45954 +a ||| € ™ ||| 0.333333 0.0100334 2.17609e-05 2.301e-10 2.718 ||| 0-0 ||| 3 45954 +ambos lados del Atlántico ||| both sides of the Atlantic , ||| 0.2 0.00199368 0.0454545 0.00574778 2.718 ||| 0-0 1-1 2-2 2-3 3-4 ||| 5 22 +ambos lados del Atlántico ||| both sides of the Atlantic ||| 0.73913 0.00199368 0.772727 0.0281381 2.718 ||| 0-0 1-1 2-2 2-3 3-4 ||| 23 22 +ambos lados del Atlántico ||| either side of the Atlantic , ||| 1 1.1032e-05 0.0454545 1.23537e-05 2.718 ||| 0-0 1-1 2-2 2-3 3-4 ||| 1 22 +ambos lados del Atlántico ||| either side of the Atlantic ||| 0.5 1.1032e-05 0.0909091 6.04771e-05 2.718 ||| 0-0 1-1 2-2 2-3 3-4 ||| 4 22 +ambos lados del Atlántico ||| the Atlantic ||| 0.0344828 1.68088e-06 0.0454545 0.0552467 2.718 ||| 2-0 0-1 1-1 2-1 3-1 ||| 29 22 +ambos lados del ||| both ends of the ||| 0.5 0.000116579 0.0333333 0.000341394 2.718 ||| 0-0 1-1 2-2 2-3 ||| 2 30 +ambos lados del ||| both shores of the ||| 0.5 0.000570404 0.0333333 0.000341394 2.718 ||| 0-0 1-1 2-2 2-3 ||| 2 30 +ambos lados del ||| both sides in the ||| 0.5 0.00148412 0.0333333 0.00264 2.718 ||| 0-0 1-1 2-2 2-3 ||| 2 30 +ambos lados del ||| both sides of the ||| 0.571429 0.0036207 0.8 0.0307255 2.718 ||| 0-0 1-1 2-2 2-3 ||| 42 30 +ambos lados del ||| each side of the ||| 0.5 1.10769e-05 0.0333333 6.60382e-05 2.718 ||| 0-0 1-1 2-2 2-3 ||| 2 30 +ambos lados del ||| either side of the ||| 0.25 2.00351e-05 0.0666667 6.60382e-05 2.718 ||| 0-0 1-1 2-2 2-3 ||| 8 30 +ambos lados ||| , both sides ||| 0.0526316 0.0369121 0.0117647 0.102956 2.718 ||| 0-1 1-2 ||| 19 85 +ambos lados ||| both ends ||| 0.333333 0.0011885 0.0117647 0.0056002 2.718 ||| 0-0 1-1 ||| 3 85 +ambos lados ||| both shores ||| 0.5 0.00581512 0.0117647 0.0056002 2.718 ||| 0-0 1-1 ||| 2 85 +ambos lados ||| both sides of the counter ||| 1 0.019164 0.0117647 5.05906e-06 2.718 ||| 0-0 1-1 1-4 ||| 1 85 +ambos lados ||| both sides to ||| 0.111111 0.0369121 0.0117647 0.0415766 2.718 ||| 0-0 1-1 ||| 9 85 +ambos lados ||| both sides ||| 0.247104 0.0369121 0.752941 0.504019 2.718 ||| 0-0 1-1 ||| 259 85 +ambos lados ||| both ||| 0.000330033 2.6703e-06 0.0117647 0.80083 2.718 ||| 0-0 ||| 3030 85 +ambos lados ||| each side ||| 0.0416667 0.000112926 0.0117647 0.00108329 2.718 ||| 0-0 1-1 ||| 24 85 +ambos lados ||| either side ||| 0.2 0.000204253 0.0705882 0.00108329 2.718 ||| 0-0 1-1 ||| 30 85 +ambos lados ||| the two sides ||| 0.0638298 0.00478993 0.0352941 0.00323745 2.718 ||| 0-1 1-2 ||| 47 85 +ambos lados ||| to both sides ||| 0.25 0.0369121 0.0117647 0.0415766 2.718 ||| 0-1 1-2 ||| 4 85 +ambos lados ||| two sides ||| 0.0645161 0.00478993 0.0470588 0.0609349 2.718 ||| 0-0 1-1 ||| 62 85 +ambos ||| , both ||| 0.00501253 0.162823 0.0027248 0.163586 2.718 ||| 0-1 ||| 399 734 +ambos ||| , with both pushing ||| 0.5 0.162823 0.0013624 4.83317e-08 2.718 ||| 0-2 ||| 2 734 +ambos ||| , with both ||| 0.125 0.162823 0.0013624 0.000620433 2.718 ||| 0-2 ||| 8 734 +ambos ||| China ||| 0.000127812 0.0001453 0.0013624 0.0013831 2.718 ||| 0-0 ||| 7824 734 +ambos ||| Israelis and ||| 0.010989 0.0022727 0.0013624 1.1614e-05 2.718 ||| 0-0 ||| 91 734 +ambos ||| Israelis ||| 0.00289017 0.0022727 0.0013624 0.0013831 2.718 ||| 0-0 ||| 346 734 +ambos ||| U.S ||| 0.166667 0.2 0.0013624 0.0013831 2.718 ||| 0-0 ||| 6 734 +ambos ||| US and China ||| 0.030303 0.0001453 0.0013624 1.49345e-08 2.718 ||| 0-2 ||| 33 734 +ambos ||| all ||| 0.000358723 0.0003686 0.00408719 0.0041494 2.718 ||| 0-0 ||| 8363 734 +ambos ||| and China ||| 0.00289017 0.0001453 0.0013624 1.1614e-05 2.718 ||| 0-1 ||| 346 734 +ambos ||| as both ||| 0.0333333 0.162823 0.0013624 0.00677142 2.718 ||| 0-1 ||| 30 734 +ambos ||| bipartisan ||| 0.0277778 0.027027 0.0013624 0.0013831 2.718 ||| 0-0 ||| 36 734 +ambos ||| both closures ||| 1 0.162823 0.0013624 5.20539e-06 2.718 ||| 0-0 ||| 1 734 +ambos ||| both men ||| 0.0833333 0.162823 0.0013624 9.88224e-05 2.718 ||| 0-0 ||| 12 734 +ambos ||| both of them ||| 0.666667 0.162823 0.0027248 4.22927e-05 2.718 ||| 0-0 ||| 3 734 +ambos ||| both of these ||| 0.166667 0.0819338 0.0013624 0.000179547 2.718 ||| 0-0 0-2 ||| 6 734 +ambos ||| both of ||| 0.05 0.162823 0.0027248 0.0216353 2.718 ||| 0-0 ||| 40 734 +ambos ||| both pushing ||| 0.5 0.162823 0.0013624 6.23846e-05 2.718 ||| 0-0 ||| 2 734 +ambos ||| both research ||| 1 0.162823 0.0013624 6.23846e-05 2.718 ||| 0-0 ||| 1 734 +ambos ||| both sides ||| 0.019305 0.162823 0.00681199 0.000104028 2.718 ||| 0-0 ||| 259 734 +ambos ||| both the ||| 0.00420168 0.162823 0.0013624 0.0425478 2.718 ||| 0-0 ||| 238 734 +ambos ||| both ||| 0.181518 0.162823 0.749319 0.80083 2.718 ||| 0-0 ||| 3030 734 +ambos ||| by both ||| 0.0416667 0.162823 0.0027248 0.00542442 2.718 ||| 0-1 ||| 48 734 +ambos ||| claimed by both ||| 1 0.162823 0.0013624 1.76294e-07 2.718 ||| 0-2 ||| 1 734 +ambos ||| each ||| 0.00683761 0.0045977 0.0108992 0.011065 2.718 ||| 0-0 ||| 1170 734 +ambos ||| either side to guide market expectations ||| 0.5 0.008316 0.0013624 1.87069e-20 2.718 ||| 0-0 ||| 2 734 +ambos ||| either side to guide market ||| 0.5 0.008316 0.0013624 5.75597e-16 2.718 ||| 0-0 ||| 2 734 +ambos ||| either side to guide ||| 0.5 0.008316 0.0013624 3.54432e-12 2.718 ||| 0-0 ||| 2 734 +ambos ||| either side to ||| 0.25 0.008316 0.0013624 2.7264e-07 2.718 ||| 0-0 ||| 4 734 +ambos ||| either side ||| 0.0333333 0.008316 0.0013624 3.30512e-06 2.718 ||| 0-0 ||| 30 734 +ambos ||| either ||| 0.0155902 0.008316 0.00953679 0.011065 2.718 ||| 0-0 ||| 449 734 +ambos ||| now both ||| 0.333333 0.162823 0.0013624 0.00119099 2.718 ||| 0-1 ||| 3 734 +ambos ||| on both ||| 0.00613497 0.162823 0.0013624 0.00314126 2.718 ||| 0-1 ||| 163 734 +ambos ||| respective ||| 0.02 0.0217391 0.0013624 0.0013831 2.718 ||| 0-0 ||| 50 734 +ambos ||| saw the two ||| 1 0.0211289 0.0013624 5.34456e-07 2.718 ||| 0-2 ||| 1 734 +ambos ||| the US and China ||| 0.0208333 0.0001453 0.0013624 7.93463e-10 2.718 ||| 0-3 ||| 48 734 +ambos ||| the two men had ||| 1 0.0211289 0.0013624 9.0276e-10 2.718 ||| 0-1 ||| 1 734 +ambos ||| the two men ||| 0.0909091 0.0211289 0.0013624 6.34763e-07 2.718 ||| 0-1 ||| 11 734 +ambos ||| the two of ||| 0.5 0.0211289 0.0013624 0.000138969 2.718 ||| 0-1 ||| 2 734 +ambos ||| the two ||| 0.062201 0.0211289 0.0531335 0.00514394 2.718 ||| 0-1 ||| 627 734 +ambos ||| their ||| 7.04374e-05 7.4e-05 0.0013624 0.0013831 2.718 ||| 0-0 ||| 14197 734 +ambos ||| these two ||| 0.0166667 0.0110865 0.0027248 0.00080348 2.718 ||| 0-0 0-1 ||| 120 734 +ambos ||| these ||| 0.000501756 0.0010442 0.00408719 0.0082988 2.718 ||| 0-0 ||| 5979 734 +ambos ||| they both ||| 0.5 0.0816502 0.00408719 0.00664593 2.718 ||| 0-0 0-1 ||| 6 734 +ambos ||| they ||| 0.000242895 0.000477 0.0013624 0.0082988 2.718 ||| 0-0 ||| 4117 734 +ambos ||| to both ||| 0.0166667 0.162823 0.0013624 0.0660606 2.718 ||| 0-1 ||| 60 734 +ambos ||| two men had ||| 1 0.0211289 0.0013624 1.69916e-08 2.718 ||| 0-0 ||| 1 734 +ambos ||| two men ||| 0.047619 0.0211289 0.0013624 1.19474e-05 2.718 ||| 0-0 ||| 21 734 +ambos ||| two of ||| 0.012987 0.0211289 0.0013624 0.00261567 2.718 ||| 0-0 ||| 77 734 +ambos ||| two ||| 0.0192471 0.0211289 0.0926431 0.0968188 2.718 ||| 0-0 ||| 3533 734 +ambos ||| with both pushing ||| 0.5 0.162823 0.0013624 2.36606e-07 2.718 ||| 0-1 ||| 2 734 +ambos ||| with both ||| 0.0333333 0.162823 0.0013624 0.00303731 2.718 ||| 0-1 ||| 30 734 +del Atlántico ||| Atlantic ||| 0.0534351 0.0487903 0.118644 0.458016 2.718 ||| 0-0 1-0 ||| 131 59 +del Atlántico ||| both sides of the Atlantic ||| 0.0434783 0.0540114 0.0169492 1.23864e-08 2.718 ||| 0-2 0-3 1-4 ||| 23 59 +del Atlántico ||| of NATO ||| 0.0142857 6.9417e-05 0.0169492 0.00268426 2.718 ||| 0-0 1-1 ||| 70 59 +del Atlántico ||| of the Atlantic , ||| 0.25 0.0540114 0.0508475 0.0114039 2.718 ||| 0-0 0-1 1-2 ||| 12 59 +del Atlántico ||| of the Atlantic ||| 0.902439 0.0540114 0.627119 0.0558274 2.718 ||| 0-0 0-1 1-2 ||| 41 59 +del Atlántico ||| sides of the Atlantic ||| 0.037037 0.0540114 0.0169492 7.25198e-06 2.718 ||| 0-1 0-2 1-3 ||| 27 59 +del Atlántico ||| than the Atlantic ||| 1 0.0304059 0.0169492 0.00180638 2.718 ||| 0-0 0-1 1-2 ||| 1 59 +del Atlántico ||| the Atlantic ||| 0.241379 0.0419618 0.118644 0.109492 2.718 ||| 0-0 0-1 1-1 ||| 29 59 +del Atlántico ||| transatlantic ||| 0.00787402 6.87576e-05 0.0169492 0.0105263 2.718 ||| 1-0 ||| 127 59 +del ||| # 45 ||| 0.0138889 0.0147929 3.59635e-05 8.16454e-08 2.718 ||| 0-1 ||| 72 27806 +del ||| % , accounting ||| 1 0.0645021 3.59635e-05 1.09371e-07 2.718 ||| 0-0 ||| 1 27806 +del ||| % , ||| 0.00342466 0.0645021 3.59635e-05 0.00210329 2.718 ||| 0-0 ||| 292 27806 +del ||| % ||| 0.0008285 0.0645021 0.00010789 0.0102966 2.718 ||| 0-0 ||| 3621 27806 +del ||| & # 45 ||| 0.0126582 0.0147929 3.59635e-05 1.15063e-10 2.718 ||| 0-2 ||| 79 27806 +del ||| ' ||| 0.00307882 0.0044162 0.000179817 0.0004334 2.718 ||| 0-0 ||| 1624 27806 +del ||| 's " going ||| 1 0.145691 3.59635e-05 2.99241e-07 2.718 ||| 0-0 ||| 1 27806 +del ||| 's " off the ||| 1 0.0638053 3.59635e-05 2.13721e-08 2.718 ||| 0-3 ||| 1 27806 +del ||| 's " pink-collar " ||| 0.333333 0.145691 3.59635e-05 2.26641e-11 2.718 ||| 0-0 ||| 3 27806 +del ||| 's " pink-collar ||| 0.333333 0.145691 3.59635e-05 4.53818e-09 2.718 ||| 0-0 ||| 3 27806 +del ||| 's " ||| 0.0153846 0.145691 7.19269e-05 0.000698182 2.718 ||| 0-0 ||| 130 27806 +del ||| 's ( ||| 0.166667 0.145691 7.19269e-05 0.000147085 2.718 ||| 0-0 ||| 12 27806 +del ||| 's , ||| 0.00869565 0.145691 3.59635e-05 0.0285573 2.718 ||| 0-0 ||| 115 27806 +del ||| 's 2002 ||| 0.5 0.145691 3.59635e-05 2.72613e-06 2.718 ||| 0-0 ||| 2 27806 +del ||| 's East ||| 0.25 0.145691 3.59635e-05 1.90689e-05 2.718 ||| 0-0 ||| 4 27806 +del ||| 's Old ||| 0.117647 0.145691 7.19269e-05 6.36096e-06 2.718 ||| 0-0 ||| 17 27806 +del ||| 's Wings ||| 1 0.322845 3.59635e-05 2.41856e-06 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| 's added value , ||| 1 0.145691 3.59635e-05 3.61036e-10 2.718 ||| 0-0 ||| 1 27806 +del ||| 's added value ||| 1 0.145691 3.59635e-05 1.76744e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| 's added ||| 1 0.145691 3.59635e-05 9.0731e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| 's agenda when it ||| 0.5 0.145691 3.59635e-05 7.03999e-11 2.718 ||| 0-0 ||| 2 27806 +del ||| 's agenda when ||| 0.5 0.145691 3.59635e-05 2.64398e-09 2.718 ||| 0-0 ||| 2 27806 +del ||| 's agenda ||| 0.0178571 0.145691 3.59635e-05 7.26967e-06 2.718 ||| 0-0 ||| 56 27806 +del ||| 's appetite ||| 0.5 0.145691 3.59635e-05 1.81742e-06 2.718 ||| 0-0 ||| 2 27806 +del ||| 's assertive ||| 1 0.145691 3.59635e-05 1.81742e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| 's avoidance ||| 0.25 0.145691 3.59635e-05 9.08708e-07 2.718 ||| 0-0 ||| 4 27806 +del ||| 's better ||| 0.333333 0.145691 3.59635e-05 2.90507e-05 2.718 ||| 0-0 ||| 3 27806 +del ||| 's bidding ||| 1 0.145691 3.59635e-05 1.81742e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| 's bosses are ||| 1 0.145691 3.59635e-05 6.72762e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| 's bosses ||| 1 0.145691 3.59635e-05 9.08708e-07 2.718 ||| 0-0 ||| 1 27806 +del ||| 's cells ||| 0.5 0.145691 3.59635e-05 3.63483e-06 2.718 ||| 0-0 ||| 2 27806 +del ||| 's central bank ||| 0.030303 0.145691 3.59635e-05 1.45602e-09 2.718 ||| 0-0 ||| 33 27806 +del ||| 's central ||| 0.02 0.145691 3.59635e-05 1.17992e-05 2.718 ||| 0-0 ||| 50 27806 +del ||| 's cheer squad ||| 1 0.145691 3.59635e-05 1.18132e-11 2.718 ||| 0-0 ||| 1 27806 +del ||| 's cheer ||| 1 0.145691 3.59635e-05 1.81742e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| 's citizens ||| 0.015625 0.145691 3.59635e-05 1.81742e-06 2.718 ||| 0-0 ||| 64 27806 +del ||| 's claims ||| 0.0833333 0.145691 3.59635e-05 1.54341e-05 2.718 ||| 0-0 ||| 12 27806 +del ||| 's constitutional ||| 0.1 0.145691 3.59635e-05 4.54354e-06 2.718 ||| 0-0 ||| 10 27806 +del ||| 's continued ||| 0.1 0.145691 3.59635e-05 1.45254e-05 2.718 ||| 0-0 ||| 10 27806 +del ||| 's continuing ||| 0.2 0.145691 3.59635e-05 1.72515e-05 2.718 ||| 0-0 ||| 5 27806 +del ||| 's crisis ||| 0.0120482 0.145691 3.59635e-05 2.63246e-05 2.718 ||| 0-0 ||| 83 27806 +del ||| 's dire ||| 0.5 0.145691 3.59635e-05 3.63483e-06 2.718 ||| 0-0 ||| 2 27806 +del ||| 's effective ||| 1 0.145691 3.59635e-05 7.26967e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| 's employment ||| 0.25 0.0690355 3.59635e-05 1.83561e-05 2.718 ||| 0-1 ||| 4 27806 +del ||| 's expectation ||| 0.333333 0.145691 3.59635e-05 2.72613e-06 2.718 ||| 0-0 ||| 3 27806 +del ||| 's eye a ||| 0.5 0.145691 3.59635e-05 1.05909e-06 2.718 ||| 0-0 ||| 2 27806 +del ||| 's eye ||| 0.333333 0.145691 7.19269e-05 2.63246e-05 2.718 ||| 0-0 ||| 6 27806 +del ||| 's fall to ||| 1 0.145691 3.59635e-05 2.62128e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| 's fall ||| 0.0222222 0.145691 3.59635e-05 3.17768e-05 2.718 ||| 0-0 ||| 45 27806 +del ||| 's first ||| 0.015625 0.145691 3.59635e-05 6.90059e-05 2.718 ||| 0-0 ||| 64 27806 +del ||| 's for the ||| 1 0.0638053 3.59635e-05 1.77221e-05 2.718 ||| 0-2 ||| 1 27806 +del ||| 's government ||| 0.00180832 0.108398 3.59635e-05 0.00118261 2.718 ||| 0-0 0-1 ||| 553 27806 +del ||| 's great ||| 0.0588235 0.145691 3.59635e-05 2.99594e-05 2.718 ||| 0-0 ||| 17 27806 +del ||| 's greatest ||| 0.0588235 0.145691 3.59635e-05 2.72613e-06 2.718 ||| 0-0 ||| 17 27806 +del ||| 's highest tuition fees ||| 0.333333 0.145691 3.59635e-05 1.15002e-15 2.718 ||| 0-0 ||| 3 27806 +del ||| 's highest tuition ||| 0.333333 0.145691 3.59635e-05 5.89752e-11 2.718 ||| 0-0 ||| 3 27806 +del ||| 's highest ||| 0.142857 0.145691 0.00010789 9.0731e-06 2.718 ||| 0-0 ||| 21 27806 +del ||| 's inflated ||| 1 0.145691 3.59635e-05 1.81742e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| 's international ||| 0.0238095 0.145691 3.59635e-05 3.4503e-05 2.718 ||| 0-0 ||| 42 27806 +del ||| 's largest ||| 0.0119048 0.145691 3.59635e-05 1.27079e-05 2.718 ||| 0-0 ||| 84 27806 +del ||| 's last ||| 0.0714286 0.145691 3.59635e-05 3.99412e-05 2.718 ||| 0-0 ||| 14 27806 +del ||| 's leadership . ||| 1 0.145691 3.59635e-05 1.21038e-07 2.718 ||| 0-0 ||| 1 27806 +del ||| 's leadership of the ||| 0.333333 0.0980897 3.59635e-05 1.78764e-07 2.718 ||| 0-2 0-3 ||| 3 27806 +del ||| 's leadership ||| 0.0232558 0.145691 7.19269e-05 2.63246e-05 2.718 ||| 0-0 ||| 86 27806 +del ||| 's lumbering ||| 0.5 0.145691 3.59635e-05 9.08708e-07 2.718 ||| 0-0 ||| 2 27806 +del ||| 's main ||| 0.0204082 0.145691 3.59635e-05 1.17992e-05 2.718 ||| 0-0 ||| 49 27806 +del ||| 's massive ||| 0.0769231 0.145691 3.59635e-05 1.54341e-05 2.718 ||| 0-0 ||| 13 27806 +del ||| 's military ||| 0.0105263 0.145691 3.59635e-05 3.63204e-05 2.718 ||| 0-0 ||| 95 27806 +del ||| 's motive force ||| 0.0625 0.145691 3.59635e-05 2.65525e-10 2.718 ||| 0-0 ||| 16 27806 +del ||| 's motive ||| 0.0625 0.145691 3.59635e-05 9.08708e-07 2.718 ||| 0-0 ||| 16 27806 +del ||| 's noncompliance ||| 0.5 0.145691 3.59635e-05 9.08708e-07 2.718 ||| 0-0 ||| 2 27806 +del ||| 's now ||| 1 0.145691 3.59635e-05 0.000207912 2.718 ||| 0-0 ||| 1 27806 +del ||| 's office ||| 0.0666667 0.145691 3.59635e-05 2.90507e-05 2.718 ||| 0-0 ||| 15 27806 +del ||| 's old ||| 0.04 0.145691 3.59635e-05 3.90465e-05 2.718 ||| 0-0 ||| 25 27806 +del ||| 's ongoing ||| 0.166667 0.145691 3.59635e-05 1.54341e-05 2.718 ||| 0-0 ||| 6 27806 +del ||| 's own ||| 0.0795455 0.145691 0.000251744 0.000292352 2.718 ||| 0-0 ||| 88 27806 +del ||| 's party ||| 0.0434783 0.107504 3.59635e-05 0.000164784 2.718 ||| 0-0 0-1 ||| 23 27806 +del ||| 's policy ||| 0.019802 0.145691 7.19269e-05 4.35761e-05 2.718 ||| 0-0 ||| 101 27806 +del ||| 's political ||| 0.00704225 0.145691 3.59635e-05 5.08457e-05 2.718 ||| 0-0 ||| 142 27806 +del ||| 's position ||| 0.0121951 0.145691 3.59635e-05 2.1795e-05 2.718 ||| 0-0 ||| 82 27806 +del ||| 's power cable was yanked ||| 1 0.145691 3.59635e-05 2.11687e-17 2.718 ||| 0-0 ||| 1 27806 +del ||| 's power cable was ||| 1 0.145691 3.59635e-05 3.25673e-12 2.718 ||| 0-0 ||| 1 27806 +del ||| 's power cable ||| 1 0.145691 3.59635e-05 8.61637e-10 2.718 ||| 0-0 ||| 1 27806 +del ||| 's power ||| 0.0196078 0.145691 3.59635e-05 6.62798e-05 2.718 ||| 0-0 ||| 51 27806 +del ||| 's powers ||| 0.0769231 0.145691 3.59635e-05 5.45225e-06 2.718 ||| 0-0 ||| 13 27806 +del ||| 's prime ||| 0.166667 0.145691 3.59635e-05 2.1795e-05 2.718 ||| 0-0 ||| 6 27806 +del ||| 's proposed ||| 0.0769231 0.145691 7.19269e-05 3.63483e-06 2.718 ||| 0-0 ||| 26 27806 +del ||| 's reach ||| 0.333333 0.145691 3.59635e-05 2.54159e-05 2.718 ||| 0-0 ||| 3 27806 +del ||| 's rebalancing ||| 0.5 0.145691 3.59635e-05 2.72613e-06 2.718 ||| 0-0 ||| 2 27806 +del ||| 's recent ||| 0.0126582 0.145691 3.59635e-05 1.90689e-05 2.718 ||| 0-0 ||| 79 27806 +del ||| 's regime down ||| 0.25 0.145691 3.59635e-05 1.45854e-08 2.718 ||| 0-0 ||| 4 27806 +del ||| 's regime ||| 0.00862069 0.145691 3.59635e-05 9.98181e-06 2.718 ||| 0-0 ||| 116 27806 +del ||| 's seat of the Fatah ||| 1 0.145691 3.59635e-05 6.77202e-13 2.718 ||| 0-0 ||| 1 27806 +del ||| 's seat of the ||| 1 0.145691 3.59635e-05 1.30231e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| 's seat of ||| 1 0.145691 3.59635e-05 2.4512e-07 2.718 ||| 0-0 ||| 1 27806 +del ||| 's seat ||| 0.125 0.145691 3.59635e-05 9.0731e-06 2.718 ||| 0-0 ||| 8 27806 +del ||| 's strong track ||| 1 0.145691 3.59635e-05 2.82954e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| 's strong ||| 0.2 0.145691 7.19269e-05 2.90507e-05 2.718 ||| 0-0 ||| 10 27806 +del ||| 's than to seem to be in ||| 0.5 0.145691 3.59635e-05 1.5363e-14 2.718 ||| 0-0 ||| 2 27806 +del ||| 's than to seem to be ||| 0.5 0.145691 3.59635e-05 9.99843e-13 2.718 ||| 0-0 ||| 2 27806 +del ||| 's than to seem to ||| 0.5 0.145691 3.59635e-05 9.70119e-11 2.718 ||| 0-0 ||| 2 27806 +del ||| 's than to seem ||| 0.5 0.145691 3.59635e-05 1.17604e-09 2.718 ||| 0-0 ||| 2 27806 +del ||| 's than to ||| 0.5 0.145691 3.59635e-05 4.64288e-06 2.718 ||| 0-0 ||| 2 27806 +del ||| 's than ||| 0.5 0.145691 3.59635e-05 5.6284e-05 2.718 ||| 0-0 ||| 2 27806 +del ||| 's top prosecutor ||| 0.125 0.145691 3.59635e-05 6.49181e-10 2.718 ||| 0-0 ||| 8 27806 +del ||| 's top ||| 0.0571429 0.145691 7.19269e-05 4.9937e-05 2.718 ||| 0-0 ||| 35 27806 +del ||| 's total ||| 0.025 0.145691 3.59635e-05 2.27037e-05 2.718 ||| 0-0 ||| 40 27806 +del ||| 's traditional ||| 0.0285714 0.145691 3.59635e-05 5.45225e-06 2.718 ||| 0-0 ||| 35 27806 +del ||| 's usual ||| 1 0.145691 3.59635e-05 5.45225e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| 's wartime ||| 1 0.145691 3.59635e-05 9.08708e-07 2.718 ||| 0-0 ||| 1 27806 +del ||| 's worst ||| 0.1 0.145691 3.59635e-05 3.63483e-06 2.718 ||| 0-0 ||| 10 27806 +del ||| 's ||| 0.247515 0.145691 0.185356 0.139801 2.718 ||| 0-0 ||| 20823 27806 +del ||| 't take orders from the ||| 1 0.0740472 3.59635e-05 3.01084e-14 2.718 ||| 0-3 0-4 ||| 1 27806 +del ||| " animal spirits " of ||| 0.5 0.132374 3.59635e-05 1.07486e-15 2.718 ||| 0-4 ||| 2 27806 +del ||| " dead cat bounce " ||| 0.5 0.133333 3.59635e-05 6.57053e-19 2.718 ||| 0-3 ||| 2 27806 +del ||| " dead cat bounce ||| 0.5 0.133333 3.59635e-05 1.31566e-16 2.718 ||| 0-3 ||| 2 27806 +del ||| " gilts " ||| 1 1 3.59635e-05 4.3148e-10 2.718 ||| 0-1 ||| 1 27806 +del ||| " gilts ||| 1 1 3.59635e-05 8.63979e-08 2.718 ||| 0-1 ||| 1 27806 +del ||| " of ||| 0.00566572 0.132374 7.19269e-05 0.00127352 2.718 ||| 0-1 ||| 353 27806 +del ||| " off the ||| 0.0294118 0.0638053 3.59635e-05 1.37236e-06 2.718 ||| 0-2 ||| 34 27806 +del ||| " surge " ||| 0.0588235 0.0063694 3.59635e-05 4.3148e-10 2.718 ||| 0-1 ||| 17 27806 +del ||| " surge ||| 0.0454545 0.0063694 3.59635e-05 8.63979e-08 2.718 ||| 0-1 ||| 22 27806 +del ||| ( CCP ||| 0.2 0.217391 3.59635e-05 2.73546e-07 2.718 ||| 0-1 ||| 5 27806 +del ||| ( CCX ) , ||| 1 1 3.59635e-05 4.2255e-12 2.718 ||| 0-1 ||| 1 27806 +del ||| ( CCX ) ||| 1 1 3.59635e-05 2.06858e-11 2.718 ||| 0-1 ||| 1 27806 +del ||| ( CCX ||| 1 1 3.59635e-05 1.82013e-08 2.718 ||| 0-1 ||| 1 27806 +del ||| ( ECB ) ||| 0.0769231 0.112847 3.59635e-05 1.34721e-09 2.718 ||| 0-1 ||| 13 27806 +del ||| ( ECB ||| 0.0909091 0.112847 3.59635e-05 1.1854e-06 2.718 ||| 0-1 ||| 11 27806 +del ||| ( PAP ) ||| 0.5 0.4375 3.59635e-05 1.4504e-10 2.718 ||| 0-1 ||| 2 27806 +del ||| ( PAP ||| 0.5 0.4375 3.59635e-05 1.2762e-07 2.718 ||| 0-1 ||| 2 27806 +del ||| ) of ||| 0.0169492 0.132374 3.59635e-05 0.000289814 2.718 ||| 0-1 ||| 59 27806 +del ||| , a member of the ||| 0.333333 0.0980897 3.59635e-05 5.53093e-08 2.718 ||| 0-3 0-4 ||| 3 27806 +del ||| , and out of that turmoil a ||| 1 0.132374 3.59635e-05 1.24352e-14 2.718 ||| 0-3 ||| 1 27806 +del ||| , and out of that turmoil ||| 1 0.132374 3.59635e-05 3.09088e-13 2.718 ||| 0-3 ||| 1 27806 +del ||| , and out of that ||| 1 0.132374 3.59635e-05 1.58507e-08 2.718 ||| 0-3 ||| 1 27806 +del ||| , and out of ||| 0.5 0.132374 3.59635e-05 1.94016e-06 2.718 ||| 0-3 ||| 2 27806 +del ||| , and the ||| 0.000432339 0.0638053 3.59635e-05 0.000410051 2.718 ||| 0-2 ||| 2313 27806 +del ||| , and was found wanting . the ||| 1 0.0638053 3.59635e-05 5.59452e-17 2.718 ||| 0-6 ||| 1 27806 +del ||| , are quite varied ||| 1 0.0333333 3.59635e-05 1.02233e-11 2.718 ||| 0-2 ||| 1 27806 +del ||| , are quite ||| 1 0.0333333 3.59635e-05 3.14562e-07 2.718 ||| 0-2 ||| 1 27806 +del ||| , community / social mobilization and ||| 1 0.0063211 3.59635e-05 1.17408e-20 2.718 ||| 0-2 ||| 1 27806 +del ||| , community / social mobilization ||| 1 0.0063211 3.59635e-05 1.3982e-18 2.718 ||| 0-2 ||| 1 27806 +del ||| , community / social ||| 1 0.0063211 3.59635e-05 2.15107e-13 2.718 ||| 0-2 ||| 1 27806 +del ||| , community / ||| 1 0.0063211 3.59635e-05 1.8401e-09 2.718 ||| 0-2 ||| 1 27806 +del ||| , for ||| 0.000502513 0.0087283 3.59635e-05 0.00105518 2.718 ||| 0-1 ||| 1990 27806 +del ||| , from ||| 0.0122449 0.0842892 0.000215781 0.0050741 2.718 ||| 0-1 ||| 490 27806 +del ||| , gives him a substantial popularity dividend ||| 1 0.0065359 3.59635e-05 4.55321e-24 2.718 ||| 0-5 ||| 1 27806 +del ||| , gives him a substantial popularity ||| 1 0.0065359 3.59635e-05 2.33498e-19 2.718 ||| 0-5 ||| 1 27806 +del ||| , had the ||| 0.0909091 0.0638053 3.59635e-05 6.94495e-05 2.718 ||| 0-2 ||| 11 27806 +del ||| , in ||| 0.000327439 0.0166084 3.59635e-05 0.00447569 2.718 ||| 0-1 ||| 3054 27806 +del ||| , including the ||| 0.00440529 0.0638053 3.59635e-05 7.61298e-06 2.718 ||| 0-2 ||| 227 27806 +del ||| , of the ||| 0.0333333 0.0980897 7.19269e-05 0.0124525 2.718 ||| 0-1 0-2 ||| 60 27806 +del ||| , of ||| 0.00715563 0.132374 0.000143854 0.0520901 2.718 ||| 0-1 ||| 559 27806 +del ||| , on the ||| 0.00502513 0.0406198 3.59635e-05 0.000333511 2.718 ||| 0-1 0-2 ||| 199 27806 +del ||| , presided over by ||| 0.25 0.0100882 3.59635e-05 1.02678e-11 2.718 ||| 0-3 ||| 4 27806 +del ||| , the ||| 0.000626096 0.0638053 0.000359635 0.0488325 2.718 ||| 0-1 ||| 15972 27806 +del ||| - it is in the ||| 1 0.0402068 3.59635e-05 1.98543e-09 2.718 ||| 0-3 0-4 ||| 1 27806 +del ||| -- the ||| 0.00230947 0.0638053 7.19269e-05 0.00120165 2.718 ||| 0-1 ||| 866 27806 +del ||| -- whose chief ||| 0.0833333 0.0251046 3.59635e-05 1.01939e-11 2.718 ||| 0-2 ||| 12 27806 +del ||| . in the meantime ||| 1 0.0638053 3.59635e-05 3.29337e-10 2.718 ||| 0-2 ||| 1 27806 +del ||| . in the ||| 0.0588235 0.0638053 3.59635e-05 1.68891e-05 2.718 ||| 0-2 ||| 17 27806 +del ||| . the ||| 0.00549451 0.0638053 3.59635e-05 0.00109916 2.718 ||| 0-1 ||| 182 27806 +del ||| . ||| 1.25517e-05 2.67e-05 7.19269e-05 6.93e-05 2.718 ||| 0-0 ||| 159341 27806 +del ||| / social mobilization and ||| 1 0.0063211 3.59635e-05 5.53193e-16 2.718 ||| 0-0 ||| 1 27806 +del ||| / social mobilization ||| 1 0.0063211 3.59635e-05 6.5879e-14 2.718 ||| 0-0 ||| 1 27806 +del ||| / social ||| 1 0.0063211 3.59635e-05 1.01352e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| / ||| 0.00630915 0.0063211 0.000143854 8.67e-05 2.718 ||| 0-0 ||| 634 27806 +del ||| 20 % , accounting ||| 1 0.0645021 3.59635e-05 2.13274e-12 2.718 ||| 0-1 ||| 1 27806 +del ||| 20 % , ||| 0.0833333 0.0645021 3.59635e-05 4.10142e-08 2.718 ||| 0-1 ||| 12 27806 +del ||| 20 % ||| 0.00332226 0.0645021 3.59635e-05 2.00784e-07 2.718 ||| 0-1 ||| 301 27806 +del ||| 45 ||| 0.00909091 0.0147929 3.59635e-05 8.67e-05 2.718 ||| 0-0 ||| 110 27806 +del ||| 9 ||| 0.0837989 0.159091 0.000539452 0.000728 2.718 ||| 0-0 ||| 179 27806 +del ||| 90 's for the ||| 1 0.0638053 3.59635e-05 1.15194e-10 2.718 ||| 0-3 ||| 1 27806 +del ||| ; falling temperatures and spreading ice ages ||| 0.5 0.0784314 3.59635e-05 1.98834e-27 2.718 ||| 0-5 ||| 2 27806 +del ||| ; falling temperatures and spreading ice ||| 0.5 0.0784314 3.59635e-05 1.01966e-22 2.718 ||| 0-5 ||| 2 27806 +del ||| AIDS affects ||| 1 0.0699708 3.59635e-05 5.408e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| AIDS ||| 0.00381679 0.0699708 3.59635e-05 0.000416 2.718 ||| 0-0 ||| 262 27806 +del ||| Afghanistan 's ||| 0.0277778 0.145691 3.59635e-05 9.08708e-07 2.718 ||| 0-1 ||| 36 27806 +del ||| Age of ||| 0.0434783 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 23 27806 +del ||| America 's ||| 0.00848896 0.145691 0.000179817 0.000166154 2.718 ||| 0-1 ||| 589 27806 +del ||| Ana Gomes , a member of the ||| 1 0.0980897 3.59635e-05 2.33682e-18 2.718 ||| 0-5 0-6 ||| 1 27806 +del ||| Argentina 's crisis ||| 0.0555556 0.145691 3.59635e-05 1.53736e-09 2.718 ||| 0-1 ||| 18 27806 +del ||| Argentina 's ||| 0.0277778 0.145691 7.19269e-05 8.1644e-06 2.718 ||| 0-1 ||| 72 27806 +del ||| Asia 's ||| 0.00854701 0.145691 3.59635e-05 1.17992e-05 2.718 ||| 0-1 ||| 117 27806 +del ||| Asian ||| 0.00119332 0.019802 3.59635e-05 0.0002427 2.718 ||| 0-0 ||| 838 27806 +del ||| Baltic ||| 0.00840336 0.100719 3.59635e-05 0.0002427 2.718 ||| 0-0 ||| 119 27806 +del ||| Britain 's ||| 0.0147059 0.145691 3.59635e-05 2.8142e-05 2.718 ||| 0-1 ||| 68 27806 +del ||| British Prime Minister Gordon Brown has made ||| 0.5 0.008 3.59635e-05 1.85945e-28 2.718 ||| 0-4 ||| 2 27806 +del ||| British Prime Minister Gordon Brown has ||| 0.333333 0.008 3.59635e-05 1.68429e-25 2.718 ||| 0-4 ||| 3 27806 +del ||| British Prime Minister Gordon Brown ||| 0.0526316 0.008 3.59635e-05 5.0753e-23 2.718 ||| 0-4 ||| 19 27806 +del ||| Brown has made such quantifiable goals a ||| 0.5 0.008 3.59635e-05 1.59664e-24 2.718 ||| 0-0 ||| 2 27806 +del ||| Brown has made such quantifiable goals ||| 0.5 0.008 3.59635e-05 3.96859e-23 2.718 ||| 0-0 ||| 2 27806 +del ||| Brown has made such quantifiable ||| 0.5 0.008 3.59635e-05 8.72218e-19 2.718 ||| 0-0 ||| 2 27806 +del ||| Brown has made such ||| 0.5 0.008 3.59635e-05 1.34187e-13 2.718 ||| 0-0 ||| 2 27806 +del ||| Brown has made ||| 0.333333 0.008 3.59635e-05 6.33826e-11 2.718 ||| 0-0 ||| 3 27806 +del ||| Brown has ||| 0.111111 0.008 3.59635e-05 5.74118e-08 2.718 ||| 0-0 ||| 9 27806 +del ||| Brown ||| 0.00671141 0.008 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 149 27806 +del ||| Bush 's leadership . ||| 1 0.145691 3.59635e-05 8.6421e-12 2.718 ||| 0-1 ||| 1 27806 +del ||| Bush 's leadership ||| 0.25 0.145691 3.59635e-05 1.87958e-09 2.718 ||| 0-1 ||| 4 27806 +del ||| Bush 's ||| 0.0210526 0.145691 7.19269e-05 9.98181e-06 2.718 ||| 0-1 ||| 95 27806 +del ||| CCP ||| 0.0178571 0.217391 3.59635e-05 0.00026 2.718 ||| 0-0 ||| 56 27806 +del ||| CCX ) , ||| 1 1 3.59635e-05 4.01626e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| CCX ) ||| 1 1 3.59635e-05 1.96614e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| CCX ||| 1 1 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 1 27806 +del ||| CO2 increased by 20 % , accounting ||| 1 0.0645021 3.59635e-05 8.11106e-23 2.718 ||| 0-4 ||| 1 27806 +del ||| CO2 increased by 20 % , ||| 1 0.0645021 3.59635e-05 1.55982e-18 2.718 ||| 0-4 ||| 1 27806 +del ||| CO2 increased by 20 % ||| 1 0.0645021 3.59635e-05 7.63604e-18 2.718 ||| 0-4 ||| 1 27806 +del ||| Campaign ||| 0.166667 0.166667 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 6 27806 +del ||| Catholic ||| 0.00793651 0.0087719 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 126 27806 +del ||| Chief Justice ||| 0.0526316 0.112149 3.59635e-05 8.112e-09 2.718 ||| 0-0 ||| 19 27806 +del ||| Chief ||| 0.0106383 0.112149 3.59635e-05 0.000208 2.718 ||| 0-0 ||| 94 27806 +del ||| China 's ||| 0.001002 0.145691 3.59635e-05 9.80566e-05 2.718 ||| 0-1 ||| 998 27806 +del ||| Climate ||| 0.0223881 0.0588235 0.00010789 0.000208 2.718 ||| 0-0 ||| 134 27806 +del ||| Co-Prosperity ||| 1 0.5 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 1 27806 +del ||| Committee of ||| 0.25 0.0507614 3.59635e-05 4.68189e-06 2.718 ||| 0-0 ||| 4 27806 +del ||| Committee ||| 0.00833333 0.0507614 7.19269e-05 0.0001733 2.718 ||| 0-0 ||| 240 27806 +del ||| Community of the ||| 1 0.0980897 3.59635e-05 2.37748e-06 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| Congress ||| 0.0020284 0.0704846 3.59635e-05 0.000832 2.718 ||| 0-0 ||| 493 27806 +del ||| Crown ||| 0.0666667 0.190476 3.59635e-05 6.93e-05 2.718 ||| 0-0 ||| 15 27806 +del ||| Cup ||| 0.0363636 0.213483 7.19269e-05 0.0006587 2.718 ||| 0-0 ||| 55 27806 +del ||| DPP ||| 0.037037 0.166667 3.59635e-05 8.67e-05 2.718 ||| 0-0 ||| 27 27806 +del ||| DSM ||| 0.0555556 0.173913 3.59635e-05 6.93e-05 2.718 ||| 0-0 ||| 18 27806 +del ||| Danish ||| 0.0172414 0.030303 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 58 27806 +del ||| Delta ||| 0.025641 0.453333 3.59635e-05 0.0005894 2.718 ||| 0-0 ||| 39 27806 +del ||| Department imposed sanctions 111 times against foreign ||| 1 0.122222 3.59635e-05 3.00777e-29 2.718 ||| 0-0 ||| 1 27806 +del ||| Department imposed sanctions 111 times against ||| 1 0.122222 3.59635e-05 1.9293e-25 2.718 ||| 0-0 ||| 1 27806 +del ||| Department imposed sanctions 111 times ||| 1 0.122222 3.59635e-05 5.71305e-22 2.718 ||| 0-0 ||| 1 27806 +del ||| Department imposed sanctions 111 ||| 1 0.122222 3.59635e-05 2.93278e-18 2.718 ||| 0-0 ||| 1 27806 +del ||| Department imposed sanctions ||| 1 0.122222 3.59635e-05 4.51196e-13 2.718 ||| 0-0 ||| 1 27806 +del ||| Department imposed ||| 1 0.122222 3.59635e-05 1.73537e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| Department ||| 0.00813008 0.122222 3.59635e-05 0.0003814 2.718 ||| 0-0 ||| 123 27806 +del ||| Depression led to the disintegration of liberal ||| 1 0.0638053 3.59635e-05 3.04086e-22 2.718 ||| 0-3 ||| 1 27806 +del ||| Depression led to the disintegration of ||| 1 0.0638053 3.59635e-05 1.16956e-17 2.718 ||| 0-3 ||| 1 27806 +del ||| Depression led to the disintegration ||| 1 0.0638053 3.59635e-05 4.32913e-16 2.718 ||| 0-3 ||| 1 27806 +del ||| Depression led to the ||| 1 0.0638053 3.59635e-05 3.3301e-11 2.718 ||| 0-3 ||| 1 27806 +del ||| ECB ) ||| 0.0714286 0.112847 3.59635e-05 1.28049e-06 2.718 ||| 0-0 ||| 14 27806 +del ||| ECB ||| 0.0018622 0.112847 3.59635e-05 0.0011267 2.718 ||| 0-0 ||| 537 27806 +del ||| East Asian ||| 0.0140845 0.019802 3.59635e-05 3.31043e-08 2.718 ||| 0-1 ||| 71 27806 +del ||| East ||| 0.0254237 0.104699 0.000539452 0.0035535 2.718 ||| 0-0 ||| 590 27806 +del ||| Eastern ||| 0.031339 0.285714 0.000395598 0.0035015 2.718 ||| 0-0 ||| 351 27806 +del ||| England 's ||| 0.2 0.145691 3.59635e-05 2.72613e-06 2.718 ||| 0-1 ||| 5 27806 +del ||| Environment Program ||| 0.2 0.0352941 3.59635e-05 3.38e-10 2.718 ||| 0-1 ||| 5 27806 +del ||| Europe 's ||| 0.00166945 0.145691 3.59635e-05 6.71885e-05 2.718 ||| 0-1 ||| 599 27806 +del ||| Executive ||| 0.0212766 0.0169492 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 47 27806 +del ||| FSB ||| 0.0126582 0.0447761 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 79 27806 +del ||| Forum 's ||| 0.166667 0.145691 3.59635e-05 9.08708e-07 2.718 ||| 0-1 ||| 6 27806 +del ||| From the Cold ||| 1 0.212121 3.59635e-05 1.2567e-10 2.718 ||| 0-0 ||| 1 27806 +del ||| From the ||| 0.25 0.212121 0.00010789 6.44462e-06 2.718 ||| 0-0 ||| 12 27806 +del ||| From ||| 0.0952381 0.212121 7.19269e-05 0.0001213 2.718 ||| 0-0 ||| 21 27806 +del ||| G-20 Spotlight ||| 0.0769231 0.33438 3.59635e-05 2.39993e-08 2.718 ||| 0-0 ||| 13 27806 +del ||| G-20 ||| 0.00227273 0.33438 3.59635e-05 0.0036922 2.718 ||| 0-0 ||| 440 27806 +del ||| GDP share in the European Union is ||| 1 0.0166084 3.59635e-05 7.30841e-21 2.718 ||| 0-2 ||| 1 27806 +del ||| GDP share in the European Union ||| 1 0.0166084 3.59635e-05 4.43407e-19 2.718 ||| 0-2 ||| 1 27806 +del ||| GDP share in the European ||| 1 0.0166084 3.59635e-05 2.62526e-15 2.718 ||| 0-2 ||| 1 27806 +del ||| GDP share in the ||| 1 0.0166084 3.59635e-05 8.60178e-12 2.718 ||| 0-2 ||| 1 27806 +del ||| GDP share in ||| 1 0.0166084 3.59635e-05 1.61902e-10 2.718 ||| 0-2 ||| 1 27806 +del ||| GDP ||| 0.00218341 0.111648 0.00010789 0.0032069 2.718 ||| 0-0 ||| 1374 27806 +del ||| General Staff 's ||| 0.333333 0.145691 3.59635e-05 1.65385e-10 2.718 ||| 0-2 ||| 3 27806 +del ||| George W. Bush 's leadership . ||| 1 0.145691 3.59635e-05 3.28616e-21 2.718 ||| 0-3 ||| 1 27806 +del ||| George W. Bush 's leadership ||| 1 0.145691 3.59635e-05 7.14709e-19 2.718 ||| 0-3 ||| 1 27806 +del ||| George W. Bush 's ||| 0.0588235 0.145691 3.59635e-05 3.79558e-15 2.718 ||| 0-3 ||| 17 27806 +del ||| Germany 's ||| 0.0212766 0.145691 0.00010789 1.99776e-05 2.718 ||| 0-1 ||| 141 27806 +del ||| Gomes , a member of the ||| 1 0.0980897 3.59635e-05 3.59511e-13 2.718 ||| 0-4 0-5 ||| 1 27806 +del ||| Gordon Brown has made such quantifiable goals ||| 0.5 0.008 3.59635e-05 2.57958e-28 2.718 ||| 0-1 ||| 2 27806 +del ||| Gordon Brown has made such quantifiable ||| 0.5 0.008 3.59635e-05 5.66941e-24 2.718 ||| 0-1 ||| 2 27806 +del ||| Gordon Brown has made such ||| 0.5 0.008 3.59635e-05 8.72218e-19 2.718 ||| 0-1 ||| 2 27806 +del ||| Gordon Brown has made ||| 0.333333 0.008 3.59635e-05 4.11987e-16 2.718 ||| 0-1 ||| 3 27806 +del ||| Gordon Brown has ||| 0.2 0.008 3.59635e-05 3.73177e-13 2.718 ||| 0-1 ||| 5 27806 +del ||| Gordon Brown ||| 0.0133333 0.008 3.59635e-05 1.1245e-10 2.718 ||| 0-1 ||| 75 27806 +del ||| Group ||| 0.00840336 0.008547 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 119 27806 +del ||| Gulf ||| 0.0045045 0.4 3.59635e-05 0.0024961 2.718 ||| 0-0 ||| 222 27806 +del ||| Haitian ||| 0.03125 0.04 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 32 27806 +del ||| Heights ||| 0.0454545 0.5 3.59635e-05 0.0003814 2.718 ||| 0-0 ||| 22 27806 +del ||| Highway ||| 0.25 0.25 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 4 27806 +del ||| Holocaust ||| 0.0070922 0.172414 3.59635e-05 0.00052 2.718 ||| 0-0 ||| 141 27806 +del ||| IMF 's ||| 0.00568182 0.154339 3.59635e-05 0.000608261 2.718 ||| 0-0 0-1 ||| 176 27806 +del ||| IMF ||| 0.00147275 0.162987 7.19269e-05 0.0043509 2.718 ||| 0-0 ||| 1358 27806 +del ||| IPCC ||| 0.00787402 0.142857 3.59635e-05 0.000312 2.718 ||| 0-0 ||| 127 27806 +del ||| International ||| 0.00828729 0.0062402 0.00010789 6.93e-05 2.718 ||| 0-0 ||| 362 27806 +del ||| Islam can ||| 0.0416667 0.0347323 3.59635e-05 7.29456e-07 2.718 ||| 0-0 ||| 24 27806 +del ||| Islam ||| 0.00211864 0.0347323 3.59635e-05 0.000416 2.718 ||| 0-0 ||| 472 27806 +del ||| Japan 's ||| 0.00390625 0.145691 3.59635e-05 3.90465e-05 2.718 ||| 0-1 ||| 256 27806 +del ||| Japanese ||| 0.00133511 0.0014286 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 749 27806 +del ||| Kill ||| 0.222222 0.210526 7.19269e-05 6.93e-05 2.718 ||| 0-0 ||| 9 27806 +del ||| Kong 's citizens ||| 0.5 0.145691 3.59635e-05 5.9066e-11 2.718 ||| 0-1 ||| 2 27806 +del ||| Kong 's ||| 0.333333 0.145691 3.59635e-05 4.54354e-06 2.718 ||| 0-1 ||| 3 27806 +del ||| Korea 's ||| 0.0102041 0.145691 3.59635e-05 2.1795e-05 2.718 ||| 0-1 ||| 98 27806 +del ||| Korea in the G-20 Spotlight ||| 0.0833333 0.33438 3.59635e-05 3.05439e-15 2.718 ||| 0-3 ||| 12 27806 +del ||| Korea in the G-20 ||| 0.0833333 0.33438 3.59635e-05 4.69907e-10 2.718 ||| 0-3 ||| 12 27806 +del ||| Korea ||| 0.00251256 0.443781 0.00010789 0.0154622 2.718 ||| 0-0 ||| 1194 27806 +del ||| Lebanese ||| 0.0104167 0.05 3.59635e-05 8.67e-05 2.718 ||| 0-0 ||| 96 27806 +del ||| Libya 's ||| 0.0322581 0.145691 3.59635e-05 7.26967e-06 2.718 ||| 0-1 ||| 31 27806 +del ||| May ||| 0.00298507 0.0171674 3.59635e-05 0.0001387 2.718 ||| 0-0 ||| 335 27806 +del ||| Member of the ||| 1 0.0980897 3.59635e-05 3.96246e-07 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| Mexico 's ||| 0.06 0.145691 0.00010789 1.54341e-05 2.718 ||| 0-1 ||| 50 27806 +del ||| Millennium ||| 0.0394737 0.464286 0.00010789 0.0018028 2.718 ||| 0-0 ||| 76 27806 +del ||| Minister Gordon Brown has made such quantifiable ||| 0.5 0.008 3.59635e-05 4.04796e-28 2.718 ||| 0-2 ||| 2 27806 +del ||| Minister Gordon Brown has made such ||| 0.5 0.008 3.59635e-05 6.22763e-23 2.718 ||| 0-2 ||| 2 27806 +del ||| Minister Gordon Brown has made ||| 0.333333 0.008 3.59635e-05 2.94159e-20 2.718 ||| 0-2 ||| 3 27806 +del ||| Minister Gordon Brown has ||| 0.333333 0.008 3.59635e-05 2.66448e-17 2.718 ||| 0-2 ||| 3 27806 +del ||| Minister Gordon Brown ||| 0.0833333 0.008 3.59635e-05 8.02893e-15 2.718 ||| 0-2 ||| 12 27806 +del ||| NEPAD 's ||| 0.5 0.145691 3.59635e-05 9.08708e-07 2.718 ||| 0-1 ||| 2 27806 +del ||| NPT ||| 0.00990099 0.154412 3.59635e-05 0.000364 2.718 ||| 0-0 ||| 101 27806 +del ||| North ||| 0.0010627 0.103583 3.59635e-05 0.0023055 2.718 ||| 0-0 ||| 941 27806 +del ||| Northern ||| 0.00862069 0.348624 3.59635e-05 0.0013174 2.718 ||| 0-0 ||| 116 27806 +del ||| Nuclear Test ||| 1 0.0088496 3.59635e-05 2.249e-10 2.718 ||| 0-0 ||| 1 27806 +del ||| Nuclear ||| 0.00729927 0.0088496 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 137 27806 +del ||| Oil ||| 0.0666667 0.216667 7.19269e-05 0.0002253 2.718 ||| 0-0 ||| 30 27806 +del ||| Ossetian ||| 0.0833333 0.461539 3.59635e-05 0.000104 2.718 ||| 0-0 ||| 12 27806 +del ||| PAP ) ||| 0.5 0.4375 3.59635e-05 1.37857e-07 2.718 ||| 0-0 ||| 2 27806 +del ||| PAP ||| 0.2 0.4375 3.59635e-05 0.0001213 2.718 ||| 0-0 ||| 5 27806 +del ||| Pacific ||| 0.00990099 0.234899 3.59635e-05 0.0006067 2.718 ||| 0-0 ||| 101 27806 +del ||| Palace ||| 0.2 0.3125 3.59635e-05 8.67e-05 2.718 ||| 0-0 ||| 5 27806 +del ||| Power ||| 0.01 0.0416667 3.59635e-05 0.0001213 2.718 ||| 0-0 ||| 100 27806 +del ||| President George W. Bush 's leadership . ||| 1 0.145691 3.59635e-05 3.41432e-25 2.718 ||| 0-4 ||| 1 27806 +del ||| President George W. Bush 's leadership ||| 1 0.145691 3.59635e-05 7.42582e-23 2.718 ||| 0-4 ||| 1 27806 +del ||| President George W. Bush 's ||| 0.0833333 0.145691 3.59635e-05 3.94361e-19 2.718 ||| 0-4 ||| 12 27806 +del ||| President ||| 0.000472367 0.0486815 3.59635e-05 0.0033282 2.718 ||| 0-0 ||| 2117 27806 +del ||| Prime Minister Gordon Brown has made such ||| 0.5 0.008 3.59635e-05 4.04173e-27 2.718 ||| 0-3 ||| 2 27806 +del ||| Prime Minister Gordon Brown has made ||| 0.5 0.008 3.59635e-05 1.90909e-24 2.718 ||| 0-3 ||| 2 27806 +del ||| Prime Minister Gordon Brown has ||| 0.333333 0.008 3.59635e-05 1.72925e-21 2.718 ||| 0-3 ||| 3 27806 +del ||| Prime Minister Gordon Brown ||| 0.0833333 0.008 3.59635e-05 5.21078e-19 2.718 ||| 0-3 ||| 12 27806 +del ||| Prison Committee of ||| 1 0.0507614 3.59635e-05 3.04323e-11 2.718 ||| 0-1 ||| 1 27806 +del ||| Prison Committee ||| 1 0.0507614 3.59635e-05 1.12645e-09 2.718 ||| 0-1 ||| 1 27806 +del ||| Prison Population ||| 0.25 0.111111 3.59635e-05 1.1245e-10 2.718 ||| 0-0 ||| 4 27806 +del ||| Prison ||| 0.25 0.111111 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 4 27806 +del ||| Prize laureate ||| 0.2 0.0847458 3.59635e-05 3.37935e-09 2.718 ||| 0-0 ||| 5 27806 +del ||| Prize ||| 0.0422535 0.0847458 0.00010789 0.0001733 2.718 ||| 0-0 ||| 71 27806 +del ||| Program ||| 0.00961538 0.0352941 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 104 27806 +del ||| Race Southeast Asia 's ||| 1 0.145691 3.59635e-05 4.98517e-16 2.718 ||| 0-3 ||| 1 27806 +del ||| Rice story makes it ||| 1 0.03125 3.59635e-05 6.21449e-14 2.718 ||| 0-0 ||| 1 27806 +del ||| Rice story makes ||| 1 0.03125 3.59635e-05 2.33395e-12 2.718 ||| 0-0 ||| 1 27806 +del ||| Rice story ||| 1 0.03125 3.59635e-05 6.53401e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| Rice ||| 0.0135135 0.03125 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 74 27806 +del ||| Rodríguez ||| 0.0526316 0.1 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 19 27806 +del ||| Russia 's ||| 0.00241546 0.145691 3.59635e-05 5.6284e-05 2.718 ||| 0-1 ||| 414 27806 +del ||| Russian / ||| 0.333333 0.0063211 3.59635e-05 1.2953e-08 2.718 ||| 0-1 ||| 3 27806 +del ||| Security 's ||| 0.142857 0.145691 3.59635e-05 7.26967e-06 2.718 ||| 0-1 ||| 7 27806 +del ||| September ||| 0.00184843 0.0547046 3.59635e-05 0.0008667 2.718 ||| 0-0 ||| 541 27806 +del ||| Sinhalese nationalist ||| 0.5 0.0055866 3.59635e-05 2.249e-10 2.718 ||| 0-1 ||| 2 27806 +del ||| South East Asian ||| 0.25 0.019802 3.59635e-05 4.30025e-12 2.718 ||| 0-2 ||| 4 27806 +del ||| South Korea in the G-20 Spotlight ||| 0.0833333 0.33438 3.59635e-05 3.96766e-19 2.718 ||| 0-4 ||| 12 27806 +del ||| South Korea in the G-20 ||| 0.0833333 0.33438 3.59635e-05 6.10409e-14 2.718 ||| 0-4 ||| 12 27806 +del ||| Southeast Asia 's ||| 0.2 0.145691 3.59635e-05 7.6695e-11 2.718 ||| 0-2 ||| 5 27806 +del ||| Spins ||| 0.2 0.666667 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 5 27806 +del ||| Staff 's ||| 0.333333 0.145691 3.59635e-05 3.63483e-06 2.718 ||| 0-1 ||| 3 27806 +del ||| State Department imposed sanctions 111 times against ||| 1 0.122222 3.59635e-05 1.12671e-29 2.718 ||| 0-1 ||| 1 27806 +del ||| State Department imposed sanctions 111 times ||| 1 0.122222 3.59635e-05 3.33642e-26 2.718 ||| 0-1 ||| 1 27806 +del ||| State Department imposed sanctions 111 ||| 1 0.122222 3.59635e-05 1.71274e-22 2.718 ||| 0-1 ||| 1 27806 +del ||| State Department imposed sanctions ||| 1 0.122222 3.59635e-05 2.63499e-17 2.718 ||| 0-1 ||| 1 27806 +del ||| State Department imposed ||| 1 0.122222 3.59635e-05 1.01346e-12 2.718 ||| 0-1 ||| 1 27806 +del ||| State Department ||| 0.030303 0.122222 3.59635e-05 2.22738e-08 2.718 ||| 0-1 ||| 33 27806 +del ||| States under President George W. Bush 's ||| 1 0.145691 3.59635e-05 5.56134e-26 2.718 ||| 0-6 ||| 1 27806 +del ||| Statute of ||| 0.5 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-1 ||| 2 27806 +del ||| Syrian ||| 0.00917431 0.0103093 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 109 27806 +del ||| Taiwan 's ||| 0.0227273 0.145691 3.59635e-05 3.63483e-06 2.718 ||| 0-1 ||| 44 27806 +del ||| Thatcherite ||| 0.125 0.266667 3.59635e-05 6.93e-05 2.718 ||| 0-0 ||| 8 27806 +del ||| Tibetan ||| 0.0412371 0.0989011 0.000143854 0.000156 2.718 ||| 0-0 ||| 97 27806 +del ||| Tier ||| 0.333333 0.5 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 3 27806 +del ||| Treaty 's ||| 0.0322581 0.0759835 3.59635e-05 7.26967e-06 2.718 ||| 0-0 0-1 ||| 31 27806 +del ||| US domestic ||| 0.25 0.0014674 3.59635e-05 4.46207e-08 2.718 ||| 0-1 ||| 4 27806 +del ||| Volga ||| 0.333333 0.6 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 3 27806 +del ||| W. Bush 's leadership . ||| 1 0.145691 3.59635e-05 1.68521e-16 2.718 ||| 0-2 ||| 1 27806 +del ||| W. Bush 's leadership ||| 1 0.145691 3.59635e-05 3.66517e-14 2.718 ||| 0-2 ||| 1 27806 +del ||| W. Bush 's ||| 0.111111 0.145691 3.59635e-05 1.94645e-10 2.718 ||| 0-2 ||| 9 27806 +del ||| Warming 's ||| 0.0769231 0.155556 3.59635e-05 1.88903e-06 2.718 ||| 0-0 ||| 13 27806 +del ||| Warming ||| 0.04 0.155556 3.59635e-05 0.0001213 2.718 ||| 0-0 ||| 25 27806 +del ||| Western ||| 0.000814332 0.0017889 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 1228 27806 +del ||| World 's ||| 0.0714286 0.145691 3.59635e-05 1.36166e-05 2.718 ||| 0-1 ||| 14 27806 +del ||| World ||| 0.0192926 0.0309007 0.000863123 0.0008147 2.718 ||| 0-0 ||| 1244 27806 +del ||| a ban on ||| 0.0454545 0.0174344 3.59635e-05 7.14408e-09 2.718 ||| 0-2 ||| 22 27806 +del ||| a confession of weakness ; ||| 1 0.132374 3.59635e-05 4.61087e-15 2.718 ||| 0-2 ||| 1 27806 +del ||| a confession of weakness ||| 1 0.132374 3.59635e-05 2.60075e-12 2.718 ||| 0-2 ||| 1 27806 +del ||| a confession of ||| 0.5 0.132374 3.59635e-05 6.66859e-08 2.718 ||| 0-2 ||| 2 27806 +del ||| a form of ||| 0.010989 0.132374 3.59635e-05 3.93139e-06 2.718 ||| 0-2 ||| 91 27806 +del ||| a further weakening of the ||| 0.25 0.0980897 3.59635e-05 5.1763e-12 2.718 ||| 0-3 0-4 ||| 4 27806 +del ||| a large grain of salt ||| 1 0.132374 3.59635e-05 2.81488e-16 2.718 ||| 0-3 ||| 1 27806 +del ||| a large grain of ||| 1 0.132374 3.59635e-05 4.33058e-11 2.718 ||| 0-3 ||| 1 27806 +del ||| a matter of ||| 0.00574713 0.132374 3.59635e-05 3.26453e-06 2.718 ||| 0-2 ||| 174 27806 +del ||| a member of the ||| 0.0217391 0.0980897 3.59635e-05 2.70765e-07 2.718 ||| 0-2 0-3 ||| 46 27806 +del ||| a much larger bank bailout than in ||| 0.5 0.0316215 3.59635e-05 1.63844e-21 2.718 ||| 0-5 0-6 ||| 2 27806 +del ||| a parody of ||| 0.333333 0.132374 3.59635e-05 6.66859e-08 2.718 ||| 0-2 ||| 3 27806 +del ||| a safe bet is that from ||| 1 0.0842892 3.59635e-05 3.74993e-16 2.718 ||| 0-5 ||| 1 27806 +del ||| a set of ||| 0.0117647 0.132374 3.59635e-05 8.66199e-06 2.718 ||| 0-2 ||| 85 27806 +del ||| a stake in ||| 0.0333333 0.0166084 3.59635e-05 6.86694e-08 2.718 ||| 0-2 ||| 30 27806 +del ||| a substantial popularity dividend to add to ||| 1 0.0065359 3.59635e-05 2.02662e-22 2.718 ||| 0-2 ||| 1 27806 +del ||| a substantial popularity dividend to add ||| 1 0.0065359 3.59635e-05 2.4568e-21 2.718 ||| 0-2 ||| 1 27806 +del ||| a substantial popularity dividend to ||| 1 0.0065359 3.59635e-05 2.91091e-17 2.718 ||| 0-2 ||| 1 27806 +del ||| a substantial popularity dividend ||| 1 0.0065359 3.59635e-05 3.52879e-16 2.718 ||| 0-2 ||| 1 27806 +del ||| a substantial popularity ||| 1 0.0065359 3.59635e-05 1.80964e-11 2.718 ||| 0-2 ||| 1 27806 +del ||| a ||| 0.000198292 0.0002226 0.000467525 0.00026 2.718 ||| 0-0 ||| 65560 27806 +del ||| about the ||| 0.00756303 0.0638053 0.000323671 0.000290312 2.718 ||| 0-1 ||| 1190 27806 +del ||| about ||| 0.00140696 0.0060794 0.000287708 0.00078 2.718 ||| 0-0 ||| 5686 27806 +del ||| above from ||| 1 0.0842892 3.59635e-05 3.54965e-06 2.718 ||| 0-1 ||| 1 27806 +del ||| acceptance of ||| 0.0277778 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 36 27806 +del ||| achieved by medicine in this ||| 1 0.0166084 3.59635e-05 1.99368e-16 2.718 ||| 0-3 ||| 1 27806 +del ||| achieved by medicine in ||| 1 0.0166084 3.59635e-05 1.00326e-13 2.718 ||| 0-3 ||| 1 27806 +del ||| achieved for the ||| 1 0.0362668 3.59635e-05 6.42136e-08 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| activity by the ||| 1 0.0638053 3.59635e-05 1.15615e-07 2.718 ||| 0-2 ||| 1 27806 +del ||| address the ||| 0.00574713 0.0638053 3.59635e-05 2.48381e-05 2.718 ||| 0-1 ||| 174 27806 +del ||| administration of ||| 0.0588235 0.132374 3.59635e-05 2.81526e-05 2.718 ||| 0-1 ||| 17 27806 +del ||| administration ||| 0.00141044 0.0016992 7.19269e-05 3.47e-05 2.718 ||| 0-0 ||| 1418 27806 +del ||| adoption ||| 0.01 0.0103093 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 100 27806 +del ||| advocates of awarding ||| 0.25 0.132374 3.59635e-05 2.15479e-11 2.718 ||| 0-1 ||| 4 27806 +del ||| advocates of ||| 0.0166667 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 60 27806 +del ||| after the ||| 0.00603865 0.0638053 0.000179817 9.0053e-05 2.718 ||| 0-1 ||| 828 27806 +del ||| after ||| 0.000142308 0.0002659 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 7027 27806 +del ||| against Britain 's ||| 0.5 0.145691 3.59635e-05 9.50355e-09 2.718 ||| 0-2 ||| 2 27806 +del ||| against the ||| 0.00137174 0.0638053 3.59635e-05 8.07298e-05 2.718 ||| 0-1 ||| 729 27806 +del ||| against ||| 0.000539374 0.0013797 7.19269e-05 8.67e-05 2.718 ||| 0-0 ||| 3708 27806 +del ||| air will ||| 0.333333 0.0321543 3.59635e-05 1.19749e-06 2.718 ||| 0-0 ||| 3 27806 +del ||| air ||| 0.00692042 0.0321543 7.19269e-05 0.0001733 2.718 ||| 0-0 ||| 289 27806 +del ||| all the ||| 0.00120048 0.0638053 3.59635e-05 0.000619446 2.718 ||| 0-1 ||| 833 27806 +del ||| allocate the ||| 0.333333 0.0638053 3.59635e-05 1.55388e-06 2.718 ||| 0-1 ||| 3 27806 +del ||| along with the ||| 0.0212766 0.0638053 3.59635e-05 2.06087e-07 2.718 ||| 0-2 ||| 47 27806 +del ||| also possible in increasing integration of the ||| 1 0.132374 3.59635e-05 6.96057e-20 2.718 ||| 0-5 ||| 1 27806 +del ||| also possible in increasing integration of ||| 1 0.132374 3.59635e-05 1.31011e-18 2.718 ||| 0-5 ||| 1 27806 +del ||| altogether ||| 0.0454545 0.096 0.00010789 0.000208 2.718 ||| 0-0 ||| 66 27806 +del ||| amount of ||| 0.0070922 0.132374 3.59635e-05 7.78276e-05 2.718 ||| 0-1 ||| 141 27806 +del ||| an ||| 0.000582508 0.0008955 0.000251744 0.0001907 2.718 ||| 0-0 ||| 12017 27806 +del ||| and inland ||| 0.142857 0.333333 3.59635e-05 1.45522e-06 2.718 ||| 0-1 ||| 7 27806 +del ||| and minds of the ||| 0.25 0.0980897 3.59635e-05 5.98406e-08 2.718 ||| 0-2 0-3 ||| 4 27806 +del ||| and out of that turmoil a single ||| 1 0.132374 3.59635e-05 1.81838e-17 2.718 ||| 0-2 ||| 1 27806 +del ||| and out of that turmoil a ||| 1 0.132374 3.59635e-05 6.08763e-14 2.718 ||| 0-2 ||| 1 27806 +del ||| and out of that turmoil ||| 1 0.132374 3.59635e-05 1.51313e-12 2.718 ||| 0-2 ||| 1 27806 +del ||| and out of that ||| 1 0.132374 3.59635e-05 7.75965e-08 2.718 ||| 0-2 ||| 1 27806 +del ||| and out of ||| 0.0666667 0.132374 3.59635e-05 9.49797e-06 2.718 ||| 0-2 ||| 15 27806 +del ||| and policies of the Soviet Union . ||| 1 0.132374 3.59635e-05 2.23679e-19 2.718 ||| 0-2 ||| 1 27806 +del ||| and policies of the Soviet Union ||| 1 0.132374 3.59635e-05 4.86481e-17 2.718 ||| 0-2 ||| 1 27806 +del ||| and policies of the Soviet ||| 1 0.132374 3.59635e-05 2.88029e-13 2.718 ||| 0-2 ||| 1 27806 +del ||| and policies of the ||| 0.5 0.132374 3.59635e-05 8.86242e-09 2.718 ||| 0-2 ||| 2 27806 +del ||| and policies of ||| 0.333333 0.132374 3.59635e-05 1.66808e-07 2.718 ||| 0-2 ||| 3 27806 +del ||| and putting the ||| 0.5 0.0638053 3.59635e-05 1.3028e-07 2.718 ||| 0-2 ||| 2 27806 +del ||| and spreading ice ages ||| 0.5 0.0784314 3.59635e-05 8.85737e-16 2.718 ||| 0-2 ||| 2 27806 +del ||| and spreading ice ||| 0.5 0.0784314 3.59635e-05 4.54224e-11 2.718 ||| 0-2 ||| 2 27806 +del ||| and the trade deficit to shrink . ||| 1 0.0638053 3.59635e-05 1.95554e-19 2.718 ||| 0-1 ||| 1 27806 +del ||| and the trade deficit to shrink ||| 1 0.0638053 3.59635e-05 4.25312e-17 2.718 ||| 0-1 ||| 1 27806 +del ||| and the trade deficit to ||| 1 0.0638053 3.59635e-05 1.63582e-12 2.718 ||| 0-1 ||| 1 27806 +del ||| and the trade deficit ||| 0.25 0.0638053 3.59635e-05 1.98304e-11 2.718 ||| 0-1 ||| 4 27806 +del ||| and the trade ||| 1 0.0638053 3.59635e-05 5.08472e-07 2.718 ||| 0-1 ||| 1 27806 +del ||| and the ||| 0.000395309 0.0638053 0.00010789 0.00200739 2.718 ||| 0-1 ||| 7589 27806 +del ||| and was found wanting . the ||| 1 0.0638053 3.59635e-05 2.73878e-16 2.718 ||| 0-5 ||| 1 27806 +del ||| animal spirits " of ||| 0.5 0.132374 3.59635e-05 2.15225e-13 2.718 ||| 0-3 ||| 2 27806 +del ||| answerable ||| 1 0.0833333 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 1 27806 +del ||| anywhere , ||| 0.2 0.0060606 3.59635e-05 3.53388e-06 2.718 ||| 0-0 ||| 5 27806 +del ||| anywhere ||| 0.0192308 0.0060606 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 52 27806 +del ||| apart from the ||| 0.0555556 0.0740472 3.59635e-05 1.00296e-06 2.718 ||| 0-1 0-2 ||| 18 27806 +del ||| apart in the ||| 1 0.0402068 3.59635e-05 8.84681e-07 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| appreciation ||| 0.00425532 0.117936 3.59635e-05 0.000832 2.718 ||| 0-0 ||| 235 27806 +del ||| are also possible in increasing integration of ||| 1 0.132374 3.59635e-05 9.69942e-21 2.718 ||| 0-6 ||| 1 27806 +del ||| are dependent ||| 0.5 0.0145631 3.59635e-05 3.84982e-07 2.718 ||| 0-1 ||| 2 27806 +del ||| are fueling ||| 0.166667 0.008547 3.59635e-05 1.28081e-07 2.718 ||| 0-1 ||| 6 27806 +del ||| are not of ||| 0.5 0.132374 3.59635e-05 4.43834e-06 2.718 ||| 0-2 ||| 2 27806 +del ||| are on ||| 0.0166667 0.0174344 3.59635e-05 5.05637e-05 2.718 ||| 0-1 ||| 60 27806 +del ||| are quite varied ||| 1 0.0333333 3.59635e-05 5.00477e-11 2.718 ||| 0-1 ||| 1 27806 +del ||| are quite ||| 0.25 0.0333333 3.59635e-05 1.53993e-06 2.718 ||| 0-1 ||| 4 27806 +del ||| arm of the ||| 1 0.0980897 3.59635e-05 7.92493e-07 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| army ||| 0.00211864 0.042735 3.59635e-05 0.0003467 2.718 ||| 0-0 ||| 472 27806 +del ||| around the world ||| 0.00156495 0.0638053 3.59635e-05 1.1024e-07 2.718 ||| 0-1 ||| 639 27806 +del ||| around the ||| 0.0380368 0.0393989 0.00111487 0.00012431 2.718 ||| 0-0 0-1 ||| 815 27806 +del ||| around ||| 0.000568505 0.0149925 3.59635e-05 0.00052 2.718 ||| 0-0 ||| 1759 27806 +del ||| arrangements of the ||| 1 0.0980897 3.59635e-05 2.37748e-06 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| as Argentina 's ||| 0.142857 0.145691 3.59635e-05 6.9034e-08 2.718 ||| 0-2 ||| 7 27806 +del ||| as a matter of ||| 0.030303 0.132374 3.59635e-05 2.76033e-08 2.718 ||| 0-3 ||| 33 27806 +del ||| as director -- ||| 0.5 0.0162602 3.59635e-05 1.47483e-09 2.718 ||| 0-1 ||| 2 27806 +del ||| as director ||| 0.333333 0.0162602 3.59635e-05 2.93406e-07 2.718 ||| 0-1 ||| 3 27806 +del ||| as in the ||| 0.0102041 0.0402068 3.59635e-05 4.4289e-05 2.718 ||| 0-1 0-2 ||| 98 27806 +del ||| as it is on ||| 0.5 0.0174344 3.59635e-05 2.5344e-08 2.718 ||| 0-3 ||| 2 27806 +del ||| as much ||| 0.00293255 0.0001104 3.59635e-05 7.49684e-08 2.718 ||| 0-0 ||| 341 27806 +del ||| as state of ||| 1 0.132374 3.59635e-05 7.56178e-07 2.718 ||| 0-2 ||| 1 27806 +del ||| as the ||| 0.000962464 0.0638053 7.19269e-05 0.00202135 2.718 ||| 0-1 ||| 2078 27806 +del ||| as ||| 9.40026e-05 0.0001104 7.19269e-05 5.2e-05 2.718 ||| 0-0 ||| 21276 27806 +del ||| at fault ||| 0.111111 0.0061713 3.59635e-05 8.11265e-09 2.718 ||| 0-0 ||| 9 27806 +del ||| at the US ||| 0.1 0.0638053 3.59635e-05 9.12345e-07 2.718 ||| 0-1 ||| 10 27806 +del ||| at the opposite end ||| 0.2 0.0349883 3.59635e-05 5.51679e-12 2.718 ||| 0-0 0-1 ||| 5 27806 +del ||| at the opposite ||| 0.25 0.0349883 3.59635e-05 1.16363e-08 2.718 ||| 0-0 0-1 ||| 4 27806 +del ||| at the ||| 0.00954198 0.0349883 0.0010789 0.000298368 2.718 ||| 0-0 0-1 ||| 3144 27806 +del ||| at ||| 0.00293945 0.0061713 0.0010789 0.0012481 2.718 ||| 0-0 ||| 10206 27806 +del ||| awareness of ||| 0.030303 0.132374 3.59635e-05 4.9726e-06 2.718 ||| 0-1 ||| 33 27806 +del ||| away from the ||| 0.0555556 0.0740472 7.19269e-05 5.47622e-06 2.718 ||| 0-1 0-2 ||| 36 27806 +del ||| away from ||| 0.0113636 0.0842892 7.19269e-05 2.29075e-05 2.718 ||| 0-1 ||| 176 27806 +del ||| back from ||| 0.0344828 0.0842892 3.59635e-05 3.45228e-05 2.718 ||| 0-1 ||| 29 27806 +del ||| back through the ||| 1 0.0638053 3.59635e-05 1.68314e-07 2.718 ||| 0-2 ||| 1 27806 +del ||| bailout than in Greece , potentially leaving ||| 0.5 0.0316215 3.59635e-05 4.60942e-23 2.718 ||| 0-1 0-2 ||| 2 27806 +del ||| bailout than in Greece , potentially ||| 0.5 0.0316215 3.59635e-05 5.07087e-19 2.718 ||| 0-1 0-2 ||| 2 27806 +del ||| bailout than in Greece , ||| 0.5 0.0316215 3.59635e-05 1.56027e-14 2.718 ||| 0-1 0-2 ||| 2 27806 +del ||| bailout than in Greece ||| 0.5 0.0316215 3.59635e-05 7.63823e-14 2.718 ||| 0-1 0-2 ||| 2 27806 +del ||| bailout than in ||| 0.5 0.0316215 3.59635e-05 2.35023e-09 2.718 ||| 0-1 0-2 ||| 2 27806 +del ||| balances applied ||| 0.0666667 0.0169492 3.59635e-05 1.57885e-09 2.718 ||| 0-0 ||| 15 27806 +del ||| balances ||| 0.00877193 0.0169492 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 114 27806 +del ||| ban on ||| 0.025 0.0174344 3.59635e-05 1.77572e-07 2.718 ||| 0-1 ||| 40 27806 +del ||| bank bailout than in Greece , potentially ||| 0.5 0.0316215 3.59635e-05 6.25745e-23 2.718 ||| 0-2 0-3 ||| 2 27806 +del ||| bank bailout than in Greece , ||| 0.5 0.0316215 3.59635e-05 1.92537e-18 2.718 ||| 0-2 0-3 ||| 2 27806 +del ||| bank bailout than in Greece ||| 0.5 0.0316215 3.59635e-05 9.42558e-18 2.718 ||| 0-2 0-3 ||| 2 27806 +del ||| bank bailout than in ||| 0.5 0.0316215 3.59635e-05 2.90018e-13 2.718 ||| 0-2 0-3 ||| 2 27806 +del ||| barrel of ||| 0.111111 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 9 27806 +del ||| based on ||| 0.00106724 0.0174344 3.59635e-05 1.10914e-06 2.718 ||| 0-1 ||| 937 27806 +del ||| basin ||| 0.0833333 0.333333 3.59635e-05 8.67e-05 2.718 ||| 0-0 ||| 12 27806 +del ||| be offset by ||| 0.2 0.0100882 3.59635e-05 4.97011e-10 2.718 ||| 0-2 ||| 5 27806 +del ||| be the ||| 0.00191939 0.0638053 3.59635e-05 0.00246382 2.718 ||| 0-1 ||| 521 27806 +del ||| been below ||| 0.25 0.03663 3.59635e-05 5.78642e-07 2.718 ||| 0-1 ||| 4 27806 +del ||| been in ||| 0.0116279 0.0166084 3.59635e-05 3.65688e-05 2.718 ||| 0-1 ||| 86 27806 +del ||| behind the ||| 0.0167598 0.0638053 0.00010789 4.65684e-05 2.718 ||| 0-1 ||| 179 27806 +del ||| being priced out of ||| 0.5 0.132374 3.59635e-05 1.10775e-11 2.718 ||| 0-3 ||| 2 27806 +del ||| believe the ||| 0.0555556 0.0638053 3.59635e-05 3.57152e-05 2.718 ||| 0-1 ||| 18 27806 +del ||| below ||| 0.00426439 0.03663 7.19269e-05 0.0003467 2.718 ||| 0-0 ||| 469 27806 +del ||| beneficiary ||| 0.0666667 0.15 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 15 27806 +del ||| bet is that from ||| 1 0.0842892 3.59635e-05 6.52259e-11 2.718 ||| 0-3 ||| 1 27806 +del ||| between ||| 0.000738552 0.0008203 0.00010789 5.2e-05 2.718 ||| 0-0 ||| 4062 27806 +del ||| beyond the ||| 0.0046729 0.0638053 3.59635e-05 6.98527e-05 2.718 ||| 0-1 ||| 214 27806 +del ||| beyond vague notions of ||| 1 0.132374 3.59635e-05 3.14816e-15 2.718 ||| 0-3 ||| 1 27806 +del ||| bid the ||| 0.25 0.0638053 3.59635e-05 1.86226e-05 2.718 ||| 0-1 ||| 4 27806 +del ||| bipartisan ||| 0.0555556 0.0810811 7.19269e-05 5.2e-05 2.718 ||| 0-0 ||| 36 27806 +del ||| blended ||| 0.333333 0.166667 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 3 27806 +del ||| board meetings ||| 0.1 0.009901 3.59635e-05 2.92868e-09 2.718 ||| 0-1 ||| 10 27806 +del ||| booms ||| 0.0102041 0.0357143 3.59635e-05 6.93e-05 2.718 ||| 0-0 ||| 98 27806 +del ||| both from ||| 0.166667 0.0842892 3.59635e-05 4.24269e-05 2.718 ||| 0-1 ||| 6 27806 +del ||| both sides of the ||| 0.0238095 0.0980897 3.59635e-05 1.35254e-08 2.718 ||| 0-2 0-3 ||| 42 27806 +del ||| both the ||| 0.00420168 0.0638053 3.59635e-05 0.000408311 2.718 ||| 0-1 ||| 238 27806 +del ||| bounce " ||| 0.25 0.133333 3.59635e-05 1.73295e-07 2.718 ||| 0-0 ||| 4 27806 +del ||| bounce ||| 0.2 0.133333 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 5 27806 +del ||| branches of ||| 0.0833333 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-1 ||| 12 27806 +del ||| brand of ||| 0.0952381 0.132374 7.19269e-05 6.63014e-06 2.718 ||| 0-1 ||| 21 27806 +del ||| breast cancer undergo a ||| 0.166667 0.054755 3.59635e-05 5.03923e-15 2.718 ||| 0-1 ||| 6 27806 +del ||| breast cancer undergo ||| 0.166667 0.054755 3.59635e-05 1.25254e-13 2.718 ||| 0-1 ||| 6 27806 +del ||| breast cancer ||| 0.0166667 0.054755 3.59635e-05 6.4233e-09 2.718 ||| 0-1 ||| 60 27806 +del ||| broken by the ||| 1 0.0638053 3.59635e-05 1.2614e-07 2.718 ||| 0-2 ||| 1 27806 +del ||| buildup ||| 0.0416667 0.03125 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 24 27806 +del ||| built into the ||| 0.166667 0.0638053 3.59635e-05 2.74037e-08 2.718 ||| 0-2 ||| 6 27806 +del ||| built the ||| 0.0909091 0.0638053 3.59635e-05 2.79458e-05 2.718 ||| 0-1 ||| 11 27806 +del ||| burst of ||| 0.0714286 0.132374 3.59635e-05 8.28767e-06 2.718 ||| 0-1 ||| 14 27806 +del ||| by 20 % , accounting ||| 1 0.0645021 3.59635e-05 1.44461e-14 2.718 ||| 0-2 ||| 1 27806 +del ||| by 20 % , ||| 0.5 0.0645021 3.59635e-05 2.7781e-10 2.718 ||| 0-2 ||| 2 27806 +del ||| by 20 % ||| 0.0526316 0.0645021 3.59635e-05 1.36001e-09 2.718 ||| 0-2 ||| 19 27806 +del ||| by Germany 's ||| 1 0.145691 3.59635e-05 1.35318e-07 2.718 ||| 0-2 ||| 1 27806 +del ||| by deeds . in the meantime ||| 1 0.0638053 3.59635e-05 1.45e-17 2.718 ||| 0-4 ||| 1 27806 +del ||| by deeds . in the ||| 1 0.0638053 3.59635e-05 7.43588e-13 2.718 ||| 0-4 ||| 1 27806 +del ||| by far within the ||| 1 0.0638053 3.59635e-05 2.36829e-10 2.718 ||| 0-3 ||| 1 27806 +del ||| by how great ||| 0.5 0.0100882 3.59635e-05 3.51048e-10 2.718 ||| 0-0 ||| 2 27806 +del ||| by how ||| 0.0666667 0.0100882 3.59635e-05 1.63812e-06 2.718 ||| 0-0 ||| 15 27806 +del ||| by medicine in this ||| 1 0.0166084 3.59635e-05 3.834e-12 2.718 ||| 0-2 ||| 1 27806 +del ||| by medicine in ||| 1 0.0166084 3.59635e-05 1.92935e-09 2.718 ||| 0-2 ||| 1 27806 +del ||| by the daily facts ||| 0.5 0.0638053 3.59635e-05 5.47309e-13 2.718 ||| 0-1 ||| 2 27806 +del ||| by the daily ||| 0.5 0.0638053 3.59635e-05 2.10503e-08 2.718 ||| 0-1 ||| 2 27806 +del ||| by the late ||| 0.166667 0.0369468 3.59635e-05 1.95802e-07 2.718 ||| 0-0 0-1 ||| 6 27806 +del ||| by the ||| 0.0285962 0.0369468 0.00356038 0.000886785 2.718 ||| 0-0 0-1 ||| 3462 27806 +del ||| by ||| 0.00338446 0.0100882 0.00222973 0.0037095 2.718 ||| 0-0 ||| 18319 27806 +del ||| cabinet ||| 0.0111111 0.190083 3.59635e-05 0.0003987 2.718 ||| 0-0 ||| 90 27806 +del ||| came to the ||| 0.0769231 0.0638053 3.59635e-05 8.1956e-06 2.718 ||| 0-2 ||| 13 27806 +del ||| cancer undergo a ||| 0.166667 0.054755 3.59635e-05 2.58422e-10 2.718 ||| 0-0 ||| 6 27806 +del ||| cancer undergo ||| 0.166667 0.054755 3.59635e-05 6.4233e-09 2.718 ||| 0-0 ||| 6 27806 +del ||| cancer ||| 0.00294985 0.054755 3.59635e-05 0.0003294 2.718 ||| 0-0 ||| 339 27806 +del ||| capable of devastating attacks ||| 1 0.132374 3.59635e-05 1.28771e-14 2.718 ||| 0-1 ||| 1 27806 +del ||| capable of devastating ||| 1 0.132374 3.59635e-05 2.47636e-10 2.718 ||| 0-1 ||| 1 27806 +del ||| capable of ||| 0.0126582 0.132374 7.19269e-05 3.80978e-05 2.718 ||| 0-1 ||| 158 27806 +del ||| care of the ||| 0.333333 0.132374 3.59635e-05 2.28831e-06 2.718 ||| 0-1 ||| 3 27806 +del ||| care of ||| 0.0714286 0.132374 3.59635e-05 4.30704e-05 2.718 ||| 0-1 ||| 14 27806 +del ||| carrot ||| 0.0666667 0.0555556 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 15 27806 +del ||| case for ||| 0.00884956 0.0087283 3.59635e-05 3.58958e-06 2.718 ||| 0-1 ||| 113 27806 +del ||| case of ||| 0.0034965 0.132374 3.59635e-05 0.000177203 2.718 ||| 0-1 ||| 286 27806 +del ||| case that the ||| 0.25 0.0638053 3.59635e-05 1.35718e-06 2.718 ||| 0-2 ||| 4 27806 +del ||| cat bounce " ||| 1 0.133333 3.59635e-05 2.25284e-12 2.718 ||| 0-1 ||| 1 27806 +del ||| cat bounce ||| 1 0.133333 3.59635e-05 4.511e-10 2.718 ||| 0-1 ||| 1 27806 +del ||| caused by the ||| 0.0208333 0.0638053 3.59635e-05 1.57716e-07 2.718 ||| 0-2 ||| 48 27806 +del ||| celebrations ||| 0.0666667 0.0357143 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 15 27806 +del ||| cells fall into the ||| 1 0.0638053 3.59635e-05 1.38538e-12 2.718 ||| 0-3 ||| 1 27806 +del ||| challenge from the ||| 0.25 0.0638053 3.59635e-05 4.86598e-08 2.718 ||| 0-2 ||| 4 27806 +del ||| challenges to the ||| 0.05 0.0638053 3.59635e-05 1.27982e-06 2.718 ||| 0-2 ||| 20 27806 +del ||| championed ||| 0.0322581 0.0285714 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 31 27806 +del ||| chapter of the ||| 1 0.0980897 3.59635e-05 3.96246e-07 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| chief ||| 0.00330033 0.0251046 3.59635e-05 0.000104 2.718 ||| 0-0 ||| 303 27806 +del ||| chunk of ||| 0.05 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 20 27806 +del ||| circle ||| 0.00769231 0.0150376 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 130 27806 +del ||| clear of the ||| 0.333333 0.0980897 3.59635e-05 1.42527e-05 2.718 ||| 0-1 0-2 ||| 3 27806 +del ||| clear than it is now ||| 1 0.0466347 3.59635e-05 1.2591e-12 2.718 ||| 0-1 ||| 1 27806 +del ||| clear than it is ||| 1 0.0466347 3.59635e-05 8.46625e-10 2.718 ||| 0-1 ||| 1 27806 +del ||| clear than it ||| 1 0.0466347 3.59635e-05 5.13654e-08 2.718 ||| 0-1 ||| 1 27806 +del ||| clear than ||| 1 0.0466347 3.59635e-05 1.92911e-06 2.718 ||| 0-1 ||| 1 27806 +del ||| climate change ||| 0.00121359 0.0562948 3.59635e-05 3.71445e-07 2.718 ||| 0-0 ||| 824 27806 +del ||| climate ||| 0.00127877 0.0562948 3.59635e-05 0.0019068 2.718 ||| 0-0 ||| 782 27806 +del ||| co-chairs ||| 0.333333 0.2 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 3 27806 +del ||| coal ||| 0.00454545 0.0786517 3.59635e-05 0.000364 2.718 ||| 0-0 ||| 220 27806 +del ||| coincided with the ||| 0.125 0.0638053 3.59635e-05 1.17868e-08 2.718 ||| 0-2 ||| 8 27806 +del ||| collapse of ||| 0.0041841 0.132374 3.59635e-05 4.9726e-06 2.718 ||| 0-1 ||| 239 27806 +del ||| collapse ||| 0.00135501 0.0015432 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 738 27806 +del ||| collapsed ||| 0.00671141 0.0343348 3.59635e-05 0.0001387 2.718 ||| 0-0 ||| 149 27806 +del ||| collections will do ||| 1 0.0833333 3.59635e-05 2.74048e-10 2.718 ||| 0-0 ||| 1 27806 +del ||| collections will ||| 1 0.0833333 3.59635e-05 1.19541e-07 2.718 ||| 0-0 ||| 1 27806 +del ||| collections ||| 0.142857 0.0833333 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 7 27806 +del ||| come in ||| 0.0666667 0.0166084 3.59635e-05 2.68931e-05 2.718 ||| 0-1 ||| 15 27806 +del ||| come out of ||| 0.2 0.132374 3.59635e-05 1.38831e-06 2.718 ||| 0-2 ||| 5 27806 +del ||| comes to the ||| 0.0666667 0.0638053 3.59635e-05 6.65942e-06 2.718 ||| 0-2 ||| 15 27806 +del ||| comes to ||| 0.00666667 0.003861 3.59635e-05 4.28949e-06 2.718 ||| 0-0 ||| 150 27806 +del ||| comes ||| 0.00243309 0.003861 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 411 27806 +del ||| coming out of the ||| 0.5 0.0980897 3.59635e-05 1.07132e-07 2.718 ||| 0-2 0-3 ||| 2 27806 +del ||| commit the ||| 0.0909091 0.0638053 3.59635e-05 1.55388e-06 2.718 ||| 0-1 ||| 11 27806 +del ||| community / social mobilization and ||| 1 0.0063211 3.59635e-05 5.74767e-20 2.718 ||| 0-1 ||| 1 27806 +del ||| community / social mobilization ||| 1 0.0063211 3.59635e-05 6.84483e-18 2.718 ||| 0-1 ||| 1 27806 +del ||| community / social ||| 1 0.0063211 3.59635e-05 1.05305e-12 2.718 ||| 0-1 ||| 1 27806 +del ||| community / ||| 1 0.0063211 3.59635e-05 9.00813e-09 2.718 ||| 0-1 ||| 1 27806 +del ||| community ||| 0.000944287 0.0010142 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 1059 27806 +del ||| compulsory ||| 0.03125 0.0196078 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 32 27806 +del ||| concession to ||| 0.25 0.0357143 3.59635e-05 1.42708e-06 2.718 ||| 0-0 ||| 4 27806 +del ||| concession ||| 0.0454545 0.0357143 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 22 27806 +del ||| confession of weakness ; ||| 1 0.132374 3.59635e-05 1.14607e-13 2.718 ||| 0-1 ||| 1 27806 +del ||| confession of weakness ||| 1 0.132374 3.59635e-05 6.46438e-11 2.718 ||| 0-1 ||| 1 27806 +del ||| confession of ||| 0.5 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-1 ||| 2 27806 +del ||| confines of the ||| 0.166667 0.0980897 3.59635e-05 3.96246e-07 2.718 ||| 0-1 0-2 ||| 6 27806 +del ||| confronts southern ||| 1 0.230248 3.59635e-05 1.14927e-08 2.718 ||| 0-1 ||| 1 27806 +del ||| consistent advocates of awarding ||| 0.25 0.132374 3.59635e-05 4.20185e-16 2.718 ||| 0-2 ||| 4 27806 +del ||| consistent advocates of ||| 0.25 0.132374 3.59635e-05 6.46438e-11 2.718 ||| 0-2 ||| 4 27806 +del ||| continued a ||| 0.333333 0.007984 3.59635e-05 2.78808e-06 2.718 ||| 0-0 ||| 3 27806 +del ||| continued ||| 0.00233645 0.007984 3.59635e-05 6.93e-05 2.718 ||| 0-0 ||| 428 27806 +del ||| convincing case that the ||| 1 0.0638053 3.59635e-05 8.82165e-12 2.718 ||| 0-3 ||| 1 27806 +del ||| copy inherited from your ||| 0.5 0.0842892 3.59635e-05 1.90798e-16 2.718 ||| 0-2 ||| 2 27806 +del ||| copy inherited from ||| 1 0.0842892 3.59635e-05 2.09899e-12 2.718 ||| 0-2 ||| 1 27806 +del ||| corner of ||| 0.0625 0.132374 3.59635e-05 1.32603e-05 2.718 ||| 0-1 ||| 16 27806 +del ||| cost of lingering ||| 0.166667 0.132374 3.59635e-05 6.45775e-10 2.718 ||| 0-1 ||| 6 27806 +del ||| cost of ||| 0.00298507 0.132374 3.59635e-05 4.9675e-05 2.718 ||| 0-1 ||| 335 27806 +del ||| countered ||| 0.1 0.0666667 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 10 27806 +del ||| counterpart of the ||| 0.333333 0.0980897 3.59635e-05 7.92493e-07 2.718 ||| 0-1 0-2 ||| 3 27806 +del ||| country 's now ||| 1 0.145691 3.59635e-05 1.60675e-07 2.718 ||| 0-1 ||| 1 27806 +del ||| country 's traditional ||| 0.0769231 0.145691 3.59635e-05 4.2135e-09 2.718 ||| 0-1 ||| 13 27806 +del ||| country 's ||| 0.00443951 0.145691 0.000143854 0.000108038 2.718 ||| 0-1 ||| 901 27806 +del ||| countrys ||| 0.333333 0.666667 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 3 27806 +del ||| course in the ||| 0.166667 0.0166084 3.59635e-05 4.98934e-07 2.718 ||| 0-1 ||| 6 27806 +del ||| course in ||| 0.166667 0.0166084 3.59635e-05 9.39088e-06 2.718 ||| 0-1 ||| 6 27806 +del ||| credit ||| 0.00179695 0.0768482 7.19269e-05 0.0013694 2.718 ||| 0-0 ||| 1113 27806 +del ||| criminal ||| 0.0047619 0.009009 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 210 27806 +del ||| crises of the ||| 0.25 0.0980897 3.59635e-05 1.98123e-06 2.718 ||| 0-1 0-2 ||| 4 27806 +del ||| culprits ||| 0.0526316 0.030303 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 19 27806 +del ||| cultural ||| 0.00192308 0.0020202 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 520 27806 +del ||| cuts ||| 0.00153139 0.0052817 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 653 27806 +del ||| damaging the environment ||| 0.333333 0.0638053 3.59635e-05 7.07013e-11 2.718 ||| 0-1 ||| 3 27806 +del ||| damaging the ||| 0.111111 0.0638053 3.59635e-05 1.55388e-06 2.718 ||| 0-1 ||| 9 27806 +del ||| dead cat bounce " ||| 0.5 0.133333 3.59635e-05 1.31566e-16 2.718 ||| 0-2 ||| 2 27806 +del ||| dead cat bounce ||| 0.5 0.133333 3.59635e-05 2.63442e-14 2.718 ||| 0-2 ||| 2 27806 +del ||| decade of the ||| 0.0833333 0.0980897 3.59635e-05 2.77372e-06 2.718 ||| 0-1 0-2 ||| 12 27806 +del ||| decline ||| 0.00132275 0.0014164 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 756 27806 +del ||| deeds . in the meantime ||| 1 0.0638053 3.59635e-05 2.14069e-15 2.718 ||| 0-3 ||| 1 27806 +del ||| deeds . in the ||| 1 0.0638053 3.59635e-05 1.09779e-10 2.718 ||| 0-3 ||| 1 27806 +del ||| deeper in ||| 1 0.0166084 3.59635e-05 5.69676e-07 2.718 ||| 0-1 ||| 1 27806 +del ||| del ||| 1 0.652174 0.000323671 0.00026 2.718 ||| 0-0 ||| 9 27806 +del ||| delta ||| 0.0714286 0.44 3.59635e-05 0.0001907 2.718 ||| 0-0 ||| 14 27806 +del ||| deniers ||| 0.0625 0.0434783 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 16 27806 +del ||| department , ||| 0.166667 0.0810811 3.59635e-05 1.06221e-05 2.718 ||| 0-0 ||| 6 27806 +del ||| department ||| 0.0714286 0.0810811 7.19269e-05 5.2e-05 2.718 ||| 0-0 ||| 28 27806 +del ||| dependent on ||| 0.00769231 0.0145631 3.59635e-05 2.0397e-07 2.718 ||| 0-0 ||| 130 27806 +del ||| dependent ||| 0.04 0.0145631 7.19269e-05 5.2e-05 2.718 ||| 0-0 ||| 50 27806 +del ||| descend from the ||| 1 0.0740472 3.59635e-05 7.71968e-08 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| description of ||| 0.0769231 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 13 27806 +del ||| designed as state of ||| 1 0.132374 3.59635e-05 5.89063e-11 2.718 ||| 0-3 ||| 1 27806 +del ||| desires of the ||| 0.25 0.0980897 3.59635e-05 7.92493e-07 2.718 ||| 0-1 0-2 ||| 4 27806 +del ||| devoid of ||| 0.0454545 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 22 27806 +del ||| director -- ||| 0.5 0.0162602 3.59635e-05 1.74423e-07 2.718 ||| 0-0 ||| 2 27806 +del ||| director ||| 0.0135135 0.0162602 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 74 27806 +del ||| dissolution of the ||| 0.166667 0.0980897 3.59635e-05 3.96246e-07 2.718 ||| 0-1 0-2 ||| 6 27806 +del ||| divide America 's ||| 1 0.145691 3.59635e-05 7.56e-09 2.718 ||| 0-2 ||| 1 27806 +del ||| documents , ||| 0.125 0.0280374 3.59635e-05 1.06221e-05 2.718 ||| 0-0 ||| 8 27806 +del ||| documents ||| 0.0162602 0.0280374 7.19269e-05 5.2e-05 2.718 ||| 0-0 ||| 123 27806 +del ||| doesn 't take orders from the ||| 0.5 0.0740472 3.59635e-05 8.60197e-18 2.718 ||| 0-4 0-5 ||| 2 27806 +del ||| dollar falls ||| 0.142857 0.0402098 3.59635e-05 2.59155e-08 2.718 ||| 0-0 ||| 7 27806 +del ||| dollar ||| 0.000831255 0.0402098 3.59635e-05 0.0007974 2.718 ||| 0-0 ||| 1203 27806 +del ||| domestic ||| 0.000710227 0.0014674 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 1408 27806 +del ||| done in ||| 0.0277778 0.0166084 3.59635e-05 5.1227e-06 2.718 ||| 0-1 ||| 36 27806 +del ||| down the ||| 0.00847458 0.0638053 3.59635e-05 0.000349311 2.718 ||| 0-1 ||| 118 27806 +del ||| draft ||| 0.00609756 0.0620155 3.59635e-05 0.0001387 2.718 ||| 0-0 ||| 164 27806 +del ||| drain " of ||| 1 0.132374 3.59635e-05 1.65558e-08 2.718 ||| 0-2 ||| 1 27806 +del ||| drives ||| 0.025641 0.0322581 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 39 27806 +del ||| drop the ||| 0.166667 0.0638053 3.59635e-05 1.2431e-05 2.718 ||| 0-1 ||| 6 27806 +del ||| drops , of ||| 1 0.132374 3.59635e-05 3.38586e-07 2.718 ||| 0-2 ||| 1 27806 +del ||| drove ||| 0.0217391 0.0212766 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 46 27806 +del ||| during the ||| 0.00285442 0.0638053 0.00010789 3.57152e-05 2.718 ||| 0-1 ||| 1051 27806 +del ||| early bird " ||| 1 0.0146119 3.59635e-05 9.00162e-12 2.718 ||| 0-0 ||| 1 27806 +del ||| early bird ||| 1 0.0146119 3.59635e-05 1.80245e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| early ||| 0.000831255 0.0146119 3.59635e-05 0.0002773 2.718 ||| 0-0 ||| 1203 27806 +del ||| eastern ||| 0.0121951 0.169643 7.19269e-05 0.0006587 2.718 ||| 0-0 ||| 164 27806 +del ||| economies in the ||| 0.166667 0.0402068 3.59635e-05 5.10171e-07 2.718 ||| 0-1 0-2 ||| 6 27806 +del ||| economists ' ||| 0.166667 0.0044162 3.59635e-05 1.12684e-08 2.718 ||| 0-1 ||| 6 27806 +del ||| economy 's ||| 0.025 0.145691 3.59635e-05 4.08499e-05 2.718 ||| 0-1 ||| 40 27806 +del ||| either ||| 0.00445434 0.0031185 7.19269e-05 5.2e-05 2.718 ||| 0-0 ||| 449 27806 +del ||| employment ||| 0.00142045 0.0690355 3.59635e-05 0.0011787 2.718 ||| 0-0 ||| 704 27806 +del ||| encourages insurance ||| 0.25 0.0108548 3.59635e-05 3.6062e-09 2.718 ||| 0-1 ||| 4 27806 +del ||| end of the ||| 0.0103806 0.0980897 0.00010789 2.89016e-05 2.718 ||| 0-1 0-2 ||| 289 27806 +del ||| end the ||| 0.0114943 0.0638053 3.59635e-05 0.000113337 2.718 ||| 0-1 ||| 87 27806 +del ||| ends of ||| 0.125 0.132374 3.59635e-05 1.16027e-05 2.718 ||| 0-1 ||| 8 27806 +del ||| enforcement ||| 0.0060241 0.0671642 3.59635e-05 0.000312 2.718 ||| 0-0 ||| 166 27806 +del ||| enter the ||| 0.027027 0.0638053 3.59635e-05 1.2431e-05 2.718 ||| 0-1 ||| 37 27806 +del ||| establishment of the ||| 0.0434783 0.132374 3.59635e-05 1.14348e-06 2.718 ||| 0-1 ||| 23 27806 +del ||| establishment of ||| 0.0105263 0.132374 3.59635e-05 2.15224e-05 2.718 ||| 0-1 ||| 95 27806 +del ||| ethanol ||| 0.0178571 0.025641 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 56 27806 +del ||| euro area ||| 0.00961538 0.210839 3.59635e-05 2.55991e-07 2.718 ||| 0-0 ||| 104 27806 +del ||| euro ||| 0.00190658 0.210839 7.19269e-05 0.0049229 2.718 ||| 0-0 ||| 1049 27806 +del ||| even a parody of ||| 0.5 0.132374 3.59635e-05 6.06308e-11 2.718 ||| 0-3 ||| 2 27806 +del ||| every misstep that the ||| 1 0.0638053 3.59635e-05 1.81409e-12 2.718 ||| 0-3 ||| 1 27806 +del ||| exchange of ||| 0.0526316 0.132374 3.59635e-05 3.64403e-05 2.718 ||| 0-1 ||| 19 27806 +del ||| exempt from the ||| 0.5 0.0740472 3.59635e-05 7.71968e-08 2.718 ||| 0-1 0-2 ||| 2 27806 +del ||| fall into the ||| 0.1 0.0638053 3.59635e-05 5.32837e-08 2.718 ||| 0-2 ||| 10 27806 +del ||| falling temperatures and spreading ice ages ||| 0.5 0.0784314 3.59635e-05 1.12152e-24 2.718 ||| 0-4 ||| 2 27806 +del ||| falling temperatures and spreading ice ||| 0.5 0.0784314 3.59635e-05 5.75139e-20 2.718 ||| 0-4 ||| 2 27806 +del ||| far within the ||| 1 0.0638053 3.59635e-05 3.49641e-08 2.718 ||| 0-2 ||| 1 27806 +del ||| faster growth and ||| 0.125 0.0277964 3.59635e-05 1.0994e-09 2.718 ||| 0-1 ||| 8 27806 +del ||| faster growth ||| 0.0357143 0.0277964 3.59635e-05 1.30926e-07 2.718 ||| 0-1 ||| 28 27806 +del ||| fate of the ||| 0.0434783 0.0980897 3.59635e-05 7.92493e-07 2.718 ||| 0-1 0-2 ||| 23 27806 +del ||| fear of the ||| 0.0588235 0.0980897 3.59635e-05 3.16997e-06 2.718 ||| 0-1 0-2 ||| 17 27806 +del ||| fiber of ||| 0.333333 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 3 27806 +del ||| field of ||| 0.027027 0.132374 3.59635e-05 1.65498e-05 2.718 ||| 0-1 ||| 37 27806 +del ||| fight one 's ||| 1 0.145691 3.59635e-05 8.3963e-08 2.718 ||| 0-2 ||| 1 27806 +del ||| financial crises of the ||| 0.25 0.0980897 3.59635e-05 5.91794e-10 2.718 ||| 0-2 0-3 ||| 4 27806 +del ||| financial-sector ||| 0.0263158 0.275862 3.59635e-05 0.000416 2.718 ||| 0-0 ||| 38 27806 +del ||| financing ||| 0.00205761 0.0026738 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 486 27806 +del ||| finding in the United Nations ' ||| 1 0.0402068 3.59635e-05 1.02627e-17 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| finding in the United Nations ||| 1 0.0402068 3.59635e-05 1.24426e-14 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| finding in the United ||| 1 0.0402068 3.59635e-05 2.39281e-10 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| finding in the ||| 0.5 0.0402068 3.59635e-05 6.46357e-07 2.718 ||| 0-1 0-2 ||| 2 27806 +del ||| first-quarter flash ||| 0.333333 0.4 3.59635e-05 4.511e-10 2.718 ||| 0-0 ||| 3 27806 +del ||| first-quarter ||| 0.333333 0.4 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 3 27806 +del ||| focus upon nurturing ||| 0.5 0.0096525 3.59635e-05 8.05313e-14 2.718 ||| 0-1 ||| 2 27806 +del ||| focus upon ||| 0.25 0.0096525 3.59635e-05 1.23894e-08 2.718 ||| 0-1 ||| 4 27806 +del ||| folk ||| 0.0909091 0.105263 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 11 27806 +del ||| follow the ||| 0.0151515 0.0638053 3.59635e-05 4.03768e-05 2.718 ||| 0-1 ||| 66 27806 +del ||| foot in the door ||| 0.25 0.0402068 3.59635e-05 5.74702e-12 2.718 ||| 0-1 0-2 ||| 4 27806 +del ||| foot in the ||| 0.2 0.0402068 3.59635e-05 6.80927e-08 2.718 ||| 0-1 0-2 ||| 5 27806 +del ||| football ||| 0.00826446 0.0478469 3.59635e-05 0.0001733 2.718 ||| 0-0 ||| 121 27806 +del ||| for a ||| 0.0017094 0.0087283 0.00010789 0.000207822 2.718 ||| 0-0 ||| 1755 27806 +del ||| for about ||| 0.0555556 0.00740385 3.59635e-05 4.02917e-06 2.718 ||| 0-0 0-1 ||| 18 27806 +del ||| for an ||| 0.00344828 0.0087283 3.59635e-05 1.78802e-05 2.718 ||| 0-0 ||| 290 27806 +del ||| for job ||| 0.5 0.0056834 3.59635e-05 1.79246e-07 2.718 ||| 0-0 0-1 ||| 2 27806 +del ||| for my ||| 0.0714286 0.0087283 3.59635e-05 1.10699e-06 2.718 ||| 0-0 ||| 14 27806 +del ||| for pedestrians ||| 0.5 0.0087283 3.59635e-05 3.35764e-08 2.718 ||| 0-0 ||| 2 27806 +del ||| for president ||| 0.0434783 0.0087283 3.59635e-05 7.04588e-07 2.718 ||| 0-0 ||| 23 27806 +del ||| for the course in the ||| 0.333333 0.0166084 3.59635e-05 1.26187e-10 2.718 ||| 0-3 ||| 3 27806 +del ||| for the course in ||| 0.333333 0.0166084 3.59635e-05 2.37507e-09 2.718 ||| 0-3 ||| 3 27806 +del ||| for the school from the ||| 1 0.0740472 3.59635e-05 6.83342e-11 2.718 ||| 0-3 0-4 ||| 1 27806 +del ||| for the works ||| 0.2 0.0087283 3.59635e-05 7.1356e-09 2.718 ||| 0-0 ||| 5 27806 +del ||| for the ||| 0.0212408 0.0362668 0.00363231 0.00123488 2.718 ||| 0-0 0-1 ||| 4755 27806 +del ||| for ||| 0.00397717 0.0087283 0.00496296 0.0051656 2.718 ||| 0-0 ||| 34698 27806 +del ||| forces without even a parody of ||| 0.5 0.132374 3.59635e-05 8.95042e-19 2.718 ||| 0-5 ||| 2 27806 +del ||| foreign-exchange ||| 0.00793651 0.0179372 3.59635e-05 6.93e-05 2.718 ||| 0-0 ||| 126 27806 +del ||| form of ||| 0.00495049 0.132374 7.19269e-05 9.7718e-05 2.718 ||| 0-1 ||| 404 27806 +del ||| formats ||| 0.333333 0.2 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 3 27806 +del ||| former ||| 0.00150489 0.0042699 7.19269e-05 8.67e-05 2.718 ||| 0-0 ||| 1329 27806 +del ||| forms of ||| 0.00689655 0.132374 3.59635e-05 2.15224e-05 2.718 ||| 0-1 ||| 145 27806 +del ||| found anywhere , ||| 0.5 0.0060606 3.59635e-05 1.42274e-09 2.718 ||| 0-1 ||| 2 27806 +del ||| found anywhere ||| 0.5 0.0060606 3.59635e-05 6.96498e-09 2.718 ||| 0-1 ||| 2 27806 +del ||| found wanting . the ||| 1 0.0638053 3.59635e-05 8.6292e-12 2.718 ||| 0-3 ||| 1 27806 +del ||| free from ||| 0.0555556 0.0842892 3.59635e-05 5.80762e-06 2.718 ||| 0-1 ||| 18 27806 +del ||| from " ||| 0.0238095 0.0842892 3.59635e-05 0.000124054 2.718 ||| 0-0 ||| 42 27806 +del ||| from a ||| 0.012024 0.0842892 0.000215781 0.000999367 2.718 ||| 0-0 ||| 499 27806 +del ||| from bailouts to " ||| 1 0.0842892 3.59635e-05 6.6516e-11 2.718 ||| 0-0 ||| 1 27806 +del ||| from bailouts to ||| 1 0.0842892 3.59635e-05 1.33189e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| from bailouts ||| 1 0.0842892 3.59635e-05 1.61461e-07 2.718 ||| 0-0 ||| 1 27806 +del ||| from cradle ||| 1 0.0842892 3.59635e-05 4.84382e-07 2.718 ||| 0-0 ||| 1 27806 +del ||| from everyone ||| 0.5 0.0842892 3.59635e-05 2.25797e-06 2.718 ||| 0-0 ||| 2 27806 +del ||| from faster ||| 1 0.0842892 3.59635e-05 1.13022e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| from fiscal ||| 1 0.0842892 3.59635e-05 1.77358e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| from his ||| 0.0128205 0.0842892 3.59635e-05 2.48426e-05 2.718 ||| 0-0 ||| 78 27806 +del ||| from inside the ||| 0.2 0.0638053 3.59635e-05 2.30286e-08 2.718 ||| 0-2 ||| 5 27806 +del ||| from international trade ||| 0.25 0.0842892 3.59635e-05 1.55286e-09 2.718 ||| 0-0 ||| 4 27806 +del ||| from international ||| 0.25 0.0842892 3.59635e-05 6.13054e-06 2.718 ||| 0-0 ||| 4 27806 +del ||| from its ||| 0.00537634 0.0842892 3.59635e-05 4.93622e-05 2.718 ||| 0-0 ||| 186 27806 +del ||| from oil exports ||| 0.5 0.139505 3.59635e-05 7.55675e-09 2.718 ||| 0-0 0-1 ||| 2 27806 +del ||| from oil ||| 0.0833333 0.139505 3.59635e-05 0.000193763 2.718 ||| 0-0 0-1 ||| 12 27806 +del ||| from other ||| 0.0133333 0.0842892 3.59635e-05 2.91995e-05 2.718 ||| 0-0 ||| 75 27806 +del ||| from power ||| 0.0344828 0.0842892 3.59635e-05 1.17767e-05 2.718 ||| 0-0 ||| 29 27806 +del ||| from that ||| 0.0862069 0.0842892 0.000179817 0.000202939 2.718 ||| 0-0 ||| 58 27806 +del ||| from the Indian ||| 1 0.0543294 3.59635e-05 7.20306e-07 2.718 ||| 0-0 0-1 0-2 ||| 1 27806 +del ||| from the fact ||| 0.04 0.0842892 3.59635e-05 8.6562e-07 2.718 ||| 0-0 ||| 25 27806 +del ||| from the gain ||| 0.5 0.0740472 3.59635e-05 9.25768e-07 2.718 ||| 0-0 0-1 ||| 2 27806 +del ||| from the one ||| 0.333333 0.0740472 3.59635e-05 2.38716e-05 2.718 ||| 0-0 0-1 ||| 3 27806 +del ||| from the world ||| 0.333333 0.0740472 7.19269e-05 5.20603e-06 2.718 ||| 0-0 0-1 ||| 6 27806 +del ||| from the ||| 0.154956 0.0740472 0.0150687 0.00593822 2.718 ||| 0-0 0-1 ||| 2704 27806 +del ||| from your ||| 0.25 0.0842892 3.59635e-05 2.25797e-06 2.718 ||| 0-0 ||| 4 27806 +del ||| from ||| 0.0454884 0.0842892 0.0197439 0.0248401 2.718 ||| 0-0 ||| 12069 27806 +del ||| fueling ||| 0.0113636 0.008547 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 88 27806 +del ||| full percent of ||| 0.333333 0.132374 3.59635e-05 1.1195e-09 2.718 ||| 0-2 ||| 3 27806 +del ||| fully addressed ||| 0.5 0.04 3.59635e-05 2.13781e-08 2.718 ||| 0-0 ||| 2 27806 +del ||| fully its ||| 0.333333 0.04 3.59635e-05 6.54584e-07 2.718 ||| 0-0 ||| 3 27806 +del ||| fully ||| 0.00477327 0.04 7.19269e-05 0.0003294 2.718 ||| 0-0 ||| 419 27806 +del ||| further away from the ||| 0.333333 0.0740472 3.59635e-05 1.77813e-09 2.718 ||| 0-2 0-3 ||| 3 27806 +del ||| further weakening of the ||| 0.333333 0.0980897 3.59635e-05 1.28661e-10 2.718 ||| 0-2 0-3 ||| 3 27806 +del ||| future of ||| 0.00662252 0.132374 3.59635e-05 3.80978e-05 2.718 ||| 0-1 ||| 151 27806 +del ||| gain in ||| 0.1 0.0166084 3.59635e-05 3.41586e-06 2.718 ||| 0-1 ||| 10 27806 +del ||| gains of ||| 0.142857 0.132374 3.59635e-05 2.98101e-05 2.718 ||| 0-1 ||| 7 27806 +del ||| game 's ||| 0.166667 0.145691 3.59635e-05 1.63428e-05 2.718 ||| 0-1 ||| 6 27806 +del ||| game ||| 0.00308642 0.0157729 3.59635e-05 8.67e-05 2.718 ||| 0-0 ||| 324 27806 +del ||| gas from ||| 0.1 0.0842892 3.59635e-05 9.68764e-07 2.718 ||| 0-1 ||| 10 27806 +del ||| generated the ||| 0.125 0.0638053 3.59635e-05 2.01765e-05 2.718 ||| 0-1 ||| 8 27806 +del ||| get much beyond vague notions of ||| 1 0.132374 3.59635e-05 3.56651e-21 2.718 ||| 0-5 ||| 1 27806 +del ||| gilts " ||| 1 1 3.59635e-05 8.63979e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| gilts ||| 1 1 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 1 27806 +del ||| gives him a substantial popularity dividend to ||| 1 0.0065359 3.59635e-05 1.83871e-24 2.718 ||| 0-4 ||| 1 27806 +del ||| gives him a substantial popularity dividend ||| 1 0.0065359 3.59635e-05 2.22901e-23 2.718 ||| 0-4 ||| 1 27806 +del ||| gives him a substantial popularity ||| 1 0.0065359 3.59635e-05 1.14308e-18 2.718 ||| 0-4 ||| 1 27806 +del ||| giving the ||| 0.0344828 0.0638053 3.59635e-05 3.10536e-05 2.718 ||| 0-1 ||| 29 27806 +del ||| global ||| 0.00220913 0.0039754 0.000431562 0.0003467 2.718 ||| 0-0 ||| 5432 27806 +del ||| globally ||| 0.00675676 0.0139373 3.59635e-05 6.93e-05 2.718 ||| 0-0 ||| 148 27806 +del ||| governance ||| 0.00155039 0.0013193 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 645 27806 +del ||| government parties , ||| 0.5 0.0711059 3.59635e-05 8.98542e-08 2.718 ||| 0-0 ||| 2 27806 +del ||| government parties ||| 0.25 0.0711059 3.59635e-05 4.39878e-07 2.718 ||| 0-0 ||| 4 27806 +del ||| government ||| 0.00155148 0.0711059 0.000395598 0.0084592 2.718 ||| 0-0 ||| 7090 27806 +del ||| governmental ||| 0.0204082 0.078125 3.59635e-05 8.67e-05 2.718 ||| 0-0 ||| 49 27806 +del ||| governor of the ||| 0.2 0.0980897 7.19269e-05 1.98123e-06 2.718 ||| 0-1 0-2 ||| 10 27806 +del ||| governor of ||| 0.0714286 0.132374 3.59635e-05 8.28767e-06 2.718 ||| 0-1 ||| 14 27806 +del ||| grain of salt ||| 0.5 0.132374 3.59635e-05 2.15479e-11 2.718 ||| 0-1 ||| 2 27806 +del ||| grain of ||| 0.125 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 8 27806 +del ||| grant law enforcement ||| 0.166667 0.0671642 3.59635e-05 1.89699e-12 2.718 ||| 0-2 ||| 6 27806 +del ||| group 's international ||| 0.5 0.145691 3.59635e-05 2.68778e-09 2.718 ||| 0-1 ||| 2 27806 +del ||| group 's ||| 0.05 0.145691 3.59635e-05 1.08905e-05 2.718 ||| 0-1 ||| 20 27806 +del ||| growth and ||| 0.00543478 0.0277964 3.59635e-05 2.41627e-05 2.718 ||| 0-0 ||| 184 27806 +del ||| growth of ||| 0.00806452 0.132374 3.59635e-05 5.46476e-05 2.718 ||| 0-1 ||| 124 27806 +del ||| growth ||| 0.000817494 0.0277964 0.000143854 0.0028775 2.718 ||| 0-0 ||| 4893 27806 +del ||| guarantee for ||| 0.5 0.0087283 3.59635e-05 1.00729e-07 2.718 ||| 0-1 ||| 2 27806 +del ||| had the ||| 0.00833333 0.0638053 3.59635e-05 0.000339988 2.718 ||| 0-1 ||| 120 27806 +del ||| happen by ||| 0.5 0.0100882 3.59635e-05 3.85417e-07 2.718 ||| 0-1 ||| 2 27806 +del ||| has been in ||| 0.0208333 0.0166084 3.59635e-05 1.21357e-07 2.718 ||| 0-2 ||| 48 27806 +del ||| have a stake in ||| 0.166667 0.0166084 3.59635e-05 3.54533e-10 2.718 ||| 0-3 ||| 6 27806 +del ||| have ratified the ||| 0.333333 0.0638053 3.59635e-05 8.0225e-09 2.718 ||| 0-2 ||| 3 27806 +del ||| have the ||| 0.00362319 0.0638053 3.59635e-05 0.00123423 2.718 ||| 0-1 ||| 276 27806 +del ||| head of the ||| 0.0217391 0.0980897 7.19269e-05 1.38564e-05 2.718 ||| 0-1 0-2 ||| 92 27806 +del ||| heading off the ||| 0.5 0.0638053 3.59635e-05 1.42894e-08 2.718 ||| 0-2 ||| 2 27806 +del ||| heels of ||| 0.142857 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 7 27806 +del ||| held by the ||| 0.142857 0.0638053 3.59635e-05 7.6769e-07 2.718 ||| 0-2 ||| 7 27806 +del ||| help from the ||| 0.0588235 0.0740472 3.59635e-05 2.00534e-06 2.718 ||| 0-1 0-2 ||| 17 27806 +del ||| heralded ||| 0.0526316 0.047619 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 19 27806 +del ||| him a substantial popularity dividend to add ||| 1 0.0065359 3.59635e-05 1.70723e-24 2.718 ||| 0-3 ||| 1 27806 +del ||| him a substantial popularity dividend to ||| 1 0.0065359 3.59635e-05 2.02279e-20 2.718 ||| 0-3 ||| 1 27806 +del ||| him a substantial popularity dividend ||| 1 0.0065359 3.59635e-05 2.45216e-19 2.718 ||| 0-3 ||| 1 27806 +del ||| him a substantial popularity ||| 1 0.0065359 3.59635e-05 1.25752e-14 2.718 ||| 0-3 ||| 1 27806 +del ||| hinged ||| 0.5 1 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 2 27806 +del ||| his third wife , became ||| 0.5 0.0126582 3.59635e-05 2.81896e-17 2.718 ||| 0-2 ||| 2 27806 +del ||| his third wife , ||| 0.5 0.0126582 3.59635e-05 1.60808e-13 2.718 ||| 0-2 ||| 2 27806 +del ||| his third wife ||| 0.5 0.0126582 3.59635e-05 7.87229e-13 2.718 ||| 0-2 ||| 2 27806 +del ||| home about ||| 0.333333 0.0060794 3.59635e-05 2.93826e-07 2.718 ||| 0-1 ||| 3 27806 +del ||| horizons of ||| 1 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-1 ||| 1 27806 +del ||| host ||| 0.00490196 0.0134529 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 204 27806 +del ||| how costly ||| 0.166667 0.0019782 3.59635e-05 5.4093e-09 2.718 ||| 0-0 ||| 6 27806 +del ||| how much ||| 0.00367647 0.0019782 3.59635e-05 1.99964e-07 2.718 ||| 0-0 ||| 272 27806 +del ||| how ||| 0.000896593 0.0019782 0.00010789 0.0001387 2.718 ||| 0-0 ||| 3346 27806 +del ||| ice ages ||| 0.5 0.0784314 3.59635e-05 2.70465e-09 2.718 ||| 0-0 ||| 2 27806 +del ||| ice ||| 0.0119048 0.0784314 3.59635e-05 0.0001387 2.718 ||| 0-0 ||| 84 27806 +del ||| idea of ||| 0.00373134 0.132374 3.59635e-05 2.64951e-05 2.718 ||| 0-1 ||| 268 27806 +del ||| implementation of the ||| 0.0434783 0.0980897 3.59635e-05 7.92493e-07 2.718 ||| 0-1 0-2 ||| 23 27806 +del ||| importance of the find ||| 0.25 0.0980897 3.59635e-05 7.30837e-10 2.718 ||| 0-1 0-2 ||| 4 27806 +del ||| importance of the ||| 0.04 0.0980897 3.59635e-05 1.58499e-06 2.718 ||| 0-1 0-2 ||| 25 27806 +del ||| in 2007 ||| 0.00549451 0.0166084 3.59635e-05 4.27257e-07 2.718 ||| 0-0 ||| 182 27806 +del ||| in America 's ||| 0.0625 0.0811496 3.59635e-05 3.64053e-06 2.718 ||| 0-0 0-2 ||| 16 27806 +del ||| in Europe ||| 0.00107296 0.0166084 3.59635e-05 1.05302e-05 2.718 ||| 0-0 ||| 932 27806 +del ||| in Japanese ||| 0.2 0.0166084 3.59635e-05 9.96932e-07 2.718 ||| 0-0 ||| 5 27806 +del ||| in a ||| 0.00030722 0.0166084 3.59635e-05 0.000881507 2.718 ||| 0-0 ||| 3255 27806 +del ||| in arms ||| 0.0666667 0.0166084 3.59635e-05 1.13935e-06 2.718 ||| 0-0 ||| 15 27806 +del ||| in both the ||| 0.0238095 0.0402068 3.59635e-05 8.94633e-06 2.718 ||| 0-0 0-2 ||| 42 27806 +del ||| in conventional ||| 1 0.0166084 3.59635e-05 1.27958e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| in from ||| 0.1 0.0504488 3.59635e-05 0.000544261 2.718 ||| 0-0 0-1 ||| 10 27806 +del ||| in global ||| 0.0714286 0.0166084 3.59635e-05 1.20947e-05 2.718 ||| 0-0 ||| 14 27806 +del ||| in government ||| 0.031746 0.0438571 7.19269e-05 0.000185346 2.718 ||| 0-0 0-1 ||| 63 27806 +del ||| in his ||| 0.0021692 0.0166084 3.59635e-05 2.19128e-05 2.718 ||| 0-0 ||| 461 27806 +del ||| in increasing integration of the ||| 1 0.132374 3.59635e-05 1.93229e-13 2.718 ||| 0-3 ||| 1 27806 +del ||| in increasing integration of ||| 1 0.132374 3.59635e-05 3.63693e-12 2.718 ||| 0-3 ||| 1 27806 +del ||| in kind ||| 0.142857 0.0166084 3.59635e-05 5.83479e-06 2.718 ||| 0-0 ||| 7 27806 +del ||| in order ||| 0.00697674 0.0166084 0.00010789 1.76446e-05 2.718 ||| 0-0 ||| 430 27806 +del ||| in the European Union is about 3 ||| 1 0.0166084 3.59635e-05 1.56146e-20 2.718 ||| 0-0 ||| 1 27806 +del ||| in the European Union is about ||| 1 0.0166084 3.59635e-05 1.20112e-15 2.718 ||| 0-0 ||| 1 27806 +del ||| in the European Union is ||| 1 0.0166084 3.59635e-05 9.89066e-13 2.718 ||| 0-0 ||| 1 27806 +del ||| in the European Union ||| 0.02 0.0166084 3.59635e-05 6.00074e-11 2.718 ||| 0-0 ||| 50 27806 +del ||| in the European ||| 0.333333 0.0166084 3.59635e-05 3.55284e-07 2.718 ||| 0-0 ||| 3 27806 +del ||| in the G-20 Spotlight ||| 0.0833333 0.33438 3.59635e-05 1.9592e-11 2.718 ||| 0-2 ||| 12 27806 +del ||| in the G-20 ||| 0.05 0.33438 3.59635e-05 3.01416e-06 2.718 ||| 0-2 ||| 20 27806 +del ||| in the Southern ||| 1 0.126041 3.59635e-05 3.54082e-06 2.718 ||| 0-0 0-1 0-2 ||| 1 27806 +del ||| in the United Nations ' ||| 1 0.0402068 3.59635e-05 8.31659e-14 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| in the United Nations ||| 0.2 0.0402068 3.59635e-05 1.00832e-10 2.718 ||| 0-0 0-1 ||| 5 27806 +del ||| in the United ||| 0.0344828 0.0402068 3.59635e-05 1.93907e-06 2.718 ||| 0-0 0-1 ||| 29 27806 +del ||| in the case ||| 0.00540541 0.0402068 3.59635e-05 3.63982e-06 2.718 ||| 0-0 0-1 ||| 185 27806 +del ||| in the chain ||| 0.25 0.0402068 3.59635e-05 1.36185e-07 2.718 ||| 0-0 0-1 ||| 4 27806 +del ||| in the current ||| 0.0357143 0.0402068 3.59635e-05 1.80288e-06 2.718 ||| 0-0 0-1 ||| 28 27806 +del ||| in the door ||| 0.25 0.0402068 3.59635e-05 4.42079e-07 2.718 ||| 0-0 0-1 ||| 4 27806 +del ||| in the eyes ||| 0.0172414 0.0166084 3.59635e-05 1.05817e-07 2.718 ||| 0-0 ||| 58 27806 +del ||| in the face of ||| 0.00775194 0.0402068 3.59635e-05 5.23861e-08 2.718 ||| 0-0 0-1 ||| 129 27806 +del ||| in the face ||| 0.00740741 0.0402068 3.59635e-05 1.93907e-06 2.718 ||| 0-0 0-1 ||| 135 27806 +del ||| in the meantime ||| 0.0181818 0.0638053 3.59635e-05 7.16277e-08 2.718 ||| 0-1 ||| 55 27806 +del ||| in the newly emerging ||| 1 0.0402068 3.59635e-05 6.07353e-11 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| in the newly ||| 0.5 0.0402068 3.59635e-05 3.73986e-07 2.718 ||| 0-0 0-1 ||| 2 27806 +del ||| in the range ||| 0.181818 0.0402068 7.19269e-05 8.50635e-07 2.718 ||| 0-0 0-1 ||| 11 27806 +del ||| in the region of ||| 0.5 0.0744912 3.59635e-05 2.89134e-08 2.718 ||| 0-0 0-3 ||| 2 27806 +del ||| in the road ||| 0.142857 0.0166084 3.59635e-05 1.6635e-07 2.718 ||| 0-0 ||| 7 27806 +del ||| in the value of the ||| 0.0769231 0.0980897 3.59635e-05 9.69441e-09 2.718 ||| 0-3 0-4 ||| 13 27806 +del ||| in the ||| 0.0393789 0.0402068 0.0253542 0.0052379 2.718 ||| 0-0 0-1 ||| 17903 27806 +del ||| in their ||| 0.00140845 0.0166084 3.59635e-05 3.92726e-05 2.718 ||| 0-0 ||| 710 27806 +del ||| in this ||| 0.00222469 0.0166084 7.19269e-05 4.35407e-05 2.718 ||| 0-0 ||| 899 27806 +del ||| in ||| 0.00491687 0.0166084 0.0142415 0.0219106 2.718 ||| 0-0 ||| 80539 27806 +del ||| included ||| 0.0106952 0.0099502 7.19269e-05 3.47e-05 2.718 ||| 0-0 ||| 187 27806 +del ||| including the ||| 0.00321543 0.0638053 3.59635e-05 3.72691e-05 2.718 ||| 0-1 ||| 311 27806 +del ||| income ||| 0.00133245 0.0030242 7.19269e-05 5.2e-05 2.718 ||| 0-0 ||| 1501 27806 +del ||| increase during the ||| 0.333333 0.0638053 3.59635e-05 7.42162e-09 2.718 ||| 0-2 ||| 3 27806 +del ||| increase in ||| 0.00266667 0.0166084 3.59635e-05 4.55302e-06 2.718 ||| 0-1 ||| 375 27806 +del ||| increase ||| 0.000721501 0.0007123 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 1386 27806 +del ||| increased by 20 % , accounting ||| 1 0.0645021 3.59635e-05 1.78265e-18 2.718 ||| 0-3 ||| 1 27806 +del ||| increased by 20 % , ||| 1 0.0645021 3.59635e-05 3.42817e-14 2.718 ||| 0-3 ||| 1 27806 +del ||| increased by 20 % ||| 1 0.0645021 3.59635e-05 1.67825e-13 2.718 ||| 0-3 ||| 1 27806 +del ||| increasing integration of the ||| 1 0.132374 3.59635e-05 1.25756e-11 2.718 ||| 0-2 ||| 1 27806 +del ||| increasing integration of ||| 1 0.132374 3.59635e-05 2.36696e-10 2.718 ||| 0-2 ||| 1 27806 +del ||| increasing the ||| 0.0108696 0.0638053 3.59635e-05 1.70687e-05 2.718 ||| 0-1 ||| 92 27806 +del ||| incumbent DPP ||| 1 0.166667 3.59635e-05 4.5084e-09 2.718 ||| 0-1 ||| 1 27806 +del ||| incumbent passes from the ||| 0.5 0.0740472 3.59635e-05 6.02135e-12 2.718 ||| 0-2 0-3 ||| 2 27806 +del ||| indicates how much ||| 1 0.0246914 3.59635e-05 2.20919e-11 2.718 ||| 0-0 ||| 1 27806 +del ||| indicates how ||| 0.333333 0.0246914 3.59635e-05 1.53235e-08 2.718 ||| 0-0 ||| 3 27806 +del ||| indicates ||| 0.0114943 0.0246914 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 87 27806 +del ||| ingredients to ||| 0.333333 0.000537 3.59635e-05 1.23942e-08 2.718 ||| 0-1 ||| 3 27806 +del ||| inherited from your ||| 0.2 0.0842892 3.59635e-05 1.46768e-11 2.718 ||| 0-1 ||| 5 27806 +del ||| inherited from ||| 0.0769231 0.0842892 3.59635e-05 1.61461e-07 2.718 ||| 0-1 ||| 13 27806 +del ||| inland ||| 0.0333333 0.333333 3.59635e-05 0.0001733 2.718 ||| 0-0 ||| 30 27806 +del ||| inside the ||| 0.0178571 0.0638053 3.59635e-05 1.3961e-05 2.718 ||| 0-1 ||| 56 27806 +del ||| insurance ||| 0.00182815 0.0108548 3.59635e-05 0.0001387 2.718 ||| 0-0 ||| 547 27806 +del ||| integral ||| 0.0416667 0.0232558 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 24 27806 +del ||| integration of the ||| 0.0909091 0.132374 3.59635e-05 1.76128e-07 2.718 ||| 0-1 ||| 11 27806 +del ||| integration of ||| 0.0333333 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 30 27806 +del ||| interest of the ||| 0.111111 0.0980897 3.59635e-05 2.1379e-05 2.718 ||| 0-1 0-2 ||| 9 27806 +del ||| interests and policies of the Soviet Union ||| 1 0.132374 3.59635e-05 5.05453e-21 2.718 ||| 0-3 ||| 1 27806 +del ||| interests and policies of the Soviet ||| 1 0.132374 3.59635e-05 2.99262e-17 2.718 ||| 0-3 ||| 1 27806 +del ||| interests and policies of the ||| 1 0.132374 3.59635e-05 9.20806e-13 2.718 ||| 0-3 ||| 1 27806 +del ||| interests and policies of ||| 1 0.132374 3.59635e-05 1.73313e-11 2.718 ||| 0-3 ||| 1 27806 +del ||| interwar Depression led to the disintegration of ||| 1 0.0638053 3.59635e-05 7.60216e-23 2.718 ||| 0-4 ||| 1 27806 +del ||| interwar Depression led to the disintegration ||| 1 0.0638053 3.59635e-05 2.81394e-21 2.718 ||| 0-4 ||| 1 27806 +del ||| interwar Depression led to the ||| 1 0.0638053 3.59635e-05 2.16457e-16 2.718 ||| 0-4 ||| 1 27806 +del ||| into the ||| 0.00263505 0.0638053 7.19269e-05 0.00023442 2.718 ||| 0-1 ||| 759 27806 +del ||| is at ||| 0.00471698 0.0061713 3.59635e-05 2.05717e-05 2.718 ||| 0-1 ||| 212 27806 +del ||| is in the ||| 0.0120482 0.0402068 3.59635e-05 8.63331e-05 2.718 ||| 0-1 0-2 ||| 83 27806 +del ||| is not a confession of weakness ; ||| 1 0.132374 3.59635e-05 1.78664e-19 2.718 ||| 0-4 ||| 1 27806 +del ||| is not a confession of weakness ||| 1 0.132374 3.59635e-05 1.00775e-16 2.718 ||| 0-4 ||| 1 27806 +del ||| is not a confession of ||| 1 0.132374 3.59635e-05 2.58398e-12 2.718 ||| 0-4 ||| 1 27806 +del ||| is on the ||| 0.0149254 0.0638053 3.59635e-05 1.54556e-05 2.718 ||| 0-2 ||| 67 27806 +del ||| is on ||| 0.00833333 0.0174344 3.59635e-05 0.00011257 2.718 ||| 0-1 ||| 120 27806 +del ||| is reinforcement of ||| 1 0.132374 3.59635e-05 2.73201e-08 2.718 ||| 0-2 ||| 1 27806 +del ||| is that from ||| 1 0.0842892 3.59635e-05 3.34492e-06 2.718 ||| 0-2 ||| 1 27806 +del ||| is the ||| 0.0012605 0.0638053 0.00010789 0.00394024 2.718 ||| 0-1 ||| 2380 27806 +del ||| issue of ||| 0.008 0.132374 3.59635e-05 3.97553e-05 2.718 ||| 0-1 ||| 125 27806 +del ||| issue ||| 0.000976562 0.0010299 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 1024 27806 +del ||| it from the ||| 0.5 0.0740472 3.59635e-05 0.000158114 2.718 ||| 0-1 0-2 ||| 2 27806 +del ||| it is in the ||| 0.0588235 0.0402068 3.59635e-05 2.29875e-06 2.718 ||| 0-2 0-3 ||| 17 27806 +del ||| it is on ||| 0.111111 0.0174344 3.59635e-05 2.99734e-06 2.718 ||| 0-2 ||| 9 27806 +del ||| it off the ||| 1 0.0638053 3.59635e-05 7.31688e-06 2.718 ||| 0-2 ||| 1 27806 +del ||| its ||| 0.000362713 0.0012639 0.000179817 0.0002947 2.718 ||| 0-0 ||| 13785 27806 +del ||| itself to the ||| 0.5 0.0638053 3.59635e-05 1.42161e-05 2.718 ||| 0-2 ||| 2 27806 +del ||| join the EU ||| 0.0526316 0.0638053 3.59635e-05 3.62706e-09 2.718 ||| 0-1 ||| 19 27806 +del ||| join the ||| 0.00813008 0.0638053 3.59635e-05 1.3961e-05 2.718 ||| 0-1 ||| 123 27806 +del ||| judgment of the ||| 0.25 0.0980897 3.59635e-05 2.77372e-06 2.718 ||| 0-1 0-2 ||| 4 27806 +del ||| junta 's ||| 0.2 0.145691 3.59635e-05 2.72613e-06 2.718 ||| 0-1 ||| 5 27806 +del ||| just from the ||| 0.333333 0.0740472 3.59635e-05 6.55579e-06 2.718 ||| 0-1 0-2 ||| 3 27806 +del ||| just to ||| 0.0169492 0.019431 3.59635e-05 8.00732e-05 2.718 ||| 0-0 ||| 59 27806 +del ||| just ||| 0.00267023 0.019431 0.000215781 0.0009707 2.718 ||| 0-0 ||| 2247 27806 +del ||| justice of ||| 0.0909091 0.132374 3.59635e-05 1.48923e-05 2.718 ||| 0-1 ||| 11 27806 +del ||| keeping with both the ||| 1 0.0638053 3.59635e-05 8.05272e-11 2.718 ||| 0-3 ||| 1 27806 +del ||| kind of ||| 0.00503778 0.132374 7.19269e-05 6.79079e-05 2.718 ||| 0-1 ||| 397 27806 +del ||| large beneficiary ||| 1 0.15 3.59635e-05 1.68844e-08 2.718 ||| 0-1 ||| 1 27806 +del ||| large grain of salt ||| 1 0.132374 3.59635e-05 6.99662e-15 2.718 ||| 0-2 ||| 1 27806 +del ||| large grain of ||| 1 0.132374 3.59635e-05 1.0764e-09 2.718 ||| 0-2 ||| 1 27806 +del ||| larger bank bailout than in Greece , ||| 0.5 0.0316215 3.59635e-05 1.87531e-22 2.718 ||| 0-3 0-4 ||| 2 27806 +del ||| larger bank bailout than in Greece ||| 0.5 0.0316215 3.59635e-05 9.18051e-22 2.718 ||| 0-3 0-4 ||| 2 27806 +del ||| larger bank bailout than in ||| 0.5 0.0316215 3.59635e-05 2.82477e-17 2.718 ||| 0-3 0-4 ||| 2 27806 +del ||| largest party ||| 0.0588235 0.069317 3.59635e-05 1.07144e-07 2.718 ||| 0-1 ||| 17 27806 +del ||| law enforcement ||| 0.0181818 0.0671642 3.59635e-05 4.86408e-08 2.718 ||| 0-1 ||| 55 27806 +del ||| law ||| 0.000555247 0.0007698 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 1801 27806 +del ||| lead of the late ||| 0.333333 0.0980897 3.59635e-05 6.99257e-09 2.718 ||| 0-1 0-2 ||| 3 27806 +del ||| lead of the ||| 0.2 0.0980897 3.59635e-05 3.16692e-05 2.718 ||| 0-1 0-2 ||| 5 27806 +del ||| lead the ||| 0.0163934 0.0638053 3.59635e-05 0.00012419 2.718 ||| 0-1 ||| 61 27806 +del ||| leaders in the ||| 0.125 0.0402068 3.59635e-05 6.1231e-07 2.718 ||| 0-1 0-2 ||| 8 27806 +del ||| leadership of the ||| 0.0344828 0.0980897 3.59635e-05 1.1479e-05 2.718 ||| 0-1 0-2 ||| 29 27806 +del ||| leadership ||| 0.000796813 0.0019324 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 1255 27806 +del ||| leaves the ||| 0.05 0.0638053 3.59635e-05 9.32325e-06 2.718 ||| 0-1 ||| 20 27806 +del ||| led by ||| 0.0045045 0.0100882 3.59635e-05 9.63728e-07 2.718 ||| 0-1 ||| 222 27806 +del ||| led to the disintegration of liberal economic ||| 1 0.0638053 3.59635e-05 2.09632e-20 2.718 ||| 0-2 ||| 1 27806 +del ||| led to the disintegration of liberal ||| 1 0.0638053 3.59635e-05 4.67825e-17 2.718 ||| 0-2 ||| 1 27806 +del ||| led to the disintegration of ||| 1 0.0638053 3.59635e-05 1.79933e-12 2.718 ||| 0-2 ||| 1 27806 +del ||| led to the disintegration ||| 1 0.0638053 3.59635e-05 6.6602e-11 2.718 ||| 0-2 ||| 1 27806 +del ||| led to the ||| 0.0114943 0.0638053 3.59635e-05 5.12323e-06 2.718 ||| 0-2 ||| 87 27806 +del ||| left the ||| 0.0232558 0.0638053 3.59635e-05 8.07298e-05 2.718 ||| 0-1 ||| 43 27806 +del ||| legally ||| 0.0113636 0.0123457 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 88 27806 +del ||| legislative ||| 0.00952381 0.01 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 105 27806 +del ||| length on the ||| 1 0.0638053 3.59635e-05 3.65704e-08 2.718 ||| 0-2 ||| 1 27806 +del ||| level drops , of ||| 1 0.132374 3.59635e-05 7.69605e-11 2.718 ||| 0-3 ||| 1 27806 +del ||| liberal ||| 0.00377358 0.010142 7.19269e-05 8.67e-05 2.718 ||| 0-0 ||| 530 27806 +del ||| like ||| 0.000279096 0.0002675 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 3583 27806 +del ||| line from the ||| 0.5 0.0638053 3.59635e-05 1.81824e-07 2.718 ||| 0-2 ||| 2 27806 +del ||| line in the ||| 0.166667 0.0402068 3.59635e-05 2.41519e-06 2.718 ||| 0-1 0-2 ||| 6 27806 +del ||| list of the ||| 0.142857 0.0980897 3.59635e-05 4.74886e-06 2.718 ||| 0-1 0-2 ||| 7 27806 +del ||| lose from a ||| 0.333333 0.0842892 3.59635e-05 6.48589e-08 2.718 ||| 0-1 ||| 3 27806 +del ||| lose from ||| 0.0909091 0.0842892 3.59635e-05 1.61212e-06 2.718 ||| 0-1 ||| 11 27806 +del ||| lot of ||| 0.0104167 0.132374 3.59635e-05 4.47024e-05 2.718 ||| 0-1 ||| 96 27806 +del ||| lower ||| 0.00118624 0.0084112 3.59635e-05 0.000156 2.718 ||| 0-0 ||| 843 27806 +del ||| machine of ||| 0.5 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 2 27806 +del ||| made by the ||| 0.0909091 0.0369468 7.19269e-05 9.7901e-07 2.718 ||| 0-1 0-2 ||| 22 27806 +del ||| made the ||| 0.008 0.0638053 3.59635e-05 0.00026392 2.718 ||| 0-1 ||| 125 27806 +del ||| make of the ||| 0.5 0.0980897 3.59635e-05 8.03649e-05 2.718 ||| 0-1 0-2 ||| 2 27806 +del ||| man with the ||| 0.5 0.0638053 3.59635e-05 1.4135e-07 2.718 ||| 0-2 ||| 2 27806 +del ||| manage the ||| 0.0178571 0.0638053 3.59635e-05 1.86226e-05 2.718 ||| 0-1 ||| 56 27806 +del ||| manages ||| 0.0909091 0.03125 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 11 27806 +del ||| manifes ||| 1 1 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 1 27806 +del ||| manifes ­ ||| 1 1 3.59635e-05 5.50486e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| many economists ' ||| 1 0.0044162 3.59635e-05 6.58638e-12 2.718 ||| 0-2 ||| 1 27806 +del ||| many of ||| 0.0017301 0.132374 3.59635e-05 0.000149051 2.718 ||| 0-1 ||| 578 27806 +del ||| markedly from the ||| 0.5 0.0638053 3.59635e-05 1.28156e-08 2.718 ||| 0-2 ||| 2 27806 +del ||| market ||| 0.000295421 0.121466 3.59635e-05 0.0067777 2.718 ||| 0-0 ||| 3385 27806 +del ||| market-timing ||| 1 0.333333 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 1 27806 +del ||| match ||| 0.00813008 0.0070922 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 123 27806 +del ||| materials want ||| 1 0.0145985 3.59635e-05 6.30846e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| materials with ||| 0.5 0.0145985 3.59635e-05 1.31607e-07 2.718 ||| 0-0 ||| 2 27806 +del ||| materials ||| 0.0147059 0.0145985 7.19269e-05 3.47e-05 2.718 ||| 0-0 ||| 136 27806 +del ||| matter of ||| 0.010582 0.132374 7.19269e-05 8.11427e-05 2.718 ||| 0-1 ||| 189 27806 +del ||| medicine in this ||| 1 0.0166084 3.59635e-05 5.6603e-10 2.718 ||| 0-1 ||| 1 27806 +del ||| medicine in ||| 1 0.0166084 3.59635e-05 2.84838e-07 2.718 ||| 0-1 ||| 1 27806 +del ||| meet the ||| 0.0104167 0.0638053 3.59635e-05 4.50146e-05 2.718 ||| 0-1 ||| 96 27806 +del ||| meetings ||| 0.00564972 0.009901 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 177 27806 +del ||| member of the ||| 0.0689655 0.0980897 7.19269e-05 6.73009e-06 2.718 ||| 0-1 0-2 ||| 29 27806 +del ||| members of the ||| 0.0116959 0.0980897 7.19269e-05 1.30639e-05 2.718 ||| 0-1 0-2 ||| 171 27806 +del ||| memorandum ||| 0.5 0.666667 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 2 27806 +del ||| men who built the ||| 0.5 0.0638053 3.59635e-05 3.51611e-12 2.718 ||| 0-3 ||| 2 27806 +del ||| mid-1990 's ( ||| 0.166667 0.145691 3.59635e-05 1.9121e-09 2.718 ||| 0-1 ||| 6 27806 +del ||| mid-1990 's ||| 0.0555556 0.145691 3.59635e-05 1.81742e-06 2.718 ||| 0-1 ||| 18 27806 +del ||| minders present ||| 0.111111 0.5 3.59635e-05 2.70313e-09 2.718 ||| 0-0 ||| 9 27806 +del ||| minders ||| 0.0909091 0.5 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 11 27806 +del ||| minds of the ||| 0.111111 0.0980897 3.59635e-05 7.12634e-06 2.718 ||| 0-1 0-2 ||| 9 27806 +del ||| ministerial ||| 0.03125 0.0344828 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 32 27806 +del ||| misstep that the ||| 1 0.0638053 3.59635e-05 1.26948e-08 2.718 ||| 0-2 ||| 1 27806 +del ||| modify the ||| 0.2 0.0638053 3.59635e-05 1.55388e-06 2.718 ||| 0-1 ||| 5 27806 +del ||| moisture ||| 0.333333 0.333333 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 3 27806 +del ||| moment of the ||| 0.5 0.0980897 3.59635e-05 4.74886e-06 2.718 ||| 0-1 0-2 ||| 2 27806 +del ||| more of the ||| 0.025 0.0980897 3.59635e-05 0.000130249 2.718 ||| 0-1 0-2 ||| 40 27806 +del ||| more than ||| 0.000416146 0.0466347 3.59635e-05 1.76293e-05 2.718 ||| 0-1 ||| 2403 27806 +del ||| mouthpiece of the ||| 0.2 0.0980897 3.59635e-05 3.96246e-07 2.718 ||| 0-1 0-2 ||| 5 27806 +del ||| much beyond the ||| 0.25 0.0638053 3.59635e-05 1.00707e-07 2.718 ||| 0-2 ||| 4 27806 +del ||| much beyond vague notions of ||| 1 0.132374 3.59635e-05 4.5387e-18 2.718 ||| 0-4 ||| 1 27806 +del ||| much larger bank bailout than in Greece ||| 0.5 0.0316215 3.59635e-05 1.32355e-24 2.718 ||| 0-4 0-5 ||| 2 27806 +del ||| much larger bank bailout than in ||| 0.5 0.0316215 3.59635e-05 4.07248e-20 2.718 ||| 0-4 0-5 ||| 2 27806 +del ||| much of the ||| 0.00318471 0.132374 3.59635e-05 1.95326e-05 2.718 ||| 0-1 ||| 314 27806 +del ||| much of ||| 0.00192678 0.132374 3.59635e-05 0.000367641 2.718 ||| 0-1 ||| 519 27806 +del ||| murders of the royal ||| 0.166667 0.0980897 3.59635e-05 2.31804e-11 2.718 ||| 0-1 0-2 ||| 6 27806 +del ||| murders of the ||| 0.166667 0.0980897 3.59635e-05 1.18874e-06 2.718 ||| 0-1 0-2 ||| 6 27806 +del ||| my ||| 0.00178571 0.001857 7.19269e-05 3.47e-05 2.718 ||| 0-0 ||| 1120 27806 +del ||| narrow part of ||| 0.166667 0.132374 3.59635e-05 4.0908e-09 2.718 ||| 0-2 ||| 6 27806 +del ||| nationalist ||| 0.00529101 0.0055866 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 189 27806 +del ||| nationwide terrorist ||| 0.2 0.0059524 3.59635e-05 6.76e-10 2.718 ||| 0-1 ||| 5 27806 +del ||| nature of ||| 0.00833333 0.132374 3.59635e-05 1.98649e-05 2.718 ||| 0-1 ||| 120 27806 +del ||| networks capable of devastating attacks ||| 1 0.132374 3.59635e-05 2.51103e-19 2.718 ||| 0-2 ||| 1 27806 +del ||| networks capable of devastating ||| 1 0.132374 3.59635e-05 4.8289e-15 2.718 ||| 0-2 ||| 1 27806 +del ||| networks capable of ||| 0.5 0.132374 3.59635e-05 7.42907e-10 2.718 ||| 0-2 ||| 2 27806 +del ||| new burst of ||| 0.333333 0.132374 3.59635e-05 6.08232e-09 2.718 ||| 0-2 ||| 3 27806 +del ||| new rush for the works ||| 0.25 0.0087283 3.59635e-05 6.80786e-17 2.718 ||| 0-2 ||| 4 27806 +del ||| new rush for the ||| 0.25 0.0087283 3.59635e-05 2.61841e-12 2.718 ||| 0-2 ||| 4 27806 +del ||| new rush for ||| 0.25 0.0087283 3.59635e-05 4.92834e-11 2.718 ||| 0-2 ||| 4 27806 +del ||| nonetheless manages ||| 1 0.03125 3.59635e-05 2.13482e-09 2.718 ||| 0-1 ||| 1 27806 +del ||| norm ||| 0.015873 0.015873 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 63 27806 +del ||| northern ||| 0.00888889 0.237931 7.19269e-05 0.0011961 2.718 ||| 0-0 ||| 225 27806 +del ||| not a confession of weakness ; ||| 1 0.132374 3.59635e-05 1.08397e-17 2.718 ||| 0-3 ||| 1 27806 +del ||| not a confession of weakness ||| 1 0.132374 3.59635e-05 6.11411e-15 2.718 ||| 0-3 ||| 1 27806 +del ||| not a confession of ||| 1 0.132374 3.59635e-05 1.56772e-10 2.718 ||| 0-3 ||| 1 27806 +del ||| not get much beyond vague notions of ||| 1 0.132374 3.59635e-05 8.3845e-24 2.718 ||| 0-6 ||| 1 27806 +del ||| not of ||| 0.0232558 0.132374 3.59635e-05 0.000599492 2.718 ||| 0-1 ||| 43 27806 +del ||| notions of ||| 0.0555556 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-1 ||| 18 27806 +del ||| nuclear ||| 0.000490918 0.0004968 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 2037 27806 +del ||| number of ||| 0.00291971 0.132374 7.19269e-05 8.77728e-05 2.718 ||| 0-1 ||| 685 27806 +del ||| object of ||| 0.0555556 0.132374 3.59635e-05 4.9726e-06 2.718 ||| 0-1 ||| 18 27806 +del ||| obvious rot in the ||| 0.25 0.0638053 3.59635e-05 9.31161e-13 2.718 ||| 0-3 ||| 4 27806 +del ||| ocean ||| 0.0192308 0.0833333 3.59635e-05 0.0001213 2.718 ||| 0-0 ||| 52 27806 +del ||| of $ 1 billion from the ||| 1 0.132374 3.59635e-05 3.75609e-17 2.718 ||| 0-0 ||| 1 27806 +del ||| of $ 1 billion from ||| 1 0.132374 3.59635e-05 7.06968e-16 2.718 ||| 0-0 ||| 1 27806 +del ||| of $ 1 billion ||| 0.5 0.132374 3.59635e-05 4.28596e-13 2.718 ||| 0-0 ||| 2 27806 +del ||| of $ 1 ||| 0.25 0.132374 3.59635e-05 4.71502e-09 2.718 ||| 0-0 ||| 4 27806 +del ||| of $ ||| 0.0163934 0.132374 3.59635e-05 0.000120898 2.718 ||| 0-0 ||| 61 27806 +del ||| of " ||| 0.00130039 0.132374 3.59635e-05 0.00127352 2.718 ||| 0-0 ||| 769 27806 +del ||| of , ||| 0.0645161 0.132374 7.19269e-05 0.0520901 2.718 ||| 0-0 ||| 31 27806 +del ||| of 9 / 11 ||| 0.0769231 0.145732 3.59635e-05 4.85811e-13 2.718 ||| 0-0 0-1 ||| 13 27806 +del ||| of 9 / ||| 0.5 0.145732 3.59635e-05 3.73701e-08 2.718 ||| 0-0 0-1 ||| 2 27806 +del ||| of 9 ||| 0.25 0.145732 7.19269e-05 0.000185644 2.718 ||| 0-0 0-1 ||| 8 27806 +del ||| of America 's ||| 0.0689655 0.139032 7.19269e-05 4.23701e-05 2.718 ||| 0-0 0-2 ||| 29 27806 +del ||| of American ||| 0.0384615 0.132374 3.59635e-05 8.11427e-05 2.718 ||| 0-0 ||| 26 27806 +del ||| of Army ||| 1 0.123619 3.59635e-05 7.51501e-05 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of Chile 's former dictator , ||| 1 0.132374 3.59635e-05 1.69174e-17 2.718 ||| 0-0 ||| 1 27806 +del ||| of Chile 's former dictator ||| 1 0.132374 3.59635e-05 8.28188e-17 2.718 ||| 0-0 ||| 1 27806 +del ||| of Chile 's former ||| 1 0.132374 3.59635e-05 1.27414e-11 2.718 ||| 0-0 ||| 1 27806 +del ||| of Chile 's ||| 1 0.132374 3.59635e-05 5.16262e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| of Chile ||| 0.25 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-0 ||| 4 27806 +del ||| of China 's ||| 0.025641 0.139032 3.59635e-05 2.5005e-05 2.718 ||| 0-0 0-2 ||| 39 27806 +del ||| of China ||| 0.00331126 0.132374 3.59635e-05 0.000178861 2.718 ||| 0-0 ||| 302 27806 +del ||| of Chinese ||| 0.0208333 0.132374 3.59635e-05 5.79627e-05 2.718 ||| 0-0 ||| 48 27806 +del ||| of Cuba 's ||| 0.5 0.139032 3.59635e-05 1.39035e-06 2.718 ||| 0-0 0-2 ||| 2 27806 +del ||| of Europe 's ||| 0.142857 0.132374 3.59635e-05 1.90858e-06 2.718 ||| 0-0 ||| 7 27806 +del ||| of Europe ||| 0.00265252 0.132374 3.59635e-05 0.000122556 2.718 ||| 0-0 ||| 377 27806 +del ||| of French ||| 0.0666667 0.132374 3.59635e-05 3.47827e-05 2.718 ||| 0-0 ||| 15 27806 +del ||| of GDP ||| 0.00338983 0.132374 7.19269e-05 1.16027e-05 2.718 ||| 0-0 ||| 590 27806 +del ||| of Gross National ||| 1 0.128687 3.59635e-05 2.00727e-10 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of Gross ||| 1 0.128687 3.59635e-05 4.41159e-06 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of Haiti 's ||| 1 0.139032 3.59635e-05 9.26902e-07 2.718 ||| 0-0 0-2 ||| 1 27806 +del ||| of Harvard University , once called ||| 0.333333 0.132374 3.59635e-05 7.51761e-19 2.718 ||| 0-0 ||| 3 27806 +del ||| of Harvard University , once ||| 0.333333 0.132374 3.59635e-05 2.31525e-15 2.718 ||| 0-0 ||| 3 27806 +del ||| of Harvard University , ||| 0.125 0.132374 3.59635e-05 4.40161e-12 2.718 ||| 0-0 ||| 8 27806 +del ||| of Harvard University ||| 0.111111 0.132374 3.59635e-05 2.15479e-11 2.718 ||| 0-0 ||| 9 27806 +del ||| of Harvard ||| 0.2 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-0 ||| 5 27806 +del ||| of Hitler 's ||| 1 0.139032 3.59635e-05 2.31725e-07 2.718 ||| 0-0 0-2 ||| 1 27806 +del ||| of Hong Kong 's ||| 0.5 0.139032 3.59635e-05 7.53108e-12 2.718 ||| 0-0 0-3 ||| 2 27806 +del ||| of India 's ||| 0.0555556 0.139032 3.59635e-05 4.63094e-06 2.718 ||| 0-0 0-2 ||| 18 27806 +del ||| of Israeli ||| 0.111111 0.132374 3.59635e-05 1.65498e-05 2.718 ||| 0-0 ||| 9 27806 +del ||| of Italy ||| 0.0434783 0.132374 3.59635e-05 1.48923e-05 2.718 ||| 0-0 ||| 23 27806 +del ||| of Korean ||| 1 0.132374 3.59635e-05 8.28767e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| of LDP ||| 1 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| of Latin America ||| 0.0204082 0.132374 3.59635e-05 5.50988e-08 2.718 ||| 0-0 ||| 49 27806 +del ||| of Latin ||| 0.166667 0.132374 3.59635e-05 4.636e-05 2.718 ||| 0-0 ||| 6 27806 +del ||| of Nigerian ||| 1 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| of Pakistan 's ||| 0.25 0.139032 3.59635e-05 1.62208e-06 2.718 ||| 0-0 0-2 ||| 4 27806 +del ||| of Palestinian ||| 0.166667 0.132374 3.59635e-05 2.64951e-05 2.718 ||| 0-0 ||| 6 27806 +del ||| of Philippines-China ||| 1 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| of Poland 's ||| 0.666667 0.139032 7.19269e-05 1.15863e-06 2.718 ||| 0-0 0-2 ||| 3 27806 +del ||| of Russia 's ||| 0.0769231 0.132374 3.59635e-05 1.59882e-06 2.718 ||| 0-0 ||| 13 27806 +del ||| of Russia ||| 0.00925926 0.132374 3.59635e-05 0.000102665 2.718 ||| 0-0 ||| 108 27806 +del ||| of Sarkozy 's ||| 1 0.139032 3.59635e-05 1.15863e-06 2.718 ||| 0-0 0-2 ||| 1 27806 +del ||| of Silvio ||| 0.2 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-0 ||| 5 27806 +del ||| of The ||| 0.0416667 0.132374 3.59635e-05 4.47024e-05 2.718 ||| 0-0 ||| 24 27806 +del ||| of Treasury ||| 0.2 0.224468 3.59635e-05 0.000667476 2.718 ||| 0-0 0-1 ||| 5 27806 +del ||| of US ||| 0.0491803 0.132374 0.00010789 0.000327911 2.718 ||| 0-0 ||| 61 27806 +del ||| of Yugoslavia 's ||| 0.5 0.132374 3.59635e-05 1.03252e-07 2.718 ||| 0-0 ||| 2 27806 +del ||| of Yugoslavia ||| 0.0384615 0.132374 3.59635e-05 6.63014e-06 2.718 ||| 0-0 ||| 26 27806 +del ||| of a ||| 0.012783 0.132374 0.00172625 0.0102594 2.718 ||| 0-0 ||| 3755 27806 +del ||| of all things ||| 0.25 0.132374 3.59635e-05 1.97372e-07 2.718 ||| 0-0 ||| 4 27806 +del ||| of all ||| 0.0055788 0.132374 0.000143854 0.00066077 2.718 ||| 0-0 ||| 717 27806 +del ||| of an epochal shift ||| 0.5 0.132374 3.59635e-05 1.00576e-12 2.718 ||| 0-0 ||| 2 27806 +del ||| of an epochal ||| 0.5 0.132374 3.59635e-05 5.73739e-09 2.718 ||| 0-0 ||| 2 27806 +del ||| of an ||| 0.0071736 0.132374 0.000179817 0.000882675 2.718 ||| 0-0 ||| 697 27806 +del ||| of annual income ||| 0.25 0.132374 3.59635e-05 2.37608e-09 2.718 ||| 0-0 ||| 4 27806 +del ||| of annual ||| 0.5 0.132374 3.59635e-05 2.15224e-05 2.718 ||| 0-0 ||| 2 27806 +del ||| of any ||| 0.0037037 0.132374 3.59635e-05 0.000231851 2.718 ||| 0-0 ||| 270 27806 +del ||| of awarding ||| 0.25 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-0 ||| 4 27806 +del ||| of both Russian ||| 1 0.132374 3.59635e-05 6.5071e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| of both ||| 0.0075188 0.132374 3.59635e-05 0.000435549 2.718 ||| 0-0 ||| 133 27806 +del ||| of cards , no matter how ||| 1 0.132374 3.59635e-05 3.46061e-16 2.718 ||| 0-0 ||| 1 27806 +del ||| of cards , no matter ||| 1 0.132374 3.59635e-05 7.83653e-13 2.718 ||| 0-0 ||| 1 27806 +del ||| of cards , no ||| 1 0.132374 3.59635e-05 2.46277e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| of cards , ||| 0.333333 0.132374 3.59635e-05 2.3701e-06 2.718 ||| 0-0 ||| 3 27806 +del ||| of cards ||| 0.142857 0.132374 3.59635e-05 1.16027e-05 2.718 ||| 0-0 ||| 7 27806 +del ||| of committing ||| 0.25 0.132374 3.59635e-05 4.9726e-06 2.718 ||| 0-0 ||| 4 27806 +del ||| of coral reef ||| 1 0.132374 3.59635e-05 1.0774e-11 2.718 ||| 0-0 ||| 1 27806 +del ||| of coral ||| 0.333333 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-0 ||| 3 27806 +del ||| of course , ||| 0.000693481 0.132374 3.59635e-05 2.23258e-05 2.718 ||| 0-0 ||| 1442 27806 +del ||| of course ||| 0.000645578 0.132374 3.59635e-05 0.000109295 2.718 ||| 0-0 ||| 1549 27806 +del ||| of current ||| 0.111111 0.132374 3.59635e-05 8.77728e-05 2.718 ||| 0-0 ||| 9 27806 +del ||| of curse ||| 1 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| of devastating attacks ||| 1 0.132374 3.59635e-05 8.61918e-11 2.718 ||| 0-0 ||| 1 27806 +del ||| of devastating ||| 1 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| of diagnosing the ||| 1 0.0980897 3.59635e-05 3.96246e-07 2.718 ||| 0-0 0-2 ||| 1 27806 +del ||| of dynastic ||| 0.2 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-0 ||| 5 27806 +del ||| of economic ||| 0.0416667 0.132374 3.59635e-05 0.000114268 2.718 ||| 0-0 ||| 24 27806 +del ||| of either ||| 0.0769231 0.132374 3.59635e-05 0.000251716 2.718 ||| 0-0 ||| 13 27806 +del ||| of famous ||| 0.25 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-0 ||| 4 27806 +del ||| of global ||| 0.0666667 0.132374 7.19269e-05 0.000140763 2.718 ||| 0-0 ||| 30 27806 +del ||| of groundwater ||| 0.111111 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-0 ||| 9 27806 +del ||| of hard ||| 0.25 0.132374 3.59635e-05 0.000114268 2.718 ||| 0-0 ||| 4 27806 +del ||| of health ||| 0.04 0.132374 3.59635e-05 1.32603e-05 2.718 ||| 0-0 ||| 25 27806 +del ||| of his ||| 0.0030303 0.132374 7.19269e-05 0.000255031 2.718 ||| 0-0 ||| 660 27806 +del ||| of how much ||| 0.0588235 0.132374 3.59635e-05 1.6235e-07 2.718 ||| 0-0 ||| 17 27806 +del ||| of how ||| 0.017341 0.132374 0.00010789 0.00011261 2.718 ||| 0-0 ||| 173 27806 +del ||| of international ||| 0.0833333 0.132374 3.59635e-05 6.29353e-05 2.718 ||| 0-0 ||| 12 27806 +del ||| of it ||| 0.0189573 0.132374 0.000143854 0.0067899 2.718 ||| 0-0 ||| 211 27806 +del ||| of its ||| 0.00724638 0.066819 0.000395598 7.51501e-05 2.718 ||| 0-0 0-1 ||| 1518 27806 +del ||| of just ||| 0.0294118 0.132374 3.59635e-05 0.000281526 2.718 ||| 0-0 ||| 34 27806 +del ||| of line with the ||| 1 0.132374 3.59635e-05 2.36935e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| of line with ||| 0.25 0.132374 3.59635e-05 4.45957e-07 2.718 ||| 0-0 ||| 4 27806 +del ||| of line ||| 0.05 0.132374 3.59635e-05 0.000117583 2.718 ||| 0-0 ||| 20 27806 +del ||| of lingering ||| 0.166667 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-0 ||| 6 27806 +del ||| of living ten ||| 0.0769231 0.132374 3.59635e-05 8.39873e-10 2.718 ||| 0-0 ||| 13 27806 +del ||| of living ||| 0.01 0.132374 3.59635e-05 4.30704e-05 2.718 ||| 0-0 ||| 100 27806 +del ||| of lost ||| 0.333333 0.132374 3.59635e-05 5.13326e-05 2.718 ||| 0-0 ||| 3 27806 +del ||| of my country ||| 0.333333 0.132374 3.59635e-05 4.22317e-08 2.718 ||| 0-0 ||| 3 27806 +del ||| of my ||| 0.00970874 0.132374 3.59635e-05 5.46476e-05 2.718 ||| 0-0 ||| 103 27806 +del ||| of ocean surface ||| 1 0.132374 3.59635e-05 1.29288e-10 2.718 ||| 0-0 ||| 1 27806 +del ||| of ocean ||| 1 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| of one 's ||| 0.0714286 0.132374 3.59635e-05 1.59644e-05 2.718 ||| 0-0 ||| 14 27806 +del ||| of one ||| 0.00694444 0.132374 3.59635e-05 0.00102512 2.718 ||| 0-0 ||| 144 27806 +del ||| of only ||| 0.025 0.132374 3.59635e-05 0.000276553 2.718 ||| 0-0 ||| 40 27806 +del ||| of our ||| 0.00407332 0.132374 7.19269e-05 0.000134133 2.718 ||| 0-0 ||| 491 27806 +del ||| of over ||| 0.0666667 0.0711462 3.59635e-05 0.00022545 2.718 ||| 0-0 0-1 ||| 15 27806 +del ||| of people ||| 0.00247525 0.132374 3.59635e-05 0.000205356 2.718 ||| 0-0 ||| 404 27806 +del ||| of radical ||| 0.333333 0.132374 3.59635e-05 1.16027e-05 2.718 ||| 0-0 ||| 3 27806 +del ||| of salt ||| 0.5 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-0 ||| 2 27806 +del ||| of social ||| 0.125 0.132374 3.59635e-05 2.98101e-05 2.718 ||| 0-0 ||| 8 27806 +del ||| of staff ||| 0.105263 0.132374 7.19269e-05 8.28767e-06 2.718 ||| 0-0 ||| 19 27806 +del ||| of sub-Saharan ||| 0.5 0.135954 3.59635e-05 0.000132603 2.718 ||| 0-0 0-1 ||| 2 27806 +del ||| of such ||| 0.0035461 0.132374 3.59635e-05 0.000539872 2.718 ||| 0-0 ||| 282 27806 +del ||| of surgical ||| 1 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| of suspicion ||| 0.0833333 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-0 ||| 12 27806 +del ||| of that turmoil a single monopolist emerged ||| 1 0.132374 3.59635e-05 2.67829e-22 2.718 ||| 0-0 ||| 1 27806 +del ||| of that turmoil a single monopolist ||| 1 0.132374 3.59635e-05 3.17333e-18 2.718 ||| 0-0 ||| 1 27806 +del ||| of that turmoil a single ||| 1 0.132374 3.59635e-05 4.88205e-13 2.718 ||| 0-0 ||| 1 27806 +del ||| of that turmoil a ||| 1 0.132374 3.59635e-05 1.63443e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| of that turmoil ||| 1 0.132374 3.59635e-05 4.06252e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| of that ||| 0.038835 0.132374 0.000431562 0.00208334 2.718 ||| 0-0 ||| 309 27806 +del ||| of the Century ||| 1 0.0980897 3.59635e-05 7.92493e-07 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the China-Japan ||| 1 0.13206 3.59635e-05 1.05462e-06 2.718 ||| 0-0 0-1 0-2 ||| 1 27806 +del ||| of the ECB ||| 0.0555556 0.132374 3.59635e-05 1.05541e-06 2.718 ||| 0-0 ||| 18 27806 +del ||| of the European ||| 0.111111 0.0980897 3.59635e-05 1.86053e-05 2.718 ||| 0-0 0-1 ||| 9 27806 +del ||| of the Financial ||| 0.333333 0.0980897 3.59635e-05 3.16997e-06 2.718 ||| 0-0 0-1 ||| 3 27806 +del ||| of the General Staff ||| 0.5 0.0980897 3.59635e-05 7.21168e-11 2.718 ||| 0-0 0-1 ||| 2 27806 +del ||| of the General ||| 1 0.0980897 3.59635e-05 2.77372e-06 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the High ||| 0.25 0.0980897 3.59635e-05 1.18874e-06 2.718 ||| 0-0 0-1 ||| 4 27806 +del ||| of the International Monetary Fund 's ||| 1 0.0980897 3.59635e-05 3.92594e-16 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the International Monetary Fund ||| 0.05 0.0980897 3.59635e-05 2.52096e-14 2.718 ||| 0-0 0-1 ||| 20 27806 +del ||| of the International Monetary ||| 1 0.0980897 3.59635e-05 4.31671e-10 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the International ||| 0.285714 0.0980897 7.19269e-05 5.54135e-06 2.718 ||| 0-0 0-1 ||| 7 27806 +del ||| of the Safe and ||| 1 0.0980897 3.59635e-05 6.65464e-09 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the Safe ||| 1 0.0980897 3.59635e-05 7.92493e-07 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the Southern ||| 1 0.16463 7.19269e-05 4.12096e-05 2.718 ||| 0-0 0-1 0-2 ||| 2 27806 +del ||| of the Soviet Union . ||| 0.0714286 0.132374 3.59635e-05 3.41947e-13 2.718 ||| 0-0 ||| 14 27806 +del ||| of the Soviet Union ||| 0.0135135 0.132374 3.59635e-05 7.43702e-11 2.718 ||| 0-0 ||| 74 27806 +del ||| of the Soviet ||| 1 0.132374 7.19269e-05 4.40321e-07 2.718 ||| 0-0 ||| 2 27806 +del ||| of the Turkish ||| 1 0.0980897 3.59635e-05 2.37748e-06 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the US House ||| 1 0.132374 3.59635e-05 2.26483e-10 2.718 ||| 0-0 ||| 1 27806 +del ||| of the US ||| 0.00518135 0.132374 3.59635e-05 1.74218e-05 2.718 ||| 0-0 ||| 193 27806 +del ||| of the Union 's ||| 0.5 0.132374 3.59635e-05 3.56364e-08 2.718 ||| 0-0 ||| 2 27806 +del ||| of the Union ||| 0.015873 0.132374 3.59635e-05 2.28831e-06 2.718 ||| 0-0 ||| 63 27806 +del ||| of the United ||| 0.0909091 0.0980897 3.59635e-05 2.25678e-05 2.718 ||| 0-0 0-1 ||| 11 27806 +del ||| of the Zacharias ||| 1 0.0980897 3.59635e-05 3.96246e-07 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the as ||| 1 0.0980897 3.59635e-05 0.000515456 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the average ||| 0.333333 0.0980897 3.59635e-05 5.9376e-06 2.718 ||| 0-0 0-1 ||| 3 27806 +del ||| of the breast ||| 0.5 0.0980897 3.59635e-05 1.18874e-06 2.718 ||| 0-0 0-1 ||| 2 27806 +del ||| of the combined ||| 0.25 0.0980897 3.59635e-05 4.35261e-06 2.718 ||| 0-0 0-1 ||| 4 27806 +del ||| of the country 's annual ||| 1 0.0980897 3.59635e-05 6.19212e-11 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the country 's ||| 0.0769231 0.0980897 7.19269e-05 7.33664e-07 2.718 ||| 0-0 0-1 ||| 26 27806 +del ||| of the country ||| 0.00617284 0.0980897 3.59635e-05 4.71106e-05 2.718 ||| 0-0 0-1 ||| 162 27806 +del ||| of the currency 's ||| 1 0.0980897 3.59635e-05 1.23322e-07 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the currency ||| 0.0714286 0.0980897 3.59635e-05 7.91883e-06 2.718 ||| 0-0 0-1 ||| 14 27806 +del ||| of the dollar ||| 0.0125 0.0787964 3.59635e-05 4.86103e-05 2.718 ||| 0-0 0-1 0-2 ||| 80 27806 +del ||| of the earth ||| 0.0714286 0.0980897 3.59635e-05 2.77372e-06 2.718 ||| 0-0 0-1 ||| 14 27806 +del ||| of the existing debt , swapping new ||| 1 0.0980897 3.59635e-05 8.41856e-19 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the existing debt , swapping ||| 1 0.0980897 3.59635e-05 1.1471e-15 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the existing debt , ||| 1 0.0980897 3.59635e-05 1.76477e-10 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the existing debt ||| 0.5 0.0980897 3.59635e-05 8.63937e-10 2.718 ||| 0-0 0-1 ||| 2 27806 +del ||| of the existing ||| 1 0.0980897 3.59635e-05 6.33385e-06 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the find ||| 0.25 0.0980897 3.59635e-05 2.81091e-05 2.718 ||| 0-0 0-1 ||| 4 27806 +del ||| of the first ||| 0.0140845 0.132374 3.59635e-05 6.68746e-06 2.718 ||| 0-0 ||| 71 27806 +del ||| of the formal ||| 1 0.0980897 3.59635e-05 2.77372e-06 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the future ||| 0.0204082 0.0980897 3.59635e-05 9.10757e-06 2.718 ||| 0-0 0-1 ||| 49 27806 +del ||| of the great ||| 0.0285714 0.0980897 3.59635e-05 1.30639e-05 2.718 ||| 0-0 0-1 ||| 35 27806 +del ||| of the hands ||| 0.333333 0.0980897 3.59635e-05 7.52258e-06 2.718 ||| 0-0 0-1 ||| 3 27806 +del ||| of the international ||| 1 0.0980897 3.59635e-05 1.50452e-05 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the late ||| 0.0810811 0.0980897 0.00010789 1.34602e-05 2.718 ||| 0-0 0-1 ||| 37 27806 +del ||| of the murder ||| 0.25 0.0980897 3.59635e-05 3.16997e-06 2.718 ||| 0-0 0-1 ||| 4 27806 +del ||| of the number ||| 0.111111 0.0980897 3.59635e-05 2.09828e-05 2.718 ||| 0-0 0-1 ||| 9 27806 +del ||| of the old ||| 0.0185185 0.0980897 3.59635e-05 1.70264e-05 2.718 ||| 0-0 0-1 ||| 54 27806 +del ||| of the raw ||| 1 0.0980897 3.59635e-05 1.98123e-06 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the royal ||| 0.166667 0.0980897 3.59635e-05 1.18874e-06 2.718 ||| 0-0 0-1 ||| 6 27806 +del ||| of the ruling ||| 0.0833333 0.0980897 3.59635e-05 8.31508e-06 2.718 ||| 0-0 0-1 ||| 12 27806 +del ||| of the street ||| 0.25 0.0980897 3.59635e-05 2.37748e-06 2.718 ||| 0-0 0-1 ||| 4 27806 +del ||| of the very ||| 0.0769231 0.0980897 3.59635e-05 5.14694e-05 2.718 ||| 0-0 0-1 ||| 13 27806 +del ||| of the way things are ||| 1 0.0980897 3.59635e-05 2.04872e-10 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the way things ||| 1 0.0980897 3.59635e-05 2.76723e-08 2.718 ||| 0-0 0-1 ||| 1 27806 +del ||| of the way ||| 0.0344828 0.0980897 3.59635e-05 9.26424e-05 2.718 ||| 0-0 0-1 ||| 29 27806 +del ||| of the ||| 0.317941 0.0980897 0.246134 0.060961 2.718 ||| 0-0 0-1 ||| 21526 27806 +del ||| of their collective ||| 1 0.132374 3.59635e-05 1.48548e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| of their political ||| 1 0.132374 3.59635e-05 1.66237e-07 2.718 ||| 0-0 ||| 1 27806 +del ||| of their surplus to the school ||| 1 0.132374 3.59635e-05 1.77733e-15 2.718 ||| 0-0 ||| 1 27806 +del ||| of their surplus to the ||| 1 0.132374 3.59635e-05 3.90623e-11 2.718 ||| 0-0 ||| 1 27806 +del ||| of their surplus to ||| 1 0.132374 3.59635e-05 7.35226e-10 2.718 ||| 0-0 ||| 1 27806 +del ||| of their surplus ||| 1 0.132374 3.59635e-05 8.91289e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| of their ||| 0.00774593 0.132374 0.000359635 0.000457071 2.718 ||| 0-0 ||| 1291 27806 +del ||| of them ||| 0.00241546 0.132374 3.59635e-05 0.000498484 2.718 ||| 0-0 ||| 414 27806 +del ||| of these decades ||| 0.333333 0.132374 3.59635e-05 7.62101e-09 2.718 ||| 0-0 ||| 3 27806 +del ||| of these ||| 0.00113895 0.132374 3.59635e-05 0.000195411 2.718 ||| 0-0 ||| 878 27806 +del ||| of this ||| 0.00671704 0.132374 0.000287708 0.000506747 2.718 ||| 0-0 ||| 1191 27806 +del ||| of time ||| 0.00892857 0.132374 3.59635e-05 0.000238481 2.718 ||| 0-0 ||| 112 27806 +del ||| of total ||| 0.04 0.132374 3.59635e-05 4.14129e-05 2.718 ||| 0-0 ||| 25 27806 +del ||| of treating the ||| 1 0.0638053 3.59635e-05 1.67919e-07 2.718 ||| 0-2 ||| 1 27806 +del ||| of up to ||| 0.0833333 0.132374 3.59635e-05 6.57084e-05 2.718 ||| 0-0 ||| 12 27806 +del ||| of up ||| 0.333333 0.132374 3.59635e-05 0.00079656 2.718 ||| 0-0 ||| 3 27806 +del ||| of us ||| 0.00568182 0.132374 3.59635e-05 0.000145736 2.718 ||| 0-0 ||| 176 27806 +del ||| of weakness ; ||| 1 0.132374 3.59635e-05 1.76319e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| of weakness ||| 0.04 0.132374 3.59635e-05 9.94521e-06 2.718 ||| 0-0 ||| 25 27806 +del ||| of what constitutes ||| 0.142857 0.132374 3.59635e-05 3.2723e-09 2.718 ||| 0-0 ||| 7 27806 +del ||| of what is ||| 0.0212766 0.132374 3.59635e-05 4.14888e-06 2.718 ||| 0-0 ||| 47 27806 +del ||| of what ||| 0.004329 0.132374 7.19269e-05 0.000251716 2.718 ||| 0-0 ||| 462 27806 +del ||| of ||| 0.0631494 0.132374 0.231461 0.255005 2.718 ||| 0-0 ||| 101917 27806 +del ||| off the ||| 0.0291971 0.0638053 0.000143854 0.000274797 2.718 ||| 0-1 ||| 137 27806 +del ||| office in the ||| 0.166667 0.0402068 3.59635e-05 1.08844e-06 2.718 ||| 0-1 0-2 ||| 6 27806 +del ||| official ||| 0.002886 0.0061728 7.19269e-05 6.93e-05 2.718 ||| 0-0 ||| 693 27806 +del ||| officials ||| 0.000905797 0.0180676 3.59635e-05 0.0003987 2.718 ||| 0-0 ||| 1104 27806 +del ||| offset by ||| 0.04 0.0100882 3.59635e-05 4.82235e-08 2.718 ||| 0-1 ||| 25 27806 +del ||| oil ||| 0.00158311 0.194721 0.00010789 0.0078004 2.718 ||| 0-0 ||| 1895 27806 +del ||| on Europe 's ||| 1 0.0815625 3.59635e-05 4.58877e-07 2.718 ||| 0-0 0-2 ||| 1 27806 +del ||| on Mexico 's ||| 1 0.0174344 3.59635e-05 1.17422e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| on Mexico ||| 0.5 0.0174344 3.59635e-05 7.53999e-07 2.718 ||| 0-0 ||| 2 27806 +del ||| on a ||| 0.00201207 0.0174344 7.19269e-05 0.000274772 2.718 ||| 0-0 ||| 994 27806 +del ||| on the back from ||| 1 0.0842892 3.59635e-05 7.19458e-09 2.718 ||| 0-3 ||| 1 27806 +del ||| on the barrel of ||| 1 0.132374 3.59635e-05 6.90863e-10 2.718 ||| 0-3 ||| 1 27806 +del ||| on the eve ||| 0.0277778 0.0406198 3.59635e-05 3.18375e-08 2.718 ||| 0-0 0-1 ||| 36 27806 +del ||| on the government , has ||| 1 0.0638053 3.59635e-05 3.17895e-10 2.718 ||| 0-1 ||| 1 27806 +del ||| on the government , ||| 0.5 0.0638053 3.59635e-05 9.57918e-08 2.718 ||| 0-1 ||| 2 27806 +del ||| on the government ||| 0.111111 0.0638053 3.59635e-05 4.68946e-07 2.718 ||| 0-1 ||| 9 27806 +del ||| on the ground , ||| 0.0714286 0.0638053 3.59635e-05 6.842e-08 2.718 ||| 0-1 ||| 14 27806 +del ||| on the ground ||| 0.00990099 0.0638053 3.59635e-05 3.34948e-07 2.718 ||| 0-1 ||| 101 27806 +del ||| on the part ||| 0.0185185 0.0638053 3.59635e-05 5.78563e-07 2.718 ||| 0-1 ||| 54 27806 +del ||| on the ||| 0.0245486 0.0406198 0.00435158 0.00163269 2.718 ||| 0-0 0-1 ||| 4929 27806 +del ||| on ||| 0.00650255 0.0174344 0.0045314 0.0068297 2.718 ||| 0-0 ||| 19377 27806 +del ||| one 's ||| 0.0222222 0.145691 7.19269e-05 0.000562001 2.718 ||| 0-1 ||| 90 27806 +del ||| one at ||| 0.125 0.0061713 3.59635e-05 5.01736e-06 2.718 ||| 0-1 ||| 8 27806 +del ||| one-seventh their ||| 0.5 0.285714 3.59635e-05 6.21963e-08 2.718 ||| 0-0 ||| 2 27806 +del ||| one-seventh ||| 0.5 0.285714 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 2 27806 +del ||| onset of ||| 0.0222222 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 45 27806 +del ||| opposite end of the ||| 0.166667 0.0980897 3.59635e-05 1.12716e-09 2.718 ||| 0-2 0-3 ||| 6 27806 +del ||| or the effects may be indirect . ||| 1 0.0638053 3.59635e-05 9.21747e-21 2.718 ||| 0-1 ||| 1 27806 +del ||| or the effects may be indirect ||| 1 0.0638053 3.59635e-05 2.00471e-18 2.718 ||| 0-1 ||| 1 27806 +del ||| or the effects may be ||| 1 0.0638053 3.59635e-05 1.54209e-13 2.718 ||| 0-1 ||| 1 27806 +del ||| or the effects may ||| 1 0.0638053 3.59635e-05 1.49624e-11 2.718 ||| 0-1 ||| 1 27806 +del ||| or the effects ||| 1 0.0638053 3.59635e-05 1.52584e-08 2.718 ||| 0-1 ||| 1 27806 +del ||| or the ||| 0.00182815 0.0638053 3.59635e-05 0.00033535 2.718 ||| 0-1 ||| 547 27806 +del ||| orders from the ||| 0.333333 0.0740472 3.59635e-05 7.71968e-08 2.718 ||| 0-1 0-2 ||| 3 27806 +del ||| other than the Germans ||| 0.25 0.0638053 3.59635e-05 2.94152e-12 2.718 ||| 0-2 ||| 4 27806 +del ||| other than the ||| 0.0588235 0.0638053 3.59635e-05 1.13136e-07 2.718 ||| 0-2 ||| 17 27806 +del ||| other than ||| 0.00970874 0.0466347 3.59635e-05 9.69917e-06 2.718 ||| 0-1 ||| 103 27806 +del ||| out for a ||| 1 0.0087283 3.59635e-05 9.21817e-07 2.718 ||| 0-1 ||| 1 27806 +del ||| out for ||| 0.0588235 0.0087283 3.59635e-05 2.29125e-05 2.718 ||| 0-1 ||| 17 27806 +del ||| out of a ||| 0.0294118 0.132374 3.59635e-05 4.55065e-05 2.718 ||| 0-1 ||| 34 27806 +del ||| out of that turmoil a single monopolist ||| 1 0.132374 3.59635e-05 1.40756e-20 2.718 ||| 0-1 ||| 1 27806 +del ||| out of that turmoil a single ||| 1 0.132374 3.59635e-05 2.16548e-15 2.718 ||| 0-1 ||| 1 27806 +del ||| out of that turmoil a ||| 1 0.132374 3.59635e-05 7.24969e-12 2.718 ||| 0-1 ||| 1 27806 +del ||| out of that turmoil ||| 1 0.132374 3.59635e-05 1.80197e-10 2.718 ||| 0-1 ||| 1 27806 +del ||| out of that ||| 0.5 0.132374 3.59635e-05 9.24087e-06 2.718 ||| 0-1 ||| 2 27806 +del ||| out of the ||| 0.0992366 0.0980897 0.000467525 0.000270399 2.718 ||| 0-1 0-2 ||| 131 27806 +del ||| out of this ||| 0.0625 0.132374 3.59635e-05 2.24772e-06 2.718 ||| 0-1 ||| 16 27806 +del ||| out of ||| 0.0218855 0.132374 0.000467525 0.0011311 2.718 ||| 0-1 ||| 594 27806 +del ||| out the ||| 0.0125 0.0638053 3.59635e-05 0.00106036 2.718 ||| 0-1 ||| 80 27806 +del ||| output ||| 0.0021322 0.0175131 3.59635e-05 0.0001733 2.718 ||| 0-0 ||| 469 27806 +del ||| output-growth ||| 1 1 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 1 27806 +del ||| outreach ||| 0.0555556 0.0588235 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 18 27806 +del ||| outside ||| 0.00113766 0.0064516 3.59635e-05 6.93e-05 2.718 ||| 0-0 ||| 879 27806 +del ||| over by ||| 0.0625 0.0100882 3.59635e-05 2.57773e-06 2.718 ||| 0-1 ||| 16 27806 +del ||| over the ||| 0.00282686 0.0368618 0.000143854 0.000211351 2.718 ||| 0-0 0-1 ||| 1415 27806 +del ||| over ||| 0.000753012 0.0099183 0.00010789 0.0008841 2.718 ||| 0-0 ||| 3984 27806 +del ||| par for the course in the ||| 0.333333 0.0166084 3.59635e-05 4.10107e-15 2.718 ||| 0-4 ||| 3 27806 +del ||| par for the course in ||| 0.333333 0.0166084 3.59635e-05 7.71899e-14 2.718 ||| 0-4 ||| 3 27806 +del ||| parcel of the ||| 0.2 0.0980897 3.59635e-05 7.92493e-07 2.718 ||| 0-1 0-2 ||| 5 27806 +del ||| parody of ||| 0.333333 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-1 ||| 3 27806 +del ||| part of the ||| 0.012931 0.0980897 0.000215781 3.76129e-05 2.718 ||| 0-1 0-2 ||| 464 27806 +del ||| part of ||| 0.00241546 0.132374 7.19269e-05 0.000157338 2.718 ||| 0-1 ||| 828 27806 +del ||| participate in the ||| 0.0344828 0.0402068 3.59635e-05 1.02139e-07 2.718 ||| 0-1 0-2 ||| 29 27806 +del ||| parts of the ||| 0.00985222 0.0980897 7.19269e-05 5.54135e-06 2.718 ||| 0-1 0-2 ||| 203 27806 +del ||| party in ||| 0.0909091 0.0429627 3.59635e-05 2.5826e-05 2.718 ||| 0-0 0-1 ||| 11 27806 +del ||| party ||| 0.00102041 0.069317 3.59635e-05 0.0011787 2.718 ||| 0-0 ||| 980 27806 +del ||| passes from the ||| 0.333333 0.0740472 3.59635e-05 1.15795e-07 2.718 ||| 0-1 0-2 ||| 3 27806 +del ||| passing the ||| 0.1 0.0638053 3.59635e-05 7.76938e-06 2.718 ||| 0-1 ||| 10 27806 +del ||| passive ||| 0.0227273 0.0149254 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 44 27806 +del ||| past summer 's ||| 1 0.145691 3.59635e-05 3.65846e-10 2.718 ||| 0-2 ||| 1 27806 +del ||| peasant in the ||| 0.5 0.0638053 3.59635e-05 2.38759e-08 2.718 ||| 0-2 ||| 2 27806 +del ||| people from the ||| 0.0625 0.0638053 3.59635e-05 3.1755e-07 2.718 ||| 0-2 ||| 16 27806 +del ||| people in the ||| 0.0285714 0.0402068 7.19269e-05 4.21808e-06 2.718 ||| 0-1 0-2 ||| 70 27806 +del ||| percent of ||| 0.0384615 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 26 27806 +del ||| performance of the ||| 0.0625 0.0980897 3.59635e-05 3.95637e-06 2.718 ||| 0-1 0-2 ||| 16 27806 +del ||| performance of ||| 0.0294118 0.132374 3.59635e-05 1.65498e-05 2.718 ||| 0-1 ||| 34 27806 +del ||| perpetrators of ||| 0.0454545 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-1 ||| 22 27806 +del ||| place in the ||| 0.0232558 0.0638053 3.59635e-05 4.67564e-06 2.718 ||| 0-2 ||| 43 27806 +del ||| plausibility : ||| 0.333333 0.5 3.59635e-05 7.18988e-09 2.718 ||| 0-0 ||| 3 27806 +del ||| plausibility ||| 0.25 0.5 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 4 27806 +del ||| policies of the Soviet Union . ||| 1 0.132374 3.59635e-05 2.66376e-17 2.718 ||| 0-1 ||| 1 27806 +del ||| policies of the Soviet Union ||| 1 0.132374 3.59635e-05 5.79344e-15 2.718 ||| 0-1 ||| 1 27806 +del ||| policies of the Soviet ||| 1 0.132374 3.59635e-05 3.4301e-11 2.718 ||| 0-1 ||| 1 27806 +del ||| policies of the ||| 0.0666667 0.132374 3.59635e-05 1.05541e-06 2.718 ||| 0-1 ||| 15 27806 +del ||| policies of ||| 0.0357143 0.132374 3.59635e-05 1.98649e-05 2.718 ||| 0-1 ||| 28 27806 +del ||| policy 's ||| 0.2 0.145691 3.59635e-05 4.35761e-05 2.718 ||| 0-1 ||| 5 27806 +del ||| policymakers of the ||| 1 0.0980897 3.59635e-05 7.92493e-07 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| politics of ||| 0.0163934 0.132374 3.59635e-05 1.65498e-05 2.718 ||| 0-1 ||| 61 27806 +del ||| popularity dividend to add to his store ||| 1 0.0065359 3.59635e-05 1.00757e-23 2.718 ||| 0-0 ||| 1 27806 +del ||| popularity dividend to add to his ||| 1 0.0065359 3.59635e-05 1.93763e-19 2.718 ||| 0-0 ||| 1 27806 +del ||| popularity dividend to add to ||| 1 0.0065359 3.59635e-05 1.93744e-16 2.718 ||| 0-0 ||| 1 27806 +del ||| popularity dividend to add ||| 1 0.0065359 3.59635e-05 2.34869e-15 2.718 ||| 0-0 ||| 1 27806 +del ||| popularity dividend to ||| 1 0.0065359 3.59635e-05 2.78281e-11 2.718 ||| 0-0 ||| 1 27806 +del ||| popularity dividend ||| 1 0.0065359 3.59635e-05 3.3735e-10 2.718 ||| 0-0 ||| 1 27806 +del ||| popularity ||| 0.00540541 0.0065359 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 185 27806 +del ||| position in the ||| 0.0714286 0.0402068 3.59635e-05 8.16588e-07 2.718 ||| 0-1 0-2 ||| 14 27806 +del ||| possible in increasing integration of the ||| 1 0.132374 3.59635e-05 7.65571e-17 2.718 ||| 0-4 ||| 1 27806 +del ||| possible in increasing integration of ||| 1 0.132374 3.59635e-05 1.44095e-15 2.718 ||| 0-4 ||| 1 27806 +del ||| power ||| 0.000189573 0.001256 3.59635e-05 8.67e-05 2.718 ||| 0-0 ||| 5275 27806 +del ||| powerful unions awaits ||| 1 0.0013038 3.59635e-05 4.38555e-15 2.718 ||| 0-0 ||| 1 27806 +del ||| powerful unions ||| 1 0.0013038 3.59635e-05 3.3735e-10 2.718 ||| 0-0 ||| 1 27806 +del ||| powerful ||| 0.00121803 0.0013038 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 821 27806 +del ||| practices at ||| 0.2 0.0061713 3.59635e-05 2.43379e-08 2.718 ||| 0-1 ||| 5 27806 +del ||| practicing ||| 0.0416667 0.04 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 24 27806 +del ||| presence of both Russian ||| 1 0.132374 3.59635e-05 2.11481e-12 2.718 ||| 0-1 ||| 1 27806 +del ||| presence of both ||| 1 0.132374 3.59635e-05 1.41553e-08 2.718 ||| 0-1 ||| 1 27806 +del ||| presence of ||| 0.0151515 0.132374 3.59635e-05 8.28767e-06 2.718 ||| 0-1 ||| 66 27806 +del ||| presided over by ||| 0.25 0.0100882 3.59635e-05 5.02658e-11 2.718 ||| 0-2 ||| 4 27806 +del ||| president 's ||| 0.0208333 0.145691 3.59635e-05 1.90689e-05 2.718 ||| 0-1 ||| 48 27806 +del ||| president of Harvard University , once called ||| 0.333333 0.132374 3.59635e-05 1.0254e-22 2.718 ||| 0-1 ||| 3 27806 +del ||| president of Harvard University , once ||| 0.333333 0.132374 3.59635e-05 3.158e-19 2.718 ||| 0-1 ||| 3 27806 +del ||| president of Harvard University , ||| 0.333333 0.132374 3.59635e-05 6.0038e-16 2.718 ||| 0-1 ||| 3 27806 +del ||| president of Harvard University ||| 0.333333 0.132374 3.59635e-05 2.93914e-15 2.718 ||| 0-1 ||| 3 27806 +del ||| president of Harvard ||| 0.333333 0.132374 3.59635e-05 2.26088e-10 2.718 ||| 0-1 ||| 3 27806 +del ||| president of ||| 0.0147059 0.132374 3.59635e-05 3.47827e-05 2.718 ||| 0-1 ||| 68 27806 +del ||| president ||| 0.0008 0.0017809 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 1250 27806 +del ||| prevalence of ||| 0.0416667 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 24 27806 +del ||| previous financial crises of the ||| 1 0.0980897 3.59635e-05 2.69266e-14 2.718 ||| 0-3 0-4 ||| 1 27806 +del ||| price agreements ||| 0.0769231 0.0016779 3.59635e-05 2.2555e-10 2.718 ||| 0-0 ||| 13 27806 +del ||| price ||| 0.000580383 0.0016779 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 1723 27806 +del ||| priced out of ||| 0.5 0.132374 3.59635e-05 7.35216e-09 2.718 ||| 0-2 ||| 2 27806 +del ||| pricing ||| 0.0227273 0.0733945 7.19269e-05 0.0001387 2.718 ||| 0-0 ||| 88 27806 +del ||| pride in the ||| 0.166667 0.0402068 3.59635e-05 3.40463e-08 2.718 ||| 0-1 0-2 ||| 6 27806 +del ||| pro-trade ||| 0.125 0.238095 3.59635e-05 8.67e-05 2.718 ||| 0-0 ||| 8 27806 +del ||| prognosis of ||| 1 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-1 ||| 1 27806 +del ||| proposal from the ||| 1 0.0740472 3.59635e-05 1.15795e-07 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| prosecutor 's office ||| 0.142857 0.145691 3.59635e-05 3.77659e-10 2.718 ||| 0-1 ||| 7 27806 +del ||| prosecutor 's ||| 0.166667 0.145691 3.59635e-05 1.81742e-06 2.718 ||| 0-1 ||| 6 27806 +del ||| provide power ||| 1 0.001256 3.59635e-05 3.5469e-08 2.718 ||| 0-1 ||| 1 27806 +del ||| psychiatry 's ||| 0.25 0.145691 3.59635e-05 9.08708e-07 2.718 ||| 0-1 ||| 4 27806 +del ||| public ||| 0.000301477 0.0009772 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 3317 27806 +del ||| public-sector ||| 0.0138889 0.277512 3.59635e-05 0.0010054 2.718 ||| 0-0 ||| 72 27806 +del ||| purchased by ||| 0.2 0.0100882 3.59635e-05 7.23352e-08 2.718 ||| 0-1 ||| 5 27806 +del ||| put at ||| 0.1 0.0061713 3.59635e-05 1.50758e-06 2.718 ||| 0-1 ||| 10 27806 +del ||| putting the ||| 0.0454545 0.0638053 3.59635e-05 1.55148e-05 2.718 ||| 0-1 ||| 22 27806 +del ||| quality ||| 0.00227273 0.0057637 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 440 27806 +del ||| quite varied ||| 1 0.0333333 3.59635e-05 6.76e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| quite ||| 0.00401606 0.0333333 3.59635e-05 0.000208 2.718 ||| 0-0 ||| 249 27806 +del ||| racist ||| 0.025 0.0444444 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 40 27806 +del ||| raise ||| 0.00285714 0.0025126 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 350 27806 +del ||| rally around ||| 1 0.0454545 3.59635e-05 2.7352e-08 2.718 ||| 0-0 ||| 1 27806 +del ||| rally ||| 0.0416667 0.0454545 7.19269e-05 5.2e-05 2.718 ||| 0-0 ||| 48 27806 +del ||| range of ||| 0.00657895 0.132374 3.59635e-05 4.14129e-05 2.718 ||| 0-1 ||| 152 27806 +del ||| ranging ||| 0.0149254 0.0144928 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 67 27806 +del ||| rank of ||| 0.333333 0.132374 3.59635e-05 1.16027e-05 2.718 ||| 0-1 ||| 3 27806 +del ||| rate in the ||| 0.333333 0.0402068 3.59635e-05 1.63265e-06 2.718 ||| 0-1 0-2 ||| 3 27806 +del ||| rate of ||| 0.0110497 0.132374 7.19269e-05 7.94852e-05 2.718 ||| 0-1 ||| 181 27806 +del ||| rate ||| 0.000699301 0.0048507 3.59635e-05 0.0002253 2.718 ||| 0-0 ||| 1430 27806 +del ||| ratified the ||| 0.142857 0.0638053 3.59635e-05 1.55388e-06 2.718 ||| 0-1 ||| 7 27806 +del ||| recent prognosis of ||| 1 0.132374 3.59635e-05 2.26088e-10 2.718 ||| 0-2 ||| 1 27806 +del ||| recently as the ||| 0.25 0.0638053 3.59635e-05 4.85731e-07 2.718 ||| 0-2 ||| 4 27806 +del ||| reclaim the ||| 0.142857 0.0638053 3.59635e-05 3.10775e-06 2.718 ||| 0-1 ||| 7 27806 +del ||| recognition is not a confession of weakness ||| 1 0.132374 3.59635e-05 5.24031e-21 2.718 ||| 0-5 ||| 1 27806 +del ||| recognition is not a confession of ||| 1 0.132374 3.59635e-05 1.34367e-16 2.718 ||| 0-5 ||| 1 27806 +del ||| reductions ||| 0.00735294 0.0177515 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 136 27806 +del ||| reflection of ||| 0.04 0.132374 3.59635e-05 4.9726e-06 2.718 ||| 0-1 ||| 25 27806 +del ||| reform of Italy ||| 0.5 0.132374 3.59635e-05 7.744e-10 2.718 ||| 0-1 ||| 2 27806 +del ||| reform of ||| 0.0196078 0.132374 3.59635e-05 1.32603e-05 2.718 ||| 0-1 ||| 51 27806 +del ||| reforms ||| 0.000914077 0.0008554 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 1094 27806 +del ||| refuse to participate in the ||| 1 0.0402068 3.59635e-05 1.64297e-13 2.718 ||| 0-3 0-4 ||| 1 27806 +del ||| reinforcement of ||| 1 0.132374 3.59635e-05 1.65753e-06 2.718 ||| 0-1 ||| 1 27806 +del ||| relative to the ||| 0.0131579 0.0638053 3.59635e-05 1.92072e-06 2.718 ||| 0-2 ||| 76 27806 +del ||| report to the ||| 0.2 0.0638053 3.59635e-05 2.17708e-06 2.718 ||| 0-2 ||| 5 27806 +del ||| resetting ||| 0.25 0.3 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 4 27806 +del ||| resignation by ||| 1 0.0100882 3.59635e-05 7.23352e-08 2.718 ||| 0-1 ||| 1 27806 +del ||| resolve the ||| 0.0166667 0.0638053 3.59635e-05 1.3961e-05 2.718 ||| 0-1 ||| 60 27806 +del ||| respect to the ||| 0.0833333 0.0638053 3.59635e-05 1.27982e-06 2.718 ||| 0-2 ||| 12 27806 +del ||| responsibility for the ||| 0.0232558 0.0362668 3.59635e-05 8.81702e-08 2.718 ||| 0-1 0-2 ||| 43 27806 +del ||| responsible ||| 0.00578035 0.0050761 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 173 27806 +del ||| rest of the ||| 0.00243902 0.0980897 3.59635e-05 7.91883e-06 2.718 ||| 0-1 0-2 ||| 410 27806 +del ||| return to the ||| 0.0131579 0.0638053 3.59635e-05 4.22598e-06 2.718 ||| 0-2 ||| 76 27806 +del ||| returns ||| 0.0046729 0.0082988 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 214 27806 +del ||| revise the ||| 0.0625 0.0638053 3.59635e-05 3.10775e-06 2.718 ||| 0-1 ||| 16 27806 +del ||| revival ||| 0.0111111 0.0123457 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 90 27806 +del ||| revolution in the ||| 1 0.0402068 3.59635e-05 3.3994e-07 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| rising ||| 0.00346021 0.0145299 0.00010789 0.0002947 2.718 ||| 0-0 ||| 867 27806 +del ||| risk of committing ||| 0.5 0.132374 3.59635e-05 8.07551e-10 2.718 ||| 0-1 ||| 2 27806 +del ||| risk of ||| 0.00455581 0.132374 7.19269e-05 4.14129e-05 2.718 ||| 0-1 ||| 439 27806 +del ||| role of the ||| 0.0512821 0.0980897 7.19269e-05 1.50452e-05 2.718 ||| 0-1 0-2 ||| 39 27806 +del ||| role of ||| 0.00534759 0.132374 3.59635e-05 6.29353e-05 2.718 ||| 0-1 ||| 187 27806 +del ||| rot in the ||| 0.25 0.0638053 3.59635e-05 7.16277e-08 2.718 ||| 0-2 ||| 4 27806 +del ||| roughly ||| 0.00191571 0.0041754 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 522 27806 +del ||| ruled ||| 0.00636943 0.0054645 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 157 27806 +del ||| running bipartisan ||| 1 0.0810811 3.59635e-05 1.35096e-08 2.718 ||| 0-1 ||| 1 27806 +del ||| running for ||| 0.0526316 0.0087283 3.59635e-05 1.34202e-06 2.718 ||| 0-1 ||| 19 27806 +del ||| rush for the works ||| 0.25 0.0087283 3.59635e-05 9.27628e-14 2.718 ||| 0-1 ||| 4 27806 +del ||| rush for the ||| 0.1 0.0087283 3.59635e-05 3.5678e-09 2.718 ||| 0-1 ||| 10 27806 +del ||| rush for ||| 0.1 0.0087283 3.59635e-05 6.71528e-08 2.718 ||| 0-1 ||| 10 27806 +del ||| s ||| 0.0606061 0.047619 7.19269e-05 6.93e-05 2.718 ||| 0-0 ||| 33 27806 +del ||| safe bet is that from ||| 1 0.0842892 3.59635e-05 9.32078e-15 2.718 ||| 0-4 ||| 1 27806 +del ||| same practices at ||| 1 0.0061713 3.59635e-05 9.95666e-12 2.718 ||| 0-2 ||| 1 27806 +del ||| school from the ||| 1 0.0740472 3.59635e-05 2.70189e-07 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| sector ||| 0.000957854 0.0466805 3.59635e-05 0.00078 2.718 ||| 0-0 ||| 1044 27806 +del ||| see the ||| 0.00787402 0.0638053 3.59635e-05 0.000147499 2.718 ||| 0-1 ||| 127 27806 +del ||| senior ||| 0.00483092 0.0103806 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 207 27806 +del ||| serious challenge from the ||| 0.333333 0.0638053 3.59635e-05 1.01115e-11 2.718 ||| 0-3 ||| 3 27806 +del ||| session of the ||| 0.25 0.0980897 3.59635e-05 3.96246e-07 2.718 ||| 0-1 0-2 ||| 4 27806 +del ||| set of ||| 0.016129 0.132374 0.00010789 0.000215301 2.718 ||| 0-1 ||| 186 27806 +del ||| seventeenth-century ||| 0.0666667 0.333333 3.59635e-05 0.0001733 2.718 ||| 0-0 ||| 15 27806 +del ||| share in the European Union is about ||| 1 0.0166084 3.59635e-05 1.95062e-19 2.718 ||| 0-1 ||| 1 27806 +del ||| share in the European Union is ||| 1 0.0166084 3.59635e-05 1.60624e-16 2.718 ||| 0-1 ||| 1 27806 +del ||| share in the European Union ||| 1 0.0166084 3.59635e-05 9.74521e-15 2.718 ||| 0-1 ||| 1 27806 +del ||| share in the European ||| 1 0.0166084 3.59635e-05 5.76981e-11 2.718 ||| 0-1 ||| 1 27806 +del ||| share in the ||| 0.166667 0.0166084 3.59635e-05 1.8905e-07 2.718 ||| 0-1 ||| 6 27806 +del ||| share in ||| 0.04 0.0166084 3.59635e-05 3.55828e-06 2.718 ||| 0-1 ||| 25 27806 +del ||| share of the average ||| 1 0.0980897 3.59635e-05 9.64266e-10 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| share of the ||| 0.0666667 0.0980897 0.00010789 9.90006e-06 2.718 ||| 0-1 0-2 ||| 45 27806 +del ||| shock ||| 0.00581395 0.0210526 3.59635e-05 6.93e-05 2.718 ||| 0-0 ||| 172 27806 +del ||| shooting of that ||| 0.5 0.132374 3.59635e-05 2.70834e-08 2.718 ||| 0-1 ||| 2 27806 +del ||| shooting of ||| 0.5 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 2 27806 +del ||| shores of the ||| 0.2 0.0980897 3.59635e-05 7.92493e-07 2.718 ||| 0-1 0-2 ||| 5 27806 +del ||| should follow the ||| 0.142857 0.0638053 3.59635e-05 4.95585e-08 2.718 ||| 0-2 ||| 7 27806 +del ||| showed outreach ||| 1 0.0588235 3.59635e-05 4.498e-10 2.718 ||| 0-1 ||| 1 27806 +del ||| shut on ||| 0.142857 0.0174344 3.59635e-05 3.55144e-07 2.718 ||| 0-1 ||| 7 27806 +del ||| sides of the ||| 0.016129 0.0980897 3.59635e-05 7.91883e-06 2.718 ||| 0-1 0-2 ||| 62 27806 +del ||| signs of ||| 0.00840336 0.132374 3.59635e-05 8.28767e-06 2.718 ||| 0-1 ||| 119 27806 +del ||| similarly ||| 0.00170358 0.0135135 3.59635e-05 0.0001907 2.718 ||| 0-0 ||| 587 27806 +del ||| site ||| 0.00847458 0.0095238 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 118 27806 +del ||| size of the ||| 0.0273973 0.132374 7.19269e-05 1.93606e-06 2.718 ||| 0-1 ||| 73 27806 +del ||| size of ||| 0.00649351 0.132374 3.59635e-05 3.64403e-05 2.718 ||| 0-1 ||| 154 27806 +del ||| skewed ||| 0.0555556 0.0882353 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 18 27806 +del ||| sleeping ||| 0.0666667 0.142857 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 15 27806 +del ||| slightest from ||| 0.333333 0.0842892 3.59635e-05 4.84382e-07 2.718 ||| 0-1 ||| 3 27806 +del ||| smoking ||| 0.025 0.03125 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 40 27806 +del ||| so markedly from the ||| 1 0.0638053 3.59635e-05 2.88799e-11 2.718 ||| 0-3 ||| 1 27806 +del ||| sophisticated mouthpiece of the ||| 0.2 0.0980897 3.59635e-05 1.54536e-11 2.718 ||| 0-2 0-3 ||| 5 27806 +del ||| soul of ||| 0.125 0.132374 3.59635e-05 6.63014e-06 2.718 ||| 0-1 ||| 8 27806 +del ||| sound of a ||| 1 0.132374 3.59635e-05 8.65891e-07 2.718 ||| 0-1 ||| 1 27806 +del ||| sound of ||| 0.333333 0.132374 3.59635e-05 2.15224e-05 2.718 ||| 0-1 ||| 3 27806 +del ||| southern ||| 0.00303951 0.230248 3.59635e-05 0.0017681 2.718 ||| 0-0 ||| 329 27806 +del ||| speaker 's ||| 0.5 0.145691 3.59635e-05 1.81742e-06 2.718 ||| 0-1 ||| 2 27806 +del ||| special form of ||| 1 0.132374 3.59635e-05 6.97707e-09 2.718 ||| 0-2 ||| 1 27806 +del ||| specter of ||| 0.0238095 0.132374 3.59635e-05 4.9726e-06 2.718 ||| 0-1 ||| 42 27806 +del ||| spectrum in the ||| 1 0.0402068 3.59635e-05 1.36185e-07 2.718 ||| 0-1 0-2 ||| 1 27806 +del ||| speed of ||| 0.037037 0.132374 3.59635e-05 9.94521e-06 2.718 ||| 0-1 ||| 27 27806 +del ||| spending ||| 0.000683527 0.0514381 3.59635e-05 0.0016121 2.718 ||| 0-0 ||| 1463 27806 +del ||| spirits " of ||| 1 0.132374 3.59635e-05 8.27789e-09 2.718 ||| 0-2 ||| 1 27806 +del ||| spreading ice ages ||| 0.5 0.0784314 3.59635e-05 1.05481e-13 2.718 ||| 0-1 ||| 2 27806 +del ||| spreading ice ||| 0.5 0.0784314 3.59635e-05 5.4093e-09 2.718 ||| 0-1 ||| 2 27806 +del ||| stake in ||| 0.016129 0.0166084 3.59635e-05 1.70684e-06 2.718 ||| 0-1 ||| 62 27806 +del ||| stands for ||| 0.037037 0.0087283 3.59635e-05 8.05317e-07 2.718 ||| 0-1 ||| 27 27806 +del ||| state of ||| 0.00507614 0.132374 3.59635e-05 8.94304e-05 2.718 ||| 0-1 ||| 197 27806 +del ||| state ||| 0.000345781 0.0037908 3.59635e-05 0.0001733 2.718 ||| 0-0 ||| 2892 27806 +del ||| steel ||| 0.015873 0.062069 7.19269e-05 0.000156 2.718 ||| 0-0 ||| 126 27806 +del ||| sub-Saharan ||| 0.0204082 0.139535 3.59635e-05 0.00052 2.718 ||| 0-0 ||| 49 27806 +del ||| substantial popularity dividend to add to his ||| 1 0.0065359 3.59635e-05 5.03784e-24 2.718 ||| 0-1 ||| 1 27806 +del ||| substantial popularity dividend to add to ||| 1 0.0065359 3.59635e-05 5.03734e-21 2.718 ||| 0-1 ||| 1 27806 +del ||| substantial popularity dividend to add ||| 1 0.0065359 3.59635e-05 6.10659e-20 2.718 ||| 0-1 ||| 1 27806 +del ||| substantial popularity dividend to ||| 1 0.0065359 3.59635e-05 7.2353e-16 2.718 ||| 0-1 ||| 1 27806 +del ||| substantial popularity dividend ||| 1 0.0065359 3.59635e-05 8.7711e-15 2.718 ||| 0-1 ||| 1 27806 +del ||| substantial popularity ||| 1 0.0065359 3.59635e-05 4.498e-10 2.718 ||| 0-1 ||| 1 27806 +del ||| such rate in the ||| 1 0.0402068 3.59635e-05 3.45649e-09 2.718 ||| 0-2 0-3 ||| 1 27806 +del ||| summer 's ||| 0.2 0.145691 3.59635e-05 1.81742e-06 2.718 ||| 0-1 ||| 5 27806 +del ||| supplies from the ||| 0.333333 0.0638053 3.59635e-05 2.05049e-08 2.718 ||| 0-2 ||| 3 27806 +del ||| surge " ||| 0.0625 0.0063694 3.59635e-05 8.63979e-08 2.718 ||| 0-0 ||| 16 27806 +del ||| surge ||| 0.00684932 0.0063694 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 146 27806 +del ||| sustains ||| 0.0833333 0.0588235 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 12 27806 +del ||| system ||| 0.000315557 0.0003654 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 3169 27806 +del ||| take orders from the ||| 1 0.0740472 3.59635e-05 6.81802e-11 2.718 ||| 0-2 0-3 ||| 1 27806 +del ||| taken by the ||| 0.0666667 0.0369468 3.59635e-05 4.31953e-07 2.718 ||| 0-1 0-2 ||| 15 27806 +del ||| taken out of the ||| 0.333333 0.0980897 3.59635e-05 1.31711e-07 2.718 ||| 0-2 0-3 ||| 3 27806 +del ||| teacher ||| 0.05 0.0869565 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 20 27806 +del ||| temperatures and spreading ice ages ||| 0.5 0.0784314 3.59635e-05 1.15146e-20 2.718 ||| 0-3 ||| 2 27806 +del ||| temperatures and spreading ice ||| 0.5 0.0784314 3.59635e-05 5.90492e-16 2.718 ||| 0-3 ||| 2 27806 +del ||| terrorist networks capable of devastating attacks ||| 1 0.132374 3.59635e-05 4.8965e-24 2.718 ||| 0-3 ||| 1 27806 +del ||| terrorist networks capable of devastating ||| 1 0.132374 3.59635e-05 9.41635e-20 2.718 ||| 0-3 ||| 1 27806 +del ||| terrorist networks capable of ||| 1 0.132374 3.59635e-05 1.44867e-14 2.718 ||| 0-3 ||| 1 27806 +del ||| terrorist ||| 0.0037037 0.0059524 7.19269e-05 5.2e-05 2.718 ||| 0-0 ||| 540 27806 +del ||| tertiary educational ||| 0.25 0.0769231 3.59635e-05 6.747e-10 2.718 ||| 0-0 ||| 4 27806 +del ||| tertiary ||| 0.0625 0.0769231 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 16 27806 +del ||| than he ||| 0.0625 0.0466347 3.59635e-05 2.5774e-05 2.718 ||| 0-0 ||| 16 27806 +del ||| than in Greece , potentially leaving ||| 0.5 0.0316215 3.59635e-05 3.5457e-18 2.718 ||| 0-0 0-1 ||| 2 27806 +del ||| than in Greece , potentially ||| 0.5 0.0316215 3.59635e-05 3.90067e-14 2.718 ||| 0-0 0-1 ||| 2 27806 +del ||| than in Greece , ||| 0.25 0.0316215 3.59635e-05 1.2002e-09 2.718 ||| 0-0 0-1 ||| 4 27806 +del ||| than in Greece ||| 0.25 0.0316215 3.59635e-05 5.87556e-09 2.718 ||| 0-0 0-1 ||| 4 27806 +del ||| than in ||| 0.00271739 0.0316215 3.59635e-05 0.000180787 2.718 ||| 0-0 0-1 ||| 368 27806 +del ||| than is ||| 0.03125 0.0466347 3.59635e-05 0.000135998 2.718 ||| 0-0 ||| 32 27806 +del ||| than it is now ||| 0.1 0.0466347 3.59635e-05 5.38537e-09 2.718 ||| 0-0 ||| 10 27806 +del ||| than it is ||| 0.0217391 0.0466347 3.59635e-05 3.62115e-06 2.718 ||| 0-0 ||| 46 27806 +del ||| than it ||| 0.00487805 0.0466347 3.59635e-05 0.000219698 2.718 ||| 0-0 ||| 205 27806 +del ||| than the Germans ||| 0.2 0.0638053 3.59635e-05 2.50236e-09 2.718 ||| 0-1 ||| 5 27806 +del ||| than the ||| 0.0142303 0.05522 0.000395598 0.00197249 2.718 ||| 0-0 0-1 ||| 773 27806 +del ||| than ||| 0.0470742 0.0466347 0.0142056 0.0082511 2.718 ||| 0-0 ||| 8391 27806 +del ||| that between ||| 0.0384615 0.0008203 3.59635e-05 4.2483e-07 2.718 ||| 0-1 ||| 26 27806 +del ||| that coincided with the ||| 1 0.0638053 3.59635e-05 9.62955e-11 2.718 ||| 0-3 ||| 1 27806 +del ||| that from ||| 0.0666667 0.0842892 3.59635e-05 0.000202939 2.718 ||| 0-1 ||| 15 27806 +del ||| that of a ||| 0.0344828 0.132374 3.59635e-05 8.3817e-05 2.718 ||| 0-1 ||| 29 27806 +del ||| that of the ||| 0.036036 0.0980897 0.000143854 0.000498039 2.718 ||| 0-1 0-2 ||| 111 27806 +del ||| that of ||| 0.00729927 0.132374 0.00010789 0.00208334 2.718 ||| 0-1 ||| 411 27806 +del ||| that the ||| 0.00113581 0.0638053 0.000251744 0.00195305 2.718 ||| 0-1 ||| 6163 27806 +del ||| that they are not of ||| 1 0.132374 3.59635e-05 2.23944e-10 2.718 ||| 0-4 ||| 1 27806 +del ||| that ||| 3.43336e-05 4.19e-05 7.19269e-05 3.47e-05 2.718 ||| 0-0 ||| 58252 27806 +del ||| the 16th ||| 0.25 0.0638053 3.59635e-05 4.66163e-06 2.718 ||| 0-0 ||| 4 27806 +del ||| the 9 ||| 0.285714 0.0638053 7.19269e-05 4.66163e-06 2.718 ||| 0-0 ||| 7 27806 +del ||| the Anglo-American ||| 0.333333 0.0485693 3.59635e-05 4.1357e-06 2.718 ||| 0-0 0-1 ||| 3 27806 +del ||| the Chairman of ||| 0.333333 0.0980897 3.59635e-05 1.58499e-06 2.718 ||| 0-0 0-2 ||| 3 27806 +del ||| the Clinton administration ||| 0.025641 0.0638053 3.59635e-05 3.43096e-10 2.718 ||| 0-0 ||| 39 27806 +del ||| the Clinton ||| 0.1 0.0638053 3.59635e-05 3.10775e-06 2.718 ||| 0-0 ||| 10 27806 +del ||| the ERM ||| 0.2 0.163482 3.59635e-05 4.14287e-05 2.718 ||| 0-0 0-1 ||| 5 27806 +del ||| the EU ||| 0.000449035 0.0638053 3.59635e-05 6.21072e-05 2.718 ||| 0-0 ||| 2227 27806 +del ||| the G-20 Spotlight ||| 0.0769231 0.33438 3.59635e-05 1.27507e-09 2.718 ||| 0-1 ||| 13 27806 +del ||| the G-20 ||| 0.00515464 0.33438 3.59635e-05 0.000196165 2.718 ||| 0-1 ||| 194 27806 +del ||| the Germans ||| 0.0147059 0.0638053 3.59635e-05 6.2155e-06 2.718 ||| 0-0 ||| 68 27806 +del ||| the Indian ||| 0.1 0.0393494 3.59635e-05 2.89977e-05 2.718 ||| 0-0 0-1 ||| 10 27806 +del ||| the Kosovo Liberation Army ||| 0.25 0.0638053 3.59635e-05 1.57563e-15 2.718 ||| 0-0 ||| 4 27806 +del ||| the Kosovo Liberation ||| 0.5 0.0638053 3.59635e-05 1.21202e-10 2.718 ||| 0-0 ||| 2 27806 +del ||| the Kosovo ||| 0.5 0.0638053 3.59635e-05 6.2155e-06 2.718 ||| 0-0 ||| 2 27806 +del ||| the Millennium ||| 0.4 0.264045 7.19269e-05 0.000430973 2.718 ||| 0-0 0-1 ||| 5 27806 +del ||| the PLA 's ||| 1 0.104748 3.59635e-05 8.68935e-07 2.718 ||| 0-0 0-2 ||| 1 27806 +del ||| the Pakistani ||| 0.0714286 0.0638053 3.59635e-05 3.10775e-06 2.718 ||| 0-0 ||| 14 27806 +del ||| the Review ||| 1 0.0638053 3.59635e-05 1.55388e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| the US ||| 0.000573833 0.0638053 0.00010789 0.000307404 2.718 ||| 0-0 ||| 5228 27806 +del ||| the United States ||| 0.000610128 0.0638053 3.59635e-05 2.52842e-08 2.718 ||| 0-0 ||| 1639 27806 +del ||| the United ||| 0.0114943 0.0638053 3.59635e-05 8.84992e-05 2.718 ||| 0-0 ||| 87 27806 +del ||| the average ||| 0.0238095 0.0638053 3.59635e-05 2.32842e-05 2.718 ||| 0-0 ||| 42 27806 +del ||| the back from ||| 1 0.0842892 3.59635e-05 1.83418e-06 2.718 ||| 0-2 ||| 1 27806 +del ||| the barrel of ||| 0.0909091 0.132374 3.59635e-05 1.76128e-07 2.718 ||| 0-2 ||| 11 27806 +del ||| the cause of ||| 0.0103093 0.0980897 3.59635e-05 6.33385e-06 2.718 ||| 0-0 0-2 ||| 97 27806 +del ||| the conventional wisdom ||| 0.0322581 0.0638053 3.59635e-05 1.90428e-09 2.718 ||| 0-0 ||| 31 27806 +del ||| the conventional ||| 0.0714286 0.0638053 3.59635e-05 1.3961e-05 2.718 ||| 0-0 ||| 14 27806 +del ||| the country 's own ||| 1 0.0638053 3.59635e-05 6.01649e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| the country 's ||| 0.00704225 0.0638053 3.59635e-05 2.87705e-06 2.718 ||| 0-0 ||| 142 27806 +del ||| the country ||| 0.00161812 0.0638053 7.19269e-05 0.000184744 2.718 ||| 0-0 ||| 1236 27806 +del ||| the course in the ||| 0.333333 0.0166084 3.59635e-05 2.65082e-08 2.718 ||| 0-2 ||| 3 27806 +del ||| the course in ||| 0.333333 0.0166084 3.59635e-05 4.98934e-07 2.718 ||| 0-2 ||| 3 27806 +del ||| the course of the ||| 0.0666667 0.0638053 3.59635e-05 1.47067e-07 2.718 ||| 0-0 ||| 15 27806 +del ||| the course of ||| 0.016129 0.0638053 3.59635e-05 2.76807e-06 2.718 ||| 0-0 ||| 62 27806 +del ||| the course ||| 0.0107527 0.0638053 3.59635e-05 0.00010246 2.718 ||| 0-0 ||| 93 27806 +del ||| the daily facts ||| 0.5 0.0638053 3.59635e-05 8.08015e-11 2.718 ||| 0-0 ||| 2 27806 +del ||| the daily ||| 0.25 0.0638053 3.59635e-05 3.10775e-06 2.718 ||| 0-0 ||| 4 27806 +del ||| the deliberate ||| 0.5 0.0638053 3.59635e-05 1.55388e-06 2.718 ||| 0-0 ||| 2 27806 +del ||| the development ||| 0.00609756 0.0638053 3.59635e-05 4.03768e-05 2.718 ||| 0-0 ||| 164 27806 +del ||| the disintegration of liberal economic and ||| 1 0.0638053 3.59635e-05 8.21384e-18 2.718 ||| 0-0 ||| 1 27806 +del ||| the disintegration of liberal economic ||| 1 0.0638053 3.59635e-05 9.78176e-16 2.718 ||| 0-0 ||| 1 27806 +del ||| the disintegration of liberal ||| 1 0.0638053 3.59635e-05 2.18294e-12 2.718 ||| 0-0 ||| 1 27806 +del ||| the disintegration of ||| 0.0769231 0.0638053 3.59635e-05 8.39593e-08 2.718 ||| 0-0 ||| 13 27806 +del ||| the disintegration ||| 0.0769231 0.0638053 3.59635e-05 3.10775e-06 2.718 ||| 0-0 ||| 13 27806 +del ||| the effects may be indirect . ||| 1 0.0638053 3.59635e-05 6.57076e-18 2.718 ||| 0-0 ||| 1 27806 +del ||| the effects may be indirect ||| 1 0.0638053 3.59635e-05 1.42908e-15 2.718 ||| 0-0 ||| 1 27806 +del ||| the effects may be ||| 0.5 0.0638053 3.59635e-05 1.09929e-10 2.718 ||| 0-0 ||| 2 27806 +del ||| the effects may ||| 0.5 0.0638053 3.59635e-05 1.06661e-08 2.718 ||| 0-0 ||| 2 27806 +del ||| the effects ||| 0.0078125 0.0638053 3.59635e-05 1.08771e-05 2.718 ||| 0-0 ||| 128 27806 +del ||| the electorate ||| 0.0294118 0.0638053 3.59635e-05 3.10775e-06 2.718 ||| 0-0 ||| 34 27806 +del ||| the environment ||| 0.00746269 0.0638053 3.59635e-05 1.08771e-05 2.718 ||| 0-0 ||| 134 27806 +del ||| the event ||| 0.0144928 0.0638053 3.59635e-05 9.32325e-06 2.718 ||| 0-0 ||| 69 27806 +del ||| the fact ||| 0.00218102 0.0638053 7.19269e-05 0.000156798 2.718 ||| 0-0 ||| 917 27806 +del ||| the family ||| 0.0204082 0.0638053 3.59635e-05 1.3961e-05 2.718 ||| 0-0 ||| 49 27806 +del ||| the first half ||| 0.0196078 0.0638053 3.59635e-05 1.07261e-08 2.718 ||| 0-0 ||| 51 27806 +del ||| the first ||| 0.000653595 0.0638053 3.59635e-05 0.000117999 2.718 ||| 0-0 ||| 1530 27806 +del ||| the focus ||| 0.0175439 0.0638053 3.59635e-05 3.41613e-05 2.718 ||| 0-0 ||| 57 27806 +del ||| the following ||| 0.0142857 0.0638053 3.59635e-05 2.79458e-05 2.718 ||| 0-0 ||| 70 27806 +del ||| the former chief ||| 1 0.0638053 3.59635e-05 3.06797e-09 2.718 ||| 0-0 ||| 1 27806 +del ||| the former ||| 0.00316456 0.0638053 3.59635e-05 5.89994e-05 2.718 ||| 0-0 ||| 316 27806 +del ||| the government , has ||| 0.5 0.0638053 3.59635e-05 8.10439e-08 2.718 ||| 0-0 ||| 2 27806 +del ||| the government , ||| 0.02 0.0638053 3.59635e-05 2.44211e-05 2.718 ||| 0-0 ||| 50 27806 +del ||| the government ||| 0.00179051 0.0638053 7.19269e-05 0.000119553 2.718 ||| 0-0 ||| 1117 27806 +del ||| the grab-bag ||| 1 0.0638053 3.59635e-05 1.55388e-06 2.718 ||| 0-0 ||| 1 27806 +del ||| the ground , ||| 0.0714286 0.0638053 3.59635e-05 1.7443e-05 2.718 ||| 0-0 ||| 14 27806 +del ||| the ground ||| 0.00694444 0.0638053 3.59635e-05 8.53914e-05 2.718 ||| 0-0 ||| 144 27806 +del ||| the head of the ||| 0.0204082 0.0638053 3.59635e-05 7.7994e-08 2.718 ||| 0-0 ||| 49 27806 +del ||| the head of ||| 0.0169492 0.0638053 3.59635e-05 1.468e-06 2.718 ||| 0-0 ||| 59 27806 +del ||| the head ||| 0.0106383 0.0638053 3.59635e-05 5.43378e-05 2.718 ||| 0-0 ||| 94 27806 +del ||| the heels of ||| 0.333333 0.132374 3.59635e-05 1.76128e-07 2.718 ||| 0-2 ||| 3 27806 +del ||| the income ||| 0.0175439 0.0638053 3.59635e-05 2.6392e-05 2.718 ||| 0-0 ||| 57 27806 +del ||| the labor market by the previous ||| 1 0.0638053 3.59635e-05 5.36528e-17 2.718 ||| 0-0 ||| 1 27806 +del ||| the labor market by the ||| 1 0.0638053 3.59635e-05 1.17918e-12 2.718 ||| 0-0 ||| 1 27806 +del ||| the labor market by ||| 1 0.0638053 3.59635e-05 2.21944e-11 2.718 ||| 0-0 ||| 1 27806 +del ||| the labor market ||| 0.0212766 0.0638053 3.59635e-05 3.27666e-09 2.718 ||| 0-0 ||| 47 27806 +del ||| the labor ||| 0.0769231 0.0638053 3.59635e-05 2.01765e-05 2.718 ||| 0-0 ||| 13 27806 +del ||| the lead ||| 0.012987 0.0638053 3.59635e-05 0.00012419 2.718 ||| 0-0 ||| 77 27806 +del ||| the level ||| 0.00680272 0.0638053 3.59635e-05 5.43378e-05 2.718 ||| 0-0 ||| 147 27806 +del ||| the levels ||| 0.0666667 0.0638053 3.59635e-05 9.32325e-06 2.718 ||| 0-0 ||| 15 27806 +del ||| the machine of ||| 1 0.132374 3.59635e-05 1.76128e-07 2.718 ||| 0-2 ||| 1 27806 +del ||| the maximum ||| 0.0909091 0.0638053 3.59635e-05 1.55388e-06 2.718 ||| 0-0 ||| 11 27806 +del ||| the meantime ||| 0.0169492 0.0638053 3.59635e-05 4.66163e-06 2.718 ||| 0-0 ||| 59 27806 +del ||| the measures adopted are required by the ||| 1 0.0638053 3.59635e-05 1.25832e-19 2.718 ||| 0-0 ||| 1 27806 +del ||| the measures adopted are required by ||| 1 0.0638053 3.59635e-05 2.3684e-18 2.718 ||| 0-0 ||| 1 27806 +del ||| the measures adopted are required ||| 1 0.0638053 3.59635e-05 3.49656e-16 2.718 ||| 0-0 ||| 1 27806 +del ||| the measures adopted are ||| 1 0.0638053 3.59635e-05 2.99107e-12 2.718 ||| 0-0 ||| 1 27806 +del ||| the measures adopted ||| 0.5 0.0638053 3.59635e-05 4.04008e-10 2.718 ||| 0-0 ||| 2 27806 +del ||| the measures ||| 0.0232558 0.0638053 3.59635e-05 7.76938e-06 2.718 ||| 0-0 ||| 43 27806 +del ||| the more ||| 0.00310559 0.0638053 3.59635e-05 0.000510771 2.718 ||| 0-0 ||| 322 27806 +del ||| the nearest available ||| 1 0.0638053 3.59635e-05 4.23897e-10 2.718 ||| 0-0 ||| 1 27806 +del ||| the nearest ||| 0.333333 0.0638053 3.59635e-05 1.55388e-06 2.718 ||| 0-0 ||| 3 27806 +del ||| the new ||| 0.00174672 0.0638053 7.19269e-05 0.000175444 2.718 ||| 0-0 ||| 1145 27806 +del ||| the old ||| 0.00263158 0.0638053 3.59635e-05 6.67688e-05 2.718 ||| 0-0 ||| 380 27806 +del ||| the onset of ||| 0.025641 0.132374 3.59635e-05 1.76128e-07 2.718 ||| 0-2 ||| 39 27806 +del ||| the part ||| 0.0136986 0.0638053 3.59635e-05 0.000147499 2.718 ||| 0-0 ||| 73 27806 +del ||| the party 's ||| 0.125 0.0638053 3.59635e-05 7.73617e-07 2.718 ||| 0-0 ||| 8 27806 +del ||| the party ||| 0.00892857 0.0638053 3.59635e-05 4.96762e-05 2.718 ||| 0-0 ||| 112 27806 +del ||| the past few years ||| 0.027027 0.0638053 3.59635e-05 4.39671e-12 2.718 ||| 0-0 ||| 37 27806 +del ||| the past few ||| 0.0204082 0.0638053 3.59635e-05 1.18766e-08 2.718 ||| 0-0 ||| 49 27806 +del ||| the past ||| 0.00105152 0.0638053 3.59635e-05 4.81223e-05 2.718 ||| 0-0 ||| 951 27806 +del ||| the presence of both Russian ||| 1 0.132374 3.59635e-05 1.12359e-13 2.718 ||| 0-2 ||| 1 27806 +del ||| the presence of both ||| 1 0.132374 3.59635e-05 7.52068e-10 2.718 ||| 0-2 ||| 1 27806 +del ||| the presence of ||| 0.03125 0.0980897 7.19269e-05 1.98123e-06 2.718 ||| 0-0 0-2 ||| 64 27806 +del ||| the profits from ||| 0.2 0.0638053 3.59635e-05 7.68935e-09 2.718 ||| 0-0 ||| 5 27806 +del ||| the profits ||| 0.0454545 0.0638053 3.59635e-05 4.66163e-06 2.718 ||| 0-0 ||| 22 27806 +del ||| the project ||| 0.0232558 0.0638053 3.59635e-05 1.3961e-05 2.718 ||| 0-0 ||| 43 27806 +del ||| the real ||| 0.00540541 0.0638053 3.59635e-05 7.29604e-05 2.718 ||| 0-0 ||| 185 27806 +del ||| the reality ||| 0.00699301 0.0638053 3.59635e-05 1.55148e-05 2.718 ||| 0-0 ||| 143 27806 +del ||| the renminbi ||| 0.010101 0.0638053 3.59635e-05 1.55388e-06 2.718 ||| 0-0 ||| 99 27806 +del ||| the required prior ||| 1 0.0638053 3.59635e-05 7.26592e-10 2.718 ||| 0-0 ||| 1 27806 +del ||| the required ||| 0.142857 0.0638053 3.59635e-05 2.79458e-05 2.718 ||| 0-0 ||| 7 27806 +del ||| the requisite extension ||| 1 0.0638053 3.59635e-05 3.03006e-11 2.718 ||| 0-0 ||| 1 27806 +del ||| the requisite ||| 0.5 0.0638053 3.59635e-05 1.55388e-06 2.718 ||| 0-0 ||| 2 27806 +del ||| the rest of the ||| 0.00292398 0.0866616 3.59635e-05 1.89306e-06 2.718 ||| 0-0 0-2 0-3 ||| 342 27806 +del ||| the risk of ||| 0.00393701 0.132374 3.59635e-05 2.20025e-06 2.718 ||| 0-2 ||| 254 27806 +del ||| the school from the ||| 1 0.0740472 3.59635e-05 1.4355e-08 2.718 ||| 0-2 0-3 ||| 1 27806 +del ||| the slack ||| 0.0909091 0.0638053 7.19269e-05 7.76938e-06 2.718 ||| 0-0 ||| 22 27806 +del ||| the small ||| 0.0217391 0.0638053 3.59635e-05 3.41613e-05 2.718 ||| 0-0 ||| 46 27806 +del ||| the sound of a ||| 1 0.132374 3.59635e-05 4.60044e-08 2.718 ||| 0-2 ||| 1 27806 +del ||| the sound of ||| 0.333333 0.132374 3.59635e-05 1.14348e-06 2.718 ||| 0-2 ||| 3 27806 +del ||| the territory ||| 0.05 0.0378081 3.59635e-05 1.2431e-05 2.718 ||| 0-0 0-1 ||| 20 27806 +del ||| the terrorist ||| 0.1 0.0638053 3.59635e-05 4.66163e-06 2.718 ||| 0-0 ||| 10 27806 +del ||| the trade deficit to shrink . that ||| 1 0.0638053 3.59635e-05 1.90261e-19 2.718 ||| 0-0 ||| 1 27806 +del ||| the trade deficit to shrink . ||| 1 0.0638053 3.59635e-05 2.32883e-17 2.718 ||| 0-0 ||| 1 27806 +del ||| the trade deficit to shrink ||| 0.333333 0.0638053 3.59635e-05 5.06499e-15 2.718 ||| 0-0 ||| 3 27806 +del ||| the trade deficit to ||| 0.25 0.0638053 3.59635e-05 1.94807e-10 2.718 ||| 0-0 ||| 4 27806 +del ||| the trade deficit ||| 0.0454545 0.0638053 3.59635e-05 2.36158e-09 2.718 ||| 0-0 ||| 22 27806 +del ||| the trade ||| 0.0769231 0.0638053 3.59635e-05 6.05533e-05 2.718 ||| 0-0 ||| 13 27806 +del ||| the tried ||| 0.25 0.0638053 3.59635e-05 2.6392e-05 2.718 ||| 0-0 ||| 4 27806 +del ||| the turn of the ||| 0.666667 0.0866616 7.19269e-05 7.6655e-06 2.718 ||| 0-0 0-2 0-3 ||| 3 27806 +del ||| the upper 90 's for the ||| 1 0.0638053 3.59635e-05 3.1825e-16 2.718 ||| 0-5 ||| 1 27806 +del ||| the usual ||| 0.037037 0.0638053 3.59635e-05 9.32325e-06 2.718 ||| 0-0 ||| 27 27806 +del ||| the value of the ||| 0.0135135 0.0980897 3.59635e-05 6.30925e-07 2.718 ||| 0-2 0-3 ||| 74 27806 +del ||| the way that ||| 0.027027 0.0638053 3.59635e-05 2.96806e-06 2.718 ||| 0-0 ||| 37 27806 +del ||| the way ||| 0.00236686 0.0638053 7.19269e-05 0.000363296 2.718 ||| 0-0 ||| 845 27806 +del ||| the weather bureau ||| 0.5 0.0638053 3.59635e-05 2.02004e-11 2.718 ||| 0-0 ||| 2 27806 +del ||| the weather ||| 0.1 0.0638053 3.59635e-05 3.10775e-06 2.718 ||| 0-0 ||| 10 27806 +del ||| the world 's ||| 0.00581395 0.0638053 3.59635e-05 3.26386e-06 2.718 ||| 0-0 ||| 172 27806 +del ||| the world ||| 0.00070497 0.0638053 7.19269e-05 0.000209582 2.718 ||| 0-0 ||| 2837 27806 +del ||| the wrong ||| 0.0588235 0.0638053 3.59635e-05 2.17303e-05 2.718 ||| 0-0 ||| 17 27806 +del ||| the years that ||| 0.1 0.0638053 3.59635e-05 7.2302e-07 2.718 ||| 0-0 ||| 10 27806 +del ||| the years ||| 0.00444444 0.0638053 3.59635e-05 8.84992e-05 2.718 ||| 0-0 ||| 225 27806 +del ||| the ||| 0.0175432 0.0638053 0.130799 0.239058 2.718 ||| 0-0 ||| 207317 27806 +del ||| their ||| 0.000633937 0.0011105 0.000323671 0.00026 2.718 ||| 0-0 ||| 14197 27806 +del ||| theme in ||| 0.5 0.0166084 3.59635e-05 2.84838e-07 2.718 ||| 0-1 ||| 2 27806 +del ||| they are not of ||| 1 0.132374 3.59635e-05 2.74112e-08 2.718 ||| 0-3 ||| 1 27806 +del ||| they have a stake in ||| 0.333333 0.0166084 3.59635e-05 2.1896e-12 2.718 ||| 0-4 ||| 3 27806 +del ||| third wife , became ||| 0.5 0.0126582 3.59635e-05 2.81868e-14 2.718 ||| 0-1 ||| 2 27806 +del ||| third wife , ||| 0.5 0.0126582 3.59635e-05 1.60792e-10 2.718 ||| 0-1 ||| 2 27806 +del ||| third wife ||| 0.5 0.0126582 3.59635e-05 7.8715e-10 2.718 ||| 0-1 ||| 2 27806 +del ||| this recognition is not a confession of ||| 1 0.132374 3.59635e-05 2.67014e-19 2.718 ||| 0-6 ||| 1 27806 +del ||| those in the ||| 0.0227273 0.0402068 3.59635e-05 2.61947e-06 2.718 ||| 0-1 0-2 ||| 44 27806 +del ||| those of the ||| 0.0208333 0.0980897 3.59635e-05 3.04866e-05 2.718 ||| 0-1 0-2 ||| 48 27806 +del ||| threat of ||| 0.0046729 0.132374 3.59635e-05 2.15224e-05 2.718 ||| 0-1 ||| 214 27806 +del ||| through Germany 's ||| 1 0.145691 3.59635e-05 1.01207e-08 2.718 ||| 0-2 ||| 1 27806 +del ||| through the ||| 0.00574713 0.0638053 7.19269e-05 0.000121107 2.718 ||| 0-1 ||| 348 27806 +del ||| through ||| 0.000365097 0.0006669 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 2739 27806 +del ||| throughout the ||| 0.00524934 0.0638053 7.19269e-05 2.17303e-05 2.718 ||| 0-1 ||| 381 27806 +del ||| time horizons of ||| 0.5 0.132374 3.59635e-05 1.55013e-09 2.718 ||| 0-2 ||| 2 27806 +del ||| to 9 ||| 0.1 0.159091 3.59635e-05 6.00529e-05 2.718 ||| 0-1 ||| 10 27806 +del ||| to a ||| 0.000469704 0.000537 3.59635e-05 3.83572e-05 2.718 ||| 0-0 ||| 2129 27806 +del ||| to allocate the ||| 0.5 0.0638053 3.59635e-05 1.28179e-07 2.718 ||| 0-2 ||| 2 27806 +del ||| to be ||| 0.000337952 0.000537 3.59635e-05 9.82612e-06 2.718 ||| 0-0 ||| 2959 27806 +del ||| to come out of ||| 0.5 0.132374 3.59635e-05 1.14522e-07 2.718 ||| 0-3 ||| 2 27806 +del ||| to divide America 's ||| 1 0.145691 3.59635e-05 6.23626e-10 2.718 ||| 0-3 ||| 1 27806 +del ||| to drop the ||| 0.2 0.0638053 3.59635e-05 1.02544e-06 2.718 ||| 0-2 ||| 5 27806 +del ||| to end the ||| 0.0188679 0.0638053 3.59635e-05 9.34921e-06 2.718 ||| 0-2 ||| 53 27806 +del ||| to growth ||| 0.0217391 0.0277964 3.59635e-05 0.000237366 2.718 ||| 0-1 ||| 46 27806 +del ||| to make of the ||| 0.5 0.0980897 3.59635e-05 6.62931e-06 2.718 ||| 0-2 0-3 ||| 2 27806 +del ||| to market ||| 0.0555556 0.121466 3.59635e-05 0.000559094 2.718 ||| 0-1 ||| 18 27806 +del ||| to participate in the ||| 0.0588235 0.0402068 3.59635e-05 8.42547e-09 2.718 ||| 0-2 0-3 ||| 17 27806 +del ||| to the disintegration of liberal economic and ||| 1 0.0638053 3.59635e-05 6.77561e-19 2.718 ||| 0-1 ||| 1 27806 +del ||| to the disintegration of liberal economic ||| 1 0.0638053 3.59635e-05 8.06899e-17 2.718 ||| 0-1 ||| 1 27806 +del ||| to the disintegration of liberal ||| 1 0.0638053 3.59635e-05 1.80071e-13 2.718 ||| 0-1 ||| 1 27806 +del ||| to the disintegration of ||| 0.5 0.0638053 3.59635e-05 6.92582e-09 2.718 ||| 0-1 ||| 2 27806 +del ||| to the disintegration ||| 0.5 0.0638053 3.59635e-05 2.56359e-07 2.718 ||| 0-1 ||| 2 27806 +del ||| to the machine of ||| 1 0.132374 3.59635e-05 1.45289e-08 2.718 ||| 0-3 ||| 1 27806 +del ||| to the ||| 0.0153734 0.0638053 0.0045314 0.0197199 2.718 ||| 0-1 ||| 8196 27806 +del ||| to ||| 0.000573765 0.000537 0.00172625 0.0009534 2.718 ||| 0-0 ||| 83658 27806 +del ||| today 's ||| 0.00458716 0.145691 7.19269e-05 4.90283e-05 2.718 ||| 0-1 ||| 436 27806 +del ||| too much of the ||| 0.333333 0.132374 3.59635e-05 1.95346e-08 2.718 ||| 0-2 ||| 3 27806 +del ||| too much of ||| 0.0714286 0.132374 3.59635e-05 3.67678e-07 2.718 ||| 0-2 ||| 14 27806 +del ||| total ||| 0.00145985 0.007728 3.59635e-05 8.67e-05 2.718 ||| 0-0 ||| 685 27806 +del ||| toward the ||| 0.0217391 0.0638053 7.19269e-05 2.94997e-05 2.718 ||| 0-1 ||| 92 27806 +del ||| towards ||| 0.0028777 0.0040268 7.19269e-05 5.2e-05 2.718 ||| 0-0 ||| 695 27806 +del ||| toxic assets have not yet caused a ||| 1 0.008 3.59635e-05 2.80889e-23 2.718 ||| 0-0 ||| 1 27806 +del ||| toxic assets have not yet caused ||| 1 0.008 3.59635e-05 6.98174e-22 2.718 ||| 0-0 ||| 1 27806 +del ||| toxic assets have not yet ||| 1 0.008 3.59635e-05 7.16811e-18 2.718 ||| 0-0 ||| 1 27806 +del ||| toxic assets have not ||| 1 0.008 3.59635e-05 1.36276e-14 2.718 ||| 0-0 ||| 1 27806 +del ||| toxic assets have ||| 1 0.008 3.59635e-05 5.79675e-12 2.718 ||| 0-0 ||| 1 27806 +del ||| toxic assets ||| 0.0277778 0.008 3.59635e-05 1.12277e-09 2.718 ||| 0-0 ||| 36 27806 +del ||| toxic ||| 0.00671141 0.008 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 149 27806 +del ||| trader for the ||| 1 0.0837017 3.59635e-05 1.07064e-07 2.718 ||| 0-0 0-1 0-2 ||| 1 27806 +del ||| treating the ||| 0.0769231 0.0638053 3.59635e-05 6.2155e-06 2.718 ||| 0-1 ||| 13 27806 +del ||| triumph of ||| 0.030303 0.132374 3.59635e-05 3.31507e-06 2.718 ||| 0-1 ||| 33 27806 +del ||| turn of the ||| 0.2 0.0980897 3.59635e-05 3.20655e-05 2.718 ||| 0-1 0-2 ||| 5 27806 +del ||| twentieth-century ||| 0.0322581 0.295455 3.59635e-05 0.0004507 2.718 ||| 0-0 ||| 31 27806 +del ||| under President George W. Bush 's leadership ||| 1 0.145691 3.59635e-05 3.66539e-26 2.718 ||| 0-5 ||| 1 27806 +del ||| under President George W. Bush 's ||| 1 0.145691 3.59635e-05 1.94657e-22 2.718 ||| 0-5 ||| 1 27806 +del ||| under the ||| 0.0017331 0.0638053 3.59635e-05 0.000117999 2.718 ||| 0-1 ||| 577 27806 +del ||| underlying the onset of ||| 1 0.132374 3.59635e-05 6.869e-12 2.718 ||| 0-3 ||| 1 27806 +del ||| unique forms of ||| 1 0.132374 3.59635e-05 4.19688e-10 2.718 ||| 0-2 ||| 1 27806 +del ||| unite behind the ||| 0.333333 0.0638053 3.59635e-05 9.08085e-10 2.718 ||| 0-2 ||| 3 27806 +del ||| up from ||| 0.025641 0.0842892 3.59635e-05 7.7593e-05 2.718 ||| 0-1 ||| 39 27806 +del ||| up the ||| 0.00793651 0.0638053 3.59635e-05 0.000746745 2.718 ||| 0-1 ||| 126 27806 +del ||| upon nurturing ||| 0.5 0.0096525 3.59635e-05 5.6355e-10 2.718 ||| 0-0 ||| 2 27806 +del ||| upon ||| 0.00980392 0.0096525 7.19269e-05 8.67e-05 2.718 ||| 0-0 ||| 204 27806 +del ||| upper 90 's for the ||| 1 0.0638053 3.59635e-05 5.99007e-15 2.718 ||| 0-4 ||| 1 27806 +del ||| upside ||| 0.030303 0.037037 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 33 27806 +del ||| us in the ||| 0.333333 0.0402068 3.59635e-05 2.99346e-06 2.718 ||| 0-1 0-2 ||| 3 27806 +del ||| used by the ||| 0.125 0.0369468 3.59635e-05 2.99467e-07 2.718 ||| 0-1 0-2 ||| 8 27806 +del ||| vague notions of ||| 0.333333 0.132374 3.59635e-05 1.0774e-11 2.718 ||| 0-2 ||| 3 27806 +del ||| value of the ||| 0.0108696 0.0980897 3.59635e-05 1.18752e-05 2.718 ||| 0-1 0-2 ||| 92 27806 +del ||| venture much beyond the ||| 0.25 0.0638053 3.59635e-05 1.96378e-12 2.718 ||| 0-3 ||| 4 27806 +del ||| view the ||| 0.030303 0.0638053 3.59635e-05 6.05533e-05 2.718 ||| 0-1 ||| 33 27806 +del ||| vigilantes ||| 0.047619 0.15 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 21 27806 +del ||| voter ||| 0.0227273 0.0547945 3.59635e-05 6.93e-05 2.718 ||| 0-0 ||| 44 27806 +del ||| wake of the ||| 0.0217391 0.0980897 3.59635e-05 3.95637e-06 2.718 ||| 0-1 0-2 ||| 46 27806 +del ||| wanting . the ||| 1 0.0638053 3.59635e-05 2.14337e-08 2.718 ||| 0-2 ||| 1 27806 +del ||| was based on ||| 0.0263158 0.0174344 3.59635e-05 4.19223e-09 2.718 ||| 0-2 ||| 38 27806 +del ||| was found wanting . the ||| 1 0.0638053 3.59635e-05 3.26158e-14 2.718 ||| 0-4 ||| 1 27806 +del ||| water ||| 0.00380711 0.0831354 0.00010789 0.0012134 2.718 ||| 0-0 ||| 788 27806 +del ||| wave of ||| 0.00943396 0.132374 3.59635e-05 1.32603e-05 2.718 ||| 0-1 ||| 106 27806 +del ||| way of ||| 0.00529101 0.132374 3.59635e-05 0.000387532 2.718 ||| 0-1 ||| 189 27806 +del ||| ways to end the ||| 1 0.0638053 3.59635e-05 1.63892e-09 2.718 ||| 0-3 ||| 1 27806 +del ||| weak ||| 0.00163666 0.0018248 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 611 27806 +del ||| weakening of the ||| 0.0714286 0.0980897 3.59635e-05 3.96246e-07 2.718 ||| 0-1 0-2 ||| 14 27806 +del ||| weighted by how great ||| 0.5 0.0100882 3.59635e-05 2.28181e-15 2.718 ||| 0-1 ||| 2 27806 +del ||| weighted by how ||| 0.5 0.0100882 3.59635e-05 1.06477e-11 2.718 ||| 0-1 ||| 2 27806 +del ||| weighted by ||| 0.333333 0.0100882 3.59635e-05 2.41118e-08 2.718 ||| 0-1 ||| 3 27806 +del ||| were being priced out of ||| 0.5 0.132374 3.59635e-05 2.45311e-14 2.718 ||| 0-4 ||| 2 27806 +del ||| were consistent advocates of awarding ||| 0.25 0.132374 3.59635e-05 9.305e-19 2.718 ||| 0-3 ||| 4 27806 +del ||| were consistent advocates of ||| 0.25 0.132374 3.59635e-05 1.43154e-13 2.718 ||| 0-3 ||| 4 27806 +del ||| what it was ||| 0.0416667 0.0002973 3.59635e-05 5.23329e-09 2.718 ||| 0-0 ||| 24 27806 +del ||| what it ||| 0.00649351 0.0002973 3.59635e-05 1.38458e-06 2.718 ||| 0-0 ||| 154 27806 +del ||| what ||| 0.000363438 0.0002973 7.19269e-05 5.2e-05 2.718 ||| 0-0 ||| 5503 27806 +del ||| when the ||| 0.00121212 0.0638053 3.59635e-05 8.69453e-05 2.718 ||| 0-1 ||| 825 27806 +del ||| which the ||| 0.00203666 0.0638053 3.59635e-05 0.000287204 2.718 ||| 0-1 ||| 491 27806 +del ||| whistle on ||| 0.5 0.0174344 3.59635e-05 8.87861e-08 2.718 ||| 0-1 ||| 2 27806 +del ||| who built the ||| 0.5 0.0638053 3.59635e-05 2.84936e-08 2.718 ||| 0-2 ||| 2 27806 +del ||| whose chief ||| 0.0833333 0.0251046 3.59635e-05 2.028e-09 2.718 ||| 0-1 ||| 12 27806 +del ||| wife , became ||| 0.5 0.0126582 3.59635e-05 6.19489e-10 2.718 ||| 0-0 ||| 2 27806 +del ||| wife , ||| 0.04 0.0126582 3.59635e-05 3.53388e-06 2.718 ||| 0-0 ||| 25 27806 +del ||| wife ||| 0.011236 0.0126582 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 89 27806 +del ||| will reclaim the ||| 0.25 0.0638053 3.59635e-05 2.14742e-08 2.718 ||| 0-2 ||| 4 27806 +del ||| wipe ||| 0.111111 0.037037 3.59635e-05 1.73e-05 2.718 ||| 0-0 ||| 9 27806 +del ||| with both the ||| 0.111111 0.0638053 3.59635e-05 1.5486e-06 2.718 ||| 0-2 ||| 9 27806 +del ||| with powerful unions awaits ||| 1 0.0013038 3.59635e-05 1.66331e-17 2.718 ||| 0-1 ||| 1 27806 +del ||| with powerful unions ||| 1 0.0013038 3.59635e-05 1.27947e-12 2.718 ||| 0-1 ||| 1 27806 +del ||| with powerful ||| 0.333333 0.0013038 3.59635e-05 6.56137e-08 2.718 ||| 0-1 ||| 3 27806 +del ||| with that ||| 0.0181818 0.0001856 3.59635e-05 5.66167e-07 2.718 ||| 0-0 ||| 55 27806 +del ||| with the ||| 0.00325407 0.0638053 0.000467525 0.000906674 2.718 ||| 0-1 ||| 3995 27806 +del ||| with ||| 9.35716e-05 0.0001856 7.19269e-05 6.93e-05 2.718 ||| 0-0 ||| 21374 27806 +del ||| within the ||| 0.005386 0.0638053 0.00010789 5.27839e-05 2.718 ||| 0-1 ||| 557 27806 +del ||| without damaging the environment ||| 0.333333 0.0638053 3.59635e-05 1.14819e-14 2.718 ||| 0-2 ||| 3 27806 +del ||| without damaging the ||| 0.25 0.0638053 3.59635e-05 2.52349e-10 2.718 ||| 0-2 ||| 4 27806 +del ||| without even a parody of ||| 0.5 0.132374 3.59635e-05 9.84645e-15 2.718 ||| 0-4 ||| 2 27806 +del ||| without plausibility : ||| 0.333333 0.5 3.59635e-05 1.16764e-12 2.718 ||| 0-1 ||| 3 27806 +del ||| without plausibility ||| 0.333333 0.5 3.59635e-05 2.80952e-09 2.718 ||| 0-1 ||| 3 27806 +del ||| work to ||| 0.0217391 0.000537 3.59635e-05 5.75854e-07 2.718 ||| 0-1 ||| 46 27806 +del ||| world 's ||| 0.00149142 0.145691 7.19269e-05 0.000122564 2.718 ||| 0-1 ||| 1341 27806 +del ||| world ||| 0.000116482 0.0002472 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 8585 27806 +del ||| worldwide ||| 0.0022831 0.008273 3.59635e-05 0.0001387 2.718 ||| 0-0 ||| 438 27806 +del ||| would of ||| 1 0.132374 3.59635e-05 0.00117912 2.718 ||| 0-1 ||| 1 27806 +del ||| write home about ||| 0.333333 0.0060794 3.59635e-05 1.14592e-11 2.718 ||| 0-2 ||| 3 27806 +del ||| years from ||| 0.0769231 0.0842892 3.59635e-05 9.19581e-06 2.718 ||| 0-1 ||| 13 27806 +del ||| years of the ||| 0.037037 0.0980897 3.59635e-05 2.25678e-05 2.718 ||| 0-1 0-2 ||| 27 27806 +del ||| yields ||| 0.00793651 0.0146341 3.59635e-05 5.2e-05 2.718 ||| 0-0 ||| 126 27806 +del ||| young people from the ||| 1 0.0638053 3.59635e-05 3.09294e-11 2.718 ||| 0-3 ||| 1 27806 +del ||| your ||| 0.00242131 0.0076628 3.59635e-05 6.93e-05 2.718 ||| 0-0 ||| 413 27806 +del ||| yourself from ||| 1 0.0842892 3.59635e-05 4.84382e-07 2.718 ||| 0-1 ||| 1 27806 +del ||| ­ - it is in the ||| 1 0.0402068 3.59635e-05 6.31764e-13 2.718 ||| 0-4 0-5 ||| 1 27806 +del ||| ´ s ||| 0.5 0.333333 3.59635e-05 4.28198e-09 2.718 ||| 0-0 ||| 2 27806 +del ||| ´ ||| 0.5 0.333333 3.59635e-05 3.47e-05 2.718 ||| 0-0 ||| 2 27806 +del ||| ‘ s ||| 0.285714 0.047619 7.19269e-05 7.20027e-09 2.718 ||| 0-1 ||| 7 27806 +domando a ||| taming ||| 0.0740741 0.00756144 1 0.500047 2.718 ||| 0-0 1-0 ||| 27 2 +en ambos lados del Atlántico ||| on both sides of the Atlantic , ||| 0.2 0.000671175 0.125 0.000390146 2.718 ||| 0-0 1-1 2-2 3-3 3-4 4-5 ||| 5 8 +en ambos lados del Atlántico ||| on both sides of the Atlantic ||| 0.333333 0.000671175 0.75 0.00190995 2.718 ||| 0-0 1-1 2-2 3-3 3-4 4-5 ||| 18 8 +en ambos lados del Atlántico ||| on either side of the Atlantic ||| 0.25 3.71394e-06 0.125 4.10505e-06 2.718 ||| 0-0 1-1 2-2 3-3 3-4 4-5 ||| 4 8 +en ambos lados del ||| at both ends of the ||| 0.5 4.09381e-05 0.0833333 1.24789e-05 2.718 ||| 0-0 1-1 2-2 3-3 3-4 ||| 2 12 +en ambos lados del ||| on both shores of the ||| 1 0.000192028 0.0833333 2.3173e-05 2.718 ||| 0-0 1-1 2-2 3-3 3-4 ||| 1 12 +en ambos lados del ||| on both sides of the ||| 0.243243 0.00121892 0.75 0.00208557 2.718 ||| 0-0 1-1 2-2 3-3 3-4 ||| 37 12 +en ambos lados del ||| on either side of the ||| 0.125 6.74485e-06 0.0833333 4.48252e-06 2.718 ||| 0-0 1-1 2-2 3-3 3-4 ||| 8 12 +en ambos lados ||| at both ends ||| 0.5 0.000417354 0.0416667 0.000204704 2.718 ||| 0-0 1-1 2-2 ||| 2 24 +en ambos lados ||| many on both sides ||| 0.5 0.0124265 0.0416667 1.99967e-05 2.718 ||| 0-1 1-2 2-3 ||| 2 24 +en ambos lados ||| on both shores ||| 1 0.00195767 0.0416667 0.000380129 2.718 ||| 0-0 1-1 2-2 ||| 1 24 +en ambos lados ||| on both sides ||| 0.144144 0.0124265 0.666667 0.0342116 2.718 ||| 0-0 1-1 2-2 ||| 111 24 +en ambos lados ||| on either side ||| 0.266667 6.87621e-05 0.166667 7.3531e-05 2.718 ||| 0-0 1-1 2-2 ||| 15 24 +en ambos lados ||| on the two sides ||| 0.5 0.00161254 0.0416667 0.00021975 2.718 ||| 0-0 1-2 2-3 ||| 2 24 +en ambos ||| , in both ||| 0.0588235 0.116892 0.00714286 0.0797424 2.718 ||| 0-1 1-2 ||| 17 140 +en ambos ||| at both ||| 0.2 0.0571773 0.0142857 0.0292727 2.718 ||| 0-0 1-1 ||| 10 140 +en ambos ||| by both ||| 0.0208333 0.0106768 0.00714286 0.00993854 2.718 ||| 0-0 1-1 ||| 48 140 +en ambos ||| for both ||| 0.00813008 0.00415857 0.00714286 0.00623038 2.718 ||| 0-0 1-1 ||| 123 140 +en ambos ||| in both of these ||| 0.5 0.0588208 0.00714286 8.75229e-05 2.718 ||| 0-0 1-1 1-3 ||| 2 140 +en ambos ||| in both ||| 0.27027 0.116892 0.5 0.390376 2.718 ||| 0-0 1-1 ||| 259 140 +en ambos ||| in each ||| 0.0229885 0.00330072 0.0142857 0.0053938 2.718 ||| 0-0 1-1 ||| 87 140 +en ambos ||| in the ||| 5.58566e-05 3.72594e-05 0.00714286 0.0258988 2.718 ||| 0-0 ||| 17903 140 +en ambos ||| in ||| 1.24163e-05 3.72594e-05 0.00714286 0.487465 2.718 ||| 0-0 ||| 80539 140 +en ambos ||| many on both ||| 0.333333 0.0548148 0.00714286 3.17725e-05 2.718 ||| 0-1 1-2 ||| 3 140 +en ambos ||| on both ||| 0.288344 0.0548148 0.335714 0.0543585 2.718 ||| 0-0 1-1 ||| 163 140 +en ambos ||| on each ||| 0.0769231 0.00154783 0.00714286 0.000751067 2.718 ||| 0-0 1-1 ||| 13 140 +en ambos ||| on either side to guide market expectations ||| 0.5 0.0027996 0.00714286 1.26978e-21 2.718 ||| 0-0 1-1 ||| 2 140 +en ambos ||| on either side to guide market ||| 0.5 0.0027996 0.00714286 3.90702e-17 2.718 ||| 0-0 1-1 ||| 2 140 +en ambos ||| on either side to guide ||| 0.5 0.0027996 0.00714286 2.4058e-13 2.718 ||| 0-0 1-1 ||| 2 140 +en ambos ||| on either side to ||| 0.5 0.0027996 0.00714286 1.85062e-08 2.718 ||| 0-0 1-1 ||| 2 140 +en ambos ||| on either side ||| 0.0666667 0.0027996 0.00714286 2.24344e-07 2.718 ||| 0-0 1-1 ||| 15 140 +en ambos ||| on either ||| 0.2 0.0027996 0.0357143 0.000751067 2.718 ||| 0-0 1-1 ||| 25 140 +en ambos ||| on the two ||| 0.5 0.00711309 0.00714286 0.000349159 2.718 ||| 0-0 1-2 ||| 2 140 +en ||| ! ' in ||| 1 0.717907 1.22445e-05 6.00679e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| # 45 ; to ||| 0.333333 0.0189899 1.22445e-05 3.36796e-11 2.718 ||| 0-3 ||| 3 81669 +en ||| & # 45 ; to ||| 0.333333 0.0189899 1.22445e-05 4.74647e-14 2.718 ||| 0-4 ||| 3 81669 +en ||| ' in ||| 0.333333 0.717907 1.22445e-05 0.000402061 2.718 ||| 0-1 ||| 3 81669 +en ||| ' promise at ||| 1 0.351161 1.22445e-05 1.95666e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| 'll try that again . ) In ||| 1 0.0917031 1.22445e-05 2.45525e-23 2.718 ||| 0-6 ||| 1 81669 +en ||| 's " ||| 0.00769231 0.0068465 1.22445e-05 1.6887e-05 2.718 ||| 0-0 ||| 130 81669 +en ||| 's absence from ||| 1 0.0190577 1.22445e-05 1.75568e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| 's clashing ||| 0.333333 0.0068465 1.22445e-05 4.39582e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| 's edge in ||| 1 0.717907 1.22445e-05 4.92681e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| 's embattled ||| 0.5 0.0068465 1.22445e-05 2.19791e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| 's focus has ||| 1 0.0041379 1.22445e-05 1.38506e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| 's focus ||| 0.0555556 0.0041379 1.22445e-05 4.17362e-07 2.718 ||| 0-1 ||| 18 81669 +en ||| 's in ||| 0.625 0.717907 6.12227e-05 0.00759139 2.718 ||| 0-1 ||| 8 81669 +en ||| 's insist ||| 1 0.348039 1.22445e-05 9.86562e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| 's membership in ||| 0.5 0.717907 1.22445e-05 6.90057e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| 's much discussed ||| 1 0.0084034 1.22445e-05 1.99822e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| 's original performance ||| 0.25 0.0068465 1.22445e-05 9.98511e-12 2.718 ||| 0-0 ||| 4 81669 +en ||| 's original ||| 0.0909091 0.0068465 1.22445e-05 1.53854e-07 2.718 ||| 0-0 ||| 11 81669 +en ||| 's policy ||| 0.00990099 0.0068465 1.22445e-05 1.05398e-06 2.718 ||| 0-0 ||| 101 81669 +en ||| 's predicament ||| 0.0909091 0.0068465 1.22445e-05 6.59373e-08 2.718 ||| 0-0 ||| 11 81669 +en ||| 's right ||| 0.04 0.0511674 2.44891e-05 1.43118e-05 2.718 ||| 0-1 ||| 50 81669 +en ||| 's self-interest in ||| 0.5 0.717907 1.22445e-05 4.9344e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| 's significant xenophobic ||| 1 0.0068465 1.22445e-05 2.28363e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| 's significant ||| 0.5 0.0068465 1.22445e-05 3.51327e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| 's standard bearer in ||| 1 0.717907 1.22445e-05 5.12684e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| 's surface , which requires taking into ||| 1 0.414384 1.22445e-05 9.34955e-20 2.718 ||| 0-6 ||| 1 81669 +en ||| 's third poorest ||| 0.166667 0.107143 1.22445e-05 3.35948e-10 2.718 ||| 0-1 ||| 6 81669 +en ||| 's third ||| 0.0588235 0.107143 1.22445e-05 1.29211e-05 2.718 ||| 0-1 ||| 17 81669 +en ||| 's ||| 0.00667531 0.0068465 0.00170199 0.0033814 2.718 ||| 0-0 ||| 20823 81669 +en ||| 't need to tell ||| 0.333333 0.0189899 1.22445e-05 5.03548e-13 2.718 ||| 0-2 ||| 3 81669 +en ||| 't need to ||| 0.142857 0.0189899 1.22445e-05 4.08062e-09 2.718 ||| 0-2 ||| 7 81669 +en ||| 't sit on ||| 1 0.336652 1.22445e-05 2.33504e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| " -- in Argentina and , perhaps ||| 0.5 0.717907 1.22445e-05 1.27362e-16 2.718 ||| 0-2 ||| 2 81669 +en ||| " -- in Argentina and , ||| 0.5 0.717907 1.22445e-05 1.22581e-12 2.718 ||| 0-2 ||| 2 81669 +en ||| " -- in Argentina and ||| 0.5 0.717907 1.22445e-05 6.00091e-12 2.718 ||| 0-2 ||| 2 81669 +en ||| " -- in Argentina ||| 0.5 0.717907 1.22445e-05 7.14641e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| " -- in ||| 0.2 0.717907 1.22445e-05 1.2237e-05 2.718 ||| 0-2 ||| 5 81669 +en ||| " Bird 's ||| 1 0.0068465 1.22445e-05 1.09766e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| " In ||| 0.0384615 0.0917031 1.22445e-05 9.35894e-07 2.718 ||| 0-1 ||| 26 81669 +en ||| " Nordic " about ||| 1 0.0371521 1.22445e-05 3.97753e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| " about ||| 0.0384615 0.0371521 1.22445e-05 1.2253e-05 2.718 ||| 0-1 ||| 26 81669 +en ||| " all in ||| 1 0.717907 1.22445e-05 6.30814e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| " in and out " ||| 1 0.717907 1.22445e-05 4.52834e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| " in and out ||| 1 0.717907 1.22445e-05 9.06739e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| " in and ||| 1 0.717907 1.22445e-05 2.04423e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| " in ||| 0.0148883 0.717907 7.34673e-05 0.00243445 2.718 ||| 0-1 ||| 403 81669 +en ||| " into ||| 0.0625 0.414384 1.22445e-05 9.90944e-05 2.718 ||| 0-1 ||| 16 81669 +en ||| " on ||| 0.0131579 0.336652 1.22445e-05 0.000338988 2.718 ||| 0-1 ||| 76 81669 +en ||| " ruling couples " -- in Argentina ||| 0.5 0.717907 1.22445e-05 3.16426e-21 2.718 ||| 0-5 ||| 2 81669 +en ||| " ruling couples " -- in ||| 0.5 0.717907 1.22445e-05 5.41826e-17 2.718 ||| 0-5 ||| 2 81669 +en ||| " smoking gun " in ||| 1 0.717907 1.22445e-05 2.05468e-15 2.718 ||| 0-4 ||| 1 81669 +en ||| " word in ||| 1 0.717907 1.22445e-05 1.89643e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| " ||| 3.22601e-05 5.61e-05 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 30998 81669 +en ||| ( MDGs ) in ||| 1 0.717907 1.22445e-05 7.57728e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| ( PA ) in 1994 ||| 0.333333 0.717907 1.22445e-05 9.85046e-17 2.718 ||| 0-3 ||| 3 81669 +en ||| ( PA ) in ||| 0.333333 0.717907 1.22445e-05 7.57728e-12 2.718 ||| 0-3 ||| 3 81669 +en ||| ( PiS ) in ||| 1 0.717907 1.22445e-05 3.78864e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| ( rather ||| 0.0769231 0.274052 1.22445e-05 7.59385e-06 2.718 ||| 0-1 ||| 13 81669 +en ||| ( ||| 0.000138466 0.0001479 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 7222 81669 +en ||| ) In ||| 0.5 0.0917031 1.22445e-05 2.1298e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| ) co-authored ||| 1 0.272727 1.22445e-05 3.04582e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| ) in 1994 ||| 0.25 0.717907 1.22445e-05 7.20205e-09 2.718 ||| 0-1 ||| 4 81669 +en ||| ) in ||| 0.0193548 0.717907 3.67336e-05 0.000554004 2.718 ||| 0-1 ||| 155 81669 +en ||| ) into cultivating ||| 0.5 0.414384 1.22445e-05 1.4658e-10 2.718 ||| 0-1 ||| 2 81669 +en ||| ) into ||| 0.125 0.414384 2.44891e-05 2.25508e-05 2.718 ||| 0-1 ||| 16 81669 +en ||| ) over ||| 0.111111 0.159665 1.22445e-05 8.32475e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| , Japan 's ||| 0.0714286 0.0068465 1.22445e-05 1.92918e-07 2.718 ||| 0-2 ||| 14 81669 +en ||| , across ||| 0.0555556 0.28681 1.22445e-05 0.00068161 2.718 ||| 0-1 ||| 18 81669 +en ||| , against the ||| 0.0588235 0.0888521 1.22445e-05 3.1178e-05 2.718 ||| 0-1 ||| 17 81669 +en ||| , against ||| 0.0172414 0.0888521 1.22445e-05 0.000586829 2.718 ||| 0-1 ||| 58 81669 +en ||| , albeit belatedly , was in a ||| 1 0.717907 1.22445e-05 5.22722e-16 2.718 ||| 0-5 ||| 1 81669 +en ||| , albeit belatedly , was in ||| 1 0.717907 1.22445e-05 1.29927e-14 2.718 ||| 0-5 ||| 1 81669 +en ||| , an effort to ||| 0.333333 0.0189899 1.22445e-05 3.42693e-09 2.718 ||| 0-3 ||| 3 81669 +en ||| , and influence . ||| 0.5 0.0828539 1.22445e-05 5.06641e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| , and influence ||| 0.5 0.0828539 1.22445e-05 1.1019e-06 2.718 ||| 0-2 ||| 2 81669 +en ||| , and shopping centers ||| 0.5 0.0625 1.22445e-05 1.98458e-13 2.718 ||| 0-2 ||| 2 81669 +en ||| , and shopping ||| 1 0.0625 1.22445e-05 3.0532e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| , anywhere ||| 0.142857 0.206061 1.22445e-05 6.19553e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| , are constituted in ||| 1 0.717907 1.22445e-05 1.43754e-08 2.718 ||| 0-3 ||| 1 81669 +en ||| , as China looms ever larger in ||| 1 0.717907 1.22445e-05 4.46781e-19 2.718 ||| 0-6 ||| 1 81669 +en ||| , as a ||| 0.00961538 0.0296498 1.22445e-05 5.90972e-05 2.718 ||| 0-1 ||| 104 81669 +en ||| , as well as ||| 0.00144092 0.0296498 1.22445e-05 2.15369e-08 2.718 ||| 0-3 ||| 694 81669 +en ||| , as well ||| 0.00195312 0.0296498 1.22445e-05 2.54709e-06 2.718 ||| 0-1 ||| 512 81669 +en ||| , as ||| 0.000577201 0.0296498 2.44891e-05 0.00146891 2.718 ||| 0-1 ||| 3465 81669 +en ||| , at China ||| 0.5 0.351161 1.22445e-05 5.23713e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| , at a ||| 0.0188679 0.351161 1.22445e-05 0.0003004 2.718 ||| 0-1 ||| 53 81669 +en ||| , at least ||| 0.0034965 0.351161 1.22445e-05 1.30891e-06 2.718 ||| 0-1 ||| 286 81669 +en ||| , at ||| 0.036129 0.351161 0.000342847 0.00746668 2.718 ||| 0-1 ||| 775 81669 +en ||| , became ||| 0.0217391 0.10951 1.22445e-05 0.000277011 2.718 ||| 0-1 ||| 46 81669 +en ||| , both in ||| 0.047619 0.717907 2.44891e-05 0.000170074 2.718 ||| 0-2 ||| 42 81669 +en ||| , building outward from ||| 1 0.0190577 1.22445e-05 1.94479e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| , buried in ||| 1 0.717907 1.22445e-05 1.29447e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| , but also great opportunities . in ||| 1 0.717907 1.22445e-05 2.03348e-18 2.718 ||| 0-6 ||| 1 81669 +en ||| , by ||| 0.0412844 0.065573 0.000330603 0.00253506 2.718 ||| 0-1 ||| 654 81669 +en ||| , companies , and shopping centers ||| 1 0.0625 1.22445e-05 4.21202e-18 2.718 ||| 0-4 ||| 1 81669 +en ||| , companies , and shopping ||| 1 0.0625 1.22445e-05 6.48002e-13 2.718 ||| 0-4 ||| 1 81669 +en ||| , compared ||| 0.010101 0.210938 1.22445e-05 0.000246044 2.718 ||| 0-1 ||| 99 81669 +en ||| , concluding in ||| 1 0.717907 1.22445e-05 1.29447e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| , during ||| 0.00769231 0.0947187 1.22445e-05 0.000300707 2.718 ||| 0-1 ||| 130 81669 +en ||| , effectively at ||| 0.166667 0.351161 1.22445e-05 8.72855e-07 2.718 ||| 0-2 ||| 6 81669 +en ||| , effectively ||| 0.0212766 0.0604839 1.22445e-05 5.46832e-05 2.718 ||| 0-1 ||| 47 81669 +en ||| , especially ||| 0.00127226 0.178642 1.22445e-05 0.000493885 2.718 ||| 0-1 ||| 786 81669 +en ||| , fits in ||| 1 0.717907 1.22445e-05 1.29447e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| , for example , is on ||| 0.333333 0.336652 1.22445e-05 2.02003e-11 2.718 ||| 0-5 ||| 3 81669 +en ||| , for the ||| 0.00497512 0.0255404 1.22445e-05 8.44338e-05 2.718 ||| 0-1 ||| 201 81669 +en ||| , for ||| 0.00351759 0.0255404 8.57118e-05 0.0015892 2.718 ||| 0-1 ||| 1990 81669 +en ||| , freedom and the rule of law ||| 1 0.0080355 1.22445e-05 1.63148e-18 2.718 ||| 0-5 ||| 1 81669 +en ||| , freedom and the rule of ||| 1 0.0080355 1.22445e-05 1.04649e-14 2.718 ||| 0-5 ||| 1 81669 +en ||| , giving serious consideration to ||| 0.333333 0.0189899 1.22445e-05 4.97555e-15 2.718 ||| 0-4 ||| 3 81669 +en ||| , have protestors ||| 0.166667 0.04 1.22445e-05 9.3862e-09 2.718 ||| 0-2 ||| 6 81669 +en ||| , however ||| 0.000762195 0.0105263 1.22445e-05 6.74297e-05 2.718 ||| 0-1 ||| 1312 81669 +en ||| , in a ||| 0.0114286 0.717907 2.44891e-05 0.00400609 2.718 ||| 0-1 ||| 175 81669 +en ||| , in board ||| 1 0.717907 1.22445e-05 8.40411e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| , in developing ||| 0.5 0.717907 1.22445e-05 1.48765e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| , in its ||| 0.027027 0.717907 1.22445e-05 0.000197875 2.718 ||| 0-1 ||| 37 81669 +en ||| , in order ||| 0.0238095 0.717907 1.22445e-05 8.01875e-05 2.718 ||| 0-1 ||| 42 81669 +en ||| , in the eyes ||| 0.25 0.717907 1.22445e-05 4.80894e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| , in the main , to jump ||| 1 0.717907 1.22445e-05 3.42332e-13 2.718 ||| 0-1 ||| 1 81669 +en ||| , in the main , to ||| 1 0.717907 1.22445e-05 7.52378e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| , in the main , ||| 1 0.717907 1.22445e-05 9.12082e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| , in the main ||| 0.5 0.717907 1.22445e-05 4.46507e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| , in the ||| 0.0165289 0.717907 9.79564e-05 0.00529037 2.718 ||| 0-1 ||| 484 81669 +en ||| , in ||| 0.0959397 0.717907 0.00358765 0.0995747 2.718 ||| 0-1 ||| 3054 81669 +en ||| , indeed , ||| 0.00387597 0.140941 1.22445e-05 0.000301173 2.718 ||| 0-1 ||| 258 81669 +en ||| , indeed ||| 0.00358423 0.140941 1.22445e-05 0.00147438 2.718 ||| 0-1 ||| 279 81669 +en ||| , into ||| 0.0967742 0.414384 3.67336e-05 0.0040532 2.718 ||| 0-1 ||| 31 81669 +en ||| , is on ||| 0.142857 0.336652 1.22445e-05 0.000228535 2.718 ||| 0-2 ||| 7 81669 +en ||| , letting the ||| 0.25 0.0006015 1.22445e-05 9.23961e-09 2.718 ||| 0-2 ||| 4 81669 +en ||| , means that , in ||| 1 0.717907 1.22445e-05 5.93578e-08 2.718 ||| 0-4 ||| 1 81669 +en ||| , more often ||| 0.125 0.0004911 1.22445e-05 3.05232e-09 2.718 ||| 0-1 ||| 8 81669 +en ||| , more ||| 0.00232019 0.0004911 1.22445e-05 1.09285e-05 2.718 ||| 0-1 ||| 431 81669 +en ||| , not in ||| 0.0434783 0.717907 1.22445e-05 0.00023409 2.718 ||| 0-2 ||| 23 81669 +en ||| , not lower ||| 0.25 0.0011915 1.22445e-05 5.17247e-09 2.718 ||| 0-1 ||| 4 81669 +en ||| , not ||| 0.00113186 0.0011915 2.44891e-05 4.19163e-05 2.718 ||| 0-1 ||| 1767 81669 +en ||| , on a ||| 0.037037 0.336652 1.22445e-05 0.000557834 2.718 ||| 0-1 ||| 27 81669 +en ||| , on the other ||| 0.0289855 0.336652 2.44891e-05 8.65949e-07 2.718 ||| 0-1 ||| 69 81669 +en ||| , on the ||| 0.0251256 0.336652 6.12227e-05 0.000736664 2.718 ||| 0-1 ||| 199 81669 +en ||| , on ||| 0.0532319 0.336652 0.000342847 0.0138654 2.718 ||| 0-1 ||| 526 81669 +en ||| , once again , to confirm ||| 1 0.0189899 1.22445e-05 9.48666e-16 2.718 ||| 0-4 ||| 1 81669 +en ||| , once again , to ||| 0.5 0.0189899 1.22445e-05 1.45949e-10 2.718 ||| 0-4 ||| 2 81669 +en ||| , once and for ||| 0.5 0.0255404 1.22445e-05 7.01932e-09 2.718 ||| 0-3 ||| 2 81669 +en ||| , over ||| 0.0166667 0.159665 2.44891e-05 0.00149626 2.718 ||| 0-1 ||| 120 81669 +en ||| , power , and influence . ||| 1 0.0828539 1.22445e-05 4.90655e-13 2.718 ||| 0-4 ||| 1 81669 +en ||| , power , and influence ||| 1 0.0828539 1.22445e-05 1.06713e-10 2.718 ||| 0-4 ||| 1 81669 +en ||| , reported in ||| 0.333333 0.717907 1.22445e-05 1.03458e-05 2.718 ||| 0-2 ||| 3 81669 +en ||| , resonates strongly in ||| 1 0.717907 1.22445e-05 1.34496e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| , risking them ||| 0.5 0.0185185 1.22445e-05 3.55384e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| , risking ||| 0.0769231 0.0185185 1.22445e-05 1.81801e-06 2.718 ||| 0-1 ||| 13 81669 +en ||| , schools , companies , and shopping ||| 1 0.0625 1.22445e-05 4.30195e-18 2.718 ||| 0-6 ||| 1 81669 +en ||| , seeking ||| 0.0555556 0.0324324 1.22445e-05 2.18774e-05 2.718 ||| 0-1 ||| 18 81669 +en ||| , study ||| 1 0.0027624 1.22445e-05 1.81801e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| , taken part in ||| 1 0.717907 1.22445e-05 2.99263e-08 2.718 ||| 0-3 ||| 1 81669 +en ||| , the ||| 6.26096e-05 0.0006015 1.22445e-05 0.000236913 2.718 ||| 0-1 ||| 15972 81669 +en ||| , there ||| 0.00446429 0.0077351 1.22445e-05 9.11251e-05 2.718 ||| 0-1 ||| 224 81669 +en ||| , therefore , ||| 0.00952381 0.0224337 1.22445e-05 1.22843e-05 2.718 ||| 0-1 ||| 105 81669 +en ||| , therefore ||| 0.00990099 0.0224337 1.22445e-05 6.01373e-05 2.718 ||| 0-1 ||| 101 81669 +en ||| , these days , ||| 0.25 0.005597 1.22445e-05 8.5693e-10 2.718 ||| 0-2 ||| 4 81669 +en ||| , these days ||| 0.25 0.005597 1.22445e-05 4.19507e-09 2.718 ||| 0-2 ||| 4 81669 +en ||| , third , American foreign policy has ||| 1 0.107143 1.22445e-05 1.77652e-18 2.718 ||| 0-1 ||| 1 81669 +en ||| , third , American foreign policy ||| 1 0.107143 1.22445e-05 5.35323e-16 2.718 ||| 0-1 ||| 1 81669 +en ||| , third , American foreign ||| 1 0.107143 1.22445e-05 1.71743e-12 2.718 ||| 0-1 ||| 1 81669 +en ||| , third , American ||| 1 0.107143 1.22445e-05 1.10162e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| , third , ||| 0.333333 0.107143 1.22445e-05 3.46205e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| , third ||| 0.25 0.107143 1.22445e-05 0.000169483 2.718 ||| 0-1 ||| 4 81669 +en ||| , this ||| 0.00203459 0.0034259 2.44891e-05 0.000100236 2.718 ||| 0-1 ||| 983 81669 +en ||| , to a ||| 0.102564 0.0189899 4.89782e-05 0.000142612 2.718 ||| 0-1 ||| 39 81669 +en ||| , to confirm ||| 1 0.0189899 1.22445e-05 2.30407e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| , to resolve ||| 1 0.0189899 1.22445e-05 2.07012e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| , to the ||| 0.00900901 0.0189899 1.22445e-05 0.00018833 2.718 ||| 0-1 ||| 111 81669 +en ||| , to ||| 0.00894701 0.0189899 0.000159179 0.00354473 2.718 ||| 0-1 ||| 1453 81669 +en ||| , under ||| 0.0159574 0.0957592 3.67336e-05 0.000382721 2.718 ||| 0-1 ||| 188 81669 +en ||| , unlike in ||| 0.0769231 0.717907 1.22445e-05 3.23618e-06 2.718 ||| 0-2 ||| 13 81669 +en ||| , viewed against ||| 1 0.0888521 1.22445e-05 2.67007e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| , was in a position to tell ||| 1 0.717907 1.22445e-05 2.40293e-14 2.718 ||| 0-2 ||| 1 81669 +en ||| , was in a position to ||| 1 0.717907 1.22445e-05 1.94727e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| , was in a position ||| 1 0.717907 1.22445e-05 2.36061e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| , was in a ||| 1 0.717907 1.22445e-05 1.51418e-05 2.718 ||| 0-2 ||| 1 81669 +en ||| , was in ||| 0.166667 0.717907 1.22445e-05 0.000376363 2.718 ||| 0-2 ||| 6 81669 +en ||| , we were in ||| 1 0.717907 1.22445e-05 5.11248e-07 2.718 ||| 0-3 ||| 1 81669 +en ||| , were publicly thrashed ||| 0.5 0.0943396 1.22445e-05 5.24553e-13 2.718 ||| 0-2 ||| 2 81669 +en ||| , were publicly ||| 0.5 0.0943396 1.22445e-05 8.07005e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| , when ||| 0.00241935 0.0709982 3.67336e-05 0.000794592 2.718 ||| 0-1 ||| 1240 81669 +en ||| , where there is ||| 0.5 0.21284 1.22445e-05 4.31936e-08 2.718 ||| 0-1 ||| 2 81669 +en ||| , where there ||| 1 0.21284 1.22445e-05 2.62059e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| , where ||| 0.00575816 0.21284 7.34673e-05 0.00122652 2.718 ||| 0-1 ||| 1042 81669 +en ||| , which is second only to ||| 1 0.119291 1.22445e-05 7.16745e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| , which is second only ||| 1 0.119291 1.22445e-05 8.68885e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| , which is second ||| 1 0.119291 1.22445e-05 8.01185e-09 2.718 ||| 0-3 ||| 1 81669 +en ||| , which requires taking into account ocean ||| 1 0.414384 1.22445e-05 2.33941e-22 2.718 ||| 0-4 ||| 1 81669 +en ||| , which requires taking into account ||| 1 0.414384 1.22445e-05 1.79955e-17 2.718 ||| 0-4 ||| 1 81669 +en ||| , which requires taking into ||| 1 0.414384 1.22445e-05 1.53939e-13 2.718 ||| 0-4 ||| 1 81669 +en ||| , with the ||| 0.00187617 0.0232439 1.22445e-05 4.8511e-05 2.718 ||| 0-1 ||| 533 81669 +en ||| , with ||| 0.00371402 0.0232439 0.000146935 0.000913069 2.718 ||| 0-1 ||| 3231 81669 +en ||| , within ||| 0.0379747 0.193123 3.67336e-05 0.000747222 2.718 ||| 0-1 ||| 79 81669 +en ||| , writing in ||| 0.25 0.717907 1.22445e-05 5.81516e-06 2.718 ||| 0-2 ||| 4 81669 +en ||| , ||| 2.11504e-05 1.99e-05 4.89782e-05 3.57e-05 2.718 ||| 0-0 ||| 189122 81669 +en ||| - as having ||| 1 0.0296498 1.22445e-05 1.65395e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| - as ||| 0.0333333 0.0296498 1.22445e-05 6.21087e-06 2.718 ||| 0-1 ||| 30 81669 +en ||| - of its ||| 1 0.0080355 1.22445e-05 1.36745e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| - of ||| 0.111111 0.0080355 1.22445e-05 6.88127e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| - thanks partly ||| 0.333333 0.419521 1.22445e-05 3.68153e-11 2.718 ||| 0-2 ||| 3 81669 +en ||| -- all ||| 0.01 0.0013515 1.22445e-05 4.93109e-07 2.718 ||| 0-1 ||| 100 81669 +en ||| -- as most likely ||| 1 0.0296498 1.22445e-05 1.15071e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| -- as most ||| 1 0.0296498 1.22445e-05 2.39433e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| -- as ||| 0.00578035 0.0296498 1.22445e-05 3.61463e-05 2.718 ||| 0-1 ||| 173 81669 +en ||| -- at ||| 0.02 0.351161 2.44891e-05 0.000183737 2.718 ||| 0-1 ||| 100 81669 +en ||| -- authored by ||| 0.5 0.065573 1.22445e-05 4.0548e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| -- be jeopardized ||| 0.5 0.265306 1.22445e-05 6.00951e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| -- for ||| 0.00492611 0.0255404 1.22445e-05 3.91064e-05 2.718 ||| 0-1 ||| 203 81669 +en ||| -- in Argentina and , perhaps , ||| 0.5 0.717907 1.22445e-05 5.20939e-15 2.718 ||| 0-1 ||| 2 81669 +en ||| -- in Argentina and , perhaps ||| 0.5 0.717907 1.22445e-05 2.55024e-14 2.718 ||| 0-1 ||| 2 81669 +en ||| -- in Argentina and , ||| 0.5 0.717907 1.22445e-05 2.45451e-10 2.718 ||| 0-1 ||| 2 81669 +en ||| -- in Argentina and ||| 0.5 0.717907 1.22445e-05 1.2016e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| -- in Argentina ||| 0.333333 0.717907 1.22445e-05 1.43097e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| -- in ||| 0.025 0.717907 9.79564e-05 0.00245029 2.718 ||| 0-1 ||| 320 81669 +en ||| -- into ||| 0.0588235 0.414384 1.22445e-05 9.97393e-05 2.718 ||| 0-1 ||| 17 81669 +en ||| -- often with ||| 0.142857 0.0232439 1.22445e-05 6.27542e-09 2.718 ||| 0-2 ||| 7 81669 +en ||| -- on ||| 0.0212766 0.336652 1.22445e-05 0.000341194 2.718 ||| 0-1 ||| 47 81669 +en ||| -- steadily declining ||| 0.111111 0.153623 1.22445e-05 6.18041e-11 2.718 ||| 0-2 ||| 9 81669 +en ||| -- will be determined in ||| 1 0.717907 1.22445e-05 1.13251e-11 2.718 ||| 0-4 ||| 1 81669 +en ||| . " In ||| 0.2 0.0917031 1.22445e-05 4.30315e-09 2.718 ||| 0-2 ||| 5 81669 +en ||| . ) In ||| 0.5 0.0917031 1.22445e-05 9.79261e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| . in ||| 0.0555556 0.717907 6.12227e-05 0.00224131 2.718 ||| 0-1 ||| 90 81669 +en ||| . on ||| 0.111111 0.336652 1.22445e-05 0.000312095 2.718 ||| 0-1 ||| 9 81669 +en ||| . when asked , " What ||| 1 0.0709982 1.22445e-05 7.31745e-17 2.718 ||| 0-1 ||| 1 81669 +en ||| . when asked , " ||| 1 0.0709982 1.22445e-05 2.25152e-12 2.718 ||| 0-1 ||| 1 81669 +en ||| . when asked , ||| 1 0.0709982 1.22445e-05 4.50836e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| . when asked ||| 1 0.0709982 1.22445e-05 2.20705e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| . when ||| 0.1 0.0709982 1.22445e-05 1.78854e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| . ||| 1.88275e-05 2e-05 3.67336e-05 2.68e-05 2.718 ||| 0-0 ||| 159341 81669 +en ||| 1787 ||| 0.2 0.142857 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 5 81669 +en ||| 1973 to 1990 ||| 0.25 0.0189899 1.22445e-05 7.33168e-12 2.718 ||| 0-1 ||| 4 81669 +en ||| 1973 to ||| 0.25 0.0189899 1.22445e-05 2.2559e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| 1994 as ||| 0.2 0.0296498 1.22445e-05 9.3483e-08 2.718 ||| 0-1 ||| 5 81669 +en ||| 350,000 serve in ||| 1 0.717907 1.22445e-05 6.58419e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| 40 years in power ||| 0.333333 0.717907 1.22445e-05 1.66834e-12 2.718 ||| 0-2 ||| 3 81669 +en ||| 40 years in ||| 0.166667 0.717907 1.22445e-05 3.51896e-09 2.718 ||| 0-2 ||| 6 81669 +en ||| 45 ; & # 45 ; to ||| 0.333333 0.0189899 1.22445e-05 9.78245e-20 2.718 ||| 0-6 ||| 3 81669 +en ||| 45 ; to ||| 0.5 0.0189899 1.22445e-05 3.57647e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| 47th ||| 1 1 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| : in ||| 0.0309278 0.717907 3.67336e-05 0.00020259 2.718 ||| 0-1 ||| 97 81669 +en ||| : we make them . ||| 1 2e-05 1.22445e-05 6.65478e-17 2.718 ||| 0-4 ||| 1 81669 +en ||| ; & # 45 ; to ||| 0.333333 0.0189899 1.22445e-05 8.41501e-17 2.718 ||| 0-5 ||| 3 81669 +en ||| ; D ||| 0.0222222 0.0380952 1.22445e-05 6.32925e-08 2.718 ||| 0-1 ||| 45 81669 +en ||| ; to ||| 0.0344828 0.0189899 1.22445e-05 3.07653e-05 2.718 ||| 0-1 ||| 29 81669 +en ||| A ||| 0.00625 0.0046512 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 160 81669 +en ||| Action in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| Afghan poppy growers ) into cultivating ||| 0.5 0.414384 1.22445e-05 3.22036e-25 2.718 ||| 0-4 ||| 2 81669 +en ||| Afghan poppy growers ) into ||| 0.5 0.414384 1.22445e-05 4.95441e-20 2.718 ||| 0-4 ||| 2 81669 +en ||| American ||| 0.000378931 0.0052649 1.22445e-05 0.0001428 2.718 ||| 0-0 ||| 2639 81669 +en ||| Argentina , unlike in ||| 1 0.717907 1.22445e-05 1.88993e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| Armstrong ||| 0.047619 0.0416667 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 21 81669 +en ||| Asian in ||| 1 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| Authority ( PA ) in 1994 ||| 0.5 0.717907 1.22445e-05 1.28056e-21 2.718 ||| 0-4 ||| 2 81669 +en ||| Authority ( PA ) in ||| 0.5 0.717907 1.22445e-05 9.85046e-17 2.718 ||| 0-4 ||| 2 81669 +en ||| Bird 's ||| 1 0.0068465 1.22445e-05 2.19791e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| Brazil was born in ||| 0.333333 0.717907 1.22445e-05 5.59761e-12 2.718 ||| 0-3 ||| 3 81669 +en ||| Britain in ||| 0.125 0.717907 1.22445e-05 9.81267e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| British ||| 0.00127714 0.0013477 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 783 81669 +en ||| CO2 , which is second only to ||| 1 0.119291 1.22445e-05 3.26119e-17 2.718 ||| 0-4 ||| 1 81669 +en ||| CO2 , which is second only ||| 1 0.119291 1.22445e-05 3.95343e-16 2.718 ||| 0-4 ||| 1 81669 +en ||| CO2 , which is second ||| 1 0.119291 1.22445e-05 3.64539e-13 2.718 ||| 0-4 ||| 1 81669 +en ||| Cambridge : in ||| 1 0.717907 1.22445e-05 3.95051e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| Chief Economist at ||| 0.25 0.351161 1.22445e-05 9.26616e-12 2.718 ||| 0-2 ||| 4 81669 +en ||| China in taking ||| 0.333333 0.717907 1.22445e-05 1.66543e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| China in ||| 0.0229885 0.717907 2.44891e-05 0.000341908 2.718 ||| 0-1 ||| 87 81669 +en ||| China looms ever larger in ||| 1 0.717907 1.22445e-05 2.58672e-16 2.718 ||| 0-4 ||| 1 81669 +en ||| China really has ||| 1 0.169014 1.22445e-05 3.23965e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| China really ||| 0.2 0.169014 1.22445e-05 9.76209e-07 2.718 ||| 0-1 ||| 5 81669 +en ||| Coaster ||| 0.25 0.666667 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 8 81669 +en ||| Court rulings in ||| 1 0.717907 1.22445e-05 1.23572e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| Cuba in ||| 0.2 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| Cup in ||| 0.5 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| Cup ||| 0.0181818 0.011236 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 55 81669 +en ||| D ||| 0.0222222 0.0380952 2.44891e-05 3.57e-05 2.718 ||| 0-0 ||| 90 81669 +en ||| DNA building block ||| 0.25 0.0125 1.22445e-05 1.1725e-13 2.718 ||| 0-0 ||| 4 81669 +en ||| DNA building ||| 0.25 0.0125 1.22445e-05 3.00642e-09 2.718 ||| 0-0 ||| 4 81669 +en ||| DNA ||| 0.00719424 0.0125 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 139 81669 +en ||| Degradation in ||| 0.5 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| ECB is constrained by its ||| 1 0.065573 1.22445e-05 4.11647e-16 2.718 ||| 0-3 ||| 1 81669 +en ||| ECB is constrained by ||| 1 0.065573 1.22445e-05 2.07149e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| ECB would raise interest rates to curb ||| 1 0.0189899 1.22445e-05 1.78341e-25 2.718 ||| 0-5 ||| 1 81669 +en ||| ECB would raise interest rates to ||| 1 0.0189899 1.22445e-05 2.74371e-20 2.718 ||| 0-5 ||| 1 81669 +en ||| EU 's ||| 0.00460829 0.0068465 1.22445e-05 8.78488e-07 2.718 ||| 0-1 ||| 217 81669 +en ||| EU in the ||| 0.125 0.717907 1.22445e-05 6.72851e-06 2.718 ||| 0-1 ||| 8 81669 +en ||| EU in ||| 0.0294118 0.717907 1.22445e-05 0.000126643 2.718 ||| 0-1 ||| 34 81669 +en ||| EU-wide ||| 0.03125 0.091954 1.22445e-05 7.14e-05 2.718 ||| 0-0 ||| 32 81669 +en ||| East 's ||| 0.333333 0.0311542 1.22445e-05 8.47494e-06 2.718 ||| 0-0 ||| 3 81669 +en ||| East ||| 0.0440678 0.0311542 0.000318358 0.0005442 2.718 ||| 0-0 ||| 590 81669 +en ||| Economist at ||| 0.25 0.351161 1.22445e-05 2.37594e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| Environmental Transformation Fund ||| 0.25 0.333333 1.22445e-05 1.01353e-14 2.718 ||| 0-1 ||| 4 81669 +en ||| Environmental Transformation ||| 0.25 0.333333 1.22445e-05 1.7355e-10 2.718 ||| 0-1 ||| 4 81669 +en ||| Europe meeting in ||| 1 0.717907 1.22445e-05 1.82501e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| Europe with ||| 0.0588235 0.0232439 1.22445e-05 2.14823e-06 2.718 ||| 0-1 ||| 17 81669 +en ||| Facebook ||| 0.016129 0.05 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 62 81669 +en ||| Facility on a ||| 0.5 0.336652 1.22445e-05 1.06503e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| Facility on ||| 0.5 0.336652 1.22445e-05 2.64723e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| France at ||| 1 0.351161 1.22445e-05 3.56025e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| Friends of Europe meeting in ||| 1 0.717907 1.22445e-05 3.2048e-15 2.718 ||| 0-4 ||| 1 81669 +en ||| Fund has regularly benefited in ||| 1 0.717907 1.22445e-05 1.11762e-16 2.718 ||| 0-4 ||| 1 81669 +en ||| Gallipoli ||| 1 1 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| HK dollar ||| 0.333333 0.214286 1.22445e-05 3.48132e-09 2.718 ||| 0-0 ||| 3 81669 +en ||| HK ||| 0.2 0.214286 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 5 81669 +en ||| Hezbollah in ||| 0.0454545 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 22 81669 +en ||| I am at ||| 1 0.351161 1.22445e-05 6.18441e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| I did in ||| 1 0.717907 1.22445e-05 9.69921e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| I have in ||| 0.2 0.717907 1.22445e-05 3.12175e-06 2.718 ||| 0-2 ||| 5 81669 +en ||| I serve on ||| 0.5 0.336652 1.22445e-05 1.74958e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| I ||| 0.000648929 0.0021333 1.22445e-05 7.14e-05 2.718 ||| 0-0 ||| 1541 81669 +en ||| IMF financing to prevent a ||| 0.166667 0.0189899 1.22445e-05 3.06295e-17 2.718 ||| 0-2 ||| 6 81669 +en ||| IMF financing to prevent ||| 0.166667 0.0189899 1.22445e-05 7.61322e-16 2.718 ||| 0-2 ||| 6 81669 +en ||| IMF financing to ||| 0.166667 0.0189899 1.22445e-05 5.85632e-11 2.718 ||| 0-2 ||| 6 81669 +en ||| In ||| 0.0344828 0.0917031 8.57118e-05 0.0001874 2.718 ||| 0-0 ||| 203 81669 +en ||| Indian ||| 0.00210526 0.0042553 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 475 81669 +en ||| Iran , for example , is on ||| 1 0.336652 1.22445e-05 1.7049e-15 2.718 ||| 0-6 ||| 1 81669 +en ||| Iraq later in ||| 1 0.717907 1.22445e-05 1.11003e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| Iraq within ||| 0.25 0.193123 1.22445e-05 4.75174e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| Iraqi ||| 0.00452489 0.0079365 2.44891e-05 2.68e-05 2.718 ||| 0-0 ||| 442 81669 +en ||| Jacques Servan _ ||| 0.5 0.0352941 1.22445e-05 2.2646e-15 2.718 ||| 0-2 ||| 2 81669 +en ||| Japan 's ||| 0.00390625 0.0068465 1.22445e-05 9.44425e-07 2.718 ||| 0-1 ||| 256 81669 +en ||| Kremlin 's ||| 0.0212766 0.0068465 1.22445e-05 6.59373e-08 2.718 ||| 0-1 ||| 47 81669 +en ||| Laboratory in ||| 0.2 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| Left to ||| 0.333333 0.0189899 1.22445e-05 2.2559e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| MDGs ) in ||| 1 0.717907 1.22445e-05 7.20205e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| MacAskill , in ||| 1 0.717907 1.22445e-05 6.47236e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| Man ||| 0.0408163 0.0363636 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 49 81669 +en ||| Middle East ||| 0.000881834 0.0311542 1.22445e-05 4.94678e-08 2.718 ||| 0-1 ||| 1134 81669 +en ||| Misguided ||| 0.5 0.166667 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| Nigerians everywhere might well ||| 0.166667 0.255968 1.22445e-05 2.29397e-14 2.718 ||| 0-1 ||| 6 81669 +en ||| Nigerians everywhere might ||| 0.166667 0.255968 1.22445e-05 1.32294e-11 2.718 ||| 0-1 ||| 6 81669 +en ||| Nigerians everywhere ||| 0.166667 0.255968 1.22445e-05 2.23847e-08 2.718 ||| 0-1 ||| 6 81669 +en ||| Nordic " about ||| 1 0.0371521 1.22445e-05 7.96447e-11 2.718 ||| 0-2 ||| 1 81669 +en ||| One ||| 0.0215054 0.0212766 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 93 81669 +en ||| PA ) in 1994 ||| 0.333333 0.717907 1.22445e-05 9.36266e-14 2.718 ||| 0-2 ||| 3 81669 +en ||| PA ) in ||| 0.333333 0.717907 1.22445e-05 7.20205e-09 2.718 ||| 0-2 ||| 3 81669 +en ||| PiS ) in ||| 1 0.717907 1.22445e-05 3.60102e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| President in ||| 0.0909091 0.717907 1.22445e-05 5.06476e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| Room at the Bottom ||| 1 0.351161 1.22445e-05 8.20512e-14 2.718 ||| 0-1 ||| 1 81669 +en ||| Room at the ||| 1 0.351161 1.22445e-05 1.26233e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| Room at ||| 1 0.351161 1.22445e-05 2.37594e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| Secretariat in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| Servan _ ||| 0.5 0.0352941 1.22445e-05 1.742e-10 2.718 ||| 0-1 ||| 2 81669 +en ||| Setting on ||| 1 0.336652 1.22445e-05 4.41205e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| States , both in ||| 1 0.717907 1.22445e-05 4.859e-08 2.718 ||| 0-3 ||| 1 81669 +en ||| Summit ||| 0.00757576 0.00625 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 132 81669 +en ||| Technology ||| 0.0416667 0.08 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 24 81669 +en ||| Thailand ||| 0.00952381 0.0108696 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 210 81669 +en ||| Transformation Fund ||| 0.25 0.333333 1.22445e-05 5.1976e-10 2.718 ||| 0-0 ||| 4 81669 +en ||| Transformation ||| 0.166667 0.333333 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 6 81669 +en ||| Turkey in ||| 0.0909091 0.717907 1.22445e-05 7.59958e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| US and around the ||| 0.333333 0.0001307 1.22445e-05 3.84874e-12 2.718 ||| 0-1 ||| 3 81669 +en ||| US and around ||| 0.333333 0.0001307 1.22445e-05 7.24407e-11 2.718 ||| 0-1 ||| 3 81669 +en ||| US and ||| 0.00196078 0.0001307 1.22445e-05 1.3772e-07 2.718 ||| 0-1 ||| 510 81669 +en ||| US engagement ||| 0.2 0.0204082 1.22445e-05 4.59066e-08 2.718 ||| 0-1 ||| 5 81669 +en ||| US equities in ||| 1 0.717907 1.22445e-05 4.0744e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| US on ||| 0.0769231 0.336652 1.22445e-05 8.72839e-05 2.718 ||| 0-1 ||| 13 81669 +en ||| United States , both in ||| 1 0.717907 1.22445e-05 1.7988e-11 2.718 ||| 0-4 ||| 1 81669 +en ||| Washington-based ||| 0.2 0.333333 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 5 81669 +en ||| When on ||| 0.25 0.336652 1.22445e-05 8.8241e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| Yanukovich in Ukraine and congratulated him twice ||| 1 0.717907 1.22445e-05 4.87438e-25 2.718 ||| 0-1 ||| 1 81669 +en ||| Yanukovich in Ukraine and congratulated him ||| 1 0.717907 1.22445e-05 1.24984e-20 2.718 ||| 0-1 ||| 1 81669 +en ||| Yanukovich in Ukraine and congratulated ||| 1 0.717907 1.22445e-05 1.79859e-17 2.718 ||| 0-1 ||| 1 81669 +en ||| Yanukovich in Ukraine and ||| 1 0.717907 1.22445e-05 2.76706e-12 2.718 ||| 0-1 ||| 1 81669 +en ||| Yanukovich in Ukraine ||| 1 0.717907 1.22445e-05 3.29526e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| Yanukovich in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| Yes ||| 0.00529101 0.0215517 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 189 81669 +en ||| YouTube ||| 0.1 0.2 1.22445e-05 3.57e-05 2.718 ||| 0-0 ||| 10 81669 +en ||| _ Jacques Servan _ ||| 0.5 0.0352941 1.22445e-05 1.91132e-19 2.718 ||| 0-3 ||| 2 81669 +en ||| _ ||| 0.047619 0.0352941 2.44891e-05 2.68e-05 2.718 ||| 0-0 ||| 42 81669 +en ||| a Friends of Europe meeting in ||| 1 0.717907 1.22445e-05 1.28935e-16 2.718 ||| 0-5 ||| 1 81669 +en ||| a butter shortage . " In ||| 1 0.0917031 1.22445e-05 7.30325e-20 2.718 ||| 0-5 ||| 1 81669 +en ||| a culture in ||| 0.142857 0.717907 1.22445e-05 1.2728e-06 2.718 ||| 0-2 ||| 7 81669 +en ||| a day in ||| 0.333333 0.717907 1.22445e-05 5.22259e-06 2.718 ||| 0-2 ||| 3 81669 +en ||| a decade of ||| 0.0185185 0.0080355 1.22445e-05 1.45844e-08 2.718 ||| 0-2 ||| 54 81669 +en ||| a deep chord with ||| 1 0.0232439 1.22445e-05 1.29048e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| a fall in ||| 0.0416667 0.717907 1.22445e-05 4.45774e-06 2.718 ||| 0-2 ||| 24 81669 +en ||| a fellow ||| 0.125 0.0011873 1.22445e-05 4.63256e-08 2.718 ||| 0-0 ||| 8 81669 +en ||| a force in ||| 0.2 0.717907 1.22445e-05 5.73053e-06 2.718 ||| 0-2 ||| 5 81669 +en ||| a hard look at ||| 1 0.351161 1.22445e-05 3.08136e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| a large portion of ||| 0.25 0.0080355 1.22445e-05 6.76508e-13 2.718 ||| 0-3 ||| 4 81669 +en ||| a large-scale exercise ||| 0.111111 0.148052 1.22445e-05 3.9893e-10 2.718 ||| 0-1 ||| 9 81669 +en ||| a large-scale ||| 0.1 0.148052 1.22445e-05 2.0458e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| a largely ||| 0.2 0.285296 1.22445e-05 0.000139987 2.718 ||| 0-1 ||| 5 81669 +en ||| a long way toward determining ||| 0.5 0.0354374 1.22445e-05 2.54199e-16 2.718 ||| 0-3 ||| 2 81669 +en ||| a long way toward ||| 0.181818 0.0354374 2.44891e-05 1.30359e-11 2.718 ||| 0-3 ||| 11 81669 +en ||| a panel discussion at ||| 1 0.351161 1.22445e-05 2.48531e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| a part of ||| 0.02 0.0080355 1.22445e-05 1.97771e-07 2.718 ||| 0-2 ||| 50 81669 +en ||| a period ||| 0.00746269 0.0011873 1.22445e-05 1.02002e-07 2.718 ||| 0-0 ||| 134 81669 +en ||| a place at ||| 0.25 0.351161 1.22445e-05 1.87192e-06 2.718 ||| 0-2 ||| 4 81669 +en ||| a point of ||| 0.1 0.0080355 1.22445e-05 1.56133e-07 2.718 ||| 0-2 ||| 10 81669 +en ||| a project in ||| 0.5 0.717907 1.22445e-05 1.14532e-06 2.718 ||| 0-2 ||| 2 81669 +en ||| a re-bar plant in the ||| 1 0.717907 1.22445e-05 1.76091e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| a re-bar plant in ||| 1 0.717907 1.22445e-05 3.31437e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| a result of ||| 0.00487805 0.0080355 1.22445e-05 1.33215e-07 2.718 ||| 0-2 ||| 205 81669 +en ||| a say in ||| 0.111111 0.717907 1.22445e-05 7.89566e-06 2.718 ||| 0-2 ||| 9 81669 +en ||| a special concern to ||| 1 0.0189899 1.22445e-05 4.20716e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| a stake in ||| 0.0333333 0.717907 1.22445e-05 1.52775e-06 2.718 ||| 0-2 ||| 30 81669 +en ||| a stand on ||| 0.5 0.336652 1.22445e-05 7.80205e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| a staple ||| 0.2 0.0909091 1.22445e-05 7.1613e-07 2.718 ||| 0-1 ||| 5 81669 +en ||| a surge in ||| 0.0454545 0.717907 1.22445e-05 1.01981e-06 2.718 ||| 0-2 ||| 22 81669 +en ||| a vote in ||| 0.142857 0.717907 1.22445e-05 2.42008e-06 2.718 ||| 0-2 ||| 7 81669 +en ||| a way to ||| 0.01 0.0189899 1.22445e-05 1.06098e-06 2.718 ||| 0-2 ||| 100 81669 +en ||| a year in ||| 0.0416667 0.717907 1.22445e-05 9.2979e-06 2.718 ||| 0-2 ||| 24 81669 +en ||| a ||| 0.000915192 0.0011873 0.000734673 0.0007138 2.718 ||| 0-0 ||| 65560 81669 +en ||| abandoning research into ||| 0.25 0.414384 1.22445e-05 2.00943e-11 2.718 ||| 0-2 ||| 4 81669 +en ||| abide by ||| 0.0526316 0.065573 1.22445e-05 8.06669e-08 2.718 ||| 0-1 ||| 19 81669 +en ||| able to ||| 0.00239808 0.0189899 1.22445e-05 7.21195e-06 2.718 ||| 0-1 ||| 417 81669 +en ||| about : ||| 1 0.0371521 1.22445e-05 1.01967e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| about Ai ||| 1 0.0371521 1.22445e-05 3.18955e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| about a ||| 0.00862069 0.0371521 1.22445e-05 9.87092e-05 2.718 ||| 0-0 ||| 116 81669 +en ||| about in ||| 0.666667 0.717907 4.89782e-05 0.000591977 2.718 ||| 0-1 ||| 6 81669 +en ||| about it ||| 0.0144928 0.0371521 1.22445e-05 6.53281e-05 2.718 ||| 0-0 ||| 69 81669 +en ||| about taking part in ||| 0.25 0.717907 1.22445e-05 1.77913e-10 2.718 ||| 0-3 ||| 4 81669 +en ||| about the ||| 0.00168067 0.0371521 2.44891e-05 0.000130353 2.718 ||| 0-0 ||| 1190 81669 +en ||| about these ||| 0.05 0.0371521 1.22445e-05 1.88012e-06 2.718 ||| 0-0 ||| 20 81669 +en ||| about what ||| 0.00952381 0.0371521 1.22445e-05 2.42185e-06 2.718 ||| 0-0 ||| 105 81669 +en ||| about ||| 0.0219838 0.0371521 0.00153057 0.0024535 2.718 ||| 0-0 ||| 5686 81669 +en ||| abroad in ||| 0.25 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| abroad ||| 0.00534759 0.250879 2.44891e-05 0.0019093 2.718 ||| 0-0 ||| 374 81669 +en ||| absence from ||| 0.142857 0.0190577 1.22445e-05 1.12737e-07 2.718 ||| 0-1 ||| 7 81669 +en ||| absent in ||| 0.142857 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| absent ||| 0.00952381 0.0542636 1.22445e-05 6.25e-05 2.718 ||| 0-0 ||| 105 81669 +en ||| absolutely ||| 0.0163934 0.1125 1.22445e-05 8.03e-05 2.718 ||| 0-0 ||| 61 81669 +en ||| accession in ||| 1 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| according to ||| 0.00269906 0.0189899 2.44891e-05 1.01342e-06 2.718 ||| 0-1 ||| 741 81669 +en ||| accordingly . ||| 0.0357143 0.286822 1.22445e-05 1.51777e-06 2.718 ||| 0-0 ||| 28 81669 +en ||| accordingly ||| 0.0361446 0.286822 3.67336e-05 0.0003301 2.718 ||| 0-0 ||| 83 81669 +en ||| account in ||| 0.166667 0.717907 1.22445e-05 5.69846e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| accounts for ||| 0.0078125 0.0255404 1.22445e-05 4.54346e-07 2.718 ||| 0-1 ||| 128 81669 +en ||| achieved in ||| 0.037037 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 27 81669 +en ||| achieved over ||| 0.2 0.159665 1.22445e-05 3.80895e-07 2.718 ||| 0-1 ||| 5 81669 +en ||| achievement in ||| 0.2 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| acknowledging this ||| 0.333333 0.0425532 1.22445e-05 3.53722e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| acknowledging ||| 0.0363636 0.0425532 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 55 81669 +en ||| across in ||| 0.5 0.717907 1.22445e-05 6.33217e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| across the US and around the ||| 1 0.0001307 1.22445e-05 2.65622e-17 2.718 ||| 0-3 ||| 1 81669 +en ||| across the US and around ||| 1 0.0001307 1.22445e-05 4.99952e-16 2.718 ||| 0-3 ||| 1 81669 +en ||| across the US and ||| 1 0.0001307 1.22445e-05 9.50479e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| across the ||| 0.0102828 0.28681 4.89782e-05 0.000177283 2.718 ||| 0-0 ||| 389 81669 +en ||| across ||| 0.103939 0.28681 0.00116323 0.0033368 2.718 ||| 0-0 ||| 914 81669 +en ||| active ||| 0.00380228 0.003861 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 263 81669 +en ||| activities in ||| 0.111111 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| activity in ||| 0.333333 0.717907 2.44891e-05 3.4805e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| actors in ||| 0.2 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| actually being made ||| 1 0.218872 1.22445e-05 3.3391e-09 2.718 ||| 0-0 ||| 1 81669 +en ||| actually being ||| 0.333333 0.218872 1.22445e-05 3.02455e-06 2.718 ||| 0-0 ||| 3 81669 +en ||| actually step up ||| 0.5 0.218872 1.22445e-05 1.54756e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| actually step ||| 0.5 0.218872 1.22445e-05 4.95426e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| actually ||| 0.0136452 0.218872 8.57118e-05 0.0020074 2.718 ||| 0-0 ||| 513 81669 +en ||| ad in ||| 0.5 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| adding it all up ||| 0.5 0.008547 1.22445e-05 1.91811e-12 2.718 ||| 0-0 ||| 2 81669 +en ||| adding it all ||| 0.5 0.008547 1.22445e-05 6.14052e-10 2.718 ||| 0-0 ||| 2 81669 +en ||| adding it ||| 0.333333 0.008547 1.22445e-05 2.36976e-07 2.718 ||| 0-0 ||| 3 81669 +en ||| adding ||| 0.0108696 0.008547 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 92 81669 +en ||| adequate economic incentives . in ||| 1 0.717907 1.22445e-05 2.12165e-16 2.718 ||| 0-4 ||| 1 81669 +en ||| adjust accordingly . ||| 0.333333 0.286822 1.22445e-05 2.95965e-11 2.718 ||| 0-1 ||| 3 81669 +en ||| adjust accordingly ||| 0.333333 0.286822 1.22445e-05 6.43695e-09 2.718 ||| 0-1 ||| 3 81669 +en ||| adjusted downward ||| 0.166667 0.0185185 1.22445e-05 2.314e-10 2.718 ||| 0-0 ||| 6 81669 +en ||| adjusted ||| 0.0333333 0.0185185 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 30 81669 +en ||| adverse among all the ||| 1 0.0289855 1.22445e-05 3.83265e-13 2.718 ||| 0-1 ||| 1 81669 +en ||| adverse among all ||| 1 0.0289855 1.22445e-05 7.21377e-12 2.718 ||| 0-1 ||| 1 81669 +en ||| adverse among ||| 1 0.0289855 1.22445e-05 2.78395e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| advised to ||| 0.4 0.146342 2.44891e-05 4.41323e-06 2.718 ||| 0-0 ||| 5 81669 +en ||| advised ||| 0.130435 0.146342 3.67336e-05 5.35e-05 2.718 ||| 0-0 ||| 23 81669 +en ||| affairs ||| 0.00315457 0.0023364 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 317 81669 +en ||| after twenty ||| 0.5 0.0037224 1.22445e-05 1.6237e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| after ||| 0.00128077 0.0037224 0.000110201 0.0001249 2.718 ||| 0-0 ||| 7027 81669 +en ||| again , to confirm ||| 1 0.0189899 1.22445e-05 8.82921e-12 2.718 ||| 0-2 ||| 1 81669 +en ||| again , to ||| 1 0.0189899 1.22445e-05 1.35834e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| again . ) In ||| 1 0.0917031 1.22445e-05 3.75253e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| again heating up in ||| 1 0.717907 1.22445e-05 1.13782e-11 2.718 ||| 0-3 ||| 1 81669 +en ||| again in ||| 0.0333333 0.717907 1.22445e-05 0.000186797 2.718 ||| 0-1 ||| 30 81669 +en ||| against a ||| 0.00854701 0.0888521 1.22445e-05 0.000115578 2.718 ||| 0-0 ||| 117 81669 +en ||| against the ||| 0.00137174 0.0888521 1.22445e-05 0.000152631 2.718 ||| 0-0 ||| 729 81669 +en ||| against ubiquitous terrorist networks capable ||| 1 0.0487805 1.22445e-05 3.41484e-22 2.718 ||| 0-1 ||| 1 81669 +en ||| against ubiquitous terrorist networks ||| 1 0.0487805 1.22445e-05 2.28571e-18 2.718 ||| 0-1 ||| 1 81669 +en ||| against ubiquitous terrorist ||| 1 0.0487805 1.22445e-05 1.17216e-13 2.718 ||| 0-1 ||| 1 81669 +en ||| against ubiquitous ||| 1 0.0487805 1.22445e-05 6.01106e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| against ||| 0.00701187 0.0888521 0.000318358 0.0028728 2.718 ||| 0-0 ||| 3708 81669 +en ||| age in ||| 0.142857 0.717907 1.22445e-05 4.1142e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| age when ||| 0.1 0.0709982 1.22445e-05 3.28308e-07 2.718 ||| 0-1 ||| 10 81669 +en ||| agents in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| aggravate sentiment in ||| 0.333333 0.717907 1.22445e-05 6.17862e-11 2.718 ||| 0-2 ||| 3 81669 +en ||| aggression in ||| 0.166667 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| ago at ||| 0.5 0.351161 1.22445e-05 1.9702e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| ago in ||| 0.5 0.717907 1.22445e-05 0.000262744 2.718 ||| 0-1 ||| 2 81669 +en ||| agree ||| 0.00668896 0.112621 2.44891e-05 0.0005175 2.718 ||| 0-0 ||| 299 81669 +en ||| agreed , ||| 0.111111 0.0562347 1.22445e-05 4.19163e-05 2.718 ||| 0-0 ||| 9 81669 +en ||| agreed ||| 0.00333333 0.0562347 1.22445e-05 0.0002052 2.718 ||| 0-0 ||| 300 81669 +en ||| agreeing to ||| 0.0555556 0.0189899 1.22445e-05 3.38385e-07 2.718 ||| 0-1 ||| 18 81669 +en ||| agreement was ||| 0.125 0.0004722 1.22445e-05 6.6019e-09 2.718 ||| 0-1 ||| 8 81669 +en ||| ahead ||| 0.0057971 0.0107143 2.44891e-05 5.35e-05 2.718 ||| 0-0 ||| 345 81669 +en ||| aid at all ||| 0.25 0.351161 1.22445e-05 6.76271e-09 2.718 ||| 0-1 ||| 4 81669 +en ||| aid at ||| 0.25 0.351161 1.22445e-05 2.60988e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| aim at in ||| 1 0.717907 1.22445e-05 1.31509e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| ain 't gonna make it ||| 1 0.333333 1.22445e-05 8.96728e-19 2.718 ||| 0-0 ||| 1 81669 +en ||| ain 't gonna make ||| 1 0.333333 1.22445e-05 3.3678e-17 2.718 ||| 0-0 ||| 1 81669 +en ||| ain 't gonna ||| 1 0.333333 1.22445e-05 2.55466e-14 2.718 ||| 0-0 ||| 1 81669 +en ||| ain 't ||| 1 0.333333 1.22445e-05 3.93024e-09 2.718 ||| 0-0 ||| 1 81669 +en ||| ain ||| 1 0.333333 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| ala ||| 1 1 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| albeit belatedly , was in a position ||| 1 0.717907 1.22445e-05 3.98943e-19 2.718 ||| 0-4 ||| 1 81669 +en ||| albeit belatedly , was in a ||| 1 0.717907 1.22445e-05 2.55897e-15 2.718 ||| 0-4 ||| 1 81669 +en ||| albeit belatedly , was in ||| 1 0.717907 1.22445e-05 6.36053e-14 2.718 ||| 0-4 ||| 1 81669 +en ||| all about ||| 0.111111 0.0371521 3.67336e-05 6.35751e-06 2.718 ||| 0-1 ||| 27 81669 +en ||| all but ||| 0.0227273 0.0001905 1.22445e-05 1.15568e-07 2.718 ||| 0-1 ||| 44 81669 +en ||| all in all ||| 0.0909091 0.717907 1.22445e-05 3.27299e-06 2.718 ||| 0-1 ||| 11 81669 +en ||| all in ||| 0.194444 0.717907 8.57118e-05 0.00126312 2.718 ||| 0-1 ||| 36 81669 +en ||| all now in ||| 1 0.717907 1.22445e-05 1.87851e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| all the more difficult ||| 0.142857 0.0004911 1.22445e-05 1.38689e-12 2.718 ||| 0-2 ||| 7 81669 +en ||| all the more ||| 0.0147059 0.0004911 1.22445e-05 7.36531e-09 2.718 ||| 0-2 ||| 68 81669 +en ||| all wrapped into ||| 0.25 0.414384 1.22445e-05 3.342e-10 2.718 ||| 0-2 ||| 4 81669 +en ||| all ||| 0.000478297 0.0013515 4.89782e-05 9.81e-05 2.718 ||| 0-0 ||| 8363 81669 +en ||| alleged in ||| 1 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| alone in its estrangement from the United ||| 1 0.717907 1.22445e-05 5.0416e-20 2.718 ||| 0-1 ||| 1 81669 +en ||| alone in its estrangement from the ||| 1 0.717907 1.22445e-05 1.36186e-16 2.718 ||| 0-1 ||| 1 81669 +en ||| alone in its estrangement from ||| 1 0.717907 1.22445e-05 2.56328e-15 2.718 ||| 0-1 ||| 1 81669 +en ||| alone in its estrangement ||| 1 0.717907 1.22445e-05 1.55397e-12 2.718 ||| 0-1 ||| 1 81669 +en ||| alone in its ||| 1 0.717907 1.22445e-05 2.39073e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| alone in ||| 0.015625 0.717907 1.22445e-05 0.000120306 2.718 ||| 0-1 ||| 64 81669 +en ||| along with all ||| 0.333333 0.0435435 1.22445e-05 2.54241e-09 2.718 ||| 0-0 ||| 3 81669 +en ||| along with ||| 0.00478469 0.0435435 1.22445e-05 9.81171e-07 2.718 ||| 0-0 ||| 209 81669 +en ||| along ||| 0.0331263 0.0435435 0.000195913 0.0002587 2.718 ||| 0-0 ||| 483 81669 +en ||| alongside it ||| 0.25 0.0050431 1.22445e-05 5.27709e-08 2.718 ||| 0-1 ||| 4 81669 +en ||| also great opportunities . in ||| 1 0.717907 1.22445e-05 8.51567e-15 2.718 ||| 0-4 ||| 1 81669 +en ||| also questioned ||| 0.142857 0.173913 1.22445e-05 9.73753e-08 2.718 ||| 0-1 ||| 7 81669 +en ||| altogether , ||| 0.125 0.064 1.22445e-05 1.45849e-05 2.718 ||| 0-0 ||| 8 81669 +en ||| altogether ||| 0.0151515 0.064 1.22445e-05 7.14e-05 2.718 ||| 0-0 ||| 66 81669 +en ||| am at ||| 1 0.351161 1.22445e-05 4.98582e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| amid ||| 0.0806452 0.373134 6.12227e-05 0.000223 2.718 ||| 0-0 ||| 62 81669 +en ||| amidst ||| 0.0277778 0.363636 1.22445e-05 0.0001428 2.718 ||| 0-0 ||| 36 81669 +en ||| among all the ||| 0.2 0.0289855 1.22445e-05 5.89638e-08 2.718 ||| 0-0 ||| 5 81669 +en ||| among all ||| 0.0416667 0.0289855 1.22445e-05 1.10981e-06 2.718 ||| 0-0 ||| 24 81669 +en ||| among them ||| 0.0144928 0.0289855 1.22445e-05 8.37241e-07 2.718 ||| 0-0 ||| 69 81669 +en ||| among ||| 0.0177515 0.0289855 0.000367336 0.0004283 2.718 ||| 0-0 ||| 1690 81669 +en ||| amount to ||| 0.0166667 0.0189899 1.22445e-05 5.29617e-06 2.718 ||| 0-1 ||| 60 81669 +en ||| amounts of ||| 0.0178571 0.0080355 1.22445e-05 6.20645e-07 2.718 ||| 0-1 ||| 56 81669 +en ||| amounts to ||| 0.0151515 0.0189899 1.22445e-05 1.35181e-06 2.718 ||| 0-1 ||| 66 81669 +en ||| an effort to ||| 0.0153846 0.0189899 1.22445e-05 1.67764e-08 2.718 ||| 0-2 ||| 65 81669 +en ||| an epochal shift in ||| 0.5 0.717907 1.22445e-05 1.92261e-12 2.718 ||| 0-3 ||| 2 81669 +en ||| an extent ||| 0.0625 0.122172 1.22445e-05 1.6677e-06 2.718 ||| 0-1 ||| 16 81669 +en ||| an ||| 0.000832154 0.0009769 0.000122445 0.0001071 2.718 ||| 0-0 ||| 12017 81669 +en ||| analysis , including ||| 1 0.0039683 1.22445e-05 2.83428e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| analysis , ||| 0.0357143 0.0039683 1.22445e-05 1.81801e-06 2.718 ||| 0-0 ||| 28 81669 +en ||| analysis ||| 0.00378788 0.0039683 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 264 81669 +en ||| anchored around ||| 1 0.187406 1.22445e-05 4.34941e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| and , at ||| 0.0416667 0.351161 1.22445e-05 6.26985e-05 2.718 ||| 0-2 ||| 24 81669 +en ||| and , third , American foreign policy ||| 1 0.107143 1.22445e-05 4.49516e-18 2.718 ||| 0-2 ||| 1 81669 +en ||| and , third , American foreign ||| 1 0.107143 1.22445e-05 1.44214e-14 2.718 ||| 0-2 ||| 1 81669 +en ||| and , third , American ||| 1 0.107143 1.22445e-05 9.25044e-11 2.718 ||| 0-2 ||| 1 81669 +en ||| and , third , ||| 0.333333 0.107143 1.22445e-05 2.90711e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| and , third ||| 0.333333 0.107143 1.22445e-05 1.42317e-06 2.718 ||| 0-2 ||| 3 81669 +en ||| and China ||| 0.00289017 0.0001307 1.22445e-05 7.51199e-08 2.718 ||| 0-0 ||| 346 81669 +en ||| and IMF financing to prevent a ||| 0.166667 0.0189899 1.22445e-05 2.57199e-19 2.718 ||| 0-3 ||| 6 81669 +en ||| and IMF financing to prevent ||| 0.166667 0.0189899 1.22445e-05 6.3929e-18 2.718 ||| 0-3 ||| 6 81669 +en ||| and IMF financing to ||| 0.166667 0.0189899 1.22445e-05 4.91761e-13 2.718 ||| 0-3 ||| 6 81669 +en ||| and around the ||| 0.0555556 0.0001307 1.22445e-05 2.99303e-09 2.718 ||| 0-0 ||| 18 81669 +en ||| and around ||| 0.0243902 0.0001307 1.22445e-05 5.63346e-08 2.718 ||| 0-0 ||| 41 81669 +en ||| and at ||| 0.00909091 0.351161 1.22445e-05 0.000306938 2.718 ||| 0-1 ||| 110 81669 +en ||| and based on ||| 0.25 0.336652 1.22445e-05 9.25641e-08 2.718 ||| 0-2 ||| 4 81669 +en ||| and by ||| 0.00621118 0.065573 1.22445e-05 0.000104211 2.718 ||| 0-1 ||| 161 81669 +en ||| and comes at ||| 1 0.351161 1.22445e-05 1.03653e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| and empowered ||| 0.166667 0.0243902 1.22445e-05 1.49468e-07 2.718 ||| 0-1 ||| 6 81669 +en ||| and for ||| 0.00352113 0.0255404 1.22445e-05 6.53286e-05 2.718 ||| 0-1 ||| 284 81669 +en ||| and forth within ||| 0.333333 0.193123 1.22445e-05 1.99351e-09 2.718 ||| 0-2 ||| 3 81669 +en ||| and further behind into extreme ||| 1 0.414384 1.22445e-05 6.15468e-16 2.718 ||| 0-3 ||| 1 81669 +en ||| and further behind into ||| 1 0.414384 1.22445e-05 1.05388e-11 2.718 ||| 0-3 ||| 1 81669 +en ||| and in ||| 0.00634921 0.717907 4.89782e-05 0.00409329 2.718 ||| 0-1 ||| 630 81669 +en ||| and influence . ||| 0.142857 0.0828539 1.22445e-05 2.48024e-08 2.718 ||| 0-1 ||| 7 81669 +en ||| and influence ||| 0.0175439 0.0828539 1.22445e-05 5.3943e-06 2.718 ||| 0-1 ||| 57 81669 +en ||| and not ||| 0.00344828 0.0011915 1.22445e-05 1.72308e-06 2.718 ||| 0-1 ||| 290 81669 +en ||| and order in ||| 0.333333 0.717907 1.22445e-05 3.29633e-06 2.718 ||| 0-2 ||| 3 81669 +en ||| and out of ||| 0.0666667 0.0080355 1.22445e-05 2.96748e-07 2.718 ||| 0-2 ||| 15 81669 +en ||| and shopping centers ||| 0.5 0.0625 1.22445e-05 9.71544e-13 2.718 ||| 0-1 ||| 2 81669 +en ||| and shopping ||| 1 0.0625 1.22445e-05 1.49468e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| and the rule of law . ||| 0.0416667 0.0080355 1.22445e-05 6.28814e-16 2.718 ||| 0-3 ||| 24 81669 +en ||| and the rule of law ||| 0.0149254 0.0080355 1.22445e-05 1.36761e-13 2.718 ||| 0-3 ||| 67 81669 +en ||| and the rule of ||| 0.0108696 0.0080355 1.22445e-05 8.77237e-10 2.718 ||| 0-3 ||| 92 81669 +en ||| and the wealthier they are ||| 1 0.0001307 1.22445e-05 1.69116e-15 2.718 ||| 0-0 ||| 1 81669 +en ||| and the wealthier they ||| 1 0.0001307 1.22445e-05 2.28427e-13 2.718 ||| 0-0 ||| 1 81669 +en ||| and the wealthier ||| 1 0.0001307 1.22445e-05 3.69862e-11 2.718 ||| 0-0 ||| 1 81669 +en ||| and the ||| 0.00013177 0.0001307 1.22445e-05 5.69018e-06 2.718 ||| 0-0 ||| 7589 81669 +en ||| and then in ||| 0.111111 0.717907 1.22445e-05 3.56198e-06 2.718 ||| 0-2 ||| 9 81669 +en ||| and those who fight ||| 1 0.0033613 1.22445e-05 7.62142e-14 2.718 ||| 0-3 ||| 1 81669 +en ||| and transformed it into ||| 1 0.414384 1.22445e-05 2.30695e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| and when ||| 0.00877193 0.0709982 1.22445e-05 3.26639e-05 2.718 ||| 0-1 ||| 114 81669 +en ||| and with ||| 0.00362319 0.0232439 1.22445e-05 3.75342e-05 2.718 ||| 0-1 ||| 276 81669 +en ||| and ||| 6.56482e-05 0.0001307 8.57118e-05 0.0001071 2.718 ||| 0-0 ||| 106629 81669 +en ||| announced on ||| 0.5 0.336652 1.22445e-05 3.52964e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| annual income in ||| 1 0.717907 1.22445e-05 4.54208e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| annually in ||| 0.0625 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 16 81669 +en ||| anti-shareholders ||| 0.5 1 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| anti-war ||| 0.0909091 0.25 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 11 81669 +en ||| anxiety ||| 0.00943396 0.0114943 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 106 81669 +en ||| any aid at all ||| 0.25 0.351161 1.22445e-05 6.14866e-12 2.718 ||| 0-2 ||| 4 81669 +en ||| any aid at ||| 0.25 0.351161 1.22445e-05 2.3729e-09 2.718 ||| 0-2 ||| 4 81669 +en ||| any in ||| 0.166667 0.717907 1.22445e-05 0.000443203 2.718 ||| 0-1 ||| 6 81669 +en ||| any kind of power to move against ||| 1 0.0080355 1.22445e-05 5.9564e-21 2.718 ||| 0-2 ||| 1 81669 +en ||| any kind of power to move ||| 1 0.0080355 1.22445e-05 1.76382e-17 2.718 ||| 0-2 ||| 1 81669 +en ||| any kind of power to ||| 1 0.0080355 1.22445e-05 7.54412e-14 2.718 ||| 0-2 ||| 1 81669 +en ||| any kind of power ||| 1 0.0080355 1.22445e-05 9.14548e-13 2.718 ||| 0-2 ||| 1 81669 +en ||| any kind of ||| 0.047619 0.0080355 1.22445e-05 1.92902e-09 2.718 ||| 0-2 ||| 21 81669 +en ||| any return in the ||| 0.333333 0.717907 1.22445e-05 5.04616e-09 2.718 ||| 0-2 ||| 3 81669 +en ||| any return in ||| 0.333333 0.717907 1.22445e-05 9.49784e-08 2.718 ||| 0-2 ||| 3 81669 +en ||| any time soon ||| 0.0434783 0.0537353 1.22445e-05 3.11034e-10 2.718 ||| 0-2 ||| 23 81669 +en ||| any time ||| 0.0136986 0.0025291 1.22445e-05 8.11006e-08 2.718 ||| 0-1 ||| 73 81669 +en ||| any transition ||| 0.166667 0.0076923 1.22445e-05 2.43666e-08 2.718 ||| 0-1 ||| 6 81669 +en ||| anytime ||| 0.0294118 0.257143 1.22445e-05 0.0001606 2.718 ||| 0-0 ||| 34 81669 +en ||| anyway ||| 0.0135135 0.0735294 1.22445e-05 8.92e-05 2.718 ||| 0-0 ||| 74 81669 +en ||| anywhere are having much success in ||| 0.25 0.717907 1.22445e-05 4.91196e-18 2.718 ||| 0-5 ||| 4 81669 +en ||| anywhere in ||| 0.0714286 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 14 81669 +en ||| anywhere ||| 0.0576923 0.206061 3.67336e-05 0.0003033 2.718 ||| 0-0 ||| 52 81669 +en ||| apart in ||| 0.166667 0.717907 1.22445e-05 8.23328e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| appear in ||| 0.105263 0.717907 2.44891e-05 8.86211e-05 2.718 ||| 0-1 ||| 19 81669 +en ||| appeared in ||| 0.047619 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-1 ||| 21 81669 +en ||| appeared on ||| 0.25 0.336652 1.22445e-05 4.84647e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| applied by ||| 0.2 0.065573 1.22445e-05 5.64669e-07 2.718 ||| 0-1 ||| 5 81669 +en ||| appointees on ||| 1 0.336652 1.22445e-05 1.32362e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| appointment on ||| 1 0.336652 1.22445e-05 8.8241e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| appropriations from ||| 1 0.0190577 1.22445e-05 1.87895e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| are about ||| 0.0434783 0.0371521 1.22445e-05 1.81645e-05 2.718 ||| 0-1 ||| 23 81669 +en ||| are actually being made ||| 1 0.218872 1.22445e-05 2.4721e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| are actually being ||| 1 0.218872 1.22445e-05 2.23923e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| are actually ||| 0.05 0.218872 1.22445e-05 1.48618e-05 2.718 ||| 0-1 ||| 20 81669 +en ||| are at ||| 0.0181818 0.351161 2.44891e-05 0.000270619 2.718 ||| 0-1 ||| 110 81669 +en ||| are based in ||| 0.25 0.717907 1.22445e-05 5.86093e-07 2.718 ||| 0-2 ||| 4 81669 +en ||| are constituted in ||| 1 0.717907 1.22445e-05 7.03744e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| are deployed in ||| 0.5 0.717907 1.22445e-05 1.40749e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| are due in ||| 0.166667 0.717907 1.22445e-05 8.90688e-07 2.718 ||| 0-2 ||| 6 81669 +en ||| are going to the ||| 0.25 0.0189899 1.22445e-05 2.92552e-09 2.718 ||| 0-2 ||| 4 81669 +en ||| are going to ||| 0.0909091 0.0189899 1.22445e-05 5.50638e-08 2.718 ||| 0-2 ||| 11 81669 +en ||| are having much success in ||| 0.25 0.717907 1.22445e-05 1.25948e-13 2.718 ||| 0-4 ||| 4 81669 +en ||| are in fact just ||| 1 0.717907 1.22445e-05 2.61329e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| are in fact ||| 0.0625 0.717907 1.22445e-05 2.36711e-06 2.718 ||| 0-1 ||| 16 81669 +en ||| are in ||| 0.0426357 0.717907 0.00013469 0.00360895 2.718 ||| 0-1 ||| 258 81669 +en ||| are largely ||| 0.0434783 0.285296 1.22445e-05 2.57605e-05 2.718 ||| 0-1 ||| 23 81669 +en ||| are mounting ||| 0.0625 0.0718563 1.22445e-05 7.92915e-07 2.718 ||| 0-1 ||| 16 81669 +en ||| are nowhere near ||| 0.0588235 0.131148 1.22445e-05 1.09912e-10 2.718 ||| 0-1 ||| 17 81669 +en ||| are nowhere ||| 0.111111 0.131148 1.22445e-05 2.1137e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| are part of ||| 0.03125 0.0080355 1.22445e-05 3.63938e-08 2.718 ||| 0-2 ||| 32 81669 +en ||| are pending in ||| 1 0.717907 1.22445e-05 2.34581e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| are roughly equal in ||| 1 0.717907 1.22445e-05 1.59938e-11 2.718 ||| 0-3 ||| 1 81669 +en ||| are served by ||| 0.5 0.065573 1.22445e-05 1.01435e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| are set in ||| 0.25 0.717907 1.22445e-05 3.04703e-06 2.718 ||| 0-2 ||| 4 81669 +en ||| are spread across ||| 0.166667 0.28681 1.22445e-05 2.40617e-09 2.718 ||| 0-2 ||| 6 81669 +en ||| are spread by news ||| 1 0.065573 1.22445e-05 8.13471e-13 2.718 ||| 0-2 ||| 1 81669 +en ||| are spread by ||| 1 0.065573 1.22445e-05 8.94908e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| are strictly demanded by the situation ||| 0.5 0.065573 1.22445e-05 6.69264e-20 2.718 ||| 0-3 ||| 2 81669 +en ||| are strictly demanded by the ||| 0.5 0.065573 1.22445e-05 2.05927e-15 2.718 ||| 0-3 ||| 2 81669 +en ||| are strictly demanded by ||| 0.5 0.065573 1.22445e-05 3.87594e-14 2.718 ||| 0-3 ||| 2 81669 +en ||| are to be ||| 0.0166667 0.0189899 1.22445e-05 1.3241e-06 2.718 ||| 0-1 ||| 60 81669 +en ||| are to ||| 0.0143885 0.0189899 2.44891e-05 0.000128474 2.718 ||| 0-1 ||| 139 81669 +en ||| are ||| 5.88097e-05 0.0001822 1.22445e-05 3.57e-05 2.718 ||| 0-0 ||| 17004 81669 +en ||| area into ||| 0.5 0.414384 1.22445e-05 1.0318e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| argue in ||| 0.666667 0.717907 2.44891e-05 5.06476e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| argued in ||| 0.2 0.717907 1.22445e-05 5.06476e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| arguments about what ||| 0.166667 0.0371521 1.22445e-05 4.72261e-11 2.718 ||| 0-1 ||| 6 81669 +en ||| arguments about ||| 0.047619 0.0371521 1.22445e-05 4.78433e-08 2.718 ||| 0-1 ||| 21 81669 +en ||| arise in ||| 0.125 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| arisen in ||| 0.25 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| armed guard in ||| 1 0.717907 1.22445e-05 8.23816e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| around in ||| 0.4 0.717907 2.44891e-05 0.000256406 2.718 ||| 0-1 ||| 5 81669 +en ||| around ||| 0.0159181 0.187406 0.000342847 0.0033457 2.718 ||| 0-0 ||| 1759 81669 +en ||| arrested in ||| 0.111111 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| as , in ||| 0.2 0.717907 1.22445e-05 0.000841954 2.718 ||| 0-2 ||| 5 81669 +en ||| as China looms ever larger in ||| 1 0.717907 1.22445e-05 2.1872e-18 2.718 ||| 0-5 ||| 1 81669 +en ||| as President in ||| 0.333333 0.717907 1.22445e-05 4.28251e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| as a result of ||| 0.00520833 0.0080355 1.22445e-05 1.1264e-09 2.718 ||| 0-3 ||| 192 81669 +en ||| as a ||| 0.00953429 0.0296498 0.000318358 0.000289308 2.718 ||| 0-0 ||| 2727 81669 +en ||| as an ||| 0.00230415 0.0296498 1.22445e-05 2.48909e-05 2.718 ||| 0-0 ||| 434 81669 +en ||| as both ||| 0.0333333 0.0296498 1.22445e-05 1.22822e-05 2.718 ||| 0-0 ||| 30 81669 +en ||| as distinct ||| 0.142857 0.0296498 1.22445e-05 3.73932e-07 2.718 ||| 0-0 ||| 7 81669 +en ||| as early as ||| 0.0666667 0.0296498 1.22445e-05 7.10793e-09 2.718 ||| 0-0 ||| 15 81669 +en ||| as early ||| 0.0833333 0.0296498 1.22445e-05 8.40628e-07 2.718 ||| 0-0 ||| 12 81669 +en ||| as fast as it has ||| 1 0.0296498 1.22445e-05 4.53461e-13 2.718 ||| 0-0 ||| 1 81669 +en ||| as fast as it ||| 0.125 0.0296498 1.22445e-05 1.36642e-10 2.718 ||| 0-0 ||| 8 81669 +en ||| as fast as ||| 0.0357143 0.0296498 1.22445e-05 5.13182e-09 2.718 ||| 0-0 ||| 28 81669 +en ||| as fast ||| 0.0769231 0.0296498 2.44891e-05 6.0692e-07 2.718 ||| 0-0 ||| 26 81669 +en ||| as for ||| 0.00595238 0.0255404 1.22445e-05 6.57829e-05 2.718 ||| 0-1 ||| 168 81669 +en ||| as having ||| 0.0588235 0.0296498 1.22445e-05 1.91496e-06 2.718 ||| 0-0 ||| 17 81669 +en ||| as hosting ||| 0.166667 0.0296498 1.22445e-05 4.67415e-08 2.718 ||| 0-0 ||| 6 81669 +en ||| as in ||| 0.0169492 0.717907 7.34673e-05 0.00412176 2.718 ||| 0-1 ||| 354 81669 +en ||| as it has in ||| 0.142857 0.717907 1.22445e-05 3.6421e-07 2.718 ||| 0-3 ||| 7 81669 +en ||| as it is ||| 0.0070922 0.0296498 1.22445e-05 3.1559e-06 2.718 ||| 0-0 ||| 141 81669 +en ||| as it ||| 0.0147783 0.0296498 7.34673e-05 0.000191471 2.718 ||| 0-0 ||| 406 81669 +en ||| as long ||| 0.00917431 0.0296498 1.22445e-05 5.37024e-06 2.718 ||| 0-0 ||| 109 81669 +en ||| as most likely ||| 1 0.0296498 1.22445e-05 2.28925e-09 2.718 ||| 0-0 ||| 1 81669 +en ||| as most ||| 0.0526316 0.0296498 1.22445e-05 4.76332e-06 2.718 ||| 0-0 ||| 19 81669 +en ||| as much as ||| 0.00543478 0.0296498 1.22445e-05 8.76604e-08 2.718 ||| 0-0 ||| 184 81669 +en ||| as much on ||| 0.0909091 0.336652 1.22445e-05 8.27449e-07 2.718 ||| 0-2 ||| 11 81669 +en ||| as much ||| 0.0117302 0.0296498 4.89782e-05 1.03673e-05 2.718 ||| 0-0 ||| 341 81669 +en ||| as opposed to ||| 0.0232558 0.0296498 1.22445e-05 4.62093e-08 2.718 ||| 0-0 ||| 43 81669 +en ||| as opposed ||| 0.0588235 0.0296498 3.67336e-05 5.60179e-07 2.718 ||| 0-0 ||| 51 81669 +en ||| as part ||| 0.00645161 0.0296498 1.22445e-05 4.43685e-06 2.718 ||| 0-0 ||| 155 81669 +en ||| as polling is concluded in ||| 1 0.717907 1.22445e-05 4.59251e-14 2.718 ||| 0-4 ||| 1 81669 +en ||| as provisional president in ||| 0.166667 0.717907 1.22445e-05 3.65435e-12 2.718 ||| 0-3 ||| 6 81669 +en ||| as recently as ||| 0.0666667 0.0296498 1.22445e-05 1.46111e-08 2.718 ||| 0-2 ||| 15 81669 +en ||| as they ||| 0.0037594 0.0296498 1.22445e-05 4.44116e-05 2.718 ||| 0-0 ||| 266 81669 +en ||| as to root itself in ||| 1 0.717907 1.22445e-05 2.22804e-11 2.718 ||| 0-4 ||| 1 81669 +en ||| as waged in ||| 1 0.717907 1.22445e-05 5.35829e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| as we ||| 0.0229885 0.0296498 2.44891e-05 1.66723e-05 2.718 ||| 0-0 ||| 87 81669 +en ||| as well as in ||| 0.0333333 0.717907 1.22445e-05 6.04326e-08 2.718 ||| 0-3 ||| 30 81669 +en ||| as well as ||| 0.0031881 0.0296498 3.67336e-05 1.05433e-07 2.718 ||| 0-2 ||| 941 81669 +en ||| as well ||| 0.00178253 0.0296498 2.44891e-05 1.24692e-05 2.718 ||| 0-0 ||| 1122 81669 +en ||| as ||| 0.0182365 0.0296498 0.00475088 0.007191 2.718 ||| 0-0 ||| 21276 81669 +en ||| aside as ||| 0.333333 0.0296498 1.22445e-05 7.93886e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| assaulted in ||| 1 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| assets in ||| 0.05 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 20 81669 +en ||| associates from ||| 1 0.0256579 1.22445e-05 2.57272e-08 2.718 ||| 0-0 0-1 ||| 1 81669 +en ||| associations ||| 0.0153846 0.0125 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 65 81669 +en ||| assumed for ||| 0.5 0.0255404 1.22445e-05 5.55485e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| assurance of closed , ||| 1 0.0080355 1.22445e-05 3.29627e-12 2.718 ||| 0-1 ||| 1 81669 +en ||| assurance of closed ||| 1 0.0080355 1.22445e-05 1.61368e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| assurance of ||| 0.125 0.0080355 1.22445e-05 2.07147e-07 2.718 ||| 0-1 ||| 8 81669 +en ||| at China ||| 0.142857 0.351161 1.22445e-05 2.56382e-05 2.718 ||| 0-0 ||| 7 81669 +en ||| at a great ||| 1 0.351161 1.22445e-05 3.15149e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| at a ||| 0.0537897 0.351161 0.00053876 0.0014706 2.718 ||| 0-0 ||| 818 81669 +en ||| at all ||| 0.0168067 0.351161 4.89782e-05 9.47159e-05 2.718 ||| 0-0 ||| 238 81669 +en ||| at an ||| 0.0078125 0.351161 1.22445e-05 0.000126524 2.718 ||| 0-0 ||| 128 81669 +en ||| at any future ||| 1 0.351161 1.22445e-05 4.96514e-09 2.718 ||| 0-0 ||| 1 81669 +en ||| at any ||| 0.00787402 0.351161 1.22445e-05 3.32339e-05 2.718 ||| 0-0 ||| 127 81669 +en ||| at each other ||| 1 0.351161 1.22445e-05 2.23218e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| at each ||| 0.0909091 0.351161 1.22445e-05 1.89892e-05 2.718 ||| 0-0 ||| 11 81669 +en ||| at earlier ||| 0.25 0.351161 1.22445e-05 7.59569e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| at great ||| 0.0526316 0.0044763 1.22445e-05 1.32368e-07 2.718 ||| 0-1 ||| 19 81669 +en ||| at home in ||| 0.125 0.717907 1.22445e-05 5.4499e-07 2.718 ||| 0-2 ||| 8 81669 +en ||| at home ||| 0.0033557 0.351161 1.22445e-05 1.37695e-05 2.718 ||| 0-0 ||| 298 81669 +en ||| at in ||| 0.666667 0.534534 2.44891e-05 0.0178183 2.718 ||| 0-0 0-1 ||| 3 81669 +en ||| at just about ||| 0.25 0.351161 1.22445e-05 4.90064e-08 2.718 ||| 0-0 ||| 4 81669 +en ||| at just ||| 0.181818 0.351161 2.44891e-05 4.03544e-05 2.718 ||| 0-0 ||| 11 81669 +en ||| at labor ||| 1 0.351161 1.22445e-05 3.08506e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| at least ||| 0.00356506 0.351161 4.89782e-05 6.40772e-06 2.718 ||| 0-0 ||| 1122 81669 +en ||| at noon ||| 1 0.351161 1.22445e-05 2.37594e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| at odds ||| 0.0526316 0.351161 1.22445e-05 1.66316e-06 2.718 ||| 0-0 ||| 19 81669 +en ||| at precisely ||| 1 0.351161 1.22445e-05 7.12782e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| at someone ||| 0.5 0.351161 1.22445e-05 3.32266e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| at the Bottom ||| 1 0.351161 1.22445e-05 1.26233e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| at the height ||| 0.0416667 0.351161 1.22445e-05 5.04931e-08 2.718 ||| 0-0 ||| 24 81669 +en ||| at the rate ||| 0.111111 0.351161 1.22445e-05 6.05334e-07 2.718 ||| 0-0 ||| 9 81669 +en ||| at the ||| 0.00763359 0.351161 0.000293869 0.00194204 2.718 ||| 0-0 ||| 3144 81669 +en ||| at this ||| 0.00813008 0.351161 1.22445e-05 7.26379e-05 2.718 ||| 0-0 ||| 123 81669 +en ||| at where ||| 0.25 0.21284 1.22445e-05 1.78205e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| at work over ||| 0.333333 0.351161 1.22445e-05 1.5342e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| at work ||| 0.0681818 0.351161 3.67336e-05 2.2078e-05 2.718 ||| 0-0 ||| 44 81669 +en ||| at ||| 0.390065 0.351161 0.0487455 0.0365529 2.718 ||| 0-0 ||| 10206 81669 +en ||| attention in ||| 0.0833333 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 12 81669 +en ||| attention on ||| 0.0285714 0.336652 1.22445e-05 4.40526e-06 2.718 ||| 0-1 ||| 35 81669 +en ||| authored by ||| 0.333333 0.065573 1.22445e-05 8.06669e-08 2.718 ||| 0-1 ||| 3 81669 +en ||| available in ||| 0.0384615 0.717907 1.22445e-05 0.00013298 2.718 ||| 0-1 ||| 26 81669 +en ||| available on ||| 0.125 0.336652 1.22445e-05 1.8517e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| available within ||| 1 0.193123 1.22445e-05 9.97902e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| average fertility rates in ||| 0.5 0.717907 1.22445e-05 5.41e-14 2.718 ||| 0-3 ||| 2 81669 +en ||| averaged ||| 0.0232558 0.123288 1.22445e-05 8.03e-05 2.718 ||| 0-0 ||| 43 81669 +en ||| away in ||| 0.2 0.717907 1.22445e-05 0.00044954 2.718 ||| 0-1 ||| 5 81669 +en ||| awe in ||| 1 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| back and forth within ||| 0.333333 0.193123 1.22445e-05 2.77058e-12 2.718 ||| 0-3 ||| 3 81669 +en ||| back and haunt us all ||| 0.166667 0.0405569 1.22445e-05 4.83188e-17 2.718 ||| 0-0 ||| 6 81669 +en ||| back and haunt us ||| 0.166667 0.0405569 1.22445e-05 1.86473e-14 2.718 ||| 0-0 ||| 6 81669 +en ||| back and haunt ||| 0.166667 0.0405569 1.22445e-05 3.26286e-11 2.718 ||| 0-0 ||| 6 81669 +en ||| back and ||| 0.025 0.0405569 1.22445e-05 5.01979e-06 2.718 ||| 0-0 ||| 40 81669 +en ||| back at ||| 0.1 0.351161 2.44891e-05 5.08012e-05 2.718 ||| 0-1 ||| 20 81669 +en ||| back during ||| 1 0.0947187 1.22445e-05 2.04592e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| back home ||| 0.0232558 0.0117057 1.22445e-05 1.73586e-07 2.718 ||| 0-1 ||| 43 81669 +en ||| back in ||| 0.266667 0.717907 0.000244891 0.000677479 2.718 ||| 0-1 ||| 75 81669 +en ||| back into ||| 0.0677966 0.414384 4.89782e-05 2.75768e-05 2.718 ||| 0-1 ||| 59 81669 +en ||| back on them in ||| 1 0.717907 1.22445e-05 5.1947e-09 2.718 ||| 0-3 ||| 1 81669 +en ||| back on ||| 0.104167 0.336652 6.12227e-05 9.43364e-05 2.718 ||| 0-1 ||| 48 81669 +en ||| back to normal , ||| 0.25 0.0405569 1.22445e-05 5.8827e-10 2.718 ||| 0-0 ||| 4 81669 +en ||| back to normal ||| 0.25 0.0405569 1.22445e-05 2.87986e-09 2.718 ||| 0-0 ||| 4 81669 +en ||| back to ||| 0.0120482 0.0405569 2.44891e-05 4.93126e-05 2.718 ||| 0-0 ||| 166 81669 +en ||| back ||| 0.0256046 0.0405569 0.000220402 0.0005978 2.718 ||| 0-0 ||| 703 81669 +en ||| backed by ||| 0.0103093 0.065573 1.22445e-05 4.03335e-07 2.718 ||| 0-1 ||| 97 81669 +en ||| background at ||| 1 0.351161 1.22445e-05 7.12782e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| background ||| 0.0215054 0.038835 2.44891e-05 3.57e-05 2.718 ||| 0-0 ||| 93 81669 +en ||| bad at ||| 0.0769231 0.351161 1.22445e-05 6.88291e-06 2.718 ||| 0-1 ||| 13 81669 +en ||| badly burned at ||| 1 0.351161 1.22445e-05 6.47918e-11 2.718 ||| 0-2 ||| 1 81669 +en ||| badly on ||| 1 0.336652 1.22445e-05 6.17008e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| ball in ||| 0.5 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| ban on ||| 0.025 0.336652 1.22445e-05 1.76482e-06 2.718 ||| 0-1 ||| 40 81669 +en ||| bankrupt ||| 0.0153846 0.320388 1.22445e-05 0.0002944 2.718 ||| 0-0 ||| 65 81669 +en ||| banned from running in ||| 0.5 0.717907 1.22445e-05 8.14703e-12 2.718 ||| 0-3 ||| 2 81669 +en ||| bars at ||| 1 0.351161 1.22445e-05 7.12782e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| based in ||| 0.103448 0.717907 3.67336e-05 7.91643e-05 2.718 ||| 0-1 ||| 29 81669 +en ||| based on ||| 0.00426894 0.336652 4.89782e-05 1.10233e-05 2.718 ||| 0-1 ||| 937 81669 +en ||| based primarily at ||| 1 0.351161 1.22445e-05 2.70097e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| basis of ||| 0.00595238 0.0080355 1.22445e-05 3.05303e-06 2.718 ||| 0-1 ||| 168 81669 +en ||| be Left to ||| 0.5 0.0189899 1.22445e-05 2.32502e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| be a butter shortage . " In ||| 1 0.0917031 1.22445e-05 7.52702e-22 2.718 ||| 0-6 ||| 1 81669 +en ||| be about ||| 0.0526316 0.0371521 1.22445e-05 2.52868e-05 2.718 ||| 0-1 ||| 19 81669 +en ||| be at ||| 0.0175439 0.351161 1.22445e-05 0.000376729 2.718 ||| 0-1 ||| 57 81669 +en ||| be available within ||| 1 0.193123 1.22445e-05 1.02848e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| be banned from running in ||| 0.5 0.717907 1.22445e-05 8.39666e-14 2.718 ||| 0-4 ||| 2 81669 +en ||| be based on ||| 0.0227273 0.336652 1.22445e-05 1.13611e-07 2.718 ||| 0-2 ||| 44 81669 +en ||| be burned in ||| 0.666667 0.717907 2.44891e-05 9.79681e-08 2.718 ||| 0-2 ||| 3 81669 +en ||| be compensated in ||| 0.5 0.717907 1.22445e-05 6.53121e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| be concentrated in ||| 0.2 0.717907 1.22445e-05 9.79681e-08 2.718 ||| 0-2 ||| 5 81669 +en ||| be created in ||| 0.5 0.717907 1.22445e-05 7.17931e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| be determined in ||| 1 0.717907 1.22445e-05 3.26058e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| be enhanced in ||| 0.25 0.717907 1.22445e-05 2.61248e-07 2.718 ||| 0-2 ||| 4 81669 +en ||| be equivalent ||| 0.2 0.0104712 1.22445e-05 1.83454e-07 2.718 ||| 0-1 ||| 5 81669 +en ||| be folded into ||| 0.333333 0.414384 1.22445e-05 1.32927e-09 2.718 ||| 0-2 ||| 3 81669 +en ||| be found in ||| 0.235294 0.717907 4.89782e-05 2.02267e-06 2.718 ||| 0-2 ||| 17 81669 +en ||| be halted within ||| 1 0.193123 1.22445e-05 7.35166e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| be in charge ||| 0.25 0.717907 1.22445e-05 5.5465e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| be in the process of ||| 1 0.717907 1.22445e-05 1.68599e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| be in the process ||| 1 0.717907 1.22445e-05 6.24067e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| be in the ||| 0.0666667 0.717907 2.44891e-05 0.000266923 2.718 ||| 0-1 ||| 30 81669 +en ||| be in ||| 0.0810811 0.717907 0.000110201 0.00502401 2.718 ||| 0-1 ||| 111 81669 +en ||| be jeopardized ||| 0.166667 0.265306 1.22445e-05 1.19554e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| be neglected in ||| 1 0.717907 1.22445e-05 9.79681e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| be on ||| 0.0204082 0.336652 1.22445e-05 0.000699575 2.718 ||| 0-1 ||| 49 81669 +en ||| be rather cumbersome ||| 0.333333 0.274052 1.22445e-05 4.83532e-10 2.718 ||| 0-1 ||| 3 81669 +en ||| be rather ||| 0.25 0.274052 1.22445e-05 7.43895e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| be seen marching through ||| 1 0.021007 1.22445e-05 2.7391e-14 2.718 ||| 0-3 ||| 1 81669 +en ||| be shared in ||| 0.25 0.717907 1.22445e-05 2.61248e-07 2.718 ||| 0-2 ||| 4 81669 +en ||| be some in ||| 1 0.717907 1.22445e-05 3.58915e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| be sustained at ||| 1 0.351161 1.22445e-05 3.91421e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| be the case ||| 0.0434783 0.0006015 1.22445e-05 8.30639e-09 2.718 ||| 0-1 ||| 23 81669 +en ||| be the ||| 0.00191939 0.0006015 1.22445e-05 1.19534e-05 2.718 ||| 0-1 ||| 521 81669 +en ||| be traded on ||| 1 0.336652 1.22445e-05 2.27362e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| be transformed into ||| 0.0909091 0.414384 1.22445e-05 1.06341e-08 2.718 ||| 0-2 ||| 11 81669 +en ||| be working in ||| 1 0.717907 1.22445e-05 8.15899e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| bearer in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| became ||| 0.00379267 0.10951 3.67336e-05 0.0013561 2.718 ||| 0-0 ||| 791 81669 +en ||| because of ||| 0.00188324 0.0051135 1.22445e-05 7.10674e-07 2.718 ||| 0-0 0-1 ||| 531 81669 +en ||| because ||| 0.000356697 0.0021915 2.44891e-05 8.92e-05 2.718 ||| 0-0 ||| 5607 81669 +en ||| become a ||| 0.00392157 0.157512 1.22445e-05 0.000256286 2.718 ||| 0-0 ||| 255 81669 +en ||| become caught in ||| 1 0.717907 1.22445e-05 2.77873e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| become either ||| 1 0.157512 1.22445e-05 6.28802e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| become even more ||| 0.1 0.157512 1.22445e-05 1.23747e-08 2.718 ||| 0-0 ||| 10 81669 +en ||| become even ||| 0.0909091 0.157512 1.22445e-05 5.79179e-06 2.718 ||| 0-0 ||| 11 81669 +en ||| become ever more hardened in ||| 0.5 0.717907 1.22445e-05 2.73199e-15 2.718 ||| 0-4 ||| 2 81669 +en ||| become in ||| 0.5 0.717907 1.22445e-05 0.000329234 2.718 ||| 0-1 ||| 2 81669 +en ||| become increasingly ||| 0.0344828 0.157512 1.22445e-05 7.44676e-07 2.718 ||| 0-0 ||| 29 81669 +en ||| become operational in ||| 0.5 0.717907 1.22445e-05 4.28004e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| become ||| 0.0139762 0.157512 0.000244891 0.0063702 2.718 ||| 0-0 ||| 1431 81669 +en ||| becomes ||| 0.00600601 0.122203 2.44891e-05 0.0006335 2.718 ||| 0-0 ||| 333 81669 +en ||| becoming a part of ||| 1 0.0080355 1.22445e-05 2.82615e-11 2.718 ||| 0-3 ||| 1 81669 +en ||| becoming a party ||| 0.25 0.196512 1.22445e-05 1.26055e-08 2.718 ||| 0-0 ||| 4 81669 +en ||| becoming a ||| 0.0212766 0.196512 2.44891e-05 6.06618e-05 2.718 ||| 0-0 ||| 94 81669 +en ||| becoming known as ||| 0.5 0.196512 1.22445e-05 2.81502e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| becoming known ||| 0.5 0.196512 1.22445e-05 3.32922e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| becoming ||| 0.0167131 0.196512 7.34673e-05 0.0015078 2.718 ||| 0-0 ||| 359 81669 +en ||| been arrested in ||| 0.333333 0.717907 1.22445e-05 5.28826e-09 2.718 ||| 0-2 ||| 3 81669 +en ||| been at least ||| 0.5 0.351161 1.22445e-05 1.06945e-08 2.718 ||| 0-1 ||| 2 81669 +en ||| been at ||| 0.1 0.351161 2.44891e-05 6.10068e-05 2.718 ||| 0-1 ||| 20 81669 +en ||| been for almost ||| 0.5 0.0255404 1.22445e-05 3.12021e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| been for ||| 0.15 0.0255404 3.67336e-05 1.29847e-05 2.718 ||| 0-1 ||| 20 81669 +en ||| been in place ||| 0.0833333 0.717907 1.22445e-05 1.0356e-06 2.718 ||| 0-1 ||| 12 81669 +en ||| been in ||| 0.0232558 0.717907 2.44891e-05 0.000813579 2.718 ||| 0-1 ||| 86 81669 +en ||| been included on ||| 1 0.336652 1.22445e-05 5.89097e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| been on ||| 0.037037 0.336652 1.22445e-05 0.000113288 2.718 ||| 0-1 ||| 27 81669 +en ||| been settled in ||| 1 0.717907 1.22445e-05 2.1153e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| been to look ||| 1 0.0189899 1.22445e-05 1.35428e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| been to ||| 0.04 0.0189899 2.44891e-05 2.89623e-05 2.718 ||| 0-1 ||| 50 81669 +en ||| been tried by ||| 0.5 0.065573 1.22445e-05 2.28669e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| before in ||| 0.125 0.717907 1.22445e-05 0.000104464 2.718 ||| 0-1 ||| 8 81669 +en ||| before ||| 0.00263081 0.007983 0.000110201 0.0001338 2.718 ||| 0-0 ||| 3421 81669 +en ||| began to ||| 0.00431034 0.0189899 1.22445e-05 1.35181e-06 2.718 ||| 0-1 ||| 232 81669 +en ||| began within ||| 0.5 0.193123 1.22445e-05 2.84958e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| began ||| 0.00132979 0.0013158 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 752 81669 +en ||| behavior in ||| 0.111111 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| behind . in ||| 1 0.717907 1.22445e-05 4.36608e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| behind in ||| 0.0909091 0.717907 1.22445e-05 9.49581e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| behind into extreme ||| 1 0.414384 1.22445e-05 2.25732e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| behind into ||| 1 0.414384 1.22445e-05 3.86528e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| behind the ||| 0.00558659 0.0249406 1.22445e-05 9.95649e-06 2.718 ||| 0-0 ||| 179 81669 +en ||| behind ||| 0.012766 0.0249406 0.000110201 0.0001874 2.718 ||| 0-0 ||| 705 81669 +en ||| being a ||| 0.00990099 0.003136 1.22445e-05 2.87256e-06 2.718 ||| 0-0 ||| 101 81669 +en ||| being at ||| 0.25 0.351161 1.22445e-05 5.50743e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| being in ||| 0.0689655 0.717907 2.44891e-05 0.000734463 2.718 ||| 0-1 ||| 29 81669 +en ||| being interested in ||| 1 0.717907 1.22445e-05 1.4322e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| being led away in ||| 1 0.717907 1.22445e-05 1.75968e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| being part of ||| 0.0625 0.0080355 1.22445e-05 7.40658e-09 2.718 ||| 0-2 ||| 16 81669 +en ||| being so central to ||| 1 0.0189899 1.22445e-05 4.97283e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| being surprised in ||| 1 0.717907 1.22445e-05 1.4322e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| being ||| 0.00120627 0.003136 2.44891e-05 7.14e-05 2.718 ||| 0-0 ||| 1658 81669 +en ||| belatedly , was in a position to ||| 1 0.717907 1.22445e-05 2.53145e-15 2.718 ||| 0-3 ||| 1 81669 +en ||| belatedly , was in a position ||| 1 0.717907 1.22445e-05 3.06879e-14 2.718 ||| 0-3 ||| 1 81669 +en ||| belatedly , was in a ||| 1 0.717907 1.22445e-05 1.96844e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| belatedly , was in ||| 1 0.717907 1.22445e-05 4.89271e-09 2.718 ||| 0-3 ||| 1 81669 +en ||| believe in ||| 0.0144928 0.717907 1.22445e-05 7.28272e-05 2.718 ||| 0-1 ||| 69 81669 +en ||| believer in ||| 0.2 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| below by ||| 0.5 0.065573 1.22445e-05 5.64669e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| benefited in ||| 1 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| besides ||| 0.00862069 0.0114943 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 116 81669 +en ||| better of ||| 0.5 0.0080355 1.22445e-05 1.65558e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| between ||| 0.00123092 0.0032814 6.12227e-05 0.0001071 2.718 ||| 0-0 ||| 4062 81669 +en ||| bid in ||| 0.5 0.717907 1.22445e-05 3.79735e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| bill by ||| 1 0.065573 1.22445e-05 7.24762e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| blue in ||| 1 0.717907 2.44891e-05 9.50556e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| body for ||| 0.2 0.0255404 1.22445e-05 6.56624e-07 2.718 ||| 0-1 ||| 5 81669 +en ||| bombed ||| 0.037037 0.0909091 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 27 81669 +en ||| bombings in ||| 0.181818 0.717907 2.44891e-05 6.33704e-06 2.718 ||| 0-1 ||| 11 81669 +en ||| boom - thanks partly ||| 0.333333 0.419521 1.22445e-05 1.1965e-15 2.718 ||| 0-3 ||| 3 81669 +en ||| boomed in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| booming ||| 0.00980392 0.177778 1.22445e-05 0.0002141 2.718 ||| 0-0 ||| 102 81669 +en ||| boost demand for ||| 0.25 0.0255404 1.22445e-05 6.04405e-11 2.718 ||| 0-2 ||| 4 81669 +en ||| boosted over ||| 1 0.159665 1.22445e-05 1.90447e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| born in ||| 0.0384615 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 26 81669 +en ||| both about ||| 0.166667 0.0371521 1.22445e-05 4.19058e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| both at ||| 0.111111 0.351161 3.67336e-05 6.24324e-05 2.718 ||| 0-1 ||| 27 81669 +en ||| both in ||| 0.0416667 0.717907 3.67336e-05 0.00083259 2.718 ||| 0-1 ||| 72 81669 +en ||| both sides on ||| 0.5 0.336652 1.22445e-05 1.506e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| both ||| 0.00165017 0.0028121 6.12227e-05 8.92e-05 2.718 ||| 0-0 ||| 3030 81669 +en ||| bounds in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| breaks out in ||| 1 0.717907 1.22445e-05 5.62172e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| brew in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| bring about ||| 0.0106383 0.0371521 1.22445e-05 1.33838e-06 2.718 ||| 0-1 ||| 94 81669 +en ||| bring himself to ||| 1 0.0189899 1.22445e-05 3.19671e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| broad ||| 0.00423729 0.0161812 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 236 81669 +en ||| broadcast times ||| 0.0833333 0.0010183 1.22445e-05 1.157e-10 2.718 ||| 0-1 ||| 12 81669 +en ||| broadcasts ||| 0.0714286 0.2 1.22445e-05 3.57e-05 2.718 ||| 0-0 ||| 14 81669 +en ||| broadly at ||| 0.5 0.351161 1.22445e-05 4.75188e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| broadly understood , ||| 0.25 0.240741 1.22445e-05 4.61349e-09 2.718 ||| 0-0 ||| 4 81669 +en ||| broadly understood ||| 0.25 0.240741 1.22445e-05 2.25852e-08 2.718 ||| 0-0 ||| 4 81669 +en ||| broadly ||| 0.0576923 0.240741 3.67336e-05 0.000348 2.718 ||| 0-0 ||| 52 81669 +en ||| broke out in ||| 0.111111 0.717907 1.22445e-05 1.54381e-07 2.718 ||| 0-2 ||| 9 81669 +en ||| broken up into ||| 0.2 0.414384 1.22445e-05 4.82835e-09 2.718 ||| 0-2 ||| 5 81669 +en ||| brought about in ||| 0.5 0.717907 1.22445e-05 2.88352e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| brought on ||| 0.0625 0.336652 1.22445e-05 3.30632e-05 2.718 ||| 0-1 ||| 16 81669 +en ||| brought together in ||| 1 0.717907 1.22445e-05 1.15659e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| brought up ||| 0.2 0.0107098 1.22445e-05 1.86852e-07 2.718 ||| 0-1 ||| 5 81669 +en ||| bubble in ||| 0.142857 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| building on ||| 0.0333333 0.336652 1.22445e-05 1.14645e-05 2.718 ||| 0-1 ||| 30 81669 +en ||| building outward from ||| 1 0.0190577 1.22445e-05 9.52066e-12 2.718 ||| 0-2 ||| 1 81669 +en ||| built on ||| 0.0217391 0.336652 1.22445e-05 7.9349e-06 2.718 ||| 0-1 ||| 46 81669 +en ||| bulls to bid ||| 0.2 0.0189899 1.22445e-05 8.78674e-12 2.718 ||| 0-1 ||| 5 81669 +en ||| bulls to ||| 0.2 0.0189899 1.22445e-05 1.12795e-07 2.718 ||| 0-1 ||| 5 81669 +en ||| bungling ||| 0.125 0.166667 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 8 81669 +en ||| buried in ||| 0.0769231 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 13 81669 +en ||| burned at ||| 1 0.351161 1.22445e-05 7.12782e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| burned in ||| 0.181818 0.717907 2.44891e-05 9.50556e-06 2.718 ||| 0-1 ||| 11 81669 +en ||| but , ||| 0.000706215 0.0001905 1.22445e-05 9.11047e-06 2.718 ||| 0-0 ||| 1416 81669 +en ||| but also great opportunities . in ||| 1 0.717907 1.22445e-05 9.95482e-18 2.718 ||| 0-5 ||| 1 81669 +en ||| but as a ||| 0.030303 0.0001905 1.22445e-05 1.51721e-08 2.718 ||| 0-0 ||| 33 81669 +en ||| but as ||| 0.00757576 0.0001905 1.22445e-05 3.77115e-07 2.718 ||| 0-0 ||| 132 81669 +en ||| but in ||| 0.00257732 0.717907 1.22445e-05 0.000569846 2.718 ||| 0-1 ||| 388 81669 +en ||| but ||| 0.000140036 0.0001905 3.67336e-05 4.46e-05 2.718 ||| 0-0 ||| 21423 81669 +en ||| butter shortage . " In ||| 1 0.0917031 1.22445e-05 1.81528e-18 2.718 ||| 0-4 ||| 1 81669 +en ||| buy into ||| 0.5 0.414384 1.22445e-05 1.28777e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| by a ||| 0.00534759 0.065573 6.12227e-05 0.000499291 2.718 ||| 0-0 ||| 935 81669 +en ||| by an ||| 0.00520833 0.065573 1.22445e-05 4.2957e-05 2.718 ||| 0-0 ||| 192 81669 +en ||| by and ||| 0.37931 0.065573 0.00013469 0.000104211 2.718 ||| 0-0 ||| 29 81669 +en ||| by any ||| 0.0166667 0.065573 1.22445e-05 1.12834e-05 2.718 ||| 0-0 ||| 60 81669 +en ||| by as ||| 0.166667 0.065573 2.44891e-05 0.000104935 2.718 ||| 0-0 ||| 12 81669 +en ||| by buying ||| 0.0555556 0.065573 1.22445e-05 5.64669e-07 2.718 ||| 0-0 ||| 18 81669 +en ||| by election ||| 0.25 0.065573 1.22445e-05 9.66762e-07 2.718 ||| 0-0 ||| 4 81669 +en ||| by far of ||| 1 0.065573 1.22445e-05 2.22088e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| by far ||| 0.0120482 0.065573 1.22445e-05 8.22058e-06 2.718 ||| 0-0 ||| 83 81669 +en ||| by flying ||| 1 0.065573 1.22445e-05 4.03335e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| by foreigners ||| 0.111111 0.065573 1.22445e-05 8.06669e-08 2.718 ||| 0-0 ||| 9 81669 +en ||| by further Inter-Governmental ||| 1 0.065573 1.22445e-05 2.61926e-11 2.718 ||| 0-0 ||| 1 81669 +en ||| by further ||| 0.0769231 0.065573 1.22445e-05 4.02962e-06 2.718 ||| 0-0 ||| 13 81669 +en ||| by government ||| 0.0666667 0.065573 1.22445e-05 6.20639e-06 2.718 ||| 0-0 ||| 15 81669 +en ||| by increasing spending ||| 1 0.065573 1.22445e-05 1.09344e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| by increasing ||| 0.0169492 0.065573 1.22445e-05 8.86095e-07 2.718 ||| 0-0 ||| 59 81669 +en ||| by its ||| 0.00628931 0.065573 1.22445e-05 2.46617e-05 2.718 ||| 0-0 ||| 159 81669 +en ||| by most ||| 0.05 0.065573 2.44891e-05 8.22058e-06 2.718 ||| 0-0 ||| 40 81669 +en ||| by news ||| 0.5 0.065573 1.22445e-05 1.1281e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| by on ||| 0.5 0.336652 1.22445e-05 0.00045977 2.718 ||| 0-1 ||| 2 81669 +en ||| by over ||| 0.2 0.159665 1.22445e-05 4.96152e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| by serious ||| 0.5 0.065573 1.22445e-05 2.57886e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| by showing in ||| 0.25 0.717907 1.22445e-05 4.07447e-07 2.718 ||| 0-2 ||| 4 81669 +en ||| by soaring global demand ||| 0.5 0.065573 1.22445e-05 2.661e-14 2.718 ||| 0-0 ||| 2 81669 +en ||| by soaring global ||| 0.5 0.065573 1.22445e-05 1.78113e-10 2.718 ||| 0-0 ||| 2 81669 +en ||| by soaring ||| 0.25 0.065573 1.22445e-05 3.22668e-07 2.718 ||| 0-0 ||| 4 81669 +en ||| by steam turbines ||| 1 0.065573 1.22445e-05 2.09734e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| by steam ||| 1 0.065573 1.22445e-05 3.22668e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| by the situation ||| 0.333333 0.065573 1.22445e-05 2.1429e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| by the vagaries ||| 0.333333 0.065573 1.22445e-05 4.2858e-09 2.718 ||| 0-0 ||| 3 81669 +en ||| by the ||| 0.0023108 0.065573 9.79564e-05 0.000659354 2.718 ||| 0-0 ||| 3462 81669 +en ||| by working his way up ||| 0.166667 0.065573 1.22445e-05 9.56839e-15 2.718 ||| 0-0 ||| 6 81669 +en ||| by working his way ||| 0.166667 0.065573 1.22445e-05 3.06316e-12 2.718 ||| 0-0 ||| 6 81669 +en ||| by working his ||| 0.166667 0.065573 1.22445e-05 2.01563e-09 2.718 ||| 0-0 ||| 6 81669 +en ||| by working ||| 0.0454545 0.065573 1.22445e-05 2.01543e-06 2.718 ||| 0-0 ||| 22 81669 +en ||| by ||| 0.0562804 0.065573 0.0126241 0.0124103 2.718 ||| 0-0 ||| 18319 81669 +en ||| call into ||| 0.2 0.414384 1.22445e-05 4.89708e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| called in ||| 0.111111 0.717907 1.22445e-05 0.00015828 2.718 ||| 0-1 ||| 9 81669 +en ||| came down in ||| 1 0.717907 1.22445e-05 2.96025e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| came from ||| 0.025 0.0190577 1.22445e-05 1.20137e-06 2.718 ||| 0-1 ||| 40 81669 +en ||| came in the ||| 0.0833333 0.717907 1.22445e-05 1.07635e-05 2.718 ||| 0-1 ||| 12 81669 +en ||| came in ||| 0.0344828 0.717907 1.22445e-05 0.00020259 2.718 ||| 0-1 ||| 29 81669 +en ||| came into being ||| 0.111111 0.414384 1.22445e-05 1.24249e-08 2.718 ||| 0-1 ||| 9 81669 +en ||| came into ||| 0.0434783 0.414384 1.22445e-05 8.24646e-06 2.718 ||| 0-1 ||| 23 81669 +en ||| came out in support ||| 1 0.717907 1.22445e-05 2.56733e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| came out in ||| 0.333333 0.717907 1.22445e-05 8.9861e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| camp at ||| 0.5 0.351161 1.22445e-05 7.12782e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| campaign ||| 0.00138313 0.0018182 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 723 81669 +en ||| can be found in ||| 0.125 0.717907 1.22445e-05 3.54674e-09 2.718 ||| 0-3 ||| 8 81669 +en ||| can pose ||| 0.333333 0.0263158 1.22445e-05 4.69938e-08 2.718 ||| 0-1 ||| 3 81669 +en ||| capital during ||| 0.333333 0.0947187 1.22445e-05 1.52951e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| captured by ||| 0.0952381 0.065573 2.44891e-05 3.22668e-07 2.718 ||| 0-1 ||| 21 81669 +en ||| carried out according to ||| 0.333333 0.0189899 1.22445e-05 9.92525e-13 2.718 ||| 0-3 ||| 3 81669 +en ||| carried out in ||| 0.0588235 0.717907 1.22445e-05 4.77414e-07 2.718 ||| 0-2 ||| 17 81669 +en ||| case for ||| 0.00884956 0.0255404 1.22445e-05 5.40625e-06 2.718 ||| 0-1 ||| 113 81669 +en ||| case in the ||| 0.25 0.717907 1.22445e-05 1.79971e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| case in ||| 0.0921053 0.717907 8.57118e-05 0.000338739 2.718 ||| 0-1 ||| 76 81669 +en ||| cash ||| 0.00371747 0.0752688 1.22445e-05 0.0001874 2.718 ||| 0-0 ||| 269 81669 +en ||| cast in ||| 0.4 0.717907 2.44891e-05 5.69846e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| cast- and ||| 0.5 1 1.22445e-05 7.47342e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| cast- ||| 0.5 1 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| casually on ||| 0.25 0.336652 1.22445e-05 8.8241e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| catch them when they fell ||| 1 0.0709982 1.22445e-05 2.85535e-16 2.718 ||| 0-2 ||| 1 81669 +en ||| catch them when they ||| 1 0.0709982 1.22445e-05 1.83152e-12 2.718 ||| 0-2 ||| 1 81669 +en ||| catch them when ||| 1 0.0709982 1.22445e-05 2.96555e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| catchy ||| 0.2 0.111111 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 5 81669 +en ||| caught in ||| 0.0769231 0.717907 2.44891e-05 4.1142e-05 2.718 ||| 0-1 ||| 26 81669 +en ||| cause a fall in ||| 1 0.717907 1.22445e-05 4.63159e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| central to ||| 0.0126582 0.0189899 1.22445e-05 1.4646e-06 2.718 ||| 0-1 ||| 79 81669 +en ||| centrist in ||| 0.5 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| certain about ||| 0.166667 0.0371521 1.22445e-05 4.77942e-07 2.718 ||| 0-1 ||| 6 81669 +en ||| certainly in ||| 0.125 0.717907 1.22445e-05 5.69846e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| certainly ||| 0.00182482 0.0065147 1.22445e-05 5.35e-05 2.718 ||| 0-0 ||| 548 81669 +en ||| chair ||| 0.0208333 0.0204082 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 48 81669 +en ||| chairs on ||| 0.333333 0.336652 1.22445e-05 8.8241e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| challenge in ||| 0.111111 0.717907 1.22445e-05 6.01532e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| challenged ||| 0.0117647 0.0462963 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 85 81669 +en ||| chances to ||| 0.2 0.0189899 1.22445e-05 1.12622e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| change in order ||| 0.5 0.717907 1.22445e-05 7.64698e-08 2.718 ||| 0-1 ||| 2 81669 +en ||| change in ||| 0.00505051 0.717907 1.22445e-05 9.49581e-05 2.718 ||| 0-1 ||| 198 81669 +en ||| changed in ||| 0.0769231 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-1 ||| 13 81669 +en ||| changeover within ||| 1 0.193123 1.22445e-05 2.3777e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| changes in ||| 0.00561798 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 178 81669 +en ||| charge of ||| 0.0147059 0.0080355 1.22445e-05 8.79579e-07 2.718 ||| 0-1 ||| 68 81669 +en ||| charge to ||| 0.142857 0.0189899 1.22445e-05 1.91578e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| charred ||| 0.5 0.5 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| cheering in ||| 0.142857 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| choice in ||| 0.25 0.717907 1.22445e-05 6.33217e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| chord with ||| 1 0.0232439 1.22445e-05 2.90543e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| chosen in ||| 0.125 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| circulated on ||| 1 0.336652 1.22445e-05 1.32362e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| circulating ||| 0.0714286 0.125 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 14 81669 +en ||| circumstances ||| 0.00310559 0.0027397 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 322 81669 +en ||| claim on rule in ||| 1 0.717907 1.22445e-05 1.34822e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| claim on ||| 0.166667 0.336652 1.22445e-05 1.93927e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| claim to govern on ||| 0.333333 0.336652 1.22445e-05 4.15923e-11 2.718 ||| 0-3 ||| 3 81669 +en ||| claims on ||| 0.125 0.336652 1.22445e-05 7.4937e-06 2.718 ||| 0-1 ||| 8 81669 +en ||| class at ||| 0.333333 0.351161 1.22445e-05 1.66316e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| clear in ||| 0.0714286 0.717907 1.22445e-05 0.000113969 2.718 ||| 0-1 ||| 14 81669 +en ||| clings to you ||| 0.166667 0.0189899 1.22445e-05 1.83867e-10 2.718 ||| 0-1 ||| 6 81669 +en ||| clings to ||| 0.0769231 0.0189899 1.22445e-05 1.12795e-07 2.718 ||| 0-1 ||| 13 81669 +en ||| close to ||| 0.00414938 0.0189899 1.22445e-05 4.62113e-06 2.718 ||| 0-1 ||| 241 81669 +en ||| closed over ||| 1 0.159665 1.22445e-05 5.7061e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| closely in ||| 0.333333 0.717907 1.22445e-05 4.43106e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| clustered in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| co-authored ||| 0.166667 0.272727 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 6 81669 +en ||| come across ||| 0.5 0.28681 1.22445e-05 4.09559e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| come back and haunt us all ||| 0.166667 0.0405569 1.22445e-05 5.93064e-20 2.718 ||| 0-1 ||| 6 81669 +en ||| come back and haunt us ||| 0.166667 0.0405569 1.22445e-05 2.28876e-17 2.718 ||| 0-1 ||| 6 81669 +en ||| come back and haunt ||| 0.166667 0.0405569 1.22445e-05 4.00484e-14 2.718 ||| 0-1 ||| 6 81669 +en ||| come back and ||| 0.166667 0.0405569 1.22445e-05 6.16129e-09 2.718 ||| 0-1 ||| 6 81669 +en ||| come back ||| 0.0909091 0.0405569 1.22445e-05 7.3374e-07 2.718 ||| 0-1 ||| 11 81669 +en ||| come from the fact ||| 1 0.0190577 1.22445e-05 1.23641e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| come from the ||| 0.0454545 0.0190577 1.22445e-05 1.88506e-07 2.718 ||| 0-1 ||| 22 81669 +en ||| come from ||| 0.00694444 0.0190577 1.22445e-05 3.54805e-06 2.718 ||| 0-1 ||| 144 81669 +en ||| come in ||| 0.0666667 0.717907 1.22445e-05 0.000598314 2.718 ||| 0-1 ||| 15 81669 +en ||| come on ||| 0.2 0.336652 1.22445e-05 8.33131e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| come over ||| 0.5 0.159665 1.22445e-05 8.99058e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| come up in ||| 1 0.717907 1.22445e-05 1.86895e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| comes at ||| 0.0909091 0.351161 4.89782e-05 1.23439e-05 2.718 ||| 0-1 ||| 44 81669 +en ||| comes in ||| 0.117647 0.717907 2.44891e-05 0.000164617 2.718 ||| 0-1 ||| 17 81669 +en ||| comes nowhere ||| 0.333333 0.131148 1.22445e-05 9.64134e-08 2.718 ||| 0-1 ||| 3 81669 +en ||| coming at ||| 0.1 0.351161 1.22445e-05 1.44823e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| coming in ||| 0.125 0.717907 1.22445e-05 0.000193134 2.718 ||| 0-1 ||| 8 81669 +en ||| coming on ||| 0.5 0.336652 1.22445e-05 2.68931e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| coming ||| 0.00195695 0.0059524 1.22445e-05 3.57e-05 2.718 ||| 0-0 ||| 511 81669 +en ||| command over ||| 1 0.159665 1.22445e-05 1.42836e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| commanding heights ||| 0.166667 0.04 1.22445e-05 1.7355e-10 2.718 ||| 0-0 ||| 6 81669 +en ||| commanding ||| 0.0526316 0.04 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 19 81669 +en ||| common in ||| 0.037037 0.717907 1.22445e-05 8.23328e-05 2.718 ||| 0-1 ||| 27 81669 +en ||| commonly repeated in ||| 0.25 0.717907 1.22445e-05 3.08931e-10 2.718 ||| 0-2 ||| 4 81669 +en ||| community provided any aid at all ||| 0.25 0.351161 1.22445e-05 1.53515e-19 2.718 ||| 0-4 ||| 4 81669 +en ||| community provided any aid at ||| 0.25 0.351161 1.22445e-05 5.92446e-17 2.718 ||| 0-4 ||| 4 81669 +en ||| companies , and shopping centers ||| 1 0.0625 1.22445e-05 2.06198e-17 2.718 ||| 0-3 ||| 1 81669 +en ||| companies , and shopping ||| 1 0.0625 1.22445e-05 3.17227e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| comparatively well ||| 0.5 0.12 1.22445e-05 4.64712e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| comparatively ||| 0.0344828 0.12 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 29 81669 +en ||| compared ||| 0.00865801 0.210938 2.44891e-05 0.0012045 2.718 ||| 0-0 ||| 231 81669 +en ||| compensated in ||| 0.5 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| competitiveness ||| 0.00215054 0.0062696 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 465 81669 +en ||| composed of ||| 0.025641 0.0080355 1.22445e-05 5.17868e-08 2.718 ||| 0-1 ||| 39 81669 +en ||| composites in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| compound deep in ||| 0.333333 0.717907 1.22445e-05 1.04941e-09 2.718 ||| 0-2 ||| 3 81669 +en ||| concentrated in ||| 0.0204082 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 49 81669 +en ||| concentrated ||| 0.0168067 0.0324675 2.44891e-05 4.46e-05 2.718 ||| 0-0 ||| 119 81669 +en ||| concern to ||| 0.0909091 0.0189899 1.22445e-05 1.4646e-06 2.718 ||| 0-1 ||| 11 81669 +en ||| concerned ||| 0.00487805 0.0048077 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 205 81669 +en ||| concerning ||| 0.0127119 0.0989399 3.67336e-05 0.0002498 2.718 ||| 0-0 ||| 236 81669 +en ||| concluded in ||| 0.4 0.717907 2.44891e-05 2.53482e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| concluding in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| conducted a large-scale exercise ||| 0.111111 0.148052 1.22445e-05 2.32975e-14 2.718 ||| 0-2 ||| 9 81669 +en ||| conducted a large-scale ||| 0.111111 0.148052 1.22445e-05 1.19475e-09 2.718 ||| 0-2 ||| 9 81669 +en ||| conducted in ||| 0.04 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 25 81669 +en ||| confidence in ||| 0.0123457 0.717907 2.44891e-05 2.53482e-05 2.718 ||| 0-1 ||| 162 81669 +en ||| confident ||| 0.0123457 0.195312 1.22445e-05 0.000223 2.718 ||| 0-0 ||| 81 81669 +en ||| confined to ||| 0.0147059 0.0189899 1.22445e-05 2.2559e-07 2.718 ||| 0-1 ||| 68 81669 +en ||| consensus view ||| 0.2 0.0416667 1.22445e-05 4.74684e-08 2.718 ||| 0-0 ||| 5 81669 +en ||| consensus ||| 0.0112108 0.0416667 6.12227e-05 0.0001874 2.718 ||| 0-0 ||| 446 81669 +en ||| considerably ||| 0.0147059 0.0285714 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 68 81669 +en ||| consideration to ||| 0.142857 0.0189899 1.22445e-05 9.02361e-07 2.718 ||| 0-1 ||| 7 81669 +en ||| consisting of ||| 0.0588235 0.0797753 1.22445e-05 3.55337e-07 2.718 ||| 0-0 0-1 ||| 17 81669 +en ||| consisting ||| 0.1 0.151515 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 10 81669 +en ||| constituted in ||| 1 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| constrain their decisions with ||| 0.25 0.0232439 1.22445e-05 1.0832e-14 2.718 ||| 0-3 ||| 4 81669 +en ||| constrained by its ||| 1 0.065573 1.22445e-05 3.20603e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| constrained by ||| 0.0357143 0.065573 1.22445e-05 1.61334e-07 2.718 ||| 0-1 ||| 28 81669 +en ||| constructed at ||| 1 0.351161 1.22445e-05 1.90075e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| constructed in ||| 0.25 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| contemplating ||| 0.0204082 0.147059 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 49 81669 +en ||| contending ||| 0.05 0.04 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 20 81669 +en ||| contested ||| 0.0416667 0.097561 1.22445e-05 3.57e-05 2.718 ||| 0-0 ||| 24 81669 +en ||| continue for ||| 0.111111 0.0255404 1.22445e-05 2.17293e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| continue in ||| 0.1 0.717907 1.22445e-05 0.000136149 2.718 ||| 0-1 ||| 10 81669 +en ||| continue to ||| 0.00274725 0.0189899 1.22445e-05 4.84672e-06 2.718 ||| 0-1 ||| 364 81669 +en ||| continued rule among ||| 0.5 0.0289855 1.22445e-05 1.09827e-11 2.718 ||| 0-2 ||| 2 81669 +en ||| contrary to the ethical code ||| 1 0.0189899 1.22445e-05 2.27875e-18 2.718 ||| 0-1 ||| 1 81669 +en ||| contrary to the ethical ||| 1 0.0189899 1.22445e-05 3.50577e-13 2.718 ||| 0-1 ||| 1 81669 +en ||| contrary to the ||| 0.05 0.0189899 1.22445e-05 1.79783e-08 2.718 ||| 0-1 ||| 20 81669 +en ||| contrary to ||| 0.00884956 0.0189899 1.22445e-05 3.38385e-07 2.718 ||| 0-1 ||| 113 81669 +en ||| contrary ||| 0.00795756 0.0227848 3.67336e-05 8.03e-05 2.718 ||| 0-0 ||| 377 81669 +en ||| contributing role in ||| 1 0.717907 1.22445e-05 3.12796e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| contributions in ||| 0.333333 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| conventional wisdom in ||| 1 0.717907 1.22445e-05 3.88303e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| converted into ||| 0.0909091 0.414384 1.22445e-05 2.5795e-07 2.718 ||| 0-1 ||| 11 81669 +en ||| corruption , letting the ||| 1 0.0006015 1.22445e-05 3.00287e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| cost-effective ||| 0.0163934 0.204082 1.22445e-05 8.92e-05 2.718 ||| 0-0 ||| 61 81669 +en ||| costs in ||| 0.0769231 0.717907 1.22445e-05 3.79735e-05 2.718 ||| 0-1 ||| 13 81669 +en ||| could be enhanced in ||| 0.25 0.717907 1.22445e-05 2.95211e-10 2.718 ||| 0-3 ||| 4 81669 +en ||| could only fall back on ||| 1 0.336652 1.22445e-05 2.62777e-14 2.718 ||| 0-4 ||| 1 81669 +en ||| counted in ||| 0.111111 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| countries in ||| 0.00574713 0.717907 1.22445e-05 0.000110801 2.718 ||| 0-1 ||| 174 81669 +en ||| countries ||| 0.000187459 0.0001687 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 10669 81669 +en ||| country 's ||| 0.00110988 0.0068465 1.22445e-05 2.61315e-06 2.718 ||| 0-1 ||| 901 81669 +en ||| couples " -- in Argentina and , ||| 0.5 0.717907 1.22445e-05 7.96776e-18 2.718 ||| 0-3 ||| 2 81669 +en ||| couples " -- in Argentina and ||| 0.5 0.717907 1.22445e-05 3.90059e-17 2.718 ||| 0-3 ||| 2 81669 +en ||| couples " -- in Argentina ||| 0.5 0.717907 1.22445e-05 4.64516e-15 2.718 ||| 0-3 ||| 2 81669 +en ||| couples " -- in ||| 0.5 0.717907 1.22445e-05 7.95405e-11 2.718 ||| 0-3 ||| 2 81669 +en ||| crash in the value ||| 1 0.717907 1.22445e-05 1.96758e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| crash in the ||| 1 0.717907 1.22445e-05 1.01005e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| crash in ||| 0.2 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| created in ||| 0.0222222 0.717907 1.22445e-05 6.96587e-05 2.718 ||| 0-1 ||| 45 81669 +en ||| creation in ||| 0.125 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| credibility to ||| 0.0909091 0.0189899 1.22445e-05 3.38385e-07 2.718 ||| 0-1 ||| 11 81669 +en ||| critical of ||| 0.0454545 0.0080355 1.22445e-05 2.58934e-07 2.718 ||| 0-1 ||| 22 81669 +en ||| critically in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| cross-country ||| 0.2 0.125 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 5 81669 +en ||| crowd in ||| 0.333333 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| culture in ||| 0.1 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| currency in the ||| 0.25 0.717907 1.22445e-05 3.36426e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| currency in ||| 0.125 0.717907 1.22445e-05 6.33217e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| current ||| 0.00194363 0.0021086 4.89782e-05 3.57e-05 2.718 ||| 0-0 ||| 2058 81669 +en ||| currently being debated ||| 0.5 0.0649123 1.22445e-05 9.69855e-12 2.718 ||| 0-0 ||| 2 81669 +en ||| currently being ||| 0.142857 0.0649123 1.22445e-05 4.97362e-07 2.718 ||| 0-0 ||| 7 81669 +en ||| currently underway in ||| 1 0.717907 1.22445e-05 2.46448e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| currently ||| 0.00767754 0.0649123 4.89782e-05 0.0003301 2.718 ||| 0-0 ||| 521 81669 +en ||| customs revenues should be ||| 1 0.0021256 1.22445e-05 2.02047e-16 2.718 ||| 0-2 ||| 1 81669 +en ||| customs revenues should ||| 1 0.0021256 1.22445e-05 1.9604e-14 2.718 ||| 0-2 ||| 1 81669 +en ||| cynical ||| 0.0178571 0.015625 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 56 81669 +en ||| damned if they don ||| 0.333333 0.0055076 1.22445e-05 3.23406e-14 2.718 ||| 0-1 ||| 3 81669 +en ||| damned if they ||| 0.111111 0.0055076 1.22445e-05 6.30421e-11 2.718 ||| 0-1 ||| 9 81669 +en ||| damned if ||| 0.0833333 0.0055076 1.22445e-05 1.02076e-08 2.718 ||| 0-1 ||| 12 81669 +en ||| day in ||| 0.0769231 0.717907 2.44891e-05 0.000129812 2.718 ||| 0-1 ||| 26 81669 +en ||| days , ||| 0.012987 0.005597 1.22445e-05 5.47445e-06 2.718 ||| 0-0 ||| 77 81669 +en ||| days ||| 0.00184162 0.005597 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 543 81669 +en ||| deal in ||| 0.3 0.717907 3.67336e-05 0.000183628 2.718 ||| 0-1 ||| 10 81669 +en ||| deal with ||| 0.00308642 0.0232439 1.22445e-05 1.68381e-06 2.718 ||| 0-1 ||| 324 81669 +en ||| deals in ||| 0.333333 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| death in ||| 0.0526316 0.717907 1.22445e-05 8.54526e-05 2.718 ||| 0-1 ||| 19 81669 +en ||| death over ||| 0.2 0.159665 1.22445e-05 1.28405e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| debated across the US and around the ||| 1 0.0001307 1.22445e-05 5.17964e-22 2.718 ||| 0-4 ||| 1 81669 +en ||| debated across the US and around ||| 1 0.0001307 1.22445e-05 9.74906e-21 2.718 ||| 0-4 ||| 1 81669 +en ||| debated across the US and ||| 1 0.0001307 1.22445e-05 1.85343e-17 2.718 ||| 0-4 ||| 1 81669 +en ||| debating ||| 0.030303 0.025641 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 33 81669 +en ||| debt in ||| 0.05 0.717907 1.22445e-05 6.64902e-05 2.718 ||| 0-1 ||| 20 81669 +en ||| debt-holders in ||| 0.333333 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| decade of ||| 0.0140845 0.0080355 1.22445e-05 3.62508e-07 2.718 ||| 0-1 ||| 71 81669 +en ||| decayed ||| 0.5 0.142857 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| decaying ||| 0.05 0.263158 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 20 81669 +en ||| decisions with ||| 0.25 0.0232439 1.22445e-05 2.32435e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| decline into ||| 0.5 0.414384 1.22445e-05 1.80367e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| declining ||| 0.00364964 0.153623 1.22445e-05 0.0004729 2.718 ||| 0-0 ||| 274 81669 +en ||| deep chord with ||| 1 0.0232439 1.22445e-05 3.2076e-12 2.718 ||| 0-2 ||| 1 81669 +en ||| deep in ||| 0.222222 0.717907 2.44891e-05 5.38161e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| deep inside ||| 0.25 0.14554 1.22445e-05 3.05366e-08 2.718 ||| 0-1 ||| 4 81669 +en ||| deep ||| 0.00416667 0.0036969 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 480 81669 +en ||| deeper into ||| 0.25 0.414384 2.44891e-05 5.159e-07 2.718 ||| 0-1 ||| 8 81669 +en ||| default in ||| 0.0588235 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 17 81669 +en ||| defeated in ||| 0.0909091 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 11 81669 +en ||| definitely back in ||| 1 0.717907 1.22445e-05 8.80722e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| degree in ||| 0.25 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| delivered to ||| 0.166667 0.0189899 1.22445e-05 1.23901e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| demand for ||| 0.00331126 0.0255404 1.22445e-05 1.16232e-06 2.718 ||| 0-1 ||| 302 81669 +en ||| demanded by the situation ||| 0.5 0.065573 1.22445e-05 1.39074e-12 2.718 ||| 0-1 ||| 2 81669 +en ||| demanded by the ||| 0.125 0.065573 1.22445e-05 4.27921e-08 2.718 ||| 0-1 ||| 8 81669 +en ||| demanded by ||| 0.0588235 0.065573 1.22445e-05 8.05428e-07 2.718 ||| 0-1 ||| 17 81669 +en ||| democracy , freedom and the rule of ||| 1 0.0080355 1.22445e-05 4.08131e-19 2.718 ||| 0-6 ||| 1 81669 +en ||| demonstrated ||| 0.00722022 0.0165017 2.44891e-05 4.46e-05 2.718 ||| 0-0 ||| 277 81669 +en ||| demonstrates in the ||| 0.5 0.717907 1.22445e-05 5.05027e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| demonstrates in ||| 0.5 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| demonstrations ||| 0.00869565 0.02 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 115 81669 +en ||| dependent on ||| 0.00769231 0.336652 1.22445e-05 8.8241e-07 2.718 ||| 0-1 ||| 130 81669 +en ||| depends for ||| 0.5 0.0255404 1.22445e-05 2.02277e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| depicting ||| 0.166667 0.25 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 6 81669 +en ||| deployed in ||| 0.166667 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| described as ||| 0.0322581 0.0296498 2.44891e-05 4.66696e-07 2.718 ||| 0-1 ||| 62 81669 +en ||| determined in ||| 0.5 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| develop in ||| 0.142857 0.717907 1.22445e-05 4.43106e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| developed , in ||| 1 0.717907 1.22445e-05 8.40411e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| developed over ||| 0.142857 0.159665 1.22445e-05 6.18222e-07 2.718 ||| 0-1 ||| 7 81669 +en ||| developing -- often with ||| 0.5 0.0232439 1.22445e-05 9.37548e-13 2.718 ||| 0-3 ||| 2 81669 +en ||| developing ||| 0.00645161 0.364813 7.34673e-05 0.0118215 2.718 ||| 0-0 ||| 930 81669 +en ||| developing-country ||| 0.0285714 0.236111 1.22445e-05 0.0001517 2.718 ||| 0-0 ||| 35 81669 +en ||| development in ||| 0.0434783 0.717907 1.22445e-05 8.23328e-05 2.718 ||| 0-1 ||| 23 81669 +en ||| development on ||| 0.166667 0.336652 1.22445e-05 1.14645e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| devices in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| dictatorships when it ||| 1 0.0709982 1.22445e-05 2.0197e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| dictatorships when ||| 1 0.0709982 1.22445e-05 7.5853e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| did , in ||| 0.333333 0.717907 1.22445e-05 0.000159728 2.718 ||| 0-2 ||| 3 81669 +en ||| did about ||| 0.333333 0.0371521 1.22445e-05 3.93566e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| did at ||| 0.2 0.351161 1.22445e-05 5.86345e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| did in ||| 0.301887 0.717907 0.000195913 0.000781942 2.718 ||| 0-1 ||| 53 81669 +en ||| did on ||| 0.5 0.336652 1.22445e-05 0.000108883 2.718 ||| 0-1 ||| 2 81669 +en ||| did ||| 0.002442 0.0026608 2.44891e-05 5.35e-05 2.718 ||| 0-0 ||| 819 81669 +en ||| died in ||| 0.0377358 0.717907 2.44891e-05 1.58426e-05 2.718 ||| 0-1 ||| 53 81669 +en ||| difference to ||| 0.117647 0.0189899 2.44891e-05 1.69019e-06 2.718 ||| 0-1 ||| 17 81669 +en ||| differences in ||| 0.015873 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 63 81669 +en ||| differently in ||| 0.142857 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| difficult in ||| 0.111111 0.717907 1.22445e-05 9.17896e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| dioxide in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| diplomatic ||| 0.00230947 0.0024938 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 433 81669 +en ||| directed at ||| 0.047619 0.351161 1.22445e-05 1.18797e-06 2.718 ||| 0-1 ||| 21 81669 +en ||| directly to ||| 0.0232558 0.0189899 1.22445e-05 1.12622e-06 2.718 ||| 0-1 ||| 43 81669 +en ||| disappointment in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| discontinued in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| discovery in ||| 1 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| discussed in ||| 0.333333 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| discussed ||| 0.0138889 0.0084034 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 72 81669 +en ||| discussion at ||| 1 0.351161 1.22445e-05 4.75188e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| display at ||| 1 0.351161 1.22445e-05 2.13469e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| display in ||| 0.166667 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| display ||| 0.0227273 0.0142857 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 44 81669 +en ||| dispute at a ||| 0.5 0.176174 1.22445e-05 5.08783e-10 2.718 ||| 0-1 0-2 ||| 2 81669 +en ||| dispute ||| 0.0060241 0.006993 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 166 81669 +en ||| disputed ||| 0.0142857 0.231579 1.22445e-05 0.0001963 2.718 ||| 0-0 ||| 70 81669 +en ||| distressed ||| 0.0181818 0.215909 1.22445e-05 0.0001695 2.718 ||| 0-0 ||| 55 81669 +en ||| disturbances in ||| 0.166667 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| divide during his 40 years in power ||| 0.333333 0.717907 1.22445e-05 1.1342e-23 2.718 ||| 0-5 ||| 3 81669 +en ||| divide during his 40 years in ||| 0.333333 0.717907 1.22445e-05 2.39232e-20 2.718 ||| 0-5 ||| 3 81669 +en ||| do believe in ||| 1 0.717907 1.22445e-05 1.66956e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| do in ||| 0.1875 0.717907 7.34673e-05 0.00111751 2.718 ||| 0-1 ||| 32 81669 +en ||| do not ||| 0.00107643 0.0011915 1.22445e-05 4.70421e-07 2.718 ||| 0-1 ||| 929 81669 +en ||| do on ||| 0.4 0.336652 2.44891e-05 0.00015561 2.718 ||| 0-1 ||| 5 81669 +en ||| do so in ||| 0.0555556 0.717907 1.22445e-05 2.51832e-06 2.718 ||| 0-2 ||| 18 81669 +en ||| do they have in ||| 0.5 0.717907 1.22445e-05 3.56331e-08 2.718 ||| 0-3 ||| 2 81669 +en ||| do to ||| 0.0163934 0.0189899 1.22445e-05 3.9782e-05 2.718 ||| 0-1 ||| 61 81669 +en ||| doctrine of ||| 0.0238095 0.0076336 1.22445e-05 2.40443e-07 2.718 ||| 0-0 ||| 42 81669 +en ||| doctrine ||| 0.00588235 0.0076336 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 170 81669 +en ||| does in ||| 0.333333 0.717907 2.44891e-05 0.000474839 2.718 ||| 0-1 ||| 6 81669 +en ||| does on ||| 0.5 0.336652 1.22445e-05 6.61197e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| doing in ||| 0.117647 0.717907 2.44891e-05 0.000177291 2.718 ||| 0-1 ||| 17 81669 +en ||| dollar in ||| 0.0714286 0.717907 1.22445e-05 6.33217e-05 2.718 ||| 0-1 ||| 14 81669 +en ||| dollar ||| 0.000831255 0.0008741 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 1203 81669 +en ||| dollar-denominated ||| 0.0344828 0.340659 1.22445e-05 0.0002766 2.718 ||| 0-0 ||| 29 81669 +en ||| dollars ||| 0.00179533 0.0020492 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 557 81669 +en ||| dominant in ||| 0.125 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 8 81669 +en ||| dominant ||| 0.00505051 0.010582 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 198 81669 +en ||| dominated ||| 0.0285714 0.0764706 6.12227e-05 0.000116 2.718 ||| 0-0 ||| 175 81669 +en ||| don 't need to tell ||| 0.333333 0.0189899 1.22445e-05 2.5832e-16 2.718 ||| 0-3 ||| 3 81669 +en ||| don 't need to ||| 0.1 0.0189899 1.22445e-05 2.09336e-12 2.718 ||| 0-3 ||| 10 81669 +en ||| done , in ||| 1 0.717907 1.22445e-05 2.32806e-05 2.718 ||| 0-2 ||| 1 81669 +en ||| done in ||| 0.0277778 0.717907 1.22445e-05 0.000113969 2.718 ||| 0-1 ||| 36 81669 +en ||| done on ||| 0.2 0.336652 1.22445e-05 1.58698e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| double-digit ||| 0.0416667 0.0666667 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 24 81669 +en ||| down at ||| 0.666667 0.351161 2.44891e-05 5.34111e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| down from ||| 0.0526316 0.0190577 1.22445e-05 4.22389e-06 2.718 ||| 0-1 ||| 19 81669 +en ||| down in ||| 0.285714 0.717907 0.000122445 0.000712284 2.718 ||| 0-1 ||| 35 81669 +en ||| down into ||| 0.333333 0.414384 1.22445e-05 2.89936e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| down through ||| 0.1 0.021007 1.22445e-05 8.21341e-07 2.718 ||| 0-1 ||| 10 81669 +en ||| down to ||| 0.0116279 0.0189899 1.22445e-05 2.53563e-05 2.718 ||| 0-1 ||| 86 81669 +en ||| down upon him ||| 0.5 0.117761 1.22445e-05 5.52574e-10 2.718 ||| 0-1 ||| 2 81669 +en ||| down upon ||| 0.333333 0.117761 1.22445e-05 7.95185e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| down ||| 0.0299296 0.0242537 0.000208157 0.000348 2.718 ||| 0-0 ||| 568 81669 +en ||| draft ||| 0.00609756 0.0232558 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 164 81669 +en ||| dramatically ||| 0.00769231 0.0208333 2.44891e-05 4.46e-05 2.718 ||| 0-0 ||| 260 81669 +en ||| draw it in ||| 0.333333 0.717907 1.22445e-05 1.2642e-06 2.718 ||| 0-2 ||| 3 81669 +en ||| draw on ||| 0.0434783 0.336652 1.22445e-05 6.61129e-06 2.718 ||| 0-1 ||| 23 81669 +en ||| draw together ||| 0.5 0.0832487 1.22445e-05 7.12578e-08 2.718 ||| 0-1 ||| 2 81669 +en ||| drawn in to ||| 0.5 0.717907 1.22445e-05 6.26891e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| drawn in ||| 0.2 0.717907 1.22445e-05 7.59958e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| drawn into ||| 0.0909091 0.414384 1.22445e-05 3.09341e-06 2.718 ||| 0-1 ||| 11 81669 +en ||| drivers in ||| 1 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| due in ||| 0.0645161 0.717907 2.44891e-05 0.000120306 2.718 ||| 0-1 ||| 31 81669 +en ||| due to ||| 0.00319489 0.0189899 1.22445e-05 4.28275e-06 2.718 ||| 0-1 ||| 313 81669 +en ||| during Europe ||| 0.5 0.0947187 1.22445e-05 7.07491e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| during a ||| 0.0188679 0.0947187 2.44891e-05 5.92255e-05 2.718 ||| 0-0 ||| 106 81669 +en ||| during his 40 years in power ||| 0.333333 0.717907 1.22445e-05 2.49275e-19 2.718 ||| 0-4 ||| 3 81669 +en ||| during his 40 years in ||| 0.333333 0.717907 1.22445e-05 5.25785e-16 2.718 ||| 0-4 ||| 3 81669 +en ||| during his ||| 0.0107527 0.0947187 1.22445e-05 1.47225e-06 2.718 ||| 0-0 ||| 93 81669 +en ||| during last ||| 1 0.0947187 1.22445e-05 4.20579e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| during my ||| 0.1 0.0947187 1.22445e-05 3.15471e-07 2.718 ||| 0-0 ||| 10 81669 +en ||| during ||| 0.0720207 0.0947187 0.00170199 0.0014721 2.718 ||| 0-0 ||| 1930 81669 +en ||| each in ||| 0.142857 0.717907 1.22445e-05 0.000253238 2.718 ||| 0-1 ||| 7 81669 +en ||| each other in ||| 0.0555556 0.717907 1.22445e-05 2.97681e-07 2.718 ||| 0-2 ||| 18 81669 +en ||| each other regarding those relationships ||| 0.5 0.102881 1.22445e-05 1.32802e-18 2.718 ||| 0-2 ||| 2 81669 +en ||| each other regarding those ||| 0.5 0.102881 1.22445e-05 6.81036e-14 2.718 ||| 0-2 ||| 2 81669 +en ||| each other regarding ||| 0.5 0.102881 1.22445e-05 1.3618e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| each time in ||| 1 0.717907 1.22445e-05 2.36828e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| each ||| 0.000854701 0.0028736 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 1170 81669 +en ||| eager to ||| 0.0172414 0.0189899 1.22445e-05 3.38385e-07 2.718 ||| 0-1 ||| 58 81669 +en ||| earlier , taken part in ||| 1 0.717907 1.22445e-05 6.21868e-12 2.718 ||| 0-4 ||| 1 81669 +en ||| earlier in ||| 0.0714286 0.717907 1.22445e-05 0.000101295 2.718 ||| 0-1 ||| 14 81669 +en ||| earlier this ||| 0.0104167 0.0158014 1.22445e-05 1.242e-07 2.718 ||| 0-0 ||| 96 81669 +en ||| earlier ||| 0.00537634 0.0158014 2.44891e-05 6.25e-05 2.718 ||| 0-0 ||| 372 81669 +en ||| early years in ||| 0.166667 0.717907 1.22445e-05 2.10957e-08 2.718 ||| 0-2 ||| 6 81669 +en ||| echoed down through ||| 0.25 0.021007 1.22445e-05 5.33871e-12 2.718 ||| 0-2 ||| 4 81669 +en ||| economic incentives . in ||| 1 0.717907 1.22445e-05 6.52816e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| economically ||| 0.0041841 0.0664207 1.22445e-05 0.0001606 2.718 ||| 0-0 ||| 239 81669 +en ||| economies in ||| 0.0416667 0.717907 1.22445e-05 4.74791e-05 2.718 ||| 0-1 ||| 24 81669 +en ||| edge in ||| 0.333333 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| educated at ||| 0.5 0.351161 1.22445e-05 1.18797e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| effect in ||| 0.0666667 0.717907 1.22445e-05 6.01532e-05 2.718 ||| 0-1 ||| 15 81669 +en ||| effect on ||| 0.0416667 0.336652 2.44891e-05 8.37611e-06 2.718 ||| 0-1 ||| 48 81669 +en ||| effectively at ||| 0.166667 0.351161 1.22445e-05 4.27303e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| effectively in ||| 0.166667 0.717907 1.22445e-05 5.69846e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| effectively ||| 0.0131926 0.0604839 6.12227e-05 0.0002677 2.718 ||| 0-0 ||| 379 81669 +en ||| effort in ||| 0.25 0.717907 1.22445e-05 0.000136149 2.718 ||| 0-1 ||| 4 81669 +en ||| effort to ||| 0.0115607 0.0189899 2.44891e-05 4.84672e-06 2.718 ||| 0-1 ||| 173 81669 +en ||| efforts in ||| 0.0833333 0.717907 1.22445e-05 7.91643e-05 2.718 ||| 0-1 ||| 12 81669 +en ||| either in a ||| 1 0.717907 1.22445e-05 1.93587e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| either in ||| 0.0666667 0.717907 1.22445e-05 0.000481177 2.718 ||| 0-1 ||| 15 81669 +en ||| either ||| 0.00445434 0.02079 2.44891e-05 0.0001784 2.718 ||| 0-0 ||| 449 81669 +en ||| election of ||| 0.0188679 0.0080355 1.22445e-05 6.20645e-07 2.718 ||| 0-1 ||| 53 81669 +en ||| elections in ||| 0.02 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-1 ||| 50 81669 +en ||| else in ||| 0.0909091 0.717907 1.22445e-05 7.59958e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| elsewhere in ||| 0.0144928 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 69 81669 +en ||| elsewhere ||| 0.00171821 0.218182 1.22445e-05 0.0023554 2.718 ||| 0-0 ||| 582 81669 +en ||| embarrassingly ||| 0.25 0.166667 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| embryonic ||| 0.0526316 0.0689655 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 19 81669 +en ||| emerge from ||| 0.0344828 0.0190577 1.22445e-05 4.5066e-07 2.718 ||| 0-1 ||| 29 81669 +en ||| emerge in ||| 0.25 0.717907 1.22445e-05 7.59958e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| emerged during Europe ||| 0.5 0.0947187 1.22445e-05 5.97123e-11 2.718 ||| 0-1 ||| 2 81669 +en ||| emerged during ||| 0.333333 0.0947187 1.22445e-05 1.24245e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| emerged in ||| 0.0555556 0.717907 1.22445e-05 4.1142e-05 2.718 ||| 0-1 ||| 18 81669 +en ||| emerges from ||| 0.0833333 0.0190577 1.22445e-05 3.75791e-08 2.718 ||| 0-1 ||| 12 81669 +en ||| emerging stranglehold ||| 0.5 0.139252 1.22445e-05 1.85575e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| emerging ||| 0.00715015 0.139252 8.57118e-05 0.0014275 2.718 ||| 0-0 ||| 979 81669 +en ||| emphasized ||| 0.0142857 0.245763 1.22445e-05 0.0002587 2.718 ||| 0-0 ||| 70 81669 +en ||| emphasizing ||| 0.0285714 0.219512 1.22445e-05 0.0001606 2.718 ||| 0-0 ||| 35 81669 +en ||| employed in ||| 0.222222 0.717907 2.44891e-05 9.50556e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| employing people ||| 0.5 0.0188679 1.22445e-05 7.16717e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| employing ||| 0.0208333 0.0188679 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 48 81669 +en ||| employment in ||| 0.0217391 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 46 81669 +en ||| empowered ||| 0.0188679 0.0243902 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 53 81669 +en ||| en ||| 0.4 0.5 2.44891e-05 9.81e-05 2.718 ||| 0-0 ||| 5 81669 +en ||| enacted ||| 0.0116279 0.0322581 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 86 81669 +en ||| ended with ||| 0.0588235 0.0232439 1.22445e-05 2.61042e-07 2.718 ||| 0-1 ||| 17 81669 +en ||| enforced for ||| 1 0.0255404 1.22445e-05 1.01139e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| engage in ||| 0.0267857 0.717907 3.67336e-05 5.38161e-05 2.718 ||| 0-1 ||| 112 81669 +en ||| engaged in live ||| 1 0.717907 1.22445e-05 1.71918e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| engaged in ||| 0.0769231 0.717907 0.000122445 6.96587e-05 2.718 ||| 0-1 ||| 130 81669 +en ||| engaged to ||| 1 0.0189899 1.22445e-05 2.47976e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| engagement ||| 0.00662252 0.0204082 1.22445e-05 3.57e-05 2.718 ||| 0-0 ||| 151 81669 +en ||| engaging in ||| 0.0294118 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 34 81669 +en ||| engine at ||| 0.1 0.351161 1.22445e-05 4.75188e-07 2.718 ||| 0-1 ||| 10 81669 +en ||| enhanced in ||| 0.25 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| enough to ||| 0.00416667 0.0189899 1.22445e-05 5.07058e-06 2.718 ||| 0-1 ||| 240 81669 +en ||| enraged in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| enter into ||| 0.0333333 0.414384 1.22445e-05 1.0318e-06 2.718 ||| 0-1 ||| 30 81669 +en ||| enter ||| 0.0283019 0.201613 3.67336e-05 0.0004461 2.718 ||| 0-0 ||| 106 81669 +en ||| entering middle ||| 0.142857 0.195266 1.22445e-05 1.7193e-08 2.718 ||| 0-0 ||| 7 81669 +en ||| entering ||| 0.0102041 0.195266 1.22445e-05 0.0002944 2.718 ||| 0-0 ||| 98 81669 +en ||| enterprise ||| 0.00862069 0.0087719 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 116 81669 +en ||| entirely absent in ||| 0.5 0.717907 1.22445e-05 1.64763e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| epochal shift in ||| 0.5 0.717907 1.22445e-05 5.55442e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| equal in ||| 0.1 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| equities in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| equivalent ||| 0.00995025 0.0104712 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 201 81669 +en ||| erupted in ||| 0.0526316 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 19 81669 +en ||| especially warm just ||| 0.333333 0.178642 1.22445e-05 6.94005e-11 2.718 ||| 0-0 ||| 3 81669 +en ||| especially warm ||| 0.333333 0.178642 1.22445e-05 6.28628e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| especially ||| 0.00248963 0.178642 3.67336e-05 0.0024178 2.718 ||| 0-0 ||| 1205 81669 +en ||| essentially ||| 0.00555556 0.0696517 1.22445e-05 0.0001249 2.718 ||| 0-0 ||| 180 81669 +en ||| established in ||| 0.0540541 0.717907 2.44891e-05 8.23328e-05 2.718 ||| 0-1 ||| 37 81669 +en ||| establishment in ||| 0.2 0.717907 1.22445e-05 4.1142e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| estate became ||| 1 0.10951 1.22445e-05 4.40733e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| eurozone as ||| 0.1 0.0296498 1.22445e-05 1.40225e-07 2.718 ||| 0-1 ||| 10 81669 +en ||| even as we ||| 0.125 0.0296498 1.22445e-05 1.51585e-08 2.718 ||| 0-1 ||| 8 81669 +en ||| even as ||| 0.00518135 0.0296498 1.22445e-05 6.53806e-06 2.718 ||| 0-1 ||| 193 81669 +en ||| even in ||| 0.0034965 0.717907 1.22445e-05 0.000443203 2.718 ||| 0-1 ||| 286 81669 +en ||| event ||| 0.00888889 0.0088106 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 225 81669 +en ||| events on ||| 0.25 0.336652 1.22445e-05 4.40526e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| eventually leaves ||| 0.333333 0.0448934 1.22445e-05 1.39191e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| eventually must be ||| 1 0.0448934 1.22445e-05 2.38872e-09 2.718 ||| 0-0 ||| 1 81669 +en ||| eventually must ||| 1 0.0448934 1.22445e-05 2.31771e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| eventually ||| 0.00767754 0.0448934 4.89782e-05 0.0003569 2.718 ||| 0-0 ||| 521 81669 +en ||| ever did in ||| 1 0.717907 1.22445e-05 4.67211e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| ever larger in ||| 1 0.717907 1.22445e-05 2.83687e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| ever more hardened in ||| 0.5 0.717907 1.22445e-05 4.04499e-12 2.718 ||| 0-3 ||| 2 81669 +en ||| ever were in ||| 1 0.717907 1.22445e-05 6.44996e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| ever-rising ||| 0.2 0.142857 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 5 81669 +en ||| everywhere -- ||| 0.111111 0.255968 1.22445e-05 8.6553e-06 2.718 ||| 0-0 ||| 9 81669 +en ||| everywhere in ||| 0.0625 0.717907 2.44891e-05 1.90111e-05 2.718 ||| 0-1 ||| 32 81669 +en ||| everywhere might well ||| 0.166667 0.255968 1.22445e-05 1.76459e-09 2.718 ||| 0-0 ||| 6 81669 +en ||| everywhere might ||| 0.166667 0.255968 1.22445e-05 1.01764e-06 2.718 ||| 0-0 ||| 6 81669 +en ||| everywhere ||| 0.0170455 0.255968 7.34673e-05 0.0017219 2.718 ||| 0-0 ||| 352 81669 +en ||| examined ||| 0.03125 0.0652174 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 32 81669 +en ||| example , is on ||| 0.333333 0.336652 1.22445e-05 2.07739e-08 2.718 ||| 0-3 ||| 3 81669 +en ||| exchange in ||| 0.333333 0.717907 1.22445e-05 6.96587e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| exist in ||| 0.0434783 0.717907 1.22445e-05 3.79735e-05 2.718 ||| 0-1 ||| 23 81669 +en ||| existence in ||| 0.25 0.717907 2.44891e-05 2.53482e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| exists in ||| 0.04 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 25 81669 +en ||| exists ||| 0.0170455 0.0313901 3.67336e-05 6.25e-05 2.718 ||| 0-0 ||| 176 81669 +en ||| expanding faster ||| 0.25 0.0847458 1.22445e-05 8.1172e-09 2.718 ||| 0-0 ||| 4 81669 +en ||| expanding populations ||| 0.5 0.0847458 1.22445e-05 6.9576e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| expanding ||| 0.0186047 0.0847458 4.89782e-05 0.0001784 2.718 ||| 0-0 ||| 215 81669 +en ||| expenditures on ||| 0.0769231 0.336652 1.22445e-05 8.8241e-07 2.718 ||| 0-1 ||| 13 81669 +en ||| expensive watches , ||| 1 0.142857 1.22445e-05 9.45364e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| expensive watches ||| 1 0.142857 1.22445e-05 4.628e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| experience in ||| 0.0243902 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 41 81669 +en ||| experience with ||| 0.0434783 0.0232439 1.22445e-05 2.90097e-07 2.718 ||| 0-1 ||| 23 81669 +en ||| experienced in ||| 0.0909091 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| explain a ||| 0.166667 0.0011873 1.22445e-05 1.39191e-08 2.718 ||| 0-1 ||| 6 81669 +en ||| explain in ||| 0.5 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| explaining at ||| 0.333333 0.351161 1.22445e-05 2.37594e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| exploits make ||| 0.5 0.2 1.22445e-05 1.17329e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| exploits ||| 0.142857 0.2 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 7 81669 +en ||| exploring ||| 0.0322581 0.0666667 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 31 81669 +en ||| exposed on ||| 1 0.336652 1.22445e-05 3.08844e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| express lane to ||| 1 0.0189899 1.22445e-05 1.46634e-12 2.718 ||| 0-2 ||| 1 81669 +en ||| expressed publicly ||| 0.2 0.0943396 1.22445e-05 5.798e-09 2.718 ||| 0-1 ||| 5 81669 +en ||| expression in ||| 0.0714286 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 14 81669 +en ||| extensively in ||| 0.5 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| extent in ||| 0.142857 0.717907 1.22445e-05 4.1142e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| extent to ||| 0.0222222 0.0705809 1.22445e-05 8.36072e-06 2.718 ||| 0-0 0-1 ||| 45 81669 +en ||| extent ||| 0.00539084 0.122172 2.44891e-05 0.0004818 2.718 ||| 0-0 ||| 371 81669 +en ||| exterminated , ||| 0.166667 0.125 1.22445e-05 1.81801e-06 2.718 ||| 0-0 ||| 6 81669 +en ||| exterminated ||| 0.111111 0.125 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 9 81669 +en ||| eye on ||| 0.181818 0.336652 2.44891e-05 1.27814e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| eye to eye on ||| 0.333333 0.336652 1.22445e-05 1.98532e-10 2.718 ||| 0-3 ||| 3 81669 +en ||| eyes on ||| 0.2 0.336652 1.22445e-05 6.17008e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| faced ||| 0.0106952 0.0045662 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 187 81669 +en ||| facility ||| 0.0298507 0.0186916 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 67 81669 +en ||| facto ruler in place of his incapacitated ||| 1 0.717907 1.22445e-05 1.84164e-23 2.718 ||| 0-2 ||| 1 81669 +en ||| facto ruler in place of his ||| 1 0.717907 1.22445e-05 2.83329e-18 2.718 ||| 0-2 ||| 1 81669 +en ||| facto ruler in place of ||| 1 0.717907 1.22445e-05 2.833e-15 2.718 ||| 0-2 ||| 1 81669 +en ||| facto ruler in place ||| 1 0.717907 1.22445e-05 1.04863e-13 2.718 ||| 0-2 ||| 1 81669 +en ||| facto ruler in ||| 1 0.717907 1.22445e-05 8.23816e-11 2.718 ||| 0-2 ||| 1 81669 +en ||| factor in ||| 0.0322581 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-1 ||| 31 81669 +en ||| fail in ||| 0.0833333 0.717907 1.22445e-05 5.38161e-05 2.718 ||| 0-1 ||| 12 81669 +en ||| failed in ||| 0.0606061 0.717907 2.44891e-05 8.86211e-05 2.718 ||| 0-1 ||| 33 81669 +en ||| failed to ||| 0.00392157 0.0189899 1.22445e-05 3.15479e-06 2.718 ||| 0-1 ||| 255 81669 +en ||| failing in ||| 0.125 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| failing ||| 0.0125786 0.0389105 2.44891e-05 8.92e-05 2.718 ||| 0-0 ||| 159 81669 +en ||| failures at ||| 1 0.351161 1.22445e-05 4.75188e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| faith in ||| 0.0126582 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 79 81669 +en ||| fall back on ||| 0.0909091 0.336652 1.22445e-05 2.14427e-08 2.718 ||| 0-2 ||| 11 81669 +en ||| fall by a ||| 0.333333 0.065573 1.22445e-05 1.13489e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| fall by ||| 0.125 0.065573 1.22445e-05 2.82086e-06 2.718 ||| 0-1 ||| 8 81669 +en ||| fall in ||| 0.020202 0.717907 2.44891e-05 0.000110801 2.718 ||| 0-1 ||| 99 81669 +en ||| fall to ||| 0.0714286 0.0189899 1.22445e-05 3.94436e-06 2.718 ||| 0-1 ||| 14 81669 +en ||| falling in ||| 0.117647 0.717907 2.44891e-05 4.74791e-05 2.718 ||| 0-1 ||| 17 81669 +en ||| fame in ||| 0.333333 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| far behind . in ||| 1 0.717907 1.22445e-05 2.89209e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| faring particularly ||| 0.5 0.220077 1.22445e-05 3.30551e-08 2.718 ||| 0-1 ||| 2 81669 +en ||| faring poorly in ||| 0.333333 0.717907 1.22445e-05 2.05954e-10 2.718 ||| 0-2 ||| 3 81669 +en ||| farms in ||| 0.5 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| fashion in ||| 0.25 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| fashion ||| 0.0105263 0.009434 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 95 81669 +en ||| fast as it has in ||| 1 0.717907 1.22445e-05 3.07393e-11 2.718 ||| 0-4 ||| 1 81669 +en ||| fast in ||| 0.5 0.717907 1.22445e-05 4.1142e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| favor more ||| 0.5 0.0004911 1.22445e-05 4.5154e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| favoring ||| 0.03125 0.0714286 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 32 81669 +en ||| features in ||| 0.142857 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| fed at ||| 1 0.351161 1.22445e-05 9.50375e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| fertility rates in ||| 0.333333 0.717907 1.22445e-05 5.55442e-10 2.718 ||| 0-2 ||| 3 81669 +en ||| fiasco in ||| 0.5 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| field in ||| 0.2 0.717907 2.44891e-05 3.16365e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| field ||| 0.00985222 0.0286885 2.44891e-05 6.25e-05 2.718 ||| 0-0 ||| 203 81669 +en ||| fifth ||| 0.0166667 0.131313 1.22445e-05 0.000116 2.718 ||| 0-0 ||| 60 81669 +en ||| fight against ubiquitous terrorist networks capable ||| 1 0.0487805 1.22445e-05 5.10178e-26 2.718 ||| 0-2 ||| 1 81669 +en ||| fight against ubiquitous terrorist networks ||| 1 0.0487805 1.22445e-05 3.41484e-22 2.718 ||| 0-2 ||| 1 81669 +en ||| fight against ubiquitous terrorist ||| 1 0.0487805 1.22445e-05 1.7512e-17 2.718 ||| 0-2 ||| 1 81669 +en ||| fight against ubiquitous ||| 1 0.0487805 1.22445e-05 8.98052e-13 2.718 ||| 0-2 ||| 1 81669 +en ||| fight ||| 0.0020284 0.0033613 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 493 81669 +en ||| fill in ||| 0.166667 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| financially ||| 0.0140845 0.0543478 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 71 81669 +en ||| financing to prevent a ||| 0.166667 0.0189899 1.22445e-05 5.89029e-13 2.718 ||| 0-1 ||| 6 81669 +en ||| financing to prevent ||| 0.166667 0.0189899 1.22445e-05 1.46408e-11 2.718 ||| 0-1 ||| 6 81669 +en ||| financing to ||| 0.0833333 0.0189899 1.22445e-05 1.12622e-06 2.718 ||| 0-1 ||| 12 81669 +en ||| find himself in ||| 1 0.717907 1.22445e-05 7.59048e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| find itself ||| 0.0909091 0.0434066 1.22445e-05 3.24983e-07 2.718 ||| 0-1 ||| 11 81669 +en ||| find out in ||| 1 0.717907 1.22445e-05 9.9699e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| find purchase in ||| 1 0.717907 1.22445e-05 4.38302e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| find ||| 0.0013624 0.0009901 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 734 81669 +en ||| finds itself in ||| 0.0833333 0.717907 1.22445e-05 2.73751e-08 2.718 ||| 0-2 ||| 12 81669 +en ||| fine line ||| 0.333333 0.037037 1.22445e-05 1.23575e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| fine ||| 0.0508475 0.037037 3.67336e-05 2.68e-05 2.718 ||| 0-0 ||| 59 81669 +en ||| finishing line on ||| 0.5 0.336652 1.22445e-05 6.10319e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| fire ! ' in ||| 1 0.717907 1.22445e-05 3.89841e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| first and ||| 0.0194175 0.0758995 2.44891e-05 2.30744e-05 2.718 ||| 0-0 ||| 103 81669 +en ||| first appear ||| 0.5 0.0758995 1.22445e-05 4.99568e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| first observed ||| 1 0.0758995 1.22445e-05 1.42891e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| first place ||| 0.008 0.0758995 1.22445e-05 3.4978e-06 2.718 ||| 0-0 ||| 125 81669 +en ||| first ||| 0.0040864 0.0758995 0.000171424 0.0027479 2.718 ||| 0-0 ||| 3426 81669 +en ||| fiscal ||| 0.000595948 0.0006297 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 1678 81669 +en ||| fit ||| 0.0151515 0.0604027 1.22445e-05 8.03e-05 2.718 ||| 0-0 ||| 66 81669 +en ||| fits in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| flares up ||| 0.25 0.0107098 1.22445e-05 2.4934e-09 2.718 ||| 0-1 ||| 4 81669 +en ||| flat in ||| 0.5 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| flat leading ||| 1 0.0073529 1.22445e-05 2.03125e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| flock to ||| 0.142857 0.172414 1.22445e-05 3.67906e-06 2.718 ||| 0-0 ||| 7 81669 +en ||| flock ||| 0.0769231 0.172414 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 13 81669 +en ||| flourish in ||| 0.2 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| flown in ||| 0.2 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| focus has ||| 0.333333 0.0041379 1.22445e-05 8.89385e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| focus in ||| 0.25 0.717907 1.22445e-05 6.96587e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| focus on ||| 0.0101695 0.336652 3.67336e-05 9.69972e-06 2.718 ||| 0-1 ||| 295 81669 +en ||| focus ||| 0.00169779 0.0041379 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 589 81669 +en ||| focused on ||| 0.0118343 0.336652 2.44891e-05 4.84647e-06 2.718 ||| 0-1 ||| 169 81669 +en ||| folded into ||| 0.166667 0.414384 1.22445e-05 1.28975e-07 2.718 ||| 0-1 ||| 6 81669 +en ||| follow through on ||| 0.0833333 0.336652 1.22445e-05 5.80794e-09 2.718 ||| 0-2 ||| 12 81669 +en ||| followed by ||| 0.00606061 0.065573 1.22445e-05 2.01543e-06 2.718 ||| 0-1 ||| 165 81669 +en ||| following up on ||| 0.333333 0.336652 1.22445e-05 2.47863e-08 2.718 ||| 0-2 ||| 3 81669 +en ||| following ||| 0.00129199 0.0014903 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 774 81669 +en ||| football game in ||| 1 0.717907 1.22445e-05 2.2224e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| for , at ||| 0.5 0.351161 1.22445e-05 3.55437e-05 2.718 ||| 0-2 ||| 2 81669 +en ||| for , in ||| 0.25 0.717907 1.22445e-05 0.000474006 2.718 ||| 0-2 ||| 4 81669 +en ||| for a ||| 0.0022792 0.0255404 4.89782e-05 0.000313001 2.718 ||| 0-0 ||| 1755 81669 +en ||| for almost ||| 0.0232558 0.0255404 1.22445e-05 1.86951e-06 2.718 ||| 0-0 ||| 43 81669 +en ||| for at ||| 0.0526316 0.351161 2.44891e-05 0.000174003 2.718 ||| 0-1 ||| 38 81669 +en ||| for back in ||| 1 0.717907 1.22445e-05 3.225e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| for example , is on ||| 0.333333 0.336652 1.22445e-05 9.88898e-11 2.718 ||| 0-4 ||| 3 81669 +en ||| for granted ||| 0.010989 0.0255404 1.22445e-05 4.04555e-07 2.718 ||| 0-0 ||| 91 81669 +en ||| for his ||| 0.00442478 0.0255404 1.22445e-05 7.78068e-06 2.718 ||| 0-0 ||| 226 81669 +en ||| for in ||| 0.3125 0.717907 6.12227e-05 0.00232048 2.718 ||| 0-1 ||| 16 81669 +en ||| for it in ||| 1 0.717907 1.22445e-05 6.17862e-05 2.718 ||| 0-2 ||| 1 81669 +en ||| for it ||| 0.0114286 0.0255404 2.44891e-05 0.000207152 2.718 ||| 0-0 ||| 175 81669 +en ||| for just ||| 0.0625 0.0255404 1.22445e-05 8.58901e-06 2.718 ||| 0-0 ||| 16 81669 +en ||| for some ||| 0.00571429 0.0255404 1.22445e-05 5.55796e-06 2.718 ||| 0-0 ||| 175 81669 +en ||| for that ||| 0.00704225 0.0255404 1.22445e-05 6.35602e-05 2.718 ||| 0-0 ||| 142 81669 +en ||| for the most ||| 0.015625 0.0255404 1.22445e-05 2.73798e-07 2.718 ||| 0-0 ||| 64 81669 +en ||| for the ||| 0.00588854 0.0255404 0.000342847 0.000413343 2.718 ||| 0-0 ||| 4755 81669 +en ||| for them in ||| 0.4 0.717907 2.44891e-05 4.53607e-06 2.718 ||| 0-2 ||| 5 81669 +en ||| for themselves in ||| 0.5 0.717907 1.22445e-05 1.86868e-06 2.718 ||| 0-2 ||| 2 81669 +en ||| for votes in ||| 1 0.717907 1.22445e-05 1.35516e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| for ||| 0.0187042 0.0255404 0.00794671 0.0077799 2.718 ||| 0-0 ||| 34698 81669 +en ||| force in ||| 0.1 0.717907 3.67336e-05 0.000142437 2.718 ||| 0-1 ||| 30 81669 +en ||| forego all that ||| 0.333333 0.05 1.22445e-05 1.88409e-10 2.718 ||| 0-0 ||| 3 81669 +en ||| forego all ||| 0.333333 0.05 1.22445e-05 2.30617e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| forego ||| 0.0769231 0.05 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 13 81669 +en ||| foremost ||| 0.0078125 0.0145985 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 128 81669 +en ||| formation in ||| 0.5 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| formative experience in ||| 0.333333 0.717907 1.22445e-05 2.05637e-10 2.718 ||| 0-2 ||| 3 81669 +en ||| formed in ||| 0.111111 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| forth in ||| 0.285714 0.717907 2.44891e-05 3.16365e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| forth within ||| 0.333333 0.193123 1.22445e-05 2.37404e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| forward at ||| 1 0.351161 1.22445e-05 1.40071e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| forward in ||| 0.0740741 0.717907 2.44891e-05 0.000186797 2.718 ||| 0-1 ||| 27 81669 +en ||| forward to ||| 0.0434783 0.0189899 1.22445e-05 6.64971e-06 2.718 ||| 0-1 ||| 23 81669 +en ||| fought ||| 0.00990099 0.0502793 1.22445e-05 8.03e-05 2.718 ||| 0-0 ||| 101 81669 +en ||| found in ||| 0.101124 0.717907 0.000110201 0.000196253 2.718 ||| 0-1 ||| 89 81669 +en ||| found myself on ||| 0.5 0.336652 1.22445e-05 8.88146e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| founded on ||| 0.0555556 0.336652 1.22445e-05 2.20603e-06 2.718 ||| 0-1 ||| 18 81669 +en ||| free-riding on ||| 0.5 0.336652 1.22445e-05 4.41205e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| freedom and the rule of law . ||| 1 0.0080355 1.22445e-05 3.67228e-20 2.718 ||| 0-4 ||| 1 81669 +en ||| freedom and the rule of law ||| 1 0.0080355 1.22445e-05 7.98685e-18 2.718 ||| 0-4 ||| 1 81669 +en ||| freedom and the rule of ||| 0.333333 0.0080355 1.22445e-05 5.12306e-14 2.718 ||| 0-4 ||| 3 81669 +en ||| frenzy to frenzy , ||| 1 0.0189899 1.22445e-05 5.99059e-13 2.718 ||| 0-1 ||| 1 81669 +en ||| frenzy to frenzy ||| 1 0.0189899 1.22445e-05 2.93267e-12 2.718 ||| 0-1 ||| 1 81669 +en ||| frenzy to ||| 1 0.0189899 1.22445e-05 2.2559e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| friends ; ||| 0.142857 0.0035336 1.22445e-05 1.57788e-08 2.718 ||| 0-0 ||| 7 81669 +en ||| friends ||| 0.00320513 0.0035336 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 312 81669 +en ||| from , ||| 0.333333 0.0190577 1.22445e-05 0.000590485 2.718 ||| 0-0 ||| 3 81669 +en ||| from an excess of ||| 1 0.0190577 1.22445e-05 1.05425e-11 2.718 ||| 0-0 ||| 1 81669 +en ||| from an excess ||| 1 0.0190577 1.22445e-05 3.90229e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| from an ||| 0.0111111 0.0190577 1.22445e-05 1.00059e-05 2.718 ||| 0-0 ||| 90 81669 +en ||| from being part of ||| 0.333333 0.0080355 1.22445e-05 1.22172e-11 2.718 ||| 0-3 ||| 3 81669 +en ||| from ever being able ||| 0.333333 0.0190577 1.22445e-05 1.08154e-12 2.718 ||| 0-0 ||| 3 81669 +en ||| from ever being ||| 0.333333 0.0190577 1.22445e-05 2.60236e-09 2.718 ||| 0-0 ||| 3 81669 +en ||| from ever ||| 0.333333 0.0190577 1.22445e-05 1.72719e-06 2.718 ||| 0-0 ||| 3 81669 +en ||| from its ||| 0.00537634 0.0190577 1.22445e-05 5.7444e-06 2.718 ||| 0-0 ||| 186 81669 +en ||| from moving up ||| 1 0.0190577 1.22445e-05 8.20798e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| from moving ||| 0.25 0.0190577 1.22445e-05 2.62765e-07 2.718 ||| 0-0 ||| 4 81669 +en ||| from neighborhood ||| 1 0.0190577 1.22445e-05 5.63687e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| from now , ||| 0.166667 0.0190577 1.22445e-05 8.78169e-07 2.718 ||| 0-0 ||| 6 81669 +en ||| from now ||| 0.0447761 0.0190577 3.67336e-05 4.29905e-06 2.718 ||| 0-0 ||| 67 81669 +en ||| from owning ||| 0.333333 0.0190577 1.22445e-05 1.87895e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| from running in ||| 0.5 0.717907 1.22445e-05 2.08898e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| from someone ||| 0.0769231 0.0190577 1.22445e-05 2.62765e-07 2.718 ||| 0-0 ||| 13 81669 +en ||| from the fact ||| 0.04 0.0190577 1.22445e-05 1.00734e-07 2.718 ||| 0-0 ||| 25 81669 +en ||| from the ||| 0.000739645 0.0190577 2.44891e-05 0.000153582 2.718 ||| 0-0 ||| 2704 81669 +en ||| from them ||| 0.037037 0.0190577 1.22445e-05 5.65074e-06 2.718 ||| 0-0 ||| 27 81669 +en ||| from time to ||| 0.0434783 0.0190577 1.22445e-05 2.23003e-07 2.718 ||| 0-0 ||| 23 81669 +en ||| from time ||| 0.111111 0.0190577 2.44891e-05 2.70338e-06 2.718 ||| 0-0 ||| 18 81669 +en ||| from today ||| 0.25 0.0718539 1.22445e-05 1.26373e-05 2.718 ||| 0-0 0-1 ||| 4 81669 +en ||| from ||| 0.0171514 0.0190577 0.00253462 0.0028907 2.718 ||| 0-0 ||| 12069 81669 +en ||| fuel in ||| 0.5 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| fulfills , in ||| 1 0.717907 1.22445e-05 6.47236e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| fully engaged in live ||| 1 0.717907 1.22445e-05 1.33924e-12 2.718 ||| 0-2 ||| 1 81669 +en ||| fully engaged in ||| 0.5 0.717907 1.22445e-05 5.42641e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| functions in ||| 1 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| funds in ||| 0.142857 0.717907 1.22445e-05 4.43106e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| further apart in ||| 0.5 0.717907 1.22445e-05 2.67335e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| further behind into extreme ||| 1 0.414384 1.22445e-05 7.32953e-14 2.718 ||| 0-2 ||| 1 81669 +en ||| further behind into ||| 1 0.414384 1.22445e-05 1.25506e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| further pressures from ||| 0.5 0.0190577 1.22445e-05 1.22019e-11 2.718 ||| 0-2 ||| 2 81669 +en ||| gain from being part of ||| 0.333333 0.0080355 1.22445e-05 1.90465e-15 2.718 ||| 0-4 ||| 3 81669 +en ||| gain in ||| 0.1 0.717907 1.22445e-05 7.59958e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| gains attention in ||| 0.25 0.717907 1.22445e-05 3.6983e-09 2.718 ||| 0-2 ||| 4 81669 +en ||| gains ||| 0.00303951 0.0238095 1.22445e-05 8.03e-05 2.718 ||| 0-0 ||| 329 81669 +en ||| game in ||| 0.333333 0.717907 2.44891e-05 5.69846e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| general ||| 0.00181159 0.001996 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 552 81669 +en ||| generally consistent ||| 0.333333 0.160777 1.22445e-05 1.5832e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| generally favorable ||| 0.333333 0.160777 1.22445e-05 1.5832e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| generally ||| 0.00729927 0.160777 2.44891e-05 0.0008119 2.718 ||| 0-0 ||| 274 81669 +en ||| generated in ||| 0.0909091 0.717907 1.22445e-05 4.1142e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| genuine inclusion in ||| 0.25 0.717907 1.22445e-05 4.94289e-10 2.718 ||| 0-2 ||| 4 81669 +en ||| get in ||| 0.0909091 0.717907 1.22445e-05 0.00038305 2.718 ||| 0-1 ||| 11 81669 +en ||| get laughs on ||| 0.5 0.336652 1.22445e-05 3.46699e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| give in and chose ||| 0.5 0.717907 1.22445e-05 6.01358e-11 2.718 ||| 0-1 ||| 2 81669 +en ||| give in and ||| 0.5 0.717907 1.22445e-05 1.54194e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| give in ||| 0.0740741 0.717907 2.44891e-05 0.000183628 2.718 ||| 0-1 ||| 27 81669 +en ||| given them ||| 1 0.10504 1.22445e-05 3.45315e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| given to ||| 0.0140845 0.10504 1.22445e-05 0.000145719 2.718 ||| 0-0 ||| 71 81669 +en ||| given ||| 0.00628931 0.10504 0.000122445 0.0017665 2.718 ||| 0-0 ||| 1590 81669 +en ||| giving serious consideration to ||| 0.333333 0.0189899 1.22445e-05 2.43576e-14 2.718 ||| 0-3 ||| 3 81669 +en ||| glib ||| 0.333333 0.1 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 3 81669 +en ||| globally ||| 0.00675676 0.0209059 1.22445e-05 5.35e-05 2.718 ||| 0-0 ||| 148 81669 +en ||| go along with all ||| 1 0.0435435 1.22445e-05 1.7502e-12 2.718 ||| 0-1 ||| 1 81669 +en ||| go along with ||| 0.111111 0.0435435 1.22445e-05 6.75438e-10 2.718 ||| 0-1 ||| 9 81669 +en ||| go along ||| 0.166667 0.0435435 1.22445e-05 1.78089e-07 2.718 ||| 0-1 ||| 6 81669 +en ||| go into ||| 0.0625 0.414384 1.22445e-05 1.36594e-05 2.718 ||| 0-1 ||| 16 81669 +en ||| go to ||| 0.00653595 0.0189899 1.22445e-05 1.19459e-05 2.718 ||| 0-1 ||| 153 81669 +en ||| goes a long way toward ||| 1 0.0354374 1.22445e-05 2.45465e-15 2.718 ||| 0-4 ||| 1 81669 +en ||| going to the ||| 0.05 0.0189899 1.22445e-05 3.95153e-07 2.718 ||| 0-1 ||| 20 81669 +en ||| going to ||| 0.0120482 0.0189899 1.22445e-05 7.43754e-06 2.718 ||| 0-1 ||| 83 81669 +en ||| going ||| 0.0130435 0.0196464 3.67336e-05 8.92e-05 2.718 ||| 0-0 ||| 230 81669 +en ||| good at ||| 0.0344828 0.351161 1.22445e-05 1.9702e-05 2.718 ||| 0-1 ||| 29 81669 +en ||| good in ||| 0.05 0.717907 1.22445e-05 0.000262744 2.718 ||| 0-1 ||| 20 81669 +en ||| govern on ||| 0.25 0.336652 1.22445e-05 1.76482e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| governing ||| 0.00564972 0.0062112 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 177 81669 +en ||| government in ||| 0.0307692 0.717907 2.44891e-05 0.000243781 2.718 ||| 0-1 ||| 65 81669 +en ||| governments at ||| 0.333333 0.351161 1.22445e-05 3.56025e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| grain ||| 0.0144928 0.0125 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 69 81669 +en ||| grave , ||| 0.25 0.015873 1.22445e-05 3.63602e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| grave ||| 0.00806452 0.015873 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 124 81669 +en ||| great opportunities . in ||| 1 0.717907 1.22445e-05 9.36612e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| great value in defining now ||| 0.0833333 0.717907 1.22445e-05 1.96715e-16 2.718 ||| 0-2 ||| 12 81669 +en ||| great value in defining ||| 0.0833333 0.717907 1.22445e-05 1.32272e-13 2.718 ||| 0-2 ||| 12 81669 +en ||| great value in ||| 0.0769231 0.717907 1.22445e-05 2.03495e-08 2.718 ||| 0-2 ||| 13 81669 +en ||| great ||| 0.00268336 0.0044763 3.67336e-05 4.46e-05 2.718 ||| 0-0 ||| 1118 81669 +en ||| greater in ||| 0.166667 0.717907 1.22445e-05 7.91643e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| greatly underestimate ||| 0.333333 0.167464 1.22445e-05 2.02995e-09 2.718 ||| 0-0 ||| 3 81669 +en ||| greatly ||| 0.037037 0.167464 3.67336e-05 0.0003123 2.718 ||| 0-0 ||| 81 81669 +en ||| ground , in ||| 1 0.717907 1.22445e-05 3.55681e-05 2.718 ||| 0-2 ||| 1 81669 +en ||| ground in ||| 0.0952381 0.717907 2.44891e-05 0.000174122 2.718 ||| 0-1 ||| 21 81669 +en ||| ground when ||| 1 0.0709982 1.22445e-05 1.38947e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| grounds in ||| 0.333333 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| group 's self-interest in ||| 0.5 0.717907 1.22445e-05 3.8439e-12 2.718 ||| 0-3 ||| 2 81669 +en ||| groups in ||| 0.0909091 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| growers ) into cultivating ||| 0.5 0.414384 1.22445e-05 1.90554e-15 2.718 ||| 0-2 ||| 2 81669 +en ||| growers ) into ||| 0.5 0.414384 1.22445e-05 2.9316e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| growing ||| 0.00424088 0.0685121 6.12227e-05 0.0008833 2.718 ||| 0-0 ||| 1179 81669 +en ||| growth in ||| 0.00483092 0.717907 1.22445e-05 0.000104464 2.718 ||| 0-1 ||| 207 81669 +en ||| guard in ||| 0.5 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| guerrilla ||| 0.025 0.0322581 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 40 81669 +en ||| gun " in ||| 1 0.717907 1.22445e-05 3.16478e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| had achieved in ||| 1 0.717907 1.22445e-05 3.60502e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| had been settled in ||| 1 0.717907 1.22445e-05 3.00839e-11 2.718 ||| 0-3 ||| 1 81669 +en ||| had hit ||| 0.125 0.0072115 1.22445e-05 3.8115e-08 2.718 ||| 0-1 ||| 8 81669 +en ||| had in the ||| 0.142857 0.717907 1.22445e-05 3.68333e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| had in ||| 0.0833333 0.717907 2.44891e-05 0.000693272 2.718 ||| 0-1 ||| 24 81669 +en ||| had participated in ||| 0.25 0.717907 1.22445e-05 9.01254e-09 2.718 ||| 0-2 ||| 4 81669 +en ||| had their eyes on ||| 0.25 0.336652 1.22445e-05 1.57285e-11 2.718 ||| 0-3 ||| 4 81669 +en ||| had to abide by ||| 0.5 0.065573 1.22445e-05 9.46365e-12 2.718 ||| 0-3 ||| 2 81669 +en ||| had to be restored ||| 0.5 0.0189899 1.22445e-05 8.26662e-12 2.718 ||| 0-1 ||| 2 81669 +en ||| had to be ||| 0.0192308 0.0189899 1.22445e-05 2.54358e-07 2.718 ||| 0-1 ||| 52 81669 +en ||| had to ||| 0.00352113 0.0189899 1.22445e-05 2.46796e-05 2.718 ||| 0-1 ||| 284 81669 +en ||| half in ||| 0.166667 0.717907 1.22445e-05 4.43106e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| halted within ||| 1 0.193123 1.22445e-05 7.1331e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| hand in ||| 0.0784314 0.717907 4.89782e-05 0.000231107 2.718 ||| 0-1 ||| 51 81669 +en ||| handed down from ||| 0.333333 0.0190577 1.22445e-05 8.23659e-11 2.718 ||| 0-2 ||| 3 81669 +en ||| happened in ||| 0.0430108 0.717907 4.89782e-05 3.4805e-05 2.718 ||| 0-1 ||| 93 81669 +en ||| happening just ||| 1 0.0053191 1.22445e-05 9.8256e-09 2.718 ||| 0-0 ||| 1 81669 +en ||| happening ||| 0.00699301 0.0053191 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 143 81669 +en ||| happens in ||| 0.0294118 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 34 81669 +en ||| hard look at ||| 0.166667 0.351161 1.22445e-05 7.65899e-09 2.718 ||| 0-2 ||| 6 81669 +en ||| hard on ||| 0.125 0.336652 1.22445e-05 3.0416e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| hardened in ||| 0.5 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| hardship of ||| 0.142857 0.0080355 1.22445e-05 5.17868e-08 2.718 ||| 0-1 ||| 7 81669 +en ||| harrowing existence in ||| 0.2 0.717907 1.22445e-05 1.64763e-10 2.718 ||| 0-2 ||| 5 81669 +en ||| has a culture in ||| 0.5 0.717907 1.22445e-05 4.22391e-09 2.718 ||| 0-3 ||| 2 81669 +en ||| has a say in ||| 0.333333 0.717907 1.22445e-05 2.62026e-08 2.718 ||| 0-3 ||| 3 81669 +en ||| has achieved over ||| 0.5 0.159665 1.22445e-05 1.26404e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| has arisen in ||| 0.5 0.717907 1.22445e-05 1.05151e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| has at ||| 0.125 0.351161 1.22445e-05 0.000121304 2.718 ||| 0-1 ||| 8 81669 +en ||| has become ||| 0.0020284 0.157512 1.22445e-05 2.11401e-05 2.718 ||| 0-1 ||| 493 81669 +en ||| has been at ||| 0.125 0.351161 1.22445e-05 2.02457e-07 2.718 ||| 0-2 ||| 8 81669 +en ||| has been for almost ||| 0.5 0.0255404 1.22445e-05 1.03547e-11 2.718 ||| 0-2 ||| 2 81669 +en ||| has been for ||| 0.375 0.0255404 3.67336e-05 4.30909e-08 2.718 ||| 0-2 ||| 8 81669 +en ||| has been in ||| 0.0208333 0.717907 1.22445e-05 2.69994e-06 2.718 ||| 0-2 ||| 48 81669 +en ||| has employment in ||| 1 0.717907 1.22445e-05 9.44737e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| has had in ||| 1 0.717907 1.22445e-05 2.30069e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| has in ||| 0.176471 0.717907 7.34673e-05 0.0016177 2.718 ||| 0-1 ||| 34 81669 +en ||| has over ||| 0.25 0.159665 1.22445e-05 2.43084e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| has regularly benefited in ||| 1 0.717907 1.22445e-05 1.91374e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| hat in ||| 0.5 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| have , on ||| 0.2 0.336652 1.22445e-05 7.15858e-05 2.718 ||| 0-2 ||| 5 81669 +en ||| have become in ||| 1 0.717907 1.22445e-05 1.6998e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| have become ||| 0.00440529 0.157512 1.22445e-05 3.28887e-05 2.718 ||| 0-1 ||| 227 81669 +en ||| have been included on ||| 1 0.336652 1.22445e-05 3.04145e-11 2.718 ||| 0-3 ||| 1 81669 +en ||| have been to ||| 0.333333 0.0189899 1.22445e-05 1.4953e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| have died in ||| 0.2 0.717907 1.22445e-05 8.17938e-08 2.718 ||| 0-2 ||| 5 81669 +en ||| have done in ||| 0.142857 0.717907 1.22445e-05 5.88412e-07 2.718 ||| 0-2 ||| 7 81669 +en ||| have in mind ||| 0.1 0.717907 1.22445e-05 5.55694e-07 2.718 ||| 0-1 ||| 10 81669 +en ||| have in ||| 0.2 0.717907 7.34673e-05 0.00251673 2.718 ||| 0-1 ||| 30 81669 +en ||| have largely remained ||| 1 0.285296 1.22445e-05 2.68387e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| have largely ||| 0.25 0.285296 1.22445e-05 1.79643e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| have misleading " ||| 0.0555556 0.0103093 1.22445e-05 2.29478e-10 2.718 ||| 0-1 ||| 18 81669 +en ||| have misleading ||| 0.0555556 0.0103093 1.22445e-05 4.59498e-08 2.718 ||| 0-1 ||| 18 81669 +en ||| have now been on ||| 1 0.336652 1.22445e-05 8.69854e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| have occurred in ||| 0.166667 0.717907 1.22445e-05 1.3087e-07 2.718 ||| 0-2 ||| 6 81669 +en ||| have on ||| 0.0769231 0.336652 1.22445e-05 0.000350446 2.718 ||| 0-1 ||| 13 81669 +en ||| have protestors ||| 0.166667 0.04 1.22445e-05 4.59498e-08 2.718 ||| 0-1 ||| 6 81669 +en ||| have risen by ||| 0.2 0.065573 1.22445e-05 1.24943e-09 2.718 ||| 0-2 ||| 5 81669 +en ||| have second thoughts about taking part in ||| 0.25 0.717907 1.22445e-05 1.784e-21 2.718 ||| 0-6 ||| 4 81669 +en ||| have some say in ||| 1 0.717907 1.22445e-05 7.23856e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| have sought in that it could ||| 0.5 0.717907 1.22445e-05 8.43831e-14 2.718 ||| 0-2 ||| 2 81669 +en ||| have sought in that it ||| 0.5 0.717907 1.22445e-05 7.46753e-11 2.718 ||| 0-2 ||| 2 81669 +en ||| have sought in that ||| 0.5 0.717907 1.22445e-05 2.80455e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| have sought in ||| 0.5 0.717907 1.22445e-05 3.43282e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| have unleashed in ||| 1 0.717907 1.22445e-05 4.90763e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| having much success in ||| 0.25 0.717907 1.22445e-05 1.70119e-11 2.718 ||| 0-3 ||| 4 81669 +en ||| having run ||| 0.25 0.009816 1.22445e-05 1.90138e-08 2.718 ||| 0-1 ||| 4 81669 +en ||| havoc in ||| 0.5 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| havoc on ||| 0.111111 0.336652 1.22445e-05 2.20603e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| he does in ||| 0.5 0.717907 1.22445e-05 1.48326e-06 2.718 ||| 0-2 ||| 2 81669 +en ||| he ever did in ||| 1 0.717907 1.22445e-05 1.45943e-09 2.718 ||| 0-3 ||| 1 81669 +en ||| he may have sought in that it ||| 0.5 0.717907 1.22445e-05 2.28738e-16 2.718 ||| 0-4 ||| 2 81669 +en ||| he may have sought in that ||| 0.5 0.717907 1.22445e-05 8.59061e-15 2.718 ||| 0-4 ||| 2 81669 +en ||| he may have sought in ||| 0.5 0.717907 1.22445e-05 1.05151e-12 2.718 ||| 0-4 ||| 2 81669 +en ||| he never ||| 0.0769231 0.0015221 1.22445e-05 5.56019e-08 2.718 ||| 0-1 ||| 13 81669 +en ||| he sought in ||| 0.5 0.717907 1.22445e-05 2.07695e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| he was at the ||| 0.5 0.351161 1.22445e-05 2.2929e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| he was at ||| 0.333333 0.351161 1.22445e-05 4.31567e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| head on ||| 0.142857 0.336652 1.22445e-05 1.54286e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| headway in ||| 0.333333 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| healthy ||| 0.00471698 0.0087719 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 212 81669 +en ||| hearing in ||| 0.5 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| heating up in ||| 1 0.717907 1.22445e-05 2.96925e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| heed to ||| 0.125 0.0189899 1.22445e-05 1.12795e-07 2.718 ||| 0-1 ||| 8 81669 +en ||| held at ||| 0.111111 0.351161 1.22445e-05 1.73297e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| held in ||| 0.142857 0.717907 8.57118e-05 0.000231107 2.718 ||| 0-1 ||| 49 81669 +en ||| held there ||| 0.2 0.0348653 1.22445e-05 4.19415e-07 2.718 ||| 0-0 ||| 5 81669 +en ||| held ||| 0.00503778 0.0348653 2.44891e-05 0.0001963 2.718 ||| 0-0 ||| 397 81669 +en ||| helpful in ||| 0.0625 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 16 81669 +en ||| her in ||| 0.222222 0.717907 2.44891e-05 0.000288092 2.718 ||| 0-1 ||| 9 81669 +en ||| here , ||| 0.00578035 0.128942 1.22445e-05 0.000253316 2.718 ||| 0-0 ||| 173 81669 +en ||| here a ||| 0.5 0.128942 1.22445e-05 4.98917e-05 2.718 ||| 0-0 ||| 2 81669 +en ||| here before ||| 0.2 0.128942 1.22445e-05 2.65753e-07 2.718 ||| 0-0 ||| 5 81669 +en ||| here ||| 0.0133929 0.128942 0.000110201 0.0012401 2.718 ||| 0-0 ||| 672 81669 +en ||| herein lies ||| 0.125 0.222222 1.22445e-05 1.84942e-09 2.718 ||| 0-0 ||| 8 81669 +en ||| herein ||| 0.142857 0.222222 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 7 81669 +en ||| hesitate ||| 0.0769231 0.288889 1.22445e-05 0.000116 2.718 ||| 0-0 ||| 13 81669 +en ||| hidden in apartment ||| 1 0.717907 1.22445e-05 4.11908e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| hidden in ||| 0.2 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| high on ||| 0.0243902 0.336652 1.22445e-05 3.21808e-05 2.718 ||| 0-1 ||| 41 81669 +en ||| high road in ||| 1 0.717907 1.22445e-05 3.30252e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| higher in people ||| 1 0.717907 1.22445e-05 7.64698e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| higher in ||| 0.0588235 0.717907 2.44891e-05 9.49581e-05 2.718 ||| 0-1 ||| 34 81669 +en ||| highlighted by ||| 0.0909091 0.065573 1.22445e-05 8.06669e-08 2.718 ||| 0-1 ||| 11 81669 +en ||| highly dependent on ||| 0.0909091 0.336652 1.22445e-05 1.14625e-10 2.718 ||| 0-2 ||| 11 81669 +en ||| highs in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| him at ||| 0.5 0.351161 1.22445e-05 2.54006e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| him in an ||| 0.5 0.717907 1.22445e-05 1.17251e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| him in ||| 0.117647 0.717907 2.44891e-05 0.000338739 2.718 ||| 0-1 ||| 17 81669 +en ||| him on ||| 0.2 0.336652 1.22445e-05 4.71682e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| him ||| 0.00162338 0.0007524 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 616 81669 +en ||| himself in ||| 0.0769231 0.717907 1.22445e-05 0.000164617 2.718 ||| 0-1 ||| 13 81669 +en ||| himself to ||| 0.0952381 0.0189899 2.44891e-05 5.86014e-06 2.718 ||| 0-1 ||| 21 81669 +en ||| his 40 years in power ||| 0.333333 0.717907 1.22445e-05 1.66851e-15 2.718 ||| 0-3 ||| 3 81669 +en ||| his 40 years in ||| 0.333333 0.717907 1.22445e-05 3.51931e-12 2.718 ||| 0-3 ||| 3 81669 +en ||| his claim on ||| 1 0.336652 1.22445e-05 1.93946e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| his continued rule among ||| 0.5 0.0289855 1.22445e-05 1.09838e-14 2.718 ||| 0-3 ||| 2 81669 +en ||| historical claim on rule in ||| 1 0.717907 1.22445e-05 6.13441e-15 2.718 ||| 0-4 ||| 1 81669 +en ||| historically was ||| 1 0.0060606 1.22445e-05 3.36393e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| historically ||| 0.00625 0.0060606 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 160 81669 +en ||| history ||| 0.000686342 0.0004866 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 1457 81669 +en ||| hit ||| 0.00436681 0.0072115 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 229 81669 +en ||| hold in ||| 0.25 0.717907 1.22445e-05 0.000272249 2.718 ||| 0-1 ||| 4 81669 +en ||| holding back on ||| 0.333333 0.336652 1.22445e-05 7.96199e-09 2.718 ||| 0-2 ||| 3 81669 +en ||| holding ||| 0.00478469 0.0260586 1.22445e-05 7.14e-05 2.718 ||| 0-0 ||| 209 81669 +en ||| holdings into ||| 1 0.414384 1.22445e-05 2.5795e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| home at ||| 0.25 0.351161 1.22445e-05 1.37695e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| home in ||| 0.0625 0.717907 1.22445e-05 0.000183628 2.718 ||| 0-1 ||| 16 81669 +en ||| home ||| 0.000983284 0.0117057 1.22445e-05 0.0001249 2.718 ||| 0-0 ||| 1017 81669 +en ||| homeland in ||| 0.25 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| hope to ||| 0.0140845 0.0189899 1.22445e-05 1.4646e-06 2.718 ||| 0-1 ||| 71 81669 +en ||| horrors ||| 0.025641 0.0243902 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 39 81669 +en ||| host at ||| 0.333333 0.351161 1.22445e-05 3.56025e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| house down upon him ||| 0.5 0.117761 1.22445e-05 5.74124e-14 2.718 ||| 0-2 ||| 2 81669 +en ||| house down upon ||| 0.5 0.117761 1.22445e-05 8.26197e-11 2.718 ||| 0-2 ||| 2 81669 +en ||| house in ||| 0.0666667 0.717907 1.22445e-05 5.06476e-05 2.718 ||| 0-1 ||| 15 81669 +en ||| houses in ||| 0.166667 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| housing markets in ||| 1 0.717907 1.22445e-05 1.13116e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| however , in ||| 0.0666667 0.717907 1.22445e-05 2.90957e-05 2.718 ||| 0-2 ||| 15 81669 +en ||| however ||| 0.000763359 0.0105263 1.22445e-05 0.0003301 2.718 ||| 0-0 ||| 1310 81669 +en ||| hunts in ||| 0.5 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| hydroelectric power plant in ||| 1 0.717907 1.22445e-05 3.90571e-14 2.718 ||| 0-3 ||| 1 81669 +en ||| hyphenated ||| 0.0714286 0.333333 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 14 81669 +en ||| idea in ||| 0.333333 0.717907 1.22445e-05 5.06476e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| identifiable ||| 0.0526316 0.130435 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 19 81669 +en ||| identified in ||| 0.2 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| if it is ||| 0.0107527 0.0055076 1.22445e-05 1.723e-07 2.718 ||| 0-0 ||| 93 81669 +en ||| if it ||| 0.00348432 0.0055076 1.22445e-05 1.04536e-05 2.718 ||| 0-0 ||| 287 81669 +en ||| if not ||| 0.00176991 0.0055076 1.22445e-05 9.22963e-07 2.718 ||| 0-0 ||| 565 81669 +en ||| if they don ||| 0.125 0.0055076 1.22445e-05 1.24387e-09 2.718 ||| 0-0 ||| 8 81669 +en ||| if they ||| 0.00465116 0.0055076 1.22445e-05 2.4247e-06 2.718 ||| 0-0 ||| 215 81669 +en ||| if we are ||| 0.0238095 0.0055076 1.22445e-05 6.73898e-09 2.718 ||| 0-0 ||| 42 81669 +en ||| if we ||| 0.0120482 0.0055076 1.22445e-05 9.10243e-07 2.718 ||| 0-0 ||| 83 81669 +en ||| if ||| 0.00324095 0.0055076 0.000355092 0.0003926 2.718 ||| 0-0 ||| 8948 81669 +en ||| illustrate in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| images in ||| 0.5 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| imperiled ||| 0.111111 0.375 1.22445e-05 5.35e-05 2.718 ||| 0-0 ||| 9 81669 +en ||| implemented in ||| 0.0909091 0.717907 2.44891e-05 2.53482e-05 2.718 ||| 0-1 ||| 22 81669 +en ||| implies the ||| 0.0833333 0.0006015 1.22445e-05 3.76935e-08 2.718 ||| 0-1 ||| 12 81669 +en ||| imposed in ||| 0.25 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| impresario for ||| 0.166667 0.0255404 1.22445e-05 5.05694e-08 2.718 ||| 0-1 ||| 6 81669 +en ||| improvements in ||| 0.0196078 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 51 81669 +en ||| in [ a ||| 1 0.717907 1.22445e-05 4.71269e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| in [ ||| 0.2 0.717907 1.22445e-05 0.000117138 2.718 ||| 0-0 ||| 5 81669 +en ||| in " hard ||| 1 0.717907 1.22445e-05 1.09088e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| in " ||| 0.039604 0.717907 4.89782e-05 0.00243445 2.718 ||| 0-0 ||| 101 81669 +en ||| in , the case ||| 1 0.717907 1.22445e-05 3.67627e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| in , the ||| 0.2 0.717907 1.22445e-05 0.00529037 2.718 ||| 0-0 ||| 5 81669 +en ||| in , ||| 0.0851064 0.717907 4.89782e-05 0.0995747 2.718 ||| 0-0 ||| 47 81669 +en ||| in . ||| 0.0294118 0.717907 1.22445e-05 0.00224131 2.718 ||| 0-0 ||| 34 81669 +en ||| in 1933 . ||| 0.25 0.717907 1.22445e-05 1.45685e-08 2.718 ||| 0-0 ||| 4 81669 +en ||| in 1933 ||| 0.0625 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 16 81669 +en ||| in 1973 , he was ||| 0.5 0.717907 1.22445e-05 1.52834e-11 2.718 ||| 0-0 ||| 2 81669 +en ||| in 1973 , he ||| 0.5 0.717907 1.22445e-05 4.04354e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| in 1973 , ||| 0.0588235 0.717907 1.22445e-05 1.29447e-06 2.718 ||| 0-0 ||| 17 81669 +en ||| in 1973 ||| 0.037037 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-0 ||| 27 81669 +en ||| in 1994 ||| 0.0166667 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-0 ||| 60 81669 +en ||| in 2007 despite ||| 1 0.717907 1.22445e-05 3.70717e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| in 2007 ||| 0.010989 0.717907 2.44891e-05 9.50556e-06 2.718 ||| 0-0 ||| 182 81669 +en ||| in 2009 ||| 0.0042735 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-0 ||| 234 81669 +en ||| in America ||| 0.0155039 0.717907 4.89782e-05 0.000579352 2.718 ||| 0-0 ||| 258 81669 +en ||| in Argentina and , perhaps , throughout ||| 0.5 0.717907 1.22445e-05 9.42056e-17 2.718 ||| 0-0 ||| 2 81669 +en ||| in Argentina and , perhaps , ||| 0.5 0.717907 1.22445e-05 1.03636e-12 2.718 ||| 0-0 ||| 2 81669 +en ||| in Argentina and , perhaps ||| 0.5 0.717907 1.22445e-05 5.07349e-12 2.718 ||| 0-0 ||| 2 81669 +en ||| in Argentina and , ||| 0.5 0.717907 1.22445e-05 4.88305e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| in Argentina and ||| 0.2 0.717907 1.22445e-05 2.39048e-07 2.718 ||| 0-0 ||| 5 81669 +en ||| in Argentina ||| 0.015625 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-0 ||| 64 81669 +en ||| in Britain slips back ||| 0.333333 0.717907 1.22445e-05 8.86447e-13 2.718 ||| 0-0 ||| 3 81669 +en ||| in Britain slips ||| 0.333333 0.717907 1.22445e-05 6.37823e-10 2.718 ||| 0-0 ||| 3 81669 +en ||| in Britain ||| 0.0108696 0.717907 1.22445e-05 9.81267e-05 2.718 ||| 0-0 ||| 92 81669 +en ||| in British ||| 1 0.717907 1.22445e-05 4.74791e-05 2.718 ||| 0-0 ||| 1 81669 +en ||| in Central America ||| 0.1 0.717907 1.22445e-05 3.01263e-08 2.718 ||| 0-0 ||| 10 81669 +en ||| in Central ||| 0.5 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-0 ||| 2 81669 +en ||| in China ||| 0.00543478 0.717907 3.67336e-05 0.000341908 2.718 ||| 0-0 ||| 552 81669 +en ||| in EU ||| 0.25 0.717907 1.22445e-05 0.000126643 2.718 ||| 0-0 ||| 4 81669 +en ||| in East ||| 0.0232558 0.717907 1.22445e-05 6.64902e-05 2.718 ||| 0-0 ||| 43 81669 +en ||| in Ethiopia ||| 0.047619 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 21 81669 +en ||| in Europe ||| 0.00107296 0.717907 1.22445e-05 0.000234276 2.718 ||| 0-0 ||| 932 81669 +en ||| in Gilani ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| in Iraq later in ||| 1 0.717907 1.22445e-05 1.7056e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| in Iraq secure a ||| 0.333333 0.717907 1.22445e-05 2.48132e-10 2.718 ||| 0-0 ||| 3 81669 +en ||| in Iraq secure ||| 0.333333 0.717907 1.22445e-05 6.16753e-09 2.718 ||| 0-0 ||| 3 81669 +en ||| in Iraq ||| 0.0030303 0.717907 2.44891e-05 6.33217e-05 2.718 ||| 0-0 ||| 660 81669 +en ||| in July ||| 0.00714286 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-0 ||| 140 81669 +en ||| in Latin American ||| 0.5 0.717907 1.22445e-05 2.81992e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| in Latin ||| 0.5 0.717907 1.22445e-05 8.86211e-05 2.718 ||| 0-0 ||| 2 81669 +en ||| in Managua ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| in May in Bolivia ||| 1 0.717907 1.22445e-05 2.53165e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| in May in ||| 0.5 0.717907 1.22445e-05 9.73712e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| in May ||| 0.00571429 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-0 ||| 175 81669 +en ||| in Mexican ||| 0.5 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-0 ||| 2 81669 +en ||| in Mexico ||| 0.0114943 0.717907 1.22445e-05 5.38161e-05 2.718 ||| 0-0 ||| 87 81669 +en ||| in Palestinian ||| 0.5 0.717907 2.44891e-05 5.06476e-05 2.718 ||| 0-0 ||| 4 81669 +en ||| in Panama ||| 0.25 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| in Pristina under ||| 1 0.717907 1.22445e-05 1.56398e-09 2.718 ||| 0-0 ||| 1 81669 +en ||| in Pristina ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| in R & amp ||| 0.0714286 0.717907 1.22445e-05 2.17465e-12 2.718 ||| 0-0 ||| 14 81669 +en ||| in R & ||| 0.0555556 0.717907 1.22445e-05 2.2327e-08 2.718 ||| 0-0 ||| 18 81669 +en ||| in R ||| 0.0526316 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-0 ||| 19 81669 +en ||| in Russian ||| 0.2 0.717907 2.44891e-05 7.28272e-05 2.718 ||| 0-0 ||| 10 81669 +en ||| in Rwanda ||| 0.0277778 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 36 81669 +en ||| in September ||| 0.00595238 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-0 ||| 168 81669 +en ||| in South ||| 0.0208333 0.717907 1.22445e-05 6.33217e-05 2.718 ||| 0-0 ||| 48 81669 +en ||| in Southern ||| 0.0909091 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-0 ||| 11 81669 +en ||| in US ||| 0.0833333 0.717907 1.22445e-05 0.000626831 2.718 ||| 0-0 ||| 12 81669 +en ||| in Ukraine and congratulated him twice before ||| 1 0.717907 1.22445e-05 8.03523e-24 2.718 ||| 0-0 ||| 1 81669 +en ||| in Ukraine and congratulated him twice ||| 1 0.717907 1.22445e-05 3.74952e-20 2.718 ||| 0-0 ||| 1 81669 +en ||| in Ukraine and congratulated him ||| 1 0.717907 1.22445e-05 9.61417e-16 2.718 ||| 0-0 ||| 1 81669 +en ||| in Ukraine and congratulated ||| 1 0.717907 1.22445e-05 1.38353e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| in Ukraine and ||| 0.333333 0.717907 1.22445e-05 2.12851e-07 2.718 ||| 0-0 ||| 3 81669 +en ||| in Ukraine ||| 0.0108696 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-0 ||| 92 81669 +en ||| in Vienna last week fell flat ||| 0.25 0.717907 1.22445e-05 2.67861e-22 2.718 ||| 0-0 ||| 4 81669 +en ||| in Vienna last week fell ||| 0.25 0.717907 1.22445e-05 8.24187e-18 2.718 ||| 0-0 ||| 4 81669 +en ||| in Vienna last week ||| 0.25 0.717907 1.22445e-05 5.28664e-14 2.718 ||| 0-0 ||| 4 81669 +en ||| in Vienna last ||| 0.25 0.717907 1.22445e-05 9.05247e-10 2.718 ||| 0-0 ||| 4 81669 +en ||| in Vienna ||| 0.0769231 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 13 81669 +en ||| in a democratic guise and occupying ||| 1 0.717907 1.22445e-05 2.71354e-19 2.718 ||| 0-0 ||| 1 81669 +en ||| in a democratic guise and ||| 1 0.717907 1.22445e-05 4.17467e-14 2.718 ||| 0-0 ||| 1 81669 +en ||| in a democratic guise ||| 1 0.717907 1.22445e-05 4.97156e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| in a democratic ||| 0.5 0.717907 1.22445e-05 7.64856e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| in a few ||| 0.0487805 0.717907 2.44891e-05 4.84016e-06 2.718 ||| 0-0 ||| 41 81669 +en ||| in a more ||| 0.111111 0.717907 1.22445e-05 4.19023e-05 2.718 ||| 0-0 ||| 9 81669 +en ||| in a portfolio ||| 0.5 0.717907 1.22445e-05 5.09904e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| in a position to tell their military ||| 1 0.717907 1.22445e-05 1.44928e-17 2.718 ||| 0-0 ||| 1 81669 +en ||| in a position to tell their ||| 1 0.717907 1.22445e-05 5.57845e-14 2.718 ||| 0-0 ||| 1 81669 +en ||| in a position to tell ||| 1 0.717907 1.22445e-05 3.11228e-11 2.718 ||| 0-0 ||| 1 81669 +en ||| in a position to ||| 0.0263158 0.717907 1.22445e-05 2.52211e-07 2.718 ||| 0-0 ||| 38 81669 +en ||| in a position ||| 0.0212766 0.717907 1.22445e-05 3.05746e-06 2.718 ||| 0-0 ||| 47 81669 +en ||| in a range of ||| 0.25 0.717907 1.22445e-05 8.60446e-08 2.718 ||| 0-0 ||| 4 81669 +en ||| in a range ||| 0.25 0.717907 1.22445e-05 3.18494e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| in a ||| 0.0457757 0.717907 0.00182444 0.0196117 2.718 ||| 0-0 ||| 3255 81669 +en ||| in about ||| 0.0833333 0.717907 1.22445e-05 0.000591977 2.718 ||| 0-0 ||| 12 81669 +en ||| in addition , Australia and Japan have ||| 0.333333 0.717907 1.22445e-05 1.32291e-18 2.718 ||| 0-0 ||| 3 81669 +en ||| in addition , Australia and Japan ||| 0.333333 0.717907 1.22445e-05 2.56233e-16 2.718 ||| 0-0 ||| 3 81669 +en ||| in addition , Australia and ||| 0.333333 0.717907 1.22445e-05 9.17412e-13 2.718 ||| 0-0 ||| 3 81669 +en ||| in addition , Australia ||| 0.333333 0.717907 1.22445e-05 1.09253e-10 2.718 ||| 0-0 ||| 3 81669 +en ||| in addition , ||| 0.00588235 0.717907 1.22445e-05 8.40411e-06 2.718 ||| 0-0 ||| 170 81669 +en ||| in addition ||| 0.00328947 0.717907 1.22445e-05 4.1142e-05 2.718 ||| 0-0 ||| 304 81669 +en ||| in advance -- ||| 1 0.717907 1.22445e-05 1.74951e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| in advance ||| 0.0188679 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-0 ||| 53 81669 +en ||| in advanced ||| 0.333333 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-0 ||| 3 81669 +en ||| in advancing ||| 0.111111 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-0 ||| 9 81669 +en ||| in agreement ||| 0.1 0.717907 1.22445e-05 6.01532e-05 2.718 ||| 0-0 ||| 10 81669 +en ||| in agriculture ||| 0.0294118 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-0 ||| 34 81669 +en ||| in all ||| 0.0103806 0.717907 3.67336e-05 0.00126312 2.718 ||| 0-0 ||| 289 81669 +en ||| in an ||| 0.00494234 0.717907 3.67336e-05 0.00168731 2.718 ||| 0-0 ||| 607 81669 +en ||| in and chose ||| 0.5 0.717907 1.22445e-05 1.59638e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| in and out " ||| 1 0.717907 1.22445e-05 9.06739e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| in and out ||| 0.0714286 0.717907 1.22445e-05 1.81562e-05 2.718 ||| 0-0 ||| 14 81669 +en ||| in and ||| 0.0425532 0.717907 2.44891e-05 0.00409329 2.718 ||| 0-0 ||| 47 81669 +en ||| in any lower ||| 1 0.717907 1.22445e-05 5.46912e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| in any of ||| 0.166667 0.717907 1.22445e-05 1.19736e-05 2.718 ||| 0-0 ||| 6 81669 +en ||| in any ||| 0.00970874 0.717907 3.67336e-05 0.000443203 2.718 ||| 0-0 ||| 309 81669 +en ||| in apartment ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| in as large ||| 1 0.717907 1.22445e-05 1.33834e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| in as ||| 0.1 0.717907 2.44891e-05 0.00412176 2.718 ||| 0-0 ||| 20 81669 +en ||| in at ||| 0.1 0.717907 2.44891e-05 0.00144675 2.718 ||| 0-0 ||| 20 81669 +en ||| in averted ||| 1 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-0 ||| 1 81669 +en ||| in because ||| 0.25 0.717907 1.22445e-05 9.17896e-05 2.718 ||| 0-0 ||| 4 81669 +en ||| in being ||| 0.166667 0.717907 2.44891e-05 0.000734463 2.718 ||| 0-0 ||| 12 81669 +en ||| in board ||| 1 0.717907 1.22445e-05 4.1142e-05 2.718 ||| 0-0 ||| 1 81669 +en ||| in both of ||| 0.5 0.717907 1.22445e-05 2.24933e-05 2.718 ||| 0-0 ||| 2 81669 +en ||| in both ||| 0.046332 0.717907 0.000146935 0.00083259 2.718 ||| 0-0 ||| 259 81669 +en ||| in calling ||| 0.2 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-0 ||| 5 81669 +en ||| in case ||| 0.0149254 0.717907 1.22445e-05 0.000338739 2.718 ||| 0-0 ||| 67 81669 +en ||| in charge ||| 0.0224719 0.717907 2.44891e-05 5.38161e-05 2.718 ||| 0-0 ||| 89 81669 +en ||| in check ||| 0.0434783 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-0 ||| 23 81669 +en ||| in children and ||| 0.25 0.717907 1.22445e-05 2.12851e-07 2.718 ||| 0-0 ||| 4 81669 +en ||| in children ||| 0.0909091 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-0 ||| 11 81669 +en ||| in class I reach ||| 0.5 0.717907 1.22445e-05 5.00162e-12 2.718 ||| 0-0 ||| 2 81669 +en ||| in class I ||| 0.5 0.717907 1.22445e-05 2.75116e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| in class ||| 0.2 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-0 ||| 5 81669 +en ||| in cold storage ||| 0.5 0.717907 1.22445e-05 4.32503e-10 2.718 ||| 0-0 ||| 2 81669 +en ||| in cold ||| 0.5 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-0 ||| 2 81669 +en ||| in combined ||| 0.333333 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-0 ||| 3 81669 +en ||| in coming together and ||| 1 0.717907 1.22445e-05 7.8996e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| in coming together ||| 1 0.717907 1.22445e-05 9.40754e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| in coming years ||| 0.0555556 0.717907 1.22445e-05 7.1498e-08 2.718 ||| 0-0 ||| 18 81669 +en ||| in coming ||| 0.0526316 0.717907 2.44891e-05 0.000193134 2.718 ||| 0-0 ||| 38 81669 +en ||| in connection ||| 0.0526316 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-0 ||| 19 81669 +en ||| in defining now ||| 0.0833333 0.717907 1.22445e-05 4.71222e-09 2.718 ||| 0-0 ||| 12 81669 +en ||| in defining ||| 0.04 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 25 81669 +en ||| in determining ||| 0.0169492 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-0 ||| 59 81669 +en ||| in developing ||| 0.0416667 0.717907 2.44891e-05 7.28272e-05 2.718 ||| 0-0 ||| 48 81669 +en ||| in different ||| 0.0243902 0.717907 1.22445e-05 5.38161e-05 2.718 ||| 0-0 ||| 41 81669 +en ||| in direct conflict ||| 0.0833333 0.717907 1.22445e-05 5.14885e-10 2.718 ||| 0-0 ||| 12 81669 +en ||| in direct ||| 0.0555556 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-0 ||| 18 81669 +en ||| in drawing on ||| 1 0.717907 1.22445e-05 1.86237e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| in drawing ||| 0.2 0.717907 1.22445e-05 4.74791e-05 2.718 ||| 0-0 ||| 5 81669 +en ||| in due course , lead it ||| 1 0.717907 1.22445e-05 1.45695e-13 2.718 ||| 0-0 ||| 1 81669 +en ||| in due course , lead ||| 1 0.717907 1.22445e-05 5.47182e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| in due course , ||| 0.333333 0.717907 1.22445e-05 1.05329e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| in due course ||| 0.166667 0.717907 1.22445e-05 5.15633e-08 2.718 ||| 0-0 ||| 6 81669 +en ||| in due ||| 0.2 0.717907 1.22445e-05 0.000120306 2.718 ||| 0-0 ||| 5 81669 +en ||| in early ||| 0.00724638 0.717907 1.22445e-05 5.69846e-05 2.718 ||| 0-0 ||| 138 81669 +en ||| in economic ||| 0.1 0.717907 1.22445e-05 0.000218433 2.718 ||| 0-0 ||| 10 81669 +en ||| in effect ||| 0.0102041 0.717907 1.22445e-05 6.01532e-05 2.718 ||| 0-0 ||| 98 81669 +en ||| in either ||| 0.111111 0.717907 4.89782e-05 0.000481177 2.718 ||| 0-0 ||| 36 81669 +en ||| in emerging ||| 0.1 0.717907 2.44891e-05 7.91643e-05 2.718 ||| 0-0 ||| 20 81669 +en ||| in endorsement ||| 1 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| in ensuring ||| 0.047619 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 21 81669 +en ||| in even ||| 0.153846 0.717907 2.44891e-05 0.000443203 2.718 ||| 0-0 ||| 13 81669 +en ||| in fact just ||| 1 0.717907 1.22445e-05 3.5298e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| in fact ||| 0.00219298 0.717907 2.44891e-05 0.000319728 2.718 ||| 0-0 ||| 912 81669 +en ||| in favor ||| 0.0128755 0.717907 3.67336e-05 4.1142e-05 2.718 ||| 0-0 ||| 233 81669 +en ||| in feeling ||| 0.166667 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-0 ||| 6 81669 +en ||| in fellow ||| 1 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-0 ||| 1 81669 +en ||| in financial ||| 0.2 0.717907 1.22445e-05 0.000145606 2.718 ||| 0-0 ||| 5 81669 +en ||| in foreign ||| 0.333333 0.717907 1.22445e-05 7.59958e-05 2.718 ||| 0-0 ||| 3 81669 +en ||| in formerly ||| 0.333333 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-0 ||| 3 81669 +en ||| in full ||| 0.2 0.717907 3.67336e-05 0.000164617 2.718 ||| 0-0 ||| 15 81669 +en ||| in gaining ||| 0.2 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-0 ||| 5 81669 +en ||| in global ||| 0.0714286 0.717907 1.22445e-05 0.000269081 2.718 ||| 0-0 ||| 14 81669 +en ||| in helping ||| 0.0294118 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-0 ||| 34 81669 +en ||| in high ||| 0.0833333 0.717907 1.22445e-05 0.000231107 2.718 ||| 0-0 ||| 12 81669 +en ||| in himself ||| 0.2 0.717907 1.22445e-05 0.000164617 2.718 ||| 0-0 ||| 5 81669 +en ||| in his " ||| 0.333333 0.717907 1.22445e-05 2.43469e-06 2.718 ||| 0-0 ||| 3 81669 +en ||| in his ||| 0.00650759 0.717907 3.67336e-05 0.000487514 2.718 ||| 0-0 ||| 461 81669 +en ||| in how ||| 0.0178571 0.717907 1.22445e-05 0.000215264 2.718 ||| 0-0 ||| 56 81669 +en ||| in increasing ||| 0.142857 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-0 ||| 7 81669 +en ||| in international ||| 0.333333 0.717907 1.22445e-05 0.000120306 2.718 ||| 0-0 ||| 3 81669 +en ||| in interpreting ||| 0.5 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| in it ||| 0.047619 0.717907 2.44891e-05 0.0129795 2.718 ||| 0-0 ||| 42 81669 +en ||| in its estrangement from the United States ||| 1 0.717907 1.22445e-05 5.83625e-20 2.718 ||| 0-0 ||| 1 81669 +en ||| in its estrangement from the United ||| 1 0.717907 1.22445e-05 2.04279e-16 2.718 ||| 0-0 ||| 1 81669 +en ||| in its estrangement from the ||| 1 0.717907 1.22445e-05 5.51807e-13 2.718 ||| 0-0 ||| 1 81669 +en ||| in its estrangement from ||| 1 0.717907 1.22445e-05 1.03861e-11 2.718 ||| 0-0 ||| 1 81669 +en ||| in its estrangement ||| 1 0.717907 1.22445e-05 6.29649e-09 2.718 ||| 0-0 ||| 1 81669 +en ||| in its neighborhood in ||| 1 0.717907 1.22445e-05 2.90244e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| in its sheer scale , ||| 1 0.717907 1.22445e-05 4.34217e-13 2.718 ||| 0-0 ||| 1 81669 +en ||| in its sheer scale ||| 1 0.717907 1.22445e-05 2.12569e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| in its sheer ||| 1 0.717907 1.22445e-05 2.51859e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| in its ||| 0.00757576 0.717907 6.12227e-05 0.00096869 2.718 ||| 0-0 ||| 660 81669 +en ||| in just ||| 0.030303 0.717907 1.22445e-05 0.000538161 2.718 ||| 0-0 ||| 33 81669 +en ||| in keeping ||| 0.0322581 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-0 ||| 31 81669 +en ||| in kind ||| 0.142857 0.717907 1.22445e-05 0.000129812 2.718 ||| 0-0 ||| 7 81669 +en ||| in late ||| 0.0165289 0.717907 2.44891e-05 0.000107632 2.718 ||| 0-0 ||| 121 81669 +en ||| in leading ||| 0.0769231 0.717907 1.22445e-05 8.54526e-05 2.718 ||| 0-0 ||| 13 81669 +en ||| in line , ||| 0.2 0.717907 1.22445e-05 4.59139e-05 2.718 ||| 0-0 ||| 5 81669 +en ||| in line ||| 0.05 0.717907 4.89782e-05 0.00022477 2.718 ||| 0-0 ||| 80 81669 +en ||| in live ||| 1 0.717907 1.22445e-05 0.000120306 2.718 ||| 0-0 ||| 1 81669 +en ||| in lower ||| 0.166667 0.717907 1.22445e-05 6.01532e-05 2.718 ||| 0-0 ||| 6 81669 +en ||| in many ||| 0.00344828 0.717907 2.44891e-05 0.000284923 2.718 ||| 0-0 ||| 580 81669 +en ||| in market ||| 1 0.717907 1.22445e-05 7.91643e-05 2.718 ||| 0-0 ||| 1 81669 +en ||| in millennia of ||| 1 0.362971 1.22445e-05 2.52442e-08 2.718 ||| 0-0 0-2 ||| 1 81669 +en ||| in mind ||| 0.02 0.717907 2.44891e-05 0.000107632 2.718 ||| 0-0 ||| 100 81669 +en ||| in much of ||| 0.0416667 0.717907 1.22445e-05 1.89863e-05 2.718 ||| 0-0 ||| 24 81669 +en ||| in much ||| 0.0793651 0.717907 6.12227e-05 0.000702778 2.718 ||| 0-0 ||| 63 81669 +en ||| in my ||| 0.00657895 0.717907 1.22445e-05 0.000104464 2.718 ||| 0-0 ||| 152 81669 +en ||| in need ||| 0.025 0.717907 1.22445e-05 0.000259575 2.718 ||| 0-0 ||| 40 81669 +en ||| in neighboring ||| 0.0384615 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-0 ||| 26 81669 +en ||| in new ||| 0.0465116 0.717907 2.44891e-05 0.00035775 2.718 ||| 0-0 ||| 43 81669 +en ||| in no uncertain ||| 0.25 0.717907 1.22445e-05 1.31696e-08 2.718 ||| 0-0 ||| 4 81669 +en ||| in no ||| 0.0909091 0.717907 6.12227e-05 0.000506525 2.718 ||| 0-0 ||| 55 81669 +en ||| in obtaining ||| 0.25 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| in office . ||| 0.0454545 0.717907 1.22445e-05 4.65745e-07 2.718 ||| 0-0 ||| 22 81669 +en ||| in office ||| 0.00943396 0.717907 1.22445e-05 0.000101295 2.718 ||| 0-0 ||| 106 81669 +en ||| in on ||| 0.307692 0.527279 4.89782e-05 0.033088 2.718 ||| 0-0 0-1 ||| 13 81669 +en ||| in order ||| 0.027907 0.717907 0.000146935 0.000392555 2.718 ||| 0-0 ||| 430 81669 +en ||| in organizations ||| 0.25 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| in other words , financial markets are ||| 1 0.717907 1.22445e-05 1.31959e-18 2.718 ||| 0-0 ||| 1 81669 +en ||| in other words , financial markets ||| 1 0.717907 1.22445e-05 1.78239e-16 2.718 ||| 0-0 ||| 1 81669 +en ||| in other words , financial ||| 1 0.717907 1.22445e-05 2.49635e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| in other words , ||| 0.004329 0.717907 1.22445e-05 8.35738e-09 2.718 ||| 0-0 ||| 231 81669 +en ||| in other words ||| 0.00465116 0.717907 1.22445e-05 4.09133e-08 2.718 ||| 0-0 ||| 215 81669 +en ||| in other ||| 0.00411523 0.717907 2.44891e-05 0.000573015 2.718 ||| 0-0 ||| 486 81669 +en ||| in our ||| 0.0037594 0.717907 1.22445e-05 0.000256406 2.718 ||| 0-0 ||| 266 81669 +en ||| in part ||| 0.0047619 0.717907 1.22445e-05 0.000300766 2.718 ||| 0-0 ||| 210 81669 +en ||| in particular ||| 0.00258398 0.717907 1.22445e-05 4.43106e-05 2.718 ||| 0-0 ||| 387 81669 +en ||| in people ||| 0.0769231 0.717907 1.22445e-05 0.000392555 2.718 ||| 0-0 ||| 13 81669 +en ||| in place in ||| 0.5 0.717907 1.22445e-05 9.53414e-06 2.718 ||| 0-2 ||| 2 81669 +en ||| in place of his incapacitated ||| 1 0.717907 1.22445e-05 1.08973e-13 2.718 ||| 0-0 ||| 1 81669 +en ||| in place of his ||| 1 0.717907 1.22445e-05 1.6765e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| in place of ||| 0.142857 0.717907 1.22445e-05 1.67633e-05 2.718 ||| 0-0 ||| 7 81669 +en ||| in place to ||| 0.125 0.717907 1.22445e-05 5.11847e-05 2.718 ||| 0-0 ||| 8 81669 +en ||| in place ||| 0.0530303 0.717907 8.57118e-05 0.000620494 2.718 ||| 0-0 ||| 132 81669 +en ||| in playing ||| 0.142857 0.717907 1.22445e-05 5.69846e-05 2.718 ||| 0-0 ||| 7 81669 +en ||| in power in ||| 0.111111 0.717907 1.22445e-05 3.55105e-06 2.718 ||| 0-2 ||| 9 81669 +en ||| in power ||| 0.00502513 0.717907 1.22445e-05 0.000231107 2.718 ||| 0-0 ||| 199 81669 +en ||| in practical ||| 0.333333 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-0 ||| 3 81669 +en ||| in preference ||| 0.333333 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-0 ||| 3 81669 +en ||| in prison ||| 0.0149254 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-0 ||| 67 81669 +en ||| in propping up ||| 0.25 0.717907 1.22445e-05 9.89751e-09 2.718 ||| 0-0 ||| 4 81669 +en ||| in propping ||| 0.333333 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 3 81669 +en ||| in protecting ||| 0.0625 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 16 81669 +en ||| in providing ||| 0.0555556 0.717907 2.44891e-05 4.43106e-05 2.718 ||| 0-0 ||| 36 81669 +en ||| in public spending ||| 0.1 0.717907 1.22445e-05 2.10957e-08 2.718 ||| 0-0 ||| 10 81669 +en ||| in public ||| 0.0363636 0.717907 2.44891e-05 0.000170954 2.718 ||| 0-0 ||| 55 81669 +en ||| in question ||| 0.0277778 0.717907 1.22445e-05 0.000113969 2.718 ||| 0-0 ||| 36 81669 +en ||| in real ||| 0.0454545 0.717907 1.22445e-05 0.000148774 2.718 ||| 0-0 ||| 22 81669 +en ||| in recent ||| 0.00289855 0.717907 1.22445e-05 6.64902e-05 2.718 ||| 0-0 ||| 345 81669 +en ||| in recorded ||| 0.25 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| in restraint ||| 0.25 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| in scale ||| 0.125 0.717907 1.22445e-05 4.1142e-05 2.718 ||| 0-0 ||| 8 81669 +en ||| in several ||| 0.015873 0.717907 1.22445e-05 6.01532e-05 2.718 ||| 0-0 ||| 63 81669 +en ||| in sharing ||| 0.142857 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-0 ||| 7 81669 +en ||| in so ||| 0.153846 0.717907 2.44891e-05 0.0010985 2.718 ||| 0-0 ||| 13 81669 +en ||| in socially . ||| 1 0.717907 1.22445e-05 1.45685e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| in socially . � ||| 1 0.717907 1.22445e-05 2.46063e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| in socially ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| in soil ||| 1 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-0 ||| 1 81669 +en ||| in some parts of ||| 0.111111 0.717907 1.22445e-05 8.55207e-10 2.718 ||| 0-0 ||| 9 81669 +en ||| in some parts ||| 0.0555556 0.717907 1.22445e-05 3.16555e-08 2.718 ||| 0-0 ||| 18 81669 +en ||| in some ||| 0.00480769 0.717907 2.44891e-05 0.000348245 2.718 ||| 0-0 ||| 416 81669 +en ||| in stable ||| 0.5 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-0 ||| 2 81669 +en ||| in stark ||| 0.0909091 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-0 ||| 11 81669 +en ||| in step ||| 0.1 0.717907 1.22445e-05 0.000120306 2.718 ||| 0-0 ||| 10 81669 +en ||| in still ||| 0.666667 0.717907 2.44891e-05 0.00036087 2.718 ||| 0-0 ||| 3 81669 +en ||| in store ||| 0.142857 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-0 ||| 7 81669 +en ||| in stripping ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| in such ||| 0.0546448 0.717907 0.000122445 0.00103201 2.718 ||| 0-0 ||| 183 81669 +en ||| in support ||| 0.0227273 0.717907 1.22445e-05 0.000139269 2.718 ||| 0-0 ||| 44 81669 +en ||| in taking ||| 0.125 0.717907 2.44891e-05 0.000237444 2.718 ||| 0-0 ||| 16 81669 +en ||| in terms of ||| 0.0158311 0.717907 7.34673e-05 6.9271e-06 2.718 ||| 0-0 ||| 379 81669 +en ||| in terms ||| 0.0287081 0.717907 0.000146935 0.000256406 2.718 ||| 0-0 ||| 418 81669 +en ||| in that it could ||| 0.5 0.717907 1.22445e-05 1.19825e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| in that it ||| 0.2 0.717907 1.22445e-05 0.00010604 2.718 ||| 0-0 ||| 5 81669 +en ||| in that ||| 0.00436681 0.717907 1.22445e-05 0.00398249 2.718 ||| 0-0 ||| 229 81669 +en ||| in the 15 ||| 0.5 0.717907 1.22445e-05 1.1784e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| in the context of ||| 0.0147059 0.717907 1.22445e-05 1.36439e-08 2.718 ||| 0-0 ||| 68 81669 +en ||| in the context ||| 0.0140845 0.717907 1.22445e-05 5.05027e-07 2.718 ||| 0-0 ||| 71 81669 +en ||| in the day that I went to ||| 1 0.717907 1.22445e-05 1.42289e-15 2.718 ||| 0-0 ||| 1 81669 +en ||| in the day that I went ||| 1 0.717907 1.22445e-05 1.72492e-14 2.718 ||| 0-0 ||| 1 81669 +en ||| in the day that I ||| 1 0.717907 1.22445e-05 6.98915e-11 2.718 ||| 0-0 ||| 1 81669 +en ||| in the day that ||| 1 0.717907 1.22445e-05 5.63459e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| in the day ||| 0.25 0.717907 1.22445e-05 6.89685e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| in the dock in ||| 1 0.717907 1.22445e-05 1.64122e-07 2.718 ||| 0-0 0-3 ||| 1 81669 +en ||| in the driver 's seat ||| 0.142857 0.717907 1.22445e-05 3.40287e-13 2.718 ||| 0-0 ||| 7 81669 +en ||| in the driver 's ||| 0.333333 0.717907 1.22445e-05 5.24326e-09 2.718 ||| 0-0 ||| 3 81669 +en ||| in the driver ||| 0.333333 0.717907 1.22445e-05 3.36685e-07 2.718 ||| 0-0 ||| 3 81669 +en ||| in the events of ||| 0.5 0.717907 1.22445e-05 4.54095e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| in the events ||| 0.5 0.717907 1.22445e-05 1.68083e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| in the eyes ||| 0.0172414 0.717907 1.22445e-05 2.3542e-06 2.718 ||| 0-0 ||| 58 81669 +en ||| in the fact ||| 0.0909091 0.717907 2.44891e-05 1.6987e-05 2.718 ||| 0-0 ||| 22 81669 +en ||| in the first place ||| 0.0126582 0.717907 1.22445e-05 1.62723e-08 2.718 ||| 0-0 ||| 79 81669 +en ||| in the first ||| 0.00480769 0.717907 1.22445e-05 1.27837e-05 2.718 ||| 0-0 ||| 208 81669 +en ||| in the form of ||| 0.0217391 0.717907 2.44891e-05 2.68119e-07 2.718 ||| 0-0 ||| 92 81669 +en ||| in the form ||| 0.0291262 0.717907 3.67336e-05 9.92442e-06 2.718 ||| 0-0 ||| 103 81669 +en ||| in the main , to jump ||| 1 0.717907 1.22445e-05 1.67588e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| in the main , to ||| 1 0.717907 1.22445e-05 3.68324e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| in the main , ||| 1 0.717907 1.22445e-05 4.46507e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| in the main ||| 0.25 0.717907 1.22445e-05 2.18586e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| in the middle ||| 0.0175439 0.717907 1.22445e-05 1.51249e-06 2.718 ||| 0-0 ||| 57 81669 +en ||| in the process of ||| 0.0769231 0.717907 2.44891e-05 1.63586e-07 2.718 ||| 0-0 ||| 26 81669 +en ||| in the process ||| 0.02 0.717907 2.44891e-05 6.05514e-06 2.718 ||| 0-0 ||| 100 81669 +en ||| in the quarter-century ||| 1 0.717907 1.22445e-05 3.36685e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| in the race to claim it ||| 1 0.717907 1.22445e-05 8.45103e-13 2.718 ||| 0-0 ||| 1 81669 +en ||| in the race to claim ||| 1 0.717907 1.22445e-05 3.17392e-11 2.718 ||| 0-0 ||| 1 81669 +en ||| in the race to ||| 0.25 0.717907 1.22445e-05 1.11093e-07 2.718 ||| 0-0 ||| 4 81669 +en ||| in the race ||| 0.125 0.717907 1.22445e-05 1.34674e-06 2.718 ||| 0-0 ||| 8 81669 +en ||| in the real exchange rate ||| 0.25 0.717907 1.22445e-05 3.52074e-13 2.718 ||| 0-0 ||| 4 81669 +en ||| in the real exchange ||| 0.5 0.717907 1.22445e-05 1.12953e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| in the real ||| 0.5 0.717907 1.22445e-05 7.90432e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| in the space ||| 0.142857 0.717907 1.22445e-05 6.73369e-07 2.718 ||| 0-0 ||| 7 81669 +en ||| in the upper 90 's for ||| 1 0.717907 1.22445e-05 6.48946e-16 2.718 ||| 0-0 ||| 1 81669 +en ||| in the upper 90 's ||| 1 0.717907 1.22445e-05 1.36325e-13 2.718 ||| 0-0 ||| 1 81669 +en ||| in the upper 90 ||| 1 0.717907 1.22445e-05 8.7538e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| in the upper ||| 0.5 0.717907 1.22445e-05 1.34674e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| in the value ||| 0.047619 0.717907 1.22445e-05 5.04509e-06 2.718 ||| 0-0 ||| 21 81669 +en ||| in the wake ||| 0.0136986 0.717907 1.22445e-05 1.68083e-06 2.718 ||| 0-0 ||| 73 81669 +en ||| in the ||| 0.0372005 0.717907 0.00815487 0.0258988 2.718 ||| 0-0 ||| 17903 81669 +en ||| in their ||| 0.00422535 0.717907 3.67336e-05 0.000873732 2.718 ||| 0-0 ||| 710 81669 +en ||| in these two groups of countries ' ||| 1 0.717907 1.22445e-05 1.91661e-20 2.718 ||| 0-0 ||| 1 81669 +en ||| in these two groups of countries ||| 1 0.717907 1.22445e-05 2.32372e-17 2.718 ||| 0-0 ||| 1 81669 +en ||| in these two groups of ||| 1 0.717907 1.22445e-05 1.02232e-13 2.718 ||| 0-0 ||| 1 81669 +en ||| in these two groups ||| 1 0.717907 1.22445e-05 3.7841e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| in these two ||| 0.142857 0.717907 1.22445e-05 1.16434e-07 2.718 ||| 0-0 ||| 7 81669 +en ||| in these ||| 0.00357143 0.717907 1.22445e-05 0.000373544 2.718 ||| 0-0 ||| 280 81669 +en ||| in those terms ||| 0.333333 0.717907 1.22445e-05 1.28229e-07 2.718 ||| 0-0 ||| 3 81669 +en ||| in those ||| 0.0217391 0.717907 2.44891e-05 0.000243781 2.718 ||| 0-0 ||| 92 81669 +en ||| in times ||| 0.0113636 0.717907 1.22445e-05 9.49581e-05 2.718 ||| 0-0 ||| 88 81669 +en ||| in to ||| 0.136364 0.717907 3.67336e-05 0.0402111 2.718 ||| 0-0 ||| 22 81669 +en ||| in today 's ||| 0.0666667 0.717907 1.22445e-05 2.6623e-06 2.718 ||| 0-0 ||| 15 81669 +en ||| in today ||| 0.142857 0.717907 2.44891e-05 0.000170954 2.718 ||| 0-0 ||| 14 81669 +en ||| in too ||| 1 0.717907 2.44891e-05 0.000487514 2.718 ||| 0-0 ||| 2 81669 +en ||| in tradable ||| 0.333333 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-0 ||| 3 81669 +en ||| in tranches ||| 0.25 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| in transfer payments ||| 1 0.717907 1.22445e-05 7.41434e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| in transfer ||| 1 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-0 ||| 1 81669 +en ||| in trouble ||| 0.025641 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-0 ||| 39 81669 +en ||| in uncertainty ||| 0.333333 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-0 ||| 3 81669 +en ||| in urgent need of ||| 0.25 0.717907 1.22445e-05 1.8233e-10 2.718 ||| 0-0 ||| 4 81669 +en ||| in urgent need ||| 0.25 0.717907 1.22445e-05 6.74895e-09 2.718 ||| 0-0 ||| 4 81669 +en ||| in urgent ||| 0.25 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-0 ||| 4 81669 +en ||| in view ||| 0.0144928 0.717907 1.22445e-05 0.000123475 2.718 ||| 0-0 ||| 69 81669 +en ||| in ways ||| 0.0105263 0.717907 1.22445e-05 8.54526e-05 2.718 ||| 0-0 ||| 95 81669 +en ||| in what is ||| 0.285714 0.717907 2.44891e-05 7.93094e-06 2.718 ||| 0-0 ||| 7 81669 +en ||| in what now constitutes ||| 1 0.717907 1.22445e-05 9.30287e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| in what now ||| 1 0.717907 1.22445e-05 7.15606e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| in what were ||| 0.25 0.717907 1.22445e-05 1.06557e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| in what ||| 0.0630631 0.717907 8.57118e-05 0.000481177 2.718 ||| 0-0 ||| 111 81669 +en ||| in which ||| 0.00097561 0.717907 1.22445e-05 0.00058564 2.718 ||| 0-0 ||| 1025 81669 +en ||| in writing ||| 0.1 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-0 ||| 10 81669 +en ||| in years ||| 0.0769231 0.717907 1.22445e-05 0.000180459 2.718 ||| 0-0 ||| 13 81669 +en ||| in yet ||| 0.333333 0.717907 1.22445e-05 0.000256406 2.718 ||| 0-0 ||| 3 81669 +en ||| in ||| 0.671799 0.717907 0.662504 0.487465 2.718 ||| 0-0 ||| 80539 81669 +en ||| incentives . in ||| 1 0.717907 1.22445e-05 1.45685e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| included in ||| 0.037037 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 27 81669 +en ||| included on ||| 0.25 0.336652 1.22445e-05 3.52964e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| inclusion in ||| 0.166667 0.717907 3.67336e-05 1.26741e-05 2.718 ||| 0-1 ||| 18 81669 +en ||| income in ||| 0.0555556 0.717907 1.22445e-05 5.38161e-05 2.718 ||| 0-1 ||| 18 81669 +en ||| increase over ||| 1 0.159665 1.22445e-05 1.52211e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| incumbent ||| 0.0322581 0.146342 2.44891e-05 0.0001071 2.718 ||| 0-0 ||| 62 81669 +en ||| incumbents over ||| 0.166667 0.159665 1.22445e-05 4.76118e-08 2.718 ||| 0-1 ||| 6 81669 +en ||| incur ||| 0.111111 0.230769 1.22445e-05 5.35e-05 2.718 ||| 0-0 ||| 9 81669 +en ||| incurred ||| 0.0454545 0.111111 1.22445e-05 3.57e-05 2.718 ||| 0-0 ||| 22 81669 +en ||| indeed , in ||| 0.0232558 0.717907 2.44891e-05 4.59139e-05 2.718 ||| 0-2 ||| 86 81669 +en ||| indeed , ||| 0.0010118 0.140941 3.67336e-05 0.00147438 2.718 ||| 0-0 ||| 2965 81669 +en ||| indeed on ||| 0.333333 0.336652 1.22445e-05 3.12984e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| indeed ||| 0.00163666 0.140941 6.12227e-05 0.0072178 2.718 ||| 0-0 ||| 3055 81669 +en ||| independent , ||| 0.04 0.0035651 1.22445e-05 3.63602e-06 2.718 ||| 0-0 ||| 25 81669 +en ||| independent ||| 0.00322061 0.0035651 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 621 81669 +en ||| influence . ||| 0.0192308 0.0828539 1.22445e-05 2.95369e-06 2.718 ||| 0-0 ||| 52 81669 +en ||| influence in ||| 0.0181818 0.40038 1.22445e-05 0.000313147 2.718 ||| 0-0 0-1 ||| 55 81669 +en ||| influence on task ||| 0.5 0.336652 1.22445e-05 8.02993e-11 2.718 ||| 0-1 ||| 2 81669 +en ||| influence on ||| 0.0322581 0.336652 1.22445e-05 3.08844e-06 2.718 ||| 0-1 ||| 31 81669 +en ||| influence ||| 0.00726895 0.0828539 8.57118e-05 0.0006424 2.718 ||| 0-0 ||| 963 81669 +en ||| inhabit ||| 0.111111 0.3 1.22445e-05 5.35e-05 2.718 ||| 0-0 ||| 9 81669 +en ||| inherit rights : we make them . ||| 1 2e-05 1.22445e-05 7.30596e-26 2.718 ||| 0-6 ||| 1 81669 +en ||| inroads into ||| 0.333333 0.414384 1.22445e-05 1.28975e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| inside ||| 0.0517928 0.14554 0.000159179 0.0002766 2.718 ||| 0-0 ||| 251 81669 +en ||| insiders across ||| 0.333333 0.28681 1.22445e-05 1.51824e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| insight into ||| 0.1 0.414384 1.22445e-05 6.44875e-07 2.718 ||| 0-1 ||| 10 81669 +en ||| insist upon it , mutually pledging ||| 0.5 0.348039 1.22445e-05 2.32603e-19 2.718 ||| 0-0 ||| 2 81669 +en ||| insist upon it , mutually ||| 0.5 0.348039 1.22445e-05 1.78926e-14 2.718 ||| 0-0 ||| 2 81669 +en ||| insist upon it , ||| 0.5 0.348039 1.22445e-05 9.17567e-10 2.718 ||| 0-0 ||| 2 81669 +en ||| insist upon it ||| 0.5 0.348039 1.22445e-05 4.49192e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| insist upon ||| 0.5 0.348039 1.22445e-05 1.68701e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| insist ||| 0.03 0.348039 3.67336e-05 0.0006335 2.718 ||| 0-0 ||| 100 81669 +en ||| insisted on ||| 0.0344828 0.33358 1.22445e-05 2.36214e-05 2.718 ||| 0-0 0-1 ||| 29 81669 +en ||| insisting ||| 0.0185185 0.289157 1.22445e-05 0.0002141 2.718 ||| 0-0 ||| 54 81669 +en ||| insofar ||| 0.0869565 0.375 4.89782e-05 0.0001874 2.718 ||| 0-0 ||| 46 81669 +en ||| inspired by ||| 0.025641 0.065573 1.22445e-05 8.06669e-08 2.718 ||| 0-1 ||| 39 81669 +en ||| installed on ||| 1 0.336652 1.22445e-05 1.32362e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| instead promising ||| 0.5 0.356403 1.22445e-05 2.99239e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| instead ||| 0.000765111 0.356403 1.22445e-05 0.0076728 2.718 ||| 0-0 ||| 1307 81669 +en ||| integral in propping up ||| 0.333333 0.717907 1.22445e-05 1.28668e-13 2.718 ||| 0-1 ||| 3 81669 +en ||| integral in propping ||| 0.333333 0.717907 1.22445e-05 4.11908e-11 2.718 ||| 0-1 ||| 3 81669 +en ||| integral in ||| 0.333333 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| intended for it ||| 1 0.0255404 1.22445e-05 1.74836e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| intended for ||| 0.0625 0.0255404 1.22445e-05 6.56624e-07 2.718 ||| 0-1 ||| 16 81669 +en ||| intent on ||| 0.0263158 0.336652 1.22445e-05 2.64723e-06 2.718 ||| 0-1 ||| 38 81669 +en ||| interest in ||| 0.0243902 0.717907 4.89782e-05 0.000170954 2.718 ||| 0-1 ||| 164 81669 +en ||| interest rates to curb excess liquidity so ||| 1 0.0189899 1.22445e-05 3.96135e-27 2.718 ||| 0-2 ||| 1 81669 +en ||| interest rates to curb excess liquidity ||| 1 0.0189899 1.22445e-05 1.75787e-24 2.718 ||| 0-2 ||| 1 81669 +en ||| interest rates to curb excess ||| 1 0.0189899 1.22445e-05 2.70441e-19 2.718 ||| 0-2 ||| 1 81669 +en ||| interest rates to curb ||| 1 0.0189899 1.22445e-05 6.93439e-15 2.718 ||| 0-2 ||| 1 81669 +en ||| interest rates to ||| 0.03125 0.0189899 1.22445e-05 1.06683e-09 2.718 ||| 0-2 ||| 32 81669 +en ||| interested in ||| 0.0117647 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 85 81669 +en ||| internationally traded ||| 0.5 0.12381 1.22445e-05 2.262e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| intervention anywhere in ||| 1 0.717907 1.22445e-05 3.70717e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| intervention in ||| 0.0238095 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 42 81669 +en ||| into Central Asian ||| 1 0.414384 1.22445e-05 6.69638e-11 2.718 ||| 0-0 ||| 1 81669 +en ||| into Central ||| 1 0.414384 1.22445e-05 1.0318e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| into US ||| 0.333333 0.414384 1.22445e-05 2.55152e-05 2.718 ||| 0-0 ||| 3 81669 +en ||| into a design ||| 1 0.414384 1.22445e-05 1.03778e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| into a ||| 0.0213144 0.414384 0.000146935 0.000798295 2.718 ||| 0-0 ||| 563 81669 +en ||| into account ocean currents , wind , ||| 1 0.414384 1.22445e-05 3.72123e-22 2.718 ||| 0-0 ||| 1 81669 +en ||| into account ocean currents , wind ||| 1 0.414384 1.22445e-05 1.82172e-21 2.718 ||| 0-0 ||| 1 81669 +en ||| into account ocean currents , ||| 1 0.414384 1.22445e-05 4.00377e-17 2.718 ||| 0-0 ||| 1 81669 +en ||| into account ocean currents ||| 1 0.414384 1.22445e-05 1.96003e-16 2.718 ||| 0-0 ||| 1 81669 +en ||| into account ocean ||| 1 0.414384 1.22445e-05 3.01543e-11 2.718 ||| 0-0 ||| 1 81669 +en ||| into account ||| 0.010989 0.414384 1.22445e-05 2.31956e-06 2.718 ||| 0-0 ||| 91 81669 +en ||| into action ||| 0.0833333 0.414384 1.22445e-05 2.19059e-06 2.718 ||| 0-0 ||| 12 81669 +en ||| into being ||| 0.0666667 0.414384 1.22445e-05 2.98964e-05 2.718 ||| 0-0 ||| 15 81669 +en ||| into closer ||| 0.166667 0.414384 1.22445e-05 3.47836e-06 2.718 ||| 0-0 ||| 6 81669 +en ||| into cultivating ||| 0.5 0.414384 1.22445e-05 1.28975e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| into either ||| 0.5 0.414384 1.22445e-05 1.95863e-05 2.718 ||| 0-0 ||| 2 81669 +en ||| into extreme ||| 1 0.414384 1.22445e-05 1.15879e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| into force ||| 0.0416667 0.414384 1.22445e-05 5.79792e-06 2.718 ||| 0-0 ||| 24 81669 +en ||| into hard ||| 1 0.414384 1.22445e-05 8.89133e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| into high ||| 0.5 0.414384 1.22445e-05 9.40723e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| into initiative ||| 0.5 0.414384 1.22445e-05 5.159e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| into its quarter ||| 0.5 0.414384 1.22445e-05 1.0252e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| into its ||| 0.0208333 0.414384 1.22445e-05 3.94306e-05 2.718 ||| 0-0 ||| 48 81669 +en ||| into low ||| 1 0.414384 1.22445e-05 2.44854e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| into national ||| 1 0.414384 1.22445e-05 4.7681e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| into one-sided ||| 1 0.414384 1.22445e-05 1.28975e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| into ongoing ||| 1 0.414384 1.22445e-05 2.19059e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| into question ||| 0.0454545 0.414384 2.44891e-05 4.63913e-06 2.718 ||| 0-0 ||| 44 81669 +en ||| into such ||| 0.25 0.414384 2.44891e-05 4.20081e-05 2.718 ||| 0-0 ||| 8 81669 +en ||| into the ||| 0.0184453 0.414384 0.000171424 0.00105421 2.718 ||| 0-0 ||| 759 81669 +en ||| into trouble ||| 0.0625 0.414384 1.22445e-05 1.41674e-06 2.718 ||| 0-0 ||| 16 81669 +en ||| into us ||| 0.5 0.414384 1.22445e-05 1.13399e-05 2.718 ||| 0-0 ||| 2 81669 +en ||| into yet ||| 1 0.414384 1.22445e-05 1.0437e-05 2.718 ||| 0-0 ||| 1 81669 +en ||| into ||| 0.413558 0.414384 0.0200933 0.0198423 2.718 ||| 0-0 ||| 3968 81669 +en ||| intrusion into ||| 0.333333 0.414384 1.22445e-05 2.5795e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| invaded ||| 0.030303 0.0277778 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 33 81669 +en ||| invest in ||| 0.00833333 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 120 81669 +en ||| invested in ||| 0.0227273 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 44 81669 +en ||| investments in ||| 0.018018 0.717907 2.44891e-05 1.58426e-05 2.718 ||| 0-1 ||| 111 81669 +en ||| inviting further pressures from ||| 0.5 0.0190577 1.22445e-05 7.93126e-17 2.718 ||| 0-3 ||| 2 81669 +en ||| involved in ||| 0.0243902 0.717907 3.67336e-05 5.38161e-05 2.718 ||| 0-1 ||| 123 81669 +en ||| involved the ||| 0.25 0.0340633 1.22445e-05 6.63589e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| involved ||| 0.00621118 0.0340633 2.44891e-05 0.0001249 2.718 ||| 0-0 ||| 322 81669 +en ||| involvement in Iraq ||| 0.333333 0.717907 1.22445e-05 4.11591e-10 2.718 ||| 0-1 ||| 3 81669 +en ||| involvement in ||| 0.04 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 25 81669 +en ||| involving ||| 0.0192308 0.0535714 3.67336e-05 0.0001071 2.718 ||| 0-0 ||| 156 81669 +en ||| inward in ||| 1 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| irritants in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| is , at ||| 0.166667 0.351161 1.22445e-05 0.000123069 2.718 ||| 0-2 ||| 6 81669 +en ||| is , in ||| 0.037037 0.717907 1.22445e-05 0.00164123 2.718 ||| 0-2 ||| 27 81669 +en ||| is about : ||| 1 0.0371521 1.22445e-05 1.68067e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| is about ||| 0.0222222 0.0371521 3.67336e-05 4.04396e-05 2.718 ||| 0-1 ||| 135 81669 +en ||| is against ||| 0.333333 0.0888521 2.44891e-05 4.73506e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| is at ||| 0.0235849 0.351161 6.12227e-05 0.00060248 2.718 ||| 0-1 ||| 212 81669 +en ||| is based on ||| 0.00952381 0.336652 1.22445e-05 1.81691e-07 2.718 ||| 0-2 ||| 105 81669 +en ||| is booming ||| 0.111111 0.177778 1.22445e-05 3.52888e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| is by ||| 0.0416667 0.065573 2.44891e-05 0.000204552 2.718 ||| 0-1 ||| 48 81669 +en ||| is coming ||| 0.0135135 0.0059524 1.22445e-05 5.88422e-07 2.718 ||| 0-1 ||| 74 81669 +en ||| is concluded in ||| 1 0.717907 1.22445e-05 4.17799e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| is constrained by its ||| 1 0.065573 1.22445e-05 5.2843e-12 2.718 ||| 0-2 ||| 1 81669 +en ||| is constrained by ||| 0.111111 0.065573 1.22445e-05 2.65917e-09 2.718 ||| 0-2 ||| 9 81669 +en ||| is currently being debated ||| 0.5 0.0649123 1.22445e-05 1.59855e-13 2.718 ||| 0-1 ||| 2 81669 +en ||| is currently being ||| 0.166667 0.0649123 1.22445e-05 8.19771e-09 2.718 ||| 0-1 ||| 6 81669 +en ||| is currently ||| 0.0181818 0.0649123 1.22445e-05 5.44084e-06 2.718 ||| 0-1 ||| 55 81669 +en ||| is doing in ||| 0.4 0.717907 2.44891e-05 2.92218e-06 2.718 ||| 0-2 ||| 5 81669 +en ||| is for ||| 0.0108696 0.0255404 1.22445e-05 0.000128231 2.718 ||| 0-1 ||| 92 81669 +en ||| is in ||| 0.0685484 0.717907 0.000416315 0.00803459 2.718 ||| 0-1 ||| 496 81669 +en ||| is largely ||| 0.025641 0.285296 1.22445e-05 5.73505e-05 2.718 ||| 0-1 ||| 39 81669 +en ||| is little dispute ||| 1 0.006993 1.22445e-05 4.85848e-11 2.718 ||| 0-2 ||| 1 81669 +en ||| is mostly aimed ||| 0.5 0.117834 1.22445e-05 1.27207e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| is mostly ||| 0.04 0.117834 1.22445e-05 1.08817e-05 2.718 ||| 0-1 ||| 25 81669 +en ||| is now upon us ||| 0.5 0.117761 1.22445e-05 7.62368e-12 2.718 ||| 0-2 ||| 2 81669 +en ||| is now upon ||| 1 0.117761 1.22445e-05 1.33398e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| is on ||| 0.0583333 0.336652 8.57118e-05 0.00111879 2.718 ||| 0-1 ||| 120 81669 +en ||| is particularly ||| 0.015625 0.220077 1.22445e-05 4.19098e-05 2.718 ||| 0-1 ||| 64 81669 +en ||| is patterned after ||| 0.166667 0.0037224 1.22445e-05 1.33812e-11 2.718 ||| 0-2 ||| 6 81669 +en ||| is permitted in ||| 1 0.717907 1.22445e-05 6.25895e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| is rarely ||| 0.0384615 0.0002917 1.22445e-05 4.05925e-09 2.718 ||| 0-0 ||| 26 81669 +en ||| is second only to ||| 0.142857 0.119291 1.22445e-05 2.92059e-09 2.718 ||| 0-1 ||| 7 81669 +en ||| is second only ||| 0.125 0.119291 1.22445e-05 3.54053e-08 2.718 ||| 0-1 ||| 8 81669 +en ||| is second ||| 0.2 0.119291 1.22445e-05 3.26467e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| is still out on ||| 0.5 0.336652 1.22445e-05 3.67373e-09 2.718 ||| 0-3 ||| 2 81669 +en ||| is talk in ||| 1 0.717907 1.22445e-05 7.82569e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| is that in ||| 0.0526316 0.717907 1.22445e-05 6.5641e-05 2.718 ||| 0-2 ||| 19 81669 +en ||| is threatening social stability in ||| 0.5 0.717907 1.22445e-05 3.17464e-16 2.718 ||| 0-4 ||| 2 81669 +en ||| is to be ||| 0.0103093 0.0189899 1.22445e-05 2.94784e-06 2.718 ||| 0-1 ||| 97 81669 +en ||| is to ||| 0.00292113 0.0189899 3.67336e-05 0.000286021 2.718 ||| 0-1 ||| 1027 81669 +en ||| is ||| 0.00012411 0.0002917 6.12227e-05 0.0001249 2.718 ||| 0-0 ||| 40287 81669 +en ||| is … constructed at ||| 1 0.351161 1.22445e-05 1.82961e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| isolated from ||| 0.142857 0.0190577 1.22445e-05 5.63687e-08 2.718 ||| 0-1 ||| 7 81669 +en ||| issue in ||| 0.0277778 0.717907 1.22445e-05 7.59958e-05 2.718 ||| 0-1 ||| 36 81669 +en ||| issues in ||| 0.111111 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| it ( ||| 0.25 0.0050431 1.22445e-05 1.22023e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| it -- in ||| 0.25 0.717907 1.22445e-05 6.52427e-05 2.718 ||| 0-2 ||| 4 81669 +en ||| it a ||| 0.027027 0.0011873 1.22445e-05 1.9006e-05 2.718 ||| 0-1 ||| 37 81669 +en ||| it absolutely ||| 1 0.1125 1.22445e-05 2.13811e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| it at ||| 0.230769 0.351161 3.67336e-05 0.000973276 2.718 ||| 0-1 ||| 13 81669 +en ||| it brought ||| 0.0909091 0.0050431 1.22445e-05 5.64939e-07 2.718 ||| 0-0 ||| 11 81669 +en ||| it can ||| 0.00309598 0.0050431 1.22445e-05 2.03371e-06 2.718 ||| 0-0 ||| 323 81669 +en ||| it comes nowhere ||| 0.333333 0.131148 1.22445e-05 2.56715e-09 2.718 ||| 0-2 ||| 3 81669 +en ||| it did at ||| 0.5 0.351161 1.22445e-05 1.56123e-06 2.718 ||| 0-2 ||| 2 81669 +en ||| it did in ||| 0.133333 0.717907 4.89782e-05 2.08204e-05 2.718 ||| 0-2 ||| 30 81669 +en ||| it did on ||| 0.5 0.336652 1.22445e-05 2.89916e-06 2.718 ||| 0-2 ||| 2 81669 +en ||| it did ||| 0.0162602 0.0050431 2.44891e-05 1.86044e-06 2.718 ||| 0-0 ||| 123 81669 +en ||| it does in ||| 0.25 0.717907 1.22445e-05 1.26433e-05 2.718 ||| 0-2 ||| 4 81669 +en ||| it does on ||| 0.5 0.336652 1.22445e-05 1.76054e-06 2.718 ||| 0-2 ||| 2 81669 +en ||| it for ||| 0.04 0.0255404 1.22445e-05 0.000207152 2.718 ||| 0-1 ||| 25 81669 +en ||| it had ||| 0.0075188 0.0050431 1.22445e-05 1.64947e-06 2.718 ||| 0-0 ||| 133 81669 +en ||| it has at ||| 1 0.351161 1.22445e-05 3.22991e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| it has been at ||| 1 0.351161 1.22445e-05 5.39072e-09 2.718 ||| 0-3 ||| 1 81669 +en ||| it has been for almost ||| 0.5 0.0255404 1.22445e-05 2.7571e-13 2.718 ||| 0-3 ||| 2 81669 +en ||| it has been for ||| 0.333333 0.0255404 3.67336e-05 1.14736e-09 2.718 ||| 0-3 ||| 9 81669 +en ||| it has in ||| 0.166667 0.717907 2.44891e-05 4.30737e-05 2.718 ||| 0-2 ||| 12 81669 +en ||| it has over ||| 1 0.159665 1.22445e-05 6.47248e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| it in a ||| 0.166667 0.717907 1.22445e-05 0.00052219 2.718 ||| 0-1 ||| 6 81669 +en ||| it in the ||| 0.047619 0.717907 1.22445e-05 0.000689595 2.718 ||| 0-1 ||| 21 81669 +en ||| it in ||| 0.481013 0.717907 0.000465293 0.0129795 2.718 ||| 0-1 ||| 79 81669 +en ||| it into ||| 0.392857 0.414384 0.00013469 0.000528331 2.718 ||| 0-1 ||| 28 81669 +en ||| it is , in ||| 0.166667 0.717907 1.22445e-05 4.37002e-05 2.718 ||| 0-3 ||| 6 81669 +en ||| it is about ||| 0.142857 0.0371521 2.44891e-05 1.07676e-06 2.718 ||| 0-2 ||| 14 81669 +en ||| it is against ||| 0.666667 0.0888521 2.44891e-05 1.26078e-06 2.718 ||| 0-2 ||| 3 81669 +en ||| it is at ||| 0.125 0.351161 1.22445e-05 1.60419e-05 2.718 ||| 0-2 ||| 8 81669 +en ||| it is doing in ||| 0.25 0.717907 1.22445e-05 7.78074e-08 2.718 ||| 0-3 ||| 4 81669 +en ||| it is for ||| 0.037037 0.0255404 1.22445e-05 3.41435e-06 2.718 ||| 0-2 ||| 27 81669 +en ||| it is in ||| 0.235294 0.717907 0.000244891 0.000213933 2.718 ||| 0-2 ||| 85 81669 +en ||| it is ||| 0.000185357 0.0050431 1.22445e-05 1.91163e-05 2.718 ||| 0-0 ||| 5395 81669 +en ||| it makes ||| 0.0144928 0.0126091 1.22445e-05 3.08867e-06 2.718 ||| 0-1 ||| 69 81669 +en ||| it on ||| 0.25 0.336652 3.67336e-05 0.00180735 2.718 ||| 0-1 ||| 12 81669 +en ||| it put on ||| 0.5 0.336652 1.22445e-05 2.18309e-06 2.718 ||| 0-2 ||| 2 81669 +en ||| it was at ||| 0.333333 0.351161 3.67336e-05 3.67869e-06 2.718 ||| 0-2 ||| 9 81669 +en ||| it was during ||| 0.166667 0.0947187 1.22445e-05 1.48152e-07 2.718 ||| 0-2 ||| 6 81669 +en ||| it was from ||| 1 0.0190577 1.22445e-05 2.90921e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| it was in ||| 0.307692 0.717907 0.000146935 4.90585e-05 2.718 ||| 0-2 ||| 39 81669 +en ||| it was ||| 0.000897666 0.0050431 1.22445e-05 4.3837e-06 2.718 ||| 0-0 ||| 1114 81669 +en ||| it will give ||| 0.2 0.0050431 1.22445e-05 3.01891e-09 2.718 ||| 0-0 ||| 5 81669 +en ||| it will ||| 0.00411523 0.0050431 1.22445e-05 8.0141e-06 2.718 ||| 0-0 ||| 243 81669 +en ||| it would first appear ||| 0.5 0.0758995 1.22445e-05 6.1506e-11 2.718 ||| 0-2 ||| 2 81669 +en ||| it would first ||| 0.5 0.0758995 1.22445e-05 3.38317e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| it would in the ||| 1 0.717907 1.22445e-05 3.18862e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| it would in ||| 1 0.717907 1.22445e-05 6.00158e-05 2.718 ||| 0-2 ||| 1 81669 +en ||| it ||| 0.00612245 0.0050431 0.000587738 0.0011598 2.718 ||| 0-0 ||| 7840 81669 +en ||| its efforts in ||| 0.25 0.717907 1.22445e-05 1.57315e-07 2.718 ||| 0-2 ||| 4 81669 +en ||| its neighborhood in ||| 1 0.717907 1.22445e-05 1.88895e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| its share in ||| 0.25 0.717907 1.22445e-05 1.57315e-07 2.718 ||| 0-2 ||| 4 81669 +en ||| itself in because ||| 0.25 0.717907 1.22445e-05 6.61711e-08 2.718 ||| 0-1 ||| 4 81669 +en ||| itself in ||| 0.444444 0.717907 9.79564e-05 0.000351413 2.718 ||| 0-1 ||| 18 81669 +en ||| itself into ongoing ||| 1 0.414384 1.22445e-05 1.5792e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| itself into ||| 0.5 0.414384 3.67336e-05 1.43043e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| itself out ||| 0.0526316 0.0096316 1.22445e-05 2.57289e-07 2.718 ||| 0-1 ||| 19 81669 +en ||| itself primarily in terms ||| 0.333333 0.717907 1.22445e-05 8.41038e-12 2.718 ||| 0-2 ||| 3 81669 +en ||| itself primarily in ||| 0.333333 0.717907 1.22445e-05 1.59893e-08 2.718 ||| 0-2 ||| 3 81669 +en ||| itself ||| 0.00488401 0.0434066 4.89782e-05 0.0007048 2.718 ||| 0-0 ||| 819 81669 +en ||| jeopardized ||| 0.0357143 0.265306 1.22445e-05 0.000116 2.718 ||| 0-0 ||| 28 81669 +en ||| job in ||| 0.125 0.717907 1.22445e-05 7.91643e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| jobs to ||| 0.0454545 0.0189899 1.22445e-05 9.02361e-07 2.718 ||| 0-1 ||| 22 81669 +en ||| join ||| 0.0034965 0.0381125 1.22445e-05 0.0001874 2.718 ||| 0-0 ||| 286 81669 +en ||| joining ||| 0.00819672 0.0247525 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 122 81669 +en ||| just about ||| 0.0294118 0.0371521 1.22445e-05 2.70866e-06 2.718 ||| 0-1 ||| 34 81669 +en ||| just this ||| 0.0666667 0.0034259 1.22445e-05 5.41733e-07 2.718 ||| 0-1 ||| 15 81669 +en ||| just ||| 0.000445038 0.0010409 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 2247 81669 +en ||| kept in cold storage ||| 0.5 0.717907 1.22445e-05 6.4616e-14 2.718 ||| 0-1 ||| 2 81669 +en ||| kept in cold ||| 0.5 0.717907 1.22445e-05 3.31364e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| kept in ||| 0.0434783 0.717907 1.22445e-05 7.28272e-05 2.718 ||| 0-1 ||| 23 81669 +en ||| kept on a ||| 1 0.336652 1.22445e-05 4.0799e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| kept on ||| 0.2 0.336652 1.22445e-05 1.01409e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| kept them in ||| 0.2 0.717907 1.22445e-05 1.42363e-07 2.718 ||| 0-2 ||| 5 81669 +en ||| key ||| 0.000884956 0.0009881 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 1130 81669 +en ||| killed at ||| 0.2 0.351161 1.22445e-05 4.03544e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| kind of power to move against them ||| 1 0.0080355 1.22445e-05 1.28064e-20 2.718 ||| 0-1 ||| 1 81669 +en ||| kind of power to move against ||| 1 0.0080355 1.22445e-05 6.55126e-18 2.718 ||| 0-1 ||| 1 81669 +en ||| kind of power to move ||| 1 0.0080355 1.22445e-05 1.93996e-14 2.718 ||| 0-1 ||| 1 81669 +en ||| kind of power to ||| 1 0.0080355 1.22445e-05 8.29754e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| kind of power ||| 0.5 0.0080355 1.22445e-05 1.00588e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| kind of ||| 0.00251889 0.0080355 1.22445e-05 2.12167e-06 2.718 ||| 0-1 ||| 397 81669 +en ||| kinds of things ||| 0.333333 0.0080355 1.22445e-05 1.85387e-10 2.718 ||| 0-1 ||| 3 81669 +en ||| kinds of ||| 0.00917431 0.0080355 1.22445e-05 6.20645e-07 2.718 ||| 0-1 ||| 109 81669 +en ||| kingpins ||| 0.166667 0.333333 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 6 81669 +en ||| known at ||| 0.5 0.351161 1.22445e-05 8.07088e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| known to ||| 0.0263158 0.0189899 1.22445e-05 3.83156e-06 2.718 ||| 0-1 ||| 38 81669 +en ||| lacked an understanding of ||| 1 0.03 1.22445e-05 2.2781e-13 2.718 ||| 0-0 ||| 1 81669 +en ||| lacked an understanding ||| 1 0.03 1.22445e-05 8.43239e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| lacked an ||| 0.5 0.03 1.22445e-05 9.27655e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| lacked ||| 0.0344828 0.03 2.44891e-05 2.68e-05 2.718 ||| 0-0 ||| 58 81669 +en ||| laid down in ||| 0.25 0.717907 1.22445e-05 2.31492e-08 2.718 ||| 0-2 ||| 4 81669 +en ||| land on ||| 0.2 0.336652 1.22445e-05 6.61129e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| lane to ||| 1 0.0189899 1.22445e-05 1.12795e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| large portion of ||| 0.25 0.0080355 1.22445e-05 1.68152e-11 2.718 ||| 0-2 ||| 4 81669 +en ||| large-scale exercise ||| 0.111111 0.148052 1.22445e-05 9.91575e-09 2.718 ||| 0-0 ||| 9 81669 +en ||| large-scale ||| 0.00595238 0.148052 1.22445e-05 0.0005085 2.718 ||| 0-0 ||| 168 81669 +en ||| largely remained ||| 1 0.285296 1.22445e-05 5.19837e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| largely ||| 0.0225225 0.285296 0.000183668 0.0034795 2.718 ||| 0-0 ||| 666 81669 +en ||| larger in ||| 0.166667 0.717907 1.22445e-05 4.74791e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| last two criteria - called the principles ||| 1 0.0389655 1.22445e-05 7.9132e-25 2.718 ||| 0-0 ||| 1 81669 +en ||| last two criteria - called the ||| 1 0.0389655 1.22445e-05 6.08707e-20 2.718 ||| 0-0 ||| 1 81669 +en ||| last two criteria - called ||| 1 0.0389655 1.22445e-05 1.1457e-18 2.718 ||| 0-0 ||| 1 81669 +en ||| last two criteria - ||| 1 0.0389655 1.22445e-05 3.5285e-15 2.718 ||| 0-0 ||| 1 81669 +en ||| last two criteria ||| 1 0.0389655 1.22445e-05 4.08533e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| last two ||| 0.010101 0.0389655 1.22445e-05 3.14256e-07 2.718 ||| 0-0 ||| 99 81669 +en ||| last year ||| 0.00185874 0.0389655 1.22445e-05 4.77988e-07 2.718 ||| 0-0 ||| 538 81669 +en ||| last ||| 0.0310966 0.0389655 0.000697939 0.0010082 2.718 ||| 0-0 ||| 1833 81669 +en ||| later in ||| 0.05 0.717907 1.22445e-05 8.54526e-05 2.718 ||| 0-1 ||| 20 81669 +en ||| later ||| 0.00134048 0.0031579 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 746 81669 +en ||| laughs on ||| 0.5 0.336652 1.22445e-05 4.41205e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| launched ||| 0.0132743 0.0498084 3.67336e-05 0.000116 2.718 ||| 0-0 ||| 226 81669 +en ||| lawsuits at ||| 1 0.351161 1.22445e-05 4.75188e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| lead in ||| 0.0151515 0.717907 1.22445e-05 0.000253238 2.718 ||| 0-1 ||| 66 81669 +en ||| lead over ||| 0.333333 0.159665 1.22445e-05 3.80529e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| lead to ||| 0.00483092 0.0189899 2.44891e-05 9.01494e-06 2.718 ||| 0-1 ||| 414 81669 +en ||| leader in ||| 0.0416667 0.717907 1.22445e-05 3.79735e-05 2.718 ||| 0-1 ||| 24 81669 +en ||| leader on ||| 0.5 0.336652 1.22445e-05 5.28767e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| leading in ||| 0.111111 0.717907 1.22445e-05 8.54526e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| leading ||| 0.00526316 0.0073529 4.89782e-05 6.25e-05 2.718 ||| 0-0 ||| 760 81669 +en ||| leap in ||| 1 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| learned in ||| 0.1 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| least rapidly in ||| 1 0.717907 1.22445e-05 6.10131e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| leave in ||| 0.25 0.717907 1.22445e-05 7.91643e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| led away in ||| 1 0.717907 1.22445e-05 1.16791e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| led to ||| 0.00247525 0.0189899 1.22445e-05 4.50834e-06 2.718 ||| 0-1 ||| 404 81669 +en ||| left at ||| 0.333333 0.351161 1.22445e-05 1.23439e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| left in ||| 0.0243902 0.717907 1.22445e-05 0.000164617 2.718 ||| 0-1 ||| 41 81669 +en ||| lend credibility to ||| 0.25 0.0189899 1.22445e-05 1.53965e-11 2.718 ||| 0-2 ||| 4 81669 +en ||| less fit ||| 1 0.0604027 1.22445e-05 2.92051e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| less ||| 0.00120482 0.001251 3.67336e-05 2.68e-05 2.718 ||| 0-0 ||| 2490 81669 +en ||| let in to ||| 1 0.717907 1.22445e-05 1.33179e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| let in ||| 0.5 0.717907 1.22445e-05 0.000161448 2.718 ||| 0-1 ||| 2 81669 +en ||| letting the ||| 0.047619 0.0006015 1.22445e-05 4.52322e-08 2.718 ||| 0-1 ||| 21 81669 +en ||| level in ||| 0.0909091 0.717907 1.22445e-05 0.000110801 2.718 ||| 0-1 ||| 11 81669 +en ||| life in ||| 0.0172414 0.717907 1.22445e-05 0.000107632 2.718 ||| 0-1 ||| 58 81669 +en ||| light on ||| 0.125 0.336652 2.44891e-05 7.9349e-06 2.718 ||| 0-1 ||| 16 81669 +en ||| like in ||| 0.2 0.717907 3.67336e-05 0.000408398 2.718 ||| 0-1 ||| 15 81669 +en ||| like ||| 0.000558191 0.0021402 2.44891e-05 7.14e-05 2.718 ||| 0-0 ||| 3583 81669 +en ||| limit myself in ||| 1 0.717907 1.22445e-05 2.05954e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| line at ||| 0.333333 0.351161 1.22445e-05 1.68545e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| line in ||| 0.0625 0.717907 1.22445e-05 0.00022477 2.718 ||| 0-1 ||| 16 81669 +en ||| line on ||| 0.428571 0.336652 3.67336e-05 3.12984e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| line to ||| 0.142857 0.0189899 1.22445e-05 8.00151e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| line up at ||| 0.5 0.351161 1.22445e-05 5.26485e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| lining to ||| 1 0.0189899 1.22445e-05 4.51181e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| lining up in ||| 0.5 0.717907 1.22445e-05 3.959e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| little dispute ||| 1 0.006993 1.22445e-05 2.94768e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| little in the ||| 0.2 0.717907 1.22445e-05 8.57769e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| little in ||| 0.0434783 0.717907 1.22445e-05 0.000161448 2.718 ||| 0-1 ||| 23 81669 +en ||| little interest in ||| 0.0909091 0.717907 2.44891e-05 5.66199e-08 2.718 ||| 0-2 ||| 22 81669 +en ||| live in ||| 0.0115607 0.717907 2.44891e-05 0.000120306 2.718 ||| 0-1 ||| 173 81669 +en ||| live parrot at ||| 0.333333 0.351161 1.22445e-05 5.86382e-11 2.718 ||| 0-2 ||| 3 81669 +en ||| live stream ||| 0.5 0.0043924 1.22445e-05 5.226e-10 2.718 ||| 0-0 ||| 2 81669 +en ||| live with ||| 0.0196078 0.0232439 1.22445e-05 1.10317e-06 2.718 ||| 0-1 ||| 51 81669 +en ||| live ||| 0.00193424 0.0043924 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 517 81669 +en ||| lives in ||| 0.0357143 0.717907 2.44891e-05 7.28272e-05 2.718 ||| 0-1 ||| 56 81669 +en ||| living in ||| 0.0264901 0.717907 4.89782e-05 8.23328e-05 2.718 ||| 0-1 ||| 151 81669 +en ||| lobbying in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| located in ||| 0.1 0.717907 2.44891e-05 1.58426e-05 2.718 ||| 0-1 ||| 20 81669 +en ||| location in ||| 0.166667 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| lodge ||| 0.25 0.142857 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| long , an effort to ||| 1 0.0189899 1.22445e-05 2.55923e-12 2.718 ||| 0-4 ||| 1 81669 +en ||| long time in ||| 0.166667 0.717907 1.22445e-05 3.40449e-07 2.718 ||| 0-2 ||| 6 81669 +en ||| long way in ||| 0.333333 0.717907 1.22445e-05 5.5323e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| long way toward determining ||| 0.5 0.0354374 1.22445e-05 6.31834e-15 2.718 ||| 0-2 ||| 2 81669 +en ||| long way toward ||| 0.105263 0.0354374 2.44891e-05 3.24017e-10 2.718 ||| 0-2 ||| 19 81669 +en ||| look after ||| 0.0909091 0.0037224 1.22445e-05 5.84032e-08 2.718 ||| 0-1 ||| 11 81669 +en ||| look at ||| 0.032 0.351161 4.89782e-05 1.70921e-05 2.718 ||| 0-1 ||| 125 81669 +en ||| look like in ||| 1 0.717907 1.22445e-05 1.90967e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| looking in ||| 0.0833333 0.717907 1.22445e-05 8.23328e-05 2.718 ||| 0-1 ||| 12 81669 +en ||| looming on ||| 0.5 0.336652 1.22445e-05 3.08844e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| looming ||| 0.015625 0.101351 2.44891e-05 0.0001338 2.718 ||| 0-0 ||| 128 81669 +en ||| looms ever larger in ||| 1 0.717907 1.22445e-05 3.68794e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| loosely ||| 0.0344828 0.09375 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 29 81669 +en ||| lose such trust ||| 1 0.13852 1.22445e-05 8.94885e-11 2.718 ||| 0-2 ||| 1 81669 +en ||| losers in ||| 0.25 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| loss by buying ||| 1 0.065573 1.22445e-05 4.03173e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| loss by ||| 1 0.065573 1.22445e-05 8.86095e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| losses earlier in ||| 0.5 0.717907 1.22445e-05 3.95051e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| lost customs revenues should be ||| 1 0.0021256 1.22445e-05 4.0672e-20 2.718 ||| 0-3 ||| 1 81669 +en ||| lost customs revenues should ||| 1 0.0021256 1.22445e-05 3.94629e-18 2.718 ||| 0-3 ||| 1 81669 +en ||| lost in ||| 0.03125 0.717907 1.22445e-05 9.81267e-05 2.718 ||| 0-1 ||| 32 81669 +en ||| lot about ||| 0.0526316 0.0371521 1.22445e-05 4.30099e-07 2.718 ||| 0-1 ||| 19 81669 +en ||| low ||| 0.00099108 0.0010428 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 1009 81669 +en ||| lower achievement in ||| 0.25 0.717907 1.22445e-05 1.56398e-09 2.718 ||| 0-2 ||| 4 81669 +en ||| lured into either ||| 0.5 0.414384 1.22445e-05 1.27311e-10 2.718 ||| 0-1 ||| 2 81669 +en ||| lured into ||| 0.25 0.414384 1.22445e-05 1.28975e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| made available in ||| 0.5 0.717907 1.22445e-05 1.4681e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| made clear in ||| 0.5 0.717907 1.22445e-05 1.25822e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| made in ||| 0.046875 0.717907 3.67336e-05 0.000538161 2.718 ||| 0-1 ||| 64 81669 +en ||| made it ||| 0.0168067 0.0253968 2.44891e-05 1.33026e-05 2.718 ||| 0-0 ||| 119 81669 +en ||| made on ||| 0.125 0.336652 1.22445e-05 7.4937e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| made over ||| 0.166667 0.159665 1.22445e-05 8.08669e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| made ||| 0.00558659 0.0253968 9.79564e-05 0.0004996 2.718 ||| 0-0 ||| 1432 81669 +en ||| mainly related ||| 1 0.0163043 1.22445e-05 2.43425e-09 2.718 ||| 0-0 ||| 1 81669 +en ||| mainly ||| 0.0137363 0.0163043 6.12227e-05 5.35e-05 2.718 ||| 0-0 ||| 364 81669 +en ||| make in ||| 0.666667 0.717907 2.44891e-05 0.000642625 2.718 ||| 0-1 ||| 3 81669 +en ||| make it absolutely ||| 1 0.1125 1.22445e-05 2.81867e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| make itself ||| 0.333333 0.0434066 1.22445e-05 9.29138e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| make them . ||| 0.25 2e-05 1.22445e-05 6.90639e-11 2.718 ||| 0-2 ||| 4 81669 +en ||| makes ||| 0.00575816 0.0126091 3.67336e-05 0.000116 2.718 ||| 0-0 ||| 521 81669 +en ||| making in ||| 0.5 0.717907 1.22445e-05 0.000227939 2.718 ||| 0-1 ||| 2 81669 +en ||| making ||| 0.00109409 0.0014738 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 914 81669 +en ||| malaise in ||| 0.142857 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| man in ||| 0.0714286 0.717907 1.22445e-05 7.59958e-05 2.718 ||| 0-1 ||| 14 81669 +en ||| maneuvered into ||| 0.25 0.414384 1.22445e-05 2.5795e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| manufactured in ||| 0.142857 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| manufacturing ||| 0.00342466 0.025 1.22445e-05 8.92e-05 2.718 ||| 0-0 ||| 292 81669 +en ||| many of ||| 0.0017301 0.0080355 1.22445e-05 4.65683e-06 2.718 ||| 0-1 ||| 578 81669 +en ||| many on ||| 0.125 0.336652 1.22445e-05 3.96745e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| many voters back ||| 0.5 0.0405569 1.22445e-05 2.04058e-11 2.718 ||| 0-2 ||| 2 81669 +en ||| marching through ||| 1 0.021007 1.22445e-05 7.3073e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| marine ||| 0.0232558 0.0384615 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 43 81669 +en ||| markedly over ||| 0.5 0.159665 1.22445e-05 2.38059e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| markedly within ||| 0.125 0.193123 1.22445e-05 1.18885e-07 2.718 ||| 0-1 ||| 8 81669 +en ||| market share in ||| 0.2 0.717907 1.22445e-05 1.28563e-08 2.718 ||| 0-2 ||| 5 81669 +en ||| markets in ||| 0.0666667 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-1 ||| 15 81669 +en ||| mass ||| 0.00452489 0.140625 2.44891e-05 0.000803 2.718 ||| 0-0 ||| 442 81669 +en ||| massive ||| 0.00431034 0.0670588 3.67336e-05 0.0005085 2.718 ||| 0-0 ||| 696 81669 +en ||| massively in ||| 0.2 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| match , in ||| 1 0.717907 1.22445e-05 3.23618e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| matched by ||| 0.047619 0.065573 1.22445e-05 3.22668e-07 2.718 ||| 0-1 ||| 21 81669 +en ||| material into low ||| 1 0.414384 1.22445e-05 6.3662e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| material into ||| 1 0.414384 1.22445e-05 5.159e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| may be in ||| 0.111111 0.717907 1.22445e-05 4.92654e-06 2.718 ||| 0-2 ||| 9 81669 +en ||| may cause a fall in ||| 1 0.717907 1.22445e-05 4.54173e-13 2.718 ||| 0-4 ||| 1 81669 +en ||| may have sought in that it could ||| 0.5 0.717907 1.22445e-05 8.2746e-17 2.718 ||| 0-3 ||| 2 81669 +en ||| may have sought in that it ||| 0.5 0.717907 1.22445e-05 7.32266e-14 2.718 ||| 0-3 ||| 2 81669 +en ||| may have sought in that ||| 0.5 0.717907 1.22445e-05 2.75014e-12 2.718 ||| 0-3 ||| 2 81669 +en ||| may have sought in ||| 0.5 0.717907 1.22445e-05 3.36623e-10 2.718 ||| 0-3 ||| 2 81669 +en ||| means that , in ||| 0.5 0.717907 1.22445e-05 2.90584e-07 2.718 ||| 0-3 ||| 2 81669 +en ||| meant that in ||| 1 0.717907 1.22445e-05 4.13781e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| measured by ||| 0.025641 0.065573 1.22445e-05 3.22668e-07 2.718 ||| 0-1 ||| 39 81669 +en ||| meet at ||| 0.25 0.351161 1.22445e-05 6.88291e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| meet in ||| 0.0285714 0.717907 1.22445e-05 9.17896e-05 2.718 ||| 0-1 ||| 35 81669 +en ||| meeting in ||| 0.0333333 0.717907 1.22445e-05 3.79735e-05 2.718 ||| 0-1 ||| 30 81669 +en ||| members and IMF financing to prevent a ||| 0.166667 0.0189899 1.22445e-05 5.51178e-23 2.718 ||| 0-4 ||| 6 81669 +en ||| members and IMF financing to prevent ||| 0.166667 0.0189899 1.22445e-05 1.37e-21 2.718 ||| 0-4 ||| 6 81669 +en ||| members and IMF financing to ||| 0.166667 0.0189899 1.22445e-05 1.05384e-16 2.718 ||| 0-4 ||| 6 81669 +en ||| members of ||| 0.00393701 0.0080355 1.22445e-05 1.70737e-06 2.718 ||| 0-1 ||| 254 81669 +en ||| membership in ||| 0.0273973 0.717907 2.44891e-05 4.43106e-05 2.718 ||| 0-1 ||| 73 81669 +en ||| membership ||| 0.00305344 0.0951872 2.44891e-05 0.000794 2.718 ||| 0-0 ||| 655 81669 +en ||| men in ||| 0.0625 0.717907 1.22445e-05 6.01532e-05 2.718 ||| 0-1 ||| 16 81669 +en ||| mentioned on ||| 1 0.336652 1.22445e-05 1.32362e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| met in ||| 0.0416667 0.717907 1.22445e-05 7.28272e-05 2.718 ||| 0-1 ||| 24 81669 +en ||| middle ground ||| 0.1 0.0068493 1.22445e-05 6.35816e-09 2.718 ||| 0-0 ||| 10 81669 +en ||| middle ||| 0.00740741 0.0068493 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 270 81669 +en ||| might otherwise be the case ||| 0.333333 0.0006015 1.22445e-05 6.69598e-16 2.718 ||| 0-3 ||| 3 81669 +en ||| might otherwise be the ||| 0.333333 0.0006015 1.22445e-05 9.63589e-13 2.718 ||| 0-3 ||| 3 81669 +en ||| mightily in interpreting ||| 1 0.717907 1.22445e-05 4.11908e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| mightily in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| mind during ||| 1 0.0947187 1.22445e-05 3.2504e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| minds in ||| 1 0.717907 1.22445e-05 5.69846e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| minds on ||| 0.142857 0.336652 1.22445e-05 7.9349e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| minister in ||| 0.0833333 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-1 ||| 12 81669 +en ||| mired in ||| 0.0363636 0.717907 2.44891e-05 9.50556e-06 2.718 ||| 0-1 ||| 55 81669 +en ||| misleading " ||| 0.0555556 0.0103093 1.22445e-05 4.44475e-08 2.718 ||| 0-0 ||| 18 81669 +en ||| misleading ||| 0.0119048 0.0103093 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 84 81669 +en ||| missed out on ||| 1 0.336652 1.22445e-05 9.78505e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| mistake in ||| 0.0833333 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 12 81669 +en ||| mistaken in ||| 0.5 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| mode in ||| 1 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| modeled on ||| 0.125 0.336652 1.22445e-05 4.41205e-07 2.718 ||| 0-1 ||| 8 81669 +en ||| moderate ||| 0.00346021 0.0036765 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 289 81669 +en ||| month , in ||| 0.0588235 0.717907 1.22445e-05 3.88341e-06 2.718 ||| 0-2 ||| 17 81669 +en ||| month in ||| 0.125 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| month on month in ||| 0.5 0.717907 1.22445e-05 2.90827e-12 2.718 ||| 0-3 ||| 2 81669 +en ||| months in ||| 0.0588235 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 17 81669 +en ||| more centrist in ||| 1 0.717907 1.22445e-05 6.76986e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| more difficult ||| 0.00584795 0.0004911 1.22445e-05 1.0074e-08 2.718 ||| 0-0 ||| 171 81669 +en ||| more hardened in ||| 0.5 0.717907 1.22445e-05 6.76986e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| more in ||| 0.0224719 0.717907 2.44891e-05 0.00104152 2.718 ||| 0-1 ||| 89 81669 +en ||| more limited ||| 0.0666667 0.0004911 1.22445e-05 3.8199e-09 2.718 ||| 0-0 ||| 15 81669 +en ||| more often ||| 0.0238095 0.0004911 1.22445e-05 1.49425e-08 2.718 ||| 0-0 ||| 42 81669 +en ||| more on ||| 0.0394737 0.336652 3.67336e-05 0.000145027 2.718 ||| 0-1 ||| 76 81669 +en ||| more stress on ||| 0.25 0.336652 1.22445e-05 3.77071e-09 2.718 ||| 0-2 ||| 4 81669 +en ||| more ||| 0.000309071 0.0004911 4.89782e-05 5.35e-05 2.718 ||| 0-0 ||| 12942 81669 +en ||| mortality by ||| 0.25 0.065573 1.22445e-05 8.06669e-08 2.718 ||| 0-1 ||| 4 81669 +en ||| mosque ||| 0.0217391 0.0512821 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 46 81669 +en ||| most critically ||| 0.5 0.0006295 1.22445e-05 5.798e-10 2.718 ||| 0-0 ||| 2 81669 +en ||| most serious ||| 0.0166667 0.0009251 1.22445e-05 5.89536e-09 2.718 ||| 0-1 ||| 60 81669 +en ||| most ||| 0.000132767 0.0006295 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 7532 81669 +en ||| mostly aimed ||| 0.5 0.117834 1.22445e-05 7.71774e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| mostly ||| 0.00863931 0.117834 4.89782e-05 0.0006602 2.718 ||| 0-0 ||| 463 81669 +en ||| mounted in ||| 0.333333 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| mounting ||| 0.00934579 0.0718563 1.22445e-05 0.0001071 2.718 ||| 0-0 ||| 107 81669 +en ||| move in the ||| 0.0769231 0.717907 1.22445e-05 6.05514e-06 2.718 ||| 0-1 ||| 13 81669 +en ||| move in ||| 0.0333333 0.717907 1.22445e-05 0.000113969 2.718 ||| 0-1 ||| 30 81669 +en ||| move under armed guard in ||| 1 0.717907 1.22445e-05 9.50713e-17 2.718 ||| 0-4 ||| 1 81669 +en ||| moved in ||| 0.125 0.717907 1.22445e-05 6.33217e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| moved to ||| 0.0357143 0.0189899 1.22445e-05 2.25417e-06 2.718 ||| 0-1 ||| 28 81669 +en ||| movement ||| 0.00183824 0.0021186 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 544 81669 +en ||| moving into ||| 0.125 0.414384 1.22445e-05 1.80367e-06 2.718 ||| 0-1 ||| 8 81669 +en ||| moving toward ||| 0.111111 0.0354374 1.22445e-05 2.5952e-08 2.718 ||| 0-1 ||| 9 81669 +en ||| much , ||| 0.0222222 0.0023095 1.22445e-05 2.00389e-05 2.718 ||| 0-0 ||| 45 81669 +en ||| much as a ||| 0.0714286 0.0296498 1.22445e-05 4.17096e-07 2.718 ||| 0-1 ||| 14 81669 +en ||| much as to root itself in ||| 1 0.717907 1.22445e-05 3.21217e-14 2.718 ||| 0-5 ||| 1 81669 +en ||| much as ||| 0.005 0.0296498 1.22445e-05 1.03673e-05 2.718 ||| 0-1 ||| 200 81669 +en ||| much at ||| 0.5 0.351161 2.44891e-05 5.26983e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| much discussed ||| 1 0.0084034 1.22445e-05 1.28311e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| much in ||| 0.04 0.717907 1.22445e-05 0.000702778 2.718 ||| 0-1 ||| 25 81669 +en ||| much of it in ||| 0.333333 0.717907 1.22445e-05 5.05539e-07 2.718 ||| 0-3 ||| 3 81669 +en ||| much of ||| 0.00385356 0.0080355 2.44891e-05 1.14863e-05 2.718 ||| 0-1 ||| 519 81669 +en ||| much on ||| 0.166667 0.336652 1.22445e-05 9.78593e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| much success in ||| 0.25 0.717907 1.22445e-05 6.38825e-08 2.718 ||| 0-2 ||| 4 81669 +en ||| much ||| 0.00179051 0.0023095 7.34673e-05 9.81e-05 2.718 ||| 0-0 ||| 3351 81669 +en ||| muscles and sell arms ||| 1 0.0769231 1.22445e-05 1.01041e-16 2.718 ||| 0-0 ||| 1 81669 +en ||| muscles and sell ||| 1 0.0769231 1.22445e-05 1.94309e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| muscles and ||| 0.25 0.0769231 1.22445e-05 1.49468e-07 2.718 ||| 0-0 ||| 4 81669 +en ||| muscles ||| 0.0526316 0.0769231 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 19 81669 +en ||| must be some in ||| 1 0.717907 1.22445e-05 2.33079e-09 2.718 ||| 0-3 ||| 1 81669 +en ||| myself in ||| 1 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| myself on ||| 0.5 0.336652 1.22445e-05 2.20603e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| narrow field ||| 0.5 0.0116279 1.22445e-05 1.15522e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| narrow ||| 0.0119048 0.0116279 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 168 81669 +en ||| narrowly on ||| 0.166667 0.336652 1.22445e-05 8.8241e-07 2.718 ||| 0-1 ||| 6 81669 +en ||| nation where ||| 0.166667 0.21284 1.22445e-05 3.50657e-07 2.718 ||| 0-1 ||| 6 81669 +en ||| national-level ||| 1 0.25 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| nativist in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| near ||| 0.00804829 0.0179028 4.89782e-05 6.25e-05 2.718 ||| 0-0 ||| 497 81669 +en ||| need to be transformed into ||| 1 0.414384 1.22445e-05 4.67116e-13 2.718 ||| 0-4 ||| 1 81669 +en ||| need to tell ||| 0.333333 0.0189899 1.22445e-05 1.14028e-09 2.718 ||| 0-1 ||| 3 81669 +en ||| need to ||| 0.0014771 0.0189899 1.22445e-05 9.24053e-06 2.718 ||| 0-1 ||| 677 81669 +en ||| neglected in ||| 0.25 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| neighborhood in ||| 0.5 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| never in ||| 0.125 0.717907 1.22445e-05 7.91643e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| never ||| 0.0015083 0.0015221 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 1326 81669 +en ||| nevertheless mired in ||| 1 0.717907 1.22445e-05 5.55125e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| new in ||| 0.0666667 0.717907 1.22445e-05 0.00035775 2.718 ||| 0-1 ||| 15 81669 +en ||| next to ||| 0.0208333 0.0060241 1.22445e-05 5.8898e-06 2.718 ||| 0-0 ||| 48 81669 +en ||| next ||| 0.00403226 0.0060241 6.12227e-05 7.14e-05 2.718 ||| 0-0 ||| 1240 81669 +en ||| no less ||| 0.0138889 0.0012039 1.22445e-05 2.92051e-08 2.718 ||| 0-0 ||| 72 81669 +en ||| no second ||| 0.5 0.119291 1.22445e-05 2.05815e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| no ||| 0.00117624 0.0012039 7.34673e-05 8.03e-05 2.718 ||| 0-0 ||| 5101 81669 +en ||| nonetheless lend credibility to ||| 0.5 0.0189899 1.22445e-05 1.89993e-15 2.718 ||| 0-3 ||| 2 81669 +en ||| normally ||| 0.00990099 0.0168067 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 101 81669 +en ||| not appear in ||| 0.5 0.717907 1.22445e-05 2.08339e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| not enforced for ||| 1 0.0255404 1.22445e-05 2.37767e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| not far behind . in ||| 1 0.717907 1.22445e-05 6.79902e-13 2.718 ||| 0-4 ||| 1 81669 +en ||| not in ||| 0.030303 0.717907 4.89782e-05 0.00114598 2.718 ||| 0-1 ||| 132 81669 +en ||| not lower ||| 0.25 0.0011915 1.22445e-05 2.53217e-08 2.718 ||| 0-0 ||| 4 81669 +en ||| not right ||| 0.333333 0.0511674 1.22445e-05 2.16048e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| not ||| 0.00080819 0.0011915 0.000183668 0.0002052 2.718 ||| 0-0 ||| 18560 81669 +en ||| notably , ||| 0.125 0.283401 1.22445e-05 0.000127567 2.718 ||| 0-0 ||| 8 81669 +en ||| notably ||| 0.0108108 0.283401 2.44891e-05 0.0006245 2.718 ||| 0-0 ||| 185 81669 +en ||| notice , at ||| 0.5 0.351161 1.22445e-05 5.33121e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| now been on ||| 1 0.336652 1.22445e-05 1.68482e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| now in ||| 0.0275229 0.717907 3.67336e-05 0.000724958 2.718 ||| 0-1 ||| 109 81669 +en ||| now surging ahead ||| 1 0.128205 1.22445e-05 1.33521e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| now surging ||| 1 0.128205 1.22445e-05 6.63291e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| now upon us ||| 1 0.117761 1.22445e-05 4.62535e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| now upon ||| 1 0.117761 1.22445e-05 8.09334e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| now visible in ||| 0.25 0.717907 1.22445e-05 1.88489e-08 2.718 ||| 0-2 ||| 4 81669 +en ||| now ||| 0.000161603 0.0005036 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 6188 81669 +en ||| nowadays ||| 0.00322581 0.228769 1.22445e-05 0.0011777 2.718 ||| 0-0 ||| 310 81669 +en ||| nowhere near ||| 0.0526316 0.131148 1.22445e-05 1.4846e-08 2.718 ||| 0-0 ||| 19 81669 +en ||| nowhere ||| 0.0243902 0.131148 3.67336e-05 0.0002855 2.718 ||| 0-0 ||| 123 81669 +en ||| nuclear ||| 0.000490918 0.0004968 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 2037 81669 +en ||| number in ||| 0.142857 0.717907 1.22445e-05 0.000167785 2.718 ||| 0-1 ||| 7 81669 +en ||| nuts ||| 0.25 0.125 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| observed in ||| 0.166667 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| occasional ||| 0.05 0.05 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 40 81669 +en ||| occasionally flares up ||| 0.25 0.0107098 1.22445e-05 3.24142e-14 2.718 ||| 0-2 ||| 4 81669 +en ||| occurred in ||| 0.037037 0.717907 2.44891e-05 2.53482e-05 2.718 ||| 0-1 ||| 54 81669 +en ||| occurring in ||| 0.0769231 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 13 81669 +en ||| occurs within ||| 1 0.193123 1.22445e-05 1.66439e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| of America 's ||| 0.0344828 0.0080355 1.22445e-05 1.47463e-07 2.718 ||| 0-0 ||| 29 81669 +en ||| of America ||| 0.00840336 0.0080355 1.22445e-05 9.46902e-06 2.718 ||| 0-0 ||| 119 81669 +en ||| of Britain in ||| 0.5 0.717907 1.22445e-05 2.651e-06 2.718 ||| 0-2 ||| 2 81669 +en ||| of Chinese ||| 0.0208333 0.0080355 1.22445e-05 1.81094e-06 2.718 ||| 0-0 ||| 48 81669 +en ||| of Europe meeting in ||| 1 0.717907 1.22445e-05 4.93046e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| of Italy ||| 0.0434783 0.0080355 1.22445e-05 4.65284e-07 2.718 ||| 0-0 ||| 23 81669 +en ||| of a ||| 0.000532623 0.0080355 2.44891e-05 0.000320536 2.718 ||| 0-0 ||| 3755 81669 +en ||| of an ||| 0.00143472 0.0080355 1.22445e-05 2.75777e-05 2.718 ||| 0-0 ||| 697 81669 +en ||| of charge to ||| 0.333333 0.0189899 1.22445e-05 5.1757e-08 2.718 ||| 0-2 ||| 3 81669 +en ||| of closed , ||| 1 0.0080355 1.22445e-05 1.2678e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| of closed ||| 1 0.0080355 1.22445e-05 6.20645e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| of conventional wisdom ||| 0.142857 0.0080355 1.22445e-05 6.34648e-11 2.718 ||| 0-0 ||| 7 81669 +en ||| of conventional ||| 0.125 0.0080355 1.22445e-05 4.65284e-07 2.718 ||| 0-0 ||| 8 81669 +en ||| of each ||| 0.015625 0.0080355 1.22445e-05 4.13896e-06 2.718 ||| 0-0 ||| 64 81669 +en ||| of either ||| 0.0769231 0.0144127 1.22445e-05 1.42135e-06 2.718 ||| 0-0 0-1 ||| 13 81669 +en ||| of evaporated ||| 0.5 0.0080355 1.22445e-05 1.03574e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| of extra ||| 0.125 0.0080355 1.22445e-05 2.07147e-07 2.718 ||| 0-0 ||| 8 81669 +en ||| of her ||| 0.012987 0.0080355 1.22445e-05 4.70862e-06 2.718 ||| 0-0 ||| 77 81669 +en ||| of in ||| 0.428571 0.717907 3.67336e-05 0.0131694 2.718 ||| 0-1 ||| 7 81669 +en ||| of influence in ||| 1 0.40038 1.22445e-05 8.46002e-06 2.718 ||| 0-1 0-2 ||| 1 81669 +en ||| of it in ||| 0.25 0.717907 1.22445e-05 0.000350655 2.718 ||| 0-2 ||| 4 81669 +en ||| of it ||| 0.00473934 0.0080355 1.22445e-05 0.000212139 2.718 ||| 0-0 ||| 211 81669 +en ||| of its ||| 0.00131752 0.0080355 2.44891e-05 1.58324e-05 2.718 ||| 0-0 ||| 1518 81669 +en ||| of law . ||| 0.0131579 0.0080355 1.22445e-05 5.71099e-09 2.718 ||| 0-0 ||| 76 81669 +en ||| of law ||| 0.00276243 0.0080355 1.22445e-05 1.24209e-06 2.718 ||| 0-0 ||| 362 81669 +en ||| of life in ||| 0.05 0.717907 1.22445e-05 2.9078e-06 2.718 ||| 0-2 ||| 20 81669 +en ||| of membership in ||| 0.333333 0.717907 1.22445e-05 1.1971e-06 2.718 ||| 0-2 ||| 3 81669 +en ||| of net ||| 0.5 0.0080355 1.22445e-05 1.5536e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| of power to move against them ( ||| 1 0.0080355 1.22445e-05 5.05956e-20 2.718 ||| 0-0 ||| 1 81669 +en ||| of power to move against them ||| 1 0.0080355 1.22445e-05 4.80901e-17 2.718 ||| 0-0 ||| 1 81669 +en ||| of power to move against ||| 1 0.0080355 1.22445e-05 2.4601e-14 2.718 ||| 0-0 ||| 1 81669 +en ||| of power to move ||| 1 0.0080355 1.22445e-05 7.28488e-11 2.718 ||| 0-0 ||| 1 81669 +en ||| of power to ||| 0.0769231 0.0080355 1.22445e-05 3.11586e-07 2.718 ||| 0-0 ||| 13 81669 +en ||| of power ||| 0.00257069 0.0080355 1.22445e-05 3.77725e-06 2.718 ||| 0-0 ||| 389 81669 +en ||| of secession in ||| 1 0.717907 1.22445e-05 8.56011e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| of setting up a re-bar plant in ||| 1 0.717907 1.22445e-05 3.45151e-20 2.718 ||| 0-6 ||| 1 81669 +en ||| of the blue in ||| 1 0.717907 1.22445e-05 1.36439e-08 2.718 ||| 0-3 ||| 1 81669 +en ||| of the late King ||| 0.25 0.0080355 1.22445e-05 6.07512e-13 2.718 ||| 0-0 ||| 4 81669 +en ||| of the late ||| 0.027027 0.0080355 1.22445e-05 9.34633e-08 2.718 ||| 0-0 ||| 37 81669 +en ||| of the ||| 0.000278733 0.0080355 7.34673e-05 0.000423294 2.718 ||| 0-0 ||| 21526 81669 +en ||| of them , ||| 0.025641 0.0080355 1.22445e-05 3.18137e-06 2.718 ||| 0-0 ||| 39 81669 +en ||| of them ||| 0.00241546 0.0080355 1.22445e-05 1.55743e-05 2.718 ||| 0-0 ||| 414 81669 +en ||| of these ||| 0.00113895 0.0080355 1.22445e-05 6.10527e-06 2.718 ||| 0-0 ||| 878 81669 +en ||| of things ||| 0.0294118 0.0080355 1.22445e-05 2.3798e-06 2.718 ||| 0-0 ||| 34 81669 +en ||| of this in ||| 0.166667 0.717907 1.22445e-05 2.61702e-05 2.718 ||| 0-2 ||| 6 81669 +en ||| of this ||| 0.000839631 0.0080355 1.22445e-05 1.58324e-05 2.718 ||| 0-0 ||| 1191 81669 +en ||| of us in ||| 0.25 0.717907 1.22445e-05 7.52631e-06 2.718 ||| 0-2 ||| 4 81669 +en ||| of us ||| 0.00568182 0.0080355 1.22445e-05 4.55325e-06 2.718 ||| 0-0 ||| 176 81669 +en ||| of yourself on ||| 1 0.336652 1.22445e-05 3.57589e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| of ||| 0.00675059 0.0080355 0.00842425 0.0079672 2.718 ||| 0-0 ||| 101917 81669 +en ||| off in ||| 0.142857 0.717907 2.44891e-05 0.000560341 2.718 ||| 0-1 ||| 14 81669 +en ||| off on ||| 0.25 0.336652 1.22445e-05 7.80254e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| off to the ||| 1 0.0189899 1.22445e-05 1.0598e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| off to ||| 0.0526316 0.0189899 1.22445e-05 1.99474e-05 2.718 ||| 0-1 ||| 19 81669 +en ||| off ||| 0.0119332 0.0108696 6.12227e-05 0.0001249 2.718 ||| 0-0 ||| 419 81669 +en ||| office in ||| 0.030303 0.717907 1.22445e-05 0.000101295 2.718 ||| 0-1 ||| 33 81669 +en ||| official ||| 0.001443 0.0015432 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 693 81669 +en ||| officially started in ||| 1 0.717907 1.22445e-05 8.0227e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| offshore ||| 0.0232558 0.106383 1.22445e-05 8.92e-05 2.718 ||| 0-0 ||| 43 81669 +en ||| often in ||| 0.0857143 0.717907 3.67336e-05 0.000136149 2.718 ||| 0-1 ||| 35 81669 +en ||| often with ||| 0.0384615 0.0232439 1.22445e-05 1.24844e-06 2.718 ||| 0-1 ||| 26 81669 +en ||| oil in ||| 0.0833333 0.717907 1.22445e-05 7.91643e-05 2.718 ||| 0-1 ||| 12 81669 +en ||| old hat in ||| 1 0.717907 1.22445e-05 1.76994e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| on " ||| 0.016129 0.336652 1.22445e-05 0.000338988 2.718 ||| 0-0 ||| 62 81669 +en ||| on , ||| 0.0266667 0.336652 2.44891e-05 0.0138654 2.718 ||| 0-0 ||| 75 81669 +en ||| on America ||| 0.0714286 0.336652 1.22445e-05 8.06726e-05 2.718 ||| 0-0 ||| 14 81669 +en ||| on Banking ||| 0.2 0.336652 1.22445e-05 4.41205e-07 2.718 ||| 0-0 ||| 5 81669 +en ||| on Earth ||| 0.0769231 0.336652 1.22445e-05 2.20603e-06 2.718 ||| 0-0 ||| 13 81669 +en ||| on Germany 's ||| 1 0.336652 1.22445e-05 1.51056e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| on Germany ||| 0.2 0.336652 1.22445e-05 9.69972e-06 2.718 ||| 0-0 ||| 5 81669 +en ||| on a sound ||| 0.333333 0.336652 1.22445e-05 2.30484e-07 2.718 ||| 0-0 ||| 3 81669 +en ||| on a ||| 0.0442656 0.336652 0.00053876 0.00273086 2.718 ||| 0-0 ||| 994 81669 +en ||| on allegations ||| 0.25 0.336652 1.22445e-05 1.76482e-06 2.718 ||| 0-0 ||| 4 81669 +en ||| on an ||| 0.0352113 0.336652 6.12227e-05 0.000234952 2.718 ||| 0-0 ||| 142 81669 +en ||| on any kind ||| 1 0.336652 1.22445e-05 1.64345e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| on any ||| 0.03125 0.336652 1.22445e-05 6.17144e-05 2.718 ||| 0-0 ||| 32 81669 +en ||| on balance ||| 0.0909091 0.336652 2.44891e-05 1.23402e-05 2.718 ||| 0-0 ||| 22 81669 +en ||| on banks had ||| 0.333333 0.336652 1.22445e-05 1.00301e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| on banks ||| 0.0555556 0.336652 1.22445e-05 7.05249e-06 2.718 ||| 0-0 ||| 18 81669 +en ||| on both good ||| 0.5 0.336652 1.22445e-05 6.2489e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| on both ||| 0.0122699 0.336652 2.44891e-05 0.000115935 2.718 ||| 0-0 ||| 163 81669 +en ||| on call ||| 1 0.336652 1.22445e-05 1.67522e-05 2.718 ||| 0-0 ||| 1 81669 +en ||| on company ||| 1 0.336652 1.22445e-05 3.96406e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| on contending ||| 1 0.336652 1.22445e-05 4.41205e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| on current ||| 0.25 0.336652 1.22445e-05 2.33635e-05 2.718 ||| 0-0 ||| 4 81669 +en ||| on developing ||| 0.111111 0.336652 1.22445e-05 1.01409e-05 2.718 ||| 0-0 ||| 9 81669 +en ||| on display ||| 0.0909091 0.336652 1.22445e-05 3.96406e-06 2.718 ||| 0-0 ||| 11 81669 +en ||| on end ||| 0.142857 0.336652 1.22445e-05 3.21808e-05 2.718 ||| 0-0 ||| 7 81669 +en ||| on enhanced ||| 0.333333 0.336652 1.22445e-05 3.52964e-06 2.718 ||| 0-0 ||| 3 81669 +en ||| on entitlement ||| 1 0.336652 1.22445e-05 8.8241e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| on ever ||| 1 0.336652 1.22445e-05 4.05569e-05 2.718 ||| 0-0 ||| 1 81669 +en ||| on full display from ||| 0.5 0.336652 1.22445e-05 2.20812e-12 2.718 ||| 0-0 ||| 2 81669 +en ||| on full display ||| 0.5 0.336652 1.22445e-05 1.33866e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| on full ||| 0.5 0.336652 1.22445e-05 2.29223e-05 2.718 ||| 0-0 ||| 2 81669 +en ||| on in ||| 0.2 0.527279 2.44891e-05 0.033088 2.718 ||| 0-0 0-1 ||| 10 81669 +en ||| on inside ||| 0.5 0.336652 1.22445e-05 3.96406e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| on into ||| 1 0.375518 2.44891e-05 0.00134685 2.718 ||| 0-0 0-1 ||| 2 81669 +en ||| on it ||| 0.125 0.336652 4.89782e-05 0.00180735 2.718 ||| 0-0 ||| 32 81669 +en ||| on its ||| 0.00874636 0.336652 3.67336e-05 0.000134887 2.718 ||| 0-0 ||| 343 81669 +en ||| on just ||| 1 0.336652 1.22445e-05 7.4937e-05 2.718 ||| 0-0 ||| 1 81669 +en ||| on location ||| 0.25 0.336652 1.22445e-05 8.8241e-07 2.718 ||| 0-0 ||| 4 81669 +en ||| on matters such as ||| 0.25 0.336652 1.22445e-05 7.09611e-11 2.718 ||| 0-0 ||| 4 81669 +en ||| on matters such ||| 0.333333 0.336652 1.22445e-05 8.39231e-09 2.718 ||| 0-0 ||| 3 81669 +en ||| on matters ||| 0.0588235 0.336652 1.22445e-05 3.96406e-06 2.718 ||| 0-0 ||| 17 81669 +en ||| on medicine , ||| 1 0.336652 1.22445e-05 1.8025e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| on medicine ||| 0.5 0.336652 1.22445e-05 8.8241e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| on month in ||| 1 0.717907 1.22445e-05 7.45711e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| on much weaker ||| 1 0.336652 1.22445e-05 1.27217e-09 2.718 ||| 0-0 ||| 1 81669 +en ||| on much ||| 0.2 0.336652 1.22445e-05 9.78593e-05 2.718 ||| 0-0 ||| 5 81669 +en ||| on national , ||| 0.142857 0.336652 1.22445e-05 3.33186e-06 2.718 ||| 0-0 ||| 7 81669 +en ||| on national ||| 0.142857 0.336652 1.22445e-05 1.6311e-05 2.718 ||| 0-0 ||| 7 81669 +en ||| on of all ||| 0.166667 0.336652 1.22445e-05 4.75172e-06 2.718 ||| 0-0 ||| 6 81669 +en ||| on of ||| 0.142857 0.336652 1.22445e-05 0.00183379 2.718 ||| 0-0 ||| 7 81669 +en ||| on one ||| 0.0103093 0.336652 1.22445e-05 0.000272868 2.718 ||| 0-0 ||| 97 81669 +en ||| on overseas ||| 0.5 0.336652 1.22445e-05 3.96406e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| on payments ||| 0.5 0.336652 1.22445e-05 2.64723e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| on record ||| 0.0769231 0.336652 1.22445e-05 1.14645e-05 2.718 ||| 0-0 ||| 13 81669 +en ||| on research ||| 0.0416667 0.336652 1.22445e-05 5.28767e-06 2.718 ||| 0-0 ||| 24 81669 +en ||| on rule in ||| 1 0.717907 1.22445e-05 4.71902e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| on so ||| 1 0.336652 1.22445e-05 0.000152962 2.718 ||| 0-0 ||| 1 81669 +en ||| on studies ||| 0.5 0.336652 1.22445e-05 4.41205e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| on such ||| 0.05 0.336652 2.44891e-05 0.000143704 2.718 ||| 0-0 ||| 40 81669 +en ||| on task ||| 0.5 0.336652 1.22445e-05 1.76482e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| on the US ||| 0.0285714 0.336652 1.22445e-05 4.63736e-06 2.718 ||| 0-0 ||| 35 81669 +en ||| on the back of ||| 0.0666667 0.336652 1.22445e-05 1.35406e-07 2.718 ||| 0-0 ||| 15 81669 +en ||| on the back ||| 0.05 0.336652 1.22445e-05 5.01206e-06 2.718 ||| 0-0 ||| 20 81669 +en ||| on the basis ||| 0.0102041 0.336652 1.22445e-05 1.38194e-06 2.718 ||| 0-0 ||| 98 81669 +en ||| on the fact ||| 0.111111 0.336652 1.22445e-05 2.36538e-06 2.718 ||| 0-0 ||| 9 81669 +en ||| on the fast ||| 0.5 0.336652 1.22445e-05 3.04373e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| on the ground , in ||| 1 0.717907 1.22445e-05 7.41242e-09 2.718 ||| 0-4 ||| 1 81669 +en ||| on the ground in ||| 0.142857 0.717907 1.22445e-05 3.62873e-08 2.718 ||| 0-3 ||| 7 81669 +en ||| on the grounds ||| 0.0172414 0.336652 1.22445e-05 2.57491e-07 2.718 ||| 0-0 ||| 58 81669 +en ||| on the make ||| 0.333333 0.336652 1.22445e-05 4.75421e-06 2.718 ||| 0-0 ||| 3 81669 +en ||| on the other ||| 0.0384615 0.336652 0.000110201 4.23922e-06 2.718 ||| 0-0 ||| 234 81669 +en ||| on the ||| 0.030635 0.336652 0.00184893 0.00360632 2.718 ||| 0-0 ||| 4929 81669 +en ||| on their ||| 0.00779221 0.336652 3.67336e-05 0.000121664 2.718 ||| 0-0 ||| 385 81669 +en ||| on them in ||| 0.5 0.717907 1.22445e-05 3.73774e-06 2.718 ||| 0-2 ||| 2 81669 +en ||| on these ||| 0.0178571 0.336652 1.22445e-05 5.20147e-05 2.718 ||| 0-0 ||| 56 81669 +en ||| on to earn ||| 1 0.336652 1.22445e-05 1.4558e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| on to strains ||| 0.333333 0.336652 1.22445e-05 1.09185e-07 2.718 ||| 0-0 ||| 3 81669 +en ||| on to ||| 0.0705882 0.336652 7.34673e-05 0.00559925 2.718 ||| 0-0 ||| 85 81669 +en ||| on track ||| 0.037037 0.336652 1.22445e-05 6.61129e-06 2.718 ||| 0-0 ||| 27 81669 +en ||| on ways ||| 0.142857 0.336652 1.22445e-05 1.1899e-05 2.718 ||| 0-0 ||| 7 81669 +en ||| on what ||| 0.0140845 0.336652 1.22445e-05 6.70021e-05 2.718 ||| 0-0 ||| 71 81669 +en ||| on whether ||| 0.0212766 0.336652 1.22445e-05 1.14645e-05 2.718 ||| 0-0 ||| 47 81669 +en ||| on with ||| 0.0833333 0.336652 1.22445e-05 0.00025744 2.718 ||| 0-0 ||| 12 81669 +en ||| on year in ||| 1 0.717907 2.44891e-05 9.06517e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| on yet ||| 1 0.336652 1.22445e-05 3.57037e-05 2.718 ||| 0-0 ||| 1 81669 +en ||| on ||| 0.349022 0.336652 0.0828099 0.0678777 2.718 ||| 0-0 ||| 19377 81669 +en ||| once again , to confirm ||| 1 0.0189899 1.22445e-05 4.64416e-15 2.718 ||| 0-3 ||| 1 81669 +en ||| once again , to ||| 0.5 0.0189899 1.22445e-05 7.14487e-10 2.718 ||| 0-3 ||| 2 81669 +en ||| once and for ||| 0.030303 0.0255404 1.22445e-05 3.43628e-08 2.718 ||| 0-2 ||| 33 81669 +en ||| once he is ||| 0.333333 0.0345926 1.22445e-05 3.49127e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| once he ||| 0.1 0.0345926 1.22445e-05 2.11818e-06 2.718 ||| 0-0 ||| 10 81669 +en ||| once upon ||| 0.142857 0.0345926 1.22445e-05 1.80578e-07 2.718 ||| 0-0 ||| 7 81669 +en ||| once was ||| 0.0714286 0.0345926 1.22445e-05 2.56301e-06 2.718 ||| 0-0 ||| 14 81669 +en ||| once ||| 0.0136882 0.0345926 0.000220402 0.0006781 2.718 ||| 0-0 ||| 1315 81669 +en ||| one at ||| 0.25 0.351161 2.44891e-05 0.000146943 2.718 ||| 0-1 ||| 8 81669 +en ||| one he may have sought in that ||| 0.5 0.717907 1.22445e-05 3.45343e-17 2.718 ||| 0-5 ||| 2 81669 +en ||| one he may have sought in ||| 0.5 0.717907 1.22445e-05 4.22706e-15 2.718 ||| 0-5 ||| 2 81669 +en ||| one in ||| 0.108108 0.717907 0.000146935 0.00195961 2.718 ||| 0-1 ||| 111 81669 +en ||| one of ||| 0.00143266 0.0080355 2.44891e-05 3.20281e-05 2.718 ||| 0-1 ||| 1396 81669 +en ||| one senses in ||| 1 0.717907 1.22445e-05 1.27375e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| one that ||| 0.00420168 0.000314 1.22445e-05 5.37876e-07 2.718 ||| 0-1 ||| 238 81669 +en ||| one ||| 0.000471032 0.0005382 3.67336e-05 3.57e-05 2.718 ||| 0-0 ||| 6369 81669 +en ||| ongoing ||| 0.018018 0.152597 4.89782e-05 0.0004193 2.718 ||| 0-0 ||| 222 81669 +en ||| only at ||| 0.04 0.351161 1.22445e-05 3.96416e-05 2.718 ||| 0-1 ||| 25 81669 +en ||| only fall back on ||| 1 0.336652 1.22445e-05 2.32546e-11 2.718 ||| 0-3 ||| 1 81669 +en ||| only in ||| 0.012987 0.717907 3.67336e-05 0.000528656 2.718 ||| 0-1 ||| 231 81669 +en ||| only on ||| 0.025641 0.336652 2.44891e-05 7.36134e-05 2.718 ||| 0-1 ||| 78 81669 +en ||| only road ||| 1 0.0002894 1.22445e-05 2.54362e-09 2.718 ||| 0-0 ||| 1 81669 +en ||| only to reverse course ||| 0.0909091 0.0189899 1.22445e-05 4.71055e-13 2.718 ||| 0-1 ||| 11 81669 +en ||| only to reverse ||| 0.0769231 0.0189899 1.22445e-05 1.09906e-09 2.718 ||| 0-1 ||| 13 81669 +en ||| only to ||| 0.0077821 0.0189899 2.44891e-05 1.88194e-05 2.718 ||| 0-1 ||| 257 81669 +en ||| only ||| 0.000137874 0.0002894 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 7253 81669 +en ||| onto ||| 0.164179 0.12987 0.00013469 0.0001784 2.718 ||| 0-0 ||| 67 81669 +en ||| opened in ||| 0.333333 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| operating in ||| 0.027027 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 37 81669 +en ||| operating on ||| 0.2 0.336652 1.22445e-05 3.96406e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| operating procedure ||| 1 0.0136054 1.22445e-05 3.471e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| operating ||| 0.00884956 0.0136054 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 113 81669 +en ||| operational in ||| 0.5 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| opportunities . in ||| 1 0.717907 1.22445e-05 4.37056e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| opportunity to ||| 0.00444444 0.0189899 1.22445e-05 4.51181e-07 2.718 ||| 0-1 ||| 225 81669 +en ||| opposed in ||| 1 0.717907 1.22445e-05 3.79735e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| opt out of ||| 0.25 0.0080355 1.22445e-05 9.18822e-10 2.718 ||| 0-2 ||| 4 81669 +en ||| or below by ||| 0.5 0.065573 1.22445e-05 7.92117e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| or so for ||| 1 0.0255404 1.22445e-05 2.45939e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| order in ||| 0.117647 0.717907 2.44891e-05 0.000392555 2.718 ||| 0-1 ||| 17 81669 +en ||| order of ||| 0.03125 0.0080355 1.22445e-05 6.41599e-06 2.718 ||| 0-1 ||| 32 81669 +en ||| organized for ||| 0.5 0.0255404 1.22445e-05 1.51708e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| other in ||| 0.047619 0.717907 1.22445e-05 0.000573015 2.718 ||| 0-1 ||| 21 81669 +en ||| other on ||| 0.111111 0.336652 1.22445e-05 7.97902e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| other regarding those relationships ||| 0.5 0.102881 1.22445e-05 2.55634e-15 2.718 ||| 0-1 ||| 2 81669 +en ||| other regarding those ||| 0.5 0.102881 1.22445e-05 1.31094e-10 2.718 ||| 0-1 ||| 2 81669 +en ||| other regarding ||| 0.5 0.102881 1.22445e-05 2.62136e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| other way in ||| 1 0.717907 1.22445e-05 8.70811e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| otherwise be the case ||| 0.333333 0.0006015 1.22445e-05 1.13299e-12 2.718 ||| 0-2 ||| 3 81669 +en ||| otherwise be the ||| 0.333333 0.0006015 1.22445e-05 1.63044e-09 2.718 ||| 0-2 ||| 3 81669 +en ||| out according to ||| 0.5 0.0189899 1.22445e-05 4.49513e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| out in support ||| 1 0.717907 1.22445e-05 6.1774e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| out in ||| 0.3125 0.717907 0.000244891 0.0021622 2.718 ||| 0-1 ||| 64 81669 +en ||| out more like ||| 1 0.0096316 1.22445e-05 6.38867e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| out more ||| 1 0.0096316 1.22445e-05 7.62553e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| out of ||| 0.013468 0.0080355 9.79564e-05 3.53393e-05 2.718 ||| 0-1 ||| 594 81669 +en ||| out on ||| 0.212121 0.336652 8.57118e-05 0.000301078 2.718 ||| 0-1 ||| 33 81669 +en ||| out that way ||| 0.333333 0.0096316 1.22445e-05 4.43114e-09 2.718 ||| 0-0 ||| 3 81669 +en ||| out that ||| 0.0416667 0.0096316 1.22445e-05 2.9158e-06 2.718 ||| 0-0 ||| 24 81669 +en ||| out to be ||| 0.0540541 0.0143108 2.44891e-05 6.38308e-08 2.718 ||| 0-0 0-1 ||| 37 81669 +en ||| out to ||| 0.0315789 0.0189899 3.67336e-05 7.69714e-05 2.718 ||| 0-1 ||| 95 81669 +en ||| out ||| 0.0142631 0.0096316 0.000220402 0.0003569 2.718 ||| 0-0 ||| 1262 81669 +en ||| out-perform dictatorships when it ||| 1 0.0709982 1.22445e-05 1.31281e-14 2.718 ||| 0-2 ||| 1 81669 +en ||| out-perform dictatorships when ||| 1 0.0709982 1.22445e-05 4.93045e-13 2.718 ||| 0-2 ||| 1 81669 +en ||| output in ||| 0.1 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| outright in the ||| 1 0.717907 1.22445e-05 1.01005e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| outright in ||| 1 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| outset in playing ||| 0.333333 0.717907 1.22445e-05 1.1112e-09 2.718 ||| 0-1 ||| 3 81669 +en ||| outset in ||| 0.333333 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| outset of ||| 0.0909091 0.0080355 1.22445e-05 1.5536e-07 2.718 ||| 0-1 ||| 11 81669 +en ||| outside of ||| 0.0135135 0.0080355 1.22445e-05 5.68858e-07 2.718 ||| 0-1 ||| 74 81669 +en ||| outward from ||| 0.5 0.0190577 1.22445e-05 5.63687e-08 2.718 ||| 0-1 ||| 2 81669 +en ||| over a ||| 0.0211268 0.159665 3.67336e-05 0.000294695 2.718 ||| 0-0 ||| 142 81669 +en ||| over and ||| 0.0769231 0.159665 1.22445e-05 6.15079e-05 2.718 ||| 0-0 ||| 13 81669 +en ||| over in ||| 0.181818 0.717907 2.44891e-05 0.000338739 2.718 ||| 0-1 ||| 11 81669 +en ||| over into ||| 0.5 0.414384 1.22445e-05 1.37884e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| over the course of ||| 0.0344828 0.159665 1.22445e-05 4.50623e-09 2.718 ||| 0-0 ||| 29 81669 +en ||| over the course ||| 0.027027 0.159665 1.22445e-05 1.66798e-07 2.718 ||| 0-0 ||| 37 81669 +en ||| over the ||| 0.00212014 0.159665 3.67336e-05 0.000389169 2.718 ||| 0-0 ||| 1415 81669 +en ||| over ||| 0.169177 0.159665 0.00825283 0.0073249 2.718 ||| 0-0 ||| 3984 81669 +en ||| overall ||| 0.00543478 0.175115 2.44891e-05 0.0006781 2.718 ||| 0-0 ||| 368 81669 +en ||| overseas development effort ||| 1 0.222727 1.22445e-05 2.06244e-11 2.718 ||| 0-0 ||| 1 81669 +en ||| overseas development ||| 0.166667 0.222727 1.22445e-05 7.38431e-08 2.718 ||| 0-0 ||| 6 81669 +en ||| overseas ||| 0.010989 0.222727 1.22445e-05 0.0004372 2.718 ||| 0-0 ||| 91 81669 +en ||| overthrown in ||| 0.333333 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| owing in ||| 0.142857 0.717907 1.22445e-05 3.79735e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| own appointees on ||| 1 0.336652 1.22445e-05 2.76794e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| own upbringing amid ||| 0.333333 0.373134 1.22445e-05 3.03119e-12 2.718 ||| 0-2 ||| 3 81669 +en ||| pale in ||| 0.25 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| panel discussion at ||| 1 0.351161 1.22445e-05 6.17744e-12 2.718 ||| 0-2 ||| 1 81669 +en ||| paper ||| 0.00483092 0.0277778 1.22445e-05 5.35e-05 2.718 ||| 0-0 ||| 207 81669 +en ||| paradoxically , when ||| 1 0.0709982 1.22445e-05 5.16485e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| paralyzed , in ||| 1 0.717907 1.22445e-05 1.29447e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| parrot at ||| 0.333333 0.351161 1.22445e-05 2.37594e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| part , ||| 0.00595238 0.00649 1.22445e-05 2.18774e-05 2.718 ||| 0-0 ||| 168 81669 +en ||| part in ||| 0.139535 0.717907 7.34673e-05 0.000300766 2.718 ||| 0-1 ||| 43 81669 +en ||| part of conventional wisdom ||| 0.142857 0.0080355 1.22445e-05 3.91578e-14 2.718 ||| 0-1 ||| 7 81669 +en ||| part of conventional ||| 0.166667 0.0080355 1.22445e-05 2.87081e-10 2.718 ||| 0-1 ||| 6 81669 +en ||| part of ||| 0.00603865 0.0080355 6.12227e-05 4.91576e-06 2.718 ||| 0-1 ||| 828 81669 +en ||| part ||| 0.00180397 0.00649 3.67336e-05 0.0001071 2.718 ||| 0-0 ||| 1663 81669 +en ||| participants ||| 0.00549451 0.0807692 1.22445e-05 0.0001874 2.718 ||| 0-0 ||| 182 81669 +en ||| participate in ||| 0.0232558 0.717907 2.44891e-05 9.50556e-06 2.718 ||| 0-1 ||| 86 81669 +en ||| participated in ||| 0.0416667 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 24 81669 +en ||| participating in ||| 0.025641 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 39 81669 +en ||| particularly ||| 0.00197824 0.220077 2.44891e-05 0.0025427 2.718 ||| 0-0 ||| 1011 81669 +en ||| partly ||| 0.0128617 0.419521 4.89782e-05 0.0021859 2.718 ||| 0-0 ||| 311 81669 +en ||| partner in ||| 0.166667 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| partner to ||| 0.333333 0.0189899 1.22445e-05 4.51181e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| party to ||| 0.0434783 0.0189899 1.22445e-05 3.60597e-06 2.718 ||| 0-1 ||| 23 81669 +en ||| passes through to ||| 1 0.021007 1.22445e-05 9.04171e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| passes through ||| 0.333333 0.021007 1.22445e-05 1.09609e-08 2.718 ||| 0-1 ||| 3 81669 +en ||| past ||| 0.00115141 0.0011581 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 1737 81669 +en ||| patronage ||| 0.025 0.0285714 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 40 81669 +en ||| patterned after ||| 0.142857 0.0037224 1.22445e-05 8.1185e-10 2.718 ||| 0-1 ||| 7 81669 +en ||| patterns , in ||| 1 0.717907 1.22445e-05 3.23618e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| pay in order ||| 0.25 0.717907 1.22445e-05 8.92278e-08 2.718 ||| 0-1 ||| 4 81669 +en ||| pay in ||| 0.05 0.717907 2.44891e-05 0.000110801 2.718 ||| 0-1 ||| 40 81669 +en ||| penalties ||| 0.0344828 0.111111 1.22445e-05 3.57e-05 2.718 ||| 0-0 ||| 29 81669 +en ||| pending in ||| 0.5 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| people in ||| 0.00413223 0.717907 1.22445e-05 0.000392555 2.718 ||| 0-1 ||| 242 81669 +en ||| performance during ||| 1 0.0947187 1.22445e-05 9.55393e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| performance in both ||| 1 0.717907 1.22445e-05 5.40351e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| performance in ||| 0.0833333 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 12 81669 +en ||| performed in ||| 0.5 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| period as ||| 0.333333 0.0296498 1.22445e-05 1.02759e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| period during ||| 0.166667 0.0947187 1.22445e-05 2.10363e-07 2.718 ||| 0-1 ||| 6 81669 +en ||| permitted in ||| 0.333333 0.717907 1.22445e-05 3.79735e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| persist in ||| 0.0909091 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| pervasive malaise in ||| 0.333333 0.717907 1.22445e-05 4.11908e-11 2.718 ||| 0-2 ||| 3 81669 +en ||| petition ||| 0.030303 0.105263 1.22445e-05 3.57e-05 2.718 ||| 0-0 ||| 33 81669 +en ||| piece together ||| 0.5 0.0832487 1.22445e-05 6.1747e-08 2.718 ||| 0-1 ||| 2 81669 +en ||| place at ||| 0.25 0.351161 3.67336e-05 4.65282e-05 2.718 ||| 0-1 ||| 12 81669 +en ||| place in ||| 0.105769 0.717907 0.00013469 0.000620494 2.718 ||| 0-1 ||| 104 81669 +en ||| place on the ground , in ||| 1 0.717907 1.22445e-05 9.43527e-12 2.718 ||| 0-5 ||| 1 81669 +en ||| place on ||| 0.222222 0.336652 2.44891e-05 8.64015e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| place under ||| 0.111111 0.0957592 1.22445e-05 2.38491e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| place within ||| 0.125 0.193123 1.22445e-05 4.65627e-06 2.718 ||| 0-1 ||| 8 81669 +en ||| placed on ||| 0.115385 0.336652 3.67336e-05 5.28767e-06 2.718 ||| 0-1 ||| 26 81669 +en ||| placed ||| 0.03125 0.0804598 4.89782e-05 0.0001249 2.718 ||| 0-0 ||| 128 81669 +en ||| planned ||| 0.00980392 0.0076923 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 102 81669 +en ||| plant in the ||| 0.5 0.717907 1.22445e-05 6.73369e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| plant in ||| 0.666667 0.717907 2.44891e-05 1.26741e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| play in ||| 0.0384615 0.717907 2.44891e-05 0.000120306 2.718 ||| 0-1 ||| 52 81669 +en ||| played down in ||| 0.142857 0.717907 1.22445e-05 1.01785e-07 2.718 ||| 0-2 ||| 7 81669 +en ||| played in ||| 0.333333 0.717907 1.22445e-05 6.96587e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| played on ||| 0.333333 0.336652 1.22445e-05 9.69972e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| played out in ||| 0.5 0.717907 1.22445e-05 3.08978e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| players for ||| 0.5 0.0255404 1.22445e-05 1.51708e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| players on ||| 0.5 0.336652 1.22445e-05 1.32362e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| playing in ||| 0.25 0.717907 1.22445e-05 5.69846e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| plays in ||| 0.333333 0.717907 2.44891e-05 3.16365e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| plays out in ||| 1 0.717907 1.22445e-05 1.40327e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| plea for ||| 0.333333 0.0255404 1.22445e-05 1.01139e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| plot in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| poem at ||| 0.142857 0.351161 1.22445e-05 2.37594e-07 2.718 ||| 0-1 ||| 7 81669 +en ||| point , at least ||| 0.333333 0.351161 1.22445e-05 6.3757e-10 2.718 ||| 0-2 ||| 3 81669 +en ||| point , at ||| 0.333333 0.351161 1.22445e-05 3.63702e-06 2.718 ||| 0-2 ||| 3 81669 +en ||| point in ||| 0.06 0.717907 3.67336e-05 0.000237444 2.718 ||| 0-1 ||| 50 81669 +en ||| point of ||| 0.0143885 0.0080355 2.44891e-05 3.88082e-06 2.718 ||| 0-1 ||| 139 81669 +en ||| point on ||| 0.142857 0.336652 1.22445e-05 3.30632e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| point seen in ||| 1 0.717907 1.22445e-05 8.63584e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| point-of-care ||| 0.2 1 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 5 81669 +en ||| pointed out in ||| 0.25 0.717907 1.22445e-05 8.43258e-08 2.718 ||| 0-2 ||| 4 81669 +en ||| pointed ||| 0.025 0.026087 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 40 81669 +en ||| points across in ||| 0.5 0.717907 1.22445e-05 8.22549e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| points in ||| 0.4 0.717907 2.44891e-05 6.33217e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| points ||| 0.00546448 0.003125 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 183 81669 +en ||| policy in ||| 0.05 0.717907 1.22445e-05 0.000151943 2.718 ||| 0-1 ||| 20 81669 +en ||| policymakers in ||| 0.0666667 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 15 81669 +en ||| politically ||| 0.00217391 0.0328947 1.22445e-05 0.0001338 2.718 ||| 0-0 ||| 460 81669 +en ||| politics in ||| 0.0227273 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 44 81669 +en ||| poll ||| 0.0114943 0.0833333 1.22445e-05 8.03e-05 2.718 ||| 0-0 ||| 87 81669 +en ||| polling is concluded in ||| 1 0.717907 1.22445e-05 5.43138e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| poor returns on ||| 1 0.336652 1.22445e-05 1.43303e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| poorly in ||| 0.2 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| poorly on ||| 0.2 0.336652 1.22445e-05 2.20603e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| poppy growers ) into cultivating ||| 0.5 0.414384 1.22445e-05 2.4772e-20 2.718 ||| 0-3 ||| 2 81669 +en ||| poppy growers ) into ||| 0.5 0.414384 1.22445e-05 3.81108e-15 2.718 ||| 0-3 ||| 2 81669 +en ||| populate ||| 0.5 0.5 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 2 81669 +en ||| populations in ||| 0.0769231 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 13 81669 +en ||| portfolio in ||| 0.5 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| portion of ||| 0.0277778 0.0080355 1.22445e-05 5.17868e-08 2.718 ||| 0-1 ||| 36 81669 +en ||| pose ||| 0.0238095 0.0263158 2.44891e-05 2.68e-05 2.718 ||| 0-0 ||| 84 81669 +en ||| posing a ||| 0.142857 0.0011873 1.22445e-05 1.85588e-08 2.718 ||| 0-1 ||| 7 81669 +en ||| position in ||| 0.05 0.717907 1.22445e-05 7.59958e-05 2.718 ||| 0-1 ||| 20 81669 +en ||| position on ||| 0.0625 0.336652 1.22445e-05 1.05821e-05 2.718 ||| 0-1 ||| 16 81669 +en ||| positions in ||| 0.0833333 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 12 81669 +en ||| positions of ||| 0.0454545 0.0080355 1.22445e-05 4.14294e-07 2.718 ||| 0-1 ||| 22 81669 +en ||| possesses in ||| 0.333333 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| possible in ||| 0.05 0.717907 1.22445e-05 0.000193134 2.718 ||| 0-1 ||| 20 81669 +en ||| post involved the ||| 0.333333 0.0340633 1.22445e-05 1.72533e-10 2.718 ||| 0-1 ||| 3 81669 +en ||| post involved ||| 0.333333 0.0340633 1.22445e-05 3.2474e-09 2.718 ||| 0-1 ||| 3 81669 +en ||| post on ||| 0.5 0.336652 1.22445e-05 1.76482e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| power , and influence . ||| 1 0.0828539 1.22445e-05 2.40198e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| power , and influence ||| 1 0.0828539 1.22445e-05 5.22409e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| power in 1973 , he was ||| 0.5 0.717907 1.22445e-05 7.24585e-15 2.718 ||| 0-1 ||| 2 81669 +en ||| power in 1973 , he ||| 0.5 0.717907 1.22445e-05 1.91704e-12 2.718 ||| 0-1 ||| 2 81669 +en ||| power in 1973 , ||| 0.5 0.717907 1.22445e-05 6.13709e-10 2.718 ||| 0-1 ||| 2 81669 +en ||| power in 1973 ||| 0.5 0.717907 1.22445e-05 3.00439e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| power in ||| 0.0315789 0.717907 7.34673e-05 0.000231107 2.718 ||| 0-1 ||| 190 81669 +en ||| power plant in ||| 1 0.717907 1.22445e-05 6.00878e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| practices in ||| 0.25 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| preceded by ||| 0.0666667 0.065573 1.22445e-05 8.06669e-08 2.718 ||| 0-1 ||| 15 81669 +en ||| premium placed on ||| 1 0.336652 1.22445e-05 1.0311e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| present at ||| 0.1 0.351161 1.22445e-05 2.84747e-06 2.718 ||| 0-1 ||| 10 81669 +en ||| present in ||| 0.125 0.717907 3.67336e-05 3.79735e-05 2.718 ||| 0-1 ||| 24 81669 +en ||| present time , when ||| 1 0.0709982 1.22445e-05 5.78877e-11 2.718 ||| 0-3 ||| 1 81669 +en ||| present ||| 0.0026738 0.002451 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 374 81669 +en ||| president in ||| 0.0322581 0.717907 1.22445e-05 6.64902e-05 2.718 ||| 0-1 ||| 31 81669 +en ||| pressure on ||| 0.00813008 0.336652 1.22445e-05 4.40526e-06 2.718 ||| 0-1 ||| 123 81669 +en ||| pressures from ||| 0.142857 0.0190577 1.22445e-05 3.75791e-08 2.718 ||| 0-1 ||| 7 81669 +en ||| pretty much run ||| 0.25 0.0333333 1.22445e-05 1.0832e-11 2.718 ||| 0-0 ||| 4 81669 +en ||| pretty much ||| 0.0769231 0.0333333 1.22445e-05 2.56623e-08 2.718 ||| 0-0 ||| 13 81669 +en ||| pretty ||| 0.0588235 0.0333333 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 34 81669 +en ||| prevail in ||| 0.125 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| prevailing in ||| 0.0555556 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 18 81669 +en ||| previous ||| 0.00271739 0.008427 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 368 81669 +en ||| primarily at ||| 0.333333 0.351161 1.22445e-05 1.66316e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| primarily in terms ||| 0.333333 0.717907 1.22445e-05 1.16665e-08 2.718 ||| 0-1 ||| 3 81669 +en ||| primarily in ||| 0.0625 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-1 ||| 16 81669 +en ||| primarily ||| 0.00510204 0.0135747 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 196 81669 +en ||| privately-owned ||| 1 1 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| prize recipient ||| 0.5 0.0151515 1.22445e-05 3.471e-10 2.718 ||| 0-1 ||| 2 81669 +en ||| pro-consumption ||| 0.0769231 0.136364 1.22445e-05 5.35e-05 2.718 ||| 0-0 ||| 13 81669 +en ||| pro-independence poem at ||| 0.142857 0.351161 1.22445e-05 1.54436e-12 2.718 ||| 0-2 ||| 7 81669 +en ||| process in ||| 0.142857 0.717907 1.22445e-05 0.000113969 2.718 ||| 0-1 ||| 7 81669 +en ||| produce any return in the ||| 0.333333 0.717907 1.22445e-05 8.52297e-13 2.718 ||| 0-3 ||| 3 81669 +en ||| produce any return in ||| 0.333333 0.717907 1.22445e-05 1.60419e-11 2.718 ||| 0-3 ||| 3 81669 +en ||| progress in ||| 0.0176991 0.717907 2.44891e-05 4.1142e-05 2.718 ||| 0-1 ||| 113 81669 +en ||| project in ||| 0.333333 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| prominent ||| 0.00917431 0.0087719 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 109 81669 +en ||| promise at ||| 1 0.351161 1.22445e-05 2.37228e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| promise in ||| 0.166667 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| properties at ||| 1 0.351161 1.22445e-05 2.37594e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| proposition from ||| 0.333333 0.0190577 1.22445e-05 3.75791e-08 2.718 ||| 0-1 ||| 3 81669 +en ||| prospects in ||| 0.333333 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| protestors ||| 0.0238095 0.04 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 42 81669 +en ||| prove helpful in ||| 0.333333 0.717907 1.22445e-05 3.90996e-10 2.718 ||| 0-2 ||| 3 81669 +en ||| provide the ||| 0.00970874 0.0006015 1.22445e-05 4.74474e-07 2.718 ||| 0-1 ||| 103 81669 +en ||| provided any aid at all ||| 0.25 0.351161 1.22445e-05 1.47752e-15 2.718 ||| 0-3 ||| 4 81669 +en ||| provided any aid at ||| 0.25 0.351161 1.22445e-05 5.70208e-13 2.718 ||| 0-3 ||| 4 81669 +en ||| provided at ||| 0.125 0.351161 1.22445e-05 8.78366e-06 2.718 ||| 0-1 ||| 8 81669 +en ||| provisional president in ||| 0.166667 0.717907 1.22445e-05 4.32186e-10 2.718 ||| 0-2 ||| 6 81669 +en ||| provoked in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| proxies in a ||| 1 0.717907 1.22445e-05 1.27476e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| proxies in ||| 0.5 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| public on ||| 0.111111 0.336652 1.22445e-05 2.38047e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| public to ||| 0.111111 0.0189899 1.22445e-05 6.08573e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| publicly at each other ||| 1 0.351161 1.22445e-05 8.70552e-13 2.718 ||| 0-1 ||| 1 81669 +en ||| publicly at each ||| 1 0.351161 1.22445e-05 7.4058e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| publicly at ||| 1 0.351161 1.22445e-05 1.42556e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| publicly thrashed ||| 0.5 0.0943396 1.22445e-05 1.1596e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| publicly ||| 0.01875 0.0943396 3.67336e-05 0.0001784 2.718 ||| 0-0 ||| 160 81669 +en ||| purchase in ||| 1 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| purchased in ||| 0.25 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| purpose in ||| 0.5 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| push in ||| 0.25 0.717907 1.22445e-05 6.64902e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| put at ||| 0.4 0.351161 4.89782e-05 4.41522e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| put forth in ||| 1 0.717907 1.22445e-05 3.82137e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| put forward in ||| 0.333333 0.717907 1.22445e-05 2.25632e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| put in place ||| 0.03125 0.717907 1.22445e-05 7.49495e-07 2.718 ||| 0-1 ||| 32 81669 +en ||| put in ||| 0.047619 0.717907 1.22445e-05 0.000588809 2.718 ||| 0-1 ||| 21 81669 +en ||| put into ||| 0.0666667 0.414384 1.22445e-05 2.39675e-05 2.718 ||| 0-1 ||| 15 81669 +en ||| put it at ||| 0.5 0.351161 1.22445e-05 1.17562e-06 2.718 ||| 0-2 ||| 2 81669 +en ||| put it in a ||| 0.2 0.717907 1.22445e-05 6.30754e-07 2.718 ||| 0-2 ||| 5 81669 +en ||| put it in ||| 0.2 0.717907 3.67336e-05 1.56779e-05 2.718 ||| 0-2 ||| 15 81669 +en ||| put itself in ||| 1 0.717907 1.22445e-05 4.24472e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| put on ||| 0.0740741 0.336652 2.44891e-05 8.19895e-05 2.718 ||| 0-1 ||| 27 81669 +en ||| put the US on ||| 1 0.336652 1.22445e-05 5.60147e-09 2.718 ||| 0-3 ||| 1 81669 +en ||| put to death in ||| 1 0.717907 1.22445e-05 8.51449e-09 2.718 ||| 0-3 ||| 1 81669 +en ||| put together in ||| 1 0.717907 1.22445e-05 2.86809e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| put ||| 0.00152439 0.0065934 1.22445e-05 8.03e-05 2.718 ||| 0-0 ||| 656 81669 +en ||| putting in ||| 0.25 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| quality about ||| 1 0.0371521 1.22445e-05 1.27582e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| questioned ||| 0.0208333 0.173913 1.22445e-05 0.0001071 2.718 ||| 0-0 ||| 48 81669 +en ||| quickly ||| 0.00206612 0.0077071 1.22445e-05 3.57e-05 2.718 ||| 0-0 ||| 484 81669 +en ||| quipped ||| 0.142857 0.25 1.22445e-05 3.57e-05 2.718 ||| 0-0 ||| 7 81669 +en ||| quit in ||| 0.25 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| quite ||| 0.00401606 0.0083333 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 249 81669 +en ||| quoted extensively in ||| 0.5 0.717907 1.22445e-05 2.47145e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| rage in ||| 0.111111 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| raise interest rates to curb excess liquidity ||| 1 0.0189899 1.22445e-05 1.25512e-28 2.718 ||| 0-3 ||| 1 81669 +en ||| raise interest rates to curb excess ||| 1 0.0189899 1.22445e-05 1.93095e-23 2.718 ||| 0-3 ||| 1 81669 +en ||| raise interest rates to curb ||| 1 0.0189899 1.22445e-05 4.95115e-19 2.718 ||| 0-3 ||| 1 81669 +en ||| raise interest rates to ||| 0.333333 0.0189899 1.22445e-05 7.61716e-14 2.718 ||| 0-3 ||| 3 81669 +en ||| raised at ||| 0.5 0.351161 1.22445e-05 5.22341e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| raised in ||| 0.1 0.717907 1.22445e-05 6.96587e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| rampant ||| 0.012987 0.0294118 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 77 81669 +en ||| rank poorly on ||| 0.25 0.336652 1.22445e-05 1.00374e-10 2.718 ||| 0-2 ||| 4 81669 +en ||| ranked ||| 0.0540541 0.153846 2.44891e-05 0.0001071 2.718 ||| 0-0 ||| 37 81669 +en ||| rapidly in ||| 0.0625 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-1 ||| 16 81669 +en ||| rate of ||| 0.00552486 0.0080355 1.22445e-05 2.48338e-06 2.718 ||| 0-1 ||| 181 81669 +en ||| rates in ||| 0.0666667 0.717907 2.44891e-05 8.54526e-05 2.718 ||| 0-1 ||| 30 81669 +en ||| rates to curb excess liquidity so long ||| 1 0.0189899 1.22445e-05 8.43553e-27 2.718 ||| 0-1 ||| 1 81669 +en ||| rates to curb excess liquidity so ||| 1 0.0189899 1.22445e-05 1.12956e-23 2.718 ||| 0-1 ||| 1 81669 +en ||| rates to curb excess liquidity ||| 1 0.0189899 1.22445e-05 5.01245e-21 2.718 ||| 0-1 ||| 1 81669 +en ||| rates to curb excess ||| 1 0.0189899 1.22445e-05 7.71147e-16 2.718 ||| 0-1 ||| 1 81669 +en ||| rates to curb ||| 1 0.0189899 1.22445e-05 1.9773e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| rates to ||| 0.05 0.0189899 1.22445e-05 3.042e-06 2.718 ||| 0-1 ||| 20 81669 +en ||| rather cumbersome ||| 0.333333 0.274052 1.22445e-05 4.69157e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| rather than stand on ||| 0.047619 0.336652 1.22445e-05 2.89033e-12 2.718 ||| 0-3 ||| 21 81669 +en ||| rather ||| 0.0119565 0.274052 0.00013469 0.0072178 2.718 ||| 0-0 ||| 920 81669 +en ||| ratio ||| 0.00507614 0.0043668 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 197 81669 +en ||| re-bar plant in the ||| 1 0.717907 1.22445e-05 4.3769e-12 2.718 ||| 0-2 ||| 1 81669 +en ||| re-bar plant in ||| 1 0.717907 1.22445e-05 8.23816e-11 2.718 ||| 0-2 ||| 1 81669 +en ||| re-established ||| 0.166667 0.111111 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 6 81669 +en ||| reached back in ||| 0.5 0.717907 1.22445e-05 7.47936e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| reached in ||| 0.0833333 0.717907 2.44891e-05 5.38161e-05 2.718 ||| 0-1 ||| 24 81669 +en ||| reached ||| 0.003003 0.0060484 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 333 81669 +en ||| reaching office in ||| 1 0.717907 1.22445e-05 5.26735e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| realized in ||| 0.2 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| really has ||| 0.5 0.169014 1.22445e-05 4.61883e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| really matter all ||| 0.5 0.169014 1.22445e-05 1.14757e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| really matter ||| 0.166667 0.169014 1.22445e-05 4.42871e-07 2.718 ||| 0-0 ||| 6 81669 +en ||| really stands on ||| 1 0.336652 1.22445e-05 2.61167e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| really ||| 0.00701754 0.169014 7.34673e-05 0.0013918 2.718 ||| 0-0 ||| 855 81669 +en ||| reasons in ||| 1 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| recalls ||| 0.0526316 0.0416667 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 19 81669 +en ||| received at ||| 0.333333 0.351161 1.22445e-05 2.60988e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| received in ||| 0.111111 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| recently as ||| 0.111111 0.0296498 1.22445e-05 1.728e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| recipient ||| 0.0175439 0.0151515 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 57 81669 +en ||| recognized on an ||| 1 0.336652 1.22445e-05 7.63594e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| recognized on ||| 1 0.336652 1.22445e-05 2.20603e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| record at ||| 1 0.351161 1.22445e-05 6.17378e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| recorded in ||| 0.0526316 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 19 81669 +en ||| reduced by ||| 0.0833333 0.065573 1.22445e-05 8.86095e-07 2.718 ||| 0-1 ||| 12 81669 +en ||| reduced to ||| 0.0185185 0.0189899 1.22445e-05 1.23901e-06 2.718 ||| 0-1 ||| 54 81669 +en ||| reflection on ||| 0.111111 0.336652 1.22445e-05 1.32362e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| refused to ||| 0.00793651 0.0189899 1.22445e-05 5.63976e-07 2.718 ||| 0-1 ||| 126 81669 +en ||| regard on ||| 1 0.336652 1.22445e-05 8.37611e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| regarded in ||| 0.5 0.717907 1.22445e-05 3.79735e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| regarding those relationships ||| 0.5 0.102881 1.22445e-05 2.17468e-12 2.718 ||| 0-0 ||| 2 81669 +en ||| regarding those ||| 0.5 0.102881 1.22445e-05 1.11522e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| regarding ||| 0.0106952 0.102881 2.44891e-05 0.000223 2.718 ||| 0-0 ||| 187 81669 +en ||| regime in ||| 0.08 0.717907 2.44891e-05 3.4805e-05 2.718 ||| 0-1 ||| 25 81669 +en ||| regularly benefited in ||| 1 0.717907 1.22445e-05 5.76671e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| relative ||| 0.00395257 0.241192 2.44891e-05 0.0015881 2.718 ||| 0-0 ||| 506 81669 +en ||| relatively uneducated ||| 1 0.0038095 1.22445e-05 1.157e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| relatively ||| 0.00179211 0.0038095 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 558 81669 +en ||| relied on ||| 0.015625 0.336652 1.22445e-05 1.76482e-06 2.718 ||| 0-1 ||| 64 81669 +en ||| remain at ||| 0.0714286 0.351161 1.22445e-05 1.21063e-05 2.718 ||| 0-1 ||| 14 81669 +en ||| remain in ||| 0.0123457 0.717907 1.22445e-05 0.000161448 2.718 ||| 0-1 ||| 81 81669 +en ||| remain ||| 0.00104822 0.0088915 1.22445e-05 0.0001338 2.718 ||| 0-0 ||| 954 81669 +en ||| remaining ||| 0.00561798 0.023166 1.22445e-05 5.35e-05 2.718 ||| 0-0 ||| 178 81669 +en ||| remains eager to ||| 0.333333 0.0189899 1.22445e-05 5.49538e-11 2.718 ||| 0-2 ||| 3 81669 +en ||| remains in ||| 0.0181818 0.717907 1.22445e-05 7.91643e-05 2.718 ||| 0-1 ||| 55 81669 +en ||| remains into ||| 1 0.414384 1.22445e-05 3.22239e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| remember things in ||| 0.333333 0.717907 1.22445e-05 2.83931e-09 2.718 ||| 0-2 ||| 3 81669 +en ||| repeated in ||| 0.142857 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| repetition in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| report ||| 0.00209205 0.0063694 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 478 81669 +en ||| reported from ||| 0.5 0.0190577 1.22445e-05 3.00344e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| reported in ||| 0.0952381 0.717907 2.44891e-05 5.06476e-05 2.718 ||| 0-1 ||| 21 81669 +en ||| represented in ||| 0.125 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| reputation in ||| 0.1 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| requests to ||| 0.333333 0.0189899 1.22445e-05 3.38385e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| require adequate economic incentives . in ||| 1 0.717907 1.22445e-05 3.03184e-20 2.718 ||| 0-5 ||| 1 81669 +en ||| requires taking into account ocean currents , ||| 1 0.414384 1.22445e-05 1.2657e-24 2.718 ||| 0-2 ||| 1 81669 +en ||| requires taking into account ocean currents ||| 1 0.414384 1.22445e-05 6.19621e-24 2.718 ||| 0-2 ||| 1 81669 +en ||| requires taking into account ocean ||| 1 0.414384 1.22445e-05 9.53263e-19 2.718 ||| 0-2 ||| 1 81669 +en ||| requires taking into account ||| 1 0.414384 1.22445e-05 7.33279e-14 2.718 ||| 0-2 ||| 1 81669 +en ||| requires taking into ||| 1 0.414384 1.22445e-05 6.2727e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| research into ||| 0.0555556 0.414384 1.22445e-05 1.54572e-06 2.718 ||| 0-1 ||| 18 81669 +en ||| reside in ||| 0.142857 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| resonates strongly in ||| 1 0.717907 1.22445e-05 6.58419e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| resource-poor ||| 0.0666667 0.111111 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 15 81669 +en ||| responding ||| 0.0133333 0.0606061 1.22445e-05 5.35e-05 2.718 ||| 0-0 ||| 75 81669 +en ||| response in ||| 1 0.717907 2.44891e-05 4.74791e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| responses in ||| 1 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| responses to ||| 0.0357143 0.0189899 1.22445e-05 4.51181e-07 2.718 ||| 0-1 ||| 28 81669 +en ||| rest of ||| 0.00381679 0.0080355 1.22445e-05 1.03494e-06 2.718 ||| 0-1 ||| 262 81669 +en ||| restored to ||| 0.0714286 0.0189899 1.22445e-05 5.63976e-07 2.718 ||| 0-1 ||| 14 81669 +en ||| result in ||| 0.0434783 0.717907 6.12227e-05 0.00020259 2.718 ||| 0-1 ||| 115 81669 +en ||| result of ||| 0.00396825 0.0080355 1.22445e-05 3.31117e-06 2.718 ||| 0-1 ||| 252 81669 +en ||| resulted in ||| 0.010101 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-1 ||| 99 81669 +en ||| resulting in ||| 0.0114943 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 87 81669 +en ||| retire with their ill-gotten gains , ||| 0.25 0.0232439 1.22445e-05 3.23325e-20 2.718 ||| 0-1 ||| 4 81669 +en ||| retire with their ill-gotten gains ||| 0.25 0.0232439 1.22445e-05 1.58283e-19 2.718 ||| 0-1 ||| 4 81669 +en ||| retire with their ill-gotten ||| 0.25 0.0232439 1.22445e-05 1.354e-15 2.718 ||| 0-1 ||| 4 81669 +en ||| retire with their ||| 0.25 0.0232439 1.22445e-05 1.04154e-10 2.718 ||| 0-1 ||| 4 81669 +en ||| retire with ||| 0.25 0.0232439 1.22445e-05 5.81087e-08 2.718 ||| 0-1 ||| 4 81669 +en ||| return in the ||| 0.25 0.717907 1.22445e-05 5.55011e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| return in ||| 0.25 0.717907 2.44891e-05 0.000104464 2.718 ||| 0-1 ||| 8 81669 +en ||| returns on ||| 0.0434783 0.336652 1.22445e-05 8.8241e-07 2.718 ||| 0-1 ||| 23 81669 +en ||| revealed by ||| 0.125 0.065573 1.22445e-05 8.86095e-07 2.718 ||| 0-1 ||| 8 81669 +en ||| revealed in ||| 0.111111 0.717907 1.22445e-05 3.4805e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| revealed to ||| 0.25 0.0189899 1.22445e-05 1.23901e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| revenues should be ||| 0.5 0.0021256 1.22445e-05 1.55421e-11 2.718 ||| 0-1 ||| 2 81669 +en ||| revenues should ||| 0.5 0.0021256 1.22445e-05 1.508e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| reverse them at ||| 0.5 0.351161 1.22445e-05 4.17289e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| review on ||| 1 0.336652 1.22445e-05 2.20603e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| revised ||| 0.0277778 0.0243902 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 36 81669 +en ||| rewarding in ||| 0.2 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| rich in ||| 0.0645161 0.717907 2.44891e-05 4.1142e-05 2.718 ||| 0-1 ||| 31 81669 +en ||| rig in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| rigged ||| 0.0588235 0.0384615 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 17 81669 +en ||| right into ||| 0.333333 0.232776 1.22445e-05 1.82351e-05 2.718 ||| 0-0 0-1 ||| 3 81669 +en ||| right thing ||| 0.030303 0.0511674 1.22445e-05 3.75963e-07 2.718 ||| 0-0 ||| 33 81669 +en ||| right ||| 0.00692964 0.0511674 0.000159179 0.000919 2.718 ||| 0-0 ||| 1876 81669 +en ||| rights : we make them . ||| 1 2e-05 1.22445e-05 1.12399e-20 2.718 ||| 0-5 ||| 1 81669 +en ||| rights in ||| 0.0769231 0.717907 1.22445e-05 8.23328e-05 2.718 ||| 0-1 ||| 13 81669 +en ||| rigorously in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| ring in ||| 1 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| rise during ||| 1 0.0947187 1.22445e-05 4.58854e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| rise in ||| 0.0153846 0.717907 3.67336e-05 0.000151943 2.718 ||| 0-1 ||| 195 81669 +en ||| risen by ||| 0.142857 0.065573 1.22445e-05 2.42001e-07 2.718 ||| 0-1 ||| 7 81669 +en ||| rising ||| 0.00461361 0.11453 4.89782e-05 0.0011955 2.718 ||| 0-0 ||| 867 81669 +en ||| risking them ||| 0.5 0.0185185 1.22445e-05 1.73977e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| risking ||| 0.0140845 0.0185185 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 71 81669 +en ||| risks in ||| 0.0714286 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 14 81669 +en ||| road in ||| 0.333333 0.717907 1.22445e-05 6.96587e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| role in ||| 0.0280899 0.717907 6.12227e-05 0.000120306 2.718 ||| 0-1 ||| 178 81669 +en ||| root itself in ||| 1 0.717907 1.22445e-05 3.19435e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| rosy when ||| 1 0.0709982 1.22445e-05 5.05687e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| roughly equal in ||| 1 0.717907 1.22445e-05 2.1603e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| round in ||| 0.4 0.717907 2.44891e-05 4.1142e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| row ||| 0.0357143 0.05 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 28 81669 +en ||| rule among ||| 0.333333 0.0289855 1.22445e-05 1.05704e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| rule in ||| 0.142857 0.717907 2.44891e-05 0.000120306 2.718 ||| 0-1 ||| 14 81669 +en ||| rule of law . ||| 0.0136986 0.0080355 1.22445e-05 1.40947e-12 2.718 ||| 0-1 ||| 73 81669 +en ||| rule of law ||| 0.0031348 0.0080355 1.22445e-05 3.06547e-10 2.718 ||| 0-1 ||| 319 81669 +en ||| rule of ||| 0.00444444 0.0080355 2.44891e-05 1.9663e-06 2.718 ||| 0-1 ||| 450 81669 +en ||| ruled in ||| 0.125 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| ruled out ||| 0.0454545 0.0096316 1.22445e-05 2.0843e-08 2.718 ||| 0-1 ||| 22 81669 +en ||| ruler in place of his incapacitated ||| 1 0.717907 1.22445e-05 2.83329e-18 2.718 ||| 0-1 ||| 1 81669 +en ||| ruler in place of his ||| 1 0.717907 1.22445e-05 4.3589e-13 2.718 ||| 0-1 ||| 1 81669 +en ||| ruler in place of ||| 1 0.717907 1.22445e-05 4.35846e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| ruler in place ||| 1 0.717907 1.22445e-05 1.61328e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| ruler in ||| 0.333333 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| ruling couples " -- in Argentina and ||| 0.5 0.717907 1.22445e-05 5.32041e-21 2.718 ||| 0-4 ||| 2 81669 +en ||| ruling couples " -- in Argentina ||| 0.5 0.717907 1.22445e-05 6.336e-19 2.718 ||| 0-4 ||| 2 81669 +en ||| ruling couples " -- in ||| 0.5 0.717907 1.22445e-05 1.08493e-14 2.718 ||| 0-4 ||| 2 81669 +en ||| ruling in ||| 0.25 0.717907 1.22445e-05 6.64902e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| rulings in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| run counter ||| 0.125 0.009816 1.22445e-05 3.2487e-09 2.718 ||| 0-0 ||| 8 81669 +en ||| run for ||| 0.0294118 0.0255404 1.22445e-05 3.2839e-06 2.718 ||| 0-1 ||| 34 81669 +en ||| run in ||| 0.142857 0.717907 1.22445e-05 0.000205759 2.718 ||| 0-1 ||| 7 81669 +en ||| run ||| 0.0078125 0.009816 6.12227e-05 7.14e-05 2.718 ||| 0-0 ||| 640 81669 +en ||| running in ||| 0.125 0.717907 1.22445e-05 0.000126643 2.718 ||| 0-1 ||| 8 81669 +en ||| running ||| 0.0103627 0.0151057 2.44891e-05 4.46e-05 2.718 ||| 0-0 ||| 193 81669 +en ||| runs ||| 0.0183486 0.044586 2.44891e-05 6.25e-05 2.718 ||| 0-0 ||| 109 81669 +en ||| safe should ||| 0.166667 0.0021256 1.22445e-05 1.65764e-08 2.718 ||| 0-1 ||| 6 81669 +en ||| safely ||| 0.0294118 0.0285714 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 34 81669 +en ||| said in ||| 0.0555556 0.717907 1.22445e-05 0.000129812 2.718 ||| 0-1 ||| 18 81669 +en ||| said ||| 0.0012837 0.0020747 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 779 81669 +en ||| sales in ||| 0.142857 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| salient in ||| 0.333333 0.717907 2.44891e-05 6.33704e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| same in ||| 0.0625 0.717907 1.22445e-05 0.000199422 2.718 ||| 0-1 ||| 16 81669 +en ||| same thing in 1933 . ||| 0.5 0.717907 1.22445e-05 2.43823e-15 2.718 ||| 0-2 ||| 2 81669 +en ||| same thing in 1933 ||| 0.5 0.717907 1.22445e-05 5.30293e-13 2.718 ||| 0-2 ||| 2 81669 +en ||| same thing in ||| 0.333333 0.717907 1.22445e-05 8.15835e-08 2.718 ||| 0-2 ||| 3 81669 +en ||| sanctioned ||| 0.0588235 0.0384615 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 17 81669 +en ||| sanctions worked in ||| 1 0.717907 1.22445e-05 9.87311e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| sat in ||| 0.2 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| save in ||| 0.111111 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| savings in ||| 0.111111 0.717907 2.44891e-05 1.26741e-05 2.718 ||| 0-1 ||| 18 81669 +en ||| saw , in ||| 0.5 0.717907 1.22445e-05 1.03458e-05 2.718 ||| 0-2 ||| 2 81669 +en ||| saw in ||| 0.111111 0.717907 1.22445e-05 5.06476e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| say in ||| 0.0526316 0.717907 2.44891e-05 0.000196253 2.718 ||| 0-1 ||| 38 81669 +en ||| say yes in ||| 1 0.717907 1.22445e-05 7.65388e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| scandals in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| scattered ||| 0.0833333 0.08 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 12 81669 +en ||| schools , companies , and shopping centers ||| 1 0.0625 1.22445e-05 1.36891e-22 2.718 ||| 0-5 ||| 1 81669 +en ||| schools , companies , and shopping ||| 1 0.0625 1.22445e-05 2.10601e-17 2.718 ||| 0-5 ||| 1 81669 +en ||| sciences during ||| 1 0.0947187 1.22445e-05 9.56865e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| score badly on ||| 1 0.336652 1.22445e-05 1.60422e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| scrutinized by ||| 0.333333 0.065573 1.22445e-05 8.06669e-08 2.718 ||| 0-1 ||| 3 81669 +en ||| secession in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| second in ||| 0.111111 0.717907 1.22445e-05 7.28272e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| second only to ||| 0.0714286 0.119291 1.22445e-05 1.77195e-07 2.718 ||| 0-0 ||| 14 81669 +en ||| second only ||| 0.0454545 0.119291 1.22445e-05 2.14807e-06 2.718 ||| 0-0 ||| 22 81669 +en ||| second thoughts about taking part in ||| 0.25 0.717907 1.22445e-05 3.45543e-19 2.718 ||| 0-5 ||| 4 81669 +en ||| second ||| 0.00139762 0.119291 2.44891e-05 0.0019807 2.718 ||| 0-0 ||| 1431 81669 +en ||| secret of ||| 0.111111 0.0080355 1.22445e-05 2.07147e-07 2.718 ||| 0-1 ||| 9 81669 +en ||| secretly ||| 0.037037 0.363636 1.22445e-05 0.0001428 2.718 ||| 0-0 ||| 27 81669 +en ||| sectarian divide during his 40 years in ||| 0.333333 0.717907 1.22445e-05 1.55501e-25 2.718 ||| 0-6 ||| 3 81669 +en ||| secured debt-holders in ||| 0.333333 0.717907 1.22445e-05 1.44168e-10 2.718 ||| 0-2 ||| 3 81669 +en ||| see eye to eye on ||| 0.333333 0.336652 1.22445e-05 1.22494e-13 2.718 ||| 0-4 ||| 3 81669 +en ||| see through them and ||| 1 0.021007 1.22445e-05 5.69286e-12 2.718 ||| 0-1 ||| 1 81669 +en ||| see through them ||| 1 0.021007 1.22445e-05 6.77955e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| see through ||| 0.333333 0.021007 1.22445e-05 3.46816e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| seeing double-digit ||| 1 0.0666667 1.22445e-05 1.2194e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| seeing ||| 0.00680272 0.0231214 1.22445e-05 3.57e-05 2.718 ||| 0-0 ||| 147 81669 +en ||| seeking ||| 0.0133929 0.0324324 3.67336e-05 0.0001071 2.718 ||| 0-0 ||| 224 81669 +en ||| seems to ||| 0.002079 0.0189899 1.22445e-05 3.60597e-06 2.718 ||| 0-1 ||| 481 81669 +en ||| seen in ||| 0.0543478 0.717907 6.12227e-05 0.000177291 2.718 ||| 0-1 ||| 92 81669 +en ||| seen marching through ||| 1 0.021007 1.22445e-05 2.65767e-12 2.718 ||| 0-2 ||| 1 81669 +en ||| seismic event ||| 0.2 0.0088106 1.22445e-05 1.157e-10 2.718 ||| 0-1 ||| 5 81669 +en ||| seized during ||| 1 0.0947187 1.22445e-05 2.87059e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| self-fulfilling ||| 0.117647 0.0285714 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 17 81669 +en ||| self-interest in ||| 0.25 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| self-interested ||| 0.03125 0.157895 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 32 81669 +en ||| self-serving displays ||| 1 0.0714286 1.22445e-05 1.157e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| self-serving ||| 0.047619 0.0714286 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 21 81669 +en ||| sense in ||| 0.0833333 0.717907 1.22445e-05 0.000107632 2.718 ||| 0-1 ||| 12 81669 +en ||| senses in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| sensing devices in ||| 1 0.717907 1.22445e-05 4.11908e-11 2.718 ||| 0-2 ||| 1 81669 +en ||| sensitive to ||| 0.0357143 0.0189899 1.22445e-05 3.38385e-07 2.718 ||| 0-1 ||| 28 81669 +en ||| sent into a ||| 1 0.414384 2.44891e-05 4.66205e-08 2.718 ||| 0-1 ||| 2 81669 +en ||| sent into ||| 0.285714 0.414384 2.44891e-05 1.15879e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| sentiment in ||| 0.222222 0.717907 2.44891e-05 9.50556e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| serious about ||| 0.0185185 0.0371521 1.22445e-05 5.09837e-07 2.718 ||| 0-1 ||| 54 81669 +en ||| serious anxiety ||| 0.25 0.0114943 1.22445e-05 1.84942e-09 2.718 ||| 0-1 ||| 4 81669 +en ||| serious as in ||| 0.333333 0.717907 1.22445e-05 8.56501e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| serious consideration to ||| 0.333333 0.0189899 1.22445e-05 1.87511e-10 2.718 ||| 0-2 ||| 3 81669 +en ||| serious ||| 0.000918274 0.0009251 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 1089 81669 +en ||| seriously , ||| 0.0416667 0.261242 1.22445e-05 0.000222349 2.718 ||| 0-0 ||| 24 81669 +en ||| seriously ||| 0.00638978 0.261242 2.44891e-05 0.0010885 2.718 ||| 0-0 ||| 313 81669 +en ||| serve in ||| 0.142857 0.717907 1.22445e-05 0.000101295 2.718 ||| 0-1 ||| 7 81669 +en ||| serve on ||| 0.4 0.336652 2.44891e-05 1.4105e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| serve out ||| 0.25 0.0096316 1.22445e-05 7.41638e-08 2.718 ||| 0-1 ||| 4 81669 +en ||| served by ||| 0.0625 0.065573 1.22445e-05 1.3701e-06 2.718 ||| 0-1 ||| 16 81669 +en ||| served on ||| 0.5 0.336652 1.22445e-05 7.4937e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| service on ||| 1 0.336652 1.22445e-05 8.37611e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| set against ||| 0.117647 0.0888521 2.44891e-05 2.42551e-06 2.718 ||| 0-1 ||| 17 81669 +en ||| set by ||| 0.02 0.065573 1.22445e-05 1.0478e-05 2.718 ||| 0-1 ||| 50 81669 +en ||| set in ||| 0.0638298 0.717907 3.67336e-05 0.000411567 2.718 ||| 0-1 ||| 47 81669 +en ||| set of ||| 0.00537634 0.0080355 1.22445e-05 6.72671e-06 2.718 ||| 0-1 ||| 186 81669 +en ||| set the ||| 0.0128205 0.003581 1.22445e-05 1.89673e-06 2.718 ||| 0-0 ||| 78 81669 +en ||| set to ||| 0.0277778 0.0189899 2.44891e-05 1.46512e-05 2.718 ||| 0-1 ||| 72 81669 +en ||| set up in ||| 0.142857 0.717907 1.22445e-05 1.28561e-06 2.718 ||| 0-2 ||| 7 81669 +en ||| set ||| 0.00423131 0.003581 3.67336e-05 3.57e-05 2.718 ||| 0-0 ||| 709 81669 +en ||| setting up a re-bar plant in the ||| 1 0.717907 1.22445e-05 6.7877e-20 2.718 ||| 0-5 ||| 1 81669 +en ||| setting up a re-bar plant in ||| 1 0.717907 1.22445e-05 1.27757e-18 2.718 ||| 0-5 ||| 1 81669 +en ||| settled in ||| 0.142857 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| settlements ||| 0.00689655 0.0561224 1.22445e-05 9.81e-05 2.718 ||| 0-0 ||| 145 81669 +en ||| sex-crime ring in ||| 1 0.717907 1.22445e-05 8.23816e-11 2.718 ||| 0-2 ||| 1 81669 +en ||| shape , in ||| 1 0.717907 1.22445e-05 5.17789e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| share in ||| 0.08 0.717907 2.44891e-05 7.91643e-05 2.718 ||| 0-1 ||| 25 81669 +en ||| share of ||| 0.00420168 0.0037783 1.22445e-05 7.24031e-07 2.718 ||| 0-0 ||| 238 81669 +en ||| share ||| 0.00122399 0.0037783 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 817 81669 +en ||| shared in ||| 0.166667 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| shareholders in ||| 0.333333 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| shares in ||| 0.0434783 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 23 81669 +en ||| she stood ||| 0.25 0.0042614 1.22445e-05 1.91352e-09 2.718 ||| 0-0 ||| 4 81669 +en ||| she was educated at ||| 1 0.351161 1.22445e-05 4.40306e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| she ||| 0.00684932 0.0042614 2.44891e-05 2.68e-05 2.718 ||| 0-0 ||| 292 81669 +en ||| shift in ||| 0.015625 0.717907 1.22445e-05 8.54526e-05 2.718 ||| 0-1 ||| 64 81669 +en ||| shop in ||| 0.666667 0.717907 2.44891e-05 9.50556e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| shopping centers ||| 0.333333 0.0625 1.22445e-05 1.157e-10 2.718 ||| 0-0 ||| 3 81669 +en ||| shopping ||| 0.0384615 0.0625 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 26 81669 +en ||| short notice , at ||| 0.5 0.351161 1.22445e-05 2.14635e-10 2.718 ||| 0-3 ||| 2 81669 +en ||| short of ||| 0.00970874 0.0080355 1.22445e-05 3.20759e-06 2.718 ||| 0-1 ||| 103 81669 +en ||| shortage . " In ||| 1 0.0917031 1.22445e-05 2.79274e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| shot in ||| 0.166667 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| should be ||| 0.000681663 0.0021256 1.22445e-05 1.19554e-06 2.718 ||| 0-0 ||| 1467 81669 +en ||| should have risen by ||| 0.5 0.065573 1.22445e-05 1.53355e-12 2.718 ||| 0-3 ||| 2 81669 +en ||| should have ||| 0.00460829 0.0021256 1.22445e-05 5.98896e-07 2.718 ||| 0-0 ||| 217 81669 +en ||| should ||| 0.00164677 0.0021256 9.79564e-05 0.000116 2.718 ||| 0-0 ||| 4858 81669 +en ||| show host at ||| 0.5 0.351161 1.22445e-05 7.16679e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| show modeled on ||| 1 0.336652 1.22445e-05 8.88146e-11 2.718 ||| 0-2 ||| 1 81669 +en ||| show up in ||| 1 0.717907 1.22445e-05 3.06518e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| showing in ||| 0.333333 0.717907 2.44891e-05 6.01532e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| showing promise in ||| 0.166667 0.717907 1.22445e-05 3.90394e-09 2.718 ||| 0-2 ||| 6 81669 +en ||| shows itself in ||| 1 0.717907 1.22445e-05 3.65118e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| shut in ||| 1 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| side in ||| 0.285714 0.717907 2.44891e-05 0.000145606 2.718 ||| 0-1 ||| 7 81669 +en ||| sides on ||| 0.333333 0.336652 1.22445e-05 8.81731e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| sign , by ||| 1 0.065573 1.22445e-05 2.63393e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| sign off on ||| 0.5 0.336652 1.22445e-05 8.10684e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| sign on ||| 0.142857 0.336652 1.22445e-05 7.05249e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| significantly heightened ||| 0.111111 0.0595855 1.22445e-05 4.0014e-09 2.718 ||| 0-0 ||| 9 81669 +en ||| significantly ||| 0.00318471 0.0595855 1.22445e-05 0.0002052 2.718 ||| 0-0 ||| 314 81669 +en ||| similar ||| 0.00114548 0.0012048 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 873 81669 +en ||| simply ||| 0.000849618 0.024024 1.22445e-05 0.0002141 2.718 ||| 0-0 ||| 1177 81669 +en ||| since in ||| 1 0.717907 1.22445e-05 5.06476e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| since ||| 0.00113679 0.0019614 3.67336e-05 5.35e-05 2.718 ||| 0-0 ||| 2639 81669 +en ||| sinking ||| 0.0232558 0.0789474 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 43 81669 +en ||| sit at ||| 0.5 0.351161 1.22445e-05 2.84747e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| sit in ||| 0.1 0.717907 1.22445e-05 3.79735e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| sit on ||| 0.142857 0.336652 2.44891e-05 5.28767e-06 2.718 ||| 0-1 ||| 14 81669 +en ||| site in ||| 0.4 0.717907 2.44891e-05 1.90111e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| sitting in ||| 0.111111 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| sitting still on ||| 0.166667 0.336652 1.22445e-05 1.63312e-09 2.718 ||| 0-2 ||| 6 81669 +en ||| sitting ||| 0.0232558 0.0641026 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 43 81669 +en ||| slashed by ||| 0.333333 0.065573 1.22445e-05 1.61334e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| slightly in ||| 0.166667 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| slippery ||| 0.0416667 0.05 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 24 81669 +en ||| slow to ||| 0.0434783 0.0189899 1.22445e-05 6.76771e-07 2.718 ||| 0-1 ||| 23 81669 +en ||| slowdown in ||| 0.0294118 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 34 81669 +en ||| smashed in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| smoking gun " in ||| 1 0.717907 1.22445e-05 4.11422e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| so central to ||| 0.2 0.0189899 1.22445e-05 3.30048e-09 2.718 ||| 0-2 ||| 5 81669 +en ||| so for ||| 0.2 0.0255404 1.22445e-05 1.7532e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| so in ||| 0.2 0.717907 7.34673e-05 0.0010985 2.718 ||| 0-1 ||| 30 81669 +en ||| so much as a ||| 0.2 0.0296498 1.22445e-05 9.39925e-10 2.718 ||| 0-2 ||| 5 81669 +en ||| so much as to root itself in ||| 1 0.717907 1.22445e-05 7.23863e-17 2.718 ||| 0-6 ||| 1 81669 +en ||| so much as ||| 0.0833333 0.0296498 1.22445e-05 2.33626e-08 2.718 ||| 0-2 ||| 12 81669 +en ||| so since ||| 0.166667 0.0019614 1.22445e-05 1.20562e-07 2.718 ||| 0-1 ||| 6 81669 +en ||| so ||| 0.000716204 0.0025065 4.89782e-05 0.0002498 2.718 ||| 0-0 ||| 5585 81669 +en ||| soaring volume ||| 1 0.0451977 1.22445e-05 9.282e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| soaring ||| 0.0106383 0.0451977 1.22445e-05 7.14e-05 2.718 ||| 0-0 ||| 94 81669 +en ||| soccer on ||| 0.5 0.336652 1.22445e-05 8.8241e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| social stability in ||| 0.5 0.717907 1.22445e-05 1.4816e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| soft in ||| 1 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| sold in ||| 0.142857 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| some in ||| 0.0217391 0.717907 1.22445e-05 0.000348245 2.718 ||| 0-1 ||| 46 81669 +en ||| some of ||| 0.00115473 0.0080355 1.22445e-05 5.69177e-06 2.718 ||| 0-1 ||| 866 81669 +en ||| some say in ||| 1 0.717907 1.22445e-05 1.40203e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| some time in ||| 0.166667 0.717907 1.22445e-05 3.25679e-07 2.718 ||| 0-2 ||| 6 81669 +en ||| some ||| 0.000553812 0.0013799 3.67336e-05 6.25e-05 2.718 ||| 0-0 ||| 5417 81669 +en ||| sometime in ||| 0.111111 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| sometime soon , ||| 1 0.0537353 1.22445e-05 1.94278e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| sometime soon ||| 1 0.0537353 1.22445e-05 9.5108e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| sometimes in ||| 0.25 0.717907 1.22445e-05 2.21796e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| sometimes ||| 0.00324149 0.0395939 2.44891e-05 0.000348 2.718 ||| 0-0 ||| 617 81669 +en ||| somewhat ||| 0.00680272 0.025641 1.22445e-05 5.35e-05 2.718 ||| 0-0 ||| 147 81669 +en ||| somewhere ||| 0.0512821 0.221154 2.44891e-05 0.0002052 2.718 ||| 0-0 ||| 39 81669 +en ||| soon , ||| 0.025974 0.0537353 2.44891e-05 7.47222e-05 2.718 ||| 0-0 ||| 77 81669 +en ||| soon as ||| 0.04 0.0537353 2.44891e-05 3.09302e-06 2.718 ||| 0-0 ||| 50 81669 +en ||| soon to ||| 0.05 0.0537353 1.22445e-05 3.01749e-05 2.718 ||| 0-0 ||| 20 81669 +en ||| soon ||| 0.0129496 0.0537353 0.000110201 0.0003658 2.718 ||| 0-0 ||| 695 81669 +en ||| sorts is mostly aimed ||| 0.5 0.117834 1.22445e-05 3.30738e-14 2.718 ||| 0-2 ||| 2 81669 +en ||| sorts is mostly ||| 0.5 0.117834 1.22445e-05 2.82924e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| sought in that it could ||| 0.5 0.717907 1.22445e-05 1.63441e-11 2.718 ||| 0-1 ||| 2 81669 +en ||| sought in that it ||| 0.5 0.717907 1.22445e-05 1.44638e-08 2.718 ||| 0-1 ||| 2 81669 +en ||| sought in that ||| 0.5 0.717907 1.22445e-05 5.43212e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| sought in ||| 0.4 0.717907 4.89782e-05 6.64902e-05 2.718 ||| 0-1 ||| 10 81669 +en ||| speak up in ||| 0.333333 0.717907 1.22445e-05 1.38413e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| speak up ||| 0.153846 0.0107098 2.44891e-05 3.48692e-08 2.718 ||| 0-1 ||| 13 81669 +en ||| speaking at ||| 0.5 0.351161 1.22445e-05 1.18797e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| speaking on ||| 0.333333 0.193836 1.22445e-05 3.02735e-06 2.718 ||| 0-0 0-1 ||| 3 81669 +en ||| speaking out ||| 0.142857 0.0510204 1.22445e-05 1.97828e-07 2.718 ||| 0-0 ||| 7 81669 +en ||| speaking ||| 0.0151515 0.0510204 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 66 81669 +en ||| special concern to ||| 1 0.0189899 1.22445e-05 1.04573e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| specific at ||| 1 0.351161 1.22445e-05 2.37228e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| specifically in ||| 0.333333 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| specifically targeted ||| 0.333333 0.122449 1.22445e-05 6.25464e-09 2.718 ||| 0-0 ||| 3 81669 +en ||| specifically ||| 0.0121951 0.122449 1.22445e-05 0.0001071 2.718 ||| 0-0 ||| 82 81669 +en ||| spectacularly in ||| 0.111111 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 9 81669 +en ||| spending benefits ||| 1 0.0204646 1.22445e-05 3.42974e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| spending ||| 0.00205058 0.0204646 3.67336e-05 0.0003301 2.718 ||| 0-0 ||| 1463 81669 +en ||| spent fuel in ||| 0.2 0.717907 1.22445e-05 1.60454e-09 2.718 ||| 0-2 ||| 5 81669 +en ||| spent in ||| 0.285714 0.717907 2.44891e-05 4.1142e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| spent on ||| 0.0192308 0.336652 1.22445e-05 5.72888e-06 2.718 ||| 0-1 ||| 52 81669 +en ||| split roughly equally ||| 0.111111 0.030303 1.22445e-05 2.03344e-13 2.718 ||| 0-0 ||| 9 81669 +en ||| split roughly ||| 0.111111 0.030303 1.22445e-05 2.61032e-09 2.718 ||| 0-0 ||| 9 81669 +en ||| split ||| 0.0106383 0.030303 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 94 81669 +en ||| spoken in ||| 0.5 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| spread across ||| 0.0666667 0.28681 1.22445e-05 3.25004e-07 2.718 ||| 0-1 ||| 15 81669 +en ||| spread by news ||| 1 0.065573 1.22445e-05 1.09877e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| spread by ||| 0.2 0.065573 1.22445e-05 1.20876e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| spreading in ||| 0.333333 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| squarely in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| stability in ||| 0.010989 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 91 81669 +en ||| stage at ||| 0.25 0.351161 1.22445e-05 1.42556e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| staged ||| 0.0434783 0.0526316 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 23 81669 +en ||| stake China really has ||| 1 0.169014 1.22445e-05 2.52368e-13 2.718 ||| 0-2 ||| 1 81669 +en ||| stake China really ||| 1 0.169014 1.22445e-05 7.60466e-11 2.718 ||| 0-2 ||| 1 81669 +en ||| stake in ||| 0.0483871 0.717907 3.67336e-05 3.79735e-05 2.718 ||| 0-1 ||| 62 81669 +en ||| stakes ||| 0.0144928 0.167421 1.22445e-05 0.0003301 2.718 ||| 0-0 ||| 69 81669 +en ||| stalled in ||| 0.125 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 8 81669 +en ||| stance of ||| 0.25 0.0080355 1.22445e-05 2.58934e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| stand at ||| 0.125 0.351161 1.22445e-05 1.04432e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| stand in ||| 0.0689655 0.717907 2.44891e-05 0.000139269 2.718 ||| 0-1 ||| 29 81669 +en ||| stand on ||| 0.0645161 0.336652 2.44891e-05 1.93927e-05 2.718 ||| 0-1 ||| 31 81669 +en ||| stand out in ||| 0.5 0.717907 1.22445e-05 6.1774e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| standard bearer in ||| 0.5 0.717907 1.22445e-05 3.29209e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| standards for ||| 0.0833333 0.0255404 1.22445e-05 5.04916e-07 2.718 ||| 0-1 ||| 12 81669 +en ||| stands for ||| 0.037037 0.0255404 1.22445e-05 1.21289e-06 2.718 ||| 0-1 ||| 27 81669 +en ||| stands on ||| 0.125 0.336652 1.22445e-05 1.05821e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| staple ||| 0.0434783 0.0909091 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 23 81669 +en ||| start-up ||| 0.0833333 0.0714286 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 12 81669 +en ||| started in ||| 0.0333333 0.717907 1.22445e-05 4.1142e-05 2.718 ||| 0-1 ||| 30 81669 +en ||| starts to brew ||| 0.333333 0.0189899 1.22445e-05 7.33168e-12 2.718 ||| 0-1 ||| 3 81669 +en ||| starts to ||| 0.0333333 0.0189899 1.22445e-05 5.63976e-07 2.718 ||| 0-1 ||| 30 81669 +en ||| state in ||| 0.0333333 0.717907 1.22445e-05 0.000170954 2.718 ||| 0-1 ||| 30 81669 +en ||| state ||| 0.000345781 0.0003791 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 2892 81669 +en ||| station ||| 0.0123457 0.037037 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 81 81669 +en ||| stationed in ||| 0.125 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 8 81669 +en ||| stay in ||| 0.025 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 40 81669 +en ||| stays ||| 0.0322581 0.117647 1.22445e-05 3.57e-05 2.718 ||| 0-0 ||| 31 81669 +en ||| steadily declining ||| 0.0909091 0.153623 1.22445e-05 1.22954e-08 2.718 ||| 0-1 ||| 11 81669 +en ||| step into ||| 0.1 0.414384 1.22445e-05 4.89708e-06 2.718 ||| 0-1 ||| 10 81669 +en ||| stepped in ||| 0.08 0.717907 2.44891e-05 1.90111e-05 2.718 ||| 0-1 ||| 25 81669 +en ||| stiffen ||| 0.166667 0.25 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 6 81669 +en ||| still down ||| 0.333333 0.0242537 1.22445e-05 2.57624e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| still on ||| 0.142857 0.336652 1.22445e-05 5.02499e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| still out on ||| 0.5 0.336652 1.22445e-05 2.22888e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| still under ||| 1 0.0957592 1.22445e-05 1.38703e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| still vilify as ||| 0.5 0.0296498 1.22445e-05 3.46027e-11 2.718 ||| 0-2 ||| 2 81669 +en ||| stock exchange in ||| 0.25 0.717907 1.22445e-05 1.35695e-08 2.718 ||| 0-2 ||| 4 81669 +en ||| stock in ||| 0.333333 0.717907 1.22445e-05 9.49581e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| stolen from ||| 1 0.0190577 1.22445e-05 3.75791e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| stood in a ||| 1 0.717907 1.22445e-05 1.40027e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| stood in stark ||| 0.2 0.717907 1.22445e-05 6.78697e-10 2.718 ||| 0-1 ||| 5 81669 +en ||| stood in ||| 0.222222 0.717907 2.44891e-05 3.4805e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| stories ||| 0.00980392 0.0114943 2.44891e-05 1.78e-05 2.718 ||| 0-0 ||| 204 81669 +en ||| strategically ||| 0.0172414 0.015625 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 58 81669 +en ||| strength to strength ||| 0.166667 0.0189899 1.22445e-05 5.91838e-11 2.718 ||| 0-1 ||| 6 81669 +en ||| strength to ||| 0.0625 0.0189899 1.22445e-05 1.01342e-06 2.718 ||| 0-1 ||| 16 81669 +en ||| stress on ||| 0.153846 0.336652 2.44891e-05 1.76482e-06 2.718 ||| 0-1 ||| 13 81669 +en ||| strictly demanded by the situation ||| 0.5 0.065573 1.22445e-05 9.03983e-18 2.718 ||| 0-2 ||| 2 81669 +en ||| strictly demanded by the ||| 0.5 0.065573 1.22445e-05 2.78149e-13 2.718 ||| 0-2 ||| 2 81669 +en ||| strictly demanded by ||| 0.5 0.065573 1.22445e-05 5.23529e-12 2.718 ||| 0-2 ||| 2 81669 +en ||| strictly ||| 0.0408163 0.0923077 2.44891e-05 5.35e-05 2.718 ||| 0-0 ||| 49 81669 +en ||| stronger opportunity to ||| 0.2 0.0189899 1.22445e-05 2.92816e-11 2.718 ||| 0-2 ||| 5 81669 +en ||| strongly in ||| 0.285714 0.717907 2.44891e-05 5.06476e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| struck ||| 0.0103093 0.0162602 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 97 81669 +en ||| struggling ||| 0.00854701 0.104938 1.22445e-05 0.0001517 2.718 ||| 0-0 ||| 117 81669 +en ||| stuck in ||| 0.037037 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 27 81669 +en ||| student in ||| 0.25 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| study ||| 0.00274725 0.0027624 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 364 81669 +en ||| stumbled into ||| 0.25 0.414384 1.22445e-05 1.28975e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| substantially in ||| 0.125 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| substantially to ||| 0.25 0.100457 1.22445e-05 1.61928e-05 2.718 ||| 0-0 ||| 4 81669 +en ||| substantially ||| 0.00847458 0.100457 1.22445e-05 0.0001963 2.718 ||| 0-0 ||| 118 81669 +en ||| succeed in obtaining ||| 1 0.717907 1.22445e-05 6.17228e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| succeed in ||| 0.0454545 0.717907 2.44891e-05 4.74791e-05 2.718 ||| 0-1 ||| 44 81669 +en ||| succeeded in ||| 0.0120482 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 83 81669 +en ||| success in ||| 0.0116279 0.717907 1.22445e-05 4.43106e-05 2.718 ||| 0-1 ||| 86 81669 +en ||| successful at ||| 0.0714286 0.351161 1.22445e-05 2.60988e-06 2.718 ||| 0-1 ||| 14 81669 +en ||| successful ||| 0.0015528 0.0030817 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 644 81669 +en ||| such thing in ||| 1 0.717907 1.22445e-05 4.22196e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| such trust ||| 0.5 0.13852 1.22445e-05 1.37887e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| such weapons in ||| 1 0.717907 1.22445e-05 6.69776e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| such ||| 0.000846561 0.0013816 4.89782e-05 8.92e-05 2.718 ||| 0-0 ||| 4725 81669 +en ||| sucked into ||| 0.5 0.414384 1.22445e-05 5.159e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| sufficient warrant ||| 0.333333 0.0307692 1.22445e-05 6.942e-10 2.718 ||| 0-1 ||| 3 81669 +en ||| summit ||| 0.00185874 0.0043384 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 538 81669 +en ||| supply at ||| 0.25 0.351161 1.22445e-05 3.56025e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| support China in taking ||| 0.333333 0.717907 1.22445e-05 4.75814e-11 2.718 ||| 0-2 ||| 3 81669 +en ||| support China in ||| 0.333333 0.717907 1.22445e-05 9.76831e-08 2.718 ||| 0-2 ||| 3 81669 +en ||| support in ||| 0.037037 0.717907 1.22445e-05 0.000139269 2.718 ||| 0-1 ||| 27 81669 +en ||| supported by serious ||| 1 0.065573 1.22445e-05 1.17338e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| supported by ||| 0.00719424 0.065573 1.22445e-05 5.64669e-07 2.718 ||| 0-1 ||| 139 81669 +en ||| supported ||| 0.00310559 0.0056497 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 322 81669 +en ||| supposed to come ||| 0.5 0.0189899 1.22445e-05 3.04365e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| supposed to ||| 0.0105263 0.0189899 1.22445e-05 2.47976e-06 2.718 ||| 0-1 ||| 95 81669 +en ||| surface , which requires taking into account ||| 1 0.414384 1.22445e-05 7.01823e-22 2.718 ||| 0-5 ||| 1 81669 +en ||| surface , which requires taking into ||| 1 0.414384 1.22445e-05 6.00362e-18 2.718 ||| 0-5 ||| 1 81669 +en ||| surface off ||| 0.5 0.0108696 1.22445e-05 4.8711e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| surge in ||| 0.0188679 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 53 81669 +en ||| surging ahead ||| 1 0.128205 1.22445e-05 8.97798e-09 2.718 ||| 0-0 ||| 1 81669 +en ||| surging ||| 0.0294118 0.128205 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 34 81669 +en ||| surprised in ||| 1 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| surrounding ||| 0.00847458 0.05 1.22445e-05 7.14e-05 2.718 ||| 0-0 ||| 118 81669 +en ||| survive in ||| 0.0625 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 16 81669 +en ||| sustained at ||| 1 0.351161 1.22445e-05 3.79785e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| sustained by ||| 0.0357143 0.065573 1.22445e-05 1.28943e-06 2.718 ||| 0-1 ||| 28 81669 +en ||| sweeping ||| 0.037037 0.0327869 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 27 81669 +en ||| swept across ||| 0.125 0.28681 1.22445e-05 2.59937e-07 2.718 ||| 0-1 ||| 8 81669 +en ||| swept into ||| 0.25 0.414384 1.22445e-05 1.54572e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| swept up in ||| 0.333333 0.717907 1.22445e-05 1.18618e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| tagged DNA building block ||| 0.25 0.0125 1.22445e-05 7.62127e-19 2.718 ||| 0-1 ||| 4 81669 +en ||| tagged DNA building ||| 0.25 0.0125 1.22445e-05 1.95417e-14 2.718 ||| 0-1 ||| 4 81669 +en ||| tagged DNA ||| 0.25 0.0125 1.22445e-05 1.157e-10 2.718 ||| 0-1 ||| 4 81669 +en ||| take a hard look at ||| 1 0.351161 1.22445e-05 2.72146e-13 2.718 ||| 0-4 ||| 1 81669 +en ||| take into ||| 0.0294118 0.414384 1.22445e-05 1.75247e-05 2.718 ||| 0-1 ||| 34 81669 +en ||| take place at ||| 0.25 0.351161 1.22445e-05 4.10937e-08 2.718 ||| 0-2 ||| 4 81669 +en ||| taken as a ||| 0.25 0.0296498 1.22445e-05 1.40922e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| taken as ||| 0.142857 0.0296498 1.22445e-05 3.50274e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| taken at ||| 0.0909091 0.351161 1.22445e-05 1.78049e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| taken part in ||| 0.25 0.717907 1.22445e-05 1.46503e-07 2.718 ||| 0-2 ||| 4 81669 +en ||| taken seriously , ||| 0.142857 0.261242 1.22445e-05 1.08306e-07 2.718 ||| 0-1 ||| 7 81669 +en ||| taken seriously ||| 0.0322581 0.261242 1.22445e-05 5.30208e-07 2.718 ||| 0-1 ||| 31 81669 +en ||| taken ||| 0.00714286 0.0166482 4.89782e-05 0.0001338 2.718 ||| 0-0 ||| 560 81669 +en ||| takes over ||| 0.0714286 0.159665 1.22445e-05 1.04673e-06 2.718 ||| 0-1 ||| 14 81669 +en ||| takes place on the ground , in ||| 1 0.717907 1.22445e-05 1.3483e-15 2.718 ||| 0-6 ||| 1 81669 +en ||| takes ||| 0.00409836 0.002809 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 244 81669 +en ||| taking into account ocean currents , wind ||| 1 0.414384 1.22445e-05 8.87357e-25 2.718 ||| 0-1 ||| 1 81669 +en ||| taking into account ocean currents , ||| 1 0.414384 1.22445e-05 1.95024e-20 2.718 ||| 0-1 ||| 1 81669 +en ||| taking into account ocean currents ||| 1 0.414384 1.22445e-05 9.54732e-20 2.718 ||| 0-1 ||| 1 81669 +en ||| taking into account ocean ||| 1 0.414384 1.22445e-05 1.46882e-14 2.718 ||| 0-1 ||| 1 81669 +en ||| taking into account ||| 0.0526316 0.414384 1.22445e-05 1.12986e-09 2.718 ||| 0-1 ||| 19 81669 +en ||| taking into ||| 0.0526316 0.414384 1.22445e-05 9.66518e-06 2.718 ||| 0-1 ||| 19 81669 +en ||| taking part in ||| 0.153846 0.717907 2.44891e-05 1.46503e-07 2.718 ||| 0-2 ||| 13 81669 +en ||| taking place in ||| 0.111111 0.717907 2.44891e-05 3.02243e-07 2.718 ||| 0-2 ||| 18 81669 +en ||| taking place under ||| 0.166667 0.0957592 1.22445e-05 1.16169e-09 2.718 ||| 0-2 ||| 6 81669 +en ||| talk in ||| 0.2 0.717907 1.22445e-05 4.74791e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| talks about ||| 0.04 0.0371521 1.22445e-05 7.97387e-08 2.718 ||| 0-1 ||| 25 81669 +en ||| tankers move under armed guard in ||| 1 0.717907 1.22445e-05 6.17964e-22 2.718 ||| 0-5 ||| 1 81669 +en ||| targets in ||| 0.0833333 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 12 81669 +en ||| technologically ||| 0.0454545 0.151515 1.22445e-05 4.46e-05 2.718 ||| 0-0 ||| 22 81669 +en ||| teeth in ||| 0.5 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| television station ||| 0.111111 0.037037 1.22445e-05 1.2194e-09 2.718 ||| 0-1 ||| 9 81669 +en ||| temple ||| 0.0434783 0.0625 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 23 81669 +en ||| tend to share ||| 0.2 0.0189899 1.22445e-05 2.19533e-10 2.718 ||| 0-1 ||| 5 81669 +en ||| tend to ||| 0.00416667 0.0189899 1.22445e-05 1.35181e-06 2.718 ||| 0-1 ||| 240 81669 +en ||| term in office . ||| 0.2 0.717907 1.22445e-05 6.05003e-11 2.718 ||| 0-1 ||| 5 81669 +en ||| term in office ||| 0.0909091 0.717907 1.22445e-05 1.31582e-08 2.718 ||| 0-1 ||| 11 81669 +en ||| term in ||| 0.0416667 0.717907 1.22445e-05 6.33217e-05 2.718 ||| 0-1 ||| 24 81669 +en ||| terms in ||| 0.166667 0.717907 1.22445e-05 0.000256406 2.718 ||| 0-1 ||| 6 81669 +en ||| terms of ||| 0.00217391 0.0080355 1.22445e-05 4.19075e-06 2.718 ||| 0-1 ||| 460 81669 +en ||| test in question ||| 1 0.717907 1.22445e-05 7.39661e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| test in ||| 0.5 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| than in ||| 0.00271739 0.717907 1.22445e-05 0.000196253 2.718 ||| 0-1 ||| 368 81669 +en ||| than stand on ||| 0.047619 0.336652 1.22445e-05 7.80748e-09 2.718 ||| 0-2 ||| 21 81669 +en ||| thanks partly ||| 0.333333 0.419521 1.22445e-05 4.26251e-08 2.718 ||| 0-1 ||| 3 81669 +en ||| that , in ||| 0.0075188 0.717907 1.22445e-05 0.000813506 2.718 ||| 0-2 ||| 133 81669 +en ||| that again . ) In ||| 1 0.0917031 1.22445e-05 3.06574e-15 2.718 ||| 0-4 ||| 1 81669 +en ||| that are in ||| 0.125 0.717907 1.22445e-05 2.94844e-05 2.718 ||| 0-2 ||| 8 81669 +en ||| that are spread by news ||| 1 0.065573 1.22445e-05 6.6459e-15 2.718 ||| 0-3 ||| 1 81669 +en ||| that are spread by ||| 1 0.065573 1.22445e-05 7.31122e-11 2.718 ||| 0-3 ||| 1 81669 +en ||| that are strictly demanded by the situation ||| 0.5 0.065573 1.22445e-05 5.46775e-22 2.718 ||| 0-4 ||| 2 81669 +en ||| that are strictly demanded by the ||| 0.5 0.065573 1.22445e-05 1.68238e-17 2.718 ||| 0-4 ||| 2 81669 +en ||| that are strictly demanded by ||| 0.5 0.065573 1.22445e-05 3.16657e-16 2.718 ||| 0-4 ||| 2 81669 +en ||| that directed at ||| 0.5 0.351161 1.22445e-05 9.70547e-09 2.718 ||| 0-2 ||| 2 81669 +en ||| that has ||| 0.0021645 0.000314 1.22445e-05 4.44029e-07 2.718 ||| 0-0 ||| 462 81669 +en ||| that have occurred in ||| 0.333333 0.717907 1.22445e-05 1.06918e-09 2.718 ||| 0-3 ||| 3 81669 +en ||| that in ||| 0.0340909 0.717907 0.000110201 0.00398249 2.718 ||| 0-1 ||| 264 81669 +en ||| that is currently being debated ||| 0.5 0.0649123 1.22445e-05 1.30599e-15 2.718 ||| 0-2 ||| 2 81669 +en ||| that is currently being ||| 0.25 0.0649123 1.22445e-05 6.69737e-11 2.718 ||| 0-2 ||| 4 81669 +en ||| that is currently ||| 0.0909091 0.0649123 1.22445e-05 4.44506e-08 2.718 ||| 0-2 ||| 11 81669 +en ||| that is in ||| 0.05 0.717907 1.22445e-05 6.5641e-05 2.718 ||| 0-2 ||| 20 81669 +en ||| that is ||| 0.000631313 0.000314 1.22445e-05 2.20535e-06 2.718 ||| 0-0 ||| 1584 81669 +en ||| that it ||| 0.00131234 0.0050431 1.22445e-05 9.47533e-06 2.718 ||| 0-1 ||| 762 81669 +en ||| that material into low ||| 1 0.414384 1.22445e-05 5.20106e-13 2.718 ||| 0-2 ||| 1 81669 +en ||| that material into ||| 1 0.414384 1.22445e-05 4.2148e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| that of ||| 0.00243309 0.0080355 1.22445e-05 6.50904e-05 2.718 ||| 0-1 ||| 411 81669 +en ||| that officially started in ||| 1 0.717907 1.22445e-05 6.55438e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| that relied on ||| 0.111111 0.336652 1.22445e-05 1.44182e-08 2.718 ||| 0-2 ||| 9 81669 +en ||| that the opposite is ||| 0.5 0.0006015 1.22445e-05 6.09087e-12 2.718 ||| 0-1 ||| 2 81669 +en ||| that the opposite ||| 0.25 0.0006015 1.22445e-05 3.69538e-10 2.718 ||| 0-1 ||| 4 81669 +en ||| that the ||| 0.000162259 0.0006015 1.22445e-05 9.47533e-06 2.718 ||| 0-1 ||| 6163 81669 +en ||| that there must be some in ||| 1 0.717907 1.22445e-05 4.06854e-14 2.718 ||| 0-5 ||| 1 81669 +en ||| that took place in ||| 0.25 0.717907 1.22445e-05 1.41586e-09 2.718 ||| 0-3 ||| 4 81669 +en ||| that ||| 0.000171668 0.000314 0.000122445 0.0001338 2.718 ||| 0-0 ||| 58252 81669 +en ||| the US and around the ||| 0.333333 0.0001307 1.22445e-05 2.04482e-13 2.718 ||| 0-2 ||| 3 81669 +en ||| the US and around ||| 0.333333 0.0001307 1.22445e-05 3.84874e-12 2.718 ||| 0-2 ||| 3 81669 +en ||| the US and ||| 0.00152672 0.0001307 1.22445e-05 7.317e-09 2.718 ||| 0-2 ||| 655 81669 +en ||| the US on ||| 0.0526316 0.336652 1.22445e-05 4.63736e-06 2.718 ||| 0-2 ||| 19 81669 +en ||| the United States , both in ||| 1 0.717907 1.22445e-05 9.55697e-13 2.718 ||| 0-5 ||| 1 81669 +en ||| the agreement was ||| 0.333333 0.0004722 1.22445e-05 3.50756e-10 2.718 ||| 0-2 ||| 3 81669 +en ||| the assurance of closed , ||| 1 0.0080355 1.22445e-05 1.75129e-13 2.718 ||| 0-2 ||| 1 81669 +en ||| the assurance of closed ||| 1 0.0080355 1.22445e-05 8.5734e-13 2.718 ||| 0-2 ||| 1 81669 +en ||| the assurance of ||| 1 0.0080355 1.22445e-05 1.10056e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| the basis of ||| 0.00645161 0.0080355 1.22445e-05 1.62206e-07 2.718 ||| 0-2 ||| 155 81669 +en ||| the blue in ||| 1 0.717907 1.22445e-05 5.05027e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| the bottom ||| 0.0108696 0.0006015 1.22445e-05 1.28042e-07 2.718 ||| 0-0 ||| 92 81669 +en ||| the case in ||| 0.108108 0.717907 4.89782e-05 1.79971e-05 2.718 ||| 0-2 ||| 37 81669 +en ||| the case ||| 0.00196078 0.0006015 1.22445e-05 8.05945e-07 2.718 ||| 0-0 ||| 510 81669 +en ||| the consensus view ||| 0.166667 0.0416667 1.22445e-05 2.52198e-09 2.718 ||| 0-1 ||| 6 81669 +en ||| the consensus ||| 0.027027 0.0416667 1.22445e-05 9.95649e-06 2.718 ||| 0-1 ||| 37 81669 +en ||| the eurozone as ||| 0.1 0.0296498 1.22445e-05 7.45007e-09 2.718 ||| 0-2 ||| 10 81669 +en ||| the express lane to ||| 1 0.0189899 1.22445e-05 7.79059e-14 2.718 ||| 0-3 ||| 1 81669 +en ||| the ground , in ||| 1 0.717907 1.22445e-05 1.88972e-06 2.718 ||| 0-3 ||| 1 81669 +en ||| the ground in ||| 0.181818 0.717907 2.44891e-05 9.25105e-06 2.718 ||| 0-2 ||| 11 81669 +en ||| the less fit ||| 1 0.0604027 1.22445e-05 1.55166e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| the losers in ||| 0.333333 0.717907 1.22445e-05 3.36685e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| the more difficult ||| 0.111111 0.0004911 1.22445e-05 5.3523e-10 2.718 ||| 0-1 ||| 9 81669 +en ||| the more ||| 0.00310559 0.0004911 1.22445e-05 2.84243e-06 2.718 ||| 0-1 ||| 322 81669 +en ||| the opposite is ||| 0.111111 0.0006015 1.22445e-05 7.45535e-10 2.718 ||| 0-0 ||| 9 81669 +en ||| the opposite ||| 0.0119048 0.0006015 1.22445e-05 4.52322e-08 2.718 ||| 0-0 ||| 84 81669 +en ||| the past ||| 0.00105152 0.0011581 1.22445e-05 9.45707e-07 2.718 ||| 0-1 ||| 951 81669 +en ||| the rule of law . ||| 0.0153846 0.0080355 1.22445e-05 7.48847e-14 2.718 ||| 0-2 ||| 65 81669 +en ||| the rule of law ||| 0.004 0.0080355 1.22445e-05 1.62867e-11 2.718 ||| 0-2 ||| 250 81669 +en ||| the rule of ||| 0.00569801 0.0080355 2.44891e-05 1.04469e-07 2.718 ||| 0-2 ||| 351 81669 +en ||| the shares in ||| 0.5 0.717907 1.22445e-05 6.73369e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| the surface off ||| 0.5 0.0108696 1.22445e-05 2.588e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| the time in ||| 1 0.717907 1.22445e-05 2.42206e-05 2.718 ||| 0-2 ||| 1 81669 +en ||| the trip ||| 0.142857 0.0006015 1.22445e-05 2.26161e-08 2.718 ||| 0-0 ||| 7 81669 +en ||| the underpinnings of ||| 0.25 0.0080355 1.22445e-05 2.75141e-09 2.718 ||| 0-2 ||| 4 81669 +en ||| the view ||| 0.00980392 0.0006015 1.22445e-05 2.93777e-07 2.718 ||| 0-0 ||| 102 81669 +en ||| the ||| 0.000405177 0.0006015 0.00102854 0.0011598 2.718 ||| 0-0 ||| 207317 81669 +en ||| their associations ||| 0.125 0.0125 1.22445e-05 1.59524e-08 2.718 ||| 0-1 ||| 8 81669 +en ||| their decisions with ||| 0.25 0.0232439 1.22445e-05 4.16616e-10 2.718 ||| 0-2 ||| 4 81669 +en ||| their eyes on ||| 0.25 0.336652 1.22445e-05 1.10593e-08 2.718 ||| 0-2 ||| 4 81669 +en ||| their fifth ||| 0.5 0.131313 1.22445e-05 2.07918e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| their formative experience in ||| 0.333333 0.717907 1.22445e-05 3.68584e-13 2.718 ||| 0-3 ||| 3 81669 +en ||| them . ||| 0.00311526 2e-05 1.22445e-05 5.23886e-08 2.718 ||| 0-1 ||| 321 81669 +en ||| them all ||| 0.142857 0.0013515 1.22445e-05 1.91766e-07 2.718 ||| 0-1 ||| 7 81669 +en ||| them and those who fight ||| 1 0.0033613 1.22445e-05 1.48984e-16 2.718 ||| 0-4 ||| 1 81669 +en ||| them as ||| 0.0454545 0.0296498 1.22445e-05 1.4057e-05 2.718 ||| 0-1 ||| 22 81669 +en ||| them at ||| 0.0526316 0.351161 1.22445e-05 7.14536e-05 2.718 ||| 0-1 ||| 19 81669 +en ||| them in ||| 0.153846 0.717907 0.000122445 0.000952896 2.718 ||| 0-1 ||| 65 81669 +en ||| them into ||| 0.0625 0.414384 1.22445e-05 3.87877e-05 2.718 ||| 0-1 ||| 16 81669 +en ||| them much at ||| 1 0.351161 1.22445e-05 1.03015e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| them on ||| 0.0666667 0.336652 1.22445e-05 0.000132687 2.718 ||| 0-1 ||| 15 81669 +en ||| them when they fell ||| 1 0.0709982 1.22445e-05 7.3214e-12 2.718 ||| 0-1 ||| 1 81669 +en ||| them when they ||| 1 0.0709982 1.22445e-05 4.69622e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| them when ||| 0.25 0.0709982 1.22445e-05 7.60398e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| themselves as ||| 0.0227273 0.0296498 1.22445e-05 5.79091e-06 2.718 ||| 0-1 ||| 44 81669 +en ||| themselves in ||| 0.4 0.717907 2.44891e-05 0.000392555 2.718 ||| 0-1 ||| 5 81669 +en ||| themselves into ||| 0.5 0.414384 1.22445e-05 1.5979e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| themselves to ||| 0.0434783 0.0189899 1.22445e-05 1.39745e-05 2.718 ||| 0-1 ||| 23 81669 +en ||| themselves up in ||| 1 0.717907 1.22445e-05 1.22623e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| then , in ||| 0.0434783 0.717907 1.22445e-05 8.66499e-05 2.718 ||| 0-2 ||| 23 81669 +en ||| then , ||| 0.0021322 0.0154747 1.22445e-05 6.74297e-05 2.718 ||| 0-0 ||| 469 81669 +en ||| then again ||| 0.0588235 0.0154747 1.22445e-05 1.26494e-07 2.718 ||| 0-0 ||| 17 81669 +en ||| then in ||| 0.133333 0.717907 2.44891e-05 0.000424192 2.718 ||| 0-1 ||| 15 81669 +en ||| then on ||| 0.111111 0.336652 1.22445e-05 5.90672e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| then ||| 0.00287494 0.0154747 7.34673e-05 0.0003301 2.718 ||| 0-0 ||| 2087 81669 +en ||| there -- ||| 0.166667 0.0077351 1.22445e-05 2.24237e-06 2.718 ||| 0-0 ||| 6 81669 +en ||| there are ||| 0.00150602 0.0077351 2.44891e-05 3.3027e-06 2.718 ||| 0-0 ||| 1328 81669 +en ||| there for ||| 0.0909091 0.0255404 1.22445e-05 1.66225e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| there is in ||| 0.333333 0.717907 2.44891e-05 1.71667e-05 2.718 ||| 0-2 ||| 6 81669 +en ||| there is ||| 0.00113208 0.0077351 3.67336e-05 7.3528e-06 2.718 ||| 0-0 ||| 2650 81669 +en ||| there must be some in ||| 1 0.717907 1.22445e-05 4.97998e-12 2.718 ||| 0-4 ||| 1 81669 +en ||| there was ||| 0.00294118 0.0077351 1.22445e-05 1.68612e-06 2.718 ||| 0-0 ||| 340 81669 +en ||| there were in ||| 0.333333 0.717907 1.22445e-05 2.30644e-06 2.718 ||| 0-2 ||| 3 81669 +en ||| there were ||| 0.00431034 0.0077351 1.22445e-05 9.87888e-07 2.718 ||| 0-0 ||| 232 81669 +en ||| there ||| 0.0151844 0.0077351 0.000257136 0.0004461 2.718 ||| 0-0 ||| 1383 81669 +en ||| therefore , ||| 0.0211268 0.0224337 3.67336e-05 6.01373e-05 2.718 ||| 0-0 ||| 142 81669 +en ||| therefore long ||| 0.5 0.0224337 1.22445e-05 2.19858e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| therefore ||| 0.0120724 0.0224337 7.34673e-05 0.0002944 2.718 ||| 0-0 ||| 497 81669 +en ||| these days , ||| 0.037037 0.005597 1.22445e-05 4.19507e-09 2.718 ||| 0-1 ||| 27 81669 +en ||| these days ||| 0.0128205 0.005597 1.22445e-05 2.05368e-08 2.718 ||| 0-1 ||| 78 81669 +en ||| these last two criteria - called the ||| 1 0.0389655 1.22445e-05 4.66453e-23 2.718 ||| 0-1 ||| 1 81669 +en ||| these last two criteria - called ||| 1 0.0389655 1.22445e-05 8.77952e-22 2.718 ||| 0-1 ||| 1 81669 +en ||| these last two criteria - ||| 1 0.0389655 1.22445e-05 2.70389e-18 2.718 ||| 0-1 ||| 1 81669 +en ||| these last two criteria ||| 1 0.0389655 1.22445e-05 3.13059e-15 2.718 ||| 0-1 ||| 1 81669 +en ||| these last two ||| 1 0.0389655 1.22445e-05 2.40814e-10 2.718 ||| 0-1 ||| 1 81669 +en ||| these last ||| 1 0.0389655 1.22445e-05 7.72584e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| these ||| 0.000501756 0.0005221 3.67336e-05 2.68e-05 2.718 ||| 0-0 ||| 5979 81669 +en ||| they appear ||| 0.125 0.0010336 1.22445e-05 2.10888e-08 2.718 ||| 0-0 ||| 8 81669 +en ||| they are in ||| 0.208333 0.717907 6.12227e-05 2.22888e-05 2.718 ||| 0-2 ||| 24 81669 +en ||| they are nowhere near ||| 1 0.131148 1.22445e-05 6.78819e-13 2.718 ||| 0-2 ||| 1 81669 +en ||| they are nowhere ||| 1 0.131148 1.22445e-05 1.30542e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| they are to be ||| 0.25 0.0189899 1.22445e-05 8.17765e-09 2.718 ||| 0-2 ||| 4 81669 +en ||| they are to ||| 0.0666667 0.0189899 1.22445e-05 7.93453e-07 2.718 ||| 0-2 ||| 15 81669 +en ||| they did in ||| 0.176471 0.717907 3.67336e-05 4.82928e-06 2.718 ||| 0-2 ||| 17 81669 +en ||| they do in ||| 0.25 0.717907 2.44891e-05 6.90176e-06 2.718 ||| 0-2 ||| 8 81669 +en ||| they do on ||| 0.4 0.336652 2.44891e-05 9.61045e-07 2.718 ||| 0-2 ||| 5 81669 +en ||| they do ||| 0.00757576 0.0010336 1.22445e-05 2.6593e-07 2.718 ||| 0-0 ||| 132 81669 +en ||| they eventually ||| 0.25 0.0448934 1.22445e-05 2.20421e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| they ever were in ||| 1 0.717907 1.22445e-05 3.98349e-09 2.718 ||| 0-3 ||| 1 81669 +en ||| they get in ||| 1 0.717907 1.22445e-05 2.36572e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| they had in the ||| 0.5 0.717907 1.22445e-05 2.27482e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| they had in ||| 0.111111 0.717907 1.22445e-05 4.28165e-06 2.718 ||| 0-2 ||| 9 81669 +en ||| they have , on ||| 1 0.336652 1.22445e-05 4.42114e-07 2.718 ||| 0-3 ||| 1 81669 +en ||| they have done in ||| 0.333333 0.717907 1.22445e-05 3.63403e-09 2.718 ||| 0-3 ||| 3 81669 +en ||| they have in ||| 0.222222 0.717907 2.44891e-05 1.55433e-05 2.718 ||| 0-2 ||| 9 81669 +en ||| they hesitate ||| 0.5 0.288889 1.22445e-05 7.16416e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| they were at ||| 0.166667 0.351161 1.22445e-05 4.99925e-07 2.718 ||| 0-2 ||| 6 81669 +en ||| they were for ||| 0.5 0.0255404 1.22445e-05 1.06404e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| they were in ||| 0.173913 0.717907 4.89782e-05 6.66694e-06 2.718 ||| 0-2 ||| 23 81669 +en ||| they would at ||| 1 0.351161 1.22445e-05 1.04385e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| they ||| 0.00121448 0.0010336 6.12227e-05 0.000116 2.718 ||| 0-0 ||| 4117 81669 +en ||| thing happened in ||| 0.5 0.717907 1.22445e-05 1.42387e-08 2.718 ||| 0-2 ||| 2 81669 +en ||| thing in 1933 . ||| 0.5 0.717907 1.22445e-05 5.95999e-12 2.718 ||| 0-1 ||| 2 81669 +en ||| thing in 1933 ||| 0.5 0.717907 1.22445e-05 1.29624e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| thing in ||| 0.285714 0.717907 2.44891e-05 0.000199422 2.718 ||| 0-1 ||| 7 81669 +en ||| thing to do in ||| 0.5 0.717907 1.22445e-05 3.77124e-08 2.718 ||| 0-3 ||| 2 81669 +en ||| things about ||| 0.0909091 0.0371521 1.22445e-05 7.3286e-07 2.718 ||| 0-1 ||| 11 81669 +en ||| things in ||| 0.0740741 0.717907 2.44891e-05 0.000145606 2.718 ||| 0-1 ||| 27 81669 +en ||| think of ||| 0.00980392 0.0036452 1.22445e-05 7.24031e-07 2.718 ||| 0-0 ||| 102 81669 +en ||| think ||| 0.00189036 0.0036452 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 529 81669 +en ||| thinking ||| 0.0020284 0.0045558 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 493 81669 +en ||| third , American foreign policy has accelerated ||| 1 0.107143 1.22445e-05 2.2612e-22 2.718 ||| 0-0 ||| 1 81669 +en ||| third , American foreign policy has ||| 1 0.107143 1.22445e-05 8.69691e-18 2.718 ||| 0-0 ||| 1 81669 +en ||| third , American foreign policy ||| 1 0.107143 1.22445e-05 2.62066e-15 2.718 ||| 0-0 ||| 1 81669 +en ||| third , American foreign ||| 1 0.107143 1.22445e-05 8.40762e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| third , American ||| 1 0.107143 1.22445e-05 5.39296e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| third , ||| 0.00552486 0.107143 1.22445e-05 0.000169483 2.718 ||| 0-0 ||| 181 81669 +en ||| third poorest ||| 0.166667 0.107143 1.22445e-05 2.15722e-08 2.718 ||| 0-0 ||| 6 81669 +en ||| third ||| 0.00574713 0.107143 4.89782e-05 0.0008297 2.718 ||| 0-0 ||| 696 81669 +en ||| this coming ||| 0.166667 0.0034259 1.22445e-05 1.94415e-07 2.718 ||| 0-0 ||| 6 81669 +en ||| this in ||| 0.075 0.717907 3.67336e-05 0.00096869 2.718 ||| 0-1 ||| 40 81669 +en ||| this past ||| 0.0454545 0.0034259 1.22445e-05 9.87779e-08 2.718 ||| 0-0 ||| 22 81669 +en ||| this ||| 0.00265842 0.0034259 0.000526516 0.0004907 2.718 ||| 0-0 ||| 16175 81669 +en ||| those in the ||| 0.0227273 0.717907 1.22445e-05 1.2952e-05 2.718 ||| 0-1 ||| 44 81669 +en ||| those in ||| 0.0236967 0.717907 6.12227e-05 0.000243781 2.718 ||| 0-1 ||| 211 81669 +en ||| those who fight ||| 0.5 0.0033613 1.22445e-05 9.07625e-12 2.718 ||| 0-2 ||| 2 81669 +en ||| thought through ||| 0.2 0.021007 1.22445e-05 8.76314e-08 2.718 ||| 0-1 ||| 5 81669 +en ||| thoughts about taking part in ||| 0.25 0.717907 1.22445e-05 2.31287e-15 2.718 ||| 0-4 ||| 4 81669 +en ||| threatened ||| 0.00438596 0.012 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 228 81669 +en ||| threatening social stability in ||| 0.5 0.717907 1.22445e-05 1.92608e-14 2.718 ||| 0-3 ||| 2 81669 +en ||| through on ||| 0.0714286 0.336652 1.22445e-05 3.43868e-05 2.718 ||| 0-1 ||| 14 81669 +en ||| through them and ||| 0.333333 0.021007 1.22445e-05 9.22668e-09 2.718 ||| 0-0 ||| 3 81669 +en ||| through them ||| 0.333333 0.021007 1.22445e-05 1.09879e-06 2.718 ||| 0-0 ||| 3 81669 +en ||| through to ||| 0.125 0.021007 1.22445e-05 4.63677e-05 2.718 ||| 0-0 ||| 8 81669 +en ||| through with ||| 0.166667 0.0232439 1.22445e-05 2.26445e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| through ||| 0.0127784 0.021007 0.000428559 0.0005621 2.718 ||| 0-0 ||| 2739 81669 +en ||| throughout it ||| 1 0.262042 1.22445e-05 6.46172e-05 2.718 ||| 0-0 ||| 1 81669 +en ||| throughout ||| 0.0540541 0.262042 0.000465293 0.0024268 2.718 ||| 0-0 ||| 703 81669 +en ||| thus open to serious ||| 1 0.0480874 1.22445e-05 7.86522e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| thus open to ||| 1 0.0480874 1.22445e-05 3.78499e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| thus open ||| 1 0.0480874 1.22445e-05 4.58842e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| thus ||| 0.00247525 0.0480874 4.89782e-05 0.0015703 2.718 ||| 0-0 ||| 1616 81669 +en ||| time , when ||| 0.333333 0.0709982 1.22445e-05 7.43103e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| time for ||| 0.00442478 0.0255404 1.22445e-05 7.27576e-06 2.718 ||| 0-1 ||| 226 81669 +en ||| time in ||| 0.0472973 0.717907 8.57118e-05 0.000455877 2.718 ||| 0-1 ||| 148 81669 +en ||| time of the ||| 0.04 0.0080355 1.22445e-05 3.95865e-07 2.718 ||| 0-1 ||| 25 81669 +en ||| time of ||| 0.00671141 0.0080355 1.22445e-05 7.45093e-06 2.718 ||| 0-1 ||| 149 81669 +en ||| time soon ||| 0.157895 0.0537353 3.67336e-05 3.42096e-07 2.718 ||| 0-1 ||| 19 81669 +en ||| time that are strictly demanded by the ||| 0.5 0.065573 1.22445e-05 1.57337e-20 2.718 ||| 0-5 ||| 2 81669 +en ||| time that are strictly demanded by ||| 0.5 0.065573 1.22445e-05 2.96137e-19 2.718 ||| 0-5 ||| 2 81669 +en ||| time ||| 0.00131822 0.0025291 6.12227e-05 8.92e-05 2.718 ||| 0-0 ||| 3793 81669 +en ||| times in ||| 0.030303 0.717907 1.22445e-05 9.49581e-05 2.718 ||| 0-1 ||| 33 81669 +en ||| times ||| 0.000891266 0.0010183 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 1122 81669 +en ||| to [ ||| 0.5 0.0189899 1.22445e-05 4.16995e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| to 1990 ||| 0.0909091 0.0189899 1.22445e-05 5.63976e-07 2.718 ||| 0-0 ||| 11 81669 +en ||| to Turkey in ||| 0.5 0.717907 1.22445e-05 6.26891e-06 2.718 ||| 0-2 ||| 2 81669 +en ||| to a boil ||| 0.5 0.0189899 1.22445e-05 9.07595e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| to a ||| 0.0286519 0.0189899 0.000746917 0.00069815 2.718 ||| 0-0 ||| 2129 81669 +en ||| to abide by ||| 0.0769231 0.065573 1.22445e-05 6.65423e-09 2.718 ||| 0-2 ||| 13 81669 +en ||| to achieve ||| 0.002849 0.0189899 1.22445e-05 2.25417e-06 2.718 ||| 0-0 ||| 351 81669 +en ||| to address ||| 0.00301205 0.0189899 1.22445e-05 1.80299e-06 2.718 ||| 0-0 ||| 332 81669 +en ||| to adoption ||| 0.166667 0.0189899 1.22445e-05 4.51181e-07 2.718 ||| 0-0 ||| 6 81669 +en ||| to an ||| 0.002079 0.0189899 1.22445e-05 6.0066e-05 2.718 ||| 0-0 ||| 481 81669 +en ||| to another ||| 0.0128205 0.0189899 1.22445e-05 3.26759e-06 2.718 ||| 0-0 ||| 78 81669 +en ||| to assume ||| 0.0128205 0.0116047 1.22445e-05 1.54443e-07 2.718 ||| 0-0 0-1 ||| 78 81669 +en ||| to be at ||| 0.0909091 0.351161 1.22445e-05 3.10764e-05 2.718 ||| 0-2 ||| 11 81669 +en ||| to be found in ||| 0.222222 0.717907 2.44891e-05 1.6685e-07 2.718 ||| 0-3 ||| 9 81669 +en ||| to be made ||| 0.0384615 0.0189899 1.22445e-05 1.97448e-07 2.718 ||| 0-0 ||| 26 81669 +en ||| to be on ||| 0.0909091 0.336652 1.22445e-05 5.77081e-05 2.718 ||| 0-2 ||| 11 81669 +en ||| to be restored ||| 0.166667 0.0189899 1.22445e-05 5.81256e-09 2.718 ||| 0-0 ||| 6 81669 +en ||| to be transformed into ||| 1 0.414384 1.22445e-05 8.77212e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| to be ||| 0.00473133 0.0189899 0.000171424 0.000178848 2.718 ||| 0-0 ||| 2959 81669 +en ||| to become either ||| 1 0.157512 1.22445e-05 5.187e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| to become ||| 0.0197368 0.157512 7.34673e-05 0.000525479 2.718 ||| 0-1 ||| 304 81669 +en ||| to bid ||| 0.0769231 0.0189899 1.22445e-05 1.35181e-06 2.718 ||| 0-0 ||| 13 81669 +en ||| to brew ||| 0.25 0.0189899 1.22445e-05 2.2559e-07 2.718 ||| 0-0 ||| 4 81669 +en ||| to bring about ||| 0.0196078 0.0371521 1.22445e-05 1.10404e-07 2.718 ||| 0-2 ||| 51 81669 +en ||| to building up ||| 0.333333 0.0189899 1.22445e-05 9.15537e-09 2.718 ||| 0-0 ||| 3 81669 +en ||| to building ||| 0.0454545 0.0189899 1.22445e-05 2.93094e-06 2.718 ||| 0-0 ||| 22 81669 +en ||| to come over ||| 0.5 0.159665 1.22445e-05 7.41635e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| to come ||| 0.0045045 0.0189899 1.22445e-05 2.12992e-05 2.718 ||| 0-0 ||| 222 81669 +en ||| to confirm ||| 0.0769231 0.0189899 1.22445e-05 1.12795e-07 2.718 ||| 0-0 ||| 13 81669 +en ||| to curb excess liquidity so long as ||| 1 0.0189899 1.22445e-05 4.06883e-25 2.718 ||| 0-0 ||| 1 81669 +en ||| to curb excess liquidity so long ||| 1 0.0189899 1.22445e-05 4.81205e-23 2.718 ||| 0-0 ||| 1 81669 +en ||| to curb excess liquidity so ||| 1 0.0189899 1.22445e-05 6.44356e-20 2.718 ||| 0-0 ||| 1 81669 +en ||| to curb excess liquidity ||| 1 0.0189899 1.22445e-05 2.85936e-17 2.718 ||| 0-0 ||| 1 81669 +en ||| to curb excess ||| 1 0.0189899 1.22445e-05 4.39901e-12 2.718 ||| 0-0 ||| 1 81669 +en ||| to curb ||| 0.0142857 0.0189899 1.22445e-05 1.12795e-07 2.718 ||| 0-0 ||| 70 81669 +en ||| to deal with ||| 0.004329 0.0189899 1.22445e-05 2.47925e-08 2.718 ||| 0-0 ||| 231 81669 +en ||| to deal ||| 0.00877193 0.0189899 1.22445e-05 6.53691e-06 2.718 ||| 0-0 ||| 114 81669 +en ||| to death in ||| 0.333333 0.717907 1.22445e-05 7.049e-06 2.718 ||| 0-2 ||| 3 81669 +en ||| to diminish ||| 0.0714286 0.0189899 1.22445e-05 1.12795e-07 2.718 ||| 0-0 ||| 14 81669 +en ||| to do in ||| 0.0714286 0.717907 1.22445e-05 9.21839e-05 2.718 ||| 0-2 ||| 14 81669 +en ||| to do ||| 0.00139082 0.0189899 1.22445e-05 3.9782e-05 2.718 ||| 0-0 ||| 719 81669 +en ||| to enter ||| 0.0196078 0.201613 1.22445e-05 3.67989e-05 2.718 ||| 0-1 ||| 51 81669 +en ||| to establish play areas ||| 1 0.0189899 1.22445e-05 1.5901e-14 2.718 ||| 0-0 ||| 1 81669 +en ||| to establish play ||| 1 0.0189899 1.22445e-05 3.05788e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| to establish ||| 0.00448431 0.0189899 1.22445e-05 1.23901e-06 2.718 ||| 0-0 ||| 223 81669 +en ||| to eye on ||| 0.333333 0.336652 1.22445e-05 1.05434e-06 2.718 ||| 0-2 ||| 3 81669 +en ||| to fight ||| 0.00473934 0.0189899 1.22445e-05 2.59255e-06 2.718 ||| 0-0 ||| 211 81669 +en ||| to figure out ||| 0.0909091 0.0189899 1.22445e-05 6.9967e-09 2.718 ||| 0-0 ||| 11 81669 +en ||| to figure ||| 0.0714286 0.0189899 1.22445e-05 1.5774e-06 2.718 ||| 0-0 ||| 14 81669 +en ||| to flourish in ||| 1 0.717907 1.22445e-05 7.84116e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| to frenzy , ||| 1 0.0189899 1.22445e-05 4.60815e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| to frenzy ||| 1 0.0189899 1.22445e-05 2.2559e-07 2.718 ||| 0-0 ||| 1 81669 +en ||| to full vigor ||| 0.333333 0.0189899 1.22445e-05 3.80909e-11 2.718 ||| 0-0 ||| 3 81669 +en ||| to full ||| 0.0526316 0.0189899 1.22445e-05 5.86014e-06 2.718 ||| 0-0 ||| 19 81669 +en ||| to get ||| 0.00645161 0.0189899 2.44891e-05 1.36361e-05 2.718 ||| 0-0 ||| 310 81669 +en ||| to govern on ||| 0.25 0.336652 1.22445e-05 1.4558e-07 2.718 ||| 0-2 ||| 4 81669 +en ||| to have ||| 0.00438596 0.0189899 2.44891e-05 8.95923e-05 2.718 ||| 0-0 ||| 456 81669 +en ||| to high-security ||| 1 0.259495 1.22445e-05 1.54443e-07 2.718 ||| 0-0 0-1 ||| 1 81669 +en ||| to hit ||| 0.0833333 0.0131007 1.22445e-05 4.65063e-07 2.718 ||| 0-0 0-1 ||| 12 81669 +en ||| to in ||| 0.666667 0.717907 2.44891e-05 0.0402111 2.718 ||| 0-1 ||| 3 81669 +en ||| to include international ||| 1 0.0189899 1.22445e-05 7.50765e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| to include ||| 0.00769231 0.0189899 1.22445e-05 3.042e-06 2.718 ||| 0-0 ||| 130 81669 +en ||| to inhabit ||| 0.333333 0.0189899 1.22445e-05 1.12795e-07 2.718 ||| 0-0 ||| 3 81669 +en ||| to its ||| 0.0018797 0.0189899 1.22445e-05 3.44841e-05 2.718 ||| 0-0 ||| 532 81669 +en ||| to look ||| 0.0128205 0.0189899 1.22445e-05 8.11431e-06 2.718 ||| 0-0 ||| 78 81669 +en ||| to lose such trust ||| 1 0.13852 1.22445e-05 7.38192e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| to make in ||| 1 0.717907 1.22445e-05 5.30103e-05 2.718 ||| 0-2 ||| 1 81669 +en ||| to make it ||| 0.025 0.0189899 1.22445e-05 6.09124e-07 2.718 ||| 0-0 ||| 40 81669 +en ||| to make ||| 0.00238095 0.0189899 2.44891e-05 2.28766e-05 2.718 ||| 0-0 ||| 840 81669 +en ||| to mind during ||| 1 0.0947187 1.22445e-05 2.68126e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| to move in the ||| 0.333333 0.717907 1.22445e-05 4.9949e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| to move in ||| 0.0714286 0.717907 1.22445e-05 9.40135e-06 2.718 ||| 0-2 ||| 14 81669 +en ||| to new ||| 0.0175439 0.0189899 1.22445e-05 1.27354e-05 2.718 ||| 0-0 ||| 57 81669 +en ||| to one ||| 0.00909091 0.0189899 1.22445e-05 6.97595e-05 2.718 ||| 0-0 ||| 110 81669 +en ||| to opt out of ||| 0.333333 0.0080355 1.22445e-05 7.57938e-11 2.718 ||| 0-3 ||| 3 81669 +en ||| to pay in ||| 0.142857 0.717907 1.22445e-05 9.13998e-06 2.718 ||| 0-2 ||| 7 81669 +en ||| to play in ||| 0.0344828 0.717907 1.22445e-05 9.92409e-06 2.718 ||| 0-2 ||| 29 81669 +en ||| to prevent a ||| 0.0178571 0.0189899 1.22445e-05 9.07595e-09 2.718 ||| 0-0 ||| 56 81669 +en ||| to prevent ||| 0.00197628 0.0189899 1.22445e-05 2.2559e-07 2.718 ||| 0-0 ||| 506 81669 +en ||| to push back ||| 0.125 0.0189899 1.22445e-05 3.2896e-09 2.718 ||| 0-0 ||| 8 81669 +en ||| to push ||| 0.0133333 0.0189899 1.22445e-05 2.36696e-06 2.718 ||| 0-0 ||| 75 81669 +en ||| to put it ||| 0.037037 0.0189899 1.22445e-05 5.58113e-07 2.718 ||| 0-0 ||| 27 81669 +en ||| to put on ||| 1 0.336652 1.22445e-05 6.76333e-06 2.718 ||| 0-2 ||| 1 81669 +en ||| to put ||| 0.00549451 0.0189899 1.22445e-05 2.09608e-05 2.718 ||| 0-0 ||| 182 81669 +en ||| to quit in ||| 1 0.717907 1.22445e-05 7.84116e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| to quit ||| 0.166667 0.0189899 1.22445e-05 3.38385e-07 2.718 ||| 0-0 ||| 6 81669 +en ||| to recognize ||| 0.00645161 0.0189899 1.22445e-05 7.89566e-07 2.718 ||| 0-0 ||| 155 81669 +en ||| to resolve ||| 0.00970874 0.0189899 1.22445e-05 1.01342e-06 2.718 ||| 0-0 ||| 103 81669 +en ||| to result in ||| 0.2 0.717907 1.22445e-05 1.67117e-05 2.718 ||| 0-2 ||| 5 81669 +en ||| to reverse course ||| 0.0769231 0.0189899 1.22445e-05 4.34352e-10 2.718 ||| 0-0 ||| 13 81669 +en ||| to reverse ||| 0.0138889 0.0189899 1.22445e-05 1.01342e-06 2.718 ||| 0-0 ||| 72 81669 +en ||| to rise in ||| 0.2 0.717907 1.22445e-05 1.25338e-05 2.718 ||| 0-2 ||| 5 81669 +en ||| to root itself in ||| 1 0.717907 1.22445e-05 2.63502e-09 2.718 ||| 0-3 ||| 1 81669 +en ||| to run for ||| 0.0666667 0.0255404 1.22445e-05 2.70889e-07 2.718 ||| 0-2 ||| 15 81669 +en ||| to run out ||| 0.25 0.0189899 1.22445e-05 3.24896e-08 2.718 ||| 0-0 ||| 4 81669 +en ||| to run ||| 0.0163934 0.0189899 2.44891e-05 7.32474e-06 2.718 ||| 0-0 ||| 122 81669 +en ||| to share ||| 0.0120482 0.0189899 1.22445e-05 2.81814e-06 2.718 ||| 0-0 ||| 83 81669 +en ||| to sign up ||| 0.1 0.0189899 1.22445e-05 5.63199e-09 2.718 ||| 0-0 ||| 10 81669 +en ||| to sign ||| 0.0285714 0.0189899 1.22445e-05 1.80299e-06 2.718 ||| 0-0 ||| 35 81669 +en ||| to stay in ||| 0.0714286 0.717907 1.22445e-05 1.56823e-06 2.718 ||| 0-2 ||| 14 81669 +en ||| to stick ||| 0.125 0.0189899 1.22445e-05 4.51181e-07 2.718 ||| 0-0 ||| 8 81669 +en ||| to strength ||| 0.166667 0.0189899 1.22445e-05 1.01342e-06 2.718 ||| 0-0 ||| 6 81669 +en ||| to tell ||| 0.0136986 0.0189899 1.22445e-05 2.14137e-06 2.718 ||| 0-0 ||| 73 81669 +en ||| to the ethical code ||| 1 0.0189899 1.22445e-05 1.16859e-13 2.718 ||| 0-0 ||| 1 81669 +en ||| to the ethical ||| 1 0.0189899 1.22445e-05 1.79783e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| to the ||| 0.00244021 0.0189899 0.000244891 0.000921963 2.718 ||| 0-0 ||| 8196 81669 +en ||| to them ||| 0.00775194 0.0189899 1.22445e-05 3.39218e-05 2.718 ||| 0-0 ||| 129 81669 +en ||| to trust ||| 0.0625 0.13852 1.22445e-05 5.37259e-05 2.718 ||| 0-1 ||| 16 81669 +en ||| to vote for back in ||| 1 0.717907 1.22445e-05 3.28282e-11 2.718 ||| 0-4 ||| 1 81669 +en ||| to win ||| 0.00862069 0.0189899 1.22445e-05 2.02858e-06 2.718 ||| 0-0 ||| 116 81669 +en ||| to work in ||| 0.0294118 0.717907 1.22445e-05 2.42875e-05 2.718 ||| 0-2 ||| 34 81669 +en ||| to work ||| 0.0034965 0.010075 1.22445e-05 3.08885e-07 2.718 ||| 0-0 0-1 ||| 286 81669 +en ||| to you ||| 0.0555556 0.0189899 1.22445e-05 2.82873e-05 2.718 ||| 0-0 ||| 18 81669 +en ||| to ||| 0.0187191 0.0189899 0.019175 0.0173531 2.718 ||| 0-0 ||| 83658 81669 +en ||| today 's ||| 0.00458716 0.12465 2.44891e-05 6.80814e-05 2.718 ||| 0-0 ||| 436 81669 +en ||| today with ||| 0.125 0.0232439 1.22445e-05 1.56759e-06 2.718 ||| 0-1 ||| 8 81669 +en ||| today ||| 0.00353698 0.12465 0.00013469 0.0043717 2.718 ||| 0-0 ||| 3110 81669 +en ||| together as a ||| 1 0.0296498 1.22445e-05 1.40922e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| together as ||| 0.125 0.0296498 1.22445e-05 3.50274e-06 2.718 ||| 0-1 ||| 8 81669 +en ||| together at ||| 0.333333 0.351161 1.22445e-05 1.78049e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| together in ||| 0.212121 0.717907 8.57118e-05 0.000237444 2.718 ||| 0-1 ||| 33 81669 +en ||| together ||| 0.00749625 0.0832487 6.12227e-05 0.0007316 2.718 ||| 0-0 ||| 667 81669 +en ||| told back in ||| 0.142857 0.717907 1.22445e-05 5.71792e-08 2.718 ||| 0-2 ||| 7 81669 +en ||| toll on ||| 0.125 0.336652 1.22445e-05 2.20603e-06 2.718 ||| 0-1 ||| 8 81669 +en ||| too , have protestors ||| 0.166667 0.04 1.22445e-05 9.38713e-12 2.718 ||| 0-3 ||| 6 81669 +en ||| took little interest in ||| 0.25 0.717907 1.22445e-05 1.58139e-11 2.718 ||| 0-3 ||| 4 81669 +en ||| took place in ||| 0.125 0.717907 2.44891e-05 1.73304e-07 2.718 ||| 0-2 ||| 16 81669 +en ||| took the view ||| 1 0.0006015 1.22445e-05 8.2052e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| took the ||| 0.0175439 0.0006015 1.22445e-05 3.23932e-07 2.718 ||| 0-1 ||| 57 81669 +en ||| took turns as ||| 0.25 0.0296498 1.22445e-05 2.73952e-10 2.718 ||| 0-2 ||| 4 81669 +en ||| took ||| 0.00234192 0.0027248 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 427 81669 +en ||| top in ||| 0.25 0.717907 1.22445e-05 0.000174122 2.718 ||| 0-1 ||| 4 81669 +en ||| tour ||| 0.0416667 0.0357143 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 24 81669 +en ||| toward determining ||| 0.5 0.0354374 1.22445e-05 5.56725e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| toward ||| 0.0148699 0.0354374 0.000146935 0.0002855 2.718 ||| 0-0 ||| 807 81669 +en ||| towards Europe ||| 0.166667 0.0120805 1.22445e-05 3.85922e-08 2.718 ||| 0-0 ||| 6 81669 +en ||| towards ||| 0.0057554 0.0120805 4.89782e-05 8.03e-05 2.718 ||| 0-0 ||| 695 81669 +en ||| traced directly to ||| 1 0.0189899 1.22445e-05 7.32041e-12 2.718 ||| 0-2 ||| 1 81669 +en ||| track at ||| 0.333333 0.351161 1.22445e-05 3.56025e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| traction in ||| 0.333333 0.717907 1.22445e-05 9.50556e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| trade ||| 0.000411353 0.0010977 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 2431 81669 +en ||| traded at all ||| 0.333333 0.351161 1.22445e-05 3.07827e-09 2.718 ||| 0-1 ||| 3 81669 +en ||| traded at ||| 0.166667 0.351161 1.22445e-05 1.18797e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| traded in global ||| 0.333333 0.717907 1.22445e-05 8.74512e-09 2.718 ||| 0-1 ||| 3 81669 +en ||| traded in ||| 0.166667 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 6 81669 +en ||| traded on ||| 0.1 0.336652 1.22445e-05 2.20603e-06 2.718 ||| 0-1 ||| 10 81669 +en ||| traded ||| 0.0408163 0.12381 2.44891e-05 0.000116 2.718 ||| 0-0 ||| 49 81669 +en ||| transformed into ||| 0.0967742 0.414384 3.67336e-05 1.0318e-06 2.718 ||| 0-1 ||| 31 81669 +en ||| transformed it into ||| 1 0.414384 1.22445e-05 2.74732e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| transit in ||| 0.5 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 2 81669 +en ||| transition ||| 0.00189753 0.0076923 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 527 81669 +en ||| treading on ||| 1 0.336652 1.22445e-05 4.41205e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| tree falling in ||| 1 0.717907 1.22445e-05 3.08614e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| tried by ||| 0.166667 0.065573 1.22445e-05 1.3701e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| tried in ||| 0.0769231 0.717907 1.22445e-05 5.38161e-05 2.718 ||| 0-1 ||| 13 81669 +en ||| troubled ||| 0.0116279 0.163399 1.22445e-05 0.000223 2.718 ||| 0-0 ||| 86 81669 +en ||| true in some ||| 1 0.717907 1.22445e-05 6.10473e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| true in ||| 0.0740741 0.717907 2.44891e-05 8.54526e-05 2.718 ||| 0-1 ||| 27 81669 +en ||| true of ||| 0.01 0.0080355 1.22445e-05 1.39665e-06 2.718 ||| 0-1 ||| 100 81669 +en ||| truly ||| 0.00337838 0.0802676 1.22445e-05 0.0002141 2.718 ||| 0-0 ||| 296 81669 +en ||| trust them much at ||| 1 0.351161 1.22445e-05 6.01606e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| trust ||| 0.0151976 0.13852 6.12227e-05 0.0006513 2.718 ||| 0-0 ||| 329 81669 +en ||| trusted ||| 0.0204082 0.325301 1.22445e-05 0.0002409 2.718 ||| 0-0 ||| 49 81669 +en ||| try that again . ) In ||| 1 0.0917031 1.22445e-05 3.78312e-19 2.718 ||| 0-5 ||| 1 81669 +en ||| turn it into ||| 0.166667 0.414384 1.22445e-05 2.77902e-07 2.718 ||| 0-2 ||| 6 81669 +en ||| turn out to be ||| 0.0227273 0.0189899 1.22445e-05 4.17275e-10 2.718 ||| 0-2 ||| 44 81669 +en ||| turn out to ||| 0.0434783 0.0189899 2.44891e-05 4.0487e-08 2.718 ||| 0-2 ||| 46 81669 +en ||| turn up in ||| 0.5 0.717907 1.22445e-05 8.00937e-07 2.718 ||| 0-2 ||| 2 81669 +en ||| turned in ||| 0.5 0.717907 1.22445e-05 0.000120306 2.718 ||| 0-1 ||| 2 81669 +en ||| turned into ||| 0.0208333 0.414384 1.22445e-05 4.89708e-06 2.718 ||| 0-1 ||| 48 81669 +en ||| turning ||| 0.0106383 0.0185874 2.44891e-05 4.46e-05 2.718 ||| 0-0 ||| 188 81669 +en ||| turns as ||| 0.25 0.0296498 1.22445e-05 9.80852e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| turns to ||| 0.0714286 0.0189899 1.22445e-05 2.36696e-06 2.718 ||| 0-1 ||| 14 81669 +en ||| twice in ||| 0.25 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| typically by ||| 0.333333 0.065573 1.22445e-05 5.64669e-07 2.718 ||| 0-1 ||| 3 81669 +en ||| typically ||| 0.00507614 0.0033003 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 197 81669 +en ||| ubiquitous terrorist networks capable ||| 1 0.0487805 1.22445e-05 1.01121e-18 2.718 ||| 0-0 ||| 1 81669 +en ||| ubiquitous terrorist networks ||| 1 0.0487805 1.22445e-05 6.76845e-15 2.718 ||| 0-0 ||| 1 81669 +en ||| ubiquitous terrorist ||| 1 0.0487805 1.22445e-05 3.471e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| ubiquitous ||| 0.0344828 0.0487805 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 29 81669 +en ||| ultimately ||| 0.00222717 0.248428 1.22445e-05 0.0021145 2.718 ||| 0-0 ||| 449 81669 +en ||| uncertainty in the wake ||| 1 0.717907 1.22445e-05 1.09254e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| uncertainty in the ||| 0.5 0.717907 1.22445e-05 1.68342e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| uncertainty in ||| 0.142857 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 7 81669 +en ||| under President ||| 0.0192308 0.0957592 1.22445e-05 1.94667e-07 2.718 ||| 0-0 ||| 52 81669 +en ||| under armed guard in ||| 1 0.717907 1.22445e-05 4.06635e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| under development ||| 0.142857 0.0957592 1.22445e-05 3.16451e-07 2.718 ||| 0-0 ||| 7 81669 +en ||| under severely ||| 1 0.0957592 1.22445e-05 6.0892e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| under these ||| 0.0454545 0.0957592 1.22445e-05 1.43574e-06 2.718 ||| 0-0 ||| 22 81669 +en ||| under way ||| 0.105263 0.0957592 2.44891e-05 2.84731e-06 2.718 ||| 0-0 ||| 19 81669 +en ||| under ||| 0.070343 0.0957592 0.00198362 0.0018736 2.718 ||| 0-0 ||| 2303 81669 +en ||| underground ||| 0.0151515 0.0714286 1.22445e-05 6.25e-05 2.718 ||| 0-0 ||| 66 81669 +en ||| underpinnings of ||| 0.25 0.0080355 1.22445e-05 5.17868e-08 2.718 ||| 0-1 ||| 4 81669 +en ||| underscored daily ||| 1 0.136364 1.22445e-05 6.955e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| underscored ||| 0.0833333 0.136364 2.44891e-05 5.35e-05 2.718 ||| 0-0 ||| 24 81669 +en ||| undertake them all ||| 0.5 0.0013515 1.22445e-05 3.73943e-12 2.718 ||| 0-2 ||| 2 81669 +en ||| underway in ||| 0.107143 0.717907 3.67336e-05 3.16365e-05 2.718 ||| 0-1 ||| 28 81669 +en ||| unfolding in ||| 0.0333333 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 30 81669 +en ||| uniquely modern ||| 0.166667 0.0652174 1.22445e-05 8.71e-10 2.718 ||| 0-0 ||| 6 81669 +en ||| uniquely ||| 0.0526316 0.0652174 2.44891e-05 2.68e-05 2.718 ||| 0-0 ||| 38 81669 +en ||| unleashed in ||| 0.5 0.717907 2.44891e-05 9.50556e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| unlike any in ||| 0.333333 0.717907 1.22445e-05 1.44041e-08 2.718 ||| 0-2 ||| 3 81669 +en ||| unlike in ||| 0.0277778 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 36 81669 +en ||| unmet at ||| 1 0.351161 1.22445e-05 2.37594e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| unstuck in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| unwilling to be ||| 0.5 0.0189899 1.22445e-05 4.65005e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| unwilling to ||| 0.0136986 0.0189899 1.22445e-05 4.51181e-07 2.718 ||| 0-1 ||| 73 81669 +en ||| up a re-bar plant in the ||| 1 0.717907 1.22445e-05 5.50057e-16 2.718 ||| 0-4 ||| 1 81669 +en ||| up a re-bar plant in ||| 1 0.717907 1.22445e-05 1.03531e-14 2.718 ||| 0-4 ||| 1 81669 +en ||| up and ||| 0.025 0.00542025 1.22445e-05 4.10836e-08 2.718 ||| 0-0 0-1 ||| 40 81669 +en ||| up as ||| 0.0909091 0.0296498 1.22445e-05 2.24625e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| up at great ||| 0.25 0.0044763 1.22445e-05 4.13479e-10 2.718 ||| 0-2 ||| 4 81669 +en ||| up at ||| 0.166667 0.351161 1.22445e-05 0.00011418 2.718 ||| 0-1 ||| 6 81669 +en ||| up by ||| 0.03125 0.065573 1.22445e-05 3.87661e-05 2.718 ||| 0-1 ||| 32 81669 +en ||| up for ||| 0.0172414 0.0255404 1.22445e-05 2.43021e-05 2.718 ||| 0-1 ||| 58 81669 +en ||| up in ||| 0.26087 0.717907 0.000220402 0.00152269 2.718 ||| 0-1 ||| 69 81669 +en ||| up into ||| 0.4 0.414384 2.44891e-05 6.19814e-05 2.718 ||| 0-1 ||| 5 81669 +en ||| up on ||| 0.105263 0.336652 2.44891e-05 0.00021203 2.718 ||| 0-1 ||| 19 81669 +en ||| up to ||| 0.00793651 0.0189899 3.67336e-05 5.42059e-05 2.718 ||| 0-1 ||| 378 81669 +en ||| up ||| 0.0144778 0.0107098 0.000171424 0.0003836 2.718 ||| 0-0 ||| 967 81669 +en ||| upbringing amid ||| 0.333333 0.373134 1.22445e-05 1.4495e-09 2.718 ||| 0-1 ||| 3 81669 +en ||| upheaval in ||| 0.25 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 4 81669 +en ||| upheld in ||| 0.5 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| upon him ||| 0.5 0.117761 1.22445e-05 3.78165e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| upon in ||| 0.125 0.717907 1.22445e-05 0.000129812 2.718 ||| 0-1 ||| 8 81669 +en ||| upon many ||| 0.5 0.117761 1.22445e-05 3.18085e-07 2.718 ||| 0-0 ||| 2 81669 +en ||| upon us ||| 0.0625 0.117761 1.22445e-05 3.1101e-07 2.718 ||| 0-0 ||| 16 81669 +en ||| upon ||| 0.0784314 0.117761 0.000195913 0.0005442 2.718 ||| 0-0 ||| 204 81669 +en ||| upstream ||| 0.0909091 0.047619 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 11 81669 +en ||| urban ||| 0.00390625 0.0115385 1.22445e-05 2.68e-05 2.718 ||| 0-0 ||| 256 81669 +en ||| us in ||| 0.2 0.717907 3.67336e-05 0.000278586 2.718 ||| 0-1 ||| 15 81669 +en ||| usage as ||| 1 0.0296498 1.22445e-05 4.67415e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| use in ||| 0.05 0.717907 1.22445e-05 0.000170954 2.718 ||| 0-1 ||| 20 81669 +en ||| use within ||| 1 0.193123 1.22445e-05 1.28286e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| used in other ||| 1 0.717907 1.22445e-05 1.93507e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| used in ||| 0.0273973 0.717907 2.44891e-05 0.000164617 2.718 ||| 0-1 ||| 73 81669 +en ||| usefully employed in ||| 1 0.717907 1.22445e-05 1.23572e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| uttered in ||| 0.166667 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| value in defining now ||| 0.0833333 0.717907 1.22445e-05 9.17941e-13 2.718 ||| 0-1 ||| 12 81669 +en ||| value in defining ||| 0.0833333 0.717907 1.22445e-05 6.17228e-10 2.718 ||| 0-1 ||| 12 81669 +en ||| value in ||| 0.0384615 0.717907 1.22445e-05 9.49581e-05 2.718 ||| 0-1 ||| 26 81669 +en ||| varied markedly within ||| 0.125 0.193123 1.22445e-05 3.86376e-12 2.718 ||| 0-2 ||| 8 81669 +en ||| various sensing devices in ||| 1 0.717907 1.22445e-05 2.67328e-15 2.718 ||| 0-3 ||| 1 81669 +en ||| venture into ||| 1 0.414384 1.22445e-05 3.86925e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| very differently in ||| 1 0.717907 1.22445e-05 5.35036e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| very high ||| 0.0185185 0.0069085 1.22445e-05 5.07761e-08 2.718 ||| 0-0 ||| 54 81669 +en ||| very ||| 0.00340599 0.0069085 6.12227e-05 0.0001071 2.718 ||| 0-0 ||| 1468 81669 +en ||| vicinity to include international ||| 1 0.0189899 1.22445e-05 9.75995e-15 2.718 ||| 0-1 ||| 1 81669 +en ||| vicinity to include ||| 1 0.0189899 1.22445e-05 3.9546e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| vicinity to ||| 1 0.0189899 1.22445e-05 2.2559e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| viewed against ||| 0.25 0.0888521 1.22445e-05 1.30712e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| viewing from ||| 1 0.0190577 1.22445e-05 7.51582e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| views in ||| 0.333333 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| views much of ||| 1 0.0080355 1.22445e-05 6.70801e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| vilify as ||| 0.5 0.0296498 1.22445e-05 4.67415e-08 2.718 ||| 0-1 ||| 2 81669 +en ||| vindicated in ||| 1 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| visible in ||| 0.0666667 0.717907 1.22445e-05 1.26741e-05 2.718 ||| 0-1 ||| 15 81669 +en ||| visited upon many ||| 0.5 0.117761 1.22445e-05 4.1351e-12 2.718 ||| 0-1 ||| 2 81669 +en ||| visited upon ||| 0.333333 0.117761 1.22445e-05 7.0746e-09 2.718 ||| 0-1 ||| 3 81669 +en ||| vote for back in ||| 1 0.717907 1.22445e-05 3.97965e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| vote in ||| 0.02 0.717907 1.22445e-05 6.01532e-05 2.718 ||| 0-1 ||| 50 81669 +en ||| voted in ||| 0.111111 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| voters back ||| 0.5 0.0405569 1.22445e-05 3.49115e-08 2.718 ||| 0-1 ||| 2 81669 +en ||| votes in ||| 0.0434783 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 23 81669 +en ||| voting rates in ||| 1 0.717907 1.22445e-05 3.88809e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| vouchers in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| waged in ||| 0.4 0.717907 2.44891e-05 6.33704e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| wake of ||| 0.0136986 0.0080355 1.22445e-05 5.17071e-07 2.718 ||| 0-1 ||| 73 81669 +en ||| war in ||| 0.00803213 0.717907 2.44891e-05 6.01532e-05 2.718 ||| 0-1 ||| 249 81669 +en ||| warrant ||| 0.0144928 0.0307692 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 69 81669 +en ||| wars of ||| 0.0454545 0.0034722 1.22445e-05 4.80887e-07 2.718 ||| 0-0 ||| 22 81669 +en ||| wars ||| 0.00195312 0.0034722 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 512 81669 +en ||| wartime ||| 0.04 0.134328 1.22445e-05 8.03e-05 2.718 ||| 0-0 ||| 25 81669 +en ||| warts on ||| 1 0.336652 1.22445e-05 8.8241e-07 2.718 ||| 0-1 ||| 1 81669 +en ||| was a ||| 0.00164204 0.0004722 1.22445e-05 2.15241e-06 2.718 ||| 0-0 ||| 609 81669 +en ||| was announced on ||| 1 0.336652 1.22445e-05 1.3341e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| was at the ||| 0.037037 0.351161 1.22445e-05 7.34033e-06 2.718 ||| 0-1 ||| 27 81669 +en ||| was at ||| 0.0877193 0.351161 6.12227e-05 0.000138159 2.718 ||| 0-1 ||| 57 81669 +en ||| was born in ||| 0.0625 0.717907 1.22445e-05 7.18564e-08 2.718 ||| 0-2 ||| 16 81669 +en ||| was done ||| 0.0294118 0.0004722 1.22445e-05 1.25083e-08 2.718 ||| 0-0 ||| 34 81669 +en ||| was during ||| 0.166667 0.0947187 1.22445e-05 5.5641e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| was educated at ||| 1 0.351161 1.22445e-05 4.49017e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| was from ||| 1 0.0190577 1.22445e-05 1.0926e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| was held at ||| 0.2 0.351161 1.22445e-05 6.55012e-08 2.718 ||| 0-2 ||| 5 81669 +en ||| was identified in ||| 1 0.717907 1.22445e-05 5.98803e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| was in a position to tell their ||| 1 0.717907 1.22445e-05 2.10849e-16 2.718 ||| 0-1 ||| 1 81669 +en ||| was in a position to tell ||| 1 0.717907 1.22445e-05 1.17635e-13 2.718 ||| 0-1 ||| 1 81669 +en ||| was in a position to ||| 0.5 0.717907 1.22445e-05 9.5328e-10 2.718 ||| 0-1 ||| 2 81669 +en ||| was in a position ||| 0.333333 0.717907 1.22445e-05 1.15563e-08 2.718 ||| 0-1 ||| 3 81669 +en ||| was in a ||| 0.142857 0.717907 1.22445e-05 7.41263e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| was in ||| 0.12766 0.717907 0.000220402 0.00184247 2.718 ||| 0-1 ||| 141 81669 +en ||| was mentioned on ||| 1 0.336652 1.22445e-05 5.00287e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| was on ||| 0.025 0.336652 1.22445e-05 0.000256557 2.718 ||| 0-1 ||| 40 81669 +en ||| was once ||| 0.0227273 0.0345926 1.22445e-05 2.56301e-06 2.718 ||| 0-1 ||| 44 81669 +en ||| was running ||| 0.1 0.0151057 1.22445e-05 1.68575e-07 2.718 ||| 0-1 ||| 10 81669 +en ||| was set up in ||| 0.5 0.717907 1.22445e-05 4.85922e-09 2.718 ||| 0-3 ||| 2 81669 +en ||| was ||| 0.00040833 0.0004722 4.89782e-05 5.35e-05 2.718 ||| 0-0 ||| 9796 81669 +en ||| watched closely in ||| 1 0.717907 1.22445e-05 1.44009e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| watches , ||| 1 0.142857 1.22445e-05 1.81801e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| watches ||| 0.125 0.142857 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 8 81669 +en ||| water tankers move under armed guard in ||| 1 0.717907 1.22445e-05 5.21561e-26 2.718 ||| 0-6 ||| 1 81669 +en ||| way ahead ||| 0.111111 0.0107143 1.22445e-05 8.13039e-08 2.718 ||| 0-1 ||| 9 81669 +en ||| way behind ||| 0.5 0.0249406 1.22445e-05 2.84792e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| way in ||| 0.0555556 0.717907 3.67336e-05 0.0007408 2.718 ||| 0-1 ||| 54 81669 +en ||| way into ||| 0.0588235 0.414384 1.22445e-05 3.01543e-05 2.718 ||| 0-1 ||| 17 81669 +en ||| way on ||| 0.25 0.336652 1.22445e-05 0.000103154 2.718 ||| 0-1 ||| 4 81669 +en ||| way to ||| 0.00701754 0.0189899 4.89782e-05 2.63715e-05 2.718 ||| 0-1 ||| 570 81669 +en ||| way toward determining ||| 0.5 0.0354374 1.22445e-05 8.46055e-12 2.718 ||| 0-1 ||| 2 81669 +en ||| way toward ||| 0.0952381 0.0354374 2.44891e-05 4.33874e-07 2.718 ||| 0-1 ||| 21 81669 +en ||| way towards ||| 0.0909091 0.0120805 1.22445e-05 1.22032e-07 2.718 ||| 0-1 ||| 11 81669 +en ||| we -- ||| 0.2 0.0010913 1.22445e-05 4.03636e-07 2.718 ||| 0-0 ||| 5 81669 +en ||| we are about ||| 0.25 0.0371521 1.22445e-05 4.21144e-08 2.718 ||| 0-2 ||| 4 81669 +en ||| we at ||| 0.75 0.351161 3.67336e-05 8.47479e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| we by ||| 0.333333 0.065573 1.22445e-05 2.87733e-05 2.718 ||| 0-1 ||| 3 81669 +en ||| we can pose ||| 0.5 0.0263158 1.22445e-05 1.08955e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| we certainly ||| 0.5 0.0065147 1.22445e-05 1.2404e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| we in ||| 0.323529 0.717907 0.00013469 0.00113019 2.718 ||| 0-1 ||| 34 81669 +en ||| we make them . ||| 1 2e-05 1.22445e-05 1.60125e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| we now ||| 0.0526316 0.0005036 1.22445e-05 6.21358e-08 2.718 ||| 0-1 ||| 19 81669 +en ||| we save in ||| 0.166667 0.717907 1.22445e-05 4.40773e-08 2.718 ||| 0-2 ||| 6 81669 +en ||| we were in ||| 0.25 0.717907 1.22445e-05 2.5028e-06 2.718 ||| 0-2 ||| 4 81669 +en ||| we ||| 0.0026096 0.0010913 6.12227e-05 8.03e-05 2.718 ||| 0-0 ||| 1916 81669 +en ||| weak on ||| 0.333333 0.336652 1.22445e-05 4.40526e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| weapons in ||| 0.0833333 0.717907 1.22445e-05 3.16365e-05 2.718 ||| 0-1 ||| 12 81669 +en ||| wear in ||| 0.333333 0.717907 1.22445e-05 6.33704e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| week in ||| 0.0909091 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| weight around ||| 0.111111 0.187406 1.22445e-05 1.52229e-07 2.718 ||| 0-1 ||| 9 81669 +en ||| welcome in ||| 0.0909091 0.717907 1.22445e-05 1.58426e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| well as in ||| 0.125 0.717907 1.22445e-05 7.14713e-06 2.718 ||| 0-2 ||| 8 81669 +en ||| well as ||| 0.0166113 0.0296498 6.12227e-05 1.24692e-05 2.718 ||| 0-1 ||| 301 81669 +en ||| well in ||| 0.02 0.717907 1.22445e-05 0.000845264 2.718 ||| 0-1 ||| 50 81669 +en ||| well on its ||| 0.5 0.336652 1.22445e-05 2.33893e-07 2.718 ||| 0-1 ||| 2 81669 +en ||| well on ||| 0.0714286 0.336652 1.22445e-05 0.0001177 2.718 ||| 0-1 ||| 14 81669 +en ||| well placed ||| 0.1 0.0804598 1.22445e-05 2.16577e-07 2.718 ||| 0-1 ||| 10 81669 +en ||| went on ||| 0.0294118 0.336652 1.22445e-05 1.67522e-05 2.718 ||| 0-1 ||| 34 81669 +en ||| were at work over ||| 0.333333 0.351161 1.22445e-05 3.39748e-11 2.718 ||| 0-1 ||| 3 81669 +en ||| were at work ||| 0.333333 0.351161 1.22445e-05 4.88916e-08 2.718 ||| 0-1 ||| 3 81669 +en ||| were at ||| 0.0588235 0.351161 2.44891e-05 8.09464e-05 2.718 ||| 0-1 ||| 34 81669 +en ||| were delivered ||| 0.5 0.001425 1.22445e-05 5.73342e-09 2.718 ||| 0-0 ||| 2 81669 +en ||| were enraged in ||| 1 0.717907 1.22445e-05 7.01669e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| were for the ||| 0.2 0.0255404 1.22445e-05 9.15348e-07 2.718 ||| 0-1 ||| 5 81669 +en ||| were for ||| 0.25 0.0255404 2.44891e-05 1.72286e-05 2.718 ||| 0-1 ||| 8 81669 +en ||| were in ||| 0.0985916 0.717907 8.57118e-05 0.00107949 2.718 ||| 0-1 ||| 71 81669 +en ||| were involved ||| 0.0833333 0.0340633 1.22445e-05 2.76591e-07 2.718 ||| 0-1 ||| 12 81669 +en ||| were known at ||| 1 0.351161 1.22445e-05 1.7873e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| were laid down in ||| 0.5 0.717907 1.22445e-05 5.12639e-11 2.718 ||| 0-3 ||| 2 81669 +en ||| were living in ||| 0.333333 0.717907 1.22445e-05 1.82326e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| were placed on ||| 1 0.336652 1.22445e-05 1.17096e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| were publicly thrashed ||| 0.5 0.0943396 1.22445e-05 2.56793e-12 2.718 ||| 0-1 ||| 2 81669 +en ||| were publicly ||| 0.25 0.0943396 1.22445e-05 3.95067e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| were put at ||| 1 0.351161 1.22445e-05 9.77752e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| were recorded in ||| 1 0.717907 1.22445e-05 2.10501e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| were then ||| 0.0833333 0.0154747 1.22445e-05 7.31006e-07 2.718 ||| 0-1 ||| 12 81669 +en ||| were to result in ||| 1 0.717907 1.22445e-05 3.70081e-08 2.718 ||| 0-3 ||| 1 81669 +en ||| were to ||| 0.0119048 0.0189899 1.22445e-05 3.84284e-05 2.718 ||| 0-1 ||| 84 81669 +en ||| were ||| 0.00140056 0.001425 7.34673e-05 8.03e-05 2.718 ||| 0-0 ||| 4284 81669 +en ||| what 's right ||| 1 0.0511674 1.22445e-05 1.41271e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| what of ||| 0.2 0.0080355 1.22445e-05 7.86442e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| what ||| 0.000181719 9.91e-05 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 5503 81669 +en ||| when Israel ||| 0.0625 0.0709982 1.22445e-05 4.54729e-07 2.718 ||| 0-0 ||| 16 81669 +en ||| when asked , " What ||| 1 0.0709982 1.22445e-05 1.59148e-14 2.718 ||| 0-0 ||| 1 81669 +en ||| when asked , " ||| 1 0.0709982 1.22445e-05 4.89685e-10 2.718 ||| 0-0 ||| 1 81669 +en ||| when asked , ||| 1 0.0709982 1.22445e-05 9.80527e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| when asked ||| 0.0769231 0.0709982 1.22445e-05 4.80014e-07 2.718 ||| 0-0 ||| 13 81669 +en ||| when doing ||| 0.2 0.0709982 1.22445e-05 1.41476e-06 2.718 ||| 0-0 ||| 5 81669 +en ||| when hard ||| 0.5 0.0709982 1.22445e-05 1.74306e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| when he said ||| 0.0909091 0.0709982 1.22445e-05 3.23578e-09 2.718 ||| 0-0 ||| 11 81669 +en ||| when he ||| 0.015873 0.0709982 1.22445e-05 1.21509e-05 2.718 ||| 0-0 ||| 63 81669 +en ||| when it comes ||| 0.00689655 0.0709982 1.22445e-05 3.49771e-08 2.718 ||| 0-0 ||| 145 81669 +en ||| when it ||| 0.0622407 0.0709982 0.000183668 0.000103574 2.718 ||| 0-0 ||| 241 81669 +en ||| when leaders ||| 0.0833333 0.0709982 1.22445e-05 4.54729e-07 2.718 ||| 0-0 ||| 12 81669 +en ||| when push comes to ||| 0.25 0.0709982 1.22445e-05 1.47804e-11 2.718 ||| 0-0 ||| 4 81669 +en ||| when push comes ||| 0.5 0.0709982 1.22445e-05 1.79178e-10 2.718 ||| 0-0 ||| 2 81669 +en ||| when push ||| 0.333333 0.0709982 1.22445e-05 5.30582e-07 2.718 ||| 0-0 ||| 3 81669 +en ||| when they fell ||| 1 0.0709982 1.22445e-05 3.74535e-09 2.718 ||| 0-0 ||| 1 81669 +en ||| when they were in ||| 1 0.717907 1.22445e-05 2.42476e-09 2.718 ||| 0-3 ||| 1 81669 +en ||| when they ||| 0.00714286 0.0709982 1.22445e-05 2.4024e-05 2.718 ||| 0-0 ||| 140 81669 +en ||| when today ||| 1 0.0709982 1.22445e-05 1.36419e-06 2.718 ||| 0-0 ||| 1 81669 +en ||| when ||| 0.0187688 0.0709982 0.00153057 0.0038899 2.718 ||| 0-0 ||| 6660 81669 +en ||| where and ||| 0.111111 0.21284 1.22445e-05 5.04195e-05 2.718 ||| 0-0 ||| 9 81669 +en ||| where convicts ||| 0.5 0.21284 1.22445e-05 3.90286e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| where coordination ||| 1 0.21284 1.22445e-05 3.90286e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| where it ||| 0.0357143 0.21284 2.44891e-05 0.000159876 2.718 ||| 0-0 ||| 56 81669 +en ||| where life-threatening emigration ||| 0.333333 0.21284 1.22445e-05 5.07372e-13 2.718 ||| 0-0 ||| 3 81669 +en ||| where life-threatening ||| 0.333333 0.21284 1.22445e-05 3.90286e-08 2.718 ||| 0-0 ||| 3 81669 +en ||| where she lay ||| 0.333333 0.21284 1.22445e-05 3.82126e-10 2.718 ||| 0-0 ||| 3 81669 +en ||| where she ||| 0.111111 0.21284 1.22445e-05 5.88791e-06 2.718 ||| 0-0 ||| 9 81669 +en ||| where the ||| 0.00309598 0.21284 1.22445e-05 0.000319011 2.718 ||| 0-0 ||| 323 81669 +en ||| where there is ||| 0.0769231 0.21284 1.22445e-05 2.11453e-07 2.718 ||| 0-0 ||| 13 81669 +en ||| where there ||| 0.25 0.21284 1.22445e-05 1.2829e-05 2.718 ||| 0-0 ||| 4 81669 +en ||| where they ||| 0.0185185 0.21284 1.22445e-05 3.70832e-05 2.718 ||| 0-0 ||| 54 81669 +en ||| where ||| 0.0701933 0.21284 0.00253462 0.0060044 2.718 ||| 0-0 ||| 2949 81669 +en ||| whereby ||| 0.0283019 0.0985915 3.67336e-05 6.25e-05 2.718 ||| 0-0 ||| 106 81669 +en ||| wherever in ||| 0.333333 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| whether in ||| 0.0384615 0.717907 1.22445e-05 8.23328e-05 2.718 ||| 0-1 ||| 26 81669 +en ||| which are part of ||| 0.5 0.0080355 1.22445e-05 4.37236e-11 2.718 ||| 0-3 ||| 2 81669 +en ||| which enacted ||| 0.25 0.0322581 1.22445e-05 3.21975e-08 2.718 ||| 0-1 ||| 4 81669 +en ||| which is patterned after ||| 0.166667 0.0037224 1.22445e-05 1.60762e-14 2.718 ||| 0-3 ||| 6 81669 +en ||| which is second only to ||| 1 0.119291 1.22445e-05 3.5088e-12 2.718 ||| 0-2 ||| 1 81669 +en ||| which is second only ||| 1 0.119291 1.22445e-05 4.2536e-11 2.718 ||| 0-2 ||| 1 81669 +en ||| which is second ||| 1 0.119291 1.22445e-05 3.92217e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| which requires taking into account ocean currents ||| 1 0.414384 1.22445e-05 7.44413e-27 2.718 ||| 0-3 ||| 1 81669 +en ||| which requires taking into account ocean ||| 1 0.414384 1.22445e-05 1.14525e-21 2.718 ||| 0-3 ||| 1 81669 +en ||| which requires taking into account ||| 1 0.414384 1.22445e-05 8.80962e-17 2.718 ||| 0-3 ||| 1 81669 +en ||| which requires taking into ||| 1 0.414384 1.22445e-05 7.53603e-13 2.718 ||| 0-3 ||| 1 81669 +en ||| whiff of ||| 0.142857 0.0080355 1.22445e-05 5.17868e-08 2.718 ||| 0-1 ||| 7 81669 +en ||| who fight ||| 1 0.0033613 1.22445e-05 1.81489e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| who had been settled in ||| 1 0.717907 1.22445e-05 3.06735e-14 2.718 ||| 0-4 ||| 1 81669 +en ||| whole ||| 0.00239234 0.0036101 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 418 81669 +en ||| widely circulated ||| 0.333333 0.0231481 1.22445e-05 1.7394e-09 2.718 ||| 0-0 ||| 3 81669 +en ||| widely discussed in ||| 1 0.717907 1.22445e-05 3.70337e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| widely ||| 0.00566572 0.0231481 2.44891e-05 8.92e-05 2.718 ||| 0-0 ||| 353 81669 +en ||| widespread differences in ||| 0.5 0.717907 1.22445e-05 6.17228e-10 2.718 ||| 0-2 ||| 2 81669 +en ||| widespread in ||| 0.142857 0.717907 1.22445e-05 4.74791e-05 2.718 ||| 0-1 ||| 7 81669 +en ||| will , at ||| 0.333333 0.351161 2.44891e-05 5.1594e-05 2.718 ||| 0-2 ||| 6 81669 +en ||| will , in ||| 0.153846 0.717907 2.44891e-05 0.000688051 2.718 ||| 0-2 ||| 13 81669 +en ||| will at ||| 0.230769 0.351161 3.67336e-05 0.000252577 2.718 ||| 0-1 ||| 13 81669 +en ||| will be available within ||| 1 0.193123 1.22445e-05 7.10668e-11 2.718 ||| 0-3 ||| 1 81669 +en ||| will be burned in ||| 0.666667 0.717907 2.44891e-05 6.7695e-10 2.718 ||| 0-3 ||| 3 81669 +en ||| will be determined in ||| 1 0.717907 1.22445e-05 2.25303e-09 2.718 ||| 0-3 ||| 1 81669 +en ||| will be in the ||| 0.333333 0.717907 1.22445e-05 1.84441e-06 2.718 ||| 0-2 ||| 3 81669 +en ||| will be in ||| 0.0645161 0.717907 2.44891e-05 3.47154e-05 2.718 ||| 0-2 ||| 31 81669 +en ||| will develop in ||| 1 0.717907 1.22445e-05 3.06181e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| will explain a ||| 1 0.0011873 1.22445e-05 9.61796e-11 2.718 ||| 0-2 ||| 1 81669 +en ||| will fall by a ||| 1 0.065573 1.22445e-05 7.84197e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| will fall by ||| 0.2 0.065573 1.22445e-05 1.94919e-08 2.718 ||| 0-2 ||| 5 81669 +en ||| will find out in ||| 1 0.717907 1.22445e-05 6.8891e-09 2.718 ||| 0-3 ||| 1 81669 +en ||| will meet at ||| 0.166667 0.351161 1.22445e-05 4.75602e-08 2.718 ||| 0-2 ||| 6 81669 +en ||| will remain in ||| 0.111111 0.717907 1.22445e-05 1.11559e-06 2.718 ||| 0-2 ||| 9 81669 +en ||| will require adequate economic incentives . in ||| 1 0.717907 1.22445e-05 2.09497e-22 2.718 ||| 0-6 ||| 1 81669 +en ||| will turn out to ||| 0.2 0.0189899 1.22445e-05 2.79761e-10 2.718 ||| 0-3 ||| 5 81669 +en ||| will ||| 0.000691563 0.0002473 3.67336e-05 3.57e-05 2.718 ||| 0-0 ||| 4338 81669 +en ||| win ||| 0.00369004 0.0032362 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 271 81669 +en ||| wisdom in ||| 0.25 0.717907 1.22445e-05 6.64902e-05 2.718 ||| 0-1 ||| 4 81669 +en ||| wishing out ||| 1 0.0096316 1.22445e-05 2.31985e-09 2.718 ||| 0-1 ||| 1 81669 +en ||| with America ||| 0.0227273 0.0232439 1.22445e-05 5.31248e-06 2.718 ||| 0-0 ||| 44 81669 +en ||| with a ||| 0.000660066 0.0232439 1.22445e-05 0.000179833 2.718 ||| 0-0 ||| 1515 81669 +en ||| with all ||| 0.0116279 0.0232439 1.22445e-05 1.15824e-05 2.718 ||| 0-0 ||| 86 81669 +en ||| with his diplomacy and leadership ||| 0.5 0.0232439 1.22445e-05 2.75667e-16 2.718 ||| 0-0 ||| 2 81669 +en ||| with his diplomacy and ||| 0.5 0.0232439 1.22445e-05 1.46398e-12 2.718 ||| 0-0 ||| 2 81669 +en ||| with his diplomacy ||| 0.5 0.0232439 1.22445e-05 1.74344e-10 2.718 ||| 0-0 ||| 2 81669 +en ||| with his ||| 0.0075188 0.0232439 1.22445e-05 4.47035e-06 2.718 ||| 0-0 ||| 133 81669 +en ||| with in ||| 1 0.717907 2.44891e-05 0.00184881 2.718 ||| 0-1 ||| 2 81669 +en ||| with regard to ||| 0.0222222 0.0232439 1.22445e-05 4.55004e-08 2.718 ||| 0-0 ||| 45 81669 +en ||| with regard ||| 0.0217391 0.0232439 1.22445e-05 5.51586e-07 2.718 ||| 0-0 ||| 46 81669 +en ||| with the ||| 0.000500626 0.0232439 2.44891e-05 0.000237484 2.718 ||| 0-0 ||| 3995 81669 +en ||| with their ill-gotten gains , ||| 0.25 0.0232439 1.22445e-05 2.48712e-15 2.718 ||| 0-0 ||| 4 81669 +en ||| with their ill-gotten gains ||| 0.25 0.0232439 1.22445e-05 1.21756e-14 2.718 ||| 0-0 ||| 4 81669 +en ||| with their ill-gotten ||| 0.25 0.0232439 1.22445e-05 1.04154e-10 2.718 ||| 0-0 ||| 4 81669 +en ||| with their ||| 0.00332226 0.0232439 1.22445e-05 8.01185e-06 2.718 ||| 0-0 ||| 301 81669 +en ||| with ||| 0.0167493 0.0232439 0.00438355 0.0044699 2.718 ||| 0-0 ||| 21374 81669 +en ||| within a ||| 0.0410959 0.193123 7.34673e-05 0.000147169 2.718 ||| 0-0 ||| 146 81669 +en ||| within any ||| 0.5 0.193123 1.22445e-05 3.32585e-06 2.718 ||| 0-0 ||| 2 81669 +en ||| within ministry ||| 0.5 0.193123 1.22445e-05 2.3777e-08 2.718 ||| 0-0 ||| 2 81669 +en ||| within sight ||| 1 0.193123 1.22445e-05 4.7554e-08 2.718 ||| 0-0 ||| 1 81669 +en ||| within the ||| 0.00359066 0.193123 2.44891e-05 0.000194348 2.718 ||| 0-0 ||| 557 81669 +en ||| within ||| 0.183193 0.193123 0.00400397 0.003658 2.718 ||| 0-0 ||| 1785 81669 +en ||| without ||| 0.000379795 0.0004405 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 2633 81669 +en ||| woman in ||| 0.0909091 0.717907 1.22445e-05 2.53482e-05 2.718 ||| 0-1 ||| 11 81669 +en ||| won 't sit on ||| 1 0.336652 1.22445e-05 1.24341e-12 2.718 ||| 0-3 ||| 1 81669 +en ||| word in ||| 1 0.717907 1.22445e-05 3.79735e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| word to ||| 0.166667 0.0189899 1.22445e-05 1.35181e-06 2.718 ||| 0-1 ||| 6 81669 +en ||| work fine ||| 0.142857 0.037037 1.22445e-05 1.61872e-08 2.718 ||| 0-1 ||| 7 81669 +en ||| work in ||| 0.0314961 0.717907 4.89782e-05 0.000294429 2.718 ||| 0-1 ||| 127 81669 +en ||| work on ||| 0.0142857 0.336652 1.22445e-05 4.09981e-05 2.718 ||| 0-1 ||| 70 81669 +en ||| work out that way ||| 0.5 0.0096316 1.22445e-05 2.67641e-12 2.718 ||| 0-1 ||| 2 81669 +en ||| work out that ||| 0.5 0.0096316 1.22445e-05 1.76114e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| work out ||| 0.0555556 0.0096316 1.22445e-05 2.15568e-07 2.718 ||| 0-1 ||| 18 81669 +en ||| work to ||| 0.0217391 0.0189899 1.22445e-05 1.04813e-05 2.718 ||| 0-1 ||| 46 81669 +en ||| work ||| 0.0006035 0.0011601 1.22445e-05 1.78e-05 2.718 ||| 0-0 ||| 1657 81669 +en ||| worked in ||| 0.0322581 0.717907 1.22445e-05 3.79735e-05 2.718 ||| 0-1 ||| 31 81669 +en ||| workers in ||| 0.0238095 0.717907 1.22445e-05 5.06476e-05 2.718 ||| 0-1 ||| 42 81669 +en ||| working in ||| 0.0327869 0.717907 2.44891e-05 7.91643e-05 2.718 ||| 0-1 ||| 61 81669 +en ||| working on ||| 0.025 0.336652 1.22445e-05 1.10233e-05 2.718 ||| 0-1 ||| 40 81669 +en ||| working ||| 0.0106383 0.0163666 7.34673e-05 8.92e-05 2.718 ||| 0-0 ||| 564 81669 +en ||| working-class ||| 0.027027 0.0294118 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 37 81669 +en ||| world 's ||| 0.000745712 0.0068465 1.22445e-05 2.96447e-06 2.718 ||| 0-1 ||| 1341 81669 +en ||| world comes in ||| 1 0.717907 1.22445e-05 1.4432e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| world in ||| 0.0078125 0.717907 1.22445e-05 0.00042736 2.718 ||| 0-1 ||| 128 81669 +en ||| world when ||| 0.2 0.0709982 1.22445e-05 3.41028e-06 2.718 ||| 0-1 ||| 5 81669 +en ||| world with his diplomacy and leadership ||| 0.5 0.0232439 1.22445e-05 2.41678e-19 2.718 ||| 0-1 ||| 2 81669 +en ||| world with his diplomacy and ||| 0.5 0.0232439 1.22445e-05 1.28347e-15 2.718 ||| 0-1 ||| 2 81669 +en ||| world with his diplomacy ||| 0.5 0.0232439 1.22445e-05 1.52847e-13 2.718 ||| 0-1 ||| 2 81669 +en ||| world with his ||| 0.5 0.0232439 1.22445e-05 3.91915e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| world with ||| 0.027027 0.0232439 1.22445e-05 3.91876e-06 2.718 ||| 0-1 ||| 37 81669 +en ||| world ||| 0.000116482 0.0001236 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 8585 81669 +en ||| worldwide , ||| 0.0149254 0.115822 1.22445e-05 0.000204128 2.718 ||| 0-0 ||| 67 81669 +en ||| worldwide ||| 0.0022831 0.115822 1.22445e-05 0.0009993 2.718 ||| 0-0 ||| 438 81669 +en ||| worn in ||| 0.333333 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 3 81669 +en ||| worth contemplating ||| 0.25 0.147059 1.22445e-05 6.08344e-09 2.718 ||| 0-1 ||| 4 81669 +en ||| worth of net ||| 1 0.0080355 1.22445e-05 2.11912e-11 2.718 ||| 0-1 ||| 1 81669 +en ||| worth of ||| 0.222222 0.0080355 4.89782e-05 1.08673e-06 2.718 ||| 0-1 ||| 18 81669 +en ||| would , in ||| 0.0833333 0.717907 1.22445e-05 0.000460424 2.718 ||| 0-2 ||| 12 81669 +en ||| would adjust accordingly . ||| 0.5 0.286822 1.22445e-05 1.36851e-13 2.718 ||| 0-2 ||| 2 81669 +en ||| would adjust accordingly ||| 0.5 0.286822 1.22445e-05 2.97638e-11 2.718 ||| 0-2 ||| 2 81669 +en ||| would at ||| 0.0833333 0.351161 1.22445e-05 0.000169017 2.718 ||| 0-1 ||| 12 81669 +en ||| would fail in ||| 1 0.717907 1.22445e-05 2.4884e-07 2.718 ||| 0-2 ||| 1 81669 +en ||| would first appear ||| 0.5 0.0758995 1.22445e-05 2.30995e-09 2.718 ||| 0-1 ||| 2 81669 +en ||| would first ||| 0.5 0.0758995 1.22445e-05 1.2706e-05 2.718 ||| 0-1 ||| 2 81669 +en ||| would in the ||| 0.5 0.717907 1.22445e-05 0.000119754 2.718 ||| 0-1 ||| 2 81669 +en ||| would in ||| 0.363636 0.717907 4.89782e-05 0.00225399 2.718 ||| 0-1 ||| 11 81669 +en ||| would incur ||| 0.25 0.230769 1.22445e-05 2.47379e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| would lead in ||| 0.333333 0.717907 1.22445e-05 1.17095e-06 2.718 ||| 0-2 ||| 3 81669 +en ||| would lead to ||| 0.0322581 0.0189899 1.22445e-05 4.16842e-08 2.718 ||| 0-2 ||| 31 81669 +en ||| would raise interest rates to curb excess ||| 1 0.0189899 1.22445e-05 8.92852e-26 2.718 ||| 0-4 ||| 1 81669 +en ||| would raise interest rates to curb ||| 1 0.0189899 1.22445e-05 2.28936e-21 2.718 ||| 0-4 ||| 1 81669 +en ||| would raise interest rates to ||| 1 0.0189899 1.22445e-05 3.5221e-16 2.718 ||| 0-4 ||| 1 81669 +en ||| would stand in ||| 0.333333 0.717907 1.22445e-05 6.43965e-07 2.718 ||| 0-2 ||| 3 81669 +en ||| would take place at ||| 1 0.351161 1.22445e-05 1.90013e-10 2.718 ||| 0-3 ||| 1 81669 +en ||| would we save in ||| 0.166667 0.717907 1.22445e-05 2.03809e-10 2.718 ||| 0-3 ||| 6 81669 +en ||| would ||| 0.000427533 0.0001005 1.22445e-05 8.9e-06 2.718 ||| 0-0 ||| 2339 81669 +en ||| wrapped into ||| 0.25 0.414384 1.22445e-05 1.28975e-07 2.718 ||| 0-1 ||| 4 81669 +en ||| writing in ||| 0.222222 0.717907 2.44891e-05 2.84679e-05 2.718 ||| 0-1 ||| 9 81669 +en ||| written off in ||| 1 0.717907 1.22445e-05 6.18616e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| wrote in ||| 0.153846 0.717907 2.44891e-05 1.26741e-05 2.718 ||| 0-1 ||| 13 81669 +en ||| year in ||| 0.0769231 0.717907 7.34673e-05 0.000231107 2.718 ||| 0-1 ||| 78 81669 +en ||| year on year in ||| 0.5 0.717907 1.22445e-05 4.2978e-10 2.718 ||| 0-3 ||| 2 81669 +en ||| year on ||| 0.0344828 0.336652 1.22445e-05 3.21808e-05 2.718 ||| 0-1 ||| 29 81669 +en ||| years in power ||| 0.05 0.717907 1.22445e-05 8.55558e-08 2.718 ||| 0-1 ||| 20 81669 +en ||| years in ||| 0.0165289 0.717907 2.44891e-05 0.000180459 2.718 ||| 0-1 ||| 121 81669 +en ||| years of ||| 0.0020202 0.0080355 1.22445e-05 2.94946e-06 2.718 ||| 0-1 ||| 495 81669 +en ||| yes in ||| 1 0.717907 1.22445e-05 1.90111e-05 2.718 ||| 0-1 ||| 1 81669 +en ||| yet realized in ||| 1 0.717907 1.22445e-05 1.16665e-08 2.718 ||| 0-2 ||| 1 81669 +en ||| you ain 't gonna make it ||| 1 0.333333 1.22445e-05 1.46176e-21 2.718 ||| 0-1 ||| 1 81669 +en ||| you ain 't gonna make ||| 1 0.333333 1.22445e-05 5.48986e-20 2.718 ||| 0-1 ||| 1 81669 +en ||| you ain 't gonna ||| 1 0.333333 1.22445e-05 4.16434e-17 2.718 ||| 0-1 ||| 1 81669 +en ||| you ain 't ||| 1 0.333333 1.22445e-05 6.40668e-12 2.718 ||| 0-1 ||| 1 81669 +en ||| you ain ||| 1 0.333333 1.22445e-05 1.45079e-08 2.718 ||| 0-1 ||| 1 81669 +en ||| you are ||| 0.00775194 0.0001822 1.22445e-05 5.81946e-08 2.718 ||| 0-1 ||| 129 81669 +en ||| you don 't need to tell ||| 0.333333 0.0189899 1.22445e-05 4.21088e-19 2.718 ||| 0-4 ||| 3 81669 +en ||| you don 't need to ||| 0.333333 0.0189899 1.22445e-05 3.41238e-15 2.718 ||| 0-4 ||| 3 81669 +en ||| you post on ||| 1 0.336652 1.22445e-05 2.87683e-09 2.718 ||| 0-2 ||| 1 81669 +en ||| yourself on ||| 1 0.336652 1.22445e-05 1.32362e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| écoles in ||| 1 0.717907 1.22445e-05 3.16852e-06 2.718 ||| 0-1 ||| 1 81669 +en ||| … constructed at ||| 1 0.351161 1.22445e-05 1.11004e-10 2.718 ||| 0-2 ||| 1 81669 +en ||| … in ||| 1 0.717907 1.22445e-05 2.84679e-05 2.718 ||| 0-1 ||| 1 81669 +lados del Atlántico ||| side of the Atlantic , ||| 0.166667 0.0013266 0.037037 0.00111647 2.718 ||| 0-0 1-1 1-2 2-3 ||| 6 27 +lados del Atlántico ||| side of the Atlantic ||| 0.266667 0.0013266 0.148148 0.00546562 2.718 ||| 0-0 1-1 1-2 2-3 ||| 15 27 +lados del Atlántico ||| sides of the Atlantic , ||| 0.166667 0.0122444 0.037037 0.00717728 2.718 ||| 0-0 1-1 1-2 2-3 ||| 6 27 +lados del Atlántico ||| sides of the Atlantic ||| 0.777778 0.0122444 0.777778 0.0351361 2.718 ||| 0-0 1-1 1-2 2-3 ||| 27 27 +lados del ||| ends of the ||| 0.5 0.000715986 0.027027 0.0004263 2.718 ||| 0-0 1-1 1-2 ||| 2 37 +lados del ||| shores of the ||| 0.2 0.0035032 0.027027 0.0004263 2.718 ||| 0-0 1-1 1-2 ||| 5 37 +lados del ||| side of the ||| 0.0943396 0.00240922 0.135135 0.00596821 2.718 ||| 0-0 1-1 1-2 ||| 53 37 +lados del ||| sides in the ||| 0.142857 0.0091149 0.027027 0.00329658 2.718 ||| 0-0 1-1 1-2 ||| 7 37 +lados del ||| sides of the ||| 0.467742 0.022237 0.783784 0.038367 2.718 ||| 0-0 1-1 1-2 ||| 62 37 +lados ||| across ||| 0.00109409 0.0007669 0.00892857 0.006993 2.718 ||| 0-0 ||| 914 112 +lados ||| around ||| 0.000568505 0.0009995 0.00892857 0.013986 2.718 ||| 0-0 ||| 1759 112 +lados ||| ends ||| 0.00869565 0.0072993 0.00892857 0.006993 2.718 ||| 0-0 ||| 115 112 +lados ||| just ||| 0.000445038 0.000694 0.00892857 0.013986 2.718 ||| 0-0 ||| 2247 112 +lados ||| shores ||| 0.1 0.0357143 0.00892857 0.006993 2.718 ||| 0-0 ||| 10 112 +lados ||| side ||| 0.0242634 0.0245614 0.125 0.0979021 2.718 ||| 0-0 ||| 577 112 +lados ||| sides , ||| 0.0322581 0.2267 0.00892857 0.128562 2.718 ||| 0-0 ||| 31 112 +lados ||| sides of the counter ||| 1 0.117698 0.00892857 6.31727e-06 2.718 ||| 0-0 0-3 ||| 1 112 +lados ||| sides to ||| 0.0526316 0.2267 0.00892857 0.0519169 2.718 ||| 0-0 ||| 19 112 +lados ||| sides ||| 0.218673 0.2267 0.794643 0.629371 2.718 ||| 0-0 ||| 407 112 +lados ||| worldwide ||| 0.0022831 0.0010341 0.00892857 0.006993 2.718 ||| 0-0 ||| 438 112 +los políticos en ||| in ||| 2.48327e-05 1.61701e-06 0.2 0.487465 2.718 ||| 2-0 ||| 80539 10 +los políticos en ||| politicians in ||| 0.3 0.167793 0.6 0.0908939 2.718 ||| 0-0 1-0 2-1 ||| 20 10 +los políticos en ||| politicians on the ||| 1 0.078684 0.1 0.000672443 2.718 ||| 0-0 1-0 2-1 ||| 1 10 +los políticos en ||| politicians on ||| 0.5 0.078684 0.1 0.0126566 2.718 ||| 0-0 1-0 2-1 ||| 2 10 +los políticos ||| 's politicians ||| 0.4 0.127602 0.0237691 0.00365157 2.718 ||| 0-0 0-1 1-1 ||| 35 589 +los políticos ||| , politicians ||| 0.0701754 0.233725 0.00679117 0.0380888 2.718 ||| 0-1 1-1 ||| 57 589 +los políticos ||| America 's politicians ||| 0.2 0.127602 0.00169779 4.33989e-06 2.718 ||| 0-1 0-2 1-2 ||| 5 589 +los políticos ||| Bangladesh 's ||| 0.166667 0.000352871 0.00169779 9.16307e-06 2.718 ||| 1-0 0-1 ||| 6 589 +los políticos ||| Macedonian politicians ||| 1 0.147744 0.00169779 3.56771e-06 2.718 ||| 0-0 1-1 ||| 1 589 +los políticos ||| Russia 's politicians ||| 1 0.127602 0.00169779 1.47012e-06 2.718 ||| 0-1 0-2 1-2 ||| 1 589 +los políticos ||| by getting politicians ||| 0.5 0.233725 0.00169779 1.96902e-07 2.718 ||| 0-2 1-2 ||| 2 589 +los políticos ||| by politicians ||| 0.25 0.119258 0.00679117 0.000312157 2.718 ||| 0-0 0-1 1-1 ||| 16 589 +los políticos ||| citizens ||| 0.000925069 2.1823e-05 0.00169779 0.0048667 2.718 ||| 0-0 ||| 1081 589 +los políticos ||| developing-country politicians ||| 1 0.147744 0.00169779 6.44395e-05 2.718 ||| 0-0 1-1 ||| 1 589 +los políticos ||| extremist politicians ||| 1 0.021888 0.00169779 1.07399e-05 2.718 ||| 0-0 1-1 ||| 1 589 +los políticos ||| for politicians ||| 0.0384615 0.11707 0.00169779 4.35576e-05 2.718 ||| 0-0 0-1 1-1 ||| 26 589 +los políticos ||| getting politicians ||| 0.333333 0.233725 0.00169779 2.90695e-05 2.718 ||| 0-1 1-1 ||| 3 589 +los políticos ||| its politicians ||| 0.166667 0.00430598 0.00169779 0.000350849 2.718 ||| 0-0 1-1 ||| 6 589 +los políticos ||| mainstream politicians ||| 0.5 0.233725 0.00339559 7.27204e-06 2.718 ||| 0-1 1-1 ||| 4 589 +los políticos ||| policymakers ||| 0.0215716 0.0109683 0.0237691 0.0181312 2.718 ||| 0-0 1-0 ||| 649 589 +los políticos ||| political ||| 0.000165453 0.00694528 0.00169779 0.540009 2.718 ||| 1-0 ||| 6044 589 +los políticos ||| politician ||| 0.0214286 0.00281436 0.00509338 0.0046795 2.718 ||| 1-0 ||| 140 589 +los políticos ||| politicians ' sins ||| 0.5 0.171095 0.00169779 3.67707e-08 2.718 ||| 0-0 1-0 0-1 ||| 2 589 +los políticos ||| politicians ' ||| 0.153846 0.171095 0.00339559 0.00188568 2.718 ||| 0-0 1-0 0-1 ||| 13 589 +los políticos ||| politicians , ||| 0.137931 0.233725 0.0135823 0.0380888 2.718 ||| 0-0 1-0 ||| 58 589 +los políticos ||| politicians alike ||| 1 0.233725 0.00169779 2.17975e-05 2.718 ||| 0-0 1-0 ||| 1 589 +los políticos ||| politicians are ||| 0.0357143 0.233725 0.00169779 0.00138048 2.718 ||| 0-0 1-0 ||| 28 589 +los políticos ||| politicians at ||| 1 0.233725 0.00169779 0.000553402 2.718 ||| 0-0 1-0 ||| 1 589 +los políticos ||| politicians concerned ||| 1 0.233725 0.00169779 2.17975e-05 2.718 ||| 0-0 1-0 ||| 1 589 +los políticos ||| politicians have ||| 0.1 0.233725 0.00169779 0.000962687 2.718 ||| 0-0 1-0 ||| 10 589 +los políticos ||| politicians in ||| 0.05 0.233725 0.00169779 0.00286507 2.718 ||| 0-0 1-0 ||| 20 589 +los políticos ||| politicians the ||| 1 0.159958 0.00169779 0.057211 2.718 ||| 0-0 1-0 0-1 ||| 1 589 +los políticos ||| politicians to ||| 0.214286 0.233725 0.0101868 0.0153813 2.718 ||| 0-0 1-0 ||| 28 589 +los políticos ||| politicians who are ||| 0.5 0.233725 0.00169779 1.40753e-06 2.718 ||| 0-0 1-0 ||| 2 589 +los políticos ||| politicians who ||| 0.03125 0.233725 0.00169779 0.000190117 2.718 ||| 0-0 1-0 ||| 32 589 +los políticos ||| politicians will ||| 0.5 0.233725 0.00169779 0.00128844 2.718 ||| 0-0 1-0 ||| 2 589 +los políticos ||| politicians ||| 0.545866 0.233725 0.818336 0.186463 2.718 ||| 0-0 1-0 ||| 883 589 +los políticos ||| politics ||| 0.00218659 0.000226118 0.00509338 0.0060833 2.718 ||| 1-0 ||| 1372 589 +los políticos ||| the political spectrum ||| 0.0714286 0.0295011 0.00169779 4.30787e-06 2.718 ||| 0-0 1-1 ||| 14 589 +los políticos ||| the political ||| 0.0227273 0.0295011 0.00169779 0.165687 2.718 ||| 0-0 1-1 ||| 44 589 +los políticos ||| the politician ||| 0.4 0.0119544 0.00339559 0.00143578 2.718 ||| 0-0 1-1 ||| 5 589 +los políticos ||| the politicians ||| 0.857143 0.0861904 0.0203735 0.112851 2.718 ||| 0-0 1-1 ||| 14 589 +los políticos ||| the politics ||| 0.0285714 0.00096047 0.00339559 0.0018665 2.718 ||| 0-0 1-1 ||| 70 589 +los políticos ||| their politicians ||| 0.0909091 0.0111134 0.00169779 0.000909325 2.718 ||| 0-0 1-1 ||| 11 589 +los políticos ||| those on the ||| 0.0769231 1.37453e-05 0.00169779 1.59637e-06 2.718 ||| 0-0 ||| 13 589 +los políticos ||| those on ||| 0.0588235 1.37453e-05 0.00169779 3.00467e-05 2.718 ||| 0-0 ||| 17 589 +los políticos ||| those ||| 0.000321027 1.37453e-05 0.00169779 0.0076601 2.718 ||| 0-0 ||| 3115 589 +los políticos ||| today 's politicians ||| 1 0.00571286 0.00169779 2.11875e-06 2.718 ||| 0-0 1-2 ||| 1 589 +los políticos ||| with politicians ||| 0.0714286 0.000767739 0.00169779 0.000100227 2.718 ||| 0-0 1-1 ||| 14 589 +los ||| $ ||| 0.0211884 0.0327755 0.00122598 0.0009149 2.718 ||| 0-0 ||| 2171 37521 +los ||| ' ] ||| 1 0.183536 2.66517e-05 2.7588e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| ' " ||| 0.04 0.183536 2.66517e-05 5.05048e-05 2.718 ||| 0-0 ||| 25 37521 +los ||| ' balance ||| 0.333333 0.183536 2.66517e-05 1.83853e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| ' government ||| 0.333333 0.183536 2.66517e-05 5.05746e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| ' interest ||| 0.25 0.119193 2.66517e-05 1.06307e-05 2.718 ||| 0-0 0-1 ||| 4 37521 +los ||| ' leaders ||| 0.0625 0.262437 2.66517e-05 0.000117528 2.718 ||| 0-0 0-1 ||| 16 37521 +los ||| ' mean ||| 1 0.183536 2.66517e-05 2.69307e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| ' operating ||| 1 0.183536 2.66517e-05 5.90593e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| ' own ||| 0.272727 0.183536 7.99552e-05 2.11481e-05 2.718 ||| 0-0 ||| 11 37521 +los ||| ' politics ||| 0.333333 0.183536 2.66517e-05 6.56327e-07 2.718 ||| 0-0 ||| 3 37521 +los ||| ' position ||| 0.142857 0.183536 2.66517e-05 1.5766e-06 2.718 ||| 0-0 ||| 7 37521 +los ||| ' s ||| 0.1 0.183536 2.66517e-05 1.24793e-06 2.718 ||| 0-0 ||| 10 37521 +los ||| ' ||| 0.129926 0.183536 0.00562352 0.0101129 2.718 ||| 0-0 ||| 1624 37521 +los ||| 's agricultural ||| 0.1 0.0087977 2.66517e-05 4.54737e-07 2.718 ||| 0-1 ||| 10 37521 +los ||| 's existing stock ||| 0.166667 0.0611765 2.66517e-05 7.67819e-10 2.718 ||| 0-1 ||| 6 37521 +los ||| 's existing ||| 0.0625 0.0611765 2.66517e-05 3.94158e-06 2.718 ||| 0-1 ||| 16 37521 +los ||| 's fortunes ||| 0.333333 0.0363459 2.66517e-05 1.27292e-07 2.718 ||| 0-0 ||| 3 37521 +los ||| 's gross ||| 0.5 0.0366915 2.66517e-05 7.61794e-07 2.718 ||| 0-0 0-1 ||| 2 37521 +los ||| 's have been labeled as permitted ||| 0.5 0.0571429 2.66517e-05 1.72361e-18 2.718 ||| 0-3 ||| 2 37521 +los ||| 's have been labeled as ||| 0.5 0.0571429 2.66517e-05 2.21259e-14 2.718 ||| 0-3 ||| 2 37521 +los ||| 's have been labeled ||| 0.5 0.0571429 2.66517e-05 2.61675e-12 2.718 ||| 0-3 ||| 2 37521 +los ||| 's high ||| 0.05 0.0363459 2.66517e-05 9.28449e-06 2.718 ||| 0-0 ||| 20 37521 +los ||| 's highways ||| 0.5 0.0363459 2.66517e-05 1.27292e-07 2.718 ||| 0-0 ||| 2 37521 +los ||| 's killers out ||| 0.333333 0.0363459 2.66517e-05 5.64617e-10 2.718 ||| 0-0 ||| 3 37521 +los ||| 's killers ||| 0.333333 0.0363459 2.66517e-05 1.27292e-07 2.718 ||| 0-0 ||| 3 37521 +los ||| 's major ||| 0.03125 0.0363459 2.66517e-05 4.96048e-06 2.718 ||| 0-0 ||| 32 37521 +los ||| 's mass ||| 0.111111 0.0228605 2.66517e-05 1.14367e-06 2.718 ||| 0-0 0-1 ||| 9 37521 +los ||| 's own ||| 0.0113636 0.0363459 2.66517e-05 4.09528e-05 2.718 ||| 0-0 ||| 88 37521 +los ||| 's population now depends ||| 0.25 0.0026714 2.66517e-05 1.75834e-14 2.718 ||| 0-1 ||| 4 37521 +los ||| 's population now ||| 0.25 0.0026714 2.66517e-05 6.76286e-10 2.718 ||| 0-1 ||| 4 37521 +los ||| 's population ||| 0.00552486 0.0026714 2.66517e-05 4.54737e-07 2.718 ||| 0-1 ||| 181 37521 +los ||| 's restraints ||| 0.166667 0.0363459 2.66517e-05 2.54584e-07 2.718 ||| 0-0 ||| 6 37521 +los ||| 's sleek ||| 1 0.0363459 2.66517e-05 1.27292e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| 's spiritual ||| 1 0.0363459 2.66517e-05 2.54584e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| 's standards ||| 0.333333 0.0363459 2.66517e-05 1.27096e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| 's technologically challenged ||| 1 0.0363459 2.66517e-05 4.13699e-12 2.718 ||| 0-0 ||| 1 37521 +los ||| 's technologically ||| 1 0.0363459 2.66517e-05 1.27292e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| 's the ||| 0.0434783 0.145844 5.33035e-05 0.00477822 2.718 ||| 0-1 ||| 46 37521 +los ||| 's to ||| 0.1 0.0363459 2.66517e-05 0.00161544 2.718 ||| 0-0 ||| 10 37521 +los ||| 's weak ||| 0.125 0.0363459 2.66517e-05 1.27096e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| 's women ||| 0.2 0.0363459 2.66517e-05 2.2893e-06 2.718 ||| 0-0 ||| 5 37521 +los ||| 's ||| 0.0150795 0.0363459 0.00836865 0.0195834 2.718 ||| 0-0 ||| 20823 37521 +los ||| " Yes " ||| 0.0588235 0.0043103 2.66517e-05 2.41928e-10 2.718 ||| 0-1 ||| 17 37521 +los ||| " Yes ||| 0.0263158 0.0043103 2.66517e-05 4.84428e-08 2.718 ||| 0-1 ||| 38 37521 +los ||| " arrangements to borrow " ||| 0.25 0.143382 2.66517e-05 3.04584e-14 2.718 ||| 0-1 ||| 4 37521 +los ||| " arrangements to borrow ||| 0.25 0.143382 2.66517e-05 6.09888e-12 2.718 ||| 0-1 ||| 4 37521 +los ||| " arrangements to ||| 0.25 0.143382 2.66517e-05 1.56382e-07 2.718 ||| 0-1 ||| 4 37521 +los ||| " arrangements ||| 0.25 0.143382 2.66517e-05 1.89576e-06 2.718 ||| 0-1 ||| 4 37521 +los ||| " calculations ||| 1 0.217822 2.66517e-05 1.06924e-06 2.718 ||| 0-1 ||| 1 37521 +los ||| " coalition ||| 0.0833333 0.0025 2.66517e-05 4.84428e-08 2.718 ||| 0-1 ||| 12 37521 +los ||| " feminine " traits ||| 0.5 0.0833333 2.66517e-05 6.30634e-15 2.718 ||| 0-3 ||| 2 37521 +los ||| " hot ||| 0.2 0.0277778 2.66517e-05 1.45828e-07 2.718 ||| 0-1 ||| 5 37521 +los ||| " liberal " ||| 0.0555556 0.0040568 2.66517e-05 4.8635e-10 2.718 ||| 0-1 ||| 18 37521 +los ||| " liberal ||| 0.0526316 0.0040568 2.66517e-05 9.73849e-08 2.718 ||| 0-1 ||| 19 37521 +los ||| " only China can contain China ||| 1 0.0017442 2.66517e-05 1.51718e-20 2.718 ||| 0-2 ||| 1 37521 +los ||| " only China can contain ||| 1 0.0017442 2.66517e-05 2.16307e-17 2.718 ||| 0-2 ||| 1 37521 +los ||| " only China can ||| 1 0.0017442 2.66517e-05 1.10927e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| " only China ||| 1 0.0017442 2.66517e-05 6.32601e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| " real " sector and the ||| 1 0.145844 2.66517e-05 1.01981e-15 2.718 ||| 0-5 ||| 1 37521 +los ||| " sector and the ||| 1 0.145844 2.66517e-05 6.6908e-10 2.718 ||| 0-3 ||| 1 37521 +los ||| " terrorist ||| 0.5 0.0218254 2.66517e-05 5.34868e-07 2.718 ||| 0-1 ||| 2 37521 +los ||| " the ||| 0.00203252 0.145844 2.66517e-05 0.0015323 2.718 ||| 0-1 ||| 492 37521 +los ||| " traits ||| 0.25 0.0833333 2.66517e-05 1.9427e-07 2.718 ||| 0-1 ||| 4 37521 +los ||| , America ||| 0.00492611 0.136448 2.66517e-05 0.00220097 2.718 ||| 0-1 ||| 203 37521 +los ||| , Chinese ||| 0.0454545 0.0409797 2.66517e-05 0.000172976 2.718 ||| 0-1 ||| 22 37521 +los ||| , Israel ||| 0.00606061 0.0020274 2.66517e-05 7.94613e-06 2.718 ||| 0-1 ||| 165 37521 +los ||| , Wikipedia is now cited ||| 1 0.0769231 2.66517e-05 1.26933e-15 2.718 ||| 0-1 ||| 1 37521 +los ||| , Wikipedia is now ||| 1 0.0769231 2.66517e-05 9.76406e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| , Wikipedia is ||| 1 0.0769231 2.66517e-05 6.5654e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| , Wikipedia ||| 1 0.0769231 2.66517e-05 3.98328e-06 2.718 ||| 0-1 ||| 1 37521 +los ||| , Yushchenko launched the slogan " ||| 1 0.145844 2.66517e-05 3.43307e-18 2.718 ||| 0-3 ||| 1 37521 +los ||| , Yushchenko launched the slogan ||| 1 0.145844 2.66517e-05 6.87425e-16 2.718 ||| 0-3 ||| 1 37521 +los ||| , Yushchenko launched the ||| 1 0.145844 2.66517e-05 5.28788e-11 2.718 ||| 0-3 ||| 1 37521 +los ||| , all ||| 0.00282486 0.0267846 2.66517e-05 0.000433442 2.718 ||| 0-1 ||| 354 37521 +los ||| , and the ||| 0.000432339 0.145844 2.66517e-05 0.000526288 2.718 ||| 0-2 ||| 2313 37521 +los ||| , and these ||| 0.037037 0.0081796 2.66517e-05 7.84741e-07 2.718 ||| 0-2 ||| 27 37521 +los ||| , and ||| 3.84527e-05 0.000294 2.66517e-05 5.36823e-05 2.718 ||| 0-1 ||| 26006 37521 +los ||| , as officials promise ||| 1 0.262372 2.66517e-05 3.64413e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| , as officials ||| 1 0.262372 2.66517e-05 5.61499e-06 2.718 ||| 0-2 ||| 1 37521 +los ||| , as those abroad ||| 1 0.209531 2.66517e-05 7.72667e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| , as those ||| 0.25 0.209531 2.66517e-05 1.32306e-05 2.718 ||| 0-2 ||| 4 37521 +los ||| , brought the ||| 0.25 0.145844 2.66517e-05 3.0529e-05 2.718 ||| 0-2 ||| 4 37521 +los ||| , by the ||| 0.0185185 0.145844 2.66517e-05 0.000424529 2.718 ||| 0-2 ||| 54 37521 +los ||| , by ||| 0.00152905 0.0081082 2.66517e-05 0.000341969 2.718 ||| 0-1 ||| 654 37521 +los ||| , called beta-secretase and gamma-secretase , ||| 1 0.4 2.66517e-05 1.44202e-17 2.718 ||| 0-4 ||| 1 37521 +los ||| , called beta-secretase and gamma-secretase ||| 1 0.4 2.66517e-05 7.05936e-17 2.718 ||| 0-4 ||| 1 37521 +los ||| , challenge the ||| 0.5 0.145844 2.66517e-05 7.73408e-06 2.718 ||| 0-2 ||| 2 37521 +los ||| , did the ||| 0.2 0.145844 2.66517e-05 0.000100537 2.718 ||| 0-2 ||| 5 37521 +los ||| , dominate the process ||| 1 0.145844 2.66517e-05 9.52471e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| , dominate the ||| 1 0.145844 2.66517e-05 4.07387e-07 2.718 ||| 0-2 ||| 1 37521 +los ||| , especially those receiving aid ||| 1 0.209531 2.66517e-05 1.18006e-16 2.718 ||| 0-2 ||| 1 37521 +los ||| , especially those receiving ||| 1 0.209531 2.66517e-05 1.65275e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| , especially those ||| 0.0204082 0.209531 2.66517e-05 5.08538e-08 2.718 ||| 0-2 ||| 49 37521 +los ||| , for ||| 0.000502513 0.0007029 2.66517e-05 4.77176e-05 2.718 ||| 0-1 ||| 1990 37521 +los ||| , governments ' ||| 1 0.295377 2.66517e-05 3.04015e-05 2.718 ||| 0-1 0-2 ||| 1 37521 +los ||| , have their ||| 0.125 0.0188051 2.66517e-05 2.60736e-06 2.718 ||| 0-2 ||| 8 37521 +los ||| , high taxes ||| 0.333333 0.300654 2.66517e-05 2.16806e-07 2.718 ||| 0-2 ||| 3 37521 +los ||| , higher oil prices ||| 0.2 0.438459 2.66517e-05 9.52284e-11 2.718 ||| 0-3 ||| 5 37521 +los ||| , if not for the sovereign-debt crisis ||| 1 0.145844 2.66517e-05 5.46331e-19 2.718 ||| 0-4 ||| 1 37521 +los ||| , if not for the sovereign-debt ||| 1 0.145844 2.66517e-05 2.90139e-15 2.718 ||| 0-4 ||| 1 37521 +los ||| , if not for the ||| 0.333333 0.145844 2.66517e-05 4.46367e-10 2.718 ||| 0-4 ||| 3 37521 +los ||| , including the ||| 0.00440529 0.145844 2.66517e-05 9.77102e-06 2.718 ||| 0-2 ||| 227 37521 +los ||| , los autos ||| 1 1 2.66517e-05 2.58913e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| , los ||| 1 1 2.66517e-05 3.98328e-06 2.718 ||| 0-1 ||| 1 37521 +los ||| , neither foreseeing them ||| 1 0.0948535 2.66517e-05 2.41676e-13 2.718 ||| 0-3 ||| 1 37521 +los ||| , obscures the ||| 0.142857 0.145844 2.66517e-05 4.07387e-07 2.718 ||| 0-2 ||| 7 37521 +los ||| , occasionally led to fiscal imbalances ||| 1 0.36692 2.66517e-05 7.63309e-18 2.718 ||| 0-5 ||| 1 37521 +los ||| , of the ||| 0.0333333 0.145844 5.33035e-05 0.00169323 2.718 ||| 0-2 ||| 60 37521 +los ||| , policymakers ||| 0.0172414 0.18015 2.66517e-05 0.000429459 2.718 ||| 0-1 ||| 58 37521 +los ||| , severely handicapped the ||| 0.333333 0.145844 2.66517e-05 1.32401e-11 2.718 ||| 0-3 ||| 3 37521 +los ||| , since we need the innovation ||| 1 0.145844 2.66517e-05 5.22576e-17 2.718 ||| 0-4 ||| 1 37521 +los ||| , since we need the ||| 1 0.145844 2.66517e-05 8.03963e-12 2.718 ||| 0-4 ||| 1 37521 +los ||| , targeting the ||| 1 0.145844 2.66517e-05 3.66022e-06 2.718 ||| 0-2 ||| 1 37521 +los ||| , the Japanese ||| 0.0909091 0.0585714 2.66517e-05 4.33136e-06 2.718 ||| 0-2 ||| 11 37521 +los ||| , the only certain way to achieve ||| 1 0.0729943 2.66517e-05 1.92852e-18 2.718 ||| 0-1 0-2 ||| 1 37521 +los ||| , the only certain way to ||| 1 0.0729943 2.66517e-05 1.48462e-14 2.718 ||| 0-1 0-2 ||| 1 37521 +los ||| , the only certain way ||| 1 0.0729943 2.66517e-05 1.79975e-13 2.718 ||| 0-1 0-2 ||| 1 37521 +los ||| , the only certain ||| 1 0.0729943 2.66517e-05 1.18428e-10 2.718 ||| 0-1 0-2 ||| 1 37521 +los ||| , the only ||| 0.0113636 0.0729943 2.66517e-05 6.07947e-07 2.718 ||| 0-1 0-2 ||| 88 37521 +los ||| , the ||| 0.00613574 0.145844 0.00261187 0.0626749 2.718 ||| 0-1 ||| 15972 37521 +los ||| , to the ||| 0.00900901 0.145844 2.66517e-05 0.00517007 2.718 ||| 0-2 ||| 111 37521 +los ||| , transport ||| 0.0555556 0.0495495 2.66517e-05 2.18774e-05 2.718 ||| 0-1 ||| 18 37521 +los ||| , when the industrial revolution ||| 1 0.145844 2.66517e-05 3.84641e-14 2.718 ||| 0-2 ||| 1 37521 +los ||| , when the industrial ||| 1 0.145844 2.66517e-05 5.92667e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| , when the ||| 0.00526316 0.145844 2.66517e-05 2.27949e-05 2.718 ||| 0-2 ||| 190 37521 +los ||| , whereas the ||| 0.0185185 0.145844 2.66517e-05 1.62955e-06 2.718 ||| 0-2 ||| 54 37521 +los ||| , with the ||| 0.00375235 0.145844 5.33035e-05 0.000237707 2.718 ||| 0-2 ||| 533 37521 +los ||| , young ||| 0.0588235 0.113725 2.66517e-05 0.000172976 2.718 ||| 0-1 ||| 17 37521 +los ||| , ||| 2.11504e-05 1.99e-05 0.000106607 3.89e-05 2.718 ||| 0-0 ||| 189122 37521 +los ||| - but the ||| 0.333333 0.145844 2.66517e-05 3.09789e-07 2.718 ||| 0-2 ||| 3 37521 +los ||| - the ||| 0.0103093 0.145844 2.66517e-05 0.000265003 2.718 ||| 0-1 ||| 97 37521 +los ||| -- both states ||| 1 0.195514 2.66517e-05 3.8607e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| -- challenges ||| 0.25 0.0030534 2.66517e-05 9.80187e-08 2.718 ||| 0-1 ||| 4 37521 +los ||| -- coming on top of the ||| 1 0.145844 2.66517e-05 2.31299e-14 2.718 ||| 0-5 ||| 1 37521 +los ||| -- for mobile telephones , ||| 0.25 0.152174 2.66517e-05 4.33036e-15 2.718 ||| 0-2 ||| 4 37521 +los ||| -- for mobile telephones ||| 0.25 0.152174 2.66517e-05 2.11991e-14 2.718 ||| 0-2 ||| 4 37521 +los ||| -- for mobile ||| 0.25 0.152174 2.66517e-05 3.2614e-09 2.718 ||| 0-2 ||| 4 37521 +los ||| -- the core ||| 1 0.145844 2.66517e-05 1.40193e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| -- the ||| 0.00692841 0.145844 0.00015991 0.00154228 2.718 ||| 0-1 ||| 866 37521 +los ||| -- their ||| 0.0416667 0.0188051 2.66517e-05 1.24273e-05 2.718 ||| 0-1 ||| 24 37521 +los ||| -- � the ||| 1 0.145844 2.66517e-05 2.6049e-07 2.718 ||| 0-2 ||| 1 37521 +los ||| . ' s ||| 1 0.183536 2.66517e-05 5.73787e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| . ' ||| 0.05 0.183536 2.66517e-05 4.64981e-05 2.718 ||| 0-1 ||| 20 37521 +los ||| . Muslims trusted Nehru implicitly ||| 1 0.379688 2.66517e-05 5.97307e-21 2.718 ||| 0-1 ||| 1 37521 +los ||| . Muslims trusted Nehru ||| 1 0.379688 2.66517e-05 9.18934e-16 2.718 ||| 0-1 ||| 1 37521 +los ||| . Muslims trusted ||| 1 0.379688 2.66517e-05 1.41374e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| . Muslims ||| 0.5 0.379688 2.66517e-05 1.0875e-05 2.718 ||| 0-1 ||| 2 37521 +los ||| . if the ||| 0.333333 0.145844 2.66517e-05 8.97796e-07 2.718 ||| 0-2 ||| 3 37521 +los ||| . since 1860 , when the industrial ||| 1 0.145844 2.66517e-05 1.84034e-21 2.718 ||| 0-5 ||| 1 37521 +los ||| . since 1860 , when the ||| 1 0.145844 2.66517e-05 7.07824e-17 2.718 ||| 0-5 ||| 1 37521 +los ||| . the result should be something closer ||| 0.333333 0.145844 2.66517e-05 2.70174e-19 2.718 ||| 0-1 ||| 3 37521 +los ||| . the result should be something ||| 0.333333 0.145844 2.66517e-05 1.54121e-15 2.718 ||| 0-1 ||| 3 37521 +los ||| . the result should be ||| 0.333333 0.145844 2.66517e-05 7.41679e-12 2.718 ||| 0-1 ||| 3 37521 +los ||| . the result should ||| 0.333333 0.145844 2.66517e-05 7.1963e-10 2.718 ||| 0-1 ||| 3 37521 +los ||| . the result ||| 0.2 0.145844 2.66517e-05 5.86304e-07 2.718 ||| 0-1 ||| 5 37521 +los ||| . the ||| 0.0164835 0.145844 7.99552e-05 0.00141074 2.718 ||| 0-1 ||| 182 37521 +los ||| .. ||| 0.1 0.111111 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 10 37521 +los ||| 1 the ||| 0.5 0.145844 2.66517e-05 1.19661e-05 2.718 ||| 0-1 ||| 2 37521 +los ||| 11 ||| 0.00306748 0.003231 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 326 37521 +los ||| 160 other professionals ||| 0.166667 0.227273 2.66517e-05 1.85899e-12 2.718 ||| 0-2 ||| 6 37521 +los ||| 1860 , when the industrial revolution ||| 1 0.145844 2.66517e-05 2.50016e-19 2.718 ||| 0-3 ||| 1 37521 +los ||| 1860 , when the industrial ||| 1 0.145844 2.66517e-05 3.85233e-15 2.718 ||| 0-3 ||| 1 37521 +los ||| 1860 , when the ||| 1 0.145844 2.66517e-05 1.48167e-10 2.718 ||| 0-3 ||| 1 37521 +los ||| 47 students ||| 1 0.286667 2.66517e-05 8.1614e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| ; In the meantime ||| 1 0.145844 2.66517e-05 3.44739e-13 2.718 ||| 0-2 ||| 1 37521 +los ||| ; In the ||| 0.333333 0.145844 2.66517e-05 1.76789e-08 2.718 ||| 0-2 ||| 3 37521 +los ||| ; the ||| 0.00337838 0.145844 2.66517e-05 0.000543966 2.718 ||| 0-1 ||| 296 37521 +los ||| A-peptide itself by inhibiting the two APP ||| 1 0.145844 2.66517e-05 1.28249e-25 2.718 ||| 0-4 ||| 1 37521 +los ||| A-peptide itself by inhibiting the two ||| 1 0.145844 2.66517e-05 1.97306e-20 2.718 ||| 0-4 ||| 1 37521 +los ||| A-peptide itself by inhibiting the ||| 1 0.145844 2.66517e-05 6.32999e-17 2.718 ||| 0-4 ||| 1 37521 +los ||| APP enzymes , called beta-secretase and gamma-secretase ||| 1 0.4 2.66517e-05 2.98258e-27 2.718 ||| 0-6 ||| 1 37521 +los ||| Africa 's ||| 0.0276243 0.0363459 0.000133259 3.94214e-06 2.718 ||| 0-1 ||| 181 37521 +los ||| African ||| 0.00641849 0.0151307 0.000133259 0.0001071 2.718 ||| 0-0 ||| 779 37521 +los ||| Agreements ||| 0.142857 0.230769 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 7 37521 +los ||| Ai 's ||| 0.5 0.0363459 2.66517e-05 2.54584e-07 2.718 ||| 0-1 ||| 2 37521 +los ||| Al ||| 0.00777202 0.0120482 7.99552e-05 3.89e-05 2.718 ||| 0-0 ||| 386 37521 +los ||| Alpine ||| 0.2 0.2 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 5 37521 +los ||| America 's ||| 0.0271647 0.0863968 0.000426428 0.000211007 2.718 ||| 0-0 0-1 ||| 589 37521 +los ||| America ||| 0.00431267 0.136448 0.000426428 0.0107748 2.718 ||| 0-0 ||| 3710 37521 +los ||| American Republicans ||| 0.5 0.325991 2.66517e-05 2.29199e-07 2.718 ||| 0-1 ||| 2 37521 +los ||| American ||| 0.00644183 0.0401448 0.00045308 0.0011875 2.718 ||| 0-0 ||| 2639 37521 +los ||| Americans ||| 0.00290135 0.388343 7.99552e-05 0.0057719 2.718 ||| 0-0 ||| 1034 37521 +los ||| Animals ||| 0.142857 0.473684 5.33035e-05 8.76e-05 2.718 ||| 0-0 ||| 14 37521 +los ||| Arab ||| 0.000852515 0.0036265 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 1173 37521 +los ||| Arabs ||| 0.00574713 0.265766 2.66517e-05 0.0005743 2.718 ||| 0-0 ||| 174 37521 +los ||| Asian ||| 0.00357995 0.0084866 7.99552e-05 5.84e-05 2.718 ||| 0-0 ||| 838 37521 +los ||| Asians ||| 0.00980392 0.355932 2.66517e-05 0.0006132 2.718 ||| 0-0 ||| 102 37521 +los ||| Awards ||| 0.1 0.5 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 10 37521 +los ||| Azerbaijan 's ||| 0.333333 0.0351221 2.66517e-05 3.81876e-07 2.718 ||| 0-0 0-1 ||| 3 37521 +los ||| Bolivia 's ||| 0.0357143 0.0240553 2.66517e-05 3.81876e-07 2.718 ||| 0-0 0-1 ||| 28 37521 +los ||| Bolivia ||| 0.00552486 0.0117647 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 181 37521 +los ||| Bosnia 's ||| 0.2 0.0294512 5.33035e-05 5.71835e-07 2.718 ||| 0-0 0-1 ||| 10 37521 +los ||| Brazilians , ||| 0.5 0.416667 2.66517e-05 1.98755e-05 2.718 ||| 0-0 ||| 2 37521 +los ||| Brazilians ||| 0.0769231 0.416667 2.66517e-05 9.73e-05 2.718 ||| 0-0 ||| 13 37521 +los ||| Britain 's ||| 0.0294118 0.0363459 5.33035e-05 3.94214e-06 2.718 ||| 0-1 ||| 68 37521 +los ||| British ||| 0.00127714 0.0053908 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 783 37521 +los ||| Bush ||| 0.000445038 0.0005426 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 2247 37521 +los ||| Catherine 's ||| 1 0.0363459 2.66517e-05 1.27292e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| Central Europeans see themselves ||| 0.5 0.398268 2.66517e-05 1.15681e-13 2.718 ||| 0-1 ||| 2 37521 +los ||| Central Europeans see ||| 0.5 0.398268 2.66517e-05 1.4365e-10 2.718 ||| 0-1 ||| 2 37521 +los ||| Central Europeans ||| 0.125 0.398268 2.66517e-05 2.3282e-07 2.718 ||| 0-1 ||| 8 37521 +los ||| Chechen ||| 0.012987 0.0294118 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 77 37521 +los ||| Chiang ||| 0.0384615 0.0434783 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 26 37521 +los ||| Children Take ||| 1 0.258064 5.33035e-05 1.0127e-09 2.718 ||| 0-0 ||| 2 37521 +los ||| Children ||| 0.166667 0.258064 5.33035e-05 7.79e-05 2.718 ||| 0-0 ||| 12 37521 +los ||| China 's economic ||| 0.0333333 0.0017442 2.66517e-05 8.15071e-10 2.718 ||| 0-0 ||| 30 37521 +los ||| China 's ||| 0.00701403 0.0190451 0.000186562 2.28734e-06 2.718 ||| 0-0 0-1 ||| 998 37521 +los ||| China can contain China ||| 1 0.0017442 2.66517e-05 2.80123e-15 2.718 ||| 0-0 ||| 1 37521 +los ||| China can contain ||| 1 0.0017442 2.66517e-05 3.99377e-12 2.718 ||| 0-0 ||| 1 37521 +los ||| China can ||| 0.025 0.0017442 2.66517e-05 2.04809e-07 2.718 ||| 0-0 ||| 40 37521 +los ||| China ||| 0.000639059 0.0017442 0.000133259 0.0001168 2.718 ||| 0-0 ||| 7824 37521 +los ||| Chinese ||| 0.00348129 0.0409797 0.000213214 0.0008468 2.718 ||| 0-0 ||| 2298 37521 +los ||| Club ||| 0.0555556 0.0789474 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 36 37521 +los ||| Confucian ||| 0.0434783 0.1 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 23 37521 +los ||| Constitution 's restraints ||| 0.166667 0.0363459 2.66517e-05 3.30959e-12 2.718 ||| 0-1 ||| 6 37521 +los ||| Constitution 's ||| 0.0714286 0.0363459 2.66517e-05 2.54584e-07 2.718 ||| 0-1 ||| 14 37521 +los ||| Constitutional ||| 0.00787402 0.0083333 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 127 37521 +los ||| D. The ||| 1 0.0033113 2.66517e-05 5.057e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| Delta ||| 0.025641 0.0133333 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 39 37521 +los ||| Democratic ||| 0.00662252 0.0154799 5.33035e-05 4.87e-05 2.718 ||| 0-0 ||| 302 37521 +los ||| Democrats ) ||| 0.25 0.259259 2.66517e-05 7.74297e-07 2.718 ||| 0-0 ||| 4 37521 +los ||| Democrats ||| 0.0103093 0.259259 5.33035e-05 0.0006813 2.718 ||| 0-0 ||| 194 37521 +los ||| Developing Countries ||| 0.5 0.277778 2.66517e-05 6.331e-10 2.718 ||| 0-0 ||| 2 37521 +los ||| Developing ||| 0.4 0.277778 5.33035e-05 4.87e-05 2.718 ||| 0-0 ||| 5 37521 +los ||| Disorders ||| 0.125 0.428571 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 8 37521 +los ||| Dutch ||| 0.00341297 0.0082988 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 293 37521 +los ||| East Asians ||| 0.0625 0.355932 2.66517e-05 8.36405e-08 2.718 ||| 0-1 ||| 16 37521 +los ||| East European ||| 0.0147059 0.0032265 2.66517e-05 1.99144e-08 2.718 ||| 0-1 ||| 68 37521 +los ||| Eastern ||| 0.00569801 0.0056577 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 351 37521 +los ||| Europe 's ||| 0.00500835 0.0185905 7.99552e-05 9.53712e-07 2.718 ||| 0-0 0-1 ||| 599 37521 +los ||| Europe ||| 0.000147951 0.0008351 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 6759 37521 +los ||| European Union and its friends ||| 1 0.000294 2.66517e-05 1.74982e-19 2.718 ||| 0-2 ||| 1 37521 +los ||| European Union and its ||| 0.25 0.000294 2.66517e-05 2.69204e-14 2.718 ||| 0-2 ||| 4 37521 +los ||| European Union and ||| 0.0204082 0.000294 2.66517e-05 1.35469e-11 2.718 ||| 0-2 ||| 49 37521 +los ||| European ||| 0.001168 0.0032265 0.00015991 0.000146 2.718 ||| 0-0 ||| 5137 37521 +los ||| Europeans did ||| 1 0.398268 2.66517e-05 7.18204e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| Europeans see themselves ||| 0.333333 0.398268 2.66517e-05 2.22464e-09 2.718 ||| 0-0 ||| 3 37521 +los ||| Europeans see ||| 0.166667 0.398268 2.66517e-05 2.76249e-06 2.718 ||| 0-0 ||| 6 37521 +los ||| Europeans ||| 0.00382653 0.398268 7.99552e-05 0.0044773 2.718 ||| 0-0 ||| 784 37521 +los ||| Federal Funds ||| 0.111111 0.31579 2.66517e-05 5.3144e-09 2.718 ||| 0-1 ||| 9 37521 +los ||| French and German levels ||| 1 0.256744 2.66517e-05 1.59999e-13 2.718 ||| 0-3 ||| 1 37521 +los ||| Friends ||| 0.142857 0.1875 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 7 37521 +los ||| Funds ||| 0.105263 0.31579 5.33035e-05 0.0001168 2.718 ||| 0-0 ||| 19 37521 +los ||| GDP shrink by ||| 0.5 0.0081082 2.66517e-05 1.98046e-12 2.718 ||| 0-2 ||| 2 37521 +los ||| GDP-linked ||| 0.0666667 0.148148 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 15 37521 +los ||| Gaza ||| 0.00152207 0.002045 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 657 37521 +los ||| German levels ||| 0.25 0.256744 2.66517e-05 1.39693e-07 2.718 ||| 0-1 ||| 4 37521 +los ||| Germany 's ||| 0.0070922 0.0184452 2.66517e-05 1.89959e-07 2.718 ||| 0-0 0-1 ||| 141 37521 +los ||| Germanys ||| 0.25 0.25 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 4 37521 +los ||| Greek ||| 0.0171569 0.0321716 0.000186562 0.0001168 2.718 ||| 0-0 ||| 408 37521 +los ||| Greek-style ||| 0.5 0.4 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 2 37521 +los ||| Green ||| 0.0196078 0.028169 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 102 37521 +los ||| Hatoyama controls only ||| 0.25 0.255868 2.66517e-05 7.47855e-12 2.718 ||| 0-1 ||| 4 37521 +los ||| Hatoyama controls ||| 0.25 0.255868 2.66517e-05 6.89585e-09 2.718 ||| 0-1 ||| 4 37521 +los ||| Hezbollah 's ||| 0.0625 0.0035211 2.66517e-05 1.5106e-07 2.718 ||| 0-0 ||| 16 37521 +los ||| Hezbollah ||| 0.0031746 0.0035211 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 315 37521 +los ||| Himalayan ||| 0.030303 0.0909091 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 33 37521 +los ||| Hirst ||| 0.2 0.25 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 5 37521 +los ||| Hu 's ||| 0.142857 0.0205768 2.66517e-05 1.89959e-07 2.718 ||| 0-0 0-1 ||| 7 37521 +los ||| Humans ||| 0.333333 0.26087 5.33035e-05 5.84e-05 2.718 ||| 0-0 ||| 6 37521 +los ||| Igbo ||| 0.111111 0.25 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 9 37521 +los ||| In the meantime ||| 1 0.145844 2.66517e-05 1.94449e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| In the ||| 0.0204082 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-1 ||| 49 37521 +los ||| India 's ||| 0.00917431 0.0363459 5.33035e-05 2.54388e-06 2.718 ||| 0-1 ||| 218 37521 +los ||| Indonesia 's women ||| 1 0.0363459 2.66517e-05 8.92827e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| Indonesia 's ||| 0.0625 0.0363459 2.66517e-05 7.63753e-07 2.718 ||| 0-1 ||| 16 37521 +los ||| Inter-Services ||| 0.0555556 0.130435 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 18 37521 +los ||| Internet ||| 0.00534759 0.0089286 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 374 37521 +los ||| Iran 's ||| 0.00364964 0.0009639 2.66517e-05 3.03677e-07 2.718 ||| 0-0 ||| 274 37521 +los ||| Iran ||| 0.000989609 0.0009639 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 2021 37521 +los ||| Iranian ||| 0.00475059 0.0053763 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 421 37521 +los ||| Iraqi ||| 0.00904977 0.0291005 0.000106607 0.0001071 2.718 ||| 0-0 ||| 442 37521 +los ||| Islamic ||| 0.00310078 0.0047695 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 645 37521 +los ||| Islamic-minded ||| 0.333333 0.333333 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| Islamists ||| 0.00714286 0.352632 2.66517e-05 0.0006521 2.718 ||| 0-0 ||| 140 37521 +los ||| Israel 's ||| 0.0113636 0.0191866 5.33035e-05 7.61794e-07 2.718 ||| 0-0 0-1 ||| 176 37521 +los ||| Israel ||| 0.000450653 0.0020274 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 2219 37521 +los ||| Italy 's ||| 0.0681818 0.0199121 7.99552e-05 3.81876e-07 2.718 ||| 0-0 0-1 ||| 44 37521 +los ||| Japan 's ||| 0.00390625 0.0027174 2.66517e-05 1.06053e-06 2.718 ||| 0-0 ||| 256 37521 +los ||| Japan ||| 0.00086881 0.0027174 5.33035e-05 6.81e-05 2.718 ||| 0-0 ||| 2302 37521 +los ||| Japanese maritime ||| 0.333333 0.0585714 2.66517e-05 2.59415e-09 2.718 ||| 0-0 ||| 3 37521 +los ||| Japanese ||| 0.0106809 0.0585714 0.000213214 0.0003991 2.718 ||| 0-0 ||| 749 37521 +los ||| Jews ||| 0.00793651 0.353425 5.33035e-05 0.0012556 2.718 ||| 0-0 ||| 252 37521 +los ||| Jordan 's ||| 0.2 0.0363459 2.66517e-05 2.54584e-07 2.718 ||| 0-1 ||| 5 37521 +los ||| Jordan , the ||| 0.5 0.145844 2.66517e-05 8.14774e-07 2.718 ||| 0-2 ||| 2 37521 +los ||| Jordanian ||| 0.0333333 0.0434783 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 30 37521 +los ||| Latin America 's ||| 0.0384615 0.0863968 5.33035e-05 3.83611e-08 2.718 ||| 0-1 0-2 ||| 52 37521 +los ||| Latin American ||| 0.0041841 0.0401448 2.66517e-05 2.15887e-07 2.718 ||| 0-1 ||| 239 37521 +los ||| Latins ||| 0.5 0.5 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 2 37521 +los ||| Lebanon 's ||| 0.0263158 0.0363459 2.66517e-05 8.91045e-07 2.718 ||| 0-1 ||| 38 37521 +los ||| Los ||| 0.25 0.105263 2.66517e-05 7.79e-05 2.718 ||| 0-0 ||| 4 37521 +los ||| MDG ||| 0.0357143 0.125 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 28 37521 +los ||| Macedonian ||| 0.25 0.25 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 4 37521 +los ||| Markets ||| 0.0285714 0.327273 2.66517e-05 0.0001752 2.718 ||| 0-0 ||| 35 37521 +los ||| Mau ||| 0.166667 0.1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 6 37521 +los ||| Mental Disorders ||| 0.125 0.428571 2.66517e-05 5.694e-10 2.718 ||| 0-1 ||| 8 37521 +los ||| Moldova 's ||| 0.125 0.0284823 2.66517e-05 3.81876e-07 2.718 ||| 0-0 0-1 ||| 8 37521 +los ||| Muslim ||| 0.00308166 0.0062893 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 649 37521 +los ||| Muslims trusted Nehru implicitly ||| 1 0.379688 2.66517e-05 1.29909e-18 2.718 ||| 0-0 ||| 1 37521 +los ||| Muslims trusted Nehru ||| 1 0.379688 2.66517e-05 1.99859e-13 2.718 ||| 0-0 ||| 1 37521 +los ||| Muslims trusted ||| 1 0.379688 2.66517e-05 3.07476e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| Muslims ||| 0.00433839 0.379688 5.33035e-05 0.0023652 2.718 ||| 0-0 ||| 461 37521 +los ||| Net ||| 0.125 0.166667 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| New ||| 0.0011976 0.00125 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 835 37521 +los ||| OECD ||| 0.00584795 0.076 2.66517e-05 0.0001849 2.718 ||| 0-0 ||| 171 37521 +los ||| Old Problems ||| 0.25 0.307692 2.66517e-05 1.76995e-09 2.718 ||| 0-1 ||| 4 37521 +los ||| Pakistan 's ||| 0.0542636 0.025274 0.000186562 3.24105e-06 2.718 ||| 0-0 0-1 ||| 129 37521 +los ||| Pakistan ||| 0.00265487 0.0142022 7.99552e-05 0.0001655 2.718 ||| 0-0 ||| 1130 37521 +los ||| Pakistani ||| 0.0163934 0.0265487 0.000106607 5.84e-05 2.718 ||| 0-0 ||| 244 37521 +los ||| Palestine 's ||| 0.166667 0.0363459 2.66517e-05 2.54584e-07 2.718 ||| 0-1 ||| 6 37521 +los ||| Pay ||| 0.5 0.166667 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 4 37521 +los ||| Peruvian ||| 0.166667 0.125 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 6 37521 +los ||| Poland 's ||| 0.0263158 0.0192529 2.66517e-05 1.89959e-07 2.718 ||| 0-0 0-1 ||| 38 37521 +los ||| Polish ||| 0.012987 0.0429448 5.33035e-05 6.81e-05 2.718 ||| 0-0 ||| 154 37521 +los ||| Problems ||| 0.166667 0.307692 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 6 37521 +los ||| Rates ||| 0.0416667 0.235294 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 24 37521 +los ||| Republican ||| 0.00425532 0.036036 2.66517e-05 7.79e-05 2.718 ||| 0-0 ||| 235 37521 +los ||| Republicans ' ||| 0.166667 0.254764 2.66517e-05 7.28432e-06 2.718 ||| 0-0 0-1 ||| 6 37521 +los ||| Republicans ||| 0.00606061 0.325991 2.66517e-05 0.0007203 2.718 ||| 0-0 ||| 165 37521 +los ||| Romania ||| 0.00584795 0.0065359 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 171 37521 +los ||| Russia 's ||| 0.00724638 0.01886 7.99552e-05 9.53712e-07 2.718 ||| 0-0 0-1 ||| 414 37521 +los ||| Russia ||| 0.000245098 0.001374 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 4080 37521 +los ||| Russian ||| 0.00084317 0.0019704 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 1186 37521 +los ||| SSA ||| 0.0833333 0.24 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 12 37521 +los ||| Shi ||| 0.333333 0.142857 0.00015991 0.0001265 2.718 ||| 0-0 ||| 18 37521 +los ||| Sick ||| 0.166667 0.1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 6 37521 +los ||| Socialists ||| 0.0185185 0.179104 2.66517e-05 0.0001168 2.718 ||| 0-0 ||| 54 37521 +los ||| South ||| 0.00326797 0.0021739 7.99552e-05 2.92e-05 2.718 ||| 0-0 ||| 918 37521 +los ||| Spain 's ||| 0.05 0.0363459 2.66517e-05 7.63753e-07 2.718 ||| 0-1 ||| 20 37521 +los ||| Spanish ||| 0.00909091 0.009009 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 110 37521 +los ||| States ||| 0.00704225 0.08 2.66517e-05 0.0016547 2.718 ||| 0-0 ||| 142 37521 +los ||| States-China ||| 1 0.5 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| States-based ||| 0.1 0.2 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 10 37521 +los ||| Sunni ||| 0.00757576 0.03125 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 132 37521 +los ||| TV ||| 0.00444444 0.0313901 2.66517e-05 6.81e-05 2.718 ||| 0-0 ||| 225 37521 +los ||| The Holy Places ||| 0.5 0.0033113 2.66517e-05 1.64352e-15 2.718 ||| 0-0 ||| 2 37521 +los ||| The Holy ||| 0.5 0.0033113 2.66517e-05 2.5285e-10 2.718 ||| 0-0 ||| 2 37521 +los ||| The ||| 0.00270027 0.0033113 7.99552e-05 3.89e-05 2.718 ||| 0-0 ||| 1111 37521 +los ||| Three ||| 0.0136986 0.091954 2.66517e-05 7.79e-05 2.718 ||| 0-0 ||| 73 37521 +los ||| Times ||| 0.0105263 0.0258621 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 95 37521 +los ||| Treasury ||| 0.00273973 0.0188679 2.66517e-05 8.76e-05 2.718 ||| 0-0 ||| 365 37521 +los ||| Tricks ||| 0.0833333 0.375 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 12 37521 +los ||| Turkey 's ||| 0.00581395 0.0017094 2.66517e-05 3.03677e-07 2.718 ||| 0-0 ||| 172 37521 +los ||| Turkey ||| 0.000761615 0.0017094 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 1313 37521 +los ||| Turkish ||| 0.0100334 0.020979 7.99552e-05 5.84e-05 2.718 ||| 0-0 ||| 299 37521 +los ||| U.S. ||| 0.06 0.15625 7.99552e-05 4.87e-05 2.718 ||| 0-0 ||| 50 37521 +los ||| UN ||| 0.00143575 0.0028653 5.33035e-05 6.81e-05 2.718 ||| 0-0 ||| 1393 37521 +los ||| US ||| 0.00174317 0.0706706 0.000399776 0.0089449 2.718 ||| 0-0 ||| 8605 37521 +los ||| Ukrainian ||| 0.012987 0.0421053 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 77 37521 +los ||| Union and its friends ||| 1 0.000294 2.66517e-05 5.73337e-16 2.718 ||| 0-1 ||| 1 37521 +los ||| Union and its ||| 0.333333 0.000294 2.66517e-05 8.82057e-11 2.718 ||| 0-1 ||| 3 37521 +los ||| Union and ||| 0.0833333 0.000294 2.66517e-05 4.43869e-08 2.718 ||| 0-1 ||| 12 37521 +los ||| United States ||| 0.000696379 0.08 2.66517e-05 6.1257e-07 2.718 ||| 0-1 ||| 1436 37521 +los ||| Venezuela 's ||| 0.0384615 0.0363459 2.66517e-05 5.09168e-07 2.718 ||| 0-1 ||| 26 37521 +los ||| Venezuela , for ||| 1 0.0007029 2.66517e-05 1.24066e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| We Latins ||| 0.5 0.5 2.66517e-05 2.4063e-09 2.718 ||| 0-1 ||| 2 37521 +los ||| Western ||| 0.002443 0.0071556 7.99552e-05 7.79e-05 2.718 ||| 0-0 ||| 1228 37521 +los ||| Wikipedia is now cited ||| 1 0.0769231 2.66517e-05 6.21395e-15 2.718 ||| 0-0 ||| 1 37521 +los ||| Wikipedia is now ||| 1 0.0769231 2.66517e-05 4.77996e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| Wikipedia is ||| 0.5 0.0769231 2.66517e-05 3.21407e-07 2.718 ||| 0-0 ||| 2 37521 +los ||| Wikipedia ||| 0.0833333 0.0769231 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 12 37521 +los ||| Yemen ||| 0.00613497 0.0113636 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 163 37521 +los ||| Yes " ||| 0.0909091 0.0043103 2.66517e-05 4.84428e-08 2.718 ||| 0-0 ||| 11 37521 +los ||| Yes ||| 0.00529101 0.0043103 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 189 37521 +los ||| Yushchenko launched the slogan " ||| 1 0.145844 2.66517e-05 1.68065e-17 2.718 ||| 0-2 ||| 1 37521 +los ||| Yushchenko launched the slogan ||| 1 0.145844 2.66517e-05 3.36527e-15 2.718 ||| 0-2 ||| 1 37521 +los ||| Yushchenko launched the ||| 1 0.145844 2.66517e-05 2.58867e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| a business ||| 0.037037 0.10925 2.66517e-05 5.87387e-05 2.718 ||| 0-1 ||| 27 37521 +los ||| a fine time with the ||| 1 0.145844 2.66517e-05 1.42297e-12 2.718 ||| 0-4 ||| 1 37521 +los ||| a global ||| 0.0135135 0.0015901 2.66517e-05 3.13407e-06 2.718 ||| 0-1 ||| 74 37521 +los ||| a heavy toll ||| 0.1 0.009434 2.66517e-05 2.5497e-11 2.718 ||| 0-1 ||| 10 37521 +los ||| a heavy ||| 0.0277778 0.009434 2.66517e-05 7.84524e-07 2.718 ||| 0-1 ||| 36 37521 +los ||| a major backer ||| 1 0.0309333 2.66517e-05 1.47621e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| a major ||| 0.00378788 0.0309333 2.66517e-05 2.2711e-05 2.718 ||| 0-1 ||| 264 37521 +los ||| a mere US ||| 0.25 0.0706706 2.66517e-05 2.56948e-08 2.718 ||| 0-2 ||| 4 37521 +los ||| a poor record ||| 0.25 0.0663082 2.66517e-05 7.34152e-09 2.718 ||| 0-1 ||| 4 37521 +los ||| a poor ||| 0.03125 0.0663082 2.66517e-05 4.34667e-05 2.718 ||| 0-1 ||| 32 37521 +los ||| a regular basis , brought the ||| 1 0.145844 2.66517e-05 1.22372e-14 2.718 ||| 0-5 ||| 1 37521 +los ||| a shortage of ||| 0.037037 0.000189 2.66517e-05 5.337e-10 2.718 ||| 0-2 ||| 27 37521 +los ||| a stunning $ ||| 1 0.0327755 2.66517e-05 4.78507e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| a successful ||| 0.0185185 0.0107858 2.66517e-05 2.7398e-06 2.718 ||| 0-1 ||| 54 37521 +los ||| a troubled ||| 1 0.0522876 2.66517e-05 3.13407e-06 2.718 ||| 0-1 ||| 1 37521 +los ||| a vested ||| 0.125 0.152941 2.66517e-05 5.08935e-06 2.718 ||| 0-1 ||| 8 37521 +los ||| about the ||| 0.00420168 0.145844 0.000133259 0.000372606 2.718 ||| 0-1 ||| 1190 37521 +los ||| about ||| 0.000175871 0.0001351 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 5686 37521 +los ||| abuses before ||| 0.333333 0.315315 2.66517e-05 1.46003e-07 2.718 ||| 0-0 ||| 3 37521 +los ||| abuses ||| 0.00621118 0.315315 2.66517e-05 0.0006813 2.718 ||| 0-0 ||| 161 37521 +los ||| accepted by the ||| 0.2 0.145844 2.66517e-05 8.10524e-08 2.718 ||| 0-2 ||| 5 37521 +los ||| accepting ||| 0.00806452 0.0093458 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 124 37521 +los ||| accountable for the outcome of those ||| 1 0.209531 2.66517e-05 2.6536e-17 2.718 ||| 0-5 ||| 1 37521 +los ||| accounting ||| 0.00515464 0.0045045 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 194 37521 +los ||| across the ||| 0.00257069 0.145844 2.66517e-05 3.98563e-05 2.718 ||| 0-1 ||| 389 37521 +los ||| activated ||| 0.125 0.0625 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| actors ||| 0.00558659 0.230769 2.66517e-05 0.0004672 2.718 ||| 0-0 ||| 179 37521 +los ||| actual lead ||| 1 0.0054645 2.66517e-05 5.03915e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| actual ||| 0.00558659 0.0054645 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 179 37521 +los ||| acute ||| 0.0142857 0.0222222 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 70 37521 +los ||| adding fuel ||| 0.25 0.0146199 2.66517e-05 1.58275e-09 2.718 ||| 0-1 ||| 4 37521 +los ||| address ||| 0.0016835 0.0051724 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 594 37521 +los ||| addresses accountability and transparency . ||| 1 0.0217391 2.66517e-05 1.89875e-19 2.718 ||| 0-0 ||| 1 37521 +los ||| addresses accountability and transparency ||| 1 0.0217391 2.66517e-05 4.12961e-17 2.718 ||| 0-0 ||| 1 37521 +los ||| addresses accountability and ||| 1 0.0217391 2.66517e-05 1.58831e-12 2.718 ||| 0-0 ||| 1 37521 +los ||| addresses accountability ||| 1 0.0217391 2.66517e-05 1.8915e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| addresses ||| 0.030303 0.0217391 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 33 37521 +los ||| adequate primary education available to ||| 1 0.025641 2.66517e-05 1.9447e-18 2.718 ||| 0-0 ||| 1 37521 +los ||| adequate primary education available ||| 1 0.025641 2.66517e-05 2.35749e-17 2.718 ||| 0-0 ||| 1 37521 +los ||| adequate primary education ||| 1 0.025641 2.66517e-05 8.64181e-14 2.718 ||| 0-0 ||| 1 37521 +los ||| adequate primary ||| 1 0.025641 2.66517e-05 1.8993e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| adequate ||| 0.0163934 0.025641 5.33035e-05 4.87e-05 2.718 ||| 0-0 ||| 122 37521 +los ||| adjusted ||| 0.0333333 0.037037 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 30 37521 +los ||| adjustments ||| 0.00943396 0.17 2.66517e-05 0.0001655 2.718 ||| 0-0 ||| 106 37521 +los ||| administrations ||| 0.0178571 0.0571429 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 56 37521 +los ||| advanced to the ||| 0.333333 0.145844 2.66517e-05 1.64261e-06 2.718 ||| 0-2 ||| 3 37521 +los ||| advanced ||| 0.00345423 0.0173913 5.33035e-05 9.73e-05 2.718 ||| 0-0 ||| 579 37521 +los ||| advanced-country ||| 0.0322581 0.259259 2.66517e-05 0.0001363 2.718 ||| 0-0 ||| 31 37521 +los ||| advances ||| 0.00826446 0.251497 2.66517e-05 0.0004088 2.718 ||| 0-0 ||| 121 37521 +los ||| adverse ||| 0.00909091 0.0327869 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 110 37521 +los ||| advocates ||| 0.0264901 0.316742 0.000106607 0.0006813 2.718 ||| 0-0 ||| 151 37521 +los ||| after the ||| 0.00120773 0.145844 2.66517e-05 0.00011558 2.718 ||| 0-1 ||| 828 37521 +los ||| after those ||| 1 0.209531 2.66517e-05 2.88556e-06 2.718 ||| 0-1 ||| 1 37521 +los ||| again this summer if the United States ||| 1 0.145844 2.66517e-05 2.04444e-22 2.718 ||| 0-4 ||| 1 37521 +los ||| again this summer if the United ||| 1 0.145844 2.66517e-05 7.15591e-19 2.718 ||| 0-4 ||| 1 37521 +los ||| again this summer if the ||| 1 0.145844 2.66517e-05 1.93299e-15 2.718 ||| 0-4 ||| 1 37521 +los ||| age ||| 0.00896861 0.0298507 0.000106607 0.0001363 2.718 ||| 0-0 ||| 446 37521 +los ||| ago , the ||| 0.0666667 0.145844 2.66517e-05 3.37818e-05 2.718 ||| 0-2 ||| 15 37521 +los ||| agreed-upon ||| 0.037037 0.111111 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 27 37521 +los ||| agreements ||| 0.00232019 0.206266 2.66517e-05 0.0007689 2.718 ||| 0-0 ||| 431 37521 +los ||| agricultural ||| 0.00269542 0.0087977 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 371 37521 +los ||| aides ||| 0.0666667 0.333333 2.66517e-05 8.76e-05 2.718 ||| 0-0 ||| 15 37521 +los ||| all , ||| 0.00062383 0.0267846 2.66517e-05 0.000433442 2.718 ||| 0-0 ||| 1603 37521 +los ||| all countries will embrace the ||| 1 0.145844 2.66517e-05 4.86995e-14 2.718 ||| 0-4 ||| 1 37521 +los ||| all immediately ||| 1 0.0267846 2.66517e-05 8.27541e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| all met ||| 1 0.0267846 2.66517e-05 3.17012e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| all of the ||| 0.0288462 0.0267846 7.99552e-05 3.04568e-06 2.718 ||| 0-0 ||| 104 37521 +los ||| all of ||| 0.00313972 0.0267846 5.33035e-05 5.73255e-05 2.718 ||| 0-0 ||| 637 37521 +los ||| all people , ||| 0.333333 0.0255098 2.66517e-05 7.55186e-07 2.718 ||| 0-0 0-1 ||| 3 37521 +los ||| all people ||| 0.0454545 0.0255098 2.66517e-05 3.69699e-06 2.718 ||| 0-0 0-1 ||| 22 37521 +los ||| all sensitivity to Jordan 's ||| 1 0.0363459 2.66517e-05 7.07421e-16 2.718 ||| 0-4 ||| 1 37521 +los ||| all the ||| 0.0156062 0.0863142 0.000346473 0.000651048 2.718 ||| 0-0 0-1 ||| 833 37521 +los ||| all those ||| 0.0185185 0.209531 2.66517e-05 1.98489e-05 2.718 ||| 0-1 ||| 54 37521 +los ||| all too ||| 0.0149254 0.0267846 2.66517e-05 2.12211e-06 2.718 ||| 0-0 ||| 67 37521 +los ||| all ||| 0.0139902 0.0267846 0.00311825 0.0021219 2.718 ||| 0-0 ||| 8363 37521 +los ||| alleging insults against ||| 0.333333 0.26087 2.66517e-05 1.28191e-13 2.718 ||| 0-1 ||| 3 37521 +los ||| alleging insults ||| 0.333333 0.26087 2.66517e-05 3.796e-10 2.718 ||| 0-1 ||| 3 37521 +los ||| allow the commitments ||| 0.5 0.145844 2.66517e-05 1.08812e-09 2.718 ||| 0-1 ||| 2 37521 +los ||| allow the ||| 0.0149254 0.145844 2.66517e-05 4.18507e-05 2.718 ||| 0-1 ||| 67 37521 +los ||| almost no coverage in the ||| 1 0.145844 2.66517e-05 3.06067e-14 2.718 ||| 0-4 ||| 1 37521 +los ||| along behind the ||| 0.5 0.145844 2.66517e-05 1.35855e-08 2.718 ||| 0-2 ||| 2 37521 +los ||| also revoke contracts ||| 1 0.263889 2.66517e-05 3.27876e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| also the ||| 0.0165289 0.145844 5.33035e-05 0.000278963 2.718 ||| 0-1 ||| 121 37521 +los ||| always tempting , the only certain way ||| 1 0.0729943 2.66517e-05 2.43092e-22 2.718 ||| 0-3 0-4 ||| 1 37521 +los ||| always tempting , the only certain ||| 1 0.0729943 2.66517e-05 1.59961e-19 2.718 ||| 0-3 0-4 ||| 1 37521 +los ||| always tempting , the only ||| 1 0.0729943 2.66517e-05 8.21154e-16 2.718 ||| 0-3 0-4 ||| 1 37521 +los ||| ambitious ||| 0.00584795 0.0059524 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 171 37521 +los ||| among economists ||| 0.0416667 0.386781 2.66517e-05 7.99067e-07 2.718 ||| 0-1 ||| 24 37521 +los ||| among the ||| 0.0173077 0.145844 0.000239866 7.97126e-05 2.718 ||| 0-1 ||| 520 37521 +los ||| among those ||| 0.0277778 0.209531 2.66517e-05 1.99009e-06 2.718 ||| 0-1 ||| 36 37521 +los ||| among ||| 0.00118343 0.0048309 5.33035e-05 7.79e-05 2.718 ||| 0-0 ||| 1690 37521 +los ||| an interconnected world . the ||| 1 0.145844 2.66517e-05 2.78268e-14 2.718 ||| 0-4 ||| 1 37521 +los ||| and German levels ||| 1 0.256744 2.66517e-05 1.17301e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| and a ||| 0.000657462 0.000294 2.66517e-05 1.0573e-05 2.718 ||| 0-0 ||| 1521 37521 +los ||| and asked the members of my party ||| 1 0.145844 2.66517e-05 8.19681e-20 2.718 ||| 0-2 ||| 1 37521 +los ||| and asked the members of my ||| 1 0.145844 2.66517e-05 3.94457e-16 2.718 ||| 0-2 ||| 1 37521 +los ||| and asked the members of ||| 1 0.145844 2.66517e-05 1.84068e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| and asked the members ||| 1 0.145844 2.66517e-05 6.81325e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| and asked the ||| 0.5 0.145844 2.66517e-05 3.17931e-07 2.718 ||| 0-2 ||| 2 37521 +los ||| and balances ||| 0.0277778 0.144068 2.66517e-05 1.38972e-06 2.718 ||| 0-1 ||| 36 37521 +los ||| and credit do not ||| 1 0.0029128 2.66517e-05 3.08155e-13 2.718 ||| 0-2 ||| 1 37521 +los ||| and credit do ||| 1 0.0029128 2.66517e-05 1.3108e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| and dairy products , higher oil prices ||| 0.5 0.438459 2.66517e-05 1.68924e-22 2.718 ||| 0-6 ||| 2 37521 +los ||| and gamma-secretase , ||| 1 0.4 2.66517e-05 3.3448e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| and gamma-secretase ||| 1 0.4 2.66517e-05 1.63743e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| and have-nots ||| 0.0357143 0.171429 2.66517e-05 4.90391e-07 2.718 ||| 0-1 ||| 28 37521 +los ||| and human rights ||| 0.0153846 0.161276 2.66517e-05 5.09386e-09 2.718 ||| 0-1 ||| 65 37521 +los ||| and human ||| 0.0322581 0.161276 2.66517e-05 3.0159e-05 2.718 ||| 0-1 ||| 31 37521 +los ||| and its friends ||| 0.166667 0.000294 2.66517e-05 3.39454e-12 2.718 ||| 0-0 ||| 6 37521 +los ||| and its ||| 0.00113507 0.000294 2.66517e-05 5.22236e-07 2.718 ||| 0-0 ||| 881 37521 +los ||| and mounted skeletons of the specimen and ||| 0.5 0.145844 2.66517e-05 6.42051e-22 2.718 ||| 0-4 ||| 2 37521 +los ||| and mounted skeletons of the specimen ||| 0.5 0.145844 2.66517e-05 7.6461e-20 2.718 ||| 0-4 ||| 2 37521 +los ||| and mounted skeletons of the ||| 0.5 0.145844 2.66517e-05 1.17632e-14 2.718 ||| 0-4 ||| 2 37521 +los ||| and name the ||| 1 0.145844 2.66517e-05 3.68171e-07 2.718 ||| 0-2 ||| 1 37521 +los ||| and out ||| 0.0555556 0.0050566 2.66517e-05 1.71637e-06 2.718 ||| 0-1 ||| 18 37521 +los ||| and programs ||| 0.0588235 0.223603 2.66517e-05 1.47117e-05 2.718 ||| 0-1 ||| 17 37521 +los ||| and reduced support for ||| 1 0.0020833 2.66517e-05 1.10776e-13 2.718 ||| 0-1 ||| 1 37521 +los ||| and reduced support ||| 1 0.0020833 2.66517e-05 2.32708e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| and reduced ||| 0.037037 0.0020833 2.66517e-05 8.14519e-08 2.718 ||| 0-1 ||| 27 37521 +los ||| and religious freedom must be mutual ||| 1 0.0309735 2.66517e-05 1.017e-20 2.718 ||| 0-5 ||| 1 37521 +los ||| and the ||| 0.000527079 0.145844 0.000106607 0.00257642 2.718 ||| 0-1 ||| 7589 37521 +los ||| and these ||| 0.025 0.0081796 2.66517e-05 3.84167e-06 2.718 ||| 0-1 ||| 40 37521 +los ||| and ||| 0.00011254 0.000294 0.000319821 0.0002628 2.718 ||| 0-0 ||| 106629 37521 +los ||| animal abuse ||| 0.0625 0.145833 2.66517e-05 6.643e-09 2.718 ||| 0-0 ||| 16 37521 +los ||| animal ||| 0.00813008 0.145833 2.66517e-05 0.0002044 2.718 ||| 0-0 ||| 123 37521 +los ||| any material ||| 0.5 0.0084211 2.66517e-05 7.085e-09 2.718 ||| 0-0 ||| 2 37521 +los ||| any tax ||| 0.333333 0.0502392 2.66517e-05 5.57521e-07 2.718 ||| 0-1 ||| 3 37521 +los ||| any ||| 0.00537313 0.0084211 0.000479731 0.0002725 2.718 ||| 0-0 ||| 3350 37521 +los ||| anything ||| 0.00243902 0.0015748 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 410 37521 +los ||| appeals ||| 0.0196078 0.0746269 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 51 37521 +los ||| approaches ||| 0.013245 0.0962567 5.33035e-05 0.0001752 2.718 ||| 0-0 ||| 151 37521 +los ||| appropriate the ||| 0.142857 0.145844 2.66517e-05 1.19661e-05 2.718 ||| 0-1 ||| 7 37521 +los ||| approving the measure ||| 1 0.145844 2.66517e-05 2.46103e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| approving the ||| 1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 1 37521 +los ||| are a ||| 0.00438596 0.00123 2.66517e-05 1.0573e-05 2.718 ||| 0-0 ||| 228 37521 +los ||| are always tempting , the only certain ||| 1 0.0729943 2.66517e-05 1.18427e-21 2.718 ||| 0-4 0-5 ||| 1 37521 +los ||| are always tempting , the only ||| 1 0.0729943 2.66517e-05 6.07941e-18 2.718 ||| 0-4 0-5 ||| 1 37521 +los ||| are concerned ||| 0.025 0.0096154 2.66517e-05 2.87996e-07 2.718 ||| 0-1 ||| 40 37521 +los ||| are here ||| 0.25 0.00123 2.66517e-05 6.99836e-08 2.718 ||| 0-0 ||| 4 37521 +los ||| are home ||| 0.25 0.0075251 2.66517e-05 6.48547e-07 2.718 ||| 0-1 ||| 4 37521 +los ||| are many times the ||| 1 0.145844 2.66517e-05 2.58642e-10 2.718 ||| 0-3 ||| 1 37521 +los ||| are problems with ||| 0.5 0.0012991 2.66517e-05 2.62067e-10 2.718 ||| 0-2 ||| 2 37521 +los ||| are the ||| 0.0126354 0.145844 0.000186562 0.00227156 2.718 ||| 0-1 ||| 554 37521 +los ||| are underway among the ||| 1 0.145844 2.66517e-05 3.83009e-11 2.718 ||| 0-3 ||| 1 37521 +los ||| are ||| 0.00117619 0.00123 0.000533035 0.0002628 2.718 ||| 0-0 ||| 17004 37521 +los ||| aren ||| 0.0555556 0.0227273 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 18 37521 +los ||| arguments triggered ||| 1 0.173516 2.66517e-05 9.6174e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| arguments ||| 0.0103627 0.173516 5.33035e-05 0.0003699 2.718 ||| 0-0 ||| 193 37521 +los ||| armed ||| 0.009375 0.0096463 7.99552e-05 2.92e-05 2.718 ||| 0-0 ||| 320 37521 +los ||| around the ||| 0.00245399 0.145844 5.33035e-05 0.000161389 2.718 ||| 0-1 ||| 815 37521 +los ||| arrangement that the ||| 0.25 0.145844 2.66517e-05 6.51737e-08 2.718 ||| 0-2 ||| 4 37521 +los ||| arrangements to borrow " ||| 0.25 0.143382 2.66517e-05 6.09888e-12 2.718 ||| 0-0 ||| 4 37521 +los ||| arrangements to borrow ||| 0.25 0.143382 2.66517e-05 1.22122e-09 2.718 ||| 0-0 ||| 4 37521 +los ||| arrangements to ||| 0.2 0.143382 2.66517e-05 3.13133e-05 2.718 ||| 0-0 ||| 5 37521 +los ||| arrangements ||| 0.0127119 0.143382 7.99552e-05 0.0003796 2.718 ||| 0-0 ||| 236 37521 +los ||| arrive at the ||| 1 0.145844 2.66517e-05 1.77571e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| as boys ||| 0.5 0.204545 2.66517e-05 1.4814e-06 2.718 ||| 0-1 ||| 2 37521 +los ||| as it happens , the ||| 0.5 0.145844 2.66517e-05 7.33754e-10 2.718 ||| 0-4 ||| 2 37521 +los ||| as officials promise ||| 1 0.262372 2.66517e-05 1.78397e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| as officials ||| 0.333333 0.262372 2.66517e-05 2.7488e-05 2.718 ||| 0-1 ||| 3 37521 +los ||| as the army ||| 0.5 0.145844 2.66517e-05 2.02099e-07 2.718 ||| 0-1 ||| 2 37521 +los ||| as the ||| 0.00192493 0.145844 0.000106607 0.00259434 2.718 ||| 0-1 ||| 2078 37521 +los ||| as they are ||| 0.0140845 0.0054063 2.66517e-05 4.14351e-08 2.718 ||| 0-1 ||| 71 37521 +los ||| as they ||| 0.0037594 0.0054063 2.66517e-05 5.5967e-06 2.718 ||| 0-1 ||| 266 37521 +los ||| as those abroad ||| 1 0.209531 2.66517e-05 3.78257e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| as those ||| 0.0192308 0.209531 2.66517e-05 6.477e-05 2.718 ||| 0-1 ||| 52 37521 +los ||| as well -- the ||| 1 0.145844 2.66517e-05 2.26126e-08 2.718 ||| 0-3 ||| 1 37521 +los ||| as well as the ||| 0.00862069 0.145844 2.66517e-05 3.80378e-08 2.718 ||| 0-3 ||| 116 37521 +los ||| as well as within the ||| 1 0.145844 2.66517e-05 8.39875e-12 2.718 ||| 0-4 ||| 1 37521 +los ||| as within the ||| 0.5 0.145844 2.66517e-05 5.72831e-07 2.718 ||| 0-2 ||| 2 37521 +los ||| asked the members of my party to ||| 1 0.145844 2.66517e-05 8.05226e-19 2.718 ||| 0-1 ||| 1 37521 +los ||| asked the members of my party ||| 1 0.145844 2.66517e-05 9.76148e-18 2.718 ||| 0-1 ||| 1 37521 +los ||| asked the members of my ||| 1 0.145844 2.66517e-05 4.69754e-14 2.718 ||| 0-1 ||| 1 37521 +los ||| asked the members of ||| 1 0.145844 2.66517e-05 2.19204e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| asked the members ||| 1 0.145844 2.66517e-05 8.11382e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| asked the ||| 0.05 0.145844 2.66517e-05 3.7862e-05 2.718 ||| 0-1 ||| 20 37521 +los ||| asset ||| 0.00626959 0.182519 5.33035e-05 0.0013821 2.718 ||| 0-0 ||| 319 37521 +los ||| assets and ||| 0.025 0.0121131 2.66517e-05 7.35586e-07 2.718 ||| 0-0 ||| 40 37521 +los ||| assets ||| 0.00514403 0.0121131 0.000133259 8.76e-05 2.718 ||| 0-0 ||| 972 37521 +los ||| associated ||| 0.0124481 0.0204082 7.99552e-05 5.84e-05 2.718 ||| 0-0 ||| 241 37521 +los ||| assurances ||| 0.0188679 0.0425532 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 53 37521 +los ||| at all ||| 0.00420168 0.0267846 2.66517e-05 6.29759e-06 2.718 ||| 0-1 ||| 238 37521 +los ||| at the art ||| 1 0.145844 2.66517e-05 2.36761e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| at the seams ||| 0.333333 0.145844 2.66517e-05 5.91903e-09 2.718 ||| 0-1 ||| 3 37521 +los ||| at the very bottom ||| 0.333333 0.145844 2.66517e-05 8.48795e-11 2.718 ||| 0-1 ||| 3 37521 +los ||| at the very ||| 0.03125 0.145844 2.66517e-05 7.68836e-07 2.718 ||| 0-1 ||| 32 37521 +los ||| at the ||| 0.00381679 0.145844 0.000319821 0.00091062 2.718 ||| 0-1 ||| 3144 37521 +los ||| attachments ||| 0.25 0.5 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 4 37521 +los ||| attack ||| 0.00187617 0.0021645 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 533 37521 +los ||| attacks ||| 0.00311042 0.165457 5.33035e-05 0.0011096 2.718 ||| 0-0 ||| 643 37521 +los ||| attempts to do so put the ||| 1 0.145844 2.66517e-05 6.1596e-15 2.718 ||| 0-5 ||| 1 37521 +los ||| attempts to ||| 0.00869565 0.24933 2.66517e-05 7.46701e-05 2.718 ||| 0-0 ||| 115 37521 +los ||| attempts ||| 0.00473934 0.24933 2.66517e-05 0.0009052 2.718 ||| 0-0 ||| 211 37521 +los ||| audit ||| 0.5 0.2 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 2 37521 +los ||| authoritarian regimes to argue ||| 1 0.268344 2.66517e-05 2.77635e-13 2.718 ||| 0-1 ||| 1 37521 +los ||| authoritarian regimes to ||| 0.333333 0.268344 2.66517e-05 2.67214e-09 2.718 ||| 0-1 ||| 3 37521 +los ||| authoritarian regimes ||| 0.0188679 0.268344 2.66517e-05 3.23934e-08 2.718 ||| 0-1 ||| 53 37521 +los ||| available , ||| 0.0285714 0.0336842 2.66517e-05 3.18049e-05 2.718 ||| 0-0 ||| 35 37521 +los ||| available ||| 0.0251716 0.0336842 0.000293169 0.0001557 2.718 ||| 0-0 ||| 437 37521 +los ||| average household 's ||| 1 0.266294 2.66517e-05 2.11128e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| average household ||| 0.333333 0.266294 2.66517e-05 1.35571e-07 2.718 ||| 0-1 ||| 3 37521 +los ||| average ||| 0.00280505 0.0030211 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 713 37521 +los ||| awash as they are ||| 1 0.0054063 2.66517e-05 2.69328e-13 2.718 ||| 0-2 ||| 1 37521 +los ||| awash as they ||| 1 0.0054063 2.66517e-05 3.63785e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| away at the ||| 1 0.145844 2.66517e-05 8.39774e-07 2.718 ||| 0-2 ||| 1 37521 +los ||| babies ||| 0.0434783 0.166667 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 23 37521 +los ||| baby ||| 0.0232558 0.0365854 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 43 37521 +los ||| back extremists ||| 1 0.3375 2.66517e-05 1.09572e-06 2.718 ||| 0-1 ||| 1 37521 +los ||| back into the fold some of the ||| 1 0.145844 2.66517e-05 2.78706e-18 2.718 ||| 0-6 ||| 1 37521 +los ||| back to the ||| 0.016129 0.145844 2.66517e-05 3.51757e-05 2.718 ||| 0-2 ||| 62 37521 +los ||| bad ||| 0.00417827 0.0054645 7.99552e-05 3.89e-05 2.718 ||| 0-0 ||| 718 37521 +los ||| bailouts ||| 0.00628931 0.265 2.66517e-05 0.0005159 2.718 ||| 0-0 ||| 159 37521 +los ||| balance sheets ||| 0.00719424 0.135294 2.66517e-05 4.0705e-08 2.718 ||| 0-1 ||| 139 37521 +los ||| balances ||| 0.00877193 0.144068 2.66517e-05 0.0001655 2.718 ||| 0-0 ||| 114 37521 +los ||| bankers ||| 0.00324675 0.381642 2.66517e-05 0.0015379 2.718 ||| 0-0 ||| 308 37521 +los ||| banking crises , if not for the ||| 1 0.145844 2.66517e-05 4.71476e-19 2.718 ||| 0-6 ||| 1 37521 +los ||| banks ' and ||| 1 0.287038 2.66517e-05 1.06459e-06 2.718 ||| 0-0 0-1 ||| 1 37521 +los ||| banks ' ||| 0.0681818 0.287038 7.99552e-05 0.00012678 2.718 ||| 0-0 0-1 ||| 44 37521 +los ||| banks ||| 0.00252632 0.39054 0.00015991 0.0125365 2.718 ||| 0-0 ||| 2375 37521 +los ||| basic ||| 0.00806452 0.0181818 0.000133259 0.0001071 2.718 ||| 0-0 ||| 620 37521 +los ||| basis , brought the ||| 1 0.145844 2.66517e-05 1.16987e-08 2.718 ||| 0-3 ||| 1 37521 +los ||| be accepted by the ||| 0.5 0.145844 2.66517e-05 8.35358e-10 2.718 ||| 0-3 ||| 2 37521 +los ||| be armed ||| 1 0.0096463 2.66517e-05 3.00947e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| be blinded for the ||| 1 0.145844 2.66517e-05 9.78459e-11 2.718 ||| 0-3 ||| 1 37521 +los ||| be fed by others ||| 0.166667 0.104106 2.66517e-05 3.18e-12 2.718 ||| 0-3 ||| 6 37521 +los ||| be high ||| 0.0454545 0.0098824 2.66517e-05 2.10663e-06 2.718 ||| 0-1 ||| 22 37521 +los ||| be just the beginning . the ||| 1 0.145844 2.66517e-05 6.64351e-14 2.718 ||| 0-5 ||| 1 37521 +los ||| be mining for insight for ||| 1 0.0007029 2.66517e-05 7.26327e-18 2.718 ||| 0-4 ||| 1 37521 +los ||| be mutual ||| 1 0.0309735 2.66517e-05 7.01866e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| be punished ||| 0.0666667 0.0266667 2.66517e-05 2.00975e-07 2.718 ||| 0-1 ||| 15 37521 +los ||| be raised again this summer if the ||| 1 0.145844 2.66517e-05 2.84687e-21 2.718 ||| 0-6 ||| 1 37521 +los ||| be that the ||| 0.111111 0.145844 2.66517e-05 2.58349e-05 2.718 ||| 0-2 ||| 9 37521 +los ||| be the ||| 0.00767754 0.145844 0.000106607 0.00316224 2.718 ||| 0-1 ||| 521 37521 +los ||| be tuned ||| 0.333333 0.166667 2.66517e-05 9.99721e-08 2.718 ||| 0-1 ||| 3 37521 +los ||| beans ||| 0.0625 0.142857 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 16 37521 +los ||| beaten ||| 0.0344828 0.0833333 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 29 37521 +los ||| beating ||| 0.037037 0.0166667 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 27 37521 +los ||| became ever smaller ||| 1 0.0408163 2.66517e-05 2.03932e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| become distorted by the ||| 1 0.145844 2.66517e-05 1.82476e-11 2.718 ||| 0-3 ||| 1 37521 +los ||| become operational ||| 0.25 0.0142857 2.66517e-05 6.55138e-09 2.718 ||| 0-1 ||| 4 37521 +los ||| become the designated ||| 1 0.145844 2.66517e-05 2.69397e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| become the ||| 0.00925926 0.145844 2.66517e-05 0.000207228 2.718 ||| 0-1 ||| 108 37521 +los ||| been difficult ||| 0.1 0.0044563 2.66517e-05 8.12803e-08 2.718 ||| 0-1 ||| 10 37521 +los ||| been labeled as permitted ||| 0.5 0.0571429 2.66517e-05 2.14372e-14 2.718 ||| 0-1 ||| 2 37521 +los ||| been labeled as ||| 0.5 0.0571429 2.66517e-05 2.75188e-10 2.718 ||| 0-1 ||| 2 37521 +los ||| been labeled ||| 0.5 0.0571429 2.66517e-05 3.25455e-08 2.718 ||| 0-1 ||| 2 37521 +los ||| began five months earlier ||| 0.25 0.0014641 2.66517e-05 6.12378e-18 2.718 ||| 0-1 ||| 4 37521 +los ||| began five months ||| 0.25 0.0014641 2.66517e-05 2.94696e-14 2.718 ||| 0-1 ||| 4 37521 +los ||| began five ||| 0.25 0.0014641 2.66517e-05 7.5563e-10 2.718 ||| 0-1 ||| 4 37521 +los ||| beginning . the ||| 0.5 0.145844 2.66517e-05 1.09897e-07 2.718 ||| 0-2 ||| 2 37521 +los ||| behind by the ||| 0.25 0.145844 2.66517e-05 4.04846e-07 2.718 ||| 0-2 ||| 4 37521 +los ||| behind the ||| 0.00558659 0.145844 2.66517e-05 5.97691e-05 2.718 ||| 0-1 ||| 179 37521 +los ||| being exposed as the army ||| 1 0.145844 2.66517e-05 1.38549e-14 2.718 ||| 0-3 ||| 1 37521 +los ||| being exposed as the ||| 1 0.145844 2.66517e-05 1.77855e-10 2.718 ||| 0-3 ||| 1 37521 +los ||| belongs to the ||| 0.0833333 0.145844 2.66517e-05 3.29029e-07 2.718 ||| 0-2 ||| 12 37521 +los ||| below the peak reached ||| 0.5 0.145844 2.66517e-05 3.0054e-14 2.718 ||| 0-1 ||| 2 37521 +los ||| below the peak ||| 0.5 0.145844 2.66517e-05 2.72229e-10 2.718 ||| 0-1 ||| 2 37521 +los ||| below the ||| 0.0125 0.145844 2.66517e-05 1.39604e-05 2.718 ||| 0-1 ||| 80 37521 +los ||| beneficiaries , ||| 0.5 0.233333 2.66517e-05 2.78421e-05 2.718 ||| 0-0 ||| 2 37521 +los ||| beneficiaries ||| 0.02 0.233333 2.66517e-05 0.0001363 2.718 ||| 0-0 ||| 50 37521 +los ||| benefits ||| 0.00174216 0.0253807 5.33035e-05 0.0002433 2.718 ||| 0-0 ||| 1148 37521 +los ||| besieged them ||| 1 0.0948535 2.66517e-05 2.60026e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| beta-secretase and gamma-secretase , ||| 1 0.4 2.66517e-05 2.17412e-13 2.718 ||| 0-2 ||| 1 37521 +los ||| beta-secretase and gamma-secretase ||| 1 0.4 2.66517e-05 1.06433e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| better about the ||| 1 0.145844 2.66517e-05 7.74275e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| between the ||| 0.00121507 0.145844 2.66517e-05 9.96254e-05 2.718 ||| 0-1 ||| 823 37521 +los ||| between them ||| 0.0185185 0.0948535 2.66517e-05 1.29893e-06 2.718 ||| 0-1 ||| 54 37521 +los ||| between ||| 0.000246184 0.0002734 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 4062 37521 +los ||| beyond the ||| 0.00934579 0.145844 5.33035e-05 8.96537e-05 2.718 ||| 0-1 ||| 214 37521 +los ||| big swings ||| 0.5 0.160919 2.66517e-05 3.0095e-08 2.718 ||| 0-1 ||| 2 37521 +los ||| bilateral ||| 0.00591716 0.0067568 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 338 37521 +los ||| bird ||| 0.0294118 0.0227273 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 34 37521 +los ||| black-box ||| 1 0.0833333 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| blinded for the ||| 1 0.145844 2.66517e-05 9.4937e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| block ||| 0.0165289 0.0143885 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 121 37521 +los ||| boards ||| 0.0144928 0.12766 2.66517e-05 0.0001168 2.718 ||| 0-0 ||| 69 37521 +los ||| bodies ||| 0.00460829 0.107143 2.66517e-05 0.0002336 2.718 ||| 0-0 ||| 217 37521 +los ||| bombers dropped ||| 1 0.151515 2.66517e-05 3.7947e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| bombers ||| 0.0222222 0.151515 2.66517e-05 9.73e-05 2.718 ||| 0-0 ||| 45 37521 +los ||| bond level ||| 1 0.0698413 2.66517e-05 4.86649e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| bond ||| 0.00961538 0.0698413 5.33035e-05 0.0002141 2.718 ||| 0-0 ||| 208 37521 +los ||| bond-market ||| 0.142857 0.176471 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 7 37521 +los ||| bonds . ||| 0.0454545 0.148208 2.66517e-05 4.07236e-06 2.718 ||| 0-0 ||| 22 37521 +los ||| bonds ||| 0.00153139 0.148208 2.66517e-05 0.0008857 2.718 ||| 0-0 ||| 653 37521 +los ||| books ||| 0.00598802 0.11465 2.66517e-05 0.0001752 2.718 ||| 0-0 ||| 167 37521 +los ||| booming ||| 0.00980392 0.0074074 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 102 37521 +los ||| boosting ||| 0.010101 0.0076923 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 99 37521 +los ||| border-enforcement ||| 1 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| borrow the ||| 0.142857 0.145844 2.66517e-05 1.19661e-05 2.718 ||| 0-1 ||| 7 37521 +los ||| borrowing ||| 0.00668896 0.114667 5.33035e-05 0.0004185 2.718 ||| 0-0 ||| 299 37521 +los ||| bosses ||| 0.0333333 0.28 5.33035e-05 0.0002725 2.718 ||| 0-0 ||| 60 37521 +los ||| both never ||| 0.166667 0.0598988 2.66517e-05 3.36688e-07 2.718 ||| 0-0 ||| 6 37521 +los ||| both states ||| 0.5 0.195514 2.66517e-05 7.68053e-06 2.718 ||| 0-1 ||| 2 37521 +los ||| both the ||| 0.0462185 0.145844 0.000293169 0.000524054 2.718 ||| 0-1 ||| 238 37521 +los ||| both ||| 0.0112211 0.0598988 0.000906159 0.0020732 2.718 ||| 0-0 ||| 3030 37521 +los ||| bought the ||| 0.142857 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-1 ||| 7 37521 +los ||| boys ||| 0.0140845 0.204545 2.66517e-05 0.0001752 2.718 ||| 0-0 ||| 71 37521 +los ||| brain ||| 0.010101 0.010101 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 198 37521 +los ||| branching downstream ||| 1 0.166667 2.66517e-05 3.1655e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| brand-name ||| 0.25 0.4 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 8 37521 +los ||| bread ||| 0.0243902 0.04 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 41 37521 +los ||| bring out ||| 0.166667 0.0050566 2.66517e-05 1.115e-07 2.718 ||| 0-1 ||| 6 37521 +los ||| bring together the ||| 0.5 0.145844 2.66517e-05 8.15269e-08 2.718 ||| 0-2 ||| 2 37521 +los ||| bringing the ||| 0.0645161 0.145844 5.33035e-05 4.18507e-05 2.718 ||| 0-1 ||| 31 37521 +los ||| brought litigation ||| 1 0.157895 2.66517e-05 1.42233e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| brought the ||| 0.0333333 0.145844 2.66517e-05 0.000149453 2.718 ||| 0-1 ||| 30 37521 +los ||| budget ||| 0.0010582 0.0012706 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 945 37521 +los ||| burn them ||| 1 0.0948535 2.66517e-05 2.60026e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| bursting at the seams ||| 1 0.145844 2.66517e-05 3.84737e-14 2.718 ||| 0-2 ||| 1 37521 +los ||| bursting at the ||| 1 0.145844 2.66517e-05 5.91903e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| business as ||| 0.0175439 0.10925 2.66517e-05 1.2345e-05 2.718 ||| 0-0 ||| 57 37521 +los ||| business demoralized Egyptian ||| 0.5 0.10925 2.66517e-05 1.85055e-13 2.718 ||| 0-0 ||| 2 37521 +los ||| business demoralized ||| 0.5 0.10925 2.66517e-05 9.49e-09 2.718 ||| 0-0 ||| 2 37521 +los ||| business ||| 0.00673968 0.10925 0.000213214 0.00146 2.718 ||| 0-0 ||| 1187 37521 +los ||| businessmen ||| 0.00970874 0.252427 2.66517e-05 0.0002531 2.718 ||| 0-0 ||| 103 37521 +los ||| but a sovereign default would require a ||| 1 0.0001143 2.66517e-05 3.95227e-23 2.718 ||| 0-0 ||| 1 37521 +los ||| but a sovereign default would require ||| 1 0.0001143 2.66517e-05 9.82369e-22 2.718 ||| 0-0 ||| 1 37521 +los ||| but a sovereign default would ||| 1 0.0001143 2.66517e-05 6.87452e-18 2.718 ||| 0-0 ||| 1 37521 +los ||| but a sovereign default ||| 1 0.0001143 2.66517e-05 1.48674e-15 2.718 ||| 0-0 ||| 1 37521 +los ||| but a sovereign ||| 1 0.0001143 2.66517e-05 2.29081e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| but a ||| 0.00323625 0.0001143 2.66517e-05 1.17477e-06 2.718 ||| 0-0 ||| 309 37521 +los ||| but the other three refused ||| 1 0.145844 2.66517e-05 1.15651e-15 2.718 ||| 0-1 ||| 1 37521 +los ||| but the other three ||| 1 0.145844 2.66517e-05 3.5585e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| but the other ||| 0.166667 0.145844 2.66517e-05 4.21624e-07 2.718 ||| 0-1 ||| 6 37521 +los ||| but the threat to the new global ||| 1 0.145844 2.66517e-05 5.37477e-17 2.718 ||| 0-1 ||| 1 37521 +los ||| but the threat to the new ||| 1 0.145844 2.66517e-05 9.7369e-14 2.718 ||| 0-1 ||| 1 37521 +los ||| but the threat to the ||| 1 0.145844 2.66517e-05 1.32673e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| but the threat to ||| 1 0.145844 2.66517e-05 2.49716e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| but the threat ||| 0.5 0.145844 2.66517e-05 3.02723e-08 2.718 ||| 0-1 ||| 2 37521 +los ||| but the ||| 0.00220361 0.145844 0.000133259 0.000358676 2.718 ||| 0-1 ||| 2269 37521 +los ||| but ||| 9.33576e-05 0.0001143 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 21423 37521 +los ||| buyers ||| 0.0153846 0.302326 2.66517e-05 0.0002531 2.718 ||| 0-0 ||| 65 37521 +los ||| by , the ||| 0.333333 0.145844 2.66517e-05 0.000424529 2.718 ||| 0-2 ||| 3 37521 +los ||| by America ||| 0.04 0.072278 2.66517e-05 1.80381e-05 2.718 ||| 0-0 0-1 ||| 25 37521 +los ||| by consumers ||| 0.111111 0.412186 2.66517e-05 1.51638e-05 2.718 ||| 0-1 ||| 9 37521 +los ||| by health-services ||| 1 0.504054 2.66517e-05 1.62388e-08 2.718 ||| 0-0 0-1 ||| 1 37521 +los ||| by inhibiting the two APP enzymes , ||| 1 0.145844 2.66517e-05 3.63399e-23 2.718 ||| 0-2 ||| 1 37521 +los ||| by inhibiting the two APP enzymes ||| 1 0.145844 2.66517e-05 1.77901e-22 2.718 ||| 0-2 ||| 1 37521 +los ||| by inhibiting the two APP ||| 1 0.145844 2.66517e-05 2.73694e-17 2.718 ||| 0-2 ||| 1 37521 +los ||| by inhibiting the two ||| 1 0.145844 2.66517e-05 4.21067e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| by inhibiting the ||| 1 0.145844 2.66517e-05 1.35087e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| by most ||| 0.025 0.0022661 2.66517e-05 1.18672e-06 2.718 ||| 0-1 ||| 40 37521 +los ||| by others ||| 0.0333333 0.104106 2.66517e-05 1.18672e-05 2.718 ||| 0-1 ||| 30 37521 +los ||| by the coffee shops ||| 1 0.145844 2.66517e-05 3.51227e-13 2.718 ||| 0-1 ||| 1 37521 +los ||| by the coffee ||| 1 0.145844 2.66517e-05 1.35087e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| by the murderous ||| 1 0.145844 2.66517e-05 1.35087e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| by the world 's ||| 1 0.145844 2.66517e-05 2.83746e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| by the world ||| 0.142857 0.145844 2.66517e-05 1.82202e-06 2.718 ||| 0-1 ||| 7 37521 +los ||| by the ||| 0.011554 0.145844 0.00106607 0.00207827 2.718 ||| 0-1 ||| 3462 37521 +los ||| by their early ||| 1 0.0328767 2.66517e-05 4.25414e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| by their ||| 0.0070922 0.0188051 2.66517e-05 1.67461e-05 2.718 ||| 0-1 ||| 141 37521 +los ||| by those ||| 0.0175439 0.209531 2.66517e-05 5.18857e-05 2.718 ||| 0-1 ||| 57 37521 +los ||| by young ||| 0.5 0.113725 2.66517e-05 5.7358e-06 2.718 ||| 0-1 ||| 2 37521 +los ||| by ||| 0.00534964 0.0081082 0.00261187 0.0016741 2.718 ||| 0-0 ||| 18319 37521 +los ||| calculations ||| 0.0107527 0.217822 2.66517e-05 0.0002141 2.718 ||| 0-0 ||| 93 37521 +los ||| call centers ||| 0.0909091 0.062069 2.66517e-05 2.16197e-08 2.718 ||| 0-1 ||| 11 37521 +los ||| called beta-secretase and gamma-secretase , ||| 1 0.4 2.66517e-05 7.05936e-17 2.718 ||| 0-3 ||| 1 37521 +los ||| called beta-secretase and gamma-secretase ||| 1 0.4 2.66517e-05 3.45589e-16 2.718 ||| 0-3 ||| 1 37521 +los ||| calls ||| 0.00647249 0.0620843 5.33035e-05 0.0002725 2.718 ||| 0-0 ||| 309 37521 +los ||| campaigners ||| 0.027027 0.333333 2.66517e-05 0.0001752 2.718 ||| 0-0 ||| 37 37521 +los ||| camps ||| 0.0135135 0.0869565 5.33035e-05 9.73e-05 2.718 ||| 0-0 ||| 148 37521 +los ||| can hear them , ||| 1 0.0948535 2.66517e-05 6.51968e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| can hear them ||| 1 0.0948535 2.66517e-05 3.19169e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| can make them ||| 0.5 0.0948535 2.66517e-05 9.24748e-09 2.718 ||| 0-2 ||| 2 37521 +los ||| can only be tuned ||| 0.333333 0.166667 2.66517e-05 1.90114e-13 2.718 ||| 0-3 ||| 3 37521 +los ||| can the ||| 0.0192308 0.145844 2.66517e-05 0.000538014 2.718 ||| 0-1 ||| 52 37521 +los ||| candidate ||| 0.00248756 0.006006 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 402 37521 +los ||| candidates ||| 0.00278552 0.20155 2.66517e-05 0.0007592 2.718 ||| 0-0 ||| 359 37521 +los ||| capital held ||| 1 0.0185638 2.66517e-05 1.7537e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| capital ||| 0.00145985 0.0185638 0.000106607 0.0003699 2.718 ||| 0-0 ||| 2740 37521 +los ||| capture the ||| 0.0833333 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-1 ||| 12 37521 +los ||| care ||| 0.00179211 0.0027778 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 558 37521 +los ||| carried out ||| 0.0108696 0.0050566 2.66517e-05 4.51315e-08 2.718 ||| 0-1 ||| 92 37521 +los ||| cars ||| 0.00518135 0.041958 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 193 37521 +los ||| casts and mounted skeletons of the specimen ||| 0.5 0.145844 2.66517e-05 4.96996e-25 2.718 ||| 0-5 ||| 2 37521 +los ||| casts and mounted skeletons of the ||| 0.5 0.145844 2.66517e-05 7.6461e-20 2.718 ||| 0-5 ||| 2 37521 +los ||| cattle ||| 0.037037 0.0384615 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 27 37521 +los ||| caused the problem , rather ||| 1 0.145844 2.66517e-05 2.64182e-13 2.718 ||| 0-1 ||| 1 37521 +los ||| caused the problem , ||| 0.333333 0.145844 2.66517e-05 7.1362e-10 2.718 ||| 0-1 ||| 3 37521 +los ||| caused the problem ||| 0.25 0.145844 2.66517e-05 3.49351e-09 2.718 ||| 0-1 ||| 4 37521 +los ||| caused the ||| 0.0238095 0.145844 2.66517e-05 2.98846e-05 2.718 ||| 0-1 ||| 42 37521 +los ||| caution the ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 2 37521 +los ||| cell ||| 0.0747126 0.0738636 0.000346473 0.0001265 2.718 ||| 0-0 ||| 174 37521 +los ||| centers ||| 0.00943396 0.062069 5.33035e-05 8.76e-05 2.718 ||| 0-0 ||| 212 37521 +los ||| central ||| 0.000658328 0.000731 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1519 37521 +los ||| central-bank ||| 0.1 0.0666667 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 20 37521 +los ||| centrifuge ||| 0.166667 0.0909091 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 6 37521 +los ||| certain inalienable rights , including the ||| 1 0.145844 2.66517e-05 4.17928e-18 2.718 ||| 0-5 ||| 1 37521 +los ||| challenge the ||| 0.0217391 0.145844 2.66517e-05 3.7862e-05 2.718 ||| 0-1 ||| 46 37521 +los ||| challenges ||| 0.00238095 0.0030534 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 840 37521 +los ||| championships ||| 0.333333 0.454545 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 3 37521 +los ||| change them ||| 0.166667 0.0948535 2.66517e-05 7.79278e-07 2.718 ||| 0-1 ||| 6 37521 +los ||| changes , ||| 0.0322581 0.161361 2.66517e-05 0.00029227 2.718 ||| 0-0 ||| 31 37521 +los ||| changes ||| 0.00434311 0.161361 0.000106607 0.0014308 2.718 ||| 0-0 ||| 921 37521 +los ||| channel the ||| 0.333333 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 3 37521 +los ||| charitable-campaign ||| 1 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| chase the ||| 0.5 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-1 ||| 2 37521 +los ||| cheap , ||| 0.0416667 0.0093458 2.66517e-05 3.98328e-06 2.718 ||| 0-0 ||| 24 37521 +los ||| cheap ||| 0.0103093 0.0093458 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 194 37521 +los ||| child bearing , ||| 1 0.0639731 2.66517e-05 9.8201e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| child bearing ||| 1 0.0639731 2.66517e-05 4.8074e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| child ||| 0.00363636 0.0639731 2.66517e-05 0.0001849 2.718 ||| 0-0 ||| 275 37521 +los ||| children 's ||| 0.0714286 0.131495 2.66517e-05 4.99396e-05 2.718 ||| 0-0 0-1 ||| 14 37521 +los ||| children ||| 0.00584226 0.226644 0.00015991 0.0025501 2.718 ||| 0-0 ||| 1027 37521 +los ||| chosen by the ||| 0.25 0.145844 2.66517e-05 1.0807e-07 2.718 ||| 0-2 ||| 4 37521 +los ||| citizens ||| 0.00462535 0.332668 0.000133259 0.0048667 2.718 ||| 0-0 ||| 1081 37521 +los ||| city ||| 0.0117994 0.015674 0.000106607 4.87e-05 2.718 ||| 0-0 ||| 339 37521 +los ||| civic ||| 0.0163934 0.0149254 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 61 37521 +los ||| civil engineering ||| 0.333333 0.0138504 2.66517e-05 1.2649e-09 2.718 ||| 0-0 ||| 3 37521 +los ||| civil ||| 0.00943396 0.0138504 0.000186562 9.73e-05 2.718 ||| 0-0 ||| 742 37521 +los ||| civilians ||| 0.00408163 0.188679 2.66517e-05 0.0004867 2.718 ||| 0-0 ||| 245 37521 +los ||| clean up ||| 0.0277778 0.0054795 2.66517e-05 1.25034e-08 2.718 ||| 0-1 ||| 36 37521 +los ||| clear the ||| 0.111111 0.145844 2.66517e-05 7.17352e-05 2.718 ||| 0-1 ||| 9 37521 +los ||| clearly tempting for critics of authoritarian regimes ||| 1 0.268344 2.66517e-05 3.66103e-26 2.718 ||| 0-6 ||| 1 37521 +los ||| clever ||| 0.0285714 0.0540541 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 35 37521 +los ||| clinicians ||| 0.125 0.37037 2.66517e-05 9.73e-05 2.718 ||| 0-0 ||| 8 37521 +los ||| clock on the ||| 1 0.145844 2.66517e-05 2.34685e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| close the ||| 0.0384615 0.145844 2.66517e-05 8.1707e-05 2.718 ||| 0-1 ||| 26 37521 +los ||| close to the government allow the ||| 0.0526316 0.145844 2.66517e-05 2.44269e-14 2.718 ||| 0-2 ||| 19 37521 +los ||| close to the government allow ||| 0.0526316 0.145844 2.66517e-05 4.59762e-13 2.718 ||| 0-2 ||| 19 37521 +los ||| close to the government ||| 0.0526316 0.145844 2.66517e-05 3.37069e-09 2.718 ||| 0-2 ||| 19 37521 +los ||| close to the ||| 0.0166667 0.145844 2.66517e-05 6.74002e-06 2.718 ||| 0-2 ||| 60 37521 +los ||| club ||| 0.0153846 0.0181818 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 65 37521 +los ||| clubs ||| 0.0285714 0.181818 2.66517e-05 7.79e-05 2.718 ||| 0-0 ||| 35 37521 +los ||| coal-state ||| 1 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| coalition ||| 0.00170068 0.0025 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 588 37521 +los ||| coastal ||| 0.016129 0.0153846 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 62 37521 +los ||| cohorts of ||| 0.333333 0.210526 2.66517e-05 1.05093e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| cohorts ||| 0.1 0.210526 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 20 37521 +los ||| come from the ||| 0.0454545 0.145844 2.66517e-05 6.21193e-07 2.718 ||| 0-2 ||| 22 37521 +los ||| come to the ||| 0.0909091 0.145844 2.66517e-05 3.10654e-05 2.718 ||| 0-2 ||| 11 37521 +los ||| coming on top of the ||| 0.5 0.145844 2.66517e-05 4.6015e-12 2.718 ||| 0-4 ||| 2 37521 +los ||| coming ||| 0.00195695 0.0223214 2.66517e-05 0.000146 2.718 ||| 0-0 ||| 511 37521 +los ||| commercial ||| 0.00325733 0.003413 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 307 37521 +los ||| commitments ||| 0.00328947 0.115987 2.66517e-05 0.0003601 2.718 ||| 0-0 ||| 304 37521 +los ||| communist ||| 0.00454545 0.0143541 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 220 37521 +los ||| compound the ||| 0.0909091 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-1 ||| 11 37521 +los ||| comprehensive ||| 0.00829876 0.0120968 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 241 37521 +los ||| computer ||| 0.0115385 0.0146341 7.99552e-05 2.92e-05 2.718 ||| 0-0 ||| 260 37521 +los ||| concerned ||| 0.0097561 0.0096154 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 205 37521 +los ||| concerts ||| 0.142857 0.307692 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 7 37521 +los ||| conflict ||| 0.00168634 0.0021436 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 1186 37521 +los ||| conflicts ||| 0.00257069 0.264957 2.66517e-05 0.0012069 2.718 ||| 0-0 ||| 389 37521 +los ||| confused ||| 0.0163934 0.0298507 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 61 37521 +los ||| considering the ||| 0.047619 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-1 ||| 21 37521 +los ||| consultant 's ||| 0.0526316 0.0363459 2.66517e-05 1.27292e-07 2.718 ||| 0-1 ||| 19 37521 +los ||| consumer ||| 0.00724638 0.183956 5.33035e-05 0.0012945 2.718 ||| 0-0 ||| 276 37521 +los ||| consumer-confidence ||| 1 0.166667 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| consumers ||| 0.00273973 0.412186 2.66517e-05 0.0022387 2.718 ||| 0-0 ||| 365 37521 +los ||| consuming ||| 0.025641 0.04 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 39 37521 +los ||| contacts made ||| 1 0.243243 2.66517e-05 1.93421e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| contacts ||| 0.0181818 0.243243 2.66517e-05 0.0001752 2.718 ||| 0-0 ||| 55 37521 +los ||| contain the ||| 0.0277778 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-1 ||| 36 37521 +los ||| continue the Duhalde government ||| 1 0.145844 2.66517e-05 2.78567e-13 2.718 ||| 0-1 ||| 1 37521 +los ||| continue the Duhalde ||| 1 0.145844 2.66517e-05 5.57022e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| continue the ||| 0.0833333 0.145844 2.66517e-05 8.56957e-05 2.718 ||| 0-1 ||| 12 37521 +los ||| continuity -- the core ||| 1 0.145844 2.66517e-05 9.11254e-13 2.718 ||| 0-2 ||| 1 37521 +los ||| continuity -- the ||| 1 0.145844 2.66517e-05 1.00248e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| contract ||| 0.0130719 0.0409836 5.33035e-05 4.87e-05 2.718 ||| 0-0 ||| 153 37521 +los ||| contracts ||| 0.0162162 0.263889 7.99552e-05 0.0005548 2.718 ||| 0-0 ||| 185 37521 +los ||| control ||| 0.00201207 0.0043478 7.99552e-05 4.87e-05 2.718 ||| 0-0 ||| 1491 37521 +los ||| controlling the ||| 0.0434783 0.145844 2.66517e-05 1.19661e-05 2.718 ||| 0-1 ||| 23 37521 +los ||| controls only ||| 0.25 0.255868 2.66517e-05 1.15055e-06 2.718 ||| 0-0 ||| 4 37521 +los ||| controls ||| 0.00234742 0.255868 2.66517e-05 0.0010609 2.718 ||| 0-0 ||| 426 37521 +los ||| cooperative ||| 0.0111111 0.0136986 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 90 37521 +los ||| core component ||| 0.125 0.0105263 2.66517e-05 7.5855e-10 2.718 ||| 0-0 ||| 8 37521 +los ||| core value propositions ||| 0.111111 0.0105263 2.66517e-05 4.92552e-14 2.718 ||| 0-0 ||| 9 37521 +los ||| core value ||| 0.1 0.0105263 2.66517e-05 7.57772e-09 2.718 ||| 0-0 ||| 10 37521 +los ||| core ||| 0.00787402 0.0105263 7.99552e-05 3.89e-05 2.718 ||| 0-0 ||| 381 37521 +los ||| corporate ||| 0.00728155 0.0286344 7.99552e-05 0.0001265 2.718 ||| 0-0 ||| 412 37521 +los ||| corrupt ||| 0.00377358 0.0041667 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 265 37521 +los ||| costs ||| 0.0034459 0.190089 0.000133259 0.0025015 2.718 ||| 0-0 ||| 1451 37521 +los ||| countries , ||| 0.00162866 0.228661 2.66517e-05 0.00539009 2.718 ||| 0-0 ||| 614 37521 +los ||| countries sit there . ||| 1 0.228661 2.66517e-05 2.01934e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| countries sit there ||| 1 0.228661 2.66517e-05 4.39188e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| countries sit ||| 1 0.228661 2.66517e-05 2.05555e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| countries stop developing ||| 0.166667 0.228661 2.66517e-05 6.40216e-10 2.718 ||| 0-0 ||| 6 37521 +los ||| countries stop ||| 0.166667 0.228661 2.66517e-05 4.28525e-06 2.718 ||| 0-0 ||| 6 37521 +los ||| countries surrender 100 % ||| 1 0.228661 2.66517e-05 1.43381e-15 2.718 ||| 0-0 ||| 1 37521 +los ||| countries surrender 100 ||| 1 0.228661 2.66517e-05 1.00337e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| countries surrender ||| 1 0.228661 2.66517e-05 5.14547e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| countries will embrace the ||| 1 0.145844 2.66517e-05 1.87942e-11 2.718 ||| 0-3 ||| 1 37521 +los ||| countries ||| 0.00346799 0.228661 0.000986114 0.026387 2.718 ||| 0-0 ||| 10669 37521 +los ||| country 's ||| 0.00221976 0.0363459 5.33035e-05 1.51341e-05 2.718 ||| 0-1 ||| 901 37521 +los ||| course the ||| 0.25 0.145844 2.66517e-05 0.000131504 2.718 ||| 0-1 ||| 4 37521 +los ||| coverage in the ||| 0.5 0.145844 2.66517e-05 1.22576e-07 2.718 ||| 0-2 ||| 2 37521 +los ||| covering the ||| 0.2 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-1 ||| 5 37521 +los ||| crack the ||| 1 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-1 ||| 1 37521 +los ||| created the ||| 0.027027 0.145844 2.66517e-05 4.3845e-05 2.718 ||| 0-1 ||| 37 37521 +los ||| credit do not ||| 1 0.0029128 2.66517e-05 3.66978e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| credit do ||| 1 0.0029128 2.66517e-05 1.56101e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| credit ||| 0.00179695 0.0048638 5.33035e-05 4.87e-05 2.718 ||| 0-0 ||| 1113 37521 +los ||| creditors ||| 0.00471698 0.381877 2.66517e-05 0.0011485 2.718 ||| 0-0 ||| 212 37521 +los ||| credits ||| 0.016129 0.216867 2.66517e-05 0.0001752 2.718 ||| 0-0 ||| 62 37521 +los ||| criminal investigators -- searched ||| 1 0.290323 2.66517e-05 1.30228e-16 2.718 ||| 0-1 ||| 1 37521 +los ||| criminal investigators -- ||| 1 0.290323 2.66517e-05 2.0035e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| criminal investigators ||| 1 0.290323 2.66517e-05 3.9858e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| criminals ||| 0.013245 0.218487 5.33035e-05 0.0002531 2.718 ||| 0-0 ||| 151 37521 +los ||| crises , if not for the sovereign-debt ||| 1 0.145844 2.66517e-05 9.42951e-20 2.718 ||| 0-5 ||| 1 37521 +los ||| crises , if not for the ||| 1 0.145844 2.66517e-05 1.45069e-14 2.718 ||| 0-5 ||| 1 37521 +los ||| criteria ||| 0.0120482 0.0878378 5.33035e-05 0.0001265 2.718 ||| 0-0 ||| 166 37521 +los ||| critics of authoritarian regimes to argue ||| 1 0.268344 2.66517e-05 9.7508e-20 2.718 ||| 0-3 ||| 1 37521 +los ||| critics of authoritarian regimes to ||| 1 0.268344 2.66517e-05 9.3848e-16 2.718 ||| 0-3 ||| 1 37521 +los ||| critics of authoritarian regimes ||| 1 0.268344 2.66517e-05 1.13769e-14 2.718 ||| 0-3 ||| 1 37521 +los ||| crowned heads ||| 1 0.158371 2.66517e-05 2.21455e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| cry , the ||| 1 0.145844 2.66517e-05 2.44432e-06 2.718 ||| 0-2 ||| 1 37521 +los ||| currency ||| 0.000687758 0.0008718 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1454 37521 +los ||| current leaders ||| 0.0666667 0.341338 2.66517e-05 4.00015e-06 2.718 ||| 0-1 ||| 15 37521 +los ||| current ||| 0.000971817 0.0026357 5.33035e-05 4.87e-05 2.718 ||| 0-0 ||| 2058 37521 +los ||| curtailing ||| 0.0465116 0.0540541 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 43 37521 +los ||| customers ||| 0.00840336 0.265432 2.66517e-05 0.0004185 2.718 ||| 0-0 ||| 119 37521 +los ||| cut them ||| 0.166667 0.0948535 5.33035e-05 1.24692e-06 2.718 ||| 0-1 ||| 12 37521 +los ||| cut ||| 0.00414938 0.0051724 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 482 37521 +los ||| cuts ||| 0.00306279 0.096831 5.33035e-05 0.0005353 2.718 ||| 0-0 ||| 653 37521 +los ||| cutting ||| 0.018018 0.027027 0.000106607 6.81e-05 2.718 ||| 0-0 ||| 222 37521 +los ||| daily ||| 0.00540541 0.0152284 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 185 37521 +los ||| dairy products , higher oil prices ||| 0.5 0.438459 2.66517e-05 2.0117e-20 2.718 ||| 0-5 ||| 2 37521 +los ||| damage ||| 0.00223714 0.0114943 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 447 37521 +los ||| damages ||| 0.0294118 0.148936 2.66517e-05 6.81e-05 2.718 ||| 0-0 ||| 34 37521 +los ||| dealt with ||| 0.0217391 0.0012991 2.66517e-05 1.5914e-08 2.718 ||| 0-1 ||| 46 37521 +los ||| death-penalty ||| 1 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| decision makers ||| 0.0555556 0.105769 2.66517e-05 8.34309e-09 2.718 ||| 0-1 ||| 18 37521 +los ||| declining . ||| 0.0714286 0.0173913 2.66517e-05 2.68517e-07 2.718 ||| 0-0 ||| 14 37521 +los ||| declining ||| 0.00364964 0.0173913 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 274 37521 +los ||| decreased ||| 0.0192308 0.0208333 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 52 37521 +los ||| deeply held among the ||| 1 0.145844 2.66517e-05 3.18962e-12 2.718 ||| 0-3 ||| 1 37521 +los ||| deepwater ||| 1 0.5 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| defenders were ||| 0.5 0.301587 2.66517e-05 4.09461e-07 2.718 ||| 0-0 ||| 2 37521 +los ||| defenders ||| 0.0196078 0.301587 2.66517e-05 0.0001849 2.718 ||| 0-0 ||| 51 37521 +los ||| deflation fears were ||| 1 0.230769 2.66517e-05 1.30297e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| deflation fears ||| 1 0.230769 2.66517e-05 5.8838e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| defunct ||| 0.1 0.1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 10 37521 +los ||| demanded by consumers ||| 0.25 0.412186 2.66517e-05 9.84133e-10 2.718 ||| 0-2 ||| 4 37521 +los ||| democracy the ||| 0.333333 0.145844 2.66517e-05 1.19661e-05 2.718 ||| 0-1 ||| 3 37521 +los ||| deny them ||| 0.0666667 0.0948535 2.66517e-05 1.30013e-07 2.718 ||| 0-1 ||| 15 37521 +los ||| deposits , ||| 0.1 0.312139 2.66517e-05 0.000107365 2.718 ||| 0-0 ||| 10 37521 +los ||| deposits ||| 0.00632911 0.312139 2.66517e-05 0.0005256 2.718 ||| 0-0 ||| 158 37521 +los ||| deprived ||| 0.027027 0.0151515 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 37 37521 +los ||| designing them ||| 0.25 0.0948535 2.66517e-05 2.60026e-08 2.718 ||| 0-1 ||| 4 37521 +los ||| destroyed the very ||| 1 0.145844 2.66517e-05 8.41915e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| destroyed the ||| 0.0416667 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-1 ||| 24 37521 +los ||| detainee ||| 0.142857 0.35 5.33035e-05 6.81e-05 2.718 ||| 0-0 ||| 14 37521 +los ||| determined efforts made to ||| 1 0.197105 2.66517e-05 1.64528e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| determined efforts made ||| 1 0.197105 2.66517e-05 1.99451e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| determined efforts ||| 0.25 0.197105 2.66517e-05 1.80662e-07 2.718 ||| 0-1 ||| 4 37521 +los ||| developed ||| 0.00637755 0.0270588 0.000133259 0.0002239 2.718 ||| 0-0 ||| 784 37521 +los ||| developing ||| 0.00107527 0.185297 2.66517e-05 0.0065505 2.718 ||| 0-0 ||| 930 37521 +los ||| developing-country ||| 0.0571429 0.25 5.33035e-05 0.0001752 2.718 ||| 0-0 ||| 35 37521 +los ||| developments , ||| 0.0666667 0.257485 2.66517e-05 0.000170995 2.718 ||| 0-0 ||| 15 37521 +los ||| developments are out ||| 1 0.257485 2.66517e-05 2.74895e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| developments are ||| 0.166667 0.257485 2.66517e-05 6.19747e-06 2.718 ||| 0-0 ||| 6 37521 +los ||| developments ||| 0.0083682 0.257485 5.33035e-05 0.0008371 2.718 ||| 0-0 ||| 239 37521 +los ||| devils ||| 0.5 0.333333 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| diagnosed ||| 0.05 0.0454545 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 20 37521 +los ||| dictates ||| 0.04 0.192308 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 25 37521 +los ||| dictators ||| 0.0108696 0.245454 2.66517e-05 0.0002628 2.718 ||| 0-0 ||| 92 37521 +los ||| did the ||| 0.0344828 0.145844 5.33035e-05 0.000492175 2.718 ||| 0-1 ||| 58 37521 +los ||| die-hard ||| 0.5 0.384615 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 2 37521 +los ||| difficult ||| 0.00362976 0.0044563 0.000106607 4.87e-05 2.718 ||| 0-0 ||| 1102 37521 +los ||| dipped in the water ||| 1 0.145844 2.66517e-05 2.58635e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| dipped in the ||| 1 0.145844 2.66517e-05 3.0644e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| directly to one of the public ||| 1 0.145844 2.66517e-05 6.25633e-14 2.718 ||| 0-4 ||| 1 37521 +los ||| directly to one of the ||| 1 0.145844 2.66517e-05 1.78395e-10 2.718 ||| 0-4 ||| 1 37521 +los ||| directors ||| 0.0285714 0.311111 5.33035e-05 0.0002725 2.718 ||| 0-0 ||| 70 37521 +los ||| discoveries ||| 0.0243902 0.192308 2.66517e-05 9.73e-05 2.718 ||| 0-0 ||| 41 37521 +los ||| discussions about the ||| 0.1 0.145844 2.66517e-05 2.42194e-09 2.718 ||| 0-2 ||| 10 37521 +los ||| discussions ||| 0.00724638 0.0656566 2.66517e-05 0.0001265 2.718 ||| 0-0 ||| 138 37521 +los ||| disease where the ||| 0.166667 0.145844 2.66517e-05 2.02067e-09 2.718 ||| 0-2 ||| 6 37521 +los ||| dismiss the prime minister , ||| 0.333333 0.145844 2.66517e-05 1.36042e-14 2.718 ||| 0-1 ||| 3 37521 +los ||| dismiss the prime minister ||| 0.333333 0.145844 2.66517e-05 6.65989e-14 2.718 ||| 0-1 ||| 3 37521 +los ||| dismiss the prime ||| 0.333333 0.145844 2.66517e-05 9.32757e-10 2.718 ||| 0-1 ||| 3 37521 +los ||| dismiss the ||| 0.0769231 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-1 ||| 13 37521 +los ||| dismissed by the ||| 1 0.145844 2.66517e-05 8.10524e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| displaced ||| 0.0135135 0.0769231 2.66517e-05 9.73e-05 2.718 ||| 0-0 ||| 74 37521 +los ||| disregard for ||| 0.0625 0.0444444 2.66517e-05 9.28258e-08 2.718 ||| 0-0 ||| 16 37521 +los ||| disregard ||| 0.0285714 0.0444444 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 35 37521 +los ||| distorted by the ||| 0.2 0.145844 2.66517e-05 2.70175e-08 2.718 ||| 0-2 ||| 5 37521 +los ||| distressed ||| 0.0181818 0.0795455 2.66517e-05 6.81e-05 2.718 ||| 0-0 ||| 55 37521 +los ||| distressing ||| 0.1 0.0833333 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 10 37521 +los ||| do business demoralized Egyptian ||| 0.5 0.10925 2.66517e-05 4.24239e-16 2.718 ||| 0-1 ||| 2 37521 +los ||| do business demoralized ||| 0.5 0.10925 2.66517e-05 2.17558e-11 2.718 ||| 0-1 ||| 2 37521 +los ||| do business ||| 0.0666667 0.10925 2.66517e-05 3.34705e-06 2.718 ||| 0-1 ||| 15 37521 +los ||| do exist in the ||| 1 0.145844 2.66517e-05 8.41935e-10 2.718 ||| 0-3 ||| 1 37521 +los ||| do not ||| 0.00107643 0.0029128 2.66517e-05 2.97389e-07 2.718 ||| 0-0 ||| 929 37521 +los ||| do so put the ||| 1 0.145844 2.66517e-05 1.91463e-09 2.718 ||| 0-3 ||| 1 37521 +los ||| do the ||| 0.0229885 0.145844 5.33035e-05 0.000703392 2.718 ||| 0-1 ||| 87 37521 +los ||| do their ||| 0.0666667 0.0188051 2.66517e-05 5.66775e-06 2.718 ||| 0-1 ||| 15 37521 +los ||| do ||| 0.00444691 0.0029128 0.000213214 0.0001265 2.718 ||| 0-0 ||| 1799 37521 +los ||| doctors ||| 0.00900901 0.335165 2.66517e-05 0.0005937 2.718 ||| 0-0 ||| 111 37521 +los ||| does the ||| 0.0163934 0.145844 2.66517e-05 0.000298876 2.718 ||| 0-1 ||| 61 37521 +los ||| dollar assets ||| 0.142857 0.0121131 2.66517e-05 1.13792e-08 2.718 ||| 0-1 ||| 7 37521 +los ||| domestic ||| 0.00639205 0.0132062 0.000239866 0.0001752 2.718 ||| 0-0 ||| 1408 37521 +los ||| domestically produced alternatives ||| 0.2 0.0083333 2.66517e-05 9.8696e-15 2.718 ||| 0-1 ||| 5 37521 +los ||| domestically produced ||| 0.181818 0.0083333 5.33035e-05 7.592e-10 2.718 ||| 0-1 ||| 11 37521 +los ||| dominate the process ||| 1 0.145844 2.66517e-05 4.66279e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| dominate the ||| 0.0322581 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 31 37521 +los ||| dominate ||| 0.00746269 0.0070423 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 134 37521 +los ||| donating ||| 0.111111 0.0769231 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 9 37521 +los ||| donor ||| 0.00714286 0.167742 2.66517e-05 0.0002531 2.718 ||| 0-0 ||| 140 37521 +los ||| down ||| 0.00176056 0.0006219 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 568 37521 +los ||| downside ||| 0.0103093 0.0555556 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 97 37521 +los ||| downstream ||| 0.142857 0.166667 5.33035e-05 4.87e-05 2.718 ||| 0-0 ||| 14 37521 +los ||| dramatic ||| 0.00396825 0.0040486 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 252 37521 +los ||| dreams ||| 0.0149254 0.164557 2.66517e-05 0.0001265 2.718 ||| 0-0 ||| 67 37521 +los ||| drive the ||| 0.0285714 0.145844 2.66517e-05 3.98563e-05 2.718 ||| 0-1 ||| 35 37521 +los ||| drive ||| 0.00414938 0.0036232 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 241 37521 +los ||| drug ||| 0.0120482 0.0535211 0.000106607 0.0003699 2.718 ||| 0-0 ||| 332 37521 +los ||| drugs ||| 0.00215983 0.0709677 2.66517e-05 0.0003212 2.718 ||| 0-0 ||| 463 37521 +los ||| during the run-up ||| 0.333333 0.145844 2.66517e-05 1.19182e-09 2.718 ||| 0-1 ||| 3 37521 +los ||| during the ||| 0.00190295 0.145844 5.33035e-05 4.58394e-05 2.718 ||| 0-1 ||| 1051 37521 +los ||| duties ||| 0.0151515 0.179487 2.66517e-05 0.0001363 2.718 ||| 0-0 ||| 66 37521 +los ||| each other 's ||| 0.111111 0.062069 2.66517e-05 1.92436e-08 2.718 ||| 0-0 ||| 9 37521 +los ||| each other ||| 0.0284091 0.062069 0.000133259 1.23569e-06 2.718 ||| 0-0 ||| 176 37521 +los ||| each put ||| 1 0.062069 2.66517e-05 1.26974e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| each side was met with ||| 1 0.062069 2.66517e-05 6.72476e-16 2.718 ||| 0-0 ||| 1 37521 +los ||| each side was met ||| 1 0.062069 2.66517e-05 1.77308e-13 2.718 ||| 0-0 ||| 1 37521 +los ||| each side was ||| 1 0.062069 2.66517e-05 1.1868e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| each side ||| 0.0416667 0.062069 2.66517e-05 3.13993e-07 2.718 ||| 0-0 ||| 24 37521 +los ||| each year ||| 0.00806452 0.062069 2.66517e-05 4.98374e-07 2.718 ||| 0-0 ||| 124 37521 +los ||| each ||| 0.0145299 0.062069 0.00045308 0.0010512 2.718 ||| 0-0 ||| 1170 37521 +los ||| early as ||| 0.0909091 0.0328767 2.66517e-05 2.96281e-06 2.718 ||| 0-0 ||| 11 37521 +los ||| early participants ||| 1 0.330769 2.66517e-05 9.7857e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| early ||| 0.0108063 0.0328767 0.000346473 0.0003504 2.718 ||| 0-0 ||| 1203 37521 +los ||| earnings ||| 0.0119048 0.0969388 5.33035e-05 0.0001849 2.718 ||| 0-0 ||| 168 37521 +los ||| eating them ||| 1 0.0948535 2.66517e-05 1.82018e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| economic ||| 0.000143947 0.0001553 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 6947 37521 +los ||| economists believe ||| 0.0769231 0.386781 2.66517e-05 4.5951e-07 2.718 ||| 0-0 ||| 13 37521 +los ||| economists ||| 0.00344828 0.386781 5.33035e-05 0.0030757 2.718 ||| 0-0 ||| 580 37521 +los ||| economy 's ||| 0.025 0.0363459 2.66517e-05 5.72227e-06 2.718 ||| 0-1 ||| 40 37521 +los ||| educated ||| 0.0075188 0.0253165 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 133 37521 +los ||| effect . since 1860 , when the ||| 1 0.145844 2.66517e-05 8.73455e-21 2.718 ||| 0-6 ||| 1 37521 +los ||| effective , ||| 0.0178571 0.0043103 2.66517e-05 7.94613e-06 2.718 ||| 0-0 ||| 56 37521 +los ||| effective ||| 0.00310559 0.0043103 7.99552e-05 3.89e-05 2.718 ||| 0-0 ||| 966 37521 +los ||| efforts made to ||| 0.5 0.197105 2.66517e-05 2.53509e-07 2.718 ||| 0-0 ||| 2 37521 +los ||| efforts made ||| 0.2 0.197105 2.66517e-05 3.0732e-06 2.718 ||| 0-0 ||| 5 37521 +los ||| efforts ||| 0.00544323 0.197105 0.000186562 0.0027837 2.718 ||| 0-0 ||| 1286 37521 +los ||| either the ||| 0.0392157 0.0895539 5.33035e-05 9.55754e-05 2.718 ||| 0-0 0-1 ||| 51 37521 +los ||| either ||| 0.00890869 0.033264 0.000106607 0.0003115 2.718 ||| 0-0 ||| 449 37521 +los ||| electoral fraud that began five months earlier ||| 0.25 0.0014641 2.66517e-05 1.05688e-29 2.718 ||| 0-4 ||| 4 37521 +los ||| electoral fraud that began five months ||| 0.25 0.0014641 2.66517e-05 5.08607e-26 2.718 ||| 0-4 ||| 4 37521 +los ||| electoral fraud that began five ||| 0.25 0.0014641 2.66517e-05 1.30412e-21 2.718 ||| 0-4 ||| 4 37521 +los ||| embrace the ||| 0.0294118 0.145844 2.66517e-05 1.19661e-05 2.718 ||| 0-1 ||| 34 37521 +los ||| embraced them ||| 0.5 0.0948535 2.66517e-05 7.80078e-08 2.718 ||| 0-1 ||| 2 37521 +los ||| emerge as the ||| 0.166667 0.145844 2.66517e-05 4.04458e-07 2.718 ||| 0-2 ||| 6 37521 +los ||| emerged from the whole ||| 1 0.145844 2.66517e-05 3.88281e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| emerged from the ||| 0.1 0.145844 2.66517e-05 4.27152e-08 2.718 ||| 0-2 ||| 10 37521 +los ||| emerging ||| 0.0040858 0.0313316 0.000106607 0.0003504 2.718 ||| 0-0 ||| 979 37521 +los ||| empires ||| 0.0357143 0.228571 2.66517e-05 7.79e-05 2.718 ||| 0-0 ||| 28 37521 +los ||| employee ||| 0.037037 0.177778 2.66517e-05 7.79e-05 2.718 ||| 0-0 ||| 27 37521 +los ||| employees ||| 0.0138889 0.270833 7.99552e-05 0.0006327 2.718 ||| 0-0 ||| 216 37521 +los ||| employers flexibility ||| 1 0.362637 2.66517e-05 4.1756e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| employers ||| 0.015873 0.362637 5.33035e-05 0.0006424 2.718 ||| 0-0 ||| 126 37521 +los ||| enabling emerging ||| 0.333333 0.0313316 2.66517e-05 9.1104e-09 2.718 ||| 0-1 ||| 3 37521 +los ||| enclaves , ||| 1 0.352941 2.66517e-05 1.19294e-05 2.718 ||| 0-0 ||| 1 37521 +los ||| enclaves ||| 0.111111 0.352941 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 9 37521 +los ||| endless ||| 0.0147059 0.0657895 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 68 37521 +los ||| energy-efficient ||| 0.03125 0.030303 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 32 37521 +los ||| engines ||| 0.0125 0.1625 2.66517e-05 0.0001265 2.718 ||| 0-0 ||| 80 37521 +los ||| entrepreneurs ||| 0.00584795 0.339623 2.66517e-05 0.0007008 2.718 ||| 0-0 ||| 171 37521 +los ||| enzymes , called beta-secretase and gamma-secretase , ||| 1 0.4 2.66517e-05 9.37313e-23 2.718 ||| 0-5 ||| 1 37521 +los ||| enzymes , called beta-secretase and gamma-secretase ||| 1 0.4 2.66517e-05 4.58859e-22 2.718 ||| 0-5 ||| 1 37521 +los ||| equally accountable for the outcome of those ||| 1 0.209531 2.66517e-05 2.06716e-21 2.718 ||| 0-6 ||| 1 37521 +los ||| equity ||| 0.00294985 0.0207373 2.66517e-05 8.76e-05 2.718 ||| 0-0 ||| 339 37521 +los ||| escalating ||| 0.0222222 0.0153846 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 45 37521 +los ||| escaping ||| 0.030303 0.0277778 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 33 37521 +los ||| especially those receiving aid ||| 1 0.209531 2.66517e-05 5.77696e-16 2.718 ||| 0-1 ||| 1 37521 +los ||| especially those receiving ||| 1 0.209531 2.66517e-05 8.09098e-12 2.718 ||| 0-1 ||| 1 37521 +los ||| especially those ||| 0.0217391 0.209531 2.66517e-05 2.48953e-07 2.718 ||| 0-1 ||| 46 37521 +los ||| espoused them ||| 1 0.0948535 2.66517e-05 2.60026e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| essence the ||| 1 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-1 ||| 1 37521 +los ||| essentially ||| 0.00555556 0.0049751 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 180 37521 +los ||| ethnically ||| 0.030303 0.0294118 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 33 37521 +los ||| evacuate the ||| 0.125 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 8 37521 +los ||| even the ||| 0.00294118 0.145844 2.66517e-05 0.000278963 2.718 ||| 0-1 ||| 340 37521 +los ||| even very poor countries ||| 1 0.228661 2.66517e-05 3.28952e-12 2.718 ||| 0-3 ||| 1 37521 +los ||| events ||| 0.00214592 0.262166 2.66517e-05 0.0016255 2.718 ||| 0-0 ||| 466 37521 +los ||| ever smaller ||| 0.25 0.0408163 2.66517e-05 1.16333e-07 2.718 ||| 0-1 ||| 4 37521 +los ||| every democracy the ||| 1 0.145844 2.66517e-05 1.70996e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| every ||| 0.00179856 0.0050251 7.99552e-05 5.84e-05 2.718 ||| 0-0 ||| 1668 37521 +los ||| everyone ||| 0.0046875 0.0516194 7.99552e-05 0.0004964 2.718 ||| 0-0 ||| 640 37521 +los ||| exaggerated ||| 0.0147059 0.04 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 68 37521 +los ||| excessive love ||| 0.5 0.0119617 2.66517e-05 1.58275e-09 2.718 ||| 0-0 ||| 2 37521 +los ||| excessive ||| 0.00634921 0.0119617 5.33035e-05 4.87e-05 2.718 ||| 0-0 ||| 315 37521 +los ||| exchange ||| 0.00117371 0.0675139 2.66517e-05 0.0008273 2.718 ||| 0-0 ||| 852 37521 +los ||| exchange-rate targeting ||| 0.0625 0.0656455 2.66517e-05 1.70528e-08 2.718 ||| 0-0 ||| 16 37521 +los ||| exchange-rate ||| 0.002457 0.0656455 2.66517e-05 0.000292 2.718 ||| 0-0 ||| 407 37521 +los ||| exclude them ||| 0.2 0.025974 2.66517e-05 3.81186e-08 2.718 ||| 0-0 ||| 5 37521 +los ||| exclude ||| 0.0277778 0.025974 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 36 37521 +los ||| exist in the ||| 0.125 0.145844 2.66517e-05 3.67256e-07 2.718 ||| 0-2 ||| 8 37521 +los ||| existing bonds . ||| 1 0.148208 2.66517e-05 4.23118e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| existing bonds ||| 0.2 0.148208 2.66517e-05 9.20242e-08 2.718 ||| 0-1 ||| 5 37521 +los ||| existing stock ||| 0.166667 0.0611765 2.66517e-05 4.93039e-08 2.718 ||| 0-0 ||| 6 37521 +los ||| existing ||| 0.0131926 0.0611765 0.000133259 0.0002531 2.718 ||| 0-0 ||| 379 37521 +los ||| exorcising the Last ||| 1 0.145844 2.66517e-05 6.48164e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| exorcising the ||| 1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 1 37521 +los ||| exorcising ||| 0.333333 0.166667 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| expatriate ||| 0.117647 0.206897 5.33035e-05 5.84e-05 2.718 ||| 0-0 ||| 17 37521 +los ||| expect the ||| 0.0263158 0.145844 2.66517e-05 1.59548e-05 2.718 ||| 0-1 ||| 38 37521 +los ||| experimental ||| 0.0416667 0.0384615 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 24 37521 +los ||| experts ||| 0.00333333 0.265252 2.66517e-05 0.0009733 2.718 ||| 0-0 ||| 300 37521 +los ||| exposed as the army ||| 1 0.145844 2.66517e-05 9.19552e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| exposed as the ||| 0.5 0.145844 2.66517e-05 1.18043e-07 2.718 ||| 0-2 ||| 2 37521 +los ||| exposed the ||| 0.0416667 0.145844 2.66517e-05 1.39604e-05 2.718 ||| 0-1 ||| 24 37521 +los ||| expressed through the ||| 1 0.145844 2.66517e-05 5.05169e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| extremist ||| 0.0107527 0.037037 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 93 37521 +los ||| extremists ||| 0.0123457 0.3375 5.33035e-05 0.0007884 2.718 ||| 0-0 ||| 162 37521 +los ||| eyes to ||| 0.0833333 0.156627 2.66517e-05 3.13133e-05 2.718 ||| 0-0 ||| 12 37521 +los ||| eyes ||| 0.00537634 0.156627 2.66517e-05 0.0003796 2.718 ||| 0-0 ||| 186 37521 +los ||| face the charge ||| 1 0.145844 2.66517e-05 1.25399e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| face the ||| 0.0138889 0.145844 2.66517e-05 0.000113586 2.718 ||| 0-1 ||| 72 37521 +los ||| face up to the ||| 0.25 0.145844 2.66517e-05 2.92682e-08 2.718 ||| 0-3 ||| 4 37521 +los ||| fading ||| 0.047619 0.047619 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 21 37521 +los ||| failures , ||| 0.0588235 0.11985 2.66517e-05 6.36303e-05 2.718 ||| 0-0 ||| 17 37521 +los ||| failures ||| 0.0041841 0.11985 2.66517e-05 0.0003115 2.718 ||| 0-0 ||| 239 37521 +los ||| family-planning ||| 1 0.5 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| far the ||| 0.0384615 0.145844 2.66517e-05 0.00020324 2.718 ||| 0-1 ||| 26 37521 +los ||| farm ||| 0.0192308 0.02 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 104 37521 +los ||| farmers ||| 0.0125 0.398734 0.000133259 0.0024528 2.718 ||| 0-0 ||| 400 37521 +los ||| favorable ||| 0.00892857 0.0081301 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 112 37521 +los ||| fear the ||| 0.0322581 0.145844 2.66517e-05 1.59548e-05 2.718 ||| 0-1 ||| 31 37521 +los ||| fears were ||| 0.5 0.230769 2.66517e-05 2.00457e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| fears ||| 0.0030581 0.230769 2.66517e-05 0.0009052 2.718 ||| 0-0 ||| 327 37521 +los ||| fed by others ||| 0.166667 0.104106 2.66517e-05 3.08546e-10 2.718 ||| 0-2 ||| 6 37521 +los ||| feelings ||| 0.00961538 0.115044 2.66517e-05 0.0001265 2.718 ||| 0-0 ||| 104 37521 +los ||| fees , ||| 0.2 0.06 2.66517e-05 1.19294e-05 2.718 ||| 0-0 ||| 5 37521 +los ||| fees ||| 0.015873 0.06 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 63 37521 +los ||| fellow crowned heads ||| 1 0.158371 2.66517e-05 1.43724e-13 2.718 ||| 0-2 ||| 1 37521 +los ||| fellow members ||| 0.2 0.198333 2.66517e-05 2.25515e-07 2.718 ||| 0-1 ||| 5 37521 +los ||| feminine " traits ||| 0.5 0.0833333 2.66517e-05 1.26276e-12 2.718 ||| 0-2 ||| 2 37521 +los ||| few people expect the ||| 0.333333 0.145844 2.66517e-05 3.17098e-12 2.718 ||| 0-3 ||| 3 37521 +los ||| fighters ||| 0.0224719 0.160919 5.33035e-05 0.0001363 2.718 ||| 0-0 ||| 89 37521 +los ||| filings ||| 0.2 0.166667 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 5 37521 +los ||| fill them ||| 0.166667 0.0948535 2.66517e-05 2.59626e-07 2.718 ||| 0-1 ||| 6 37521 +los ||| finance ||| 0.00108932 0.0029499 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 918 37521 +los ||| financial types ||| 0.25 0.0021482 2.66517e-05 2.5298e-09 2.718 ||| 0-0 ||| 4 37521 +los ||| financial ||| 0.00100543 0.0021482 0.000133259 9.73e-05 2.718 ||| 0-0 ||| 4973 37521 +los ||| financial-market ||| 0.1 0.216495 7.99552e-05 0.0002044 2.718 ||| 0-0 ||| 30 37521 +los ||| financiers have ||| 0.5 0.236842 2.66517e-05 9.0454e-07 2.718 ||| 0-0 ||| 2 37521 +los ||| financiers ||| 0.031746 0.236842 5.33035e-05 0.0001752 2.718 ||| 0-0 ||| 63 37521 +los ||| financing candidates ||| 1 0.20155 2.66517e-05 4.92721e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| find ||| 0.0013624 0.0019802 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 734 37521 +los ||| fine time with the ||| 1 0.145844 2.66517e-05 3.53691e-11 2.718 ||| 0-3 ||| 1 37521 +los ||| fiscal imbalances ||| 0.166667 0.36692 2.66517e-05 1.34125e-07 2.718 ||| 0-1 ||| 6 37521 +los ||| fiscal ||| 0.000595948 0.0006297 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1678 37521 +los ||| fish ||| 0.00740741 0.175879 2.66517e-05 0.0003407 2.718 ||| 0-0 ||| 135 37521 +los ||| five months earlier ||| 0.2 0.0014641 2.66517e-05 7.86107e-14 2.718 ||| 0-0 ||| 5 37521 +los ||| five months ||| 0.0555556 0.0014641 2.66517e-05 3.783e-10 2.718 ||| 0-0 ||| 18 37521 +los ||| five ||| 0.00131406 0.0014641 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 761 37521 +los ||| fixed ||| 0.00598802 0.0117647 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 167 37521 +los ||| floating ||| 0.0178571 0.0588235 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 56 37521 +los ||| flowing streams , ||| 0.5 0.0454545 2.66517e-05 3.87706e-11 2.718 ||| 0-0 ||| 2 37521 +los ||| flowing streams ||| 0.5 0.0454545 2.66517e-05 1.898e-10 2.718 ||| 0-0 ||| 2 37521 +los ||| flowing to those who had caused the ||| 1 0.145844 2.66517e-05 2.32402e-20 2.718 ||| 0-6 ||| 1 37521 +los ||| flowing ||| 0.0465116 0.0454545 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 43 37521 +los ||| flows ||| 0.00235849 0.251748 2.66517e-05 0.0014016 2.718 ||| 0-0 ||| 424 37521 +los ||| fold some of the ||| 1 0.145844 2.66517e-05 3.84915e-11 2.718 ||| 0-3 ||| 1 37521 +los ||| folded ||| 0.333333 0.2 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| follow the ||| 0.0151515 0.145844 2.66517e-05 5.18224e-05 2.718 ||| 0-1 ||| 66 37521 +los ||| followed the ||| 0.0138889 0.145844 2.66517e-05 4.98281e-05 2.718 ||| 0-1 ||| 72 37521 +los ||| following in others ||| 0.5 0.104106 2.66517e-05 3.14697e-09 2.718 ||| 0-2 ||| 2 37521 +los ||| food ||| 0.00468384 0.10989 0.000106607 0.001168 2.718 ||| 0-0 ||| 854 37521 +los ||| food-price ||| 0.047619 0.4375 2.66517e-05 6.81e-05 2.718 ||| 0-0 ||| 21 37521 +los ||| foods ||| 0.015873 0.240506 2.66517e-05 0.0001849 2.718 ||| 0-0 ||| 63 37521 +los ||| football players do ||| 1 0.199275 2.66517e-05 4.78598e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| football players ||| 0.333333 0.199275 2.66517e-05 2.08767e-08 2.718 ||| 0-1 ||| 3 37521 +los ||| for critics of authoritarian regimes to argue ||| 1 0.268344 2.66517e-05 4.64168e-22 2.718 ||| 0-4 ||| 1 37521 +los ||| for critics of authoritarian regimes to ||| 1 0.268344 2.66517e-05 4.46745e-18 2.718 ||| 0-4 ||| 1 37521 +los ||| for critics of authoritarian regimes ||| 1 0.268344 2.66517e-05 5.41573e-17 2.718 ||| 0-4 ||| 1 37521 +los ||| for insight for ||| 1 0.0007029 2.66517e-05 3.61402e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| for mobile telephones , ||| 0.25 0.152174 2.66517e-05 8.61488e-13 2.718 ||| 0-1 ||| 4 37521 +los ||| for mobile telephones ||| 0.2 0.152174 2.66517e-05 4.21739e-12 2.718 ||| 0-1 ||| 5 37521 +los ||| for mobile ||| 0.25 0.152174 2.66517e-05 6.48829e-07 2.718 ||| 0-1 ||| 4 37521 +los ||| for outsiders ||| 0.25 0.308219 2.66517e-05 2.08501e-06 2.718 ||| 0-1 ||| 4 37521 +los ||| for the outcome of those ||| 1 0.209531 2.66517e-05 1.02062e-12 2.718 ||| 0-4 ||| 1 37521 +los ||| for the sovereign-debt crisis ||| 0.5 0.145844 2.66517e-05 1.78766e-12 2.718 ||| 0-1 ||| 2 37521 +los ||| for the sovereign-debt ||| 1 0.145844 2.66517e-05 9.4937e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| for the true ||| 0.333333 0.145844 2.66517e-05 2.56038e-07 2.718 ||| 0-1 ||| 3 37521 +los ||| for the ||| 0.00273396 0.145844 0.000346473 0.00146057 2.718 ||| 0-1 ||| 4755 37521 +los ||| for ||| 0.000403481 0.0007029 0.000373124 0.0002336 2.718 ||| 0-0 ||| 34698 37521 +los ||| force directly to one of the public ||| 1 0.145844 2.66517e-05 1.8281e-17 2.718 ||| 0-5 ||| 1 37521 +los ||| force directly to one of the ||| 1 0.145844 2.66517e-05 5.21271e-14 2.718 ||| 0-5 ||| 1 37521 +los ||| foreign exchange ||| 0.0128205 0.0675139 2.66517e-05 1.28976e-07 2.718 ||| 0-1 ||| 78 37521 +los ||| foreign ||| 0.000784929 0.0008489 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 2548 37521 +los ||| foreseeing them ||| 1 0.0948535 2.66517e-05 2.60026e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| forests ||| 0.010989 0.316901 2.66517e-05 0.000438 2.718 ||| 0-0 ||| 91 37521 +los ||| formal ||| 0.00546448 0.0102041 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 183 37521 +los ||| former owners ||| 0.333333 0.289474 2.66517e-05 7.92722e-08 2.718 ||| 0-1 ||| 3 37521 +los ||| forms of ||| 0.00689655 0.000189 2.66517e-05 1.72514e-08 2.718 ||| 0-1 ||| 145 37521 +los ||| fourth point addresses accountability and transparency . ||| 1 0.0217391 2.66517e-05 1.80352e-27 2.718 ||| 0-2 ||| 1 37521 +los ||| fourth point addresses accountability and transparency ||| 1 0.0217391 2.66517e-05 3.92249e-25 2.718 ||| 0-2 ||| 1 37521 +los ||| fourth point addresses accountability and ||| 1 0.0217391 2.66517e-05 1.50865e-20 2.718 ||| 0-2 ||| 1 37521 +los ||| fourth point addresses accountability ||| 1 0.0217391 2.66517e-05 1.79663e-18 2.718 ||| 0-2 ||| 1 37521 +los ||| fourth point addresses ||| 1 0.0217391 2.66517e-05 9.2135e-14 2.718 ||| 0-2 ||| 1 37521 +los ||| fraud that began five months earlier ||| 0.25 0.0014641 2.66517e-05 3.25195e-25 2.718 ||| 0-3 ||| 4 37521 +los ||| fraud that began five months ||| 0.25 0.0014641 2.66517e-05 1.56494e-21 2.718 ||| 0-3 ||| 4 37521 +los ||| fraud that began five ||| 0.25 0.0014641 2.66517e-05 4.01267e-17 2.718 ||| 0-3 ||| 4 37521 +los ||| free ||| 0.00147167 0.0034752 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 1359 37521 +los ||| free-trade agreements ||| 0.0434783 0.206266 2.66517e-05 4.99785e-09 2.718 ||| 0-1 ||| 23 37521 +los ||| freedom must be mutual ||| 1 0.0309735 2.66517e-05 2.66182e-14 2.718 ||| 0-3 ||| 1 37521 +los ||| frightened ||| 0.0588235 0.075 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 17 37521 +los ||| from the whole ||| 1 0.145844 2.66517e-05 4.60049e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| from the ||| 0.00295858 0.145844 0.000213214 0.000506105 2.718 ||| 0-1 ||| 2704 37521 +los ||| from these ||| 0.0227273 0.0081796 2.66517e-05 7.54646e-07 2.718 ||| 0-1 ||| 44 37521 +los ||| from ||| 0.000165714 0.0001765 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 12069 37521 +los ||| fuel ||| 0.00245098 0.0146199 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 408 37521 +los ||| fundamental ||| 0.00146628 0.0031797 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 682 37521 +los ||| funds ||| 0.00483092 0.15 0.000106607 0.0011388 2.718 ||| 0-0 ||| 828 37521 +los ||| further the ||| 0.166667 0.145844 5.33035e-05 9.96254e-05 2.718 ||| 0-1 ||| 12 37521 +los ||| gaining the upper hand ||| 0.5 0.145844 2.66517e-05 3.93337e-13 2.718 ||| 0-1 ||| 2 37521 +los ||| gaining the upper ||| 0.5 0.145844 2.66517e-05 8.29649e-10 2.718 ||| 0-1 ||| 2 37521 +los ||| gaining the ||| 0.125 0.145844 2.66517e-05 1.59548e-05 2.718 ||| 0-1 ||| 8 37521 +los ||| gains ||| 0.00303951 0.0608466 2.66517e-05 0.0002239 2.718 ||| 0-0 ||| 329 37521 +los ||| gamma-secretase , ||| 1 0.4 2.66517e-05 3.98328e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| gamma-secretase ||| 0.5 0.4 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 2 37521 +los ||| garbage ||| 0.125 0.111111 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 8 37521 +los ||| gas-guzzling cars ||| 0.2 0.041958 2.66517e-05 3.796e-10 2.718 ||| 0-1 ||| 5 37521 +los ||| generals ||| 0.0143885 0.311111 5.33035e-05 0.0005451 2.718 ||| 0-0 ||| 139 37521 +los ||| genes ||| 0.00442478 0.253623 2.66517e-05 0.0006813 2.718 ||| 0-0 ||| 226 37521 +los ||| genetically ||| 0.0178571 0.0172414 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 56 37521 +los ||| get them on board ||| 1 0.0948535 2.66517e-05 1.04069e-12 2.718 ||| 0-1 ||| 1 37521 +los ||| get them on ||| 1 0.0948535 2.66517e-05 1.23304e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| get them ||| 0.2 0.0948535 2.66517e-05 3.14351e-06 2.718 ||| 0-1 ||| 5 37521 +los ||| give employers ||| 1 0.362637 2.66517e-05 2.41992e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| give the ||| 0.0208333 0.145844 2.66517e-05 0.00011558 2.718 ||| 0-1 ||| 48 37521 +los ||| gives the ||| 0.0769231 0.145844 2.66517e-05 2.78902e-05 2.718 ||| 0-1 ||| 13 37521 +los ||| global public-goods ||| 0.0833333 0.333333 2.66517e-05 5.3544e-09 2.718 ||| 0-1 ||| 12 37521 +los ||| global ||| 0.000736377 0.0015901 0.000106607 7.79e-05 2.718 ||| 0-0 ||| 5432 37521 +los ||| go of the ||| 1 0.145844 2.66517e-05 5.70626e-06 2.718 ||| 0-2 ||| 1 37521 +los ||| gods and ||| 1 0.000294 2.66517e-05 1.7082e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| government ||| 0.000987306 0.0064112 0.000186562 0.0004283 2.718 ||| 0-0 ||| 7090 37521 +los ||| governments ' ||| 0.0454545 0.295377 2.66517e-05 0.00014883 2.718 ||| 0-0 0-1 ||| 22 37521 +los ||| governments to ||| 0.0123457 0.407218 2.66517e-05 0.00121399 2.718 ||| 0-0 ||| 81 37521 +los ||| governments ||| 0.00354052 0.407218 0.000239866 0.0147168 2.718 ||| 0-0 ||| 2542 37521 +los ||| graduates of ||| 0.25 0.22449 2.66517e-05 2.89342e-06 2.718 ||| 0-0 ||| 4 37521 +los ||| graduates ||| 0.0384615 0.22449 2.66517e-05 0.0001071 2.718 ||| 0-0 ||| 26 37521 +los ||| grant their ||| 0.5 0.0188051 2.66517e-05 9.64197e-08 2.718 ||| 0-1 ||| 2 37521 +los ||| grant ||| 0.0153846 0.0119048 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 65 37521 +los ||| great ||| 0.000894454 0.0008953 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1118 37521 +los ||| gridlock ||| 0.0357143 0.0645161 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 28 37521 +los ||| gross ||| 0.016129 0.037037 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 62 37521 +los ||| groups ||| 0.00168492 0.0024631 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 1187 37521 +los ||| guide them ||| 0.5 0.0310078 2.66517e-05 7.60417e-08 2.718 ||| 0-0 ||| 2 37521 +los ||| guide ||| 0.0163934 0.0310078 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 122 37521 +los ||| guys ||| 0.375 0.384615 7.99552e-05 9.73e-05 2.718 ||| 0-0 ||| 8 37521 +los ||| had been difficult ||| 0.333333 0.0044563 2.66517e-05 1.15597e-10 2.718 ||| 0-2 ||| 3 37521 +los ||| had caused the problem , rather ||| 1 0.145844 2.66517e-05 3.7572e-16 2.718 ||| 0-2 ||| 1 37521 +los ||| had caused the problem , ||| 1 0.145844 2.66517e-05 1.01491e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| had caused the problem ||| 1 0.145844 2.66517e-05 4.96846e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| had caused the ||| 0.5 0.145844 2.66517e-05 4.25018e-08 2.718 ||| 0-2 ||| 2 37521 +los ||| had kept the ||| 0.5 0.145844 2.66517e-05 6.51927e-08 2.718 ||| 0-2 ||| 2 37521 +los ||| had the ||| 0.00833333 0.145844 2.66517e-05 0.000436364 2.718 ||| 0-1 ||| 120 37521 +los ||| hand out the goods ||| 0.5 0.145844 2.66517e-05 2.93577e-11 2.718 ||| 0-2 ||| 2 37521 +los ||| hand out the ||| 0.5 0.145844 2.66517e-05 6.45224e-07 2.718 ||| 0-2 ||| 2 37521 +los ||| handicapped the ||| 0.333333 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 3 37521 +los ||| handling ||| 0.0140845 0.0172414 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 71 37521 +los ||| happened , the ||| 0.5 0.145844 2.66517e-05 4.47499e-06 2.718 ||| 0-2 ||| 2 37521 +los ||| happens , the ||| 0.05 0.145844 2.66517e-05 3.2591e-06 2.718 ||| 0-2 ||| 20 37521 +los ||| hard ||| 0.00245399 0.0020747 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 815 37521 +los ||| has emerged from the whole ||| 1 0.145844 2.66517e-05 1.28855e-14 2.718 ||| 0-3 ||| 1 37521 +los ||| has emerged from the ||| 0.5 0.145844 2.66517e-05 1.41755e-10 2.718 ||| 0-3 ||| 2 37521 +los ||| has primary responsibility ||| 0.333333 0.0106762 2.66517e-05 6.91888e-12 2.718 ||| 0-1 ||| 3 37521 +los ||| has primary ||| 0.333333 0.0106762 2.66517e-05 9.69031e-08 2.718 ||| 0-1 ||| 3 37521 +los ||| has the ||| 0.0229358 0.145844 0.000133259 0.00101822 2.718 ||| 0-1 ||| 218 37521 +los ||| have a fine time with the ||| 1 0.145844 2.66517e-05 7.34665e-15 2.718 ||| 0-5 ||| 1 37521 +los ||| have a poor record ||| 0.333333 0.0663082 2.66517e-05 3.79035e-11 2.718 ||| 0-2 ||| 3 37521 +los ||| have a poor ||| 0.333333 0.0663082 2.66517e-05 2.24414e-07 2.718 ||| 0-2 ||| 3 37521 +los ||| have all the ||| 0.25 0.0863142 2.66517e-05 3.36129e-06 2.718 ||| 0-1 0-2 ||| 4 37521 +los ||| have become operational ||| 1 0.0142857 2.66517e-05 3.38241e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| have been labeled as permitted ||| 0.5 0.0571429 2.66517e-05 1.10678e-16 2.718 ||| 0-2 ||| 2 37521 +los ||| have been labeled as ||| 0.5 0.0571429 2.66517e-05 1.42077e-12 2.718 ||| 0-2 ||| 2 37521 +los ||| have been labeled ||| 0.5 0.0571429 2.66517e-05 1.68029e-10 2.718 ||| 0-2 ||| 2 37521 +los ||| have for ||| 0.0714286 0.0007029 2.66517e-05 1.20605e-06 2.718 ||| 0-1 ||| 14 37521 +los ||| have started declining . ||| 1 0.0173913 2.66517e-05 1.17006e-13 2.718 ||| 0-2 ||| 1 37521 +los ||| have started declining ||| 1 0.0173913 2.66517e-05 2.54477e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| have the ||| 0.00724638 0.145844 5.33035e-05 0.0015841 2.718 ||| 0-1 ||| 276 37521 +los ||| have their ||| 0.0172414 0.0188051 2.66517e-05 1.27642e-05 2.718 ||| 0-1 ||| 58 37521 +los ||| have-nots ||| 0.030303 0.171429 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 33 37521 +los ||| having them ||| 0.166667 0.0948535 2.66517e-05 1.06531e-06 2.718 ||| 0-1 ||| 6 37521 +los ||| he would also revoke contracts ||| 1 0.263889 2.66517e-05 4.73573e-17 2.718 ||| 0-4 ||| 1 37521 +los ||| heads ||| 0.0111732 0.158371 5.33035e-05 0.0003407 2.718 ||| 0-0 ||| 179 37521 +los ||| health claims ||| 0.111111 0.0228856 2.66517e-05 4.94261e-08 2.718 ||| 0-0 ||| 9 37521 +los ||| health ||| 0.00326531 0.0228856 0.000106607 0.0004477 2.718 ||| 0-0 ||| 1225 37521 +los ||| healthy ||| 0.00943396 0.0087719 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 212 37521 +los ||| hear them , ||| 1 0.0948535 2.66517e-05 3.7181e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| hear them ||| 1 0.0948535 2.66517e-05 1.82018e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| hearts and ||| 0.03125 0.218391 2.66517e-05 1.55262e-06 2.718 ||| 0-0 ||| 32 37521 +los ||| hearts ||| 0.0384615 0.218391 5.33035e-05 0.0001849 2.718 ||| 0-0 ||| 52 37521 +los ||| heavy toll ||| 0.0833333 0.009434 2.66517e-05 6.3375e-10 2.718 ||| 0-0 ||| 12 37521 +los ||| heavy ||| 0.00684932 0.009434 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 146 37521 +los ||| held among the ||| 1 0.145844 2.66517e-05 3.77918e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| held the ||| 0.0434783 0.145844 2.66517e-05 0.000145465 2.718 ||| 0-1 ||| 23 37521 +los ||| helped evacuate the ||| 0.125 0.145844 2.66517e-05 6.48164e-11 2.718 ||| 0-2 ||| 8 37521 +los ||| helping the ||| 0.0263158 0.145844 2.66517e-05 2.19072e-05 2.718 ||| 0-1 ||| 38 37521 +los ||| her recent ||| 0.2 0.163831 2.66517e-05 2.38149e-06 2.718 ||| 0-1 ||| 5 37521 +los ||| her ||| 0.00118064 0.0010277 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 847 37521 +los ||| high taxes ||| 0.0416667 0.300654 2.66517e-05 1.06137e-06 2.718 ||| 0-1 ||| 24 37521 +los ||| high voter ||| 0.333333 0.246575 2.66517e-05 8.30623e-08 2.718 ||| 0-1 ||| 3 37521 +los ||| high ||| 0.00187441 0.0098824 0.000106607 0.0002044 2.718 ||| 0-0 ||| 2134 37521 +los ||| high-income ||| 0.0344828 0.184615 2.66517e-05 0.0001168 2.718 ||| 0-0 ||| 29 37521 +los ||| higher oil prices ||| 0.0526316 0.438459 2.66517e-05 4.66187e-10 2.718 ||| 0-2 ||| 19 37521 +los ||| higher ||| 0.00442804 0.0103205 0.00015991 0.0001849 2.718 ||| 0-0 ||| 1355 37521 +los ||| hikes ||| 0.015625 0.0786517 2.66517e-05 6.81e-05 2.718 ||| 0-0 ||| 64 37521 +los ||| hip ||| 0.125 0.0909091 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| his musical ||| 0.166667 0.0666667 2.66517e-05 9.70097e-09 2.718 ||| 0-1 ||| 6 37521 +los ||| his ||| 0.00220264 0.0034167 0.000399776 0.0002141 2.718 ||| 0-0 ||| 6810 37521 +los ||| historical ||| 0.0022831 0.0046838 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 438 37521 +los ||| hit ||| 0.00436681 0.0048077 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 229 37521 +los ||| hold back extremists ||| 1 0.3375 2.66517e-05 6.11959e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| hold the ||| 0.0487805 0.145844 5.33035e-05 0.000171361 2.718 ||| 0-1 ||| 41 37521 +los ||| holders ||| 0.0128205 0.333333 2.66517e-05 0.0003601 2.718 ||| 0-0 ||| 78 37521 +los ||| holding them ||| 0.0833333 0.0948535 2.66517e-05 3.37634e-07 2.718 ||| 0-1 ||| 12 37521 +los ||| home values ||| 0.166667 0.115065 2.66517e-05 3.55642e-07 2.718 ||| 0-1 ||| 6 37521 +los ||| home was ||| 0.142857 0.0075251 2.66517e-05 3.31102e-07 2.718 ||| 0-0 ||| 7 37521 +los ||| home ||| 0.00294985 0.0075251 7.99552e-05 8.76e-05 2.718 ||| 0-0 ||| 1017 37521 +los ||| home-lending ||| 0.125 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| honor ||| 0.00763359 0.0072464 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 131 37521 +los ||| host ||| 0.00980392 0.044843 5.33035e-05 9.73e-05 2.718 ||| 0-0 ||| 204 37521 +los ||| hot ||| 0.0131579 0.0277778 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 76 37521 +los ||| house ||| 0.00342466 0.0040323 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 292 37521 +los ||| household 's ||| 1 0.266294 2.66517e-05 2.16763e-05 2.718 ||| 0-0 ||| 1 37521 +los ||| household ||| 0.0153061 0.266294 7.99552e-05 0.0013919 2.718 ||| 0-0 ||| 196 37521 +los ||| how it provides ||| 0.333333 0.002681 2.66517e-05 1.14055e-10 2.718 ||| 0-2 ||| 3 37521 +los ||| human rights ||| 0.000929368 0.161276 2.66517e-05 6.06621e-07 2.718 ||| 0-0 ||| 1076 37521 +los ||| human ||| 0.00819672 0.161276 0.000346473 0.0035916 2.718 ||| 0-0 ||| 1586 37521 +los ||| human-rights ||| 0.020202 0.186992 5.33035e-05 0.0002239 2.718 ||| 0-0 ||| 99 37521 +los ||| humanitarians ||| 0.5 0.333333 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 2 37521 +los ||| idealized ||| 0.0909091 0.1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 11 37521 +los ||| identity ||| 0.00215054 0.0028249 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 465 37521 +los ||| if not for the sovereign-debt crisis ||| 1 0.145844 2.66517e-05 2.67455e-18 2.718 ||| 0-3 ||| 1 37521 +los ||| if not for the sovereign-debt ||| 1 0.145844 2.66517e-05 1.42036e-14 2.718 ||| 0-3 ||| 1 37521 +los ||| if not for the ||| 0.25 0.145844 2.66517e-05 2.18518e-09 2.718 ||| 0-3 ||| 4 37521 +los ||| if policymakers are ||| 0.5 0.18015 2.66517e-05 9.90564e-09 2.718 ||| 0-1 ||| 2 37521 +los ||| if policymakers ||| 0.1 0.18015 2.66517e-05 1.33797e-06 2.718 ||| 0-1 ||| 10 37521 +los ||| if the United States government is to ||| 1 0.145844 2.66517e-05 1.40425e-17 2.718 ||| 0-1 ||| 1 37521 +los ||| if the United States government is ||| 1 0.145844 2.66517e-05 1.70232e-16 2.718 ||| 0-1 ||| 1 37521 +los ||| if the United States government ||| 1 0.145844 2.66517e-05 1.03281e-14 2.718 ||| 0-1 ||| 1 37521 +los ||| if the United States ||| 0.2 0.145844 2.66517e-05 2.06521e-11 2.718 ||| 0-1 ||| 5 37521 +los ||| if the United ||| 1 0.145844 2.66517e-05 7.22861e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| if the ||| 0.00166251 0.145844 5.33035e-05 0.000195262 2.718 ||| 0-1 ||| 1203 37521 +los ||| if you chase the ||| 1 0.145844 2.66517e-05 4.13786e-12 2.718 ||| 0-3 ||| 1 37521 +los ||| ill-educated migrant ||| 1 0.12766 2.66517e-05 3.796e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| imbalances ||| 0.0107817 0.36692 0.000106607 0.0018785 2.718 ||| 0-0 ||| 371 37521 +los ||| immigrants -- ||| 0.125 0.359903 2.66517e-05 7.29008e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| immigrants ||| 0.00330033 0.359903 2.66517e-05 0.0014503 2.718 ||| 0-0 ||| 303 37521 +los ||| impending ||| 0.025641 0.0512821 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 39 37521 +los ||| import ||| 0.00558659 0.0091743 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 179 37521 +los ||| imported ||| 0.025641 0.0792079 5.33035e-05 7.79e-05 2.718 ||| 0-0 ||| 78 37521 +los ||| improved audit ||| 1 0.2 2.66517e-05 1.26555e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| in considering the ||| 0.5 0.145844 2.66517e-05 1.22576e-07 2.718 ||| 0-2 ||| 2 37521 +los ||| in essence the ||| 1 0.145844 2.66517e-05 1.22576e-07 2.718 ||| 0-2 ||| 1 37521 +los ||| in every democracy the ||| 1 0.145844 2.66517e-05 2.62741e-11 2.718 ||| 0-3 ||| 1 37521 +los ||| in on the ||| 0.333333 0.145844 2.66517e-05 1.84925e-05 2.718 ||| 0-2 ||| 3 37521 +los ||| in others ||| 0.0285714 0.104106 2.66517e-05 2.69202e-05 2.718 ||| 0-1 ||| 35 37521 +los ||| in the business ||| 0.25 0.145844 2.66517e-05 1.19417e-06 2.718 ||| 0-1 ||| 4 37521 +los ||| in the form ||| 0.00970874 0.145844 2.66517e-05 1.80658e-06 2.718 ||| 0-1 ||| 103 37521 +los ||| in the meantime , earth ||| 1 0.145844 2.66517e-05 8.54444e-13 2.718 ||| 0-1 ||| 1 37521 +los ||| in the meantime , ||| 0.0192308 0.145844 2.66517e-05 1.8779e-08 2.718 ||| 0-1 ||| 52 37521 +los ||| in the meantime ||| 0.0181818 0.145844 2.66517e-05 9.19319e-08 2.718 ||| 0-1 ||| 55 37521 +los ||| in the sciences ||| 0.2 0.145844 2.66517e-05 3.0644e-08 2.718 ||| 0-1 ||| 5 37521 +los ||| in the water ||| 0.2 0.145844 2.66517e-05 3.979e-07 2.718 ||| 0-1 ||| 5 37521 +los ||| in the ||| 0.00201084 0.145844 0.000959463 0.00471446 2.718 ||| 0-1 ||| 17903 37521 +los ||| in their ||| 0.00140845 0.0188051 2.66517e-05 3.79879e-05 2.718 ||| 0-1 ||| 710 37521 +los ||| in these ||| 0.00357143 0.0081796 2.66517e-05 7.02967e-06 2.718 ||| 0-1 ||| 280 37521 +los ||| in view of the ||| 0.027027 0.145844 2.66517e-05 3.22619e-08 2.718 ||| 0-3 ||| 37 37521 +los ||| inalienable rights , including the ||| 1 0.145844 2.66517e-05 2.14542e-14 2.718 ||| 0-4 ||| 1 37521 +los ||| incentives as ||| 0.5 0.155039 2.66517e-05 6.5843e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| incentives ||| 0.002079 0.155039 2.66517e-05 0.0007787 2.718 ||| 0-0 ||| 481 37521 +los ||| including the ||| 0.00321543 0.145844 2.66517e-05 4.78337e-05 2.718 ||| 0-1 ||| 311 37521 +los ||| income ||| 0.000666223 0.0030242 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 1501 37521 +los ||| incomes ||| 0.00367647 0.28863 2.66517e-05 0.0009636 2.718 ||| 0-0 ||| 272 37521 +los ||| increase lending ||| 0.5 0.166038 2.66517e-05 1.77981e-07 2.718 ||| 0-1 ||| 2 37521 +los ||| increase the ||| 0.00775194 0.145844 2.66517e-05 6.37578e-05 2.718 ||| 0-1 ||| 129 37521 +los ||| increased ||| 0.00111359 0.0026132 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 898 37521 +los ||| increases is ||| 0.5 0.0901288 2.66517e-05 6.73801e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| increases the ||| 0.0357143 0.145844 2.66517e-05 1.19661e-05 2.718 ||| 0-1 ||| 28 37521 +los ||| increases ||| 0.00369004 0.0901288 5.33035e-05 0.0004088 2.718 ||| 0-0 ||| 542 37521 +los ||| incumbent ||| 0.016129 0.0121951 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 62 37521 +los ||| independent ||| 0.00161031 0.0017825 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 621 37521 +los ||| individual firms ||| 0.2 0.0406015 2.66517e-05 1.87639e-08 2.718 ||| 0-0 ||| 5 37521 +los ||| individual ||| 0.0279938 0.0406015 0.000479731 0.0002628 2.718 ||| 0-0 ||| 643 37521 +los ||| individuals ||| 0.00361664 0.162275 5.33035e-05 0.0011388 2.718 ||| 0-0 ||| 553 37521 +los ||| industrial ||| 0.00347222 0.003663 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 576 37521 +los ||| industrial-country ||| 0.125 0.142857 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| inhibiting the two APP enzymes , called ||| 1 0.145844 2.66517e-05 1.74202e-24 2.718 ||| 0-1 ||| 1 37521 +los ||| inhibiting the two APP enzymes , ||| 1 0.145844 2.66517e-05 5.36501e-21 2.718 ||| 0-1 ||| 1 37521 +los ||| inhibiting the two APP enzymes ||| 1 0.145844 2.66517e-05 2.62642e-20 2.718 ||| 0-1 ||| 1 37521 +los ||| inhibiting the two APP ||| 1 0.145844 2.66517e-05 4.04065e-15 2.718 ||| 0-1 ||| 1 37521 +los ||| inhibiting the two ||| 1 0.145844 2.66517e-05 6.21639e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| inhibiting the ||| 1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 1 37521 +los ||| injured ||| 0.03125 0.0731707 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 32 37521 +los ||| insight for ||| 1 0.0007029 2.66517e-05 7.592e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| instant results of the ||| 1 0.145844 2.66517e-05 6.29852e-12 2.718 ||| 0-3 ||| 1 37521 +los ||| institutional investors ||| 0.0384615 0.428486 2.66517e-05 1.35896e-07 2.718 ||| 0-1 ||| 26 37521 +los ||| insults against ||| 0.333333 0.26087 2.66517e-05 1.97217e-08 2.718 ||| 0-0 ||| 3 37521 +los ||| insults ||| 0.0555556 0.26087 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 18 37521 +los ||| intellectual ||| 0.00294985 0.0031153 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 339 37521 +los ||| intelligence ||| 0.00437637 0.0456026 5.33035e-05 0.0001363 2.718 ||| 0-0 ||| 457 37521 +los ||| interact ||| 0.0384615 0.0243902 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 26 37521 +los ||| interconnected world . the ||| 1 0.145844 2.66517e-05 8.03918e-12 2.718 ||| 0-3 ||| 1 37521 +los ||| interest ||| 0.00273349 0.0548502 0.00015991 0.0010512 2.718 ||| 0-0 ||| 2195 37521 +los ||| interest-rate ||| 0.0208333 0.113636 7.99552e-05 0.0003893 2.718 ||| 0-0 ||| 144 37521 +los ||| interested parties ||| 0.1 0.242475 2.66517e-05 5.50426e-08 2.718 ||| 0-1 ||| 10 37521 +los ||| interests ||| 0.001221 0.0047847 5.33035e-05 5.84e-05 2.718 ||| 0-0 ||| 1638 37521 +los ||| international creditors ||| 0.166667 0.381877 2.66517e-05 2.8345e-07 2.718 ||| 0-1 ||| 6 37521 +los ||| international diplomacy ||| 0.0526316 0.0019657 2.66517e-05 2.6559e-09 2.718 ||| 0-0 ||| 19 37521 +los ||| international ||| 0.00154281 0.0019657 0.00015991 6.81e-05 2.718 ||| 0-0 ||| 3889 37521 +los ||| interpret the ||| 0.0769231 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-1 ||| 13 37521 +los ||| into the fold some of the ||| 1 0.145844 2.66517e-05 2.00537e-15 2.718 ||| 0-5 ||| 1 37521 +los ||| into the ||| 0.00263505 0.145844 5.33035e-05 0.000300871 2.718 ||| 0-1 ||| 759 37521 +los ||| into ||| 0.000252016 0.0007453 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 3968 37521 +los ||| intravenous ||| 0.2 0.0769231 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 5 37521 +los ||| investigators -- searched ||| 1 0.290323 2.66517e-05 2.86215e-12 2.718 ||| 0-0 ||| 1 37521 +los ||| investigators -- ||| 1 0.290323 2.66517e-05 4.4033e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| investigators ||| 0.0384615 0.290323 2.66517e-05 8.76e-05 2.718 ||| 0-0 ||| 26 37521 +los ||| investment ||| 0.000340832 0.0011955 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 2934 37521 +los ||| investors ||| 0.00271003 0.428486 7.99552e-05 0.006969 2.718 ||| 0-0 ||| 1107 37521 +los ||| is , the ||| 0.125 0.145844 2.66517e-05 0.00103303 2.718 ||| 0-2 ||| 8 37521 +los ||| is all the ||| 0.0333333 0.145844 2.66517e-05 1.31042e-05 2.718 ||| 0-2 ||| 30 37521 +los ||| is cheap , ||| 0.142857 0.0093458 2.66517e-05 6.5654e-08 2.718 ||| 0-1 ||| 7 37521 +los ||| is cheap ||| 0.0769231 0.0093458 2.66517e-05 3.21407e-07 2.718 ||| 0-1 ||| 13 37521 +los ||| is confused ||| 0.25 0.0298507 2.66517e-05 3.21407e-07 2.718 ||| 0-1 ||| 4 37521 +los ||| is dismissed by the ||| 1 0.145844 2.66517e-05 1.33594e-09 2.718 ||| 0-3 ||| 1 37521 +los ||| is more difficult ||| 0.166667 0.0044563 2.66517e-05 1.71503e-09 2.718 ||| 0-2 ||| 6 37521 +los ||| is the ||| 0.00210084 0.145844 0.000133259 0.00505718 2.718 ||| 0-1 ||| 2380 37521 +los ||| isolate the ||| 0.1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 10 37521 +los ||| issues ||| 0.000823045 0.0608333 2.66517e-05 0.0007105 2.718 ||| 0-0 ||| 1215 37521 +los ||| it 's the ||| 0.142857 0.145844 5.33035e-05 0.000127227 2.718 ||| 0-2 ||| 14 37521 +los ||| it belongs to the ||| 1 0.145844 2.66517e-05 8.76088e-09 2.718 ||| 0-3 ||| 1 37521 +los ||| it difficult ||| 0.0322581 0.0044563 2.66517e-05 1.29671e-06 2.718 ||| 0-1 ||| 31 37521 +los ||| it happens , the ||| 0.5 0.145844 2.66517e-05 8.67783e-08 2.718 ||| 0-3 ||| 2 37521 +los ||| it is the ||| 0.0132743 0.145844 7.99552e-05 0.000134655 2.718 ||| 0-2 ||| 226 37521 +los ||| it provides ||| 0.0204082 0.002681 2.66517e-05 2.58277e-07 2.718 ||| 0-1 ||| 49 37521 +los ||| it to others ||| 0.333333 0.104106 2.66517e-05 3.84814e-06 2.718 ||| 0-2 ||| 3 37521 +los ||| it was the ||| 0.0212766 0.145844 5.33035e-05 3.08787e-05 2.718 ||| 0-2 ||| 94 37521 +los ||| it was under the ||| 0.5 0.145844 2.66517e-05 1.52417e-08 2.718 ||| 0-3 ||| 2 37521 +los ||| its Eastern ||| 1 0.0056577 2.66517e-05 7.73021e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| its agenda ||| 0.0333333 0.0072862 2.66517e-05 4.96028e-08 2.718 ||| 0-0 ||| 30 37521 +los ||| its constituent ||| 0.25 0.0750716 2.66517e-05 2.78539e-08 2.718 ||| 0-0 0-1 ||| 4 37521 +los ||| its feet on ||| 1 0.0072862 2.66517e-05 2.91476e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| its feet ||| 0.0294118 0.0072862 2.66517e-05 7.43088e-08 2.718 ||| 0-0 ||| 34 37521 +los ||| its ongoing ||| 0.333333 0.01176 2.66517e-05 4.64549e-08 2.718 ||| 0-0 0-1 ||| 3 37521 +los ||| its way ||| 0.0153846 0.0072862 2.66517e-05 1.44964e-06 2.718 ||| 0-0 ||| 65 37521 +los ||| its ||| 0.0054407 0.0072862 0.00199888 0.0009539 2.718 ||| 0-0 ||| 13785 37521 +los ||| itself by inhibiting the two APP enzymes ||| 1 0.145844 2.66517e-05 1.28249e-25 2.718 ||| 0-3 ||| 1 37521 +los ||| itself by inhibiting the two APP ||| 1 0.145844 2.66517e-05 1.97306e-20 2.718 ||| 0-3 ||| 1 37521 +los ||| itself by inhibiting the two ||| 1 0.145844 2.66517e-05 3.03547e-15 2.718 ||| 0-3 ||| 1 37521 +los ||| itself by inhibiting the ||| 1 0.145844 2.66517e-05 9.73844e-12 2.718 ||| 0-3 ||| 1 37521 +los ||| itself to the ||| 0.5 0.145844 2.66517e-05 1.82459e-05 2.718 ||| 0-2 ||| 2 37521 +los ||| jihadis ||| 0.0833333 0.291667 2.66517e-05 6.81e-05 2.718 ||| 0-0 ||| 12 37521 +los ||| jobs , and were ||| 0.04 0.100712 2.66517e-05 3.66022e-09 2.718 ||| 0-0 ||| 25 37521 +los ||| jobs , and ||| 0.0196078 0.100712 2.66517e-05 1.65284e-06 2.718 ||| 0-0 ||| 51 37521 +los ||| jobs , ||| 0.00571429 0.100712 2.66517e-05 0.000196835 2.718 ||| 0-0 ||| 175 37521 +los ||| jobs ||| 0.000878735 0.100712 2.66517e-05 0.0009636 2.718 ||| 0-0 ||| 1138 37521 +los ||| joining the ||| 0.0147059 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-1 ||| 68 37521 +los ||| judicial ||| 0.00869565 0.0078125 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 115 37521 +los ||| junior partners ||| 0.25 0.0544413 2.66517e-05 7.2111e-09 2.718 ||| 0-1 ||| 4 37521 +los ||| junk bond level ||| 1 0.0698413 2.66517e-05 3.16322e-13 2.718 ||| 0-1 ||| 1 37521 +los ||| junk bond ||| 0.5 0.0698413 2.66517e-05 1.39165e-09 2.718 ||| 0-1 ||| 2 37521 +los ||| just the beginning . the ||| 1 0.145844 2.66517e-05 6.446e-12 2.718 ||| 0-4 ||| 1 37521 +los ||| keep the ||| 0.0106383 0.145844 2.66517e-05 7.17352e-05 2.718 ||| 0-1 ||| 94 37521 +los ||| keep ||| 0.00302572 0.0026008 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 661 37521 +los ||| kept the ||| 0.1 0.145844 5.33035e-05 4.58394e-05 2.718 ||| 0-1 ||| 20 37521 +los ||| key ||| 0.00619469 0.0088933 0.000186562 8.76e-05 2.718 ||| 0-0 ||| 1130 37521 +los ||| kill " terrorist ||| 1 0.0218254 2.66517e-05 2.43365e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| knit ||| 0.333333 0.0769231 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| knowledge of the ||| 0.0769231 0.145844 2.66517e-05 3.23277e-07 2.718 ||| 0-2 ||| 13 37521 +los ||| knowledge was based ||| 0.25 0.010989 2.66517e-05 2.98932e-11 2.718 ||| 0-0 ||| 4 37521 +los ||| knowledge was ||| 0.2 0.010989 2.66517e-05 1.84071e-07 2.718 ||| 0-0 ||| 5 37521 +los ||| knowledge ||| 0.00364299 0.010989 5.33035e-05 4.87e-05 2.718 ||| 0-0 ||| 549 37521 +los ||| labeled as permitted ||| 0.5 0.0571429 2.66517e-05 1.28443e-11 2.718 ||| 0-0 ||| 2 37521 +los ||| labeled as ||| 0.25 0.0571429 2.66517e-05 1.64882e-07 2.718 ||| 0-0 ||| 4 37521 +los ||| labeled ||| 0.0952381 0.0571429 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 21 37521 +los ||| labor force directly to one of the ||| 1 0.145844 2.66517e-05 4.39953e-18 2.718 ||| 0-6 ||| 1 37521 +los ||| labor ||| 0.00086881 0.0304818 2.66517e-05 0.0003017 2.718 ||| 0-0 ||| 1151 37521 +los ||| large numbers ||| 0.0133333 0.0027579 2.66517e-05 4.11028e-09 2.718 ||| 0-0 ||| 75 37521 +los ||| large ||| 0.00102617 0.0027579 5.33035e-05 4.87e-05 2.718 ||| 0-0 ||| 1949 37521 +los ||| larger ||| 0.0020284 0.0016051 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 493 37521 +los ||| launched the slogan " ||| 1 0.145844 2.66517e-05 1.29281e-12 2.718 ||| 0-1 ||| 1 37521 +los ||| launched the slogan ||| 1 0.145844 2.66517e-05 2.58867e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| launched the ||| 0.0526316 0.145844 2.66517e-05 1.99128e-05 2.718 ||| 0-1 ||| 19 37521 +los ||| lawmakers ' ||| 1 0.355932 2.66517e-05 1.68589e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| lawmakers ||| 0.0357143 0.355932 2.66517e-05 0.0002044 2.718 ||| 0-0 ||| 28 37521 +los ||| lawyers ||| 0.00819672 0.241135 2.66517e-05 0.0003309 2.718 ||| 0-0 ||| 122 37521 +los ||| lead the charge ||| 0.2 0.145844 2.66517e-05 1.75972e-08 2.718 ||| 0-1 ||| 5 37521 +los ||| lead the ||| 0.0163934 0.145844 2.66517e-05 0.000159395 2.718 ||| 0-1 ||| 61 37521 +los ||| leaders to ||| 0.0212766 0.341338 2.66517e-05 0.000958668 2.718 ||| 0-0 ||| 47 37521 +los ||| leaders ||| 0.00191058 0.341338 0.000133259 0.0116216 2.718 ||| 0-0 ||| 2617 37521 +los ||| learning ||| 0.0117647 0.0102564 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 170 37521 +los ||| leaving the ||| 0.0172414 0.145844 2.66517e-05 2.78902e-05 2.718 ||| 0-1 ||| 58 37521 +los ||| led them ||| 0.25 0.0948535 2.66517e-05 1.0393e-06 2.718 ||| 0-1 ||| 4 37521 +los ||| led to fiscal imbalances ||| 1 0.36692 2.66517e-05 2.87442e-12 2.718 ||| 0-3 ||| 1 37521 +los ||| legislators close to ||| 0.25 0.3625 2.66517e-05 6.20132e-09 2.718 ||| 0-0 ||| 4 37521 +los ||| legislators close ||| 0.25 0.3625 2.66517e-05 7.51765e-08 2.718 ||| 0-0 ||| 4 37521 +los ||| legislators ||| 0.0166667 0.3625 2.66517e-05 0.0002823 2.718 ||| 0-0 ||| 60 37521 +los ||| legitimate ||| 0.00766284 0.007722 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 261 37521 +los ||| lend the money to ||| 0.5 0.145844 2.66517e-05 2.76729e-10 2.718 ||| 0-1 ||| 2 37521 +los ||| lend the money ||| 0.5 0.145844 2.66517e-05 3.3547e-09 2.718 ||| 0-1 ||| 2 37521 +los ||| lend the ||| 0.333333 0.145844 2.66517e-05 1.39604e-05 2.718 ||| 0-1 ||| 3 37521 +los ||| lenders ||| 0.00952381 0.302326 2.66517e-05 0.0005061 2.718 ||| 0-0 ||| 105 37521 +los ||| lending ||| 0.00757576 0.166038 0.000106607 0.0008565 2.718 ||| 0-0 ||| 528 37521 +los ||| less fish ||| 1 0.175879 2.66517e-05 1.23913e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| let the ||| 0.0377358 0.145844 5.33035e-05 0.00010162 2.718 ||| 0-1 ||| 53 37521 +los ||| level the playing field between ||| 0.142857 0.145844 2.66517e-05 1.71802e-16 2.718 ||| 0-1 ||| 7 37521 +los ||| level the playing field ||| 0.0909091 0.145844 2.66517e-05 5.29111e-13 2.718 ||| 0-1 ||| 11 37521 +los ||| level the playing ||| 0.111111 0.145844 2.66517e-05 8.15271e-09 2.718 ||| 0-1 ||| 9 37521 +los ||| level the ||| 0.111111 0.145844 2.66517e-05 6.97409e-05 2.718 ||| 0-1 ||| 9 37521 +los ||| levels ||| 0.00659755 0.256744 0.000186562 0.0026864 2.718 ||| 0-0 ||| 1061 37521 +los ||| liberal " ||| 0.0666667 0.0040568 2.66517e-05 9.73849e-08 2.718 ||| 0-0 ||| 15 37521 +los ||| liberal conditions , is ||| 1 0.0040568 2.66517e-05 3.83419e-12 2.718 ||| 0-0 ||| 1 37521 +los ||| liberal conditions , ||| 1 0.0040568 2.66517e-05 2.32623e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| liberal conditions ||| 1 0.0040568 2.66517e-05 1.1388e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| liberal ||| 0.00377358 0.0040568 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 530 37521 +los ||| liberals assume ||| 1 0.404762 2.66517e-05 5.58644e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| liberals ||| 0.00884956 0.404762 2.66517e-05 0.0006619 2.718 ||| 0-0 ||| 113 37521 +los ||| liberate the ||| 0.2 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-1 ||| 5 37521 +los ||| libertarian ||| 0.272727 0.307692 7.99552e-05 3.89e-05 2.718 ||| 0-0 ||| 11 37521 +los ||| like the ||| 0.00188679 0.145844 2.66517e-05 0.000257056 2.718 ||| 0-1 ||| 530 37521 +los ||| limits ||| 0.00239808 0.0985915 2.66517e-05 0.0004088 2.718 ||| 0-0 ||| 417 37521 +los ||| link mobile ||| 0.5 0.152174 2.66517e-05 4.42975e-09 2.718 ||| 0-1 ||| 2 37521 +los ||| links high ||| 1 0.141975 2.66517e-05 1.06151e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| links ||| 0.00684932 0.141975 2.66517e-05 0.0002239 2.718 ||| 0-0 ||| 146 37521 +los ||| litigation ||| 0.142857 0.157895 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 7 37521 +los ||| live today ||| 0.142857 0.0096668 2.66517e-05 9.12913e-08 2.718 ||| 0-1 ||| 7 37521 +los ||| live up to the ||| 0.111111 0.145844 2.66517e-05 1.95121e-08 2.718 ||| 0-3 ||| 9 37521 +los ||| living ||| 0.0013369 0.0063694 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 748 37521 +los ||| loans , ||| 0.0175439 0.175 2.66517e-05 0.000167012 2.718 ||| 0-0 ||| 57 37521 +los ||| loans ||| 0.00631579 0.175 7.99552e-05 0.0008176 2.718 ||| 0-0 ||| 475 37521 +los ||| lobbies ||| 0.0217391 0.175439 2.66517e-05 9.73e-05 2.718 ||| 0-0 ||| 46 37521 +los ||| lobby ||| 0.02 0.0454545 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 50 37521 +los ||| local ||| 0.00314465 0.0071211 7.99552e-05 6.81e-05 2.718 ||| 0-0 ||| 954 37521 +los ||| lofty ||| 0.0555556 0.0714286 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 18 37521 +los ||| long simmering feelings ||| 1 0.115044 2.66517e-05 1.84217e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| long-term commitments ||| 0.2 0.115987 2.66517e-05 3.9755e-08 2.718 ||| 0-1 ||| 5 37521 +los ||| long-terms ||| 1 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| longstanding ||| 0.0392157 0.0447761 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 51 37521 +los ||| loose criteria ||| 1 0.0878378 2.66517e-05 4.11125e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| los autos ||| 1 1 2.66517e-05 1.2675e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| los ||| 1 1 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 2 37521 +los ||| lose their ||| 0.0243902 0.0188051 2.66517e-05 1.60452e-07 2.718 ||| 0-1 ||| 41 37521 +los ||| love them ||| 0.5 0.0948535 2.66517e-05 1.30013e-07 2.718 ||| 0-1 ||| 2 37521 +los ||| low ||| 0.00099108 0.0104275 2.66517e-05 9.73e-05 2.718 ||| 0-0 ||| 1009 37521 +los ||| low-density ||| 1 0.5 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| lower ||| 0.00118624 0.017757 2.66517e-05 0.0001849 2.718 ||| 0-0 ||| 843 37521 +los ||| lowered ||| 0.0263158 0.0377358 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 38 37521 +los ||| lowering ||| 0.0172414 0.0510949 5.33035e-05 6.81e-05 2.718 ||| 0-0 ||| 116 37521 +los ||| made public . if the ||| 1 0.145844 2.66517e-05 3.47602e-13 2.718 ||| 0-4 ||| 1 37521 +los ||| mainstream ||| 0.025 0.105263 0.000106607 0.0001557 2.718 ||| 0-0 ||| 160 37521 +los ||| major backer ||| 1 0.0309333 2.66517e-05 3.66925e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| major ||| 0.0039548 0.0309333 0.000186562 0.0005645 2.718 ||| 0-0 ||| 1770 37521 +los ||| make casts and mounted skeletons of the ||| 0.5 0.145844 2.66517e-05 1.00799e-22 2.718 ||| 0-6 ||| 2 37521 +los ||| make health claims ||| 1 0.0228856 2.66517e-05 6.51584e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| make health ||| 0.5 0.0228856 2.66517e-05 5.90203e-07 2.718 ||| 0-1 ||| 2 37521 +los ||| make it difficult ||| 0.0909091 0.0044563 2.66517e-05 1.70945e-09 2.718 ||| 0-2 ||| 11 37521 +los ||| make its ||| 0.0555556 0.0072862 2.66517e-05 1.25753e-06 2.718 ||| 0-1 ||| 18 37521 +los ||| make the ||| 0.0137931 0.145844 5.33035e-05 0.000404485 2.718 ||| 0-1 ||| 145 37521 +los ||| make them ||| 0.0238095 0.0948535 2.66517e-05 5.27373e-06 2.718 ||| 0-1 ||| 42 37521 +los ||| make those problems worse ||| 1 0.209531 2.66517e-05 1.02187e-13 2.718 ||| 0-1 ||| 1 37521 +los ||| make those problems ||| 1 0.209531 2.66517e-05 1.31177e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| make those ||| 0.142857 0.209531 2.66517e-05 1.00983e-05 2.718 ||| 0-1 ||| 7 37521 +los ||| make ||| 0.000613497 0.000322 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1630 37521 +los ||| makers ||| 0.0126582 0.105769 2.66517e-05 0.0001071 2.718 ||| 0-0 ||| 79 37521 +los ||| makes medical ||| 1 0.0135593 2.66517e-05 1.38951e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| making the ||| 0.0113636 0.145844 2.66517e-05 0.00014347 2.718 ||| 0-1 ||| 88 37521 +los ||| making ||| 0.00109409 0.0007369 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 914 37521 +los ||| male youth ||| 0.333333 0.16763 2.66517e-05 3.6699e-09 2.718 ||| 0-1 ||| 3 37521 +los ||| managerial ||| 0.0243902 0.0555556 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 41 37521 +los ||| managers ||| 0.0042735 0.337349 2.66517e-05 0.0010901 2.718 ||| 0-0 ||| 234 37521 +los ||| mandatory ||| 0.0185185 0.0153846 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 54 37521 +los ||| manufactured by ||| 0.142857 0.1125 2.66517e-05 5.93359e-07 2.718 ||| 0-0 ||| 7 37521 +los ||| manufactured ||| 0.0217391 0.1125 2.66517e-05 8.76e-05 2.718 ||| 0-0 ||| 46 37521 +los ||| manufacturers ||| 0.0277778 0.383721 5.33035e-05 0.0003212 2.718 ||| 0-0 ||| 72 37521 +los ||| many Europeans did ||| 1 0.398268 2.66517e-05 4.1979e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| many Europeans ||| 0.0227273 0.398268 2.66517e-05 2.61698e-06 2.718 ||| 0-1 ||| 44 37521 +los ||| many times the ||| 0.333333 0.145844 2.66517e-05 3.49351e-08 2.718 ||| 0-2 ||| 3 37521 +los ||| many ||| 0.00127551 0.0018797 0.000186562 9.73e-05 2.718 ||| 0-0 ||| 5488 37521 +los ||| march up the ||| 0.5 0.145844 2.66517e-05 2.4919e-08 2.718 ||| 0-2 ||| 2 37521 +los ||| market ||| 0.000886263 0.0223672 7.99552e-05 0.0007008 2.718 ||| 0-0 ||| 3385 37521 +los ||| market-neutral ||| 0.5 0.5 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 2 37521 +los ||| markets take ||| 0.111111 0.413817 2.66517e-05 1.52931e-05 2.718 ||| 0-0 ||| 9 37521 +los ||| markets work ||| 0.166667 0.413817 2.66517e-05 1.04586e-05 2.718 ||| 0-0 ||| 6 37521 +los ||| markets ||| 0.00194175 0.413817 0.00015991 0.0173156 2.718 ||| 0-0 ||| 3090 37521 +los ||| mass ||| 0.00226244 0.009375 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 442 37521 +los ||| mechanics ||| 0.0344828 0.111111 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 29 37521 +los ||| media barrage ||| 0.5 0.227723 2.66517e-05 1.60062e-08 2.718 ||| 0-0 ||| 2 37521 +los ||| media ||| 0.004158 0.227723 0.000106607 0.0024625 2.718 ||| 0-0 ||| 962 37521 +los ||| medical ||| 0.00630915 0.0135593 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 317 37521 +los ||| medieval ||| 0.037037 0.0606061 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 27 37521 +los ||| meet the need ||| 1 0.145844 2.66517e-05 3.07651e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| meet the ||| 0.0104167 0.145844 2.66517e-05 5.77748e-05 2.718 ||| 0-1 ||| 96 37521 +los ||| member ||| 0.00387597 0.0756522 0.000106607 0.0008468 2.718 ||| 0-0 ||| 1032 37521 +los ||| members allowed ||| 0.333333 0.198333 2.66517e-05 5.64308e-07 2.718 ||| 0-0 ||| 3 37521 +los ||| members of ||| 0.00787402 0.198333 5.33035e-05 9.38755e-05 2.718 ||| 0-0 ||| 254 37521 +los ||| members ||| 0.00716253 0.198333 0.000346473 0.0034748 2.718 ||| 0-0 ||| 1815 37521 +los ||| membership that ||| 1 0.000607 2.66517e-05 2.56611e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| memories ||| 0.0104167 0.244094 2.66517e-05 0.0003017 2.718 ||| 0-0 ||| 96 37521 +los ||| men ||| 0.00735294 0.248974 0.000106607 0.0017715 2.718 ||| 0-0 ||| 544 37521 +los ||| mere US ||| 0.25 0.0706706 2.66517e-05 6.38666e-07 2.718 ||| 0-1 ||| 4 37521 +los ||| messier the ||| 1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 1 37521 +los ||| microbes ||| 0.0277778 0.288136 2.66517e-05 0.0001655 2.718 ||| 0-0 ||| 36 37521 +los ||| middle-income ||| 0.0142857 0.12037 2.66517e-05 0.0001265 2.718 ||| 0-0 ||| 70 37521 +los ||| migrant ||| 0.05 0.12766 5.33035e-05 5.84e-05 2.718 ||| 0-0 ||| 40 37521 +los ||| migrants would have ||| 1 0.335443 2.66517e-05 1.23159e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| migrants would ||| 1 0.335443 2.66517e-05 2.38547e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| migrants ||| 0.01 0.335443 2.66517e-05 0.0005159 2.718 ||| 0-0 ||| 100 37521 +los ||| military ||| 0.000343997 0.0007429 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 2907 37521 +los ||| mind the ||| 0.0555556 0.145844 2.66517e-05 6.77465e-05 2.718 ||| 0-1 ||| 18 37521 +los ||| mining for insight for ||| 1 0.0007029 2.66517e-05 7.04734e-16 2.718 ||| 0-3 ||| 1 37521 +los ||| minority ||| 0.00316456 0.0076923 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 316 37521 +los ||| mislead them , or even that he ||| 1 0.0948535 2.66517e-05 1.72885e-19 2.718 ||| 0-1 ||| 1 37521 +los ||| mislead them , or even that ||| 1 0.0948535 2.66517e-05 5.53464e-17 2.718 ||| 0-1 ||| 1 37521 +los ||| mislead them , or even ||| 1 0.0948535 2.66517e-05 6.77451e-15 2.718 ||| 0-1 ||| 1 37521 +los ||| mislead them , or ||| 1 0.0948535 2.66517e-05 7.45107e-12 2.718 ||| 0-1 ||| 1 37521 +los ||| mislead them , ||| 1 0.0948535 2.66517e-05 5.31157e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| mislead them ||| 1 0.0948535 2.66517e-05 2.60026e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| mixed ||| 0.0123457 0.0082645 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 81 37521 +los ||| mobile telephones , ||| 0.25 0.152174 2.66517e-05 1.80974e-10 2.718 ||| 0-0 ||| 4 37521 +los ||| mobile telephones ||| 0.111111 0.152174 2.66517e-05 8.8595e-10 2.718 ||| 0-0 ||| 9 37521 +los ||| mobile ||| 0.146667 0.152174 0.000293169 0.0001363 2.718 ||| 0-0 ||| 75 37521 +los ||| model ||| 0.0011534 0.0013947 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 867 37521 +los ||| moderated by the world 's ||| 1 0.145844 2.66517e-05 3.6887e-13 2.718 ||| 0-2 ||| 1 37521 +los ||| moderated by the world ||| 1 0.145844 2.66517e-05 2.36862e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| moderated by the ||| 1 0.145844 2.66517e-05 2.70175e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| modern ||| 0.0013624 0.0068871 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 734 37521 +los ||| money and credit do not ||| 1 0.0029128 2.66517e-05 7.40496e-17 2.718 ||| 0-3 ||| 1 37521 +los ||| money and credit do ||| 1 0.0029128 2.66517e-05 3.14984e-14 2.718 ||| 0-3 ||| 1 37521 +los ||| money-market ||| 0.2 0.1 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 5 37521 +los ||| mood ||| 0.00892857 0.016 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 112 37521 +los ||| moral , ||| 0.047619 0.0015528 2.66517e-05 1.98142e-06 2.718 ||| 0-0 ||| 21 37521 +los ||| moral ||| 0.00140647 0.0015528 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 711 37521 +los ||| more difficult ||| 0.00584795 0.0044563 2.66517e-05 1.04052e-07 2.718 ||| 0-1 ||| 171 37521 +los ||| mortgage ||| 0.00816326 0.016 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 245 37521 +los ||| mosquito ||| 0.25 0.173913 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 8 37521 +los ||| most OECD ||| 0.333333 0.076 2.66517e-05 1.22478e-07 2.718 ||| 0-1 ||| 3 37521 +los ||| most of the ||| 0.00273973 0.145844 2.66517e-05 5.49074e-06 2.718 ||| 0-2 ||| 365 37521 +los ||| most optimistic scenario , ||| 0.2 0.0022661 2.66517e-05 9.07231e-15 2.718 ||| 0-0 ||| 5 37521 +los ||| most optimistic scenario ||| 0.2 0.0022661 2.66517e-05 4.44132e-14 2.718 ||| 0-0 ||| 5 37521 +los ||| most optimistic ||| 0.125 0.0022661 2.66517e-05 1.1388e-09 2.718 ||| 0-0 ||| 8 37521 +los ||| most ||| 0.000796601 0.0022661 0.00015991 0.0001752 2.718 ||| 0-0 ||| 7532 37521 +los ||| motherhood ||| 0.0909091 0.1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 11 37521 +los ||| motives ||| 0.0144928 0.178571 2.66517e-05 0.000146 2.718 ||| 0-0 ||| 69 37521 +los ||| motor ||| 0.0192308 0.02 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 52 37521 +los ||| mounted skeletons of the specimen and ||| 0.5 0.145844 2.66517e-05 7.6461e-20 2.718 ||| 0-3 ||| 2 37521 +los ||| mounted skeletons of the specimen ||| 0.5 0.145844 2.66517e-05 9.10564e-18 2.718 ||| 0-3 ||| 2 37521 +los ||| mounted skeletons of the ||| 0.5 0.145844 2.66517e-05 1.40087e-12 2.718 ||| 0-3 ||| 2 37521 +los ||| moved between them ||| 1 0.0948535 2.66517e-05 1.68731e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| movements ||| 0.00867052 0.339623 7.99552e-05 0.0014016 2.718 ||| 0-0 ||| 346 37521 +los ||| moving the ||| 0.333333 0.145844 2.66517e-05 2.78902e-05 2.718 ||| 0-1 ||| 3 37521 +los ||| much as ||| 0.005 0.00021 2.66517e-05 8.20183e-08 2.718 ||| 0-0 ||| 200 37521 +los ||| much the ||| 0.025641 0.145844 2.66517e-05 0.000442347 2.718 ||| 0-1 ||| 39 37521 +los ||| much ||| 0.000298418 0.00021 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 3351 37521 +los ||| multilateral ||| 0.00332226 0.0035088 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 301 37521 +los ||| multiple-family ||| 1 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| murder ||| 0.00704225 0.0314961 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 142 37521 +los ||| museums , schools , companies , and ||| 1 0.333333 2.66517e-05 2.11714e-17 2.718 ||| 0-0 ||| 1 37521 +los ||| museums , schools , companies , ||| 1 0.333333 2.66517e-05 2.52128e-15 2.718 ||| 0-0 ||| 1 37521 +los ||| museums , schools , companies ||| 1 0.333333 2.66517e-05 1.23428e-14 2.718 ||| 0-0 ||| 1 37521 +los ||| museums , schools , ||| 1 0.333333 2.66517e-05 1.18795e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| museums , schools ||| 1 0.333333 2.66517e-05 5.81558e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| museums , ||| 0.166667 0.333333 2.66517e-05 1.78941e-05 2.718 ||| 0-0 ||| 6 37521 +los ||| museums ||| 0.0526316 0.333333 2.66517e-05 8.76e-05 2.718 ||| 0-0 ||| 19 37521 +los ||| musical ||| 0.0833333 0.0666667 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 12 37521 +los ||| must be mutual ||| 1 0.0309735 2.66517e-05 4.55792e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| mutual ||| 0.00990099 0.0309735 5.33035e-05 6.81e-05 2.718 ||| 0-0 ||| 202 37521 +los ||| my fourth point addresses accountability and transparency ||| 1 0.0217391 2.66517e-05 8.40589e-29 2.718 ||| 0-3 ||| 1 37521 +los ||| my fourth point addresses accountability and ||| 1 0.0217391 2.66517e-05 3.23304e-24 2.718 ||| 0-3 ||| 1 37521 +los ||| my fourth point addresses accountability ||| 1 0.0217391 2.66517e-05 3.85018e-22 2.718 ||| 0-3 ||| 1 37521 +los ||| my fourth point addresses ||| 1 0.0217391 2.66517e-05 1.97445e-17 2.718 ||| 0-3 ||| 1 37521 +los ||| name the ||| 0.25 0.145844 2.66517e-05 4.3845e-05 2.718 ||| 0-1 ||| 4 37521 +los ||| national flags ||| 0.25 0.0049706 2.66517e-05 6.9615e-10 2.718 ||| 0-0 ||| 4 37521 +los ||| national policies in the ||| 0.5 0.145844 2.66517e-05 8.82517e-11 2.718 ||| 0-3 ||| 2 37521 +los ||| national ||| 0.0042517 0.0049706 0.000266517 0.0001071 2.718 ||| 0-0 ||| 2352 37521 +los ||| natural ||| 0.00533333 0.0058055 0.000106607 3.89e-05 2.718 ||| 0-0 ||| 750 37521 +los ||| naturally ||| 0.0070922 0.0055866 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 141 37521 +los ||| near the bottom ||| 0.0555556 0.145844 2.66517e-05 1.76141e-09 2.718 ||| 0-1 ||| 18 37521 +los ||| near the ||| 0.0126582 0.145844 2.66517e-05 1.59548e-05 2.718 ||| 0-1 ||| 79 37521 +los ||| necessary ||| 0.00253485 0.0023725 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 789 37521 +los ||| need for ||| 0.00294118 0.0007029 2.66517e-05 1.24392e-07 2.718 ||| 0-1 ||| 340 37521 +los ||| need the innovation ||| 1 0.145844 2.66517e-05 1.06199e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| need the ||| 0.0384615 0.145844 2.66517e-05 0.000163383 2.718 ||| 0-1 ||| 26 37521 +los ||| neither foreseeing them ||| 1 0.0948535 2.66517e-05 1.18312e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| network ||| 0.00549451 0.0073529 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 182 37521 +los ||| new loans ||| 0.0769231 0.175 2.66517e-05 6.00037e-07 2.718 ||| 0-1 ||| 13 37521 +los ||| new low-energy ||| 1 0.0004763 2.66517e-05 1.898e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| new members ||| 0.00961538 0.198333 2.66517e-05 2.55016e-06 2.718 ||| 0-1 ||| 104 37521 +los ||| new ||| 0.000454683 0.0004763 7.99552e-05 2.92e-05 2.718 ||| 0-0 ||| 6598 37521 +los ||| news ||| 0.00197239 0.0120968 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 507 37521 +los ||| newspaper ||| 0.00689655 0.0291971 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 145 37521 +los ||| no coverage in the ||| 1 0.145844 2.66517e-05 1.27369e-10 2.718 ||| 0-3 ||| 1 37521 +los ||| non-NATO ||| 1 0.5 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 1 37521 +los ||| non-democracies ||| 0.0666667 0.178571 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 15 37521 +los ||| non-scientific ||| 0.25 0.166667 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 4 37521 +los ||| not all countries will embrace the ||| 1 0.145844 2.66517e-05 1.14488e-16 2.718 ||| 0-5 ||| 1 37521 +los ||| not criminal investigators -- searched ||| 1 0.290323 2.66517e-05 3.06152e-19 2.718 ||| 0-2 ||| 1 37521 +los ||| not criminal investigators -- ||| 1 0.290323 2.66517e-05 4.71003e-14 2.718 ||| 0-2 ||| 1 37521 +los ||| not criminal investigators ||| 1 0.290323 2.66517e-05 9.37022e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| not for the sovereign-debt crisis ||| 1 0.145844 2.66517e-05 4.20262e-15 2.718 ||| 0-2 ||| 1 37521 +los ||| not for the sovereign-debt ||| 1 0.145844 2.66517e-05 2.23187e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| not for the ||| 0.111111 0.145844 2.66517e-05 3.43365e-06 2.718 ||| 0-2 ||| 9 37521 +los ||| not revolutionary , ||| 0.25 0.0055556 2.66517e-05 4.65813e-09 2.718 ||| 0-1 ||| 4 37521 +los ||| not revolutionary ||| 0.166667 0.0055556 2.66517e-05 2.28037e-08 2.718 ||| 0-1 ||| 6 37521 +los ||| now being exposed as the army ||| 1 0.145844 2.66517e-05 2.0605e-17 2.718 ||| 0-4 ||| 1 37521 +los ||| now being exposed as the ||| 1 0.145844 2.66517e-05 2.64506e-13 2.718 ||| 0-4 ||| 1 37521 +los ||| now the ||| 0.00684932 0.145844 2.66517e-05 0.000456307 2.718 ||| 0-1 ||| 146 37521 +los ||| now-plummeting ||| 1 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| nuclear tests ||| 0.0625 0.0704225 2.66517e-05 1.13734e-08 2.718 ||| 0-1 ||| 16 37521 +los ||| nuclear ||| 0.00147275 0.0014903 7.99552e-05 2.92e-05 2.718 ||| 0-0 ||| 2037 37521 +los ||| numerical ||| 0.111111 0.0769231 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 9 37521 +los ||| obscure governor ||| 0.5 0.0714286 2.66517e-05 9.49e-10 2.718 ||| 0-0 ||| 2 37521 +los ||| obscure ||| 0.0192308 0.0714286 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 52 37521 +los ||| obscures the ||| 0.0769231 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 13 37521 +los ||| observers ||| 0.00413223 0.267361 2.66517e-05 0.0007495 2.718 ||| 0-0 ||| 242 37521 +los ||| occasional ||| 0.025 0.05 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 40 37521 +los ||| occasionally led to fiscal imbalances ||| 1 0.36692 2.66517e-05 3.73675e-17 2.718 ||| 0-4 ||| 1 37521 +los ||| ocean ||| 0.0192308 0.214286 2.66517e-05 0.0001752 2.718 ||| 0-0 ||| 52 37521 +los ||| oceans ||| 0.0212766 0.218182 2.66517e-05 0.0001168 2.718 ||| 0-0 ||| 47 37521 +los ||| of Muslims ||| 0.04 0.379688 2.66517e-05 6.38985e-05 2.718 ||| 0-1 ||| 25 37521 +los ||| of all ||| 0.0013947 0.0267846 2.66517e-05 5.73255e-05 2.718 ||| 0-1 ||| 717 37521 +los ||| of authoritarian regimes to argue ||| 1 0.268344 2.66517e-05 7.50062e-15 2.718 ||| 0-2 ||| 1 37521 +los ||| of authoritarian regimes to ||| 1 0.268344 2.66517e-05 7.21907e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| of authoritarian regimes ||| 0.166667 0.268344 2.66517e-05 8.75143e-10 2.718 ||| 0-2 ||| 6 37521 +los ||| of course the ||| 0.125 0.145844 2.66517e-05 3.55273e-06 2.718 ||| 0-2 ||| 8 37521 +los ||| of honor ||| 0.0555556 0.0072464 2.66517e-05 2.62056e-07 2.718 ||| 0-1 ||| 18 37521 +los ||| of microbes ||| 0.0833333 0.288136 2.66517e-05 4.47116e-06 2.718 ||| 0-1 ||| 12 37521 +los ||| of people ||| 0.00247525 0.024235 2.66517e-05 4.70702e-05 2.718 ||| 0-1 ||| 404 37521 +los ||| of recent ||| 0.0217391 0.163831 2.66517e-05 0.000108864 2.718 ||| 0-1 ||| 46 37521 +los ||| of shaping the ||| 0.333333 0.145844 2.66517e-05 2.15518e-07 2.718 ||| 0-2 ||| 3 37521 +los ||| of the Exchequer . ||| 1 0.145844 2.66517e-05 7.43198e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| of the Exchequer ||| 0.166667 0.145844 2.66517e-05 1.61639e-07 2.718 ||| 0-1 ||| 6 37521 +los ||| of the Group ||| 0.333333 0.145844 2.66517e-05 1.07759e-07 2.718 ||| 0-1 ||| 3 37521 +los ||| of the fact ||| 0.0243902 0.145844 2.66517e-05 5.43686e-06 2.718 ||| 0-1 ||| 41 37521 +los ||| of the public ||| 0.0416667 0.145844 2.66517e-05 2.90701e-06 2.718 ||| 0-1 ||| 24 37521 +los ||| of the specimen and ||| 0.5 0.145844 2.66517e-05 4.52432e-10 2.718 ||| 0-1 ||| 2 37521 +los ||| of the specimen ||| 0.5 0.145844 2.66517e-05 5.38795e-08 2.718 ||| 0-1 ||| 2 37521 +los ||| of the ||| 0.00334479 0.145844 0.00191893 0.00828916 2.718 ||| 0-1 ||| 21526 37521 +los ||| of their humanity initially arises ||| 1 0.0188051 2.66517e-05 3.30169e-19 2.718 ||| 0-1 ||| 1 37521 +los ||| of their humanity initially ||| 1 0.0188051 2.66517e-05 1.69317e-14 2.718 ||| 0-1 ||| 1 37521 +los ||| of their humanity ||| 1 0.0188051 2.66517e-05 8.68295e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| of their ||| 0.000774593 0.0188051 2.66517e-05 6.67919e-05 2.718 ||| 0-1 ||| 1291 37521 +los ||| of them ||| 0.00241546 0.0948535 2.66517e-05 0.000108075 2.718 ||| 0-1 ||| 414 37521 +los ||| of those ||| 0.00615385 0.209531 5.33035e-05 0.000206946 2.718 ||| 0-1 ||| 325 37521 +los ||| of us ||| 0.00568182 0.0058858 2.66517e-05 2.62867e-06 2.718 ||| 0-1 ||| 176 37521 +los ||| of ||| 0.000147179 0.000189 0.000399776 0.0002044 2.718 ||| 0-0 ||| 101917 37521 +los ||| off and ||| 0.111111 0.0054348 2.66517e-05 5.71843e-07 2.718 ||| 0-0 ||| 9 37521 +los ||| off the ||| 0.0218978 0.145844 7.99552e-05 0.000352693 2.718 ||| 0-1 ||| 137 37521 +los ||| off with the ||| 1 0.145844 2.66517e-05 1.33766e-06 2.718 ||| 0-2 ||| 1 37521 +los ||| off ||| 0.00238663 0.0054348 2.66517e-05 6.81e-05 2.718 ||| 0-0 ||| 419 37521 +los ||| offers the ||| 0.025 0.145844 2.66517e-05 1.99128e-05 2.718 ||| 0-1 ||| 40 37521 +los ||| officers ||| 0.0308642 0.215686 0.000133259 0.0003212 2.718 ||| 0-0 ||| 162 37521 +los ||| official ||| 0.002886 0.0030864 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 693 37521 +los ||| officials promise ||| 1 0.262372 2.66517e-05 2.10983e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| officials ||| 0.00452899 0.262372 0.000133259 0.0032509 2.718 ||| 0-0 ||| 1104 37521 +los ||| offshore ||| 0.0232558 0.0744681 2.66517e-05 6.81e-05 2.718 ||| 0-0 ||| 43 37521 +los ||| oil prices ||| 0.00373134 0.438459 2.66517e-05 2.39316e-06 2.718 ||| 0-1 ||| 268 37521 +los ||| oil ||| 0.000527704 0.009087 2.66517e-05 0.0002044 2.718 ||| 0-0 ||| 1895 37521 +los ||| old ||| 0.00191571 0.0058309 5.33035e-05 5.84e-05 2.718 ||| 0-0 ||| 1044 37521 +los ||| old-age ||| 0.0588235 0.125 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 17 37521 +los ||| old-fashioned and ||| 1 0.0888889 2.66517e-05 3.26647e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| old-fashioned ||| 0.0555556 0.0888889 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 36 37521 +los ||| oligarchs ||| 0.0128205 0.22449 2.66517e-05 0.0002141 2.718 ||| 0-0 ||| 78 37521 +los ||| on , ||| 0.0133333 0.0008407 2.66517e-05 3.77696e-05 2.718 ||| 0-0 ||| 75 37521 +los ||| on gas-guzzling cars ||| 0.25 0.041958 2.66517e-05 1.48898e-12 2.718 ||| 0-2 ||| 4 37521 +los ||| on investment , while ||| 1 0.0008407 2.66517e-05 8.6962e-13 2.718 ||| 0-0 ||| 1 37521 +los ||| on investment , ||| 0.333333 0.0008407 2.66517e-05 3.18776e-09 2.718 ||| 0-0 ||| 3 37521 +los ||| on investment ||| 0.0714286 0.0008407 2.66517e-05 1.56056e-08 2.718 ||| 0-0 ||| 14 37521 +los ||| on the increase ||| 0.2 0.145844 2.66517e-05 2.5009e-07 2.718 ||| 0-1 ||| 5 37521 +los ||| on the issues ||| 0.166667 0.103339 2.66517e-05 8.55096e-07 2.718 ||| 0-1 0-2 ||| 6 37521 +los ||| on the ||| 0.00182593 0.145844 0.000239866 0.00120351 2.718 ||| 0-1 ||| 4929 37521 +los ||| on top of the ||| 0.2 0.145844 2.66517e-05 1.16141e-08 2.718 ||| 0-3 ||| 5 37521 +los ||| on ||| 0.000516076 0.0008407 0.000266517 0.0001849 2.718 ||| 0-0 ||| 19377 37521 +los ||| once sacrosanct ||| 1 0.0625 2.66517e-05 5.1022e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| one 's ||| 0.0444444 0.0363459 0.000106607 7.87253e-05 2.718 ||| 0-1 ||| 90 37521 +los ||| one of the public ||| 1 0.145844 2.66517e-05 1.16862e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| one of the ||| 0.00122249 0.145844 2.66517e-05 3.33224e-05 2.718 ||| 0-2 ||| 818 37521 +los ||| one ||| 0.000471032 0.0006728 7.99552e-05 4.87e-05 2.718 ||| 0-0 ||| 6369 37521 +los ||| ones reaping the biggest ||| 0.333333 0.145844 2.66517e-05 8.58687e-15 2.718 ||| 0-2 ||| 3 37521 +los ||| ones reaping the ||| 0.333333 0.145844 2.66517e-05 6.60529e-10 2.718 ||| 0-2 ||| 3 37521 +los ||| ones ||| 0.113475 0.101911 0.000426428 0.0003115 2.718 ||| 0-0 ||| 141 37521 +los ||| only China can contain China ||| 1 0.0017442 2.66517e-05 3.03794e-18 2.718 ||| 0-1 ||| 1 37521 +los ||| only China can contain ||| 1 0.0017442 2.66517e-05 4.33125e-15 2.718 ||| 0-1 ||| 1 37521 +los ||| only China can ||| 1 0.0017442 2.66517e-05 2.22115e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| only China ||| 0.111111 0.0017442 2.66517e-05 1.2667e-07 2.718 ||| 0-1 ||| 9 37521 +los ||| only be tuned ||| 0.333333 0.166667 2.66517e-05 1.0842e-10 2.718 ||| 0-2 ||| 3 37521 +los ||| only make those problems worse ||| 1 0.209531 2.66517e-05 1.10822e-16 2.718 ||| 0-2 ||| 1 37521 +los ||| only make those problems ||| 1 0.209531 2.66517e-05 1.42262e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| only make those ||| 1 0.209531 2.66517e-05 1.09516e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| open the door ||| 0.111111 0.145844 2.66517e-05 7.56677e-09 2.718 ||| 0-1 ||| 9 37521 +los ||| open the ||| 0.0277778 0.145844 2.66517e-05 8.96537e-05 2.718 ||| 0-1 ||| 36 37521 +los ||| operate beyond the ||| 1 0.145844 2.66517e-05 2.91374e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| operational ||| 0.0136986 0.0142857 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 73 37521 +los ||| operators ||| 0.0952381 0.355556 0.000106607 0.0001557 2.718 ||| 0-0 ||| 42 37521 +los ||| opponents ||| 0.00383142 0.196237 2.66517e-05 0.0007105 2.718 ||| 0-0 ||| 261 37521 +los ||| opt out ||| 0.0666667 0.0050566 2.66517e-05 5.3144e-09 2.718 ||| 0-1 ||| 15 37521 +los ||| or near the bottom ||| 0.5 0.145844 2.66517e-05 2.47091e-12 2.718 ||| 0-2 ||| 2 37521 +los ||| or near the ||| 0.333333 0.145844 2.66517e-05 2.23814e-08 2.718 ||| 0-2 ||| 3 37521 +los ||| or ||| 7.78695e-05 9.17e-05 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 12842 37521 +los ||| order the ||| 0.166667 0.145844 2.66517e-05 0.000247085 2.718 ||| 0-1 ||| 6 37521 +los ||| ordinary ||| 0.0466472 0.0675883 0.000426428 0.0004283 2.718 ||| 0-0 ||| 343 37521 +los ||| organized , ||| 0.0909091 0.005 2.66517e-05 1.98142e-06 2.718 ||| 0-0 ||| 11 37521 +los ||| organized ||| 0.00495049 0.005 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 202 37521 +los ||| other $ ||| 0.25 0.0327755 2.66517e-05 1.07546e-06 2.718 ||| 0-1 ||| 4 37521 +los ||| other countries ||| 0.00178571 0.228661 2.66517e-05 3.10179e-05 2.718 ||| 0-1 ||| 560 37521 +los ||| other museums , schools , companies , ||| 1 0.333333 2.66517e-05 2.96376e-18 2.718 ||| 0-1 ||| 1 37521 +los ||| other museums , schools , companies ||| 1 0.333333 2.66517e-05 1.4509e-17 2.718 ||| 0-1 ||| 1 37521 +los ||| other museums , schools , ||| 1 0.333333 2.66517e-05 1.39644e-13 2.718 ||| 0-1 ||| 1 37521 +los ||| other museums , schools ||| 1 0.333333 2.66517e-05 6.83622e-13 2.718 ||| 0-1 ||| 1 37521 +los ||| other museums , ||| 1 0.333333 2.66517e-05 2.10345e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| other museums ||| 1 0.333333 2.66517e-05 1.02974e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| other professionals ||| 0.142857 0.227273 2.66517e-05 2.85999e-07 2.718 ||| 0-1 ||| 7 37521 +los ||| other ||| 0.00062383 0.0008157 0.000106607 4.87e-05 2.718 ||| 0-0 ||| 6412 37521 +los ||| others capable of joining ||| 0.333333 0.104106 2.66517e-05 2.29822e-13 2.718 ||| 0-0 ||| 3 37521 +los ||| others capable of ||| 0.333333 0.104106 2.66517e-05 7.07143e-09 2.718 ||| 0-0 ||| 3 37521 +los ||| others capable ||| 0.333333 0.104106 2.66517e-05 2.61749e-07 2.718 ||| 0-0 ||| 3 37521 +los ||| others ||| 0.0040864 0.104106 0.000186562 0.001752 2.718 ||| 0-0 ||| 1713 37521 +los ||| our existing ||| 1 0.0611765 2.66517e-05 1.33131e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| our ||| 0.000872854 0.0018176 7.99552e-05 5.84e-05 2.718 ||| 0-0 ||| 3437 37521 +los ||| out America ||| 1 0.136448 2.66517e-05 4.77927e-05 2.718 ||| 0-1 ||| 1 37521 +los ||| out the goods ||| 0.5 0.145844 2.66517e-05 6.1923e-08 2.718 ||| 0-1 ||| 2 37521 +los ||| out the ||| 0.0625 0.145844 0.000133259 0.00136094 2.718 ||| 0-1 ||| 80 37521 +los ||| out ||| 0.00554675 0.0050566 0.000186562 0.0002044 2.718 ||| 0-0 ||| 1262 37521 +los ||| outcome of those ||| 1 0.209531 2.66517e-05 4.03545e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| outcomes ||| 0.00431034 0.235714 2.66517e-05 0.0006424 2.718 ||| 0-0 ||| 232 37521 +los ||| outside the ||| 0.00645161 0.145844 2.66517e-05 2.19072e-05 2.718 ||| 0-1 ||| 155 37521 +los ||| outsiders ||| 0.0490196 0.308219 0.000133259 0.000438 2.718 ||| 0-0 ||| 102 37521 +los ||| outstanding ||| 0.0625 0.0508475 7.99552e-05 2.92e-05 2.718 ||| 0-0 ||| 48 37521 +los ||| over the ||| 0.000706714 0.145844 2.66517e-05 0.000213211 2.718 ||| 0-1 ||| 1415 37521 +los ||| overly concerned ||| 0.333333 0.0096154 2.66517e-05 5.057e-10 2.718 ||| 0-1 ||| 3 37521 +los ||| overly loose criteria ||| 1 0.0878378 2.66517e-05 5.34462e-14 2.718 ||| 0-2 ||| 1 37521 +los ||| overnight intravenous ||| 1 0.0769231 2.66517e-05 6.305e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| owners ||| 0.0105263 0.289474 2.66517e-05 0.0003212 2.718 ||| 0-0 ||| 95 37521 +los ||| packaged them ||| 0.25 0.157895 2.66517e-05 5.70802e-08 2.718 ||| 0-0 ||| 4 37521 +los ||| packaged ||| 0.0625 0.157895 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 16 37521 +los ||| papers ||| 0.0243902 0.125 2.66517e-05 7.79e-05 2.718 ||| 0-0 ||| 41 37521 +los ||| parliamentarians ||| 0.0212766 0.302326 2.66517e-05 0.0001265 2.718 ||| 0-0 ||| 47 37521 +los ||| parliaments ||| 0.0135135 0.42963 2.66517e-05 0.0005645 2.718 ||| 0-0 ||| 74 37521 +los ||| participants ||| 0.00549451 0.330769 2.66517e-05 0.0008371 2.718 ||| 0-0 ||| 182 37521 +los ||| participating ||| 0.0151515 0.0151515 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 66 37521 +los ||| parties ||| 0.00406504 0.242475 0.000106607 0.0028227 2.718 ||| 0-0 ||| 984 37521 +los ||| partners ||| 0.00505051 0.0544413 5.33035e-05 0.0001849 2.718 ||| 0-0 ||| 396 37521 +los ||| passed the ||| 0.1 0.145844 2.66517e-05 4.18507e-05 2.718 ||| 0-1 ||| 10 37521 +los ||| past the ||| 0.111111 0.145844 2.66517e-05 6.17635e-05 2.718 ||| 0-1 ||| 9 37521 +los ||| past time ||| 0.04 0.0028952 2.66517e-05 4.55442e-08 2.718 ||| 0-0 ||| 25 37521 +los ||| past ||| 0.00230282 0.0028952 0.000106607 4.87e-05 2.718 ||| 0-0 ||| 1737 37521 +los ||| patterns ||| 0.0150376 0.203593 5.33035e-05 0.0003309 2.718 ||| 0-0 ||| 133 37521 +los ||| pay back such ||| 1 0.0061425 2.66517e-05 1.43292e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| pay back ||| 0.0666667 0.0061425 2.66517e-05 6.76833e-08 2.718 ||| 0-0 ||| 15 37521 +los ||| pay ||| 0.00280505 0.0061425 5.33035e-05 4.87e-05 2.718 ||| 0-0 ||| 713 37521 +los ||| payers ||| 0.222222 0.5 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 9 37521 +los ||| payment ||| 0.0117647 0.0631579 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 85 37521 +los ||| payments ||| 0.00647249 0.239193 5.33035e-05 0.0008079 2.718 ||| 0-0 ||| 309 37521 +los ||| payouts ||| 0.2 0.142857 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 5 37521 +los ||| people 's living ||| 0.5 0.0302905 2.66517e-05 5.76289e-09 2.718 ||| 0-0 0-1 ||| 2 37521 +los ||| people 's ||| 0.012987 0.0302905 2.66517e-05 3.41202e-05 2.718 ||| 0-0 0-1 ||| 77 37521 +los ||| people came to ||| 0.25 0.024235 2.66517e-05 5.97311e-08 2.718 ||| 0-0 ||| 4 37521 +los ||| people came ||| 0.25 0.024235 2.66517e-05 7.241e-07 2.718 ||| 0-0 ||| 4 37521 +los ||| people expect the ||| 0.333333 0.145844 2.66517e-05 1.28484e-08 2.718 ||| 0-2 ||| 3 37521 +los ||| people from the ||| 0.0625 0.145844 2.66517e-05 4.07566e-07 2.718 ||| 0-2 ||| 16 37521 +los ||| people who fill ||| 1 0.024235 2.66517e-05 1.15292e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| people who ||| 0.00291545 0.024235 2.66517e-05 1.77645e-06 2.718 ||| 0-0 ||| 343 37521 +los ||| people ||| 0.00453441 0.024235 0.000746249 0.0017423 2.718 ||| 0-0 ||| 6175 37521 +los ||| peoples living ||| 0.5 0.205534 2.66517e-05 8.54803e-08 2.718 ||| 0-0 ||| 2 37521 +los ||| peoples ||| 0.00938967 0.205534 5.33035e-05 0.0005061 2.718 ||| 0-0 ||| 213 37521 +los ||| periodic ||| 0.04 0.0487805 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 25 37521 +los ||| periods ||| 0.0210526 0.175182 5.33035e-05 0.0002336 2.718 ||| 0-0 ||| 95 37521 +los ||| picked up ||| 0.0526316 0.0054795 2.66517e-05 6.95825e-09 2.718 ||| 0-1 ||| 19 37521 +los ||| planes flying ||| 0.333333 0.147059 2.66517e-05 1.58275e-09 2.718 ||| 0-0 ||| 3 37521 +los ||| planes ||| 0.0625 0.147059 5.33035e-05 4.87e-05 2.718 ||| 0-0 ||| 32 37521 +los ||| planners ||| 0.0416667 0.435897 2.66517e-05 0.0001655 2.718 ||| 0-0 ||| 24 37521 +los ||| plans ||| 0.00243902 0.157534 2.66517e-05 0.0006716 2.718 ||| 0-0 ||| 410 37521 +los ||| plastic ||| 0.0833333 0.0454545 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 12 37521 +los ||| players do ||| 1 0.199275 2.66517e-05 1.22718e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| players ||| 0.00840336 0.199275 5.33035e-05 0.0005353 2.718 ||| 0-0 ||| 238 37521 +los ||| plunges them ||| 0.333333 0.0948535 2.66517e-05 5.20052e-08 2.718 ||| 0-1 ||| 3 37521 +los ||| point addresses accountability and transparency . ||| 1 0.0217391 2.66517e-05 9.24883e-23 2.718 ||| 0-1 ||| 1 37521 +los ||| point addresses accountability and transparency ||| 1 0.0217391 2.66517e-05 2.01153e-20 2.718 ||| 0-1 ||| 1 37521 +los ||| point addresses accountability and ||| 1 0.0217391 2.66517e-05 7.73667e-16 2.718 ||| 0-1 ||| 1 37521 +los ||| point addresses accountability ||| 1 0.0217391 2.66517e-05 9.2135e-14 2.718 ||| 0-1 ||| 1 37521 +los ||| point addresses ||| 1 0.0217391 2.66517e-05 4.72487e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| point to and name the ||| 1 0.145844 2.66517e-05 1.47935e-11 2.718 ||| 0-4 ||| 1 37521 +los ||| polar ||| 0.0526316 0.176471 2.66517e-05 8.76e-05 2.718 ||| 0-0 ||| 19 37521 +los ||| policies in the ||| 0.1 0.145844 2.66517e-05 3.67256e-07 2.718 ||| 0-2 ||| 10 37521 +los ||| policy gridlock ||| 1 0.0645161 2.66517e-05 6.07815e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| policy ||| 0.000326105 0.0007702 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 6133 37521 +los ||| policymakers , ||| 0.0769231 0.18015 2.66517e-05 0.000429459 2.718 ||| 0-0 ||| 13 37521 +los ||| policymakers are ||| 0.05 0.18015 2.66517e-05 1.55651e-05 2.718 ||| 0-0 ||| 20 37521 +los ||| policymakers pay ||| 0.2 0.18015 2.66517e-05 4.77876e-07 2.718 ||| 0-0 ||| 5 37521 +los ||| policymakers ||| 0.00924499 0.18015 0.00015991 0.0021024 2.718 ||| 0-0 ||| 649 37521 +los ||| political ||| 0.000165453 0.0003506 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 6044 37521 +los ||| politicians have ||| 0.1 0.395489 2.66517e-05 2.64325e-05 2.718 ||| 0-0 ||| 10 37521 +los ||| politicians ||| 0.00566251 0.395489 0.000133259 0.0051197 2.718 ||| 0-0 ||| 883 37521 +los ||| pony-tailed ||| 1 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| pool ||| 0.0169492 0.0138889 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 59 37521 +los ||| poor countries ||| 0.00324675 0.228661 2.66517e-05 4.28525e-06 2.718 ||| 0-1 ||| 308 37521 +los ||| poor country ||| 0.0434783 0.0663082 2.66517e-05 8.34933e-07 2.718 ||| 0-0 ||| 23 37521 +los ||| poor record ||| 0.125 0.0663082 2.66517e-05 1.8248e-07 2.718 ||| 0-0 ||| 8 37521 +los ||| poor ||| 0.00488998 0.0663082 0.000213214 0.0010804 2.718 ||| 0-0 ||| 1636 37521 +los ||| popular moods ||| 1 0.0031397 2.66517e-05 1.2675e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| popular ||| 0.00303951 0.0031397 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 658 37521 +los ||| population now depends ||| 0.25 0.0026714 2.66517e-05 1.12908e-12 2.718 ||| 0-0 ||| 4 37521 +los ||| population now ||| 0.166667 0.0026714 2.66517e-05 4.34262e-08 2.718 ||| 0-0 ||| 6 37521 +los ||| population ||| 0.00211566 0.0026714 7.99552e-05 2.92e-05 2.718 ||| 0-0 ||| 1418 37521 +los ||| possible cell ||| 1 0.0738636 2.66517e-05 5.01193e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| possible ||| 0.000881834 0.0007968 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1134 37521 +los ||| possibly the ||| 0.111111 0.145844 2.66517e-05 3.7862e-05 2.718 ||| 0-1 ||| 9 37521 +los ||| postponing a reckoning ||| 0.125 0.0277778 2.66517e-05 1.52198e-11 2.718 ||| 0-0 ||| 8 37521 +los ||| postponing a ||| 0.0833333 0.0277778 2.66517e-05 3.9025e-07 2.718 ||| 0-0 ||| 12 37521 +los ||| postponing ||| 0.0294118 0.0277778 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 34 37521 +los ||| potentially ||| 0.00881057 0.008547 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 227 37521 +los ||| poverty makes medical ||| 1 0.0135593 2.66517e-05 4.5159e-13 2.718 ||| 0-2 ||| 1 37521 +los ||| powerful ||| 0.00243605 0.0026076 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 821 37521 +los ||| practitioners ||| 0.0333333 0.171429 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 30 37521 +los ||| premature ||| 0.0188679 0.016129 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 53 37521 +los ||| prepare the Western Balkans ||| 1 0.145844 2.66517e-05 1.76949e-15 2.718 ||| 0-1 ||| 1 37521 +los ||| prepare the Western ||| 1 0.145844 2.66517e-05 2.72229e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| prepare the ||| 0.0909091 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-1 ||| 11 37521 +los ||| prescribed limits ||| 0.5 0.0985915 2.66517e-05 5.3144e-09 2.718 ||| 0-1 ||| 2 37521 +los ||| presidents ||| 0.0107527 0.30303 5.33035e-05 0.0006813 2.718 ||| 0-0 ||| 186 37521 +los ||| pressure from the ||| 0.0588235 0.145844 2.66517e-05 3.28462e-08 2.718 ||| 0-2 ||| 17 37521 +los ||| prices , ||| 0.00917431 0.438459 2.66517e-05 0.00301017 2.718 ||| 0-0 ||| 109 37521 +los ||| prices enough ||| 1 0.438459 2.66517e-05 4.30592e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| prices ||| 0.00512383 0.438459 0.000319821 0.0147362 2.718 ||| 0-0 ||| 2342 37521 +los ||| primary responsibility ||| 0.047619 0.0106762 2.66517e-05 2.08488e-09 2.718 ||| 0-0 ||| 21 37521 +los ||| primary ||| 0.0103806 0.0106762 7.99552e-05 2.92e-05 2.718 ||| 0-0 ||| 289 37521 +los ||| prime asset ||| 1 0.182519 2.66517e-05 2.15469e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| principles ||| 0.00259067 0.167053 2.66517e-05 0.0007008 2.718 ||| 0-0 ||| 386 37521 +los ||| prisoners ||| 0.00515464 0.285068 2.66517e-05 0.0006132 2.718 ||| 0-0 ||| 194 37521 +los ||| private ||| 0.00142857 0.0031153 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 1400 37521 +los ||| privately ||| 0.0243902 0.0526316 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 41 37521 +los ||| probable ||| 0.037037 0.0869565 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 27 37521 +los ||| problems are always tempting , the only ||| 1 0.0729943 2.66517e-05 7.89715e-22 2.718 ||| 0-5 0-6 ||| 1 37521 +los ||| problems with ||| 0.0222222 0.0012991 2.66517e-05 3.53978e-08 2.718 ||| 0-1 ||| 45 37521 +los ||| procedures ||| 0.00740741 0.242647 2.66517e-05 0.0003212 2.718 ||| 0-0 ||| 135 37521 +los ||| produce the ||| 0.0333333 0.145844 2.66517e-05 5.18224e-05 2.718 ||| 0-1 ||| 30 37521 +los ||| produced alternatives ||| 0.2 0.0083333 2.66517e-05 3.796e-10 2.718 ||| 0-0 ||| 5 37521 +los ||| produced ||| 0.00911854 0.0083333 7.99552e-05 2.92e-05 2.718 ||| 0-0 ||| 329 37521 +los ||| producers ||| 0.0078125 0.369281 5.33035e-05 0.0010999 2.718 ||| 0-0 ||| 256 37521 +los ||| products , higher oil prices ||| 0.5 0.438459 2.66517e-05 3.09492e-15 2.718 ||| 0-4 ||| 2 37521 +los ||| products ||| 0.0035461 0.0068182 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 564 37521 +los ||| professionals ||| 0.00900901 0.227273 2.66517e-05 0.0002433 2.718 ||| 0-0 ||| 111 37521 +los ||| profitable ||| 0.0120482 0.0111111 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 83 37521 +los ||| programs ||| 0.00240674 0.223603 5.33035e-05 0.001752 2.718 ||| 0-0 ||| 831 37521 +los ||| progress , ||| 0.025641 0.0642487 2.66517e-05 0.000123277 2.718 ||| 0-0 ||| 39 37521 +los ||| progress ||| 0.0013624 0.0642487 2.66517e-05 0.0006035 2.718 ||| 0-0 ||| 734 37521 +los ||| projects ||| 0.00164474 0.0027778 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 608 37521 +los ||| property ownership ||| 0.25 0.0917266 2.66517e-05 1.93596e-08 2.718 ||| 0-0 ||| 4 37521 +los ||| property ||| 0.00867052 0.0917266 7.99552e-05 0.0004964 2.718 ||| 0-0 ||| 346 37521 +los ||| prospective ||| 0.0434783 0.111111 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 23 37521 +los ||| protect the ||| 0.0125 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-1 ||| 80 37521 +los ||| protect ||| 0.00197628 0.001938 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 506 37521 +los ||| protesters ||| 0.00724638 0.239583 2.66517e-05 0.0004477 2.718 ||| 0-0 ||| 138 37521 +los ||| providers ||| 0.0217391 0.204082 2.66517e-05 0.0001947 2.718 ||| 0-0 ||| 46 37521 +los ||| provides ||| 0.00286533 0.002681 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 349 37521 +los ||| proxy ||| 0.027027 0.015625 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 37 37521 +los ||| public . if the ||| 1 0.145844 2.66517e-05 3.14857e-10 2.718 ||| 0-3 ||| 1 37521 +los ||| public administrations ||| 0.5 0.0571429 2.66517e-05 1.36422e-08 2.718 ||| 0-1 ||| 2 37521 +los ||| public-goods ||| 0.0833333 0.333333 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 12 37521 +los ||| pundits ||| 0.0192308 0.228916 2.66517e-05 0.0001849 2.718 ||| 0-0 ||| 52 37521 +los ||| punished ||| 0.0192308 0.0266667 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 52 37521 +los ||| pursuing the ||| 0.0555556 0.145844 2.66517e-05 1.59548e-05 2.718 ||| 0-1 ||| 18 37521 +los ||| pushed higher ||| 0.5 0.0103205 2.66517e-05 1.44037e-08 2.718 ||| 0-1 ||| 2 37521 +los ||| pushed the share ||| 0.5 0.145844 2.66517e-05 3.88161e-09 2.718 ||| 0-1 ||| 2 37521 +los ||| pushed the ||| 0.0454545 0.145844 2.66517e-05 2.39015e-05 2.718 ||| 0-1 ||| 22 37521 +los ||| put the ||| 0.0125 0.145844 2.66517e-05 0.000370612 2.718 ||| 0-1 ||| 80 37521 +los ||| quality-management ||| 1 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| racist ||| 0.025 0.0222222 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 40 37521 +los ||| radicals ||| 0.015873 0.3 2.66517e-05 0.000292 2.718 ||| 0-0 ||| 63 37521 +los ||| raise our ||| 0.333333 0.0100503 2.66517e-05 2.04614e-08 2.718 ||| 0-0 ||| 3 37521 +los ||| raise the ||| 0.0138889 0.145844 2.66517e-05 2.19072e-05 2.718 ||| 0-1 ||| 72 37521 +los ||| raise ||| 0.00857143 0.0100503 7.99552e-05 3.89e-05 2.718 ||| 0-0 ||| 350 37521 +los ||| raised again this summer if the United ||| 1 0.145844 2.66517e-05 1.02258e-22 2.718 ||| 0-5 ||| 1 37521 +los ||| raised again this summer if the ||| 1 0.145844 2.66517e-05 2.76224e-19 2.718 ||| 0-5 ||| 1 37521 +los ||| random ||| 0.0606061 0.0465116 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 33 37521 +los ||| raters ||| 0.0714286 0.416667 2.66517e-05 0.000146 2.718 ||| 0-0 ||| 14 37521 +los ||| rates ; ||| 0.5 0.0458534 2.66517e-05 2.79551e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| rates ||| 0.000939408 0.0458534 5.33035e-05 0.0015768 2.718 ||| 0-0 ||| 2129 37521 +los ||| rating the ||| 0.5 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-1 ||| 2 37521 +los ||| reach Bolivia ||| 1 0.0117647 2.66517e-05 3.5451e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| real " sector and the ||| 1 0.145844 2.66517e-05 2.04203e-13 2.718 ||| 0-4 ||| 1 37521 +los ||| real GDP shrink by ||| 0.5 0.0081082 2.66517e-05 6.04436e-16 2.718 ||| 0-3 ||| 2 37521 +los ||| real attachments ||| 1 0.5 2.66517e-05 8.91184e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| real ||| 0.00511771 0.0175439 0.000266517 0.0003407 2.718 ||| 0-0 ||| 1954 37521 +los ||| reaping the biggest ||| 0.333333 0.145844 2.66517e-05 2.59265e-11 2.718 ||| 0-1 ||| 3 37521 +los ||| reaping the ||| 0.166667 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 6 37521 +los ||| reason ||| 0.000931966 0.0009158 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1073 37521 +los ||| rebel ||| 0.0185185 0.0357143 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 54 37521 +los ||| recalcitrant ||| 0.0666667 0.105263 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 15 37521 +los ||| recall the ||| 0.0416667 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-1 ||| 24 37521 +los ||| recalls the ||| 0.142857 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 7 37521 +los ||| received in the ||| 0.2 0.145844 2.66517e-05 3.36612e-07 2.718 ||| 0-2 ||| 5 37521 +los ||| recent ||| 0.00471698 0.163831 0.000266517 0.0040296 2.718 ||| 0-0 ||| 2120 37521 +los ||| recently advanced to the ||| 0.333333 0.145844 2.66517e-05 3.9472e-10 2.718 ||| 0-3 ||| 3 37521 +los ||| recipients ||| 0.0357143 0.3 5.33035e-05 0.0001752 2.718 ||| 0-0 ||| 56 37521 +los ||| record ||| 0.00271739 0.0049628 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 368 37521 +los ||| recording ||| 0.181818 0.153846 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 11 37521 +los ||| records ||| 0.0108696 0.130435 2.66517e-05 0.0001168 2.718 ||| 0-0 ||| 92 37521 +los ||| red ||| 0.0126582 0.0192308 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 79 37521 +los ||| reduced support for ||| 1 0.0020833 2.66517e-05 1.31922e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| reduced support ||| 1 0.0020833 2.66517e-05 2.77129e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| reduced ||| 0.00246305 0.0020833 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 406 37521 +los ||| reducing spending on ||| 1 0.0008407 2.66517e-05 1.18647e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| refugees ||| 0.0103627 0.285714 5.33035e-05 0.0006619 2.718 ||| 0-0 ||| 193 37521 +los ||| regard ||| 0.00502513 0.0034965 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 199 37521 +los ||| regarding them ||| 0.5 0.0948535 2.66517e-05 2.33623e-07 2.718 ||| 0-1 ||| 2 37521 +los ||| regimens ||| 0.125 0.333333 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| regimes to argue ||| 1 0.268344 2.66517e-05 1.06783e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| regimes to ||| 0.2 0.268344 2.66517e-05 0.000102775 2.718 ||| 0-0 ||| 5 37521 +los ||| regimes ||| 0.00712589 0.268344 7.99552e-05 0.0012459 2.718 ||| 0-0 ||| 421 37521 +los ||| regular basis , brought the ||| 1 0.145844 2.66517e-05 3.04166e-13 2.718 ||| 0-4 ||| 1 37521 +los ||| regulators ||| 0.00806452 0.353081 5.33035e-05 0.0014503 2.718 ||| 0-0 ||| 248 37521 +los ||| regulatory ||| 0.0028169 0.0059172 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 355 37521 +los ||| religious freedom must be mutual ||| 1 0.0309735 2.66517e-05 1.21113e-18 2.718 ||| 0-4 ||| 1 37521 +los ||| relying on ||| 0.0138889 0.0121951 2.66517e-05 3.80482e-08 2.718 ||| 0-0 ||| 72 37521 +los ||| relying ||| 0.0243902 0.0121951 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 41 37521 +los ||| removed , ||| 0.125 0.0227273 2.66517e-05 5.9647e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| removed ||| 0.0125 0.0227273 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 80 37521 +los ||| render the ||| 0.142857 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-1 ||| 7 37521 +los ||| repeated unsuccessful attempts to ||| 1 0.24933 2.66517e-05 4.73222e-14 2.718 ||| 0-2 ||| 1 37521 +los ||| repeated unsuccessful attempts ||| 1 0.24933 2.66517e-05 5.7367e-13 2.718 ||| 0-2 ||| 1 37521 +los ||| repeated ||| 0.0168067 0.0441176 5.33035e-05 5.84e-05 2.718 ||| 0-0 ||| 119 37521 +los ||| reports ||| 0.0138889 0.160584 0.000106607 0.0004283 2.718 ||| 0-0 ||| 288 37521 +los ||| represent the ||| 0.027027 0.145844 2.66517e-05 1.59548e-05 2.718 ||| 0-1 ||| 37 37521 +los ||| represent ||| 0.00492611 0.0085106 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 203 37521 +los ||| represented them ||| 1 0.0948535 2.66517e-05 1.0401e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| require the ||| 0.0344828 0.145844 2.66517e-05 4.3845e-05 2.718 ||| 0-1 ||| 29 37521 +los ||| residents ||| 0.0194175 0.356643 5.33035e-05 0.0004964 2.718 ||| 0-0 ||| 103 37521 +los ||| resources ||| 0.00216294 0.0475763 7.99552e-05 0.0005159 2.718 ||| 0-0 ||| 1387 37521 +los ||| responsible ||| 0.00578035 0.0228426 2.66517e-05 8.76e-05 2.718 ||| 0-0 ||| 173 37521 +los ||| restaurants ||| 0.0740741 0.333333 5.33035e-05 0.0001265 2.718 ||| 0-0 ||| 27 37521 +los ||| restrict the ||| 0.166667 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-1 ||| 6 37521 +los ||| restrict welfare ||| 0.5 0.0338983 2.66517e-05 3.8025e-10 2.718 ||| 0-0 ||| 2 37521 +los ||| restrict ||| 0.0444444 0.0338983 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 45 37521 +los ||| results of the ||| 0.0526316 0.145844 2.66517e-05 9.69003e-07 2.718 ||| 0-2 ||| 19 37521 +los ||| retail ||| 0.00943396 0.027027 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 106 37521 +los ||| retain certain inalienable rights , including the ||| 1 0.145844 2.66517e-05 1.08661e-22 2.718 ||| 0-6 ||| 1 37521 +los ||| retained any material ||| 1 0.0084211 2.66517e-05 4.60525e-14 2.718 ||| 0-1 ||| 1 37521 +los ||| retained any ||| 1 0.0084211 2.66517e-05 1.77125e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| retirees their ||| 1 0.229403 2.66517e-05 5.29319e-07 2.718 ||| 0-0 0-1 ||| 1 37521 +los ||| revenues ||| 0.00333333 0.264423 2.66517e-05 0.0010707 2.718 ||| 0-0 ||| 300 37521 +los ||| revive the economy ||| 0.166667 0.145844 2.66517e-05 1.74825e-09 2.718 ||| 0-1 ||| 6 37521 +los ||| revive the ||| 0.03125 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-1 ||| 32 37521 +los ||| revoke contracts ||| 1 0.263889 2.66517e-05 3.6062e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| revolutionary , ||| 0.0769231 0.0055556 2.66517e-05 1.98142e-06 2.718 ||| 0-0 ||| 13 37521 +los ||| revolutionary ||| 0.005 0.0055556 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 200 37521 +los ||| rewarded the ||| 0.5 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-1 ||| 2 37521 +los ||| rich ||| 0.00111732 0.0634249 2.66517e-05 0.000584 2.718 ||| 0-0 ||| 895 37521 +los ||| rights , including the ||| 0.5 0.145844 2.66517e-05 1.65033e-09 2.718 ||| 0-3 ||| 2 37521 +los ||| rights ||| 0.000477783 0.0680597 2.66517e-05 0.0011096 2.718 ||| 0-0 ||| 2093 37521 +los ||| rising ||| 0.0011534 0.0230769 2.66517e-05 0.0002628 2.718 ||| 0-0 ||| 867 37521 +los ||| risks ||| 0.00260191 0.103803 7.99552e-05 0.0009831 2.718 ||| 0-0 ||| 1153 37521 +los ||| roads ||| 0.00862069 0.0629921 2.66517e-05 7.79e-05 2.718 ||| 0-0 ||| 116 37521 +los ||| rocket ||| 0.0285714 0.0701754 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 35 37521 +los ||| roll the ||| 0.5 0.145844 2.66517e-05 1.39604e-05 2.718 ||| 0-1 ||| 2 37521 +los ||| rooms ||| 0.0434783 0.0645161 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 23 37521 +los ||| round the flag ||| 1 0.145844 2.66517e-05 1.68323e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| round the ||| 0.111111 0.145844 2.66517e-05 2.58959e-05 2.718 ||| 0-1 ||| 9 37521 +los ||| route them on ||| 0.25 0.0948535 2.66517e-05 5.09976e-10 2.718 ||| 0-1 ||| 4 37521 +los ||| route them ||| 0.25 0.0948535 2.66517e-05 1.30013e-07 2.718 ||| 0-1 ||| 4 37521 +los ||| rule the waves ||| 0.5 0.145844 2.66517e-05 1.96882e-09 2.718 ||| 0-1 ||| 2 37521 +los ||| rule the ||| 0.0833333 0.145844 2.66517e-05 7.57239e-05 2.718 ||| 0-1 ||| 12 37521 +los ||| rulers ||| 0.00393701 0.336634 2.66517e-05 0.0013237 2.718 ||| 0-0 ||| 254 37521 +los ||| ruling generals ||| 0.1 0.311111 2.66517e-05 7.43516e-08 2.718 ||| 0-1 ||| 10 37521 +los ||| run their course ||| 0.2 0.0188051 2.66517e-05 4.47269e-10 2.718 ||| 0-1 ||| 5 37521 +los ||| run their ||| 0.1 0.0188051 2.66517e-05 1.04356e-06 2.718 ||| 0-1 ||| 10 37521 +los ||| sacrosanct ||| 0.0833333 0.0625 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 12 37521 +los ||| salty ocean ||| 1 0.214286 2.66517e-05 1.1388e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| sanctioning ||| 0.111111 0.125 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 9 37521 +los ||| saving them ||| 1 0.0948535 2.66517e-05 1.56016e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| say , by ||| 0.0769231 0.0081082 2.66517e-05 1.37677e-07 2.718 ||| 0-2 ||| 13 37521 +los ||| scenarios ||| 0.011236 0.009901 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 89 37521 +los ||| schemes ||| 0.0155039 0.182857 5.33035e-05 0.0003115 2.718 ||| 0-0 ||| 129 37521 +los ||| school ||| 0.0108992 0.0176211 0.000106607 7.79e-05 2.718 ||| 0-0 ||| 367 37521 +los ||| schoolchildren ||| 0.0666667 0.259259 2.66517e-05 6.81e-05 2.718 ||| 0-0 ||| 15 37521 +los ||| scientific ||| 0.00188324 0.002079 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 531 37521 +los ||| scientists ||| 0.00779221 0.330206 7.99552e-05 0.0017131 2.718 ||| 0-0 ||| 385 37521 +los ||| sclerotic companies ||| 1 0.0526316 2.66517e-05 1.00783e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| sclerotic ||| 0.0769231 0.0526316 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 13 37521 +los ||| score at the very bottom ||| 0.333333 0.145844 2.66517e-05 2.20687e-15 2.718 ||| 0-2 ||| 3 37521 +los ||| score at the very ||| 0.333333 0.145844 2.66517e-05 1.99897e-11 2.718 ||| 0-2 ||| 3 37521 +los ||| score at the ||| 0.333333 0.145844 2.66517e-05 2.36761e-08 2.718 ||| 0-2 ||| 3 37521 +los ||| screening ||| 0.047619 0.139535 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 21 37521 +los ||| second-generation ||| 0.25 0.2 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 4 37521 +los ||| second-line ||| 0.666667 0.333333 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 3 37521 +los ||| second-round ||| 0.0909091 0.105263 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 11 37521 +los ||| secrets ||| 0.0232558 0.146342 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 43 37521 +los ||| sector and the ||| 1 0.145844 2.66517e-05 1.33974e-07 2.718 ||| 0-2 ||| 1 37521 +los ||| sectors ||| 0.00238095 0.0589888 2.66517e-05 0.0002044 2.718 ||| 0-0 ||| 420 37521 +los ||| securities ||| 0.0034965 0.140845 2.66517e-05 0.0003893 2.718 ||| 0-0 ||| 286 37521 +los ||| security schemes ||| 0.5 0.182857 2.66517e-05 3.84391e-08 2.718 ||| 0-1 ||| 2 37521 +los ||| seek learning ||| 0.5 0.0102564 2.66517e-05 3.67185e-09 2.718 ||| 0-1 ||| 2 37521 +los ||| seeking out the ||| 1 0.145844 2.66517e-05 7.07691e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| self-employment ||| 0.5 0.166667 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| sending financiers ||| 0.142857 0.236842 2.66517e-05 5.694e-09 2.718 ||| 0-1 ||| 7 37521 +los ||| senior ||| 0.0144928 0.0899654 7.99552e-05 0.0002531 2.718 ||| 0-0 ||| 207 37521 +los ||| sensitive ||| 0.00763359 0.0082645 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 131 37521 +los ||| sensitivity to Jordan 's ||| 1 0.0363459 2.66517e-05 2.73009e-13 2.718 ||| 0-3 ||| 1 37521 +los ||| sentiment ||| 0.012987 0.0778443 5.33035e-05 0.0001265 2.718 ||| 0-0 ||| 154 37521 +los ||| sentiments ||| 0.0140845 0.176471 2.66517e-05 0.000146 2.718 ||| 0-0 ||| 71 37521 +los ||| separates ||| 0.0588235 0.08 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 17 37521 +los ||| serf-owning ||| 1 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| serious human ||| 1 0.161276 2.66517e-05 7.46334e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| serve ||| 0.00411523 0.0026455 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 243 37521 +los ||| services and ||| 0.0294118 0.199248 2.66517e-05 1.73274e-05 2.718 ||| 0-0 ||| 34 37521 +los ||| services ||| 0.00174216 0.199248 5.33035e-05 0.0020635 2.718 ||| 0-0 ||| 1148 37521 +los ||| servicing ||| 0.0263158 0.05 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 38 37521 +los ||| sets them apart ||| 1 0.0948535 2.66517e-05 4.82427e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| sets them ||| 1 0.0948535 2.66517e-05 2.85629e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| severely handicapped the ||| 0.333333 0.145844 2.66517e-05 6.48164e-11 2.718 ||| 0-2 ||| 3 37521 +los ||| sexuality ||| 0.0666667 0.0454545 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 15 37521 +los ||| shaping the ||| 0.0416667 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-1 ||| 24 37521 +los ||| shareholder ||| 0.0344828 0.397727 2.66517e-05 0.0003407 2.718 ||| 0-0 ||| 29 37521 +los ||| shareholders ||| 0.00431034 0.363636 2.66517e-05 0.001168 2.718 ||| 0-0 ||| 232 37521 +los ||| sheets ||| 0.0119048 0.135294 2.66517e-05 0.0002239 2.718 ||| 0-0 ||| 84 37521 +los ||| shocks ||| 0.00947867 0.116608 5.33035e-05 0.0003212 2.718 ||| 0-0 ||| 211 37521 +los ||| shortage of ||| 0.0238095 0.000189 2.66517e-05 1.32656e-08 2.718 ||| 0-1 ||| 42 37521 +los ||| shows the ||| 0.0833333 0.145844 2.66517e-05 3.18789e-05 2.718 ||| 0-1 ||| 12 37521 +los ||| shrink by ||| 0.142857 0.0081082 2.66517e-05 4.35266e-08 2.718 ||| 0-1 ||| 7 37521 +los ||| similarly , the ||| 0.011236 0.145844 2.66517e-05 2.44432e-06 2.718 ||| 0-2 ||| 89 37521 +los ||| simmering feelings ||| 1 0.115044 2.66517e-05 2.46675e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| since 1860 , when the industrial revolution ||| 1 0.145844 2.66517e-05 2.59767e-23 2.718 ||| 0-4 ||| 1 37521 +los ||| since 1860 , when the industrial ||| 1 0.145844 2.66517e-05 4.00257e-19 2.718 ||| 0-4 ||| 1 37521 +los ||| since 1860 , when the ||| 1 0.145844 2.66517e-05 1.53945e-14 2.718 ||| 0-4 ||| 1 37521 +los ||| since we need the innovation ||| 1 0.145844 2.66517e-05 2.55825e-16 2.718 ||| 0-3 ||| 1 37521 +los ||| since we need the ||| 1 0.145844 2.66517e-05 3.93577e-11 2.718 ||| 0-3 ||| 1 37521 +los ||| sites ||| 0.00675676 0.188811 2.66517e-05 0.0002628 2.718 ||| 0-0 ||| 148 37521 +los ||| skeletons of the specimen and ||| 0.5 0.145844 2.66517e-05 2.94081e-15 2.718 ||| 0-2 ||| 2 37521 +los ||| skeletons of the specimen ||| 0.5 0.145844 2.66517e-05 3.50217e-13 2.718 ||| 0-2 ||| 2 37521 +los ||| skeletons of the ||| 0.5 0.145844 2.66517e-05 5.38795e-08 2.718 ||| 0-2 ||| 2 37521 +los ||| small ||| 0.00247525 0.0026293 7.99552e-05 2.92e-05 2.718 ||| 0-0 ||| 1212 37521 +los ||| smaller ||| 0.0113314 0.0408163 0.000106607 0.0001947 2.718 ||| 0-0 ||| 353 37521 +los ||| smooth out the ||| 0.25 0.145844 2.66517e-05 8.84614e-09 2.718 ||| 0-2 ||| 4 37521 +los ||| so frightened ||| 1 0.075 2.66517e-05 6.58022e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| so put the ||| 1 0.145844 2.66517e-05 8.35173e-07 2.718 ||| 0-2 ||| 1 37521 +los ||| so the ||| 0.00923077 0.145844 7.99552e-05 0.000691426 2.718 ||| 0-1 ||| 325 37521 +los ||| so-called ||| 0.0021645 0.0640138 2.66517e-05 0.0003601 2.718 ||| 0-0 ||| 462 37521 +los ||| social ||| 0.000969932 0.001506 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 2062 37521 +los ||| software ' ||| 1 0.03125 2.66517e-05 3.20847e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| software ||| 0.00757576 0.03125 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 132 37521 +los ||| soldiers ||| 0.00374532 0.188356 2.66517e-05 0.0005353 2.718 ||| 0-0 ||| 267 37521 +los ||| solving , ||| 0.1 0.0547945 2.66517e-05 7.94613e-06 2.718 ||| 0-0 ||| 10 37521 +los ||| solving ||| 0.0133333 0.0547945 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 75 37521 +los ||| some of the ||| 0.00236967 0.145844 2.66517e-05 5.92178e-06 2.718 ||| 0-2 ||| 422 37521 +los ||| somehow emerging ||| 1 0.0313316 2.66517e-05 9.1104e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| sort the ||| 1 0.145844 2.66517e-05 3.18789e-05 2.718 ||| 0-1 ||| 1 37521 +los ||| sought the ||| 0.1 0.145844 2.66517e-05 4.18507e-05 2.718 ||| 0-1 ||| 10 37521 +los ||| sound ||| 0.0037594 0.0033445 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 266 37521 +los ||| spawned the ||| 0.5 0.145844 5.33035e-05 3.9887e-06 2.718 ||| 0-1 ||| 4 37521 +los ||| special ||| 0.00674157 0.009828 7.99552e-05 3.89e-05 2.718 ||| 0-0 ||| 445 37521 +los ||| spend the ||| 0.0714286 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-1 ||| 14 37521 +los ||| spending on ||| 0.0140845 0.0008407 2.66517e-05 2.28167e-08 2.718 ||| 0-1 ||| 71 37521 +los ||| spent-fuel ||| 0.125 0.0454545 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| sprawling ||| 0.125 0.176471 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 16 37521 +los ||| stand in the ||| 0.0625 0.145844 2.66517e-05 1.34692e-06 2.718 ||| 0-2 ||| 16 37521 +los ||| standard ||| 0.00321543 0.0059701 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 311 37521 +los ||| standards that created the ||| 0.5 0.145844 2.66517e-05 2.32475e-11 2.718 ||| 0-3 ||| 2 37521 +los ||| standards ||| 0.00240674 0.187773 5.33035e-05 0.0012556 2.718 ||| 0-0 ||| 831 37521 +los ||| staple ||| 0.0869565 0.0909091 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 23 37521 +los ||| started declining . ||| 1 0.0173913 2.66517e-05 2.26629e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| started declining ||| 1 0.0173913 2.66517e-05 4.92896e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| starting ||| 0.00384615 0.0038168 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 260 37521 +los ||| state ||| 0.000691563 0.0015163 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 2892 37521 +los ||| state-funded ||| 0.2 0.105263 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 5 37521 +los ||| states of the Group ||| 1 0.145844 2.66517e-05 7.694e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| states of the ||| 0.25 0.145844 2.66517e-05 5.91846e-07 2.718 ||| 0-2 ||| 4 37521 +los ||| states ||| 0.00411711 0.195514 0.000239866 0.0044968 2.718 ||| 0-0 ||| 2186 37521 +los ||| stemming ||| 0.037037 0.025641 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 27 37521 +los ||| stock market ||| 0.00396825 0.0181624 2.66517e-05 2.68772e-08 2.718 ||| 0-0 ||| 252 37521 +los ||| stock ||| 0.00531915 0.0181624 7.99552e-05 0.0001655 2.718 ||| 0-0 ||| 564 37521 +los ||| stop the ||| 0.0136986 0.145844 2.66517e-05 4.98281e-05 2.718 ||| 0-1 ||| 73 37521 +los ||| stretch the ||| 0.333333 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-1 ||| 3 37521 +los ||| strike ||| 0.00657895 0.0062893 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 152 37521 +los ||| struggling ||| 0.017094 0.0123457 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 117 37521 +los ||| students largely ||| 0.333333 0.286667 2.66517e-05 1.95748e-07 2.718 ||| 0-0 ||| 3 37521 +los ||| students ||| 0.00773196 0.286667 7.99552e-05 0.0012556 2.718 ||| 0-0 ||| 388 37521 +los ||| studies ||| 0.00334448 0.230769 2.66517e-05 0.0008176 2.718 ||| 0-0 ||| 299 37521 +los ||| stunning $ ||| 0.5 0.0327755 2.66517e-05 1.18937e-08 2.718 ||| 0-1 ||| 2 37521 +los ||| subjects ||| 0.00917431 0.102564 2.66517e-05 0.0001168 2.718 ||| 0-0 ||| 109 37521 +los ||| submit their ||| 1 0.0188051 2.66517e-05 4.82099e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| subsequent ||| 0.00840336 0.0864198 2.66517e-05 0.0001363 2.718 ||| 0-0 ||| 119 37521 +los ||| subsidies ||| 0.002331 0.233955 2.66517e-05 0.0010999 2.718 ||| 0-0 ||| 429 37521 +los ||| subsidized ||| 0.02 0.0833333 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 50 37521 +los ||| successes , ||| 0.111111 0.0952381 2.66517e-05 2.38588e-05 2.718 ||| 0-0 ||| 9 37521 +los ||| successes ||| 0.00925926 0.0952381 2.66517e-05 0.0001168 2.718 ||| 0-0 ||| 108 37521 +los ||| successful ||| 0.0108696 0.0107858 0.000186562 6.81e-05 2.718 ||| 0-0 ||| 644 37521 +los ||| successor ||| 0.00625 0.0067114 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 160 37521 +los ||| successors recalls the ||| 1 0.145844 2.66517e-05 1.29633e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| such filings ||| 1 0.166667 2.66517e-05 2.05359e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| such memories ||| 1 0.244094 2.66517e-05 6.38729e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| such ||| 0.00021164 0.0001382 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 4725 37521 +los ||| sufferers ||| 0.0526316 0.133333 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 19 37521 +los ||| suicide ||| 0.00900901 0.0702703 2.66517e-05 0.0001265 2.718 ||| 0-0 ||| 111 37521 +los ||| summer if the United States government is ||| 1 0.145844 2.66517e-05 2.21302e-21 2.718 ||| 0-2 ||| 1 37521 +los ||| summer if the United States government ||| 1 0.145844 2.66517e-05 1.34266e-19 2.718 ||| 0-2 ||| 1 37521 +los ||| summer if the United States ||| 1 0.145844 2.66517e-05 2.68478e-16 2.718 ||| 0-2 ||| 1 37521 +los ||| summer if the United ||| 1 0.145844 2.66517e-05 9.39719e-13 2.718 ||| 0-2 ||| 1 37521 +los ||| summer if the ||| 1 0.145844 2.66517e-05 2.53841e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| supervise the standard ||| 0.333333 0.145844 2.66517e-05 2.07213e-10 2.718 ||| 0-1 ||| 3 37521 +los ||| supervise the ||| 0.166667 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-1 ||| 6 37521 +los ||| supervising individual firms ||| 1 0.0406015 2.66517e-05 1.21965e-13 2.718 ||| 0-1 ||| 1 37521 +los ||| supervising individual ||| 1 0.0406015 2.66517e-05 1.7082e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| supplies ||| 0.00295858 0.0804598 2.66517e-05 0.0002044 2.718 ||| 0-0 ||| 338 37521 +los ||| support them , ||| 0.5 0.0948535 2.66517e-05 2.33464e-07 2.718 ||| 0-1 ||| 2 37521 +los ||| support them ||| 0.05 0.0948535 2.66517e-05 1.14291e-06 2.718 ||| 0-1 ||| 20 37521 +los ||| supporters ||| 0.00803213 0.198653 5.33035e-05 0.0005743 2.718 ||| 0-0 ||| 249 37521 +los ||| surprise , occasionally led to fiscal imbalances ||| 1 0.36692 2.66517e-05 2.48075e-22 2.718 ||| 0-6 ||| 1 37521 +los ||| surrender the ||| 0.2 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-1 ||| 5 37521 +los ||| surveys ||| 0.0133333 0.0761905 2.66517e-05 7.79e-05 2.718 ||| 0-0 ||| 75 37521 +los ||| survive the threat ||| 0.0666667 0.145844 2.66517e-05 8.41615e-10 2.718 ||| 0-1 ||| 15 37521 +los ||| survive the ||| 0.0294118 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-1 ||| 34 37521 +los ||| survivors ||| 0.0188679 0.278689 2.66517e-05 0.0001655 2.718 ||| 0-0 ||| 53 37521 +los ||| suspects ||| 0.037037 0.2 5.33035e-05 0.0001071 2.718 ||| 0-0 ||| 54 37521 +los ||| swimming pool ||| 1 0.0138889 2.66517e-05 6.305e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| swinging their ||| 0.25 0.0188051 2.66517e-05 1.607e-08 2.718 ||| 0-1 ||| 4 37521 +los ||| swings ||| 0.0392157 0.160919 5.33035e-05 0.0001363 2.718 ||| 0-0 ||| 51 37521 +los ||| switch from ||| 0.142857 0.0001765 2.66517e-05 9.49e-10 2.718 ||| 0-1 ||| 7 37521 +los ||| systems ||| 0.00441014 0.248715 0.000106607 0.0023555 2.718 ||| 0-0 ||| 907 37521 +los ||| tackle the ||| 0.0454545 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-1 ||| 22 37521 +los ||| tackled ||| 0.0526316 0.0294118 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 19 37521 +los ||| tag along behind the ||| 0.5 0.145844 2.66517e-05 3.53224e-13 2.718 ||| 0-3 ||| 2 37521 +los ||| take the lead in ||| 0.0454545 0.145844 2.66517e-05 2.1631e-09 2.718 ||| 0-1 ||| 22 37521 +los ||| take the lead ||| 0.0277778 0.145844 2.66517e-05 1.40777e-07 2.718 ||| 0-1 ||| 36 37521 +los ||| take the ||| 0.00662252 0.145844 2.66517e-05 0.000270986 2.718 ||| 0-1 ||| 151 37521 +los ||| take up the ||| 0.0869565 0.145844 5.33035e-05 8.46479e-07 2.718 ||| 0-2 ||| 23 37521 +los ||| talent-friendly ||| 1 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| talk ||| 0.00357143 0.0125945 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 280 37521 +los ||| tanks , ||| 0.0769231 0.244681 2.66517e-05 4.57362e-05 2.718 ||| 0-0 ||| 13 37521 +los ||| tanks ||| 0.0102041 0.244681 2.66517e-05 0.0002239 2.718 ||| 0-0 ||| 98 37521 +los ||| target the ||| 0.047619 0.145844 2.66517e-05 2.19072e-05 2.718 ||| 0-1 ||| 21 37521 +los ||| targeting the ||| 0.181818 0.145844 5.33035e-05 1.79185e-05 2.718 ||| 0-1 ||| 11 37521 +los ||| targeting ||| 0.0107527 0.0346821 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 93 37521 +los ||| tax ||| 0.00581395 0.0502392 0.000239866 0.0006132 2.718 ||| 0-0 ||| 1548 37521 +los ||| taxes will fall ||| 1 0.300654 2.66517e-05 3.51615e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| taxes will ||| 1 0.300654 2.66517e-05 1.54692e-05 2.718 ||| 0-0 ||| 1 37521 +los ||| taxes ||| 0.00463679 0.300654 7.99552e-05 0.0022387 2.718 ||| 0-0 ||| 647 37521 +los ||| taxpayers ||| 0.00961538 0.453757 5.33035e-05 0.0015281 2.718 ||| 0-0 ||| 208 37521 +los ||| teaching ||| 0.0111111 0.0133333 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 90 37521 +los ||| teams ||| 0.0075188 0.108911 2.66517e-05 0.0001071 2.718 ||| 0-0 ||| 133 37521 +los ||| tell where ||| 0.25 0.0003163 2.66517e-05 1.19698e-09 2.718 ||| 0-1 ||| 4 37521 +los ||| tell you that the ||| 0.5 0.145844 2.66517e-05 5.0423e-10 2.718 ||| 0-3 ||| 2 37521 +los ||| tempt them ||| 0.5 0.0948535 2.66517e-05 2.60026e-08 2.718 ||| 0-1 ||| 2 37521 +los ||| tempting , the only certain way to ||| 1 0.0729943 2.66517e-05 1.93e-19 2.718 ||| 0-2 0-3 ||| 1 37521 +los ||| tempting , the only certain way ||| 1 0.0729943 2.66517e-05 2.33968e-18 2.718 ||| 0-2 0-3 ||| 1 37521 +los ||| tempting , the only certain ||| 1 0.0729943 2.66517e-05 1.53956e-15 2.718 ||| 0-2 0-3 ||| 1 37521 +los ||| tempting , the only ||| 1 0.0729943 2.66517e-05 7.90331e-12 2.718 ||| 0-2 0-3 ||| 1 37521 +los ||| tempting for critics of authoritarian regimes to ||| 1 0.268344 2.66517e-05 5.80768e-23 2.718 ||| 0-5 ||| 1 37521 +los ||| tempting for critics of authoritarian regimes ||| 1 0.268344 2.66517e-05 7.04045e-22 2.718 ||| 0-5 ||| 1 37521 +los ||| terrorist ||| 0.0037037 0.0218254 5.33035e-05 0.0001071 2.718 ||| 0-0 ||| 540 37521 +los ||| tested ||| 0.0107527 0.0070423 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 93 37521 +los ||| testing the ||| 0.333333 0.145844 5.33035e-05 1.39604e-05 2.718 ||| 0-1 ||| 6 37521 +los ||| testing ||| 0.00819672 0.0177515 2.66517e-05 2.92e-05 2.718 ||| 0-0 ||| 122 37521 +los ||| tests and ||| 0.333333 0.0704225 2.66517e-05 1.22598e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| tests ||| 0.012766 0.0704225 7.99552e-05 0.000146 2.718 ||| 0-0 ||| 235 37521 +los ||| that are the ||| 0.0416667 0.145844 2.66517e-05 1.85582e-05 2.718 ||| 0-2 ||| 24 37521 +los ||| that began five months earlier ||| 0.25 0.0014641 2.66517e-05 5.003e-20 2.718 ||| 0-2 ||| 4 37521 +los ||| that began five months ||| 0.25 0.0014641 2.66517e-05 2.4076e-16 2.718 ||| 0-2 ||| 4 37521 +los ||| that began five ||| 0.25 0.0014641 2.66517e-05 6.17335e-12 2.718 ||| 0-2 ||| 4 37521 +los ||| that created the ||| 0.2 0.145844 2.66517e-05 3.58205e-07 2.718 ||| 0-2 ||| 5 37521 +los ||| that is , the ||| 0.0434783 0.145844 2.66517e-05 8.43967e-06 2.718 ||| 0-3 ||| 23 37521 +los ||| that of the ||| 0.00900901 0.145844 2.66517e-05 6.77208e-05 2.718 ||| 0-2 ||| 111 37521 +los ||| that shows the ||| 0.5 0.145844 2.66517e-05 2.60444e-07 2.718 ||| 0-2 ||| 2 37521 +los ||| that spawned the ||| 0.25 0.145844 2.66517e-05 3.25869e-08 2.718 ||| 0-2 ||| 4 37521 +los ||| that the ||| 0.00146033 0.145844 0.000239866 0.00250668 2.718 ||| 0-1 ||| 6163 37521 +los ||| that ||| 0.000394836 0.000607 0.00061299 0.0002823 2.718 ||| 0-0 ||| 58252 37521 +los ||| the $ ||| 0.153846 0.145844 5.33035e-05 0.000145465 2.718 ||| 0-0 ||| 13 37521 +los ||| the [ ||| 0.666667 0.145844 5.33035e-05 7.37296e-05 2.718 ||| 0-0 ||| 3 37521 +los ||| the " real " sector and ||| 1 0.145844 2.66517e-05 1.01981e-15 2.718 ||| 0-0 ||| 1 37521 +los ||| the " real " sector ||| 1 0.145844 2.66517e-05 1.21448e-13 2.718 ||| 0-0 ||| 1 37521 +los ||| the " real " ||| 1 0.145844 2.66517e-05 2.33554e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| the " real ||| 0.2 0.145844 2.66517e-05 4.67659e-07 2.718 ||| 0-0 ||| 5 37521 +los ||| the " ||| 0.00654545 0.145844 0.000239866 0.0015323 2.718 ||| 0-0 ||| 1375 37521 +los ||| the 1996 ||| 1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the American ||| 0.04 0.145844 5.33035e-05 9.76311e-05 2.718 ||| 0-0 ||| 50 37521 +los ||| the Americans will be accommodated ||| 0.25 0.145844 2.66517e-05 5.53917e-15 2.718 ||| 0-0 ||| 4 37521 +los ||| the Americans will be ||| 0.25 0.145844 2.66517e-05 8.5218e-10 2.718 ||| 0-0 ||| 4 37521 +los ||| the Americans will ||| 0.25 0.145844 2.66517e-05 8.26845e-08 2.718 ||| 0-0 ||| 4 37521 +los ||| the Americans ||| 0.0134228 0.145844 5.33035e-05 1.19661e-05 2.718 ||| 0-0 ||| 149 37521 +los ||| the Arab ||| 0.0666667 0.145844 2.66517e-05 1.79185e-05 2.718 ||| 0-0 ||| 15 37521 +los ||| the British , French ||| 1 0.145844 2.66517e-05 8.32659e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| the British , ||| 0.0454545 0.145844 2.66517e-05 6.10454e-06 2.718 ||| 0-0 ||| 22 37521 +los ||| the British ||| 0.00990099 0.145844 2.66517e-05 2.98846e-05 2.718 ||| 0-0 ||| 101 37521 +los ||| the CDS ||| 0.25 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 4 37521 +los ||| the Chief ||| 0.0625 0.145844 2.66517e-05 1.19661e-05 2.718 ||| 0-0 ||| 16 37521 +los ||| the Communist Party ||| 0.0169492 0.145844 2.66517e-05 5.69586e-10 2.718 ||| 0-0 ||| 59 37521 +los ||| the Communist ||| 0.5 0.145844 5.33035e-05 7.9774e-06 2.718 ||| 0-0 ||| 4 37521 +los ||| the DPJ 's contacts with lobbyists at ||| 1 0.145844 2.66517e-05 2.95416e-23 2.718 ||| 0-0 ||| 1 37521 +los ||| the DPJ 's contacts with lobbyists ||| 1 0.145844 2.66517e-05 9.9537e-21 2.718 ||| 0-0 ||| 1 37521 +los ||| the DPJ 's contacts with ||| 1 0.145844 2.66517e-05 7.65669e-16 2.718 ||| 0-0 ||| 1 37521 +los ||| the DPJ 's contacts ||| 1 0.145844 2.66517e-05 2.0188e-13 2.718 ||| 0-0 ||| 1 37521 +los ||| the DPJ 's ||| 0.2 0.145844 2.66517e-05 3.10584e-08 2.718 ||| 0-0 ||| 5 37521 +los ||| the DPJ ||| 0.0138889 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 72 37521 +los ||| the Duhalde government ||| 1 0.145844 2.66517e-05 9.97374e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| the Duhalde ||| 1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the EU 's ||| 0.010101 0.145844 2.66517e-05 1.24138e-06 2.718 ||| 0-0 ||| 99 37521 +los ||| the EU ||| 0.0013471 0.145844 7.99552e-05 7.97126e-05 2.718 ||| 0-0 ||| 2227 37521 +los ||| the East ||| 0.0204082 0.145844 2.66517e-05 4.18507e-05 2.718 ||| 0-0 ||| 49 37521 +los ||| the Encyclopedia Britannica in US judicial decisions ||| 1 0.145844 2.66517e-05 8.6573e-26 2.718 ||| 0-0 ||| 1 37521 +los ||| the Encyclopedia Britannica in US judicial ||| 1 0.145844 2.66517e-05 1.66487e-21 2.718 ||| 0-0 ||| 1 37521 +los ||| the Encyclopedia Britannica in US ||| 1 0.145844 2.66517e-05 2.56133e-16 2.718 ||| 0-0 ||| 1 37521 +los ||| the Encyclopedia Britannica in ||| 1 0.145844 2.66517e-05 1.99186e-13 2.718 ||| 0-0 ||| 1 37521 +los ||| the Encyclopedia Britannica ||| 1 0.145844 2.66517e-05 1.29633e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| the Encyclopedia ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the European Union and its friends ||| 1 0.000294 2.66517e-05 9.29675e-21 2.718 ||| 0-3 ||| 1 37521 +los ||| the European Union and its ||| 0.25 0.000294 2.66517e-05 1.43027e-15 2.718 ||| 0-3 ||| 4 37521 +los ||| the European Union and ||| 0.0196078 0.000294 2.66517e-05 7.19741e-13 2.718 ||| 0-3 ||| 51 37521 +los ||| the European ||| 0.0126582 0.145844 2.66517e-05 9.36424e-05 2.718 ||| 0-0 ||| 79 37521 +los ||| the Europeans would get ||| 0.5 0.145844 2.66517e-05 5.79711e-11 2.718 ||| 0-0 ||| 2 37521 +los ||| the Europeans would ||| 0.5 0.145844 2.66517e-05 7.37734e-08 2.718 ||| 0-0 ||| 2 37521 +los ||| the Europeans ||| 0.0138889 0.145844 2.66517e-05 1.59548e-05 2.718 ||| 0-0 ||| 72 37521 +los ||| the Exchequer . ||| 1 0.145844 2.66517e-05 2.75095e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| the Exchequer ||| 0.166667 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 6 37521 +los ||| the FSA 's ||| 1 0.145844 2.66517e-05 9.31752e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| the FSA ||| 0.142857 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 7 37521 +los ||| the French ||| 0.00552486 0.145844 2.66517e-05 4.18507e-05 2.718 ||| 0-0 ||| 181 37521 +los ||| the Fund has regularly benefited ||| 1 0.145844 2.66517e-05 7.03462e-17 2.718 ||| 0-0 ||| 1 37521 +los ||| the Fund has regularly ||| 1 0.145844 2.66517e-05 2.70562e-12 2.718 ||| 0-0 ||| 1 37521 +los ||| the Fund has ||| 0.0625 0.145844 2.66517e-05 5.94642e-08 2.718 ||| 0-0 ||| 16 37521 +los ||| the Fund ||| 0.00595238 0.145844 2.66517e-05 1.79185e-05 2.718 ||| 0-0 ||| 168 37521 +los ||| the Ganges ||| 1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the German ||| 0.0454545 0.145844 2.66517e-05 1.59548e-05 2.718 ||| 0-0 ||| 22 37521 +los ||| the Group ||| 0.142857 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 7 37521 +los ||| the ICTY ||| 0.0263158 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 38 37521 +los ||| the Indian ||| 0.1 0.145844 2.66517e-05 2.19072e-05 2.718 ||| 0-0 ||| 10 37521 +los ||| the Israeli Arabs and of Jerusalem ( ||| 1 0.145844 2.66517e-05 1.20481e-21 2.718 ||| 0-0 ||| 1 37521 +los ||| the Israeli Arabs and of Jerusalem ||| 1 0.145844 2.66517e-05 1.14515e-18 2.718 ||| 0-0 ||| 1 37521 +los ||| the Israeli Arabs and of ||| 1 0.145844 2.66517e-05 8.80885e-14 2.718 ||| 0-0 ||| 1 37521 +los ||| the Israeli Arabs and ||| 1 0.145844 5.33035e-05 3.26059e-12 2.718 ||| 0-0 ||| 2 37521 +los ||| the Israeli Arabs ||| 1 0.145844 5.33035e-05 3.883e-10 2.718 ||| 0-0 ||| 2 37521 +los ||| the Israeli ||| 0.285714 0.145844 5.33035e-05 1.99128e-05 2.718 ||| 0-0 ||| 7 37521 +los ||| the Japanese ||| 0.0126582 0.0585714 2.66517e-05 2.1204e-05 2.718 ||| 0-1 ||| 79 37521 +los ||| the Kremlin ||| 0.00442478 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 226 37521 +los ||| the Last ||| 0.0526316 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 19 37521 +los ||| the Liberal Democrats ||| 0.25 0.145844 2.66517e-05 9.07429e-11 2.718 ||| 0-0 ||| 4 37521 +los ||| the Liberal ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the New Economy ||| 0.0909091 0.145844 5.33035e-05 3.4941e-10 2.718 ||| 0-0 ||| 22 37521 +los ||| the New ||| 0.0155039 0.145844 5.33035e-05 1.79185e-05 2.718 ||| 0-0 ||| 129 37521 +los ||| the North ||| 0.00909091 0.145844 2.66517e-05 5.57804e-05 2.718 ||| 0-0 ||| 110 37521 +los ||| the Party remains ||| 0.333333 0.145844 2.66517e-05 3.55772e-09 2.718 ||| 0-0 ||| 3 37521 +los ||| the Party ||| 0.0186916 0.145844 5.33035e-05 2.19072e-05 2.718 ||| 0-0 ||| 107 37521 +los ||| the Poles ||| 0.0666667 0.223607 2.66517e-05 6.56908e-05 2.718 ||| 0-0 0-1 ||| 15 37521 +los ||| the R ||| 1 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the Russian National Priority ||| 1 0.145844 2.66517e-05 1.3557e-14 2.718 ||| 0-0 ||| 1 37521 +los ||| the Russian National ||| 1 0.145844 2.66517e-05 2.08569e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| the Russian ||| 0.0555556 0.145844 2.66517e-05 4.58394e-05 2.718 ||| 0-0 ||| 18 37521 +los ||| the SADC ||| 0.1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 10 37521 +los ||| the UAE 's trade is with China ||| 0.5 0.145844 2.66517e-05 3.44944e-19 2.718 ||| 0-0 ||| 2 37521 +los ||| the UAE 's trade is with ||| 0.5 0.145844 2.66517e-05 4.91794e-16 2.718 ||| 0-0 ||| 2 37521 +los ||| the UAE 's trade is ||| 0.5 0.145844 2.66517e-05 1.29669e-13 2.718 ||| 0-0 ||| 2 37521 +los ||| the UAE 's trade ||| 0.5 0.145844 2.66517e-05 7.86709e-12 2.718 ||| 0-0 ||| 2 37521 +los ||| the UAE 's ||| 0.5 0.145844 2.66517e-05 3.10584e-08 2.718 ||| 0-0 ||| 2 37521 +los ||| the UAE ||| 0.111111 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 9 37521 +los ||| the US could ||| 0.0416667 0.145844 2.66517e-05 4.45834e-07 2.718 ||| 0-0 ||| 24 37521 +los ||| the US financial sector 's ||| 1 0.145844 2.66517e-05 9.54358e-14 2.718 ||| 0-0 ||| 1 37521 +los ||| the US financial sector ||| 0.142857 0.145844 2.66517e-05 6.12821e-12 2.718 ||| 0-0 ||| 7 37521 +los ||| the US financial ||| 0.5 0.145844 2.66517e-05 1.1785e-07 2.718 ||| 0-0 ||| 2 37521 +los ||| the US ||| 0.00133894 0.145844 0.000186562 0.000394544 2.718 ||| 0-0 ||| 5228 37521 +los ||| the Union 's ||| 0.0909091 0.145844 5.33035e-05 8.07041e-07 2.718 ||| 0-0 ||| 22 37521 +los ||| the Union ||| 0.00566572 0.145844 5.33035e-05 5.18224e-05 2.718 ||| 0-0 ||| 353 37521 +los ||| the United Nations ||| 0.0047619 0.145844 2.66517e-05 5.90647e-09 2.718 ||| 0-0 ||| 210 37521 +los ||| the United States government is to continue ||| 1 0.145844 2.66517e-05 6.1629e-18 2.718 ||| 0-0 ||| 1 37521 +los ||| the United States government is to ||| 1 0.145844 2.66517e-05 2.20655e-14 2.718 ||| 0-0 ||| 1 37521 +los ||| the United States government is ||| 0.333333 0.145844 2.66517e-05 2.67493e-13 2.718 ||| 0-0 ||| 3 37521 +los ||| the United States government ||| 0.0555556 0.145844 2.66517e-05 1.6229e-11 2.718 ||| 0-0 ||| 18 37521 +los ||| the United States ||| 0.00183038 0.145844 7.99552e-05 3.24515e-08 2.718 ||| 0-0 ||| 1639 37521 +los ||| the United ||| 0.0574713 0.145844 0.000133259 0.000113586 2.718 ||| 0-0 ||| 87 37521 +los ||| the Western Balkans ||| 0.125 0.145844 2.66517e-05 9.07429e-11 2.718 ||| 0-0 ||| 8 37521 +los ||| the Western ||| 0.2 0.145844 2.66517e-05 1.39604e-05 2.718 ||| 0-0 ||| 5 37521 +los ||| the accession ||| 0.0555556 0.145844 2.66517e-05 1.39604e-05 2.718 ||| 0-0 ||| 18 37521 +los ||| the actual ||| 0.0434783 0.145844 2.66517e-05 2.98846e-05 2.718 ||| 0-0 ||| 23 37521 +los ||| the affairs ||| 0.166667 0.214277 2.66517e-05 0.000361345 2.718 ||| 0-0 0-1 ||| 6 37521 +los ||| the age ||| 0.0172414 0.145844 2.66517e-05 2.58959e-05 2.718 ||| 0-0 ||| 58 37521 +los ||| the aging ||| 0.0666667 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 15 37521 +los ||| the ambition ||| 0.0588235 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 17 37521 +los ||| the amount of ||| 0.0147059 0.145844 2.66517e-05 2.52985e-06 2.718 ||| 0-0 ||| 68 37521 +los ||| the amount ||| 0.00961538 0.145844 2.66517e-05 9.36424e-05 2.718 ||| 0-0 ||| 104 37521 +los ||| the appropriate ||| 0.166667 0.145844 2.66517e-05 1.19661e-05 2.718 ||| 0-0 ||| 6 37521 +los ||| the army ||| 0.00884956 0.145844 2.66517e-05 2.39015e-05 2.718 ||| 0-0 ||| 113 37521 +los ||| the art ||| 0.0454545 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 22 37521 +los ||| the assistance ||| 0.0769231 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 13 37521 +los ||| the assumed ||| 0.333333 0.145844 2.66517e-05 2.19072e-05 2.718 ||| 0-0 ||| 3 37521 +los ||| the attendant ||| 0.333333 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the available ||| 0.5 0.145844 2.66517e-05 8.37013e-05 2.718 ||| 0-0 ||| 2 37521 +los ||| the average ||| 0.047619 0.145844 5.33035e-05 2.98846e-05 2.718 ||| 0-0 ||| 42 37521 +los ||| the back of ||| 0.103448 0.145844 7.99552e-05 1.15203e-05 2.718 ||| 0-0 ||| 29 37521 +los ||| the back ||| 0.129032 0.145844 0.000106607 0.000426423 2.718 ||| 0-0 ||| 31 37521 +los ||| the balance ||| 0.0373832 0.145844 0.000106607 5.57804e-05 2.718 ||| 0-0 ||| 107 37521 +los ||| the banks ' ||| 1 0.16469 2.66517e-05 3.22388e-07 2.718 ||| 0-0 0-2 ||| 1 37521 +los ||| the banks ||| 0.00699301 0.268192 2.66517e-05 0.00384649 2.718 ||| 0-0 0-1 ||| 143 37521 +los ||| the basic ||| 0.125 0.145844 2.66517e-05 1.39604e-05 2.718 ||| 0-0 ||| 8 37521 +los ||| the basis of ||| 0.00645161 0.145844 2.66517e-05 3.17641e-06 2.718 ||| 0-0 ||| 155 37521 +los ||| the basis ||| 0.0157068 0.145844 7.99552e-05 0.000117575 2.718 ||| 0-0 ||| 191 37521 +los ||| the beginning . the ||| 1 0.145844 2.66517e-05 5.83877e-09 2.718 ||| 0-3 ||| 1 37521 +los ||| the benefit ||| 0.0192308 0.145844 2.66517e-05 2.98846e-05 2.718 ||| 0-0 ||| 52 37521 +los ||| the benefits ||| 0.00340136 0.145844 2.66517e-05 3.18789e-05 2.718 ||| 0-0 ||| 294 37521 +los ||| the best ||| 0.003125 0.145844 5.33035e-05 5.37861e-05 2.718 ||| 0-0 ||| 640 37521 +los ||| the best-performing ||| 1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the better recently , ||| 1 0.145844 2.66517e-05 3.12963e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| the better recently ||| 1 0.145844 2.66517e-05 1.5321e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| the better ||| 0.0142857 0.145844 2.66517e-05 6.37578e-05 2.718 ||| 0-0 ||| 70 37521 +los ||| the big ||| 0.00917431 0.145844 2.66517e-05 6.77465e-05 2.718 ||| 0-0 ||| 109 37521 +los ||| the biggest ||| 0.00561798 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 178 37521 +los ||| the board ||| 0.0769231 0.145844 2.66517e-05 2.58959e-05 2.718 ||| 0-0 ||| 13 37521 +los ||| the bonds ||| 0.0434783 0.147026 2.66517e-05 0.000271753 2.718 ||| 0-0 0-1 ||| 23 37521 +los ||| the books ||| 0.0217391 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 46 37521 +los ||| the bottom of the text ||| 1 0.145844 2.66517e-05 9.48093e-13 2.718 ||| 0-0 ||| 1 37521 +los ||| the bottom of the ||| 0.1 0.145844 2.66517e-05 4.86201e-08 2.718 ||| 0-0 ||| 10 37521 +los ||| the bottom of ||| 0.0666667 0.145844 2.66517e-05 9.15123e-07 2.718 ||| 0-0 ||| 15 37521 +los ||| the bottom ||| 0.0217391 0.145844 5.33035e-05 3.38733e-05 2.718 ||| 0-0 ||| 92 37521 +los ||| the broad ||| 0.05 0.145844 2.66517e-05 1.19661e-05 2.718 ||| 0-0 ||| 20 37521 +los ||| the brunt of the ||| 0.0909091 0.145844 2.66517e-05 1.14504e-08 2.718 ||| 0-0 ||| 11 37521 +los ||| the brunt of ||| 0.0416667 0.145844 2.66517e-05 2.15518e-07 2.718 ||| 0-0 ||| 24 37521 +los ||| the brunt ||| 0.0434783 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 23 37521 +los ||| the budget ||| 0.0169492 0.145844 2.66517e-05 1.59548e-05 2.718 ||| 0-0 ||| 59 37521 +los ||| the building ||| 0.117647 0.145844 5.33035e-05 5.18224e-05 2.718 ||| 0-0 ||| 17 37521 +los ||| the business ||| 0.0909091 0.145844 7.99552e-05 7.77183e-05 2.718 ||| 0-0 ||| 33 37521 +los ||| the case for the ||| 0.333333 0.145844 2.66517e-05 5.39239e-08 2.718 ||| 0-0 ||| 3 37521 +los ||| the case for ||| 0.0338983 0.145844 5.33035e-05 1.01495e-06 2.718 ||| 0-0 ||| 59 37521 +los ||| the case of ||| 0.00473934 0.145844 2.66517e-05 5.76014e-06 2.718 ||| 0-0 ||| 211 37521 +los ||| the case with ||| 0.047619 0.145844 2.66517e-05 8.08647e-07 2.718 ||| 0-0 ||| 21 37521 +los ||| the case ||| 0.0137255 0.145844 0.000186562 0.000213211 2.718 ||| 0-0 ||| 510 37521 +los ||| the cat 's cradle ||| 1 0.145844 2.66517e-05 1.21128e-12 2.718 ||| 0-0 ||| 1 37521 +los ||| the cat 's ||| 1 0.145844 2.66517e-05 6.21168e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| the cat ||| 0.5 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the charge ||| 0.05 0.145844 5.33035e-05 3.38733e-05 2.718 ||| 0-0 ||| 40 37521 +los ||| the cheap ||| 0.0909091 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 11 37521 +los ||| the children ||| 0.0222222 0.186244 2.66517e-05 0.000782429 2.718 ||| 0-0 0-1 ||| 45 37521 +los ||| the clock on the ||| 1 0.145844 2.66517e-05 1.24687e-09 2.718 ||| 0-3 ||| 1 37521 +los ||| the coffee shops ||| 1 0.145844 2.66517e-05 5.18531e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| the coffee ||| 1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the collective ||| 0.142857 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 7 37521 +los ||| the combined ||| 0.25 0.145844 2.66517e-05 2.19072e-05 2.718 ||| 0-0 ||| 4 37521 +los ||| the comedy shows ||| 0.333333 0.145844 2.66517e-05 2.07213e-10 2.718 ||| 0-0 ||| 3 37521 +los ||| the comedy ||| 0.333333 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the commitments ||| 0.0769231 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 13 37521 +los ||| the common ||| 0.047619 0.145844 2.66517e-05 5.18224e-05 2.718 ||| 0-0 ||| 21 37521 +los ||| the company ||| 0.00833333 0.145844 2.66517e-05 1.79185e-05 2.718 ||| 0-0 ||| 120 37521 +los ||| the concentrated ||| 0.5 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the confines ||| 0.1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 10 37521 +los ||| the consequences with respect to ||| 1 0.145844 2.66517e-05 2.02473e-13 2.718 ||| 0-0 ||| 1 37521 +los ||| the consequences with respect ||| 1 0.145844 2.66517e-05 2.45451e-12 2.718 ||| 0-0 ||| 1 37521 +los ||| the consequences with ||| 1 0.145844 2.66517e-05 3.78198e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| the consequences ||| 0.00378788 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 264 37521 +los ||| the continent 's ||| 0.5 0.145844 5.33035e-05 1.24234e-07 2.718 ||| 0-0 ||| 4 37521 +los ||| the continent ||| 0.0153846 0.145844 5.33035e-05 7.9774e-06 2.718 ||| 0-0 ||| 130 37521 +los ||| the control ||| 0.0232558 0.145844 2.66517e-05 3.58676e-05 2.718 ||| 0-0 ||| 43 37521 +los ||| the core ||| 0.0108696 0.145844 2.66517e-05 2.78902e-05 2.718 ||| 0-0 ||| 92 37521 +los ||| the cost ||| 0.00297619 0.145844 2.66517e-05 5.97691e-05 2.718 ||| 0-0 ||| 336 37521 +los ||| the costs ||| 0.0110701 0.167966 7.99552e-05 0.000767518 2.718 ||| 0-0 0-1 ||| 271 37521 +los ||| the country 's ||| 0.0492958 0.145844 0.000186562 3.69261e-06 2.718 ||| 0-0 ||| 142 37521 +los ||| the country ||| 0.0105178 0.145844 0.000346473 0.000237113 2.718 ||| 0-0 ||| 1236 37521 +los ||| the course ||| 0.0215054 0.145844 5.33035e-05 0.000131504 2.718 ||| 0-0 ||| 93 37521 +los ||| the crisis ||| 0.00107527 0.145844 2.66517e-05 5.77748e-05 2.718 ||| 0-0 ||| 930 37521 +los ||| the crucial ||| 0.2 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 5 37521 +los ||| the damage ||| 0.01 0.145844 2.66517e-05 1.99128e-05 2.718 ||| 0-0 ||| 100 37521 +los ||| the death ||| 0.0113636 0.145844 2.66517e-05 5.37861e-05 2.718 ||| 0-0 ||| 88 37521 +los ||| the decades-old ||| 1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the democrats ||| 0.333333 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the departing ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the deployment ||| 0.0625 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 16 37521 +los ||| the designated ||| 1 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the development of ||| 0.00689655 0.145844 2.66517e-05 1.40004e-06 2.718 ||| 0-0 ||| 145 37521 +los ||| the development ||| 0.00609756 0.145844 2.66517e-05 5.18224e-05 2.718 ||| 0-0 ||| 164 37521 +los ||| the difference ||| 0.00689655 0.145844 2.66517e-05 2.98846e-05 2.718 ||| 0-0 ||| 145 37521 +los ||| the door ||| 0.0153846 0.145844 2.66517e-05 2.58959e-05 2.718 ||| 0-0 ||| 65 37521 +los ||| the downside ||| 0.105263 0.145844 5.33035e-05 7.9774e-06 2.718 ||| 0-0 ||| 19 37521 +los ||| the drastic ||| 0.333333 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the earlier ||| 0.0625 0.145844 2.66517e-05 6.37578e-05 2.718 ||| 0-0 ||| 16 37521 +los ||| the early ||| 0.0058997 0.0893603 5.33035e-05 0.000107511 2.718 ||| 0-0 0-1 ||| 339 37521 +los ||| the ears of ||| 0.666667 0.145844 5.33035e-05 1.61639e-07 2.718 ||| 0-0 ||| 3 37521 +los ||| the ears ||| 0.666667 0.145844 5.33035e-05 5.98305e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the economic shambles ||| 0.333333 0.145844 2.66517e-05 8.93668e-10 2.718 ||| 0-0 ||| 3 37521 +los ||| the economic ||| 0.157895 0.145844 7.99552e-05 0.000137487 2.718 ||| 0-0 ||| 19 37521 +los ||| the economy ||| 0.00110254 0.145844 2.66517e-05 8.96537e-05 2.718 ||| 0-0 ||| 907 37521 +los ||| the effort ||| 0.0166667 0.145844 2.66517e-05 8.56957e-05 2.718 ||| 0-0 ||| 60 37521 +los ||| the election ||| 0.00416667 0.145844 2.66517e-05 2.39015e-05 2.718 ||| 0-0 ||| 240 37521 +los ||| the end ||| 0.00174825 0.145844 2.66517e-05 0.000145465 2.718 ||| 0-0 ||| 572 37521 +los ||| the entire ||| 0.00328947 0.145844 2.66517e-05 2.39015e-05 2.718 ||| 0-0 ||| 304 37521 +los ||| the established ||| 1 0.145844 2.66517e-05 5.18224e-05 2.718 ||| 0-0 ||| 1 37521 +los ||| the euro ||| 0.00204499 0.145844 2.66517e-05 1.99128e-05 2.718 ||| 0-0 ||| 489 37521 +los ||| the events ||| 0.0243902 0.204005 2.66517e-05 0.000498741 2.718 ||| 0-0 0-1 ||| 41 37521 +los ||| the exceedingly poor showing ||| 0.5 0.145844 2.66517e-05 7.99342e-14 2.718 ||| 0-0 ||| 2 37521 +los ||| the exceedingly poor ||| 0.5 0.145844 2.66517e-05 6.47765e-10 2.718 ||| 0-0 ||| 2 37521 +los ||| the exceedingly ||| 0.333333 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the exciting ||| 0.25 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 4 37521 +los ||| the expanded ||| 0.333333 0.145844 2.66517e-05 1.39604e-05 2.718 ||| 0-0 ||| 3 37521 +los ||| the expected ||| 0.2 0.145844 2.66517e-05 3.98563e-05 2.718 ||| 0-0 ||| 5 37521 +los ||| the expense ||| 0.0108696 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 92 37521 +los ||| the eye can see ||| 0.25 0.145844 2.66517e-05 6.25071e-11 2.718 ||| 0-0 ||| 4 37521 +los ||| the eye can ||| 0.5 0.145844 2.66517e-05 1.01308e-07 2.718 ||| 0-0 ||| 2 37521 +los ||| the eye ||| 0.037037 0.145844 2.66517e-05 5.77748e-05 2.718 ||| 0-0 ||| 27 37521 +los ||| the eyes of ||| 0.016129 0.145844 2.66517e-05 7.53485e-07 2.718 ||| 0-0 ||| 62 37521 +los ||| the eyes ||| 0.0506329 0.145844 0.000106607 2.78902e-05 2.718 ||| 0-0 ||| 79 37521 +los ||| the face ||| 0.0438596 0.145844 0.000133259 0.000113586 2.718 ||| 0-0 ||| 114 37521 +los ||| the fact that ||| 0.00203666 0.145844 2.66517e-05 1.64413e-06 2.718 ||| 0-0 ||| 491 37521 +los ||| the fact ||| 0.00436205 0.145844 0.000106607 0.000201245 2.718 ||| 0-0 ||| 917 37521 +los ||| the fastest ||| 0.1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 10 37521 +los ||| the fat ||| 0.333333 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the financial ||| 0.05 0.145844 2.66517e-05 9.1648e-05 2.718 ||| 0-0 ||| 20 37521 +los ||| the fine ||| 0.2 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 5 37521 +los ||| the first political ||| 1 0.145844 2.66517e-05 5.50816e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| the first ||| 0.00196078 0.145844 7.99552e-05 0.000151448 2.718 ||| 0-0 ||| 1530 37521 +los ||| the five years before the euro 's ||| 1 0.145844 2.66517e-05 3.39843e-20 2.718 ||| 0-0 ||| 1 37521 +los ||| the five years before the euro ||| 1 0.145844 2.66517e-05 2.18223e-18 2.718 ||| 0-0 ||| 1 37521 +los ||| the five years before the ||| 1 0.145844 2.66517e-05 3.36245e-14 2.718 ||| 0-0 ||| 1 37521 +los ||| the five years before ||| 1 0.145844 2.66517e-05 6.32878e-13 2.718 ||| 0-0 ||| 1 37521 +los ||| the five years ||| 0.166667 0.145844 2.66517e-05 2.95323e-09 2.718 ||| 0-0 ||| 6 37521 +los ||| the five ||| 0.015625 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 64 37521 +los ||| the flag ||| 0.333333 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the floating ||| 0.5 0.102334 2.66517e-05 1.19354e-05 2.718 ||| 0-0 0-1 ||| 2 37521 +los ||| the fold some of the ||| 1 0.145844 2.66517e-05 2.04504e-12 2.718 ||| 0-4 ||| 1 37521 +los ||| the force ||| 0.0384615 0.145844 2.66517e-05 8.96537e-05 2.718 ||| 0-0 ||| 26 37521 +los ||| the fore ||| 0.0232558 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 43 37521 +los ||| the forecasts of the ||| 0.333333 0.145844 2.66517e-05 2.8626e-09 2.718 ||| 0-0 ||| 3 37521 +los ||| the forecasts of ||| 0.25 0.145844 2.66517e-05 5.38795e-08 2.718 ||| 0-0 ||| 4 37521 +los ||| the forecasts ||| 0.142857 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 7 37521 +los ||| the foreign ||| 0.111111 0.145844 2.66517e-05 4.78337e-05 2.718 ||| 0-0 ||| 9 37521 +los ||| the forest ||| 0.0666667 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 15 37521 +los ||| the form ||| 0.011976 0.145844 5.33035e-05 0.000117575 2.718 ||| 0-0 ||| 167 37521 +los ||| the formation ||| 0.027027 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 37 37521 +los ||| the former Fatah ||| 1 0.145844 2.66517e-05 3.93764e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| the former ||| 0.0158228 0.145844 0.000133259 7.57239e-05 2.718 ||| 0-0 ||| 316 37521 +los ||| the front ||| 0.0952381 0.145844 5.33035e-05 2.19072e-05 2.718 ||| 0-0 ||| 21 37521 +los ||| the full ||| 0.0434783 0.145844 7.99552e-05 0.000103614 2.718 ||| 0-0 ||| 69 37521 +los ||| the future ||| 0.00135318 0.145844 2.66517e-05 4.58394e-05 2.718 ||| 0-0 ||| 739 37521 +los ||| the game ||| 0.0188679 0.145844 2.66517e-05 3.58676e-05 2.718 ||| 0-0 ||| 53 37521 +los ||| the generation of ||| 0.333333 0.145844 2.66517e-05 2.69398e-07 2.718 ||| 0-0 ||| 3 37521 +los ||| the generation ||| 0.0909091 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 11 37521 +los ||| the globe ||| 0.0163934 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 61 37521 +los ||| the goods ||| 0.0625 0.145844 5.33035e-05 1.39604e-05 2.718 ||| 0-0 ||| 32 37521 +los ||| the governing ||| 0.333333 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the government allow the ||| 0.0526316 0.145844 2.66517e-05 1.11198e-09 2.718 ||| 0-0 ||| 19 37521 +los ||| the government allow ||| 0.0526316 0.145844 2.66517e-05 2.09295e-08 2.718 ||| 0-0 ||| 19 37521 +los ||| the government ||| 0.00268577 0.145844 7.99552e-05 0.000153442 2.718 ||| 0-0 ||| 1117 37521 +los ||| the governors / ||| 1 0.145844 2.66517e-05 8.02925e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| the governors ||| 0.2 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 5 37521 +los ||| the ground ||| 0.00694444 0.145844 2.66517e-05 0.000109597 2.718 ||| 0-0 ||| 144 37521 +los ||| the gullible ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the hands of ||| 0.00943396 0.145844 2.66517e-05 1.02288e-06 2.718 ||| 0-0 ||| 106 37521 +los ||| the hands ||| 0.0162602 0.145844 5.33035e-05 3.7862e-05 2.718 ||| 0-0 ||| 123 37521 +los ||| the hard way ||| 0.0555556 0.145844 2.66517e-05 2.0894e-07 2.718 ||| 0-0 ||| 18 37521 +los ||| the hard ||| 0.0333333 0.145844 2.66517e-05 0.000137487 2.718 ||| 0-0 ||| 30 37521 +los ||| the heads ||| 0.0571429 0.145844 5.33035e-05 1.59548e-05 2.718 ||| 0-0 ||| 35 37521 +los ||| the heartland ||| 0.142857 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 7 37521 +los ||| the hemisphere ||| 0.111111 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 9 37521 +los ||| the high ||| 0.00952381 0.145844 2.66517e-05 0.000145465 2.718 ||| 0-0 ||| 105 37521 +los ||| the highest ||| 0.00961538 0.145844 2.66517e-05 1.99128e-05 2.718 ||| 0-0 ||| 104 37521 +los ||| the highly ||| 0.0833333 0.145844 2.66517e-05 3.98563e-05 2.718 ||| 0-0 ||| 12 37521 +los ||| the host ||| 0.125 0.145844 2.66517e-05 2.98846e-05 2.718 ||| 0-0 ||| 8 37521 +los ||| the household ||| 0.166667 0.145844 2.66517e-05 1.19661e-05 2.718 ||| 0-0 ||| 6 37521 +los ||| the humanities ||| 0.0526316 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 19 37521 +los ||| the hundreds ||| 0.0322581 0.145844 2.66517e-05 1.59548e-05 2.718 ||| 0-0 ||| 31 37521 +los ||| the idea is ||| 0.05 0.145844 2.66517e-05 5.25441e-07 2.718 ||| 0-0 ||| 20 37521 +los ||| the idea ||| 0.00169205 0.145844 2.66517e-05 3.18789e-05 2.718 ||| 0-0 ||| 591 37521 +los ||| the imagination ||| 0.0769231 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 13 37521 +los ||| the implication of ||| 0.111111 0.145844 2.66517e-05 1.61639e-07 2.718 ||| 0-0 ||| 9 37521 +los ||| the implication ||| 0.0384615 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 26 37521 +los ||| the increase ||| 0.0107527 0.145844 2.66517e-05 6.37578e-05 2.718 ||| 0-0 ||| 93 37521 +los ||| the indictment ||| 0.0526316 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 19 37521 +los ||| the individual ||| 0.0263158 0.145844 2.66517e-05 4.58394e-05 2.718 ||| 0-0 ||| 38 37521 +los ||| the individuals ||| 0.125 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| the industrial revolution ||| 0.0666667 0.145844 2.66517e-05 5.17733e-10 2.718 ||| 0-0 ||| 15 37521 +los ||| the industrial ||| 0.5 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the initial period ||| 0.333333 0.145844 2.66517e-05 8.54978e-10 2.718 ||| 0-0 ||| 3 37521 +los ||| the initial ||| 0.125 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| the innovation ||| 0.333333 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the inside ||| 0.5 0.145844 2.66517e-05 1.79185e-05 2.718 ||| 0-0 ||| 2 37521 +los ||| the integration ||| 0.0555556 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 18 37521 +los ||| the interests ||| 0.0227273 0.0753143 0.000106607 1.79185e-05 2.718 ||| 0-0 0-1 ||| 176 37521 +los ||| the interim ||| 0.333333 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the issues ||| 0.0120482 0.103339 2.66517e-05 0.000217998 2.718 ||| 0-0 0-1 ||| 83 37521 +los ||| the job ||| 0.00862069 0.145844 2.66517e-05 4.98281e-05 2.718 ||| 0-0 ||| 116 37521 +los ||| the key ||| 0.00671141 0.145844 2.66517e-05 3.98563e-05 2.718 ||| 0-0 ||| 149 37521 +los ||| the kind of small ||| 1 0.145844 2.66517e-05 3.15438e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| the kind of ||| 0.00840336 0.145844 2.66517e-05 2.2074e-06 2.718 ||| 0-0 ||| 119 37521 +los ||| the kind ||| 0.00740741 0.145844 2.66517e-05 8.1707e-05 2.718 ||| 0-0 ||| 135 37521 +los ||| the kinds of ||| 0.0769231 0.145844 5.33035e-05 6.45726e-07 2.718 ||| 0-0 ||| 26 37521 +los ||| the kinds ||| 0.09375 0.145844 7.99552e-05 2.39015e-05 2.718 ||| 0-0 ||| 32 37521 +los ||| the land 's ||| 1 0.145844 2.66517e-05 4.65398e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| the land ||| 0.015873 0.145844 2.66517e-05 2.98846e-05 2.718 ||| 0-0 ||| 63 37521 +los ||| the lasting , ||| 1 0.145844 2.66517e-05 8.14774e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| the lasting ||| 0.5 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the late ||| 0.00357143 0.145844 2.66517e-05 6.77465e-05 2.718 ||| 0-0 ||| 280 37521 +los ||| the lead in ||| 0.0212766 0.145844 2.66517e-05 2.44916e-06 2.718 ||| 0-0 ||| 47 37521 +los ||| the lead ||| 0.025974 0.145844 5.33035e-05 0.000159395 2.718 ||| 0-0 ||| 77 37521 +los ||| the leadership 's ||| 0.2 0.145844 2.66517e-05 8.99738e-07 2.718 ||| 0-0 ||| 5 37521 +los ||| the leadership ||| 0.0131579 0.145844 2.66517e-05 5.77748e-05 2.718 ||| 0-0 ||| 76 37521 +los ||| the lenders ||| 0.2 0.224085 2.66517e-05 0.000155283 2.718 ||| 0-0 0-1 ||| 5 37521 +los ||| the less ||| 0.0227273 0.145844 2.66517e-05 0.000111592 2.718 ||| 0-0 ||| 44 37521 +los ||| the level of ||| 0.00819672 0.145844 2.66517e-05 1.88413e-06 2.718 ||| 0-0 ||| 122 37521 +los ||| the level ||| 0.00680272 0.145844 2.66517e-05 6.97409e-05 2.718 ||| 0-0 ||| 147 37521 +los ||| the like , ||| 0.111111 0.145844 2.66517e-05 5.2509e-05 2.718 ||| 0-0 ||| 9 37521 +los ||| the like ||| 0.037037 0.145844 2.66517e-05 0.000257056 2.718 ||| 0-0 ||| 27 37521 +los ||| the limited ||| 0.0833333 0.145844 2.66517e-05 2.19072e-05 2.718 ||| 0-0 ||| 12 37521 +los ||| the limits ||| 0.00990099 0.122218 2.66517e-05 0.000125429 2.718 ||| 0-0 0-1 ||| 101 37521 +los ||| the lines ||| 0.025641 0.145844 2.66517e-05 4.78337e-05 2.718 ||| 0-0 ||| 39 37521 +los ||| the lips ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the list are ||| 1 0.145844 2.66517e-05 1.76955e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| the list ||| 0.0119048 0.145844 2.66517e-05 2.39015e-05 2.718 ||| 0-0 ||| 84 37521 +los ||| the lives of ||| 0.0117647 0.145844 2.66517e-05 1.2384e-06 2.718 ||| 0-0 ||| 85 37521 +los ||| the lives ||| 0.019802 0.145844 5.33035e-05 4.58394e-05 2.718 ||| 0-0 ||| 101 37521 +los ||| the long ||| 0.00478469 0.145844 2.66517e-05 0.000229135 2.718 ||| 0-0 ||| 209 37521 +los ||| the lowest series ||| 0.047619 0.145844 2.66517e-05 3.11119e-10 2.718 ||| 0-0 ||| 21 37521 +los ||| the lowest tail ||| 0.333333 0.145844 2.66517e-05 3.88898e-11 2.718 ||| 0-0 ||| 3 37521 +los ||| the lowest ||| 0.0338983 0.145844 5.33035e-05 5.98305e-06 2.718 ||| 0-0 ||| 59 37521 +los ||| the main ||| 0.00307692 0.145844 2.66517e-05 2.58959e-05 2.718 ||| 0-0 ||| 325 37521 +los ||| the mainly ||| 0.5 0.145844 2.66517e-05 1.39604e-05 2.718 ||| 0-0 ||| 2 37521 +los ||| the major ||| 0.00555556 0.145844 2.66517e-05 7.77183e-05 2.718 ||| 0-0 ||| 180 37521 +los ||| the making ||| 0.05 0.145844 2.66517e-05 0.00014347 2.718 ||| 0-0 ||| 20 37521 +los ||| the management ||| 0.0588235 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 17 37521 +los ||| the many ||| 0.00854701 0.0738618 2.66517e-05 2.98539e-05 2.718 ||| 0-0 0-1 ||| 117 37521 +los ||| the massive ||| 0.0172414 0.145844 2.66517e-05 3.38733e-05 2.718 ||| 0-0 ||| 58 37521 +los ||| the matter , ||| 0.333333 0.145844 2.66517e-05 1.99432e-05 2.718 ||| 0-0 ||| 3 37521 +los ||| the matter ||| 0.0128205 0.145844 2.66517e-05 9.76311e-05 2.718 ||| 0-0 ||| 78 37521 +los ||| the meantime , earth ||| 1 0.145844 2.66517e-05 5.56083e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| the meantime , ||| 0.0181818 0.145844 2.66517e-05 1.22216e-06 2.718 ||| 0-0 ||| 55 37521 +los ||| the meantime ||| 0.0338983 0.145844 5.33035e-05 5.98305e-06 2.718 ||| 0-0 ||| 59 37521 +los ||| the measure ||| 0.0588235 0.145844 2.66517e-05 3.7862e-05 2.718 ||| 0-0 ||| 17 37521 +los ||| the members of my party to vote ||| 1 0.145844 2.66517e-05 8.05226e-19 2.718 ||| 0-0 ||| 1 37521 +los ||| the members of my party to ||| 1 0.145844 2.66517e-05 6.52533e-15 2.718 ||| 0-0 ||| 1 37521 +los ||| the members of my party ||| 1 0.145844 2.66517e-05 7.91044e-14 2.718 ||| 0-0 ||| 1 37521 +los ||| the members of my ||| 1 0.145844 2.66517e-05 3.80675e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| the members of ||| 0.0434783 0.145844 2.66517e-05 1.77637e-06 2.718 ||| 0-0 ||| 23 37521 +los ||| the members ||| 0.025641 0.145844 2.66517e-05 6.57522e-05 2.718 ||| 0-0 ||| 39 37521 +los ||| the men who built ||| 0.5 0.145844 2.66517e-05 4.51281e-12 2.718 ||| 0-0 ||| 2 37521 +los ||| the men who ||| 0.125 0.145844 2.66517e-05 3.86041e-08 2.718 ||| 0-0 ||| 8 37521 +los ||| the men ||| 0.0606061 0.145844 5.33035e-05 3.7862e-05 2.718 ||| 0-0 ||| 33 37521 +los ||| the minimum ||| 0.0909091 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 11 37521 +los ||| the miraculous ||| 0.333333 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the misery of ||| 0.0833333 0.145844 2.66517e-05 1.07759e-07 2.718 ||| 0-0 ||| 12 37521 +los ||| the misery ||| 0.0666667 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 15 37521 +los ||| the modified ||| 1 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the money to ||| 0.0384615 0.145844 2.66517e-05 6.08197e-06 2.718 ||| 0-0 ||| 26 37521 +los ||| the money ||| 0.0135135 0.145844 5.33035e-05 7.37296e-05 2.718 ||| 0-0 ||| 148 37521 +los ||| the moral accounting ||| 1 0.145844 2.66517e-05 8.29649e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| the moral ||| 0.1 0.145844 2.66517e-05 1.59548e-05 2.718 ||| 0-0 ||| 10 37521 +los ||| the more fundamental ||| 0.125 0.145844 2.66517e-05 4.25457e-08 2.718 ||| 0-0 ||| 8 37521 +los ||| the more so ||| 0.0666667 0.145844 2.66517e-05 1.4773e-06 2.718 ||| 0-0 ||| 15 37521 +los ||| the more ||| 0.00621118 0.145844 5.33035e-05 0.000655558 2.718 ||| 0-0 ||| 322 37521 +los ||| the most challenging ||| 0.166667 0.145844 2.66517e-05 1.18692e-08 2.718 ||| 0-0 ||| 6 37521 +los ||| the most important ||| 0.0136986 0.145844 2.66517e-05 4.35542e-08 2.718 ||| 0-0 ||| 73 37521 +los ||| the most ||| 0.0058997 0.145844 0.000106607 0.00020324 2.718 ||| 0-0 ||| 678 37521 +los ||| the much ||| 0.2 0.145844 2.66517e-05 0.000442347 2.718 ||| 0-0 ||| 5 37521 +los ||| the multitude ||| 0.125 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| the murderous ||| 0.142857 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 7 37521 +los ||| the name of ||| 0.0103093 0.145844 2.66517e-05 1.18452e-06 2.718 ||| 0-0 ||| 97 37521 +los ||| the name ||| 0.00793651 0.145844 2.66517e-05 4.3845e-05 2.718 ||| 0-0 ||| 126 37521 +los ||| the natural ||| 0.333333 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the need ||| 0.00194932 0.145844 2.66517e-05 0.000163383 2.718 ||| 0-0 ||| 513 37521 +los ||| the neighborhood , ||| 0.25 0.145844 2.66517e-05 1.22216e-06 2.718 ||| 0-0 ||| 4 37521 +los ||| the neighborhood ||| 0.111111 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 9 37521 +los ||| the new ||| 0.00174672 0.145844 5.33035e-05 0.000225177 2.718 ||| 0-0 ||| 1145 37521 +los ||| the noise ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the normal fashion ||| 0.333333 0.145844 2.66517e-05 1.04644e-09 2.718 ||| 0-0 ||| 3 37521 +los ||| the normal ||| 0.25 0.145844 2.66517e-05 1.79185e-05 2.718 ||| 0-0 ||| 4 37521 +los ||| the number ||| 0.00457666 0.145844 5.33035e-05 0.000105608 2.718 ||| 0-0 ||| 437 37521 +los ||| the numbers of ||| 0.142857 0.145844 2.66517e-05 6.99605e-07 2.718 ||| 0-0 ||| 7 37521 +los ||| the numbers ||| 0.0125 0.145844 2.66517e-05 2.58959e-05 2.718 ||| 0-0 ||| 80 37521 +los ||| the nuts ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the occurrence of ||| 0.25 0.145844 2.66517e-05 3.23277e-07 2.718 ||| 0-0 ||| 4 37521 +los ||| the occurrence ||| 0.25 0.145844 2.66517e-05 1.19661e-05 2.718 ||| 0-0 ||| 4 37521 +los ||| the old , ||| 0.0769231 0.145844 2.66517e-05 1.75051e-05 2.718 ||| 0-0 ||| 13 37521 +los ||| the old ||| 0.00263158 0.145844 2.66517e-05 8.56957e-05 2.718 ||| 0-0 ||| 380 37521 +los ||| the oldest ||| 0.166667 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 6 37521 +los ||| the one ||| 0.00735294 0.145844 2.66517e-05 0.00123343 2.718 ||| 0-0 ||| 136 37521 +los ||| the ones who are ||| 1 0.145844 2.66517e-05 7.67088e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| the ones who ||| 0.2 0.145844 2.66517e-05 1.03612e-07 2.718 ||| 0-0 ||| 5 37521 +los ||| the ones ||| 0.146341 0.145844 0.00015991 0.00010162 2.718 ||| 0-0 ||| 41 37521 +los ||| the ongoing ||| 0.0212766 0.145844 2.66517e-05 3.38733e-05 2.718 ||| 0-0 ||| 47 37521 +los ||| the only certain way to achieve strong ||| 1 0.0729943 2.66517e-05 1.96184e-21 2.718 ||| 0-0 0-1 ||| 1 37521 +los ||| the only certain way to achieve ||| 1 0.0729943 2.66517e-05 9.441e-18 2.718 ||| 0-0 0-1 ||| 1 37521 +los ||| the only certain way to ||| 1 0.0729943 2.66517e-05 7.2679e-14 2.718 ||| 0-0 0-1 ||| 1 37521 +los ||| the only certain way ||| 1 0.0729943 2.66517e-05 8.81062e-13 2.718 ||| 0-0 0-1 ||| 1 37521 +los ||| the only certain ||| 1 0.0729943 2.66517e-05 5.7976e-10 2.718 ||| 0-0 0-1 ||| 1 37521 +los ||| the only ||| 0.00122699 0.0729943 2.66517e-05 2.97618e-06 2.718 ||| 0-0 0-1 ||| 815 37521 +los ||| the organization ||| 0.0166667 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 60 37521 +los ||| the organizational ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the original ||| 0.285714 0.145844 5.33035e-05 1.39604e-05 2.718 ||| 0-0 ||| 7 37521 +los ||| the other ? would it have the ||| 0.5 0.145844 2.66517e-05 2.05728e-15 2.718 ||| 0-0 ||| 2 37521 +los ||| the other ? would it have ||| 0.5 0.145844 2.66517e-05 3.87219e-14 2.718 ||| 0-0 ||| 2 37521 +los ||| the other ? would it ||| 0.5 0.145844 2.66517e-05 7.50003e-12 2.718 ||| 0-0 ||| 2 37521 +los ||| the other ? would ||| 0.5 0.145844 2.66517e-05 2.81675e-10 2.718 ||| 0-0 ||| 2 37521 +los ||| the other ? ||| 0.2 0.145844 2.66517e-05 6.09172e-08 2.718 ||| 0-0 ||| 5 37521 +los ||| the other hand , have ||| 0.5 0.145844 2.66517e-05 1.80335e-10 2.718 ||| 0-0 ||| 2 37521 +los ||| the other hand , ||| 0.00526316 0.145844 2.66517e-05 3.4929e-08 2.718 ||| 0-0 ||| 190 37521 +los ||| the other hand ||| 0.00534759 0.145844 2.66517e-05 1.70994e-07 2.718 ||| 0-0 ||| 187 37521 +los ||| the other three refused ||| 1 0.145844 2.66517e-05 9.89319e-13 2.718 ||| 0-0 ||| 1 37521 +los ||| the other three ||| 0.166667 0.145844 2.66517e-05 3.04406e-08 2.718 ||| 0-0 ||| 6 37521 +los ||| the other ||| 0.00749064 0.145844 0.00015991 0.00036067 2.718 ||| 0-0 ||| 801 37521 +los ||| the others ||| 0.0227273 0.124975 2.66517e-05 0.000537554 2.718 ||| 0-0 0-1 ||| 44 37521 +los ||| the outcome of those ||| 1 0.209531 2.66517e-05 2.14402e-10 2.718 ||| 0-3 ||| 1 37521 +los ||| the outer reaches ||| 0.333333 0.145844 2.66517e-05 9.07429e-11 2.718 ||| 0-0 ||| 3 37521 +los ||| the outer ||| 0.333333 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the outrages ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the painful ||| 0.0625 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 16 37521 +los ||| the parliamentary ||| 0.333333 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the part of ||| 0.02 0.145844 2.66517e-05 5.11441e-06 2.718 ||| 0-0 ||| 50 37521 +los ||| the part ||| 0.0273973 0.145844 5.33035e-05 0.00018931 2.718 ||| 0-0 ||| 73 37521 +los ||| the partners is a ||| 1 0.145844 2.66517e-05 7.93496e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| the partners is ||| 1 0.145844 2.66517e-05 1.9723e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| the partners ||| 0.333333 0.145844 2.66517e-05 1.19661e-05 2.718 ||| 0-0 ||| 3 37521 +los ||| the past ||| 0.0042061 0.145844 0.000106607 6.17635e-05 2.718 ||| 0-0 ||| 951 37521 +los ||| the peak reached ||| 0.5 0.145844 2.66517e-05 6.60529e-10 2.718 ||| 0-0 ||| 2 37521 +los ||| the peak ||| 0.0384615 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 26 37521 +los ||| the people ||| 0.0101695 0.145844 7.99552e-05 0.000247085 2.718 ||| 0-0 ||| 295 37521 +los ||| the performance ||| 0.030303 0.145844 2.66517e-05 1.99128e-05 2.718 ||| 0-0 ||| 33 37521 +los ||| the perils ||| 0.166667 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 6 37521 +los ||| the periods ||| 1 0.160513 2.66517e-05 7.16739e-05 2.718 ||| 0-0 0-1 ||| 1 37521 +los ||| the perpetrators ||| 0.025 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 40 37521 +los ||| the pipeline ||| 0.0555556 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 18 37521 +los ||| the plans ||| 0.125 0.151689 2.66517e-05 0.000206062 2.718 ||| 0-0 0-1 ||| 8 37521 +los ||| the playing field between ||| 0.125 0.145844 2.66517e-05 7.55839e-13 2.718 ||| 0-0 ||| 8 37521 +los ||| the playing field ||| 0.05 0.145844 2.66517e-05 2.32781e-09 2.718 ||| 0-0 ||| 20 37521 +los ||| the playing ||| 0.0833333 0.145844 2.66517e-05 3.58676e-05 2.718 ||| 0-0 ||| 12 37521 +los ||| the police ||| 0.00917431 0.145844 2.66517e-05 1.39604e-05 2.718 ||| 0-0 ||| 109 37521 +los ||| the political ||| 0.0454545 0.145844 5.33035e-05 0.000111592 2.718 ||| 0-0 ||| 44 37521 +los ||| the poor showing ||| 0.25 0.145844 2.66517e-05 6.14878e-09 2.718 ||| 0-0 ||| 4 37521 +los ||| the poor ||| 0.00244499 0.145844 2.66517e-05 4.98281e-05 2.718 ||| 0-0 ||| 409 37521 +los ||| the poorest ||| 0.0175439 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 57 37521 +los ||| the popular ||| 0.111111 0.145844 2.66517e-05 1.99128e-05 2.718 ||| 0-0 ||| 9 37521 +los ||| the potential ||| 0.0125786 0.145844 5.33035e-05 4.3845e-05 2.718 ||| 0-0 ||| 159 37521 +los ||| the present time , ||| 0.5 0.145844 2.66517e-05 4.566e-09 2.718 ||| 0-0 ||| 2 37521 +los ||| the present time ||| 0.5 0.145844 2.66517e-05 2.23527e-08 2.718 ||| 0-0 ||| 2 37521 +los ||| the present ||| 0.0181818 0.145844 2.66517e-05 2.39015e-05 2.718 ||| 0-0 ||| 55 37521 +los ||| the prevalence ||| 0.0555556 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 18 37521 +los ||| the previous ||| 0.0416667 0.145844 2.66517e-05 1.39604e-05 2.718 ||| 0-0 ||| 24 37521 +los ||| the prime minister , ||| 0.1 0.145844 2.66517e-05 6.97651e-10 2.718 ||| 0-0 ||| 10 37521 +los ||| the prime minister ||| 0.0263158 0.145844 2.66517e-05 3.41533e-09 2.718 ||| 0-0 ||| 38 37521 +los ||| the prime ||| 0.0181818 0.145844 2.66517e-05 4.78337e-05 2.718 ||| 0-0 ||| 55 37521 +los ||| the principle ||| 0.0075188 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 133 37521 +los ||| the problem , rather ||| 1 0.145844 2.66517e-05 2.71234e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| the problem , ||| 0.0232558 0.145844 2.66517e-05 7.3267e-06 2.718 ||| 0-0 ||| 43 37521 +los ||| the problem ||| 0.00289855 0.145844 5.33035e-05 3.58676e-05 2.718 ||| 0-0 ||| 690 37521 +los ||| the process ||| 0.00694444 0.145844 5.33035e-05 7.17352e-05 2.718 ||| 0-0 ||| 288 37521 +los ||| the profit ||| 0.5 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the public ||| 0.00796813 0.145844 5.33035e-05 0.000107603 2.718 ||| 0-0 ||| 251 37521 +los ||| the rate of ||| 0.0121951 0.145844 2.66517e-05 2.58373e-06 2.718 ||| 0-0 ||| 82 37521 +los ||| the rate ||| 0.00869565 0.145844 2.66517e-05 9.56367e-05 2.718 ||| 0-0 ||| 115 37521 +los ||| the rates ||| 0.2 0.145844 2.66517e-05 5.37861e-05 2.718 ||| 0-0 ||| 5 37521 +los ||| the reality ||| 0.00699301 0.145844 2.66517e-05 1.99128e-05 2.718 ||| 0-0 ||| 143 37521 +los ||| the realization ||| 0.0434783 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 23 37521 +los ||| the realm ||| 0.04 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 25 37521 +los ||| the recent ||| 0.00448431 0.154837 5.33035e-05 0.00123637 2.718 ||| 0-0 0-1 ||| 446 37521 +los ||| the region 's ||| 0.0384615 0.145844 5.33035e-05 4.65398e-07 2.718 ||| 0-0 ||| 52 37521 +los ||| the region ||| 0.00184502 0.145844 5.33035e-05 2.98846e-05 2.718 ||| 0-0 ||| 1084 37521 +los ||| the regional ||| 0.333333 0.145844 2.66517e-05 2.58959e-05 2.718 ||| 0-0 ||| 3 37521 +los ||| the regions ||| 0.0384615 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 26 37521 +los ||| the relative ||| 0.03125 0.145844 2.66517e-05 2.98846e-05 2.718 ||| 0-0 ||| 32 37521 +los ||| the relatively ||| 0.0454545 0.145844 2.66517e-05 1.79185e-05 2.718 ||| 0-0 ||| 22 37521 +los ||| the relevant pools ||| 0.25 0.145844 2.66517e-05 2.59265e-11 2.718 ||| 0-0 ||| 4 37521 +los ||| the relevant ||| 0.142857 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 7 37521 +los ||| the remains ||| 0.0909091 0.145844 2.66517e-05 4.98281e-05 2.718 ||| 0-0 ||| 11 37521 +los ||| the research ||| 0.0357143 0.145844 2.66517e-05 2.39015e-05 2.718 ||| 0-0 ||| 28 37521 +los ||| the residential ||| 1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the rest of ||| 0.00434783 0.145844 2.66517e-05 1.07676e-06 2.718 ||| 0-0 ||| 230 37521 +los ||| the rest ||| 0.0017301 0.145844 2.66517e-05 3.98563e-05 2.718 ||| 0-0 ||| 578 37521 +los ||| the result should be something closer ||| 0.333333 0.145844 2.66517e-05 5.87603e-17 2.718 ||| 0-0 ||| 3 37521 +los ||| the result should be something ||| 0.333333 0.145844 2.66517e-05 3.35199e-13 2.718 ||| 0-0 ||| 3 37521 +los ||| the result should be ||| 0.25 0.145844 2.66517e-05 1.61308e-09 2.718 ||| 0-0 ||| 4 37521 +los ||| the result should ||| 0.2 0.145844 2.66517e-05 1.56513e-07 2.718 ||| 0-0 ||| 5 37521 +los ||| the result ||| 0.00471698 0.145844 5.33035e-05 0.000127516 2.718 ||| 0-0 ||| 424 37521 +los ||| the rich by ||| 1 0.145844 2.66517e-05 1.75406e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| the rich ||| 0.0129032 0.145844 5.33035e-05 2.58959e-05 2.718 ||| 0-0 ||| 155 37521 +los ||| the right ||| 0.00248139 0.145844 2.66517e-05 0.00011558 2.718 ||| 0-0 ||| 403 37521 +los ||| the risk ||| 0.00273224 0.145844 2.66517e-05 4.98281e-05 2.718 ||| 0-0 ||| 366 37521 +los ||| the river by a ||| 1 0.145844 2.66517e-05 1.08697e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| the river by ||| 1 0.145844 2.66517e-05 2.70175e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| the river ||| 0.111111 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 9 37521 +los ||| the road for ||| 0.333333 0.145844 2.66517e-05 2.08715e-07 2.718 ||| 0-0 ||| 3 37521 +los ||| the road ||| 0.00819672 0.145844 2.66517e-05 4.3845e-05 2.718 ||| 0-0 ||| 122 37521 +los ||| the rosy spectacles ||| 0.5 0.145844 2.66517e-05 2.59265e-11 2.718 ||| 0-0 ||| 2 37521 +los ||| the rosy ||| 0.333333 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the route ||| 0.142857 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 7 37521 +los ||| the royal murders lit ||| 1 0.145844 2.66517e-05 2.27505e-15 2.718 ||| 0-0 ||| 1 37521 +los ||| the royal murders ||| 1 0.145844 2.66517e-05 1.16669e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| the royal ||| 1 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the rug , ||| 1 0.145844 2.66517e-05 4.07387e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| the rug ||| 0.333333 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the rumor ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the run-up ||| 0.0188679 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 53 37521 +los ||| the safe side ||| 0.333333 0.145844 2.66517e-05 1.30965e-08 2.718 ||| 0-0 ||| 3 37521 +los ||| the safe ||| 0.2 0.145844 2.66517e-05 4.3845e-05 2.718 ||| 0-0 ||| 5 37521 +los ||| the same extent from ||| 1 0.145844 2.66517e-05 1.74748e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| the same extent ||| 0.25 0.145844 2.66517e-05 1.0594e-08 2.718 ||| 0-0 ||| 4 37521 +los ||| the same time taking care ||| 1 0.145844 2.66517e-05 9.65761e-15 2.718 ||| 0-0 ||| 1 37521 +los ||| the same time taking ||| 1 0.145844 2.66517e-05 5.71795e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| the same time ||| 0.0169492 0.145844 2.66517e-05 1.17388e-07 2.718 ||| 0-0 ||| 59 37521 +los ||| the same ||| 0.00373832 0.145844 0.00015991 0.000125521 2.718 ||| 0-0 ||| 1605 37521 +los ||| the science of agriculture ||| 1 0.145844 2.66517e-05 9.4397e-12 2.718 ||| 0-0 ||| 1 37521 +los ||| the science of ||| 0.0909091 0.145844 2.66517e-05 4.84087e-07 2.718 ||| 0-0 ||| 11 37521 +los ||| the science ||| 0.0285714 0.145844 2.66517e-05 1.79185e-05 2.718 ||| 0-0 ||| 35 37521 +los ||| the sciences ||| 0.142857 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 7 37521 +los ||| the seams ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the sectarian divide during his 40 years ||| 0.5 0.145844 2.66517e-05 9.78763e-26 2.718 ||| 0-0 ||| 2 37521 +los ||| the sectarian divide during his 40 ||| 0.5 0.145844 2.66517e-05 2.64388e-22 2.718 ||| 0-0 ||| 2 37521 +los ||| the sectarian divide during his ||| 0.5 0.145844 2.66517e-05 1.35583e-17 2.718 ||| 0-0 ||| 2 37521 +los ||| the sectarian divide during ||| 0.5 0.145844 2.66517e-05 1.3557e-14 2.718 ||| 0-0 ||| 2 37521 +los ||| the sectarian divide ||| 0.5 0.145844 2.66517e-05 9.07429e-11 2.718 ||| 0-0 ||| 2 37521 +los ||| the sectarian ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the seeds ||| 0.037037 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 27 37521 +los ||| the sex ||| 0.5 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the share ||| 0.0131579 0.145844 2.66517e-05 4.98281e-05 2.718 ||| 0-0 ||| 76 37521 +los ||| the shelling ||| 0.333333 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the shock ||| 0.0384615 0.145844 2.66517e-05 1.39604e-05 2.718 ||| 0-0 ||| 26 37521 +los ||| the single ||| 0.0243902 0.145844 2.66517e-05 9.1648e-05 2.718 ||| 0-0 ||| 41 37521 +los ||| the size of ||| 0.00704225 0.145844 2.66517e-05 1.18452e-06 2.718 ||| 0-0 ||| 142 37521 +los ||| the size ||| 0.010929 0.145844 5.33035e-05 4.3845e-05 2.718 ||| 0-0 ||| 183 37521 +los ||| the slogan " ||| 0.142857 0.145844 2.66517e-05 1.992e-08 2.718 ||| 0-0 ||| 7 37521 +los ||| the slogan ||| 0.05 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 20 37521 +los ||| the so ||| 0.25 0.145844 2.66517e-05 0.000691426 2.718 ||| 0-0 ||| 4 37521 +los ||| the so-called " ||| 0.00854701 0.145844 2.66517e-05 1.49246e-07 2.718 ||| 0-0 ||| 117 37521 +los ||| the so-called ||| 0.0041841 0.145844 2.66517e-05 2.98846e-05 2.718 ||| 0-0 ||| 239 37521 +los ||| the sort of ||| 0.025 0.145844 2.66517e-05 8.61244e-07 2.718 ||| 0-0 ||| 40 37521 +los ||| the sort ||| 0.0172414 0.145844 2.66517e-05 3.18789e-05 2.718 ||| 0-0 ||| 58 37521 +los ||| the source of the IPCC 's ||| 0.5 0.145844 2.66517e-05 9.26369e-15 2.718 ||| 0-0 ||| 2 37521 +los ||| the source of the IPCC ||| 0.5 0.145844 2.66517e-05 5.94848e-13 2.718 ||| 0-0 ||| 2 37521 +los ||| the source of the ||| 0.0555556 0.145844 2.66517e-05 4.57575e-08 2.718 ||| 0-0 ||| 18 37521 +los ||| the source of ||| 0.0188679 0.145844 2.66517e-05 8.61244e-07 2.718 ||| 0-0 ||| 53 37521 +los ||| the source ||| 0.0135135 0.145844 2.66517e-05 3.18789e-05 2.718 ||| 0-0 ||| 74 37521 +los ||| the sovereign-debt crisis ||| 0.333333 0.145844 2.66517e-05 3.75536e-10 2.718 ||| 0-0 ||| 3 37521 +los ||| the sovereign-debt ||| 1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the specimen and ||| 0.5 0.145844 2.66517e-05 1.67468e-08 2.718 ||| 0-0 ||| 2 37521 +los ||| the specimen ||| 0.333333 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the spending ||| 0.1 0.145844 2.66517e-05 3.7862e-05 2.718 ||| 0-0 ||| 10 37521 +los ||| the standard ||| 0.04 0.145844 2.66517e-05 3.18789e-05 2.718 ||| 0-0 ||| 25 37521 +los ||| the start ||| 0.00900901 0.145844 2.66517e-05 5.37861e-05 2.718 ||| 0-0 ||| 111 37521 +los ||| the state 's ||| 0.166667 0.145844 2.66517e-05 1.67572e-06 2.718 ||| 0-0 ||| 6 37521 +los ||| the state economy 's ||| 1 0.145844 2.66517e-05 4.89645e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| the state economy ||| 1 0.145844 2.66517e-05 3.14415e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| the state ||| 0.00505051 0.145844 5.33035e-05 0.000107603 2.718 ||| 0-0 ||| 396 37521 +los ||| the stipulated ||| 0.5 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the story ||| 0.0183486 0.145844 5.33035e-05 5.77748e-05 2.718 ||| 0-0 ||| 109 37521 +los ||| the student ||| 0.25 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 4 37521 +los ||| the subjects ||| 0.25 0.124204 2.66517e-05 3.58369e-05 2.718 ||| 0-0 0-1 ||| 4 37521 +los ||| the subsequent ||| 0.0322581 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 31 37521 +los ||| the systems ||| 0.111111 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 9 37521 +los ||| the table ||| 0.010989 0.145844 2.66517e-05 2.19072e-05 2.718 ||| 0-0 ||| 91 37521 +los ||| the tanks ||| 0.2 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 5 37521 +los ||| the tens of ||| 0.0909091 0.145844 2.66517e-05 1.07759e-07 2.718 ||| 0-0 ||| 11 37521 +los ||| the tens ||| 0.0833333 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 12 37521 +los ||| the territorial ||| 1 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the terrorist ||| 0.1 0.0838346 2.66517e-05 3.28607e-05 2.718 ||| 0-0 0-1 ||| 10 37521 +los ||| the threat to the new global commons ||| 1 0.145844 2.66517e-05 2.98854e-19 2.718 ||| 0-0 ||| 1 37521 +los ||| the threat to the new global ||| 1 0.145844 2.66517e-05 4.59775e-14 2.718 ||| 0-0 ||| 1 37521 +los ||| the threat to the new ||| 1 0.145844 2.66517e-05 8.32925e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| the threat to the ||| 0.333333 0.145844 2.66517e-05 1.13493e-07 2.718 ||| 0-0 ||| 3 37521 +los ||| the threat to ||| 0.0588235 0.145844 2.66517e-05 2.13615e-06 2.718 ||| 0-0 ||| 17 37521 +los ||| the threat ||| 0.00696864 0.145844 5.33035e-05 2.58959e-05 2.718 ||| 0-0 ||| 287 37521 +los ||| the throats of ||| 1 0.145844 2.66517e-05 1.07759e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| the throats ||| 1 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the time horizons ||| 0.333333 0.145844 2.66517e-05 1.86512e-09 2.718 ||| 0-0 ||| 3 37521 +los ||| the time ||| 0.00215983 0.145844 2.66517e-05 0.000286941 2.718 ||| 0-0 ||| 463 37521 +los ||| the top rate ||| 0.333333 0.145844 2.66517e-05 3.41614e-08 2.718 ||| 0-0 ||| 3 37521 +los ||| the top ||| 0.0330189 0.145844 0.000186562 0.000109597 2.718 ||| 0-0 ||| 212 37521 +los ||| the total . ||| 0.5 0.145844 2.66517e-05 2.29104e-07 2.718 ||| 0-0 ||| 2 37521 +los ||| the total ||| 0.03125 0.145844 2.66517e-05 4.98281e-05 2.718 ||| 0-0 ||| 32 37521 +los ||| the trading floors feeling rather ||| 0.125 0.145844 2.66517e-05 2.49164e-18 2.718 ||| 0-0 ||| 8 37521 +los ||| the trading floors feeling ||| 0.125 0.145844 2.66517e-05 6.73053e-15 2.718 ||| 0-0 ||| 8 37521 +los ||| the trading floors ||| 0.125 0.145844 2.66517e-05 1.03706e-10 2.718 ||| 0-0 ||| 8 37521 +los ||| the trading ||| 0.0909091 0.145844 2.66517e-05 1.59548e-05 2.718 ||| 0-0 ||| 11 37521 +los ||| the traditional ||| 0.09375 0.0850187 7.99552e-05 4.47962e-05 2.718 ||| 0-0 0-1 ||| 32 37521 +los ||| the trafficked ||| 1 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| the treatment ||| 0.0294118 0.145844 2.66517e-05 1.59548e-05 2.718 ||| 0-0 ||| 34 37521 +los ||| the tried ||| 0.25 0.145844 2.66517e-05 3.38733e-05 2.718 ||| 0-0 ||| 4 37521 +los ||| the true ||| 0.00900901 0.145844 2.66517e-05 5.37861e-05 2.718 ||| 0-0 ||| 111 37521 +los ||| the two APP enzymes , called beta-secretase ||| 1 0.145844 2.66517e-05 1.74202e-24 2.718 ||| 0-0 ||| 1 37521 +los ||| the two APP enzymes , called ||| 1 0.145844 2.66517e-05 2.68003e-19 2.718 ||| 0-0 ||| 1 37521 +los ||| the two APP enzymes , ||| 1 0.145844 2.66517e-05 8.25386e-16 2.718 ||| 0-0 ||| 1 37521 +los ||| the two APP enzymes ||| 1 0.145844 2.66517e-05 4.04065e-15 2.718 ||| 0-0 ||| 1 37521 +los ||| the two APP ||| 1 0.145844 2.66517e-05 6.21639e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| the two ||| 0.00637959 0.145844 0.000106607 9.56367e-05 2.718 ||| 0-0 ||| 627 37521 +los ||| the upheaval ||| 0.125 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| the upper hand ||| 0.0666667 0.145844 5.33035e-05 7.56417e-09 2.718 ||| 0-0 ||| 30 37521 +los ||| the upper ||| 0.0833333 0.145844 5.33035e-05 1.59548e-05 2.718 ||| 0-0 ||| 24 37521 +los ||| the varied ||| 0.5 0.145844 2.66517e-05 9.97175e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the various ||| 0.0142857 0.145844 2.66517e-05 1.99128e-05 2.718 ||| 0-0 ||| 70 37521 +los ||| the very bottom ||| 0.333333 0.145844 2.66517e-05 2.85992e-08 2.718 ||| 0-0 ||| 3 37521 +los ||| the very ||| 0.0451613 0.145844 0.000186562 0.000259051 2.718 ||| 0-0 ||| 155 37521 +los ||| the victorious ||| 0.5 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| the vital ||| 0.166667 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 6 37521 +los ||| the wake ||| 0.0517241 0.145844 7.99552e-05 1.99128e-05 2.718 ||| 0-0 ||| 58 37521 +los ||| the warring ||| 0.333333 0.145844 2.66517e-05 1.99435e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| the water ||| 0.0666667 0.145844 2.66517e-05 2.58959e-05 2.718 ||| 0-0 ||| 15 37521 +los ||| the waves ||| 0.2 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 5 37521 +los ||| the way , ||| 0.0588235 0.145844 2.66517e-05 9.52471e-05 2.718 ||| 0-0 ||| 17 37521 +los ||| the way ||| 0.00473373 0.145844 0.000106607 0.000466279 2.718 ||| 0-0 ||| 845 37521 +los ||| the weak ||| 0.0222222 0.145844 2.66517e-05 1.99128e-05 2.718 ||| 0-0 ||| 45 37521 +los ||| the well ||| 0.25 0.145844 2.66517e-05 0.000532031 2.718 ||| 0-0 ||| 4 37521 +los ||| the whistle ||| 0.166667 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-0 ||| 6 37521 +los ||| the whole range of ||| 1 0.145844 2.66517e-05 1.22366e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| the whole range ||| 1 0.145844 2.66517e-05 4.52937e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| the whole ||| 0.0114943 0.145844 5.33035e-05 2.78902e-05 2.718 ||| 0-0 ||| 174 37521 +los ||| the will of ||| 0.04 0.145844 2.66517e-05 5.72773e-05 2.718 ||| 0-0 ||| 25 37521 +los ||| the will ||| 0.0105263 0.145844 2.66517e-05 0.00212012 2.718 ||| 0-0 ||| 95 37521 +los ||| the world 's leading ||| 1 0.145844 2.66517e-05 7.34343e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| the world 's ||| 0.133721 0.145844 0.00061299 4.18906e-06 2.718 ||| 0-0 ||| 172 37521 +los ||| the world ||| 0.00986958 0.145844 0.000746249 0.000268992 2.718 ||| 0-0 ||| 2837 37521 +los ||| the worst ||| 0.004 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-0 ||| 250 37521 +los ||| the wrong ||| 0.0588235 0.145844 2.66517e-05 2.78902e-05 2.718 ||| 0-0 ||| 17 37521 +los ||| the years ||| 0.00444444 0.145844 2.66517e-05 0.000113586 2.718 ||| 0-0 ||| 225 37521 +los ||| the young ||| 0.012987 0.145844 2.66517e-05 2.98846e-05 2.718 ||| 0-0 ||| 77 37521 +los ||| the ||| 0.14677 0.145844 0.810959 0.306823 2.718 ||| 0-0 ||| 207317 37521 +los ||| their best ||| 0.03125 0.0188051 2.66517e-05 4.33394e-07 2.718 ||| 0-0 ||| 32 37521 +los ||| their capital ||| 0.037037 0.0188051 2.66517e-05 2.56872e-07 2.718 ||| 0-0 ||| 27 37521 +los ||| their constitutive ||| 1 0.509403 2.66517e-05 2.39813e-08 2.718 ||| 0-0 0-1 ||| 1 37521 +los ||| their course ||| 0.2 0.0188051 2.66517e-05 1.05963e-06 2.718 ||| 0-0 ||| 5 37521 +los ||| their criticism ||| 0.25 0.0188051 2.66517e-05 9.64197e-08 2.718 ||| 0-0 ||| 4 37521 +los ||| their early ||| 0.142857 0.0328767 2.66517e-05 6.28057e-07 2.718 ||| 0-1 ||| 7 37521 +los ||| their four ||| 1 0.0188051 2.66517e-05 1.60452e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| their humanity initially arises ||| 1 0.0188051 2.66517e-05 1.22212e-17 2.718 ||| 0-0 ||| 1 37521 +los ||| their humanity initially ||| 1 0.0188051 2.66517e-05 6.26728e-13 2.718 ||| 0-0 ||| 1 37521 +los ||| their humanity ||| 0.5 0.0188051 2.66517e-05 3.21399e-08 2.718 ||| 0-0 ||| 2 37521 +los ||| their junior partners ||| 0.333333 0.0544413 2.66517e-05 1.29252e-11 2.718 ||| 0-2 ||| 3 37521 +los ||| their legitimate ||| 1 0.007722 2.66517e-05 3.49518e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| their lives ||| 0.00934579 0.0188051 2.66517e-05 3.69362e-07 2.718 ||| 0-0 ||| 107 37521 +los ||| their money ||| 0.0142857 0.0188051 2.66517e-05 5.94094e-07 2.718 ||| 0-0 ||| 70 37521 +los ||| their organization 's ||| 1 0.0275755 2.66517e-05 1.25882e-09 2.718 ||| 0-0 0-2 ||| 1 37521 +los ||| their own ||| 0.00294985 0.0188051 7.99552e-05 5.17007e-06 2.718 ||| 0-0 ||| 1017 37521 +los ||| their part ||| 0.0212766 0.0188051 2.66517e-05 1.52541e-06 2.718 ||| 0-0 ||| 47 37521 +los ||| their rights ||| 0.0344828 0.0680597 2.66517e-05 1.98885e-06 2.718 ||| 0-1 ||| 29 37521 +los ||| their way ||| 0.016129 0.0188051 2.66517e-05 3.75715e-06 2.718 ||| 0-0 ||| 62 37521 +los ||| their wealth ||| 0.0217391 0.0188051 2.66517e-05 2.24732e-07 2.718 ||| 0-0 ||| 46 37521 +los ||| their ||| 0.0134535 0.0188051 0.00509048 0.0024723 2.718 ||| 0-0 ||| 14197 37521 +los ||| them , or even that he has ||| 1 0.0948535 2.66517e-05 8.82674e-17 2.718 ||| 0-0 ||| 1 37521 +los ||| them , or even that he ||| 1 0.0948535 2.66517e-05 2.65978e-14 2.718 ||| 0-0 ||| 1 37521 +los ||| them , or even that ||| 1 0.0948535 2.66517e-05 8.51483e-12 2.718 ||| 0-0 ||| 1 37521 +los ||| them , or even ||| 1 0.0948535 2.66517e-05 1.04223e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| them , or ||| 0.25 0.0948535 2.66517e-05 1.14632e-06 2.718 ||| 0-0 ||| 4 37521 +los ||| them , ||| 0.0222222 0.0948535 0.000133259 0.000817164 2.718 ||| 0-0 ||| 225 37521 +los ||| them . ||| 0.00311526 0.0948535 2.66517e-05 1.83934e-05 2.718 ||| 0-0 ||| 321 37521 +los ||| them accountable ||| 0.166667 0.0948535 2.66517e-05 1.0401e-07 2.718 ||| 0-0 ||| 6 37521 +los ||| them apart ||| 0.5 0.0948535 2.66517e-05 6.75668e-07 2.718 ||| 0-0 ||| 2 37521 +los ||| them he did ||| 0.333333 0.0948535 2.66517e-05 2.00449e-08 2.718 ||| 0-0 ||| 3 37521 +los ||| them he ||| 0.333333 0.0948535 2.66517e-05 1.2496e-05 2.718 ||| 0-0 ||| 3 37521 +los ||| them in ||| 0.0153846 0.0948535 2.66517e-05 6.14677e-05 2.718 ||| 0-0 ||| 65 37521 +los ||| them on board ||| 1 0.0948535 2.66517e-05 1.32437e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| them on ||| 0.133333 0.0948535 5.33035e-05 1.56916e-05 2.718 ||| 0-0 ||| 15 37521 +los ||| them to be ||| 0.0434783 0.0948535 2.66517e-05 3.40105e-06 2.718 ||| 0-0 ||| 23 37521 +los ||| them to ||| 0.0196078 0.0948535 7.99552e-05 0.000329994 2.718 ||| 0-0 ||| 153 37521 +los ||| them together ||| 0.5 0.0948535 2.66517e-05 1.94859e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| them up ||| 0.2 0.0948535 2.66517e-05 1.2496e-05 2.718 ||| 0-0 ||| 5 37521 +los ||| them ||| 0.0595855 0.0948535 0.00306495 0.0040004 2.718 ||| 0-0 ||| 1930 37521 +los ||| then of course the ||| 1 0.145844 2.66517e-05 3.09159e-09 2.718 ||| 0-3 ||| 1 37521 +los ||| then the ||| 0.0215054 0.145844 5.33035e-05 0.000266997 2.718 ||| 0-1 ||| 93 37521 +los ||| theorists ||| 0.0322581 0.363636 2.66517e-05 0.0001947 2.718 ||| 0-0 ||| 31 37521 +los ||| there are problems with ||| 0.5 0.0012991 2.66517e-05 5.59933e-13 2.718 ||| 0-3 ||| 2 37521 +los ||| these assets ||| 0.0588235 0.0121131 2.66517e-05 6.71279e-08 2.718 ||| 0-1 ||| 17 37521 +los ||| these forests ||| 1 0.316901 2.66517e-05 3.35639e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| these issues ||| 0.0128205 0.0345065 2.66517e-05 3.25054e-07 2.718 ||| 0-0 0-1 ||| 78 37521 +los ||| these terms ||| 0.125 0.0081796 2.66517e-05 2.40645e-07 2.718 ||| 0-0 ||| 8 37521 +los ||| these were never provided ||| 0.25 0.0081796 2.66517e-05 3.95373e-14 2.718 ||| 0-0 ||| 4 37521 +los ||| these were never ||| 0.25 0.0081796 2.66517e-05 1.64533e-10 2.718 ||| 0-0 ||| 4 37521 +los ||| these were ||| 0.025641 0.0081796 2.66517e-05 1.01313e-06 2.718 ||| 0-0 ||| 39 37521 +los ||| these ||| 0.00501756 0.0081796 0.000799552 0.0004575 2.718 ||| 0-0 ||| 5979 37521 +los ||| they are also ||| 0.025 0.0054063 2.66517e-05 4.45542e-09 2.718 ||| 0-0 ||| 40 37521 +los ||| they are ||| 0.00341064 0.0054063 0.000133259 4.90038e-06 2.718 ||| 0-0 ||| 1466 37521 +los ||| they follow the ||| 0.5 0.145844 2.66517e-05 3.20055e-07 2.718 ||| 0-2 ||| 2 37521 +los ||| they have even ||| 0.333333 0.0054063 2.66517e-05 3.10703e-09 2.718 ||| 0-0 ||| 3 37521 +los ||| they have ||| 0.00170358 0.0054063 2.66517e-05 3.41732e-06 2.718 ||| 0-0 ||| 587 37521 +los ||| they treat the ||| 1 0.145844 2.66517e-05 2.46342e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| they were ||| 0.0026178 0.0054063 2.66517e-05 1.46578e-06 2.718 ||| 0-0 ||| 382 37521 +los ||| they will ||| 0.00645161 0.0054063 2.66517e-05 4.57366e-06 2.718 ||| 0-0 ||| 155 37521 +los ||| they ||| 0.00680107 0.0054063 0.000746249 0.0006619 2.718 ||| 0-0 ||| 4117 37521 +los ||| things out ||| 0.1 0.0050566 2.66517e-05 6.10543e-08 2.718 ||| 0-1 ||| 10 37521 +los ||| thinkers ||| 0.0178571 0.192308 2.66517e-05 9.73e-05 2.718 ||| 0-0 ||| 56 37521 +los ||| this summer if the United States government ||| 1 0.145844 2.66517e-05 2.66813e-22 2.718 ||| 0-3 ||| 1 37521 +los ||| this summer if the United States ||| 1 0.145844 2.66517e-05 5.33519e-19 2.718 ||| 0-3 ||| 1 37521 +los ||| this summer if the United ||| 1 0.145844 2.66517e-05 1.86741e-15 2.718 ||| 0-3 ||| 1 37521 +los ||| this summer if the ||| 1 0.145844 2.66517e-05 5.04432e-12 2.718 ||| 0-3 ||| 1 37521 +los ||| those America 's ||| 1 0.209531 2.66517e-05 1.41779e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| those America ||| 1 0.209531 2.66517e-05 9.10403e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| those abroad ||| 1 0.209531 2.66517e-05 4.4735e-07 2.718 ||| 0-0 ||| 1 37521 +los ||| those aged ||| 0.25 0.209531 2.66517e-05 9.95813e-08 2.718 ||| 0-0 ||| 4 37521 +los ||| those at the ||| 0.0769231 0.209531 2.66517e-05 1.20787e-06 2.718 ||| 0-0 ||| 13 37521 +los ||| those at ||| 0.0434783 0.209531 2.66517e-05 2.27344e-05 2.718 ||| 0-0 ||| 23 37521 +los ||| those committed ||| 0.166667 0.209531 2.66517e-05 4.9714e-07 2.718 ||| 0-0 ||| 6 37521 +los ||| those firms ||| 0.2 0.209531 2.66517e-05 5.46931e-07 2.718 ||| 0-0 ||| 5 37521 +los ||| those funds ||| 0.142857 0.209531 2.66517e-05 6.96303e-07 2.718 ||| 0-0 ||| 7 37521 +los ||| those goals by ||| 0.5 0.209531 2.66517e-05 2.3608e-09 2.718 ||| 0-0 ||| 2 37521 +los ||| those goals ||| 0.2 0.209531 2.66517e-05 3.48535e-07 2.718 ||| 0-0 ||| 5 37521 +los ||| those goods ||| 0.333333 0.209531 2.66517e-05 3.48535e-07 2.718 ||| 0-0 ||| 3 37521 +los ||| those in the ||| 0.0227273 0.209531 2.66517e-05 6.25338e-06 2.718 ||| 0-0 ||| 44 37521 +los ||| those in ||| 0.028436 0.209531 0.00015991 0.000117701 2.718 ||| 0-0 ||| 211 37521 +los ||| those leading ||| 0.333333 0.209531 2.66517e-05 1.34282e-06 2.718 ||| 0-0 ||| 3 37521 +los ||| those made ||| 0.125 0.209531 2.66517e-05 8.45675e-06 2.718 ||| 0-0 ||| 8 37521 +los ||| those of ||| 0.0230415 0.209531 0.000133259 0.000206946 2.718 ||| 0-0 ||| 217 37521 +los ||| those on the ||| 0.153846 0.209531 5.33035e-05 1.59637e-06 2.718 ||| 0-0 ||| 13 37521 +los ||| those on ||| 0.117647 0.209531 5.33035e-05 3.00467e-05 2.718 ||| 0-0 ||| 17 37521 +los ||| those problems worse ||| 1 0.209531 2.66517e-05 7.75142e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| those problems ||| 0.1 0.209531 2.66517e-05 9.95047e-07 2.718 ||| 0-0 ||| 10 37521 +los ||| those receiving aid ||| 1 0.209531 2.66517e-05 1.77753e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| those receiving ||| 0.333333 0.209531 2.66517e-05 2.48953e-07 2.718 ||| 0-0 ||| 3 37521 +los ||| those same lobbyists ||| 1 0.209531 2.66517e-05 4.07387e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| those same ||| 0.0666667 0.209531 2.66517e-05 3.13375e-06 2.718 ||| 0-0 ||| 15 37521 +los ||| those who are ||| 0.0285714 0.209531 5.33035e-05 5.78231e-08 2.718 ||| 0-0 ||| 70 37521 +los ||| those who had caused the problem , ||| 1 0.145844 2.66517e-05 5.17505e-19 2.718 ||| 0-4 ||| 1 37521 +los ||| those who had caused the problem ||| 1 0.145844 2.66517e-05 2.53343e-18 2.718 ||| 0-4 ||| 1 37521 +los ||| those who had caused the ||| 1 0.145844 2.66517e-05 2.16718e-14 2.718 ||| 0-4 ||| 1 37521 +los ||| those who were ||| 0.05 0.209531 2.66517e-05 1.72958e-08 2.718 ||| 0-0 ||| 20 37521 +los ||| those who ||| 0.00269058 0.209531 7.99552e-05 7.81024e-06 2.718 ||| 0-0 ||| 1115 37521 +los ||| those with the ||| 0.0625 0.209531 2.66517e-05 1.54355e-06 2.718 ||| 0-0 ||| 16 37521 +los ||| those with ||| 0.0172414 0.209531 5.33035e-05 2.90525e-05 2.718 ||| 0-0 ||| 116 37521 +los ||| those ||| 0.22504 0.209531 0.0186829 0.0076601 2.718 ||| 0-0 ||| 3115 37521 +los ||| through borrowing ||| 1 0.114667 2.66517e-05 2.12012e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| through events ||| 1 0.262166 2.66517e-05 8.23478e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| through the rosy spectacles ||| 0.5 0.145844 2.66517e-05 1.31344e-14 2.718 ||| 0-1 ||| 2 37521 +los ||| through the rosy ||| 0.5 0.145844 2.66517e-05 2.02067e-09 2.718 ||| 0-1 ||| 2 37521 +los ||| through the ||| 0.0114943 0.145844 0.000106607 0.000155437 2.718 ||| 0-1 ||| 348 37521 +los ||| ties to ||| 0.0357143 0.2125 2.66517e-05 5.46003e-05 2.718 ||| 0-0 ||| 28 37521 +los ||| ties ||| 0.00803213 0.2125 5.33035e-05 0.0006619 2.718 ||| 0-0 ||| 249 37521 +los ||| time with the ||| 0.5 0.145844 2.66517e-05 1.08828e-06 2.718 ||| 0-2 ||| 2 37521 +los ||| times the ||| 0.0188679 0.145844 2.66517e-05 5.97691e-05 2.718 ||| 0-1 ||| 53 37521 +los ||| to Jordan 's ||| 1 0.0363459 2.66517e-05 2.10007e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| to and name the ||| 1 0.145844 2.66517e-05 3.03705e-08 2.718 ||| 0-3 ||| 1 37521 +los ||| to be just the beginning . the ||| 1 0.145844 2.66517e-05 5.48024e-15 2.718 ||| 0-6 ||| 1 37521 +los ||| to be the ||| 0.020202 0.145844 5.33035e-05 0.000260854 2.718 ||| 0-2 ||| 99 37521 +los ||| to clean up ||| 0.04 0.0054795 2.66517e-05 1.03141e-09 2.718 ||| 0-2 ||| 25 37521 +los ||| to do so put the ||| 1 0.145844 2.66517e-05 1.57939e-10 2.718 ||| 0-4 ||| 1 37521 +los ||| to each other ||| 0.05 0.062069 2.66517e-05 1.01932e-07 2.718 ||| 0-1 ||| 20 37521 +los ||| to each ||| 0.0263158 0.062069 2.66517e-05 8.67137e-05 2.718 ||| 0-1 ||| 38 37521 +los ||| to even very poor countries ||| 1 0.228661 2.66517e-05 2.71353e-13 2.718 ||| 0-4 ||| 1 37521 +los ||| to fiscal imbalances ||| 1 0.36692 2.66517e-05 1.1064e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| to higher ||| 0.04 0.0103205 2.66517e-05 1.52524e-05 2.718 ||| 0-1 ||| 25 37521 +los ||| to international creditors ||| 0.25 0.381877 2.66517e-05 2.33818e-08 2.718 ||| 0-2 ||| 4 37521 +los ||| to live up to the ||| 0.166667 0.145844 2.66517e-05 1.60956e-09 2.718 ||| 0-4 ||| 6 37521 +los ||| to lose their ||| 0.142857 0.0188051 2.66517e-05 1.32357e-08 2.718 ||| 0-2 ||| 7 37521 +los ||| to meet the need ||| 1 0.145844 2.66517e-05 2.53782e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| to meet the ||| 0.0147059 0.145844 2.66517e-05 4.76585e-06 2.718 ||| 0-2 ||| 68 37521 +los ||| to one of the public ||| 1 0.145844 2.66517e-05 9.63995e-10 2.718 ||| 0-3 ||| 1 37521 +los ||| to one of the ||| 0.2 0.145844 2.66517e-05 2.74877e-06 2.718 ||| 0-3 ||| 5 37521 +los ||| to others ||| 0.0119048 0.104106 2.66517e-05 0.000144523 2.718 ||| 0-1 ||| 84 37521 +los ||| to pay back such ||| 1 0.0061425 2.66517e-05 1.18202e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| to pay back ||| 0.0909091 0.0061425 2.66517e-05 5.58321e-09 2.718 ||| 0-1 ||| 11 37521 +los ||| to pay ||| 0.00377358 0.0061425 2.66517e-05 4.01727e-06 2.718 ||| 0-1 ||| 265 37521 +los ||| to recall the ||| 0.166667 0.145844 2.66517e-05 8.22571e-07 2.718 ||| 0-2 ||| 6 37521 +los ||| to revive the economy ||| 0.166667 0.145844 2.66517e-05 1.44213e-10 2.718 ||| 0-2 ||| 6 37521 +los ||| to revive the ||| 0.0454545 0.145844 2.66517e-05 4.93543e-07 2.718 ||| 0-2 ||| 22 37521 +los ||| to switch from ||| 0.5 0.0001765 2.66517e-05 7.82832e-11 2.718 ||| 0-2 ||| 2 37521 +los ||| to the Union 's ||| 0.333333 0.145844 2.66517e-05 6.65729e-08 2.718 ||| 0-1 ||| 3 37521 +los ||| to the Union ||| 0.0625 0.145844 2.66517e-05 4.27484e-06 2.718 ||| 0-1 ||| 16 37521 +los ||| to the five years before the euro ||| 1 0.145844 2.66517e-05 1.80013e-19 2.718 ||| 0-1 ||| 1 37521 +los ||| to the five years before the ||| 1 0.145844 2.66517e-05 2.7737e-15 2.718 ||| 0-1 ||| 1 37521 +los ||| to the five years before ||| 1 0.145844 2.66517e-05 5.22062e-14 2.718 ||| 0-1 ||| 1 37521 +los ||| to the five years ||| 1 0.145844 2.66517e-05 2.43613e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| to the five ||| 0.5 0.145844 2.66517e-05 6.58057e-07 2.718 ||| 0-1 ||| 2 37521 +los ||| to the government allow the ||| 0.0526316 0.145844 2.66517e-05 9.17272e-11 2.718 ||| 0-1 ||| 19 37521 +los ||| to the government allow ||| 0.0526316 0.145844 2.66517e-05 1.72648e-09 2.718 ||| 0-1 ||| 19 37521 +los ||| to the government ||| 0.0277778 0.145844 2.66517e-05 1.26575e-05 2.718 ||| 0-1 ||| 36 37521 +los ||| to the same ||| 0.0227273 0.145844 2.66517e-05 1.03543e-05 2.718 ||| 0-1 ||| 44 37521 +los ||| to the ||| 0.00732064 0.145844 0.0015991 0.0253099 2.718 ||| 0-1 ||| 8196 37521 +los ||| to them ||| 0.0155039 0.0948535 5.33035e-05 0.000329994 2.718 ||| 0-1 ||| 129 37521 +los ||| to those who had caused the problem ||| 1 0.145844 2.66517e-05 2.08983e-19 2.718 ||| 0-5 ||| 1 37521 +los ||| to those who had caused the ||| 1 0.145844 2.66517e-05 1.78771e-15 2.718 ||| 0-5 ||| 1 37521 +los ||| to those ||| 0.00568182 0.209531 2.66517e-05 0.000631883 2.718 ||| 0-1 ||| 176 37521 +los ||| to touch their lives ||| 1 0.0188051 2.66517e-05 9.90233e-13 2.718 ||| 0-2 ||| 1 37521 +los ||| to touch their ||| 1 0.0188051 2.66517e-05 6.62807e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| to which the ||| 0.0344828 0.145844 2.66517e-05 3.04073e-05 2.718 ||| 0-2 ||| 29 37521 +los ||| today 's standards ||| 0.5 0.0363459 2.66517e-05 4.45727e-10 2.718 ||| 0-1 ||| 2 37521 +los ||| today 's ||| 0.0229358 0.0230064 0.000266517 7.2439e-06 2.718 ||| 0-0 0-1 ||| 436 37521 +los ||| today ||| 0.00353698 0.0096668 0.000293169 0.0003699 2.718 ||| 0-0 ||| 3110 37521 +los ||| together the ||| 0.2 0.145844 2.66517e-05 0.000149453 2.718 ||| 0-1 ||| 5 37521 +los ||| tolerance and religious freedom must be mutual ||| 1 0.0309735 2.66517e-05 1.98315e-25 2.718 ||| 0-6 ||| 1 37521 +los ||| tolerant liberals assume ||| 1 0.404762 2.66517e-05 3.63118e-13 2.718 ||| 0-1 ||| 1 37521 +los ||| tolerant liberals ||| 1 0.404762 2.66517e-05 4.30235e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| took the ||| 0.0175439 0.145844 2.66517e-05 8.56957e-05 2.718 ||| 0-1 ||| 57 37521 +los ||| top of the ||| 0.0243902 0.145844 2.66517e-05 2.96089e-06 2.718 ||| 0-2 ||| 41 37521 +los ||| top ||| 0.00196464 0.025974 2.66517e-05 0.0001557 2.718 ||| 0-0 ||| 509 37521 +los ||| topics ||| 0.0434783 0.175 2.66517e-05 6.81e-05 2.718 ||| 0-0 ||| 23 37521 +los ||| total ||| 0.00291971 0.0061824 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 685 37521 +los ||| touch their lives ||| 1 0.0188051 2.66517e-05 1.20043e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| touch their ||| 1 0.0188051 2.66517e-05 8.03497e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| toward national ||| 1 0.0049706 2.66517e-05 1.32161e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| trade imbalances ||| 0.0243902 0.36692 2.66517e-05 4.75824e-07 2.718 ||| 0-1 ||| 41 37521 +los ||| trade-distorting ||| 0.333333 0.25 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 3 37521 +los ||| traders ||| 0.0103093 0.341615 2.66517e-05 0.0005353 2.718 ||| 0-0 ||| 97 37521 +los ||| traditional ||| 0.00623053 0.0241935 0.000106607 0.000146 2.718 ||| 0-0 ||| 642 37521 +los ||| traffic ||| 0.012987 0.0148148 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 77 37521 +los ||| traits ||| 0.0204082 0.0833333 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 49 37521 +los ||| transaction ||| 0.0181818 0.0196078 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 55 37521 +los ||| translate them ||| 1 0.0948535 2.66517e-05 2.60026e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| transport ||| 0.00546448 0.0495495 2.66517e-05 0.0001071 2.718 ||| 0-0 ||| 183 37521 +los ||| travel times ||| 0.25 0.148148 2.66517e-05 4.55053e-08 2.718 ||| 0-0 ||| 4 37521 +los ||| travel ||| 0.00621118 0.148148 2.66517e-05 0.0002336 2.718 ||| 0-0 ||| 161 37521 +los ||| trawlers comply ||| 0.0833333 0.4 2.66517e-05 3.8025e-10 2.718 ||| 0-0 ||| 12 37521 +los ||| trawlers ||| 0.0769231 0.4 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 13 37521 +los ||| treasury ||| 0.0163934 0.0163934 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 61 37521 +los ||| treat the ||| 0.05 0.145844 2.66517e-05 3.9887e-06 2.718 ||| 0-1 ||| 20 37521 +los ||| treat ||| 0.008 0.0248756 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 125 37521 +los ||| tribunals prosecuted ||| 1 0.230769 2.66517e-05 2.2776e-09 2.718 ||| 0-0 ||| 1 37521 +los ||| tribunals ||| 0.0243902 0.230769 2.66517e-05 0.0001168 2.718 ||| 0-0 ||| 41 37521 +los ||| tried their best ||| 0.111111 0.0188051 2.66517e-05 4.78467e-11 2.718 ||| 0-1 ||| 9 37521 +los ||| tried their ||| 0.111111 0.0188051 2.66517e-05 2.72942e-07 2.718 ||| 0-1 ||| 9 37521 +los ||| troubled ||| 0.0232558 0.0522876 5.33035e-05 7.79e-05 2.718 ||| 0-0 ||| 86 37521 +los ||| tuned ||| 0.25 0.166667 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 4 37521 +los ||| turn the ||| 0.0212766 0.145844 2.66517e-05 0.000161389 2.718 ||| 0-1 ||| 47 37521 +los ||| twenty-four countries sit there . ||| 1 0.228661 2.66517e-05 1.31257e-16 2.718 ||| 0-1 ||| 1 37521 +los ||| twenty-four countries sit there ||| 1 0.228661 2.66517e-05 2.85472e-14 2.718 ||| 0-1 ||| 1 37521 +los ||| twenty-four countries sit ||| 1 0.228661 2.66517e-05 1.33611e-11 2.718 ||| 0-1 ||| 1 37521 +los ||| twenty-four countries ||| 1 0.228661 2.66517e-05 1.71515e-07 2.718 ||| 0-1 ||| 1 37521 +los ||| twin ||| 0.0294118 0.047619 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 34 37521 +los ||| two ||| 0.000283046 0.0003018 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 3533 37521 +los ||| tyrants ||| 0.0714286 0.371429 2.66517e-05 0.0001265 2.718 ||| 0-0 ||| 14 37521 +los ||| unarrested ||| 1 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| under the rug , ||| 1 0.145844 2.66517e-05 2.01086e-10 2.718 ||| 0-1 ||| 1 37521 +los ||| under the rug ||| 0.333333 0.145844 2.66517e-05 9.84411e-10 2.718 ||| 0-1 ||| 3 37521 +los ||| under the ||| 0.00519931 0.145844 7.99552e-05 0.000151448 2.718 ||| 0-1 ||| 577 37521 +los ||| undergo the ||| 0.25 0.145844 2.66517e-05 5.98305e-06 2.718 ||| 0-1 ||| 4 37521 +los ||| underway among the ||| 0.2 0.145844 2.66517e-05 5.17335e-09 2.718 ||| 0-2 ||| 5 37521 +los ||| universal need ||| 1 0.0131148 2.66517e-05 2.07142e-08 2.718 ||| 0-0 ||| 1 37521 +los ||| universal ||| 0.00332226 0.0131148 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 301 37521 +los ||| unpredictable ||| 0.0144928 0.0128205 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 69 37521 +los ||| unrelenting media barrage ||| 0.5 0.227723 2.66517e-05 1.04041e-13 2.718 ||| 0-1 ||| 2 37521 +los ||| unrelenting media ||| 0.5 0.227723 2.66517e-05 1.60062e-08 2.718 ||| 0-1 ||| 2 37521 +los ||| unsuccessful attempts to ||| 1 0.24933 2.66517e-05 1.45607e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| unsuccessful attempts ||| 1 0.24933 2.66517e-05 1.76514e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| up the ||| 0.0238095 0.145844 7.99552e-05 0.000958423 2.718 ||| 0-1 ||| 126 37521 +los ||| up to the ||| 0.0309278 0.145844 7.99552e-05 7.90605e-05 2.718 ||| 0-2 ||| 97 37521 +los ||| up with China ||| 0.5 0.0017442 2.66517e-05 1.38376e-09 2.718 ||| 0-2 ||| 2 37521 +los ||| up ||| 0.00310238 0.0054795 7.99552e-05 0.0002141 2.718 ||| 0-0 ||| 967 37521 +los ||| upon the ||| 0.0322581 0.145844 2.66517e-05 8.1707e-05 2.718 ||| 0-1 ||| 31 37521 +los ||| urban , ||| 0.142857 0.0230769 2.66517e-05 1.19294e-05 2.718 ||| 0-0 ||| 7 37521 +los ||| urban ||| 0.0117188 0.0230769 7.99552e-05 5.84e-05 2.718 ||| 0-0 ||| 256 37521 +los ||| us are ||| 0.0666667 0.0058858 2.66517e-05 7.20361e-07 2.718 ||| 0-0 ||| 15 37521 +los ||| us ||| 0.00455927 0.0058858 0.00015991 9.73e-05 2.718 ||| 0-0 ||| 1316 37521 +los ||| use the ||| 0.00854701 0.145844 2.66517e-05 0.000107603 2.718 ||| 0-1 ||| 117 37521 +los ||| users , ||| 0.0909091 0.334928 2.66517e-05 0.00013917 2.718 ||| 0-0 ||| 11 37521 +los ||| users ||| 0.0119048 0.334928 5.33035e-05 0.0006813 2.718 ||| 0-0 ||| 168 37521 +los ||| utilities , and ||| 0.166667 0.175439 2.66517e-05 1.66897e-07 2.718 ||| 0-0 ||| 6 37521 +los ||| utilities , ||| 0.111111 0.175439 2.66517e-05 1.98755e-05 2.718 ||| 0-0 ||| 9 37521 +los ||| utilities ||| 0.0243902 0.175439 2.66517e-05 9.73e-05 2.718 ||| 0-0 ||| 41 37521 +los ||| valuable ||| 0.00793651 0.0149254 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 126 37521 +los ||| values ||| 0.0021097 0.115065 5.33035e-05 0.0009441 2.718 ||| 0-0 ||| 948 37521 +los ||| vernacular ||| 0.25 0.25 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 4 37521 +los ||| very poor countries ||| 1 0.228661 2.66517e-05 3.61804e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| vested ||| 0.0545455 0.152941 7.99552e-05 0.0001265 2.718 ||| 0-0 ||| 55 37521 +los ||| vice ||| 0.0555556 0.0294118 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 18 37521 +los ||| view of the ||| 0.0196078 0.145844 2.66517e-05 2.09964e-06 2.718 ||| 0-2 ||| 51 37521 +los ||| viewing by young ||| 1 0.113725 2.66517e-05 1.49131e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| villains ||| 0.0714286 0.357143 2.66517e-05 4.87e-05 2.718 ||| 0-0 ||| 14 37521 +los ||| violations ||| 0.0104167 0.102564 2.66517e-05 0.0001947 2.718 ||| 0-0 ||| 96 37521 +los ||| violators ||| 0.0833333 0.241379 2.66517e-05 6.81e-05 2.718 ||| 0-0 ||| 12 37521 +los ||| violent ||| 0.00606061 0.0102389 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 330 37521 +los ||| volts ||| 1 1 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| voter ||| 0.0227273 0.246575 2.66517e-05 0.0001752 2.718 ||| 0-0 ||| 44 37521 +los ||| voters ||| 0.00520833 0.385378 7.99552e-05 0.0030271 2.718 ||| 0-0 ||| 576 37521 +los ||| votes ||| 0.00396825 0.0658436 2.66517e-05 0.0001557 2.718 ||| 0-0 ||| 252 37521 +los ||| voting rules ||| 0.1 0.020202 2.66517e-05 3.79016e-09 2.718 ||| 0-0 ||| 10 37521 +los ||| voting ||| 0.0042735 0.020202 2.66517e-05 5.84e-05 2.718 ||| 0-0 ||| 234 37521 +los ||| wage ||| 0.0153374 0.182336 0.000133259 0.0006229 2.718 ||| 0-0 ||| 326 37521 +los ||| was home ||| 0.333333 0.0075251 2.66517e-05 3.31102e-07 2.718 ||| 0-1 ||| 3 37521 +los ||| was the case with ||| 0.333333 0.145844 2.66517e-05 3.05644e-09 2.718 ||| 0-1 ||| 3 37521 +los ||| was the case ||| 0.0526316 0.145844 2.66517e-05 8.05875e-07 2.718 ||| 0-1 ||| 19 37521 +los ||| was the ||| 0.00671141 0.145844 0.000106607 0.0011597 2.718 ||| 0-1 ||| 596 37521 +los ||| was under the ||| 0.333333 0.145844 2.66517e-05 5.72427e-07 2.718 ||| 0-2 ||| 3 37521 +los ||| waste ||| 0.00952381 0.017094 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 105 37521 +los ||| wasteful ||| 0.0833333 0.137931 5.33035e-05 3.89e-05 2.718 ||| 0-0 ||| 24 37521 +los ||| water utilities , and ||| 0.166667 0.175439 2.66517e-05 1.40861e-11 2.718 ||| 0-1 ||| 6 37521 +los ||| water utilities , ||| 0.166667 0.175439 2.66517e-05 1.67749e-09 2.718 ||| 0-1 ||| 6 37521 +los ||| water utilities ||| 0.166667 0.175439 2.66517e-05 8.21212e-09 2.718 ||| 0-1 ||| 6 37521 +los ||| way past ||| 0.333333 0.0028952 2.66517e-05 7.40094e-08 2.718 ||| 0-1 ||| 3 37521 +los ||| we burn them ||| 1 0.0948535 2.66517e-05 6.0287e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| we deny them ||| 1 0.0948535 2.66517e-05 3.01435e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| we in ||| 0.0588235 0.0010913 5.33035e-05 1.34601e-06 2.718 ||| 0-0 ||| 34 37521 +los ||| we live today ||| 0.142857 0.0096668 2.66517e-05 2.11659e-10 2.718 ||| 0-2 ||| 7 37521 +los ||| we need the innovation ||| 1 0.145844 2.66517e-05 2.46223e-12 2.718 ||| 0-2 ||| 1 37521 +los ||| we need the ||| 0.125 0.145844 2.66517e-05 3.78804e-07 2.718 ||| 0-2 ||| 8 37521 +los ||| we ||| 0.00365344 0.0010913 0.000186562 8.76e-05 2.718 ||| 0-0 ||| 1916 37521 +los ||| weak ||| 0.00163666 0.0036496 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 611 37521 +los ||| wealth ||| 0.00102041 0.0015552 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 980 37521 +los ||| welfare ||| 0.00185529 0.022541 2.66517e-05 0.0001071 2.718 ||| 0-0 ||| 539 37521 +los ||| well -- the ||| 1 0.145844 2.66517e-05 2.67431e-06 2.718 ||| 0-2 ||| 1 37521 +los ||| well as boys ||| 0.5 0.204545 2.66517e-05 2.56875e-09 2.718 ||| 0-2 ||| 2 37521 +los ||| well as the ||| 0.030303 0.145844 2.66517e-05 4.49859e-06 2.718 ||| 0-2 ||| 33 37521 +los ||| well as within the ||| 1 0.145844 2.66517e-05 9.93288e-10 2.718 ||| 0-3 ||| 1 37521 +los ||| were available ||| 0.166667 0.0336842 2.66517e-05 3.44798e-07 2.718 ||| 0-1 ||| 6 37521 +los ||| were ||| 0.00070028 0.000475 7.99552e-05 2.92e-05 2.718 ||| 0-0 ||| 4284 37521 +los ||| what are ||| 0.027027 0.00123 2.66517e-05 2.5941e-07 2.718 ||| 0-1 ||| 37 37521 +los ||| what the ||| 0.00401606 0.145844 2.66517e-05 0.000302865 2.718 ||| 0-1 ||| 249 37521 +los ||| what they are ||| 0.03125 0.00123 2.66517e-05 1.60212e-09 2.718 ||| 0-2 ||| 32 37521 +los ||| what ||| 0.000181719 9.91e-05 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 5503 37521 +los ||| when attempts to do so put the ||| 1 0.145844 2.66517e-05 2.24025e-18 2.718 ||| 0-6 ||| 1 37521 +los ||| when the industrial revolution ||| 1 0.145844 2.66517e-05 1.883e-13 2.718 ||| 0-1 ||| 1 37521 +los ||| when the industrial ||| 1 0.145844 2.66517e-05 2.90138e-09 2.718 ||| 0-1 ||| 1 37521 +los ||| when the ||| 0.00121212 0.145844 2.66517e-05 0.000111592 2.718 ||| 0-1 ||| 825 37521 +los ||| where the ||| 0.00309598 0.145844 2.66517e-05 7.77183e-05 2.718 ||| 0-1 ||| 323 37521 +los ||| where ||| 0.000339098 0.0003163 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 2949 37521 +los ||| whereas the ||| 0.0135135 0.145844 2.66517e-05 7.9774e-06 2.718 ||| 0-1 ||| 74 37521 +los ||| which a few ||| 0.5 0.0021428 2.66517e-05 2.12585e-09 2.718 ||| 0-0 ||| 2 37521 +los ||| which a ||| 0.0153846 0.0021428 2.66517e-05 8.61367e-06 2.718 ||| 0-0 ||| 65 37521 +los ||| which are the ||| 0.1 0.145844 2.66517e-05 2.72906e-06 2.718 ||| 0-2 ||| 10 37521 +los ||| which can ||| 0.015873 0.0021428 2.66517e-05 3.75424e-07 2.718 ||| 0-0 ||| 63 37521 +los ||| which include ||| 0.0416667 0.0021428 2.66517e-05 3.75317e-08 2.718 ||| 0-0 ||| 24 37521 +los ||| which the ||| 0.00203666 0.145844 2.66517e-05 0.000368617 2.718 ||| 0-1 ||| 491 37521 +los ||| which ||| 0.00076089 0.0021428 0.000213214 0.0002141 2.718 ||| 0-0 ||| 10514 37521 +los ||| who had caused the problem , rather ||| 1 0.145844 2.66517e-05 3.83084e-19 2.718 ||| 0-3 ||| 1 37521 +los ||| who had caused the problem , ||| 1 0.145844 2.66517e-05 1.0348e-15 2.718 ||| 0-3 ||| 1 37521 +los ||| who had caused the problem ||| 1 0.145844 2.66517e-05 5.06584e-15 2.718 ||| 0-3 ||| 1 37521 +los ||| who had caused the ||| 1 0.145844 2.66517e-05 4.33349e-11 2.718 ||| 0-3 ||| 1 37521 +los ||| whom ||| 0.0120846 0.151697 0.000106607 0.0007397 2.718 ||| 0-0 ||| 331 37521 +los ||| widely available ||| 0.0454545 0.0336842 2.66517e-05 3.03304e-08 2.718 ||| 0-1 ||| 22 37521 +los ||| wild ||| 0.02 0.0131579 2.66517e-05 9.7e-06 2.718 ||| 0-0 ||| 50 37521 +los ||| will bring together the ||| 0.333333 0.145844 2.66517e-05 5.63343e-10 2.718 ||| 0-3 ||| 3 37521 +los ||| will drive the ||| 0.333333 0.145844 2.66517e-05 2.75403e-07 2.718 ||| 0-2 ||| 3 37521 +los ||| will embrace the ||| 1 0.145844 2.66517e-05 8.26845e-08 2.718 ||| 0-2 ||| 1 37521 +los ||| will people ||| 0.5 0.024235 2.66517e-05 1.20391e-05 2.718 ||| 0-1 ||| 2 37521 +los ||| will the ||| 0.010101 0.145844 2.66517e-05 0.00212012 2.718 ||| 0-1 ||| 99 37521 +los ||| will ||| 0.000230521 0.0001236 2.66517e-05 1.95e-05 2.718 ||| 0-0 ||| 4338 37521 +los ||| win hearts ||| 0.2 0.218391 2.66517e-05 2.16148e-08 2.718 ||| 0-1 ||| 5 37521 +los ||| wisely , Yushchenko launched the slogan " ||| 1 0.145844 2.66517e-05 2.23149e-23 2.718 ||| 0-4 ||| 1 37521 +los ||| wisely , Yushchenko launched the slogan ||| 1 0.145844 2.66517e-05 4.46826e-21 2.718 ||| 0-4 ||| 1 37521 +los ||| wisely , Yushchenko launched the ||| 1 0.145844 2.66517e-05 3.43712e-16 2.718 ||| 0-4 ||| 1 37521 +los ||| with 47 students ||| 1 0.286667 2.66517e-05 3.09537e-11 2.718 ||| 0-2 ||| 1 37521 +los ||| with China ||| 0.00625 0.0017442 2.66517e-05 4.42987e-07 2.718 ||| 0-1 ||| 160 37521 +los ||| with others ||| 0.0208333 0.104106 2.66517e-05 6.64481e-06 2.718 ||| 0-1 ||| 48 37521 +los ||| with the ||| 0.00350438 0.145844 0.000373124 0.00116369 2.718 ||| 0-1 ||| 3995 37521 +los ||| with ||| 0.00088893 0.0012991 0.000506383 0.0002725 2.718 ||| 0-0 ||| 21374 37521 +los ||| within the ||| 0.00179533 0.145844 2.66517e-05 6.77465e-05 2.718 ||| 0-1 ||| 557 37521 +los ||| women 's ||| 0.025 0.0363459 2.66517e-05 2.2893e-06 2.718 ||| 0-1 ||| 40 37521 +los ||| work the ||| 0.333333 0.145844 2.66517e-05 0.000185321 2.718 ||| 0-1 ||| 3 37521 +los ||| workers ' ||| 0.0555556 0.258311 2.66517e-05 4.39992e-05 2.718 ||| 0-0 0-1 ||| 18 37521 +los ||| workers may be ||| 0.5 0.333085 2.66517e-05 4.39712e-08 2.718 ||| 0-0 ||| 2 37521 +los ||| workers may ||| 0.5 0.333085 2.66517e-05 4.26639e-06 2.718 ||| 0-0 ||| 2 37521 +los ||| workers ||| 0.00566572 0.333085 0.00015991 0.0043508 2.718 ||| 0-0 ||| 1059 37521 +los ||| working things out ||| 0.125 0.0050566 2.66517e-05 9.91522e-12 2.718 ||| 0-2 ||| 8 37521 +los ||| world 's ||| 0.000745712 0.0363459 2.66517e-05 1.71688e-05 2.718 ||| 0-1 ||| 1341 37521 +los ||| world . the ||| 1 0.145844 2.66517e-05 1.2368e-06 2.718 ||| 0-2 ||| 1 37521 +los ||| would also revoke contracts ||| 1 0.263889 2.66517e-05 1.51606e-14 2.718 ||| 0-3 ||| 1 37521 +los ||| would be punished ||| 1 0.0266667 2.66517e-05 9.29287e-10 2.718 ||| 0-2 ||| 1 37521 +los ||| would damage ||| 0.125 0.0114943 2.66517e-05 2.25184e-07 2.718 ||| 0-1 ||| 8 37521 +los ||| would keep ||| 0.142857 0.0026008 2.66517e-05 9.0166e-08 2.718 ||| 0-1 ||| 7 37521 +los ||| would smooth out the ||| 1 0.145844 2.66517e-05 4.09037e-11 2.718 ||| 0-3 ||| 1 37521 +los ||| would the ||| 0.0526316 0.145844 2.66517e-05 0.00141872 2.718 ||| 0-1 ||| 19 37521 +los ||| would-be ||| 0.0526316 0.245902 5.33035e-05 0.000146 2.718 ||| 0-0 ||| 38 37521 +los ||| writings ||| 0.0625 0.210526 2.66517e-05 3.89e-05 2.718 ||| 0-0 ||| 16 37521 +los ||| yet turn the ||| 0.333333 0.145844 2.66517e-05 8.48906e-08 2.718 ||| 0-2 ||| 3 37521 +los ||| yields ||| 0.0238095 0.287805 7.99552e-05 0.0005743 2.718 ||| 0-0 ||| 126 37521 +los ||| you arrive at the ||| 1 0.145844 2.66517e-05 2.89458e-11 2.718 ||| 0-3 ||| 1 37521 +los ||| you chase the ||| 1 0.145844 2.66517e-05 6.50198e-09 2.718 ||| 0-2 ||| 1 37521 +los ||| you interact ||| 1 0.0243902 2.66517e-05 1.5812e-08 2.718 ||| 0-1 ||| 1 37521 +los ||| you that the ||| 0.333333 0.145844 2.66517e-05 4.08614e-06 2.718 ||| 0-2 ||| 3 37521 +los ||| young ||| 0.0164234 0.113725 0.000239866 0.0008468 2.718 ||| 0-0 ||| 548 37521 +los ||| your mind ||| 0.25 0.0440613 2.66517e-05 4.94371e-08 2.718 ||| 0-0 ||| 4 37521 +los ||| your ||| 0.0411622 0.0440613 0.00045308 0.0002239 2.718 ||| 0-0 ||| 413 37521 +los ||| youth ||| 0.0172414 0.16763 7.99552e-05 0.0002823 2.718 ||| 0-0 ||| 174 37521 +los ||| youthful , ||| 1 0.0952381 2.66517e-05 3.98328e-06 2.718 ||| 0-0 ||| 1 37521 +los ||| youthful ||| 0.117647 0.0952381 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 17 37521 +los ||| ­ ances , ||| 1 0.0252101 2.66517e-05 3.87706e-11 2.718 ||| 0-0 ||| 1 37521 +los ||| ­ ances ||| 1 0.0252101 2.66517e-05 1.898e-10 2.718 ||| 0-0 ||| 1 37521 +los ||| ­ ||| 0.133333 0.0252101 5.33035e-05 2.92e-05 2.718 ||| 0-0 ||| 15 37521 +los ||| • ||| 0.0266667 0.0229885 5.33035e-05 1.95e-05 2.718 ||| 0-0 ||| 75 37521 +los ||| � the ||| 1 0.145844 2.66517e-05 5.18224e-05 2.718 ||| 0-1 ||| 1 37521 +políticos en ||| in ||| 2.48327e-05 4.70947e-05 0.333333 0.487465 2.718 ||| 1-0 ||| 80539 6 +políticos en ||| political ||| 0.000330907 0.00709956 0.333333 0.540009 2.718 ||| 0-0 ||| 6044 6 +políticos en ||| politicians anywhere are having much success in ||| 0.25 0.424267 0.166667 1.80665e-18 2.718 ||| 0-0 1-6 ||| 4 6 +políticos en ||| politicians in ||| 0.05 0.424267 0.166667 0.179292 2.718 ||| 0-0 1-1 ||| 20 6 +políticos ||| ' political ||| 0.125 0.202279 0.000640205 0.0004454 2.718 ||| 0-1 ||| 8 1562 +políticos ||| 's political ||| 0.0211268 0.202279 0.00192061 0.00840967 2.718 ||| 0-1 ||| 142 1562 +políticos ||| 's politicians , it seems , have ||| 1 0.590977 0.000640205 6.82749e-12 2.718 ||| 0-1 ||| 1 1562 +políticos ||| 's politicians , it seems , ||| 1 0.590977 0.000640205 1.32241e-09 2.718 ||| 0-1 ||| 1 1562 +políticos ||| 's politicians , it seems ||| 1 0.590977 0.000640205 6.47383e-09 2.718 ||| 0-1 ||| 1 1562 +políticos ||| 's politicians , it ||| 1 0.590977 0.000640205 3.11541e-05 2.718 ||| 0-1 ||| 1 1562 +políticos ||| 's politicians , ||| 0.333333 0.590977 0.000640205 0.00117004 2.718 ||| 0-1 ||| 3 1562 +políticos ||| 's politicians ||| 0.0857143 0.590977 0.00192061 0.00572791 2.718 ||| 0-1 ||| 35 1562 +políticos ||| , political ||| 0.0384615 0.202279 0.00128041 0.110308 2.718 ||| 0-1 ||| 52 1562 +políticos ||| Bangladesh ||| 0.00847458 0.0097087 0.000640205 0.0004679 2.718 ||| 0-0 ||| 118 1562 +políticos ||| Political ||| 0.136364 0.106383 0.00192061 0.0023397 2.718 ||| 0-0 ||| 22 1562 +políticos ||| a political ||| 0.0135135 0.202279 0.000640205 0.0217257 2.718 ||| 0-1 ||| 74 1562 +políticos ||| be detained on political ||| 1 0.202279 0.000640205 2.83801e-10 2.718 ||| 0-3 ||| 1 1562 +políticos ||| be paid for this political ||| 1 0.202279 0.000640205 7.18123e-12 2.718 ||| 0-4 ||| 1 1562 +políticos ||| be political ||| 0.333333 0.202279 0.000640205 0.00556555 2.718 ||| 0-1 ||| 3 1562 +políticos ||| both political ||| 0.2 0.202279 0.000640205 0.000922336 2.718 ||| 0-1 ||| 5 1562 +políticos ||| bring political ||| 1 0.202279 0.000640205 0.000294575 2.718 ||| 0-1 ||| 1 1562 +políticos ||| by political ||| 0.142857 0.202279 0.000640205 0.00365775 2.718 ||| 0-1 ||| 7 1562 +políticos ||| conscience ||| 0.0188679 0.0204082 0.000640205 0.0004679 2.718 ||| 0-0 ||| 53 1562 +políticos ||| detained on political ||| 1 0.202279 0.000640205 2.75364e-08 2.718 ||| 0-2 ||| 1 1562 +políticos ||| domestic political ||| 0.0144928 0.202279 0.000640205 4.55768e-05 2.718 ||| 0-1 ||| 69 1562 +políticos ||| for this political ||| 1 0.202279 0.000640205 5.10831e-06 2.718 ||| 0-2 ||| 1 1562 +políticos ||| free political ||| 1 0.202279 0.000640205 0.000126254 2.718 ||| 0-1 ||| 1 1562 +políticos ||| global political ||| 0.0909091 0.202279 0.000640205 0.000298085 2.718 ||| 0-1 ||| 11 1562 +políticos ||| is what political ||| 1 0.202279 0.000640205 8.78583e-06 2.718 ||| 0-2 ||| 1 1562 +políticos ||| major political ||| 0.0833333 0.202279 0.000640205 0.000136784 2.718 ||| 0-1 ||| 12 1562 +políticos ||| occupation ||| 0.00298507 0.0039841 0.000640205 0.0004679 2.718 ||| 0-0 ||| 335 1562 +políticos ||| of policy ||| 0.0322581 0.005905 0.000640205 0.000290769 2.718 ||| 0-1 ||| 31 1562 +políticos ||| of political ||| 0.0625 0.202279 0.000640205 0.0145889 2.718 ||| 0-1 ||| 16 1562 +políticos ||| on political ||| 1 0.202279 0.000640205 0.00211819 2.718 ||| 0-1 ||| 1 1562 +políticos ||| paid for this political ||| 1 0.202279 0.000640205 6.96773e-10 2.718 ||| 0-3 ||| 1 1562 +políticos ||| policy ||| 0.00358715 0.005905 0.0140845 0.0107628 2.718 ||| 0-0 ||| 6133 1562 +políticos ||| policymakers ||| 0.00616333 0.0608841 0.00256082 0.03416 2.718 ||| 0-0 ||| 649 1562 +políticos ||| political , ||| 0.0840336 0.202279 0.00640205 0.110308 2.718 ||| 0-0 ||| 119 1562 +políticos ||| political and economic ||| 0.00571429 0.202279 0.000640205 2.03192e-06 2.718 ||| 0-0 ||| 175 1562 +políticos ||| political and ||| 0.00257732 0.202279 0.000640205 0.00453451 2.718 ||| 0-0 ||| 388 1562 +políticos ||| political gain ||| 0.125 0.202279 0.000640205 8.41875e-05 2.718 ||| 0-0 ||| 8 1562 +políticos ||| political moves ||| 1 0.202279 0.000640205 1.05302e-05 2.718 ||| 0-0 ||| 1 1562 +políticos ||| political officials ||| 0.333333 0.202279 0.000640205 1.75503e-05 2.718 ||| 0-0 ||| 3 1562 +políticos ||| political slide shows ||| 1 0.202279 0.000640205 1.09409e-09 2.718 ||| 0-0 ||| 1 1562 +políticos ||| political slide ||| 1 0.202279 0.000640205 1.05302e-05 2.718 ||| 0-0 ||| 1 1562 +políticos ||| political spectrum ||| 0.04 0.202279 0.000640205 1.40402e-05 2.718 ||| 0-0 ||| 25 1562 +políticos ||| political unrest ||| 0.0833333 0.202279 0.000640205 7.02012e-06 2.718 ||| 0-0 ||| 12 1562 +políticos ||| political ||| 0.190437 0.202279 0.736876 0.540009 2.718 ||| 0-0 ||| 6044 1562 +políticos ||| politically connected ||| 0.1 0.0285088 0.000640205 1.18624e-07 2.718 ||| 0-0 ||| 10 1562 +políticos ||| politically ||| 0.00652174 0.0285088 0.00192061 0.0060833 2.718 ||| 0-0 ||| 460 1562 +políticos ||| politician ||| 0.0571429 0.0819672 0.00512164 0.0046795 2.718 ||| 0-0 ||| 140 1562 +políticos ||| politician-proof ||| 0.25 1 0.000640205 0.0004679 2.718 ||| 0-0 ||| 4 1562 +políticos ||| politicians , it seems , have had ||| 1 0.590977 0.000640205 6.2351e-13 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians , it seems , have ||| 1 0.590977 0.000640205 4.38413e-10 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians , it seems , ||| 1 0.590977 0.000640205 8.4916e-08 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians , it seems ||| 1 0.590977 0.000640205 4.15703e-07 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians , it ||| 1 0.590977 0.000640205 0.0020005 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians , ||| 0.189655 0.590977 0.00704225 0.0751318 2.718 ||| 0-0 ||| 58 1562 +políticos ||| politicians . ||| 0.030303 0.590977 0.000640205 0.00169113 2.718 ||| 0-0 ||| 33 1562 +políticos ||| politicians and be ||| 1 0.590977 0.000640205 3.18313e-05 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians and ||| 0.0151515 0.590977 0.000640205 0.0030885 2.718 ||| 0-0 ||| 66 1562 +políticos ||| politicians anywhere are having much success ||| 1 0.590977 0.000640205 3.70621e-18 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians anywhere are having much ||| 1 0.590977 0.000640205 4.07723e-14 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians anywhere are having ||| 1 0.590977 0.000640205 2.82807e-11 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians anywhere are ||| 1 0.590977 0.000640205 1.06199e-07 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians anywhere ||| 1 0.590977 0.000640205 1.43444e-05 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians down ||| 1 0.590977 0.000640205 0.000537437 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians increasingly ||| 1 0.590977 0.000640205 4.29964e-05 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians such ||| 1 0.590977 0.000640205 0.000778681 2.718 ||| 0-0 ||| 1 1562 +políticos ||| politicians ||| 0.296716 0.590977 0.167734 0.367805 2.718 ||| 0-0 ||| 883 1562 +políticos ||| politics , ||| 0.0181818 0.0065856 0.00128041 0.00124264 2.718 ||| 0-0 ||| 110 1562 +políticos ||| politics ||| 0.00874636 0.0065856 0.00768246 0.0060833 2.718 ||| 0-0 ||| 1372 1562 +políticos ||| risks ||| 0.000867303 0.0010277 0.000640205 0.0004679 2.718 ||| 0-0 ||| 1153 1562 +políticos ||| senior politicians ||| 0.333333 0.590977 0.000640205 3.10428e-05 2.718 ||| 0-1 ||| 3 1562 +políticos ||| starvation ||| 0.0188679 0.0153846 0.000640205 0.0004679 2.718 ||| 0-0 ||| 53 1562 +políticos ||| still be detained on political ||| 1 0.202279 0.000640205 2.10098e-13 2.718 ||| 0-4 ||| 1 1562 +políticos ||| such senior politicians ||| 0.333333 0.590977 0.000640205 6.57206e-08 2.718 ||| 0-2 ||| 3 1562 +políticos ||| the political ||| 0.0454545 0.202279 0.00128041 0.0286905 2.718 ||| 0-1 ||| 44 1562 +políticos ||| the politics ||| 0.0142857 0.0065856 0.000640205 0.000323203 2.718 ||| 0-1 ||| 70 1562 +políticos ||| this political ||| 1 0.202279 0.000640205 0.00107311 2.718 ||| 0-1 ||| 1 1562 +políticos ||| to political ||| 0.0769231 0.202279 0.000640205 0.0445455 2.718 ||| 0-1 ||| 13 1562 +políticos ||| what political ||| 1 0.202279 0.000640205 0.000533043 2.718 ||| 0-1 ||| 1 1562 +políticos ||| world-class politicians ||| 1 0.590977 0.000640205 4.78147e-06 2.718 ||| 0-1 ||| 1 1562 diff --git a/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.idx b/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.idx new file mode 100644 index 0000000000000000000000000000000000000000..823698b631100534e33ef1d799f0a23ef1af24f1 GIT binary patch literal 76 jcmd;NKmZvi(}xMdSOBGS7$N)~sQeEo{|}UJ0_6h$gsB8M literal 0 HcmV?d00001 diff --git a/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.srctree.wa b/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.srctree.wa new file mode 100644 index 0000000000000000000000000000000000000000..6bdbb6e133292f3fae838a95eb49e04c76051781 GIT binary patch literal 728 zcmZvau}T9$5Qg{6$FUqUeN;F$!pNM$XUCrFMKAhVfCBAOldkZ(e0ZqL>-;)hZpL)-GWHZCmd%H{aW|(?t+>w=r;dUIG85zz9 zXgc#Iha2Zk@j-on>CALYc43&-v_@n&BhaV+#OstSGktjbp=Lt%WSG8}wD>zy`-R literal 0 HcmV?d00001 diff --git a/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.srcvoc b/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.srcvoc new file mode 100644 index 000000000..c958b8c82 --- /dev/null +++ b/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.srcvoc @@ -0,0 +1,9 @@ +8 domando +7 del +6 lados +5 ambos +4 en +3 políticos +2 los +1 a +0 Atlántico diff --git a/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.tgtdata.wa b/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.tgtdata.wa new file mode 100644 index 0000000000000000000000000000000000000000..2f360946648eb0cd746119f94fd317b9da37c81f GIT binary patch literal 720173 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 ~n&vnuTWful8fN%){47dft{C{u% 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 z zWn7~sq$mLd;EuhN45l5}(qE~mBf!b&@oR@ME3!!fwf6-C;QaoWnQ`E(F3vscowxNO z@4#LJa|(9G{m<1i+WF=Y!*jELS~p{`*X02GDH)QV%!4{bdaV-#Z2Q!z_QdH} zD&xWcWjg>fXG~7HS7j|xP*zge&U4hO5EgczN+sZld2` z%O?%4jJ4twL%K)0jm4v{w)Z<+r-Jn4%633dl%7|0qk(|e#joDWAxlt|X96XT11`4h zRmt4}vnbg5$(r(<(?knrB26*anNlQ1d*&ac{)o&3eoCKAAicxs=L&gSI13SQhll-e zhtFGYmMJ$WBI0=hqk;uuip0ehP`NAL_$R9dww~}!DCu@R(R`qbpVQfk!pvcVOV2N|6&1sBdXk*BR2#alV|N7x&@f+8!t&?-|ksehX^m| zO8q!_cWl$fMfHY3pHMuT2I742&Z+gR0Le28K=G-GEw_~1DCn8f!TDz=uH|Uv1=oO) zTvgDSyv`UfPY#XBjwO+s;MSuJW-bwnwSt)C|KuBtA!WDr<6`#aRnG$ahw1^Eb2#`oGbmI8hfS@ zicMkSs8ROW56>O!5aAyE;0ZYWYG2&%xu6cw;GGRBNn`rpz7IHjNCM=0SfQXM1A|JgPFFmd@VI}|= zr{ozN_uG%sepE6&PTLPwGH1kJvD}{L2q|GA@@Vr7bRH9T?AY}1yO~3TUPEQ~q6Z@2 z+5&#F(eTpaq(@Me$pipn!Jfg-mZtOeB7gxL`b*I`09!x%JLck@FU?+r7A`?g5wf_e zM1ZlsD1DEo2gDe(IM-3VRGjz7s~@qO@ZjoGawAAtD-HnROe%#9k$#P5Lp=ON59x1I zqzZyjH1vRg??Wf?>}%QIsQ@DNBr36sWGsr2za((xtHs zUUj^O*^pFUt6kU|_U)e6_J)&o1*N-pIP?7oi1GQgNngDDgXsh?@oao32T+aM5r{JgCd~)TV0w+m8$70L<0f9ML$a! zH}I8Gmh0K~S2KSN<<)))EsT%{qI5}lKzb78`M?=m>nC|G29}CDm_5mS$c$JB`{Jr< zF~B);`c&(n?ab;0r0pn&#suKLB|3kI!Hp};kQG#~J_EQJHE%I`iqlhq9{jB&eS!h{ z1TzSYYx#oM>#jEAgk#_)&a-K^baZMn4v62OlF&ES(!)m!=&Rk=SCo#EE=c(;H=!!c zA*zH{kU89~t6fuCRz0RwZ1$Km^Kf=(yYU)zr-WyMAk{~|*!|?;wi{CY zq8?eXV626jq$M-zbn7QqCsuQ3)B9Rg$txE@%R;(EOP>r7KDuJ~>G z(q3BuEScXh^7zLYa?n@(1gdSL!Ii8@UPMxqgj}u+JkSyOa z$XHE)cl2?Tj3Ayh#*y;cA|J_oonxea4BW)STc(y9ztqiH5O+E~EbfUnUa-Zjy#12D z_OcRdzft&uQYWP^aM~x6C}CImak_m1!5!O=`?K?b%Py z)yBB#h$P=H@?c+eyEoq1vC&_oAB9LCe{jGSX~?frO#(I@41X}49rWWkJ&5}9(f{Pe zWdF7`!*!V|P+J~hI(`h?#OD@Vm$N%{Rf!+5oA8(K6Qs?lh}KQ0h$8IKJNorsWLnR0 z#Vo3u;MXC`WqUcn1;+;1W5|kFp7Mm$q{CfaQiBu}n@`F6pGfXb;~o%gCB4q72Q5qj zY9gzb=GX0lDG-1UVndxx|BB^nC=@;tfHP(k?B4q=sl@W*p zQK~*@91Ba>)46Nh?uM_$2{kKAz~ao?G#vPCcPd)9mDizzU=I;+WihI8WygFK@{ZCV zK*EU$5IQo!=RYm=nhprwr%?f=90$d(IamnqyJ@FO76)ong@a*5(wX*PgXT7g;(nSda1OG6;yb}1Sl2n z4OHMjFztl;a$Q8dRRrLvWL7Kaa|{uzq|a6Ka3_=vo26K5*|6%hOJKn3%1AKqB6Q1s zBV>maP9s}s@R?t)Rf=%OjI2LMiHUEEJ{ z9<6d_AdDpflmaln#4O=%78!FY*#X8x6=0roBH{nb>}95ANEs0Tvlta$SfN)k0>M+I zN1N#)vH}ZymOcy6AjQcXh?6I(j1@CaDb>bI+(P##fr(gtCMZ<#J30SXu?rI@aD>gh z&Kn8RoYl$(z*a@arwf5A?jd;VSsOFci@_C3sPvz8DcvRda+w}f{5SgKlGsNj&YUjC zN97^IF>n(Puf0l+k>#SGW+n#s{q^bME>&x0C8!E)o+sNxDFEPBq;G)XVy^ZoXQ_8? zvl*tPLcIWAq)&vtN|ZtIi+{~x&Chy%^;C{6$~>6B4gT=N=WZbb#pewPEXI6TaKJNAK$8q_TYAVm5L#@CK&4`Unc$w@3KW zLFkRz`>Z@)^20Z!zLi!02G<_JX0ZT5D;}-@Ac0whKJfysjPyVx{2e{4aEVctIFqkU zl|4)aU~WP;(ZK6#O|8h%GEqtB2bt-U3ArD%De_eMBC|9mbQ68^ws8bYg?lU_&mXbI z&oTY}_l8L)reb;~fM|JqMEmCLo#t>$7+Ztv(B!QK^RoAoJx#@kC?$aiIg*1d@tKuW z$Bh$KCIOcqr{<*w&y@a2EiIsg22=u4rr0m_Jy|bnj1N0++231w3`fn9&`nf1#gDRo zs0j^98=yT0%%*)y^*)r>p53!zMu=_Sq6Lo*f;sewWgo5+{c1;ROXf|M!KPEn1d<0L zL1W~jEaPl{JGE>`*ilJuG0B<6- zZlj3Ik=+Rv2W~$nO~f%oxfX$?PhN`{dwHb4NFYFE@3whUg9E{+6#Jz;sYn1K0T@vw zqqPPx_MJL0o;|6Ai6}^wME_>Fp+@d?|8)ONa#n^{NNWY_*C+ww0=vqEaoeTaQF>e+1_=(?!5I(E=`i<-YllnjN_G(BA#3Bx zqGh?VCu9DVEvwShAYksaW5Nyu4=wsq4kju_1sF?d*kyc(dRG*E9;VMQm&dc`w_bdZ@s%g=7CiIb`!dZa+WA*I&G>>1c)xu zC&0*~@IZg?USYH6!NvfVhp*rbxncX}8*HkbuoeM04_TNbCgZ}S)@;T1Okgbn0f^`0 z+POkC`>duu9SDxt`N$Fj4Q;y_aAtyGZ!C)GJ#`Gdv-&iVgN%6Siq}L zVvJ>Eo{eMRdY^u@yIAf&bNomKc_e@Q|g#(Ome;u_smq2D~yOWRd zo%0$J6QKkgBiK}+90I6dw@-RlVZYIWkRJq+yAml7T=BGuDH4O(XQBtO{JoP7^ENp+ zLyUxqJwgCByx2DOWW}r@BkcmNuad5Ln!70Jt8r(4Q>QxDm7eP53NW}niu~OIBIu%QOxO`zEHi$wz8U5AlWE{eW4#nc~K5RUomvID5?LCSn?ossoK{7*jWC$P<8iTU~eM^s) zcA+MkAY?Em$qYU>WTz<-91Os)34DS(JQCNT&-c^4V<{5=yf-q^sxW4zdj=R=(bP7m zJ%mDY%TzGznqAm;b<=wTAc&KZ9+Xh5VIfN#lyGTHemR|0^DKa~X)w+~E7=3V&6SRs zc7nzN7^(zkQm)m#U{vM)997;hRcHp_^h7n9C_o_d4XrC?mZP;J3J4VU2)pyT4)i+U z;@ZAtPj`7J2h0cV^RCHgPw;O%*kfvh`kHM%*nfRzQykWLNzJ+N+>N&1K6$Tz35FkpC{0M;QS|wi);sK- zE%I33Z=}6D@-vary+hEh+Ae9rj{G2SgIzaU*Pixu<+jtS;`jOq;oF*S$aH))=92)^aw3c0-79QQDZg>K0E`a>9 z=?kB)VfG?oYMCxd2+}WPTb2ozpig#A^wn1Fr6b4XD!5w8gzft=P*&;?S3a~zPUuxO z#*f%dSff)uGf~GqPL}E>Do}cg3^Gk^qONX&9fwxS1eaq8CoV>aiMJv~Dlky@WOOI1QGEB|HX67^^|2l6_612O>?UPc*Cyidq~g zZsn}@*PLVCs6*4)und&O2E{Y+?Y~OPkqeOSt#T?)>-EW3sSo~?W8f1HtXOa-eb;9M&))^1SOVP3}& zu^s?%K!Bi%&E-mkaZ(gDD+Q1j5Z*kQLEBa!=$djkqJ*@$5S{M6fuQSbjRRh;<;E6$ z7Q;0^QE3l|v6{f)jz!FWa7|{DoXRp0Hxie!uvWl-oCX2FbWgvn${ho;?774(7+QXlkn9~kSJcA>bP@dEYM^M35tK+z1Q>T%J=2V)AP!Hs( zxYA>eN12YB#J6Mz0l;{dB7?&^gn9&YtJBkHJm_qpB3L^zGg)*%Nq=Jl0l3RI#fG(? zcrEw;G*}{60?rkiPPAJ#vPpCQsJEhzzFns_95X(uWw!3$pnKXeOY+18U}N2 zSsGXLgXU&`Wx12k7jVXdEH-EGie}3rJBH)>n(4kOqnWUw8&cii+;voH?NkH7hwqp3 zuVgVT3N|Vg=r_xETvon+bF>u9R^)2nYbi#Rv=@G5D5gV5}W1yNxBivKNzMRgZTc$=FS0+W`a-zn)Nz zu}`l~lZNIDZXkF@Me;=|a*btA+bB7bIDVdqxDB{2XR2h7ZD11otPM{_^pBEH3NKc5 zY70A0E>ia2-fZjdupkzQAeP~oYo#(v;RXaj5#7_|5PGwoagf@q$2=lJ30M?R6%Pa# zK4)wVFbR(85|H#_O(oV!3@=hfV(+fQwPqnxwE%F7Po`h;((ib82mUVWQoCDo8Ah5d z&xCHGLSGM(z0a%%5I?9kL5E zp_}O4N5-1~O$C4m1hNa?UuRs`Wj16}0)s%6;%sHczbw=%U#C|DVXy+nls&IuA|C8Fz3NG=2*hu*R{-8J!Dn7?tXGcDQt;= z%(y3=!EtrHbiroh~{Q9D4&MXoL0G7kC>%6cp@AI zw;~ZBh6r+l?Z;>KH--8n#&S(SA9f|DpO5peBnZHLdB!JpWEs{f8)&fP?1_j8WBHz3 z^od{#dlu8u^CtZd+$*m1KgbsC#h=H?bdZzZ^JCy9&awSxnbmRfdv0PkVfik`Eme*u zmxOMjGCPL*`y?g;fgH|?#11#dKWJI->aQE` z$_UgkMi2n(ghz?d9{XbM?Fq=U7fJA}gmGJ#!yN?RE(|i-^{Pw<+(?Up>m8IM3j`OG zS>d0C|3I4u4&JfXE8A|dzw>RZIm@?Bxh|4&#Au?y^8I~byJv1)!OtSw*42?+cYlavHHylxzK&mgSTX|b^C%0~k;z`c1Tl|`2g0FYxa*nN>yT3w?!A|JL zM3CQ!CIi6>5yo5W9Qi>2aIV2?ERnD#xMTid({x#+|GELY!Rke3$i^yVB9ub^Y)|pt zywUzn%x}}bXU5B2@1!;|Y=UAV3pncRJ&iU`OvD0QhiXJq->7JFnd+xjW!yT5dUZc}$q)en*3G42s3@ zsE;s~aV4duO-2s_4qOwGoWAF$Pt{n1;y?Llzg6+8$!|)xt}eHOb^0-I6JHv-(?84a zCUz61ncQBE{!W%(61s_&kG?8%sZJX)5eVScxo(B750_Dlleh-~zk?S!SIh(NH= zA2Y)TRqxuWcW$Hd^l$DLi-_}LdRTsLt4B5ON%@jV)<_f-}DVHE@rrBS+oo_PdDVwwtu{1#-)&uE+UO>6Tv_PM;&_;lnqW2=U>Y zvnBe-{EIUKPap#49Dy_AD>!qZDL?BT1UNtqvE=Q!HA)_r!>bccg5VZCoKB&yc7Anc z;gB59OtC zf;p+<_5cCEix%~@xVL`RH)i<{KHK5a5a_N3%WydCF#CZv3pvb&byU2ML562xlgWJA zMJ_%NXR~#=f~_6vw7ptb>%^HRXoEv|Ec_g=Q`+pa%y|tN5WsTlif5&Q!DF@RC|9RD zNg#N!^nd zxso7&MphU9)3!WM7|h&pE`V)YZhmd^W?KK21Od4BOk2oyN@2IeePql1A1VYl*!4G5 zfu-~;qbI*E1-^#W*(M^53|$;gAPK=t65ZW-O`g_t`Y02*369K8ZO%kV8e2SoWw#4! z!fkcMmn3wz&B40qd+8Tx_n8gI!&d^SnHP6u`v2UjGG;tS4Q)9B5PO{ zR^?k|mz!>o@K%dTLa3Df*+e_Lq%#L|t_u@^Kt_&-Hm{N%+Nlc&0Pd7InOzspZawav zqe#CA^o*t_iirGHu1`$t=0BjjiB+8j*>!sJ^jI^ZVMRznH_^Hb$>dPwbWbL76O7BT z&%b+u0ARc;gB#T|F0dj#Abn>dlj%%$hV|wAM5sz~+9))6k$h`{V-ap*H(_kd1b;5l#W;-CbGb7)QyD;0s{ao9x1c4`xj`en3C7mxXK2Z2(hV~C!) z5E~+HCyOCbcnU1l`TXQY{ymb3P>LMrlmFe!?2)V?5O8)%60CdaL3o1pK5a1Y*IOn5 zw=mzbw(*zCmj0pA*Qe@g1N={1owi*3{1^3UBdk=ryrAN{x4%B&?2 zxWS&p6IZw!fs5PXIGv`-megjaVeTLRcS^V0>A0|y@OeZ9usoO(`6#aPycL>99JWyzY7Ebz;b(I*u?w?+Fwe0@uY6Kp*9j%+!4 z*BUJ61z~+-Z{0DrrrTgO48#b#2y#!$TsXsFUBN(b-2!7J*U|M6Er#4%>Y0DB7sy6R z$1a%c^r`gi2xF;`iQELouN*W7Vb(ba0G3r(1xzVt=)oG)~2&W@%6HMHFr6*c*Y^_6#sPz z^55B(%P`7GUosKILL9)Glo!3?x}BHJ00au`RM;aDgFo?UC{K{a>P$^kPR#D~qQ}FH ztB4(!0Ro7EOF+37P3^J4Y%CU~lkUt>p}DphcoGy09;D^|=!McY=O?cXHb)74siUvP_7BqS#vWF_0@e(E2afk1P& zJzm(X>NPD2-V4uid*)K$hK3nN`o>w%%_JKqdSyeUy|&*R*|~Kkp%TsMbw30W{U-%X z-rnf0$FB-F|VC(mBBC5Y}8`ljzVsLi-vazCUWs`tI9*x57rdJ!3hI^7fm5T#V6(H3`v37+VTx!)nqeYJg|#pmbQ zYh9}~ZDD1}-8rRmlQ@IB^nSD3J~TTJb015#G|tDKhNd@OuU~6tFo!u%0>C^{A_HHg_fpfqSoT|5D>5Fskb9lkq706vp0DM$ zgAmVx27_PHoL!TCvyu$%tu?Yb<7(S~E?>9HUyNHs1u>jM9Es7MqZX{b-GrRrV_0iP ze_@V{ED8uzCE1Gwf*yy<&Is#t6N$Uu0>I8L*US=FBqlOTNsOM>X@tKuf&kz-ZARK| zJ##`?f9<5vU>VMPa&27MO1ed5emQL7;<4t8l;7v2wp+>2y$>tP7IpTXU!>YX<}z!C zShj*r;YmZW7}d2H@)n@5A^fMhHD&VO<0e?wlc}XRDkr~Uo9)qb-}ncoAb{MmLwNiO z%biYZM1l`>IqBap88jF#`{8KN6O^K843F&yjL#@~+G|4T7r#AZ+#cw}%aRbxBvI<3 zf0&hKEin-YWHP<#qIYELI<6W70L!ek>jmEq_%omG7j`V2q`{JNSReDT7UNm@-u74; z)_m_$t3hVzM8kqV*J8*?rAG|*0tZNpT%^nV#NDm)JEN}oha^noCa67ro4?xt0S6Cq zQ&6QPPt8_k>jVL~JCVkJ?3bBr_bO-6%Tr;tmnj4$=AO##dGmMwxh@DGij3>Snm{Kl z_oX!D?2h7zk6HJliS1P4K24V(?S0nD=Ki{8BDe1I<~ii=fk6Q9yrUg0L&KQ5sBL=x zj-JLDChb5oZ16DMM{bX1SnqrZfR@{iOuL`hWA1rl6JUamQmc^zUbsxH1E$=}9dEYf zvo2DNT@zmNH!yw`u54A$oRCGCp(`pkHjsgt{)I)!OeV0|$G{4`Qr&DIHUkhK)xk4P zIiN+S{!tP+c_}7>I`Q5)_R6pPFwWnMK>%>E@A6q-tljpV+Q&aHHB(pk=QO#6b26@$ zb$sM3#|-RN^_T&xasqvU7{K+nHZGZP2)iy46ncPtVFXrykLzOaMNu-cicwIgR^p0Sm+ zvxc~GKb6O&>s@wTG{RO10*KP&8XuoXj1FtU)wO2GgV~*9&VopPmp7P-U{T01+5Pl( z!Oi{-6$B6^?cL{X@Z+45{5`-ttrc9X#r-s_R$|E-Iaw=v(&kd#{Jk#-Ac_pwJi`p@ zd_IXnim?bJ_dRd6^>6qy+BJ16L_ue1bw@8*KC0Q#XyHXd0 zYhNQv)@0w8h=`=uuE@S6kx+@WkpKD4%z2(O&-481@AE$0%X_|O&YU@O&Y3gw%mV

HIaNb7UE-zIetS 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

L$&Zsmtv5Y)grvO8zUAw;( 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 literal 0 HcmV?d00001 diff --git a/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.tgtvoc b/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.tgtvoc new file mode 100644 index 000000000..cad1a4344 --- /dev/null +++ b/contrib/promix/test_data/esen.nc.model.filtered/phrase-table.0-0.1.1.binphr.tgtvoc @@ -0,0 +1,4432 @@ +4431 world-class +4430 starvation +4429 politician-proof +4428 unrest +4427 slide +4426 moves +4425 occupation +4424 conscience +4423 detained +4422 Political +4421 • +4420 ances +4419 youthful +4418 writings +4417 would-be +4416 wisely +4415 wild +4414 waste +4413 wage +4412 rules +4411 volts +4410 violent +4409 violators +4408 villains +4407 vernacular +4406 valuable +4405 utilities +4404 users +4403 unrelenting +4402 unpredictable +4401 universal +4400 unarrested +4399 tyrants +4398 twin +4397 twenty-four +4396 tribunals +4395 treasury +4394 comply +4393 trawlers +4392 travel +4391 translate +4390 transaction +4389 traffic +4388 traders +4387 trade-distorting +4386 topics +4385 tolerant +4384 ties +4383 aged +4382 theorists +4381 criticism +4380 constitutive +4379 warring +4378 vital +4377 victorious +4376 trafficked +4375 floors +4374 trading +4373 commons +4372 territorial +4371 table +4370 stipulated +4369 shelling +4368 sex +4367 seeds +4366 science +4365 rumor +4364 rug +4363 spectacles +4362 river +4361 residential +4360 pools +4359 relevant +4358 regions +4357 regional +4356 realization +4355 profit +4354 principle +4353 police +4352 pipeline +4351 perils +4350 parliamentary +4349 painful +4348 outrages +4347 reaches +4346 outer +4345 ? +4344 organizational +4343 organization +4342 occurrence +4341 noise +4340 multitude +4339 modified +4338 misery +4337 miraculous +4336 minimum +4335 management +4334 tail +4333 series +4332 lowest +4331 lips +4330 lasting +4329 interim +4328 initial +4327 implication +4326 imagination +4325 humanities +4324 hemisphere +4323 heartland +4322 gullible +4321 governors +4320 globe +4319 generation +4318 forest +4317 forecasts +4316 fat +4315 fastest +4314 expense +4313 expanded +4312 exciting +4311 exceedingly +4310 ears +4309 drastic +4308 deployment +4307 departing +4306 decades-old +4305 crucial +4304 continent +4303 consequences +4302 comedy +4301 brunt +4300 text +4299 best-performing +4298 attendant +4297 assistance +4296 aging +4295 UAE +4294 SADC +4293 Priority +4292 Poles +4291 Economy +4290 Liberal +4289 Jerusalem +4288 ICTY +4287 Ganges +4286 FSA +4285 Britannica +4284 Encyclopedia +4283 lobbyists +4282 DPJ +4281 Party +4280 Communist +4279 CDS +4278 1996 +4277 tested +4276 tempt +4275 teams +4274 teaching +4273 tanks +4272 talent-friendly +4271 tackled +4270 tackle +4269 systems +4268 switch +4267 swinging +4266 swimming +4265 surprise +4264 supervising +4263 supervise +4262 suicide +4261 sufferers +4260 successors +4259 successor +4258 successes +4257 subsidized +4256 subsidies +4255 subsequent +4254 subjects +4253 strike +4252 stretch +4251 stemming +4250 state-funded +4249 sprawling +4248 spent-fuel +4247 spawned +4246 somehow +4245 solving +4244 software +4243 smooth +4242 shocks +4241 shareholder +4240 sexuality +4239 servicing +4238 serf-owning +4237 separates +4236 sentiments +4235 self-employment +4234 securities +4233 sectors +4232 secrets +4231 second-round +4230 second-generation +4229 sclerotic +4228 scientists +4227 scientific +4226 schemes +4225 scenarios +4224 saving +4223 sanctioning +4222 salty +4221 rulers +4220 waves +4219 route +4218 flag +4217 rooms +4216 roll +4215 rocket +4214 roads +4213 rewarded +4212 retirees +4211 retained +4210 retain +4209 retail +4208 restrict +4207 restaurants +4206 residents +4205 unsuccessful +4204 render +4203 removed +4202 relying +4201 regulatory +4200 regimens +4199 refugees +4198 red +4197 records +4196 recording +4195 recipients +4194 recalcitrant +4193 rebel +4192 reason +4191 rating +4190 raters +4189 random +4188 radicals +4187 quality-management +4186 pundits +4185 providers +4184 protesters +4183 prospective +4182 ownership +4181 property +4180 projects +4179 profitable +4178 producers +4177 procedures +4176 probable +4175 privately +4174 prisoners +4173 prescribed +4172 premature +4171 practitioners +4170 reckoning +4169 postponing +4168 possibly +4167 moods +4166 popular +4165 pool +4164 pony-tailed +4163 polar +4162 plunges +4161 plastic +4160 planes +4159 picked +4158 periodic +4157 peoples +4156 payouts +4155 payment +4154 payers +4153 parliaments +4152 parliamentarians +4151 papers +4150 packaged +4149 overly +4148 outstanding +4147 outcomes +4146 opponents +4145 biggest +4144 reaping +4143 sacrosanct +4142 oligarchs +4141 old-fashioned +4140 old-age +4139 officers +4138 offers +4137 arises +4136 humanity +4135 Exchequer +4134 shaping +4133 oceans +4132 observers +4131 obscure +4130 numerical +4129 now-plummeting +4128 revolutionary +4127 non-scientific +4126 non-democracies +4125 non-NATO +4124 newspaper +4123 low-energy +4122 network +4121 natural +4120 flags +4119 museums +4118 multiple-family +4117 multilateral +4116 movements +4115 motor +4114 motives +4113 motherhood +4112 scenario +4111 optimistic +4110 mosquito +4109 mortgage +4108 moral +4107 mood +4106 money-market +4105 moderated +4104 model +4103 mixed +4102 mislead +4101 minority +4100 migrants +4099 middle-income +4098 microbes +4097 messier +4096 memories +4095 medieval +4094 barrage +4093 mechanics +4092 market-neutral +4091 march +4090 manufacturers +4089 mandatory +4088 managers +4087 managerial +4086 youth +4085 male +4084 medical +4083 worse +4082 lowering +4081 low-density +4080 loose +4079 longstanding +4078 long-terms +4077 simmering +4076 lofty +4075 lobby +4074 lobbies +4073 links +4072 limits +4071 libertarian +4070 liberate +4069 liberals +4068 lenders +4067 legitimate +4066 legislators +4065 learning +4064 lawyers +4063 lawmakers +4062 knowledge +4061 knit +4060 junk +4059 partners +4058 judicial +4057 jihadis +4056 constituent +4055 isolate +4054 intravenous +4053 interpret +4052 interest-rate +4051 interact +4050 intelligence +4049 intellectual +4048 instant +4047 injured +4046 industrial-country +4045 individuals +4044 firms +4043 increases +4042 lending +4041 incomes +4040 improved +4039 import +4038 impending +4037 migrant +4036 ill-educated +4035 identity +4034 idealized +4033 humanitarians +4032 human-rights +4031 home-lending +4030 values +4029 holders +4028 musical +4027 hip +4026 hikes +4025 high-income +4024 hearts +4023 handling +4022 goods +4021 guys +4020 gridlock +4019 graduates +4018 gods +4017 public-goods +4016 genes +4015 generals +4014 gas-guzzling +4013 garbage +4012 fundamental +4011 frightened +4010 free-trade +4009 fourth +4008 owners +4007 forests +4006 foods +4005 food-price +4004 food +4003 flows +4002 streams +4001 flowing +4000 floating +3999 fixed +3998 fish +3997 types +3996 finance +3995 filings +3994 fighters +3993 feelings +3992 farm +3991 family-planning +3990 fading +3989 experts +3988 experimental +3987 expatriate +3986 Last +3985 exorcising +3984 exclude +3983 exchange-rate +3982 excessive +3981 exaggerated +3980 evacuate +3979 ethnically +3978 essence +3977 espoused +3976 escaping +3975 escalating +3974 equity +3973 entrepreneurs +3972 engines +3971 energy-efficient +3970 endless +3969 enclaves +3968 flexibility +3967 employers +3966 employees +3965 empires +3964 embraced +3963 fraud +3962 electoral +3961 eating +3960 earnings +3959 duties +3958 run-up +3957 drugs +3956 dreams +3955 downside +3954 donor +3953 donating +3952 alternatives +3951 produced +3950 domestically +3949 distressing +3948 disregard +3947 displaced +3946 disease +3945 discussions +3944 discoveries +3943 dipped +3942 die-hard +3941 dictators +3940 dictates +3939 diagnosed +3938 devils +3937 developments +3936 detainee +3935 destroyed +3934 designing +3933 deposits +3932 deny +3931 defunct +3930 fears +3929 deflation +3928 deepwater +3927 decreased +3926 makers +3925 death-penalty +3924 dealt +3923 damages +3922 customers +3921 curtailing +3920 cry +3919 heads +3918 crowned +3917 searched +3916 investigators +3915 credits +3914 creditors +3913 crack +3912 surrender +3911 corporate +3910 propositions +3909 component +3908 controlling +3907 control +3906 contract +3905 continuity +3904 Duhalde +3903 contacts +3902 consuming +3901 consumer-confidence +3900 consumer +3899 consultant +3898 confused +3897 conflicts +3896 concerts +3895 comprehensive +3894 communist +3893 commercial +3892 cohorts +3891 coastal +3890 coal-state +3889 clubs +3888 club +3887 clinicians +3886 clever +3885 critics +3884 clearly +3883 clean +3882 civilians +3881 engineering +3880 civil +3879 civic +3878 city +3877 child +3876 cheap +3875 charitable-campaign +3874 channel +3873 championships +3872 inalienable +3871 centrifuge +3870 central-bank +3869 caution +3868 problem +3867 casts +3866 cars +3865 capture +3864 candidate +3863 camps +3862 campaigners +3861 murderous +3860 shops +3859 coffee +3858 health-services +3857 consumers +3856 buyers +3855 three +3854 sovereign +3853 businessmen +3852 bursting +3851 burn +3850 budget +3849 litigation +3848 bread +3847 brand-name +3846 brain +3845 bought +3844 borrowing +3843 border-enforcement +3842 boosting +3841 books +3840 bonds +3839 bond-market +3838 bond +3837 bombers +3836 bodies +3835 boards +3834 black-box +3833 bilateral +3832 swings +3831 besieged +3830 peak +3829 belongs +3828 five +3827 designated +3826 distorted +3825 smaller +3824 beans +3823 tuned +3822 punished +3821 mining +3820 blinded +3819 bankers +3818 sheets +3817 extremists +3816 baby +3815 babies +3814 awash +3813 regimes +3812 audit +3811 attachments +3810 seams +3809 art +3808 assurances +3807 asset +3806 boys +3805 arrangement +3804 triggered +3803 aren +3802 approving +3801 appropriate +3800 approaches +3799 appeals +3798 mutual +3797 religious +3796 programs +3795 specimen +3794 skeletons +3793 have-nots +3792 products +3791 dairy +3790 ambitious +3789 tempting +3788 always +3787 contracts +3786 revoke +3785 commitments +3784 insults +3783 alleging +3782 sensitivity +3781 aides +3780 agreed-upon +3779 advances +3778 advanced-country +3777 administrations +3776 adjustments +3775 education +3774 primary +3773 transparency +3772 accountability +3771 addresses +3770 activated +3769 outcome +3768 accountable +3767 abuses +3766 stunning +3765 Yemen +3764 We +3763 Venezuela +3762 Ukrainian +3761 UN +3760 U.S. +3759 Tricks +3758 Times +3757 Three +3756 Places +3755 Holy +3754 TV +3753 Sunni +3752 States-based +3751 States-China +3750 Spanish +3749 Spain +3748 Socialists +3747 Sick +3746 Shi +3745 SSA +3744 Republican +3743 Rates +3742 Polish +3741 Peruvian +3740 Pay +3739 Problems +3738 OECD +3737 New +3736 Net +3735 Muslim +3734 Moldova +3733 Mental +3732 Mau +3731 Markets +3730 MDG +3729 Los +3728 Latins +3727 Jordanian +3726 Jordan +3725 Jews +3724 maritime +3723 Islamists +3722 Islamic-minded +3721 Islamic +3720 Iranian +3719 Inter-Services +3718 Igbo +3717 Humans +3716 Hu +3715 Hirst +3714 Himalayan +3713 Hatoyama +3712 Green +3711 Greek-style +3710 Germanys +3709 Gaza +3708 GDP-linked +3707 Funds +3706 Federal +3705 Dutch +3704 Disorders +3703 Countries +3702 Developing +3701 Democrats +3700 Democratic +3699 D. +3698 Constitutional +3697 Constitution +3696 Confucian +3695 Club +3694 Take +3693 Children +3692 Chiang +3691 Chechen +3690 Catherine +3689 Brazilians +3688 Bosnia +3687 Azerbaijan +3686 Awards +3685 Asians +3684 Arab +3683 Animals +3682 Republicans +3681 Alpine +3680 Agreements +3679 enzymes +3678 APP +3677 inhibiting +3676 A-peptide +3675 students +3674 47 +3673 professionals +3672 160 +3671 .. +3670 1860 +3669 implicitly +3668 Nehru +3667 Muslims +3666 core +3665 telephones +3664 industrial +3663 transport +3662 innovation +3661 handicapped +3660 imbalances +3659 obscures +3658 foreseeing +3657 neither +3656 autos +3655 los +3654 sovereign-debt +3653 prices +3652 receiving +3651 dominate +3650 gamma-secretase +3649 beta-secretase +3648 slogan +3647 Yushchenko +3646 cited +3645 Wikipedia +3644 contain +3643 calculations +3642 spiritual +3641 sleek +3640 restraints +3639 population +3638 highways +3637 labeled +3636 gross +3635 fortunes +3634 mean +3633 alike +3632 sins +3631 politician +3630 mainstream +3629 extremist +3628 Macedonian +3627 écoles +3626 worn +3625 working-class +3624 woman +3623 ministry +3622 diplomacy +3621 wishing +3620 whole +3619 whiff +3618 wherever +3617 whereby +3616 life-threatening +3615 coordination +3614 convicts +3613 welcome +3612 weight +3611 wear +3610 watched +3609 warts +3608 wars +3607 war +3606 vouchers +3605 voted +3604 vindicated +3603 vicinity +3602 uttered +3601 usefully +3600 usage +3599 urban +3598 upstream +3597 upheld +3596 upheaval +3595 unstuck +3594 modern +3593 uniquely +3592 underscored +3591 underground +3590 truly +3589 tree +3588 treading +3587 transit +3586 traction +3585 traced +3584 tour +3583 turns +3582 stick +3581 recognize +3580 high-security +3579 vigor +3578 areas +3577 establish +3576 diminish +3575 boil +3574 thus +3573 threatened +3572 thinking +3571 underpinnings +3570 term +3569 temple +3568 television +3567 teeth +3566 technologically +3565 targets +3564 tankers +3563 talks +3562 tagged +3561 sweeping +3560 supported +3559 summit +3558 warrant +3557 sufficient +3556 successful +3555 succeeded +3554 stumbled +3553 student +3552 stuck +3551 struggling +3550 stronger +3549 strength +3548 strategically +3547 stories +3546 stolen +3545 vilify +3544 stiffen +3543 stays +3542 stay +3541 stationed +3540 station +3539 start-up +3538 standards +3537 stance +3536 stalled +3535 stakes +3534 staged +3533 stage +3532 squarely +3531 spoken +3530 split +3529 spectacularly +3528 specifically +3527 specific +3526 speaking +3525 sorts +3524 somewhat +3523 sometimes +3522 sometime +3521 sold +3520 soft +3519 soccer +3518 volume +3517 smashed +3516 slow +3515 slippery +3514 slightly +3513 slashed +3512 sitting +3511 sinking +3510 similar +3509 heightened +3508 significantly +3507 shows +3506 shot +3505 shop +3504 stood +3503 shares +3502 shape +3501 sex-crime +3500 seriously +3499 sensitive +3498 sensing +3497 sense +3496 displays +3495 self-serving +3494 self-interested +3493 self-fulfilling +3492 seized +3491 seismic +3490 secured +3489 secretly +3488 secret +3487 scrutinized +3486 sciences +3485 scattered +3484 scandals +3483 savings +3482 save +3481 sat +3480 worked +3479 sanctioned +3478 salient +3477 sales +3476 safely +3475 runs +3474 row +3473 rosy +3472 ring +3471 rigorously +3470 rigged +3469 rig +3468 rich +3467 rewarding +3466 revised +3465 revealed +3464 ill-gotten +3463 retire +3462 resulting +3461 responses +3460 responding +3459 resource-poor +3458 reside +3457 requests +3456 reputation +3455 represented +3454 repetition +3453 remember +3452 remains +3451 uneducated +3450 relatively +3449 regarded +3448 recognized +3447 recalls +3446 reasons +3445 realized +3444 re-established +3443 ranked +3442 rampant +3441 raised +3440 quoted +3439 quit +3438 quipped +3437 purpose +3436 proxies +3435 provoked +3434 prove +3433 prospects +3432 proposition +3431 properties +3430 prominent +3429 pro-independence +3428 pro-consumption +3427 recipient +3426 privately-owned +3425 prevailing +3424 prevail +3423 pretty +3422 preceded +3421 post +3420 possesses +3419 positions +3418 posing +3417 populate +3416 poll +3415 politically +3414 point-of-care +3413 poem +3412 plot +3411 plea +3410 plays +3409 players +3408 planned +3407 piece +3406 petition +3405 pervasive +3404 performed +3403 penalties +3402 patterns +3401 patronage +3400 partner +3399 participating +3398 participants +3397 paralyzed +3396 paradoxically +3395 paper +3394 pale +3393 upbringing +3392 overthrown +3391 outset +3390 outright +3389 out-perform +3388 organized +3387 procedure +3386 operating +3385 opened +3384 reverse +3383 senses +3382 strains +3381 earn +3380 studies +3379 overseas +3378 weaker +3377 matters +3376 entitlement +3375 company +3374 balance +3373 allegations +3372 Earth +3371 Banking +3370 officially +3369 King +3368 secession +3367 net +3366 extra +3365 evaporated +3364 occurs +3363 occasionally +3362 occasional +3361 nuts +3360 visible +3359 surging +3358 notably +3357 normally +3356 nativist +3355 national-level +3354 nation +3353 narrowly +3352 sell +3351 muscles +3350 mosque +3349 mortality +3348 stress +3347 months +3346 month +3345 moderate +3344 modeled +3343 mode +3342 mistaken +3341 mistake +3340 mentioned +3339 measured +3338 material +3337 mass +3336 marine +3335 manufacturing +3334 manufactured +3333 maneuvered +3332 malaise +3331 lured +3330 losers +3329 loosely +3328 looming +3327 lodge +3326 location +3325 located +3324 lobbying +3323 stream +3322 parrot +3321 lining +3320 light +3319 rapidly +3318 learned +3317 leader +3316 lawsuits +3315 principles +3314 criteria +3313 land +3312 laid +3311 lacked +3310 kingpins +3309 kinds +3308 jobs +3307 isolated +3306 … +3305 stability +3304 threatening +3303 rarely +3302 permitted +3301 patterned +3300 irritants +3299 involvement +3298 inviting +3297 investments +3296 invested +3295 invest +3294 invaded +3293 intrusion +3292 one-sided +3291 national +3290 low +3289 quarter +3288 initiative +3287 action +3286 wind +3285 currents +3284 design +3283 intervention +3282 liquidity +3281 intent +3280 promising +3279 installed +3278 inspired +3277 insofar +3276 insisting +3275 insisted +3274 pledging +3273 mutually +3272 insight +3271 insiders +3270 inroads +3269 rights +3268 inherit +3267 inhabit +3266 task +3265 incurred +3264 incumbents +3263 urgent +3262 uncertainty +3261 transfer +3260 tranches +3259 tradable +3258 quarter-century +3257 driver +3256 dock +3255 context +3254 stripping +3253 stark +3252 stable +3251 soil +3250 � +3249 socially +3248 sharing +3247 several +3246 restraint +3245 recorded +3244 protecting +3243 propping +3242 preference +3241 practical +3240 organizations +3239 obtaining +3238 uncertain +3237 neighboring +3236 millennia +3235 sheer +3234 interpreting +3233 gaining +3232 formerly +3231 feeling +3230 ensuring +3229 conflict +3228 storage +3227 cold +3226 calling +3225 averted +3224 agriculture +3223 advancing +3222 advanced +3221 Australia +3220 portfolio +3219 occupying +3218 guise +3217 democratic +3216 week +3215 Vienna +3214 Rwanda +3213 amp +3212 R +3211 Pristina +3210 Panama +3209 Mexican +3208 Bolivia +3207 Managua +3206 July +3205 Gilani +3204 Ethiopia +3203 Central +3202 2009 +3201 despite +3200 1933 +3199 [ +3198 improvements +3197 impresario +3196 implies +3195 implemented +3194 imperiled +3193 images +3192 illustrate +3191 identified +3190 identifiable +3189 hyphenated +3188 hydroelectric +3187 hunts +3186 housing +3185 houses +3184 horrors +3183 hope +3182 homeland +3181 holdings +3180 history +3179 historical +3178 highs +3177 highlighted +3176 apartment +3175 hidden +3174 hesitate +3173 lies +3172 herein +3171 helpful +3170 heed +3169 hearing +3168 headway +3167 never +3166 havoc +3165 unleashed +3164 thoughts +3163 risen +3162 occurred +3161 hat +3160 harrowing +3159 hardship +3158 happens +3157 happened +3156 handed +3155 restored +3154 participated +3153 guerrilla +3152 groups +3151 grounds +3150 underestimate +3149 greatly +3148 defining +3147 grave +3146 governing +3145 goes +3144 glib +3143 laughs +3142 favorable +3141 generally +3140 pressures +3139 funds +3138 functions +3137 fulfills +3136 fuel +3135 owning +3134 excess +3133 frenzy +3132 free-riding +3131 founded +3130 myself +3129 fought +3128 formed +3127 formative +3126 formation +3125 foremost +3124 forego +3123 votes +3122 flown +3121 flourish +3120 flock +3119 flat +3118 flares +3117 fire +3116 finishing +3115 fine +3114 purchase +3113 financially +3112 fill +3111 fifth +3110 fiasco +3109 fed +3108 features +3107 fashion +3106 farms +3105 poorly +3104 particularly +3103 faring +3102 fame +3101 failures +3100 failing +3099 factor +3098 incapacitated +3097 ruler +3096 facto +3095 facility +3094 exterminated +3093 extensively +3092 expression +3091 expressed +3090 lane +3089 express +3088 exploring +3087 exploits +3086 explaining +3085 explain +3084 experienced +3083 watches +3082 expensive +3081 expenditures +3080 populations +3079 expanding +3078 existence +3077 exist +3076 examined +3075 ever-rising +3074 events +3073 eurozone +3072 estate +3071 established +3070 essentially +3069 warm +3068 erupted +3067 entirely +3066 enterprise +3065 enraged +3064 engine +3063 engaged +3062 enforced +3061 ended +3060 enacted +3059 employing +3058 employed +3057 emphasizing +3056 emphasized +3055 stranglehold +3054 emerges +3053 embryonic +3052 embarrassingly +3051 elsewhere +3050 else +3049 elections +3048 echoed +3047 relationships +3046 drivers +3045 dramatically +3044 double-digit +3043 dominated +3042 dominant +3041 dollars +3040 dollar-denominated +3039 doctrine +3038 disturbances +3037 distressed +3036 disputed +3035 dispute +3034 display +3033 discovery +3032 discontinued +3031 disappointment +3030 diplomatic +3029 dioxide +3028 differently +3027 differences +3026 difference +3025 died +3024 dictatorships +3023 devices +3022 developing-country +3021 developed +3020 depicting +3019 depends +3018 demonstrations +3017 demonstrates +3016 demonstrated +3015 democracy +3014 degree +3013 definitely +3012 defeated +3011 decaying +3010 decayed +3009 debt-holders +3008 debating +3007 damned +3006 cynical +3005 revenues +3004 customs +3003 underway +3002 debated +3001 crowd +3000 cross-country +2999 critically +2998 credibility +2997 counted +2996 costs +2995 cost-effective +2994 converted +2993 code +2992 ethical +2991 contested +2990 contending +2989 contemplating +2988 constructed +2987 constrain +2986 consisting +2985 considerably +2984 consensus +2983 confident +2982 confidence +2981 composites +2980 composed +2979 competitiveness +2978 comparatively +2977 repeated +2976 commonly +2975 common +2974 heights +2973 commanding +2972 clustered +2971 clings +2970 class +2969 govern +2968 circumstances +2967 circulating +2966 choice +2965 cheering +2964 charred +2963 changeover +2962 changed +2961 chances +2960 chairs +2959 chair +2958 certainly +2957 centrist +2956 catchy +2955 casually +2954 cast- +2953 cash +2952 capital +2951 pose +2950 campaign +2949 camp +2948 vagaries +2947 turbines +2946 Inter-Governmental +2945 election +2944 bungling +2943 bulls +2942 bubble +2941 broke +2940 understood +2939 broadly +2938 broadcast +2937 broad +2936 brew +2935 bounds +2934 boosted +2933 demand +2932 booming +2931 boomed +2930 bombings +2929 bombed +2928 body +2927 blue +2926 besides +2925 believer +2924 interested +2923 behavior +2922 settled +2921 becomes +2920 increasingly +2919 hardened +2918 traded +2917 shared +2916 marching +2915 cumbersome +2914 neglected +2913 charge +2912 folded +2911 equivalent +2910 enhanced +2909 concentrated +2908 compensated +2907 primarily +2906 bars +2905 banned +2904 bankrupt +2903 ball +2902 burned +2901 background +2900 backed +2899 normal +2898 haunt +2897 awe +2896 averaged +2895 fertility +2894 height +2893 precisely +2892 noon +2891 assurance +2890 associations +2889 associates +2888 assaulted +2887 waged +2886 provisional +2885 polling +2884 hosting +2883 distinct +2882 armed +2881 arisen +2880 arise +2879 arguments +2878 argued +2877 argue +2876 situation +2875 strictly +2874 nowhere +2873 mounting +2872 deployed +2871 appropriations +2870 appointment +2869 appointees +2868 appeared +2867 anytime +2866 transition +2865 anxiety +2864 anti-war +2863 anti-shareholders +2862 announced +2861 transformed +2860 wealthier +2859 extreme +2858 forth +2857 anchored +2856 analysis +2855 extent +2854 amidst +2853 amid +2852 questioned +2851 estrangement +2850 alone +2849 alleged +2848 wrapped +2847 ala +2846 gonna +2845 ain +2844 aim +2843 agreement +2842 aggression +2841 sentiment +2840 aggravate +2839 agents +2838 ubiquitous +2837 heating +2836 twenty +2835 affairs +2834 advised +2833 adverse +2832 adjusted +2831 adequate +2830 ad +2829 actors +2828 active +2827 acknowledging +2826 accounts +2825 according +2824 absolutely +2823 absent +2822 Ai +2821 abide +2820 abandoning +2819 staple +2818 plant +2817 re-bar +2816 period +2815 discussion +2814 panel +2813 determining +2812 large-scale +2811 portion +2810 chord +2809 deep +2808 culture +2807 shortage +2806 butter +2805 YouTube +2804 Yes +2803 twice +2802 congratulated +2801 Yanukovich +2800 When +2799 Washington-based +2798 equities +2797 engagement +2796 Thailand +2795 Technology +2794 Summit +2793 Setting +2792 Secretariat +2791 Bottom +2790 Room +2789 One +2788 everywhere +2787 Nigerians +2786 Misguided +2785 Middle +2784 Man +2783 MacAskill +2782 Left +2781 Laboratory +2780 Kremlin +2779 _ +2778 Servan +2777 Jacques +2776 Iraqi +2775 later +2774 prevent +2773 Hezbollah +2772 HK +2771 Gallipoli +2770 benefited +2769 regularly +2768 Friends +2767 Facility +2766 Facebook +2765 meeting +2764 Transformation +2763 Environmental +2762 EU-wide +2761 curb +2760 rates +2759 constrained +2758 Degradation +2757 DNA +2756 rulings +2755 Coaster +2754 Economist +2753 Cambridge +2752 born +2751 Brazil +2750 Authority +2749 Armstrong +2748 Afghan +2747 Action +2746 A +2745 D +2744 47th +2743 350,000 +2742 1990 +2741 1973 +2740 1787 +2739 What +2738 declining +2737 steadily +2736 jeopardized +2735 authored +2734 partly +2733 writing +2732 thrashed +2731 therefore +2730 study +2729 schools +2728 risking +2727 resonates +2726 reported +2725 confirm +2724 letting +2723 indeed +2722 developing +2721 however +2720 protestors +2719 consideration +2718 especially +2717 concluding +2716 opportunities +2715 buried +2714 outward +2713 constituted +2712 shopping +2711 influence +2710 belatedly +2709 albeit +2708 cultivating +2707 co-authored +2706 PiS +2705 1994 +2704 PA +2703 MDGs +2702 gun +2701 couples +2700 Nordic +2699 Bird +2698 requires +2697 bearer +2696 standard +2695 xenophobic +2694 significant +2693 self-interest +2692 predicament +2691 discussed +2690 embattled +2689 edge +2688 clashing +2687 absence +2686 In +2685 'll +2684 promise +2683 ! +2682 taming +2681 ‘ +2680 ´ +2679 yields +2678 write +2677 wipe +2676 whistle +2675 weighted +2674 weak +2673 wave +2672 water +2671 wake +2670 voter +2669 vigilantes +2668 upside +2667 unique +2666 underlying +2665 twentieth-century +2664 triumph +2663 trader +2662 toxic +2661 today +2660 theme +2659 wrong +2658 bureau +2657 weather +2656 upper +2655 tried +2654 territory +2653 slack +2652 extension +2651 requisite +2650 prior +2649 renminbi +2648 reality +2647 project +2646 profits +2645 few +2644 nearest +2643 adopted +2642 measures +2641 maximum +2640 grab-bag +2639 family +2638 event +2637 electorate +2636 deliberate +2635 cause +2634 Review +2633 PLA +2632 Liberation +2631 ERM +2630 Clinton +2629 Chairman +2628 16th +2627 educational +2626 tertiary +2625 teacher +2624 sustains +2623 supplies +2622 steel +2621 spectrum +2620 specter +2619 speaker +2618 soul +2617 sophisticated +2616 smoking +2615 slightest +2614 sleeping +2613 skewed +2612 site +2611 signs +2610 showed +2609 shock +2608 seventeenth-century +2607 session +2606 ruled +2605 revolution +2604 revival +2603 revise +2602 returns +2601 rest +2600 responsible +2599 respect +2598 resignation +2597 resetting +2596 report +2595 reforms +2594 reform +2593 reflection +2592 reductions +2591 recognition +2590 reclaim +2589 rank +2588 ranging +2587 rally +2586 racist +2585 quality +2584 purchased +2583 public-sector +2582 proposal +2581 prognosis +2580 pro-trade +2579 pride +2578 pricing +2577 agreements +2576 previous +2575 prevalence +2574 presence +2573 practicing +2572 practices +2571 awaits +2570 unions +2569 powerful +2568 store +2567 politics +2566 : +2565 plausibility +2564 perpetrators +2563 peasant +2562 summer +2561 passive +2560 passing +2559 participate +2558 parcel +2557 outside +2556 outreach +2555 output-growth +2554 output +2553 Germans +2552 indirect +2551 effects +2550 onset +2549 one-seventh +2548 eve +2547 official +2546 constitutes +2545 decades +2544 surplus +2543 collective +2542 street +2541 raw +2540 murder +2539 formal +2538 swapping +2537 debt +2536 currency +2535 Zacharias +2534 House +2533 Turkish +2532 Safe +2531 Fund +2530 Monetary +2529 High +2528 Financial +2527 China-Japan +2526 Century +2525 emerged +2524 monopolist +2523 suspicion +2522 surgical +2521 sub-Saharan +2520 staff +2519 radical +2518 surface +2517 lost +2516 ten +2515 living +2514 health +2513 groundwater +2512 famous +2511 dynastic +2510 diagnosing +2509 curse +2508 reef +2507 coral +2506 committing +2505 epochal +2504 things +2503 Treasury +2502 The +2501 Silvio +2500 Sarkozy +2499 Poland +2498 Philippines-China +2497 Palestinian +2496 Nigerian +2495 Latin +2494 LDP +2493 Hong +2492 Hitler +2491 University +2490 Harvard +2489 Haiti +2488 National +2487 Gross +2486 Cuba +2485 dictator +2484 Chile +2483 Army +2482 11 +2481 1 +2480 ocean +2479 rot +2478 obvious +2477 object +2476 nuclear +2475 northern +2474 norm +2473 nonetheless +2472 rush +2471 networks +2470 nature +2469 terrorist +2468 narrow +2467 mouthpiece +2466 moisture +2465 modify +2464 ministerial +2463 present +2462 minders +2461 mid-1990 +2460 memorandum +2459 materials +2458 market-timing +2457 markedly +2456 ­ +2455 manifes +2454 manages +2453 machine +2452 lower +2451 lot +2450 legislative +2449 legally +2448 justice +2447 junta +2446 EU +2445 reinforcement +2444 interwar +2443 integral +2442 ingredients +2441 indicates +2440 passes +2439 incumbent +2438 region +2437 emerging +2436 newly +2435 3 +2434 kind +2433 importance +2432 implementation +2431 costly +2430 host +2429 horizons +2428 wife +2427 third +2426 hinged +2425 heralded +2424 heels +2423 ratified +2422 group +2421 governor +2420 governmental +2419 parties +2418 global +2417 generated +2416 game +2415 gains +2414 addressed +2413 percent +2412 full +2411 Indian +2410 exports +2409 oil +2408 inside +2407 cradle +2406 bailouts +2405 forms +2404 formats +2403 foreign-exchange +2402 without +2401 forces +2400 works +2399 school +2398 pedestrians +2397 football +2396 foot +2395 folk +2394 nurturing +2393 flash +2392 first-quarter +2391 Nations +2390 financing +2389 financial-sector +2388 fate +2387 growth +2386 faster +2385 exempt +2384 exchange +2383 misstep +2382 area +2381 euro +2380 ethanol +2379 enter +2378 enforcement +2377 insurance +2376 encourages +2375 economy +2374 economists +2373 eastern +2372 bird +2371 drove +2370 drops +2369 drives +2368 draft +2367 doesn +2366 documents +2365 dissolution +2364 devoid +2363 desires +2362 descend +2361 department +2360 deniers +2359 delta +2358 del +2357 deeper +2356 environment +2355 damaging +2354 cuts +2353 cultural +2352 crises +2351 countrys +2350 counterpart +2349 countered +2348 lingering +2347 corner +2346 inherited +2345 copy +2344 consistent +2343 confronts +2342 confines +2341 concession +2340 compulsory +2339 commit +2338 collections +2337 collapsed +2336 collapse +2335 coincided +2334 coal +2333 co-chairs +2332 change +2331 climate +2330 circle +2329 chapter +2328 championed +2327 celebrations +2326 caused +2325 carrot +2324 devastating +2323 cabinet +2322 late +2321 facts +2320 daily +2319 deeds +2318 burst +2317 built +2316 buildup +2315 undergo +2314 cancer +2313 brand +2312 branches +2311 booms +2310 meetings +2309 blended +2308 notions +2307 vague +2306 beneficiary +2305 believe +2304 priced +2303 below +2302 offset +2301 basin +2300 barrel +2299 applied +2298 balances +2297 Greece +2296 opposite +2295 fault +2294 director +2293 arrangements +2292 army +2291 arm +2290 fueling +2289 dependent +2288 appreciation +2287 answerable +2286 shrink +2285 deficit +2284 Soviet +2283 policies +2282 minds +2281 inland +2280 altogether +2279 allocate +2278 awarding +2277 advocates +2276 adoption +2275 medicine +2274 achieved +2273 acceptance +2272 stake +2271 bet +2270 parody +2269 bailout +2268 salt +2267 grain +2266 large +2265 weakening +2264 weakness +2263 confession +2262 ban +2261 World +2260 Warming +2259 Volga +2258 Treaty +2257 Tier +2256 Tibetan +2255 Thatcherite +2254 Taiwan +2253 Syrian +2252 Statute +2251 State +2250 Spins +2249 South +2248 nationalist +2247 Sinhalese +2246 September +2245 Security +2244 Russian +2243 Rodríguez +2242 Rice +2241 Southeast +2240 Race +2239 laureate +2238 Prize +2237 Population +2236 Prison +2235 President +2234 Power +2233 Palace +2232 Pacific +2231 Ossetian +2230 Oil +2229 Test +2228 Nuclear +2227 Northern +2226 NPT +2225 NEPAD +2224 Millennium +2223 Member +2222 May +2221 Libya +2220 Lebanese +2219 Korea +2218 Kong +2217 Kill +2216 Japanese +2215 Islam +2214 International +2213 IPCC +2212 IMF +2211 Holocaust +2210 Highway +2209 Heights +2208 Haitian +2207 Gulf +2206 Group +2205 W. +2204 George +2203 Staff +2202 General +2201 Union +2200 GDP +2199 Spotlight +2198 G-20 +2197 Cold +2196 From +2195 Forum +2194 FSB +2193 Executive +2192 Program +2191 Environment +2190 England +2189 Eastern +2188 liberal +2187 disintegration +2186 Depression +2185 111 +2184 sanctions +2183 imposed +2182 Department +2181 Delta +2180 Danish +2179 DSM +2178 DPP +2177 Cup +2176 Crown +2175 Congress +2174 Community +2173 Committee +2172 Co-Prosperity +2171 Climate +2170 Justice +2169 Chief +2168 Catholic +2167 Campaign +2166 CO2 +2165 Bush +2164 goals +2163 quantifiable +2162 Brown +2161 Gordon +2160 Minister +2159 Prime +2158 Baltic +2157 Asian +2156 Asia +2155 Argentina +2154 Gomes +2153 Ana +2152 Age +2151 affects +2150 ages +2149 ice +2148 temperatures +2147 90 +2146 9 +2145 20 +2144 meantime +2143 whose +2142 presided +2141 including +2140 dividend +2139 popularity +2138 mobilization +2137 / +2136 community +2135 varied +2134 wanting +2133 turmoil +2132 PAP +2131 ECB +2130 CCX +2129 CCP +2128 gilts +2127 bounce +2126 cat +2125 spirits +2124 orders +2123 worst +2122 wartime +2121 usual +2120 traditional +2119 prosecutor +2118 Fatah +2117 recent +2116 rebalancing +2115 proposed +2114 powers +2113 yanked +2112 cable +2111 position +2110 policy +2109 party +2108 own +2107 ongoing +2106 noncompliance +2105 motive +2104 military +2103 lumbering +2102 leadership +2101 largest +2100 fees +2099 tuition +2098 highest +2097 greatest +2096 great +2095 expectation +2094 employment +2093 effective +2092 dire +2091 constitutional +2090 citizens +2089 squad +2088 cheer +2087 bank +2086 central +2085 bosses +2084 bidding +2083 better +2082 avoidance +2081 assertive +2080 agenda +2079 Wings +2078 Old +2077 East +2076 2002 +2075 pink-collar +2074 accounting +2073 respective +2072 expectations +2071 claimed +2070 research +2069 closures +2068 bipartisan +2067 U.S +2066 shores +2065 s +2064 ™ +2063 € +2062 ‑ +2061 la +2060 à +2059 yourself +2058 yes +2057 wound +2056 wedge +2055 drive +2054 grew +2053 worries +2052 worried +2051 worldwide +2050 typically +2049 women +2048 shouting +2047 withdrawn +2046 room +2045 investment +2044 viable +2043 widely +2042 observed +2041 substantially +2040 while +2039 loans +2038 weapons +2037 weakened +2036 ways +2035 warfare +2034 want +2033 waited +2032 waging +2031 vote +2030 voice +2029 visited +2028 violations +2027 views +2026 viewed +2025 vice +2024 mouth +2023 word +2022 using +2021 used +2020 bureaucratic +2019 exercise +2018 unwise +2017 unwilling +2016 unwanted +2015 until +2014 unsecured +2013 unlikely +2012 unless +2011 university +2010 undertake +2009 duress +2008 uncooperative +2007 unable +2006 inward +2005 tu +2004 trying +2003 try +2002 truthful +2001 true +2000 trip +1999 treating +1998 transmitted +1997 transmission +1996 trained +1995 train +1994 trade +1993 hopeless +1992 touch +1991 tolerance +1990 drug +1989 toe +1988 fellow +1987 arrests +1986 yield +1985 win +1984 ward +1983 visit +1982 view +1981 venture +1980 vacuum +1979 remix +1978 unite +1977 undermine +1976 treat +1975 transmit +1974 coverage +1973 constituents +1972 idea +1971 creation +1970 struggle +1969 particular +1968 sustain +1967 surge +1966 suit +1965 structure +1964 strongly +1963 strengthen +1962 squeeze +1961 spend +1960 speak +1959 somewhere +1958 signing +1957 show +1956 badly +1955 score +1954 roost +1953 revive +1952 resort +1951 reports +1950 renaissance +1949 redefine +1948 reassess +1947 realize +1946 race +1945 psychiatry +1944 Korean +1943 North +1942 pronounce +1941 prominence +1940 privatize +1939 pour +1938 portable +1937 persist +1936 understanding +1935 inaccessible +1934 obtain +1933 occurring +1932 naturally +1931 authoritarian +1930 manipulate +1929 manage +1928 contributions +1927 lose +1926 long-term +1925 lives +1924 list +1923 less +1922 legitimize +1921 really +1920 know +1919 junior +1918 join +1917 emergence +1916 invite +1915 instructors +1914 insist +1913 innocent +1912 include +1911 decide +1910 hear +1909 hark +1908 grips +1907 grant +1906 gradual +1905 good +1904 priorities +1903 former +1902 foreign +1901 fiscal +1900 fend +1899 fare +1898 equip +1897 enhance +1896 endlessly +1895 Ukraine +1894 eligible +1893 dust +1892 drain +1891 dig +1890 designate +1889 deeply +1888 crumble +1887 criminal +1886 courses +1885 cope +1884 contribute +1883 continuing +1882 conducting +1881 combat +1880 changes +1879 catch +1878 carry +1877 buy +1876 burnish +1875 fold +1874 breast +1873 break +1872 borrow +1871 thanks +1870 boom +1869 blockade +1868 bigotry +1867 becoming +1866 worth +1865 finding +1864 won +1863 capable +1862 award +1861 average +1860 assuming +1859 assume +1858 treatment +1857 honest +1856 all-time +1855 al-Qaeda +1854 positive +1853 adopt +1852 actual +1851 accommodate +1850 accept +1849 abandon +1848 legislature +1847 halt +1846 Main +1845 Live +1844 Lebanon +1843 Italy +1842 It +1841 Indonesia +1840 Europe +1839 anyway +1838 5.3 +1837 tied +1836 throughout +1835 threatens +1834 thought +1833 though +1832 think +1831 thing +1830 shut +1829 thereafter +1828 probably +1827 voting +1826 settlements +1825 does +1824 British +1823 underlay +1822 tests +1821 test +1820 tens +1819 tends +1818 whether +1817 tell +1816 techniques +1815 taxing +1814 taxes +1813 targeted +1812 target +1811 tapping +1810 tapered +1809 talking +1808 takes +1807 tables +1806 command +1805 decisions +1804 ensure +1803 switches +1802 sustained +1801 surpasses +1800 surpass +1799 surely +1798 sure +1797 supposedly +1796 supportive +1795 support +1794 supply +1793 sucked +1792 success +1791 succeeds +1790 submit +1789 subject +1788 studied +1787 struck +1786 strive +1785 strengthened +1784 strained +1783 story +1782 still +1781 stepped +1780 stems +1779 headlong +1778 steam +1777 statist +1776 blocks +1775 started +1774 suffer +1773 squeezed +1772 spread +1771 spared +1770 south +1769 sound +1768 sought +1767 sort +1766 soaring +1765 so-called +1764 smiling +1763 slip +1762 slimmed +1761 single +1760 1881 +1759 simply +1758 similarly +1757 chips +1756 computer +1755 silicon-based +1754 sign +1753 shoots +1752 shooting +1751 shifted +1750 shift +1749 wrote +1748 knows +1747 she +1746 shareholders +1745 share +1744 seven +1743 settlement +1742 setting +1741 serving +1740 threat +1739 senior +1738 send +1737 selling +1736 self-adjusting +1735 self +1734 selected +1733 seen +1732 seeing +1731 second +1730 sea +1729 say +1728 said +1727 saddling +1726 sacked +1725 roughly +1724 rose +1723 role +1722 road +1721 rising +1720 reward +1719 revising +1718 revere +1717 retreat +1716 retired +1715 results +1714 resulted +1713 restore +1712 responsibility +1711 respects +1710 resource +1709 resisted +1708 resistance +1707 resembling +1706 resembled +1705 resemble +1704 replied +1703 replace +1702 reminds +1701 remedy +1700 remarkable +1699 remained +1698 troubled +1697 remain +1696 rely +1695 relinquish +1694 relief +1693 relegated +1692 releasing +1691 release +1690 relative +1689 relations +1688 relation +1687 related +1686 rejoin +1685 rejected +1684 reintroduce +1683 regulator +1682 regionally +1681 saw +1680 regime +1679 regardless +1678 regarding +1677 regard +1676 refusing +1675 refused +1674 refuse +1673 reform-minded +1672 received +1671 recalled +1670 reassure +1669 ready +1668 readily +1667 trouble +1666 re-emerging +1665 ratios +1664 rationale +1663 rather +1662 ran +1661 rallies +1660 raises +1659 railed +1658 quite +1657 quickly +1656 question +1655 qualify +1654 puts +1653 pushing +1652 pushes +1651 pushed +1650 push +1649 pursue +1648 purged +1647 punishing +1646 pulling +1645 pulled +1644 publicly +1643 proximity +1642 provision +1641 provides +1640 provider +1639 proven +1638 protection +1637 prospect +1636 prompted +1635 problems +1634 prize +1633 pressure +1632 pressing +1631 presidency +1630 premium +1629 pre-crisis +1628 pre-Christmas +1627 potentially +1626 potential +1625 possibility +1624 portrayed +1623 pollero +1622 poised +1621 points +1620 pointing +1619 pointed +1618 pleasing +1617 played +1616 placing +1615 pitting +1614 persuade +1613 performing +1612 per +1611 payments +1610 attention +1609 paying +1608 frequent +1607 pay +1606 passionless +1605 pain +1604 owing +1603 overturn +1602 overthrow +1601 overnight +1600 overall +1599 periods +1598 backwards +1597 outflank +1596 any +1595 originating +1594 ride +1593 provided +1592 options +1591 oppose +1590 opportunity +1589 operate +1588 remind +1587 training +1586 on-the-job +1585 trial +1584 track +1583 bottom +1582 steps +1581 modest +1580 sexy +1579 record +1578 preferred +1577 occasion +1576 state +1575 endangering +1574 earth +1573 dramatic +1572 sides +1571 board +1570 banks +1569 wealth +1568 par +1567 hot +1566 Bangladesh +1565 India +1564 Qaeda +1563 Al +1562 describe +1561 offshore +1560 offering +1559 offered +1558 wisdom +1557 trace +1556 energy +1555 total +1554 day +1553 credit +1552 capacity +1551 succession +1550 miscalculation +1549 substantial +1548 severely +1547 remaining +1546 reliance +1545 proxy +1544 power +1543 companies +1542 loss +1541 high-level +1540 beyond +1539 corruption +1538 interconnected +1537 Romania +1536 GNP +1535 obey +1534 immigrant +1533 numbers +1532 nowadays +1531 re-condemned +1530 notwithstanding +1529 none +1528 non-combatants +1527 nominate +1526 spring +1525 next +1524 risks +1523 nevertheless +1522 nervous +1521 right +1520 need +1519 necessary +1518 neat +1517 nearly +1516 nationwide +1515 nationally +1514 nation-wide +1513 naming +1512 open +1511 murdered +1510 moving +1509 moved +1508 move +1507 motivated +1506 mostly +1505 most +1504 monitors +1503 missed +1502 mired +1501 ministers +1500 minister +1499 starts +1498 million +1497 migrated +1496 middle +1495 merely +1494 men +1493 promised +1492 memorably +1491 members +1490 measure +1489 may +1488 matched +1487 match +1486 massively +1485 marginalized +1484 size +1483 times +1482 otherwise +1481 makes +1480 progress +1479 main +1478 loyalty +1477 love +1476 loudly +1475 looms +1474 looks +1473 looking +1472 looked +1471 look +1470 longer +1469 nurtured +1468 lock +1467 loath +1466 lived +1465 live +1464 lip +1463 little +1462 limited +1461 scope +1460 limit +1459 likened +1458 special +1457 lifting +1456 lifted +1455 lift +1454 licencia +1453 leveled +1452 let +1451 lest +1450 lent +1449 length +1448 lend +1447 Maoist +1446 leftist +1445 leaving +1444 least +1443 leak +1442 leads +1441 leading +1440 expect +1439 lead +1438 lay +1437 launched +1436 latter-day +1435 larger +1434 laboring +1433 labor +1432 tend +1431 krill +1430 certainty +1429 known +1428 quiet +1427 preached +1426 ordered +1425 30 +1424 judging +1423 judge +1422 jettisoned +1421 itself +1420 start +1419 worthwhile +1418 provide +1417 took +1416 serves +1415 keeps +1414 spreading +1413 issued +1412 issue +1411 is-in +1410 unfolding +1409 pumping +1408 preoccupied +1407 involving +1406 involves +1405 involved +1404 involve +1403 investors +1402 whatever +1401 sixties +1400 international +1399 service +1398 operation +1397 distress +1396 compliance +1395 TRT +1394 interviewed +1393 accepted +1392 internationally +1391 intended +1390 integration +1389 instrumental +1388 instructed +1387 institutional +1386 inspire +1385 inmates +1384 injuring +1383 initiated +1382 initially +1381 infected +1380 induced +1379 induce +1378 indictment +1377 indicted +1376 indicated +1375 stands +1374 index +1373 spending +1372 increasing +1371 inclusion +1370 includes +1369 included +1368 incited +1367 inadequate +1366 inability +1365 uniform +1364 process +1363 sector +1362 private +1361 opinion +1360 characterize +1359 league +1358 1950 +1357 tandem +1356 supporting +1355 southern +1354 serious +1353 search +1352 reducing +1351 sight +1350 plain +1349 backyard +1348 words +1347 motion +1346 mightily +1345 making +1344 line +1343 laying +1342 launching +1341 keeping +1340 outlook +1339 front +1338 fits +1337 euros +1336 dribs +1335 considering +1334 collusion +1333 bullishness +1332 banking +1331 Sharif +1330 Science +1329 Iraq +1328 France +1327 providing +1326 impressive +1325 important +1324 assumes +1323 immediately +1322 ignoring +1321 hurt +1320 huge +1319 how +1318 house +1317 hosts +1316 honestly +1315 hitting +1314 historically +1313 mechanisms +1312 automatic +1311 Dutchman +1310 hired +1309 here +1308 nearby +1307 resolve +1306 stabilize +1305 held +1304 heavy +1303 heading +1302 headed +1301 head +1300 supports +1299 left +1298 viewing +1297 receive +1296 yet +1295 happy +1294 thrown +1293 survived +1292 protected +1291 mounted +1290 offer +1289 harming +1288 outpouring +1287 evoke +1286 hardly +1285 harder +1284 hard-core +1283 happening +1282 happen +1281 halted +1280 half +1279 bailed +1278 saved +1277 habits +1276 guidance +1275 growing +1274 growers +1273 grow +1272 granting +1271 granted +1270 government +1269 governance +1268 gone +1267 unmet +1266 giving +1265 movement +1264 genuinely +1263 genuine +1262 general +1261 rise +1260 ground +1259 gas +1258 gained +1257 legal +1256 gain +1255 fully +1254 fueled +1253 pending +1252 frozen +1251 clock +1250 mechanical +1249 reaching +1248 now +1247 failure +1246 heart +1245 getting +1244 friends +1243 frequently +1242 freely +1241 freedom +1240 riding +1239 lunch +1238 lacking +1237 found +1236 form +1235 forgiven +1234 foreigners +1233 forcing +1232 us +1231 top +1230 price +1229 establishment +1228 someone +1227 prime +1226 outrageous +1225 misleading +1224 mere +1223 seemed +1222 poppy +1221 fighting +1220 bearing +1219 liberalization +1218 accelerated +1217 couple +1216 focused +1215 focus +1214 flying +1213 flow +1212 flood +1211 flight +1210 flew +1209 fit +1208 firm +1207 firing +1206 seem +1205 rage +1204 fires +1203 finds +1202 figures +1201 figure +1200 fight +1199 fiddle +1198 fell +1197 easing +1196 feeds +1195 feed +1194 fear +1193 favors +1192 favoring +1191 favor +1190 fast +1189 farmers +1188 surpassed +1187 falls +1186 falling +1185 fallen +1184 faith +1183 failed +1182 facing +1181 facilities +1180 faces +1179 eyes +1178 eye +1177 extensive +1176 expropriated +1175 exposed +1174 experience +1173 pick +1172 expected +1171 exists +1170 exhausted +1169 exception +1168 fiber +1167 every +1166 ever +1165 succeed +1164 occur +1163 joining +1162 having +1161 find +1160 eventually +1159 essential +1158 eradicated +1157 era +1156 equal +1155 entrepreneurial +1154 entire +1153 enticing +1152 entering +1151 entered +1150 ensued +1149 enroll +1148 meet +1147 enough +1146 engaging +1145 stimulus +1144 massive +1143 ends +1142 endorsement +1141 odd +1140 encountered +1139 encounter +1138 enabling +1137 en +1136 empowered +1135 employs +1134 atmosphere +1133 emitted +1132 emigration +1131 emerge +1130 embodied +1129 elites +1128 elected +1127 effort +1126 kill +1125 effectively +1124 effect +1123 educated +1122 edifice +1121 economies +1120 economically +1119 ecological +1118 earlier +1117 eager +1116 step +1115 arrive +1114 Malawi +1113 review +1112 due +1111 dubbed +1110 drowning +1109 dropped +1108 force +1107 drift +1106 drew +1105 drawing +1104 feet +1103 dragging +1102 drafted +1101 downward +1100 downgraded +1099 door +1098 stop +1097 done +1096 don +1095 via +1094 doing +1093 disturbed +1092 dismissed +1091 pull +1090 directly +1089 directed +1088 exposure +1087 direct +1086 difficult +1085 different +1084 environmental +1083 technologies +1082 development +1081 developers +1080 develop +1079 devastate +1078 deter +1077 destroying +1076 destined +1075 desperately +1074 designed +1073 deserved +1072 described +1071 deprived +1070 depended +1069 denied +1068 democrats +1067 demanded +1066 delivered +1065 deliver +1064 defiant +1063 defeat +1062 default +1061 value +1060 dollar +1059 decline +1058 declaring +1057 admit +1056 decision +1055 deceive +1054 decade +1053 debate +1052 death +1051 deals +1050 dealing +1049 deal +1048 dead +1047 days +1046 longer-term +1045 daunting +1044 damaged +1043 damage +1042 culprits +1041 culminated +1040 criticized +1039 critical +1038 space +1037 created +1036 crash +1035 craft +1034 cover +1033 counterparts +1032 counter +1031 influentials +1030 cosmopolitan +1029 convincing +1028 benefits +1027 Europeans +1026 convince +1025 conventional +1024 convened +1023 controls +1022 contributing +1021 contrary +1020 continued +1019 continue +1018 ourselves +1017 construct +1016 prosecuted +1015 conspiracies +1014 considers +1013 connection +1012 connected +1011 confront +1010 confined +1009 committees +1008 conditions +1007 conditional +1006 concluded +1005 dios +1004 con +1003 legacy +1002 complex +1001 competitor +1000 competitively +999 competition +998 commodities +997 committed +996 commitment +995 commentators +994 pass +993 together +992 resembles +991 closely +990 path +989 clear +988 circulated +987 chunk +986 chosen +985 chose +984 choke +983 chase +982 sent +981 working +980 charges +979 changing +978 challenging +977 challenges +976 chain +975 cells +974 celebrated +973 caught +972 cast +971 cases +970 nose +969 cares +968 cards +967 captured +966 capital- +965 comparison +964 cannot +963 candidates +962 came +961 called +960 bypass +959 undermining +958 low-skilled +957 side +956 prompting +955 hook +954 plans +953 following +952 efforts +951 contrast +950 achieving +949 officials +948 Francis +947 market-based +946 decentralized +945 bust +944 severe +943 buckle +942 broken +941 urging +940 broadcasts +939 mind +938 brings +937 bringing +936 bright +935 breaks +934 come +933 bound +932 countries +931 borrowers +930 Kenya +929 boost +928 boils +927 boats +926 blown +925 blowing +924 blow +923 birth +922 binds +921 bill +920 bid +919 bets +918 best +917 herding +916 bent +915 benefiting +914 benchmark +913 belong +912 subjected +911 carried +910 schedule +909 showing +908 begun +907 administration +906 beginning +905 putting +904 began +903 scheduled +902 reduced +901 forced +900 been +899 lever +898 operational +897 they +896 Turkey +895 became +894 beating +893 beaten +892 beat +891 bearish +890 bear +889 welcomed +888 urged +887 taken +886 swept +885 surprised +884 hand-washing +883 widespread +882 served +881 returned +880 rescued +879 keep +878 relied +877 placed +876 made +875 led +874 killed +873 safe +872 kept +871 jailed +870 inflated +869 going +868 get +867 faced +866 encouraged +865 dumped +864 closed +863 forward +862 based +861 barring +860 barely +859 bare +858 bandits +857 ballots +856 bail +855 news +854 backward +853 backing +852 onto +851 poverty +850 aware +849 awards +848 awarded +847 avoid +846 available +845 attribute +844 attending +843 attend +842 attempts +841 extricate +840 attempt +839 attacks +838 attacking +837 attacked +836 attack +835 attachment +834 unprecedented +833 root +832 reversing +831 odds +830 independence +829 home +828 hand +827 draining +826 dating +825 coping +824 building +823 pace +822 robust +821 cost +820 sites +819 African +818 Southern +817 associated +816 turning +815 assisting +814 assisted +813 assist +812 assailing +811 aspiring +810 asking +809 ask +808 aside +807 recently +806 order +805 possible +804 opposed +803 high +802 matter +801 consequence +800 arrested +799 arms +798 secure +797 taught +796 supposed +795 bubbles +794 paid +793 meant +792 losses +791 incur +790 largely +789 extended +788 devoted +787 currently +786 see +785 certain +784 pursued +783 met +782 being +781 defenders +780 ardent +779 treated +778 appropriately +777 approached +776 approach +775 presidential +774 appointed +773 appetite +772 Peronism +771 1943 +770 appearance +769 appear +768 appealing +767 authority +766 appealed +765 apart +764 anywhere +763 anyone +762 face-to-face +761 another +760 annually +759 soar +758 inflation +757 annual +756 threats +755 tending +754 prison +753 sentenced +752 expel +751 proceeded +750 others +749 fails +748 last +747 check +746 casualties +745 incentive +744 impediment +743 laundry +742 use +741 ample +740 amounts +739 amounting +738 among +737 am +736 sells +735 needs +734 already +733 alongside +732 Anglo-American +731 almost +730 complete +729 allowing +728 fail +727 himself +726 further +725 allow +724 allocated +723 cure +722 no +721 harm +720 aligned +719 alienated +718 alienate +717 al +716 airy +715 aiming +714 aiding +713 aid +712 ahead +711 agrees +710 agreeing +709 institutionally +708 agreed +707 agree +706 agencies +705 risk +704 leap +703 boarding +702 afford +701 affecting +700 affected +699 advice +698 advance +697 admittedly +696 adjust +695 address +694 toll +693 addition +692 adding +691 addiction +690 added +689 anything +688 add +687 represent +686 actually +685 goodwill +684 additional +683 engender +682 likelier +681 appears +680 activity +679 activities +678 act +677 borders +676 Afghanistan +675 across +674 scale +673 greater +672 achieve +671 accustomed +670 accused +669 account +668 accordingly +667 accord +666 make +665 Washington +664 Barak +663 accompany +662 accommodates +661 accession +660 access +659 absolved +658 above +657 first +656 about +655 recall +654 shackles +653 melt +652 able +651 set +650 awareness +649 public +648 generate +647 ability +646 abandoned +645 strong +644 source +643 slowdown +642 sharp +641 return +640 explicit +639 an +638 response +637 guide +636 reliable +635 ratio +634 had +633 where +632 number +631 Kosovo +630 mission +629 fact-finding +628 new +627 trusted +626 man +625 addressing +624 coming +623 long +622 livelihood +621 job +620 healthy +619 under +618 floor +617 finger +616 draw +615 course +614 cornerstone +613 concern +612 call +611 close +610 one +609 cutting +608 case +607 Yugoslavia +606 Viktor +605 Thaksin +604 Taliban +603 Supreme +602 Strong +601 States +600 Saudi +599 Russia +598 Royal +597 Peru +596 NLA +595 Mexico +594 Long +593 Jong-il +592 Kim +591 Khamenei +590 Japan +589 Israelis +588 Israel +587 Iran +586 Internet +585 him +584 told +583 conducted +582 Home-Grown +581 Help +580 or +579 HIV +578 Grand +577 Gorbachev +576 soldiers +575 genius +574 Free +573 office +572 assumed +571 after +570 shortly +569 Kennedy +568 F. +567 aced +566 F +565 European +564 political +563 Europe-wide +562 Dutch-speaking +561 Dixon +560 ruling +559 uphold +558 must +557 Court +556 Conference +555 literary +554 Genet +553 declared +552 Cocteau +551 Civic +550 stand +549 could +548 slips +547 Britain +546 Bismarck +545 Beginning +544 Bashir +543 Back +542 attended +541 I +540 As +539 survive +538 Arabia +537 went +536 turned +535 America +534 Again +533 Africa +532 parts +531 some +530 AIDS +529 28-year-old +528 2007 +527 1917 +526 years +525 100 +524 15 +523 10 +522 dismiss +521 fact +520 just +519 concerned +518 - +517 written +516 range +515 wide +514 gave +513 who +512 meaning +511 achievement +510 joined +509 go +508 president +507 urge +506 towards +505 paraphrase +504 jump +503 there +502 starting +501 ruined +500 resist +499 increase +498 rapid +497 pursuing +496 plotting +495 perhaps +494 only +493 again +492 once +491 notice +490 moment +489 guard +488 might +487 was +486 released +485 drop +484 plan +483 my +482 instead +481 violation +480 conference +479 press +478 joint +477 administrative +476 real +475 implementing +474 ignored +473 equally +472 divided +471 if +470 helped +469 demise +468 speed +467 asked +466 has +465 given +464 example +463 produce +462 prone +461 markets +460 covering +459 trust +458 can +457 calls +456 buying +455 but +454 glimpse +453 begin +452 befitting +451 surrounding +450 publicity +449 bad +448 were +447 seat +446 allowed +445 her +444 animate +443 banal +442 often +441 incorporating +440 aimed +439 Mubarak +438 highly +437 more +436 ) +435 Saddam +434 ( +433 far +432 US +431 affect +430 big +429 too +428 standing +427 passed +426 abroad +425 near +424 me +423 charged +422 walk +421 't +420 willingness +419 victory +418 19 +417 system +416 security +415 social +414 hit +413 mate +412 running +411 determined +410 usually +409 Saudis +408 relationship +407 put +406 embrace +405 old +404 holding +403 claim +402 you +401 telling +400 're +399 'a +398 money +397 & +396 he +395 ] +394 % +393 ; +392 45 +391 # +390 workers +389 current +388 when +387 whatsoever +386 what +385 welfare +384 voters +383 upon +382 unlike +381 undermined +380 ultimately +379 turn +378 toward +377 your +376 young +375 work +374 two +373 interests +372 hundreds +371 fore +370 crisis +369 United +368 second-line +367 protect +366 Balkans +365 Western +364 prepare +363 name +362 point +361 media +360 local +359 leave +358 key +357 issues +356 heavily +355 executive +354 chief +353 institutions +352 even +351 each +350 cooperative +349 block +348 blame +347 acute +346 Pakistani +345 levels +344 German +343 French +342 American +341 coalition +340 throwing +339 throw +338 world +337 through +336 within +335 this +334 thinkers +333 themselves +332 advantage +331 take +330 closer +329 something +328 government-induced +327 result +326 poorest +325 performance +324 neighborhood +323 many +322 court +321 combined +320 ambition +319 accommodated +318 will +317 Americans +316 than +315 testing +314 targeting +313 talk +312 tag +311 suspects +310 survivors +309 surveys +308 supporters +307 subservient +306 states +305 spot +304 spent +303 soon +302 small +301 sit +300 then +299 since +298 should +297 shots +296 sets +295 services +294 serve +293 sending +292 seems +291 opt +290 seek +289 screening +288 schoolchildren +287 up +286 round +285 resources +284 tax +283 resorting +282 rescuing +281 required +280 require +279 replaced +278 reminding +277 reminded +276 regulators +275 reached +274 reach +273 our +272 raise +271 poor +270 policymakers +269 play +268 planners +267 place +266 pit +265 over +264 taxpayers +263 ordinary +262 operators +261 ones +260 them +259 part +258 membership +257 market +256 imported +255 basis +254 regular +253 off +252 whom +251 which +250 wasteful +249 40 +248 during +247 divide +246 sectarian +245 country +244 means +243 lowered +242 domestic +241 directors +240 Palestine +239 Chinese +238 so +237 nothing +236 much +235 member +234 loyalists +233 mobile +232 link +231 life +230 between +229 field +228 playing +227 level +226 leaves +225 leaders +224 label +223 its +222 would +221 it +220 is +219 investigation +218 lit +217 murders +216 royal +215 hands +214 accepting +213 independent +212 increased +211 income +210 incentives +209 terms +208 these +207 future +206 seeking +205 rallying +204 judgment +203 Pakistan +202 beggar-thy-neighbor +201 immigrants +200 household +199 honor +198 hold +197 past +196 way +195 his +194 higher +193 helps +192 individual +191 help +190 hard +189 guarantee +188 governments +187 globally +186 gives +185 give +184 respond +183 prepared +182 genetically +181 very +180 original +179 mainly +178 corrupt +177 rein +176 free +175 various +174 realm +173 oldest +172 financial +171 such +170 presidents +169 guess +168 correctly +167 outsiders +166 human +165 doctors +164 cell +163 basic +162 Alfonsín +161 followed +160 follow +159 fired +158 have +157 financiers +156 short +155 fall +154 opposition +153 face +152 executed +151 exclusion +150 everyone +149 encouraging +148 empower +147 employee +146 easier +145 driving +144 drawn +143 throats +142 down +141 doves +140 either +139 like +138 not +137 do +136 shambles +135 economic +134 people +133 distract +132 encourage +131 did +130 description +129 denying +128 cut +127 criminals +126 courtesy +125 conversion +124 confronted +123 concerning +122 compound +121 completely +120 other +119 compared +118 commemorating +117 comes +116 classify +115 claims +114 children +113 challenged +112 centers +111 saying +110 by +109 Egyptian +108 demoralized +107 business +106 financial-market +105 burden +104 buck +103 brought +102 retailing +101 downstream +100 branching +99 both +98 blamed +97 billion +96 benefit +95 beneficiaries +94 before +93 linked +92 become +91 because +90 run +89 be +88 back +87 away +86 care +85 taking +84 same +83 rate +82 end +81 helping +80 age +79 at +78 assets +77 with +76 engage +75 we +74 those +73 early +72 around +71 Arabs +70 Israeli +69 questions +68 are +67 appeal +66 anointed +65 abuse +64 animal +63 four +62 into +61 amount +60 also +59 lines +58 behind +57 along +56 all +55 time +54 air +53 ago +52 panels +51 against +50 year +49 vested +48 protects +47 that +46 law +45 rule +44 backer +43 major +42 a +41 Ireland +40 Greek +39 Germany +38 cattle +37 Fulani +36 China +35 depositors +34 . +33 embolden +32 and +31 -- +30 whereas +29 likely +28 challenge +27 bring +26 from +25 traits +24 feminine +23 " +22 out +21 killers +20 existing +19 agricultural +18 well +17 interest +16 ' +15 $ +14 as +13 on +12 of +11 their +10 the +9 to +8 for +7 's +6 politicians +5 in +4 transatlantic +3 NATO +2 stock +1 , +0 Atlantic diff --git a/contrib/promix/test_nbest.py b/contrib/promix/test_nbest.py index 375007a7c..63b7842c7 100755 --- a/contrib/promix/test_nbest.py +++ b/contrib/promix/test_nbest.py @@ -49,8 +49,8 @@ class TestMosesPhraseScorer(unittest.TestCase): def setUp(self): self.scorer = MosesPhraseScorer\ - (("data/esen.nc.model.unfiltered/phrase-table", \ - "data/esen.ep.model.unfiltered/phrase-table")) + (("test_data/esen.nc.model.filtered/phrase-table.0-0.1.1", \ + "test_data/esen.ep.model.filtered/phrase-table.0-0.1.1")) def test_phrase_scores(self): hyp0 = Hypothesis("taming |0-1| politicians |2-3| on both |4-5| sides of the Atlantic |6-8|", [0, -1.51037,0, 0, -2.60639, 0, 0, -36.0562,-8,-5.97082,-14.8327,-2.41162,\ From 9749ca5fd956406d0d7ea33c7e3304614266e264 Mon Sep 17 00:00:00 2001 From: Hieu Hoang Date: Thu, 18 Apr 2013 16:38:52 +0100 Subject: [PATCH 25/28] Fixed blank lines when using -print-alignment-info --- moses-cmd/IOWrapper.cpp | 4 ++-- moses/Parameter.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/moses-cmd/IOWrapper.cpp b/moses-cmd/IOWrapper.cpp index 335a570a6..39918a24b 100644 --- a/moses-cmd/IOWrapper.cpp +++ b/moses-cmd/IOWrapper.cpp @@ -259,7 +259,6 @@ void OutputAlignment(ostream &out, const vector &edges) targetOffset += tp.GetSize(); } - out << std::endl; } void OutputAlignment(std::ostream &out, const Moses::Hypothesis *hypo) @@ -279,7 +278,8 @@ void OutputAlignment(OutputCollector* collector, size_t lineNo , const vectorWrite(lineNo,out.str()); } diff --git a/moses/Parameter.cpp b/moses/Parameter.cpp index 6a9745ade..a6ad4eb7e 100644 --- a/moses/Parameter.cpp +++ b/moses/Parameter.cpp @@ -180,7 +180,7 @@ Parameter::Parameter() AddParam("minlexr-memory", "Load lexical reordering table in minlexr format into memory"); AddParam("minphr-memory", "Load phrase table in minphr format into memory"); - AddParam("print-alignment-info", "Output word-to-word alignment into the log file. Word-to-word alignments are takne from the phrase table if any. Default is false"); + AddParam("print-alignment-info", "Output word-to-word alignment to standard out, separated from translation by |||. Word-to-word alignments are takne from the phrase table if any. Default is false"); AddParam("include-segmentation-in-n-best", "include phrasal segmentation in the n-best list. default is false"); AddParam("print-alignment-info-in-n-best", "Include word-to-word alignment in the n-best list. Word-to-word alignments are takne from the phrase table if any. Default is false"); AddParam("alignment-output-file", "print output word alignments into given file"); From e53faa174c112525fe8dbf0e31beafba930f0b67 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Fri, 19 Apr 2013 08:34:43 +0100 Subject: [PATCH 26/28] Complete README --- contrib/promix/README.md | 41 +++++++++++++++++++++++++++++++++++++--- 1 file changed, 38 insertions(+), 3 deletions(-) diff --git a/contrib/promix/README.md b/contrib/promix/README.md index a86ae6d85..bf1f1f9c1 100644 --- a/contrib/promix/README.md +++ b/contrib/promix/README.md @@ -9,21 +9,56 @@ The code here provides the "inner loop" for a batch tuning algorithm (like MERT) optimises phrase table interpolation weights at the same time as the standard linear model weights. Interpolation of the phrase tables uses the "naive" method of tmcombine. -Currently it only works on interpolations of two phrase tables. +Currently the interpolation only works for two phrase tables, but will soon +be extended to work for more than two. REQUIREMENTS ------------ -The scripts require the Moses Python interface (in contrib/python) -They also require scipy and numpy. They have been tested with the following versions: +The scripts require the Moses Python interface (in contrib/python). It should be built +first, following the instructions in that directory. + +The scripts also require scipy and numpy. They have been tested with the following versions: Python 2.7 Scipy 0.11.0 Numpy 1.6.2 +Run the test.py script to check that everything is functioning correctly. + USAGE ----- +Since the code in this directory provides the inner loop for a batch tuning algorithm, +it is run from the increasingly inaccurately named mert-moses.pl. If you want to run +the optimiser directly, run `main.py -h` for usage. + +A sample command for mert-moses.pl is as follows: +MOSES/scripts/training/mert-moses.pl \ + input-file ref-file \ + decoder \ + ini-file \ + --promix-training MOSES/contrib/promix/main.py \ + --maximum-iterations 15 \ + --promix-table phrase-table-1 \ + --promix-table phrase-table-2 \ + --filtercmd "MOSES/scripts/training/filter-model-given-input.pl --Binarizer MOSES/bin/processPhraseTable" \ + --nbest 100 --working-dir ./tmp --decoder-flags "-threads 4 -v 0 " \ + --rootdir MOSES/scripts -mertdir MOSES/bin \ + --return-best-dev + +Note that promix training requires a filter and binarise script, and that the phrase table +referenced in the ini file is not used. The argument `--return-best-dev` is not essential, +but recommended. REFERENCES ---------- + +The code here was created for: + +Haddow, Barry (2013) Applying Pairwise Ranked Optimisation to +Improve the Interpolation of Translation Models. In: Proceedings of NAACL 2013 + +See also: + +Sennrich, Rico (2012). Perplexity Minimization for Translation Model Domain Adaptation in Statistical Machine Translation. In: Proceedings of EACL 2012. From 71295e2708bfd556a98a322a62c5c2bef74cebd9 Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Fri, 19 Apr 2013 08:45:03 +0100 Subject: [PATCH 27/28] correct markdown --- contrib/promix/README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/contrib/promix/README.md b/contrib/promix/README.md index bf1f1f9c1..5e4ef5cba 100644 --- a/contrib/promix/README.md +++ b/contrib/promix/README.md @@ -19,9 +19,9 @@ The scripts require the Moses Python interface (in contrib/python). It should be first, following the instructions in that directory. The scripts also require scipy and numpy. They have been tested with the following versions: - Python 2.7 - Scipy 0.11.0 - Numpy 1.6.2 +* Python 2.7 +* Scipy 0.11.0 +* Numpy 1.6.2 Run the test.py script to check that everything is functioning correctly. @@ -33,18 +33,18 @@ it is run from the increasingly inaccurately named mert-moses.pl. If you want to the optimiser directly, run `main.py -h` for usage. A sample command for mert-moses.pl is as follows: -MOSES/scripts/training/mert-moses.pl \ - input-file ref-file \ - decoder \ - ini-file \ - --promix-training MOSES/contrib/promix/main.py \ - --maximum-iterations 15 \ - --promix-table phrase-table-1 \ - --promix-table phrase-table-2 \ - --filtercmd "MOSES/scripts/training/filter-model-given-input.pl --Binarizer MOSES/bin/processPhraseTable" \ - --nbest 100 --working-dir ./tmp --decoder-flags "-threads 4 -v 0 " \ - --rootdir MOSES/scripts -mertdir MOSES/bin \ - --return-best-dev + MOSES/scripts/training/mert-moses.pl \ + input-file ref-file \ + decoder \ + ini-file \ + --promix-training MOSES/contrib/promix/main.py \ + --maximum-iterations 15 \ + --promix-table phrase-table-1 \ + --promix-table phrase-table-2 \ + --filtercmd "MOSES/scripts/training/filter-model-given-input.pl --Binarizer MOSES/bin/processPhraseTable" \ + --nbest 100 --working-dir ./tmp --decoder-flags "-threads 4 -v 0 " \ + --rootdir MOSES/scripts -mertdir MOSES/bin \ + --return-best-dev Note that promix training requires a filter and binarise script, and that the phrase table referenced in the ini file is not used. The argument `--return-best-dev` is not essential, From 7677832655bfa3cc19a932e716d78546491fa5fa Mon Sep 17 00:00:00 2001 From: Barry Haddow Date: Fri, 19 Apr 2013 09:00:24 +0100 Subject: [PATCH 28/28] Fix markdown --- contrib/promix/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/promix/README.md b/contrib/promix/README.md index 5e4ef5cba..1b3d76f27 100644 --- a/contrib/promix/README.md +++ b/contrib/promix/README.md @@ -19,6 +19,7 @@ The scripts require the Moses Python interface (in contrib/python). It should be first, following the instructions in that directory. The scripts also require scipy and numpy. They have been tested with the following versions: + * Python 2.7 * Scipy 0.11.0 * Numpy 1.6.2 @@ -33,6 +34,7 @@ it is run from the increasingly inaccurately named mert-moses.pl. If you want to the optimiser directly, run `main.py -h` for usage. A sample command for mert-moses.pl is as follows: + MOSES/scripts/training/mert-moses.pl \ input-file ref-file \ decoder \